diff --git a/github-actions/activity-trigger/first-post-to-skills-issue.js b/github-actions/activity-trigger/first-post-to-skills-issue.js deleted file mode 100644 index 1c2bc68805..0000000000 --- a/github-actions/activity-trigger/first-post-to-skills-issue.js +++ /dev/null @@ -1,133 +0,0 @@ -// Import modules -const fs = require('fs'); - -const retrieveSkillsId = require('./retrieve-skills-id'); -const postComment = require('../utils/post-issue-comment'); -const checkTeamMembership = require('../utils/check-team-membership'); -const statusFieldIds = require('../utils/_data/status-field-ids'); -const mutateIssueStatus = require('../utils/mutate-issue-status'); -const minimizeIssueComment = require('../utils/hide-issue-comment'); -const getIssueComments = require('./get-issue-comments'); - -// Global variables -var github; -var context; - -/** - * Function to retrieve Skills Issue and add comments - * @param {Object} github - GitHub object - * @param {Object} context - Context object - * - */ -async function firstPostToSkillsIssue({g, c}) { - - github = g; - context = c; - - const owner = context.repo.owner; - const repo = context.repo.repo; - const team = 'website-write'; - - - try { - const csvPath = 'github-actions/activity-trigger/member_activity_history_bot_7.csv'; - - const csvContent = fs.readFileSync(csvPath, 'utf-8'); - - // Parse CSV assuming - const rows = csvContent - .trim() - .split('\n') - .map(line => line.split(',')); - - const processed = processCsvForSkillsIssue(rows); - - console.log(JSON.stringify(processed, null, 2)); // For testing only - - processed.forEach(async entry => { - let username = entry.username; - let skillsIssueNum = parseInt(entry.issueNum); - let message = entry.postToSkillsIssue; - const MARKER = ''; - - // Since we know this is the first run and no matching issue comments exist yet, we can post immediately - const body = `${MARKER}\n## Activity Log: ${username}\n\n##### ⚠ Important note: The bot updates this issue automatically - do not edit\n\n${message}`; - await postComment(skillsIssueNum, body, github, context); - - // Do not cleanup comments- killing us with rate limits - // Perform cleanup of comments - // const commentIds = await getIssueComments(github, context, skillsIssueNum); - // for (const commentId of commentIds) { - // await minimizeIssueComment(github, commentId); - // } - - // Check whether eventActor is team member; if so open issue and move to "In progress" - const isActiveMember = await checkTeamMembership(github, username, team); - - if (isActiveMember) { - // If isActiveMember, make sure Skills Issue is open, and... - await github.request('PATCH /repos/{owner}/{repo}/issues/{issueNum}', { - owner, - repo, - issueNum: skillsIssueNum, - state: "open", - }); - - // disable to avoid rate limits - // update issue's status to "In progress (actively working)" - // Needs skillsIssueNodeId first. - // let skillsIssueNodeId = await retrieveSkillsId(github, context, skillsIssueNum); - // let statusValue = statusFieldIds('In_Progress'); - // await mutateIssueStatus(github, context, skillsIssueNodeId, statusValue); - } - }); - - } catch (error) { - console.error('Error processing CSV:', error); - process.exit(1); - } -} - -function processCsvForSkillsIssue(rows) { - - const results = []; - let currentUser = null; - let skillsIssueNum = null; - let postToSkillsIssue = null; - let collecting = false; - - for (const row of rows) { - const username = row[0]; - const issueNum = row[1]; - const col3 = row[2]; - - if (username !== currentUser) { - if (collecting && postToSkillsIssue !== null) { - results.push({ username: currentUser, issueNum: skillsIssueNum, postToSkillsIssue }); - } - - currentUser = username; - - if (col3 === "SKILLS ISSUE") { - postToSkillsIssue = ""; - skillsIssueNum = issueNum; - collecting = true; - } else { - postToSkillsIssue = null; - collecting = false; - } - } else { - if (collecting) { - postToSkillsIssue += col3 + "\n"; - } - } - } - - if (collecting && postToSkillsIssue !== null) { - results.push({ username: currentUser, issueNum: skillsIssueNum, postToSkillsIssue }); - } - - return results; -} - -module.exports = firstPostToSkillsIssue; diff --git a/github-actions/activity-trigger/get-issue-comments.js b/github-actions/activity-trigger/get-issue-comments.js deleted file mode 100644 index 613a1aba6e..0000000000 --- a/github-actions/activity-trigger/get-issue-comments.js +++ /dev/null @@ -1,60 +0,0 @@ -const tenDaysAgo = new Date(); -tenDaysAgo.setDate(tenDaysAgo.getDate() - 10); - - -async function getIssueComments(github, context, issueNum) { - - const owner = context.repo.owner; - const repo = context.repo.repo; - - - const query = `query($owner: String!, $repo: String!, $issueNum: Int!) { - repository(owner: $owner, name: $repo) { - issue(number: $issueNum) { - comments(first: 100) { - nodes { - id - author { login } - createdAt - isMinimized - minimizedReason - } - } - } - } - }`; - - const variables = { - owner: owner, - repo: repo, - issueNum: issueNum, - }; - - - let commentIds = []; - let botNames = ["github-actions[bot]", "HackforLABot"]; - - try { - const response = await github.graphql(query, variables); - - let comments = response.repository.issue.comments.nodes || []; - - for (let comment of comments) { - let created = new Date(comment.createdAt); - - if ( - botNames.includes(comment.author?.login) && - created < tenDaysAgo && - !comment.isMinimized - ) { - commentIds.push(comment.id); - } - } - } catch (error) { - throw new Error(`Error retrieving comments for issue #${issueNum}: ${error}`); - } - - return commentIds; -} - -module.exports = getIssueComments; diff --git a/github-actions/activity-trigger/member_activity_history_bot_1.csv b/github-actions/activity-trigger/member_activity_history_bot_1.csv deleted file mode 100644 index b21eaca02e..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_1.csv +++ /dev/null @@ -1,617 +0,0 @@ -username,datetime,message -025Parag,5083,SKILLS ISSUE -025Parag,2023-07-26T03:12:07Z,- 025Parag opened issue: [5083](https://github.com/hackforla/website/issues/5083) at 2023-07-25 08:12 PM PDT -025Parag,2023-07-26T04:04:18Z,- 025Parag assigned to issue: [5083](https://github.com/hackforla/website/issues/5083) at 2023-07-25 09:04 PM PDT -1anya1,2784,SKILLS ISSUE -1anya1,2022-02-16T03:52:37Z,- 1anya1 opened issue: [2784](https://github.com/hackforla/website/issues/2784) at 2022-02-15 07:52 PM PST -1anya1,2022-02-16T03:53:29Z,- 1anya1 assigned to issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1041075531) at 2022-02-15 07:53 PM PST -1anya1,2022-02-22T05:58:29Z,- 1anya1 assigned to issue: [2426](https://github.com/hackforla/website/issues/2426#event-6107553795) at 2022-02-21 09:58 PM PST -1anya1,2022-02-22T18:20:09Z,- 1anya1 commented on issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-1048082507) at 2022-02-22 10:20 AM PST -1anya1,2022-02-22T19:08:58Z,- 1anya1 opened pull request: [2841](https://github.com/hackforla/website/pull/2841) at 2022-02-22 11:08 AM PST -1anya1,2022-02-23T18:19:13Z,- 1anya1 commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1049074923) at 2022-02-23 10:19 AM PST -1anya1,2022-02-23T18:19:13Z,- 1anya1 closed issue as completed: [2784](https://github.com/hackforla/website/issues/2784#event-6127071683) at 2022-02-23 10:19 AM PST -1anya1,2022-02-23T18:27:53Z,- 1anya1 commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1049083029) at 2022-02-23 10:27 AM PST -1anya1,2022-02-23T18:35:52Z,- 1anya1 opened issue: [2876](https://github.com/hackforla/website/issues/2876) at 2022-02-23 10:35 AM PST -1anya1,2022-02-23T18:41:15Z,- 1anya1 opened issue: [2877](https://github.com/hackforla/website/issues/2877) at 2022-02-23 10:41 AM PST -1anya1,2022-02-23T18:45:17Z,- 1anya1 opened issue: [2878](https://github.com/hackforla/website/issues/2878) at 2022-02-23 10:45 AM PST -1anya1,2022-02-23T21:59:48Z,- 1anya1 pull request merged: [2841](https://github.com/hackforla/website/pull/2841#event-6128245660) at 2022-02-23 01:59 PM PST -1anya1,2022-02-23T22:26:24Z,- 1anya1 pull request merged: [2841](https://github.com/hackforla/website/pull/2841#event-6128369632) at 2022-02-23 02:26 PM PST -1anya1,2022-02-24T22:53:47Z,- 1anya1 assigned to issue: [2639](https://github.com/hackforla/website/issues/2639#issuecomment-1002020330) at 2022-02-24 02:53 PM PST -1anya1,2022-02-24T22:55:19Z,- 1anya1 commented on issue: [2639](https://github.com/hackforla/website/issues/2639#issuecomment-1050341886) at 2022-02-24 02:55 PM PST -1anya1,2022-02-24T23:38:39Z,- 1anya1 commented on issue: [2639](https://github.com/hackforla/website/issues/2639#issuecomment-1050366365) at 2022-02-24 03:38 PM PST -1anya1,2022-02-25T01:01:30Z,- 1anya1 commented on issue: [2639](https://github.com/hackforla/website/issues/2639#issuecomment-1050413909) at 2022-02-24 05:01 PM PST -1anya1,2022-02-25T07:17:48Z,- 1anya1 assigned to issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1050317245) at 2022-02-24 11:17 PM PST -1anya1,2022-02-25T07:18:51Z,- 1anya1 unassigned from issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1050317245) at 2022-02-24 11:18 PM PST -1anya1,2022-02-25T07:22:08Z,- 1anya1 assigned to issue: [2083](https://github.com/hackforla/website/issues/2083) at 2022-02-24 11:22 PM PST -1anya1,2022-02-25T07:28:24Z,- 1anya1 commented on issue: [2083](https://github.com/hackforla/website/issues/2083#issuecomment-1050603361) at 2022-02-24 11:28 PM PST -1anya1,2022-02-25T20:32:19Z,- 1anya1 commented on issue: [2083](https://github.com/hackforla/website/issues/2083#issuecomment-1051235922) at 2022-02-25 12:32 PM PST -1anya1,2022-02-25T21:45:06Z,- 1anya1 opened pull request: [2889](https://github.com/hackforla/website/pull/2889) at 2022-02-25 01:45 PM PST -1anya1,2022-02-25T21:56:22Z,- 1anya1 submitted pull request review: [2884](https://github.com/hackforla/website/pull/2884#pullrequestreview-894269644) at 2022-02-25 01:56 PM PST -1anya1,2022-02-25T23:55:47Z,- 1anya1 commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1051380146) at 2022-02-25 03:55 PM PST -1anya1,2022-02-25T23:56:18Z,- 1anya1 commented on issue: [2083](https://github.com/hackforla/website/issues/2083#issuecomment-1051380386) at 2022-02-25 03:56 PM PST -1anya1,2022-02-26T01:28:24Z,- 1anya1 commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1051421443) at 2022-02-25 05:28 PM PST -1anya1,2022-02-26T01:35:54Z,- 1anya1 commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1051425915) at 2022-02-25 05:35 PM PST -1anya1,2022-02-26T01:35:55Z,- 1anya1 closed issue as completed: [2784](https://github.com/hackforla/website/issues/2784#event-6142719763) at 2022-02-25 05:35 PM PST -1anya1,2022-02-28T22:00:39Z,- 1anya1 pull request merged: [2889](https://github.com/hackforla/website/pull/2889#event-6157786966) at 2022-02-28 02:00 PM PST -1anya1,2022-03-10T22:09:47Z,- 1anya1 opened pull request: [2959](https://github.com/hackforla/website/pull/2959) at 2022-03-10 02:09 PM PST -1anya1,2022-03-11T21:28:30Z,- 1anya1 commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1065544117) at 2022-03-11 01:28 PM PST -1anya1,2022-03-11T21:28:30Z,- 1anya1 pull request closed w/o merging: [2959](https://github.com/hackforla/website/pull/2959#event-6227799041) at 2022-03-11 01:28 PM PST -1anya1,2022-03-11T21:36:30Z,- 1anya1 reopened pull request: [2959](https://github.com/hackforla/website/pull/2959#event-6227799041) at 2022-03-11 01:36 PM PST -1anya1,2022-03-11T21:37:58Z,- 1anya1 pull request closed w/o merging: [2959](https://github.com/hackforla/website/pull/2959#event-6227836609) at 2022-03-11 01:37 PM PST -1anya1,2022-03-11T21:48:43Z,- 1anya1 opened pull request: [2968](https://github.com/hackforla/website/pull/2968) at 2022-03-11 01:48 PM PST -1anya1,2022-03-11T21:51:23Z,- 1anya1 commented on pull request: [2968](https://github.com/hackforla/website/pull/2968#issuecomment-1065563988) at 2022-03-11 01:51 PM PST -1anya1,2022-03-11T22:03:27Z,- 1anya1 commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1065574348) at 2022-03-11 02:03 PM PST -1anya1,2022-03-11T22:58:04Z,- 1anya1 opened pull request: [2969](https://github.com/hackforla/website/pull/2969) at 2022-03-11 02:58 PM PST -1anya1,2022-03-11T23:12:31Z,- 1anya1 pull request closed w/o merging: [2968](https://github.com/hackforla/website/pull/2968#event-6228290847) at 2022-03-11 03:12 PM PST -1anya1,2022-03-11T23:17:57Z,- 1anya1 commented on pull request: [2969](https://github.com/hackforla/website/pull/2969#issuecomment-1065630947) at 2022-03-11 03:17 PM PST -1anya1,2022-03-15T05:06:43Z,- 1anya1 commented on pull request: [2969](https://github.com/hackforla/website/pull/2969#issuecomment-1067568474) at 2022-03-14 10:06 PM PDT -1anya1,2022-03-16T15:17:40Z,- 1anya1 pull request merged: [2969](https://github.com/hackforla/website/pull/2969#event-6251823726) at 2022-03-16 08:17 AM PDT -1anya1,2022-03-16T18:41:05Z,- 1anya1 assigned to issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1059945856) at 2022-03-16 11:41 AM PDT -1anya1,2022-03-16T18:42:49Z,- 1anya1 commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1069455089) at 2022-03-16 11:42 AM PDT -1anya1,2022-03-24T21:07:58Z,- 1anya1 commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1078307752) at 2022-03-24 02:07 PM PDT -1anya1,2022-03-24T21:09:59Z,- 1anya1 assigned to issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1064702747) at 2022-03-24 02:09 PM PDT -1anya1,2022-03-24T21:11:35Z,- 1anya1 commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078325146) at 2022-03-24 02:11 PM PDT -1anya1,2022-03-25T00:17:12Z,- 1anya1 unassigned from issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078521786) at 2022-03-24 05:17 PM PDT -1anya1,2022-03-25T00:51:57Z,- 1anya1 closed issue by PR 2373: [2317](https://github.com/hackforla/website/issues/2317#event-6303840807) at 2022-03-24 05:51 PM PDT -1anya1,2022-03-28T22:10:08Z,- 1anya1 commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1081203183) at 2022-03-28 03:10 PM PDT -1anya1,2022-04-19T16:05:37Z,- 1anya1 commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1102830499) at 2022-04-19 09:05 AM PDT -1bhavyasingh1,2023-04-14T09:29:39Z,- 1bhavyasingh1 commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1508224290) at 2023-04-14 02:29 AM PDT -1bhavyasingh1,2023-04-14T09:32:21Z,- 1bhavyasingh1 opened pull request: [4515](https://github.com/hackforla/website/pull/4515) at 2023-04-14 02:32 AM PDT -1bhavyasingh1,2023-04-16T07:14:40Z,- 1bhavyasingh1 pull request closed w/o merging: [4515](https://github.com/hackforla/website/pull/4515#event-9015919244) at 2023-04-16 12:14 AM PDT -1x55,5359,SKILLS ISSUE -1x55,2023-08-30T04:06:42Z,- 1x55 opened issue: [5359](https://github.com/hackforla/website/issues/5359) at 2023-08-29 09:06 PM PDT -1x55,2023-08-30T04:08:55Z,- 1x55 assigned to issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1698456551) at 2023-08-29 09:08 PM PDT -5AIPAVAN,2024-10-11T17:10:05Z,- 5AIPAVAN commented on issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2407817637) at 2024-10-11 10:10 AM PDT -5amlim,4977,SKILLS ISSUE -5amlim,2023-07-18T01:55:57Z,- 5amlim opened issue: [4977](https://github.com/hackforla/website/issues/4977) at 2023-07-17 06:55 PM PDT -5amlim,2023-07-18T02:32:31Z,- 5amlim assigned to issue: [4977](https://github.com/hackforla/website/issues/4977) at 2023-07-17 07:32 PM PDT -7kram,2022-09-03T20:59:11Z,- 7kram commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1236197698) at 2022-09-03 01:59 PM PDT -7kram,2022-09-03T21:52:57Z,- 7kram commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1236203610) at 2022-09-03 02:52 PM PDT -7kram,2022-09-04T00:33:38Z,- 7kram commented on issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1236222938) at 2022-09-03 05:33 PM PDT -7kram,2022-09-04T00:43:17Z,- 7kram commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1236224484) at 2022-09-03 05:43 PM PDT -7kram,2022-09-04T01:09:35Z,- 7kram commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1236227094) at 2022-09-03 06:09 PM PDT -7kram,2022-09-08T07:18:00Z,- 7kram commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-1240323716) at 2022-09-08 12:18 AM PDT -7kram,2022-09-08T07:23:16Z,- 7kram commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1240328862) at 2022-09-08 12:23 AM PDT -7kram,2022-09-08T07:24:36Z,- 7kram commented on issue: [3523](https://github.com/hackforla/website/issues/3523#issuecomment-1240330136) at 2022-09-08 12:24 AM PDT -7kram,2022-09-08T16:28:41Z,- 7kram commented on issue: [3524](https://github.com/hackforla/website/issues/3524#issuecomment-1240946700) at 2022-09-08 09:28 AM PDT -7kram,2022-09-08T16:29:39Z,- 7kram commented on issue: [3525](https://github.com/hackforla/website/issues/3525#issuecomment-1240947716) at 2022-09-08 09:29 AM PDT -7kram,2022-09-08T16:30:24Z,- 7kram commented on issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-1240948542) at 2022-09-08 09:30 AM PDT -7kram,2022-09-08T16:31:01Z,- 7kram commented on issue: [3527](https://github.com/hackforla/website/issues/3527#issuecomment-1240949187) at 2022-09-08 09:31 AM PDT -7kram,2022-09-08T16:31:53Z,- 7kram commented on issue: [3528](https://github.com/hackforla/website/issues/3528#issuecomment-1240950121) at 2022-09-08 09:31 AM PDT -7kram,2022-09-08T16:32:45Z,- 7kram commented on issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-1240951137) at 2022-09-08 09:32 AM PDT -7kram,2022-09-08T16:34:24Z,- 7kram commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1240952965) at 2022-09-08 09:34 AM PDT -7kram,2022-09-08T16:35:01Z,- 7kram commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1240953630) at 2022-09-08 09:35 AM PDT -7kram,2022-09-08T16:38:20Z,- 7kram commented on issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1240957241) at 2022-09-08 09:38 AM PDT -7kram,2022-09-08T16:39:24Z,- 7kram commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1240958394) at 2022-09-08 09:39 AM PDT -7kram,2022-09-08T19:57:41Z,- 7kram commented on issue: [3355](https://github.com/hackforla/website/issues/3355#issuecomment-1241169591) at 2022-09-08 12:57 PM PDT -7kram,2022-09-08T20:15:28Z,- 7kram commented on issue: [3523](https://github.com/hackforla/website/issues/3523#issuecomment-1241187286) at 2022-09-08 01:15 PM PDT -7kram,2022-09-08T21:23:46Z,- 7kram commented on issue: [3245](https://github.com/hackforla/website/issues/3245#issuecomment-1241248514) at 2022-09-08 02:23 PM PDT -7kram,2022-09-08T21:23:46Z,- 7kram closed issue as completed: [3245](https://github.com/hackforla/website/issues/3245#event-7351608564) at 2022-09-08 02:23 PM PDT -7kram,2022-09-08T21:53:22Z,- 7kram assigned to issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1241267822) at 2022-09-08 02:53 PM PDT -7kram,2022-09-11T04:07:47Z,- 7kram commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242881563) at 2022-09-10 09:07 PM PDT -7kram,2022-09-11T04:27:17Z,- 7kram commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242883440) at 2022-09-10 09:27 PM PDT -7kram,2022-09-11T04:44:35Z,- 7kram commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242885286) at 2022-09-10 09:44 PM PDT -7kram,2022-09-11T04:48:18Z,- 7kram commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242885661) at 2022-09-10 09:48 PM PDT -7kram,2022-09-11T15:56:49Z,- 7kram commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242993167) at 2022-09-11 08:56 AM PDT -7kram,2022-09-11T16:18:44Z,- 7kram commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242997074) at 2022-09-11 09:18 AM PDT -7kram,2022-09-11T19:01:19Z,- 7kram closed issue by PR 3457: [3023](https://github.com/hackforla/website/issues/3023#event-7362810549) at 2022-09-11 12:01 PM PDT -7kram,2022-09-12T03:56:32Z,- 7kram commented on issue: [3389](https://github.com/hackforla/website/issues/3389#issuecomment-1243187517) at 2022-09-11 08:56 PM PDT -7kram,2022-09-12T22:17:20Z,- 7kram opened issue: [3540](https://github.com/hackforla/website/issues/3540) at 2022-09-12 03:17 PM PDT -7kram,2022-09-12T22:17:21Z,- 7kram assigned to issue: [3540](https://github.com/hackforla/website/issues/3540) at 2022-09-12 03:17 PM PDT -7kram,2022-09-12T22:18:41Z,- 7kram commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-09-12 03:18 PM PDT -7kram,2022-09-18T17:35:07Z,- 7kram commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1250353682) at 2022-09-18 10:35 AM PDT -7kram,2022-09-19T16:19:05Z,- 7kram unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-09-19 09:19 AM PDT -7kram,2022-09-25T16:36:31Z,- 7kram commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1257230573) at 2022-09-25 09:36 AM PDT -7kram,2022-09-28T15:06:14Z,- 7kram commented on issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1261052962) at 2022-09-28 08:06 AM PDT -7kram,2022-09-28T15:20:25Z,- 7kram commented on issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1261073070) at 2022-09-28 08:20 AM PDT -7kram,2022-09-28T17:03:00Z,- 7kram commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1261204054) at 2022-09-28 10:03 AM PDT -7kram,2022-10-02T17:15:34Z,- 7kram opened issue: [3596](https://github.com/hackforla/website/issues/3596) at 2022-10-02 10:15 AM PDT -7kram,2022-10-02T17:18:37Z,- 7kram commented on issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1264691932) at 2022-10-02 10:18 AM PDT -7kram,2022-10-03T16:03:29Z,- 7kram commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1265685821) at 2022-10-03 09:03 AM PDT -7kram,2022-10-05T16:48:47Z,- 7kram closed issue as completed: [2615](https://github.com/hackforla/website/issues/2615#event-7526865825) at 2022-10-05 09:48 AM PDT -7kram,2022-10-09T06:10:52Z,- 7kram commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1272465329) at 2022-10-08 11:10 PM PDT -7kram,2022-10-12T16:50:05Z,- 7kram assigned to issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1276460970) at 2022-10-12 09:50 AM PDT -7kram,2022-10-16T15:34:21Z,- 7kram commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1279993306) at 2022-10-16 08:34 AM PDT -7kram,2022-10-16T16:35:12Z,- 7kram commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1280004607) at 2022-10-16 09:35 AM PDT -7kram,2022-10-16T16:35:12Z,- 7kram reopened issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1280004607) at 2022-10-16 09:35 AM PDT -7kram,2022-10-16T16:38:06Z,- 7kram commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1280005149) at 2022-10-16 09:38 AM PDT -7kram,2022-10-16T16:43:49Z,- 7kram commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1280006194) at 2022-10-16 09:43 AM PDT -7kram,2022-10-16T17:21:20Z,- 7kram commented on issue: [2886](https://github.com/hackforla/website/issues/2886#issuecomment-1280013756) at 2022-10-16 10:21 AM PDT -7kram,2022-10-16T17:21:20Z,- 7kram reopened issue: [2886](https://github.com/hackforla/website/issues/2886#issuecomment-1280013756) at 2022-10-16 10:21 AM PDT -7kram,2022-10-16T18:16:46Z,- 7kram commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1280024229) at 2022-10-16 11:16 AM PDT -7kram,2022-10-19T16:28:02Z,- 7kram commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1284277336) at 2022-10-19 09:28 AM PDT -7kram,2022-10-19T16:29:31Z,- 7kram closed issue as completed: [3545](https://github.com/hackforla/website/issues/3545#event-7623479472) at 2022-10-19 09:29 AM PDT -7kram,2022-10-19T16:30:19Z,- 7kram commented on issue: [3545](https://github.com/hackforla/website/issues/3545#issuecomment-1284280035) at 2022-10-19 09:30 AM PDT -7kram,2022-10-24T16:13:49Z,- 7kram commented on issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1289271895) at 2022-10-24 09:13 AM PDT -7kram,2022-10-24T16:28:08Z,- 7kram commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1289288765) at 2022-10-24 09:28 AM PDT -7kram,2022-10-24T16:41:30Z,- 7kram commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1289305471) at 2022-10-24 09:41 AM PDT -7kram,2022-10-31T16:25:33Z,- 7kram commented on issue: [3532](https://github.com/hackforla/website/issues/3532#issuecomment-1297348592) at 2022-10-31 09:25 AM PDT -7kram,2022-11-02T05:29:12Z,- 7kram commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1299594760) at 2022-11-01 10:29 PM PDT -7kram,2022-11-02T16:55:26Z,- 7kram commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1300902354) at 2022-11-02 09:55 AM PDT -7kram,2022-11-06T17:56:50Z,- 7kram commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1304856941) at 2022-11-06 09:56 AM PST -7kram,2022-11-06T18:47:55Z,- 7kram commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1304867526) at 2022-11-06 10:47 AM PST -7kram,2022-11-06T19:38:47Z,- 7kram commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1304876804) at 2022-11-06 11:38 AM PST -7kram,2022-11-09T18:08:18Z,- 7kram assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1304856941) at 2022-11-09 10:08 AM PST -7kram,2022-11-13T18:02:47Z,- 7kram commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1312787520) at 2022-11-13 10:02 AM PST -7kram,2022-11-20T18:00:47Z,- 7kram commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1321202216) at 2022-11-20 10:00 AM PST -7kram,2022-11-30T04:39:27Z,- 7kram commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1331635220) at 2022-11-29 08:39 PM PST -7kram,2022-11-30T04:41:58Z,- 7kram commented on issue: [3142](https://github.com/hackforla/website/issues/3142#issuecomment-1331636349) at 2022-11-29 08:41 PM PST -7kram,2022-11-30T04:48:46Z,- 7kram commented on issue: [3724](https://github.com/hackforla/website/issues/3724#issuecomment-1331639562) at 2022-11-29 08:48 PM PST -7kram,2022-11-30T04:52:18Z,- 7kram commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1331641197) at 2022-11-29 08:52 PM PST -7kram,2022-11-30T16:20:58Z,- 7kram commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1332419118) at 2022-11-30 08:20 AM PST -7kram,2023-01-22T17:41:17Z,- 7kram commented on issue: [2704](https://github.com/hackforla/website/issues/2704#issuecomment-1399556634) at 2023-01-22 09:41 AM PST -7kram,2023-01-22T17:44:19Z,- 7kram closed issue as completed: [1742](https://github.com/hackforla/website/issues/1742#event-8329251695) at 2023-01-22 09:44 AM PST -7kram,2023-01-22T17:59:07Z,- 7kram commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1399562198) at 2023-01-22 09:59 AM PST -8alpreet,7205,SKILLS ISSUE -8alpreet,2024-08-06T03:10:01Z,- 8alpreet opened issue: [7205](https://github.com/hackforla/website/issues/7205) at 2024-08-05 08:10 PM PDT -8alpreet,2024-08-06T03:10:02Z,- 8alpreet assigned to issue: [7205](https://github.com/hackforla/website/issues/7205) at 2024-08-05 08:10 PM PDT -8alpreet,2024-08-06T03:40:22Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2270321680) at 2024-08-05 08:40 PM PDT -8alpreet,2024-08-06T03:43:24Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2270323661) at 2024-08-05 08:43 PM PDT -8alpreet,2024-08-06T18:33:02Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2271904427) at 2024-08-06 11:33 AM PDT -8alpreet,2024-08-06T18:42:04Z,- 8alpreet assigned to issue: [7138](https://github.com/hackforla/website/issues/7138) at 2024-08-06 11:42 AM PDT -8alpreet,2024-08-06T18:42:23Z,- 8alpreet unassigned from issue: [7138](https://github.com/hackforla/website/issues/7138#issuecomment-2271920307) at 2024-08-06 11:42 AM PDT -8alpreet,2024-08-06T18:42:24Z,- 8alpreet assigned to issue: [7138](https://github.com/hackforla/website/issues/7138#issuecomment-2271920307) at 2024-08-06 11:42 AM PDT -8alpreet,2024-08-06T18:55:15Z,- 8alpreet commented on issue: [7138](https://github.com/hackforla/website/issues/7138#issuecomment-2271940714) at 2024-08-06 11:55 AM PDT -8alpreet,2024-08-06T19:58:28Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2272044867) at 2024-08-06 12:58 PM PDT -8alpreet,2024-08-06T20:30:07Z,- 8alpreet opened pull request: [7229](https://github.com/hackforla/website/pull/7229) at 2024-08-06 01:30 PM PDT -8alpreet,2024-08-06T21:54:58Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2272217490) at 2024-08-06 02:54 PM PDT -8alpreet,2024-08-07T17:15:32Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2273948593) at 2024-08-07 10:15 AM PDT -8alpreet,2024-08-07T23:14:04Z,- 8alpreet commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2274500127) at 2024-08-07 04:14 PM PDT -8alpreet,2024-08-07T23:23:46Z,- 8alpreet commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2274508983) at 2024-08-07 04:23 PM PDT -8alpreet,2024-08-08T18:28:44Z,- 8alpreet commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2276420584) at 2024-08-08 11:28 AM PDT -8alpreet,2024-08-08T19:21:17Z,- 8alpreet pull request merged: [7229](https://github.com/hackforla/website/pull/7229#event-13811280995) at 2024-08-08 12:21 PM PDT -8alpreet,2024-08-11T18:48:30Z,- 8alpreet assigned to issue: [7187](https://github.com/hackforla/website/issues/7187) at 2024-08-11 11:48 AM PDT -8alpreet,2024-08-11T19:18:01Z,- 8alpreet commented on issue: [7187](https://github.com/hackforla/website/issues/7187#issuecomment-2282861379) at 2024-08-11 12:18 PM PDT -8alpreet,2024-08-11T20:02:26Z,- 8alpreet opened pull request: [7270](https://github.com/hackforla/website/pull/7270) at 2024-08-11 01:02 PM PDT -8alpreet,2024-08-11T20:09:53Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2282875155) at 2024-08-11 01:09 PM PDT -8alpreet,2024-08-18T04:15:33Z,- 8alpreet pull request merged: [7270](https://github.com/hackforla/website/pull/7270#event-13921129004) at 2024-08-17 09:15 PM PDT -8alpreet,2024-08-19T22:07:54Z,- 8alpreet commented on pull request: [7293](https://github.com/hackforla/website/pull/7293#issuecomment-2297543698) at 2024-08-19 03:07 PM PDT -8alpreet,2024-08-19T23:44:23Z,- 8alpreet submitted pull request review: [7293](https://github.com/hackforla/website/pull/7293#pullrequestreview-2246715547) at 2024-08-19 04:44 PM PDT -8alpreet,2024-08-19T23:53:32Z,- 8alpreet commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2297711904) at 2024-08-19 04:53 PM PDT -8alpreet,2024-08-20T00:17:37Z,- 8alpreet submitted pull request review: [7309](https://github.com/hackforla/website/pull/7309#pullrequestreview-2246751192) at 2024-08-19 05:17 PM PDT -8alpreet,2024-08-20T00:22:11Z,- 8alpreet commented on pull request: [7306](https://github.com/hackforla/website/pull/7306#issuecomment-2297739519) at 2024-08-19 05:22 PM PDT -8alpreet,2024-08-20T01:06:45Z,- 8alpreet commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2297773947) at 2024-08-19 06:06 PM PDT -8alpreet,2024-08-20T01:22:16Z,- 8alpreet submitted pull request review: [7298](https://github.com/hackforla/website/pull/7298#pullrequestreview-2246799147) at 2024-08-19 06:22 PM PDT -8alpreet,2024-08-20T01:24:59Z,- 8alpreet commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2297789160) at 2024-08-19 06:24 PM PDT -8alpreet,2024-08-20T01:25:17Z,- 8alpreet commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2297789481) at 2024-08-19 06:25 PM PDT -8alpreet,2024-08-20T20:24:28Z,- 8alpreet submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2249029618) at 2024-08-20 01:24 PM PDT -8alpreet,2024-08-20T20:33:40Z,- 8alpreet submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2249045096) at 2024-08-20 01:33 PM PDT -8alpreet,2024-08-20T20:40:05Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2299725712) at 2024-08-20 01:40 PM PDT -8alpreet,2024-08-20T20:49:55Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2299740499) at 2024-08-20 01:49 PM PDT -8alpreet,2024-08-20T20:57:03Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2299751413) at 2024-08-20 01:57 PM PDT -8alpreet,2024-08-20T21:04:28Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2299762915) at 2024-08-20 02:04 PM PDT -8alpreet,2024-08-20T21:07:01Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2299767229) at 2024-08-20 02:07 PM PDT -8alpreet,2024-08-20T21:07:38Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2299768215) at 2024-08-20 02:07 PM PDT -8alpreet,2024-08-20T21:10:44Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2299773176) at 2024-08-20 02:10 PM PDT -8alpreet,2024-08-20T21:12:42Z,- 8alpreet assigned to issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2294269081) at 2024-08-20 02:12 PM PDT -8alpreet,2024-08-20T21:13:56Z,- 8alpreet commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2299777751) at 2024-08-20 02:13 PM PDT -8alpreet,2024-08-20T21:15:31Z,- 8alpreet commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299779813) at 2024-08-20 02:15 PM PDT -8alpreet,2024-08-20T21:30:02Z,- 8alpreet commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299799038) at 2024-08-20 02:30 PM PDT -8alpreet,2024-08-20T22:13:43Z,- 8alpreet submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2249190821) at 2024-08-20 03:13 PM PDT -8alpreet,2024-08-21T01:38:34Z,- 8alpreet submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2249393138) at 2024-08-20 06:38 PM PDT -8alpreet,2024-08-21T02:17:49Z,- 8alpreet opened pull request: [7325](https://github.com/hackforla/website/pull/7325) at 2024-08-20 07:17 PM PDT -8alpreet,2024-08-22T12:36:43Z,- 8alpreet submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2254396079) at 2024-08-22 05:36 AM PDT -8alpreet,2024-08-22T23:22:57Z,- 8alpreet commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2305907615) at 2024-08-22 04:22 PM PDT -8alpreet,2024-08-23T17:09:54Z,- 8alpreet commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2307487359) at 2024-08-23 10:09 AM PDT -8alpreet,2024-08-24T16:58:37Z,- 8alpreet commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2308456207) at 2024-08-24 09:58 AM PDT -8alpreet,2024-08-25T21:35:26Z,- 8alpreet commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2309002873) at 2024-08-25 02:35 PM PDT -8alpreet,2024-08-25T21:46:15Z,- 8alpreet submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2259378640) at 2024-08-25 02:46 PM PDT -8alpreet,2024-08-26T21:58:46Z,- 8alpreet commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2311174044) at 2024-08-26 02:58 PM PDT -8alpreet,2024-09-02T18:40:51Z,- 8alpreet commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2325195190) at 2024-09-02 11:40 AM PDT -8alpreet,2024-09-02T18:43:08Z,- 8alpreet commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2325196958) at 2024-09-02 11:43 AM PDT -8alpreet,2024-09-03T15:30:47Z,- 8alpreet commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2326824774) at 2024-09-03 08:30 AM PDT -8alpreet,2024-09-03T15:33:28Z,- 8alpreet commented on pull request: [7376](https://github.com/hackforla/website/pull/7376#issuecomment-2326831288) at 2024-09-03 08:33 AM PDT -8alpreet,2024-09-03T15:33:58Z,- 8alpreet commented on pull request: [7371](https://github.com/hackforla/website/pull/7371#issuecomment-2326832408) at 2024-09-03 08:33 AM PDT -8alpreet,2024-09-03T15:34:28Z,- 8alpreet commented on pull request: [7370](https://github.com/hackforla/website/pull/7370#issuecomment-2326833519) at 2024-09-03 08:34 AM PDT -8alpreet,2024-09-03T15:35:01Z,- 8alpreet commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2326834754) at 2024-09-03 08:35 AM PDT -8alpreet,2024-09-04T03:48:10Z,- 8alpreet pull request merged: [7325](https://github.com/hackforla/website/pull/7325#event-14123744268) at 2024-09-03 08:48 PM PDT -8alpreet,2024-09-04T15:38:11Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2329400641) at 2024-09-04 08:38 AM PDT -8alpreet,2024-09-04T16:08:58Z,- 8alpreet submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2280670789) at 2024-09-04 09:08 AM PDT -8alpreet,2024-09-04T16:15:48Z,- 8alpreet submitted pull request review: [7370](https://github.com/hackforla/website/pull/7370#pullrequestreview-2280688126) at 2024-09-04 09:15 AM PDT -8alpreet,2024-09-04T16:23:20Z,- 8alpreet submitted pull request review: [7371](https://github.com/hackforla/website/pull/7371#pullrequestreview-2280708233) at 2024-09-04 09:23 AM PDT -8alpreet,2024-09-04T16:26:37Z,- 8alpreet submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2280715039) at 2024-09-04 09:26 AM PDT -8alpreet,2024-09-04T16:30:56Z,- 8alpreet submitted pull request review: [7376](https://github.com/hackforla/website/pull/7376#pullrequestreview-2280723537) at 2024-09-04 09:30 AM PDT -8alpreet,2024-09-04T16:35:09Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2329524753) at 2024-09-04 09:35 AM PDT -8alpreet,2024-09-04T17:43:40Z,- 8alpreet submitted pull request review: [7371](https://github.com/hackforla/website/pull/7371#pullrequestreview-2280882804) at 2024-09-04 10:43 AM PDT -8alpreet,2024-09-04T20:30:08Z,- 8alpreet assigned to issue: [7156](https://github.com/hackforla/website/issues/7156#issuecomment-2259933576) at 2024-09-04 01:30 PM PDT -8alpreet,2024-09-04T20:31:25Z,- 8alpreet commented on issue: [7156](https://github.com/hackforla/website/issues/7156#issuecomment-2329915888) at 2024-09-04 01:31 PM PDT -8alpreet,2024-09-05T18:11:33Z,- 8alpreet opened issue: [7401](https://github.com/hackforla/website/issues/7401) at 2024-09-05 11:11 AM PDT -8alpreet,2024-09-05T18:19:28Z,- 8alpreet opened issue: [7402](https://github.com/hackforla/website/issues/7402) at 2024-09-05 11:19 AM PDT -8alpreet,2024-09-05T18:22:04Z,- 8alpreet opened issue: [7403](https://github.com/hackforla/website/issues/7403) at 2024-09-05 11:22 AM PDT -8alpreet,2024-09-11T23:04:17Z,- 8alpreet submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2298884747) at 2024-09-11 04:04 PM PDT -8alpreet,2024-09-12T00:53:05Z,- 8alpreet submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2299018670) at 2024-09-11 05:53 PM PDT -8alpreet,2024-09-16T23:46:34Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2354223222) at 2024-09-16 04:46 PM PDT -8alpreet,2024-09-16T23:51:17Z,- 8alpreet commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2354227164) at 2024-09-16 04:51 PM PDT -8alpreet,2024-09-16T23:51:25Z,- 8alpreet commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2354227273) at 2024-09-16 04:51 PM PDT -8alpreet,2024-09-17T02:07:28Z,- 8alpreet submitted pull request review: [7462](https://github.com/hackforla/website/pull/7462#pullrequestreview-2308117550) at 2024-09-16 07:07 PM PDT -8alpreet,2024-09-17T02:08:33Z,- 8alpreet submitted pull request review: [7447](https://github.com/hackforla/website/pull/7447#pullrequestreview-2308119899) at 2024-09-16 07:08 PM PDT -8alpreet,2024-09-18T01:43:26Z,- 8alpreet commented on pull request: [7466](https://github.com/hackforla/website/pull/7466#issuecomment-2357319840) at 2024-09-17 06:43 PM PDT -8alpreet,2024-09-18T18:29:18Z,- 8alpreet submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2313462110) at 2024-09-18 11:29 AM PDT -8alpreet,2024-09-18T18:38:00Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2359160832) at 2024-09-18 11:38 AM PDT -8alpreet,2024-09-18T18:38:37Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2359161841) at 2024-09-18 11:38 AM PDT -8alpreet,2024-09-18T18:43:58Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2359171020) at 2024-09-18 11:43 AM PDT -8alpreet,2024-09-18T18:47:31Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2359177387) at 2024-09-18 11:47 AM PDT -8alpreet,2024-09-18T19:04:03Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2359206031) at 2024-09-18 12:04 PM PDT -8alpreet,2024-09-25T02:25:49Z,- 8alpreet assigned to issue: [7494](https://github.com/hackforla/website/issues/7494) at 2024-09-24 07:25 PM PDT -8alpreet,2024-09-25T02:27:36Z,- 8alpreet commented on issue: [7494](https://github.com/hackforla/website/issues/7494#issuecomment-2372761057) at 2024-09-24 07:27 PM PDT -8alpreet,2024-09-25T17:56:26Z,- 8alpreet commented on issue: [7494](https://github.com/hackforla/website/issues/7494#issuecomment-2374790629) at 2024-09-25 10:56 AM PDT -8alpreet,2024-09-25T18:02:52Z,- 8alpreet opened pull request: [7523](https://github.com/hackforla/website/pull/7523) at 2024-09-25 11:02 AM PDT -8alpreet,2024-09-26T21:20:16Z,- 8alpreet pull request merged: [7523](https://github.com/hackforla/website/pull/7523#event-14422710767) at 2024-09-26 02:20 PM PDT -8alpreet,2024-09-26T22:04:40Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2378017837) at 2024-09-26 03:04 PM PDT -8alpreet,2024-09-26T22:05:44Z,- 8alpreet commented on pull request: [7523](https://github.com/hackforla/website/pull/7523#issuecomment-2378019087) at 2024-09-26 03:05 PM PDT -8alpreet,2024-09-27T01:08:20Z,- 8alpreet commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2378211562) at 2024-09-26 06:08 PM PDT -8alpreet,2024-09-27T16:15:40Z,- 8alpreet commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2379634828) at 2024-09-27 09:15 AM PDT -8alpreet,2024-09-30T23:00:16Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2384320542) at 2024-09-30 04:00 PM PDT -8alpreet,2024-10-08T00:02:05Z,- 8alpreet commented on pull request: [7568](https://github.com/hackforla/website/pull/7568#issuecomment-2398225214) at 2024-10-07 05:02 PM PDT -8alpreet,2024-10-08T19:46:36Z,- 8alpreet submitted pull request review: [7568](https://github.com/hackforla/website/pull/7568#pullrequestreview-2355390394) at 2024-10-08 12:46 PM PDT -8alpreet,2024-10-08T19:47:47Z,- 8alpreet commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2400692418) at 2024-10-08 12:47 PM PDT -8alpreet,2024-10-09T01:18:31Z,- 8alpreet commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2401083905) at 2024-10-08 06:18 PM PDT -8alpreet,2024-10-09T01:38:40Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2401102949) at 2024-10-08 06:38 PM PDT -8alpreet,2024-10-15T03:12:26Z,- 8alpreet commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2412763802) at 2024-10-14 08:12 PM PDT -8alpreet,2024-10-15T03:17:16Z,- 8alpreet commented on pull request: [7591](https://github.com/hackforla/website/pull/7591#issuecomment-2412779073) at 2024-10-14 08:17 PM PDT -8alpreet,2024-10-15T03:21:22Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2412793659) at 2024-10-14 08:21 PM PDT -8alpreet,2024-10-17T03:17:54Z,- 8alpreet submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2374063847) at 2024-10-16 08:17 PM PDT -8alpreet,2024-10-17T03:26:18Z,- 8alpreet commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2418419250) at 2024-10-16 08:26 PM PDT -8alpreet,2024-10-17T03:27:20Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2418420077) at 2024-10-16 08:27 PM PDT -8alpreet,2024-10-25T20:39:21Z,- 8alpreet opened issue: [7636](https://github.com/hackforla/website/issues/7636) at 2024-10-25 01:39 PM PDT -8alpreet,2024-10-25T21:00:01Z,- 8alpreet commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2438819611) at 2024-10-25 02:00 PM PDT -8alpreet,2024-10-27T00:26:48Z,- 8alpreet commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2439779984) at 2024-10-26 05:26 PM PDT -8alpreet,2024-10-27T17:59:47Z,- 8alpreet assigned to issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2438819611) at 2024-10-27 10:59 AM PDT -8alpreet,2024-10-27T18:14:32Z,- 8alpreet commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2440123826) at 2024-10-27 11:14 AM PDT -8alpreet,2024-10-30T04:10:20Z,- 8alpreet commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2445799113) at 2024-10-29 09:10 PM PDT -8alpreet,2024-10-30T17:29:12Z,- 8alpreet opened issue: [7668](https://github.com/hackforla/website/issues/7668) at 2024-10-30 10:29 AM PDT -8alpreet,2024-10-30T17:33:02Z,- 8alpreet commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2447893838) at 2024-10-30 10:33 AM PDT -8alpreet,2024-10-30T18:14:29Z,- 8alpreet commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2447983060) at 2024-10-30 11:14 AM PDT -8alpreet,2024-10-30T18:32:36Z,- 8alpreet opened issue: [7669](https://github.com/hackforla/website/issues/7669) at 2024-10-30 11:32 AM PDT -8alpreet,2024-11-01T13:32:34Z,- 8alpreet commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2451879794) at 2024-11-01 06:32 AM PDT -8alpreet,2024-11-13T04:00:55Z,- 8alpreet assigned to issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2472325268) at 2024-11-12 08:00 PM PST -8alpreet,2024-11-13T04:03:38Z,- 8alpreet assigned to issue: [7668](https://github.com/hackforla/website/issues/7668#issuecomment-2472327895) at 2024-11-12 08:03 PM PST -8alpreet,2025-03-04T01:38:53Z,- 8alpreet unassigned from issue: [7668](https://github.com/hackforla/website/issues/7668#issuecomment-2472328170) at 2025-03-03 05:38 PM PST -8alpreet,2025-03-16T22:43:26Z,- 8alpreet unassigned from issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2695964353) at 2025-03-16 03:43 PM PDT -8alpreet,2025-03-16T22:46:44Z,- 8alpreet unassigned from issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2472328892) at 2025-03-16 03:46 PM PDT -8alpreet,2025-05-20T00:47:40Z,- 8alpreet assigned to issue: [6919](https://github.com/hackforla/website/issues/6919#event-17723933701) at 2025-05-19 05:47 PM PDT -93Belen,4631,SKILLS ISSUE -93Belen,2023-05-09T03:35:12Z,- 93Belen opened issue: [4631](https://github.com/hackforla/website/issues/4631) at 2023-05-08 08:35 PM PDT -93Belen,2023-05-09T03:45:26Z,- 93Belen assigned to issue: [4631](https://github.com/hackforla/website/issues/4631) at 2023-05-08 08:45 PM PDT -93Belen,2023-05-09T14:11:52Z,- 93Belen assigned to issue: [4473](https://github.com/hackforla/website/issues/4473#issuecomment-1504472218) at 2023-05-09 07:11 AM PDT -93Belen,2023-05-09T14:31:41Z,- 93Belen opened pull request: [4643](https://github.com/hackforla/website/pull/4643) at 2023-05-09 07:31 AM PDT -93Belen,2023-05-09T14:39:36Z,- 93Belen commented on issue: [4473](https://github.com/hackforla/website/issues/4473#issuecomment-1540258746) at 2023-05-09 07:39 AM PDT -93Belen,2023-05-09T14:44:21Z,- 93Belen commented on issue: [4631](https://github.com/hackforla/website/issues/4631#issuecomment-1540266766) at 2023-05-09 07:44 AM PDT -93Belen,2023-05-10T10:29:07Z,- 93Belen commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1541889009) at 2023-05-10 03:29 AM PDT -93Belen,2023-05-10T10:39:50Z,- 93Belen opened pull request: [4646](https://github.com/hackforla/website/pull/4646) at 2023-05-10 03:39 AM PDT -93Belen,2023-05-10T10:45:19Z,- 93Belen commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1541911235) at 2023-05-10 03:45 AM PDT -93Belen,2023-05-10T19:37:31Z,- 93Belen commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1542705702) at 2023-05-10 12:37 PM PDT -93Belen,2023-05-10T19:53:12Z,- 93Belen commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1542724514) at 2023-05-10 12:53 PM PDT -93Belen,2023-05-11T05:29:30Z,- 93Belen pull request closed w/o merging: [4643](https://github.com/hackforla/website/pull/4643#event-9218030767) at 2023-05-10 10:29 PM PDT -93Belen,2023-05-11T18:18:06Z,- 93Belen commented on issue: [4473](https://github.com/hackforla/website/issues/4473#issuecomment-1544469877) at 2023-05-11 11:18 AM PDT -93Belen,2023-05-12T09:58:04Z,- 93Belen commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1545490853) at 2023-05-12 02:58 AM PDT -93Belen,2023-05-13T19:44:38Z,- 93Belen pull request closed w/o merging: [4646](https://github.com/hackforla/website/pull/4646#event-9239125435) at 2023-05-13 12:44 PM PDT -93Belen,2023-05-13T19:57:30Z,- 93Belen commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1546740008) at 2023-05-13 12:57 PM PDT -93Belen,2023-05-14T17:16:59Z,- 93Belen opened pull request: [4666](https://github.com/hackforla/website/pull/4666) at 2023-05-14 10:16 AM PDT -93Belen,2023-05-14T17:18:10Z,- 93Belen commented on pull request: [4666](https://github.com/hackforla/website/pull/4666#issuecomment-1546951524) at 2023-05-14 10:18 AM PDT -93Belen,2023-05-14T17:25:17Z,- 93Belen commented on pull request: [4665](https://github.com/hackforla/website/pull/4665#issuecomment-1546953338) at 2023-05-14 10:25 AM PDT -93Belen,2023-05-14T20:23:14Z,- 93Belen submitted pull request review: [4665](https://github.com/hackforla/website/pull/4665#pullrequestreview-1425597241) at 2023-05-14 01:23 PM PDT -93Belen,2023-05-15T20:16:44Z,- 93Belen assigned to issue: [4642](https://github.com/hackforla/website/issues/4642) at 2023-05-15 01:16 PM PDT -93Belen,2023-05-15T20:18:01Z,- 93Belen commented on issue: [4642](https://github.com/hackforla/website/issues/4642#issuecomment-1548517786) at 2023-05-15 01:18 PM PDT -93Belen,2023-05-15T20:32:13Z,- 93Belen opened pull request: [4675](https://github.com/hackforla/website/pull/4675) at 2023-05-15 01:32 PM PDT -93Belen,2023-05-15T20:33:21Z,- 93Belen commented on pull request: [4675](https://github.com/hackforla/website/pull/4675#issuecomment-1548535428) at 2023-05-15 01:33 PM PDT -93Belen,2023-05-15T20:34:07Z,- 93Belen pull request closed w/o merging: [4675](https://github.com/hackforla/website/pull/4675#event-9250866880) at 2023-05-15 01:34 PM PDT -93Belen,2023-05-15T20:56:41Z,- 93Belen opened pull request: [4677](https://github.com/hackforla/website/pull/4677) at 2023-05-15 01:56 PM PDT -93Belen,2023-05-15T20:57:36Z,- 93Belen commented on pull request: [4677](https://github.com/hackforla/website/pull/4677#issuecomment-1548564909) at 2023-05-15 01:57 PM PDT -93Belen,2023-05-16T12:29:59Z,- 93Belen commented on pull request: [4666](https://github.com/hackforla/website/pull/4666#issuecomment-1549571222) at 2023-05-16 05:29 AM PDT -93Belen,2023-05-16T13:27:46Z,- 93Belen commented on pull request: [4674](https://github.com/hackforla/website/pull/4674#issuecomment-1549677168) at 2023-05-16 06:27 AM PDT -93Belen,2023-05-16T13:34:28Z,- 93Belen submitted pull request review: [4674](https://github.com/hackforla/website/pull/4674#pullrequestreview-1428600446) at 2023-05-16 06:34 AM PDT -93Belen,2023-05-17T01:43:43Z,- 93Belen pull request merged: [4677](https://github.com/hackforla/website/pull/4677#event-9263804513) at 2023-05-16 06:43 PM PDT -93Belen,2023-05-17T01:47:59Z,- 93Belen pull request merged: [4666](https://github.com/hackforla/website/pull/4666#event-9263822406) at 2023-05-16 06:47 PM PDT -93Belen,2023-05-17T02:22:23Z,- 93Belen commented on pull request: [4674](https://github.com/hackforla/website/pull/4674#issuecomment-1550593266) at 2023-05-16 07:22 PM PDT -93Belen,2023-05-17T22:43:40Z,- 93Belen assigned to issue: [4687](https://github.com/hackforla/website/issues/4687) at 2023-05-17 03:43 PM PDT -93Belen,2023-05-17T22:45:27Z,- 93Belen commented on issue: [4687](https://github.com/hackforla/website/issues/4687#issuecomment-1552179712) at 2023-05-17 03:45 PM PDT -93Belen,2023-05-18T10:58:42Z,- 93Belen opened pull request: [4691](https://github.com/hackforla/website/pull/4691) at 2023-05-18 03:58 AM PDT -93Belen,2023-05-18T11:09:31Z,- 93Belen commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1552899785) at 2023-05-18 04:09 AM PDT -93Belen,2023-05-18T11:21:35Z,- 93Belen submitted pull request review: [4689](https://github.com/hackforla/website/pull/4689#pullrequestreview-1432518804) at 2023-05-18 04:21 AM PDT -93Belen,2023-05-18T19:13:26Z,- 93Belen commented on pull request: [4691](https://github.com/hackforla/website/pull/4691#issuecomment-1553520661) at 2023-05-18 12:13 PM PDT -93Belen,2023-05-19T06:30:42Z,- 93Belen pull request merged: [4691](https://github.com/hackforla/website/pull/4691#event-9286175614) at 2023-05-18 11:30 PM PDT -93Belen,2023-05-19T19:26:02Z,- 93Belen commented on issue: [4631](https://github.com/hackforla/website/issues/4631#issuecomment-1555132044) at 2023-05-19 12:26 PM PDT -93Belen,2023-05-21T17:07:16Z,- 93Belen commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1556227024) at 2023-05-21 10:07 AM PDT -93Belen,2023-05-22T11:19:19Z,- 93Belen assigned to issue: [4662](https://github.com/hackforla/website/issues/4662) at 2023-05-22 04:19 AM PDT -93Belen,2023-05-22T11:20:49Z,- 93Belen commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1557040450) at 2023-05-22 04:20 AM PDT -93Belen,2023-05-23T13:00:24Z,- 93Belen submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1439648024) at 2023-05-23 06:00 AM PDT -93Belen,2023-05-23T14:54:37Z,- 93Belen commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1559601481) at 2023-05-23 07:54 AM PDT -93Belen,2023-05-23T15:01:29Z,- 93Belen commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1559621561) at 2023-05-23 08:01 AM PDT -93Belen,2023-05-23T19:28:53Z,- 93Belen commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1560011712) at 2023-05-23 12:28 PM PDT -93Belen,2023-05-24T02:37:54Z,- 93Belen commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1560377117) at 2023-05-23 07:37 PM PDT -93Belen,2023-05-24T02:41:56Z,- 93Belen commented on pull request: [4710](https://github.com/hackforla/website/pull/4710#issuecomment-1560379555) at 2023-05-23 07:41 PM PDT -93Belen,2023-05-25T14:16:45Z,- 93Belen submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1444004597) at 2023-05-25 07:16 AM PDT -93Belen,2023-05-25T14:51:06Z,- 93Belen submitted pull request review: [4710](https://github.com/hackforla/website/pull/4710#pullrequestreview-1444081720) at 2023-05-25 07:51 AM PDT -93Belen,2023-05-26T10:49:33Z,- 93Belen commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1564204141) at 2023-05-26 03:49 AM PDT -93Belen,2023-05-26T19:19:13Z,- 93Belen commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1564824546) at 2023-05-26 12:19 PM PDT -93Belen,2023-05-26T21:29:25Z,- 93Belen commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1564979890) at 2023-05-26 02:29 PM PDT -93Belen,2023-05-26T21:45:09Z,- 93Belen submitted pull request review: [4746](https://github.com/hackforla/website/pull/4746#pullrequestreview-1447000349) at 2023-05-26 02:45 PM PDT -93Belen,2023-05-26T22:35:59Z,- 93Belen submitted pull request review: [4746](https://github.com/hackforla/website/pull/4746#pullrequestreview-1447027631) at 2023-05-26 03:35 PM PDT -93Belen,2023-05-27T10:27:06Z,- 93Belen commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1565336598) at 2023-05-27 03:27 AM PDT -93Belen,2023-05-28T18:05:23Z,- 93Belen commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1566214809) at 2023-05-28 11:05 AM PDT -93Belen,2023-05-28T18:05:52Z,- 93Belen commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1566214953) at 2023-05-28 11:05 AM PDT -93Belen,2023-05-28T19:01:10Z,- 93Belen submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1448373188) at 2023-05-28 12:01 PM PDT -93Belen,2023-05-28T19:03:17Z,- 93Belen commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1566231274) at 2023-05-28 12:03 PM PDT -93Belen,2023-05-29T15:46:32Z,- 93Belen commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1567291890) at 2023-05-29 08:46 AM PDT -93Belen,2023-05-30T13:18:02Z,- 93Belen submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1450918277) at 2023-05-30 06:18 AM PDT -93Belen,2023-05-30T14:37:29Z,- 93Belen commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1568551575) at 2023-05-30 07:37 AM PDT -93Belen,2023-05-30T14:40:49Z,- 93Belen commented on pull request: [4754](https://github.com/hackforla/website/pull/4754#issuecomment-1568557089) at 2023-05-30 07:40 AM PDT -93Belen,2023-05-30T14:46:29Z,- 93Belen submitted pull request review: [4754](https://github.com/hackforla/website/pull/4754#pullrequestreview-1451144991) at 2023-05-30 07:46 AM PDT -93Belen,2023-05-30T21:48:09Z,- 93Belen closed issue as completed: [4631](https://github.com/hackforla/website/issues/4631#event-9383291032) at 2023-05-30 02:48 PM PDT -93Belen,2023-05-31T02:34:09Z,- 93Belen commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1569409357) at 2023-05-30 07:34 PM PDT -93Belen,2023-05-31T21:41:40Z,- 93Belen submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1454219190) at 2023-05-31 02:41 PM PDT -93Belen,2023-05-31T22:11:09Z,- 93Belen commented on pull request: [4759](https://github.com/hackforla/website/pull/4759#issuecomment-1571031533) at 2023-05-31 03:11 PM PDT -93Belen,2023-06-01T13:57:08Z,- 93Belen submitted pull request review: [4759](https://github.com/hackforla/website/pull/4759#pullrequestreview-1455548062) at 2023-06-01 06:57 AM PDT -93Belen,2023-06-04T16:38:35Z,- 93Belen assigned to issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1575580469) at 2023-06-04 09:38 AM PDT -93Belen,2023-06-04T16:46:59Z,- 93Belen unassigned from issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1575633125) at 2023-06-04 09:46 AM PDT -93Belen,2023-06-06T13:49:36Z,- 93Belen submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1465261893) at 2023-06-06 06:49 AM PDT -93Belen,2023-06-06T14:07:52Z,- 93Belen commented on pull request: [4783](https://github.com/hackforla/website/pull/4783#issuecomment-1578838212) at 2023-06-06 07:07 AM PDT -93Belen,2023-06-06T21:52:14Z,- 93Belen submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1466176435) at 2023-06-06 02:52 PM PDT -93Belen,2023-06-06T23:35:29Z,- 93Belen submitted pull request review: [4783](https://github.com/hackforla/website/pull/4783#pullrequestreview-1466297720) at 2023-06-06 04:35 PM PDT -93Belen,2023-06-06T23:39:11Z,- 93Belen commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579601707) at 2023-06-06 04:39 PM PDT -93Belen,2023-06-06T23:40:06Z,- 93Belen submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1466301154) at 2023-06-06 04:40 PM PDT -93Belen,2023-06-06T23:41:52Z,- 93Belen commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579603412) at 2023-06-06 04:41 PM PDT -93Belen,2023-06-07T20:43:20Z,- 93Belen submitted pull request review: [4783](https://github.com/hackforla/website/pull/4783#pullrequestreview-1468533228) at 2023-06-07 01:43 PM PDT -93Belen,2023-06-12T12:36:00Z,- 93Belen submitted pull request review: [4783](https://github.com/hackforla/website/pull/4783#pullrequestreview-1474827231) at 2023-06-12 05:36 AM PDT -93Belen,2023-07-09T16:59:54Z,- 93Belen commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1627773113) at 2023-07-09 09:59 AM PDT -93Belen,2023-07-11T21:39:14Z,- 93Belen submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1525194986) at 2023-07-11 02:39 PM PDT -A-BMT02,2839,SKILLS ISSUE -A-BMT02,2022-02-22T04:27:12Z,- A-BMT02 opened issue: [2839](https://github.com/hackforla/website/issues/2839) at 2022-02-21 08:27 PM PST -A-BMT02,2022-02-22T04:27:33Z,- A-BMT02 assigned to issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1047414308) at 2022-02-21 08:27 PM PST -A-BMT02,2022-02-23T04:02:20Z,- A-BMT02 assigned to issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1022873662) at 2022-02-22 08:02 PM PST -A-BMT02,2022-02-23T18:27:53Z,- A-BMT02 assigned to issue: [2721](https://github.com/hackforla/website/issues/2721#issuecomment-1022930427) at 2022-02-23 10:27 AM PST -A-BMT02,2022-02-23T19:26:19Z,- A-BMT02 opened pull request: [2879](https://github.com/hackforla/website/pull/2879) at 2022-02-23 11:26 AM PST -A-BMT02,2022-02-23T19:31:27Z,- A-BMT02 commented on pull request: [2879](https://github.com/hackforla/website/pull/2879#issuecomment-1049138282) at 2022-02-23 11:31 AM PST -A-BMT02,2022-02-23T19:35:25Z,- A-BMT02 commented on pull request: [2879](https://github.com/hackforla/website/pull/2879#issuecomment-1049141299) at 2022-02-23 11:35 AM PST -A-BMT02,2022-02-24T21:00:46Z,- A-BMT02 pull request merged: [2879](https://github.com/hackforla/website/pull/2879#event-6135056751) at 2022-02-24 01:00 PM PST -A-BMT02,2022-02-24T23:06:48Z,- A-BMT02 commented on pull request: [2879](https://github.com/hackforla/website/pull/2879#issuecomment-1050348880) at 2022-02-24 03:06 PM PST -A-BMT02,2022-02-24T23:08:46Z,- A-BMT02 commented on issue: [2721](https://github.com/hackforla/website/issues/2721#issuecomment-1050349966) at 2022-02-24 03:08 PM PST -A-BMT02,2022-02-27T20:12:27Z,- A-BMT02 commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1053665662) at 2022-02-27 12:12 PM PST -A-BMT02,2022-02-27T20:12:34Z,- A-BMT02 assigned to issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1053665662) at 2022-02-27 12:12 PM PST -A-BMT02,2022-03-05T23:12:41Z,- A-BMT02 unassigned from issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1053665662) at 2022-03-05 03:12 PM PST -A-BMT02,2022-03-05T23:28:26Z,- A-BMT02 unassigned from issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1059850250) at 2022-03-05 03:28 PM PST -A-BMT02,2022-03-06T11:36:04Z,- A-BMT02 commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1059945856) at 2022-03-06 03:36 AM PST -A-BMT02,2022-03-06T11:37:12Z,- A-BMT02 commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1059946029) at 2022-03-06 03:37 AM PST -A-BMT02,2022-03-06T11:38:19Z,- A-BMT02 commented on issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1059946186) at 2022-03-06 03:38 AM PST -A-BMT02,2022-03-06T11:57:43Z,- A-BMT02 assigned to issue: [2280](https://github.com/hackforla/website/issues/2280#issuecomment-926948994) at 2022-03-06 03:57 AM PST -A-BMT02,2022-03-10T18:48:38Z,- A-BMT02 commented on issue: [2280](https://github.com/hackforla/website/issues/2280#issuecomment-1064382228) at 2022-03-10 10:48 AM PST -A-BMT02,2022-03-10T19:09:39Z,- A-BMT02 opened pull request: [2957](https://github.com/hackforla/website/pull/2957) at 2022-03-10 11:09 AM PST -A-BMT02,2022-03-11T19:51:49Z,- A-BMT02 commented on pull request: [2957](https://github.com/hackforla/website/pull/2957#issuecomment-1065440197) at 2022-03-11 11:51 AM PST -A-BMT02,2022-03-12T08:56:20Z,- A-BMT02 pull request merged: [2957](https://github.com/hackforla/website/pull/2957#event-6229430407) at 2022-03-12 01:56 AM PDT -A-BMT02,2022-03-13T19:55:50Z,- A-BMT02 commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1066170782) at 2022-03-13 12:55 PM PDT -A-BMT02,2022-03-14T21:21:18Z,- A-BMT02 assigned to issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1018970482) at 2022-03-14 02:21 PM PDT -A-BMT02,2022-03-14T21:27:32Z,- A-BMT02 commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1067312729) at 2022-03-14 02:27 PM PDT -A-BMT02,2022-03-15T20:53:26Z,- A-BMT02 commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1068463145) at 2022-03-15 01:53 PM PDT -A-BMT02,2022-03-18T13:11:34Z,- A-BMT02 opened pull request: [2988](https://github.com/hackforla/website/pull/2988) at 2022-03-18 06:11 AM PDT -A-BMT02,2022-03-18T13:13:31Z,- A-BMT02 commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1072397880) at 2022-03-18 06:13 AM PDT -A-BMT02,2022-03-20T19:34:53Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073317739) at 2022-03-20 12:34 PM PDT -A-BMT02,2022-03-20T19:37:05Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073318033) at 2022-03-20 12:37 PM PDT -A-BMT02,2022-03-22T21:53:16Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1075679608) at 2022-03-22 02:53 PM PDT -A-BMT02,2022-03-23T16:07:40Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1076517987) at 2022-03-23 09:07 AM PDT -A-BMT02,2022-03-25T21:56:21Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1079471618) at 2022-03-25 02:56 PM PDT -A-BMT02,2022-03-26T20:26:47Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1079768962) at 2022-03-26 01:26 PM PDT -A-BMT02,2022-03-26T21:07:16Z,- A-BMT02 commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1079774903) at 2022-03-26 02:07 PM PDT -A-BMT02,2022-03-26T21:15:53Z,- A-BMT02 closed issue as completed: [2839](https://github.com/hackforla/website/issues/2839#event-6312561519) at 2022-03-26 02:15 PM PDT -A-BMT02,2022-03-26T21:16:26Z,- A-BMT02 commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1079776285) at 2022-03-26 02:16 PM PDT -A-BMT02,2022-03-29T19:35:51Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1082298178) at 2022-03-29 12:35 PM PDT -A-BMT02,2022-03-29T23:22:20Z,- A-BMT02 pull request merged: [2988](https://github.com/hackforla/website/pull/2988#event-6330580590) at 2022-03-29 04:22 PM PDT -A-BMT02,2022-03-30T20:20:11Z,- A-BMT02 commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1083585963) at 2022-03-30 01:20 PM PDT -A-BMT02,2022-03-30T21:56:48Z,- A-BMT02 assigned to issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1037437676) at 2022-03-30 02:56 PM PDT -A-BMT02,2022-03-30T21:59:26Z,- A-BMT02 commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1083669567) at 2022-03-30 02:59 PM PDT -A-BMT02,2022-04-04T22:58:05Z,- A-BMT02 commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1088093361) at 2022-04-04 03:58 PM PDT -A-BMT02,2022-06-13T20:33:12Z,- A-BMT02 commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1154405606) at 2022-06-13 01:33 PM PDT -A-BMT02,2022-06-21T13:43:34Z,- A-BMT02 assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-06-21 06:43 AM PDT -A-BMT02,2022-06-21T13:47:00Z,- A-BMT02 commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1161772823) at 2022-06-21 06:47 AM PDT -A-BMT02,2022-06-22T10:09:39Z,- A-BMT02 commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1162908589) at 2022-06-22 03:09 AM PDT -A-BMT02,2022-07-14T02:05:05Z,- A-BMT02 unassigned from issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1178645901) at 2022-07-13 07:05 PM PDT -a-sana,6413,SKILLS ISSUE -a-sana,2022-06-01T03:39:49Z,- a-sana opened issue: [3189](https://github.com/hackforla/website/issues/3189) at 2022-05-31 08:39 PM PDT -a-sana,2022-06-23T21:13:44Z,- a-sana commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1164878704) at 2022-06-23 02:13 PM PDT -a-sana,2022-06-27T20:26:14Z,- a-sana commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1167849880) at 2022-06-27 01:26 PM PDT -a-sana,2024-03-04T04:11:15Z,- a-sana opened issue: [6413](https://github.com/hackforla/website/issues/6413) at 2024-03-03 08:11 PM PST -a-sana,2024-03-05T03:43:53Z,- a-sana assigned to issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-1975794398) at 2024-03-04 07:43 PM PST -a-sana,2024-03-22T21:04:58Z,- a-sana commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2015914932) at 2024-03-22 02:04 PM PDT -a-t-klein,5074,SKILLS ISSUE -a-t-klein,2023-07-26T03:01:37Z,- a-t-klein opened issue: [5074](https://github.com/hackforla/website/issues/5074) at 2023-07-25 08:01 PM PDT -a-t-klein,2023-07-26T03:02:08Z,- a-t-klein assigned to issue: [5074](https://github.com/hackforla/website/issues/5074#issuecomment-1650903149) at 2023-07-25 08:02 PM PDT -a-t-klein,2023-07-31T19:17:34Z,- a-t-klein assigned to issue: [4804](https://github.com/hackforla/website/issues/4804) at 2023-07-31 12:17 PM PDT -a-t-klein,2023-07-31T19:49:15Z,- a-t-klein commented on issue: [4804](https://github.com/hackforla/website/issues/4804#issuecomment-1659033506) at 2023-07-31 12:49 PM PDT -a-t-klein,2023-07-31T20:20:12Z,- a-t-klein opened pull request: [5122](https://github.com/hackforla/website/pull/5122) at 2023-07-31 01:20 PM PDT -a-t-klein,2023-08-05T21:47:20Z,- a-t-klein pull request merged: [5122](https://github.com/hackforla/website/pull/5122#event-10016137336) at 2023-08-05 02:47 PM PDT -A-Wu5,5479,SKILLS ISSUE -A-Wu5,2023-09-12T02:47:27Z,- A-Wu5 opened issue: [5479](https://github.com/hackforla/website/issues/5479) at 2023-09-11 07:47 PM PDT -A-Wu5,2023-09-12T02:47:37Z,- A-Wu5 assigned to issue: [5479](https://github.com/hackforla/website/issues/5479) at 2023-09-11 07:47 PM PDT -A-Wu5,2023-09-15T05:16:22Z,- A-Wu5 assigned to issue: [5341](https://github.com/hackforla/website/issues/5341#issuecomment-1715910003) at 2023-09-14 10:16 PM PDT -A-Wu5,2023-09-15T05:19:24Z,- A-Wu5 commented on issue: [5341](https://github.com/hackforla/website/issues/5341#issuecomment-1720692128) at 2023-09-14 10:19 PM PDT -A-Wu5,2023-09-15T05:23:53Z,- A-Wu5 commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1720695130) at 2023-09-14 10:23 PM PDT -A-Wu5,2023-09-15T06:26:15Z,- A-Wu5 opened pull request: [5538](https://github.com/hackforla/website/pull/5538) at 2023-09-14 11:26 PM PDT -A-Wu5,2023-09-19T06:44:49Z,- A-Wu5 commented on pull request: [5538](https://github.com/hackforla/website/pull/5538#issuecomment-1724919466) at 2023-09-18 11:44 PM PDT -A-Wu5,2023-09-20T00:14:05Z,- A-Wu5 assigned to issue: [5332](https://github.com/hackforla/website/issues/5332) at 2023-09-19 05:14 PM PDT -A-Wu5,2023-09-20T00:15:27Z,- A-Wu5 commented on issue: [5332](https://github.com/hackforla/website/issues/5332#issuecomment-1726705741) at 2023-09-19 05:15 PM PDT -A-Wu5,2023-09-20T14:03:53Z,- A-Wu5 pull request merged: [5538](https://github.com/hackforla/website/pull/5538#event-10423741019) at 2023-09-20 07:03 AM PDT -A-Wu5,2023-09-21T08:29:43Z,- A-Wu5 opened pull request: [5568](https://github.com/hackforla/website/pull/5568) at 2023-09-21 01:29 AM PDT -A-Wu5,2023-09-23T03:20:18Z,- A-Wu5 commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1732195343) at 2023-09-22 08:20 PM PDT -A-Wu5,2023-09-23T03:47:21Z,- A-Wu5 commented on pull request: [5572](https://github.com/hackforla/website/pull/5572#issuecomment-1732200055) at 2023-09-22 08:47 PM PDT -A-Wu5,2023-09-23T03:54:20Z,- A-Wu5 submitted pull request review: [5572](https://github.com/hackforla/website/pull/5572#pullrequestreview-1640776542) at 2023-09-22 08:54 PM PDT -A-Wu5,2023-09-24T16:06:05Z,- A-Wu5 pull request merged: [5568](https://github.com/hackforla/website/pull/5568#event-10455478897) at 2023-09-24 09:06 AM PDT -A-Wu5,2023-09-27T01:58:25Z,- A-Wu5 assigned to issue: [5594](https://github.com/hackforla/website/issues/5594) at 2023-09-26 06:58 PM PDT -A-Wu5,2023-09-27T01:59:13Z,- A-Wu5 commented on issue: [5594](https://github.com/hackforla/website/issues/5594#issuecomment-1736552452) at 2023-09-26 06:59 PM PDT -A-Wu5,2023-10-07T07:31:34Z,- A-Wu5 commented on issue: [5594](https://github.com/hackforla/website/issues/5594#issuecomment-1751636660) at 2023-10-07 12:31 AM PDT -A-Wu5,2023-10-10T21:06:52Z,- A-Wu5 commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1756260046) at 2023-10-10 02:06 PM PDT -A-Wu5,2023-10-18T00:26:59Z,- A-Wu5 assigned to issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1670640043) at 2023-10-17 05:26 PM PDT -A-Wu5,2023-10-18T00:30:25Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1767400828) at 2023-10-17 05:30 PM PDT -A-Wu5,2023-10-22T22:05:09Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1774211847) at 2023-10-22 03:05 PM PDT -A-Wu5,2023-10-22T22:11:47Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1774213241) at 2023-10-22 03:11 PM PDT -A-Wu5,2023-10-22T22:33:12Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1774217611) at 2023-10-22 03:33 PM PDT -A-Wu5,2023-10-22T22:44:49Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1774219927) at 2023-10-22 03:44 PM PDT -A-Wu5,2023-10-22T22:49:33Z,- A-Wu5 commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1774221003) at 2023-10-22 03:49 PM PDT -A-Wu5,2023-10-22T22:52:28Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1774222088) at 2023-10-22 03:52 PM PDT -A-Wu5,2023-10-22T22:55:33Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1774222766) at 2023-10-22 03:55 PM PDT -A-Wu5,2023-11-02T11:06:42Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1790520299) at 2023-11-02 04:06 AM PDT -A-Wu5,2023-11-06T21:28:19Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1796520012) at 2023-11-06 01:28 PM PST -A-Wu5,2023-11-08T22:05:40Z,- A-Wu5 commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1802753190) at 2023-11-08 02:05 PM PST -A-Wu5,2023-11-08T23:15:05Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1802875050) at 2023-11-08 03:15 PM PST -A-Wu5,2023-11-09T01:38:39Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1803027276) at 2023-11-08 05:38 PM PST -A-Wu5,2023-11-09T23:58:06Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1804861467) at 2023-11-09 03:58 PM PST -A-Wu5,2023-11-10T00:11:26Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1804872770) at 2023-11-09 04:11 PM PST -A-Wu5,2023-11-11T23:06:15Z,- A-Wu5 commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1806939391) at 2023-11-11 03:06 PM PST -A-Wu5,2023-11-12T21:38:56Z,- A-Wu5 submitted pull request review: [5889](https://github.com/hackforla/website/pull/5889#pullrequestreview-1726333116) at 2023-11-12 01:38 PM PST -A-Wu5,2023-11-13T23:20:42Z,- A-Wu5 commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1809289102) at 2023-11-13 03:20 PM PST -A-Wu5,2023-11-15T03:29:43Z,- A-Wu5 commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1811753357) at 2023-11-14 07:29 PM PST -A-Wu5,2023-11-15T20:50:50Z,- A-Wu5 submitted pull request review: [5889](https://github.com/hackforla/website/pull/5889#pullrequestreview-1732965126) at 2023-11-15 12:50 PM PST -A-Wu5,2023-11-17T03:38:38Z,- A-Wu5 submitted pull request review: [5906](https://github.com/hackforla/website/pull/5906#pullrequestreview-1735987861) at 2023-11-16 07:38 PM PST -A-Wu5,2023-11-17T03:42:36Z,- A-Wu5 assigned to issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1807708980) at 2023-11-16 07:42 PM PST -A-Wu5,2023-11-17T03:43:47Z,- A-Wu5 commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1815702487) at 2023-11-16 07:43 PM PST -A-Wu5,2023-11-22T06:54:47Z,- A-Wu5 commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1822209571) at 2023-11-21 10:54 PM PST -A-Wu5,2023-12-01T20:53:07Z,- A-Wu5 commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1836761460) at 2023-12-01 12:53 PM PST -A-Wu5,2023-12-09T23:01:18Z,- A-Wu5 commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1848773950) at 2023-12-09 03:01 PM PST -A-Wu5,2023-12-09T23:03:11Z,- A-Wu5 commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1848774445) at 2023-12-09 03:03 PM PST -A-Wu5,2024-01-03T00:49:37Z,- A-Wu5 opened pull request: [6026](https://github.com/hackforla/website/pull/6026) at 2024-01-02 04:49 PM PST -A-Wu5,2024-01-10T23:38:34Z,- A-Wu5 commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1885928504) at 2024-01-10 03:38 PM PST -A-Wu5,2024-01-18T21:21:43Z,- A-Wu5 commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1899222818) at 2024-01-18 01:21 PM PST -A-Wu5,2024-01-21T05:55:27Z,- A-Wu5 commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1902524546) at 2024-01-20 09:55 PM PST -A-Wu5,2024-01-23T20:43:37Z,- A-Wu5 commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1906886810) at 2024-01-23 12:43 PM PST -A-Wu5,2024-01-23T20:45:29Z,- A-Wu5 commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1906889337) at 2024-01-23 12:45 PM PST -A-Wu5,2024-01-28T11:29:16Z,- A-Wu5 pull request merged: [6026](https://github.com/hackforla/website/pull/6026#event-11619693105) at 2024-01-28 03:29 AM PST -A-Wu5,2024-02-11T00:32:53Z,- A-Wu5 closed issue as completed: [4606](https://github.com/hackforla/website/issues/4606#event-11765971505) at 2024-02-10 04:32 PM PST -A-Wu5,2024-03-18T19:48:39Z,- A-Wu5 assigned to issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-1786017027) at 2024-03-18 12:48 PM PDT -A-Wu5,2024-03-18T21:33:41Z,- A-Wu5 opened issue: [6474](https://github.com/hackforla/website/issues/6474) at 2024-03-18 02:33 PM PDT -A-Wu5,2024-03-18T21:35:20Z,- A-Wu5 commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2005059827) at 2024-03-18 02:35 PM PDT -A-Wu5,2024-03-28T00:47:28Z,- A-Wu5 unassigned from issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2005059827) at 2024-03-27 05:47 PM PDT -A-Wu5,2024-03-28T01:07:00Z,- A-Wu5 assigned to issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2003171924) at 2024-03-27 06:07 PM PDT -A-Wu5,2024-03-28T01:17:31Z,- A-Wu5 commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2024231183) at 2024-03-27 06:17 PM PDT -A-Wu5,2024-03-28T01:24:11Z,- A-Wu5 opened issue: [6539](https://github.com/hackforla/website/issues/6539) at 2024-03-27 06:24 PM PDT -A-Wu5,2024-04-02T00:57:40Z,- A-Wu5 commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2030888917) at 2024-04-01 05:57 PM PDT -A-Wu5,2024-04-02T01:06:41Z,- A-Wu5 commented on issue: [6539](https://github.com/hackforla/website/issues/6539#issuecomment-2030895981) at 2024-04-01 06:06 PM PDT -A-Wu5,2024-04-15T22:49:30Z,- A-Wu5 commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2057940837) at 2024-04-15 03:49 PM PDT -A-Wu5,2024-04-18T01:08:41Z,- A-Wu5 commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2062807775) at 2024-04-17 06:08 PM PDT -A-Wu5,2024-04-18T01:32:39Z,- A-Wu5 commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2062833816) at 2024-04-17 06:32 PM PDT -A-Wu5,2024-04-18T01:33:29Z,- A-Wu5 submitted pull request review: [6678](https://github.com/hackforla/website/pull/6678#pullrequestreview-2007646639) at 2024-04-17 06:33 PM PDT -A-Wu5,2024-04-18T01:36:54Z,- A-Wu5 commented on pull request: [6651](https://github.com/hackforla/website/pull/6651#issuecomment-2062836830) at 2024-04-17 06:36 PM PDT -A-Wu5,2024-04-20T05:59:29Z,- A-Wu5 submitted pull request review: [6651](https://github.com/hackforla/website/pull/6651#pullrequestreview-2013034632) at 2024-04-19 10:59 PM PDT -A-Wu5,2024-04-25T02:58:25Z,- A-Wu5 submitted pull request review: [6678](https://github.com/hackforla/website/pull/6678#pullrequestreview-2021396809) at 2024-04-24 07:58 PM PDT -A-Wu5,2024-04-26T08:56:09Z,- A-Wu5 commented on pull request: [6764](https://github.com/hackforla/website/pull/6764#issuecomment-2078945177) at 2024-04-26 01:56 AM PDT -A-Wu5,2024-04-27T01:01:29Z,- A-Wu5 submitted pull request review: [6764](https://github.com/hackforla/website/pull/6764#pullrequestreview-2026042019) at 2024-04-26 06:01 PM PDT -A-Wu5,2024-04-27T01:06:22Z,- A-Wu5 commented on pull request: [6764](https://github.com/hackforla/website/pull/6764#issuecomment-2080285114) at 2024-04-26 06:06 PM PDT -A-Wu5,2024-05-02T05:55:45Z,- A-Wu5 commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2089638331) at 2024-05-01 10:55 PM PDT -A-Wu5,2024-05-02T05:58:23Z,- A-Wu5 assigned to issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-1936012516) at 2024-05-01 10:58 PM PDT -A-Wu5,2024-05-03T04:48:12Z,- A-Wu5 submitted pull request review: [6801](https://github.com/hackforla/website/pull/6801#pullrequestreview-2037322061) at 2024-05-02 09:48 PM PDT -A-Wu5,2024-05-19T02:02:37Z,- A-Wu5 assigned to issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2071220826) at 2024-05-18 07:02 PM PDT -A-Wu5,2024-05-19T02:06:44Z,- A-Wu5 commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2119062870) at 2024-05-18 07:06 PM PDT -A-Wu5,2024-05-19T02:42:22Z,- A-Wu5 opened issue: [6861](https://github.com/hackforla/website/issues/6861) at 2024-05-18 07:42 PM PDT -A-Wu5,2024-05-19T02:45:28Z,- A-Wu5 commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2119077541) at 2024-05-18 07:45 PM PDT -A-Wu5,2024-05-19T04:16:49Z,- A-Wu5 opened issue: [6862](https://github.com/hackforla/website/issues/6862) at 2024-05-18 09:16 PM PDT -A-Wu5,2024-05-19T04:17:37Z,- A-Wu5 commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2119093613) at 2024-05-18 09:17 PM PDT -A-Wu5,2024-05-19T20:41:30Z,- A-Wu5 commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2119353958) at 2024-05-19 01:41 PM PDT -A-Wu5,2024-05-19T21:17:48Z,- A-Wu5 commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2119362953) at 2024-05-19 02:17 PM PDT -A-Wu5,2024-05-19T21:19:33Z,- A-Wu5 submitted pull request review: [6860](https://github.com/hackforla/website/pull/6860#pullrequestreview-2065145324) at 2024-05-19 02:19 PM PDT -A-Wu5,2024-05-21T01:59:16Z,- A-Wu5 unassigned from issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-2121563569) at 2024-05-20 06:59 PM PDT -A-Wu5,2024-05-21T19:57:19Z,- A-Wu5 commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2123343527) at 2024-05-21 12:57 PM PDT -A-Wu5,2024-05-24T21:28:45Z,- A-Wu5 submitted pull request review: [6860](https://github.com/hackforla/website/pull/6860#pullrequestreview-2078079530) at 2024-05-24 02:28 PM PDT -A-Wu5,2024-05-26T05:35:57Z,- A-Wu5 commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2132073098) at 2024-05-25 10:35 PM PDT -A-Wu5,2024-05-26T19:50:18Z,- A-Wu5 submitted pull request review: [6896](https://github.com/hackforla/website/pull/6896#pullrequestreview-2079777451) at 2024-05-26 12:50 PM PDT -A-Wu5,2024-05-26T19:52:21Z,- A-Wu5 commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2132378280) at 2024-05-26 12:52 PM PDT -A-Wu5,2024-05-26T20:55:27Z,- A-Wu5 submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2079784799) at 2024-05-26 01:55 PM PDT -A-Wu5,2024-05-27T19:38:44Z,- A-Wu5 submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2081399939) at 2024-05-27 12:38 PM PDT -A-Wu5,2024-06-18T23:59:02Z,- A-Wu5 commented on pull request: [7017](https://github.com/hackforla/website/pull/7017#issuecomment-2177272055) at 2024-06-18 04:59 PM PDT -A-Wu5,2024-06-19T00:08:29Z,- A-Wu5 submitted pull request review: [7017](https://github.com/hackforla/website/pull/7017#pullrequestreview-2126754051) at 2024-06-18 05:08 PM PDT -A-Wu5,2024-06-24T01:01:21Z,- A-Wu5 commented on pull request: [7052](https://github.com/hackforla/website/pull/7052#issuecomment-2185403832) at 2024-06-23 06:01 PM PDT -A-Wu5,2024-06-27T02:09:46Z,- A-Wu5 submitted pull request review: [7052](https://github.com/hackforla/website/pull/7052#pullrequestreview-2143260439) at 2024-06-26 07:09 PM PDT -A-Wu5,2024-07-20T19:24:57Z,- A-Wu5 commented on pull request: [7128](https://github.com/hackforla/website/pull/7128#issuecomment-2241268150) at 2024-07-20 12:24 PM PDT -A-Wu5,2024-07-20T19:25:09Z,- A-Wu5 submitted pull request review: [7128](https://github.com/hackforla/website/pull/7128#pullrequestreview-2190046182) at 2024-07-20 12:25 PM PDT -A-Wu5,2024-11-07T20:03:23Z,- A-Wu5 submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2422028324) at 2024-11-07 12:03 PM PST -aadilahmed,4980,SKILLS ISSUE -aadilahmed,2023-07-18T01:57:19Z,- aadilahmed opened issue: [4980](https://github.com/hackforla/website/issues/4980) at 2023-07-17 06:57 PM PDT -aadilahmed,2023-07-18T02:30:22Z,- aadilahmed assigned to issue: [4980](https://github.com/hackforla/website/issues/4980) at 2023-07-17 07:30 PM PDT -aadilahmed,2023-07-24T03:53:00Z,- aadilahmed assigned to issue: [4939](https://github.com/hackforla/website/issues/4939#issuecomment-1639105125) at 2023-07-23 08:53 PM PDT -aadilahmed,2023-07-24T03:55:59Z,- aadilahmed commented on issue: [4939](https://github.com/hackforla/website/issues/4939#issuecomment-1647159918) at 2023-07-23 08:55 PM PDT -aadilahmed,2023-07-24T04:22:12Z,- aadilahmed commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-1647183349) at 2023-07-23 09:22 PM PDT -aadilahmed,2023-07-24T06:06:53Z,- aadilahmed opened pull request: [5056](https://github.com/hackforla/website/pull/5056) at 2023-07-23 11:06 PM PDT -aadilahmed,2023-07-28T12:05:52Z,- aadilahmed pull request merged: [5056](https://github.com/hackforla/website/pull/5056#event-9947377107) at 2023-07-28 05:05 AM PDT -aadilahmed,2023-08-05T07:05:20Z,- aadilahmed commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-1666419776) at 2023-08-05 12:05 AM PDT -aadilahmed,2023-08-05T07:07:22Z,- aadilahmed closed issue as completed: [4980](https://github.com/hackforla/website/issues/4980#event-10014638577) at 2023-08-05 12:07 AM PDT -aadilahmed,2023-08-07T05:23:56Z,- aadilahmed assigned to issue: [5057](https://github.com/hackforla/website/issues/5057#issuecomment-1658118238) at 2023-08-06 10:23 PM PDT -aadilahmed,2023-08-07T05:35:11Z,- aadilahmed commented on issue: [5057](https://github.com/hackforla/website/issues/5057#issuecomment-1667214113) at 2023-08-06 10:35 PM PDT -aadilahmed,2023-08-07T06:35:44Z,- aadilahmed opened pull request: [5155](https://github.com/hackforla/website/pull/5155) at 2023-08-06 11:35 PM PDT -aadilahmed,2023-08-08T06:29:20Z,- aadilahmed pull request merged: [5155](https://github.com/hackforla/website/pull/5155#event-10031404045) at 2023-08-07 11:29 PM PDT -aadilahmed,2023-08-12T09:29:53Z,- aadilahmed assigned to issue: [5100](https://github.com/hackforla/website/issues/5100#issuecomment-1652982433) at 2023-08-12 02:29 AM PDT -aadilahmed,2023-08-12T09:31:16Z,- aadilahmed commented on issue: [5100](https://github.com/hackforla/website/issues/5100#issuecomment-1675813654) at 2023-08-12 02:31 AM PDT -aadilahmed,2023-09-17T12:08:22Z,- aadilahmed commented on pull request: [5543](https://github.com/hackforla/website/pull/5543#issuecomment-1722462588) at 2023-09-17 05:08 AM PDT -aadilahmed,2023-09-18T07:08:35Z,- aadilahmed submitted pull request review: [5543](https://github.com/hackforla/website/pull/5543#pullrequestreview-1630392874) at 2023-09-18 12:08 AM PDT -aadilahmed,2023-09-22T02:05:19Z,- aadilahmed commented on pull request: [5569](https://github.com/hackforla/website/pull/5569#issuecomment-1730704159) at 2023-09-21 07:05 PM PDT -aadilahmed,2023-09-22T21:52:29Z,- aadilahmed submitted pull request review: [5569](https://github.com/hackforla/website/pull/5569#pullrequestreview-1640679271) at 2023-09-22 02:52 PM PDT -aadilahmed,2023-11-03T01:40:03Z,- aadilahmed assigned to issue: [5737](https://github.com/hackforla/website/issues/5737) at 2023-11-02 06:40 PM PDT -aadilahmed,2023-11-03T01:43:00Z,- aadilahmed commented on issue: [5737](https://github.com/hackforla/website/issues/5737#issuecomment-1791787050) at 2023-11-02 06:43 PM PDT -aadilahmed,2023-11-10T02:25:14Z,- aadilahmed commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1804977710) at 2023-11-09 06:25 PM PST -aadilahmed,2023-11-10T02:50:23Z,- aadilahmed submitted pull request review: [5889](https://github.com/hackforla/website/pull/5889#pullrequestreview-1723857518) at 2023-11-09 06:50 PM PST -aadilahmed,2023-11-10T03:11:11Z,- aadilahmed assigned to issue: [5829](https://github.com/hackforla/website/issues/5829#issuecomment-1791908162) at 2023-11-09 07:11 PM PST -aadilahmed,2023-11-10T03:11:55Z,- aadilahmed commented on issue: [5829](https://github.com/hackforla/website/issues/5829#issuecomment-1805008119) at 2023-11-09 07:11 PM PST -aadilahmed,2023-11-13T08:46:22Z,- aadilahmed opened pull request: [5896](https://github.com/hackforla/website/pull/5896) at 2023-11-13 12:46 AM PST -aadilahmed,2023-11-19T19:19:02Z,- aadilahmed pull request merged: [5896](https://github.com/hackforla/website/pull/5896#event-11004431085) at 2023-11-19 11:19 AM PST -aadilahmed,2023-11-29T07:58:40Z,- aadilahmed opened pull request: [5944](https://github.com/hackforla/website/pull/5944) at 2023-11-28 11:58 PM PST -aadilahmed,2024-01-07T19:53:25Z,- aadilahmed pull request merged: [5944](https://github.com/hackforla/website/pull/5944#event-11411872702) at 2024-01-07 11:53 AM PST -aadilahmed,2024-01-07T22:09:59Z,- aadilahmed commented on pull request: [6021](https://github.com/hackforla/website/pull/6021#issuecomment-1880191479) at 2024-01-07 02:09 PM PST -aadilahmed,2024-01-09T02:18:20Z,- aadilahmed submitted pull request review: [6021](https://github.com/hackforla/website/pull/6021#pullrequestreview-1810306178) at 2024-01-08 06:18 PM PST -aadilahmed,2024-01-20T08:26:38Z,- aadilahmed assigned to issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1825234935) at 2024-01-20 12:26 AM PST -aadilahmed,2024-01-20T08:27:47Z,- aadilahmed commented on issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1901944248) at 2024-01-20 12:27 AM PST -aadilahmed,2024-01-22T07:36:38Z,- aadilahmed opened pull request: [6141](https://github.com/hackforla/website/pull/6141) at 2024-01-21 11:36 PM PST -aadilahmed,2024-01-25T09:31:55Z,- aadilahmed commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1909748211) at 2024-01-25 01:31 AM PST -aadilahmed,2024-02-05T05:03:07Z,- aadilahmed commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1926237180) at 2024-02-04 09:03 PM PST -aadilahmed,2024-02-07T22:05:59Z,- aadilahmed pull request merged: [6141](https://github.com/hackforla/website/pull/6141#event-11738398784) at 2024-02-07 02:05 PM PST -aadilahmed,2024-02-25T02:54:46Z,- aadilahmed commented on pull request: [6368](https://github.com/hackforla/website/pull/6368#issuecomment-1962795082) at 2024-02-24 06:54 PM PST -aadilahmed,2024-02-25T03:10:44Z,- aadilahmed submitted pull request review: [6368](https://github.com/hackforla/website/pull/6368#pullrequestreview-1899597368) at 2024-02-24 07:10 PM PST -aadilahmed,2024-04-01T06:31:08Z,- aadilahmed commented on pull request: [6549](https://github.com/hackforla/website/pull/6549#issuecomment-2029244483) at 2024-03-31 11:31 PM PDT -aadilahmed,2024-04-03T05:11:12Z,- aadilahmed submitted pull request review: [6549](https://github.com/hackforla/website/pull/6549#pullrequestreview-1975513681) at 2024-04-02 10:11 PM PDT -aadilahmed,2024-04-16T06:55:20Z,- aadilahmed assigned to issue: [6623](https://github.com/hackforla/website/issues/6623#issuecomment-2049063723) at 2024-04-15 11:55 PM PDT -aadilahmed,2024-04-16T07:01:26Z,- aadilahmed commented on issue: [6623](https://github.com/hackforla/website/issues/6623#issuecomment-2058375413) at 2024-04-16 12:01 AM PDT -aadilahmed,2024-04-18T01:35:01Z,- aadilahmed commented on issue: [6623](https://github.com/hackforla/website/issues/6623#issuecomment-2062835469) at 2024-04-17 06:35 PM PDT -aadilahmed,2024-04-19T02:36:30Z,- aadilahmed opened pull request: [6686](https://github.com/hackforla/website/pull/6686) at 2024-04-18 07:36 PM PDT -aadilahmed,2024-04-30T19:11:31Z,- aadilahmed pull request merged: [6686](https://github.com/hackforla/website/pull/6686#event-12662740601) at 2024-04-30 12:11 PM PDT -aadilahmed,2024-05-05T05:20:21Z,- aadilahmed commented on pull request: [6815](https://github.com/hackforla/website/pull/6815#issuecomment-2094637178) at 2024-05-04 10:20 PM PDT -aadilahmed,2024-05-06T10:21:20Z,- aadilahmed submitted pull request review: [6815](https://github.com/hackforla/website/pull/6815#pullrequestreview-2040442037) at 2024-05-06 03:21 AM PDT -aadilahmed,2024-05-06T23:30:33Z,- aadilahmed submitted pull request review: [6815](https://github.com/hackforla/website/pull/6815#pullrequestreview-2041826887) at 2024-05-06 04:30 PM PDT -aadilahmed,2024-05-27T04:02:38Z,- aadilahmed commented on pull request: [6899](https://github.com/hackforla/website/pull/6899#issuecomment-2132599983) at 2024-05-26 09:02 PM PDT -aadilahmed,2024-05-27T04:16:27Z,- aadilahmed submitted pull request review: [6899](https://github.com/hackforla/website/pull/6899#pullrequestreview-2079955703) at 2024-05-26 09:16 PM PDT -aadilahmed,2024-06-10T22:03:40Z,- aadilahmed commented on pull request: [6973](https://github.com/hackforla/website/pull/6973#issuecomment-2159384414) at 2024-06-10 03:03 PM PDT -aadilahmed,2024-06-12T06:32:54Z,- aadilahmed submitted pull request review: [6973](https://github.com/hackforla/website/pull/6973#pullrequestreview-2112063165) at 2024-06-11 11:32 PM PDT -aadilahmed,2024-06-16T08:11:04Z,- aadilahmed assigned to issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2168837535) at 2024-06-16 01:11 AM PDT -aadilahmed,2024-06-16T08:25:25Z,- aadilahmed commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2171225873) at 2024-06-16 01:25 AM PDT -aadilahmed,2024-06-23T03:49:43Z,- aadilahmed opened pull request: [7052](https://github.com/hackforla/website/pull/7052) at 2024-06-22 08:49 PM PDT -aadilahmed,2024-07-10T20:41:56Z,- aadilahmed pull request merged: [7052](https://github.com/hackforla/website/pull/7052#event-13462074115) at 2024-07-10 01:41 PM PDT -aadilahmed,2024-07-28T01:55:10Z,- aadilahmed commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2254310035) at 2024-07-27 06:55 PM PDT -aadilahmed,2024-07-28T02:08:19Z,- aadilahmed submitted pull request review: [7150](https://github.com/hackforla/website/pull/7150#pullrequestreview-2203254434) at 2024-07-27 07:08 PM PDT -aadilahmed,2024-08-14T08:20:42Z,- aadilahmed assigned to issue: [7193](https://github.com/hackforla/website/issues/7193#issuecomment-2270010215) at 2024-08-14 01:20 AM PDT -aadilahmed,2024-08-14T08:23:24Z,- aadilahmed commented on issue: [7193](https://github.com/hackforla/website/issues/7193#issuecomment-2288140306) at 2024-08-14 01:23 AM PDT -aadilahmed,2024-08-18T02:18:54Z,- aadilahmed opened pull request: [7311](https://github.com/hackforla/website/pull/7311) at 2024-08-17 07:18 PM PDT -aadilahmed,2024-08-21T02:28:17Z,- aadilahmed pull request merged: [7311](https://github.com/hackforla/website/pull/7311#event-13953252280) at 2024-08-20 07:28 PM PDT -aadilahmed,2024-09-14T05:39:44Z,- aadilahmed commented on pull request: [7446](https://github.com/hackforla/website/pull/7446#issuecomment-2350853250) at 2024-09-13 10:39 PM PDT -aadilahmed,2024-09-14T05:44:44Z,- aadilahmed submitted pull request review: [7446](https://github.com/hackforla/website/pull/7446#pullrequestreview-2304384673) at 2024-09-13 10:44 PM PDT -aadilahmed,2024-10-31T11:29:43Z,- aadilahmed assigned to issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2390620039) at 2024-10-31 04:29 AM PDT -aadilahmed,2024-10-31T11:30:00Z,- aadilahmed unassigned from issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2390620039) at 2024-10-31 04:30 AM PDT -aadilahmed,2024-10-31T11:39:41Z,- aadilahmed assigned to issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2390620039) at 2024-10-31 04:39 AM PDT -aadilahmed,2024-10-31T11:39:56Z,- aadilahmed unassigned from issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2390620039) at 2024-10-31 04:39 AM PDT -aadilahmed,2024-10-31T11:53:02Z,- aadilahmed assigned to issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2400238861) at 2024-10-31 04:53 AM PDT -aadilahmed,2024-10-31T12:05:19Z,- aadilahmed commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2449689301) at 2024-10-31 05:05 AM PDT -aadilahmed,2024-11-10T22:43:15Z,- aadilahmed commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2466970742) at 2024-11-10 02:43 PM PST -aadilahmed,2024-11-10T22:48:02Z,- aadilahmed commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2466972351) at 2024-11-10 02:48 PM PST -aadilahmed,2024-11-17T10:49:42Z,- aadilahmed commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2481169878) at 2024-11-17 02:49 AM PST -aadilahmed,2024-11-18T01:01:16Z,- aadilahmed commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2481727158) at 2024-11-17 05:01 PM PST -aadilahmed,2024-11-18T03:38:18Z,- aadilahmed commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2481879583) at 2024-11-17 07:38 PM PST -aadilahmed,2024-11-19T02:36:47Z,- aadilahmed opened pull request: [7729](https://github.com/hackforla/website/pull/7729) at 2024-11-18 06:36 PM PST -aadilahmed,2024-11-27T23:10:28Z,- aadilahmed pull request merged: [7729](https://github.com/hackforla/website/pull/7729#event-15458481914) at 2024-11-27 03:10 PM PST -aadilahmed,2025-02-10T08:09:02Z,- aadilahmed commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2647217299) at 2025-02-10 12:09 AM PST -aadilahmed,2025-02-13T01:11:22Z,- aadilahmed submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2613587791) at 2025-02-12 05:11 PM PST -aadilahmed,2025-04-01T01:50:13Z,- aadilahmed assigned to issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2709675335) at 2025-03-31 06:50 PM PDT -aadilahmed,2025-04-01T01:51:48Z,- aadilahmed commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2767834711) at 2025-03-31 06:51 PM PDT -aadilahmed,2025-04-05T08:40:29Z,- aadilahmed commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2780594387) at 2025-04-05 01:40 AM PDT -aadilahmed,2025-04-05T09:01:02Z,- aadilahmed opened pull request: [8045](https://github.com/hackforla/website/pull/8045) at 2025-04-05 02:01 AM PDT -aadilahmed,2025-04-12T21:31:35Z,- aadilahmed pull request merged: [8045](https://github.com/hackforla/website/pull/8045#event-17235550861) at 2025-04-12 02:31 PM PDT -aadilahmed,2025-06-08T01:33:39Z,- aadilahmed assigned to issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2849474313) at 2025-06-07 06:33 PM PDT -aadilahmed,2025-06-08T01:33:56Z,- aadilahmed unassigned from issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2849474313) at 2025-06-07 06:33 PM PDT -aadilahmed,2025-06-17T07:33:19Z,- aadilahmed commented on pull request: [8180](https://github.com/hackforla/website/pull/8180#issuecomment-2979263287) at 2025-06-17 12:33 AM PDT -aadilahmed,2025-06-18T05:26:12Z,- aadilahmed submitted pull request review: [8180](https://github.com/hackforla/website/pull/8180#pullrequestreview-2937774601) at 2025-06-17 10:26 PM PDT -aahvocado,2020-10-18T18:08:25Z,- aahvocado assigned to issue: [689](https://github.com/hackforla/website/issues/689) at 2020-10-18 11:08 AM PDT -aahvocado,2020-10-24T05:21:52Z,- aahvocado commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-715716574) at 2020-10-23 10:21 PM PDT -aahvocado,2020-11-13T23:45:37Z,- aahvocado commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-727087554) at 2020-11-13 03:45 PM PST -aahvocado,2021-02-24T18:51:43Z,- aahvocado unassigned from issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-785289923) at 2021-02-24 10:51 AM PST \ No newline at end of file diff --git a/github-actions/activity-trigger/member_activity_history_bot_2.csv b/github-actions/activity-trigger/member_activity_history_bot_2.csv deleted file mode 100644 index 040edca3db..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_2.csv +++ /dev/null @@ -1,70690 +0,0 @@ -username,datetime,message -aahx,4612,SKILLS ISSUE -aahx,2023-05-09T03:11:52Z,- aahx opened issue: [4612](https://github.com/hackforla/website/issues/4612) at 2023-05-08 08:11 PM PDT -aahx,2023-05-09T03:47:42Z,- aahx assigned to issue: [4612](https://github.com/hackforla/website/issues/4612) at 2023-05-08 08:47 PM PDT -aahx,2023-05-22T02:02:31Z,- aahx commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1556403958) at 2023-05-21 07:02 PM PDT -aahx,2023-10-13T23:12:57Z,- aahx closed issue as completed: [4612](https://github.com/hackforla/website/issues/4612#event-10649834800) at 2023-10-13 04:12 PM PDT -aalieu,2021-06-21T20:19:35Z,- aalieu opened pull request: [1800](https://github.com/hackforla/website/pull/1800) at 2021-06-21 01:19 PM PDT -aalieu,2021-06-21T20:19:45Z,- aalieu pull request closed w/o merging: [1800](https://github.com/hackforla/website/pull/1800#event-4918936828) at 2021-06-21 01:19 PM PDT -aalieu,2021-06-21T20:21:12Z,- aalieu assigned to issue: [1569](https://github.com/hackforla/website/issues/1569) at 2021-06-21 01:21 PM PDT -aalieu,2021-06-21T20:59:42Z,- aalieu opened pull request: [1801](https://github.com/hackforla/website/pull/1801) at 2021-06-21 01:59 PM PDT -aalieu,2021-06-23T16:49:07Z,- aalieu pull request merged: [1801](https://github.com/hackforla/website/pull/1801#event-4930076585) at 2021-06-23 09:49 AM PDT -aalieu,2021-06-24T22:19:55Z,- aalieu assigned to issue: [1829](https://github.com/hackforla/website/issues/1829) at 2021-06-24 03:19 PM PDT -aalieu,2021-06-28T23:04:38Z,- aalieu opened pull request: [1853](https://github.com/hackforla/website/pull/1853) at 2021-06-28 04:04 PM PDT -aalieu,2021-06-29T00:05:59Z,- aalieu submitted pull request review: [1855](https://github.com/hackforla/website/pull/1855#pullrequestreview-694486293) at 2021-06-28 05:05 PM PDT -aalieu,2021-06-29T13:11:16Z,- aalieu pull request merged: [1853](https://github.com/hackforla/website/pull/1853#event-4953519075) at 2021-06-29 06:11 AM PDT -aalieu,2021-06-29T19:39:19Z,- aalieu assigned to issue: [1794](https://github.com/hackforla/website/issues/1794) at 2021-06-29 12:39 PM PDT -aalieu,2021-07-04T04:58:46Z,- aalieu commented on issue: [1794](https://github.com/hackforla/website/issues/1794#issuecomment-873522112) at 2021-07-03 09:58 PM PDT -aalieu,2021-07-04T05:08:00Z,- aalieu commented on issue: [1794](https://github.com/hackforla/website/issues/1794#issuecomment-873523010) at 2021-07-03 10:08 PM PDT -aalieu,2021-07-04T19:19:12Z,- aalieu commented on issue: [1794](https://github.com/hackforla/website/issues/1794#issuecomment-873646848) at 2021-07-04 12:19 PM PDT -aalieu,2021-07-09T03:44:55Z,- aalieu commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-876890418) at 2021-07-08 08:44 PM PDT -aalieu,2021-07-09T08:15:26Z,- aalieu opened pull request: [1907](https://github.com/hackforla/website/pull/1907) at 2021-07-09 01:15 AM PDT -aalieu,2021-07-09T21:39:06Z,- aalieu opened issue: [1910](https://github.com/hackforla/website/issues/1910) at 2021-07-09 02:39 PM PDT -aalieu,2021-07-12T04:32:22Z,- aalieu submitted pull request review: [1922](https://github.com/hackforla/website/pull/1922#pullrequestreview-703706415) at 2021-07-11 09:32 PM PDT -aalieu,2021-07-13T05:11:38Z,- aalieu commented on pull request: [1907](https://github.com/hackforla/website/pull/1907#issuecomment-878784905) at 2021-07-12 10:11 PM PDT -aalieu,2021-07-13T20:46:50Z,- aalieu pull request merged: [1907](https://github.com/hackforla/website/pull/1907#event-5016200311) at 2021-07-13 01:46 PM PDT -aalieu,2021-07-13T22:09:49Z,- aalieu assigned to issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-877784115) at 2021-07-13 03:09 PM PDT -aalieu,2021-07-18T08:02:44Z,- aalieu commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-882016805) at 2021-07-18 01:02 AM PDT -aalieu,2021-07-31T21:00:14Z,- aalieu commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-890403411) at 2021-07-31 02:00 PM PDT -aalieu,2021-08-04T01:38:22Z,- aalieu opened pull request: [2059](https://github.com/hackforla/website/pull/2059) at 2021-08-03 06:38 PM PDT -aalieu,2021-08-05T00:40:20Z,- aalieu submitted pull request review: [2028](https://github.com/hackforla/website/pull/2028#pullrequestreview-722843612) at 2021-08-04 05:40 PM PDT -aalieu,2021-08-08T08:40:50Z,- aalieu commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-894763864) at 2021-08-08 01:40 AM PDT -aalieu,2021-08-18T05:23:36Z,- aalieu commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-900821181) at 2021-08-17 10:23 PM PDT -aalieu,2021-08-25T04:44:39Z,- aalieu commented on pull request: [2059](https://github.com/hackforla/website/pull/2059#issuecomment-905178837) at 2021-08-24 09:44 PM PDT -aalieu,2021-08-25T06:21:41Z,- aalieu commented on pull request: [2059](https://github.com/hackforla/website/pull/2059#issuecomment-905218557) at 2021-08-24 11:21 PM PDT -aalieu,2021-08-31T04:18:02Z,- aalieu commented on pull request: [2059](https://github.com/hackforla/website/pull/2059#issuecomment-908885460) at 2021-08-30 09:18 PM PDT -aalieu,2021-09-01T00:14:54Z,- aalieu submitted pull request review: [2209](https://github.com/hackforla/website/pull/2209#pullrequestreview-743292900) at 2021-08-31 05:14 PM PDT -aalieu,2021-09-04T03:14:49Z,- aalieu pull request merged: [2059](https://github.com/hackforla/website/pull/2059#event-5256016537) at 2021-09-03 08:14 PM PDT -aalieu,2021-09-08T23:14:05Z,- aalieu assigned to issue: [2078](https://github.com/hackforla/website/issues/2078) at 2021-09-08 04:14 PM PDT -aalieu,2021-09-10T22:08:46Z,- aalieu commented on issue: [2078](https://github.com/hackforla/website/issues/2078#issuecomment-917242442) at 2021-09-10 03:08 PM PDT -aalieu,2021-09-14T22:18:36Z,- aalieu opened pull request: [2263](https://github.com/hackforla/website/pull/2263) at 2021-09-14 03:18 PM PDT -aalieu,2021-09-16T22:07:17Z,- aalieu submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-756840280) at 2021-09-16 03:07 PM PDT -aalieu,2021-09-20T05:45:02Z,- aalieu commented on pull request: [2263](https://github.com/hackforla/website/pull/2263#issuecomment-922650626) at 2021-09-19 10:45 PM PDT -aalieu,2021-09-23T03:21:18Z,- aalieu commented on pull request: [2263](https://github.com/hackforla/website/pull/2263#issuecomment-925479378) at 2021-09-22 08:21 PM PDT -aalieu,2021-09-24T20:50:25Z,- aalieu pull request merged: [2263](https://github.com/hackforla/website/pull/2263#event-5358313199) at 2021-09-24 01:50 PM PDT -aalieu,2021-09-24T21:00:05Z,- aalieu submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-763471719) at 2021-09-24 02:00 PM PDT -aalieu,2021-10-05T20:28:22Z,- aalieu opened pull request: [2338](https://github.com/hackforla/website/pull/2338) at 2021-10-05 01:28 PM PDT -aalieu,2021-10-12T06:10:37Z,- aalieu pull request merged: [2338](https://github.com/hackforla/website/pull/2338#event-5447165432) at 2021-10-11 11:10 PM PDT -aaronweixiangli,4165,SKILLS ISSUE -aaronweixiangli,2023-03-14T03:06:02Z,- aaronweixiangli opened issue: [4165](https://github.com/hackforla/website/issues/4165) at 2023-03-13 08:06 PM PDT -aaronweixiangli,2023-03-14T03:35:04Z,- aaronweixiangli assigned to issue: [4165](https://github.com/hackforla/website/issues/4165) at 2023-03-13 08:35 PM PDT -aaronweixiangli,2023-03-16T02:32:42Z,- aaronweixiangli assigned to issue: [3933](https://github.com/hackforla/website/issues/3933) at 2023-03-15 07:32 PM PDT -aaronweixiangli,2023-03-16T02:34:58Z,- aaronweixiangli commented on issue: [3933](https://github.com/hackforla/website/issues/3933#issuecomment-1471192853) at 2023-03-15 07:34 PM PDT -aaronweixiangli,2023-03-16T03:35:11Z,- aaronweixiangli opened pull request: [4194](https://github.com/hackforla/website/pull/4194) at 2023-03-15 08:35 PM PDT -aaronweixiangli,2023-03-17T01:29:34Z,- aaronweixiangli commented on pull request: [4194](https://github.com/hackforla/website/pull/4194#issuecomment-1472978948) at 2023-03-16 06:29 PM PDT -aaronweixiangli,2023-03-19T04:01:31Z,- aaronweixiangli pull request merged: [4194](https://github.com/hackforla/website/pull/4194#event-8786872677) at 2023-03-18 09:01 PM PDT -aaronweixiangli,2023-03-21T22:09:40Z,- aaronweixiangli commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1478655130) at 2023-03-21 03:09 PM PDT -aaronweixiangli,2023-03-26T20:53:57Z,- aaronweixiangli assigned to issue: [4286](https://github.com/hackforla/website/issues/4286) at 2023-03-26 01:53 PM PDT -aaronweixiangli,2023-03-26T20:55:41Z,- aaronweixiangli commented on issue: [4286](https://github.com/hackforla/website/issues/4286#issuecomment-1484221008) at 2023-03-26 01:55 PM PDT -aaronweixiangli,2023-03-26T21:22:19Z,- aaronweixiangli opened pull request: [4295](https://github.com/hackforla/website/pull/4295) at 2023-03-26 02:22 PM PDT -aaronweixiangli,2023-03-28T22:14:16Z,- aaronweixiangli pull request merged: [4295](https://github.com/hackforla/website/pull/4295#event-8870068608) at 2023-03-28 03:14 PM PDT -aaronweixiangli,2023-04-11T20:54:56Z,- aaronweixiangli assigned to issue: [4256](https://github.com/hackforla/website/issues/4256#issuecomment-1480492944) at 2023-04-11 01:54 PM PDT -aaronweixiangli,2023-04-11T21:10:42Z,- aaronweixiangli commented on issue: [4256](https://github.com/hackforla/website/issues/4256#issuecomment-1504096901) at 2023-04-11 02:10 PM PDT -aaronweixiangli,2023-04-11T21:51:52Z,- aaronweixiangli opened pull request: [4468](https://github.com/hackforla/website/pull/4468) at 2023-04-11 02:51 PM PDT -aaronweixiangli,2023-04-12T01:56:33Z,- aaronweixiangli commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1504419853) at 2023-04-11 06:56 PM PDT -aaronweixiangli,2023-04-12T23:06:47Z,- aaronweixiangli commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1506079530) at 2023-04-12 04:06 PM PDT -aaronweixiangli,2023-04-14T01:20:35Z,- aaronweixiangli commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1507798940) at 2023-04-13 06:20 PM PDT -aaronweixiangli,2023-04-21T21:13:56Z,- aaronweixiangli pull request closed w/o merging: [4468](https://github.com/hackforla/website/pull/4468#event-9071049933) at 2023-04-21 02:13 PM PDT -aaronweixiangli,2023-04-21T21:50:37Z,- aaronweixiangli opened pull request: [4554](https://github.com/hackforla/website/pull/4554) at 2023-04-21 02:50 PM PDT -aaronweixiangli,2023-04-25T07:40:02Z,- aaronweixiangli pull request merged: [4554](https://github.com/hackforla/website/pull/4554#event-9089034453) at 2023-04-25 12:40 AM PDT -abbyhipp,2021-01-05T22:22:53Z,- abbyhipp assigned to issue: [953](https://github.com/hackforla/website/issues/953) at 2021-01-05 02:22 PM PST -abbyhipp,2021-01-21T18:12:39Z,- abbyhipp unassigned from issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764833019) at 2021-01-21 10:12 AM PST -abdiaz2018,3508,SKILLS ISSUE -abdiaz2018,2022-08-31T02:48:22Z,- abdiaz2018 opened issue: [3508](https://github.com/hackforla/website/issues/3508) at 2022-08-30 07:48 PM PDT -abdiaz2018,2022-08-31T03:46:59Z,- abdiaz2018 assigned to issue: [3508](https://github.com/hackforla/website/issues/3508) at 2022-08-30 08:46 PM PDT -abdiaz2018,2022-08-31T04:11:33Z,- abdiaz2018 assigned to issue: [2825](https://github.com/hackforla/website/issues/2825#issuecomment-1046382917) at 2022-08-30 09:11 PM PDT -abdiaz2018,2022-08-31T04:12:31Z,- abdiaz2018 commented on issue: [2825](https://github.com/hackforla/website/issues/2825#issuecomment-1232439090) at 2022-08-30 09:12 PM PDT -abdiaz2018,2022-09-02T22:42:24Z,- abdiaz2018 opened pull request: [3516](https://github.com/hackforla/website/pull/3516) at 2022-09-02 03:42 PM PDT -abdiaz2018,2022-09-02T23:20:43Z,- abdiaz2018 pull request merged: [3516](https://github.com/hackforla/website/pull/3516#event-7316202636) at 2022-09-02 04:20 PM PDT -abdiaz2018,2022-09-03T03:59:50Z,- abdiaz2018 assigned to issue: [3198](https://github.com/hackforla/website/issues/3198#issuecomment-1145805640) at 2022-09-02 08:59 PM PDT -abdiaz2018,2022-09-03T04:46:29Z,- abdiaz2018 commented on issue: [3198](https://github.com/hackforla/website/issues/3198#issuecomment-1236048066) at 2022-09-02 09:46 PM PDT -abdiaz2018,2022-09-03T21:16:29Z,- abdiaz2018 opened pull request: [3518](https://github.com/hackforla/website/pull/3518) at 2022-09-03 02:16 PM PDT -abdiaz2018,2022-09-06T01:59:31Z,- abdiaz2018 pull request merged: [3518](https://github.com/hackforla/website/pull/3518#event-7326306270) at 2022-09-05 06:59 PM PDT -abdiaz2018,2022-09-08T03:39:51Z,- abdiaz2018 assigned to issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1090773428) at 2022-09-07 08:39 PM PDT -abdiaz2018,2022-09-08T19:47:52Z,- abdiaz2018 unassigned from issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1240178830) at 2022-09-08 12:47 PM PDT -abdiaz2018,2022-09-16T02:37:39Z,- abdiaz2018 assigned to issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1240178830) at 2022-09-15 07:37 PM PDT -abdiaz2018,2022-09-16T02:39:21Z,- abdiaz2018 commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1248847240) at 2022-09-15 07:39 PM PDT -abdiaz2018,2022-09-16T03:15:23Z,- abdiaz2018 commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1248871301) at 2022-09-15 08:15 PM PDT -abdiaz2018,2022-09-16T03:24:33Z,- abdiaz2018 assigned to issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1169471810) at 2022-09-15 08:24 PM PDT -abdiaz2018,2022-09-25T17:07:38Z,- abdiaz2018 closed issue as completed: [3508](https://github.com/hackforla/website/issues/3508#event-7453737636) at 2022-09-25 10:07 AM PDT -abdiaz2018,2022-09-26T21:25:26Z,- abdiaz2018 unassigned from issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1255890741) at 2022-09-26 02:25 PM PDT -Abel-Zambrano,2021-06-16T02:52:26Z,- Abel-Zambrano assigned to issue: [1574](https://github.com/hackforla/website/issues/1574) at 2021-06-15 07:52 PM PDT -Abel-Zambrano,2021-06-17T02:54:02Z,- Abel-Zambrano opened pull request: [1764](https://github.com/hackforla/website/pull/1764) at 2021-06-16 07:54 PM PDT -Abel-Zambrano,2021-06-17T04:16:20Z,- Abel-Zambrano pull request merged: [1764](https://github.com/hackforla/website/pull/1764#event-4901661242) at 2021-06-16 09:16 PM PDT -Abel-Zambrano,2021-06-18T01:24:10Z,- Abel-Zambrano assigned to issue: [1567](https://github.com/hackforla/website/issues/1567) at 2021-06-17 06:24 PM PDT -Abel-Zambrano,2021-06-18T01:49:43Z,- Abel-Zambrano opened pull request: [1771](https://github.com/hackforla/website/pull/1771) at 2021-06-17 06:49 PM PDT -Abel-Zambrano,2021-06-19T00:01:55Z,- Abel-Zambrano pull request merged: [1771](https://github.com/hackforla/website/pull/1771#event-4911921002) at 2021-06-18 05:01 PM PDT -Abel-Zambrano,2021-06-19T00:47:08Z,- Abel-Zambrano assigned to issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-06-18 05:47 PM PDT -Abel-Zambrano,2021-06-19T00:47:26Z,- Abel-Zambrano unassigned from issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-06-18 05:47 PM PDT -Abel-Zambrano,2021-06-19T00:48:59Z,- Abel-Zambrano assigned to issue: [1688](https://github.com/hackforla/website/issues/1688) at 2021-06-18 05:48 PM PDT -Abel-Zambrano,2021-06-22T02:24:11Z,- Abel-Zambrano opened pull request: [1803](https://github.com/hackforla/website/pull/1803) at 2021-06-21 07:24 PM PDT -Abel-Zambrano,2021-06-23T03:31:51Z,- Abel-Zambrano assigned to issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-06-22 08:31 PM PDT -Abel-Zambrano,2021-06-23T16:18:47Z,- Abel-Zambrano pull request closed w/o merging: [1803](https://github.com/hackforla/website/pull/1803#event-4929924350) at 2021-06-23 09:18 AM PDT -Abel-Zambrano,2021-06-24T02:36:59Z,- Abel-Zambrano opened pull request: [1822](https://github.com/hackforla/website/pull/1822) at 2021-06-23 07:36 PM PDT -Abel-Zambrano,2021-06-24T02:56:49Z,- Abel-Zambrano submitted pull request review: [1821](https://github.com/hackforla/website/pull/1821#pullrequestreview-691294768) at 2021-06-23 07:56 PM PDT -Abel-Zambrano,2021-06-25T00:06:45Z,- Abel-Zambrano pull request closed w/o merging: [1822](https://github.com/hackforla/website/pull/1822#event-4937350193) at 2021-06-24 05:06 PM PDT -Abel-Zambrano,2021-06-25T00:39:31Z,- Abel-Zambrano opened pull request: [1831](https://github.com/hackforla/website/pull/1831) at 2021-06-24 05:39 PM PDT -Abel-Zambrano,2021-06-28T20:25:49Z,- Abel-Zambrano unassigned from issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-06-28 01:25 PM PDT -Abel-Zambrano,2021-06-28T20:25:54Z,- Abel-Zambrano assigned to issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-06-28 01:25 PM PDT -Abel-Zambrano,2021-06-29T05:10:56Z,- Abel-Zambrano commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-870240847) at 2021-06-28 10:10 PM PDT -Abel-Zambrano,2021-06-29T12:57:46Z,- Abel-Zambrano pull request merged: [1831](https://github.com/hackforla/website/pull/1831#event-4953430935) at 2021-06-29 05:57 AM PDT -Abel-Zambrano,2021-06-30T01:01:24Z,- Abel-Zambrano opened pull request: [1861](https://github.com/hackforla/website/pull/1861) at 2021-06-29 06:01 PM PDT -Abel-Zambrano,2021-07-01T04:09:12Z,- Abel-Zambrano submitted pull request review: [1860](https://github.com/hackforla/website/pull/1860#pullrequestreview-696791991) at 2021-06-30 09:09 PM PDT -Abel-Zambrano,2021-07-01T04:19:40Z,- Abel-Zambrano submitted pull request review: [1857](https://github.com/hackforla/website/pull/1857#pullrequestreview-696795842) at 2021-06-30 09:19 PM PDT -Abel-Zambrano,2021-07-02T02:27:13Z,- Abel-Zambrano commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-872666851) at 2021-07-01 07:27 PM PDT -Abel-Zambrano,2021-07-04T20:18:24Z,- Abel-Zambrano submitted pull request review: [1861](https://github.com/hackforla/website/pull/1861#pullrequestreview-698705355) at 2021-07-04 01:18 PM PDT -Abel-Zambrano,2021-07-04T20:27:03Z,- Abel-Zambrano assigned to issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-867239837) at 2021-07-04 01:27 PM PDT -Abel-Zambrano,2021-07-05T19:21:36Z,- Abel-Zambrano commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-874292744) at 2021-07-05 12:21 PM PDT -Abel-Zambrano,2021-07-08T00:56:04Z,- Abel-Zambrano commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-876034085) at 2021-07-07 05:56 PM PDT -Abel-Zambrano,2021-07-09T16:22:17Z,- Abel-Zambrano commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-877303764) at 2021-07-09 09:22 AM PDT -Abel-Zambrano,2021-07-09T22:49:14Z,- Abel-Zambrano submitted pull request review: [1906](https://github.com/hackforla/website/pull/1906#pullrequestreview-703432729) at 2021-07-09 03:49 PM PDT -Abel-Zambrano,2021-07-10T19:21:38Z,- Abel-Zambrano pull request closed w/o merging: [1861](https://github.com/hackforla/website/pull/1861#event-5003523547) at 2021-07-10 12:21 PM PDT -Abel-Zambrano,2021-07-10T20:28:28Z,- Abel-Zambrano opened pull request: [1914](https://github.com/hackforla/website/pull/1914) at 2021-07-10 01:28 PM PDT -Abel-Zambrano,2021-07-11T01:51:09Z,- Abel-Zambrano commented on pull request: [1914](https://github.com/hackforla/website/pull/1914#issuecomment-877728290) at 2021-07-10 06:51 PM PDT -Abel-Zambrano,2021-07-11T02:14:20Z,- Abel-Zambrano unassigned from issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-877614955) at 2021-07-10 07:14 PM PDT -Abel-Zambrano,2021-07-11T02:17:10Z,- Abel-Zambrano assigned to issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-877614955) at 2021-07-10 07:17 PM PDT -Abel-Zambrano,2021-07-11T02:20:47Z,- Abel-Zambrano commented on issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-877730627) at 2021-07-10 07:20 PM PDT -Abel-Zambrano,2021-07-11T20:05:16Z,- Abel-Zambrano pull request merged: [1914](https://github.com/hackforla/website/pull/1914#event-5004480131) at 2021-07-11 01:05 PM PDT -Abel-Zambrano,2021-07-11T21:31:37Z,- Abel-Zambrano commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-877864484) at 2021-07-11 02:31 PM PDT -Abel-Zambrano,2021-07-14T02:42:37Z,- Abel-Zambrano commented on issue: [1717](https://github.com/hackforla/website/issues/1717#issuecomment-879541372) at 2021-07-13 07:42 PM PDT -Abel-Zambrano,2021-07-14T02:49:36Z,- Abel-Zambrano commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-879543644) at 2021-07-13 07:49 PM PDT -Abel-Zambrano,2021-07-15T02:07:03Z,- Abel-Zambrano commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-880332440) at 2021-07-14 07:07 PM PDT -Abel-Zambrano,2021-07-16T01:55:43Z,- Abel-Zambrano opened pull request: [1953](https://github.com/hackforla/website/pull/1953) at 2021-07-15 06:55 PM PDT -Abel-Zambrano,2021-07-19T19:51:18Z,- Abel-Zambrano commented on pull request: [1953](https://github.com/hackforla/website/pull/1953#issuecomment-882814389) at 2021-07-19 12:51 PM PDT -Abel-Zambrano,2021-07-20T01:09:53Z,- Abel-Zambrano opened issue: [1980](https://github.com/hackforla/website/issues/1980) at 2021-07-19 06:09 PM PDT -Abel-Zambrano,2021-07-20T01:19:16Z,- Abel-Zambrano opened issue: [1981](https://github.com/hackforla/website/issues/1981) at 2021-07-19 06:19 PM PDT -Abel-Zambrano,2021-07-20T01:37:49Z,- Abel-Zambrano opened issue: [1982](https://github.com/hackforla/website/issues/1982) at 2021-07-19 06:37 PM PDT -Abel-Zambrano,2021-07-20T01:46:59Z,- Abel-Zambrano opened issue: [1984](https://github.com/hackforla/website/issues/1984) at 2021-07-19 06:46 PM PDT -Abel-Zambrano,2021-07-20T02:02:27Z,- Abel-Zambrano opened issue: [1985](https://github.com/hackforla/website/issues/1985) at 2021-07-19 07:02 PM PDT -Abel-Zambrano,2021-07-21T01:36:26Z,- Abel-Zambrano pull request merged: [1953](https://github.com/hackforla/website/pull/1953#event-5047555174) at 2021-07-20 06:36 PM PDT -Abel-Zambrano,2021-07-21T03:42:37Z,- Abel-Zambrano commented on issue: [1985](https://github.com/hackforla/website/issues/1985#issuecomment-883862745) at 2021-07-20 08:42 PM PDT -Abel-Zambrano,2021-07-21T03:57:02Z,- Abel-Zambrano commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-883866777) at 2021-07-20 08:57 PM PDT -Abel-Zambrano,2021-07-21T17:22:01Z,- Abel-Zambrano commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-884358637) at 2021-07-21 10:22 AM PDT -Abel-Zambrano,2021-07-21T17:31:39Z,- Abel-Zambrano commented on issue: [1985](https://github.com/hackforla/website/issues/1985#issuecomment-884364346) at 2021-07-21 10:31 AM PDT -Abel-Zambrano,2021-07-21T17:58:55Z,- Abel-Zambrano commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-884380825) at 2021-07-21 10:58 AM PDT -Abel-Zambrano,2021-07-27T03:59:36Z,- Abel-Zambrano commented on issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-887188675) at 2021-07-26 08:59 PM PDT -Abel-Zambrano,2021-07-28T20:01:05Z,- Abel-Zambrano closed issue as completed: [1818](https://github.com/hackforla/website/issues/1818#event-5082268868) at 2021-07-28 01:01 PM PDT -Abel-Zambrano,2021-07-28T20:29:47Z,- Abel-Zambrano reopened issue: [1818](https://github.com/hackforla/website/issues/1818#event-5082268868) at 2021-07-28 01:29 PM PDT -Abel-Zambrano,2021-07-29T00:32:48Z,- Abel-Zambrano opened pull request: [2018](https://github.com/hackforla/website/pull/2018) at 2021-07-28 05:32 PM PDT -Abel-Zambrano,2021-07-29T00:34:30Z,- Abel-Zambrano pull request closed w/o merging: [2018](https://github.com/hackforla/website/pull/2018#event-5083111679) at 2021-07-28 05:34 PM PDT -Abel-Zambrano,2021-07-29T01:24:32Z,- Abel-Zambrano opened pull request: [2019](https://github.com/hackforla/website/pull/2019) at 2021-07-28 06:24 PM PDT -Abel-Zambrano,2021-07-30T02:02:53Z,- Abel-Zambrano submitted pull request review: [1999](https://github.com/hackforla/website/pull/1999#pullrequestreview-718662744) at 2021-07-29 07:02 PM PDT -Abel-Zambrano,2021-07-30T02:06:14Z,- Abel-Zambrano commented on pull request: [1999](https://github.com/hackforla/website/pull/1999#issuecomment-889574539) at 2021-07-29 07:06 PM PDT -Abel-Zambrano,2021-07-30T06:14:53Z,- Abel-Zambrano submitted pull request review: [1999](https://github.com/hackforla/website/pull/1999#pullrequestreview-718751609) at 2021-07-29 11:14 PM PDT -Abel-Zambrano,2021-07-30T06:29:13Z,- Abel-Zambrano commented on pull request: [1999](https://github.com/hackforla/website/pull/1999#issuecomment-889662692) at 2021-07-29 11:29 PM PDT -Abel-Zambrano,2021-07-30T06:43:03Z,- Abel-Zambrano submitted pull request review: [1999](https://github.com/hackforla/website/pull/1999#pullrequestreview-718766170) at 2021-07-29 11:43 PM PDT -Abel-Zambrano,2021-08-01T16:34:21Z,- Abel-Zambrano commented on pull request: [2019](https://github.com/hackforla/website/pull/2019#issuecomment-890550738) at 2021-08-01 09:34 AM PDT -Abel-Zambrano,2021-08-02T07:10:51Z,- Abel-Zambrano pull request merged: [2019](https://github.com/hackforla/website/pull/2019#event-5097169735) at 2021-08-02 12:10 AM PDT -Abel-Zambrano,2021-08-03T04:12:59Z,- Abel-Zambrano submitted pull request review: [2022](https://github.com/hackforla/website/pull/2022#pullrequestreview-720762649) at 2021-08-02 09:12 PM PDT -Abel-Zambrano,2021-08-04T01:59:17Z,- Abel-Zambrano commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-892298707) at 2021-08-03 06:59 PM PDT -Abel-Zambrano,2021-08-06T03:59:38Z,- Abel-Zambrano assigned to issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-08-05 08:59 PM PDT -Abel-Zambrano,2021-08-06T04:03:24Z,- Abel-Zambrano unassigned from issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-08-05 09:03 PM PDT -Abel-Zambrano,2021-08-06T04:06:10Z,- Abel-Zambrano assigned to issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-08-05 09:06 PM PDT -Abel-Zambrano,2021-08-07T01:28:07Z,- Abel-Zambrano commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-894585291) at 2021-08-06 06:28 PM PDT -Abel-Zambrano,2021-08-07T01:34:02Z,- Abel-Zambrano commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-894585903) at 2021-08-06 06:34 PM PDT -Abel-Zambrano,2021-08-07T01:40:05Z,- Abel-Zambrano commented on issue: [2023](https://github.com/hackforla/website/issues/2023#issuecomment-894586553) at 2021-08-06 06:40 PM PDT -Abel-Zambrano,2021-08-08T19:41:08Z,- Abel-Zambrano opened pull request: [2072](https://github.com/hackforla/website/pull/2072) at 2021-08-08 12:41 PM PDT -Abel-Zambrano,2021-08-10T02:34:06Z,- Abel-Zambrano pull request merged: [2072](https://github.com/hackforla/website/pull/2072#event-5132952277) at 2021-08-09 07:34 PM PDT -Abel-Zambrano,2021-08-11T16:30:20Z,- Abel-Zambrano commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-896973016) at 2021-08-11 09:30 AM PDT -Abel-Zambrano,2021-08-11T16:33:27Z,- Abel-Zambrano commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-896975211) at 2021-08-11 09:33 AM PDT -Abel-Zambrano,2021-08-12T02:41:57Z,- Abel-Zambrano commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-897303450) at 2021-08-11 07:41 PM PDT -Abel-Zambrano,2021-08-14T15:47:35Z,- Abel-Zambrano submitted pull request review: [2115](https://github.com/hackforla/website/pull/2115#pullrequestreview-730103492) at 2021-08-14 08:47 AM PDT -Abel-Zambrano,2021-08-14T16:15:00Z,- Abel-Zambrano submitted pull request review: [2098](https://github.com/hackforla/website/pull/2098#pullrequestreview-730117603) at 2021-08-14 09:15 AM PDT -Abel-Zambrano,2021-08-14T16:20:16Z,- Abel-Zambrano assigned to issue: [2076](https://github.com/hackforla/website/issues/2076) at 2021-08-14 09:20 AM PDT -Abel-Zambrano,2021-08-14T16:29:34Z,- Abel-Zambrano opened issue: [2116](https://github.com/hackforla/website/issues/2116) at 2021-08-14 09:29 AM PDT -Abel-Zambrano,2021-08-25T00:15:10Z,- Abel-Zambrano commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-905059862) at 2021-08-24 05:15 PM PDT -Abel-Zambrano,2021-08-29T16:36:12Z,- Abel-Zambrano commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-907823063) at 2021-08-29 09:36 AM PDT -Abel-Zambrano,2021-08-29T17:37:28Z,- Abel-Zambrano commented on issue: [1901](https://github.com/hackforla/website/issues/1901#issuecomment-907834767) at 2021-08-29 10:37 AM PDT -Abel-Zambrano,2021-08-29T17:39:42Z,- Abel-Zambrano commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-907835397) at 2021-08-29 10:39 AM PDT -Abel-Zambrano,2021-08-29T17:41:33Z,- Abel-Zambrano commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-907836003) at 2021-08-29 10:41 AM PDT -Abel-Zambrano,2021-09-05T15:12:21Z,- Abel-Zambrano commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-913172782) at 2021-09-05 08:12 AM PDT -Abel-Zambrano,2021-09-11T20:40:28Z,- Abel-Zambrano commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-917476858) at 2021-09-11 01:40 PM PDT -Abel-Zambrano,2021-09-14T03:50:34Z,- Abel-Zambrano opened pull request: [2259](https://github.com/hackforla/website/pull/2259) at 2021-09-13 08:50 PM PDT -Abel-Zambrano,2021-09-14T03:54:02Z,- Abel-Zambrano submitted pull request review: [2254](https://github.com/hackforla/website/pull/2254#pullrequestreview-753446739) at 2021-09-13 08:54 PM PDT -Abel-Zambrano,2021-09-14T20:12:08Z,- Abel-Zambrano commented on pull request: [2259](https://github.com/hackforla/website/pull/2259#issuecomment-919478828) at 2021-09-14 01:12 PM PDT -Abel-Zambrano,2021-09-19T21:05:47Z,- Abel-Zambrano commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-922537011) at 2021-09-19 02:05 PM PDT -Abel-Zambrano,2021-09-23T01:46:33Z,- Abel-Zambrano commented on pull request: [2259](https://github.com/hackforla/website/pull/2259#issuecomment-925449864) at 2021-09-22 06:46 PM PDT -Abel-Zambrano,2021-09-23T01:47:41Z,- Abel-Zambrano commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-925450179) at 2021-09-22 06:47 PM PDT -Abel-Zambrano,2021-09-29T15:47:28Z,- Abel-Zambrano pull request merged: [2259](https://github.com/hackforla/website/pull/2259#event-5381799895) at 2021-09-29 08:47 AM PDT -Abel-Zambrano,2021-10-05T02:14:10Z,- Abel-Zambrano assigned to issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-921551162) at 2021-10-04 07:14 PM PDT -Abel-Zambrano,2021-10-09T18:10:17Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-939338711) at 2021-10-09 11:10 AM PDT -Abel-Zambrano,2021-10-09T18:12:00Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-939339045) at 2021-10-09 11:12 AM PDT -Abel-Zambrano,2021-10-15T14:06:46Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-944330679) at 2021-10-15 07:06 AM PDT -Abel-Zambrano,2021-10-21T01:43:02Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-948181081) at 2021-10-20 06:43 PM PDT -Abel-Zambrano,2021-10-22T20:44:53Z,- Abel-Zambrano opened pull request: [2390](https://github.com/hackforla/website/pull/2390) at 2021-10-22 01:44 PM PDT -Abel-Zambrano,2021-10-26T03:56:19Z,- Abel-Zambrano commented on pull request: [2390](https://github.com/hackforla/website/pull/2390#issuecomment-951535024) at 2021-10-25 08:56 PM PDT -Abel-Zambrano,2021-10-27T02:29:43Z,- Abel-Zambrano commented on pull request: [2390](https://github.com/hackforla/website/pull/2390#issuecomment-952482926) at 2021-10-26 07:29 PM PDT -Abel-Zambrano,2021-10-28T21:28:10Z,- Abel-Zambrano commented on pull request: [2390](https://github.com/hackforla/website/pull/2390#issuecomment-954234924) at 2021-10-28 02:28 PM PDT -Abel-Zambrano,2021-10-30T18:43:23Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-955575832) at 2021-10-30 11:43 AM PDT -Abel-Zambrano,2021-11-13T19:13:58Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-968120764) at 2021-11-13 11:13 AM PST -Abel-Zambrano,2021-11-18T20:10:41Z,- Abel-Zambrano commented on pull request: [2390](https://github.com/hackforla/website/pull/2390#issuecomment-973222718) at 2021-11-18 12:10 PM PST -Abel-Zambrano,2021-11-24T03:58:07Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-977495835) at 2021-11-23 07:58 PM PST -Abel-Zambrano,2021-12-04T02:27:13Z,- Abel-Zambrano commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-985950756) at 2021-12-03 06:27 PM PST -Abel-Zambrano,2021-12-05T04:37:15Z,- Abel-Zambrano commented on pull request: [2390](https://github.com/hackforla/website/pull/2390#issuecomment-986165274) at 2021-12-04 08:37 PM PST -Abel-Zambrano,2021-12-10T01:55:02Z,- Abel-Zambrano pull request merged: [2390](https://github.com/hackforla/website/pull/2390#event-5744927657) at 2021-12-09 05:55 PM PST -Abel-Zambrano,2022-10-22T04:01:33Z,- Abel-Zambrano commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1287604685) at 2022-10-21 09:01 PM PDT -abenipa3,2020-12-17T22:04:27Z,- abenipa3 assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-17 02:04 PM PST -abenipa3,2020-12-22T02:35:26Z,- abenipa3 unassigned from issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 06:35 PM PST -abenipa3,2020-12-22T23:16:47Z,- abenipa3 commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-749830181) at 2020-12-22 03:16 PM PST -abenipa3,2020-12-23T00:06:29Z,- abenipa3 opened pull request: [868](https://github.com/hackforla/website/pull/868) at 2020-12-22 04:06 PM PST -abenipa3,2020-12-23T01:10:04Z,- abenipa3 assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-749830181) at 2020-12-22 05:10 PM PST -abenipa3,2020-12-23T03:13:39Z,- abenipa3 pull request merged: [868](https://github.com/hackforla/website/pull/868#event-4142501330) at 2020-12-22 07:13 PM PST -abenipa3,2020-12-23T03:17:18Z,- abenipa3 commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-749903705) at 2020-12-22 07:17 PM PST -abenipa3,2020-12-23T03:35:43Z,- abenipa3 closed issue by PR 858: [804](https://github.com/hackforla/website/issues/804#event-4142541307) at 2020-12-22 07:35 PM PST -abenipa3,2020-12-23T04:18:10Z,- abenipa3 assigned to issue: [853](https://github.com/hackforla/website/issues/853) at 2020-12-22 08:18 PM PST -abenipa3,2020-12-27T00:50:51Z,- abenipa3 commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-751412157) at 2020-12-26 04:50 PM PST -abenipa3,2020-12-27T03:29:33Z,- abenipa3 opened pull request: [874](https://github.com/hackforla/website/pull/874) at 2020-12-26 07:29 PM PST -abenipa3,2020-12-30T02:30:06Z,- abenipa3 pull request merged: [874](https://github.com/hackforla/website/pull/874#event-4156128433) at 2020-12-29 06:30 PM PST -abenipa3,2020-12-30T02:36:21Z,- abenipa3 assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-749084217) at 2020-12-29 06:36 PM PST -abenipa3,2021-01-03T05:12:20Z,- abenipa3 opened pull request: [901](https://github.com/hackforla/website/pull/901) at 2021-01-02 09:12 PM PST -abenipa3,2021-01-03T17:56:44Z,- abenipa3 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-753653497) at 2021-01-03 09:56 AM PST -abenipa3,2021-01-03T19:59:12Z,- abenipa3 pull request merged: [901](https://github.com/hackforla/website/pull/901#event-4162755565) at 2021-01-03 11:59 AM PST -abenipa3,2021-01-03T20:20:08Z,- abenipa3 closed issue by PR 903: [902](https://github.com/hackforla/website/issues/902#event-4162770503) at 2021-01-03 12:20 PM PST -abenipa3,2021-01-03T20:36:59Z,- abenipa3 opened issue: [909](https://github.com/hackforla/website/issues/909) at 2021-01-03 12:36 PM PST -abenipa3,2021-01-03T20:58:01Z,- abenipa3 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-753675105) at 2021-01-03 12:58 PM PST -abenipa3,2021-01-03T21:24:02Z,- abenipa3 assigned to issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-736994036) at 2021-01-03 01:24 PM PST -abenipa3,2021-01-06T04:06:06Z,- abenipa3 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-755064557) at 2021-01-05 08:06 PM PST -abenipa3,2021-01-11T02:14:35Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-757590683) at 2021-01-10 06:14 PM PST -abenipa3,2021-01-12T00:02:47Z,- abenipa3 opened pull request: [933](https://github.com/hackforla/website/pull/933) at 2021-01-11 04:02 PM PST -abenipa3,2021-01-12T03:14:21Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-758366491) at 2021-01-11 07:14 PM PST -abenipa3,2021-01-18T00:56:36Z,- abenipa3 commented on pull request: [933](https://github.com/hackforla/website/pull/933#issuecomment-761916601) at 2021-01-17 04:56 PM PST -abenipa3,2021-01-18T01:01:20Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-761917937) at 2021-01-17 05:01 PM PST -abenipa3,2021-01-20T02:26:02Z,- abenipa3 commented on pull request: [933](https://github.com/hackforla/website/pull/933#issuecomment-763283766) at 2021-01-19 06:26 PM PST -abenipa3,2021-01-24T17:35:41Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-766399859) at 2021-01-24 09:35 AM PST -abenipa3,2021-01-27T03:51:05Z,- abenipa3 closed issue by PR 970: [955](https://github.com/hackforla/website/issues/955#event-4253804053) at 2021-01-26 07:51 PM PST -abenipa3,2021-01-29T23:06:13Z,- abenipa3 commented on pull request: [975](https://github.com/hackforla/website/pull/975#issuecomment-770096684) at 2021-01-29 03:06 PM PST -abenipa3,2021-01-31T09:15:56Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-770351484) at 2021-01-31 01:15 AM PST -abenipa3,2021-02-07T09:56:15Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-774645320) at 2021-02-07 01:56 AM PST -abenipa3,2021-02-07T21:27:47Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-774771107) at 2021-02-07 01:27 PM PST -abenipa3,2021-02-14T11:56:43Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-778767458) at 2021-02-14 03:56 AM PST -abenipa3,2021-02-14T18:59:47Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-778824416) at 2021-02-14 10:59 AM PST -abenipa3,2021-02-21T11:35:07Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-782842831) at 2021-02-21 03:35 AM PST -abenipa3,2021-02-21T20:49:57Z,- abenipa3 opened issue: [1085](https://github.com/hackforla/website/issues/1085) at 2021-02-21 12:49 PM PST -abenipa3,2021-02-21T20:49:58Z,- abenipa3 assigned to issue: [1085](https://github.com/hackforla/website/issues/1085) at 2021-02-21 12:49 PM PST -abenipa3,2021-02-21T20:52:13Z,- abenipa3 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-782924549) at 2021-02-21 12:52 PM PST -abenipa3,2021-02-21T20:52:28Z,- abenipa3 pull request closed w/o merging: [933](https://github.com/hackforla/website/pull/933#event-4356773854) at 2021-02-21 12:52 PM PST -abenipa3,2021-02-21T20:52:47Z,- abenipa3 commented on pull request: [933](https://github.com/hackforla/website/pull/933#issuecomment-782924623) at 2021-02-21 12:52 PM PST -abenipa3,2021-02-21T20:56:23Z,- abenipa3 unassigned from issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-782924549) at 2021-02-21 12:56 PM PST -abenipa3,2021-02-21T21:25:31Z,- abenipa3 opened issue: [1086](https://github.com/hackforla/website/issues/1086) at 2021-02-21 01:25 PM PST -abenipa3,2021-02-28T02:58:39Z,- abenipa3 opened issue: [1131](https://github.com/hackforla/website/issues/1131) at 2021-02-27 06:58 PM PST -abenipa3,2021-02-28T10:03:25Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-787427106) at 2021-02-28 02:03 AM PST -abenipa3,2021-02-28T20:43:41Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-787519748) at 2021-02-28 12:43 PM PST -abenipa3,2021-02-28T22:10:14Z,- abenipa3 commented on issue: [1131](https://github.com/hackforla/website/issues/1131#issuecomment-787532377) at 2021-02-28 02:10 PM PST -abenipa3,2021-03-07T08:21:27Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-792237354) at 2021-03-07 12:21 AM PST -abenipa3,2021-03-14T10:56:12Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-798886385) at 2021-03-14 03:56 AM PDT -abenipa3,2021-03-14T17:59:39Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-798950392) at 2021-03-14 10:59 AM PDT -abenipa3,2021-03-15T22:25:59Z,- abenipa3 commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-799796079) at 2021-03-15 03:25 PM PDT -abenipa3,2021-03-18T08:28:04Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-801730535) at 2021-03-18 01:28 AM PDT -abenipa3,2021-03-21T01:56:54Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-803498806) at 2021-03-20 06:56 PM PDT -abenipa3,2021-03-21T18:04:55Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-803633475) at 2021-03-21 11:04 AM PDT -abenipa3,2021-03-28T08:08:07Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-808863225) at 2021-03-28 01:08 AM PDT -abenipa3,2021-03-31T04:57:06Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-810760864) at 2021-03-30 09:57 PM PDT -abenipa3,2021-03-31T19:42:04Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-811389694) at 2021-03-31 12:42 PM PDT -abenipa3,2021-04-04T09:21:16Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-813001684) at 2021-04-04 02:21 AM PDT -abenipa3,2021-04-04T23:28:49Z,- abenipa3 commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-813115964) at 2021-04-04 04:28 PM PDT -abenipa3,2021-04-04T23:49:10Z,- abenipa3 closed issue as completed: [826](https://github.com/hackforla/website/issues/826#event-4549624007) at 2021-04-04 04:49 PM PDT -abenipa3,2021-04-04T23:49:20Z,- abenipa3 unassigned from issue: [826](https://github.com/hackforla/website/issues/826#event-4549624007) at 2021-04-04 04:49 PM PDT -abenipa3,2021-04-10T21:17:17Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-817203434) at 2021-04-10 02:17 PM PDT -abenipa3,2021-04-11T17:42:40Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-817344499) at 2021-04-11 10:42 AM PDT -abenipa3,2021-04-18T06:42:00Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-821943279) at 2021-04-17 11:42 PM PDT -abenipa3,2021-04-25T09:51:08Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-826294068) at 2021-04-25 02:51 AM PDT -abenipa3,2021-04-25T17:43:11Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-826361403) at 2021-04-25 10:43 AM PDT -abenipa3,2021-04-27T01:49:51Z,- abenipa3 opened issue: [1469](https://github.com/hackforla/website/issues/1469) at 2021-04-26 06:49 PM PDT -abenipa3,2021-04-27T03:56:42Z,- abenipa3 assigned to issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-26 08:56 PM PDT -abenipa3,2021-04-27T03:57:55Z,- abenipa3 commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-827295185) at 2021-04-26 08:57 PM PDT -abenipa3,2021-05-02T10:29:42Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-830786594) at 2021-05-02 03:29 AM PDT -abenipa3,2021-05-05T04:29:53Z,- abenipa3 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-832403658) at 2021-05-04 09:29 PM PDT -abenipa3,2021-05-05T04:29:53Z,- abenipa3 closed issue as completed: [1085](https://github.com/hackforla/website/issues/1085#event-4686718193) at 2021-05-04 09:29 PM PDT -abenipa3,2021-05-05T06:47:45Z,- abenipa3 opened issue: [1515](https://github.com/hackforla/website/issues/1515) at 2021-05-04 11:47 PM PDT -abenipa3,2021-05-05T06:47:46Z,- abenipa3 assigned to issue: [1515](https://github.com/hackforla/website/issues/1515) at 2021-05-04 11:47 PM PDT -abenipa3,2021-05-06T17:53:37Z,- abenipa3 unassigned from issue: [1085](https://github.com/hackforla/website/issues/1085#event-4686718193) at 2021-05-06 10:53 AM PDT -abenipa3,2021-05-07T07:31:47Z,- abenipa3 opened issue: [1525](https://github.com/hackforla/website/issues/1525) at 2021-05-07 12:31 AM PDT -abenipa3,2021-05-07T07:31:47Z,- abenipa3 assigned to issue: [1525](https://github.com/hackforla/website/issues/1525) at 2021-05-07 12:31 AM PDT -abenipa3,2021-05-08T04:19:48Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-835077923) at 2021-05-07 09:19 PM PDT -abenipa3,2021-05-08T04:30:03Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-835083431) at 2021-05-07 09:30 PM PDT -abenipa3,2021-05-14T09:33:47Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-841131713) at 2021-05-14 02:33 AM PDT -abenipa3,2021-05-15T10:13:06Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-841634603) at 2021-05-15 03:13 AM PDT -abenipa3,2021-05-15T10:14:58Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-841634838) at 2021-05-15 03:14 AM PDT -abenipa3,2021-05-21T10:12:36Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-845843975) at 2021-05-21 03:12 AM PDT -abenipa3,2021-05-21T10:14:28Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-845844991) at 2021-05-21 03:14 AM PDT -abenipa3,2021-05-26T02:08:43Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-848401571) at 2021-05-25 07:08 PM PDT -abenipa3,2021-05-26T02:10:20Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-848402208) at 2021-05-25 07:10 PM PDT -abenipa3,2021-05-26T02:53:10Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-848415658) at 2021-05-25 07:53 PM PDT -abenipa3,2021-05-27T07:17:49Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-849396986) at 2021-05-27 12:17 AM PDT -abenipa3,2021-05-30T04:07:31Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-850936461) at 2021-05-29 09:07 PM PDT -abenipa3,2021-05-30T05:38:05Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-850944755) at 2021-05-29 10:38 PM PDT -abenipa3,2021-05-30T17:47:52Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-851036220) at 2021-05-30 10:47 AM PDT -abenipa3,2021-05-30T18:17:17Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-851040165) at 2021-05-30 11:17 AM PDT -abenipa3,2021-06-06T05:53:52Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-855343649) at 2021-06-05 10:53 PM PDT -abenipa3,2021-06-06T05:59:58Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-855344199) at 2021-06-05 10:59 PM PDT -abenipa3,2021-06-09T01:29:38Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-857301926) at 2021-06-08 06:29 PM PDT -abenipa3,2021-06-10T18:24:57Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-681117011) at 2021-06-10 11:24 AM PDT -abenipa3,2021-06-10T18:45:02Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-681136187) at 2021-06-10 11:45 AM PDT -abenipa3,2021-06-10T18:52:33Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-681142400) at 2021-06-10 11:52 AM PDT -abenipa3,2021-06-10T18:57:25Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-681146624) at 2021-06-10 11:57 AM PDT -abenipa3,2021-06-13T01:55:52Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-860138290) at 2021-06-12 06:55 PM PDT -abenipa3,2021-06-13T02:01:52Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-860138701) at 2021-06-12 07:01 PM PDT -abenipa3,2021-06-13T17:59:25Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-860248569) at 2021-06-13 10:59 AM PDT -abenipa3,2021-06-13T23:40:33Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-682454931) at 2021-06-13 04:40 PM PDT -abenipa3,2021-06-13T23:51:42Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-682455831) at 2021-06-13 04:51 PM PDT -abenipa3,2021-06-14T00:01:42Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-682456632) at 2021-06-13 05:01 PM PDT -abenipa3,2021-06-14T01:35:54Z,- abenipa3 commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-860312385) at 2021-06-13 06:35 PM PDT -abenipa3,2021-06-14T01:38:43Z,- abenipa3 submitted pull request review: [1314](https://github.com/hackforla/website/pull/1314#pullrequestreview-682470546) at 2021-06-13 06:38 PM PDT -abenipa3,2021-06-15T00:21:59Z,- abenipa3 submitted pull request review: [1314](https://github.com/hackforla/website/pull/1314#pullrequestreview-683457065) at 2021-06-14 05:21 PM PDT -abenipa3,2021-06-15T00:28:16Z,- abenipa3 commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-861079198) at 2021-06-14 05:28 PM PDT -abenipa3,2021-06-16T02:26:08Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-861987143) at 2021-06-15 07:26 PM PDT -abenipa3,2021-06-18T06:33:41Z,- abenipa3 commented on issue: [1525](https://github.com/hackforla/website/issues/1525#issuecomment-863794065) at 2021-06-17 11:33 PM PDT -abenipa3,2021-06-18T06:34:05Z,- abenipa3 closed issue as completed: [1525](https://github.com/hackforla/website/issues/1525#event-4907987187) at 2021-06-17 11:34 PM PDT -abenipa3,2021-06-19T01:17:11Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-687783457) at 2021-06-18 06:17 PM PDT -abenipa3,2021-06-19T01:47:27Z,- abenipa3 submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-687785439) at 2021-06-18 06:47 PM PDT -abenipa3,2021-06-20T06:51:08Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-864508494) at 2021-06-19 11:51 PM PDT -abenipa3,2021-06-23T02:14:40Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-866468009) at 2021-06-22 07:14 PM PDT -abenipa3,2021-06-27T10:41:24Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-869140505) at 2021-06-27 03:41 AM PDT -abenipa3,2021-07-04T08:19:55Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-873544862) at 2021-07-04 01:19 AM PDT -abenipa3,2021-07-11T07:59:28Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-877758222) at 2021-07-11 12:59 AM PDT -abenipa3,2021-07-13T02:33:18Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-878730732) at 2021-07-12 07:33 PM PDT -abenipa3,2021-07-17T08:39:53Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-881858326) at 2021-07-17 01:39 AM PDT -abenipa3,2021-07-19T21:26:37Z,- abenipa3 commented on issue: [1086](https://github.com/hackforla/website/issues/1086#issuecomment-882872408) at 2021-07-19 02:26 PM PDT -abenipa3,2021-07-19T22:46:48Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-882910036) at 2021-07-19 03:46 PM PDT -abenipa3,2021-07-19T22:49:47Z,- abenipa3 closed issue as completed: [1086](https://github.com/hackforla/website/issues/1086#event-5041100883) at 2021-07-19 03:49 PM PDT -abenipa3,2021-07-24T00:46:25Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-885976248) at 2021-07-23 05:46 PM PDT -abenipa3,2021-07-27T23:37:33Z,- abenipa3 opened issue: [2014](https://github.com/hackforla/website/issues/2014) at 2021-07-27 04:37 PM PDT -abenipa3,2021-07-27T23:37:34Z,- abenipa3 assigned to issue: [2014](https://github.com/hackforla/website/issues/2014) at 2021-07-27 04:37 PM PDT -abenipa3,2021-07-28T09:07:11Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-888144929) at 2021-07-28 02:07 AM PDT -abenipa3,2021-07-31T03:39:44Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890285051) at 2021-07-30 08:39 PM PDT -abenipa3,2021-07-31T21:29:33Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-890405922) at 2021-07-31 02:29 PM PDT -abenipa3,2021-07-31T22:10:02Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890409456) at 2021-07-31 03:10 PM PDT -abenipa3,2021-08-01T17:55:06Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-890561709) at 2021-08-01 10:55 AM PDT -abenipa3,2021-08-01T18:09:19Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890563728) at 2021-08-01 11:09 AM PDT -abenipa3,2021-08-04T01:59:37Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-892298833) at 2021-08-03 06:59 PM PDT -abenipa3,2021-08-04T02:15:06Z,- abenipa3 commented on pull request: [2024](https://github.com/hackforla/website/pull/2024#issuecomment-892305692) at 2021-08-03 07:15 PM PDT -abenipa3,2021-08-04T02:15:50Z,- abenipa3 submitted pull request review: [2024](https://github.com/hackforla/website/pull/2024#pullrequestreview-721803225) at 2021-08-03 07:15 PM PDT -abenipa3,2021-08-05T22:58:33Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-893873058) at 2021-08-05 03:58 PM PDT -abenipa3,2021-08-08T17:30:03Z,- abenipa3 commented on issue: [1848](https://github.com/hackforla/website/issues/1848#issuecomment-894829423) at 2021-08-08 10:30 AM PDT -abenipa3,2021-08-09T18:16:32Z,- abenipa3 assigned to issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-848227034) at 2021-08-09 11:16 AM PDT -abenipa3,2021-08-15T06:04:55Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-899001115) at 2021-08-14 11:04 PM PDT -abenipa3,2021-08-15T06:13:17Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-899001930) at 2021-08-14 11:13 PM PDT -abenipa3,2021-08-15T17:22:16Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-899084488) at 2021-08-15 10:22 AM PDT -abenipa3,2021-08-15T19:14:53Z,- abenipa3 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-899097440) at 2021-08-15 12:14 PM PDT -abenipa3,2021-08-17T11:18:36Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-900210152) at 2021-08-17 04:18 AM PDT -abenipa3,2021-08-18T02:08:05Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-900756654) at 2021-08-17 07:08 PM PDT -abenipa3,2021-08-18T03:10:46Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-900779139) at 2021-08-17 08:10 PM PDT -abenipa3,2021-08-18T09:41:47Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-900972441) at 2021-08-18 02:41 AM PDT -abenipa3,2021-08-18T16:49:16Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-901269485) at 2021-08-18 09:49 AM PDT -abenipa3,2021-08-20T17:34:29Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-902849005) at 2021-08-20 10:34 AM PDT -abenipa3,2021-08-20T17:35:41Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-902849709) at 2021-08-20 10:35 AM PDT -abenipa3,2021-08-20T18:03:07Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-902864406) at 2021-08-20 11:03 AM PDT -abenipa3,2021-08-22T09:16:42Z,- abenipa3 submitted pull request review: [2059](https://github.com/hackforla/website/pull/2059#pullrequestreview-735556844) at 2021-08-22 02:16 AM PDT -abenipa3,2021-08-22T09:28:04Z,- abenipa3 submitted pull request review: [2059](https://github.com/hackforla/website/pull/2059#pullrequestreview-735557692) at 2021-08-22 02:28 AM PDT -abenipa3,2021-08-22T17:48:28Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-903305313) at 2021-08-22 10:48 AM PDT -abenipa3,2021-08-26T23:47:41Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-906816483) at 2021-08-26 04:47 PM PDT -abenipa3,2021-08-27T16:06:12Z,- abenipa3 unassigned from issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-906976509) at 2021-08-27 09:06 AM PDT -abenipa3,2021-08-27T18:18:17Z,- abenipa3 commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-907387135) at 2021-08-27 11:18 AM PDT -abenipa3,2021-08-28T05:20:34Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-907572629) at 2021-08-27 10:20 PM PDT -abenipa3,2021-08-28T09:01:19Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-907597125) at 2021-08-28 02:01 AM PDT -abenipa3,2021-08-30T04:02:17Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-907996689) at 2021-08-29 09:02 PM PDT -abenipa3,2021-08-31T03:22:37Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-908866733) at 2021-08-30 08:22 PM PDT -abenipa3,2021-08-31T04:35:35Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-908891995) at 2021-08-30 09:35 PM PDT -abenipa3,2021-09-02T22:06:53Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-912092675) at 2021-09-02 03:06 PM PDT -abenipa3,2021-09-03T19:51:05Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-912773828) at 2021-09-03 12:51 PM PDT -abenipa3,2021-09-04T01:07:28Z,- abenipa3 submitted pull request review: [2059](https://github.com/hackforla/website/pull/2059#pullrequestreview-746526402) at 2021-09-03 06:07 PM PDT -abenipa3,2021-09-04T03:02:19Z,- abenipa3 commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-912896777) at 2021-09-03 08:02 PM PDT -abenipa3,2021-09-05T18:23:01Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-913202370) at 2021-09-05 11:23 AM PDT -abenipa3,2021-09-08T11:03:56Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-915137820) at 2021-09-08 04:03 AM PDT -abenipa3,2021-09-10T20:29:05Z,- abenipa3 assigned to issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-910342111) at 2021-09-10 01:29 PM PDT -abenipa3,2021-09-12T03:37:03Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-917543964) at 2021-09-11 08:37 PM PDT -abenipa3,2021-09-13T22:39:37Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-918636026) at 2021-09-13 03:39 PM PDT -abenipa3,2021-09-16T08:00:39Z,- abenipa3 commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-920678219) at 2021-09-16 01:00 AM PDT -abenipa3,2021-09-17T08:47:05Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-921621955) at 2021-09-17 01:47 AM PDT -abenipa3,2021-09-22T00:24:00Z,- abenipa3 unassigned from issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-917715263) at 2021-09-21 05:24 PM PDT -abenipa3,2021-09-22T17:07:23Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-925117898) at 2021-09-22 10:07 AM PDT -abenipa3,2021-09-23T01:47:26Z,- abenipa3 commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-925450113) at 2021-09-22 06:47 PM PDT -abenipa3,2021-09-23T20:13:30Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-926120951) at 2021-09-23 01:13 PM PDT -abenipa3,2021-09-24T01:20:34Z,- abenipa3 commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-926275112) at 2021-09-23 06:20 PM PDT -abenipa3,2021-09-24T18:18:51Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-926832458) at 2021-09-24 11:18 AM PDT -abenipa3,2021-09-27T08:50:53Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-927661838) at 2021-09-27 01:50 AM PDT -abenipa3,2021-10-01T07:40:04Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-931986053) at 2021-10-01 12:40 AM PDT -abenipa3,2021-10-05T04:06:50Z,- abenipa3 commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-934040922) at 2021-10-04 09:06 PM PDT -abenipa3,2021-10-07T20:44:34Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-938142343) at 2021-10-07 01:44 PM PDT -abenipa3,2021-10-08T16:33:18Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-938803776) at 2021-10-08 09:33 AM PDT -abenipa3,2021-10-08T17:47:48Z,- abenipa3 commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-938964952) at 2021-10-08 10:47 AM PDT -abenipa3,2021-10-11T01:23:13Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-939600568) at 2021-10-10 06:23 PM PDT -abenipa3,2021-10-11T08:31:25Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-939808430) at 2021-10-11 01:31 AM PDT -abenipa3,2021-10-14T04:35:48Z,- abenipa3 commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-942939562) at 2021-10-13 09:35 PM PDT -abenipa3,2021-10-15T09:32:47Z,- abenipa3 commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-944147208) at 2021-10-15 02:32 AM PDT -abenipa3,2022-03-13T21:11:38Z,- abenipa3 opened issue: [2978](https://github.com/hackforla/website/issues/2978) at 2022-03-13 02:11 PM PDT -abenipa3,2022-03-20T04:30:27Z,- abenipa3 commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1073165056) at 2022-03-19 09:30 PM PDT -abenipa3,2022-05-20T03:57:44Z,- abenipa3 opened pull request: [3161](https://github.com/hackforla/website/pull/3161) at 2022-05-19 08:57 PM PDT -abenipa3,2022-05-23T21:22:29Z,- abenipa3 opened issue: [3170](https://github.com/hackforla/website/issues/3170) at 2022-05-23 02:22 PM PDT -abenipa3,2022-06-04T23:20:08Z,- abenipa3 commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1146701187) at 2022-06-04 04:20 PM PDT -abenipa3,2022-07-17T18:55:28Z,- abenipa3 commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1186589129) at 2022-07-17 11:55 AM PDT -abenipa3,2022-08-09T03:43:14Z,- abenipa3 commented on issue: [3453](https://github.com/hackforla/website/issues/3453#issuecomment-1208875426) at 2022-08-08 08:43 PM PDT -abenipa3,2022-08-11T14:39:08Z,- abenipa3 commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1212079669) at 2022-08-11 07:39 AM PDT -abenipa3,2022-08-18T04:52:10Z,- abenipa3 commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1219036630) at 2022-08-17 09:52 PM PDT -abenipa3,2022-08-18T05:46:35Z,- abenipa3 pull request closed w/o merging: [3161](https://github.com/hackforla/website/pull/3161#event-7211158332) at 2022-08-17 10:46 PM PDT -abenipa3,2022-08-18T05:50:37Z,- abenipa3 reopened pull request: [3161](https://github.com/hackforla/website/pull/3161#event-7211158332) at 2022-08-17 10:50 PM PDT -abenipa3,2022-08-18T05:51:00Z,- abenipa3 commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1219065195) at 2022-08-17 10:51 PM PDT -abenipa3,2022-08-19T04:31:04Z,- abenipa3 commented on issue: [3453](https://github.com/hackforla/website/issues/3453#issuecomment-1220237996) at 2022-08-18 09:31 PM PDT -abenipa3,2022-08-19T04:54:55Z,- abenipa3 opened pull request: [3476](https://github.com/hackforla/website/pull/3476) at 2022-08-18 09:54 PM PDT -abenipa3,2022-08-19T04:59:28Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1220251099) at 2022-08-18 09:59 PM PDT -abenipa3,2022-08-19T04:59:53Z,- abenipa3 pull request closed w/o merging: [3161](https://github.com/hackforla/website/pull/3161#event-7219315662) at 2022-08-18 09:59 PM PDT -abenipa3,2022-08-19T05:00:18Z,- abenipa3 commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1220251483) at 2022-08-18 10:00 PM PDT -abenipa3,2022-08-19T05:39:26Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1220273253) at 2022-08-18 10:39 PM PDT -abenipa3,2022-08-20T01:27:43Z,- abenipa3 commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1221199625) at 2022-08-19 06:27 PM PDT -abenipa3,2022-08-21T22:41:55Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1221634552) at 2022-08-21 03:41 PM PDT -abenipa3,2022-08-21T22:48:18Z,- abenipa3 commented on issue: [3170](https://github.com/hackforla/website/issues/3170#issuecomment-1221635367) at 2022-08-21 03:48 PM PDT -abenipa3,2022-08-22T01:32:03Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1221686977) at 2022-08-21 06:32 PM PDT -abenipa3,2022-08-27T01:17:31Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1229087346) at 2022-08-26 06:17 PM PDT -abenipa3,2022-08-30T05:24:52Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1231157282) at 2022-08-29 10:24 PM PDT -abenipa3,2022-08-31T08:13:07Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1232611874) at 2022-08-31 01:13 AM PDT -abenipa3,2022-09-01T05:40:42Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1233765693) at 2022-08-31 10:40 PM PDT -abenipa3,2022-09-03T03:30:29Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1236038869) at 2022-09-02 08:30 PM PDT -abenipa3,2022-09-07T04:12:39Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1238886445) at 2022-09-06 09:12 PM PDT -abenipa3,2022-09-08T02:47:39Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1240152759) at 2022-09-07 07:47 PM PDT -abenipa3,2022-09-09T02:25:11Z,- abenipa3 pull request merged: [3476](https://github.com/hackforla/website/pull/3476#event-7352728369) at 2022-09-08 07:25 PM PDT -abenipa3,2022-09-09T06:13:54Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1241543049) at 2022-09-08 11:13 PM PDT -abenipa3,2022-09-09T23:21:31Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1242552331) at 2022-09-09 04:21 PM PDT -abenipa3,2022-09-13T05:49:14Z,- abenipa3 opened pull request: [3548](https://github.com/hackforla/website/pull/3548) at 2022-09-12 10:49 PM PDT -abenipa3,2022-09-13T05:51:06Z,- abenipa3 commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1244932188) at 2022-09-12 10:51 PM PDT -abenipa3,2022-09-13T06:00:23Z,- abenipa3 commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1244938035) at 2022-09-12 11:00 PM PDT -abenipa3,2022-09-13T22:25:05Z,- abenipa3 commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246009717) at 2022-09-13 03:25 PM PDT -abenipa3,2022-09-13T23:19:18Z,- abenipa3 commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246045733) at 2022-09-13 04:19 PM PDT -abenipa3,2022-09-13T23:19:29Z,- abenipa3 pull request merged: [3548](https://github.com/hackforla/website/pull/3548#event-7380711636) at 2022-09-13 04:19 PM PDT -abenipa3,2022-09-13T23:30:14Z,- abenipa3 commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246052401) at 2022-09-13 04:30 PM PDT -abenipa3,2022-09-13T23:49:27Z,- abenipa3 commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246063613) at 2022-09-13 04:49 PM PDT -abenipa3,2024-02-20T23:00:51Z,- abenipa3 commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955261597) at 2024-02-20 03:00 PM PST -abenipa3,2024-02-21T06:23:12Z,- abenipa3 commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955973708) at 2024-02-20 10:23 PM PST -abhayporwals,2023-09-17T05:37:05Z,- abhayporwals commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1722397965) at 2023-09-16 10:37 PM PDT -abhayporwals,2023-09-17T05:38:59Z,- abhayporwals commented on issue: [5509](https://github.com/hackforla/website/issues/5509#issuecomment-1722398213) at 2023-09-16 10:38 PM PDT -abhayporwals,2023-09-17T05:39:15Z,- abhayporwals commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1722398241) at 2023-09-16 10:39 PM PDT -abhayporwals,2023-09-17T05:39:30Z,- abhayporwals commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1722398275) at 2023-09-16 10:39 PM PDT -Abhi200206,2023-08-18T14:16:29Z,- Abhi200206 opened pull request: [5250](https://github.com/hackforla/website/pull/5250) at 2023-08-18 07:16 AM PDT -Abhi200206,2023-08-20T17:32:39Z,- Abhi200206 pull request closed w/o merging: [5250](https://github.com/hackforla/website/pull/5250#event-10138663554) at 2023-08-20 10:32 AM PDT -abregorivas,2019-03-12T03:41:49Z,- abregorivas opened pull request: [37](https://github.com/hackforla/website/pull/37) at 2019-03-11 08:41 PM PDT -abregorivas,2019-03-12T03:44:16Z,- abregorivas pull request closed w/o merging: [37](https://github.com/hackforla/website/pull/37#event-2195934043) at 2019-03-11 08:44 PM PDT -abregorivas,2019-03-12T03:45:28Z,- abregorivas opened pull request: [38](https://github.com/hackforla/website/pull/38) at 2019-03-11 08:45 PM PDT -abregorivas,2019-03-13T05:59:05Z,- abregorivas pull request closed w/o merging: [38](https://github.com/hackforla/website/pull/38#event-2199226468) at 2019-03-12 10:59 PM PDT -abregorivas,2019-03-13T06:25:46Z,- abregorivas opened pull request: [39](https://github.com/hackforla/website/pull/39) at 2019-03-12 11:25 PM PDT -abregorivas,2019-03-13T08:27:09Z,- abregorivas opened pull request: [40](https://github.com/hackforla/website/pull/40) at 2019-03-13 01:27 AM PDT -abregorivas,2019-03-26T06:37:29Z,- abregorivas opened pull request: [45](https://github.com/hackforla/website/pull/45) at 2019-03-25 11:37 PM PDT -abregorivas,2019-03-26T19:00:57Z,- abregorivas commented on pull request: [45](https://github.com/hackforla/website/pull/45#issuecomment-476800672) at 2019-03-26 12:00 PM PDT -abregorivas,2019-03-27T02:23:01Z,- abregorivas pull request closed w/o merging: [39](https://github.com/hackforla/website/pull/39#event-2231714810) at 2019-03-26 07:23 PM PDT -abregorivas,2019-03-27T02:23:22Z,- abregorivas commented on pull request: [39](https://github.com/hackforla/website/pull/39#issuecomment-476939037) at 2019-03-26 07:23 PM PDT -abregorivas,2019-03-27T02:24:07Z,- abregorivas pull request closed w/o merging: [40](https://github.com/hackforla/website/pull/40#event-2231716217) at 2019-03-26 07:24 PM PDT -abregorivas,2019-03-27T02:33:37Z,- abregorivas pull request merged: [45](https://github.com/hackforla/website/pull/45#event-2231729349) at 2019-03-26 07:33 PM PDT -abregorivas,2019-03-27T20:13:22Z,- abregorivas opened pull request: [47](https://github.com/hackforla/website/pull/47) at 2019-03-27 01:13 PM PDT -abregorivas,2019-03-27T20:43:55Z,- abregorivas opened pull request: [48](https://github.com/hackforla/website/pull/48) at 2019-03-27 01:43 PM PDT -abregorivas,2019-03-27T21:17:45Z,- abregorivas opened pull request: [49](https://github.com/hackforla/website/pull/49) at 2019-03-27 02:17 PM PDT -abregorivas,2019-03-28T19:52:40Z,- abregorivas commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-477746690) at 2019-03-28 12:52 PM PDT -abregorivas,2019-03-28T20:03:50Z,- abregorivas pull request closed w/o merging: [47](https://github.com/hackforla/website/pull/47#event-2237453593) at 2019-03-28 01:03 PM PDT -abregorivas,2019-03-28T20:26:36Z,- abregorivas pull request closed w/o merging: [49](https://github.com/hackforla/website/pull/49#event-2237510434) at 2019-03-28 01:26 PM PDT -abregorivas,2019-03-28T20:30:08Z,- abregorivas opened pull request: [51](https://github.com/hackforla/website/pull/51) at 2019-03-28 01:30 PM PDT -abregorivas,2019-03-28T20:47:04Z,- abregorivas opened pull request: [52](https://github.com/hackforla/website/pull/52) at 2019-03-28 01:47 PM PDT -abregorivas,2019-03-28T21:25:07Z,- abregorivas opened pull request: [53](https://github.com/hackforla/website/pull/53) at 2019-03-28 02:25 PM PDT -abregorivas,2019-03-28T22:23:58Z,- abregorivas opened pull request: [54](https://github.com/hackforla/website/pull/54) at 2019-03-28 03:23 PM PDT -abregorivas,2019-03-31T22:42:33Z,- abregorivas pull request merged: [53](https://github.com/hackforla/website/pull/53#event-2241830129) at 2019-03-31 03:42 PM PDT -abregorivas,2019-03-31T23:06:05Z,- abregorivas pull request merged: [52](https://github.com/hackforla/website/pull/52#event-2241840904) at 2019-03-31 04:06 PM PDT -abregorivas,2019-04-10T01:33:24Z,- abregorivas commented on pull request: [51](https://github.com/hackforla/website/pull/51#issuecomment-481499146) at 2019-04-09 06:33 PM PDT -abregorivas,2019-04-10T01:34:00Z,- abregorivas commented on pull request: [54](https://github.com/hackforla/website/pull/54#issuecomment-481499266) at 2019-04-09 06:34 PM PDT -abregorivas,2019-04-12T20:51:57Z,- abregorivas commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-482718921) at 2019-04-12 01:51 PM PDT -abregorivas,2019-04-23T02:42:20Z,- abregorivas pull request merged: [48](https://github.com/hackforla/website/pull/48#event-2292765757) at 2019-04-22 07:42 PM PDT -abregorivas,2019-04-23T03:53:45Z,- abregorivas pull request merged: [51](https://github.com/hackforla/website/pull/51#event-2292848402) at 2019-04-22 08:53 PM PDT -abregorivas,2019-04-23T03:56:49Z,- abregorivas pull request merged: [54](https://github.com/hackforla/website/pull/54#event-2292851548) at 2019-04-22 08:56 PM PDT -abregorivas,2019-04-23T08:11:47Z,- abregorivas assigned to issue: [69](https://github.com/hackforla/website/issues/69) at 2019-04-23 01:11 AM PDT -abregorivas,2019-04-30T18:27:47Z,- abregorivas opened issue: [74](https://github.com/hackforla/website/issues/74) at 2019-04-30 11:27 AM PDT -abregorivas,2019-04-30T19:14:11Z,- abregorivas commented on issue: [64](https://github.com/hackforla/website/issues/64#issuecomment-488079043) at 2019-04-30 12:14 PM PDT -abregorivas,2019-04-30T19:16:53Z,- abregorivas assigned to issue: [67](https://github.com/hackforla/website/issues/67) at 2019-04-30 12:16 PM PDT -abregorivas,2019-04-30T19:17:25Z,- abregorivas assigned to issue: [66](https://github.com/hackforla/website/issues/66) at 2019-04-30 12:17 PM PDT -abregorivas,2019-04-30T19:17:48Z,- abregorivas assigned to issue: [65](https://github.com/hackforla/website/issues/65) at 2019-04-30 12:17 PM PDT -abregorivas,2019-04-30T19:30:29Z,- abregorivas opened issue: [75](https://github.com/hackforla/website/issues/75) at 2019-04-30 12:30 PM PDT -abregorivas,2019-05-01T02:01:08Z,- abregorivas opened pull request: [76](https://github.com/hackforla/website/pull/76) at 2019-04-30 07:01 PM PDT -abregorivas,2019-05-01T19:21:19Z,- abregorivas submitted pull request review: [77](https://github.com/hackforla/website/pull/77#pullrequestreview-232715321) at 2019-05-01 12:21 PM PDT -abregorivas,2019-05-01T22:45:47Z,- abregorivas submitted pull request review: [71](https://github.com/hackforla/website/pull/71#pullrequestreview-232788595) at 2019-05-01 03:45 PM PDT -abregorivas,2019-05-01T22:51:54Z,- abregorivas pull request merged: [76](https://github.com/hackforla/website/pull/76#event-2313114137) at 2019-05-01 03:51 PM PDT -abregorivas,2019-05-01T22:58:18Z,- abregorivas commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-488475038) at 2019-05-01 03:58 PM PDT -abregorivas,2019-05-01T23:14:05Z,- abregorivas commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-488483697) at 2019-05-01 04:14 PM PDT -abregorivas,2019-05-01T23:44:58Z,- abregorivas closed issue as completed: [67](https://github.com/hackforla/website/issues/67#event-2313225583) at 2019-05-01 04:44 PM PDT -abregorivas,2019-05-02T00:47:16Z,- abregorivas opened issue: [79](https://github.com/hackforla/website/issues/79) at 2019-05-01 05:47 PM PDT -abregorivas,2019-05-02T00:56:37Z,- abregorivas opened issue: [80](https://github.com/hackforla/website/issues/80) at 2019-05-01 05:56 PM PDT -abregorivas,2019-05-02T01:01:23Z,- abregorivas opened issue: [81](https://github.com/hackforla/website/issues/81) at 2019-05-01 06:01 PM PDT -abregorivas,2019-05-02T20:35:10Z,- abregorivas commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-488822989) at 2019-05-02 01:35 PM PDT -abregorivas,2019-05-02T20:45:24Z,- abregorivas commented on issue: [64](https://github.com/hackforla/website/issues/64#issuecomment-488825976) at 2019-05-02 01:45 PM PDT -abregorivas,2019-05-02T20:46:06Z,- abregorivas commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-488826184) at 2019-05-02 01:46 PM PDT -abregorivas,2019-05-02T20:46:10Z,- abregorivas closed issue as completed: [75](https://github.com/hackforla/website/issues/75#event-2315674328) at 2019-05-02 01:46 PM PDT -abregorivas,2019-05-02T20:58:16Z,- abregorivas commented on issue: [74](https://github.com/hackforla/website/issues/74#issuecomment-488829824) at 2019-05-02 01:58 PM PDT -abregorivas,2019-05-02T20:58:19Z,- abregorivas closed issue as completed: [74](https://github.com/hackforla/website/issues/74#event-2315701976) at 2019-05-02 01:58 PM PDT -abregorivas,2019-05-02T22:02:45Z,- abregorivas commented on pull request: [82](https://github.com/hackforla/website/pull/82#issuecomment-488848489) at 2019-05-02 03:02 PM PDT -abregorivas,2019-05-02T22:03:24Z,- abregorivas submitted pull request review: [82](https://github.com/hackforla/website/pull/82#pullrequestreview-233258742) at 2019-05-02 03:03 PM PDT -abregorivas,2019-05-02T22:47:25Z,- abregorivas opened issue: [83](https://github.com/hackforla/website/issues/83) at 2019-05-02 03:47 PM PDT -abregorivas,2019-05-02T22:52:09Z,- abregorivas opened pull request: [84](https://github.com/hackforla/website/pull/84) at 2019-05-02 03:52 PM PDT -abregorivas,2019-05-02T23:17:00Z,- abregorivas opened pull request: [85](https://github.com/hackforla/website/pull/85) at 2019-05-02 04:17 PM PDT -abregorivas,2019-05-02T23:28:34Z,- abregorivas pull request merged: [85](https://github.com/hackforla/website/pull/85#event-2315964809) at 2019-05-02 04:28 PM PDT -abregorivas,2019-05-03T00:05:29Z,- abregorivas assigned to issue: [80](https://github.com/hackforla/website/issues/80) at 2019-05-02 05:05 PM PDT -abregorivas,2019-05-03T01:22:05Z,- abregorivas opened pull request: [86](https://github.com/hackforla/website/pull/86) at 2019-05-02 06:22 PM PDT -abregorivas,2019-05-03T01:23:34Z,- abregorivas reopened issue: [79](https://github.com/hackforla/website/issues/79#event-2316083255) at 2019-05-02 06:23 PM PDT -abregorivas,2019-05-03T01:28:20Z,- abregorivas commented on pull request: [77](https://github.com/hackforla/website/pull/77#issuecomment-488887050) at 2019-05-02 06:28 PM PDT -abregorivas,2019-05-03T02:32:00Z,- abregorivas pull request merged: [86](https://github.com/hackforla/website/pull/86#event-2316160439) at 2019-05-02 07:32 PM PDT -abregorivas,2019-05-03T02:35:15Z,- abregorivas closed issue as completed: [80](https://github.com/hackforla/website/issues/80#event-2316164488) at 2019-05-02 07:35 PM PDT -abregorivas,2019-05-03T03:22:14Z,- abregorivas pull request merged: [84](https://github.com/hackforla/website/pull/84#event-2316221136) at 2019-05-02 08:22 PM PDT -abregorivas,2019-05-03T03:23:10Z,- abregorivas closed issue as completed: [83](https://github.com/hackforla/website/issues/83#event-2316222355) at 2019-05-02 08:23 PM PDT -abregorivas,2019-05-04T04:07:47Z,- abregorivas opened issue: [88](https://github.com/hackforla/website/issues/88) at 2019-05-03 09:07 PM PDT -abregorivas,2019-05-04T16:25:56Z,- abregorivas opened pull request: [89](https://github.com/hackforla/website/pull/89) at 2019-05-04 09:25 AM PDT -abregorivas,2019-05-04T16:35:48Z,- abregorivas opened pull request: [90](https://github.com/hackforla/website/pull/90) at 2019-05-04 09:35 AM PDT -abregorivas,2019-05-04T16:59:03Z,- abregorivas reopened issue: [75](https://github.com/hackforla/website/issues/75#event-2315674328) at 2019-05-04 09:59 AM PDT -abregorivas,2019-05-04T18:05:18Z,- abregorivas pull request merged: [89](https://github.com/hackforla/website/pull/89#event-2319169255) at 2019-05-04 11:05 AM PDT -abregorivas,2019-05-05T01:54:06Z,- abregorivas pull request merged: [90](https://github.com/hackforla/website/pull/90#event-2319329961) at 2019-05-04 06:54 PM PDT -abregorivas,2019-05-05T23:45:36Z,- abregorivas submitted pull request review: [91](https://github.com/hackforla/website/pull/91#pullrequestreview-233803502) at 2019-05-05 04:45 PM PDT -abregorivas,2019-05-07T06:24:54Z,- abregorivas submitted pull request review: [92](https://github.com/hackforla/website/pull/92#pullrequestreview-234327063) at 2019-05-06 11:24 PM PDT -abregorivas,2019-05-07T06:25:37Z,- abregorivas closed issue as completed: [66](https://github.com/hackforla/website/issues/66#event-2323074434) at 2019-05-06 11:25 PM PDT -abregorivas,2019-05-08T23:41:40Z,- abregorivas unassigned from issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-488484918) at 2019-05-08 04:41 PM PDT -abregorivas,2019-05-09T00:27:06Z,- abregorivas commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-490698789) at 2019-05-08 05:27 PM PDT -abregorivas,2019-05-09T00:43:11Z,- abregorivas assigned to issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-08 05:43 PM PDT -abregorivas,2019-05-09T00:50:19Z,- abregorivas commented on issue: [78](https://github.com/hackforla/website/issues/78#issuecomment-490702442) at 2019-05-08 05:50 PM PDT -abregorivas,2019-05-09T02:50:03Z,- abregorivas assigned to issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-490691273) at 2019-05-08 07:50 PM PDT -abregorivas,2019-05-10T01:27:57Z,- abregorivas assigned to issue: [102](https://github.com/hackforla/website/issues/102) at 2019-05-09 06:27 PM PDT -abregorivas,2019-05-12T05:24:50Z,- abregorivas assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -abregorivas,2019-05-13T03:16:20Z,- abregorivas assigned to issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:16 PM PDT -abregorivas,2019-05-20T18:53:31Z,- abregorivas submitted pull request review: [108](https://github.com/hackforla/website/pull/108#pullrequestreview-239668189) at 2019-05-20 11:53 AM PDT -abregorivas,2019-05-21T05:57:31Z,- abregorivas opened issue: [110](https://github.com/hackforla/website/issues/110) at 2019-05-20 10:57 PM PDT -abregorivas,2019-05-21T06:09:35Z,- abregorivas opened issue: [111](https://github.com/hackforla/website/issues/111) at 2019-05-20 11:09 PM PDT -abregorivas,2019-05-21T06:22:14Z,- abregorivas opened issue: [112](https://github.com/hackforla/website/issues/112) at 2019-05-20 11:22 PM PDT -abregorivas,2019-05-21T18:59:15Z,- abregorivas assigned to issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 11:59 AM PDT -abregorivas,2019-05-22T02:57:53Z,- abregorivas unassigned from issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 07:57 PM PDT -abregorivas,2019-05-23T03:36:18Z,- abregorivas assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -abregorivas,2019-05-27T19:59:28Z,- abregorivas opened issue: [118](https://github.com/hackforla/website/issues/118) at 2019-05-27 12:59 PM PDT -abregorivas,2019-05-27T23:15:57Z,- abregorivas assigned to issue: [121](https://github.com/hackforla/website/issues/121) at 2019-05-27 04:15 PM PDT -abregorivas,2019-05-29T19:29:57Z,- abregorivas commented on pull request: [108](https://github.com/hackforla/website/pull/108#issuecomment-497077672) at 2019-05-29 12:29 PM PDT -abregorivas,2019-06-04T01:16:13Z,- abregorivas assigned to issue: [117](https://github.com/hackforla/website/issues/117) at 2019-06-03 06:16 PM PDT -abregorivas,2019-06-04T01:21:06Z,- abregorivas assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -abregorivas,2019-06-06T03:49:27Z,- abregorivas closed issue as completed: [112](https://github.com/hackforla/website/issues/112#event-2393099705) at 2019-06-05 08:49 PM PDT -abregorivas,2019-06-06T03:50:43Z,- abregorivas commented on issue: [112](https://github.com/hackforla/website/issues/112#issuecomment-499338170) at 2019-06-05 08:50 PM PDT -abregorivas,2019-06-10T22:50:51Z,- abregorivas unassigned from issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498489346) at 2019-06-10 03:50 PM PDT -abregorivas,2019-06-10T23:14:13Z,- abregorivas commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-500627159) at 2019-06-10 04:14 PM PDT -abregorivas,2019-07-10T00:19:35Z,- abregorivas commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-509857544) at 2019-07-09 05:19 PM PDT -abregorivas,2020-06-01T02:23:45Z,- abregorivas unassigned from issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-490691273) at 2020-05-31 07:23 PM PDT -abregorivas,2020-06-01T02:33:13Z,- abregorivas unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -abregorivas,2020-06-01T02:38:02Z,- abregorivas unassigned from issue: [102](https://github.com/hackforla/website/issues/102) at 2020-05-31 07:38 PM PDT -abregorivas,2020-06-01T03:17:10Z,- abregorivas unassigned from issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2020-05-31 08:17 PM PDT -Abrosss,3919,SKILLS ISSUE -Abrosss,2023-02-01T05:02:28Z,- Abrosss opened issue: [3919](https://github.com/hackforla/website/issues/3919) at 2023-01-31 09:02 PM PST -Abrosss,2023-02-01T05:02:29Z,- Abrosss assigned to issue: [3919](https://github.com/hackforla/website/issues/3919) at 2023-01-31 09:02 PM PST -Abrosss,2023-05-12T16:21:45Z,- Abrosss reopened issue: [3919](https://github.com/hackforla/website/issues/3919#event-8955645245) at 2023-05-12 09:21 AM PDT -Abrosss,2023-05-21T17:00:47Z,- Abrosss closed issue as completed: [3919](https://github.com/hackforla/website/issues/3919#event-9296292024) at 2023-05-21 10:00 AM PDT -Abrosss,2023-06-12T07:05:57Z,- Abrosss reopened issue: [3919](https://github.com/hackforla/website/issues/3919#event-9296292024) at 2023-06-12 12:05 AM PDT -Abrosss,2023-06-12T07:10:53Z,- Abrosss assigned to issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1546961942) at 2023-06-12 12:10 AM PDT -Abrosss,2023-06-12T07:29:33Z,- Abrosss commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1586745425) at 2023-06-12 12:29 AM PDT -Abrosss,2023-06-12T07:57:05Z,- Abrosss opened pull request: [4817](https://github.com/hackforla/website/pull/4817) at 2023-06-12 12:57 AM PDT -Abrosss,2023-06-13T03:55:28Z,- Abrosss commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1588485120) at 2023-06-12 08:55 PM PDT -Abrosss,2023-06-16T15:30:07Z,- Abrosss commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1594875165) at 2023-06-16 08:30 AM PDT -Abrosss,2023-06-18T03:37:17Z,- Abrosss pull request merged: [4817](https://github.com/hackforla/website/pull/4817#event-9560059125) at 2023-06-17 08:37 PM PDT -Abrosss,2023-06-24T16:57:18Z,- Abrosss commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1605647532) at 2023-06-24 09:57 AM PDT -Abrosss,2023-06-24T16:57:19Z,- Abrosss closed issue as completed: [3919](https://github.com/hackforla/website/issues/3919#event-9627367031) at 2023-06-24 09:57 AM PDT -Abrosss,2023-06-27T17:46:04Z,- Abrosss assigned to issue: [4883](https://github.com/hackforla/website/issues/4883) at 2023-06-27 10:46 AM PDT -Abrosss,2023-06-27T17:51:29Z,- Abrosss commented on issue: [4883](https://github.com/hackforla/website/issues/4883#issuecomment-1609969293) at 2023-06-27 10:51 AM PDT -Abrosss,2023-06-27T18:40:17Z,- Abrosss opened pull request: [4890](https://github.com/hackforla/website/pull/4890) at 2023-06-27 11:40 AM PDT -Abrosss,2023-07-02T03:40:12Z,- Abrosss pull request merged: [4890](https://github.com/hackforla/website/pull/4890#event-9698583189) at 2023-07-01 08:40 PM PDT -Abrosss,2023-07-05T16:33:13Z,- Abrosss commented on pull request: [4911](https://github.com/hackforla/website/pull/4911#issuecomment-1622107850) at 2023-07-05 09:33 AM PDT -Abrosss,2023-07-05T18:52:04Z,- Abrosss submitted pull request review: [4911](https://github.com/hackforla/website/pull/4911#pullrequestreview-1515137494) at 2023-07-05 11:52 AM PDT -Abrosss,2023-08-07T10:48:43Z,- Abrosss submitted pull request review: [5155](https://github.com/hackforla/website/pull/5155#pullrequestreview-1565064449) at 2023-08-07 03:48 AM PDT -Abrosss,2023-08-08T07:29:01Z,- Abrosss submitted pull request review: [5161](https://github.com/hackforla/website/pull/5161#pullrequestreview-1566661460) at 2023-08-08 12:29 AM PDT -Abrosss,2023-08-09T03:04:57Z,- Abrosss submitted pull request review: [5161](https://github.com/hackforla/website/pull/5161#pullrequestreview-1568631207) at 2023-08-08 08:04 PM PDT -abryant35,2021-07-25T15:11:03Z,- abryant35 opened issue: [2007](https://github.com/hackforla/website/issues/2007) at 2021-07-25 08:11 AM PDT -abryant35,2021-08-12T22:54:00Z,- abryant35 commented on issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-898022997) at 2021-08-12 03:54 PM PDT -abryant35,2021-08-25T02:25:45Z,- abryant35 opened issue: [2177](https://github.com/hackforla/website/issues/2177) at 2021-08-24 07:25 PM PDT -abuna1985,2021-06-17T19:57:14Z,- abuna1985 assigned to issue: [1586](https://github.com/hackforla/website/issues/1586) at 2021-06-17 12:57 PM PDT -abuna1985,2021-06-18T21:56:18Z,- abuna1985 opened pull request: [1784](https://github.com/hackforla/website/pull/1784) at 2021-06-18 02:56 PM PDT -abuna1985,2021-06-18T23:58:28Z,- abuna1985 submitted pull request review: [1771](https://github.com/hackforla/website/pull/1771#pullrequestreview-687775297) at 2021-06-18 04:58 PM PDT -abuna1985,2021-06-19T00:08:09Z,- abuna1985 submitted pull request review: [1765](https://github.com/hackforla/website/pull/1765#pullrequestreview-687776650) at 2021-06-18 05:08 PM PDT -abuna1985,2021-06-20T18:56:41Z,- abuna1985 assigned to issue: [1792](https://github.com/hackforla/website/issues/1792) at 2021-06-20 11:56 AM PDT -abuna1985,2021-06-20T19:12:08Z,- abuna1985 pull request merged: [1784](https://github.com/hackforla/website/pull/1784#event-4913700549) at 2021-06-20 12:12 PM PDT -abuna1985,2021-06-22T05:48:56Z,- abuna1985 submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-689081083) at 2021-06-21 10:48 PM PDT -abuna1985,2021-06-22T07:53:04Z,- abuna1985 opened pull request: [1813](https://github.com/hackforla/website/pull/1813) at 2021-06-22 12:53 AM PDT -abuna1985,2021-06-23T03:54:21Z,- abuna1985 opened issue: [1816](https://github.com/hackforla/website/issues/1816) at 2021-06-22 08:54 PM PDT -abuna1985,2021-06-23T04:05:13Z,- abuna1985 opened issue: [1817](https://github.com/hackforla/website/issues/1817) at 2021-06-22 09:05 PM PDT -abuna1985,2021-06-23T04:05:47Z,- abuna1985 assigned to issue: [1817](https://github.com/hackforla/website/issues/1817) at 2021-06-22 09:05 PM PDT -abuna1985,2021-06-23T04:11:28Z,- abuna1985 unassigned from issue: [1817](https://github.com/hackforla/website/issues/1817) at 2021-06-22 09:11 PM PDT -abuna1985,2021-06-23T17:02:58Z,- abuna1985 pull request merged: [1813](https://github.com/hackforla/website/pull/1813#event-4930143355) at 2021-06-23 10:02 AM PDT -abuna1985,2021-06-23T17:51:51Z,- abuna1985 assigned to issue: [1817](https://github.com/hackforla/website/issues/1817) at 2021-06-23 10:51 AM PDT -abuna1985,2021-06-27T17:23:31Z,- abuna1985 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-869197859) at 2021-06-27 10:23 AM PDT -abuna1985,2021-06-28T19:31:22Z,- abuna1985 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-869966810) at 2021-06-28 12:31 PM PDT -abuna1985,2021-07-02T22:02:52Z,- abuna1985 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873276899) at 2021-07-02 03:02 PM PDT -abuna1985,2021-07-02T22:13:02Z,- abuna1985 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873280760) at 2021-07-02 03:13 PM PDT -abuna1985,2021-07-02T23:34:00Z,- abuna1985 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873303643) at 2021-07-02 04:34 PM PDT -abuna1985,2021-07-03T00:42:52Z,- abuna1985 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873316937) at 2021-07-02 05:42 PM PDT -abuna1985,2021-07-03T07:59:48Z,- abuna1985 opened pull request: [1883](https://github.com/hackforla/website/pull/1883) at 2021-07-03 12:59 AM PDT -abuna1985,2021-07-03T08:30:18Z,- abuna1985 submitted pull request review: [1882](https://github.com/hackforla/website/pull/1882#pullrequestreview-698577388) at 2021-07-03 01:30 AM PDT -abuna1985,2021-07-03T09:05:17Z,- abuna1985 submitted pull request review: [1870](https://github.com/hackforla/website/pull/1870#pullrequestreview-698579417) at 2021-07-03 02:05 AM PDT -abuna1985,2021-07-07T00:18:34Z,- abuna1985 commented on pull request: [1870](https://github.com/hackforla/website/pull/1870#issuecomment-875169026) at 2021-07-06 05:18 PM PDT -abuna1985,2021-07-07T02:34:53Z,- abuna1985 submitted pull request review: [1894](https://github.com/hackforla/website/pull/1894#pullrequestreview-700524284) at 2021-07-06 07:34 PM PDT -abuna1985,2021-07-07T03:51:57Z,- abuna1985 commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-875252740) at 2021-07-06 08:51 PM PDT -abuna1985,2021-07-07T23:26:59Z,- abuna1985 opened issue: [1899](https://github.com/hackforla/website/issues/1899) at 2021-07-07 04:26 PM PDT -abuna1985,2021-07-09T03:11:00Z,- abuna1985 pull request merged: [1883](https://github.com/hackforla/website/pull/1883#event-4998097059) at 2021-07-08 08:11 PM PDT -abuna1985,2021-07-09T15:41:58Z,- abuna1985 submitted pull request review: [1870](https://github.com/hackforla/website/pull/1870#pullrequestreview-703177876) at 2021-07-09 08:41 AM PDT -abuna1985,2021-07-09T16:41:55Z,- abuna1985 opened issue: [1908](https://github.com/hackforla/website/issues/1908) at 2021-07-09 09:41 AM PDT -abuna1985,2021-07-09T18:33:07Z,- abuna1985 submitted pull request review: [1894](https://github.com/hackforla/website/pull/1894#pullrequestreview-703302915) at 2021-07-09 11:33 AM PDT -abuna1985,2021-07-09T22:07:48Z,- abuna1985 submitted pull request review: [1902](https://github.com/hackforla/website/pull/1902#pullrequestreview-703419312) at 2021-07-09 03:07 PM PDT -abuna1985,2021-07-09T23:36:22Z,- abuna1985 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-877509507) at 2021-07-09 04:36 PM PDT -abuna1985,2021-07-09T23:50:33Z,- abuna1985 opened issue: [1911](https://github.com/hackforla/website/issues/1911) at 2021-07-09 04:50 PM PDT -abuna1985,2021-07-09T23:57:08Z,- abuna1985 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-877514403) at 2021-07-09 04:57 PM PDT -abuna1985,2021-07-09T23:57:09Z,- abuna1985 closed issue by PR 1883: [1817](https://github.com/hackforla/website/issues/1817#event-5002607533) at 2021-07-09 04:57 PM PDT -abuna1985,2021-07-11T18:12:46Z,- abuna1985 commented on issue: [1919](https://github.com/hackforla/website/issues/1919#issuecomment-877840893) at 2021-07-11 11:12 AM PDT -abuna1985,2021-07-11T20:48:17Z,- abuna1985 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877859115) at 2021-07-11 01:48 PM PDT -abuna1985,2021-07-11T22:06:52Z,- abuna1985 commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-877867960) at 2021-07-11 03:06 PM PDT -abuna1985,2021-07-13T21:37:55Z,- abuna1985 assigned to issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877859115) at 2021-07-13 02:37 PM PDT -abuna1985,2021-07-14T07:41:01Z,- abuna1985 commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-879670597) at 2021-07-14 12:41 AM PDT -abuna1985,2021-07-14T08:20:13Z,- abuna1985 commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-879696097) at 2021-07-14 01:20 AM PDT -abuna1985,2021-07-16T17:11:01Z,- abuna1985 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-881595144) at 2021-07-16 10:11 AM PDT -abuna1985,2021-07-17T19:40:56Z,- abuna1985 submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-708965310) at 2021-07-17 12:40 PM PDT -abuna1985,2021-07-17T21:41:07Z,- abuna1985 submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-708971176) at 2021-07-17 02:41 PM PDT -abuna1985,2021-07-18T01:55:42Z,- abuna1985 submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-708981083) at 2021-07-17 06:55 PM PDT -abuna1985,2021-07-18T02:06:18Z,- abuna1985 submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-708981442) at 2021-07-17 07:06 PM PDT -abuna1985,2021-07-19T06:12:30Z,- abuna1985 submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-709181361) at 2021-07-18 11:12 PM PDT -abuna1985,2021-07-25T22:01:49Z,- abuna1985 opened issue: [2010](https://github.com/hackforla/website/issues/2010) at 2021-07-25 03:01 PM PDT -abuna1985,2021-07-25T22:05:09Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-886264004) at 2021-07-25 03:05 PM PDT -abuna1985,2021-07-25T22:25:10Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-886266159) at 2021-07-25 03:25 PM PDT -abuna1985,2021-07-25T23:26:51Z,- abuna1985 submitted pull request review: [2001](https://github.com/hackforla/website/pull/2001#pullrequestreview-714360742) at 2021-07-25 04:26 PM PDT -abuna1985,2021-07-26T13:46:31Z,- abuna1985 commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-886717802) at 2021-07-26 06:46 AM PDT -abuna1985,2021-07-26T15:21:01Z,- abuna1985 commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-886797483) at 2021-07-26 08:21 AM PDT -abuna1985,2021-07-26T15:29:52Z,- abuna1985 submitted pull request review: [2001](https://github.com/hackforla/website/pull/2001#pullrequestreview-714989339) at 2021-07-26 08:29 AM PDT -abuna1985,2021-07-26T17:37:02Z,- abuna1985 submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-715114095) at 2021-07-26 10:37 AM PDT -abuna1985,2021-07-27T05:15:54Z,- abuna1985 submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-715494979) at 2021-07-26 10:15 PM PDT -abuna1985,2021-07-27T05:19:45Z,- abuna1985 submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-715496648) at 2021-07-26 10:19 PM PDT -abuna1985,2021-07-29T23:00:05Z,- abuna1985 submitted pull request review: [2003](https://github.com/hackforla/website/pull/2003#pullrequestreview-718597759) at 2021-07-29 04:00 PM PDT -abuna1985,2021-07-29T23:54:49Z,- abuna1985 submitted pull request review: [2005](https://github.com/hackforla/website/pull/2005#pullrequestreview-718618754) at 2021-07-29 04:54 PM PDT -abuna1985,2021-07-30T00:03:37Z,- abuna1985 submitted pull request review: [2011](https://github.com/hackforla/website/pull/2011#pullrequestreview-718622007) at 2021-07-29 05:03 PM PDT -abuna1985,2021-07-30T01:44:29Z,- abuna1985 submitted pull request review: [1999](https://github.com/hackforla/website/pull/1999#pullrequestreview-718656288) at 2021-07-29 06:44 PM PDT -abuna1985,2021-08-01T15:30:22Z,- abuna1985 submitted pull request review: [1999](https://github.com/hackforla/website/pull/1999#pullrequestreview-719674040) at 2021-08-01 08:30 AM PDT -abuna1985,2021-08-01T15:30:47Z,- abuna1985 closed issue by PR 1999: [1479](https://github.com/hackforla/website/issues/1479#event-5095581391) at 2021-08-01 08:30 AM PDT -abuna1985,2021-08-01T15:34:04Z,- abuna1985 closed issue by PR 2004: [1943](https://github.com/hackforla/website/issues/1943#event-5095584404) at 2021-08-01 08:34 AM PDT -abuna1985,2021-08-01T15:35:55Z,- abuna1985 submitted pull request review: [2005](https://github.com/hackforla/website/pull/2005#pullrequestreview-719674493) at 2021-08-01 08:35 AM PDT -abuna1985,2021-08-01T15:57:41Z,- abuna1985 submitted pull request review: [2019](https://github.com/hackforla/website/pull/2019#pullrequestreview-719676272) at 2021-08-01 08:57 AM PDT -abuna1985,2021-08-01T17:44:11Z,- abuna1985 commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-890560375) at 2021-08-01 10:44 AM PDT -abuna1985,2021-08-02T07:10:00Z,- abuna1985 submitted pull request review: [2019](https://github.com/hackforla/website/pull/2019#pullrequestreview-719860799) at 2021-08-02 12:10 AM PDT -abuna1985,2021-08-03T07:37:22Z,- abuna1985 submitted pull request review: [2005](https://github.com/hackforla/website/pull/2005#pullrequestreview-720876174) at 2021-08-03 12:37 AM PDT -abuna1985,2021-08-03T07:39:03Z,- abuna1985 closed issue by PR 2005: [1919](https://github.com/hackforla/website/issues/1919#event-5103069381) at 2021-08-03 12:39 AM PDT -abuna1985,2021-08-03T16:40:13Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-891996607) at 2021-08-03 09:40 AM PDT -abuna1985,2021-08-04T02:58:07Z,- abuna1985 opened issue: [2061](https://github.com/hackforla/website/issues/2061) at 2021-08-03 07:58 PM PDT -abuna1985,2021-08-04T03:07:02Z,- abuna1985 assigned to issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-891996607) at 2021-08-03 08:07 PM PDT -abuna1985,2021-08-06T19:36:43Z,- abuna1985 assigned to issue: [1921](https://github.com/hackforla/website/issues/1921) at 2021-08-06 12:36 PM PDT -abuna1985,2021-08-07T14:34:58Z,- abuna1985 commented on issue: [1921](https://github.com/hackforla/website/issues/1921#issuecomment-894662631) at 2021-08-07 07:34 AM PDT -abuna1985,2021-08-09T07:19:42Z,- abuna1985 commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-895006409) at 2021-08-09 12:19 AM PDT -abuna1985,2021-08-10T20:55:06Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-896310205) at 2021-08-10 01:55 PM PDT -abuna1985,2021-08-10T21:46:07Z,- abuna1985 opened issue: [2097](https://github.com/hackforla/website/issues/2097) at 2021-08-10 02:46 PM PDT -abuna1985,2021-08-10T22:01:17Z,- abuna1985 commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-896341550) at 2021-08-10 03:01 PM PDT -abuna1985,2021-08-11T00:13:45Z,- abuna1985 submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-726942443) at 2021-08-10 05:13 PM PDT -abuna1985,2021-08-11T00:15:59Z,- abuna1985 commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-896397575) at 2021-08-10 05:15 PM PDT -abuna1985,2021-08-11T16:40:49Z,- abuna1985 commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-896980347) at 2021-08-11 09:40 AM PDT -abuna1985,2021-08-11T17:59:37Z,- abuna1985 commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-897033445) at 2021-08-11 10:59 AM PDT -abuna1985,2021-08-12T05:27:43Z,- abuna1985 commented on issue: [1921](https://github.com/hackforla/website/issues/1921#issuecomment-897359416) at 2021-08-11 10:27 PM PDT -abuna1985,2021-08-12T06:08:19Z,- abuna1985 opened issue: [2104](https://github.com/hackforla/website/issues/2104) at 2021-08-11 11:08 PM PDT -abuna1985,2021-08-12T06:40:47Z,- abuna1985 commented on issue: [1921](https://github.com/hackforla/website/issues/1921#issuecomment-897388513) at 2021-08-11 11:40 PM PDT -abuna1985,2021-08-12T06:43:40Z,- abuna1985 commented on issue: [1921](https://github.com/hackforla/website/issues/1921#issuecomment-897389763) at 2021-08-11 11:43 PM PDT -abuna1985,2021-08-12T06:43:40Z,- abuna1985 closed issue as completed: [1921](https://github.com/hackforla/website/issues/1921#event-5147052057) at 2021-08-11 11:43 PM PDT -abuna1985,2021-08-14T19:36:25Z,- abuna1985 commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-898950136) at 2021-08-14 12:36 PM PDT -abuna1985,2021-08-14T19:45:44Z,- abuna1985 submitted pull request review: [2074](https://github.com/hackforla/website/pull/2074#pullrequestreview-730128864) at 2021-08-14 12:45 PM PDT -abuna1985,2021-08-14T20:08:52Z,- abuna1985 submitted pull request review: [2102](https://github.com/hackforla/website/pull/2102#pullrequestreview-730129972) at 2021-08-14 01:08 PM PDT -abuna1985,2021-08-14T20:19:37Z,- abuna1985 closed issue by PR 2102: [2075](https://github.com/hackforla/website/issues/2075#event-5159068560) at 2021-08-14 01:19 PM PDT -abuna1985,2021-08-14T23:52:12Z,- abuna1985 commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-898972110) at 2021-08-14 04:52 PM PDT -abuna1985,2021-08-14T23:55:07Z,- abuna1985 commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-898972312) at 2021-08-14 04:55 PM PDT -abuna1985,2021-08-15T00:01:28Z,- abuna1985 commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-898972808) at 2021-08-14 05:01 PM PDT -abuna1985,2021-08-15T00:07:31Z,- abuna1985 commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-898973863) at 2021-08-14 05:07 PM PDT -abuna1985,2021-08-15T17:14:46Z,- abuna1985 commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-899083596) at 2021-08-15 10:14 AM PDT -abuna1985,2021-08-15T17:39:07Z,- abuna1985 commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-899086426) at 2021-08-15 10:39 AM PDT -abuna1985,2021-08-15T17:40:28Z,- abuna1985 closed issue by PR 2250: [2117](https://github.com/hackforla/website/issues/2117#event-5159972965) at 2021-08-15 10:40 AM PDT -abuna1985,2021-08-16T16:47:26Z,- abuna1985 reopened issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-899623738) at 2021-08-16 09:47 AM PDT -abuna1985,2021-08-16T16:52:14Z,- abuna1985 commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-899662109) at 2021-08-16 09:52 AM PDT -abuna1985,2021-08-16T20:33:34Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-899800608) at 2021-08-16 01:33 PM PDT -abuna1985,2021-08-18T21:26:45Z,- abuna1985 commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-901441387) at 2021-08-18 02:26 PM PDT -abuna1985,2021-08-19T00:05:09Z,- abuna1985 submitted pull request review: [2124](https://github.com/hackforla/website/pull/2124#pullrequestreview-733445870) at 2021-08-18 05:05 PM PDT -abuna1985,2021-08-19T03:06:29Z,- abuna1985 submitted pull request review: [2121](https://github.com/hackforla/website/pull/2121#pullrequestreview-733512278) at 2021-08-18 08:06 PM PDT -abuna1985,2021-08-19T06:29:24Z,- abuna1985 submitted pull request review: [2123](https://github.com/hackforla/website/pull/2123#pullrequestreview-733607518) at 2021-08-18 11:29 PM PDT -abuna1985,2021-08-19T06:47:33Z,- abuna1985 submitted pull request review: [2123](https://github.com/hackforla/website/pull/2123#pullrequestreview-733619561) at 2021-08-18 11:47 PM PDT -abuna1985,2021-08-22T00:59:09Z,- abuna1985 submitted pull request review: [2121](https://github.com/hackforla/website/pull/2121#pullrequestreview-735530296) at 2021-08-21 05:59 PM PDT -abuna1985,2021-08-22T00:59:35Z,- abuna1985 closed issue by PR 2121: [2109](https://github.com/hackforla/website/issues/2109#event-5190324951) at 2021-08-21 05:59 PM PDT -abuna1985,2021-08-22T16:55:05Z,- abuna1985 opened issue: [2158](https://github.com/hackforla/website/issues/2158) at 2021-08-22 09:55 AM PDT -abuna1985,2021-08-22T17:03:52Z,- abuna1985 opened issue: [2159](https://github.com/hackforla/website/issues/2159) at 2021-08-22 10:03 AM PDT -abuna1985,2021-08-22T18:14:57Z,- abuna1985 commented on pull request: [2059](https://github.com/hackforla/website/pull/2059#issuecomment-903308955) at 2021-08-22 11:14 AM PDT -abuna1985,2021-08-22T18:26:12Z,- abuna1985 commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-903310434) at 2021-08-22 11:26 AM PDT -abuna1985,2021-08-22T19:08:28Z,- abuna1985 commented on issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-903316210) at 2021-08-22 12:08 PM PDT -abuna1985,2021-08-23T06:06:26Z,- abuna1985 commented on issue: [2153](https://github.com/hackforla/website/issues/2153#issuecomment-903470211) at 2021-08-22 11:06 PM PDT -abuna1985,2021-08-23T06:16:06Z,- abuna1985 opened issue: [2165](https://github.com/hackforla/website/issues/2165) at 2021-08-22 11:16 PM PDT -abuna1985,2021-08-23T06:23:21Z,- abuna1985 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-903478972) at 2021-08-22 11:23 PM PDT -abuna1985,2021-08-23T07:48:54Z,- abuna1985 submitted pull request review: [2144](https://github.com/hackforla/website/pull/2144#pullrequestreview-735816065) at 2021-08-23 12:48 AM PDT -abuna1985,2021-08-23T19:34:02Z,- abuna1985 commented on issue: [2153](https://github.com/hackforla/website/issues/2153#issuecomment-904062831) at 2021-08-23 12:34 PM PDT -abuna1985,2021-08-24T01:14:29Z,- abuna1985 commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-904242560) at 2021-08-23 06:14 PM PDT -abuna1985,2021-08-24T18:50:02Z,- abuna1985 commented on issue: [2170](https://github.com/hackforla/website/issues/2170#issuecomment-904889602) at 2021-08-24 11:50 AM PDT -abuna1985,2021-08-24T19:03:50Z,- abuna1985 closed issue as completed: [2061](https://github.com/hackforla/website/issues/2061#event-5202499635) at 2021-08-24 12:03 PM PDT -abuna1985,2021-08-24T19:03:55Z,- abuna1985 reopened issue: [2061](https://github.com/hackforla/website/issues/2061#event-5202499635) at 2021-08-24 12:03 PM PDT -abuna1985,2021-08-24T22:40:10Z,- abuna1985 commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-905023487) at 2021-08-24 03:40 PM PDT -abuna1985,2021-08-24T22:42:57Z,- abuna1985 commented on issue: [2138](https://github.com/hackforla/website/issues/2138#issuecomment-905024604) at 2021-08-24 03:42 PM PDT -abuna1985,2021-08-24T23:02:43Z,- abuna1985 commented on issue: [2138](https://github.com/hackforla/website/issues/2138#issuecomment-905031996) at 2021-08-24 04:02 PM PDT -abuna1985,2021-08-24T23:20:36Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-905039281) at 2021-08-24 04:20 PM PDT -abuna1985,2021-08-25T05:39:29Z,- abuna1985 commented on pull request: [2059](https://github.com/hackforla/website/pull/2059#issuecomment-905199130) at 2021-08-24 10:39 PM PDT -abuna1985,2021-08-25T05:53:28Z,- abuna1985 assigned to issue: [2079](https://github.com/hackforla/website/issues/2079#issuecomment-903307425) at 2021-08-24 10:53 PM PDT -abuna1985,2021-08-25T06:49:17Z,- abuna1985 opened pull request: [2178](https://github.com/hackforla/website/pull/2178) at 2021-08-24 11:49 PM PDT -abuna1985,2021-08-25T07:47:37Z,- abuna1985 submitted pull request review: [2166](https://github.com/hackforla/website/pull/2166#pullrequestreview-738014794) at 2021-08-25 12:47 AM PDT -abuna1985,2021-08-25T15:52:21Z,- abuna1985 commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905642729) at 2021-08-25 08:52 AM PDT -abuna1985,2021-08-25T18:40:18Z,- abuna1985 commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905780982) at 2021-08-25 11:40 AM PDT -abuna1985,2021-08-26T00:03:23Z,- abuna1985 closed issue by PR 2166: [2008](https://github.com/hackforla/website/issues/2008#event-5209848877) at 2021-08-25 05:03 PM PDT -abuna1985,2021-08-27T00:08:48Z,- abuna1985 commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906824251) at 2021-08-26 05:08 PM PDT -abuna1985,2021-08-27T05:07:45Z,- abuna1985 commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906929056) at 2021-08-26 10:07 PM PDT -abuna1985,2021-08-27T05:09:05Z,- abuna1985 commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906929601) at 2021-08-26 10:09 PM PDT -abuna1985,2021-08-27T05:38:03Z,- abuna1985 commented on issue: [2082](https://github.com/hackforla/website/issues/2082#issuecomment-906939143) at 2021-08-26 10:38 PM PDT -abuna1985,2021-08-27T06:56:54Z,- abuna1985 opened issue: [2187](https://github.com/hackforla/website/issues/2187) at 2021-08-26 11:56 PM PDT -abuna1985,2021-08-27T07:55:41Z,- abuna1985 commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-907005509) at 2021-08-27 12:55 AM PDT -abuna1985,2021-08-27T18:51:50Z,- abuna1985 commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-907405323) at 2021-08-27 11:51 AM PDT -abuna1985,2021-08-27T19:10:10Z,- abuna1985 commented on issue: [2082](https://github.com/hackforla/website/issues/2082#issuecomment-907417027) at 2021-08-27 12:10 PM PDT -abuna1985,2021-08-28T05:48:28Z,- abuna1985 pull request merged: [2178](https://github.com/hackforla/website/pull/2178#event-5221347834) at 2021-08-27 10:48 PM PDT -abuna1985,2021-08-29T06:33:58Z,- abuna1985 submitted pull request review: [2186](https://github.com/hackforla/website/pull/2186#pullrequestreview-741079576) at 2021-08-28 11:33 PM PDT -abuna1985,2021-08-29T06:36:31Z,- abuna1985 closed issue by PR 2186: [1816](https://github.com/hackforla/website/issues/1816#event-5222396187) at 2021-08-28 11:36 PM PDT -abuna1985,2021-08-29T06:55:19Z,- abuna1985 submitted pull request review: [2196](https://github.com/hackforla/website/pull/2196#pullrequestreview-741080939) at 2021-08-28 11:55 PM PDT -abuna1985,2021-08-29T07:11:58Z,- abuna1985 assigned to issue: [2164](https://github.com/hackforla/website/issues/2164) at 2021-08-29 12:11 AM PDT -abuna1985,2021-08-29T08:58:58Z,- abuna1985 opened pull request: [2197](https://github.com/hackforla/website/pull/2197) at 2021-08-29 01:58 AM PDT -abuna1985,2021-08-29T10:15:19Z,- abuna1985 opened issue: [2198](https://github.com/hackforla/website/issues/2198) at 2021-08-29 03:15 AM PDT -abuna1985,2021-08-29T10:18:59Z,- abuna1985 opened issue: [2199](https://github.com/hackforla/website/issues/2199) at 2021-08-29 03:18 AM PDT -abuna1985,2021-08-29T10:22:49Z,- abuna1985 opened issue: [2200](https://github.com/hackforla/website/issues/2200) at 2021-08-29 03:22 AM PDT -abuna1985,2021-08-29T10:25:39Z,- abuna1985 commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-907767061) at 2021-08-29 03:25 AM PDT -abuna1985,2021-08-29T18:37:39Z,- abuna1985 submitted pull request review: [2140](https://github.com/hackforla/website/pull/2140#pullrequestreview-741141691) at 2021-08-29 11:37 AM PDT -abuna1985,2021-08-29T23:10:25Z,- abuna1985 opened issue: [2204](https://github.com/hackforla/website/issues/2204) at 2021-08-29 04:10 PM PDT -abuna1985,2021-08-29T23:13:22Z,- abuna1985 opened issue: [2205](https://github.com/hackforla/website/issues/2205) at 2021-08-29 04:13 PM PDT -abuna1985,2021-08-29T23:39:05Z,- abuna1985 commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-907899822) at 2021-08-29 04:39 PM PDT -abuna1985,2021-08-30T19:01:34Z,- abuna1985 submitted pull request review: [2196](https://github.com/hackforla/website/pull/2196#pullrequestreview-741971518) at 2021-08-30 12:01 PM PDT -abuna1985,2021-08-31T03:55:19Z,- abuna1985 pull request merged: [2197](https://github.com/hackforla/website/pull/2197#event-5229860849) at 2021-08-30 08:55 PM PDT -abuna1985,2021-09-01T00:23:04Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-909754166) at 2021-08-31 05:23 PM PDT -abuna1985,2021-09-02T06:18:54Z,- abuna1985 assigned to issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-903315840) at 2021-09-01 11:18 PM PDT -abuna1985,2021-09-02T07:22:10Z,- abuna1985 opened pull request: [2214](https://github.com/hackforla/website/pull/2214) at 2021-09-02 12:22 AM PDT -abuna1985,2021-09-05T16:38:18Z,- abuna1985 opened issue: [2226](https://github.com/hackforla/website/issues/2226) at 2021-09-05 09:38 AM PDT -abuna1985,2021-09-05T18:42:45Z,- abuna1985 commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-913204842) at 2021-09-05 11:42 AM PDT -abuna1985,2021-09-07T04:37:30Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-913984217) at 2021-09-06 09:37 PM PDT -abuna1985,2021-09-07T22:44:41Z,- abuna1985 submitted pull request review: [2223](https://github.com/hackforla/website/pull/2223#pullrequestreview-748487755) at 2021-09-07 03:44 PM PDT -abuna1985,2021-09-09T15:34:43Z,- abuna1985 pull request merged: [2214](https://github.com/hackforla/website/pull/2214#event-5279407890) at 2021-09-09 08:34 AM PDT -abuna1985,2021-09-10T06:48:03Z,- abuna1985 commented on issue: [2162](https://github.com/hackforla/website/issues/2162#issuecomment-916672106) at 2021-09-09 11:48 PM PDT -abuna1985,2021-09-11T20:56:43Z,- abuna1985 commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-917478774) at 2021-09-11 01:56 PM PDT -abuna1985,2021-09-11T21:36:20Z,- abuna1985 opened issue: [2248](https://github.com/hackforla/website/issues/2248) at 2021-09-11 02:36 PM PDT -abuna1985,2021-09-11T21:52:23Z,- abuna1985 opened issue: [2249](https://github.com/hackforla/website/issues/2249) at 2021-09-11 02:52 PM PDT -abuna1985,2021-09-11T22:06:52Z,- abuna1985 assigned to issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-903478972) at 2021-09-11 03:06 PM PDT -abuna1985,2021-09-12T19:39:38Z,- abuna1985 submitted pull request review: [2208](https://github.com/hackforla/website/pull/2208#pullrequestreview-752190525) at 2021-09-12 12:39 PM PDT -abuna1985,2021-09-12T20:12:35Z,- abuna1985 unassigned from issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-903478972) at 2021-09-12 01:12 PM PDT -abuna1985,2021-09-12T20:12:42Z,- abuna1985 assigned to issue: [2203](https://github.com/hackforla/website/issues/2203#issuecomment-913813683) at 2021-09-12 01:12 PM PDT -abuna1985,2021-09-13T00:25:25Z,- abuna1985 opened pull request: [2253](https://github.com/hackforla/website/pull/2253) at 2021-09-12 05:25 PM PDT -abuna1985,2021-09-14T03:05:42Z,- abuna1985 pull request merged: [2253](https://github.com/hackforla/website/pull/2253#event-5296745903) at 2021-09-13 08:05 PM PDT -abuna1985,2021-09-14T03:27:10Z,- abuna1985 submitted pull request review: [2208](https://github.com/hackforla/website/pull/2208#pullrequestreview-753437141) at 2021-09-13 08:27 PM PDT -abuna1985,2021-09-14T03:44:03Z,- abuna1985 submitted pull request review: [2208](https://github.com/hackforla/website/pull/2208#pullrequestreview-753443336) at 2021-09-13 08:44 PM PDT -abuna1985,2021-09-14T03:54:19Z,- abuna1985 assigned to issue: [2153](https://github.com/hackforla/website/issues/2153#issuecomment-904062831) at 2021-09-13 08:54 PM PDT -abuna1985,2021-09-14T04:45:33Z,- abuna1985 opened pull request: [2260](https://github.com/hackforla/website/pull/2260) at 2021-09-13 09:45 PM PDT -abuna1985,2021-09-14T06:05:40Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-918835019) at 2021-09-13 11:05 PM PDT -abuna1985,2021-09-16T18:50:58Z,- abuna1985 pull request merged: [2260](https://github.com/hackforla/website/pull/2260#event-5314481566) at 2021-09-16 11:50 AM PDT -abuna1985,2021-09-16T23:59:55Z,- abuna1985 submitted pull request review: [2281](https://github.com/hackforla/website/pull/2281#pullrequestreview-756942480) at 2021-09-16 04:59 PM PDT -abuna1985,2021-09-17T00:23:35Z,- abuna1985 submitted pull request review: [2281](https://github.com/hackforla/website/pull/2281#pullrequestreview-756951569) at 2021-09-16 05:23 PM PDT -abuna1985,2021-09-17T05:10:13Z,- abuna1985 submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-757067442) at 2021-09-16 10:10 PM PDT -abuna1985,2021-09-17T05:18:25Z,- abuna1985 submitted pull request review: [2281](https://github.com/hackforla/website/pull/2281#pullrequestreview-757070632) at 2021-09-16 10:18 PM PDT -abuna1985,2021-09-17T05:29:35Z,- abuna1985 submitted pull request review: [2281](https://github.com/hackforla/website/pull/2281#pullrequestreview-757075182) at 2021-09-16 10:29 PM PDT -abuna1985,2021-09-17T05:30:47Z,- abuna1985 closed issue by PR 2281: [2269](https://github.com/hackforla/website/issues/2269#event-5316734438) at 2021-09-16 10:30 PM PDT -abuna1985,2021-09-17T06:18:07Z,- abuna1985 assigned to issue: [2248](https://github.com/hackforla/website/issues/2248#issuecomment-917484121) at 2021-09-16 11:18 PM PDT -abuna1985,2021-09-19T06:41:17Z,- abuna1985 opened pull request: [2285](https://github.com/hackforla/website/pull/2285) at 2021-09-18 11:41 PM PDT -abuna1985,2021-09-19T07:18:09Z,- abuna1985 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-922427695) at 2021-09-19 12:18 AM PDT -abuna1985,2021-09-19T17:11:27Z,- abuna1985 commented on issue: [1901](https://github.com/hackforla/website/issues/1901#issuecomment-922506434) at 2021-09-19 10:11 AM PDT -abuna1985,2021-09-19T17:11:27Z,- abuna1985 closed issue as completed: [1901](https://github.com/hackforla/website/issues/1901#event-5324940697) at 2021-09-19 10:11 AM PDT -abuna1985,2021-09-19T17:23:04Z,- abuna1985 commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-922507906) at 2021-09-19 10:23 AM PDT -abuna1985,2021-09-19T18:28:12Z,- abuna1985 opened issue: [2286](https://github.com/hackforla/website/issues/2286) at 2021-09-19 11:28 AM PDT -abuna1985,2021-09-21T03:16:13Z,- abuna1985 pull request merged: [2285](https://github.com/hackforla/website/pull/2285#event-5332354553) at 2021-09-20 08:16 PM PDT -abuna1985,2021-09-21T04:57:19Z,- abuna1985 commented on issue: [2010](https://github.com/hackforla/website/issues/2010#issuecomment-923624218) at 2021-09-20 09:57 PM PDT -abuna1985,2021-09-22T23:47:57Z,- abuna1985 commented on issue: [2095](https://github.com/hackforla/website/issues/2095#issuecomment-925407772) at 2021-09-22 04:47 PM PDT -abuna1985,2021-09-23T01:05:47Z,- abuna1985 assigned to issue: [2255](https://github.com/hackforla/website/issues/2255) at 2021-09-22 06:05 PM PDT -abuna1985,2021-09-24T07:32:55Z,- abuna1985 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-926411273) at 2021-09-24 12:32 AM PDT -abuna1985,2021-09-24T07:38:49Z,- abuna1985 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-926414455) at 2021-09-24 12:38 AM PDT -abuna1985,2021-09-26T05:29:37Z,- abuna1985 commented on issue: [2296](https://github.com/hackforla/website/issues/2296#issuecomment-927235170) at 2021-09-25 10:29 PM PDT -abuna1985,2021-09-26T16:36:17Z,- abuna1985 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-927333893) at 2021-09-26 09:36 AM PDT -abuna1985,2021-09-26T19:00:27Z,- abuna1985 assigned to issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-921934656) at 2021-09-26 12:00 PM PDT -abuna1985,2021-09-29T07:13:41Z,- abuna1985 commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-929902303) at 2021-09-29 12:13 AM PDT -abuna1985,2021-10-03T02:15:26Z,- abuna1985 assigned to issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-927390901) at 2021-10-02 07:15 PM PDT -abuna1985,2021-10-03T02:15:55Z,- abuna1985 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-932849900) at 2021-10-02 07:15 PM PDT -abuna1985,2021-10-03T06:33:37Z,- abuna1985 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-932873306) at 2021-10-02 11:33 PM PDT -abuna1985,2021-10-03T06:36:26Z,- abuna1985 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-932873655) at 2021-10-02 11:36 PM PDT -abuna1985,2021-10-03T23:10:42Z,- abuna1985 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-933041543) at 2021-10-03 04:10 PM PDT -abuna1985,2021-10-04T18:34:53Z,- abuna1985 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-933748599) at 2021-10-04 11:34 AM PDT -abuna1985,2021-10-05T01:18:57Z,- abuna1985 commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-933982283) at 2021-10-04 06:18 PM PDT -abuna1985,2021-10-05T20:57:36Z,- abuna1985 submitted pull request review: [2324](https://github.com/hackforla/website/pull/2324#pullrequestreview-771977477) at 2021-10-05 01:57 PM PDT -abuna1985,2021-10-06T00:38:52Z,- abuna1985 opened issue: [2339](https://github.com/hackforla/website/issues/2339) at 2021-10-05 05:38 PM PDT -abuna1985,2021-10-06T00:42:27Z,- abuna1985 commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-935159785) at 2021-10-05 05:42 PM PDT -abuna1985,2021-10-06T03:53:07Z,- abuna1985 submitted pull request review: [2314](https://github.com/hackforla/website/pull/2314#pullrequestreview-772168859) at 2021-10-05 08:53 PM PDT -abuna1985,2021-10-06T03:55:24Z,- abuna1985 closed issue by PR 2314: [2045](https://github.com/hackforla/website/issues/2045#event-5415841520) at 2021-10-05 08:55 PM PDT -abuna1985,2021-10-06T08:49:25Z,- abuna1985 submitted pull request review: [2313](https://github.com/hackforla/website/pull/2313#pullrequestreview-772371537) at 2021-10-06 01:49 AM PDT -abuna1985,2021-10-08T19:04:58Z,- abuna1985 commented on issue: [2347](https://github.com/hackforla/website/issues/2347#issuecomment-939056090) at 2021-10-08 12:04 PM PDT -abuna1985,2021-10-10T03:00:59Z,- abuna1985 submitted pull request review: [2352](https://github.com/hackforla/website/pull/2352#pullrequestreview-775623604) at 2021-10-09 08:00 PM PDT -abuna1985,2021-10-10T03:50:32Z,- abuna1985 commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-939401083) at 2021-10-09 08:50 PM PDT -abuna1985,2021-10-10T03:56:26Z,- abuna1985 commented on issue: [2078](https://github.com/hackforla/website/issues/2078#issuecomment-939401571) at 2021-10-09 08:56 PM PDT -abuna1985,2021-10-10T06:09:00Z,- abuna1985 opened issue: [2355](https://github.com/hackforla/website/issues/2355) at 2021-10-09 11:09 PM PDT -abuna1985,2021-10-10T07:08:31Z,- abuna1985 opened issue: [2356](https://github.com/hackforla/website/issues/2356) at 2021-10-10 12:08 AM PDT -abuna1985,2021-10-10T07:10:19Z,- abuna1985 commented on issue: [2169](https://github.com/hackforla/website/issues/2169#issuecomment-939420369) at 2021-10-10 12:10 AM PDT -abuna1985,2021-10-10T08:47:18Z,- abuna1985 opened issue: [2357](https://github.com/hackforla/website/issues/2357) at 2021-10-10 01:47 AM PDT -abuna1985,2021-10-10T08:48:10Z,- abuna1985 commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-939432884) at 2021-10-10 01:48 AM PDT -abuna1985,2021-10-10T16:45:11Z,- abuna1985 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-939513972) at 2021-10-10 09:45 AM PDT -abuna1985,2021-10-11T06:22:38Z,- abuna1985 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-939719081) at 2021-10-10 11:22 PM PDT -abuna1985,2021-10-11T19:06:07Z,- abuna1985 opened issue: [2363](https://github.com/hackforla/website/issues/2363) at 2021-10-11 12:06 PM PDT -abuna1985,2021-10-11T19:06:25Z,- abuna1985 commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-940369337) at 2021-10-11 12:06 PM PDT -abuna1985,2021-10-11T19:08:40Z,- abuna1985 commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-940370994) at 2021-10-11 12:08 PM PDT -abuna1985,2021-10-12T05:11:50Z,- abuna1985 opened pull request: [2365](https://github.com/hackforla/website/pull/2365) at 2021-10-11 10:11 PM PDT -abuna1985,2021-10-12T05:18:49Z,- abuna1985 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-940672417) at 2021-10-11 10:18 PM PDT -abuna1985,2021-10-12T06:09:27Z,- abuna1985 submitted pull request review: [2338](https://github.com/hackforla/website/pull/2338#pullrequestreview-776920895) at 2021-10-11 11:09 PM PDT -abuna1985,2021-10-12T06:47:34Z,- abuna1985 submitted pull request review: [2340](https://github.com/hackforla/website/pull/2340#pullrequestreview-776946244) at 2021-10-11 11:47 PM PDT -abuna1985,2021-10-12T07:10:43Z,- abuna1985 submitted pull request review: [2313](https://github.com/hackforla/website/pull/2313#pullrequestreview-776965049) at 2021-10-12 12:10 AM PDT -abuna1985,2021-10-12T07:16:04Z,- abuna1985 closed issue by PR 2313: [2116](https://github.com/hackforla/website/issues/2116#event-5447439047) at 2021-10-12 12:16 AM PDT -abuna1985,2021-10-12T07:50:22Z,- abuna1985 submitted pull request review: [2324](https://github.com/hackforla/website/pull/2324#pullrequestreview-777002145) at 2021-10-12 12:50 AM PDT -abuna1985,2021-10-12T08:16:01Z,- abuna1985 assigned to issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-940370994) at 2021-10-12 01:16 AM PDT -abuna1985,2021-10-12T22:54:03Z,- abuna1985 opened issue: [2366](https://github.com/hackforla/website/issues/2366) at 2021-10-12 03:54 PM PDT -abuna1985,2021-10-12T22:57:55Z,- abuna1985 assigned to issue: [2366](https://github.com/hackforla/website/issues/2366#issuecomment-941710477) at 2021-10-12 03:57 PM PDT -abuna1985,2021-10-13T23:46:42Z,- abuna1985 submitted pull request review: [2340](https://github.com/hackforla/website/pull/2340#pullrequestreview-779181997) at 2021-10-13 04:46 PM PDT -abuna1985,2021-10-14T00:04:26Z,- abuna1985 submitted pull request review: [2324](https://github.com/hackforla/website/pull/2324#pullrequestreview-779188995) at 2021-10-13 05:04 PM PDT -abuna1985,2021-10-14T00:29:22Z,- abuna1985 submitted pull request review: [2352](https://github.com/hackforla/website/pull/2352#pullrequestreview-779198687) at 2021-10-13 05:29 PM PDT -abuna1985,2021-10-14T03:10:01Z,- abuna1985 pull request merged: [2365](https://github.com/hackforla/website/pull/2365#event-5460976936) at 2021-10-13 08:10 PM PDT -abuna1985,2021-10-16T08:13:45Z,- abuna1985 unassigned from issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-944050966) at 2021-10-16 01:13 AM PDT -abuna1985,2021-10-16T08:13:52Z,- abuna1985 assigned to issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-944050966) at 2021-10-16 01:13 AM PDT -abuna1985,2021-10-16T08:21:54Z,- abuna1985 commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-944879604) at 2021-10-16 01:21 AM PDT -abuna1985,2021-10-16T08:40:07Z,- abuna1985 commented on issue: [2366](https://github.com/hackforla/website/issues/2366#issuecomment-944881590) at 2021-10-16 01:40 AM PDT -abuna1985,2021-10-17T16:21:03Z,- abuna1985 assigned to issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902938080) at 2021-10-17 09:21 AM PDT -abuna1985,2021-10-17T16:21:07Z,- abuna1985 unassigned from issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902938080) at 2021-10-17 09:21 AM PDT -abuna1985,2021-10-17T16:27:10Z,- abuna1985 assigned to issue: [2347](https://github.com/hackforla/website/issues/2347#issuecomment-939056090) at 2021-10-17 09:27 AM PDT -abuna1985,2021-10-17T16:27:19Z,- abuna1985 unassigned from issue: [2347](https://github.com/hackforla/website/issues/2347#issuecomment-939056090) at 2021-10-17 09:27 AM PDT -abuna1985,2021-10-17T18:24:38Z,- abuna1985 submitted pull request review: [2369](https://github.com/hackforla/website/pull/2369#pullrequestreview-781477069) at 2021-10-17 11:24 AM PDT -abuna1985,2021-10-17T18:31:57Z,- abuna1985 closed issue by PR 2369: [2122](https://github.com/hackforla/website/issues/2122#event-5474575709) at 2021-10-17 11:31 AM PDT -abuna1985,2021-10-18T15:45:26Z,- abuna1985 opened pull request: [2371](https://github.com/hackforla/website/pull/2371) at 2021-10-18 08:45 AM PDT -abuna1985,2021-10-18T15:48:52Z,- abuna1985 pull request merged: [2371](https://github.com/hackforla/website/pull/2371#event-5479470454) at 2021-10-18 08:48 AM PDT -abuna1985,2021-10-18T15:50:58Z,- abuna1985 commented on pull request: [2371](https://github.com/hackforla/website/pull/2371#issuecomment-945916658) at 2021-10-18 08:50 AM PDT -abuna1985,2021-10-18T18:34:19Z,- abuna1985 opened pull request: [2372](https://github.com/hackforla/website/pull/2372) at 2021-10-18 11:34 AM PDT -abuna1985,2021-10-18T18:35:51Z,- abuna1985 closed issue by PR 2372: [2366](https://github.com/hackforla/website/issues/2366#event-5480460606) at 2021-10-18 11:35 AM PDT -abuna1985,2021-10-18T18:35:51Z,- abuna1985 pull request merged: [2372](https://github.com/hackforla/website/pull/2372#event-5480460621) at 2021-10-18 11:35 AM PDT -abuna1985,2021-10-18T18:37:26Z,- abuna1985 commented on pull request: [2372](https://github.com/hackforla/website/pull/2372#issuecomment-946056004) at 2021-10-18 11:37 AM PDT -abuna1985,2021-10-19T21:54:03Z,- abuna1985 commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-947134781) at 2021-10-19 02:54 PM PDT -abuna1985,2021-10-19T22:31:33Z,- abuna1985 opened pull request: [2376](https://github.com/hackforla/website/pull/2376) at 2021-10-19 03:31 PM PDT -abuna1985,2021-10-19T22:33:02Z,- abuna1985 pull request merged: [2376](https://github.com/hackforla/website/pull/2376#event-5488264619) at 2021-10-19 03:33 PM PDT -abuna1985,2021-10-19T22:35:45Z,- abuna1985 commented on pull request: [2376](https://github.com/hackforla/website/pull/2376#issuecomment-947156516) at 2021-10-19 03:35 PM PDT -abuna1985,2021-10-19T22:58:57Z,- abuna1985 submitted pull request review: [2340](https://github.com/hackforla/website/pull/2340#pullrequestreview-783858046) at 2021-10-19 03:58 PM PDT -abuna1985,2021-10-19T22:59:51Z,- abuna1985 closed issue by PR 2340: [2176](https://github.com/hackforla/website/issues/2176#event-5488342329) at 2021-10-19 03:59 PM PDT -abuna1985,2021-10-19T23:08:30Z,- abuna1985 submitted pull request review: [2352](https://github.com/hackforla/website/pull/2352#pullrequestreview-783862723) at 2021-10-19 04:08 PM PDT -abuna1985,2021-10-19T23:10:05Z,- abuna1985 closed issue by PR 2352: [2158](https://github.com/hackforla/website/issues/2158#event-5488373192) at 2021-10-19 04:10 PM PDT -abuna1985,2021-10-19T23:55:28Z,- abuna1985 submitted pull request review: [2358](https://github.com/hackforla/website/pull/2358#pullrequestreview-783882941) at 2021-10-19 04:55 PM PDT -abuna1985,2021-10-19T23:56:30Z,- abuna1985 assigned to issue: [2349](https://github.com/hackforla/website/issues/2349#issuecomment-939437923) at 2021-10-19 04:56 PM PDT -abuna1985,2021-10-20T00:00:20Z,- abuna1985 closed issue by PR 2358: [2349](https://github.com/hackforla/website/issues/2349#event-5488500286) at 2021-10-19 05:00 PM PDT -abuna1985,2021-10-20T00:04:05Z,- abuna1985 commented on issue: [2349](https://github.com/hackforla/website/issues/2349#issuecomment-947195701) at 2021-10-19 05:04 PM PDT -abuna1985,2021-10-20T00:07:59Z,- abuna1985 assigned to issue: [2346](https://github.com/hackforla/website/issues/2346#issuecomment-938222109) at 2021-10-19 05:07 PM PDT -abuna1985,2021-10-20T00:20:51Z,- abuna1985 submitted pull request review: [2359](https://github.com/hackforla/website/pull/2359#pullrequestreview-783893273) at 2021-10-19 05:20 PM PDT -abuna1985,2021-10-20T00:23:55Z,- abuna1985 closed issue by PR 2359: [2346](https://github.com/hackforla/website/issues/2346#event-5488566618) at 2021-10-19 05:23 PM PDT -abuna1985,2021-10-20T00:28:50Z,- abuna1985 commented on issue: [2346](https://github.com/hackforla/website/issues/2346#issuecomment-947206917) at 2021-10-19 05:28 PM PDT -abuna1985,2021-10-20T02:57:58Z,- abuna1985 assigned to issue: [2151](https://github.com/hackforla/website/issues/2151#issuecomment-907456020) at 2021-10-19 07:57 PM PDT -abuna1985,2021-10-20T03:17:01Z,- abuna1985 assigned to issue: [1893](https://github.com/hackforla/website/issues/1893) at 2021-10-19 08:17 PM PDT -abuna1985,2021-10-21T05:20:53Z,- abuna1985 commented on pull request: [2387](https://github.com/hackforla/website/pull/2387#issuecomment-948267398) at 2021-10-20 10:20 PM PDT -abuna1985,2021-10-21T05:26:32Z,- abuna1985 commented on pull request: [2379](https://github.com/hackforla/website/pull/2379#issuecomment-948269671) at 2021-10-20 10:26 PM PDT -abuna1985,2021-10-21T06:18:46Z,- abuna1985 commented on issue: [2366](https://github.com/hackforla/website/issues/2366#issuecomment-948293223) at 2021-10-20 11:18 PM PDT -abuna1985,2021-10-21T06:18:46Z,- abuna1985 reopened issue: [2366](https://github.com/hackforla/website/issues/2366#issuecomment-948293223) at 2021-10-20 11:18 PM PDT -abuna1985,2021-10-21T07:09:40Z,- abuna1985 commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-948321222) at 2021-10-21 12:09 AM PDT -abuna1985,2021-10-21T07:09:40Z,- abuna1985 closed issue by PR 2418: [2232](https://github.com/hackforla/website/issues/2232#event-5496377049) at 2021-10-21 12:09 AM PDT -abuna1985,2021-10-21T07:44:19Z,- abuna1985 commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-948345273) at 2021-10-21 12:44 AM PDT -abuna1985,2021-10-21T07:49:19Z,- abuna1985 commented on pull request: [2388](https://github.com/hackforla/website/pull/2388#issuecomment-948349028) at 2021-10-21 12:49 AM PDT -abuna1985,2021-10-23T04:27:53Z,- abuna1985 submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-787357891) at 2021-10-22 09:27 PM PDT -abuna1985,2021-10-23T04:28:26Z,- abuna1985 commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-950057685) at 2021-10-22 09:28 PM PDT -abuna1985,2021-10-23T04:47:33Z,- abuna1985 opened issue: [2391](https://github.com/hackforla/website/issues/2391) at 2021-10-22 09:47 PM PDT -abuna1985,2021-10-23T04:48:12Z,- abuna1985 commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-950061583) at 2021-10-22 09:48 PM PDT -abuna1985,2021-10-23T04:58:30Z,- abuna1985 opened issue: [2392](https://github.com/hackforla/website/issues/2392) at 2021-10-22 09:58 PM PDT -abuna1985,2021-10-23T04:59:26Z,- abuna1985 commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-950065089) at 2021-10-22 09:59 PM PDT -abuna1985,2021-10-23T05:01:45Z,- abuna1985 commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-950065559) at 2021-10-22 10:01 PM PDT -abuna1985,2021-10-23T05:48:56Z,- abuna1985 opened issue: [2393](https://github.com/hackforla/website/issues/2393) at 2021-10-22 10:48 PM PDT -abuna1985,2021-10-23T05:49:17Z,- abuna1985 commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-950090494) at 2021-10-22 10:49 PM PDT -abuna1985,2021-10-24T21:56:32Z,- abuna1985 commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-950401759) at 2021-10-24 02:56 PM PDT -abuna1985,2021-10-25T03:14:13Z,- abuna1985 commented on pull request: [2379](https://github.com/hackforla/website/pull/2379#issuecomment-950488380) at 2021-10-24 08:14 PM PDT -abuna1985,2021-10-25T03:15:25Z,- abuna1985 assigned to issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-937961584) at 2021-10-24 08:15 PM PDT -abuna1985,2021-10-25T03:18:05Z,- abuna1985 commented on issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-950490148) at 2021-10-24 08:18 PM PDT -abuna1985,2021-10-25T04:58:00Z,- abuna1985 commented on issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-950527660) at 2021-10-24 09:58 PM PDT -abuna1985,2021-10-25T10:34:43Z,- abuna1985 opened issue: [2396](https://github.com/hackforla/website/issues/2396) at 2021-10-25 03:34 AM PDT -abuna1985,2021-10-25T18:34:06Z,- abuna1985 opened issue: [2397](https://github.com/hackforla/website/issues/2397) at 2021-10-25 11:34 AM PDT -abuna1985,2021-10-25T18:35:02Z,- abuna1985 commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-951196464) at 2021-10-25 11:35 AM PDT -abuna1985,2021-10-25T20:27:05Z,- abuna1985 assigned to issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-950561100) at 2021-10-25 01:27 PM PDT -abuna1985,2021-10-25T20:29:47Z,- abuna1985 assigned to issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-947912865) at 2021-10-25 01:29 PM PDT -abuna1985,2021-10-25T20:31:57Z,- abuna1985 assigned to issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-949347959) at 2021-10-25 01:31 PM PDT -abuna1985,2021-10-26T07:41:50Z,- abuna1985 submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-788970301) at 2021-10-26 12:41 AM PDT -abuna1985,2021-10-26T08:07:51Z,- abuna1985 opened pull request: [2398](https://github.com/hackforla/website/pull/2398) at 2021-10-26 01:07 AM PDT -abuna1985,2021-10-26T08:26:41Z,- abuna1985 pull request merged: [2398](https://github.com/hackforla/website/pull/2398#event-5518791855) at 2021-10-26 01:26 AM PDT -abuna1985,2021-10-26T08:27:59Z,- abuna1985 commented on pull request: [2398](https://github.com/hackforla/website/pull/2398#issuecomment-951705830) at 2021-10-26 01:27 AM PDT -abuna1985,2021-10-26T09:50:00Z,- abuna1985 opened pull request: [2399](https://github.com/hackforla/website/pull/2399) at 2021-10-26 02:50 AM PDT -abuna1985,2021-10-26T09:53:24Z,- abuna1985 closed issue by PR 2399: [1893](https://github.com/hackforla/website/issues/1893#event-5519334890) at 2021-10-26 02:53 AM PDT -abuna1985,2021-10-26T09:53:24Z,- abuna1985 closed issue by PR 2399: [2151](https://github.com/hackforla/website/issues/2151#event-5519334902) at 2021-10-26 02:53 AM PDT -abuna1985,2021-10-26T09:53:24Z,- abuna1985 closed issue by PR 2372: [2366](https://github.com/hackforla/website/issues/2366#event-5519334876) at 2021-10-26 02:53 AM PDT -abuna1985,2021-10-26T09:53:24Z,- abuna1985 pull request merged: [2399](https://github.com/hackforla/website/pull/2399#event-5519334914) at 2021-10-26 02:53 AM PDT -abuna1985,2021-10-26T09:54:06Z,- abuna1985 commented on pull request: [2399](https://github.com/hackforla/website/pull/2399#issuecomment-951773788) at 2021-10-26 02:54 AM PDT -abuna1985,2021-10-27T05:27:13Z,- abuna1985 opened pull request: [2402](https://github.com/hackforla/website/pull/2402) at 2021-10-26 10:27 PM PDT -abuna1985,2021-10-27T05:31:39Z,- abuna1985 closed issue by PR 2402: [2364](https://github.com/hackforla/website/issues/2364#event-5524891238) at 2021-10-26 10:31 PM PDT -abuna1985,2021-10-27T05:31:39Z,- abuna1985 pull request merged: [2402](https://github.com/hackforla/website/pull/2402#event-5524891244) at 2021-10-26 10:31 PM PDT -abuna1985,2021-10-27T05:32:41Z,- abuna1985 commented on pull request: [2402](https://github.com/hackforla/website/pull/2402#issuecomment-952552378) at 2021-10-26 10:32 PM PDT -abuna1985,2021-10-27T06:05:41Z,- abuna1985 opened pull request: [2403](https://github.com/hackforla/website/pull/2403) at 2021-10-26 11:05 PM PDT -abuna1985,2021-10-27T06:09:29Z,- abuna1985 closed issue by PR 2403: [2386](https://github.com/hackforla/website/issues/2386#event-5525016960) at 2021-10-26 11:09 PM PDT -abuna1985,2021-10-27T06:09:29Z,- abuna1985 pull request merged: [2403](https://github.com/hackforla/website/pull/2403#event-5525016972) at 2021-10-26 11:09 PM PDT -abuna1985,2021-10-27T06:10:23Z,- abuna1985 commented on pull request: [2403](https://github.com/hackforla/website/pull/2403#issuecomment-952570532) at 2021-10-26 11:10 PM PDT -abuna1985,2021-10-27T21:26:33Z,- abuna1985 commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-953324604) at 2021-10-27 02:26 PM PDT -abuna1985,2021-10-27T21:26:36Z,- abuna1985 reopened issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-953324604) at 2021-10-27 02:26 PM PDT -abuna1985,2021-10-27T21:30:29Z,- abuna1985 commented on pull request: [2379](https://github.com/hackforla/website/pull/2379#issuecomment-953326856) at 2021-10-27 02:30 PM PDT -abuna1985,2021-10-27T21:41:10Z,- abuna1985 opened pull request: [2405](https://github.com/hackforla/website/pull/2405) at 2021-10-27 02:41 PM PDT -abuna1985,2021-10-27T21:52:08Z,- abuna1985 closed issue by PR 2402: [2364](https://github.com/hackforla/website/issues/2364#event-5530343669) at 2021-10-27 02:52 PM PDT -abuna1985,2021-10-27T21:52:08Z,- abuna1985 pull request merged: [2405](https://github.com/hackforla/website/pull/2405#event-5530343678) at 2021-10-27 02:52 PM PDT -abuna1985,2021-10-27T21:52:44Z,- abuna1985 commented on pull request: [2405](https://github.com/hackforla/website/pull/2405#issuecomment-953338748) at 2021-10-27 02:52 PM PDT -abuna1985,2021-10-27T22:03:37Z,- abuna1985 commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-953344381) at 2021-10-27 03:03 PM PDT -abuna1985,2021-10-27T22:27:46Z,- abuna1985 commented on pull request: [2404](https://github.com/hackforla/website/pull/2404#issuecomment-953357054) at 2021-10-27 03:27 PM PDT -abuna1985,2021-10-28T05:49:20Z,- abuna1985 submitted pull request review: [2375](https://github.com/hackforla/website/pull/2375#pullrequestreview-791396494) at 2021-10-27 10:49 PM PDT -abuna1985,2021-10-28T05:49:35Z,- abuna1985 closed issue by PR 2324: [2180](https://github.com/hackforla/website/issues/2180#event-5531628696) at 2021-10-27 10:49 PM PDT -abuna1985,2021-10-28T05:52:54Z,- abuna1985 unassigned from issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-950490148) at 2021-10-27 10:52 PM PDT -abuna1985,2021-10-28T05:54:57Z,- abuna1985 commented on issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-953524913) at 2021-10-27 10:54 PM PDT -abuna1985,2021-10-28T06:06:34Z,- abuna1985 submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-791406029) at 2021-10-27 11:06 PM PDT -abuna1985,2021-10-28T08:21:45Z,- abuna1985 commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-953615172) at 2021-10-28 01:21 AM PDT -abuna1985,2021-10-28T08:21:45Z,- abuna1985 closed issue as completed: [2363](https://github.com/hackforla/website/issues/2363#event-5532336296) at 2021-10-28 01:21 AM PDT -abuna1985,2021-10-28T09:37:25Z,- abuna1985 opened pull request: [2406](https://github.com/hackforla/website/pull/2406) at 2021-10-28 02:37 AM PDT -abuna1985,2021-10-28T09:38:52Z,- abuna1985 closed issue by PR 2406: [2289](https://github.com/hackforla/website/issues/2289#event-5532846553) at 2021-10-28 02:38 AM PDT -abuna1985,2021-10-28T09:38:52Z,- abuna1985 pull request merged: [2406](https://github.com/hackforla/website/pull/2406#event-5532846572) at 2021-10-28 02:38 AM PDT -abuna1985,2021-10-28T09:39:23Z,- abuna1985 commented on pull request: [2406](https://github.com/hackforla/website/pull/2406#issuecomment-953681603) at 2021-10-28 02:39 AM PDT -abuna1985,2021-10-28T18:25:47Z,- abuna1985 commented on issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-954093476) at 2021-10-28 11:25 AM PDT -abuna1985,2021-10-28T20:47:37Z,- abuna1985 submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-792412886) at 2021-10-28 01:47 PM PDT -abuna1985,2021-10-28T20:49:30Z,- abuna1985 submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-792414386) at 2021-10-28 01:49 PM PDT -abuna1985,2021-10-31T16:48:15Z,- abuna1985 commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-955748155) at 2021-10-31 09:48 AM PDT -abuna1985,2021-10-31T16:48:16Z,- abuna1985 reopened issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-955748155) at 2021-10-31 09:48 AM PDT -abuna1985,2021-10-31T16:48:25Z,- abuna1985 unassigned from issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-955748155) at 2021-10-31 09:48 AM PDT -abuna1985,2021-10-31T17:20:10Z,- abuna1985 commented on pull request: [2411](https://github.com/hackforla/website/pull/2411#issuecomment-955759730) at 2021-10-31 10:20 AM PDT -abuna1985,2021-10-31T23:41:37Z,- abuna1985 assigned to issue: [1987](https://github.com/hackforla/website/issues/1987#issuecomment-884328758) at 2021-10-31 04:41 PM PDT -abuna1985,2021-11-01T16:14:24Z,- abuna1985 opened pull request: [2413](https://github.com/hackforla/website/pull/2413) at 2021-11-01 09:14 AM PDT -abuna1985,2021-11-01T16:17:14Z,- abuna1985 closed issue by PR 2413: [1987](https://github.com/hackforla/website/issues/1987#event-5549987249) at 2021-11-01 09:17 AM PDT -abuna1985,2021-11-01T16:17:15Z,- abuna1985 pull request merged: [2413](https://github.com/hackforla/website/pull/2413#event-5549987261) at 2021-11-01 09:17 AM PDT -abuna1985,2021-11-01T16:17:48Z,- abuna1985 commented on pull request: [2413](https://github.com/hackforla/website/pull/2413#issuecomment-956375411) at 2021-11-01 09:17 AM PDT -abuna1985,2021-11-01T16:33:05Z,- abuna1985 unassigned from issue: [1987](https://github.com/hackforla/website/issues/1987#event-5549987249) at 2021-11-01 09:33 AM PDT -abuna1985,2021-11-01T16:41:12Z,- abuna1985 opened pull request: [2414](https://github.com/hackforla/website/pull/2414) at 2021-11-01 09:41 AM PDT -abuna1985,2021-11-01T16:42:39Z,- abuna1985 closed issue by PR 2406: [2289](https://github.com/hackforla/website/issues/2289#event-5550134069) at 2021-11-01 09:42 AM PDT -abuna1985,2021-11-01T16:42:40Z,- abuna1985 pull request merged: [2414](https://github.com/hackforla/website/pull/2414#event-5550134076) at 2021-11-01 09:42 AM PDT -abuna1985,2021-11-01T16:43:12Z,- abuna1985 commented on pull request: [2414](https://github.com/hackforla/website/pull/2414#issuecomment-956395490) at 2021-11-01 09:43 AM PDT -abuna1985,2021-11-01T16:47:03Z,- abuna1985 unassigned from issue: [2289](https://github.com/hackforla/website/issues/2289#event-5550134069) at 2021-11-01 09:47 AM PDT -abuna1985,2021-11-01T17:26:40Z,- abuna1985 opened pull request: [2415](https://github.com/hackforla/website/pull/2415) at 2021-11-01 10:26 AM PDT -abuna1985,2021-11-01T17:29:13Z,- abuna1985 closed issue by PR 2402: [2364](https://github.com/hackforla/website/issues/2364#event-5550396977) at 2021-11-01 10:29 AM PDT -abuna1985,2021-11-01T17:29:13Z,- abuna1985 pull request merged: [2415](https://github.com/hackforla/website/pull/2415#event-5550397003) at 2021-11-01 10:29 AM PDT -abuna1985,2021-11-01T17:29:45Z,- abuna1985 commented on pull request: [2415](https://github.com/hackforla/website/pull/2415#issuecomment-956434024) at 2021-11-01 10:29 AM PDT -abuna1985,2021-11-01T17:31:05Z,- abuna1985 unassigned from issue: [2364](https://github.com/hackforla/website/issues/2364#event-5550396977) at 2021-11-01 10:31 AM PDT -abuna1985,2021-11-01T17:57:45Z,- abuna1985 opened pull request: [2416](https://github.com/hackforla/website/pull/2416) at 2021-11-01 10:57 AM PDT -abuna1985,2021-11-01T18:01:01Z,- abuna1985 closed issue by PR 2403: [2386](https://github.com/hackforla/website/issues/2386#event-5550564018) at 2021-11-01 11:01 AM PDT -abuna1985,2021-11-01T18:01:01Z,- abuna1985 pull request merged: [2416](https://github.com/hackforla/website/pull/2416#event-5550564044) at 2021-11-01 11:01 AM PDT -abuna1985,2021-11-01T18:01:29Z,- abuna1985 commented on pull request: [2416](https://github.com/hackforla/website/pull/2416#issuecomment-956456443) at 2021-11-01 11:01 AM PDT -abuna1985,2021-11-01T18:01:50Z,- abuna1985 unassigned from issue: [2386](https://github.com/hackforla/website/issues/2386#event-5550564018) at 2021-11-01 11:01 AM PDT -abuna1985,2021-11-01T18:18:59Z,- abuna1985 opened issue: [2417](https://github.com/hackforla/website/issues/2417) at 2021-11-01 11:18 AM PDT -abuna1985,2021-11-01T19:37:39Z,- abuna1985 opened pull request: [2418](https://github.com/hackforla/website/pull/2418) at 2021-11-01 12:37 PM PDT -abuna1985,2021-11-01T19:39:58Z,- abuna1985 closed issue by PR 2418: [2232](https://github.com/hackforla/website/issues/2232#event-5551058529) at 2021-11-01 12:39 PM PDT -abuna1985,2021-11-01T19:39:58Z,- abuna1985 pull request merged: [2418](https://github.com/hackforla/website/pull/2418#event-5551058544) at 2021-11-01 12:39 PM PDT -abuna1985,2021-11-01T19:40:32Z,- abuna1985 commented on pull request: [2418](https://github.com/hackforla/website/pull/2418#issuecomment-956532087) at 2021-11-01 12:40 PM PDT -abuna1985,2021-11-01T19:41:47Z,- abuna1985 unassigned from issue: [2232](https://github.com/hackforla/website/issues/2232#event-5551058529) at 2021-11-01 12:41 PM PDT -abuna1985,2021-11-01T19:43:38Z,- abuna1985 commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-956534052) at 2021-11-01 12:43 PM PDT -abuna1985,2022-01-08T21:23:17Z,- abuna1985 assigned to issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-996913659) at 2022-01-08 01:23 PM PST -abuna1985,2022-01-09T10:24:49Z,- abuna1985 opened pull request: [2678](https://github.com/hackforla/website/pull/2678) at 2022-01-09 02:24 AM PST -abuna1985,2022-01-13T03:18:18Z,- abuna1985 pull request merged: [2678](https://github.com/hackforla/website/pull/2678#event-5884592534) at 2022-01-12 07:18 PM PST -abuna1985,2022-01-18T22:37:34Z,- abuna1985 assigned to issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-996913257) at 2022-01-18 02:37 PM PST -abuna1985,2022-02-12T20:04:15Z,- abuna1985 unassigned from issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1037437676) at 2022-02-12 12:04 PM PST -aconstas,6339,SKILLS ISSUE -aconstas,2024-02-21T03:40:11Z,- aconstas opened issue: [6339](https://github.com/hackforla/website/issues/6339) at 2024-02-20 07:40 PM PST -aconstas,2024-02-21T04:13:09Z,- aconstas assigned to issue: [6339](https://github.com/hackforla/website/issues/6339) at 2024-02-20 08:13 PM PST -aconstas,2024-02-21T19:01:07Z,- aconstas assigned to issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1949258541) at 2024-02-21 11:01 AM PST -aconstas,2024-02-21T19:07:21Z,- aconstas commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1957721459) at 2024-02-21 11:07 AM PST -aconstas,2024-02-21T19:53:23Z,- aconstas commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-1957792892) at 2024-02-21 11:53 AM PST -aconstas,2024-02-21T20:45:32Z,- aconstas opened pull request: [6352](https://github.com/hackforla/website/pull/6352) at 2024-02-21 12:45 PM PST -aconstas,2024-02-22T23:23:39Z,- aconstas assigned to issue: [5711](https://github.com/hackforla/website/issues/5711#issuecomment-1841526532) at 2024-02-22 03:23 PM PST -aconstas,2024-02-22T23:27:48Z,- aconstas commented on issue: [5711](https://github.com/hackforla/website/issues/5711#issuecomment-1960506989) at 2024-02-22 03:27 PM PST -aconstas,2024-02-23T00:01:02Z,- aconstas opened pull request: [6360](https://github.com/hackforla/website/pull/6360) at 2024-02-22 04:01 PM PST -aconstas,2024-02-23T05:47:04Z,- aconstas pull request merged: [6352](https://github.com/hackforla/website/pull/6352#event-11899591616) at 2024-02-22 09:47 PM PST -aconstas,2024-02-24T02:48:19Z,- aconstas commented on pull request: [6360](https://github.com/hackforla/website/pull/6360#issuecomment-1962225982) at 2024-02-23 06:48 PM PST -aconstas,2024-02-24T19:16:11Z,- aconstas commented on pull request: [6360](https://github.com/hackforla/website/pull/6360#issuecomment-1962585550) at 2024-02-24 11:16 AM PST -aconstas,2024-02-25T12:39:23Z,- aconstas pull request merged: [6360](https://github.com/hackforla/website/pull/6360#event-11912915441) at 2024-02-25 04:39 AM PST -aconstas,2024-02-25T22:31:28Z,- aconstas assigned to issue: [6199](https://github.com/hackforla/website/issues/6199) at 2024-02-25 02:31 PM PST -aconstas,2024-02-25T22:34:09Z,- aconstas commented on issue: [6199](https://github.com/hackforla/website/issues/6199#issuecomment-1963084798) at 2024-02-25 02:34 PM PST -aconstas,2024-02-25T22:53:13Z,- aconstas opened pull request: [6374](https://github.com/hackforla/website/pull/6374) at 2024-02-25 02:53 PM PST -aconstas,2024-02-26T18:08:18Z,- aconstas commented on pull request: [6379](https://github.com/hackforla/website/pull/6379#issuecomment-1964809599) at 2024-02-26 10:08 AM PST -aconstas,2024-02-26T18:31:06Z,- aconstas submitted pull request review: [6379](https://github.com/hackforla/website/pull/6379#pullrequestreview-1901698322) at 2024-02-26 10:31 AM PST -aconstas,2024-02-29T03:49:31Z,- aconstas submitted pull request review: [6390](https://github.com/hackforla/website/pull/6390#pullrequestreview-1907876631) at 2024-02-28 07:49 PM PST -aconstas,2024-03-01T07:39:42Z,- aconstas pull request merged: [6374](https://github.com/hackforla/website/pull/6374#event-11975791551) at 2024-02-29 11:39 PM PST -aconstas,2024-03-15T15:22:03Z,- aconstas commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-1999896935) at 2024-03-15 08:22 AM PDT -aconstas,2024-04-27T00:45:19Z,- aconstas closed issue as completed: [6339](https://github.com/hackforla/website/issues/6339#event-12629471312) at 2024-04-26 05:45 PM PDT -acterin,7828,SKILLS ISSUE -acterin,2025-01-14T04:22:04Z,- acterin opened issue: [7828](https://github.com/hackforla/website/issues/7828) at 2025-01-13 08:22 PM PST -acterin,2025-01-14T04:22:56Z,- acterin assigned to issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2588916107) at 2025-01-13 08:22 PM PST -acterin,2025-01-14T04:47:39Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2588957527) at 2025-01-13 08:47 PM PST -acterin,2025-01-14T04:53:02Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2588975061) at 2025-01-13 08:53 PM PST -acterin,2025-01-22T06:31:33Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2606405655) at 2025-01-21 10:31 PM PST -acterin,2025-01-22T07:19:26Z,- acterin assigned to issue: [7753](https://github.com/hackforla/website/issues/7753) at 2025-01-21 11:19 PM PST -acterin,2025-01-22T07:23:49Z,- acterin commented on issue: [7753](https://github.com/hackforla/website/issues/7753#issuecomment-2606475814) at 2025-01-21 11:23 PM PST -acterin,2025-01-27T08:14:15Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2615086401) at 2025-01-27 12:14 AM PST -acterin,2025-01-27T08:25:27Z,- acterin commented on issue: [7753](https://github.com/hackforla/website/issues/7753#issuecomment-2615107273) at 2025-01-27 12:25 AM PST -acterin,2025-01-27T08:27:07Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2615110533) at 2025-01-27 12:27 AM PST -acterin,2025-01-29T06:02:37Z,- acterin opened pull request: [7862](https://github.com/hackforla/website/pull/7862) at 2025-01-28 10:02 PM PST -acterin,2025-01-29T06:56:22Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2620849220) at 2025-01-28 10:56 PM PST -acterin,2025-01-29T07:19:24Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2620878867) at 2025-01-28 11:19 PM PST -acterin,2025-01-29T07:26:06Z,- acterin commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2620886459) at 2025-01-28 11:26 PM PST -acterin,2025-01-31T04:50:23Z,- acterin assigned to issue: [7855](https://github.com/hackforla/website/issues/7855) at 2025-01-30 08:50 PM PST -acterin,2025-01-31T04:50:37Z,- acterin unassigned from issue: [7855](https://github.com/hackforla/website/issues/7855#issuecomment-2626294989) at 2025-01-30 08:50 PM PST -acterin,2025-01-31T04:55:37Z,- acterin commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2626300106) at 2025-01-30 08:55 PM PST -acterin,2025-02-17T00:52:22Z,- acterin pull request merged: [7862](https://github.com/hackforla/website/pull/7862#event-16325890476) at 2025-02-16 04:52 PM PST -acterin,2025-02-17T03:12:28Z,- acterin commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2661867105) at 2025-02-16 07:12 PM PST -acterin,2025-02-17T06:22:37Z,- acterin commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2662165398) at 2025-02-16 10:22 PM PST -acterin,2025-02-17T07:10:05Z,- acterin submitted pull request review: [7906](https://github.com/hackforla/website/pull/7906#pullrequestreview-2620195122) at 2025-02-16 11:10 PM PST -acterin,2025-02-17T07:29:31Z,- acterin assigned to issue: [7876](https://github.com/hackforla/website/issues/7876) at 2025-02-16 11:29 PM PST -acterin,2025-02-18T10:21:21Z,- acterin unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2662269756) at 2025-02-18 02:21 AM PST -Adaakal,3782,SKILLS ISSUE -Adaakal,2023-01-04T04:46:33Z,- Adaakal opened issue: [3782](https://github.com/hackforla/website/issues/3782) at 2023-01-03 08:46 PM PST -Adaakal,2023-01-05T04:24:08Z,- Adaakal assigned to issue: [3782](https://github.com/hackforla/website/issues/3782) at 2023-01-04 08:24 PM PST -Adaakal,2023-01-06T03:57:10Z,- Adaakal assigned to issue: [2863](https://github.com/hackforla/website/issues/2863#issuecomment-1048465499) at 2023-01-05 07:57 PM PST -Adaakal,2023-01-06T04:01:08Z,- Adaakal commented on issue: [2863](https://github.com/hackforla/website/issues/2863#issuecomment-1373113594) at 2023-01-05 08:01 PM PST -Adaakal,2023-01-06T23:23:01Z,- Adaakal opened pull request: [3798](https://github.com/hackforla/website/pull/3798) at 2023-01-06 03:23 PM PST -Adaakal,2023-01-10T17:17:01Z,- Adaakal commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1377593580) at 2023-01-10 09:17 AM PST -Adaakal,2023-01-11T00:07:41Z,- Adaakal pull request merged: [3798](https://github.com/hackforla/website/pull/3798#event-8196905286) at 2023-01-10 04:07 PM PST -Adaakal,2023-01-18T03:08:21Z,- Adaakal commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1386415123) at 2023-01-17 07:08 PM PST -Adaakal,2023-01-18T03:30:59Z,- Adaakal assigned to issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-829718468) at 2023-01-17 07:30 PM PST -Adaakal,2023-01-18T04:21:09Z,- Adaakal unassigned from issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1386434200) at 2023-01-17 08:21 PM PST -Adaakal,2023-01-18T04:22:13Z,- Adaakal assigned to issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2023-01-17 08:22 PM PST -Adaakal,2023-01-18T04:27:20Z,- Adaakal commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1386470129) at 2023-01-17 08:27 PM PST -Adaakal,2023-01-19T18:49:57Z,- Adaakal commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1397449627) at 2023-01-19 10:49 AM PST -Adaakal,2023-01-19T18:52:42Z,- Adaakal commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1397452563) at 2023-01-19 10:52 AM PST -Adaakal,2023-01-19T18:54:22Z,- Adaakal commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1397454619) at 2023-01-19 10:54 AM PST -Adaakal,2023-01-19T19:44:58Z,- Adaakal submitted pull request review: [3811](https://github.com/hackforla/website/pull/3811#pullrequestreview-1262515023) at 2023-01-19 11:44 AM PST -Adaakal,2023-01-22T18:14:56Z,- Adaakal unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1397449627) at 2023-01-22 10:14 AM PST -Adaakal,2023-01-22T18:17:38Z,- Adaakal assigned to issue: [3383](https://github.com/hackforla/website/issues/3383) at 2023-01-22 10:17 AM PST -Adaakal,2023-01-28T23:04:15Z,- Adaakal commented on issue: [3383](https://github.com/hackforla/website/issues/3383#issuecomment-1407507173) at 2023-01-28 03:04 PM PST -Adaakal,2023-01-29T03:00:29Z,- Adaakal opened pull request: [3888](https://github.com/hackforla/website/pull/3888) at 2023-01-28 07:00 PM PST -Adaakal,2023-02-03T06:32:13Z,- Adaakal commented on pull request: [3888](https://github.com/hackforla/website/pull/3888#issuecomment-1415119370) at 2023-02-02 10:32 PM PST -Adaakal,2023-02-03T19:47:30Z,- Adaakal commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1416328238) at 2023-02-03 11:47 AM PST -Adaakal,2023-02-04T00:31:32Z,- Adaakal pull request merged: [3888](https://github.com/hackforla/website/pull/3888#event-8437337771) at 2023-02-03 04:31 PM PST -Adaakal,2023-02-06T21:34:26Z,- Adaakal assigned to issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1290249941) at 2023-02-06 01:34 PM PST -Adaakal,2023-02-06T21:39:47Z,- Adaakal commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1419800533) at 2023-02-06 01:39 PM PST -Adaakal,2023-02-06T21:49:21Z,- Adaakal commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1419816549) at 2023-02-06 01:49 PM PST -Adaakal,2023-02-06T21:50:14Z,- Adaakal commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1419818118) at 2023-02-06 01:50 PM PST -Adaakal,2023-02-06T21:50:18Z,- Adaakal closed issue as completed: [3782](https://github.com/hackforla/website/issues/3782#event-8452150061) at 2023-02-06 01:50 PM PST -Adaakal,2023-02-10T20:29:49Z,- Adaakal commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1426308459) at 2023-02-10 12:29 PM PST -Adaakal,2023-02-10T21:52:46Z,- Adaakal commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1426387958) at 2023-02-10 01:52 PM PST -Adaakal,2023-02-10T22:05:37Z,- Adaakal commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1426400372) at 2023-02-10 02:05 PM PST -Adaakal,2023-02-12T18:28:55Z,- Adaakal unassigned from issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1426400372) at 2023-02-12 10:28 AM PST -Adaakal,2023-02-12T19:06:34Z,- Adaakal assigned to issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1421940683) at 2023-02-12 11:06 AM PST -Adaakal,2023-02-12T19:09:06Z,- Adaakal commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1427109306) at 2023-02-12 11:09 AM PST -Adaakal,2023-02-14T23:47:56Z,- Adaakal commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1430539973) at 2023-02-14 03:47 PM PST -Adaakal,2023-02-17T03:03:32Z,- Adaakal commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1434031305) at 2023-02-16 07:03 PM PST -Adaakal,2023-02-20T23:06:12Z,- Adaakal opened pull request: [4017](https://github.com/hackforla/website/pull/4017) at 2023-02-20 03:06 PM PST -Adaakal,2023-02-21T18:40:03Z,- Adaakal commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1438935497) at 2023-02-21 10:40 AM PST -Adaakal,2023-02-24T04:43:03Z,- Adaakal commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1442802112) at 2023-02-23 08:43 PM PST -Adaakal,2023-02-24T19:35:02Z,- Adaakal commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1444329914) at 2023-02-24 11:35 AM PST -Adaakal,2023-03-01T03:28:05Z,- Adaakal commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1449278579) at 2023-02-28 07:28 PM PST -Adaakal,2023-03-07T17:25:55Z,- Adaakal commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1458554557) at 2023-03-07 09:25 AM PST -Adaakal,2023-03-07T19:00:04Z,- Adaakal commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1458673296) at 2023-03-07 11:00 AM PST -Adaakal,2023-03-13T22:50:25Z,- Adaakal pull request merged: [4017](https://github.com/hackforla/website/pull/4017#event-8737227490) at 2023-03-13 03:50 PM PDT -Adaakal,2023-03-24T12:02:46Z,- Adaakal assigned to issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1475143698) at 2023-03-24 05:02 AM PDT -Adaakal,2023-03-24T12:03:16Z,- Adaakal assigned to issue: [4239](https://github.com/hackforla/website/issues/4239) at 2023-03-24 05:03 AM PDT -Adaakal,2023-03-24T12:05:29Z,- Adaakal commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1482695631) at 2023-03-24 05:05 AM PDT -Adaakal,2023-03-26T23:39:50Z,- Adaakal unassigned from issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1484276572) at 2023-03-26 04:39 PM PDT -Adaakal,2023-03-26T23:41:49Z,- Adaakal unassigned from issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1484277046) at 2023-03-26 04:41 PM PDT -Adaakal,2023-03-27T19:29:11Z,- Adaakal commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1485746615) at 2023-03-27 12:29 PM PDT -Adaakal,2023-03-27T19:36:53Z,- Adaakal assigned to issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1484271417) at 2023-03-27 12:36 PM PDT -Adaakal,2023-03-27T19:43:29Z,- Adaakal commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1485763134) at 2023-03-27 12:43 PM PDT -Adaakal,2023-03-27T23:22:47Z,- Adaakal opened pull request: [4297](https://github.com/hackforla/website/pull/4297) at 2023-03-27 04:22 PM PDT -Adaakal,2023-03-30T19:42:57Z,- Adaakal commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1490842390) at 2023-03-30 12:42 PM PDT -Adaakal,2023-03-30T19:50:23Z,- Adaakal commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1490855113) at 2023-03-30 12:50 PM PDT -Adaakal,2023-04-03T22:11:05Z,- Adaakal commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1495052986) at 2023-04-03 03:11 PM PDT -Adaakal,2023-04-03T22:11:30Z,- Adaakal unassigned from issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1495052986) at 2023-04-03 03:11 PM PDT -Adaakal,2023-04-13T03:03:07Z,- Adaakal pull request closed w/o merging: [4297](https://github.com/hackforla/website/pull/4297#event-8991995531) at 2023-04-12 08:03 PM PDT -Adaakal,2023-04-24T18:04:54Z,- Adaakal commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1520607115) at 2023-04-24 11:04 AM PDT -Adaakal,2023-05-16T13:49:45Z,- Adaakal commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1549713160) at 2023-05-16 06:49 AM PDT -adamkendis,2020-07-31T01:59:20Z,- adamkendis commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666869740) at 2020-07-30 06:59 PM PDT -Adastros,3685,SKILLS ISSUE -Adastros,2022-11-01T02:38:48Z,- Adastros opened issue: [3685](https://github.com/hackforla/website/issues/3685) at 2022-10-31 07:38 PM PDT -Adastros,2022-11-02T03:54:49Z,- Adastros assigned to issue: [3685](https://github.com/hackforla/website/issues/3685) at 2022-11-01 08:54 PM PDT -Adastros,2022-11-05T03:39:15Z,- Adastros assigned to issue: [2858](https://github.com/hackforla/website/issues/2858#issuecomment-1048436585) at 2022-11-04 07:39 PM PST -Adastros,2022-11-05T04:07:28Z,- Adastros commented on issue: [2858](https://github.com/hackforla/website/issues/2858#issuecomment-1304396830) at 2022-11-04 08:07 PM PST -Adastros,2022-11-05T05:07:47Z,- Adastros opened pull request: [3695](https://github.com/hackforla/website/pull/3695) at 2022-11-04 09:07 PM PST -Adastros,2022-11-07T20:08:21Z,- Adastros pull request merged: [3695](https://github.com/hackforla/website/pull/3695#event-7755951560) at 2022-11-07 12:08 PM PST -Adastros,2022-11-08T04:44:10Z,- Adastros commented on issue: [3685](https://github.com/hackforla/website/issues/3685#issuecomment-1306627467) at 2022-11-07 08:44 PM PST -Adastros,2022-11-08T05:53:18Z,- Adastros assigned to issue: [3207](https://github.com/hackforla/website/issues/3207#issuecomment-1145822417) at 2022-11-07 09:53 PM PST -Adastros,2022-11-08T05:55:55Z,- Adastros commented on issue: [3207](https://github.com/hackforla/website/issues/3207#issuecomment-1306674318) at 2022-11-07 09:55 PM PST -Adastros,2022-11-08T06:52:17Z,- Adastros opened pull request: [3699](https://github.com/hackforla/website/pull/3699) at 2022-11-07 10:52 PM PST -Adastros,2022-11-10T05:26:47Z,- Adastros commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1309795869) at 2022-11-09 09:26 PM PST -Adastros,2022-11-10T06:17:47Z,- Adastros submitted pull request review: [3703](https://github.com/hackforla/website/pull/3703#pullrequestreview-1175131208) at 2022-11-09 10:17 PM PST -Adastros,2022-11-10T18:48:38Z,- Adastros pull request merged: [3699](https://github.com/hackforla/website/pull/3699#event-7786132153) at 2022-11-10 10:48 AM PST -Adastros,2022-11-11T06:33:39Z,- Adastros assigned to issue: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-11-10 10:33 PM PST -Adastros,2022-11-11T06:39:22Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1311289580) at 2022-11-10 10:39 PM PST -Adastros,2022-11-14T02:20:20Z,- Adastros commented on issue: [3685](https://github.com/hackforla/website/issues/3685#issuecomment-1312951717) at 2022-11-13 06:20 PM PST -Adastros,2022-11-14T02:23:06Z,- Adastros commented on issue: [3685](https://github.com/hackforla/website/issues/3685#issuecomment-1312953077) at 2022-11-13 06:23 PM PST -Adastros,2022-11-14T02:23:06Z,- Adastros closed issue as completed: [3685](https://github.com/hackforla/website/issues/3685#event-7799822610) at 2022-11-13 06:23 PM PST -Adastros,2022-11-14T04:54:24Z,- Adastros opened pull request: [3717](https://github.com/hackforla/website/pull/3717) at 2022-11-13 08:54 PM PST -Adastros,2022-11-15T05:54:14Z,- Adastros commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314809373) at 2022-11-14 09:54 PM PST -Adastros,2022-11-15T08:03:41Z,- Adastros opened issue: [3720](https://github.com/hackforla/website/issues/3720) at 2022-11-15 12:03 AM PST -Adastros,2022-11-17T00:32:47Z,- Adastros pull request merged: [3717](https://github.com/hackforla/website/pull/3717#event-7829148008) at 2022-11-16 04:32 PM PST -Adastros,2022-11-17T05:05:14Z,- Adastros commented on pull request: [3728](https://github.com/hackforla/website/pull/3728#issuecomment-1318082556) at 2022-11-16 09:05 PM PST -Adastros,2022-11-17T06:40:21Z,- Adastros submitted pull request review: [3728](https://github.com/hackforla/website/pull/3728#pullrequestreview-1183743795) at 2022-11-16 10:40 PM PST -Adastros,2022-11-18T04:55:21Z,- Adastros commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319545153) at 2022-11-17 08:55 PM PST -Adastros,2022-11-18T07:33:49Z,- Adastros submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1185611364) at 2022-11-17 11:33 PM PST -Adastros,2022-11-19T06:29:04Z,- Adastros assigned to issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1281492060) at 2022-11-18 10:29 PM PST -Adastros,2022-11-19T06:31:45Z,- Adastros commented on issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1320816199) at 2022-11-18 10:31 PM PST -Adastros,2022-11-22T07:24:32Z,- Adastros opened pull request: [3741](https://github.com/hackforla/website/pull/3741) at 2022-11-21 11:24 PM PST -Adastros,2022-11-22T07:31:40Z,- Adastros commented on pull request: [3737](https://github.com/hackforla/website/pull/3737#issuecomment-1323228621) at 2022-11-21 11:31 PM PST -Adastros,2022-11-22T08:09:09Z,- Adastros submitted pull request review: [3737](https://github.com/hackforla/website/pull/3737#pullrequestreview-1189555320) at 2022-11-22 12:09 AM PST -Adastros,2022-11-22T08:11:08Z,- Adastros commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1323269285) at 2022-11-22 12:11 AM PST -Adastros,2022-11-23T07:05:30Z,- Adastros submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1191133282) at 2022-11-22 11:05 PM PST -Adastros,2022-11-27T08:40:04Z,- Adastros commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1328197035) at 2022-11-27 12:40 AM PST -Adastros,2022-11-27T20:13:27Z,- Adastros unassigned from issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328329813) at 2022-11-27 12:13 PM PST -Adastros,2022-11-27T20:28:53Z,- Adastros assigned to issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1327102396) at 2022-11-27 12:28 PM PST -Adastros,2022-11-27T20:29:27Z,- Adastros unassigned from issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333414) at 2022-11-27 12:29 PM PST -Adastros,2022-11-29T02:39:07Z,- Adastros pull request merged: [3741](https://github.com/hackforla/website/pull/3741#event-7908411412) at 2022-11-28 06:39 PM PST -Adastros,2022-11-29T06:35:41Z,- Adastros commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1330152281) at 2022-11-28 10:35 PM PST -Adastros,2022-11-29T06:37:11Z,- Adastros commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1330153232) at 2022-11-28 10:37 PM PST -Adastros,2022-11-29T06:39:50Z,- Adastros commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1330154887) at 2022-11-28 10:39 PM PST -Adastros,2022-11-29T06:42:48Z,- Adastros assigned to issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328329813) at 2022-11-28 10:42 PM PST -Adastros,2022-11-29T06:44:26Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1330157642) at 2022-11-28 10:44 PM PST -Adastros,2022-11-30T05:33:41Z,- Adastros submitted pull request review: [3753](https://github.com/hackforla/website/pull/3753#pullrequestreview-1198706982) at 2022-11-29 09:33 PM PST -Adastros,2022-12-01T07:26:28Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1333322527) at 2022-11-30 11:26 PM PST -Adastros,2022-12-06T06:34:54Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1338858231) at 2022-12-05 10:34 PM PST -Adastros,2023-01-10T06:25:57Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1376790694) at 2023-01-09 10:25 PM PST -Adastros,2023-01-11T06:47:39Z,- Adastros opened pull request: [3809](https://github.com/hackforla/website/pull/3809) at 2023-01-10 10:47 PM PST -Adastros,2023-01-13T18:58:25Z,- Adastros pull request merged: [3809](https://github.com/hackforla/website/pull/3809#event-8223594916) at 2023-01-13 10:58 AM PST -Adastros,2023-01-14T23:45:32Z,- Adastros commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1382965772) at 2023-01-14 03:45 PM PST -Adastros,2023-01-14T23:58:15Z,- Adastros commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1382967986) at 2023-01-14 03:58 PM PST -Adastros,2023-01-15T02:45:19Z,- Adastros submitted pull request review: [3810](https://github.com/hackforla/website/pull/3810#pullrequestreview-1249097256) at 2023-01-14 06:45 PM PST -Adastros,2023-01-15T22:17:26Z,- Adastros commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1383267754) at 2023-01-15 02:17 PM PST -Adastros,2023-01-17T06:30:25Z,- Adastros submitted pull request review: [3810](https://github.com/hackforla/website/pull/3810#pullrequestreview-1250946199) at 2023-01-16 10:30 PM PST -Adastros,2023-01-17T06:35:59Z,- Adastros commented on pull request: [3815](https://github.com/hackforla/website/pull/3815#issuecomment-1384899484) at 2023-01-16 10:35 PM PST -Adastros,2023-01-17T07:29:11Z,- Adastros submitted pull request review: [3815](https://github.com/hackforla/website/pull/3815#pullrequestreview-1251023520) at 2023-01-16 11:29 PM PST -Adastros,2023-01-19T04:14:15Z,- Adastros commented on pull request: [3838](https://github.com/hackforla/website/pull/3838#issuecomment-1396417461) at 2023-01-18 08:14 PM PST -Adastros,2023-01-19T06:50:00Z,- Adastros submitted pull request review: [3838](https://github.com/hackforla/website/pull/3838#pullrequestreview-1261201204) at 2023-01-18 10:50 PM PST -Adastros,2023-01-20T06:52:35Z,- Adastros submitted pull request review: [3838](https://github.com/hackforla/website/pull/3838#pullrequestreview-1263038905) at 2023-01-19 10:52 PM PST -Adastros,2023-01-24T05:34:42Z,- Adastros commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1401418956) at 2023-01-23 09:34 PM PST -Adastros,2023-01-24T07:42:39Z,- Adastros submitted pull request review: [3864](https://github.com/hackforla/website/pull/3864#pullrequestreview-1266960610) at 2023-01-23 11:42 PM PST -Adastros,2023-01-24T07:51:52Z,- Adastros commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1401509906) at 2023-01-23 11:51 PM PST -Adastros,2023-01-24T08:22:15Z,- Adastros commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1401539817) at 2023-01-24 12:22 AM PST -Adastros,2023-01-25T04:40:55Z,- Adastros submitted pull request review: [3864](https://github.com/hackforla/website/pull/3864#pullrequestreview-1268699923) at 2023-01-24 08:40 PM PST -Adastros,2023-01-25T07:11:52Z,- Adastros submitted pull request review: [3845](https://github.com/hackforla/website/pull/3845#pullrequestreview-1268799460) at 2023-01-24 11:11 PM PST -Adastros,2023-01-31T05:42:22Z,- Adastros submitted pull request review: [3845](https://github.com/hackforla/website/pull/3845#pullrequestreview-1276513177) at 2023-01-30 09:42 PM PST -Adastros,2023-01-31T05:53:40Z,- Adastros commented on pull request: [3905](https://github.com/hackforla/website/pull/3905#issuecomment-1409801675) at 2023-01-30 09:53 PM PST -Adastros,2023-01-31T07:07:51Z,- Adastros submitted pull request review: [3905](https://github.com/hackforla/website/pull/3905#pullrequestreview-1276593080) at 2023-01-30 11:07 PM PST -Adastros,2023-02-01T06:20:08Z,- Adastros submitted pull request review: [3905](https://github.com/hackforla/website/pull/3905#pullrequestreview-1278489018) at 2023-01-31 10:20 PM PST -Adastros,2023-02-14T07:38:09Z,- Adastros opened issue: [3973](https://github.com/hackforla/website/issues/3973) at 2023-02-13 11:38 PM PST -Adastros,2023-02-14T08:00:21Z,- Adastros opened issue: [3975](https://github.com/hackforla/website/issues/3975) at 2023-02-14 12:00 AM PST -Adastros,2023-02-14T08:08:35Z,- Adastros commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1429299384) at 2023-02-14 12:08 AM PST -Adastros,2023-02-14T08:22:42Z,- Adastros opened issue: [3976](https://github.com/hackforla/website/issues/3976) at 2023-02-14 12:22 AM PST -Adastros,2023-02-20T01:44:31Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1436182330) at 2023-02-19 05:44 PM PST -Adastros,2023-02-21T04:54:03Z,- Adastros commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1437856138) at 2023-02-20 08:54 PM PST -Adastros,2023-02-21T05:11:30Z,- Adastros submitted pull request review: [4011](https://github.com/hackforla/website/pull/4011#pullrequestreview-1306634001) at 2023-02-20 09:11 PM PST -Adastros,2023-02-23T06:53:25Z,- Adastros submitted pull request review: [4020](https://github.com/hackforla/website/pull/4020#pullrequestreview-1310690492) at 2023-02-22 10:53 PM PST -Adastros,2023-02-23T07:07:02Z,- Adastros submitted pull request review: [4011](https://github.com/hackforla/website/pull/4011#pullrequestreview-1310701444) at 2023-02-22 11:07 PM PST -Adastros,2023-02-23T07:08:41Z,- Adastros closed issue by PR 4011: [4008](https://github.com/hackforla/website/issues/4008#event-8588424157) at 2023-02-22 11:08 PM PST -Adastros,2023-02-28T07:20:56Z,- Adastros submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1316923625) at 2023-02-27 11:20 PM PST -Adastros,2023-02-28T07:46:24Z,- Adastros commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1447720283) at 2023-02-27 11:46 PM PST -Adastros,2023-02-28T08:03:07Z,- Adastros closed issue by PR 4048: [4006](https://github.com/hackforla/website/issues/4006#event-8623813933) at 2023-02-28 12:03 AM PST -Adastros,2023-03-01T02:43:34Z,- Adastros commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1449247482) at 2023-02-28 06:43 PM PST -Adastros,2023-03-01T07:16:57Z,- Adastros submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1319156521) at 2023-02-28 11:16 PM PST -Adastros,2023-03-01T07:17:38Z,- Adastros closed issue by PR 4038: [3952](https://github.com/hackforla/website/issues/3952#event-8634771589) at 2023-02-28 11:17 PM PST -Adastros,2023-03-06T05:43:41Z,- Adastros commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1455490276) at 2023-03-05 09:43 PM PST -Adastros,2023-03-06T06:09:39Z,- Adastros commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1455512616) at 2023-03-05 10:09 PM PST -Adastros,2023-03-06T06:27:40Z,- Adastros commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1455529648) at 2023-03-05 10:27 PM PST -Adastros,2023-03-06T07:22:52Z,- Adastros submitted pull request review: [4108](https://github.com/hackforla/website/pull/4108#pullrequestreview-1325631531) at 2023-03-05 11:22 PM PST -Adastros,2023-03-06T07:36:05Z,- Adastros commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1455608075) at 2023-03-05 11:36 PM PST -Adastros,2023-03-07T07:28:02Z,- Adastros commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1457682510) at 2023-03-06 11:28 PM PST -Adastros,2023-03-07T07:36:15Z,- Adastros commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1457690979) at 2023-03-06 11:36 PM PST -Adastros,2023-03-07T08:05:25Z,- Adastros submitted pull request review: [4115](https://github.com/hackforla/website/pull/4115#pullrequestreview-1327835344) at 2023-03-07 12:05 AM PST -Adastros,2023-03-08T05:10:20Z,- Adastros commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1459507458) at 2023-03-07 09:10 PM PST -Adastros,2023-03-08T06:09:42Z,- Adastros commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1459598026) at 2023-03-07 10:09 PM PST -Adastros,2023-03-08T06:13:28Z,- Adastros commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1459600783) at 2023-03-07 10:13 PM PST -Adastros,2023-03-08T06:23:41Z,- Adastros commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1459607942) at 2023-03-07 10:23 PM PST -Adastros,2023-03-08T07:07:42Z,- Adastros submitted pull request review: [4121](https://github.com/hackforla/website/pull/4121#pullrequestreview-1330063876) at 2023-03-07 11:07 PM PST -Adastros,2023-03-09T06:36:27Z,- Adastros submitted pull request review: [4121](https://github.com/hackforla/website/pull/4121#pullrequestreview-1332093879) at 2023-03-08 10:36 PM PST -Adastros,2023-03-09T06:37:32Z,- Adastros closed issue by PR 4121: [4082](https://github.com/hackforla/website/issues/4082#event-8703824200) at 2023-03-08 10:37 PM PST -Adastros,2023-03-09T07:16:22Z,- Adastros submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1332135120) at 2023-03-08 11:16 PM PST -Adastros,2023-03-09T07:33:36Z,- Adastros opened issue: [4141](https://github.com/hackforla/website/issues/4141) at 2023-03-08 11:33 PM PST -Adastros,2023-03-10T07:56:50Z,- Adastros commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1463411804) at 2023-03-09 11:56 PM PST -Adastros,2023-03-10T08:12:36Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1463429993) at 2023-03-10 12:12 AM PST -Adastros,2023-04-04T06:58:19Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1495446939) at 2023-04-03 11:58 PM PDT -Adastros,2023-04-11T04:30:27Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1502671608) at 2023-04-10 09:30 PM PDT -Adastros,2023-04-13T06:43:12Z,- Adastros opened issue: [4498](https://github.com/hackforla/website/issues/4498) at 2023-04-12 11:43 PM PDT -Adastros,2023-04-18T05:25:23Z,- Adastros commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1512453132) at 2023-04-17 10:25 PM PDT -Adastros,2023-04-18T06:19:23Z,- Adastros commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1512501343) at 2023-04-17 11:19 PM PDT -Adastros,2023-04-18T06:19:57Z,- Adastros submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1389362993) at 2023-04-17 11:19 PM PDT -Adastros,2023-04-18T06:45:59Z,- Adastros submitted pull request review: [4511](https://github.com/hackforla/website/pull/4511#pullrequestreview-1389398155) at 2023-04-17 11:45 PM PDT -Adastros,2023-04-19T03:25:41Z,- Adastros submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1391208305) at 2023-04-18 08:25 PM PDT -Adastros,2023-04-19T03:26:08Z,- Adastros closed issue by PR 4539: [4352](https://github.com/hackforla/website/issues/4352#event-9041883220) at 2023-04-18 08:26 PM PDT -Adastros,2023-04-19T03:28:34Z,- Adastros submitted pull request review: [4511](https://github.com/hackforla/website/pull/4511#pullrequestreview-1391209724) at 2023-04-18 08:28 PM PDT -Adastros,2023-04-19T03:42:26Z,- Adastros closed issue by PR 4511: [4396](https://github.com/hackforla/website/issues/4396#event-9041936236) at 2023-04-18 08:42 PM PDT -Adastros,2023-04-21T06:17:29Z,- Adastros commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1517320812) at 2023-04-20 11:17 PM PDT -Adastros,2023-04-21T07:08:19Z,- Adastros opened issue: [4551](https://github.com/hackforla/website/issues/4551) at 2023-04-21 12:08 AM PDT -Adastros,2023-04-21T07:13:08Z,- Adastros opened issue: [4552](https://github.com/hackforla/website/issues/4552) at 2023-04-21 12:13 AM PDT -Adastros,2023-04-25T05:54:12Z,- Adastros submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1399175577) at 2023-04-24 10:54 PM PDT -Adastros,2023-04-25T06:06:29Z,- Adastros commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1521199923) at 2023-04-24 11:06 PM PDT -Adastros,2023-04-25T07:38:40Z,- Adastros commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1521300777) at 2023-04-25 12:38 AM PDT -Adastros,2023-04-25T07:40:03Z,- Adastros closed issue by PR 4554: [4256](https://github.com/hackforla/website/issues/4256#event-9089034663) at 2023-04-25 12:40 AM PDT -Adastros,2023-04-26T02:26:36Z,- Adastros submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1401054763) at 2023-04-25 07:26 PM PDT -Adastros,2023-04-26T02:27:11Z,- Adastros closed issue by PR 4560: [4381](https://github.com/hackforla/website/issues/4381#event-9098240165) at 2023-04-25 07:27 PM PDT -Adastros,2023-05-02T05:38:02Z,- Adastros commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1530910009) at 2023-05-01 10:38 PM PDT -Adastros,2023-05-02T07:00:31Z,- Adastros assigned to issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1522657973) at 2023-05-02 12:00 AM PDT -Adastros,2023-05-02T07:04:17Z,- Adastros commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1530985483) at 2023-05-02 12:04 AM PDT -Adastros,2023-05-02T07:35:05Z,- Adastros opened issue: [4593](https://github.com/hackforla/website/issues/4593) at 2023-05-02 12:35 AM PDT -Adastros,2023-05-02T07:40:30Z,- Adastros commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1531024173) at 2023-05-02 12:40 AM PDT -Adastros,2023-05-03T06:10:22Z,- Adastros commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1532493648) at 2023-05-02 11:10 PM PDT -Adastros,2023-05-03T06:10:22Z,- Adastros closed issue as completed: [4530](https://github.com/hackforla/website/issues/4530#event-9151858810) at 2023-05-02 11:10 PM PDT -Adastros,2023-05-04T04:47:48Z,- Adastros commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1534089848) at 2023-05-03 09:47 PM PDT -Adastros,2023-05-04T04:49:56Z,- Adastros assigned to issue: [4498](https://github.com/hackforla/website/issues/4498) at 2023-05-03 09:49 PM PDT -Adastros,2023-05-09T06:06:50Z,- Adastros commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1539470291) at 2023-05-08 11:06 PM PDT -Adastros,2023-05-09T08:42:26Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1418164765) at 2023-05-09 01:42 AM PDT -Adastros,2023-05-10T02:49:58Z,- Adastros commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1541229664) at 2023-05-09 07:49 PM PDT -Adastros,2023-05-11T05:21:01Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1421772270) at 2023-05-10 10:21 PM PDT -Adastros,2023-05-11T05:29:30Z,- Adastros commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1543360849) at 2023-05-10 10:29 PM PDT -Adastros,2023-05-12T04:39:13Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1423761573) at 2023-05-11 09:39 PM PDT -Adastros,2023-05-14T02:02:56Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1425478285) at 2023-05-13 07:02 PM PDT -Adastros,2023-05-14T02:04:49Z,- Adastros closed issue by PR 4603: [4574](https://github.com/hackforla/website/issues/4574#event-9239444309) at 2023-05-13 07:04 PM PDT -Adastros,2023-05-14T02:37:58Z,- Adastros opened issue: [4662](https://github.com/hackforla/website/issues/4662) at 2023-05-13 07:37 PM PDT -Adastros,2023-05-14T02:42:07Z,- Adastros commented on issue: [4498](https://github.com/hackforla/website/issues/4498#issuecomment-1546793167) at 2023-05-13 07:42 PM PDT -Adastros,2023-05-14T02:42:07Z,- Adastros closed issue as completed: [4498](https://github.com/hackforla/website/issues/4498#event-9239474014) at 2023-05-13 07:42 PM PDT -Adastros,2023-05-16T06:03:37Z,- Adastros commented on pull request: [4673](https://github.com/hackforla/website/pull/4673#issuecomment-1549041761) at 2023-05-15 11:03 PM PDT -Adastros,2023-05-16T06:14:29Z,- Adastros commented on pull request: [4664](https://github.com/hackforla/website/pull/4664#issuecomment-1549052703) at 2023-05-15 11:14 PM PDT -Adastros,2023-05-16T06:16:56Z,- Adastros commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1549054904) at 2023-05-15 11:16 PM PDT -Adastros,2023-05-16T07:05:46Z,- Adastros submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1427866816) at 2023-05-16 12:05 AM PDT -Adastros,2023-05-17T01:47:44Z,- Adastros submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1429669778) at 2023-05-16 06:47 PM PDT -Adastros,2023-05-17T01:48:00Z,- Adastros closed issue by PR 4666: [4473](https://github.com/hackforla/website/issues/4473#event-9263822503) at 2023-05-16 06:48 PM PDT -Adastros,2023-05-23T06:18:43Z,- Adastros commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1558599739) at 2023-05-22 11:18 PM PDT -Adastros,2023-05-25T04:58:06Z,- Adastros commented on pull request: [4727](https://github.com/hackforla/website/pull/4727#issuecomment-1562267451) at 2023-05-24 09:58 PM PDT -Adastros,2023-05-25T05:00:07Z,- Adastros commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1562269099) at 2023-05-24 10:00 PM PDT -Adastros,2023-05-25T06:44:20Z,- Adastros commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562364979) at 2023-05-24 11:44 PM PDT -Adastros,2023-05-25T07:41:39Z,- Adastros submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1443271892) at 2023-05-25 12:41 AM PDT -Adastros,2023-05-25T07:45:44Z,- Adastros submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1443278608) at 2023-05-25 12:45 AM PDT -Adastros,2023-05-26T06:59:38Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1563898221) at 2023-05-25 11:59 PM PDT -Adastros,2023-05-26T07:11:27Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1563912965) at 2023-05-26 12:11 AM PDT -Adastros,2023-05-27T02:25:03Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1565165859) at 2023-05-26 07:25 PM PDT -Adastros,2023-05-27T04:06:40Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565195706) at 2023-05-26 09:06 PM PDT -Adastros,2023-05-30T01:03:47Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1567634442) at 2023-05-29 06:03 PM PDT -Adastros,2023-05-30T01:03:47Z,- Adastros closed issue as completed: [4662](https://github.com/hackforla/website/issues/4662#event-9372684446) at 2023-05-29 06:03 PM PDT -Adastros,2023-05-30T01:17:37Z,- Adastros closed issue by PR 4747: [4399](https://github.com/hackforla/website/issues/4399#event-9372744434) at 2023-05-29 06:17 PM PDT -Adastros,2023-05-31T03:58:20Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1569460062) at 2023-05-30 08:58 PM PDT -Adastros,2023-06-01T04:57:07Z,- Adastros submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1454557077) at 2023-05-31 09:57 PM PDT -Adastros,2023-06-06T04:22:42Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1577882380) at 2023-06-05 09:22 PM PDT -Adastros,2023-06-08T06:25:11Z,- Adastros submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1469086516) at 2023-06-07 11:25 PM PDT -Adastros,2023-06-08T06:38:02Z,- Adastros submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1469104569) at 2023-06-07 11:38 PM PDT -Adastros,2023-06-08T07:03:47Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1582000245) at 2023-06-08 12:03 AM PDT -Adastros,2023-06-08T07:06:20Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1582003633) at 2023-06-08 12:06 AM PDT -Adastros,2023-06-09T07:38:47Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1584116605) at 2023-06-09 12:38 AM PDT -Adastros,2023-06-13T08:00:44Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588758037) at 2023-06-13 01:00 AM PDT -Adastros,2023-06-13T08:13:34Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588779300) at 2023-06-13 01:13 AM PDT -Adastros,2023-06-14T06:28:13Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1590553134) at 2023-06-13 11:28 PM PDT -Adastros,2023-06-14T06:35:13Z,- Adastros closed issue by PR 4789: [4758](https://github.com/hackforla/website/issues/4758#event-9524167822) at 2023-06-13 11:35 PM PDT -Adastros,2023-06-20T05:02:32Z,- Adastros closed issue by PR 4764: [3985](https://github.com/hackforla/website/issues/3985#event-9574970722) at 2023-06-19 10:02 PM PDT -Adastros,2023-06-20T05:05:17Z,- Adastros commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1598122157) at 2023-06-19 10:05 PM PDT -Adastros,2023-06-20T05:14:48Z,- Adastros commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1598129971) at 2023-06-19 10:14 PM PDT -Adastros,2023-06-27T05:13:35Z,- Adastros closed issue by PR 4882: [4529](https://github.com/hackforla/website/issues/4529#event-9646988550) at 2023-06-26 10:13 PM PDT -Adastros,2023-07-18T06:09:55Z,- Adastros commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1639551543) at 2023-07-17 11:09 PM PDT -Adastros,2023-07-18T06:20:54Z,- Adastros closed issue by PR 4701: [4592](https://github.com/hackforla/website/issues/4592#event-9846077490) at 2023-07-17 11:20 PM PDT -Adastros,2023-07-18T06:27:35Z,- Adastros assigned to issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1629899672) at 2023-07-17 11:27 PM PDT -Adastros,2023-07-18T06:28:54Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1639582479) at 2023-07-17 11:28 PM PDT -Adastros,2023-07-19T04:41:44Z,- Adastros commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1641401166) at 2023-07-18 09:41 PM PDT -Adastros,2023-07-19T04:41:48Z,- Adastros reopened issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1641401166) at 2023-07-18 09:41 PM PDT -Adastros,2023-07-21T07:03:06Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1645080163) at 2023-07-21 12:03 AM PDT -Adastros,2023-07-21T07:16:36Z,- Adastros commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1645093533) at 2023-07-21 12:16 AM PDT -Adastros,2023-08-01T05:33:48Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1659595835) at 2023-07-31 10:33 PM PDT -Adastros,2023-08-08T06:29:21Z,- Adastros closed issue by PR 5155: [5057](https://github.com/hackforla/website/issues/5057#event-10031404196) at 2023-08-07 11:29 PM PDT -Adastros,2023-08-15T06:21:47Z,- Adastros opened issue: [5233](https://github.com/hackforla/website/issues/5233) at 2023-08-14 11:21 PM PDT -Adastros,2023-08-15T06:22:00Z,- Adastros assigned to issue: [5233](https://github.com/hackforla/website/issues/5233) at 2023-08-14 11:22 PM PDT -Adastros,2023-08-22T06:06:23Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1687498617) at 2023-08-21 11:06 PM PDT -Adastros,2023-08-22T06:47:26Z,- Adastros opened issue: [5282](https://github.com/hackforla/website/issues/5282) at 2023-08-21 11:47 PM PDT -Adastros,2023-08-22T06:51:45Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1687577786) at 2023-08-21 11:51 PM PDT -Adastros,2023-08-29T05:09:05Z,- Adastros closed issue by PR 5327: [5288](https://github.com/hackforla/website/issues/5288#event-10216322821) at 2023-08-28 10:09 PM PDT -Adastros,2023-08-29T06:23:04Z,- Adastros opened issue: [5333](https://github.com/hackforla/website/issues/5333) at 2023-08-28 11:23 PM PDT -Adastros,2023-08-29T06:25:09Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1696841831) at 2023-08-28 11:25 PM PDT -Adastros,2023-09-06T05:01:31Z,- Adastros submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1612449400) at 2023-09-05 10:01 PM PDT -Adastros,2023-09-07T06:29:43Z,- Adastros commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1709551544) at 2023-09-06 11:29 PM PDT -Adastros,2023-09-07T06:41:42Z,- Adastros submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1614682720) at 2023-09-06 11:41 PM PDT -Adastros,2023-09-07T06:42:22Z,- Adastros closed issue by PR 5401: [5175](https://github.com/hackforla/website/issues/5175#event-10303369559) at 2023-09-06 11:42 PM PDT -Adastros,2023-09-12T04:53:53Z,- Adastros submitted pull request review: [5469](https://github.com/hackforla/website/pull/5469#pullrequestreview-1621244432) at 2023-09-11 09:53 PM PDT -Adastros,2023-09-12T07:32:21Z,- Adastros submitted pull request review: [5298](https://github.com/hackforla/website/pull/5298#pullrequestreview-1621518072) at 2023-09-12 12:32 AM PDT -Adastros,2023-09-12T07:38:45Z,- Adastros commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1715166791) at 2023-09-12 12:38 AM PDT -Adastros,2023-09-19T06:12:57Z,- Adastros closed issue by PR 5553: [5427](https://github.com/hackforla/website/issues/5427#event-10406115403) at 2023-09-18 11:12 PM PDT -Adastros,2023-09-19T06:31:28Z,- Adastros submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1632506786) at 2023-09-18 11:31 PM PDT -Adastros,2023-09-19T06:35:14Z,- Adastros commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1724909178) at 2023-09-18 11:35 PM PDT -Adastros,2023-09-21T04:37:27Z,- Adastros submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1636871528) at 2023-09-20 09:37 PM PDT -Adastros,2023-09-26T04:38:59Z,- Adastros submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1643328065) at 2023-09-25 09:38 PM PDT -Adastros,2023-09-26T04:39:21Z,- Adastros closed issue by PR 5546: [5324](https://github.com/hackforla/website/issues/5324#event-10469846810) at 2023-09-25 09:39 PM PDT -Adastros,2023-09-26T07:14:38Z,- Adastros submitted pull request review: [5298](https://github.com/hackforla/website/pull/5298#pullrequestreview-1643512834) at 2023-09-26 12:14 AM PDT -Adastros,2023-09-26T07:16:58Z,- Adastros closed issue by PR 5298: [4903](https://github.com/hackforla/website/issues/4903#event-10470990546) at 2023-09-26 12:16 AM PDT -Adastros,2023-10-03T05:27:34Z,- Adastros commented on issue: [4912](https://github.com/hackforla/website/issues/4912#issuecomment-1744236013) at 2023-10-02 10:27 PM PDT -Adastros,2023-10-03T05:27:34Z,- Adastros closed issue as completed: [4912](https://github.com/hackforla/website/issues/4912#event-10533332045) at 2023-10-02 10:27 PM PDT -Adastros,2023-10-03T05:28:57Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1744237098) at 2023-10-02 10:28 PM PDT -Adastros,2023-10-03T05:28:57Z,- Adastros closed issue as completed: [4769](https://github.com/hackforla/website/issues/4769#event-10533340983) at 2023-10-02 10:28 PM PDT -Adastros,2023-10-10T06:58:22Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1754536411) at 2023-10-09 11:58 PM PDT -Adastros,2023-10-17T05:50:31Z,- Adastros opened issue: [5730](https://github.com/hackforla/website/issues/5730) at 2023-10-16 10:50 PM PDT -Adastros,2023-10-17T06:52:02Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1765778095) at 2023-10-16 11:52 PM PDT -Adastros,2023-10-24T06:43:47Z,- Adastros opened issue: [5770](https://github.com/hackforla/website/issues/5770) at 2023-10-23 11:43 PM PDT -Adastros,2023-10-24T06:44:56Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1776621003) at 2023-10-23 11:44 PM PDT -Adastros,2023-10-31T06:00:19Z,- Adastros closed issue by PR 5793: [5754](https://github.com/hackforla/website/issues/5754#event-10816023774) at 2023-10-30 11:00 PM PDT -Adastros,2023-11-07T07:01:25Z,- Adastros submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1716953939) at 2023-11-06 11:01 PM PST -Adastros,2023-11-08T05:24:59Z,- Adastros submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1719388697) at 2023-11-07 09:24 PM PST -Adastros,2023-11-08T05:25:13Z,- Adastros closed issue by PR 5858: [5790](https://github.com/hackforla/website/issues/5790#event-10895747363) at 2023-11-07 09:25 PM PST -Adastros,2023-11-22T06:55:51Z,- Adastros commented on issue: [5333](https://github.com/hackforla/website/issues/5333#issuecomment-1822210449) at 2023-11-21 10:55 PM PST -Adastros,2024-01-12T06:08:59Z,- Adastros unassigned from issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1776621003) at 2024-01-11 10:08 PM PST -Adastros,2024-06-18T01:57:53Z,- Adastros unassigned from issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174767374) at 2024-06-17 06:57 PM PDT -Adeola-Adesoba,2020-07-05T22:27:27Z,- Adeola-Adesoba commented on issue: [593](https://github.com/hackforla/website/issues/593#issuecomment-653946741) at 2020-07-05 03:27 PM PDT -adeoyevictor,5480,SKILLS ISSUE -adeoyevictor,2023-09-12T02:53:45Z,- adeoyevictor opened issue: [5480](https://github.com/hackforla/website/issues/5480) at 2023-09-11 07:53 PM PDT -adeoyevictor,2023-09-12T02:54:00Z,- adeoyevictor assigned to issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1714887437) at 2023-09-11 07:54 PM PDT -adevlinb,4171,SKILLS ISSUE -adevlinb,2023-03-14T03:25:04Z,- adevlinb opened issue: [4171](https://github.com/hackforla/website/issues/4171) at 2023-03-13 08:25 PM PDT -adevlinb,2023-03-14T03:25:24Z,- adevlinb assigned to issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1467294616) at 2023-03-13 08:25 PM PDT -adevlinb,2023-03-20T03:10:44Z,- adevlinb assigned to issue: [3874](https://github.com/hackforla/website/issues/3874) at 2023-03-19 08:10 PM PDT -adevlinb,2023-03-20T03:27:22Z,- adevlinb commented on issue: [3874](https://github.com/hackforla/website/issues/3874#issuecomment-1475559447) at 2023-03-19 08:27 PM PDT -adevlinb,2023-03-20T03:37:41Z,- adevlinb commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1475564417) at 2023-03-19 08:37 PM PDT -adevlinb,2023-03-20T03:40:05Z,- adevlinb commented on issue: [3874](https://github.com/hackforla/website/issues/3874#issuecomment-1475568072) at 2023-03-19 08:40 PM PDT -adevlinb,2023-03-20T03:49:11Z,- adevlinb opened pull request: [4215](https://github.com/hackforla/website/pull/4215) at 2023-03-19 08:49 PM PDT -adevlinb,2023-03-21T16:19:58Z,- adevlinb commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1478160052) at 2023-03-21 09:19 AM PDT -adevlinb,2023-03-23T21:43:47Z,- adevlinb pull request merged: [4215](https://github.com/hackforla/website/pull/4215#event-8832757327) at 2023-03-23 02:43 PM PDT -adevlinb,2023-03-26T17:21:49Z,- adevlinb commented on pull request: [4292](https://github.com/hackforla/website/pull/4292#issuecomment-1484163529) at 2023-03-26 10:21 AM PDT -adevlinb,2023-03-26T19:53:53Z,- adevlinb submitted pull request review: [4292](https://github.com/hackforla/website/pull/4292#pullrequestreview-1358103348) at 2023-03-26 12:53 PM PDT -adevlinb,2023-03-27T23:23:41Z,- adevlinb commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1485990725) at 2023-03-27 04:23 PM PDT -adevlinb,2023-03-27T23:34:08Z,- adevlinb commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1485997658) at 2023-03-27 04:34 PM PDT -adevlinb,2023-03-27T23:43:41Z,- adevlinb assigned to issue: [3868](https://github.com/hackforla/website/issues/3868) at 2023-03-27 04:43 PM PDT -adevlinb,2023-03-28T00:16:18Z,- adevlinb commented on issue: [3868](https://github.com/hackforla/website/issues/3868#issuecomment-1486031394) at 2023-03-27 05:16 PM PDT -adevlinb,2023-03-28T21:06:13Z,- adevlinb opened pull request: [4305](https://github.com/hackforla/website/pull/4305) at 2023-03-28 02:06 PM PDT -adevlinb,2023-03-30T01:43:29Z,- adevlinb commented on pull request: [4305](https://github.com/hackforla/website/pull/4305#issuecomment-1489565683) at 2023-03-29 06:43 PM PDT -adevlinb,2023-03-30T20:12:52Z,- adevlinb pull request merged: [4305](https://github.com/hackforla/website/pull/4305#event-8891475647) at 2023-03-30 01:12 PM PDT -adevlinb,2023-04-06T22:21:56Z,- adevlinb commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499698538) at 2023-04-06 03:21 PM PDT -adevlinb,2023-04-06T22:36:37Z,- adevlinb submitted pull request review: [4433](https://github.com/hackforla/website/pull/4433#pullrequestreview-1375653386) at 2023-04-06 03:36 PM PDT -adevlinb,2023-04-06T23:50:33Z,- adevlinb commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1499767488) at 2023-04-06 04:50 PM PDT -adevlinb,2023-04-06T23:51:02Z,- adevlinb submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1375691012) at 2023-04-06 04:51 PM PDT -adevlinb,2023-04-18T02:27:13Z,- adevlinb commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1512345959) at 2023-04-17 07:27 PM PDT -adevlinb,2023-04-18T06:11:02Z,- adevlinb commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1512493407) at 2023-04-17 11:11 PM PDT -adevlinb,2023-04-23T23:14:21Z,- adevlinb commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519191697) at 2023-04-23 04:14 PM PDT -adevlinb,2023-04-23T23:32:22Z,- adevlinb submitted pull request review: [4558](https://github.com/hackforla/website/pull/4558#pullrequestreview-1397011123) at 2023-04-23 04:32 PM PDT -adevlinb,2023-05-14T17:30:13Z,- adevlinb closed issue as completed: [4171](https://github.com/hackforla/website/issues/4171#event-9240490167) at 2023-05-14 10:30 AM PDT -ADITYAS1000,6882,SKILLS ISSUE -ADITYAS1000,2024-05-22T03:02:39Z,- ADITYAS1000 opened issue: [6882](https://github.com/hackforla/website/issues/6882) at 2024-05-21 08:02 PM PDT -ADITYAS1000,2024-05-22T03:14:22Z,- ADITYAS1000 assigned to issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2123782766) at 2024-05-21 08:14 PM PDT -ADITYAS1000,2024-07-20T00:36:24Z,- ADITYAS1000 assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2237891433) at 2024-07-19 05:36 PM PDT -ADITYAS1000,2024-07-20T00:38:37Z,- ADITYAS1000 unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2237891433) at 2024-07-19 05:38 PM PDT -ADITYAS1000,2024-08-03T00:11:40Z,- ADITYAS1000 assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2237891433) at 2024-08-02 05:11 PM PDT -ADITYAS1000,2024-08-03T00:14:15Z,- ADITYAS1000 unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2266290875) at 2024-08-02 05:14 PM PDT -adom2128,6244,SKILLS ISSUE -adom2128,2024-02-06T03:24:43Z,- adom2128 opened issue: [6244](https://github.com/hackforla/website/issues/6244) at 2024-02-05 07:24 PM PST -adom2128,2024-02-06T03:24:46Z,- adom2128 assigned to issue: [6244](https://github.com/hackforla/website/issues/6244) at 2024-02-05 07:24 PM PST -adrian-zaragoza,2021-08-13T03:54:49Z,- adrian-zaragoza opened pull request: [2107](https://github.com/hackforla/website/pull/2107) at 2021-08-12 08:54 PM PDT -adrian-zaragoza,2021-08-16T07:02:06Z,- adrian-zaragoza pull request merged: [2107](https://github.com/hackforla/website/pull/2107#event-5161243973) at 2021-08-16 12:02 AM PDT -adrian-zaragoza,2021-08-19T02:30:26Z,- adrian-zaragoza submitted pull request review: [2120](https://github.com/hackforla/website/pull/2120#pullrequestreview-733498905) at 2021-08-18 07:30 PM PDT -adrian-zaragoza,2021-08-19T03:14:18Z,- adrian-zaragoza assigned to issue: [2093](https://github.com/hackforla/website/issues/2093) at 2021-08-18 08:14 PM PDT -adrian-zaragoza,2021-08-20T03:48:34Z,- adrian-zaragoza opened pull request: [2131](https://github.com/hackforla/website/pull/2131) at 2021-08-19 08:48 PM PDT -adrian-zaragoza,2021-08-20T23:10:19Z,- adrian-zaragoza assigned to issue: [2082](https://github.com/hackforla/website/issues/2082) at 2021-08-20 04:10 PM PDT -adrian-zaragoza,2021-08-20T23:35:24Z,- adrian-zaragoza opened pull request: [2150](https://github.com/hackforla/website/pull/2150) at 2021-08-20 04:35 PM PDT -adrian-zaragoza,2021-08-21T00:16:19Z,- adrian-zaragoza commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-903017615) at 2021-08-20 05:16 PM PDT -adrian-zaragoza,2021-08-21T00:36:26Z,- adrian-zaragoza opened issue: [2151](https://github.com/hackforla/website/issues/2151) at 2021-08-20 05:36 PM PDT -adrian-zaragoza,2021-08-21T21:43:00Z,- adrian-zaragoza pull request merged: [2131](https://github.com/hackforla/website/pull/2131#event-5190216236) at 2021-08-21 02:43 PM PDT -adrian-zaragoza,2021-08-24T02:30:42Z,- adrian-zaragoza submitted pull request review: [2136](https://github.com/hackforla/website/pull/2136#pullrequestreview-736725614) at 2021-08-23 07:30 PM PDT -adrian-zaragoza,2021-08-24T02:55:33Z,- adrian-zaragoza submitted pull request review: [2157](https://github.com/hackforla/website/pull/2157#pullrequestreview-736735057) at 2021-08-23 07:55 PM PDT -adrian-zaragoza,2021-08-24T05:29:55Z,- adrian-zaragoza opened issue: [2170](https://github.com/hackforla/website/issues/2170) at 2021-08-23 10:29 PM PDT -adrian-zaragoza,2021-08-24T05:38:32Z,- adrian-zaragoza submitted pull request review: [2136](https://github.com/hackforla/website/pull/2136#pullrequestreview-736802278) at 2021-08-23 10:38 PM PDT -adrian-zaragoza,2021-08-25T00:07:28Z,- adrian-zaragoza commented on issue: [2170](https://github.com/hackforla/website/issues/2170#issuecomment-905056240) at 2021-08-24 05:07 PM PDT -adrian-zaragoza,2021-08-27T18:09:26Z,- adrian-zaragoza submitted pull request review: [2157](https://github.com/hackforla/website/pull/2157#pullrequestreview-740776101) at 2021-08-27 11:09 AM PDT -adrian-zaragoza,2021-08-27T18:21:03Z,- adrian-zaragoza commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-907388637) at 2021-08-27 11:21 AM PDT -adrian-zaragoza,2021-08-27T18:21:03Z,- adrian-zaragoza pull request closed w/o merging: [2150](https://github.com/hackforla/website/pull/2150#event-5220067407) at 2021-08-27 11:21 AM PDT -adrian-zaragoza,2021-08-27T18:53:29Z,- adrian-zaragoza opened pull request: [2189](https://github.com/hackforla/website/pull/2189) at 2021-08-27 11:53 AM PDT -adrian-zaragoza,2021-08-27T18:56:44Z,- adrian-zaragoza commented on issue: [2082](https://github.com/hackforla/website/issues/2082#issuecomment-907407980) at 2021-08-27 11:56 AM PDT -adrian-zaragoza,2021-08-27T20:22:42Z,- adrian-zaragoza commented on issue: [2151](https://github.com/hackforla/website/issues/2151#issuecomment-907456020) at 2021-08-27 01:22 PM PDT -adrian-zaragoza,2021-08-28T05:54:10Z,- adrian-zaragoza pull request merged: [2189](https://github.com/hackforla/website/pull/2189#event-5221351896) at 2021-08-27 10:54 PM PDT -adrian-zaragoza,2021-08-31T03:13:43Z,- adrian-zaragoza commented on issue: [2082](https://github.com/hackforla/website/issues/2082#issuecomment-908863243) at 2021-08-30 08:13 PM PDT -adrian-zaragoza,2021-08-31T03:13:44Z,- adrian-zaragoza closed issue by PR 2189: [2082](https://github.com/hackforla/website/issues/2082#event-5229762852) at 2021-08-30 08:13 PM PDT -adrian-zaragoza,2021-08-31T03:35:39Z,- adrian-zaragoza submitted pull request review: [2196](https://github.com/hackforla/website/pull/2196#pullrequestreview-742246339) at 2021-08-30 08:35 PM PDT -adrian-zaragoza,2021-08-31T03:47:28Z,- adrian-zaragoza submitted pull request review: [2195](https://github.com/hackforla/website/pull/2195#pullrequestreview-742250277) at 2021-08-30 08:47 PM PDT -adrian-zaragoza,2021-08-31T03:53:21Z,- adrian-zaragoza assigned to issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-902306108) at 2021-08-30 08:53 PM PDT -adrian-zaragoza,2021-09-01T02:39:55Z,- adrian-zaragoza assigned to issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-901372018) at 2021-08-31 07:39 PM PDT -adrian-zaragoza,2021-09-03T01:47:06Z,- adrian-zaragoza submitted pull request review: [2209](https://github.com/hackforla/website/pull/2209#pullrequestreview-745644589) at 2021-09-02 06:47 PM PDT -adrian-zaragoza,2021-09-03T01:53:24Z,- adrian-zaragoza unassigned from issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-902306108) at 2021-09-02 06:53 PM PDT -adrian-zaragoza,2021-09-03T05:09:43Z,- adrian-zaragoza commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-912259479) at 2021-09-02 10:09 PM PDT -adrian-zaragoza,2021-09-04T03:37:41Z,- adrian-zaragoza commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-912900469) at 2021-09-03 08:37 PM PDT -adrian-zaragoza,2021-09-04T03:41:22Z,- adrian-zaragoza commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-912900752) at 2021-09-03 08:41 PM PDT -adrian-zaragoza,2021-09-08T01:24:50Z,- adrian-zaragoza commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-914775037) at 2021-09-07 06:24 PM PDT -adrian-zaragoza,2021-09-10T03:27:11Z,- adrian-zaragoza submitted pull request review: [2223](https://github.com/hackforla/website/pull/2223#pullrequestreview-751017947) at 2021-09-09 08:27 PM PDT -adrian-zaragoza,2021-09-12T20:20:26Z,- adrian-zaragoza commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-917703807) at 2021-09-12 01:20 PM PDT -adrian-zaragoza,2021-09-16T04:43:27Z,- adrian-zaragoza opened issue: [2283](https://github.com/hackforla/website/issues/2283) at 2021-09-15 09:43 PM PDT -adrian-zaragoza,2021-09-17T03:43:55Z,- adrian-zaragoza submitted pull request review: [2262](https://github.com/hackforla/website/pull/2262#pullrequestreview-757028777) at 2021-09-16 08:43 PM PDT -adrian-zaragoza,2021-09-19T17:06:49Z,- adrian-zaragoza assigned to issue: [2176](https://github.com/hackforla/website/issues/2176) at 2021-09-19 10:06 AM PDT -adrian-zaragoza,2021-09-21T04:33:50Z,- adrian-zaragoza opened issue: [2290](https://github.com/hackforla/website/issues/2290) at 2021-09-20 09:33 PM PDT -adrian-zaragoza,2021-09-21T04:48:30Z,- adrian-zaragoza opened issue: [2291](https://github.com/hackforla/website/issues/2291) at 2021-09-20 09:48 PM PDT -adrian-zaragoza,2021-09-21T04:54:58Z,- adrian-zaragoza opened issue: [2292](https://github.com/hackforla/website/issues/2292) at 2021-09-20 09:54 PM PDT -adrian-zaragoza,2021-09-21T04:59:45Z,- adrian-zaragoza opened issue: [2293](https://github.com/hackforla/website/issues/2293) at 2021-09-20 09:59 PM PDT -adrian-zaragoza,2021-09-21T05:08:37Z,- adrian-zaragoza opened issue: [2295](https://github.com/hackforla/website/issues/2295) at 2021-09-20 10:08 PM PDT -adrian-zaragoza,2021-09-21T05:16:15Z,- adrian-zaragoza commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-923633721) at 2021-09-20 10:16 PM PDT -adrian-zaragoza,2021-09-22T00:27:38Z,- adrian-zaragoza commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-924485952) at 2021-09-21 05:27 PM PDT -adrian-zaragoza,2021-09-22T00:27:39Z,- adrian-zaragoza closed issue as completed: [2128](https://github.com/hackforla/website/issues/2128#event-5339578013) at 2021-09-21 05:27 PM PDT -adrian-zaragoza,2021-09-24T23:54:54Z,- adrian-zaragoza commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-926974064) at 2021-09-24 04:54 PM PDT -adrian-zaragoza,2021-10-01T17:30:34Z,- adrian-zaragoza commented on issue: [2176](https://github.com/hackforla/website/issues/2176#issuecomment-932423967) at 2021-10-01 10:30 AM PDT -adrian-zaragoza,2021-10-04T00:03:58Z,- adrian-zaragoza assigned to issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-933053132) at 2021-10-03 05:03 PM PDT -adrian-zaragoza,2021-10-06T05:33:35Z,- adrian-zaragoza opened pull request: [2340](https://github.com/hackforla/website/pull/2340) at 2021-10-05 10:33 PM PDT -adrian-zaragoza,2021-10-10T20:07:12Z,- adrian-zaragoza commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-939544677) at 2021-10-10 01:07 PM PDT -adrian-zaragoza,2021-10-10T23:09:12Z,- adrian-zaragoza assigned to issue: [2291](https://github.com/hackforla/website/issues/2291#issuecomment-923621047) at 2021-10-10 04:09 PM PDT -adrian-zaragoza,2021-10-10T23:10:26Z,- adrian-zaragoza unassigned from issue: [2291](https://github.com/hackforla/website/issues/2291#issuecomment-923621047) at 2021-10-10 04:10 PM PDT -adrian-zaragoza,2021-10-11T19:23:02Z,- adrian-zaragoza commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-940381356) at 2021-10-11 12:23 PM PDT -adrian-zaragoza,2021-10-13T02:19:12Z,- adrian-zaragoza commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941853468) at 2021-10-12 07:19 PM PDT -adrian-zaragoza,2021-10-13T02:20:14Z,- adrian-zaragoza commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941853942) at 2021-10-12 07:20 PM PDT -adrian-zaragoza,2021-10-13T02:23:47Z,- adrian-zaragoza commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941855332) at 2021-10-12 07:23 PM PDT -adrian-zaragoza,2021-10-13T02:26:05Z,- adrian-zaragoza commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941856241) at 2021-10-12 07:26 PM PDT -adrian-zaragoza,2021-10-13T02:27:22Z,- adrian-zaragoza commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941856760) at 2021-10-12 07:27 PM PDT -adrian-zaragoza,2021-10-13T02:34:15Z,- adrian-zaragoza commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941859545) at 2021-10-12 07:34 PM PDT -adrian-zaragoza,2021-10-13T02:36:23Z,- adrian-zaragoza commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941860353) at 2021-10-12 07:36 PM PDT -adrian-zaragoza,2021-10-18T23:58:59Z,- adrian-zaragoza commented on issue: [2176](https://github.com/hackforla/website/issues/2176#issuecomment-946256419) at 2021-10-18 04:58 PM PDT -adrian-zaragoza,2021-10-19T22:59:51Z,- adrian-zaragoza pull request merged: [2340](https://github.com/hackforla/website/pull/2340#event-5488342355) at 2021-10-19 03:59 PM PDT -adrian-zaragoza,2021-10-20T02:54:25Z,- adrian-zaragoza assigned to issue: [2162](https://github.com/hackforla/website/issues/2162#issuecomment-918763090) at 2021-10-19 07:54 PM PDT -adrian-zaragoza,2021-10-20T03:30:52Z,- adrian-zaragoza commented on issue: [2162](https://github.com/hackforla/website/issues/2162#issuecomment-947294058) at 2021-10-19 08:30 PM PDT -adrian-zaragoza,2021-10-20T03:42:21Z,- adrian-zaragoza opened pull request: [2377](https://github.com/hackforla/website/pull/2377) at 2021-10-19 08:42 PM PDT -adrian-zaragoza,2021-10-20T05:54:19Z,- adrian-zaragoza pull request merged: [2377](https://github.com/hackforla/website/pull/2377#event-5489448869) at 2021-10-19 10:54 PM PDT -adrian-zaragoza,2021-10-29T16:22:01Z,- adrian-zaragoza commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-954877365) at 2021-10-29 09:22 AM PDT -adrian-zaragoza,2021-10-29T16:24:00Z,- adrian-zaragoza commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-954878854) at 2021-10-29 09:24 AM PDT -adrian-zaragoza,2021-10-30T22:37:00Z,- adrian-zaragoza assigned to issue: [2357](https://github.com/hackforla/website/issues/2357#issuecomment-939432794) at 2021-10-30 03:37 PM PDT -adrian-zaragoza,2021-10-31T19:40:38Z,- adrian-zaragoza opened pull request: [2412](https://github.com/hackforla/website/pull/2412) at 2021-10-31 12:40 PM PDT -adrian-zaragoza,2021-10-31T19:46:37Z,- adrian-zaragoza commented on issue: [2357](https://github.com/hackforla/website/issues/2357#issuecomment-955780737) at 2021-10-31 12:46 PM PDT -adrian-zaragoza,2021-11-03T01:09:34Z,- adrian-zaragoza submitted pull request review: [2411](https://github.com/hackforla/website/pull/2411#pullrequestreview-796036865) at 2021-11-02 06:09 PM PDT -adrian-zaragoza,2021-11-03T01:10:05Z,- adrian-zaragoza closed issue by PR 2411: [1571](https://github.com/hackforla/website/issues/1571#event-5559010036) at 2021-11-02 06:10 PM PDT -adrian-zaragoza,2021-11-03T02:25:37Z,- adrian-zaragoza assigned to issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-904894268) at 2021-11-02 07:25 PM PDT -adrian-zaragoza,2021-11-08T17:03:22Z,- adrian-zaragoza pull request merged: [2412](https://github.com/hackforla/website/pull/2412#event-5584370713) at 2021-11-08 09:03 AM PST -adrian-zaragoza,2021-11-13T19:01:05Z,- adrian-zaragoza submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-805394627) at 2021-11-13 11:01 AM PST -adrian-zaragoza,2021-11-15T05:49:16Z,- adrian-zaragoza opened issue: [2489](https://github.com/hackforla/website/issues/2489) at 2021-11-14 09:49 PM PST -adrian-zaragoza,2021-11-15T05:55:03Z,- adrian-zaragoza opened issue: [2490](https://github.com/hackforla/website/issues/2490) at 2021-11-14 09:55 PM PST -adrian-zaragoza,2021-11-28T17:56:44Z,- adrian-zaragoza unassigned from issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-979746752) at 2021-11-28 09:56 AM PST -adrian-zaragoza,2021-11-28T19:58:59Z,- adrian-zaragoza commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-981142519) at 2021-11-28 11:58 AM PST -adrianang,4718,SKILLS ISSUE -adrianang,2023-05-24T03:14:14Z,- adrianang opened issue: [4718](https://github.com/hackforla/website/issues/4718) at 2023-05-23 08:14 PM PDT -adrianang,2023-05-24T03:14:15Z,- adrianang assigned to issue: [4718](https://github.com/hackforla/website/issues/4718) at 2023-05-23 08:14 PM PDT -adrianang,2023-06-19T01:32:53Z,- adrianang assigned to issue: [4841](https://github.com/hackforla/website/issues/4841) at 2023-06-18 06:32 PM PDT -adrianang,2023-06-19T01:39:52Z,- adrianang unassigned from issue: [4841](https://github.com/hackforla/website/issues/4841#issuecomment-1596357347) at 2023-06-18 06:39 PM PDT -adrianang,2023-06-19T01:46:34Z,- adrianang assigned to issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1586221219) at 2023-06-18 06:46 PM PDT -adrianang,2023-06-19T15:56:22Z,- adrianang commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1597423288) at 2023-06-19 08:56 AM PDT -adrianang,2023-06-19T16:00:54Z,- adrianang commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1597430022) at 2023-06-19 09:00 AM PDT -adrianang,2023-06-23T08:51:38Z,- adrianang commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1603951213) at 2023-06-23 01:51 AM PDT -adrianang,2023-06-23T18:17:51Z,- adrianang assigned to issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1594228537) at 2023-06-23 11:17 AM PDT -adrianang,2023-06-23T19:11:10Z,- adrianang commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1604753427) at 2023-06-23 12:11 PM PDT -adrianang,2023-06-26T05:41:36Z,- adrianang opened pull request: [4882](https://github.com/hackforla/website/pull/4882) at 2023-06-25 10:41 PM PDT -adrianang,2023-06-27T05:13:33Z,- adrianang pull request merged: [4882](https://github.com/hackforla/website/pull/4882#event-9646988394) at 2023-06-26 10:13 PM PDT -adrianang,2023-06-27T05:47:41Z,- adrianang assigned to issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1586250052) at 2023-06-26 10:47 PM PDT -adrianang,2023-06-27T08:23:54Z,- adrianang commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1609029424) at 2023-06-27 01:23 AM PDT -adrianang,2023-06-28T08:03:58Z,- adrianang commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1610955087) at 2023-06-28 01:03 AM PDT -adrianang,2023-06-30T08:08:39Z,- adrianang submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1506721997) at 2023-06-30 01:08 AM PDT -adrianang,2023-07-02T09:13:44Z,- adrianang commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1616504956) at 2023-07-02 02:13 AM PDT -adrianang,2023-07-05T00:11:51Z,- adrianang opened pull request: [4911](https://github.com/hackforla/website/pull/4911) at 2023-07-04 05:11 PM PDT -adrianang,2023-07-05T01:44:35Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1513542749) at 2023-07-04 06:44 PM PDT -adrianang,2023-07-05T05:33:25Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1513688283) at 2023-07-04 10:33 PM PDT -adrianang,2023-07-05T19:55:53Z,- adrianang pull request merged: [4911](https://github.com/hackforla/website/pull/4911#event-9735853515) at 2023-07-05 12:55 PM PDT -adrianang,2023-07-07T07:50:04Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1518207502) at 2023-07-07 12:50 AM PDT -adrianang,2023-07-07T08:14:07Z,- adrianang commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1624992650) at 2023-07-07 01:14 AM PDT -adrianang,2023-07-07T08:48:17Z,- adrianang assigned to issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1517320880) at 2023-07-07 01:48 AM PDT -adrianang,2023-07-07T09:44:28Z,- adrianang commented on issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1625148299) at 2023-07-07 02:44 AM PDT -adrianang,2023-07-08T23:15:21Z,- adrianang commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1627540829) at 2023-07-08 04:15 PM PDT -adrianang,2023-07-09T09:14:48Z,- adrianang opened pull request: [4926](https://github.com/hackforla/website/pull/4926) at 2023-07-09 02:14 AM PDT -adrianang,2023-07-10T07:24:16Z,- adrianang commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1628386893) at 2023-07-10 12:24 AM PDT -adrianang,2023-07-10T08:20:12Z,- adrianang commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1628475438) at 2023-07-10 01:20 AM PDT -adrianang,2023-07-10T08:39:46Z,- adrianang commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1628506366) at 2023-07-10 01:39 AM PDT -adrianang,2023-07-11T04:38:13Z,- adrianang commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1630103314) at 2023-07-10 09:38 PM PDT -adrianang,2023-07-11T04:48:35Z,- adrianang commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1630110611) at 2023-07-10 09:48 PM PDT -adrianang,2023-07-11T07:56:21Z,- adrianang submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1523669818) at 2023-07-11 12:56 AM PDT -adrianang,2023-07-12T06:52:19Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1525639502) at 2023-07-11 11:52 PM PDT -adrianang,2023-07-15T09:11:36Z,- adrianang commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1636716912) at 2023-07-15 02:11 AM PDT -adrianang,2023-07-16T03:06:49Z,- adrianang pull request merged: [4926](https://github.com/hackforla/website/pull/4926#event-9830276834) at 2023-07-15 08:06 PM PDT -adrianang,2023-07-16T09:09:05Z,- adrianang submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1531707387) at 2023-07-16 02:09 AM PDT -adrianang,2023-07-16T11:09:13Z,- adrianang assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1554142329) at 2023-07-16 04:09 AM PDT -adrianang,2023-07-16T11:12:19Z,- adrianang commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1637055358) at 2023-07-16 04:12 AM PDT -adrianang,2023-07-17T06:42:33Z,- adrianang commented on pull request: [4950](https://github.com/hackforla/website/pull/4950#issuecomment-1637465475) at 2023-07-16 11:42 PM PDT -adrianang,2023-07-17T18:35:30Z,- adrianang submitted pull request review: [4925](https://github.com/hackforla/website/pull/4925#pullrequestreview-1533439791) at 2023-07-17 11:35 AM PDT -adrianang,2023-07-20T10:21:47Z,- adrianang submitted pull request review: [4950](https://github.com/hackforla/website/pull/4950#pullrequestreview-1538938476) at 2023-07-20 03:21 AM PDT -adrianang,2023-07-20T10:42:24Z,- adrianang closed issue by PR 4950: [3732](https://github.com/hackforla/website/issues/3732#event-9872854848) at 2023-07-20 03:42 AM PDT -adrianang,2023-07-22T10:36:46Z,- adrianang submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1542079769) at 2023-07-22 03:36 AM PDT -adrianang,2023-07-22T10:37:19Z,- adrianang closed issue by PR 5006: [4954](https://github.com/hackforla/website/issues/4954#event-9890911332) at 2023-07-22 03:37 AM PDT -adrianang,2023-07-22T11:11:43Z,- adrianang commented on pull request: [5043](https://github.com/hackforla/website/pull/5043#issuecomment-1646559597) at 2023-07-22 04:11 AM PDT -adrianang,2023-07-22T11:30:32Z,- adrianang submitted pull request review: [5043](https://github.com/hackforla/website/pull/5043#pullrequestreview-1542084036) at 2023-07-22 04:30 AM PDT -adrianang,2023-07-22T11:38:20Z,- adrianang commented on pull request: [5044](https://github.com/hackforla/website/pull/5044#issuecomment-1646563617) at 2023-07-22 04:38 AM PDT -adrianang,2023-07-22T11:57:48Z,- adrianang commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:57 AM PDT -adrianang,2023-07-22T12:05:41Z,- adrianang commented on pull request: [5046](https://github.com/hackforla/website/pull/5046#issuecomment-1646568104) at 2023-07-22 05:05 AM PDT -adrianang,2023-07-22T12:18:49Z,- adrianang commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646570722) at 2023-07-22 05:18 AM PDT -adrianang,2023-07-22T19:42:37Z,- adrianang commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646657935) at 2023-07-22 12:42 PM PDT -adrianang,2023-07-23T17:10:56Z,- adrianang commented on pull request: [5050](https://github.com/hackforla/website/pull/5050#issuecomment-1646894135) at 2023-07-23 10:10 AM PDT -adrianang,2023-07-26T01:39:07Z,- adrianang commented on pull request: [5051](https://github.com/hackforla/website/pull/5051#issuecomment-1650835444) at 2023-07-25 06:39 PM PDT -adrianang,2023-07-27T03:19:25Z,- adrianang submitted pull request review: [5043](https://github.com/hackforla/website/pull/5043#pullrequestreview-1548934839) at 2023-07-26 08:19 PM PDT -adrianang,2023-07-27T03:21:49Z,- adrianang closed issue by PR 5043: [5027](https://github.com/hackforla/website/issues/5027#event-9930866277) at 2023-07-26 08:21 PM PDT -adrianang,2023-07-27T04:55:13Z,- adrianang submitted pull request review: [5051](https://github.com/hackforla/website/pull/5051#pullrequestreview-1548998641) at 2023-07-26 09:55 PM PDT -adrianang,2023-07-27T11:00:54Z,- adrianang commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1653389377) at 2023-07-27 04:00 AM PDT -adrianang,2023-07-28T11:25:08Z,- adrianang commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1655522780) at 2023-07-28 04:25 AM PDT -adrianang,2023-07-28T11:27:05Z,- adrianang commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1655524921) at 2023-07-28 04:27 AM PDT -adrianang,2023-07-28T11:55:22Z,- adrianang submitted pull request review: [5049](https://github.com/hackforla/website/pull/5049#pullrequestreview-1551981675) at 2023-07-28 04:55 AM PDT -adrianang,2023-07-28T11:55:41Z,- adrianang closed issue by PR 5049: [4415](https://github.com/hackforla/website/issues/4415#event-9947301425) at 2023-07-28 04:55 AM PDT -adrianang,2023-07-28T12:04:40Z,- adrianang submitted pull request review: [5056](https://github.com/hackforla/website/pull/5056#pullrequestreview-1551993112) at 2023-07-28 05:04 AM PDT -adrianang,2023-07-28T12:05:53Z,- adrianang closed issue by PR 5056: [4939](https://github.com/hackforla/website/issues/4939#event-9947377316) at 2023-07-28 05:05 AM PDT -adrianang,2023-07-28T12:20:45Z,- adrianang commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1655591755) at 2023-07-28 05:20 AM PDT -adrianang,2023-07-29T05:21:44Z,- adrianang submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1553206639) at 2023-07-28 10:21 PM PDT -adrianang,2023-07-29T06:04:23Z,- adrianang submitted pull request review: [5061](https://github.com/hackforla/website/pull/5061#pullrequestreview-1553214803) at 2023-07-28 11:04 PM PDT -adrianang,2023-07-29T06:04:58Z,- adrianang closed issue by PR 5061: [4809](https://github.com/hackforla/website/issues/4809#event-9953848402) at 2023-07-28 11:04 PM PDT -adrianang,2023-07-29T10:42:40Z,- adrianang submitted pull request review: [5063](https://github.com/hackforla/website/pull/5063#pullrequestreview-1553264162) at 2023-07-29 03:42 AM PDT -adrianang,2023-07-29T10:43:11Z,- adrianang closed issue by PR 5063: [4813](https://github.com/hackforla/website/issues/4813#event-9954270812) at 2023-07-29 03:43 AM PDT -adrianang,2023-07-29T11:01:00Z,- adrianang submitted pull request review: [5093](https://github.com/hackforla/website/pull/5093#pullrequestreview-1553265458) at 2023-07-29 04:01 AM PDT -adrianang,2023-07-29T11:01:12Z,- adrianang closed issue by PR 5093: [4798](https://github.com/hackforla/website/issues/4798#event-9954289132) at 2023-07-29 04:01 AM PDT -adrianang,2023-07-29T11:12:40Z,- adrianang submitted pull request review: [5097](https://github.com/hackforla/website/pull/5097#pullrequestreview-1553266367) at 2023-07-29 04:12 AM PDT -adrianang,2023-07-29T11:12:59Z,- adrianang closed issue by PR 5097: [4802](https://github.com/hackforla/website/issues/4802#event-9954302255) at 2023-07-29 04:12 AM PDT -adrianang,2023-07-29T11:30:19Z,- adrianang commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1656709785) at 2023-07-29 04:30 AM PDT -adrianang,2023-07-29T11:39:47Z,- adrianang submitted pull request review: [5107](https://github.com/hackforla/website/pull/5107#pullrequestreview-1553268590) at 2023-07-29 04:39 AM PDT -adrianang,2023-07-30T02:21:33Z,- adrianang submitted pull request review: [5051](https://github.com/hackforla/website/pull/5051#pullrequestreview-1553537594) at 2023-07-29 07:21 PM PDT -adrianang,2023-07-30T02:41:28Z,- adrianang submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1553538512) at 2023-07-29 07:41 PM PDT -adrianang,2023-07-30T02:43:09Z,- adrianang closed issue by PR 5058: [5038](https://github.com/hackforla/website/issues/5038#event-9955919021) at 2023-07-29 07:43 PM PDT -adrianang,2023-07-30T03:04:20Z,- adrianang commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657003717) at 2023-07-29 08:04 PM PDT -adrianang,2023-07-30T04:32:56Z,- adrianang commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1657040122) at 2023-07-29 09:32 PM PDT -adrianang,2023-07-30T05:10:46Z,- adrianang submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1553578780) at 2023-07-29 10:10 PM PDT -adrianang,2023-07-31T00:21:26Z,- adrianang submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1553738935) at 2023-07-30 05:21 PM PDT -adrianang,2023-07-31T00:22:41Z,- adrianang closed issue by PR 5095: [4917](https://github.com/hackforla/website/issues/4917#event-9957754663) at 2023-07-30 05:22 PM PDT -adrianang,2023-07-31T02:49:02Z,- adrianang submitted pull request review: [5037](https://github.com/hackforla/website/pull/5037#pullrequestreview-1553850783) at 2023-07-30 07:49 PM PDT -adrianang,2023-07-31T03:04:51Z,- adrianang commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1657430221) at 2023-07-30 08:04 PM PDT -adrianang,2023-08-02T10:05:29Z,- adrianang commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1661926213) at 2023-08-02 03:05 AM PDT -adrianang,2023-08-02T10:20:22Z,- adrianang commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1661947666) at 2023-08-02 03:20 AM PDT -adrianang,2023-08-05T06:42:59Z,- adrianang submitted pull request review: [5112](https://github.com/hackforla/website/pull/5112#pullrequestreview-1563794463) at 2023-08-04 11:42 PM PDT -adrianang,2023-08-05T06:44:26Z,- adrianang closed issue by PR 5112: [5003](https://github.com/hackforla/website/issues/5003#event-10014600284) at 2023-08-04 11:44 PM PDT -adrianang,2023-08-05T21:47:12Z,- adrianang submitted pull request review: [5122](https://github.com/hackforla/website/pull/5122#pullrequestreview-1564021040) at 2023-08-05 02:47 PM PDT -adrianang,2023-08-05T21:47:22Z,- adrianang closed issue by PR 5122: [4804](https://github.com/hackforla/website/issues/4804#event-10016137352) at 2023-08-05 02:47 PM PDT -adrianang,2023-08-05T22:21:06Z,- adrianang submitted pull request review: [5128](https://github.com/hackforla/website/pull/5128#pullrequestreview-1564024479) at 2023-08-05 03:21 PM PDT -adrianang,2023-08-05T22:21:18Z,- adrianang closed issue by PR 5128: [4913](https://github.com/hackforla/website/issues/4913#event-10016174398) at 2023-08-05 03:21 PM PDT -adrianang,2023-08-06T01:20:19Z,- adrianang submitted pull request review: [5130](https://github.com/hackforla/website/pull/5130#pullrequestreview-1564042398) at 2023-08-05 06:20 PM PDT -adrianang,2023-08-06T01:21:11Z,- adrianang submitted pull request review: [5130](https://github.com/hackforla/website/pull/5130#pullrequestreview-1564042457) at 2023-08-05 06:21 PM PDT -adrianang,2023-08-06T01:21:37Z,- adrianang closed issue by PR 5130: [4299](https://github.com/hackforla/website/issues/4299#event-10016360927) at 2023-08-05 06:21 PM PDT -adrianang,2023-08-06T01:37:14Z,- adrianang submitted pull request review: [5133](https://github.com/hackforla/website/pull/5133#pullrequestreview-1564043992) at 2023-08-05 06:37 PM PDT -adrianang,2023-08-06T01:37:27Z,- adrianang closed issue by PR 5133: [4805](https://github.com/hackforla/website/issues/4805#event-10016377452) at 2023-08-05 06:37 PM PDT -adrianang,2023-08-06T01:49:52Z,- adrianang submitted pull request review: [5142](https://github.com/hackforla/website/pull/5142#pullrequestreview-1564044877) at 2023-08-05 06:49 PM PDT -adrianang,2023-08-06T01:50:05Z,- adrianang closed issue by PR 5142: [5139](https://github.com/hackforla/website/issues/5139#event-10016391340) at 2023-08-05 06:50 PM PDT -adrianang,2023-08-06T02:27:04Z,- adrianang submitted pull request review: [5144](https://github.com/hackforla/website/pull/5144#pullrequestreview-1564048152) at 2023-08-05 07:27 PM PDT -adrianang,2023-08-06T02:36:32Z,- adrianang submitted pull request review: [5145](https://github.com/hackforla/website/pull/5145#pullrequestreview-1564049049) at 2023-08-05 07:36 PM PDT -adrianang,2023-08-06T02:36:54Z,- adrianang closed issue by PR 5145: [5138](https://github.com/hackforla/website/issues/5138#event-10016436832) at 2023-08-05 07:36 PM PDT -adrianang,2023-08-06T02:58:20Z,- adrianang submitted pull request review: [5123](https://github.com/hackforla/website/pull/5123#pullrequestreview-1564051900) at 2023-08-05 07:58 PM PDT -adrianang,2023-08-06T03:38:05Z,- adrianang commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1666698231) at 2023-08-05 08:38 PM PDT -adrianang,2023-08-06T11:38:55Z,- adrianang closed issue by PR 5144: [4808](https://github.com/hackforla/website/issues/4808#event-10017148705) at 2023-08-06 04:38 AM PDT -adrianang,2023-08-09T07:52:26Z,- adrianang submitted pull request review: [5123](https://github.com/hackforla/website/pull/5123#pullrequestreview-1568960214) at 2023-08-09 12:52 AM PDT -adrianang,2023-08-09T07:52:48Z,- adrianang closed issue by PR 5123: [4801](https://github.com/hackforla/website/issues/4801#event-10043593072) at 2023-08-09 12:52 AM PDT -adrianang,2023-08-09T08:02:38Z,- adrianang submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1568978189) at 2023-08-09 01:02 AM PDT -adrianang,2023-08-10T09:41:48Z,- adrianang submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1571476989) at 2023-08-10 02:41 AM PDT -adrianang,2023-08-10T09:43:18Z,- adrianang closed issue by PR 5055: [4504](https://github.com/hackforla/website/issues/4504#event-10057111736) at 2023-08-10 02:43 AM PDT -adrianang,2023-08-19T23:04:06Z,- adrianang commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1685127905) at 2023-08-19 04:04 PM PDT -adrianang,2023-08-19T23:04:31Z,- adrianang closed issue by PR 5235: [5031](https://github.com/hackforla/website/issues/5031#event-10137159611) at 2023-08-19 04:04 PM PDT -adrianang,2023-08-19T23:48:24Z,- adrianang submitted pull request review: [5240](https://github.com/hackforla/website/pull/5240#pullrequestreview-1585767407) at 2023-08-19 04:48 PM PDT -adrianang,2023-08-19T23:48:37Z,- adrianang closed issue by PR 5240: [5201](https://github.com/hackforla/website/issues/5201#event-10137191549) at 2023-08-19 04:48 PM PDT -adrianang,2023-08-19T23:58:22Z,- adrianang submitted pull request review: [5241](https://github.com/hackforla/website/pull/5241#pullrequestreview-1585767842) at 2023-08-19 04:58 PM PDT -adrianang,2023-08-19T23:59:03Z,- adrianang closed issue by PR 5241: [5197](https://github.com/hackforla/website/issues/5197#event-10137198073) at 2023-08-19 04:59 PM PDT -adrianang,2023-08-20T00:06:49Z,- adrianang submitted pull request review: [5243](https://github.com/hackforla/website/pull/5243#pullrequestreview-1585768359) at 2023-08-19 05:06 PM PDT -adrianang,2023-08-20T00:07:02Z,- adrianang closed issue by PR 5243: [5147](https://github.com/hackforla/website/issues/5147#event-10137207260) at 2023-08-19 05:07 PM PDT -adrianang,2023-08-20T02:33:27Z,- adrianang submitted pull request review: [5245](https://github.com/hackforla/website/pull/5245#pullrequestreview-1585775354) at 2023-08-19 07:33 PM PDT -adrianang,2023-08-20T02:58:33Z,- adrianang submitted pull request review: [5247](https://github.com/hackforla/website/pull/5247#pullrequestreview-1585776358) at 2023-08-19 07:58 PM PDT -adrianang,2023-08-20T02:58:54Z,- adrianang closed issue by PR 5247: [5150](https://github.com/hackforla/website/issues/5150#event-10137355023) at 2023-08-19 07:58 PM PDT -adrianang,2023-08-20T03:23:43Z,- adrianang submitted pull request review: [5250](https://github.com/hackforla/website/pull/5250#pullrequestreview-1585777471) at 2023-08-19 08:23 PM PDT -adrianang,2023-08-22T04:18:59Z,- adrianang submitted pull request review: [5245](https://github.com/hackforla/website/pull/5245#pullrequestreview-1588245099) at 2023-08-21 09:18 PM PDT -adrianang,2023-08-22T04:19:07Z,- adrianang closed issue by PR 5245: [5186](https://github.com/hackforla/website/issues/5186#event-10152774426) at 2023-08-21 09:19 PM PDT -adrianang,2023-08-27T02:17:28Z,- adrianang submitted pull request review: [5263](https://github.com/hackforla/website/pull/5263#pullrequestreview-1597063686) at 2023-08-26 07:17 PM PDT -adrianang,2023-08-27T02:18:04Z,- adrianang closed issue by PR 5263: [5184](https://github.com/hackforla/website/issues/5184#event-10201003687) at 2023-08-26 07:18 PM PDT -adrianang,2023-08-27T02:29:19Z,- adrianang submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1597064296) at 2023-08-26 07:29 PM PDT -adrianang,2023-08-27T02:29:52Z,- adrianang closed issue by PR 5276: [5267](https://github.com/hackforla/website/issues/5267#event-10201014294) at 2023-08-26 07:29 PM PDT -adrianang,2023-08-27T02:40:59Z,- adrianang submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1597064865) at 2023-08-26 07:40 PM PDT -adrianang,2023-08-27T02:41:23Z,- adrianang closed issue by PR 5283: [5199](https://github.com/hackforla/website/issues/5199#event-10201023611) at 2023-08-26 07:41 PM PDT -adrianang,2023-08-27T02:57:42Z,- adrianang submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1597065755) at 2023-08-26 07:57 PM PDT -adrianang,2023-08-27T02:57:53Z,- adrianang closed issue by PR 5284: [5256](https://github.com/hackforla/website/issues/5256#event-10201036442) at 2023-08-26 07:57 PM PDT -adrianang,2023-08-27T03:07:15Z,- adrianang submitted pull request review: [5262](https://github.com/hackforla/website/pull/5262#pullrequestreview-1597066262) at 2023-08-26 08:07 PM PDT -adrianang,2023-08-27T03:08:56Z,- adrianang closed issue by PR 5262: [5185](https://github.com/hackforla/website/issues/5185#event-10201045922) at 2023-08-26 08:08 PM PDT -adrianang,2023-08-27T03:32:45Z,- adrianang submitted pull request review: [5294](https://github.com/hackforla/website/pull/5294#pullrequestreview-1597067585) at 2023-08-26 08:32 PM PDT -adrianang,2023-08-27T03:33:02Z,- adrianang closed issue by PR 5294: [5173](https://github.com/hackforla/website/issues/5173#event-10201065596) at 2023-08-26 08:33 PM PDT -adrianang,2023-08-27T03:47:54Z,- adrianang submitted pull request review: [5295](https://github.com/hackforla/website/pull/5295#pullrequestreview-1597068313) at 2023-08-26 08:47 PM PDT -adrianang,2023-08-27T03:48:16Z,- adrianang closed issue by PR 5295: [5140](https://github.com/hackforla/website/issues/5140#event-10201076178) at 2023-08-26 08:48 PM PDT -adrianang,2023-08-27T03:57:08Z,- adrianang commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1694562699) at 2023-08-26 08:57 PM PDT -adrianang,2023-08-27T11:13:52Z,- adrianang commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1694639204) at 2023-08-27 04:13 AM PDT -adrianang,2023-09-03T00:00:47Z,- adrianang submitted pull request review: [5397](https://github.com/hackforla/website/pull/5397#pullrequestreview-1608393726) at 2023-09-02 05:00 PM PDT -adrianang,2023-09-03T00:00:57Z,- adrianang closed issue by PR 5397: [5369](https://github.com/hackforla/website/issues/5369#event-10265025978) at 2023-09-02 05:00 PM PDT -adrianang,2023-09-03T00:14:33Z,- adrianang submitted pull request review: [5398](https://github.com/hackforla/website/pull/5398#pullrequestreview-1608394787) at 2023-09-02 05:14 PM PDT -adrianang,2023-09-03T00:25:34Z,- adrianang submitted pull request review: [5399](https://github.com/hackforla/website/pull/5399#pullrequestreview-1608395485) at 2023-09-02 05:25 PM PDT -adrianang,2023-09-03T00:26:53Z,- adrianang closed issue by PR 5399: [5153](https://github.com/hackforla/website/issues/5153#event-10265059643) at 2023-09-02 05:26 PM PDT -adrianang,2023-09-03T00:35:51Z,- adrianang commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1703973538) at 2023-09-02 05:35 PM PDT -adrianang,2023-09-04T10:34:42Z,- adrianang submitted pull request review: [5398](https://github.com/hackforla/website/pull/5398#pullrequestreview-1609254118) at 2023-09-04 03:34 AM PDT -adrianang,2023-09-04T10:34:54Z,- adrianang closed issue by PR 5398: [4466](https://github.com/hackforla/website/issues/4466#event-10272381851) at 2023-09-04 03:34 AM PDT -adrianang,2023-10-08T08:50:55Z,- adrianang submitted pull request review: [5643](https://github.com/hackforla/website/pull/5643#pullrequestreview-1663189975) at 2023-10-08 01:50 AM PDT -adrianang,2023-10-08T08:51:10Z,- adrianang closed issue by PR 5643: [5177](https://github.com/hackforla/website/issues/5177#event-10583601265) at 2023-10-08 01:51 AM PDT -adrianang,2023-10-08T09:15:20Z,- adrianang submitted pull request review: [5659](https://github.com/hackforla/website/pull/5659#pullrequestreview-1663193343) at 2023-10-08 02:15 AM PDT -adrianang,2023-10-08T09:15:42Z,- adrianang closed issue by PR 5659: [5631](https://github.com/hackforla/website/issues/5631#event-10583640417) at 2023-10-08 02:15 AM PDT -adrianang,2023-10-08T09:39:48Z,- adrianang submitted pull request review: [5663](https://github.com/hackforla/website/pull/5663#pullrequestreview-1663198975) at 2023-10-08 02:39 AM PDT -adrianang,2023-10-08T09:41:18Z,- adrianang closed issue by PR 5663: [5628](https://github.com/hackforla/website/issues/5628#event-10583687044) at 2023-10-08 02:41 AM PDT -adrianang,2023-10-08T10:04:56Z,- adrianang submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1663202578) at 2023-10-08 03:04 AM PDT -adrianang,2023-10-08T10:05:11Z,- adrianang closed issue by PR 5664: [5319](https://github.com/hackforla/website/issues/5319#event-10583722928) at 2023-10-08 03:05 AM PDT -adrianang,2023-10-08T10:23:21Z,- adrianang submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1663205403) at 2023-10-08 03:23 AM PDT -adrianang,2023-10-08T10:36:17Z,- adrianang commented on pull request: [5667](https://github.com/hackforla/website/pull/5667#issuecomment-1751993138) at 2023-10-08 03:36 AM PDT -adrianang,2023-10-11T01:35:26Z,- adrianang submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1669593507) at 2023-10-10 06:35 PM PDT -adrianang,2023-10-11T01:35:35Z,- adrianang closed issue by PR 5658: [5588](https://github.com/hackforla/website/issues/5588#event-10611988566) at 2023-10-10 06:35 PM PDT -adrianang,2023-10-22T11:07:37Z,- adrianang commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-1774063999) at 2023-10-22 04:07 AM PDT -adrianang,2023-10-22T11:07:37Z,- adrianang closed issue as completed: [5747](https://github.com/hackforla/website/issues/5747#event-10733078149) at 2023-10-22 04:07 AM PDT -adrianang,2023-10-22T11:08:50Z,- adrianang reopened issue: [5747](https://github.com/hackforla/website/issues/5747#event-10733078149) at 2023-10-22 04:08 AM PDT -adrianang,2023-10-22T11:10:05Z,- adrianang commented on pull request: [5748](https://github.com/hackforla/website/pull/5748#issuecomment-1774064441) at 2023-10-22 04:10 AM PDT -adrianang,2023-10-22T11:11:40Z,- adrianang commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-1774064796) at 2023-10-22 04:11 AM PDT -adrianang,2023-10-22T11:11:40Z,- adrianang closed issue as not planned: [5747](https://github.com/hackforla/website/issues/5747#event-10733084482) at 2023-10-22 04:11 AM PDT -adrianang,2023-11-03T09:02:10Z,- adrianang opened pull request: [5834](https://github.com/hackforla/website/pull/5834) at 2023-11-03 02:02 AM PDT -adrianang,2023-11-05T11:32:42Z,- adrianang commented on pull request: [5834](https://github.com/hackforla/website/pull/5834#issuecomment-1793710886) at 2023-11-05 03:32 AM PST -adrianang,2023-11-08T21:43:12Z,- adrianang pull request merged: [5834](https://github.com/hackforla/website/pull/5834#event-10906130262) at 2023-11-08 01:43 PM PST -agosmou,3787,SKILLS ISSUE -agosmou,2023-01-04T04:47:58Z,- agosmou opened issue: [3787](https://github.com/hackforla/website/issues/3787) at 2023-01-03 08:47 PM PST -agosmou,2023-02-13T09:41:29Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1427628560) at 2023-02-13 01:41 AM PST -agosmou,2023-02-16T01:56:08Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1432358642) at 2023-02-15 05:56 PM PST -agosmou,2023-02-21T04:36:57Z,- agosmou assigned to issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437772588) at 2023-02-20 08:36 PM PST -agosmou,2023-02-21T04:37:39Z,- agosmou unassigned from issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437772588) at 2023-02-20 08:37 PM PST -agosmou,2023-02-21T04:37:42Z,- agosmou assigned to issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437772588) at 2023-02-20 08:37 PM PST -agosmou,2023-02-21T04:38:41Z,- agosmou unassigned from issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437772588) at 2023-02-20 08:38 PM PST -agosmou,2023-02-21T04:38:42Z,- agosmou assigned to issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437772588) at 2023-02-20 08:38 PM PST -agosmou,2023-02-21T05:17:44Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437874914) at 2023-02-20 09:17 PM PST -agosmou,2023-03-06T09:02:33Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1455739090) at 2023-03-06 01:02 AM PST -agosmou,2023-03-06T09:06:47Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1455745973) at 2023-03-06 01:06 AM PST -agosmou,2023-03-15T01:26:24Z,- agosmou assigned to issue: [3987](https://github.com/hackforla/website/issues/3987) at 2023-03-14 06:26 PM PDT -agosmou,2023-03-15T01:44:50Z,- agosmou commented on issue: [3987](https://github.com/hackforla/website/issues/3987#issuecomment-1469155989) at 2023-03-14 06:44 PM PDT -agosmou,2023-03-15T03:03:12Z,- agosmou opened pull request: [4191](https://github.com/hackforla/website/pull/4191) at 2023-03-14 08:03 PM PDT -agosmou,2023-03-20T03:28:53Z,- agosmou pull request merged: [4191](https://github.com/hackforla/website/pull/4191#event-8789834228) at 2023-03-19 08:28 PM PDT -agosmou,2023-04-14T21:19:22Z,- agosmou assigned to issue: [4450](https://github.com/hackforla/website/issues/4450) at 2023-04-14 02:19 PM PDT -agosmou,2023-04-14T22:58:46Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1509373629) at 2023-04-14 03:58 PM PDT -agosmou,2023-04-14T23:03:11Z,- agosmou unassigned from issue: [4450](https://github.com/hackforla/website/issues/4450#issuecomment-1509285200) at 2023-04-14 04:03 PM PDT -agosmou,2023-04-14T23:03:35Z,- agosmou commented on issue: [4450](https://github.com/hackforla/website/issues/4450#issuecomment-1509376520) at 2023-04-14 04:03 PM PDT -agosmou,2023-04-14T23:04:34Z,- agosmou assigned to issue: [4382](https://github.com/hackforla/website/issues/4382) at 2023-04-14 04:04 PM PDT -agosmou,2023-04-14T23:37:33Z,- agosmou opened pull request: [4519](https://github.com/hackforla/website/pull/4519) at 2023-04-14 04:37 PM PDT -agosmou,2023-04-14T23:49:54Z,- agosmou commented on issue: [4382](https://github.com/hackforla/website/issues/4382#issuecomment-1509400329) at 2023-04-14 04:49 PM PDT -agosmou,2023-04-15T04:31:57Z,- agosmou commented on pull request: [4519](https://github.com/hackforla/website/pull/4519#issuecomment-1509498707) at 2023-04-14 09:31 PM PDT -agosmou,2023-04-15T22:23:22Z,- agosmou commented on pull request: [4519](https://github.com/hackforla/website/pull/4519#issuecomment-1509989606) at 2023-04-15 03:23 PM PDT -agosmou,2023-04-17T21:46:32Z,- agosmou pull request merged: [4519](https://github.com/hackforla/website/pull/4519#event-9029423084) at 2023-04-17 02:46 PM PDT -agosmou,2023-04-17T23:46:31Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1512243501) at 2023-04-17 04:46 PM PDT -agosmou,2023-04-19T03:30:15Z,- agosmou assigned to issue: [4450](https://github.com/hackforla/website/issues/4450#issuecomment-1509376520) at 2023-04-18 08:30 PM PDT -agosmou,2023-04-19T03:31:32Z,- agosmou commented on issue: [4450](https://github.com/hackforla/website/issues/4450#issuecomment-1514082577) at 2023-04-18 08:31 PM PDT -agosmou,2023-04-19T19:09:14Z,- agosmou opened pull request: [4548](https://github.com/hackforla/website/pull/4548) at 2023-04-19 12:09 PM PDT -agosmou,2023-04-19T19:16:52Z,- agosmou commented on issue: [4450](https://github.com/hackforla/website/issues/4450#issuecomment-1515246447) at 2023-04-19 12:16 PM PDT -agosmou,2023-04-20T19:28:22Z,- agosmou pull request merged: [4548](https://github.com/hackforla/website/pull/4548#event-9060817451) at 2023-04-20 12:28 PM PDT -agosmou,2023-04-24T00:08:26Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1519203754) at 2023-04-23 05:08 PM PDT -agosmou,2023-04-26T18:53:42Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1523895984) at 2023-04-26 11:53 AM PDT -agosmou,2023-04-27T08:43:13Z,- agosmou opened pull request: [4573](https://github.com/hackforla/website/pull/4573) at 2023-04-27 01:43 AM PDT -agosmou,2023-04-27T08:59:13Z,- agosmou submitted pull request review: [4569](https://github.com/hackforla/website/pull/4569#pullrequestreview-1403544518) at 2023-04-27 01:59 AM PDT -agosmou,2023-04-27T09:01:30Z,- agosmou submitted pull request review: [4570](https://github.com/hackforla/website/pull/4570#pullrequestreview-1403551816) at 2023-04-27 02:01 AM PDT -agosmou,2023-04-28T18:21:16Z,- agosmou commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1527931681) at 2023-04-28 11:21 AM PDT -agosmou,2023-04-28T18:27:43Z,- agosmou commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1527937801) at 2023-04-28 11:27 AM PDT -agosmou,2023-04-28T19:53:59Z,- agosmou commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1528020138) at 2023-04-28 12:53 PM PDT -agosmou,2023-04-28T21:45:38Z,- agosmou commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1528125064) at 2023-04-28 02:45 PM PDT -agosmou,2023-05-02T04:19:06Z,- agosmou pull request merged: [4573](https://github.com/hackforla/website/pull/4573#event-9141592994) at 2023-05-01 09:19 PM PDT -agosmou,2023-05-02T06:27:45Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1530950659) at 2023-05-01 11:27 PM PDT -agosmou,2023-05-08T05:51:32Z,- agosmou assigned to issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1534089848) at 2023-05-07 10:51 PM PDT -agosmou,2023-05-08T05:53:27Z,- agosmou commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1537790486) at 2023-05-07 10:53 PM PDT -agosmou,2023-05-08T06:00:46Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1537796637) at 2023-05-07 11:00 PM PDT -agosmou,2023-05-16T06:11:56Z,- agosmou commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1549050520) at 2023-05-15 11:11 PM PDT -agosmou,2023-05-18T03:53:52Z,- agosmou commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1552364944) at 2023-05-17 08:53 PM PDT -agosmou,2023-05-18T19:12:16Z,- agosmou commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1553519289) at 2023-05-18 12:12 PM PDT -agosmou,2023-05-18T21:26:36Z,- agosmou opened pull request: [4694](https://github.com/hackforla/website/pull/4694) at 2023-05-18 02:26 PM PDT -agosmou,2023-05-18T21:31:24Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1553671300) at 2023-05-18 02:31 PM PDT -agosmou,2023-05-19T05:52:06Z,- agosmou opened issue: [4699](https://github.com/hackforla/website/issues/4699) at 2023-05-18 10:52 PM PDT -agosmou,2023-05-21T04:25:48Z,- agosmou commented on pull request: [4694](https://github.com/hackforla/website/pull/4694#issuecomment-1556079615) at 2023-05-20 09:25 PM PDT -agosmou,2023-05-21T06:15:11Z,- agosmou pull request merged: [4694](https://github.com/hackforla/website/pull/4694#event-9295443462) at 2023-05-20 11:15 PM PDT -agosmou,2023-05-22T00:00:45Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1556334390) at 2023-05-21 05:00 PM PDT -agosmou,2023-05-22T00:02:26Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1556335233) at 2023-05-21 05:02 PM PDT -agosmou,2023-05-30T04:58:36Z,- agosmou assigned to issue: [4753](https://github.com/hackforla/website/issues/4753) at 2023-05-29 09:58 PM PDT -agosmou,2023-05-30T04:59:15Z,- agosmou commented on issue: [4753](https://github.com/hackforla/website/issues/4753#issuecomment-1567755228) at 2023-05-29 09:59 PM PDT -agosmou,2023-05-31T05:35:10Z,- agosmou opened pull request: [4760](https://github.com/hackforla/website/pull/4760) at 2023-05-30 10:35 PM PDT -agosmou,2023-06-01T04:43:23Z,- agosmou commented on pull request: [4760](https://github.com/hackforla/website/pull/4760#issuecomment-1571329647) at 2023-05-31 09:43 PM PDT -agosmou,2023-06-01T14:50:36Z,- agosmou commented on pull request: [4760](https://github.com/hackforla/website/pull/4760#issuecomment-1572204493) at 2023-06-01 07:50 AM PDT -agosmou,2023-06-01T19:40:11Z,- agosmou pull request merged: [4760](https://github.com/hackforla/website/pull/4760#event-9407247915) at 2023-06-01 12:40 PM PDT -agosmou,2023-06-02T03:27:13Z,- agosmou opened issue: [4769](https://github.com/hackforla/website/issues/4769) at 2023-06-01 08:27 PM PDT -agosmou,2023-06-02T03:35:04Z,- agosmou opened issue: [4770](https://github.com/hackforla/website/issues/4770) at 2023-06-01 08:35 PM PDT -agosmou,2023-06-12T23:25:30Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1588242939) at 2023-06-12 04:25 PM PDT -agosmou,2023-07-05T21:47:28Z,- agosmou commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1622571219) at 2023-07-05 02:47 PM PDT -agosmou,2024-02-20T23:39:43Z,- agosmou unassigned from issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1955364698) at 2024-02-20 03:39 PM PST -aguilar-victor,8007,SKILLS ISSUE -aguilar-victor,2025-03-19T03:43:18Z,- aguilar-victor opened issue: [8007](https://github.com/hackforla/website/issues/8007) at 2025-03-18 08:43 PM PDT -aguilar-victor,2025-03-19T03:43:19Z,- aguilar-victor assigned to issue: [8007](https://github.com/hackforla/website/issues/8007) at 2025-03-18 08:43 PM PDT -agutiernc,4984,SKILLS ISSUE -agutiernc,2023-07-18T01:58:24Z,- agutiernc opened issue: [4984](https://github.com/hackforla/website/issues/4984) at 2023-07-17 06:58 PM PDT -agutiernc,2023-07-18T02:29:04Z,- agutiernc assigned to issue: [4984](https://github.com/hackforla/website/issues/4984) at 2023-07-17 07:29 PM PDT -agutiernc,2023-08-03T23:22:32Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1664755529) at 2023-08-03 04:22 PM PDT -agutiernc,2023-08-04T19:46:32Z,- agutiernc assigned to issue: [5137](https://github.com/hackforla/website/issues/5137) at 2023-08-04 12:46 PM PDT -agutiernc,2023-08-08T01:05:44Z,- agutiernc opened pull request: [5161](https://github.com/hackforla/website/pull/5161) at 2023-08-07 06:05 PM PDT -agutiernc,2023-08-08T21:36:11Z,- agutiernc commented on pull request: [5161](https://github.com/hackforla/website/pull/5161#issuecomment-1670341054) at 2023-08-08 02:36 PM PDT -agutiernc,2023-08-09T03:33:53Z,- agutiernc pull request merged: [5161](https://github.com/hackforla/website/pull/5161#event-10041971345) at 2023-08-08 08:33 PM PDT -agutiernc,2023-08-13T21:52:54Z,- agutiernc assigned to issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1676457241) at 2023-08-13 02:52 PM PDT -agutiernc,2023-08-14T23:00:30Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1678197362) at 2023-08-14 04:00 PM PDT -agutiernc,2023-08-14T23:49:23Z,- agutiernc commented on issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1678238961) at 2023-08-14 04:49 PM PDT -agutiernc,2023-08-15T00:48:07Z,- agutiernc opened pull request: [5203](https://github.com/hackforla/website/pull/5203) at 2023-08-14 05:48 PM PDT -agutiernc,2023-08-17T19:50:20Z,- agutiernc pull request merged: [5203](https://github.com/hackforla/website/pull/5203#event-10123356903) at 2023-08-17 12:50 PM PDT -agutiernc,2023-08-23T21:22:04Z,- agutiernc commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1690658292) at 2023-08-23 02:22 PM PDT -agutiernc,2023-08-24T05:55:09Z,- agutiernc submitted pull request review: [5262](https://github.com/hackforla/website/pull/5262#pullrequestreview-1592827347) at 2023-08-23 10:55 PM PDT -agutiernc,2023-09-03T02:27:57Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1703990075) at 2023-09-02 07:27 PM PDT -agutiernc,2023-09-05T02:09:24Z,- agutiernc commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1705847412) at 2023-09-04 07:09 PM PDT -agutiernc,2023-09-05T20:25:18Z,- agutiernc assigned to issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1707202389) at 2023-09-05 01:25 PM PDT -agutiernc,2023-09-05T20:29:59Z,- agutiernc commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1707269145) at 2023-09-05 01:29 PM PDT -agutiernc,2023-09-05T22:19:56Z,- agutiernc submitted pull request review: [5423](https://github.com/hackforla/website/pull/5423#pullrequestreview-1612029387) at 2023-09-05 03:19 PM PDT -agutiernc,2023-09-05T22:30:48Z,- agutiernc commented on pull request: [5449](https://github.com/hackforla/website/pull/5449#issuecomment-1707397297) at 2023-09-05 03:30 PM PDT -agutiernc,2023-09-05T23:04:01Z,- agutiernc submitted pull request review: [5449](https://github.com/hackforla/website/pull/5449#pullrequestreview-1612061073) at 2023-09-05 04:04 PM PDT -agutiernc,2023-09-07T04:52:10Z,- agutiernc opened pull request: [5454](https://github.com/hackforla/website/pull/5454) at 2023-09-06 09:52 PM PDT -agutiernc,2023-09-09T23:37:33Z,- agutiernc commented on pull request: [5465](https://github.com/hackforla/website/pull/5465#issuecomment-1712662540) at 2023-09-09 04:37 PM PDT -agutiernc,2023-09-10T04:07:31Z,- agutiernc pull request merged: [5454](https://github.com/hackforla/website/pull/5454#event-10325447782) at 2023-09-09 09:07 PM PDT -agutiernc,2023-09-10T04:58:55Z,- agutiernc submitted pull request review: [5465](https://github.com/hackforla/website/pull/5465#pullrequestreview-1618728952) at 2023-09-09 09:58 PM PDT -agutiernc,2023-09-16T00:54:42Z,- agutiernc commented on pull request: [5523](https://github.com/hackforla/website/pull/5523#issuecomment-1722086030) at 2023-09-15 05:54 PM PDT -agutiernc,2023-09-16T03:36:32Z,- agutiernc submitted pull request review: [5523](https://github.com/hackforla/website/pull/5523#pullrequestreview-1629895504) at 2023-09-15 08:36 PM PDT -agutiernc,2023-09-20T05:00:08Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1726972041) at 2023-09-19 10:00 PM PDT -agutiernc,2023-09-20T05:00:08Z,- agutiernc closed issue as completed: [4984](https://github.com/hackforla/website/issues/4984#event-10417881185) at 2023-09-19 10:00 PM PDT -agutiernc,2023-09-22T01:48:00Z,- agutiernc commented on pull request: [5568](https://github.com/hackforla/website/pull/5568#issuecomment-1730675110) at 2023-09-21 06:48 PM PDT -agutiernc,2023-09-23T23:42:45Z,- agutiernc submitted pull request review: [5568](https://github.com/hackforla/website/pull/5568#pullrequestreview-1640957102) at 2023-09-23 04:42 PM PDT -agutiernc,2023-10-02T23:21:23Z,- agutiernc commented on pull request: [5645](https://github.com/hackforla/website/pull/5645#issuecomment-1743908053) at 2023-10-02 04:21 PM PDT -agutiernc,2023-10-03T06:51:53Z,- agutiernc assigned to issue: [5629](https://github.com/hackforla/website/issues/5629#issuecomment-1740163998) at 2023-10-02 11:51 PM PDT -agutiernc,2023-10-03T06:53:24Z,- agutiernc commented on issue: [5629](https://github.com/hackforla/website/issues/5629#issuecomment-1744316021) at 2023-10-02 11:53 PM PDT -agutiernc,2023-10-04T02:31:14Z,- agutiernc submitted pull request review: [5645](https://github.com/hackforla/website/pull/5645#pullrequestreview-1656553151) at 2023-10-03 07:31 PM PDT -agutiernc,2023-10-06T22:58:30Z,- agutiernc opened pull request: [5668](https://github.com/hackforla/website/pull/5668) at 2023-10-06 03:58 PM PDT -agutiernc,2023-10-12T01:30:50Z,- agutiernc commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1758775400) at 2023-10-11 06:30 PM PDT -agutiernc,2023-10-14T01:33:27Z,- agutiernc commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1762465345) at 2023-10-13 06:33 PM PDT -agutiernc,2023-10-18T03:45:33Z,- agutiernc pull request merged: [5668](https://github.com/hackforla/website/pull/5668#event-10686704824) at 2023-10-17 08:45 PM PDT -agutiernc,2023-11-03T20:40:19Z,- agutiernc assigned to issue: [5830](https://github.com/hackforla/website/issues/5830#issuecomment-1791925003) at 2023-11-03 01:40 PM PDT -agutiernc,2023-11-03T20:42:12Z,- agutiernc commented on issue: [5830](https://github.com/hackforla/website/issues/5830#issuecomment-1793070980) at 2023-11-03 01:42 PM PDT -agutiernc,2023-11-06T02:24:52Z,- agutiernc commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1793981847) at 2023-11-05 06:24 PM PST -agutiernc,2023-11-06T03:32:45Z,- agutiernc commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1794032114) at 2023-11-05 07:32 PM PST -agutiernc,2023-11-06T22:41:08Z,- agutiernc submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1716435981) at 2023-11-06 02:41 PM PST -agutiernc,2023-11-12T06:41:16Z,- agutiernc opened pull request: [5892](https://github.com/hackforla/website/pull/5892) at 2023-11-11 10:41 PM PST -agutiernc,2023-11-12T07:28:18Z,- agutiernc commented on pull request: [5892](https://github.com/hackforla/website/pull/5892#issuecomment-1807037402) at 2023-11-11 11:28 PM PST -agutiernc,2023-11-12T07:28:18Z,- agutiernc pull request closed w/o merging: [5892](https://github.com/hackforla/website/pull/5892#event-10933910651) at 2023-11-11 11:28 PM PST -agutiernc,2023-11-14T00:26:22Z,- agutiernc opened pull request: [5900](https://github.com/hackforla/website/pull/5900) at 2023-11-13 04:26 PM PST -agutiernc,2023-11-16T00:06:51Z,- agutiernc commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1813494314) at 2023-11-15 04:06 PM PST -agutiernc,2023-11-16T00:07:57Z,- agutiernc commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1813495279) at 2023-11-15 04:07 PM PST -agutiernc,2023-11-16T00:13:16Z,- agutiernc commented on pull request: [5896](https://github.com/hackforla/website/pull/5896#issuecomment-1813499906) at 2023-11-15 04:13 PM PST -agutiernc,2023-11-18T03:40:37Z,- agutiernc submitted pull request review: [5896](https://github.com/hackforla/website/pull/5896#pullrequestreview-1738188018) at 2023-11-17 07:40 PM PST -agutiernc,2023-11-29T02:15:08Z,- agutiernc commented on pull request: [5940](https://github.com/hackforla/website/pull/5940#issuecomment-1831094299) at 2023-11-28 06:15 PM PST -agutiernc,2023-11-29T22:28:18Z,- agutiernc commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1832800938) at 2023-11-29 02:28 PM PST -agutiernc,2023-11-30T06:18:35Z,- agutiernc submitted pull request review: [5940](https://github.com/hackforla/website/pull/5940#pullrequestreview-1756715771) at 2023-11-29 10:18 PM PST -agutiernc,2024-01-11T01:24:05Z,- agutiernc opened pull request: [6098](https://github.com/hackforla/website/pull/6098) at 2024-01-10 05:24 PM PST -agutiernc,2024-01-15T20:23:57Z,- agutiernc pull request merged: [6098](https://github.com/hackforla/website/pull/6098#event-11491882225) at 2024-01-15 12:23 PM PST -agutiernc,2024-01-20T21:25:50Z,- agutiernc commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1902268605) at 2024-01-20 01:25 PM PST -agutiernc,2024-01-22T04:15:59Z,- agutiernc submitted pull request review: [6133](https://github.com/hackforla/website/pull/6133#pullrequestreview-1835615951) at 2024-01-21 08:15 PM PST -agutiernc,2024-01-23T03:17:00Z,- agutiernc commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1905222133) at 2024-01-22 07:17 PM PST -agutiernc,2024-01-23T03:21:04Z,- agutiernc submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1837794241) at 2024-01-22 07:21 PM PST -agutiernc,2024-01-25T00:36:18Z,- agutiernc commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1909154150) at 2024-01-24 04:36 PM PST -agutiernc,2024-01-26T01:49:10Z,- agutiernc commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1911281225) at 2024-01-25 05:49 PM PST -agutiernc,2024-01-26T01:54:14Z,- agutiernc submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1844975679) at 2024-01-25 05:54 PM PST -agutiernc,2024-03-10T09:33:16Z,- agutiernc commented on pull request: [6441](https://github.com/hackforla/website/pull/6441#issuecomment-1987159923) at 2024-03-10 02:33 AM PDT -agutiernc,2024-03-12T03:28:35Z,- agutiernc commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1990032576) at 2024-03-11 08:28 PM PDT -agutiernc,2024-03-13T01:43:44Z,- agutiernc commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1993057824) at 2024-03-12 06:43 PM PDT -ahdithebomb,2020-11-29T20:00:05Z,- ahdithebomb assigned to issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-11-29 12:00 PM PST -ahdithebomb,2020-12-06T18:54:17Z,- ahdithebomb opened issue: [831](https://github.com/hackforla/website/issues/831) at 2020-12-06 10:54 AM PST -ahdithebomb,2020-12-06T18:57:42Z,- ahdithebomb unassigned from issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-12-06 10:57 AM PST -ahdithebomb,2020-12-08T21:10:59Z,- ahdithebomb assigned to issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-643688618) at 2020-12-08 01:10 PM PST -ahdithebomb,2020-12-08T21:12:48Z,- ahdithebomb closed issue as completed: [538](https://github.com/hackforla/website/issues/538#event-4086783598) at 2020-12-08 01:12 PM PST -ahdithebomb,2020-12-08T21:12:58Z,- ahdithebomb reopened issue: [538](https://github.com/hackforla/website/issues/538#event-4086783598) at 2020-12-08 01:12 PM PST -ahdithebomb,2020-12-08T21:43:22Z,- ahdithebomb commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-741080714) at 2020-12-08 01:43 PM PST -ahdithebomb,2020-12-08T21:51:26Z,- ahdithebomb assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -ahdithebomb,2020-12-08T21:54:12Z,- ahdithebomb unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -ahdithebomb,2020-12-08T21:55:41Z,- ahdithebomb assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -ahdithebomb,2020-12-08T21:56:50Z,- ahdithebomb commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-741097431) at 2020-12-08 01:56 PM PST -ahdithebomb,2020-12-13T18:13:45Z,- ahdithebomb commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-744046496) at 2020-12-13 10:13 AM PST -ahdithebomb,2020-12-13T18:15:32Z,- ahdithebomb assigned to issue: [747](https://github.com/hackforla/website/issues/747) at 2020-12-13 10:15 AM PST -ahdithebomb,2020-12-13T18:17:12Z,- ahdithebomb commented on issue: [747](https://github.com/hackforla/website/issues/747#issuecomment-744046997) at 2020-12-13 10:17 AM PST -ahdithebomb,2020-12-13T18:17:39Z,- ahdithebomb commented on issue: [747](https://github.com/hackforla/website/issues/747#issuecomment-744047060) at 2020-12-13 10:17 AM PST -ahdithebomb,2020-12-15T21:04:45Z,- ahdithebomb commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-745566450) at 2020-12-15 01:04 PM PST -ahdithebomb,2020-12-15T21:09:50Z,- ahdithebomb commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-745569057) at 2020-12-15 01:09 PM PST -ahdithebomb,2020-12-15T21:21:59Z,- ahdithebomb assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:21 PM PST -ahdithebomb,2020-12-15T21:29:05Z,- ahdithebomb commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-745579069) at 2020-12-15 01:29 PM PST -ahdithebomb,2020-12-15T21:41:27Z,- ahdithebomb commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745585299) at 2020-12-15 01:41 PM PST -ahdithebomb,2020-12-16T03:25:19Z,- ahdithebomb opened pull request: [850](https://github.com/hackforla/website/pull/850) at 2020-12-15 07:25 PM PST -ahdithebomb,2020-12-16T03:26:52Z,- ahdithebomb pull request merged: [850](https://github.com/hackforla/website/pull/850#event-4117650708) at 2020-12-15 07:26 PM PST -ahdithebomb,2020-12-20T18:36:35Z,- ahdithebomb commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2020-12-20 10:36 AM PST -ahdithebomb,2020-12-20T18:37:54Z,- ahdithebomb commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-748644518) at 2020-12-20 10:37 AM PST -ahdithebomb,2020-12-20T19:48:46Z,- ahdithebomb commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-748652644) at 2020-12-20 11:48 AM PST -ahdithebomb,2020-12-20T19:50:48Z,- ahdithebomb commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-748652850) at 2020-12-20 11:50 AM PST -ahdithebomb,2020-12-20T20:08:55Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748664731) at 2020-12-20 12:08 PM PST -ahdithebomb,2020-12-20T20:15:56Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748665437) at 2020-12-20 12:15 PM PST -ahdithebomb,2020-12-20T20:39:32Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748667928) at 2020-12-20 12:39 PM PST -ahdithebomb,2020-12-20T20:46:50Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748668725) at 2020-12-20 12:46 PM PST -ahdithebomb,2020-12-20T20:48:40Z,- ahdithebomb unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -ahdithebomb,2020-12-20T20:48:40Z,- ahdithebomb unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -ahdithebomb,2020-12-20T21:11:29Z,- ahdithebomb opened issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:11 PM PST -ahdithebomb,2020-12-20T21:14:14Z,- ahdithebomb assigned to issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:14 PM PST -ahdithebomb,2020-12-20T21:19:27Z,- ahdithebomb opened issue: [957](https://github.com/hackforla/website/issues/957) at 2020-12-20 01:19 PM PST -ahdithebomb,2020-12-20T21:20:08Z,- ahdithebomb assigned to issue: [957](https://github.com/hackforla/website/issues/957) at 2020-12-20 01:20 PM PST -ahdithebomb,2020-12-20T21:30:30Z,- ahdithebomb unassigned from issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:30 PM PST -ahdithebomb,2020-12-21T22:54:39Z,- ahdithebomb unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2020-12-21 02:54 PM PST -ahdithebomb,2020-12-22T19:07:39Z,- ahdithebomb opened issue: [939](https://github.com/hackforla/website/issues/939) at 2020-12-22 11:07 AM PST -ahdithebomb,2020-12-22T19:07:39Z,- ahdithebomb assigned to issue: [939](https://github.com/hackforla/website/issues/939) at 2020-12-22 11:07 AM PST -ahdithebomb,2020-12-22T19:28:50Z,- ahdithebomb opened issue: [940](https://github.com/hackforla/website/issues/940) at 2020-12-22 11:28 AM PST -ahdithebomb,2020-12-22T19:28:50Z,- ahdithebomb assigned to issue: [940](https://github.com/hackforla/website/issues/940) at 2020-12-22 11:28 AM PST -ahdithebomb,2020-12-22T22:03:51Z,- ahdithebomb opened issue: [867](https://github.com/hackforla/website/issues/867) at 2020-12-22 02:03 PM PST -ahdithebomb,2020-12-29T19:19:25Z,- ahdithebomb commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-752212279) at 2020-12-29 11:19 AM PST -ahdithebomb,2020-12-29T21:33:07Z,- ahdithebomb opened issue: [879](https://github.com/hackforla/website/issues/879) at 2020-12-29 01:33 PM PST -ahdithebomb,2020-12-29T21:33:07Z,- ahdithebomb assigned to issue: [879](https://github.com/hackforla/website/issues/879) at 2020-12-29 01:33 PM PST -ahdithebomb,2020-12-29T21:39:54Z,- ahdithebomb opened issue: [937](https://github.com/hackforla/website/issues/937) at 2020-12-29 01:39 PM PST -ahdithebomb,2020-12-29T21:41:01Z,- ahdithebomb opened issue: [938](https://github.com/hackforla/website/issues/938) at 2020-12-29 01:41 PM PST -ahdithebomb,2020-12-29T21:46:02Z,- ahdithebomb submitted pull request review: [883](https://github.com/hackforla/website/pull/883#pullrequestreview-559713626) at 2020-12-29 01:46 PM PST -ahdithebomb,2020-12-29T21:49:00Z,- ahdithebomb opened pull request: [884](https://github.com/hackforla/website/pull/884) at 2020-12-29 01:49 PM PST -ahdithebomb,2020-12-29T21:50:09Z,- ahdithebomb pull request merged: [884](https://github.com/hackforla/website/pull/884#event-4155796509) at 2020-12-29 01:50 PM PST -ahdithebomb,2020-12-29T21:52:21Z,- ahdithebomb opened issue: [885](https://github.com/hackforla/website/issues/885) at 2020-12-29 01:52 PM PST -ahdithebomb,2020-12-29T21:59:30Z,- ahdithebomb opened issue: [949](https://github.com/hackforla/website/issues/949) at 2020-12-29 01:59 PM PST -ahdithebomb,2020-12-29T22:01:16Z,- ahdithebomb opened issue: [954](https://github.com/hackforla/website/issues/954) at 2020-12-29 02:01 PM PST -ahdithebomb,2020-12-29T22:11:38Z,- ahdithebomb opened issue: [889](https://github.com/hackforla/website/issues/889) at 2020-12-29 02:11 PM PST -ahdithebomb,2020-12-30T04:59:53Z,- ahdithebomb opened issue: [897](https://github.com/hackforla/website/issues/897) at 2020-12-29 08:59 PM PST -ahdithebomb,2021-01-03T18:09:11Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-753655120) at 2021-01-03 10:09 AM PST -ahdithebomb,2021-01-03T18:09:12Z,- ahdithebomb closed issue by PR 1421: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-01-03 10:09 AM PST -ahdithebomb,2021-01-03T18:09:16Z,- ahdithebomb reopened issue: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-01-03 10:09 AM PST -ahdithebomb,2021-01-03T18:16:34Z,- ahdithebomb submitted pull request review: [898](https://github.com/hackforla/website/pull/898#pullrequestreview-560716087) at 2021-01-03 10:16 AM PST -ahdithebomb,2021-01-03T18:16:56Z,- ahdithebomb closed issue by PR 898: [891](https://github.com/hackforla/website/issues/891#event-4162685812) at 2021-01-03 10:16 AM PST -ahdithebomb,2021-01-03T18:22:45Z,- ahdithebomb commented on issue: [902](https://github.com/hackforla/website/issues/902#issuecomment-753657049) at 2021-01-03 10:22 AM PST -ahdithebomb,2021-01-03T19:29:43Z,- ahdithebomb commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-753665296) at 2021-01-03 11:29 AM PST -ahdithebomb,2021-01-03T19:33:54Z,- ahdithebomb reopened issue: [632](https://github.com/hackforla/website/issues/632#event-4150753854) at 2021-01-03 11:33 AM PST -ahdithebomb,2021-01-03T19:50:52Z,- ahdithebomb commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-753667535) at 2021-01-03 11:50 AM PST -ahdithebomb,2021-01-03T20:22:19Z,- ahdithebomb opened issue: [904](https://github.com/hackforla/website/issues/904) at 2021-01-03 12:22 PM PST -ahdithebomb,2021-01-03T20:26:20Z,- ahdithebomb opened issue: [905](https://github.com/hackforla/website/issues/905) at 2021-01-03 12:26 PM PST -ahdithebomb,2021-01-03T20:29:08Z,- ahdithebomb opened issue: [906](https://github.com/hackforla/website/issues/906) at 2021-01-03 12:29 PM PST -ahdithebomb,2021-01-03T20:42:47Z,- ahdithebomb opened issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-03 12:42 PM PST -ahdithebomb,2021-01-05T17:49:55Z,- ahdithebomb commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 09:49 AM PST -ahdithebomb,2021-01-05T18:29:39Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-754817328) at 2021-01-05 10:29 AM PST -ahdithebomb,2021-01-05T21:22:23Z,- ahdithebomb opened issue: [915](https://github.com/hackforla/website/issues/915) at 2021-01-05 01:22 PM PST -ahdithebomb,2021-01-10T20:39:09Z,- ahdithebomb unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:39 PM PST -ahdithebomb,2021-01-13T16:06:10Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-759550284) at 2021-01-13 08:06 AM PST -ahdithebomb,2021-01-13T18:16:47Z,- ahdithebomb assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-759628170) at 2021-01-13 10:16 AM PST -ahdithebomb,2021-01-13T19:23:45Z,- ahdithebomb commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665047) at 2021-01-13 11:23 AM PST -ahdithebomb,2021-01-13T19:23:45Z,- ahdithebomb closed issue as completed: [938](https://github.com/hackforla/website/issues/938#event-4202846278) at 2021-01-13 11:23 AM PST -ahdithebomb,2021-01-13T19:24:40Z,- ahdithebomb commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665527) at 2021-01-13 11:24 AM PST -ahdithebomb,2021-01-13T19:24:40Z,- ahdithebomb reopened issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665527) at 2021-01-13 11:24 AM PST -ahdithebomb,2021-01-13T19:39:50Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759688205) at 2021-01-13 11:39 AM PST -ahdithebomb,2021-01-13T19:55:19Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759703476) at 2021-01-13 11:55 AM PST -ahdithebomb,2021-01-13T19:59:16Z,- ahdithebomb unassigned from issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-756473615) at 2021-01-13 11:59 AM PST -ahdithebomb,2021-01-13T20:13:24Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759712640) at 2021-01-13 12:13 PM PST -ahdithebomb,2021-01-13T20:14:34Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759713198) at 2021-01-13 12:14 PM PST -ahdithebomb,2021-01-13T20:22:15Z,- ahdithebomb commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-759717096) at 2021-01-13 12:22 PM PST -ahdithebomb,2021-01-13T20:22:33Z,- ahdithebomb unassigned from issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-759717096) at 2021-01-13 12:22 PM PST -ahdithebomb,2021-01-13T20:23:44Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-759717860) at 2021-01-13 12:23 PM PST -ahdithebomb,2021-01-13T20:32:26Z,- ahdithebomb assigned to issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-759721995) at 2021-01-13 12:32 PM PST -ahdithebomb,2021-01-17T17:49:36Z,- ahdithebomb assigned to issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-715560606) at 2021-01-17 09:49 AM PST -ahdithebomb,2021-01-17T18:09:13Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-761854543) at 2021-01-17 10:09 AM PST -ahdithebomb,2021-01-20T18:06:50Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-763832169) at 2021-01-20 10:06 AM PST -ahdithebomb,2021-01-20T18:21:50Z,- ahdithebomb commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-763840918) at 2021-01-20 10:21 AM PST -ahdithebomb,2021-01-20T18:54:58Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-763860190) at 2021-01-20 10:54 AM PST -ahdithebomb,2021-01-20T18:56:16Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-763860976) at 2021-01-20 10:56 AM PST -ahdithebomb,2021-01-24T05:58:55Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-766297466) at 2021-01-23 09:58 PM PST -ahdithebomb,2021-01-24T07:38:44Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-766306063) at 2021-01-23 11:38 PM PST -ahdithebomb,2021-01-24T07:53:55Z,- ahdithebomb unassigned from issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-766306063) at 2021-01-23 11:53 PM PST -ahdithebomb,2021-01-24T07:58:54Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-766307893) at 2021-01-23 11:58 PM PST -ahdithebomb,2021-01-24T17:51:15Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-766402247) at 2021-01-24 09:51 AM PST -ahdithebomb,2021-01-24T17:58:31Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-766403277) at 2021-01-24 09:58 AM PST -ahdithebomb,2021-01-24T20:55:39Z,- ahdithebomb commented on issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-766430442) at 2021-01-24 12:55 PM PST -ahdithebomb,2021-01-27T17:00:51Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-768427153) at 2021-01-27 09:00 AM PST -ahdithebomb,2021-01-27T17:01:16Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-768427443) at 2021-01-27 09:01 AM PST -ahdithebomb,2021-01-31T05:06:49Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-770327320) at 2021-01-30 09:06 PM PST -ahdithebomb,2021-01-31T08:01:10Z,- ahdithebomb opened issue: [979](https://github.com/hackforla/website/issues/979) at 2021-01-31 12:01 AM PST -ahdithebomb,2021-01-31T18:27:51Z,- ahdithebomb opened issue: [981](https://github.com/hackforla/website/issues/981) at 2021-01-31 10:27 AM PST -ahdithebomb,2021-01-31T18:46:36Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-770429690) at 2021-01-31 10:46 AM PST -ahdithebomb,2021-02-02T23:11:40Z,- ahdithebomb commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-772079072) at 2021-02-02 03:11 PM PST -ahdithebomb,2021-02-03T16:58:17Z,- ahdithebomb assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-02-03 08:58 AM PST -ahdithebomb,2021-02-04T00:37:33Z,- ahdithebomb assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -ahdithebomb,2021-02-07T06:47:03Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-774616014) at 2021-02-06 10:47 PM PST -ahdithebomb,2021-02-07T17:09:14Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-774710509) at 2021-02-07 09:09 AM PST -ahdithebomb,2021-02-07T19:42:37Z,- ahdithebomb opened issue: [1010](https://github.com/hackforla/website/issues/1010) at 2021-02-07 11:42 AM PST -ahdithebomb,2021-02-07T20:42:46Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-774757119) at 2021-02-07 12:42 PM PST -ahdithebomb,2021-02-14T06:37:11Z,- ahdithebomb commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-778735793) at 2021-02-13 10:37 PM PST -ahdithebomb,2021-02-14T18:47:57Z,- ahdithebomb assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -ahdithebomb,2021-02-16T23:48:22Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-780192046) at 2021-02-16 03:48 PM PST -ahdithebomb,2021-02-16T23:48:23Z,- ahdithebomb closed issue as completed: [879](https://github.com/hackforla/website/issues/879#event-4338764521) at 2021-02-16 03:48 PM PST -ahdithebomb,2021-02-16T23:56:58Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-780195129) at 2021-02-16 03:56 PM PST -ahdithebomb,2021-02-16T23:57:59Z,- ahdithebomb unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-780045608) at 2021-02-16 03:57 PM PST -ahdithebomb,2021-02-17T02:02:54Z,- ahdithebomb commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-780243980) at 2021-02-16 06:02 PM PST -ahdithebomb,2021-02-17T07:22:43Z,- ahdithebomb opened pull request: [1072](https://github.com/hackforla/website/pull/1072) at 2021-02-16 11:22 PM PST -ahdithebomb,2021-02-17T18:13:48Z,- ahdithebomb commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-780748613) at 2021-02-17 10:13 AM PST -ahdithebomb,2021-02-17T19:02:37Z,- ahdithebomb commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-780779339) at 2021-02-17 11:02 AM PST -ahdithebomb,2021-02-17T19:05:43Z,- ahdithebomb commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-780781197) at 2021-02-17 11:05 AM PST -ahdithebomb,2021-02-17T19:19:26Z,- ahdithebomb commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-02-17 11:19 AM PST -ahdithebomb,2021-02-17T19:23:16Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-780792914) at 2021-02-17 11:23 AM PST -ahdithebomb,2021-02-17T19:36:40Z,- ahdithebomb commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-780800783) at 2021-02-17 11:36 AM PST -ahdithebomb,2021-02-18T05:54:56Z,- ahdithebomb opened issue: [1074](https://github.com/hackforla/website/issues/1074) at 2021-02-17 09:54 PM PST -ahdithebomb,2021-02-18T06:06:15Z,- ahdithebomb opened pull request: [1075](https://github.com/hackforla/website/pull/1075) at 2021-02-17 10:06 PM PST -ahdithebomb,2021-02-18T06:31:20Z,- ahdithebomb opened issue: [1076](https://github.com/hackforla/website/issues/1076) at 2021-02-17 10:31 PM PST -ahdithebomb,2021-02-21T17:40:17Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-782895070) at 2021-02-21 09:40 AM PST -ahdithebomb,2021-02-21T17:57:48Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-782897725) at 2021-02-21 09:57 AM PST -ahdithebomb,2021-02-21T19:58:36Z,- ahdithebomb pull request closed w/o merging: [1075](https://github.com/hackforla/website/pull/1075#event-4356721117) at 2021-02-21 11:58 AM PST -ahdithebomb,2021-02-21T20:16:50Z,- ahdithebomb pull request closed w/o merging: [1072](https://github.com/hackforla/website/pull/1072#event-4356740446) at 2021-02-21 12:16 PM PST -ahdithebomb,2021-02-24T18:08:27Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-785269054) at 2021-02-24 10:08 AM PST -ahdithebomb,2021-02-24T18:11:34Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-785270888) at 2021-02-24 10:11 AM PST -ahdithebomb,2021-02-28T17:29:12Z,- ahdithebomb commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-787487959) at 2021-02-28 09:29 AM PST -ahdithebomb,2021-02-28T17:30:05Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-787488094) at 2021-02-28 09:30 AM PST -ahdithebomb,2021-02-28T17:31:08Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-787488238) at 2021-02-28 09:31 AM PST -ahdithebomb,2021-03-01T18:49:26Z,- ahdithebomb unassigned from issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788182866) at 2021-03-01 10:49 AM PST -ahdithebomb,2021-03-07T18:59:16Z,- ahdithebomb unassigned from issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-787488238) at 2021-03-07 10:59 AM PST -ahdithebomb,2021-03-07T19:23:46Z,- ahdithebomb unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -ahdithebomb,2021-03-07T19:24:33Z,- ahdithebomb unassigned from issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -ahdithebomb,2021-03-10T20:15:43Z,- ahdithebomb unassigned from issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-795601197) at 2021-03-10 12:15 PM PST -ahdithebomb,2021-03-19T02:00:00Z,- ahdithebomb opened issue: [1261](https://github.com/hackforla/website/issues/1261) at 2021-03-18 07:00 PM PDT -ahoang94,2021-07-26T23:57:51Z,- ahoang94 assigned to issue: [1845](https://github.com/hackforla/website/issues/1845) at 2021-07-26 04:57 PM PDT -ahoang94,2021-07-26T23:58:18Z,- ahoang94 commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-887106358) at 2021-07-26 04:58 PM PDT -ahoang94,2021-07-30T01:03:17Z,- ahoang94 assigned to issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-887670543) at 2021-07-29 06:03 PM PDT -ahoang94,2021-08-01T05:03:25Z,- ahoang94 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-890451229) at 2021-07-31 10:03 PM PDT -ahoang94,2021-08-02T18:49:49Z,- ahoang94 commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-891252128) at 2021-08-02 11:49 AM PDT -ahoang94,2021-08-06T20:00:53Z,- ahoang94 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-894488776) at 2021-08-06 01:00 PM PDT -ahoang94,2021-08-08T18:38:52Z,- ahoang94 commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894837811) at 2021-08-08 11:38 AM PDT -ahoang94,2021-08-08T22:39:44Z,- ahoang94 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-894866019) at 2021-08-08 03:39 PM PDT -ahoang94,2021-08-10T19:59:17Z,- ahoang94 unassigned from issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-895436933) at 2021-08-10 12:59 PM PDT -ahoang94,2021-08-10T19:59:29Z,- ahoang94 assigned to issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-895436933) at 2021-08-10 12:59 PM PDT -ahoang94,2021-08-13T01:00:15Z,- ahoang94 assigned to issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-861754890) at 2021-08-12 06:00 PM PDT -ahoang94,2021-08-13T16:49:20Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-898592387) at 2021-08-13 09:49 AM PDT -ahoang94,2021-08-20T18:05:42Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-902865866) at 2021-08-20 11:05 AM PDT -ahoang94,2021-08-22T05:29:16Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-903216090) at 2021-08-21 10:29 PM PDT -ahoang94,2021-08-25T04:18:59Z,- ahoang94 commented on issue: [2169](https://github.com/hackforla/website/issues/2169#issuecomment-905170040) at 2021-08-24 09:18 PM PDT -ahoang94,2021-08-28T00:27:43Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-907537146) at 2021-08-27 05:27 PM PDT -ahoang94,2021-09-10T20:29:05Z,- ahoang94 assigned to issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-910342111) at 2021-09-10 01:29 PM PDT -ahoang94,2021-09-26T00:18:19Z,- ahoang94 assigned to issue: [1842](https://github.com/hackforla/website/issues/1842#issuecomment-917083414) at 2021-09-25 05:18 PM PDT -ahoang94,2021-10-03T16:10:28Z,- ahoang94 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-932980607) at 2021-10-03 09:10 AM PDT -ahoang94,2021-10-04T22:29:33Z,- ahoang94 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-933904580) at 2021-10-04 03:29 PM PDT -ahoang94,2021-10-04T22:54:26Z,- ahoang94 commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-933915307) at 2021-10-04 03:54 PM PDT -ahoang94,2021-10-12T17:36:40Z,- ahoang94 assigned to issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-929336691) at 2021-10-12 10:36 AM PDT -ahoang94,2021-10-13T00:21:23Z,- ahoang94 commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-941790458) at 2021-10-12 05:21 PM PDT -ahoang94,2021-10-17T16:28:55Z,- ahoang94 commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-945154402) at 2021-10-17 09:28 AM PDT -ahoang94,2021-10-23T00:45:59Z,- ahoang94 commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-10-22 05:45 PM PDT -ahoang94,2021-10-23T00:46:20Z,- ahoang94 unassigned from issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-10-22 05:46 PM PDT -ahoang94,2021-10-28T21:08:34Z,- ahoang94 assigned to issue: [2154](https://github.com/hackforla/website/issues/2154) at 2021-10-28 02:08 PM PDT -ahoang94,2021-10-28T23:50:29Z,- ahoang94 commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-954304242) at 2021-10-28 04:50 PM PDT -ahoang94,2021-11-02T21:10:47Z,- ahoang94 commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-958169278) at 2021-11-02 02:10 PM PDT -ahoang94,2021-11-04T19:24:47Z,- ahoang94 assigned to issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-941352359) at 2021-11-04 12:24 PM PDT -ahoang94,2021-11-05T00:24:56Z,- ahoang94 commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-961534197) at 2021-11-04 05:24 PM PDT -ahoang94,2021-11-19T01:57:36Z,- ahoang94 assigned to issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-968499442) at 2021-11-18 05:57 PM PST -ahoang94,2021-11-27T04:43:16Z,- ahoang94 commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-980501448) at 2021-11-26 08:43 PM PST -ahoang94,2021-11-29T03:06:50Z,- ahoang94 commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-981248855) at 2021-11-28 07:06 PM PST -ahoang94,2021-12-01T20:00:54Z,- ahoang94 commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-984007511) at 2021-12-01 12:00 PM PST -ahoang94,2021-12-13T00:41:56Z,- ahoang94 assigned to issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-12-12 04:41 PM PST -AHP15,4625,SKILLS ISSUE -AHP15,2023-05-09T03:31:22Z,- AHP15 opened issue: [4625](https://github.com/hackforla/website/issues/4625) at 2023-05-08 08:31 PM PDT -AHP15,2023-05-09T03:58:54Z,- AHP15 assigned to issue: [4625](https://github.com/hackforla/website/issues/4625) at 2023-05-08 08:58 PM PDT -AHP15,2023-05-23T09:35:08Z,- AHP15 assigned to issue: [4685](https://github.com/hackforla/website/issues/4685) at 2023-05-23 02:35 AM PDT -AHP15,2023-05-23T10:01:54Z,- AHP15 commented on issue: [4685](https://github.com/hackforla/website/issues/4685#issuecomment-1558959156) at 2023-05-23 03:01 AM PDT -AHP15,2023-05-23T10:18:36Z,- AHP15 opened pull request: [4708](https://github.com/hackforla/website/pull/4708) at 2023-05-23 03:18 AM PDT -AHP15,2023-05-24T09:04:24Z,- AHP15 commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1560729233) at 2023-05-24 02:04 AM PDT -AHP15,2023-05-25T07:59:04Z,- AHP15 assigned to issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1411369489) at 2023-05-25 12:59 AM PDT -AHP15,2023-05-25T08:00:44Z,- AHP15 commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1562458328) at 2023-05-25 01:00 AM PDT -AHP15,2023-05-25T23:03:33Z,- AHP15 unassigned from issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1563612703) at 2023-05-25 04:03 PM PDT -AHP15,2023-05-26T08:05:21Z,- AHP15 commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1563978097) at 2023-05-26 01:05 AM PDT -AHP15,2023-05-26T08:13:46Z,- AHP15 commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1563991116) at 2023-05-26 01:13 AM PDT -AHP15,2023-05-27T07:39:12Z,- AHP15 assigned to issue: [4481](https://github.com/hackforla/website/issues/4481) at 2023-05-27 12:39 AM PDT -AHP15,2023-05-27T07:40:38Z,- AHP15 commented on issue: [4481](https://github.com/hackforla/website/issues/4481#issuecomment-1565254416) at 2023-05-27 12:40 AM PDT -AHP15,2023-05-28T16:38:32Z,- AHP15 pull request merged: [4708](https://github.com/hackforla/website/pull/4708#event-9362617395) at 2023-05-28 09:38 AM PDT -AHP15,2023-05-31T08:43:12Z,- AHP15 commented on issue: [4481](https://github.com/hackforla/website/issues/4481#issuecomment-1569757364) at 2023-05-31 01:43 AM PDT -AHP15,2023-05-31T09:22:51Z,- AHP15 opened pull request: [4763](https://github.com/hackforla/website/pull/4763) at 2023-05-31 02:22 AM PDT -AHP15,2023-06-01T10:12:45Z,- AHP15 commented on pull request: [4763](https://github.com/hackforla/website/pull/4763#issuecomment-1571755849) at 2023-06-01 03:12 AM PDT -AHP15,2023-06-02T10:41:38Z,- AHP15 assigned to issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1312770682) at 2023-06-02 03:41 AM PDT -AHP15,2023-06-02T10:43:11Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1573526321) at 2023-06-02 03:43 AM PDT -AHP15,2023-06-02T16:42:13Z,- AHP15 pull request merged: [4763](https://github.com/hackforla/website/pull/4763#event-9416252247) at 2023-06-02 09:42 AM PDT -AHP15,2023-06-05T09:33:00Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576457991) at 2023-06-05 02:33 AM PDT -AHP15,2023-06-05T09:36:04Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576462207) at 2023-06-05 02:36 AM PDT -AHP15,2023-06-05T09:40:10Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576467643) at 2023-06-05 02:40 AM PDT -AHP15,2023-06-05T09:43:45Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576472441) at 2023-06-05 02:43 AM PDT -AHP15,2023-06-05T09:47:31Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576477371) at 2023-06-05 02:47 AM PDT -AHP15,2023-06-05T09:51:02Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576482002) at 2023-06-05 02:51 AM PDT -AHP15,2023-06-05T10:13:03Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576516137) at 2023-06-05 03:13 AM PDT -AHP15,2023-06-05T10:18:50Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576524246) at 2023-06-05 03:18 AM PDT -AHP15,2023-06-05T10:34:51Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576544314) at 2023-06-05 03:34 AM PDT -AHP15,2023-06-05T10:40:31Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1576551611) at 2023-06-05 03:40 AM PDT -AHP15,2023-06-05T10:50:41Z,- AHP15 opened pull request: [4783](https://github.com/hackforla/website/pull/4783) at 2023-06-05 03:50 AM PDT -AHP15,2023-06-07T08:30:07Z,- AHP15 commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1580194266) at 2023-06-07 01:30 AM PDT -AHP15,2023-06-07T08:36:53Z,- AHP15 commented on pull request: [4783](https://github.com/hackforla/website/pull/4783#issuecomment-1580204905) at 2023-06-07 01:36 AM PDT -AHP15,2023-06-12T08:39:18Z,- AHP15 commented on pull request: [4783](https://github.com/hackforla/website/pull/4783#issuecomment-1586858165) at 2023-06-12 01:39 AM PDT -AHP15,2023-06-12T08:42:49Z,- AHP15 commented on pull request: [4783](https://github.com/hackforla/website/pull/4783#issuecomment-1586865060) at 2023-06-12 01:42 AM PDT -AHP15,2023-06-14T17:59:59Z,- AHP15 pull request merged: [4783](https://github.com/hackforla/website/pull/4783#event-9531782092) at 2023-06-14 10:59 AM PDT -Ahtaxam,2023-04-30T03:32:12Z,- Ahtaxam commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1528930041) at 2023-04-29 08:32 PM PDT -Ahtaxam,2023-04-30T18:29:57Z,- Ahtaxam commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1529109509) at 2023-04-30 11:29 AM PDT -aidanwsimmons,5722,SKILLS ISSUE -aidanwsimmons,2023-10-17T02:38:17Z,- aidanwsimmons opened issue: [5722](https://github.com/hackforla/website/issues/5722) at 2023-10-16 07:38 PM PDT -aidanwsimmons,2023-10-17T02:51:37Z,- aidanwsimmons assigned to issue: [5722](https://github.com/hackforla/website/issues/5722) at 2023-10-16 07:51 PM PDT -aidanwsimmons,2024-02-06T03:24:42Z,- aidanwsimmons reopened issue: [5722](https://github.com/hackforla/website/issues/5722#event-11679252273) at 2024-02-05 07:24 PM PST -aidanwsimmons,2024-02-09T22:50:01Z,- aidanwsimmons assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1875041068) at 2024-02-09 02:50 PM PST -aidanwsimmons,2024-02-09T22:50:51Z,- aidanwsimmons assigned to issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1875047290) at 2024-02-09 02:50 PM PST -aidanwsimmons,2024-02-09T22:51:54Z,- aidanwsimmons unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1936706395) at 2024-02-09 02:51 PM PST -aidanwsimmons,2024-02-09T23:07:27Z,- aidanwsimmons commented on issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1936720342) at 2024-02-09 03:07 PM PST -aidanwsimmons,2024-02-09T23:08:46Z,- aidanwsimmons commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1936721304) at 2024-02-09 03:08 PM PST -aidanwsimmons,2024-02-09T23:10:31Z,- aidanwsimmons commented on issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1936722539) at 2024-02-09 03:10 PM PST -aidanwsimmons,2024-02-09T23:35:18Z,- aidanwsimmons opened pull request: [6273](https://github.com/hackforla/website/pull/6273) at 2024-02-09 03:35 PM PST -aidanwsimmons,2024-02-09T23:44:27Z,- aidanwsimmons closed issue as completed: [5722](https://github.com/hackforla/website/issues/5722#event-11763331139) at 2024-02-09 03:44 PM PST -aidanwsimmons,2024-02-10T22:50:12Z,- aidanwsimmons assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937320455) at 2024-02-10 02:50 PM PST -aidanwsimmons,2024-02-10T22:55:32Z,- aidanwsimmons unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937335130) at 2024-02-10 02:55 PM PST -aidanwsimmons,2024-02-10T23:41:30Z,- aidanwsimmons commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1937354976) at 2024-02-10 03:41 PM PST -aidanwsimmons,2024-02-12T18:55:30Z,- aidanwsimmons assigned to issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1720890386) at 2024-02-12 10:55 AM PST -aidanwsimmons,2024-02-12T19:03:18Z,- aidanwsimmons commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939357451) at 2024-02-12 11:03 AM PST -aidanwsimmons,2024-02-12T19:11:36Z,- aidanwsimmons commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939368703) at 2024-02-12 11:11 AM PST -aidanwsimmons,2024-02-12T19:32:00Z,- aidanwsimmons pull request closed w/o merging: [6273](https://github.com/hackforla/website/pull/6273#event-11778969500) at 2024-02-12 11:32 AM PST -aidanwsimmons,2024-02-12T20:10:18Z,- aidanwsimmons opened pull request: [6282](https://github.com/hackforla/website/pull/6282) at 2024-02-12 12:10 PM PST -aidanwsimmons,2024-02-12T20:11:48Z,- aidanwsimmons commented on pull request: [6282](https://github.com/hackforla/website/pull/6282#issuecomment-1939483844) at 2024-02-12 12:11 PM PST -aidanwsimmons,2024-02-12T20:12:45Z,- aidanwsimmons unassigned from issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939368703) at 2024-02-12 12:12 PM PST -aidanwsimmons,2024-02-12T20:13:29Z,- aidanwsimmons commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939492244) at 2024-02-12 12:13 PM PST -aidanwsimmons,2024-02-12T21:21:14Z,- aidanwsimmons pull request merged: [6282](https://github.com/hackforla/website/pull/6282#event-11780010005) at 2024-02-12 01:21 PM PST -aidanwsimmons,2024-02-13T00:17:42Z,- aidanwsimmons assigned to issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1765488579) at 2024-02-12 04:17 PM PST -aidanwsimmons,2024-02-13T00:19:34Z,- aidanwsimmons commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1939858302) at 2024-02-12 04:19 PM PST -aidanwsimmons,2024-02-13T00:35:28Z,- aidanwsimmons opened pull request: [6283](https://github.com/hackforla/website/pull/6283) at 2024-02-12 04:35 PM PST -aidanwsimmons,2024-02-13T00:37:49Z,- aidanwsimmons commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939890101) at 2024-02-12 04:37 PM PST -aidanwsimmons,2024-02-13T00:43:00Z,- aidanwsimmons submitted pull request review: [6281](https://github.com/hackforla/website/pull/6281#pullrequestreview-1876646950) at 2024-02-12 04:43 PM PST -aidanwsimmons,2024-02-13T00:43:08Z,- aidanwsimmons commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939910208) at 2024-02-12 04:43 PM PST -aidanwsimmons,2024-02-13T07:42:37Z,- aidanwsimmons commented on pull request: [6283](https://github.com/hackforla/website/pull/6283#issuecomment-1940613719) at 2024-02-12 11:42 PM PST -aidanwsimmons,2024-02-14T03:36:25Z,- aidanwsimmons commented on pull request: [6279](https://github.com/hackforla/website/pull/6279#issuecomment-1943034010) at 2024-02-13 07:36 PM PST -aidanwsimmons,2024-02-15T01:20:10Z,- aidanwsimmons submitted pull request review: [6279](https://github.com/hackforla/website/pull/6279#pullrequestreview-1881588551) at 2024-02-14 05:20 PM PST -aidanwsimmons,2024-02-15T06:53:44Z,- aidanwsimmons pull request merged: [6283](https://github.com/hackforla/website/pull/6283#event-11811037717) at 2024-02-14 10:53 PM PST -aidanwsimmons,2024-02-27T22:16:29Z,- aidanwsimmons commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1967731895) at 2024-02-27 02:16 PM PST -aidanwsimmons,2024-02-27T23:54:59Z,- aidanwsimmons unassigned from issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1967731895) at 2024-02-27 03:54 PM PST -aidanwsimmons,2024-02-28T00:00:02Z,- aidanwsimmons assigned to issue: [6375](https://github.com/hackforla/website/issues/6375#issuecomment-1963127100) at 2024-02-27 04:00 PM PST -aidanwsimmons,2024-02-28T00:09:08Z,- aidanwsimmons commented on issue: [6375](https://github.com/hackforla/website/issues/6375#issuecomment-1967944565) at 2024-02-27 04:09 PM PST -aidanwsimmons,2024-02-28T00:37:06Z,- aidanwsimmons opened pull request: [6386](https://github.com/hackforla/website/pull/6386) at 2024-02-27 04:37 PM PST -aidanwsimmons,2024-02-28T18:12:16Z,- aidanwsimmons commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1969563986) at 2024-02-28 10:12 AM PST -aidanwsimmons,2024-02-28T18:12:38Z,- aidanwsimmons commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1969564548) at 2024-02-28 10:12 AM PST -aidanwsimmons,2024-02-28T23:29:03Z,- aidanwsimmons submitted pull request review: [6362](https://github.com/hackforla/website/pull/6362#pullrequestreview-1907642805) at 2024-02-28 03:29 PM PST -aidanwsimmons,2024-02-29T00:02:50Z,- aidanwsimmons submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1907679194) at 2024-02-28 04:02 PM PST -aidanwsimmons,2024-03-02T00:38:12Z,- aidanwsimmons commented on pull request: [6386](https://github.com/hackforla/website/pull/6386#issuecomment-1974135587) at 2024-03-01 04:38 PM PST -aidanwsimmons,2024-03-04T01:49:56Z,- aidanwsimmons pull request merged: [6386](https://github.com/hackforla/website/pull/6386#event-11992263633) at 2024-03-03 05:49 PM PST -aidanwsimmons,2024-03-05T02:04:26Z,- aidanwsimmons assigned to issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1920547949) at 2024-03-04 06:04 PM PST -aidanwsimmons,2024-03-05T02:05:14Z,- aidanwsimmons commented on issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1977815356) at 2024-03-04 06:05 PM PST -aidanwsimmons,2024-03-05T02:27:01Z,- aidanwsimmons opened pull request: [6417](https://github.com/hackforla/website/pull/6417) at 2024-03-04 06:27 PM PST -aidanwsimmons,2024-03-07T01:44:39Z,- aidanwsimmons pull request merged: [6417](https://github.com/hackforla/website/pull/6417#event-12035475518) at 2024-03-06 05:44 PM PST -aidanwsimmons,2024-03-07T22:34:33Z,- aidanwsimmons assigned to issue: [5997](https://github.com/hackforla/website/issues/5997) at 2024-03-07 02:34 PM PST -aidanwsimmons,2024-03-07T22:35:09Z,- aidanwsimmons commented on issue: [5997](https://github.com/hackforla/website/issues/5997#issuecomment-1984667493) at 2024-03-07 02:35 PM PST -aidanwsimmons,2024-03-25T19:22:05Z,- aidanwsimmons assigned to issue: [6510](https://github.com/hackforla/website/issues/6510) at 2024-03-25 12:22 PM PDT -aidanwsimmons,2024-03-25T19:22:53Z,- aidanwsimmons commented on issue: [6510](https://github.com/hackforla/website/issues/6510#issuecomment-2018743611) at 2024-03-25 12:22 PM PDT -aidanwsimmons,2024-03-27T00:17:28Z,- aidanwsimmons opened pull request: [6521](https://github.com/hackforla/website/pull/6521) at 2024-03-26 05:17 PM PDT -aidanwsimmons,2024-03-27T17:03:57Z,- aidanwsimmons commented on pull request: [6518](https://github.com/hackforla/website/pull/6518#issuecomment-2023325054) at 2024-03-27 10:03 AM PDT -aidanwsimmons,2024-03-27T17:04:11Z,- aidanwsimmons commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2023325451) at 2024-03-27 10:04 AM PDT -aidanwsimmons,2024-03-27T20:01:12Z,- aidanwsimmons submitted pull request review: [6518](https://github.com/hackforla/website/pull/6518#pullrequestreview-1964628762) at 2024-03-27 01:01 PM PDT -aidanwsimmons,2024-03-31T03:11:02Z,- aidanwsimmons pull request merged: [6521](https://github.com/hackforla/website/pull/6521#event-12302225921) at 2024-03-30 08:11 PM PDT -aidanwsimmons,2024-04-04T21:28:15Z,- aidanwsimmons submitted pull request review: [6566](https://github.com/hackforla/website/pull/6566#pullrequestreview-1981218047) at 2024-04-04 02:28 PM PDT -aidanwsimmons,2024-04-04T21:29:33Z,- aidanwsimmons commented on pull request: [6566](https://github.com/hackforla/website/pull/6566#issuecomment-2038262081) at 2024-04-04 02:29 PM PDT -aidanwsimmons,2024-04-10T02:25:22Z,- aidanwsimmons submitted pull request review: [6566](https://github.com/hackforla/website/pull/6566#pullrequestreview-1990656273) at 2024-04-09 07:25 PM PDT -aidanwsimmons,2024-04-12T20:03:27Z,- aidanwsimmons assigned to issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2049043631) at 2024-04-12 01:03 PM PDT -aidanwsimmons,2024-04-12T20:04:42Z,- aidanwsimmons commented on issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2052450947) at 2024-04-12 01:04 PM PDT -aidanwsimmons,2024-04-15T19:45:34Z,- aidanwsimmons commented on issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2057678507) at 2024-04-15 12:45 PM PDT -aidanwsimmons,2024-04-15T20:07:22Z,- aidanwsimmons opened pull request: [6651](https://github.com/hackforla/website/pull/6651) at 2024-04-15 01:07 PM PDT -aidanwsimmons,2024-04-21T17:37:31Z,- aidanwsimmons pull request merged: [6651](https://github.com/hackforla/website/pull/6651#event-12551509072) at 2024-04-21 10:37 AM PDT -aidanwsimmons,2024-04-22T00:14:12Z,- aidanwsimmons commented on pull request: [6708](https://github.com/hackforla/website/pull/6708#issuecomment-2068279223) at 2024-04-21 05:14 PM PDT -aidanwsimmons,2024-04-22T21:53:51Z,- aidanwsimmons submitted pull request review: [6708](https://github.com/hackforla/website/pull/6708#pullrequestreview-2015864269) at 2024-04-22 02:53 PM PDT -aidanwsimmons,2024-04-24T17:26:51Z,- aidanwsimmons commented on pull request: [6712](https://github.com/hackforla/website/pull/6712#issuecomment-2075469497) at 2024-04-24 10:26 AM PDT -aidanwsimmons,2024-04-24T20:18:41Z,- aidanwsimmons submitted pull request review: [6712](https://github.com/hackforla/website/pull/6712#pullrequestreview-2020867771) at 2024-04-24 01:18 PM PDT -aidanwsimmons,2024-04-24T23:11:15Z,- aidanwsimmons assigned to issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2073098283) at 2024-04-24 04:11 PM PDT -aidanwsimmons,2024-04-24T23:12:53Z,- aidanwsimmons commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2076013026) at 2024-04-24 04:12 PM PDT -aidanwsimmons,2024-05-04T01:05:58Z,- aidanwsimmons opened pull request: [6816](https://github.com/hackforla/website/pull/6816) at 2024-05-03 06:05 PM PDT -aidanwsimmons,2024-05-08T00:51:43Z,- aidanwsimmons pull request closed w/o merging: [6816](https://github.com/hackforla/website/pull/6816#event-12736899416) at 2024-05-07 05:51 PM PDT -aidanwsimmons,2024-05-10T04:04:46Z,- aidanwsimmons commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2103820897) at 2024-05-09 09:04 PM PDT -aidanwsimmons,2024-05-13T01:59:27Z,- aidanwsimmons commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2106501961) at 2024-05-12 06:59 PM PDT -aidanwsimmons,2024-05-13T01:59:43Z,- aidanwsimmons unassigned from issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2106501961) at 2024-05-12 06:59 PM PDT -aidanwsimmons,2024-05-29T08:06:04Z,- aidanwsimmons submitted pull request review: [6887](https://github.com/hackforla/website/pull/6887#pullrequestreview-2084624621) at 2024-05-29 01:06 AM PDT -aidanwsimmons,2024-06-06T22:34:53Z,- aidanwsimmons assigned to issue: [6910](https://github.com/hackforla/website/issues/6910#issuecomment-2136876344) at 2024-06-06 03:34 PM PDT -aidanwsimmons,2024-06-06T22:35:53Z,- aidanwsimmons commented on issue: [6910](https://github.com/hackforla/website/issues/6910#issuecomment-2153510126) at 2024-06-06 03:35 PM PDT -aidanwsimmons,2024-06-10T22:45:19Z,- aidanwsimmons opened pull request: [6985](https://github.com/hackforla/website/pull/6985) at 2024-06-10 03:45 PM PDT -aidanwsimmons,2024-06-12T03:25:33Z,- aidanwsimmons commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2162032534) at 2024-06-11 08:25 PM PDT -aidanwsimmons,2024-06-12T17:11:33Z,- aidanwsimmons pull request merged: [6985](https://github.com/hackforla/website/pull/6985#event-13135052450) at 2024-06-12 10:11 AM PDT -aidanwsimmons,2024-06-13T02:56:01Z,- aidanwsimmons submitted pull request review: [6976](https://github.com/hackforla/website/pull/6976#pullrequestreview-2114582929) at 2024-06-12 07:56 PM PDT -aidenjlee4321,6028,SKILLS ISSUE -aidenjlee4321,2024-01-03T03:42:05Z,- aidenjlee4321 opened issue: [6028](https://github.com/hackforla/website/issues/6028) at 2024-01-02 07:42 PM PST -aidenjlee4321,2024-01-03T03:42:15Z,- aidenjlee4321 assigned to issue: [6028](https://github.com/hackforla/website/issues/6028) at 2024-01-02 07:42 PM PST -aidenjlee4321,2024-01-17T06:09:18Z,- aidenjlee4321 assigned to issue: [6106](https://github.com/hackforla/website/issues/6106) at 2024-01-16 10:09 PM PST -aidenjlee4321,2024-01-19T05:49:06Z,- aidenjlee4321 opened pull request: [6132](https://github.com/hackforla/website/pull/6132) at 2024-01-18 09:49 PM PST -aidenjlee4321,2024-01-19T14:51:31Z,- aidenjlee4321 pull request merged: [6132](https://github.com/hackforla/website/pull/6132#event-11538531576) at 2024-01-19 06:51 AM PST -aidenjlee4321,2024-02-15T05:24:07Z,- aidenjlee4321 closed issue as completed: [6028](https://github.com/hackforla/website/issues/6028#event-11810273805) at 2024-02-14 09:24 PM PST -aidenjlee4321,2024-02-22T05:46:03Z,- aidenjlee4321 assigned to issue: [6234](https://github.com/hackforla/website/issues/6234) at 2024-02-21 09:46 PM PST -aidenjlee4321,2024-02-22T07:37:30Z,- aidenjlee4321 opened pull request: [6357](https://github.com/hackforla/website/pull/6357) at 2024-02-21 11:37 PM PST -aidenjlee4321,2024-02-23T07:31:24Z,- aidenjlee4321 pull request closed w/o merging: [6357](https://github.com/hackforla/website/pull/6357#event-11900205499) at 2024-02-22 11:31 PM PST -aidenjlee4321,2024-03-20T21:06:16Z,- aidenjlee4321 unassigned from issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-2010637562) at 2024-03-20 02:06 PM PDT -aidenjlee4321,2024-05-30T06:30:27Z,- aidenjlee4321 assigned to issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2119379100) at 2024-05-29 11:30 PM PDT -aidenjlee4321,2024-05-30T06:34:28Z,- aidenjlee4321 commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2138782396) at 2024-05-29 11:34 PM PDT -aidenjlee4321,2024-05-30T06:47:46Z,- aidenjlee4321 assigned to issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2119377587) at 2024-05-29 11:47 PM PDT -aidenjlee4321,2024-06-21T02:55:34Z,- aidenjlee4321 assigned to issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2156271665) at 2024-06-20 07:55 PM PDT -aidenjlee4321,2024-06-21T03:06:54Z,- aidenjlee4321 commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2181910941) at 2024-06-20 08:06 PM PDT -aidenjlee4321,2024-06-21T03:08:37Z,- aidenjlee4321 commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2181912100) at 2024-06-20 08:08 PM PDT -aidenjlee4321,2024-08-16T20:32:18Z,- aidenjlee4321 unassigned from issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2294196567) at 2024-08-16 01:32 PM PDT -aidenjlee4321,2024-09-20T18:01:24Z,- aidenjlee4321 assigned to issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2364186162) at 2024-09-20 11:01 AM PDT -aidenjlee4321,2024-09-23T22:53:32Z,- aidenjlee4321 commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2369697792) at 2024-09-23 03:53 PM PDT -aidenjlee4321,2024-10-30T15:26:48Z,- aidenjlee4321 unassigned from issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2437052576) at 2024-10-30 08:26 AM PDT -aidenshaw07,5230,SKILLS ISSUE -aidenshaw07,2023-08-15T03:56:40Z,- aidenshaw07 opened issue: [5230](https://github.com/hackforla/website/issues/5230) at 2023-08-14 08:56 PM PDT -aidenshaw07,2024-02-13T21:42:49Z,- aidenshaw07 assigned to issue: [5230](https://github.com/hackforla/website/issues/5230#event-11651616256) at 2024-02-13 01:42 PM PST -ajb176,5232,SKILLS ISSUE -ajb176,2023-08-15T04:23:19Z,- ajb176 opened issue: [5232](https://github.com/hackforla/website/issues/5232) at 2023-08-14 09:23 PM PDT -ajb176,2023-08-15T04:24:34Z,- ajb176 assigned to issue: [5232](https://github.com/hackforla/website/issues/5232) at 2023-08-14 09:24 PM PDT -ajb176,2023-08-16T15:41:58Z,- ajb176 commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-1680851259) at 2023-08-16 08:41 AM PDT -ajb176,2023-08-27T18:36:40Z,- ajb176 assigned to issue: [5281](https://github.com/hackforla/website/issues/5281#issuecomment-1687026308) at 2023-08-27 11:36 AM PDT -ajb176,2023-08-27T18:45:30Z,- ajb176 commented on issue: [5281](https://github.com/hackforla/website/issues/5281#issuecomment-1694734984) at 2023-08-27 11:45 AM PDT -ajb176,2023-08-29T19:08:24Z,- ajb176 opened pull request: [5335](https://github.com/hackforla/website/pull/5335) at 2023-08-29 12:08 PM PDT -ajb176,2023-08-30T02:01:27Z,- ajb176 pull request merged: [5335](https://github.com/hackforla/website/pull/5335#event-10227505144) at 2023-08-29 07:01 PM PDT -ajb176,2023-08-30T07:56:59Z,- ajb176 commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-1698678803) at 2023-08-30 12:56 AM PDT -ajb176,2023-09-04T07:11:43Z,- ajb176 closed issue as completed: [5232](https://github.com/hackforla/website/issues/5232#event-10270289157) at 2023-09-04 12:11 AM PDT -ajb176,2023-09-17T12:12:37Z,- ajb176 assigned to issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1720331921) at 2023-09-17 05:12 AM PDT -ajb176,2023-09-17T12:15:26Z,- ajb176 commented on issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1722464034) at 2023-09-17 05:15 AM PDT -ajb176,2023-09-24T14:13:01Z,- ajb176 commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1732579148) at 2023-09-24 07:13 AM PDT -ajb176,2023-09-25T16:34:20Z,- ajb176 commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1734098500) at 2023-09-25 09:34 AM PDT -ajb176,2023-09-25T17:19:03Z,- ajb176 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1734164967) at 2023-09-25 10:19 AM PDT -ajb176,2023-09-27T07:19:42Z,- ajb176 submitted pull request review: [5576](https://github.com/hackforla/website/pull/5576#pullrequestreview-1645769872) at 2023-09-27 12:19 AM PDT -ajb176,2023-09-27T08:54:22Z,- ajb176 submitted pull request review: [5611](https://github.com/hackforla/website/pull/5611#pullrequestreview-1645962783) at 2023-09-27 01:54 AM PDT -ajb176,2023-09-27T10:01:28Z,- ajb176 commented on pull request: [5610](https://github.com/hackforla/website/pull/5610#issuecomment-1737091653) at 2023-09-27 03:01 AM PDT -ajb176,2023-09-28T06:49:08Z,- ajb176 submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1648017648) at 2023-09-27 11:49 PM PDT -ajb176,2023-09-29T09:21:00Z,- ajb176 commented on pull request: [5625](https://github.com/hackforla/website/pull/5625#issuecomment-1740576991) at 2023-09-29 02:21 AM PDT -ajb176,2023-09-29T09:39:53Z,- ajb176 commented on pull request: [5626](https://github.com/hackforla/website/pull/5626#issuecomment-1740601320) at 2023-09-29 02:39 AM PDT -ajb176,2023-09-29T10:19:57Z,- ajb176 submitted pull request review: [5616](https://github.com/hackforla/website/pull/5616#pullrequestreview-1650495264) at 2023-09-29 03:19 AM PDT -ajb176,2023-10-03T18:43:42Z,- ajb176 commented on pull request: [5651](https://github.com/hackforla/website/pull/5651#issuecomment-1745527434) at 2023-10-03 11:43 AM PDT -ajb176,2023-10-05T14:48:13Z,- ajb176 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1660073170) at 2023-10-05 07:48 AM PDT -ajb176,2023-10-05T14:55:22Z,- ajb176 commented on pull request: [5663](https://github.com/hackforla/website/pull/5663#issuecomment-1749075736) at 2023-10-05 07:55 AM PDT -ajb176,2023-10-05T15:11:15Z,- ajb176 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1660128610) at 2023-10-05 08:11 AM PDT -ajb176,2023-10-05T17:49:57Z,- ajb176 commented on pull request: [5663](https://github.com/hackforla/website/pull/5663#issuecomment-1749383910) at 2023-10-05 10:49 AM PDT -ajb176,2023-10-05T17:50:36Z,- ajb176 submitted pull request review: [5663](https://github.com/hackforla/website/pull/5663#pullrequestreview-1660413738) at 2023-10-05 10:50 AM PDT -ajb176,2023-10-07T07:34:21Z,- ajb176 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1663016723) at 2023-10-07 12:34 AM PDT -ajb176,2023-10-10T14:45:57Z,- ajb176 commented on pull request: [5683](https://github.com/hackforla/website/pull/5683#issuecomment-1755599352) at 2023-10-10 07:45 AM PDT -ajb176,2023-10-10T16:38:42Z,- ajb176 submitted pull request review: [5683](https://github.com/hackforla/website/pull/5683#pullrequestreview-1668259636) at 2023-10-10 09:38 AM PDT -ajb176,2023-10-10T17:36:39Z,- ajb176 submitted pull request review: [5688](https://github.com/hackforla/website/pull/5688#pullrequestreview-1668473812) at 2023-10-10 10:36 AM PDT -ajb176,2023-10-12T05:37:54Z,- ajb176 submitted pull request review: [5688](https://github.com/hackforla/website/pull/5688#pullrequestreview-1673058793) at 2023-10-11 10:37 PM PDT -ajb176,2023-10-23T00:39:36Z,- ajb176 submitted pull request review: [5765](https://github.com/hackforla/website/pull/5765#pullrequestreview-1691549914) at 2023-10-22 05:39 PM PDT -ajb176,2023-11-03T16:32:54Z,- ajb176 commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1792769911) at 2023-11-03 09:32 AM PDT -ajb176,2023-11-06T03:18:18Z,- ajb176 submitted pull request review: [5820](https://github.com/hackforla/website/pull/5820#pullrequestreview-1714208550) at 2023-11-05 07:18 PM PST -ajb176,2023-11-06T03:22:19Z,- ajb176 commented on pull request: [5853](https://github.com/hackforla/website/pull/5853#issuecomment-1794025491) at 2023-11-05 07:22 PM PST -ajb176,2023-11-06T04:02:16Z,- ajb176 submitted pull request review: [5853](https://github.com/hackforla/website/pull/5853#pullrequestreview-1714230178) at 2023-11-05 08:02 PM PST -ajb176,2023-11-07T00:26:58Z,- ajb176 submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1716559737) at 2023-11-06 04:26 PM PST -ajb176,2023-11-19T08:12:06Z,- ajb176 submitted pull request review: [5913](https://github.com/hackforla/website/pull/5913#pullrequestreview-1738569394) at 2023-11-19 12:12 AM PST -ajb176,2023-11-19T08:14:06Z,- ajb176 submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1738569702) at 2023-11-19 12:14 AM PST -ajb176,2023-11-21T08:41:57Z,- ajb176 commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1820467858) at 2023-11-21 12:41 AM PST -ajb176,2023-11-21T08:44:14Z,- ajb176 commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1820471156) at 2023-11-21 12:44 AM PST -ajb176,2023-11-22T07:41:08Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1822255702) at 2023-11-21 11:41 PM PST -ajb176,2023-11-23T08:13:27Z,- ajb176 submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1745879688) at 2023-11-23 12:13 AM PST -ajb176,2023-11-26T12:46:15Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826775215) at 2023-11-26 04:46 AM PST -ajb176,2023-11-26T12:51:54Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826776502) at 2023-11-26 04:51 AM PST -ajb176,2023-12-02T18:04:45Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1837217833) at 2023-12-02 10:04 AM PST -ajb176,2023-12-15T14:08:32Z,- ajb176 commented on pull request: [6007](https://github.com/hackforla/website/pull/6007#issuecomment-1857945653) at 2023-12-15 06:08 AM PST -ajb176,2024-01-30T14:54:58Z,- ajb176 commented on pull request: [6194](https://github.com/hackforla/website/pull/6194#issuecomment-1917070298) at 2024-01-30 06:54 AM PST -ajb176,2024-01-30T15:18:45Z,- ajb176 submitted pull request review: [6194](https://github.com/hackforla/website/pull/6194#pullrequestreview-1851584817) at 2024-01-30 07:18 AM PST -ajb176,2024-02-09T10:10:41Z,- ajb176 commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1935651728) at 2024-02-09 02:10 AM PST -ajb176,2024-02-10T08:04:30Z,- ajb176 submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1873529234) at 2024-02-10 12:04 AM PST -ajb176,2024-02-11T06:34:03Z,- ajb176 commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1937448990) at 2024-02-10 10:34 PM PST -ajb176,2024-02-27T17:23:07Z,- ajb176 commented on pull request: [6374](https://github.com/hackforla/website/pull/6374#issuecomment-1967246140) at 2024-02-27 09:23 AM PST -ajb176,2024-02-27T17:38:23Z,- ajb176 submitted pull request review: [6374](https://github.com/hackforla/website/pull/6374#pullrequestreview-1904322572) at 2024-02-27 09:38 AM PST -ajb176,2024-03-15T13:08:18Z,- ajb176 commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-1999629971) at 2024-03-15 06:08 AM PDT -ajb176,2024-03-16T19:34:00Z,- ajb176 submitted pull request review: [6462](https://github.com/hackforla/website/pull/6462#pullrequestreview-1941300769) at 2024-03-16 12:34 PM PDT -ajb176,2024-03-26T07:08:08Z,- ajb176 assigned to issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-1712786597) at 2024-03-26 12:08 AM PDT -ajb176,2024-03-26T07:08:24Z,- ajb176 commented on issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-2019535104) at 2024-03-26 12:08 AM PDT -ajb176,2024-03-27T18:35:00Z,- ajb176 commented on issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-2023635397) at 2024-03-27 11:35 AM PDT -ajb176,2024-03-27T18:37:20Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2023656570) at 2024-03-27 11:37 AM PDT -ajb176,2024-03-28T11:10:06Z,- ajb176 submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1965812511) at 2024-03-28 04:10 AM PDT -ajb176,2024-03-28T17:01:19Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2025698413) at 2024-03-28 10:01 AM PDT -ajb176,2024-03-28T20:04:24Z,- ajb176 opened pull request: [6543](https://github.com/hackforla/website/pull/6543) at 2024-03-28 01:04 PM PDT -ajb176,2024-03-28T20:10:24Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026025435) at 2024-03-28 01:10 PM PDT -ajb176,2024-03-28T21:21:56Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026152508) at 2024-03-28 02:21 PM PDT -ajb176,2024-03-29T19:53:50Z,- ajb176 submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1969532597) at 2024-03-29 12:53 PM PDT -ajb176,2024-03-29T20:07:41Z,- ajb176 submitted pull request review: [6547](https://github.com/hackforla/website/pull/6547#pullrequestreview-1969559080) at 2024-03-29 01:07 PM PDT -ajb176,2024-03-31T03:15:23Z,- ajb176 pull request merged: [6543](https://github.com/hackforla/website/pull/6543#event-12302229935) at 2024-03-30 08:15 PM PDT -ajb176,2024-04-13T15:22:00Z,- ajb176 submitted pull request review: [6625](https://github.com/hackforla/website/pull/6625#pullrequestreview-1999281157) at 2024-04-13 08:22 AM PDT -ajb176,2024-04-19T17:19:36Z,- ajb176 submitted pull request review: [6688](https://github.com/hackforla/website/pull/6688#pullrequestreview-2011976889) at 2024-04-19 10:19 AM PDT -ajb176,2024-04-29T17:49:04Z,- ajb176 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2029168807) at 2024-04-29 10:49 AM PDT -ajb176,2024-04-30T09:36:46Z,- ajb176 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2030785474) at 2024-04-30 02:36 AM PDT -ajb176,2024-04-30T10:12:44Z,- ajb176 submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2030865367) at 2024-04-30 03:12 AM PDT -ajb176,2024-05-01T15:34:26Z,- ajb176 submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2033840136) at 2024-05-01 08:34 AM PDT -ajb176,2024-05-15T12:40:17Z,- ajb176 submitted pull request review: [6856](https://github.com/hackforla/website/pull/6856#pullrequestreview-2057894982) at 2024-05-15 05:40 AM PDT -ajb176,2024-05-24T09:51:41Z,- ajb176 submitted pull request review: [6892](https://github.com/hackforla/website/pull/6892#pullrequestreview-2076422732) at 2024-05-24 02:51 AM PDT -ajb176,2024-05-25T12:44:34Z,- ajb176 submitted pull request review: [6893](https://github.com/hackforla/website/pull/6893#pullrequestreview-2078962802) at 2024-05-25 05:44 AM PDT -ajb176,2024-05-30T15:16:48Z,- ajb176 commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2139902414) at 2024-05-30 08:16 AM PDT -ajb176,2024-06-05T19:12:28Z,- ajb176 opened pull request: [6959](https://github.com/hackforla/website/pull/6959) at 2024-06-05 12:12 PM PDT -ajb176,2024-06-05T19:22:43Z,- ajb176 commented on pull request: [6959](https://github.com/hackforla/website/pull/6959#issuecomment-2150793923) at 2024-06-05 12:22 PM PDT -ajb176,2024-06-05T19:41:38Z,- ajb176 pull request closed w/o merging: [6959](https://github.com/hackforla/website/pull/6959#event-13056636183) at 2024-06-05 12:41 PM PDT -ajb176,2024-06-05T19:43:11Z,- ajb176 opened pull request: [6960](https://github.com/hackforla/website/pull/6960) at 2024-06-05 12:43 PM PDT -ajb176,2024-06-05T19:44:31Z,- ajb176 pull request closed w/o merging: [6960](https://github.com/hackforla/website/pull/6960#event-13056667530) at 2024-06-05 12:44 PM PDT -ajb176,2024-06-05T19:46:43Z,- ajb176 opened pull request: [6962](https://github.com/hackforla/website/pull/6962) at 2024-06-05 12:46 PM PDT -ajb176,2024-06-05T19:48:02Z,- ajb176 pull request closed w/o merging: [6962](https://github.com/hackforla/website/pull/6962#event-13056703950) at 2024-06-05 12:48 PM PDT -ajb176,2024-06-05T19:49:45Z,- ajb176 reopened pull request: [6959](https://github.com/hackforla/website/pull/6959#event-13056636183) at 2024-06-05 12:49 PM PDT -ajb176,2024-06-06T07:16:56Z,- ajb176 commented on pull request: [6959](https://github.com/hackforla/website/pull/6959#issuecomment-2151571588) at 2024-06-06 12:16 AM PDT -ajb176,2024-06-06T07:17:24Z,- ajb176 pull request closed w/o merging: [6959](https://github.com/hackforla/website/pull/6959#event-13062067921) at 2024-06-06 12:17 AM PDT -ajb176,2024-06-06T07:58:20Z,- ajb176 opened pull request: [6966](https://github.com/hackforla/website/pull/6966) at 2024-06-06 12:58 AM PDT -ajb176,2024-06-06T08:05:08Z,- ajb176 pull request closed w/o merging: [6966](https://github.com/hackforla/website/pull/6966#event-13062643139) at 2024-06-06 01:05 AM PDT -ajb176,2024-06-06T08:05:35Z,- ajb176 reopened pull request: [6959](https://github.com/hackforla/website/pull/6959#event-13062067921) at 2024-06-06 01:05 AM PDT -ajb176,2024-06-07T05:16:02Z,- ajb176 opened pull request: [6971](https://github.com/hackforla/website/pull/6971) at 2024-06-06 10:16 PM PDT -ajb176,2024-06-07T05:18:57Z,- ajb176 pull request closed w/o merging: [6959](https://github.com/hackforla/website/pull/6959#event-13075157745) at 2024-06-06 10:18 PM PDT -ajb176,2024-06-13T21:56:23Z,- ajb176 submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2117097380) at 2024-06-13 02:56 PM PDT -ajb176,2024-06-13T22:02:30Z,- ajb176 commented on pull request: [7002](https://github.com/hackforla/website/pull/7002#issuecomment-2166868548) at 2024-06-13 03:02 PM PDT -ajb176,2024-06-13T22:14:42Z,- ajb176 commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166881453) at 2024-06-13 03:14 PM PDT -ajb176,2024-06-15T06:09:49Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2169153480) at 2024-06-14 11:09 PM PDT -ajb176,2024-06-17T13:40:49Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2173428363) at 2024-06-17 06:40 AM PDT -ajb176,2024-06-21T07:43:03Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2182190643) at 2024-06-21 12:43 AM PDT -ajb176,2024-07-31T11:39:55Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2260319006) at 2024-07-31 04:39 AM PDT -ajb176,2024-08-03T08:45:53Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2266642257) at 2024-08-03 01:45 AM PDT -ajb176,2024-08-04T13:44:22Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2267548645) at 2024-08-04 06:44 AM PDT -ajb176,2024-09-18T06:47:36Z,- ajb176 opened pull request: [7491](https://github.com/hackforla/website/pull/7491) at 2024-09-17 11:47 PM PDT -ajb176,2024-09-18T06:49:47Z,- ajb176 pull request closed w/o merging: [7491](https://github.com/hackforla/website/pull/7491#event-14302268691) at 2024-09-17 11:49 PM PDT -ajb176,2024-09-26T15:42:07Z,- ajb176 submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2331699119) at 2024-09-26 08:42 AM PDT -ajb176,2024-09-27T07:20:03Z,- ajb176 submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2332945700) at 2024-09-27 12:20 AM PDT -ajb176,2024-11-05T13:14:20Z,- ajb176 commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2457139628) at 2024-11-05 05:14 AM PST -ajb176,2024-11-05T14:40:42Z,- ajb176 submitted pull request review: [7700](https://github.com/hackforla/website/pull/7700#pullrequestreview-2415832192) at 2024-11-05 06:40 AM PST -ajb176,2024-11-06T09:27:21Z,- ajb176 submitted pull request review: [7700](https://github.com/hackforla/website/pull/7700#pullrequestreview-2417675937) at 2024-11-06 01:27 AM PST -ajb176,2024-11-06T09:53:13Z,- ajb176 commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2459165182) at 2024-11-06 01:53 AM PST -ajb176,2024-11-12T17:13:28Z,- ajb176 submitted pull request review: [7712](https://github.com/hackforla/website/pull/7712#pullrequestreview-2430235446) at 2024-11-12 09:13 AM PST -ajb176,2024-12-23T12:33:39Z,- ajb176 commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2559625967) at 2024-12-23 04:33 AM PST -ajb176,2025-01-12T18:22:33Z,- ajb176 commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2585858917) at 2025-01-12 10:22 AM PST -ajb176,2025-01-13T16:10:14Z,- ajb176 commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2587548053) at 2025-01-13 08:10 AM PST -ajb176,2025-01-14T12:33:21Z,- ajb176 submitted pull request review: [7777](https://github.com/hackforla/website/pull/7777#pullrequestreview-2549586502) at 2025-01-14 04:33 AM PST -ajb176,2025-03-04T09:03:06Z,- ajb176 commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2696718667) at 2025-03-04 01:03 AM PST -ajb176,2025-03-04T09:05:11Z,- ajb176 submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2656551171) at 2025-03-04 01:05 AM PST -ajb176,2025-03-05T04:06:14Z,- ajb176 submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2659811917) at 2025-03-04 08:06 PM PST -ajb176,2025-04-07T12:20:01Z,- ajb176 submitted pull request review: [8047](https://github.com/hackforla/website/pull/8047#pullrequestreview-2746620331) at 2025-04-07 05:20 AM PDT -akhilender-bongirwar,2023-09-16T18:29:38Z,- akhilender-bongirwar commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1722288602) at 2023-09-16 11:29 AM PDT -akibrhast,2021-02-03T07:20:48Z,- akibrhast opened pull request: [993](https://github.com/hackforla/website/pull/993) at 2021-02-02 11:20 PM PST -akibrhast,2021-02-03T07:21:52Z,- akibrhast assigned to issue: [991](https://github.com/hackforla/website/issues/991) at 2021-02-02 11:21 PM PST -akibrhast,2021-02-03T07:23:45Z,- akibrhast commented on pull request: [993](https://github.com/hackforla/website/pull/993#issuecomment-772295757) at 2021-02-02 11:23 PM PST -akibrhast,2021-02-03T17:09:35Z,- akibrhast pull request merged: [993](https://github.com/hackforla/website/pull/993#event-4286483160) at 2021-02-03 09:09 AM PST -akibrhast,2021-02-03T17:24:58Z,- akibrhast assigned to issue: [989](https://github.com/hackforla/website/issues/989) at 2021-02-03 09:24 AM PST -akibrhast,2021-02-07T17:28:03Z,- akibrhast opened pull request: [1008](https://github.com/hackforla/website/pull/1008) at 2021-02-07 09:28 AM PST -akibrhast,2021-02-07T17:31:19Z,- akibrhast commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774714588) at 2021-02-07 09:31 AM PST -akibrhast,2021-02-07T17:38:46Z,- akibrhast commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774715975) at 2021-02-07 09:38 AM PST -akibrhast,2021-02-07T18:00:47Z,- akibrhast commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774720242) at 2021-02-07 10:00 AM PST -akibrhast,2021-02-07T18:01:17Z,- akibrhast commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774721069) at 2021-02-07 10:01 AM PST -akibrhast,2021-02-07T18:58:01Z,- akibrhast commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774733507) at 2021-02-07 10:58 AM PST -akibrhast,2021-02-07T19:49:20Z,- akibrhast commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774746265) at 2021-02-07 11:49 AM PST -akibrhast,2021-02-07T19:53:04Z,- akibrhast pull request merged: [1008](https://github.com/hackforla/website/pull/1008#event-4300608362) at 2021-02-07 11:53 AM PST -akibrhast,2021-02-07T20:09:21Z,- akibrhast opened issue: [1013](https://github.com/hackforla/website/issues/1013) at 2021-02-07 12:09 PM PST -akibrhast,2021-02-07T20:11:42Z,- akibrhast commented on issue: [1013](https://github.com/hackforla/website/issues/1013#issuecomment-774752345) at 2021-02-07 12:11 PM PST -akibrhast,2021-02-07T20:36:49Z,- akibrhast assigned to issue: [862](https://github.com/hackforla/website/issues/862) at 2021-02-07 12:36 PM PST -akibrhast,2021-02-08T07:54:59Z,- akibrhast commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-774948436) at 2021-02-07 11:54 PM PST -akibrhast,2021-02-10T04:18:22Z,- akibrhast assigned to issue: [1030](https://github.com/hackforla/website/issues/1030) at 2021-02-09 08:18 PM PST -akibrhast,2021-02-10T22:03:54Z,- akibrhast commented on issue: [1030](https://github.com/hackforla/website/issues/1030#issuecomment-777066335) at 2021-02-10 02:03 PM PST -akibrhast,2021-02-13T20:47:15Z,- akibrhast commented on issue: [1030](https://github.com/hackforla/website/issues/1030#issuecomment-778676110) at 2021-02-13 12:47 PM PST -akibrhast,2021-02-13T23:08:51Z,- akibrhast opened pull request: [1034](https://github.com/hackforla/website/pull/1034) at 2021-02-13 03:08 PM PST -akibrhast,2021-02-13T23:10:26Z,- akibrhast commented on issue: [1030](https://github.com/hackforla/website/issues/1030#issuecomment-778691387) at 2021-02-13 03:10 PM PST -akibrhast,2021-02-13T23:19:17Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-778692198) at 2021-02-13 03:19 PM PST -akibrhast,2021-02-14T01:17:19Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778704066) at 2021-02-13 05:17 PM PST -akibrhast,2021-02-14T02:12:25Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778709332) at 2021-02-13 06:12 PM PST -akibrhast,2021-02-14T02:13:10Z,- akibrhast opened issue: [1035](https://github.com/hackforla/website/issues/1035) at 2021-02-13 06:13 PM PST -akibrhast,2021-02-14T02:14:08Z,- akibrhast closed issue as completed: [1035](https://github.com/hackforla/website/issues/1035#event-4328329393) at 2021-02-13 06:14 PM PST -akibrhast,2021-02-14T02:16:46Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778709751) at 2021-02-13 06:16 PM PST -akibrhast,2021-02-14T02:42:57Z,- akibrhast opened issue: [1036](https://github.com/hackforla/website/issues/1036) at 2021-02-13 06:42 PM PST -akibrhast,2021-02-14T02:43:20Z,- akibrhast commented on issue: [1036](https://github.com/hackforla/website/issues/1036#issuecomment-778712371) at 2021-02-13 06:43 PM PST -akibrhast,2021-02-14T02:43:20Z,- akibrhast closed issue as completed: [1036](https://github.com/hackforla/website/issues/1036#event-4328342247) at 2021-02-13 06:43 PM PST -akibrhast,2021-02-14T02:44:37Z,- akibrhast opened issue: [1037](https://github.com/hackforla/website/issues/1037) at 2021-02-13 06:44 PM PST -akibrhast,2021-02-14T02:45:18Z,- akibrhast commented on issue: [1037](https://github.com/hackforla/website/issues/1037#issuecomment-778712568) at 2021-02-13 06:45 PM PST -akibrhast,2021-02-14T02:47:02Z,- akibrhast closed issue as completed: [1037](https://github.com/hackforla/website/issues/1037#event-4328343829) at 2021-02-13 06:47 PM PST -akibrhast,2021-02-14T03:54:59Z,- akibrhast opened issue: [1038](https://github.com/hackforla/website/issues/1038) at 2021-02-13 07:54 PM PST -akibrhast,2021-02-14T03:58:40Z,- akibrhast closed issue as completed: [1038](https://github.com/hackforla/website/issues/1038#event-4328376829) at 2021-02-13 07:58 PM PST -akibrhast,2021-02-14T04:16:35Z,- akibrhast opened issue: [1039](https://github.com/hackforla/website/issues/1039) at 2021-02-13 08:16 PM PST -akibrhast,2021-02-14T04:18:23Z,- akibrhast commented on issue: [1039](https://github.com/hackforla/website/issues/1039#issuecomment-778721553) at 2021-02-13 08:18 PM PST -akibrhast,2021-02-14T04:18:23Z,- akibrhast closed issue as completed: [1039](https://github.com/hackforla/website/issues/1039#event-4328386020) at 2021-02-13 08:18 PM PST -akibrhast,2021-02-14T04:19:16Z,- akibrhast opened issue: [1040](https://github.com/hackforla/website/issues/1040) at 2021-02-13 08:19 PM PST -akibrhast,2021-02-14T04:21:01Z,- akibrhast closed issue as completed: [1040](https://github.com/hackforla/website/issues/1040#event-4328387333) at 2021-02-13 08:21 PM PST -akibrhast,2021-02-14T04:29:41Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778722671) at 2021-02-13 08:29 PM PST -akibrhast,2021-02-14T18:18:25Z,- akibrhast assigned to issue: [1053](https://github.com/hackforla/website/issues/1053) at 2021-02-14 10:18 AM PST -akibrhast,2021-02-14T18:43:11Z,- akibrhast commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778822022) at 2021-02-14 10:43 AM PST -akibrhast,2021-02-14T19:04:15Z,- akibrhast unassigned from issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-775180799) at 2021-02-14 11:04 AM PST -akibrhast,2021-02-15T01:25:41Z,- akibrhast commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778884166) at 2021-02-14 05:25 PM PST -akibrhast,2021-02-15T18:17:36Z,- akibrhast opened issue: [1056](https://github.com/hackforla/website/issues/1056) at 2021-02-15 10:17 AM PST -akibrhast,2021-02-15T18:21:31Z,- akibrhast closed issue as completed: [1053](https://github.com/hackforla/website/issues/1053#event-4332995360) at 2021-02-15 10:21 AM PST -akibrhast,2021-02-15T18:28:21Z,- akibrhast closed issue as completed: [1010](https://github.com/hackforla/website/issues/1010#event-4333013587) at 2021-02-15 10:28 AM PST -akibrhast,2021-02-15T18:28:29Z,- akibrhast reopened issue: [1010](https://github.com/hackforla/website/issues/1010#event-4333013587) at 2021-02-15 10:28 AM PST -akibrhast,2021-02-16T02:56:48Z,- akibrhast pull request merged: [1034](https://github.com/hackforla/website/pull/1034#event-4334097306) at 2021-02-15 06:56 PM PST -akibrhast,2021-02-16T22:30:48Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-780159714) at 2021-02-16 02:30 PM PST -akibrhast,2021-02-17T00:38:22Z,- akibrhast assigned to issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-16 04:38 PM PST -akibrhast,2021-02-17T01:03:32Z,- akibrhast opened pull request: [1059](https://github.com/hackforla/website/pull/1059) at 2021-02-16 05:03 PM PST -akibrhast,2021-02-17T01:08:50Z,- akibrhast commented on issue: [1043](https://github.com/hackforla/website/issues/1043#issuecomment-780223365) at 2021-02-16 05:08 PM PST -akibrhast,2021-02-17T01:14:59Z,- akibrhast commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780225800) at 2021-02-16 05:14 PM PST -akibrhast,2021-02-17T01:24:24Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-780230138) at 2021-02-16 05:24 PM PST -akibrhast,2021-02-17T01:28:00Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-780231420) at 2021-02-16 05:28 PM PST -akibrhast,2021-02-17T01:54:22Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-780240463) at 2021-02-16 05:54 PM PST -akibrhast,2021-02-17T02:08:39Z,- akibrhast commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780246143) at 2021-02-16 06:08 PM PST -akibrhast,2021-02-17T03:11:10Z,- akibrhast commented on pull request: [1058](https://github.com/hackforla/website/pull/1058#issuecomment-780266605) at 2021-02-16 07:11 PM PST -akibrhast,2021-02-17T03:11:19Z,- akibrhast closed issue by PR 1058: [1050](https://github.com/hackforla/website/issues/1050#event-4339240161) at 2021-02-16 07:11 PM PST -akibrhast,2021-02-17T03:22:10Z,- akibrhast pull request merged: [1059](https://github.com/hackforla/website/pull/1059#event-4339263294) at 2021-02-16 07:22 PM PST -akibrhast,2021-02-17T03:53:01Z,- akibrhast assigned to issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780277146) at 2021-02-16 07:53 PM PST -akibrhast,2021-02-17T15:18:49Z,- akibrhast commented on issue: [1062](https://github.com/hackforla/website/issues/1062#issuecomment-780627575) at 2021-02-17 07:18 AM PST -akibrhast,2021-02-17T15:18:49Z,- akibrhast closed issue as completed: [1062](https://github.com/hackforla/website/issues/1062#event-4341952171) at 2021-02-17 07:18 AM PST -akibrhast,2021-02-17T16:08:07Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780664773) at 2021-02-17 08:08 AM PST -akibrhast,2021-02-17T16:16:19Z,- akibrhast commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-780670600) at 2021-02-17 08:16 AM PST -akibrhast,2021-02-17T16:42:01Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780688267) at 2021-02-17 08:42 AM PST -akibrhast,2021-02-18T03:36:11Z,- akibrhast commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781024676) at 2021-02-17 07:36 PM PST -akibrhast,2021-02-18T03:53:49Z,- akibrhast submitted pull request review: [1073](https://github.com/hackforla/website/pull/1073#pullrequestreview-592832595) at 2021-02-17 07:53 PM PST -akibrhast,2021-02-18T04:14:51Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-781036771) at 2021-02-17 08:14 PM PST -akibrhast,2021-02-18T04:41:23Z,- akibrhast commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-781045101) at 2021-02-17 08:41 PM PST -akibrhast,2021-02-18T05:48:38Z,- akibrhast submitted pull request review: [1073](https://github.com/hackforla/website/pull/1073#pullrequestreview-592870084) at 2021-02-17 09:48 PM PST -akibrhast,2021-02-18T05:51:27Z,- akibrhast commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781075013) at 2021-02-17 09:51 PM PST -akibrhast,2021-02-18T16:28:54Z,- akibrhast commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781467725) at 2021-02-18 08:28 AM PST -akibrhast,2021-02-19T17:35:10Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-782224871) at 2021-02-19 09:35 AM PST -akibrhast,2021-02-21T18:14:13Z,- akibrhast assigned to issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-782224871) at 2021-02-21 10:14 AM PST -akibrhast,2021-02-21T19:19:40Z,- akibrhast commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-782910507) at 2021-02-21 11:19 AM PST -akibrhast,2021-02-22T00:38:09Z,- akibrhast submitted pull request review: [1088](https://github.com/hackforla/website/pull/1088#pullrequestreview-594903719) at 2021-02-21 04:38 PM PST -akibrhast,2021-02-22T00:45:02Z,- akibrhast opened issue: [1090](https://github.com/hackforla/website/issues/1090) at 2021-02-21 04:45 PM PST -akibrhast,2021-02-22T01:01:19Z,- akibrhast assigned to issue: [1069](https://github.com/hackforla/website/issues/1069) at 2021-02-21 05:01 PM PST -akibrhast,2021-02-22T01:03:12Z,- akibrhast commented on issue: [1069](https://github.com/hackforla/website/issues/1069#issuecomment-782973752) at 2021-02-21 05:03 PM PST -akibrhast,2021-02-22T01:06:02Z,- akibrhast commented on issue: [1066](https://github.com/hackforla/website/issues/1066#issuecomment-782974307) at 2021-02-21 05:06 PM PST -akibrhast,2021-02-22T03:22:32Z,- akibrhast submitted pull request review: [1087](https://github.com/hackforla/website/pull/1087#pullrequestreview-594985868) at 2021-02-21 07:22 PM PST -akibrhast,2021-02-22T17:04:01Z,- akibrhast opened pull request: [1092](https://github.com/hackforla/website/pull/1092) at 2021-02-22 09:04 AM PST -akibrhast,2021-02-22T17:26:40Z,- akibrhast submitted pull request review: [1091](https://github.com/hackforla/website/pull/1091#pullrequestreview-595596272) at 2021-02-22 09:26 AM PST -akibrhast,2021-02-22T17:47:25Z,- akibrhast commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783551634) at 2021-02-22 09:47 AM PST -akibrhast,2021-02-22T17:51:18Z,- akibrhast commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-783553986) at 2021-02-22 09:51 AM PST -akibrhast,2021-02-22T17:58:01Z,- akibrhast submitted pull request review: [1091](https://github.com/hackforla/website/pull/1091#pullrequestreview-595625232) at 2021-02-22 09:58 AM PST -akibrhast,2021-02-22T18:07:22Z,- akibrhast commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783564135) at 2021-02-22 10:07 AM PST -akibrhast,2021-02-22T18:08:28Z,- akibrhast closed issue by PR 1091: [1080](https://github.com/hackforla/website/issues/1080#event-4361167216) at 2021-02-22 10:08 AM PST -akibrhast,2021-02-22T19:42:37Z,- akibrhast commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783625432) at 2021-02-22 11:42 AM PST -akibrhast,2021-02-22T20:40:33Z,- akibrhast commented on pull request: [1092](https://github.com/hackforla/website/pull/1092#issuecomment-783660525) at 2021-02-22 12:40 PM PST -akibrhast,2021-02-23T00:02:41Z,- akibrhast opened issue: [1093](https://github.com/hackforla/website/issues/1093) at 2021-02-22 04:02 PM PST -akibrhast,2021-02-23T00:02:56Z,- akibrhast assigned to issue: [1093](https://github.com/hackforla/website/issues/1093) at 2021-02-22 04:02 PM PST -akibrhast,2021-02-23T00:04:20Z,- akibrhast commented on issue: [1093](https://github.com/hackforla/website/issues/1093#issuecomment-783768166) at 2021-02-22 04:04 PM PST -akibrhast,2021-02-23T04:57:57Z,- akibrhast submitted pull request review: [1094](https://github.com/hackforla/website/pull/1094#pullrequestreview-595996658) at 2021-02-22 08:57 PM PST -akibrhast,2021-02-23T04:59:21Z,- akibrhast closed issue by PR 1094: [863](https://github.com/hackforla/website/issues/863#event-4363195925) at 2021-02-22 08:59 PM PST -akibrhast,2021-02-23T05:07:30Z,- akibrhast opened pull request: [1095](https://github.com/hackforla/website/pull/1095) at 2021-02-22 09:07 PM PST -akibrhast,2021-02-23T19:51:11Z,- akibrhast commented on issue: [1093](https://github.com/hackforla/website/issues/1093#issuecomment-784467271) at 2021-02-23 11:51 AM PST -akibrhast,2021-02-23T19:52:01Z,- akibrhast commented on issue: [1069](https://github.com/hackforla/website/issues/1069#issuecomment-784467767) at 2021-02-23 11:52 AM PST -akibrhast,2021-02-23T19:55:40Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-784469977) at 2021-02-23 11:55 AM PST -akibrhast,2021-02-24T03:23:03Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-597032529) at 2021-02-23 07:23 PM PST -akibrhast,2021-02-24T03:45:06Z,- akibrhast submitted pull request review: [1097](https://github.com/hackforla/website/pull/1097#pullrequestreview-597040626) at 2021-02-23 07:45 PM PST -akibrhast,2021-02-24T03:45:20Z,- akibrhast closed issue by PR 1097: [1042](https://github.com/hackforla/website/issues/1042#event-4368626813) at 2021-02-23 07:45 PM PST -akibrhast,2021-02-24T03:51:36Z,- akibrhast opened issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:51 PM PST -akibrhast,2021-02-24T03:55:30Z,- akibrhast assigned to issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:55 PM PST -akibrhast,2021-02-24T03:55:39Z,- akibrhast unassigned from issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:55 PM PST -akibrhast,2021-02-24T03:56:21Z,- akibrhast assigned to issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:56 PM PST -akibrhast,2021-02-24T03:56:25Z,- akibrhast unassigned from issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:56 PM PST -akibrhast,2021-02-24T04:30:27Z,- akibrhast pull request merged: [1095](https://github.com/hackforla/website/pull/1095#event-4368733283) at 2021-02-23 08:30 PM PST -akibrhast,2021-02-24T05:04:18Z,- akibrhast opened pull request: [1100](https://github.com/hackforla/website/pull/1100) at 2021-02-23 09:04 PM PST -akibrhast,2021-02-24T05:04:53Z,- akibrhast pull request closed w/o merging: [1092](https://github.com/hackforla/website/pull/1092#event-4368816443) at 2021-02-23 09:04 PM PST -akibrhast,2021-02-24T05:13:02Z,- akibrhast commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-784771774) at 2021-02-23 09:13 PM PST -akibrhast,2021-02-24T05:39:25Z,- akibrhast submitted pull request review: [1101](https://github.com/hackforla/website/pull/1101#pullrequestreview-597090537) at 2021-02-23 09:39 PM PST -akibrhast,2021-02-24T05:39:43Z,- akibrhast closed issue by PR 1101: [1056](https://github.com/hackforla/website/issues/1056#event-4368922805) at 2021-02-23 09:39 PM PST -akibrhast,2021-02-24T06:18:18Z,- akibrhast commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-784818897) at 2021-02-23 10:18 PM PST -akibrhast,2021-02-24T06:25:56Z,- akibrhast opened issue: [1104](https://github.com/hackforla/website/issues/1104) at 2021-02-23 10:25 PM PST -akibrhast,2021-02-24T06:26:51Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-784823700) at 2021-02-23 10:26 PM PST -akibrhast,2021-02-24T06:51:38Z,- akibrhast closed issue as completed: [1010](https://github.com/hackforla/website/issues/1010#event-4369154841) at 2021-02-23 10:51 PM PST -akibrhast,2021-02-25T00:32:26Z,- akibrhast commented on pull request: [1108](https://github.com/hackforla/website/pull/1108#issuecomment-785487253) at 2021-02-24 04:32 PM PST -akibrhast,2021-02-25T00:32:47Z,- akibrhast submitted pull request review: [1108](https://github.com/hackforla/website/pull/1108#pullrequestreview-598057801) at 2021-02-24 04:32 PM PST -akibrhast,2021-02-25T01:34:44Z,- akibrhast opened issue: [1109](https://github.com/hackforla/website/issues/1109) at 2021-02-24 05:34 PM PST -akibrhast,2021-02-25T01:39:52Z,- akibrhast opened issue: [1110](https://github.com/hackforla/website/issues/1110) at 2021-02-24 05:39 PM PST -akibrhast,2021-02-25T01:43:38Z,- akibrhast opened issue: [1111](https://github.com/hackforla/website/issues/1111) at 2021-02-24 05:43 PM PST -akibrhast,2021-02-25T01:48:31Z,- akibrhast opened issue: [1112](https://github.com/hackforla/website/issues/1112) at 2021-02-24 05:48 PM PST -akibrhast,2021-02-25T01:53:24Z,- akibrhast opened issue: [1113](https://github.com/hackforla/website/issues/1113) at 2021-02-24 05:53 PM PST -akibrhast,2021-02-25T01:56:18Z,- akibrhast opened issue: [1114](https://github.com/hackforla/website/issues/1114) at 2021-02-24 05:56 PM PST -akibrhast,2021-02-25T01:56:37Z,- akibrhast assigned to issue: [1114](https://github.com/hackforla/website/issues/1114) at 2021-02-24 05:56 PM PST -akibrhast,2021-02-25T01:57:28Z,- akibrhast assigned to issue: [1113](https://github.com/hackforla/website/issues/1113) at 2021-02-24 05:57 PM PST -akibrhast,2021-02-25T01:58:11Z,- akibrhast assigned to issue: [1112](https://github.com/hackforla/website/issues/1112) at 2021-02-24 05:58 PM PST -akibrhast,2021-02-25T01:58:54Z,- akibrhast assigned to issue: [1111](https://github.com/hackforla/website/issues/1111) at 2021-02-24 05:58 PM PST -akibrhast,2021-02-25T01:59:48Z,- akibrhast assigned to issue: [1109](https://github.com/hackforla/website/issues/1109) at 2021-02-24 05:59 PM PST -akibrhast,2021-02-25T02:03:30Z,- akibrhast opened issue: [1115](https://github.com/hackforla/website/issues/1115) at 2021-02-24 06:03 PM PST -akibrhast,2021-02-25T02:07:55Z,- akibrhast opened issue: [1116](https://github.com/hackforla/website/issues/1116) at 2021-02-24 06:07 PM PST -akibrhast,2021-02-25T02:13:45Z,- akibrhast opened pull request: [1117](https://github.com/hackforla/website/pull/1117) at 2021-02-24 06:13 PM PST -akibrhast,2021-02-25T23:39:35Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786305710) at 2021-02-25 03:39 PM PST -akibrhast,2021-02-26T00:16:43Z,- akibrhast opened pull request: [1121](https://github.com/hackforla/website/pull/1121) at 2021-02-25 04:16 PM PST -akibrhast,2021-02-26T00:20:59Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-786320635) at 2021-02-25 04:20 PM PST -akibrhast,2021-02-26T03:02:03Z,- akibrhast pull request merged: [1121](https://github.com/hackforla/website/pull/1121#event-4379779404) at 2021-02-25 07:02 PM PST -akibrhast,2021-02-26T07:34:22Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786468781) at 2021-02-25 11:34 PM PST -akibrhast,2021-02-26T09:20:40Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786519918) at 2021-02-26 01:20 AM PST -akibrhast,2021-02-26T17:33:17Z,- akibrhast assigned to issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786788081) at 2021-02-26 09:33 AM PST -akibrhast,2021-02-26T17:47:49Z,- akibrhast commented on issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-02-26 09:47 AM PST -akibrhast,2021-02-26T18:19:01Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786813141) at 2021-02-26 10:19 AM PST -akibrhast,2021-02-26T19:19:40Z,- akibrhast commented on pull request: [1124](https://github.com/hackforla/website/pull/1124#issuecomment-786844165) at 2021-02-26 11:19 AM PST -akibrhast,2021-02-26T19:20:53Z,- akibrhast submitted pull request review: [1124](https://github.com/hackforla/website/pull/1124#pullrequestreview-599872471) at 2021-02-26 11:20 AM PST -akibrhast,2021-02-26T22:38:26Z,- akibrhast submitted pull request review: [1120](https://github.com/hackforla/website/pull/1120#pullrequestreview-600005184) at 2021-02-26 02:38 PM PST -akibrhast,2021-02-26T22:38:39Z,- akibrhast closed issue by PR 1120: [1047](https://github.com/hackforla/website/issues/1047#event-4384057700) at 2021-02-26 02:38 PM PST -akibrhast,2021-02-26T22:40:11Z,- akibrhast assigned to issue: [1116](https://github.com/hackforla/website/issues/1116) at 2021-02-26 02:40 PM PST -akibrhast,2021-02-27T18:37:22Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-787116725) at 2021-02-27 10:37 AM PST -akibrhast,2021-02-27T20:21:18Z,- akibrhast commented on pull request: [1100](https://github.com/hackforla/website/pull/1100#issuecomment-787129795) at 2021-02-27 12:21 PM PST -akibrhast,2021-02-28T15:57:43Z,- akibrhast commented on issue: [1109](https://github.com/hackforla/website/issues/1109#issuecomment-787474088) at 2021-02-28 07:57 AM PST -akibrhast,2021-02-28T16:02:59Z,- akibrhast commented on issue: [1111](https://github.com/hackforla/website/issues/1111#issuecomment-787474839) at 2021-02-28 08:02 AM PST -akibrhast,2021-02-28T16:03:48Z,- akibrhast commented on issue: [1116](https://github.com/hackforla/website/issues/1116#issuecomment-787474979) at 2021-02-28 08:03 AM PST -akibrhast,2021-02-28T16:04:29Z,- akibrhast commented on issue: [1114](https://github.com/hackforla/website/issues/1114#issuecomment-787475100) at 2021-02-28 08:04 AM PST -akibrhast,2021-02-28T16:04:54Z,- akibrhast commented on issue: [1113](https://github.com/hackforla/website/issues/1113#issuecomment-787475169) at 2021-02-28 08:04 AM PST -akibrhast,2021-02-28T16:05:07Z,- akibrhast commented on issue: [1112](https://github.com/hackforla/website/issues/1112#issuecomment-787475206) at 2021-02-28 08:05 AM PST -akibrhast,2021-02-28T16:05:53Z,- akibrhast unassigned from issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-02-28 08:05 AM PST -akibrhast,2021-02-28T18:40:04Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-787499863) at 2021-02-28 10:40 AM PST -akibrhast,2021-02-28T19:46:22Z,- akibrhast pull request merged: [1117](https://github.com/hackforla/website/pull/1117#event-4386455258) at 2021-02-28 11:46 AM PST -akibrhast,2021-02-28T21:14:49Z,- akibrhast submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-600306272) at 2021-02-28 01:14 PM PST -akibrhast,2021-02-28T21:40:15Z,- akibrhast commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787527880) at 2021-02-28 01:40 PM PST -akibrhast,2021-02-28T22:24:30Z,- akibrhast commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787535330) at 2021-02-28 02:24 PM PST -akibrhast,2021-02-28T23:09:41Z,- akibrhast commented on pull request: [1140](https://github.com/hackforla/website/pull/1140#issuecomment-787542123) at 2021-02-28 03:09 PM PST -akibrhast,2021-02-28T23:33:41Z,- akibrhast commented on pull request: [1140](https://github.com/hackforla/website/pull/1140#issuecomment-787545995) at 2021-02-28 03:33 PM PST -akibrhast,2021-03-01T23:31:10Z,- akibrhast commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788394228) at 2021-03-01 03:31 PM PST -akibrhast,2021-03-01T23:33:12Z,- akibrhast commented on issue: [1107](https://github.com/hackforla/website/issues/1107#issuecomment-788395101) at 2021-03-01 03:33 PM PST -akibrhast,2021-03-01T23:35:22Z,- akibrhast submitted pull request review: [1145](https://github.com/hackforla/website/pull/1145#pullrequestreview-601269530) at 2021-03-01 03:35 PM PST -akibrhast,2021-03-02T00:07:47Z,- akibrhast submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-601285747) at 2021-03-01 04:07 PM PST -akibrhast,2021-03-02T03:43:46Z,- akibrhast commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-788556860) at 2021-03-01 07:43 PM PST -akibrhast,2021-03-02T04:00:09Z,- akibrhast submitted pull request review: [1143](https://github.com/hackforla/website/pull/1143#pullrequestreview-601386327) at 2021-03-01 08:00 PM PST -akibrhast,2021-03-02T04:16:00Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-601393351) at 2021-03-01 08:16 PM PST -akibrhast,2021-03-02T04:48:19Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-601409395) at 2021-03-01 08:48 PM PST -akibrhast,2021-03-02T06:50:59Z,- akibrhast submitted pull request review: [1148](https://github.com/hackforla/website/pull/1148#pullrequestreview-601475237) at 2021-03-01 10:50 PM PST -akibrhast,2021-03-02T18:52:00Z,- akibrhast submitted pull request review: [1147](https://github.com/hackforla/website/pull/1147#pullrequestreview-602155087) at 2021-03-02 10:52 AM PST -akibrhast,2021-03-03T01:10:38Z,- akibrhast submitted pull request review: [1149](https://github.com/hackforla/website/pull/1149#pullrequestreview-602419454) at 2021-03-02 05:10 PM PST -akibrhast,2021-03-03T01:11:04Z,- akibrhast closed issue by PR 1149: [896](https://github.com/hackforla/website/issues/896#event-4398909847) at 2021-03-02 05:11 PM PST -akibrhast,2021-03-03T02:04:38Z,- akibrhast commented on pull request: [1153](https://github.com/hackforla/website/pull/1153#issuecomment-789368338) at 2021-03-02 06:04 PM PST -akibrhast,2021-03-03T02:05:13Z,- akibrhast submitted pull request review: [1153](https://github.com/hackforla/website/pull/1153#pullrequestreview-602443672) at 2021-03-02 06:05 PM PST -akibrhast,2021-03-03T03:22:56Z,- akibrhast closed issue by PR 1147: [1106](https://github.com/hackforla/website/issues/1106#event-4399269699) at 2021-03-02 07:22 PM PST -akibrhast,2021-03-03T03:35:55Z,- akibrhast commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-789402425) at 2021-03-02 07:35 PM PST -akibrhast,2021-03-03T03:39:26Z,- akibrhast pull request merged: [1100](https://github.com/hackforla/website/pull/1100#event-4399315369) at 2021-03-02 07:39 PM PST -akibrhast,2021-03-03T05:06:14Z,- akibrhast closed issue by PR 1148: [1136](https://github.com/hackforla/website/issues/1136#event-4399557823) at 2021-03-02 09:06 PM PST -akibrhast,2021-03-03T05:20:54Z,- akibrhast closed issue by PR 1153: [1128](https://github.com/hackforla/website/issues/1128#event-4399608355) at 2021-03-02 09:20 PM PST -akibrhast,2021-03-03T16:16:14Z,- akibrhast opened pull request: [1157](https://github.com/hackforla/website/pull/1157) at 2021-03-03 08:16 AM PST -akibrhast,2021-03-03T16:41:38Z,- akibrhast commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-789864124) at 2021-03-03 08:41 AM PST -akibrhast,2021-03-03T18:49:47Z,- akibrhast commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789971856) at 2021-03-03 10:49 AM PST -akibrhast,2021-03-03T19:01:53Z,- akibrhast commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789979656) at 2021-03-03 11:01 AM PST -akibrhast,2021-03-03T20:49:55Z,- akibrhast commented on issue: [1127](https://github.com/hackforla/website/issues/1127#issuecomment-790045464) at 2021-03-03 12:49 PM PST -akibrhast,2021-03-03T20:49:56Z,- akibrhast closed issue as completed: [1127](https://github.com/hackforla/website/issues/1127#event-4404242982) at 2021-03-03 12:49 PM PST -akibrhast,2021-03-03T20:55:41Z,- akibrhast assigned to issue: [1067](https://github.com/hackforla/website/issues/1067) at 2021-03-03 12:55 PM PST -akibrhast,2021-03-03T20:55:50Z,- akibrhast unassigned from issue: [1067](https://github.com/hackforla/website/issues/1067) at 2021-03-03 12:55 PM PST -akibrhast,2021-03-03T22:23:48Z,- akibrhast opened pull request: [1159](https://github.com/hackforla/website/pull/1159) at 2021-03-03 02:23 PM PST -akibrhast,2021-03-03T22:50:09Z,- akibrhast pull request closed w/o merging: [1159](https://github.com/hackforla/website/pull/1159#event-4404695477) at 2021-03-03 02:50 PM PST -akibrhast,2021-03-04T02:01:58Z,- akibrhast submitted pull request review: [1160](https://github.com/hackforla/website/pull/1160#pullrequestreview-603635867) at 2021-03-03 06:01 PM PST -akibrhast,2021-03-04T02:02:03Z,- akibrhast closed issue by PR 1160: [1107](https://github.com/hackforla/website/issues/1107#event-4405291254) at 2021-03-03 06:02 PM PST -akibrhast,2021-03-04T20:50:08Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-790931956) at 2021-03-04 12:50 PM PST -akibrhast,2021-03-04T22:36:04Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-790993825) at 2021-03-04 02:36 PM PST -akibrhast,2021-03-04T23:45:07Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791034218) at 2021-03-04 03:45 PM PST -akibrhast,2021-03-05T00:10:41Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791044592) at 2021-03-04 04:10 PM PST -akibrhast,2021-03-05T01:15:03Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791070766) at 2021-03-04 05:15 PM PST -akibrhast,2021-03-05T01:21:53Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791073123) at 2021-03-04 05:21 PM PST -akibrhast,2021-03-05T18:17:19Z,- akibrhast submitted pull request review: [1161](https://github.com/hackforla/website/pull/1161#pullrequestreview-605484511) at 2021-03-05 10:17 AM PST -akibrhast,2021-03-05T18:21:09Z,- akibrhast closed issue by PR 1161: [1144](https://github.com/hackforla/website/issues/1144#event-4414896623) at 2021-03-05 10:21 AM PST -akibrhast,2021-03-06T07:34:38Z,- akibrhast pull request merged: [1157](https://github.com/hackforla/website/pull/1157#event-4416609979) at 2021-03-05 11:34 PM PST -akibrhast,2021-03-06T16:28:57Z,- akibrhast submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-605768851) at 2021-03-06 08:28 AM PST -akibrhast,2021-03-06T17:03:07Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-791990296) at 2021-03-06 09:03 AM PST -akibrhast,2021-03-06T17:06:06Z,- akibrhast commented on issue: [1163](https://github.com/hackforla/website/issues/1163#issuecomment-791990857) at 2021-03-06 09:06 AM PST -akibrhast,2021-03-06T17:06:09Z,- akibrhast closed issue as completed: [1163](https://github.com/hackforla/website/issues/1163#event-4417069726) at 2021-03-06 09:06 AM PST -akibrhast,2021-03-06T17:13:30Z,- akibrhast commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-791991893) at 2021-03-06 09:13 AM PST -akibrhast,2021-03-06T17:28:25Z,- akibrhast commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-791994597) at 2021-03-06 09:28 AM PST -akibrhast,2021-03-06T19:50:34Z,- akibrhast submitted pull request review: [1162](https://github.com/hackforla/website/pull/1162#pullrequestreview-605783114) at 2021-03-06 11:50 AM PST -akibrhast,2021-03-06T19:50:42Z,- akibrhast closed issue by PR 1162: [1064](https://github.com/hackforla/website/issues/1064#event-4417228342) at 2021-03-06 11:50 AM PST -akibrhast,2021-03-07T19:08:28Z,- akibrhast opened issue: [1171](https://github.com/hackforla/website/issues/1171) at 2021-03-07 11:08 AM PST -akibrhast,2021-03-08T16:43:46Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-792889502) at 2021-03-08 08:43 AM PST -akibrhast,2021-03-08T18:16:19Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-606574383) at 2021-03-08 10:16 AM PST -akibrhast,2021-03-08T21:26:28Z,- akibrhast opened pull request: [1174](https://github.com/hackforla/website/pull/1174) at 2021-03-08 01:26 PM PST -akibrhast,2021-03-08T21:27:31Z,- akibrhast pull request merged: [1174](https://github.com/hackforla/website/pull/1174#event-4423676410) at 2021-03-08 01:27 PM PST -akibrhast,2021-03-08T21:43:48Z,- akibrhast submitted pull request review: [1173](https://github.com/hackforla/website/pull/1173#pullrequestreview-606734677) at 2021-03-08 01:43 PM PST -akibrhast,2021-03-08T23:04:34Z,- akibrhast opened pull request: [1175](https://github.com/hackforla/website/pull/1175) at 2021-03-08 03:04 PM PST -akibrhast,2021-03-08T23:37:01Z,- akibrhast pull request merged: [1175](https://github.com/hackforla/website/pull/1175#event-4424177590) at 2021-03-08 03:37 PM PST -akibrhast,2021-03-09T00:54:36Z,- akibrhast opened pull request: [1177](https://github.com/hackforla/website/pull/1177) at 2021-03-08 04:54 PM PST -akibrhast,2021-03-09T01:00:55Z,- akibrhast opened pull request: [1178](https://github.com/hackforla/website/pull/1178) at 2021-03-08 05:00 PM PST -akibrhast,2021-03-09T01:01:04Z,- akibrhast pull request closed w/o merging: [1177](https://github.com/hackforla/website/pull/1177#event-4424456500) at 2021-03-08 05:01 PM PST -akibrhast,2021-03-09T01:01:48Z,- akibrhast pull request closed w/o merging: [1178](https://github.com/hackforla/website/pull/1178#event-4424459513) at 2021-03-08 05:01 PM PST -akibrhast,2021-03-09T01:06:24Z,- akibrhast commented on pull request: [1179](https://github.com/hackforla/website/pull/1179#issuecomment-793227427) at 2021-03-08 05:06 PM PST -akibrhast,2021-03-09T03:01:45Z,- akibrhast submitted pull request review: [1176](https://github.com/hackforla/website/pull/1176#pullrequestreview-606893074) at 2021-03-08 07:01 PM PST -akibrhast,2021-03-09T03:04:02Z,- akibrhast submitted pull request review: [1172](https://github.com/hackforla/website/pull/1172#pullrequestreview-606893944) at 2021-03-08 07:04 PM PST -akibrhast,2021-03-09T14:59:05Z,- akibrhast submitted pull request review: [1181](https://github.com/hackforla/website/pull/1181#pullrequestreview-607504175) at 2021-03-09 06:59 AM PST -akibrhast,2021-03-09T17:57:00Z,- akibrhast submitted pull request review: [1172](https://github.com/hackforla/website/pull/1172#pullrequestreview-607701859) at 2021-03-09 09:57 AM PST -akibrhast,2021-03-09T17:57:09Z,- akibrhast closed issue by PR 1172: [1169](https://github.com/hackforla/website/issues/1169#event-4430258948) at 2021-03-09 09:57 AM PST -akibrhast,2021-03-09T18:09:28Z,- akibrhast submitted pull request review: [1182](https://github.com/hackforla/website/pull/1182#pullrequestreview-607712926) at 2021-03-09 10:09 AM PST -akibrhast,2021-03-10T00:33:42Z,- akibrhast commented on pull request: [1176](https://github.com/hackforla/website/pull/1176#issuecomment-794658535) at 2021-03-09 04:33 PM PST -akibrhast,2021-03-10T00:34:28Z,- akibrhast commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794659195) at 2021-03-09 04:34 PM PST -akibrhast,2021-03-10T00:42:53Z,- akibrhast opened issue: [1184](https://github.com/hackforla/website/issues/1184) at 2021-03-09 04:42 PM PST -akibrhast,2021-03-10T00:42:53Z,- akibrhast assigned to issue: [1184](https://github.com/hackforla/website/issues/1184) at 2021-03-09 04:42 PM PST -akibrhast,2021-03-10T00:53:10Z,- akibrhast submitted pull request review: [1176](https://github.com/hackforla/website/pull/1176#pullrequestreview-608240425) at 2021-03-09 04:53 PM PST -akibrhast,2021-03-10T01:07:45Z,- akibrhast opened issue: [1185](https://github.com/hackforla/website/issues/1185) at 2021-03-09 05:07 PM PST -akibrhast,2021-03-10T01:07:48Z,- akibrhast assigned to issue: [1185](https://github.com/hackforla/website/issues/1185) at 2021-03-09 05:07 PM PST -akibrhast,2021-03-10T01:11:40Z,- akibrhast closed issue by PR 1176: [1167](https://github.com/hackforla/website/issues/1167#event-4432555853) at 2021-03-09 05:11 PM PST -akibrhast,2021-03-10T01:16:44Z,- akibrhast commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794695716) at 2021-03-09 05:16 PM PST -akibrhast,2021-03-10T01:23:39Z,- akibrhast opened pull request: [1186](https://github.com/hackforla/website/pull/1186) at 2021-03-09 05:23 PM PST -akibrhast,2021-03-10T01:24:15Z,- akibrhast commented on pull request: [1186](https://github.com/hackforla/website/pull/1186#issuecomment-794702386) at 2021-03-09 05:24 PM PST -akibrhast,2021-03-10T01:56:21Z,- akibrhast closed issue as completed: [935](https://github.com/hackforla/website/issues/935#event-4432744410) at 2021-03-09 05:56 PM PST -akibrhast,2021-03-10T03:09:25Z,- akibrhast opened issue: [1189](https://github.com/hackforla/website/issues/1189) at 2021-03-09 07:09 PM PST -akibrhast,2021-03-10T03:23:14Z,- akibrhast closed issue by PR 1158: [1154](https://github.com/hackforla/website/issues/1154#event-4433085861) at 2021-03-09 07:23 PM PST -akibrhast,2021-03-10T03:38:40Z,- akibrhast closed issue by PR 1188: [1089](https://github.com/hackforla/website/issues/1089#event-4433144800) at 2021-03-09 07:38 PM PST -akibrhast,2021-03-10T03:53:27Z,- akibrhast opened issue: [1190](https://github.com/hackforla/website/issues/1190) at 2021-03-09 07:53 PM PST -akibrhast,2021-03-10T03:56:27Z,- akibrhast commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-794831721) at 2021-03-09 07:56 PM PST -akibrhast,2021-03-10T03:57:57Z,- akibrhast submitted pull request review: [1191](https://github.com/hackforla/website/pull/1191#pullrequestreview-608311007) at 2021-03-09 07:57 PM PST -akibrhast,2021-03-10T03:58:05Z,- akibrhast closed issue by PR 1191: [1190](https://github.com/hackforla/website/issues/1190#event-4433215796) at 2021-03-09 07:58 PM PST -akibrhast,2021-03-10T05:21:03Z,- akibrhast pull request merged: [1186](https://github.com/hackforla/website/pull/1186#event-4433532994) at 2021-03-09 09:21 PM PST -akibrhast,2021-03-10T06:16:45Z,- akibrhast submitted pull request review: [1194](https://github.com/hackforla/website/pull/1194#pullrequestreview-608361907) at 2021-03-09 10:16 PM PST -akibrhast,2021-03-10T06:16:51Z,- akibrhast closed issue by PR 1194: [1131](https://github.com/hackforla/website/issues/1131#event-4433769836) at 2021-03-09 10:16 PM PST -akibrhast,2021-03-10T10:19:43Z,- akibrhast assigned to issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-794352694) at 2021-03-10 02:19 AM PST -akibrhast,2021-03-11T16:23:53Z,- akibrhast submitted pull request review: [1198](https://github.com/hackforla/website/pull/1198#pullrequestreview-609954662) at 2021-03-11 08:23 AM PST -akibrhast,2021-03-12T02:23:46Z,- akibrhast submitted pull request review: [1198](https://github.com/hackforla/website/pull/1198#pullrequestreview-610400877) at 2021-03-11 06:23 PM PST -akibrhast,2021-03-12T02:24:02Z,- akibrhast closed issue by PR 1198: [1189](https://github.com/hackforla/website/issues/1189#event-4448402944) at 2021-03-11 06:24 PM PST -akibrhast,2021-03-12T20:35:16Z,- akibrhast opened pull request: [1199](https://github.com/hackforla/website/pull/1199) at 2021-03-12 12:35 PM PST -akibrhast,2021-03-12T22:02:06Z,- akibrhast opened pull request: [1200](https://github.com/hackforla/website/pull/1200) at 2021-03-12 02:02 PM PST -akibrhast,2021-03-12T22:23:44Z,- akibrhast commented on issue: [1166](https://github.com/hackforla/website/issues/1166#issuecomment-797790519) at 2021-03-12 02:23 PM PST -akibrhast,2021-03-13T00:56:00Z,- akibrhast pull request merged: [1200](https://github.com/hackforla/website/pull/1200#event-4453238273) at 2021-03-12 05:56 PM PDT -akibrhast,2021-03-14T17:47:53Z,- akibrhast pull request merged: [1199](https://github.com/hackforla/website/pull/1199#event-4455522606) at 2021-03-14 10:47 AM PDT -akibrhast,2021-03-15T02:52:25Z,- akibrhast assigned to issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791073123) at 2021-03-14 07:52 PM PDT -akibrhast,2021-03-15T03:15:51Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-799060766) at 2021-03-14 08:15 PM PDT -akibrhast,2021-03-15T16:20:43Z,- akibrhast submitted pull request review: [1206](https://github.com/hackforla/website/pull/1206#pullrequestreview-612389863) at 2021-03-15 09:20 AM PDT -akibrhast,2021-03-15T16:21:14Z,- akibrhast closed issue by PR 1206: [1146](https://github.com/hackforla/website/issues/1146#event-4459758195) at 2021-03-15 09:21 AM PDT -akibrhast,2021-03-15T16:41:19Z,- akibrhast submitted pull request review: [1204](https://github.com/hackforla/website/pull/1204#pullrequestreview-612412389) at 2021-03-15 09:41 AM PDT -akibrhast,2021-03-15T16:57:40Z,- akibrhast assigned to issue: [1201](https://github.com/hackforla/website/issues/1201) at 2021-03-15 09:57 AM PDT -akibrhast,2021-03-15T20:39:11Z,- akibrhast assigned to issue: [1207](https://github.com/hackforla/website/issues/1207) at 2021-03-15 01:39 PM PDT -akibrhast,2021-03-15T21:21:38Z,- akibrhast submitted pull request review: [1208](https://github.com/hackforla/website/pull/1208#pullrequestreview-612654150) at 2021-03-15 02:21 PM PDT -akibrhast,2021-03-15T21:21:53Z,- akibrhast closed issue by PR 1208: [1168](https://github.com/hackforla/website/issues/1168#event-4461137589) at 2021-03-15 02:21 PM PDT -akibrhast,2021-03-15T22:15:38Z,- akibrhast opened pull request: [1209](https://github.com/hackforla/website/pull/1209) at 2021-03-15 03:15 PM PDT -akibrhast,2021-03-15T22:20:28Z,- akibrhast pull request merged: [1209](https://github.com/hackforla/website/pull/1209#event-4461337777) at 2021-03-15 03:20 PM PDT -akibrhast,2021-03-16T15:52:49Z,- akibrhast commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-800383152) at 2021-03-16 08:52 AM PDT -akibrhast,2021-03-16T16:03:49Z,- akibrhast commented on pull request: [1204](https://github.com/hackforla/website/pull/1204#issuecomment-800392406) at 2021-03-16 09:03 AM PDT -akibrhast,2021-03-16T16:36:53Z,- akibrhast commented on issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-800421121) at 2021-03-16 09:36 AM PDT -akibrhast,2021-03-16T20:19:02Z,- akibrhast commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-800574687) at 2021-03-16 01:19 PM PDT -akibrhast,2021-03-16T20:19:29Z,- akibrhast assigned to issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-800574687) at 2021-03-16 01:19 PM PDT -akibrhast,2021-03-16T21:28:41Z,- akibrhast opened pull request: [1211](https://github.com/hackforla/website/pull/1211) at 2021-03-16 02:28 PM PDT -akibrhast,2021-03-17T00:28:32Z,- akibrhast commented on pull request: [1211](https://github.com/hackforla/website/pull/1211#issuecomment-800703587) at 2021-03-16 05:28 PM PDT -akibrhast,2021-03-17T00:45:39Z,- akibrhast submitted pull request review: [1204](https://github.com/hackforla/website/pull/1204#pullrequestreview-613835113) at 2021-03-16 05:45 PM PDT -akibrhast,2021-03-17T02:04:04Z,- akibrhast opened issue: [1212](https://github.com/hackforla/website/issues/1212) at 2021-03-16 07:04 PM PDT -akibrhast,2021-03-17T02:04:06Z,- akibrhast assigned to issue: [1212](https://github.com/hackforla/website/issues/1212) at 2021-03-16 07:04 PM PDT -akibrhast,2021-03-17T04:43:19Z,- akibrhast opened pull request: [1217](https://github.com/hackforla/website/pull/1217) at 2021-03-16 09:43 PM PDT -akibrhast,2021-03-17T18:07:50Z,- akibrhast assigned to issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-801298520) at 2021-03-17 11:07 AM PDT -akibrhast,2021-03-17T18:26:52Z,- akibrhast commented on pull request: [1217](https://github.com/hackforla/website/pull/1217#issuecomment-801312751) at 2021-03-17 11:26 AM PDT -akibrhast,2021-03-17T20:18:50Z,- akibrhast opened issue: [1220](https://github.com/hackforla/website/issues/1220) at 2021-03-17 01:18 PM PDT -akibrhast,2021-03-17T20:19:37Z,- akibrhast closed issue as completed: [1220](https://github.com/hackforla/website/issues/1220#event-4472392941) at 2021-03-17 01:19 PM PDT -akibrhast,2021-03-17T20:39:30Z,- akibrhast opened issue: [1221](https://github.com/hackforla/website/issues/1221) at 2021-03-17 01:39 PM PDT -akibrhast,2021-03-17T20:51:00Z,- akibrhast opened issue: [1222](https://github.com/hackforla/website/issues/1222) at 2021-03-17 01:51 PM PDT -akibrhast,2021-03-17T20:52:07Z,- akibrhast closed issue as completed: [1222](https://github.com/hackforla/website/issues/1222#event-4472527076) at 2021-03-17 01:52 PM PDT -akibrhast,2021-03-17T20:52:14Z,- akibrhast closed issue as completed: [1221](https://github.com/hackforla/website/issues/1221#event-4472527568) at 2021-03-17 01:52 PM PDT -akibrhast,2021-03-17T20:58:41Z,- akibrhast closed issue as completed: [1224](https://github.com/hackforla/website/issues/1224#event-4472554188) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:41Z,- akibrhast closed issue as completed: [1225](https://github.com/hackforla/website/issues/1225#event-4472554211) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1226](https://github.com/hackforla/website/issues/1226#event-4472554227) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1227](https://github.com/hackforla/website/issues/1227#event-4472554247) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1228](https://github.com/hackforla/website/issues/1228#event-4472554263) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1229](https://github.com/hackforla/website/issues/1229#event-4472554275) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1230](https://github.com/hackforla/website/issues/1230#event-4472554284) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:43Z,- akibrhast closed issue as completed: [1231](https://github.com/hackforla/website/issues/1231#event-4472554300) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:43Z,- akibrhast closed issue as completed: [1232](https://github.com/hackforla/website/issues/1232#event-4472554316) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:52Z,- akibrhast closed issue as completed: [1233](https://github.com/hackforla/website/issues/1233#event-4472554922) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1236](https://github.com/hackforla/website/issues/1236#event-4472573797) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1237](https://github.com/hackforla/website/issues/1237#event-4472573811) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1238](https://github.com/hackforla/website/issues/1238#event-4472573836) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1239](https://github.com/hackforla/website/issues/1239#event-4472573855) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1240](https://github.com/hackforla/website/issues/1240#event-4472573891) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:26Z,- akibrhast closed issue as completed: [1242](https://github.com/hackforla/website/issues/1242#event-4472573914) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:26Z,- akibrhast closed issue as completed: [1243](https://github.com/hackforla/website/issues/1243#event-4472573947) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1244](https://github.com/hackforla/website/issues/1244#event-4472573962) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1245](https://github.com/hackforla/website/issues/1245#event-4472573976) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1246](https://github.com/hackforla/website/issues/1246#event-4472573994) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1247](https://github.com/hackforla/website/issues/1247#event-4472574005) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:08:40Z,- akibrhast opened issue: [1248](https://github.com/hackforla/website/issues/1248) at 2021-03-17 02:08 PM PDT -akibrhast,2021-03-18T16:37:04Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802094613) at 2021-03-18 09:37 AM PDT -akibrhast,2021-03-18T16:38:15Z,- akibrhast submitted pull request review: [1250](https://github.com/hackforla/website/pull/1250#pullrequestreview-615627109) at 2021-03-18 09:38 AM PDT -akibrhast,2021-03-18T16:43:48Z,- akibrhast pull request merged: [1217](https://github.com/hackforla/website/pull/1217#event-4477348166) at 2021-03-18 09:43 AM PDT -akibrhast,2021-03-18T16:44:05Z,- akibrhast commented on pull request: [1137](https://github.com/hackforla/website/pull/1137#issuecomment-802099914) at 2021-03-18 09:44 AM PDT -akibrhast,2021-03-18T17:19:07Z,- akibrhast pull request merged: [1211](https://github.com/hackforla/website/pull/1211#event-4477581364) at 2021-03-18 10:19 AM PDT -akibrhast,2021-03-18T18:10:02Z,- akibrhast submitted pull request review: [1250](https://github.com/hackforla/website/pull/1250#pullrequestreview-615721301) at 2021-03-18 11:10 AM PDT -akibrhast,2021-03-18T18:11:02Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802175057) at 2021-03-18 11:11 AM PDT -akibrhast,2021-03-18T18:11:13Z,- akibrhast closed issue by PR 1250: [678](https://github.com/hackforla/website/issues/678#event-4477838951) at 2021-03-18 11:11 AM PDT -akibrhast,2021-03-18T19:21:22Z,- akibrhast opened pull request: [1260](https://github.com/hackforla/website/pull/1260) at 2021-03-18 12:21 PM PDT -akibrhast,2021-03-19T00:02:40Z,- akibrhast commented on pull request: [1260](https://github.com/hackforla/website/pull/1260#issuecomment-802400635) at 2021-03-18 05:02 PM PDT -akibrhast,2021-03-19T02:48:23Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802500026) at 2021-03-18 07:48 PM PDT -akibrhast,2021-03-19T03:08:11Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802510342) at 2021-03-18 08:08 PM PDT -akibrhast,2021-03-19T03:42:41Z,- akibrhast commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-802526733) at 2021-03-18 08:42 PM PDT -akibrhast,2021-03-19T18:44:04Z,- akibrhast commented on pull request: [1260](https://github.com/hackforla/website/pull/1260#issuecomment-803037847) at 2021-03-19 11:44 AM PDT -akibrhast,2021-03-19T19:34:10Z,- akibrhast pull request merged: [1260](https://github.com/hackforla/website/pull/1260#event-4483960309) at 2021-03-19 12:34 PM PDT -akibrhast,2021-03-19T19:34:39Z,- akibrhast commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-803066395) at 2021-03-19 12:34 PM PDT -akibrhast,2021-03-19T19:56:35Z,- akibrhast opened issue: [1266](https://github.com/hackforla/website/issues/1266) at 2021-03-19 12:56 PM PDT -akibrhast,2021-03-19T19:56:35Z,- akibrhast assigned to issue: [1266](https://github.com/hackforla/website/issues/1266) at 2021-03-19 12:56 PM PDT -akibrhast,2021-03-19T20:07:12Z,- akibrhast opened pull request: [1267](https://github.com/hackforla/website/pull/1267) at 2021-03-19 01:07 PM PDT -akibrhast,2021-03-19T20:23:59Z,- akibrhast opened issue: [1268](https://github.com/hackforla/website/issues/1268) at 2021-03-19 01:23 PM PDT -akibrhast,2021-03-19T20:53:12Z,- akibrhast opened pull request: [1269](https://github.com/hackforla/website/pull/1269) at 2021-03-19 01:53 PM PDT -akibrhast,2021-03-19T21:41:17Z,- akibrhast opened pull request: [1270](https://github.com/hackforla/website/pull/1270) at 2021-03-19 02:41 PM PDT -akibrhast,2021-03-19T21:48:48Z,- akibrhast commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803153141) at 2021-03-19 02:48 PM PDT -akibrhast,2021-03-19T23:08:55Z,- akibrhast opened issue: [1273](https://github.com/hackforla/website/issues/1273) at 2021-03-19 04:08 PM PDT -akibrhast,2021-03-19T23:38:18Z,- akibrhast pull request merged: [1270](https://github.com/hackforla/website/pull/1270#event-4484729981) at 2021-03-19 04:38 PM PDT -akibrhast,2021-03-19T23:39:44Z,- akibrhast opened issue: [1274](https://github.com/hackforla/website/issues/1274) at 2021-03-19 04:39 PM PDT -akibrhast,2021-03-19T23:42:51Z,- akibrhast assigned to issue: [1268](https://github.com/hackforla/website/issues/1268#issuecomment-803144062) at 2021-03-19 04:42 PM PDT -akibrhast,2021-03-19T23:45:56Z,- akibrhast commented on pull request: [1269](https://github.com/hackforla/website/pull/1269#issuecomment-803194483) at 2021-03-19 04:45 PM PDT -akibrhast,2021-03-20T03:22:18Z,- akibrhast submitted pull request review: [1275](https://github.com/hackforla/website/pull/1275#pullrequestreview-616878735) at 2021-03-19 08:22 PM PDT -akibrhast,2021-03-20T17:46:09Z,- akibrhast opened issue: [1276](https://github.com/hackforla/website/issues/1276) at 2021-03-20 10:46 AM PDT -akibrhast,2021-03-20T20:34:27Z,- akibrhast commented on pull request: [1269](https://github.com/hackforla/website/pull/1269#issuecomment-803459467) at 2021-03-20 01:34 PM PDT -akibrhast,2021-03-21T04:49:51Z,- akibrhast closed issue as completed: [1248](https://github.com/hackforla/website/issues/1248#event-4486354659) at 2021-03-20 09:49 PM PDT -akibrhast,2021-03-21T04:55:00Z,- akibrhast commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-803512243) at 2021-03-20 09:55 PM PDT -akibrhast,2021-03-21T04:57:38Z,- akibrhast commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-803512443) at 2021-03-20 09:57 PM PDT -akibrhast,2021-03-21T04:59:20Z,- akibrhast commented on issue: [1266](https://github.com/hackforla/website/issues/1266#issuecomment-803512520) at 2021-03-20 09:59 PM PDT -akibrhast,2021-03-21T05:01:16Z,- akibrhast commented on issue: [1268](https://github.com/hackforla/website/issues/1268#issuecomment-803512671) at 2021-03-20 10:01 PM PDT -akibrhast,2021-03-21T15:40:28Z,- akibrhast commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-803606260) at 2021-03-21 08:40 AM PDT -akibrhast,2021-03-21T15:42:34Z,- akibrhast commented on issue: [1274](https://github.com/hackforla/website/issues/1274#issuecomment-803606661) at 2021-03-21 08:42 AM PDT -akibrhast,2021-03-21T16:17:52Z,- akibrhast pull request merged: [1267](https://github.com/hackforla/website/pull/1267#event-4486914918) at 2021-03-21 09:17 AM PDT -akibrhast,2021-03-21T16:21:16Z,- akibrhast opened issue: [1278](https://github.com/hackforla/website/issues/1278) at 2021-03-21 09:21 AM PDT -akibrhast,2021-03-21T16:21:16Z,- akibrhast assigned to issue: [1278](https://github.com/hackforla/website/issues/1278) at 2021-03-21 09:21 AM PDT -akibrhast,2021-03-21T16:22:36Z,- akibrhast commented on issue: [1276](https://github.com/hackforla/website/issues/1276#issuecomment-803614798) at 2021-03-21 09:22 AM PDT -akibrhast,2021-03-21T16:26:15Z,- akibrhast opened pull request: [1279](https://github.com/hackforla/website/pull/1279) at 2021-03-21 09:26 AM PDT -akibrhast,2021-03-21T16:41:06Z,- akibrhast opened pull request: [1280](https://github.com/hackforla/website/pull/1280) at 2021-03-21 09:41 AM PDT -akibrhast,2021-03-21T16:42:27Z,- akibrhast pull request merged: [1280](https://github.com/hackforla/website/pull/1280#event-4486940713) at 2021-03-21 09:42 AM PDT -akibrhast,2021-03-21T16:48:52Z,- akibrhast opened pull request: [1281](https://github.com/hackforla/website/pull/1281) at 2021-03-21 09:48 AM PDT -akibrhast,2021-03-21T16:55:13Z,- akibrhast opened pull request: [1282](https://github.com/hackforla/website/pull/1282) at 2021-03-21 09:55 AM PDT -akibrhast,2021-03-21T16:56:38Z,- akibrhast pull request merged: [1281](https://github.com/hackforla/website/pull/1281#event-4486955696) at 2021-03-21 09:56 AM PDT -akibrhast,2021-03-21T17:05:52Z,- akibrhast pull request merged: [1282](https://github.com/hackforla/website/pull/1282#event-4486965208) at 2021-03-21 10:05 AM PDT -akibrhast,2021-03-21T17:15:24Z,- akibrhast commented on issue: [1041](https://github.com/hackforla/website/issues/1041#issuecomment-803625884) at 2021-03-21 10:15 AM PDT -akibrhast,2021-03-21T17:15:24Z,- akibrhast closed issue as completed: [1041](https://github.com/hackforla/website/issues/1041#event-4486975016) at 2021-03-21 10:15 AM PDT -akibrhast,2021-03-21T17:20:39Z,- akibrhast pull request merged: [1279](https://github.com/hackforla/website/pull/1279#event-4486980295) at 2021-03-21 10:20 AM PDT -akibrhast,2021-03-21T17:27:52Z,- akibrhast commented on issue: [1274](https://github.com/hackforla/website/issues/1274#issuecomment-803628067) at 2021-03-21 10:27 AM PDT -akibrhast,2021-03-21T17:28:09Z,- akibrhast closed issue as completed: [1274](https://github.com/hackforla/website/issues/1274#event-4486987381) at 2021-03-21 10:28 AM PDT -akibrhast,2021-03-21T18:36:21Z,- akibrhast opened issue: [1284](https://github.com/hackforla/website/issues/1284) at 2021-03-21 11:36 AM PDT -akibrhast,2021-03-21T19:14:17Z,- akibrhast assigned to issue: [1286](https://github.com/hackforla/website/issues/1286) at 2021-03-21 12:14 PM PDT -akibrhast,2021-03-21T19:38:50Z,- akibrhast pull request merged: [1269](https://github.com/hackforla/website/pull/1269#event-4487117265) at 2021-03-21 12:38 PM PDT -akibrhast,2021-03-21T20:17:57Z,- akibrhast submitted pull request review: [1263](https://github.com/hackforla/website/pull/1263#pullrequestreview-617057347) at 2021-03-21 01:17 PM PDT -akibrhast,2021-03-21T20:18:32Z,- akibrhast submitted pull request review: [1213](https://github.com/hackforla/website/pull/1213#pullrequestreview-617057394) at 2021-03-21 01:18 PM PDT -akibrhast,2021-03-21T20:19:13Z,- akibrhast submitted pull request review: [1210](https://github.com/hackforla/website/pull/1210#pullrequestreview-617057452) at 2021-03-21 01:19 PM PDT -akibrhast,2021-03-21T20:24:31Z,- akibrhast commented on issue: [1284](https://github.com/hackforla/website/issues/1284#issuecomment-803653980) at 2021-03-21 01:24 PM PDT -akibrhast,2021-03-22T17:13:34Z,- akibrhast opened issue: [1292](https://github.com/hackforla/website/issues/1292) at 2021-03-22 10:13 AM PDT -akibrhast,2021-03-22T17:13:40Z,- akibrhast opened issue: [1293](https://github.com/hackforla/website/issues/1293) at 2021-03-22 10:13 AM PDT -akibrhast,2021-03-22T17:14:03Z,- akibrhast closed issue as completed: [1292](https://github.com/hackforla/website/issues/1292#event-4491495488) at 2021-03-22 10:14 AM PDT -akibrhast,2021-03-22T17:14:03Z,- akibrhast closed issue as completed: [1293](https://github.com/hackforla/website/issues/1293#event-4491495513) at 2021-03-22 10:14 AM PDT -akibrhast,2021-03-22T17:16:39Z,- akibrhast opened issue: [1294](https://github.com/hackforla/website/issues/1294) at 2021-03-22 10:16 AM PDT -akibrhast,2021-03-22T17:16:56Z,- akibrhast closed issue as completed: [1294](https://github.com/hackforla/website/issues/1294#event-4491514757) at 2021-03-22 10:16 AM PDT -akibrhast,2021-03-22T17:18:04Z,- akibrhast opened issue: [1295](https://github.com/hackforla/website/issues/1295) at 2021-03-22 10:18 AM PDT -akibrhast,2021-03-22T17:18:12Z,- akibrhast closed issue as completed: [1295](https://github.com/hackforla/website/issues/1295#event-4491521486) at 2021-03-22 10:18 AM PDT -akibrhast,2021-03-22T17:33:44Z,- akibrhast opened issue: [1296](https://github.com/hackforla/website/issues/1296) at 2021-03-22 10:33 AM PDT -akibrhast,2021-03-22T17:34:41Z,- akibrhast closed issue as completed: [1296](https://github.com/hackforla/website/issues/1296#event-4491608042) at 2021-03-22 10:34 AM PDT -akibrhast,2021-03-22T17:47:02Z,- akibrhast opened issue: [1297](https://github.com/hackforla/website/issues/1297) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T17:47:11Z,- akibrhast opened issue: [1298](https://github.com/hackforla/website/issues/1298) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T17:47:33Z,- akibrhast closed issue as completed: [1297](https://github.com/hackforla/website/issues/1297#event-4491672933) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T17:47:46Z,- akibrhast closed issue as completed: [1298](https://github.com/hackforla/website/issues/1298#event-4491674093) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T18:30:38Z,- akibrhast submitted pull request review: [1291](https://github.com/hackforla/website/pull/1291#pullrequestreview-617857409) at 2021-03-22 11:30 AM PDT -akibrhast,2021-03-22T18:30:44Z,- akibrhast closed issue by PR 1291: [1021](https://github.com/hackforla/website/issues/1021#event-4491875773) at 2021-03-22 11:30 AM PDT -akibrhast,2021-03-22T18:33:21Z,- akibrhast submitted pull request review: [1263](https://github.com/hackforla/website/pull/1263#pullrequestreview-617859831) at 2021-03-22 11:33 AM PDT -akibrhast,2021-03-22T18:54:16Z,- akibrhast opened issue: [1299](https://github.com/hackforla/website/issues/1299) at 2021-03-22 11:54 AM PDT -akibrhast,2021-03-22T18:54:32Z,- akibrhast closed issue as completed: [1299](https://github.com/hackforla/website/issues/1299#event-4491982687) at 2021-03-22 11:54 AM PDT -akibrhast,2021-03-22T18:55:25Z,- akibrhast opened issue: [1300](https://github.com/hackforla/website/issues/1300) at 2021-03-22 11:55 AM PDT -akibrhast,2021-03-22T18:57:20Z,- akibrhast closed issue as completed: [1300](https://github.com/hackforla/website/issues/1300#event-4491994804) at 2021-03-22 11:57 AM PDT -akibrhast,2021-03-22T18:57:26Z,- akibrhast opened issue: [1301](https://github.com/hackforla/website/issues/1301) at 2021-03-22 11:57 AM PDT -akibrhast,2021-03-22T18:58:07Z,- akibrhast closed issue as completed: [1301](https://github.com/hackforla/website/issues/1301#event-4491998720) at 2021-03-22 11:58 AM PDT -akibrhast,2021-03-22T18:59:44Z,- akibrhast opened issue: [1302](https://github.com/hackforla/website/issues/1302) at 2021-03-22 11:59 AM PDT -akibrhast,2021-03-22T19:00:48Z,- akibrhast closed issue as completed: [1302](https://github.com/hackforla/website/issues/1302#event-4492011331) at 2021-03-22 12:00 PM PDT -akibrhast,2021-03-22T19:01:20Z,- akibrhast opened issue: [1303](https://github.com/hackforla/website/issues/1303) at 2021-03-22 12:01 PM PDT -akibrhast,2021-03-22T19:02:24Z,- akibrhast closed issue as completed: [1303](https://github.com/hackforla/website/issues/1303#event-4492019241) at 2021-03-22 12:02 PM PDT -akibrhast,2021-03-22T19:04:34Z,- akibrhast opened issue: [1304](https://github.com/hackforla/website/issues/1304) at 2021-03-22 12:04 PM PDT -akibrhast,2021-03-22T19:21:28Z,- akibrhast closed issue as completed: [1304](https://github.com/hackforla/website/issues/1304#event-4492105993) at 2021-03-22 12:21 PM PDT -akibrhast,2021-03-22T20:54:13Z,- akibrhast submitted pull request review: [1305](https://github.com/hackforla/website/pull/1305#pullrequestreview-617972412) at 2021-03-22 01:54 PM PDT -akibrhast,2021-03-22T20:54:27Z,- akibrhast closed issue by PR 1305: [1261](https://github.com/hackforla/website/issues/1261#event-4492495778) at 2021-03-22 01:54 PM PDT -akibrhast,2021-03-22T20:56:28Z,- akibrhast submitted pull request review: [1213](https://github.com/hackforla/website/pull/1213#pullrequestreview-617974106) at 2021-03-22 01:56 PM PDT -akibrhast,2021-03-22T20:56:35Z,- akibrhast closed issue by PR 1213: [1110](https://github.com/hackforla/website/issues/1110#event-4492504046) at 2021-03-22 01:56 PM PDT -akibrhast,2021-03-23T04:43:37Z,- akibrhast commented on pull request: [1308](https://github.com/hackforla/website/pull/1308#issuecomment-804612674) at 2021-03-22 09:43 PM PDT -akibrhast,2021-03-23T16:43:37Z,- akibrhast opened issue: [1311](https://github.com/hackforla/website/issues/1311) at 2021-03-23 09:43 AM PDT -akibrhast,2021-03-23T16:43:42Z,- akibrhast assigned to issue: [1311](https://github.com/hackforla/website/issues/1311) at 2021-03-23 09:43 AM PDT -akibrhast,2021-03-23T17:06:54Z,- akibrhast opened pull request: [1312](https://github.com/hackforla/website/pull/1312) at 2021-03-23 10:06 AM PDT -akibrhast,2021-03-23T17:11:35Z,- akibrhast submitted pull request review: [1306](https://github.com/hackforla/website/pull/1306#pullrequestreview-618859851) at 2021-03-23 10:11 AM PDT -akibrhast,2021-03-23T17:11:43Z,- akibrhast closed issue by PR 1306: [1045](https://github.com/hackforla/website/issues/1045#event-4497498682) at 2021-03-23 10:11 AM PDT -akibrhast,2021-03-23T17:56:17Z,- akibrhast pull request merged: [1312](https://github.com/hackforla/website/pull/1312#event-4497720983) at 2021-03-23 10:56 AM PDT -akibrhast,2021-03-23T18:41:31Z,- akibrhast unassigned from issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-803512443) at 2021-03-23 11:41 AM PDT -akibrhast,2021-03-23T21:40:16Z,- akibrhast commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-805283836) at 2021-03-23 02:40 PM PDT -akibrhast,2021-03-24T03:45:43Z,- akibrhast opened issue: [1321](https://github.com/hackforla/website/issues/1321) at 2021-03-23 08:45 PM PDT -akibrhast,2021-03-26T00:50:18Z,- akibrhast opened pull request: [1328](https://github.com/hackforla/website/pull/1328) at 2021-03-25 05:50 PM PDT -akibrhast,2021-03-26T04:20:44Z,- akibrhast commented on issue: [1321](https://github.com/hackforla/website/issues/1321#issuecomment-807924871) at 2021-03-25 09:20 PM PDT -akibrhast,2021-03-26T04:20:44Z,- akibrhast closed issue as completed: [1321](https://github.com/hackforla/website/issues/1321#event-4511716922) at 2021-03-25 09:20 PM PDT -akibrhast,2021-03-27T03:38:09Z,- akibrhast pull request merged: [1328](https://github.com/hackforla/website/pull/1328#event-4516622542) at 2021-03-26 08:38 PM PDT -akibrhast,2021-03-27T06:24:43Z,- akibrhast closed issue as completed: [1276](https://github.com/hackforla/website/issues/1276#event-4516732107) at 2021-03-26 11:24 PM PDT -akibrhast,2021-03-28T17:03:13Z,- akibrhast commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-808925194) at 2021-03-28 10:03 AM PDT -akibrhast,2021-03-28T17:26:12Z,- akibrhast opened issue: [1338](https://github.com/hackforla/website/issues/1338) at 2021-03-28 10:26 AM PDT -akibrhast,2021-03-29T02:43:46Z,- akibrhast closed issue as completed: [981](https://github.com/hackforla/website/issues/981#event-4518985119) at 2021-03-28 07:43 PM PDT -akibrhast,2021-03-29T19:01:03Z,- akibrhast submitted pull request review: [1334](https://github.com/hackforla/website/pull/1334#pullrequestreview-623552936) at 2021-03-29 12:01 PM PDT -akibrhast,2021-03-29T19:01:10Z,- akibrhast closed issue by PR 1334: [1077](https://github.com/hackforla/website/issues/1077#event-4523323235) at 2021-03-29 12:01 PM PDT -akibrhast,2021-03-31T02:31:28Z,- akibrhast closed issue by PR 1340: [1264](https://github.com/hackforla/website/issues/1264#event-4531536114) at 2021-03-30 07:31 PM PDT -akibrhast,2021-03-31T04:27:15Z,- akibrhast closed issue by PR 1339: [1102](https://github.com/hackforla/website/issues/1102#event-4531899265) at 2021-03-30 09:27 PM PDT -akibrhast,2021-03-31T04:34:16Z,- akibrhast submitted pull request review: [1339](https://github.com/hackforla/website/pull/1339#pullrequestreview-624883976) at 2021-03-30 09:34 PM PDT -akibrhast,2021-03-31T04:58:12Z,- akibrhast closed issue as completed: [603](https://github.com/hackforla/website/issues/603#event-4531999763) at 2021-03-30 09:58 PM PDT -akibrhast,2021-03-31T05:33:43Z,- akibrhast assigned to issue: [1026](https://github.com/hackforla/website/issues/1026) at 2021-03-30 10:33 PM PDT -akibrhast,2021-03-31T05:34:05Z,- akibrhast unassigned from issue: [1026](https://github.com/hackforla/website/issues/1026) at 2021-03-30 10:34 PM PDT -akibrhast,2021-03-31T18:35:40Z,- akibrhast commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-811322210) at 2021-03-31 11:35 AM PDT -akibrhast,2021-03-31T19:35:38Z,- akibrhast commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-811383289) at 2021-03-31 12:35 PM PDT -akibrhast,2021-04-01T02:39:01Z,- akibrhast commented on pull request: [1210](https://github.com/hackforla/website/pull/1210#issuecomment-811595305) at 2021-03-31 07:39 PM PDT -akibrhast,2021-04-01T02:47:55Z,- akibrhast commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-811598094) at 2021-03-31 07:47 PM PDT -akibrhast,2021-04-01T02:48:01Z,- akibrhast closed issue as completed: [1337](https://github.com/hackforla/website/issues/1337#event-4538610084) at 2021-03-31 07:48 PM PDT -akibrhast,2021-04-03T05:00:03Z,- akibrhast opened issue: [1348](https://github.com/hackforla/website/issues/1348) at 2021-04-02 10:00 PM PDT -akibrhast,2021-04-03T05:00:03Z,- akibrhast assigned to issue: [1348](https://github.com/hackforla/website/issues/1348) at 2021-04-02 10:00 PM PDT -akibrhast,2021-04-03T05:11:12Z,- akibrhast opened pull request: [1349](https://github.com/hackforla/website/pull/1349) at 2021-04-02 10:11 PM PDT -akibrhast,2021-04-04T17:30:50Z,- akibrhast assigned to issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-636994125) at 2021-04-04 10:30 AM PDT -akibrhast,2021-04-04T20:56:44Z,- akibrhast pull request merged: [1349](https://github.com/hackforla/website/pull/1349#event-4549503812) at 2021-04-04 01:56 PM PDT -akibrhast,2021-04-04T21:41:15Z,- akibrhast commented on pull request: [1350](https://github.com/hackforla/website/pull/1350#issuecomment-813103617) at 2021-04-04 02:41 PM PDT -akibrhast,2021-04-04T23:24:40Z,- akibrhast commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-813115539) at 2021-04-04 04:24 PM PDT -akibrhast,2021-04-05T00:01:21Z,- akibrhast submitted pull request review: [1354](https://github.com/hackforla/website/pull/1354#pullrequestreview-627581797) at 2021-04-04 05:01 PM PDT -akibrhast,2021-04-05T01:15:51Z,- akibrhast opened pull request: [1356](https://github.com/hackforla/website/pull/1356) at 2021-04-04 06:15 PM PDT -akibrhast,2021-04-05T16:48:59Z,- akibrhast commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-813498391) at 2021-04-05 09:48 AM PDT -akibrhast,2021-04-05T17:14:47Z,- akibrhast assigned to issue: [1253](https://github.com/hackforla/website/issues/1253) at 2021-04-05 10:14 AM PDT -akibrhast,2021-04-05T17:20:54Z,- akibrhast opened pull request: [1358](https://github.com/hackforla/website/pull/1358) at 2021-04-05 10:20 AM PDT -akibrhast,2021-04-05T17:21:33Z,- akibrhast assigned to issue: [1252](https://github.com/hackforla/website/issues/1252) at 2021-04-05 10:21 AM PDT -akibrhast,2021-04-05T17:33:42Z,- akibrhast opened pull request: [1359](https://github.com/hackforla/website/pull/1359) at 2021-04-05 10:33 AM PDT -akibrhast,2021-04-05T17:36:24Z,- akibrhast assigned to issue: [1251](https://github.com/hackforla/website/issues/1251) at 2021-04-05 10:36 AM PDT -akibrhast,2021-04-05T17:42:28Z,- akibrhast opened pull request: [1360](https://github.com/hackforla/website/pull/1360) at 2021-04-05 10:42 AM PDT -akibrhast,2021-04-05T17:49:28Z,- akibrhast assigned to issue: [1257](https://github.com/hackforla/website/issues/1257) at 2021-04-05 10:49 AM PDT -akibrhast,2021-04-05T17:50:44Z,- akibrhast assigned to issue: [1256](https://github.com/hackforla/website/issues/1256) at 2021-04-05 10:50 AM PDT -akibrhast,2021-04-05T17:51:14Z,- akibrhast commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-813534797) at 2021-04-05 10:51 AM PDT -akibrhast,2021-04-05T18:53:15Z,- akibrhast pull request merged: [1360](https://github.com/hackforla/website/pull/1360#event-4552922123) at 2021-04-05 11:53 AM PDT -akibrhast,2021-04-05T19:02:17Z,- akibrhast pull request merged: [1359](https://github.com/hackforla/website/pull/1359#event-4552956238) at 2021-04-05 12:02 PM PDT -akibrhast,2021-04-05T19:06:59Z,- akibrhast pull request merged: [1358](https://github.com/hackforla/website/pull/1358#event-4552973743) at 2021-04-05 12:06 PM PDT -akibrhast,2021-04-05T21:34:15Z,- akibrhast commented on issue: [1253](https://github.com/hackforla/website/issues/1253#issuecomment-813664050) at 2021-04-05 02:34 PM PDT -akibrhast,2021-04-06T15:09:54Z,- akibrhast commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814199013) at 2021-04-06 08:09 AM PDT -akibrhast,2021-04-06T15:21:21Z,- akibrhast commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-814207804) at 2021-04-06 08:21 AM PDT -akibrhast,2021-04-06T15:45:22Z,- akibrhast opened pull request: [1362](https://github.com/hackforla/website/pull/1362) at 2021-04-06 08:45 AM PDT -akibrhast,2021-04-06T16:13:53Z,- akibrhast opened pull request: [1363](https://github.com/hackforla/website/pull/1363) at 2021-04-06 09:13 AM PDT -akibrhast,2021-04-06T16:13:58Z,- akibrhast pull request closed w/o merging: [1363](https://github.com/hackforla/website/pull/1363#event-4557771130) at 2021-04-06 09:13 AM PDT -akibrhast,2021-04-06T16:51:29Z,- akibrhast commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-06 09:51 AM PDT -akibrhast,2021-04-07T04:37:46Z,- akibrhast closed issue as completed: [1201](https://github.com/hackforla/website/issues/1201#event-4560134357) at 2021-04-06 09:37 PM PDT -akibrhast,2021-04-07T04:38:11Z,- akibrhast assigned to issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-06 09:38 PM PDT -akibrhast,2021-04-07T20:35:05Z,- akibrhast opened pull request: [1370](https://github.com/hackforla/website/pull/1370) at 2021-04-07 01:35 PM PDT -akibrhast,2021-04-07T20:50:41Z,- akibrhast opened pull request: [1371](https://github.com/hackforla/website/pull/1371) at 2021-04-07 01:50 PM PDT -akibrhast,2021-04-07T21:19:37Z,- akibrhast opened pull request: [1372](https://github.com/hackforla/website/pull/1372) at 2021-04-07 02:19 PM PDT -akibrhast,2021-04-07T23:04:47Z,- akibrhast pull request merged: [1372](https://github.com/hackforla/website/pull/1372#event-4565403896) at 2021-04-07 04:04 PM PDT -akibrhast,2021-04-07T23:05:10Z,- akibrhast pull request merged: [1371](https://github.com/hackforla/website/pull/1371#event-4565404899) at 2021-04-07 04:05 PM PDT -akibrhast,2021-04-07T23:07:33Z,- akibrhast pull request merged: [1370](https://github.com/hackforla/website/pull/1370#event-4565411356) at 2021-04-07 04:07 PM PDT -akibrhast,2021-04-08T02:31:05Z,- akibrhast submitted pull request review: [1373](https://github.com/hackforla/website/pull/1373#pullrequestreview-630928967) at 2021-04-07 07:31 PM PDT -akibrhast,2021-04-08T03:55:18Z,- akibrhast submitted pull request review: [1365](https://github.com/hackforla/website/pull/1365#pullrequestreview-630956274) at 2021-04-07 08:55 PM PDT -akibrhast,2021-04-08T03:55:28Z,- akibrhast closed issue by PR 1365: [1049](https://github.com/hackforla/website/issues/1049#event-4566181938) at 2021-04-07 08:55 PM PDT -akibrhast,2021-04-08T03:55:29Z,- akibrhast closed issue by PR 1365: [1048](https://github.com/hackforla/website/issues/1048#event-4566181939) at 2021-04-07 08:55 PM PDT -akibrhast,2021-04-08T04:02:28Z,- akibrhast submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-630958458) at 2021-04-07 09:02 PM PDT -akibrhast,2021-04-08T16:23:45Z,- akibrhast commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-815962543) at 2021-04-08 09:23 AM PDT -akibrhast,2021-04-08T16:29:34Z,- akibrhast submitted pull request review: [1364](https://github.com/hackforla/website/pull/1364#pullrequestreview-631605530) at 2021-04-08 09:29 AM PDT -akibrhast,2021-04-08T16:29:55Z,- akibrhast closed issue by PR 1364: [1202](https://github.com/hackforla/website/issues/1202#event-4569745491) at 2021-04-08 09:29 AM PDT -akibrhast,2021-04-08T20:16:45Z,- akibrhast commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816147487) at 2021-04-08 01:16 PM PDT -akibrhast,2021-04-08T20:28:39Z,- akibrhast opened issue: [1378](https://github.com/hackforla/website/issues/1378) at 2021-04-08 01:28 PM PDT -akibrhast,2021-04-08T21:30:38Z,- akibrhast submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-631856805) at 2021-04-08 02:30 PM PDT -akibrhast,2021-04-09T17:00:39Z,- akibrhast submitted pull request review: [1384](https://github.com/hackforla/website/pull/1384#pullrequestreview-632621546) at 2021-04-09 10:00 AM PDT -akibrhast,2021-04-09T17:00:47Z,- akibrhast closed issue by PR 1384: [1331](https://github.com/hackforla/website/issues/1331#event-4575511890) at 2021-04-09 10:00 AM PDT -akibrhast,2021-04-09T17:09:11Z,- akibrhast assigned to issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-04-09 10:09 AM PDT -akibrhast,2021-04-09T17:09:17Z,- akibrhast unassigned from issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-04-09 10:09 AM PDT -akibrhast,2021-04-09T21:09:15Z,- akibrhast submitted pull request review: [1385](https://github.com/hackforla/website/pull/1385#pullrequestreview-632787090) at 2021-04-09 02:09 PM PDT -akibrhast,2021-04-09T21:12:23Z,- akibrhast commented on pull request: [1385](https://github.com/hackforla/website/pull/1385#issuecomment-816974484) at 2021-04-09 02:12 PM PDT -akibrhast,2021-04-09T21:13:35Z,- akibrhast submitted pull request review: [1368](https://github.com/hackforla/website/pull/1368#pullrequestreview-632789174) at 2021-04-09 02:13 PM PDT -akibrhast,2021-04-09T21:28:42Z,- akibrhast submitted pull request review: [1385](https://github.com/hackforla/website/pull/1385#pullrequestreview-632796796) at 2021-04-09 02:28 PM PDT -akibrhast,2021-04-09T21:28:50Z,- akibrhast closed issue by PR 1385: [1333](https://github.com/hackforla/website/issues/1333#event-4576473318) at 2021-04-09 02:28 PM PDT -akibrhast,2021-04-10T04:53:22Z,- akibrhast closed issue by PR 1377: [1125](https://github.com/hackforla/website/issues/1125#event-4577091387) at 2021-04-09 09:53 PM PDT -akibrhast,2021-04-10T14:51:47Z,- akibrhast closed issue by PR 1288: [1044](https://github.com/hackforla/website/issues/1044#event-4577555112) at 2021-04-10 07:51 AM PDT -akibrhast,2021-04-10T15:09:04Z,- akibrhast opened pull request: [1387](https://github.com/hackforla/website/pull/1387) at 2021-04-10 08:09 AM PDT -akibrhast,2021-04-10T15:32:47Z,- akibrhast unassigned from issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-10 08:32 AM PDT -akibrhast,2021-04-10T15:35:01Z,- akibrhast unassigned from issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-815129199) at 2021-04-10 08:35 AM PDT -akibrhast,2021-04-10T15:38:41Z,- akibrhast commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-817155249) at 2021-04-10 08:38 AM PDT -akibrhast,2021-04-10T23:00:15Z,- akibrhast opened pull request: [1391](https://github.com/hackforla/website/pull/1391) at 2021-04-10 04:00 PM PDT -akibrhast,2021-04-10T23:04:08Z,- akibrhast pull request merged: [1391](https://github.com/hackforla/website/pull/1391#event-4577958317) at 2021-04-10 04:04 PM PDT -akibrhast,2021-04-11T00:46:54Z,- akibrhast closed issue as completed: [1388](https://github.com/hackforla/website/issues/1388#event-4578018600) at 2021-04-10 05:46 PM PDT -akibrhast,2021-04-11T17:17:23Z,- akibrhast commented on issue: [1257](https://github.com/hackforla/website/issues/1257#issuecomment-817341086) at 2021-04-11 10:17 AM PDT -akibrhast,2021-04-11T17:18:10Z,- akibrhast commented on issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-817341176) at 2021-04-11 10:18 AM PDT -akibrhast,2021-04-11T17:19:22Z,- akibrhast commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-817341345) at 2021-04-11 10:19 AM PDT -akibrhast,2021-04-11T19:10:49Z,- akibrhast commented on pull request: [1355](https://github.com/hackforla/website/pull/1355#issuecomment-817357314) at 2021-04-11 12:10 PM PDT -akibrhast,2021-04-11T19:19:42Z,- akibrhast assigned to issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-11 12:19 PM PDT -akibrhast,2021-04-11T19:29:38Z,- akibrhast commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-817359862) at 2021-04-11 12:29 PM PDT -akibrhast,2021-04-13T23:09:50Z,- akibrhast closed issue by PR 1387: [223](https://github.com/hackforla/website/issues/223#event-4590650999) at 2021-04-13 04:09 PM PDT -akibrhast,2021-04-13T23:09:50Z,- akibrhast pull request merged: [1387](https://github.com/hackforla/website/pull/1387#event-4590651004) at 2021-04-13 04:09 PM PDT -akibrhast,2021-04-14T00:21:44Z,- akibrhast unassigned from issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-13 05:21 PM PDT -akibrhast,2021-04-14T19:39:48Z,- akibrhast commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-819782699) at 2021-04-14 12:39 PM PDT -akibrhast,2021-04-15T00:50:03Z,- akibrhast submitted pull request review: [1401](https://github.com/hackforla/website/pull/1401#pullrequestreview-636187073) at 2021-04-14 05:50 PM PDT -akibrhast,2021-04-15T01:59:45Z,- akibrhast closed issue by PR 1401: [1284](https://github.com/hackforla/website/issues/1284#event-4596666065) at 2021-04-14 06:59 PM PDT -akibrhast,2021-04-15T01:59:55Z,- akibrhast submitted pull request review: [1401](https://github.com/hackforla/website/pull/1401#pullrequestreview-636211139) at 2021-04-14 06:59 PM PDT -akibrhast,2021-04-15T19:10:35Z,- akibrhast opened pull request: [1409](https://github.com/hackforla/website/pull/1409) at 2021-04-15 12:10 PM PDT -akibrhast,2021-04-16T02:08:28Z,- akibrhast commented on pull request: [1409](https://github.com/hackforla/website/pull/1409#issuecomment-820858045) at 2021-04-15 07:08 PM PDT -akibrhast,2021-04-18T00:48:54Z,- akibrhast commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-821909764) at 2021-04-17 05:48 PM PDT -akibrhast,2021-04-18T04:15:44Z,- akibrhast commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-821929351) at 2021-04-17 09:15 PM PDT -akibrhast,2021-04-18T04:19:02Z,- akibrhast commented on pull request: [1409](https://github.com/hackforla/website/pull/1409#issuecomment-821929656) at 2021-04-17 09:19 PM PDT -akibrhast,2021-04-18T04:39:19Z,- akibrhast pull request merged: [1409](https://github.com/hackforla/website/pull/1409#event-4608650172) at 2021-04-17 09:39 PM PDT -akibrhast,2021-04-18T07:19:19Z,- akibrhast opened pull request: [1412](https://github.com/hackforla/website/pull/1412) at 2021-04-18 12:19 AM PDT -akibrhast,2021-04-18T07:25:44Z,- akibrhast pull request merged: [1412](https://github.com/hackforla/website/pull/1412#event-4608754927) at 2021-04-18 12:25 AM PDT -akibrhast,2021-04-18T15:50:09Z,- akibrhast submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-638343563) at 2021-04-18 08:50 AM PDT -akibrhast,2021-04-18T15:53:49Z,- akibrhast commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-822013897) at 2021-04-18 08:53 AM PDT -akibrhast,2021-04-18T15:54:33Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014025) at 2021-04-18 08:54 AM PDT -akibrhast,2021-04-18T15:56:38Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014387) at 2021-04-18 08:56 AM PDT -akibrhast,2021-04-18T15:57:27Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014485) at 2021-04-18 08:57 AM PDT -akibrhast,2021-04-18T15:58:45Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014680) at 2021-04-18 08:58 AM PDT -akibrhast,2021-04-18T15:59:36Z,- akibrhast closed issue by PR 1406: [1332](https://github.com/hackforla/website/issues/1332#event-4609232938) at 2021-04-18 08:59 AM PDT -akibrhast,2021-04-18T16:25:09Z,- akibrhast submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-638346418) at 2021-04-18 09:25 AM PDT -akibrhast,2021-04-18T16:25:18Z,- akibrhast closed issue by PR 1405: [1392](https://github.com/hackforla/website/issues/1392#event-4609258646) at 2021-04-18 09:25 AM PDT -akibrhast,2021-04-18T16:26:43Z,- akibrhast pull request merged: [1362](https://github.com/hackforla/website/pull/1362#event-4609260012) at 2021-04-18 09:26 AM PDT -akibrhast,2021-04-18T19:34:58Z,- akibrhast closed issue by PR 1399: [1071](https://github.com/hackforla/website/issues/1071#event-4609447040) at 2021-04-18 12:34 PM PDT -akibrhast,2021-04-18T19:34:58Z,- akibrhast closed issue by PR 1399: [1319](https://github.com/hackforla/website/issues/1319#event-4609447036) at 2021-04-18 12:34 PM PDT -akibrhast,2021-04-18T21:35:55Z,- akibrhast opened pull request: [1420](https://github.com/hackforla/website/pull/1420) at 2021-04-18 02:35 PM PDT -akibrhast,2021-04-18T21:48:34Z,- akibrhast commented on issue: [1418](https://github.com/hackforla/website/issues/1418#issuecomment-822067299) at 2021-04-18 02:48 PM PDT -akibrhast,2021-04-18T21:48:54Z,- akibrhast assigned to issue: [1418](https://github.com/hackforla/website/issues/1418#issuecomment-822067299) at 2021-04-18 02:48 PM PDT -akibrhast,2021-04-18T21:53:31Z,- akibrhast assigned to issue: [1417](https://github.com/hackforla/website/issues/1417) at 2021-04-18 02:53 PM PDT -akibrhast,2021-04-19T00:28:22Z,- akibrhast commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-822096058) at 2021-04-18 05:28 PM PDT -akibrhast,2021-04-19T05:33:33Z,- akibrhast commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-822179817) at 2021-04-18 10:33 PM PDT -akibrhast,2021-04-19T05:36:43Z,- akibrhast commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-822181281) at 2021-04-18 10:36 PM PDT -akibrhast,2021-04-19T14:37:27Z,- akibrhast assigned to issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-798809755) at 2021-04-19 07:37 AM PDT -akibrhast,2021-04-19T17:22:02Z,- akibrhast opened pull request: [1421](https://github.com/hackforla/website/pull/1421) at 2021-04-19 10:22 AM PDT -akibrhast,2021-04-19T17:48:55Z,- akibrhast pull request merged: [1420](https://github.com/hackforla/website/pull/1420#event-4614175261) at 2021-04-19 10:48 AM PDT -akibrhast,2021-04-19T17:51:54Z,- akibrhast commented on pull request: [1420](https://github.com/hackforla/website/pull/1420#issuecomment-822658546) at 2021-04-19 10:51 AM PDT -akibrhast,2021-04-19T20:18:27Z,- akibrhast commented on pull request: [1421](https://github.com/hackforla/website/pull/1421#issuecomment-822757251) at 2021-04-19 01:18 PM PDT -akibrhast,2021-04-20T22:41:29Z,- akibrhast submitted pull request review: [1423](https://github.com/hackforla/website/pull/1423#pullrequestreview-640479684) at 2021-04-20 03:41 PM PDT -akibrhast,2021-04-20T23:10:09Z,- akibrhast submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-640499353) at 2021-04-20 04:10 PM PDT -akibrhast,2021-04-20T23:12:12Z,- akibrhast submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-640500275) at 2021-04-20 04:12 PM PDT -akibrhast,2021-04-20T23:23:42Z,- akibrhast commented on pull request: [1423](https://github.com/hackforla/website/pull/1423#issuecomment-823663651) at 2021-04-20 04:23 PM PDT -akibrhast,2021-04-21T01:37:38Z,- akibrhast opened pull request: [1424](https://github.com/hackforla/website/pull/1424) at 2021-04-20 06:37 PM PDT -akibrhast,2021-04-21T03:50:19Z,- akibrhast pull request merged: [1421](https://github.com/hackforla/website/pull/1421#event-4622569841) at 2021-04-20 08:50 PM PDT -akibrhast,2021-04-22T02:57:52Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-824501505) at 2021-04-21 07:57 PM PDT -akibrhast,2021-04-22T20:55:44Z,- akibrhast submitted pull request review: [1435](https://github.com/hackforla/website/pull/1435#pullrequestreview-642659319) at 2021-04-22 01:55 PM PDT -akibrhast,2021-04-22T20:57:27Z,- akibrhast submitted pull request review: [1433](https://github.com/hackforla/website/pull/1433#pullrequestreview-642660639) at 2021-04-22 01:57 PM PDT -akibrhast,2021-04-22T21:02:42Z,- akibrhast submitted pull request review: [1428](https://github.com/hackforla/website/pull/1428#pullrequestreview-642664654) at 2021-04-22 02:02 PM PDT -akibrhast,2021-04-23T14:04:29Z,- akibrhast submitted pull request review: [1423](https://github.com/hackforla/website/pull/1423#pullrequestreview-643334387) at 2021-04-23 07:04 AM PDT -akibrhast,2021-04-23T14:04:42Z,- akibrhast closed issue by PR 1423: [1122](https://github.com/hackforla/website/issues/1122#event-4637108819) at 2021-04-23 07:04 AM PDT -akibrhast,2021-04-23T16:33:35Z,- akibrhast submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-643477263) at 2021-04-23 09:33 AM PDT -akibrhast,2021-04-23T16:38:04Z,- akibrhast submitted pull request review: [1435](https://github.com/hackforla/website/pull/1435#pullrequestreview-643480861) at 2021-04-23 09:38 AM PDT -akibrhast,2021-04-23T16:47:00Z,- akibrhast opened pull request: [1438](https://github.com/hackforla/website/pull/1438) at 2021-04-23 09:47 AM PDT -akibrhast,2021-04-23T16:49:11Z,- akibrhast pull request closed w/o merging: [1438](https://github.com/hackforla/website/pull/1438#event-4637917188) at 2021-04-23 09:49 AM PDT -akibrhast,2021-04-23T16:49:57Z,- akibrhast closed issue by PR 1435: [1434](https://github.com/hackforla/website/issues/1434#event-4637920328) at 2021-04-23 09:49 AM PDT -akibrhast,2021-04-23T18:04:08Z,- akibrhast submitted pull request review: [1440](https://github.com/hackforla/website/pull/1440#pullrequestreview-643546292) at 2021-04-23 11:04 AM PDT -akibrhast,2021-04-23T18:11:00Z,- akibrhast submitted pull request review: [1437](https://github.com/hackforla/website/pull/1437#pullrequestreview-643551287) at 2021-04-23 11:11 AM PDT -akibrhast,2021-04-23T19:13:43Z,- akibrhast opened issue: [1441](https://github.com/hackforla/website/issues/1441) at 2021-04-23 12:13 PM PDT -akibrhast,2021-04-23T19:14:25Z,- akibrhast opened issue: [1442](https://github.com/hackforla/website/issues/1442) at 2021-04-23 12:14 PM PDT -akibrhast,2021-04-23T19:26:41Z,- akibrhast opened issue: [1443](https://github.com/hackforla/website/issues/1443) at 2021-04-23 12:26 PM PDT -akibrhast,2021-04-23T20:00:11Z,- akibrhast opened issue: [1445](https://github.com/hackforla/website/issues/1445) at 2021-04-23 01:00 PM PDT -akibrhast,2021-04-23T22:44:12Z,- akibrhast submitted pull request review: [1446](https://github.com/hackforla/website/pull/1446#pullrequestreview-643705914) at 2021-04-23 03:44 PM PDT -akibrhast,2021-04-23T22:44:21Z,- akibrhast closed issue by PR 1446: [940](https://github.com/hackforla/website/issues/940#event-4639107361) at 2021-04-23 03:44 PM PDT -akibrhast,2021-04-24T02:03:23Z,- akibrhast submitted pull request review: [1447](https://github.com/hackforla/website/pull/1447#pullrequestreview-643741364) at 2021-04-23 07:03 PM PDT -akibrhast,2021-04-24T02:03:31Z,- akibrhast closed issue by PR 1447: [1026](https://github.com/hackforla/website/issues/1026#event-4639397859) at 2021-04-23 07:03 PM PDT -akibrhast,2021-04-24T02:08:44Z,- akibrhast commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826018253) at 2021-04-23 07:08 PM PDT -akibrhast,2021-04-24T02:10:34Z,- akibrhast submitted pull request review: [1448](https://github.com/hackforla/website/pull/1448#pullrequestreview-643741991) at 2021-04-23 07:10 PM PDT -akibrhast,2021-04-24T22:37:59Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-826162418) at 2021-04-24 03:37 PM PDT -akibrhast,2021-04-25T17:29:03Z,- akibrhast commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359472) at 2021-04-25 10:29 AM PDT -akibrhast,2021-04-26T23:09:21Z,- akibrhast submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-645183936) at 2021-04-26 04:09 PM PDT -akibrhast,2021-04-26T23:12:43Z,- akibrhast commented on pull request: [1468](https://github.com/hackforla/website/pull/1468#issuecomment-827199092) at 2021-04-26 04:12 PM PDT -akibrhast,2021-04-27T01:35:00Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-827244932) at 2021-04-26 06:35 PM PDT -akibrhast,2021-04-27T09:06:09Z,- akibrhast opened pull request: [1473](https://github.com/hackforla/website/pull/1473) at 2021-04-27 02:06 AM PDT -akibrhast,2021-04-27T09:39:24Z,- akibrhast pull request closed w/o merging: [1473](https://github.com/hackforla/website/pull/1473#event-4649774751) at 2021-04-27 02:39 AM PDT -akibrhast,2021-04-28T00:35:03Z,- akibrhast submitted pull request review: [1476](https://github.com/hackforla/website/pull/1476#pullrequestreview-646502672) at 2021-04-27 05:35 PM PDT -akibrhast,2021-04-28T01:08:58Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-828064949) at 2021-04-27 06:08 PM PDT -akibrhast,2021-04-28T02:54:33Z,- akibrhast pull request merged: [1424](https://github.com/hackforla/website/pull/1424#event-4654132157) at 2021-04-27 07:54 PM PDT -akibrhast,2021-04-28T03:18:33Z,- akibrhast commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-828111274) at 2021-04-27 08:18 PM PDT -akibrhast,2021-04-28T04:18:34Z,- akibrhast submitted pull request review: [1485](https://github.com/hackforla/website/pull/1485#pullrequestreview-646581474) at 2021-04-27 09:18 PM PDT -akibrhast,2021-04-28T04:18:42Z,- akibrhast closed issue by PR 1485: [1461](https://github.com/hackforla/website/issues/1461#event-4654327152) at 2021-04-27 09:18 PM PDT -akibrhast,2021-04-30T00:34:50Z,- akibrhast commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-829717597) at 2021-04-29 05:34 PM PDT -akibrhast,2021-04-30T00:37:46Z,- akibrhast commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-829718468) at 2021-04-29 05:37 PM PDT -akibrhast,2021-05-01T06:29:51Z,- akibrhast commented on issue: [1452](https://github.com/hackforla/website/issues/1452#issuecomment-830563906) at 2021-04-30 11:29 PM PDT -akibrhast,2021-05-01T06:29:52Z,- akibrhast closed issue as completed: [1452](https://github.com/hackforla/website/issues/1452#event-4673145825) at 2021-04-30 11:29 PM PDT -akibrhast,2021-05-03T17:18:26Z,- akibrhast opened pull request: [1501](https://github.com/hackforla/website/pull/1501) at 2021-05-03 10:18 AM PDT -akibrhast,2021-05-03T19:35:48Z,- akibrhast pull request closed w/o merging: [1501](https://github.com/hackforla/website/pull/1501#event-4679842052) at 2021-05-03 12:35 PM PDT -akibrhast,2021-05-03T21:49:38Z,- akibrhast commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831557350) at 2021-05-03 02:49 PM PDT -akibrhast,2021-05-03T22:23:12Z,- akibrhast submitted pull request review: [1502](https://github.com/hackforla/website/pull/1502#pullrequestreview-650768830) at 2021-05-03 03:23 PM PDT -akibrhast,2021-05-05T07:45:42Z,- akibrhast submitted pull request review: [1514](https://github.com/hackforla/website/pull/1514#pullrequestreview-652011619) at 2021-05-05 12:45 AM PDT -akibrhast,2021-05-06T11:15:57Z,- akibrhast submitted pull request review: [1514](https://github.com/hackforla/website/pull/1514#pullrequestreview-653292365) at 2021-05-06 04:15 AM PDT -akibrhast,2021-05-06T11:16:30Z,- akibrhast closed issue by PR 1514: [1481](https://github.com/hackforla/website/issues/1481#event-4694520452) at 2021-05-06 04:16 AM PDT -akibrhast,2021-05-06T21:02:25Z,- akibrhast unassigned from issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831557350) at 2021-05-06 02:02 PM PDT -akibrhast,2021-05-07T19:36:26Z,- akibrhast submitted pull request review: [1528](https://github.com/hackforla/website/pull/1528#pullrequestreview-654809809) at 2021-05-07 12:36 PM PDT -akibrhast,2021-05-07T19:36:31Z,- akibrhast closed issue by PR 1528: [1511](https://github.com/hackforla/website/issues/1511#event-4704241108) at 2021-05-07 12:36 PM PDT -akibrhast,2021-05-10T15:41:19Z,- akibrhast submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-655794988) at 2021-05-10 08:41 AM PDT -akibrhast,2021-05-11T01:08:20Z,- akibrhast closed issue by PR 1535: [1510](https://github.com/hackforla/website/issues/1510#event-4722052513) at 2021-05-10 06:08 PM PDT -akibrhast,2021-05-11T01:19:33Z,- akibrhast commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837595081) at 2021-05-10 06:19 PM PDT -akibrhast,2021-05-11T01:19:38Z,- akibrhast closed issue by PR 1522: [1507](https://github.com/hackforla/website/issues/1507#event-4722108575) at 2021-05-10 06:19 PM PDT -akibrhast,2021-05-11T01:21:18Z,- akibrhast commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837596687) at 2021-05-10 06:21 PM PDT -akibrhast,2021-05-11T05:23:53Z,- akibrhast assigned to issue: [1538](https://github.com/hackforla/website/issues/1538) at 2021-05-10 10:23 PM PDT -akibrhast,2021-05-11T22:28:54Z,- akibrhast commented on issue: [1538](https://github.com/hackforla/website/issues/1538#issuecomment-839236925) at 2021-05-11 03:28 PM PDT -akibrhast,2021-05-11T22:28:55Z,- akibrhast closed issue as completed: [1538](https://github.com/hackforla/website/issues/1538#event-4732114180) at 2021-05-11 03:28 PM PDT -akibrhast,2021-05-13T17:00:23Z,- akibrhast commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-840695207) at 2021-05-13 10:00 AM PDT -akibrhast,2021-05-16T18:54:51Z,- akibrhast commented on issue: [1070](https://github.com/hackforla/website/issues/1070#issuecomment-841860715) at 2021-05-16 11:54 AM PDT -akibrhast,2021-05-19T02:40:30Z,- akibrhast submitted pull request review: [1557](https://github.com/hackforla/website/pull/1557#pullrequestreview-662723686) at 2021-05-18 07:40 PM PDT -akibrhast,2021-05-22T17:05:22Z,- akibrhast commented on pull request: [1591](https://github.com/hackforla/website/pull/1591#issuecomment-846436581) at 2021-05-22 10:05 AM PDT -akibrhast,2021-05-24T02:31:30Z,- akibrhast commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-846689486) at 2021-05-23 07:31 PM PDT -akibrhast,2021-05-24T02:32:36Z,- akibrhast assigned to issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-846600374) at 2021-05-23 07:32 PM PDT -akibrhast,2021-05-26T13:26:11Z,- akibrhast submitted pull request review: [1640](https://github.com/hackforla/website/pull/1640#pullrequestreview-669016575) at 2021-05-26 06:26 AM PDT -akibrhast,2021-05-26T13:26:20Z,- akibrhast closed issue by PR 1640: [1559](https://github.com/hackforla/website/issues/1559#event-4799374780) at 2021-05-26 06:26 AM PDT -akibrhast,2021-05-26T14:41:17Z,- akibrhast assigned to issue: [1642](https://github.com/hackforla/website/issues/1642) at 2021-05-26 07:41 AM PDT -akibrhast,2021-05-26T14:44:59Z,- akibrhast assigned to issue: [1643](https://github.com/hackforla/website/issues/1643) at 2021-05-26 07:44 AM PDT -akibrhast,2021-05-26T14:45:12Z,- akibrhast closed issue as completed: [1642](https://github.com/hackforla/website/issues/1642#event-4799914646) at 2021-05-26 07:45 AM PDT -akibrhast,2021-05-26T15:19:00Z,- akibrhast closed issue as completed: [1643](https://github.com/hackforla/website/issues/1643#event-4800149267) at 2021-05-26 08:19 AM PDT -akibrhast,2021-05-26T15:26:36Z,- akibrhast opened issue: [1645](https://github.com/hackforla/website/issues/1645) at 2021-05-26 08:26 AM PDT -akibrhast,2021-05-26T15:26:51Z,- akibrhast closed issue as completed: [1645](https://github.com/hackforla/website/issues/1645#event-4800200399) at 2021-05-26 08:26 AM PDT -akibrhast,2021-05-26T15:35:36Z,- akibrhast closed issue as completed: [1646](https://github.com/hackforla/website/issues/1646#event-4800258428) at 2021-05-26 08:35 AM PDT -akibrhast,2021-05-26T15:35:42Z,- akibrhast closed issue as completed: [1644](https://github.com/hackforla/website/issues/1644#event-4800259303) at 2021-05-26 08:35 AM PDT -akibrhast,2021-05-26T15:40:17Z,- akibrhast closed issue as completed: [1647](https://github.com/hackforla/website/issues/1647#event-4800291500) at 2021-05-26 08:40 AM PDT -akibrhast,2021-05-26T15:40:17Z,- akibrhast closed issue as completed: [1648](https://github.com/hackforla/website/issues/1648#event-4800291531) at 2021-05-26 08:40 AM PDT -akibrhast,2021-05-26T15:40:17Z,- akibrhast closed issue as completed: [1649](https://github.com/hackforla/website/issues/1649#event-4800291572) at 2021-05-26 08:40 AM PDT -akibrhast,2021-05-26T15:59:15Z,- akibrhast closed issue as completed: [1650](https://github.com/hackforla/website/issues/1650#event-4800412582) at 2021-05-26 08:59 AM PDT -akibrhast,2021-05-26T16:09:24Z,- akibrhast closed issue as completed: [1651](https://github.com/hackforla/website/issues/1651#event-4800473364) at 2021-05-26 09:09 AM PDT -akibrhast,2021-05-26T16:17:01Z,- akibrhast closed issue as completed: [1652](https://github.com/hackforla/website/issues/1652#event-4800518613) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:01Z,- akibrhast closed issue as completed: [1653](https://github.com/hackforla/website/issues/1653#event-4800518636) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:02Z,- akibrhast closed issue as completed: [1654](https://github.com/hackforla/website/issues/1654#event-4800518654) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:02Z,- akibrhast closed issue as completed: [1655](https://github.com/hackforla/website/issues/1655#event-4800518677) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:02Z,- akibrhast closed issue as completed: [1656](https://github.com/hackforla/website/issues/1656#event-4800518701) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:25:09Z,- akibrhast closed issue as completed: [1657](https://github.com/hackforla/website/issues/1657#event-4800565363) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:09Z,- akibrhast closed issue as completed: [1658](https://github.com/hackforla/website/issues/1658#event-4800565381) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:10Z,- akibrhast closed issue as completed: [1659](https://github.com/hackforla/website/issues/1659#event-4800565419) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:10Z,- akibrhast closed issue as completed: [1660](https://github.com/hackforla/website/issues/1660#event-4800565454) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:10Z,- akibrhast closed issue as completed: [1661](https://github.com/hackforla/website/issues/1661#event-4800565479) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T17:18:12Z,- akibrhast closed issue as completed: [1662](https://github.com/hackforla/website/issues/1662#event-4800854375) at 2021-05-26 10:18 AM PDT -akibrhast,2021-05-26T17:18:12Z,- akibrhast closed issue as completed: [1663](https://github.com/hackforla/website/issues/1663#event-4800854403) at 2021-05-26 10:18 AM PDT -akibrhast,2021-05-26T17:18:12Z,- akibrhast closed issue as completed: [1664](https://github.com/hackforla/website/issues/1664#event-4800854417) at 2021-05-26 10:18 AM PDT -akibrhast,2021-05-26T17:50:23Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-848991725) at 2021-05-26 10:50 AM PDT -akibrhast,2021-05-26T17:55:09Z,- akibrhast closed issue as completed: [1665](https://github.com/hackforla/website/issues/1665#event-4801084861) at 2021-05-26 10:55 AM PDT -akibrhast,2021-05-26T17:55:09Z,- akibrhast closed issue as completed: [1666](https://github.com/hackforla/website/issues/1666#event-4801084880) at 2021-05-26 10:55 AM PDT -akibrhast,2021-05-26T17:55:09Z,- akibrhast closed issue as completed: [1667](https://github.com/hackforla/website/issues/1667#event-4801084897) at 2021-05-26 10:55 AM PDT -akibrhast,2021-06-02T02:33:32Z,- akibrhast assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040453) at 2021-06-01 07:33 PM PDT -akibrhast,2021-06-04T03:12:59Z,- akibrhast commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-854326393) at 2021-06-03 08:12 PM PDT -akibrhast,2021-06-04T03:24:46Z,- akibrhast opened issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -akibrhast,2021-06-04T05:01:26Z,- akibrhast assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -akibrhast,2021-06-04T05:15:39Z,- akibrhast assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -akibrhast,2021-06-06T14:16:06Z,- akibrhast commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855406351) at 2021-06-06 07:16 AM PDT -akibrhast,2021-06-06T14:55:49Z,- akibrhast unassigned from issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040453) at 2021-06-06 07:55 AM PDT -akibrhast,2021-06-06T15:03:01Z,- akibrhast submitted pull request review: [1679](https://github.com/hackforla/website/pull/1679#pullrequestreview-676875251) at 2021-06-06 08:03 AM PDT -akibrhast,2021-06-06T15:18:48Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-855415495) at 2021-06-06 08:18 AM PDT -akibrhast,2021-06-06T15:20:41Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-676876824) at 2021-06-06 08:20 AM PDT -akibrhast,2021-06-06T17:36:01Z,- akibrhast assigned to issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-06-06 10:36 AM PDT -akibrhast,2021-06-06T19:49:19Z,- akibrhast unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -akibrhast,2021-06-06T19:50:45Z,- akibrhast commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855452951) at 2021-06-06 12:50 PM PDT -akibrhast,2021-06-06T19:52:29Z,- akibrhast commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855453165) at 2021-06-06 12:52 PM PDT -akibrhast,2021-06-06T19:52:29Z,- akibrhast closed issue as completed: [1265](https://github.com/hackforla/website/issues/1265#event-4848555688) at 2021-06-06 12:52 PM PDT -akibrhast,2021-06-10T14:07:09Z,- akibrhast commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-858653669) at 2021-06-10 07:07 AM PDT -akibrhast,2021-06-10T14:17:23Z,- akibrhast commented on issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-858661855) at 2021-06-10 07:17 AM PDT -akibrhast,2021-06-10T14:17:31Z,- akibrhast assigned to issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-858661855) at 2021-06-10 07:17 AM PDT -akibrhast,2021-06-10T14:36:37Z,- akibrhast submitted pull request review: [1702](https://github.com/hackforla/website/pull/1702#pullrequestreview-680869994) at 2021-06-10 07:36 AM PDT -akibrhast,2021-06-10T14:37:29Z,- akibrhast closed issue by PR 1702: [1532](https://github.com/hackforla/website/issues/1532#event-4871867600) at 2021-06-10 07:37 AM PDT -akibrhast,2021-06-10T14:46:57Z,- akibrhast submitted pull request review: [1701](https://github.com/hackforla/website/pull/1701#pullrequestreview-680883199) at 2021-06-10 07:46 AM PDT -akibrhast,2021-06-10T16:26:20Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-858765990) at 2021-06-10 09:26 AM PDT -akibrhast,2021-06-10T17:24:15Z,- akibrhast commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-858810670) at 2021-06-10 10:24 AM PDT -akibrhast,2021-06-11T01:59:55Z,- akibrhast submitted pull request review: [1706](https://github.com/hackforla/website/pull/1706#pullrequestreview-681387498) at 2021-06-10 06:59 PM PDT -akibrhast,2021-06-11T02:00:23Z,- akibrhast closed issue by PR 1706: [1599](https://github.com/hackforla/website/issues/1599#event-4875198638) at 2021-06-10 07:00 PM PDT -akibrhast,2021-06-11T04:12:12Z,- akibrhast commented on issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-859250196) at 2021-06-10 09:12 PM PDT -akibrhast,2021-06-11T04:12:12Z,- akibrhast closed issue as completed: [1695](https://github.com/hackforla/website/issues/1695#event-4875538851) at 2021-06-10 09:12 PM PDT -akibrhast,2021-06-11T13:33:13Z,- akibrhast closed issue by PR 1701: [1553](https://github.com/hackforla/website/issues/1553#event-4878030214) at 2021-06-11 06:33 AM PDT -akibrhast,2021-06-11T13:39:31Z,- akibrhast commented on pull request: [1704](https://github.com/hackforla/website/pull/1704#issuecomment-859589301) at 2021-06-11 06:39 AM PDT -akibrhast,2021-06-11T13:46:09Z,- akibrhast closed issue by PR 1609: [1595](https://github.com/hackforla/website/issues/1595#event-4878105942) at 2021-06-11 06:46 AM PDT -akibrhast,2021-06-11T16:01:20Z,- akibrhast opened issue: [1709](https://github.com/hackforla/website/issues/1709) at 2021-06-11 09:01 AM PDT -akibrhast,2021-06-11T16:09:15Z,- akibrhast opened issue: [1710](https://github.com/hackforla/website/issues/1710) at 2021-06-11 09:09 AM PDT -akibrhast,2021-06-11T16:24:53Z,- akibrhast commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-859697950) at 2021-06-11 09:24 AM PDT -akibrhast,2021-06-11T17:16:09Z,- akibrhast commented on issue: [1707](https://github.com/hackforla/website/issues/1707#issuecomment-859726364) at 2021-06-11 10:16 AM PDT -akibrhast,2021-06-11T17:51:38Z,- akibrhast assigned to issue: [1712](https://github.com/hackforla/website/issues/1712) at 2021-06-11 10:51 AM PDT -akibrhast,2021-06-11T23:39:21Z,- akibrhast assigned to issue: [1714](https://github.com/hackforla/website/issues/1714) at 2021-06-11 04:39 PM PDT -akibrhast,2021-06-11T23:39:29Z,- akibrhast commented on issue: [1714](https://github.com/hackforla/website/issues/1714#issuecomment-859958399) at 2021-06-11 04:39 PM PDT -akibrhast,2021-06-11T23:39:30Z,- akibrhast closed issue as completed: [1714](https://github.com/hackforla/website/issues/1714#event-4880492017) at 2021-06-11 04:39 PM PDT -akibrhast,2021-06-11T23:50:46Z,- akibrhast opened pull request: [1716](https://github.com/hackforla/website/pull/1716) at 2021-06-11 04:50 PM PDT -akibrhast,2021-06-12T00:17:15Z,- akibrhast pull request merged: [1716](https://github.com/hackforla/website/pull/1716#event-4880555966) at 2021-06-11 05:17 PM PDT -akibrhast,2021-06-12T03:04:31Z,- akibrhast submitted pull request review: [1704](https://github.com/hackforla/website/pull/1704#pullrequestreview-682291027) at 2021-06-11 08:04 PM PDT -akibrhast,2021-06-12T03:04:37Z,- akibrhast closed issue by PR 1704: [1519](https://github.com/hackforla/website/issues/1519#event-4880737783) at 2021-06-11 08:04 PM PDT -akibrhast,2021-06-12T05:44:02Z,- akibrhast opened pull request: [1719](https://github.com/hackforla/website/pull/1719) at 2021-06-11 10:44 PM PDT -akibrhast,2021-06-12T16:33:31Z,- akibrhast assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:33 AM PDT -akibrhast,2021-06-12T19:51:12Z,- akibrhast pull request merged: [1719](https://github.com/hackforla/website/pull/1719#event-4881611273) at 2021-06-12 12:51 PM PDT -akibrhast,2021-06-12T20:04:24Z,- akibrhast closed issue as completed: [1727](https://github.com/hackforla/website/issues/1727#event-4881621262) at 2021-06-12 01:04 PM PDT -akibrhast,2021-06-12T22:10:00Z,- akibrhast assigned to issue: [1728](https://github.com/hackforla/website/issues/1728) at 2021-06-12 03:10 PM PDT -akibrhast,2021-06-13T02:36:03Z,- akibrhast submitted pull request review: [1726](https://github.com/hackforla/website/pull/1726#pullrequestreview-682366237) at 2021-06-12 07:36 PM PDT -akibrhast,2021-06-13T15:43:07Z,- akibrhast submitted pull request review: [1732](https://github.com/hackforla/website/pull/1732#pullrequestreview-682423108) at 2021-06-13 08:43 AM PDT -akibrhast,2021-06-13T15:43:29Z,- akibrhast submitted pull request review: [1732](https://github.com/hackforla/website/pull/1732#pullrequestreview-682423135) at 2021-06-13 08:43 AM PDT -akibrhast,2021-06-13T15:59:23Z,- akibrhast submitted pull request review: [1732](https://github.com/hackforla/website/pull/1732#pullrequestreview-682424410) at 2021-06-13 08:59 AM PDT -akibrhast,2021-06-13T16:01:31Z,- akibrhast closed issue by PR 1726: [1606](https://github.com/hackforla/website/issues/1606#event-4882426615) at 2021-06-13 09:01 AM PDT -akibrhast,2021-06-13T16:19:11Z,- akibrhast commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-860236394) at 2021-06-13 09:19 AM PDT -akibrhast,2021-06-13T16:37:24Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860238675) at 2021-06-13 09:37 AM PDT -akibrhast,2021-06-13T17:49:21Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860247350) at 2021-06-13 10:49 AM PDT -akibrhast,2021-06-13T18:31:27Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-860252265) at 2021-06-13 11:31 AM PDT -akibrhast,2021-06-13T19:27:44Z,- akibrhast unassigned from issue: [1728](https://github.com/hackforla/website/issues/1728) at 2021-06-13 12:27 PM PDT -akibrhast,2021-06-14T14:09:09Z,- akibrhast opened pull request: [1735](https://github.com/hackforla/website/pull/1735) at 2021-06-14 07:09 AM PDT -akibrhast,2021-06-14T14:11:24Z,- akibrhast pull request closed w/o merging: [1735](https://github.com/hackforla/website/pull/1735#event-4885939574) at 2021-06-14 07:11 AM PDT -akibrhast,2021-06-14T15:16:31Z,- akibrhast assigned to issue: [1482](https://github.com/hackforla/website/issues/1482#event-4881619223) at 2021-06-14 08:16 AM PDT -akibrhast,2021-06-14T18:05:00Z,- akibrhast commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860883797) at 2021-06-14 11:05 AM PDT -akibrhast,2021-06-15T02:49:13Z,- akibrhast opened pull request: [1736](https://github.com/hackforla/website/pull/1736) at 2021-06-14 07:49 PM PDT -akibrhast,2021-06-15T02:49:53Z,- akibrhast pull request closed w/o merging: [1736](https://github.com/hackforla/website/pull/1736#event-4888895287) at 2021-06-14 07:49 PM PDT -akibrhast,2021-06-15T02:51:05Z,- akibrhast opened pull request: [1737](https://github.com/hackforla/website/pull/1737) at 2021-06-14 07:51 PM PDT -akibrhast,2021-06-15T02:59:51Z,- akibrhast pull request closed w/o merging: [1737](https://github.com/hackforla/website/pull/1737#event-4888917845) at 2021-06-14 07:59 PM PDT -akibrhast,2021-06-15T04:24:37Z,- akibrhast submitted pull request review: [1679](https://github.com/hackforla/website/pull/1679#pullrequestreview-683544766) at 2021-06-14 09:24 PM PDT -akibrhast,2021-06-15T04:24:42Z,- akibrhast closed issue by PR 1679: [1531](https://github.com/hackforla/website/issues/1531#event-4889109542) at 2021-06-14 09:24 PM PDT -akibrhast,2021-06-15T04:25:50Z,- akibrhast opened pull request: [1738](https://github.com/hackforla/website/pull/1738) at 2021-06-14 09:25 PM PDT -akibrhast,2021-06-15T04:25:58Z,- akibrhast pull request merged: [1738](https://github.com/hackforla/website/pull/1738#event-4889112603) at 2021-06-14 09:25 PM PDT -akibrhast,2021-06-15T15:24:44Z,- akibrhast opened pull request: [1741](https://github.com/hackforla/website/pull/1741) at 2021-06-15 08:24 AM PDT -akibrhast,2021-06-15T15:25:18Z,- akibrhast pull request closed w/o merging: [1741](https://github.com/hackforla/website/pull/1741#event-4892435662) at 2021-06-15 08:25 AM PDT -akibrhast,2021-06-15T16:24:07Z,- akibrhast unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-15 09:24 AM PDT -akibrhast,2021-06-15T16:27:06Z,- akibrhast commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-861646067) at 2021-06-15 09:27 AM PDT -akibrhast,2021-06-15T16:27:06Z,- akibrhast closed issue as completed: [1685](https://github.com/hackforla/website/issues/1685#event-4892798258) at 2021-06-15 09:27 AM PDT -akibrhast,2021-06-15T16:50:56Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684256669) at 2021-06-15 09:50 AM PDT -akibrhast,2021-06-15T16:59:25Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684265101) at 2021-06-15 09:59 AM PDT -akibrhast,2021-06-15T17:00:21Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684266027) at 2021-06-15 10:00 AM PDT -akibrhast,2021-06-15T17:01:50Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684267434) at 2021-06-15 10:01 AM PDT -akibrhast,2021-06-15T20:51:19Z,- akibrhast commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-861822602) at 2021-06-15 01:51 PM PDT -akibrhast,2021-06-15T22:34:28Z,- akibrhast submitted pull request review: [1745](https://github.com/hackforla/website/pull/1745#pullrequestreview-684547533) at 2021-06-15 03:34 PM PDT -akibrhast,2021-06-15T23:47:41Z,- akibrhast submitted pull request review: [1746](https://github.com/hackforla/website/pull/1746#pullrequestreview-684607546) at 2021-06-15 04:47 PM PDT -akibrhast,2021-06-16T00:38:41Z,- akibrhast opened pull request: [1747](https://github.com/hackforla/website/pull/1747) at 2021-06-15 05:38 PM PDT -akibrhast,2021-06-16T00:38:57Z,- akibrhast pull request merged: [1747](https://github.com/hackforla/website/pull/1747#event-4894717778) at 2021-06-15 05:38 PM PDT -akibrhast,2021-06-16T14:53:45Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-685284222) at 2021-06-16 07:53 AM PDT -akibrhast,2021-06-16T14:54:46Z,- akibrhast closed issue by PR 1740: [1707](https://github.com/hackforla/website/issues/1707#event-4898522151) at 2021-06-16 07:54 AM PDT -akibrhast,2021-06-16T14:58:08Z,- akibrhast opened issue: [1753](https://github.com/hackforla/website/issues/1753) at 2021-06-16 07:58 AM PDT -akibrhast,2021-06-16T14:58:20Z,- akibrhast opened issue: [1754](https://github.com/hackforla/website/issues/1754) at 2021-06-16 07:58 AM PDT -akibrhast,2021-06-16T14:58:44Z,- akibrhast opened issue: [1755](https://github.com/hackforla/website/issues/1755) at 2021-06-16 07:58 AM PDT -akibrhast,2021-06-16T15:03:19Z,- akibrhast opened pull request: [1756](https://github.com/hackforla/website/pull/1756) at 2021-06-16 08:03 AM PDT -akibrhast,2021-06-16T15:20:34Z,- akibrhast opened pull request: [1757](https://github.com/hackforla/website/pull/1757) at 2021-06-16 08:20 AM PDT -akibrhast,2021-06-16T15:38:08Z,- akibrhast opened pull request: [1758](https://github.com/hackforla/website/pull/1758) at 2021-06-16 08:38 AM PDT -akibrhast,2021-06-16T15:50:27Z,- akibrhast pull request closed w/o merging: [1756](https://github.com/hackforla/website/pull/1756#event-4898876678) at 2021-06-16 08:50 AM PDT -akibrhast,2021-06-16T15:50:28Z,- akibrhast pull request closed w/o merging: [1757](https://github.com/hackforla/website/pull/1757#event-4898876719) at 2021-06-16 08:50 AM PDT -akibrhast,2021-06-16T15:52:08Z,- akibrhast submitted pull request review: [1751](https://github.com/hackforla/website/pull/1751#pullrequestreview-685356891) at 2021-06-16 08:52 AM PDT -akibrhast,2021-06-16T15:53:05Z,- akibrhast closed issue by PR 1751: [1556](https://github.com/hackforla/website/issues/1556#event-4898891708) at 2021-06-16 08:53 AM PDT -akibrhast,2021-06-16T17:23:10Z,- akibrhast closed issue as completed: [1753](https://github.com/hackforla/website/issues/1753#event-4899373558) at 2021-06-16 10:23 AM PDT -akibrhast,2021-06-16T17:23:10Z,- akibrhast closed issue as completed: [1754](https://github.com/hackforla/website/issues/1754#event-4899373575) at 2021-06-16 10:23 AM PDT -akibrhast,2021-06-16T17:23:10Z,- akibrhast closed issue as completed: [1755](https://github.com/hackforla/website/issues/1755#event-4899373593) at 2021-06-16 10:23 AM PDT -akibrhast,2021-06-16T21:01:41Z,- akibrhast opened pull request: [1759](https://github.com/hackforla/website/pull/1759) at 2021-06-16 02:01 PM PDT -akibrhast,2021-06-16T21:02:10Z,- akibrhast pull request closed w/o merging: [1759](https://github.com/hackforla/website/pull/1759#event-4900401812) at 2021-06-16 02:02 PM PDT -akibrhast,2021-06-16T21:20:03Z,- akibrhast opened pull request: [1760](https://github.com/hackforla/website/pull/1760) at 2021-06-16 02:20 PM PDT -akibrhast,2021-06-16T21:20:09Z,- akibrhast pull request closed w/o merging: [1760](https://github.com/hackforla/website/pull/1760#event-4900478092) at 2021-06-16 02:20 PM PDT -akibrhast,2021-06-16T21:22:10Z,- akibrhast opened pull request: [1761](https://github.com/hackforla/website/pull/1761) at 2021-06-16 02:22 PM PDT -akibrhast,2021-06-16T21:22:58Z,- akibrhast pull request closed w/o merging: [1761](https://github.com/hackforla/website/pull/1761#event-4900488566) at 2021-06-16 02:22 PM PDT -akibrhast,2021-06-16T22:20:13Z,- akibrhast opened pull request: [1762](https://github.com/hackforla/website/pull/1762) at 2021-06-16 03:20 PM PDT -akibrhast,2021-06-16T23:27:53Z,- akibrhast unassigned from issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860883797) at 2021-06-16 04:27 PM PDT -akibrhast,2021-06-17T00:33:23Z,- akibrhast submitted pull request review: [1763](https://github.com/hackforla/website/pull/1763#pullrequestreview-685771573) at 2021-06-16 05:33 PM PDT -akibrhast,2021-06-17T04:07:55Z,- akibrhast reopened pull request: [1732](https://github.com/hackforla/website/pull/1732#event-4901073326) at 2021-06-16 09:07 PM PDT -akibrhast,2021-06-17T04:16:03Z,- akibrhast submitted pull request review: [1764](https://github.com/hackforla/website/pull/1764#pullrequestreview-685849793) at 2021-06-16 09:16 PM PDT -akibrhast,2021-06-17T04:16:19Z,- akibrhast closed issue by PR 1764: [1574](https://github.com/hackforla/website/issues/1574#event-4901661239) at 2021-06-16 09:16 PM PDT -akibrhast,2021-06-17T04:23:27Z,- akibrhast commented on pull request: [1763](https://github.com/hackforla/website/pull/1763#issuecomment-862912210) at 2021-06-16 09:23 PM PDT -akibrhast,2021-06-17T04:24:10Z,- akibrhast closed issue by PR 1763: [1578](https://github.com/hackforla/website/issues/1578#event-4901683758) at 2021-06-16 09:24 PM PDT -akibrhast,2021-06-17T04:28:08Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-862913858) at 2021-06-16 09:28 PM PDT -akibrhast,2021-06-18T01:56:37Z,- akibrhast submitted pull request review: [1771](https://github.com/hackforla/website/pull/1771#pullrequestreview-686971473) at 2021-06-17 06:56 PM PDT -akibrhast,2021-06-18T01:58:58Z,- akibrhast submitted pull request review: [1765](https://github.com/hackforla/website/pull/1765#pullrequestreview-686972260) at 2021-06-17 06:58 PM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1766](https://github.com/hackforla/website/issues/1766#event-4910615848) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1767](https://github.com/hackforla/website/issues/1767#event-4910615870) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1768](https://github.com/hackforla/website/issues/1768#event-4910615883) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1769](https://github.com/hackforla/website/issues/1769#event-4910615892) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1770](https://github.com/hackforla/website/issues/1770#event-4910615917) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1772](https://github.com/hackforla/website/issues/1772#event-4910615938) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1776](https://github.com/hackforla/website/issues/1776#event-4910615948) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1777](https://github.com/hackforla/website/issues/1777#event-4910615962) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1778](https://github.com/hackforla/website/issues/1778#event-4910615980) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:37:38Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864156605) at 2021-06-18 09:37 AM PDT -akibrhast,2021-06-18T16:50:59Z,- akibrhast closed issue as completed: [1779](https://github.com/hackforla/website/issues/1779#event-4910785406) at 2021-06-18 09:50 AM PDT -akibrhast,2021-06-18T17:03:43Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-864169253) at 2021-06-18 10:03 AM PDT -akibrhast,2021-06-18T17:07:53Z,- akibrhast pull request closed w/o merging: [1762](https://github.com/hackforla/website/pull/1762#event-4910844585) at 2021-06-18 10:07 AM PDT -akibrhast,2021-06-18T21:36:26Z,- akibrhast submitted pull request review: [1782](https://github.com/hackforla/website/pull/1782#pullrequestreview-687739340) at 2021-06-18 02:36 PM PDT -akibrhast,2021-06-19T00:01:55Z,- akibrhast closed issue by PR 1771: [1567](https://github.com/hackforla/website/issues/1567#event-4911920996) at 2021-06-18 05:01 PM PDT -akibrhast,2021-06-19T00:04:14Z,- akibrhast submitted pull request review: [1774](https://github.com/hackforla/website/pull/1774#pullrequestreview-687776087) at 2021-06-18 05:04 PM PDT -akibrhast,2021-06-19T00:09:38Z,- akibrhast closed issue by PR 1765: [1582](https://github.com/hackforla/website/issues/1582#event-4911931726) at 2021-06-18 05:09 PM PDT -akibrhast,2021-06-19T00:13:14Z,- akibrhast submitted pull request review: [1785](https://github.com/hackforla/website/pull/1785#pullrequestreview-687777359) at 2021-06-18 05:13 PM PDT -akibrhast,2021-06-19T00:17:36Z,- akibrhast submitted pull request review: [1780](https://github.com/hackforla/website/pull/1780#pullrequestreview-687777871) at 2021-06-18 05:17 PM PDT -akibrhast,2021-06-19T00:19:17Z,- akibrhast submitted pull request review: [1784](https://github.com/hackforla/website/pull/1784#pullrequestreview-687778067) at 2021-06-18 05:19 PM PDT -akibrhast,2021-06-19T00:20:30Z,- akibrhast submitted pull request review: [1783](https://github.com/hackforla/website/pull/1783#pullrequestreview-687778201) at 2021-06-18 05:20 PM PDT -akibrhast,2021-06-19T00:37:28Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-687780034) at 2021-06-18 05:37 PM PDT -akibrhast,2021-06-19T01:21:34Z,- akibrhast commented on pull request: [1774](https://github.com/hackforla/website/pull/1774#issuecomment-864336336) at 2021-06-18 06:21 PM PDT -akibrhast,2021-06-19T01:31:09Z,- akibrhast commented on pull request: [1758](https://github.com/hackforla/website/pull/1758#issuecomment-864337232) at 2021-06-18 06:31 PM PDT -akibrhast,2021-06-19T01:33:27Z,- akibrhast pull request merged: [1758](https://github.com/hackforla/website/pull/1758#event-4911998774) at 2021-06-18 06:33 PM PDT -akibrhast,2021-06-19T02:05:27Z,- akibrhast submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-687786603) at 2021-06-18 07:05 PM PDT -akibrhast,2021-06-19T02:08:00Z,- akibrhast closed issue by PR 1471: [1390](https://github.com/hackforla/website/issues/1390#event-4912022826) at 2021-06-18 07:08 PM PDT -akibrhast,2021-06-19T02:12:58Z,- akibrhast submitted pull request review: [1785](https://github.com/hackforla/website/pull/1785#pullrequestreview-687787094) at 2021-06-18 07:12 PM PDT -akibrhast,2021-06-19T02:55:59Z,- akibrhast commented on issue: [1781](https://github.com/hackforla/website/issues/1781#issuecomment-864345684) at 2021-06-18 07:55 PM PDT -akibrhast,2021-06-19T02:56:06Z,- akibrhast closed issue as completed: [1781](https://github.com/hackforla/website/issues/1781#event-4912053560) at 2021-06-18 07:56 PM PDT -akibrhast,2021-06-19T02:57:36Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864345826) at 2021-06-18 07:57 PM PDT -akibrhast,2021-06-19T16:57:20Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864436023) at 2021-06-19 09:57 AM PDT -akibrhast,2021-06-19T16:57:20Z,- akibrhast closed issue as completed: [1673](https://github.com/hackforla/website/issues/1673#event-4912649118) at 2021-06-19 09:57 AM PDT -akibrhast,2021-06-19T17:17:13Z,- akibrhast commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864438377) at 2021-06-19 10:17 AM PDT -akibrhast,2021-06-19T19:02:08Z,- akibrhast commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864450362) at 2021-06-19 12:02 PM PDT -akibrhast,2021-06-20T14:01:25Z,- akibrhast closed issue by PR 1780: [1568](https://github.com/hackforla/website/issues/1568#event-4913441366) at 2021-06-20 07:01 AM PDT -akibrhast,2021-06-20T19:12:08Z,- akibrhast closed issue by PR 1784: [1586](https://github.com/hackforla/website/issues/1586#event-4913700547) at 2021-06-20 12:12 PM PDT -akibrhast,2021-06-21T16:01:15Z,- akibrhast submitted pull request review: [1774](https://github.com/hackforla/website/pull/1774#pullrequestreview-688615780) at 2021-06-21 09:01 AM PDT -akibrhast,2021-06-21T16:02:30Z,- akibrhast closed issue by PR 1774: [1610](https://github.com/hackforla/website/issues/1610#event-4917786185) at 2021-06-21 09:02 AM PDT -akibrhast,2021-06-21T16:03:43Z,- akibrhast submitted pull request review: [1775](https://github.com/hackforla/website/pull/1775#pullrequestreview-688620435) at 2021-06-21 09:03 AM PDT -akibrhast,2021-06-21T16:05:19Z,- akibrhast commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-865158559) at 2021-06-21 09:05 AM PDT -akibrhast,2021-06-21T16:08:15Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-688624919) at 2021-06-21 09:08 AM PDT -akibrhast,2021-06-21T16:26:29Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-688642215) at 2021-06-21 09:26 AM PDT -akibrhast,2021-06-21T16:54:01Z,- akibrhast commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-865192351) at 2021-06-21 09:54 AM PDT -akibrhast,2021-06-21T17:25:53Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-865214070) at 2021-06-21 10:25 AM PDT -akibrhast,2021-06-22T05:31:57Z,- akibrhast commented on pull request: [1773](https://github.com/hackforla/website/pull/1773#issuecomment-865609740) at 2021-06-21 10:31 PM PDT -akibrhast,2021-06-22T05:32:09Z,- akibrhast reopened pull request: [1773](https://github.com/hackforla/website/pull/1773#event-4920428135) at 2021-06-21 10:32 PM PDT -akibrhast,2021-06-22T05:34:25Z,- akibrhast opened pull request: [1805](https://github.com/hackforla/website/pull/1805) at 2021-06-21 10:34 PM PDT -akibrhast,2021-06-22T05:40:26Z,- akibrhast pull request closed w/o merging: [1805](https://github.com/hackforla/website/pull/1805#event-4920452695) at 2021-06-21 10:40 PM PDT -akibrhast,2021-06-22T05:42:06Z,- akibrhast opened pull request: [1806](https://github.com/hackforla/website/pull/1806) at 2021-06-21 10:42 PM PDT -akibrhast,2021-06-22T05:54:31Z,- akibrhast pull request closed w/o merging: [1806](https://github.com/hackforla/website/pull/1806#event-4920494425) at 2021-06-21 10:54 PM PDT -akibrhast,2021-06-22T06:03:33Z,- akibrhast opened pull request: [1807](https://github.com/hackforla/website/pull/1807) at 2021-06-21 11:03 PM PDT -akibrhast,2021-06-22T06:05:39Z,- akibrhast pull request closed w/o merging: [1807](https://github.com/hackforla/website/pull/1807#event-4920531691) at 2021-06-21 11:05 PM PDT -akibrhast,2021-06-22T06:15:28Z,- akibrhast opened pull request: [1809](https://github.com/hackforla/website/pull/1809) at 2021-06-21 11:15 PM PDT -akibrhast,2021-06-22T06:16:58Z,- akibrhast pull request closed w/o merging: [1809](https://github.com/hackforla/website/pull/1809#event-4920573132) at 2021-06-21 11:16 PM PDT -akibrhast,2021-06-22T06:22:28Z,- akibrhast pull request closed w/o merging: [1809](https://github.com/hackforla/website/pull/1809#event-4920593366) at 2021-06-21 11:22 PM PDT -akibrhast,2021-06-22T06:24:42Z,- akibrhast opened pull request: [1810](https://github.com/hackforla/website/pull/1810) at 2021-06-21 11:24 PM PDT -akibrhast,2021-06-22T06:26:13Z,- akibrhast pull request closed w/o merging: [1810](https://github.com/hackforla/website/pull/1810#event-4920607145) at 2021-06-21 11:26 PM PDT -akibrhast,2021-06-22T13:45:31Z,- akibrhast closed issue by PR 1782: [1579](https://github.com/hackforla/website/issues/1579#event-4922870281) at 2021-06-22 06:45 AM PDT -akibrhast,2021-06-22T14:17:55Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-689570458) at 2021-06-22 07:17 AM PDT -akibrhast,2021-06-22T14:22:48Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-689576617) at 2021-06-22 07:22 AM PDT -akibrhast,2021-06-22T14:25:28Z,- akibrhast closed issue by PR 1783: [1576](https://github.com/hackforla/website/issues/1576#event-4923134105) at 2021-06-22 07:25 AM PDT -akibrhast,2021-06-22T14:45:58Z,- akibrhast opened pull request: [1815](https://github.com/hackforla/website/pull/1815) at 2021-06-22 07:45 AM PDT -akibrhast,2021-06-22T15:44:37Z,- akibrhast pull request closed w/o merging: [1815](https://github.com/hackforla/website/pull/1815#event-4923671537) at 2021-06-22 08:44 AM PDT -akibrhast,2021-06-23T04:52:06Z,- akibrhast commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-866519965) at 2021-06-22 09:52 PM PDT -akibrhast,2021-06-23T05:00:44Z,- akibrhast commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-866522854) at 2021-06-22 10:00 PM PDT -akibrhast,2021-06-23T05:02:42Z,- akibrhast commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-866523610) at 2021-06-22 10:02 PM PDT -akibrhast,2021-06-23T05:05:26Z,- akibrhast commented on issue: [1290](https://github.com/hackforla/website/issues/1290#issuecomment-866524814) at 2021-06-22 10:05 PM PDT -akibrhast,2021-06-23T05:05:27Z,- akibrhast closed issue as completed: [1290](https://github.com/hackforla/website/issues/1290#event-4926478912) at 2021-06-22 10:05 PM PDT -akibrhast,2021-06-23T05:07:10Z,- akibrhast commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-866525524) at 2021-06-22 10:07 PM PDT -akibrhast,2021-06-23T05:07:10Z,- akibrhast closed issue as completed: [947](https://github.com/hackforla/website/issues/947#event-4926483735) at 2021-06-22 10:07 PM PDT -akibrhast,2021-06-23T16:48:26Z,- akibrhast closed issue by PR 1804: [1575](https://github.com/hackforla/website/issues/1575#event-4930073227) at 2021-06-23 09:48 AM PDT -akibrhast,2021-06-23T16:49:07Z,- akibrhast closed issue by PR 1801: [1569](https://github.com/hackforla/website/issues/1569#event-4930076571) at 2021-06-23 09:49 AM PDT -akibrhast,2021-06-23T16:50:29Z,- akibrhast closed issue by PR 1799: [1693](https://github.com/hackforla/website/issues/1693#event-4930083293) at 2021-06-23 09:50 AM PDT -akibrhast,2021-06-23T16:51:05Z,- akibrhast closed issue by PR 1790: [1611](https://github.com/hackforla/website/issues/1611#event-4930086165) at 2021-06-23 09:51 AM PDT -akibrhast,2021-06-23T16:52:05Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-690915710) at 2021-06-23 09:52 AM PDT -akibrhast,2021-06-23T16:58:38Z,- akibrhast closed issue by PR 1773: [1694](https://github.com/hackforla/website/issues/1694#event-4930122074) at 2021-06-23 09:58 AM PDT -akibrhast,2021-06-23T17:02:45Z,- akibrhast submitted pull request review: [1813](https://github.com/hackforla/website/pull/1813#pullrequestreview-690925925) at 2021-06-23 10:02 AM PDT -akibrhast,2021-06-23T17:02:58Z,- akibrhast closed issue by PR 1813: [1792](https://github.com/hackforla/website/issues/1792#event-4930143338) at 2021-06-23 10:02 AM PDT -akibrhast,2021-06-23T17:04:17Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-867009811) at 2021-06-23 10:04 AM PDT -akibrhast,2021-06-23T17:06:44Z,- akibrhast submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-690929572) at 2021-06-23 10:06 AM PDT -akibrhast,2021-06-23T17:06:50Z,- akibrhast closed issue by PR 1731: [1607](https://github.com/hackforla/website/issues/1607#event-4930163229) at 2021-06-23 10:06 AM PDT -akibrhast,2021-06-23T17:11:00Z,- akibrhast commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-867014295) at 2021-06-23 10:11 AM PDT -akibrhast,2021-06-23T17:15:47Z,- akibrhast submitted pull request review: [1744](https://github.com/hackforla/website/pull/1744#pullrequestreview-690937758) at 2021-06-23 10:15 AM PDT -akibrhast,2021-06-24T15:16:36Z,- akibrhast commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867723211) at 2021-06-24 08:16 AM PDT -akibrhast,2021-06-24T15:49:42Z,- akibrhast commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867749610) at 2021-06-24 08:49 AM PDT -akibrhast,2021-06-24T15:55:02Z,- akibrhast commented on pull request: [1821](https://github.com/hackforla/website/pull/1821#issuecomment-867754859) at 2021-06-24 08:55 AM PDT -akibrhast,2021-06-24T15:55:10Z,- akibrhast closed issue by PR 1821: [1527](https://github.com/hackforla/website/issues/1527#event-4935479645) at 2021-06-24 08:55 AM PDT -akibrhast,2021-06-24T15:56:37Z,- akibrhast commented on pull request: [1814](https://github.com/hackforla/website/pull/1814#issuecomment-867756864) at 2021-06-24 08:56 AM PDT -akibrhast,2021-06-24T16:01:21Z,- akibrhast commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-867760819) at 2021-06-24 09:01 AM PDT -akibrhast,2021-06-24T16:42:55Z,- akibrhast submitted pull request review: [1827](https://github.com/hackforla/website/pull/1827#pullrequestreview-691995686) at 2021-06-24 09:42 AM PDT -akibrhast,2021-06-24T16:42:59Z,- akibrhast closed issue by PR 1827: [1570](https://github.com/hackforla/website/issues/1570#event-4935728205) at 2021-06-24 09:42 AM PDT -akibrhast,2021-06-24T16:48:58Z,- akibrhast opened issue: [1828](https://github.com/hackforla/website/issues/1828) at 2021-06-24 09:48 AM PDT -akibrhast,2021-06-24T16:54:39Z,- akibrhast closed issue as completed: [1828](https://github.com/hackforla/website/issues/1828#event-4935780838) at 2021-06-24 09:54 AM PDT -akibrhast,2021-06-24T20:37:29Z,- akibrhast commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-867935448) at 2021-06-24 01:37 PM PDT -akibrhast,2021-06-25T02:52:50Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-868163831) at 2021-06-24 07:52 PM PDT -akibrhast,2021-06-25T04:23:36Z,- akibrhast commented on pull request: [1814](https://github.com/hackforla/website/pull/1814#issuecomment-868193336) at 2021-06-24 09:23 PM PDT -akibrhast,2021-06-27T18:48:23Z,- akibrhast submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-693444027) at 2021-06-27 11:48 AM PDT -akibrhast,2021-06-27T19:28:11Z,- akibrhast commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-869213210) at 2021-06-27 12:28 PM PDT -akibrhast,2021-06-27T19:54:25Z,- akibrhast commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-869215920) at 2021-06-27 12:54 PM PDT -akibrhast,2021-06-27T20:48:59Z,- akibrhast commented on issue: [1847](https://github.com/hackforla/website/issues/1847#issuecomment-869221777) at 2021-06-27 01:48 PM PDT -akibrhast,2021-06-29T12:57:40Z,- akibrhast submitted pull request review: [1831](https://github.com/hackforla/website/pull/1831#pullrequestreview-694997632) at 2021-06-29 05:57 AM PDT -akibrhast,2021-06-29T12:57:46Z,- akibrhast closed issue by PR 1831: [1688](https://github.com/hackforla/website/issues/1688#event-4953430920) at 2021-06-29 05:57 AM PDT -akibrhast,2021-06-29T13:05:01Z,- akibrhast submitted pull request review: [1854](https://github.com/hackforla/website/pull/1854#pullrequestreview-695006271) at 2021-06-29 06:05 AM PDT -akibrhast,2021-06-29T13:05:07Z,- akibrhast closed issue by PR 1854: [1477](https://github.com/hackforla/website/issues/1477#event-4953479388) at 2021-06-29 06:05 AM PDT -akibrhast,2021-06-29T13:08:11Z,- akibrhast commented on pull request: [1855](https://github.com/hackforla/website/pull/1855#issuecomment-870584095) at 2021-06-29 06:08 AM PDT -akibrhast,2021-06-29T13:10:59Z,- akibrhast submitted pull request review: [1853](https://github.com/hackforla/website/pull/1853#pullrequestreview-695013390) at 2021-06-29 06:10 AM PDT -akibrhast,2021-06-29T13:11:16Z,- akibrhast closed issue by PR 1853: [1829](https://github.com/hackforla/website/issues/1829#event-4953519065) at 2021-06-29 06:11 AM PDT -akibrhast,2021-06-29T13:14:13Z,- akibrhast commented on pull request: [1834](https://github.com/hackforla/website/pull/1834#issuecomment-870588901) at 2021-06-29 06:14 AM PDT -akibrhast,2021-06-29T18:47:24Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-695388008) at 2021-06-29 11:47 AM PDT -akibrhast,2021-06-29T18:49:24Z,- akibrhast commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-870832919) at 2021-06-29 11:49 AM PDT -akibrhast,2021-06-30T00:51:57Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-871016957) at 2021-06-29 05:51 PM PDT -akibrhast,2021-06-30T03:06:51Z,- akibrhast commented on pull request: [1855](https://github.com/hackforla/website/pull/1855#issuecomment-871061519) at 2021-06-29 08:06 PM PDT -akibrhast,2021-06-30T03:07:45Z,- akibrhast commented on pull request: [1855](https://github.com/hackforla/website/pull/1855#issuecomment-871061858) at 2021-06-29 08:07 PM PDT -akibrhast,2021-06-30T20:47:39Z,- akibrhast closed issue by PR 1855: [1830](https://github.com/hackforla/website/issues/1830#event-4962042643) at 2021-06-30 01:47 PM PDT -akibrhast,2021-07-02T04:01:29Z,- akibrhast commented on pull request: [1834](https://github.com/hackforla/website/pull/1834#issuecomment-872694859) at 2021-07-01 09:01 PM PDT -akibrhast,2021-07-02T15:02:42Z,- akibrhast closed issue by PR 1677: [1427](https://github.com/hackforla/website/issues/1427#event-4971958490) at 2021-07-02 08:02 AM PDT -akibrhast,2021-07-02T15:09:16Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-873069747) at 2021-07-02 08:09 AM PDT -akibrhast,2021-07-02T16:44:12Z,- akibrhast closed issue by PR 1857: [1558](https://github.com/hackforla/website/issues/1558#event-4972430744) at 2021-07-02 09:44 AM PDT -akibrhast,2021-07-02T16:58:42Z,- akibrhast closed issue by PR 1819: [1165](https://github.com/hackforla/website/issues/1165#event-4972490038) at 2021-07-02 09:58 AM PDT -akibrhast,2021-07-02T17:00:03Z,- akibrhast commented on pull request: [1852](https://github.com/hackforla/website/pull/1852#issuecomment-873135443) at 2021-07-02 10:00 AM PDT -akibrhast,2021-07-02T17:01:16Z,- akibrhast submitted pull request review: [1864](https://github.com/hackforla/website/pull/1864#pullrequestreview-698365492) at 2021-07-02 10:01 AM PDT -akibrhast,2021-07-02T17:01:21Z,- akibrhast closed issue by PR 1864: [1836](https://github.com/hackforla/website/issues/1836#event-4972501697) at 2021-07-02 10:01 AM PDT -akibrhast,2021-07-02T17:04:01Z,- akibrhast commented on pull request: [1870](https://github.com/hackforla/website/pull/1870#issuecomment-873138170) at 2021-07-02 10:04 AM PDT -akibrhast,2021-07-02T18:26:07Z,- akibrhast commented on pull request: [1870](https://github.com/hackforla/website/pull/1870#issuecomment-873180970) at 2021-07-02 11:26 AM PDT -akibrhast,2021-07-02T18:34:47Z,- akibrhast commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-873185277) at 2021-07-02 11:34 AM PDT -akibrhast,2021-07-02T18:40:15Z,- akibrhast commented on issue: [1866](https://github.com/hackforla/website/issues/1866#issuecomment-873189232) at 2021-07-02 11:40 AM PDT -akibrhast,2021-07-02T18:40:15Z,- akibrhast closed issue as completed: [1866](https://github.com/hackforla/website/issues/1866#event-4972846074) at 2021-07-02 11:40 AM PDT -akibrhast,2021-07-02T18:54:19Z,- akibrhast closed issue as completed: [1867](https://github.com/hackforla/website/issues/1867#event-4972903681) at 2021-07-02 11:54 AM PDT -akibrhast,2021-07-02T18:54:20Z,- akibrhast closed issue as completed: [1868](https://github.com/hackforla/website/issues/1868#event-4972903728) at 2021-07-02 11:54 AM PDT -akibrhast,2021-07-02T19:06:15Z,- akibrhast commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-873206003) at 2021-07-02 12:06 PM PDT -akibrhast,2021-07-03T00:03:18Z,- akibrhast commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873309830) at 2021-07-02 05:03 PM PDT -akibrhast,2021-07-03T02:04:02Z,- akibrhast commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873327647) at 2021-07-02 07:04 PM PDT -akibrhast,2021-07-03T16:35:31Z,- akibrhast opened pull request: [1885](https://github.com/hackforla/website/pull/1885) at 2021-07-03 09:35 AM PDT -akibrhast,2021-07-03T16:44:27Z,- akibrhast pull request closed w/o merging: [1885](https://github.com/hackforla/website/pull/1885#event-4974366758) at 2021-07-03 09:44 AM PDT -akibrhast,2021-07-03T16:59:14Z,- akibrhast opened pull request: [1886](https://github.com/hackforla/website/pull/1886) at 2021-07-03 09:59 AM PDT -akibrhast,2021-07-03T16:59:44Z,- akibrhast pull request closed w/o merging: [1886](https://github.com/hackforla/website/pull/1886#event-4974377556) at 2021-07-03 09:59 AM PDT -akibrhast,2021-07-04T18:36:01Z,- akibrhast submitted pull request review: [1834](https://github.com/hackforla/website/pull/1834#pullrequestreview-698699059) at 2021-07-04 11:36 AM PDT -akibrhast,2021-07-04T18:40:45Z,- akibrhast submitted pull request review: [1834](https://github.com/hackforla/website/pull/1834#pullrequestreview-698699319) at 2021-07-04 11:40 AM PDT -akibrhast,2021-07-04T18:41:01Z,- akibrhast closed issue by PR 1834: [1787](https://github.com/hackforla/website/issues/1787#event-4975396493) at 2021-07-04 11:41 AM PDT -akibrhast,2021-07-04T18:44:49Z,- akibrhast opened pull request: [1889](https://github.com/hackforla/website/pull/1889) at 2021-07-04 11:44 AM PDT -akibrhast,2021-07-04T18:45:35Z,- akibrhast pull request closed w/o merging: [1889](https://github.com/hackforla/website/pull/1889#event-4975400302) at 2021-07-04 11:45 AM PDT -akibrhast,2021-07-04T18:58:28Z,- akibrhast commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873642174) at 2021-07-04 11:58 AM PDT -akibrhast,2021-07-06T14:33:10Z,- akibrhast commented on pull request: [1883](https://github.com/hackforla/website/pull/1883#issuecomment-874814387) at 2021-07-06 07:33 AM PDT -akibrhast,2021-07-06T18:56:42Z,- akibrhast commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-875005526) at 2021-07-06 11:56 AM PDT -akibrhast,2021-07-07T20:08:51Z,- akibrhast commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-875897411) at 2021-07-07 01:08 PM PDT -akibrhast,2023-04-24T20:11:22Z,- akibrhast assigned to issue: [1273](https://github.com/hackforla/website/issues/1273#event-5096133902) at 2023-04-24 01:11 PM PDT -aksanna,3380,SKILLS ISSUE -aksanna,2022-07-17T18:10:32Z,- aksanna opened issue: [3380](https://github.com/hackforla/website/issues/3380) at 2022-07-17 11:10 AM PDT -aksanna,2022-07-17T18:45:10Z,- aksanna assigned to issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1186584915) at 2022-07-17 11:45 AM PDT -aksanna,2022-07-17T19:01:32Z,- aksanna assigned to issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1024850958) at 2022-07-17 12:01 PM PDT -aksanna,2022-07-19T18:43:47Z,- aksanna commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1189433624) at 2022-07-19 11:43 AM PDT -aksanna,2022-07-19T18:50:01Z,- aksanna commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1189438715) at 2022-07-19 11:50 AM PDT -aksanna,2022-07-19T21:41:55Z,- aksanna commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1189578657) at 2022-07-19 02:41 PM PDT -aksanna,2022-07-24T18:43:08Z,- aksanna commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1193372547) at 2022-07-24 11:43 AM PDT -aksanna,2022-09-19T16:44:06Z,- aksanna unassigned from issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1251271207) at 2022-09-19 09:44 AM PDT -alabador,7019,SKILLS ISSUE -alabador,2024-06-19T02:44:52Z,- alabador opened issue: [7019](https://github.com/hackforla/website/issues/7019) at 2024-06-18 07:44 PM PDT -alabador,2024-06-19T02:45:10Z,- alabador assigned to issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2177437684) at 2024-06-18 07:45 PM PDT -alabador,2024-06-22T08:49:23Z,- alabador assigned to issue: [7044](https://github.com/hackforla/website/issues/7044) at 2024-06-22 01:49 AM PDT -alabador,2024-06-22T08:58:48Z,- alabador commented on issue: [7044](https://github.com/hackforla/website/issues/7044#issuecomment-2183951654) at 2024-06-22 01:58 AM PDT -alabador,2024-06-22T09:02:09Z,- alabador commented on issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2183952613) at 2024-06-22 02:02 AM PDT -alabador,2024-06-24T04:25:42Z,- alabador opened pull request: [7059](https://github.com/hackforla/website/pull/7059) at 2024-06-23 09:25 PM PDT -alabador,2024-06-25T20:32:11Z,- alabador pull request merged: [7059](https://github.com/hackforla/website/pull/7059#event-13287574187) at 2024-06-25 01:32 PM PDT -alabador,2024-06-26T00:29:20Z,- alabador closed issue as completed: [7019](https://github.com/hackforla/website/issues/7019#event-13289492113) at 2024-06-25 05:29 PM PDT -alabador,2024-06-26T01:59:01Z,- alabador assigned to issue: [7061](https://github.com/hackforla/website/issues/7061#issuecomment-2185913018) at 2024-06-25 06:59 PM PDT -alabador,2024-06-26T02:01:25Z,- alabador commented on issue: [7061](https://github.com/hackforla/website/issues/7061#issuecomment-2190390047) at 2024-06-25 07:01 PM PDT -alabador,2024-06-27T09:01:58Z,- alabador opened pull request: [7070](https://github.com/hackforla/website/pull/7070) at 2024-06-27 02:01 AM PDT -alabador,2024-06-27T17:41:47Z,- alabador pull request merged: [7070](https://github.com/hackforla/website/pull/7070#event-13321057941) at 2024-06-27 10:41 AM PDT -alabador,2024-08-10T10:44:55Z,- alabador commented on pull request: [7258](https://github.com/hackforla/website/pull/7258#issuecomment-2280954615) at 2024-08-10 03:44 AM PDT -alabador,2024-08-11T23:18:13Z,- alabador submitted pull request review: [7258](https://github.com/hackforla/website/pull/7258#pullrequestreview-2231908988) at 2024-08-11 04:18 PM PDT -alabador,2024-08-13T23:52:58Z,- alabador assigned to issue: [7148](https://github.com/hackforla/website/issues/7148) at 2024-08-13 04:52 PM PDT -alabador,2024-08-14T00:03:35Z,- alabador commented on issue: [7148](https://github.com/hackforla/website/issues/7148#issuecomment-2287458360) at 2024-08-13 05:03 PM PDT -alabador,2024-08-15T07:32:16Z,- alabador commented on pull request: [7270](https://github.com/hackforla/website/pull/7270#issuecomment-2290817005) at 2024-08-15 12:32 AM PDT -alabador,2024-08-16T09:21:30Z,- alabador submitted pull request review: [7270](https://github.com/hackforla/website/pull/7270#pullrequestreview-2242305397) at 2024-08-16 02:21 AM PDT -alabador,2025-01-08T09:50:21Z,- alabador opened issue: [7819](https://github.com/hackforla/website/issues/7819) at 2025-01-08 01:50 AM PST -alabador,2025-01-10T02:06:53Z,- alabador commented on issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2581599068) at 2025-01-09 06:06 PM PST -alabador,2025-01-10T02:18:47Z,- alabador commented on issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2581609079) at 2025-01-09 06:18 PM PST -alabador,2025-01-10T02:19:52Z,- alabador commented on issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2581609926) at 2025-01-09 06:19 PM PST -alan-zambrano,3127,SKILLS ISSUE -alan-zambrano,2022-05-11T03:36:15Z,- alan-zambrano opened issue: [3127](https://github.com/hackforla/website/issues/3127) at 2022-05-10 08:36 PM PDT -alan-zambrano,2022-05-15T16:39:02Z,- alan-zambrano commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1126975759) at 2022-05-15 09:39 AM PDT -alan-zambrano,2022-05-20T00:49:51Z,- alan-zambrano assigned to issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1126975759) at 2022-05-19 05:49 PM PDT -alan-zambrano,2022-05-28T15:21:54Z,- alan-zambrano commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140282736) at 2022-05-28 08:21 AM PDT -alan-zambrano,2022-05-28T15:41:52Z,- alan-zambrano commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140285839) at 2022-05-28 08:41 AM PDT -alan-zambrano,2022-05-30T01:36:19Z,- alan-zambrano assigned to issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1046093336) at 2022-05-29 06:36 PM PDT -alan-zambrano,2022-05-30T02:20:33Z,- alan-zambrano opened pull request: [3182](https://github.com/hackforla/website/pull/3182) at 2022-05-29 07:20 PM PDT -alan-zambrano,2022-05-30T02:42:34Z,- alan-zambrano commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1140625846) at 2022-05-29 07:42 PM PDT -alan-zambrano,2022-05-30T02:43:14Z,- alan-zambrano commented on issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1140626146) at 2022-05-29 07:43 PM PDT -alan-zambrano,2022-05-31T17:57:17Z,- alan-zambrano pull request merged: [3182](https://github.com/hackforla/website/pull/3182#event-6711764652) at 2022-05-31 10:57 AM PDT -alan-zambrano,2022-06-01T01:12:11Z,- alan-zambrano closed issue as completed: [3127](https://github.com/hackforla/website/issues/3127#event-6714101694) at 2022-05-31 06:12 PM PDT -alan-zambrano,2022-06-05T20:09:42Z,- alan-zambrano assigned to issue: [3220](https://github.com/hackforla/website/issues/3220#issuecomment-1146713630) at 2022-06-05 01:09 PM PDT -alan-zambrano,2022-06-05T21:31:30Z,- alan-zambrano opened pull request: [3224](https://github.com/hackforla/website/pull/3224) at 2022-06-05 02:31 PM PDT -alan-zambrano,2022-06-05T21:40:29Z,- alan-zambrano commented on issue: [3220](https://github.com/hackforla/website/issues/3220#issuecomment-1146888148) at 2022-06-05 02:40 PM PDT -alan-zambrano,2022-06-06T02:52:29Z,- alan-zambrano submitted pull request review: [3221](https://github.com/hackforla/website/pull/3221#pullrequestreview-996099907) at 2022-06-05 07:52 PM PDT -alan-zambrano,2022-06-07T01:06:25Z,- alan-zambrano commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1148085744) at 2022-06-06 06:06 PM PDT -alan-zambrano,2022-06-15T02:27:48Z,- alan-zambrano commented on pull request: [3241](https://github.com/hackforla/website/pull/3241#issuecomment-1155911590) at 2022-06-14 07:27 PM PDT -alan-zambrano,2022-06-15T23:47:31Z,- alan-zambrano submitted pull request review: [3241](https://github.com/hackforla/website/pull/3241#pullrequestreview-1008325989) at 2022-06-15 04:47 PM PDT -alan-zambrano,2022-06-23T01:39:41Z,- alan-zambrano pull request merged: [3224](https://github.com/hackforla/website/pull/3224#event-6861961649) at 2022-06-22 06:39 PM PDT -alan-zambrano,2022-06-29T00:14:21Z,- alan-zambrano assigned to issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1151521522) at 2022-06-28 05:14 PM PDT -alan-zambrano,2022-06-29T00:18:19Z,- alan-zambrano commented on issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1169406796) at 2022-06-28 05:18 PM PDT -alan-zambrano,2022-06-29T01:38:22Z,- alan-zambrano opened pull request: [3322](https://github.com/hackforla/website/pull/3322) at 2022-06-28 06:38 PM PDT -alan-zambrano,2022-06-29T18:38:22Z,- alan-zambrano pull request merged: [3322](https://github.com/hackforla/website/pull/3322#event-6904923179) at 2022-06-29 11:38 AM PDT -alecg123,2019-10-23T01:53:34Z,- alecg123 opened issue: [162](https://github.com/hackforla/website/issues/162) at 2019-10-22 06:53 PM PDT -alecg123,2019-10-23T03:10:06Z,- alecg123 opened issue: [163](https://github.com/hackforla/website/issues/163) at 2019-10-22 08:10 PM PDT -alecg123,2019-11-25T23:51:43Z,- alecg123 assigned to issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -alecg123,2019-12-30T23:48:00Z,- alecg123 unassigned from issue: [189](https://github.com/hackforla/website/issues/189) at 2019-12-30 03:48 PM PST -alex-anakin,2020-07-24T06:36:47Z,- alex-anakin commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663369914) at 2020-07-23 11:36 PM PDT -alex-anakin,2020-11-23T22:24:58Z,- alex-anakin submitted pull request review: [812](https://github.com/hackforla/website/pull/812#pullrequestreview-536892865) at 2020-11-23 02:24 PM PST -alexandrastubbs,2020-06-14T19:27:16Z,- alexandrastubbs assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-14 12:27 PM PDT -alexandrastubbs,2020-06-21T17:39:55Z,- alexandrastubbs unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647155926) at 2020-06-21 10:39 AM PDT -alexandrastubbs,2020-06-21T18:19:26Z,- alexandrastubbs assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:19 AM PDT -alexandrastubbs,2020-06-21T19:33:35Z,- alexandrastubbs closed issue as completed: [552](https://github.com/hackforla/website/issues/552#event-3465789144) at 2020-06-21 12:33 PM PDT -alexandrastubbs,2020-06-21T19:33:37Z,- alexandrastubbs reopened issue: [552](https://github.com/hackforla/website/issues/552#event-3465789144) at 2020-06-21 12:33 PM PDT -alexandrastubbs,2020-06-25T01:47:25Z,- alexandrastubbs opened issue: [587](https://github.com/hackforla/website/issues/587) at 2020-06-24 06:47 PM PDT -alexandrastubbs,2020-06-25T01:49:44Z,- alexandrastubbs commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-649165548) at 2020-06-24 06:49 PM PDT -alexandrastubbs,2020-07-05T16:43:28Z,- alexandrastubbs assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-07-05 09:43 AM PDT -alexandrastubbs,2020-07-05T17:15:32Z,- alexandrastubbs commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653914327) at 2020-07-05 10:15 AM PDT -alexandrastubbs,2020-07-05T17:31:25Z,- alexandrastubbs closed issue as completed: [552](https://github.com/hackforla/website/issues/552#event-3513513446) at 2020-07-05 10:31 AM PDT -alexandrastubbs,2020-07-05T17:32:50Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-653916307) at 2020-07-05 10:32 AM PDT -alexandrastubbs,2020-07-05T17:48:29Z,- alexandrastubbs assigned to issue: [555](https://github.com/hackforla/website/issues/555) at 2020-07-05 10:48 AM PDT -alexandrastubbs,2020-07-05T17:56:45Z,- alexandrastubbs commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-653919084) at 2020-07-05 10:56 AM PDT -alexandrastubbs,2020-07-05T18:04:27Z,- alexandrastubbs reopened issue: [559](https://github.com/hackforla/website/issues/559#event-3495451988) at 2020-07-05 11:04 AM PDT -alexandrastubbs,2020-07-05T18:05:03Z,- alexandrastubbs commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-653919954) at 2020-07-05 11:05 AM PDT -alexandrastubbs,2020-07-05T18:34:56Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-653923171) at 2020-07-05 11:34 AM PDT -alexandrastubbs,2020-07-05T19:24:07Z,- alexandrastubbs opened issue: [594](https://github.com/hackforla/website/issues/594) at 2020-07-05 12:24 PM PDT -alexandrastubbs,2020-07-05T19:24:07Z,- alexandrastubbs assigned to issue: [594](https://github.com/hackforla/website/issues/594) at 2020-07-05 12:24 PM PDT -alexandrastubbs,2020-07-10T18:14:12Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-656813820) at 2020-07-10 11:14 AM PDT -alexandrastubbs,2020-07-10T20:17:28Z,- alexandrastubbs opened issue: [600](https://github.com/hackforla/website/issues/600) at 2020-07-10 01:17 PM PDT -alexandrastubbs,2020-07-10T20:35:29Z,- alexandrastubbs opened issue: [601](https://github.com/hackforla/website/issues/601) at 2020-07-10 01:35 PM PDT -alexandrastubbs,2020-07-10T20:35:30Z,- alexandrastubbs assigned to issue: [601](https://github.com/hackforla/website/issues/601) at 2020-07-10 01:35 PM PDT -alexandrastubbs,2020-07-10T21:02:47Z,- alexandrastubbs commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-656889338) at 2020-07-10 02:02 PM PDT -alexandrastubbs,2020-07-11T19:24:44Z,- alexandrastubbs opened issue: [602](https://github.com/hackforla/website/issues/602) at 2020-07-11 12:24 PM PDT -alexandrastubbs,2020-07-11T19:24:45Z,- alexandrastubbs assigned to issue: [602](https://github.com/hackforla/website/issues/602) at 2020-07-11 12:24 PM PDT -alexandrastubbs,2020-07-11T19:25:39Z,- alexandrastubbs commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-657116227) at 2020-07-11 12:25 PM PDT -alexandrastubbs,2020-07-11T19:40:38Z,- alexandrastubbs opened issue: [603](https://github.com/hackforla/website/issues/603) at 2020-07-11 12:40 PM PDT -alexandrastubbs,2020-07-12T15:49:30Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-657240204) at 2020-07-12 08:49 AM PDT -alexandrastubbs,2020-07-12T16:45:26Z,- alexandrastubbs commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-657247422) at 2020-07-12 09:45 AM PDT -alexandrastubbs,2020-07-12T18:08:31Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-657256312) at 2020-07-12 11:08 AM PDT -alexandrastubbs,2020-07-12T18:39:42Z,- alexandrastubbs opened issue: [605](https://github.com/hackforla/website/issues/605) at 2020-07-12 11:39 AM PDT -alexandrastubbs,2020-07-14T12:20:36Z,- alexandrastubbs opened issue: [609](https://github.com/hackforla/website/issues/609) at 2020-07-14 05:20 AM PDT -alexandrastubbs,2020-07-14T12:20:36Z,- alexandrastubbs assigned to issue: [609](https://github.com/hackforla/website/issues/609) at 2020-07-14 05:20 AM PDT -alexandrastubbs,2020-07-14T13:08:20Z,- alexandrastubbs opened issue: [610](https://github.com/hackforla/website/issues/610) at 2020-07-14 06:08 AM PDT -alexandrastubbs,2020-07-14T13:08:20Z,- alexandrastubbs assigned to issue: [610](https://github.com/hackforla/website/issues/610) at 2020-07-14 06:08 AM PDT -alexandrastubbs,2020-07-14T13:09:53Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-658169692) at 2020-07-14 06:09 AM PDT -alexandrastubbs,2020-07-14T13:42:59Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-658187005) at 2020-07-14 06:42 AM PDT -alexandrastubbs,2020-07-15T22:20:37Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659044587) at 2020-07-15 03:20 PM PDT -alexandrastubbs,2020-07-15T22:22:52Z,- alexandrastubbs assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659044587) at 2020-07-15 03:22 PM PDT -alexandrastubbs,2020-07-15T22:34:15Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659049254) at 2020-07-15 03:34 PM PDT -alexandrastubbs,2020-07-15T22:44:40Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659052634) at 2020-07-15 03:44 PM PDT -alexandrastubbs,2020-07-15T22:45:40Z,- alexandrastubbs reopened issue: [275](https://github.com/hackforla/website/issues/275#event-3550639633) at 2020-07-15 03:45 PM PDT -alexandrastubbs,2020-07-15T22:59:37Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-659057369) at 2020-07-15 03:59 PM PDT -alexandrastubbs,2020-07-15T22:59:48Z,- alexandrastubbs unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-659057369) at 2020-07-15 03:59 PM PDT -alexandrastubbs,2020-07-15T23:05:13Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-659059180) at 2020-07-15 04:05 PM PDT -alexandrastubbs,2020-07-19T16:15:05Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-660670159) at 2020-07-19 09:15 AM PDT -alexandrastubbs,2020-07-19T16:29:02Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-660672110) at 2020-07-19 09:29 AM PDT -alexandrastubbs,2020-07-19T16:37:28Z,- alexandrastubbs closed issue as completed: [600](https://github.com/hackforla/website/issues/600#event-3562815678) at 2020-07-19 09:37 AM PDT -alexandrastubbs,2020-07-19T16:37:41Z,- alexandrastubbs commented on issue: [600](https://github.com/hackforla/website/issues/600#issuecomment-660673328) at 2020-07-19 09:37 AM PDT -alexandrastubbs,2020-07-19T17:29:26Z,- alexandrastubbs commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-660680079) at 2020-07-19 10:29 AM PDT -alexandrastubbs,2020-07-19T17:32:37Z,- alexandrastubbs submitted pull request review: [612](https://github.com/hackforla/website/pull/612#pullrequestreview-451149561) at 2020-07-19 10:32 AM PDT -alexandrastubbs,2020-07-19T17:33:03Z,- alexandrastubbs closed issue as completed: [605](https://github.com/hackforla/website/issues/605#event-3562881296) at 2020-07-19 10:33 AM PDT -alexandrastubbs,2020-07-19T17:33:22Z,- alexandrastubbs commented on issue: [605](https://github.com/hackforla/website/issues/605#issuecomment-660680595) at 2020-07-19 10:33 AM PDT -alexandrastubbs,2020-07-19T17:54:06Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660683244) at 2020-07-19 10:54 AM PDT -alexandrastubbs,2020-07-19T18:15:07Z,- alexandrastubbs commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660685905) at 2020-07-19 11:15 AM PDT -alexandrastubbs,2020-07-19T19:00:19Z,- alexandrastubbs opened issue: [614](https://github.com/hackforla/website/issues/614) at 2020-07-19 12:00 PM PDT -alexandrastubbs,2020-07-19T19:00:55Z,- alexandrastubbs unassigned from issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660683244) at 2020-07-19 12:00 PM PDT -alexandrastubbs,2020-07-19T19:08:10Z,- alexandrastubbs opened issue: [615](https://github.com/hackforla/website/issues/615) at 2020-07-19 12:08 PM PDT -alexandrastubbs,2020-07-19T19:24:45Z,- alexandrastubbs opened issue: [616](https://github.com/hackforla/website/issues/616) at 2020-07-19 12:24 PM PDT -alexandrastubbs,2020-07-19T19:32:49Z,- alexandrastubbs opened issue: [617](https://github.com/hackforla/website/issues/617) at 2020-07-19 12:32 PM PDT -alexandrastubbs,2020-07-19T19:39:00Z,- alexandrastubbs opened issue: [618](https://github.com/hackforla/website/issues/618) at 2020-07-19 12:39 PM PDT -alexandrastubbs,2020-07-22T18:33:13Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-662616351) at 2020-07-22 11:33 AM PDT -alexandrastubbs,2020-07-23T14:51:30Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-663052340) at 2020-07-23 07:51 AM PDT -alexandrastubbs,2020-07-26T15:12:42Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-664000416) at 2020-07-26 08:12 AM PDT -alexandrastubbs,2020-07-26T15:16:02Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-664000789) at 2020-07-26 08:16 AM PDT -alexandrastubbs,2020-07-26T15:29:47Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-664002356) at 2020-07-26 08:29 AM PDT -alexandrastubbs,2020-07-26T16:36:45Z,- alexandrastubbs commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-664010844) at 2020-07-26 09:36 AM PDT -alexandrastubbs,2020-07-26T16:57:24Z,- alexandrastubbs commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-664013317) at 2020-07-26 09:57 AM PDT -alexandrastubbs,2020-07-26T16:59:02Z,- alexandrastubbs commented on issue: [599](https://github.com/hackforla/website/issues/599#issuecomment-664013543) at 2020-07-26 09:59 AM PDT -alexandrastubbs,2020-07-26T17:40:30Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-664018723) at 2020-07-26 10:40 AM PDT -alexandrastubbs,2020-07-26T18:32:38Z,- alexandrastubbs opened issue: [642](https://github.com/hackforla/website/issues/642) at 2020-07-26 11:32 AM PDT -alexandrastubbs,2020-07-26T18:41:36Z,- alexandrastubbs commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664025382) at 2020-07-26 11:41 AM PDT -alexandrastubbs,2020-07-26T19:16:16Z,- alexandrastubbs closed issue as completed: [506](https://github.com/hackforla/website/issues/506#event-3587334023) at 2020-07-26 12:16 PM PDT -alexandrastubbs,2020-07-26T19:24:52Z,- alexandrastubbs commented on issue: [297](https://github.com/hackforla/website/issues/297#issuecomment-664029831) at 2020-07-26 12:24 PM PDT -alexandrastubbs,2020-07-26T19:24:53Z,- alexandrastubbs closed issue as completed: [297](https://github.com/hackforla/website/issues/297#event-3587339879) at 2020-07-26 12:24 PM PDT -alexandrastubbs,2020-07-26T19:46:21Z,- alexandrastubbs commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-664031981) at 2020-07-26 12:46 PM PDT -alexandrastubbs,2020-07-26T19:57:20Z,- alexandrastubbs commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-664033017) at 2020-07-26 12:57 PM PDT -alexandrastubbs,2020-07-26T19:57:20Z,- alexandrastubbs closed issue as completed: [375](https://github.com/hackforla/website/issues/375#event-3587360960) at 2020-07-26 12:57 PM PDT -alexandrastubbs,2020-07-27T13:30:50Z,- alexandrastubbs commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-664397854) at 2020-07-27 06:30 AM PDT -alexandrastubbs,2020-07-28T19:52:31Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-665244683) at 2020-07-28 12:52 PM PDT -alexandrastubbs,2020-07-29T03:32:10Z,- alexandrastubbs unassigned from issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-662616351) at 2020-07-28 08:32 PM PDT -alexandrastubbs,2020-07-29T16:57:24Z,- alexandrastubbs opened issue: [656](https://github.com/hackforla/website/issues/656) at 2020-07-29 09:57 AM PDT -alexandrastubbs,2020-07-29T22:09:19Z,- alexandrastubbs opened issue: [658](https://github.com/hackforla/website/issues/658) at 2020-07-29 03:09 PM PDT -alexandrastubbs,2020-08-02T14:54:45Z,- alexandrastubbs opened issue: [664](https://github.com/hackforla/website/issues/664) at 2020-08-02 07:54 AM PDT -alexandrastubbs,2020-08-02T16:21:09Z,- alexandrastubbs commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-667694432) at 2020-08-02 09:21 AM PDT -alexandrastubbs,2020-08-02T16:35:44Z,- alexandrastubbs commented on issue: [607](https://github.com/hackforla/website/issues/607#issuecomment-667696154) at 2020-08-02 09:35 AM PDT -alexandrastubbs,2020-08-02T16:41:14Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-667696670) at 2020-08-02 09:41 AM PDT -alexandrastubbs,2020-08-02T16:41:45Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-667696721) at 2020-08-02 09:41 AM PDT -alexandrastubbs,2020-08-02T16:44:26Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-667697012) at 2020-08-02 09:44 AM PDT -alexandrastubbs,2020-08-02T16:49:05Z,- alexandrastubbs commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-667697574) at 2020-08-02 09:49 AM PDT -alexandrastubbs,2020-08-02T16:49:05Z,- alexandrastubbs closed issue as completed: [542](https://github.com/hackforla/website/issues/542#event-3613493236) at 2020-08-02 09:49 AM PDT -alexandrastubbs,2020-08-02T16:54:50Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-667698246) at 2020-08-02 09:54 AM PDT -alexandrastubbs,2020-08-02T17:18:36Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-667701153) at 2020-08-02 10:18 AM PDT -alexandrastubbs,2020-08-02T17:43:33Z,- alexandrastubbs commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-667703949) at 2020-08-02 10:43 AM PDT -alexandrastubbs,2020-08-02T17:53:05Z,- alexandrastubbs commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-667704984) at 2020-08-02 10:53 AM PDT -alexandrastubbs,2020-08-06T12:29:13Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-669897450) at 2020-08-06 05:29 AM PDT -alexandrastubbs,2020-08-07T18:42:18Z,- alexandrastubbs commented on issue: [601](https://github.com/hackforla/website/issues/601#issuecomment-670655903) at 2020-08-07 11:42 AM PDT -alexandrastubbs,2020-08-07T21:16:03Z,- alexandrastubbs opened issue: [674](https://github.com/hackforla/website/issues/674) at 2020-08-07 02:16 PM PDT -alexandrastubbs,2020-08-09T13:21:16Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-671051527) at 2020-08-09 06:21 AM PDT -alexandrastubbs,2020-08-09T16:41:03Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671073970) at 2020-08-09 09:41 AM PDT -alexandrastubbs,2020-08-09T16:47:18Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671074710) at 2020-08-09 09:47 AM PDT -alexandrastubbs,2020-08-09T16:55:02Z,- alexandrastubbs opened issue: [678](https://github.com/hackforla/website/issues/678) at 2020-08-09 09:55 AM PDT -alexandrastubbs,2020-08-09T17:28:04Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-671079173) at 2020-08-09 10:28 AM PDT -alexandrastubbs,2020-08-09T17:30:53Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-671079491) at 2020-08-09 10:30 AM PDT -alexandrastubbs,2020-08-09T17:35:29Z,- alexandrastubbs commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-671080002) at 2020-08-09 10:35 AM PDT -alexandrastubbs,2020-08-12T21:19:17Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673116494) at 2020-08-12 02:19 PM PDT -alexandrastubbs,2020-08-12T21:33:29Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673122179) at 2020-08-12 02:33 PM PDT -alexandrastubbs,2020-08-12T21:36:50Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-673123382) at 2020-08-12 02:36 PM PDT -alexandrastubbs,2020-08-12T21:46:06Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-673126771) at 2020-08-12 02:46 PM PDT -alexandrastubbs,2020-08-12T21:56:46Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-673130630) at 2020-08-12 02:56 PM PDT -alexandrastubbs,2020-08-16T16:19:56Z,- alexandrastubbs commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-674546549) at 2020-08-16 09:19 AM PDT -alexandrastubbs,2020-08-16T16:45:14Z,- alexandrastubbs commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674549357) at 2020-08-16 09:45 AM PDT -alexandrastubbs,2020-08-16T16:51:47Z,- alexandrastubbs commented on issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-674550034) at 2020-08-16 09:51 AM PDT -alexandrastubbs,2020-08-16T16:52:43Z,- alexandrastubbs commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-674550133) at 2020-08-16 09:52 AM PDT -alexandrastubbs,2020-08-16T18:04:47Z,- alexandrastubbs reopened issue: [555](https://github.com/hackforla/website/issues/555#event-3631282176) at 2020-08-16 11:04 AM PDT -alexandrastubbs,2020-08-16T18:07:32Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-674558319) at 2020-08-16 11:07 AM PDT -alexandrastubbs,2020-08-16T19:23:17Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-674566854) at 2020-08-16 12:23 PM PDT -alexandrastubbs,2020-08-18T16:20:14Z,- alexandrastubbs opened issue: [688](https://github.com/hackforla/website/issues/688) at 2020-08-18 09:20 AM PDT -alexandrastubbs,2020-08-18T17:02:20Z,- alexandrastubbs opened issue: [689](https://github.com/hackforla/website/issues/689) at 2020-08-18 10:02 AM PDT -alexandrastubbs,2020-08-18T17:28:55Z,- alexandrastubbs opened issue: [690](https://github.com/hackforla/website/issues/690) at 2020-08-18 10:28 AM PDT -alexandrastubbs,2020-08-18T17:35:12Z,- alexandrastubbs opened issue: [691](https://github.com/hackforla/website/issues/691) at 2020-08-18 10:35 AM PDT -alexandrastubbs,2020-08-18T17:45:48Z,- alexandrastubbs opened issue: [692](https://github.com/hackforla/website/issues/692) at 2020-08-18 10:45 AM PDT -alexandrastubbs,2020-08-18T17:46:30Z,- alexandrastubbs commented on issue: [692](https://github.com/hackforla/website/issues/692#issuecomment-675621229) at 2020-08-18 10:46 AM PDT -alexandrastubbs,2020-08-19T22:43:55Z,- alexandrastubbs commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-676786492) at 2020-08-19 03:43 PM PDT -alexandrastubbs,2020-08-19T22:59:08Z,- alexandrastubbs reopened issue: [387](https://github.com/hackforla/website/issues/387#event-3672885046) at 2020-08-19 03:59 PM PDT -alexandrastubbs,2020-08-23T16:13:12Z,- alexandrastubbs commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-678793239) at 2020-08-23 09:13 AM PDT -alexandrastubbs,2020-08-23T16:17:43Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-678793798) at 2020-08-23 09:17 AM PDT -alexandrastubbs,2020-08-23T16:27:30Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-678794954) at 2020-08-23 09:27 AM PDT -alexandrastubbs,2020-08-23T17:01:53Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-678798581) at 2020-08-23 10:01 AM PDT -alexandrastubbs,2020-08-23T17:27:26Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-678801514) at 2020-08-23 10:27 AM PDT -alexandrastubbs,2020-08-23T17:37:24Z,- alexandrastubbs commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-678802617) at 2020-08-23 10:37 AM PDT -alexandrastubbs,2020-08-23T17:49:36Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-678803944) at 2020-08-23 10:49 AM PDT -alexandrastubbs,2020-08-23T17:51:18Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-678804128) at 2020-08-23 10:51 AM PDT -alexandrastubbs,2020-08-23T17:52:20Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-678804219) at 2020-08-23 10:52 AM PDT -alexandrastubbs,2020-08-23T18:53:39Z,- alexandrastubbs opened issue: [698](https://github.com/hackforla/website/issues/698) at 2020-08-23 11:53 AM PDT -alexandrastubbs,2020-08-23T19:00:46Z,- alexandrastubbs opened issue: [700](https://github.com/hackforla/website/issues/700) at 2020-08-23 12:00 PM PDT -alexandrastubbs,2020-08-27T20:22:18Z,- alexandrastubbs opened issue: [705](https://github.com/hackforla/website/issues/705) at 2020-08-27 01:22 PM PDT -alexandrastubbs,2020-08-28T21:14:11Z,- alexandrastubbs opened issue: [708](https://github.com/hackforla/website/issues/708) at 2020-08-28 02:14 PM PDT -alexandrastubbs,2020-08-28T21:15:17Z,- alexandrastubbs commented on issue: [708](https://github.com/hackforla/website/issues/708#issuecomment-683149905) at 2020-08-28 02:15 PM PDT -alexandrastubbs,2020-08-30T12:16:13Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-683413425) at 2020-08-30 05:16 AM PDT -alexandrastubbs,2020-08-30T12:17:51Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-683413594) at 2020-08-30 05:17 AM PDT -alexandrastubbs,2020-09-10T21:15:10Z,- alexandrastubbs commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-690735651) at 2020-09-10 02:15 PM PDT -alexandrastubbs,2020-09-10T21:38:29Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-690746013) at 2020-09-10 02:38 PM PDT -alexandrastubbs,2020-09-10T21:54:44Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-690752560) at 2020-09-10 02:54 PM PDT -alexandrastubbs,2020-09-10T22:01:49Z,- alexandrastubbs commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-690755255) at 2020-09-10 03:01 PM PDT -alexandrastubbs,2020-09-10T22:06:12Z,- alexandrastubbs commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-690757045) at 2020-09-10 03:06 PM PDT -alexandrastubbs,2020-09-10T22:15:35Z,- alexandrastubbs submitted pull request review: [723](https://github.com/hackforla/website/pull/723#pullrequestreview-486347789) at 2020-09-10 03:15 PM PDT -alexandrastubbs,2020-09-10T22:15:44Z,- alexandrastubbs closed issue by PR 723: [708](https://github.com/hackforla/website/issues/708#event-3753388035) at 2020-09-10 03:15 PM PDT -alexandrastubbs,2020-09-10T23:00:47Z,- alexandrastubbs commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-690775618) at 2020-09-10 04:00 PM PDT -alexandrastubbs,2020-09-17T02:38:47Z,- alexandrastubbs commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-693773011) at 2020-09-16 07:38 PM PDT -alexandrastubbs,2020-09-17T21:26:15Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-694508499) at 2020-09-17 02:26 PM PDT -alexandrastubbs,2020-09-17T21:33:22Z,- alexandrastubbs commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-694511325) at 2020-09-17 02:33 PM PDT -alexandrastubbs,2020-09-17T21:33:36Z,- alexandrastubbs commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-694511415) at 2020-09-17 02:33 PM PDT -alexandrastubbs,2020-09-17T22:05:25Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-694523939) at 2020-09-17 03:05 PM PDT -alexandrastubbs,2020-09-17T22:08:39Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-694525263) at 2020-09-17 03:08 PM PDT -alexandrastubbs,2020-09-17T22:19:38Z,- alexandrastubbs commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-694529839) at 2020-09-17 03:19 PM PDT -alexandrastubbs,2020-09-17T22:19:48Z,- alexandrastubbs commented on issue: [690](https://github.com/hackforla/website/issues/690#issuecomment-694529905) at 2020-09-17 03:19 PM PDT -alexandrastubbs,2020-09-17T22:25:52Z,- alexandrastubbs commented on issue: [735](https://github.com/hackforla/website/issues/735#issuecomment-694532345) at 2020-09-17 03:25 PM PDT -alexandrastubbs,2020-09-17T23:32:30Z,- alexandrastubbs assigned to issue: [209](https://github.com/hackforla/website/issues/209) at 2020-09-17 04:32 PM PDT -alexandrastubbs,2020-09-18T14:09:49Z,- alexandrastubbs commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-694891191) at 2020-09-18 07:09 AM PDT -alexandrastubbs,2020-09-21T22:17:29Z,- alexandrastubbs opened issue: [743](https://github.com/hackforla/website/issues/743) at 2020-09-21 03:17 PM PDT -alexandrastubbs,2020-09-21T22:20:21Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-696409374) at 2020-09-21 03:20 PM PDT -alexandrastubbs,2020-09-21T22:20:35Z,- alexandrastubbs unassigned from issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-696409374) at 2020-09-21 03:20 PM PDT -alexandrastubbs,2020-09-21T22:23:33Z,- alexandrastubbs opened issue: [744](https://github.com/hackforla/website/issues/744) at 2020-09-21 03:23 PM PDT -alexandrastubbs,2020-09-21T22:23:47Z,- alexandrastubbs assigned to issue: [744](https://github.com/hackforla/website/issues/744) at 2020-09-21 03:23 PM PDT -alexandrastubbs,2020-09-21T22:24:48Z,- alexandrastubbs commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-696411125) at 2020-09-21 03:24 PM PDT -alexandrastubbs,2020-09-22T00:05:27Z,- alexandrastubbs opened issue: [745](https://github.com/hackforla/website/issues/745) at 2020-09-21 05:05 PM PDT -alexandrastubbs,2020-09-22T00:05:55Z,- alexandrastubbs assigned to issue: [745](https://github.com/hackforla/website/issues/745) at 2020-09-21 05:05 PM PDT -alexandrastubbs,2020-09-24T19:13:49Z,- alexandrastubbs opened issue: [747](https://github.com/hackforla/website/issues/747) at 2020-09-24 12:13 PM PDT -alexandrastubbs,2020-09-24T22:15:04Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-698616575) at 2020-09-24 03:15 PM PDT -alexandrastubbs,2020-09-24T22:28:44Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-698620994) at 2020-09-24 03:28 PM PDT -alexandrastubbs,2020-09-28T16:07:12Z,- alexandrastubbs opened issue: [754](https://github.com/hackforla/website/issues/754) at 2020-09-28 09:07 AM PDT -alexandrastubbs,2020-09-28T16:07:33Z,- alexandrastubbs assigned to issue: [754](https://github.com/hackforla/website/issues/754) at 2020-09-28 09:07 AM PDT -alexandrastubbs,2020-09-30T14:49:32Z,- alexandrastubbs commented on issue: [754](https://github.com/hackforla/website/issues/754#issuecomment-701440832) at 2020-09-30 07:49 AM PDT -alexandrastubbs,2020-09-30T18:48:08Z,- alexandrastubbs assigned to issue: [743](https://github.com/hackforla/website/issues/743) at 2020-09-30 11:48 AM PDT -alexandrastubbs,2020-09-30T19:08:31Z,- alexandrastubbs commented on issue: [743](https://github.com/hackforla/website/issues/743#issuecomment-701586730) at 2020-09-30 12:08 PM PDT -alexandrastubbs,2020-10-01T21:48:54Z,- alexandrastubbs commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-01 02:48 PM PDT -alexandrastubbs,2020-10-01T22:02:01Z,- alexandrastubbs commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-702421058) at 2020-10-01 03:02 PM PDT -alexandrastubbs,2020-10-05T01:39:22Z,- alexandrastubbs opened issue: [765](https://github.com/hackforla/website/issues/765) at 2020-10-04 06:39 PM PDT -alexandrastubbs,2020-10-07T16:15:23Z,- alexandrastubbs closed issue as completed: [754](https://github.com/hackforla/website/issues/754#event-3851404576) at 2020-10-07 09:15 AM PDT -alexandrastubbs,2020-10-07T16:16:12Z,- alexandrastubbs closed issue as completed: [743](https://github.com/hackforla/website/issues/743#event-3851408135) at 2020-10-07 09:16 AM PDT -alexandrastubbs,2020-10-07T20:37:24Z,- alexandrastubbs opened issue: [767](https://github.com/hackforla/website/issues/767) at 2020-10-07 01:37 PM PDT -alexandrastubbs,2020-10-07T20:37:31Z,- alexandrastubbs assigned to issue: [767](https://github.com/hackforla/website/issues/767) at 2020-10-07 01:37 PM PDT -alexandrastubbs,2020-10-07T23:29:19Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-705245874) at 2020-10-07 04:29 PM PDT -alexandrastubbs,2020-10-08T21:21:34Z,- alexandrastubbs commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-705830416) at 2020-10-08 02:21 PM PDT -alexandrastubbs,2020-10-08T21:51:43Z,- alexandrastubbs commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-705842895) at 2020-10-08 02:51 PM PDT -alexandrastubbs,2020-10-08T21:52:53Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-705843329) at 2020-10-08 02:52 PM PDT -alexandrastubbs,2020-10-08T22:11:56Z,- alexandrastubbs opened pull request: [768](https://github.com/hackforla/website/pull/768) at 2020-10-08 03:11 PM PDT -alexandrastubbs,2020-10-08T22:12:06Z,- alexandrastubbs pull request merged: [768](https://github.com/hackforla/website/pull/768#event-3857579355) at 2020-10-08 03:12 PM PDT -alexandrastubbs,2020-10-08T22:29:59Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-705856881) at 2020-10-08 03:29 PM PDT -alexandrastubbs,2020-10-08T22:31:35Z,- alexandrastubbs commented on issue: [739](https://github.com/hackforla/website/issues/739#issuecomment-705857406) at 2020-10-08 03:31 PM PDT -alexandrastubbs,2020-10-08T22:39:22Z,- alexandrastubbs opened pull request: [769](https://github.com/hackforla/website/pull/769) at 2020-10-08 03:39 PM PDT -alexandrastubbs,2020-10-08T22:40:05Z,- alexandrastubbs pull request merged: [769](https://github.com/hackforla/website/pull/769#event-3857647242) at 2020-10-08 03:40 PM PDT -alexandrastubbs,2020-10-08T22:41:22Z,- alexandrastubbs commented on issue: [731](https://github.com/hackforla/website/issues/731#issuecomment-705860392) at 2020-10-08 03:41 PM PDT -alexandrastubbs,2020-10-08T22:41:24Z,- alexandrastubbs closed issue as completed: [731](https://github.com/hackforla/website/issues/731#event-3857650353) at 2020-10-08 03:41 PM PDT -alexandrastubbs,2020-10-08T22:43:14Z,- alexandrastubbs closed issue as completed: [691](https://github.com/hackforla/website/issues/691#event-3857654677) at 2020-10-08 03:43 PM PDT -alexandrastubbs,2020-10-08T22:43:32Z,- alexandrastubbs commented on issue: [691](https://github.com/hackforla/website/issues/691#issuecomment-705861144) at 2020-10-08 03:43 PM PDT -alexandrastubbs,2020-10-08T22:45:29Z,- alexandrastubbs commented on issue: [744](https://github.com/hackforla/website/issues/744#issuecomment-705861810) at 2020-10-08 03:45 PM PDT -alexandrastubbs,2020-10-08T22:54:03Z,- alexandrastubbs opened pull request: [770](https://github.com/hackforla/website/pull/770) at 2020-10-08 03:54 PM PDT -alexandrastubbs,2020-10-08T22:54:22Z,- alexandrastubbs closed issue by PR 770: [730](https://github.com/hackforla/website/issues/730#event-3857679930) at 2020-10-08 03:54 PM PDT -alexandrastubbs,2020-10-08T22:54:22Z,- alexandrastubbs pull request merged: [770](https://github.com/hackforla/website/pull/770#event-3857679934) at 2020-10-08 03:54 PM PDT -alexandrastubbs,2020-10-09T19:19:44Z,- alexandrastubbs commented on issue: [744](https://github.com/hackforla/website/issues/744#issuecomment-706360425) at 2020-10-09 12:19 PM PDT -alexandrastubbs,2020-10-09T19:19:44Z,- alexandrastubbs closed issue as completed: [744](https://github.com/hackforla/website/issues/744#event-3861498089) at 2020-10-09 12:19 PM PDT -alexandrastubbs,2020-10-13T20:26:43Z,- alexandrastubbs assigned to issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-13 01:26 PM PDT -alexandrastubbs,2020-10-13T20:26:53Z,- alexandrastubbs unassigned from issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-13 01:26 PM PDT -alexandrastubbs,2020-10-15T21:15:57Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-709594775) at 2020-10-15 02:15 PM PDT -alexandrastubbs,2020-10-15T21:20:07Z,- alexandrastubbs commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-709596838) at 2020-10-15 02:20 PM PDT -alexandrastubbs,2020-10-15T21:23:42Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-709598408) at 2020-10-15 02:23 PM PDT -alexandrastubbs,2020-10-15T21:24:24Z,- alexandrastubbs commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-709598731) at 2020-10-15 02:24 PM PDT -alexandrastubbs,2020-10-15T21:26:49Z,- alexandrastubbs commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-709599833) at 2020-10-15 02:26 PM PDT -alexandrastubbs,2020-10-15T21:27:44Z,- alexandrastubbs commented on issue: [733](https://github.com/hackforla/website/issues/733#issuecomment-709600213) at 2020-10-15 02:27 PM PDT -alexandrastubbs,2020-10-15T21:28:25Z,- alexandrastubbs commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-709600502) at 2020-10-15 02:28 PM PDT -alexandrastubbs,2020-10-15T21:33:52Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-709602888) at 2020-10-15 02:33 PM PDT -alexandrastubbs,2020-10-15T21:43:26Z,- alexandrastubbs commented on pull request: [782](https://github.com/hackforla/website/pull/782#issuecomment-709606616) at 2020-10-15 02:43 PM PDT -alexandrastubbs,2020-10-15T21:53:48Z,- alexandrastubbs commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-709610467) at 2020-10-15 02:53 PM PDT -alexandrastubbs,2020-10-18T17:34:07Z,- alexandrastubbs commented on issue: [733](https://github.com/hackforla/website/issues/733#issuecomment-711318235) at 2020-10-18 10:34 AM PDT -alexandrastubbs,2020-10-18T17:34:07Z,- alexandrastubbs closed issue as completed: [733](https://github.com/hackforla/website/issues/733#event-3890463734) at 2020-10-18 10:34 AM PDT -alexandrastubbs,2020-10-18T17:43:32Z,- alexandrastubbs commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711326311) at 2020-10-18 10:43 AM PDT -alexandrastubbs,2020-10-20T01:47:02Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-712536170) at 2020-10-19 06:47 PM PDT -alexandrastubbs,2020-10-22T01:15:32Z,- alexandrastubbs commented on pull request: [792](https://github.com/hackforla/website/pull/792#issuecomment-714122152) at 2020-10-21 06:15 PM PDT -alexandrastubbs,2020-10-22T14:39:30Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-714541186) at 2020-10-22 07:39 AM PDT -alexandrastubbs,2020-10-22T21:08:34Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-714763356) at 2020-10-22 02:08 PM PDT -alexandrastubbs,2020-10-22T21:17:13Z,- alexandrastubbs commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-714767484) at 2020-10-22 02:17 PM PDT -alexandrastubbs,2020-10-22T21:19:41Z,- alexandrastubbs closed issue by PR 792: [725](https://github.com/hackforla/website/issues/725#event-3911190681) at 2020-10-22 02:19 PM PDT -alexandrastubbs,2020-10-22T21:21:31Z,- alexandrastubbs commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-714769438) at 2020-10-22 02:21 PM PDT -alexandrastubbs,2020-10-22T21:22:55Z,- alexandrastubbs commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-714770060) at 2020-10-22 02:22 PM PDT -alexandrastubbs,2020-10-22T21:28:59Z,- alexandrastubbs commented on pull request: [789](https://github.com/hackforla/website/pull/789#issuecomment-714772717) at 2020-10-22 02:28 PM PDT -alexandrastubbs,2020-10-22T21:30:09Z,- alexandrastubbs commented on pull request: [786](https://github.com/hackforla/website/pull/786#issuecomment-714773237) at 2020-10-22 02:30 PM PDT -alexandrastubbs,2020-10-22T21:32:40Z,- alexandrastubbs commented on pull request: [785](https://github.com/hackforla/website/pull/785#issuecomment-714774467) at 2020-10-22 02:32 PM PDT -alexandrastubbs,2020-10-22T21:58:05Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-714785491) at 2020-10-22 02:58 PM PDT -alexandrastubbs,2020-10-22T22:15:14Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-714792207) at 2020-10-22 03:15 PM PDT -alexandrastubbs,2020-10-22T22:16:29Z,- alexandrastubbs commented on issue: [116](https://github.com/hackforla/website/issues/116#issuecomment-714792663) at 2020-10-22 03:16 PM PDT -alexandrastubbs,2020-10-22T22:20:19Z,- alexandrastubbs commented on issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-714794251) at 2020-10-22 03:20 PM PDT -alexandrastubbs,2020-10-22T22:30:48Z,- alexandrastubbs closed issue as completed: [293](https://github.com/hackforla/website/issues/293#event-3911388236) at 2020-10-22 03:30 PM PDT -alexandrastubbs,2020-10-22T22:31:46Z,- alexandrastubbs commented on issue: [493](https://github.com/hackforla/website/issues/493#issuecomment-714798750) at 2020-10-22 03:31 PM PDT -alexandrastubbs,2020-10-22T22:31:46Z,- alexandrastubbs closed issue as completed: [493](https://github.com/hackforla/website/issues/493#event-3911390241) at 2020-10-22 03:31 PM PDT -alexandrastubbs,2020-10-22T22:32:57Z,- alexandrastubbs commented on issue: [273](https://github.com/hackforla/website/issues/273#issuecomment-714799244) at 2020-10-22 03:32 PM PDT -alexandrastubbs,2020-10-23T15:31:14Z,- alexandrastubbs opened issue: [793](https://github.com/hackforla/website/issues/793) at 2020-10-23 08:31 AM PDT -alexandrastubbs,2020-10-23T17:51:04Z,- alexandrastubbs opened issue: [794](https://github.com/hackforla/website/issues/794) at 2020-10-23 10:51 AM PDT -alexandrastubbs,2020-10-23T17:52:25Z,- alexandrastubbs commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-715488154) at 2020-10-23 10:52 AM PDT -alexandrastubbs,2020-10-23T18:22:39Z,- alexandrastubbs opened issue: [795](https://github.com/hackforla/website/issues/795) at 2020-10-23 11:22 AM PDT -alexandrastubbs,2020-10-23T18:46:10Z,- alexandrastubbs opened issue: [796](https://github.com/hackforla/website/issues/796) at 2020-10-23 11:46 AM PDT -alexandrastubbs,2020-10-23T18:49:56Z,- alexandrastubbs opened issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:49 AM PDT -alexandrastubbs,2020-10-23T18:50:23Z,- alexandrastubbs assigned to issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:50 AM PDT -alexandrastubbs,2020-10-23T18:50:30Z,- alexandrastubbs unassigned from issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:50 AM PDT -alexandrastubbs,2020-10-23T18:51:03Z,- alexandrastubbs commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-715521741) at 2020-10-23 11:51 AM PDT -alexandrastubbs,2020-10-23T18:58:29Z,- alexandrastubbs opened issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:58 AM PDT -alexandrastubbs,2020-10-23T18:58:59Z,- alexandrastubbs assigned to issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:58 AM PDT -alexandrastubbs,2020-10-23T18:59:05Z,- alexandrastubbs unassigned from issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:59 AM PDT -alexandrastubbs,2020-10-23T19:51:08Z,- alexandrastubbs opened issue: [799](https://github.com/hackforla/website/issues/799) at 2020-10-23 12:51 PM PDT -alexandrastubbs,2020-10-23T19:55:07Z,- alexandrastubbs commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-715560606) at 2020-10-23 12:55 PM PDT -alexandrastubbs,2020-10-29T21:54:00Z,- alexandrastubbs commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-10-29 02:54 PM PDT -alexandrastubbs,2020-10-29T22:02:08Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-719049614) at 2020-10-29 03:02 PM PDT -alexandrastubbs,2020-10-29T22:02:08Z,- alexandrastubbs closed issue as completed: [745](https://github.com/hackforla/website/issues/745#event-3938638616) at 2020-10-29 03:02 PM PDT -alexandrastubbs,2020-11-02T14:40:06Z,- alexandrastubbs assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-02 06:40 AM PST -alexandrastubbs,2020-11-02T14:40:16Z,- alexandrastubbs unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-02 06:40 AM PST -alexandrastubbs,2020-11-10T15:27:14Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724775184) at 2020-11-10 07:27 AM PST -alexandrastubbs,2020-11-12T22:19:05Z,- alexandrastubbs commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-726374087) at 2020-11-12 02:19 PM PST -alexandrastubbs,2020-11-12T22:21:48Z,- alexandrastubbs commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-726375214) at 2020-11-12 02:21 PM PST -alexandrastubbs,2020-11-12T22:30:43Z,- alexandrastubbs commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-726381607) at 2020-11-12 02:30 PM PST -alexandrastubbs,2020-11-12T23:31:59Z,- alexandrastubbs closed issue as completed: [601](https://github.com/hackforla/website/issues/601#event-3991115697) at 2020-11-12 03:31 PM PST -alexandrastubbs,2020-11-12T23:41:42Z,- alexandrastubbs commented on issue: [806](https://github.com/hackforla/website/issues/806#issuecomment-726409360) at 2020-11-12 03:41 PM PST -alexandrastubbs,2020-11-12T23:41:42Z,- alexandrastubbs closed issue as completed: [806](https://github.com/hackforla/website/issues/806#event-3991139034) at 2020-11-12 03:41 PM PST -alexandrastubbs,2020-11-16T21:20:16Z,- alexandrastubbs commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-728336011) at 2020-11-16 01:20 PM PST -alexandrastubbs,2020-11-20T21:47:24Z,- alexandrastubbs commented on issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2020-11-20 01:47 PM PST -alexandrastubbs,2020-11-20T21:47:48Z,- alexandrastubbs unassigned from issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2020-11-20 01:47 PM PST -alexandrastubbs,2020-11-24T16:45:04Z,- alexandrastubbs opened issue: [813](https://github.com/hackforla/website/issues/813) at 2020-11-24 08:45 AM PST -alexandrastubbs,2020-11-24T16:45:04Z,- alexandrastubbs assigned to issue: [813](https://github.com/hackforla/website/issues/813) at 2020-11-24 08:45 AM PST -alexandrastubbs,2020-11-24T16:48:52Z,- alexandrastubbs commented on issue: [813](https://github.com/hackforla/website/issues/813#issuecomment-733103078) at 2020-11-24 08:48 AM PST -alexandrastubbs,2020-11-24T16:48:52Z,- alexandrastubbs closed issue as completed: [813](https://github.com/hackforla/website/issues/813#event-4033834540) at 2020-11-24 08:48 AM PST -alexandrastubbs,2020-12-08T21:28:19Z,- alexandrastubbs unassigned from issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-693773011) at 2020-12-08 01:28 PM PST -alexandrastubbs,2020-12-08T21:51:25Z,- alexandrastubbs unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -alexandrastubbs,2021-07-26T02:41:02Z,- alexandrastubbs unassigned from issue: [609](https://github.com/hackforla/website/issues/609) at 2021-07-25 07:41 PM PDT -alexandrastubbs,2023-03-22T18:58:28Z,- alexandrastubbs closed issue as completed: [110](https://github.com/hackforla/website/issues/110#event-8820268282) at 2023-03-22 11:58 AM PDT -alexeysergeev-cm,2021-06-08T23:16:35Z,- alexeysergeev-cm assigned to issue: [1519](https://github.com/hackforla/website/issues/1519) at 2021-06-08 04:16 PM PDT -alexeysergeev-cm,2021-06-09T21:36:37Z,- alexeysergeev-cm opened pull request: [1704](https://github.com/hackforla/website/pull/1704) at 2021-06-09 02:36 PM PDT -alexeysergeev-cm,2021-06-11T19:02:24Z,- alexeysergeev-cm commented on pull request: [1704](https://github.com/hackforla/website/pull/1704#issuecomment-859781379) at 2021-06-11 12:02 PM PDT -alexeysergeev-cm,2021-06-12T03:04:38Z,- alexeysergeev-cm pull request merged: [1704](https://github.com/hackforla/website/pull/1704#event-4880737785) at 2021-06-11 08:04 PM PDT -alexeysergeev-cm,2021-06-15T03:22:11Z,- alexeysergeev-cm assigned to issue: [1693](https://github.com/hackforla/website/issues/1693) at 2021-06-14 08:22 PM PDT -alexeysergeev-cm,2021-06-21T19:09:30Z,- alexeysergeev-cm opened pull request: [1799](https://github.com/hackforla/website/pull/1799) at 2021-06-21 12:09 PM PDT -alexeysergeev-cm,2021-06-23T16:50:29Z,- alexeysergeev-cm pull request merged: [1799](https://github.com/hackforla/website/pull/1799#event-4930083302) at 2021-06-23 09:50 AM PDT -alexeysergeev-cm,2021-06-29T22:04:34Z,- alexeysergeev-cm assigned to issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-06-29 03:04 PM PDT -alexeysergeev-cm,2021-06-29T23:13:48Z,- alexeysergeev-cm opened pull request: [1860](https://github.com/hackforla/website/pull/1860) at 2021-06-29 04:13 PM PDT -alexeysergeev-cm,2021-07-01T04:59:46Z,- alexeysergeev-cm pull request merged: [1860](https://github.com/hackforla/website/pull/1860#event-4963452343) at 2021-06-30 09:59 PM PDT -alexeysergeev-cm,2021-07-06T23:53:13Z,- alexeysergeev-cm assigned to issue: [1710](https://github.com/hackforla/website/issues/1710) at 2021-07-06 04:53 PM PDT -alexeysergeev-cm,2021-07-16T04:11:15Z,- alexeysergeev-cm commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-881161909) at 2021-07-15 09:11 PM PDT -alexeysergeev-cm,2021-07-19T18:37:35Z,- alexeysergeev-cm commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-882770701) at 2021-07-19 11:37 AM PDT -alexeysergeev-cm,2021-07-20T04:04:40Z,- alexeysergeev-cm opened pull request: [1986](https://github.com/hackforla/website/pull/1986) at 2021-07-19 09:04 PM PDT -alexeysergeev-cm,2021-07-23T02:42:06Z,- alexeysergeev-cm commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-885360984) at 2021-07-22 07:42 PM PDT -alexeysergeev-cm,2021-08-06T20:13:14Z,- alexeysergeev-cm submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-724680943) at 2021-08-06 01:13 PM PDT -alexgklein,2024-01-25T23:30:12Z,- alexgklein commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1911164311) at 2024-01-25 03:30 PM PST -alexilee,2021-04-11T16:24:35Z,- alexilee commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-817333676) at 2021-04-11 09:24 AM PDT -alexilee,2021-06-02T01:50:52Z,- alexilee assigned to issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820805369) at 2021-06-01 06:50 PM PDT -alexilee,2021-06-09T01:18:34Z,- alexilee commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-857298376) at 2021-06-08 06:18 PM PDT -alexilee,2021-06-09T01:18:34Z,- alexilee commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-857298376) at 2021-06-08 06:18 PM PDT -alfredo-mejia,3054,SKILLS ISSUE -alfredo-mejia,2022-04-15T02:30:17Z,- alfredo-mejia opened issue: [3054](https://github.com/hackforla/website/issues/3054) at 2022-04-14 07:30 PM PDT -alfredo-mejia,2022-04-15T02:34:37Z,- alfredo-mejia assigned to issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1099794386) at 2022-04-14 07:34 PM PDT -alfredosumosav,2021-06-06T18:44:40Z,- alfredosumosav assigned to issue: [1690](https://github.com/hackforla/website/issues/1690) at 2021-06-06 11:44 AM PDT -alice-milmac,3379,SKILLS ISSUE -alice-milmac,2022-07-17T18:06:15Z,- alice-milmac opened issue: [3379](https://github.com/hackforla/website/issues/3379) at 2022-07-17 11:06 AM PDT -alice-milmac,2022-07-17T18:54:47Z,- alice-milmac assigned to issue: [3379](https://github.com/hackforla/website/issues/3379#issuecomment-1186584878) at 2022-07-17 11:54 AM PDT -alice-milmac,2022-07-18T21:19:26Z,- alice-milmac assigned to issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1016463768) at 2022-07-18 02:19 PM PDT -alice-milmac,2022-07-18T21:22:21Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1188324877) at 2022-07-18 02:22 PM PDT -alice-milmac,2022-07-19T20:25:24Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1189517767) at 2022-07-19 01:25 PM PDT -alice-milmac,2022-07-27T15:44:14Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1196930050) at 2022-07-27 08:44 AM PDT -alice-milmac,2022-07-27T21:43:05Z,- alice-milmac closed issue as completed: [3379](https://github.com/hackforla/website/issues/3379#event-7076720922) at 2022-07-27 02:43 PM PDT -alice-milmac,2022-08-05T14:06:02Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1206496580) at 2022-08-05 07:06 AM PDT -alice-milmac,2022-08-11T14:23:09Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1212058221) at 2022-08-11 07:23 AM PDT -alice-milmac,2022-08-18T20:48:38Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1219946633) at 2022-08-18 01:48 PM PDT -alice-milmac,2022-08-26T15:27:07Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1228636894) at 2022-08-26 08:27 AM PDT -alice-milmac,2022-08-31T21:41:00Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1233448337) at 2022-08-31 02:41 PM PDT -alice-milmac,2022-09-09T16:45:19Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1242213305) at 2022-09-09 09:45 AM PDT -alice-milmac,2022-09-12T19:30:33Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1244238421) at 2022-09-12 12:30 PM PDT -alice-milmac,2022-09-18T16:05:05Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1250338395) at 2022-09-18 09:05 AM PDT -alice-milmac,2022-09-18T18:33:24Z,- alice-milmac opened issue: [3563](https://github.com/hackforla/website/issues/3563) at 2022-09-18 11:33 AM PDT -alice-milmac,2022-09-19T21:34:20Z,- alice-milmac opened issue: [3565](https://github.com/hackforla/website/issues/3565) at 2022-09-19 02:34 PM PDT -alice-milmac,2022-09-19T21:34:20Z,- alice-milmac assigned to issue: [3565](https://github.com/hackforla/website/issues/3565) at 2022-09-19 02:34 PM PDT -alice-milmac,2022-09-19T22:08:09Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1251618215) at 2022-09-19 03:08 PM PDT -alice-milmac,2022-09-26T22:08:06Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1258693614) at 2022-09-26 03:08 PM PDT -alice-milmac,2022-09-26T22:09:49Z,- alice-milmac commented on issue: [3565](https://github.com/hackforla/website/issues/3565#issuecomment-1258694956) at 2022-09-26 03:09 PM PDT -alice-milmac,2022-09-26T22:09:49Z,- alice-milmac closed issue as completed: [3565](https://github.com/hackforla/website/issues/3565#event-7462909846) at 2022-09-26 03:09 PM PDT -alice-milmac,2022-10-03T22:20:18Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1266128385) at 2022-10-03 03:20 PM PDT -alice-milmac,2022-10-10T18:37:49Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1273682281) at 2022-10-10 11:37 AM PDT -alice-milmac,2022-10-18T22:59:49Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1283105566) at 2022-10-18 03:59 PM PDT -alice-milmac,2022-10-29T21:04:37Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1295974839) at 2022-10-29 02:04 PM PDT -alice-milmac,2022-11-29T17:30:33Z,- alice-milmac unassigned from issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1327101334) at 2022-11-29 09:30 AM PST -alice-milmac,2022-12-03T14:42:20Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1336173775) at 2022-12-03 06:42 AM PST -alice-milmac,2022-12-03T14:42:32Z,- alice-milmac assigned to issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1336173775) at 2022-12-03 06:42 AM PST -alice-milmac,2022-12-03T14:43:34Z,- alice-milmac closed issue as completed: [2705](https://github.com/hackforla/website/issues/2705#event-7946353742) at 2022-12-03 06:43 AM PST -aliibsin,2021-06-16T02:58:42Z,- aliibsin assigned to issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-06-15 07:58 PM PDT -aliibsin,2021-06-16T03:35:43Z,- aliibsin commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-862011700) at 2021-06-15 08:35 PM PDT -aliibsin,2021-06-16T03:40:14Z,- aliibsin commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-862013229) at 2021-06-15 08:40 PM PDT -aliibsin,2021-06-16T03:44:28Z,- aliibsin commented on pull request: [1731](https://github.com/hackforla/website/pull/1731#issuecomment-862014431) at 2021-06-15 08:44 PM PDT -aliibsin,2021-06-16T03:51:54Z,- aliibsin commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-862016654) at 2021-06-15 08:51 PM PDT -aliibsin,2021-06-16T03:55:19Z,- aliibsin commented on pull request: [1744](https://github.com/hackforla/website/pull/1744#issuecomment-862017666) at 2021-06-15 08:55 PM PDT -aliibsin,2021-06-16T03:57:24Z,- aliibsin commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-862018266) at 2021-06-15 08:57 PM PDT -aliibsin,2021-06-16T03:59:17Z,- aliibsin commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-862018870) at 2021-06-15 08:59 PM PDT -aliibsin,2021-06-16T04:04:46Z,- aliibsin commented on issue: [1749](https://github.com/hackforla/website/issues/1749#issuecomment-862020891) at 2021-06-15 09:04 PM PDT -aliibsin,2021-06-17T23:39:35Z,- aliibsin opened pull request: [1765](https://github.com/hackforla/website/pull/1765) at 2021-06-17 04:39 PM PDT -aliibsin,2021-06-18T02:28:39Z,- aliibsin assigned to issue: [1611](https://github.com/hackforla/website/issues/1611) at 2021-06-17 07:28 PM PDT -aliibsin,2021-06-19T00:09:38Z,- aliibsin pull request merged: [1765](https://github.com/hackforla/website/pull/1765#event-4911931727) at 2021-06-18 05:09 PM PDT -aliibsin,2021-06-19T22:19:32Z,- aliibsin opened pull request: [1790](https://github.com/hackforla/website/pull/1790) at 2021-06-19 03:19 PM PDT -aliibsin,2021-06-20T18:10:25Z,- aliibsin submitted pull request review: [1784](https://github.com/hackforla/website/pull/1784#pullrequestreview-687929388) at 2021-06-20 11:10 AM PDT -aliibsin,2021-06-23T16:51:05Z,- aliibsin pull request merged: [1790](https://github.com/hackforla/website/pull/1790#event-4930086182) at 2021-06-23 09:51 AM PDT -aliibsin,2021-06-27T08:31:16Z,- aliibsin assigned to issue: [1836](https://github.com/hackforla/website/issues/1836) at 2021-06-27 01:31 AM PDT -aliibsin,2021-06-30T04:20:55Z,- aliibsin opened pull request: [1864](https://github.com/hackforla/website/pull/1864) at 2021-06-29 09:20 PM PDT -aliibsin,2021-07-02T17:01:21Z,- aliibsin pull request merged: [1864](https://github.com/hackforla/website/pull/1864#event-4972501708) at 2021-07-02 10:01 AM PDT -aliibsin,2021-07-04T07:08:11Z,- aliibsin assigned to issue: [1877](https://github.com/hackforla/website/issues/1877) at 2021-07-04 12:08 AM PDT -aliibsin,2021-07-11T10:52:31Z,- aliibsin opened pull request: [1918](https://github.com/hackforla/website/pull/1918) at 2021-07-11 03:52 AM PDT -aliibsin,2021-07-15T22:24:08Z,- aliibsin pull request merged: [1918](https://github.com/hackforla/website/pull/1918#event-5027999921) at 2021-07-15 03:24 PM PDT -AlimurtuzaCodes,2023-06-21T06:33:06Z,- AlimurtuzaCodes commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1600261456) at 2023-06-20 11:33 PM PDT -AlimurtuzaCodes,2023-06-21T14:28:55Z,- AlimurtuzaCodes commented on issue: [4869](https://github.com/hackforla/website/issues/4869#issuecomment-1600945942) at 2023-06-21 07:28 AM PDT -allanjlopez,7520,SKILLS ISSUE -allanjlopez,2024-09-25T03:44:51Z,- allanjlopez opened issue: [7520](https://github.com/hackforla/website/issues/7520) at 2024-09-24 08:44 PM PDT -allanjlopez,2024-09-25T03:45:38Z,- allanjlopez assigned to issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2372850702) at 2024-09-24 08:45 PM PDT -allanjlopez,2024-09-25T05:52:32Z,- allanjlopez commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2373089136) at 2024-09-24 10:52 PM PDT -allanjlopez,2024-10-23T02:35:42Z,- allanjlopez commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2430704098) at 2024-10-22 07:35 PM PDT -allison-truhlar,5213,SKILLS ISSUE -allison-truhlar,2023-08-15T02:49:57Z,- allison-truhlar opened issue: [5213](https://github.com/hackforla/website/issues/5213) at 2023-08-14 07:49 PM PDT -allison-truhlar,2023-08-15T02:50:10Z,- allison-truhlar assigned to issue: [5213](https://github.com/hackforla/website/issues/5213) at 2023-08-14 07:50 PM PDT -allison-truhlar,2023-08-16T19:24:53Z,- allison-truhlar assigned to issue: [5147](https://github.com/hackforla/website/issues/5147#issuecomment-1666784480) at 2023-08-16 12:24 PM PDT -allison-truhlar,2023-08-16T19:29:54Z,- allison-truhlar commented on issue: [5147](https://github.com/hackforla/website/issues/5147#issuecomment-1681161637) at 2023-08-16 12:29 PM PDT -allison-truhlar,2023-08-16T19:32:02Z,- allison-truhlar commented on issue: [5213](https://github.com/hackforla/website/issues/5213#issuecomment-1681164030) at 2023-08-16 12:32 PM PDT -allison-truhlar,2023-08-17T14:02:58Z,- allison-truhlar opened pull request: [5243](https://github.com/hackforla/website/pull/5243) at 2023-08-17 07:02 AM PDT -allison-truhlar,2023-08-20T00:07:01Z,- allison-truhlar pull request merged: [5243](https://github.com/hackforla/website/pull/5243#event-10137207237) at 2023-08-19 05:07 PM PDT -allison-truhlar,2023-08-22T17:58:08Z,- allison-truhlar commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1688661593) at 2023-08-22 10:58 AM PDT -allison-truhlar,2023-08-22T18:55:45Z,- allison-truhlar submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1590124209) at 2023-08-22 11:55 AM PDT -allison-truhlar,2023-08-23T01:45:44Z,- allison-truhlar commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1689139280) at 2023-08-22 06:45 PM PDT -allison-truhlar,2023-08-23T02:18:58Z,- allison-truhlar commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1689161222) at 2023-08-22 07:18 PM PDT -allison-truhlar,2023-08-23T13:09:08Z,- allison-truhlar submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1591557849) at 2023-08-23 06:09 AM PDT -allison-truhlar,2023-08-23T13:54:29Z,- allison-truhlar submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1591665936) at 2023-08-23 06:54 AM PDT -allison-truhlar,2023-08-24T01:04:25Z,- allison-truhlar submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1592601766) at 2023-08-23 06:04 PM PDT -allison-truhlar,2023-08-25T12:39:18Z,- allison-truhlar commented on pull request: [5299](https://github.com/hackforla/website/pull/5299#issuecomment-1693294612) at 2023-08-25 05:39 AM PDT -allison-truhlar,2023-08-25T18:35:43Z,- allison-truhlar submitted pull request review: [5299](https://github.com/hackforla/website/pull/5299#pullrequestreview-1596306129) at 2023-08-25 11:35 AM PDT -allison-truhlar,2023-08-27T18:12:39Z,- allison-truhlar assigned to issue: [5288](https://github.com/hackforla/website/issues/5288#issuecomment-1689204246) at 2023-08-27 11:12 AM PDT -allison-truhlar,2023-08-27T18:15:02Z,- allison-truhlar commented on issue: [5288](https://github.com/hackforla/website/issues/5288#issuecomment-1694729608) at 2023-08-27 11:15 AM PDT -allison-truhlar,2023-08-28T14:10:34Z,- allison-truhlar submitted pull request review: [5299](https://github.com/hackforla/website/pull/5299#pullrequestreview-1598382180) at 2023-08-28 07:10 AM PDT -allison-truhlar,2023-08-28T14:37:16Z,- allison-truhlar opened pull request: [5327](https://github.com/hackforla/website/pull/5327) at 2023-08-28 07:37 AM PDT -allison-truhlar,2023-08-29T00:44:17Z,- allison-truhlar commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1696610387) at 2023-08-28 05:44 PM PDT -allison-truhlar,2023-08-29T05:09:04Z,- allison-truhlar pull request merged: [5327](https://github.com/hackforla/website/pull/5327#event-10216322709) at 2023-08-28 10:09 PM PDT -allison-truhlar,2023-08-29T12:58:31Z,- allison-truhlar assigned to issue: [5151](https://github.com/hackforla/website/issues/5151) at 2023-08-29 05:58 AM PDT -allison-truhlar,2023-08-29T12:59:56Z,- allison-truhlar commented on issue: [5151](https://github.com/hackforla/website/issues/5151#issuecomment-1697400082) at 2023-08-29 05:59 AM PDT -allison-truhlar,2023-08-29T21:02:36Z,- allison-truhlar commented on pull request: [5335](https://github.com/hackforla/website/pull/5335#issuecomment-1698140552) at 2023-08-29 02:02 PM PDT -allison-truhlar,2023-08-29T21:13:18Z,- allison-truhlar submitted pull request review: [5335](https://github.com/hackforla/website/pull/5335#pullrequestreview-1601291901) at 2023-08-29 02:13 PM PDT -allison-truhlar,2023-08-30T21:02:49Z,- allison-truhlar opened pull request: [5382](https://github.com/hackforla/website/pull/5382) at 2023-08-30 02:02 PM PDT -allison-truhlar,2023-09-01T16:21:48Z,- allison-truhlar pull request merged: [5382](https://github.com/hackforla/website/pull/5382#event-10259050391) at 2023-09-01 09:21 AM PDT -allison-truhlar,2023-09-05T13:31:36Z,- allison-truhlar commented on pull request: [5416](https://github.com/hackforla/website/pull/5416#issuecomment-1706629864) at 2023-09-05 06:31 AM PDT -allison-truhlar,2023-09-05T13:34:05Z,- allison-truhlar commented on pull request: [5442](https://github.com/hackforla/website/pull/5442#issuecomment-1706634326) at 2023-09-05 06:34 AM PDT -allison-truhlar,2023-09-06T13:56:56Z,- allison-truhlar commented on pull request: [5416](https://github.com/hackforla/website/pull/5416#issuecomment-1708427272) at 2023-09-06 06:56 AM PDT -allison-truhlar,2023-09-06T14:18:14Z,- allison-truhlar submitted pull request review: [5442](https://github.com/hackforla/website/pull/5442#pullrequestreview-1613460451) at 2023-09-06 07:18 AM PDT -allison-truhlar,2023-09-07T14:21:36Z,- allison-truhlar commented on pull request: [5454](https://github.com/hackforla/website/pull/5454#issuecomment-1710244039) at 2023-09-07 07:21 AM PDT -allison-truhlar,2023-09-08T13:33:48Z,- allison-truhlar submitted pull request review: [5454](https://github.com/hackforla/website/pull/5454#pullrequestreview-1617507200) at 2023-09-08 06:33 AM PDT -allison-truhlar,2023-09-08T13:52:00Z,- allison-truhlar commented on issue: [5213](https://github.com/hackforla/website/issues/5213#issuecomment-1711709703) at 2023-09-08 06:52 AM PDT -allison-truhlar,2023-09-08T13:52:00Z,- allison-truhlar closed issue as completed: [5213](https://github.com/hackforla/website/issues/5213#event-10318537306) at 2023-09-08 06:52 AM PDT -allison-truhlar,2023-09-12T20:25:33Z,- allison-truhlar submitted pull request review: [5488](https://github.com/hackforla/website/pull/5488#pullrequestreview-1623066705) at 2023-09-12 01:25 PM PDT -allison-truhlar,2023-09-12T20:45:36Z,- allison-truhlar submitted pull request review: [5503](https://github.com/hackforla/website/pull/5503#pullrequestreview-1623100199) at 2023-09-12 01:45 PM PDT -allison-truhlar,2023-09-15T14:44:55Z,- allison-truhlar assigned to issue: [5477](https://github.com/hackforla/website/issues/5477#issuecomment-1714495390) at 2023-09-15 07:44 AM PDT -allison-truhlar,2023-09-15T14:47:28Z,- allison-truhlar commented on issue: [5477](https://github.com/hackforla/website/issues/5477#issuecomment-1721403641) at 2023-09-15 07:47 AM PDT -allison-truhlar,2023-09-18T21:13:20Z,- allison-truhlar opened pull request: [5556](https://github.com/hackforla/website/pull/5556) at 2023-09-18 02:13 PM PDT -allison-truhlar,2023-09-21T06:35:52Z,- allison-truhlar pull request merged: [5556](https://github.com/hackforla/website/pull/5556#event-10430747749) at 2023-09-20 11:35 PM PDT -allison-truhlar,2023-09-26T19:36:05Z,- allison-truhlar commented on pull request: [5586](https://github.com/hackforla/website/pull/5586#issuecomment-1736171779) at 2023-09-26 12:36 PM PDT -allison-truhlar,2023-09-26T19:49:57Z,- allison-truhlar submitted pull request review: [5586](https://github.com/hackforla/website/pull/5586#pullrequestreview-1645076053) at 2023-09-26 12:49 PM PDT -allison-truhlar,2023-09-27T02:36:09Z,- allison-truhlar commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1736581764) at 2023-09-26 07:36 PM PDT -allison-truhlar,2023-09-27T02:40:22Z,- allison-truhlar commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1736584711) at 2023-09-26 07:40 PM PDT -allison-truhlar,2023-09-29T20:08:29Z,- allison-truhlar submitted pull request review: [5573](https://github.com/hackforla/website/pull/5573#pullrequestreview-1651417048) at 2023-09-29 01:08 PM PDT -allison-truhlar,2023-09-29T20:15:51Z,- allison-truhlar commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741441266) at 2023-09-29 01:15 PM PDT -allison-truhlar,2023-09-29T20:46:54Z,- allison-truhlar commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1741470533) at 2023-09-29 01:46 PM PDT -allison-truhlar,2023-10-06T14:47:54Z,- allison-truhlar commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1750808674) at 2023-10-06 07:47 AM PDT -allison-truhlar,2023-10-06T14:51:01Z,- allison-truhlar commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1750813268) at 2023-10-06 07:51 AM PDT -allison-truhlar,2023-10-06T15:13:35Z,- allison-truhlar commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1750868011) at 2023-10-06 08:13 AM PDT -allison-truhlar,2023-10-11T00:15:43Z,- allison-truhlar commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1756492740) at 2023-10-10 05:15 PM PDT -allison-truhlar,2023-10-13T20:05:55Z,- allison-truhlar submitted pull request review: [5513](https://github.com/hackforla/website/pull/5513#pullrequestreview-1677276239) at 2023-10-13 01:05 PM PDT -allison-truhlar,2023-10-13T20:07:18Z,- allison-truhlar submitted pull request review: [5513](https://github.com/hackforla/website/pull/5513#pullrequestreview-1677277633) at 2023-10-13 01:07 PM PDT -allison-truhlar,2023-10-17T18:44:47Z,- allison-truhlar commented on pull request: [5637](https://github.com/hackforla/website/pull/5637#issuecomment-1766970521) at 2023-10-17 11:44 AM PDT -allison-truhlar,2023-10-17T19:00:13Z,- allison-truhlar submitted pull request review: [5637](https://github.com/hackforla/website/pull/5637#pullrequestreview-1683151789) at 2023-10-17 12:00 PM PDT -allison-truhlar,2023-11-08T19:37:10Z,- allison-truhlar commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1802531589) at 2023-11-08 11:37 AM PST -allison-truhlar,2023-11-08T19:51:36Z,- allison-truhlar submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1721157673) at 2023-11-08 11:51 AM PST -allison-truhlar,2023-11-15T03:14:08Z,- allison-truhlar assigned to issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1809357889) at 2023-11-14 07:14 PM PST -allison-truhlar,2023-11-15T03:17:54Z,- allison-truhlar commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1811744864) at 2023-11-14 07:17 PM PST -allison-truhlar,2023-11-17T22:10:05Z,- allison-truhlar commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1817177855) at 2023-11-17 02:10 PM PST -allison-truhlar,2023-12-08T19:55:25Z,- allison-truhlar commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1847767189) at 2023-12-08 11:55 AM PST -allison-truhlar,2023-12-08T19:55:40Z,- allison-truhlar unassigned from issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1847767189) at 2023-12-08 11:55 AM PST -AllMikeNoIke,8132,SKILLS ISSUE -AllMikeNoIke,2025-05-14T02:56:16Z,- AllMikeNoIke opened issue: [8132](https://github.com/hackforla/website/issues/8132) at 2025-05-13 07:56 PM PDT -AllMikeNoIke,2025-05-14T02:56:22Z,- AllMikeNoIke assigned to issue: [8132](https://github.com/hackforla/website/issues/8132) at 2025-05-13 07:56 PM PDT -AllMikeNoIke,2025-05-14T03:13:09Z,- AllMikeNoIke commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2878508813) at 2025-05-13 08:13 PM PDT -AllMikeNoIke,2025-05-14T03:18:31Z,- AllMikeNoIke commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2878514198) at 2025-05-13 08:18 PM PDT -AllMikeNoIke,2025-05-14T03:52:35Z,- AllMikeNoIke commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2878574175) at 2025-05-13 08:52 PM PDT -AllMikeNoIke,2025-05-15T03:34:46Z,- AllMikeNoIke assigned to issue: [7953](https://github.com/hackforla/website/issues/7953) at 2025-05-14 08:34 PM PDT -AllMikeNoIke,2025-05-15T03:46:59Z,- AllMikeNoIke commented on issue: [7953](https://github.com/hackforla/website/issues/7953#issuecomment-2882155218) at 2025-05-14 08:46 PM PDT -AllMikeNoIke,2025-05-15T04:27:50Z,- AllMikeNoIke opened pull request: [8142](https://github.com/hackforla/website/pull/8142) at 2025-05-14 09:27 PM PDT -AllMikeNoIke,2025-05-16T23:07:40Z,- AllMikeNoIke pull request merged: [8142](https://github.com/hackforla/website/pull/8142#event-17695303569) at 2025-05-16 04:07 PM PDT -AllMikeNoIke,2025-05-18T18:22:01Z,- AllMikeNoIke commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2889139087) at 2025-05-18 11:22 AM PDT -AllMikeNoIke,2025-05-18T18:25:46Z,- AllMikeNoIke commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2889140602) at 2025-05-18 11:25 AM PDT -allthatyazz,2022-03-07T20:50:52Z,- allthatyazz commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1061123532) at 2022-03-07 12:50 PM PST -allthatyazz,2022-03-08T18:50:33Z,- allthatyazz commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1062095675) at 2022-03-08 10:50 AM PST -allthatyazz,2022-03-08T18:55:25Z,- allthatyazz commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1062099385) at 2022-03-08 10:55 AM PST -allthatyazz,2022-03-10T22:30:12Z,- allthatyazz commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1064573278) at 2022-03-10 02:30 PM PST -allthatyazz,2022-11-18T20:50:59Z,- allthatyazz opened issue: [3731](https://github.com/hackforla/website/issues/3731) at 2022-11-18 12:50 PM PST -allthatyazz,2022-11-18T20:54:58Z,- allthatyazz assigned to issue: [3731](https://github.com/hackforla/website/issues/3731) at 2022-11-18 12:54 PM PST -allthatyazz,2022-12-03T13:58:31Z,- allthatyazz commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1336166156) at 2022-12-03 05:58 AM PST -allthatyazz,2022-12-05T22:02:52Z,- allthatyazz commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1338233914) at 2022-12-05 02:02 PM PST -allthatyazz,2023-02-14T21:16:31Z,- allthatyazz commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1430389738) at 2023-02-14 01:16 PM PST -Alsuang,4069,SKILLS ISSUE -Alsuang,2023-03-01T04:12:00Z,- Alsuang opened issue: [4069](https://github.com/hackforla/website/issues/4069) at 2023-02-28 08:12 PM PST -Alsuang,2023-03-01T04:12:01Z,- Alsuang assigned to issue: [4069](https://github.com/hackforla/website/issues/4069) at 2023-02-28 08:12 PM PST -Alsuang,2023-03-01T19:08:48Z,- Alsuang assigned to issue: [4042](https://github.com/hackforla/website/issues/4042) at 2023-03-01 11:08 AM PST -Alsuang,2023-03-01T19:12:53Z,- Alsuang unassigned from issue: [4042](https://github.com/hackforla/website/issues/4042#issuecomment-1450711502) at 2023-03-01 11:12 AM PST -Alsuang,2023-03-01T19:14:29Z,- Alsuang assigned to issue: [3999](https://github.com/hackforla/website/issues/3999) at 2023-03-01 11:14 AM PST -Alsuang,2023-03-03T18:31:53Z,- Alsuang opened pull request: [4103](https://github.com/hackforla/website/pull/4103) at 2023-03-03 10:31 AM PST -Alsuang,2023-03-03T18:42:16Z,- Alsuang commented on issue: [3999](https://github.com/hackforla/website/issues/3999#issuecomment-1453946481) at 2023-03-03 10:42 AM PST -Alsuang,2023-03-03T18:49:36Z,- Alsuang commented on issue: [3999](https://github.com/hackforla/website/issues/3999#issuecomment-1453958736) at 2023-03-03 10:49 AM PST -Alsuang,2023-03-03T18:51:31Z,- Alsuang commented on issue: [3999](https://github.com/hackforla/website/issues/3999#issuecomment-1453961724) at 2023-03-03 10:51 AM PST -Alsuang,2023-03-07T17:19:01Z,- Alsuang opened pull request: [4125](https://github.com/hackforla/website/pull/4125) at 2023-03-07 09:19 AM PST -Alsuang,2023-03-07T17:23:12Z,- Alsuang commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1458550648) at 2023-03-07 09:23 AM PST -Alsuang,2023-03-07T18:35:17Z,- Alsuang pull request closed w/o merging: [4103](https://github.com/hackforla/website/pull/4103#event-8689178659) at 2023-03-07 10:35 AM PST -Alsuang,2023-03-07T18:50:47Z,- Alsuang pull request merged: [4125](https://github.com/hackforla/website/pull/4125#event-8689318096) at 2023-03-07 10:50 AM PST -Alsuang,2023-03-12T23:14:51Z,- Alsuang assigned to issue: [4118](https://github.com/hackforla/website/issues/4118) at 2023-03-12 04:14 PM PDT -Alsuang,2023-03-12T23:16:11Z,- Alsuang commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1465326651) at 2023-03-12 04:16 PM PDT -Alsuang,2023-03-12T23:23:41Z,- Alsuang closed issue as completed: [4069](https://github.com/hackforla/website/issues/4069#event-8726489319) at 2023-03-12 04:23 PM PDT -Alsuang,2023-03-13T16:48:23Z,- Alsuang opened pull request: [4157](https://github.com/hackforla/website/pull/4157) at 2023-03-13 09:48 AM PDT -Alsuang,2023-03-13T23:59:58Z,- Alsuang pull request merged: [4157](https://github.com/hackforla/website/pull/4157#event-8737573458) at 2023-03-13 04:59 PM PDT -amandaferrari20,2025-01-27T21:39:40Z,- amandaferrari20 commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2616952996) at 2025-01-27 01:39 PM PST -amandaferrari20,2025-01-28T13:59:40Z,- amandaferrari20 commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2619086521) at 2025-01-28 05:59 AM PST -amandaferrari20,2025-01-29T19:21:58Z,- amandaferrari20 commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2622632131) at 2025-01-29 11:21 AM PST -amandaputney,5863,SKILLS ISSUE -amandaputney,2023-11-07T03:54:23Z,- amandaputney opened issue: [5863](https://github.com/hackforla/website/issues/5863) at 2023-11-06 07:54 PM PST -amandaputney,2023-11-07T04:21:24Z,- amandaputney assigned to issue: [5863](https://github.com/hackforla/website/issues/5863) at 2023-11-06 08:21 PM PST -amandaputney,2024-02-23T22:34:15Z,- amandaputney commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-1962089282) at 2024-02-23 02:34 PM PST -amanSH39,2020-10-02T04:32:09Z,- amanSH39 opened pull request: [763](https://github.com/hackforla/website/pull/763) at 2020-10-01 09:32 PM PDT -amanSH39,2020-10-04T01:39:29Z,- amanSH39 pull request merged: [763](https://github.com/hackforla/website/pull/763#event-3837115772) at 2020-10-03 06:39 PM PDT -amanSH39,2021-09-03T14:26:00Z,- amanSH39 opened pull request: [2219](https://github.com/hackforla/website/pull/2219) at 2021-09-03 07:26 AM PDT -amanSH39,2021-09-03T17:36:50Z,- amanSH39 pull request closed w/o merging: [2219](https://github.com/hackforla/website/pull/2219#event-5254766754) at 2021-09-03 10:36 AM PDT -amanSH39,2021-09-03T19:07:50Z,- amanSH39 commented on pull request: [2219](https://github.com/hackforla/website/pull/2219#issuecomment-912751038) at 2021-09-03 12:07 PM PDT -amath95,4337,SKILLS ISSUE -amath95,2023-03-29T04:23:23Z,- amath95 opened issue: [4337](https://github.com/hackforla/website/issues/4337) at 2023-03-28 09:23 PM PDT -amath95,2023-03-29T04:33:18Z,- amath95 assigned to issue: [4337](https://github.com/hackforla/website/issues/4337#issuecomment-1487926468) at 2023-03-28 09:33 PM PDT -amath95,2023-03-30T13:23:48Z,- amath95 assigned to issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1488145925) at 2023-03-30 06:23 AM PDT -amath95,2023-03-30T13:30:05Z,- amath95 commented on issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1490309260) at 2023-03-30 06:30 AM PDT -amath95,2023-03-30T17:02:04Z,- amath95 opened pull request: [4347](https://github.com/hackforla/website/pull/4347) at 2023-03-30 10:02 AM PDT -amath95,2023-03-30T17:47:18Z,- amath95 commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490691598) at 2023-03-30 10:47 AM PDT -amath95,2023-03-30T23:23:10Z,- amath95 commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1491089023) at 2023-03-30 04:23 PM PDT -amath95,2023-03-31T01:14:13Z,- amath95 pull request merged: [4347](https://github.com/hackforla/website/pull/4347#event-8893126071) at 2023-03-30 06:14 PM PDT -amath95,2023-03-31T17:51:15Z,- amath95 assigned to issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-31 10:51 AM PDT -amath95,2023-03-31T20:40:39Z,- amath95 commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1492584247) at 2023-03-31 01:40 PM PDT -amath95,2023-03-31T20:51:51Z,- amath95 opened pull request: [4355](https://github.com/hackforla/website/pull/4355) at 2023-03-31 01:51 PM PDT -amath95,2023-03-31T21:12:48Z,- amath95 pull request closed w/o merging: [4355](https://github.com/hackforla/website/pull/4355#event-8901908017) at 2023-03-31 02:12 PM PDT -amath95,2023-03-31T21:15:14Z,- amath95 opened pull request: [4356](https://github.com/hackforla/website/pull/4356) at 2023-03-31 02:15 PM PDT -amath95,2023-04-01T21:27:46Z,- amath95 commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1493129216) at 2023-04-01 02:27 PM PDT -amath95,2023-04-02T03:54:04Z,- amath95 pull request closed w/o merging: [4356](https://github.com/hackforla/website/pull/4356#event-8905694044) at 2023-04-01 08:54 PM PDT -amath95,2023-04-02T03:54:22Z,- amath95 unassigned from issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1492584247) at 2023-04-01 08:54 PM PDT -amath95,2023-04-02T13:42:30Z,- amath95 commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1493337692) at 2023-04-02 06:42 AM PDT -amath95,2023-04-06T17:21:59Z,- amath95 assigned to issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1493383822) at 2023-04-06 10:21 AM PDT -amath95,2023-04-06T17:27:33Z,- amath95 commented on issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1499394918) at 2023-04-06 10:27 AM PDT -amath95,2023-04-06T17:42:13Z,- amath95 opened pull request: [4433](https://github.com/hackforla/website/pull/4433) at 2023-04-06 10:42 AM PDT -amath95,2023-04-06T19:53:41Z,- amath95 commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499541694) at 2023-04-06 12:53 PM PDT -amath95,2023-04-06T20:30:15Z,- amath95 commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499587386) at 2023-04-06 01:30 PM PDT -amath95,2023-04-07T04:07:25Z,- amath95 pull request merged: [4433](https://github.com/hackforla/website/pull/4433#event-8951314365) at 2023-04-06 09:07 PM PDT -amath95,2023-04-28T23:30:50Z,- amath95 assigned to issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528036945) at 2023-04-28 04:30 PM PDT -amath95,2023-04-28T23:37:07Z,- amath95 commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528207230) at 2023-04-28 04:37 PM PDT -amath95,2023-04-29T00:13:51Z,- amath95 commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528280229) at 2023-04-28 05:13 PM PDT -amath95,2023-04-30T03:27:44Z,- amath95 unassigned from issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528280229) at 2023-04-29 08:27 PM PDT -amath95,2023-05-01T14:09:15Z,- amath95 assigned to issue: [4471](https://github.com/hackforla/website/issues/4471) at 2023-05-01 07:09 AM PDT -amath95,2023-05-01T14:11:56Z,- amath95 commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1529755527) at 2023-05-01 07:11 AM PDT -amath95,2023-05-02T11:53:08Z,- amath95 closed issue as completed: [4337](https://github.com/hackforla/website/issues/4337#event-9144845290) at 2023-05-02 04:53 AM PDT -amath95,2023-05-11T17:58:54Z,- amath95 commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1544446066) at 2023-05-11 10:58 AM PDT -amath95,2023-05-12T03:15:25Z,- amath95 commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1545050534) at 2023-05-11 08:15 PM PDT -amath95,2023-05-12T03:20:28Z,- amath95 unassigned from issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1529755527) at 2023-05-11 08:20 PM PDT -Ambmoney,2020-03-04T03:30:03Z,- Ambmoney opened issue: [409](https://github.com/hackforla/website/issues/409) at 2020-03-03 07:30 PM PST -Ambmoney,2020-03-04T03:30:04Z,- Ambmoney assigned to issue: [409](https://github.com/hackforla/website/issues/409) at 2020-03-03 07:30 PM PST -Ambmoney,2020-04-07T21:53:45Z,- Ambmoney unassigned from issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610639330) at 2020-04-07 02:53 PM PDT -amejiamesinas,2023-09-28T20:45:43Z,- amejiamesinas opened issue: [5627](https://github.com/hackforla/website/issues/5627) at 2023-09-28 01:45 PM PDT -amejiamesinas,2024-02-06T16:48:34Z,- amejiamesinas commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1930335024) at 2024-02-06 08:48 AM PST -amejiamesinas,2024-03-18T23:24:46Z,- amejiamesinas opened issue: [6475](https://github.com/hackforla/website/issues/6475) at 2024-03-18 04:24 PM PDT -amejiamesinas,2024-03-28T18:52:16Z,- amejiamesinas commented on issue: [6475](https://github.com/hackforla/website/issues/6475#issuecomment-2025896976) at 2024-03-28 11:52 AM PDT -amejiamesinas,2024-06-03T23:18:23Z,- amejiamesinas commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2146282839) at 2024-06-03 04:18 PM PDT -amen-ikamba,2025-01-26T19:34:47Z,- amen-ikamba assigned to issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2504863483) at 2025-01-26 11:34 AM PST -amen-ikamba,2025-02-14T12:14:11Z,- amen-ikamba commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2659179161) at 2025-02-14 04:14 AM PST -amen-ikamba,2025-03-23T09:29:35Z,- amen-ikamba opened issue: [8017](https://github.com/hackforla/website/issues/8017) at 2025-03-23 02:29 AM PDT -amen-ikamba,2025-03-23T09:29:35Z,- amen-ikamba assigned to issue: [8017](https://github.com/hackforla/website/issues/8017) at 2025-03-23 02:29 AM PDT -amen-ikamba,2025-03-23T09:40:25Z,- amen-ikamba commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2746115991) at 2025-03-23 02:40 AM PDT -amkiani32,2021-05-21T00:52:44Z,- amkiani32 assigned to issue: [1592](https://github.com/hackforla/website/issues/1592) at 2021-05-20 05:52 PM PDT -amkiani32,2021-05-21T00:52:56Z,- amkiani32 unassigned from issue: [1592](https://github.com/hackforla/website/issues/1592) at 2021-05-20 05:52 PM PDT -ampers-and,2020-05-29T21:09:48Z,- ampers-and assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-633260770) at 2020-05-29 02:09 PM PDT -ampers-and,2020-06-07T17:31:29Z,- ampers-and unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637915401) at 2020-06-07 10:31 AM PDT -AmyMendelsohn,2021-05-04T22:56:01Z,- AmyMendelsohn assigned to issue: [1442](https://github.com/hackforla/website/issues/1442) at 2021-05-04 03:56 PM PDT -AmyMendelsohn,2021-05-10T04:50:46Z,- AmyMendelsohn commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-836168215) at 2021-05-09 09:50 PM PDT -AmyMendelsohn,2021-05-10T04:50:56Z,- AmyMendelsohn unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-836168215) at 2021-05-09 09:50 PM PDT -Anahisv23,5778,SKILLS ISSUE -Anahisv23,2023-10-25T02:51:15Z,- Anahisv23 opened issue: [5778](https://github.com/hackforla/website/issues/5778) at 2023-10-24 07:51 PM PDT -Anahisv23,2023-10-25T02:52:06Z,- Anahisv23 assigned to issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1778420161) at 2023-10-24 07:52 PM PDT -Anahisv23,2023-11-01T20:49:25Z,- Anahisv23 assigned to issue: [5762](https://github.com/hackforla/website/issues/5762) at 2023-11-01 01:49 PM PDT -Anahisv23,2023-11-01T21:47:05Z,- Anahisv23 commented on issue: [5762](https://github.com/hackforla/website/issues/5762#issuecomment-1789737798) at 2023-11-01 02:47 PM PDT -Anahisv23,2023-11-01T22:50:46Z,- Anahisv23 opened pull request: [5822](https://github.com/hackforla/website/pull/5822) at 2023-11-01 03:50 PM PDT -Anahisv23,2023-11-03T19:29:43Z,- Anahisv23 commented on pull request: [5821](https://github.com/hackforla/website/pull/5821#issuecomment-1792987854) at 2023-11-03 12:29 PM PDT -Anahisv23,2023-11-03T20:10:10Z,- Anahisv23 submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1713463097) at 2023-11-03 01:10 PM PDT -Anahisv23,2023-11-03T21:20:04Z,- Anahisv23 submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1713546387) at 2023-11-03 02:20 PM PDT -Anahisv23,2023-11-06T22:44:08Z,- Anahisv23 pull request merged: [5822](https://github.com/hackforla/website/pull/5822#event-10879522463) at 2023-11-06 02:44 PM PST -Anahisv23,2023-11-07T04:24:53Z,- Anahisv23 assigned to issue: [5804](https://github.com/hackforla/website/issues/5804) at 2023-11-06 08:24 PM PST -Anahisv23,2023-11-10T20:50:28Z,- Anahisv23 unassigned from issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1797802085) at 2023-11-10 12:50 PM PST -Anahisv23,2023-11-15T20:15:16Z,- Anahisv23 assigned to issue: [5791](https://github.com/hackforla/website/issues/5791#issuecomment-1784205101) at 2023-11-15 12:15 PM PST -Anahisv23,2023-11-15T20:26:46Z,- Anahisv23 commented on issue: [5791](https://github.com/hackforla/website/issues/5791#issuecomment-1813211242) at 2023-11-15 12:26 PM PST -Anahisv23,2023-11-16T22:09:00Z,- Anahisv23 opened pull request: [5916](https://github.com/hackforla/website/pull/5916) at 2023-11-16 02:09 PM PST -Anahisv23,2023-11-16T23:13:58Z,- Anahisv23 commented on pull request: [5912](https://github.com/hackforla/website/pull/5912#issuecomment-1815466516) at 2023-11-16 03:13 PM PST -Anahisv23,2023-11-16T23:46:54Z,- Anahisv23 submitted pull request review: [5912](https://github.com/hackforla/website/pull/5912#pullrequestreview-1735747539) at 2023-11-16 03:46 PM PST -Anahisv23,2023-11-19T07:04:14Z,- Anahisv23 pull request merged: [5916](https://github.com/hackforla/website/pull/5916#event-11003174317) at 2023-11-18 11:04 PM PST -Anahisv23,2024-01-09T21:16:37Z,- Anahisv23 assigned to issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1763833264) at 2024-01-09 01:16 PM PST -Anahisv23,2024-01-09T21:18:06Z,- Anahisv23 commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1883806836) at 2024-01-09 01:18 PM PST -Anahisv23,2024-01-10T03:36:39Z,- Anahisv23 unassigned from issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1883806836) at 2024-01-09 07:36 PM PST -Anahisv23,2024-01-10T20:36:15Z,- Anahisv23 assigned to issue: [6092](https://github.com/hackforla/website/issues/6092) at 2024-01-10 12:36 PM PST -Anahisv23,2024-01-10T21:08:11Z,- Anahisv23 commented on issue: [6092](https://github.com/hackforla/website/issues/6092#issuecomment-1885735608) at 2024-01-10 01:08 PM PST -Anahisv23,2024-01-22T21:03:18Z,- Anahisv23 assigned to issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1882701763) at 2024-01-22 01:03 PM PST -Anahisv23,2024-01-22T21:08:49Z,- Anahisv23 commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1904820250) at 2024-01-22 01:08 PM PST -Anahisv23,2024-01-24T05:45:42Z,- Anahisv23 commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907416893) at 2024-01-23 09:45 PM PST -Anahisv23,2024-01-25T03:50:22Z,- Anahisv23 opened pull request: [6158](https://github.com/hackforla/website/pull/6158) at 2024-01-24 07:50 PM PST -Anahisv23,2024-01-29T22:05:48Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915657673) at 2024-01-29 02:05 PM PST -Anahisv23,2024-01-30T00:32:14Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915829275) at 2024-01-29 04:32 PM PST -Anahisv23,2024-01-30T21:21:24Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1917914949) at 2024-01-30 01:21 PM PST -Anahisv23,2024-02-01T07:59:16Z,- Anahisv23 pull request merged: [6158](https://github.com/hackforla/website/pull/6158#event-11665938168) at 2024-01-31 11:59 PM PST -Anahisv23,2024-02-02T23:44:39Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1924911105) at 2024-02-02 03:44 PM PST -Anahisv23,2024-02-06T19:55:53Z,- Anahisv23 assigned to issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1835723375) at 2024-02-06 11:55 AM PST -Anahisv23,2024-02-06T21:09:04Z,- Anahisv23 commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1930754378) at 2024-02-06 01:09 PM PST -Anahisv23,2024-02-09T19:40:47Z,- Anahisv23 commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1936501197) at 2024-02-09 11:40 AM PST -Anahisv23,2024-02-20T22:19:44Z,- Anahisv23 submitted pull request review: [6325](https://github.com/hackforla/website/pull/6325#pullrequestreview-1891696732) at 2024-02-20 02:19 PM PST -Anahisv23,2024-02-28T18:43:02Z,- Anahisv23 unassigned from issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1956064666) at 2024-02-28 10:43 AM PST -Anahisv23,2024-02-29T02:13:04Z,- Anahisv23 commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1970272198) at 2024-02-28 06:13 PM PST -Anahisv23,2024-02-29T02:54:00Z,- Anahisv23 commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1970305466) at 2024-02-28 06:54 PM PST -Anahisv23,2024-02-29T02:56:13Z,- Anahisv23 commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1970307010) at 2024-02-28 06:56 PM PST -Anahisv23,2024-03-01T00:33:36Z,- Anahisv23 commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1972218039) at 2024-02-29 04:33 PM PST -Anahisv23,2024-03-01T00:33:55Z,- Anahisv23 submitted pull request review: [6388](https://github.com/hackforla/website/pull/6388#pullrequestreview-1910100993) at 2024-02-29 04:33 PM PST -Anahisv23,2024-03-13T00:09:03Z,- Anahisv23 assigned to issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1955364698) at 2024-03-12 05:09 PM PDT -Anahisv23,2024-03-13T00:14:22Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1992791085) at 2024-03-12 05:14 PM PDT -Anahisv23,2024-03-16T00:01:26Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2000710564) at 2024-03-15 05:01 PM PDT -Anahisv23,2024-03-20T21:12:18Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2010648579) at 2024-03-20 02:12 PM PDT -Anahisv23,2024-03-31T18:22:56Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2028856669) at 2024-03-31 11:22 AM PDT -Anahisv23,2024-04-10T21:46:54Z,- Anahisv23 commented on pull request: [6612](https://github.com/hackforla/website/pull/6612#issuecomment-2048490340) at 2024-04-10 02:46 PM PDT -Anahisv23,2024-04-10T22:19:08Z,- Anahisv23 submitted pull request review: [6612](https://github.com/hackforla/website/pull/6612#pullrequestreview-1992774245) at 2024-04-10 03:19 PM PDT -Anahisv23,2024-04-24T22:50:30Z,- Anahisv23 opened pull request: [6747](https://github.com/hackforla/website/pull/6747) at 2024-04-24 03:50 PM PDT -Anahisv23,2024-04-28T18:29:35Z,- Anahisv23 commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2081589559) at 2024-04-28 11:29 AM PDT -Anahisv23,2024-04-29T20:28:00Z,- Anahisv23 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2029565395) at 2024-04-29 01:28 PM PDT -Anahisv23,2024-04-30T22:15:11Z,- Anahisv23 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2032655313) at 2024-04-30 03:15 PM PDT -Anahisv23,2024-05-07T20:35:19Z,- Anahisv23 commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2099264130) at 2024-05-07 01:35 PM PDT -Anahisv23,2024-05-08T23:55:41Z,- Anahisv23 submitted pull request review: [6806](https://github.com/hackforla/website/pull/6806#pullrequestreview-2046937328) at 2024-05-08 04:55 PM PDT -Anahisv23,2024-05-13T20:33:51Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2108751698) at 2024-05-13 01:33 PM PDT -Anahisv23,2024-05-16T21:28:40Z,- Anahisv23 submitted pull request review: [6806](https://github.com/hackforla/website/pull/6806#pullrequestreview-2061921868) at 2024-05-16 02:28 PM PDT -Anahisv23,2024-05-18T03:21:25Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2118619029) at 2024-05-17 08:21 PM PDT -Anahisv23,2024-05-21T00:30:59Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2121483019) at 2024-05-20 05:30 PM PDT -Anahisv23,2024-05-23T20:17:54Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2127950322) at 2024-05-23 01:17 PM PDT -Anahisv23,2024-06-01T04:40:51Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2143288880) at 2024-05-31 09:40 PM PDT -Anahisv23,2024-06-04T21:25:27Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2148441986) at 2024-06-04 02:25 PM PDT -Anahisv23,2024-06-07T21:18:14Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2155565761) at 2024-06-07 02:18 PM PDT -Anahisv23,2024-06-11T22:52:01Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2161728632) at 2024-06-11 03:52 PM PDT -Anahisv23,2024-06-12T21:14:21Z,- Anahisv23 commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163913316) at 2024-06-12 02:14 PM PDT -Anahisv23,2024-06-12T21:51:56Z,- Anahisv23 commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163963102) at 2024-06-12 02:51 PM PDT -Anahisv23,2024-06-12T22:09:01Z,- Anahisv23 commented on pull request: [6992](https://github.com/hackforla/website/pull/6992#issuecomment-2163982950) at 2024-06-12 03:09 PM PDT -Anahisv23,2024-06-12T22:25:18Z,- Anahisv23 submitted pull request review: [6992](https://github.com/hackforla/website/pull/6992#pullrequestreview-2114328383) at 2024-06-12 03:25 PM PDT -Anahisv23,2024-06-13T21:24:18Z,- Anahisv23 submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2117059542) at 2024-06-13 02:24 PM PDT -Anahisv23,2024-06-14T04:43:45Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2167200791) at 2024-06-13 09:43 PM PDT -Anahisv23,2024-06-14T21:47:10Z,- Anahisv23 commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2168804633) at 2024-06-14 02:47 PM PDT -Anahisv23,2024-06-19T21:35:16Z,- Anahisv23 commented on pull request: [7037](https://github.com/hackforla/website/pull/7037#issuecomment-2179484058) at 2024-06-19 02:35 PM PDT -Anahisv23,2024-06-19T21:47:55Z,- Anahisv23 submitted pull request review: [7037](https://github.com/hackforla/website/pull/7037#pullrequestreview-2129075685) at 2024-06-19 02:47 PM PDT -Anahisv23,2024-06-19T21:50:17Z,- Anahisv23 commented on pull request: [7017](https://github.com/hackforla/website/pull/7017#issuecomment-2179497594) at 2024-06-19 02:50 PM PDT -Anahisv23,2024-06-19T21:58:16Z,- Anahisv23 submitted pull request review: [7017](https://github.com/hackforla/website/pull/7017#pullrequestreview-2129081884) at 2024-06-19 02:58 PM PDT -Anahisv23,2024-06-19T22:01:52Z,- Anahisv23 commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2179506328) at 2024-06-19 03:01 PM PDT -Anahisv23,2024-06-19T22:04:57Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2179508804) at 2024-06-19 03:04 PM PDT -Anahisv23,2024-06-26T20:33:53Z,- Anahisv23 commented on pull request: [7065](https://github.com/hackforla/website/pull/7065#issuecomment-2192577350) at 2024-06-26 01:33 PM PDT -Anahisv23,2024-06-26T20:52:05Z,- Anahisv23 submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2142947999) at 2024-06-26 01:52 PM PDT -Anahisv23,2024-06-26T21:01:07Z,- Anahisv23 commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2192619991) at 2024-06-26 02:01 PM PDT -Anahisv23,2024-06-26T21:03:57Z,- Anahisv23 submitted pull request review: [7067](https://github.com/hackforla/website/pull/7067#pullrequestreview-2142969859) at 2024-06-26 02:03 PM PDT -Anahisv23,2024-06-26T21:43:28Z,- Anahisv23 commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192675349) at 2024-06-26 02:43 PM PDT -Anahisv23,2024-06-26T21:52:25Z,- Anahisv23 submitted pull request review: [7068](https://github.com/hackforla/website/pull/7068#pullrequestreview-2143036343) at 2024-06-26 02:52 PM PDT -Anahisv23,2024-06-26T21:56:18Z,- Anahisv23 commented on pull request: [7069](https://github.com/hackforla/website/pull/7069#issuecomment-2192691336) at 2024-06-26 02:56 PM PDT -Anahisv23,2024-06-26T22:03:03Z,- Anahisv23 submitted pull request review: [7069](https://github.com/hackforla/website/pull/7069#pullrequestreview-2143049275) at 2024-06-26 03:03 PM PDT -Anahisv23,2024-06-26T22:23:54Z,- Anahisv23 commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192719337) at 2024-06-26 03:23 PM PDT -Anahisv23,2024-06-26T23:28:51Z,- Anahisv23 submitted pull request review: [7068](https://github.com/hackforla/website/pull/7068#pullrequestreview-2143135721) at 2024-06-26 04:28 PM PDT -Anahisv23,2024-08-07T20:59:42Z,- Anahisv23 commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2274337850) at 2024-08-07 01:59 PM PDT -Anahisv23,2024-08-07T21:25:35Z,- Anahisv23 submitted pull request review: [7234](https://github.com/hackforla/website/pull/7234#pullrequestreview-2226224797) at 2024-08-07 02:25 PM PDT -Anahisv23,2024-08-07T21:29:29Z,- Anahisv23 commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2274382097) at 2024-08-07 02:29 PM PDT -Anahisv23,2024-08-07T21:29:40Z,- Anahisv23 commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2274382348) at 2024-08-07 02:29 PM PDT -Anahisv23,2024-08-07T21:31:24Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274385252) at 2024-08-07 02:31 PM PDT -Anahisv23,2024-08-07T22:00:14Z,- Anahisv23 submitted pull request review: [7235](https://github.com/hackforla/website/pull/7235#pullrequestreview-2226269397) at 2024-08-07 03:00 PM PDT -Anahisv23,2024-08-07T22:50:02Z,- Anahisv23 submitted pull request review: [7229](https://github.com/hackforla/website/pull/7229#pullrequestreview-2226319693) at 2024-08-07 03:50 PM PDT -Anahisv23,2024-08-07T23:01:07Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274488835) at 2024-08-07 04:01 PM PDT -Anahisv23,2024-08-07T23:19:32Z,- Anahisv23 submitted pull request review: [7229](https://github.com/hackforla/website/pull/7229#pullrequestreview-2226342947) at 2024-08-07 04:19 PM PDT -Anahisv23,2024-08-07T23:54:39Z,- Anahisv23 submitted pull request review: [7230](https://github.com/hackforla/website/pull/7230#pullrequestreview-2226382829) at 2024-08-07 04:54 PM PDT -Anahisv23,2024-08-07T23:59:40Z,- Anahisv23 commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2274553284) at 2024-08-07 04:59 PM PDT -Anahisv23,2024-08-08T02:10:21Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274807093) at 2024-08-07 07:10 PM PDT -Anahisv23,2024-08-08T03:24:33Z,- Anahisv23 commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2274879420) at 2024-08-07 08:24 PM PDT -Anahisv23,2024-08-08T04:13:31Z,- Anahisv23 submitted pull request review: [7244](https://github.com/hackforla/website/pull/7244#pullrequestreview-2226825828) at 2024-08-07 09:13 PM PDT -Anahisv23,2024-08-08T07:21:26Z,- Anahisv23 submitted pull request review: [7244](https://github.com/hackforla/website/pull/7244#pullrequestreview-2227059731) at 2024-08-08 12:21 AM PDT -Anahisv23,2024-08-08T21:04:09Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2276648724) at 2024-08-08 02:04 PM PDT -Anahisv23,2024-08-08T21:30:19Z,- Anahisv23 submitted pull request review: [7243](https://github.com/hackforla/website/pull/7243#pullrequestreview-2228900529) at 2024-08-08 02:30 PM PDT -Anahisv23,2024-08-08T21:54:25Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2276733416) at 2024-08-08 02:54 PM PDT -Anahisv23,2024-08-14T19:46:21Z,- Anahisv23 commented on pull request: [7285](https://github.com/hackforla/website/pull/7285#issuecomment-2289739992) at 2024-08-14 12:46 PM PDT -Anahisv23,2024-08-14T21:15:34Z,- Anahisv23 submitted pull request review: [7285](https://github.com/hackforla/website/pull/7285#pullrequestreview-2239211866) at 2024-08-14 02:15 PM PDT -Anahisv23,2024-08-15T17:12:06Z,- Anahisv23 commented on pull request: [7293](https://github.com/hackforla/website/pull/7293#issuecomment-2291744162) at 2024-08-15 10:12 AM PDT -Anahisv23,2024-08-15T20:44:59Z,- Anahisv23 submitted pull request review: [7293](https://github.com/hackforla/website/pull/7293#pullrequestreview-2241295981) at 2024-08-15 01:44 PM PDT -Anahisv23,2024-08-21T20:53:09Z,- Anahisv23 commented on pull request: [7328](https://github.com/hackforla/website/pull/7328#issuecomment-2302994203) at 2024-08-21 01:53 PM PDT -Anahisv23,2024-08-21T21:12:54Z,- Anahisv23 submitted pull request review: [7328](https://github.com/hackforla/website/pull/7328#pullrequestreview-2251954447) at 2024-08-21 02:12 PM PDT -Andan-Eddy,2021-08-16T16:54:04Z,- Andan-Eddy opened issue: [2122](https://github.com/hackforla/website/issues/2122) at 2021-08-16 09:54 AM PDT -Andan-Eddy,2021-08-16T16:58:05Z,- Andan-Eddy commented on issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-08-16 09:58 AM PDT -Andan-Eddy,2021-08-16T18:52:53Z,- Andan-Eddy assigned to issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-08-16 11:52 AM PDT -Andan-Eddy,2021-09-07T00:11:34Z,- Andan-Eddy unassigned from issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-09-06 05:11 PM PDT -andrea264,8098,SKILLS ISSUE -andrea264,2025-04-29T03:16:33Z,- andrea264 opened issue: [8098](https://github.com/hackforla/website/issues/8098) at 2025-04-28 08:16 PM PDT -andrea264,2025-04-29T03:16:48Z,- andrea264 assigned to issue: [8098](https://github.com/hackforla/website/issues/8098#issuecomment-2837327307) at 2025-04-28 08:16 PM PDT -andyarensman,3970,SKILLS ISSUE -andyarensman,2023-02-14T04:12:48Z,- andyarensman opened issue: [3970](https://github.com/hackforla/website/issues/3970) at 2023-02-13 08:12 PM PST -andyarensman,2023-02-14T04:13:24Z,- andyarensman assigned to issue: [3970](https://github.com/hackforla/website/issues/3970) at 2023-02-13 08:13 PM PST -andyarensman,2023-02-27T18:58:41Z,- andyarensman commented on issue: [3970](https://github.com/hackforla/website/issues/3970#issuecomment-1446885879) at 2023-02-27 10:58 AM PST -andyarensman,2023-03-17T18:54:18Z,- andyarensman commented on issue: [3970](https://github.com/hackforla/website/issues/3970#issuecomment-1474273993) at 2023-03-17 11:54 AM PDT -andyarensman,2023-03-17T18:54:18Z,- andyarensman closed issue as completed: [3970](https://github.com/hackforla/website/issues/3970#event-8781540531) at 2023-03-17 11:54 AM PDT -AndyB909,4617,SKILLS ISSUE -AndyB909,2023-05-09T03:27:44Z,- AndyB909 opened issue: [4617](https://github.com/hackforla/website/issues/4617) at 2023-05-08 08:27 PM PDT -AndyB909,2023-05-09T03:52:54Z,- AndyB909 assigned to issue: [4617](https://github.com/hackforla/website/issues/4617) at 2023-05-08 08:52 PM PDT -AndyB909,2023-05-29T05:36:41Z,- AndyB909 commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1566577829) at 2023-05-28 10:36 PM PDT -andyphancode,6875,SKILLS ISSUE -andyphancode,2024-05-22T02:45:13Z,- andyphancode opened issue: [6875](https://github.com/hackforla/website/issues/6875) at 2024-05-21 07:45 PM PDT -andyphancode,2024-05-22T02:45:23Z,- andyphancode assigned to issue: [6875](https://github.com/hackforla/website/issues/6875) at 2024-05-21 07:45 PM PDT -andyphancode,2024-05-29T00:15:19Z,- andyphancode assigned to issue: [6735](https://github.com/hackforla/website/issues/6735) at 2024-05-28 05:15 PM PDT -andyphancode,2024-05-29T00:23:50Z,- andyphancode commented on issue: [6735](https://github.com/hackforla/website/issues/6735#issuecomment-2136307621) at 2024-05-28 05:23 PM PDT -andyphancode,2024-05-29T00:25:50Z,- andyphancode commented on issue: [6875](https://github.com/hackforla/website/issues/6875#issuecomment-2136309109) at 2024-05-28 05:25 PM PDT -andyphancode,2024-05-30T03:02:55Z,- andyphancode opened pull request: [6913](https://github.com/hackforla/website/pull/6913) at 2024-05-29 08:02 PM PDT -andyphancode,2024-05-30T04:10:19Z,- andyphancode commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2138639836) at 2024-05-29 09:10 PM PDT -andyphancode,2024-05-31T19:49:29Z,- andyphancode pull request merged: [6913](https://github.com/hackforla/website/pull/6913#event-13005179211) at 2024-05-31 12:49 PM PDT -andyphancode,2024-06-03T09:33:57Z,- andyphancode assigned to issue: [6798](https://github.com/hackforla/website/issues/6798#issuecomment-2138317573) at 2024-06-03 02:33 AM PDT -andyphancode,2024-06-03T09:35:54Z,- andyphancode commented on issue: [6798](https://github.com/hackforla/website/issues/6798#issuecomment-2144736754) at 2024-06-03 02:35 AM PDT -andyphancode,2024-06-04T03:33:25Z,- andyphancode opened pull request: [6958](https://github.com/hackforla/website/pull/6958) at 2024-06-03 08:33 PM PDT -andyphancode,2024-06-06T03:59:30Z,- andyphancode assigned to issue: [6185](https://github.com/hackforla/website/issues/6185#issuecomment-1921676465) at 2024-06-05 08:59 PM PDT -andyphancode,2024-06-06T04:01:35Z,- andyphancode commented on issue: [6185](https://github.com/hackforla/website/issues/6185#issuecomment-2151367729) at 2024-06-05 09:01 PM PDT -andyphancode,2024-06-06T16:47:05Z,- andyphancode pull request merged: [6958](https://github.com/hackforla/website/pull/6958#event-13069616928) at 2024-06-06 09:47 AM PDT -andyphancode,2024-06-08T04:56:25Z,- andyphancode opened pull request: [6974](https://github.com/hackforla/website/pull/6974) at 2024-06-07 09:56 PM PDT -andyphancode,2024-06-09T01:40:02Z,- andyphancode commented on issue: [6185](https://github.com/hackforla/website/issues/6185#issuecomment-2156263112) at 2024-06-08 06:40 PM PDT -andyphancode,2024-06-12T00:40:09Z,- andyphancode commented on pull request: [6974](https://github.com/hackforla/website/pull/6974#issuecomment-2161850829) at 2024-06-11 05:40 PM PDT -andyphancode,2024-06-12T00:51:58Z,- andyphancode commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2161860192) at 2024-06-11 05:51 PM PDT -andyphancode,2024-06-12T01:14:36Z,- andyphancode submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2111710299) at 2024-06-11 06:14 PM PDT -andyphancode,2024-06-12T01:55:57Z,- andyphancode pull request merged: [6974](https://github.com/hackforla/website/pull/6974#event-13124721138) at 2024-06-11 06:55 PM PDT -andyphancode,2024-06-12T02:29:42Z,- andyphancode commented on pull request: [3804](https://github.com/hackforla/website/pull/3804#issuecomment-2161986205) at 2024-06-11 07:29 PM PDT -andyphancode,2024-06-12T22:44:59Z,- andyphancode commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2164018673) at 2024-06-12 03:44 PM PDT -andyphancode,2024-06-12T22:55:34Z,- andyphancode submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2114357334) at 2024-06-12 03:55 PM PDT -andyphancode,2024-06-13T23:44:22Z,- andyphancode submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2117189088) at 2024-06-13 04:44 PM PDT -andyphancode,2024-06-16T05:36:27Z,- andyphancode assigned to issue: [6979](https://github.com/hackforla/website/issues/6979#issuecomment-2157341994) at 2024-06-15 10:36 PM PDT -andyphancode,2024-06-16T05:37:13Z,- andyphancode commented on issue: [6979](https://github.com/hackforla/website/issues/6979#issuecomment-2171059990) at 2024-06-15 10:37 PM PDT -andyphancode,2024-06-17T08:07:32Z,- andyphancode commented on issue: [6979](https://github.com/hackforla/website/issues/6979#issuecomment-2172580859) at 2024-06-17 01:07 AM PDT -andyphancode,2024-06-25T22:49:30Z,- andyphancode commented on pull request: [7057](https://github.com/hackforla/website/pull/7057#issuecomment-2190127525) at 2024-06-25 03:49 PM PDT -andyphancode,2024-06-25T23:15:34Z,- andyphancode submitted pull request review: [7057](https://github.com/hackforla/website/pull/7057#pullrequestreview-2140106212) at 2024-06-25 04:15 PM PDT -andyphancode,2024-08-08T23:40:53Z,- andyphancode commented on issue: [6875](https://github.com/hackforla/website/issues/6875#issuecomment-2276886923) at 2024-08-08 04:40 PM PDT -andyphancode,2024-08-08T23:41:49Z,- andyphancode closed issue as completed: [6875](https://github.com/hackforla/website/issues/6875#event-13813943101) at 2024-08-08 04:41 PM PDT -andyphancode,2024-08-30T21:49:21Z,- andyphancode commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2322384986) at 2024-08-30 02:49 PM PDT -andyphancode,2024-08-30T22:09:16Z,- andyphancode commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2322426168) at 2024-08-30 03:09 PM PDT -andyphancode,2024-09-01T08:53:01Z,- andyphancode submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2274246222) at 2024-09-01 01:53 AM PDT -andyvu923,8028,SKILLS ISSUE -andyvu923,2025-04-01T02:43:14Z,- andyvu923 opened issue: [8028](https://github.com/hackforla/website/issues/8028) at 2025-03-31 07:43 PM PDT -andyvu923,2025-04-01T02:44:48Z,- andyvu923 assigned to issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2767910137) at 2025-03-31 07:44 PM PDT -andyvu923,2025-04-01T03:04:19Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2767941878) at 2025-03-31 08:04 PM PDT -andyvu923,2025-04-02T08:24:39Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2771786190) at 2025-04-02 01:24 AM PDT -andyvu923,2025-04-09T02:24:56Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2788124905) at 2025-04-08 07:24 PM PDT -andyvu923,2025-04-09T02:40:36Z,- andyvu923 assigned to issue: [7482](https://github.com/hackforla/website/issues/7482#issuecomment-2784778833) at 2025-04-08 07:40 PM PDT -andyvu923,2025-04-09T03:13:52Z,- andyvu923 opened pull request: [8056](https://github.com/hackforla/website/pull/8056) at 2025-04-08 08:13 PM PDT -andyvu923,2025-04-09T03:13:52Z,- andyvu923 opened pull request: [8056](https://github.com/hackforla/website/pull/8056) at 2025-04-08 08:13 PM PDT -andyvu923,2025-04-09T03:18:20Z,- andyvu923 commented on issue: [7482](https://github.com/hackforla/website/issues/7482#issuecomment-2788179006) at 2025-04-08 08:18 PM PDT -andyvu923,2025-04-09T03:27:11Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2788187371) at 2025-04-08 08:27 PM PDT -andyvu923,2025-04-11T21:19:10Z,- andyvu923 pull request merged: [8056](https://github.com/hackforla/website/pull/8056#event-17230623006) at 2025-04-11 02:19 PM PDT -andyvu923,2025-04-11T21:19:10Z,- andyvu923 pull request merged: [8056](https://github.com/hackforla/website/pull/8056#event-17230623006) at 2025-04-11 02:19 PM PDT -andyvu923,2025-04-12T06:12:22Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2798518017) at 2025-04-11 11:12 PM PDT -andyvu923,2025-04-12T06:13:13Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2798518316) at 2025-04-11 11:13 PM PDT -andyvu923,2025-04-12T06:21:10Z,- andyvu923 assigned to issue: [7550](https://github.com/hackforla/website/issues/7550) at 2025-04-11 11:21 PM PDT -andyvu923,2025-04-12T06:24:04Z,- andyvu923 commented on issue: [7550](https://github.com/hackforla/website/issues/7550#issuecomment-2798522339) at 2025-04-11 11:24 PM PDT -andyvu923,2025-04-12T06:43:24Z,- andyvu923 opened pull request: [8059](https://github.com/hackforla/website/pull/8059) at 2025-04-11 11:43 PM PDT -andyvu923,2025-04-12T06:51:19Z,- andyvu923 commented on issue: [7550](https://github.com/hackforla/website/issues/7550#issuecomment-2798685326) at 2025-04-11 11:51 PM PDT -andyvu923,2025-04-12T06:51:39Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2798685529) at 2025-04-11 11:51 PM PDT -andyvu923,2025-04-16T02:20:21Z,- andyvu923 commented on pull request: [8060](https://github.com/hackforla/website/pull/8060#issuecomment-2808035447) at 2025-04-15 07:20 PM PDT -andyvu923,2025-04-16T02:37:42Z,- andyvu923 pull request merged: [8059](https://github.com/hackforla/website/pull/8059#event-17280092974) at 2025-04-15 07:37 PM PDT -andyvu923,2025-04-16T02:48:37Z,- andyvu923 reopened pull request: [8059](https://github.com/hackforla/website/pull/8059#event-17280092974) at 2025-04-15 07:48 PM PDT -andyvu923,2025-04-16T03:02:02Z,- andyvu923 submitted pull request review: [8060](https://github.com/hackforla/website/pull/8060#pullrequestreview-2770517557) at 2025-04-15 08:02 PM PDT -andyvu923,2025-04-16T03:05:23Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2808106519) at 2025-04-15 08:05 PM PDT -andyvu923,2025-04-16T03:17:08Z,- andyvu923 commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2808120030) at 2025-04-15 08:17 PM PDT -andyvu923,2025-04-17T04:23:49Z,- andyvu923 submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2774536176) at 2025-04-16 09:23 PM PDT -andyvu923,2025-04-17T04:43:31Z,- andyvu923 commented on pull request: [8061](https://github.com/hackforla/website/pull/8061#issuecomment-2811724433) at 2025-04-16 09:43 PM PDT -andyvu923,2025-04-17T04:48:30Z,- andyvu923 submitted pull request review: [8061](https://github.com/hackforla/website/pull/8061#pullrequestreview-2774564135) at 2025-04-16 09:48 PM PDT -andyvu923,2025-04-17T04:52:35Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2811736413) at 2025-04-16 09:52 PM PDT -andyvu923,2025-04-17T04:53:40Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2811737539) at 2025-04-16 09:53 PM PDT -andyvu923,2025-04-17T23:11:22Z,- andyvu923 commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2814182917) at 2025-04-17 04:11 PM PDT -andyvu923,2025-04-18T00:11:33Z,- andyvu923 submitted pull request review: [8069](https://github.com/hackforla/website/pull/8069#pullrequestreview-2777159626) at 2025-04-17 05:11 PM PDT -andyvu923,2025-04-18T00:12:14Z,- andyvu923 submitted pull request review: [8069](https://github.com/hackforla/website/pull/8069#pullrequestreview-2777160048) at 2025-04-17 05:12 PM PDT -andyvu923,2025-04-18T00:14:23Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2814235821) at 2025-04-17 05:14 PM PDT -andyvu923,2025-04-18T00:30:12Z,- andyvu923 submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2777172946) at 2025-04-17 05:30 PM PDT -andyvu923,2025-04-18T00:30:46Z,- andyvu923 submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2777173266) at 2025-04-17 05:30 PM PDT -andyvu923,2025-04-18T00:31:39Z,- andyvu923 submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2777173823) at 2025-04-17 05:31 PM PDT -andyvu923,2025-04-18T00:32:52Z,- andyvu923 submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2777174570) at 2025-04-17 05:32 PM PDT -andyvu923,2025-04-18T00:35:26Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2814258956) at 2025-04-17 05:35 PM PDT -andyvu923,2025-04-19T09:35:22Z,- andyvu923 assigned to issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2784784449) at 2025-04-19 02:35 AM PDT -andyvu923,2025-04-19T09:35:35Z,- andyvu923 unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2816630959) at 2025-04-19 02:35 AM PDT -andyvu923,2025-04-19T17:38:56Z,- andyvu923 pull request merged: [8059](https://github.com/hackforla/website/pull/8059#event-17329270012) at 2025-04-19 10:38 AM PDT -andyvu923,2025-04-21T01:07:14Z,- andyvu923 assigned to issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2816799795) at 2025-04-20 06:07 PM PDT -andyvu923,2025-04-21T06:14:55Z,- andyvu923 unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2817439407) at 2025-04-20 11:14 PM PDT -andyvu923,2025-04-21T06:24:06Z,- andyvu923 assigned to issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2797253710) at 2025-04-20 11:24 PM PDT -andyvu923,2025-04-21T06:25:13Z,- andyvu923 commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2817740336) at 2025-04-20 11:25 PM PDT -andyvu923,2025-04-24T21:42:24Z,- andyvu923 submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2792585316) at 2025-04-24 02:42 PM PDT -andyvu923,2025-04-24T21:53:05Z,- andyvu923 commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2828949205) at 2025-04-24 02:53 PM PDT -andyvu923,2025-04-25T07:48:50Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2829637497) at 2025-04-25 12:48 AM PDT -andyvu923,2025-04-25T07:52:55Z,- andyvu923 commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2829646375) at 2025-04-25 12:52 AM PDT -andyvu923,2025-04-28T23:56:45Z,- andyvu923 submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2801371683) at 2025-04-28 04:56 PM PDT -andyvu923,2025-04-30T03:25:48Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2840707013) at 2025-04-29 08:25 PM PDT -andyvu923,2025-04-30T03:52:57Z,- andyvu923 commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2840732666) at 2025-04-29 08:52 PM PDT -andyvu923,2025-05-01T09:38:44Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2844547755) at 2025-05-01 02:38 AM PDT -andyvu923,2025-05-02T02:38:43Z,- andyvu923 commented on pull request: [8107](https://github.com/hackforla/website/pull/8107#issuecomment-2846192087) at 2025-05-01 07:38 PM PDT -andyvu923,2025-05-02T03:12:37Z,- andyvu923 submitted pull request review: [8107](https://github.com/hackforla/website/pull/8107#pullrequestreview-2811093879) at 2025-05-01 08:12 PM PDT -andyvu923,2025-05-02T21:26:01Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2848147996) at 2025-05-02 02:26 PM PDT -andyvu923,2025-05-05T08:30:37Z,- andyvu923 commented on pull request: [8115](https://github.com/hackforla/website/pull/8115#issuecomment-2850271505) at 2025-05-05 01:30 AM PDT -andyvu923,2025-05-05T08:42:36Z,- andyvu923 submitted pull request review: [8115](https://github.com/hackforla/website/pull/8115#pullrequestreview-2814165783) at 2025-05-05 01:42 AM PDT -andyvu923,2025-05-06T03:29:07Z,- andyvu923 commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2853172578) at 2025-05-05 08:29 PM PDT -andyvu923,2025-05-06T03:30:31Z,- andyvu923 assigned to issue: [8087](https://github.com/hackforla/website/issues/8087) at 2025-05-05 08:30 PM PDT -andyvu923,2025-05-06T03:31:10Z,- andyvu923 commented on issue: [8087](https://github.com/hackforla/website/issues/8087#issuecomment-2853174431) at 2025-05-05 08:31 PM PDT -andyvu923,2025-05-06T05:50:04Z,- andyvu923 opened issue: [8117](https://github.com/hackforla/website/issues/8117) at 2025-05-05 10:50 PM PDT -andyvu923,2025-05-06T06:01:38Z,- andyvu923 commented on issue: [8087](https://github.com/hackforla/website/issues/8087#issuecomment-2853368917) at 2025-05-05 11:01 PM PDT -andyvu923,2025-05-15T22:57:32Z,- andyvu923 submitted pull request review: [8127](https://github.com/hackforla/website/pull/8127#pullrequestreview-2845144879) at 2025-05-15 03:57 PM PDT -andyvu923,2025-05-16T03:39:52Z,- andyvu923 submitted pull request review: [8140](https://github.com/hackforla/website/pull/8140#pullrequestreview-2845417204) at 2025-05-15 08:39 PM PDT -andyvu923,2025-05-17T01:12:44Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2887916290) at 2025-05-16 06:12 PM PDT -andyvu923,2025-05-23T08:24:31Z,- andyvu923 commented on pull request: [8153](https://github.com/hackforla/website/pull/8153#issuecomment-2903676508) at 2025-05-23 01:24 AM PDT -andyvu923,2025-05-23T08:29:57Z,- andyvu923 submitted pull request review: [8153](https://github.com/hackforla/website/pull/8153#pullrequestreview-2863648702) at 2025-05-23 01:29 AM PDT -andyvu923,2025-05-23T08:31:58Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2903698167) at 2025-05-23 01:31 AM PDT -andyvu923,2025-06-06T20:05:35Z,- andyvu923 commented on pull request: [8172](https://github.com/hackforla/website/pull/8172#issuecomment-2950671689) at 2025-06-06 01:05 PM PDT -andyvu923,2025-06-06T20:10:30Z,- andyvu923 submitted pull request review: [8172](https://github.com/hackforla/website/pull/8172#pullrequestreview-2906052090) at 2025-06-06 01:10 PM PDT -andyvu923,2025-06-10T16:30:12Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2959929747) at 2025-06-10 09:30 AM PDT -andyvu923,2025-06-16T20:01:05Z,- andyvu923 commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2977942124) at 2025-06-16 01:01 PM PDT -angela-lee1,5776,SKILLS ISSUE -angela-lee1,2023-10-25T02:48:33Z,- angela-lee1 opened issue: [5776](https://github.com/hackforla/website/issues/5776) at 2023-10-24 07:48 PM PDT -angela-lee1,2023-10-25T02:48:42Z,- angela-lee1 assigned to issue: [5776](https://github.com/hackforla/website/issues/5776) at 2023-10-24 07:48 PM PDT -angela-lee1,2024-02-02T16:45:36Z,- angela-lee1 opened issue: [6213](https://github.com/hackforla/website/issues/6213) at 2024-02-02 08:45 AM PST -angela-lee1,2024-02-02T23:36:09Z,- angela-lee1 assigned to issue: [6192](https://github.com/hackforla/website/issues/6192#issuecomment-1913803622) at 2024-02-02 03:36 PM PST -angela-lee1,2024-02-03T01:14:50Z,- angela-lee1 opened pull request: [6215](https://github.com/hackforla/website/pull/6215) at 2024-02-02 05:14 PM PST -angela-lee1,2024-02-03T02:55:19Z,- angela-lee1 commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1925032476) at 2024-02-02 06:55 PM PST -angela-lee1,2024-02-03T03:25:12Z,- angela-lee1 commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1925039675) at 2024-02-02 07:25 PM PST -angela-lee1,2024-02-04T21:13:08Z,- angela-lee1 pull request merged: [6215](https://github.com/hackforla/website/pull/6215#event-11696541285) at 2024-02-04 01:13 PM PST -angela-lee1,2024-02-06T01:26:57Z,- angela-lee1 assigned to issue: [6233](https://github.com/hackforla/website/issues/6233#issuecomment-1926575952) at 2024-02-05 05:26 PM PST -angela-lee1,2024-02-06T01:58:48Z,- angela-lee1 opened pull request: [6241](https://github.com/hackforla/website/pull/6241) at 2024-02-05 05:58 PM PST -angela-lee1,2024-02-09T01:14:53Z,- angela-lee1 commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1935185967) at 2024-02-08 05:14 PM PST -angela-lee1,2024-02-09T07:18:34Z,- angela-lee1 pull request merged: [6241](https://github.com/hackforla/website/pull/6241#event-11754621097) at 2024-02-08 11:18 PM PST -angela-lee1,2024-02-09T14:16:17Z,- angela-lee1 assigned to issue: [6140](https://github.com/hackforla/website/issues/6140) at 2024-02-09 06:16 AM PST -angela-lee1,2024-02-09T14:18:37Z,- angela-lee1 commented on issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-1936012516) at 2024-02-09 06:18 AM PST -angela-lee1,2024-02-09T17:06:22Z,- angela-lee1 commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1936283780) at 2024-02-09 09:06 AM PST -angela-lee1,2024-02-11T03:25:52Z,- angela-lee1 opened pull request: [6276](https://github.com/hackforla/website/pull/6276) at 2024-02-10 07:25 PM PST -angela-lee1,2024-02-11T22:58:13Z,- angela-lee1 pull request closed w/o merging: [6276](https://github.com/hackforla/website/pull/6276#event-11768581836) at 2024-02-11 02:58 PM PST -angela-lee1,2024-02-11T23:25:27Z,- angela-lee1 unassigned from issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-1936012516) at 2024-02-11 03:25 PM PST -angela-lee1,2024-02-11T23:42:50Z,- angela-lee1 assigned to issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1698544380) at 2024-02-11 03:42 PM PST -angela-lee1,2024-02-11T23:44:30Z,- angela-lee1 commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1937915520) at 2024-02-11 03:44 PM PST -angela-lee1,2024-02-13T20:06:30Z,- angela-lee1 unassigned from issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942349163) at 2024-02-13 12:06 PM PST -angela-lee1,2024-02-13T21:43:48Z,- angela-lee1 commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1942669875) at 2024-02-13 01:43 PM PST -angela-lee1,2024-02-13T21:44:20Z,- angela-lee1 assigned to issue: [5998](https://github.com/hackforla/website/issues/5998) at 2024-02-13 01:44 PM PST -angela-lee1,2024-02-13T21:46:11Z,- angela-lee1 commented on issue: [5998](https://github.com/hackforla/website/issues/5998#issuecomment-1942676624) at 2024-02-13 01:46 PM PST -angela-lee1,2024-02-14T03:57:34Z,- angela-lee1 commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1943045547) at 2024-02-13 07:57 PM PST -angela-lee1,2024-02-18T00:25:32Z,- angela-lee1 closed issue as completed: [5776](https://github.com/hackforla/website/issues/5776#event-11837495984) at 2024-02-17 04:25 PM PST -angela-lee1,2024-02-25T18:22:46Z,- angela-lee1 assigned to issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1962798430) at 2024-02-25 10:22 AM PST -angela-lee1,2024-02-25T18:35:12Z,- angela-lee1 commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1963023738) at 2024-02-25 10:35 AM PST -angela-lee1,2024-02-26T15:25:01Z,- angela-lee1 commented on pull request: [6379](https://github.com/hackforla/website/pull/6379#issuecomment-1964412979) at 2024-02-26 07:25 AM PST -angela-lee1,2024-02-26T20:01:37Z,- angela-lee1 commented on pull request: [6379](https://github.com/hackforla/website/pull/6379#issuecomment-1965151331) at 2024-02-26 12:01 PM PST -angela-lee1,2024-02-26T20:03:23Z,- angela-lee1 submitted pull request review: [6379](https://github.com/hackforla/website/pull/6379#pullrequestreview-1901891961) at 2024-02-26 12:03 PM PST -angela-lee1,2024-02-28T15:24:28Z,- angela-lee1 opened pull request: [6387](https://github.com/hackforla/website/pull/6387) at 2024-02-28 07:24 AM PST -angela-lee1,2024-02-28T19:00:48Z,- angela-lee1 pull request merged: [6387](https://github.com/hackforla/website/pull/6387#event-11956069844) at 2024-02-28 11:00 AM PST -angela-lee1,2024-02-29T14:13:28Z,- angela-lee1 assigned to issue: [6242](https://github.com/hackforla/website/issues/6242#issuecomment-1928692609) at 2024-02-29 06:13 AM PST -angela-lee1,2024-02-29T14:15:48Z,- angela-lee1 commented on issue: [6242](https://github.com/hackforla/website/issues/6242#issuecomment-1971236852) at 2024-02-29 06:15 AM PST -angela-lee1,2024-03-02T04:11:44Z,- angela-lee1 opened pull request: [6407](https://github.com/hackforla/website/pull/6407) at 2024-03-01 08:11 PM PST -angela-lee1,2024-03-04T02:10:55Z,- angela-lee1 pull request merged: [6407](https://github.com/hackforla/website/pull/6407#event-11992373131) at 2024-03-03 06:10 PM PST -angela-lee1,2024-03-05T14:06:37Z,- angela-lee1 commented on pull request: [6431](https://github.com/hackforla/website/pull/6431#issuecomment-1978850353) at 2024-03-05 06:06 AM PST -angela-lee1,2024-03-06T18:08:12Z,- angela-lee1 submitted pull request review: [6431](https://github.com/hackforla/website/pull/6431#pullrequestreview-1920470425) at 2024-03-06 10:08 AM PST -angela-lee1,2024-03-13T03:51:38Z,- angela-lee1 commented on pull request: [6457](https://github.com/hackforla/website/pull/6457#issuecomment-1993374122) at 2024-03-12 08:51 PM PDT -angela-lee1,2024-03-14T15:09:12Z,- angela-lee1 submitted pull request review: [6457](https://github.com/hackforla/website/pull/6457#pullrequestreview-1936999456) at 2024-03-14 08:09 AM PDT -angela-lee1,2024-03-15T19:39:27Z,- angela-lee1 assigned to issue: [6459](https://github.com/hackforla/website/issues/6459) at 2024-03-15 12:39 PM PDT -angela-lee1,2024-03-15T19:41:15Z,- angela-lee1 commented on issue: [6459](https://github.com/hackforla/website/issues/6459#issuecomment-2000339472) at 2024-03-15 12:41 PM PDT -angela-lee1,2024-03-16T19:57:49Z,- angela-lee1 opened pull request: [6470](https://github.com/hackforla/website/pull/6470) at 2024-03-16 12:57 PM PDT -angela-lee1,2024-03-18T02:11:23Z,- angela-lee1 commented on pull request: [6470](https://github.com/hackforla/website/pull/6470#issuecomment-2002752105) at 2024-03-17 07:11 PM PDT -angela-lee1,2024-03-18T04:23:42Z,- angela-lee1 pull request merged: [6470](https://github.com/hackforla/website/pull/6470#event-12145694236) at 2024-03-17 09:23 PM PDT -angela-lee1,2024-03-18T21:11:46Z,- angela-lee1 assigned to issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-1977761450) at 2024-03-18 02:11 PM PDT -angela-lee1,2024-03-18T21:13:09Z,- angela-lee1 commented on issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-2005000698) at 2024-03-18 02:13 PM PDT -angela-lee1,2024-03-20T19:36:53Z,- angela-lee1 opened pull request: [6486](https://github.com/hackforla/website/pull/6486) at 2024-03-20 12:36 PM PDT -angela-lee1,2024-03-21T15:57:25Z,- angela-lee1 pull request merged: [6486](https://github.com/hackforla/website/pull/6486#event-12203194521) at 2024-03-21 08:57 AM PDT -angela-lee1,2024-03-22T13:51:28Z,- angela-lee1 commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2015154680) at 2024-03-22 06:51 AM PDT -angela-lee1,2024-03-23T03:28:05Z,- angela-lee1 commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2016327858) at 2024-03-22 08:28 PM PDT -angela-lee1,2024-03-23T04:36:20Z,- angela-lee1 submitted pull request review: [6504](https://github.com/hackforla/website/pull/6504#pullrequestreview-1956301417) at 2024-03-22 09:36 PM PDT -angela-lee1,2024-03-25T14:18:42Z,- angela-lee1 commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2018111658) at 2024-03-25 07:18 AM PDT -angela-lee1,2024-03-25T16:39:06Z,- angela-lee1 commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2018432751) at 2024-03-25 09:39 AM PDT -angela-lee1,2024-04-29T13:11:09Z,- angela-lee1 commented on pull request: [6746](https://github.com/hackforla/website/pull/6746#issuecomment-2082703663) at 2024-04-29 06:11 AM PDT -angela-lee1,2024-04-29T16:04:49Z,- angela-lee1 submitted pull request review: [6746](https://github.com/hackforla/website/pull/6746#pullrequestreview-2028941258) at 2024-04-29 09:04 AM PDT -angela-lee1,2024-04-29T16:05:39Z,- angela-lee1 submitted pull request review: [6746](https://github.com/hackforla/website/pull/6746#pullrequestreview-2028944208) at 2024-04-29 09:05 AM PDT -angela-lee1,2024-04-29T22:12:07Z,- angela-lee1 commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2083774595) at 2024-04-29 03:12 PM PDT -angela-lee1,2024-04-30T02:04:32Z,- angela-lee1 submitted pull request review: [6767](https://github.com/hackforla/website/pull/6767#pullrequestreview-2030038356) at 2024-04-29 07:04 PM PDT -angelenelm,3708,SKILLS ISSUE -angelenelm,2022-11-09T03:33:08Z,- angelenelm opened issue: [3708](https://github.com/hackforla/website/issues/3708) at 2022-11-08 07:33 PM PST -angelenelm,2022-11-10T17:21:11Z,- angelenelm assigned to issue: [3708](https://github.com/hackforla/website/issues/3708) at 2022-11-10 09:21 AM PST -angelenelm,2022-11-14T21:55:42Z,- angelenelm assigned to issue: [2860](https://github.com/hackforla/website/issues/2860#issuecomment-1048447219) at 2022-11-14 01:55 PM PST -angelenelm,2022-11-14T22:06:49Z,- angelenelm commented on issue: [2860](https://github.com/hackforla/website/issues/2860#issuecomment-1314470760) at 2022-11-14 02:06 PM PST -angelenelm,2022-11-14T22:11:21Z,- angelenelm commented on issue: [3708](https://github.com/hackforla/website/issues/3708#issuecomment-1314475998) at 2022-11-14 02:11 PM PST -angelenelm,2022-11-15T00:32:53Z,- angelenelm opened pull request: [3718](https://github.com/hackforla/website/pull/3718) at 2022-11-14 04:32 PM PST -angelenelm,2022-11-17T00:30:43Z,- angelenelm pull request merged: [3718](https://github.com/hackforla/website/pull/3718#event-7829138752) at 2022-11-16 04:30 PM PST -angelenelm,2022-11-17T02:39:36Z,- angelenelm commented on pull request: [3728](https://github.com/hackforla/website/pull/3728#issuecomment-1317978025) at 2022-11-16 06:39 PM PST -angelenelm,2022-11-17T02:57:56Z,- angelenelm submitted pull request review: [3728](https://github.com/hackforla/website/pull/3728#pullrequestreview-1183608376) at 2022-11-16 06:57 PM PST -angelenelm,2022-11-17T06:59:54Z,- angelenelm commented on pull request: [3728](https://github.com/hackforla/website/pull/3728#issuecomment-1318177274) at 2022-11-16 10:59 PM PST -angelenelm,2022-11-17T19:34:45Z,- angelenelm assigned to issue: [3211](https://github.com/hackforla/website/issues/3211#issuecomment-1145852639) at 2022-11-17 11:34 AM PST -angelenelm,2022-11-17T19:37:28Z,- angelenelm commented on issue: [3211](https://github.com/hackforla/website/issues/3211#issuecomment-1319111211) at 2022-11-17 11:37 AM PST -angelenelm,2022-11-17T19:56:49Z,- angelenelm opened pull request: [3729](https://github.com/hackforla/website/pull/3729) at 2022-11-17 11:56 AM PST -angelenelm,2022-11-17T22:54:02Z,- angelenelm commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1319313533) at 2022-11-17 02:54 PM PST -angelenelm,2022-11-18T22:26:22Z,- angelenelm pull request merged: [3729](https://github.com/hackforla/website/pull/3729#event-7847907318) at 2022-11-18 02:26 PM PST -angelenelm,2022-11-20T05:21:18Z,- angelenelm assigned to issue: [3691](https://github.com/hackforla/website/issues/3691#issuecomment-1312786670) at 2022-11-19 09:21 PM PST -angelenelm,2022-11-20T05:26:03Z,- angelenelm commented on issue: [3691](https://github.com/hackforla/website/issues/3691#issuecomment-1321043169) at 2022-11-19 09:26 PM PST -angelenelm,2022-11-21T20:32:34Z,- angelenelm closed issue as completed: [3708](https://github.com/hackforla/website/issues/3708#event-7860955129) at 2022-11-21 12:32 PM PST -angelenelm,2022-11-21T21:55:48Z,- angelenelm opened pull request: [3736](https://github.com/hackforla/website/pull/3736) at 2022-11-21 01:55 PM PST -angelenelm,2022-11-23T19:43:25Z,- angelenelm commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1325575169) at 2022-11-23 11:43 AM PST -angelenelm,2022-11-24T19:23:39Z,- angelenelm pull request merged: [3736](https://github.com/hackforla/website/pull/3736#event-7888293581) at 2022-11-24 11:23 AM PST -angelenelm,2022-11-27T21:48:49Z,- angelenelm assigned to issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1304875746) at 2022-11-27 01:48 PM PST -angelenelm,2022-11-27T21:52:15Z,- angelenelm commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1328348117) at 2022-11-27 01:52 PM PST -angelenelm,2022-11-27T22:13:04Z,- angelenelm opened pull request: [3749](https://github.com/hackforla/website/pull/3749) at 2022-11-27 02:13 PM PST -angelenelm,2022-11-29T02:58:35Z,- angelenelm pull request merged: [3749](https://github.com/hackforla/website/pull/3749#event-7908478869) at 2022-11-28 06:58 PM PST -angelenelm,2022-11-29T03:54:01Z,- angelenelm commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1330039321) at 2022-11-28 07:54 PM PST -angelenelm,2022-12-02T04:09:52Z,- angelenelm opened pull request: [3762](https://github.com/hackforla/website/pull/3762) at 2022-12-01 08:09 PM PST -angelenelm,2022-12-07T09:25:49Z,- angelenelm pull request merged: [3762](https://github.com/hackforla/website/pull/3762#event-7975681651) at 2022-12-07 01:25 AM PST -angelenelm,2023-02-11T02:55:12Z,- angelenelm commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1426585035) at 2023-02-10 06:55 PM PST -angelenelm,2023-02-11T02:59:27Z,- angelenelm submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1294386607) at 2023-02-10 06:59 PM PST -angelenelm,2023-02-15T04:41:49Z,- angelenelm submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1298791058) at 2023-02-14 08:41 PM PST -angelenelm,2023-07-07T05:16:31Z,- angelenelm assigned to issue: [4864](https://github.com/hackforla/website/issues/4864#issuecomment-1599102462) at 2023-07-06 10:16 PM PDT -angelenelm,2023-07-07T05:18:33Z,- angelenelm commented on issue: [4864](https://github.com/hackforla/website/issues/4864#issuecomment-1624762801) at 2023-07-06 10:18 PM PDT -angelenelm,2023-07-13T03:32:12Z,- angelenelm opened pull request: [4945](https://github.com/hackforla/website/pull/4945) at 2023-07-12 08:32 PM PDT -angelenelm,2023-07-19T16:02:05Z,- angelenelm commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642360921) at 2023-07-19 09:02 AM PDT -angelenelm,2023-07-19T16:09:04Z,- angelenelm commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642371471) at 2023-07-19 09:09 AM PDT -angelenelm,2023-07-19T22:10:05Z,- angelenelm commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642824048) at 2023-07-19 03:10 PM PDT -angelenelm,2023-07-21T22:07:46Z,- angelenelm pull request merged: [4945](https://github.com/hackforla/website/pull/4945#event-9889250259) at 2023-07-21 03:07 PM PDT -angelenelm,2023-08-02T23:47:18Z,- angelenelm assigned to issue: [4884](https://github.com/hackforla/website/issues/4884) at 2023-08-02 04:47 PM PDT -angelenelm,2023-08-02T23:48:41Z,- angelenelm commented on issue: [4884](https://github.com/hackforla/website/issues/4884#issuecomment-1663104990) at 2023-08-02 04:48 PM PDT -angelenelm,2023-08-13T19:55:41Z,- angelenelm commented on issue: [4884](https://github.com/hackforla/website/issues/4884#issuecomment-1676448774) at 2023-08-13 12:55 PM PDT -angietechcafe,3187,SKILLS ISSUE -angietechcafe,2022-06-01T03:13:53Z,- angietechcafe opened issue: [3187](https://github.com/hackforla/website/issues/3187) at 2022-05-31 08:13 PM PDT -angietechcafe,2022-06-16T01:51:34Z,- angietechcafe opened issue: [3254](https://github.com/hackforla/website/issues/3254) at 2022-06-15 06:51 PM PDT -angietechcafe,2022-07-11T21:16:30Z,- angietechcafe assigned to issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1180851068) at 2022-07-11 02:16 PM PDT -angietechcafe,2022-07-11T21:18:40Z,- angietechcafe commented on issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1180880395) at 2022-07-11 02:18 PM PDT -angietechcafe,2022-07-11T22:09:15Z,- angietechcafe assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-07-11 03:09 PM PDT -angietechcafe,2022-07-11T22:36:08Z,- angietechcafe unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1180917782) at 2022-07-11 03:36 PM PDT -angietechcafe,2022-07-11T22:37:05Z,- angietechcafe assigned to issue: [2817](https://github.com/hackforla/website/issues/2817#issuecomment-1046317441) at 2022-07-11 03:37 PM PDT -angietechcafe,2022-07-11T22:39:21Z,- angietechcafe commented on issue: [2817](https://github.com/hackforla/website/issues/2817#issuecomment-1180966477) at 2022-07-11 03:39 PM PDT -angietechcafe,2022-07-13T01:20:06Z,- angietechcafe opened pull request: [3363](https://github.com/hackforla/website/pull/3363) at 2022-07-12 06:20 PM PDT -angietechcafe,2022-07-13T01:33:39Z,- angietechcafe commented on issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1182662493) at 2022-07-12 06:33 PM PDT -angietechcafe,2022-07-13T14:45:47Z,- angietechcafe pull request merged: [3363](https://github.com/hackforla/website/pull/3363#event-6986692338) at 2022-07-13 07:45 AM PDT -angietechcafe,2022-07-15T01:10:18Z,- angietechcafe commented on issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1185070275) at 2022-07-14 06:10 PM PDT -angietechcafe,2022-07-15T01:11:19Z,- angietechcafe closed issue as completed: [3187](https://github.com/hackforla/website/issues/3187#event-6998485540) at 2022-07-14 06:11 PM PDT -angietechcafe,2022-07-15T02:17:22Z,- angietechcafe assigned to issue: [3306](https://github.com/hackforla/website/issues/3306#issuecomment-1166609753) at 2022-07-14 07:17 PM PDT -angietechcafe,2022-07-15T02:34:54Z,- angietechcafe commented on issue: [3306](https://github.com/hackforla/website/issues/3306#issuecomment-1185106785) at 2022-07-14 07:34 PM PDT -angietechcafe,2022-07-15T02:56:52Z,- angietechcafe opened pull request: [3371](https://github.com/hackforla/website/pull/3371) at 2022-07-14 07:56 PM PDT -angietechcafe,2022-07-15T23:59:38Z,- angietechcafe pull request merged: [3371](https://github.com/hackforla/website/pull/3371#event-7005324401) at 2022-07-15 04:59 PM PDT -angietechcafe,2022-07-16T02:56:42Z,- angietechcafe commented on issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1186074322) at 2022-07-15 07:56 PM PDT -angietechcafe,2022-07-16T03:13:02Z,- angietechcafe assigned to issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1134021942) at 2022-07-15 08:13 PM PDT -angietechcafe,2022-07-16T03:14:21Z,- angietechcafe commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1186076340) at 2022-07-15 08:14 PM PDT -angietechcafe,2022-07-19T16:02:18Z,- angietechcafe closed issue as completed: [3187](https://github.com/hackforla/website/issues/3187#event-7022070495) at 2022-07-19 09:02 AM PDT -angietechcafe,2022-07-19T16:08:52Z,- angietechcafe commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1189262627) at 2022-07-19 09:08 AM PDT -angietechcafe,2022-07-22T02:40:23Z,- angietechcafe commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1192120630) at 2022-07-21 07:40 PM PDT -angietechcafe,2022-07-22T03:28:40Z,- angietechcafe opened pull request: [3419](https://github.com/hackforla/website/pull/3419) at 2022-07-21 08:28 PM PDT -angietechcafe,2022-07-25T01:37:44Z,- angietechcafe commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1193461794) at 2022-07-24 06:37 PM PDT -angietechcafe,2022-07-29T02:27:43Z,- angietechcafe pull request closed w/o merging: [3419](https://github.com/hackforla/website/pull/3419#event-7086143919) at 2022-07-28 07:27 PM PDT -angietechcafe,2022-07-29T02:46:48Z,- angietechcafe opened pull request: [3443](https://github.com/hackforla/website/pull/3443) at 2022-07-28 07:46 PM PDT -angietechcafe,2022-07-29T02:55:56Z,- angietechcafe commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1198828245) at 2022-07-28 07:55 PM PDT -angietechcafe,2022-07-29T16:51:44Z,- angietechcafe pull request merged: [3443](https://github.com/hackforla/website/pull/3443#event-7090876602) at 2022-07-29 09:51 AM PDT -angieyan,3813,SKILLS ISSUE -angieyan,2023-01-13T03:29:11Z,- angieyan opened issue: [3813](https://github.com/hackforla/website/issues/3813) at 2023-01-12 07:29 PM PST -angieyan,2023-02-10T20:28:12Z,- angieyan assigned to issue: [3851](https://github.com/hackforla/website/issues/3851) at 2023-02-10 12:28 PM PST -angieyan,2023-02-10T20:29:22Z,- angieyan commented on issue: [3851](https://github.com/hackforla/website/issues/3851#issuecomment-1426307601) at 2023-02-10 12:29 PM PST -angieyan,2023-02-13T02:41:17Z,- angieyan opened pull request: [3965](https://github.com/hackforla/website/pull/3965) at 2023-02-12 06:41 PM PST -angieyan,2023-02-13T05:23:17Z,- angieyan assigned to issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1427330989) at 2023-02-12 09:23 PM PST -angieyan,2023-02-13T06:25:54Z,- angieyan commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1427416118) at 2023-02-12 10:25 PM PST -angieyan,2023-02-13T15:21:47Z,- angieyan closed issue by PR 4107: [3925](https://github.com/hackforla/website/issues/3925#event-8505706819) at 2023-02-13 07:21 AM PST -angieyan,2023-02-13T15:21:58Z,- angieyan reopened issue: [3925](https://github.com/hackforla/website/issues/3925#event-8505706819) at 2023-02-13 07:21 AM PST -angieyan,2023-02-13T20:03:08Z,- angieyan commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428599003) at 2023-02-13 12:03 PM PST -angieyan,2023-02-13T20:04:03Z,- angieyan commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428600390) at 2023-02-13 12:04 PM PST -angieyan,2023-02-13T22:02:35Z,- angieyan commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428751449) at 2023-02-13 02:02 PM PST -angieyan,2023-02-14T00:43:28Z,- angieyan commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428926025) at 2023-02-13 04:43 PM PST -angieyan,2023-02-14T01:29:12Z,- angieyan commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428969481) at 2023-02-13 05:29 PM PST -angieyan,2023-02-14T01:36:41Z,- angieyan commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428976589) at 2023-02-13 05:36 PM PST -angieyan,2023-02-14T15:41:46Z,- angieyan pull request merged: [3965](https://github.com/hackforla/website/pull/3965#event-8516921123) at 2023-02-14 07:41 AM PST -angieyan,2023-02-14T20:40:13Z,- angieyan commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1430345910) at 2023-02-14 12:40 PM PST -angieyan,2023-02-18T04:00:01Z,- angieyan commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1435477692) at 2023-02-17 08:00 PM PST -angieyan,2023-02-25T04:35:05Z,- angieyan assigned to issue: [3952](https://github.com/hackforla/website/issues/3952#issuecomment-1421840677) at 2023-02-24 08:35 PM PST -angieyan,2023-02-25T04:37:25Z,- angieyan commented on issue: [3952](https://github.com/hackforla/website/issues/3952#issuecomment-1444989561) at 2023-02-24 08:37 PM PST -angieyan,2023-02-25T05:15:13Z,- angieyan opened pull request: [4038](https://github.com/hackforla/website/pull/4038) at 2023-02-24 09:15 PM PST -angieyan,2023-02-26T03:35:50Z,- angieyan commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1445260004) at 2023-02-25 07:35 PM PST -angieyan,2023-02-27T20:47:30Z,- angieyan commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1447064034) at 2023-02-27 12:47 PM PST -angieyan,2023-03-01T05:02:03Z,- angieyan commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1449351605) at 2023-02-28 09:02 PM PST -angieyan,2023-03-01T07:17:37Z,- angieyan pull request merged: [4038](https://github.com/hackforla/website/pull/4038#event-8634771442) at 2023-02-28 11:17 PM PST -angieyan,2023-03-03T17:38:47Z,- angieyan commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1453874027) at 2023-03-03 09:38 AM PST -angieyan,2023-03-05T15:13:29Z,- angieyan assigned to issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1436073915) at 2023-03-05 07:13 AM PST -angieyan,2023-03-05T15:15:17Z,- angieyan commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1455119430) at 2023-03-05 07:15 AM PST -angieyan,2023-03-05T20:42:17Z,- angieyan opened pull request: [4115](https://github.com/hackforla/website/pull/4115) at 2023-03-05 12:42 PM PST -angieyan,2023-03-08T01:18:37Z,- angieyan commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1459117385) at 2023-03-07 05:18 PM PST -angieyan,2023-03-08T05:51:55Z,- angieyan opened pull request: [4131](https://github.com/hackforla/website/pull/4131) at 2023-03-07 09:51 PM PST -angieyan,2023-03-08T06:09:42Z,- angieyan pull request closed w/o merging: [4115](https://github.com/hackforla/website/pull/4115#event-8693331373) at 2023-03-07 10:09 PM PST -angieyan,2023-03-09T20:41:06Z,- angieyan commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1462763207) at 2023-03-09 12:41 PM PST -angieyan,2023-03-12T05:45:32Z,- angieyan commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1465098537) at 2023-03-11 10:45 PM PDT -angieyan,2023-03-14T23:03:31Z,- angieyan pull request merged: [4131](https://github.com/hackforla/website/pull/4131#event-8749268906) at 2023-03-14 04:03 PM PDT -angieyan,2023-03-25T01:26:41Z,- angieyan commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1483661404) at 2023-03-24 06:26 PM PDT -angieyan,2023-03-27T18:09:07Z,- angieyan assigned to issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1475355262) at 2023-03-27 11:09 AM PDT -angieyan,2023-03-27T18:11:32Z,- angieyan commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1485619942) at 2023-03-27 11:11 AM PDT -angieyan,2023-03-27T18:14:18Z,- angieyan commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1485626191) at 2023-03-27 11:14 AM PDT -angieyan,2023-04-03T21:47:20Z,- angieyan commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1495027559) at 2023-04-03 02:47 PM PDT -angieyan,2023-04-12T00:49:36Z,- angieyan commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1504349480) at 2023-04-11 05:49 PM PDT -angieyan,2023-04-13T17:28:20Z,- angieyan opened issue: [4502](https://github.com/hackforla/website/issues/4502) at 2023-04-13 10:28 AM PDT -angieyan,2023-04-18T02:06:33Z,- angieyan commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1512333764) at 2023-04-17 07:06 PM PDT -angieyan,2023-04-18T19:49:06Z,- angieyan commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1513712026) at 2023-04-18 12:49 PM PDT -angieyan,2023-04-18T19:49:58Z,- angieyan submitted pull request review: [4524](https://github.com/hackforla/website/pull/4524#pullrequestreview-1390829485) at 2023-04-18 12:49 PM PDT -angieyan,2023-04-18T20:32:47Z,- angieyan commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1513761149) at 2023-04-18 01:32 PM PDT -angieyan,2023-04-18T20:42:01Z,- angieyan submitted pull request review: [4497](https://github.com/hackforla/website/pull/4497#pullrequestreview-1390905473) at 2023-04-18 01:42 PM PDT -angieyan,2023-04-18T20:46:50Z,- angieyan commented on pull request: [4511](https://github.com/hackforla/website/pull/4511#issuecomment-1513775033) at 2023-04-18 01:46 PM PDT -angieyan,2023-04-18T20:48:32Z,- angieyan submitted pull request review: [4511](https://github.com/hackforla/website/pull/4511#pullrequestreview-1390913537) at 2023-04-18 01:48 PM PDT -angieyan,2023-04-23T20:55:46Z,- angieyan commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519165947) at 2023-04-23 01:55 PM PDT -angieyan,2023-04-23T20:58:49Z,- angieyan submitted pull request review: [4558](https://github.com/hackforla/website/pull/4558#pullrequestreview-1396988571) at 2023-04-23 01:58 PM PDT -angieyan,2023-04-23T21:02:56Z,- angieyan commented on pull request: [4550](https://github.com/hackforla/website/pull/4550#issuecomment-1519167532) at 2023-04-23 02:02 PM PDT -angieyan,2023-05-02T02:56:25Z,- angieyan assigned to issue: [4590](https://github.com/hackforla/website/issues/4590) at 2023-05-01 07:56 PM PDT -angieyan,2023-05-02T02:58:21Z,- angieyan commented on issue: [4590](https://github.com/hackforla/website/issues/4590#issuecomment-1530799729) at 2023-05-01 07:58 PM PDT -angieyan,2023-05-03T18:50:36Z,- angieyan commented on issue: [4590](https://github.com/hackforla/website/issues/4590#issuecomment-1533537329) at 2023-05-03 11:50 AM PDT -angieyan,2023-05-04T02:23:11Z,- angieyan commented on pull request: [4550](https://github.com/hackforla/website/pull/4550#issuecomment-1533992385) at 2023-05-03 07:23 PM PDT -angieyan,2023-05-04T20:22:23Z,- angieyan submitted pull request review: [4550](https://github.com/hackforla/website/pull/4550#pullrequestreview-1413850974) at 2023-05-04 01:22 PM PDT -angieyan,2023-05-04T23:40:40Z,- angieyan opened pull request: [4599](https://github.com/hackforla/website/pull/4599) at 2023-05-04 04:40 PM PDT -angieyan,2023-05-09T04:25:21Z,- angieyan pull request merged: [4599](https://github.com/hackforla/website/pull/4599#event-9196359814) at 2023-05-08 09:25 PM PDT -angieyan,2023-05-16T01:30:16Z,- angieyan commented on pull request: [4666](https://github.com/hackforla/website/pull/4666#issuecomment-1548835761) at 2023-05-15 06:30 PM PDT -angieyan,2023-05-16T01:44:29Z,- angieyan submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1427575374) at 2023-05-15 06:44 PM PDT -angieyan,2023-05-16T01:47:20Z,- angieyan commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1548846744) at 2023-05-15 06:47 PM PDT -angieyan,2023-05-17T21:21:51Z,- angieyan submitted pull request review: [4661](https://github.com/hackforla/website/pull/4661#pullrequestreview-1431677207) at 2023-05-17 02:21 PM PDT -angkitha,7837,SKILLS ISSUE -angkitha,2025-01-21T03:58:18Z,- angkitha opened issue: [7837](https://github.com/hackforla/website/issues/7837) at 2025-01-20 07:58 PM PST -angkitha,2025-01-21T03:58:53Z,- angkitha assigned to issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2603608045) at 2025-01-20 07:58 PM PST -angkitha,2025-01-24T00:39:03Z,- angkitha commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2611301434) at 2025-01-23 04:39 PM PST -angkitha,2025-01-24T00:41:57Z,- angkitha commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2611304442) at 2025-01-23 04:41 PM PST -anh628,5605,SKILLS ISSUE -anh628,2023-09-27T02:27:07Z,- anh628 opened issue: [5605](https://github.com/hackforla/website/issues/5605) at 2023-09-26 07:27 PM PDT -anh628,2023-09-27T02:27:10Z,- anh628 assigned to issue: [5605](https://github.com/hackforla/website/issues/5605) at 2023-09-26 07:27 PM PDT -anh628,2023-09-27T03:08:31Z,- anh628 assigned to issue: [5172](https://github.com/hackforla/website/issues/5172#issuecomment-1672307900) at 2023-09-26 08:08 PM PDT -anh628,2023-09-27T03:11:35Z,- anh628 commented on issue: [5172](https://github.com/hackforla/website/issues/5172#issuecomment-1736606448) at 2023-09-26 08:11 PM PDT -anh628,2023-09-27T03:46:12Z,- anh628 opened pull request: [5611](https://github.com/hackforla/website/pull/5611) at 2023-09-26 08:46 PM PDT -anh628,2023-09-27T03:55:25Z,- anh628 commented on issue: [5605](https://github.com/hackforla/website/issues/5605#issuecomment-1736632258) at 2023-09-26 08:55 PM PDT -anh628,2023-10-01T16:29:31Z,- anh628 pull request merged: [5611](https://github.com/hackforla/website/pull/5611#event-10519994882) at 2023-10-01 09:29 AM PDT -anh628,2023-10-02T04:41:56Z,- anh628 commented on issue: [5605](https://github.com/hackforla/website/issues/5605#issuecomment-1742391455) at 2023-10-01 09:41 PM PDT -anh628,2023-10-02T04:42:28Z,- anh628 assigned to issue: [5177](https://github.com/hackforla/website/issues/5177#issuecomment-1712882689) at 2023-10-01 09:42 PM PDT -anh628,2023-10-02T04:43:20Z,- anh628 commented on issue: [5177](https://github.com/hackforla/website/issues/5177#issuecomment-1742392238) at 2023-10-01 09:43 PM PDT -anh628,2023-10-02T04:59:10Z,- anh628 opened pull request: [5643](https://github.com/hackforla/website/pull/5643) at 2023-10-01 09:59 PM PDT -anh628,2023-10-07T00:26:54Z,- anh628 commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1751525712) at 2023-10-06 05:26 PM PDT -anh628,2023-10-07T00:30:12Z,- anh628 commented on issue: [5605](https://github.com/hackforla/website/issues/5605#issuecomment-1751527004) at 2023-10-06 05:30 PM PDT -anh628,2023-10-08T08:51:08Z,- anh628 pull request merged: [5643](https://github.com/hackforla/website/pull/5643#event-10583601226) at 2023-10-08 01:51 AM PDT -anh628,2023-10-14T22:38:48Z,- anh628 commented on issue: [5605](https://github.com/hackforla/website/issues/5605#issuecomment-1763199075) at 2023-10-14 03:38 PM PDT -anh628,2023-10-14T22:38:48Z,- anh628 closed issue as completed: [5605](https://github.com/hackforla/website/issues/5605#event-10656058932) at 2023-10-14 03:38 PM PDT -Aniket1272,2020-10-01T13:49:20Z,- Aniket1272 opened pull request: [760](https://github.com/hackforla/website/pull/760) at 2020-10-01 06:49 AM PDT -Aniket1272,2020-10-07T02:24:16Z,- Aniket1272 pull request closed w/o merging: [760](https://github.com/hackforla/website/pull/760#event-3848268520) at 2020-10-06 07:24 PM PDT -Aniket1272,2020-10-17T10:31:05Z,- Aniket1272 opened pull request: [789](https://github.com/hackforla/website/pull/789) at 2020-10-17 03:31 AM PDT -Aniket1272,2020-10-22T21:29:00Z,- Aniket1272 pull request closed w/o merging: [789](https://github.com/hackforla/website/pull/789#event-3911220050) at 2020-10-22 02:29 PM PDT -anilstha1,2024-02-01T16:08:46Z,- anilstha1 commented on issue: [6185](https://github.com/hackforla/website/issues/6185#issuecomment-1921676465) at 2024-02-01 08:08 AM PST -anitahammer,2024-07-14T17:56:47Z,- anitahammer opened pull request: [7107](https://github.com/hackforla/website/pull/7107) at 2024-07-14 10:56 AM PDT -anitahammer,2024-07-14T19:56:53Z,- anitahammer pull request closed w/o merging: [7107](https://github.com/hackforla/website/pull/7107#event-13498633767) at 2024-07-14 12:56 PM PDT -anjalikesavarapu,2023-04-03T11:37:24Z,- anjalikesavarapu commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1494162265) at 2023-04-03 04:37 AM PDT -anjalikesavarapu,2023-04-05T05:28:29Z,- anjalikesavarapu commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1496937304) at 2023-04-04 10:28 PM PDT -anjolaaoluwa,2023-05-14T19:30:18Z,- anjolaaoluwa assigned to issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1546982001) at 2023-05-14 12:30 PM PDT -anjolaaoluwa,2023-05-20T05:12:22Z,- anjolaaoluwa commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1555569776) at 2023-05-19 10:12 PM PDT -anjolaaoluwa,2023-05-21T18:48:13Z,- anjolaaoluwa assigned to issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556190845) at 2023-05-21 11:48 AM PDT -anjolaaoluwa,2023-06-11T17:59:11Z,- anjolaaoluwa unassigned from issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586262316) at 2023-06-11 10:59 AM PDT -anjolaaoluwa,2023-06-25T16:16:45Z,- anjolaaoluwa closed issue as completed: [4294](https://github.com/hackforla/website/issues/4294#event-9630210470) at 2023-06-25 09:16 AM PDT -anjolaaoluwa,2023-09-10T12:41:13Z,- anjolaaoluwa commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1712804157) at 2023-09-10 05:41 AM PDT -anjolaaoluwa,2023-10-01T06:16:27Z,- anjolaaoluwa commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1741973903) at 2023-09-30 11:16 PM PDT -anjolaaoluwa,2023-10-15T15:16:00Z,- anjolaaoluwa commented on issue: [4968](https://github.com/hackforla/website/issues/4968#issuecomment-1763421030) at 2023-10-15 08:16 AM PDT -anjolaaoluwa,2023-10-15T15:16:00Z,- anjolaaoluwa closed issue as completed: [4968](https://github.com/hackforla/website/issues/4968#event-10657863073) at 2023-10-15 08:16 AM PDT -anjolaaoluwa,2023-11-05T18:06:57Z,- anjolaaoluwa opened issue: [5852](https://github.com/hackforla/website/issues/5852) at 2023-11-05 10:06 AM PST -anjolaaoluwa,2023-11-05T18:12:47Z,- anjolaaoluwa commented on issue: [5852](https://github.com/hackforla/website/issues/5852#issuecomment-1793807651) at 2023-11-05 10:12 AM PST -anjolaaoluwa,2024-02-11T19:10:01Z,- anjolaaoluwa unassigned from issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1937841409) at 2024-02-11 11:10 AM PST -annaseulgi,2023-11-03T20:15:15Z,- annaseulgi commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1793040656) at 2023-11-03 01:15 PM PDT -annaseulgi,2023-11-06T19:40:12Z,- annaseulgi commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1796181128) at 2023-11-06 11:40 AM PST -Annie-Truong,2022-06-29T05:12:40Z,- Annie-Truong opened issue: [7460](https://github.com/hackforla/website/issues/7460) at 2022-06-28 10:12 PM PDT -Annie-Truong,2022-06-29T05:13:25Z,- Annie-Truong assigned to issue: [7460](https://github.com/hackforla/website/issues/7460) at 2022-06-28 10:13 PM PDT -Annie-Truong,2022-06-29T05:14:45Z,- Annie-Truong commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739555) at 2022-06-28 10:14 PM PDT -Annie-Truong,2022-06-29T17:04:10Z,- Annie-Truong unassigned from issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739555) at 2022-06-29 10:04 AM PDT -annierm18,3709,SKILLS ISSUE -annierm18,2022-11-09T03:33:33Z,- annierm18 opened issue: [3709](https://github.com/hackforla/website/issues/3709) at 2022-11-08 07:33 PM PST -annierm18,2022-11-27T07:35:35Z,- annierm18 assigned to issue: [3709](https://github.com/hackforla/website/issues/3709) at 2022-11-26 11:35 PM PST -annierm18,2022-11-27T19:23:05Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1328321524) at 2022-11-27 11:23 AM PST -annierm18,2023-01-05T21:06:22Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1372757618) at 2023-01-05 01:06 PM PST -annierm18,2023-01-06T20:08:34Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1374073970) at 2023-01-06 12:08 PM PST -annierm18,2023-01-31T03:01:36Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1409671266) at 2023-01-30 07:01 PM PST -annierm18,2023-02-22T05:21:15Z,- annierm18 assigned to issue: [4006](https://github.com/hackforla/website/issues/4006) at 2023-02-21 09:21 PM PST -annierm18,2023-02-22T05:22:55Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1439455746) at 2023-02-21 09:22 PM PST -annierm18,2023-02-25T02:00:30Z,- annierm18 commented on issue: [4006](https://github.com/hackforla/website/issues/4006#issuecomment-1444911220) at 2023-02-24 06:00 PM PST -annierm18,2023-02-25T21:04:14Z,- annierm18 opened pull request: [4048](https://github.com/hackforla/website/pull/4048) at 2023-02-25 01:04 PM PST -annierm18,2023-02-28T08:03:05Z,- annierm18 pull request merged: [4048](https://github.com/hackforla/website/pull/4048#event-8623813671) at 2023-02-28 12:03 AM PST -annierm18,2023-03-02T01:26:01Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1451138586) at 2023-03-01 05:26 PM PST -annierm18,2023-03-15T05:29:29Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1469363006) at 2023-03-14 10:29 PM PDT -annierm18,2023-03-21T04:32:52Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1477268131) at 2023-03-20 09:32 PM PDT -annierm18,2023-03-28T03:02:08Z,- annierm18 assigned to issue: [3746](https://github.com/hackforla/website/issues/3746) at 2023-03-27 08:02 PM PDT -annierm18,2023-03-28T03:03:35Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1486136388) at 2023-03-27 08:03 PM PDT -annierm18,2023-04-01T00:39:35Z,- annierm18 commented on issue: [3746](https://github.com/hackforla/website/issues/3746#issuecomment-1492760417) at 2023-03-31 05:39 PM PDT -annierm18,2023-04-03T02:25:12Z,- annierm18 commented on issue: [3746](https://github.com/hackforla/website/issues/3746#issuecomment-1493548257) at 2023-04-02 07:25 PM PDT -annierm18,2023-04-06T04:10:12Z,- annierm18 opened pull request: [4428](https://github.com/hackforla/website/pull/4428) at 2023-04-05 09:10 PM PDT -annierm18,2023-04-07T04:04:32Z,- annierm18 pull request merged: [4428](https://github.com/hackforla/website/pull/4428#event-8951304070) at 2023-04-06 09:04 PM PDT -annierm18,2023-04-13T04:07:17Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1506312286) at 2023-04-12 09:07 PM PDT -annierm18,2023-04-29T21:14:55Z,- annierm18 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1528873991) at 2023-04-29 02:14 PM PDT -annierm18,2023-04-29T21:14:58Z,- annierm18 closed issue as completed: [3709](https://github.com/hackforla/website/issues/3709#event-9131288688) at 2023-04-29 02:14 PM PDT -anonymousanemone,2021-06-21T18:17:13Z,- anonymousanemone assigned to issue: [1699](https://github.com/hackforla/website/issues/1699) at 2021-06-21 11:17 AM PDT -anonymousanemone,2021-06-23T20:35:32Z,- anonymousanemone assigned to issue: [1570](https://github.com/hackforla/website/issues/1570) at 2021-06-23 01:35 PM PDT -anonymousanemone,2021-06-24T16:41:00Z,- anonymousanemone opened pull request: [1827](https://github.com/hackforla/website/pull/1827) at 2021-06-24 09:41 AM PDT -anonymousanemone,2021-06-24T16:42:59Z,- anonymousanemone pull request merged: [1827](https://github.com/hackforla/website/pull/1827#event-4935728213) at 2021-06-24 09:42 AM PDT -anonymousanemone,2021-06-24T20:45:08Z,- anonymousanemone assigned to issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-24 01:45 PM PDT -anonymousanemone,2021-06-24T21:48:42Z,- anonymousanemone assigned to issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-867973581) at 2021-06-24 02:48 PM PDT -anonymousanemone,2021-06-25T00:50:20Z,- anonymousanemone opened pull request: [1832](https://github.com/hackforla/website/pull/1832) at 2021-06-24 05:50 PM PDT -anonymousanemone,2021-06-25T23:29:33Z,- anonymousanemone commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-868882568) at 2021-06-25 04:29 PM PDT -anonymousanemone,2021-06-27T02:54:17Z,- anonymousanemone unassigned from issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-869091599) at 2021-06-26 07:54 PM PDT -anonymousanemone,2021-06-28T17:36:54Z,- anonymousanemone assigned to issue: [1835](https://github.com/hackforla/website/issues/1835) at 2021-06-28 10:36 AM PDT -anonymousanemone,2021-06-29T22:18:26Z,- anonymousanemone commented on pull request: [1832](https://github.com/hackforla/website/pull/1832#issuecomment-870956483) at 2021-06-29 03:18 PM PDT -anonymousanemone,2021-06-29T22:29:01Z,- anonymousanemone pull request closed w/o merging: [1832](https://github.com/hackforla/website/pull/1832#event-4956356111) at 2021-06-29 03:29 PM PDT -anonymousanemone,2021-06-29T22:36:49Z,- anonymousanemone opened pull request: [1858](https://github.com/hackforla/website/pull/1858) at 2021-06-29 03:36 PM PDT -anonymousanemone,2021-06-29T23:04:27Z,- anonymousanemone opened pull request: [1859](https://github.com/hackforla/website/pull/1859) at 2021-06-29 04:04 PM PDT -anonymousanemone,2021-06-30T18:34:54Z,- anonymousanemone commented on pull request: [1858](https://github.com/hackforla/website/pull/1858#issuecomment-871637234) at 2021-06-30 11:34 AM PDT -anonymousanemone,2021-07-01T02:05:49Z,- anonymousanemone pull request merged: [1858](https://github.com/hackforla/website/pull/1858#event-4962974634) at 2021-06-30 07:05 PM PDT -anonymousanemone,2021-07-01T02:11:24Z,- anonymousanemone pull request closed w/o merging: [1859](https://github.com/hackforla/website/pull/1859#event-4962992535) at 2021-06-30 07:11 PM PDT -anonymousanemone,2021-07-01T04:27:08Z,- anonymousanemone opened pull request: [1870](https://github.com/hackforla/website/pull/1870) at 2021-06-30 09:27 PM PDT -anonymousanemone,2021-07-01T21:09:53Z,- anonymousanemone assigned to issue: [1879](https://github.com/hackforla/website/issues/1879) at 2021-07-01 02:09 PM PDT -anonymousanemone,2021-07-09T23:23:40Z,- anonymousanemone pull request merged: [1870](https://github.com/hackforla/website/pull/1870#event-5002560174) at 2021-07-09 04:23 PM PDT -anonymousanemone,2021-07-11T06:29:16Z,- anonymousanemone assigned to issue: [1908](https://github.com/hackforla/website/issues/1908) at 2021-07-10 11:29 PM PDT -anonymousanemone,2021-07-11T17:36:44Z,- anonymousanemone commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-877836659) at 2021-07-11 10:36 AM PDT -anonymousanemone,2021-07-12T01:38:27Z,- anonymousanemone commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-877908152) at 2021-07-11 06:38 PM PDT -anonymousanemone,2021-07-12T19:46:54Z,- anonymousanemone opened pull request: [1928](https://github.com/hackforla/website/pull/1928) at 2021-07-12 12:46 PM PDT -anonymousanemone,2021-07-19T00:38:45Z,- anonymousanemone commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-882145056) at 2021-07-18 05:38 PM PDT -anonymousanemone,2021-07-19T23:35:42Z,- anonymousanemone commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-882932679) at 2021-07-19 04:35 PM PDT -anonymousanemone,2021-07-21T14:44:43Z,- anonymousanemone assigned to issue: [1993](https://github.com/hackforla/website/issues/1993) at 2021-07-21 07:44 AM PDT -anonymousanemone,2021-07-25T20:15:54Z,- anonymousanemone unassigned from issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-886252289) at 2021-07-25 01:15 PM PDT -anonymousanemone,2021-07-25T20:19:09Z,- anonymousanemone unassigned from issue: [1993](https://github.com/hackforla/website/issues/1993) at 2021-07-25 01:19 PM PDT -anonymousanemone,2021-07-28T15:03:33Z,- anonymousanemone assigned to issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-886252808) at 2021-07-28 08:03 AM PDT -anonymousanemone,2021-07-29T16:21:49Z,- anonymousanemone commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-889285780) at 2021-07-29 09:21 AM PDT -anonymousanemone,2021-07-31T17:25:51Z,- anonymousanemone commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-890379007) at 2021-07-31 10:25 AM PDT -anonymousanemone,2021-08-01T17:04:43Z,- anonymousanemone commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-890554736) at 2021-08-01 10:04 AM PDT -anonymousanemone,2021-08-01T18:16:40Z,- anonymousanemone commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-890564768) at 2021-08-01 11:16 AM PDT -anonymousanemone,2021-08-03T00:02:52Z,- anonymousanemone submitted pull request review: [2022](https://github.com/hackforla/website/pull/2022#pullrequestreview-720674988) at 2021-08-02 05:02 PM PDT -anonymousanemone,2021-08-05T18:27:36Z,- anonymousanemone commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-893685761) at 2021-08-05 11:27 AM PDT -anonymousanemone,2021-08-06T16:10:39Z,- anonymousanemone commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-894364167) at 2021-08-06 09:10 AM PDT -anonymousanemone,2021-08-08T18:27:51Z,- anonymousanemone commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-894836450) at 2021-08-08 11:27 AM PDT -anonymousanemone,2021-08-08T18:52:22Z,- anonymousanemone commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-894839482) at 2021-08-08 11:52 AM PDT -anonymousanemone,2021-08-10T18:40:25Z,- anonymousanemone pull request merged: [1928](https://github.com/hackforla/website/pull/1928#event-5137114085) at 2021-08-10 11:40 AM PDT -anonymousanemone,2021-08-11T02:48:27Z,- anonymousanemone assigned to issue: [2068](https://github.com/hackforla/website/issues/2068) at 2021-08-10 07:48 PM PDT -anonymousanemone,2021-08-13T00:58:49Z,- anonymousanemone assigned to issue: [2021](https://github.com/hackforla/website/issues/2021) at 2021-08-12 05:58 PM PDT -anonymousanemone,2021-08-14T01:46:18Z,- anonymousanemone commented on issue: [2068](https://github.com/hackforla/website/issues/2068#issuecomment-898791732) at 2021-08-13 06:46 PM PDT -anonymousanemone,2021-08-14T01:48:33Z,- anonymousanemone commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-898792175) at 2021-08-13 06:48 PM PDT -anonymousanemone,2021-08-20T07:15:53Z,- anonymousanemone commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-902487406) at 2021-08-20 12:15 AM PDT -anonymousanemone,2021-08-20T07:15:53Z,- anonymousanemone closed issue as completed: [1993](https://github.com/hackforla/website/issues/1993#event-5185199266) at 2021-08-20 12:15 AM PDT -anonymousanemone,2021-08-21T18:23:32Z,- anonymousanemone commented on issue: [2068](https://github.com/hackforla/website/issues/2068#issuecomment-903156571) at 2021-08-21 11:23 AM PDT -anonymousanemone,2021-08-21T19:23:41Z,- anonymousanemone opened pull request: [2156](https://github.com/hackforla/website/pull/2156) at 2021-08-21 12:23 PM PDT -anonymousanemone,2021-08-22T05:33:50Z,- anonymousanemone commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-903216403) at 2021-08-21 10:33 PM PDT -anonymousanemone,2021-08-26T23:53:03Z,- anonymousanemone commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-906818231) at 2021-08-26 04:53 PM PDT -anonymousanemone,2021-08-28T05:49:38Z,- anonymousanemone pull request merged: [2156](https://github.com/hackforla/website/pull/2156#event-5221348713) at 2021-08-27 10:49 PM PDT -anonymousanemone,2021-09-07T20:21:30Z,- anonymousanemone commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-914603627) at 2021-09-07 01:21 PM PDT -anonymousanemone,2021-09-08T00:51:07Z,- anonymousanemone commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-914740060) at 2021-09-07 05:51 PM PDT -anonymousanemone,2021-09-17T04:07:51Z,- anonymousanemone unassigned from issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-920303375) at 2021-09-16 09:07 PM PDT -answebdev,2782,SKILLS ISSUE -answebdev,2022-02-16T03:51:29Z,- answebdev opened issue: [2782](https://github.com/hackforla/website/issues/2782) at 2022-02-15 07:51 PM PST -answebdev,2022-02-16T03:53:27Z,- answebdev assigned to issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1041075130) at 2022-02-15 07:53 PM PST -answebdev,2022-02-16T23:04:30Z,- answebdev assigned to issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2022-02-16 03:04 PM PST -answebdev,2022-02-16T23:16:23Z,- answebdev unassigned from issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2022-02-16 03:16 PM PST -answebdev,2022-02-16T23:16:34Z,- answebdev assigned to issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2022-02-16 03:16 PM PST -answebdev,2022-02-16T23:19:53Z,- answebdev unassigned from issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2022-02-16 03:19 PM PST -answebdev,2022-02-17T00:17:54Z,- answebdev assigned to issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2022-02-16 04:17 PM PST -answebdev,2022-02-17T00:25:55Z,- answebdev unassigned from issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2022-02-16 04:25 PM PST -answebdev,2022-02-17T00:29:21Z,- answebdev assigned to issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2022-02-16 04:29 PM PST -answebdev,2022-02-17T01:12:16Z,- answebdev commented on issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-1042469098) at 2022-02-16 05:12 PM PST -answebdev,2022-02-17T01:58:26Z,- answebdev opened pull request: [2787](https://github.com/hackforla/website/pull/2787) at 2022-02-16 05:58 PM PST -answebdev,2022-02-17T17:37:14Z,- answebdev commented on pull request: [2787](https://github.com/hackforla/website/pull/2787#issuecomment-1043226574) at 2022-02-17 09:37 AM PST -answebdev,2022-02-19T05:37:54Z,- answebdev pull request merged: [2787](https://github.com/hackforla/website/pull/2787#event-6104981383) at 2022-02-18 09:37 PM PST -answebdev,2022-02-19T17:44:29Z,- answebdev commented on pull request: [2787](https://github.com/hackforla/website/pull/2787#issuecomment-1046070279) at 2022-02-19 09:44 AM PST -answebdev,2022-02-19T23:46:48Z,- answebdev assigned to issue: [2277](https://github.com/hackforla/website/issues/2277#issuecomment-926948361) at 2022-02-19 03:46 PM PST -answebdev,2022-02-20T00:07:22Z,- answebdev commented on issue: [2277](https://github.com/hackforla/website/issues/2277#issuecomment-1046128421) at 2022-02-19 04:07 PM PST -answebdev,2022-02-20T20:02:17Z,- answebdev opened issue: [2808](https://github.com/hackforla/website/issues/2808) at 2022-02-20 12:02 PM PST -answebdev,2022-02-20T21:07:06Z,- answebdev opened pull request: [2819](https://github.com/hackforla/website/pull/2819) at 2022-02-20 01:07 PM PST -answebdev,2022-02-21T18:26:04Z,- answebdev commented on pull request: [2819](https://github.com/hackforla/website/pull/2819#issuecomment-1047137960) at 2022-02-21 10:26 AM PST -answebdev,2022-02-21T18:53:49Z,- answebdev opened issue: [2835](https://github.com/hackforla/website/issues/2835) at 2022-02-21 10:53 AM PST -answebdev,2022-02-21T18:57:23Z,- answebdev opened issue: [2836](https://github.com/hackforla/website/issues/2836) at 2022-02-21 10:57 AM PST -answebdev,2022-02-21T19:42:18Z,- answebdev commented on issue: [2835](https://github.com/hackforla/website/issues/2835#issuecomment-1047180410) at 2022-02-21 11:42 AM PST -answebdev,2022-02-21T19:42:18Z,- answebdev closed issue as completed: [2835](https://github.com/hackforla/website/issues/2835#event-6113726384) at 2022-02-21 11:42 AM PST -answebdev,2022-02-22T03:28:56Z,- answebdev pull request merged: [2819](https://github.com/hackforla/website/pull/2819#event-6115070939) at 2022-02-21 07:28 PM PST -answebdev,2022-02-22T03:41:19Z,- answebdev commented on pull request: [2819](https://github.com/hackforla/website/pull/2819#issuecomment-1047395949) at 2022-02-21 07:41 PM PST -answebdev,2022-02-22T23:32:59Z,- answebdev opened issue: [2848](https://github.com/hackforla/website/issues/2848) at 2022-02-22 03:32 PM PST -answebdev,2022-02-22T23:41:34Z,- answebdev opened issue: [2849](https://github.com/hackforla/website/issues/2849) at 2022-02-22 03:41 PM PST -answebdev,2022-02-22T23:48:15Z,- answebdev opened issue: [2850](https://github.com/hackforla/website/issues/2850) at 2022-02-22 03:48 PM PST -answebdev,2022-02-22T23:53:57Z,- answebdev opened issue: [2851](https://github.com/hackforla/website/issues/2851) at 2022-02-22 03:53 PM PST -answebdev,2022-02-23T00:18:20Z,- answebdev opened issue: [2852](https://github.com/hackforla/website/issues/2852) at 2022-02-22 04:18 PM PST -answebdev,2022-02-23T00:23:58Z,- answebdev opened issue: [2853](https://github.com/hackforla/website/issues/2853) at 2022-02-22 04:23 PM PST -answebdev,2022-02-23T18:06:37Z,- answebdev commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1049063410) at 2022-02-23 10:06 AM PST -answebdev,2022-02-23T20:28:39Z,- answebdev submitted pull request review: [2862](https://github.com/hackforla/website/pull/2862#pullrequestreview-891640401) at 2022-02-23 12:28 PM PST -answebdev,2022-02-25T18:54:51Z,- answebdev assigned to issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1007372244) at 2022-02-25 10:54 AM PST -answebdev,2022-02-26T18:17:03Z,- answebdev commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1052410133) at 2022-02-26 10:17 AM PST -answebdev,2022-02-26T23:25:20Z,- answebdev commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1052779964) at 2022-02-26 03:25 PM PST -answebdev,2022-02-27T00:00:59Z,- answebdev commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1052818572) at 2022-02-26 04:00 PM PST -answebdev,2022-02-27T18:27:30Z,- answebdev commented on pull request: [2899](https://github.com/hackforla/website/pull/2899#issuecomment-1053639030) at 2022-02-27 10:27 AM PST -answebdev,2022-02-28T18:38:05Z,- answebdev submitted pull request review: [2899](https://github.com/hackforla/website/pull/2899#pullrequestreview-895458977) at 2022-02-28 10:38 AM PST -answebdev,2022-02-28T18:57:17Z,- answebdev assigned to issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1019553870) at 2022-02-28 10:57 AM PST -answebdev,2022-03-01T17:52:45Z,- answebdev commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1055701641) at 2022-03-01 09:52 AM PST -answebdev,2022-03-01T18:40:04Z,- answebdev opened issue: [2907](https://github.com/hackforla/website/issues/2907) at 2022-03-01 10:40 AM PST -answebdev,2022-03-01T22:54:03Z,- answebdev opened issue: [2909](https://github.com/hackforla/website/issues/2909) at 2022-03-01 02:54 PM PST -answebdev,2022-03-01T23:01:17Z,- answebdev opened issue: [2910](https://github.com/hackforla/website/issues/2910) at 2022-03-01 03:01 PM PST -answebdev,2022-03-01T23:15:32Z,- answebdev opened issue: [2911](https://github.com/hackforla/website/issues/2911) at 2022-03-01 03:15 PM PST -answebdev,2022-03-01T23:56:24Z,- answebdev commented on issue: [2907](https://github.com/hackforla/website/issues/2907#issuecomment-1055987213) at 2022-03-01 03:56 PM PST -answebdev,2022-03-02T00:08:15Z,- answebdev opened issue: [2912](https://github.com/hackforla/website/issues/2912) at 2022-03-01 04:08 PM PST -answebdev,2022-03-02T01:08:45Z,- answebdev opened issue: [2913](https://github.com/hackforla/website/issues/2913) at 2022-03-01 05:08 PM PST -answebdev,2022-03-02T01:16:05Z,- answebdev opened issue: [2914](https://github.com/hackforla/website/issues/2914) at 2022-03-01 05:16 PM PST -answebdev,2022-03-02T16:25:46Z,- answebdev opened issue: [2916](https://github.com/hackforla/website/issues/2916) at 2022-03-02 08:25 AM PST -answebdev,2022-03-02T17:13:59Z,- answebdev commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1057175255) at 2022-03-02 09:13 AM PST -answebdev,2022-03-08T18:14:13Z,- answebdev opened issue: [2941](https://github.com/hackforla/website/issues/2941) at 2022-03-08 10:14 AM PST -answebdev,2022-03-08T18:30:17Z,- answebdev opened issue: [2942](https://github.com/hackforla/website/issues/2942) at 2022-03-08 10:30 AM PST -answebdev,2022-03-09T20:36:12Z,- answebdev commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1063347326) at 2022-03-09 12:36 PM PST -answebdev,2022-03-11T18:14:16Z,- answebdev commented on pull request: [2957](https://github.com/hackforla/website/pull/2957#issuecomment-1065362779) at 2022-03-11 10:14 AM PST -answebdev,2022-03-11T18:39:19Z,- answebdev submitted pull request review: [2957](https://github.com/hackforla/website/pull/2957#pullrequestreview-907591388) at 2022-03-11 10:39 AM PST -answebdev,2022-03-11T23:06:39Z,- answebdev commented on pull request: [2966](https://github.com/hackforla/website/pull/2966#issuecomment-1065621191) at 2022-03-11 03:06 PM PST -answebdev,2022-03-11T23:16:38Z,- answebdev submitted pull request review: [2966](https://github.com/hackforla/website/pull/2966#pullrequestreview-907882126) at 2022-03-11 03:16 PM PST -answebdev,2022-03-11T23:33:09Z,- answebdev commented on pull request: [2965](https://github.com/hackforla/website/pull/2965#issuecomment-1065645511) at 2022-03-11 03:33 PM PST -answebdev,2022-03-11T23:45:28Z,- answebdev submitted pull request review: [2965](https://github.com/hackforla/website/pull/2965#pullrequestreview-907893653) at 2022-03-11 03:45 PM PST -answebdev,2022-03-12T14:53:02Z,- answebdev commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1065896633) at 2022-03-12 07:53 AM PDT -answebdev,2022-03-12T23:27:51Z,- answebdev commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1065983750) at 2022-03-12 04:27 PM PDT -answebdev,2022-03-14T23:13:38Z,- answebdev commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1067391555) at 2022-03-14 04:13 PM PDT -answebdev,2022-03-16T16:55:17Z,- answebdev commented on pull request: [2986](https://github.com/hackforla/website/pull/2986#issuecomment-1069351768) at 2022-03-16 09:55 AM PDT -answebdev,2022-03-16T18:02:51Z,- answebdev assigned to issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1017723029) at 2022-03-16 11:02 AM PDT -answebdev,2022-03-16T22:37:34Z,- answebdev submitted pull request review: [2986](https://github.com/hackforla/website/pull/2986#pullrequestreview-912353037) at 2022-03-16 03:37 PM PDT -answebdev,2022-03-17T00:18:13Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1069768216) at 2022-03-16 05:18 PM PDT -answebdev,2022-03-20T17:17:36Z,- answebdev commented on pull request: [2991](https://github.com/hackforla/website/pull/2991#issuecomment-1073294936) at 2022-03-20 10:17 AM PDT -answebdev,2022-03-21T19:21:31Z,- answebdev submitted pull request review: [2991](https://github.com/hackforla/website/pull/2991#pullrequestreview-916250947) at 2022-03-21 12:21 PM PDT -answebdev,2022-03-23T02:41:55Z,- answebdev commented on pull request: [3001](https://github.com/hackforla/website/pull/3001#issuecomment-1075856841) at 2022-03-22 07:41 PM PDT -answebdev,2022-03-23T16:30:04Z,- answebdev commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1076542212) at 2022-03-23 09:30 AM PDT -answebdev,2022-03-23T16:30:40Z,- answebdev closed issue as completed: [2782](https://github.com/hackforla/website/issues/2782#event-6293122664) at 2022-03-23 09:30 AM PDT -answebdev,2022-03-23T16:32:03Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1076544463) at 2022-03-23 09:32 AM PDT -answebdev,2022-03-23T17:52:06Z,- answebdev submitted pull request review: [3001](https://github.com/hackforla/website/pull/3001#pullrequestreview-919202478) at 2022-03-23 10:52 AM PDT -answebdev,2022-03-24T00:09:25Z,- answebdev commented on pull request: [3006](https://github.com/hackforla/website/pull/3006#issuecomment-1076937418) at 2022-03-23 05:09 PM PDT -answebdev,2022-03-24T00:18:34Z,- answebdev submitted pull request review: [3006](https://github.com/hackforla/website/pull/3006#pullrequestreview-919585130) at 2022-03-23 05:18 PM PDT -answebdev,2022-03-25T21:28:41Z,- answebdev commented on pull request: [3010](https://github.com/hackforla/website/pull/3010#issuecomment-1079448261) at 2022-03-25 02:28 PM PDT -answebdev,2022-03-25T21:38:38Z,- answebdev submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-922160413) at 2022-03-25 02:38 PM PDT -answebdev,2022-03-26T21:55:42Z,- answebdev submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-922362048) at 2022-03-26 02:55 PM PDT -answebdev,2022-03-28T02:19:36Z,- answebdev submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-922554547) at 2022-03-27 07:19 PM PDT -answebdev,2022-03-30T02:38:21Z,- answebdev commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1082558788) at 2022-03-29 07:38 PM PDT -answebdev,2022-03-30T21:54:51Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1083664122) at 2022-03-30 02:54 PM PDT -answebdev,2022-03-30T22:43:19Z,- answebdev submitted pull request review: [3020](https://github.com/hackforla/website/pull/3020#pullrequestreview-926803897) at 2022-03-30 03:43 PM PDT -answebdev,2022-04-02T01:10:37Z,- answebdev commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086446711) at 2022-04-01 06:10 PM PDT -answebdev,2022-04-02T01:24:22Z,- answebdev assigned to issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086446711) at 2022-04-01 06:24 PM PDT -answebdev,2022-04-02T01:25:35Z,- answebdev commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086457285) at 2022-04-01 06:25 PM PDT -answebdev,2022-04-02T01:47:34Z,- answebdev submitted pull request review: [3020](https://github.com/hackforla/website/pull/3020#pullrequestreview-929507904) at 2022-04-01 06:47 PM PDT -answebdev,2022-04-02T01:53:05Z,- answebdev commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086477058) at 2022-04-01 06:53 PM PDT -answebdev,2022-04-03T19:04:48Z,- answebdev unassigned from issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086928837) at 2022-04-03 12:04 PM PDT -answebdev,2022-04-04T18:37:39Z,- answebdev commented on pull request: [3033](https://github.com/hackforla/website/pull/3033#issuecomment-1087886654) at 2022-04-04 11:37 AM PDT -answebdev,2022-04-04T20:05:27Z,- answebdev submitted pull request review: [3033](https://github.com/hackforla/website/pull/3033#pullrequestreview-930892280) at 2022-04-04 01:05 PM PDT -answebdev,2022-04-05T03:43:29Z,- answebdev closed issue by PR 3020: [2764](https://github.com/hackforla/website/issues/2764#event-6367677188) at 2022-04-04 08:43 PM PDT -answebdev,2022-04-06T22:05:11Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1090855840) at 2022-04-06 03:05 PM PDT -answebdev,2022-04-07T00:53:01Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1090968978) at 2022-04-06 05:53 PM PDT -answebdev,2022-04-08T17:11:02Z,- answebdev commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1093099429) at 2022-04-08 10:11 AM PDT -answebdev,2022-04-08T17:24:58Z,- answebdev submitted pull request review: [3037](https://github.com/hackforla/website/pull/3037#pullrequestreview-936764302) at 2022-04-08 10:24 AM PDT -answebdev,2022-04-08T17:38:45Z,- answebdev closed issue by PR 3037: [3025](https://github.com/hackforla/website/issues/3025#event-6398173043) at 2022-04-08 10:38 AM PDT -answebdev,2022-04-09T16:59:50Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1094085324) at 2022-04-09 09:59 AM PDT -answebdev,2022-04-10T17:34:13Z,- answebdev commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1094333680) at 2022-04-10 10:34 AM PDT -answebdev,2022-04-13T19:12:19Z,- answebdev commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1098392336) at 2022-04-13 12:12 PM PDT -answebdev,2022-04-13T21:43:39Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1098516222) at 2022-04-13 02:43 PM PDT -answebdev,2022-04-14T04:02:03Z,- answebdev closed issue by PR 3046: [3016](https://github.com/hackforla/website/issues/3016#event-6431658997) at 2022-04-13 09:02 PM PDT -answebdev,2022-04-15T22:33:46Z,- answebdev commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1100447743) at 2022-04-15 03:33 PM PDT -answebdev,2022-04-15T22:57:34Z,- answebdev submitted pull request review: [3057](https://github.com/hackforla/website/pull/3057#pullrequestreview-943782140) at 2022-04-15 03:57 PM PDT -answebdev,2022-04-16T01:17:32Z,- answebdev commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1100497200) at 2022-04-15 06:17 PM PDT -answebdev,2022-04-18T01:19:36Z,- answebdev submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-944008357) at 2022-04-17 06:19 PM PDT -answebdev,2022-04-19T15:29:07Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1102792882) at 2022-04-19 08:29 AM PDT -answebdev,2022-04-20T22:08:18Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1104503143) at 2022-04-20 03:08 PM PDT -answebdev,2022-04-28T01:49:32Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1111651833) at 2022-04-27 06:49 PM PDT -answebdev,2022-04-28T04:36:23Z,- answebdev commented on issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1111737326) at 2022-04-27 09:36 PM PDT -answebdev,2022-05-05T01:17:03Z,- answebdev commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1118076560) at 2022-05-04 06:17 PM PDT -answebdev,2022-05-05T02:16:07Z,- answebdev submitted pull request review: [3083](https://github.com/hackforla/website/pull/3083#pullrequestreview-962806473) at 2022-05-04 07:16 PM PDT -answebdev,2022-05-05T03:29:33Z,- answebdev submitted pull request review: [3083](https://github.com/hackforla/website/pull/3083#pullrequestreview-962827022) at 2022-05-04 08:29 PM PDT -answebdev,2022-05-05T03:48:11Z,- answebdev closed issue by PR 3083: [2555](https://github.com/hackforla/website/issues/2555#event-6553607396) at 2022-05-04 08:48 PM PDT -answebdev,2022-05-06T04:55:13Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1119259558) at 2022-05-05 09:55 PM PDT -answebdev,2022-05-06T22:10:27Z,- answebdev commented on pull request: [3108](https://github.com/hackforla/website/pull/3108#issuecomment-1120045770) at 2022-05-06 03:10 PM PDT -answebdev,2022-05-06T22:25:54Z,- answebdev submitted pull request review: [3108](https://github.com/hackforla/website/pull/3108#pullrequestreview-965232448) at 2022-05-06 03:25 PM PDT -answebdev,2022-05-07T01:10:40Z,- answebdev commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1120098495) at 2022-05-06 06:10 PM PDT -answebdev,2022-05-07T01:37:21Z,- answebdev submitted pull request review: [2984](https://github.com/hackforla/website/pull/2984#pullrequestreview-965273878) at 2022-05-06 06:37 PM PDT -answebdev,2022-05-09T23:32:58Z,- answebdev commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1121686019) at 2022-05-09 04:32 PM PDT -answebdev,2022-05-12T22:09:27Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1125465235) at 2022-05-12 03:09 PM PDT -answebdev,2022-05-13T21:58:50Z,- answebdev commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126538746) at 2022-05-13 02:58 PM PDT -answebdev,2022-05-13T22:21:56Z,- answebdev submitted pull request review: [3134](https://github.com/hackforla/website/pull/3134#pullrequestreview-972911767) at 2022-05-13 03:21 PM PDT -answebdev,2022-05-13T23:59:20Z,- answebdev commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126585041) at 2022-05-13 04:59 PM PDT -answebdev,2022-05-18T02:38:47Z,- answebdev commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1129507036) at 2022-05-17 07:38 PM PDT -answebdev,2022-05-18T22:50:51Z,- answebdev commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1130669478) at 2022-05-18 03:50 PM PDT -answebdev,2022-05-18T23:02:38Z,- answebdev commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1130687995) at 2022-05-18 04:02 PM PDT -answebdev,2022-05-18T23:12:14Z,- answebdev submitted pull request review: [3158](https://github.com/hackforla/website/pull/3158#pullrequestreview-977741778) at 2022-05-18 04:12 PM PDT -answebdev,2022-05-18T23:29:07Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1130729311) at 2022-05-18 04:29 PM PDT -answebdev,2022-05-20T22:16:22Z,- answebdev commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1133427982) at 2022-05-20 03:16 PM PDT -answebdev,2022-05-20T22:41:36Z,- answebdev submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-980717163) at 2022-05-20 03:41 PM PDT -answebdev,2022-05-21T00:18:19Z,- answebdev commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133478978) at 2022-05-20 05:18 PM PDT -answebdev,2022-05-21T00:28:51Z,- answebdev submitted pull request review: [3163](https://github.com/hackforla/website/pull/3163#pullrequestreview-980750270) at 2022-05-20 05:28 PM PDT -answebdev,2022-05-21T00:57:22Z,- answebdev commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133488001) at 2022-05-20 05:57 PM PDT -answebdev,2022-05-21T15:10:36Z,- answebdev closed issue by PR 3163: [3105](https://github.com/hackforla/website/issues/3105#event-6655046259) at 2022-05-21 08:10 AM PDT -answebdev,2022-05-22T18:39:31Z,- answebdev commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1133951350) at 2022-05-22 11:39 AM PDT -answebdev,2022-05-22T18:39:31Z,- answebdev closed issue by PR 3134: [2934](https://github.com/hackforla/website/issues/2934#event-6656505321) at 2022-05-22 11:39 AM PDT -answebdev,2022-05-22T18:51:34Z,- answebdev commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1133953071) at 2022-05-22 11:51 AM PDT -answebdev,2022-05-22T23:25:45Z,- answebdev opened issue: [3165](https://github.com/hackforla/website/issues/3165) at 2022-05-22 04:25 PM PDT -answebdev,2022-05-22T23:38:07Z,- answebdev opened issue: [3166](https://github.com/hackforla/website/issues/3166) at 2022-05-22 04:38 PM PDT -answebdev,2022-05-25T21:39:08Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1137871700) at 2022-05-25 02:39 PM PDT -answebdev,2022-05-26T02:07:52Z,- answebdev commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1138066234) at 2022-05-25 07:07 PM PDT -answebdev,2022-05-27T21:52:46Z,- answebdev submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-988171434) at 2022-05-27 02:52 PM PDT -answebdev,2022-05-27T22:02:53Z,- answebdev commented on pull request: [3176](https://github.com/hackforla/website/pull/3176#issuecomment-1140069101) at 2022-05-27 03:02 PM PDT -answebdev,2022-05-27T22:13:32Z,- answebdev submitted pull request review: [3176](https://github.com/hackforla/website/pull/3176#pullrequestreview-988191293) at 2022-05-27 03:13 PM PDT -answebdev,2022-05-29T18:56:39Z,- answebdev commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1140505357) at 2022-05-29 11:56 AM PDT -answebdev,2022-06-01T01:48:45Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1143028134) at 2022-05-31 06:48 PM PDT -answebdev,2022-06-08T22:12:53Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1150466976) at 2022-06-08 03:12 PM PDT -answebdev,2022-06-08T22:23:37Z,- answebdev closed issue by PR 2984: [2458](https://github.com/hackforla/website/issues/2458#event-6773463350) at 2022-06-08 03:23 PM PDT -answebdev,2022-06-08T22:34:35Z,- answebdev commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1150479743) at 2022-06-08 03:34 PM PDT -answebdev,2022-06-08T22:39:40Z,- answebdev submitted pull request review: [3231](https://github.com/hackforla/website/pull/3231#pullrequestreview-1000528987) at 2022-06-08 03:39 PM PDT -answebdev,2022-06-09T00:41:47Z,- answebdev commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1150550906) at 2022-06-08 05:41 PM PDT -answebdev,2022-06-09T00:42:04Z,- answebdev closed issue by PR 3231: [3215](https://github.com/hackforla/website/issues/3215#event-6773929902) at 2022-06-08 05:42 PM PDT -answebdev,2022-06-11T01:13:33Z,- answebdev commented on pull request: [3226](https://github.com/hackforla/website/pull/3226#issuecomment-1152826443) at 2022-06-10 06:13 PM PDT -answebdev,2022-06-11T01:18:37Z,- answebdev submitted pull request review: [3226](https://github.com/hackforla/website/pull/3226#pullrequestreview-1003408344) at 2022-06-10 06:18 PM PDT -answebdev,2022-06-11T01:22:52Z,- answebdev closed issue by PR 3226: [3214](https://github.com/hackforla/website/issues/3214#event-6789394648) at 2022-06-10 06:22 PM PDT -answebdev,2022-06-13T21:57:38Z,- answebdev commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1154479403) at 2022-06-13 02:57 PM PDT -answebdev,2022-06-16T01:15:00Z,- answebdev commented on pull request: [3241](https://github.com/hackforla/website/pull/3241#issuecomment-1157127956) at 2022-06-15 06:15 PM PDT -answebdev,2022-06-16T01:18:06Z,- answebdev submitted pull request review: [3241](https://github.com/hackforla/website/pull/3241#pullrequestreview-1008384635) at 2022-06-15 06:18 PM PDT -answebdev,2022-06-16T01:21:10Z,- answebdev closed issue by PR 3241: [3090](https://github.com/hackforla/website/issues/3090#event-6817326588) at 2022-06-15 06:21 PM PDT -answebdev,2022-06-16T01:53:59Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1157145386) at 2022-06-15 06:53 PM PDT -answebdev,2022-06-18T01:48:13Z,- answebdev commented on pull request: [3258](https://github.com/hackforla/website/pull/3258#issuecomment-1159335863) at 2022-06-17 06:48 PM PDT -answebdev,2022-06-18T01:54:40Z,- answebdev submitted pull request review: [3258](https://github.com/hackforla/website/pull/3258#pullrequestreview-1011239455) at 2022-06-17 06:54 PM PDT -answebdev,2022-06-18T01:55:15Z,- answebdev commented on pull request: [3258](https://github.com/hackforla/website/pull/3258#issuecomment-1159336863) at 2022-06-17 06:55 PM PDT -answebdev,2022-06-22T00:57:56Z,- answebdev opened issue: [3279](https://github.com/hackforla/website/issues/3279) at 2022-06-21 05:57 PM PDT -answebdev,2022-06-22T01:23:43Z,- answebdev opened issue: [3284](https://github.com/hackforla/website/issues/3284) at 2022-06-21 06:23 PM PDT -answebdev,2022-06-22T22:47:18Z,- answebdev commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1163724934) at 2022-06-22 03:47 PM PDT -answebdev,2022-06-22T22:47:37Z,- answebdev unassigned from issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1163724934) at 2022-06-22 03:47 PM PDT -answebdev,2022-06-23T00:18:44Z,- answebdev commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1163793051) at 2022-06-22 05:18 PM PDT -answebdev,2022-06-23T00:24:18Z,- answebdev submitted pull request review: [3264](https://github.com/hackforla/website/pull/3264#pullrequestreview-1016194153) at 2022-06-22 05:24 PM PDT -answebdev,2022-06-23T00:25:58Z,- answebdev commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1163796532) at 2022-06-22 05:25 PM PDT -answebdev,2022-06-25T01:36:42Z,- answebdev commented on pull request: [3298](https://github.com/hackforla/website/pull/3298#issuecomment-1166166311) at 2022-06-24 06:36 PM PDT -answebdev,2022-06-25T01:43:38Z,- answebdev submitted pull request review: [3298](https://github.com/hackforla/website/pull/3298#pullrequestreview-1019247793) at 2022-06-24 06:43 PM PDT -answebdev,2022-06-25T01:48:04Z,- answebdev commented on pull request: [3297](https://github.com/hackforla/website/pull/3297#issuecomment-1166167986) at 2022-06-24 06:48 PM PDT -answebdev,2022-06-25T01:58:09Z,- answebdev submitted pull request review: [3297](https://github.com/hackforla/website/pull/3297#pullrequestreview-1019249033) at 2022-06-24 06:58 PM PDT -antho-zng,5349,SKILLS ISSUE -antho-zng,2023-08-30T03:39:01Z,- antho-zng opened issue: [5349](https://github.com/hackforla/website/issues/5349) at 2023-08-29 08:39 PM PDT -antho-zng,2023-08-31T19:17:16Z,- antho-zng assigned to issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1697618049) at 2023-08-31 12:17 PM PDT -antho-zng,2023-08-31T19:20:07Z,- antho-zng commented on issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1701643861) at 2023-08-31 12:20 PM PDT -antho-zng,2023-08-31T19:20:34Z,- antho-zng commented on issue: [5349](https://github.com/hackforla/website/issues/5349#issuecomment-1701645747) at 2023-08-31 12:20 PM PDT -antho-zng,2023-08-31T19:40:48Z,- antho-zng opened pull request: [5399](https://github.com/hackforla/website/pull/5399) at 2023-08-31 12:40 PM PDT -antho-zng,2023-08-31T20:13:20Z,- antho-zng submitted pull request review: [5397](https://github.com/hackforla/website/pull/5397#pullrequestreview-1605638698) at 2023-08-31 01:13 PM PDT -antho-zng,2023-08-31T20:53:10Z,- antho-zng commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1701766176) at 2023-08-31 01:53 PM PDT -antho-zng,2023-09-01T01:42:40Z,- antho-zng submitted pull request review: [5396](https://github.com/hackforla/website/pull/5396#pullrequestreview-1605978800) at 2023-08-31 06:42 PM PDT -antho-zng,2023-09-01T01:49:38Z,- antho-zng commented on pull request: [5398](https://github.com/hackforla/website/pull/5398#issuecomment-1702000598) at 2023-08-31 06:49 PM PDT -antho-zng,2023-09-01T01:56:01Z,- antho-zng submitted pull request review: [5398](https://github.com/hackforla/website/pull/5398#pullrequestreview-1606005484) at 2023-08-31 06:56 PM PDT -antho-zng,2023-09-03T00:26:52Z,- antho-zng pull request merged: [5399](https://github.com/hackforla/website/pull/5399#event-10265059623) at 2023-09-02 05:26 PM PDT -antho-zng,2023-09-03T17:53:16Z,- antho-zng assigned to issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704055275) at 2023-09-03 10:53 AM PDT -antho-zng,2023-09-03T17:56:24Z,- antho-zng commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704363824) at 2023-09-03 10:56 AM PDT -antho-zng,2023-09-03T18:20:29Z,- antho-zng opened pull request: [5431](https://github.com/hackforla/website/pull/5431) at 2023-09-03 11:20 AM PDT -antho-zng,2023-09-03T18:27:50Z,- antho-zng pull request closed w/o merging: [5431](https://github.com/hackforla/website/pull/5431#event-10266969416) at 2023-09-03 11:27 AM PDT -antho-zng,2023-09-03T18:41:26Z,- antho-zng reopened pull request: [5431](https://github.com/hackforla/website/pull/5431#event-10266969416) at 2023-09-03 11:41 AM PDT -antho-zng,2023-09-03T19:17:53Z,- antho-zng commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1704380451) at 2023-09-03 12:17 PM PDT -antho-zng,2023-09-03T19:36:52Z,- antho-zng pull request closed w/o merging: [5431](https://github.com/hackforla/website/pull/5431#event-10267145323) at 2023-09-03 12:36 PM PDT -antho-zng,2023-09-03T19:37:36Z,- antho-zng unassigned from issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704363824) at 2023-09-03 12:37 PM PDT -antho-zng,2023-09-07T19:22:36Z,- antho-zng commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1710659345) at 2023-09-07 12:22 PM PDT -antho-zng,2023-09-07T19:31:10Z,- antho-zng assigned to issue: [5389](https://github.com/hackforla/website/issues/5389) at 2023-09-07 12:31 PM PDT -antho-zng,2023-09-07T19:31:50Z,- antho-zng commented on issue: [5389](https://github.com/hackforla/website/issues/5389#issuecomment-1710670127) at 2023-09-07 12:31 PM PDT -antho-zng,2023-09-07T19:55:23Z,- antho-zng opened pull request: [5455](https://github.com/hackforla/website/pull/5455) at 2023-09-07 12:55 PM PDT -antho-zng,2023-09-07T20:04:23Z,- antho-zng commented on pull request: [5454](https://github.com/hackforla/website/pull/5454#issuecomment-1710704633) at 2023-09-07 01:04 PM PDT -antho-zng,2023-09-07T20:09:40Z,- antho-zng submitted pull request review: [5454](https://github.com/hackforla/website/pull/5454#pullrequestreview-1616171169) at 2023-09-07 01:09 PM PDT -antho-zng,2023-09-07T21:49:15Z,- antho-zng pull request closed w/o merging: [5455](https://github.com/hackforla/website/pull/5455#event-10311942283) at 2023-09-07 02:49 PM PDT -antho-zng,2023-09-08T18:39:01Z,- antho-zng opened pull request: [5465](https://github.com/hackforla/website/pull/5465) at 2023-09-08 11:39 AM PDT -antho-zng,2023-09-08T18:43:06Z,- antho-zng commented on pull request: [5464](https://github.com/hackforla/website/pull/5464#issuecomment-1712085044) at 2023-09-08 11:43 AM PDT -antho-zng,2023-09-08T18:48:21Z,- antho-zng submitted pull request review: [5464](https://github.com/hackforla/website/pull/5464#pullrequestreview-1618078442) at 2023-09-08 11:48 AM PDT -antho-zng,2023-09-08T18:51:16Z,- antho-zng commented on pull request: [5458](https://github.com/hackforla/website/pull/5458#issuecomment-1712093364) at 2023-09-08 11:51 AM PDT -antho-zng,2023-09-08T18:58:43Z,- antho-zng submitted pull request review: [5458](https://github.com/hackforla/website/pull/5458#pullrequestreview-1618091692) at 2023-09-08 11:58 AM PDT -antho-zng,2023-09-10T16:52:21Z,- antho-zng pull request merged: [5465](https://github.com/hackforla/website/pull/5465#event-10326799622) at 2023-09-10 09:52 AM PDT -antho-zng,2023-09-13T02:29:08Z,- antho-zng commented on pull request: [5457](https://github.com/hackforla/website/pull/5457#issuecomment-1716850623) at 2023-09-12 07:29 PM PDT -antho-zng,2023-09-13T02:47:50Z,- antho-zng commented on issue: [5349](https://github.com/hackforla/website/issues/5349#issuecomment-1716862179) at 2023-09-12 07:47 PM PDT -antho-zng,2023-09-14T03:49:42Z,- antho-zng submitted pull request review: [5457](https://github.com/hackforla/website/pull/5457#pullrequestreview-1625781387) at 2023-09-13 08:49 PM PDT -antho-zng,2023-09-18T18:47:45Z,- antho-zng assigned to issue: [5322](https://github.com/hackforla/website/issues/5322) at 2023-09-18 11:47 AM PDT -antho-zng,2023-09-18T18:48:27Z,- antho-zng commented on issue: [5322](https://github.com/hackforla/website/issues/5322#issuecomment-1724187115) at 2023-09-18 11:48 AM PDT -antho-zng,2023-09-18T19:24:45Z,- antho-zng opened pull request: [5554](https://github.com/hackforla/website/pull/5554) at 2023-09-18 12:24 PM PDT -antho-zng,2023-09-18T19:35:32Z,- antho-zng commented on pull request: [5552](https://github.com/hackforla/website/pull/5552#issuecomment-1724252292) at 2023-09-18 12:35 PM PDT -antho-zng,2023-09-18T19:46:25Z,- antho-zng submitted pull request review: [5552](https://github.com/hackforla/website/pull/5552#pullrequestreview-1631846092) at 2023-09-18 12:46 PM PDT -antho-zng,2023-09-18T19:58:30Z,- antho-zng commented on pull request: [5553](https://github.com/hackforla/website/pull/5553#issuecomment-1724282313) at 2023-09-18 12:58 PM PDT -antho-zng,2023-09-18T20:05:12Z,- antho-zng submitted pull request review: [5553](https://github.com/hackforla/website/pull/5553#pullrequestreview-1631871951) at 2023-09-18 01:05 PM PDT -antho-zng,2023-09-21T18:56:42Z,- antho-zng commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1730133138) at 2023-09-21 11:56 AM PDT -antho-zng,2023-09-21T20:09:28Z,- antho-zng pull request merged: [5554](https://github.com/hackforla/website/pull/5554#event-10439915114) at 2023-09-21 01:09 PM PDT -antho-zng,2023-09-26T16:32:31Z,- antho-zng assigned to issue: [4888](https://github.com/hackforla/website/issues/4888#issuecomment-1608983904) at 2023-09-26 09:32 AM PDT -antho-zng,2023-09-26T16:33:12Z,- antho-zng commented on issue: [4888](https://github.com/hackforla/website/issues/4888#issuecomment-1735898252) at 2023-09-26 09:33 AM PDT -antho-zng,2023-09-26T16:59:22Z,- antho-zng commented on issue: [4888](https://github.com/hackforla/website/issues/4888#issuecomment-1735939678) at 2023-09-26 09:59 AM PDT -antho-zng,2023-09-26T20:57:55Z,- antho-zng closed issue as completed: [5349](https://github.com/hackforla/website/issues/5349#event-10480026404) at 2023-09-26 01:57 PM PDT -antho-zng,2024-02-14T05:41:16Z,- antho-zng assigned to issue: [5349](https://github.com/hackforla/website/issues/5349#event-10480026404) at 2024-02-13 09:41 PM PST -anthonylo87,4316,SKILLS ISSUE -anthonylo87,2023-03-29T03:18:41Z,- anthonylo87 opened issue: [4316](https://github.com/hackforla/website/issues/4316) at 2023-03-28 08:18 PM PDT -anthonylo87,2023-03-29T03:54:55Z,- anthonylo87 assigned to issue: [4316](https://github.com/hackforla/website/issues/4316) at 2023-03-28 08:54 PM PDT -anthonypz,4616,SKILLS ISSUE -anthonypz,2023-05-09T03:27:25Z,- anthonypz opened issue: [4616](https://github.com/hackforla/website/issues/4616) at 2023-05-08 08:27 PM PDT -anthonypz,2023-05-09T04:02:34Z,- anthonypz assigned to issue: [4616](https://github.com/hackforla/website/issues/4616) at 2023-05-08 09:02 PM PDT -anthonypz,2023-05-11T01:33:38Z,- anthonypz closed issue as not planned: [4616](https://github.com/hackforla/website/issues/4616#event-9216803856) at 2023-05-10 06:33 PM PDT -anthonypz,2023-05-29T02:49:59Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1566418722) at 2023-05-28 07:49 PM PDT -anthonypz,2024-01-03T03:03:54Z,- anthonypz opened issue: [6027](https://github.com/hackforla/website/issues/6027) at 2024-01-02 07:03 PM PST -anthonypz,2024-01-07T04:47:56Z,- anthonypz reopened issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1566418722) at 2024-01-06 08:47 PM PST -anthonypz,2024-01-07T04:52:26Z,- anthonypz commented on issue: [6027](https://github.com/hackforla/website/issues/6027#issuecomment-1879938152) at 2024-01-06 08:52 PM PST -anthonypz,2024-01-07T04:52:43Z,- anthonypz closed issue as not planned: [6027](https://github.com/hackforla/website/issues/6027#event-11410309553) at 2024-01-06 08:52 PM PST -anthonypz,2024-01-07T05:46:48Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1879956104) at 2024-01-06 09:46 PM PST -anthonypz,2024-01-07T18:42:44Z,- anthonypz assigned to issue: [5965](https://github.com/hackforla/website/issues/5965#issuecomment-1848871188) at 2024-01-07 10:42 AM PST -anthonypz,2024-01-07T19:23:18Z,- anthonypz commented on issue: [5965](https://github.com/hackforla/website/issues/5965#issuecomment-1880147885) at 2024-01-07 11:23 AM PST -anthonypz,2024-01-07T19:38:33Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1880151433) at 2024-01-07 11:38 AM PST -anthonypz,2024-01-07T23:07:20Z,- anthonypz opened pull request: [6075](https://github.com/hackforla/website/pull/6075) at 2024-01-07 03:07 PM PST -anthonypz,2024-01-10T05:29:39Z,- anthonypz pull request merged: [6075](https://github.com/hackforla/website/pull/6075#event-11438644466) at 2024-01-09 09:29 PM PST -anthonypz,2024-02-29T08:08:38Z,- anthonypz assigned to issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1970257195) at 2024-02-29 12:08 AM PST -anthonypz,2024-02-29T08:16:44Z,- anthonypz commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1970627299) at 2024-02-29 12:16 AM PST -anthonypz,2024-02-29T08:31:35Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1970649002) at 2024-02-29 12:31 AM PST -anthonypz,2024-02-29T17:59:41Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1971669218) at 2024-02-29 09:59 AM PST -anthonypz,2024-02-29T19:23:02Z,- anthonypz opened pull request: [6400](https://github.com/hackforla/website/pull/6400) at 2024-02-29 11:23 AM PST -anthonypz,2024-03-01T06:19:18Z,- anthonypz pull request merged: [6400](https://github.com/hackforla/website/pull/6400#event-11975111489) at 2024-02-29 10:19 PM PST -anthonypz,2024-03-08T06:12:23Z,- anthonypz assigned to issue: [6086](https://github.com/hackforla/website/issues/6086#issuecomment-1984882834) at 2024-03-07 10:12 PM PST -anthonypz,2024-03-08T06:16:10Z,- anthonypz commented on issue: [6086](https://github.com/hackforla/website/issues/6086#issuecomment-1985101293) at 2024-03-07 10:16 PM PST -anthonypz,2024-03-09T02:37:56Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1986700941) at 2024-03-08 07:37 PM PDT -anthonypz,2024-03-24T20:03:10Z,- anthonypz assigned to issue: [6480](https://github.com/hackforla/website/issues/6480#issuecomment-2008678312) at 2024-03-24 01:03 PM PDT -anthonypz,2024-03-24T21:30:01Z,- anthonypz commented on issue: [6480](https://github.com/hackforla/website/issues/6480#issuecomment-2016950012) at 2024-03-24 02:30 PM PDT -anthonypz,2024-03-24T21:32:48Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-2016951360) at 2024-03-24 02:32 PM PDT -anthonypz,2024-03-25T03:16:13Z,- anthonypz opened pull request: [6517](https://github.com/hackforla/website/pull/6517) at 2024-03-24 08:16 PM PDT -anthonypz,2024-03-25T03:18:19Z,- anthonypz commented on issue: [6480](https://github.com/hackforla/website/issues/6480#issuecomment-2017137418) at 2024-03-24 08:18 PM PDT -anthonypz,2024-03-27T20:29:08Z,- anthonypz commented on pull request: [6517](https://github.com/hackforla/website/pull/6517#issuecomment-2023921814) at 2024-03-27 01:29 PM PDT -anthonypz,2024-04-01T09:46:18Z,- anthonypz pull request merged: [6517](https://github.com/hackforla/website/pull/6517#event-12308897815) at 2024-04-01 02:46 AM PDT -anthonypz,2024-04-12T15:25:18Z,- anthonypz assigned to issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2014389162) at 2024-04-12 08:25 AM PDT -anthonypz,2024-04-12T15:37:26Z,- anthonypz commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2051996761) at 2024-04-12 08:37 AM PDT -anthonypz,2024-04-12T15:41:08Z,- anthonypz commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-2052003282) at 2024-04-12 08:41 AM PDT -anthonypz,2024-04-16T02:43:51Z,- anthonypz submitted pull request review: [6652](https://github.com/hackforla/website/pull/6652#pullrequestreview-2002482228) at 2024-04-15 07:43 PM PDT -anthonypz,2024-04-16T02:50:22Z,- anthonypz closed issue as completed: [4616](https://github.com/hackforla/website/issues/4616#event-12480931450) at 2024-04-15 07:50 PM PDT -anthonypz,2024-04-19T02:05:53Z,- anthonypz opened pull request: [6685](https://github.com/hackforla/website/pull/6685) at 2024-04-18 07:05 PM PDT -anthonypz,2024-04-19T03:43:47Z,- anthonypz submitted pull request review: [6685](https://github.com/hackforla/website/pull/6685#pullrequestreview-2010469913) at 2024-04-18 08:43 PM PDT -anthonypz,2024-04-23T00:36:59Z,- anthonypz commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2071176467) at 2024-04-22 05:36 PM PDT -anthonypz,2024-04-24T22:48:36Z,- anthonypz commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2075976093) at 2024-04-24 03:48 PM PDT -anthonypz,2024-04-27T22:31:59Z,- anthonypz commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2081218207) at 2024-04-27 03:31 PM PDT -anthonypz,2024-04-28T03:32:47Z,- anthonypz commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2081310664) at 2024-04-27 08:32 PM PDT -anthonypz,2024-04-28T03:57:52Z,- anthonypz pull request merged: [6685](https://github.com/hackforla/website/pull/6685#event-12633706400) at 2024-04-27 08:57 PM PDT -anthonypz,2024-04-30T19:13:42Z,- anthonypz opened pull request: [6790](https://github.com/hackforla/website/pull/6790) at 2024-04-30 12:13 PM PDT -anthonypz,2024-04-30T21:55:14Z,- anthonypz pull request merged: [6790](https://github.com/hackforla/website/pull/6790#event-12664380895) at 2024-04-30 02:55 PM PDT -anthonysim,2521,SKILLS ISSUE -anthonysim,2021-11-30T03:42:06Z,- anthonysim opened issue: [2521](https://github.com/hackforla/website/issues/2521) at 2021-11-29 07:42 PM PST -anthonysim,2021-11-30T03:44:38Z,- anthonysim assigned to issue: [2521](https://github.com/hackforla/website/issues/2521) at 2021-11-29 07:44 PM PST -anthonysim,2021-12-01T20:06:23Z,- anthonysim assigned to issue: [2434](https://github.com/hackforla/website/issues/2434#issuecomment-958188543) at 2021-12-01 12:06 PM PST -anthonysim,2021-12-01T20:07:37Z,- anthonysim commented on issue: [2434](https://github.com/hackforla/website/issues/2434#issuecomment-984013562) at 2021-12-01 12:07 PM PST -anthonysim,2021-12-02T02:30:20Z,- anthonysim opened pull request: [2534](https://github.com/hackforla/website/pull/2534) at 2021-12-01 06:30 PM PST -anthonysim,2021-12-02T02:31:44Z,- anthonysim commented on pull request: [2534](https://github.com/hackforla/website/pull/2534#issuecomment-984236309) at 2021-12-01 06:31 PM PST -anthonysim,2021-12-02T03:24:52Z,- anthonysim closed issue as completed: [2521](https://github.com/hackforla/website/issues/2521#event-5703086247) at 2021-12-01 07:24 PM PST -anthonysim,2021-12-03T02:42:21Z,- anthonysim assigned to issue: [2234](https://github.com/hackforla/website/issues/2234) at 2021-12-02 06:42 PM PST -anthonysim,2021-12-03T02:43:55Z,- anthonysim commented on issue: [2234](https://github.com/hackforla/website/issues/2234#issuecomment-985168748) at 2021-12-02 06:43 PM PST -anthonysim,2021-12-04T23:44:02Z,- anthonysim pull request merged: [2534](https://github.com/hackforla/website/pull/2534#event-5716184139) at 2021-12-04 03:44 PM PST -anthonysim,2021-12-05T19:19:55Z,- anthonysim submitted pull request review: [2546](https://github.com/hackforla/website/pull/2546#pullrequestreview-823424127) at 2021-12-05 11:19 AM PST -anthonysim,2021-12-05T20:32:12Z,- anthonysim commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-986295260) at 2021-12-05 12:32 PM PST -anthonysim,2021-12-06T04:14:01Z,- anthonysim opened pull request: [2548](https://github.com/hackforla/website/pull/2548) at 2021-12-05 08:14 PM PST -anthonysim,2021-12-06T04:21:49Z,- anthonysim pull request closed w/o merging: [2548](https://github.com/hackforla/website/pull/2548#event-5718016375) at 2021-12-05 08:21 PM PST -anthonysim,2021-12-06T04:22:15Z,- anthonysim commented on pull request: [2548](https://github.com/hackforla/website/pull/2548#issuecomment-986426114) at 2021-12-05 08:22 PM PST -anthonysim,2021-12-06T04:27:04Z,- anthonysim opened pull request: [2549](https://github.com/hackforla/website/pull/2549) at 2021-12-05 08:27 PM PST -anthonysim,2021-12-06T04:30:11Z,- anthonysim commented on pull request: [2549](https://github.com/hackforla/website/pull/2549#issuecomment-986429662) at 2021-12-05 08:30 PM PST -anthonysim,2021-12-07T01:49:58Z,- anthonysim assigned to issue: [2487](https://github.com/hackforla/website/issues/2487#issuecomment-968535572) at 2021-12-06 05:49 PM PST -anthonysim,2021-12-07T01:52:31Z,- anthonysim commented on issue: [2487](https://github.com/hackforla/website/issues/2487#issuecomment-987494335) at 2021-12-06 05:52 PM PST -anthonysim,2021-12-08T03:54:05Z,- anthonysim submitted pull request review: [2556](https://github.com/hackforla/website/pull/2556#pullrequestreview-825985244) at 2021-12-07 07:54 PM PST -anthonysim,2021-12-09T02:22:57Z,- anthonysim commented on pull request: [2549](https://github.com/hackforla/website/pull/2549#issuecomment-989443995) at 2021-12-08 06:22 PM PST -anthonysim,2021-12-10T00:18:27Z,- anthonysim pull request merged: [2549](https://github.com/hackforla/website/pull/2549#event-5744517886) at 2021-12-09 04:18 PM PST -anthonysim,2021-12-10T15:54:50Z,- anthonysim commented on issue: [2487](https://github.com/hackforla/website/issues/2487#issuecomment-991086738) at 2021-12-10 07:54 AM PST -anthonysim,2021-12-11T00:08:09Z,- anthonysim opened pull request: [2575](https://github.com/hackforla/website/pull/2575) at 2021-12-10 04:08 PM PST -anthonysim,2021-12-11T00:33:31Z,- anthonysim assigned to issue: [2474](https://github.com/hackforla/website/issues/2474#issuecomment-965937454) at 2021-12-10 04:33 PM PST -anthonysim,2021-12-11T00:35:12Z,- anthonysim commented on issue: [2474](https://github.com/hackforla/website/issues/2474#issuecomment-991392123) at 2021-12-10 04:35 PM PST -anthonysim,2021-12-12T18:58:47Z,- anthonysim submitted pull request review: [2577](https://github.com/hackforla/website/pull/2577#pullrequestreview-829658549) at 2021-12-12 10:58 AM PST -anthonysim,2021-12-13T04:55:39Z,- anthonysim commented on pull request: [2575](https://github.com/hackforla/website/pull/2575#issuecomment-992110336) at 2021-12-12 08:55 PM PST -anthonysim,2021-12-15T02:13:21Z,- anthonysim pull request merged: [2575](https://github.com/hackforla/website/pull/2575#event-5768317096) at 2021-12-14 06:13 PM PST -anthonysim,2021-12-15T17:15:11Z,- anthonysim submitted pull request review: [2587](https://github.com/hackforla/website/pull/2587#pullrequestreview-833110649) at 2021-12-15 09:15 AM PST -anthonysim,2021-12-18T22:30:29Z,- anthonysim opened pull request: [2602](https://github.com/hackforla/website/pull/2602) at 2021-12-18 02:30 PM PST -anthonysim,2021-12-18T22:36:45Z,- anthonysim commented on pull request: [2602](https://github.com/hackforla/website/pull/2602#issuecomment-997294291) at 2021-12-18 02:36 PM PST -anthonysim,2021-12-18T22:53:08Z,- anthonysim commented on pull request: [2602](https://github.com/hackforla/website/pull/2602#issuecomment-997296113) at 2021-12-18 02:53 PM PST -anthonysim,2021-12-18T22:53:09Z,- anthonysim pull request closed w/o merging: [2602](https://github.com/hackforla/website/pull/2602#event-5788542482) at 2021-12-18 02:53 PM PST -anthonysim,2021-12-18T22:59:42Z,- anthonysim opened pull request: [2603](https://github.com/hackforla/website/pull/2603) at 2021-12-18 02:59 PM PST -anthonysim,2021-12-18T23:03:45Z,- anthonysim commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-997297121) at 2021-12-18 03:03 PM PST -anthonysim,2021-12-18T23:32:21Z,- anthonysim assigned to issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-951195918) at 2021-12-18 03:32 PM PST -anthonysim,2021-12-19T18:50:54Z,- anthonysim submitted pull request review: [2594](https://github.com/hackforla/website/pull/2594#pullrequestreview-835892643) at 2021-12-19 10:50 AM PST -anthonysim,2021-12-19T19:27:40Z,- anthonysim unassigned from issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-951195918) at 2021-12-19 11:27 AM PST -anthonysim,2021-12-20T00:10:09Z,- anthonysim commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-997489587) at 2021-12-19 04:10 PM PST -anthonysim,2021-12-20T19:54:32Z,- anthonysim commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-998224797) at 2021-12-20 11:54 AM PST -anthonysim,2021-12-22T04:23:51Z,- anthonysim commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-999276159) at 2021-12-21 08:23 PM PST -anthonysim,2021-12-22T17:34:11Z,- anthonysim assigned to issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-951195918) at 2021-12-22 09:34 AM PST -anthonysim,2021-12-23T03:12:02Z,- anthonysim submitted pull request review: [2603](https://github.com/hackforla/website/pull/2603#pullrequestreview-838975729) at 2021-12-22 07:12 PM PST -anthonysim,2021-12-23T16:40:56Z,- anthonysim commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1000416367) at 2021-12-23 08:40 AM PST -anthonysim,2021-12-30T08:31:45Z,- anthonysim pull request merged: [2603](https://github.com/hackforla/website/pull/2603#event-5827135221) at 2021-12-30 12:31 AM PST -anthonysim,2021-12-30T18:40:20Z,- anthonysim commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1003141522) at 2021-12-30 10:40 AM PST -anthonysim,2022-01-02T03:23:21Z,- anthonysim submitted pull request review: [2643](https://github.com/hackforla/website/pull/2643#pullrequestreview-842377134) at 2022-01-01 07:23 PM PST -anthonysim,2022-01-05T02:28:25Z,- anthonysim commented on pull request: [2648](https://github.com/hackforla/website/pull/2648#issuecomment-1005329099) at 2022-01-04 06:28 PM PST -anthonysim,2022-01-05T03:24:26Z,- anthonysim commented on pull request: [2648](https://github.com/hackforla/website/pull/2648#issuecomment-1005350888) at 2022-01-04 07:24 PM PST -anthonysim,2022-01-05T03:24:37Z,- anthonysim submitted pull request review: [2648](https://github.com/hackforla/website/pull/2648#pullrequestreview-844186010) at 2022-01-04 07:24 PM PST -anthonysim,2022-01-08T03:18:07Z,- anthonysim opened pull request: [2672](https://github.com/hackforla/website/pull/2672) at 2022-01-07 07:18 PM PST -anthonysim,2022-01-11T05:31:55Z,- anthonysim submitted pull request review: [2678](https://github.com/hackforla/website/pull/2678#pullrequestreview-848615891) at 2022-01-10 09:31 PM PST -anthonysim,2022-01-11T06:32:45Z,- anthonysim commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009639665) at 2022-01-10 10:32 PM PST -anthonysim,2022-01-11T06:54:41Z,- anthonysim commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009649128) at 2022-01-10 10:54 PM PST -anthonysim,2022-01-16T18:51:07Z,- anthonysim commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1013931101) at 2022-01-16 10:51 AM PST -anthonysim,2022-01-19T03:27:57Z,- anthonysim commented on pull request: [2696](https://github.com/hackforla/website/pull/2696#issuecomment-1016045240) at 2022-01-18 07:27 PM PST -anthonysim,2022-01-19T03:35:12Z,- anthonysim submitted pull request review: [2693](https://github.com/hackforla/website/pull/2693#pullrequestreview-856212958) at 2022-01-18 07:35 PM PST -anthonysim,2022-01-22T03:04:53Z,- anthonysim commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1019027297) at 2022-01-21 07:04 PM PST -anthonysim,2022-01-22T03:09:35Z,- anthonysim submitted pull request review: [2696](https://github.com/hackforla/website/pull/2696#pullrequestreview-860160774) at 2022-01-21 07:09 PM PST -anthonysim,2022-01-26T03:46:49Z,- anthonysim commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1021834773) at 2022-01-25 07:46 PM PST -anthonysim,2022-01-26T04:00:28Z,- anthonysim submitted pull request review: [2713](https://github.com/hackforla/website/pull/2713#pullrequestreview-863094724) at 2022-01-25 08:00 PM PST -anthonysim,2022-01-26T04:11:48Z,- anthonysim commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1021844451) at 2022-01-25 08:11 PM PST -anthonysim,2022-01-26T22:31:12Z,- anthonysim commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1022663533) at 2022-01-26 02:31 PM PST -anthonysim,2022-01-29T07:17:14Z,- anthonysim submitted pull request review: [2710](https://github.com/hackforla/website/pull/2710#pullrequestreview-866885035) at 2022-01-28 11:17 PM PST -anthonysim,2022-01-29T07:21:19Z,- anthonysim unassigned from issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1014154476) at 2022-01-28 11:21 PM PST -antonio-revilla,2019-11-23T04:00:22Z,- antonio-revilla assigned to issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -antonio-revilla,2020-03-30T04:37:52Z,- antonio-revilla unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-03-29 09:37 PM PDT -anurajdhillon,2022-11-10T18:46:54Z,- anurajdhillon commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739559) at 2022-11-10 10:46 AM PST -AnyaStewart,2021-11-11T21:15:14Z,- AnyaStewart assigned to issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-961446386) at 2021-11-11 01:15 PM PST -AnyaStewart,2021-11-12T02:48:52Z,- AnyaStewart commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-966777084) at 2021-11-11 06:48 PM PST -AnyaStewart,2021-11-22T01:43:49Z,- AnyaStewart commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-974998281) at 2021-11-21 05:43 PM PST -AnyaStewart,2021-12-03T01:01:56Z,- AnyaStewart assigned to issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-975840028) at 2021-12-02 05:01 PM PST -AnyaStewart,2021-12-10T05:28:29Z,- AnyaStewart commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-990630111) at 2021-12-09 09:28 PM PST -AnyaStewart,2021-12-13T01:40:56Z,- AnyaStewart commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-992034569) at 2021-12-12 05:40 PM PST -AnyaStewart,2022-01-06T18:46:14Z,- AnyaStewart commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1006829932) at 2022-01-06 10:46 AM PST -AnyaStewart,2022-01-12T04:02:19Z,- AnyaStewart commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1010609421) at 2022-01-11 08:02 PM PST -AnyaStewart,2022-01-14T22:44:23Z,- AnyaStewart opened issue: [2686](https://github.com/hackforla/website/issues/2686) at 2022-01-14 02:44 PM PST -AnyaStewart,2022-01-16T20:52:19Z,- AnyaStewart assigned to issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1013902531) at 2022-01-16 12:52 PM PST -AnyaStewart,2022-01-20T02:41:54Z,- AnyaStewart commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1017064145) at 2022-01-19 06:41 PM PST -AnyaStewart,2022-01-21T21:44:32Z,- AnyaStewart commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1018886836) at 2022-01-21 01:44 PM PST -AnyaStewart,2022-01-21T21:56:29Z,- AnyaStewart commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1018893312) at 2022-01-21 01:56 PM PST -AnyaStewart,2022-01-23T19:11:59Z,- AnyaStewart commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1019548626) at 2022-01-23 11:11 AM PST -AnyaStewart,2022-02-06T19:36:33Z,- AnyaStewart unassigned from issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1029717009) at 2022-02-06 11:36 AM PST -AnyaStewart,2022-02-20T18:59:20Z,- AnyaStewart commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1046299930) at 2022-02-20 10:59 AM PST -AnyaStewart,2022-03-11T00:05:56Z,- AnyaStewart commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1064638884) at 2022-03-10 04:05 PM PST -Aparna1Gopal,2022-11-03T03:52:08Z,- Aparna1Gopal opened issue: [3691](https://github.com/hackforla/website/issues/3691) at 2022-11-02 08:52 PM PDT -Aparna1Gopal,2023-03-02T07:55:50Z,- Aparna1Gopal opened issue: [4087](https://github.com/hackforla/website/issues/4087) at 2023-03-01 11:55 PM PST -Aparna1Gopal,2023-11-02T02:17:25Z,- Aparna1Gopal opened issue: [5824](https://github.com/hackforla/website/issues/5824) at 2023-11-01 07:17 PM PDT -Aparna1Gopal,2023-11-22T14:08:04Z,- Aparna1Gopal commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1822841852) at 2023-11-22 06:08 AM PST -Aparna1Gopal,2024-01-12T03:55:38Z,- Aparna1Gopal opened issue: [6101](https://github.com/hackforla/website/issues/6101) at 2024-01-11 07:55 PM PST -Aparna1Gopal,2024-01-17T09:14:36Z,- Aparna1Gopal commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1895394446) at 2024-01-17 01:14 AM PST -Aparna1Gopal,2024-02-05T07:37:05Z,- Aparna1Gopal commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1926383563) at 2024-02-04 11:37 PM PST -Aparna1Gopal,2024-07-03T03:46:00Z,- Aparna1Gopal opened issue: [7087](https://github.com/hackforla/website/issues/7087) at 2024-07-02 08:46 PM PDT -Aparna1Gopal,2025-04-03T06:03:41Z,- Aparna1Gopal opened issue: [8040](https://github.com/hackforla/website/issues/8040) at 2025-04-02 11:03 PM PDT -aparnar1920,2025-04-24T19:28:06Z,- aparnar1920 commented on issue: [7677](https://github.com/hackforla/website/issues/7677#issuecomment-2828653310) at 2025-04-24 12:28 PM PDT -aparnar1920,2025-04-24T20:08:00Z,- aparnar1920 commented on issue: [7664](https://github.com/hackforla/website/issues/7664#issuecomment-2828739868) at 2025-04-24 01:08 PM PDT -aparnar1920,2025-05-07T20:04:50Z,- aparnar1920 assigned to issue: [7677](https://github.com/hackforla/website/issues/7677#issuecomment-2828653310) at 2025-05-07 01:04 PM PDT -aparnar1920,2025-05-07T21:10:49Z,- aparnar1920 assigned to issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2781796949) at 2025-05-07 02:10 PM PDT -aparnar1920,2025-05-14T22:13:51Z,- aparnar1920 commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2881708887) at 2025-05-14 03:13 PM PDT -aparnar1920,2025-05-28T20:25:24Z,- aparnar1920 commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2917521767) at 2025-05-28 01:25 PM PDT -aparnar1920,2025-06-18T12:20:26Z,- aparnar1920 commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2983977309) at 2025-06-18 05:20 AM PDT -apaulture,2024-08-23T02:46:17Z,- apaulture opened pull request: [7344](https://github.com/hackforla/website/pull/7344) at 2024-08-22 07:46 PM PDT -apaulture,2024-08-23T02:46:42Z,- apaulture pull request closed w/o merging: [7344](https://github.com/hackforla/website/pull/7344#event-13986772937) at 2024-08-22 07:46 PM PDT -aqandrew,6429,SKILLS ISSUE -aqandrew,2024-03-05T04:15:16Z,- aqandrew opened issue: [6429](https://github.com/hackforla/website/issues/6429) at 2024-03-04 08:15 PM PST -aqandrew,2024-03-05T04:15:19Z,- aqandrew assigned to issue: [6429](https://github.com/hackforla/website/issues/6429) at 2024-03-04 08:15 PM PST -aqandrew,2024-03-05T20:12:35Z,- aqandrew assigned to issue: [5826](https://github.com/hackforla/website/issues/5826#issuecomment-1907202103) at 2024-03-05 12:12 PM PST -aqandrew,2024-03-05T20:19:57Z,- aqandrew commented on issue: [5826](https://github.com/hackforla/website/issues/5826#issuecomment-1979569762) at 2024-03-05 12:19 PM PST -aqandrew,2024-03-05T20:21:31Z,- aqandrew commented on issue: [6429](https://github.com/hackforla/website/issues/6429#issuecomment-1979574143) at 2024-03-05 12:21 PM PST -aqandrew,2024-03-05T21:10:15Z,- aqandrew opened pull request: [6434](https://github.com/hackforla/website/pull/6434) at 2024-03-05 01:10 PM PST -aqandrew,2024-03-05T21:47:30Z,- aqandrew submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1918195610) at 2024-03-05 01:47 PM PST -aqandrew,2024-03-05T22:38:04Z,- aqandrew assigned to issue: [5850](https://github.com/hackforla/website/issues/5850#issuecomment-1911134639) at 2024-03-05 02:38 PM PST -aqandrew,2024-03-05T22:43:28Z,- aqandrew commented on issue: [5850](https://github.com/hackforla/website/issues/5850#issuecomment-1979762033) at 2024-03-05 02:43 PM PST -aqandrew,2024-03-05T23:04:55Z,- aqandrew opened pull request: [6436](https://github.com/hackforla/website/pull/6436) at 2024-03-05 03:04 PM PST -aqandrew,2024-03-06T03:18:47Z,- aqandrew pull request merged: [6434](https://github.com/hackforla/website/pull/6434#event-12021978957) at 2024-03-05 07:18 PM PST -aqandrew,2024-03-07T05:09:51Z,- aqandrew pull request merged: [6436](https://github.com/hackforla/website/pull/6436#event-12036550463) at 2024-03-06 09:09 PM PST -aqandrew,2024-03-07T17:25:31Z,- aqandrew assigned to issue: [6090](https://github.com/hackforla/website/issues/6090) at 2024-03-07 09:25 AM PST -aqandrew,2024-03-07T17:33:34Z,- aqandrew commented on issue: [6090](https://github.com/hackforla/website/issues/6090#issuecomment-1984069044) at 2024-03-07 09:33 AM PST -aqandrew,2024-03-07T17:48:53Z,- aqandrew commented on issue: [6090](https://github.com/hackforla/website/issues/6090#issuecomment-1984112911) at 2024-03-07 09:48 AM PST -aqandrew,2024-03-15T19:23:12Z,- aqandrew commented on issue: [6429](https://github.com/hackforla/website/issues/6429#issuecomment-2000313709) at 2024-03-15 12:23 PM PDT -aqandrew,2024-03-20T23:34:35Z,- aqandrew closed issue as completed: [6429](https://github.com/hackforla/website/issues/6429#event-12192744438) at 2024-03-20 04:34 PM PDT -aqandrew,2024-03-20T23:35:40Z,- aqandrew reopened issue: [6429](https://github.com/hackforla/website/issues/6429#event-12192744438) at 2024-03-20 04:35 PM PDT -aqandrew,2024-03-20T23:39:44Z,- aqandrew commented on issue: [6429](https://github.com/hackforla/website/issues/6429#issuecomment-2010912573) at 2024-03-20 04:39 PM PDT -aqandrew,2024-03-20T23:39:45Z,- aqandrew closed issue as completed: [6429](https://github.com/hackforla/website/issues/6429#event-12192772541) at 2024-03-20 04:39 PM PDT -aqandrew,2024-03-27T17:11:30Z,- aqandrew assigned to issue: [6479](https://github.com/hackforla/website/issues/6479#issuecomment-2008666422) at 2024-03-27 10:11 AM PDT -aqandrew,2024-03-27T17:16:30Z,- aqandrew commented on issue: [6479](https://github.com/hackforla/website/issues/6479#issuecomment-2023348526) at 2024-03-27 10:16 AM PDT -aqandrew,2024-03-27T17:51:58Z,- aqandrew commented on issue: [6479](https://github.com/hackforla/website/issues/6479#issuecomment-2023422712) at 2024-03-27 10:51 AM PDT -aqandrew,2024-03-27T18:18:52Z,- aqandrew opened pull request: [6536](https://github.com/hackforla/website/pull/6536) at 2024-03-27 11:18 AM PDT -aqandrew,2024-03-28T21:30:55Z,- aqandrew commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026165155) at 2024-03-28 02:30 PM PDT -aqandrew,2024-03-28T21:50:55Z,- aqandrew submitted pull request review: [6543](https://github.com/hackforla/website/pull/6543#pullrequestreview-1967428280) at 2024-03-28 02:50 PM PDT -aqandrew,2024-03-28T22:17:55Z,- aqandrew opened issue: [6544](https://github.com/hackforla/website/issues/6544) at 2024-03-28 03:17 PM PDT -aqandrew,2024-03-31T03:12:34Z,- aqandrew pull request merged: [6536](https://github.com/hackforla/website/pull/6536#event-12302227370) at 2024-03-30 08:12 PM PDT -aqandrew,2024-04-01T21:22:53Z,- aqandrew commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2030580196) at 2024-04-01 02:22 PM PDT -aqandrew,2024-04-03T04:11:53Z,- aqandrew submitted pull request review: [6553](https://github.com/hackforla/website/pull/6553#pullrequestreview-1975447903) at 2024-04-02 09:11 PM PDT -aramattamara,5559,SKILLS ISSUE -aramattamara,2023-09-20T02:12:58Z,- aramattamara opened issue: [5559](https://github.com/hackforla/website/issues/5559) at 2023-09-19 07:12 PM PDT -aramattamara,2023-09-20T02:55:43Z,- aramattamara assigned to issue: [5559](https://github.com/hackforla/website/issues/5559) at 2023-09-19 07:55 PM PDT -aramattamara,2023-09-20T03:05:16Z,- aramattamara assigned to issue: [5509](https://github.com/hackforla/website/issues/5509#issuecomment-1722398213) at 2023-09-19 08:05 PM PDT -aramattamara,2023-09-20T06:16:26Z,- aramattamara commented on issue: [5509](https://github.com/hackforla/website/issues/5509#issuecomment-1727035961) at 2023-09-19 11:16 PM PDT -aramattamara,2023-09-20T21:14:18Z,- aramattamara commented on issue: [5559](https://github.com/hackforla/website/issues/5559#issuecomment-1728435971) at 2023-09-20 02:14 PM PDT -aramattamara,2023-09-20T22:17:05Z,- aramattamara opened pull request: [5563](https://github.com/hackforla/website/pull/5563) at 2023-09-20 03:17 PM PDT -aramattamara,2023-09-20T22:40:14Z,- aramattamara closed issue as completed: [5559](https://github.com/hackforla/website/issues/5559#event-10428319824) at 2023-09-20 03:40 PM PDT -aramattamara,2023-09-27T20:37:16Z,- aramattamara commented on pull request: [5574](https://github.com/hackforla/website/pull/5574#issuecomment-1738044336) at 2023-09-27 01:37 PM PDT -aramattamara,2023-09-27T20:37:59Z,- aramattamara commented on pull request: [5544](https://github.com/hackforla/website/pull/5544#issuecomment-1738045140) at 2023-09-27 01:37 PM PDT -aramattamara,2023-09-28T04:06:16Z,- aramattamara submitted pull request review: [5574](https://github.com/hackforla/website/pull/5574#pullrequestreview-1647852191) at 2023-09-27 09:06 PM PDT -aramattamara,2023-09-28T04:19:16Z,- aramattamara pull request merged: [5563](https://github.com/hackforla/website/pull/5563#event-10494235033) at 2023-09-27 09:19 PM PDT -aramattamara,2023-09-28T04:48:04Z,- aramattamara submitted pull request review: [5574](https://github.com/hackforla/website/pull/5574#pullrequestreview-1647881615) at 2023-09-27 09:48 PM PDT -aramattamara,2023-09-28T05:28:56Z,- aramattamara submitted pull request review: [5544](https://github.com/hackforla/website/pull/5544#pullrequestreview-1647922750) at 2023-09-27 10:28 PM PDT -aramattamara,2023-10-01T08:14:53Z,- aramattamara opened issue: [5639](https://github.com/hackforla/website/issues/5639) at 2023-10-01 01:14 AM PDT -aramattamara,2023-10-02T02:14:38Z,- aramattamara commented on issue: [5639](https://github.com/hackforla/website/issues/5639#issuecomment-1742314185) at 2023-10-01 07:14 PM PDT -aramattamara,2023-10-02T02:52:11Z,- aramattamara opened pull request: [5641](https://github.com/hackforla/website/pull/5641) at 2023-10-01 07:52 PM PDT -aramattamara,2023-10-18T06:54:34Z,- aramattamara commented on pull request: [5641](https://github.com/hackforla/website/pull/5641#issuecomment-1767788531) at 2023-10-17 11:54 PM PDT -aramattamara,2023-10-18T16:19:28Z,- aramattamara pull request merged: [5641](https://github.com/hackforla/website/pull/5641#event-10695857328) at 2023-10-18 09:19 AM PDT -aramattamara,2023-11-16T06:22:14Z,- aramattamara commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1813856354) at 2023-11-15 10:22 PM PST -aramattamara,2023-11-17T21:50:00Z,- aramattamara commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1817152622) at 2023-11-17 01:50 PM PST -aramattamara,2023-11-21T06:58:36Z,- aramattamara submitted pull request review: [5891](https://github.com/hackforla/website/pull/5891#pullrequestreview-1741233080) at 2023-11-20 10:58 PM PST -arcan9,4066,SKILLS ISSUE -arcan9,2023-03-01T04:08:06Z,- arcan9 opened issue: [4066](https://github.com/hackforla/website/issues/4066) at 2023-02-28 08:08 PM PST -arcan9,2023-03-01T04:24:24Z,- arcan9 assigned to issue: [4066](https://github.com/hackforla/website/issues/4066) at 2023-02-28 08:24 PM PST -arcan9,2023-03-09T00:23:29Z,- arcan9 assigned to issue: [4026](https://github.com/hackforla/website/issues/4026#issuecomment-1454306318) at 2023-03-08 04:23 PM PST -arcan9,2023-03-09T00:25:46Z,- arcan9 commented on issue: [4026](https://github.com/hackforla/website/issues/4026#issuecomment-1461076990) at 2023-03-08 04:25 PM PST -arcan9,2023-03-09T00:27:42Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1461078481) at 2023-03-08 04:27 PM PST -arcan9,2023-03-09T06:36:33Z,- arcan9 opened pull request: [4139](https://github.com/hackforla/website/pull/4139) at 2023-03-08 10:36 PM PST -arcan9,2023-03-12T06:50:03Z,- arcan9 pull request merged: [4139](https://github.com/hackforla/website/pull/4139#event-8725152630) at 2023-03-11 11:50 PM PDT -arcan9,2023-03-12T22:56:56Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1465322151) at 2023-03-12 03:56 PM PDT -arcan9,2023-03-12T23:11:48Z,- arcan9 assigned to issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1465104338) at 2023-03-12 04:11 PM PDT -arcan9,2023-03-12T23:17:05Z,- arcan9 commented on issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1465326864) at 2023-03-12 04:17 PM PDT -arcan9,2023-03-13T04:16:38Z,- arcan9 opened pull request: [4156](https://github.com/hackforla/website/pull/4156) at 2023-03-12 09:16 PM PDT -arcan9,2023-03-14T07:43:44Z,- arcan9 commented on pull request: [4175](https://github.com/hackforla/website/pull/4175#issuecomment-1467560222) at 2023-03-14 12:43 AM PDT -arcan9,2023-03-14T08:55:44Z,- arcan9 submitted pull request review: [4175](https://github.com/hackforla/website/pull/4175#pullrequestreview-1338758198) at 2023-03-14 01:55 AM PDT -arcan9,2023-03-14T18:34:11Z,- arcan9 commented on pull request: [4175](https://github.com/hackforla/website/pull/4175#issuecomment-1468630062) at 2023-03-14 11:34 AM PDT -arcan9,2023-03-15T05:07:06Z,- arcan9 pull request merged: [4156](https://github.com/hackforla/website/pull/4156#event-8751078721) at 2023-03-14 10:07 PM PDT -arcan9,2023-03-15T05:52:12Z,- arcan9 assigned to issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1461226654) at 2023-03-14 10:52 PM PDT -arcan9,2023-03-15T05:54:26Z,- arcan9 commented on issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1469384105) at 2023-03-14 10:54 PM PDT -arcan9,2023-03-17T21:09:27Z,- arcan9 commented on pull request: [4202](https://github.com/hackforla/website/pull/4202#issuecomment-1474405422) at 2023-03-17 02:09 PM PDT -arcan9,2023-03-18T01:13:49Z,- arcan9 commented on pull request: [4204](https://github.com/hackforla/website/pull/4204#issuecomment-1474559081) at 2023-03-17 06:13 PM PDT -arcan9,2023-03-18T02:07:43Z,- arcan9 opened pull request: [4205](https://github.com/hackforla/website/pull/4205) at 2023-03-17 07:07 PM PDT -arcan9,2023-03-18T02:32:43Z,- arcan9 submitted pull request review: [4202](https://github.com/hackforla/website/pull/4202#pullrequestreview-1346869924) at 2023-03-17 07:32 PM PDT -arcan9,2023-03-18T02:46:23Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1474628085) at 2023-03-17 07:46 PM PDT -arcan9,2023-03-19T03:01:56Z,- arcan9 submitted pull request review: [4204](https://github.com/hackforla/website/pull/4204#pullrequestreview-1347348241) at 2023-03-18 08:01 PM PDT -arcan9,2023-03-19T20:20:12Z,- arcan9 commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1475386199) at 2023-03-19 01:20 PM PDT -arcan9,2023-03-20T04:25:28Z,- arcan9 pull request merged: [4205](https://github.com/hackforla/website/pull/4205#event-8790084115) at 2023-03-19 09:25 PM PDT -arcan9,2023-03-21T19:05:43Z,- arcan9 commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478440424) at 2023-03-21 12:05 PM PDT -arcan9,2023-03-21T20:02:59Z,- arcan9 assigned to issue: [4183](https://github.com/hackforla/website/issues/4183) at 2023-03-21 01:02 PM PDT -arcan9,2023-03-21T20:05:34Z,- arcan9 commented on issue: [4183](https://github.com/hackforla/website/issues/4183#issuecomment-1478512492) at 2023-03-21 01:05 PM PDT -arcan9,2023-03-21T21:49:20Z,- arcan9 submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1351434224) at 2023-03-21 02:49 PM PDT -arcan9,2023-03-23T05:19:01Z,- arcan9 commented on pull request: [4234](https://github.com/hackforla/website/pull/4234#issuecomment-1480617035) at 2023-03-22 10:19 PM PDT -arcan9,2023-03-23T15:59:03Z,- arcan9 commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1481454801) at 2023-03-23 08:59 AM PDT -arcan9,2023-03-23T20:51:06Z,- arcan9 submitted pull request review: [4234](https://github.com/hackforla/website/pull/4234#pullrequestreview-1355589496) at 2023-03-23 01:51 PM PDT -arcan9,2023-03-23T22:40:27Z,- arcan9 submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1355765204) at 2023-03-23 03:40 PM PDT -arcan9,2023-03-23T23:58:09Z,- arcan9 commented on pull request: [4265](https://github.com/hackforla/website/pull/4265#issuecomment-1482063212) at 2023-03-23 04:58 PM PDT -arcan9,2023-03-24T00:12:37Z,- arcan9 submitted pull request review: [4265](https://github.com/hackforla/website/pull/4265#pullrequestreview-1355829818) at 2023-03-23 05:12 PM PDT -arcan9,2023-03-24T03:40:48Z,- arcan9 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482204942) at 2023-03-23 08:40 PM PDT -arcan9,2023-03-24T05:08:25Z,- arcan9 opened pull request: [4274](https://github.com/hackforla/website/pull/4274) at 2023-03-23 10:08 PM PDT -arcan9,2023-03-24T05:20:34Z,- arcan9 commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1482267542) at 2023-03-23 10:20 PM PDT -arcan9,2023-03-24T05:27:01Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1482271480) at 2023-03-23 10:27 PM PDT -arcan9,2023-03-24T15:25:26Z,- arcan9 commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1482991084) at 2023-03-24 08:25 AM PDT -arcan9,2023-03-25T01:33:23Z,- arcan9 commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1483665943) at 2023-03-24 06:33 PM PDT -arcan9,2023-03-25T01:35:41Z,- arcan9 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483666659) at 2023-03-24 06:35 PM PDT -arcan9,2023-03-25T01:57:43Z,- arcan9 submitted pull request review: [4275](https://github.com/hackforla/website/pull/4275#pullrequestreview-1357705697) at 2023-03-24 06:57 PM PDT -arcan9,2023-03-25T08:31:55Z,- arcan9 submitted pull request review: [4275](https://github.com/hackforla/website/pull/4275#pullrequestreview-1357797753) at 2023-03-25 01:31 AM PDT -arcan9,2023-03-25T08:56:21Z,- arcan9 submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1357802058) at 2023-03-25 01:56 AM PDT -arcan9,2023-03-25T09:05:54Z,- arcan9 submitted pull request review: [4267](https://github.com/hackforla/website/pull/4267#pullrequestreview-1357803007) at 2023-03-25 02:05 AM PDT -arcan9,2023-03-25T09:15:26Z,- arcan9 submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1357804040) at 2023-03-25 02:15 AM PDT -arcan9,2023-03-25T16:40:16Z,- arcan9 submitted pull request review: [4288](https://github.com/hackforla/website/pull/4288#pullrequestreview-1357863760) at 2023-03-25 09:40 AM PDT -arcan9,2023-03-25T16:43:45Z,- arcan9 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483866658) at 2023-03-25 09:43 AM PDT -arcan9,2023-03-25T16:44:50Z,- arcan9 submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1357864263) at 2023-03-25 09:44 AM PDT -arcan9,2023-03-29T17:05:22Z,- arcan9 commented on pull request: [4340](https://github.com/hackforla/website/pull/4340#issuecomment-1488979710) at 2023-03-29 10:05 AM PDT -arcan9,2023-03-29T18:37:08Z,- arcan9 commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1489111152) at 2023-03-29 11:37 AM PDT -arcan9,2023-03-31T02:21:02Z,- arcan9 submitted pull request review: [4340](https://github.com/hackforla/website/pull/4340#pullrequestreview-1366160173) at 2023-03-30 07:21 PM PDT -arcan9,2023-03-31T02:38:07Z,- arcan9 commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1491211674) at 2023-03-30 07:38 PM PDT -arcan9,2023-03-31T10:13:58Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1491681595) at 2023-03-31 03:13 AM PDT -arcan9,2023-04-01T17:18:04Z,- arcan9 commented on pull request: [4359](https://github.com/hackforla/website/pull/4359#issuecomment-1493050662) at 2023-04-01 10:18 AM PDT -arcan9,2023-04-01T21:58:51Z,- arcan9 submitted pull request review: [4359](https://github.com/hackforla/website/pull/4359#pullrequestreview-1367947858) at 2023-04-01 02:58 PM PDT -arcan9,2023-04-01T22:00:59Z,- arcan9 commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1493137020) at 2023-04-01 03:00 PM PDT -arcan9,2023-04-03T04:30:28Z,- arcan9 pull request merged: [4274](https://github.com/hackforla/website/pull/4274#event-8908289856) at 2023-04-02 09:30 PM PDT -arcan9,2023-04-03T21:15:30Z,- arcan9 commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1494990407) at 2023-04-03 02:15 PM PDT -arcan9,2023-04-05T02:20:36Z,- arcan9 submitted pull request review: [4386](https://github.com/hackforla/website/pull/4386#pullrequestreview-1372039371) at 2023-04-04 07:20 PM PDT -arcan9,2023-04-05T02:26:41Z,- arcan9 commented on pull request: [4408](https://github.com/hackforla/website/pull/4408#issuecomment-1496833123) at 2023-04-04 07:26 PM PDT -arcan9,2023-04-05T02:35:07Z,- arcan9 commented on pull request: [4424](https://github.com/hackforla/website/pull/4424#issuecomment-1496838781) at 2023-04-04 07:35 PM PDT -arcan9,2023-04-06T03:50:29Z,- arcan9 submitted pull request review: [4424](https://github.com/hackforla/website/pull/4424#pullrequestreview-1374012995) at 2023-04-05 08:50 PM PDT -arcan9,2023-04-06T17:21:45Z,- arcan9 commented on pull request: [4428](https://github.com/hackforla/website/pull/4428#issuecomment-1499385801) at 2023-04-06 10:21 AM PDT -arcan9,2023-04-06T17:23:00Z,- arcan9 commented on pull request: [4430](https://github.com/hackforla/website/pull/4430#issuecomment-1499390181) at 2023-04-06 10:23 AM PDT -arcan9,2023-04-06T20:57:43Z,- arcan9 submitted pull request review: [4428](https://github.com/hackforla/website/pull/4428#pullrequestreview-1375566933) at 2023-04-06 01:57 PM PDT -arcan9,2023-04-06T21:03:15Z,- arcan9 submitted pull request review: [4430](https://github.com/hackforla/website/pull/4430#pullrequestreview-1375572581) at 2023-04-06 02:03 PM PDT -arcan9,2023-04-07T01:18:32Z,- arcan9 commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1499816892) at 2023-04-06 06:18 PM PDT -arcan9,2023-04-07T23:16:40Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1500717367) at 2023-04-07 04:16 PM PDT -arcan9,2023-04-08T22:40:59Z,- arcan9 submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1376812998) at 2023-04-08 03:40 PM PDT -arcan9,2023-04-08T22:46:19Z,- arcan9 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1500991744) at 2023-04-08 03:46 PM PDT -arcan9,2023-04-08T23:59:50Z,- arcan9 submitted pull request review: [4435](https://github.com/hackforla/website/pull/4435#pullrequestreview-1376817446) at 2023-04-08 04:59 PM PDT -arcan9,2023-04-09T18:29:53Z,- arcan9 commented on pull request: [4453](https://github.com/hackforla/website/pull/4453#issuecomment-1501187287) at 2023-04-09 11:29 AM PDT -arcan9,2023-04-10T04:19:15Z,- arcan9 submitted pull request review: [4453](https://github.com/hackforla/website/pull/4453#pullrequestreview-1377061121) at 2023-04-09 09:19 PM PDT -arcan9,2023-04-10T20:52:30Z,- arcan9 submitted pull request review: [4435](https://github.com/hackforla/website/pull/4435#pullrequestreview-1378119531) at 2023-04-10 01:52 PM PDT -arcan9,2023-04-11T17:45:12Z,- arcan9 commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1503834970) at 2023-04-11 10:45 AM PDT -arcan9,2023-04-11T19:28:26Z,- arcan9 submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1379937468) at 2023-04-11 12:28 PM PDT -arcan9,2023-04-11T19:31:08Z,- arcan9 commented on pull request: [4467](https://github.com/hackforla/website/pull/4467#issuecomment-1503982303) at 2023-04-11 12:31 PM PDT -arcan9,2023-04-12T03:15:35Z,- arcan9 opened issue: [4488](https://github.com/hackforla/website/issues/4488) at 2023-04-11 08:15 PM PDT -arcan9,2023-04-12T18:23:24Z,- arcan9 submitted pull request review: [4467](https://github.com/hackforla/website/pull/4467#pullrequestreview-1381876085) at 2023-04-12 11:23 AM PDT -arcan9,2023-04-13T04:25:34Z,- arcan9 opened pull request: [4496](https://github.com/hackforla/website/pull/4496) at 2023-04-12 09:25 PM PDT -arcan9,2023-04-14T21:49:01Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1509318954) at 2023-04-14 02:49 PM PDT -arcan9,2023-04-21T23:52:01Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1518428581) at 2023-04-21 04:52 PM PDT -arcan9,2023-05-02T22:43:42Z,- arcan9 commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1532246207) at 2023-05-02 03:43 PM PDT -arcan9,2023-05-02T22:43:42Z,- arcan9 pull request closed w/o merging: [4496](https://github.com/hackforla/website/pull/4496#event-9150386948) at 2023-05-02 03:43 PM PDT -arcan9,2023-05-02T22:49:40Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1532249950) at 2023-05-02 03:49 PM PDT -ArchilChovatiya,5081,SKILLS ISSUE -ArchilChovatiya,2023-07-26T03:07:22Z,- ArchilChovatiya opened issue: [5081](https://github.com/hackforla/website/issues/5081) at 2023-07-25 08:07 PM PDT -ArchilChovatiya,2024-02-13T23:25:19Z,- ArchilChovatiya assigned to issue: [5081](https://github.com/hackforla/website/issues/5081#event-11651461986) at 2024-02-13 03:25 PM PST -Architsharma7,2022-01-16T07:54:29Z,- Architsharma7 commented on issue: [2627](https://github.com/hackforla/website/issues/2627#issuecomment-1013828431) at 2022-01-15 11:54 PM PST -Architsharma7,2022-01-16T08:03:39Z,- Architsharma7 commented on issue: [1566](https://github.com/hackforla/website/issues/1566#issuecomment-1013829492) at 2022-01-16 12:03 AM PST -Architsharma7,2022-01-17T12:04:27Z,- Architsharma7 opened pull request: [2691](https://github.com/hackforla/website/pull/2691) at 2022-01-17 04:04 AM PST -Architsharma7,2022-01-21T00:47:30Z,- Architsharma7 pull request closed w/o merging: [2691](https://github.com/hackforla/website/pull/2691#event-5928905689) at 2022-01-20 04:47 PM PST -arfgit,4313,SKILLS ISSUE -arfgit,2023-03-29T03:17:05Z,- arfgit opened issue: [4313](https://github.com/hackforla/website/issues/4313) at 2023-03-28 08:17 PM PDT -arfgit,2023-04-25T02:01:37Z,- arfgit assigned to issue: [4313](https://github.com/hackforla/website/issues/4313#issuecomment-1487889012) at 2023-04-24 07:01 PM PDT -arfgit,2023-05-11T16:09:29Z,- arfgit assigned to issue: [4484](https://github.com/hackforla/website/issues/4484) at 2023-05-11 09:09 AM PDT -arfgit,2023-05-11T16:13:27Z,- arfgit commented on issue: [4484](https://github.com/hackforla/website/issues/4484#issuecomment-1544283111) at 2023-05-11 09:13 AM PDT -arfgit,2023-05-11T16:26:38Z,- arfgit commented on issue: [4313](https://github.com/hackforla/website/issues/4313#issuecomment-1544302107) at 2023-05-11 09:26 AM PDT -arfgit,2023-05-11T16:27:44Z,- arfgit commented on issue: [4484](https://github.com/hackforla/website/issues/4484#issuecomment-1544304596) at 2023-05-11 09:27 AM PDT -arfgit,2023-05-11T16:32:47Z,- arfgit opened pull request: [4656](https://github.com/hackforla/website/pull/4656) at 2023-05-11 09:32 AM PDT -arfgit,2023-05-16T16:31:47Z,- arfgit commented on pull request: [4656](https://github.com/hackforla/website/pull/4656#issuecomment-1550000981) at 2023-05-16 09:31 AM PDT -arfgit,2023-05-16T21:53:49Z,- arfgit commented on pull request: [4656](https://github.com/hackforla/website/pull/4656#issuecomment-1550403103) at 2023-05-16 02:53 PM PDT -arfgit,2023-05-17T09:58:36Z,- arfgit pull request merged: [4656](https://github.com/hackforla/website/pull/4656#event-9267253625) at 2023-05-17 02:58 AM PDT -arfgit,2023-05-25T14:57:41Z,- arfgit commented on issue: [4313](https://github.com/hackforla/website/issues/4313#issuecomment-1563057990) at 2023-05-25 07:57 AM PDT -arfgit,2023-05-25T14:57:45Z,- arfgit closed issue as completed: [4313](https://github.com/hackforla/website/issues/4313#event-9341174324) at 2023-05-25 07:57 AM PDT -arfgit,2023-05-25T15:46:32Z,- arfgit assigned to issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537488312) at 2023-05-25 08:46 AM PDT -arfgit,2023-05-25T15:48:59Z,- arfgit commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1563135248) at 2023-05-25 08:48 AM PDT -arfgit,2023-05-26T19:20:18Z,- arfgit commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1564825439) at 2023-05-26 12:20 PM PDT -arfgit,2023-06-09T19:05:06Z,- arfgit commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1585018468) at 2023-06-09 12:05 PM PDT -arfgit,2023-06-27T02:12:40Z,- arfgit commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1608600967) at 2023-06-26 07:12 PM PDT -arfgit,2023-07-07T17:10:04Z,- arfgit opened issue: [4923](https://github.com/hackforla/website/issues/4923) at 2023-07-07 10:10 AM PDT -arfgit,2023-07-07T17:18:53Z,- arfgit opened issue: [4924](https://github.com/hackforla/website/issues/4924) at 2023-07-07 10:18 AM PDT -arfgit,2023-07-07T17:24:32Z,- arfgit commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1625717999) at 2023-07-07 10:24 AM PDT -arfgit,2023-07-29T17:10:36Z,- arfgit closed issue as completed: [4594](https://github.com/hackforla/website/issues/4594#event-9954948618) at 2023-07-29 10:10 AM PDT -arghmatey,2021-05-26T02:20:56Z,- arghmatey assigned to issue: [1559](https://github.com/hackforla/website/issues/1559) at 2021-05-25 07:20 PM PDT -arghmatey,2021-05-26T03:31:51Z,- arghmatey opened pull request: [1640](https://github.com/hackforla/website/pull/1640) at 2021-05-25 08:31 PM PDT -arghmatey,2021-05-26T13:26:20Z,- arghmatey pull request merged: [1640](https://github.com/hackforla/website/pull/1640#event-4799374799) at 2021-05-26 06:26 AM PDT -arghmatey,2021-05-26T13:28:30Z,- arghmatey assigned to issue: [1597](https://github.com/hackforla/website/issues/1597) at 2021-05-26 06:28 AM PDT -arghmatey,2021-05-26T18:43:10Z,- arghmatey submitted pull request review: [1636](https://github.com/hackforla/website/pull/1636#pullrequestreview-669423352) at 2021-05-26 11:43 AM PDT -arghmatey,2021-05-27T20:10:00Z,- arghmatey opened pull request: [1668](https://github.com/hackforla/website/pull/1668) at 2021-05-27 01:10 PM PDT -arghmatey,2021-05-29T18:13:03Z,- arghmatey pull request merged: [1668](https://github.com/hackforla/website/pull/1668#event-4816306040) at 2021-05-29 11:13 AM PDT -arghmatey,2021-05-30T18:17:09Z,- arghmatey assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -arghmatey,2021-06-01T03:25:18Z,- arghmatey assigned to issue: [1614](https://github.com/hackforla/website/issues/1614) at 2021-05-31 08:25 PM PDT -arghmatey,2021-06-03T23:52:58Z,- arghmatey opened pull request: [1684](https://github.com/hackforla/website/pull/1684) at 2021-06-03 04:52 PM PDT -arghmatey,2021-06-04T03:24:46Z,- arghmatey assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -arghmatey,2021-06-05T06:52:37Z,- arghmatey commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855195040) at 2021-06-04 11:52 PM PDT -arghmatey,2021-06-06T19:26:52Z,- arghmatey commented on issue: [1614](https://github.com/hackforla/website/issues/1614#issuecomment-855449689) at 2021-06-06 12:26 PM PDT -arghmatey,2021-06-09T03:38:23Z,- arghmatey commented on issue: [1614](https://github.com/hackforla/website/issues/1614#issuecomment-857346725) at 2021-06-08 08:38 PM PDT -arghmatey,2021-06-09T21:00:10Z,- arghmatey commented on pull request: [1684](https://github.com/hackforla/website/pull/1684#issuecomment-858097204) at 2021-06-09 02:00 PM PDT -arghmatey,2021-06-11T07:59:31Z,- arghmatey commented on pull request: [1705](https://github.com/hackforla/website/pull/1705#issuecomment-859367019) at 2021-06-11 12:59 AM PDT -arghmatey,2021-06-11T18:23:27Z,- arghmatey commented on pull request: [1705](https://github.com/hackforla/website/pull/1705#issuecomment-859761423) at 2021-06-11 11:23 AM PDT -arghmatey,2021-06-11T18:32:22Z,- arghmatey submitted pull request review: [1705](https://github.com/hackforla/website/pull/1705#pullrequestreview-682119202) at 2021-06-11 11:32 AM PDT -arghmatey,2021-06-12T16:32:02Z,- arghmatey unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -arghmatey,2021-06-14T00:10:43Z,- arghmatey submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-682457548) at 2021-06-13 05:10 PM PDT -arghmatey,2021-06-15T23:59:06Z,- arghmatey pull request merged: [1684](https://github.com/hackforla/website/pull/1684#event-4894621579) at 2021-06-15 04:59 PM PDT -arghmatey,2021-06-16T03:20:05Z,- arghmatey assigned to issue: [1610](https://github.com/hackforla/website/issues/1610) at 2021-06-15 08:20 PM PDT -arghmatey,2021-06-18T03:29:21Z,- arghmatey opened pull request: [1774](https://github.com/hackforla/website/pull/1774) at 2021-06-17 08:29 PM PDT -arghmatey,2021-06-19T01:05:35Z,- arghmatey commented on pull request: [1774](https://github.com/hackforla/website/pull/1774#issuecomment-864334438) at 2021-06-18 06:05 PM PDT -arghmatey,2021-06-19T01:25:05Z,- arghmatey commented on pull request: [1774](https://github.com/hackforla/website/pull/1774#issuecomment-864336660) at 2021-06-18 06:25 PM PDT -arghmatey,2021-06-19T02:33:37Z,- arghmatey commented on pull request: [1471](https://github.com/hackforla/website/pull/1471#issuecomment-864343618) at 2021-06-18 07:33 PM PDT -arghmatey,2021-06-19T02:47:20Z,- arghmatey commented on pull request: [1774](https://github.com/hackforla/website/pull/1774#issuecomment-864344849) at 2021-06-18 07:47 PM PDT -arghmatey,2021-06-21T16:02:30Z,- arghmatey pull request merged: [1774](https://github.com/hackforla/website/pull/1774#event-4917786198) at 2021-06-21 09:02 AM PDT -arghmatey,2021-06-22T08:55:52Z,- arghmatey submitted pull request review: [1782](https://github.com/hackforla/website/pull/1782#pullrequestreview-689240398) at 2021-06-22 01:55 AM PDT -arghmatey,2021-06-22T09:00:56Z,- arghmatey submitted pull request review: [1783](https://github.com/hackforla/website/pull/1783#pullrequestreview-689245877) at 2021-06-22 02:00 AM PDT -arghmatey,2021-06-22T09:30:08Z,- arghmatey assigned to issue: [1791](https://github.com/hackforla/website/issues/1791) at 2021-06-22 02:30 AM PDT -arghmatey,2021-06-25T06:09:35Z,- arghmatey commented on issue: [1791](https://github.com/hackforla/website/issues/1791#issuecomment-868250036) at 2021-06-24 11:09 PM PDT -arghmatey,2021-06-28T20:07:44Z,- arghmatey opened pull request: [1852](https://github.com/hackforla/website/pull/1852) at 2021-06-28 01:07 PM PDT -arghmatey,2021-06-30T20:55:14Z,- arghmatey commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-871721013) at 2021-06-30 01:55 PM PDT -arghmatey,2021-07-02T17:59:11Z,- arghmatey pull request merged: [1852](https://github.com/hackforla/website/pull/1852#event-4972711703) at 2021-07-02 10:59 AM PDT -arghmatey,2021-07-07T03:45:51Z,- arghmatey submitted pull request review: [1896](https://github.com/hackforla/website/pull/1896#pullrequestreview-700548347) at 2021-07-06 08:45 PM PDT -arghmatey,2021-07-07T03:47:45Z,- arghmatey commented on pull request: [1896](https://github.com/hackforla/website/pull/1896#issuecomment-875251431) at 2021-07-06 08:47 PM PDT -arghmatey,2021-07-07T20:10:56Z,- arghmatey opened issue: [1898](https://github.com/hackforla/website/issues/1898) at 2021-07-07 01:10 PM PDT -arghmatey,2021-07-07T20:11:06Z,- arghmatey assigned to issue: [1898](https://github.com/hackforla/website/issues/1898) at 2021-07-07 01:11 PM PDT -arghmatey,2021-07-08T01:30:16Z,- arghmatey submitted pull request review: [1896](https://github.com/hackforla/website/pull/1896#pullrequestreview-701567073) at 2021-07-07 06:30 PM PDT -arghmatey,2021-07-08T01:31:25Z,- arghmatey commented on pull request: [1896](https://github.com/hackforla/website/pull/1896#issuecomment-876048032) at 2021-07-07 06:31 PM PDT -arghmatey,2021-07-09T03:48:59Z,- arghmatey closed issue by PR 1896: [1598](https://github.com/hackforla/website/issues/1598#event-4998176095) at 2021-07-08 08:48 PM PDT -arghmatey,2021-07-12T19:15:26Z,- arghmatey submitted pull request review: [1907](https://github.com/hackforla/website/pull/1907#pullrequestreview-704457553) at 2021-07-12 12:15 PM PDT -arghmatey,2021-07-13T20:46:18Z,- arghmatey submitted pull request review: [1907](https://github.com/hackforla/website/pull/1907#pullrequestreview-705630959) at 2021-07-13 01:46 PM PDT -arghmatey,2021-07-13T20:46:50Z,- arghmatey closed issue by PR 1907: [1794](https://github.com/hackforla/website/issues/1794#event-5016200300) at 2021-07-13 01:46 PM PDT -arghmatey,2021-07-13T21:11:15Z,- arghmatey assigned to issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-879405910) at 2021-07-13 02:11 PM PDT -arghmatey,2021-07-14T17:07:40Z,- arghmatey commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-880062802) at 2021-07-14 10:07 AM PDT -arghmatey,2021-07-14T17:49:34Z,- arghmatey submitted pull request review: [1936](https://github.com/hackforla/website/pull/1936#pullrequestreview-706558153) at 2021-07-14 10:49 AM PDT -arghmatey,2021-07-14T18:03:06Z,- arghmatey closed issue as completed: [1594](https://github.com/hackforla/website/issues/1594#event-5021233298) at 2021-07-14 11:03 AM PDT -arghmatey,2021-07-20T01:12:57Z,- arghmatey commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-882969255) at 2021-07-19 06:12 PM PDT -arghmatey,2021-07-20T01:45:50Z,- arghmatey opened issue: [1983](https://github.com/hackforla/website/issues/1983) at 2021-07-19 06:45 PM PDT -arghmatey,2021-07-23T02:48:05Z,- arghmatey opened pull request: [2002](https://github.com/hackforla/website/pull/2002) at 2021-07-22 07:48 PM PDT -arghmatey,2021-08-02T18:12:40Z,- arghmatey commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-891230693) at 2021-08-02 11:12 AM PDT -arghmatey,2021-08-03T06:54:03Z,- arghmatey commented on pull request: [2002](https://github.com/hackforla/website/pull/2002#issuecomment-891584969) at 2021-08-02 11:54 PM PDT -arghmatey,2021-08-04T02:15:08Z,- arghmatey commented on pull request: [2002](https://github.com/hackforla/website/pull/2002#issuecomment-892305707) at 2021-08-03 07:15 PM PDT -arghmatey,2021-08-05T22:54:36Z,- arghmatey commented on pull request: [2002](https://github.com/hackforla/website/pull/2002#issuecomment-893871620) at 2021-08-05 03:54 PM PDT -arghmatey,2021-08-06T15:42:22Z,- arghmatey pull request merged: [2002](https://github.com/hackforla/website/pull/2002#event-5123593813) at 2021-08-06 08:42 AM PDT -arghmatey,2021-08-07T18:18:17Z,- arghmatey opened pull request: [2070](https://github.com/hackforla/website/pull/2070) at 2021-08-07 11:18 AM PDT -arghmatey,2021-08-07T18:25:21Z,- arghmatey commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-894689639) at 2021-08-07 11:25 AM PDT -arghmatey,2021-08-10T02:33:41Z,- arghmatey commented on pull request: [2072](https://github.com/hackforla/website/pull/2072#issuecomment-895681735) at 2021-08-09 07:33 PM PDT -arghmatey,2021-08-10T02:34:06Z,- arghmatey closed issue by PR 2072: [2023](https://github.com/hackforla/website/issues/2023#event-5132952272) at 2021-08-09 07:34 PM PDT -arghmatey,2021-08-13T18:02:57Z,- arghmatey commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-898630918) at 2021-08-13 11:02 AM PDT -arghmatey,2021-08-13T18:03:53Z,- arghmatey commented on pull request: [2070](https://github.com/hackforla/website/pull/2070#issuecomment-898631527) at 2021-08-13 11:03 AM PDT -arghmatey,2021-08-18T02:18:35Z,- arghmatey commented on pull request: [2070](https://github.com/hackforla/website/pull/2070#issuecomment-900760675) at 2021-08-17 07:18 PM PDT -arghmatey,2021-08-18T05:09:08Z,- arghmatey commented on issue: [2079](https://github.com/hackforla/website/issues/2079#issuecomment-900816045) at 2021-08-17 10:09 PM PDT -arghmatey,2021-08-22T04:29:06Z,- arghmatey submitted pull request review: [2059](https://github.com/hackforla/website/pull/2059#pullrequestreview-735538499) at 2021-08-21 09:29 PM PDT -arghmatey,2021-08-22T04:33:10Z,- arghmatey submitted pull request review: [2059](https://github.com/hackforla/website/pull/2059#pullrequestreview-735538647) at 2021-08-21 09:33 PM PDT -arghmatey,2021-08-22T04:34:05Z,- arghmatey submitted pull request review: [2059](https://github.com/hackforla/website/pull/2059#pullrequestreview-735538675) at 2021-08-21 09:34 PM PDT -arghmatey,2021-08-22T18:18:20Z,- arghmatey commented on pull request: [2070](https://github.com/hackforla/website/pull/2070#issuecomment-903309405) at 2021-08-22 11:18 AM PDT -arghmatey,2021-08-24T17:45:34Z,- arghmatey submitted pull request review: [2149](https://github.com/hackforla/website/pull/2149#pullrequestreview-737517051) at 2021-08-24 10:45 AM PDT -arghmatey,2021-08-24T17:45:44Z,- arghmatey closed issue by PR 2149: [1920](https://github.com/hackforla/website/issues/1920#event-5202141661) at 2021-08-24 10:45 AM PDT -arghmatey,2021-08-24T18:17:14Z,- arghmatey submitted pull request review: [2152](https://github.com/hackforla/website/pull/2152#pullrequestreview-737545662) at 2021-08-24 11:17 AM PDT -arghmatey,2021-08-25T21:47:20Z,- arghmatey commented on pull request: [2070](https://github.com/hackforla/website/pull/2070#issuecomment-905898857) at 2021-08-25 02:47 PM PDT -arghmatey,2021-08-28T01:19:13Z,- arghmatey commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-907544543) at 2021-08-27 06:19 PM PDT -arghmatey,2021-08-28T01:38:04Z,- arghmatey opened issue: [2193](https://github.com/hackforla/website/issues/2193) at 2021-08-27 06:38 PM PDT -arghmatey,2021-08-28T02:33:24Z,- arghmatey commented on pull request: [2070](https://github.com/hackforla/website/pull/2070#issuecomment-907553859) at 2021-08-27 07:33 PM PDT -arghmatey,2021-08-28T04:06:33Z,- arghmatey pull request merged: [2070](https://github.com/hackforla/website/pull/2070#event-5221274502) at 2021-08-27 09:06 PM PDT -arghmatey,2021-09-03T19:21:57Z,- arghmatey submitted pull request review: [2059](https://github.com/hackforla/website/pull/2059#pullrequestreview-746411454) at 2021-09-03 12:21 PM PDT -arghmatey,2021-09-05T17:16:36Z,- arghmatey assigned to issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-907844049) at 2021-09-05 10:16 AM PDT -arghmatey,2021-09-10T16:40:51Z,- arghmatey commented on issue: [2193](https://github.com/hackforla/website/issues/2193#issuecomment-917046843) at 2021-09-10 09:40 AM PDT -arghmatey,2021-09-10T22:25:27Z,- arghmatey opened issue: [2246](https://github.com/hackforla/website/issues/2246) at 2021-09-10 03:25 PM PDT -arghmatey,2021-09-11T00:18:12Z,- arghmatey commented on issue: [2193](https://github.com/hackforla/website/issues/2193#issuecomment-917300983) at 2021-09-10 05:18 PM PDT -arghmatey,2021-09-11T02:47:04Z,- arghmatey commented on issue: [2246](https://github.com/hackforla/website/issues/2246#issuecomment-917324665) at 2021-09-10 07:47 PM PDT -arghmatey,2021-09-11T02:47:04Z,- arghmatey closed issue as completed: [2246](https://github.com/hackforla/website/issues/2246#event-5287108669) at 2021-09-10 07:47 PM PDT -arghmatey,2021-09-11T19:15:55Z,- arghmatey submitted pull request review: [2247](https://github.com/hackforla/website/pull/2247#pullrequestreview-751958273) at 2021-09-11 12:15 PM PDT -arghmatey,2021-09-11T19:17:02Z,- arghmatey closed issue by PR 2247: [2193](https://github.com/hackforla/website/issues/2193#event-5287872208) at 2021-09-11 12:17 PM PDT -arghmatey,2021-09-12T17:25:52Z,- arghmatey commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-917676777) at 2021-09-12 10:25 AM PDT -arghmatey,2021-09-15T19:59:33Z,- arghmatey opened issue: [2267](https://github.com/hackforla/website/issues/2267) at 2021-09-15 12:59 PM PDT -arghmatey,2021-09-21T21:06:35Z,- arghmatey commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-924383813) at 2021-09-21 02:06 PM PDT -arghmatey,2021-09-21T21:06:35Z,- arghmatey closed issue as completed: [2135](https://github.com/hackforla/website/issues/2135#event-5338741818) at 2021-09-21 02:06 PM PDT -arghmatey,2021-09-29T17:55:40Z,- arghmatey opened issue: [2317](https://github.com/hackforla/website/issues/2317) at 2021-09-29 10:55 AM PDT -arghmatey,2021-09-29T17:58:32Z,- arghmatey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-930413202) at 2021-09-29 10:58 AM PDT -arghmatey,2021-09-29T17:58:33Z,- arghmatey closed issue as completed: [2057](https://github.com/hackforla/website/issues/2057#event-5382592309) at 2021-09-29 10:58 AM PDT -arghmatey,2021-09-29T19:36:45Z,- arghmatey assigned to issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-930411338) at 2021-09-29 12:36 PM PDT -arghmatey,2021-10-06T16:26:09Z,- arghmatey commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-936614478) at 2021-10-06 09:26 AM PDT -arghmatey,2021-10-08T17:46:18Z,- arghmatey commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-938961668) at 2021-10-08 10:46 AM PDT -arghmatey,2021-10-18T07:34:26Z,- arghmatey commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-945446852) at 2021-10-18 12:34 AM PDT -arghmatey,2021-10-18T18:51:31Z,- arghmatey opened pull request: [2373](https://github.com/hackforla/website/pull/2373) at 2021-10-18 11:51 AM PDT -arghmatey,2021-10-20T00:13:32Z,- arghmatey commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-947200065) at 2021-10-19 05:13 PM PDT -arghmatey,2021-10-22T17:51:57Z,- arghmatey commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-949844948) at 2021-10-22 10:51 AM PDT -arghmatey,2021-10-25T05:51:24Z,- arghmatey commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-950551930) at 2021-10-24 10:51 PM PDT -arghmatey,2021-10-31T02:21:53Z,- arghmatey commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-955625115) at 2021-10-30 07:21 PM PDT -arghmatey,2021-11-04T03:54:59Z,- arghmatey commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-960434731) at 2021-11-03 08:54 PM PDT -arghmatey,2021-11-05T20:16:38Z,- arghmatey commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-962193496) at 2021-11-05 01:16 PM PDT -arghmatey,2021-11-09T08:12:28Z,- arghmatey commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-963907605) at 2021-11-09 12:12 AM PST -arghmatey,2021-11-09T08:14:46Z,- arghmatey commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-963909105) at 2021-11-09 12:14 AM PST -arghmatey,2021-11-09T08:19:38Z,- arghmatey commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-963912370) at 2021-11-09 12:19 AM PST -arghmatey,2021-11-17T01:39:18Z,- arghmatey commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-971055514) at 2021-11-16 05:39 PM PST -arghmatey,2021-11-25T06:37:05Z,- arghmatey closed issue as completed: [2328](https://github.com/hackforla/website/issues/2328#event-5670874118) at 2021-11-24 10:37 PM PST -arghmatey,2021-12-01T01:20:07Z,- arghmatey commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-983191333) at 2021-11-30 05:20 PM PST -arghmatey,2021-12-05T23:37:19Z,- arghmatey commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-986324141) at 2021-12-05 03:37 PM PST -arghmatey,2021-12-06T01:44:41Z,- arghmatey commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-986365386) at 2021-12-05 05:44 PM PST -arghmatey,2021-12-10T10:53:03Z,- arghmatey commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-990865340) at 2021-12-10 02:53 AM PST -arghmatey,2021-12-15T05:06:51Z,- arghmatey pull request merged: [2373](https://github.com/hackforla/website/pull/2373#event-5768797511) at 2021-12-14 09:06 PM PST -AricayaJohn,8138,SKILLS ISSUE -AricayaJohn,2025-05-14T03:14:20Z,- AricayaJohn opened issue: [8138](https://github.com/hackforla/website/issues/8138) at 2025-05-13 08:14 PM PDT -AricayaJohn,2025-05-14T03:14:39Z,- AricayaJohn assigned to issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2878510151) at 2025-05-13 08:14 PM PDT -aricforrest,3541,SKILLS ISSUE -aricforrest,2022-09-13T02:40:29Z,- aricforrest opened issue: [3541](https://github.com/hackforla/website/issues/3541) at 2022-09-12 07:40 PM PDT -aricforrest,2022-09-14T02:48:42Z,- aricforrest assigned to issue: [3541](https://github.com/hackforla/website/issues/3541) at 2022-09-13 07:48 PM PDT -aricforrest,2022-09-20T23:11:43Z,- aricforrest assigned to issue: [2832](https://github.com/hackforla/website/issues/2832#issuecomment-1047133788) at 2022-09-20 04:11 PM PDT -aricforrest,2022-09-20T23:14:42Z,- aricforrest commented on issue: [2832](https://github.com/hackforla/website/issues/2832#issuecomment-1253008062) at 2022-09-20 04:14 PM PDT -aricforrest,2022-09-20T23:36:06Z,- aricforrest commented on issue: [3541](https://github.com/hackforla/website/issues/3541#issuecomment-1253019967) at 2022-09-20 04:36 PM PDT -aricforrest,2022-09-21T00:27:45Z,- aricforrest opened pull request: [3568](https://github.com/hackforla/website/pull/3568) at 2022-09-20 05:27 PM PDT -aricforrest,2022-09-21T01:13:47Z,- aricforrest submitted pull request review: [3567](https://github.com/hackforla/website/pull/3567#pullrequestreview-1114634875) at 2022-09-20 06:13 PM PDT -aricforrest,2022-09-21T21:28:45Z,- aricforrest pull request merged: [3568](https://github.com/hackforla/website/pull/3568#event-7434422701) at 2022-09-21 02:28 PM PDT -aricforrest,2022-09-21T22:18:32Z,- aricforrest assigned to issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1194682335) at 2022-09-21 03:18 PM PDT -aricforrest,2022-09-21T22:21:40Z,- aricforrest commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1254292139) at 2022-09-21 03:21 PM PDT -aricforrest,2022-09-25T06:29:18Z,- aricforrest opened pull request: [3580](https://github.com/hackforla/website/pull/3580) at 2022-09-24 11:29 PM PDT -aricforrest,2022-09-27T22:14:54Z,- aricforrest commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1260108934) at 2022-09-27 03:14 PM PDT -aricforrest,2022-09-28T01:31:52Z,- aricforrest pull request merged: [3580](https://github.com/hackforla/website/pull/3580#event-7473449492) at 2022-09-27 06:31 PM PDT -aricforrest,2022-09-28T02:02:46Z,- aricforrest submitted pull request review: [3586](https://github.com/hackforla/website/pull/3586#pullrequestreview-1122916447) at 2022-09-27 07:02 PM PDT -aricforrest,2022-09-28T04:01:49Z,- aricforrest commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1260355464) at 2022-09-27 09:01 PM PDT -aricforrest,2022-09-28T06:59:02Z,- aricforrest opened issue: [3587](https://github.com/hackforla/website/issues/3587) at 2022-09-27 11:59 PM PDT -aricforrest,2022-09-28T07:19:14Z,- aricforrest commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1260490290) at 2022-09-28 12:19 AM PDT -aricforrest,2022-09-28T20:26:09Z,- aricforrest commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1261428264) at 2022-09-28 01:26 PM PDT -aricforrest,2022-10-01T00:57:13Z,- aricforrest submitted pull request review: [3586](https://github.com/hackforla/website/pull/3586#pullrequestreview-1127447760) at 2022-09-30 05:57 PM PDT -aricforrest,2022-10-01T01:07:25Z,- aricforrest assigned to issue: [3481](https://github.com/hackforla/website/issues/3481) at 2022-09-30 06:07 PM PDT -aricforrest,2022-10-01T01:10:38Z,- aricforrest commented on issue: [3481](https://github.com/hackforla/website/issues/3481#issuecomment-1264183831) at 2022-09-30 06:10 PM PDT -aricforrest,2022-10-01T01:42:28Z,- aricforrest opened pull request: [3594](https://github.com/hackforla/website/pull/3594) at 2022-09-30 06:42 PM PDT -aricforrest,2022-10-01T22:12:08Z,- aricforrest submitted pull request review: [3586](https://github.com/hackforla/website/pull/3586#pullrequestreview-1127571442) at 2022-10-01 03:12 PM PDT -aricforrest,2022-10-02T00:45:46Z,- aricforrest pull request merged: [3594](https://github.com/hackforla/website/pull/3594#event-7501259931) at 2022-10-01 05:45 PM PDT -aricforrest,2022-10-17T21:04:04Z,- aricforrest commented on issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1281492060) at 2022-10-17 02:04 PM PDT -aricforrest,2022-10-17T21:11:52Z,- aricforrest assigned to issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1192095510) at 2022-10-17 02:11 PM PDT -aricforrest,2022-10-17T21:14:10Z,- aricforrest commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1281503032) at 2022-10-17 02:14 PM PDT -aricforrest,2022-10-19T03:37:11Z,- aricforrest opened issue: [3641](https://github.com/hackforla/website/issues/3641) at 2022-10-18 08:37 PM PDT -aricforrest,2022-10-20T00:18:03Z,- aricforrest commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1284729184) at 2022-10-19 05:18 PM PDT -aricforrest,2022-10-21T18:21:28Z,- aricforrest commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1287298460) at 2022-10-21 11:21 AM PDT -aricforrest,2022-10-21T19:04:09Z,- aricforrest commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1287336589) at 2022-10-21 12:04 PM PDT -aricforrest,2022-10-26T01:26:44Z,- aricforrest commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1291344555) at 2022-10-25 06:26 PM PDT -aricforrest,2022-10-26T01:40:30Z,- aricforrest submitted pull request review: [3024](https://github.com/hackforla/website/pull/3024#pullrequestreview-1155746533) at 2022-10-25 06:40 PM PDT -aricforrest,2022-10-26T03:02:09Z,- aricforrest commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1291432471) at 2022-10-25 08:02 PM PDT -aricforrest,2022-10-27T22:59:43Z,- aricforrest commented on pull request: [3668](https://github.com/hackforla/website/pull/3668#issuecomment-1294213273) at 2022-10-27 03:59 PM PDT -aricforrest,2022-10-27T23:05:22Z,- aricforrest commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1294216687) at 2022-10-27 04:05 PM PDT -aricforrest,2022-10-27T23:22:55Z,- aricforrest submitted pull request review: [3668](https://github.com/hackforla/website/pull/3668#pullrequestreview-1159147188) at 2022-10-27 04:22 PM PDT -aricforrest,2022-11-04T16:25:39Z,- aricforrest closed issue as completed: [3541](https://github.com/hackforla/website/issues/3541#event-7742255276) at 2022-11-04 09:25 AM PDT -aricforrest,2022-11-07T20:46:47Z,- aricforrest commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1306168549) at 2022-11-07 12:46 PM PST -aricforrest,2022-11-09T01:05:08Z,- aricforrest commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1308051739) at 2022-11-08 05:05 PM PST -aricforrest,2022-11-09T01:18:01Z,- aricforrest submitted pull request review: [3703](https://github.com/hackforla/website/pull/3703#pullrequestreview-1173104419) at 2022-11-08 05:18 PM PST -aricforrest,2022-11-09T01:28:48Z,- aricforrest commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1308070094) at 2022-11-08 05:28 PM PST -aricforrest,2022-11-09T02:43:58Z,- aricforrest submitted pull request review: [3702](https://github.com/hackforla/website/pull/3702#pullrequestreview-1173174357) at 2022-11-08 06:43 PM PST -aricforrest,2022-11-16T00:20:17Z,- aricforrest opened issue: [3722](https://github.com/hackforla/website/issues/3722) at 2022-11-15 04:20 PM PST -ariellockett2,8005,SKILLS ISSUE -ariellockett2,2025-03-19T03:12:48Z,- ariellockett2 opened issue: [8005](https://github.com/hackforla/website/issues/8005) at 2025-03-18 08:12 PM PDT -ariellockett2,2025-03-19T03:13:42Z,- ariellockett2 assigned to issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2735214433) at 2025-03-18 08:13 PM PDT -ariellockett2,2025-03-28T20:27:26Z,- ariellockett2 commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2762388054) at 2025-03-28 01:27 PM PDT -ariellockett2,2025-04-15T23:37:48Z,- ariellockett2 commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2807772744) at 2025-04-15 04:37 PM PDT -ariellockett2,2025-04-29T18:16:37Z,- ariellockett2 assigned to issue: [8064](https://github.com/hackforla/website/issues/8064) at 2025-04-29 11:16 AM PDT -ariellockett2,2025-04-29T18:24:25Z,- ariellockett2 commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2839835863) at 2025-04-29 11:24 AM PDT -ariellockett2,2025-04-29T18:29:52Z,- ariellockett2 commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2839849543) at 2025-04-29 11:29 AM PDT -ariellockett2,2025-04-29T18:37:56Z,- ariellockett2 commented on issue: [8064](https://github.com/hackforla/website/issues/8064#issuecomment-2839869724) at 2025-04-29 11:37 AM PDT -ariellockett2,2025-04-29T18:38:16Z,- ariellockett2 commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2839870531) at 2025-04-29 11:38 AM PDT -ariellockett2,2025-05-04T07:56:29Z,- ariellockett2 opened pull request: [8115](https://github.com/hackforla/website/pull/8115) at 2025-05-04 12:56 AM PDT -ariellockett2,2025-05-07T03:28:37Z,- ariellockett2 pull request merged: [8115](https://github.com/hackforla/website/pull/8115#event-17548244454) at 2025-05-06 08:28 PM PDT -ariellockett2,2025-06-03T17:33:37Z,- ariellockett2 assigned to issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2800088489) at 2025-06-03 10:33 AM PDT -ariellockett2,2025-06-03T17:37:20Z,- ariellockett2 commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2936444104) at 2025-06-03 10:37 AM PDT -ariellockett2,2025-06-03T17:40:29Z,- ariellockett2 commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2936454521) at 2025-06-03 10:40 AM PDT -ariellockett2,2025-06-04T01:35:43Z,- ariellockett2 opened pull request: [8169](https://github.com/hackforla/website/pull/8169) at 2025-06-03 06:35 PM PDT -ariellockett2,2025-06-06T18:45:26Z,- ariellockett2 pull request merged: [8169](https://github.com/hackforla/website/pull/8169#event-18027318859) at 2025-06-06 11:45 AM PDT -Arjayellis,2020-08-22T00:18:22Z,- Arjayellis commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678564387) at 2020-08-21 05:18 PM PDT -Arjayellis,2020-08-22T23:36:59Z,- Arjayellis commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678709173) at 2020-08-22 04:36 PM PDT -Arjayellis,2020-08-22T23:58:22Z,- Arjayellis commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678710811) at 2020-08-22 04:58 PM PDT -Arjayellis,2020-09-04T21:12:20Z,- Arjayellis commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-687387625) at 2020-09-04 02:12 PM PDT -Arjayellis,2020-09-18T01:44:13Z,- Arjayellis commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694599236) at 2020-09-17 06:44 PM PDT -Arjayellis,2020-12-20T21:46:23Z,- Arjayellis commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-748675247) at 2020-12-20 01:46 PM PST -Arjayellis,2020-12-20T21:48:52Z,- Arjayellis commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-748675525) at 2020-12-20 01:48 PM PST -Arjayellis,2020-12-21T03:36:40Z,- Arjayellis assigned to issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-748675525) at 2020-12-20 07:36 PM PST -Arjayellis,2020-12-21T03:53:17Z,- Arjayellis commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-748742577) at 2020-12-20 07:53 PM PST -Arjayellis,2020-12-21T17:59:23Z,- Arjayellis unassigned from issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-749112577) at 2020-12-21 09:59 AM PST -Arjayellis,2021-04-11T16:18:50Z,- Arjayellis opened issue: [1395](https://github.com/hackforla/website/issues/1395) at 2021-04-11 09:18 AM PDT -Arjayellis,2021-04-11T16:24:32Z,- Arjayellis commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-817333667) at 2021-04-11 09:24 AM PDT -arora-aryan,3981,SKILLS ISSUE -arora-aryan,2023-02-15T04:12:07Z,- arora-aryan opened issue: [3981](https://github.com/hackforla/website/issues/3981) at 2023-02-14 08:12 PM PST -arora-aryan,2023-02-15T04:12:23Z,- arora-aryan assigned to issue: [3981](https://github.com/hackforla/website/issues/3981) at 2023-02-14 08:12 PM PST -arora-aryan,2023-02-15T04:30:19Z,- arora-aryan commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1430741991) at 2023-02-14 08:30 PM PST -arora-aryan,2023-02-23T05:58:01Z,- arora-aryan commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1441250206) at 2023-02-22 09:58 PM PST -arora-aryan,2023-02-23T05:58:10Z,- arora-aryan commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1441250266) at 2023-02-22 09:58 PM PST -arora-aryan,2023-02-23T06:02:28Z,- arora-aryan assigned to issue: [3998](https://github.com/hackforla/website/issues/3998) at 2023-02-22 10:02 PM PST -arora-aryan,2023-02-23T06:06:15Z,- arora-aryan commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1441254265) at 2023-02-22 10:06 PM PST -arora-aryan,2023-02-23T06:23:28Z,- arora-aryan commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1441265106) at 2023-02-22 10:23 PM PST -arora-aryan,2023-03-20T22:41:24Z,- arora-aryan unassigned from issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1477039974) at 2023-03-20 03:41 PM PDT -arpitapandya,3152,SKILLS ISSUE -arpitapandya,2022-05-17T03:05:23Z,- arpitapandya opened issue: [3151](https://github.com/hackforla/website/issues/3151) at 2022-05-16 08:05 PM PDT -arpitapandya,2022-05-17T03:13:24Z,- arpitapandya opened issue: [3152](https://github.com/hackforla/website/issues/3152) at 2022-05-16 08:13 PM PDT -arpitapandya,2022-05-18T03:14:48Z,- arpitapandya opened issue: [3155](https://github.com/hackforla/website/issues/3155) at 2022-05-17 08:14 PM PDT -arpitapandya,2022-05-18T03:24:41Z,- arpitapandya closed issue as completed: [3155](https://github.com/hackforla/website/issues/3155#event-6628886557) at 2022-05-17 08:24 PM PDT -arpitapandya,2022-05-18T03:24:59Z,- arpitapandya closed issue as completed: [3151](https://github.com/hackforla/website/issues/3151#event-6628887594) at 2022-05-17 08:24 PM PDT -arpitapandya,2022-05-25T01:55:08Z,- arpitapandya assigned to issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1135330178) at 2022-05-24 06:55 PM PDT -arpitapandya,2022-05-28T22:24:13Z,- arpitapandya assigned to issue: [2878](https://github.com/hackforla/website/issues/2878#issuecomment-1049097964) at 2022-05-28 03:24 PM PDT -arpitapandya,2022-05-29T17:23:19Z,- arpitapandya commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1140491243) at 2022-05-29 10:23 AM PDT -arpitapandya,2022-05-31T15:37:51Z,- arpitapandya opened pull request: [3185](https://github.com/hackforla/website/pull/3185) at 2022-05-31 08:37 AM PDT -arpitapandya,2022-06-01T01:23:07Z,- arpitapandya closed issue as completed: [3152](https://github.com/hackforla/website/issues/3152#event-6714149307) at 2022-05-31 06:23 PM PDT -arpitapandya,2022-06-01T01:32:58Z,- arpitapandya closed issue by PR 3185: [2878](https://github.com/hackforla/website/issues/2878#event-6714189188) at 2022-05-31 06:32 PM PDT -arpitapandya,2022-06-04T17:27:37Z,- arpitapandya reopened issue: [3152](https://github.com/hackforla/website/issues/3152#event-6714149307) at 2022-06-04 10:27 AM PDT -arpitapandya,2022-06-04T17:28:24Z,- arpitapandya closed issue as completed: [3152](https://github.com/hackforla/website/issues/3152#event-6742261294) at 2022-06-04 10:28 AM PDT -arpitapandya,2022-06-04T17:43:14Z,- arpitapandya assigned to issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1145860440) at 2022-06-04 10:43 AM PDT -arpitapandya,2022-06-04T20:19:02Z,- arpitapandya commented on issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1146679677) at 2022-06-04 01:19 PM PDT -arpitapandya,2022-06-05T16:23:49Z,- arpitapandya opened pull request: [3221](https://github.com/hackforla/website/pull/3221) at 2022-06-05 09:23 AM PDT -arpitapandya,2022-06-05T16:59:29Z,- arpitapandya assigned to issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1145850932) at 2022-06-05 09:59 AM PDT -arpitapandya,2022-06-05T21:54:57Z,- arpitapandya unassigned from issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1146889828) at 2022-06-05 02:54 PM PDT -arpitapandya,2022-06-06T14:53:33Z,- arpitapandya commented on issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1147538130) at 2022-06-06 07:53 AM PDT -arpitapandya,2022-06-06T20:25:48Z,- arpitapandya pull request merged: [3221](https://github.com/hackforla/website/pull/3221#event-6755927925) at 2022-06-06 01:25 PM PDT -arpitapandya,2022-06-06T20:25:59Z,- arpitapandya reopened pull request: [3221](https://github.com/hackforla/website/pull/3221#event-6755927925) at 2022-06-06 01:25 PM PDT -arpitapandya,2022-06-07T01:20:19Z,- arpitapandya pull request merged: [3221](https://github.com/hackforla/website/pull/3221#event-6757146781) at 2022-06-06 06:20 PM PDT -arpitapandya,2022-06-07T01:34:06Z,- arpitapandya pull request merged: [3185](https://github.com/hackforla/website/pull/3185#event-6757189268) at 2022-06-06 06:34 PM PDT -arpitapandya,2022-06-14T20:54:16Z,- arpitapandya assigned to issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1153226022) at 2022-06-14 01:54 PM PDT -arpitapandya,2022-06-14T20:59:16Z,- arpitapandya commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1155707347) at 2022-06-14 01:59 PM PDT -arpitapandya,2022-06-14T23:26:10Z,- arpitapandya unassigned from issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1155803187) at 2022-06-14 04:26 PM PDT -arpitapandya,2022-06-20T00:42:56Z,- arpitapandya assigned to issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1133414539) at 2022-06-19 05:42 PM PDT -arpitapandya,2022-06-20T00:43:32Z,- arpitapandya commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1159848519) at 2022-06-19 05:43 PM PDT -arpitapandya,2022-07-15T14:19:42Z,- arpitapandya commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1185593640) at 2022-07-15 07:19 AM PDT -arpitapandya,2022-07-15T14:32:02Z,- arpitapandya assigned to issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1179635333) at 2022-07-15 07:32 AM PDT -arpitapandya,2022-07-15T14:34:20Z,- arpitapandya commented on issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1185607241) at 2022-07-15 07:34 AM PDT -arpitapandya,2022-07-15T19:15:32Z,- arpitapandya opened pull request: [3374](https://github.com/hackforla/website/pull/3374) at 2022-07-15 12:15 PM PDT -arpitapandya,2022-07-16T22:17:48Z,- arpitapandya opened pull request: [3375](https://github.com/hackforla/website/pull/3375) at 2022-07-16 03:17 PM PDT -arpitapandya,2022-07-16T23:07:33Z,- arpitapandya commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1186321107) at 2022-07-16 04:07 PM PDT -arpitapandya,2022-07-16T23:09:35Z,- arpitapandya commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1186321596) at 2022-07-16 04:09 PM PDT -arpitapandya,2022-07-16T23:17:35Z,- arpitapandya closed issue as completed: [3152](https://github.com/hackforla/website/issues/3152#event-7006648755) at 2022-07-16 04:17 PM PDT -arpitapandya,2022-07-18T15:39:59Z,- arpitapandya pull request merged: [3375](https://github.com/hackforla/website/pull/3375#event-7013231702) at 2022-07-18 08:39 AM PDT -arpitapandya,2022-07-18T18:53:22Z,- arpitapandya opened pull request: [3385](https://github.com/hackforla/website/pull/3385) at 2022-07-18 11:53 AM PDT -arpitapandya,2022-07-18T19:17:07Z,- arpitapandya commented on issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1188162260) at 2022-07-18 12:17 PM PDT -arpitapandya,2022-07-18T19:31:45Z,- arpitapandya assigned to issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1164984752) at 2022-07-18 12:31 PM PDT -arpitapandya,2022-07-18T19:32:43Z,- arpitapandya commented on issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1188215836) at 2022-07-18 12:32 PM PDT -arpitapandya,2022-07-19T16:48:29Z,- arpitapandya opened pull request: [3391](https://github.com/hackforla/website/pull/3391) at 2022-07-19 09:48 AM PDT -arpitapandya,2022-07-19T16:49:24Z,- arpitapandya pull request closed w/o merging: [3391](https://github.com/hackforla/website/pull/3391#event-7022397733) at 2022-07-19 09:49 AM PDT -arpitapandya,2022-07-19T18:56:18Z,- arpitapandya opened pull request: [3392](https://github.com/hackforla/website/pull/3392) at 2022-07-19 11:56 AM PDT -arpitapandya,2022-07-19T19:05:00Z,- arpitapandya pull request closed w/o merging: [3392](https://github.com/hackforla/website/pull/3392#event-7023231694) at 2022-07-19 12:05 PM PDT -arpitapandya,2022-07-19T19:08:49Z,- arpitapandya opened pull request: [3393](https://github.com/hackforla/website/pull/3393) at 2022-07-19 12:08 PM PDT -arpitapandya,2022-07-19T19:16:10Z,- arpitapandya commented on issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1189460232) at 2022-07-19 12:16 PM PDT -arpitapandya,2022-07-19T19:37:18Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189477833) at 2022-07-19 12:37 PM PDT -arpitapandya,2022-07-19T20:57:13Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189542751) at 2022-07-19 01:57 PM PDT -arpitapandya,2022-07-19T21:10:20Z,- arpitapandya assigned to issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1177011694) at 2022-07-19 02:10 PM PDT -arpitapandya,2022-07-19T21:11:28Z,- arpitapandya commented on issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1189553922) at 2022-07-19 02:11 PM PDT -arpitapandya,2022-07-19T21:32:59Z,- arpitapandya opened pull request: [3394](https://github.com/hackforla/website/pull/3394) at 2022-07-19 02:32 PM PDT -arpitapandya,2022-07-19T21:34:54Z,- arpitapandya commented on issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1189573575) at 2022-07-19 02:34 PM PDT -arpitapandya,2022-07-19T22:20:43Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189608220) at 2022-07-19 03:20 PM PDT -arpitapandya,2022-07-20T18:23:26Z,- arpitapandya commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190611368) at 2022-07-20 11:23 AM PDT -arpitapandya,2022-07-20T23:28:33Z,- arpitapandya commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190868544) at 2022-07-20 04:28 PM PDT -arpitapandya,2022-07-20T23:30:22Z,- arpitapandya commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190869596) at 2022-07-20 04:30 PM PDT -arpitapandya,2022-07-21T17:56:45Z,- arpitapandya pull request merged: [3394](https://github.com/hackforla/website/pull/3394#event-7040384446) at 2022-07-21 10:56 AM PDT -arpitapandya,2022-07-22T14:51:23Z,- arpitapandya pull request merged: [3393](https://github.com/hackforla/website/pull/3393#event-7047132854) at 2022-07-22 07:51 AM PDT -arpitapandya,2022-07-22T20:09:00Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1192899931) at 2022-07-22 01:09 PM PDT -arpitapandya,2022-07-24T23:31:52Z,- arpitapandya commented on pull request: [3425](https://github.com/hackforla/website/pull/3425#issuecomment-1193417394) at 2022-07-24 04:31 PM PDT -arpitapandya,2022-07-25T16:53:05Z,- arpitapandya submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1049775930) at 2022-07-25 09:53 AM PDT -arpitapandya,2022-07-25T16:54:38Z,- arpitapandya commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194348326) at 2022-07-25 09:54 AM PDT -arpitapandya,2022-07-25T19:52:04Z,- arpitapandya commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194549494) at 2022-07-25 12:52 PM PDT -arpitapandya,2022-07-25T19:56:08Z,- arpitapandya commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194553558) at 2022-07-25 12:56 PM PDT -arpitapandya,2022-07-25T20:07:55Z,- arpitapandya pull request merged: [3385](https://github.com/hackforla/website/pull/3385#event-7059399237) at 2022-07-25 01:07 PM PDT -arpitapandya,2022-07-26T17:54:23Z,- arpitapandya submitted pull request review: [3427](https://github.com/hackforla/website/pull/3427#pullrequestreview-1051401975) at 2022-07-26 10:54 AM PDT -arpitapandya,2022-07-26T18:09:16Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1195816389) at 2022-07-26 11:09 AM PDT -arpitapandya,2022-07-27T00:31:22Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1196139826) at 2022-07-26 05:31 PM PDT -arpitapandya,2022-07-27T00:35:30Z,- arpitapandya commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1196141745) at 2022-07-26 05:35 PM PDT -arpitapandya,2022-07-27T02:50:04Z,- arpitapandya assigned to issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1001077082) at 2022-07-26 07:50 PM PDT -arpitapandya,2022-07-27T02:53:39Z,- arpitapandya closed issue by PR 3385: [3342](https://github.com/hackforla/website/issues/3342#event-7069336597) at 2022-07-26 07:53 PM PDT -arpitapandya,2022-07-27T02:54:35Z,- arpitapandya closed issue by PR 3394: [3337](https://github.com/hackforla/website/issues/3337#event-7069339382) at 2022-07-26 07:54 PM PDT -arpitapandya,2022-07-27T02:55:23Z,- arpitapandya closed issue by PR 3393: [3296](https://github.com/hackforla/website/issues/3296#event-7069342022) at 2022-07-26 07:55 PM PDT -arpitapandya,2022-07-27T23:31:11Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197486141) at 2022-07-27 04:31 PM PDT -arpitapandya,2022-07-27T23:36:28Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197488981) at 2022-07-27 04:36 PM PDT -arpitapandya,2022-07-28T01:14:52Z,- arpitapandya commented on pull request: [3435](https://github.com/hackforla/website/pull/3435#issuecomment-1197540367) at 2022-07-27 06:14 PM PDT -arpitapandya,2022-07-28T01:29:14Z,- arpitapandya submitted pull request review: [3435](https://github.com/hackforla/website/pull/3435#pullrequestreview-1053384607) at 2022-07-27 06:29 PM PDT -arpitapandya,2022-07-28T14:58:39Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1198265615) at 2022-07-28 07:58 AM PDT -arpitapandya,2022-07-28T15:05:30Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054290191) at 2022-07-28 08:05 AM PDT -arpitapandya,2022-07-28T18:37:49Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054583664) at 2022-07-28 11:37 AM PDT -arpitapandya,2022-07-28T18:38:18Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054584189) at 2022-07-28 11:38 AM PDT -arpitapandya,2022-07-28T18:57:36Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054605483) at 2022-07-28 11:57 AM PDT -arpitapandya,2022-07-28T20:12:58Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1198587100) at 2022-07-28 01:12 PM PDT -arpitapandya,2022-07-28T20:19:51Z,- arpitapandya commented on pull request: [3439](https://github.com/hackforla/website/pull/3439#issuecomment-1198592615) at 2022-07-28 01:19 PM PDT -arpitapandya,2022-07-28T20:26:46Z,- arpitapandya submitted pull request review: [3439](https://github.com/hackforla/website/pull/3439#pullrequestreview-1054699478) at 2022-07-28 01:26 PM PDT -arpitapandya,2022-07-28T20:41:44Z,- arpitapandya commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1198611620) at 2022-07-28 01:41 PM PDT -arpitapandya,2022-07-29T03:36:56Z,- arpitapandya commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198845935) at 2022-07-28 08:36 PM PDT -arpitapandya,2022-07-29T14:25:38Z,- arpitapandya commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1199386572) at 2022-07-29 07:25 AM PDT -arpitapandya,2022-07-29T14:37:29Z,- arpitapandya submitted pull request review: [3442](https://github.com/hackforla/website/pull/3442#pullrequestreview-1055666268) at 2022-07-29 07:37 AM PDT -arpitapandya,2022-07-29T14:45:31Z,- arpitapandya commented on pull request: [3443](https://github.com/hackforla/website/pull/3443#issuecomment-1199435624) at 2022-07-29 07:45 AM PDT -arpitapandya,2022-07-29T15:00:10Z,- arpitapandya submitted pull request review: [3443](https://github.com/hackforla/website/pull/3443#pullrequestreview-1055696600) at 2022-07-29 08:00 AM PDT -arpitapandya,2022-07-29T15:43:36Z,- arpitapandya commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1199574118) at 2022-07-29 08:43 AM PDT -arpitapandya,2022-07-29T16:32:24Z,- arpitapandya submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1055813574) at 2022-07-29 09:32 AM PDT -arpitapandya,2022-07-30T13:33:57Z,- arpitapandya commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200158900) at 2022-07-30 06:33 AM PDT -arpitapandya,2022-07-30T18:13:03Z,- arpitapandya submitted pull request review: [3444](https://github.com/hackforla/website/pull/3444#pullrequestreview-1056466053) at 2022-07-30 11:13 AM PDT -arpitapandya,2022-07-30T22:40:19Z,- arpitapandya commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200306297) at 2022-07-30 03:40 PM PDT -arpitapandya,2022-07-30T23:12:26Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1200310515) at 2022-07-30 04:12 PM PDT -arpitapandya,2022-07-30T23:19:25Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1200311379) at 2022-07-30 04:19 PM PDT -arpitapandya,2022-08-03T01:56:03Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1203394978) at 2022-08-02 06:56 PM PDT -arpitapandya,2022-08-03T13:57:06Z,- arpitapandya unassigned from issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1001077082) at 2022-08-03 06:57 AM PDT -arpitapandya,2022-08-03T21:02:00Z,- arpitapandya assigned to issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1198689313) at 2022-08-03 02:02 PM PDT -arpitapandya,2022-08-03T21:20:28Z,- arpitapandya commented on issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1204496085) at 2022-08-03 02:20 PM PDT -arpitapandya,2022-08-04T03:28:03Z,- arpitapandya opened pull request: [3450](https://github.com/hackforla/website/pull/3450) at 2022-08-03 08:28 PM PDT -arpitapandya,2022-08-04T03:40:32Z,- arpitapandya commented on issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1204719722) at 2022-08-03 08:40 PM PDT -arpitapandya,2022-08-05T02:33:52Z,- arpitapandya pull request merged: [3450](https://github.com/hackforla/website/pull/3450#event-7132600006) at 2022-08-04 07:33 PM PDT -arpitapandya,2022-08-05T02:34:17Z,- arpitapandya commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1205975588) at 2022-08-04 07:34 PM PDT -arpitapandya,2022-08-05T03:29:49Z,- arpitapandya assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-08-04 08:29 PM PDT -arpitapandya,2022-08-05T03:33:54Z,- arpitapandya unassigned from issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-08-04 08:33 PM PDT -arpitapandya,2022-08-05T03:36:59Z,- arpitapandya assigned to issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1190501160) at 2022-08-04 08:36 PM PDT -arpitapandya,2022-08-05T03:38:25Z,- arpitapandya commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1206007196) at 2022-08-04 08:38 PM PDT -arpitapandya,2022-08-05T06:09:19Z,- arpitapandya opened pull request: [3451](https://github.com/hackforla/website/pull/3451) at 2022-08-04 11:09 PM PDT -arpitapandya,2022-08-05T06:14:41Z,- arpitapandya commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1206082772) at 2022-08-04 11:14 PM PDT -arpitapandya,2022-08-05T06:27:31Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1206090406) at 2022-08-04 11:27 PM PDT -arpitapandya,2022-08-09T02:39:16Z,- arpitapandya commented on pull request: [3455](https://github.com/hackforla/website/pull/3455#issuecomment-1208847032) at 2022-08-08 07:39 PM PDT -arpitapandya,2022-08-10T01:38:47Z,- arpitapandya commented on pull request: [3457](https://github.com/hackforla/website/pull/3457#issuecomment-1210054846) at 2022-08-09 06:38 PM PDT -arpitapandya,2022-08-10T01:39:18Z,- arpitapandya commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1210055059) at 2022-08-09 06:39 PM PDT -arpitapandya,2022-08-10T01:57:50Z,- arpitapandya submitted pull request review: [3454](https://github.com/hackforla/website/pull/3454#pullrequestreview-1067561652) at 2022-08-09 06:57 PM PDT -arpitapandya,2022-08-10T02:27:05Z,- arpitapandya commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1210077343) at 2022-08-09 07:27 PM PDT -arpitapandya,2022-08-10T20:14:42Z,- arpitapandya submitted pull request review: [3457](https://github.com/hackforla/website/pull/3457#pullrequestreview-1068876276) at 2022-08-10 01:14 PM PDT -arpitapandya,2022-08-10T21:43:29Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1211310905) at 2022-08-10 02:43 PM PDT -arpitapandya,2022-08-11T04:09:53Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1211532682) at 2022-08-10 09:09 PM PDT -arpitapandya,2022-08-11T12:18:40Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1211912712) at 2022-08-11 05:18 AM PDT -arpitapandya,2022-08-12T03:23:23Z,- arpitapandya commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1212692423) at 2022-08-11 08:23 PM PDT -arpitapandya,2022-08-12T03:38:50Z,- arpitapandya submitted pull request review: [3462](https://github.com/hackforla/website/pull/3462#pullrequestreview-1070563055) at 2022-08-11 08:38 PM PDT -arpitapandya,2022-08-13T20:52:46Z,- arpitapandya submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1071996313) at 2022-08-13 01:52 PM PDT -arpitapandya,2022-08-13T23:22:19Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1214245305) at 2022-08-13 04:22 PM PDT -arpitapandya,2022-08-14T20:32:32Z,- arpitapandya commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214444180) at 2022-08-14 01:32 PM PDT -arpitapandya,2022-08-15T05:06:23Z,- arpitapandya commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214622334) at 2022-08-14 10:06 PM PDT -arpitapandya,2022-08-17T18:59:11Z,- arpitapandya opened pull request: [3472](https://github.com/hackforla/website/pull/3472) at 2022-08-17 11:59 AM PDT -arpitapandya,2022-08-17T19:52:50Z,- arpitapandya submitted pull request review: [3468](https://github.com/hackforla/website/pull/3468#pullrequestreview-1076321309) at 2022-08-17 12:52 PM PDT -arpitapandya,2022-08-17T19:53:53Z,- arpitapandya pull request closed w/o merging: [3472](https://github.com/hackforla/website/pull/3472#event-7208839527) at 2022-08-17 12:53 PM PDT -arpitapandya,2022-08-19T04:10:14Z,- arpitapandya commented on pull request: [3475](https://github.com/hackforla/website/pull/3475#issuecomment-1220227804) at 2022-08-18 09:10 PM PDT -arpitapandya,2022-08-19T04:12:15Z,- arpitapandya submitted pull request review: [3475](https://github.com/hackforla/website/pull/3475#pullrequestreview-1078253309) at 2022-08-18 09:12 PM PDT -arpitapandya,2022-08-28T17:03:19Z,- arpitapandya commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1229508544) at 2022-08-28 10:03 AM PDT -arpitapandya,2022-08-28T21:12:59Z,- arpitapandya closed issue by PR 3490: [2205](https://github.com/hackforla/website/issues/2205#event-7274007592) at 2022-08-28 02:12 PM PDT -arpitapandya,2022-08-28T22:15:35Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1229565187) at 2022-08-28 03:15 PM PDT -arpitapandya,2022-08-28T22:33:12Z,- arpitapandya commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229568108) at 2022-08-28 03:33 PM PDT -arpitapandya,2022-08-28T23:03:36Z,- arpitapandya submitted pull request review: [3483](https://github.com/hackforla/website/pull/3483#pullrequestreview-1087924443) at 2022-08-28 04:03 PM PDT -arpitapandya,2022-08-28T23:18:45Z,- arpitapandya closed issue by PR 3483: [2172](https://github.com/hackforla/website/issues/2172#event-7274130772) at 2022-08-28 04:18 PM PDT -arpitapandya,2022-08-29T14:20:42Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1230379918) at 2022-08-29 07:20 AM PDT -arpitapandya,2022-08-29T14:20:42Z,- arpitapandya pull request closed w/o merging: [3451](https://github.com/hackforla/website/pull/3451#event-7279221249) at 2022-08-29 07:20 AM PDT -arpitapandya,2022-08-29T14:58:45Z,- arpitapandya opened pull request: [3496](https://github.com/hackforla/website/pull/3496) at 2022-08-29 07:58 AM PDT -arpitapandya,2022-08-29T21:49:46Z,- arpitapandya commented on pull request: [3497](https://github.com/hackforla/website/pull/3497#issuecomment-1230899030) at 2022-08-29 02:49 PM PDT -arpitapandya,2022-08-29T22:03:08Z,- arpitapandya submitted pull request review: [3497](https://github.com/hackforla/website/pull/3497#pullrequestreview-1089405052) at 2022-08-29 03:03 PM PDT -arpitapandya,2022-08-29T22:03:55Z,- arpitapandya closed issue by PR 3497: [2199](https://github.com/hackforla/website/issues/2199#event-7282462601) at 2022-08-29 03:03 PM PDT -arpitapandya,2022-08-31T23:23:19Z,- arpitapandya commented on pull request: [3513](https://github.com/hackforla/website/pull/3513#issuecomment-1233545970) at 2022-08-31 04:23 PM PDT -arpitapandya,2022-08-31T23:31:57Z,- arpitapandya submitted pull request review: [3513](https://github.com/hackforla/website/pull/3513#pullrequestreview-1092615261) at 2022-08-31 04:31 PM PDT -arpitapandya,2022-09-01T00:39:18Z,- arpitapandya closed issue by PR 3513: [2822](https://github.com/hackforla/website/issues/2822#event-7300737386) at 2022-08-31 05:39 PM PDT -arpitapandya,2022-09-01T21:07:57Z,- arpitapandya commented on pull request: [3514](https://github.com/hackforla/website/pull/3514#issuecomment-1234784508) at 2022-09-01 02:07 PM PDT -arpitapandya,2022-09-01T21:10:33Z,- arpitapandya submitted pull request review: [3514](https://github.com/hackforla/website/pull/3514#pullrequestreview-1094063750) at 2022-09-01 02:10 PM PDT -arpitapandya,2022-09-02T02:53:22Z,- arpitapandya closed issue by PR 3514: [3101](https://github.com/hackforla/website/issues/3101#event-7309935083) at 2022-09-01 07:53 PM PDT -arpitapandya,2022-09-02T19:47:39Z,- arpitapandya pull request merged: [3496](https://github.com/hackforla/website/pull/3496#event-7315474606) at 2022-09-02 12:47 PM PDT -arpitapandya,2022-09-02T19:47:40Z,- arpitapandya closed issue by PR 3496: [2299](https://github.com/hackforla/website/issues/2299#event-7315474661) at 2022-09-02 12:47 PM PDT -arpitapandya,2022-09-02T19:57:43Z,- arpitapandya assigned to issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-917485924) at 2022-09-02 12:57 PM PDT -arpitapandya,2022-09-02T20:01:18Z,- arpitapandya commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1235853923) at 2022-09-02 01:01 PM PDT -arpitapandya,2022-09-02T23:20:45Z,- arpitapandya closed issue by PR 3516: [2825](https://github.com/hackforla/website/issues/2825#event-7316202671) at 2022-09-02 04:20 PM PDT -arpitapandya,2022-09-03T01:31:11Z,- arpitapandya commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236020227) at 2022-09-02 06:31 PM PDT -arpitapandya,2022-09-03T15:19:29Z,- arpitapandya commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1236141705) at 2022-09-03 08:19 AM PDT -arpitapandya,2022-09-03T15:23:24Z,- arpitapandya submitted pull request review: [3515](https://github.com/hackforla/website/pull/3515#pullrequestreview-1095523721) at 2022-09-03 08:23 AM PDT -arpitapandya,2022-09-03T15:27:22Z,- arpitapandya closed issue by PR 3515: [2831](https://github.com/hackforla/website/issues/2831#event-7317225581) at 2022-09-03 08:27 AM PDT -arpitapandya,2022-09-03T16:03:32Z,- arpitapandya commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236150716) at 2022-09-03 09:03 AM PDT -arpitapandya,2022-09-03T16:46:47Z,- arpitapandya commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236162584) at 2022-09-03 09:46 AM PDT -arpitapandya,2022-09-03T16:49:11Z,- arpitapandya submitted pull request review: [3517](https://github.com/hackforla/website/pull/3517#pullrequestreview-1095541458) at 2022-09-03 09:49 AM PDT -arpitapandya,2022-09-04T18:32:55Z,- arpitapandya closed issue by PR 3517: [3418](https://github.com/hackforla/website/issues/3418#event-7318793922) at 2022-09-04 11:32 AM PDT -arpitapandya,2022-09-06T01:56:24Z,- arpitapandya commented on pull request: [3518](https://github.com/hackforla/website/pull/3518#issuecomment-1237577513) at 2022-09-05 06:56 PM PDT -arpitapandya,2022-09-06T01:58:28Z,- arpitapandya submitted pull request review: [3518](https://github.com/hackforla/website/pull/3518#pullrequestreview-1096850453) at 2022-09-05 06:58 PM PDT -arpitapandya,2022-09-06T01:59:32Z,- arpitapandya closed issue by PR 3518: [3198](https://github.com/hackforla/website/issues/3198#event-7326306310) at 2022-09-05 06:59 PM PDT -arpitapandya,2022-09-06T02:12:21Z,- arpitapandya submitted pull request review: [3519](https://github.com/hackforla/website/pull/3519#pullrequestreview-1096856544) at 2022-09-05 07:12 PM PDT -arpitapandya,2022-09-06T02:22:27Z,- arpitapandya closed issue by PR 3519: [3097](https://github.com/hackforla/website/issues/3097#event-7326375749) at 2022-09-05 07:22 PM PDT -arpitapandya,2022-09-06T02:56:36Z,- arpitapandya commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1237603839) at 2022-09-05 07:56 PM PDT -arpitapandya,2022-09-06T03:04:13Z,- arpitapandya submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1096880628) at 2022-09-05 08:04 PM PDT -arpitapandya,2022-09-06T14:03:45Z,- arpitapandya commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1238198033) at 2022-09-06 07:03 AM PDT -arpitapandya,2022-09-06T14:05:42Z,- arpitapandya submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1097658473) at 2022-09-06 07:05 AM PDT -arpitapandya,2022-09-06T23:15:48Z,- arpitapandya commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1238740760) at 2022-09-06 04:15 PM PDT -arpitapandya,2022-09-11T15:59:14Z,- arpitapandya assigned to issue: [3423](https://github.com/hackforla/website/issues/3423#issuecomment-1193030715) at 2022-09-11 08:59 AM PDT -arpitapandya,2022-09-11T15:59:24Z,- arpitapandya commented on issue: [3423](https://github.com/hackforla/website/issues/3423#issuecomment-1242993539) at 2022-09-11 08:59 AM PDT -arpitapandya,2022-09-11T16:57:15Z,- arpitapandya opened pull request: [3534](https://github.com/hackforla/website/pull/3534) at 2022-09-11 09:57 AM PDT -arpitapandya,2022-09-13T01:47:03Z,- arpitapandya commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1244796228) at 2022-09-12 06:47 PM PDT -arpitapandya,2022-09-13T14:04:35Z,- arpitapandya commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1245462286) at 2022-09-13 07:04 AM PDT -arpitapandya,2022-09-13T22:28:18Z,- arpitapandya pull request merged: [3534](https://github.com/hackforla/website/pull/3534#event-7380484336) at 2022-09-13 03:28 PM PDT -arpitapandya,2022-09-14T20:39:14Z,- arpitapandya closed issue by PR 3534: [3423](https://github.com/hackforla/website/issues/3423#event-7389389285) at 2022-09-14 01:39 PM PDT -arpitapandya,2022-09-14T20:51:49Z,- arpitapandya commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1247289656) at 2022-09-14 01:51 PM PDT -arpitapandya,2022-09-16T20:01:34Z,- arpitapandya unassigned from issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1247289656) at 2022-09-16 01:01 PM PDT -arpitapandya,2022-09-16T20:06:50Z,- arpitapandya commented on pull request: [3557](https://github.com/hackforla/website/pull/3557#issuecomment-1249759311) at 2022-09-16 01:06 PM PDT -arpitapandya,2022-09-16T20:10:59Z,- arpitapandya submitted pull request review: [3557](https://github.com/hackforla/website/pull/3557#pullrequestreview-1111172861) at 2022-09-16 01:10 PM PDT -arpitapandya,2022-09-16T20:11:23Z,- arpitapandya closed issue by PR 3557: [2828](https://github.com/hackforla/website/issues/2828#event-7405853546) at 2022-09-16 01:11 PM PDT -arpitapandya,2022-09-16T20:13:29Z,- arpitapandya commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1249772116) at 2022-09-16 01:13 PM PDT -arpitapandya,2022-09-16T20:27:34Z,- arpitapandya commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1249782405) at 2022-09-16 01:27 PM PDT -arpitapandya,2022-09-16T20:27:34Z,- arpitapandya closed issue as completed: [2776](https://github.com/hackforla/website/issues/2776#event-7405956590) at 2022-09-16 01:27 PM PDT -arpitapandya,2022-09-18T01:29:25Z,- arpitapandya closed issue by PR 3468: [3295](https://github.com/hackforla/website/issues/3295#event-7408296267) at 2022-09-17 06:29 PM PDT -arpitapandya,2022-09-18T01:43:16Z,- arpitapandya submitted pull request review: [3558](https://github.com/hackforla/website/pull/3558#pullrequestreview-1111482649) at 2022-09-17 06:43 PM PDT -arpitapandya,2022-09-18T01:47:07Z,- arpitapandya commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250172516) at 2022-09-17 06:47 PM PDT -arpitapandya,2022-09-19T01:13:24Z,- arpitapandya commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1250441098) at 2022-09-18 06:13 PM PDT -arpitapandya,2022-09-19T01:34:44Z,- arpitapandya submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1111630043) at 2022-09-18 06:34 PM PDT -arpitapandya,2022-09-19T23:52:38Z,- arpitapandya commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1251686748) at 2022-09-19 04:52 PM PDT -arpitapandya,2022-09-21T14:21:50Z,- arpitapandya commented on pull request: [3566](https://github.com/hackforla/website/pull/3566#issuecomment-1253785240) at 2022-09-21 07:21 AM PDT -arpitapandya,2022-09-21T14:32:21Z,- arpitapandya submitted pull request review: [3566](https://github.com/hackforla/website/pull/3566#pullrequestreview-1115543921) at 2022-09-21 07:32 AM PDT -arpitapandya,2022-09-21T14:34:45Z,- arpitapandya closed issue by PR 3566: [3106](https://github.com/hackforla/website/issues/3106#event-7431573125) at 2022-09-21 07:34 AM PDT -arpitapandya,2022-09-21T14:52:38Z,- arpitapandya assigned to issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1228152247) at 2022-09-21 07:52 AM PDT -arpitapandya,2022-09-21T14:54:05Z,- arpitapandya commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1253828938) at 2022-09-21 07:54 AM PDT -arpitapandya,2022-09-21T14:58:28Z,- arpitapandya commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1253834916) at 2022-09-21 07:58 AM PDT -arpitapandya,2022-09-21T15:15:28Z,- arpitapandya commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1253856721) at 2022-09-21 08:15 AM PDT -arpitapandya,2022-09-21T21:58:08Z,- arpitapandya submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1116139029) at 2022-09-21 02:58 PM PDT -arpitapandya,2022-09-21T21:59:04Z,- arpitapandya closed issue by PR 3561: [3100](https://github.com/hackforla/website/issues/3100#event-7434584103) at 2022-09-21 02:59 PM PDT -arpitapandya,2022-09-21T22:26:32Z,- arpitapandya closed issue by PR 3573: [2834](https://github.com/hackforla/website/issues/2834#event-7434714225) at 2022-09-21 03:26 PM PDT -arpitapandya,2022-09-23T01:22:44Z,- arpitapandya opened pull request: [3575](https://github.com/hackforla/website/pull/3575) at 2022-09-22 06:22 PM PDT -arpitapandya,2022-09-23T17:17:53Z,- arpitapandya commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1256462551) at 2022-09-23 10:17 AM PDT -arpitapandya,2022-09-23T17:23:43Z,- arpitapandya submitted pull request review: [3564](https://github.com/hackforla/website/pull/3564#pullrequestreview-1118808049) at 2022-09-23 10:23 AM PDT -arpitapandya,2022-09-23T17:52:53Z,- arpitapandya closed issue by PR 3564: [1750](https://github.com/hackforla/website/issues/1750#event-7449346835) at 2022-09-23 10:52 AM PDT -arpitapandya,2022-09-23T17:54:31Z,- arpitapandya commented on pull request: [3574](https://github.com/hackforla/website/pull/3574#issuecomment-1256510488) at 2022-09-23 10:54 AM PDT -arpitapandya,2022-09-23T17:56:35Z,- arpitapandya submitted pull request review: [3574](https://github.com/hackforla/website/pull/3574#pullrequestreview-1118864837) at 2022-09-23 10:56 AM PDT -arpitapandya,2022-09-24T00:33:04Z,- arpitapandya commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1256816462) at 2022-09-23 05:33 PM PDT -arpitapandya,2022-09-24T00:33:58Z,- arpitapandya submitted pull request review: [3576](https://github.com/hackforla/website/pull/3576#pullrequestreview-1119126744) at 2022-09-23 05:33 PM PDT -arpitapandya,2022-09-24T00:34:35Z,- arpitapandya closed issue by PR 3576: [2842](https://github.com/hackforla/website/issues/2842#event-7451027811) at 2022-09-23 05:34 PM PDT -arpitapandya,2022-09-24T00:40:36Z,- arpitapandya commented on pull request: [3577](https://github.com/hackforla/website/pull/3577#issuecomment-1256818066) at 2022-09-23 05:40 PM PDT -arpitapandya,2022-09-24T00:43:43Z,- arpitapandya submitted pull request review: [3577](https://github.com/hackforla/website/pull/3577#pullrequestreview-1119128310) at 2022-09-23 05:43 PM PDT -arpitapandya,2022-09-24T00:44:19Z,- arpitapandya closed issue by PR 3577: [3099](https://github.com/hackforla/website/issues/3099#event-7451040904) at 2022-09-23 05:44 PM PDT -arpitapandya,2022-09-24T00:49:30Z,- arpitapandya commented on issue: [3098](https://github.com/hackforla/website/issues/3098#issuecomment-1256819950) at 2022-09-23 05:49 PM PDT -arpitapandya,2022-09-24T00:53:54Z,- arpitapandya closed issue by PR 3578: [3098](https://github.com/hackforla/website/issues/3098#event-7451053449) at 2022-09-23 05:53 PM PDT -arpitapandya,2022-09-26T14:47:53Z,- arpitapandya submitted pull request review: [3581](https://github.com/hackforla/website/pull/3581#pullrequestreview-1120372107) at 2022-09-26 07:47 AM PDT -arpitapandya,2022-09-26T15:05:53Z,- arpitapandya closed issue by PR 3579: [3129](https://github.com/hackforla/website/issues/3129#event-7459842265) at 2022-09-26 08:05 AM PDT -arpitapandya,2022-09-26T18:55:30Z,- arpitapandya opened pull request: [3583](https://github.com/hackforla/website/pull/3583) at 2022-09-26 11:55 AM PDT -arpitapandya,2022-09-26T18:56:29Z,- arpitapandya pull request closed w/o merging: [3583](https://github.com/hackforla/website/pull/3583#event-7461641942) at 2022-09-26 11:56 AM PDT -arpitapandya,2022-09-26T20:14:31Z,- arpitapandya opened pull request: [3584](https://github.com/hackforla/website/pull/3584) at 2022-09-26 01:14 PM PDT -arpitapandya,2022-09-26T21:23:42Z,- arpitapandya pull request closed w/o merging: [3584](https://github.com/hackforla/website/pull/3584#event-7462659146) at 2022-09-26 02:23 PM PDT -arpitapandya,2022-09-26T22:05:29Z,- arpitapandya submitted pull request review: [3581](https://github.com/hackforla/website/pull/3581#pullrequestreview-1120963177) at 2022-09-26 03:05 PM PDT -arpitapandya,2022-09-27T16:12:04Z,- arpitapandya commented on pull request: [3582](https://github.com/hackforla/website/pull/3582#issuecomment-1259729704) at 2022-09-27 09:12 AM PDT -arpitapandya,2022-09-27T17:01:25Z,- arpitapandya submitted pull request review: [3582](https://github.com/hackforla/website/pull/3582#pullrequestreview-1122367892) at 2022-09-27 10:01 AM PDT -arpitapandya,2022-09-28T01:05:11Z,- arpitapandya closed issue by PR 3585: [2925](https://github.com/hackforla/website/issues/2925#event-7473353558) at 2022-09-27 06:05 PM PDT -arpitapandya,2022-09-28T01:06:48Z,- arpitapandya closed issue by PR 3581: [3489](https://github.com/hackforla/website/issues/3489#event-7473359091) at 2022-09-27 06:06 PM PDT -arpitapandya,2022-09-28T01:57:57Z,- arpitapandya pull request closed w/o merging: [3575](https://github.com/hackforla/website/pull/3575#event-7473542008) at 2022-09-27 06:57 PM PDT -arpitapandya,2022-09-30T14:18:25Z,- arpitapandya commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1263637218) at 2022-09-30 07:18 AM PDT -arpitapandya,2022-09-30T17:13:41Z,- arpitapandya commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1263820054) at 2022-09-30 10:13 AM PDT -arpitapandya,2022-09-30T20:48:14Z,- arpitapandya commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1264011288) at 2022-09-30 01:48 PM PDT -arpitapandya,2022-09-30T20:50:38Z,- arpitapandya submitted pull request review: [3593](https://github.com/hackforla/website/pull/3593#pullrequestreview-1127348285) at 2022-09-30 01:50 PM PDT -arpitapandya,2022-09-30T21:36:22Z,- arpitapandya closed issue by PR 3593: [2485](https://github.com/hackforla/website/issues/2485#event-7498804089) at 2022-09-30 02:36 PM PDT -arpitapandya,2022-09-30T21:49:17Z,- arpitapandya commented on pull request: [3589](https://github.com/hackforla/website/pull/3589#issuecomment-1264054789) at 2022-09-30 02:49 PM PDT -arpitapandya,2022-09-30T21:50:14Z,- arpitapandya submitted pull request review: [3589](https://github.com/hackforla/website/pull/3589#pullrequestreview-1127389447) at 2022-09-30 02:50 PM PDT -arpitapandya,2022-09-30T21:52:34Z,- arpitapandya closed issue by PR 3589: [2954](https://github.com/hackforla/website/issues/2954#event-7498864932) at 2022-09-30 02:52 PM PDT -arpitapandya,2022-09-30T22:32:33Z,- arpitapandya submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1127409744) at 2022-09-30 03:32 PM PDT -arpitapandya,2022-09-30T22:40:32Z,- arpitapandya closed issue by PR 3590: [2836](https://github.com/hackforla/website/issues/2836#event-7499029680) at 2022-09-30 03:40 PM PDT -arpitapandya,2022-09-30T22:44:03Z,- arpitapandya commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1264103211) at 2022-09-30 03:44 PM PDT -arpitapandya,2022-10-01T17:16:24Z,- arpitapandya commented on pull request: [3594](https://github.com/hackforla/website/pull/3594#issuecomment-1264427679) at 2022-10-01 10:16 AM PDT -arpitapandya,2022-10-01T17:23:46Z,- arpitapandya submitted pull request review: [3594](https://github.com/hackforla/website/pull/3594#pullrequestreview-1127549598) at 2022-10-01 10:23 AM PDT -arpitapandya,2022-10-01T18:43:00Z,- arpitapandya commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1264449331) at 2022-10-01 11:43 AM PDT -arpitapandya,2022-10-01T22:26:34Z,- arpitapandya submitted pull request review: [3586](https://github.com/hackforla/website/pull/3586#pullrequestreview-1127572286) at 2022-10-01 03:26 PM PDT -arpitapandya,2022-10-01T23:53:07Z,- arpitapandya commented on pull request: [3595](https://github.com/hackforla/website/pull/3595#issuecomment-1264510532) at 2022-10-01 04:53 PM PDT -arpitapandya,2022-10-02T00:42:46Z,- arpitapandya submitted pull request review: [3595](https://github.com/hackforla/website/pull/3595#pullrequestreview-1127578993) at 2022-10-01 05:42 PM PDT -arpitapandya,2022-10-02T00:43:10Z,- arpitapandya closed issue by PR 3595: [3562](https://github.com/hackforla/website/issues/3562#event-7501258139) at 2022-10-01 05:43 PM PDT -arpitapandya,2022-10-02T00:45:47Z,- arpitapandya closed issue by PR 3594: [3481](https://github.com/hackforla/website/issues/3481#event-7501259941) at 2022-10-01 05:45 PM PDT -arpitapandya,2022-10-02T00:48:39Z,- arpitapandya commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1264518535) at 2022-10-01 05:48 PM PDT -arpitapandya,2022-10-02T00:48:59Z,- arpitapandya closed issue by PR 3586: [3447](https://github.com/hackforla/website/issues/3447#event-7501262221) at 2022-10-01 05:48 PM PDT -arpitapandya,2022-10-02T17:16:36Z,- arpitapandya commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1264691584) at 2022-10-02 10:16 AM PDT -arpitapandya,2022-10-07T21:37:37Z,- arpitapandya closed issue by PR 3599: [3354](https://github.com/hackforla/website/issues/3354#event-7546732147) at 2022-10-07 02:37 PM PDT -arpitapandya,2022-10-09T00:44:02Z,- arpitapandya commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1272422869) at 2022-10-08 05:44 PM PDT -arpitapandya,2022-10-09T00:45:08Z,- arpitapandya closed issue by PR 3087: [2355](https://github.com/hackforla/website/issues/2355#event-7548678915) at 2022-10-08 05:45 PM PDT -arpitapandya,2022-10-09T01:36:39Z,- arpitapandya commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1272428566) at 2022-10-08 06:36 PM PDT -arpitapandya,2022-10-09T18:43:16Z,- arpitapandya assigned to issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272603882) at 2022-10-09 11:43 AM PDT -arpitapandya,2022-10-09T23:48:30Z,- arpitapandya opened pull request: [3601](https://github.com/hackforla/website/pull/3601) at 2022-10-09 04:48 PM PDT -arpitapandya,2022-10-10T00:29:29Z,- arpitapandya commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272665955) at 2022-10-09 05:29 PM PDT -arpitapandya,2022-10-10T00:32:17Z,- arpitapandya submitted pull request review: [3600](https://github.com/hackforla/website/pull/3600#pullrequestreview-1135412578) at 2022-10-09 05:32 PM PDT -arpitapandya,2022-10-10T01:18:12Z,- arpitapandya closed issue by PR 3600: [2844](https://github.com/hackforla/website/issues/2844#event-7550254434) at 2022-10-09 06:18 PM PDT -arpitapandya,2022-10-10T01:34:00Z,- arpitapandya commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1272692834) at 2022-10-09 06:34 PM PDT -arpitapandya,2022-10-10T17:20:31Z,- arpitapandya pull request merged: [3601](https://github.com/hackforla/website/pull/3601#event-7555933563) at 2022-10-10 10:20 AM PDT -arpitapandya,2022-10-13T03:04:29Z,- arpitapandya commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276965670) at 2022-10-12 08:04 PM PDT -arpitapandya,2022-10-14T03:33:55Z,- arpitapandya commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1278433610) at 2022-10-13 08:33 PM PDT -arpitapandya,2022-10-14T03:34:40Z,- arpitapandya commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1278434245) at 2022-10-13 08:34 PM PDT -arpitapandya,2022-10-14T03:34:40Z,- arpitapandya closed issue as completed: [3238](https://github.com/hackforla/website/issues/3238#event-7586677015) at 2022-10-13 08:34 PM PDT -arpitapandya,2022-10-17T20:48:44Z,- arpitapandya commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1281477120) at 2022-10-17 01:48 PM PDT -arpitapandya,2022-10-19T02:39:30Z,- arpitapandya commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1283323031) at 2022-10-18 07:39 PM PDT -arpitapandya,2022-10-22T00:12:53Z,- arpitapandya commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1287548632) at 2022-10-21 05:12 PM PDT -arpitapandya,2022-10-26T00:06:58Z,- arpitapandya closed issue by PR 3655: [3284](https://github.com/hackforla/website/issues/3284#event-7668000060) at 2022-10-25 05:06 PM PDT -arpitapandya,2022-10-26T00:08:55Z,- arpitapandya closed issue by PR 3657: [3205](https://github.com/hackforla/website/issues/3205#event-7668007449) at 2022-10-25 05:08 PM PDT -arpitapandya,2022-10-26T00:10:43Z,- arpitapandya closed issue by PR 3658: [2853](https://github.com/hackforla/website/issues/2853#event-7668013633) at 2022-10-25 05:10 PM PDT -arpitapandya,2022-10-26T00:13:02Z,- arpitapandya closed issue by PR 3659: [2857](https://github.com/hackforla/website/issues/2857#event-7668021213) at 2022-10-25 05:13 PM PDT -arpitapandya,2022-10-27T01:00:00Z,- arpitapandya commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292829445) at 2022-10-26 06:00 PM PDT -arpitapandya,2022-10-27T01:03:59Z,- arpitapandya commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292831553) at 2022-10-26 06:03 PM PDT -arpitapandya,2022-10-28T04:10:10Z,- arpitapandya opened issue: [3669](https://github.com/hackforla/website/issues/3669) at 2022-10-27 09:10 PM PDT -arpitapandya,2022-10-28T04:48:11Z,- arpitapandya assigned to issue: [3669](https://github.com/hackforla/website/issues/3669) at 2022-10-27 09:48 PM PDT -arpitapandya,2022-10-28T05:18:37Z,- arpitapandya opened issue: [3670](https://github.com/hackforla/website/issues/3670) at 2022-10-27 10:18 PM PDT -arpitapandya,2022-10-28T05:39:52Z,- arpitapandya assigned to issue: [3670](https://github.com/hackforla/website/issues/3670) at 2022-10-27 10:39 PM PDT -arpitapandya,2022-10-28T06:16:50Z,- arpitapandya opened pull request: [3671](https://github.com/hackforla/website/pull/3671) at 2022-10-27 11:16 PM PDT -arpitapandya,2022-10-28T14:45:32Z,- arpitapandya commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1295089805) at 2022-10-28 07:45 AM PDT -arpitapandya,2022-10-28T14:48:47Z,- arpitapandya closed issue as completed: [2777](https://github.com/hackforla/website/issues/2777#event-7692384015) at 2022-10-28 07:48 AM PDT -arpitapandya,2022-10-28T15:02:53Z,- arpitapandya closed issue as completed: [3669](https://github.com/hackforla/website/issues/3669#event-7692494249) at 2022-10-28 08:02 AM PDT -arpitapandya,2022-10-28T15:19:35Z,- arpitapandya pull request closed w/o merging: [3671](https://github.com/hackforla/website/pull/3671#event-7692621650) at 2022-10-28 08:19 AM PDT -arpitapandya,2022-10-28T19:20:53Z,- arpitapandya commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295367794) at 2022-10-28 12:20 PM PDT -arpitapandya,2022-10-30T03:14:29Z,- arpitapandya closed issue by PR 3673: [3206](https://github.com/hackforla/website/issues/3206#event-7698169103) at 2022-10-29 08:14 PM PDT -arpitapandya,2022-10-30T18:54:55Z,- arpitapandya closed issue by PR 3652: [2438](https://github.com/hackforla/website/issues/2438#event-7699613099) at 2022-10-30 11:54 AM PDT -arpitapandya,2022-10-30T22:44:31Z,- arpitapandya commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1296368287) at 2022-10-30 03:44 PM PDT -arpitapandya,2022-10-30T23:05:54Z,- arpitapandya submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1161206515) at 2022-10-30 04:05 PM PDT -arpitapandya,2022-10-31T01:42:02Z,- arpitapandya commented on pull request: [3674](https://github.com/hackforla/website/pull/3674#issuecomment-1296433691) at 2022-10-30 06:42 PM PDT -arpitapandya,2022-10-31T02:03:12Z,- arpitapandya submitted pull request review: [3674](https://github.com/hackforla/website/pull/3674#pullrequestreview-1161252422) at 2022-10-30 07:03 PM PDT -arpitapandya,2022-10-31T02:04:09Z,- arpitapandya closed issue by PR 3674: [2479](https://github.com/hackforla/website/issues/2479#event-7700332161) at 2022-10-30 07:04 PM PDT -arpitapandya,2022-10-31T02:16:28Z,- arpitapandya submitted pull request review: [3676](https://github.com/hackforla/website/pull/3676#pullrequestreview-1161257745) at 2022-10-30 07:16 PM PDT -arpitapandya,2022-10-31T18:36:57Z,- arpitapandya commented on pull request: [3677](https://github.com/hackforla/website/pull/3677#issuecomment-1297508977) at 2022-10-31 11:36 AM PDT -arpitapandya,2022-10-31T18:37:44Z,- arpitapandya submitted pull request review: [3677](https://github.com/hackforla/website/pull/3677#pullrequestreview-1162365150) at 2022-10-31 11:37 AM PDT -arpitapandya,2022-10-31T18:38:15Z,- arpitapandya closed issue by PR 3677: [3196](https://github.com/hackforla/website/issues/3196#event-7707028728) at 2022-10-31 11:38 AM PDT -arpitapandya,2022-10-31T18:39:20Z,- arpitapandya commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1297512212) at 2022-10-31 11:39 AM PDT -arpitapandya,2022-10-31T18:43:49Z,- arpitapandya submitted pull request review: [3675](https://github.com/hackforla/website/pull/3675#pullrequestreview-1162372680) at 2022-10-31 11:43 AM PDT -arpitapandya,2022-10-31T18:44:43Z,- arpitapandya closed issue by PR 3675: [3278](https://github.com/hackforla/website/issues/3278#event-7707075466) at 2022-10-31 11:44 AM PDT -arpitapandya,2022-10-31T19:56:37Z,- arpitapandya opened pull request: [3680](https://github.com/hackforla/website/pull/3680) at 2022-10-31 12:56 PM PDT -arpitapandya,2022-10-31T20:14:15Z,- arpitapandya pull request merged: [3680](https://github.com/hackforla/website/pull/3680#event-7707754134) at 2022-10-31 01:14 PM PDT -arpitapandya,2022-10-31T20:29:26Z,- arpitapandya commented on issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1297644812) at 2022-10-31 01:29 PM PDT -arpitapandya,2022-10-31T20:29:26Z,- arpitapandya reopened issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1297644812) at 2022-10-31 01:29 PM PDT -arpitapandya,2022-11-01T04:59:17Z,- arpitapandya commented on pull request: [3681](https://github.com/hackforla/website/pull/3681#issuecomment-1298029324) at 2022-10-31 09:59 PM PDT -arpitapandya,2022-11-01T05:12:35Z,- arpitapandya submitted pull request review: [3681](https://github.com/hackforla/website/pull/3681#pullrequestreview-1162836673) at 2022-10-31 10:12 PM PDT -arpitapandya,2022-11-01T05:13:26Z,- arpitapandya closed issue by PR 3681: [3619](https://github.com/hackforla/website/issues/3619#event-7710191937) at 2022-10-31 10:13 PM PDT -arpitapandya,2022-11-02T04:13:04Z,- arpitapandya submitted pull request review: [3687](https://github.com/hackforla/website/pull/3687#pullrequestreview-1164393193) at 2022-11-01 09:13 PM PDT -arpitapandya,2022-11-02T04:31:29Z,- arpitapandya commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1299551555) at 2022-11-01 09:31 PM PDT -arpitapandya,2022-11-02T04:57:01Z,- arpitapandya commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299571006) at 2022-11-01 09:57 PM PDT -arpitapandya,2022-11-03T00:10:29Z,- arpitapandya commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1301510691) at 2022-11-02 05:10 PM PDT -arpitapandya,2022-11-04T19:23:06Z,- arpitapandya commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304058300) at 2022-11-04 12:23 PM PDT -arpitapandya,2022-11-04T19:26:17Z,- arpitapandya commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304061730) at 2022-11-04 12:26 PM PDT -arpitapandya,2022-11-04T19:29:06Z,- arpitapandya commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304064747) at 2022-11-04 12:29 PM PDT -arpitapandya,2022-11-09T02:15:56Z,- arpitapandya assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -arpitapandya,2022-11-10T18:47:09Z,- arpitapandya closed issue by PR 3703: [2859](https://github.com/hackforla/website/issues/2859#event-7786122633) at 2022-11-10 10:47 AM PST -arpitapandya,2022-11-10T18:48:40Z,- arpitapandya closed issue by PR 3699: [3207](https://github.com/hackforla/website/issues/3207#event-7786132312) at 2022-11-10 10:48 AM PST -arpitapandya,2022-11-10T18:50:20Z,- arpitapandya closed issue by PR 3700: [3208](https://github.com/hackforla/website/issues/3208#event-7786143252) at 2022-11-10 10:50 AM PST -arpitapandya,2022-11-10T21:22:02Z,- arpitapandya opened pull request: [3713](https://github.com/hackforla/website/pull/3713) at 2022-11-10 01:22 PM PST -arpitapandya,2022-11-10T21:41:06Z,- arpitapandya commented on pull request: [3713](https://github.com/hackforla/website/pull/3713#issuecomment-1310939323) at 2022-11-10 01:41 PM PST -arpitapandya,2022-11-10T21:41:07Z,- arpitapandya pull request closed w/o merging: [3713](https://github.com/hackforla/website/pull/3713#event-7787273427) at 2022-11-10 01:41 PM PST -arpitapandya,2022-11-10T21:44:41Z,- arpitapandya submitted pull request review: [3705](https://github.com/hackforla/website/pull/3705#pullrequestreview-1176534782) at 2022-11-10 01:44 PM PST -arpitapandya,2022-11-10T22:37:03Z,- arpitapandya reopened pull request: [3713](https://github.com/hackforla/website/pull/3713#event-7787273427) at 2022-11-10 02:37 PM PST -arpitapandya,2022-11-11T02:10:48Z,- arpitapandya opened pull request: [3714](https://github.com/hackforla/website/pull/3714) at 2022-11-10 06:10 PM PST -arpitapandya,2022-11-11T03:17:35Z,- arpitapandya pull request merged: [3714](https://github.com/hackforla/website/pull/3714#event-7788679852) at 2022-11-10 07:17 PM PST -arpitapandya,2022-11-11T03:52:35Z,- arpitapandya opened pull request: [3715](https://github.com/hackforla/website/pull/3715) at 2022-11-10 07:52 PM PST -arpitapandya,2022-11-11T04:23:47Z,- arpitapandya submitted pull request review: [3705](https://github.com/hackforla/website/pull/3705#pullrequestreview-1176779917) at 2022-11-10 08:23 PM PST -arpitapandya,2022-11-11T04:24:58Z,- arpitapandya closed issue by PR 3705: [3449](https://github.com/hackforla/website/issues/3449#event-7788913591) at 2022-11-10 08:24 PM PST -arpitapandya,2022-11-11T15:53:52Z,- arpitapandya commented on pull request: [3715](https://github.com/hackforla/website/pull/3715#issuecomment-1311874739) at 2022-11-11 07:53 AM PST -arpitapandya,2022-11-11T15:53:52Z,- arpitapandya pull request closed w/o merging: [3715](https://github.com/hackforla/website/pull/3715#event-7793166086) at 2022-11-11 07:53 AM PST -arpitapandya,2022-11-11T15:56:07Z,- arpitapandya commented on pull request: [3713](https://github.com/hackforla/website/pull/3713#issuecomment-1311878767) at 2022-11-11 07:56 AM PST -arpitapandya,2022-11-11T15:56:07Z,- arpitapandya pull request closed w/o merging: [3713](https://github.com/hackforla/website/pull/3713#event-7793187728) at 2022-11-11 07:56 AM PST -arpitapandya,2022-11-11T15:57:21Z,- arpitapandya closed issue by PR 3696: [3651](https://github.com/hackforla/website/issues/3651#event-7793207171) at 2022-11-11 07:57 AM PST -arpitapandya,2022-11-11T15:58:20Z,- arpitapandya closed issue by PR 3702: [3165](https://github.com/hackforla/website/issues/3165#event-7793223171) at 2022-11-11 07:58 AM PST -arpitapandya,2022-11-17T00:30:45Z,- arpitapandya closed issue by PR 3718: [2860](https://github.com/hackforla/website/issues/2860#event-7829138872) at 2022-11-16 04:30 PM PST -arpitapandya,2022-11-17T00:32:48Z,- arpitapandya closed issue by PR 3717: [2904](https://github.com/hackforla/website/issues/2904#event-7829148120) at 2022-11-16 04:32 PM PST -arpitapandya,2022-11-17T17:27:28Z,- arpitapandya submitted pull request review: [3728](https://github.com/hackforla/website/pull/3728#pullrequestreview-1184747046) at 2022-11-17 09:27 AM PST -arpitapandya,2022-11-17T20:16:33Z,- arpitapandya submitted pull request review: [3728](https://github.com/hackforla/website/pull/3728#pullrequestreview-1185019303) at 2022-11-17 12:16 PM PST -arpitapandya,2022-11-17T20:17:50Z,- arpitapandya closed issue by PR 3728: [2873](https://github.com/hackforla/website/issues/2873#event-7837471004) at 2022-11-17 12:17 PM PST -arpitapandya,2022-11-27T19:52:49Z,- arpitapandya commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1328326558) at 2022-11-27 11:52 AM PST -arpitapandya,2022-12-06T18:18:37Z,- arpitapandya submitted pull request review: [3754](https://github.com/hackforla/website/pull/3754#pullrequestreview-1207091921) at 2022-12-06 10:18 AM PST -arpitapandya,2022-12-07T09:25:51Z,- arpitapandya closed issue by PR 3497: [2199](https://github.com/hackforla/website/issues/2199#event-7975681885) at 2022-12-07 01:25 AM PST -arpitapandya,2022-12-12T20:42:32Z,- arpitapandya commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1347279715) at 2022-12-12 12:42 PM PST -arpitapandya,2022-12-12T20:47:32Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347295970) at 2022-12-12 12:47 PM PST -arpitapandya,2022-12-13T00:59:35Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347594392) at 2022-12-12 04:59 PM PST -arpitapandya,2022-12-13T01:37:53Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347624578) at 2022-12-12 05:37 PM PST -arpitapandya,2022-12-13T01:44:18Z,- arpitapandya submitted pull request review: [3771](https://github.com/hackforla/website/pull/3771#pullrequestreview-1214603633) at 2022-12-12 05:44 PM PST -arpitapandya,2022-12-13T02:18:03Z,- arpitapandya commented on pull request: [3771](https://github.com/hackforla/website/pull/3771#issuecomment-1347653289) at 2022-12-12 06:18 PM PST -arpitapandya,2022-12-13T20:53:06Z,- arpitapandya commented on pull request: [3771](https://github.com/hackforla/website/pull/3771#issuecomment-1349675036) at 2022-12-13 12:53 PM PST -arpitapandya,2022-12-13T21:49:11Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1349799226) at 2022-12-13 01:49 PM PST -arpitapandya,2022-12-14T03:22:45Z,- arpitapandya submitted pull request review: [3771](https://github.com/hackforla/website/pull/3771#pullrequestreview-1216727182) at 2022-12-13 07:22 PM PST -arpitapandya,2022-12-14T03:30:46Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1350341951) at 2022-12-13 07:30 PM PST -arpitapandya,2022-12-14T06:32:33Z,- arpitapandya submitted pull request review: [3771](https://github.com/hackforla/website/pull/3771#pullrequestreview-1216865135) at 2022-12-13 10:32 PM PST -arpitapandya,2022-12-14T06:33:33Z,- arpitapandya closed issue by PR 3771: [3697](https://github.com/hackforla/website/issues/3697#event-8033411170) at 2022-12-13 10:33 PM PST -arpitapandya,2022-12-14T16:31:36Z,- arpitapandya commented on issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351734938) at 2022-12-14 08:31 AM PST -arpitapandya,2022-12-20T01:14:02Z,- arpitapandya commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1358703433) at 2022-12-19 05:14 PM PST -arpitapandya,2023-01-09T15:21:05Z,- arpitapandya closed issue by PR 3795: [2874](https://github.com/hackforla/website/issues/2874#event-8182899276) at 2023-01-09 07:21 AM PST -arpitapandya,2023-01-12T12:34:47Z,- arpitapandya closed issue by PR 3806: [3755](https://github.com/hackforla/website/issues/3755#event-8210903395) at 2023-01-12 04:34 AM PST -arpitapandya,2023-01-12T12:38:37Z,- arpitapandya commented on issue: [2870](https://github.com/hackforla/website/issues/2870#issuecomment-1380267739) at 2023-01-12 04:38 AM PST -arpitapandya,2023-01-12T12:39:36Z,- arpitapandya closed issue by PR 3804: [2870](https://github.com/hackforla/website/issues/2870#event-8210940025) at 2023-01-12 04:39 AM PST -arpitapandya,2023-01-12T12:44:16Z,- arpitapandya submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1245533822) at 2023-01-12 04:44 AM PST -arpitapandya,2023-01-12T13:25:50Z,- arpitapandya closed issue by PR 3807: [2861](https://github.com/hackforla/website/issues/2861#event-8211336224) at 2023-01-12 05:25 AM PST -arpitapandya,2023-01-13T12:29:24Z,- arpitapandya submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1247560999) at 2023-01-13 04:29 AM PST -arpitapandya,2023-01-13T12:29:44Z,- arpitapandya closed issue by PR 3808: [3401](https://github.com/hackforla/website/issues/3401#event-8220398566) at 2023-01-13 04:29 AM PST -arpitapandya,2023-01-13T12:37:47Z,- arpitapandya submitted pull request review: [3812](https://github.com/hackforla/website/pull/3812#pullrequestreview-1247570837) at 2023-01-13 04:37 AM PST -arpitapandya,2023-01-14T23:51:49Z,- arpitapandya submitted pull request review: [3814](https://github.com/hackforla/website/pull/3814#pullrequestreview-1249052516) at 2023-01-14 03:51 PM PST -arpitapandya,2023-01-17T15:57:10Z,- arpitapandya closed issue by PR 3817: [3091](https://github.com/hackforla/website/issues/3091#event-8247174752) at 2023-01-17 07:57 AM PST -arpitapandya,2023-01-17T15:58:22Z,- arpitapandya closed issue by PR 3815: [2866](https://github.com/hackforla/website/issues/2866#event-8247186711) at 2023-01-17 07:58 AM PST -arpitapandya,2023-01-17T15:59:37Z,- arpitapandya closed issue by PR 3810: [3773](https://github.com/hackforla/website/issues/3773#event-8247198981) at 2023-01-17 07:59 AM PST -arpitapandya,2023-01-17T16:00:24Z,- arpitapandya closed issue by PR 3832: [2867](https://github.com/hackforla/website/issues/2867#event-8247207463) at 2023-01-17 08:00 AM PST -arpitapandya,2023-01-18T04:30:34Z,- arpitapandya commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1386472117) at 2023-01-17 08:30 PM PST -arpitapandya,2023-01-19T15:38:21Z,- arpitapandya closed issue by PR 3842: [2869](https://github.com/hackforla/website/issues/2869#event-8313339233) at 2023-01-19 07:38 AM PST -arpitapandya,2023-01-19T15:41:45Z,- arpitapandya closed issue by PR 3834: [3382](https://github.com/hackforla/website/issues/3382#event-8313373368) at 2023-01-19 07:41 AM PST -arpitapandya,2023-01-20T14:49:21Z,- arpitapandya closed issue as completed: [3415](https://github.com/hackforla/website/issues/3415#event-8322144996) at 2023-01-20 06:49 AM PST -arpitapandya,2023-01-20T14:50:20Z,- arpitapandya closed issue by PR 3836: [3402](https://github.com/hackforla/website/issues/3402#event-8322153306) at 2023-01-20 06:50 AM PST -arpitapandya,2023-01-20T14:53:07Z,- arpitapandya submitted pull request review: [3814](https://github.com/hackforla/website/pull/3814#pullrequestreview-1263747936) at 2023-01-20 06:53 AM PST -arpitapandya,2023-01-20T14:54:09Z,- arpitapandya closed issue by PR 3814: [2276](https://github.com/hackforla/website/issues/2276#event-8322185418) at 2023-01-20 06:54 AM PST -arpitapandya,2023-01-22T01:33:33Z,- arpitapandya commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1399379774) at 2023-01-21 05:33 PM PST -arpitapandya,2023-01-26T18:47:27Z,- arpitapandya closed issue by PR 3864: [3823](https://github.com/hackforla/website/issues/3823#event-8366877522) at 2023-01-26 10:47 AM PST -arpitapandya,2023-01-30T19:47:23Z,- arpitapandya commented on pull request: [3898](https://github.com/hackforla/website/pull/3898#issuecomment-1409236663) at 2023-01-30 11:47 AM PST -arpitapandya,2023-01-30T19:48:14Z,- arpitapandya commented on pull request: [3899](https://github.com/hackforla/website/pull/3899#issuecomment-1409237551) at 2023-01-30 11:48 AM PST -arpitmathur2412,2023-10-10T14:37:38Z,- arpitmathur2412 commented on issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1755568912) at 2023-10-10 07:37 AM PDT -ArshiaZargarani,5072,SKILLS ISSUE -ArshiaZargarani,2023-07-26T03:00:42Z,- ArshiaZargarani opened issue: [5072](https://github.com/hackforla/website/issues/5072) at 2023-07-25 08:00 PM PDT -ArshiaZargarani,2023-07-26T03:03:20Z,- ArshiaZargarani assigned to issue: [5072](https://github.com/hackforla/website/issues/5072#issuecomment-1650902295) at 2023-07-25 08:03 PM PDT -ArtinNazarian,6418,SKILLS ISSUE -ArtinNazarian,2024-03-05T03:15:57Z,- ArtinNazarian opened issue: [6418](https://github.com/hackforla/website/issues/6418) at 2024-03-04 07:15 PM PST -ArtinNazarian,2024-03-05T03:20:39Z,- ArtinNazarian assigned to issue: [6418](https://github.com/hackforla/website/issues/6418) at 2024-03-04 07:20 PM PST -ArtinNazarian,2024-04-11T15:53:05Z,- ArtinNazarian commented on issue: [6418](https://github.com/hackforla/website/issues/6418#issuecomment-2050013741) at 2024-04-11 08:53 AM PDT -ArtinNazarian,2024-04-11T15:53:05Z,- ArtinNazarian closed issue as completed: [6418](https://github.com/hackforla/website/issues/6418#event-12438618470) at 2024-04-11 08:53 AM PDT -arunprakash87,2020-07-12T22:32:53Z,- arunprakash87 opened issue: [607](https://github.com/hackforla/website/issues/607) at 2020-07-12 03:32 PM PDT -Aryannath,2021-10-10T09:23:02Z,- Aryannath opened pull request: [2358](https://github.com/hackforla/website/pull/2358) at 2021-10-10 02:23 AM PDT -Aryannath,2021-10-10T09:23:21Z,- Aryannath commented on issue: [2349](https://github.com/hackforla/website/issues/2349#issuecomment-939437923) at 2021-10-10 02:23 AM PDT -Aryannath,2021-10-20T00:00:20Z,- Aryannath pull request merged: [2358](https://github.com/hackforla/website/pull/2358#event-5488500294) at 2021-10-19 05:00 PM PDT -AsherEngelberg,3268,SKILLS ISSUE -AsherEngelberg,2022-06-20T21:41:35Z,- AsherEngelberg opened issue: [3268](https://github.com/hackforla/website/issues/3268) at 2022-06-20 02:41 PM PDT -AsherEngelberg,2022-06-20T22:00:14Z,- AsherEngelberg assigned to issue: [3268](https://github.com/hackforla/website/issues/3268#issuecomment-1160868502) at 2022-06-20 03:00 PM PDT -AsherEngelberg,2022-06-21T18:44:24Z,- AsherEngelberg assigned to issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1082488622) at 2022-06-21 11:44 AM PDT -AsherEngelberg,2022-06-24T22:17:27Z,- AsherEngelberg commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1165985987) at 2022-06-24 03:17 PM PDT -AsherEngelberg,2022-06-27T17:53:18Z,- AsherEngelberg commented on issue: [3268](https://github.com/hackforla/website/issues/3268#issuecomment-1167680670) at 2022-06-27 10:53 AM PDT -AsherEngelberg,2022-07-07T20:06:42Z,- AsherEngelberg assigned to issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1166619880) at 2022-07-07 01:06 PM PDT -AsherEngelberg,2022-07-07T21:45:14Z,- AsherEngelberg opened pull request: [3340](https://github.com/hackforla/website/pull/3340) at 2022-07-07 02:45 PM PDT -AsherEngelberg,2022-07-07T22:00:17Z,- AsherEngelberg closed issue as completed: [3268](https://github.com/hackforla/website/issues/3268#event-6955588081) at 2022-07-07 03:00 PM PDT -AsherEngelberg,2022-07-11T18:20:25Z,- AsherEngelberg assigned to issue: [2438](https://github.com/hackforla/website/issues/2438) at 2022-07-11 11:20 AM PDT -AsherEngelberg,2022-07-11T18:28:34Z,- AsherEngelberg commented on issue: [2438](https://github.com/hackforla/website/issues/2438#issuecomment-1180730183) at 2022-07-11 11:28 AM PDT -AsherEngelberg,2022-07-15T02:20:12Z,- AsherEngelberg pull request closed w/o merging: [3340](https://github.com/hackforla/website/pull/3340#event-6998676109) at 2022-07-14 07:20 PM PDT -AsherEngelberg,2022-07-18T18:44:20Z,- AsherEngelberg opened pull request: [3384](https://github.com/hackforla/website/pull/3384) at 2022-07-18 11:44 AM PDT -AsherEngelberg,2022-07-18T18:49:51Z,- AsherEngelberg closed issue by PR 3961: [2806](https://github.com/hackforla/website/issues/2806#event-7014552338) at 2022-07-18 11:49 AM PDT -AsherEngelberg,2022-07-19T01:34:16Z,- AsherEngelberg commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1188498774) at 2022-07-18 06:34 PM PDT -AsherEngelberg,2022-07-20T16:27:07Z,- AsherEngelberg commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1190495569) at 2022-07-20 09:27 AM PDT -AsherEngelberg,2022-07-20T16:32:07Z,- AsherEngelberg assigned to issue: [2299](https://github.com/hackforla/website/issues/2299) at 2022-07-20 09:32 AM PDT -AsherEngelberg,2022-07-21T03:28:44Z,- AsherEngelberg unassigned from issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1190501160) at 2022-07-20 08:28 PM PDT -AsherEngelberg,2022-07-21T03:36:32Z,- AsherEngelberg commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1191001018) at 2022-07-20 08:36 PM PDT -AsherEngelberg,2022-07-22T01:42:24Z,- AsherEngelberg submitted pull request review: [3393](https://github.com/hackforla/website/pull/3393#pullrequestreview-1047294103) at 2022-07-21 06:42 PM PDT -AsherEngelberg,2022-07-23T03:52:27Z,- AsherEngelberg submitted pull request review: [3419](https://github.com/hackforla/website/pull/3419#pullrequestreview-1048498005) at 2022-07-22 08:52 PM PDT -AsherEngelberg,2022-07-25T17:35:47Z,- AsherEngelberg assigned to issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1059839860) at 2022-07-25 10:35 AM PDT -AsherEngelberg,2022-07-25T18:11:12Z,- AsherEngelberg unassigned from issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1194396263) at 2022-07-25 11:11 AM PDT -AsherEngelberg,2022-07-25T18:13:15Z,- AsherEngelberg assigned to issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1194396263) at 2022-07-25 11:13 AM PDT -AsherEngelberg,2022-07-26T20:28:03Z,- AsherEngelberg closed issue by PR 3753: [3316](https://github.com/hackforla/website/issues/3316#event-7067928200) at 2022-07-26 01:28 PM PDT -AsherEngelberg,2022-07-28T17:58:37Z,- AsherEngelberg submitted pull request review: [3419](https://github.com/hackforla/website/pull/3419#pullrequestreview-1054534771) at 2022-07-28 10:58 AM PDT -AsherEngelberg,2022-08-28T22:03:07Z,- AsherEngelberg unassigned from issue: [2438](https://github.com/hackforla/website/issues/2438#issuecomment-1180730183) at 2022-08-28 03:03 PM PDT -AsherEngelberg,2022-08-28T22:04:30Z,- AsherEngelberg pull request closed w/o merging: [3384](https://github.com/hackforla/website/pull/3384#event-7274055734) at 2022-08-28 03:04 PM PDT -AsherEngelberg,2022-10-04T01:20:55Z,- AsherEngelberg unassigned from issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1244901699) at 2022-10-03 06:20 PM PDT -AsherEngelberg,2022-10-04T01:50:45Z,- AsherEngelberg unassigned from issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1261073070) at 2022-10-03 06:50 PM PDT -AsherEngelberg,2022-10-04T01:52:04Z,- AsherEngelberg unassigned from issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1261164143) at 2022-10-03 06:52 PM PDT -ashleylin1,2021-01-17T19:40:33Z,- ashleylin1 assigned to issue: [918](https://github.com/hackforla/website/issues/918) at 2021-01-17 11:40 AM PST -ashleylin1,2021-01-24T17:49:09Z,- ashleylin1 opened issue: [961](https://github.com/hackforla/website/issues/961) at 2021-01-24 09:49 AM PST -ashleylin1,2021-01-24T17:51:49Z,- ashleylin1 commented on issue: [961](https://github.com/hackforla/website/issues/961#issuecomment-766402317) at 2021-01-24 09:51 AM PST -ashleylin1,2021-01-24T17:51:52Z,- ashleylin1 closed issue as completed: [961](https://github.com/hackforla/website/issues/961#event-4242752367) at 2021-01-24 09:51 AM PST -ashleylin1,2021-01-24T18:09:51Z,- ashleylin1 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-766405326) at 2021-01-24 10:09 AM PST -ashleylin1,2021-01-31T18:33:52Z,- ashleylin1 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770427972) at 2021-01-31 10:33 AM PST -ashleylin1,2021-01-31T19:42:56Z,- ashleylin1 assigned to issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-714792207) at 2021-01-31 11:42 AM PST -ashleylin1,2021-01-31T20:14:24Z,- ashleylin1 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770443351) at 2021-01-31 12:14 PM PST -ashleylin1,2021-02-07T18:59:54Z,- ashleylin1 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-774734014) at 2021-02-07 10:59 AM PST -ashleylin1,2021-02-21T18:32:27Z,- ashleylin1 unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-782897222) at 2021-02-21 10:32 AM PST -ashleylin1,2021-02-26T05:10:08Z,- ashleylin1 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-786415027) at 2021-02-25 09:10 PM PST -ashleylin1,2021-03-01T19:24:45Z,- ashleylin1 assigned to issue: [1122](https://github.com/hackforla/website/issues/1122) at 2021-03-01 11:24 AM PST -ashleylin1,2021-03-02T19:45:45Z,- ashleylin1 commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-789166844) at 2021-03-02 11:45 AM PST -ashleylin1,2021-03-02T23:39:22Z,- ashleylin1 assigned to issue: [1079](https://github.com/hackforla/website/issues/1079) at 2021-03-02 03:39 PM PST -ashleylin1,2021-03-07T03:42:36Z,- ashleylin1 unassigned from issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-789166844) at 2021-03-06 07:42 PM PST -ashleylin1,2021-03-07T16:14:02Z,- ashleylin1 unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-774757211) at 2021-03-07 08:14 AM PST -ashleylin1,2021-03-14T21:22:56Z,- ashleylin1 closed issue by PR 1291: [1021](https://github.com/hackforla/website/issues/1021#event-4455740746) at 2021-03-14 02:22 PM PDT -ashleylin1,2021-03-14T21:22:59Z,- ashleylin1 reopened issue: [1021](https://github.com/hackforla/website/issues/1021#event-4455740746) at 2021-03-14 02:22 PM PDT -ashleylin1,2021-03-14T21:28:19Z,- ashleylin1 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-798983064) at 2021-03-14 02:28 PM PDT -ashleylin1,2021-03-21T19:47:40Z,- ashleylin1 opened issue: [1287](https://github.com/hackforla/website/issues/1287) at 2021-03-21 12:47 PM PDT -ashleylin1,2021-03-21T20:32:17Z,- ashleylin1 assigned to issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-21 01:32 PM PDT -ashleylin1,2021-04-02T04:54:47Z,- ashleylin1 unassigned from issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-04-01 09:54 PM PDT -ashleylin1,2021-04-04T18:15:05Z,- ashleylin1 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-813076522) at 2021-04-04 11:15 AM PDT -ashleylin1,2021-04-08T21:11:33Z,- ashleylin1 assigned to issue: [1379](https://github.com/hackforla/website/issues/1379) at 2021-04-08 02:11 PM PDT -ashleylin1,2021-04-27T16:37:26Z,- ashleylin1 assigned to issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-741518187) at 2021-04-27 09:37 AM PDT -ashleylin1,2021-04-30T19:38:50Z,- ashleylin1 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-830336640) at 2021-04-30 12:38 PM PDT -ashleylin1,2021-04-30T19:39:29Z,- ashleylin1 unassigned from issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-830336640) at 2021-04-30 12:39 PM PDT -ashleylin1,2021-04-30T19:43:00Z,- ashleylin1 commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-830338523) at 2021-04-30 12:43 PM PDT -ashleylin1,2021-04-30T19:48:42Z,- ashleylin1 commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-830342774) at 2021-04-30 12:48 PM PDT -ashleylin1,2021-06-06T09:05:32Z,- ashleylin1 unassigned from issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-841622094) at 2021-06-06 02:05 AM PDT -ashleylin1,2021-06-08T19:49:27Z,- ashleylin1 assigned to issue: [1619](https://github.com/hackforla/website/issues/1619) at 2021-06-08 12:49 PM PDT -ashleylin1,2021-06-12T10:08:12Z,- ashleylin1 closed issue as completed: [184](https://github.com/hackforla/website/issues/184#event-4881094660) at 2021-06-12 03:08 AM PDT -ashleylin1,2021-06-13T17:52:50Z,- ashleylin1 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-860247761) at 2021-06-13 10:52 AM PDT -ashleylin1,2021-06-16T07:14:16Z,- ashleylin1 assigned to issue: [1739](https://github.com/hackforla/website/issues/1739) at 2021-06-16 12:14 AM PDT -ashleylin1,2021-06-20T06:55:56Z,- ashleylin1 unassigned from issue: [1739](https://github.com/hackforla/website/issues/1739) at 2021-06-19 11:55 PM PDT -ashleylin1,2021-06-20T16:46:26Z,- ashleylin1 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-864581527) at 2021-06-20 09:46 AM PDT -ashleylin1,2021-06-21T15:09:35Z,- ashleylin1 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-865112301) at 2021-06-21 08:09 AM PDT -ashleylin1,2021-07-04T16:32:47Z,- ashleylin1 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-873622090) at 2021-07-04 09:32 AM PDT -ashleylin1,2021-07-11T09:57:25Z,- ashleylin1 unassigned from issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-877613982) at 2021-07-11 02:57 AM PDT -ashleylin1,2021-07-11T11:35:08Z,- ashleylin1 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-877784115) at 2021-07-11 04:35 AM PDT -ashleylin1,2021-09-03T00:57:13Z,- ashleylin1 assigned to issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-907440583) at 2021-09-02 05:57 PM PDT -ashleylin1,2021-10-01T00:55:14Z,- ashleylin1 assigned to issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-870105825) at 2021-09-30 05:55 PM PDT -ashleylin1,2021-10-01T00:58:29Z,- ashleylin1 commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-931810061) at 2021-09-30 05:58 PM PDT -ashleylin1,2021-10-14T21:53:21Z,- ashleylin1 commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-943764510) at 2021-10-14 02:53 PM PDT -ashleylin1,2021-11-10T21:08:24Z,- ashleylin1 unassigned from issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-945147412) at 2021-11-10 01:08 PM PST -aswutmaxcy,6424,SKILLS ISSUE -aswutmaxcy,2024-03-05T03:45:31Z,- aswutmaxcy opened issue: [6422](https://github.com/hackforla/website/issues/6422) at 2024-03-04 07:45 PM PST -aswutmaxcy,2024-03-05T03:51:05Z,- aswutmaxcy opened issue: [6424](https://github.com/hackforla/website/issues/6424) at 2024-03-04 07:51 PM PST -aswutmaxcy,2024-03-05T03:52:22Z,- aswutmaxcy assigned to issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-1977919611) at 2024-03-04 07:52 PM PST -aswutmaxcy,2024-03-05T04:30:25Z,- aswutmaxcy closed issue as completed: [6422](https://github.com/hackforla/website/issues/6422#event-12008169997) at 2024-03-04 08:30 PM PST -aswutmaxcy,2024-03-07T17:29:38Z,- aswutmaxcy assigned to issue: [6154](https://github.com/hackforla/website/issues/6154) at 2024-03-07 09:29 AM PST -aswutmaxcy,2024-03-07T18:07:55Z,- aswutmaxcy commented on issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1984142049) at 2024-03-07 10:07 AM PST -aswutmaxcy,2024-03-07T18:17:09Z,- aswutmaxcy opened pull request: [6437](https://github.com/hackforla/website/pull/6437) at 2024-03-07 10:17 AM PST -aswutmaxcy,2024-03-07T18:18:27Z,- aswutmaxcy pull request closed w/o merging: [6437](https://github.com/hackforla/website/pull/6437#event-12046225196) at 2024-03-07 10:18 AM PST -aswutmaxcy,2024-03-07T18:19:55Z,- aswutmaxcy reopened pull request: [6437](https://github.com/hackforla/website/pull/6437#event-12046225196) at 2024-03-07 10:19 AM PST -aswutmaxcy,2024-03-07T18:27:53Z,- aswutmaxcy assigned to issue: [6180](https://github.com/hackforla/website/issues/6180) at 2024-03-07 10:27 AM PST -aswutmaxcy,2024-03-07T18:29:13Z,- aswutmaxcy commented on issue: [6180](https://github.com/hackforla/website/issues/6180#issuecomment-1984177408) at 2024-03-07 10:29 AM PST -aswutmaxcy,2024-03-07T20:58:06Z,- aswutmaxcy commented on issue: [6180](https://github.com/hackforla/website/issues/6180#issuecomment-1984446750) at 2024-03-07 12:58 PM PST -aswutmaxcy,2024-03-07T21:20:32Z,- aswutmaxcy opened pull request: [6438](https://github.com/hackforla/website/pull/6438) at 2024-03-07 01:20 PM PST -aswutmaxcy,2024-03-07T21:30:28Z,- aswutmaxcy commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1984535134) at 2024-03-07 01:30 PM PST -aswutmaxcy,2024-03-07T21:31:00Z,- aswutmaxcy commented on issue: [6180](https://github.com/hackforla/website/issues/6180#issuecomment-1984535755) at 2024-03-07 01:31 PM PST -aswutmaxcy,2024-03-07T21:32:18Z,- aswutmaxcy commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1984537510) at 2024-03-07 01:32 PM PST -aswutmaxcy,2024-03-07T21:32:23Z,- aswutmaxcy commented on issue: [6180](https://github.com/hackforla/website/issues/6180#issuecomment-1984537616) at 2024-03-07 01:32 PM PST -aswutmaxcy,2024-03-08T04:05:23Z,- aswutmaxcy commented on pull request: [6438](https://github.com/hackforla/website/pull/6438#issuecomment-1985003358) at 2024-03-07 08:05 PM PST -aswutmaxcy,2024-03-08T07:32:46Z,- aswutmaxcy unassigned from issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1985189593) at 2024-03-07 11:32 PM PST -aswutmaxcy,2024-03-08T07:37:30Z,- aswutmaxcy pull request closed w/o merging: [6437](https://github.com/hackforla/website/pull/6437#event-12052223239) at 2024-03-07 11:37 PM PST -aswutmaxcy,2024-03-11T18:47:44Z,- aswutmaxcy commented on pull request: [6438](https://github.com/hackforla/website/pull/6438#issuecomment-1989196748) at 2024-03-11 11:47 AM PDT -aswutmaxcy,2024-03-11T20:06:53Z,- aswutmaxcy pull request merged: [6438](https://github.com/hackforla/website/pull/6438#event-12079422538) at 2024-03-11 01:06 PM PDT -aswutmaxcy,2024-03-13T17:10:21Z,- aswutmaxcy assigned to issue: [6169](https://github.com/hackforla/website/issues/6169) at 2024-03-13 10:10 AM PDT -aswutmaxcy,2024-03-13T17:11:25Z,- aswutmaxcy commented on issue: [6169](https://github.com/hackforla/website/issues/6169#issuecomment-1995035013) at 2024-03-13 10:11 AM PDT -aswutmaxcy,2024-03-13T18:25:27Z,- aswutmaxcy opened pull request: [6458](https://github.com/hackforla/website/pull/6458) at 2024-03-13 11:25 AM PDT -aswutmaxcy,2024-03-15T12:52:07Z,- aswutmaxcy pull request closed w/o merging: [6458](https://github.com/hackforla/website/pull/6458#event-12131240486) at 2024-03-15 05:52 AM PDT -aswutmaxcy,2024-03-15T13:28:06Z,- aswutmaxcy opened pull request: [6465](https://github.com/hackforla/website/pull/6465) at 2024-03-15 06:28 AM PDT -aswutmaxcy,2024-03-19T19:53:47Z,- aswutmaxcy pull request merged: [6465](https://github.com/hackforla/website/pull/6465#event-12174881975) at 2024-03-19 12:53 PM PDT -aswutmaxcy,2024-03-20T14:35:46Z,- aswutmaxcy assigned to issue: [6450](https://github.com/hackforla/website/issues/6450) at 2024-03-20 07:35 AM PDT -aswutmaxcy,2024-03-20T14:36:09Z,- aswutmaxcy unassigned from issue: [6450](https://github.com/hackforla/website/issues/6450#issuecomment-2009725259) at 2024-03-20 07:36 AM PDT -aswutmaxcy,2024-03-21T13:01:51Z,- aswutmaxcy assigned to issue: [6487](https://github.com/hackforla/website/issues/6487) at 2024-03-21 06:01 AM PDT -aswutmaxcy,2024-03-21T13:03:34Z,- aswutmaxcy commented on issue: [6487](https://github.com/hackforla/website/issues/6487#issuecomment-2012242682) at 2024-03-21 06:03 AM PDT -aswutmaxcy,2024-03-21T23:31:23Z,- aswutmaxcy commented on issue: [6487](https://github.com/hackforla/website/issues/6487#issuecomment-2014045472) at 2024-03-21 04:31 PM PDT -aswutmaxcy,2024-03-22T19:22:01Z,- aswutmaxcy commented on issue: [6487](https://github.com/hackforla/website/issues/6487#issuecomment-2015763567) at 2024-03-22 12:22 PM PDT -aswutmaxcy,2024-11-04T05:16:48Z,- aswutmaxcy commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2453845048) at 2024-11-03 09:16 PM PST -aswutmaxcy,2024-11-07T21:20:09Z,- aswutmaxcy assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2436689864) at 2024-11-07 01:20 PM PST -aswutmaxcy,2024-11-07T21:20:24Z,- aswutmaxcy unassigned from issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2436689864) at 2024-11-07 01:20 PM PST -aswutmaxcy,2024-11-07T21:30:40Z,- aswutmaxcy assigned to issue: [7642](https://github.com/hackforla/website/issues/7642) at 2024-11-07 01:30 PM PST -aswutmaxcy,2024-11-07T21:30:54Z,- aswutmaxcy unassigned from issue: [7642](https://github.com/hackforla/website/issues/7642) at 2024-11-07 01:30 PM PST -aswutmaxcy,2024-11-07T21:53:04Z,- aswutmaxcy assigned to issue: [7601](https://github.com/hackforla/website/issues/7601) at 2024-11-07 01:53 PM PST -aswutmaxcy,2024-11-07T21:55:13Z,- aswutmaxcy commented on issue: [7601](https://github.com/hackforla/website/issues/7601#issuecomment-2463306514) at 2024-11-07 01:55 PM PST -aswutmaxcy,2024-11-09T23:57:29Z,- aswutmaxcy opened pull request: [7713](https://github.com/hackforla/website/pull/7713) at 2024-11-09 03:57 PM PST -aswutmaxcy,2024-11-12T01:30:13Z,- aswutmaxcy commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2469409294) at 2024-11-11 05:30 PM PST -aswutmaxcy,2024-11-14T20:32:44Z,- aswutmaxcy commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2477356230) at 2024-11-14 12:32 PM PST -aswutmaxcy,2024-11-14T22:12:11Z,- aswutmaxcy commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2477509753) at 2024-11-14 02:12 PM PST -aswutmaxcy,2024-11-15T04:52:41Z,- aswutmaxcy commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2477958253) at 2024-11-14 08:52 PM PST -aswutmaxcy,2024-11-16T02:04:15Z,- aswutmaxcy commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2480315223) at 2024-11-15 06:04 PM PST -aswutmaxcy,2024-11-16T02:05:39Z,- aswutmaxcy commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2480316859) at 2024-11-15 06:05 PM PST -aswutmaxcy,2024-11-18T03:00:34Z,- aswutmaxcy pull request merged: [7713](https://github.com/hackforla/website/pull/7713#event-15327680715) at 2024-11-17 07:00 PM PST -aswutmaxcy,2025-01-06T18:08:04Z,- aswutmaxcy commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2573642511) at 2025-01-06 10:08 AM PST -aswutmaxcy,2025-01-06T18:08:05Z,- aswutmaxcy closed issue as completed: [6424](https://github.com/hackforla/website/issues/6424#event-15829318922) at 2025-01-06 10:08 AM PST -aswutmaxcy,2025-01-06T18:34:57Z,- aswutmaxcy assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2507206922) at 2025-01-06 10:34 AM PST -aswutmaxcy,2025-01-06T18:37:12Z,- aswutmaxcy commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2573689023) at 2025-01-06 10:37 AM PST -aswutmaxcy,2025-01-20T16:48:51Z,- aswutmaxcy commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2602883136) at 2025-01-20 08:48 AM PST -aswutmaxcy,2025-03-18T01:39:40Z,- aswutmaxcy unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2652128063) at 2025-03-17 06:39 PM PDT -aswutmaxcy,2025-04-29T01:01:55Z,- aswutmaxcy commented on issue: [8034](https://github.com/hackforla/website/issues/8034#issuecomment-2837153019) at 2025-04-28 06:01 PM PDT -aswutmaxcy,2025-04-29T01:02:14Z,- aswutmaxcy opened issue: [8093](https://github.com/hackforla/website/issues/8093) at 2025-04-28 06:02 PM PDT -aswutmaxcy,2025-05-29T22:54:42Z,- aswutmaxcy assigned to issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2676364780) at 2025-05-29 03:54 PM PDT -aswutmaxcy,2025-05-29T22:57:05Z,- aswutmaxcy commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2920765083) at 2025-05-29 03:57 PM PDT -aswutmaxcy,2025-06-01T21:36:28Z,- aswutmaxcy commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2927933824) at 2025-06-01 02:36 PM PDT -aswutmaxcy,2025-06-03T01:45:10Z,- aswutmaxcy commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2933081731) at 2025-06-02 06:45 PM PDT -aswutmaxcy,2025-06-17T20:10:13Z,- aswutmaxcy commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2981696910) at 2025-06-17 01:10 PM PDT -aswutmaxcy,2025-06-18T21:21:48Z,- aswutmaxcy opened pull request: [8193](https://github.com/hackforla/website/pull/8193) at 2025-06-18 02:21 PM PDT -aswutmaxcy,2025-06-18T21:22:15Z,- aswutmaxcy pull request closed w/o merging: [8193](https://github.com/hackforla/website/pull/8193#event-18218381701) at 2025-06-18 02:22 PM PDT -aswutmaxcy,2025-06-18T21:37:52Z,- aswutmaxcy opened pull request: [8194](https://github.com/hackforla/website/pull/8194) at 2025-06-18 02:37 PM PDT -aswutmaxcy,2025-06-18T21:38:42Z,- aswutmaxcy pull request closed w/o merging: [8194](https://github.com/hackforla/website/pull/8194#event-18218597769) at 2025-06-18 02:38 PM PDT -aswutmaxcy,2025-06-18T21:41:52Z,- aswutmaxcy opened pull request: [8195](https://github.com/hackforla/website/pull/8195) at 2025-06-18 02:41 PM PDT -aswutmaxcy,2025-06-18T21:43:31Z,- aswutmaxcy commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2985779038) at 2025-06-18 02:43 PM PDT -aswutmaxcy,2025-06-25T18:25:35Z,- aswutmaxcy commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-3005741668) at 2025-06-25 11:25 AM PDT -aswutmaxcy,2025-06-25T21:02:23Z,- aswutmaxcy commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-3006139692) at 2025-06-25 02:02 PM PDT -aswutmaxcy,2025-07-01T19:01:23Z,- aswutmaxcy commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-3025195472) at 2025-07-01 12:01 PM PDT -aswutmaxcy,2025-07-02T16:19:17Z,- aswutmaxcy commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-3028475065) at 2025-07-02 09:19 AM PDT -aswutmaxcy,2025-07-02T16:21:47Z,- aswutmaxcy pull request merged: [8195](https://github.com/hackforla/website/pull/8195#event-18435565718) at 2025-07-02 09:21 AM PDT -atbalaji,6119,SKILLS ISSUE -atbalaji,2024-01-17T04:19:39Z,- atbalaji opened issue: [6119](https://github.com/hackforla/website/issues/6119) at 2024-01-16 08:19 PM PST -atbalaji,2024-01-17T04:19:48Z,- atbalaji assigned to issue: [6119](https://github.com/hackforla/website/issues/6119) at 2024-01-16 08:19 PM PST -attali-david,3509,SKILLS ISSUE -attali-david,2022-08-31T02:53:24Z,- attali-david opened issue: [3509](https://github.com/hackforla/website/issues/3509) at 2022-08-30 07:53 PM PDT -attali-david,2022-08-31T03:35:22Z,- attali-david assigned to issue: [3509](https://github.com/hackforla/website/issues/3509) at 2022-08-30 08:35 PM PDT -attali-david,2022-08-31T03:40:39Z,- attali-david assigned to issue: [2822](https://github.com/hackforla/website/issues/2822#issuecomment-1046374562) at 2022-08-30 08:40 PM PDT -attali-david,2022-08-31T03:48:24Z,- attali-david commented on issue: [2822](https://github.com/hackforla/website/issues/2822#issuecomment-1232426802) at 2022-08-30 08:48 PM PDT -attali-david,2022-08-31T22:06:54Z,- attali-david commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1233467610) at 2022-08-31 03:06 PM PDT -attali-david,2022-08-31T22:30:42Z,- attali-david opened pull request: [3513](https://github.com/hackforla/website/pull/3513) at 2022-08-31 03:30 PM PDT -attali-david,2022-09-01T00:39:17Z,- attali-david pull request merged: [3513](https://github.com/hackforla/website/pull/3513#event-7300737308) at 2022-08-31 05:39 PM PDT -attali-david,2022-09-01T14:53:40Z,- attali-david assigned to issue: [3101](https://github.com/hackforla/website/issues/3101#issuecomment-1116849963) at 2022-09-01 07:53 AM PDT -attali-david,2022-09-01T14:56:32Z,- attali-david commented on issue: [3101](https://github.com/hackforla/website/issues/3101#issuecomment-1234397838) at 2022-09-01 07:56 AM PDT -attali-david,2022-09-01T18:22:50Z,- attali-david opened pull request: [3514](https://github.com/hackforla/website/pull/3514) at 2022-09-01 11:22 AM PDT -attali-david,2022-09-02T02:53:20Z,- attali-david pull request merged: [3514](https://github.com/hackforla/website/pull/3514#event-7309935000) at 2022-09-01 07:53 PM PDT -attali-david,2022-09-02T03:55:31Z,- attali-david assigned to issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-968324929) at 2022-09-01 08:55 PM PDT -attali-david,2022-09-02T04:05:36Z,- attali-david unassigned from issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1235040283) at 2022-09-01 09:05 PM PDT -attali-david,2022-09-02T23:01:35Z,- attali-david assigned to issue: [3418](https://github.com/hackforla/website/issues/3418#issuecomment-1192097211) at 2022-09-02 04:01 PM PDT -attali-david,2022-09-02T23:02:20Z,- attali-david commented on issue: [3418](https://github.com/hackforla/website/issues/3418#issuecomment-1235963756) at 2022-09-02 04:02 PM PDT -attali-david,2022-09-03T00:05:42Z,- attali-david opened pull request: [3517](https://github.com/hackforla/website/pull/3517) at 2022-09-02 05:05 PM PDT -attali-david,2022-09-03T16:01:30Z,- attali-david commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236150316) at 2022-09-03 09:01 AM PDT -attali-david,2022-09-03T16:06:30Z,- attali-david commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236151258) at 2022-09-03 09:06 AM PDT -attali-david,2022-09-04T13:34:14Z,- attali-david pull request merged: [3517](https://github.com/hackforla/website/pull/3517#event-7318476335) at 2022-09-04 06:34 AM PDT -attali-david,2022-09-04T14:37:40Z,- attali-david assigned to issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1194674868) at 2022-09-04 07:37 AM PDT -attali-david,2022-09-04T17:22:39Z,- attali-david commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1236383211) at 2022-09-04 10:22 AM PDT -attali-david,2022-09-06T20:47:32Z,- attali-david commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1238633178) at 2022-09-06 01:47 PM PDT -AudreyRose-Wooden,5210,SKILLS ISSUE -AudreyRose-Wooden,2023-08-15T02:41:13Z,- AudreyRose-Wooden opened issue: [5210](https://github.com/hackforla/website/issues/5210) at 2023-08-14 07:41 PM PDT -AudreyRose-Wooden,2023-08-15T02:41:26Z,- AudreyRose-Wooden assigned to issue: [5210](https://github.com/hackforla/website/issues/5210) at 2023-08-14 07:41 PM PDT -AudreyRose-Wooden,2023-08-16T16:32:33Z,- AudreyRose-Wooden assigned to issue: [5200](https://github.com/hackforla/website/issues/5200#issuecomment-1677914149) at 2023-08-16 09:32 AM PDT -AudreyRose-Wooden,2023-08-16T16:35:24Z,- AudreyRose-Wooden commented on issue: [5200](https://github.com/hackforla/website/issues/5200#issuecomment-1680929624) at 2023-08-16 09:35 AM PDT -AudreyRose-Wooden,2023-08-16T16:37:25Z,- AudreyRose-Wooden commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1680932383) at 2023-08-16 09:37 AM PDT -AudreyRose-Wooden,2023-08-16T19:26:47Z,- AudreyRose-Wooden opened pull request: [5239](https://github.com/hackforla/website/pull/5239) at 2023-08-16 12:26 PM PDT -AudreyRose-Wooden,2023-08-17T16:57:26Z,- AudreyRose-Wooden pull request merged: [5239](https://github.com/hackforla/website/pull/5239#event-10121766272) at 2023-08-17 09:57 AM PDT -AudreyRose-Wooden,2023-08-18T00:04:12Z,- AudreyRose-Wooden assigned to issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1682793157) at 2023-08-17 05:04 PM PDT -AudreyRose-Wooden,2023-08-18T00:06:02Z,- AudreyRose-Wooden commented on issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1683136606) at 2023-08-17 05:06 PM PDT -AudreyRose-Wooden,2023-08-18T00:17:26Z,- AudreyRose-Wooden commented on issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1683145813) at 2023-08-17 05:17 PM PDT -AudreyRose-Wooden,2023-08-18T00:25:48Z,- AudreyRose-Wooden unassigned from issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1683145813) at 2023-08-17 05:25 PM PDT -AudreyRose-Wooden,2023-08-18T00:27:48Z,- AudreyRose-Wooden assigned to issue: [5174](https://github.com/hackforla/website/issues/5174#issuecomment-1672310505) at 2023-08-17 05:27 PM PDT -AudreyRose-Wooden,2023-08-18T00:32:10Z,- AudreyRose-Wooden commented on issue: [5174](https://github.com/hackforla/website/issues/5174#issuecomment-1683155313) at 2023-08-17 05:32 PM PDT -AudreyRose-Wooden,2023-08-18T00:41:15Z,- AudreyRose-Wooden opened pull request: [5249](https://github.com/hackforla/website/pull/5249) at 2023-08-17 05:41 PM PDT -AudreyRose-Wooden,2023-08-20T00:09:59Z,- AudreyRose-Wooden commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1685136375) at 2023-08-19 05:09 PM PDT -AudreyRose-Wooden,2023-08-20T03:34:18Z,- AudreyRose-Wooden pull request merged: [5249](https://github.com/hackforla/website/pull/5249#event-10137383002) at 2023-08-19 08:34 PM PDT -augustocerdeira,4720,SKILLS ISSUE -augustocerdeira,2023-05-24T03:20:06Z,- augustocerdeira opened issue: [4720](https://github.com/hackforla/website/issues/4720) at 2023-05-23 08:20 PM PDT -augustocerdeira,2023-05-24T03:21:56Z,- augustocerdeira assigned to issue: [4720](https://github.com/hackforla/website/issues/4720) at 2023-05-23 08:21 PM PDT -augustocerdeira,2023-06-06T19:52:40Z,- augustocerdeira commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1579356993) at 2023-06-06 12:52 PM PDT -augustocerdeira,2023-06-20T23:26:14Z,- augustocerdeira commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1599721362) at 2023-06-20 04:26 PM PDT -Autisticturtle3,5606,SKILLS ISSUE -Autisticturtle3,2023-09-27T02:29:12Z,- Autisticturtle3 opened issue: [5606](https://github.com/hackforla/website/issues/5606) at 2023-09-26 07:29 PM PDT -Autisticturtle3,2023-09-27T02:29:12Z,- Autisticturtle3 assigned to issue: [5606](https://github.com/hackforla/website/issues/5606) at 2023-09-26 07:29 PM PDT -Autisticturtle3,2023-09-27T02:55:36Z,- Autisticturtle3 assigned to issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1698559669) at 2023-09-26 07:55 PM PDT -Autisticturtle3,2023-09-27T03:25:21Z,- Autisticturtle3 opened pull request: [5610](https://github.com/hackforla/website/pull/5610) at 2023-09-26 08:25 PM PDT -Autisticturtle3,2023-09-27T03:34:30Z,- Autisticturtle3 assigned to issue: [5373](https://github.com/hackforla/website/issues/5373#issuecomment-1698564613) at 2023-09-26 08:34 PM PDT -Autisticturtle3,2023-09-27T03:36:36Z,- Autisticturtle3 commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1736621371) at 2023-09-26 08:36 PM PDT -Autisticturtle3,2023-09-27T03:51:52Z,- Autisticturtle3 commented on issue: [5373](https://github.com/hackforla/website/issues/5373#issuecomment-1736630159) at 2023-09-26 08:51 PM PDT -Autisticturtle3,2023-09-27T03:57:10Z,- Autisticturtle3 opened pull request: [5612](https://github.com/hackforla/website/pull/5612) at 2023-09-26 08:57 PM PDT -Autisticturtle3,2023-09-28T03:00:44Z,- Autisticturtle3 unassigned from issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1738367332) at 2023-09-27 08:00 PM PDT -Autisticturtle3,2023-09-28T03:01:33Z,- Autisticturtle3 pull request closed w/o merging: [5610](https://github.com/hackforla/website/pull/5610#event-10493939160) at 2023-09-27 08:01 PM PDT -Autisticturtle3,2023-10-01T16:52:06Z,- Autisticturtle3 pull request merged: [5612](https://github.com/hackforla/website/pull/5612#event-10520034180) at 2023-10-01 09:52 AM PDT -Aveline-art,2021-04-21T03:02:34Z,- Aveline-art closed issue by PR 1603: [1031](https://github.com/hackforla/website/issues/1031#event-4622473850) at 2021-04-20 08:02 PM PDT -Aveline-art,2021-04-21T03:02:44Z,- Aveline-art reopened issue: [1031](https://github.com/hackforla/website/issues/1031#event-4622473850) at 2021-04-20 08:02 PM PDT -Aveline-art,2021-04-21T03:24:57Z,- Aveline-art assigned to issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823747808) at 2021-04-20 08:24 PM PDT -Aveline-art,2021-04-22T16:52:12Z,- Aveline-art commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-825013378) at 2021-04-22 09:52 AM PDT -Aveline-art,2021-04-23T05:20:31Z,- Aveline-art assigned to issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796304739) at 2021-04-22 10:20 PM PDT -Aveline-art,2021-04-23T19:26:42Z,- Aveline-art opened issue: [1444](https://github.com/hackforla/website/issues/1444) at 2021-04-23 12:26 PM PDT -Aveline-art,2021-04-23T20:37:05Z,- Aveline-art opened pull request: [1446](https://github.com/hackforla/website/pull/1446) at 2021-04-23 01:37 PM PDT -Aveline-art,2021-04-23T21:35:36Z,- Aveline-art assigned to issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-04-23 02:35 PM PDT -Aveline-art,2021-04-23T22:44:21Z,- Aveline-art pull request merged: [1446](https://github.com/hackforla/website/pull/1446#event-4639107367) at 2021-04-23 03:44 PM PDT -Aveline-art,2021-04-23T22:45:45Z,- Aveline-art assigned to issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-23 03:45 PM PDT -Aveline-art,2021-04-24T02:57:25Z,- Aveline-art opened pull request: [1449](https://github.com/hackforla/website/pull/1449) at 2021-04-23 07:57 PM PDT -Aveline-art,2021-04-24T02:59:56Z,- Aveline-art commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-826023903) at 2021-04-23 07:59 PM PDT -Aveline-art,2021-04-24T04:24:26Z,- Aveline-art pull request merged: [1449](https://github.com/hackforla/website/pull/1449#event-4639519351) at 2021-04-23 09:24 PM PDT -Aveline-art,2021-04-24T20:26:50Z,- Aveline-art opened pull request: [1455](https://github.com/hackforla/website/pull/1455) at 2021-04-24 01:26 PM PDT -Aveline-art,2021-04-26T17:59:56Z,- Aveline-art unassigned from issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823750826) at 2021-04-26 10:59 AM PDT -Aveline-art,2021-04-26T20:26:57Z,- Aveline-art commented on pull request: [1455](https://github.com/hackforla/website/pull/1455#issuecomment-827125003) at 2021-04-26 01:26 PM PDT -Aveline-art,2021-04-30T02:40:59Z,- Aveline-art commented on pull request: [1455](https://github.com/hackforla/website/pull/1455#issuecomment-829756681) at 2021-04-29 07:40 PM PDT -Aveline-art,2021-04-30T16:38:24Z,- Aveline-art pull request merged: [1455](https://github.com/hackforla/website/pull/1455#event-4670557715) at 2021-04-30 09:38 AM PDT -Aveline-art,2021-04-30T17:50:46Z,- Aveline-art assigned to issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-815975209) at 2021-04-30 10:50 AM PDT -Aveline-art,2021-05-01T23:38:28Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-830709665) at 2021-05-01 04:38 PM PDT -Aveline-art,2021-05-02T07:45:23Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-830766422) at 2021-05-02 12:45 AM PDT -Aveline-art,2021-05-07T02:37:43Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-834016619) at 2021-05-06 07:37 PM PDT -Aveline-art,2021-05-08T21:23:54Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-835520663) at 2021-05-08 02:23 PM PDT -Aveline-art,2021-05-08T21:26:59Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-835521942) at 2021-05-08 02:26 PM PDT -Aveline-art,2021-05-13T03:56:59Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-840275598) at 2021-05-12 08:56 PM PDT -Aveline-art,2021-05-13T20:47:29Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-840824565) at 2021-05-13 01:47 PM PDT -Aveline-art,2021-05-16T17:10:09Z,- Aveline-art opened issue: [1556](https://github.com/hackforla/website/issues/1556) at 2021-05-16 10:10 AM PDT -Aveline-art,2021-05-16T18:02:12Z,- Aveline-art assigned to issue: [1554](https://github.com/hackforla/website/issues/1554) at 2021-05-16 11:02 AM PDT -Aveline-art,2021-05-17T01:12:04Z,- Aveline-art opened pull request: [1557](https://github.com/hackforla/website/pull/1557) at 2021-05-16 06:12 PM PDT -Aveline-art,2021-05-21T18:14:25Z,- Aveline-art commented on pull request: [1557](https://github.com/hackforla/website/pull/1557#issuecomment-846146172) at 2021-05-21 11:14 AM PDT -Aveline-art,2021-05-21T18:48:16Z,- Aveline-art submitted pull request review: [1591](https://github.com/hackforla/website/pull/1591#pullrequestreview-665771175) at 2021-05-21 11:48 AM PDT -Aveline-art,2021-05-21T22:22:56Z,- Aveline-art pull request merged: [1557](https://github.com/hackforla/website/pull/1557#event-4781553624) at 2021-05-21 03:22 PM PDT -Aveline-art,2021-05-21T23:05:08Z,- Aveline-art assigned to issue: [1595](https://github.com/hackforla/website/issues/1595) at 2021-05-21 04:05 PM PDT -Aveline-art,2021-05-22T20:00:49Z,- Aveline-art submitted pull request review: [1604](https://github.com/hackforla/website/pull/1604#pullrequestreview-666207793) at 2021-05-22 01:00 PM PDT -Aveline-art,2021-05-23T05:24:50Z,- Aveline-art opened pull request: [1609](https://github.com/hackforla/website/pull/1609) at 2021-05-22 10:24 PM PDT -Aveline-art,2021-05-23T18:34:48Z,- Aveline-art commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846605937) at 2021-05-23 11:34 AM PDT -Aveline-art,2021-05-23T19:26:07Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-846612313) at 2021-05-23 12:26 PM PDT -Aveline-art,2021-05-23T19:39:23Z,- Aveline-art assigned to issue: [1623](https://github.com/hackforla/website/issues/1623) at 2021-05-23 12:39 PM PDT -Aveline-art,2021-05-27T05:12:49Z,- Aveline-art submitted pull request review: [1625](https://github.com/hackforla/website/pull/1625#pullrequestreview-669747472) at 2021-05-26 10:12 PM PDT -Aveline-art,2021-05-27T05:15:22Z,- Aveline-art submitted pull request review: [1625](https://github.com/hackforla/website/pull/1625#pullrequestreview-669748504) at 2021-05-26 10:15 PM PDT -Aveline-art,2021-05-30T06:40:08Z,- Aveline-art commented on pull request: [1609](https://github.com/hackforla/website/pull/1609#issuecomment-850950929) at 2021-05-29 11:40 PM PDT -Aveline-art,2021-05-30T17:55:35Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851037216) at 2021-05-30 10:55 AM PDT -Aveline-art,2021-05-30T18:16:02Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:16 AM PDT -Aveline-art,2021-06-04T02:21:11Z,- Aveline-art submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-675867493) at 2021-06-03 07:21 PM PDT -Aveline-art,2021-06-04T03:24:46Z,- Aveline-art assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -Aveline-art,2021-06-04T04:58:36Z,- Aveline-art opened issue: [1686](https://github.com/hackforla/website/issues/1686) at 2021-06-03 09:58 PM PDT -Aveline-art,2021-06-04T05:00:56Z,- Aveline-art commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:00 PM PDT -Aveline-art,2021-06-04T05:01:26Z,- Aveline-art assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -Aveline-art,2021-06-04T05:15:09Z,- Aveline-art opened issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -Aveline-art,2021-06-04T05:15:39Z,- Aveline-art assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -Aveline-art,2021-06-05T02:33:50Z,- Aveline-art commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-855170052) at 2021-06-04 07:33 PM PDT -Aveline-art,2021-06-05T05:35:05Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-855187438) at 2021-06-04 10:35 PM PDT -Aveline-art,2021-06-05T22:38:14Z,- Aveline-art commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-855305176) at 2021-06-05 03:38 PM PDT -Aveline-art,2021-06-06T17:52:08Z,- Aveline-art commented on issue: [1687](https://github.com/hackforla/website/issues/1687#issuecomment-855436416) at 2021-06-06 10:52 AM PDT -Aveline-art,2021-06-06T19:49:20Z,- Aveline-art unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -Aveline-art,2021-06-06T21:05:49Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-855462888) at 2021-06-06 02:05 PM PDT -Aveline-art,2021-06-06T23:21:39Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-855479914) at 2021-06-06 04:21 PM PDT -Aveline-art,2021-06-06T23:26:48Z,- Aveline-art commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-06 04:26 PM PDT -Aveline-art,2021-06-07T22:15:47Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-856298942) at 2021-06-07 03:15 PM PDT -Aveline-art,2021-06-09T02:20:53Z,- Aveline-art submitted pull request review: [1679](https://github.com/hackforla/website/pull/1679#pullrequestreview-679151787) at 2021-06-08 07:20 PM PDT -Aveline-art,2021-06-09T04:12:59Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857357798) at 2021-06-08 09:12 PM PDT -Aveline-art,2021-06-09T04:34:27Z,- Aveline-art submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-679199217) at 2021-06-08 09:34 PM PDT -Aveline-art,2021-06-11T01:48:21Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859200720) at 2021-06-10 06:48 PM PDT -Aveline-art,2021-06-11T02:08:46Z,- Aveline-art commented on pull request: [1706](https://github.com/hackforla/website/pull/1706#issuecomment-859209023) at 2021-06-10 07:08 PM PDT -Aveline-art,2021-06-11T04:45:41Z,- Aveline-art opened issue: [1707](https://github.com/hackforla/website/issues/1707) at 2021-06-10 09:45 PM PDT -Aveline-art,2021-06-11T04:45:48Z,- Aveline-art assigned to issue: [1707](https://github.com/hackforla/website/issues/1707) at 2021-06-10 09:45 PM PDT -Aveline-art,2021-06-11T05:11:42Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-859270412) at 2021-06-10 10:11 PM PDT -Aveline-art,2021-06-11T13:46:09Z,- Aveline-art pull request merged: [1609](https://github.com/hackforla/website/pull/1609#event-4878105953) at 2021-06-11 06:46 AM PDT -Aveline-art,2021-06-12T00:15:27Z,- Aveline-art submitted pull request review: [1670](https://github.com/hackforla/website/pull/1670#pullrequestreview-682276729) at 2021-06-11 05:15 PM PDT -Aveline-art,2021-06-12T04:39:15Z,- Aveline-art opened issue: [1717](https://github.com/hackforla/website/issues/1717) at 2021-06-11 09:39 PM PDT -Aveline-art,2021-06-12T05:15:22Z,- Aveline-art opened issue: [1718](https://github.com/hackforla/website/issues/1718) at 2021-06-11 10:15 PM PDT -Aveline-art,2021-06-12T05:17:34Z,- Aveline-art commented on issue: [1718](https://github.com/hackforla/website/issues/1718#issuecomment-860001323) at 2021-06-11 10:17 PM PDT -Aveline-art,2021-06-12T06:50:38Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-860010206) at 2021-06-11 11:50 PM PDT -Aveline-art,2021-06-12T13:17:30Z,- Aveline-art assigned to issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Aveline-art,2021-06-12T16:32:03Z,- Aveline-art unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -Aveline-art,2021-06-13T02:59:19Z,- Aveline-art commented on issue: [1707](https://github.com/hackforla/website/issues/1707#issuecomment-860142992) at 2021-06-12 07:59 PM PDT -Aveline-art,2021-06-15T13:31:56Z,- Aveline-art opened pull request: [1740](https://github.com/hackforla/website/pull/1740) at 2021-06-15 06:31 AM PDT -Aveline-art,2021-06-16T03:56:11Z,- Aveline-art opened issue: [1750](https://github.com/hackforla/website/issues/1750) at 2021-06-15 08:56 PM PDT -Aveline-art,2021-06-16T14:54:46Z,- Aveline-art pull request merged: [1740](https://github.com/hackforla/website/pull/1740#event-4898522174) at 2021-06-16 07:54 AM PDT -Aveline-art,2021-06-18T03:37:22Z,- Aveline-art commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-863730400) at 2021-06-17 08:37 PM PDT -Aveline-art,2021-06-18T04:53:04Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687028249) at 2021-06-17 09:53 PM PDT -Aveline-art,2021-06-18T04:55:42Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687029169) at 2021-06-17 09:55 PM PDT -Aveline-art,2021-06-18T04:58:44Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687030171) at 2021-06-17 09:58 PM PDT -Aveline-art,2021-06-18T05:25:26Z,- Aveline-art submitted pull request review: [1774](https://github.com/hackforla/website/pull/1774#pullrequestreview-687040669) at 2021-06-17 10:25 PM PDT -Aveline-art,2021-06-18T22:43:17Z,- Aveline-art commented on pull request: [1758](https://github.com/hackforla/website/pull/1758#issuecomment-864306339) at 2021-06-18 03:43 PM PDT -Aveline-art,2021-06-19T15:53:21Z,- Aveline-art commented on pull request: [1758](https://github.com/hackforla/website/pull/1758#issuecomment-864423659) at 2021-06-19 08:53 AM PDT -Aveline-art,2021-06-19T16:11:17Z,- Aveline-art opened issue: [1787](https://github.com/hackforla/website/issues/1787) at 2021-06-19 09:11 AM PDT -Aveline-art,2021-06-19T16:25:55Z,- Aveline-art opened issue: [1788](https://github.com/hackforla/website/issues/1788) at 2021-06-19 09:25 AM PDT -Aveline-art,2021-06-19T16:28:05Z,- Aveline-art assigned to issue: [1787](https://github.com/hackforla/website/issues/1787) at 2021-06-19 09:28 AM PDT -Aveline-art,2021-06-19T16:51:50Z,- Aveline-art commented on issue: [1788](https://github.com/hackforla/website/issues/1788#issuecomment-864435388) at 2021-06-19 09:51 AM PDT -Aveline-art,2021-06-19T16:51:50Z,- Aveline-art closed issue as completed: [1788](https://github.com/hackforla/website/issues/1788#event-4912645105) at 2021-06-19 09:51 AM PDT -Aveline-art,2021-06-19T17:05:23Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864436976) at 2021-06-19 10:05 AM PDT -Aveline-art,2021-06-19T17:27:13Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864439539) at 2021-06-19 10:27 AM PDT -Aveline-art,2021-06-19T17:27:14Z,- Aveline-art reopened pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864439539) at 2021-06-19 10:27 AM PDT -Aveline-art,2021-06-19T20:01:57Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864456925) at 2021-06-19 01:01 PM PDT -Aveline-art,2021-06-19T20:11:15Z,- Aveline-art closed issue by PR 1785: [1718](https://github.com/hackforla/website/issues/1718#event-4912781405) at 2021-06-19 01:11 PM PDT -Aveline-art,2021-06-19T23:29:09Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-864475647) at 2021-06-19 04:29 PM PDT -Aveline-art,2021-06-20T17:08:22Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687925328) at 2021-06-20 10:08 AM PDT -Aveline-art,2021-06-23T04:42:21Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-866516858) at 2021-06-22 09:42 PM PDT -Aveline-art,2021-06-23T05:28:28Z,- Aveline-art opened issue: [1818](https://github.com/hackforla/website/issues/1818) at 2021-06-22 10:28 PM PDT -Aveline-art,2021-06-23T23:38:48Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867226324) at 2021-06-23 04:38 PM PDT -Aveline-art,2021-06-24T00:18:29Z,- Aveline-art commented on issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-867239837) at 2021-06-23 05:18 PM PDT -Aveline-art,2021-06-24T06:25:59Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867371923) at 2021-06-23 11:25 PM PDT -Aveline-art,2021-06-24T06:54:08Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867388531) at 2021-06-23 11:54 PM PDT -Aveline-art,2021-06-24T15:45:05Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867745377) at 2021-06-24 08:45 AM PDT -Aveline-art,2021-06-24T16:11:30Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867768193) at 2021-06-24 09:11 AM PDT -Aveline-art,2021-06-25T04:17:55Z,- Aveline-art submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-692436108) at 2021-06-24 09:17 PM PDT -Aveline-art,2021-06-26T04:23:57Z,- Aveline-art commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-868945503) at 2021-06-25 09:23 PM PDT -Aveline-art,2021-06-26T19:06:11Z,- Aveline-art opened pull request: [1834](https://github.com/hackforla/website/pull/1834) at 2021-06-26 12:06 PM PDT -Aveline-art,2021-06-27T18:16:59Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-869205025) at 2021-06-27 11:16 AM PDT -Aveline-art,2021-06-27T20:43:42Z,- Aveline-art opened issue: [1847](https://github.com/hackforla/website/issues/1847) at 2021-06-27 01:43 PM PDT -Aveline-art,2021-06-27T20:44:11Z,- Aveline-art commented on issue: [1847](https://github.com/hackforla/website/issues/1847#issuecomment-869221284) at 2021-06-27 01:44 PM PDT -Aveline-art,2021-06-27T20:57:06Z,- Aveline-art opened issue: [1850](https://github.com/hackforla/website/issues/1850) at 2021-06-27 01:57 PM PDT -Aveline-art,2021-06-27T21:02:10Z,- Aveline-art commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-869223194) at 2021-06-27 02:02 PM PDT -Aveline-art,2021-06-29T04:25:39Z,- Aveline-art commented on pull request: [1832](https://github.com/hackforla/website/pull/1832#issuecomment-870221300) at 2021-06-28 09:25 PM PDT -Aveline-art,2021-06-29T04:34:54Z,- Aveline-art submitted pull request review: [1832](https://github.com/hackforla/website/pull/1832#pullrequestreview-694581597) at 2021-06-28 09:34 PM PDT -Aveline-art,2021-06-29T04:53:50Z,- Aveline-art submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-694588830) at 2021-06-28 09:53 PM PDT -Aveline-art,2021-06-29T23:22:24Z,- Aveline-art submitted pull request review: [1858](https://github.com/hackforla/website/pull/1858#pullrequestreview-695577437) at 2021-06-29 04:22 PM PDT -Aveline-art,2021-06-30T00:35:33Z,- Aveline-art submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-695604617) at 2021-06-29 05:35 PM PDT -Aveline-art,2021-06-30T01:12:11Z,- Aveline-art submitted pull request review: [1852](https://github.com/hackforla/website/pull/1852#pullrequestreview-695617091) at 2021-06-29 06:12 PM PDT -Aveline-art,2021-06-30T23:35:59Z,- Aveline-art commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-871794002) at 2021-06-30 04:35 PM PDT -Aveline-art,2021-06-30T23:36:55Z,- Aveline-art commented on pull request: [1859](https://github.com/hackforla/website/pull/1859#issuecomment-871794320) at 2021-06-30 04:36 PM PDT -Aveline-art,2021-07-01T00:25:08Z,- Aveline-art submitted pull request review: [1858](https://github.com/hackforla/website/pull/1858#pullrequestreview-696715399) at 2021-06-30 05:25 PM PDT -Aveline-art,2021-07-01T02:05:49Z,- Aveline-art closed issue by PR 1858: [1748](https://github.com/hackforla/website/issues/1748#event-4962974627) at 2021-06-30 07:05 PM PDT -Aveline-art,2021-07-01T04:55:41Z,- Aveline-art commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-871917566) at 2021-06-30 09:55 PM PDT -Aveline-art,2021-07-01T04:59:46Z,- Aveline-art closed issue by PR 1860: [1587](https://github.com/hackforla/website/issues/1587#event-4963452334) at 2021-06-30 09:59 PM PDT -Aveline-art,2021-07-01T05:08:08Z,- Aveline-art closed issue by PR 1862: [1573](https://github.com/hackforla/website/issues/1573#event-4963491368) at 2021-06-30 10:08 PM PDT -Aveline-art,2021-07-02T03:59:29Z,- Aveline-art commented on issue: [1796](https://github.com/hackforla/website/issues/1796#issuecomment-872694247) at 2021-07-01 08:59 PM PDT -Aveline-art,2021-07-02T04:25:37Z,- Aveline-art commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-872703150) at 2021-07-01 09:25 PM PDT -Aveline-art,2021-07-02T17:59:11Z,- Aveline-art closed issue by PR 1852: [1791](https://github.com/hackforla/website/issues/1791#event-4972711697) at 2021-07-02 10:59 AM PDT -Aveline-art,2021-07-02T18:13:10Z,- Aveline-art commented on pull request: [1870](https://github.com/hackforla/website/pull/1870#issuecomment-873174598) at 2021-07-02 11:13 AM PDT -Aveline-art,2021-07-02T18:14:14Z,- Aveline-art commented on pull request: [1852](https://github.com/hackforla/website/pull/1852#issuecomment-873175184) at 2021-07-02 11:14 AM PDT -Aveline-art,2021-07-03T14:44:49Z,- Aveline-art opened issue: [1884](https://github.com/hackforla/website/issues/1884) at 2021-07-03 07:44 AM PDT -Aveline-art,2021-07-03T15:10:10Z,- Aveline-art commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873421437) at 2021-07-03 08:10 AM PDT -Aveline-art,2021-07-04T16:54:14Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-873625005) at 2021-07-04 09:54 AM PDT -Aveline-art,2021-07-04T18:41:01Z,- Aveline-art pull request merged: [1834](https://github.com/hackforla/website/pull/1834#event-4975396496) at 2021-07-04 11:41 AM PDT -Aveline-art,2021-07-04T22:19:25Z,- Aveline-art commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-873673330) at 2021-07-04 03:19 PM PDT -Aveline-art,2021-07-04T22:54:13Z,- Aveline-art opened issue: [1891](https://github.com/hackforla/website/issues/1891) at 2021-07-04 03:54 PM PDT -Aveline-art,2021-07-04T23:25:15Z,- Aveline-art commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-873683350) at 2021-07-04 04:25 PM PDT -Aveline-art,2021-07-04T23:30:43Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-873684556) at 2021-07-04 04:30 PM PDT -Aveline-art,2021-07-04T23:31:17Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-873684690) at 2021-07-04 04:31 PM PDT -Aveline-art,2021-07-05T00:01:11Z,- Aveline-art opened issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-07-04 05:01 PM PDT -Aveline-art,2021-07-05T05:42:25Z,- Aveline-art closed issue as completed: [1724](https://github.com/hackforla/website/issues/1724#event-4976361560) at 2021-07-04 10:42 PM PDT -Aveline-art,2021-07-05T05:53:54Z,- Aveline-art commented on issue: [1884](https://github.com/hackforla/website/issues/1884#issuecomment-873822700) at 2021-07-04 10:53 PM PDT -Aveline-art,2021-07-05T05:53:54Z,- Aveline-art closed issue as completed: [1884](https://github.com/hackforla/website/issues/1884#event-4976391439) at 2021-07-04 10:53 PM PDT -Aveline-art,2021-07-05T05:55:31Z,- Aveline-art commented on issue: [1847](https://github.com/hackforla/website/issues/1847#issuecomment-873823309) at 2021-07-04 10:55 PM PDT -Aveline-art,2021-07-05T05:55:31Z,- Aveline-art closed issue as completed: [1847](https://github.com/hackforla/website/issues/1847#event-4976395806) at 2021-07-04 10:55 PM PDT -Aveline-art,2021-07-05T23:02:47Z,- Aveline-art assigned to issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-870261064) at 2021-07-05 04:02 PM PDT -Aveline-art,2021-07-06T20:07:17Z,- Aveline-art commented on pull request: [1882](https://github.com/hackforla/website/pull/1882#issuecomment-875047077) at 2021-07-06 01:07 PM PDT -Aveline-art,2021-07-07T00:25:02Z,- Aveline-art opened pull request: [1895](https://github.com/hackforla/website/pull/1895) at 2021-07-06 05:25 PM PDT -Aveline-art,2021-07-07T17:51:42Z,- Aveline-art pull request merged: [1895](https://github.com/hackforla/website/pull/1895#event-4990620861) at 2021-07-07 10:51 AM PDT -Aveline-art,2021-07-08T02:34:58Z,- Aveline-art submitted pull request review: [1880](https://github.com/hackforla/website/pull/1880#pullrequestreview-701590373) at 2021-07-07 07:34 PM PDT -Aveline-art,2021-07-08T19:00:50Z,- Aveline-art commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-876672507) at 2021-07-08 12:00 PM PDT -Aveline-art,2021-07-08T19:20:09Z,- Aveline-art opened issue: [1904](https://github.com/hackforla/website/issues/1904) at 2021-07-08 12:20 PM PDT -Aveline-art,2021-07-08T19:32:45Z,- Aveline-art commented on pull request: [1633](https://github.com/hackforla/website/pull/1633#issuecomment-876691302) at 2021-07-08 12:32 PM PDT -Aveline-art,2021-07-08T19:34:47Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-876692433) at 2021-07-08 12:34 PM PDT -Aveline-art,2021-07-08T23:19:42Z,- Aveline-art commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-876804499) at 2021-07-08 04:19 PM PDT -Aveline-art,2021-07-08T23:51:36Z,- Aveline-art opened pull request: [1905](https://github.com/hackforla/website/pull/1905) at 2021-07-08 04:51 PM PDT -Aveline-art,2021-07-08T23:53:08Z,- Aveline-art commented on pull request: [1905](https://github.com/hackforla/website/pull/1905#issuecomment-876814699) at 2021-07-08 04:53 PM PDT -Aveline-art,2021-07-09T02:15:06Z,- Aveline-art closed issue by PR 1903: [1524](https://github.com/hackforla/website/issues/1524#event-4997971018) at 2021-07-08 07:15 PM PDT -Aveline-art,2021-07-09T18:17:15Z,- Aveline-art opened pull request: [1909](https://github.com/hackforla/website/pull/1909) at 2021-07-09 11:17 AM PDT -Aveline-art,2021-07-09T18:43:41Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-877385041) at 2021-07-09 11:43 AM PDT -Aveline-art,2021-07-09T23:22:04Z,- Aveline-art submitted pull request review: [1880](https://github.com/hackforla/website/pull/1880#pullrequestreview-703440764) at 2021-07-09 04:22 PM PDT -Aveline-art,2021-07-09T23:22:16Z,- Aveline-art closed issue by PR 1880: [1871](https://github.com/hackforla/website/issues/1871#event-5002557982) at 2021-07-09 04:22 PM PDT -Aveline-art,2021-07-09T23:23:40Z,- Aveline-art closed issue by PR 1870: [1835](https://github.com/hackforla/website/issues/1835#event-5002560170) at 2021-07-09 04:23 PM PDT -Aveline-art,2021-07-09T23:24:22Z,- Aveline-art closed issue by PR 1882: [1873](https://github.com/hackforla/website/issues/1873#event-5002561282) at 2021-07-09 04:24 PM PDT -Aveline-art,2021-07-09T23:25:30Z,- Aveline-art closed issue by PR 1894: [1825](https://github.com/hackforla/website/issues/1825#event-5002563014) at 2021-07-09 04:25 PM PDT -Aveline-art,2021-07-09T23:27:43Z,- Aveline-art closed issue by PR 1902: [1856](https://github.com/hackforla/website/issues/1856#event-5002566242) at 2021-07-09 04:27 PM PDT -Aveline-art,2021-07-09T23:28:19Z,- Aveline-art closed issue by PR 1906: [1572](https://github.com/hackforla/website/issues/1572#event-5002567306) at 2021-07-09 04:28 PM PDT -Aveline-art,2021-07-10T15:29:57Z,- Aveline-art commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877656061) at 2021-07-10 08:29 AM PDT -Aveline-art,2021-07-10T17:47:25Z,- Aveline-art commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-877676139) at 2021-07-10 10:47 AM PDT -Aveline-art,2021-07-10T18:33:44Z,- Aveline-art commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-877683404) at 2021-07-10 11:33 AM PDT -Aveline-art,2021-07-11T19:10:52Z,- Aveline-art commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877847361) at 2021-07-11 12:10 PM PDT -Aveline-art,2021-07-11T23:47:16Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-877880590) at 2021-07-11 04:47 PM PDT -Aveline-art,2021-07-12T01:24:50Z,- Aveline-art closed issue by PR 1915: [1851](https://github.com/hackforla/website/issues/1851#event-5004782846) at 2021-07-11 06:24 PM PDT -Aveline-art,2021-07-12T01:25:33Z,- Aveline-art closed issue by PR 1913: [1890](https://github.com/hackforla/website/issues/1890#event-5004784287) at 2021-07-11 06:25 PM PDT -Aveline-art,2021-07-12T05:02:23Z,- Aveline-art pull request merged: [1905](https://github.com/hackforla/website/pull/1905#event-5005238803) at 2021-07-11 10:02 PM PDT -Aveline-art,2021-07-12T05:04:21Z,- Aveline-art opened pull request: [1925](https://github.com/hackforla/website/pull/1925) at 2021-07-11 10:04 PM PDT -Aveline-art,2021-07-12T05:04:28Z,- Aveline-art pull request merged: [1925](https://github.com/hackforla/website/pull/1925#event-5005244801) at 2021-07-11 10:04 PM PDT -Aveline-art,2021-07-12T05:07:03Z,- Aveline-art opened pull request: [1926](https://github.com/hackforla/website/pull/1926) at 2021-07-11 10:07 PM PDT -Aveline-art,2021-07-12T14:53:14Z,- Aveline-art commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-878345601) at 2021-07-12 07:53 AM PDT -Aveline-art,2021-07-12T15:07:51Z,- Aveline-art commented on pull request: [1922](https://github.com/hackforla/website/pull/1922#issuecomment-878357575) at 2021-07-12 08:07 AM PDT -Aveline-art,2021-07-12T15:08:00Z,- Aveline-art closed issue by PR 1922: [1580](https://github.com/hackforla/website/issues/1580#event-5008135944) at 2021-07-12 08:08 AM PDT -Aveline-art,2021-07-12T15:12:43Z,- Aveline-art commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-878361832) at 2021-07-12 08:12 AM PDT -Aveline-art,2021-07-12T15:12:43Z,- Aveline-art closed issue as completed: [1352](https://github.com/hackforla/website/issues/1352#event-5008165872) at 2021-07-12 08:12 AM PDT -Aveline-art,2021-07-12T15:27:51Z,- Aveline-art opened issue: [1927](https://github.com/hackforla/website/issues/1927) at 2021-07-12 08:27 AM PDT -Aveline-art,2021-07-12T22:47:22Z,- Aveline-art pull request merged: [1926](https://github.com/hackforla/website/pull/1926#event-5010204432) at 2021-07-12 03:47 PM PDT -Aveline-art,2021-07-12T22:48:17Z,- Aveline-art opened issue: [1930](https://github.com/hackforla/website/issues/1930) at 2021-07-12 03:48 PM PDT -Aveline-art,2021-07-12T22:50:31Z,- Aveline-art opened pull request: [1931](https://github.com/hackforla/website/pull/1931) at 2021-07-12 03:50 PM PDT -Aveline-art,2021-07-12T22:56:33Z,- Aveline-art opened pull request: [1932](https://github.com/hackforla/website/pull/1932) at 2021-07-12 03:56 PM PDT -Aveline-art,2021-07-12T22:57:11Z,- Aveline-art pull request closed w/o merging: [1932](https://github.com/hackforla/website/pull/1932#event-5010231335) at 2021-07-12 03:57 PM PDT -Aveline-art,2021-07-12T22:57:17Z,- Aveline-art closed issue as completed: [1930](https://github.com/hackforla/website/issues/1930#event-5010231581) at 2021-07-12 03:57 PM PDT -Aveline-art,2021-07-13T16:03:55Z,- Aveline-art commented on pull request: [1909](https://github.com/hackforla/website/pull/1909#issuecomment-879213044) at 2021-07-13 09:03 AM PDT -Aveline-art,2021-07-13T16:07:52Z,- Aveline-art commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879216148) at 2021-07-13 09:07 AM PDT -Aveline-art,2021-07-13T20:12:23Z,- Aveline-art commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-879370093) at 2021-07-13 01:12 PM PDT -Aveline-art,2021-07-13T21:11:05Z,- Aveline-art commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-879405910) at 2021-07-13 02:11 PM PDT -Aveline-art,2021-07-14T01:59:59Z,- Aveline-art commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879525845) at 2021-07-13 06:59 PM PDT -Aveline-art,2021-07-14T04:32:53Z,- Aveline-art commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-879578683) at 2021-07-13 09:32 PM PDT -Aveline-art,2021-07-14T05:15:38Z,- Aveline-art pull request merged: [1909](https://github.com/hackforla/website/pull/1909#event-5017512682) at 2021-07-13 10:15 PM PDT -Aveline-art,2021-07-14T16:31:34Z,- Aveline-art commented on pull request: [1938](https://github.com/hackforla/website/pull/1938#issuecomment-880038582) at 2021-07-14 09:31 AM PDT -Aveline-art,2021-07-14T17:43:39Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-880086420) at 2021-07-14 10:43 AM PDT -Aveline-art,2021-07-14T18:00:58Z,- Aveline-art opened issue: [1939](https://github.com/hackforla/website/issues/1939) at 2021-07-14 11:00 AM PDT -Aveline-art,2021-07-14T18:21:17Z,- Aveline-art opened issue: [1940](https://github.com/hackforla/website/issues/1940) at 2021-07-14 11:21 AM PDT -Aveline-art,2021-07-14T18:26:28Z,- Aveline-art commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-880114724) at 2021-07-14 11:26 AM PDT -Aveline-art,2021-07-14T18:34:52Z,- Aveline-art opened issue: [1941](https://github.com/hackforla/website/issues/1941) at 2021-07-14 11:34 AM PDT -Aveline-art,2021-07-14T18:40:25Z,- Aveline-art commented on issue: [1941](https://github.com/hackforla/website/issues/1941#issuecomment-880123694) at 2021-07-14 11:40 AM PDT -Aveline-art,2021-07-16T02:13:06Z,- Aveline-art assigned to issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-07-15 07:13 PM PDT -Aveline-art,2021-07-16T16:01:44Z,- Aveline-art opened issue: [1956](https://github.com/hackforla/website/issues/1956) at 2021-07-16 09:01 AM PDT -Aveline-art,2021-07-16T16:01:44Z,- Aveline-art assigned to issue: [1956](https://github.com/hackforla/website/issues/1956) at 2021-07-16 09:01 AM PDT -Aveline-art,2021-07-16T16:10:10Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-881559849) at 2021-07-16 09:10 AM PDT -Aveline-art,2021-07-16T16:33:30Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-881574084) at 2021-07-16 09:33 AM PDT -Aveline-art,2021-07-16T16:59:52Z,- Aveline-art unassigned from issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-07-16 09:59 AM PDT -Aveline-art,2021-07-16T17:36:33Z,- Aveline-art submitted pull request review: [1917](https://github.com/hackforla/website/pull/1917#pullrequestreview-708614012) at 2021-07-16 10:36 AM PDT -Aveline-art,2021-07-16T17:58:22Z,- Aveline-art commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-881621240) at 2021-07-16 10:58 AM PDT -Aveline-art,2021-07-16T23:56:30Z,- Aveline-art assigned to issue: [1939](https://github.com/hackforla/website/issues/1939) at 2021-07-16 04:56 PM PDT -Aveline-art,2021-07-17T00:06:12Z,- Aveline-art opened pull request: [1959](https://github.com/hackforla/website/pull/1959) at 2021-07-16 05:06 PM PDT -Aveline-art,2021-07-17T00:08:31Z,- Aveline-art closed issue by PR 1965: [1939](https://github.com/hackforla/website/issues/1939#event-5033234743) at 2021-07-16 05:08 PM PDT -Aveline-art,2021-07-17T00:08:32Z,- Aveline-art pull request merged: [1959](https://github.com/hackforla/website/pull/1959#event-5033234745) at 2021-07-16 05:08 PM PDT -Aveline-art,2021-07-17T00:11:09Z,- Aveline-art opened pull request: [1960](https://github.com/hackforla/website/pull/1960) at 2021-07-16 05:11 PM PDT -Aveline-art,2021-07-17T00:12:02Z,- Aveline-art pull request closed w/o merging: [1960](https://github.com/hackforla/website/pull/1960#event-5033240268) at 2021-07-16 05:12 PM PDT -Aveline-art,2021-07-17T00:15:46Z,- Aveline-art opened pull request: [1961](https://github.com/hackforla/website/pull/1961) at 2021-07-16 05:15 PM PDT -Aveline-art,2021-07-17T00:16:40Z,- Aveline-art pull request closed w/o merging: [1961](https://github.com/hackforla/website/pull/1961#event-5033245893) at 2021-07-16 05:16 PM PDT -Aveline-art,2021-07-17T00:16:53Z,- Aveline-art opened pull request: [1962](https://github.com/hackforla/website/pull/1962) at 2021-07-16 05:16 PM PDT -Aveline-art,2021-07-17T00:17:08Z,- Aveline-art pull request merged: [1962](https://github.com/hackforla/website/pull/1962#event-5033246633) at 2021-07-16 05:17 PM PDT -Aveline-art,2021-07-17T00:18:26Z,- Aveline-art reopened issue: [1939](https://github.com/hackforla/website/issues/1939#event-5033234743) at 2021-07-16 05:18 PM PDT -Aveline-art,2021-07-17T00:19:25Z,- Aveline-art commented on issue: [1939](https://github.com/hackforla/website/issues/1939#issuecomment-881782080) at 2021-07-16 05:19 PM PDT -Aveline-art,2021-07-17T00:31:15Z,- Aveline-art closed issue by PR 1897: [1717](https://github.com/hackforla/website/issues/1717#event-5033263408) at 2021-07-16 05:31 PM PDT -Aveline-art,2021-07-17T14:07:14Z,- Aveline-art commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-881904815) at 2021-07-17 07:07 AM PDT -Aveline-art,2021-07-17T23:38:05Z,- Aveline-art commented on issue: [1939](https://github.com/hackforla/website/issues/1939#issuecomment-881974257) at 2021-07-17 04:38 PM PDT -Aveline-art,2021-07-18T05:45:32Z,- Aveline-art opened pull request: [1965](https://github.com/hackforla/website/pull/1965) at 2021-07-17 10:45 PM PDT -Aveline-art,2021-07-18T05:53:26Z,- Aveline-art closed issue by PR 1965: [1939](https://github.com/hackforla/website/issues/1939#event-5034700716) at 2021-07-17 10:53 PM PDT -Aveline-art,2021-07-18T05:53:26Z,- Aveline-art pull request merged: [1965](https://github.com/hackforla/website/pull/1965#event-5034700719) at 2021-07-17 10:53 PM PDT -Aveline-art,2021-07-18T05:54:07Z,- Aveline-art opened pull request: [1966](https://github.com/hackforla/website/pull/1966) at 2021-07-17 10:54 PM PDT -Aveline-art,2021-07-18T05:55:41Z,- Aveline-art commented on pull request: [1966](https://github.com/hackforla/website/pull/1966#issuecomment-882003708) at 2021-07-17 10:55 PM PDT -Aveline-art,2021-07-18T05:55:41Z,- Aveline-art pull request closed w/o merging: [1966](https://github.com/hackforla/website/pull/1966#event-5034701957) at 2021-07-17 10:55 PM PDT -Aveline-art,2021-07-18T06:00:04Z,- Aveline-art commented on pull request: [1965](https://github.com/hackforla/website/pull/1965#issuecomment-882004055) at 2021-07-17 11:00 PM PDT -Aveline-art,2021-07-18T18:35:46Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-882099722) at 2021-07-18 11:35 AM PDT -Aveline-art,2021-07-18T18:39:08Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-882100090) at 2021-07-18 11:39 AM PDT -Aveline-art,2021-07-18T19:04:26Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-882103078) at 2021-07-18 12:04 PM PDT -Aveline-art,2021-07-18T19:09:20Z,- Aveline-art commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-882103738) at 2021-07-18 12:09 PM PDT -Aveline-art,2021-07-18T19:11:29Z,- Aveline-art commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-882104061) at 2021-07-18 12:11 PM PDT -Aveline-art,2021-07-18T19:13:25Z,- Aveline-art commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-882104286) at 2021-07-18 12:13 PM PDT -Aveline-art,2021-07-19T14:31:03Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-882597236) at 2021-07-19 07:31 AM PDT -Aveline-art,2021-07-19T21:06:16Z,- Aveline-art commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-882859177) at 2021-07-19 02:06 PM PDT -Aveline-art,2021-07-19T21:07:58Z,- Aveline-art opened issue: [1976](https://github.com/hackforla/website/issues/1976) at 2021-07-19 02:07 PM PDT -Aveline-art,2021-07-19T21:08:04Z,- Aveline-art opened issue: [1977](https://github.com/hackforla/website/issues/1977) at 2021-07-19 02:08 PM PDT -Aveline-art,2021-07-20T03:04:10Z,- Aveline-art submitted pull request review: [1964](https://github.com/hackforla/website/pull/1964#pullrequestreview-710140513) at 2021-07-19 08:04 PM PDT -Aveline-art,2021-07-21T02:59:14Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-883847334) at 2021-07-20 07:59 PM PDT -Aveline-art,2021-07-21T05:21:19Z,- Aveline-art opened issue: [1992](https://github.com/hackforla/website/issues/1992) at 2021-07-20 10:21 PM PDT -Aveline-art,2021-07-21T05:29:23Z,- Aveline-art commented on issue: [1992](https://github.com/hackforla/website/issues/1992#issuecomment-883902038) at 2021-07-20 10:29 PM PDT -Aveline-art,2021-07-21T14:46:33Z,- Aveline-art submitted pull request review: [1964](https://github.com/hackforla/website/pull/1964#pullrequestreview-711754958) at 2021-07-21 07:46 AM PDT -Aveline-art,2021-07-21T15:05:33Z,- Aveline-art submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-711791071) at 2021-07-21 08:05 AM PDT -Aveline-art,2021-07-22T03:46:53Z,- Aveline-art closed issue by PR 1967: [1583](https://github.com/hackforla/website/issues/1583#event-5053479691) at 2021-07-21 08:46 PM PDT -Aveline-art,2021-07-22T03:48:49Z,- Aveline-art commented on pull request: [1967](https://github.com/hackforla/website/pull/1967#issuecomment-884638633) at 2021-07-21 08:48 PM PDT -Aveline-art,2021-07-23T04:46:51Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-885396261) at 2021-07-22 09:46 PM PDT -Aveline-art,2021-07-23T22:18:52Z,- Aveline-art closed issue by PR 1964: [1551](https://github.com/hackforla/website/issues/1551#event-5063318158) at 2021-07-23 03:18 PM PDT -Aveline-art,2021-07-24T16:33:29Z,- Aveline-art opened pull request: [2006](https://github.com/hackforla/website/pull/2006) at 2021-07-24 09:33 AM PDT -Aveline-art,2021-07-25T19:45:46Z,- Aveline-art opened issue: [2009](https://github.com/hackforla/website/issues/2009) at 2021-07-25 12:45 PM PDT -Aveline-art,2021-07-25T19:45:53Z,- Aveline-art assigned to issue: [2009](https://github.com/hackforla/website/issues/2009) at 2021-07-25 12:45 PM PDT -Aveline-art,2021-07-25T20:32:07Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-886254096) at 2021-07-25 01:32 PM PDT -Aveline-art,2021-07-25T20:40:25Z,- Aveline-art commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-886254983) at 2021-07-25 01:40 PM PDT -Aveline-art,2021-07-25T20:41:46Z,- Aveline-art commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255133) at 2021-07-25 01:41 PM PDT -Aveline-art,2021-07-25T20:42:07Z,- Aveline-art commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255180) at 2021-07-25 01:42 PM PDT -Aveline-art,2021-07-25T20:43:10Z,- Aveline-art unassigned from issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-886254096) at 2021-07-25 01:43 PM PDT -Aveline-art,2021-07-25T20:45:19Z,- Aveline-art commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-886255500) at 2021-07-25 01:45 PM PDT -Aveline-art,2021-07-27T23:12:22Z,- Aveline-art opened issue: [2013](https://github.com/hackforla/website/issues/2013) at 2021-07-27 04:12 PM PDT -Aveline-art,2021-07-27T23:37:34Z,- Aveline-art assigned to issue: [2014](https://github.com/hackforla/website/issues/2014) at 2021-07-27 04:37 PM PDT -Aveline-art,2021-07-28T03:46:01Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-716554962) at 2021-07-27 08:46 PM PDT -Aveline-art,2021-07-28T19:35:52Z,- Aveline-art commented on issue: [1974](https://github.com/hackforla/website/issues/1974#issuecomment-888568255) at 2021-07-28 12:35 PM PDT -Aveline-art,2021-07-29T22:09:19Z,- Aveline-art closed issue by PR 2001: [1561](https://github.com/hackforla/website/issues/1561#event-5088536801) at 2021-07-29 03:09 PM PDT -Aveline-art,2021-07-29T22:30:05Z,- Aveline-art submitted pull request review: [2012](https://github.com/hackforla/website/pull/2012#pullrequestreview-718584816) at 2021-07-29 03:30 PM PDT -Aveline-art,2021-07-30T03:49:51Z,- Aveline-art closed issue by PR 2003: [1874](https://github.com/hackforla/website/issues/1874#event-5089307432) at 2021-07-29 08:49 PM PDT -Aveline-art,2021-07-30T18:59:48Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-890092133) at 2021-07-30 11:59 AM PDT -Aveline-art,2021-07-30T19:03:35Z,- Aveline-art commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-890094393) at 2021-07-30 12:03 PM PDT -Aveline-art,2021-07-30T19:05:58Z,- Aveline-art commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890095704) at 2021-07-30 12:05 PM PDT -Aveline-art,2021-07-31T16:21:00Z,- Aveline-art opened issue: [2027](https://github.com/hackforla/website/issues/2027) at 2021-07-31 09:21 AM PDT -Aveline-art,2021-07-31T16:32:26Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890372433) at 2021-07-31 09:32 AM PDT -Aveline-art,2021-07-31T20:07:07Z,- Aveline-art submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-719600566) at 2021-07-31 01:07 PM PDT -Aveline-art,2021-08-01T16:38:25Z,- Aveline-art commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890551228) at 2021-08-01 09:38 AM PDT -Aveline-art,2021-08-01T19:02:36Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890569784) at 2021-08-01 12:02 PM PDT -Aveline-art,2021-08-01T21:24:35Z,- Aveline-art submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-719698884) at 2021-08-01 02:24 PM PDT -Aveline-art,2021-08-01T21:34:42Z,- Aveline-art opened pull request: [2030](https://github.com/hackforla/website/pull/2030) at 2021-08-01 02:34 PM PDT -Aveline-art,2021-08-01T21:34:57Z,- Aveline-art pull request merged: [2030](https://github.com/hackforla/website/pull/2030#event-5095897707) at 2021-08-01 02:34 PM PDT -Aveline-art,2021-08-01T22:29:15Z,- Aveline-art opened pull request: [2031](https://github.com/hackforla/website/pull/2031) at 2021-08-01 03:29 PM PDT -Aveline-art,2021-08-01T22:29:27Z,- Aveline-art assigned to issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-889491236) at 2021-08-01 03:29 PM PDT -Aveline-art,2021-08-01T22:43:11Z,- Aveline-art commented on pull request: [2031](https://github.com/hackforla/website/pull/2031#issuecomment-890598612) at 2021-08-01 03:43 PM PDT -Aveline-art,2021-08-01T23:12:33Z,- Aveline-art assigned to issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-890602954) at 2021-08-01 04:12 PM PDT -Aveline-art,2021-08-01T23:39:54Z,- Aveline-art opened issue: [2032](https://github.com/hackforla/website/issues/2032) at 2021-08-01 04:39 PM PDT -Aveline-art,2021-08-01T23:39:55Z,- Aveline-art assigned to issue: [2032](https://github.com/hackforla/website/issues/2032) at 2021-08-01 04:39 PM PDT -Aveline-art,2021-08-02T01:28:09Z,- Aveline-art commented on issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890644868) at 2021-08-01 06:28 PM PDT -Aveline-art,2021-08-02T05:38:44Z,- Aveline-art assigned to issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890569784) at 2021-08-01 10:38 PM PDT -Aveline-art,2021-08-02T05:41:58Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890732690) at 2021-08-01 10:41 PM PDT -Aveline-art,2021-08-02T06:26:32Z,- Aveline-art submitted pull request review: [2012](https://github.com/hackforla/website/pull/2012#pullrequestreview-719834241) at 2021-08-01 11:26 PM PDT -Aveline-art,2021-08-02T18:57:36Z,- Aveline-art opened pull request: [2036](https://github.com/hackforla/website/pull/2036) at 2021-08-02 11:57 AM PDT -Aveline-art,2021-08-02T18:58:37Z,- Aveline-art pull request closed w/o merging: [2036](https://github.com/hackforla/website/pull/2036#event-5100755026) at 2021-08-02 11:58 AM PDT -Aveline-art,2021-08-02T20:14:07Z,- Aveline-art commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-891302656) at 2021-08-02 01:14 PM PDT -Aveline-art,2021-08-02T20:16:48Z,- Aveline-art commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-891304544) at 2021-08-02 01:16 PM PDT -Aveline-art,2021-08-03T03:05:40Z,- Aveline-art submitted pull request review: [2012](https://github.com/hackforla/website/pull/2012#pullrequestreview-720740197) at 2021-08-02 08:05 PM PDT -Aveline-art,2021-08-03T03:06:15Z,- Aveline-art closed issue by PR 2012: [1997](https://github.com/hackforla/website/issues/1997#event-5102224206) at 2021-08-02 08:06 PM PDT -Aveline-art,2021-08-03T03:23:40Z,- Aveline-art commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-891489006) at 2021-08-02 08:23 PM PDT -Aveline-art,2021-08-03T04:55:33Z,- Aveline-art closed issue by PR 2022: [1973](https://github.com/hackforla/website/issues/1973#event-5102482515) at 2021-08-02 09:55 PM PDT -Aveline-art,2021-08-03T14:52:24Z,- Aveline-art closed issue by PR 1986: [1710](https://github.com/hackforla/website/issues/1710#event-5105353084) at 2021-08-03 07:52 AM PDT -Aveline-art,2021-08-03T15:31:14Z,- Aveline-art opened pull request: [2039](https://github.com/hackforla/website/pull/2039) at 2021-08-03 08:31 AM PDT -Aveline-art,2021-08-03T15:32:07Z,- Aveline-art pull request closed w/o merging: [2039](https://github.com/hackforla/website/pull/2039#event-5105602073) at 2021-08-03 08:32 AM PDT -Aveline-art,2021-08-03T22:04:06Z,- Aveline-art opened issue: [2058](https://github.com/hackforla/website/issues/2058) at 2021-08-03 03:04 PM PDT -Aveline-art,2021-08-04T01:28:23Z,- Aveline-art commented on pull request: [2035](https://github.com/hackforla/website/pull/2035#issuecomment-892287503) at 2021-08-03 06:28 PM PDT -Aveline-art,2021-08-04T03:07:23Z,- Aveline-art commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-892324902) at 2021-08-03 08:07 PM PDT -Aveline-art,2021-08-04T14:40:07Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722371368) at 2021-08-04 07:40 AM PDT -Aveline-art,2021-08-04T14:40:23Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722371682) at 2021-08-04 07:40 AM PDT -Aveline-art,2021-08-04T14:49:05Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722382490) at 2021-08-04 07:49 AM PDT -Aveline-art,2021-08-04T15:02:04Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722398866) at 2021-08-04 08:02 AM PDT -Aveline-art,2021-08-04T16:25:20Z,- Aveline-art closed issue by PR 2006: [1956](https://github.com/hackforla/website/issues/1956#event-5112317121) at 2021-08-04 09:25 AM PDT -Aveline-art,2021-08-04T16:25:20Z,- Aveline-art pull request merged: [2006](https://github.com/hackforla/website/pull/2006#event-5112317137) at 2021-08-04 09:25 AM PDT -Aveline-art,2021-08-04T16:44:00Z,- Aveline-art commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-892809797) at 2021-08-04 09:44 AM PDT -Aveline-art,2021-08-04T16:50:57Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-892814226) at 2021-08-04 09:50 AM PDT -Aveline-art,2021-08-04T17:06:51Z,- Aveline-art submitted pull request review: [2035](https://github.com/hackforla/website/pull/2035#pullrequestreview-722532249) at 2021-08-04 10:06 AM PDT -Aveline-art,2021-08-04T17:21:10Z,- Aveline-art unassigned from issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-892814226) at 2021-08-04 10:21 AM PDT -Aveline-art,2021-08-04T18:25:49Z,- Aveline-art opened pull request: [2062](https://github.com/hackforla/website/pull/2062) at 2021-08-04 11:25 AM PDT -Aveline-art,2021-08-04T18:27:24Z,- Aveline-art pull request closed w/o merging: [2062](https://github.com/hackforla/website/pull/2062#event-5112953725) at 2021-08-04 11:27 AM PDT -Aveline-art,2021-08-05T00:04:29Z,- Aveline-art closed issue by PR 2038: [1944](https://github.com/hackforla/website/issues/1944#event-5114409143) at 2021-08-04 05:04 PM PDT -Aveline-art,2021-08-05T00:43:45Z,- Aveline-art opened issue: [2063](https://github.com/hackforla/website/issues/2063) at 2021-08-04 05:43 PM PDT -Aveline-art,2021-08-05T02:10:25Z,- Aveline-art closed issue by PR 2024: [1733](https://github.com/hackforla/website/issues/1733#event-5114771039) at 2021-08-04 07:10 PM PDT -Aveline-art,2021-08-05T02:11:03Z,- Aveline-art closed issue by PR 2028: [1872](https://github.com/hackforla/website/issues/1872#event-5114772964) at 2021-08-04 07:11 PM PDT -Aveline-art,2021-08-05T02:55:24Z,- Aveline-art submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-722891828) at 2021-08-04 07:55 PM PDT -Aveline-art,2021-08-05T15:08:09Z,- Aveline-art closed issue by PR 2035: [1974](https://github.com/hackforla/website/issues/1974#event-5118109985) at 2021-08-05 08:08 AM PDT -Aveline-art,2021-08-05T15:46:08Z,- Aveline-art opened issue: [2065](https://github.com/hackforla/website/issues/2065) at 2021-08-05 08:46 AM PDT -Aveline-art,2021-08-05T16:00:17Z,- Aveline-art closed issue as completed: [1818](https://github.com/hackforla/website/issues/1818#event-5118404923) at 2021-08-05 09:00 AM PDT -Aveline-art,2021-08-05T18:35:12Z,- Aveline-art submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-723678447) at 2021-08-05 11:35 AM PDT -Aveline-art,2021-08-05T18:35:24Z,- Aveline-art closed issue by PR 1677: [1427](https://github.com/hackforla/website/issues/1427#event-5119143990) at 2021-08-05 11:35 AM PDT -Aveline-art,2021-08-06T14:59:56Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-894320253) at 2021-08-06 07:59 AM PDT -Aveline-art,2021-08-06T15:24:21Z,- Aveline-art commented on pull request: [2067](https://github.com/hackforla/website/pull/2067#issuecomment-894335615) at 2021-08-06 08:24 AM PDT -Aveline-art,2021-08-06T15:42:14Z,- Aveline-art submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-724487803) at 2021-08-06 08:42 AM PDT -Aveline-art,2021-08-06T15:42:21Z,- Aveline-art closed issue by PR 2002: [1898](https://github.com/hackforla/website/issues/1898#event-5123593800) at 2021-08-06 08:42 AM PDT -Aveline-art,2021-08-06T18:46:20Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-894451391) at 2021-08-06 11:46 AM PDT -Aveline-art,2021-08-06T20:06:53Z,- Aveline-art reopened issue: [1824](https://github.com/hackforla/website/issues/1824#event-5017512673) at 2021-08-06 01:06 PM PDT -Aveline-art,2021-08-06T20:07:02Z,- Aveline-art closed issue by PR 1909: [1824](https://github.com/hackforla/website/issues/1824#event-5124608805) at 2021-08-06 01:07 PM PDT -Aveline-art,2021-08-07T00:44:56Z,- Aveline-art opened issue: [2068](https://github.com/hackforla/website/issues/2068) at 2021-08-06 05:44 PM PDT -Aveline-art,2021-08-07T00:54:03Z,- Aveline-art commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-894580755) at 2021-08-06 05:54 PM PDT -Aveline-art,2021-08-07T05:01:31Z,- Aveline-art commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-894605409) at 2021-08-06 10:01 PM PDT -Aveline-art,2021-08-07T05:19:11Z,- Aveline-art opened issue: [2069](https://github.com/hackforla/website/issues/2069) at 2021-08-06 10:19 PM PDT -Aveline-art,2021-08-07T05:23:05Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-894607328) at 2021-08-06 10:23 PM PDT -Aveline-art,2021-08-08T19:08:13Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-894841557) at 2021-08-08 12:08 PM PDT -Aveline-art,2021-08-09T00:10:56Z,- Aveline-art submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-724951247) at 2021-08-08 05:10 PM PDT -Aveline-art,2021-08-10T17:50:48Z,- Aveline-art commented on pull request: [2074](https://github.com/hackforla/website/pull/2074#issuecomment-896191500) at 2021-08-10 10:50 AM PDT -Aveline-art,2021-08-10T18:21:01Z,- Aveline-art commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-896212985) at 2021-08-10 11:21 AM PDT -Aveline-art,2021-08-10T18:21:01Z,- Aveline-art closed issue as completed: [759](https://github.com/hackforla/website/issues/759#event-5137017722) at 2021-08-10 11:21 AM PDT -Aveline-art,2021-08-10T18:22:01Z,- Aveline-art commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-896213676) at 2021-08-10 11:22 AM PDT -Aveline-art,2021-08-10T18:23:51Z,- Aveline-art commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-896214854) at 2021-08-10 11:23 AM PDT -Aveline-art,2021-08-10T18:40:25Z,- Aveline-art closed issue by PR 1928: [1908](https://github.com/hackforla/website/issues/1908#event-5137114061) at 2021-08-10 11:40 AM PDT -Aveline-art,2021-08-10T19:32:02Z,- Aveline-art submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-726768868) at 2021-08-10 12:32 PM PDT -Aveline-art,2021-08-10T19:54:14Z,- Aveline-art commented on issue: [2089](https://github.com/hackforla/website/issues/2089#issuecomment-896275683) at 2021-08-10 12:54 PM PDT -Aveline-art,2021-08-10T23:52:06Z,- Aveline-art submitted pull request review: [2067](https://github.com/hackforla/website/pull/2067#pullrequestreview-726933346) at 2021-08-10 04:52 PM PDT -Aveline-art,2021-08-10T23:52:13Z,- Aveline-art closed issue by PR 2067: [2058](https://github.com/hackforla/website/issues/2058#event-5138405503) at 2021-08-10 04:52 PM PDT -Aveline-art,2021-08-11T03:54:11Z,- Aveline-art submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-727019850) at 2021-08-10 08:54 PM PDT -Aveline-art,2021-08-11T03:54:37Z,- Aveline-art closed issue by PR 2060: [2013](https://github.com/hackforla/website/issues/2013#event-5139174943) at 2021-08-10 08:54 PM PDT -Aveline-art,2021-08-11T03:59:41Z,- Aveline-art opened issue: [2100](https://github.com/hackforla/website/issues/2100) at 2021-08-10 08:59 PM PDT -Aveline-art,2021-08-11T04:03:37Z,- Aveline-art opened issue: [2101](https://github.com/hackforla/website/issues/2101) at 2021-08-10 09:03 PM PDT -Aveline-art,2021-08-11T04:04:25Z,- Aveline-art commented on pull request: [2060](https://github.com/hackforla/website/pull/2060#issuecomment-896482315) at 2021-08-10 09:04 PM PDT -Aveline-art,2021-08-11T04:05:57Z,- Aveline-art commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896482953) at 2021-08-10 09:05 PM PDT -Aveline-art,2021-08-11T15:46:49Z,- Aveline-art commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896939484) at 2021-08-11 08:46 AM PDT -Aveline-art,2021-08-11T15:47:52Z,- Aveline-art commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896940253) at 2021-08-11 08:47 AM PDT -Aveline-art,2021-08-11T15:50:08Z,- Aveline-art commented on pull request: [2031](https://github.com/hackforla/website/pull/2031#issuecomment-896941946) at 2021-08-11 08:50 AM PDT -Aveline-art,2021-08-11T19:02:37Z,- Aveline-art commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-897075565) at 2021-08-11 12:02 PM PDT -Aveline-art,2021-08-12T18:09:12Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-897859297) at 2021-08-12 11:09 AM PDT -Aveline-art,2021-08-13T00:13:26Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-898056514) at 2021-08-12 05:13 PM PDT -Aveline-art,2021-08-13T15:23:41Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898540431) at 2021-08-13 08:23 AM PDT -Aveline-art,2021-08-13T15:29:55Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898544492) at 2021-08-13 08:29 AM PDT -Aveline-art,2021-08-13T15:37:22Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-898549414) at 2021-08-13 08:37 AM PDT -Aveline-art,2021-08-13T15:41:24Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898551874) at 2021-08-13 08:41 AM PDT -Aveline-art,2021-08-13T18:20:59Z,- Aveline-art pull request merged: [2031](https://github.com/hackforla/website/pull/2031#event-5157130289) at 2021-08-13 11:20 AM PDT -Aveline-art,2021-08-13T18:27:11Z,- Aveline-art opened issue: [2112](https://github.com/hackforla/website/issues/2112) at 2021-08-13 11:27 AM PDT -Aveline-art,2021-08-13T18:29:27Z,- Aveline-art commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-898645434) at 2021-08-13 11:29 AM PDT -Aveline-art,2021-08-13T18:34:04Z,- Aveline-art opened issue: [2113](https://github.com/hackforla/website/issues/2113) at 2021-08-13 11:34 AM PDT -Aveline-art,2021-08-13T18:39:38Z,- Aveline-art opened issue: [2114](https://github.com/hackforla/website/issues/2114) at 2021-08-13 11:39 AM PDT -Aveline-art,2021-08-13T19:26:12Z,- Aveline-art commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-898674538) at 2021-08-13 12:26 PM PDT -Aveline-art,2021-08-14T02:52:56Z,- Aveline-art submitted pull request review: [2099](https://github.com/hackforla/website/pull/2099#pullrequestreview-730046968) at 2021-08-13 07:52 PM PDT -Aveline-art,2021-08-14T02:53:03Z,- Aveline-art closed issue by PR 2099: [1978](https://github.com/hackforla/website/issues/1978#event-5158194462) at 2021-08-13 07:53 PM PDT -Aveline-art,2021-08-14T03:11:06Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898807242) at 2021-08-13 08:11 PM PDT -Aveline-art,2021-08-14T17:43:32Z,- Aveline-art submitted pull request review: [2098](https://github.com/hackforla/website/pull/2098#pullrequestreview-730122699) at 2021-08-14 10:43 AM PDT -Aveline-art,2021-08-14T17:43:59Z,- Aveline-art closed issue by PR 2098: [2063](https://github.com/hackforla/website/issues/2063#event-5158958356) at 2021-08-14 10:43 AM PDT -Aveline-art,2021-08-14T17:50:24Z,- Aveline-art commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-898936771) at 2021-08-14 10:50 AM PDT -Aveline-art,2021-08-14T18:20:12Z,- Aveline-art opened issue: [2117](https://github.com/hackforla/website/issues/2117) at 2021-08-14 11:20 AM PDT -Aveline-art,2021-08-14T18:21:00Z,- Aveline-art submitted pull request review: [2103](https://github.com/hackforla/website/pull/2103#pullrequestreview-730124742) at 2021-08-14 11:21 AM PDT -Aveline-art,2021-08-14T18:21:15Z,- Aveline-art closed issue by PR 2103: [1584](https://github.com/hackforla/website/issues/1584#event-5158987131) at 2021-08-14 11:21 AM PDT -Aveline-art,2021-08-16T05:08:28Z,- Aveline-art commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-899217655) at 2021-08-15 10:08 PM PDT -Aveline-art,2021-08-16T05:20:10Z,- Aveline-art commented on pull request: [2121](https://github.com/hackforla/website/pull/2121#issuecomment-899222194) at 2021-08-15 10:20 PM PDT -Aveline-art,2021-08-16T05:22:02Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-899222801) at 2021-08-15 10:22 PM PDT -Aveline-art,2021-08-16T05:39:39Z,- Aveline-art commented on issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-899236184) at 2021-08-15 10:39 PM PDT -Aveline-art,2021-08-16T15:58:16Z,- Aveline-art commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-899623738) at 2021-08-16 08:58 AM PDT -Aveline-art,2021-08-17T16:52:28Z,- Aveline-art commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-900463371) at 2021-08-17 09:52 AM PDT -Aveline-art,2021-08-18T02:07:42Z,- Aveline-art commented on pull request: [2070](https://github.com/hackforla/website/pull/2070#issuecomment-900756508) at 2021-08-17 07:07 PM PDT -Aveline-art,2021-08-18T05:43:53Z,- Aveline-art commented on issue: [2116](https://github.com/hackforla/website/issues/2116#issuecomment-900828024) at 2021-08-17 10:43 PM PDT -Aveline-art,2021-08-18T06:17:16Z,- Aveline-art opened issue: [2127](https://github.com/hackforla/website/issues/2127) at 2021-08-17 11:17 PM PDT -Aveline-art,2021-08-18T18:53:23Z,- Aveline-art commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-901350940) at 2021-08-18 11:53 AM PDT -Aveline-art,2021-08-20T05:11:49Z,- Aveline-art opened pull request: [2134](https://github.com/hackforla/website/pull/2134) at 2021-08-19 10:11 PM PDT -Aveline-art,2021-08-20T05:19:32Z,- Aveline-art pull request closed w/o merging: [2134](https://github.com/hackforla/website/pull/2134#event-5184842636) at 2021-08-19 10:19 PM PDT -Aveline-art,2021-08-20T05:42:53Z,- Aveline-art opened pull request: [2139](https://github.com/hackforla/website/pull/2139) at 2021-08-19 10:42 PM PDT -Aveline-art,2021-08-20T05:43:47Z,- Aveline-art pull request merged: [2139](https://github.com/hackforla/website/pull/2139#event-5184907333) at 2021-08-19 10:43 PM PDT -Aveline-art,2021-08-20T06:01:01Z,- Aveline-art commented on pull request: [2132](https://github.com/hackforla/website/pull/2132#issuecomment-902452647) at 2021-08-19 11:01 PM PDT -Aveline-art,2021-08-20T06:14:49Z,- Aveline-art opened issue: [2141](https://github.com/hackforla/website/issues/2141) at 2021-08-19 11:14 PM PDT -Aveline-art,2021-08-20T17:47:38Z,- Aveline-art opened issue: [2145](https://github.com/hackforla/website/issues/2145) at 2021-08-20 10:47 AM PDT -Aveline-art,2021-08-20T17:54:45Z,- Aveline-art opened issue: [2146](https://github.com/hackforla/website/issues/2146) at 2021-08-20 10:54 AM PDT -Aveline-art,2021-08-20T17:56:24Z,- Aveline-art opened issue: [2147](https://github.com/hackforla/website/issues/2147) at 2021-08-20 10:56 AM PDT -Aveline-art,2021-08-20T17:59:36Z,- Aveline-art opened issue: [2148](https://github.com/hackforla/website/issues/2148) at 2021-08-20 10:59 AM PDT -Aveline-art,2021-08-20T19:07:50Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-902898709) at 2021-08-20 12:07 PM PDT -Aveline-art,2021-08-20T20:24:56Z,- Aveline-art commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902938080) at 2021-08-20 01:24 PM PDT -Aveline-art,2021-08-21T00:09:12Z,- Aveline-art commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-903016147) at 2021-08-20 05:09 PM PDT -Aveline-art,2021-08-21T01:14:51Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-903029766) at 2021-08-20 06:14 PM PDT -Aveline-art,2021-08-21T01:27:18Z,- Aveline-art assigned to issue: [1970](https://github.com/hackforla/website/issues/1970) at 2021-08-20 06:27 PM PDT -Aveline-art,2021-08-21T01:37:55Z,- Aveline-art opened pull request: [2152](https://github.com/hackforla/website/pull/2152) at 2021-08-20 06:37 PM PDT -Aveline-art,2021-08-21T16:56:55Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-903144700) at 2021-08-21 09:56 AM PDT -Aveline-art,2021-08-21T18:03:28Z,- Aveline-art opened issue: [2153](https://github.com/hackforla/website/issues/2153) at 2021-08-21 11:03 AM PDT -Aveline-art,2021-08-21T18:08:07Z,- Aveline-art commented on issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-903154532) at 2021-08-21 11:08 AM PDT -Aveline-art,2021-08-21T18:16:37Z,- Aveline-art commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-903155600) at 2021-08-21 11:16 AM PDT -Aveline-art,2021-08-21T18:26:43Z,- Aveline-art opened issue: [2154](https://github.com/hackforla/website/issues/2154) at 2021-08-21 11:26 AM PDT -Aveline-art,2021-08-21T18:52:46Z,- Aveline-art opened issue: [2155](https://github.com/hackforla/website/issues/2155) at 2021-08-21 11:52 AM PDT -Aveline-art,2021-08-22T15:31:06Z,- Aveline-art commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-903286621) at 2021-08-22 08:31 AM PDT -Aveline-art,2021-08-23T19:17:01Z,- Aveline-art commented on issue: [2153](https://github.com/hackforla/website/issues/2153#issuecomment-904048389) at 2021-08-23 12:17 PM PDT -Aveline-art,2021-08-24T15:55:53Z,- Aveline-art closed issue by PR 2136: [2007](https://github.com/hackforla/website/issues/2007#event-5201586251) at 2021-08-24 08:55 AM PDT -Aveline-art,2021-08-24T18:21:50Z,- Aveline-art opened issue: [2172](https://github.com/hackforla/website/issues/2172) at 2021-08-24 11:21 AM PDT -Aveline-art,2021-08-24T18:46:32Z,- Aveline-art opened issue: [2173](https://github.com/hackforla/website/issues/2173) at 2021-08-24 11:46 AM PDT -Aveline-art,2021-08-24T18:51:30Z,- Aveline-art opened issue: [2174](https://github.com/hackforla/website/issues/2174) at 2021-08-24 11:51 AM PDT -Aveline-art,2021-08-24T18:57:20Z,- Aveline-art commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-904894268) at 2021-08-24 11:57 AM PDT -Aveline-art,2021-08-24T21:01:38Z,- Aveline-art commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-904971338) at 2021-08-24 02:01 PM PDT -Aveline-art,2021-08-25T01:44:33Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-905102890) at 2021-08-24 06:44 PM PDT -Aveline-art,2021-08-25T02:12:39Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-905114145) at 2021-08-24 07:12 PM PDT -Aveline-art,2021-08-25T04:16:34Z,- Aveline-art pull request merged: [2152](https://github.com/hackforla/website/pull/2152#event-5204214689) at 2021-08-24 09:16 PM PDT -Aveline-art,2021-08-25T18:42:21Z,- Aveline-art commented on pull request: [2140](https://github.com/hackforla/website/pull/2140#issuecomment-905782419) at 2021-08-25 11:42 AM PDT -Aveline-art,2021-08-25T20:17:52Z,- Aveline-art commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-905844309) at 2021-08-25 01:17 PM PDT -Aveline-art,2021-08-26T17:06:22Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-906587578) at 2021-08-26 10:06 AM PDT -Aveline-art,2021-08-26T17:06:25Z,- Aveline-art closed issue as completed: [2009](https://github.com/hackforla/website/issues/2009#event-5214251152) at 2021-08-26 10:06 AM PDT -Aveline-art,2021-08-26T17:41:28Z,- Aveline-art opened issue: [2182](https://github.com/hackforla/website/issues/2182) at 2021-08-26 10:41 AM PDT -Aveline-art,2021-08-26T17:51:36Z,- Aveline-art opened issue: [2183](https://github.com/hackforla/website/issues/2183) at 2021-08-26 10:51 AM PDT -Aveline-art,2021-08-27T01:20:56Z,- Aveline-art submitted pull request review: [2070](https://github.com/hackforla/website/pull/2070#pullrequestreview-740058631) at 2021-08-26 06:20 PM PDT -Aveline-art,2021-08-27T05:04:45Z,- Aveline-art commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906927880) at 2021-08-26 10:04 PM PDT -Aveline-art,2021-08-27T05:16:36Z,- Aveline-art commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906932601) at 2021-08-26 10:16 PM PDT -Aveline-art,2021-08-27T17:42:58Z,- Aveline-art opened issue: [2188](https://github.com/hackforla/website/issues/2188) at 2021-08-27 10:42 AM PDT -Aveline-art,2021-08-27T18:08:07Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-907381101) at 2021-08-27 11:08 AM PDT -Aveline-art,2021-08-27T18:59:39Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-907409589) at 2021-08-27 11:59 AM PDT -Aveline-art,2021-08-27T20:11:12Z,- Aveline-art commented on issue: [2151](https://github.com/hackforla/website/issues/2151#issuecomment-907449864) at 2021-08-27 01:11 PM PDT -Aveline-art,2021-08-27T20:12:48Z,- Aveline-art commented on issue: [1988](https://github.com/hackforla/website/issues/1988#issuecomment-907450709) at 2021-08-27 01:12 PM PDT -Aveline-art,2021-08-28T01:39:13Z,- Aveline-art closed issue by PR 2157: [2092](https://github.com/hackforla/website/issues/2092#event-5221154740) at 2021-08-27 06:39 PM PDT -Aveline-art,2021-08-28T02:23:36Z,- Aveline-art submitted pull request review: [2011](https://github.com/hackforla/website/pull/2011#pullrequestreview-740969371) at 2021-08-27 07:23 PM PDT -Aveline-art,2021-08-28T03:48:44Z,- Aveline-art opened issue: [2194](https://github.com/hackforla/website/issues/2194) at 2021-08-27 08:48 PM PDT -Aveline-art,2021-08-28T04:05:55Z,- Aveline-art submitted pull request review: [2070](https://github.com/hackforla/website/pull/2070#pullrequestreview-740978171) at 2021-08-27 09:05 PM PDT -Aveline-art,2021-08-28T04:06:33Z,- Aveline-art closed issue by PR 2070: [1927](https://github.com/hackforla/website/issues/1927#event-5221274495) at 2021-08-27 09:06 PM PDT -Aveline-art,2021-08-29T17:54:10Z,- Aveline-art commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-907838439) at 2021-08-29 10:54 AM PDT -Aveline-art,2021-08-29T17:55:44Z,- Aveline-art commented on issue: [2082](https://github.com/hackforla/website/issues/2082#issuecomment-907838730) at 2021-08-29 10:55 AM PDT -Aveline-art,2021-08-30T00:45:58Z,- Aveline-art opened issue: [2206](https://github.com/hackforla/website/issues/2206) at 2021-08-29 05:45 PM PDT -Aveline-art,2021-08-30T00:55:53Z,- Aveline-art commented on issue: [2203](https://github.com/hackforla/website/issues/2203#issuecomment-907923981) at 2021-08-29 05:55 PM PDT -Aveline-art,2021-08-30T16:50:48Z,- Aveline-art submitted pull request review: [2181](https://github.com/hackforla/website/pull/2181#pullrequestreview-741859762) at 2021-08-30 09:50 AM PDT -Aveline-art,2021-08-30T16:50:54Z,- Aveline-art closed issue by PR 2181: [2026](https://github.com/hackforla/website/issues/2026#event-5227471617) at 2021-08-30 09:50 AM PDT -Aveline-art,2021-08-30T17:54:33Z,- Aveline-art commented on issue: [1728](https://github.com/hackforla/website/issues/1728#issuecomment-908557998) at 2021-08-30 10:54 AM PDT -Aveline-art,2021-08-30T17:54:42Z,- Aveline-art closed issue as completed: [1728](https://github.com/hackforla/website/issues/1728#event-5227783826) at 2021-08-30 10:54 AM PDT -Aveline-art,2021-08-30T17:56:10Z,- Aveline-art assigned to issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-901372018) at 2021-08-30 10:56 AM PDT -Aveline-art,2021-08-31T05:51:41Z,- Aveline-art assigned to issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-896973016) at 2021-08-30 10:51 PM PDT -Aveline-art,2021-09-01T17:25:52Z,- Aveline-art commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-910496140) at 2021-09-01 10:25 AM PDT -Aveline-art,2021-09-01T17:27:12Z,- Aveline-art submitted pull request review: [1957](https://github.com/hackforla/website/pull/1957#pullrequestreview-744207538) at 2021-09-01 10:27 AM PDT -Aveline-art,2021-09-03T00:27:49Z,- Aveline-art opened issue: [2215](https://github.com/hackforla/website/issues/2215) at 2021-09-02 05:27 PM PDT -Aveline-art,2021-09-03T01:03:14Z,- Aveline-art opened issue: [2216](https://github.com/hackforla/website/issues/2216) at 2021-09-02 06:03 PM PDT -Aveline-art,2021-09-03T01:24:52Z,- Aveline-art commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-912180289) at 2021-09-02 06:24 PM PDT -Aveline-art,2021-09-03T17:36:47Z,- Aveline-art commented on pull request: [2219](https://github.com/hackforla/website/pull/2219#issuecomment-912700180) at 2021-09-03 10:36 AM PDT -Aveline-art,2021-09-03T17:37:20Z,- Aveline-art commented on pull request: [2218](https://github.com/hackforla/website/pull/2218#issuecomment-912700488) at 2021-09-03 10:37 AM PDT -Aveline-art,2021-09-04T02:22:43Z,- Aveline-art commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-912892182) at 2021-09-03 07:22 PM PDT -Aveline-art,2021-09-04T02:45:31Z,- Aveline-art commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-912894859) at 2021-09-03 07:45 PM PDT -Aveline-art,2021-09-05T16:13:26Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-913183306) at 2021-09-05 09:13 AM PDT -Aveline-art,2021-09-05T17:06:23Z,- Aveline-art commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-913191598) at 2021-09-05 10:06 AM PDT -Aveline-art,2021-09-06T16:21:31Z,- Aveline-art submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-747348174) at 2021-09-06 09:21 AM PDT -Aveline-art,2021-09-06T19:26:29Z,- Aveline-art commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-913822847) at 2021-09-06 12:26 PM PDT -Aveline-art,2021-09-06T22:39:21Z,- Aveline-art commented on issue: [1988](https://github.com/hackforla/website/issues/1988#issuecomment-913875963) at 2021-09-06 03:39 PM PDT -Aveline-art,2021-09-06T22:39:23Z,- Aveline-art closed issue as completed: [1988](https://github.com/hackforla/website/issues/1988#event-5262698876) at 2021-09-06 03:39 PM PDT -Aveline-art,2021-09-06T22:46:56Z,- Aveline-art commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-913877096) at 2021-09-06 03:46 PM PDT -Aveline-art,2021-09-07T16:47:53Z,- Aveline-art opened issue: [2228](https://github.com/hackforla/website/issues/2228) at 2021-09-07 09:47 AM PDT -Aveline-art,2021-09-07T23:07:08Z,- Aveline-art opened pull request: [2229](https://github.com/hackforla/website/pull/2229) at 2021-09-07 04:07 PM PDT -Aveline-art,2021-09-08T01:31:57Z,- Aveline-art opened issue: [2231](https://github.com/hackforla/website/issues/2231) at 2021-09-07 06:31 PM PDT -Aveline-art,2021-09-08T01:38:47Z,- Aveline-art pull request merged: [2229](https://github.com/hackforla/website/pull/2229#event-5268963642) at 2021-09-07 06:38 PM PDT -Aveline-art,2021-09-08T20:21:50Z,- Aveline-art assigned to issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915542974) at 2021-09-08 01:21 PM PDT -Aveline-art,2021-09-08T20:21:55Z,- Aveline-art unassigned from issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915542974) at 2021-09-08 01:21 PM PDT -Aveline-art,2021-09-09T17:38:58Z,- Aveline-art opened issue: [2244](https://github.com/hackforla/website/issues/2244) at 2021-09-09 10:38 AM PDT -Aveline-art,2021-09-09T23:59:37Z,- Aveline-art submitted pull request review: [2223](https://github.com/hackforla/website/pull/2223#pullrequestreview-750938151) at 2021-09-09 04:59 PM PDT -Aveline-art,2021-09-10T04:12:36Z,- Aveline-art closed issue by PR 2223: [2101](https://github.com/hackforla/website/issues/2101#event-5282268925) at 2021-09-09 09:12 PM PDT -Aveline-art,2021-09-10T04:14:43Z,- Aveline-art submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-751033173) at 2021-09-09 09:14 PM PDT -Aveline-art,2021-09-10T04:34:38Z,- Aveline-art closed issue by PR 2230: [2177](https://github.com/hackforla/website/issues/2177#event-5282320057) at 2021-09-09 09:34 PM PDT -Aveline-art,2021-09-10T17:05:26Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-917063839) at 2021-09-10 10:05 AM PDT -Aveline-art,2021-09-10T17:05:26Z,- Aveline-art closed issue as completed: [2014](https://github.com/hackforla/website/issues/2014#event-5285601877) at 2021-09-10 10:05 AM PDT -Aveline-art,2021-09-10T17:35:18Z,- Aveline-art commented on issue: [2188](https://github.com/hackforla/website/issues/2188#issuecomment-917085983) at 2021-09-10 10:35 AM PDT -Aveline-art,2021-09-10T17:38:40Z,- Aveline-art commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-917088046) at 2021-09-10 10:38 AM PDT -Aveline-art,2021-09-10T17:49:10Z,- Aveline-art commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-917094607) at 2021-09-10 10:49 AM PDT -Aveline-art,2021-09-10T21:59:50Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-917238478) at 2021-09-10 02:59 PM PDT -Aveline-art,2021-09-12T21:36:15Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-917714750) at 2021-09-12 02:36 PM PDT -Aveline-art,2021-09-12T21:39:56Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-917715263) at 2021-09-12 02:39 PM PDT -Aveline-art,2021-09-12T21:51:04Z,- Aveline-art opened issue: [2251](https://github.com/hackforla/website/issues/2251) at 2021-09-12 02:51 PM PDT -Aveline-art,2021-09-13T01:11:44Z,- Aveline-art commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-917758345) at 2021-09-12 06:11 PM PDT -Aveline-art,2021-09-13T03:00:06Z,- Aveline-art commented on pull request: [2252](https://github.com/hackforla/website/pull/2252#issuecomment-917796006) at 2021-09-12 08:00 PM PDT -Aveline-art,2021-09-14T02:47:17Z,- Aveline-art commented on pull request: [2256](https://github.com/hackforla/website/pull/2256#issuecomment-918749416) at 2021-09-13 07:47 PM PDT -Aveline-art,2021-09-15T14:30:25Z,- Aveline-art opened issue: [2264](https://github.com/hackforla/website/issues/2264) at 2021-09-15 07:30 AM PDT -Aveline-art,2021-09-15T14:36:20Z,- Aveline-art opened issue: [2265](https://github.com/hackforla/website/issues/2265) at 2021-09-15 07:36 AM PDT -Aveline-art,2021-09-15T14:38:01Z,- Aveline-art opened issue: [2266](https://github.com/hackforla/website/issues/2266) at 2021-09-15 07:38 AM PDT -Aveline-art,2021-09-17T01:18:52Z,- Aveline-art commented on pull request: [2259](https://github.com/hackforla/website/pull/2259#issuecomment-921375736) at 2021-09-16 06:18 PM PDT -Aveline-art,2021-09-17T04:10:12Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-921443985) at 2021-09-16 09:10 PM PDT -Aveline-art,2021-09-17T06:18:51Z,- Aveline-art commented on issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-921530340) at 2021-09-16 11:18 PM PDT -Aveline-art,2021-09-18T03:27:28Z,- Aveline-art submitted pull request review: [2263](https://github.com/hackforla/website/pull/2263#pullrequestreview-757974262) at 2021-09-17 08:27 PM PDT -Aveline-art,2021-09-20T00:08:20Z,- Aveline-art commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-922560888) at 2021-09-19 05:08 PM PDT -Aveline-art,2021-09-20T02:02:18Z,- Aveline-art commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-922593530) at 2021-09-19 07:02 PM PDT -Aveline-art,2021-09-21T00:24:50Z,- Aveline-art commented on pull request: [2263](https://github.com/hackforla/website/pull/2263#issuecomment-923474751) at 2021-09-20 05:24 PM PDT -Aveline-art,2021-09-21T04:39:25Z,- Aveline-art submitted pull request review: [2284](https://github.com/hackforla/website/pull/2284#pullrequestreview-759294942) at 2021-09-20 09:39 PM PDT -Aveline-art,2021-09-21T04:39:43Z,- Aveline-art closed issue by PR 2284: [2244](https://github.com/hackforla/website/issues/2244#event-5332670501) at 2021-09-20 09:39 PM PDT -Aveline-art,2021-09-22T01:11:42Z,- Aveline-art opened issue: [2298](https://github.com/hackforla/website/issues/2298) at 2021-09-21 06:11 PM PDT -Aveline-art,2021-09-22T01:16:45Z,- Aveline-art opened issue: [2299](https://github.com/hackforla/website/issues/2299) at 2021-09-21 06:16 PM PDT -Aveline-art,2021-09-22T22:54:47Z,- Aveline-art submitted pull request review: [2302](https://github.com/hackforla/website/pull/2302#pullrequestreview-761474606) at 2021-09-22 03:54 PM PDT -Aveline-art,2021-09-22T23:26:11Z,- Aveline-art submitted pull request review: [2302](https://github.com/hackforla/website/pull/2302#pullrequestreview-761488755) at 2021-09-22 04:26 PM PDT -Aveline-art,2021-09-22T23:26:50Z,- Aveline-art closed issue by PR 2302: [2227](https://github.com/hackforla/website/issues/2227#event-5346492431) at 2021-09-22 04:26 PM PDT -Aveline-art,2021-09-23T02:58:02Z,- Aveline-art submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-761554914) at 2021-09-22 07:58 PM PDT -Aveline-art,2021-09-23T15:00:41Z,- Aveline-art reopened issue: [2020](https://github.com/hackforla/website/issues/2020#event-5137522852) at 2021-09-23 08:00 AM PDT -Aveline-art,2021-09-23T15:02:17Z,- Aveline-art commented on issue: [2301](https://github.com/hackforla/website/issues/2301#issuecomment-925898664) at 2021-09-23 08:02 AM PDT -Aveline-art,2021-09-23T15:02:17Z,- Aveline-art closed issue as completed: [2301](https://github.com/hackforla/website/issues/2301#event-5350542440) at 2021-09-23 08:02 AM PDT -Aveline-art,2021-09-23T15:04:53Z,- Aveline-art commented on issue: [2268](https://github.com/hackforla/website/issues/2268#issuecomment-925901095) at 2021-09-23 08:04 AM PDT -Aveline-art,2021-09-23T15:05:44Z,- Aveline-art commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-925901888) at 2021-09-23 08:05 AM PDT -Aveline-art,2021-09-24T16:48:26Z,- Aveline-art assigned to issue: [2304](https://github.com/hackforla/website/issues/2304) at 2021-09-24 09:48 AM PDT -Aveline-art,2021-09-24T17:08:25Z,- Aveline-art commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-926788582) at 2021-09-24 10:08 AM PDT -Aveline-art,2021-09-24T17:34:53Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-926805237) at 2021-09-24 10:34 AM PDT -Aveline-art,2021-09-24T17:51:38Z,- Aveline-art commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-926815579) at 2021-09-24 10:51 AM PDT -Aveline-art,2021-09-24T18:11:04Z,- Aveline-art commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-926827631) at 2021-09-24 11:11 AM PDT -Aveline-art,2021-09-24T20:50:16Z,- Aveline-art submitted pull request review: [2263](https://github.com/hackforla/website/pull/2263#pullrequestreview-763465578) at 2021-09-24 01:50 PM PDT -Aveline-art,2021-09-24T20:50:25Z,- Aveline-art closed issue by PR 2263: [2078](https://github.com/hackforla/website/issues/2078#event-5358313182) at 2021-09-24 01:50 PM PDT -Aveline-art,2021-09-25T00:02:42Z,- Aveline-art commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-926975696) at 2021-09-24 05:02 PM PDT -Aveline-art,2021-09-26T18:02:01Z,- Aveline-art unassigned from issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-926815579) at 2021-09-26 11:02 AM PDT -Aveline-art,2021-09-26T20:16:19Z,- Aveline-art submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-763729117) at 2021-09-26 01:16 PM PDT -Aveline-art,2021-09-28T05:27:26Z,- Aveline-art commented on pull request: [2310](https://github.com/hackforla/website/pull/2310#issuecomment-928846284) at 2021-09-27 10:27 PM PDT -Aveline-art,2021-09-28T05:27:39Z,- Aveline-art closed issue by PR 2310: [2258](https://github.com/hackforla/website/issues/2258#event-5371118280) at 2021-09-27 10:27 PM PDT -Aveline-art,2021-09-28T23:36:55Z,- Aveline-art unassigned from issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-924178692) at 2021-09-28 04:36 PM PDT -Aveline-art,2021-09-28T23:37:31Z,- Aveline-art unassigned from issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-927390901) at 2021-09-28 04:37 PM PDT -Aveline-art,2021-09-28T23:49:05Z,- Aveline-art commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-929704326) at 2021-09-28 04:49 PM PDT -Aveline-art,2021-09-29T00:50:02Z,- Aveline-art assigned to issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-912659251) at 2021-09-28 05:50 PM PDT -Aveline-art,2021-09-29T01:55:43Z,- Aveline-art commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-929757388) at 2021-09-28 06:55 PM PDT -Aveline-art,2021-09-29T16:50:29Z,- Aveline-art opened issue: [2316](https://github.com/hackforla/website/issues/2316) at 2021-09-29 09:50 AM PDT -Aveline-art,2021-10-05T16:03:21Z,- Aveline-art unassigned from issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-933054519) at 2021-10-05 09:03 AM PDT -Aveline-art,2021-10-06T02:04:28Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-935256445) at 2021-10-05 07:04 PM PDT -Aveline-art,2021-10-17T22:42:21Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-945207875) at 2021-10-17 03:42 PM PDT -Aveline-art,2021-10-28T04:05:44Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-953483795) at 2021-10-27 09:05 PM PDT -Aveline-art,2021-11-02T17:38:47Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-957978999) at 2021-11-02 10:38 AM PDT -Aveline-art,2021-11-08T19:48:59Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-963514462) at 2021-11-08 11:48 AM PST -Aveline-art,2021-11-10T00:51:06Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-964679618) at 2021-11-09 04:51 PM PST -Aveline-art,2021-12-27T05:03:15Z,- Aveline-art opened issue: [2632](https://github.com/hackforla/website/issues/2632) at 2021-12-26 09:03 PM PST -Aveline-art,2022-01-11T19:45:06Z,- Aveline-art submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-849654235) at 2022-01-11 11:45 AM PST -Aveline-art,2022-01-19T00:30:11Z,- Aveline-art commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1015958943) at 2022-01-18 04:30 PM PST -Aveline-art,2022-01-23T18:18:26Z,- Aveline-art opened issue: [2712](https://github.com/hackforla/website/issues/2712) at 2022-01-23 10:18 AM PST -Aveline-art,2022-01-23T19:49:52Z,- Aveline-art commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1019554588) at 2022-01-23 11:49 AM PST -Aveline-art,2022-01-26T17:31:55Z,- Aveline-art assigned to issue: [2287](https://github.com/hackforla/website/issues/2287#issuecomment-1019559014) at 2022-01-26 09:31 AM PST -Aveline-art,2022-01-26T17:49:33Z,- Aveline-art commented on issue: [2287](https://github.com/hackforla/website/issues/2287#issuecomment-1022442053) at 2022-01-26 09:49 AM PST -Aveline-art,2022-01-26T23:37:07Z,- Aveline-art opened pull request: [2719](https://github.com/hackforla/website/pull/2719) at 2022-01-26 03:37 PM PST -Aveline-art,2022-01-29T23:19:40Z,- Aveline-art commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025005350) at 2022-01-29 03:19 PM PST -Aveline-art,2022-01-30T20:49:55Z,- Aveline-art commented on issue: [2712](https://github.com/hackforla/website/issues/2712#issuecomment-1025228008) at 2022-01-30 12:49 PM PST -Aveline-art,2022-01-30T21:42:37Z,- Aveline-art commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025237943) at 2022-01-30 01:42 PM PST -Aveline-art,2022-01-31T03:50:48Z,- Aveline-art pull request merged: [2719](https://github.com/hackforla/website/pull/2719#event-5977917820) at 2022-01-30 07:50 PM PST -Aveline-art,2022-02-07T18:21:47Z,- Aveline-art opened issue: [2744](https://github.com/hackforla/website/issues/2744) at 2022-02-07 10:21 AM PST -Aveline-art,2022-06-01T18:07:02Z,- Aveline-art opened pull request: [3192](https://github.com/hackforla/website/pull/3192) at 2022-06-01 11:07 AM PDT -Aveline-art,2022-06-01T22:37:29Z,- Aveline-art pull request merged: [3192](https://github.com/hackforla/website/pull/3192#event-6723615966) at 2022-06-01 03:37 PM PDT -Aveline-art,2022-07-28T22:25:33Z,- Aveline-art opened issue: [3440](https://github.com/hackforla/website/issues/3440) at 2022-07-28 03:25 PM PDT -Aveline-art,2022-10-25T23:57:59Z,- Aveline-art commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1291262243) at 2022-10-25 04:57 PM PDT -Aveline-art,2022-10-27T22:15:49Z,- Aveline-art commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1294164547) at 2022-10-27 03:15 PM PDT -Aveline-art,2022-11-26T23:38:02Z,- Aveline-art opened issue: [3746](https://github.com/hackforla/website/issues/3746) at 2022-11-26 03:38 PM PST -Aveline-art,2022-12-01T02:21:43Z,- Aveline-art opened issue: [3759](https://github.com/hackforla/website/issues/3759) at 2022-11-30 06:21 PM PST -Aveline-art,2022-12-01T02:27:40Z,- Aveline-art closed issue as completed: [3759](https://github.com/hackforla/website/issues/3759#event-7927582430) at 2022-11-30 06:27 PM PST -Aveline-art,2023-02-18T23:49:53Z,- Aveline-art commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1435794323) at 2023-02-18 03:49 PM PST -Aveline-art,2023-03-14T22:27:55Z,- Aveline-art assigned to issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1459096509) at 2023-03-14 03:27 PM PDT -Aveline-art,2023-03-14T22:28:26Z,- Aveline-art unassigned from issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1468924989) at 2023-03-14 03:28 PM PDT -Aveline-art,2023-04-02T07:07:49Z,- Aveline-art commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1493250639) at 2023-04-02 12:07 AM PDT -Aveline-art,2023-04-03T23:27:10Z,- Aveline-art commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1495118547) at 2023-04-03 04:27 PM PDT -Aveline-art,2023-04-05T03:34:29Z,- Aveline-art commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1496874612) at 2023-04-04 08:34 PM PDT -Aveline-art,2023-04-15T18:43:42Z,- Aveline-art commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1509925079) at 2023-04-15 11:43 AM PDT -Aveline-art,2023-04-23T17:45:15Z,- Aveline-art assigned to issue: [1884](https://github.com/hackforla/website/issues/1884#event-4976391439) at 2023-04-23 10:45 AM PDT -Aveline-art,2023-04-23T17:46:17Z,- Aveline-art assigned to issue: [1847](https://github.com/hackforla/website/issues/1847#event-4976395806) at 2023-04-23 10:46 AM PDT -Aveline-art,2023-04-30T18:48:39Z,- Aveline-art assigned to issue: [4369](https://github.com/hackforla/website/issues/4369#issuecomment-1529113278) at 2023-04-30 11:48 AM PDT -averdin2,2021-03-24T02:18:54Z,- averdin2 submitted pull request review: [1318](https://github.com/hackforla/website/pull/1318#pullrequestreview-619252640) at 2021-03-23 07:18 PM PDT -averdin2,2021-03-24T02:49:36Z,- averdin2 opened issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-03-23 07:49 PM PDT -averdin2,2021-03-24T03:03:25Z,- averdin2 closed issue as completed: [752](https://github.com/hackforla/website/issues/752#event-4499501075) at 2021-03-23 08:03 PM PDT -averdin2,2021-03-24T03:04:07Z,- averdin2 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-805450293) at 2021-03-23 08:04 PM PDT -averdin2,2021-03-24T03:12:00Z,- averdin2 assigned to issue: [1077](https://github.com/hackforla/website/issues/1077) at 2021-03-23 08:12 PM PDT -averdin2,2021-03-26T18:55:17Z,- averdin2 commented on issue: [1077](https://github.com/hackforla/website/issues/1077#issuecomment-808445229) at 2021-03-26 11:55 AM PDT -averdin2,2021-03-26T23:09:01Z,- averdin2 assigned to issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-784808301) at 2021-03-26 04:09 PM PDT -averdin2,2021-03-26T23:10:17Z,- averdin2 assigned to issue: [1264](https://github.com/hackforla/website/issues/1264) at 2021-03-26 04:10 PM PDT -averdin2,2021-03-27T23:13:28Z,- averdin2 opened pull request: [1334](https://github.com/hackforla/website/pull/1334) at 2021-03-27 04:13 PM PDT -averdin2,2021-03-28T02:26:38Z,- averdin2 commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-808833556) at 2021-03-27 07:26 PM PDT -averdin2,2021-03-29T19:01:11Z,- averdin2 pull request merged: [1334](https://github.com/hackforla/website/pull/1334#event-4523323242) at 2021-03-29 12:01 PM PDT -averdin2,2021-03-30T22:58:52Z,- averdin2 commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-810632665) at 2021-03-30 03:58 PM PDT -averdin2,2021-03-30T23:07:21Z,- averdin2 opened pull request: [1339](https://github.com/hackforla/website/pull/1339) at 2021-03-30 04:07 PM PDT -averdin2,2021-03-30T23:35:21Z,- averdin2 commented on issue: [1264](https://github.com/hackforla/website/issues/1264#issuecomment-810645947) at 2021-03-30 04:35 PM PDT -averdin2,2021-03-31T00:06:35Z,- averdin2 opened pull request: [1340](https://github.com/hackforla/website/pull/1340) at 2021-03-30 05:06 PM PDT -averdin2,2021-03-31T02:31:28Z,- averdin2 pull request merged: [1340](https://github.com/hackforla/website/pull/1340#event-4531536127) at 2021-03-30 07:31 PM PDT -averdin2,2021-03-31T04:27:15Z,- averdin2 pull request merged: [1339](https://github.com/hackforla/website/pull/1339#event-4531899274) at 2021-03-30 09:27 PM PDT -averdin2,2021-04-02T21:44:37Z,- averdin2 assigned to issue: [1331](https://github.com/hackforla/website/issues/1331) at 2021-04-02 02:44 PM PDT -averdin2,2021-04-02T23:29:00Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-812753594) at 2021-04-02 04:29 PM PDT -averdin2,2021-04-02T23:38:15Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-812755340) at 2021-04-02 04:38 PM PDT -averdin2,2021-04-04T19:18:56Z,- averdin2 assigned to issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-04-04 12:18 PM PDT -averdin2,2021-04-04T20:35:31Z,- averdin2 submitted pull request review: [1354](https://github.com/hackforla/website/pull/1354#pullrequestreview-627570818) at 2021-04-04 01:35 PM PDT -averdin2,2021-04-04T20:37:46Z,- averdin2 submitted pull request review: [1354](https://github.com/hackforla/website/pull/1354#pullrequestreview-627570952) at 2021-04-04 01:37 PM PDT -averdin2,2021-04-05T18:17:17Z,- averdin2 submitted pull request review: [1357](https://github.com/hackforla/website/pull/1357#pullrequestreview-628047911) at 2021-04-05 11:17 AM PDT -averdin2,2021-04-05T22:57:18Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-813697030) at 2021-04-05 03:57 PM PDT -averdin2,2021-04-06T20:06:26Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-814405283) at 2021-04-06 01:06 PM PDT -averdin2,2021-04-09T03:25:32Z,- averdin2 assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-08 08:25 PM PDT -averdin2,2021-04-09T16:02:20Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-816785619) at 2021-04-09 09:02 AM PDT -averdin2,2021-04-09T16:54:04Z,- averdin2 opened pull request: [1384](https://github.com/hackforla/website/pull/1384) at 2021-04-09 09:54 AM PDT -averdin2,2021-04-09T17:00:47Z,- averdin2 pull request merged: [1384](https://github.com/hackforla/website/pull/1384#event-4575511901) at 2021-04-09 10:00 AM PDT -averdin2,2021-04-09T17:09:22Z,- averdin2 assigned to issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-04-09 10:09 AM PDT -averdin2,2021-04-12T16:57:57Z,- averdin2 submitted pull request review: [1396](https://github.com/hackforla/website/pull/1396#pullrequestreview-633769212) at 2021-04-12 09:57 AM PDT -averdin2,2021-04-12T17:12:45Z,- averdin2 opened issue: [1398](https://github.com/hackforla/website/issues/1398) at 2021-04-12 10:12 AM PDT -averdin2,2021-04-12T18:42:40Z,- averdin2 commented on issue: [1319](https://github.com/hackforla/website/issues/1319#issuecomment-818042597) at 2021-04-12 11:42 AM PDT -averdin2,2021-04-12T20:54:08Z,- averdin2 commented on issue: [1071](https://github.com/hackforla/website/issues/1071#issuecomment-818230114) at 2021-04-12 01:54 PM PDT -averdin2,2021-04-12T21:16:45Z,- averdin2 opened pull request: [1399](https://github.com/hackforla/website/pull/1399) at 2021-04-12 02:16 PM PDT -averdin2,2021-04-12T21:34:13Z,- averdin2 commented on issue: [1319](https://github.com/hackforla/website/issues/1319#issuecomment-818258450) at 2021-04-12 02:34 PM PDT -averdin2,2021-04-12T23:56:47Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818318212) at 2021-04-12 04:56 PM PDT -averdin2,2021-04-13T00:14:59Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818324393) at 2021-04-12 05:14 PM PDT -averdin2,2021-04-13T00:26:54Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818331360) at 2021-04-12 05:26 PM PDT -averdin2,2021-04-13T00:47:50Z,- averdin2 submitted pull request review: [1400](https://github.com/hackforla/website/pull/1400#pullrequestreview-634078164) at 2021-04-12 05:47 PM PDT -averdin2,2021-04-13T01:11:03Z,- averdin2 commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818353879) at 2021-04-12 06:11 PM PDT -averdin2,2021-04-13T01:16:36Z,- averdin2 submitted pull request review: [1400](https://github.com/hackforla/website/pull/1400#pullrequestreview-634095401) at 2021-04-12 06:16 PM PDT -averdin2,2021-04-13T17:53:16Z,- averdin2 assigned to issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-13 10:53 AM PDT -averdin2,2021-04-13T20:13:48Z,- averdin2 reopened issue: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:13 PM PDT -averdin2,2021-04-14T02:27:12Z,- averdin2 assigned to issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-817342030) at 2021-04-13 07:27 PM PDT -averdin2,2021-04-14T02:38:17Z,- averdin2 unassigned from issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-13 07:38 PM PDT -averdin2,2021-04-14T18:29:56Z,- averdin2 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-819740073) at 2021-04-14 11:29 AM PDT -averdin2,2021-04-14T18:35:26Z,- averdin2 submitted pull request review: [1403](https://github.com/hackforla/website/pull/1403#pullrequestreview-635963838) at 2021-04-14 11:35 AM PDT -averdin2,2021-04-14T19:24:46Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-819773113) at 2021-04-14 12:24 PM PDT -averdin2,2021-04-14T20:08:46Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-819799290) at 2021-04-14 01:08 PM PDT -averdin2,2021-04-14T23:42:13Z,- averdin2 assigned to issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-14 04:42 PM PDT -averdin2,2021-04-15T19:15:48Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-820671473) at 2021-04-15 12:15 PM PDT -averdin2,2021-04-15T19:32:49Z,- averdin2 commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-820680859) at 2021-04-15 12:32 PM PDT -averdin2,2021-04-15T19:41:12Z,- averdin2 commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-820685412) at 2021-04-15 12:41 PM PDT -averdin2,2021-04-18T00:43:56Z,- averdin2 unassigned from issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-17 05:43 PM PDT -averdin2,2021-04-18T19:34:58Z,- averdin2 pull request merged: [1399](https://github.com/hackforla/website/pull/1399#event-4609447043) at 2021-04-18 12:34 PM PDT -averdin2,2021-04-19T20:06:32Z,- averdin2 submitted pull request review: [1421](https://github.com/hackforla/website/pull/1421#pullrequestreview-639262493) at 2021-04-19 01:06 PM PDT -averdin2,2021-04-19T21:22:13Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-822794196) at 2021-04-19 02:22 PM PDT -averdin2,2021-04-19T21:59:50Z,- averdin2 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-822814496) at 2021-04-19 02:59 PM PDT -averdin2,2021-04-19T23:11:28Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-822847982) at 2021-04-19 04:11 PM PDT -averdin2,2021-04-19T23:31:44Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-822855821) at 2021-04-19 04:31 PM PDT -averdin2,2021-04-21T22:23:14Z,- averdin2 commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-824401627) at 2021-04-21 03:23 PM PDT -averdin2,2021-04-21T22:48:15Z,- averdin2 opened pull request: [1430](https://github.com/hackforla/website/pull/1430) at 2021-04-21 03:48 PM PDT -averdin2,2021-04-21T23:03:38Z,- averdin2 submitted pull request review: [1429](https://github.com/hackforla/website/pull/1429#pullrequestreview-641619293) at 2021-04-21 04:03 PM PDT -averdin2,2021-04-26T18:37:12Z,- averdin2 assigned to issue: [1441](https://github.com/hackforla/website/issues/1441) at 2021-04-26 11:37 AM PDT -averdin2,2021-04-27T03:47:09Z,- averdin2 opened pull request: [1471](https://github.com/hackforla/website/pull/1471) at 2021-04-26 08:47 PM PDT -averdin2,2021-04-27T03:56:42Z,- averdin2 assigned to issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-26 08:56 PM PDT -averdin2,2021-04-27T22:54:06Z,- averdin2 commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-827999944) at 2021-04-27 03:54 PM PDT -averdin2,2021-04-27T22:55:34Z,- averdin2 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646439909) at 2021-04-27 03:55 PM PDT -averdin2,2021-04-28T02:08:59Z,- averdin2 submitted pull request review: [1474](https://github.com/hackforla/website/pull/1474#pullrequestreview-646536146) at 2021-04-27 07:08 PM PDT -averdin2,2021-04-28T02:09:13Z,- averdin2 closed issue by PR 1474: [1436](https://github.com/hackforla/website/issues/1436#event-4654025158) at 2021-04-27 07:09 PM PDT -averdin2,2021-04-28T02:30:30Z,- averdin2 submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-646544056) at 2021-04-27 07:30 PM PDT -averdin2,2021-04-28T02:50:21Z,- averdin2 opened issue: [1481](https://github.com/hackforla/website/issues/1481) at 2021-04-27 07:50 PM PDT -averdin2,2021-04-28T02:54:12Z,- averdin2 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646553114) at 2021-04-27 07:54 PM PDT -averdin2,2021-04-28T02:56:05Z,- averdin2 commented on pull request: [1430](https://github.com/hackforla/website/pull/1430#issuecomment-828103626) at 2021-04-27 07:56 PM PDT -averdin2,2021-04-28T23:54:16Z,- averdin2 submitted pull request review: [1490](https://github.com/hackforla/website/pull/1490#pullrequestreview-647728676) at 2021-04-28 04:54 PM PDT -averdin2,2021-04-29T20:41:24Z,- averdin2 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-829581616) at 2021-04-29 01:41 PM PDT -averdin2,2021-04-29T20:45:37Z,- averdin2 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-829584102) at 2021-04-29 01:45 PM PDT -averdin2,2021-04-29T21:23:53Z,- averdin2 commented on pull request: [1430](https://github.com/hackforla/website/pull/1430#issuecomment-829605915) at 2021-04-29 02:23 PM PDT -averdin2,2021-04-29T21:29:40Z,- averdin2 submitted pull request review: [1430](https://github.com/hackforla/website/pull/1430#pullrequestreview-648672353) at 2021-04-29 02:29 PM PDT -averdin2,2021-04-30T16:37:16Z,- averdin2 pull request merged: [1430](https://github.com/hackforla/website/pull/1430#event-4670551297) at 2021-04-30 09:37 AM PDT -averdin2,2021-04-30T20:50:41Z,- averdin2 commented on pull request: [1495](https://github.com/hackforla/website/pull/1495#issuecomment-830380535) at 2021-04-30 01:50 PM PDT -averdin2,2021-04-30T21:54:14Z,- averdin2 submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-649642686) at 2021-04-30 02:54 PM PDT -averdin2,2021-04-30T23:12:01Z,- averdin2 submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-649667316) at 2021-04-30 04:12 PM PDT -averdin2,2021-04-30T23:58:00Z,- averdin2 commented on pull request: [1493](https://github.com/hackforla/website/pull/1493#issuecomment-830465520) at 2021-04-30 04:58 PM PDT -averdin2,2021-05-01T00:01:45Z,- averdin2 submitted pull request review: [1493](https://github.com/hackforla/website/pull/1493#pullrequestreview-649692773) at 2021-04-30 05:01 PM PDT -averdin2,2021-05-01T21:46:36Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-830699008) at 2021-05-01 02:46 PM PDT -averdin2,2021-05-02T16:49:52Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-830837723) at 2021-05-02 09:49 AM PDT -averdin2,2021-05-03T19:09:56Z,- averdin2 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-831471143) at 2021-05-03 12:09 PM PDT -averdin2,2021-05-04T00:24:40Z,- averdin2 commented on pull request: [1471](https://github.com/hackforla/website/pull/1471#issuecomment-831615556) at 2021-05-03 05:24 PM PDT -averdin2,2021-05-04T00:27:42Z,- averdin2 commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-831616743) at 2021-05-03 05:27 PM PDT -averdin2,2021-05-04T22:30:40Z,- averdin2 commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-832290800) at 2021-05-04 03:30 PM PDT -averdin2,2021-05-04T22:35:43Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-832292525) at 2021-05-04 03:35 PM PDT -averdin2,2021-05-06T19:34:20Z,- averdin2 opened issue: [1519](https://github.com/hackforla/website/issues/1519) at 2021-05-06 12:34 PM PDT -averdin2,2021-05-06T20:19:12Z,- averdin2 commented on pull request: [1518](https://github.com/hackforla/website/pull/1518#issuecomment-833832556) at 2021-05-06 01:19 PM PDT -averdin2,2021-05-06T23:40:58Z,- averdin2 submitted pull request review: [1513](https://github.com/hackforla/website/pull/1513#pullrequestreview-653975730) at 2021-05-06 04:40 PM PDT -averdin2,2021-05-06T23:41:18Z,- averdin2 closed issue by PR 1513: [1497](https://github.com/hackforla/website/issues/1497#event-4698448241) at 2021-05-06 04:41 PM PDT -averdin2,2021-05-07T02:02:16Z,- averdin2 commented on issue: [1505](https://github.com/hackforla/website/issues/1505#issuecomment-834003360) at 2021-05-06 07:02 PM PDT -averdin2,2021-05-07T20:13:29Z,- averdin2 submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-654833074) at 2021-05-07 01:13 PM PDT -averdin2,2021-05-07T22:30:37Z,- averdin2 submitted pull request review: [1522](https://github.com/hackforla/website/pull/1522#pullrequestreview-654907788) at 2021-05-07 03:30 PM PDT -averdin2,2021-05-07T22:54:22Z,- averdin2 submitted pull request review: [1530](https://github.com/hackforla/website/pull/1530#pullrequestreview-654914980) at 2021-05-07 03:54 PM PDT -averdin2,2021-05-10T18:17:19Z,- averdin2 opened issue: [1536](https://github.com/hackforla/website/issues/1536) at 2021-05-10 11:17 AM PDT -averdin2,2021-05-10T18:37:46Z,- averdin2 opened issue: [1537](https://github.com/hackforla/website/issues/1537) at 2021-05-10 11:37 AM PDT -averdin2,2021-05-11T20:12:39Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-839121516) at 2021-05-11 01:12 PM PDT -averdin2,2021-05-11T20:18:59Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-839127743) at 2021-05-11 01:18 PM PDT -averdin2,2021-05-12T03:07:36Z,- averdin2 commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-839398169) at 2021-05-11 08:07 PM PDT -averdin2,2021-05-12T03:16:19Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-839401213) at 2021-05-11 08:16 PM PDT -averdin2,2021-05-12T03:16:47Z,- averdin2 assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-836168215) at 2021-05-11 08:16 PM PDT -averdin2,2021-05-12T03:18:09Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-839401905) at 2021-05-11 08:18 PM PDT -averdin2,2021-05-13T18:23:47Z,- averdin2 submitted pull request review: [1540](https://github.com/hackforla/website/pull/1540#pullrequestreview-659178656) at 2021-05-13 11:23 AM PDT -averdin2,2021-05-13T18:24:09Z,- averdin2 closed issue by PR 1540: [1536](https://github.com/hackforla/website/issues/1536#event-4743264385) at 2021-05-13 11:24 AM PDT -averdin2,2021-05-13T18:24:09Z,- averdin2 closed issue by PR 1540: [1537](https://github.com/hackforla/website/issues/1537#event-4743264379) at 2021-05-13 11:24 AM PDT -averdin2,2021-05-18T00:34:28Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-842734306) at 2021-05-17 05:34 PM PDT -averdin2,2021-05-21T19:40:39Z,- averdin2 opened issue: [1602](https://github.com/hackforla/website/issues/1602) at 2021-05-21 12:40 PM PDT -averdin2,2021-05-23T19:19:53Z,- averdin2 commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-846611629) at 2021-05-23 12:19 PM PDT -averdin2,2021-05-23T19:39:23Z,- averdin2 assigned to issue: [1623](https://github.com/hackforla/website/issues/1623) at 2021-05-23 12:39 PM PDT -averdin2,2021-05-24T20:06:34Z,- averdin2 commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-847301602) at 2021-05-24 01:06 PM PDT -averdin2,2021-05-25T22:15:11Z,- averdin2 commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-848305289) at 2021-05-25 03:15 PM PDT -averdin2,2021-05-25T23:25:04Z,- averdin2 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-668476455) at 2021-05-25 04:25 PM PDT -averdin2,2021-05-26T04:07:14Z,- averdin2 opened pull request: [1641](https://github.com/hackforla/website/pull/1641) at 2021-05-25 09:07 PM PDT -averdin2,2021-05-26T04:08:08Z,- averdin2 pull request merged: [1641](https://github.com/hackforla/website/pull/1641#event-4796584330) at 2021-05-25 09:08 PM PDT -averdin2,2021-05-27T18:55:17Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-849864227) at 2021-05-27 11:55 AM PDT -averdin2,2021-05-27T19:45:13Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-849893547) at 2021-05-27 12:45 PM PDT -averdin2,2021-05-28T02:32:31Z,- averdin2 assigned to issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-846600031) at 2021-05-27 07:32 PM PDT -averdin2,2021-06-03T18:43:41Z,- averdin2 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-675617857) at 2021-06-03 11:43 AM PDT -averdin2,2021-06-03T18:44:05Z,- averdin2 closed issue by PR 1624: [1605](https://github.com/hackforla/website/issues/1605#event-4839245292) at 2021-06-03 11:44 AM PDT -averdin2,2021-06-04T03:24:46Z,- averdin2 assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -averdin2,2021-06-04T05:01:26Z,- averdin2 assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -averdin2,2021-06-04T05:15:39Z,- averdin2 assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -averdin2,2021-06-06T19:49:19Z,- averdin2 unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -averdin2,2021-06-12T16:32:02Z,- averdin2 unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -averdin2,2021-06-16T03:58:49Z,- averdin2 unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-860260265) at 2021-06-15 08:58 PM PDT -averdin2,2021-06-19T02:08:00Z,- averdin2 pull request merged: [1471](https://github.com/hackforla/website/pull/1471#event-4912022829) at 2021-06-18 07:08 PM PDT -averdin2,2021-06-25T01:58:56Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-868141531) at 2021-06-24 06:58 PM PDT -averdin2,2021-06-27T15:20:37Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-869180284) at 2021-06-27 08:20 AM PDT -averdin2,2021-06-27T17:43:07Z,- averdin2 assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-862018870) at 2021-06-27 10:43 AM PDT -averdin2,2021-06-27T17:44:56Z,- averdin2 unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-869200854) at 2021-06-27 10:44 AM PDT -averdin2,2021-06-27T17:48:42Z,- averdin2 unassigned from issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-06-27 10:48 AM PDT -averdin2,2021-06-27T18:32:07Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-869206791) at 2021-06-27 11:32 AM PDT -averdin2,2021-06-27T18:33:05Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-869206907) at 2021-06-27 11:33 AM PDT -averdin2,2021-06-28T22:42:16Z,- averdin2 unassigned from issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-870074181) at 2021-06-28 03:42 PM PDT -averdin2,2021-06-28T23:28:31Z,- averdin2 opened pull request: [1854](https://github.com/hackforla/website/pull/1854) at 2021-06-28 04:28 PM PDT -averdin2,2021-06-28T23:57:03Z,- averdin2 commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-870123948) at 2021-06-28 04:57 PM PDT -averdin2,2021-06-29T13:05:07Z,- averdin2 pull request merged: [1854](https://github.com/hackforla/website/pull/1854#event-4953479403) at 2021-06-29 06:05 AM PDT -averdin2,2021-06-30T16:26:09Z,- averdin2 assigned to issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-870074181) at 2021-06-30 09:26 AM PDT -averdin2,2021-06-30T16:32:34Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-871557099) at 2021-06-30 09:32 AM PDT -averdin2,2021-06-30T18:48:13Z,- averdin2 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-871645387) at 2021-06-30 11:48 AM PDT -averdin2,2021-06-30T18:54:54Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-871649405) at 2021-06-30 11:54 AM PDT -averdin2,2021-06-30T20:51:52Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-696606844) at 2021-06-30 01:51 PM PDT -averdin2,2021-06-30T21:13:09Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-871731370) at 2021-06-30 02:13 PM PDT -averdin2,2021-06-30T21:42:42Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-871746778) at 2021-06-30 02:42 PM PDT -averdin2,2021-07-05T17:34:14Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-874252890) at 2021-07-05 10:34 AM PDT -averdin2,2021-07-07T21:22:26Z,- averdin2 commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-875943026) at 2021-07-07 02:22 PM PDT -averdin2,2021-07-07T22:48:37Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-701506779) at 2021-07-07 03:48 PM PDT -averdin2,2021-07-07T23:39:24Z,- averdin2 opened issue: [1900](https://github.com/hackforla/website/issues/1900) at 2021-07-07 04:39 PM PDT -averdin2,2021-07-08T00:02:50Z,- averdin2 opened issue: [1901](https://github.com/hackforla/website/issues/1901) at 2021-07-07 05:02 PM PDT -averdin2,2021-07-11T17:47:12Z,- averdin2 commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-877837845) at 2021-07-11 10:47 AM PDT -averdin2,2021-07-12T23:24:23Z,- averdin2 commented on pull request: [1909](https://github.com/hackforla/website/pull/1909#issuecomment-878663241) at 2021-07-12 04:24 PM PDT -averdin2,2021-07-13T18:00:18Z,- averdin2 commented on pull request: [1909](https://github.com/hackforla/website/pull/1909#issuecomment-879289177) at 2021-07-13 11:00 AM PDT -averdin2,2021-07-13T18:08:44Z,- averdin2 submitted pull request review: [1909](https://github.com/hackforla/website/pull/1909#pullrequestreview-705500463) at 2021-07-13 11:08 AM PDT -averdin2,2021-07-13T22:14:30Z,- averdin2 commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-879440004) at 2021-07-13 03:14 PM PDT -averdin2,2021-07-13T22:22:31Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-879445329) at 2021-07-13 03:22 PM PDT -averdin2,2021-07-15T22:02:33Z,- averdin2 commented on pull request: [1918](https://github.com/hackforla/website/pull/1918#issuecomment-881040367) at 2021-07-15 03:02 PM PDT -averdin2,2021-07-15T22:13:56Z,- averdin2 submitted pull request review: [1918](https://github.com/hackforla/website/pull/1918#pullrequestreview-707861955) at 2021-07-15 03:13 PM PDT -averdin2,2021-07-15T22:23:00Z,- averdin2 submitted pull request review: [1918](https://github.com/hackforla/website/pull/1918#pullrequestreview-707866409) at 2021-07-15 03:23 PM PDT -averdin2,2021-07-15T22:24:07Z,- averdin2 closed issue by PR 1918: [1877](https://github.com/hackforla/website/issues/1877#event-5027999914) at 2021-07-15 03:24 PM PDT -averdin2,2021-07-15T22:25:54Z,- averdin2 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-881050292) at 2021-07-15 03:25 PM PDT -averdin2,2021-07-15T22:52:41Z,- averdin2 submitted pull request review: [1912](https://github.com/hackforla/website/pull/1912#pullrequestreview-707880057) at 2021-07-15 03:52 PM PDT -averdin2,2021-07-16T21:06:40Z,- averdin2 opened pull request: [1957](https://github.com/hackforla/website/pull/1957) at 2021-07-16 02:06 PM PDT -averdin2,2021-07-16T21:07:04Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-881718470) at 2021-07-16 02:07 PM PDT -averdin2,2021-07-16T21:19:01Z,- averdin2 opened issue: [1958](https://github.com/hackforla/website/issues/1958) at 2021-07-16 02:19 PM PDT -averdin2,2021-07-16T21:19:08Z,- averdin2 assigned to issue: [1958](https://github.com/hackforla/website/issues/1958) at 2021-07-16 02:19 PM PDT -averdin2,2021-07-16T21:55:07Z,- averdin2 reopened issue: [1581](https://github.com/hackforla/website/issues/1581#event-5028932295) at 2021-07-16 02:55 PM PDT -averdin2,2021-07-16T21:57:09Z,- averdin2 commented on issue: [1581](https://github.com/hackforla/website/issues/1581#issuecomment-881739823) at 2021-07-16 02:57 PM PDT -averdin2,2021-07-16T21:59:07Z,- averdin2 closed issue by PR 1937: [1581](https://github.com/hackforla/website/issues/1581#event-5032992197) at 2021-07-16 02:59 PM PDT -averdin2,2021-07-16T22:19:03Z,- averdin2 submitted pull request review: [1938](https://github.com/hackforla/website/pull/1938#pullrequestreview-708779464) at 2021-07-16 03:19 PM PDT -averdin2,2021-07-16T22:22:02Z,- averdin2 closed issue by PR 1938: [1560](https://github.com/hackforla/website/issues/1560#event-5033048352) at 2021-07-16 03:22 PM PDT -averdin2,2021-07-16T23:06:13Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-881763398) at 2021-07-16 04:06 PM PDT -averdin2,2021-07-16T23:13:52Z,- averdin2 commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-881765734) at 2021-07-16 04:13 PM PDT -averdin2,2021-07-16T23:29:32Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-881770347) at 2021-07-16 04:29 PM PDT -averdin2,2021-07-16T23:46:34Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-881774275) at 2021-07-16 04:46 PM PDT -averdin2,2021-07-19T21:34:37Z,- averdin2 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-882876996) at 2021-07-19 02:34 PM PDT -averdin2,2021-07-19T21:47:51Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-882883442) at 2021-07-19 02:47 PM PDT -averdin2,2021-07-19T21:53:11Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-882885979) at 2021-07-19 02:53 PM PDT -averdin2,2021-07-19T23:54:07Z,- averdin2 commented on pull request: [1954](https://github.com/hackforla/website/pull/1954#issuecomment-882939421) at 2021-07-19 04:54 PM PDT -averdin2,2021-07-23T23:55:17Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-885966093) at 2021-07-23 04:55 PM PDT -averdin2,2021-07-24T00:50:34Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-885976952) at 2021-07-23 05:50 PM PDT -averdin2,2021-07-26T18:31:45Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-886932125) at 2021-07-26 11:31 AM PDT -averdin2,2021-07-26T18:42:24Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-886938469) at 2021-07-26 11:42 AM PDT -averdin2,2021-08-04T00:15:25Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-721741782) at 2021-08-03 05:15 PM PDT -averdin2,2021-08-04T02:43:34Z,- averdin2 submitted pull request review: [2038](https://github.com/hackforla/website/pull/2038#pullrequestreview-721813706) at 2021-08-03 07:43 PM PDT -averdin2,2021-08-04T02:48:13Z,- averdin2 reopened issue: [1671](https://github.com/hackforla/website/issues/1671#event-5010421573) at 2021-08-03 07:48 PM PDT -averdin2,2021-08-05T21:02:52Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-893795917) at 2021-08-05 02:02 PM PDT -averdin2,2021-08-05T21:06:51Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-893804769) at 2021-08-05 02:06 PM PDT -averdin2,2021-08-08T18:22:38Z,- averdin2 opened issue: [2071](https://github.com/hackforla/website/issues/2071) at 2021-08-08 11:22 AM PDT -averdin2,2021-08-08T18:53:14Z,- averdin2 commented on issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-894839590) at 2021-08-08 11:53 AM PDT -averdin2,2021-08-08T19:24:48Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-724930516) at 2021-08-08 12:24 PM PDT -averdin2,2021-08-08T19:24:56Z,- averdin2 closed issue by PR 1837: [1671](https://github.com/hackforla/website/issues/1671#event-5126961976) at 2021-08-08 12:24 PM PDT -averdin2,2021-08-08T19:25:28Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-894843716) at 2021-08-08 12:25 PM PDT -averdin2,2021-08-08T19:26:22Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-894843816) at 2021-08-08 12:26 PM PDT -averdin2,2021-08-13T03:41:49Z,- averdin2 commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-898169486) at 2021-08-12 08:41 PM PDT -averdin2,2021-08-15T18:48:36Z,- averdin2 assigned to issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-894839590) at 2021-08-15 11:48 AM PDT -averdin2,2021-08-24T03:26:38Z,- averdin2 commented on issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-904293156) at 2021-08-23 08:26 PM PDT -averdin2,2021-08-24T03:26:38Z,- averdin2 closed issue as completed: [2071](https://github.com/hackforla/website/issues/2071#event-5198035606) at 2021-08-23 08:26 PM PDT -averdin2,2021-08-27T03:24:47Z,- averdin2 commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-906896129) at 2021-08-26 08:24 PM PDT -averdin2,2021-08-31T16:29:20Z,- averdin2 opened issue: [2210](https://github.com/hackforla/website/issues/2210) at 2021-08-31 09:29 AM PDT -averdin2,2021-09-01T02:22:19Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-909814705) at 2021-08-31 07:22 PM PDT -averdin2,2021-09-01T02:23:02Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-909815024) at 2021-08-31 07:23 PM PDT -averdin2,2021-09-23T15:39:36Z,- averdin2 pull request merged: [1957](https://github.com/hackforla/website/pull/1957#event-5350790856) at 2021-09-23 08:39 AM PDT -averdin2,2021-11-17T02:52:10Z,- averdin2 opened pull request: [2495](https://github.com/hackforla/website/pull/2495) at 2021-11-16 06:52 PM PST -averdin2,2021-12-15T03:49:46Z,- averdin2 pull request merged: [2495](https://github.com/hackforla/website/pull/2495#event-5768588063) at 2021-12-14 07:49 PM PST -averdin2,2022-09-01T16:27:08Z,- averdin2 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1234511858) at 2022-09-01 09:27 AM PDT -aviraj0010,2023-08-27T10:16:49Z,- aviraj0010 opened pull request: [5314](https://github.com/hackforla/website/pull/5314) at 2023-08-27 03:16 AM PDT -aviraj0010,2023-08-27T14:51:05Z,- aviraj0010 pull request closed w/o merging: [5314](https://github.com/hackforla/website/pull/5314#event-10201972354) at 2023-08-27 07:51 AM PDT -awellsbiz,5089,SKILLS ISSUE -awellsbiz,2023-07-26T03:46:29Z,- awellsbiz opened issue: [5089](https://github.com/hackforla/website/issues/5089) at 2023-07-25 08:46 PM PDT -awellsbiz,2023-07-26T03:50:18Z,- awellsbiz assigned to issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1650934094) at 2023-07-25 08:50 PM PDT -awellsbiz,2023-07-26T03:50:25Z,- awellsbiz unassigned from issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1650934094) at 2023-07-25 08:50 PM PDT -awellsbiz,2023-07-26T03:50:27Z,- awellsbiz assigned to issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1650934094) at 2023-07-25 08:50 PM PDT -awellsbiz,2023-07-28T00:51:33Z,- awellsbiz assigned to issue: [4805](https://github.com/hackforla/website/issues/4805) at 2023-07-27 05:51 PM PDT -awellsbiz,2023-07-28T07:07:53Z,- awellsbiz commented on issue: [4805](https://github.com/hackforla/website/issues/4805#issuecomment-1655148426) at 2023-07-28 12:07 AM PDT -awellsbiz,2023-07-28T07:12:25Z,- awellsbiz opened pull request: [5107](https://github.com/hackforla/website/pull/5107) at 2023-07-28 12:12 AM PDT -awellsbiz,2023-07-31T01:03:54Z,- awellsbiz commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1657344478) at 2023-07-30 06:03 PM PDT -awellsbiz,2023-07-31T19:46:45Z,- awellsbiz commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1659030698) at 2023-07-31 12:46 PM PDT -awellsbiz,2023-08-02T10:05:29Z,- awellsbiz pull request closed w/o merging: [5107](https://github.com/hackforla/website/pull/5107#event-9986188916) at 2023-08-02 03:05 AM PDT -awellsbiz,2023-08-03T05:00:49Z,- awellsbiz opened pull request: [5133](https://github.com/hackforla/website/pull/5133) at 2023-08-02 10:00 PM PDT -awellsbiz,2023-08-04T18:57:30Z,- awellsbiz commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1666047723) at 2023-08-04 11:57 AM PDT -awellsbiz,2023-08-06T01:37:25Z,- awellsbiz pull request merged: [5133](https://github.com/hackforla/website/pull/5133#event-10016377436) at 2023-08-05 06:37 PM PDT -awellsbiz,2023-08-06T09:41:56Z,- awellsbiz commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1666793667) at 2023-08-06 02:41 AM PDT -awellsbiz,2023-08-09T17:37:08Z,- awellsbiz assigned to issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1641393562) at 2023-08-09 10:37 AM PDT -awellsbiz,2023-08-09T17:39:57Z,- awellsbiz commented on issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1671868879) at 2023-08-09 10:39 AM PDT -ayin-55,2018-12-18T22:47:55Z,- ayin-55 opened pull request: [25](https://github.com/hackforla/website/pull/25) at 2018-12-18 02:47 PM PST -ayin-55,2018-12-19T05:26:28Z,- ayin-55 pull request merged: [25](https://github.com/hackforla/website/pull/25#event-2034772893) at 2018-12-18 09:26 PM PST -Ayrh1,6342,SKILLS ISSUE -Ayrh1,2024-02-21T03:46:19Z,- Ayrh1 opened issue: [6342](https://github.com/hackforla/website/issues/6342) at 2024-02-20 07:46 PM PST -Ayrh1,2024-02-21T04:17:29Z,- Ayrh1 assigned to issue: [6342](https://github.com/hackforla/website/issues/6342) at 2024-02-20 08:17 PM PST -Ayrh1,2024-03-07T06:25:16Z,- Ayrh1 assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974949059) at 2024-03-06 10:25 PM PST -Ayrh1,2024-03-07T06:32:16Z,- Ayrh1 commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1982559468) at 2024-03-06 10:32 PM PST -Ayrh1,2024-03-08T17:12:36Z,- Ayrh1 opened pull request: [6440](https://github.com/hackforla/website/pull/6440) at 2024-03-08 09:12 AM PST -Ayrh1,2024-03-09T07:27:23Z,- Ayrh1 assigned to issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-1240948542) at 2024-03-09 12:27 AM PDT -Ayrh1,2024-03-09T07:30:09Z,- Ayrh1 unassigned from issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-1986776645) at 2024-03-09 12:30 AM PDT -Ayrh1,2024-03-10T22:09:10Z,- Ayrh1 pull request merged: [6440](https://github.com/hackforla/website/pull/6440#event-12066489284) at 2024-03-10 03:09 PM PDT -Ayrh1,2024-03-10T23:00:08Z,- Ayrh1 assigned to issue: [6167](https://github.com/hackforla/website/issues/6167) at 2024-03-10 04:00 PM PDT -Ayrh1,2024-03-10T23:01:13Z,- Ayrh1 commented on issue: [6167](https://github.com/hackforla/website/issues/6167#issuecomment-1987393836) at 2024-03-10 04:01 PM PDT -Ayrh1,2024-03-11T03:18:09Z,- Ayrh1 opened pull request: [6448](https://github.com/hackforla/website/pull/6448) at 2024-03-10 08:18 PM PDT -Ayrh1,2024-03-14T03:48:25Z,- Ayrh1 pull request merged: [6448](https://github.com/hackforla/website/pull/6448#event-12111802829) at 2024-03-13 08:48 PM PDT -Ayrh1,2024-03-14T04:58:24Z,- Ayrh1 assigned to issue: [6309](https://github.com/hackforla/website/issues/6309) at 2024-03-13 09:58 PM PDT -Ayrh1,2024-03-14T05:05:47Z,- Ayrh1 unassigned from issue: [6309](https://github.com/hackforla/website/issues/6309) at 2024-03-13 10:05 PM PDT -Ayrh1,2024-03-14T05:11:41Z,- Ayrh1 assigned to issue: [6171](https://github.com/hackforla/website/issues/6171) at 2024-03-13 10:11 PM PDT -Ayrh1,2024-03-14T05:13:13Z,- Ayrh1 commented on issue: [6171](https://github.com/hackforla/website/issues/6171#issuecomment-1996530939) at 2024-03-13 10:13 PM PDT -Ayrh1,2024-03-14T05:45:02Z,- Ayrh1 opened pull request: [6461](https://github.com/hackforla/website/pull/6461) at 2024-03-13 10:45 PM PDT -Ayrh1,2024-03-15T05:45:45Z,- Ayrh1 pull request merged: [6461](https://github.com/hackforla/website/pull/6461#event-12126962920) at 2024-03-14 10:45 PM PDT -Ayrh1,2024-03-17T04:51:51Z,- Ayrh1 assigned to issue: [6466](https://github.com/hackforla/website/issues/6466) at 2024-03-16 09:51 PM PDT -Ayrh1,2024-03-17T04:53:33Z,- Ayrh1 commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2002307451) at 2024-03-16 09:53 PM PDT -Ayrh1,2024-03-17T22:53:44Z,- Ayrh1 opened pull request: [6471](https://github.com/hackforla/website/pull/6471) at 2024-03-17 03:53 PM PDT -Ayrh1,2024-03-19T01:03:20Z,- Ayrh1 unassigned from issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2005541155) at 2024-03-18 06:03 PM PDT -Ayrh1,2024-03-19T04:11:31Z,- Ayrh1 pull request closed w/o merging: [6471](https://github.com/hackforla/website/pull/6471#event-12163285652) at 2024-03-18 09:11 PM PDT -Ayrh1,2024-03-19T04:34:11Z,- Ayrh1 assigned to issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1936422741) at 2024-03-18 09:34 PM PDT -Ayrh1,2024-03-19T04:37:33Z,- Ayrh1 commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-2005742809) at 2024-03-18 09:37 PM PDT -Ayrh1,2024-03-22T00:24:27Z,- Ayrh1 assigned to issue: [6155](https://github.com/hackforla/website/issues/6155) at 2024-03-21 05:24 PM PDT -Ayrh1,2024-03-22T00:25:17Z,- Ayrh1 commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2014099261) at 2024-03-21 05:25 PM PDT -Ayrh1,2024-03-23T03:16:05Z,- Ayrh1 opened pull request: [6507](https://github.com/hackforla/website/pull/6507) at 2024-03-22 08:16 PM PDT -Ayrh1,2024-03-23T19:13:40Z,- Ayrh1 pull request closed w/o merging: [6507](https://github.com/hackforla/website/pull/6507#event-12225024831) at 2024-03-23 12:13 PM PDT -Ayrh1,2024-03-23T19:13:52Z,- Ayrh1 unassigned from issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2016579316) at 2024-03-23 12:13 PM PDT -Ayrh1,2024-03-25T13:16:54Z,- Ayrh1 assigned to issue: [6482](https://github.com/hackforla/website/issues/6482#issuecomment-2008698353) at 2024-03-25 06:16 AM PDT -Ayrh1,2024-03-25T13:18:32Z,- Ayrh1 commented on issue: [6482](https://github.com/hackforla/website/issues/6482#issuecomment-2017992335) at 2024-03-25 06:18 AM PDT -Ayrh1,2024-03-28T02:24:38Z,- Ayrh1 commented on issue: [6482](https://github.com/hackforla/website/issues/6482#issuecomment-2024285717) at 2024-03-27 07:24 PM PDT -Ayrh1,2024-03-28T02:30:39Z,- Ayrh1 opened pull request: [6540](https://github.com/hackforla/website/pull/6540) at 2024-03-27 07:30 PM PDT -Ayrh1,2024-04-05T06:38:06Z,- Ayrh1 pull request merged: [6540](https://github.com/hackforla/website/pull/6540#event-12368626725) at 2024-04-04 11:38 PM PDT -Ayrh1,2024-04-09T03:07:01Z,- Ayrh1 assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2016863723) at 2024-04-08 08:07 PM PDT -Ayrh1,2024-04-09T03:09:25Z,- Ayrh1 commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2044075113) at 2024-04-08 08:09 PM PDT -Ayrh1,2024-04-17T23:12:30Z,- Ayrh1 closed issue as completed: [6342](https://github.com/hackforla/website/issues/6342#event-12515705934) at 2024-04-17 04:12 PM PDT -Ayrh1,2024-05-29T21:54:01Z,- Ayrh1 closed issue as completed: [3302](https://github.com/hackforla/website/issues/3302#event-12977680831) at 2024-05-29 02:54 PM PDT -Ayrh1,2024-05-30T00:47:18Z,- Ayrh1 commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-2138473501) at 2024-05-29 05:47 PM PDT -Ayrh1,2024-07-25T02:37:50Z,- Ayrh1 assigned to issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2227735237) at 2024-07-24 07:37 PM PDT -Ayrh1,2024-07-25T02:43:30Z,- Ayrh1 commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2249253459) at 2024-07-24 07:43 PM PDT -Ayrh1,2024-08-12T02:14:42Z,- Ayrh1 commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2283008780) at 2024-08-11 07:14 PM PDT -Ayrh1,2024-09-04T01:02:35Z,- Ayrh1 commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2327711469) at 2024-09-03 06:02 PM PDT -Ayrh1,2024-09-20T17:26:18Z,- Ayrh1 unassigned from issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2364186162) at 2024-09-20 10:26 AM PDT -aysung8191,5084,SKILLS ISSUE -aysung8191,2023-07-26T03:12:07Z,- aysung8191 opened issue: [5084](https://github.com/hackforla/website/issues/5084) at 2023-07-25 08:12 PM PDT -aysung8191,2023-07-26T03:16:42Z,- aysung8191 assigned to issue: [5084](https://github.com/hackforla/website/issues/5084#issuecomment-1650910599) at 2023-07-25 08:16 PM PDT -ayushlohmod,2023-09-01T09:36:23Z,- ayushlohmod opened pull request: [5406](https://github.com/hackforla/website/pull/5406) at 2023-09-01 02:36 AM PDT -ayushlohmod,2023-09-01T16:26:54Z,- ayushlohmod pull request closed w/o merging: [5406](https://github.com/hackforla/website/pull/5406#event-10259088863) at 2023-09-01 09:26 AM PDT -AzaniaBG,3554,SKILLS ISSUE -AzaniaBG,2022-09-14T02:56:44Z,- AzaniaBG opened issue: [3554](https://github.com/hackforla/website/issues/3554) at 2022-09-13 07:56 PM PDT -AzaniaBG,2022-09-14T02:56:58Z,- AzaniaBG assigned to issue: [3554](https://github.com/hackforla/website/issues/3554) at 2022-09-13 07:56 PM PDT -AzaniaBG,2022-09-14T03:04:33Z,- AzaniaBG assigned to issue: [2826](https://github.com/hackforla/website/issues/2826#issuecomment-1046962915) at 2022-09-13 08:04 PM PDT -AzaniaBG,2022-09-14T03:05:45Z,- AzaniaBG commented on issue: [2826](https://github.com/hackforla/website/issues/2826#issuecomment-1246173161) at 2022-09-13 08:05 PM PDT -AzaniaBG,2022-09-14T20:44:15Z,- AzaniaBG opened pull request: [3556](https://github.com/hackforla/website/pull/3556) at 2022-09-14 01:44 PM PDT -AzaniaBG,2022-09-14T20:58:10Z,- AzaniaBG commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1247294920) at 2022-09-14 01:58 PM PDT -AzaniaBG,2022-09-14T21:04:21Z,- AzaniaBG commented on issue: [3554](https://github.com/hackforla/website/issues/3554#issuecomment-1247300380) at 2022-09-14 02:04 PM PDT -AzaniaBG,2022-09-16T02:29:18Z,- AzaniaBG commented on pull request: [3557](https://github.com/hackforla/website/pull/3557#issuecomment-1248842349) at 2022-09-15 07:29 PM PDT -AzaniaBG,2022-09-16T04:08:57Z,- AzaniaBG pull request merged: [3556](https://github.com/hackforla/website/pull/3556#event-7399878881) at 2022-09-15 09:08 PM PDT -AzaniaBG,2022-09-16T15:44:16Z,- AzaniaBG submitted pull request review: [3557](https://github.com/hackforla/website/pull/3557#pullrequestreview-1110889739) at 2022-09-16 08:44 AM PDT -AzaniaBG,2022-09-17T19:10:49Z,- AzaniaBG commented on pull request: [3560](https://github.com/hackforla/website/pull/3560#issuecomment-1250125919) at 2022-09-17 12:10 PM PDT -AzaniaBG,2022-09-19T21:16:13Z,- AzaniaBG commented on pull request: [3560](https://github.com/hackforla/website/pull/3560#issuecomment-1251564217) at 2022-09-19 02:16 PM PDT -AzaniaBG,2022-09-19T21:42:14Z,- AzaniaBG assigned to issue: [3106](https://github.com/hackforla/website/issues/3106#issuecomment-1116860371) at 2022-09-19 02:42 PM PDT -AzaniaBG,2022-09-19T21:43:15Z,- AzaniaBG commented on issue: [3106](https://github.com/hackforla/website/issues/3106#issuecomment-1251593354) at 2022-09-19 02:43 PM PDT -AzaniaBG,2022-09-19T22:57:11Z,- AzaniaBG opened pull request: [3566](https://github.com/hackforla/website/pull/3566) at 2022-09-19 03:57 PM PDT -AzaniaBG,2022-09-21T02:29:58Z,- AzaniaBG commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1253129516) at 2022-09-20 07:29 PM PDT -AzaniaBG,2022-09-21T14:34:42Z,- AzaniaBG pull request merged: [3566](https://github.com/hackforla/website/pull/3566#event-7431572779) at 2022-09-21 07:34 AM PDT -AzaniaBG,2022-09-21T23:45:35Z,- AzaniaBG submitted pull request review: [3564](https://github.com/hackforla/website/pull/3564#pullrequestreview-1116202161) at 2022-09-21 04:45 PM PDT -AzaniaBG,2022-09-21T23:47:37Z,- AzaniaBG submitted pull request review: [3564](https://github.com/hackforla/website/pull/3564#pullrequestreview-1116203029) at 2022-09-21 04:47 PM PDT -AzaniaBG,2022-09-21T23:49:02Z,- AzaniaBG submitted pull request review: [3564](https://github.com/hackforla/website/pull/3564#pullrequestreview-1116203643) at 2022-09-21 04:49 PM PDT -AzaniaBG,2022-09-22T00:04:32Z,- AzaniaBG submitted pull request review: [3564](https://github.com/hackforla/website/pull/3564#pullrequestreview-1116210133) at 2022-09-21 05:04 PM PDT -AzaniaBG,2022-09-22T16:08:00Z,- AzaniaBG assigned to issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1232326148) at 2022-09-22 09:08 AM PDT -AzaniaBG,2022-09-22T16:09:11Z,- AzaniaBG commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1255245942) at 2022-09-22 09:09 AM PDT -AzaniaBG,2022-09-22T22:55:33Z,- AzaniaBG opened pull request: [3574](https://github.com/hackforla/website/pull/3574) at 2022-09-22 03:55 PM PDT -AzaniaBG,2022-09-24T00:28:49Z,- AzaniaBG pull request merged: [3574](https://github.com/hackforla/website/pull/3574#event-7451018709) at 2022-09-23 05:28 PM PDT -AzaniaBG,2022-09-26T13:41:04Z,- AzaniaBG commented on pull request: [3581](https://github.com/hackforla/website/pull/3581#issuecomment-1258061684) at 2022-09-26 06:41 AM PDT -AzaniaBG,2022-09-26T14:35:00Z,- AzaniaBG assigned to issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-875252740) at 2022-09-26 07:35 AM PDT -AzaniaBG,2022-09-26T14:36:09Z,- AzaniaBG commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1258138207) at 2022-09-26 07:36 AM PDT -AzaniaBG,2022-09-27T16:21:18Z,- AzaniaBG submitted pull request review: [3581](https://github.com/hackforla/website/pull/3581#pullrequestreview-1122303341) at 2022-09-27 09:21 AM PDT -AzaniaBG,2022-09-28T02:39:26Z,- AzaniaBG unassigned from issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1258138207) at 2022-09-27 07:39 PM PDT -AzaniaBG,2022-10-07T14:18:18Z,- AzaniaBG commented on issue: [3554](https://github.com/hackforla/website/issues/3554#issuecomment-1271658674) at 2022-10-07 07:18 AM PDT -AzaniaBG,2022-10-07T15:11:42Z,- AzaniaBG commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1271723514) at 2022-10-07 08:11 AM PDT -AzaniaBG,2022-10-07T16:30:50Z,- AzaniaBG submitted pull request review: [3597](https://github.com/hackforla/website/pull/3597#pullrequestreview-1134804180) at 2022-10-07 09:30 AM PDT -AzaniaBG,2022-10-08T13:33:53Z,- AzaniaBG commented on issue: [3554](https://github.com/hackforla/website/issues/3554#issuecomment-1272321489) at 2022-10-08 06:33 AM PDT -AzaniaBG,2022-10-12T23:36:19Z,- AzaniaBG commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1276846275) at 2022-10-12 04:36 PM PDT -AzaniaBG,2022-10-13T13:33:30Z,- AzaniaBG commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1277623633) at 2022-10-13 06:33 AM PDT -AzaniaBG,2022-10-13T13:34:28Z,- AzaniaBG commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1277625113) at 2022-10-13 06:34 AM PDT -AzaniaBG,2022-10-16T17:45:58Z,- AzaniaBG submitted pull request review: [3597](https://github.com/hackforla/website/pull/3597#pullrequestreview-1143319546) at 2022-10-16 10:45 AM PDT -AzaniaBG,2022-10-17T20:12:17Z,- AzaniaBG commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1281431349) at 2022-10-17 01:12 PM PDT -AzaniaBG,2022-10-17T20:17:08Z,- AzaniaBG commented on pull request: [3631](https://github.com/hackforla/website/pull/3631#issuecomment-1281438849) at 2022-10-17 01:17 PM PDT -AzaniaBG,2022-10-17T20:39:18Z,- AzaniaBG submitted pull request review: [3631](https://github.com/hackforla/website/pull/3631#pullrequestreview-1144782551) at 2022-10-17 01:39 PM PDT -AzaniaBG,2022-10-23T18:39:30Z,- AzaniaBG commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288172931) at 2022-10-23 11:39 AM PDT -AzaniaBG,2022-10-23T18:42:34Z,- AzaniaBG commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1288173500) at 2022-10-23 11:42 AM PDT -AzaniaBG,2022-10-24T14:50:08Z,- AzaniaBG commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1289157360) at 2022-10-24 07:50 AM PDT -AzaniaBG,2022-10-24T22:35:04Z,- AzaniaBG submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1153894005) at 2022-10-24 03:35 PM PDT -AzaniaBG,2022-10-24T22:35:47Z,- AzaniaBG submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1153894480) at 2022-10-24 03:35 PM PDT -AzaniaBG,2022-10-24T22:37:04Z,- AzaniaBG submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1153895309) at 2022-10-24 03:37 PM PDT -AzaniaBG,2022-10-25T14:07:29Z,- AzaniaBG commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1290618632) at 2022-10-25 07:07 AM PDT -AzaniaBG,2022-10-25T14:25:51Z,- AzaniaBG commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1290643869) at 2022-10-25 07:25 AM PDT -AzaniaBG,2022-10-26T02:41:34Z,- AzaniaBG commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1291420183) at 2022-10-25 07:41 PM PDT -AzaniaBG,2022-10-26T18:21:37Z,- AzaniaBG commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1292429243) at 2022-10-26 11:21 AM PDT -AzaniaBG,2022-10-31T21:51:11Z,- AzaniaBG commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1297729671) at 2022-10-31 02:51 PM PDT -AzaniaBG,2022-11-01T23:02:25Z,- AzaniaBG submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1164161523) at 2022-11-01 04:02 PM PDT -AzaniaBG,2022-11-07T18:00:20Z,- AzaniaBG commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1305984969) at 2022-11-07 10:00 AM PST -AzaniaBG,2022-11-14T14:55:27Z,- AzaniaBG commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1313881036) at 2022-11-14 06:55 AM PST -BabithaJe,2024-06-17T17:51:08Z,- BabithaJe commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2173991904) at 2024-06-17 10:51 AM PDT -Baleja,2021-01-07T17:12:25Z,- Baleja commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-756252263) at 2021-01-07 09:12 AM PST -Basu3040,2021-07-28T14:21:59Z,- Basu3040 assigned to issue: [2015](https://github.com/hackforla/website/issues/2015) at 2021-07-28 07:21 AM PDT -Basu3040,2021-08-02T22:00:28Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-891361814) at 2021-08-02 03:00 PM PDT -Basu3040,2021-08-08T16:58:28Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-894825472) at 2021-08-08 09:58 AM PDT -Basu3040,2021-08-08T18:30:12Z,- Basu3040 commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894836723) at 2021-08-08 11:30 AM PDT -Basu3040,2021-08-13T20:28:43Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-898704144) at 2021-08-13 01:28 PM PDT -Basu3040,2021-08-13T20:31:19Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-898705373) at 2021-08-13 01:31 PM PDT -Basu3040,2021-08-16T18:47:28Z,- Basu3040 commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899737644) at 2021-08-16 11:47 AM PDT -Basu3040,2021-08-17T18:02:27Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-900516829) at 2021-08-17 11:02 AM PDT -Basu3040,2021-08-17T20:05:02Z,- Basu3040 assigned to issue: [2096](https://github.com/hackforla/website/issues/2096#event-5171019965) at 2021-08-17 01:05 PM PDT -Basu3040,2021-08-20T00:36:51Z,- Basu3040 closed issue as completed: [2015](https://github.com/hackforla/website/issues/2015#event-5184194062) at 2021-08-19 05:36 PM PDT -Basu3040,2021-08-20T00:36:55Z,- Basu3040 reopened issue: [2015](https://github.com/hackforla/website/issues/2015#event-5184194062) at 2021-08-19 05:36 PM PDT -Basu3040,2021-08-20T15:32:16Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-902777470) at 2021-08-20 08:32 AM PDT -Basu3040,2021-08-22T17:06:29Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-903299826) at 2021-08-22 10:06 AM PDT -Basu3040,2021-08-24T14:05:05Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-904672785) at 2021-08-24 07:05 AM PDT -Basu3040,2021-08-25T14:49:43Z,- Basu3040 commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-905570936) at 2021-08-25 07:49 AM PDT -Basu3040,2021-08-29T03:41:29Z,- Basu3040 commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-907723738) at 2021-08-28 08:41 PM PDT -Basu3040,2021-09-01T13:37:59Z,- Basu3040 commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-910294367) at 2021-09-01 06:37 AM PDT -Basu3040,2021-09-01T13:53:48Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-910308060) at 2021-09-01 06:53 AM PDT -Basu3040,2021-09-05T16:56:30Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-913189731) at 2021-09-05 09:56 AM PDT -Basu3040,2021-09-10T14:16:15Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-916939064) at 2021-09-10 07:16 AM PDT -Basu3040,2021-09-10T14:21:48Z,- Basu3040 assigned to issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-916679703) at 2021-09-10 07:21 AM PDT -Basu3040,2021-09-10T14:24:26Z,- Basu3040 commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-916945001) at 2021-09-10 07:24 AM PDT -Basu3040,2021-09-13T14:46:14Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-918268461) at 2021-09-13 07:46 AM PDT -Basu3040,2021-09-16T14:23:29Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-920949177) at 2021-09-16 07:23 AM PDT -Basu3040,2021-09-17T13:40:50Z,- Basu3040 commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-921806253) at 2021-09-17 06:40 AM PDT -Basu3040,2021-09-17T13:40:57Z,- Basu3040 closed issue as completed: [2096](https://github.com/hackforla/website/issues/2096#event-5319467220) at 2021-09-17 06:40 AM PDT -Basu3040,2021-09-22T15:46:43Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-925054434) at 2021-09-22 08:46 AM PDT -Basu3040,2021-09-26T18:02:35Z,- Basu3040 assigned to issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-926815579) at 2021-09-26 11:02 AM PDT -Basu3040,2021-09-26T18:14:14Z,- Basu3040 opened issue: [2309](https://github.com/hackforla/website/issues/2309) at 2021-09-26 11:14 AM PDT -Basu3040,2021-09-26T18:14:15Z,- Basu3040 assigned to issue: [2309](https://github.com/hackforla/website/issues/2309) at 2021-09-26 11:14 AM PDT -Basu3040,2021-09-26T18:22:00Z,- Basu3040 commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-927348727) at 2021-09-26 11:22 AM PDT -Basu3040,2021-09-28T17:02:42Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-929412212) at 2021-09-28 10:02 AM PDT -Basu3040,2021-10-03T16:39:15Z,- Basu3040 commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-932984890) at 2021-10-03 09:39 AM PDT -Basu3040,2021-10-03T16:41:36Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-932985227) at 2021-10-03 09:41 AM PDT -Basu3040,2021-10-04T18:28:52Z,- Basu3040 opened issue: [2334](https://github.com/hackforla/website/issues/2334) at 2021-10-04 11:28 AM PDT -Basu3040,2021-10-04T18:28:52Z,- Basu3040 assigned to issue: [2334](https://github.com/hackforla/website/issues/2334) at 2021-10-04 11:28 AM PDT -Basu3040,2021-10-04T18:39:59Z,- Basu3040 unassigned from issue: [2334](https://github.com/hackforla/website/issues/2334) at 2021-10-04 11:39 AM PDT -Basu3040,2021-10-06T19:19:41Z,- Basu3040 unassigned from issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-929126159) at 2021-10-06 12:19 PM PDT -Basu3040,2021-10-08T12:23:27Z,- Basu3040 commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-938600076) at 2021-10-08 05:23 AM PDT -Basu3040,2021-10-08T12:30:23Z,- Basu3040 commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-938605045) at 2021-10-08 05:30 AM PDT -Basu3040,2021-10-14T21:57:35Z,- Basu3040 commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-943767084) at 2021-10-14 02:57 PM PDT -Basu3040,2021-10-17T17:29:07Z,- Basu3040 commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-945163568) at 2021-10-17 10:29 AM PDT -Basu3040,2021-10-22T14:10:19Z,- Basu3040 commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-949667914) at 2021-10-22 07:10 AM PDT -Basu3040,2021-10-22T14:46:07Z,- Basu3040 opened issue: [2389](https://github.com/hackforla/website/issues/2389) at 2021-10-22 07:46 AM PDT -Basu3040,2021-10-26T19:29:50Z,- Basu3040 assigned to issue: [2389](https://github.com/hackforla/website/issues/2389#issuecomment-952234495) at 2021-10-26 12:29 PM PDT -Basu3040,2021-11-08T19:06:04Z,- Basu3040 unassigned from issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-954482249) at 2021-11-08 11:06 AM PST -Basu3040,2021-11-14T23:35:24Z,- Basu3040 unassigned from issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-967251091) at 2021-11-14 03:35 PM PST -bberhane,2024-01-15T02:11:23Z,- bberhane opened issue: [6114](https://github.com/hackforla/website/issues/6114) at 2024-01-14 06:11 PM PST -bberhane,2024-08-16T02:42:42Z,- bberhane opened issue: [7301](https://github.com/hackforla/website/issues/7301) at 2024-08-15 07:42 PM PDT -Beatriz-G,6530,SKILLS ISSUE -Beatriz-G,2024-03-27T03:31:31Z,- Beatriz-G opened issue: [6530](https://github.com/hackforla/website/issues/6530) at 2024-03-26 08:31 PM PDT -Beatriz-G,2024-03-27T03:31:32Z,- Beatriz-G assigned to issue: [6530](https://github.com/hackforla/website/issues/6530) at 2024-03-26 08:31 PM PDT -Beatriz-G,2024-03-27T03:31:44Z,- Beatriz-G unassigned from issue: [6530](https://github.com/hackforla/website/issues/6530) at 2024-03-26 08:31 PM PDT -Beatriz-G,2024-03-29T18:41:01Z,- Beatriz-G assigned to issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2021859562) at 2024-03-29 11:41 AM PDT -Beatriz-G,2024-03-29T19:20:08Z,- Beatriz-G commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2027649244) at 2024-03-29 12:20 PM PDT -Beatriz-G,2024-04-16T19:35:23Z,- Beatriz-G assigned to issue: [6648](https://github.com/hackforla/website/issues/6648) at 2024-04-16 12:35 PM PDT -Beatriz-G,2024-04-16T19:39:29Z,- Beatriz-G commented on issue: [6648](https://github.com/hackforla/website/issues/6648#issuecomment-2059801514) at 2024-04-16 12:39 PM PDT -Beatriz-G,2024-04-16T19:49:18Z,- Beatriz-G commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2059815076) at 2024-04-16 12:49 PM PDT -Beatriz-G,2024-04-16T20:18:32Z,- Beatriz-G opened pull request: [6658](https://github.com/hackforla/website/pull/6658) at 2024-04-16 01:18 PM PDT -Beatriz-G,2024-04-17T03:02:11Z,- Beatriz-G commented on pull request: [6658](https://github.com/hackforla/website/pull/6658#issuecomment-2060259840) at 2024-04-16 08:02 PM PDT -Beatriz-G,2024-04-17T23:08:40Z,- Beatriz-G commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2062628424) at 2024-04-17 04:08 PM PDT -Beatriz-G,2024-04-18T00:38:46Z,- Beatriz-G submitted pull request review: [6617](https://github.com/hackforla/website/pull/6617#pullrequestreview-2007602917) at 2024-04-17 05:38 PM PDT -Beatriz-G,2024-04-18T22:31:58Z,- Beatriz-G pull request merged: [6658](https://github.com/hackforla/website/pull/6658#event-12529938761) at 2024-04-18 03:31 PM PDT -Beatriz-G,2024-05-05T18:03:50Z,- Beatriz-G commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2094897701) at 2024-05-05 11:03 AM PDT -Beatriz-G,2024-05-19T00:23:01Z,- Beatriz-G commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2119040635) at 2024-05-18 05:23 PM PDT -Beatriz-G,2024-06-05T20:26:58Z,- Beatriz-G commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2150907823) at 2024-06-05 01:26 PM PDT -BeckettOBrien,3267,SKILLS ISSUE -BeckettOBrien,2022-06-20T21:41:34Z,- BeckettOBrien opened issue: [3267](https://github.com/hackforla/website/issues/3267) at 2022-06-20 02:41 PM PDT -BeckettOBrien,2022-06-20T21:56:28Z,- BeckettOBrien assigned to issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1160868474) at 2022-06-20 02:56 PM PDT -BeckettOBrien,2022-06-22T01:13:59Z,- BeckettOBrien commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1162514873) at 2022-06-21 06:13 PM PDT -BeckettOBrien,2022-06-22T02:45:08Z,- BeckettOBrien assigned to issue: [2876](https://github.com/hackforla/website/issues/2876#issuecomment-1049090274) at 2022-06-21 07:45 PM PDT -BeckettOBrien,2022-06-22T02:50:54Z,- BeckettOBrien commented on issue: [2876](https://github.com/hackforla/website/issues/2876#issuecomment-1162574489) at 2022-06-21 07:50 PM PDT -BeckettOBrien,2022-06-22T03:14:21Z,- BeckettOBrien opened pull request: [3285](https://github.com/hackforla/website/pull/3285) at 2022-06-21 08:14 PM PDT -BeckettOBrien,2022-06-22T05:24:21Z,- BeckettOBrien pull request merged: [3285](https://github.com/hackforla/website/pull/3285#event-6853033498) at 2022-06-21 10:24 PM PDT -BeckettOBrien,2022-06-22T22:30:34Z,- BeckettOBrien assigned to issue: [3093](https://github.com/hackforla/website/issues/3093#issuecomment-1116761701) at 2022-06-22 03:30 PM PDT -BeckettOBrien,2022-06-22T22:33:53Z,- BeckettOBrien commented on issue: [3093](https://github.com/hackforla/website/issues/3093#issuecomment-1163715523) at 2022-06-22 03:33 PM PDT -BeckettOBrien,2022-06-22T22:53:24Z,- BeckettOBrien opened pull request: [3288](https://github.com/hackforla/website/pull/3288) at 2022-06-22 03:53 PM PDT -BeckettOBrien,2022-06-22T23:18:34Z,- BeckettOBrien commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1163752423) at 2022-06-22 04:18 PM PDT -BeckettOBrien,2022-06-22T23:37:42Z,- BeckettOBrien submitted pull request review: [3224](https://github.com/hackforla/website/pull/3224#pullrequestreview-1016131290) at 2022-06-22 04:37 PM PDT -BeckettOBrien,2022-06-23T19:53:42Z,- BeckettOBrien pull request merged: [3288](https://github.com/hackforla/website/pull/3288#event-6869155950) at 2022-06-23 12:53 PM PDT -BeckettOBrien,2022-06-23T20:13:49Z,- BeckettOBrien commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1164825027) at 2022-06-23 01:13 PM PDT -BeckettOBrien,2022-06-23T20:13:53Z,- BeckettOBrien commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1164825075) at 2022-06-23 01:13 PM PDT -BeckettOBrien,2022-06-23T22:28:59Z,- BeckettOBrien commented on pull request: [3297](https://github.com/hackforla/website/pull/3297#issuecomment-1164975221) at 2022-06-23 03:28 PM PDT -BeckettOBrien,2022-06-23T23:18:09Z,- BeckettOBrien assigned to issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1147996123) at 2022-06-23 04:18 PM PDT -BeckettOBrien,2022-06-23T23:19:49Z,- BeckettOBrien commented on issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1165003659) at 2022-06-23 04:19 PM PDT -BeckettOBrien,2022-06-23T23:37:24Z,- BeckettOBrien opened pull request: [3298](https://github.com/hackforla/website/pull/3298) at 2022-06-23 04:37 PM PDT -BeckettOBrien,2022-06-25T14:50:57Z,- BeckettOBrien pull request merged: [3298](https://github.com/hackforla/website/pull/3298#event-6879104854) at 2022-06-25 07:50 AM PDT -BeckettOBrien,2022-06-26T18:40:14Z,- BeckettOBrien opened issue: [3307](https://github.com/hackforla/website/issues/3307) at 2022-06-26 11:40 AM PDT -BeckettOBrien,2022-06-27T20:37:10Z,- BeckettOBrien assigned to issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1162705692) at 2022-06-27 01:37 PM PDT -BeckettOBrien,2022-06-27T20:38:43Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1167864276) at 2022-06-27 01:38 PM PDT -BeckettOBrien,2022-06-27T21:19:31Z,- BeckettOBrien opened pull request: [3321](https://github.com/hackforla/website/pull/3321) at 2022-06-27 02:19 PM PDT -BeckettOBrien,2022-06-28T21:26:17Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1169259075) at 2022-06-28 02:26 PM PDT -BeckettOBrien,2022-06-28T22:42:16Z,- BeckettOBrien commented on pull request: [3319](https://github.com/hackforla/website/pull/3319#issuecomment-1169360677) at 2022-06-28 03:42 PM PDT -BeckettOBrien,2022-06-28T22:52:50Z,- BeckettOBrien submitted pull request review: [3319](https://github.com/hackforla/website/pull/3319#pullrequestreview-1022560062) at 2022-06-28 03:52 PM PDT -BeckettOBrien,2022-06-29T02:16:28Z,- BeckettOBrien commented on pull request: [3322](https://github.com/hackforla/website/pull/3322#issuecomment-1169459288) at 2022-06-28 07:16 PM PDT -BeckettOBrien,2022-06-29T02:19:54Z,- BeckettOBrien submitted pull request review: [3322](https://github.com/hackforla/website/pull/3322#pullrequestreview-1022659022) at 2022-06-28 07:19 PM PDT -BeckettOBrien,2022-06-29T20:58:12Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170486890) at 2022-06-29 01:58 PM PDT -BeckettOBrien,2022-06-29T22:56:21Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170572777) at 2022-06-29 03:56 PM PDT -BeckettOBrien,2022-06-30T00:05:36Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170608684) at 2022-06-29 05:05 PM PDT -BeckettOBrien,2022-06-30T18:56:20Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1171566666) at 2022-06-30 11:56 AM PDT -BeckettOBrien,2022-07-02T00:54:11Z,- BeckettOBrien pull request merged: [3321](https://github.com/hackforla/website/pull/3321#event-6921545450) at 2022-07-01 05:54 PM PDT -BeckettOBrien,2022-07-03T20:42:02Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173168293) at 2022-07-03 01:42 PM PDT -BeckettOBrien,2022-07-03T20:47:03Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173168931) at 2022-07-03 01:47 PM PDT -BeckettOBrien,2022-07-05T20:47:11Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1175482608) at 2022-07-05 01:47 PM PDT -BeckettOBrien,2022-07-05T20:49:57Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1175484735) at 2022-07-05 01:49 PM PDT -BeckettOBrien,2022-07-05T20:49:58Z,- BeckettOBrien reopened issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1175484735) at 2022-07-05 01:49 PM PDT -BeckettOBrien,2022-07-05T21:16:45Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1175506616) at 2022-07-05 02:16 PM PDT -BeckettOBrien,2022-07-06T05:03:06Z,- BeckettOBrien opened pull request: [3333](https://github.com/hackforla/website/pull/3333) at 2022-07-05 10:03 PM PDT -BeckettOBrien,2022-07-06T05:05:51Z,- BeckettOBrien commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1175785431) at 2022-07-05 10:05 PM PDT -BeckettOBrien,2022-07-06T18:31:16Z,- BeckettOBrien pull request closed w/o merging: [3333](https://github.com/hackforla/website/pull/3333#event-6945236987) at 2022-07-06 11:31 AM PDT -BeckettOBrien,2022-07-06T18:31:21Z,- BeckettOBrien reopened pull request: [3333](https://github.com/hackforla/website/pull/3333#event-6945236987) at 2022-07-06 11:31 AM PDT -BeckettOBrien,2022-07-06T18:36:47Z,- BeckettOBrien commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1176548248) at 2022-07-06 11:36 AM PDT -BeckettOBrien,2022-07-07T04:27:58Z,- BeckettOBrien commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1177051723) at 2022-07-06 09:27 PM PDT -BeckettOBrien,2022-07-07T04:27:58Z,- BeckettOBrien pull request closed w/o merging: [3333](https://github.com/hackforla/website/pull/3333#event-6948169665) at 2022-07-06 09:27 PM PDT -BeckettOBrien,2022-07-07T17:10:35Z,- BeckettOBrien assigned to issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1170764870) at 2022-07-07 10:10 AM PDT -BeckettOBrien,2022-07-07T17:11:26Z,- BeckettOBrien commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1177949617) at 2022-07-07 10:11 AM PDT -BeckettOBrien,2022-07-07T17:34:12Z,- BeckettOBrien opened pull request: [3338](https://github.com/hackforla/website/pull/3338) at 2022-07-07 10:34 AM PDT -BeckettOBrien,2022-07-07T18:08:55Z,- BeckettOBrien commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1178021534) at 2022-07-07 11:08 AM PDT -BeckettOBrien,2022-07-07T18:25:10Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178040749) at 2022-07-07 11:25 AM PDT -BeckettOBrien,2022-07-07T18:35:51Z,- BeckettOBrien submitted pull request review: [3329](https://github.com/hackforla/website/pull/3329#pullrequestreview-1032012010) at 2022-07-07 11:35 AM PDT -BeckettOBrien,2022-07-07T21:08:01Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178232280) at 2022-07-07 02:08 PM PDT -BeckettOBrien,2022-07-09T23:26:11Z,- BeckettOBrien pull request merged: [3338](https://github.com/hackforla/website/pull/3338#event-6964440313) at 2022-07-09 04:26 PM PDT -BeckettOBrien,2022-07-11T20:55:39Z,- BeckettOBrien assigned to issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1120289117) at 2022-07-11 01:55 PM PDT -BeckettOBrien,2022-07-11T20:56:00Z,- BeckettOBrien commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1180861635) at 2022-07-11 01:56 PM PDT -BeckettOBrien,2022-07-11T21:17:35Z,- BeckettOBrien opened pull request: [3359](https://github.com/hackforla/website/pull/3359) at 2022-07-11 02:17 PM PDT -BeckettOBrien,2022-07-11T21:25:29Z,- BeckettOBrien commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1180885849) at 2022-07-11 02:25 PM PDT -BeckettOBrien,2022-07-13T01:05:00Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1182648781) at 2022-07-12 06:05 PM PDT -BeckettOBrien,2022-07-13T02:17:53Z,- BeckettOBrien closed issue by PR 3321: [3257](https://github.com/hackforla/website/issues/3257#event-6982275847) at 2022-07-12 07:17 PM PDT -BeckettOBrien,2022-07-13T21:20:11Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1183689459) at 2022-07-13 02:20 PM PDT -BeckettOBrien,2022-07-13T21:37:24Z,- BeckettOBrien submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1038009950) at 2022-07-13 02:37 PM PDT -BeckettOBrien,2022-07-15T19:40:00Z,- BeckettOBrien commented on pull request: [3372](https://github.com/hackforla/website/pull/3372#issuecomment-1185850192) at 2022-07-15 12:40 PM PDT -BeckettOBrien,2022-07-15T20:19:05Z,- BeckettOBrien submitted pull request review: [3372](https://github.com/hackforla/website/pull/3372#pullrequestreview-1040766609) at 2022-07-15 01:19 PM PDT -BeckettOBrien,2022-07-15T21:35:56Z,- BeckettOBrien commented on pull request: [3373](https://github.com/hackforla/website/pull/3373#issuecomment-1185964373) at 2022-07-15 02:35 PM PDT -BeckettOBrien,2022-07-15T21:56:33Z,- BeckettOBrien submitted pull request review: [3373](https://github.com/hackforla/website/pull/3373#pullrequestreview-1040837912) at 2022-07-15 02:56 PM PDT -BeckettOBrien,2022-07-17T06:24:18Z,- BeckettOBrien submitted pull request review: [3373](https://github.com/hackforla/website/pull/3373#pullrequestreview-1041075322) at 2022-07-16 11:24 PM PDT -BeckettOBrien,2022-07-18T04:30:09Z,- BeckettOBrien pull request merged: [3359](https://github.com/hackforla/website/pull/3359#event-7008811983) at 2022-07-17 09:30 PM PDT -BeckettOBrien,2022-07-18T05:40:51Z,- BeckettOBrien commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186789011) at 2022-07-17 10:40 PM PDT -BeckettOBrien,2022-07-18T17:23:27Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1187842497) at 2022-07-18 10:23 AM PDT -BeckettOBrien,2022-07-18T18:52:24Z,- BeckettOBrien submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1042333468) at 2022-07-18 11:52 AM PDT -BeckettOBrien,2022-07-18T20:03:30Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188246633) at 2022-07-18 01:03 PM PDT -BeckettOBrien,2022-07-18T23:44:30Z,- BeckettOBrien assigned to issue: [2065](https://github.com/hackforla/website/issues/2065) at 2022-07-18 04:44 PM PDT -BeckettOBrien,2022-07-18T23:45:52Z,- BeckettOBrien commented on issue: [2065](https://github.com/hackforla/website/issues/2065#issuecomment-1188444519) at 2022-07-18 04:45 PM PDT -BeckettOBrien,2022-07-19T01:44:41Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188503939) at 2022-07-18 06:44 PM PDT -BeckettOBrien,2022-07-19T18:02:56Z,- BeckettOBrien submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1043874054) at 2022-07-19 11:02 AM PDT -BeckettOBrien,2022-07-19T18:10:28Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189401206) at 2022-07-19 11:10 AM PDT -BeckettOBrien,2022-07-19T18:33:52Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1043914355) at 2022-07-19 11:33 AM PDT -BeckettOBrien,2022-07-19T19:47:13Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1043993148) at 2022-07-19 12:47 PM PDT -BeckettOBrien,2022-07-19T21:09:44Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189552467) at 2022-07-19 02:09 PM PDT -BeckettOBrien,2022-07-19T23:08:37Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189636255) at 2022-07-19 04:08 PM PDT -BeckettOBrien,2022-07-20T03:05:07Z,- BeckettOBrien opened issue: [3396](https://github.com/hackforla/website/issues/3396) at 2022-07-19 08:05 PM PDT -BeckettOBrien,2022-07-20T17:00:11Z,- BeckettOBrien commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1190528038) at 2022-07-20 10:00 AM PDT -BeckettOBrien,2022-07-20T17:05:37Z,- BeckettOBrien submitted pull request review: [3394](https://github.com/hackforla/website/pull/3394#pullrequestreview-1045393503) at 2022-07-20 10:05 AM PDT -BeckettOBrien,2022-07-20T17:51:32Z,- BeckettOBrien commented on issue: [2065](https://github.com/hackforla/website/issues/2065#issuecomment-1190579335) at 2022-07-20 10:51 AM PDT -BeckettOBrien,2022-07-20T18:29:40Z,- BeckettOBrien submitted pull request review: [3394](https://github.com/hackforla/website/pull/3394#pullrequestreview-1045506656) at 2022-07-20 11:29 AM PDT -BeckettOBrien,2022-07-20T19:00:29Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1045541233) at 2022-07-20 12:00 PM PDT -BeckettOBrien,2022-07-20T22:05:13Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1190808342) at 2022-07-20 03:05 PM PDT -BeckettOBrien,2022-07-21T20:23:36Z,- BeckettOBrien opened pull request: [3414](https://github.com/hackforla/website/pull/3414) at 2022-07-21 01:23 PM PDT -BeckettOBrien,2022-07-21T20:29:54Z,- BeckettOBrien commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1191903884) at 2022-07-21 01:29 PM PDT -BeckettOBrien,2022-07-22T20:26:43Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1048366525) at 2022-07-22 01:26 PM PDT -BeckettOBrien,2022-07-23T20:11:36Z,- BeckettOBrien commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1193182393) at 2022-07-23 01:11 PM PDT -BeckettOBrien,2022-07-23T23:06:09Z,- BeckettOBrien submitted pull request review: [3422](https://github.com/hackforla/website/pull/3422#pullrequestreview-1048575380) at 2022-07-23 04:06 PM PDT -BeckettOBrien,2022-07-25T17:29:38Z,- BeckettOBrien commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194389201) at 2022-07-25 10:29 AM PDT -BeckettOBrien,2022-07-25T19:38:05Z,- BeckettOBrien submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1049967786) at 2022-07-25 12:38 PM PDT -BeckettOBrien,2022-07-25T19:38:59Z,- BeckettOBrien commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194535671) at 2022-07-25 12:38 PM PDT -BeckettOBrien,2022-07-25T20:14:13Z,- BeckettOBrien commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194572555) at 2022-07-25 01:14 PM PDT -BeckettOBrien,2022-07-25T22:55:57Z,- BeckettOBrien submitted pull request review: [3427](https://github.com/hackforla/website/pull/3427#pullrequestreview-1050168170) at 2022-07-25 03:55 PM PDT -BeckettOBrien,2022-07-26T18:05:41Z,- BeckettOBrien commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195812708) at 2022-07-26 11:05 AM PDT -BeckettOBrien,2022-07-26T18:06:47Z,- BeckettOBrien commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1195813861) at 2022-07-26 11:06 AM PDT -BeckettOBrien,2022-07-26T18:15:19Z,- BeckettOBrien commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1195822474) at 2022-07-26 11:15 AM PDT -BeckettOBrien,2022-07-27T02:28:50Z,- BeckettOBrien submitted pull request review: [3429](https://github.com/hackforla/website/pull/3429#pullrequestreview-1051813471) at 2022-07-26 07:28 PM PDT -BeckettOBrien,2022-07-27T22:45:29Z,- BeckettOBrien commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197453410) at 2022-07-27 03:45 PM PDT -BeckettOBrien,2022-07-27T22:46:53Z,- BeckettOBrien commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197454186) at 2022-07-27 03:46 PM PDT -BeckettOBrien,2022-07-28T18:18:26Z,- BeckettOBrien commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1198486711) at 2022-07-28 11:18 AM PDT -BeckettOBrien,2022-10-04T15:49:34Z,- BeckettOBrien pull request closed w/o merging: [3414](https://github.com/hackforla/website/pull/3414#event-7517885874) at 2022-10-04 08:49 AM PDT -belunatic,7699,SKILLS ISSUE -belunatic,2024-11-05T04:28:06Z,- belunatic opened issue: [7699](https://github.com/hackforla/website/issues/7699) at 2024-11-04 08:28 PM PST -belunatic,2024-11-05T04:41:45Z,- belunatic assigned to issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2456208023) at 2024-11-04 08:41 PM PST -belunatic,2024-11-05T04:52:34Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2456230906) at 2024-11-04 08:52 PM PST -belunatic,2024-11-05T22:14:22Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2458249488) at 2024-11-05 02:14 PM PST -belunatic,2024-11-05T23:29:10Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2458401570) at 2024-11-05 03:29 PM PST -belunatic,2024-11-09T23:26:53Z,- belunatic assigned to issue: [7648](https://github.com/hackforla/website/issues/7648) at 2024-11-09 03:26 PM PST -belunatic,2024-11-10T00:04:00Z,- belunatic opened pull request: [7714](https://github.com/hackforla/website/pull/7714) at 2024-11-09 04:04 PM PST -belunatic,2024-11-12T19:13:49Z,- belunatic commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2471357676) at 2024-11-12 11:13 AM PST -belunatic,2024-11-14T18:35:58Z,- belunatic commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2477147710) at 2024-11-14 10:35 AM PST -belunatic,2024-11-15T17:34:52Z,- belunatic commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2479541216) at 2024-11-15 09:34 AM PST -belunatic,2024-11-15T19:24:32Z,- belunatic pull request merged: [7714](https://github.com/hackforla/website/pull/7714#event-15316660163) at 2024-11-15 11:24 AM PST -belunatic,2024-11-16T22:25:57Z,- belunatic assigned to issue: [7647](https://github.com/hackforla/website/issues/7647#issuecomment-2465101317) at 2024-11-16 02:25 PM PST -belunatic,2024-11-17T00:08:43Z,- belunatic opened pull request: [7723](https://github.com/hackforla/website/pull/7723) at 2024-11-16 04:08 PM PST -belunatic,2024-11-18T02:47:02Z,- belunatic pull request merged: [7723](https://github.com/hackforla/website/pull/7723#event-15327580916) at 2024-11-17 06:47 PM PST -belunatic,2024-11-18T17:56:01Z,- belunatic commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2483739703) at 2024-11-18 09:56 AM PST -belunatic,2024-11-19T23:21:32Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2486955259) at 2024-11-19 03:21 PM PST -belunatic,2024-11-19T23:46:06Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2486995278) at 2024-11-19 03:46 PM PST -belunatic,2024-11-19T23:50:02Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2486999398) at 2024-11-19 03:50 PM PST -belunatic,2024-11-21T18:35:41Z,- belunatic commented on pull request: [7744](https://github.com/hackforla/website/pull/7744#issuecomment-2491987704) at 2024-11-21 10:35 AM PST -belunatic,2024-11-21T19:06:29Z,- belunatic submitted pull request review: [7744](https://github.com/hackforla/website/pull/7744#pullrequestreview-2452394892) at 2024-11-21 11:06 AM PST -belunatic,2024-11-21T19:10:08Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2492052064) at 2024-11-21 11:10 AM PST -belunatic,2024-11-21T19:26:03Z,- belunatic commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2492081406) at 2024-11-21 11:26 AM PST -belunatic,2024-11-21T19:33:30Z,- belunatic submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2452449171) at 2024-11-21 11:33 AM PST -belunatic,2024-11-21T19:37:11Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2492102955) at 2024-11-21 11:37 AM PST -belunatic,2024-11-21T19:41:25Z,- belunatic commented on pull request: [7733](https://github.com/hackforla/website/pull/7733#issuecomment-2492111100) at 2024-11-21 11:41 AM PST -belunatic,2024-11-21T19:50:12Z,- belunatic submitted pull request review: [7733](https://github.com/hackforla/website/pull/7733#pullrequestreview-2452500383) at 2024-11-21 11:50 AM PST -belunatic,2024-11-21T19:52:06Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2492133422) at 2024-11-21 11:52 AM PST -belunatic,2024-11-25T17:23:29Z,- belunatic commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2498612770) at 2024-11-25 09:23 AM PST -belunatic,2024-11-25T17:33:55Z,- belunatic submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2459128642) at 2024-11-25 09:33 AM PST -belunatic,2024-11-25T17:35:25Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2498639425) at 2024-11-25 09:35 AM PST -belunatic,2024-11-27T18:14:19Z,- belunatic commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504529612) at 2024-11-27 10:14 AM PST -belunatic,2024-11-27T18:19:27Z,- belunatic submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465718509) at 2024-11-27 10:19 AM PST -belunatic,2024-11-27T18:23:30Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2504543549) at 2024-11-27 10:23 AM PST -belunatic,2024-12-02T17:40:38Z,- belunatic assigned to issue: [7789](https://github.com/hackforla/website/issues/7789) at 2024-12-02 09:40 AM PST -belunatic,2024-12-02T17:40:56Z,- belunatic unassigned from issue: [7789](https://github.com/hackforla/website/issues/7789) at 2024-12-02 09:40 AM PST -belunatic,2024-12-02T17:43:14Z,- belunatic assigned to issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455986278) at 2024-12-02 09:43 AM PST -belunatic,2024-12-02T17:44:22Z,- belunatic commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2512265615) at 2024-12-02 09:44 AM PST -belunatic,2024-12-04T18:08:13Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2518177480) at 2024-12-04 10:08 AM PST -belunatic,2024-12-04T19:15:47Z,- belunatic opened pull request: [7793](https://github.com/hackforla/website/pull/7793) at 2024-12-04 11:15 AM PST -belunatic,2024-12-09T18:12:45Z,- belunatic commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2528978082) at 2024-12-09 10:12 AM PST -belunatic,2024-12-13T15:29:19Z,- belunatic pull request merged: [7793](https://github.com/hackforla/website/pull/7793#event-15650280306) at 2024-12-13 07:29 AM PST -belunatic,2024-12-13T19:33:27Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2542127345) at 2024-12-13 11:33 AM PST -belunatic,2024-12-14T20:19:53Z,- belunatic commented on pull request: [7803](https://github.com/hackforla/website/pull/7803#issuecomment-2543333323) at 2024-12-14 12:19 PM PST -belunatic,2024-12-17T20:21:11Z,- belunatic submitted pull request review: [7803](https://github.com/hackforla/website/pull/7803#pullrequestreview-2510021621) at 2024-12-17 12:21 PM PST -belunatic,2024-12-17T20:23:51Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2549542856) at 2024-12-17 12:23 PM PST -belunatic,2025-01-10T00:09:01Z,- belunatic assigned to issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2573817244) at 2025-01-09 04:09 PM PST -belunatic,2025-01-10T00:09:24Z,- belunatic unassigned from issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2581482448) at 2025-01-09 04:09 PM PST -belunatic,2025-01-10T00:32:36Z,- belunatic submitted pull request review: [7816](https://github.com/hackforla/website/pull/7816#pullrequestreview-2541236506) at 2025-01-09 04:32 PM PST -belunatic,2025-01-10T00:34:18Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2581507339) at 2025-01-09 04:34 PM PST -belunatic,2025-01-17T03:56:48Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2597381719) at 2025-01-16 07:56 PM PST -belunatic,2025-01-22T20:40:26Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2608219719) at 2025-01-22 12:40 PM PST -belunatic,2025-01-22T21:02:44Z,- belunatic assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2472346947) at 2025-01-22 01:02 PM PST -belunatic,2025-01-22T21:38:55Z,- belunatic opened issue: [7844](https://github.com/hackforla/website/issues/7844) at 2025-01-22 01:38 PM PST -belunatic,2025-01-22T22:49:24Z,- belunatic commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2608426695) at 2025-01-22 02:49 PM PST -belunatic,2025-01-24T20:55:43Z,- belunatic opened issue: [7849](https://github.com/hackforla/website/issues/7849) at 2025-01-24 12:55 PM PST -belunatic,2025-01-24T21:01:30Z,- belunatic opened issue: [7850](https://github.com/hackforla/website/issues/7850) at 2025-01-24 01:01 PM PST -belunatic,2025-01-29T03:20:31Z,- belunatic commented on pull request: [7852](https://github.com/hackforla/website/pull/7852#issuecomment-2620600113) at 2025-01-28 07:20 PM PST -belunatic,2025-01-30T00:09:00Z,- belunatic submitted pull request review: [7852](https://github.com/hackforla/website/pull/7852#pullrequestreview-2582638482) at 2025-01-29 04:09 PM PST -belunatic,2025-02-03T19:51:54Z,- belunatic opened issue: [7875](https://github.com/hackforla/website/issues/7875) at 2025-02-03 11:51 AM PST -belunatic,2025-02-03T20:01:24Z,- belunatic opened issue: [7876](https://github.com/hackforla/website/issues/7876) at 2025-02-03 12:01 PM PST -belunatic,2025-02-03T20:05:38Z,- belunatic opened issue: [7877](https://github.com/hackforla/website/issues/7877) at 2025-02-03 12:05 PM PST -belunatic,2025-02-03T20:09:12Z,- belunatic opened issue: [7878](https://github.com/hackforla/website/issues/7878) at 2025-02-03 12:09 PM PST -belunatic,2025-02-03T20:20:57Z,- belunatic opened issue: [7879](https://github.com/hackforla/website/issues/7879) at 2025-02-03 12:20 PM PST -belunatic,2025-02-03T20:22:16Z,- belunatic commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2631993562) at 2025-02-03 12:22 PM PST -belunatic,2025-02-03T20:35:13Z,- belunatic commented on pull request: [7871](https://github.com/hackforla/website/pull/7871#issuecomment-2632017956) at 2025-02-03 12:35 PM PST -belunatic,2025-02-04T01:23:33Z,- belunatic assigned to issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2632548239) at 2025-02-03 05:23 PM PST -belunatic,2025-02-05T00:35:56Z,- belunatic submitted pull request review: [7871](https://github.com/hackforla/website/pull/7871#pullrequestreview-2594378370) at 2025-02-04 04:35 PM PST -belunatic,2025-02-05T00:37:46Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2635447616) at 2025-02-04 04:37 PM PST -belunatic,2025-02-05T01:06:26Z,- belunatic commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2635477007) at 2025-02-04 05:06 PM PST -belunatic,2025-02-05T22:08:12Z,- belunatic assigned to issue: [7690](https://github.com/hackforla/website/issues/7690#issuecomment-2455991864) at 2025-02-05 02:08 PM PST -belunatic,2025-02-05T23:45:43Z,- belunatic commented on issue: [7690](https://github.com/hackforla/website/issues/7690#issuecomment-2638286570) at 2025-02-05 03:45 PM PST -belunatic,2025-02-05T23:49:45Z,- belunatic commented on issue: [7690](https://github.com/hackforla/website/issues/7690#issuecomment-2638291092) at 2025-02-05 03:49 PM PST -belunatic,2025-02-09T19:37:02Z,- belunatic unassigned from issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2635477007) at 2025-02-09 11:37 AM PST -belunatic,2025-02-20T18:12:41Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2672299405) at 2025-02-20 10:12 AM PST -belunatic,2025-02-26T22:58:14Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2686397038) at 2025-02-26 02:58 PM PST -belunatic,2025-02-26T23:28:45Z,- belunatic submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2646189448) at 2025-02-26 03:28 PM PST -belunatic,2025-02-26T23:31:07Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2686439683) at 2025-02-26 03:31 PM PST -belunatic,2025-02-26T23:46:43Z,- belunatic submitted pull request review: [7945](https://github.com/hackforla/website/pull/7945#pullrequestreview-2646208650) at 2025-02-26 03:46 PM PST -belunatic,2025-02-26T23:48:37Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2686460758) at 2025-02-26 03:48 PM PST -belunatic,2025-03-09T22:41:31Z,- belunatic commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2709109820) at 2025-03-09 03:41 PM PDT -belunatic,2025-03-11T18:52:48Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2715402957) at 2025-03-11 11:52 AM PDT -belunatic,2025-03-13T18:59:51Z,- belunatic submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2683091642) at 2025-03-13 11:59 AM PDT -belunatic,2025-03-15T19:11:57Z,- belunatic submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2688244711) at 2025-03-15 12:11 PM PDT -belunatic,2025-03-16T16:14:17Z,- belunatic submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2688737767) at 2025-03-16 09:14 AM PDT -belunatic,2025-03-16T16:15:47Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2727523475) at 2025-03-16 09:15 AM PDT -belunatic,2025-03-24T22:17:19Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2749524279) at 2025-03-24 03:17 PM PDT -belunatic,2025-04-02T23:00:29Z,- belunatic assigned to issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2767534271) at 2025-04-02 04:00 PM PDT -belunatic,2025-04-02T23:00:42Z,- belunatic unassigned from issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2773915987) at 2025-04-02 04:00 PM PDT -belunatic,2025-04-02T23:02:20Z,- belunatic commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2773917813) at 2025-04-02 04:02 PM PDT -belunatic,2025-04-03T15:25:29Z,- belunatic assigned to issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2773917813) at 2025-04-03 08:25 AM PDT -belunatic,2025-04-04T00:36:16Z,- belunatic opened issue: [8042](https://github.com/hackforla/website/issues/8042) at 2025-04-03 05:36 PM PDT -belunatic,2025-04-04T00:45:48Z,- belunatic commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2777295913) at 2025-04-03 05:45 PM PDT -belunatic,2025-04-07T18:49:31Z,- belunatic commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2784257570) at 2025-04-07 11:49 AM PDT -belunatic,2025-04-17T21:25:44Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2814055599) at 2025-04-17 02:25 PM PDT -belunatic,2025-04-17T21:26:53Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2814057093) at 2025-04-17 02:26 PM PDT -belunatic,2025-05-08T18:58:00Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2864001036) at 2025-05-08 11:58 AM PDT -belunatic,2025-05-14T00:53:23Z,- belunatic commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2878294590) at 2025-05-13 05:53 PM PDT -belunatic,2025-06-17T03:09:58Z,- belunatic assigned to issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2889270160) at 2025-06-16 08:09 PM PDT -belunatic,2025-06-17T03:13:10Z,- belunatic commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2978784447) at 2025-06-16 08:13 PM PDT -belunatic,2025-06-26T22:34:21Z,- belunatic commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-3010362689) at 2025-06-26 03:34 PM PDT -belunatic,2025-07-11T17:17:14Z,- belunatic commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-3063118521) at 2025-07-11 10:17 AM PDT -benpinhassi,2023-09-09T08:20:43Z,- benpinhassi assigned to issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1701713696) at 2023-09-09 01:20 AM PDT -benpinhassi,2023-09-09T11:11:13Z,- benpinhassi commented on issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1712486200) at 2023-09-09 04:11 AM PDT -benpinhassi,2023-09-09T14:43:36Z,- benpinhassi opened pull request: [5468](https://github.com/hackforla/website/pull/5468) at 2023-09-09 07:43 AM PDT -benpinhassi,2023-09-09T16:30:01Z,- benpinhassi commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1712549532) at 2023-09-09 09:30 AM PDT -benpinhassi,2023-09-11T05:54:25Z,- benpinhassi commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1713212965) at 2023-09-10 10:54 PM PDT -benpinhassi,2023-09-12T05:14:53Z,- benpinhassi commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1714985062) at 2023-09-11 10:14 PM PDT -benpinhassi,2023-09-13T05:20:42Z,- benpinhassi pull request merged: [5468](https://github.com/hackforla/website/pull/5468#event-10354938729) at 2023-09-12 10:20 PM PDT -benpinhassi,2023-09-13T20:48:26Z,- benpinhassi commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1718297508) at 2023-09-13 01:48 PM PDT -benpinhassi,2023-09-15T02:22:00Z,- benpinhassi assigned to issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1710731381) at 2023-09-14 07:22 PM PDT -benpinhassi,2023-09-15T02:26:58Z,- benpinhassi commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1720398090) at 2023-09-14 07:26 PM PDT -benpinhassi,2023-09-15T03:24:23Z,- benpinhassi opened pull request: [5537](https://github.com/hackforla/website/pull/5537) at 2023-09-14 08:24 PM PDT -benpinhassi,2023-09-18T19:47:58Z,- benpinhassi pull request merged: [5537](https://github.com/hackforla/website/pull/5537#event-10402269232) at 2023-09-18 12:47 PM PDT -benpinhassi,2023-09-18T20:52:43Z,- benpinhassi commented on pull request: [5537](https://github.com/hackforla/website/pull/5537#issuecomment-1724376292) at 2023-09-18 01:52 PM PDT -benrempel,2021-06-17T08:56:49Z,- benrempel assigned to issue: [1576](https://github.com/hackforla/website/issues/1576) at 2021-06-17 01:56 AM PDT -benrempel,2021-06-17T22:05:33Z,- benrempel commented on issue: [1576](https://github.com/hackforla/website/issues/1576#issuecomment-863593109) at 2021-06-17 03:05 PM PDT -benrempel,2021-06-18T17:13:47Z,- benrempel commented on issue: [1576](https://github.com/hackforla/website/issues/1576#issuecomment-864174106) at 2021-06-18 10:13 AM PDT -benrempel,2021-06-18T21:51:48Z,- benrempel opened pull request: [1783](https://github.com/hackforla/website/pull/1783) at 2021-06-18 02:51 PM PDT -benrempel,2021-06-22T14:25:28Z,- benrempel pull request merged: [1783](https://github.com/hackforla/website/pull/1783#event-4923134118) at 2021-06-22 07:25 AM PDT -benrempel,2021-08-13T23:52:08Z,- benrempel assigned to issue: [2044](https://github.com/hackforla/website/issues/2044) at 2021-08-13 04:52 PM PDT -benrempel,2021-08-15T20:34:42Z,- benrempel opened pull request: [2120](https://github.com/hackforla/website/pull/2120) at 2021-08-15 01:34 PM PDT -benrempel,2021-08-15T21:24:42Z,- benrempel assigned to issue: [2109](https://github.com/hackforla/website/issues/2109#issuecomment-898632244) at 2021-08-15 02:24 PM PDT -benrempel,2021-08-15T23:52:21Z,- benrempel opened pull request: [2121](https://github.com/hackforla/website/pull/2121) at 2021-08-15 04:52 PM PDT -benrempel,2021-08-15T23:59:59Z,- benrempel commented on pull request: [2121](https://github.com/hackforla/website/pull/2121#issuecomment-899130862) at 2021-08-15 04:59 PM PDT -benrempel,2021-08-19T02:56:07Z,- benrempel pull request merged: [2120](https://github.com/hackforla/website/pull/2120#event-5178080018) at 2021-08-18 07:56 PM PDT -benrempel,2021-08-20T00:32:43Z,- benrempel commented on pull request: [2121](https://github.com/hackforla/website/pull/2121#issuecomment-902342321) at 2021-08-19 05:32 PM PDT -benrempel,2021-08-22T00:59:35Z,- benrempel pull request merged: [2121](https://github.com/hackforla/website/pull/2121#event-5190324953) at 2021-08-21 05:59 PM PDT -benrempel,2021-09-07T21:27:23Z,- benrempel assigned to issue: [2193](https://github.com/hackforla/website/issues/2193#issuecomment-907546801) at 2021-09-07 02:27 PM PDT -benrempel,2021-09-07T22:13:08Z,- benrempel commented on issue: [2193](https://github.com/hackforla/website/issues/2193#issuecomment-914662281) at 2021-09-07 03:13 PM PDT -benrempel,2021-09-10T15:36:56Z,- benrempel commented on issue: [2193](https://github.com/hackforla/website/issues/2193#issuecomment-916997839) at 2021-09-10 08:36 AM PDT -benrempel,2021-09-11T00:06:22Z,- benrempel commented on issue: [2193](https://github.com/hackforla/website/issues/2193#issuecomment-917297876) at 2021-09-10 05:06 PM PDT -benrempel,2021-09-11T17:05:04Z,- benrempel opened pull request: [2247](https://github.com/hackforla/website/pull/2247) at 2021-09-11 10:05 AM PDT -benrempel,2021-09-11T19:17:02Z,- benrempel pull request merged: [2247](https://github.com/hackforla/website/pull/2247#event-5287872211) at 2021-09-11 12:17 PM PDT -bexux,7206,SKILLS ISSUE -bexux,2024-08-06T03:11:06Z,- bexux opened issue: [7206](https://github.com/hackforla/website/issues/7206) at 2024-08-05 08:11 PM PDT -bexux,2024-08-06T03:11:16Z,- bexux assigned to issue: [7206](https://github.com/hackforla/website/issues/7206) at 2024-08-05 08:11 PM PDT -bexux,2024-08-07T02:14:24Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2272486811) at 2024-08-06 07:14 PM PDT -bexux,2024-08-07T02:18:52Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2272490246) at 2024-08-06 07:18 PM PDT -bexux,2024-08-10T20:54:29Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2282275251) at 2024-08-10 01:54 PM PDT -bexux,2024-08-10T20:59:26Z,- bexux assigned to issue: [7184](https://github.com/hackforla/website/issues/7184) at 2024-08-10 01:59 PM PDT -bexux,2024-08-10T21:20:46Z,- bexux commented on issue: [7184](https://github.com/hackforla/website/issues/7184#issuecomment-2282280239) at 2024-08-10 02:20 PM PDT -bexux,2024-08-10T22:17:25Z,- bexux opened pull request: [7263](https://github.com/hackforla/website/pull/7263) at 2024-08-10 03:17 PM PDT -bexux,2024-08-11T21:03:24Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2282889022) at 2024-08-11 02:03 PM PDT -bexux,2024-08-15T15:03:26Z,- bexux pull request merged: [7263](https://github.com/hackforla/website/pull/7263#event-13897317833) at 2024-08-15 08:03 AM PDT -bexux,2024-08-16T10:54:39Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2293289577) at 2024-08-16 03:54 AM PDT -bexux,2024-08-16T10:56:55Z,- bexux assigned to issue: [7247](https://github.com/hackforla/website/issues/7247) at 2024-08-16 03:56 AM PDT -bexux,2024-08-16T11:09:28Z,- bexux commented on issue: [7247](https://github.com/hackforla/website/issues/7247#issuecomment-2293308871) at 2024-08-16 04:09 AM PDT -bexux,2024-08-16T11:35:20Z,- bexux opened pull request: [7302](https://github.com/hackforla/website/pull/7302) at 2024-08-16 04:35 AM PDT -bexux,2024-08-16T11:49:08Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2293362983) at 2024-08-16 04:49 AM PDT -bexux,2024-08-21T02:29:18Z,- bexux pull request merged: [7302](https://github.com/hackforla/website/pull/7302#event-13953263132) at 2024-08-20 07:29 PM PDT -bexux,2024-08-22T21:48:17Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2305804607) at 2024-08-22 02:48 PM PDT -bexux,2024-08-23T21:06:11Z,- bexux commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2307810781) at 2024-08-23 02:06 PM PDT -bexux,2024-08-23T21:35:45Z,- bexux submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2258139806) at 2024-08-23 02:35 PM PDT -bexux,2024-08-23T21:39:45Z,- bexux submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2258143294) at 2024-08-23 02:39 PM PDT -bexux,2024-08-23T22:48:18Z,- bexux submitted pull request review: [7342](https://github.com/hackforla/website/pull/7342#pullrequestreview-2258194378) at 2024-08-23 03:48 PM PDT -bexux,2024-08-23T22:58:23Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2307904653) at 2024-08-23 03:58 PM PDT -bexux,2024-08-23T23:08:06Z,- bexux commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2307910575) at 2024-08-23 04:08 PM PDT -bexux,2024-08-25T00:10:50Z,- bexux commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308583867) at 2024-08-24 05:10 PM PDT -bexux,2024-08-25T00:11:43Z,- bexux submitted pull request review: [7347](https://github.com/hackforla/website/pull/7347#pullrequestreview-2259030710) at 2024-08-24 05:11 PM PDT -bexux,2024-08-25T00:13:17Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2308584591) at 2024-08-24 05:13 PM PDT -bexux,2024-08-25T00:15:16Z,- bexux commented on pull request: [7348](https://github.com/hackforla/website/pull/7348#issuecomment-2308585124) at 2024-08-24 05:15 PM PDT -bexux,2024-08-25T00:20:01Z,- bexux submitted pull request review: [7348](https://github.com/hackforla/website/pull/7348#pullrequestreview-2259032060) at 2024-08-24 05:20 PM PDT -bexux,2024-08-25T00:20:49Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2308586854) at 2024-08-24 05:20 PM PDT -bexux,2024-08-25T00:28:20Z,- bexux commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2308589091) at 2024-08-24 05:28 PM PDT -bexux,2024-08-26T15:08:58Z,- bexux submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2260937965) at 2024-08-26 08:08 AM PDT -bexux,2024-08-26T15:10:53Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2310452292) at 2024-08-26 08:10 AM PDT -bexux,2024-08-26T15:13:00Z,- bexux submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2260947315) at 2024-08-26 08:13 AM PDT -bexux,2024-08-26T15:13:50Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2310458385) at 2024-08-26 08:13 AM PDT -bexux,2024-08-29T00:04:24Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2316458756) at 2024-08-28 05:04 PM PDT -bexux,2024-08-29T15:18:37Z,- bexux assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2314328463) at 2024-08-29 08:18 AM PDT -bexux,2024-08-29T15:20:10Z,- bexux commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318083392) at 2024-08-29 08:20 AM PDT -bexux,2024-08-29T15:26:25Z,- bexux commented on pull request: [7364](https://github.com/hackforla/website/pull/7364#issuecomment-2318143647) at 2024-08-29 08:26 AM PDT -bexux,2024-08-29T15:27:16Z,- bexux submitted pull request review: [7364](https://github.com/hackforla/website/pull/7364#pullrequestreview-2269208916) at 2024-08-29 08:27 AM PDT -bexux,2024-08-29T17:39:37Z,- bexux unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318083392) at 2024-08-29 10:39 AM PDT -bexux,2024-09-07T17:51:57Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2336264473) at 2024-09-07 10:51 AM PDT -bexux,2024-09-07T17:57:38Z,- bexux submitted pull request review: [7408](https://github.com/hackforla/website/pull/7408#pullrequestreview-2288267454) at 2024-09-07 10:57 AM PDT -bexux,2024-09-07T18:00:42Z,- bexux submitted pull request review: [7406](https://github.com/hackforla/website/pull/7406#pullrequestreview-2288277881) at 2024-09-07 11:00 AM PDT -bexux,2024-09-12T00:59:19Z,- bexux commented on pull request: [7437](https://github.com/hackforla/website/pull/7437#issuecomment-2345049242) at 2024-09-11 05:59 PM PDT -bexux,2024-09-12T02:46:04Z,- bexux submitted pull request review: [7437](https://github.com/hackforla/website/pull/7437#pullrequestreview-2299113109) at 2024-09-11 07:46 PM PDT -bexux,2024-09-13T02:18:57Z,- bexux assigned to issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2300157054) at 2024-09-12 07:18 PM PDT -bexux,2024-09-13T02:20:20Z,- bexux commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2347913025) at 2024-09-12 07:20 PM PDT -bexux,2024-09-14T16:48:27Z,- bexux assigned to issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2336956265) at 2024-09-14 09:48 AM PDT -bexux,2024-09-14T16:48:44Z,- bexux unassigned from issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2351057207) at 2024-09-14 09:48 AM PDT -bexux,2024-09-14T22:01:55Z,- bexux commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2351173244) at 2024-09-14 03:01 PM PDT -bexux,2024-09-15T22:54:53Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2351821578) at 2024-09-15 03:54 PM PDT -bexux,2024-09-15T22:56:57Z,- bexux assigned to issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2336954430) at 2024-09-15 03:56 PM PDT -bexux,2024-09-15T22:57:44Z,- bexux commented on issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2351822382) at 2024-09-15 03:57 PM PDT -bexux,2024-09-15T23:44:38Z,- bexux opened pull request: [7462](https://github.com/hackforla/website/pull/7462) at 2024-09-15 04:44 PM PDT -bexux,2024-09-18T19:14:13Z,- bexux pull request merged: [7462](https://github.com/hackforla/website/pull/7462#event-14312516561) at 2024-09-18 12:14 PM PDT -bexux,2024-09-26T15:11:07Z,- bexux assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2362570158) at 2024-09-26 08:11 AM PDT -bexux,2024-09-26T15:11:39Z,- bexux unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2362570158) at 2024-09-26 08:11 AM PDT -bexux,2024-10-03T18:24:07Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2392050285) at 2024-10-03 11:24 AM PDT -bexux,2024-10-10T17:13:57Z,- bexux assigned to issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2350756398) at 2024-10-10 10:13 AM PDT -bexux,2024-10-10T17:15:05Z,- bexux commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405650717) at 2024-10-10 10:15 AM PDT -bexux,2024-10-10T19:27:55Z,- bexux opened issue: [7581](https://github.com/hackforla/website/issues/7581) at 2024-10-10 12:27 PM PDT -bexux,2024-10-10T19:31:39Z,- bexux commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405885108) at 2024-10-10 12:31 PM PDT -bexux,2024-10-10T19:39:30Z,- bexux opened issue: [7582](https://github.com/hackforla/website/issues/7582) at 2024-10-10 12:39 PM PDT -bexux,2024-10-10T19:52:27Z,- bexux opened issue: [7583](https://github.com/hackforla/website/issues/7583) at 2024-10-10 12:52 PM PDT -bexux,2024-10-10T19:53:49Z,- bexux commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405919668) at 2024-10-10 12:53 PM PDT -bexux,2024-10-10T19:57:56Z,- bexux opened issue: [7584](https://github.com/hackforla/website/issues/7584) at 2024-10-10 12:57 PM PDT -bexux,2024-10-10T20:19:03Z,- bexux opened issue: [7585](https://github.com/hackforla/website/issues/7585) at 2024-10-10 01:19 PM PDT -bexux,2024-10-11T18:50:39Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2407959518) at 2024-10-11 11:50 AM PDT -bexux,2024-10-11T22:19:32Z,- bexux commented on issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2408189434) at 2024-10-11 03:19 PM PDT -bexux,2024-10-18T16:23:04Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2422829957) at 2024-10-18 09:23 AM PDT -bexux,2024-11-10T20:01:02Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2466884278) at 2024-11-10 12:01 PM PST -bexux,2024-11-10T20:10:38Z,- bexux assigned to issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2406688062) at 2024-11-10 12:10 PM PST -bexux,2024-11-10T20:11:38Z,- bexux commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2466895386) at 2024-11-10 12:11 PM PST -bexux,2024-11-10T20:56:11Z,- bexux opened pull request: [7715](https://github.com/hackforla/website/pull/7715) at 2024-11-10 12:56 PM PST -bexux,2024-11-10T21:01:45Z,- bexux commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2466916511) at 2024-11-10 01:01 PM PST -bexux,2024-11-15T01:15:16Z,- bexux pull request merged: [7715](https://github.com/hackforla/website/pull/7715#event-15306081372) at 2024-11-14 05:15 PM PST -bexux,2024-11-20T16:44:58Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2489086146) at 2024-11-20 08:44 AM PST -bfirestone23,2021-07-08T05:00:10Z,- bfirestone23 assigned to issue: [1524](https://github.com/hackforla/website/issues/1524) at 2021-07-07 10:00 PM PDT -bfirestone23,2021-07-08T05:25:07Z,- bfirestone23 opened pull request: [1903](https://github.com/hackforla/website/pull/1903) at 2021-07-07 10:25 PM PDT -bfirestone23,2021-07-09T02:15:06Z,- bfirestone23 pull request merged: [1903](https://github.com/hackforla/website/pull/1903#event-4997971022) at 2021-07-08 07:15 PM PDT -bfirestone23,2021-07-09T02:24:32Z,- bfirestone23 assigned to issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-876672507) at 2021-07-08 07:24 PM PDT -bfirestone23,2021-07-09T22:30:52Z,- bfirestone23 commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-877489755) at 2021-07-09 03:30 PM PDT -bfirestone23,2021-07-10T21:51:27Z,- bfirestone23 opened pull request: [1915](https://github.com/hackforla/website/pull/1915) at 2021-07-10 02:51 PM PDT -bfirestone23,2021-07-12T01:24:50Z,- bfirestone23 pull request merged: [1915](https://github.com/hackforla/website/pull/1915#event-5004782850) at 2021-07-11 06:24 PM PDT -bfirestone23,2021-07-13T01:38:41Z,- bfirestone23 assigned to issue: [1910](https://github.com/hackforla/website/issues/1910) at 2021-07-12 06:38 PM PDT -bfirestone23,2021-07-13T02:59:37Z,- bfirestone23 opened issue: [1934](https://github.com/hackforla/website/issues/1934) at 2021-07-12 07:59 PM PDT -bfirestone23,2021-07-13T04:53:59Z,- bfirestone23 opened pull request: [1935](https://github.com/hackforla/website/pull/1935) at 2021-07-12 09:53 PM PDT -bfirestone23,2021-07-13T05:44:20Z,- bfirestone23 pull request merged: [1935](https://github.com/hackforla/website/pull/1935#event-5011335656) at 2021-07-12 10:44 PM PDT -Bhavyabhardwaj,2024-07-15T06:28:51Z,- Bhavyabhardwaj opened pull request: [7114](https://github.com/hackforla/website/pull/7114) at 2024-07-14 11:28 PM PDT -Bhavyabhardwaj,2024-07-15T06:38:08Z,- Bhavyabhardwaj pull request closed w/o merging: [7114](https://github.com/hackforla/website/pull/7114#event-13500794972) at 2024-07-14 11:38 PM PDT -Bhavyabhardwaj,2024-07-15T06:41:57Z,- Bhavyabhardwaj opened pull request: [7116](https://github.com/hackforla/website/pull/7116) at 2024-07-14 11:41 PM PDT -Bhavyabhardwaj,2024-07-15T06:49:46Z,- Bhavyabhardwaj pull request closed w/o merging: [7116](https://github.com/hackforla/website/pull/7116#event-13500895196) at 2024-07-14 11:49 PM PDT -bilalshaikh292,2023-07-27T12:06:44Z,- bilalshaikh292 commented on issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1653483672) at 2023-07-27 05:06 AM PDT -bilalshaikh292,2023-07-27T19:04:28Z,- bilalshaikh292 commented on issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1654258351) at 2023-07-27 12:04 PM PDT -bishrfaisal,2022-09-02T23:04:27Z,- bishrfaisal commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1235964732) at 2022-09-02 04:04 PM PDT -bishrfaisal,2022-09-02T23:26:49Z,- bishrfaisal commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1235975251) at 2022-09-02 04:26 PM PDT -bishrfaisal,2022-09-02T23:28:49Z,- bishrfaisal commented on issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1235976252) at 2022-09-02 04:28 PM PDT -bishrfaisal,2022-09-02T23:39:49Z,- bishrfaisal commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1235980602) at 2022-09-02 04:39 PM PDT -bishrfaisal,2022-09-02T23:48:18Z,- bishrfaisal commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1235983903) at 2022-09-02 04:48 PM PDT -bishrfaisal,2022-09-08T21:31:24Z,- bishrfaisal commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1241254607) at 2022-09-08 02:31 PM PDT -bishrfaisal,2022-09-08T21:31:24Z,- bishrfaisal closed issue as completed: [3406](https://github.com/hackforla/website/issues/3406#event-7351653964) at 2022-09-08 02:31 PM PDT -bishrfaisal,2022-09-08T21:31:33Z,- bishrfaisal reopened issue: [3406](https://github.com/hackforla/website/issues/3406#event-7351653964) at 2022-09-08 02:31 PM PDT -bishrfaisal,2022-09-08T21:43:48Z,- bishrfaisal opened issue: [3530](https://github.com/hackforla/website/issues/3530) at 2022-09-08 02:43 PM PDT -bishrfaisal,2022-09-08T21:53:22Z,- bishrfaisal assigned to issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1241267822) at 2022-09-08 02:53 PM PDT -bishrfaisal,2022-09-10T16:56:49Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242767148) at 2022-09-10 09:56 AM PDT -bishrfaisal,2022-09-10T17:13:34Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242770010) at 2022-09-10 10:13 AM PDT -bishrfaisal,2022-09-10T17:16:59Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242770591) at 2022-09-10 10:16 AM PDT -bishrfaisal,2022-09-10T17:20:56Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242771448) at 2022-09-10 10:20 AM PDT -bishrfaisal,2022-09-10T17:25:12Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242772162) at 2022-09-10 10:25 AM PDT -bishrfaisal,2022-09-10T17:28:32Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242772690) at 2022-09-10 10:28 AM PDT -bishrfaisal,2022-09-18T17:09:34Z,- bishrfaisal assigned to issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-09-18 10:09 AM PDT -bishrfaisal,2022-09-18T17:10:00Z,- bishrfaisal unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-09-18 10:10 AM PDT -bishrfaisal,2022-09-28T16:33:50Z,- bishrfaisal commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1261164143) at 2022-09-28 09:33 AM PDT -bishrfaisal,2022-10-02T16:32:36Z,- bishrfaisal commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1264682773) at 2022-10-02 09:32 AM PDT -bishrfaisal,2022-10-09T13:05:09Z,- bishrfaisal commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1272538399) at 2022-10-09 06:05 AM PDT -bishrfaisal,2022-10-09T13:17:07Z,- bishrfaisal commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1272540796) at 2022-10-09 06:17 AM PDT -bishrfaisal,2022-10-12T16:53:09Z,- bishrfaisal assigned to issue: [2612](https://github.com/hackforla/website/issues/2612#event-6972311840) at 2022-10-12 09:53 AM PDT -bishrfaisal,2022-10-12T21:50:16Z,- bishrfaisal commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1276772100) at 2022-10-12 02:50 PM PDT -bishrfaisal,2022-10-17T16:11:35Z,- bishrfaisal commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1281117570) at 2022-10-17 09:11 AM PDT -bishrfaisal,2022-10-17T16:17:16Z,- bishrfaisal commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1281125204) at 2022-10-17 09:17 AM PDT -bishrfaisal,2022-10-17T16:26:23Z,- bishrfaisal commented on issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1281136714) at 2022-10-17 09:26 AM PDT -bishrfaisal,2022-10-17T16:37:32Z,- bishrfaisal commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1281150566) at 2022-10-17 09:37 AM PDT -bishrfaisal,2022-10-17T16:44:10Z,- bishrfaisal commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1281157646) at 2022-10-17 09:44 AM PDT -bishrfaisal,2022-10-23T16:08:16Z,- bishrfaisal commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1288145343) at 2022-10-23 09:08 AM PDT -bishrfaisal,2022-10-23T16:15:31Z,- bishrfaisal commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1288146690) at 2022-10-23 09:15 AM PDT -bishrfaisal,2022-10-23T16:27:34Z,- bishrfaisal commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1288149085) at 2022-10-23 09:27 AM PDT -bishrfaisal,2022-10-23T19:06:39Z,- bishrfaisal assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-10-23 12:06 PM PDT -bishrfaisal,2022-10-24T16:49:57Z,- bishrfaisal commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1289316194) at 2022-10-24 09:49 AM PDT -bishrfaisal,2022-10-26T19:58:43Z,- bishrfaisal commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1292587475) at 2022-10-26 12:58 PM PDT -bishrfaisal,2022-10-30T16:31:25Z,- bishrfaisal commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1296296857) at 2022-10-30 09:31 AM PDT -bishrfaisal,2022-11-06T17:50:09Z,- bishrfaisal commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304855755) at 2022-11-06 09:50 AM PST -bishrfaisal,2022-11-06T19:33:04Z,- bishrfaisal commented on issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-1304875802) at 2022-11-06 11:33 AM PST -bishrfaisal,2022-11-06T19:33:23Z,- bishrfaisal closed issue by PR 3480: [2200](https://github.com/hackforla/website/issues/2200#event-7747799590) at 2022-11-06 11:33 AM PST -bishrfaisal,2022-11-07T22:13:51Z,- bishrfaisal commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1306296320) at 2022-11-07 02:13 PM PST -bishrfaisal,2022-11-09T18:08:18Z,- bishrfaisal assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1304856941) at 2022-11-09 10:08 AM PST -bishrfaisal,2022-11-13T17:47:28Z,- bishrfaisal unassigned from issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-11-13 09:47 AM PST -bishrfaisal,2022-11-14T17:05:43Z,- bishrfaisal commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1314089333) at 2022-11-14 09:05 AM PST -bishrfaisal,2022-11-14T17:06:19Z,- bishrfaisal commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1314091588) at 2022-11-14 09:06 AM PST -bishrfaisal,2022-11-14T17:17:15Z,- bishrfaisal commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1314109136) at 2022-11-14 09:17 AM PST -bishrfaisal,2022-11-14T17:38:27Z,- bishrfaisal commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1314134705) at 2022-11-14 09:38 AM PST -bishrfaisal,2022-11-14T17:57:07Z,- bishrfaisal commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-1314156645) at 2022-11-14 09:57 AM PST -bishrfaisal,2022-11-19T23:43:19Z,- bishrfaisal opened issue: [3732](https://github.com/hackforla/website/issues/3732) at 2022-11-19 03:43 PM PST -bishrfaisal,2022-11-30T17:26:54Z,- bishrfaisal commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1332503774) at 2022-11-30 09:26 AM PST -Biuwa,2022-11-30T04:02:48Z,- Biuwa opened issue: [3755](https://github.com/hackforla/website/issues/3755) at 2022-11-29 08:02 PM PST -Biuwa,2023-01-15T17:57:15Z,- Biuwa opened issue: [3818](https://github.com/hackforla/website/issues/3818) at 2023-01-15 09:57 AM PST -Biuwa,2023-02-11T05:17:23Z,- Biuwa opened issue: [3963](https://github.com/hackforla/website/issues/3963) at 2023-02-10 09:17 PM PST -Biuwa,2023-02-13T21:42:04Z,- Biuwa commented on issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1428728539) at 2023-02-13 01:42 PM PST -Biuwa,2023-02-14T01:18:09Z,- Biuwa commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428957701) at 2023-02-13 05:18 PM PST -Biuwa,2023-08-30T20:51:55Z,- Biuwa opened issue: [5381](https://github.com/hackforla/website/issues/5381) at 2023-08-30 01:51 PM PDT -BlakePeters99,7694,SKILLS ISSUE -BlakePeters99,2024-11-05T04:02:58Z,- BlakePeters99 opened issue: [7694](https://github.com/hackforla/website/issues/7694) at 2024-11-04 08:02 PM PST -BlakePeters99,2024-11-05T04:07:19Z,- BlakePeters99 assigned to issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2456185235) at 2024-11-04 08:07 PM PST -BlakePeters99,2024-11-15T01:05:35Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477743139) at 2024-11-14 05:05 PM PST -BlakePeters99,2024-11-15T01:07:38Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477745364) at 2024-11-14 05:07 PM PST -BlakePeters99,2024-11-15T01:36:22Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477775059) at 2024-11-14 05:36 PM PST -BlakePeters99,2024-11-15T02:07:59Z,- BlakePeters99 assigned to issue: [7474](https://github.com/hackforla/website/issues/7474) at 2024-11-14 06:07 PM PST -BlakePeters99,2024-11-15T02:50:15Z,- BlakePeters99 opened pull request: [7721](https://github.com/hackforla/website/pull/7721) at 2024-11-14 06:50 PM PST -BlakePeters99,2024-11-15T03:27:10Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477879599) at 2024-11-14 07:27 PM PST -BlakePeters99,2024-11-15T03:32:23Z,- BlakePeters99 commented on issue: [7474](https://github.com/hackforla/website/issues/7474#issuecomment-2477883645) at 2024-11-14 07:32 PM PST -BlakePeters99,2024-11-15T03:34:30Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477885269) at 2024-11-14 07:34 PM PST -BlakePeters99,2024-11-15T03:37:34Z,- BlakePeters99 pull request merged: [7721](https://github.com/hackforla/website/pull/7721#event-15306811056) at 2024-11-14 07:37 PM PST -BlakePeters99,2024-11-15T03:37:38Z,- BlakePeters99 reopened pull request: [7721](https://github.com/hackforla/website/pull/7721#event-15306811056) at 2024-11-14 07:37 PM PST -BlakePeters99,2024-11-15T03:39:10Z,- BlakePeters99 commented on pull request: [7721](https://github.com/hackforla/website/pull/7721#issuecomment-2477888974) at 2024-11-14 07:39 PM PST -BlakePeters99,2024-11-15T20:18:47Z,- BlakePeters99 commented on pull request: [7721](https://github.com/hackforla/website/pull/7721#issuecomment-2479851883) at 2024-11-15 12:18 PM PST -BlakePeters99,2024-11-15T21:16:37Z,- BlakePeters99 pull request merged: [7721](https://github.com/hackforla/website/pull/7721#event-15317615852) at 2024-11-15 01:16 PM PST -blakes24,2021-07-22T23:43:15Z,- blakes24 assigned to issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-07-22 04:43 PM PDT -blakes24,2021-07-23T01:09:41Z,- blakes24 assigned to issue: [1943](https://github.com/hackforla/website/issues/1943) at 2021-07-22 06:09 PM PDT -blakes24,2021-07-23T01:57:01Z,- blakes24 opened pull request: [2001](https://github.com/hackforla/website/pull/2001) at 2021-07-22 06:57 PM PDT -blakes24,2021-07-23T05:42:44Z,- blakes24 opened pull request: [2004](https://github.com/hackforla/website/pull/2004) at 2021-07-22 10:42 PM PDT -blakes24,2021-07-24T05:42:55Z,- blakes24 commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-886003939) at 2021-07-23 10:42 PM PDT -blakes24,2021-07-25T20:07:33Z,- blakes24 submitted pull request review: [2003](https://github.com/hackforla/website/pull/2003#pullrequestreview-714347213) at 2021-07-25 01:07 PM PDT -blakes24,2021-07-29T22:09:19Z,- blakes24 pull request merged: [2001](https://github.com/hackforla/website/pull/2001#event-5088536822) at 2021-07-29 03:09 PM PDT -blakes24,2021-07-30T21:39:46Z,- blakes24 submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-719480405) at 2021-07-30 02:39 PM PDT -blakes24,2021-07-30T22:30:10Z,- blakes24 assigned to issue: [1973](https://github.com/hackforla/website/issues/1973) at 2021-07-30 03:30 PM PDT -blakes24,2021-07-30T22:45:11Z,- blakes24 opened pull request: [2022](https://github.com/hackforla/website/pull/2022) at 2021-07-30 03:45 PM PDT -blakes24,2021-08-01T15:34:04Z,- blakes24 pull request merged: [2004](https://github.com/hackforla/website/pull/2004#event-5095584407) at 2021-08-01 08:34 AM PDT -blakes24,2021-08-03T04:55:33Z,- blakes24 pull request merged: [2022](https://github.com/hackforla/website/pull/2022#event-5102482522) at 2021-08-02 09:55 PM PDT -blakes24,2021-08-04T20:19:51Z,- blakes24 assigned to issue: [2058](https://github.com/hackforla/website/issues/2058) at 2021-08-04 01:19 PM PDT -blakes24,2021-08-05T18:04:02Z,- blakes24 opened pull request: [2067](https://github.com/hackforla/website/pull/2067) at 2021-08-05 11:04 AM PDT -blakes24,2021-08-09T19:41:42Z,- blakes24 submitted pull request review: [2072](https://github.com/hackforla/website/pull/2072#pullrequestreview-725744696) at 2021-08-09 12:41 PM PDT -blakes24,2021-08-09T20:12:13Z,- blakes24 submitted pull request review: [2074](https://github.com/hackforla/website/pull/2074#pullrequestreview-725768670) at 2021-08-09 01:12 PM PDT -blakes24,2021-08-10T23:52:13Z,- blakes24 pull request merged: [2067](https://github.com/hackforla/website/pull/2067#event-5138405511) at 2021-08-10 04:52 PM PDT -blakes24,2021-08-11T21:12:53Z,- blakes24 assigned to issue: [2075](https://github.com/hackforla/website/issues/2075) at 2021-08-11 02:12 PM PDT -blakes24,2021-08-11T22:09:50Z,- blakes24 opened pull request: [2102](https://github.com/hackforla/website/pull/2102) at 2021-08-11 03:09 PM PDT -blakes24,2021-08-14T20:19:37Z,- blakes24 pull request merged: [2102](https://github.com/hackforla/website/pull/2102#event-5159068563) at 2021-08-14 01:19 PM PDT -blakes24,2021-08-15T22:06:42Z,- blakes24 submitted pull request review: [2118](https://github.com/hackforla/website/pull/2118#pullrequestreview-730223912) at 2021-08-15 03:06 PM PDT -blakes24,2021-08-16T20:29:58Z,- blakes24 assigned to issue: [1948](https://github.com/hackforla/website/issues/1948#issuecomment-895595474) at 2021-08-16 01:29 PM PDT -blakes24,2021-08-16T23:19:18Z,- blakes24 opened pull request: [2123](https://github.com/hackforla/website/pull/2123) at 2021-08-16 04:19 PM PDT -blakes24,2021-08-17T23:23:10Z,- blakes24 opened issue: [2125](https://github.com/hackforla/website/issues/2125) at 2021-08-17 04:23 PM PDT -blakes24,2021-08-18T04:51:39Z,- blakes24 submitted pull request review: [2124](https://github.com/hackforla/website/pull/2124#pullrequestreview-732430337) at 2021-08-17 09:51 PM PDT -blakes24,2021-08-18T21:13:54Z,- blakes24 commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-901434667) at 2021-08-18 02:13 PM PDT -blakes24,2021-08-19T02:55:57Z,- blakes24 submitted pull request review: [2126](https://github.com/hackforla/website/pull/2126#pullrequestreview-733508332) at 2021-08-18 07:55 PM PDT -blakes24,2021-08-19T19:59:50Z,- blakes24 pull request merged: [2123](https://github.com/hackforla/website/pull/2123#event-5183312442) at 2021-08-19 12:59 PM PDT -blakes24,2021-08-20T00:21:40Z,- blakes24 assigned to issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-900760057) at 2021-08-19 05:21 PM PDT -blakes24,2021-08-20T15:25:41Z,- blakes24 submitted pull request review: [2118](https://github.com/hackforla/website/pull/2118#pullrequestreview-735145189) at 2021-08-20 08:25 AM PDT -blakes24,2021-08-20T20:19:41Z,- blakes24 opened pull request: [2149](https://github.com/hackforla/website/pull/2149) at 2021-08-20 01:19 PM PDT -blakes24,2021-08-21T00:34:35Z,- blakes24 commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-903022973) at 2021-08-20 05:34 PM PDT -blakes24,2021-08-23T21:15:42Z,- blakes24 submitted pull request review: [2150](https://github.com/hackforla/website/pull/2150#pullrequestreview-736574551) at 2021-08-23 02:15 PM PDT -blakes24,2021-08-23T22:14:08Z,- blakes24 submitted pull request review: [2157](https://github.com/hackforla/website/pull/2157#pullrequestreview-736611773) at 2021-08-23 03:14 PM PDT -blakes24,2021-08-24T17:45:44Z,- blakes24 pull request merged: [2149](https://github.com/hackforla/website/pull/2149#event-5202141676) at 2021-08-24 10:45 AM PDT -blakes24,2021-08-25T00:10:50Z,- blakes24 opened issue: [2175](https://github.com/hackforla/website/issues/2175) at 2021-08-24 05:10 PM PDT -blakes24,2021-08-28T01:14:41Z,- blakes24 submitted pull request review: [2157](https://github.com/hackforla/website/pull/2157#pullrequestreview-740963372) at 2021-08-27 06:14 PM PDT -blakes24,2021-09-01T01:20:27Z,- blakes24 assigned to issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-903155600) at 2021-08-31 06:20 PM PDT -blakes24,2021-09-04T00:30:27Z,- blakes24 opened pull request: [2223](https://github.com/hackforla/website/pull/2223) at 2021-09-03 05:30 PM PDT -blakes24,2021-09-04T00:39:49Z,- blakes24 commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-912876857) at 2021-09-03 05:39 PM PDT -blakes24,2021-09-04T21:53:12Z,- blakes24 commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-913045885) at 2021-09-04 02:53 PM PDT -blakes24,2021-09-05T19:04:23Z,- blakes24 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-913207614) at 2021-09-05 12:04 PM PDT -blakes24,2021-09-06T20:40:46Z,- blakes24 submitted pull request review: [2224](https://github.com/hackforla/website/pull/2224#pullrequestreview-747417560) at 2021-09-06 01:40 PM PDT -blakes24,2021-09-10T04:12:36Z,- blakes24 pull request merged: [2223](https://github.com/hackforla/website/pull/2223#event-5282268929) at 2021-09-09 09:12 PM PDT -blakes24,2021-09-11T21:03:44Z,- blakes24 assigned to issue: [2206](https://github.com/hackforla/website/issues/2206) at 2021-09-11 02:03 PM PDT -blakes24,2021-09-12T22:15:58Z,- blakes24 opened pull request: [2252](https://github.com/hackforla/website/pull/2252) at 2021-09-12 03:15 PM PDT -blakes24,2021-09-16T18:44:04Z,- blakes24 submitted pull request review: [2260](https://github.com/hackforla/website/pull/2260#pullrequestreview-756655004) at 2021-09-16 11:44 AM PDT -blakes24,2021-09-20T21:24:35Z,- blakes24 submitted pull request review: [2285](https://github.com/hackforla/website/pull/2285#pullrequestreview-759110994) at 2021-09-20 02:24 PM PDT -blakes24,2021-09-24T16:25:51Z,- blakes24 assigned to issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-921530340) at 2021-09-24 09:25 AM PDT -blakes24,2021-09-26T19:07:52Z,- blakes24 commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-927354893) at 2021-09-26 12:07 PM PDT -blakes24,2021-09-26T23:18:51Z,- blakes24 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-927390901) at 2021-09-26 04:18 PM PDT -blakes24,2021-09-28T05:12:49Z,- blakes24 pull request merged: [2252](https://github.com/hackforla/website/pull/2252#event-5371033644) at 2021-09-27 10:12 PM PDT -blakes24,2021-09-28T23:36:00Z,- blakes24 commented on issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-929699744) at 2021-09-28 04:36 PM PDT -blakes24,2021-10-09T00:02:21Z,- blakes24 commented on issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-939184650) at 2021-10-08 05:02 PM PDT -blakes24,2021-10-09T04:16:54Z,- blakes24 assigned to issue: [2266](https://github.com/hackforla/website/issues/2266) at 2021-10-08 09:16 PM PDT -blakes24,2021-10-09T20:48:56Z,- blakes24 closed issue as completed: [2251](https://github.com/hackforla/website/issues/2251#event-5438545057) at 2021-10-09 01:48 PM PDT -blakes24,2021-10-10T19:16:22Z,- blakes24 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-939537313) at 2021-10-10 12:16 PM PDT -blakes24,2021-10-15T03:51:25Z,- blakes24 commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-943963461) at 2021-10-14 08:51 PM PDT -blakes24,2021-11-11T22:38:28Z,- blakes24 commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-966675287) at 2021-11-11 02:38 PM PST -blakes24,2021-11-17T04:44:40Z,- blakes24 submitted pull request review: [2494](https://github.com/hackforla/website/pull/2494#pullrequestreview-808107635) at 2021-11-16 08:44 PM PST -blakes24,2021-11-22T02:59:36Z,- blakes24 reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651094776) at 2021-11-21 06:59 PM PST -blakes24,2021-11-22T03:24:02Z,- blakes24 submitted pull request review: [2494](https://github.com/hackforla/website/pull/2494#pullrequestreview-812047048) at 2021-11-21 07:24 PM PST -blakes24,2022-02-19T07:04:52Z,- blakes24 unassigned from issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1045915445) at 2022-02-18 11:04 PM PST -blaycoder,5500,SKILLS ISSUE -blaycoder,2023-09-12T08:02:16Z,- blaycoder opened issue: [5500](https://github.com/hackforla/website/issues/5500) at 2023-09-12 01:02 AM PDT -blaycoder,2023-09-12T08:02:16Z,- blaycoder assigned to issue: [5500](https://github.com/hackforla/website/issues/5500) at 2023-09-12 01:02 AM PDT -blaycoder,2023-09-22T12:30:30Z,- blaycoder commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1731335227) at 2023-09-22 05:30 AM PDT -blaycoder,2023-09-26T01:17:05Z,- blaycoder assigned to issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1732619901) at 2023-09-25 06:17 PM PDT -blaycoder,2023-09-26T02:04:48Z,- blaycoder opened pull request: [5585](https://github.com/hackforla/website/pull/5585) at 2023-09-25 07:04 PM PDT -blaycoder,2023-09-26T02:13:16Z,- blaycoder commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1734722566) at 2023-09-25 07:13 PM PDT -blaycoder,2023-09-26T02:13:45Z,- blaycoder closed issue as completed: [5500](https://github.com/hackforla/website/issues/5500#event-10469177658) at 2023-09-25 07:13 PM PDT -blaycoder,2023-09-26T02:19:32Z,- blaycoder commented on issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1734726284) at 2023-09-25 07:19 PM PDT -blaycoder,2023-09-27T09:25:58Z,- blaycoder commented on pull request: [5585](https://github.com/hackforla/website/pull/5585#issuecomment-1737036411) at 2023-09-27 02:25 AM PDT -blaycoder,2023-09-27T19:21:44Z,- blaycoder pull request merged: [5585](https://github.com/hackforla/website/pull/5585#event-10491352930) at 2023-09-27 12:21 PM PDT -blaycoder,2023-10-02T23:45:53Z,- blaycoder assigned to issue: [5584](https://github.com/hackforla/website/issues/5584#issuecomment-1734609169) at 2023-10-02 04:45 PM PDT -blaycoder,2023-10-02T23:51:00Z,- blaycoder commented on issue: [5584](https://github.com/hackforla/website/issues/5584#issuecomment-1743932789) at 2023-10-02 04:51 PM PDT -blaycoder,2023-10-03T00:16:46Z,- blaycoder opened pull request: [5648](https://github.com/hackforla/website/pull/5648) at 2023-10-02 05:16 PM PDT -blaycoder,2023-10-07T09:32:57Z,- blaycoder commented on pull request: [5648](https://github.com/hackforla/website/pull/5648#issuecomment-1751664620) at 2023-10-07 02:32 AM PDT -blaycoder,2023-10-07T09:36:21Z,- blaycoder opened pull request: [5671](https://github.com/hackforla/website/pull/5671) at 2023-10-07 02:36 AM PDT -blaycoder,2023-10-15T23:40:45Z,- blaycoder pull request closed w/o merging: [5648](https://github.com/hackforla/website/pull/5648#event-10658740906) at 2023-10-15 04:40 PM PDT -blaycoder,2023-10-15T23:43:23Z,- blaycoder commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1763539670) at 2023-10-15 04:43 PM PDT -blaycoder,2023-10-15T23:50:42Z,- blaycoder commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1763541384) at 2023-10-15 04:50 PM PDT -blaycoder,2023-10-15T23:59:57Z,- blaycoder pull request merged: [5671](https://github.com/hackforla/website/pull/5671#event-10658780396) at 2023-10-15 04:59 PM PDT -blaycoder,2024-03-10T09:17:25Z,- blaycoder opened issue: [6444](https://github.com/hackforla/website/issues/6444) at 2024-03-10 02:17 AM PDT -blaycoder,2024-03-11T02:37:07Z,- blaycoder assigned to issue: [6041](https://github.com/hackforla/website/issues/6041#event-11895194517) at 2024-03-10 07:37 PM PDT -blaycoder,2024-03-11T03:06:59Z,- blaycoder commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987544059) at 2024-03-10 08:06 PM PDT -blaycoder,2024-03-11T03:22:01Z,- blaycoder assigned to issue: [6089](https://github.com/hackforla/website/issues/6089) at 2024-03-10 08:22 PM PDT -blaycoder,2024-03-11T03:52:39Z,- blaycoder commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987589997) at 2024-03-10 08:52 PM PDT -blaycoder,2024-03-11T03:54:05Z,- blaycoder unassigned from issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987589997) at 2024-03-10 08:54 PM PDT -blaycoder,2024-03-11T03:57:28Z,- blaycoder commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987593069) at 2024-03-10 08:57 PM PDT -blaycoder,2024-03-18T21:29:45Z,- blaycoder commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-2005040457) at 2024-03-18 02:29 PM PDT -blaycoder,2024-04-02T07:27:48Z,- blaycoder commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-2031261978) at 2024-04-02 12:27 AM PDT -blaycoder,2024-05-18T06:18:12Z,- blaycoder assigned to issue: [6575](https://github.com/hackforla/website/issues/6575) at 2024-05-17 11:18 PM PDT -blaycoder,2024-05-18T06:24:24Z,- blaycoder commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2118661419) at 2024-05-17 11:24 PM PDT -blaycoder,2024-05-18T07:28:51Z,- blaycoder commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2118677124) at 2024-05-18 12:28 AM PDT -blaycoder,2024-05-18T07:35:02Z,- blaycoder assigned to issue: [6577](https://github.com/hackforla/website/issues/6577) at 2024-05-18 12:35 AM PDT -blaycoder,2024-05-18T07:38:56Z,- blaycoder commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2118679891) at 2024-05-18 12:38 AM PDT -blaycoder,2024-05-18T07:39:45Z,- blaycoder assigned to issue: [6578](https://github.com/hackforla/website/issues/6578) at 2024-05-18 12:39 AM PDT -blaycoder,2024-05-18T07:41:27Z,- blaycoder commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2118680598) at 2024-05-18 12:41 AM PDT -blaycoder,2024-05-18T07:42:42Z,- blaycoder assigned to issue: [6585](https://github.com/hackforla/website/issues/6585) at 2024-05-18 12:42 AM PDT -blaycoder,2024-05-18T07:43:01Z,- blaycoder commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2118680885) at 2024-05-18 12:43 AM PDT -blaycoder,2024-05-18T07:43:30Z,- blaycoder assigned to issue: [6590](https://github.com/hackforla/website/issues/6590) at 2024-05-18 12:43 AM PDT -blaycoder,2024-05-18T07:44:58Z,- blaycoder commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2118681331) at 2024-05-18 12:44 AM PDT -blaycoder,2024-05-18T17:35:48Z,- blaycoder assigned to issue: [6721](https://github.com/hackforla/website/issues/6721) at 2024-05-18 10:35 AM PDT -blaycoder,2024-05-18T17:50:13Z,- blaycoder commented on issue: [6721](https://github.com/hackforla/website/issues/6721#issuecomment-2118900063) at 2024-05-18 10:50 AM PDT -blaycoder,2024-05-18T18:13:17Z,- blaycoder opened pull request: [6860](https://github.com/hackforla/website/pull/6860) at 2024-05-18 11:13 AM PDT -blaycoder,2024-05-19T17:06:36Z,- blaycoder commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2119302407) at 2024-05-19 10:06 AM PDT -blaycoder,2024-05-19T22:23:29Z,- blaycoder unassigned from issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2119377587) at 2024-05-19 03:23 PM PDT -blaycoder,2024-05-19T22:25:40Z,- blaycoder unassigned from issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2119379100) at 2024-05-19 03:25 PM PDT -blaycoder,2024-05-19T22:28:34Z,- blaycoder unassigned from issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2119379659) at 2024-05-19 03:28 PM PDT -blaycoder,2024-05-19T22:29:58Z,- blaycoder unassigned from issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2119379952) at 2024-05-19 03:29 PM PDT -blaycoder,2024-05-19T22:32:28Z,- blaycoder unassigned from issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2119380584) at 2024-05-19 03:32 PM PDT -blaycoder,2024-05-22T06:59:16Z,- blaycoder commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2124014886) at 2024-05-21 11:59 PM PDT -blaycoder,2024-05-22T07:00:06Z,- blaycoder commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2124016013) at 2024-05-22 12:00 AM PDT -blaycoder,2024-05-22T07:03:11Z,- blaycoder commented on issue: [6721](https://github.com/hackforla/website/issues/6721#issuecomment-2124020713) at 2024-05-22 12:03 AM PDT -blaycoder,2024-05-25T17:28:18Z,- blaycoder pull request closed w/o merging: [6860](https://github.com/hackforla/website/pull/6860#event-12933578842) at 2024-05-25 10:28 AM PDT -blaycoder,2024-05-25T17:33:36Z,- blaycoder reopened pull request: [6860](https://github.com/hackforla/website/pull/6860#event-12933578842) at 2024-05-25 10:33 AM PDT -blaycoder,2024-05-25T17:36:56Z,- blaycoder pull request closed w/o merging: [6860](https://github.com/hackforla/website/pull/6860#event-12933590664) at 2024-05-25 10:36 AM PDT -blaycoder,2024-05-25T17:45:56Z,- blaycoder opened pull request: [6896](https://github.com/hackforla/website/pull/6896) at 2024-05-25 10:45 AM PDT -blaycoder,2024-05-25T17:48:32Z,- blaycoder commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2131373155) at 2024-05-25 10:48 AM PDT -blaycoder,2024-05-27T04:53:20Z,- blaycoder pull request merged: [6896](https://github.com/hackforla/website/pull/6896#event-12940383656) at 2024-05-26 09:53 PM PDT -blaycoder,2024-08-21T19:53:29Z,- blaycoder assigned to issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2285315077) at 2024-08-21 12:53 PM PDT -blaycoder,2024-08-22T07:59:52Z,- blaycoder commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2304027578) at 2024-08-22 12:59 AM PDT -blaycoder,2024-08-22T08:04:37Z,- blaycoder opened pull request: [7341](https://github.com/hackforla/website/pull/7341) at 2024-08-22 01:04 AM PDT -blaycoder,2024-08-28T16:39:07Z,- blaycoder commented on pull request: [7341](https://github.com/hackforla/website/pull/7341#issuecomment-2315815149) at 2024-08-28 09:39 AM PDT -blaycoder,2024-08-31T21:59:30Z,- blaycoder pull request merged: [7341](https://github.com/hackforla/website/pull/7341#event-14092744656) at 2024-08-31 02:59 PM PDT -Blue-smoke007,2025-05-28T22:30:58Z,- Blue-smoke007 commented on issue: [8110](https://github.com/hackforla/website/issues/8110#issuecomment-2917760886) at 2025-05-28 03:30 PM PDT -bluechocolate2019,4969,SKILLS ISSUE -bluechocolate2019,4995,SKILLS ISSUE -bluechocolate2019,2023-07-18T01:52:12Z,- bluechocolate2019 opened issue: [4969](https://github.com/hackforla/website/issues/4969) at 2023-07-17 06:52 PM PDT -bluechocolate2019,2023-07-18T01:56:10Z,- bluechocolate2019 opened issue: [4979](https://github.com/hackforla/website/issues/4979) at 2023-07-17 06:56 PM PDT -bluechocolate2019,2023-07-18T02:08:41Z,- bluechocolate2019 opened issue: [4989](https://github.com/hackforla/website/issues/4989) at 2023-07-17 07:08 PM PDT -bluechocolate2019,2023-07-18T02:16:45Z,- bluechocolate2019 opened issue: [4990](https://github.com/hackforla/website/issues/4990) at 2023-07-17 07:16 PM PDT -bluechocolate2019,2023-07-18T02:28:00Z,- bluechocolate2019 opened issue: [4995](https://github.com/hackforla/website/issues/4995) at 2023-07-17 07:28 PM PDT -bluechocolate2019,2023-07-18T02:28:29Z,- bluechocolate2019 assigned to issue: [4995](https://github.com/hackforla/website/issues/4995#issuecomment-1639182431) at 2023-07-17 07:28 PM PDT -bluechocolate2019,2023-07-18T02:41:38Z,- bluechocolate2019 closed issue as completed: [4979](https://github.com/hackforla/website/issues/4979#event-9844731402) at 2023-07-17 07:41 PM PDT -bluechocolate2019,2023-07-18T02:41:39Z,- bluechocolate2019 closed issue as completed: [4989](https://github.com/hackforla/website/issues/4989#event-9844731436) at 2023-07-17 07:41 PM PDT -bluechocolate2019,2023-07-18T02:41:39Z,- bluechocolate2019 closed issue as completed: [4990](https://github.com/hackforla/website/issues/4990#event-9844731468) at 2023-07-17 07:41 PM PDT -bluechocolate2019,2023-07-18T02:41:40Z,- bluechocolate2019 closed issue as completed: [4995](https://github.com/hackforla/website/issues/4995#event-9844731505) at 2023-07-17 07:41 PM PDT -bluechocolate2019,2023-07-24T17:12:03Z,- bluechocolate2019 assigned to issue: [4969](https://github.com/hackforla/website/issues/4969) at 2023-07-24 10:12 AM PDT -bluechocolate2019,2023-08-15T22:57:58Z,- bluechocolate2019 assigned to issue: [5140](https://github.com/hackforla/website/issues/5140) at 2023-08-15 03:57 PM PDT -bluechocolate2019,2023-08-21T20:25:58Z,- bluechocolate2019 assigned to issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1685354790) at 2023-08-21 01:25 PM PDT -bluechocolate2019,2023-08-21T20:27:15Z,- bluechocolate2019 unassigned from issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1686995049) at 2023-08-21 01:27 PM PDT -bluechocolate2019,2023-08-21T20:28:48Z,- bluechocolate2019 commented on issue: [5140](https://github.com/hackforla/website/issues/5140#issuecomment-1686998103) at 2023-08-21 01:28 PM PDT -bluechocolate2019,2023-08-21T20:31:36Z,- bluechocolate2019 commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1687001444) at 2023-08-21 01:31 PM PDT -bluechocolate2019,2023-08-23T19:05:08Z,- bluechocolate2019 opened pull request: [5295](https://github.com/hackforla/website/pull/5295) at 2023-08-23 12:05 PM PDT -bluechocolate2019,2023-08-27T03:48:15Z,- bluechocolate2019 pull request merged: [5295](https://github.com/hackforla/website/pull/5295#event-10201076166) at 2023-08-26 08:48 PM PDT -bluechocolate2019,2023-08-29T19:55:02Z,- bluechocolate2019 assigned to issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1689013154) at 2023-08-29 12:55 PM PDT -bluechocolate2019,2023-08-31T20:50:20Z,- bluechocolate2019 commented on issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1701762973) at 2023-08-31 01:50 PM PDT -bluechocolate2019,2023-08-31T21:46:38Z,- bluechocolate2019 opened pull request: [5401](https://github.com/hackforla/website/pull/5401) at 2023-08-31 02:46 PM PDT -bluechocolate2019,2023-09-05T00:37:47Z,- bluechocolate2019 commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1705797869) at 2023-09-04 05:37 PM PDT -bluechocolate2019,2023-09-06T22:02:50Z,- bluechocolate2019 commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1709186951) at 2023-09-06 03:02 PM PDT -bluechocolate2019,2023-09-06T23:35:42Z,- bluechocolate2019 commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1709258618) at 2023-09-06 04:35 PM PDT -bluechocolate2019,2023-09-07T04:46:47Z,- bluechocolate2019 commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1709469373) at 2023-09-06 09:46 PM PDT -bluechocolate2019,2023-09-07T06:42:21Z,- bluechocolate2019 pull request merged: [5401](https://github.com/hackforla/website/pull/5401#event-10303369442) at 2023-09-06 11:42 PM PDT -bluechocolate2019,2023-09-13T22:49:27Z,- bluechocolate2019 commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1718411609) at 2023-09-13 03:49 PM PDT -bluechocolate2019,2023-09-13T22:49:27Z,- bluechocolate2019 closed issue as completed: [4969](https://github.com/hackforla/website/issues/4969#event-10365294719) at 2023-09-13 03:49 PM PDT -bluechocolate2019,2023-09-27T02:03:06Z,- bluechocolate2019 assigned to issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1734219960) at 2023-09-26 07:03 PM PDT -bluechocolate2019,2023-09-27T02:07:17Z,- bluechocolate2019 commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1736558482) at 2023-09-26 07:07 PM PDT -bluechocolate2019,2023-10-18T23:04:13Z,- bluechocolate2019 commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1769537970) at 2023-10-18 04:04 PM PDT -blulady,2683,SKILLS ISSUE -blulady,2022-01-11T03:40:05Z,- blulady opened issue: [2683](https://github.com/hackforla/website/issues/2683) at 2022-01-10 07:40 PM PST -blulady,2022-01-11T03:48:29Z,- blulady assigned to issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1009570874) at 2022-01-10 07:48 PM PST -blulady,2022-01-19T01:30:18Z,- blulady assigned to issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-991981385) at 2022-01-18 05:30 PM PST -blulady,2022-01-26T02:11:26Z,- blulady assigned to issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-993552757) at 2022-01-25 06:11 PM PST -blulady,2022-01-26T02:48:15Z,- blulady opened pull request: [2718](https://github.com/hackforla/website/pull/2718) at 2022-01-25 06:48 PM PST -blulady,2022-01-27T18:18:58Z,- blulady commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1023513512) at 2022-01-27 10:18 AM PST -blulady,2022-01-27T18:24:45Z,- blulady commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023518035) at 2022-01-27 10:24 AM PST -blulady,2022-01-27T18:31:32Z,- blulady unassigned from issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023523026) at 2022-01-27 10:31 AM PST -blulady,2022-01-27T18:37:02Z,- blulady submitted pull request review: [2714](https://github.com/hackforla/website/pull/2714#pullrequestreview-865284330) at 2022-01-27 10:37 AM PST -blulady,2022-01-27T18:47:43Z,- blulady commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023535713) at 2022-01-27 10:47 AM PST -blulady,2022-01-27T23:34:22Z,- blulady pull request merged: [2718](https://github.com/hackforla/website/pull/2718#event-5967383106) at 2022-01-27 03:34 PM PST -blulady,2022-02-13T01:28:52Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1037648851) at 2022-02-12 05:28 PM PST -blulady,2022-02-13T01:48:34Z,- blulady closed issue as completed: [2272](https://github.com/hackforla/website/issues/2272#event-6059110220) at 2022-02-12 05:48 PM PST -blulady,2022-02-13T01:48:35Z,- blulady reopened issue: [2272](https://github.com/hackforla/website/issues/2272#event-6059110220) at 2022-02-12 05:48 PM PST -blulady,2022-02-13T02:01:41Z,- blulady assigned to issue: [2242](https://github.com/hackforla/website/issues/2242) at 2022-02-12 06:01 PM PST -blulady,2022-02-13T02:57:22Z,- blulady opened pull request: [2772](https://github.com/hackforla/website/pull/2772) at 2022-02-12 06:57 PM PST -blulady,2022-02-13T13:06:22Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1038102095) at 2022-02-13 05:06 AM PST -blulady,2022-02-14T21:30:29Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1039583385) at 2022-02-14 01:30 PM PST -blulady,2022-02-14T21:32:17Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1039585098) at 2022-02-14 01:32 PM PST -blulady,2022-02-19T21:18:52Z,- blulady opened pull request: [2801](https://github.com/hackforla/website/pull/2801) at 2022-02-19 01:18 PM PST -blulady,2022-02-20T17:58:46Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1046289993) at 2022-02-20 09:58 AM PST -blulady,2022-02-20T18:09:17Z,- blulady closed issue by PR 2772: [2242](https://github.com/hackforla/website/issues/2242#event-6107592813) at 2022-02-20 10:09 AM PST -blulady,2022-02-20T19:17:10Z,- blulady pull request closed w/o merging: [2801](https://github.com/hackforla/website/pull/2801#event-6107670166) at 2022-02-20 11:17 AM PST -blulady,2022-02-20T20:08:33Z,- blulady opened issue: [2809](https://github.com/hackforla/website/issues/2809) at 2022-02-20 12:08 PM PST -blulady,2022-02-20T20:36:03Z,- blulady opened issue: [2814](https://github.com/hackforla/website/issues/2814) at 2022-02-20 12:36 PM PST -blulady,2022-02-20T23:19:31Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1046343850) at 2022-02-20 03:19 PM PST -blulady,2022-03-01T23:54:14Z,- blulady commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055985881) at 2022-03-01 03:54 PM PST -blulady,2022-03-01T23:55:08Z,- blulady commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055986355) at 2022-03-01 03:55 PM PST -blulady,2022-03-01T23:56:46Z,- blulady submitted pull request review: [2905](https://github.com/hackforla/website/pull/2905#pullrequestreview-896955818) at 2022-03-01 03:56 PM PST -blulady,2022-03-03T00:42:02Z,- blulady commented on issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1057546659) at 2022-03-02 04:42 PM PST -blulady,2022-03-04T22:14:36Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1059569459) at 2022-03-04 02:14 PM PST -blulady,2022-03-04T23:25:29Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1059601592) at 2022-03-04 03:25 PM PST -blulady,2022-03-06T19:41:01Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1060026410) at 2022-03-06 11:41 AM PST -blulady,2022-03-06T23:20:21Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1060060776) at 2022-03-06 03:20 PM PST -blulady,2022-03-07T23:42:51Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1061255555) at 2022-03-07 03:42 PM PST -blulady,2022-03-11T19:35:52Z,- blulady pull request merged: [2772](https://github.com/hackforla/website/pull/2772#event-6227094542) at 2022-03-11 11:35 AM PST -blulady,2022-03-12T23:01:32Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1065980545) at 2022-03-12 04:01 PM PDT -blulady,2022-03-12T23:01:35Z,- blulady closed issue as completed: [2683](https://github.com/hackforla/website/issues/2683#event-6230385668) at 2022-03-12 04:01 PM PDT -blulady,2022-03-12T23:16:04Z,- blulady commented on issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1065982320) at 2022-03-12 04:16 PM PDT -blulady,2022-03-12T23:32:29Z,- blulady commented on pull request: [2971](https://github.com/hackforla/website/pull/2971#issuecomment-1065984327) at 2022-03-12 04:32 PM PDT -blulady,2022-03-12T23:49:47Z,- blulady submitted pull request review: [2971](https://github.com/hackforla/website/pull/2971#pullrequestreview-908069669) at 2022-03-12 04:49 PM PDT -blulady,2022-03-12T23:56:48Z,- blulady commented on pull request: [2970](https://github.com/hackforla/website/pull/2970#issuecomment-1065987007) at 2022-03-12 04:56 PM PDT -blulady,2022-03-13T00:06:18Z,- blulady submitted pull request review: [2970](https://github.com/hackforla/website/pull/2970#pullrequestreview-908070731) at 2022-03-12 05:06 PM PDT -blulady,2022-03-13T18:27:31Z,- blulady assigned to issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1065982320) at 2022-03-13 11:27 AM PDT -blulady,2022-03-13T23:55:26Z,- blulady opened pull request: [2979](https://github.com/hackforla/website/pull/2979) at 2022-03-13 04:55 PM PDT -blulady,2022-03-15T20:33:29Z,- blulady commented on pull request: [2979](https://github.com/hackforla/website/pull/2979#issuecomment-1068441856) at 2022-03-15 01:33 PM PDT -blulady,2022-03-15T20:52:14Z,- blulady commented on pull request: [2979](https://github.com/hackforla/website/pull/2979#issuecomment-1068462098) at 2022-03-15 01:52 PM PDT -blulady,2022-03-18T15:02:24Z,- blulady pull request merged: [2979](https://github.com/hackforla/website/pull/2979#event-6266818386) at 2022-03-18 08:02 AM PDT -blulady,2022-03-20T17:20:27Z,- blulady commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073295478) at 2022-03-20 10:20 AM PDT -blulady,2022-03-20T17:20:36Z,- blulady commented on pull request: [2991](https://github.com/hackforla/website/pull/2991#issuecomment-1073295502) at 2022-03-20 10:20 AM PDT -blulady,2022-03-20T17:42:09Z,- blulady assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2022-03-20 10:42 AM PDT -blulady,2022-03-20T18:08:01Z,- blulady assigned to issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1054458322) at 2022-03-20 11:08 AM PDT -blulady,2022-03-20T18:08:36Z,- blulady unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2022-03-20 11:08 AM PDT -blulady,2022-03-20T18:55:28Z,- blulady commented on issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1073311039) at 2022-03-20 11:55 AM PDT -blulady,2022-03-21T00:28:41Z,- blulady submitted pull request review: [2991](https://github.com/hackforla/website/pull/2991#pullrequestreview-915174345) at 2022-03-20 05:28 PM PDT -blulady,2022-03-21T01:07:45Z,- blulady opened pull request: [2996](https://github.com/hackforla/website/pull/2996) at 2022-03-20 06:07 PM PDT -blulady,2022-03-21T01:09:37Z,- blulady commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1073397076) at 2022-03-20 06:09 PM PDT -blulady,2022-03-21T01:16:41Z,- blulady commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1073399045) at 2022-03-20 06:16 PM PDT -blulady,2022-03-21T01:29:13Z,- blulady submitted pull request review: [2994](https://github.com/hackforla/website/pull/2994#pullrequestreview-915185721) at 2022-03-20 06:29 PM PDT -blulady,2022-03-22T16:28:36Z,- blulady commented on pull request: [3000](https://github.com/hackforla/website/pull/3000#issuecomment-1075362912) at 2022-03-22 09:28 AM PDT -blulady,2022-03-22T17:04:24Z,- blulady submitted pull request review: [3000](https://github.com/hackforla/website/pull/3000#pullrequestreview-917582794) at 2022-03-22 10:04 AM PDT -blulady,2022-03-22T17:06:40Z,- blulady commented on pull request: [2998](https://github.com/hackforla/website/pull/2998#issuecomment-1075401891) at 2022-03-22 10:06 AM PDT -blulady,2022-03-22T17:17:05Z,- blulady submitted pull request review: [2998](https://github.com/hackforla/website/pull/2998#pullrequestreview-917600693) at 2022-03-22 10:17 AM PDT -blulady,2022-03-22T17:43:15Z,- blulady commented on pull request: [2997](https://github.com/hackforla/website/pull/2997#issuecomment-1075436299) at 2022-03-22 10:43 AM PDT -blulady,2022-03-22T18:07:10Z,- blulady submitted pull request review: [2997](https://github.com/hackforla/website/pull/2997#pullrequestreview-917668857) at 2022-03-22 11:07 AM PDT -blulady,2022-03-22T18:35:13Z,- blulady pull request merged: [2996](https://github.com/hackforla/website/pull/2996#event-6285883137) at 2022-03-22 11:35 AM PDT -blulady,2022-03-22T22:30:03Z,- blulady assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2022-03-22 03:30 PM PDT -blulady,2022-03-23T02:41:31Z,- blulady commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1075856655) at 2022-03-22 07:41 PM PDT -blulady,2022-03-24T22:01:21Z,- blulady commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1078424214) at 2022-03-24 03:01 PM PDT -blulady,2022-03-24T22:29:06Z,- blulady commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1078441526) at 2022-03-24 03:29 PM PDT -blulady,2022-03-27T17:22:04Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1079978367) at 2022-03-27 10:22 AM PDT -blulady,2022-03-27T19:08:39Z,- blulady unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1079508469) at 2022-03-27 12:08 PM PDT -blulady,2022-03-27T23:29:24Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080043797) at 2022-03-27 04:29 PM PDT -blulady,2022-03-27T23:51:52Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080047277) at 2022-03-27 04:51 PM PDT -blulady,2022-03-28T00:11:25Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080052352) at 2022-03-27 05:11 PM PDT -blulady,2022-03-28T00:22:11Z,- blulady submitted pull request review: [3015](https://github.com/hackforla/website/pull/3015#pullrequestreview-922520487) at 2022-03-27 05:22 PM PDT -blulady,2022-04-05T19:26:16Z,- blulady assigned to issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1003772221) at 2022-04-05 12:26 PM PDT -blulady,2022-04-07T00:39:47Z,- blulady commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1090962450) at 2022-04-06 05:39 PM PDT -blulady,2022-04-10T17:20:54Z,- blulady commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1094331616) at 2022-04-10 10:20 AM PDT -blulady,2022-04-10T17:30:16Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1094333071) at 2022-04-10 10:30 AM PDT -blulady,2022-04-11T17:47:40Z,- blulady submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-938380921) at 2022-04-11 10:47 AM PDT -blulady,2022-04-13T19:23:54Z,- blulady submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-941447545) at 2022-04-13 12:23 PM PDT -blulady,2022-04-14T17:32:05Z,- blulady commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1099450643) at 2022-04-14 10:32 AM PDT -blulady,2022-04-15T01:28:54Z,- blulady unassigned from issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1090962450) at 2022-04-14 06:28 PM PDT -blulady,2022-04-19T19:00:58Z,- blulady submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-946165417) at 2022-04-19 12:00 PM PDT -blulady,2022-04-26T17:51:23Z,- blulady submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-953791562) at 2022-04-26 10:51 AM PDT -blulady,2022-05-22T17:14:27Z,- blulady assigned to issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1108802554) at 2022-05-22 10:14 AM PDT -blulady,2022-05-22T17:20:00Z,- blulady commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1133938198) at 2022-05-22 10:20 AM PDT -blulady,2022-05-24T21:01:02Z,- blulady submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-983848206) at 2022-05-24 02:01 PM PDT -blulady,2022-05-24T21:11:45Z,- blulady submitted pull request review: [3172](https://github.com/hackforla/website/pull/3172#pullrequestreview-983858502) at 2022-05-24 02:11 PM PDT -blulady,2022-05-24T21:48:05Z,- blulady submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-983889235) at 2022-05-24 02:48 PM PDT -blulady,2022-06-10T17:23:12Z,- blulady commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1152579838) at 2022-06-10 10:23 AM PDT -blulady,2022-06-14T22:17:55Z,- blulady commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1155765348) at 2022-06-14 03:17 PM PDT -blulady,2022-06-15T02:26:57Z,- blulady commented on pull request: [3241](https://github.com/hackforla/website/pull/3241#issuecomment-1155911089) at 2022-06-14 07:26 PM PDT -blulady,2022-06-20T16:36:23Z,- blulady opened pull request: [3263](https://github.com/hackforla/website/pull/3263) at 2022-06-20 09:36 AM PDT -blulady,2022-06-23T04:47:58Z,- blulady submitted pull request review: [3264](https://github.com/hackforla/website/pull/3264#pullrequestreview-1016327208) at 2022-06-22 09:47 PM PDT -blulady,2022-06-23T05:01:38Z,- blulady submitted pull request review: [3262](https://github.com/hackforla/website/pull/3262#pullrequestreview-1016335045) at 2022-06-22 10:01 PM PDT -blulady,2022-06-23T05:07:16Z,- blulady commented on pull request: [3291](https://github.com/hackforla/website/pull/3291#issuecomment-1163933997) at 2022-06-22 10:07 PM PDT -blulady,2022-06-23T05:07:52Z,- blulady commented on pull request: [3288](https://github.com/hackforla/website/pull/3288#issuecomment-1163934355) at 2022-06-22 10:07 PM PDT -blulady,2022-06-23T05:08:33Z,- blulady commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1163934728) at 2022-06-22 10:08 PM PDT -blulady,2022-06-23T05:11:38Z,- blulady submitted pull request review: [3261](https://github.com/hackforla/website/pull/3261#pullrequestreview-1016340586) at 2022-06-22 10:11 PM PDT -blulady,2022-06-23T19:49:17Z,- blulady submitted pull request review: [3288](https://github.com/hackforla/website/pull/3288#pullrequestreview-1017559129) at 2022-06-23 12:49 PM PDT -blulady,2022-06-23T20:02:49Z,- blulady submitted pull request review: [3287](https://github.com/hackforla/website/pull/3287#pullrequestreview-1017573232) at 2022-06-23 01:02 PM PDT -blulady,2022-06-23T20:10:04Z,- blulady submitted pull request review: [3291](https://github.com/hackforla/website/pull/3291#pullrequestreview-1017580847) at 2022-06-23 01:10 PM PDT -blulady,2022-06-23T20:24:33Z,- blulady submitted pull request review: [3293](https://github.com/hackforla/website/pull/3293#pullrequestreview-1017606734) at 2022-06-23 01:24 PM PDT -blulady,2022-06-26T17:15:12Z,- blulady commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166591950) at 2022-06-26 10:15 AM PDT -blulady,2022-06-26T17:28:34Z,- blulady commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1166595204) at 2022-06-26 10:28 AM PDT -blulady,2022-06-26T17:33:23Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1166596399) at 2022-06-26 10:33 AM PDT -blulady,2022-06-26T19:13:00Z,- blulady opened issue: [3316](https://github.com/hackforla/website/issues/3316) at 2022-06-26 12:13 PM PDT -blulady,2022-06-26T19:33:31Z,- blulady pull request merged: [3263](https://github.com/hackforla/website/pull/3263#event-6880797450) at 2022-06-26 12:33 PM PDT -blulady,2022-06-26T21:35:20Z,- blulady submitted pull request review: [3304](https://github.com/hackforla/website/pull/3304#pullrequestreview-1019480406) at 2022-06-26 02:35 PM PDT -blulady,2022-06-26T22:07:24Z,- blulady commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166658551) at 2022-06-26 03:07 PM PDT -blulady,2022-06-27T01:25:25Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1166718680) at 2022-06-26 06:25 PM PDT -blulady,2022-06-29T02:36:19Z,- blulady commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1169469393) at 2022-06-28 07:36 PM PDT -blulady,2022-06-29T21:40:04Z,- blulady commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170518980) at 2022-06-29 02:40 PM PDT -blulady,2022-06-29T22:22:40Z,- blulady submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1024072772) at 2022-06-29 03:22 PM PDT -blulady,2022-06-30T21:19:14Z,- blulady submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1025503793) at 2022-06-30 02:19 PM PDT -blulady,2022-07-03T18:40:15Z,- blulady commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173151130) at 2022-07-03 11:40 AM PDT -blulady,2022-07-04T20:24:40Z,- blulady closed issue by PR 3327: [3232](https://github.com/hackforla/website/issues/3232#event-6930020112) at 2022-07-04 01:24 PM PDT -blulady,2022-07-08T00:00:02Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178384501) at 2022-07-07 05:00 PM PDT -blulady,2022-07-08T00:04:49Z,- blulady submitted pull request review: [3299](https://github.com/hackforla/website/pull/3299#pullrequestreview-1032270910) at 2022-07-07 05:04 PM PDT -blulady,2022-07-08T00:26:43Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178400163) at 2022-07-07 05:26 PM PDT -blulady,2022-07-08T02:01:17Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178454151) at 2022-07-07 07:01 PM PDT -blulady,2022-07-08T02:01:57Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178454558) at 2022-07-07 07:01 PM PDT -blulady,2022-07-08T02:08:36Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178458355) at 2022-07-07 07:08 PM PDT -blulady,2022-07-08T14:13:51Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1179037445) at 2022-07-08 07:13 AM PDT -blulady,2022-07-10T18:11:49Z,- blulady submitted pull request review: [3299](https://github.com/hackforla/website/pull/3299#pullrequestreview-1033664950) at 2022-07-10 11:11 AM PDT -blulady,2022-07-10T18:12:10Z,- blulady closed issue by PR 3299: [3111](https://github.com/hackforla/website/issues/3111#event-6965343513) at 2022-07-10 11:12 AM PDT -blulady,2022-07-10T18:19:04Z,- blulady opened issue: [3345](https://github.com/hackforla/website/issues/3345) at 2022-07-10 11:19 AM PDT -blulady,2022-07-10T18:32:34Z,- blulady opened issue: [3347](https://github.com/hackforla/website/issues/3347) at 2022-07-10 11:32 AM PDT -blulady,2022-07-10T18:38:01Z,- blulady opened issue: [3349](https://github.com/hackforla/website/issues/3349) at 2022-07-10 11:38 AM PDT -blulady,2022-07-10T18:59:51Z,- blulady closed issue as completed: [3350](https://github.com/hackforla/website/issues/3350#event-6965384752) at 2022-07-10 11:59 AM PDT -blulady,2022-07-10T19:04:10Z,- blulady closed issue as completed: [3349](https://github.com/hackforla/website/issues/3349#event-6965388371) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:17Z,- blulady closed issue as completed: [3347](https://github.com/hackforla/website/issues/3347#event-6965388507) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:24Z,- blulady closed issue as completed: [3346](https://github.com/hackforla/website/issues/3346#event-6965388610) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:31Z,- blulady closed issue as completed: [3345](https://github.com/hackforla/website/issues/3345#event-6965388724) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:37Z,- blulady closed issue as completed: [3344](https://github.com/hackforla/website/issues/3344#event-6965388787) at 2022-07-10 12:04 PM PDT -blulady,2022-07-13T02:53:44Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1182706386) at 2022-07-12 07:53 PM PDT -blulady,2022-07-15T00:49:16Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1185060385) at 2022-07-14 05:49 PM PDT -blulady,2022-07-15T00:54:56Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1185062947) at 2022-07-14 05:54 PM PDT -blulady,2022-07-15T00:59:10Z,- blulady commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1185064818) at 2022-07-14 05:59 PM PDT -blulady,2022-07-15T02:33:54Z,- blulady submitted pull request review: [3348](https://github.com/hackforla/website/pull/3348#pullrequestreview-1039716857) at 2022-07-14 07:33 PM PDT -blulady,2022-07-15T02:34:03Z,- blulady closed issue by PR 3348: [2898](https://github.com/hackforla/website/issues/2898#event-6998715657) at 2022-07-14 07:34 PM PDT -blulady,2022-07-17T21:43:04Z,- blulady closed issue by PR 3373: [2961](https://github.com/hackforla/website/issues/2961#event-7007989699) at 2022-07-17 02:43 PM PDT -blulady,2022-07-18T03:59:28Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186736694) at 2022-07-17 08:59 PM PDT -blulady,2022-07-18T04:29:55Z,- blulady commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1186756429) at 2022-07-17 09:29 PM PDT -blulady,2022-07-18T04:30:08Z,- blulady closed issue by PR 3359: [2221](https://github.com/hackforla/website/issues/2221#event-7008811970) at 2022-07-17 09:30 PM PDT -blulady,2022-07-18T04:36:35Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1186760421) at 2022-07-17 09:36 PM PDT -blulady,2022-07-18T15:39:59Z,- blulady closed issue by PR 3375: [2953](https://github.com/hackforla/website/issues/2953#event-7013231672) at 2022-07-18 08:39 AM PDT -blulady,2022-07-18T15:43:43Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1187660781) at 2022-07-18 08:43 AM PDT -blulady,2022-07-19T01:15:46Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188489356) at 2022-07-18 06:15 PM PDT -blulady,2022-07-19T03:43:39Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188561059) at 2022-07-18 08:43 PM PDT -blulady,2022-07-20T02:13:47Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1189729480) at 2022-07-19 07:13 PM PDT -blulady,2022-07-20T03:28:38Z,- blulady opened issue: [3404](https://github.com/hackforla/website/issues/3404) at 2022-07-19 08:28 PM PDT -blulady,2022-07-20T03:43:54Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1189785266) at 2022-07-19 08:43 PM PDT -blulady,2022-07-21T17:55:57Z,- blulady submitted pull request review: [3394](https://github.com/hackforla/website/pull/3394#pullrequestreview-1046936484) at 2022-07-21 10:55 AM PDT -blulady,2022-07-22T03:18:33Z,- blulady closed issue by PR 3368: [2222](https://github.com/hackforla/website/issues/2222#event-7042768338) at 2022-07-21 08:18 PM PDT -blulady,2022-07-22T19:36:21Z,- blulady commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1192879825) at 2022-07-22 12:36 PM PDT -blulady,2022-07-23T17:57:18Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193164165) at 2022-07-23 10:57 AM PDT -blulady,2022-07-24T16:31:26Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193352428) at 2022-07-24 09:31 AM PDT -blulady,2022-07-24T17:41:46Z,- blulady commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1193363954) at 2022-07-24 10:41 AM PDT -blulady,2022-07-24T17:42:44Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1193364105) at 2022-07-24 10:42 AM PDT -blulady,2022-07-24T18:28:34Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1193370551) at 2022-07-24 11:28 AM PDT -blulady,2022-07-25T00:59:05Z,- blulady commented on pull request: [3419](https://github.com/hackforla/website/pull/3419#issuecomment-1193441740) at 2022-07-24 05:59 PM PDT -blulady,2022-07-25T04:54:05Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193577171) at 2022-07-24 09:54 PM PDT -blulady,2022-07-25T20:01:07Z,- blulady submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1049992784) at 2022-07-25 01:01 PM PDT -blulady,2022-07-25T20:01:16Z,- blulady closed issue by PR 3425: [3095](https://github.com/hackforla/website/issues/3095#event-7059359881) at 2022-07-25 01:01 PM PDT -blulady,2022-07-25T20:12:28Z,- blulady commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194570603) at 2022-07-25 01:12 PM PDT -blulady,2022-07-25T20:49:17Z,- blulady commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1194611884) at 2022-07-25 01:49 PM PDT -blulady,2022-07-25T22:39:05Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1194726081) at 2022-07-25 03:39 PM PDT -blulady,2022-07-25T22:50:20Z,- blulady commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1194734849) at 2022-07-25 03:50 PM PDT -blulady,2022-07-25T23:33:16Z,- blulady submitted pull request review: [3422](https://github.com/hackforla/website/pull/3422#pullrequestreview-1050192875) at 2022-07-25 04:33 PM PDT -blulady,2022-07-25T23:36:58Z,- blulady submitted pull request review: [3422](https://github.com/hackforla/website/pull/3422#pullrequestreview-1050194781) at 2022-07-25 04:36 PM PDT -blulady,2022-07-25T23:37:09Z,- blulady closed issue by PR 3422: [2104](https://github.com/hackforla/website/issues/2104#event-7060494264) at 2022-07-25 04:37 PM PDT -blulady,2022-07-25T23:49:32Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1194782292) at 2022-07-25 04:49 PM PDT -blulady,2022-07-26T15:44:51Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195652505) at 2022-07-26 08:44 AM PDT -blulady,2022-07-27T22:33:32Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197441491) at 2022-07-27 03:33 PM PDT -blulady,2022-07-31T17:26:00Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1200466392) at 2022-07-31 10:26 AM PDT -blulady,2022-08-01T18:01:51Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1201532158) at 2022-08-01 11:01 AM PDT -blulady,2022-08-01T18:20:06Z,- blulady submitted pull request review: [3441](https://github.com/hackforla/website/pull/3441#pullrequestreview-1057685987) at 2022-08-01 11:20 AM PDT -blulady,2022-08-01T18:20:15Z,- blulady closed issue by PR 3441: [3102](https://github.com/hackforla/website/issues/3102#event-7103815715) at 2022-08-01 11:20 AM PDT -blulady,2022-08-02T04:23:43Z,- blulady submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1058101276) at 2022-08-01 09:23 PM PDT -blulady,2022-08-04T20:48:40Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1205752171) at 2022-08-04 01:48 PM PDT -blulady,2022-08-04T21:12:46Z,- blulady submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1062594323) at 2022-08-04 02:12 PM PDT -blulady,2022-08-04T21:52:53Z,- blulady submitted pull request review: [3450](https://github.com/hackforla/website/pull/3450#pullrequestreview-1062627410) at 2022-08-04 02:52 PM PDT -blulady,2022-08-05T00:06:05Z,- blulady commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1205896710) at 2022-08-04 05:06 PM PDT -blulady,2022-08-05T02:33:52Z,- blulady closed issue by PR 3450: [3440](https://github.com/hackforla/website/issues/3440#event-7132600072) at 2022-08-04 07:33 PM PDT -blulady,2022-08-07T16:47:47Z,- blulady commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1207444808) at 2022-08-07 09:47 AM PDT -blulady,2022-08-08T21:25:12Z,- blulady commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1208627881) at 2022-08-08 02:25 PM PDT -blulady,2022-08-10T02:18:22Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1210073086) at 2022-08-09 07:18 PM PDT -blulady,2022-08-10T02:49:46Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1210088487) at 2022-08-09 07:49 PM PDT -blulady,2022-08-11T19:04:33Z,- blulady submitted pull request review: [3460](https://github.com/hackforla/website/pull/3460#pullrequestreview-1070215888) at 2022-08-11 12:04 PM PDT -blulady,2022-08-11T20:25:29Z,- blulady closed issue by PR 3460: [2814](https://github.com/hackforla/website/issues/2814#event-7174749827) at 2022-08-11 01:25 PM PDT -blulady,2022-08-11T20:51:50Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1212480889) at 2022-08-11 01:51 PM PDT -blulady,2022-08-11T21:14:35Z,- blulady submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1070374532) at 2022-08-11 02:14 PM PDT -blulady,2022-08-18T16:06:17Z,- blulady submitted pull request review: [3384](https://github.com/hackforla/website/pull/3384#pullrequestreview-1077636795) at 2022-08-18 09:06 AM PDT -blulady,2022-08-18T16:08:03Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1219675982) at 2022-08-18 09:08 AM PDT -blulady,2022-08-19T18:47:30Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1220995932) at 2022-08-19 11:47 AM PDT -blulady,2022-08-19T21:07:45Z,- blulady closed issue by PR 3475: [2821](https://github.com/hackforla/website/issues/2821#event-7225039891) at 2022-08-19 02:07 PM PDT -blulady,2022-08-19T21:21:30Z,- blulady closed issue by PR 3436: [2298](https://github.com/hackforla/website/issues/2298#event-7225092220) at 2022-08-19 02:21 PM PDT -blulady,2022-08-19T23:57:14Z,- blulady opened pull request: [3477](https://github.com/hackforla/website/pull/3477) at 2022-08-19 04:57 PM PDT -blulady,2022-08-19T23:57:57Z,- blulady pull request closed w/o merging: [3477](https://github.com/hackforla/website/pull/3477#event-7225524805) at 2022-08-19 04:57 PM PDT -blulady,2022-08-20T00:13:17Z,- blulady opened pull request: [3478](https://github.com/hackforla/website/pull/3478) at 2022-08-19 05:13 PM PDT -blulady,2022-08-22T04:10:43Z,- blulady opened pull request: [3479](https://github.com/hackforla/website/pull/3479) at 2022-08-21 09:10 PM PDT -blulady,2022-08-22T04:15:04Z,- blulady pull request closed w/o merging: [3479](https://github.com/hackforla/website/pull/3479#event-7229180387) at 2022-08-21 09:15 PM PDT -blulady,2022-08-24T01:11:37Z,- blulady submitted pull request review: [3474](https://github.com/hackforla/website/pull/3474#pullrequestreview-1083000508) at 2022-08-23 06:11 PM PDT -blulady,2022-08-24T01:18:10Z,- blulady pull request closed w/o merging: [3478](https://github.com/hackforla/website/pull/3478#event-7246567736) at 2022-08-23 06:18 PM PDT -blulady,2022-08-24T02:30:07Z,- blulady commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1225100803) at 2022-08-23 07:30 PM PDT -blulady,2022-08-24T03:26:08Z,- blulady submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1083086323) at 2022-08-23 08:26 PM PDT -blulady,2022-08-24T05:12:51Z,- blulady commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1225201966) at 2022-08-23 10:12 PM PDT -blulady,2022-08-24T19:16:27Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226137712) at 2022-08-24 12:16 PM PDT -blulady,2022-08-24T19:28:07Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226150778) at 2022-08-24 12:28 PM PDT -blulady,2022-08-24T19:49:59Z,- blulady opened pull request: [3485](https://github.com/hackforla/website/pull/3485) at 2022-08-24 12:49 PM PDT -blulady,2022-08-24T19:54:39Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226198275) at 2022-08-24 12:54 PM PDT -blulady,2022-08-24T19:57:01Z,- blulady pull request closed w/o merging: [3485](https://github.com/hackforla/website/pull/3485#event-7253900828) at 2022-08-24 12:57 PM PDT -blulady,2022-08-24T20:08:53Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226228179) at 2022-08-24 01:08 PM PDT -blulady,2022-08-24T20:37:06Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226286393) at 2022-08-24 01:37 PM PDT -blulady,2022-08-24T21:15:32Z,- blulady opened issue: [3487](https://github.com/hackforla/website/issues/3487) at 2022-08-24 02:15 PM PDT -blulady,2022-08-24T21:25:02Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226387332) at 2022-08-24 02:25 PM PDT -blulady,2022-08-25T14:58:55Z,- blulady submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1085612984) at 2022-08-25 07:58 AM PDT -blulady,2022-08-28T22:05:01Z,- blulady commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1229563335) at 2022-08-28 03:05 PM PDT -blulady,2022-09-08T19:23:05Z,- blulady submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1101298394) at 2022-09-08 12:23 PM PDT -blulady,2022-09-09T01:05:41Z,- blulady submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1101578542) at 2022-09-08 06:05 PM PDT -blulady,2022-09-09T01:05:48Z,- blulady closed issue by PR 3521: [3520](https://github.com/hackforla/website/issues/3520#event-7352440619) at 2022-09-08 06:05 PM PDT -blulady,2022-09-09T02:35:32Z,- blulady opened pull request: [3531](https://github.com/hackforla/website/pull/3531) at 2022-09-08 07:35 PM PDT -blulady,2022-09-09T02:39:23Z,- blulady pull request merged: [3531](https://github.com/hackforla/website/pull/3531#event-7352790043) at 2022-09-08 07:39 PM PDT -blulady,2022-09-09T03:01:38Z,- blulady commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1241443113) at 2022-09-08 08:01 PM PDT -blulady,2022-09-09T22:27:48Z,- blulady commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1242526998) at 2022-09-09 03:27 PM PDT -blulady,2022-09-12T18:08:59Z,- blulady submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1104611200) at 2022-09-12 11:08 AM PDT -blulady,2022-09-13T01:07:16Z,- blulady submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1104991850) at 2022-09-12 06:07 PM PDT -blulady,2022-09-13T04:23:36Z,- blulady commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1244879703) at 2022-09-12 09:23 PM PDT -blulady,2022-09-13T22:23:16Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246008654) at 2022-09-13 03:23 PM PDT -blulady,2022-09-13T22:59:27Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246031722) at 2022-09-13 03:59 PM PDT -blulady,2022-09-13T23:05:45Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246036494) at 2022-09-13 04:05 PM PDT -blulady,2022-09-13T23:17:40Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246044647) at 2022-09-13 04:17 PM PDT -blulady,2022-09-13T23:18:55Z,- blulady submitted pull request review: [3548](https://github.com/hackforla/website/pull/3548#pullrequestreview-1106553581) at 2022-09-13 04:18 PM PDT -blulady,2022-09-13T23:45:17Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246061485) at 2022-09-13 04:45 PM PDT -blulady,2022-09-18T19:58:10Z,- blulady submitted pull request review: [3559](https://github.com/hackforla/website/pull/3559#pullrequestreview-1111582146) at 2022-09-18 12:58 PM PDT -blulady,2022-09-18T19:59:26Z,- blulady closed issue by PR 3559: [2827](https://github.com/hackforla/website/issues/2827#event-7409382677) at 2022-09-18 12:59 PM PDT -blulady,2022-09-18T20:10:29Z,- blulady submitted pull request review: [3560](https://github.com/hackforla/website/pull/3560#pullrequestreview-1111583028) at 2022-09-18 01:10 PM PDT -blulady,2022-09-19T02:15:06Z,- blulady assigned to issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1201863585) at 2022-09-18 07:15 PM PDT -blulady,2022-09-19T03:56:46Z,- blulady closed issue by PR 3560: [2924](https://github.com/hackforla/website/issues/2924#event-7410235287) at 2022-09-18 08:56 PM PDT -blulady,2022-09-21T03:23:18Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1253156979) at 2022-09-20 08:23 PM PDT -blulady,2022-09-25T16:25:47Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1257228769) at 2022-09-25 09:25 AM PDT -blulady,2022-09-28T02:26:05Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1260306123) at 2022-09-27 07:26 PM PDT -blulady,2022-09-28T16:00:58Z,- blulady commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1261125508) at 2022-09-28 09:00 AM PDT -blulady,2022-09-29T16:30:05Z,- blulady commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1262521779) at 2022-09-29 09:30 AM PDT -blulady,2022-10-03T21:13:28Z,- blulady opened issue: [3598](https://github.com/hackforla/website/issues/3598) at 2022-10-03 02:13 PM PDT -blulady,2022-10-04T15:49:34Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1267213553) at 2022-10-04 08:49 AM PDT -blulady,2022-10-10T17:20:23Z,- blulady submitted pull request review: [3601](https://github.com/hackforla/website/pull/3601#pullrequestreview-1136337312) at 2022-10-10 10:20 AM PDT -blulady,2022-10-10T17:20:32Z,- blulady closed issue by PR 3586: [3447](https://github.com/hackforla/website/issues/3447#event-7555933662) at 2022-10-10 10:20 AM PDT -blulady,2022-10-10T19:26:40Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1273724296) at 2022-10-10 12:26 PM PDT -blulady,2022-10-10T19:45:54Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1273739673) at 2022-10-10 12:45 PM PDT -blulady,2022-10-11T17:10:27Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1275013715) at 2022-10-11 10:10 AM PDT -blulady,2022-10-12T02:39:46Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1275507713) at 2022-10-11 07:39 PM PDT -blulady,2022-10-12T17:18:29Z,- blulady commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276497640) at 2022-10-12 10:18 AM PDT -blulady,2022-10-14T03:16:25Z,- blulady submitted pull request review: [3617](https://github.com/hackforla/website/pull/3617#pullrequestreview-1141759426) at 2022-10-13 08:16 PM PDT -blulady,2022-10-14T03:16:33Z,- blulady closed issue by PR 3617: [2846](https://github.com/hackforla/website/issues/2846#event-7586604585) at 2022-10-13 08:16 PM PDT -blulady,2022-10-14T03:22:42Z,- blulady submitted pull request review: [3616](https://github.com/hackforla/website/pull/3616#pullrequestreview-1141763460) at 2022-10-13 08:22 PM PDT -blulady,2022-10-14T03:22:49Z,- blulady closed issue by PR 3616: [2850](https://github.com/hackforla/website/issues/2850#event-7586630119) at 2022-10-13 08:22 PM PDT -blulady,2022-10-14T03:26:02Z,- blulady submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1141765773) at 2022-10-13 08:26 PM PDT -blulady,2022-10-14T03:26:12Z,- blulady closed issue by PR 3615: [2845](https://github.com/hackforla/website/issues/2845#event-7586643404) at 2022-10-13 08:26 PM PDT -blulady,2022-10-16T18:10:26Z,- blulady submitted pull request review: [3620](https://github.com/hackforla/website/pull/3620#pullrequestreview-1143321884) at 2022-10-16 11:10 AM PDT -blulady,2022-10-16T18:10:42Z,- blulady closed issue by PR 3620: [2848](https://github.com/hackforla/website/issues/2848#event-7596731007) at 2022-10-16 11:10 AM PDT -blulady,2022-10-16T19:32:28Z,- blulady commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1280038240) at 2022-10-16 12:32 PM PDT -blulady,2022-10-16T20:08:47Z,- blulady opened issue: [3630](https://github.com/hackforla/website/issues/3630) at 2022-10-16 01:08 PM PDT -blulady,2022-10-17T20:27:30Z,- blulady submitted pull request review: [3623](https://github.com/hackforla/website/pull/3623#pullrequestreview-1144769374) at 2022-10-17 01:27 PM PDT -blulady,2022-10-17T20:27:38Z,- blulady closed issue by PR 3623: [3397](https://github.com/hackforla/website/issues/3397#event-7605631155) at 2022-10-17 01:27 PM PDT -blulady,2022-10-17T20:40:11Z,- blulady submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1144783435) at 2022-10-17 01:40 PM PDT -blulady,2022-10-17T20:40:21Z,- blulady closed issue by PR 3625: [2823](https://github.com/hackforla/website/issues/2823#event-7605729571) at 2022-10-17 01:40 PM PDT -blulady,2022-10-17T23:42:49Z,- blulady closed issue as completed: [3238](https://github.com/hackforla/website/issues/3238#event-7606656479) at 2022-10-17 04:42 PM PDT -blulady,2022-10-17T23:43:59Z,- blulady commented on issue: [2886](https://github.com/hackforla/website/issues/2886#issuecomment-1281635780) at 2022-10-17 04:43 PM PDT -blulady,2022-10-17T23:45:45Z,- blulady commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-1281636664) at 2022-10-17 04:45 PM PDT -blulady,2022-10-17T23:48:47Z,- blulady closed issue by PR 2982: [2886](https://github.com/hackforla/website/issues/2886#event-7606676023) at 2022-10-17 04:48 PM PDT -blulady,2022-10-18T21:42:00Z,- blulady opened issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-10-18 02:42 PM PDT -blulady,2022-10-18T22:17:02Z,- blulady opened issue: [3635](https://github.com/hackforla/website/issues/3635) at 2022-10-18 03:17 PM PDT -blulady,2022-10-18T22:47:16Z,- blulady opened issue: [3636](https://github.com/hackforla/website/issues/3636) at 2022-10-18 03:47 PM PDT -blulady,2022-10-19T02:34:01Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1283317963) at 2022-10-18 07:34 PM PDT -blulady,2022-10-20T18:10:22Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1285952341) at 2022-10-20 11:10 AM PDT -blulady,2022-10-20T19:14:00Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286019750) at 2022-10-20 12:14 PM PDT -blulady,2022-10-20T20:07:54Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286080063) at 2022-10-20 01:07 PM PDT -blulady,2022-10-20T20:08:14Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286080470) at 2022-10-20 01:08 PM PDT -blulady,2022-10-21T03:01:12Z,- blulady submitted pull request review: [3646](https://github.com/hackforla/website/pull/3646#pullrequestreview-1150256764) at 2022-10-20 08:01 PM PDT -blulady,2022-10-21T03:39:43Z,- blulady submitted pull request review: [3643](https://github.com/hackforla/website/pull/3643#pullrequestreview-1150284773) at 2022-10-20 08:39 PM PDT -blulady,2022-10-21T03:39:51Z,- blulady closed issue by PR 3643: [3630](https://github.com/hackforla/website/issues/3630#event-7636862408) at 2022-10-20 08:39 PM PDT -blulady,2022-10-21T14:56:01Z,- blulady commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1287080023) at 2022-10-21 07:56 AM PDT -blulady,2022-10-23T17:54:57Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1288164384) at 2022-10-23 10:54 AM PDT -blulady,2022-10-23T22:45:15Z,- blulady opened issue: [3651](https://github.com/hackforla/website/issues/3651) at 2022-10-23 03:45 PM PDT -blulady,2022-10-24T21:13:01Z,- blulady commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1289624054) at 2022-10-24 02:13 PM PDT -blulady,2022-10-24T21:23:22Z,- blulady commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1289634879) at 2022-10-24 02:23 PM PDT -blulady,2022-10-24T21:28:27Z,- blulady commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1289640175) at 2022-10-24 02:28 PM PDT -blulady,2022-10-24T21:29:58Z,- blulady commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1289641765) at 2022-10-24 02:29 PM PDT -blulady,2022-10-25T00:06:43Z,- blulady commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1289799619) at 2022-10-24 05:06 PM PDT -blulady,2022-10-25T00:23:46Z,- blulady submitted pull request review: [3654](https://github.com/hackforla/website/pull/3654#pullrequestreview-1153969598) at 2022-10-24 05:23 PM PDT -blulady,2022-10-25T00:49:42Z,- blulady commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1289832208) at 2022-10-24 05:49 PM PDT -blulady,2022-10-25T01:06:28Z,- blulady commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1289844269) at 2022-10-24 06:06 PM PDT -blulady,2022-10-25T01:11:29Z,- blulady commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1289847176) at 2022-10-24 06:11 PM PDT -blulady,2022-10-25T01:17:48Z,- blulady commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1289850676) at 2022-10-24 06:17 PM PDT -blulady,2022-10-25T01:20:14Z,- blulady commented on issue: [3501](https://github.com/hackforla/website/issues/3501#issuecomment-1289852355) at 2022-10-24 06:20 PM PDT -blulady,2022-10-25T01:21:28Z,- blulady commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1289853218) at 2022-10-24 06:21 PM PDT -blulady,2022-10-25T01:22:16Z,- blulady commented on issue: [3500](https://github.com/hackforla/website/issues/3500#issuecomment-1289853654) at 2022-10-24 06:22 PM PDT -blulady,2022-10-25T01:43:37Z,- blulady commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1289865865) at 2022-10-24 06:43 PM PDT -blulady,2022-10-25T03:08:12Z,- blulady commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1289916192) at 2022-10-24 08:08 PM PDT -blulady,2022-10-25T15:26:02Z,- blulady commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1290746124) at 2022-10-25 08:26 AM PDT -blulady,2022-10-26T02:13:28Z,- blulady commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1291398801) at 2022-10-25 07:13 PM PDT -blulady,2022-10-26T03:49:41Z,- blulady commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1291458963) at 2022-10-25 08:49 PM PDT -blulady,2022-10-26T04:12:43Z,- blulady commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1291471863) at 2022-10-25 09:12 PM PDT -blulady,2022-10-26T15:31:10Z,- blulady commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1292228745) at 2022-10-26 08:31 AM PDT -blulady,2022-10-26T17:33:35Z,- blulady submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1157002894) at 2022-10-26 10:33 AM PDT -blulady,2022-10-26T18:05:05Z,- blulady commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1292412100) at 2022-10-26 11:05 AM PDT -blulady,2022-10-26T18:34:31Z,- blulady commented on issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1292442374) at 2022-10-26 11:34 AM PDT -blulady,2022-10-26T18:50:50Z,- blulady commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1292460863) at 2022-10-26 11:50 AM PDT -blulady,2022-10-26T20:22:46Z,- blulady commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1292611321) at 2022-10-26 01:22 PM PDT -blulady,2022-10-26T20:25:00Z,- blulady commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1292613579) at 2022-10-26 01:25 PM PDT -blulady,2022-10-27T22:22:45Z,- blulady commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1294177769) at 2022-10-27 03:22 PM PDT -blulady,2022-10-28T01:13:11Z,- blulady commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1294289884) at 2022-10-27 06:13 PM PDT -blulady,2022-10-28T01:39:54Z,- blulady commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1294307548) at 2022-10-27 06:39 PM PDT -blulady,2022-10-28T02:36:31Z,- blulady commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1294368799) at 2022-10-27 07:36 PM PDT -blulady,2022-10-28T02:58:05Z,- blulady closed issue by PR 3668: [3403](https://github.com/hackforla/website/issues/3403#event-7687605431) at 2022-10-27 07:58 PM PDT -blulady,2022-10-28T03:37:25Z,- blulady closed issue by PR 3660: [2855](https://github.com/hackforla/website/issues/2855#event-7687749723) at 2022-10-27 08:37 PM PDT -blulady,2022-10-28T19:00:47Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1295350535) at 2022-10-28 12:00 PM PDT -blulady,2022-10-29T20:30:46Z,- blulady commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-10-29 01:30 PM PDT -blulady,2022-11-09T02:15:56Z,- blulady assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -blulady,2022-11-13T18:53:01Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1312796526) at 2022-11-13 10:53 AM PST -blulady,2022-11-13T19:30:42Z,- blulady commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1312803590) at 2022-11-13 11:30 AM PST -blulady,2022-11-13T19:34:42Z,- blulady closed issue as completed: [2909](https://github.com/hackforla/website/issues/2909#event-7798920856) at 2022-11-13 11:34 AM PST -blulady,2022-11-13T23:07:20Z,- blulady commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1312847620) at 2022-11-13 03:07 PM PST -blulady,2022-11-13T23:19:31Z,- blulady commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1312850301) at 2022-11-13 03:19 PM PST -blulady,2022-11-13T23:33:57Z,- blulady commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1312853119) at 2022-11-13 03:33 PM PST -blulady,2022-11-14T00:25:45Z,- blulady commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1312875737) at 2022-11-13 04:25 PM PST -blulady,2022-11-16T02:39:21Z,- blulady closed issue by PR 3833: [3701](https://github.com/hackforla/website/issues/3701#event-7819340305) at 2022-11-15 06:39 PM PST -blulady,2022-11-16T02:39:25Z,- blulady reopened issue: [3701](https://github.com/hackforla/website/issues/3701#event-7819340305) at 2022-11-15 06:39 PM PST -blulady,2022-11-16T05:57:36Z,- blulady opened issue: [3724](https://github.com/hackforla/website/issues/3724) at 2022-11-15 09:57 PM PST -blulady,2022-11-16T21:27:21Z,- blulady closed issue by PR 3721: [3678](https://github.com/hackforla/website/issues/3678#event-7828088617) at 2022-11-16 01:27 PM PST -blulady,2022-11-16T21:58:09Z,- blulady opened pull request: [3727](https://github.com/hackforla/website/pull/3727) at 2022-11-16 01:58 PM PST -blulady,2022-11-16T21:58:37Z,- blulady pull request closed w/o merging: [3727](https://github.com/hackforla/website/pull/3727#event-7828288838) at 2022-11-16 01:58 PM PST -blulady,2022-11-16T21:59:03Z,- blulady commented on pull request: [3727](https://github.com/hackforla/website/pull/3727#issuecomment-1317725694) at 2022-11-16 01:59 PM PST -blulady,2022-11-17T17:56:21Z,- blulady commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1319001614) at 2022-11-17 09:56 AM PST -blulady,2022-11-17T18:36:45Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1319048105) at 2022-11-17 10:36 AM PST -blulady,2022-11-17T19:17:41Z,- blulady commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1319090606) at 2022-11-17 11:17 AM PST -blulady,2022-11-18T22:45:01Z,- blulady commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1320612839) at 2022-11-18 02:45 PM PST -blulady,2022-11-19T05:03:30Z,- blulady commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1320803598) at 2022-11-18 09:03 PM PST -blulady,2022-11-20T17:53:06Z,- blulady commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1321200660) at 2022-11-20 09:53 AM PST -blulady,2022-11-20T18:31:25Z,- blulady opened issue: [3734](https://github.com/hackforla/website/issues/3734) at 2022-11-20 10:31 AM PST -blulady,2022-11-20T18:34:10Z,- blulady closed issue as completed: [3734](https://github.com/hackforla/website/issues/3734#event-7851977857) at 2022-11-20 10:34 AM PST -blulady,2022-11-20T18:56:23Z,- blulady commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1321213819) at 2022-11-20 10:56 AM PST -blulady,2022-11-20T19:26:28Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1321221243) at 2022-11-20 11:26 AM PST -blulady,2022-11-21T21:43:32Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1322689140) at 2022-11-21 01:43 PM PST -blulady,2022-11-22T03:45:21Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1322997710) at 2022-11-21 07:45 PM PST -blulady,2022-11-23T03:15:22Z,- blulady commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1324498845) at 2022-11-22 07:15 PM PST -blulady,2022-11-23T23:00:16Z,- blulady submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1192345186) at 2022-11-23 03:00 PM PST -blulady,2022-11-24T18:54:11Z,- blulady submitted pull request review: [3737](https://github.com/hackforla/website/pull/3737#pullrequestreview-1193536870) at 2022-11-24 10:54 AM PST -blulady,2022-11-24T18:54:24Z,- blulady closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-7888190542) at 2022-11-24 10:54 AM PST -blulady,2022-11-24T19:23:34Z,- blulady commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1326790494) at 2022-11-24 11:23 AM PST -blulady,2022-11-24T19:23:40Z,- blulady closed issue by PR 3736: [3691](https://github.com/hackforla/website/issues/3691#event-7888293631) at 2022-11-24 11:23 AM PST -blulady,2022-11-24T19:37:34Z,- blulady commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1326795900) at 2022-11-24 11:37 AM PST -blulady,2022-11-24T21:00:04Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1326831198) at 2022-11-24 01:00 PM PST -blulady,2022-11-25T00:02:42Z,- blulady opened issue: [3744](https://github.com/hackforla/website/issues/3744) at 2022-11-24 04:02 PM PST -blulady,2022-11-25T00:24:45Z,- blulady commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1326910205) at 2022-11-24 04:24 PM PST -blulady,2022-12-01T18:29:23Z,- blulady commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1334179554) at 2022-12-01 10:29 AM PST -blulady,2022-12-01T18:29:30Z,- blulady closed issue by PR 3753: [3316](https://github.com/hackforla/website/issues/3316#event-7934598176) at 2022-12-01 10:29 AM PST -blulady,2022-12-02T19:27:09Z,- blulady commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1335716749) at 2022-12-02 11:27 AM PST -blulady,2022-12-06T02:41:35Z,- blulady commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1338649341) at 2022-12-05 06:41 PM PST -blulady,2023-01-10T00:28:20Z,- blulady commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1376542118) at 2023-01-09 04:28 PM PST -blulady,2023-01-13T18:57:56Z,- blulady commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1382253422) at 2023-01-13 10:57 AM PST -blulady,2023-01-13T18:58:27Z,- blulady closed issue by PR 3717: [2904](https://github.com/hackforla/website/issues/2904#event-8223595071) at 2023-01-13 10:58 AM PST -blulady,2023-01-16T20:30:22Z,- blulady closed issue by PR 3816: [2871](https://github.com/hackforla/website/issues/2871#event-8239929134) at 2023-01-16 12:30 PM PST -blulady,2023-01-16T20:45:33Z,- blulady commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1384534224) at 2023-01-16 12:45 PM PST -blulady,2023-01-18T06:03:01Z,- blulady opened issue: [3840](https://github.com/hackforla/website/issues/3840) at 2023-01-17 10:03 PM PST -blulady,2023-01-19T19:02:08Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1397465497) at 2023-01-19 11:02 AM PST -blulady,2023-01-23T03:47:28Z,- blulady commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1399760208) at 2023-01-22 07:47 PM PST -blulady,2023-01-24T00:55:01Z,- blulady closed issue by PR 3847: [3399](https://github.com/hackforla/website/issues/3399#event-8339587345) at 2023-01-23 04:55 PM PST -blulady,2023-01-28T00:48:33Z,- blulady commented on pull request: [3884](https://github.com/hackforla/website/pull/3884#issuecomment-1407228054) at 2023-01-27 04:48 PM PST -blulady,2023-01-30T21:10:42Z,- blulady submitted pull request review: [3894](https://github.com/hackforla/website/pull/3894#pullrequestreview-1276043908) at 2023-01-30 01:10 PM PST -blulady,2023-01-31T18:33:26Z,- blulady closed issue by PR 3894: [2435](https://github.com/hackforla/website/issues/2435#event-8402659117) at 2023-01-31 10:33 AM PST -blulady,2023-02-06T00:35:55Z,- blulady submitted pull request review: [3939](https://github.com/hackforla/website/pull/3939#pullrequestreview-1284396396) at 2023-02-05 04:35 PM PST -blulady,2023-02-06T00:36:07Z,- blulady closed issue by PR 3939: [3890](https://github.com/hackforla/website/issues/3890#event-8442317784) at 2023-02-05 04:36 PM PST -blulady,2023-02-06T00:39:39Z,- blulady commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1418325618) at 2023-02-05 04:39 PM PST -blulady,2023-02-06T22:53:02Z,- blulady submitted pull request review: [3926](https://github.com/hackforla/website/pull/3926#pullrequestreview-1286141905) at 2023-02-06 02:53 PM PST -blulady,2023-02-06T22:53:14Z,- blulady closed issue by PR 3926: [3360](https://github.com/hackforla/website/issues/3360#event-8452546788) at 2023-02-06 02:53 PM PST -blulady,2023-02-07T02:11:52Z,- blulady opened issue: [3946](https://github.com/hackforla/website/issues/3946) at 2023-02-06 06:11 PM PST -blulady,2023-02-09T00:27:46Z,- blulady commented on pull request: [3956](https://github.com/hackforla/website/pull/3956#issuecomment-1423421948) at 2023-02-08 04:27 PM PST -blulady,2023-02-09T05:23:45Z,- blulady commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1423652915) at 2023-02-08 09:23 PM PST -blulady,2023-02-10T02:54:34Z,- blulady closed issue by PR 3927: [3895](https://github.com/hackforla/website/issues/3895#event-8485586240) at 2023-02-09 06:54 PM PST -blulady,2023-02-15T18:20:14Z,- blulady opened issue: [3985](https://github.com/hackforla/website/issues/3985) at 2023-02-15 10:20 AM PST -blulady,2023-02-15T18:23:59Z,- blulady commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1431817614) at 2023-02-15 10:23 AM PST -blulady,2023-02-16T17:30:12Z,- blulady commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1433455370) at 2023-02-16 09:30 AM PST -blulady,2023-02-17T02:21:05Z,- blulady closed issue by PR 3980: [3900](https://github.com/hackforla/website/issues/3900#event-8542914706) at 2023-02-16 06:21 PM PST -blulady,2023-02-17T02:48:12Z,- blulady submitted pull request review: [3988](https://github.com/hackforla/website/pull/3988#pullrequestreview-1302626715) at 2023-02-16 06:48 PM PST -blulady,2023-02-17T02:48:55Z,- blulady closed issue by PR 3988: [3059](https://github.com/hackforla/website/issues/3059#event-8543017900) at 2023-02-16 06:48 PM PST -blulady,2023-02-23T19:32:37Z,- blulady opened issue: [4033](https://github.com/hackforla/website/issues/4033) at 2023-02-23 11:32 AM PST -blulady,2023-02-23T19:34:07Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1442321272) at 2023-02-23 11:34 AM PST -blulady,2023-02-23T23:47:20Z,- blulady closed issue by PR 4021: [3986](https://github.com/hackforla/website/issues/3986#event-8596893589) at 2023-02-23 03:47 PM PST -blulady,2023-02-24T01:15:17Z,- blulady closed issue as completed: [3735](https://github.com/hackforla/website/issues/3735#event-8597266798) at 2023-02-23 05:15 PM PST -blulady,2023-02-24T05:48:13Z,- blulady commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442842920) at 2023-02-23 09:48 PM PST -blulady,2023-02-24T06:03:26Z,- blulady closed issue by PR 4032: [4009](https://github.com/hackforla/website/issues/4009#event-8598478958) at 2023-02-23 10:03 PM PST -blulady,2023-02-24T06:44:53Z,- blulady commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1442876290) at 2023-02-23 10:44 PM PST -blulady,2023-02-24T07:06:21Z,- blulady commented on pull request: [4018](https://github.com/hackforla/website/pull/4018#issuecomment-1442896235) at 2023-02-23 11:06 PM PST -blulady,2023-02-24T07:06:31Z,- blulady closed issue by PR 4018: [3976](https://github.com/hackforla/website/issues/3976#event-8598812767) at 2023-02-23 11:06 PM PST -blulady,2023-02-25T22:41:59Z,- blulady closed issue by PR 3810: [3773](https://github.com/hackforla/website/issues/3773#event-8608621783) at 2023-02-25 02:41 PM PST -blulady,2023-03-02T20:43:30Z,- blulady submitted pull request review: [4079](https://github.com/hackforla/website/pull/4079#pullrequestreview-1322579350) at 2023-03-02 12:43 PM PST -blulady,2023-03-02T21:14:59Z,- blulady submitted pull request review: [4091](https://github.com/hackforla/website/pull/4091#pullrequestreview-1322643684) at 2023-03-02 01:14 PM PST -blulady,2023-03-02T21:32:46Z,- blulady submitted pull request review: [4086](https://github.com/hackforla/website/pull/4086#pullrequestreview-1322682641) at 2023-03-02 01:32 PM PST -blulady,2023-03-04T18:14:49Z,- blulady commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1454828477) at 2023-03-04 10:14 AM PST -blulady,2023-03-04T18:17:24Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1454829354) at 2023-03-04 10:17 AM PST -blulady,2023-03-04T20:22:33Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1454864259) at 2023-03-04 12:22 PM PST -blulady,2023-03-08T22:47:29Z,- blulady submitted pull request review: [4102](https://github.com/hackforla/website/pull/4102#pullrequestreview-1331628444) at 2023-03-08 02:47 PM PST -blulady,2023-03-08T22:58:44Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1461002500) at 2023-03-08 02:58 PM PST -blulady,2023-03-09T18:46:17Z,- blulady commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1462589138) at 2023-03-09 10:46 AM PST -blulady,2023-03-09T18:56:15Z,- blulady submitted pull request review: [4086](https://github.com/hackforla/website/pull/4086#pullrequestreview-1333539220) at 2023-03-09 10:56 AM PST -blulady,2023-03-09T18:56:25Z,- blulady closed issue by PR 4086: [4007](https://github.com/hackforla/website/issues/4007#event-8711482335) at 2023-03-09 10:56 AM PST -blulady,2023-03-09T23:15:37Z,- blulady closed issue by PR 4140: [4023](https://github.com/hackforla/website/issues/4023#event-8713283360) at 2023-03-09 03:15 PM PST -blulady,2023-03-09T23:32:19Z,- blulady closed issue by PR 4123: [4084](https://github.com/hackforla/website/issues/4084#event-8713359145) at 2023-03-09 03:32 PM PST -blulady,2023-03-09T23:35:17Z,- blulady closed issue by PR 4119: [4041](https://github.com/hackforla/website/issues/4041#event-8713373897) at 2023-03-09 03:35 PM PST -blulady,2023-03-17T05:19:49Z,- blulady commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1473146702) at 2023-03-16 10:19 PM PDT -blulady,2023-03-17T05:21:31Z,- blulady commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1473147774) at 2023-03-16 10:21 PM PDT -blulady,2023-03-17T05:27:12Z,- blulady closed issue by PR 4181: [4031](https://github.com/hackforla/website/issues/4031#event-8774506596) at 2023-03-16 10:27 PM PDT -blulady,2023-03-23T21:03:19Z,- blulady closed issue by PR 4228: [3878](https://github.com/hackforla/website/issues/3878#event-8832447800) at 2023-03-23 02:03 PM PDT -blulady,2023-03-23T21:04:15Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1481906282) at 2023-03-23 02:04 PM PDT -blulady,2023-03-23T21:26:13Z,- blulady closed issue by PR 4224: [4220](https://github.com/hackforla/website/issues/4220#event-8832634991) at 2023-03-23 02:26 PM PDT -blulady,2023-03-23T21:34:34Z,- blulady closed issue by PR 4222: [4142](https://github.com/hackforla/website/issues/4142#event-8832698102) at 2023-03-23 02:34 PM PDT -blulady,2023-03-23T21:43:49Z,- blulady closed issue by PR 4215: [3874](https://github.com/hackforla/website/issues/3874#event-8832757515) at 2023-03-23 02:43 PM PDT -blulady,2023-03-23T21:48:51Z,- blulady closed issue by PR 4208: [3877](https://github.com/hackforla/website/issues/3877#event-8832793268) at 2023-03-23 02:48 PM PDT -blulady,2023-03-24T19:09:43Z,- blulady commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1483287869) at 2023-03-24 12:09 PM PDT -blulady,2023-03-24T19:34:41Z,- blulady commented on issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1483314890) at 2023-03-24 12:34 PM PDT -blulady,2023-03-30T16:22:59Z,- blulady submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1365492660) at 2023-03-30 09:22 AM PDT -blulady,2023-03-30T19:51:26Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1490856320) at 2023-03-30 12:51 PM PDT -blulady,2023-03-30T19:52:23Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1490857336) at 2023-03-30 12:52 PM PDT -blulady,2023-03-30T19:57:06Z,- blulady submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1365834355) at 2023-03-30 12:57 PM PDT -blulady,2023-03-30T20:06:52Z,- blulady closed issue by PR 4308: [4269](https://github.com/hackforla/website/issues/4269#event-8891429561) at 2023-03-30 01:06 PM PDT -blulady,2023-03-30T20:10:29Z,- blulady commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490885701) at 2023-03-30 01:10 PM PDT -blulady,2023-03-30T20:12:54Z,- blulady closed issue by PR 4305: [3868](https://github.com/hackforla/website/issues/3868#event-8891475897) at 2023-03-30 01:12 PM PDT -blulady,2023-03-31T01:14:05Z,- blulady submitted pull request review: [4347](https://github.com/hackforla/website/pull/4347#pullrequestreview-1366123720) at 2023-03-30 06:14 PM PDT -blulady,2023-03-31T01:14:15Z,- blulady closed issue by PR 4347: [3870](https://github.com/hackforla/website/issues/3870#event-8893126200) at 2023-03-30 06:14 PM PDT -blulady,2023-03-31T01:15:49Z,- blulady closed issue by PR 4306: [4284](https://github.com/hackforla/website/issues/4284#event-8893133183) at 2023-03-30 06:15 PM PDT -blulady,2023-04-03T04:26:16Z,- blulady commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1493644626) at 2023-04-02 09:26 PM PDT -blulady,2023-04-06T18:32:47Z,- blulady closed issue by PR 4411: [4378](https://github.com/hackforla/website/issues/4378#event-8948718647) at 2023-04-06 11:32 AM PDT -blulady,2023-04-13T23:18:43Z,- blulady commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507721728) at 2023-04-13 04:18 PM PDT -blulady,2023-04-13T23:24:19Z,- blulady commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1507724719) at 2023-04-13 04:24 PM PDT -blulady,2023-04-14T01:29:37Z,- blulady submitted pull request review: [4501](https://github.com/hackforla/website/pull/4501#pullrequestreview-1384472168) at 2023-04-13 06:29 PM PDT -blulady,2023-04-14T01:30:56Z,- blulady commented on pull request: [4501](https://github.com/hackforla/website/pull/4501#issuecomment-1507805429) at 2023-04-13 06:30 PM PDT -blulady,2023-04-14T01:33:32Z,- blulady closed issue by PR 4500: [4393](https://github.com/hackforla/website/issues/4393#event-9002657458) at 2023-04-13 06:33 PM PDT -blulady,2023-04-20T19:06:43Z,- blulady submitted pull request review: [4549](https://github.com/hackforla/website/pull/4549#pullrequestreview-1394603015) at 2023-04-20 12:06 PM PDT -blulady,2023-04-20T19:06:55Z,- blulady closed issue by PR 4549: [4451](https://github.com/hackforla/website/issues/4451#event-9060662345) at 2023-04-20 12:06 PM PDT -blulady,2023-04-20T19:08:11Z,- blulady commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1516814082) at 2023-04-20 12:08 PM PDT -blulady,2023-04-20T19:16:00Z,- blulady commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516823216) at 2023-04-20 12:16 PM PDT -blulady,2023-04-20T19:16:28Z,- blulady commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516823689) at 2023-04-20 12:16 PM PDT -blulady,2023-04-20T19:28:07Z,- blulady submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1394630261) at 2023-04-20 12:28 PM PDT -blulady,2023-04-20T19:28:23Z,- blulady closed issue by PR 4548: [4450](https://github.com/hackforla/website/issues/4450#event-9060817611) at 2023-04-20 12:28 PM PDT -blulady,2023-04-21T01:38:14Z,- blulady commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517136596) at 2023-04-20 06:38 PM PDT -blulady,2023-04-28T01:17:03Z,- blulady commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526845926) at 2023-04-27 06:17 PM PDT -blulady,2023-05-04T18:37:50Z,- blulady submitted pull request review: [4596](https://github.com/hackforla/website/pull/4596#pullrequestreview-1413704177) at 2023-05-04 11:37 AM PDT -blulady,2023-05-04T18:37:59Z,- blulady closed issue by PR 4596: [4513](https://github.com/hackforla/website/issues/4513#event-9170404141) at 2023-05-04 11:37 AM PDT -blulady,2023-05-04T19:29:15Z,- blulady opened pull request: [4598](https://github.com/hackforla/website/pull/4598) at 2023-05-04 12:29 PM PDT -blulady,2023-05-04T19:29:31Z,- blulady pull request closed w/o merging: [4598](https://github.com/hackforla/website/pull/4598#event-9170840907) at 2023-05-04 12:29 PM PDT -blulady,2023-05-04T19:50:45Z,- blulady closed issue by PR 4550: [4357](https://github.com/hackforla/website/issues/4357#event-9171031818) at 2023-05-04 12:50 PM PDT -blulady,2023-05-11T17:42:12Z,- blulady closed issue by PR 4640: [4585](https://github.com/hackforla/website/issues/4585#event-9225163921) at 2023-05-11 10:42 AM PDT -blulady,2023-05-11T17:49:29Z,- blulady commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1544433662) at 2023-05-11 10:49 AM PDT -blulady,2023-05-11T17:50:50Z,- blulady commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1544435473) at 2023-05-11 10:50 AM PDT -blulady,2023-05-11T17:54:45Z,- blulady commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1544440598) at 2023-05-11 10:54 AM PDT -blulady,2023-05-11T17:55:57Z,- blulady commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1544442322) at 2023-05-11 10:55 AM PDT -blulady,2023-05-11T18:11:04Z,- blulady commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1544461719) at 2023-05-11 11:11 AM PDT -blulady,2023-05-11T18:12:42Z,- blulady commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1544463633) at 2023-05-11 11:12 AM PDT -blulady,2023-05-11T19:04:52Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1544533888) at 2023-05-11 12:04 PM PDT -blulady,2023-05-11T20:39:52Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1544647452) at 2023-05-11 01:39 PM PDT -blulady,2023-05-18T18:07:36Z,- blulady closed issue as not planned: [4692](https://github.com/hackforla/website/issues/4692#event-9282495304) at 2023-05-18 11:07 AM PDT -blulady,2023-05-18T18:53:33Z,- blulady submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1433278066) at 2023-05-18 11:53 AM PDT -blulady,2023-05-18T18:59:03Z,- blulady submitted pull request review: [4661](https://github.com/hackforla/website/pull/4661#pullrequestreview-1433285419) at 2023-05-18 11:59 AM PDT -blulady,2023-05-18T19:01:56Z,- blulady submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1433289159) at 2023-05-18 12:01 PM PDT -blulady,2023-05-18T19:23:02Z,- blulady opened pull request: [4693](https://github.com/hackforla/website/pull/4693) at 2023-05-18 12:23 PM PDT -blulady,2023-05-18T19:23:21Z,- blulady pull request closed w/o merging: [4693](https://github.com/hackforla/website/pull/4693#event-9283075663) at 2023-05-18 12:23 PM PDT -blulady,2023-05-18T20:31:26Z,- blulady submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1433409617) at 2023-05-18 01:31 PM PDT -blulady,2023-05-18T20:33:17Z,- blulady closed issue by PR 4600: [4249](https://github.com/hackforla/website/issues/4249#event-9283569630) at 2023-05-18 01:33 PM PDT -blulady,2023-05-18T20:46:08Z,- blulady closed issue by PR 4668: [4587](https://github.com/hackforla/website/issues/4587#event-9283653455) at 2023-05-18 01:46 PM PDT -blulady,2023-05-18T21:23:43Z,- blulady closed issue by PR 4686: [4490](https://github.com/hackforla/website/issues/4490#event-9283904235) at 2023-05-18 02:23 PM PDT -blulady,2023-05-18T21:26:10Z,- blulady commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1553665939) at 2023-05-18 02:26 PM PDT -blulady,2023-05-25T18:34:12Z,- blulady submitted pull request review: [4710](https://github.com/hackforla/website/pull/4710#pullrequestreview-1444452380) at 2023-05-25 11:34 AM PDT -blulady,2023-05-25T18:34:32Z,- blulady closed issue by PR 4710: [4706](https://github.com/hackforla/website/issues/4706#event-9343296569) at 2023-05-25 11:34 AM PDT -blulady,2023-05-25T18:52:14Z,- blulady submitted pull request review: [4709](https://github.com/hackforla/website/pull/4709#pullrequestreview-1444476616) at 2023-05-25 11:52 AM PDT -blulady,2023-05-25T18:52:22Z,- blulady closed issue by PR 4709: [4699](https://github.com/hackforla/website/issues/4699#event-9343462317) at 2023-05-25 11:52 AM PDT -blulady,2023-05-25T18:53:23Z,- blulady closed issue by PR 4702: [4503](https://github.com/hackforla/website/issues/4503#event-9343471665) at 2023-05-25 11:53 AM PDT -blulady,2023-05-25T18:57:42Z,- blulady submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1444483792) at 2023-05-25 11:57 AM PDT -blulady,2023-05-26T02:57:28Z,- blulady submitted pull request review: [4733](https://github.com/hackforla/website/pull/4733#pullrequestreview-1444912083) at 2023-05-25 07:57 PM PDT -blulady,2023-06-01T08:20:42Z,- blulady opened issue: [4765](https://github.com/hackforla/website/issues/4765) at 2023-06-01 01:20 AM PDT -blulady,2023-06-01T21:03:44Z,- blulady commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1572780149) at 2023-06-01 02:03 PM PDT -blulady,2023-06-04T21:29:57Z,- blulady commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1575738734) at 2023-06-04 02:29 PM PDT -blulady,2023-06-09T04:04:21Z,- blulady submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1471190730) at 2023-06-08 09:04 PM PDT -blulady,2023-06-09T04:04:37Z,- blulady closed issue by PR 4755: [4659](https://github.com/hackforla/website/issues/4659#event-9480020618) at 2023-06-08 09:04 PM PDT -blulady,2023-06-18T21:52:13Z,- blulady submitted pull request review: [4848](https://github.com/hackforla/website/pull/4848#pullrequestreview-1485202439) at 2023-06-18 02:52 PM PDT -blulady,2023-06-18T22:46:21Z,- blulady submitted pull request review: [4847](https://github.com/hackforla/website/pull/4847#pullrequestreview-1485216012) at 2023-06-18 03:46 PM PDT -blulady,2023-06-18T22:47:20Z,- blulady submitted pull request review: [4845](https://github.com/hackforla/website/pull/4845#pullrequestreview-1485216143) at 2023-06-18 03:47 PM PDT -blulady,2023-06-18T23:12:27Z,- blulady submitted pull request review: [4838](https://github.com/hackforla/website/pull/4838#pullrequestreview-1485221204) at 2023-06-18 04:12 PM PDT -blulady,2023-06-18T23:31:23Z,- blulady opened pull request: [4853](https://github.com/hackforla/website/pull/4853) at 2023-06-18 04:31 PM PDT -blulady,2023-06-18T23:32:16Z,- blulady pull request closed w/o merging: [4853](https://github.com/hackforla/website/pull/4853#event-9562266150) at 2023-06-18 04:32 PM PDT -blulady,2023-06-23T21:51:48Z,- blulady submitted pull request review: [4837](https://github.com/hackforla/website/pull/4837#pullrequestreview-1496090553) at 2023-06-23 02:51 PM PDT -blulady,2023-06-24T21:12:34Z,- blulady submitted pull request review: [4881](https://github.com/hackforla/website/pull/4881#pullrequestreview-1496805058) at 2023-06-24 02:12 PM PDT -blulady,2023-06-28T02:13:25Z,- blulady commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1610532232) at 2023-06-27 07:13 PM PDT -blulady,2023-06-28T02:15:28Z,- blulady commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1610535236) at 2023-06-27 07:15 PM PDT -blulady,2023-07-12T02:12:48Z,- blulady commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1631745818) at 2023-07-11 07:12 PM PDT -blulady,2023-07-12T02:14:54Z,- blulady commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1631747177) at 2023-07-11 07:14 PM PDT -blulady,2023-07-12T02:17:49Z,- blulady commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1631748996) at 2023-07-11 07:17 PM PDT -blulady,2023-07-12T02:20:34Z,- blulady commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1631750619) at 2023-07-11 07:20 PM PDT -blulady,2023-07-12T02:34:02Z,- blulady commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1631761763) at 2023-07-11 07:34 PM PDT -blulady,2023-07-20T16:45:42Z,- blulady commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1644255141) at 2023-07-20 09:45 AM PDT -blulady,2023-07-20T16:50:07Z,- blulady submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1539697186) at 2023-07-20 09:50 AM PDT -blulady,2023-08-16T02:29:09Z,- blulady submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579708661) at 2023-08-15 07:29 PM PDT -blulady,2023-08-25T02:04:47Z,- blulady reopened pull request: [5251](https://github.com/hackforla/website/pull/5251#event-10132715407) at 2023-08-24 07:04 PM PDT -blulady,2023-08-25T02:20:45Z,- blulady reopened issue: [3831](https://github.com/hackforla/website/issues/3831#event-8772852578) at 2023-08-24 07:20 PM PDT -blulady,2023-10-25T02:28:12Z,- blulady submitted pull request review: [5768](https://github.com/hackforla/website/pull/5768#pullrequestreview-1696246064) at 2023-10-24 07:28 PM PDT -blulady,2023-11-22T03:30:38Z,- blulady submitted pull request review: [5928](https://github.com/hackforla/website/pull/5928#pullrequestreview-1743489661) at 2023-11-21 07:30 PM PST -bofadev,7838,SKILLS ISSUE -bofadev,2025-01-21T04:05:06Z,- bofadev opened issue: [7838](https://github.com/hackforla/website/issues/7838) at 2025-01-20 08:05 PM PST -bofadev,2025-01-21T04:05:06Z,- bofadev assigned to issue: [7838](https://github.com/hackforla/website/issues/7838) at 2025-01-20 08:05 PM PST -bofadev,2025-01-21T04:05:37Z,- bofadev commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2603613669) at 2025-01-20 08:05 PM PST -bofadev,2025-01-22T03:31:02Z,- bofadev commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2606211618) at 2025-01-21 07:31 PM PST -bonniewolfe,2022-10-16T16:55:56Z,- bonniewolfe commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1280008491) at 2022-10-16 09:55 AM PDT -bonniewolfe,2023-06-14T14:06:22Z,- bonniewolfe opened issue: [4835](https://github.com/hackforla/website/issues/4835) at 2023-06-14 07:06 AM PDT -bonniewolfe,2023-06-19T13:21:19Z,- bonniewolfe submitted pull request review: [4842](https://github.com/hackforla/website/pull/4842#pullrequestreview-1486228086) at 2023-06-19 06:21 AM PDT -bonniewolfe,2023-06-29T14:47:14Z,- bonniewolfe reopened issue: [4294](https://github.com/hackforla/website/issues/4294#event-9630210470) at 2023-06-29 07:47 AM PDT -bonniewolfe,2023-06-29T14:47:47Z,- bonniewolfe commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1613316117) at 2023-06-29 07:47 AM PDT -bonniewolfe,2023-06-29T16:49:12Z,- bonniewolfe commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1613522312) at 2023-06-29 09:49 AM PDT -bonniewolfe,2023-10-31T01:35:40Z,- bonniewolfe closed issue as completed: [5814](https://github.com/hackforla/website/issues/5814#event-10814646948) at 2023-10-30 06:35 PM PDT -bootcamp-brian,3912,SKILLS ISSUE -bootcamp-brian,2023-02-01T04:58:24Z,- bootcamp-brian opened issue: [3912](https://github.com/hackforla/website/issues/3912) at 2023-01-31 08:58 PM PST -bootcamp-brian,2023-02-01T04:58:31Z,- bootcamp-brian assigned to issue: [3912](https://github.com/hackforla/website/issues/3912) at 2023-01-31 08:58 PM PST -bootcamp-brian,2023-02-05T21:36:17Z,- bootcamp-brian assigned to issue: [3854](https://github.com/hackforla/website/issues/3854) at 2023-02-05 01:36 PM PST -bootcamp-brian,2023-02-05T22:18:23Z,- bootcamp-brian closed issue by PR 4273: [2833](https://github.com/hackforla/website/issues/2833#event-8441846519) at 2023-02-05 02:18 PM PST -bootcamp-brian,2023-02-05T22:18:26Z,- bootcamp-brian reopened issue: [2833](https://github.com/hackforla/website/issues/2833#event-8441846519) at 2023-02-05 02:18 PM PST -bootcamp-brian,2023-02-05T22:21:52Z,- bootcamp-brian commented on issue: [3854](https://github.com/hackforla/website/issues/3854#issuecomment-1418280947) at 2023-02-05 02:21 PM PST -bootcamp-brian,2023-02-05T22:25:34Z,- bootcamp-brian commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1418281696) at 2023-02-05 02:25 PM PST -bootcamp-brian,2023-02-05T22:44:05Z,- bootcamp-brian opened pull request: [3940](https://github.com/hackforla/website/pull/3940) at 2023-02-05 02:44 PM PST -bootcamp-brian,2023-02-05T22:49:01Z,- bootcamp-brian commented on issue: [3854](https://github.com/hackforla/website/issues/3854#issuecomment-1418286311) at 2023-02-05 02:49 PM PST -bootcamp-brian,2023-02-08T04:37:17Z,- bootcamp-brian pull request merged: [3940](https://github.com/hackforla/website/pull/3940#event-8464545142) at 2023-02-07 08:37 PM PST -bootcamp-brian,2023-02-13T19:51:36Z,- bootcamp-brian commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428563218) at 2023-02-13 11:51 AM PST -bootcamp-brian,2023-02-13T20:00:21Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296355586) at 2023-02-13 12:00 PM PST -bootcamp-brian,2023-02-13T20:20:54Z,- bootcamp-brian commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428625729) at 2023-02-13 12:20 PM PST -bootcamp-brian,2023-02-13T21:55:31Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296503294) at 2023-02-13 01:55 PM PST -bootcamp-brian,2023-02-13T22:25:58Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296536656) at 2023-02-13 02:25 PM PST -bootcamp-brian,2023-02-14T00:53:35Z,- bootcamp-brian commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428932849) at 2023-02-13 04:53 PM PST -bootcamp-brian,2023-02-14T01:34:56Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296701990) at 2023-02-13 05:34 PM PST -bootcamp-brian,2023-02-15T04:22:28Z,- bootcamp-brian assigned to issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1427172910) at 2023-02-14 08:22 PM PST -bootcamp-brian,2023-02-15T04:25:52Z,- bootcamp-brian commented on issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1430739814) at 2023-02-14 08:25 PM PST -bootcamp-brian,2023-02-15T05:15:11Z,- bootcamp-brian opened pull request: [3982](https://github.com/hackforla/website/pull/3982) at 2023-02-14 09:15 PM PST -bootcamp-brian,2023-02-15T05:19:03Z,- bootcamp-brian commented on issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1430772034) at 2023-02-14 09:19 PM PST -bootcamp-brian,2023-02-16T08:55:49Z,- bootcamp-brian pull request merged: [3982](https://github.com/hackforla/website/pull/3982#event-8534502136) at 2023-02-16 12:55 AM PST -bootcamp-brian,2023-02-16T19:50:32Z,- bootcamp-brian commented on pull request: [3988](https://github.com/hackforla/website/pull/3988#issuecomment-1433627095) at 2023-02-16 11:50 AM PST -bootcamp-brian,2023-02-16T20:15:21Z,- bootcamp-brian submitted pull request review: [3988](https://github.com/hackforla/website/pull/3988#pullrequestreview-1302214034) at 2023-02-16 12:15 PM PST -bootcamp-brian,2023-02-16T20:36:44Z,- bootcamp-brian commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1433683848) at 2023-02-16 12:36 PM PST -bootcamp-brian,2023-02-16T20:53:06Z,- bootcamp-brian submitted pull request review: [3980](https://github.com/hackforla/website/pull/3980#pullrequestreview-1302262372) at 2023-02-16 12:53 PM PST -bootcamp-brian,2023-02-23T17:46:22Z,- bootcamp-brian assigned to issue: [4009](https://github.com/hackforla/website/issues/4009) at 2023-02-23 09:46 AM PST -bootcamp-brian,2023-02-23T17:47:40Z,- bootcamp-brian commented on issue: [4009](https://github.com/hackforla/website/issues/4009#issuecomment-1442188021) at 2023-02-23 09:47 AM PST -bootcamp-brian,2023-02-23T18:20:59Z,- bootcamp-brian opened pull request: [4032](https://github.com/hackforla/website/pull/4032) at 2023-02-23 10:20 AM PST -bootcamp-brian,2023-02-23T18:23:03Z,- bootcamp-brian commented on issue: [4009](https://github.com/hackforla/website/issues/4009#issuecomment-1442232342) at 2023-02-23 10:23 AM PST -bootcamp-brian,2023-02-23T19:37:41Z,- bootcamp-brian commented on pull request: [4030](https://github.com/hackforla/website/pull/4030#issuecomment-1442324879) at 2023-02-23 11:37 AM PST -bootcamp-brian,2023-02-23T19:43:14Z,- bootcamp-brian submitted pull request review: [4030](https://github.com/hackforla/website/pull/4030#pullrequestreview-1312027531) at 2023-02-23 11:43 AM PST -bootcamp-brian,2023-02-23T19:58:42Z,- bootcamp-brian commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1442356284) at 2023-02-23 11:58 AM PST -bootcamp-brian,2023-02-23T20:06:28Z,- bootcamp-brian submitted pull request review: [4021](https://github.com/hackforla/website/pull/4021#pullrequestreview-1312063383) at 2023-02-23 12:06 PM PST -bootcamp-brian,2023-02-24T06:03:24Z,- bootcamp-brian pull request merged: [4032](https://github.com/hackforla/website/pull/4032#event-8598478815) at 2023-02-23 10:03 PM PST -bootcamp-brian,2023-02-24T06:46:50Z,- bootcamp-brian commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442877491) at 2023-02-23 10:46 PM PST -bootcamp-brian,2023-02-26T03:46:11Z,- bootcamp-brian assigned to issue: [4028](https://github.com/hackforla/website/issues/4028) at 2023-02-25 07:46 PM PST -bootcamp-brian,2023-02-26T03:47:22Z,- bootcamp-brian commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445261218) at 2023-02-25 07:47 PM PST -bootcamp-brian,2023-02-26T04:44:34Z,- bootcamp-brian commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445267738) at 2023-02-25 08:44 PM PST -bootcamp-brian,2023-02-26T22:12:46Z,- bootcamp-brian opened pull request: [4052](https://github.com/hackforla/website/pull/4052) at 2023-02-26 02:12 PM PST -bootcamp-brian,2023-02-26T22:14:20Z,- bootcamp-brian commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445481806) at 2023-02-26 02:14 PM PST -bootcamp-brian,2023-02-27T15:56:32Z,- bootcamp-brian pull request merged: [4052](https://github.com/hackforla/website/pull/4052#event-8617362886) at 2023-02-27 07:56 AM PST -bootcamp-brian,2023-02-27T18:28:15Z,- bootcamp-brian commented on pull request: [4052](https://github.com/hackforla/website/pull/4052#issuecomment-1446844479) at 2023-02-27 10:28 AM PST -bootcamp-brian,2023-03-03T02:02:50Z,- bootcamp-brian commented on pull request: [4092](https://github.com/hackforla/website/pull/4092#issuecomment-1452832233) at 2023-03-02 06:02 PM PST -bootcamp-brian,2023-03-03T02:14:39Z,- bootcamp-brian submitted pull request review: [4092](https://github.com/hackforla/website/pull/4092#pullrequestreview-1323008304) at 2023-03-02 06:14 PM PST -bootcamp-brian,2023-03-04T19:26:38Z,- bootcamp-brian assigned to issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1003694534) at 2023-03-04 11:26 AM PST -bootcamp-brian,2023-03-04T19:28:34Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1454850031) at 2023-03-04 11:28 AM PST -bootcamp-brian,2023-03-04T19:30:42Z,- bootcamp-brian commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1454850560) at 2023-03-04 11:30 AM PST -bootcamp-brian,2023-03-09T20:07:45Z,- bootcamp-brian commented on pull request: [4139](https://github.com/hackforla/website/pull/4139#issuecomment-1462700821) at 2023-03-09 12:07 PM PST -bootcamp-brian,2023-03-09T20:16:06Z,- bootcamp-brian submitted pull request review: [4139](https://github.com/hackforla/website/pull/4139#pullrequestreview-1333726390) at 2023-03-09 12:16 PM PST -bootcamp-brian,2023-03-09T20:19:37Z,- bootcamp-brian commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1462713091) at 2023-03-09 12:19 PM PST -bootcamp-brian,2023-03-09T20:22:20Z,- bootcamp-brian submitted pull request review: [4140](https://github.com/hackforla/website/pull/4140#pullrequestreview-1333740408) at 2023-03-09 12:22 PM PST -bootcamp-brian,2023-03-09T20:24:22Z,- bootcamp-brian commented on pull request: [4119](https://github.com/hackforla/website/pull/4119#issuecomment-1462723917) at 2023-03-09 12:24 PM PST -bootcamp-brian,2023-03-09T20:26:54Z,- bootcamp-brian submitted pull request review: [4119](https://github.com/hackforla/website/pull/4119#pullrequestreview-1333749348) at 2023-03-09 12:26 PM PST -bootcamp-brian,2023-03-11T04:43:00Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1464824468) at 2023-03-10 09:43 PM PDT -bootcamp-brian,2023-03-16T22:37:14Z,- bootcamp-brian commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472854314) at 2023-03-16 03:37 PM PDT -bootcamp-brian,2023-03-16T22:46:51Z,- bootcamp-brian submitted pull request review: [4196](https://github.com/hackforla/website/pull/4196#pullrequestreview-1344874138) at 2023-03-16 03:46 PM PDT -bootcamp-brian,2023-03-16T22:57:24Z,- bootcamp-brian commented on pull request: [4195](https://github.com/hackforla/website/pull/4195#issuecomment-1472869372) at 2023-03-16 03:57 PM PDT -bootcamp-brian,2023-03-16T23:05:18Z,- bootcamp-brian submitted pull request review: [4195](https://github.com/hackforla/website/pull/4195#pullrequestreview-1344908839) at 2023-03-16 04:05 PM PDT -bootcamp-brian,2023-03-17T20:46:30Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1474387715) at 2023-03-17 01:46 PM PDT -bootcamp-brian,2023-03-19T17:31:55Z,- bootcamp-brian commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1475333742) at 2023-03-19 10:31 AM PDT -bootcamp-brian,2023-03-19T17:32:09Z,- bootcamp-brian commented on pull request: [4203](https://github.com/hackforla/website/pull/4203#issuecomment-1475333792) at 2023-03-19 10:32 AM PDT -bootcamp-brian,2023-03-19T19:58:59Z,- bootcamp-brian submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347569017) at 2023-03-19 12:58 PM PDT -bootcamp-brian,2023-03-19T20:04:11Z,- bootcamp-brian submitted pull request review: [4203](https://github.com/hackforla/website/pull/4203#pullrequestreview-1347569819) at 2023-03-19 01:04 PM PDT -bootcamp-brian,2023-03-19T20:26:55Z,- bootcamp-brian submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347572720) at 2023-03-19 01:26 PM PDT -bootcamp-brian,2023-03-23T20:00:00Z,- bootcamp-brian commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1481814809) at 2023-03-23 01:00 PM PDT -bootcamp-brian,2023-03-23T20:09:20Z,- bootcamp-brian submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1355495194) at 2023-03-23 01:09 PM PDT -bootcamp-brian,2023-03-23T20:49:45Z,- bootcamp-brian opened issue: [4264](https://github.com/hackforla/website/issues/4264) at 2023-03-23 01:49 PM PDT -bootcamp-brian,2023-03-24T18:52:23Z,- bootcamp-brian closed issue as completed: [3912](https://github.com/hackforla/website/issues/3912#event-8841847133) at 2023-03-24 11:52 AM PDT -bootcamp-brian,2023-03-25T05:40:56Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1483732033) at 2023-03-24 10:40 PM PDT -bootcamp-brian,2023-03-26T17:20:38Z,- bootcamp-brian commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1484163266) at 2023-03-26 10:20 AM PDT -bootcamp-brian,2023-03-26T17:20:49Z,- bootcamp-brian commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1484163296) at 2023-03-26 10:20 AM PDT -bootcamp-brian,2023-03-27T20:05:11Z,- bootcamp-brian submitted pull request review: [4278](https://github.com/hackforla/website/pull/4278#pullrequestreview-1359793222) at 2023-03-27 01:05 PM PDT -bootcamp-brian,2023-03-27T20:21:08Z,- bootcamp-brian submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1359813967) at 2023-03-27 01:21 PM PDT -bootcamp-brian,2023-03-28T19:54:18Z,- bootcamp-brian submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1361812391) at 2023-03-28 12:54 PM PDT -bootcamp-brian,2023-03-28T19:56:50Z,- bootcamp-brian submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1361815745) at 2023-03-28 12:56 PM PDT -bootcamp-brian,2023-03-28T20:02:26Z,- bootcamp-brian commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1487521436) at 2023-03-28 01:02 PM PDT -bootcamp-brian,2023-03-29T18:11:15Z,- bootcamp-brian submitted pull request review: [4278](https://github.com/hackforla/website/pull/4278#pullrequestreview-1363698609) at 2023-03-29 11:11 AM PDT -bootcamp-brian,2023-04-06T19:26:56Z,- bootcamp-brian commented on pull request: [4428](https://github.com/hackforla/website/pull/4428#issuecomment-1499517049) at 2023-04-06 12:26 PM PDT -bootcamp-brian,2023-04-06T19:28:44Z,- bootcamp-brian submitted pull request review: [4428](https://github.com/hackforla/website/pull/4428#pullrequestreview-1375449391) at 2023-04-06 12:28 PM PDT -bootcamp-brian,2023-04-06T19:36:25Z,- bootcamp-brian commented on pull request: [4430](https://github.com/hackforla/website/pull/4430#issuecomment-1499525917) at 2023-04-06 12:36 PM PDT -bootcamp-brian,2023-04-06T19:39:21Z,- bootcamp-brian submitted pull request review: [4430](https://github.com/hackforla/website/pull/4430#pullrequestreview-1375460702) at 2023-04-06 12:39 PM PDT -bootcamp-brian,2023-04-06T19:43:30Z,- bootcamp-brian commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499532482) at 2023-04-06 12:43 PM PDT -bootcamp-brian,2023-04-06T19:46:28Z,- bootcamp-brian submitted pull request review: [4433](https://github.com/hackforla/website/pull/4433#pullrequestreview-1375468548) at 2023-04-06 12:46 PM PDT -bootcamp-brian,2023-04-06T19:48:21Z,- bootcamp-brian assigned to issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1493374309) at 2023-04-06 12:48 PM PDT -bootcamp-brian,2023-04-06T19:51:56Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1499540164) at 2023-04-06 12:51 PM PDT -bootcamp-brian,2023-04-06T20:00:34Z,- bootcamp-brian commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499548400) at 2023-04-06 01:00 PM PDT -bootcamp-brian,2023-04-06T20:28:56Z,- bootcamp-brian submitted pull request review: [4433](https://github.com/hackforla/website/pull/4433#pullrequestreview-1375531568) at 2023-04-06 01:28 PM PDT -bootcamp-brian,2023-04-12T03:01:58Z,- bootcamp-brian opened issue: [4479](https://github.com/hackforla/website/issues/4479) at 2023-04-11 08:01 PM PDT -bootcamp-brian,2023-04-15T02:58:12Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1509479700) at 2023-04-14 07:58 PM PDT -bootcamp-brian,2023-04-19T03:21:50Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1514077867) at 2023-04-18 08:21 PM PDT -bootcamp-brian,2023-04-19T03:46:00Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1514091396) at 2023-04-18 08:46 PM PDT -bootcamp-brian,2023-04-22T02:13:09Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1396521415) at 2023-04-21 07:13 PM PDT -bootcamp-brian,2023-04-22T06:53:26Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1518536843) at 2023-04-21 11:53 PM PDT -bootcamp-brian,2023-04-23T18:53:46Z,- bootcamp-brian commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1519131586) at 2023-04-23 11:53 AM PDT -bootcamp-brian,2023-04-26T23:42:29Z,- bootcamp-brian opened issue: [4568](https://github.com/hackforla/website/issues/4568) at 2023-04-26 04:42 PM PDT -bootcamp-brian,2023-04-26T23:58:07Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1524234312) at 2023-04-26 04:58 PM PDT -bootcamp-brian,2023-04-27T00:11:50Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1524258489) at 2023-04-26 05:11 PM PDT -bootcamp-brian,2023-04-27T21:45:37Z,- bootcamp-brian closed issue by PR 4570: [4413](https://github.com/hackforla/website/issues/4413#event-9119036247) at 2023-04-27 02:45 PM PDT -bootcamp-brian,2023-04-27T21:50:26Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526557605) at 2023-04-27 02:50 PM PDT -bootcamp-brian,2023-04-27T21:50:35Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1404953673) at 2023-04-27 02:50 PM PDT -bootcamp-brian,2023-04-28T01:01:41Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1405096816) at 2023-04-27 06:01 PM PDT -bootcamp-brian,2023-04-28T01:26:16Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526850935) at 2023-04-27 06:26 PM PDT -bootcamp-brian,2023-04-28T01:32:47Z,- bootcamp-brian commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1526855180) at 2023-04-27 06:32 PM PDT -bootcamp-brian,2023-04-28T02:50:32Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526906517) at 2023-04-27 07:50 PM PDT -bootcamp-brian,2023-04-28T21:14:56Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1406612199) at 2023-04-28 02:14 PM PDT -bootcamp-brian,2023-04-28T21:15:13Z,- bootcamp-brian closed issue by PR 4545: [4158](https://github.com/hackforla/website/issues/4158#event-9128475122) at 2023-04-28 02:15 PM PDT -bootcamp-brian,2023-04-30T00:19:20Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1528903708) at 2023-04-29 05:19 PM PDT -bootcamp-brian,2023-05-02T21:47:14Z,- bootcamp-brian commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1532197253) at 2023-05-02 02:47 PM PDT -bootcamp-brian,2023-05-05T00:49:39Z,- bootcamp-brian opened pull request: [4600](https://github.com/hackforla/website/pull/4600) at 2023-05-04 05:49 PM PDT -bootcamp-brian,2023-05-07T16:24:22Z,- bootcamp-brian assigned to issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1537484511) at 2023-05-07 09:24 AM PDT -bootcamp-brian,2023-05-11T18:12:51Z,- bootcamp-brian assigned to issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1543751720) at 2023-05-11 11:12 AM PDT -bootcamp-brian,2023-05-11T18:13:05Z,- bootcamp-brian commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1544464036) at 2023-05-11 11:13 AM PDT -bootcamp-brian,2023-05-11T22:49:18Z,- bootcamp-brian commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1544789849) at 2023-05-11 03:49 PM PDT -bootcamp-brian,2023-05-14T03:53:42Z,- bootcamp-brian unassigned from issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1544464154) at 2023-05-13 08:53 PM PDT -bootcamp-brian,2023-05-18T20:33:15Z,- bootcamp-brian pull request merged: [4600](https://github.com/hackforla/website/pull/4600#event-9283569419) at 2023-05-18 01:33 PM PDT -bootcamp-brian,2023-05-19T06:30:43Z,- bootcamp-brian closed issue by PR 4691: [4687](https://github.com/hackforla/website/issues/4687#event-9286175735) at 2023-05-18 11:30 PM PDT -bphan002,4060,SKILLS ISSUE -bphan002,2023-03-01T04:02:31Z,- bphan002 opened issue: [4060](https://github.com/hackforla/website/issues/4060) at 2023-02-28 08:02 PM PST -bphan002,2023-03-01T04:08:51Z,- bphan002 assigned to issue: [4060](https://github.com/hackforla/website/issues/4060) at 2023-02-28 08:08 PM PST -bphan002,2023-04-01T18:19:52Z,- bphan002 commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1493066548) at 2023-04-01 11:19 AM PDT -bphan002,2023-04-03T18:38:24Z,- bphan002 assigned to issue: [4379](https://github.com/hackforla/website/issues/4379) at 2023-04-03 11:38 AM PDT -bphan002,2023-04-03T20:51:28Z,- bphan002 commented on issue: [4379](https://github.com/hackforla/website/issues/4379#issuecomment-1494963991) at 2023-04-03 01:51 PM PDT -bphan002,2023-04-03T22:38:37Z,- bphan002 opened pull request: [4391](https://github.com/hackforla/website/pull/4391) at 2023-04-03 03:38 PM PDT -bphan002,2023-04-04T20:15:53Z,- bphan002 reopened issue: [4060](https://github.com/hackforla/website/issues/4060#event-8928424107) at 2023-04-04 01:15 PM PDT -bphan002,2023-04-06T02:52:52Z,- bphan002 pull request merged: [4391](https://github.com/hackforla/website/pull/4391#event-8941134697) at 2023-04-05 07:52 PM PDT -bphan002,2023-04-12T05:48:34Z,- bphan002 commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1504691867) at 2023-04-11 10:48 PM PDT -bphan002,2023-04-16T17:36:38Z,- bphan002 assigned to issue: [4381](https://github.com/hackforla/website/issues/4381) at 2023-04-16 10:36 AM PDT -bphan002,2023-04-24T03:50:19Z,- bphan002 commented on issue: [4381](https://github.com/hackforla/website/issues/4381#issuecomment-1519344297) at 2023-04-23 08:50 PM PDT -bphan002,2023-04-24T04:51:09Z,- bphan002 opened pull request: [4560](https://github.com/hackforla/website/pull/4560) at 2023-04-23 09:51 PM PDT -bphan002,2023-04-25T16:12:29Z,- bphan002 commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1522064995) at 2023-04-25 09:12 AM PDT -bphan002,2023-04-26T02:27:10Z,- bphan002 pull request merged: [4560](https://github.com/hackforla/website/pull/4560#event-9098240049) at 2023-04-25 07:27 PM PDT -bphan002,2023-04-28T20:06:44Z,- bphan002 assigned to issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1526823489) at 2023-04-28 01:06 PM PDT -bphan002,2023-04-28T20:07:56Z,- bphan002 commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528036945) at 2023-04-28 01:07 PM PDT -bphan002,2023-04-28T23:39:40Z,- bphan002 commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528213103) at 2023-04-28 04:39 PM PDT -bphan002,2023-05-01T00:49:32Z,- bphan002 opened pull request: [4586](https://github.com/hackforla/website/pull/4586) at 2023-04-30 05:49 PM PDT -bphan002,2023-05-02T04:23:36Z,- bphan002 submitted pull request review: [4586](https://github.com/hackforla/website/pull/4586#pullrequestreview-1408370623) at 2023-05-01 09:23 PM PDT -bphan002,2023-05-03T02:41:27Z,- bphan002 commented on pull request: [4586](https://github.com/hackforla/website/pull/4586#issuecomment-1532390252) at 2023-05-02 07:41 PM PDT -bphan002,2023-05-04T01:18:50Z,- bphan002 pull request merged: [4586](https://github.com/hackforla/website/pull/4586#event-9161646221) at 2023-05-03 06:18 PM PDT -bphan002,2023-05-05T06:27:21Z,- bphan002 assigned to issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1518511032) at 2023-05-04 11:27 PM PDT -bphan002,2023-05-05T06:28:39Z,- bphan002 commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1535774841) at 2023-05-04 11:28 PM PDT -bphan002,2023-05-10T02:25:29Z,- bphan002 commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1541198131) at 2023-05-09 07:25 PM PDT -bphan002,2023-05-10T03:29:06Z,- bphan002 submitted pull request review: [4643](https://github.com/hackforla/website/pull/4643#pullrequestreview-1419727026) at 2023-05-09 08:29 PM PDT -bphan002,2023-05-10T05:25:45Z,- bphan002 commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1541371401) at 2023-05-09 10:25 PM PDT -bphan002,2023-05-10T19:26:01Z,- bphan002 commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1542694013) at 2023-05-10 12:26 PM PDT -bphan002,2023-05-10T19:44:51Z,- bphan002 commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1542714122) at 2023-05-10 12:44 PM PDT -bphan002,2023-05-10T20:09:38Z,- bphan002 commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1542744947) at 2023-05-10 01:09 PM PDT -bphan002,2023-05-11T04:46:59Z,- bphan002 opened pull request: [4650](https://github.com/hackforla/website/pull/4650) at 2023-05-10 09:46 PM PDT -bphan002,2023-05-12T03:07:25Z,- bphan002 submitted pull request review: [4646](https://github.com/hackforla/website/pull/4646#pullrequestreview-1423703819) at 2023-05-11 08:07 PM PDT -bphan002,2023-05-13T05:02:44Z,- bphan002 commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1546528816) at 2023-05-12 10:02 PM PDT -bphan002,2023-05-13T05:03:56Z,- bphan002 closed issue as completed: [4060](https://github.com/hackforla/website/issues/4060#event-9237805124) at 2023-05-12 10:03 PM PDT -bphan002,2023-05-17T02:50:59Z,- bphan002 commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1550609436) at 2023-05-16 07:50 PM PDT -bphan002,2023-05-19T17:46:36Z,- bphan002 commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1555025230) at 2023-05-19 10:46 AM PDT -bphan002,2023-05-20T05:39:12Z,- bphan002 commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1555617316) at 2023-05-19 10:39 PM PDT -bphan002,2023-05-24T02:14:21Z,- bphan002 commented on pull request: [4709](https://github.com/hackforla/website/pull/4709#issuecomment-1560362831) at 2023-05-23 07:14 PM PDT -bphan002,2023-05-24T04:42:50Z,- bphan002 submitted pull request review: [4709](https://github.com/hackforla/website/pull/4709#pullrequestreview-1440922940) at 2023-05-23 09:42 PM PDT -bphan002,2023-06-14T23:25:45Z,- bphan002 assigned to issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1588139423) at 2023-06-14 04:25 PM PDT -bphan002,2023-06-14T23:26:51Z,- bphan002 commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1592120551) at 2023-06-14 04:26 PM PDT -bphan002,2023-06-20T00:08:53Z,- bphan002 opened pull request: [4863](https://github.com/hackforla/website/pull/4863) at 2023-06-19 05:08 PM PDT -bphan002,2023-06-20T16:01:09Z,- bphan002 pull request closed w/o merging: [4863](https://github.com/hackforla/website/pull/4863#event-9581519557) at 2023-06-20 09:01 AM PDT -bphan002,2023-06-20T19:28:09Z,- bphan002 opened pull request: [4865](https://github.com/hackforla/website/pull/4865) at 2023-06-20 12:28 PM PDT -bphan002,2023-06-20T19:29:57Z,- bphan002 closed issue by PR 4866: [4787](https://github.com/hackforla/website/issues/4787#event-9583505285) at 2023-06-20 12:29 PM PDT -bphan002,2023-06-20T19:30:14Z,- bphan002 reopened issue: [4787](https://github.com/hackforla/website/issues/4787#event-9583505285) at 2023-06-20 12:30 PM PDT -bphan002,2023-06-20T19:30:30Z,- bphan002 pull request closed w/o merging: [4865](https://github.com/hackforla/website/pull/4865#event-9583509093) at 2023-06-20 12:30 PM PDT -bphan002,2023-06-20T21:26:13Z,- bphan002 opened pull request: [4866](https://github.com/hackforla/website/pull/4866) at 2023-06-20 02:26 PM PDT -bphan002,2023-06-25T04:17:06Z,- bphan002 pull request merged: [4866](https://github.com/hackforla/website/pull/4866#event-9628600636) at 2023-06-24 09:17 PM PDT -bphan002,2023-07-18T20:01:26Z,- bphan002 assigned to issue: [4504](https://github.com/hackforla/website/issues/4504#issuecomment-1517103173) at 2023-07-18 01:01 PM PDT -bphan002,2023-07-18T20:02:13Z,- bphan002 commented on issue: [4504](https://github.com/hackforla/website/issues/4504#issuecomment-1640919997) at 2023-07-18 01:02 PM PDT -bphan002,2023-07-24T00:39:38Z,- bphan002 opened pull request: [5055](https://github.com/hackforla/website/pull/5055) at 2023-07-23 05:39 PM PDT -bphan002,2023-07-26T02:26:22Z,- bphan002 commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1650876717) at 2023-07-25 07:26 PM PDT -bphan002,2023-07-27T03:24:13Z,- bphan002 submitted pull request review: [5061](https://github.com/hackforla/website/pull/5061#pullrequestreview-1548937522) at 2023-07-26 08:24 PM PDT -bphan002,2023-08-01T22:21:12Z,- bphan002 commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1661176306) at 2023-08-01 03:21 PM PDT -bphan002,2023-08-09T04:13:04Z,- bphan002 commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1670624670) at 2023-08-08 09:13 PM PDT -bphan002,2023-08-10T09:43:17Z,- bphan002 pull request merged: [5055](https://github.com/hackforla/website/pull/5055#event-10057111324) at 2023-08-10 02:43 AM PDT -bphan002,2023-08-13T22:46:16Z,- bphan002 assigned to issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1641401166) at 2023-08-13 03:46 PM PDT -bphan002,2023-08-13T22:47:34Z,- bphan002 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1676484074) at 2023-08-13 03:47 PM PDT -bphan002,2023-08-21T21:53:48Z,- bphan002 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1687095970) at 2023-08-21 02:53 PM PDT -bphan002,2023-08-24T08:33:09Z,- bphan002 opened pull request: [5298](https://github.com/hackforla/website/pull/5298) at 2023-08-24 01:33 AM PDT -bphan002,2023-09-12T22:16:30Z,- bphan002 commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1716590980) at 2023-09-12 03:16 PM PDT -bphan002,2023-09-16T06:51:02Z,- bphan002 commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1722155695) at 2023-09-15 11:51 PM PDT -bphan002,2023-09-17T21:55:18Z,- bphan002 submitted pull request review: [5549](https://github.com/hackforla/website/pull/5549#pullrequestreview-1630131440) at 2023-09-17 02:55 PM PDT -bphan002,2023-09-26T07:16:57Z,- bphan002 pull request merged: [5298](https://github.com/hackforla/website/pull/5298#event-10470990112) at 2023-09-26 12:16 AM PDT -bphan002,2023-09-28T16:07:11Z,- bphan002 commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1739621909) at 2023-09-28 09:07 AM PDT -bphan002,2023-09-29T22:53:32Z,- bphan002 commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741562882) at 2023-09-29 03:53 PM PDT -bphan002,2023-09-30T00:33:43Z,- bphan002 commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741604425) at 2023-09-29 05:33 PM PDT -bphan002,2023-09-30T18:27:48Z,- bphan002 commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741831274) at 2023-09-30 11:27 AM PDT -bphan002,2023-10-06T00:08:35Z,- bphan002 submitted pull request review: [5573](https://github.com/hackforla/website/pull/5573#pullrequestreview-1660939467) at 2023-10-05 05:08 PM PDT -bphan002,2023-10-11T02:29:15Z,- bphan002 commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1756646055) at 2023-10-10 07:29 PM PDT -bphan002,2023-11-13T07:16:19Z,- bphan002 commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1807583457) at 2023-11-12 11:16 PM PST -bradyse,2022-06-14T16:04:19Z,- bradyse commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1155400747) at 2022-06-14 09:04 AM PDT -braguda,3406,SKILLS ISSUE -braguda,2022-07-20T04:02:30Z,- braguda opened issue: [3406](https://github.com/hackforla/website/issues/3406) at 2022-07-19 09:02 PM PDT -braguda,2022-07-20T04:05:05Z,- braguda assigned to issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1189801828) at 2022-07-19 09:05 PM PDT -braguda,2022-07-20T04:18:24Z,- braguda assigned to issue: [2820](https://github.com/hackforla/website/issues/2820#issuecomment-1046330525) at 2022-07-19 09:18 PM PDT -braguda,2022-07-20T04:41:20Z,- braguda commented on issue: [2820](https://github.com/hackforla/website/issues/2820#issuecomment-1189821989) at 2022-07-19 09:41 PM PDT -braguda,2022-08-12T02:33:37Z,- braguda opened pull request: [3463](https://github.com/hackforla/website/pull/3463) at 2022-08-11 07:33 PM PDT -braguda,2022-08-12T02:34:06Z,- braguda pull request closed w/o merging: [3463](https://github.com/hackforla/website/pull/3463#event-7176066377) at 2022-08-11 07:34 PM PDT -braguda,2022-08-12T02:40:33Z,- braguda reopened pull request: [3463](https://github.com/hackforla/website/pull/3463#issuecomment-1212672958) at 2022-08-11 07:40 PM PDT -braguda,2022-08-24T01:46:25Z,- braguda pull request closed w/o merging: [3463](https://github.com/hackforla/website/pull/3463#event-7246678178) at 2022-08-23 06:46 PM PDT -braguda,2022-08-24T01:52:35Z,- braguda opened pull request: [3482](https://github.com/hackforla/website/pull/3482) at 2022-08-23 06:52 PM PDT -braguda,2022-08-24T01:57:21Z,- braguda pull request merged: [3482](https://github.com/hackforla/website/pull/3482#event-7246716344) at 2022-08-23 06:57 PM PDT -braguda,2022-08-24T01:58:00Z,- braguda reopened pull request: [3482](https://github.com/hackforla/website/pull/3482#event-7246716344) at 2022-08-23 06:58 PM PDT -braguda,2022-08-24T18:06:13Z,- braguda pull request merged: [3482](https://github.com/hackforla/website/pull/3482#event-7253199769) at 2022-08-24 11:06 AM PDT -braguda,2022-09-15T02:22:30Z,- braguda commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1247492656) at 2022-09-14 07:22 PM PDT -braguda,2022-09-16T02:36:24Z,- braguda commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1248845732) at 2022-09-15 07:36 PM PDT -braguda,2022-09-19T21:47:22Z,- braguda closed issue as completed: [3406](https://github.com/hackforla/website/issues/3406#event-7417187515) at 2022-09-19 02:47 PM PDT -braguda,2022-09-19T23:17:28Z,- braguda reopened issue: [3406](https://github.com/hackforla/website/issues/3406#event-7417187515) at 2022-09-19 04:17 PM PDT -braguda,2022-09-20T01:53:06Z,- braguda commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1251742670) at 2022-09-19 06:53 PM PDT -braguda,2022-09-26T20:34:29Z,- braguda assigned to issue: [3194](https://github.com/hackforla/website/issues/3194#issuecomment-1145789163) at 2022-09-26 01:34 PM PDT -braguda,2022-09-26T20:38:39Z,- braguda commented on issue: [3194](https://github.com/hackforla/website/issues/3194#issuecomment-1258607068) at 2022-09-26 01:38 PM PDT -braguda,2022-09-29T23:41:46Z,- braguda opened pull request: [3591](https://github.com/hackforla/website/pull/3591) at 2022-09-29 04:41 PM PDT -braguda,2022-09-29T23:45:36Z,- braguda closed issue as completed: [3406](https://github.com/hackforla/website/issues/3406#event-7491076859) at 2022-09-29 04:45 PM PDT -braguda,2022-09-30T01:26:30Z,- braguda pull request merged: [3591](https://github.com/hackforla/website/pull/3591#event-7491406435) at 2022-09-29 06:26 PM PDT -braguda,2022-10-07T03:07:39Z,- braguda assigned to issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1155803187) at 2022-10-06 08:07 PM PDT -braguda,2022-10-07T03:14:03Z,- braguda commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1271063801) at 2022-10-06 08:14 PM PDT -braguda,2022-10-07T03:37:06Z,- braguda commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1271073536) at 2022-10-06 08:37 PM PDT -braguda,2022-10-07T03:49:44Z,- braguda commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1271078824) at 2022-10-06 08:49 PM PDT -braguda,2022-10-12T02:43:48Z,- braguda commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1275509703) at 2022-10-11 07:43 PM PDT -braguda,2022-10-14T03:29:40Z,- braguda unassigned from issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1275509703) at 2022-10-13 08:29 PM PDT -braguda,2022-10-18T00:55:08Z,- braguda commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1281675176) at 2022-10-17 05:55 PM PDT -braguda,2022-10-18T00:55:08Z,- braguda closed issue as completed: [3406](https://github.com/hackforla/website/issues/3406#event-7606900516) at 2022-10-17 05:55 PM PDT -braguda,2022-10-18T00:57:56Z,- braguda assigned to issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-907823063) at 2022-10-17 05:57 PM PDT -braguda,2022-10-18T00:58:47Z,- braguda commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1281676890) at 2022-10-17 05:58 PM PDT -braguda,2022-10-20T02:36:31Z,- braguda commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1284829795) at 2022-10-19 07:36 PM PDT -braguda,2022-10-20T02:44:17Z,- braguda assigned to issue: [3630](https://github.com/hackforla/website/issues/3630#issuecomment-1281512796) at 2022-10-19 07:44 PM PDT -braguda,2022-10-20T02:44:54Z,- braguda commented on issue: [3630](https://github.com/hackforla/website/issues/3630#issuecomment-1284836106) at 2022-10-19 07:44 PM PDT -braguda,2022-10-20T03:15:45Z,- braguda opened pull request: [3643](https://github.com/hackforla/website/pull/3643) at 2022-10-19 08:15 PM PDT -braguda,2022-10-21T02:19:02Z,- braguda unassigned from issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1284829795) at 2022-10-20 07:19 PM PDT -braguda,2022-10-21T03:39:50Z,- braguda pull request merged: [3643](https://github.com/hackforla/website/pull/3643#event-7636862298) at 2022-10-20 08:39 PM PDT -braguda,2022-10-26T02:49:38Z,- braguda reopened issue: [3406](https://github.com/hackforla/website/issues/3406#event-7606900516) at 2022-10-25 07:49 PM PDT -Brandoncyu,7331,SKILLS ISSUE -Brandoncyu,2024-08-21T03:09:31Z,- Brandoncyu opened issue: [7331](https://github.com/hackforla/website/issues/7331) at 2024-08-20 08:09 PM PDT -Brandoncyu,2024-08-21T03:09:35Z,- Brandoncyu assigned to issue: [7331](https://github.com/hackforla/website/issues/7331) at 2024-08-20 08:09 PM PDT -Brandoncyu,2024-09-13T15:45:19Z,- Brandoncyu commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2349257237) at 2024-09-13 08:45 AM PDT -Brandoncyu,2024-10-07T02:01:09Z,- Brandoncyu commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2395745088) at 2024-10-06 07:01 PM PDT -Brandoncyu,2024-10-18T17:26:11Z,- Brandoncyu commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2422927027) at 2024-10-18 10:26 AM PDT -Brandoncyu,2024-10-26T23:26:19Z,- Brandoncyu commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2439766180) at 2024-10-26 04:26 PM PDT -brandonjturner,2019-03-12T03:41:21Z,- brandonjturner opened pull request: [36](https://github.com/hackforla/website/pull/36) at 2019-03-11 08:41 PM PDT -brandonjturner,2019-04-03T21:33:26Z,- brandonjturner pull request closed w/o merging: [36](https://github.com/hackforla/website/pull/36#event-2251187858) at 2019-04-03 02:33 PM PDT -brandonjturner,2019-06-04T03:27:20Z,- brandonjturner commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-498506119) at 2019-06-03 08:27 PM PDT -brandonjturner,2019-06-11T18:02:56Z,- brandonjturner commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-500957144) at 2019-06-11 11:02 AM PDT -brandonjturner,2019-06-11T19:58:12Z,- brandonjturner commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-500999612) at 2019-06-11 12:58 PM PDT -brandonjturner,2019-06-11T20:01:58Z,- brandonjturner commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-501000921) at 2019-06-11 01:01 PM PDT -brandonjturner,2019-06-12T00:54:59Z,- brandonjturner assigned to issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-501001365) at 2019-06-11 05:54 PM PDT -brandonjturner,2019-06-18T03:48:03Z,- brandonjturner commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-502934538) at 2019-06-17 08:48 PM PDT -brandonjturner,2019-07-09T00:46:39Z,- brandonjturner commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-509443998) at 2019-07-08 05:46 PM PDT -brandonjturner,2020-06-01T02:47:21Z,- brandonjturner unassigned from issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2020-05-31 07:47 PM PDT -brandonxon,2019-10-15T03:51:38Z,- brandonxon assigned to issue: [156](https://github.com/hackforla/website/issues/156) at 2019-10-14 08:51 PM PDT -brandonxon,2019-11-19T03:15:59Z,- brandonxon unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-545346609) at 2019-11-18 07:15 PM PST -Brayheart,6345,SKILLS ISSUE -Brayheart,2024-02-21T03:54:06Z,- Brayheart opened issue: [6345](https://github.com/hackforla/website/issues/6345) at 2024-02-20 07:54 PM PST -Brayheart,2024-02-21T03:54:07Z,- Brayheart assigned to issue: [6345](https://github.com/hackforla/website/issues/6345) at 2024-02-20 07:54 PM PST -Brayheart,2024-02-24T23:34:11Z,- Brayheart commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-1962757482) at 2024-02-24 03:34 PM PST -Brayheart,2024-02-25T00:28:44Z,- Brayheart assigned to issue: [6123](https://github.com/hackforla/website/issues/6123) at 2024-02-24 04:28 PM PST -Brayheart,2024-02-25T00:32:39Z,- Brayheart commented on issue: [6123](https://github.com/hackforla/website/issues/6123#issuecomment-1962769611) at 2024-02-24 04:32 PM PST -Brayheart,2024-02-29T22:56:21Z,- Brayheart commented on issue: [6123](https://github.com/hackforla/website/issues/6123#issuecomment-1972112315) at 2024-02-29 02:56 PM PST -Brayheart,2024-02-29T23:17:30Z,- Brayheart opened pull request: [6401](https://github.com/hackforla/website/pull/6401) at 2024-02-29 03:17 PM PST -Brayheart,2024-02-29T23:22:15Z,- Brayheart commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-1972138214) at 2024-02-29 03:22 PM PST -Brayheart,2024-03-01T06:27:23Z,- Brayheart pull request merged: [6401](https://github.com/hackforla/website/pull/6401#event-11975164268) at 2024-02-29 10:27 PM PST -Brayheart,2024-03-05T00:49:58Z,- Brayheart assigned to issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1957612929) at 2024-03-04 04:49 PM PST -Brayheart,2024-03-05T00:51:01Z,- Brayheart commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1977745695) at 2024-03-04 04:51 PM PST -Brayheart,2024-03-05T17:08:10Z,- Brayheart opened pull request: [6432](https://github.com/hackforla/website/pull/6432) at 2024-03-05 09:08 AM PST -Brayheart,2024-03-06T00:21:34Z,- Brayheart commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1979857011) at 2024-03-05 04:21 PM PST -Brayheart,2024-03-07T01:39:45Z,- Brayheart commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1982183547) at 2024-03-06 05:39 PM PST -Brayheart,2024-03-07T01:59:10Z,- Brayheart commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1982200289) at 2024-03-06 05:59 PM PST -Brayheart,2024-03-08T01:22:52Z,- Brayheart assigned to issue: [6086](https://github.com/hackforla/website/issues/6086) at 2024-03-07 05:22 PM PST -Brayheart,2024-03-08T01:27:45Z,- Brayheart unassigned from issue: [6086](https://github.com/hackforla/website/issues/6086#issuecomment-1984882834) at 2024-03-07 05:27 PM PST -Brayheart,2024-03-08T06:14:25Z,- Brayheart pull request merged: [6432](https://github.com/hackforla/website/pull/6432#event-12051510278) at 2024-03-07 10:14 PM PST -Brayheart,2024-03-08T19:39:46Z,- Brayheart assigned to issue: [6087](https://github.com/hackforla/website/issues/6087) at 2024-03-08 11:39 AM PST -Brayheart,2024-03-08T20:31:23Z,- Brayheart commented on issue: [6087](https://github.com/hackforla/website/issues/6087#issuecomment-1986375673) at 2024-03-08 12:31 PM PST -Brayheart,2024-03-09T20:38:17Z,- Brayheart commented on issue: [6087](https://github.com/hackforla/website/issues/6087#issuecomment-1986970676) at 2024-03-09 01:38 PM PDT -Brayheart,2024-03-13T02:32:36Z,- Brayheart assigned to issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1975412495) at 2024-03-12 07:32 PM PDT -Brayheart,2024-03-13T17:39:53Z,- Brayheart commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1995131748) at 2024-03-13 10:39 AM PDT -Brayheart,2024-03-15T08:04:42Z,- Brayheart unassigned from issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1995131748) at 2024-03-15 01:04 AM PDT -Brayheart,2024-03-15T23:07:47Z,- Brayheart assigned to issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-1977778528) at 2024-03-15 04:07 PM PDT -Brayheart,2024-03-15T23:09:47Z,- Brayheart commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2000612457) at 2024-03-15 04:09 PM PDT -Brayheart,2024-03-17T20:30:14Z,- Brayheart commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2002607599) at 2024-03-17 01:30 PM PDT -Brayheart,2024-03-19T19:56:52Z,- Brayheart commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2008007377) at 2024-03-19 12:56 PM PDT -Brayheart,2024-04-02T23:16:45Z,- Brayheart commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2033268734) at 2024-04-02 04:16 PM PDT -Brayheart,2024-04-02T23:18:07Z,- Brayheart commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2033269800) at 2024-04-02 04:18 PM PDT -Brayheart,2024-04-17T02:34:49Z,- Brayheart commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2060230404) at 2024-04-16 07:34 PM PDT -Brayheart,2024-04-25T17:58:42Z,- Brayheart commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2077849300) at 2024-04-25 10:58 AM PDT -breeze-094,2020-01-07T04:49:50Z,- breeze-094 commented on issue: [247](https://github.com/hackforla/website/issues/247#issuecomment-571432800) at 2020-01-06 08:49 PM PST -breeze-094,2020-03-17T04:49:52Z,- breeze-094 commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599875932) at 2020-03-16 09:49 PM PDT -breeze-094,2020-04-18T03:24:34Z,- breeze-094 opened issue: [442](https://github.com/hackforla/website/issues/442) at 2020-04-17 08:24 PM PDT -breeze-094,2020-04-18T03:25:28Z,- breeze-094 commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-615547710) at 2020-04-17 08:25 PM PDT -breeze-094,2020-04-19T05:06:58Z,- breeze-094 commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-616033851) at 2020-04-18 10:06 PM PDT -breeze-094,2020-04-19T18:03:35Z,- breeze-094 commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-616197095) at 2020-04-19 11:03 AM PDT -breeze-094,2020-04-26T19:31:37Z,- breeze-094 commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619612032) at 2020-04-26 12:31 PM PDT -brentjayingram,2019-10-25T00:15:05Z,- brentjayingram commented on issue: [161](https://github.com/hackforla/website/issues/161#issuecomment-546149883) at 2019-10-24 05:15 PM PDT -brentjayingram,2019-10-28T01:41:22Z,- brentjayingram assigned to issue: [161](https://github.com/hackforla/website/issues/161#issuecomment-546149883) at 2019-10-27 06:41 PM PDT -brentjayingram,2019-10-30T04:55:10Z,- brentjayingram opened pull request: [166](https://github.com/hackforla/website/pull/166) at 2019-10-29 09:55 PM PDT -brentjayingram,2019-10-30T05:46:42Z,- brentjayingram commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-547747681) at 2019-10-29 10:46 PM PDT -brentjayingram,2019-10-30T06:14:55Z,- brentjayingram commented on issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-10-29 11:14 PM PDT -brentjayingram,2019-11-02T05:54:30Z,- brentjayingram assigned to issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-11-01 09:54 PM PST -brentjayingram,2019-11-13T01:06:18Z,- brentjayingram commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-553189915) at 2019-11-12 05:06 PM PST -brentjayingram,2019-11-13T19:17:53Z,- brentjayingram commented on issue: [161](https://github.com/hackforla/website/issues/161#issuecomment-553557254) at 2019-11-13 11:17 AM PST -brentjayingram,2019-11-14T03:01:47Z,- brentjayingram pull request merged: [166](https://github.com/hackforla/website/pull/166#event-2797552588) at 2019-11-13 07:01 PM PST -brentjayingram,2019-11-23T03:47:16Z,- brentjayingram closed issue as completed: [161](https://github.com/hackforla/website/issues/161#event-2825104859) at 2019-11-22 07:47 PM PST -brentjayingram,2019-12-10T04:43:47Z,- brentjayingram unassigned from issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-12-09 08:43 PM PST -breyell,2018-11-20T08:13:33Z,- breyell opened pull request: [21](https://github.com/hackforla/website/pull/21) at 2018-11-20 12:13 AM PST -breyell,2018-12-13T06:09:25Z,- breyell opened pull request: [23](https://github.com/hackforla/website/pull/23) at 2018-12-12 10:09 PM PST -breyell,2018-12-13T06:12:34Z,- breyell commented on pull request: [21](https://github.com/hackforla/website/pull/21#issuecomment-446854267) at 2018-12-12 10:12 PM PST -breyell,2018-12-13T06:40:07Z,- breyell pull request closed w/o merging: [21](https://github.com/hackforla/website/pull/21#event-2023393216) at 2018-12-12 10:40 PM PST -breyell,2018-12-13T06:42:01Z,- breyell pull request merged: [23](https://github.com/hackforla/website/pull/23#event-2023395634) at 2018-12-12 10:42 PM PST -breyell,2018-12-13T06:42:26Z,- breyell commented on pull request: [21](https://github.com/hackforla/website/pull/21#issuecomment-446859667) at 2018-12-12 10:42 PM PST -breyell,2018-12-13T06:47:08Z,- breyell commented on issue: [7](https://github.com/hackforla/website/issues/7#issuecomment-446860604) at 2018-12-12 10:47 PM PST -BrianCodes33,2717,SKILLS ISSUE -BrianCodes33,2022-01-19T18:01:36Z,- BrianCodes33 commented on issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1016724987) at 2022-01-19 10:01 AM PST -BrianCodes33,2022-01-19T18:39:31Z,- BrianCodes33 assigned to issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1016724987) at 2022-01-19 10:39 AM PST -BrianCodes33,2022-01-19T18:39:58Z,- BrianCodes33 assigned to issue: [2272](https://github.com/hackforla/website/issues/2272#issuecomment-926946987) at 2022-01-19 10:39 AM PST -BrianCodes33,2022-01-20T17:52:40Z,- BrianCodes33 commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-1017766334) at 2022-01-20 09:52 AM PST -BrianCodes33,2022-01-21T01:13:12Z,- BrianCodes33 assigned to issue: [2424](https://github.com/hackforla/website/issues/2424#issuecomment-964406114) at 2022-01-20 05:13 PM PST -BrianCodes33,2022-01-21T02:34:13Z,- BrianCodes33 opened pull request: [2709](https://github.com/hackforla/website/pull/2709) at 2022-01-20 06:34 PM PST -BrianCodes33,2022-01-21T03:31:22Z,- BrianCodes33 unassigned from issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1016724987) at 2022-01-20 07:31 PM PST -BrianCodes33,2022-01-21T03:34:35Z,- BrianCodes33 unassigned from issue: [2272](https://github.com/hackforla/website/issues/2272#issuecomment-926946987) at 2022-01-20 07:34 PM PST -BrianCodes33,2022-01-25T05:06:51Z,- BrianCodes33 submitted pull request review: [2714](https://github.com/hackforla/website/pull/2714#pullrequestreview-861788071) at 2022-01-24 09:06 PM PST -BrianCodes33,2022-01-25T06:03:48Z,- BrianCodes33 opened issue: [2717](https://github.com/hackforla/website/issues/2717) at 2022-01-24 10:03 PM PST -BrianCodes33,2022-01-25T06:10:09Z,- BrianCodes33 closed issue as completed: [2717](https://github.com/hackforla/website/issues/2717#event-5947376367) at 2022-01-24 10:10 PM PST -BrianCodes33,2022-01-25T23:19:51Z,- BrianCodes33 commented on pull request: [2709](https://github.com/hackforla/website/pull/2709#issuecomment-1021700144) at 2022-01-25 03:19 PM PST -BrianCodes33,2022-01-27T23:06:35Z,- BrianCodes33 pull request merged: [2709](https://github.com/hackforla/website/pull/2709#event-5967282204) at 2022-01-27 03:06 PM PST -BrianCodes33,2022-01-28T16:37:30Z,- BrianCodes33 assigned to issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-950401759) at 2022-01-28 08:37 AM PST -BrianCodes33,2022-01-28T16:47:46Z,- BrianCodes33 commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1024411054) at 2022-01-28 08:47 AM PST -BrianCodes33,2022-02-01T17:34:26Z,- BrianCodes33 assigned to issue: [2239](https://github.com/hackforla/website/issues/2239) at 2022-02-01 09:34 AM PST -BrianCodes33,2022-02-01T17:34:50Z,- BrianCodes33 unassigned from issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1024815778) at 2022-02-01 09:34 AM PST -BrianCodes33,2022-02-02T03:50:35Z,- BrianCodes33 commented on issue: [2239](https://github.com/hackforla/website/issues/2239#issuecomment-1027549048) at 2022-02-01 07:50 PM PST -BrianCodes33,2022-02-02T03:54:45Z,- BrianCodes33 commented on issue: [2239](https://github.com/hackforla/website/issues/2239#issuecomment-1027550275) at 2022-02-01 07:54 PM PST -BrianCodes33,2022-02-02T22:43:43Z,- BrianCodes33 opened pull request: [2734](https://github.com/hackforla/website/pull/2734) at 2022-02-02 02:43 PM PST -BrianCodes33,2022-02-03T06:24:53Z,- BrianCodes33 commented on pull request: [2734](https://github.com/hackforla/website/pull/2734#issuecomment-1028641496) at 2022-02-02 10:24 PM PST -BrianCodes33,2022-02-03T16:22:25Z,- BrianCodes33 commented on pull request: [2735](https://github.com/hackforla/website/pull/2735#issuecomment-1029161284) at 2022-02-03 08:22 AM PST -BrianCodes33,2022-02-03T16:51:10Z,- BrianCodes33 submitted pull request review: [2735](https://github.com/hackforla/website/pull/2735#pullrequestreview-872136791) at 2022-02-03 08:51 AM PST -BrianCodes33,2022-02-03T17:04:23Z,- BrianCodes33 submitted pull request review: [2732](https://github.com/hackforla/website/pull/2732#pullrequestreview-872154343) at 2022-02-03 09:04 AM PST -BrianCodes33,2022-02-04T19:42:53Z,- BrianCodes33 pull request merged: [2734](https://github.com/hackforla/website/pull/2734#event-6011650755) at 2022-02-04 11:42 AM PST -BrianCodes33,2022-02-07T23:40:37Z,- BrianCodes33 assigned to issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-907381202) at 2022-02-07 03:40 PM PST -BrianCodes33,2022-02-08T00:01:50Z,- BrianCodes33 unassigned from issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-907381202) at 2022-02-07 04:01 PM PST -BrianCodes33,2022-02-08T00:42:50Z,- BrianCodes33 assigned to issue: [2355](https://github.com/hackforla/website/issues/2355) at 2022-02-07 04:42 PM PST -BrianCodes33,2022-02-13T18:50:49Z,- BrianCodes33 commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1038339054) at 2022-02-13 10:50 AM PST -BrianCodes33,2022-02-13T18:52:41Z,- BrianCodes33 unassigned from issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1038339054) at 2022-02-13 10:52 AM PST -brianf4,3831,SKILLS ISSUE -brianf4,2023-01-17T04:17:17Z,- brianf4 opened issue: [3831](https://github.com/hackforla/website/issues/3831) at 2023-01-16 08:17 PM PST -brianf4,2023-01-17T04:17:18Z,- brianf4 assigned to issue: [3831](https://github.com/hackforla/website/issues/3831) at 2023-01-16 08:17 PM PST -brianf4,2023-01-19T03:32:19Z,- brianf4 assigned to issue: [2869](https://github.com/hackforla/website/issues/2869#issuecomment-1048472848) at 2023-01-18 07:32 PM PST -brianf4,2023-01-19T03:41:43Z,- brianf4 commented on issue: [2869](https://github.com/hackforla/website/issues/2869#issuecomment-1396400474) at 2023-01-18 07:41 PM PST -brianf4,2023-01-19T05:39:33Z,- brianf4 opened pull request: [3842](https://github.com/hackforla/website/pull/3842) at 2023-01-18 09:39 PM PST -brianf4,2023-01-19T05:41:53Z,- brianf4 commented on pull request: [3842](https://github.com/hackforla/website/pull/3842#issuecomment-1396466732) at 2023-01-18 09:41 PM PST -brianf4,2023-01-19T15:38:17Z,- brianf4 pull request merged: [3842](https://github.com/hackforla/website/pull/3842#event-8313338618) at 2023-01-19 07:38 AM PST -brianf4,2023-01-19T20:06:11Z,- brianf4 closed issue as completed: [3831](https://github.com/hackforla/website/issues/3831#event-8315744532) at 2023-01-19 12:06 PM PST -brianf4,2023-02-04T23:26:25Z,- brianf4 commented on pull request: [3932](https://github.com/hackforla/website/pull/3932#issuecomment-1416875504) at 2023-02-04 03:26 PM PST -brianf4,2023-02-05T02:21:58Z,- brianf4 submitted pull request review: [3932](https://github.com/hackforla/website/pull/3932#pullrequestreview-1284138601) at 2023-02-04 06:21 PM PST -brianf4,2023-02-14T17:34:43Z,- brianf4 commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1430124352) at 2023-02-14 09:34 AM PST -brianf4,2023-02-14T17:43:48Z,- brianf4 assigned to issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423535962) at 2023-02-14 09:43 AM PST -brianf4,2023-02-14T17:52:36Z,- brianf4 commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1430146210) at 2023-02-14 09:52 AM PST -brianf4,2023-02-17T21:32:05Z,- brianf4 opened pull request: [4004](https://github.com/hackforla/website/pull/4004) at 2023-02-17 01:32 PM PST -brianf4,2023-02-18T05:27:37Z,- brianf4 pull request merged: [4004](https://github.com/hackforla/website/pull/4004#event-8552398762) at 2023-02-17 09:27 PM PST -brianf4,2023-02-20T20:02:54Z,- brianf4 closed issue as completed: [3831](https://github.com/hackforla/website/issues/3831#event-8564663171) at 2023-02-20 12:02 PM PST -brianf4,2023-08-29T17:39:30Z,- brianf4 assigned to issue: [4924](https://github.com/hackforla/website/issues/4924#issuecomment-1676447392) at 2023-08-29 10:39 AM PDT -brianf4,2023-08-29T17:43:28Z,- brianf4 commented on issue: [4924](https://github.com/hackforla/website/issues/4924#issuecomment-1697879540) at 2023-08-29 10:43 AM PDT -brianf4,2023-08-29T20:19:45Z,- brianf4 opened pull request: [5339](https://github.com/hackforla/website/pull/5339) at 2023-08-29 01:19 PM PDT -brianf4,2023-08-31T20:07:23Z,- brianf4 commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1701711562) at 2023-08-31 01:07 PM PDT -brianf4,2023-08-31T21:39:37Z,- brianf4 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1605813760) at 2023-08-31 02:39 PM PDT -brianf4,2023-08-31T21:40:01Z,- brianf4 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1605814137) at 2023-08-31 02:40 PM PDT -brianf4,2023-08-31T21:46:32Z,- brianf4 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1605820525) at 2023-08-31 02:46 PM PDT -brianf4,2023-08-31T21:51:24Z,- brianf4 commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1701831200) at 2023-08-31 02:51 PM PDT -brianf4,2023-09-01T03:22:53Z,- brianf4 commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1702101266) at 2023-08-31 08:22 PM PDT -brianf4,2023-09-01T03:24:11Z,- brianf4 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1606152000) at 2023-08-31 08:24 PM PDT -brianf4,2023-09-01T16:00:50Z,- brianf4 pull request merged: [5339](https://github.com/hackforla/website/pull/5339#event-10258853618) at 2023-09-01 09:00 AM PDT -brianf4,2023-09-02T01:00:27Z,- brianf4 submitted pull request review: [5414](https://github.com/hackforla/website/pull/5414#pullrequestreview-1607808505) at 2023-09-01 06:00 PM PDT -brianf4,2023-09-16T22:11:21Z,- brianf4 commented on pull request: [5535](https://github.com/hackforla/website/pull/5535#issuecomment-1722327378) at 2023-09-16 03:11 PM PDT -brianf4,2023-09-16T23:06:25Z,- brianf4 submitted pull request review: [5535](https://github.com/hackforla/website/pull/5535#pullrequestreview-1630020469) at 2023-09-16 04:06 PM PDT -brianf4,2023-09-18T20:17:56Z,- brianf4 commented on pull request: [5543](https://github.com/hackforla/website/pull/5543#issuecomment-1724307100) at 2023-09-18 01:17 PM PDT -brianf4,2023-09-18T20:59:03Z,- brianf4 submitted pull request review: [5543](https://github.com/hackforla/website/pull/5543#pullrequestreview-1631959590) at 2023-09-18 01:59 PM PDT -brianf4,2023-09-18T21:10:14Z,- brianf4 commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1724420642) at 2023-09-18 02:10 PM PDT -brianf4,2023-09-26T22:58:16Z,- brianf4 assigned to issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1712752903) at 2023-09-26 03:58 PM PDT -brianf4,2023-09-26T23:08:04Z,- brianf4 commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1736421824) at 2023-09-26 04:08 PM PDT -brianf4,2023-09-30T22:25:36Z,- brianf4 commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1741872313) at 2023-09-30 03:25 PM PDT -brianf4,2023-10-03T20:35:08Z,- brianf4 commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1745684708) at 2023-10-03 01:35 PM PDT -brianf4,2023-10-10T12:55:05Z,- brianf4 commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1755371959) at 2023-10-10 05:55 AM PDT -brianf4,2023-10-11T03:09:29Z,- brianf4 submitted pull request review: [5668](https://github.com/hackforla/website/pull/5668#pullrequestreview-1669759455) at 2023-10-10 08:09 PM PDT -brianf4,2023-10-11T12:35:36Z,- brianf4 commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1757591722) at 2023-10-11 05:35 AM PDT -brianf4,2023-10-18T02:51:09Z,- brianf4 commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1767533781) at 2023-10-17 07:51 PM PDT -brianf4,2023-10-18T19:29:04Z,- brianf4 submitted pull request review: [5513](https://github.com/hackforla/website/pull/5513#pullrequestreview-1685960714) at 2023-10-18 12:29 PM PDT -brianhjoo,5094,SKILLS ISSUE -brianhjoo,2023-07-26T04:24:53Z,- brianhjoo opened issue: [5094](https://github.com/hackforla/website/issues/5094) at 2023-07-25 09:24 PM PDT -brianhjoo,2023-07-26T04:25:07Z,- brianhjoo assigned to issue: [5094](https://github.com/hackforla/website/issues/5094) at 2023-07-25 09:25 PM PDT -briip,6603,SKILLS ISSUE -briip,2024-04-09T02:57:48Z,- briip opened issue: [6603](https://github.com/hackforla/website/issues/6603) at 2024-04-08 07:57 PM PDT -briip,2024-04-09T02:57:52Z,- briip assigned to issue: [6603](https://github.com/hackforla/website/issues/6603) at 2024-04-08 07:57 PM PDT -briip,2024-05-10T05:56:53Z,- briip unassigned from issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2092435165) at 2024-05-09 10:56 PM PDT -briip,2024-05-19T16:51:47Z,- briip assigned to issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2092435165) at 2024-05-19 09:51 AM PDT -bryanlundberg,2025-02-25T13:08:42Z,- bryanlundberg opened issue: [7946](https://github.com/hackforla/website/issues/7946) at 2025-02-25 05:08 AM PST -bryanlundberg,2025-03-15T13:01:10Z,- bryanlundberg commented on issue: [7946](https://github.com/hackforla/website/issues/7946#issuecomment-2726536592) at 2025-03-15 06:01 AM PDT -bryanlundberg,2025-03-15T13:01:10Z,- bryanlundberg closed issue as not planned: [7946](https://github.com/hackforla/website/issues/7946#event-16785458421) at 2025-03-15 06:01 AM PDT -Brymmobaggins,2021-10-08T11:48:05Z,- Brymmobaggins commented on issue: [2347](https://github.com/hackforla/website/issues/2347#issuecomment-938578030) at 2021-10-08 04:48 AM PDT -BryonPm,2021-01-06T16:49:25Z,- BryonPm assigned to issue: [1033](https://github.com/hackforla/website/issues/1033) at 2021-01-06 08:49 AM PST -BryonPm,2021-01-10T20:42:57Z,- BryonPm unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-757540777) at 2021-01-10 12:42 PM PST -BryonPm,2021-01-29T20:57:15Z,- BryonPm assigned to issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-769864506) at 2021-01-29 12:57 PM PST -BryonPm,2021-03-01T18:36:40Z,- BryonPm unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-03-01 10:36 AM PST -BryonPm,2021-04-22T00:41:12Z,- BryonPm commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-824455105) at 2021-04-21 05:41 PM PDT -BryonPm,2021-04-25T23:11:39Z,- BryonPm commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-826405242) at 2021-04-25 04:11 PM PDT -BryonPm,2021-05-02T23:34:29Z,- BryonPm commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-830926374) at 2021-05-02 04:34 PM PDT -BryonPm,2021-05-27T00:28:20Z,- BryonPm commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-849209942) at 2021-05-26 05:28 PM PDT -BryonPm,2021-05-30T23:45:59Z,- BryonPm commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-851080880) at 2021-05-30 04:45 PM PDT -BryonPm,2021-06-12T19:26:34Z,- BryonPm commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-860098059) at 2021-06-12 12:26 PM PDT -buneeIsSlo,6956,SKILLS ISSUE -buneeIsSlo,2024-06-04T03:25:32Z,- buneeIsSlo opened issue: [6956](https://github.com/hackforla/website/issues/6956) at 2024-06-03 08:25 PM PDT -buneeIsSlo,2024-06-04T08:43:55Z,- buneeIsSlo assigned to issue: [6956](https://github.com/hackforla/website/issues/6956) at 2024-06-04 01:43 AM PDT -buneeIsSlo,2024-06-10T07:32:09Z,- buneeIsSlo assigned to issue: [6938](https://github.com/hackforla/website/issues/6938) at 2024-06-10 12:32 AM PDT -buneeIsSlo,2024-06-10T07:38:40Z,- buneeIsSlo commented on issue: [6938](https://github.com/hackforla/website/issues/6938#issuecomment-2157561620) at 2024-06-10 12:38 AM PDT -buneeIsSlo,2024-06-10T10:15:03Z,- buneeIsSlo opened pull request: [6980](https://github.com/hackforla/website/pull/6980) at 2024-06-10 03:15 AM PDT -buneeIsSlo,2024-06-11T04:07:16Z,- buneeIsSlo commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2159740922) at 2024-06-10 09:07 PM PDT -buneeIsSlo,2024-06-12T16:48:21Z,- buneeIsSlo pull request merged: [6980](https://github.com/hackforla/website/pull/6980#event-13134761820) at 2024-06-12 09:48 AM PDT -buneeIsSlo,2024-06-13T06:00:53Z,- buneeIsSlo commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2164504319) at 2024-06-12 11:00 PM PDT -buneeIsSlo,2024-06-13T19:17:57Z,- buneeIsSlo pull request merged: [6980](https://github.com/hackforla/website/pull/6980#event-13151760116) at 2024-06-13 12:17 PM PDT -buneeIsSlo,2024-06-14T07:48:09Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2167442262) at 2024-06-14 12:48 AM PDT -buneeIsSlo,2024-06-14T07:52:26Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2167449446) at 2024-06-14 12:52 AM PDT -buneeIsSlo,2024-06-17T07:30:47Z,- buneeIsSlo assigned to issue: [6866](https://github.com/hackforla/website/issues/6866#issuecomment-2135376969) at 2024-06-17 12:30 AM PDT -buneeIsSlo,2024-06-17T07:32:08Z,- buneeIsSlo commented on issue: [6866](https://github.com/hackforla/website/issues/6866#issuecomment-2172510464) at 2024-06-17 12:32 AM PDT -buneeIsSlo,2024-06-17T11:33:02Z,- buneeIsSlo opened pull request: [7012](https://github.com/hackforla/website/pull/7012) at 2024-06-17 04:33 AM PDT -buneeIsSlo,2024-06-19T02:57:45Z,- buneeIsSlo pull request merged: [7012](https://github.com/hackforla/website/pull/7012#event-13209149639) at 2024-06-18 07:57 PM PDT -buneeIsSlo,2024-06-19T06:58:38Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2177895219) at 2024-06-18 11:58 PM PDT -buneeIsSlo,2024-06-20T07:42:39Z,- buneeIsSlo commented on pull request: [7038](https://github.com/hackforla/website/pull/7038#issuecomment-2180026731) at 2024-06-20 12:42 AM PDT -buneeIsSlo,2024-06-20T08:04:19Z,- buneeIsSlo submitted pull request review: [7038](https://github.com/hackforla/website/pull/7038#pullrequestreview-2129715367) at 2024-06-20 01:04 AM PDT -buneeIsSlo,2024-06-24T07:27:41Z,- buneeIsSlo commented on pull request: [7059](https://github.com/hackforla/website/pull/7059#issuecomment-2185800032) at 2024-06-24 12:27 AM PDT -buneeIsSlo,2024-06-24T07:35:59Z,- buneeIsSlo submitted pull request review: [7059](https://github.com/hackforla/website/pull/7059#pullrequestreview-2134917542) at 2024-06-24 12:35 AM PDT -buneeIsSlo,2024-06-25T07:13:37Z,- buneeIsSlo commented on pull request: [7063](https://github.com/hackforla/website/pull/7063#issuecomment-2188154157) at 2024-06-25 12:13 AM PDT -buneeIsSlo,2024-06-25T07:23:05Z,- buneeIsSlo submitted pull request review: [7063](https://github.com/hackforla/website/pull/7063#pullrequestreview-2137644956) at 2024-06-25 12:23 AM PDT -buneeIsSlo,2024-06-28T06:53:19Z,- buneeIsSlo commented on pull request: [7074](https://github.com/hackforla/website/pull/7074#issuecomment-2196261541) at 2024-06-27 11:53 PM PDT -buneeIsSlo,2024-06-28T06:58:21Z,- buneeIsSlo submitted pull request review: [7074](https://github.com/hackforla/website/pull/7074#pullrequestreview-2147205421) at 2024-06-27 11:58 PM PDT -buneeIsSlo,2024-06-30T17:07:38Z,- buneeIsSlo submitted pull request review: [7082](https://github.com/hackforla/website/pull/7082#pullrequestreview-2150086728) at 2024-06-30 10:07 AM PDT -buneeIsSlo,2024-07-01T08:16:55Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2199525152) at 2024-07-01 01:16 AM PDT -buneeIsSlo,2024-07-15T07:57:10Z,- buneeIsSlo assigned to issue: [7099](https://github.com/hackforla/website/issues/7099) at 2024-07-15 12:57 AM PDT -buneeIsSlo,2024-07-15T07:59:51Z,- buneeIsSlo commented on issue: [7099](https://github.com/hackforla/website/issues/7099#issuecomment-2227906848) at 2024-07-15 12:59 AM PDT -buneeIsSlo,2024-07-15T09:47:52Z,- buneeIsSlo opened pull request: [7119](https://github.com/hackforla/website/pull/7119) at 2024-07-15 02:47 AM PDT -buneeIsSlo,2024-07-18T20:23:15Z,- buneeIsSlo pull request merged: [7119](https://github.com/hackforla/website/pull/7119#event-13562690399) at 2024-07-18 01:23 PM PDT -buneeIsSlo,2024-07-19T07:48:44Z,- buneeIsSlo submitted pull request review: [7129](https://github.com/hackforla/website/pull/7129#pullrequestreview-2187569361) at 2024-07-19 12:48 AM PDT -buneeIsSlo,2024-07-20T08:28:51Z,- buneeIsSlo assigned to issue: [7117](https://github.com/hackforla/website/issues/7117#issuecomment-2227801702) at 2024-07-20 01:28 AM PDT -buneeIsSlo,2024-07-20T08:35:25Z,- buneeIsSlo commented on issue: [7117](https://github.com/hackforla/website/issues/7117#issuecomment-2241045660) at 2024-07-20 01:35 AM PDT -buneeIsSlo,2024-07-23T08:07:12Z,- buneeIsSlo opened pull request: [7136](https://github.com/hackforla/website/pull/7136) at 2024-07-23 01:07 AM PDT -buneeIsSlo,2024-07-23T08:10:30Z,- buneeIsSlo commented on pull request: [7136](https://github.com/hackforla/website/pull/7136#issuecomment-2244542152) at 2024-07-23 01:10 AM PDT -buneeIsSlo,2024-07-30T07:58:59Z,- buneeIsSlo submitted pull request review: [7131](https://github.com/hackforla/website/pull/7131#pullrequestreview-2206939998) at 2024-07-30 12:58 AM PDT -buneeIsSlo,2024-07-31T21:26:18Z,- buneeIsSlo pull request merged: [7136](https://github.com/hackforla/website/pull/7136#event-13716494782) at 2024-07-31 02:26 PM PDT -buneeIsSlo,2024-08-09T08:03:42Z,- buneeIsSlo submitted pull request review: [7257](https://github.com/hackforla/website/pull/7257#pullrequestreview-2229600255) at 2024-08-09 01:03 AM PDT -buneeIsSlo,2024-08-13T04:32:04Z,- buneeIsSlo assigned to issue: [7192](https://github.com/hackforla/website/issues/7192#issuecomment-2270010177) at 2024-08-12 09:32 PM PDT -buneeIsSlo,2024-08-13T04:36:59Z,- buneeIsSlo commented on issue: [7192](https://github.com/hackforla/website/issues/7192#issuecomment-2285324089) at 2024-08-12 09:36 PM PDT -buneeIsSlo,2024-08-13T04:43:43Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2285329647) at 2024-08-12 09:43 PM PDT -buneeIsSlo,2024-08-13T07:49:45Z,- buneeIsSlo opened pull request: [7276](https://github.com/hackforla/website/pull/7276) at 2024-08-13 12:49 AM PDT -buneeIsSlo,2024-08-14T07:33:07Z,- buneeIsSlo commented on pull request: [7280](https://github.com/hackforla/website/pull/7280#issuecomment-2288048891) at 2024-08-14 12:33 AM PDT -buneeIsSlo,2024-08-14T17:20:48Z,- buneeIsSlo submitted pull request review: [7280](https://github.com/hackforla/website/pull/7280#pullrequestreview-2238782474) at 2024-08-14 10:20 AM PDT -buneeIsSlo,2024-08-19T18:52:29Z,- buneeIsSlo pull request merged: [7276](https://github.com/hackforla/website/pull/7276#event-13934523350) at 2024-08-19 11:52 AM PDT -buneeIsSlo,2024-08-21T04:38:36Z,- buneeIsSlo closed issue as completed: [6956](https://github.com/hackforla/website/issues/6956#event-13954113563) at 2024-08-20 09:38 PM PDT -buneeIsSlo,2024-08-27T08:08:48Z,- buneeIsSlo submitted pull request review: [7360](https://github.com/hackforla/website/pull/7360#pullrequestreview-2262497851) at 2024-08-27 01:08 AM PDT -buneeIsSlo,2024-08-28T07:24:38Z,- buneeIsSlo submitted pull request review: [7361](https://github.com/hackforla/website/pull/7361#pullrequestreview-2265384946) at 2024-08-28 12:24 AM PDT -buneeIsSlo,2024-09-02T12:36:28Z,- buneeIsSlo commented on pull request: [7376](https://github.com/hackforla/website/pull/7376#issuecomment-2324659506) at 2024-09-02 05:36 AM PDT -buneeIsSlo,2024-09-03T18:11:53Z,- buneeIsSlo submitted pull request review: [7376](https://github.com/hackforla/website/pull/7376#pullrequestreview-2278137157) at 2024-09-03 11:11 AM PDT -buneeIsSlo,2024-09-04T10:24:51Z,- buneeIsSlo submitted pull request review: [7376](https://github.com/hackforla/website/pull/7376#pullrequestreview-2279657956) at 2024-09-04 03:24 AM PDT -buneeIsSlo,2024-09-07T18:24:55Z,- buneeIsSlo submitted pull request review: [7406](https://github.com/hackforla/website/pull/7406#pullrequestreview-2288328824) at 2024-09-07 11:24 AM PDT -buneeIsSlo,2024-09-16T07:40:45Z,- buneeIsSlo assigned to issue: [7415](https://github.com/hackforla/website/issues/7415) at 2024-09-16 12:40 AM PDT -buneeIsSlo,2024-09-16T07:44:16Z,- buneeIsSlo commented on issue: [7415](https://github.com/hackforla/website/issues/7415#issuecomment-2352218054) at 2024-09-16 12:44 AM PDT -buneeIsSlo,2024-09-16T07:46:33Z,- buneeIsSlo commented on pull request: [7463](https://github.com/hackforla/website/pull/7463#issuecomment-2352221858) at 2024-09-16 12:46 AM PDT -buneeIsSlo,2024-09-16T16:36:37Z,- buneeIsSlo submitted pull request review: [7463](https://github.com/hackforla/website/pull/7463#pullrequestreview-2307164821) at 2024-09-16 09:36 AM PDT -buneeIsSlo,2024-09-16T17:57:00Z,- buneeIsSlo submitted pull request review: [7463](https://github.com/hackforla/website/pull/7463#pullrequestreview-2307349810) at 2024-09-16 10:57 AM PDT -buneeIsSlo,2024-09-17T09:13:53Z,- buneeIsSlo opened pull request: [7468](https://github.com/hackforla/website/pull/7468) at 2024-09-17 02:13 AM PDT -buneeIsSlo,2024-09-22T16:20:54Z,- buneeIsSlo pull request merged: [7468](https://github.com/hackforla/website/pull/7468#event-14355027176) at 2024-09-22 09:20 AM PDT -buneeIsSlo,2024-09-25T18:18:01Z,- buneeIsSlo submitted pull request review: [7523](https://github.com/hackforla/website/pull/7523#pullrequestreview-2329158353) at 2024-09-25 11:18 AM PDT -buneeIsSlo,2024-10-03T06:24:39Z,- buneeIsSlo assigned to issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-1876791666) at 2024-10-02 11:24 PM PDT -buneeIsSlo,2024-10-03T06:24:54Z,- buneeIsSlo unassigned from issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-1876791666) at 2024-10-02 11:24 PM PDT -buneeIsSlo,2024-10-14T06:24:03Z,- buneeIsSlo submitted pull request review: [7588](https://github.com/hackforla/website/pull/7588#pullrequestreview-2365452353) at 2024-10-13 11:24 PM PDT -buneeIsSlo,2024-10-29T07:13:31Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2443397182) at 2024-10-29 12:13 AM PDT -buneeIsSlo,2024-10-29T07:18:31Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2443412935) at 2024-10-29 12:18 AM PDT -buneeIsSlo,2024-12-03T11:48:19Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2514332479) at 2024-12-03 03:48 AM PST -buneeIsSlo,2024-12-04T08:59:00Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2516607512) at 2024-12-04 12:59 AM PST -buneeIsSlo,2024-12-04T08:59:50Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2516609414) at 2024-12-04 12:59 AM PST -buneeIsSlo,2024-12-06T08:11:03Z,- buneeIsSlo assigned to issue: [7731](https://github.com/hackforla/website/issues/7731) at 2024-12-06 12:11 AM PST -buneeIsSlo,2024-12-06T08:13:41Z,- buneeIsSlo commented on issue: [7731](https://github.com/hackforla/website/issues/7731#issuecomment-2522474496) at 2024-12-06 12:13 AM PST -buneeIsSlo,2024-12-09T11:39:03Z,- buneeIsSlo opened pull request: [7798](https://github.com/hackforla/website/pull/7798) at 2024-12-09 03:39 AM PST -buneeIsSlo,2024-12-10T05:51:16Z,- buneeIsSlo pull request merged: [7798](https://github.com/hackforla/website/pull/7798#event-15595054426) at 2024-12-09 09:51 PM PST -buneeIsSlo,2024-12-10T09:18:20Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2530937539) at 2024-12-10 01:18 AM PST -buneeIsSlo,2025-01-13T08:58:31Z,- buneeIsSlo submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2546039908) at 2025-01-13 12:58 AM PST -buneeIsSlo,2025-01-16T09:13:47Z,- buneeIsSlo submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2555299656) at 2025-01-16 01:13 AM PST -buneeIsSlo,2025-01-17T09:24:04Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2597790967) at 2025-01-17 01:24 AM PST -buneeIsSlo,2025-01-17T09:40:00Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2597823522) at 2025-01-17 01:40 AM PST -buneeIsSlo,2025-01-17T10:49:01Z,- buneeIsSlo commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2598020255) at 2025-01-17 02:49 AM PST -buneeIsSlo,2025-07-01T19:06:44Z,- buneeIsSlo commented on pull request: [8236](https://github.com/hackforla/website/pull/8236#issuecomment-3025207448) at 2025-07-01 12:06 PM PDT -buneeIsSlo,2025-07-03T04:30:15Z,- buneeIsSlo submitted pull request review: [8236](https://github.com/hackforla/website/pull/8236#pullrequestreview-2981599533) at 2025-07-02 09:30 PM PDT -bunnyDasari,2023-09-11T16:58:36Z,- bunnyDasari opened pull request: [5475](https://github.com/hackforla/website/pull/5475) at 2023-09-11 09:58 AM PDT -bunnyDasari,2023-09-11T22:36:48Z,- bunnyDasari pull request closed w/o merging: [5475](https://github.com/hackforla/website/pull/5475#event-10339573641) at 2023-09-11 03:36 PM PDT -Bwoltz,2025-04-01T17:56:04Z,- Bwoltz commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2770260872) at 2025-04-01 10:56 AM PDT -bzzz-coding,3784,SKILLS ISSUE -bzzz-coding,2023-01-04T04:47:22Z,- bzzz-coding opened issue: [3784](https://github.com/hackforla/website/issues/3784) at 2023-01-03 08:47 PM PST -bzzz-coding,2023-01-05T05:23:48Z,- bzzz-coding assigned to issue: [3784](https://github.com/hackforla/website/issues/3784) at 2023-01-04 09:23 PM PST -bzzz-coding,2023-01-05T07:05:34Z,- bzzz-coding assigned to issue: [2874](https://github.com/hackforla/website/issues/2874#issuecomment-1049006759) at 2023-01-04 11:05 PM PST -bzzz-coding,2023-01-05T08:00:45Z,- bzzz-coding opened pull request: [3795](https://github.com/hackforla/website/pull/3795) at 2023-01-05 12:00 AM PST -bzzz-coding,2023-01-09T15:21:03Z,- bzzz-coding pull request merged: [3795](https://github.com/hackforla/website/pull/3795#event-8182898918) at 2023-01-09 07:21 AM PST -bzzz-coding,2023-01-09T19:47:19Z,- bzzz-coding assigned to issue: [2278](https://github.com/hackforla/website/issues/2278#issuecomment-926948584) at 2023-01-09 11:47 AM PST -bzzz-coding,2023-01-09T19:53:12Z,- bzzz-coding commented on issue: [2278](https://github.com/hackforla/website/issues/2278#issuecomment-1376199180) at 2023-01-09 11:53 AM PST -bzzz-coding,2023-01-09T20:19:27Z,- bzzz-coding opened pull request: [3800](https://github.com/hackforla/website/pull/3800) at 2023-01-09 12:19 PM PST -bzzz-coding,2023-01-10T00:11:38Z,- bzzz-coding pull request merged: [3800](https://github.com/hackforla/website/pull/3800#event-8186990702) at 2023-01-09 04:11 PM PST -bzzz-coding,2023-01-10T18:42:35Z,- bzzz-coding assigned to issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351734938) at 2023-01-10 10:42 AM PST -bzzz-coding,2023-01-10T18:45:20Z,- bzzz-coding commented on issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1377696925) at 2023-01-10 10:45 AM PST -bzzz-coding,2023-01-10T18:47:05Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1377698703) at 2023-01-10 10:47 AM PST -bzzz-coding,2023-01-10T21:09:30Z,- bzzz-coding opened pull request: [3806](https://github.com/hackforla/website/pull/3806) at 2023-01-10 01:09 PM PST -bzzz-coding,2023-01-10T21:26:30Z,- bzzz-coding commented on pull request: [3804](https://github.com/hackforla/website/pull/3804#issuecomment-1377891189) at 2023-01-10 01:26 PM PST -bzzz-coding,2023-01-10T21:39:53Z,- bzzz-coding submitted pull request review: [3804](https://github.com/hackforla/website/pull/3804#pullrequestreview-1243009340) at 2023-01-10 01:39 PM PST -bzzz-coding,2023-01-11T20:16:35Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1379432445) at 2023-01-11 12:16 PM PST -bzzz-coding,2023-01-12T12:34:46Z,- bzzz-coding pull request merged: [3806](https://github.com/hackforla/website/pull/3806#event-8210903191) at 2023-01-12 04:34 AM PST -bzzz-coding,2023-01-12T22:05:10Z,- bzzz-coding assigned to issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1321202216) at 2023-01-12 02:05 PM PST -bzzz-coding,2023-01-12T22:08:15Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1381047079) at 2023-01-12 02:08 PM PST -bzzz-coding,2023-01-13T00:46:02Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1381164332) at 2023-01-12 04:46 PM PST -bzzz-coding,2023-01-13T01:49:25Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1381208287) at 2023-01-12 05:49 PM PST -bzzz-coding,2023-01-13T01:59:20Z,- bzzz-coding commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1381215399) at 2023-01-12 05:59 PM PST -bzzz-coding,2023-01-13T02:11:05Z,- bzzz-coding submitted pull request review: [3811](https://github.com/hackforla/website/pull/3811#pullrequestreview-1246812834) at 2023-01-12 06:11 PM PST -bzzz-coding,2023-01-13T19:50:57Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1382321028) at 2023-01-13 11:50 AM PST -bzzz-coding,2023-01-17T17:19:56Z,- bzzz-coding submitted pull request review: [3811](https://github.com/hackforla/website/pull/3811#pullrequestreview-1252079121) at 2023-01-17 09:19 AM PST -bzzz-coding,2023-01-17T17:21:41Z,- bzzz-coding commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1385767530) at 2023-01-17 09:21 AM PST -bzzz-coding,2023-01-18T04:51:34Z,- bzzz-coding opened pull request: [3839](https://github.com/hackforla/website/pull/3839) at 2023-01-17 08:51 PM PST -bzzz-coding,2023-01-18T04:57:42Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1386488681) at 2023-01-17 08:57 PM PST -bzzz-coding,2023-01-19T18:20:10Z,- bzzz-coding commented on pull request: [3841](https://github.com/hackforla/website/pull/3841#issuecomment-1397417205) at 2023-01-19 10:20 AM PST -bzzz-coding,2023-01-19T18:24:33Z,- bzzz-coding submitted pull request review: [3841](https://github.com/hackforla/website/pull/3841#pullrequestreview-1262366952) at 2023-01-19 10:24 AM PST -bzzz-coding,2023-01-22T01:33:16Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1399379706) at 2023-01-21 05:33 PM PST -bzzz-coding,2023-01-23T17:18:44Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1400703596) at 2023-01-23 09:18 AM PST -bzzz-coding,2023-01-25T04:30:34Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1403084599) at 2023-01-24 08:30 PM PST -bzzz-coding,2023-02-01T21:06:29Z,- bzzz-coding pull request merged: [3839](https://github.com/hackforla/website/pull/3839#event-8414651432) at 2023-02-01 01:06 PM PST -bzzz-coding,2023-02-02T21:37:54Z,- bzzz-coding commented on pull request: [3924](https://github.com/hackforla/website/pull/3924#issuecomment-1414407651) at 2023-02-02 01:37 PM PST -bzzz-coding,2023-02-02T21:47:44Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1414419681) at 2023-02-02 01:47 PM PST -bzzz-coding,2023-02-02T21:52:12Z,- bzzz-coding commented on pull request: [3926](https://github.com/hackforla/website/pull/3926#issuecomment-1414424089) at 2023-02-02 01:52 PM PST -bzzz-coding,2023-02-02T23:19:18Z,- bzzz-coding submitted pull request review: [3926](https://github.com/hackforla/website/pull/3926#pullrequestreview-1282056948) at 2023-02-02 03:19 PM PST -bzzz-coding,2023-02-02T23:38:13Z,- bzzz-coding submitted pull request review: [3924](https://github.com/hackforla/website/pull/3924#pullrequestreview-1282070221) at 2023-02-02 03:38 PM PST -bzzz-coding,2023-02-02T23:56:03Z,- bzzz-coding commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1414525089) at 2023-02-02 03:56 PM PST -bzzz-coding,2023-02-03T01:28:58Z,- bzzz-coding commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1414588606) at 2023-02-02 05:28 PM PST -bzzz-coding,2023-02-07T02:00:59Z,- bzzz-coding commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1420059286) at 2023-02-06 06:00 PM PST -bzzz-coding,2023-02-07T02:02:47Z,- bzzz-coding commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1420062357) at 2023-02-06 06:02 PM PST -bzzz-coding,2023-02-07T02:21:41Z,- bzzz-coding submitted pull request review: [3927](https://github.com/hackforla/website/pull/3927#pullrequestreview-1286291801) at 2023-02-06 06:21 PM PST -bzzz-coding,2023-02-07T02:51:02Z,- bzzz-coding submitted pull request review: [3923](https://github.com/hackforla/website/pull/3923#pullrequestreview-1286309729) at 2023-02-06 06:51 PM PST -bzzz-coding,2023-02-07T03:09:25Z,- bzzz-coding assigned to issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1399385526) at 2023-02-06 07:09 PM PST -bzzz-coding,2023-02-07T03:12:34Z,- bzzz-coding commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1420135317) at 2023-02-06 07:12 PM PST -bzzz-coding,2023-02-07T18:58:57Z,- bzzz-coding commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1421293131) at 2023-02-07 10:58 AM PST -bzzz-coding,2023-02-10T21:27:14Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1426365719) at 2023-02-10 01:27 PM PST -bzzz-coding,2023-02-18T01:58:52Z,- bzzz-coding commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1435449155) at 2023-02-17 05:58 PM PST -bzzz-coding,2023-02-22T18:08:52Z,- bzzz-coding commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1440531851) at 2023-02-22 10:08 AM PST -bzzz-coding,2023-02-23T00:10:08Z,- bzzz-coding submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1310459370) at 2023-02-22 04:10 PM PST -bzzz-coding,2023-02-24T23:23:39Z,- bzzz-coding submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1314375666) at 2023-02-24 03:23 PM PST -bzzz-coding,2023-03-01T03:40:28Z,- bzzz-coding commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1449285028) at 2023-02-28 07:40 PM PST -bzzz-coding,2023-03-04T03:17:33Z,- bzzz-coding commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1454355593) at 2023-03-03 07:17 PM PST -bzzz-coding,2023-03-04T07:51:43Z,- bzzz-coding opened pull request: [4109](https://github.com/hackforla/website/pull/4109) at 2023-03-03 11:51 PM PST -bzzz-coding,2023-03-04T08:34:28Z,- bzzz-coding pull request closed w/o merging: [4109](https://github.com/hackforla/website/pull/4109#event-8665566196) at 2023-03-04 12:34 AM PST -bzzz-coding,2023-03-04T17:53:14Z,- bzzz-coding opened pull request: [4110](https://github.com/hackforla/website/pull/4110) at 2023-03-04 09:53 AM PST -bzzz-coding,2023-03-04T18:06:42Z,- bzzz-coding commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454825805) at 2023-03-04 10:06 AM PST -bzzz-coding,2023-03-05T07:04:05Z,- bzzz-coding commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1455009034) at 2023-03-04 11:04 PM PST -bzzz-coding,2023-03-07T21:30:38Z,- bzzz-coding submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1329566576) at 2023-03-07 01:30 PM PST -bzzz-coding,2023-03-13T22:55:54Z,- bzzz-coding commented on pull request: [4156](https://github.com/hackforla/website/pull/4156#issuecomment-1467086638) at 2023-03-13 03:55 PM PDT -bzzz-coding,2023-03-14T00:23:10Z,- bzzz-coding commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1467160800) at 2023-03-13 05:23 PM PDT -bzzz-coding,2023-03-14T18:32:17Z,- bzzz-coding submitted pull request review: [4156](https://github.com/hackforla/website/pull/4156#pullrequestreview-1340045873) at 2023-03-14 11:32 AM PDT -bzzz-coding,2023-03-15T03:05:01Z,- bzzz-coding commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1469240775) at 2023-03-14 08:05 PM PDT -bzzz-coding,2023-03-15T21:56:20Z,- bzzz-coding submitted pull request review: [4176](https://github.com/hackforla/website/pull/4176#pullrequestreview-1342488709) at 2023-03-15 02:56 PM PDT -bzzz-coding,2023-03-18T23:47:41Z,- bzzz-coding pull request merged: [4110](https://github.com/hackforla/website/pull/4110#event-8786486927) at 2023-03-18 04:47 PM PDT -bzzz-coding,2023-03-24T04:10:25Z,- bzzz-coding assigned to issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482202468) at 2023-03-23 09:10 PM PDT -bzzz-coding,2023-03-24T04:12:57Z,- bzzz-coding commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482224065) at 2023-03-23 09:12 PM PDT -bzzz-coding,2023-03-29T02:24:38Z,- bzzz-coding unassigned from issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482224065) at 2023-03-28 07:24 PM PDT -bzzz-coding,2023-03-29T16:38:29Z,- bzzz-coding commented on pull request: [4338](https://github.com/hackforla/website/pull/4338#issuecomment-1488938084) at 2023-03-29 09:38 AM PDT -bzzz-coding,2023-03-29T19:22:26Z,- bzzz-coding submitted pull request review: [4338](https://github.com/hackforla/website/pull/4338#pullrequestreview-1363800564) at 2023-03-29 12:22 PM PDT -bzzz-coding,2023-03-29T19:39:02Z,- bzzz-coding closed issue by PR 4260: [3860](https://github.com/hackforla/website/issues/3860#event-8880087437) at 2023-03-29 12:39 PM PDT -bzzz-coding,2023-04-03T05:29:26Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1493686693) at 2023-04-02 10:29 PM PDT -bzzz-coding,2023-04-05T17:07:58Z,- bzzz-coding commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1497841175) at 2023-04-05 10:07 AM PDT -bzzz-coding,2023-04-05T19:25:53Z,- bzzz-coding commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1498004446) at 2023-04-05 12:25 PM PDT -bzzz-coding,2023-04-05T19:42:40Z,- bzzz-coding commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498022904) at 2023-04-05 12:42 PM PDT -bzzz-coding,2023-04-05T19:54:43Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498036793) at 2023-04-05 12:54 PM PDT -bzzz-coding,2023-04-05T21:15:30Z,- bzzz-coding submitted pull request review: [4339](https://github.com/hackforla/website/pull/4339#pullrequestreview-1373705403) at 2023-04-05 02:15 PM PDT -bzzz-coding,2023-04-06T04:39:39Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498483038) at 2023-04-05 09:39 PM PDT -bzzz-coding,2023-04-06T17:46:35Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499415338) at 2023-04-06 10:46 AM PDT -bzzz-coding,2023-04-06T21:13:48Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499638391) at 2023-04-06 02:13 PM PDT -bzzz-coding,2023-04-06T21:42:09Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499661927) at 2023-04-06 02:42 PM PDT -bzzz-coding,2023-04-06T23:34:18Z,- bzzz-coding submitted pull request review: [4280](https://github.com/hackforla/website/pull/4280#pullrequestreview-1375684165) at 2023-04-06 04:34 PM PDT -bzzz-coding,2023-04-11T23:50:54Z,- bzzz-coding commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1504284051) at 2023-04-11 04:50 PM PDT -c-fuchs,2019-11-03T04:45:13Z,- c-fuchs assigned to issue: [167](https://github.com/hackforla/website/issues/167) at 2019-11-02 08:45 PM PST -c-fuchs,2019-11-03T20:21:27Z,- c-fuchs unassigned from issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174544) at 2019-11-03 12:21 PM PST -c-fuchs,2020-03-28T21:25:10Z,- c-fuchs commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-605521617) at 2020-03-28 02:25 PM PDT -c-fuchs,2020-03-30T05:34:29Z,- c-fuchs commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-605791561) at 2020-03-29 10:34 PM PDT -c-fuchs,2020-03-30T05:36:20Z,- c-fuchs commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-605792032) at 2020-03-29 10:36 PM PDT -c-fuchs,2020-04-08T02:47:26Z,- c-fuchs commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-610721690) at 2020-04-07 07:47 PM PDT -c-fuchs,2020-04-18T19:39:43Z,- c-fuchs assigned to issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-612684281) at 2020-04-18 12:39 PM PDT -c-fuchs,2020-04-22T00:57:02Z,- c-fuchs commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-617485850) at 2020-04-21 05:57 PM PDT -c-fuchs,2020-05-05T21:53:17Z,- c-fuchs unassigned from issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-624326242) at 2020-05-05 02:53 PM PDT -c-rose-g,6945,SKILLS ISSUE -c-rose-g,2024-06-04T02:51:20Z,- c-rose-g opened issue: [6945](https://github.com/hackforla/website/issues/6945) at 2024-06-03 07:51 PM PDT -c-rose-g,2024-06-04T02:51:30Z,- c-rose-g assigned to issue: [6945](https://github.com/hackforla/website/issues/6945) at 2024-06-03 07:51 PM PDT -callmelazarus,4160,SKILLS ISSUE -callmelazarus,2023-03-14T03:00:08Z,- callmelazarus opened issue: [4160](https://github.com/hackforla/website/issues/4160) at 2023-03-13 08:00 PM PDT -callmelazarus,2023-03-14T03:33:20Z,- callmelazarus assigned to issue: [4160](https://github.com/hackforla/website/issues/4160) at 2023-03-13 08:33 PM PDT -CalvinTan607,3389,SKILLS ISSUE -CalvinTan607,2022-07-19T02:47:06Z,- CalvinTan607 opened issue: [3389](https://github.com/hackforla/website/issues/3389) at 2022-07-18 07:47 PM PDT -CalvinTan607,2022-07-24T03:37:59Z,- CalvinTan607 assigned to issue: [3389](https://github.com/hackforla/website/issues/3389) at 2022-07-23 08:37 PM PDT -CalvinTan607,2022-07-31T15:56:41Z,- CalvinTan607 assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1180917782) at 2022-07-31 08:56 AM PDT -CalvinTan607,2022-07-31T16:20:16Z,- CalvinTan607 commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1200455557) at 2022-07-31 09:20 AM PDT -CalvinTan607,2022-07-31T16:34:38Z,- CalvinTan607 unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1200457781) at 2022-07-31 09:34 AM PDT -CalvinTan607,2022-07-31T16:40:30Z,- CalvinTan607 commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1200459192) at 2022-07-31 09:40 AM PDT -CalvinTan607,2022-07-31T16:49:55Z,- CalvinTan607 assigned to issue: [2818](https://github.com/hackforla/website/issues/2818#issuecomment-1046318181) at 2022-07-31 09:49 AM PDT -CalvinTan607,2022-07-31T16:56:29Z,- CalvinTan607 commented on issue: [2818](https://github.com/hackforla/website/issues/2818#issuecomment-1200461463) at 2022-07-31 09:56 AM PDT -CalvinTan607,2022-08-01T05:09:23Z,- CalvinTan607 opened pull request: [3445](https://github.com/hackforla/website/pull/3445) at 2022-07-31 10:09 PM PDT -CalvinTan607,2022-08-01T20:28:33Z,- CalvinTan607 pull request merged: [3445](https://github.com/hackforla/website/pull/3445#event-7104649404) at 2022-08-01 01:28 PM PDT -CalvinTan607,2022-08-08T23:57:26Z,- CalvinTan607 assigned to issue: [3104](https://github.com/hackforla/website/issues/3104#issuecomment-1116856377) at 2022-08-08 04:57 PM PDT -CalvinTan607,2022-08-09T00:09:48Z,- CalvinTan607 commented on issue: [3104](https://github.com/hackforla/website/issues/3104#issuecomment-1208746434) at 2022-08-08 05:09 PM PDT -CalvinTan607,2022-08-09T00:21:38Z,- CalvinTan607 opened pull request: [3455](https://github.com/hackforla/website/pull/3455) at 2022-08-08 05:21 PM PDT -CalvinTan607,2022-08-10T00:11:18Z,- CalvinTan607 assigned to issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1194666034) at 2022-08-09 05:11 PM PDT -CalvinTan607,2022-08-10T00:16:17Z,- CalvinTan607 commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1210013960) at 2022-08-09 05:16 PM PDT -CalvinTan607,2022-08-10T00:32:45Z,- CalvinTan607 opened pull request: [3457](https://github.com/hackforla/website/pull/3457) at 2022-08-09 05:32 PM PDT -CalvinTan607,2022-08-10T01:16:08Z,- CalvinTan607 pull request merged: [3455](https://github.com/hackforla/website/pull/3455#event-7159747686) at 2022-08-09 06:16 PM PDT -CalvinTan607,2022-08-12T19:48:57Z,- CalvinTan607 pull request merged: [3457](https://github.com/hackforla/website/pull/3457#event-7181578127) at 2022-08-12 12:48 PM PDT -captain-nimo,2021-01-13T20:09:33Z,- captain-nimo assigned to issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759703476) at 2021-01-13 12:09 PM PST -captain-nimo,2021-01-15T03:58:40Z,- captain-nimo commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-760629481) at 2021-01-14 07:58 PM PST -captain-nimo,2021-01-24T07:53:55Z,- captain-nimo unassigned from issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-766306063) at 2021-01-23 11:53 PM PST -captain-nimo,2021-02-05T01:34:15Z,- captain-nimo commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-773719558) at 2021-02-04 05:34 PM PST -captain-nimo,2021-02-05T02:35:55Z,- captain-nimo commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-773741939) at 2021-02-04 06:35 PM PST -captain-nimo,2021-03-10T20:11:42Z,- captain-nimo assigned to issue: [1196](https://github.com/hackforla/website/issues/1196) at 2021-03-10 12:11 PM PST -captain-nimo,2021-03-19T03:29:08Z,- captain-nimo commented on issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-802520761) at 2021-03-18 08:29 PM PDT -captain-nimo,2021-03-19T03:58:11Z,- captain-nimo unassigned from issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-802520761) at 2021-03-18 08:58 PM PDT -Carlos-A-P,2753,SKILLS ISSUE -Carlos-A-P,2022-02-09T00:14:25Z,- Carlos-A-P opened issue: [2753](https://github.com/hackforla/website/issues/2753) at 2022-02-08 04:14 PM PST -Carlos-A-P,2022-02-11T03:07:04Z,- Carlos-A-P assigned to issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-1033191074) at 2022-02-10 07:07 PM PST -Carlos-A-P,2022-02-11T03:42:47Z,- Carlos-A-P assigned to issue: [2661](https://github.com/hackforla/website/issues/2661#issuecomment-1005361397) at 2022-02-10 07:42 PM PST -Carlos-A-P,2022-02-11T04:13:43Z,- Carlos-A-P commented on issue: [2661](https://github.com/hackforla/website/issues/2661#issuecomment-1035869413) at 2022-02-10 08:13 PM PST -Carlos-A-P,2022-02-12T22:32:29Z,- Carlos-A-P opened pull request: [2769](https://github.com/hackforla/website/pull/2769) at 2022-02-12 02:32 PM PST -Carlos-A-P,2022-02-13T10:03:00Z,- Carlos-A-P pull request merged: [2769](https://github.com/hackforla/website/pull/2769#event-6060553751) at 2022-02-13 02:03 AM PST -Carlos-A-P,2022-02-14T22:29:06Z,- Carlos-A-P assigned to issue: [2088](https://github.com/hackforla/website/issues/2088) at 2022-02-14 02:29 PM PST -Carlos-A-P,2022-02-14T22:33:24Z,- Carlos-A-P commented on issue: [2088](https://github.com/hackforla/website/issues/2088#issuecomment-1039640043) at 2022-02-14 02:33 PM PST -Carlos-A-P,2022-02-16T01:41:03Z,- Carlos-A-P opened pull request: [2779](https://github.com/hackforla/website/pull/2779) at 2022-02-15 05:41 PM PST -Carlos-A-P,2022-02-16T03:35:11Z,- Carlos-A-P commented on pull request: [2780](https://github.com/hackforla/website/pull/2780#issuecomment-1041062520) at 2022-02-15 07:35 PM PST -Carlos-A-P,2022-02-17T20:49:04Z,- Carlos-A-P submitted pull request review: [2780](https://github.com/hackforla/website/pull/2780#pullrequestreview-886534514) at 2022-02-17 12:49 PM PST -Carlos-A-P,2022-02-18T03:38:30Z,- Carlos-A-P pull request merged: [2779](https://github.com/hackforla/website/pull/2779#event-6095376987) at 2022-02-17 07:38 PM PST -Carlos-A-P,2022-02-19T03:11:52Z,- Carlos-A-P assigned to issue: [2086](https://github.com/hackforla/website/issues/2086) at 2022-02-18 07:11 PM PST -Carlos-A-P,2022-02-19T03:14:52Z,- Carlos-A-P commented on issue: [2086](https://github.com/hackforla/website/issues/2086#issuecomment-1045641583) at 2022-02-18 07:14 PM PST -Carlos-A-P,2022-02-19T21:59:02Z,- Carlos-A-P opened pull request: [2803](https://github.com/hackforla/website/pull/2803) at 2022-02-19 01:59 PM PST -Carlos-A-P,2022-02-20T18:22:24Z,- Carlos-A-P commented on pull request: [2789](https://github.com/hackforla/website/pull/2789#issuecomment-1046294029) at 2022-02-20 10:22 AM PST -Carlos-A-P,2022-02-20T18:23:43Z,- Carlos-A-P commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1046294271) at 2022-02-20 10:23 AM PST -Carlos-A-P,2022-02-20T22:05:49Z,- Carlos-A-P opened issue: [2820](https://github.com/hackforla/website/issues/2820) at 2022-02-20 02:05 PM PST -Carlos-A-P,2022-02-20T22:17:07Z,- Carlos-A-P commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1046332664) at 2022-02-20 02:17 PM PST -Carlos-A-P,2022-02-21T22:46:53Z,- Carlos-A-P submitted pull request review: [2789](https://github.com/hackforla/website/pull/2789#pullrequestreview-889147139) at 2022-02-21 02:46 PM PST -Carlos-A-P,2022-02-22T02:12:42Z,- Carlos-A-P pull request merged: [2803](https://github.com/hackforla/website/pull/2803#event-6114861764) at 2022-02-21 06:12 PM PST -Carlos-A-P,2022-02-22T03:20:24Z,- Carlos-A-P assigned to issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1030189909) at 2022-02-21 07:20 PM PST -Carlos-A-P,2022-02-22T03:22:15Z,- Carlos-A-P commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1047388465) at 2022-02-21 07:22 PM PST -Carlos-A-P,2022-02-22T17:58:54Z,- Carlos-A-P reopened pull request: [2790](https://github.com/hackforla/website/pull/2790#event-6119925346) at 2022-02-22 09:58 AM PST -Carlos-A-P,2022-02-22T18:03:57Z,- Carlos-A-P commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1048069028) at 2022-02-22 10:03 AM PST -Carlos-A-P,2022-02-23T16:59:09Z,- Carlos-A-P opened issue: [2873](https://github.com/hackforla/website/issues/2873) at 2022-02-23 08:59 AM PST -Carlos-A-P,2022-02-23T17:06:28Z,- Carlos-A-P opened issue: [2874](https://github.com/hackforla/website/issues/2874) at 2022-02-23 09:06 AM PST -Carlos-A-P,2022-02-23T17:10:38Z,- Carlos-A-P opened issue: [2875](https://github.com/hackforla/website/issues/2875) at 2022-02-23 09:10 AM PST -Carlos-A-P,2022-02-26T21:38:14Z,- Carlos-A-P commented on pull request: [2889](https://github.com/hackforla/website/pull/2889#issuecomment-1052653710) at 2022-02-26 01:38 PM PST -Carlos-A-P,2022-02-26T22:11:29Z,- Carlos-A-P commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1052693141) at 2022-02-26 02:11 PM PST -Carlos-A-P,2022-02-26T22:12:24Z,- Carlos-A-P closed issue as completed: [2753](https://github.com/hackforla/website/issues/2753#event-6147338751) at 2022-02-26 02:12 PM PST -Carlos-A-P,2022-02-26T22:27:19Z,- Carlos-A-P submitted pull request review: [2889](https://github.com/hackforla/website/pull/2889#pullrequestreview-894444688) at 2022-02-26 02:27 PM PST -Carlos-A-P,2022-03-06T00:48:26Z,- Carlos-A-P commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1059862608) at 2022-03-05 04:48 PM PST -Carlos-A-P,2022-03-09T03:13:53Z,- Carlos-A-P commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1062512021) at 2022-03-08 07:13 PM PST -Carlos-A-P,2022-03-13T19:55:23Z,- Carlos-A-P opened pull request: [2977](https://github.com/hackforla/website/pull/2977) at 2022-03-13 12:55 PM PDT -Carlos-A-P,2022-03-14T23:49:15Z,- Carlos-A-P commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1067418966) at 2022-03-14 04:49 PM PDT -Carlos-A-P,2022-03-17T02:29:06Z,- Carlos-A-P commented on pull request: [2986](https://github.com/hackforla/website/pull/2986#issuecomment-1069906788) at 2022-03-16 07:29 PM PDT -Carlos-A-P,2022-03-17T02:31:09Z,- Carlos-A-P commented on pull request: [2986](https://github.com/hackforla/website/pull/2986#issuecomment-1069911509) at 2022-03-16 07:31 PM PDT -Carlos-A-P,2022-03-17T05:16:51Z,- Carlos-A-P commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1070335565) at 2022-03-16 10:16 PM PDT -Carlos-A-P,2022-03-18T06:42:29Z,- Carlos-A-P submitted pull request review: [2986](https://github.com/hackforla/website/pull/2986#pullrequestreview-913989809) at 2022-03-17 11:42 PM PDT -Carlos-A-P,2022-03-23T02:42:35Z,- Carlos-A-P commented on pull request: [3001](https://github.com/hackforla/website/pull/3001#issuecomment-1075857132) at 2022-03-22 07:42 PM PDT -Carlos-A-P,2022-03-24T04:42:35Z,- Carlos-A-P submitted pull request review: [3001](https://github.com/hackforla/website/pull/3001#pullrequestreview-919700164) at 2022-03-23 09:42 PM PDT -Carlos-A-P,2022-03-27T21:11:57Z,- Carlos-A-P commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1080019998) at 2022-03-27 02:11 PM PDT -Carlos-A-P,2022-03-30T01:35:53Z,- Carlos-A-P commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1082526939) at 2022-03-29 06:35 PM PDT -Carlos-A-P,2022-03-30T03:01:40Z,- Carlos-A-P commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1082571129) at 2022-03-29 08:01 PM PDT -Carlos-A-P,2022-03-31T16:14:45Z,- Carlos-A-P commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1084800087) at 2022-03-31 09:14 AM PDT -Carlos-A-P,2022-04-01T03:43:37Z,- Carlos-A-P submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-928401476) at 2022-03-31 08:43 PM PDT -Carlos-A-P,2022-04-05T18:21:22Z,- Carlos-A-P commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1089149480) at 2022-04-05 11:21 AM PDT -Carlos-A-P,2022-04-08T04:02:02Z,- Carlos-A-P commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1092418456) at 2022-04-07 09:02 PM PDT -Carlos-A-P,2022-04-08T15:42:12Z,- Carlos-A-P commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1093019394) at 2022-04-08 08:42 AM PDT -Carlos-A-P,2022-04-08T19:12:37Z,- Carlos-A-P pull request merged: [2977](https://github.com/hackforla/website/pull/2977#event-6398643164) at 2022-04-08 12:12 PM PDT -Carlos-A-P,2022-04-08T20:23:32Z,- Carlos-A-P assigned to issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-04-08 01:23 PM PDT -Carlos-A-P,2022-04-08T20:25:06Z,- Carlos-A-P unassigned from issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-04-08 01:25 PM PDT -Carlos-A-P,2022-04-10T17:32:17Z,- Carlos-A-P commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-1094333363) at 2022-04-10 10:32 AM PDT -Carlos-A-P,2022-04-14T03:10:27Z,- Carlos-A-P assigned to issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1046109777) at 2022-04-13 08:10 PM PDT -Carlos-A-P,2022-04-14T03:12:13Z,- Carlos-A-P commented on issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1098666061) at 2022-04-13 08:12 PM PDT -Carlos-A-P,2022-04-16T23:25:30Z,- Carlos-A-P commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1100769895) at 2022-04-16 04:25 PM PDT -Carlos-A-P,2022-04-17T06:47:03Z,- Carlos-A-P submitted pull request review: [3057](https://github.com/hackforla/website/pull/3057#pullrequestreview-943913052) at 2022-04-16 11:47 PM PDT -Carlos-A-P,2022-04-21T04:10:53Z,- Carlos-A-P opened pull request: [3075](https://github.com/hackforla/website/pull/3075) at 2022-04-20 09:10 PM PDT -Carlos-A-P,2022-04-21T04:15:16Z,- Carlos-A-P commented on pull request: [3072](https://github.com/hackforla/website/pull/3072#issuecomment-1104689475) at 2022-04-20 09:15 PM PDT -Carlos-A-P,2022-04-21T04:25:39Z,- Carlos-A-P submitted pull request review: [3072](https://github.com/hackforla/website/pull/3072#pullrequestreview-948029965) at 2022-04-20 09:25 PM PDT -Carlos-A-P,2022-04-24T02:29:07Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1107689241) at 2022-04-23 07:29 PM PDT -Carlos-A-P,2022-04-27T03:23:21Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1110491508) at 2022-04-26 08:23 PM PDT -Carlos-A-P,2022-05-02T02:49:27Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1114445490) at 2022-05-01 07:49 PM PDT -Carlos-A-P,2022-05-02T03:02:01Z,- Carlos-A-P commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114448412) at 2022-05-01 08:02 PM PDT -Carlos-A-P,2022-05-02T03:03:52Z,- Carlos-A-P submitted pull request review: [3086](https://github.com/hackforla/website/pull/3086#pullrequestreview-958685531) at 2022-05-01 08:03 PM PDT -Carlos-A-P,2022-05-02T03:05:51Z,- Carlos-A-P commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1114450222) at 2022-05-01 08:05 PM PDT -Carlos-A-P,2022-05-02T03:06:35Z,- Carlos-A-P commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1114450605) at 2022-05-01 08:06 PM PDT -Carlos-A-P,2022-05-03T15:02:51Z,- Carlos-A-P commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1116204700) at 2022-05-03 08:02 AM PDT -Carlos-A-P,2022-05-04T02:31:49Z,- Carlos-A-P commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1116874134) at 2022-05-03 07:31 PM PDT -Carlos-A-P,2022-05-04T04:23:07Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1116914193) at 2022-05-03 09:23 PM PDT -Carlos-A-P,2022-05-04T19:08:51Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1117714373) at 2022-05-04 12:08 PM PDT -Carlos-A-P,2022-05-07T05:36:02Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1120139194) at 2022-05-06 10:36 PM PDT -Carlos-A-P,2022-05-07T06:02:55Z,- Carlos-A-P commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1120142420) at 2022-05-06 11:02 PM PDT -Carlos-A-P,2022-05-09T00:24:59Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1120518126) at 2022-05-08 05:24 PM PDT -Carlos-A-P,2022-05-11T02:48:30Z,- Carlos-A-P commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1123121646) at 2022-05-10 07:48 PM PDT -Carlos-A-P,2022-05-11T03:09:47Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1123132320) at 2022-05-10 08:09 PM PDT -Carlos-A-P,2022-05-18T03:18:46Z,- Carlos-A-P commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1129523850) at 2022-05-17 08:18 PM PDT -Carlos-A-P,2022-05-18T03:32:38Z,- Carlos-A-P submitted pull request review: [3085](https://github.com/hackforla/website/pull/3085#pullrequestreview-976315035) at 2022-05-17 08:32 PM PDT -Carlos-A-P,2022-05-22T17:16:21Z,- Carlos-A-P assigned to issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1063874330) at 2022-05-22 10:16 AM PDT -Carlos-A-P,2022-05-22T17:28:16Z,- Carlos-A-P commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1133939432) at 2022-05-22 10:28 AM PDT -Carlos-A-P,2022-05-28T15:39:40Z,- Carlos-A-P commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140285448) at 2022-05-28 08:39 AM PDT -Carlos-A-P,2022-05-28T15:43:08Z,- Carlos-A-P submitted pull request review: [3086](https://github.com/hackforla/website/pull/3086#pullrequestreview-988533063) at 2022-05-28 08:43 AM PDT -Carlos-A-P,2022-06-02T02:31:40Z,- Carlos-A-P commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1144353244) at 2022-06-01 07:31 PM PDT -Carlos-A-P,2022-06-04T18:30:10Z,- Carlos-A-P commented on pull request: [3183](https://github.com/hackforla/website/pull/3183#issuecomment-1146664858) at 2022-06-04 11:30 AM PDT -Carlos-A-P,2022-06-07T01:18:24Z,- Carlos-A-P submitted pull request review: [3183](https://github.com/hackforla/website/pull/3183#pullrequestreview-997397111) at 2022-06-06 06:18 PM PDT -Carlos-A-P,2022-06-10T02:10:15Z,- Carlos-A-P unassigned from issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1144353244) at 2022-06-09 07:10 PM PDT -Carlos-A-P,2022-06-13T18:35:38Z,- Carlos-A-P commented on pull request: [3237](https://github.com/hackforla/website/pull/3237#issuecomment-1154249750) at 2022-06-13 11:35 AM PDT -Carlos-A-P,2022-06-13T18:41:31Z,- Carlos-A-P commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1154255212) at 2022-06-13 11:41 AM PDT -Carlos-A-P,2022-06-15T05:19:52Z,- Carlos-A-P submitted pull request review: [3237](https://github.com/hackforla/website/pull/3237#pullrequestreview-1006878975) at 2022-06-14 10:19 PM PDT -Carlos-A-P,2022-06-16T02:39:12Z,- Carlos-A-P submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1008422640) at 2022-06-15 07:39 PM PDT -Carlos-A-P,2022-06-16T05:10:01Z,- Carlos-A-P commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1157238463) at 2022-06-15 10:10 PM PDT -Carlos-A-P,2023-02-13T17:45:06Z,- Carlos-A-P assigned to issue: [3944](https://github.com/hackforla/website/issues/3944) at 2023-02-13 09:45 AM PST -Carlos-A-P,2023-02-13T17:45:19Z,- Carlos-A-P commented on issue: [3944](https://github.com/hackforla/website/issues/3944#issuecomment-1428389293) at 2023-02-13 09:45 AM PST -Carlos-A-P,2023-02-17T03:25:26Z,- Carlos-A-P opened pull request: [3993](https://github.com/hackforla/website/pull/3993) at 2023-02-16 07:25 PM PST -Carlos-A-P,2023-02-18T01:54:03Z,- Carlos-A-P pull request merged: [3993](https://github.com/hackforla/website/pull/3993#event-8552105263) at 2023-02-17 05:54 PM PST -carlosm22700,6338,SKILLS ISSUE -carlosm22700,2024-02-21T03:37:23Z,- carlosm22700 opened issue: [6338](https://github.com/hackforla/website/issues/6338) at 2024-02-20 07:37 PM PST -carlosm22700,2024-02-21T03:38:02Z,- carlosm22700 closed issue as not planned: [6338](https://github.com/hackforla/website/issues/6338#event-11870258859) at 2024-02-20 07:38 PM PST -carlosm22700,2024-02-21T03:38:10Z,- carlosm22700 reopened issue: [6338](https://github.com/hackforla/website/issues/6338#event-11870258859) at 2024-02-20 07:38 PM PST -carlosm22700,2024-02-21T04:14:52Z,- carlosm22700 assigned to issue: [6338](https://github.com/hackforla/website/issues/6338#event-11870258859) at 2024-02-20 08:14 PM PST -carolemlago,3543,SKILLS ISSUE -carolemlago,2022-09-13T02:41:41Z,- carolemlago opened issue: [3543](https://github.com/hackforla/website/issues/3543) at 2022-09-12 07:41 PM PDT -carolemlago,2022-09-16T02:57:38Z,- carolemlago assigned to issue: [3543](https://github.com/hackforla/website/issues/3543) at 2022-09-15 07:57 PM PDT -carolemlago,2022-09-20T16:36:36Z,- carolemlago assigned to issue: [2829](https://github.com/hackforla/website/issues/2829#issuecomment-1046975629) at 2022-09-20 09:36 AM PDT -carolemlago,2022-09-20T16:39:54Z,- carolemlago commented on issue: [2829](https://github.com/hackforla/website/issues/2829#issuecomment-1252618578) at 2022-09-20 09:39 AM PDT -carolemlago,2022-09-20T18:11:18Z,- carolemlago opened pull request: [3567](https://github.com/hackforla/website/pull/3567) at 2022-09-20 11:11 AM PDT -carolemlago,2022-09-21T02:32:24Z,- carolemlago commented on pull request: [3568](https://github.com/hackforla/website/pull/3568#issuecomment-1253130746) at 2022-09-20 07:32 PM PDT -carolemlago,2022-09-21T20:16:03Z,- carolemlago submitted pull request review: [3568](https://github.com/hackforla/website/pull/3568#pullrequestreview-1116038694) at 2022-09-21 01:16 PM PDT -carolemlago,2022-09-21T20:16:35Z,- carolemlago submitted pull request review: [3568](https://github.com/hackforla/website/pull/3568#pullrequestreview-1116039239) at 2022-09-21 01:16 PM PDT -carolemlago,2022-09-21T20:35:37Z,- carolemlago commented on issue: [3543](https://github.com/hackforla/website/issues/3543#issuecomment-1254201002) at 2022-09-21 01:35 PM PDT -carolemlago,2022-09-21T21:14:42Z,- carolemlago commented on issue: [3543](https://github.com/hackforla/website/issues/3543#issuecomment-1254234963) at 2022-09-21 02:14 PM PDT -carolemlago,2022-09-21T21:15:00Z,- carolemlago closed issue as completed: [3543](https://github.com/hackforla/website/issues/3543#event-7434348558) at 2022-09-21 02:15 PM PDT -carolemlago,2022-09-21T21:26:22Z,- carolemlago pull request merged: [3567](https://github.com/hackforla/website/pull/3567#event-7434409970) at 2022-09-21 02:26 PM PDT -carolemlago,2022-09-22T16:05:55Z,- carolemlago assigned to issue: [3098](https://github.com/hackforla/website/issues/3098#issuecomment-1116795715) at 2022-09-22 09:05 AM PDT -carolemlago,2022-09-22T16:09:18Z,- carolemlago commented on issue: [3098](https://github.com/hackforla/website/issues/3098#issuecomment-1255246077) at 2022-09-22 09:09 AM PDT -carolemlago,2022-09-23T21:59:55Z,- carolemlago opened pull request: [3578](https://github.com/hackforla/website/pull/3578) at 2022-09-23 02:59 PM PDT -carolemlago,2022-09-24T00:53:53Z,- carolemlago pull request merged: [3578](https://github.com/hackforla/website/pull/3578#event-7451053432) at 2022-09-23 05:53 PM PDT -carolemlago,2022-09-26T22:50:34Z,- carolemlago assigned to issue: [2025](https://github.com/hackforla/website/issues/2025) at 2022-09-26 03:50 PM PDT -carolemlago,2022-09-28T00:42:38Z,- carolemlago commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1260246094) at 2022-09-27 05:42 PM PDT -carolemlago,2022-09-28T00:55:42Z,- carolemlago submitted pull request review: [3586](https://github.com/hackforla/website/pull/3586#pullrequestreview-1122878659) at 2022-09-27 05:55 PM PDT -carolemlago,2022-09-28T02:24:44Z,- carolemlago unassigned from issue: [2025](https://github.com/hackforla/website/issues/2025) at 2022-09-27 07:24 PM PDT -carolemlago,2022-09-28T02:26:53Z,- carolemlago assigned to issue: [2954](https://github.com/hackforla/website/issues/2954#issuecomment-1063747543) at 2022-09-27 07:26 PM PDT -carolemlago,2022-09-28T02:28:18Z,- carolemlago commented on issue: [2954](https://github.com/hackforla/website/issues/2954#issuecomment-1260307299) at 2022-09-27 07:28 PM PDT -carolemlago,2022-09-29T00:06:39Z,- carolemlago opened pull request: [3589](https://github.com/hackforla/website/pull/3589) at 2022-09-28 05:06 PM PDT -carolemlago,2022-09-29T01:21:32Z,- carolemlago commented on pull request: [3589](https://github.com/hackforla/website/pull/3589#issuecomment-1261629772) at 2022-09-28 06:21 PM PDT -carolemlago,2022-09-29T21:28:45Z,- carolemlago commented on issue: [2954](https://github.com/hackforla/website/issues/2954#issuecomment-1262836995) at 2022-09-29 02:28 PM PDT -carolemlago,2022-09-30T21:52:33Z,- carolemlago pull request merged: [3589](https://github.com/hackforla/website/pull/3589#event-7498864872) at 2022-09-30 02:52 PM PDT -carolemlago,2022-09-30T22:02:12Z,- carolemlago assigned to issue: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-09-30 03:02 PM PDT -carolemlago,2022-09-30T22:11:01Z,- carolemlago unassigned from issue: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-09-30 03:11 PM PDT -carolemlago,2022-10-05T21:02:15Z,- carolemlago assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1261125508) at 2022-10-05 02:02 PM PDT -carolemlago,2022-10-05T21:03:22Z,- carolemlago commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1268973060) at 2022-10-05 02:03 PM PDT -carolemlago,2022-10-14T16:37:20Z,- carolemlago commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1279231029) at 2022-10-14 09:37 AM PDT -carolemlago,2022-10-19T02:40:50Z,- carolemlago commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1283324296) at 2022-10-18 07:40 PM PDT -carolemlago,2022-10-19T17:59:19Z,- carolemlago commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1284381184) at 2022-10-19 10:59 AM PDT -carolemlago,2022-10-20T23:35:37Z,- carolemlago unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1284381184) at 2022-10-20 04:35 PM PDT -cayd,2020-05-05T12:32:06Z,- cayd assigned to issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-596867262) at 2020-05-05 05:32 AM PDT -cayd,2020-05-06T23:28:56Z,- cayd commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-624943061) at 2020-05-06 04:28 PM PDT -cayd,2020-07-26T16:39:30Z,- cayd commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-664011204) at 2020-07-26 09:39 AM PDT -caz002,8128,SKILLS ISSUE -caz002,2025-05-14T02:42:19Z,- caz002 opened issue: [8128](https://github.com/hackforla/website/issues/8128) at 2025-05-13 07:42 PM PDT -caz002,2025-05-14T02:45:10Z,- caz002 assigned to issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2878467340) at 2025-05-13 07:45 PM PDT -caz002,2025-05-21T02:07:51Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896258337) at 2025-05-20 07:07 PM PDT -caz002,2025-05-21T02:10:10Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896261471) at 2025-05-20 07:10 PM PDT -caz002,2025-05-21T02:12:32Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896264848) at 2025-05-20 07:12 PM PDT -caz002,2025-05-21T02:26:00Z,- caz002 assigned to issue: [7957](https://github.com/hackforla/website/issues/7957) at 2025-05-20 07:26 PM PDT -caz002,2025-05-21T02:48:00Z,- caz002 commented on issue: [7957](https://github.com/hackforla/website/issues/7957#issuecomment-2896403664) at 2025-05-20 07:48 PM PDT -caz002,2025-05-21T03:11:20Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896433774) at 2025-05-20 08:11 PM PDT -caz002,2025-05-21T03:12:01Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896434714) at 2025-05-20 08:12 PM PDT -caz002,2025-05-21T03:24:10Z,- caz002 opened pull request: [8150](https://github.com/hackforla/website/pull/8150) at 2025-05-20 08:24 PM PDT -caz002,2025-05-21T03:27:58Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896452602) at 2025-05-20 08:27 PM PDT -caz002,2025-05-21T03:30:48Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896455761) at 2025-05-20 08:30 PM PDT -caz002,2025-05-24T06:36:33Z,- caz002 pull request merged: [8150](https://github.com/hackforla/website/pull/8150#event-17799188717) at 2025-05-23 11:36 PM PDT -caz002,2025-05-26T01:06:31Z,- caz002 assigned to issue: [7999](https://github.com/hackforla/website/issues/7999) at 2025-05-25 06:06 PM PDT -caz002,2025-05-26T01:29:15Z,- caz002 commented on issue: [7999](https://github.com/hackforla/website/issues/7999#issuecomment-2908265070) at 2025-05-25 06:29 PM PDT -caz002,2025-05-26T01:37:58Z,- caz002 opened pull request: [8160](https://github.com/hackforla/website/pull/8160) at 2025-05-25 06:37 PM PDT -caz002,2025-05-28T03:09:03Z,- caz002 pull request merged: [8160](https://github.com/hackforla/website/pull/8160#event-17842101478) at 2025-05-27 08:09 PM PDT -caz002,2025-05-28T18:07:02Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2917187818) at 2025-05-28 11:07 AM PDT -caz002,2025-05-28T18:11:57Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2917199630) at 2025-05-28 11:11 AM PDT -caz002,2025-05-28T18:13:00Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2917202123) at 2025-05-28 11:13 AM PDT -caz002,2025-05-28T18:49:59Z,- caz002 commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2917300444) at 2025-05-28 11:49 AM PDT -caz002,2025-06-04T04:04:13Z,- caz002 commented on pull request: [8169](https://github.com/hackforla/website/pull/8169#issuecomment-2938388325) at 2025-06-03 09:04 PM PDT -caz002,2025-06-04T04:38:10Z,- caz002 submitted pull request review: [8169](https://github.com/hackforla/website/pull/8169#pullrequestreview-2895109439) at 2025-06-03 09:38 PM PDT -caz002,2025-06-04T04:43:24Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2938491281) at 2025-06-03 09:43 PM PDT -caz002,2025-06-04T22:45:17Z,- caz002 assigned to issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339270739) at 2025-06-04 03:45 PM PDT -caz002,2025-06-04T22:46:51Z,- caz002 commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2941830504) at 2025-06-04 03:46 PM PDT -caz002,2025-06-05T20:26:27Z,- caz002 opened pull request: [8171](https://github.com/hackforla/website/pull/8171) at 2025-06-05 01:26 PM PDT -caz002,2025-06-06T19:06:14Z,- caz002 pull request merged: [8171](https://github.com/hackforla/website/pull/8171#event-18027595589) at 2025-06-06 12:06 PM PDT -caz002,2025-06-06T19:32:48Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2950485976) at 2025-06-06 12:32 PM PDT -caz002,2025-06-21T00:41:28Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2993200225) at 2025-06-20 05:41 PM PDT -caz002,2025-06-21T22:01:15Z,- caz002 commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2993789765) at 2025-06-21 03:01 PM PDT -caz002,2025-06-21T22:21:51Z,- caz002 commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2993796751) at 2025-06-21 03:21 PM PDT -caz002,2025-06-25T02:38:10Z,- caz002 submitted pull request review: [8199](https://github.com/hackforla/website/pull/8199#pullrequestreview-2956086627) at 2025-06-24 07:38 PM PDT -caz002,2025-06-25T02:52:21Z,- caz002 commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-3002603471) at 2025-06-24 07:52 PM PDT -caz002,2025-06-25T20:55:00Z,- caz002 submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2959635018) at 2025-06-25 01:55 PM PDT -caz002,2025-06-26T06:08:14Z,- caz002 commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3007214341) at 2025-06-25 11:08 PM PDT -caz002,2025-06-26T06:21:08Z,- caz002 submitted pull request review: [8206](https://github.com/hackforla/website/pull/8206#pullrequestreview-2960776803) at 2025-06-25 11:21 PM PDT -caz002,2025-06-26T06:25:45Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007275253) at 2025-06-25 11:25 PM PDT -caz002,2025-06-26T06:26:10Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007276604) at 2025-06-25 11:26 PM PDT -caz002,2025-06-26T06:26:14Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007276884) at 2025-06-25 11:26 PM PDT -caz002,2025-06-26T06:26:18Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007277212) at 2025-06-25 11:26 PM PDT -caz002,2025-07-02T17:17:00Z,- caz002 submitted pull request review: [8241](https://github.com/hackforla/website/pull/8241#pullrequestreview-2980015457) at 2025-07-02 10:17 AM PDT -caz002,2025-07-02T20:34:49Z,- caz002 commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3029244999) at 2025-07-02 01:34 PM PDT -caz002,2025-07-04T04:15:32Z,- caz002 submitted pull request review: [8241](https://github.com/hackforla/website/pull/8241#pullrequestreview-2985408278) at 2025-07-03 09:15 PM PDT -caz002,2025-07-07T04:48:15Z,- caz002 commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3043465322) at 2025-07-06 09:48 PM PDT -caz002,2025-07-07T17:22:45Z,- caz002 submitted pull request review: [8242](https://github.com/hackforla/website/pull/8242#pullrequestreview-2994764219) at 2025-07-07 10:22 AM PDT -caz002,2025-07-10T06:18:12Z,- caz002 commented on pull request: [8245](https://github.com/hackforla/website/pull/8245#issuecomment-3055757862) at 2025-07-09 11:18 PM PDT -caz002,2025-07-11T00:46:52Z,- caz002 commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3059773548) at 2025-07-10 05:46 PM PDT -caz002,2025-07-11T02:12:12Z,- caz002 submitted pull request review: [8245](https://github.com/hackforla/website/pull/8245#pullrequestreview-3008197256) at 2025-07-10 07:12 PM PDT -caz002,2025-07-11T17:20:22Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3063128901) at 2025-07-11 10:20 AM PDT -cbutcher318,2023-02-02T18:30:12Z,- cbutcher318 commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739564) at 2023-02-02 10:30 AM PST -ccelest1,5355,SKILLS ISSUE -ccelest1,2023-08-30T03:49:34Z,- ccelest1 opened issue: [5355](https://github.com/hackforla/website/issues/5355) at 2023-08-29 08:49 PM PDT -ccelest1,2023-08-30T03:49:42Z,- ccelest1 assigned to issue: [5355](https://github.com/hackforla/website/issues/5355) at 2023-08-29 08:49 PM PDT -cchrizzle,6950,SKILLS ISSUE -cchrizzle,2024-06-04T02:58:35Z,- cchrizzle opened issue: [6950](https://github.com/hackforla/website/issues/6950) at 2024-06-03 07:58 PM PDT -cchrizzle,2024-06-04T02:58:45Z,- cchrizzle assigned to issue: [6950](https://github.com/hackforla/website/issues/6950) at 2024-06-03 07:58 PM PDT -cchrizzle,2024-06-10T20:47:55Z,- cchrizzle assigned to issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2156697479) at 2024-06-10 01:47 PM PDT -cchrizzle,2024-06-10T22:37:39Z,- cchrizzle commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2159425989) at 2024-06-10 03:37 PM PDT -cchrizzle,2024-06-12T00:41:35Z,- cchrizzle commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2161851921) at 2024-06-11 05:41 PM PDT -cchrizzle,2024-06-12T17:48:54Z,- cchrizzle opened pull request: [6991](https://github.com/hackforla/website/pull/6991) at 2024-06-12 10:48 AM PDT -cchrizzle,2024-06-12T20:20:55Z,- cchrizzle commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163831551) at 2024-06-12 01:20 PM PDT -cchrizzle,2024-06-13T05:30:49Z,- cchrizzle commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2164426400) at 2024-06-12 10:30 PM PDT -cchrizzle,2024-06-13T23:04:11Z,- cchrizzle commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2166928661) at 2024-06-13 04:04 PM PDT -cchrizzle,2024-06-16T06:13:18Z,- cchrizzle pull request merged: [6991](https://github.com/hackforla/website/pull/6991#event-13173639917) at 2024-06-15 11:13 PM PDT -cchrizzle,2024-06-19T00:40:20Z,- cchrizzle commented on pull request: [7016](https://github.com/hackforla/website/pull/7016#issuecomment-2177309875) at 2024-06-18 05:40 PM PDT -cchrizzle,2024-06-19T00:41:49Z,- cchrizzle submitted pull request review: [7016](https://github.com/hackforla/website/pull/7016#pullrequestreview-2126777559) at 2024-06-18 05:41 PM PDT -cchrizzle,2024-06-24T01:25:28Z,- cchrizzle assigned to issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2183282457) at 2024-06-23 06:25 PM PDT -cchrizzle,2024-06-24T01:52:15Z,- cchrizzle commented on issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2185441890) at 2024-06-23 06:52 PM PDT -cchrizzle,2024-06-25T01:34:06Z,- cchrizzle commented on issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2187751347) at 2024-06-24 06:34 PM PDT -cchrizzle,2024-06-26T03:02:51Z,- cchrizzle assigned to issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2183287422) at 2024-06-25 08:02 PM PDT -cchrizzle,2024-06-27T19:16:45Z,- cchrizzle opened pull request: [7074](https://github.com/hackforla/website/pull/7074) at 2024-06-27 12:16 PM PDT -cchrizzle,2024-06-28T20:05:26Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2197554722) at 2024-06-28 01:05 PM PDT -cchrizzle,2024-06-28T21:44:23Z,- cchrizzle closed issue as completed: [6950](https://github.com/hackforla/website/issues/6950#event-13336773565) at 2024-06-28 02:44 PM PDT -cchrizzle,2024-06-28T21:45:57Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2197699785) at 2024-06-28 02:45 PM PDT -cchrizzle,2024-06-29T08:40:51Z,- cchrizzle pull request merged: [7074](https://github.com/hackforla/website/pull/7074#event-13338755965) at 2024-06-29 01:40 AM PDT -cchrizzle,2024-07-02T00:29:23Z,- cchrizzle commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2201526521) at 2024-07-01 05:29 PM PDT -cchrizzle,2024-07-02T00:49:24Z,- cchrizzle unassigned from issue: [7048](https://github.com/hackforla/website/issues/7048#event-13358067050) at 2024-07-01 05:49 PM PDT -cchrizzle,2024-07-22T21:33:14Z,- cchrizzle commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2243852466) at 2024-07-22 02:33 PM PDT -cchrizzle,2024-07-24T22:18:10Z,- cchrizzle submitted pull request review: [7130](https://github.com/hackforla/website/pull/7130#pullrequestreview-2197883152) at 2024-07-24 03:18 PM PDT -cchrizzle,2024-07-24T22:18:43Z,- cchrizzle commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2248991451) at 2024-07-24 03:18 PM PDT -cchrizzle,2024-07-24T22:25:08Z,- cchrizzle submitted pull request review: [7130](https://github.com/hackforla/website/pull/7130#pullrequestreview-2197889630) at 2024-07-24 03:25 PM PDT -cchrizzle,2024-07-30T19:01:26Z,- cchrizzle submitted pull request review: [7153](https://github.com/hackforla/website/pull/7153#pullrequestreview-2208462388) at 2024-07-30 12:01 PM PDT -cchrizzle,2024-08-07T20:00:49Z,- cchrizzle commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2274249975) at 2024-08-07 01:00 PM PDT -cchrizzle,2024-08-07T22:50:18Z,- cchrizzle submitted pull request review: [7235](https://github.com/hackforla/website/pull/7235#pullrequestreview-2226319921) at 2024-08-07 03:50 PM PDT -cchrizzle,2024-08-26T19:46:45Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2310955160) at 2024-08-26 12:46 PM PDT -cchrizzle,2024-08-26T20:04:05Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2310984554) at 2024-08-26 01:04 PM PDT -cchrizzle,2024-08-26T20:19:30Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2311012894) at 2024-08-26 01:19 PM PDT -ccortega2023,3783,SKILLS ISSUE -ccortega2023,2023-01-04T04:46:53Z,- ccortega2023 opened issue: [3783](https://github.com/hackforla/website/issues/3783) at 2023-01-03 08:46 PM PST -ccortega2023,2023-01-12T15:30:37Z,- ccortega2023 assigned to issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1375125708) at 2023-01-12 07:30 AM PST -celinalou92,5217,SKILLS ISSUE -celinalou92,2023-08-15T03:00:36Z,- celinalou92 opened issue: [5217](https://github.com/hackforla/website/issues/5217) at 2023-08-14 08:00 PM PDT -celinalou92,2023-08-15T03:00:44Z,- celinalou92 assigned to issue: [5217](https://github.com/hackforla/website/issues/5217) at 2023-08-14 08:00 PM PDT -celinalou92,2023-08-15T23:33:32Z,- celinalou92 commented on issue: [5217](https://github.com/hackforla/website/issues/5217#issuecomment-1679760018) at 2023-08-15 04:33 PM PDT -celinalou92,2023-08-31T17:09:54Z,- celinalou92 commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1701436321) at 2023-08-31 10:09 AM PDT -celinalou92,2023-09-01T01:52:06Z,- celinalou92 submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1605997732) at 2023-08-31 06:52 PM PDT -celinevalentine,2021-07-13T17:01:22Z,- celinevalentine assigned to issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-07-13 10:01 AM PDT -celinevalentine,2021-07-14T06:37:30Z,- celinevalentine opened pull request: [1937](https://github.com/hackforla/website/pull/1937) at 2021-07-13 11:37 PM PDT -celinevalentine,2021-07-14T06:42:28Z,- celinevalentine assigned to issue: [1876](https://github.com/hackforla/website/issues/1876) at 2021-07-13 11:42 PM PDT -celinevalentine,2021-07-15T21:35:29Z,- celinevalentine commented on pull request: [1937](https://github.com/hackforla/website/pull/1937#issuecomment-881028522) at 2021-07-15 02:35 PM PDT -celinevalentine,2021-07-15T22:32:35Z,- celinevalentine opened pull request: [1952](https://github.com/hackforla/website/pull/1952) at 2021-07-15 03:32 PM PDT -celinevalentine,2021-07-16T05:19:42Z,- celinevalentine commented on pull request: [1952](https://github.com/hackforla/website/pull/1952#issuecomment-881184757) at 2021-07-15 10:19 PM PDT -celinevalentine,2021-07-16T05:29:00Z,- celinevalentine closed issue by PR 1952: [1876](https://github.com/hackforla/website/issues/1876#event-5028931577) at 2021-07-15 10:29 PM PDT -celinevalentine,2021-07-16T05:29:20Z,- celinevalentine closed issue by PR 1937: [1581](https://github.com/hackforla/website/issues/1581#event-5028932295) at 2021-07-15 10:29 PM PDT -celinevalentine,2021-07-16T05:55:38Z,- celinevalentine assigned to issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877836926) at 2021-07-15 10:55 PM PDT -celinevalentine,2021-07-16T16:26:49Z,- celinevalentine commented on pull request: [1952](https://github.com/hackforla/website/pull/1952#issuecomment-881570208) at 2021-07-16 09:26 AM PDT -celinevalentine,2021-07-16T21:59:07Z,- celinevalentine pull request merged: [1937](https://github.com/hackforla/website/pull/1937#event-5032992203) at 2021-07-16 02:59 PM PDT -celinevalentine,2021-07-17T18:20:09Z,- celinevalentine pull request merged: [1952](https://github.com/hackforla/website/pull/1952#event-5034322829) at 2021-07-17 11:20 AM PDT -celinevalentine,2021-07-22T04:14:58Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-884645227) at 2021-07-21 09:14 PM PDT -celinevalentine,2021-07-22T04:18:40Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-884646146) at 2021-07-21 09:18 PM PDT -celinevalentine,2021-07-25T07:18:26Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-886158989) at 2021-07-25 12:18 AM PDT -celinevalentine,2021-07-26T06:29:08Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-886415897) at 2021-07-25 11:29 PM PDT -celinevalentine,2021-07-26T06:39:38Z,- celinevalentine commented on issue: [1916](https://github.com/hackforla/website/issues/1916#issuecomment-886421327) at 2021-07-25 11:39 PM PDT -celinevalentine,2021-07-26T17:54:23Z,- celinevalentine opened pull request: [2011](https://github.com/hackforla/website/pull/2011) at 2021-07-26 10:54 AM PDT -celinevalentine,2021-07-26T17:57:11Z,- celinevalentine commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-886908362) at 2021-07-26 10:57 AM PDT -celinevalentine,2021-07-30T06:44:01Z,- celinevalentine commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-889668767) at 2021-07-29 11:44 PM PDT -celinevalentine,2021-08-21T06:17:17Z,- celinevalentine commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-903067355) at 2021-08-20 11:17 PM PDT -celinevalentine,2021-09-13T07:18:53Z,- celinevalentine commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-917911266) at 2021-09-13 12:18 AM PDT -celinevalentine,2021-10-09T18:34:26Z,- celinevalentine pull request closed w/o merging: [2011](https://github.com/hackforla/website/pull/2011#event-5438425615) at 2021-10-09 11:34 AM PDT -cflemmonds,6830,SKILLS ISSUE -cflemmonds,2024-05-07T03:07:27Z,- cflemmonds opened issue: [6830](https://github.com/hackforla/website/issues/6830) at 2024-05-06 08:07 PM PDT -cflemmonds,2024-05-07T03:07:28Z,- cflemmonds assigned to issue: [6830](https://github.com/hackforla/website/issues/6830) at 2024-05-06 08:07 PM PDT -cflemmonds,2024-05-15T17:58:16Z,- cflemmonds assigned to issue: [6719](https://github.com/hackforla/website/issues/6719) at 2024-05-15 10:58 AM PDT -cflemmonds,2024-05-19T13:23:45Z,- cflemmonds commented on issue: [6719](https://github.com/hackforla/website/issues/6719#issuecomment-2119237804) at 2024-05-19 06:23 AM PDT -cflemmonds,2024-05-19T13:26:22Z,- cflemmonds commented on issue: [6830](https://github.com/hackforla/website/issues/6830#issuecomment-2119238502) at 2024-05-19 06:26 AM PDT -cflemmonds,2024-05-21T12:39:34Z,- cflemmonds closed issue as completed: [6830](https://github.com/hackforla/website/issues/6830#event-12879608143) at 2024-05-21 05:39 AM PDT -cflemmonds,2024-05-30T23:31:31Z,- cflemmonds opened pull request: [6916](https://github.com/hackforla/website/pull/6916) at 2024-05-30 04:31 PM PDT -cflemmonds,2024-06-06T22:28:03Z,- cflemmonds commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153502653) at 2024-06-06 03:28 PM PDT -cflemmonds,2024-06-10T22:26:32Z,- cflemmonds commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2159412986) at 2024-06-10 03:26 PM PDT -cflemmonds,2024-06-12T22:03:01Z,- cflemmonds commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2163976068) at 2024-06-12 03:03 PM PDT -cflemmonds,2024-06-13T19:14:10Z,- cflemmonds pull request merged: [6916](https://github.com/hackforla/website/pull/6916#event-13151722171) at 2024-06-13 12:14 PM PDT -CforED,2023-01-09T03:39:39Z,- CforED commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1375068737) at 2023-01-08 07:39 PM PST -chalimar,2020-03-18T02:31:56Z,- chalimar commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600393251) at 2020-03-17 07:31 PM PDT -charliepsheppard,5484,SKILLS ISSUE -charliepsheppard,2023-09-12T03:28:19Z,- charliepsheppard opened issue: [5484](https://github.com/hackforla/website/issues/5484) at 2023-09-11 08:28 PM PDT -charliepsheppard,2023-09-12T03:29:37Z,- charliepsheppard assigned to issue: [5484](https://github.com/hackforla/website/issues/5484#issuecomment-1714908313) at 2023-09-11 08:29 PM PDT -charlin99,2023-11-06T19:35:43Z,- charlin99 opened pull request: [5859](https://github.com/hackforla/website/pull/5859) at 2023-11-06 11:35 AM PST -charlin99,2023-11-06T19:49:58Z,- charlin99 pull request closed w/o merging: [5859](https://github.com/hackforla/website/pull/5859#event-10877836264) at 2023-11-06 11:49 AM PST -charlottesauce,2020-01-12T19:58:40Z,- charlottesauce assigned to issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573451086) at 2020-01-12 11:58 AM PST -charlottesauce,2020-01-13T08:26:11Z,- charlottesauce commented on issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573554594) at 2020-01-13 12:26 AM PST -charlottesauce,2020-01-13T08:34:16Z,- charlottesauce commented on issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573557238) at 2020-01-13 12:34 AM PST -charlottesauce,2020-01-19T18:30:18Z,- charlottesauce closed issue as completed: [260](https://github.com/hackforla/website/issues/260#event-2961065173) at 2020-01-19 10:30 AM PST -charlottesauce,2020-01-28T09:29:02Z,- charlottesauce assigned to issue: [272](https://github.com/hackforla/website/issues/272) at 2020-01-28 01:29 AM PST -charlottesauce,2020-01-29T04:04:40Z,- charlottesauce commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-579581805) at 2020-01-28 08:04 PM PST -charlottesauce,2020-01-31T01:18:21Z,- charlottesauce commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-580537610) at 2020-01-30 05:18 PM PST -charlottesauce,2020-02-07T01:24:16Z,- charlottesauce assigned to issue: [301](https://github.com/hackforla/website/issues/301) at 2020-02-06 05:24 PM PST -charlottesauce,2020-02-07T03:07:55Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583213269) at 2020-02-06 07:07 PM PST -charlottesauce,2020-02-08T06:58:29Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583710123) at 2020-02-07 10:58 PM PST -charlottesauce,2020-02-08T08:26:15Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583715637) at 2020-02-08 12:26 AM PST -charlottesauce,2020-02-09T18:31:47Z,- charlottesauce closed issue as completed: [272](https://github.com/hackforla/website/issues/272#event-3020782379) at 2020-02-09 10:31 AM PST -charlottesauce,2020-02-10T04:26:03Z,- charlottesauce closed issue by PR 300: [301](https://github.com/hackforla/website/issues/301#event-3021277469) at 2020-02-09 08:26 PM PST -charlottesauce,2020-03-04T06:55:08Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-594357599) at 2020-03-03 10:55 PM PST -charlottesauce,2020-03-04T06:55:08Z,- charlottesauce reopened issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-594357599) at 2020-03-03 10:55 PM PST -charlottesauce,2020-03-04T06:56:11Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-594357915) at 2020-03-03 10:56 PM PST -charlottesauce,2020-03-24T03:21:59Z,- charlottesauce opened pull request: [389](https://github.com/hackforla/website/pull/389) at 2020-03-23 08:21 PM PDT -charlottesauce,2020-03-26T06:02:30Z,- charlottesauce pull request merged: [389](https://github.com/hackforla/website/pull/389#event-3166815272) at 2020-03-25 11:02 PM PDT -charlottesauce,2020-04-09T22:26:17Z,- charlottesauce opened pull request: [420](https://github.com/hackforla/website/pull/420) at 2020-04-09 03:26 PM PDT -charlottesauce,2020-04-10T05:22:56Z,- charlottesauce pull request merged: [420](https://github.com/hackforla/website/pull/420#event-3220814227) at 2020-04-09 10:22 PM PDT -charlottesauce,2020-04-14T02:29:11Z,- charlottesauce commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-613191864) at 2020-04-13 07:29 PM PDT -charlottesauce,2020-04-14T03:13:15Z,- charlottesauce opened pull request: [437](https://github.com/hackforla/website/pull/437) at 2020-04-13 08:13 PM PDT -charlottesauce,2020-04-14T03:31:49Z,- charlottesauce opened pull request: [438](https://github.com/hackforla/website/pull/438) at 2020-04-13 08:31 PM PDT -charlottesauce,2020-04-14T03:41:52Z,- charlottesauce opened pull request: [439](https://github.com/hackforla/website/pull/439) at 2020-04-13 08:41 PM PDT -charlottesauce,2020-04-15T03:09:45Z,- charlottesauce pull request merged: [437](https://github.com/hackforla/website/pull/437#event-3233652606) at 2020-04-14 08:09 PM PDT -charlottesauce,2020-04-15T04:11:11Z,- charlottesauce pull request closed w/o merging: [439](https://github.com/hackforla/website/pull/439#event-3233759416) at 2020-04-14 09:11 PM PDT -charlottesauce,2020-04-15T04:11:29Z,- charlottesauce pull request closed w/o merging: [438](https://github.com/hackforla/website/pull/438#event-3233759864) at 2020-04-14 09:11 PM PDT -charlottesauce,2020-04-17T23:38:50Z,- charlottesauce opened pull request: [441](https://github.com/hackforla/website/pull/441) at 2020-04-17 04:38 PM PDT -charlottesauce,2020-04-19T16:29:32Z,- charlottesauce closed issue by PR 300: [301](https://github.com/hackforla/website/issues/301#event-3249231765) at 2020-04-19 09:29 AM PDT -charlottesauce,2020-04-19T16:52:21Z,- charlottesauce pull request merged: [441](https://github.com/hackforla/website/pull/441#event-3249253521) at 2020-04-19 09:52 AM PDT -charlottesauce,2020-04-19T20:56:39Z,- charlottesauce opened pull request: [447](https://github.com/hackforla/website/pull/447) at 2020-04-19 01:56 PM PDT -charlottesauce,2020-04-19T20:57:19Z,- charlottesauce commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616224025) at 2020-04-19 01:57 PM PDT -charlottesauce,2020-04-19T22:01:29Z,- charlottesauce commented on pull request: [447](https://github.com/hackforla/website/pull/447#issuecomment-616232103) at 2020-04-19 03:01 PM PDT -charlottesauce,2020-04-20T15:58:56Z,- charlottesauce pull request merged: [447](https://github.com/hackforla/website/pull/447#event-3252441884) at 2020-04-20 08:58 AM PDT -charmainemak09,2025-05-07T20:04:34Z,- charmainemak09 assigned to issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2715701442) at 2025-05-07 01:04 PM PDT -charmainemak09,2025-05-07T21:07:59Z,- charmainemak09 assigned to issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2715632987) at 2025-05-07 02:07 PM PDT -charmainemak09,2025-05-07T21:08:16Z,- charmainemak09 assigned to issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2749442492) at 2025-05-07 02:08 PM PDT -charmainemak09,2025-06-11T20:07:10Z,- charmainemak09 unassigned from issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2917519652) at 2025-06-11 01:07 PM PDT -charmainemak09,2025-06-11T20:32:17Z,- charmainemak09 unassigned from issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2964070445) at 2025-06-11 01:32 PM PDT -chelseybeck,2021-08-15T18:48:42Z,- chelseybeck assigned to issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-894839590) at 2021-08-15 11:48 AM PDT -chelseybeck,2024-01-25T16:11:09Z,- chelseybeck opened issue: [6159](https://github.com/hackforla/website/issues/6159) at 2024-01-25 08:11 AM PST -chelseybeck,2024-01-25T16:56:40Z,- chelseybeck opened issue: [6160](https://github.com/hackforla/website/issues/6160) at 2024-01-25 08:56 AM PST -chelseybeck,2024-01-26T03:16:09Z,- chelseybeck opened issue: [6183](https://github.com/hackforla/website/issues/6183) at 2024-01-25 07:16 PM PST -chelseybeck,2024-01-27T04:03:08Z,- chelseybeck assigned to issue: [6166](https://github.com/hackforla/website/issues/6166) at 2024-01-26 08:03 PM PST -chelseybeck,2024-01-27T04:29:03Z,- chelseybeck opened pull request: [6186](https://github.com/hackforla/website/pull/6186) at 2024-01-26 08:29 PM PST -chelseybeck,2024-01-27T04:38:12Z,- chelseybeck commented on issue: [6166](https://github.com/hackforla/website/issues/6166#issuecomment-1912983972) at 2024-01-26 08:38 PM PST -chelseybeck,2024-01-27T05:57:28Z,- chelseybeck commented on pull request: [6151](https://github.com/hackforla/website/pull/6151#issuecomment-1913019633) at 2024-01-26 09:57 PM PST -chelseybeck,2024-01-27T06:05:47Z,- chelseybeck submitted pull request review: [6151](https://github.com/hackforla/website/pull/6151#pullrequestreview-1846890247) at 2024-01-26 10:05 PM PST -chelseybeck,2024-01-28T16:58:15Z,- chelseybeck pull request merged: [6186](https://github.com/hackforla/website/pull/6186#event-11620442446) at 2024-01-28 08:58 AM PST -chelseybeck,2024-01-29T17:07:13Z,- chelseybeck commented on issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1915186209) at 2024-01-29 09:07 AM PST -chelseybeck,2024-02-19T00:35:08Z,- chelseybeck commented on issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1951510486) at 2024-02-18 04:35 PM PST -chelseybeck,2024-02-19T00:35:22Z,- chelseybeck commented on issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1951510583) at 2024-02-18 04:35 PM PST -chelseybeck,2024-02-22T03:16:04Z,- chelseybeck opened issue: [6354](https://github.com/hackforla/website/issues/6354) at 2024-02-21 07:16 PM PST -chelseybeck,2025-02-13T03:18:38Z,- chelseybeck opened issue: [7905](https://github.com/hackforla/website/issues/7905) at 2025-02-12 07:18 PM PST -cherrijeong,2021-05-18T02:56:05Z,- cherrijeong assigned to issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-17 07:56 PM PDT -cherrijeong,2021-05-21T06:04:00Z,- cherrijeong assigned to issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-845517626) at 2021-05-20 11:04 PM PDT -cherrijeong,2021-05-23T10:09:27Z,- cherrijeong unassigned from issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-23 03:09 AM PDT -cherrijeong,2021-05-23T16:55:17Z,- cherrijeong commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-846593215) at 2021-05-23 09:55 AM PDT -cherrijeong,2021-05-30T08:46:36Z,- cherrijeong commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-850964576) at 2021-05-30 01:46 AM PDT -cherrijeong,2021-06-02T03:25:27Z,- cherrijeong assigned to issue: [1672](https://github.com/hackforla/website/issues/1672) at 2021-06-01 08:25 PM PDT -cherrijeong,2021-06-04T17:19:10Z,- cherrijeong commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-854886354) at 2021-06-04 10:19 AM PDT -Chetana16032002,2021-10-08T05:06:49Z,- Chetana16032002 commented on issue: [2345](https://github.com/hackforla/website/issues/2345#issuecomment-938347230) at 2021-10-07 10:06 PM PDT -Chetana16032002,2021-10-08T05:09:19Z,- Chetana16032002 opened pull request: [2350](https://github.com/hackforla/website/pull/2350) at 2021-10-07 10:09 PM PDT -Chetana16032002,2021-10-20T03:39:32Z,- Chetana16032002 commented on pull request: [2350](https://github.com/hackforla/website/pull/2350#issuecomment-947297612) at 2021-10-19 08:39 PM PDT -Chetana16032002,2021-10-20T04:52:11Z,- Chetana16032002 opened pull request: [2378](https://github.com/hackforla/website/pull/2378) at 2021-10-19 09:52 PM PDT -Chetana16032002,2021-10-20T04:54:43Z,- Chetana16032002 commented on pull request: [2378](https://github.com/hackforla/website/pull/2378#issuecomment-947327758) at 2021-10-19 09:54 PM PDT -Chetana16032002,2021-10-20T04:58:06Z,- Chetana16032002 commented on pull request: [2350](https://github.com/hackforla/website/pull/2350#issuecomment-947328857) at 2021-10-19 09:58 PM PDT -Chetana16032002,2021-10-20T04:58:16Z,- Chetana16032002 pull request closed w/o merging: [2350](https://github.com/hackforla/website/pull/2350#event-5489276006) at 2021-10-19 09:58 PM PDT -Chetana16032002,2021-10-20T15:24:44Z,- Chetana16032002 assigned to issue: [2345](https://github.com/hackforla/website/issues/2345#issuecomment-939337477) at 2021-10-20 08:24 AM PDT -Chetana16032002,2021-10-20T15:34:55Z,- Chetana16032002 pull request merged: [2378](https://github.com/hackforla/website/pull/2378#event-5492833200) at 2021-10-20 08:34 AM PDT -chrisfoose,2021-10-20T02:53:46Z,- chrisfoose assigned to issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-10-19 07:53 PM PDT -chrisfoose,2021-10-21T03:49:27Z,- chrisfoose opened pull request: [2387](https://github.com/hackforla/website/pull/2387) at 2021-10-20 08:49 PM PDT -chrisfoose,2021-10-22T21:48:14Z,- chrisfoose commented on pull request: [2387](https://github.com/hackforla/website/pull/2387#issuecomment-949977983) at 2021-10-22 02:48 PM PDT -chrisfoose,2021-10-22T23:08:27Z,- chrisfoose pull request merged: [2387](https://github.com/hackforla/website/pull/2387#event-5507466899) at 2021-10-22 04:08 PM PDT -chrisfoose,2021-10-27T21:31:07Z,- chrisfoose assigned to issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-950400542) at 2021-10-27 02:31 PM PDT -chrisfoose,2021-10-27T21:36:47Z,- chrisfoose opened pull request: [2404](https://github.com/hackforla/website/pull/2404) at 2021-10-27 02:36 PM PDT -chrisfoose,2021-10-27T22:27:46Z,- chrisfoose pull request closed w/o merging: [2404](https://github.com/hackforla/website/pull/2404#event-5530470470) at 2021-10-27 03:27 PM PDT -chrisfoose,2021-11-10T00:01:16Z,- chrisfoose opened pull request: [2467](https://github.com/hackforla/website/pull/2467) at 2021-11-09 04:01 PM PST -chrisfoose,2021-11-10T19:08:31Z,- chrisfoose opened pull request: [2470](https://github.com/hackforla/website/pull/2470) at 2021-11-10 11:08 AM PST -chrisfoose,2021-11-10T19:10:24Z,- chrisfoose pull request closed w/o merging: [2467](https://github.com/hackforla/website/pull/2467#event-5599358769) at 2021-11-10 11:10 AM PST -chrisfoose,2021-11-17T16:37:19Z,- chrisfoose pull request merged: [2470](https://github.com/hackforla/website/pull/2470#event-5633178147) at 2021-11-17 08:37 AM PST -chrisfoose,2021-11-17T22:38:02Z,- chrisfoose commented on issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-972175551) at 2021-11-17 02:38 PM PST -ChrisKildunne,5864,SKILLS ISSUE -ChrisKildunne,2023-11-07T03:59:03Z,- ChrisKildunne opened issue: [5864](https://github.com/hackforla/website/issues/5864) at 2023-11-06 07:59 PM PST -ChrisKildunne,2023-11-07T04:04:13Z,- ChrisKildunne assigned to issue: [5864](https://github.com/hackforla/website/issues/5864#issuecomment-1797710751) at 2023-11-06 08:04 PM PST -ChrisKildunne,2023-11-08T02:35:52Z,- ChrisKildunne assigned to issue: [5752](https://github.com/hackforla/website/issues/5752) at 2023-11-07 06:35 PM PST -ChrisKildunne,2023-11-08T03:02:09Z,- ChrisKildunne opened pull request: [5884](https://github.com/hackforla/website/pull/5884) at 2023-11-07 07:02 PM PST -ChrisKildunne,2023-11-08T03:06:02Z,- ChrisKildunne commented on issue: [5752](https://github.com/hackforla/website/issues/5752#issuecomment-1800937843) at 2023-11-07 07:06 PM PST -ChrisKildunne,2023-11-08T16:40:19Z,- ChrisKildunne commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1802263409) at 2023-11-08 08:40 AM PST -ChrisKildunne,2023-11-10T03:08:29Z,- ChrisKildunne assigned to issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480406046) at 2023-11-09 07:08 PM PST -ChrisKildunne,2023-11-10T16:25:47Z,- ChrisKildunne commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1806039728) at 2023-11-10 08:25 AM PST -ChrisKildunne,2023-11-10T18:51:13Z,- ChrisKildunne commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1806268820) at 2023-11-10 10:51 AM PST -ChrisKildunne,2023-11-13T03:08:42Z,- ChrisKildunne unassigned from issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1805006007) at 2023-11-12 07:08 PM PST -ChrisKildunne,2023-11-13T05:59:33Z,- ChrisKildunne pull request closed w/o merging: [5884](https://github.com/hackforla/website/pull/5884#event-10937361941) at 2023-11-12 09:59 PM PST -ChrisKildunne,2023-11-13T06:16:14Z,- ChrisKildunne opened pull request: [5894](https://github.com/hackforla/website/pull/5894) at 2023-11-12 10:16 PM PST -ChrisKildunne,2023-11-15T01:36:39Z,- ChrisKildunne pull request merged: [5894](https://github.com/hackforla/website/pull/5894#event-10961867447) at 2023-11-14 05:36 PM PST -ChrisKildunne,2023-11-16T18:59:43Z,- ChrisKildunne closed issue as completed: [5895](https://github.com/hackforla/website/issues/5895#event-10984924341) at 2023-11-16 10:59 AM PST -ChrisKildunne,2023-11-16T19:00:42Z,- ChrisKildunne assigned to issue: [5693](https://github.com/hackforla/website/issues/5693) at 2023-11-16 11:00 AM PST -ChrisKildunne,2023-11-16T19:18:55Z,- ChrisKildunne opened pull request: [5913](https://github.com/hackforla/website/pull/5913) at 2023-11-16 11:18 AM PST -ChrisKildunne,2023-11-16T19:20:18Z,- ChrisKildunne commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1815167035) at 2023-11-16 11:20 AM PST -ChrisKildunne,2023-11-20T00:06:11Z,- ChrisKildunne commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1818025173) at 2023-11-19 04:06 PM PST -ChrisKildunne,2023-11-20T17:55:14Z,- ChrisKildunne commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1819547334) at 2023-11-20 09:55 AM PST -ChrisKildunne,2023-11-20T17:57:01Z,- ChrisKildunne commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1819549841) at 2023-11-20 09:57 AM PST -ChrisKildunne,2023-11-28T21:56:08Z,- ChrisKildunne pull request closed w/o merging: [5913](https://github.com/hackforla/website/pull/5913#event-11089206093) at 2023-11-28 01:56 PM PST -ChrisKildunne,2023-11-28T22:31:47Z,- ChrisKildunne opened pull request: [5941](https://github.com/hackforla/website/pull/5941) at 2023-11-28 02:31 PM PST -ChrisKildunne,2023-11-28T22:34:23Z,- ChrisKildunne commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1830866179) at 2023-11-28 02:34 PM PST -ChrisKildunne,2023-11-28T22:49:26Z,- ChrisKildunne commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1830881750) at 2023-11-28 02:49 PM PST -ChrisKildunne,2023-11-30T00:05:49Z,- ChrisKildunne pull request merged: [5941](https://github.com/hackforla/website/pull/5941#event-11102718285) at 2023-11-29 04:05 PM PST -ChrisKildunne,2023-11-30T23:27:31Z,- ChrisKildunne assigned to issue: [5716](https://github.com/hackforla/website/issues/5716#issuecomment-1764348660) at 2023-11-30 03:27 PM PST -ChrisKildunne,2023-11-30T23:49:33Z,- ChrisKildunne commented on issue: [5716](https://github.com/hackforla/website/issues/5716#issuecomment-1834874449) at 2023-11-30 03:49 PM PST -ChrisKildunne,2023-12-01T00:26:44Z,- ChrisKildunne opened pull request: [5952](https://github.com/hackforla/website/pull/5952) at 2023-11-30 04:26 PM PST -ChrisKildunne,2023-12-01T20:27:20Z,- ChrisKildunne assigned to issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1752028829) at 2023-12-01 12:27 PM PST -ChrisKildunne,2023-12-01T20:31:34Z,- ChrisKildunne commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1836738298) at 2023-12-01 12:31 PM PST -ChrisKildunne,2023-12-01T20:33:53Z,- ChrisKildunne opened pull request: [5954](https://github.com/hackforla/website/pull/5954) at 2023-12-01 12:33 PM PST -ChrisKildunne,2023-12-02T15:10:16Z,- ChrisKildunne unassigned from issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837177555) at 2023-12-02 07:10 AM PST -ChrisKildunne,2023-12-02T15:10:38Z,- ChrisKildunne pull request closed w/o merging: [5954](https://github.com/hackforla/website/pull/5954#event-11129178717) at 2023-12-02 07:10 AM PST -ChrisKildunne,2023-12-02T16:54:52Z,- ChrisKildunne commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837201711) at 2023-12-02 08:54 AM PST -ChrisKildunne,2023-12-02T18:38:11Z,- ChrisKildunne pull request merged: [5952](https://github.com/hackforla/website/pull/5952#event-11129555330) at 2023-12-02 10:38 AM PST -ChrisKildunne,2023-12-12T17:39:40Z,- ChrisKildunne closed issue as completed: [5864](https://github.com/hackforla/website/issues/5864#event-11226843851) at 2023-12-12 09:39 AM PST -Chrisklangley,5729,SKILLS ISSUE -Chrisklangley,2023-10-17T03:38:02Z,- Chrisklangley opened issue: [5729](https://github.com/hackforla/website/issues/5729) at 2023-10-16 08:38 PM PDT -Chrisklangley,2023-10-17T03:38:02Z,- Chrisklangley assigned to issue: [5729](https://github.com/hackforla/website/issues/5729) at 2023-10-16 08:38 PM PDT -Chrisklangley,2023-10-17T03:54:10Z,- Chrisklangley commented on issue: [5729](https://github.com/hackforla/website/issues/5729#issuecomment-1765621863) at 2023-10-16 08:54 PM PDT -Chrisklangley,2023-10-17T03:55:32Z,- Chrisklangley commented on issue: [5729](https://github.com/hackforla/website/issues/5729#issuecomment-1765622641) at 2023-10-16 08:55 PM PDT -Chrisklangley,2023-10-20T02:47:34Z,- Chrisklangley assigned to issue: [5620](https://github.com/hackforla/website/issues/5620) at 2023-10-19 07:47 PM PDT -Chrisklangley,2023-10-20T03:18:02Z,- Chrisklangley closed issue as completed: [5729](https://github.com/hackforla/website/issues/5729#event-10719236743) at 2023-10-19 08:18 PM PDT -Chrisklangley,2023-10-20T21:48:27Z,- Chrisklangley commented on issue: [5620](https://github.com/hackforla/website/issues/5620#issuecomment-1773435053) at 2023-10-20 02:48 PM PDT -Chrisklangley,2023-10-20T21:50:00Z,- Chrisklangley opened pull request: [5745](https://github.com/hackforla/website/pull/5745) at 2023-10-20 02:50 PM PDT -Chrisklangley,2023-10-22T19:12:48Z,- Chrisklangley pull request closed w/o merging: [5745](https://github.com/hackforla/website/pull/5745#event-10733849601) at 2023-10-22 12:12 PM PDT -Chrisklangley,2023-10-22T19:39:03Z,- Chrisklangley opened pull request: [5765](https://github.com/hackforla/website/pull/5765) at 2023-10-22 12:39 PM PDT -Chrisklangley,2023-10-23T01:53:48Z,- Chrisklangley closed issue by PR 5765: [5620](https://github.com/hackforla/website/issues/5620#event-10734836262) at 2023-10-22 06:53 PM PDT -Chrisklangley,2023-10-23T03:27:08Z,- Chrisklangley pull request merged: [5765](https://github.com/hackforla/website/pull/5765#event-10735298724) at 2023-10-22 08:27 PM PDT -Chrisklangley,2023-10-26T01:04:27Z,- Chrisklangley commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1780259691) at 2023-10-25 06:04 PM PDT -Chrisklangley,2023-10-26T01:18:43Z,- Chrisklangley submitted pull request review: [5771](https://github.com/hackforla/website/pull/5771#pullrequestreview-1698576622) at 2023-10-25 06:18 PM PDT -Chrisklangley,2023-10-26T01:29:26Z,- Chrisklangley assigned to issue: [5759](https://github.com/hackforla/website/issues/5759) at 2023-10-25 06:29 PM PDT -Chrisklangley,2023-10-26T01:31:29Z,- Chrisklangley commented on issue: [5759](https://github.com/hackforla/website/issues/5759#issuecomment-1780277687) at 2023-10-25 06:31 PM PDT -Chrisklangley,2023-10-27T21:37:08Z,- Chrisklangley opened pull request: [5789](https://github.com/hackforla/website/pull/5789) at 2023-10-27 02:37 PM PDT -Chrisklangley,2023-10-27T21:51:22Z,- Chrisklangley commented on pull request: [5785](https://github.com/hackforla/website/pull/5785#issuecomment-1783549638) at 2023-10-27 02:51 PM PDT -Chrisklangley,2023-10-27T22:34:55Z,- Chrisklangley submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1702617345) at 2023-10-27 03:34 PM PDT -Chrisklangley,2023-10-29T17:50:02Z,- Chrisklangley pull request merged: [5789](https://github.com/hackforla/website/pull/5789#event-10800309855) at 2023-10-29 10:50 AM PDT -Chrisklangley,2023-11-09T01:34:26Z,- Chrisklangley assigned to issue: [5854](https://github.com/hackforla/website/issues/5854) at 2023-11-08 05:34 PM PST -Chrisklangley,2023-11-09T18:48:34Z,- Chrisklangley commented on issue: [5854](https://github.com/hackforla/website/issues/5854#issuecomment-1804387064) at 2023-11-09 10:48 AM PST -Chrisklangley,2023-11-09T20:07:55Z,- Chrisklangley opened pull request: [5889](https://github.com/hackforla/website/pull/5889) at 2023-11-09 12:07 PM PST -Chrisklangley,2023-11-15T19:29:59Z,- Chrisklangley commented on pull request: [5907](https://github.com/hackforla/website/pull/5907#issuecomment-1813133984) at 2023-11-15 11:29 AM PST -Chrisklangley,2023-11-15T19:57:22Z,- Chrisklangley submitted pull request review: [5907](https://github.com/hackforla/website/pull/5907#pullrequestreview-1732844552) at 2023-11-15 11:57 AM PST -Chrisklangley,2023-11-16T04:11:41Z,- Chrisklangley commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1813761434) at 2023-11-15 08:11 PM PST -Chrisklangley,2023-11-18T01:41:51Z,- Chrisklangley commented on pull request: [5917](https://github.com/hackforla/website/pull/5917#issuecomment-1817314757) at 2023-11-17 05:41 PM PST -Chrisklangley,2023-11-18T02:17:37Z,- Chrisklangley submitted pull request review: [5917](https://github.com/hackforla/website/pull/5917#pullrequestreview-1738164083) at 2023-11-17 06:17 PM PST -Chrisklangley,2023-11-19T00:59:52Z,- Chrisklangley submitted pull request review: [5908](https://github.com/hackforla/website/pull/5908#pullrequestreview-1738518882) at 2023-11-18 04:59 PM PST -Chrisklangley,2023-11-19T19:11:25Z,- Chrisklangley commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1817949328) at 2023-11-19 11:11 AM PST -Chrisklangley,2023-11-19T22:05:19Z,- Chrisklangley pull request merged: [5889](https://github.com/hackforla/website/pull/5889#event-11004706677) at 2023-11-19 02:05 PM PST -Chrisklangley,2023-11-22T02:49:24Z,- Chrisklangley commented on pull request: [5918](https://github.com/hackforla/website/pull/5918#issuecomment-1822005763) at 2023-11-21 06:49 PM PST -Chrisklangley,2023-11-22T02:49:48Z,- Chrisklangley commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1822006054) at 2023-11-21 06:49 PM PST -Chrisklangley,2023-11-22T03:34:21Z,- Chrisklangley submitted pull request review: [5914](https://github.com/hackforla/website/pull/5914#pullrequestreview-1743492115) at 2023-11-21 07:34 PM PST -Chrisklangley,2023-11-22T03:51:43Z,- Chrisklangley submitted pull request review: [5918](https://github.com/hackforla/website/pull/5918#pullrequestreview-1743518178) at 2023-11-21 07:51 PM PST -Chrisklangley,2023-11-24T19:56:25Z,- Chrisklangley submitted pull request review: [5928](https://github.com/hackforla/website/pull/5928#pullrequestreview-1748388895) at 2023-11-24 11:56 AM PST -Chrisklangley,2023-11-26T23:46:49Z,- Chrisklangley submitted pull request review: [5914](https://github.com/hackforla/website/pull/5914#pullrequestreview-1749451953) at 2023-11-26 03:46 PM PST -Chrisklangley,2023-11-27T00:18:02Z,- Chrisklangley assigned to issue: [5831](https://github.com/hackforla/website/issues/5831#issuecomment-1791990110) at 2023-11-26 04:18 PM PST -Chrisklangley,2023-11-27T00:26:02Z,- Chrisklangley commented on issue: [5831](https://github.com/hackforla/website/issues/5831#issuecomment-1826958780) at 2023-11-26 04:26 PM PST -Chrisklangley,2023-12-14T22:37:04Z,- Chrisklangley opened pull request: [6007](https://github.com/hackforla/website/pull/6007) at 2023-12-14 02:37 PM PST -Chrisklangley,2023-12-18T08:53:42Z,- Chrisklangley pull request closed w/o merging: [6007](https://github.com/hackforla/website/pull/6007#event-11273492093) at 2023-12-18 12:53 AM PST -Chrisklangley,2023-12-21T01:27:43Z,- Chrisklangley assigned to issue: [5984](https://github.com/hackforla/website/issues/5984) at 2023-12-20 05:27 PM PST -Chrisklangley,2024-01-04T00:46:04Z,- Chrisklangley unassigned from issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-1865349657) at 2024-01-03 04:46 PM PST -Chrisklangley,2024-01-04T01:59:58Z,- Chrisklangley submitted pull request review: [6056](https://github.com/hackforla/website/pull/6056#pullrequestreview-1803328366) at 2024-01-03 05:59 PM PST -Chrisklangley,2024-01-12T21:47:37Z,- Chrisklangley commented on pull request: [6100](https://github.com/hackforla/website/pull/6100#issuecomment-1889991685) at 2024-01-12 01:47 PM PST -Chrisklangley,2024-01-16T16:15:30Z,- Chrisklangley submitted pull request review: [6100](https://github.com/hackforla/website/pull/6100#pullrequestreview-1823989495) at 2024-01-16 08:15 AM PST -Chrisklangley,2024-01-27T01:49:49Z,- Chrisklangley assigned to issue: [6137](https://github.com/hackforla/website/issues/6137#issuecomment-1902655220) at 2024-01-26 05:49 PM PST -Chrisklangley,2024-01-27T01:53:44Z,- Chrisklangley commented on issue: [6137](https://github.com/hackforla/website/issues/6137#issuecomment-1912909870) at 2024-01-26 05:53 PM PST -Chrisklangley,2024-01-29T21:21:41Z,- Chrisklangley opened pull request: [6194](https://github.com/hackforla/website/pull/6194) at 2024-01-29 01:21 PM PST -Chrisklangley,2024-01-29T22:35:46Z,- Chrisklangley commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1915695045) at 2024-01-29 02:35 PM PST -Chrisklangley,2024-01-29T22:48:54Z,- Chrisklangley submitted pull request review: [6190](https://github.com/hackforla/website/pull/6190#pullrequestreview-1849918089) at 2024-01-29 02:48 PM PST -Chrisklangley,2024-01-30T21:03:43Z,- Chrisklangley assigned to issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1848917244) at 2024-01-30 01:03 PM PST -Chrisklangley,2024-01-31T03:04:34Z,- Chrisklangley commented on pull request: [6198](https://github.com/hackforla/website/pull/6198#issuecomment-1918299040) at 2024-01-30 07:04 PM PST -Chrisklangley,2024-01-31T03:06:44Z,- Chrisklangley commented on pull request: [6197](https://github.com/hackforla/website/pull/6197#issuecomment-1918300729) at 2024-01-30 07:06 PM PST -Chrisklangley,2024-01-31T03:18:25Z,- Chrisklangley pull request merged: [6194](https://github.com/hackforla/website/pull/6194#event-11650255302) at 2024-01-30 07:18 PM PST -Chrisklangley,2024-02-02T17:05:59Z,- Chrisklangley submitted pull request review: [6197](https://github.com/hackforla/website/pull/6197#pullrequestreview-1859789849) at 2024-02-02 09:05 AM PST -Chrisklangley,2024-02-08T03:06:13Z,- Chrisklangley commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1933292567) at 2024-02-07 07:06 PM PST -Chrisklangley,2024-02-08T03:56:09Z,- Chrisklangley submitted pull request review: [6262](https://github.com/hackforla/website/pull/6262#pullrequestreview-1869228154) at 2024-02-07 07:56 PM PST -Chrisklangley,2024-02-08T04:15:32Z,- Chrisklangley commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1933337383) at 2024-02-07 08:15 PM PST -Chrisklangley,2024-02-08T04:18:03Z,- Chrisklangley submitted pull request review: [6260](https://github.com/hackforla/website/pull/6260#pullrequestreview-1869244172) at 2024-02-07 08:18 PM PST -Chrisklangley,2024-02-08T23:53:49Z,- Chrisklangley unassigned from issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1917889892) at 2024-02-08 03:53 PM PST -Chrisklangley,2024-02-09T00:25:11Z,- Chrisklangley assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-02-08 04:25 PM PST -Chrisklangley,2024-02-09T00:25:41Z,- Chrisklangley unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-02-08 04:25 PM PST -Chrisklangley,2024-02-09T00:33:24Z,- Chrisklangley commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1935146008) at 2024-02-08 04:33 PM PST -Chrisklangley,2024-02-14T01:46:13Z,- Chrisklangley submitted pull request review: [6283](https://github.com/hackforla/website/pull/6283#pullrequestreview-1879235817) at 2024-02-13 05:46 PM PST -Chrisklangley,2024-04-18T01:00:48Z,- Chrisklangley commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2062801232) at 2024-04-17 06:00 PM PDT -Chrisklangley,2024-05-06T03:37:51Z,- Chrisklangley commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2095136514) at 2024-05-05 08:37 PM PDT -Chrisklangley,2024-05-06T03:39:52Z,- Chrisklangley submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2039916247) at 2024-05-05 08:39 PM PDT -chriskong217,2023-02-25T22:31:15Z,- chriskong217 commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1445218953) at 2023-02-25 02:31 PM PST -chriskong217,2023-02-25T22:38:00Z,- chriskong217 commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1445219861) at 2023-02-25 02:38 PM PST -chriskong217,2023-02-25T22:42:12Z,- chriskong217 commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1445220468) at 2023-02-25 02:42 PM PST -chriskong217,2023-02-25T22:43:13Z,- chriskong217 commented on issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1445220593) at 2023-02-25 02:43 PM PST -chriskong217,2023-02-26T19:15:20Z,- chriskong217 opened issue: [4051](https://github.com/hackforla/website/issues/4051) at 2023-02-26 11:15 AM PST -chriskong217,2023-03-03T20:06:24Z,- chriskong217 opened issue: [4104](https://github.com/hackforla/website/issues/4104) at 2023-03-03 12:06 PM PST -chriskong217,2023-03-07T02:49:25Z,- chriskong217 commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1457422867) at 2023-03-06 06:49 PM PST -chriskong217,2023-03-12T15:53:18Z,- chriskong217 opened issue: [4151](https://github.com/hackforla/website/issues/4151) at 2023-03-12 08:53 AM PDT -chriskong217,2023-03-12T15:53:19Z,- chriskong217 assigned to issue: [4151](https://github.com/hackforla/website/issues/4151) at 2023-03-12 08:53 AM PDT -chriskong217,2023-03-13T01:09:56Z,- chriskong217 opened issue: [4155](https://github.com/hackforla/website/issues/4155) at 2023-03-12 06:09 PM PDT -chriskong217,2023-03-26T15:36:46Z,- chriskong217 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1484133830) at 2023-03-26 08:36 AM PDT -chriskong217,2023-05-15T02:49:09Z,- chriskong217 unassigned from issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1545289347) at 2023-05-14 07:49 PM PDT -chrismenke45,3828,SKILLS ISSUE -chrismenke45,2023-01-17T03:47:50Z,- chrismenke45 opened issue: [3828](https://github.com/hackforla/website/issues/3828) at 2023-01-16 07:47 PM PST -chrismenke45,2023-01-17T04:05:47Z,- chrismenke45 assigned to issue: [3828](https://github.com/hackforla/website/issues/3828) at 2023-01-16 08:05 PM PST -chrismenke45,2023-01-18T04:18:34Z,- chrismenke45 commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1386464635) at 2023-01-17 08:18 PM PST -chrismenke45,2023-01-18T16:49:09Z,- chrismenke45 submitted pull request review: [3835](https://github.com/hackforla/website/pull/3835#pullrequestreview-1253896785) at 2023-01-18 08:49 AM PST -chrismenke45,2023-01-18T17:10:45Z,- chrismenke45 assigned to issue: [2868](https://github.com/hackforla/website/issues/2868#issuecomment-1048471373) at 2023-01-18 09:10 AM PST -chrismenke45,2023-01-18T17:12:52Z,- chrismenke45 commented on issue: [2868](https://github.com/hackforla/website/issues/2868#issuecomment-1387432271) at 2023-01-18 09:12 AM PST -chrismenke45,2023-01-18T23:03:13Z,- chrismenke45 opened pull request: [3841](https://github.com/hackforla/website/pull/3841) at 2023-01-18 03:03 PM PST -chrismenke45,2023-01-18T23:59:02Z,- chrismenke45 commented on issue: [3828](https://github.com/hackforla/website/issues/3828#issuecomment-1396249209) at 2023-01-18 03:59 PM PST -chrismenke45,2023-01-21T08:43:14Z,- chrismenke45 pull request merged: [3841](https://github.com/hackforla/website/pull/3841#event-8327008568) at 2023-01-21 12:43 AM PST -chrismenke45,2023-01-21T16:18:34Z,- chrismenke45 assigned to issue: [3399](https://github.com/hackforla/website/issues/3399) at 2023-01-21 08:18 AM PST -chrismenke45,2023-01-21T16:42:17Z,- chrismenke45 opened pull request: [3847](https://github.com/hackforla/website/pull/3847) at 2023-01-21 08:42 AM PST -chrismenke45,2023-01-24T00:55:00Z,- chrismenke45 pull request merged: [3847](https://github.com/hackforla/website/pull/3847#event-8339587200) at 2023-01-23 04:55 PM PST -chrismenke45,2023-01-27T03:27:23Z,- chrismenke45 assigned to issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1306296320) at 2023-01-26 07:27 PM PST -chrismenke45,2023-01-27T18:47:12Z,- chrismenke45 commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1406938188) at 2023-01-27 10:47 AM PST -chrismenke45,2023-01-31T22:24:05Z,- chrismenke45 commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1411150837) at 2023-01-31 02:24 PM PST -chrismenke45,2023-02-08T04:39:50Z,- chrismenke45 commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1421991109) at 2023-02-07 08:39 PM PST -chrismenke45,2023-02-14T20:38:00Z,- chrismenke45 commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1430343772) at 2023-02-14 12:38 PM PST -chrismenke45,2023-02-14T20:50:12Z,- chrismenke45 submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1298399441) at 2023-02-14 12:50 PM PST -chrismenke45,2023-02-14T20:56:35Z,- chrismenke45 assigned to issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1407299488) at 2023-02-14 12:56 PM PST -chrismenke45,2023-02-14T20:58:39Z,- chrismenke45 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1430369172) at 2023-02-14 12:58 PM PST -chrismenke45,2023-02-14T22:48:09Z,- chrismenke45 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1430493696) at 2023-02-14 02:48 PM PST -chrismenke45,2023-02-15T03:40:35Z,- chrismenke45 commented on pull request: [3977](https://github.com/hackforla/website/pull/3977#issuecomment-1430705721) at 2023-02-14 07:40 PM PST -chrismenke45,2023-02-15T16:39:31Z,- chrismenke45 submitted pull request review: [3977](https://github.com/hackforla/website/pull/3977#pullrequestreview-1299875043) at 2023-02-15 08:39 AM PST -chrismenke45,2023-02-15T17:28:57Z,- chrismenke45 opened pull request: [3984](https://github.com/hackforla/website/pull/3984) at 2023-02-15 09:28 AM PST -chrismenke45,2023-02-15T17:43:54Z,- chrismenke45 submitted pull request review: [3982](https://github.com/hackforla/website/pull/3982#pullrequestreview-1300051309) at 2023-02-15 09:43 AM PST -chrismenke45,2023-02-19T17:50:00Z,- chrismenke45 pull request merged: [3984](https://github.com/hackforla/website/pull/3984#event-8555686624) at 2023-02-19 09:50 AM PST -chrismenke45,2023-02-21T00:31:17Z,- chrismenke45 commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1437700370) at 2023-02-20 04:31 PM PST -chrismenke45,2023-02-21T00:36:05Z,- chrismenke45 submitted pull request review: [4011](https://github.com/hackforla/website/pull/4011#pullrequestreview-1306457182) at 2023-02-20 04:36 PM PST -chrismenke45,2023-02-21T00:38:24Z,- chrismenke45 assigned to issue: [3985](https://github.com/hackforla/website/issues/3985) at 2023-02-20 04:38 PM PST -chrismenke45,2023-02-21T00:40:55Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1437704544) at 2023-02-20 04:40 PM PST -chrismenke45,2023-02-22T03:39:24Z,- chrismenke45 commented on pull request: [4022](https://github.com/hackforla/website/pull/4022#issuecomment-1439394627) at 2023-02-21 07:39 PM PST -chrismenke45,2023-02-22T16:58:06Z,- chrismenke45 submitted pull request review: [4022](https://github.com/hackforla/website/pull/4022#pullrequestreview-1309726781) at 2023-02-22 08:58 AM PST -chrismenke45,2023-02-27T23:44:12Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1447291552) at 2023-02-27 03:44 PM PST -chrismenke45,2023-03-01T03:50:53Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1449290406) at 2023-02-28 07:50 PM PST -chrismenke45,2023-03-10T22:27:10Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1464558902) at 2023-03-10 02:27 PM PST -chrismenke45,2023-03-12T17:27:52Z,- chrismenke45 commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1465254039) at 2023-03-12 10:27 AM PDT -chrismenke45,2023-03-12T18:19:44Z,- chrismenke45 assigned to issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1463381616) at 2023-03-12 11:19 AM PDT -chrismenke45,2023-03-12T18:19:51Z,- chrismenke45 unassigned from issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1464558902) at 2023-03-12 11:19 AM PDT -chrismenke45,2023-03-13T19:12:23Z,- chrismenke45 submitted pull request review: [4135](https://github.com/hackforla/website/pull/4135#pullrequestreview-1337776826) at 2023-03-13 12:12 PM PDT -chrismenke45,2023-03-13T21:01:07Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1466950654) at 2023-03-13 02:01 PM PDT -chrismenke45,2023-03-17T23:20:57Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1474506290) at 2023-03-17 04:20 PM PDT -chrismenke45,2023-03-24T19:56:21Z,- chrismenke45 opened pull request: [4280](https://github.com/hackforla/website/pull/4280) at 2023-03-24 12:56 PM PDT -chrismenke45,2023-03-24T19:58:04Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1483340620) at 2023-03-24 12:58 PM PDT -chrismenke45,2023-03-24T23:19:13Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1483568945) at 2023-03-24 04:19 PM PDT -chrismenke45,2023-03-24T23:39:25Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1483593225) at 2023-03-24 04:39 PM PDT -chrismenke45,2023-03-29T02:56:19Z,- chrismenke45 commented on pull request: [4308](https://github.com/hackforla/website/pull/4308#issuecomment-1487875894) at 2023-03-28 07:56 PM PDT -chrismenke45,2023-03-29T14:43:07Z,- chrismenke45 submitted pull request review: [4308](https://github.com/hackforla/website/pull/4308#pullrequestreview-1363297032) at 2023-03-29 07:43 AM PDT -chrismenke45,2023-03-30T17:12:18Z,- chrismenke45 commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490650224) at 2023-03-30 10:12 AM PDT -chrismenke45,2023-03-30T17:30:01Z,- chrismenke45 submitted pull request review: [4347](https://github.com/hackforla/website/pull/4347#pullrequestreview-1365598918) at 2023-03-30 10:30 AM PDT -chrismenke45,2023-03-30T18:07:39Z,- chrismenke45 commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490716370) at 2023-03-30 11:07 AM PDT -chrismenke45,2023-04-04T16:46:35Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1496291746) at 2023-04-04 09:46 AM PDT -chrismenke45,2023-04-06T03:17:16Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498435851) at 2023-04-05 08:17 PM PDT -chrismenke45,2023-04-06T04:19:19Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498472254) at 2023-04-05 09:19 PM PDT -chrismenke45,2023-04-06T14:48:11Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499191037) at 2023-04-06 07:48 AM PDT -chrismenke45,2023-04-06T18:18:23Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499447528) at 2023-04-06 11:18 AM PDT -chrismenke45,2023-04-06T23:38:37Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499759578) at 2023-04-06 04:38 PM PDT -chrismenke45,2023-04-11T23:51:21Z,- chrismenke45 commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1504284464) at 2023-04-11 04:51 PM PDT -chrismenke45,2023-04-12T02:31:06Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1504460330) at 2023-04-11 07:31 PM PDT -chrismenke45,2023-04-12T03:04:23Z,- chrismenke45 opened issue: [4483](https://github.com/hackforla/website/issues/4483) at 2023-04-11 08:04 PM PDT -chrismenke45,2023-04-12T16:26:46Z,- chrismenke45 submitted pull request review: [4468](https://github.com/hackforla/website/pull/4468#pullrequestreview-1381683741) at 2023-04-12 09:26 AM PDT -chrismenke45,2023-04-13T00:32:26Z,- chrismenke45 commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1506141773) at 2023-04-12 05:32 PM PDT -chrismenke45,2023-04-19T03:06:36Z,- chrismenke45 commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1514069891) at 2023-04-18 08:06 PM PDT -chrismenke45,2023-04-19T16:46:22Z,- chrismenke45 closed issue by PR 4517: [4448](https://github.com/hackforla/website/issues/4448#event-9048817330) at 2023-04-19 09:46 AM PDT -chrismenke45,2023-04-19T16:47:40Z,- chrismenke45 closed issue by PR 4497: [4445](https://github.com/hackforla/website/issues/4445#event-9048828389) at 2023-04-19 09:47 AM PDT -chrismenke45,2023-04-19T17:00:25Z,- chrismenke45 closed issue by PR 4524: [4383](https://github.com/hackforla/website/issues/4383#event-9048942822) at 2023-04-19 10:00 AM PDT -chrismenke45,2023-04-19T17:09:58Z,- chrismenke45 closed issue by PR 4518: [4422](https://github.com/hackforla/website/issues/4422#event-9049025729) at 2023-04-19 10:09 AM PDT -chrismenke45,2023-04-19T22:43:09Z,- chrismenke45 submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1392976760) at 2023-04-19 03:43 PM PDT -chrismenke45,2023-04-21T14:10:58Z,- chrismenke45 commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1517896750) at 2023-04-21 07:10 AM PDT -chrismenke45,2023-04-22T00:15:22Z,- chrismenke45 commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1518438309) at 2023-04-21 05:15 PM PDT -chrismenke45,2023-04-22T00:16:17Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1518438640) at 2023-04-21 05:16 PM PDT -chrismenke45,2023-04-24T02:18:31Z,- chrismenke45 commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1519289252) at 2023-04-23 07:18 PM PDT -chrismenke45,2023-04-24T02:18:54Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1519289567) at 2023-04-23 07:18 PM PDT -chrismenke45,2023-04-24T17:35:56Z,- chrismenke45 submitted pull request review: [4554](https://github.com/hackforla/website/pull/4554#pullrequestreview-1398510469) at 2023-04-24 10:35 AM PDT -chrismenke45,2023-04-25T15:54:25Z,- chrismenke45 commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1522039222) at 2023-04-25 08:54 AM PDT -chrismenke45,2023-04-26T00:52:02Z,- chrismenke45 opened issue: [4567](https://github.com/hackforla/website/issues/4567) at 2023-04-25 05:52 PM PDT -chrismenke45,2023-04-26T02:05:35Z,- chrismenke45 assigned to issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1521032707) at 2023-04-25 07:05 PM PDT -chrismenke45,2023-04-26T02:33:37Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1522677022) at 2023-04-25 07:33 PM PDT -chrismenke45,2023-04-26T20:40:32Z,- chrismenke45 submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1402785573) at 2023-04-26 01:40 PM PDT -chrismenke45,2023-04-26T20:50:55Z,- chrismenke45 submitted pull request review: [4561](https://github.com/hackforla/website/pull/4561#pullrequestreview-1402799942) at 2023-04-26 01:50 PM PDT -chrismenke45,2023-04-26T20:51:06Z,- chrismenke45 closed issue by PR 4561: [4414](https://github.com/hackforla/website/issues/4414#event-9107826237) at 2023-04-26 01:51 PM PDT -chrismenke45,2023-04-26T20:52:09Z,- chrismenke45 closed issue by PR 4558: [4394](https://github.com/hackforla/website/issues/4394#event-9107834579) at 2023-04-26 01:52 PM PDT -chrismenke45,2023-04-26T21:01:00Z,- chrismenke45 unassigned from issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1522657973) at 2023-04-26 02:01 PM PDT -chrismenke45,2023-05-03T18:36:31Z,- chrismenke45 closed issue as completed: [4567](https://github.com/hackforla/website/issues/4567#event-9158778296) at 2023-05-03 11:36 AM PDT -chrismenke45,2023-05-03T18:39:22Z,- chrismenke45 commented on issue: [4567](https://github.com/hackforla/website/issues/4567#issuecomment-1533523810) at 2023-05-03 11:39 AM PDT -chrismenke45,2023-05-24T16:15:04Z,- chrismenke45 submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1442301823) at 2023-05-24 09:15 AM PDT -chrismenke45,2023-05-24T16:15:15Z,- chrismenke45 closed issue by PR 4680: [4375](https://github.com/hackforla/website/issues/4375#event-9330015387) at 2023-05-24 09:15 AM PDT -chrismenke45,2023-05-30T15:56:47Z,- chrismenke45 assigned to issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1567670460) at 2023-05-30 08:56 AM PDT -chrismenke45,2023-05-30T15:58:07Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1568688077) at 2023-05-30 08:58 AM PDT -chrismenke45,2023-05-30T16:20:34Z,- chrismenke45 opened issue: [4756](https://github.com/hackforla/website/issues/4756) at 2023-05-30 09:20 AM PDT -chrismenke45,2023-05-30T16:21:51Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1568723744) at 2023-05-30 09:21 AM PDT -chrismenke45,2023-05-30T16:22:19Z,- chrismenke45 commented on issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-05-30 09:22 AM PDT -chrismenke45,2023-05-31T02:24:03Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1569403110) at 2023-05-30 07:24 PM PDT -chrismenke45,2023-05-31T14:47:15Z,- chrismenke45 submitted pull request review: [4745](https://github.com/hackforla/website/pull/4745#pullrequestreview-1453429089) at 2023-05-31 07:47 AM PDT -chrismenke45,2023-05-31T14:47:27Z,- chrismenke45 closed issue by PR 4745: [4491](https://github.com/hackforla/website/issues/4491#event-9391606197) at 2023-05-31 07:47 AM PDT -chrismenke45,2023-05-31T14:49:03Z,- chrismenke45 submitted pull request review: [4748](https://github.com/hackforla/website/pull/4748#pullrequestreview-1453433290) at 2023-05-31 07:49 AM PDT -chrismenke45,2023-05-31T14:49:55Z,- chrismenke45 closed issue by PR 4748: [4419](https://github.com/hackforla/website/issues/4419#event-9391638269) at 2023-05-31 07:49 AM PDT -chrismenke45,2023-05-31T15:03:44Z,- chrismenke45 submitted pull request review: [4754](https://github.com/hackforla/website/pull/4754#pullrequestreview-1453469246) at 2023-05-31 08:03 AM PDT -chrismenke45,2023-05-31T15:03:56Z,- chrismenke45 closed issue by PR 4754: [3998](https://github.com/hackforla/website/issues/3998#event-9391820662) at 2023-05-31 08:03 AM PDT -chrismenke45,2023-05-31T15:22:23Z,- chrismenke45 submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1453529481) at 2023-05-31 08:22 AM PDT -chrismenke45,2023-06-01T16:35:15Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1572377068) at 2023-06-01 09:35 AM PDT -chrismenke45,2023-06-04T18:32:38Z,- chrismenke45 commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1575668353) at 2023-06-04 11:32 AM PDT -chrismenke45,2023-06-05T23:32:49Z,- chrismenke45 commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1577686671) at 2023-06-05 04:32 PM PDT -chrismenke45,2023-06-06T15:03:05Z,- chrismenke45 submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1465432536) at 2023-06-06 08:03 AM PDT -chrismenke45,2023-06-07T02:09:35Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1579759266) at 2023-06-06 07:09 PM PDT -chrismenke45,2023-06-07T02:09:36Z,- chrismenke45 closed issue as completed: [4538](https://github.com/hackforla/website/issues/4538#event-9452651323) at 2023-06-06 07:09 PM PDT -chrismenke45,2023-06-07T13:20:57Z,- chrismenke45 commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1580809226) at 2023-06-07 06:20 AM PDT -chrismenke45,2023-06-07T13:27:26Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1580823991) at 2023-06-07 06:27 AM PDT -chrismenke45,2023-06-18T03:27:28Z,- chrismenke45 commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1595938725) at 2023-06-17 08:27 PM PDT -chrismenke45,2023-06-18T21:58:09Z,- chrismenke45 submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1485203840) at 2023-06-18 02:58 PM PDT -chrismenke45,2023-06-19T15:02:34Z,- chrismenke45 assigned to issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1586226100) at 2023-06-19 08:02 AM PDT -chrismenke45,2023-06-19T15:03:12Z,- chrismenke45 commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1597345764) at 2023-06-19 08:03 AM PDT -chrismenke45,2023-06-20T16:12:19Z,- chrismenke45 opened issue: [4864](https://github.com/hackforla/website/issues/4864) at 2023-06-20 09:12 AM PDT -chrismenke45,2023-06-20T16:13:04Z,- chrismenke45 commented on issue: [4864](https://github.com/hackforla/website/issues/4864#issuecomment-1599102462) at 2023-06-20 09:13 AM PDT -chrismenke45,2023-06-20T16:13:48Z,- chrismenke45 commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1599103480) at 2023-06-20 09:13 AM PDT -chrismenke45,2023-06-22T19:40:28Z,- chrismenke45 commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1603215419) at 2023-06-22 12:40 PM PDT -chrismenke45,2023-06-27T23:56:35Z,- chrismenke45 assigned to issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1592092127) at 2023-06-27 04:56 PM PDT -chrismenke45,2023-06-27T23:58:22Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1610379583) at 2023-06-27 04:58 PM PDT -chrismenke45,2023-06-29T16:55:57Z,- chrismenke45 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1613530900) at 2023-06-29 09:55 AM PDT -chrismenke45,2023-06-29T16:59:24Z,- chrismenke45 commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1613535211) at 2023-06-29 09:59 AM PDT -chrismenke45,2023-06-29T17:05:58Z,- chrismenke45 commented on pull request: [4897](https://github.com/hackforla/website/pull/4897#issuecomment-1613543848) at 2023-06-29 10:05 AM PDT -chrismenke45,2023-06-29T17:15:07Z,- chrismenke45 submitted pull request review: [4897](https://github.com/hackforla/website/pull/4897#pullrequestreview-1505764498) at 2023-06-29 10:15 AM PDT -chrismenke45,2023-06-30T22:36:11Z,- chrismenke45 opened issue: [4903](https://github.com/hackforla/website/issues/4903) at 2023-06-30 03:36 PM PDT -chrismenke45,2023-06-30T22:36:43Z,- chrismenke45 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1615250418) at 2023-06-30 03:36 PM PDT -chrismenke45,2023-06-30T22:38:02Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1615251047) at 2023-06-30 03:38 PM PDT -chrismenke45,2023-07-02T01:04:48Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1616249486) at 2023-07-01 06:04 PM PDT -chrismenke45,2023-07-02T01:04:49Z,- chrismenke45 closed issue as completed: [4769](https://github.com/hackforla/website/issues/4769#event-9698192090) at 2023-07-01 06:04 PM PDT -chrismenke45,2023-07-02T16:54:51Z,- chrismenke45 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1616730238) at 2023-07-02 09:54 AM PDT -chrismenke45,2023-07-03T17:41:08Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1618933370) at 2023-07-03 10:41 AM PDT -chrismenke45,2023-07-05T19:55:38Z,- chrismenke45 submitted pull request review: [4911](https://github.com/hackforla/website/pull/4911#pullrequestreview-1515263527) at 2023-07-05 12:55 PM PDT -chrismenke45,2023-07-05T19:55:55Z,- chrismenke45 closed issue by PR 4911: [2288](https://github.com/hackforla/website/issues/2288#event-9735853720) at 2023-07-05 12:55 PM PDT -chrismenke45,2023-07-05T19:56:27Z,- chrismenke45 commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1622406004) at 2023-07-05 12:56 PM PDT -chrismenke45,2023-07-05T20:18:34Z,- chrismenke45 opened issue: [4912](https://github.com/hackforla/website/issues/4912) at 2023-07-05 01:18 PM PDT -chrismenke45,2023-07-05T20:36:42Z,- chrismenke45 commented on issue: [4912](https://github.com/hackforla/website/issues/4912#issuecomment-1622464392) at 2023-07-05 01:36 PM PDT -chrismenke45,2023-07-11T00:06:07Z,- chrismenke45 unassigned from issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1618933370) at 2023-07-10 05:06 PM PDT -chrismenke45,2023-07-11T00:06:56Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1629899672) at 2023-07-10 05:06 PM PDT -chrismenke45,2023-07-11T00:07:21Z,- chrismenke45 closed issue as completed: [4912](https://github.com/hackforla/website/issues/4912#event-9780996210) at 2023-07-10 05:07 PM PDT -chrismenke45,2023-07-11T00:08:08Z,- chrismenke45 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1629900519) at 2023-07-10 05:08 PM PDT -chrismenke45,2023-07-11T00:08:08Z,- chrismenke45 closed issue by PR 5298: [4903](https://github.com/hackforla/website/issues/4903#event-9781000374) at 2023-07-10 05:08 PM PDT -chrismenke45,2023-07-11T00:08:13Z,- chrismenke45 commented on issue: [4912](https://github.com/hackforla/website/issues/4912#issuecomment-1629900573) at 2023-07-10 05:08 PM PDT -christina245,2020-11-08T18:50:34Z,- christina245 assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-08 10:50 AM PST -christina245,2020-11-13T05:46:06Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-726535663) at 2020-11-12 09:46 PM PST -christina245,2020-12-13T19:18:18Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-744054964) at 2020-12-13 11:18 AM PST -christina245,2020-12-27T18:36:58Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-751501795) at 2020-12-27 10:36 AM PST -christina245,2021-01-24T18:30:11Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-766408647) at 2021-01-24 10:30 AM PST -christina245,2021-02-07T18:31:51Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-774728123) at 2021-02-07 10:31 AM PST -christina245,2021-02-07T20:43:23Z,- christina245 commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-774757211) at 2021-02-07 12:43 PM PST -christina245,2021-02-21T18:33:10Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-782903721) at 2021-02-21 10:33 AM PST -christina245,2021-02-28T08:36:04Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-787417009) at 2021-02-28 12:36 AM PST -christina245,2021-03-21T17:41:18Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-803630058) at 2021-03-21 10:41 AM PDT -christina245,2021-03-21T20:32:17Z,- christina245 assigned to issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-21 01:32 PM PDT -christina245,2021-04-02T04:54:47Z,- christina245 unassigned from issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-04-01 09:54 PM PDT -christina245,2021-04-28T22:03:56Z,- christina245 assigned to issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-674546549) at 2021-04-28 03:03 PM PDT -christina245,2021-05-09T17:36:24Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-835850104) at 2021-05-09 10:36 AM PDT -christina245,2021-05-30T18:08:55Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-851039039) at 2021-05-30 11:08 AM PDT -christina245,2021-06-08T19:52:10Z,- christina245 unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-803630058) at 2021-06-08 12:52 PM PDT -christina245,2021-06-20T17:32:44Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-864587151) at 2021-06-20 10:32 AM PDT -christina245,2021-06-27T04:18:41Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-869097923) at 2021-06-26 09:18 PM PDT -christina245,2021-07-25T18:24:06Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-886239930) at 2021-07-25 11:24 AM PDT -christina245,2021-08-06T01:18:11Z,- christina245 assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-822814496) at 2021-08-05 06:18 PM PDT -christina245,2021-08-12T23:42:10Z,- christina245 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-898044374) at 2021-08-12 04:42 PM PDT -christina245,2021-08-13T00:08:46Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-898054619) at 2021-08-12 05:08 PM PDT -christina245,2021-08-24T17:44:34Z,- christina245 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-08-24 10:44 AM PDT -christina245,2021-08-25T19:51:12Z,- christina245 unassigned from issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-08-25 12:51 PM PDT -christina245,2021-09-19T23:23:50Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-922554661) at 2021-09-19 04:23 PM PDT -christina245,2021-10-10T17:24:40Z,- christina245 unassigned from issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-938397004) at 2021-10-10 10:24 AM PDT -christinaor,3827,SKILLS ISSUE -christinaor,2023-01-17T03:47:21Z,- christinaor opened issue: [3827](https://github.com/hackforla/website/issues/3827) at 2023-01-16 07:47 PM PST -christinaor,2023-01-17T04:04:54Z,- christinaor assigned to issue: [3827](https://github.com/hackforla/website/issues/3827) at 2023-01-16 08:04 PM PST -christinaor,2023-01-29T23:43:27Z,- christinaor assigned to issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1385988822) at 2023-01-29 03:43 PM PST -christinaor,2023-01-30T00:58:33Z,- christinaor opened pull request: [3894](https://github.com/hackforla/website/pull/3894) at 2023-01-29 04:58 PM PST -christinaor,2023-01-30T01:05:50Z,- christinaor commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1407838074) at 2023-01-29 05:05 PM PST -christinaor,2023-01-30T01:09:32Z,- christinaor commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1407842166) at 2023-01-29 05:09 PM PST -christinaor,2023-01-31T18:33:24Z,- christinaor pull request merged: [3894](https://github.com/hackforla/website/pull/3894#event-8402658890) at 2023-01-31 10:33 AM PST -christinaor,2023-02-01T03:27:54Z,- christinaor commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1411410797) at 2023-01-31 07:27 PM PST -christinaor,2023-02-01T03:36:39Z,- christinaor submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1278387817) at 2023-01-31 07:36 PM PST -christinaor,2023-02-01T03:45:36Z,- christinaor commented on pull request: [3901](https://github.com/hackforla/website/pull/3901#issuecomment-1411419894) at 2023-01-31 07:45 PM PST -christinaor,2023-02-01T05:25:49Z,- christinaor submitted pull request review: [3901](https://github.com/hackforla/website/pull/3901#pullrequestreview-1278450280) at 2023-01-31 09:25 PM PST -christinaor,2023-02-01T05:28:55Z,- christinaor assigned to issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1192033274) at 2023-01-31 09:28 PM PST -christinaor,2023-02-01T05:30:12Z,- christinaor commented on issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1411490485) at 2023-01-31 09:30 PM PST -christinaor,2023-02-02T21:46:23Z,- christinaor opened pull request: [3926](https://github.com/hackforla/website/pull/3926) at 2023-02-02 01:46 PM PST -christinaor,2023-02-02T21:51:25Z,- christinaor commented on issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1414423314) at 2023-02-02 01:51 PM PST -christinaor,2023-02-02T21:54:48Z,- christinaor closed issue as completed: [3827](https://github.com/hackforla/website/issues/3827#event-8425904716) at 2023-02-02 01:54 PM PST -christinaor,2023-02-02T22:30:36Z,- christinaor assigned to issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407846561) at 2023-02-02 02:30 PM PST -christinaor,2023-02-02T22:32:08Z,- christinaor commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1414463005) at 2023-02-02 02:32 PM PST -christinaor,2023-02-03T04:02:03Z,- christinaor opened pull request: [3928](https://github.com/hackforla/website/pull/3928) at 2023-02-02 08:02 PM PST -christinaor,2023-02-06T22:53:09Z,- christinaor pull request merged: [3926](https://github.com/hackforla/website/pull/3926#event-8452546471) at 2023-02-06 02:53 PM PST -christinaor,2023-02-07T02:02:28Z,- christinaor commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420061818) at 2023-02-06 06:02 PM PST -christinaor,2023-02-07T02:05:23Z,- christinaor commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420068613) at 2023-02-06 06:05 PM PST -christinaor,2023-02-07T04:09:22Z,- christinaor commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420171507) at 2023-02-06 08:09 PM PST -christinaor,2023-02-08T07:53:44Z,- christinaor pull request merged: [3928](https://github.com/hackforla/website/pull/3928#event-8465775348) at 2023-02-07 11:53 PM PST -christinaor,2023-02-11T00:12:25Z,- christinaor assigned to issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1304901119) at 2023-02-10 04:12 PM PST -christinaor,2023-02-11T00:15:08Z,- christinaor commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1426517805) at 2023-02-10 04:15 PM PST -christinaor,2023-02-15T22:14:11Z,- christinaor commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1432116661) at 2023-02-15 02:14 PM PST -christinaor,2023-02-16T18:03:04Z,- christinaor commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1433498511) at 2023-02-16 10:03 AM PST -christinaor,2023-02-16T20:54:42Z,- christinaor commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1433701720) at 2023-02-16 12:54 PM PST -christinaor,2023-02-16T21:36:02Z,- christinaor submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1302313156) at 2023-02-16 01:36 PM PST -christinaor,2023-02-17T03:29:52Z,- christinaor opened pull request: [3994](https://github.com/hackforla/website/pull/3994) at 2023-02-16 07:29 PM PST -christinaor,2023-02-17T03:50:09Z,- christinaor commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1434057796) at 2023-02-16 07:50 PM PST -christinaor,2023-02-17T18:21:34Z,- christinaor commented on pull request: [3984](https://github.com/hackforla/website/pull/3984#issuecomment-1435065406) at 2023-02-17 10:21 AM PST -christinaor,2023-02-17T20:58:00Z,- christinaor submitted pull request review: [3984](https://github.com/hackforla/website/pull/3984#pullrequestreview-1304192572) at 2023-02-17 12:58 PM PST -christinaor,2023-02-17T22:21:46Z,- christinaor submitted pull request review: [4002](https://github.com/hackforla/website/pull/4002#pullrequestreview-1304270116) at 2023-02-17 02:21 PM PST -christinaor,2023-02-21T00:58:33Z,- christinaor commented on pull request: [3994](https://github.com/hackforla/website/pull/3994#issuecomment-1437717016) at 2023-02-20 04:58 PM PST -christinaor,2023-02-21T01:15:19Z,- christinaor pull request merged: [3994](https://github.com/hackforla/website/pull/3994#event-8565955177) at 2023-02-20 05:15 PM PST -christinaor,2023-02-21T02:22:12Z,- christinaor assigned to issue: [3976](https://github.com/hackforla/website/issues/3976) at 2023-02-20 06:22 PM PST -christinaor,2023-02-21T02:37:22Z,- christinaor commented on issue: [3976](https://github.com/hackforla/website/issues/3976#issuecomment-1437779328) at 2023-02-20 06:37 PM PST -christinaor,2023-02-21T04:42:19Z,- christinaor opened pull request: [4018](https://github.com/hackforla/website/pull/4018) at 2023-02-20 08:42 PM PST -christinaor,2023-02-24T07:06:30Z,- christinaor pull request merged: [4018](https://github.com/hackforla/website/pull/4018#event-8598812544) at 2023-02-23 11:06 PM PST -christinaor,2023-02-24T18:00:24Z,- christinaor commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1444152258) at 2023-02-24 10:00 AM PST -christinaor,2023-02-25T16:29:42Z,- christinaor submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1314539723) at 2023-02-25 08:29 AM PST -christinaor,2023-03-03T17:56:19Z,- christinaor opened issue: [4101](https://github.com/hackforla/website/issues/4101) at 2023-03-03 09:56 AM PST -christinaor,2023-03-15T16:52:59Z,- christinaor commented on pull request: [4178](https://github.com/hackforla/website/pull/4178#issuecomment-1470398978) at 2023-03-15 09:52 AM PDT -christinaor,2023-03-15T17:53:08Z,- christinaor submitted pull request review: [4178](https://github.com/hackforla/website/pull/4178#pullrequestreview-1342079628) at 2023-03-15 10:53 AM PDT -christinaor,2023-03-22T00:32:01Z,- christinaor assigned to issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1477059261) at 2023-03-21 05:32 PM PDT -christinaor,2023-03-22T02:13:15Z,- christinaor commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1478827612) at 2023-03-21 07:13 PM PDT -christinaor,2023-03-29T16:26:08Z,- christinaor commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1488922411) at 2023-03-29 09:26 AM PDT -christinaor,2023-03-30T22:01:06Z,- christinaor commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1491019609) at 2023-03-30 03:01 PM PDT -christinaor,2023-04-03T02:06:24Z,- christinaor commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1493535080) at 2023-04-02 07:06 PM PDT -christinaor,2023-04-03T02:10:27Z,- christinaor closed issue by PR 4346: [2830](https://github.com/hackforla/website/issues/2830#event-8907763110) at 2023-04-02 07:10 PM PDT -christinaor,2023-04-04T23:19:26Z,- christinaor unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1496715092) at 2023-04-04 04:19 PM PDT -christinaor,2023-04-06T17:06:33Z,- christinaor assigned to issue: [4357](https://github.com/hackforla/website/issues/4357) at 2023-04-06 10:06 AM PDT -christinaor,2023-04-06T18:54:15Z,- christinaor commented on issue: [4357](https://github.com/hackforla/website/issues/4357#issuecomment-1499484764) at 2023-04-06 11:54 AM PDT -christinaor,2023-04-11T06:01:40Z,- christinaor commented on issue: [4357](https://github.com/hackforla/website/issues/4357#issuecomment-1502731125) at 2023-04-10 11:01 PM PDT -christinaor,2023-04-21T05:17:42Z,- christinaor opened pull request: [4550](https://github.com/hackforla/website/pull/4550) at 2023-04-20 10:17 PM PDT -christinaor,2023-04-21T20:43:22Z,- christinaor assigned to issue: [4277](https://github.com/hackforla/website/issues/4277) at 2023-04-21 01:43 PM PDT -christinaor,2023-04-21T21:24:14Z,- christinaor commented on issue: [4277](https://github.com/hackforla/website/issues/4277#issuecomment-1518348358) at 2023-04-21 02:24 PM PDT -christinaor,2023-04-21T21:57:59Z,- christinaor opened issue: [4555](https://github.com/hackforla/website/issues/4555) at 2023-04-21 02:57 PM PDT -christinaor,2023-04-21T22:02:06Z,- christinaor commented on issue: [4277](https://github.com/hackforla/website/issues/4277#issuecomment-1518372927) at 2023-04-21 03:02 PM PDT -christinaor,2023-05-04T19:50:44Z,- christinaor pull request merged: [4550](https://github.com/hackforla/website/pull/4550#event-9171031612) at 2023-05-04 12:50 PM PDT -christinaor,2023-05-10T15:45:39Z,- christinaor assigned to issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1537511149) at 2023-05-10 08:45 AM PDT -christinaor,2023-05-10T15:50:37Z,- christinaor commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1542438412) at 2023-05-10 08:50 AM PDT -christinaor,2023-05-10T16:46:20Z,- christinaor opened issue: [4647](https://github.com/hackforla/website/issues/4647) at 2023-05-10 09:46 AM PDT -christinaor,2023-05-10T16:52:17Z,- christinaor commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1542522615) at 2023-05-10 09:52 AM PDT -christinaor,2023-05-10T16:57:38Z,- christinaor assigned to issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1535525103) at 2023-05-10 09:57 AM PDT -christinaor,2023-05-10T16:58:14Z,- christinaor commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1542529473) at 2023-05-10 09:58 AM PDT -christinaor,2023-05-10T17:20:18Z,- christinaor opened issue: [4648](https://github.com/hackforla/website/issues/4648) at 2023-05-10 10:20 AM PDT -christinaor,2023-05-10T17:25:15Z,- christinaor commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1542560264) at 2023-05-10 10:25 AM PDT -christinaor,2023-05-10T17:30:57Z,- christinaor commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1542567331) at 2023-05-10 10:30 AM PDT -christinaor,2023-05-15T17:28:17Z,- christinaor commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1548263062) at 2023-05-15 10:28 AM PDT -christinaor,2023-08-08T21:40:05Z,- christinaor submitted pull request review: [5161](https://github.com/hackforla/website/pull/5161#pullrequestreview-1568283271) at 2023-08-08 02:40 PM PDT -christinaor,2023-08-09T03:33:54Z,- christinaor closed issue by PR 5161: [5137](https://github.com/hackforla/website/issues/5137#event-10041971414) at 2023-08-08 08:33 PM PDT -christinaor,2023-08-09T03:50:33Z,- christinaor commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1670611355) at 2023-08-08 08:50 PM PDT -christinaor,2023-08-09T03:50:44Z,- christinaor closed issue by PR 5152: [5131](https://github.com/hackforla/website/issues/5131#event-10042037162) at 2023-08-08 08:50 PM PDT -christinaor,2023-08-22T21:55:45Z,- christinaor commented on pull request: [5275](https://github.com/hackforla/website/pull/5275#issuecomment-1688982188) at 2023-08-22 02:55 PM PDT -christinaor,2023-08-22T21:55:57Z,- christinaor closed issue by PR 5275: [5266](https://github.com/hackforla/website/issues/5266#event-10163488790) at 2023-08-22 02:55 PM PDT -christinaor,2023-08-22T22:00:41Z,- christinaor commented on pull request: [5261](https://github.com/hackforla/website/pull/5261#issuecomment-1688986738) at 2023-08-22 03:00 PM PDT -christinaor,2023-08-22T22:00:55Z,- christinaor closed issue by PR 5261: [5198](https://github.com/hackforla/website/issues/5198#event-10163516215) at 2023-08-22 03:00 PM PDT -christinaor,2023-08-22T22:24:34Z,- christinaor commented on pull request: [5259](https://github.com/hackforla/website/pull/5259#issuecomment-1689006815) at 2023-08-22 03:24 PM PDT -christinaor,2023-08-22T22:24:49Z,- christinaor closed issue by PR 5259: [5255](https://github.com/hackforla/website/issues/5255#event-10163646147) at 2023-08-22 03:24 PM PDT -christinaor,2023-08-30T02:01:15Z,- christinaor commented on pull request: [5335](https://github.com/hackforla/website/pull/5335#issuecomment-1698380284) at 2023-08-29 07:01 PM PDT -christinaor,2023-08-30T02:01:29Z,- christinaor closed issue by PR 5335: [5281](https://github.com/hackforla/website/issues/5281#event-10227505231) at 2023-08-29 07:01 PM PDT -christinaor,2023-08-30T02:05:26Z,- christinaor commented on pull request: [5331](https://github.com/hackforla/website/pull/5331#issuecomment-1698382978) at 2023-08-29 07:05 PM PDT -christinaor,2023-08-30T02:05:34Z,- christinaor closed issue by PR 5331: [5154](https://github.com/hackforla/website/issues/5154#event-10227523109) at 2023-08-29 07:05 PM PDT -christinaor,2023-08-30T02:12:49Z,- christinaor commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1698387486) at 2023-08-29 07:12 PM PDT -christinaor,2023-08-30T02:13:05Z,- christinaor submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1601756711) at 2023-08-29 07:13 PM PDT -christinaor,2023-08-30T02:13:46Z,- christinaor submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1601757119) at 2023-08-29 07:13 PM PDT -christinaor,2023-08-30T02:16:28Z,- christinaor closed issue by PR 5296: [5253](https://github.com/hackforla/website/issues/5253#event-10227569633) at 2023-08-29 07:16 PM PDT -christinaor,2023-09-27T01:27:32Z,- christinaor submitted pull request review: [5593](https://github.com/hackforla/website/pull/5593#pullrequestreview-1645431457) at 2023-09-26 06:27 PM PDT -christinaor,2023-09-27T01:27:50Z,- christinaor closed issue by PR 5593: [5329](https://github.com/hackforla/website/issues/5329#event-10481500310) at 2023-09-26 06:27 PM PDT -christinaor,2023-09-27T01:36:01Z,- christinaor submitted pull request review: [5586](https://github.com/hackforla/website/pull/5586#pullrequestreview-1645437724) at 2023-09-26 06:36 PM PDT -christinaor,2023-09-27T01:36:16Z,- christinaor closed issue by PR 5586: [4961](https://github.com/hackforla/website/issues/4961#event-10481543243) at 2023-09-26 06:36 PM PDT -christinaor,2023-09-27T02:21:27Z,- christinaor submitted pull request review: [5570](https://github.com/hackforla/website/pull/5570#pullrequestreview-1645482653) at 2023-09-26 07:21 PM PDT -christinaor,2024-03-26T22:36:39Z,- christinaor unassigned from issue: [4277](https://github.com/hackforla/website/issues/4277#issuecomment-1518372927) at 2024-03-26 03:36 PM PDT -Christopher-Chhim,7889,SKILLS ISSUE -Christopher-Chhim,2025-02-05T04:19:56Z,- Christopher-Chhim opened issue: [7889](https://github.com/hackforla/website/issues/7889) at 2025-02-04 08:19 PM PST -Christopher-Chhim,2025-02-05T04:20:09Z,- Christopher-Chhim assigned to issue: [7889](https://github.com/hackforla/website/issues/7889) at 2025-02-04 08:20 PM PST -Christopher-Chhim,2025-02-22T01:33:26Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2675920920) at 2025-02-21 05:33 PM PST -Christopher-Chhim,2025-02-22T01:34:58Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2675921818) at 2025-02-21 05:34 PM PST -Christopher-Chhim,2025-02-23T03:58:26Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676548961) at 2025-02-22 07:58 PM PST -Christopher-Chhim,2025-02-23T04:09:36Z,- Christopher-Chhim opened issue: [7934](https://github.com/hackforla/website/issues/7934) at 2025-02-22 08:09 PM PST -Christopher-Chhim,2025-02-23T04:09:36Z,- Christopher-Chhim assigned to issue: [7934](https://github.com/hackforla/website/issues/7934) at 2025-02-22 08:09 PM PST -Christopher-Chhim,2025-02-23T04:59:02Z,- Christopher-Chhim opened pull request: [7935](https://github.com/hackforla/website/pull/7935) at 2025-02-22 08:59 PM PST -Christopher-Chhim,2025-02-23T05:03:40Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676574597) at 2025-02-22 09:03 PM PST -Christopher-Chhim,2025-02-23T05:09:33Z,- Christopher-Chhim assigned to issue: [7484](https://github.com/hackforla/website/issues/7484) at 2025-02-22 09:09 PM PST -Christopher-Chhim,2025-02-23T05:21:16Z,- Christopher-Chhim opened pull request: [7936](https://github.com/hackforla/website/pull/7936) at 2025-02-22 09:21 PM PST -Christopher-Chhim,2025-02-23T05:22:24Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676628846) at 2025-02-22 09:22 PM PST -Christopher-Chhim,2025-02-23T05:23:40Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676629199) at 2025-02-22 09:23 PM PST -Christopher-Chhim,2025-02-23T18:51:40Z,- Christopher-Chhim pull request closed w/o merging: [7935](https://github.com/hackforla/website/pull/7935#event-16422066949) at 2025-02-23 10:51 AM PST -Christopher-Chhim,2025-02-28T05:07:04Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2689735629) at 2025-02-27 09:07 PM PST -Christopher-Chhim,2025-02-28T05:19:22Z,- Christopher-Chhim pull request merged: [7936](https://github.com/hackforla/website/pull/7936#event-16506998057) at 2025-02-27 09:19 PM PST -Christopher-Chhim,2025-03-26T02:59:57Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2753119581) at 2025-03-25 07:59 PM PDT -Christopher-Chhim,2025-03-26T03:08:32Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2753129067) at 2025-03-25 08:08 PM PDT -Christopher-Chhim,2025-04-04T04:02:06Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2777503249) at 2025-04-03 09:02 PM PDT -Christopher-Chhim,2025-04-07T02:17:15Z,- Christopher-Chhim pull request merged: [7936](https://github.com/hackforla/website/pull/7936#event-17145393758) at 2025-04-06 07:17 PM PDT -Christopher-Chhim,2025-04-09T00:26:22Z,- Christopher-Chhim commented on pull request: [8047](https://github.com/hackforla/website/pull/8047#issuecomment-2787930752) at 2025-04-08 05:26 PM PDT -Christopher-Chhim,2025-04-11T01:06:39Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795571698) at 2025-04-10 06:06 PM PDT -Christopher-Chhim,2025-04-11T01:06:39Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795571698) at 2025-04-10 06:06 PM PDT -Christopher-Chhim,2025-04-11T01:15:18Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795579964) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:15:18Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795579964) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:15:50Z,- Christopher-Chhim submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758911054) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:15:50Z,- Christopher-Chhim submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758911054) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:23:39Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795588226) at 2025-04-10 06:23 PM PDT -Christopher-Chhim,2025-04-11T01:29:20Z,- Christopher-Chhim submitted pull request review: [8047](https://github.com/hackforla/website/pull/8047#pullrequestreview-2758925674) at 2025-04-10 06:29 PM PDT -Christopher-Chhim,2025-04-11T01:30:13Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795594905) at 2025-04-10 06:30 PM PDT -Christopher-Chhim,2025-04-11T01:38:53Z,- Christopher-Chhim submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2758935631) at 2025-04-10 06:38 PM PDT -Christopher-Chhim,2025-04-11T01:43:31Z,- Christopher-Chhim commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2795608246) at 2025-04-10 06:43 PM PDT -Christopher-Chhim,2025-04-11T01:44:17Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795608919) at 2025-04-10 06:44 PM PDT -Christopher-Chhim,2025-04-11T01:46:36Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795611069) at 2025-04-10 06:46 PM PDT -Christopher-Chhim,2025-04-11T01:48:42Z,- Christopher-Chhim assigned to issue: [8050](https://github.com/hackforla/website/issues/8050) at 2025-04-10 06:48 PM PDT -Christopher-Chhim,2025-04-11T01:48:56Z,- Christopher-Chhim unassigned from issue: [8050](https://github.com/hackforla/website/issues/8050#issuecomment-2795613377) at 2025-04-10 06:48 PM PDT -Christopher-Chhim,2025-04-11T01:49:35Z,- Christopher-Chhim assigned to issue: [7548](https://github.com/hackforla/website/issues/7548) at 2025-04-10 06:49 PM PDT -Christopher-Chhim,2025-04-11T02:01:09Z,- Christopher-Chhim commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2795634756) at 2025-04-10 07:01 PM PDT -Christopher-Chhim,2025-04-11T02:36:51Z,- Christopher-Chhim opened pull request: [8057](https://github.com/hackforla/website/pull/8057) at 2025-04-10 07:36 PM PDT -Christopher-Chhim,2025-06-01T16:21:37Z,- Christopher-Chhim pull request closed w/o merging: [8057](https://github.com/hackforla/website/pull/8057#event-17915673526) at 2025-06-01 09:21 AM PDT -Christopher-Chhim,2025-06-01T16:21:53Z,- Christopher-Chhim unassigned from issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2800088489) at 2025-06-01 09:21 AM PDT -chrjl,6251,SKILLS ISSUE -chrjl,7426,SKILLS ISSUE -chrjl,2024-02-06T04:06:42Z,- chrjl opened issue: [6251](https://github.com/hackforla/website/issues/6251) at 2024-02-05 08:06 PM PST -chrjl,2024-02-07T00:43:50Z,- chrjl assigned to issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1928754968) at 2024-02-06 04:43 PM PST -chrjl,2024-09-10T02:35:31Z,- chrjl opened issue: [7426](https://github.com/hackforla/website/issues/7426) at 2024-09-09 07:35 PM PDT -chrjl,2024-09-10T02:35:44Z,- chrjl assigned to issue: [7426](https://github.com/hackforla/website/issues/7426) at 2024-09-09 07:35 PM PDT -chrjl,2024-09-10T03:03:12Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2339515319) at 2024-09-09 08:03 PM PDT -chrjl,2024-09-21T16:36:49Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2365247124) at 2024-09-21 09:36 AM PDT -chrjl,2024-09-21T17:48:40Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2365267138) at 2024-09-21 10:48 AM PDT -chrjl,2024-09-21T18:59:42Z,- chrjl assigned to issue: [7488](https://github.com/hackforla/website/issues/7488) at 2024-09-21 11:59 AM PDT -chrjl,2024-09-21T19:11:52Z,- chrjl commented on issue: [7488](https://github.com/hackforla/website/issues/7488#issuecomment-2365291844) at 2024-09-21 12:11 PM PDT -chrjl,2024-09-21T19:12:33Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2365292020) at 2024-09-21 12:12 PM PDT -chrjl,2024-09-24T00:27:53Z,- chrjl opened pull request: [7511](https://github.com/hackforla/website/pull/7511) at 2024-09-23 05:27 PM PDT -chrjl,2024-09-25T13:49:03Z,- chrjl pull request merged: [7511](https://github.com/hackforla/website/pull/7511#event-14399624981) at 2024-09-25 06:49 AM PDT -chrzano12,2019-07-24T02:21:54Z,- chrzano12 assigned to issue: [137](https://github.com/hackforla/website/issues/137) at 2019-07-23 07:21 PM PDT -chrzano12,2019-07-24T06:29:32Z,- chrzano12 unassigned from issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-514464523) at 2019-07-23 11:29 PM PDT -cicyhou,2020-05-19T01:25:13Z,- cicyhou commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-630520449) at 2020-05-18 06:25 PM PDT -Claudiahamilton-png,3051,SKILLS ISSUE -Claudiahamilton-png,2022-04-13T21:54:57Z,- Claudiahamilton-png opened issue: [3051](https://github.com/hackforla/website/issues/3051) at 2022-04-13 02:54 PM PDT -Claudiahamilton-png,2022-04-13T21:56:21Z,- Claudiahamilton-png assigned to issue: [3051](https://github.com/hackforla/website/issues/3051#issuecomment-1098523855) at 2022-04-13 02:56 PM PDT -Claudiahamilton-png,2022-04-20T22:25:42Z,- Claudiahamilton-png assigned to issue: [2945](https://github.com/hackforla/website/issues/2945#issuecomment-1063258221) at 2022-04-20 03:25 PM PDT -Claudiahamilton-png,2022-04-20T22:28:06Z,- Claudiahamilton-png commented on issue: [3051](https://github.com/hackforla/website/issues/3051#issuecomment-1104518974) at 2022-04-20 03:28 PM PDT -Claudiahamilton-png,2022-04-20T22:30:02Z,- Claudiahamilton-png closed issue as completed: [3051](https://github.com/hackforla/website/issues/3051#event-6466691868) at 2022-04-20 03:30 PM PDT -Claudiahamilton-png,2022-05-11T21:59:57Z,- Claudiahamilton-png closed issue as completed: [2945](https://github.com/hackforla/website/issues/2945#event-6593882013) at 2022-05-11 02:59 PM PDT -Claudiahamilton-png,2022-05-11T22:00:11Z,- Claudiahamilton-png unassigned from issue: [2945](https://github.com/hackforla/website/issues/2945#event-6593882013) at 2022-05-11 03:00 PM PDT -Claudiahamilton-png,2022-05-19T15:17:05Z,- Claudiahamilton-png assigned to issue: [2946](https://github.com/hackforla/website/issues/2946#issuecomment-1063260310) at 2022-05-19 08:17 AM PDT -Claudiahamilton-png,2022-10-04T01:12:53Z,- Claudiahamilton-png unassigned from issue: [2946](https://github.com/hackforla/website/issues/2946#issuecomment-1063260310) at 2022-10-03 06:12 PM PDT -clayton1111,3266,SKILLS ISSUE -clayton1111,2022-06-20T21:41:33Z,- clayton1111 opened issue: [3266](https://github.com/hackforla/website/issues/3266) at 2022-06-20 02:41 PM PDT -clayton1111,2022-06-20T21:56:49Z,- clayton1111 assigned to issue: [3266](https://github.com/hackforla/website/issues/3266#issuecomment-1160868444) at 2022-06-20 02:56 PM PDT -clayton1111,2022-06-22T02:49:32Z,- clayton1111 assigned to issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1046314101) at 2022-06-21 07:49 PM PDT -clayton1111,2022-06-22T02:52:35Z,- clayton1111 commented on issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1162575334) at 2022-06-21 07:52 PM PDT -clayton1111,2022-06-23T18:32:22Z,- clayton1111 opened pull request: [3293](https://github.com/hackforla/website/pull/3293) at 2022-06-23 11:32 AM PDT -clayton1111,2022-06-23T18:38:58Z,- clayton1111 commented on issue: [3266](https://github.com/hackforla/website/issues/3266#issuecomment-1164745294) at 2022-06-23 11:38 AM PDT -clayton1111,2022-06-23T18:40:03Z,- clayton1111 commented on issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1164746170) at 2022-06-23 11:40 AM PDT -clayton1111,2022-06-23T21:09:27Z,- clayton1111 opened pull request: [3297](https://github.com/hackforla/website/pull/3297) at 2022-06-23 02:09 PM PDT -clayton1111,2022-06-23T21:12:27Z,- clayton1111 commented on pull request: [3293](https://github.com/hackforla/website/pull/3293#issuecomment-1164877805) at 2022-06-23 02:12 PM PDT -clayton1111,2022-06-24T02:52:48Z,- clayton1111 pull request closed w/o merging: [3293](https://github.com/hackforla/website/pull/3293#event-6871103815) at 2022-06-23 07:52 PM PDT -clayton1111,2022-06-26T05:05:46Z,- clayton1111 pull request merged: [3297](https://github.com/hackforla/website/pull/3297#event-6879792015) at 2022-06-25 10:05 PM PDT -clayton1111,2022-06-26T16:13:14Z,- clayton1111 assigned to issue: [3103](https://github.com/hackforla/website/issues/3103#issuecomment-1116854613) at 2022-06-26 09:13 AM PDT -clayton1111,2022-06-26T16:26:40Z,- clayton1111 commented on issue: [3103](https://github.com/hackforla/website/issues/3103#issuecomment-1166579797) at 2022-06-26 09:26 AM PDT -clayton1111,2022-06-26T17:29:13Z,- clayton1111 commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166595367) at 2022-06-26 10:29 AM PDT -clayton1111,2022-06-26T17:33:05Z,- clayton1111 submitted pull request review: [3304](https://github.com/hackforla/website/pull/3304#pullrequestreview-1019460564) at 2022-06-26 10:33 AM PDT -clayton1111,2022-06-27T19:09:09Z,- clayton1111 opened pull request: [3320](https://github.com/hackforla/website/pull/3320) at 2022-06-27 12:09 PM PDT -clayton1111,2022-06-27T19:12:45Z,- clayton1111 commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1167773094) at 2022-06-27 12:12 PM PDT -clayton1111,2022-06-28T17:27:13Z,- clayton1111 closed issue by PR 3702: [3165](https://github.com/hackforla/website/issues/3165#event-6896001587) at 2022-06-28 10:27 AM PDT -clayton1111,2022-06-28T17:27:16Z,- clayton1111 reopened issue: [3165](https://github.com/hackforla/website/issues/3165#event-6896001587) at 2022-06-28 10:27 AM PDT -clayton1111,2022-06-28T17:32:54Z,- clayton1111 assigned to issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1164984320) at 2022-06-28 10:32 AM PDT -clayton1111,2022-06-28T17:34:19Z,- clayton1111 commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1169024934) at 2022-06-28 10:34 AM PDT -clayton1111,2022-06-28T18:10:53Z,- clayton1111 commented on pull request: [3317](https://github.com/hackforla/website/pull/3317#issuecomment-1169060351) at 2022-06-28 11:10 AM PDT -clayton1111,2022-06-28T18:12:58Z,- clayton1111 submitted pull request review: [3317](https://github.com/hackforla/website/pull/3317#pullrequestreview-1022198980) at 2022-06-28 11:12 AM PDT -clayton1111,2022-06-28T20:43:29Z,- clayton1111 pull request merged: [3320](https://github.com/hackforla/website/pull/3320#event-6897198878) at 2022-06-28 01:43 PM PDT -clayton1111,2022-06-29T18:44:09Z,- clayton1111 commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1170362581) at 2022-06-29 11:44 AM PDT -clayton1111,2022-06-30T17:51:52Z,- clayton1111 opened pull request: [3325](https://github.com/hackforla/website/pull/3325) at 2022-06-30 10:51 AM PDT -clayton1111,2022-06-30T17:52:04Z,- clayton1111 pull request closed w/o merging: [3325](https://github.com/hackforla/website/pull/3325#event-6912884520) at 2022-06-30 10:52 AM PDT -clayton1111,2022-06-30T17:57:51Z,- clayton1111 opened pull request: [3326](https://github.com/hackforla/website/pull/3326) at 2022-06-30 10:57 AM PDT -clayton1111,2022-06-30T18:09:25Z,- clayton1111 commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1171526601) at 2022-06-30 11:09 AM PDT -clayton1111,2022-06-30T21:34:58Z,- clayton1111 pull request merged: [3326](https://github.com/hackforla/website/pull/3326#event-6914166066) at 2022-06-30 02:34 PM PDT -clayton1111,2022-07-01T18:19:22Z,- clayton1111 assigned to issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-907767061) at 2022-07-01 11:19 AM PDT -clayton1111,2022-07-05T16:08:29Z,- clayton1111 commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1175234336) at 2022-07-05 09:08 AM PDT -clayton1111,2022-07-05T16:29:33Z,- clayton1111 opened pull request: [3329](https://github.com/hackforla/website/pull/3329) at 2022-07-05 09:29 AM PDT -clayton1111,2022-07-06T02:12:29Z,- clayton1111 commented on pull request: [3325](https://github.com/hackforla/website/pull/3325#issuecomment-1175699508) at 2022-07-05 07:12 PM PDT -clayton1111,2022-07-06T16:03:21Z,- clayton1111 commented on pull request: [3330](https://github.com/hackforla/website/pull/3330#issuecomment-1176405443) at 2022-07-06 09:03 AM PDT -clayton1111,2022-07-06T16:10:24Z,- clayton1111 submitted pull request review: [3330](https://github.com/hackforla/website/pull/3330#pullrequestreview-1030360978) at 2022-07-06 09:10 AM PDT -clayton1111,2022-07-08T16:07:03Z,- clayton1111 commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1179152794) at 2022-07-08 09:07 AM PDT -clayton1111,2022-07-08T16:09:10Z,- clayton1111 commented on pull request: [3340](https://github.com/hackforla/website/pull/3340#issuecomment-1179154926) at 2022-07-08 09:09 AM PDT -clayton1111,2022-07-08T16:24:20Z,- clayton1111 submitted pull request review: [3340](https://github.com/hackforla/website/pull/3340#pullrequestreview-1033136814) at 2022-07-08 09:24 AM PDT -clayton1111,2022-07-10T00:05:32Z,- clayton1111 pull request merged: [3329](https://github.com/hackforla/website/pull/3329#event-6964460690) at 2022-07-09 05:05 PM PDT -clayton1111,2022-07-11T16:06:25Z,- clayton1111 assigned to issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1098564333) at 2022-07-11 09:06 AM PDT -clayton1111,2022-07-11T16:07:36Z,- clayton1111 commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1180597103) at 2022-07-11 09:07 AM PDT -clayton1111,2022-07-14T18:12:53Z,- clayton1111 commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1184753877) at 2022-07-14 11:12 AM PDT -clayton1111,2022-07-14T18:44:44Z,- clayton1111 submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1039331693) at 2022-07-14 11:44 AM PDT -clayton1111,2022-07-15T17:08:23Z,- clayton1111 opened pull request: [3373](https://github.com/hackforla/website/pull/3373) at 2022-07-15 10:08 AM PDT -clayton1111,2022-07-15T17:10:41Z,- clayton1111 commented on pull request: [3373](https://github.com/hackforla/website/pull/3373#issuecomment-1185739314) at 2022-07-15 10:10 AM PDT -clayton1111,2022-07-17T21:43:04Z,- clayton1111 pull request merged: [3373](https://github.com/hackforla/website/pull/3373#event-7007989707) at 2022-07-17 02:43 PM PDT -clayton1111,2022-07-18T17:14:55Z,- clayton1111 assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-926850763) at 2022-07-18 10:14 AM PDT -clayton1111,2022-07-18T17:15:48Z,- clayton1111 commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1187811250) at 2022-07-18 10:15 AM PDT -clayton1111,2022-07-20T15:07:54Z,- clayton1111 commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1190406064) at 2022-07-20 08:07 AM PDT -clayton1111,2022-07-27T22:29:23Z,- clayton1111 commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1197438771) at 2022-07-27 03:29 PM PDT -clayton1111,2022-07-28T18:14:53Z,- clayton1111 commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1198483596) at 2022-07-28 11:14 AM PDT -clayton1111,2022-07-28T18:15:15Z,- clayton1111 unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1198483596) at 2022-07-28 11:15 AM PDT -clayton1111,2022-07-28T18:39:20Z,- clayton1111 closed issue as completed: [3266](https://github.com/hackforla/website/issues/3266#event-7084043020) at 2022-07-28 11:39 AM PDT -clayton1111,2022-11-06T18:35:24Z,- clayton1111 unassigned from issue: [2112](https://github.com/hackforla/website/issues/2112#event-6964460687) at 2022-11-06 10:35 AM PST -clockwerkz,2020-09-17T22:28:40Z,- clockwerkz commented on issue: [735](https://github.com/hackforla/website/issues/735#issuecomment-694533442) at 2020-09-17 03:28 PM PDT -clockwerkz,2020-09-17T22:39:34Z,- clockwerkz commented on issue: [735](https://github.com/hackforla/website/issues/735#issuecomment-694537496) at 2020-09-17 03:39 PM PDT -Cloid,6599,SKILLS ISSUE -Cloid,2024-04-09T02:51:34Z,- Cloid opened issue: [6599](https://github.com/hackforla/website/issues/6599) at 2024-04-08 07:51 PM PDT -Cloid,2024-04-09T02:51:47Z,- Cloid assigned to issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2044060870) at 2024-04-08 07:51 PM PDT -Cloid,2024-04-10T18:15:46Z,- Cloid assigned to issue: [6124](https://github.com/hackforla/website/issues/6124) at 2024-04-10 11:15 AM PDT -Cloid,2024-04-11T17:14:12Z,- Cloid opened pull request: [6625](https://github.com/hackforla/website/pull/6625) at 2024-04-11 10:14 AM PDT -Cloid,2024-04-12T20:12:03Z,- Cloid commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2052460087) at 2024-04-12 01:12 PM PDT -Cloid,2024-04-15T05:20:48Z,- Cloid pull request closed w/o merging: [6625](https://github.com/hackforla/website/pull/6625#event-12463169351) at 2024-04-14 10:20 PM PDT -Cloid,2024-04-16T15:26:11Z,- Cloid opened pull request: [6657](https://github.com/hackforla/website/pull/6657) at 2024-04-16 08:26 AM PDT -Cloid,2024-04-18T22:20:19Z,- Cloid pull request merged: [6657](https://github.com/hackforla/website/pull/6657#event-12529832917) at 2024-04-18 03:20 PM PDT -Cloid,2024-04-19T05:37:22Z,- Cloid assigned to issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-2010637562) at 2024-04-18 10:37 PM PDT -Cloid,2024-04-21T00:27:34Z,- Cloid opened pull request: [6693](https://github.com/hackforla/website/pull/6693) at 2024-04-20 05:27 PM PDT -Cloid,2024-04-22T01:50:12Z,- Cloid pull request merged: [6693](https://github.com/hackforla/website/pull/6693#event-12552841587) at 2024-04-21 06:50 PM PDT -Cloid,2024-04-22T22:59:13Z,- Cloid assigned to issue: [6632](https://github.com/hackforla/website/issues/6632) at 2024-04-22 03:59 PM PDT -Cloid,2024-04-23T00:33:10Z,- Cloid opened pull request: [6711](https://github.com/hackforla/website/pull/6711) at 2024-04-22 05:33 PM PDT -Cloid,2024-04-25T19:07:06Z,- Cloid pull request merged: [6711](https://github.com/hackforla/website/pull/6711#event-12614116593) at 2024-04-25 12:07 PM PDT -Cloid,2024-04-26T16:13:46Z,- Cloid assigned to issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2076530348) at 2024-04-26 09:13 AM PDT -Cloid,2024-04-29T14:30:40Z,- Cloid commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2082906320) at 2024-04-29 07:30 AM PDT -Cloid,2024-05-01T20:36:54Z,- Cloid commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2089093123) at 2024-05-01 01:36 PM PDT -Cloid,2024-05-30T05:47:36Z,- Cloid commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2138728763) at 2024-05-29 10:47 PM PDT -Cloid,2024-05-30T06:04:30Z,- Cloid opened pull request: [6915](https://github.com/hackforla/website/pull/6915) at 2024-05-29 11:04 PM PDT -Cloid,2024-07-30T03:14:44Z,- Cloid commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2257376617) at 2024-07-29 08:14 PM PDT -Cloid,2024-08-08T19:35:31Z,- Cloid commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2276521972) at 2024-08-08 12:35 PM PDT -Cloid,2024-08-19T19:17:29Z,- Cloid pull request merged: [6915](https://github.com/hackforla/website/pull/6915#event-13934777273) at 2024-08-19 12:17 PM PDT -Cloid,2024-10-11T10:15:26Z,- Cloid commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2407094654) at 2024-10-11 03:15 AM PDT -Cloid,2024-10-11T10:28:47Z,- Cloid commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2407117010) at 2024-10-11 03:28 AM PDT -Cloid,2024-12-31T07:31:20Z,- Cloid commented on issue: [7790](https://github.com/hackforla/website/issues/7790#issuecomment-2566203453) at 2024-12-30 11:31 PM PST -Cloid,2024-12-31T07:31:26Z,- Cloid opened issue: [7814](https://github.com/hackforla/website/issues/7814) at 2024-12-30 11:31 PM PST -Cloid,2025-01-20T03:35:53Z,- Cloid commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2601255964) at 2025-01-19 07:35 PM PST -Cloid,2025-01-20T04:15:57Z,- Cloid commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2601293144) at 2025-01-19 08:15 PM PST -Cloid,2025-01-20T04:16:42Z,- Cloid submitted pull request review: [7832](https://github.com/hackforla/website/pull/7832#pullrequestreview-2561283481) at 2025-01-19 08:16 PM PST -Cloid,2025-01-20T04:29:39Z,- Cloid commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2601305215) at 2025-01-19 08:29 PM PST -Cloid,2025-01-30T21:19:36Z,- Cloid commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2625618173) at 2025-01-30 01:19 PM PST -Cloid,2025-01-30T21:59:21Z,- Cloid submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2585145439) at 2025-01-30 01:59 PM PST -Cloid,2025-01-31T05:30:49Z,- Cloid submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2585702016) at 2025-01-30 09:30 PM PST -Cloid,2025-01-31T06:18:25Z,- Cloid commented on pull request: [7861](https://github.com/hackforla/website/pull/7861#issuecomment-2626394979) at 2025-01-30 10:18 PM PST -Cloid,2025-01-31T06:30:20Z,- Cloid submitted pull request review: [7861](https://github.com/hackforla/website/pull/7861#pullrequestreview-2585768565) at 2025-01-30 10:30 PM PST -Cloid,2025-01-31T06:34:31Z,- Cloid commented on pull request: [7852](https://github.com/hackforla/website/pull/7852#issuecomment-2626413547) at 2025-01-30 10:34 PM PST -Cloid,2025-01-31T06:41:07Z,- Cloid submitted pull request review: [7852](https://github.com/hackforla/website/pull/7852#pullrequestreview-2585781078) at 2025-01-30 10:41 PM PST -Cloid,2025-01-31T06:51:29Z,- Cloid commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2626433760) at 2025-01-30 10:51 PM PST -Cloid,2025-01-31T06:58:43Z,- Cloid submitted pull request review: [7851](https://github.com/hackforla/website/pull/7851#pullrequestreview-2585815337) at 2025-01-30 10:58 PM PST -Cloid,2025-02-01T00:23:13Z,- Cloid commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2628611508) at 2025-01-31 04:23 PM PST -Cloid,2025-02-01T00:23:24Z,- Cloid submitted pull request review: [7817](https://github.com/hackforla/website/pull/7817#pullrequestreview-2588098192) at 2025-01-31 04:23 PM PST -Cloid,2025-02-03T01:57:11Z,- Cloid commented on pull request: [7871](https://github.com/hackforla/website/pull/7871#issuecomment-2629724059) at 2025-02-02 05:57 PM PST -Cloid,2025-02-03T02:01:17Z,- Cloid submitted pull request review: [7871](https://github.com/hackforla/website/pull/7871#pullrequestreview-2588751786) at 2025-02-02 06:01 PM PST -Cloid,2025-02-03T02:08:41Z,- Cloid commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2629736825) at 2025-02-02 06:08 PM PST -Cloid,2025-02-08T21:44:37Z,- Cloid submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2604054878) at 2025-02-08 01:44 PM PST -Cloid,2025-02-09T19:30:56Z,- Cloid commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2646551533) at 2025-02-09 11:30 AM PST -Cloid,2025-02-14T20:37:33Z,- Cloid commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2660219679) at 2025-02-14 12:37 PM PST -Cloid,2025-02-25T05:02:14Z,- Cloid opened issue: [7943](https://github.com/hackforla/website/issues/7943) at 2025-02-24 09:02 PM PST -Cloid,2025-02-25T05:34:18Z,- Cloid opened issue: [7944](https://github.com/hackforla/website/issues/7944) at 2025-02-24 09:34 PM PST -Cloid,2025-02-27T23:33:21Z,- Cloid opened issue: [7953](https://github.com/hackforla/website/issues/7953) at 2025-02-27 03:33 PM PST -Cloid,2025-02-27T23:37:05Z,- Cloid opened issue: [7954](https://github.com/hackforla/website/issues/7954) at 2025-02-27 03:37 PM PST -Cloid,2025-02-27T23:38:29Z,- Cloid opened issue: [7955](https://github.com/hackforla/website/issues/7955) at 2025-02-27 03:38 PM PST -Cloid,2025-02-27T23:40:04Z,- Cloid opened issue: [7956](https://github.com/hackforla/website/issues/7956) at 2025-02-27 03:40 PM PST -Cloid,2025-02-27T23:59:08Z,- Cloid opened issue: [7957](https://github.com/hackforla/website/issues/7957) at 2025-02-27 03:59 PM PST -Cloid,2025-02-28T03:51:50Z,- Cloid submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2649649621) at 2025-02-27 07:51 PM PST -Cloid,2025-02-28T15:56:18Z,- Cloid commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2691003814) at 2025-02-28 07:56 AM PST -Cloid,2025-03-10T19:31:50Z,- Cloid commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2711624114) at 2025-03-10 12:31 PM PDT -Cloid,2025-03-18T05:06:15Z,- Cloid commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731656385) at 2025-03-17 10:06 PM PDT -Cloid,2025-03-21T14:47:10Z,- Cloid commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2743585572) at 2025-03-21 07:47 AM PDT -Cloid,2025-03-21T19:40:11Z,- Cloid assigned to issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2148133017) at 2025-03-21 12:40 PM PDT -Cloid,2025-03-21T19:40:44Z,- Cloid commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2744290417) at 2025-03-21 12:40 PM PDT -Cloid,2025-03-25T19:25:15Z,- Cloid submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2714956910) at 2025-03-25 12:25 PM PDT -Cloid,2025-06-01T16:06:18Z,- Cloid unassigned from issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2845288490) at 2025-06-01 09:06 AM PDT -clydeautin,7692,SKILLS ISSUE -clydeautin,2024-11-05T03:06:39Z,- clydeautin opened issue: [7692](https://github.com/hackforla/website/issues/7692) at 2024-11-04 07:06 PM PST -clydeautin,2024-11-05T03:06:49Z,- clydeautin assigned to issue: [7692](https://github.com/hackforla/website/issues/7692) at 2024-11-04 07:06 PM PST -cmedina-dev,4317,SKILLS ISSUE -cmedina-dev,2023-03-29T03:25:06Z,- cmedina-dev opened issue: [4317](https://github.com/hackforla/website/issues/4317) at 2023-03-28 08:25 PM PDT -cmedina-dev,2023-03-29T03:25:23Z,- cmedina-dev assigned to issue: [4317](https://github.com/hackforla/website/issues/4317) at 2023-03-28 08:25 PM PDT -cmedina-dev,2023-04-10T20:28:04Z,- cmedina-dev assigned to issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1501248341) at 2023-04-10 01:28 PM PDT -cmedina-dev,2023-04-10T20:42:16Z,- cmedina-dev commented on issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1502294331) at 2023-04-10 01:42 PM PDT -cmedina-dev,2023-04-10T23:08:46Z,- cmedina-dev opened pull request: [4461](https://github.com/hackforla/website/pull/4461) at 2023-04-10 04:08 PM PDT -cmedina-dev,2023-04-10T23:13:49Z,- cmedina-dev commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1502455993) at 2023-04-10 04:13 PM PDT -cmedina-dev,2023-04-10T23:34:33Z,- cmedina-dev commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1502470795) at 2023-04-10 04:34 PM PDT -cmedina-dev,2023-04-10T23:39:16Z,- cmedina-dev commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1502473403) at 2023-04-10 04:39 PM PDT -cmedina-dev,2023-04-11T19:05:59Z,- cmedina-dev commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1503955522) at 2023-04-11 12:05 PM PDT -cmedina-dev,2023-04-12T03:00:27Z,- cmedina-dev opened issue: [4475](https://github.com/hackforla/website/issues/4475) at 2023-04-11 08:00 PM PDT -cmedina-dev,2023-04-13T03:15:54Z,- cmedina-dev pull request merged: [4461](https://github.com/hackforla/website/pull/4461#event-8992069857) at 2023-04-12 08:15 PM PDT -cmedina-dev,2023-04-13T05:05:20Z,- cmedina-dev assigned to issue: [4396](https://github.com/hackforla/website/issues/4396) at 2023-04-12 10:05 PM PDT -cmedina-dev,2023-04-13T05:06:31Z,- cmedina-dev commented on issue: [4396](https://github.com/hackforla/website/issues/4396#issuecomment-1506352254) at 2023-04-12 10:06 PM PDT -cmedina-dev,2023-04-14T01:37:31Z,- cmedina-dev opened pull request: [4511](https://github.com/hackforla/website/pull/4511) at 2023-04-13 06:37 PM PDT -cmedina-dev,2023-04-14T23:32:14Z,- cmedina-dev commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1509391005) at 2023-04-14 04:32 PM PDT -cmedina-dev,2023-04-15T00:37:33Z,- cmedina-dev submitted pull request review: [4518](https://github.com/hackforla/website/pull/4518#pullrequestreview-1386278944) at 2023-04-14 05:37 PM PDT -cmedina-dev,2023-04-15T01:24:44Z,- cmedina-dev submitted pull request review: [4519](https://github.com/hackforla/website/pull/4519#pullrequestreview-1386286107) at 2023-04-14 06:24 PM PDT -cmedina-dev,2023-04-15T15:24:09Z,- cmedina-dev submitted pull request review: [4519](https://github.com/hackforla/website/pull/4519#pullrequestreview-1386541154) at 2023-04-15 08:24 AM PDT -cmedina-dev,2023-04-15T15:31:09Z,- cmedina-dev commented on pull request: [4517](https://github.com/hackforla/website/pull/4517#issuecomment-1509872313) at 2023-04-15 08:31 AM PDT -cmedina-dev,2023-04-15T15:39:59Z,- cmedina-dev submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1386543755) at 2023-04-15 08:39 AM PDT -cmedina-dev,2023-04-16T15:29:31Z,- cmedina-dev submitted pull request review: [4521](https://github.com/hackforla/website/pull/4521#pullrequestreview-1386985884) at 2023-04-16 08:29 AM PDT -cmedina-dev,2023-04-18T16:10:09Z,- cmedina-dev commented on pull request: [4511](https://github.com/hackforla/website/pull/4511#issuecomment-1513441438) at 2023-04-18 09:10 AM PDT -cmedina-dev,2023-04-19T02:34:05Z,- cmedina-dev submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1391180027) at 2023-04-18 07:34 PM PDT -cmedina-dev,2023-04-19T03:42:24Z,- cmedina-dev pull request merged: [4511](https://github.com/hackforla/website/pull/4511#event-9041936133) at 2023-04-18 08:42 PM PDT -cng008,4319,SKILLS ISSUE -cng008,2023-03-29T03:29:30Z,- cng008 opened issue: [4319](https://github.com/hackforla/website/issues/4319) at 2023-03-28 08:29 PM PDT -cng008,2023-03-29T03:35:22Z,- cng008 assigned to issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1487895768) at 2023-03-28 08:35 PM PDT -cng008,2023-04-02T23:06:25Z,- cng008 assigned to issue: [4366](https://github.com/hackforla/website/issues/4366#issuecomment-1493273041) at 2023-04-02 04:06 PM PDT -cng008,2023-04-02T23:23:08Z,- cng008 commented on issue: [4366](https://github.com/hackforla/website/issues/4366#issuecomment-1493465679) at 2023-04-02 04:23 PM PDT -cng008,2023-04-03T00:09:19Z,- cng008 opened pull request: [4374](https://github.com/hackforla/website/pull/4374) at 2023-04-02 05:09 PM PDT -cng008,2023-04-03T18:29:38Z,- cng008 commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1494785927) at 2023-04-03 11:29 AM PDT -cng008,2023-04-03T18:42:07Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1494801431) at 2023-04-03 11:42 AM PDT -cng008,2023-04-04T00:51:01Z,- cng008 submitted pull request review: [4402](https://github.com/hackforla/website/pull/4402#pullrequestreview-1370004572) at 2023-04-03 05:51 PM PDT -cng008,2023-04-04T06:06:23Z,- cng008 commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1495400957) at 2023-04-03 11:06 PM PDT -cng008,2023-04-04T23:01:03Z,- cng008 pull request merged: [4374](https://github.com/hackforla/website/pull/4374#event-8929488250) at 2023-04-04 04:01 PM PDT -cng008,2023-04-04T23:24:28Z,- cng008 assigned to issue: [4358](https://github.com/hackforla/website/issues/4358) at 2023-04-04 04:24 PM PDT -cng008,2023-04-04T23:25:57Z,- cng008 commented on issue: [4358](https://github.com/hackforla/website/issues/4358#issuecomment-1496719138) at 2023-04-04 04:25 PM PDT -cng008,2023-04-04T23:52:43Z,- cng008 opened pull request: [4412](https://github.com/hackforla/website/pull/4412) at 2023-04-04 04:52 PM PDT -cng008,2023-04-07T03:59:06Z,- cng008 pull request merged: [4412](https://github.com/hackforla/website/pull/4412#event-8951284477) at 2023-04-06 08:59 PM PDT -cng008,2023-04-08T02:14:50Z,- cng008 assigned to issue: [4254](https://github.com/hackforla/website/issues/4254#issuecomment-1480465245) at 2023-04-07 07:14 PM PDT -cng008,2023-04-08T02:15:48Z,- cng008 commented on issue: [4254](https://github.com/hackforla/website/issues/4254#issuecomment-1500764574) at 2023-04-07 07:15 PM PDT -cng008,2023-04-08T02:53:59Z,- cng008 opened pull request: [4443](https://github.com/hackforla/website/pull/4443) at 2023-04-07 07:53 PM PDT -cng008,2023-04-10T00:47:38Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1501258943) at 2023-04-09 05:47 PM PDT -cng008,2023-04-11T08:05:05Z,- cng008 pull request merged: [4443](https://github.com/hackforla/website/pull/4443#event-8970540691) at 2023-04-11 01:05 AM PDT -cng008,2023-04-12T03:01:07Z,- cng008 opened issue: [4477](https://github.com/hackforla/website/issues/4477) at 2023-04-11 08:01 PM PDT -cng008,2023-04-12T15:33:30Z,- cng008 assigned to issue: [4253](https://github.com/hackforla/website/issues/4253#issuecomment-1480446659) at 2023-04-12 08:33 AM PDT -cng008,2023-04-12T15:34:36Z,- cng008 commented on issue: [4253](https://github.com/hackforla/website/issues/4253#issuecomment-1505485797) at 2023-04-12 08:34 AM PDT -cng008,2023-04-12T20:13:03Z,- cng008 opened pull request: [4495](https://github.com/hackforla/website/pull/4495) at 2023-04-12 01:13 PM PDT -cng008,2023-04-12T20:24:47Z,- cng008 submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1382064363) at 2023-04-12 01:24 PM PDT -cng008,2023-04-13T20:29:43Z,- cng008 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1507574430) at 2023-04-13 01:29 PM PDT -cng008,2023-04-14T01:28:04Z,- cng008 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1507803944) at 2023-04-13 06:28 PM PDT -cng008,2023-04-18T22:33:10Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1513869075) at 2023-04-18 03:33 PM PDT -cng008,2023-04-21T07:02:45Z,- cng008 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517362964) at 2023-04-21 12:02 AM PDT -cng008,2023-04-27T08:05:03Z,- cng008 pull request merged: [4495](https://github.com/hackforla/website/pull/4495#event-9111354757) at 2023-04-27 01:05 AM PDT -cng008,2023-05-04T00:56:01Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1533927051) at 2023-05-03 05:56 PM PDT -cng008,2023-05-10T03:07:57Z,- cng008 commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1541266617) at 2023-05-09 08:07 PM PDT -cng008,2023-05-10T20:42:16Z,- cng008 submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1421349990) at 2023-05-10 01:42 PM PDT -cng008,2023-05-12T03:01:22Z,- cng008 submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1423700703) at 2023-05-11 08:01 PM PDT -cng008,2023-05-15T22:57:53Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1548724039) at 2023-05-15 03:57 PM PDT -cng008,2023-05-21T19:25:40Z,- cng008 opened issue: [4705](https://github.com/hackforla/website/issues/4705) at 2023-05-21 12:25 PM PDT -cng008,2023-05-22T03:54:22Z,- cng008 opened issue: [4706](https://github.com/hackforla/website/issues/4706) at 2023-05-21 08:54 PM PDT -cng008,2023-05-22T22:51:53Z,- cng008 assigned to issue: [4705](https://github.com/hackforla/website/issues/4705) at 2023-05-22 03:51 PM PDT -cng008,2023-05-22T23:03:56Z,- cng008 commented on issue: [4705](https://github.com/hackforla/website/issues/4705#issuecomment-1558155493) at 2023-05-22 04:03 PM PDT -cng008,2023-05-23T03:55:06Z,- cng008 closed issue as completed: [4705](https://github.com/hackforla/website/issues/4705#event-9310581660) at 2023-05-22 08:55 PM PDT -cng008,2023-05-26T16:22:41Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1564633051) at 2023-05-26 09:22 AM PDT -cng008,2023-06-10T17:18:02Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1585742944) at 2023-06-10 10:18 AM PDT -cng008,2023-08-08T21:44:02Z,- cng008 closed issue as completed: [4319](https://github.com/hackforla/website/issues/4319#event-10040384996) at 2023-08-08 02:44 PM PDT -cnk,2020-01-19T19:34:23Z,- cnk assigned to issue: [228](https://github.com/hackforla/website/issues/228) at 2020-01-19 11:34 AM PST -cnk,2020-01-19T19:44:04Z,- cnk assigned to issue: [269](https://github.com/hackforla/website/issues/269) at 2020-01-19 11:44 AM PST -cnk,2020-01-21T01:01:29Z,- cnk opened pull request: [279](https://github.com/hackforla/website/pull/279) at 2020-01-20 05:01 PM PST -cnk,2020-01-21T01:02:18Z,- cnk pull request merged: [279](https://github.com/hackforla/website/pull/279#event-2964539834) at 2020-01-20 05:02 PM PST -cnk,2020-01-21T01:06:03Z,- cnk commented on issue: [269](https://github.com/hackforla/website/issues/269#issuecomment-576475683) at 2020-01-20 05:06 PM PST -cnk,2020-01-21T03:54:47Z,- cnk commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-576507476) at 2020-01-20 07:54 PM PST -cnk,2020-01-21T16:20:44Z,- cnk closed issue as completed: [269](https://github.com/hackforla/website/issues/269#event-2966857341) at 2020-01-21 08:20 AM PST -cnk,2020-01-27T22:49:07Z,- cnk assigned to issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-578534005) at 2020-01-27 02:49 PM PST -cnk,2020-02-05T03:14:51Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-582221400) at 2020-02-04 07:14 PM PST -cnk,2020-02-09T03:15:32Z,- cnk submitted pull request review: [300](https://github.com/hackforla/website/pull/300#pullrequestreview-355581008) at 2020-02-08 07:15 PM PST -cnk,2020-02-09T18:30:40Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-583877344) at 2020-02-09 10:30 AM PST -cnk,2020-02-09T19:29:45Z,- cnk commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-583883354) at 2020-02-09 11:29 AM PST -cnk,2020-02-09T20:09:27Z,- cnk opened issue: [304](https://github.com/hackforla/website/issues/304) at 2020-02-09 12:09 PM PST -cnk,2020-02-09T20:46:24Z,- cnk commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-583891244) at 2020-02-09 12:46 PM PST -cnk,2020-02-11T04:35:29Z,- cnk assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-584446021) at 2020-02-10 08:35 PM PST -cnk,2020-02-12T02:48:32Z,- cnk commented on issue: [304](https://github.com/hackforla/website/issues/304#issuecomment-584993198) at 2020-02-11 06:48 PM PST -cnk,2020-02-12T03:54:12Z,- cnk commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-585015065) at 2020-02-11 07:54 PM PST -cnk,2020-02-12T04:01:42Z,- cnk commented on issue: [302](https://github.com/hackforla/website/issues/302#issuecomment-585016780) at 2020-02-11 08:01 PM PST -cnk,2020-02-16T18:54:54Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-586740052) at 2020-02-16 10:54 AM PST -cnk,2020-02-16T18:57:14Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-586740311) at 2020-02-16 10:57 AM PST -cnk,2020-02-16T19:19:21Z,- cnk opened issue: [311](https://github.com/hackforla/website/issues/311) at 2020-02-16 11:19 AM PST -cnk,2020-02-19T04:52:55Z,- cnk opened pull request: [320](https://github.com/hackforla/website/pull/320) at 2020-02-18 08:52 PM PST -cnk,2020-02-19T04:56:36Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-588035631) at 2020-02-18 08:56 PM PST -cnk,2020-03-01T18:43:32Z,- cnk assigned to issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-590114601) at 2020-03-01 10:43 AM PST -cnk,2020-03-02T03:33:29Z,- cnk opened pull request: [334](https://github.com/hackforla/website/pull/334) at 2020-03-01 07:33 PM PST -cnk,2020-03-02T03:33:40Z,- cnk pull request merged: [334](https://github.com/hackforla/website/pull/334#event-3086286163) at 2020-03-01 07:33 PM PST -cnk,2020-03-02T03:36:27Z,- cnk opened pull request: [335](https://github.com/hackforla/website/pull/335) at 2020-03-01 07:36 PM PST -cnk,2020-03-02T04:06:51Z,- cnk commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-593208997) at 2020-03-01 08:06 PM PST -cnk,2020-03-02T04:08:59Z,- cnk commented on pull request: [320](https://github.com/hackforla/website/pull/320#issuecomment-593209365) at 2020-03-01 08:08 PM PST -cnk,2020-03-02T04:08:59Z,- cnk pull request closed w/o merging: [320](https://github.com/hackforla/website/pull/320#event-3086339640) at 2020-03-01 08:08 PM PST -cnk,2020-03-02T05:09:55Z,- cnk pull request merged: [335](https://github.com/hackforla/website/pull/335#event-3086431014) at 2020-03-01 09:09 PM PST -cnk,2020-03-02T05:54:21Z,- cnk opened pull request: [336](https://github.com/hackforla/website/pull/336) at 2020-03-01 09:54 PM PST -cnk,2020-03-02T05:54:37Z,- cnk pull request merged: [336](https://github.com/hackforla/website/pull/336#event-3086513091) at 2020-03-01 09:54 PM PST -cnk,2020-03-02T05:55:31Z,- cnk commented on pull request: [317](https://github.com/hackforla/website/pull/317#issuecomment-593233547) at 2020-03-01 09:55 PM PST -cnk,2020-03-03T02:42:00Z,- cnk reopened pull request: [310](https://github.com/hackforla/website/pull/310#event-3028954963) at 2020-03-02 06:42 PM PST -cnk,2020-03-03T03:17:13Z,- cnk opened pull request: [341](https://github.com/hackforla/website/pull/341) at 2020-03-02 07:17 PM PST -cnk,2020-03-03T03:23:19Z,- cnk commented on pull request: [310](https://github.com/hackforla/website/pull/310#issuecomment-593747421) at 2020-03-02 07:23 PM PST -cnk,2020-03-03T03:24:51Z,- cnk commented on pull request: [315](https://github.com/hackforla/website/pull/315#issuecomment-593747804) at 2020-03-02 07:24 PM PST -cnk,2020-03-03T21:15:07Z,- cnk opened pull request: [343](https://github.com/hackforla/website/pull/343) at 2020-03-03 01:15 PM PST -cnk,2020-03-04T01:05:51Z,- cnk pull request merged: [343](https://github.com/hackforla/website/pull/343#event-3094499702) at 2020-03-03 05:05 PM PST -cnk,2020-03-04T02:43:04Z,- cnk opened pull request: [345](https://github.com/hackforla/website/pull/345) at 2020-03-03 06:43 PM PST -cnk,2020-03-04T02:43:13Z,- cnk pull request merged: [345](https://github.com/hackforla/website/pull/345#event-3094754222) at 2020-03-03 06:43 PM PST -cnk,2020-03-04T03:00:37Z,- cnk assigned to issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-593677710) at 2020-03-03 07:00 PM PST -cnk,2020-03-04T03:29:31Z,- cnk commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-594306649) at 2020-03-03 07:29 PM PST -cnk,2020-03-04T04:11:24Z,- cnk opened issue: [346](https://github.com/hackforla/website/issues/346) at 2020-03-03 08:11 PM PST -cnk,2020-03-04T04:19:17Z,- cnk opened pull request: [348](https://github.com/hackforla/website/pull/348) at 2020-03-03 08:19 PM PST -cnk,2020-03-04T04:21:48Z,- cnk pull request merged: [348](https://github.com/hackforla/website/pull/348#event-3094922960) at 2020-03-03 08:21 PM PST -cnk,2020-03-04T04:22:40Z,- cnk closed issue by PR 341: [303](https://github.com/hackforla/website/issues/303#event-3094924286) at 2020-03-03 08:22 PM PST -cnk,2020-03-04T04:22:40Z,- cnk pull request merged: [341](https://github.com/hackforla/website/pull/341#event-3094924288) at 2020-03-03 08:22 PM PST -cnk,2020-03-04T04:26:45Z,- cnk commented on pull request: [341](https://github.com/hackforla/website/pull/341#issuecomment-594319869) at 2020-03-03 08:26 PM PST -cnk,2020-03-04T04:41:03Z,- cnk commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-594323221) at 2020-03-03 08:41 PM PST -cnk,2020-03-05T03:35:15Z,- cnk opened pull request: [350](https://github.com/hackforla/website/pull/350) at 2020-03-04 07:35 PM PST -cnk,2020-03-05T03:40:24Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-595012348) at 2020-03-04 07:40 PM PST -cnk,2020-03-05T03:40:25Z,- cnk closed issue as completed: [282](https://github.com/hackforla/website/issues/282#event-3099546783) at 2020-03-04 07:40 PM PST -cnk,2020-03-05T04:24:45Z,- cnk closed issue by PR 350: [288](https://github.com/hackforla/website/issues/288#event-3099614235) at 2020-03-04 08:24 PM PST -cnk,2020-03-05T04:24:45Z,- cnk pull request merged: [350](https://github.com/hackforla/website/pull/350#event-3099614244) at 2020-03-04 08:24 PM PST -cnk,2020-03-06T17:33:42Z,- cnk opened pull request: [353](https://github.com/hackforla/website/pull/353) at 2020-03-06 09:33 AM PST -cnk,2020-03-06T21:34:54Z,- cnk commented on issue: [304](https://github.com/hackforla/website/issues/304#issuecomment-595974980) at 2020-03-06 01:34 PM PST -cnk,2020-03-08T16:28:06Z,- cnk commented on issue: [352](https://github.com/hackforla/website/issues/352#issuecomment-596223845) at 2020-03-08 09:28 AM PDT -cnk,2020-03-08T17:49:01Z,- cnk pull request merged: [353](https://github.com/hackforla/website/pull/353#event-3108584245) at 2020-03-08 10:49 AM PDT -cnk,2020-03-08T17:58:54Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-596232831) at 2020-03-08 10:58 AM PDT -cnk,2020-03-08T18:05:35Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-596233467) at 2020-03-08 11:05 AM PDT -cnk,2020-03-08T18:06:28Z,- cnk assigned to issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-596233467) at 2020-03-08 11:06 AM PDT -cnk,2020-03-09T00:55:23Z,- cnk commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596275478) at 2020-03-08 05:55 PM PDT -cnk,2020-03-09T03:19:11Z,- cnk opened pull request: [354](https://github.com/hackforla/website/pull/354) at 2020-03-08 08:19 PM PDT -cnk,2020-03-09T03:22:10Z,- cnk commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596313516) at 2020-03-08 08:22 PM PDT -cnk,2020-03-10T21:24:01Z,- cnk pull request merged: [354](https://github.com/hackforla/website/pull/354#event-3116509344) at 2020-03-10 02:24 PM PDT -cnk,2020-03-11T07:12:35Z,- cnk commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-597478604) at 2020-03-11 12:12 AM PDT -cnk,2020-03-15T03:21:09Z,- cnk commented on pull request: [363](https://github.com/hackforla/website/pull/363#issuecomment-599162510) at 2020-03-14 08:21 PM PDT -cnk,2020-03-15T03:26:26Z,- cnk commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-14 08:26 PM PDT -cnk,2020-03-15T03:31:24Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-599163118) at 2020-03-14 08:31 PM PDT -cnk,2020-03-15T04:11:47Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-599165542) at 2020-03-14 09:11 PM PDT -cnk,2020-03-15T06:18:35Z,- cnk commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-599173019) at 2020-03-14 11:18 PM PDT -cnk,2020-03-15T17:11:27Z,- cnk opened issue: [367](https://github.com/hackforla/website/issues/367) at 2020-03-15 10:11 AM PDT -cnk,2020-03-15T17:56:01Z,- cnk opened issue: [368](https://github.com/hackforla/website/issues/368) at 2020-03-15 10:56 AM PDT -cnk,2020-03-15T18:02:43Z,- cnk commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:02 AM PDT -cnk,2020-03-15T18:14:00Z,- cnk assigned to issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -cnk,2020-03-15T18:14:07Z,- cnk assigned to issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-15 11:14 AM PDT -cnk,2020-03-15T18:14:17Z,- cnk unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -cnk,2020-03-15T18:14:17Z,- cnk unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -cnk,2020-03-16T02:57:24Z,- cnk commented on pull request: [369](https://github.com/hackforla/website/pull/369#issuecomment-599321945) at 2020-03-15 07:57 PM PDT -cnk,2020-03-22T17:14:45Z,- cnk opened issue: [384](https://github.com/hackforla/website/issues/384) at 2020-03-22 10:14 AM PDT -cnk,2020-03-22T17:47:26Z,- cnk opened issue: [385](https://github.com/hackforla/website/issues/385) at 2020-03-22 10:47 AM PDT -cnk,2020-03-22T17:47:30Z,- cnk assigned to issue: [385](https://github.com/hackforla/website/issues/385) at 2020-03-22 10:47 AM PDT -cnk,2020-03-22T17:56:30Z,- cnk commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-602247393) at 2020-03-22 10:56 AM PDT -cnk,2020-03-22T18:07:38Z,- cnk opened issue: [386](https://github.com/hackforla/website/issues/386) at 2020-03-22 11:07 AM PDT -cnk,2020-03-29T19:24:22Z,- cnk commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-605686463) at 2020-03-29 12:24 PM PDT -cnk,2020-04-05T17:26:11Z,- cnk unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -cnk,2020-04-05T18:47:55Z,- cnk opened issue: [413](https://github.com/hackforla/website/issues/413) at 2020-04-05 11:47 AM PDT -cnk,2020-04-05T18:48:06Z,- cnk assigned to issue: [413](https://github.com/hackforla/website/issues/413) at 2020-04-05 11:48 AM PDT -cnk,2020-04-10T05:41:41Z,- cnk commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-09 10:41 PM PDT -cnk,2020-04-11T04:14:56Z,- cnk opened pull request: [422](https://github.com/hackforla/website/pull/422) at 2020-04-10 09:14 PM PDT -cnk,2020-04-12T04:27:06Z,- cnk commented on issue: [402](https://github.com/hackforla/website/issues/402#issuecomment-612562561) at 2020-04-11 09:27 PM PDT -cnk,2020-04-12T04:27:06Z,- cnk reopened issue: [402](https://github.com/hackforla/website/issues/402#issuecomment-612562561) at 2020-04-11 09:27 PM PDT -cnk,2020-04-12T17:09:32Z,- cnk assigned to issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-12 10:09 AM PDT -cnk,2020-04-12T17:17:46Z,- cnk closed issue by PR 422: [413](https://github.com/hackforla/website/issues/413#event-3225282994) at 2020-04-12 10:17 AM PDT -cnk,2020-04-12T17:17:46Z,- cnk pull request merged: [422](https://github.com/hackforla/website/pull/422#event-3225282996) at 2020-04-12 10:17 AM PDT -cnk,2020-04-12T17:59:15Z,- cnk unassigned from issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-612653514) at 2020-04-12 10:59 AM PDT -cnk,2020-04-12T18:00:25Z,- cnk opened issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-12 11:00 AM PDT -cnk,2020-04-12T18:02:02Z,- cnk opened pull request: [426](https://github.com/hackforla/website/pull/426) at 2020-04-12 11:02 AM PDT -cnk,2020-04-12T18:02:36Z,- cnk opened pull request: [427](https://github.com/hackforla/website/pull/427) at 2020-04-12 11:02 AM PDT -cnk,2020-04-12T18:04:23Z,- cnk commented on pull request: [427](https://github.com/hackforla/website/pull/427#issuecomment-612654164) at 2020-04-12 11:04 AM PDT -cnk,2020-04-12T18:06:27Z,- cnk opened pull request: [428](https://github.com/hackforla/website/pull/428) at 2020-04-12 11:06 AM PDT -cnk,2020-04-12T19:39:44Z,- cnk assigned to issue: [429](https://github.com/hackforla/website/issues/429) at 2020-04-12 12:39 PM PDT -cnk,2020-04-12T20:42:12Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-612673174) at 2020-04-12 01:42 PM PDT -cnk,2020-04-12T21:10:31Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-612676425) at 2020-04-12 02:10 PM PDT -cnk,2020-04-13T00:42:07Z,- cnk commented on pull request: [433](https://github.com/hackforla/website/pull/433#issuecomment-612700993) at 2020-04-12 05:42 PM PDT -cnk,2020-04-13T02:42:21Z,- cnk closed issue by PR 426: [252](https://github.com/hackforla/website/issues/252#event-3225755868) at 2020-04-12 07:42 PM PDT -cnk,2020-04-13T02:42:22Z,- cnk pull request merged: [426](https://github.com/hackforla/website/pull/426#event-3225755869) at 2020-04-12 07:42 PM PDT -cnk,2020-04-13T02:43:07Z,- cnk pull request merged: [428](https://github.com/hackforla/website/pull/428#event-3225756979) at 2020-04-12 07:43 PM PDT -cnk,2020-04-13T16:08:12Z,- cnk assigned to issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T16:08:19Z,- cnk unassigned from issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T16:08:19Z,- cnk unassigned from issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T16:08:34Z,- cnk assigned to issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T19:23:23Z,- cnk commented on issue: [425](https://github.com/hackforla/website/issues/425#issuecomment-613053483) at 2020-04-13 12:23 PM PDT -cnk,2020-04-13T23:04:16Z,- cnk pull request merged: [427](https://github.com/hackforla/website/pull/427#event-3228861245) at 2020-04-13 04:04 PM PDT -cnk,2020-04-15T04:11:10Z,- cnk commented on pull request: [439](https://github.com/hackforla/website/pull/439#issuecomment-613805156) at 2020-04-14 09:11 PM PDT -cnk,2020-04-15T04:11:29Z,- cnk commented on pull request: [438](https://github.com/hackforla/website/pull/438#issuecomment-613805225) at 2020-04-14 09:11 PM PDT -cnk,2020-04-19T16:53:19Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-616181421) at 2020-04-19 09:53 AM PDT -cnk,2020-04-19T16:56:02Z,- cnk commented on issue: [425](https://github.com/hackforla/website/issues/425#issuecomment-616181980) at 2020-04-19 09:56 AM PDT -cnk,2020-04-19T17:50:48Z,- cnk commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-616194604) at 2020-04-19 10:50 AM PDT -cnk,2020-04-19T18:20:23Z,- cnk closed issue by PR 443: [425](https://github.com/hackforla/website/issues/425#event-3249336552) at 2020-04-19 11:20 AM PDT -cnk,2020-04-20T16:00:33Z,- cnk commented on pull request: [452](https://github.com/hackforla/website/pull/452#issuecomment-616647708) at 2020-04-20 09:00 AM PDT -cnk,2020-04-22T02:07:06Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-617503969) at 2020-04-21 07:07 PM PDT -cnk,2020-04-22T04:01:12Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-617535325) at 2020-04-21 09:01 PM PDT -cnk,2020-04-22T04:25:09Z,- cnk commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-617541264) at 2020-04-21 09:25 PM PDT -cnk,2020-04-22T04:30:54Z,- cnk opened pull request: [462](https://github.com/hackforla/website/pull/462) at 2020-04-21 09:30 PM PDT -cnk,2020-04-24T21:52:25Z,- cnk closed issue by PR 464: [463](https://github.com/hackforla/website/issues/463#event-3271149188) at 2020-04-24 02:52 PM PDT -cnk,2020-04-24T21:53:16Z,- cnk pull request merged: [462](https://github.com/hackforla/website/pull/462#event-3271150805) at 2020-04-24 02:53 PM PDT -cnk,2020-04-24T23:40:06Z,- cnk opened pull request: [465](https://github.com/hackforla/website/pull/465) at 2020-04-24 04:40 PM PDT -cnk,2020-04-24T23:40:12Z,- cnk pull request merged: [465](https://github.com/hackforla/website/pull/465#event-3271341444) at 2020-04-24 04:40 PM PDT -cnk,2020-04-26T17:07:59Z,- cnk assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-619575488) at 2020-04-26 10:07 AM PDT -cnk,2020-04-26T17:56:00Z,- cnk commented on issue: [466](https://github.com/hackforla/website/issues/466#issuecomment-619594952) at 2020-04-26 10:56 AM PDT -cnk,2020-04-26T17:56:00Z,- cnk closed issue as completed: [466](https://github.com/hackforla/website/issues/466#event-3273198682) at 2020-04-26 10:56 AM PDT -cnk,2020-04-26T21:33:50Z,- cnk commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619628473) at 2020-04-26 02:33 PM PDT -cnk,2020-04-28T23:06:55Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-620900800) at 2020-04-28 04:06 PM PDT -cnk,2020-04-30T05:42:18Z,- cnk opened pull request: [475](https://github.com/hackforla/website/pull/475) at 2020-04-29 10:42 PM PDT -cnk,2020-05-01T01:57:55Z,- cnk opened issue: [478](https://github.com/hackforla/website/issues/478) at 2020-04-30 06:57 PM PDT -cnk,2020-05-01T01:58:00Z,- cnk assigned to issue: [478](https://github.com/hackforla/website/issues/478) at 2020-04-30 06:58 PM PDT -cnk,2020-05-01T04:38:39Z,- cnk opened pull request: [479](https://github.com/hackforla/website/pull/479) at 2020-04-30 09:38 PM PDT -cnk,2020-05-01T04:39:38Z,- cnk pull request merged: [479](https://github.com/hackforla/website/pull/479#event-3292212846) at 2020-04-30 09:39 PM PDT -cnk,2020-05-01T04:39:55Z,- cnk pull request merged: [475](https://github.com/hackforla/website/pull/475#event-3292213276) at 2020-04-30 09:39 PM PDT -cnk,2020-05-01T04:56:46Z,- cnk commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-622248375) at 2020-04-30 09:56 PM PDT -cnk,2020-05-01T05:13:09Z,- cnk commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-622251882) at 2020-04-30 10:13 PM PDT -cnk,2020-05-01T15:40:05Z,- cnk commented on issue: [478](https://github.com/hackforla/website/issues/478#issuecomment-622439000) at 2020-05-01 08:40 AM PDT -cnk,2020-05-01T20:13:14Z,- cnk submitted pull request review: [480](https://github.com/hackforla/website/pull/480#pullrequestreview-404376253) at 2020-05-01 01:13 PM PDT -cnk,2020-05-03T18:03:12Z,- cnk assigned to issue: [477](https://github.com/hackforla/website/issues/477#issuecomment-623153799) at 2020-05-03 11:03 AM PDT -cnk,2020-05-03T22:20:50Z,- cnk opened pull request: [491](https://github.com/hackforla/website/pull/491) at 2020-05-03 03:20 PM PDT -cnk,2020-05-03T22:20:59Z,- cnk pull request merged: [491](https://github.com/hackforla/website/pull/491#event-3297898387) at 2020-05-03 03:20 PM PDT -cnk,2020-05-03T22:21:55Z,- cnk commented on pull request: [480](https://github.com/hackforla/website/pull/480#issuecomment-623191847) at 2020-05-03 03:21 PM PDT -cnk,2020-05-04T02:59:21Z,- cnk commented on issue: [477](https://github.com/hackforla/website/issues/477#issuecomment-623235750) at 2020-05-03 07:59 PM PDT -cnk,2020-05-04T02:59:21Z,- cnk closed issue as completed: [477](https://github.com/hackforla/website/issues/477#event-3298152009) at 2020-05-03 07:59 PM PDT -cnk,2020-05-04T23:09:56Z,- cnk opened issue: [494](https://github.com/hackforla/website/issues/494) at 2020-05-04 04:09 PM PDT -cnk,2020-05-05T16:18:36Z,- cnk commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-624153531) at 2020-05-05 09:18 AM PDT -cnk,2020-05-05T18:05:33Z,- cnk opened pull request: [495](https://github.com/hackforla/website/pull/495) at 2020-05-05 11:05 AM PDT -cnk,2020-05-06T03:10:01Z,- cnk commented on pull request: [495](https://github.com/hackforla/website/pull/495#issuecomment-624419226) at 2020-05-05 08:10 PM PDT -cnk,2020-05-06T03:12:45Z,- cnk opened issue: [496](https://github.com/hackforla/website/issues/496) at 2020-05-05 08:12 PM PDT -cnk,2020-05-06T03:13:07Z,- cnk assigned to issue: [496](https://github.com/hackforla/website/issues/496) at 2020-05-05 08:13 PM PDT -cnk,2020-05-06T03:19:51Z,- cnk opened issue: [497](https://github.com/hackforla/website/issues/497) at 2020-05-05 08:19 PM PDT -cnk,2020-05-06T03:29:49Z,- cnk opened pull request: [498](https://github.com/hackforla/website/pull/498) at 2020-05-05 08:29 PM PDT -cnk,2020-05-06T03:32:43Z,- cnk closed issue by PR 498: [496](https://github.com/hackforla/website/issues/496#event-3306766279) at 2020-05-05 08:32 PM PDT -cnk,2020-05-06T03:32:43Z,- cnk pull request merged: [498](https://github.com/hackforla/website/pull/498#event-3306766285) at 2020-05-05 08:32 PM PDT -cnk,2020-05-07T22:06:32Z,- cnk pull request merged: [495](https://github.com/hackforla/website/pull/495#event-3314831486) at 2020-05-07 03:06 PM PDT -cnk,2020-05-09T23:25:32Z,- cnk closed issue by PR 502: [501](https://github.com/hackforla/website/issues/501#event-3319832427) at 2020-05-09 04:25 PM PDT -cnk,2020-05-11T14:21:24Z,- cnk opened issue: [507](https://github.com/hackforla/website/issues/507) at 2020-05-11 07:21 AM PDT -cnk,2020-05-14T02:46:29Z,- cnk commented on pull request: [512](https://github.com/hackforla/website/pull/512#issuecomment-628353062) at 2020-05-13 07:46 PM PDT -cnk,2020-05-14T03:07:36Z,- cnk opened pull request: [513](https://github.com/hackforla/website/pull/513) at 2020-05-13 08:07 PM PDT -cnk,2020-05-14T05:14:50Z,- cnk pull request merged: [513](https://github.com/hackforla/website/pull/513#event-3334876670) at 2020-05-13 10:14 PM PDT -cnk,2020-05-14T23:10:13Z,- cnk commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-628933114) at 2020-05-14 04:10 PM PDT -cnk,2020-05-15T05:57:41Z,- cnk commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-629044159) at 2020-05-14 10:57 PM PDT -cnk,2020-05-15T20:23:24Z,- cnk opened issue: [520](https://github.com/hackforla/website/issues/520) at 2020-05-15 01:23 PM PDT -cnk,2020-05-16T00:38:04Z,- cnk commented on issue: [520](https://github.com/hackforla/website/issues/520#issuecomment-629561749) at 2020-05-15 05:38 PM PDT -cnk,2020-05-16T00:57:39Z,- cnk commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-629564623) at 2020-05-15 05:57 PM PDT -cnk,2020-05-17T16:53:36Z,- cnk closed issue by PR 523: [521](https://github.com/hackforla/website/issues/521#event-3344736257) at 2020-05-17 09:53 AM PDT -cnk,2020-05-17T17:50:39Z,- cnk assigned to issue: [507](https://github.com/hackforla/website/issues/507) at 2020-05-17 10:50 AM PDT -cnk,2020-05-17T18:09:14Z,- cnk assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-629754997) at 2020-05-17 11:09 AM PDT -cnk,2020-05-17T18:22:42Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-629839788) at 2020-05-17 11:22 AM PDT -cnk,2020-05-17T18:22:42Z,- cnk closed issue as completed: [429](https://github.com/hackforla/website/issues/429#event-3344805819) at 2020-05-17 11:22 AM PDT -cnk,2020-05-18T00:45:55Z,- cnk commented on pull request: [524](https://github.com/hackforla/website/pull/524#issuecomment-629889677) at 2020-05-17 05:45 PM PDT -cnk,2020-05-21T02:35:58Z,- cnk closed issue as completed: [520](https://github.com/hackforla/website/issues/520#event-3359011842) at 2020-05-20 07:35 PM PDT -cnk,2020-05-21T02:41:25Z,- cnk commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-631844548) at 2020-05-20 07:41 PM PDT -cnk,2020-05-24T16:58:48Z,- cnk unassigned from issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-24 09:58 AM PDT -cnk,2020-05-24T19:34:13Z,- cnk opened pull request: [537](https://github.com/hackforla/website/pull/537) at 2020-05-24 12:34 PM PDT -cnk,2020-05-24T19:37:54Z,- cnk pull request merged: [537](https://github.com/hackforla/website/pull/537#event-3368238818) at 2020-05-24 12:37 PM PDT -cnk,2020-05-25T15:33:39Z,- cnk opened issue: [541](https://github.com/hackforla/website/issues/541) at 2020-05-25 08:33 AM PDT -cnk,2020-05-25T15:37:12Z,- cnk closed issue by PR 540: [534](https://github.com/hackforla/website/issues/534#event-3370659523) at 2020-05-25 08:37 AM PDT -cnk,2020-05-27T17:06:29Z,- cnk submitted pull request review: [543](https://github.com/hackforla/website/pull/543#pullrequestreview-419435826) at 2020-05-27 10:06 AM PDT -cnk,2020-05-27T18:38:45Z,- cnk submitted pull request review: [543](https://github.com/hackforla/website/pull/543#pullrequestreview-419506315) at 2020-05-27 11:38 AM PDT -cnk,2020-05-30T20:03:44Z,- cnk closed issue by PR 543: [541](https://github.com/hackforla/website/issues/541#event-3390018164) at 2020-05-30 01:03 PM PDT -cnk,2020-05-30T20:39:06Z,- cnk opened issue: [547](https://github.com/hackforla/website/issues/547) at 2020-05-30 01:39 PM PDT -cnk,2020-05-30T21:54:23Z,- cnk opened pull request: [548](https://github.com/hackforla/website/pull/548) at 2020-05-30 02:54 PM PDT -cnk,2020-05-30T23:07:00Z,- cnk pull request merged: [548](https://github.com/hackforla/website/pull/548#event-3390135333) at 2020-05-30 04:07 PM PDT -cnk,2020-05-31T21:05:46Z,- cnk commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-636529892) at 2020-05-31 02:05 PM PDT -cnk,2020-05-31T22:24:20Z,- cnk opened pull request: [554](https://github.com/hackforla/website/pull/554) at 2020-05-31 03:24 PM PDT -cnk,2020-06-01T00:21:54Z,- cnk assigned to issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636554300) at 2020-05-31 05:21 PM PDT -cnk,2020-06-01T03:02:27Z,- cnk assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-31 08:02 PM PDT -cnk,2020-06-01T17:06:22Z,- cnk unassigned from issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636554300) at 2020-06-01 10:06 AM PDT -cnk,2020-06-01T17:08:38Z,- cnk commented on issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636991537) at 2020-06-01 10:08 AM PDT -cnk,2020-06-06T23:45:18Z,- cnk commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-640132892) at 2020-06-06 04:45 PM PDT -cnk,2020-06-07T03:11:52Z,- cnk commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-640150149) at 2020-06-06 08:11 PM PDT -cnk,2020-06-07T17:37:27Z,- cnk assigned to issue: [550](https://github.com/hackforla/website/issues/550) at 2020-06-07 10:37 AM PDT -cnk,2020-06-10T01:43:57Z,- cnk closed issue by PR 561: [556](https://github.com/hackforla/website/issues/556#event-3427451473) at 2020-06-09 06:43 PM PDT -cnk,2020-06-10T02:10:22Z,- cnk closed issue by PR 564: [533](https://github.com/hackforla/website/issues/533#event-3427499327) at 2020-06-09 07:10 PM PDT -cnk,2020-06-10T02:31:21Z,- cnk commented on pull request: [569](https://github.com/hackforla/website/pull/569#issuecomment-641682740) at 2020-06-09 07:31 PM PDT -cnk,2020-06-10T02:34:52Z,- cnk commented on pull request: [573](https://github.com/hackforla/website/pull/573#issuecomment-641683690) at 2020-06-09 07:34 PM PDT -cnk,2020-06-11T01:01:03Z,- cnk pull request merged: [554](https://github.com/hackforla/website/pull/554#event-3431990241) at 2020-06-10 06:01 PM PDT -cnk,2020-06-11T01:01:03Z,- cnk closed issue by PR 554: [550](https://github.com/hackforla/website/issues/550#event-3431990235) at 2020-06-10 06:01 PM PDT -cnk,2020-06-12T04:36:57Z,- cnk commented on pull request: [572](https://github.com/hackforla/website/pull/572#issuecomment-643060009) at 2020-06-11 09:36 PM PDT -cnk,2020-06-12T04:37:08Z,- cnk closed issue as completed: [547](https://github.com/hackforla/website/issues/547#event-3436866894) at 2020-06-11 09:37 PM PDT -cnk,2020-06-14T17:10:39Z,- cnk closed issue by PR 565: [503](https://github.com/hackforla/website/issues/503#event-3441867714) at 2020-06-14 10:10 AM PDT -cnk,2020-06-14T17:10:50Z,- cnk reopened issue: [503](https://github.com/hackforla/website/issues/503#event-3441867714) at 2020-06-14 10:10 AM PDT -cnk,2020-06-21T17:27:23Z,- cnk assigned to issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-647153287) at 2020-06-21 10:27 AM PDT -cnk,2020-06-21T19:42:13Z,- cnk submitted pull request review: [581](https://github.com/hackforla/website/pull/581#pullrequestreview-434527330) at 2020-06-21 12:42 PM PDT -cnk,2020-06-22T00:36:57Z,- cnk closed issue by PR 581: [558](https://github.com/hackforla/website/issues/558#event-3466004028) at 2020-06-21 05:36 PM PDT -cnk,2020-06-22T00:55:42Z,- cnk commented on pull request: [566](https://github.com/hackforla/website/pull/566#issuecomment-647209079) at 2020-06-21 05:55 PM PDT -cnk,2020-06-24T06:50:41Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-648629007) at 2020-06-23 11:50 PM PDT -cnk,2020-06-24T14:48:59Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-648868068) at 2020-06-24 07:48 AM PDT -cnk,2020-06-24T21:28:02Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-649082100) at 2020-06-24 02:28 PM PDT -cnk,2020-06-26T23:06:05Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-650442204) at 2020-06-26 04:06 PM PDT -cnk,2020-06-28T17:34:42Z,- cnk closed issue by PR 619: [254](https://github.com/hackforla/website/issues/254#event-3490525008) at 2020-06-28 10:34 AM PDT -cnk,2020-06-29T23:13:52Z,- cnk commented on pull request: [589](https://github.com/hackforla/website/pull/589#issuecomment-651416365) at 2020-06-29 04:13 PM PDT -cnk,2020-06-29T23:20:17Z,- cnk commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-651418304) at 2020-06-29 04:20 PM PDT -cnk,2020-06-30T02:47:13Z,- cnk closed issue by PR 590: [559](https://github.com/hackforla/website/issues/559#event-3495451988) at 2020-06-29 07:47 PM PDT -cnk,2020-07-04T18:52:12Z,- cnk closed issue by PR 592: [514](https://github.com/hackforla/website/issues/514#event-3512768147) at 2020-07-04 11:52 AM PDT -cnk,2020-07-05T17:59:25Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-653919386) at 2020-07-05 10:59 AM PDT -cnk,2020-07-11T12:46:47Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-657057881) at 2020-07-11 05:46 AM PDT -cnk,2020-07-20T02:26:39Z,- cnk commented on pull request: [619](https://github.com/hackforla/website/pull/619#issuecomment-660764619) at 2020-07-19 07:26 PM PDT -cnk,2020-07-22T14:34:14Z,- cnk commented on pull request: [624](https://github.com/hackforla/website/pull/624#issuecomment-662489523) at 2020-07-22 07:34 AM PDT -cnk,2020-07-22T14:38:17Z,- cnk commented on pull request: [566](https://github.com/hackforla/website/pull/566#issuecomment-662491707) at 2020-07-22 07:38 AM PDT -cnk,2020-07-22T17:18:23Z,- cnk opened issue: [628](https://github.com/hackforla/website/issues/628) at 2020-07-22 10:18 AM PDT -cnk,2020-07-26T18:44:35Z,- cnk opened pull request: [644](https://github.com/hackforla/website/pull/644) at 2020-07-26 11:44 AM PDT -cnk,2020-07-26T19:48:29Z,- cnk closed issue by PR 641: [562](https://github.com/hackforla/website/issues/562#event-3587355612) at 2020-07-26 12:48 PM PDT -cnk,2020-07-27T07:28:43Z,- cnk commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664170941) at 2020-07-27 12:28 AM PDT -cnk,2020-07-27T23:27:09Z,- cnk pull request merged: [644](https://github.com/hackforla/website/pull/644#event-3592001945) at 2020-07-27 04:27 PM PDT -cnk,2020-07-31T04:42:01Z,- cnk opened issue: [660](https://github.com/hackforla/website/issues/660) at 2020-07-30 09:42 PM PDT -cnk,2020-07-31T04:42:11Z,- cnk assigned to issue: [660](https://github.com/hackforla/website/issues/660) at 2020-07-30 09:42 PM PDT -cnk,2020-07-31T04:44:16Z,- cnk commented on issue: [660](https://github.com/hackforla/website/issues/660#issuecomment-666916248) at 2020-07-30 09:44 PM PDT -cnk,2020-07-31T04:53:49Z,- cnk opened pull request: [661](https://github.com/hackforla/website/pull/661) at 2020-07-30 09:53 PM PDT -cnk,2020-07-31T04:54:04Z,- cnk closed issue by PR 661: [660](https://github.com/hackforla/website/issues/660#event-3606855894) at 2020-07-30 09:54 PM PDT -cnk,2020-07-31T04:54:04Z,- cnk pull request merged: [661](https://github.com/hackforla/website/pull/661#event-3606855898) at 2020-07-30 09:54 PM PDT -cnk,2020-08-04T15:45:38Z,- cnk opened pull request: [668](https://github.com/hackforla/website/pull/668) at 2020-08-04 08:45 AM PDT -cnk,2020-08-04T15:46:02Z,- cnk pull request merged: [668](https://github.com/hackforla/website/pull/668#event-3620877447) at 2020-08-04 08:46 AM PDT -cnk,2020-08-16T23:10:30Z,- cnk assigned to issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-674549962) at 2020-08-16 04:10 PM PDT -cnk,2020-08-17T23:10:46Z,- cnk opened pull request: [686](https://github.com/hackforla/website/pull/686) at 2020-08-17 04:10 PM PDT -cnk,2020-08-17T23:11:54Z,- cnk commented on pull request: [686](https://github.com/hackforla/website/pull/686#issuecomment-675159712) at 2020-08-17 04:11 PM PDT -cnk,2020-08-17T23:11:54Z,- cnk pull request closed w/o merging: [686](https://github.com/hackforla/website/pull/686#event-3663930391) at 2020-08-17 04:11 PM PDT -cnk,2020-08-18T21:54:33Z,- cnk submitted pull request review: [685](https://github.com/hackforla/website/pull/685#pullrequestreview-469857605) at 2020-08-18 02:54 PM PDT -cnk,2020-08-22T21:17:08Z,- cnk closed issue by PR 694: [658](https://github.com/hackforla/website/issues/658#event-3682331980) at 2020-08-22 02:17 PM PDT -cnk,2020-08-22T21:23:37Z,- cnk opened pull request: [696](https://github.com/hackforla/website/pull/696) at 2020-08-22 02:23 PM PDT -cnk,2020-08-22T21:33:23Z,- cnk opened pull request: [697](https://github.com/hackforla/website/pull/697) at 2020-08-22 02:33 PM PDT -cnk,2020-08-22T22:00:22Z,- cnk assigned to issue: [692](https://github.com/hackforla/website/issues/692#issuecomment-675621229) at 2020-08-22 03:00 PM PDT -cnk,2020-08-22T22:40:19Z,- cnk commented on pull request: [697](https://github.com/hackforla/website/pull/697#issuecomment-678704019) at 2020-08-22 03:40 PM PDT -cnk,2020-08-23T18:41:40Z,- cnk pull request merged: [697](https://github.com/hackforla/website/pull/697#event-3683046953) at 2020-08-23 11:41 AM PDT -cnk,2020-08-23T18:54:23Z,- cnk assigned to issue: [698](https://github.com/hackforla/website/issues/698) at 2020-08-23 11:54 AM PDT -cnk,2020-08-23T19:58:35Z,- cnk submitted pull request review: [685](https://github.com/hackforla/website/pull/685#pullrequestreview-473037884) at 2020-08-23 12:58 PM PDT -cnk,2020-08-26T01:55:10Z,- cnk commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-680413478) at 2020-08-25 06:55 PM PDT -cnk,2020-08-30T18:38:28Z,- cnk unassigned from issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-683454932) at 2020-08-30 11:38 AM PDT -cnk,2020-09-03T00:36:49Z,- cnk opened pull request: [714](https://github.com/hackforla/website/pull/714) at 2020-09-02 05:36 PM PDT -cnk,2020-09-03T17:32:37Z,- cnk commented on pull request: [714](https://github.com/hackforla/website/pull/714#issuecomment-686642555) at 2020-09-03 10:32 AM PDT -cnk,2020-09-04T17:45:59Z,- cnk pull request merged: [714](https://github.com/hackforla/website/pull/714#event-3730887045) at 2020-09-04 10:45 AM PDT -cnk,2020-09-06T21:06:00Z,- cnk commented on issue: [688](https://github.com/hackforla/website/issues/688#issuecomment-687901562) at 2020-09-06 02:06 PM PDT -cnk,2020-09-06T22:08:54Z,- cnk opened pull request: [720](https://github.com/hackforla/website/pull/720) at 2020-09-06 03:08 PM PDT -cnk,2020-09-06T22:37:13Z,- cnk commented on pull request: [720](https://github.com/hackforla/website/pull/720#issuecomment-687921243) at 2020-09-06 03:37 PM PDT -cnk,2020-09-07T18:13:15Z,- cnk closed issue by PR 721: [571](https://github.com/hackforla/website/issues/571#event-3738110626) at 2020-09-07 11:13 AM PDT -cnk,2020-09-07T18:13:47Z,- cnk commented on pull request: [721](https://github.com/hackforla/website/pull/721#issuecomment-688462561) at 2020-09-07 11:13 AM PDT -cnk,2020-09-11T17:25:27Z,- cnk pull request merged: [720](https://github.com/hackforla/website/pull/720#event-3757273048) at 2020-09-11 10:25 AM PDT -cnk,2020-09-13T17:44:38Z,- cnk opened issue: [730](https://github.com/hackforla/website/issues/730) at 2020-09-13 10:44 AM PDT -cnk,2020-09-13T17:45:03Z,- cnk opened issue: [731](https://github.com/hackforla/website/issues/731) at 2020-09-13 10:45 AM PDT -cnk,2020-09-13T21:01:57Z,- cnk opened pull request: [732](https://github.com/hackforla/website/pull/732) at 2020-09-13 02:01 PM PDT -cnk,2020-09-16T19:02:18Z,- cnk pull request merged: [732](https://github.com/hackforla/website/pull/732#event-3774638874) at 2020-09-16 12:02 PM PDT -cnk,2020-09-18T17:28:15Z,- cnk commented on pull request: [736](https://github.com/hackforla/website/pull/736#issuecomment-694991893) at 2020-09-18 10:28 AM PDT -cnk,2020-09-18T18:32:49Z,- cnk opened pull request: [737](https://github.com/hackforla/website/pull/737) at 2020-09-18 11:32 AM PDT -cnk,2020-09-19T20:35:02Z,- cnk closed issue as completed: [703](https://github.com/hackforla/website/issues/703#event-3785510812) at 2020-09-19 01:35 PM PDT -cnk,2020-09-19T20:35:48Z,- cnk commented on pull request: [736](https://github.com/hackforla/website/pull/736#issuecomment-695353634) at 2020-09-19 01:35 PM PDT -cnk,2020-09-20T18:20:45Z,- cnk pull request merged: [737](https://github.com/hackforla/website/pull/737#event-3786299302) at 2020-09-20 11:20 AM PDT -cnk,2020-09-20T19:17:22Z,- cnk opened pull request: [741](https://github.com/hackforla/website/pull/741) at 2020-09-20 12:17 PM PDT -cnk,2020-09-20T19:18:56Z,- cnk commented on pull request: [741](https://github.com/hackforla/website/pull/741#issuecomment-695824947) at 2020-09-20 12:18 PM PDT -cnk,2020-09-25T00:41:03Z,- cnk pull request merged: [741](https://github.com/hackforla/website/pull/741#event-3805569897) at 2020-09-24 05:41 PM PDT -cnk,2020-09-27T02:57:50Z,- cnk submitted pull request review: [749](https://github.com/hackforla/website/pull/749#pullrequestreview-497045816) at 2020-09-26 07:57 PM PDT -cnk,2020-09-27T03:21:58Z,- cnk commented on pull request: [749](https://github.com/hackforla/website/pull/749#issuecomment-699579112) at 2020-09-26 08:21 PM PDT -cnk,2020-09-29T22:23:29Z,- cnk opened issue: [756](https://github.com/hackforla/website/issues/756) at 2020-09-29 03:23 PM PDT -cnk,2020-10-01T03:45:34Z,- cnk opened issue: [759](https://github.com/hackforla/website/issues/759) at 2020-09-30 08:45 PM PDT -cnk,2020-10-01T03:54:22Z,- cnk closed issue by PR 758: [748](https://github.com/hackforla/website/issues/748#event-3827357610) at 2020-09-30 08:54 PM PDT -cnk,2020-10-01T04:09:58Z,- cnk submitted pull request review: [757](https://github.com/hackforla/website/pull/757#pullrequestreview-499996011) at 2020-09-30 09:09 PM PDT -cnk,2020-10-02T01:01:24Z,- cnk commented on pull request: [757](https://github.com/hackforla/website/pull/757#issuecomment-702472922) at 2020-10-01 06:01 PM PDT -cnk,2020-10-16T00:47:22Z,- cnk closed issue by PR 779: [616](https://github.com/hackforla/website/issues/616#event-3884107086) at 2020-10-15 05:47 PM PDT -cnk,2020-10-16T02:11:18Z,- cnk opened pull request: [783](https://github.com/hackforla/website/pull/783) at 2020-10-15 07:11 PM PDT -cnk,2020-10-16T02:11:35Z,- cnk pull request merged: [783](https://github.com/hackforla/website/pull/783#event-3884258488) at 2020-10-15 07:11 PM PDT -cnk,2020-10-16T02:17:48Z,- cnk opened pull request: [784](https://github.com/hackforla/website/pull/784) at 2020-10-15 07:17 PM PDT -cnk,2020-10-16T02:17:55Z,- cnk pull request merged: [784](https://github.com/hackforla/website/pull/784#event-3884270972) at 2020-10-15 07:17 PM PDT -cnk,2020-10-17T21:49:37Z,- cnk commented on pull request: [783](https://github.com/hackforla/website/pull/783#issuecomment-711084602) at 2020-10-17 02:49 PM PDT -cnk,2020-10-28T02:42:39Z,- cnk pull request merged: [696](https://github.com/hackforla/website/pull/696#event-3929084394) at 2020-10-27 07:42 PM PDT -cnk,2020-12-06T07:50:02Z,- cnk opened pull request: [829](https://github.com/hackforla/website/pull/829) at 2020-12-05 11:50 PM PST -cnk,2020-12-06T07:51:14Z,- cnk assigned to issue: [657](https://github.com/hackforla/website/issues/657#issuecomment-735434450) at 2020-12-05 11:51 PM PST -cnk,2020-12-06T14:27:16Z,- cnk pull request merged: [829](https://github.com/hackforla/website/pull/829#event-4076656043) at 2020-12-06 06:27 AM PST -cnk,2021-01-13T02:53:02Z,- cnk assigned to issue: [934](https://github.com/hackforla/website/issues/934) at 2021-01-12 06:53 PM PST -cnk,2021-02-17T19:30:16Z,- cnk commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780797066) at 2021-02-17 11:30 AM PST -cnk,2021-02-21T17:29:22Z,- cnk commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782893388) at 2021-02-21 09:29 AM PST -cnk,2021-02-21T23:28:03Z,- cnk commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782949587) at 2021-02-21 03:28 PM PST -cnk,2021-02-22T20:26:36Z,- cnk commented on pull request: [1092](https://github.com/hackforla/website/pull/1092#issuecomment-783652485) at 2021-02-22 12:26 PM PST -cnk,2021-02-24T04:30:27Z,- cnk closed issue by PR 1095: [1093](https://github.com/hackforla/website/issues/1093#event-4368733281) at 2021-02-23 08:30 PM PST -cnk,2021-02-27T19:43:13Z,- cnk unassigned from issue: [657](https://github.com/hackforla/website/issues/657#event-4076656042) at 2021-02-27 11:43 AM PST -cnk,2021-03-04T23:37:38Z,- cnk commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791030657) at 2021-03-04 03:37 PM PST -cnk,2021-03-05T00:59:34Z,- cnk commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791064664) at 2021-03-04 04:59 PM PST -cnk,2021-03-19T17:32:57Z,- cnk submitted pull request review: [1260](https://github.com/hackforla/website/pull/1260#pullrequestreview-616644127) at 2021-03-19 10:32 AM PDT -cnk,2021-03-19T19:24:22Z,- cnk submitted pull request review: [1260](https://github.com/hackforla/website/pull/1260#pullrequestreview-616728573) at 2021-03-19 12:24 PM PDT -cnk,2021-03-19T19:26:06Z,- cnk opened issue: [1264](https://github.com/hackforla/website/issues/1264) at 2021-03-19 12:26 PM PDT -cnk,2021-03-19T19:28:27Z,- cnk opened issue: [1265](https://github.com/hackforla/website/issues/1265) at 2021-03-19 12:28 PM PDT -cnk,2021-03-19T19:34:10Z,- cnk closed issue by PR 1260: [1255](https://github.com/hackforla/website/issues/1255#event-4483960294) at 2021-03-19 12:34 PM PDT -cnk,2021-03-19T21:25:43Z,- cnk commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803142740) at 2021-03-19 02:25 PM PDT -cnk,2021-03-19T21:28:53Z,- cnk commented on issue: [1268](https://github.com/hackforla/website/issues/1268#issuecomment-803144062) at 2021-03-19 02:28 PM PDT -cnk,2021-03-19T21:33:41Z,- cnk commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803146299) at 2021-03-19 02:33 PM PDT -cnk,2021-03-20T20:31:47Z,- cnk commented on pull request: [1269](https://github.com/hackforla/website/pull/1269#issuecomment-803459170) at 2021-03-20 01:31 PM PDT -cnk,2021-03-20T20:34:35Z,- cnk commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803459483) at 2021-03-20 01:34 PM PDT -cnk,2021-03-21T17:25:54Z,- cnk commented on issue: [1274](https://github.com/hackforla/website/issues/1274#issuecomment-803627798) at 2021-03-21 10:25 AM PDT -cnk,2021-04-13T21:09:15Z,- cnk commented on pull request: [1387](https://github.com/hackforla/website/pull/1387#issuecomment-819056721) at 2021-04-13 02:09 PM PDT -cnk,2021-05-31T15:34:15Z,- cnk commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-851563483) at 2021-05-31 08:34 AM PDT -cnk,2021-08-01T05:45:40Z,- cnk commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890455741) at 2021-07-31 10:45 PM PDT -cnk,2021-08-17T15:58:13Z,- cnk commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-900421823) at 2021-08-17 08:58 AM PDT -coderight1,2024-09-12T10:31:28Z,- coderight1 opened pull request: [7444](https://github.com/hackforla/website/pull/7444) at 2024-09-12 03:31 AM PDT -coderight1,2024-09-12T16:54:09Z,- coderight1 pull request closed w/o merging: [7444](https://github.com/hackforla/website/pull/7444#event-14236171491) at 2024-09-12 09:54 AM PDT -codessi,2747,SKILLS ISSUE -codessi,2021-06-08T03:30:57Z,- codessi assigned to issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-06-07 08:30 PM PDT -codessi,2021-06-15T22:05:37Z,- codessi opened pull request: [1744](https://github.com/hackforla/website/pull/1744) at 2021-06-15 03:05 PM PDT -codessi,2021-06-23T17:43:21Z,- codessi pull request closed w/o merging: [1744](https://github.com/hackforla/website/pull/1744#event-4930331461) at 2021-06-23 10:43 AM PDT -codessi,2021-06-29T19:46:39Z,- codessi opened pull request: [1857](https://github.com/hackforla/website/pull/1857) at 2021-06-29 12:46 PM PDT -codessi,2021-07-02T16:43:38Z,- codessi commented on pull request: [1857](https://github.com/hackforla/website/pull/1857#issuecomment-873126853) at 2021-07-02 09:43 AM PDT -codessi,2021-07-02T16:44:12Z,- codessi pull request merged: [1857](https://github.com/hackforla/website/pull/1857#event-4972430755) at 2021-07-02 09:44 AM PDT -codessi,2022-02-08T03:23:19Z,- codessi opened issue: [2747](https://github.com/hackforla/website/issues/2747) at 2022-02-07 07:23 PM PST -codessi,2022-02-15T22:59:51Z,- codessi assigned to issue: [2747](https://github.com/hackforla/website/issues/2747#issuecomment-1032968237) at 2022-02-15 02:59 PM PST -codewithbharat,2023-01-27T05:07:34Z,- codewithbharat opened pull request: [3884](https://github.com/hackforla/website/pull/3884) at 2023-01-26 09:07 PM PST -codewithbharat,2023-01-28T17:27:55Z,- codewithbharat pull request closed w/o merging: [3884](https://github.com/hackforla/website/pull/3884#event-8380154685) at 2023-01-28 09:27 AM PST -coding-yost,6038,SKILLS ISSUE -coding-yost,2024-01-03T04:04:20Z,- coding-yost opened issue: [6038](https://github.com/hackforla/website/issues/6038) at 2024-01-02 08:04 PM PST -coding-yost,2024-01-03T04:04:33Z,- coding-yost assigned to issue: [6038](https://github.com/hackforla/website/issues/6038) at 2024-01-02 08:04 PM PST -coding-yost,2024-01-08T01:49:03Z,- coding-yost assigned to issue: [5709](https://github.com/hackforla/website/issues/5709#issuecomment-1763723604) at 2024-01-07 05:49 PM PST -coding-yost,2024-01-08T02:23:02Z,- coding-yost opened pull request: [6076](https://github.com/hackforla/website/pull/6076) at 2024-01-07 06:23 PM PST -coding-yost,2024-01-08T02:56:06Z,- coding-yost assigned to issue: [5982](https://github.com/hackforla/website/issues/5982) at 2024-01-07 06:56 PM PST -coding-yost,2024-01-08T03:04:13Z,- coding-yost unassigned from issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1880320764) at 2024-01-07 07:04 PM PST -coding-yost,2024-01-10T03:26:51Z,- coding-yost commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1884132479) at 2024-01-09 07:26 PM PST -coding-yost,2024-01-10T03:42:49Z,- coding-yost commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1884142951) at 2024-01-09 07:42 PM PST -coding-yost,2024-01-10T05:33:03Z,- coding-yost pull request merged: [6076](https://github.com/hackforla/website/pull/6076#event-11438670497) at 2024-01-09 09:33 PM PST -coding-yost,2025-02-07T20:01:37Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2644012266) at 2025-02-07 12:01 PM PST -coding-yost,2025-02-07T20:44:05Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2644090433) at 2025-02-07 12:44 PM PST -coding-yost,2025-02-07T21:06:36Z,- coding-yost assigned to issue: [7878](https://github.com/hackforla/website/issues/7878) at 2025-02-07 01:06 PM PST -coding-yost,2025-02-07T22:36:46Z,- coding-yost opened pull request: [7901](https://github.com/hackforla/website/pull/7901) at 2025-02-07 02:36 PM PST -coding-yost,2025-02-07T22:41:12Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2644261284) at 2025-02-07 02:41 PM PST -coding-yost,2025-02-08T23:58:40Z,- coding-yost commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2645988427) at 2025-02-08 03:58 PM PST -coding-yost,2025-02-10T00:39:29Z,- coding-yost commented on issue: [7878](https://github.com/hackforla/website/issues/7878#issuecomment-2646692688) at 2025-02-09 04:39 PM PST -coding-yost,2025-02-13T06:00:39Z,- coding-yost pull request merged: [7901](https://github.com/hackforla/website/pull/7901#event-16291002599) at 2025-02-12 10:00 PM PST -coding-yost,2025-02-14T18:25:57Z,- coding-yost assigned to issue: [7812](https://github.com/hackforla/website/issues/7812) at 2025-02-14 10:25 AM PST -coding-yost,2025-02-14T18:26:11Z,- coding-yost unassigned from issue: [7812](https://github.com/hackforla/website/issues/7812) at 2025-02-14 10:26 AM PST -coding-yost,2025-02-14T18:28:24Z,- coding-yost assigned to issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660002268) at 2025-02-14 10:28 AM PST -coding-yost,2025-02-14T18:28:37Z,- coding-yost unassigned from issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660002268) at 2025-02-14 10:28 AM PST -coding-yost,2025-02-14T18:45:53Z,- coding-yost assigned to issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2448143759) at 2025-02-14 10:45 AM PST -coding-yost,2025-02-14T18:57:08Z,- coding-yost opened pull request: [7910](https://github.com/hackforla/website/pull/7910) at 2025-02-14 10:57 AM PST -coding-yost,2025-02-14T19:09:22Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2660076228) at 2025-02-14 11:09 AM PST -coding-yost,2025-02-14T19:58:11Z,- coding-yost commented on issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2660156521) at 2025-02-14 11:58 AM PST -coding-yost,2025-02-15T00:04:13Z,- coding-yost submitted pull request review: [7908](https://github.com/hackforla/website/pull/7908#pullrequestreview-2619116435) at 2025-02-14 04:04 PM PST -coding-yost,2025-02-15T00:35:28Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2660573685) at 2025-02-14 04:35 PM PST -coding-yost,2025-02-16T23:09:53Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2661668471) at 2025-02-16 03:09 PM PST -coding-yost,2025-02-20T03:11:58Z,- coding-yost submitted pull request review: [7928](https://github.com/hackforla/website/pull/7928#pullrequestreview-2628615545) at 2025-02-19 07:11 PM PST -coding-yost,2025-02-23T03:38:05Z,- coding-yost submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2635403362) at 2025-02-22 07:38 PM PST -coding-yost,2025-02-23T04:04:36Z,- coding-yost submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2635406622) at 2025-02-22 08:04 PM PST -coding-yost,2025-02-23T04:09:15Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2676552571) at 2025-02-22 08:09 PM PST -coding-yost,2025-02-23T04:13:16Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2676556612) at 2025-02-22 08:13 PM PST -coding-yost,2025-02-23T04:13:55Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2676556780) at 2025-02-22 08:13 PM PST -coding-yost,2025-02-23T19:56:24Z,- coding-yost pull request merged: [7910](https://github.com/hackforla/website/pull/7910#event-16422324022) at 2025-02-23 11:56 AM PST -coding-yost,2025-02-23T21:34:25Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677128944) at 2025-02-23 01:34 PM PST -coding-yost,2025-02-23T21:37:15Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677129854) at 2025-02-23 01:37 PM PST -coding-yost,2025-02-23T21:49:18Z,- coding-yost submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2635768608) at 2025-02-23 01:49 PM PST -coding-yost,2025-02-23T21:53:17Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677135177) at 2025-02-23 01:53 PM PST -coding-yost,2025-02-24T02:35:45Z,- coding-yost submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2635928422) at 2025-02-23 06:35 PM PST -coding-yost,2025-02-24T02:40:47Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677323277) at 2025-02-23 06:40 PM PST -coding-yost,2025-02-24T02:43:31Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677325429) at 2025-02-23 06:43 PM PST -coding-yost,2025-02-24T02:49:51Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677330231) at 2025-02-23 06:49 PM PST -coding-yost,2025-02-26T03:26:42Z,- coding-yost submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2642950466) at 2025-02-25 07:26 PM PST -coding-yost,2025-03-01T18:56:54Z,- coding-yost submitted pull request review: [7951](https://github.com/hackforla/website/pull/7951#pullrequestreview-2652561094) at 2025-03-01 10:56 AM PST -coding-yost,2025-03-01T18:58:28Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2692366861) at 2025-03-01 10:58 AM PST -coding-yost,2025-03-01T21:13:25Z,- coding-yost submitted pull request review: [7950](https://github.com/hackforla/website/pull/7950#pullrequestreview-2652581011) at 2025-03-01 01:13 PM PST -coding-yost,2025-03-01T21:14:29Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2692422980) at 2025-03-01 01:14 PM PST -codinghorizons,4075,SKILLS ISSUE -codinghorizons,2023-03-01T04:38:03Z,- codinghorizons opened issue: [4075](https://github.com/hackforla/website/issues/4075) at 2023-02-28 08:38 PM PST -codinghorizons,2023-03-01T04:38:13Z,- codinghorizons assigned to issue: [4075](https://github.com/hackforla/website/issues/4075) at 2023-02-28 08:38 PM PST -codinghorizons,2023-03-06T03:03:18Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1455362978) at 2023-03-05 07:03 PM PST -codinghorizons,2023-03-27T06:02:41Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1484544013) at 2023-03-26 11:02 PM PDT -codinghorizons,2023-03-28T04:10:24Z,- codinghorizons assigned to issue: [3861](https://github.com/hackforla/website/issues/3861) at 2023-03-27 09:10 PM PDT -codinghorizons,2023-04-18T04:44:38Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1512426261) at 2023-04-17 09:44 PM PDT -codinghorizons,2023-05-07T03:57:54Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1537282503) at 2023-05-06 08:57 PM PDT -codinghorizons,2023-05-07T04:10:09Z,- codinghorizons assigned to issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1529109509) at 2023-05-06 09:10 PM PDT -codinghorizons,2023-05-07T04:13:15Z,- codinghorizons commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1537284582) at 2023-05-06 09:13 PM PDT -codinghorizons,2023-05-16T05:33:13Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1549016033) at 2023-05-15 10:33 PM PDT -codinghorizons,2023-05-22T04:33:23Z,- codinghorizons commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1556512419) at 2023-05-21 09:33 PM PDT -codinghorizons,2023-06-23T14:40:53Z,- codinghorizons unassigned from issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1594228537) at 2023-06-23 07:40 AM PDT -codinghorizons,2024-01-28T05:36:09Z,- codinghorizons unassigned from issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-01-27 09:36 PM PST -codyjohnsontx,7697,SKILLS ISSUE -codyjohnsontx,2024-11-05T04:09:26Z,- codyjohnsontx opened issue: [7697](https://github.com/hackforla/website/issues/7697) at 2024-11-04 08:09 PM PST -codyjohnsontx,2024-11-05T04:09:27Z,- codyjohnsontx assigned to issue: [7697](https://github.com/hackforla/website/issues/7697) at 2024-11-04 08:09 PM PST -codyjohnsontx,2024-11-05T04:39:03Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2456217833) at 2024-11-04 08:39 PM PST -codyjohnsontx,2024-11-13T02:25:14Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2472223072) at 2024-11-12 06:25 PM PST -codyjohnsontx,2024-11-13T02:26:07Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2472224266) at 2024-11-12 06:26 PM PST -codyjohnsontx,2024-11-13T19:38:02Z,- codyjohnsontx assigned to issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2351437951) at 2024-11-13 11:38 AM PST -codyjohnsontx,2024-11-13T20:29:46Z,- codyjohnsontx commented on issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2474722837) at 2024-11-13 12:29 PM PST -codyjohnsontx,2024-11-13T20:41:52Z,- codyjohnsontx opened pull request: [7718](https://github.com/hackforla/website/pull/7718) at 2024-11-13 12:41 PM PST -codyjohnsontx,2024-11-13T21:03:57Z,- codyjohnsontx commented on issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2474781638) at 2024-11-13 01:03 PM PST -codyjohnsontx,2024-11-14T23:34:24Z,- codyjohnsontx commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2477622998) at 2024-11-14 03:34 PM PST -codyjohnsontx,2024-11-17T17:26:15Z,- codyjohnsontx pull request merged: [7718](https://github.com/hackforla/website/pull/7718#event-15325553203) at 2024-11-17 09:26 AM PST -codyjohnsontx,2024-11-19T21:46:21Z,- codyjohnsontx assigned to issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2462764818) at 2024-11-19 01:46 PM PST -codyjohnsontx,2024-11-19T21:51:18Z,- codyjohnsontx commented on issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2486825514) at 2024-11-19 01:51 PM PST -codyjohnsontx,2024-11-19T22:36:24Z,- codyjohnsontx opened pull request: [7733](https://github.com/hackforla/website/pull/7733) at 2024-11-19 02:36 PM PST -codyjohnsontx,2024-11-20T17:30:31Z,- codyjohnsontx commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489179918) at 2024-11-20 09:30 AM PST -codyjohnsontx,2024-11-20T18:05:02Z,- codyjohnsontx commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489242714) at 2024-11-20 10:05 AM PST -codyjohnsontx,2024-11-20T20:44:43Z,- codyjohnsontx commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489509262) at 2024-11-20 12:44 PM PST -codyjohnsontx,2024-11-20T20:55:25Z,- codyjohnsontx submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2449680572) at 2024-11-20 12:55 PM PST -codyjohnsontx,2024-11-20T21:04:00Z,- codyjohnsontx commented on pull request: [7744](https://github.com/hackforla/website/pull/7744#issuecomment-2489538376) at 2024-11-20 01:04 PM PST -codyjohnsontx,2024-11-20T21:07:50Z,- codyjohnsontx submitted pull request review: [7744](https://github.com/hackforla/website/pull/7744#pullrequestreview-2449700249) at 2024-11-20 01:07 PM PST -codyjohnsontx,2024-11-21T21:51:09Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2492410764) at 2024-11-21 01:51 PM PST -codyjohnsontx,2024-11-21T21:54:22Z,- codyjohnsontx commented on pull request: [7733](https://github.com/hackforla/website/pull/7733#issuecomment-2492415836) at 2024-11-21 01:54 PM PST -codyjohnsontx,2024-11-21T21:58:33Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2492422494) at 2024-11-21 01:58 PM PST -codyjohnsontx,2024-11-21T22:00:34Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2492425500) at 2024-11-21 02:00 PM PST -codyjohnsontx,2024-11-22T05:41:04Z,- codyjohnsontx pull request merged: [7733](https://github.com/hackforla/website/pull/7733#event-15392413704) at 2024-11-21 09:41 PM PST -codyjohnsontx,2024-11-22T07:05:12Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493015523) at 2024-11-21 11:05 PM PST -codyjohnsontx,2024-11-22T07:08:19Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493019909) at 2024-11-21 11:08 PM PST -codyjohnsontx,2024-11-22T07:13:36Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493029103) at 2024-11-21 11:13 PM PST -codyjohnsontx,2024-11-22T07:16:44Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493034576) at 2024-11-21 11:16 PM PST -codyjohnsontx,2024-11-25T05:40:19Z,- codyjohnsontx commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2496909371) at 2024-11-24 09:40 PM PST -codyjohnsontx,2024-11-25T05:54:41Z,- codyjohnsontx submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2457244382) at 2024-11-24 09:54 PM PST -codyjohnsontx,2024-11-25T05:58:34Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2496931304) at 2024-11-24 09:58 PM PST -codyjohnsontx,2024-11-26T21:59:17Z,- codyjohnsontx commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2502020262) at 2024-11-26 01:59 PM PST -codyjohnsontx,2024-11-26T22:49:37Z,- codyjohnsontx submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462842096) at 2024-11-26 02:49 PM PST -codyjohnsontx,2024-11-26T22:50:47Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2502103683) at 2024-11-26 02:50 PM PST -codyjohnsontx,2024-12-09T15:50:17Z,- codyjohnsontx commented on pull request: [7798](https://github.com/hackforla/website/pull/7798#issuecomment-2528471065) at 2024-12-09 07:50 AM PST -codyjohnsontx,2024-12-10T04:22:58Z,- codyjohnsontx submitted pull request review: [7798](https://github.com/hackforla/website/pull/7798#pullrequestreview-2490928282) at 2024-12-09 08:22 PM PST -codyjohnsontx,2024-12-10T04:25:23Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2530287654) at 2024-12-09 08:25 PM PST -codyjohnsontx,2024-12-13T01:13:16Z,- codyjohnsontx assigned to issue: [7797](https://github.com/hackforla/website/issues/7797) at 2024-12-12 05:13 PM PST -codyjohnsontx,2024-12-13T01:13:31Z,- codyjohnsontx unassigned from issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2540323552) at 2024-12-12 05:13 PM PST -codyjohnsontx,2024-12-13T17:47:24Z,- codyjohnsontx assigned to issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2496203291) at 2024-12-13 09:47 AM PST -codyjohnsontx,2024-12-13T17:50:04Z,- codyjohnsontx commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2541960271) at 2024-12-13 09:50 AM PST -codyjohnsontx,2024-12-13T19:02:30Z,- codyjohnsontx opened pull request: [7803](https://github.com/hackforla/website/pull/7803) at 2024-12-13 11:02 AM PST -codyjohnsontx,2024-12-18T06:14:58Z,- codyjohnsontx pull request merged: [7803](https://github.com/hackforla/website/pull/7803#event-15698105778) at 2024-12-17 10:14 PM PST -codyjohnsontx,2024-12-18T19:09:47Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2552076130) at 2024-12-18 11:09 AM PST -codyjohnsontx,2024-12-18T19:11:15Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2552078761) at 2024-12-18 11:11 AM PST -codyjohnsontx,2025-01-08T05:51:31Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2576807525) at 2025-01-07 09:51 PM PST -codyjohnsontx,2025-03-25T22:47:00Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2752711601) at 2025-03-25 03:47 PM PDT -codyyjxn,7219,SKILLS ISSUE -codyyjxn,2024-08-06T04:00:13Z,- codyyjxn opened issue: [7219](https://github.com/hackforla/website/issues/7219) at 2024-08-05 09:00 PM PDT -codyyjxn,2024-08-06T04:01:15Z,- codyyjxn assigned to issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2270336082) at 2024-08-05 09:01 PM PDT -codyyjxn,2024-08-06T04:31:28Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2270360742) at 2024-08-05 09:31 PM PDT -codyyjxn,2024-08-06T04:43:46Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2270370930) at 2024-08-05 09:43 PM PDT -codyyjxn,2024-08-07T17:05:42Z,- codyyjxn assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2212632594) at 2024-08-07 10:05 AM PDT -codyyjxn,2024-08-07T17:26:43Z,- codyyjxn opened pull request: [7243](https://github.com/hackforla/website/pull/7243) at 2024-08-07 10:26 AM PDT -codyyjxn,2024-08-07T17:29:13Z,- codyyjxn commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2273973340) at 2024-08-07 10:29 AM PDT -codyyjxn,2024-08-07T17:34:14Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2273982289) at 2024-08-07 10:34 AM PDT -codyyjxn,2024-08-07T17:48:05Z,- codyyjxn commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2274005931) at 2024-08-07 10:48 AM PDT -codyyjxn,2024-08-08T01:24:21Z,- codyyjxn commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274726371) at 2024-08-07 06:24 PM PDT -codyyjxn,2024-08-08T03:25:18Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2274879949) at 2024-08-07 08:25 PM PDT -codyyjxn,2024-08-08T21:47:17Z,- codyyjxn commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2276706479) at 2024-08-08 02:47 PM PDT -codyyjxn,2024-08-08T23:54:30Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2276910963) at 2024-08-08 04:54 PM PDT -codyyjxn,2024-08-09T00:00:46Z,- codyyjxn closed issue as completed: [7095](https://github.com/hackforla/website/issues/7095#event-13814037573) at 2024-08-08 05:00 PM PDT -codyyjxn,2024-08-09T00:27:13Z,- codyyjxn assigned to issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2274874337) at 2024-08-08 05:27 PM PDT -codyyjxn,2024-08-09T00:30:42Z,- codyyjxn commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276942408) at 2024-08-08 05:30 PM PDT -codyyjxn,2024-08-09T03:38:29Z,- codyyjxn opened pull request: [7256](https://github.com/hackforla/website/pull/7256) at 2024-08-08 08:38 PM PDT -codyyjxn,2024-08-09T21:01:31Z,- codyyjxn commented on pull request: [7256](https://github.com/hackforla/website/pull/7256#issuecomment-2278751447) at 2024-08-09 02:01 PM PDT -codyyjxn,2024-08-10T20:27:34Z,- codyyjxn unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 01:27 PM PDT -codyyjxn,2024-08-10T20:31:14Z,- codyyjxn pull request closed w/o merging: [7243](https://github.com/hackforla/website/pull/7243#event-13829111226) at 2024-08-10 01:31 PM PDT -codyyjxn,2024-08-10T20:57:49Z,- codyyjxn pull request closed w/o merging: [7256](https://github.com/hackforla/website/pull/7256#event-13829252317) at 2024-08-10 01:57 PM PDT -codyyjxn,2024-08-10T21:32:04Z,- codyyjxn assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 02:32 PM PDT -codyyjxn,2024-08-10T21:32:19Z,- codyyjxn unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282282343) at 2024-08-10 02:32 PM PDT -codyyjxn,2024-08-10T21:34:24Z,- codyyjxn unassigned from issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276942408) at 2024-08-10 02:34 PM PDT -codyyjxn,2024-08-10T21:39:34Z,- codyyjxn assigned to issue: [7185](https://github.com/hackforla/website/issues/7185) at 2024-08-10 02:39 PM PDT -codyyjxn,2024-08-10T22:27:05Z,- codyyjxn opened pull request: [7264](https://github.com/hackforla/website/pull/7264) at 2024-08-10 03:27 PM PDT -codyyjxn,2024-08-13T03:25:53Z,- codyyjxn commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2285270402) at 2024-08-12 08:25 PM PDT -codyyjxn,2024-08-16T00:53:48Z,- codyyjxn commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2292526408) at 2024-08-15 05:53 PM PDT -codyyjxn,2024-08-19T23:52:18Z,- codyyjxn pull request closed w/o merging: [7264](https://github.com/hackforla/website/pull/7264#event-13937425858) at 2024-08-19 04:52 PM PDT -codyyjxn,2024-08-20T00:17:11Z,- codyyjxn opened pull request: [7320](https://github.com/hackforla/website/pull/7320) at 2024-08-19 05:17 PM PDT -codyyjxn,2024-08-20T00:24:41Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2297741729) at 2024-08-19 05:24 PM PDT -codyyjxn,2024-08-20T01:31:36Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2297795219) at 2024-08-19 06:31 PM PDT -codyyjxn,2024-08-20T18:05:43Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299443876) at 2024-08-20 11:05 AM PDT -codyyjxn,2024-08-20T18:14:48Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2299459081) at 2024-08-20 11:14 AM PDT -codyyjxn,2024-08-20T18:17:22Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2299463952) at 2024-08-20 11:17 AM PDT -codyyjxn,2024-08-20T18:24:00Z,- codyyjxn commented on issue: [7185](https://github.com/hackforla/website/issues/7185#issuecomment-2299475422) at 2024-08-20 11:24 AM PDT -codyyjxn,2024-08-20T21:06:16Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299765949) at 2024-08-20 02:06 PM PDT -codyyjxn,2024-08-20T22:42:06Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299881771) at 2024-08-20 03:42 PM PDT -codyyjxn,2024-08-21T02:51:37Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2300408484) at 2024-08-20 07:51 PM PDT -codyyjxn,2024-08-21T12:43:15Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2301963173) at 2024-08-21 05:43 AM PDT -codyyjxn,2024-08-22T06:09:06Z,- codyyjxn pull request merged: [7320](https://github.com/hackforla/website/pull/7320#event-13971783197) at 2024-08-21 11:09 PM PDT -codyyjxn,2024-08-22T16:59:00Z,- codyyjxn commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2305230662) at 2024-08-22 09:59 AM PDT -codyyjxn,2024-08-22T17:25:45Z,- codyyjxn submitted pull request review: [7309](https://github.com/hackforla/website/pull/7309#pullrequestreview-2255242909) at 2024-08-22 10:25 AM PDT -codyyjxn,2024-08-22T17:29:20Z,- codyyjxn unassigned from issue: [7185](https://github.com/hackforla/website/issues/7185#event-13971783358) at 2024-08-22 10:29 AM PDT -codyyjxn,2024-08-22T17:31:06Z,- codyyjxn assigned to issue: [7288](https://github.com/hackforla/website/issues/7288) at 2024-08-22 10:31 AM PDT -codyyjxn,2024-08-22T18:46:15Z,- codyyjxn opened pull request: [7342](https://github.com/hackforla/website/pull/7342) at 2024-08-22 11:46 AM PDT -codyyjxn,2024-08-22T22:10:08Z,- codyyjxn commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2305833782) at 2024-08-22 03:10 PM PDT -codyyjxn,2024-08-23T19:01:57Z,- codyyjxn commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2307651517) at 2024-08-23 12:01 PM PDT -codyyjxn,2024-08-23T19:02:54Z,- codyyjxn commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2307653005) at 2024-08-23 12:02 PM PDT -codyyjxn,2024-08-25T15:30:09Z,- codyyjxn pull request merged: [7342](https://github.com/hackforla/website/pull/7342#event-14004625408) at 2024-08-25 08:30 AM PDT -codyyjxn,2024-08-25T21:30:43Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2309001500) at 2024-08-25 02:30 PM PDT -codyyjxn,2024-08-25T21:39:02Z,- codyyjxn submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2259377723) at 2024-08-25 02:39 PM PDT -codyyjxn,2024-08-27T02:04:40Z,- codyyjxn submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2261950070) at 2024-08-26 07:04 PM PDT -codyyjxn,2024-08-27T02:09:50Z,- codyyjxn submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2261953859) at 2024-08-26 07:09 PM PDT -codyyjxn,2024-08-27T02:10:22Z,- codyyjxn commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2311432263) at 2024-08-26 07:10 PM PDT -codyyjxn,2024-08-27T02:10:31Z,- codyyjxn commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2311432385) at 2024-08-26 07:10 PM PDT -codyyjxn,2024-08-27T02:12:53Z,- codyyjxn commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2311434246) at 2024-08-26 07:12 PM PDT -codyyjxn,2024-08-27T02:16:22Z,- codyyjxn submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2261958816) at 2024-08-26 07:16 PM PDT -codyyjxn,2024-08-27T02:23:01Z,- codyyjxn submitted pull request review: [7298](https://github.com/hackforla/website/pull/7298#pullrequestreview-2261963937) at 2024-08-26 07:23 PM PDT -codyyjxn,2024-08-27T02:29:02Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311448245) at 2024-08-26 07:29 PM PDT -codyyjxn,2024-08-27T02:31:00Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311449964) at 2024-08-26 07:31 PM PDT -codyyjxn,2024-08-27T02:34:04Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311452601) at 2024-08-26 07:34 PM PDT -codyyjxn,2024-08-27T02:36:57Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311454947) at 2024-08-26 07:36 PM PDT -codyyjxn,2024-08-27T02:41:04Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311458554) at 2024-08-26 07:41 PM PDT -codyyjxn,2024-08-28T00:55:59Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2313878078) at 2024-08-27 05:55 PM PDT -codyyjxn,2024-08-28T00:58:02Z,- codyyjxn assigned to issue: [7282](https://github.com/hackforla/website/issues/7282) at 2024-08-27 05:58 PM PDT -codyyjxn,2024-08-28T01:06:40Z,- codyyjxn commented on issue: [7282](https://github.com/hackforla/website/issues/7282#issuecomment-2313886699) at 2024-08-27 06:06 PM PDT -codyyjxn,2024-08-28T01:35:02Z,- codyyjxn opened pull request: [7361](https://github.com/hackforla/website/pull/7361) at 2024-08-27 06:35 PM PDT -codyyjxn,2024-08-29T04:38:53Z,- codyyjxn commented on pull request: [7361](https://github.com/hackforla/website/pull/7361#issuecomment-2316700477) at 2024-08-28 09:38 PM PDT -codyyjxn,2024-08-29T22:17:02Z,- codyyjxn pull request merged: [7361](https://github.com/hackforla/website/pull/7361#event-14071090829) at 2024-08-29 03:17 PM PDT -codyyjxn,2024-08-30T00:36:46Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2319556203) at 2024-08-29 05:36 PM PDT -codyyjxn,2024-08-30T00:42:49Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2319565491) at 2024-08-29 05:42 PM PDT -codyyjxn,2024-08-30T00:48:29Z,- codyyjxn assigned to issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2282835716) at 2024-08-29 05:48 PM PDT -codyyjxn,2024-08-30T01:10:22Z,- codyyjxn opened issue: [7366](https://github.com/hackforla/website/issues/7366) at 2024-08-29 06:10 PM PDT -codyyjxn,2024-08-30T01:15:38Z,- codyyjxn commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2319612466) at 2024-08-29 06:15 PM PDT -codyyjxn,2024-09-02T21:06:18Z,- codyyjxn submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2276151933) at 2024-09-02 02:06 PM PDT -codyyjxn,2024-09-02T21:18:34Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2325308884) at 2024-09-02 02:18 PM PDT -codyyjxn,2024-09-02T21:24:04Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2325312110) at 2024-09-02 02:24 PM PDT -codyyjxn,2024-09-02T21:25:57Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2325313293) at 2024-09-02 02:25 PM PDT -codyyjxn,2024-09-02T22:50:41Z,- codyyjxn commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2325359555) at 2024-09-02 03:50 PM PDT -codyyjxn,2024-09-03T18:58:25Z,- codyyjxn opened issue: [7380](https://github.com/hackforla/website/issues/7380) at 2024-09-03 11:58 AM PDT -codyyjxn,2024-09-03T19:00:49Z,- codyyjxn opened issue: [7381](https://github.com/hackforla/website/issues/7381) at 2024-09-03 12:00 PM PDT -codyyjxn,2024-09-03T19:03:07Z,- codyyjxn opened issue: [7382](https://github.com/hackforla/website/issues/7382) at 2024-09-03 12:03 PM PDT -codyyjxn,2024-09-03T19:10:58Z,- codyyjxn commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2327234090) at 2024-09-03 12:10 PM PDT -codyyjxn,2024-09-03T20:29:47Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2327380441) at 2024-09-03 01:29 PM PDT -codyyjxn,2024-09-03T20:39:41Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2327396889) at 2024-09-03 01:39 PM PDT -codyyjxn,2024-09-05T16:11:42Z,- codyyjxn submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2283527428) at 2024-09-05 09:11 AM PDT -codyyjxn,2024-09-05T16:34:03Z,- codyyjxn submitted pull request review: [7385](https://github.com/hackforla/website/pull/7385#pullrequestreview-2283579403) at 2024-09-05 09:34 AM PDT -codyyjxn,2024-09-05T16:54:55Z,- codyyjxn submitted pull request review: [7375](https://github.com/hackforla/website/pull/7375#pullrequestreview-2283621671) at 2024-09-05 09:54 AM PDT -codyyjxn,2024-09-05T16:56:07Z,- codyyjxn submitted pull request review: [7375](https://github.com/hackforla/website/pull/7375#pullrequestreview-2283623972) at 2024-09-05 09:56 AM PDT -codyyjxn,2024-09-05T17:07:40Z,- codyyjxn assigned to issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2264084224) at 2024-09-05 10:07 AM PDT -codyyjxn,2024-09-05T17:13:09Z,- codyyjxn assigned to issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2259972530) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:13:27Z,- codyyjxn unassigned from issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:13:35Z,- codyyjxn assigned to issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:13:51Z,- codyyjxn unassigned from issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:54:15Z,- codyyjxn opened issue: [7393](https://github.com/hackforla/website/issues/7393) at 2024-09-05 10:54 AM PDT -codyyjxn,2024-09-05T17:56:37Z,- codyyjxn opened issue: [7394](https://github.com/hackforla/website/issues/7394) at 2024-09-05 10:56 AM PDT -codyyjxn,2024-09-05T18:01:43Z,- codyyjxn opened issue: [7395](https://github.com/hackforla/website/issues/7395) at 2024-09-05 11:01 AM PDT -codyyjxn,2024-09-05T18:03:11Z,- codyyjxn opened issue: [7396](https://github.com/hackforla/website/issues/7396) at 2024-09-05 11:03 AM PDT -codyyjxn,2024-09-05T18:04:49Z,- codyyjxn opened issue: [7397](https://github.com/hackforla/website/issues/7397) at 2024-09-05 11:04 AM PDT -codyyjxn,2024-09-05T18:05:23Z,- codyyjxn opened issue: [7398](https://github.com/hackforla/website/issues/7398) at 2024-09-05 11:05 AM PDT -codyyjxn,2024-09-05T18:05:51Z,- codyyjxn opened issue: [7399](https://github.com/hackforla/website/issues/7399) at 2024-09-05 11:05 AM PDT -codyyjxn,2024-09-05T18:06:38Z,- codyyjxn opened issue: [7400](https://github.com/hackforla/website/issues/7400) at 2024-09-05 11:06 AM PDT -codyyjxn,2024-09-05T18:17:11Z,- codyyjxn submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2283781435) at 2024-09-05 11:17 AM PDT -codyyjxn,2024-09-05T19:03:15Z,- codyyjxn commented on issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2332442991) at 2024-09-05 12:03 PM PDT -codyyjxn,2024-09-06T04:00:45Z,- codyyjxn submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2284620153) at 2024-09-05 09:00 PM PDT -codyyjxn,2024-09-06T15:50:02Z,- codyyjxn submitted pull request review: [7405](https://github.com/hackforla/website/pull/7405#pullrequestreview-2286617514) at 2024-09-06 08:50 AM PDT -codyyjxn,2024-09-06T21:42:20Z,- codyyjxn submitted pull request review: [7406](https://github.com/hackforla/website/pull/7406#pullrequestreview-2287196392) at 2024-09-06 02:42 PM PDT -codyyjxn,2024-09-07T19:52:19Z,- codyyjxn submitted pull request review: [7408](https://github.com/hackforla/website/pull/7408#pullrequestreview-2288364760) at 2024-09-07 12:52 PM PDT -codyyjxn,2024-09-09T01:43:18Z,- codyyjxn assigned to issue: [7412](https://github.com/hackforla/website/issues/7412) at 2024-09-08 06:43 PM PDT -codyyjxn,2024-09-09T01:45:01Z,- codyyjxn unassigned from issue: [7412](https://github.com/hackforla/website/issues/7412) at 2024-09-08 06:45 PM PDT -codyyjxn,2024-09-09T01:47:39Z,- codyyjxn assigned to issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2316647539) at 2024-09-08 06:47 PM PDT -codyyjxn,2024-09-09T01:47:56Z,- codyyjxn unassigned from issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2336956265) at 2024-09-08 06:47 PM PDT -codyyjxn,2024-09-09T22:16:49Z,- codyyjxn submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2291047646) at 2024-09-09 03:16 PM PDT -codyyjxn,2024-09-10T02:32:31Z,- codyyjxn assigned to issue: [7089](https://github.com/hackforla/website/issues/7089#issuecomment-2212528075) at 2024-09-09 07:32 PM PDT -codyyjxn,2024-09-10T03:11:55Z,- codyyjxn opened issue: [7429](https://github.com/hackforla/website/issues/7429) at 2024-09-09 08:11 PM PDT -codyyjxn,2024-09-10T17:48:21Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2341592262) at 2024-09-10 10:48 AM PDT -codyyjxn,2024-09-11T00:58:55Z,- codyyjxn submitted pull request review: [7436](https://github.com/hackforla/website/pull/7436#pullrequestreview-2294637279) at 2024-09-10 05:58 PM PDT -codyyjxn,2024-09-11T01:10:59Z,- codyyjxn submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2294684202) at 2024-09-10 06:10 PM PDT -codyyjxn,2024-09-12T01:03:58Z,- codyyjxn submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2299026222) at 2024-09-11 06:03 PM PDT -codyyjxn,2024-09-12T01:17:12Z,- codyyjxn commented on pull request: [7437](https://github.com/hackforla/website/pull/7437#issuecomment-2345064770) at 2024-09-11 06:17 PM PDT -codyyjxn,2024-09-12T01:20:26Z,- codyyjxn submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2299039475) at 2024-09-11 06:20 PM PDT -codyyjxn,2024-09-12T01:26:04Z,- codyyjxn submitted pull request review: [7437](https://github.com/hackforla/website/pull/7437#pullrequestreview-2299043610) at 2024-09-11 06:26 PM PDT -codyyjxn,2024-09-13T03:06:58Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2347949350) at 2024-09-12 08:06 PM PDT -codyyjxn,2024-09-13T03:08:07Z,- codyyjxn submitted pull request review: [7436](https://github.com/hackforla/website/pull/7436#pullrequestreview-2302041369) at 2024-09-12 08:08 PM PDT -codyyjxn,2024-09-13T03:09:45Z,- codyyjxn commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2347951316) at 2024-09-12 08:09 PM PDT -codyyjxn,2024-09-13T03:10:55Z,- codyyjxn assigned to issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2347949350) at 2024-09-12 08:10 PM PDT -codyyjxn,2024-09-13T23:54:50Z,- codyyjxn submitted pull request review: [7445](https://github.com/hackforla/website/pull/7445#pullrequestreview-2304313972) at 2024-09-13 04:54 PM PDT -codyyjxn,2024-09-14T01:07:55Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2350757952) at 2024-09-13 06:07 PM PDT -codyyjxn,2024-09-14T18:15:43Z,- codyyjxn submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2304971736) at 2024-09-14 11:15 AM PDT -codyyjxn,2024-09-14T21:25:57Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2351161002) at 2024-09-14 02:25 PM PDT -codyyjxn,2024-09-14T21:37:22Z,- codyyjxn submitted pull request review: [7447](https://github.com/hackforla/website/pull/7447#pullrequestreview-2305204944) at 2024-09-14 02:37 PM PDT -codyyjxn,2024-09-14T22:03:35Z,- codyyjxn submitted pull request review: [7446](https://github.com/hackforla/website/pull/7446#pullrequestreview-2305206907) at 2024-09-14 03:03 PM PDT -codyyjxn,2024-09-15T20:20:27Z,- codyyjxn submitted pull request review: [7461](https://github.com/hackforla/website/pull/7461#pullrequestreview-2305607103) at 2024-09-15 01:20 PM PDT -codyyjxn,2024-09-15T20:59:26Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2351789557) at 2024-09-15 01:59 PM PDT -codyyjxn,2024-09-18T00:57:26Z,- codyyjxn submitted pull request review: [7468](https://github.com/hackforla/website/pull/7468#pullrequestreview-2311406420) at 2024-09-17 05:57 PM PDT -codyyjxn,2024-09-18T00:58:59Z,- codyyjxn submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2311407475) at 2024-09-17 05:58 PM PDT -codyyjxn,2024-09-18T01:05:08Z,- codyyjxn submitted pull request review: [7463](https://github.com/hackforla/website/pull/7463#pullrequestreview-2311411632) at 2024-09-17 06:05 PM PDT -codyyjxn,2024-09-19T04:36:26Z,- codyyjxn submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2314385545) at 2024-09-18 09:36 PM PDT -codyyjxn,2024-09-20T00:51:04Z,- codyyjxn submitted pull request review: [7498](https://github.com/hackforla/website/pull/7498#pullrequestreview-2317002569) at 2024-09-19 05:51 PM PDT -codyyjxn,2024-09-20T00:51:42Z,- codyyjxn commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362499339) at 2024-09-19 05:51 PM PDT -codyyjxn,2024-09-20T01:27:29Z,- codyyjxn opened pull request: [7499](https://github.com/hackforla/website/pull/7499) at 2024-09-19 06:27 PM PDT -codyyjxn,2024-09-20T01:28:23Z,- codyyjxn pull request closed w/o merging: [7499](https://github.com/hackforla/website/pull/7499#event-14332439245) at 2024-09-19 06:28 PM PDT -codyyjxn,2024-09-20T20:34:01Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2364578704) at 2024-09-20 01:34 PM PDT -codyyjxn,2024-09-20T23:01:16Z,- codyyjxn opened pull request: [7501](https://github.com/hackforla/website/pull/7501) at 2024-09-20 04:01 PM PDT -codyyjxn,2024-09-21T20:32:26Z,- codyyjxn submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2319900282) at 2024-09-21 01:32 PM PDT -codyyjxn,2024-09-21T20:42:09Z,- codyyjxn submitted pull request review: [7504](https://github.com/hackforla/website/pull/7504#pullrequestreview-2319901161) at 2024-09-21 01:42 PM PDT -codyyjxn,2024-09-21T20:52:32Z,- codyyjxn submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2319901982) at 2024-09-21 01:52 PM PDT -codyyjxn,2024-09-23T16:56:57Z,- codyyjxn submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2322843045) at 2024-09-23 09:56 AM PDT -codyyjxn,2024-09-23T17:34:02Z,- codyyjxn submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2322912563) at 2024-09-23 10:34 AM PDT -codyyjxn,2024-09-23T20:15:39Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2369285029) at 2024-09-23 01:15 PM PDT -codyyjxn,2024-09-23T21:19:09Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2369412506) at 2024-09-23 02:19 PM PDT -codyyjxn,2024-09-24T00:23:04Z,- codyyjxn submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2323734760) at 2024-09-23 05:23 PM PDT -codyyjxn,2024-09-24T17:55:15Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2371944124) at 2024-09-24 10:55 AM PDT -codyyjxn,2024-09-24T19:52:22Z,- codyyjxn submitted pull request review: [7514](https://github.com/hackforla/website/pull/7514#pullrequestreview-2326304334) at 2024-09-24 12:52 PM PDT -codyyjxn,2024-09-24T21:13:55Z,- codyyjxn submitted pull request review: [7511](https://github.com/hackforla/website/pull/7511#pullrequestreview-2326492132) at 2024-09-24 02:13 PM PDT -codyyjxn,2024-09-26T04:39:39Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2375856353) at 2024-09-25 09:39 PM PDT -codyyjxn,2024-09-26T04:51:45Z,- codyyjxn submitted pull request review: [7523](https://github.com/hackforla/website/pull/7523#pullrequestreview-2330058985) at 2024-09-25 09:51 PM PDT -codyyjxn,2024-09-26T04:59:29Z,- codyyjxn submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2330066294) at 2024-09-25 09:59 PM PDT -codyyjxn,2024-09-27T02:50:43Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2378306888) at 2024-09-26 07:50 PM PDT -codyyjxn,2024-09-27T03:24:12Z,- codyyjxn submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2332678172) at 2024-09-26 08:24 PM PDT -codyyjxn,2024-09-27T03:41:57Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2378342579) at 2024-09-26 08:41 PM PDT -codyyjxn,2024-09-27T17:32:26Z,- codyyjxn commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2379754950) at 2024-09-27 10:32 AM PDT -codyyjxn,2024-09-27T17:44:11Z,- codyyjxn submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2334298145) at 2024-09-27 10:44 AM PDT -codyyjxn,2024-09-27T17:49:51Z,- codyyjxn commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2379780138) at 2024-09-27 10:49 AM PDT -codyyjxn,2024-09-27T18:01:32Z,- codyyjxn submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2334326849) at 2024-09-27 11:01 AM PDT -codyyjxn,2024-09-27T21:48:38Z,- codyyjxn commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2380127203) at 2024-09-27 02:48 PM PDT -codyyjxn,2024-09-27T21:53:30Z,- codyyjxn submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2334706813) at 2024-09-27 02:53 PM PDT -codyyjxn,2024-09-28T20:08:31Z,- codyyjxn submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2335407914) at 2024-09-28 01:08 PM PDT -codyyjxn,2024-09-30T02:31:59Z,- codyyjxn submitted pull request review: [7543](https://github.com/hackforla/website/pull/7543#pullrequestreview-2336229926) at 2024-09-29 07:31 PM PDT -codyyjxn,2024-09-30T02:32:26Z,- codyyjxn commented on pull request: [7543](https://github.com/hackforla/website/pull/7543#issuecomment-2381886558) at 2024-09-29 07:32 PM PDT -codyyjxn,2024-10-01T00:50:30Z,- codyyjxn submitted pull request review: [7546](https://github.com/hackforla/website/pull/7546#pullrequestreview-2338931026) at 2024-09-30 05:50 PM PDT -codyyjxn,2024-10-01T04:02:19Z,- codyyjxn commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2384738045) at 2024-09-30 09:02 PM PDT -codyyjxn,2024-10-02T03:40:46Z,- codyyjxn commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2387566419) at 2024-10-01 08:40 PM PDT -codyyjxn,2024-10-02T03:43:59Z,- codyyjxn submitted pull request review: [7554](https://github.com/hackforla/website/pull/7554#pullrequestreview-2341854085) at 2024-10-01 08:43 PM PDT -codyyjxn,2024-10-03T00:18:13Z,- codyyjxn commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2390221706) at 2024-10-02 05:18 PM PDT -codyyjxn,2024-10-03T00:22:52Z,- codyyjxn submitted pull request review: [7558](https://github.com/hackforla/website/pull/7558#pullrequestreview-2344429543) at 2024-10-02 05:22 PM PDT -codyyjxn,2024-10-04T02:49:38Z,- codyyjxn submitted pull request review: [7559](https://github.com/hackforla/website/pull/7559#pullrequestreview-2347000255) at 2024-10-03 07:49 PM PDT -codyyjxn,2024-10-04T16:41:40Z,- codyyjxn commented on pull request: [7560](https://github.com/hackforla/website/pull/7560#issuecomment-2394090252) at 2024-10-04 09:41 AM PDT -codyyjxn,2024-10-04T16:44:49Z,- codyyjxn submitted pull request review: [7560](https://github.com/hackforla/website/pull/7560#pullrequestreview-2348511580) at 2024-10-04 09:44 AM PDT -codyyjxn,2024-10-05T19:44:31Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2395170326) at 2024-10-05 12:44 PM PDT -codyyjxn,2024-10-05T19:53:35Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2395172589) at 2024-10-05 12:53 PM PDT -codyyjxn,2024-10-05T20:00:07Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2395174025) at 2024-10-05 01:00 PM PDT -codyyjxn,2024-10-05T20:03:59Z,- codyyjxn assigned to issue: [7540](https://github.com/hackforla/website/issues/7540) at 2024-10-05 01:03 PM PDT -codyyjxn,2024-10-05T20:06:29Z,- codyyjxn commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2395175805) at 2024-10-05 01:06 PM PDT -codyyjxn,2024-10-05T22:04:55Z,- codyyjxn opened issue: [7565](https://github.com/hackforla/website/issues/7565) at 2024-10-05 03:04 PM PDT -codyyjxn,2024-10-06T15:27:13Z,- codyyjxn assigned to issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395475289) at 2024-10-06 08:27 AM PDT -codyyjxn,2024-10-06T15:27:26Z,- codyyjxn unassigned from issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395478878) at 2024-10-06 08:27 AM PDT -codyyjxn,2024-10-06T15:28:31Z,- codyyjxn assigned to issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395478878) at 2024-10-06 08:28 AM PDT -codyyjxn,2024-10-08T01:40:11Z,- codyyjxn commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2398443435) at 2024-10-07 06:40 PM PDT -codyyjxn,2024-10-08T01:51:50Z,- codyyjxn submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2353214158) at 2024-10-07 06:51 PM PDT -codyyjxn,2024-10-08T02:04:23Z,- codyyjxn commented on pull request: [7568](https://github.com/hackforla/website/pull/7568#issuecomment-2398497191) at 2024-10-07 07:04 PM PDT -codyyjxn,2024-10-08T02:08:28Z,- codyyjxn submitted pull request review: [7568](https://github.com/hackforla/website/pull/7568#pullrequestreview-2353226735) at 2024-10-07 07:08 PM PDT -codyyjxn,2024-10-08T02:13:04Z,- codyyjxn submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2353230207) at 2024-10-07 07:13 PM PDT -codyyjxn,2024-10-08T03:19:53Z,- codyyjxn submitted pull request review: [7538](https://github.com/hackforla/website/pull/7538#pullrequestreview-2353290870) at 2024-10-07 08:19 PM PDT -codyyjxn,2024-10-08T15:57:18Z,- codyyjxn opened issue: [7577](https://github.com/hackforla/website/issues/7577) at 2024-10-08 08:57 AM PDT -codyyjxn,2024-10-08T16:01:57Z,- codyyjxn commented on issue: [7577](https://github.com/hackforla/website/issues/7577#issuecomment-2400245541) at 2024-10-08 09:01 AM PDT -codyyjxn,2024-10-09T16:08:21Z,- codyyjxn commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2402745098) at 2024-10-09 09:08 AM PDT -codyyjxn,2024-10-09T16:12:24Z,- codyyjxn submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2357611505) at 2024-10-09 09:12 AM PDT -codyyjxn,2024-10-09T23:19:50Z,- codyyjxn submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2358540209) at 2024-10-09 04:19 PM PDT -codyyjxn,2024-10-10T19:19:03Z,- codyyjxn submitted pull request review: [7579](https://github.com/hackforla/website/pull/7579#pullrequestreview-2361214739) at 2024-10-10 12:19 PM PDT -codyyjxn,2024-10-15T03:59:14Z,- codyyjxn submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2368106189) at 2024-10-14 08:59 PM PDT -codyyjxn,2024-10-15T04:00:56Z,- codyyjxn commented on pull request: [7591](https://github.com/hackforla/website/pull/7591#issuecomment-2412846887) at 2024-10-14 09:00 PM PDT -codyyjxn,2024-10-15T04:08:04Z,- codyyjxn submitted pull request review: [7591](https://github.com/hackforla/website/pull/7591#pullrequestreview-2368116262) at 2024-10-14 09:08 PM PDT -codyyjxn,2024-10-15T23:54:40Z,- codyyjxn submitted pull request review: [7538](https://github.com/hackforla/website/pull/7538#pullrequestreview-2370880135) at 2024-10-15 04:54 PM PDT -codyyjxn,2024-10-16T00:21:31Z,- codyyjxn submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2370899392) at 2024-10-15 05:21 PM PDT -codyyjxn,2024-10-16T00:24:15Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2415388366) at 2024-10-15 05:24 PM PDT -codyyjxn,2024-10-16T00:26:22Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2415390492) at 2024-10-15 05:26 PM PDT -codyyjxn,2024-10-17T02:29:51Z,- codyyjxn commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2418362259) at 2024-10-16 07:29 PM PDT -codyyjxn,2024-10-17T02:31:11Z,- codyyjxn commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2418363632) at 2024-10-16 07:31 PM PDT -codyyjxn,2024-10-18T02:52:58Z,- codyyjxn submitted pull request review: [7598](https://github.com/hackforla/website/pull/7598#pullrequestreview-2376846794) at 2024-10-17 07:52 PM PDT -codyyjxn,2024-10-18T02:54:25Z,- codyyjxn submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2376848385) at 2024-10-17 07:54 PM PDT -codyyjxn,2024-10-21T19:37:27Z,- codyyjxn submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2383153424) at 2024-10-21 12:37 PM PDT -codyyjxn,2024-10-24T02:22:59Z,- codyyjxn submitted pull request review: [7628](https://github.com/hackforla/website/pull/7628#pullrequestreview-2391075426) at 2024-10-23 07:22 PM PDT -codyyjxn,2024-10-24T02:36:30Z,- codyyjxn submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2391088118) at 2024-10-23 07:36 PM PDT -codyyjxn,2024-10-24T20:21:11Z,- codyyjxn submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2393635540) at 2024-10-24 01:21 PM PDT -codyyjxn,2024-10-25T16:51:51Z,- codyyjxn submitted pull request review: [7634](https://github.com/hackforla/website/pull/7634#pullrequestreview-2395870039) at 2024-10-25 09:51 AM PDT -codyyjxn,2024-10-26T22:56:11Z,- codyyjxn submitted pull request review: [7639](https://github.com/hackforla/website/pull/7639#pullrequestreview-2397371311) at 2024-10-26 03:56 PM PDT -codyyjxn,2024-10-26T23:34:24Z,- codyyjxn submitted pull request review: [7638](https://github.com/hackforla/website/pull/7638#pullrequestreview-2397374379) at 2024-10-26 04:34 PM PDT -codyyjxn,2024-10-29T23:08:27Z,- codyyjxn submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2403231656) at 2024-10-29 04:08 PM PDT -codyyjxn,2024-10-31T04:46:44Z,- codyyjxn commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2449002984) at 2024-10-30 09:46 PM PDT -codyyjxn,2024-11-03T19:36:31Z,- codyyjxn submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2411929990) at 2024-11-03 11:36 AM PST -codyyjxn,2024-11-03T19:41:38Z,- codyyjxn submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2411930826) at 2024-11-03 11:41 AM PST -codyyjxn,2024-11-03T19:45:30Z,- codyyjxn submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2411931430) at 2024-11-03 11:45 AM PST -codyyjxn,2024-11-03T20:01:53Z,- codyyjxn submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2411933758) at 2024-11-03 12:01 PM PST -codyyjxn,2024-11-03T21:40:11Z,- codyyjxn commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2453586226) at 2024-11-03 01:40 PM PST -codyyjxn,2024-11-05T04:54:21Z,- codyyjxn submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2414619339) at 2024-11-04 08:54 PM PST -codyyjxn,2024-11-05T22:19:09Z,- codyyjxn commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2458255838) at 2024-11-05 02:19 PM PST -codyyjxn,2024-11-05T23:55:55Z,- codyyjxn submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2417005546) at 2024-11-05 03:55 PM PST -codyyjxn,2024-11-08T23:34:09Z,- codyyjxn submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2425068539) at 2024-11-08 03:34 PM PST -codyyjxn,2024-11-12T17:13:12Z,- codyyjxn submitted pull request review: [7717](https://github.com/hackforla/website/pull/7717#pullrequestreview-2430234908) at 2024-11-12 09:13 AM PST -codyyjxn,2024-11-12T17:14:18Z,- codyyjxn commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2471122954) at 2024-11-12 09:14 AM PST -codyyjxn,2024-11-12T17:26:03Z,- codyyjxn submitted pull request review: [7716](https://github.com/hackforla/website/pull/7716#pullrequestreview-2430262594) at 2024-11-12 09:26 AM PST -codyyjxn,2024-11-12T17:31:03Z,- codyyjxn submitted pull request review: [7715](https://github.com/hackforla/website/pull/7715#pullrequestreview-2430273763) at 2024-11-12 09:31 AM PST -codyyjxn,2024-11-12T17:41:52Z,- codyyjxn submitted pull request review: [7714](https://github.com/hackforla/website/pull/7714#pullrequestreview-2430298872) at 2024-11-12 09:41 AM PST -codyyjxn,2024-11-12T18:05:49Z,- codyyjxn submitted pull request review: [7712](https://github.com/hackforla/website/pull/7712#pullrequestreview-2430347589) at 2024-11-12 10:05 AM PST -codyyjxn,2024-11-12T18:11:49Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2471241446) at 2024-11-12 10:11 AM PST -codyyjxn,2024-11-14T04:05:15Z,- codyyjxn submitted pull request review: [7714](https://github.com/hackforla/website/pull/7714#pullrequestreview-2434999913) at 2024-11-13 08:05 PM PST -codyyjxn,2024-11-15T03:08:41Z,- codyyjxn submitted pull request review: [7721](https://github.com/hackforla/website/pull/7721#pullrequestreview-2437572834) at 2024-11-14 07:08 PM PST -codyyjxn,2024-11-15T03:12:42Z,- codyyjxn submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2437575791) at 2024-11-14 07:12 PM PST -codyyjxn,2024-11-21T02:15:16Z,- codyyjxn submitted pull request review: [7748](https://github.com/hackforla/website/pull/7748#pullrequestreview-2450080066) at 2024-11-20 06:15 PM PST -codyyjxn,2024-11-21T02:22:05Z,- codyyjxn submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2450086089) at 2024-11-20 06:22 PM PST -codyyjxn,2024-11-21T02:50:40Z,- codyyjxn submitted pull request review: [7744](https://github.com/hackforla/website/pull/7744#pullrequestreview-2450112406) at 2024-11-20 06:50 PM PST -codyyjxn,2024-11-24T17:36:55Z,- codyyjxn submitted pull request review: [7748](https://github.com/hackforla/website/pull/7748#pullrequestreview-2456760344) at 2024-11-24 09:36 AM PST -codyyjxn,2024-11-26T00:17:40Z,- codyyjxn submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2459875324) at 2024-11-25 04:17 PM PST -codyyjxn,2024-11-26T00:20:18Z,- codyyjxn submitted pull request review: [7729](https://github.com/hackforla/website/pull/7729#pullrequestreview-2459877715) at 2024-11-25 04:20 PM PST -codyyjxn,2024-11-26T17:08:38Z,- codyyjxn submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462216952) at 2024-11-26 09:08 AM PST -codyyjxn,2024-12-05T05:24:33Z,- codyyjxn submitted pull request review: [7791](https://github.com/hackforla/website/pull/7791#pullrequestreview-2480497545) at 2024-12-04 09:24 PM PST -codyyjxn,2024-12-08T19:29:18Z,- codyyjxn submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2487250588) at 2024-12-08 11:29 AM PST -codyyjxn,2024-12-10T21:50:29Z,- codyyjxn commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2532975345) at 2024-12-10 01:50 PM PST -codyyjxn,2025-03-18T01:09:52Z,- codyyjxn unassigned from issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2731318935) at 2025-03-17 06:09 PM PDT -codyyjxn,2025-03-18T01:10:34Z,- codyyjxn unassigned from issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2603652942) at 2025-03-17 06:10 PM PDT -colin-macrae,5782,SKILLS ISSUE -colin-macrae,2023-10-25T03:13:01Z,- colin-macrae opened issue: [5782](https://github.com/hackforla/website/issues/5782) at 2023-10-24 08:13 PM PDT -colin-macrae,2023-10-25T03:13:18Z,- colin-macrae assigned to issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1778437064) at 2023-10-24 08:13 PM PDT -colin-macrae,2023-11-15T02:18:13Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1811695654) at 2023-11-14 06:18 PM PST -colin-macrae,2023-11-21T03:58:14Z,- colin-macrae assigned to issue: [5799](https://github.com/hackforla/website/issues/5799) at 2023-11-20 07:58 PM PST -colin-macrae,2023-11-21T04:01:45Z,- colin-macrae commented on issue: [5799](https://github.com/hackforla/website/issues/5799#issuecomment-1820203338) at 2023-11-20 08:01 PM PST -colin-macrae,2023-11-21T04:22:47Z,- colin-macrae unassigned from issue: [5799](https://github.com/hackforla/website/issues/5799#issuecomment-1820203338) at 2023-11-20 08:22 PM PST -colin-macrae,2023-11-21T04:24:14Z,- colin-macrae assigned to issue: [5799](https://github.com/hackforla/website/issues/5799#issuecomment-1820203338) at 2023-11-20 08:24 PM PST -colin-macrae,2023-11-21T23:55:07Z,- colin-macrae opened pull request: [5928](https://github.com/hackforla/website/pull/5928) at 2023-11-21 03:55 PM PST -colin-macrae,2023-11-22T02:30:27Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1821992583) at 2023-11-21 06:30 PM PST -colin-macrae,2023-11-26T02:09:32Z,- colin-macrae pull request merged: [5928](https://github.com/hackforla/website/pull/5928#event-11061757619) at 2023-11-25 06:09 PM PST -colin-macrae,2023-11-30T05:29:48Z,- colin-macrae commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1833132977) at 2023-11-29 09:29 PM PST -colin-macrae,2023-12-01T00:53:02Z,- colin-macrae commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1835205647) at 2023-11-30 04:53 PM PST -colin-macrae,2023-12-01T16:37:38Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1836433080) at 2023-12-01 08:37 AM PST -colin-macrae,2023-12-07T21:07:44Z,- colin-macrae submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1771132175) at 2023-12-07 01:07 PM PST -colin-macrae,2023-12-07T22:35:43Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1846214274) at 2023-12-07 02:35 PM PST -colin-macrae,2023-12-12T20:51:59Z,- colin-macrae submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1778415825) at 2023-12-12 12:51 PM PST -colin-macrae,2023-12-13T00:05:01Z,- colin-macrae closed issue as completed: [5782](https://github.com/hackforla/website/issues/5782#event-11229784477) at 2023-12-12 04:05 PM PST -colin-macrae,2023-12-13T03:25:13Z,- colin-macrae commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1853208054) at 2023-12-12 07:25 PM PST -colin-macrae,2023-12-13T03:39:40Z,- colin-macrae assigned to issue: [5686](https://github.com/hackforla/website/issues/5686#issuecomment-1752409895) at 2023-12-12 07:39 PM PST -colin-macrae,2023-12-13T03:41:37Z,- colin-macrae commented on issue: [5686](https://github.com/hackforla/website/issues/5686#issuecomment-1853218087) at 2023-12-12 07:41 PM PST -colin-macrae,2023-12-13T22:37:22Z,- colin-macrae submitted pull request review: [6003](https://github.com/hackforla/website/pull/6003#pullrequestreview-1780604756) at 2023-12-13 02:37 PM PST -colin-macrae,2023-12-13T23:51:07Z,- colin-macrae opened pull request: [6006](https://github.com/hackforla/website/pull/6006) at 2023-12-13 03:51 PM PST -colin-macrae,2023-12-15T03:12:19Z,- colin-macrae submitted pull request review: [6003](https://github.com/hackforla/website/pull/6003#pullrequestreview-1783061432) at 2023-12-14 07:12 PM PST -colin-macrae,2023-12-18T22:03:48Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1861763438) at 2023-12-18 02:03 PM PST -colin-macrae,2023-12-18T22:43:31Z,- colin-macrae submitted pull request review: [6004](https://github.com/hackforla/website/pull/6004#pullrequestreview-1787825010) at 2023-12-18 02:43 PM PST -colin-macrae,2023-12-20T20:11:13Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1865069764) at 2023-12-20 12:11 PM PST -colin-macrae,2023-12-20T21:54:23Z,- colin-macrae submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1791723092) at 2023-12-20 01:54 PM PST -colin-macrae,2023-12-21T18:50:55Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1866786362) at 2023-12-21 10:50 AM PST -colin-macrae,2023-12-21T22:12:27Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1866995529) at 2023-12-21 02:12 PM PST -colin-macrae,2023-12-22T18:00:38Z,- colin-macrae pull request merged: [6006](https://github.com/hackforla/website/pull/6006#event-11328546120) at 2023-12-22 10:00 AM PST -colin-macrae,2024-01-10T18:50:12Z,- colin-macrae commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1885430214) at 2024-01-10 10:50 AM PST -colin-macrae,2024-01-12T03:22:13Z,- colin-macrae submitted pull request review: [6055](https://github.com/hackforla/website/pull/6055#pullrequestreview-1817301298) at 2024-01-11 07:22 PM PST -colin-macrae,2024-01-19T01:40:07Z,- colin-macrae assigned to issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1880516166) at 2024-01-18 05:40 PM PST -colin-macrae,2024-01-19T01:42:00Z,- colin-macrae commented on issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1899500139) at 2024-01-18 05:42 PM PST -colin-macrae,2024-01-19T01:44:49Z,- colin-macrae commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1899502543) at 2024-01-18 05:44 PM PST -colin-macrae,2024-01-19T01:49:46Z,- colin-macrae assigned to issue: [6065](https://github.com/hackforla/website/issues/6065) at 2024-01-18 05:49 PM PST -colin-macrae,2024-01-19T01:50:32Z,- colin-macrae commented on issue: [6065](https://github.com/hackforla/website/issues/6065#issuecomment-1899509063) at 2024-01-18 05:50 PM PST -colin-macrae,2024-01-21T02:54:43Z,- colin-macrae submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1834755648) at 2024-01-20 06:54 PM PST -colin-macrae,2024-01-21T04:05:40Z,- colin-macrae opened pull request: [6134](https://github.com/hackforla/website/pull/6134) at 2024-01-20 08:05 PM PST -colin-macrae,2024-01-21T04:26:02Z,- colin-macrae opened pull request: [6135](https://github.com/hackforla/website/pull/6135) at 2024-01-20 08:26 PM PST -colin-macrae,2024-01-23T00:01:31Z,- colin-macrae commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1905049664) at 2024-01-22 04:01 PM PST -colin-macrae,2024-01-24T02:29:50Z,- colin-macrae submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1840281835) at 2024-01-23 06:29 PM PST -colin-macrae,2024-01-24T03:15:32Z,- colin-macrae submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1840315065) at 2024-01-23 07:15 PM PST -colin-macrae,2024-01-24T17:54:01Z,- colin-macrae pull request merged: [6134](https://github.com/hackforla/website/pull/6134#event-11587736098) at 2024-01-24 09:54 AM PST -colin-macrae,2024-01-26T00:02:27Z,- colin-macrae commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1911193032) at 2024-01-25 04:02 PM PST -colin-macrae,2024-01-26T20:39:43Z,- colin-macrae commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1912667490) at 2024-01-26 12:39 PM PST -colin-macrae,2024-01-30T02:39:08Z,- colin-macrae commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1915960765) at 2024-01-29 06:39 PM PST -colin-macrae,2024-01-31T07:54:18Z,- colin-macrae pull request merged: [6135](https://github.com/hackforla/website/pull/6135#event-11651961078) at 2024-01-30 11:54 PM PST -colin-macrae,2024-03-12T19:40:15Z,- colin-macrae commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1992403017) at 2024-03-12 12:40 PM PDT -colin-macrae,2024-03-13T02:36:51Z,- colin-macrae commented on pull request: [6457](https://github.com/hackforla/website/pull/6457#issuecomment-1993194302) at 2024-03-12 07:36 PM PDT -colin-macrae,2024-03-14T22:40:53Z,- colin-macrae submitted pull request review: [6457](https://github.com/hackforla/website/pull/6457#pullrequestreview-1937848999) at 2024-03-14 03:40 PM PDT -colin-macrae,2024-03-15T17:49:24Z,- colin-macrae commented on pull request: [6465](https://github.com/hackforla/website/pull/6465#issuecomment-2000156045) at 2024-03-15 10:49 AM PDT -colin-macrae,2024-03-16T23:32:44Z,- colin-macrae commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2002184039) at 2024-03-16 04:32 PM PDT -colin-macrae,2024-03-19T16:30:04Z,- colin-macrae submitted pull request review: [6465](https://github.com/hackforla/website/pull/6465#pullrequestreview-1946784469) at 2024-03-19 09:30 AM PDT -colin-macrae,2024-03-27T04:29:34Z,- colin-macrae submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1962260572) at 2024-03-26 09:29 PM PDT -colin-macrae,2024-04-04T03:14:40Z,- colin-macrae opened issue: [6563](https://github.com/hackforla/website/issues/6563) at 2024-04-03 08:14 PM PDT -colin-macrae,2024-06-03T02:39:40Z,- colin-macrae assigned to issue: [6920](https://github.com/hackforla/website/issues/6920) at 2024-06-02 07:39 PM PDT -colin-macrae,2024-06-03T05:05:21Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2144288435) at 2024-06-02 10:05 PM PDT -colin-macrae,2024-06-07T03:58:11Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2153842549) at 2024-06-06 08:58 PM PDT -colin-macrae,2024-06-07T22:35:06Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2155657077) at 2024-06-07 03:35 PM PDT -colin-macrae,2024-06-11T04:24:55Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2159755505) at 2024-06-10 09:24 PM PDT -colin-macrae,2024-06-12T01:41:19Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2161910621) at 2024-06-11 06:41 PM PDT -colin-macrae,2024-06-14T02:10:55Z,- colin-macrae unassigned from issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2161910621) at 2024-06-13 07:10 PM PDT -colin-macrae,2024-06-14T02:22:00Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2167091428) at 2024-06-13 07:22 PM PDT -colin-macrae,2024-06-14T04:34:56Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2167194048) at 2024-06-13 09:34 PM PDT -ColinBeuttler,7027,SKILLS ISSUE -ColinBeuttler,2024-06-19T03:06:48Z,- ColinBeuttler opened issue: [7026](https://github.com/hackforla/website/issues/7026) at 2024-06-18 08:06 PM PDT -ColinBeuttler,2024-06-19T03:08:43Z,- ColinBeuttler opened issue: [7027](https://github.com/hackforla/website/issues/7027) at 2024-06-18 08:08 PM PDT -ColinBeuttler,2024-06-23T20:18:39Z,- ColinBeuttler assigned to issue: [7027](https://github.com/hackforla/website/issues/7027) at 2024-06-23 01:18 PM PDT -combinatorist,2020-11-02T20:09:56Z,- combinatorist opened issue: [803](https://github.com/hackforla/website/issues/803) at 2020-11-02 12:09 PM PST -combinatorist,2020-11-03T15:19:40Z,- combinatorist commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-721193559) at 2020-11-03 07:19 AM PST -connie-yu-dotcom,2021-06-16T01:57:15Z,- connie-yu-dotcom opened issue: [1748](https://github.com/hackforla/website/issues/1748) at 2021-06-15 06:57 PM PDT -connie-yu-dotcom,2021-06-16T01:57:15Z,- connie-yu-dotcom assigned to issue: [1748](https://github.com/hackforla/website/issues/1748) at 2021-06-15 06:57 PM PDT -connie-yu-dotcom,2021-06-16T02:00:54Z,- connie-yu-dotcom commented on issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-15 07:00 PM PDT -connie-yu-dotcom,2021-06-16T04:09:12Z,- connie-yu-dotcom unassigned from issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-15 09:09 PM PDT -connie-yu-dotcom,2021-06-16T04:09:53Z,- connie-yu-dotcom assigned to issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-15 09:09 PM PDT -connie-yu-dotcom,2021-06-16T23:35:03Z,- connie-yu-dotcom unassigned from issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-16 04:35 PM PDT -connortessaro,5351,SKILLS ISSUE -connortessaro,2023-08-30T03:41:42Z,- connortessaro opened issue: [5351](https://github.com/hackforla/website/issues/5351) at 2023-08-29 08:41 PM PDT -connortessaro,2023-08-30T04:08:30Z,- connortessaro assigned to issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1698441801) at 2023-08-29 09:08 PM PDT -connortessaro,2023-09-01T01:47:37Z,- connortessaro assigned to issue: [5317](https://github.com/hackforla/website/issues/5317#issuecomment-1694731801) at 2023-08-31 06:47 PM PDT -connortessaro,2023-09-01T07:24:05Z,- connortessaro opened pull request: [5405](https://github.com/hackforla/website/pull/5405) at 2023-09-01 12:24 AM PDT -connortessaro,2023-09-01T23:40:59Z,- connortessaro commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1703525647) at 2023-09-01 04:40 PM PDT -connortessaro,2023-09-02T00:46:37Z,- connortessaro commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1703592179) at 2023-09-01 05:46 PM PDT -connortessaro,2023-09-02T02:16:30Z,- connortessaro assigned to issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1685831197) at 2023-09-01 07:16 PM PDT -connortessaro,2023-09-02T02:20:41Z,- connortessaro commented on issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1703649613) at 2023-09-01 07:20 PM PDT -connortessaro,2023-09-02T20:52:41Z,- connortessaro opened pull request: [5421](https://github.com/hackforla/website/pull/5421) at 2023-09-02 01:52 PM PDT -connortessaro,2023-09-02T21:30:14Z,- connortessaro commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1703945685) at 2023-09-02 02:30 PM PDT -connortessaro,2023-09-02T21:30:46Z,- connortessaro commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1703945913) at 2023-09-02 02:30 PM PDT -connortessaro,2023-09-03T18:14:32Z,- connortessaro pull request closed w/o merging: [5421](https://github.com/hackforla/website/pull/5421#event-10266935704) at 2023-09-03 11:14 AM PDT -connortessaro,2023-09-03T18:15:34Z,- connortessaro unassigned from issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1703649613) at 2023-09-03 11:15 AM PDT -connortessaro,2023-09-03T19:25:42Z,- connortessaro commented on pull request: [5421](https://github.com/hackforla/website/pull/5421#issuecomment-1704381984) at 2023-09-03 12:25 PM PDT -connortessaro,2023-09-04T03:02:00Z,- connortessaro pull request merged: [5405](https://github.com/hackforla/website/pull/5405#event-10268786260) at 2023-09-03 08:02 PM PDT -connortessaro,2024-01-11T05:54:09Z,- connortessaro closed issue as completed: [5351](https://github.com/hackforla/website/issues/5351#event-11451867764) at 2024-01-10 09:54 PM PST -ControlAltTea,3829,SKILLS ISSUE -ControlAltTea,2023-01-17T04:17:01Z,- ControlAltTea opened issue: [3829](https://github.com/hackforla/website/issues/3829) at 2023-01-16 08:17 PM PST -ControlAltTea,2023-01-17T04:17:01Z,- ControlAltTea assigned to issue: [3829](https://github.com/hackforla/website/issues/3829) at 2023-01-16 08:17 PM PST -copilot-pull-request-reviewer,2025-04-12T19:28:50Z,- copilot-pull-request-reviewer submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2762240543) at 2025-04-12 12:28 PM PDT -crachal,4315,SKILLS ISSUE -crachal,2023-03-29T03:17:25Z,- crachal opened issue: [4315](https://github.com/hackforla/website/issues/4315) at 2023-03-28 08:17 PM PDT -crachal,2023-03-29T03:58:33Z,- crachal assigned to issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1487889139) at 2023-03-28 08:58 PM PDT -crachal,2023-04-14T22:40:26Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1509364355) at 2023-04-14 03:40 PM PDT -crachal,2023-04-25T22:49:08Z,- crachal assigned to issue: [4413](https://github.com/hackforla/website/issues/4413#issuecomment-1501102586) at 2023-04-25 03:49 PM PDT -crachal,2023-04-25T23:07:26Z,- crachal commented on issue: [4413](https://github.com/hackforla/website/issues/4413#issuecomment-1522528291) at 2023-04-25 04:07 PM PDT -crachal,2023-04-27T01:41:54Z,- crachal opened pull request: [4570](https://github.com/hackforla/website/pull/4570) at 2023-04-26 06:41 PM PDT -crachal,2023-04-27T20:21:39Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1526370855) at 2023-04-27 01:21 PM PDT -crachal,2023-04-27T21:45:35Z,- crachal pull request merged: [4570](https://github.com/hackforla/website/pull/4570#event-9119036119) at 2023-04-27 02:45 PM PDT -crachal,2023-05-15T01:13:14Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1547061176) at 2023-05-14 06:13 PM PDT -crachal,2023-06-15T04:13:40Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1592324900) at 2023-06-14 09:13 PM PDT -crachal,2023-06-15T04:15:12Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1592326098) at 2023-06-14 09:15 PM PDT -CreslinDev,7519,SKILLS ISSUE -CreslinDev,2024-09-25T02:58:34Z,- CreslinDev opened issue: [7519](https://github.com/hackforla/website/issues/7519) at 2024-09-24 07:58 PM PDT -CreslinDev,2024-09-25T02:58:39Z,- CreslinDev assigned to issue: [7519](https://github.com/hackforla/website/issues/7519) at 2024-09-24 07:58 PM PDT -CreslinDev,2024-09-25T03:09:10Z,- CreslinDev commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2372814522) at 2024-09-24 08:09 PM PDT -CreslinDev,2024-09-25T03:24:59Z,- CreslinDev commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2372830846) at 2024-09-24 08:24 PM PDT -CreslinDev,2024-09-25T03:25:47Z,- CreslinDev commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2372831732) at 2024-09-24 08:25 PM PDT -cristinadz,4325,SKILLS ISSUE -cristinadz,2023-03-29T03:41:52Z,- cristinadz opened issue: [4325](https://github.com/hackforla/website/issues/4325) at 2023-03-28 08:41 PM PDT -cristinadz,2023-03-29T03:42:42Z,- cristinadz assigned to issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1487902071) at 2023-03-28 08:42 PM PDT -Crocodile-Lyle,7967,SKILLS ISSUE -Crocodile-Lyle,2025-03-04T03:55:13Z,- Crocodile-Lyle opened issue: [7966](https://github.com/hackforla/website/issues/7966) at 2025-03-03 07:55 PM PST -Crocodile-Lyle,2025-03-04T03:55:14Z,- Crocodile-Lyle opened issue: [7967](https://github.com/hackforla/website/issues/7967) at 2025-03-03 07:55 PM PST -Crocodile-Lyle,2025-03-04T03:55:47Z,- Crocodile-Lyle assigned to issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696126930) at 2025-03-03 07:55 PM PST -Crocodile-Lyle,2025-03-04T04:10:51Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696142358) at 2025-03-03 08:10 PM PST -Crocodile-Lyle,2025-03-04T04:19:55Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696151333) at 2025-03-03 08:19 PM PST -Crocodile-Lyle,2025-03-04T04:48:32Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696188936) at 2025-03-03 08:48 PM PST -Crocodile-Lyle,2025-03-04T05:02:13Z,- Crocodile-Lyle assigned to issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2682859582) at 2025-03-03 09:02 PM PST -Crocodile-Lyle,2025-03-07T03:21:06Z,- Crocodile-Lyle commented on issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2705429771) at 2025-03-06 07:21 PM PST -Crocodile-Lyle,2025-03-07T03:51:36Z,- Crocodile-Lyle closed issue as completed: [7848](https://github.com/hackforla/website/issues/7848#event-16626268207) at 2025-03-06 07:51 PM PST -Crocodile-Lyle,2025-03-07T03:59:10Z,- Crocodile-Lyle assigned to issue: [7877](https://github.com/hackforla/website/issues/7877#issuecomment-2671194411) at 2025-03-06 07:59 PM PST -Crocodile-Lyle,2025-03-07T04:41:29Z,- Crocodile-Lyle opened pull request: [7981](https://github.com/hackforla/website/pull/7981) at 2025-03-06 08:41 PM PST -Crocodile-Lyle,2025-03-07T05:00:16Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2671192286) at 2025-03-06 09:00 PM PST -Crocodile-Lyle,2025-03-07T05:00:30Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2671192286) at 2025-03-06 09:00 PM PST -Crocodile-Lyle,2025-03-07T05:03:14Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705534298) at 2025-03-06 09:03 PM PST -Crocodile-Lyle,2025-03-07T05:03:30Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705534298) at 2025-03-06 09:03 PM PST -Crocodile-Lyle,2025-03-07T05:08:29Z,- Crocodile-Lyle unassigned from issue: [7848](https://github.com/hackforla/website/issues/7848#event-16626268207) at 2025-03-06 09:08 PM PST -Crocodile-Lyle,2025-03-07T05:08:40Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705537480) at 2025-03-06 09:08 PM PST -Crocodile-Lyle,2025-03-07T05:08:56Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705537480) at 2025-03-06 09:08 PM PST -Crocodile-Lyle,2025-03-07T05:09:33Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705542954) at 2025-03-06 09:09 PM PST -Crocodile-Lyle,2025-03-07T05:09:45Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705543713) at 2025-03-06 09:09 PM PST -Crocodile-Lyle,2025-03-07T05:11:04Z,- Crocodile-Lyle opened pull request: [7982](https://github.com/hackforla/website/pull/7982) at 2025-03-06 09:11 PM PST -Crocodile-Lyle,2025-03-07T05:18:01Z,- Crocodile-Lyle commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705552522) at 2025-03-06 09:18 PM PST -Crocodile-Lyle,2025-03-07T05:21:47Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2705556684) at 2025-03-06 09:21 PM PST -Crocodile-Lyle,2025-03-07T05:27:20Z,- Crocodile-Lyle pull request closed w/o merging: [7982](https://github.com/hackforla/website/pull/7982#event-16626887905) at 2025-03-06 09:27 PM PST -Crocodile-Lyle,2025-03-07T22:44:36Z,- Crocodile-Lyle commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2707648350) at 2025-03-07 02:44 PM PST -Crocodile-Lyle,2025-03-12T01:59:31Z,- Crocodile-Lyle closed issue as duplicate: [7966](https://github.com/hackforla/website/issues/7966#event-16703282902) at 2025-03-11 06:59 PM PDT -Crocodile-Lyle,2025-03-12T02:27:17Z,- Crocodile-Lyle commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2716229809) at 2025-03-11 07:27 PM PDT -Crocodile-Lyle,2025-03-25T07:58:00Z,- Crocodile-Lyle commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2750394664) at 2025-03-25 12:58 AM PDT -Crocodile-Lyle,2025-03-26T17:27:32Z,- Crocodile-Lyle pull request merged: [7981](https://github.com/hackforla/website/pull/7981#event-16997251093) at 2025-03-26 10:27 AM PDT -crystallyyy,5357,SKILLS ISSUE -crystallyyy,2023-08-30T04:01:27Z,- crystallyyy opened issue: [5357](https://github.com/hackforla/website/issues/5357) at 2023-08-29 09:01 PM PDT -crystallyyy,2023-08-30T04:01:56Z,- crystallyyy assigned to issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1698453268) at 2023-08-29 09:01 PM PDT -crystallyyy,2023-09-16T02:55:06Z,- crystallyyy commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1722114800) at 2023-09-15 07:55 PM PDT -crystallyyy,2023-09-21T22:56:04Z,- crystallyyy assigned to issue: [5506](https://github.com/hackforla/website/issues/5506#issuecomment-1716259181) at 2023-09-21 03:56 PM PDT -crystallyyy,2023-09-21T23:03:42Z,- crystallyyy commented on issue: [5506](https://github.com/hackforla/website/issues/5506#issuecomment-1730465590) at 2023-09-21 04:03 PM PDT -crystallyyy,2023-09-21T23:13:33Z,- crystallyyy commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1730474289) at 2023-09-21 04:13 PM PDT -crystallyyy,2023-09-21T23:13:33Z,- crystallyyy closed issue as completed: [5357](https://github.com/hackforla/website/issues/5357#event-10441242340) at 2023-09-21 04:13 PM PDT -crystallyyy,2023-09-25T23:07:36Z,- crystallyyy opened pull request: [5583](https://github.com/hackforla/website/pull/5583) at 2023-09-25 04:07 PM PDT -crystallyyy,2023-10-09T22:41:57Z,- crystallyyy commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1754007060) at 2023-10-09 03:41 PM PDT -crystallyyy,2023-10-11T22:29:43Z,- crystallyyy assigned to issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1736632454) at 2023-10-11 03:29 PM PDT -crystallyyy,2023-10-11T22:34:02Z,- crystallyyy commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1758638866) at 2023-10-11 03:34 PM PDT -crystallyyy,2023-10-14T23:21:44Z,- crystallyyy pull request merged: [5583](https://github.com/hackforla/website/pull/5583#event-10656119716) at 2023-10-14 04:21 PM PDT -crystallyyy,2023-11-03T13:57:16Z,- crystallyyy unassigned from issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1791971858) at 2023-11-03 06:57 AM PDT -crystalogy,6954,SKILLS ISSUE -crystalogy,2024-06-04T03:20:02Z,- crystalogy opened issue: [6954](https://github.com/hackforla/website/issues/6954) at 2024-06-03 08:20 PM PDT -crystalogy,2024-06-09T01:23:34Z,- crystalogy assigned to issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2147895750) at 2024-06-08 06:23 PM PDT -csseu,2021-02-24T05:14:38Z,- csseu assigned to issue: [1056](https://github.com/hackforla/website/issues/1056) at 2021-02-23 09:14 PM PST -csseu,2021-02-24T05:32:20Z,- csseu opened pull request: [1101](https://github.com/hackforla/website/pull/1101) at 2021-02-23 09:32 PM PST -csseu,2021-02-24T05:39:13Z,- csseu commented on issue: [1056](https://github.com/hackforla/website/issues/1056#issuecomment-784794462) at 2021-02-23 09:39 PM PST -csseu,2021-02-24T05:39:43Z,- csseu pull request merged: [1101](https://github.com/hackforla/website/pull/1101#event-4368922812) at 2021-02-23 09:39 PM PST -csseu,2021-02-24T06:03:42Z,- csseu opened issue: [1102](https://github.com/hackforla/website/issues/1102) at 2021-02-23 10:03 PM PST -csseu,2021-02-24T06:05:27Z,- csseu commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-784808301) at 2021-02-23 10:05 PM PST -csseu,2021-02-24T06:08:53Z,- csseu opened issue: [1103](https://github.com/hackforla/website/issues/1103) at 2021-02-23 10:08 PM PST -csseu,2021-02-24T06:10:32Z,- csseu commented on issue: [1103](https://github.com/hackforla/website/issues/1103#issuecomment-784811971) at 2021-02-23 10:10 PM PST -csseu,2021-02-25T18:27:58Z,- csseu assigned to issue: [1047](https://github.com/hackforla/website/issues/1047) at 2021-02-25 10:27 AM PST -csseu,2021-02-25T18:31:36Z,- csseu opened pull request: [1120](https://github.com/hackforla/website/pull/1120) at 2021-02-25 10:31 AM PST -csseu,2021-02-25T18:33:51Z,- csseu closed issue as completed: [1096](https://github.com/hackforla/website/issues/1096#event-4378114191) at 2021-02-25 10:33 AM PST -csseu,2021-02-26T05:12:53Z,- csseu assigned to issue: [1045](https://github.com/hackforla/website/issues/1045) at 2021-02-25 09:12 PM PST -csseu,2021-02-26T05:32:59Z,- csseu unassigned from issue: [1045](https://github.com/hackforla/website/issues/1045) at 2021-02-25 09:32 PM PST -csseu,2021-02-26T05:33:04Z,- csseu closed issue by PR 1306: [1045](https://github.com/hackforla/website/issues/1045#event-4380102816) at 2021-02-25 09:33 PM PST -csseu,2021-02-26T05:33:06Z,- csseu reopened issue: [1045](https://github.com/hackforla/website/issues/1045#event-4380102816) at 2021-02-25 09:33 PM PST -csseu,2021-02-26T22:38:39Z,- csseu pull request merged: [1120](https://github.com/hackforla/website/pull/1120#event-4384057710) at 2021-02-26 02:38 PM PST -csseu,2021-02-28T18:39:53Z,- csseu assigned to issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-782896427) at 2021-02-28 10:39 AM PST -csseu,2021-02-28T20:20:47Z,- csseu assigned to issue: [1139](https://github.com/hackforla/website/issues/1139) at 2021-02-28 12:20 PM PST -csseu,2021-02-28T21:02:09Z,- csseu commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787522431) at 2021-02-28 01:02 PM PST -csseu,2021-02-28T22:00:20Z,- csseu commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787530928) at 2021-02-28 02:00 PM PST -csseu,2021-02-28T22:08:08Z,- csseu commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787532056) at 2021-02-28 02:08 PM PST -csseu,2021-03-01T01:46:30Z,- csseu opened pull request: [1143](https://github.com/hackforla/website/pull/1143) at 2021-02-28 05:46 PM PST -csseu,2021-03-01T04:49:40Z,- csseu commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-787633980) at 2021-02-28 08:49 PM PST -csseu,2021-03-01T18:29:26Z,- csseu commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788170361) at 2021-03-01 10:29 AM PST -csseu,2021-03-02T07:58:01Z,- csseu commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788700941) at 2021-03-01 11:58 PM PST -csseu,2021-03-07T02:20:45Z,- csseu commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-792172256) at 2021-03-06 06:20 PM PST -csseu,2021-03-17T04:01:47Z,- csseu commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-800776393) at 2021-03-16 09:01 PM PDT -csseu,2021-03-17T04:05:39Z,- csseu commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-800777535) at 2021-03-16 09:05 PM PDT -csseu,2021-03-17T16:31:59Z,- csseu commented on pull request: [1137](https://github.com/hackforla/website/pull/1137#issuecomment-801229014) at 2021-03-17 09:31 AM PDT -csseu,2021-03-18T04:06:42Z,- csseu opened pull request: [1250](https://github.com/hackforla/website/pull/1250) at 2021-03-17 09:06 PM PDT -csseu,2021-03-18T04:10:19Z,- csseu commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-801606909) at 2021-03-17 09:10 PM PDT -csseu,2021-03-18T17:24:02Z,- csseu commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802143179) at 2021-03-18 10:24 AM PDT -csseu,2021-03-18T18:11:13Z,- csseu pull request merged: [1250](https://github.com/hackforla/website/pull/1250#event-4477838959) at 2021-03-18 11:11 AM PDT -csseu,2021-03-28T02:36:44Z,- csseu commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-808834421) at 2021-03-27 07:36 PM PDT -csseu,2021-03-28T05:09:37Z,- csseu opened issue: [1337](https://github.com/hackforla/website/issues/1337) at 2021-03-27 10:09 PM PDT -csseu,2021-03-28T05:15:14Z,- csseu commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-808846231) at 2021-03-27 10:15 PM PDT -csseu,2021-04-05T00:44:15Z,- csseu pull request closed w/o merging: [1143](https://github.com/hackforla/website/pull/1143#event-4549682558) at 2021-04-04 05:44 PM PDT -csseu,2021-04-05T06:55:50Z,- csseu opened pull request: [1357](https://github.com/hackforla/website/pull/1357) at 2021-04-04 11:55 PM PDT -csseu,2021-04-05T20:49:12Z,- csseu pull request merged: [1357](https://github.com/hackforla/website/pull/1357#event-4553353437) at 2021-04-05 01:49 PM PDT -csseu,2021-04-05T21:48:31Z,- csseu commented on pull request: [1357](https://github.com/hackforla/website/pull/1357#issuecomment-813670394) at 2021-04-05 02:48 PM PDT -csseu,2021-04-06T05:53:42Z,- csseu commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-813843590) at 2021-04-05 10:53 PM PDT -csseu,2021-04-15T07:00:23Z,- csseu closed issue as completed: [1138](https://github.com/hackforla/website/issues/1138#event-4597455704) at 2021-04-15 12:00 AM PDT -csseu,2021-04-18T16:21:41Z,- csseu assigned to issue: [1416](https://github.com/hackforla/website/issues/1416) at 2021-04-18 09:21 AM PDT -csseu,2021-06-13T17:39:25Z,- csseu assigned to issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-860245851) at 2021-06-13 10:39 AM PDT -csseu,2021-06-16T19:53:40Z,- csseu commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862669255) at 2021-06-16 12:53 PM PDT -csseu,2021-06-16T20:07:23Z,- csseu commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862677730) at 2021-06-16 01:07 PM PDT -csseu,2021-06-21T07:03:39Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-864782536) at 2021-06-21 12:03 AM PDT -csseu,2021-06-21T21:15:55Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-865349451) at 2021-06-21 02:15 PM PDT -csseu,2021-06-23T21:00:32Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867155309) at 2021-06-23 02:00 PM PDT -csseu,2021-06-24T16:18:39Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867773487) at 2021-06-24 09:18 AM PDT -csseu,2021-06-27T16:24:43Z,- csseu unassigned from issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862677730) at 2021-06-27 09:24 AM PDT -ctsexton,2018-06-29T00:22:32Z,- ctsexton opened pull request: [2](https://github.com/hackforla/website/pull/2) at 2018-06-28 05:22 PM PDT -ctsexton,2018-07-03T03:52:06Z,- ctsexton commented on pull request: [2](https://github.com/hackforla/website/pull/2#issuecomment-402005356) at 2018-07-02 08:52 PM PDT -ctsexton,2018-07-18T02:30:39Z,- ctsexton pull request merged: [2](https://github.com/hackforla/website/pull/2#event-1739105985) at 2018-07-17 07:30 PM PDT -ctsexton,2018-07-18T08:40:18Z,- ctsexton commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-405855893) at 2018-07-18 01:40 AM PDT -ctsexton,2020-01-26T19:39:32Z,- ctsexton assigned to issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578535363) at 2020-01-26 11:39 AM PST -ctsexton,2020-01-26T23:13:59Z,- ctsexton commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578553260) at 2020-01-26 03:13 PM PST -ctsexton,2020-01-27T03:00:16Z,- ctsexton commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578576529) at 2020-01-26 07:00 PM PST -ctsexton,2020-02-02T18:08:48Z,- ctsexton unassigned from issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578576529) at 2020-02-02 10:08 AM PST -ctsexton,2020-02-16T21:36:50Z,- ctsexton assigned to issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-586756931) at 2020-02-16 01:36 PM PST -ctsexton,2020-02-24T17:52:44Z,- ctsexton commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-590464074) at 2020-02-24 09:52 AM PST -ctsexton,2020-03-02T03:52:22Z,- ctsexton unassigned from issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-590464074) at 2020-03-01 07:52 PM PST -ctsexton,2020-11-12T23:51:21Z,- ctsexton closed issue as completed: [266](https://github.com/hackforla/website/issues/266#event-3991161328) at 2020-11-12 03:51 PM PST -curbeammonae,6881,SKILLS ISSUE -curbeammonae,2024-05-22T03:02:29Z,- curbeammonae opened issue: [6881](https://github.com/hackforla/website/issues/6881) at 2024-05-21 08:02 PM PDT -curbeammonae,2024-05-22T03:02:32Z,- curbeammonae assigned to issue: [6881](https://github.com/hackforla/website/issues/6881) at 2024-05-21 08:02 PM PDT -curbeammonae,2024-05-23T18:46:49Z,- curbeammonae assigned to issue: [6734](https://github.com/hackforla/website/issues/6734) at 2024-05-23 11:46 AM PDT -curbeammonae,2024-05-24T03:36:32Z,- curbeammonae opened pull request: [6891](https://github.com/hackforla/website/pull/6891) at 2024-05-23 08:36 PM PDT -curbeammonae,2024-05-26T14:36:35Z,- curbeammonae commented on issue: [6734](https://github.com/hackforla/website/issues/6734#issuecomment-2132244890) at 2024-05-26 07:36 AM PDT -curbeammonae,2024-05-26T15:05:10Z,- curbeammonae commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2132252867) at 2024-05-26 08:05 AM PDT -curbeammonae,2024-05-27T18:52:57Z,- curbeammonae assigned to issue: [6725](https://github.com/hackforla/website/issues/6725) at 2024-05-27 11:52 AM PDT -curbeammonae,2024-05-29T20:38:00Z,- curbeammonae pull request merged: [6891](https://github.com/hackforla/website/pull/6891#event-12977053304) at 2024-05-29 01:38 PM PDT -curbeammonae,2024-05-30T00:31:45Z,- curbeammonae commented on issue: [6725](https://github.com/hackforla/website/issues/6725#issuecomment-2138461349) at 2024-05-29 05:31 PM PDT -curbeammonae,2024-06-02T14:19:53Z,- curbeammonae opened pull request: [6925](https://github.com/hackforla/website/pull/6925) at 2024-06-02 07:19 AM PDT -curbeammonae,2024-06-02T14:21:43Z,- curbeammonae commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2143875381) at 2024-06-02 07:21 AM PDT -curbeammonae,2024-06-05T19:07:19Z,- curbeammonae pull request merged: [6925](https://github.com/hackforla/website/pull/6925#event-13056210298) at 2024-06-05 12:07 PM PDT -curtis-chung,4310,SKILLS ISSUE -curtis-chung,2023-03-29T03:15:25Z,- curtis-chung opened issue: [4310](https://github.com/hackforla/website/issues/4310) at 2023-03-28 08:15 PM PDT -curtis-chung,2023-04-25T02:01:55Z,- curtis-chung assigned to issue: [4310](https://github.com/hackforla/website/issues/4310) at 2023-04-24 07:01 PM PDT -cwvivianlin,2951,SKILLS ISSUE -cwvivianlin,2022-03-09T23:04:29Z,- cwvivianlin opened issue: [2951](https://github.com/hackforla/website/issues/2951) at 2022-03-09 03:04 PM PST -cwvivianlin,2022-03-09T23:08:21Z,- cwvivianlin assigned to issue: [2951](https://github.com/hackforla/website/issues/2951#issuecomment-1063467713) at 2022-03-09 03:08 PM PST -cwvivianlin,2022-03-09T23:11:46Z,- cwvivianlin assigned to issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-864590949) at 2022-03-09 03:11 PM PST -cwvivianlin,2022-03-09T23:13:47Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1063473259) at 2022-03-09 03:13 PM PST -cwvivianlin,2022-03-09T23:15:32Z,- cwvivianlin closed issue as completed: [2951](https://github.com/hackforla/website/issues/2951#event-6213654721) at 2022-03-09 03:15 PM PST -cwvivianlin,2022-03-10T17:37:36Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1064323404) at 2022-03-10 09:37 AM PST -cwvivianlin,2022-03-13T07:05:35Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1066040783) at 2022-03-13 12:05 AM PDT -cwvivianlin,2022-03-13T07:20:33Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1066042756) at 2022-03-13 12:20 AM PDT -cwvivianlin,2022-03-16T19:28:29Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1069533151) at 2022-03-16 12:28 PM PDT -cwvivianlin,2022-03-22T22:44:08Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1075724236) at 2022-03-22 03:44 PM PDT -cwvivianlin,2022-03-29T23:18:49Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1082460298) at 2022-03-29 04:18 PM PDT -cwvivianlin,2022-03-30T21:15:54Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1083632582) at 2022-03-30 02:15 PM PDT -cwvivianlin,2022-04-02T17:39:04Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1086687201) at 2022-04-02 10:39 AM PDT -cwvivianlin,2022-04-03T15:59:15Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1086897222) at 2022-04-03 08:59 AM PDT -cwvivianlin,2022-04-13T19:19:02Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1098397855) at 2022-04-13 12:19 PM PDT -cwvivianlin,2022-04-15T21:26:26Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1100420662) at 2022-04-15 02:26 PM PDT -cwvivianlin,2022-04-20T15:09:35Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1104046028) at 2022-04-20 08:09 AM PDT -cwvivianlin,2022-04-25T15:44:49Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1108741901) at 2022-04-25 08:44 AM PDT -cwvivianlin,2022-05-08T17:57:12Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1120461243) at 2022-05-08 10:57 AM PDT -cwvivianlin,2022-05-15T16:13:05Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1126971841) at 2022-05-15 09:13 AM PDT -cwvivianlin,2022-05-15T16:34:01Z,- cwvivianlin opened issue: [3139](https://github.com/hackforla/website/issues/3139) at 2022-05-15 09:34 AM PDT -cwvivianlin,2022-05-15T16:50:12Z,- cwvivianlin opened issue: [3140](https://github.com/hackforla/website/issues/3140) at 2022-05-15 09:50 AM PDT -cwvivianlin,2022-05-15T17:02:36Z,- cwvivianlin opened issue: [3142](https://github.com/hackforla/website/issues/3142) at 2022-05-15 10:02 AM PDT -cwvivianlin,2022-05-15T17:45:42Z,- cwvivianlin opened issue: [3143](https://github.com/hackforla/website/issues/3143) at 2022-05-15 10:45 AM PDT -cwvivianlin,2022-05-16T16:54:28Z,- cwvivianlin opened issue: [3145](https://github.com/hackforla/website/issues/3145) at 2022-05-16 09:54 AM PDT -cwvivianlin,2022-05-16T17:02:41Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1127915966) at 2022-05-16 10:02 AM PDT -cwvivianlin,2022-05-16T17:02:41Z,- cwvivianlin closed issue as completed: [1789](https://github.com/hackforla/website/issues/1789#event-6617911865) at 2022-05-16 10:02 AM PDT -cwvivianlin,2022-05-19T21:14:26Z,- cwvivianlin commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1132213910) at 2022-05-19 02:14 PM PDT -d-perez-8,3388,SKILLS ISSUE -d-perez-8,2022-07-19T02:46:54Z,- d-perez-8 opened issue: [3388](https://github.com/hackforla/website/issues/3388) at 2022-07-18 07:46 PM PDT -d-perez-8,2022-07-22T21:07:27Z,- d-perez-8 assigned to issue: [3388](https://github.com/hackforla/website/issues/3388) at 2022-07-22 02:07 PM PDT -d-perez-8,2022-07-25T17:34:28Z,- d-perez-8 assigned to issue: [2815](https://github.com/hackforla/website/issues/2815#issuecomment-1046316414) at 2022-07-25 10:34 AM PDT -d-perez-8,2022-07-25T18:02:19Z,- d-perez-8 commented on issue: [2815](https://github.com/hackforla/website/issues/2815#issuecomment-1194423423) at 2022-07-25 11:02 AM PDT -d-perez-8,2022-07-25T18:55:46Z,- d-perez-8 commented on issue: [3388](https://github.com/hackforla/website/issues/3388#issuecomment-1194483292) at 2022-07-25 11:55 AM PDT -d-perez-8,2022-07-25T19:29:13Z,- d-perez-8 opened pull request: [3427](https://github.com/hackforla/website/pull/3427) at 2022-07-25 12:29 PM PDT -d-perez-8,2022-07-25T19:47:04Z,- d-perez-8 commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194544105) at 2022-07-25 12:47 PM PDT -d-perez-8,2022-07-26T23:46:22Z,- d-perez-8 pull request merged: [3427](https://github.com/hackforla/website/pull/3427#event-7068760501) at 2022-07-26 04:46 PM PDT -d-perez-8,2022-07-27T02:40:14Z,- d-perez-8 closed issue as completed: [3388](https://github.com/hackforla/website/issues/3388#event-7069295977) at 2022-07-26 07:40 PM PDT -d-perez-8,2022-07-28T15:54:26Z,- d-perez-8 assigned to issue: [3102](https://github.com/hackforla/website/issues/3102#issuecomment-1116852709) at 2022-07-28 08:54 AM PDT -d-perez-8,2022-07-28T18:28:24Z,- d-perez-8 opened pull request: [3438](https://github.com/hackforla/website/pull/3438) at 2022-07-28 11:28 AM PDT -d-perez-8,2022-07-28T18:33:43Z,- d-perez-8 pull request closed w/o merging: [3438](https://github.com/hackforla/website/pull/3438#event-7084003307) at 2022-07-28 11:33 AM PDT -d-perez-8,2022-07-29T02:33:01Z,- d-perez-8 opened pull request: [3441](https://github.com/hackforla/website/pull/3441) at 2022-07-28 07:33 PM PDT -d-perez-8,2022-07-29T02:52:44Z,- d-perez-8 commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198826952) at 2022-07-28 07:52 PM PDT -d-perez-8,2022-08-01T18:20:14Z,- d-perez-8 pull request merged: [3441](https://github.com/hackforla/website/pull/3441#event-7103815628) at 2022-08-01 11:20 AM PDT -d-perez-8,2022-08-08T21:35:03Z,- d-perez-8 assigned to issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1178240374) at 2022-08-08 02:35 PM PDT -d-perez-8,2022-08-08T21:38:30Z,- d-perez-8 commented on issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1208639456) at 2022-08-08 02:38 PM PDT -d-perez-8,2022-08-08T23:54:06Z,- d-perez-8 opened pull request: [3454](https://github.com/hackforla/website/pull/3454) at 2022-08-08 04:54 PM PDT -d-perez-8,2022-08-10T00:03:51Z,- d-perez-8 commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1210007479) at 2022-08-09 05:03 PM PDT -d-perez-8,2022-08-10T02:02:32Z,- d-perez-8 commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1210065337) at 2022-08-09 07:02 PM PDT -d-perez-8,2022-08-11T03:57:05Z,- d-perez-8 pull request merged: [3454](https://github.com/hackforla/website/pull/3454#event-7168558040) at 2022-08-10 08:57 PM PDT -d-perez-8,2022-08-12T03:10:00Z,- d-perez-8 commented on pull request: [3463](https://github.com/hackforla/website/pull/3463#issuecomment-1212686663) at 2022-08-11 08:10 PM PDT -d-perez-8,2022-08-12T03:27:42Z,- d-perez-8 submitted pull request review: [3463](https://github.com/hackforla/website/pull/3463#pullrequestreview-1070558909) at 2022-08-11 08:27 PM PDT -d-perez-8,2022-08-12T15:37:54Z,- d-perez-8 assigned to issue: [3336](https://github.com/hackforla/website/issues/3336#issuecomment-1177001753) at 2022-08-12 08:37 AM PDT -d-perez-8,2022-08-12T16:24:47Z,- d-perez-8 opened pull request: [3466](https://github.com/hackforla/website/pull/3466) at 2022-08-12 09:24 AM PDT -d-perez-8,2022-08-12T16:26:30Z,- d-perez-8 commented on issue: [3336](https://github.com/hackforla/website/issues/3336#issuecomment-1213299843) at 2022-08-12 09:26 AM PDT -d-perez-8,2022-08-13T02:51:04Z,- d-perez-8 commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1213638432) at 2022-08-12 07:51 PM PDT -d-perez-8,2022-08-13T05:59:12Z,- d-perez-8 pull request merged: [3466](https://github.com/hackforla/website/pull/3466#event-7182841602) at 2022-08-12 10:59 PM PDT -d-perez-8,2022-08-13T14:32:25Z,- d-perez-8 commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1214168891) at 2022-08-13 07:32 AM PDT -d-perez-8,2022-08-17T02:59:36Z,- d-perez-8 assigned to issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-907765914) at 2022-08-16 07:59 PM PDT -d-perez-8,2022-08-17T03:06:54Z,- d-perez-8 commented on issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1217405355) at 2022-08-16 08:06 PM PDT -d-perez-8,2022-08-17T03:13:31Z,- d-perez-8 closed issue by PR 3466: [3336](https://github.com/hackforla/website/issues/3336#event-7201906248) at 2022-08-16 08:13 PM PDT -d-perez-8,2022-08-17T05:30:38Z,- d-perez-8 opened pull request: [3471](https://github.com/hackforla/website/pull/3471) at 2022-08-16 10:30 PM PDT -d-perez-8,2022-08-17T17:12:49Z,- d-perez-8 commented on pull request: [3471](https://github.com/hackforla/website/pull/3471#issuecomment-1218286271) at 2022-08-17 10:12 AM PDT -d-perez-8,2022-08-21T18:31:22Z,- d-perez-8 pull request merged: [3471](https://github.com/hackforla/website/pull/3471#event-7228040505) at 2022-08-21 11:31 AM PDT -d-perez-8,2022-08-27T17:07:53Z,- d-perez-8 commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229228876) at 2022-08-27 10:07 AM PDT -d-perez-8,2022-08-27T17:38:31Z,- d-perez-8 submitted pull request review: [3490](https://github.com/hackforla/website/pull/3490#pullrequestreview-1087704606) at 2022-08-27 10:38 AM PDT -d-perez-8,2022-08-27T18:04:35Z,- d-perez-8 commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229237944) at 2022-08-27 11:04 AM PDT -d-perez-8,2022-08-27T18:36:59Z,- d-perez-8 commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229243060) at 2022-08-27 11:36 AM PDT -d-perez-8,2022-08-28T18:29:47Z,- d-perez-8 submitted pull request review: [3490](https://github.com/hackforla/website/pull/3490#pullrequestreview-1087897477) at 2022-08-28 11:29 AM PDT -d-perez-8,2022-08-29T17:26:58Z,- d-perez-8 assigned to issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-907766320) at 2022-08-29 10:26 AM PDT -d-perez-8,2022-08-29T17:29:00Z,- d-perez-8 commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1230618486) at 2022-08-29 10:29 AM PDT -d-perez-8,2022-08-29T17:46:03Z,- d-perez-8 opened pull request: [3497](https://github.com/hackforla/website/pull/3497) at 2022-08-29 10:46 AM PDT -d-perez-8,2022-08-29T22:03:54Z,- d-perez-8 pull request merged: [3497](https://github.com/hackforla/website/pull/3497#event-7282462531) at 2022-08-29 03:03 PM PDT -d-perez-8,2022-09-06T20:49:56Z,- d-perez-8 assigned to issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-922516418) at 2022-09-06 01:49 PM PDT -d-perez-8,2022-09-06T20:51:56Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1238636738) at 2022-09-06 01:51 PM PDT -d-perez-8,2022-09-06T21:13:59Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1238655483) at 2022-09-06 02:13 PM PDT -d-perez-8,2022-09-13T15:29:53Z,- d-perez-8 commented on pull request: [3534](https://github.com/hackforla/website/pull/3534#issuecomment-1245581150) at 2022-09-13 08:29 AM PDT -d-perez-8,2022-09-13T15:45:26Z,- d-perez-8 submitted pull request review: [3534](https://github.com/hackforla/website/pull/3534#pullrequestreview-1106050362) at 2022-09-13 08:45 AM PDT -d-perez-8,2022-09-18T17:03:25Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1250348436) at 2022-09-18 10:03 AM PDT -d-perez-8,2022-09-27T00:46:52Z,- d-perez-8 commented on pull request: [3585](https://github.com/hackforla/website/pull/3585#issuecomment-1258829426) at 2022-09-26 05:46 PM PDT -d-perez-8,2022-09-27T00:55:38Z,- d-perez-8 submitted pull request review: [3585](https://github.com/hackforla/website/pull/3585#pullrequestreview-1121081231) at 2022-09-26 05:55 PM PDT -d-perez-8,2022-09-27T00:57:31Z,- d-perez-8 commented on pull request: [3580](https://github.com/hackforla/website/pull/3580#issuecomment-1258834855) at 2022-09-26 05:57 PM PDT -d-perez-8,2022-09-27T01:13:46Z,- d-perez-8 submitted pull request review: [3580](https://github.com/hackforla/website/pull/3580#pullrequestreview-1121090058) at 2022-09-26 06:13 PM PDT -d-perez-8,2022-10-04T17:12:26Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1267310366) at 2022-10-04 10:12 AM PDT -d-perez-8,2022-10-04T20:14:20Z,- d-perez-8 commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1267526197) at 2022-10-04 01:14 PM PDT -d-perez-8,2022-10-04T22:23:20Z,- d-perez-8 submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1130678586) at 2022-10-04 03:23 PM PDT -d-perez-8,2022-10-08T17:33:07Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1272364476) at 2022-10-08 10:33 AM PDT -d-perez-8,2022-10-09T17:15:27Z,- d-perez-8 commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1272587782) at 2022-10-09 10:15 AM PDT -d-perez-8,2022-10-10T17:04:01Z,- d-perez-8 commented on pull request: [3601](https://github.com/hackforla/website/pull/3601#issuecomment-1273599122) at 2022-10-10 10:04 AM PDT -d-perez-8,2022-10-10T17:24:39Z,- d-perez-8 submitted pull request review: [3601](https://github.com/hackforla/website/pull/3601#pullrequestreview-1136341154) at 2022-10-10 10:24 AM PDT -d-perez-8,2022-10-12T18:34:22Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1276577690) at 2022-10-12 11:34 AM PDT -d-perez-8,2022-10-14T22:30:16Z,- d-perez-8 commented on pull request: [3620](https://github.com/hackforla/website/pull/3620#issuecomment-1279540360) at 2022-10-14 03:30 PM PDT -d-perez-8,2022-10-14T22:46:52Z,- d-perez-8 submitted pull request review: [3620](https://github.com/hackforla/website/pull/3620#pullrequestreview-1143082885) at 2022-10-14 03:46 PM PDT -d-perez-8,2022-10-17T23:21:07Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1281620730) at 2022-10-17 04:21 PM PDT -d-perez-8,2022-10-17T23:22:34Z,- d-perez-8 commented on pull request: [3629](https://github.com/hackforla/website/pull/3629#issuecomment-1281621743) at 2022-10-17 04:22 PM PDT -d-perez-8,2022-10-17T23:36:58Z,- d-perez-8 submitted pull request review: [3629](https://github.com/hackforla/website/pull/3629#pullrequestreview-1144920966) at 2022-10-17 04:36 PM PDT -d-perez-8,2022-10-17T23:44:35Z,- d-perez-8 commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1281636086) at 2022-10-17 04:44 PM PDT -d-perez-8,2022-10-19T01:44:21Z,- d-perez-8 submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1146737001) at 2022-10-18 06:44 PM PDT -d-perez-8,2022-10-23T17:52:48Z,- d-perez-8 unassigned from issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286080470) at 2022-10-23 10:52 AM PDT -d-perez-8,2022-11-06T19:15:05Z,- d-perez-8 unassigned from issue: [2198](https://github.com/hackforla/website/issues/2198#event-7228040529) at 2022-11-06 11:15 AM PST -d-perez-8,2022-11-06T19:15:13Z,- d-perez-8 unassigned from issue: [2199](https://github.com/hackforla/website/issues/2199#event-7282462601) at 2022-11-06 11:15 AM PST -d-perez-8,2022-11-08T19:57:51Z,- d-perez-8 assigned to issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1304874482) at 2022-11-08 11:57 AM PST -d-perez-8,2022-11-15T01:30:52Z,- d-perez-8 commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314634006) at 2022-11-14 05:30 PM PST -d-perez-8,2022-11-15T01:46:22Z,- d-perez-8 submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1180081974) at 2022-11-14 05:46 PM PST -d-perez-8,2023-01-20T00:36:53Z,- d-perez-8 assigned to issue: [3761](https://github.com/hackforla/website/issues/3761#issuecomment-1336128568) at 2023-01-19 04:36 PM PST -d-perez-8,2023-01-20T00:37:56Z,- d-perez-8 commented on issue: [3761](https://github.com/hackforla/website/issues/3761#issuecomment-1397786950) at 2023-01-19 04:37 PM PST -d-perez-8,2023-01-20T01:57:19Z,- d-perez-8 opened pull request: [3845](https://github.com/hackforla/website/pull/3845) at 2023-01-19 05:57 PM PST -d-perez-8,2023-01-22T19:31:29Z,- d-perez-8 opened issue: [3852](https://github.com/hackforla/website/issues/3852) at 2023-01-22 11:31 AM PST -d-perez-8,2023-01-22T19:37:04Z,- d-perez-8 assigned to issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1272583281) at 2023-01-22 11:37 AM PST -d-perez-8,2023-01-22T20:00:22Z,- d-perez-8 opened issue: [3853](https://github.com/hackforla/website/issues/3853) at 2023-01-22 12:00 PM PST -d-perez-8,2023-01-22T20:03:56Z,- d-perez-8 opened issue: [3854](https://github.com/hackforla/website/issues/3854) at 2023-01-22 12:03 PM PST -d-perez-8,2023-01-22T20:05:46Z,- d-perez-8 opened issue: [3855](https://github.com/hackforla/website/issues/3855) at 2023-01-22 12:05 PM PST -d-perez-8,2023-01-22T20:11:00Z,- d-perez-8 opened issue: [3856](https://github.com/hackforla/website/issues/3856) at 2023-01-22 12:11 PM PST -d-perez-8,2023-01-22T20:13:26Z,- d-perez-8 opened issue: [3857](https://github.com/hackforla/website/issues/3857) at 2023-01-22 12:13 PM PST -d-perez-8,2023-01-22T20:21:57Z,- d-perez-8 commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399597413) at 2023-01-22 12:21 PM PST -d-perez-8,2023-01-22T21:33:06Z,- d-perez-8 unassigned from issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399614108) at 2023-01-22 01:33 PM PST -d-perez-8,2023-01-23T23:05:48Z,- d-perez-8 commented on pull request: [3847](https://github.com/hackforla/website/pull/3847#issuecomment-1401126521) at 2023-01-23 03:05 PM PST -d-perez-8,2023-01-23T23:42:38Z,- d-perez-8 submitted pull request review: [3847](https://github.com/hackforla/website/pull/3847#pullrequestreview-1266600511) at 2023-01-23 03:42 PM PST -d-perez-8,2023-01-23T23:44:49Z,- d-perez-8 commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1401158710) at 2023-01-23 03:44 PM PST -d-perez-8,2023-01-24T00:00:11Z,- d-perez-8 submitted pull request review: [3850](https://github.com/hackforla/website/pull/3850#pullrequestreview-1266613042) at 2023-01-23 04:00 PM PST -d-perez-8,2023-01-28T04:21:09Z,- d-perez-8 commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1407283446) at 2023-01-27 08:21 PM PST -d-perez-8,2023-01-29T18:14:58Z,- d-perez-8 commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1407733079) at 2023-01-29 10:14 AM PST -d-perez-8,2023-01-29T18:40:22Z,- d-perez-8 commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1407739131) at 2023-01-29 10:40 AM PST -d-perez-8,2023-01-30T22:19:32Z,- d-perez-8 submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1276123558) at 2023-01-30 02:19 PM PST -d-perez-8,2023-01-30T23:22:05Z,- d-perez-8 opened issue: [3903](https://github.com/hackforla/website/issues/3903) at 2023-01-30 03:22 PM PST -d-perez-8,2023-01-31T22:16:55Z,- d-perez-8 commented on pull request: [3896](https://github.com/hackforla/website/pull/3896#issuecomment-1411143510) at 2023-01-31 02:16 PM PST -d-perez-8,2023-01-31T22:32:47Z,- d-perez-8 submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1278122507) at 2023-01-31 02:32 PM PST -d-perez-8,2023-01-31T22:54:49Z,- d-perez-8 submitted pull request review: [3896](https://github.com/hackforla/website/pull/3896#pullrequestreview-1278147870) at 2023-01-31 02:54 PM PST -d-perez-8,2023-01-31T23:09:36Z,- d-perez-8 commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1411199005) at 2023-01-31 03:09 PM PST -d-perez-8,2023-01-31T23:50:54Z,- d-perez-8 submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1278196868) at 2023-01-31 03:50 PM PST -d-perez-8,2023-02-01T02:15:32Z,- d-perez-8 pull request merged: [3845](https://github.com/hackforla/website/pull/3845#event-8405553638) at 2023-01-31 06:15 PM PST -d-perez-8,2023-02-04T23:59:53Z,- d-perez-8 commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1416879632) at 2023-02-04 03:59 PM PST -d-perez-8,2023-02-07T22:52:19Z,- d-perez-8 commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1421579595) at 2023-02-07 02:52 PM PST -d-perez-8,2023-02-21T17:38:34Z,- d-perez-8 assigned to issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1427107968) at 2023-02-21 09:38 AM PST -d-perez-8,2023-02-21T17:45:44Z,- d-perez-8 commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1438874061) at 2023-02-21 09:45 AM PST -d-perez-8,2023-02-21T18:38:03Z,- d-perez-8 opened pull request: [4020](https://github.com/hackforla/website/pull/4020) at 2023-02-21 10:38 AM PST -d-perez-8,2023-02-21T19:05:39Z,- d-perez-8 submitted pull request review: [4019](https://github.com/hackforla/website/pull/4019#pullrequestreview-1308018388) at 2023-02-21 11:05 AM PST -d-perez-8,2023-02-22T22:31:04Z,- d-perez-8 commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1440905087) at 2023-02-22 02:31 PM PST -d-perez-8,2023-02-24T16:38:23Z,- d-perez-8 pull request closed w/o merging: [4020](https://github.com/hackforla/website/pull/4020#event-8603742243) at 2023-02-24 08:38 AM PST -d-perez-8,2023-02-24T16:52:14Z,- d-perez-8 commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1444007126) at 2023-02-24 08:52 AM PST -d-perez-8,2023-02-24T16:55:12Z,- d-perez-8 opened pull request: [4034](https://github.com/hackforla/website/pull/4034) at 2023-02-24 08:55 AM PST -d-perez-8,2023-02-26T20:16:30Z,- d-perez-8 pull request merged: [4034](https://github.com/hackforla/website/pull/4034#event-8610114438) at 2023-02-26 12:16 PM PST -d-perez-8,2023-03-01T22:56:28Z,- d-perez-8 assigned to issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1444584350) at 2023-03-01 02:56 PM PST -d-perez-8,2023-03-01T22:57:55Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1450978723) at 2023-03-01 02:57 PM PST -d-perez-8,2023-03-02T01:54:35Z,- d-perez-8 commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1451156157) at 2023-03-01 05:54 PM PST -d-perez-8,2023-03-02T02:54:41Z,- d-perez-8 commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1451196763) at 2023-03-01 06:54 PM PST -d-perez-8,2023-03-02T19:07:33Z,- d-perez-8 commented on pull request: [4091](https://github.com/hackforla/website/pull/4091#issuecomment-1452415011) at 2023-03-02 11:07 AM PST -d-perez-8,2023-03-02T19:22:04Z,- d-perez-8 submitted pull request review: [4091](https://github.com/hackforla/website/pull/4091#pullrequestreview-1322476139) at 2023-03-02 11:22 AM PST -d-perez-8,2023-03-02T19:23:14Z,- d-perez-8 commented on pull request: [4086](https://github.com/hackforla/website/pull/4086#issuecomment-1452432108) at 2023-03-02 11:23 AM PST -d-perez-8,2023-03-02T19:37:35Z,- d-perez-8 submitted pull request review: [4086](https://github.com/hackforla/website/pull/4086#pullrequestreview-1322496597) at 2023-03-02 11:37 AM PST -d-perez-8,2023-03-03T22:33:54Z,- d-perez-8 commented on pull request: [4093](https://github.com/hackforla/website/pull/4093#issuecomment-1454216535) at 2023-03-03 02:33 PM PST -d-perez-8,2023-03-03T22:46:33Z,- d-perez-8 submitted pull request review: [4093](https://github.com/hackforla/website/pull/4093#pullrequestreview-1324701863) at 2023-03-03 02:46 PM PST -d-perez-8,2023-03-04T00:36:02Z,- d-perez-8 submitted pull request review: [4093](https://github.com/hackforla/website/pull/4093#pullrequestreview-1324789954) at 2023-03-03 04:36 PM PST -d-perez-8,2023-03-05T00:06:04Z,- d-perez-8 commented on pull request: [4094](https://github.com/hackforla/website/pull/4094#issuecomment-1454930123) at 2023-03-04 04:06 PM PST -d-perez-8,2023-03-05T00:15:30Z,- d-perez-8 submitted pull request review: [4094](https://github.com/hackforla/website/pull/4094#pullrequestreview-1325138692) at 2023-03-04 04:15 PM PST -d-perez-8,2023-03-07T01:14:08Z,- d-perez-8 commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1457316842) at 2023-03-06 05:14 PM PST -d-perez-8,2023-03-07T01:51:28Z,- d-perez-8 submitted pull request review: [4106](https://github.com/hackforla/website/pull/4106#pullrequestreview-1327509133) at 2023-03-06 05:51 PM PST -d-perez-8,2023-03-07T01:59:57Z,- d-perez-8 commented on pull request: [4107](https://github.com/hackforla/website/pull/4107#issuecomment-1457372859) at 2023-03-06 05:59 PM PST -d-perez-8,2023-03-07T02:15:26Z,- d-perez-8 submitted pull request review: [4107](https://github.com/hackforla/website/pull/4107#pullrequestreview-1327530812) at 2023-03-06 06:15 PM PST -d-perez-8,2023-03-08T18:12:02Z,- d-perez-8 submitted pull request review: [4106](https://github.com/hackforla/website/pull/4106#pullrequestreview-1331193825) at 2023-03-08 10:12 AM PST -d-perez-8,2023-03-20T23:22:48Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1477079736) at 2023-03-20 04:22 PM PDT -d-perez-8,2023-03-29T02:06:12Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1487845034) at 2023-03-28 07:06 PM PDT -d-perez-8,2023-03-29T03:19:09Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1487889927) at 2023-03-28 08:19 PM PDT -d-perez-8,2023-03-29T03:32:09Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1487897003) at 2023-03-28 08:32 PM PDT -d-perez-8,2023-04-25T21:32:38Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1522449302) at 2023-04-25 02:32 PM PDT -d-perez-8,2023-05-15T02:46:55Z,- d-perez-8 unassigned from issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1545289300) at 2023-05-14 07:46 PM PDT -DABSOLUTERRITORY,6425,SKILLS ISSUE -DABSOLUTERRITORY,2024-03-05T03:55:04Z,- DABSOLUTERRITORY opened issue: [6425](https://github.com/hackforla/website/issues/6425) at 2024-03-04 07:55 PM PST -DABSOLUTERRITORY,2024-03-05T03:59:00Z,- DABSOLUTERRITORY assigned to issue: [6425](https://github.com/hackforla/website/issues/6425) at 2024-03-04 07:59 PM PST -dakahn93,4626,SKILLS ISSUE -dakahn93,2023-05-09T03:34:15Z,- dakahn93 opened issue: [4626](https://github.com/hackforla/website/issues/4626) at 2023-05-08 08:34 PM PDT -dakahn93,2023-05-09T04:02:57Z,- dakahn93 assigned to issue: [4626](https://github.com/hackforla/website/issues/4626) at 2023-05-08 09:02 PM PDT -dakahn93,2023-06-21T00:39:19Z,- dakahn93 assigned to issue: [4793](https://github.com/hackforla/website/issues/4793) at 2023-06-20 05:39 PM PDT -dakahn93,2023-06-21T03:32:21Z,- dakahn93 unassigned from issue: [4793](https://github.com/hackforla/website/issues/4793) at 2023-06-20 08:32 PM PDT -dakahn93,2023-07-10T06:04:19Z,- dakahn93 commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1628296302) at 2023-07-09 11:04 PM PDT -DakuwoN,4723,SKILLS ISSUE -DakuwoN,7593,SKILLS ISSUE -DakuwoN,2023-05-24T03:46:16Z,- DakuwoN opened issue: [4723](https://github.com/hackforla/website/issues/4723) at 2023-05-23 08:46 PM PDT -DakuwoN,2023-05-24T22:31:38Z,- DakuwoN assigned to issue: [4723](https://github.com/hackforla/website/issues/4723) at 2023-05-24 03:31 PM PDT -DakuwoN,2023-05-27T19:39:14Z,- DakuwoN assigned to issue: [4482](https://github.com/hackforla/website/issues/4482) at 2023-05-27 12:39 PM PDT -DakuwoN,2023-05-27T23:58:56Z,- DakuwoN commented on issue: [4482](https://github.com/hackforla/website/issues/4482#issuecomment-1565747296) at 2023-05-27 04:58 PM PDT -DakuwoN,2023-05-28T02:48:10Z,- DakuwoN commented on issue: [4482](https://github.com/hackforla/website/issues/4482#issuecomment-1565820335) at 2023-05-27 07:48 PM PDT -DakuwoN,2023-05-29T02:02:56Z,- DakuwoN opened pull request: [4750](https://github.com/hackforla/website/pull/4750) at 2023-05-28 07:02 PM PDT -DakuwoN,2023-05-29T02:20:07Z,- DakuwoN commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1566401704) at 2023-05-28 07:20 PM PDT -DakuwoN,2023-05-29T02:22:39Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1566403099) at 2023-05-28 07:22 PM PDT -DakuwoN,2023-06-13T22:03:24Z,- DakuwoN commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1590083726) at 2023-06-13 03:03 PM PDT -DakuwoN,2023-06-18T02:30:20Z,- DakuwoN commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1595929023) at 2023-06-17 07:30 PM PDT -DakuwoN,2023-06-18T04:55:41Z,- DakuwoN pull request merged: [4750](https://github.com/hackforla/website/pull/4750#event-9560139931) at 2023-06-17 09:55 PM PDT -DakuwoN,2023-07-21T16:58:10Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1645993585) at 2023-07-21 09:58 AM PDT -DakuwoN,2023-07-21T18:13:42Z,- DakuwoN closed issue by PR 5006: [4954](https://github.com/hackforla/website/issues/4954#event-9887826187) at 2023-07-21 11:13 AM PDT -DakuwoN,2023-07-21T18:14:09Z,- DakuwoN reopened issue: [4954](https://github.com/hackforla/website/issues/4954#event-9887826187) at 2023-07-21 11:14 AM PDT -DakuwoN,2023-07-25T01:34:28Z,- DakuwoN commented on pull request: [5052](https://github.com/hackforla/website/pull/5052#issuecomment-1648835293) at 2023-07-24 06:34 PM PDT -DakuwoN,2023-07-26T23:13:49Z,- DakuwoN submitted pull request review: [5052](https://github.com/hackforla/website/pull/5052#pullrequestreview-1548748844) at 2023-07-26 04:13 PM PDT -DakuwoN,2023-07-30T21:54:59Z,- DakuwoN commented on pull request: [5114](https://github.com/hackforla/website/pull/5114#issuecomment-1657274873) at 2023-07-30 02:54 PM PDT -DakuwoN,2023-08-02T23:37:05Z,- DakuwoN submitted pull request review: [5114](https://github.com/hackforla/website/pull/5114#pullrequestreview-1559971395) at 2023-08-02 04:37 PM PDT -DakuwoN,2023-08-06T21:11:03Z,- DakuwoN commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1666968701) at 2023-08-06 02:11 PM PDT -DakuwoN,2023-08-08T02:10:05Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1668804081) at 2023-08-07 07:10 PM PDT -DakuwoN,2023-08-09T00:56:45Z,- DakuwoN submitted pull request review: [5152](https://github.com/hackforla/website/pull/5152#pullrequestreview-1568548055) at 2023-08-08 05:56 PM PDT -DakuwoN,2023-08-22T02:23:44Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1687317053) at 2023-08-21 07:23 PM PDT -DakuwoN,2023-09-06T23:13:20Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1709243063) at 2023-09-06 04:13 PM PDT -DakuwoN,2023-10-22T02:56:44Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1773978155) at 2023-10-21 07:56 PM PDT -DakuwoN,2023-10-24T02:03:59Z,- DakuwoN commented on pull request: [5768](https://github.com/hackforla/website/pull/5768#issuecomment-1776373583) at 2023-10-23 07:03 PM PDT -DakuwoN,2023-10-31T01:07:20Z,- DakuwoN assigned to issue: [5809](https://github.com/hackforla/website/issues/5809) at 2023-10-30 06:07 PM PDT -DakuwoN,2023-10-31T01:08:20Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1786277104) at 2023-10-30 06:08 PM PDT -DakuwoN,2023-10-31T02:40:39Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1786347532) at 2023-10-30 07:40 PM PDT -DakuwoN,2023-11-04T02:44:31Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1793313195) at 2023-11-03 06:44 PM PST -DakuwoN,2023-11-05T03:55:01Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1793627678) at 2023-11-04 07:55 PM PST -DakuwoN,2023-11-10T02:11:13Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1804968159) at 2023-11-09 06:11 PM PST -DakuwoN,2023-11-21T02:28:02Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1820114116) at 2023-11-20 06:28 PM PST -DakuwoN,2023-12-05T13:09:16Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1840763331) at 2023-12-05 05:09 AM PST -DakuwoN,2023-12-05T13:09:25Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1840763585) at 2023-12-05 05:09 AM PST -DakuwoN,2024-01-24T01:13:01Z,- DakuwoN unassigned from issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1899881564) at 2024-01-23 05:13 PM PST -DakuwoN,2024-03-23T04:31:43Z,- DakuwoN assigned to issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2008941720) at 2024-03-22 09:31 PM PDT -DakuwoN,2024-03-23T04:34:42Z,- DakuwoN commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2016344312) at 2024-03-22 09:34 PM PDT -DakuwoN,2024-03-23T05:24:29Z,- DakuwoN opened pull request: [6508](https://github.com/hackforla/website/pull/6508) at 2024-03-22 10:24 PM PDT -DakuwoN,2024-03-24T16:17:59Z,- DakuwoN commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2016858614) at 2024-03-24 09:17 AM PDT -DakuwoN,2024-03-31T03:10:33Z,- DakuwoN pull request merged: [6508](https://github.com/hackforla/website/pull/6508#event-12302225373) at 2024-03-30 08:10 PM PDT -DakuwoN,2024-06-08T01:47:07Z,- DakuwoN closed issue as completed: [3526](https://github.com/hackforla/website/issues/3526#event-13086673505) at 2024-06-07 06:47 PM PDT -DakuwoN,2024-06-26T01:44:55Z,- DakuwoN assigned to issue: [7046](https://github.com/hackforla/website/issues/7046#issuecomment-2183283496) at 2024-06-25 06:44 PM PDT -DakuwoN,2024-06-26T01:46:40Z,- DakuwoN commented on issue: [7046](https://github.com/hackforla/website/issues/7046#issuecomment-2190376331) at 2024-06-25 06:46 PM PDT -DakuwoN,2024-06-26T03:04:28Z,- DakuwoN opened pull request: [7065](https://github.com/hackforla/website/pull/7065) at 2024-06-25 08:04 PM PDT -DakuwoN,2024-06-27T16:36:08Z,- DakuwoN pull request merged: [7065](https://github.com/hackforla/website/pull/7065#event-13320342976) at 2024-06-27 09:36 AM PDT -DakuwoN,2024-10-14T20:55:15Z,- DakuwoN opened issue: [7593](https://github.com/hackforla/website/issues/7593) at 2024-10-14 01:55 PM PDT -DakuwoN,2024-10-14T20:55:53Z,- DakuwoN assigned to issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2412329553) at 2024-10-14 01:55 PM PDT -DakuwoN,2024-10-14T21:08:12Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2412347128) at 2024-10-14 02:08 PM PDT -DakuwoN,2024-10-14T21:23:17Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2412366225) at 2024-10-14 02:23 PM PDT -DakuwoN,2024-10-18T02:36:11Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2421152262) at 2024-10-17 07:36 PM PDT -DakuwoN,2024-10-18T03:07:25Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2421187755) at 2024-10-17 08:07 PM PDT -DakuwoN,2024-10-24T02:49:35Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434130457) at 2024-10-23 07:49 PM PDT -DakuwoN,2024-10-24T02:56:21Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434136830) at 2024-10-23 07:56 PM PDT -DakuwoN,2024-10-24T03:03:11Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434142832) at 2024-10-23 08:03 PM PDT -DakuwoN,2024-10-24T03:06:20Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434145630) at 2024-10-23 08:06 PM PDT -DakuwoN,2024-10-25T03:47:27Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2436762762) at 2024-10-24 08:47 PM PDT -DakuwoN,2024-10-25T03:51:06Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2436765344) at 2024-10-24 08:51 PM PDT -DakuwoN,2024-10-25T03:54:05Z,- DakuwoN assigned to issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423158875) at 2024-10-24 08:54 PM PDT -DakuwoN,2024-10-25T03:56:53Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2436769402) at 2024-10-24 08:56 PM PDT -DakuwoN,2024-10-26T03:31:54Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2439238712) at 2024-10-25 08:31 PM PDT -DakuwoN,2024-10-29T01:50:39Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2442999058) at 2024-10-28 06:50 PM PDT -DakuwoN,2024-10-29T17:12:15Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2444884124) at 2024-10-29 10:12 AM PDT -DakuwoN,2024-10-30T15:29:33Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2447554722) at 2024-10-30 08:29 AM PDT -DakuwoN,2024-10-30T19:16:07Z,- DakuwoN assigned to issue: [7438](https://github.com/hackforla/website/issues/7438) at 2024-10-30 12:16 PM PDT -DakuwoN,2024-10-30T19:16:22Z,- DakuwoN unassigned from issue: [7438](https://github.com/hackforla/website/issues/7438) at 2024-10-30 12:16 PM PDT -DakuwoN,2024-10-31T01:24:23Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2448814197) at 2024-10-30 06:24 PM PDT -DakuwoN,2024-10-31T19:14:24Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2450640539) at 2024-10-31 12:14 PM PDT -DakuwoN,2024-10-31T19:17:03Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2450644744) at 2024-10-31 12:17 PM PDT -DakuwoN,2024-10-31T22:55:18Z,- DakuwoN assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2437816624) at 2024-10-31 03:55 PM PDT -DakuwoN,2024-10-31T23:07:34Z,- DakuwoN commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2450997271) at 2024-10-31 04:07 PM PDT -DakuwoN,2024-11-01T00:55:18Z,- DakuwoN opened issue: [7681](https://github.com/hackforla/website/issues/7681) at 2024-10-31 05:55 PM PDT -DakuwoN,2024-11-03T00:23:31Z,- DakuwoN closed issue as completed: [7681](https://github.com/hackforla/website/issues/7681#event-15088694333) at 2024-11-02 04:23 PM PST -DakuwoN,2024-11-03T00:23:40Z,- DakuwoN reopened issue: [7681](https://github.com/hackforla/website/issues/7681#event-15088694333) at 2024-11-02 04:23 PM PST -DakuwoN,2024-11-03T00:27:50Z,- DakuwoN closed issue as not planned: [7681](https://github.com/hackforla/website/issues/7681#event-15088778504) at 2024-11-02 04:27 PM PST -DakuwoN,2024-11-03T01:03:21Z,- DakuwoN opened issue: [7686](https://github.com/hackforla/website/issues/7686) at 2024-11-02 05:03 PM PST -DakuwoN,2024-11-03T01:07:40Z,- DakuwoN commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2453248040) at 2024-11-02 05:07 PM PST -DakuwoN,2024-11-12T00:42:45Z,- DakuwoN unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#event-15257001601) at 2024-11-11 04:42 PM PST -DakuwoN,2024-11-12T00:55:31Z,- DakuwoN commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469370868) at 2024-11-11 04:55 PM PST -DakuwoN,2024-11-15T18:55:24Z,- DakuwoN commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2479721321) at 2024-11-15 10:55 AM PST -DakuwoN,2024-12-01T03:16:05Z,- DakuwoN assigned to issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2408803970) at 2024-11-30 07:16 PM PST -DakuwoN,2024-12-01T03:20:07Z,- DakuwoN commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2509547034) at 2024-11-30 07:20 PM PST -DakuwoN,2024-12-01T04:31:47Z,- DakuwoN opened issue: [7783](https://github.com/hackforla/website/issues/7783) at 2024-11-30 08:31 PM PST -DakuwoN,2024-12-01T04:45:46Z,- DakuwoN opened issue: [7784](https://github.com/hackforla/website/issues/7784) at 2024-11-30 08:45 PM PST -DakuwoN,2024-12-01T04:51:53Z,- DakuwoN opened issue: [7785](https://github.com/hackforla/website/issues/7785) at 2024-11-30 08:51 PM PST -DakuwoN,2024-12-01T04:54:13Z,- DakuwoN opened issue: [7786](https://github.com/hackforla/website/issues/7786) at 2024-11-30 08:54 PM PST -DakuwoN,2024-12-01T04:56:02Z,- DakuwoN opened issue: [7787](https://github.com/hackforla/website/issues/7787) at 2024-11-30 08:56 PM PST -DakuwoN,2024-12-01T04:58:47Z,- DakuwoN opened issue: [7788](https://github.com/hackforla/website/issues/7788) at 2024-11-30 08:58 PM PST -DakuwoN,2024-12-01T05:00:22Z,- DakuwoN opened issue: [7789](https://github.com/hackforla/website/issues/7789) at 2024-11-30 09:00 PM PST -DakuwoN,2024-12-08T22:38:30Z,- DakuwoN commented on issue: [7789](https://github.com/hackforla/website/issues/7789#issuecomment-2526416667) at 2024-12-08 02:38 PM PST -DakuwoN,2024-12-15T03:06:51Z,- DakuwoN commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2543426071) at 2024-12-14 07:06 PM PST -DakuwoN,2024-12-15T03:10:21Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2543426782) at 2024-12-14 07:10 PM PST -DakuwoN,2024-12-15T03:12:01Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2543427126) at 2024-12-14 07:12 PM PST -DakuwoN,2025-01-25T00:28:14Z,- DakuwoN commented on pull request: [7846](https://github.com/hackforla/website/pull/7846#issuecomment-2613651518) at 2025-01-24 04:28 PM PST -DakuwoN,2025-01-25T22:00:48Z,- DakuwoN submitted pull request review: [7846](https://github.com/hackforla/website/pull/7846#pullrequestreview-2574092865) at 2025-01-25 02:00 PM PST -DakuwoN,2025-01-31T19:47:38Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2628247583) at 2025-01-31 11:47 AM PST -DakuwoN,2025-01-31T20:51:16Z,- DakuwoN commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2628377606) at 2025-01-31 12:51 PM PST -DakuwoN,2025-02-02T00:03:46Z,- DakuwoN submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2588433712) at 2025-02-01 04:03 PM PST -DakuwoN,2025-02-20T00:19:19Z,- DakuwoN commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2670073704) at 2025-02-19 04:19 PM PST -DakuwoN,2025-02-20T00:21:06Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2670076292) at 2025-02-19 04:21 PM PST -DakuwoN,2025-05-24T01:00:52Z,- DakuwoN commented on pull request: [8156](https://github.com/hackforla/website/pull/8156#issuecomment-2906213552) at 2025-05-23 06:00 PM PDT -DakuwoN,2025-05-24T22:27:30Z,- DakuwoN submitted pull request review: [8156](https://github.com/hackforla/website/pull/8156#pullrequestreview-2866553312) at 2025-05-24 03:27 PM PDT -DakuwoN,2025-06-07T20:05:39Z,- DakuwoN assigned to issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2603652942) at 2025-06-07 01:05 PM PDT -DakuwoN,2025-06-07T20:20:51Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2952968462) at 2025-06-07 01:20 PM PDT -DakuwoN,2025-06-26T00:57:24Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3006649970) at 2025-06-25 05:57 PM PDT -DakuwoN,2025-07-07T17:37:31Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046028484) at 2025-07-07 10:37 AM PDT -DakuwoN,2025-07-07T17:42:10Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046039672) at 2025-07-07 10:42 AM PDT -DakuwoN,2025-07-07T17:47:28Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046052378) at 2025-07-07 10:47 AM PDT -DakuwoN,2025-07-07T18:05:44Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046098099) at 2025-07-07 11:05 AM PDT -DakuwoN,2025-07-15T23:07:21Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3076011038) at 2025-07-15 04:07 PM PDT -DakuwoN,2025-08-03T02:21:23Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3146922204) at 2025-08-02 07:21 PM PDT -danajeon,6526,SKILLS ISSUE -danajeon,2024-03-27T03:13:24Z,- danajeon opened issue: [6526](https://github.com/hackforla/website/issues/6526) at 2024-03-26 08:13 PM PDT -danajeon,2024-03-27T03:13:29Z,- danajeon assigned to issue: [6526](https://github.com/hackforla/website/issues/6526) at 2024-03-26 08:13 PM PDT -danajeon,2024-04-10T09:51:08Z,- danajeon assigned to issue: [6172](https://github.com/hackforla/website/issues/6172) at 2024-04-10 02:51 AM PDT -danajeon,2024-04-10T20:22:48Z,- danajeon commented on issue: [6172](https://github.com/hackforla/website/issues/6172#issuecomment-2048373784) at 2024-04-10 01:22 PM PDT -danajeon,2024-04-10T20:23:25Z,- danajeon commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2048374799) at 2024-04-10 01:23 PM PDT -danajeon,2024-04-10T20:50:48Z,- danajeon opened pull request: [6616](https://github.com/hackforla/website/pull/6616) at 2024-04-10 01:50 PM PDT -danajeon,2024-04-12T04:59:11Z,- danajeon pull request merged: [6616](https://github.com/hackforla/website/pull/6616#event-12444434286) at 2024-04-11 09:59 PM PDT -danajeon,2024-04-12T09:10:55Z,- danajeon assigned to issue: [6177](https://github.com/hackforla/website/issues/6177) at 2024-04-12 02:10 AM PDT -danajeon,2024-04-12T22:40:59Z,- danajeon opened pull request: [6631](https://github.com/hackforla/website/pull/6631) at 2024-04-12 03:40 PM PDT -danajeon,2024-04-12T22:43:33Z,- danajeon commented on issue: [6177](https://github.com/hackforla/website/issues/6177#issuecomment-2052647958) at 2024-04-12 03:43 PM PDT -danajeon,2024-04-14T04:53:50Z,- danajeon pull request merged: [6631](https://github.com/hackforla/website/pull/6631#event-12459470358) at 2024-04-13 09:53 PM PDT -danajeon,2024-04-15T08:18:58Z,- danajeon assigned to issue: [6498](https://github.com/hackforla/website/issues/6498) at 2024-04-15 01:18 AM PDT -danajeon,2024-04-15T08:43:44Z,- danajeon commented on issue: [6498](https://github.com/hackforla/website/issues/6498#issuecomment-2056230857) at 2024-04-15 01:43 AM PDT -danajeon,2024-04-17T19:39:10Z,- danajeon assigned to issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2049021209) at 2024-04-17 12:39 PM PDT -danajeon,2024-04-17T19:46:15Z,- danajeon commented on issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2062093286) at 2024-04-17 12:46 PM PDT -danajeon,2024-04-17T20:13:17Z,- danajeon commented on issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2062139729) at 2024-04-17 01:13 PM PDT -danajeon,2024-04-17T23:30:18Z,- danajeon opened pull request: [6660](https://github.com/hackforla/website/pull/6660) at 2024-04-17 04:30 PM PDT -danajeon,2024-04-23T17:50:19Z,- danajeon pull request merged: [6660](https://github.com/hackforla/website/pull/6660#event-12579436307) at 2024-04-23 10:50 AM PDT -danarchen,2020-07-31T01:15:42Z,- danarchen commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666856182) at 2020-07-30 06:15 PM PDT -DanielekPark,2021-01-20T03:11:14Z,- DanielekPark assigned to issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-761840267) at 2021-01-19 07:11 PM PST -DanielekPark,2021-01-24T00:09:43Z,- DanielekPark opened pull request: [956](https://github.com/hackforla/website/pull/956) at 2021-01-23 04:09 PM PST -DanielekPark,2021-01-24T19:48:44Z,- DanielekPark pull request merged: [956](https://github.com/hackforla/website/pull/956#event-4242859387) at 2021-01-24 11:48 AM PST -DanielekPark,2021-01-27T04:01:31Z,- DanielekPark assigned to issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-26 08:01 PM PST -DanielekPark,2021-01-27T04:03:59Z,- DanielekPark unassigned from issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-26 08:03 PM PST -DanielekPark,2021-01-27T04:05:00Z,- DanielekPark assigned to issue: [904](https://github.com/hackforla/website/issues/904) at 2021-01-26 08:05 PM PST -DanielekPark,2021-01-30T18:41:44Z,- DanielekPark commented on issue: [904](https://github.com/hackforla/website/issues/904#issuecomment-770261749) at 2021-01-30 10:41 AM PST -DanielekPark,2021-01-31T19:28:37Z,- DanielekPark assigned to issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-31 11:28 AM PST -DanielekPark,2021-01-31T19:28:47Z,- DanielekPark unassigned from issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-31 11:28 AM PST -DanielekPark,2021-01-31T20:36:40Z,- DanielekPark opened pull request: [983](https://github.com/hackforla/website/pull/983) at 2021-01-31 12:36 PM PST -DanielekPark,2021-01-31T20:40:03Z,- DanielekPark assigned to issue: [894](https://github.com/hackforla/website/issues/894) at 2021-01-31 12:40 PM PST -DanielekPark,2021-02-01T01:38:22Z,- DanielekPark pull request merged: [983](https://github.com/hackforla/website/pull/983#event-4271084862) at 2021-01-31 05:38 PM PST -DanielekPark,2021-02-03T01:35:56Z,- DanielekPark opened pull request: [986](https://github.com/hackforla/website/pull/986) at 2021-02-02 05:35 PM PST -DanielekPark,2021-02-05T02:29:01Z,- DanielekPark commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-773739324) at 2021-02-04 06:29 PM PST -DanielekPark,2021-02-08T17:44:41Z,- DanielekPark pull request merged: [986](https://github.com/hackforla/website/pull/986#event-4304797781) at 2021-02-08 09:44 AM PST -daniellen00,2020-05-12T18:49:22Z,- daniellen00 opened issue: [511](https://github.com/hackforla/website/issues/511) at 2020-05-12 11:49 AM PDT -daniellen00,2020-05-12T18:49:59Z,- daniellen00 assigned to issue: [511](https://github.com/hackforla/website/issues/511) at 2020-05-12 11:49 AM PDT -daniellen00,2020-05-13T02:18:54Z,- daniellen00 commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627704015) at 2020-05-12 07:18 PM PDT -daniellen00,2020-05-13T02:19:05Z,- daniellen00 unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627704015) at 2020-05-12 07:19 PM PDT -daniellen00,2020-05-14T21:33:58Z,- daniellen00 opened issue: [514](https://github.com/hackforla/website/issues/514) at 2020-05-14 02:33 PM PDT -daniellen00,2020-05-14T21:33:59Z,- daniellen00 assigned to issue: [514](https://github.com/hackforla/website/issues/514) at 2020-05-14 02:33 PM PDT -daniellen00,2020-05-17T18:15:17Z,- daniellen00 commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-629838730) at 2020-05-17 11:15 AM PDT -daniellen00,2020-05-19T20:49:40Z,- daniellen00 commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-631074658) at 2020-05-19 01:49 PM PDT -daniellen00,2020-05-31T20:22:43Z,- daniellen00 unassigned from issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-636516102) at 2020-05-31 01:22 PM PDT -daniellen00,2020-06-07T18:14:34Z,- daniellen00 assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-640257991) at 2020-06-07 11:14 AM PDT -daniellen00,2020-06-21T17:11:11Z,- daniellen00 unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-21 10:11 AM PDT -daniellen00,2020-06-21T17:18:00Z,- daniellen00 assigned to issue: [577](https://github.com/hackforla/website/issues/577) at 2020-06-21 10:18 AM PDT -daniellen00,2020-06-28T17:21:10Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-650796400) at 2020-06-28 10:21 AM PDT -daniellen00,2020-06-28T18:20:57Z,- daniellen00 assigned to issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640707386) at 2020-06-28 11:20 AM PDT -daniellen00,2020-07-05T17:02:41Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-653912891) at 2020-07-05 10:02 AM PDT -daniellen00,2020-07-12T17:01:07Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-657249458) at 2020-07-12 10:01 AM PDT -daniellen00,2020-07-19T16:44:23Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-660674190) at 2020-07-19 09:44 AM PDT -daniellen00,2020-07-26T16:42:11Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-664011536) at 2020-07-26 09:42 AM PDT -daniellen00,2020-07-26T17:32:35Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-664017779) at 2020-07-26 10:32 AM PDT -daniellen00,2020-08-02T06:49:50Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-667636713) at 2020-08-01 11:49 PM PDT -daniellen00,2020-08-09T16:56:25Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-671075717) at 2020-08-09 09:56 AM PDT -daniellen00,2020-08-16T16:51:00Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-674549962) at 2020-08-16 09:51 AM PDT -daniellen00,2020-08-23T16:52:37Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-678797622) at 2020-08-23 09:52 AM PDT -daniellen00,2020-08-23T17:27:50Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-678801553) at 2020-08-23 10:27 AM PDT -daniellen00,2020-08-23T18:18:53Z,- daniellen00 assigned to issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-678798581) at 2020-08-23 11:18 AM PDT -daniellen00,2020-08-25T04:42:41Z,- daniellen00 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679614051) at 2020-08-24 09:42 PM PDT -daniellen00,2020-08-30T16:46:18Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-683442913) at 2020-08-30 09:46 AM PDT -daniellen00,2020-08-30T17:51:15Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-683449801) at 2020-08-30 10:51 AM PDT -daniellen00,2020-09-06T16:58:14Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-687841442) at 2020-09-06 09:58 AM PDT -daniellen00,2020-09-19T01:44:37Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695147422) at 2020-09-18 06:44 PM PDT -daniellen00,2020-09-19T18:23:42Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695341128) at 2020-09-19 11:23 AM PDT -daniellen00,2020-09-27T17:17:27Z,- daniellen00 unassigned from issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -daniellen00,2020-10-11T16:58:20Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-706734667) at 2020-10-11 09:58 AM PDT -daniellen00,2020-10-11T17:45:10Z,- daniellen00 assigned to issue: [759](https://github.com/hackforla/website/issues/759) at 2020-10-11 10:45 AM PDT -daniellen00,2020-10-18T17:05:26Z,- daniellen00 unassigned from issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-711293458) at 2020-10-18 10:05 AM PDT -daniellen00,2021-01-24T23:41:02Z,- daniellen00 unassigned from issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766398175) at 2021-01-24 03:41 PM PST -daniellex0,2020-10-14T20:52:04Z,- daniellex0 opened issue: [780](https://github.com/hackforla/website/issues/780) at 2020-10-14 01:52 PM PDT -daniellex0,2020-10-15T18:58:46Z,- daniellex0 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-709528842) at 2020-10-15 11:58 AM PDT -daniellex0,2020-10-17T23:56:53Z,- daniellex0 commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711095244) at 2020-10-17 04:56 PM PDT -daniellex0,2020-10-18T17:05:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-711293458) at 2020-10-18 10:05 AM PDT -daniellex0,2020-10-18T17:05:27Z,- daniellex0 assigned to issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-711293458) at 2020-10-18 10:05 AM PDT -daniellex0,2020-10-25T16:47:33Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-716176907) at 2020-10-25 09:47 AM PDT -daniellex0,2020-10-25T17:07:19Z,- daniellex0 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-716179404) at 2020-10-25 10:07 AM PDT -daniellex0,2020-11-01T18:08:24Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-720128916) at 2020-11-01 10:08 AM PST -daniellex0,2020-11-01T19:24:25Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-720138512) at 2020-11-01 11:24 AM PST -daniellex0,2020-11-08T17:38:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-723642048) at 2020-11-08 09:38 AM PST -daniellex0,2020-11-10T18:12:24Z,- daniellex0 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724875607) at 2020-11-10 10:12 AM PST -daniellex0,2020-11-15T18:01:07Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-727610682) at 2020-11-15 10:01 AM PST -daniellex0,2020-11-22T18:02:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-731785636) at 2020-11-22 10:02 AM PST -daniellex0,2020-11-25T04:16:41Z,- daniellex0 commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-733452961) at 2020-11-24 08:16 PM PST -daniellex0,2020-11-29T17:56:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-735431645) at 2020-11-29 09:56 AM PST -daniellex0,2020-11-29T19:27:29Z,- daniellex0 assigned to issue: [793](https://github.com/hackforla/website/issues/793) at 2020-11-29 11:27 AM PST -daniellex0,2020-11-29T19:28:41Z,- daniellex0 assigned to issue: [801](https://github.com/hackforla/website/issues/801) at 2020-11-29 11:28 AM PST -daniellex0,2020-11-29T19:30:07Z,- daniellex0 assigned to issue: [693](https://github.com/hackforla/website/issues/693#issuecomment-718334198) at 2020-11-29 11:30 AM PST -daniellex0,2020-11-29T19:30:35Z,- daniellex0 unassigned from issue: [793](https://github.com/hackforla/website/issues/793) at 2020-11-29 11:30 AM PST -daniellex0,2020-12-02T02:49:23Z,- daniellex0 opened pull request: [823](https://github.com/hackforla/website/pull/823) at 2020-12-01 06:49 PM PST -daniellex0,2020-12-02T03:41:03Z,- daniellex0 commented on pull request: [823](https://github.com/hackforla/website/pull/823#issuecomment-736969733) at 2020-12-01 07:41 PM PST -daniellex0,2020-12-02T09:12:25Z,- daniellex0 opened pull request: [824](https://github.com/hackforla/website/pull/824) at 2020-12-02 01:12 AM PST -daniellex0,2020-12-04T22:28:14Z,- daniellex0 pull request merged: [823](https://github.com/hackforla/website/pull/823#event-4074728438) at 2020-12-04 02:28 PM PST -daniellex0,2020-12-05T07:20:27Z,- daniellex0 commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-739138606) at 2020-12-04 11:20 PM PST -daniellex0,2020-12-06T17:29:03Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-739535162) at 2020-12-06 09:29 AM PST -daniellex0,2020-12-06T17:37:26Z,- daniellex0 commented on pull request: [825](https://github.com/hackforla/website/pull/825#issuecomment-739536292) at 2020-12-06 09:37 AM PST -daniellex0,2020-12-09T01:53:37Z,- daniellex0 opened pull request: [841](https://github.com/hackforla/website/pull/841) at 2020-12-08 05:53 PM PST -daniellex0,2020-12-09T02:46:19Z,- daniellex0 pull request closed w/o merging: [824](https://github.com/hackforla/website/pull/824#event-4087695459) at 2020-12-08 06:46 PM PST -daniellex0,2020-12-09T18:33:04Z,- daniellex0 pull request merged: [841](https://github.com/hackforla/website/pull/841#event-4091396403) at 2020-12-09 10:33 AM PST -daniellex0,2020-12-13T17:47:26Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-744043095) at 2020-12-13 09:47 AM PST -daniellex0,2020-12-16T00:25:11Z,- daniellex0 commented on pull request: [845](https://github.com/hackforla/website/pull/845#issuecomment-745676690) at 2020-12-15 04:25 PM PST -daniellex0,2020-12-17T05:40:55Z,- daniellex0 commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747218769) at 2020-12-16 09:40 PM PST -daniellex0,2020-12-17T05:45:24Z,- daniellex0 commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747220673) at 2020-12-16 09:45 PM PST -daniellex0,2020-12-20T17:53:44Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-748639143) at 2020-12-20 09:53 AM PST -daniellex0,2020-12-23T02:55:30Z,- daniellex0 commented on pull request: [855](https://github.com/hackforla/website/pull/855#issuecomment-749896841) at 2020-12-22 06:55 PM PST -daniellex0,2020-12-25T00:13:16Z,- daniellex0 commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-751133436) at 2020-12-24 04:13 PM PST -daniellex0,2020-12-27T17:46:04Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-751496301) at 2020-12-27 09:46 AM PST -daniellex0,2021-01-03T12:11:48Z,- daniellex0 opened issue: [902](https://github.com/hackforla/website/issues/902) at 2021-01-03 04:11 AM PST -daniellex0,2021-01-03T12:13:10Z,- daniellex0 assigned to issue: [902](https://github.com/hackforla/website/issues/902) at 2021-01-03 04:13 AM PST -daniellex0,2021-01-03T12:27:47Z,- daniellex0 opened pull request: [903](https://github.com/hackforla/website/pull/903) at 2021-01-03 04:27 AM PST -daniellex0,2021-01-03T17:30:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-753650023) at 2021-01-03 09:30 AM PST -daniellex0,2021-01-03T20:20:08Z,- daniellex0 pull request merged: [903](https://github.com/hackforla/website/pull/903#event-4162770505) at 2021-01-03 12:20 PM PST -daniellex0,2021-01-06T23:48:10Z,- daniellex0 commented on issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-755783334) at 2021-01-06 03:48 PM PST -daniellex0,2021-01-10T17:15:25Z,- daniellex0 opened issue: [923](https://github.com/hackforla/website/issues/923) at 2021-01-10 09:15 AM PST -daniellex0,2021-01-10T17:15:26Z,- daniellex0 assigned to issue: [923](https://github.com/hackforla/website/issues/923) at 2021-01-10 09:15 AM PST -daniellex0,2021-01-10T17:25:54Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-757512244) at 2021-01-10 09:25 AM PST -daniellex0,2021-01-11T23:54:48Z,- daniellex0 submitted pull request review: [929](https://github.com/hackforla/website/pull/929#pullrequestreview-565829278) at 2021-01-11 03:54 PM PST -daniellex0,2021-01-13T05:22:56Z,- daniellex0 opened issue: [936](https://github.com/hackforla/website/issues/936) at 2021-01-12 09:22 PM PST -daniellex0,2021-01-17T10:29:12Z,- daniellex0 opened pull request: [944](https://github.com/hackforla/website/pull/944) at 2021-01-17 02:29 AM PST -daniellex0,2021-01-17T17:33:01Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-761848752) at 2021-01-17 09:33 AM PST -daniellex0,2021-01-20T03:35:10Z,- daniellex0 commented on pull request: [944](https://github.com/hackforla/website/pull/944#issuecomment-763306272) at 2021-01-19 07:35 PM PST -daniellex0,2021-01-21T02:22:29Z,- daniellex0 commented on issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-764188225) at 2021-01-20 06:22 PM PST -daniellex0,2021-01-22T19:21:39Z,- daniellex0 pull request merged: [944](https://github.com/hackforla/website/pull/944#event-4240050897) at 2021-01-22 11:21 AM PST -daniellex0,2021-01-24T12:05:07Z,- daniellex0 opened issue: [958](https://github.com/hackforla/website/issues/958) at 2021-01-24 04:05 AM PST -daniellex0,2021-01-24T12:05:07Z,- daniellex0 assigned to issue: [958](https://github.com/hackforla/website/issues/958) at 2021-01-24 04:05 AM PST -daniellex0,2021-01-24T12:20:08Z,- daniellex0 opened issue: [959](https://github.com/hackforla/website/issues/959) at 2021-01-24 04:20 AM PST -daniellex0,2021-01-24T17:24:00Z,- daniellex0 opened issue: [960](https://github.com/hackforla/website/issues/960) at 2021-01-24 09:24 AM PST -daniellex0,2021-01-24T17:48:30Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-766401851) at 2021-01-24 09:48 AM PST -daniellex0,2021-01-24T18:38:18Z,- daniellex0 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-766409985) at 2021-01-24 10:38 AM PST -daniellex0,2021-01-24T23:41:02Z,- daniellex0 assigned to issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766398175) at 2021-01-24 03:41 PM PST -daniellex0,2021-01-24T23:43:52Z,- daniellex0 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766461739) at 2021-01-24 03:43 PM PST -daniellex0,2021-01-29T19:30:43Z,- daniellex0 opened issue: [976](https://github.com/hackforla/website/issues/976) at 2021-01-29 11:30 AM PST -daniellex0,2021-01-30T23:42:56Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-579839553) at 2021-01-30 03:42 PM PST -daniellex0,2021-01-30T23:46:12Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-579839694) at 2021-01-30 03:46 PM PST -daniellex0,2021-01-31T17:37:25Z,- daniellex0 closed issue by PR 978: [976](https://github.com/hackforla/website/issues/976#event-4270564434) at 2021-01-31 09:37 AM PST -daniellex0,2021-01-31T17:41:17Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-770419754) at 2021-01-31 09:41 AM PST -daniellex0,2021-01-31T17:52:32Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-770421452) at 2021-01-31 09:52 AM PST -daniellex0,2021-01-31T18:39:14Z,- daniellex0 assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770427972) at 2021-01-31 10:39 AM PST -daniellex0,2021-02-03T00:16:56Z,- daniellex0 commented on pull request: [977](https://github.com/hackforla/website/pull/977#issuecomment-772106556) at 2021-02-02 04:16 PM PST -daniellex0,2021-02-07T01:48:34Z,- daniellex0 submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-584932491) at 2021-02-06 05:48 PM PST -daniellex0,2021-02-07T09:53:44Z,- daniellex0 submitted pull request review: [988](https://github.com/hackforla/website/pull/988#pullrequestreview-584995864) at 2021-02-07 01:53 AM PST -daniellex0,2021-02-07T10:15:54Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-584997818) at 2021-02-07 02:15 AM PST -daniellex0,2021-02-07T17:36:45Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-774715631) at 2021-02-07 09:36 AM PST -daniellex0,2021-02-07T17:42:52Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-774716676) at 2021-02-07 09:42 AM PST -daniellex0,2021-02-07T18:30:40Z,- daniellex0 unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-772784187) at 2021-02-07 10:30 AM PST -daniellex0,2021-02-07T20:58:19Z,- daniellex0 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-774761253) at 2021-02-07 12:58 PM PST -daniellex0,2021-02-07T21:17:12Z,- daniellex0 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-774769509) at 2021-02-07 01:17 PM PST -daniellex0,2021-02-07T21:25:17Z,- daniellex0 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-774770761) at 2021-02-07 01:25 PM PST -daniellex0,2021-02-09T22:56:54Z,- daniellex0 commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-776299832) at 2021-02-09 02:56 PM PST -daniellex0,2021-02-09T23:39:02Z,- daniellex0 commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-776319531) at 2021-02-09 03:39 PM PST -daniellex0,2021-02-10T00:16:00Z,- daniellex0 commented on pull request: [977](https://github.com/hackforla/website/pull/977#issuecomment-776334207) at 2021-02-09 04:16 PM PST -daniellex0,2021-02-10T00:16:18Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-587136953) at 2021-02-09 04:16 PM PST -daniellex0,2021-02-10T02:51:01Z,- daniellex0 opened issue: [1027](https://github.com/hackforla/website/issues/1027) at 2021-02-09 06:51 PM PST -daniellex0,2021-02-13T19:00:45Z,- daniellex0 commented on pull request: [988](https://github.com/hackforla/website/pull/988#issuecomment-778662790) at 2021-02-13 11:00 AM PST -daniellex0,2021-02-14T02:34:37Z,- daniellex0 commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778711541) at 2021-02-13 06:34 PM PST -daniellex0,2021-02-14T02:37:47Z,- daniellex0 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-778711840) at 2021-02-13 06:37 PM PST -daniellex0,2021-02-14T02:58:38Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-778713943) at 2021-02-13 06:58 PM PST -daniellex0,2021-02-14T03:03:24Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-778714503) at 2021-02-13 07:03 PM PST -daniellex0,2021-02-14T03:33:05Z,- daniellex0 submitted pull request review: [988](https://github.com/hackforla/website/pull/988#pullrequestreview-590012280) at 2021-02-13 07:33 PM PST -daniellex0,2021-02-14T06:08:47Z,- daniellex0 commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778733254) at 2021-02-13 10:08 PM PST -daniellex0,2021-02-14T07:00:34Z,- daniellex0 opened issue: [1041](https://github.com/hackforla/website/issues/1041) at 2021-02-13 11:00 PM PST -daniellex0,2021-02-14T07:24:30Z,- daniellex0 opened issue: [1042](https://github.com/hackforla/website/issues/1042) at 2021-02-13 11:24 PM PST -daniellex0,2021-02-14T07:44:27Z,- daniellex0 opened issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-13 11:44 PM PST -daniellex0,2021-02-14T10:02:53Z,- daniellex0 opened issue: [1044](https://github.com/hackforla/website/issues/1044) at 2021-02-14 02:02 AM PST -daniellex0,2021-02-14T10:14:55Z,- daniellex0 opened issue: [1045](https://github.com/hackforla/website/issues/1045) at 2021-02-14 02:14 AM PST -daniellex0,2021-02-14T10:30:08Z,- daniellex0 opened issue: [1046](https://github.com/hackforla/website/issues/1046) at 2021-02-14 02:30 AM PST -daniellex0,2021-02-14T16:37:55Z,- daniellex0 assigned to issue: [981](https://github.com/hackforla/website/issues/981) at 2021-02-14 08:37 AM PST -daniellex0,2021-02-14T16:38:37Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-778803076) at 2021-02-14 08:38 AM PST -daniellex0,2021-02-14T17:09:00Z,- daniellex0 opened issue: [1051](https://github.com/hackforla/website/issues/1051) at 2021-02-14 09:09 AM PST -daniellex0,2021-02-14T17:17:38Z,- daniellex0 opened issue: [1052](https://github.com/hackforla/website/issues/1052) at 2021-02-14 09:17 AM PST -daniellex0,2021-02-14T21:53:46Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-778847803) at 2021-02-14 01:53 PM PST -daniellex0,2021-02-15T00:56:24Z,- daniellex0 commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778877435) at 2021-02-14 04:56 PM PST -daniellex0,2021-02-16T20:07:54Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-780087063) at 2021-02-16 12:07 PM PST -daniellex0,2021-02-16T22:12:36Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-780151365) at 2021-02-16 02:12 PM PST -daniellex0,2021-02-17T01:36:44Z,- daniellex0 opened issue: [1063](https://github.com/hackforla/website/issues/1063) at 2021-02-16 05:36 PM PST -daniellex0,2021-02-17T01:46:39Z,- daniellex0 opened issue: [1064](https://github.com/hackforla/website/issues/1064) at 2021-02-16 05:46 PM PST -daniellex0,2021-02-19T08:33:50Z,- daniellex0 commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-781921632) at 2021-02-19 12:33 AM PST -daniellex0,2021-02-19T08:36:05Z,- daniellex0 commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-781922751) at 2021-02-19 12:36 AM PST -daniellex0,2021-02-21T04:00:25Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-782792307) at 2021-02-20 08:00 PM PST -daniellex0,2021-02-21T17:07:00Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-782889961) at 2021-02-21 09:07 AM PST -daniellex0,2021-02-21T17:10:30Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-782890486) at 2021-02-21 09:10 AM PST -daniellex0,2021-02-21T17:13:48Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-782891083) at 2021-02-21 09:13 AM PST -daniellex0,2021-02-21T17:22:30Z,- daniellex0 opened issue: [1079](https://github.com/hackforla/website/issues/1079) at 2021-02-21 09:22 AM PST -daniellex0,2021-02-21T17:32:33Z,- daniellex0 opened issue: [1080](https://github.com/hackforla/website/issues/1080) at 2021-02-21 09:32 AM PST -daniellex0,2021-02-21T17:39:08Z,- daniellex0 opened issue: [1081](https://github.com/hackforla/website/issues/1081) at 2021-02-21 09:39 AM PST -daniellex0,2021-02-21T17:46:59Z,- daniellex0 opened issue: [1082](https://github.com/hackforla/website/issues/1082) at 2021-02-21 09:46 AM PST -daniellex0,2021-02-21T17:56:40Z,- daniellex0 assigned to issue: [765](https://github.com/hackforla/website/issues/765) at 2021-02-21 09:56 AM PST -daniellex0,2021-02-21T17:58:18Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-782897793) at 2021-02-21 09:58 AM PST -daniellex0,2021-02-22T03:01:16Z,- daniellex0 commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783005597) at 2021-02-21 07:01 PM PST -daniellex0,2021-02-22T17:37:10Z,- daniellex0 commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783545055) at 2021-02-22 09:37 AM PST -daniellex0,2021-02-22T18:04:48Z,- daniellex0 submitted pull request review: [1091](https://github.com/hackforla/website/pull/1091#pullrequestreview-595631187) at 2021-02-22 10:04 AM PST -daniellex0,2021-02-23T04:32:51Z,- daniellex0 commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783869986) at 2021-02-22 08:32 PM PST -daniellex0,2021-02-25T01:50:29Z,- daniellex0 commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-785515977) at 2021-02-24 05:50 PM PST -daniellex0,2021-02-26T06:35:08Z,- daniellex0 submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599286960) at 2021-02-25 10:35 PM PST -daniellex0,2021-02-26T06:47:40Z,- daniellex0 commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-786449826) at 2021-02-25 10:47 PM PST -daniellex0,2021-02-26T07:30:54Z,- daniellex0 opened issue: [1122](https://github.com/hackforla/website/issues/1122) at 2021-02-25 11:30 PM PST -daniellex0,2021-02-26T08:38:48Z,- daniellex0 submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599356178) at 2021-02-26 12:38 AM PST -daniellex0,2021-02-26T17:38:00Z,- daniellex0 submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599797239) at 2021-02-26 09:38 AM PST -daniellex0,2021-02-26T17:39:31Z,- daniellex0 commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786791713) at 2021-02-26 09:39 AM PST -daniellex0,2021-02-26T19:02:47Z,- daniellex0 opened issue: [1123](https://github.com/hackforla/website/issues/1123) at 2021-02-26 11:02 AM PST -daniellex0,2021-02-26T19:19:32Z,- daniellex0 opened issue: [1125](https://github.com/hackforla/website/issues/1125) at 2021-02-26 11:19 AM PST -daniellex0,2021-02-26T19:35:58Z,- daniellex0 opened issue: [1126](https://github.com/hackforla/website/issues/1126) at 2021-02-26 11:35 AM PST -daniellex0,2021-02-26T19:37:56Z,- daniellex0 closed issue as completed: [1123](https://github.com/hackforla/website/issues/1123#event-4383451548) at 2021-02-26 11:37 AM PST -daniellex0,2021-02-26T19:56:37Z,- daniellex0 opened issue: [1127](https://github.com/hackforla/website/issues/1127) at 2021-02-26 11:56 AM PST -daniellex0,2021-02-26T20:17:49Z,- daniellex0 opened issue: [1128](https://github.com/hackforla/website/issues/1128) at 2021-02-26 12:17 PM PST -daniellex0,2021-02-28T16:33:06Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-787479574) at 2021-02-28 08:33 AM PST -daniellex0,2021-02-28T16:36:03Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-787480007) at 2021-02-28 08:36 AM PST -daniellex0,2021-02-28T16:38:14Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-787480336) at 2021-02-28 08:38 AM PST -daniellex0,2021-02-28T17:26:28Z,- daniellex0 opened issue: [1133](https://github.com/hackforla/website/issues/1133) at 2021-02-28 09:26 AM PST -daniellex0,2021-02-28T17:32:48Z,- daniellex0 opened issue: [1134](https://github.com/hackforla/website/issues/1134) at 2021-02-28 09:32 AM PST -daniellex0,2021-02-28T17:36:29Z,- daniellex0 opened issue: [1135](https://github.com/hackforla/website/issues/1135) at 2021-02-28 09:36 AM PST -daniellex0,2021-02-28T17:45:33Z,- daniellex0 opened issue: [1136](https://github.com/hackforla/website/issues/1136) at 2021-02-28 09:45 AM PST -daniellex0,2021-02-28T22:56:34Z,- daniellex0 opened issue: [1142](https://github.com/hackforla/website/issues/1142) at 2021-02-28 02:56 PM PST -daniellex0,2021-03-01T18:32:15Z,- daniellex0 assigned to issue: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-03-01 10:32 AM PST -daniellex0,2021-03-01T21:24:30Z,- daniellex0 assigned to issue: [1107](https://github.com/hackforla/website/issues/1107) at 2021-03-01 01:24 PM PST -daniellex0,2021-03-01T21:24:36Z,- daniellex0 unassigned from issue: [1107](https://github.com/hackforla/website/issues/1107) at 2021-03-01 01:24 PM PST -daniellex0,2021-03-01T23:18:35Z,- daniellex0 commented on issue: [1107](https://github.com/hackforla/website/issues/1107#issuecomment-788386514) at 2021-03-01 03:18 PM PST -daniellex0,2021-03-02T07:33:40Z,- daniellex0 commented on pull request: [1148](https://github.com/hackforla/website/pull/1148#issuecomment-788687780) at 2021-03-01 11:33 PM PST -daniellex0,2021-03-03T01:45:34Z,- daniellex0 opened issue: [1154](https://github.com/hackforla/website/issues/1154) at 2021-03-02 05:45 PM PST -daniellex0,2021-03-03T03:35:30Z,- daniellex0 assigned to issue: [1154](https://github.com/hackforla/website/issues/1154) at 2021-03-02 07:35 PM PST -daniellex0,2021-03-07T02:29:29Z,- daniellex0 unassigned from issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-788172848) at 2021-03-06 06:29 PM PST -daniellex0,2021-03-07T02:36:20Z,- daniellex0 commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-792176883) at 2021-03-06 06:36 PM PST -daniellex0,2021-03-07T03:20:45Z,- daniellex0 commented on pull request: [1158](https://github.com/hackforla/website/pull/1158#issuecomment-792188459) at 2021-03-06 07:20 PM PST -daniellex0,2021-03-07T03:43:04Z,- daniellex0 commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-792193174) at 2021-03-06 07:43 PM PST -daniellex0,2021-03-07T04:46:46Z,- daniellex0 opened issue: [1164](https://github.com/hackforla/website/issues/1164) at 2021-03-06 08:46 PM PST -daniellex0,2021-03-07T05:20:35Z,- daniellex0 opened issue: [1165](https://github.com/hackforla/website/issues/1165) at 2021-03-06 09:20 PM PST -daniellex0,2021-03-07T05:54:22Z,- daniellex0 opened issue: [1166](https://github.com/hackforla/website/issues/1166) at 2021-03-06 09:54 PM PST -daniellex0,2021-03-07T06:05:08Z,- daniellex0 opened issue: [1167](https://github.com/hackforla/website/issues/1167) at 2021-03-06 10:05 PM PST -daniellex0,2021-03-07T06:14:54Z,- daniellex0 opened issue: [1168](https://github.com/hackforla/website/issues/1168) at 2021-03-06 10:14 PM PST -daniellex0,2021-03-07T06:25:13Z,- daniellex0 opened issue: [1169](https://github.com/hackforla/website/issues/1169) at 2021-03-06 10:25 PM PST -daniellex0,2021-03-07T16:19:09Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-792304128) at 2021-03-07 08:19 AM PST -daniellex0,2021-03-07T16:22:49Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-792305245) at 2021-03-07 08:22 AM PST -daniellex0,2021-03-07T16:32:14Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-792306601) at 2021-03-07 08:32 AM PST -daniellex0,2021-03-07T17:56:14Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-792323796) at 2021-03-07 09:56 AM PST -daniellex0,2021-03-07T18:59:12Z,- daniellex0 assigned to issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-787488238) at 2021-03-07 10:59 AM PST -daniellex0,2021-03-09T22:31:00Z,- daniellex0 submitted pull request review: [1158](https://github.com/hackforla/website/pull/1158#pullrequestreview-608169845) at 2021-03-09 02:31 PM PST -daniellex0,2021-03-09T23:16:28Z,- daniellex0 commented on issue: [1167](https://github.com/hackforla/website/issues/1167#issuecomment-794589494) at 2021-03-09 03:16 PM PST -daniellex0,2021-03-10T01:13:19Z,- daniellex0 commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794692645) at 2021-03-09 05:13 PM PST -daniellex0,2021-03-10T02:29:08Z,- daniellex0 commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794759534) at 2021-03-09 06:29 PM PST -daniellex0,2021-03-10T02:29:26Z,- daniellex0 assigned to issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794759534) at 2021-03-09 06:29 PM PST -daniellex0,2021-03-10T18:51:13Z,- daniellex0 assigned to issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-795904141) at 2021-03-10 10:51 AM PST -daniellex0,2021-03-13T04:09:21Z,- daniellex0 commented on issue: [1166](https://github.com/hackforla/website/issues/1166#issuecomment-797862651) at 2021-03-12 09:09 PM PDT -daniellex0,2021-03-13T07:02:23Z,- daniellex0 submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-611574477) at 2021-03-13 12:02 AM PDT -daniellex0,2021-03-14T00:49:55Z,- daniellex0 opened issue: [1201](https://github.com/hackforla/website/issues/1201) at 2021-03-13 05:49 PM PDT -daniellex0,2021-03-14T00:52:39Z,- daniellex0 commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-798809755) at 2021-03-13 05:52 PM PDT -daniellex0,2021-03-14T01:50:43Z,- daniellex0 opened issue: [1202](https://github.com/hackforla/website/issues/1202) at 2021-03-13 06:50 PM PDT -daniellex0,2021-03-14T12:52:23Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-798901706) at 2021-03-14 05:52 AM PDT -daniellex0,2021-03-14T12:54:49Z,- daniellex0 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-798902020) at 2021-03-14 05:54 AM PDT -daniellex0,2021-03-14T12:59:00Z,- daniellex0 commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-798902606) at 2021-03-14 05:59 AM PDT -daniellex0,2021-03-14T13:03:44Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-798903332) at 2021-03-14 06:03 AM PDT -daniellex0,2021-03-14T13:10:47Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-798904267) at 2021-03-14 06:10 AM PDT -daniellex0,2021-03-14T16:53:11Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-798940282) at 2021-03-14 09:53 AM PDT -daniellex0,2021-03-17T00:10:49Z,- daniellex0 commented on pull request: [1211](https://github.com/hackforla/website/pull/1211#issuecomment-800696189) at 2021-03-16 05:10 PM PDT -daniellex0,2021-03-18T04:05:39Z,- daniellex0 submitted pull request review: [1211](https://github.com/hackforla/website/pull/1211#pullrequestreview-614963991) at 2021-03-17 09:05 PM PDT -daniellex0,2021-03-18T05:26:11Z,- daniellex0 opened issue: [1251](https://github.com/hackforla/website/issues/1251) at 2021-03-17 10:26 PM PDT -daniellex0,2021-03-18T06:21:41Z,- daniellex0 opened issue: [1252](https://github.com/hackforla/website/issues/1252) at 2021-03-17 11:21 PM PDT -daniellex0,2021-03-18T06:34:50Z,- daniellex0 opened issue: [1253](https://github.com/hackforla/website/issues/1253) at 2021-03-17 11:34 PM PDT -daniellex0,2021-03-18T06:50:06Z,- daniellex0 opened issue: [1254](https://github.com/hackforla/website/issues/1254) at 2021-03-17 11:50 PM PDT -daniellex0,2021-03-18T06:59:26Z,- daniellex0 opened issue: [1255](https://github.com/hackforla/website/issues/1255) at 2021-03-17 11:59 PM PDT -daniellex0,2021-03-18T07:13:48Z,- daniellex0 opened issue: [1256](https://github.com/hackforla/website/issues/1256) at 2021-03-18 12:13 AM PDT -daniellex0,2021-03-18T07:16:31Z,- daniellex0 opened issue: [1257](https://github.com/hackforla/website/issues/1257) at 2021-03-18 12:16 AM PDT -daniellex0,2021-03-18T07:36:17Z,- daniellex0 opened issue: [1258](https://github.com/hackforla/website/issues/1258) at 2021-03-18 12:36 AM PDT -daniellex0,2021-03-18T07:45:40Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-801706568) at 2021-03-18 12:45 AM PDT -daniellex0,2021-03-18T16:00:39Z,- daniellex0 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-802046277) at 2021-03-18 09:00 AM PDT -daniellex0,2021-03-19T00:54:38Z,- daniellex0 submitted pull request review: [1210](https://github.com/hackforla/website/pull/1210#pullrequestreview-615984201) at 2021-03-18 05:54 PM PDT -daniellex0,2021-03-19T01:41:15Z,- daniellex0 commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802449935) at 2021-03-18 06:41 PM PDT -daniellex0,2021-03-19T03:03:57Z,- daniellex0 commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802508185) at 2021-03-18 08:03 PM PDT -daniellex0,2021-03-19T06:54:43Z,- daniellex0 commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802601200) at 2021-03-18 11:54 PM PDT -daniellex0,2021-03-19T17:27:42Z,- daniellex0 assigned to issue: [1135](https://github.com/hackforla/website/issues/1135) at 2021-03-19 10:27 AM PDT -daniellex0,2021-03-21T08:43:42Z,- daniellex0 opened pull request: [1277](https://github.com/hackforla/website/pull/1277) at 2021-03-21 01:43 AM PDT -daniellex0,2021-03-21T09:41:33Z,- daniellex0 commented on issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-803543032) at 2021-03-21 02:41 AM PDT -daniellex0,2021-03-21T09:54:27Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-803545133) at 2021-03-21 02:54 AM PDT -daniellex0,2021-03-21T09:58:36Z,- daniellex0 commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-803545834) at 2021-03-21 02:58 AM PDT -daniellex0,2021-03-21T15:30:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-803604306) at 2021-03-21 08:30 AM PDT -daniellex0,2021-03-21T15:33:21Z,- daniellex0 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-803604904) at 2021-03-21 08:33 AM PDT -daniellex0,2021-03-21T15:38:31Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-803605901) at 2021-03-21 08:38 AM PDT -daniellex0,2021-03-21T15:43:29Z,- daniellex0 closed issue as completed: [1082](https://github.com/hackforla/website/issues/1082#event-4486878827) at 2021-03-21 08:43 AM PDT -daniellex0,2021-03-21T20:32:17Z,- daniellex0 opened issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-21 01:32 PM PDT -daniellex0,2021-03-21T20:32:17Z,- daniellex0 assigned to issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-21 01:32 PM PDT -daniellex0,2021-03-23T08:40:44Z,- daniellex0 commented on issue: [1063](https://github.com/hackforla/website/issues/1063#issuecomment-804722325) at 2021-03-23 01:40 AM PDT -daniellex0,2021-03-23T17:46:24Z,- daniellex0 opened issue: [1313](https://github.com/hackforla/website/issues/1313) at 2021-03-23 10:46 AM PDT -daniellex0,2021-03-23T17:50:06Z,- daniellex0 submitted pull request review: [1312](https://github.com/hackforla/website/pull/1312#pullrequestreview-618899781) at 2021-03-23 10:50 AM PDT -daniellex0,2021-03-23T17:56:17Z,- daniellex0 closed issue by PR 1312: [1311](https://github.com/hackforla/website/issues/1311#event-4497720974) at 2021-03-23 10:56 AM PDT -daniellex0,2021-03-24T08:15:47Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-805598342) at 2021-03-24 01:15 AM PDT -daniellex0,2021-03-24T08:46:12Z,- daniellex0 opened issue: [1322](https://github.com/hackforla/website/issues/1322) at 2021-03-24 01:46 AM PDT -daniellex0,2021-03-24T09:10:50Z,- daniellex0 opened issue: [1323](https://github.com/hackforla/website/issues/1323) at 2021-03-24 02:10 AM PDT -daniellex0,2021-03-24T09:22:10Z,- daniellex0 opened issue: [1324](https://github.com/hackforla/website/issues/1324) at 2021-03-24 02:22 AM PDT -daniellex0,2021-03-24T17:33:35Z,- daniellex0 opened issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-03-24 10:33 AM PDT -daniellex0,2021-03-26T16:35:13Z,- daniellex0 opened issue: [1329](https://github.com/hackforla/website/issues/1329) at 2021-03-26 09:35 AM PDT -daniellex0,2021-03-26T17:49:52Z,- daniellex0 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-808408344) at 2021-03-26 10:49 AM PDT -daniellex0,2021-03-27T06:26:51Z,- daniellex0 opened issue: [1330](https://github.com/hackforla/website/issues/1330) at 2021-03-26 11:26 PM PDT -daniellex0,2021-03-27T19:18:16Z,- daniellex0 commented on pull request: [1277](https://github.com/hackforla/website/pull/1277#issuecomment-808789266) at 2021-03-27 12:18 PM PDT -daniellex0,2021-03-27T21:54:37Z,- daniellex0 opened issue: [1331](https://github.com/hackforla/website/issues/1331) at 2021-03-27 02:54 PM PDT -daniellex0,2021-03-27T22:48:03Z,- daniellex0 opened issue: [1332](https://github.com/hackforla/website/issues/1332) at 2021-03-27 03:48 PM PDT -daniellex0,2021-03-27T22:57:19Z,- daniellex0 opened issue: [1333](https://github.com/hackforla/website/issues/1333) at 2021-03-27 03:57 PM PDT -daniellex0,2021-03-27T22:57:38Z,- daniellex0 closed issue as completed: [1330](https://github.com/hackforla/website/issues/1330#event-4517616654) at 2021-03-27 03:57 PM PDT -daniellex0,2021-03-27T22:57:53Z,- daniellex0 closed issue as completed: [1324](https://github.com/hackforla/website/issues/1324#event-4517616821) at 2021-03-27 03:57 PM PDT -daniellex0,2021-03-28T00:52:20Z,- daniellex0 opened issue: [1335](https://github.com/hackforla/website/issues/1335) at 2021-03-27 05:52 PM PDT -daniellex0,2021-03-28T01:21:55Z,- daniellex0 opened issue: [1336](https://github.com/hackforla/website/issues/1336) at 2021-03-27 06:21 PM PDT -daniellex0,2021-03-28T01:38:10Z,- daniellex0 commented on pull request: [1327](https://github.com/hackforla/website/pull/1327#issuecomment-808829723) at 2021-03-27 06:38 PM PDT -daniellex0,2021-03-28T01:41:20Z,- daniellex0 commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-808829934) at 2021-03-27 06:41 PM PDT -daniellex0,2021-03-28T08:37:02Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-808865984) at 2021-03-28 01:37 AM PDT -daniellex0,2021-03-28T08:45:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-808866750) at 2021-03-28 01:45 AM PDT -daniellex0,2021-03-28T08:59:42Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808867883) at 2021-03-28 01:59 AM PDT -daniellex0,2021-03-28T09:11:14Z,- daniellex0 commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-808869173) at 2021-03-28 02:11 AM PDT -daniellex0,2021-03-28T09:13:54Z,- daniellex0 commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-808869426) at 2021-03-28 02:13 AM PDT -daniellex0,2021-03-28T09:20:01Z,- daniellex0 commented on issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-03-28 02:20 AM PDT -daniellex0,2021-03-28T09:31:34Z,- daniellex0 assigned to issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-03-28 02:31 AM PDT -daniellex0,2021-03-28T09:31:54Z,- daniellex0 unassigned from issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-03-28 02:31 AM PDT -daniellex0,2021-03-28T16:29:45Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-808920643) at 2021-03-28 09:29 AM PDT -daniellex0,2021-03-28T16:34:20Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-808921357) at 2021-03-28 09:34 AM PDT -daniellex0,2021-03-28T16:36:01Z,- daniellex0 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-808921555) at 2021-03-28 09:36 AM PDT -daniellex0,2021-03-28T17:35:45Z,- daniellex0 assigned to issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808867883) at 2021-03-28 10:35 AM PDT -daniellex0,2021-03-28T17:36:27Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808929786) at 2021-03-28 10:36 AM PDT -daniellex0,2021-03-29T02:14:34Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-809018995) at 2021-03-28 07:14 PM PDT -daniellex0,2021-03-31T02:52:18Z,- daniellex0 pull request merged: [1277](https://github.com/hackforla/website/pull/1277#event-4531603673) at 2021-03-30 07:52 PM PDT -daniellex0,2021-04-01T07:33:58Z,- daniellex0 unassigned from issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-770400258) at 2021-04-01 12:33 AM PDT -daniellex0,2021-04-02T04:52:57Z,- daniellex0 unassigned from issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808929786) at 2021-04-01 09:52 PM PDT -daniellex0,2021-04-02T04:54:01Z,- daniellex0 unassigned from issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-808921555) at 2021-04-01 09:54 PM PDT -daniellex0,2021-04-02T04:54:47Z,- daniellex0 unassigned from issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-04-01 09:54 PM PDT -daniellex0,2021-04-02T04:56:29Z,- daniellex0 unassigned from issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-808869426) at 2021-04-01 09:56 PM PDT -daniellex0,2021-04-02T04:57:05Z,- daniellex0 unassigned from issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-808921357) at 2021-04-01 09:57 PM PDT -daniellex0,2021-04-03T23:31:19Z,- daniellex0 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-812940676) at 2021-04-03 04:31 PM PDT -daniellex0,2021-04-04T09:36:00Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-813003441) at 2021-04-04 02:36 AM PDT -daniellex0,2021-04-04T09:44:33Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-813004416) at 2021-04-04 02:44 AM PDT -daniellex0,2021-04-04T16:32:41Z,- daniellex0 submitted pull request review: [1288](https://github.com/hackforla/website/pull/1288#pullrequestreview-627554611) at 2021-04-04 09:32 AM PDT -daniellex0,2021-04-05T18:20:55Z,- daniellex0 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-813555999) at 2021-04-05 11:20 AM PDT -daniellex0,2021-04-05T19:49:24Z,- daniellex0 commented on issue: [1253](https://github.com/hackforla/website/issues/1253#issuecomment-813611111) at 2021-04-05 12:49 PM PDT -daniellex0,2021-04-05T22:24:47Z,- daniellex0 commented on issue: [1253](https://github.com/hackforla/website/issues/1253#issuecomment-813685022) at 2021-04-05 03:24 PM PDT -daniellex0,2021-04-06T18:10:27Z,- daniellex0 commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-814331312) at 2021-04-06 11:10 AM PDT -daniellex0,2021-04-07T00:44:05Z,- daniellex0 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-814522084) at 2021-04-06 05:44 PM PDT -daniellex0,2021-04-08T16:58:17Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-815985535) at 2021-04-08 09:58 AM PDT -daniellex0,2021-04-08T17:29:21Z,- daniellex0 commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816006238) at 2021-04-08 10:29 AM PDT -daniellex0,2021-04-08T19:57:44Z,- daniellex0 commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816127054) at 2021-04-08 12:57 PM PDT -daniellex0,2021-04-08T19:59:19Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816128653) at 2021-04-08 12:59 PM PDT -daniellex0,2021-04-08T20:36:57Z,- daniellex0 commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816168932) at 2021-04-08 01:36 PM PDT -daniellex0,2021-04-08T21:11:32Z,- daniellex0 opened issue: [1379](https://github.com/hackforla/website/issues/1379) at 2021-04-08 02:11 PM PDT -daniellex0,2021-04-08T21:13:13Z,- daniellex0 commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-816206454) at 2021-04-08 02:13 PM PDT -daniellex0,2021-04-08T21:14:44Z,- daniellex0 commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-816207979) at 2021-04-08 02:14 PM PDT -daniellex0,2021-04-08T21:18:54Z,- daniellex0 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-816212225) at 2021-04-08 02:18 PM PDT -daniellex0,2021-04-08T21:26:02Z,- daniellex0 opened issue: [1380](https://github.com/hackforla/website/issues/1380) at 2021-04-08 02:26 PM PDT -daniellex0,2021-04-08T21:45:52Z,- daniellex0 opened issue: [1381](https://github.com/hackforla/website/issues/1381) at 2021-04-08 02:45 PM PDT -daniellex0,2021-04-08T21:51:00Z,- daniellex0 commented on issue: [1381](https://github.com/hackforla/website/issues/1381#issuecomment-816247959) at 2021-04-08 02:51 PM PDT -daniellex0,2021-04-10T02:33:38Z,- daniellex0 submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-632881282) at 2021-04-09 07:33 PM PDT -daniellex0,2021-04-10T02:44:18Z,- daniellex0 commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-817066275) at 2021-04-09 07:44 PM PDT -daniellex0,2021-04-10T02:49:39Z,- daniellex0 commented on pull request: [1377](https://github.com/hackforla/website/pull/1377#issuecomment-817066775) at 2021-04-09 07:49 PM PDT -daniellex0,2021-04-10T02:49:52Z,- daniellex0 submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-632882284) at 2021-04-09 07:49 PM PDT -daniellex0,2021-04-10T02:51:07Z,- daniellex0 commented on pull request: [1377](https://github.com/hackforla/website/pull/1377#issuecomment-817066941) at 2021-04-09 07:51 PM PDT -daniellex0,2021-04-10T02:52:19Z,- daniellex0 commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-817067068) at 2021-04-09 07:52 PM PDT -daniellex0,2021-04-10T03:36:30Z,- daniellex0 submitted pull request review: [1288](https://github.com/hackforla/website/pull/1288#pullrequestreview-632885312) at 2021-04-09 08:36 PM PDT -daniellex0,2021-04-11T05:12:41Z,- daniellex0 opened issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-10 10:12 PM PDT -daniellex0,2021-04-11T05:21:17Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-817250461) at 2021-04-10 10:21 PM PDT -daniellex0,2021-04-11T05:41:55Z,- daniellex0 opened issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-10 10:41 PM PDT -daniellex0,2021-04-11T05:54:01Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-817253949) at 2021-04-10 10:54 PM PDT -daniellex0,2021-04-11T05:55:41Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-817254112) at 2021-04-10 10:55 PM PDT -daniellex0,2021-04-11T14:50:15Z,- daniellex0 submitted pull request review: [1386](https://github.com/hackforla/website/pull/1386#pullrequestreview-633021524) at 2021-04-11 07:50 AM PDT -daniellex0,2021-04-12T03:02:22Z,- daniellex0 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-817446071) at 2021-04-11 08:02 PM PDT -daniellex0,2021-04-13T18:06:51Z,- daniellex0 submitted pull request review: [1386](https://github.com/hackforla/website/pull/1386#pullrequestreview-634886843) at 2021-04-13 11:06 AM PDT -daniellex0,2021-04-13T18:49:46Z,- daniellex0 opened issue: [1402](https://github.com/hackforla/website/issues/1402) at 2021-04-13 11:49 AM PDT -daniellex0,2021-04-13T20:23:06Z,- daniellex0 submitted pull request review: [1362](https://github.com/hackforla/website/pull/1362#pullrequestreview-634993609) at 2021-04-13 01:23 PM PDT -daniellex0,2021-04-13T21:34:03Z,- daniellex0 commented on pull request: [1362](https://github.com/hackforla/website/pull/1362#issuecomment-819069274) at 2021-04-13 02:34 PM PDT -daniellex0,2021-04-15T00:58:08Z,- daniellex0 commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819943514) at 2021-04-14 05:58 PM PDT -daniellex0,2021-04-18T05:20:08Z,- daniellex0 submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-638294296) at 2021-04-17 10:20 PM PDT -daniellex0,2021-04-18T06:31:53Z,- daniellex0 submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-638297744) at 2021-04-17 11:31 PM PDT -daniellex0,2021-04-18T06:44:10Z,- daniellex0 commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-821943465) at 2021-04-17 11:44 PM PDT -daniellex0,2021-04-18T07:06:01Z,- daniellex0 commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-821945590) at 2021-04-18 12:06 AM PDT -daniellex0,2021-04-18T07:47:03Z,- daniellex0 commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-821949657) at 2021-04-18 12:47 AM PDT -daniellex0,2021-04-18T07:54:22Z,- daniellex0 commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-821950485) at 2021-04-18 12:54 AM PDT -daniellex0,2021-04-18T09:50:29Z,- daniellex0 submitted pull request review: [1406](https://github.com/hackforla/website/pull/1406#pullrequestreview-638312655) at 2021-04-18 02:50 AM PDT -daniellex0,2021-04-18T10:19:45Z,- daniellex0 opened issue: [1413](https://github.com/hackforla/website/issues/1413) at 2021-04-18 03:19 AM PDT -daniellex0,2021-04-18T10:24:39Z,- daniellex0 reopened issue: [1346](https://github.com/hackforla/website/issues/1346#event-4590048717) at 2021-04-18 03:24 AM PDT -daniellex0,2021-04-18T10:26:36Z,- daniellex0 commented on issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-821969415) at 2021-04-18 03:26 AM PDT -daniellex0,2021-04-18T10:39:30Z,- daniellex0 opened issue: [1414](https://github.com/hackforla/website/issues/1414) at 2021-04-18 03:39 AM PDT -daniellex0,2021-04-18T10:51:50Z,- daniellex0 opened issue: [1415](https://github.com/hackforla/website/issues/1415) at 2021-04-18 03:51 AM PDT -daniellex0,2021-04-18T16:09:17Z,- daniellex0 commented on issue: [1381](https://github.com/hackforla/website/issues/1381#issuecomment-822016427) at 2021-04-18 09:09 AM PDT -daniellex0,2021-04-18T16:09:22Z,- daniellex0 closed issue as completed: [1381](https://github.com/hackforla/website/issues/1381#event-4609243345) at 2021-04-18 09:09 AM PDT -daniellex0,2021-04-18T16:16:23Z,- daniellex0 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-822017491) at 2021-04-18 09:16 AM PDT -daniellex0,2021-04-18T16:21:21Z,- daniellex0 opened issue: [1416](https://github.com/hackforla/website/issues/1416) at 2021-04-18 09:21 AM PDT -daniellex0,2021-04-18T16:24:26Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-822018631) at 2021-04-18 09:24 AM PDT -daniellex0,2021-04-18T16:29:40Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-822019366) at 2021-04-18 09:29 AM PDT -daniellex0,2021-04-18T16:30:52Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-822019562) at 2021-04-18 09:30 AM PDT -daniellex0,2021-04-19T21:16:27Z,- daniellex0 commented on pull request: [1421](https://github.com/hackforla/website/pull/1421#issuecomment-822790317) at 2021-04-19 02:16 PM PDT -daniellex0,2021-04-21T00:44:09Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-823695084) at 2021-04-20 05:44 PM PDT -daniellex0,2021-04-21T00:44:54Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-823695302) at 2021-04-20 05:44 PM PDT -daniellex0,2021-04-21T00:50:05Z,- daniellex0 commented on pull request: [1423](https://github.com/hackforla/website/pull/1423#issuecomment-823696917) at 2021-04-20 05:50 PM PDT -daniellex0,2021-04-24T07:10:39Z,- daniellex0 commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826048010) at 2021-04-24 12:10 AM PDT -daniellex0,2021-04-24T08:04:27Z,- daniellex0 opened issue: [1452](https://github.com/hackforla/website/issues/1452) at 2021-04-24 01:04 AM PDT -daniellex0,2021-04-24T21:06:15Z,- daniellex0 opened issue: [1456](https://github.com/hackforla/website/issues/1456) at 2021-04-24 02:06 PM PDT -daniellex0,2021-04-24T21:52:17Z,- daniellex0 opened issue: [1457](https://github.com/hackforla/website/issues/1457) at 2021-04-24 02:52 PM PDT -daniellex0,2021-04-24T22:19:12Z,- daniellex0 opened issue: [1458](https://github.com/hackforla/website/issues/1458) at 2021-04-24 03:19 PM PDT -daniellex0,2021-04-25T15:04:07Z,- daniellex0 commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826339101) at 2021-04-25 08:04 AM PDT -daniellex0,2021-04-25T15:19:39Z,- daniellex0 submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-644151724) at 2021-04-25 08:19 AM PDT -daniellex0,2021-04-25T15:34:30Z,- daniellex0 opened issue: [1459](https://github.com/hackforla/website/issues/1459) at 2021-04-25 08:34 AM PDT -daniellex0,2021-04-25T15:42:59Z,- daniellex0 opened issue: [1460](https://github.com/hackforla/website/issues/1460) at 2021-04-25 08:42 AM PDT -daniellex0,2021-04-25T15:47:02Z,- daniellex0 opened issue: [1461](https://github.com/hackforla/website/issues/1461) at 2021-04-25 08:47 AM PDT -daniellex0,2021-04-25T15:51:23Z,- daniellex0 commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826346087) at 2021-04-25 08:51 AM PDT -daniellex0,2021-04-25T16:00:33Z,- daniellex0 opened issue: [1462](https://github.com/hackforla/website/issues/1462) at 2021-04-25 09:00 AM PDT -daniellex0,2021-04-25T16:10:30Z,- daniellex0 opened issue: [1463](https://github.com/hackforla/website/issues/1463) at 2021-04-25 09:10 AM PDT -daniellex0,2021-04-27T16:23:10Z,- daniellex0 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-04-27 09:23 AM PDT -daniellex0,2021-04-27T23:56:54Z,- daniellex0 submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-646486458) at 2021-04-27 04:56 PM PDT -daniellex0,2021-04-28T00:09:16Z,- daniellex0 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646491171) at 2021-04-27 05:09 PM PDT -daniellex0,2021-04-28T00:46:41Z,- daniellex0 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-828057168) at 2021-04-27 05:46 PM PDT -daniellex0,2021-04-28T00:51:08Z,- daniellex0 submitted pull request review: [1467](https://github.com/hackforla/website/pull/1467#pullrequestreview-646508623) at 2021-04-27 05:51 PM PDT -daniellex0,2021-04-28T00:52:30Z,- daniellex0 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828059175) at 2021-04-27 05:52 PM PDT -daniellex0,2021-04-28T01:00:21Z,- daniellex0 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-828061818) at 2021-04-27 06:00 PM PDT -daniellex0,2021-04-28T01:22:13Z,- daniellex0 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646519332) at 2021-04-27 06:22 PM PDT -daniellex0,2021-04-28T01:53:15Z,- daniellex0 opened issue: [1479](https://github.com/hackforla/website/issues/1479) at 2021-04-27 06:53 PM PDT -daniellex0,2021-04-28T03:59:42Z,- daniellex0 assigned to issue: [1483](https://github.com/hackforla/website/issues/1483) at 2021-04-27 08:59 PM PDT -daniellex0,2021-04-28T07:26:35Z,- daniellex0 opened issue: [1487](https://github.com/hackforla/website/issues/1487) at 2021-04-28 12:26 AM PDT -daniellex0,2021-04-28T07:46:26Z,- daniellex0 opened issue: [1488](https://github.com/hackforla/website/issues/1488) at 2021-04-28 12:46 AM PDT -daniellex0,2021-04-28T07:54:15Z,- daniellex0 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828235863) at 2021-04-28 12:54 AM PDT -daniellex0,2021-04-28T08:04:24Z,- daniellex0 commented on pull request: [1484](https://github.com/hackforla/website/pull/1484#issuecomment-828243424) at 2021-04-28 01:04 AM PDT -daniellex0,2021-04-28T08:31:11Z,- daniellex0 commented on pull request: [1468](https://github.com/hackforla/website/pull/1468#issuecomment-828262110) at 2021-04-28 01:31 AM PDT -daniellex0,2021-04-28T17:18:59Z,- daniellex0 commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-828633121) at 2021-04-28 10:18 AM PDT -daniellex0,2021-04-29T00:57:20Z,- daniellex0 closed issue as completed: [1475](https://github.com/hackforla/website/issues/1475#event-4659919719) at 2021-04-28 05:57 PM PDT -daniellex0,2021-04-30T07:34:43Z,- daniellex0 commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-829904063) at 2021-04-30 12:34 AM PDT -daniellex0,2021-04-30T07:47:07Z,- daniellex0 submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-648965496) at 2021-04-30 12:47 AM PDT -daniellex0,2021-04-30T07:52:15Z,- daniellex0 submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-648969122) at 2021-04-30 12:52 AM PDT -daniellex0,2021-04-30T08:14:57Z,- daniellex0 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-829926083) at 2021-04-30 01:14 AM PDT -daniellex0,2021-04-30T08:19:17Z,- daniellex0 submitted pull request review: [1491](https://github.com/hackforla/website/pull/1491#pullrequestreview-648988802) at 2021-04-30 01:19 AM PDT -daniellex0,2021-05-01T01:16:51Z,- daniellex0 opened issue: [1497](https://github.com/hackforla/website/issues/1497) at 2021-04-30 06:16 PM PDT -daniellex0,2021-05-01T01:25:22Z,- daniellex0 opened issue: [1498](https://github.com/hackforla/website/issues/1498) at 2021-04-30 06:25 PM PDT -daniellex0,2021-05-01T01:34:48Z,- daniellex0 opened issue: [1499](https://github.com/hackforla/website/issues/1499) at 2021-04-30 06:34 PM PDT -daniellex0,2021-05-02T04:39:26Z,- daniellex0 commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830738882) at 2021-05-01 09:39 PM PDT -daniellex0,2021-05-02T16:23:42Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-830834536) at 2021-05-02 09:23 AM PDT -daniellex0,2021-05-02T16:25:44Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-830834806) at 2021-05-02 09:25 AM PDT -daniellex0,2021-05-02T17:12:56Z,- daniellex0 assigned to issue: [1469](https://github.com/hackforla/website/issues/1469) at 2021-05-02 10:12 AM PDT -daniellex0,2021-05-03T23:34:11Z,- daniellex0 closed issue as completed: [1487](https://github.com/hackforla/website/issues/1487#event-4680655844) at 2021-05-03 04:34 PM PDT -daniellex0,2021-05-03T23:34:47Z,- daniellex0 commented on issue: [1487](https://github.com/hackforla/website/issues/1487#issuecomment-831599699) at 2021-05-03 04:34 PM PDT -daniellex0,2021-05-04T07:20:13Z,- daniellex0 commented on pull request: [1502](https://github.com/hackforla/website/pull/1502#issuecomment-831734385) at 2021-05-04 12:20 AM PDT -daniellex0,2021-05-04T08:04:33Z,- daniellex0 opened issue: [1504](https://github.com/hackforla/website/issues/1504) at 2021-05-04 01:04 AM PDT -daniellex0,2021-05-04T08:08:50Z,- daniellex0 opened issue: [1505](https://github.com/hackforla/website/issues/1505) at 2021-05-04 01:08 AM PDT -daniellex0,2021-05-04T08:11:39Z,- daniellex0 commented on issue: [1505](https://github.com/hackforla/website/issues/1505#issuecomment-831760990) at 2021-05-04 01:11 AM PDT -daniellex0,2021-05-04T08:24:23Z,- daniellex0 opened issue: [1506](https://github.com/hackforla/website/issues/1506) at 2021-05-04 01:24 AM PDT -daniellex0,2021-05-04T08:25:26Z,- daniellex0 commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-831768425) at 2021-05-04 01:25 AM PDT -daniellex0,2021-05-04T08:28:11Z,- daniellex0 opened issue: [1507](https://github.com/hackforla/website/issues/1507) at 2021-05-04 01:28 AM PDT -daniellex0,2021-05-04T08:29:12Z,- daniellex0 commented on issue: [1507](https://github.com/hackforla/website/issues/1507#issuecomment-831770752) at 2021-05-04 01:29 AM PDT -daniellex0,2021-05-04T08:39:18Z,- daniellex0 reopened issue: [1249](https://github.com/hackforla/website/issues/1249#event-4674975713) at 2021-05-04 01:39 AM PDT -daniellex0,2021-05-04T08:39:56Z,- daniellex0 closed issue by PR 1493: [1249](https://github.com/hackforla/website/issues/1249#event-4682034918) at 2021-05-04 01:39 AM PDT -daniellex0,2021-05-04T08:42:45Z,- daniellex0 commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-831778794) at 2021-05-04 01:42 AM PDT -daniellex0,2021-05-05T02:12:57Z,- daniellex0 opened issue: [1511](https://github.com/hackforla/website/issues/1511) at 2021-05-04 07:12 PM PDT -daniellex0,2021-05-07T17:51:36Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-834653606) at 2021-05-07 10:51 AM PDT -daniellex0,2021-05-07T18:08:03Z,- daniellex0 commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-834663697) at 2021-05-07 11:08 AM PDT -daniellex0,2021-05-09T14:58:34Z,- daniellex0 commented on issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-835823117) at 2021-05-09 07:58 AM PDT -daniellex0,2021-05-09T15:10:17Z,- daniellex0 commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-835825288) at 2021-05-09 08:10 AM PDT -daniellex0,2021-05-09T15:10:36Z,- daniellex0 closed issue as completed: [1379](https://github.com/hackforla/website/issues/1379#event-4711107004) at 2021-05-09 08:10 AM PDT -daniellex0,2021-05-09T16:15:41Z,- daniellex0 closed issue as completed: [1079](https://github.com/hackforla/website/issues/1079#event-4711242045) at 2021-05-09 09:15 AM PDT -daniellex0,2021-05-09T16:25:55Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-835838638) at 2021-05-09 09:25 AM PDT -daniellex0,2021-05-09T17:07:46Z,- daniellex0 commented on issue: [1510](https://github.com/hackforla/website/issues/1510#issuecomment-835845319) at 2021-05-09 10:07 AM PDT -daniellex0,2021-05-09T17:10:05Z,- daniellex0 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-835845759) at 2021-05-09 10:10 AM PDT -daniellex0,2021-05-09T17:11:40Z,- daniellex0 submitted pull request review: [1491](https://github.com/hackforla/website/pull/1491#pullrequestreview-655096717) at 2021-05-09 10:11 AM PDT -daniellex0,2021-05-10T03:53:44Z,- daniellex0 submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-655211083) at 2021-05-09 08:53 PM PDT -daniellex0,2021-05-10T23:06:47Z,- daniellex0 submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-656151618) at 2021-05-10 04:06 PM PDT -daniellex0,2021-05-10T23:58:53Z,- daniellex0 commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837520280) at 2021-05-10 04:58 PM PDT -daniellex0,2021-05-16T09:12:24Z,- daniellex0 opened issue: [1548](https://github.com/hackforla/website/issues/1548) at 2021-05-16 02:12 AM PDT -daniellex0,2021-05-16T09:30:27Z,- daniellex0 opened issue: [1549](https://github.com/hackforla/website/issues/1549) at 2021-05-16 02:30 AM PDT -daniellex0,2021-05-16T09:45:18Z,- daniellex0 opened issue: [1550](https://github.com/hackforla/website/issues/1550) at 2021-05-16 02:45 AM PDT -daniellex0,2021-05-16T15:03:27Z,- daniellex0 opened issue: [1551](https://github.com/hackforla/website/issues/1551) at 2021-05-16 08:03 AM PDT -daniellex0,2021-05-16T15:21:55Z,- daniellex0 opened issue: [1552](https://github.com/hackforla/website/issues/1552) at 2021-05-16 08:21 AM PDT -daniellex0,2021-05-16T15:26:45Z,- daniellex0 closed issue as completed: [1134](https://github.com/hackforla/website/issues/1134#event-4751106410) at 2021-05-16 08:26 AM PDT -daniellex0,2021-05-16T15:27:53Z,- daniellex0 closed issue as completed: [1133](https://github.com/hackforla/website/issues/1133#event-4751107374) at 2021-05-16 08:27 AM PDT -daniellex0,2021-05-16T15:42:54Z,- daniellex0 opened issue: [1553](https://github.com/hackforla/website/issues/1553) at 2021-05-16 08:42 AM PDT -daniellex0,2021-05-16T15:56:51Z,- daniellex0 opened issue: [1554](https://github.com/hackforla/website/issues/1554) at 2021-05-16 08:56 AM PDT -daniellex0,2021-05-16T16:21:32Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-841839712) at 2021-05-16 09:21 AM PDT -daniellex0,2021-05-16T16:23:32Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-841839964) at 2021-05-16 09:23 AM PDT -daniellex0,2021-05-16T16:42:43Z,- daniellex0 opened issue: [1555](https://github.com/hackforla/website/issues/1555) at 2021-05-16 09:42 AM PDT -daniellex0,2021-05-18T02:55:23Z,- daniellex0 commented on issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-17 07:55 PM PDT -daniellex0,2021-05-19T20:10:27Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-844433943) at 2021-05-19 01:10 PM PDT -daniellex0,2021-05-19T20:31:07Z,- daniellex0 opened issue: [1592](https://github.com/hackforla/website/issues/1592) at 2021-05-19 01:31 PM PDT -daniellex0,2021-05-20T04:51:08Z,- daniellex0 commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-844690633) at 2021-05-19 09:51 PM PDT -daniellex0,2021-05-20T06:01:59Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-844726515) at 2021-05-19 11:01 PM PDT -daniellex0,2021-05-20T06:25:53Z,- daniellex0 opened issue: [1593](https://github.com/hackforla/website/issues/1593) at 2021-05-19 11:25 PM PDT -daniellex0,2021-05-20T06:30:05Z,- daniellex0 commented on issue: [1593](https://github.com/hackforla/website/issues/1593#issuecomment-844747990) at 2021-05-19 11:30 PM PDT -daniellex0,2021-05-20T06:58:14Z,- daniellex0 opened issue: [1594](https://github.com/hackforla/website/issues/1594) at 2021-05-19 11:58 PM PDT -daniellex0,2021-05-20T07:48:24Z,- daniellex0 opened issue: [1595](https://github.com/hackforla/website/issues/1595) at 2021-05-20 12:48 AM PDT -daniellex0,2021-05-20T08:21:27Z,- daniellex0 opened issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-05-20 01:21 AM PDT -daniellex0,2021-05-20T08:30:53Z,- daniellex0 opened issue: [1597](https://github.com/hackforla/website/issues/1597) at 2021-05-20 01:30 AM PDT -daniellex0,2021-05-20T08:55:03Z,- daniellex0 opened issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-05-20 01:55 AM PDT -daniellex0,2021-05-20T09:16:06Z,- daniellex0 opened issue: [1599](https://github.com/hackforla/website/issues/1599) at 2021-05-20 02:16 AM PDT -daniellex0,2021-05-20T22:18:01Z,- daniellex0 opened issue: [1600](https://github.com/hackforla/website/issues/1600) at 2021-05-20 03:18 PM PDT -daniellex0,2021-05-20T22:18:10Z,- daniellex0 commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-845517626) at 2021-05-20 03:18 PM PDT -daniellex0,2021-05-21T18:08:55Z,- daniellex0 closed issue as completed: [1555](https://github.com/hackforla/website/issues/1555#event-4780698161) at 2021-05-21 11:08 AM PDT -daniellex0,2021-05-21T18:09:05Z,- daniellex0 commented on issue: [1555](https://github.com/hackforla/website/issues/1555#issuecomment-846143479) at 2021-05-21 11:09 AM PDT -daniellex0,2021-05-23T02:05:31Z,- daniellex0 opened issue: [1605](https://github.com/hackforla/website/issues/1605) at 2021-05-22 07:05 PM PDT -daniellex0,2021-05-23T02:23:30Z,- daniellex0 opened issue: [1606](https://github.com/hackforla/website/issues/1606) at 2021-05-22 07:23 PM PDT -daniellex0,2021-05-23T02:49:43Z,- daniellex0 opened issue: [1607](https://github.com/hackforla/website/issues/1607) at 2021-05-22 07:49 PM PDT -daniellex0,2021-05-23T02:58:08Z,- daniellex0 opened issue: [1608](https://github.com/hackforla/website/issues/1608) at 2021-05-22 07:58 PM PDT -daniellex0,2021-05-23T05:33:19Z,- daniellex0 opened issue: [1610](https://github.com/hackforla/website/issues/1610) at 2021-05-22 10:33 PM PDT -daniellex0,2021-05-23T05:52:24Z,- daniellex0 opened issue: [1611](https://github.com/hackforla/website/issues/1611) at 2021-05-22 10:52 PM PDT -daniellex0,2021-05-23T06:21:37Z,- daniellex0 opened issue: [1612](https://github.com/hackforla/website/issues/1612) at 2021-05-22 11:21 PM PDT -daniellex0,2021-05-23T06:32:43Z,- daniellex0 opened issue: [1613](https://github.com/hackforla/website/issues/1613) at 2021-05-22 11:32 PM PDT -daniellex0,2021-05-23T07:19:11Z,- daniellex0 opened issue: [1614](https://github.com/hackforla/website/issues/1614) at 2021-05-23 12:19 AM PDT -daniellex0,2021-05-23T07:26:13Z,- daniellex0 opened issue: [1615](https://github.com/hackforla/website/issues/1615) at 2021-05-23 12:26 AM PDT -daniellex0,2021-05-23T07:35:23Z,- daniellex0 opened issue: [1616](https://github.com/hackforla/website/issues/1616) at 2021-05-23 12:35 AM PDT -daniellex0,2021-05-23T07:45:19Z,- daniellex0 opened issue: [1617](https://github.com/hackforla/website/issues/1617) at 2021-05-23 12:45 AM PDT -daniellex0,2021-05-23T09:09:21Z,- daniellex0 commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846530096) at 2021-05-23 02:09 AM PDT -daniellex0,2021-05-23T10:21:50Z,- daniellex0 opened issue: [1618](https://github.com/hackforla/website/issues/1618) at 2021-05-23 03:21 AM PDT -daniellex0,2021-05-23T10:27:40Z,- daniellex0 opened issue: [1619](https://github.com/hackforla/website/issues/1619) at 2021-05-23 03:27 AM PDT -daniellex0,2021-05-23T16:05:11Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-846586322) at 2021-05-23 09:05 AM PDT -daniellex0,2021-05-23T16:07:06Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-846586652) at 2021-05-23 09:07 AM PDT -daniellex0,2021-05-23T16:09:00Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-846586953) at 2021-05-23 09:09 AM PDT -daniellex0,2021-05-25T22:17:31Z,- daniellex0 opened issue: [1635](https://github.com/hackforla/website/issues/1635) at 2021-05-25 03:17 PM PDT -daniellex0,2021-05-25T22:23:28Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-848308752) at 2021-05-25 03:23 PM PDT -daniellex0,2021-05-25T22:31:02Z,- daniellex0 commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-848311809) at 2021-05-25 03:31 PM PDT -daniellex0,2021-05-25T22:38:15Z,- daniellex0 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-668429836) at 2021-05-25 03:38 PM PDT -daniellex0,2021-05-28T09:10:32Z,- daniellex0 submitted pull request review: [1636](https://github.com/hackforla/website/pull/1636#pullrequestreview-671095244) at 2021-05-28 02:10 AM PDT -daniellex0,2021-05-28T09:28:57Z,- daniellex0 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-671111044) at 2021-05-28 02:28 AM PDT -daniellex0,2021-05-28T09:42:51Z,- daniellex0 submitted pull request review: [1628](https://github.com/hackforla/website/pull/1628#pullrequestreview-671123135) at 2021-05-28 02:42 AM PDT -daniellex0,2021-05-28T09:57:07Z,- daniellex0 commented on pull request: [1620](https://github.com/hackforla/website/pull/1620#issuecomment-850302266) at 2021-05-28 02:57 AM PDT -daniellex0,2021-05-30T09:32:29Z,- daniellex0 opened issue: [1671](https://github.com/hackforla/website/issues/1671) at 2021-05-30 02:32 AM PDT -daniellex0,2021-05-30T16:09:44Z,- daniellex0 opened issue: [1672](https://github.com/hackforla/website/issues/1672) at 2021-05-30 09:09 AM PDT -daniellex0,2021-05-30T16:27:45Z,- daniellex0 commented on issue: [1593](https://github.com/hackforla/website/issues/1593#issuecomment-851025907) at 2021-05-30 09:27 AM PDT -daniellex0,2021-05-30T16:27:51Z,- daniellex0 closed issue as completed: [1593](https://github.com/hackforla/website/issues/1593#event-4817330731) at 2021-05-30 09:27 AM PDT -daniellex0,2021-05-30T16:48:10Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-851028469) at 2021-05-30 09:48 AM PDT -daniellex0,2021-05-30T16:51:05Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-851028849) at 2021-05-30 09:51 AM PDT -daniellex0,2021-05-30T16:53:01Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-851029151) at 2021-05-30 09:53 AM PDT -daniellex0,2021-06-02T02:52:24Z,- daniellex0 opened issue: [1680](https://github.com/hackforla/website/issues/1680) at 2021-06-01 07:52 PM PDT -daniellex0,2021-06-02T06:58:58Z,- daniellex0 opened issue: [2473](https://github.com/hackforla/website/issues/2473) at 2021-06-01 11:58 PM PDT -daniellex0,2021-06-02T06:58:58Z,- daniellex0 opened issue: [2473](https://github.com/hackforla/website/issues/2473) at 2021-06-01 11:58 PM PDT -daniellex0,2021-06-02T07:41:56Z,- daniellex0 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-673884016) at 2021-06-02 12:41 AM PDT -daniellex0,2021-06-02T07:56:48Z,- daniellex0 submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-673898109) at 2021-06-02 12:56 AM PDT -daniellex0,2021-06-02T08:11:07Z,- daniellex0 submitted pull request review: [1620](https://github.com/hackforla/website/pull/1620#pullrequestreview-673911709) at 2021-06-02 01:11 AM PDT -daniellex0,2021-06-02T08:20:11Z,- daniellex0 submitted pull request review: [1636](https://github.com/hackforla/website/pull/1636#pullrequestreview-673920606) at 2021-06-02 01:20 AM PDT -daniellex0,2021-06-04T03:24:17Z,- daniellex0 commented on issue: [1635](https://github.com/hackforla/website/issues/1635#issuecomment-854330084) at 2021-06-03 08:24 PM PDT -daniellex0,2021-06-04T05:01:26Z,- daniellex0 assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -daniellex0,2021-06-04T05:15:39Z,- daniellex0 assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -daniellex0,2021-06-06T04:53:42Z,- daniellex0 commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-855337178) at 2021-06-05 09:53 PM PDT -daniellex0,2021-06-06T04:53:42Z,- daniellex0 closed issue as completed: [1600](https://github.com/hackforla/website/issues/1600#event-4847588444) at 2021-06-05 09:53 PM PDT -daniellex0,2021-06-06T05:20:19Z,- daniellex0 submitted pull request review: [1675](https://github.com/hackforla/website/pull/1675#pullrequestreview-676827441) at 2021-06-05 10:20 PM PDT -daniellex0,2021-06-06T05:25:45Z,- daniellex0 commented on issue: [1687](https://github.com/hackforla/website/issues/1687#issuecomment-855340760) at 2021-06-05 10:25 PM PDT -daniellex0,2021-06-06T05:28:40Z,- daniellex0 assigned to issue: [1680](https://github.com/hackforla/website/issues/1680) at 2021-06-05 10:28 PM PDT -daniellex0,2021-06-06T05:28:51Z,- daniellex0 commented on issue: [1680](https://github.com/hackforla/website/issues/1680#issuecomment-855341141) at 2021-06-05 10:28 PM PDT -daniellex0,2021-06-06T05:36:12Z,- daniellex0 commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-05 10:36 PM PDT -daniellex0,2021-06-06T05:53:33Z,- daniellex0 opened issue: [1688](https://github.com/hackforla/website/issues/1688) at 2021-06-05 10:53 PM PDT -daniellex0,2021-06-06T06:46:46Z,- daniellex0 opened issue: [1689](https://github.com/hackforla/website/issues/1689) at 2021-06-05 11:46 PM PDT -daniellex0,2021-06-06T06:55:46Z,- daniellex0 opened issue: [1690](https://github.com/hackforla/website/issues/1690) at 2021-06-05 11:55 PM PDT -daniellex0,2021-06-06T07:06:24Z,- daniellex0 opened issue: [1691](https://github.com/hackforla/website/issues/1691) at 2021-06-06 12:06 AM PDT -daniellex0,2021-06-06T07:28:43Z,- daniellex0 opened issue: [1692](https://github.com/hackforla/website/issues/1692) at 2021-06-06 12:28 AM PDT -daniellex0,2021-06-06T07:32:24Z,- daniellex0 closed issue as completed: [979](https://github.com/hackforla/website/issues/979#event-4847753527) at 2021-06-06 12:32 AM PDT -daniellex0,2021-06-06T07:32:56Z,- daniellex0 closed issue as completed: [1052](https://github.com/hackforla/website/issues/1052#event-4847754188) at 2021-06-06 12:32 AM PDT -daniellex0,2021-06-06T07:34:24Z,- daniellex0 closed issue as completed: [1504](https://github.com/hackforla/website/issues/1504#event-4847755740) at 2021-06-06 12:34 AM PDT -daniellex0,2021-06-06T07:36:07Z,- daniellex0 closed issue as completed: [1635](https://github.com/hackforla/website/issues/1635#event-4847757853) at 2021-06-06 12:36 AM PDT -daniellex0,2021-06-06T07:44:05Z,- daniellex0 opened issue: [1693](https://github.com/hackforla/website/issues/1693) at 2021-06-06 12:44 AM PDT -daniellex0,2021-06-06T07:58:42Z,- daniellex0 opened issue: [1694](https://github.com/hackforla/website/issues/1694) at 2021-06-06 12:58 AM PDT -daniellex0,2021-06-06T08:11:48Z,- daniellex0 opened issue: [1695](https://github.com/hackforla/website/issues/1695) at 2021-06-06 01:11 AM PDT -daniellex0,2021-06-06T09:14:55Z,- daniellex0 opened issue: [1696](https://github.com/hackforla/website/issues/1696) at 2021-06-06 02:14 AM PDT -daniellex0,2021-06-06T09:24:13Z,- daniellex0 opened issue: [1697](https://github.com/hackforla/website/issues/1697) at 2021-06-06 02:24 AM PDT -daniellex0,2021-06-06T09:24:37Z,- daniellex0 commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-855367804) at 2021-06-06 02:24 AM PDT -daniellex0,2021-06-06T09:35:22Z,- daniellex0 opened issue: [1698](https://github.com/hackforla/website/issues/1698) at 2021-06-06 02:35 AM PDT -daniellex0,2021-06-06T09:35:51Z,- daniellex0 commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-855369183) at 2021-06-06 02:35 AM PDT -daniellex0,2021-06-06T09:58:43Z,- daniellex0 opened issue: [1699](https://github.com/hackforla/website/issues/1699) at 2021-06-06 02:58 AM PDT -daniellex0,2021-06-06T16:10:10Z,- daniellex0 commented on issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-855422617) at 2021-06-06 09:10 AM PDT -daniellex0,2021-06-06T16:20:33Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-855423942) at 2021-06-06 09:20 AM PDT -daniellex0,2021-06-06T16:24:58Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-855424519) at 2021-06-06 09:24 AM PDT -daniellex0,2021-06-06T16:26:18Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-855424704) at 2021-06-06 09:26 AM PDT -daniellex0,2021-06-06T19:49:20Z,- daniellex0 unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -daniellex0,2021-06-06T21:16:33Z,- daniellex0 assigned to issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855436590) at 2021-06-06 02:16 PM PDT -daniellex0,2021-06-06T21:16:55Z,- daniellex0 unassigned from issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855436590) at 2021-06-06 02:16 PM PDT -daniellex0,2021-06-06T21:19:27Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-855464676) at 2021-06-06 02:19 PM PDT -daniellex0,2021-06-07T17:10:19Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-856112378) at 2021-06-07 10:10 AM PDT -daniellex0,2021-06-07T21:06:37Z,- daniellex0 commented on pull request: [1700](https://github.com/hackforla/website/pull/1700#issuecomment-856257319) at 2021-06-07 02:06 PM PDT -daniellex0,2021-06-07T21:32:38Z,- daniellex0 commented on pull request: [1700](https://github.com/hackforla/website/pull/1700#issuecomment-856278152) at 2021-06-07 02:32 PM PDT -daniellex0,2021-06-08T19:53:10Z,- daniellex0 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-857068077) at 2021-06-08 12:53 PM PDT -daniellex0,2021-06-08T20:05:04Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-857081135) at 2021-06-08 01:05 PM PDT -daniellex0,2021-06-08T20:05:05Z,- daniellex0 closed issue as completed: [1135](https://github.com/hackforla/website/issues/1135#event-4860827270) at 2021-06-08 01:05 PM PDT -daniellex0,2021-06-08T20:06:28Z,- daniellex0 commented on issue: [1672](https://github.com/hackforla/website/issues/1672#issuecomment-857082682) at 2021-06-08 01:06 PM PDT -daniellex0,2021-06-08T20:15:11Z,- daniellex0 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-857091752) at 2021-06-08 01:15 PM PDT -daniellex0,2021-06-08T23:57:16Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-857269602) at 2021-06-08 04:57 PM PDT -daniellex0,2021-06-09T02:13:17Z,- daniellex0 assigned to issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-857158746) at 2021-06-08 07:13 PM PDT -daniellex0,2021-06-09T02:13:23Z,- daniellex0 unassigned from issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-857158746) at 2021-06-08 07:13 PM PDT -daniellex0,2021-06-09T23:38:40Z,- daniellex0 closed issue as completed: [1672](https://github.com/hackforla/website/issues/1672#event-4868164368) at 2021-06-09 04:38 PM PDT -daniellex0,2021-06-11T03:00:48Z,- daniellex0 commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-859226294) at 2021-06-10 08:00 PM PDT -daniellex0,2021-06-11T03:08:32Z,- daniellex0 commented on issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-859228890) at 2021-06-10 08:08 PM PDT -daniellex0,2021-06-11T03:19:12Z,- daniellex0 commented on issue: [1614](https://github.com/hackforla/website/issues/1614#issuecomment-859232481) at 2021-06-10 08:19 PM PDT -daniellex0,2021-06-11T03:21:15Z,- daniellex0 commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-859233178) at 2021-06-10 08:21 PM PDT -daniellex0,2021-06-11T03:21:15Z,- daniellex0 closed issue as completed: [1289](https://github.com/hackforla/website/issues/1289#event-4875399700) at 2021-06-10 08:21 PM PDT -daniellex0,2021-06-11T03:22:43Z,- daniellex0 commented on issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-859233623) at 2021-06-10 08:22 PM PDT -daniellex0,2021-06-11T03:29:57Z,- daniellex0 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859236115) at 2021-06-10 08:29 PM PDT -daniellex0,2021-06-11T03:31:26Z,- daniellex0 commented on issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-859236590) at 2021-06-10 08:31 PM PDT -daniellex0,2021-06-11T03:33:48Z,- daniellex0 submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-681418057) at 2021-06-10 08:33 PM PDT -daniellex0,2021-06-11T05:32:14Z,- daniellex0 submitted pull request review: [1703](https://github.com/hackforla/website/pull/1703#pullrequestreview-681462426) at 2021-06-10 10:32 PM PDT -daniellex0,2021-06-11T08:22:08Z,- daniellex0 submitted pull request review: [1701](https://github.com/hackforla/website/pull/1701#pullrequestreview-681575670) at 2021-06-11 01:22 AM PDT -daniellex0,2021-06-11T09:28:17Z,- daniellex0 opened issue: [1708](https://github.com/hackforla/website/issues/1708) at 2021-06-11 02:28 AM PDT -daniellex0,2021-06-11T17:48:39Z,- daniellex0 opened issue: [1711](https://github.com/hackforla/website/issues/1711) at 2021-06-11 10:48 AM PDT -daniellex0,2021-06-12T00:56:05Z,- daniellex0 commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859973010) at 2021-06-11 05:56 PM PDT -daniellex0,2021-06-12T19:58:54Z,- daniellex0 commented on issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-860101661) at 2021-06-12 12:58 PM PDT -daniellex0,2021-06-12T19:58:54Z,- daniellex0 closed issue as completed: [1469](https://github.com/hackforla/website/issues/1469#event-4881616711) at 2021-06-12 12:58 PM PDT -daniellex0,2021-06-12T22:39:54Z,- daniellex0 reopened issue: [1692](https://github.com/hackforla/website/issues/1692#event-4881473812) at 2021-06-12 03:39 PM PDT -daniellex0,2021-06-13T16:16:36Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-860236040) at 2021-06-13 09:16 AM PDT -daniellex0,2021-06-13T16:18:16Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-860236265) at 2021-06-13 09:18 AM PDT -daniellex0,2021-06-13T16:26:22Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-860237359) at 2021-06-13 09:26 AM PDT -daniellex0,2021-06-13T16:54:23Z,- daniellex0 opened issue: [1733](https://github.com/hackforla/website/issues/1733) at 2021-06-13 09:54 AM PDT -daniellex0,2021-06-15T06:53:35Z,- daniellex0 opened issue: [1739](https://github.com/hackforla/website/issues/1739) at 2021-06-14 11:53 PM PDT -daniellex0,2021-06-15T18:57:19Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-861754071) at 2021-06-15 11:57 AM PDT -daniellex0,2021-06-15T18:58:30Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-861754890) at 2021-06-15 11:58 AM PDT -daniellex0,2021-06-16T00:53:48Z,- daniellex0 submitted pull request review: [1314](https://github.com/hackforla/website/pull/1314#pullrequestreview-684631457) at 2021-06-15 05:53 PM PDT -daniellex0,2021-06-16T00:55:28Z,- daniellex0 commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-861929027) at 2021-06-15 05:55 PM PDT -daniellex0,2021-06-16T01:09:10Z,- daniellex0 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-861933624) at 2021-06-15 06:09 PM PDT -daniellex0,2021-06-16T02:47:51Z,- daniellex0 opened issue: [1749](https://github.com/hackforla/website/issues/1749) at 2021-06-15 07:47 PM PDT -daniellex0,2021-06-17T22:59:41Z,- daniellex0 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-863613978) at 2021-06-17 03:59 PM PDT -daniellex0,2021-06-18T01:24:06Z,- daniellex0 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-863663636) at 2021-06-17 06:24 PM PDT -daniellex0,2021-06-18T01:38:43Z,- daniellex0 commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-863668134) at 2021-06-17 06:38 PM PDT -daniellex0,2021-06-20T05:02:05Z,- daniellex0 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-864499952) at 2021-06-19 10:02 PM PDT -daniellex0,2021-06-20T05:49:54Z,- daniellex0 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-864503566) at 2021-06-19 10:49 PM PDT -daniellex0,2021-06-20T06:51:03Z,- daniellex0 commented on pull request: [1731](https://github.com/hackforla/website/pull/1731#issuecomment-864508484) at 2021-06-19 11:51 PM PDT -daniellex0,2021-06-20T07:22:25Z,- daniellex0 opened issue: [1791](https://github.com/hackforla/website/issues/1791) at 2021-06-20 12:22 AM PDT -daniellex0,2021-06-20T07:37:35Z,- daniellex0 opened issue: [1792](https://github.com/hackforla/website/issues/1792) at 2021-06-20 12:37 AM PDT -daniellex0,2021-06-20T07:48:35Z,- daniellex0 opened issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-20 12:48 AM PDT -daniellex0,2021-06-20T08:15:03Z,- daniellex0 opened issue: [1794](https://github.com/hackforla/website/issues/1794) at 2021-06-20 01:15 AM PDT -daniellex0,2021-06-20T16:45:30Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-864581404) at 2021-06-20 09:45 AM PDT -daniellex0,2021-06-20T16:56:12Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-864582674) at 2021-06-20 09:56 AM PDT -daniellex0,2021-06-21T21:10:32Z,- daniellex0 commented on pull request: [1798](https://github.com/hackforla/website/pull/1798#issuecomment-865346359) at 2021-06-21 02:10 PM PDT -daniellex0,2021-06-24T05:32:16Z,- daniellex0 opened issue: [1823](https://github.com/hackforla/website/issues/1823) at 2021-06-23 10:32 PM PDT -daniellex0,2021-06-24T05:32:37Z,- daniellex0 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-867348107) at 2021-06-23 10:32 PM PDT -daniellex0,2021-06-24T06:55:53Z,- daniellex0 opened issue: [1824](https://github.com/hackforla/website/issues/1824) at 2021-06-23 11:55 PM PDT -daniellex0,2021-06-24T07:46:50Z,- daniellex0 opened issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-24 12:46 AM PDT -daniellex0,2021-06-24T21:48:29Z,- daniellex0 commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-867973581) at 2021-06-24 02:48 PM PDT -daniellex0,2021-06-27T02:23:44Z,- daniellex0 commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-869089433) at 2021-06-26 07:23 PM PDT -daniellex0,2021-06-27T02:46:56Z,- daniellex0 submitted pull request review: [1819](https://github.com/hackforla/website/pull/1819#pullrequestreview-693372676) at 2021-06-26 07:46 PM PDT -daniellex0,2021-06-27T02:54:07Z,- daniellex0 commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-869091599) at 2021-06-26 07:54 PM PDT -daniellex0,2021-06-27T03:33:36Z,- daniellex0 opened issue: [1835](https://github.com/hackforla/website/issues/1835) at 2021-06-26 08:33 PM PDT -daniellex0,2021-06-27T03:56:12Z,- daniellex0 opened issue: [1836](https://github.com/hackforla/website/issues/1836) at 2021-06-26 08:56 PM PDT -daniellex0,2021-06-27T15:49:52Z,- daniellex0 commented on issue: [1699](https://github.com/hackforla/website/issues/1699#issuecomment-869184579) at 2021-06-27 08:49 AM PDT -daniellex0,2021-06-27T15:50:00Z,- daniellex0 closed issue as completed: [1699](https://github.com/hackforla/website/issues/1699#event-4944067261) at 2021-06-27 08:50 AM PDT -daniellex0,2021-06-27T16:01:13Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-869186265) at 2021-06-27 09:01 AM PDT -daniellex0,2021-06-27T16:01:13Z,- daniellex0 closed issue as completed: [1622](https://github.com/hackforla/website/issues/1622#event-4944077792) at 2021-06-27 09:01 AM PDT -daniellex0,2021-06-27T16:14:59Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-869188331) at 2021-06-27 09:14 AM PDT -daniellex0,2021-06-27T16:24:57Z,- daniellex0 assigned to issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862677730) at 2021-06-27 09:24 AM PDT -daniellex0,2021-06-27T16:26:48Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-869189791) at 2021-06-27 09:26 AM PDT -daniellex0,2021-06-27T16:54:11Z,- daniellex0 opened issue: [1838](https://github.com/hackforla/website/issues/1838) at 2021-06-27 09:54 AM PDT -daniellex0,2021-06-28T02:40:44Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-869295629) at 2021-06-27 07:40 PM PDT -daniellex0,2021-06-28T18:08:39Z,- daniellex0 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-869904741) at 2021-06-28 11:08 AM PDT -daniellex0,2021-06-29T00:02:34Z,- daniellex0 commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870125934) at 2021-06-28 05:02 PM PDT -daniellex0,2021-06-29T05:59:32Z,- daniellex0 commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-870261064) at 2021-06-28 10:59 PM PDT -daniellex0,2021-06-29T06:01:56Z,- daniellex0 commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870262161) at 2021-06-28 11:01 PM PDT -daniellex0,2021-06-29T08:42:13Z,- daniellex0 opened issue: [1856](https://github.com/hackforla/website/issues/1856) at 2021-06-29 01:42 AM PDT -daniellex0,2021-06-30T01:58:41Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-871039223) at 2021-06-29 06:58 PM PDT -daniellex0,2021-06-30T23:59:04Z,- daniellex0 commented on pull request: [1819](https://github.com/hackforla/website/pull/1819#issuecomment-871801685) at 2021-06-30 04:59 PM PDT -daniellex0,2021-07-01T00:22:32Z,- daniellex0 commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-871813193) at 2021-06-30 05:22 PM PDT -daniellex0,2021-07-01T00:27:24Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-871815274) at 2021-06-30 05:27 PM PDT -daniellex0,2021-07-01T08:43:19Z,- daniellex0 opened issue: [1871](https://github.com/hackforla/website/issues/1871) at 2021-07-01 01:43 AM PDT -daniellex0,2021-07-01T09:02:29Z,- daniellex0 opened issue: [1872](https://github.com/hackforla/website/issues/1872) at 2021-07-01 02:02 AM PDT -daniellex0,2021-07-01T09:06:30Z,- daniellex0 opened issue: [1873](https://github.com/hackforla/website/issues/1873) at 2021-07-01 02:06 AM PDT -daniellex0,2021-07-01T09:08:20Z,- daniellex0 opened issue: [1874](https://github.com/hackforla/website/issues/1874) at 2021-07-01 02:08 AM PDT -daniellex0,2021-07-01T09:10:16Z,- daniellex0 opened issue: [1875](https://github.com/hackforla/website/issues/1875) at 2021-07-01 02:10 AM PDT -daniellex0,2021-07-01T09:11:37Z,- daniellex0 opened issue: [1876](https://github.com/hackforla/website/issues/1876) at 2021-07-01 02:11 AM PDT -daniellex0,2021-07-01T09:45:32Z,- daniellex0 opened issue: [1877](https://github.com/hackforla/website/issues/1877) at 2021-07-01 02:45 AM PDT -daniellex0,2021-07-01T19:30:05Z,- daniellex0 opened issue: [1878](https://github.com/hackforla/website/issues/1878) at 2021-07-01 12:30 PM PDT -daniellex0,2021-07-01T21:09:52Z,- daniellex0 opened issue: [1879](https://github.com/hackforla/website/issues/1879) at 2021-07-01 02:09 PM PDT -daniellex0,2021-07-04T03:54:03Z,- daniellex0 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-873516206) at 2021-07-03 08:54 PM PDT -daniellex0,2021-07-04T04:02:47Z,- daniellex0 commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-873516966) at 2021-07-03 09:02 PM PDT -daniellex0,2021-07-04T04:16:52Z,- daniellex0 opened issue: [1887](https://github.com/hackforla/website/issues/1887) at 2021-07-03 09:16 PM PDT -daniellex0,2021-07-04T04:42:39Z,- daniellex0 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873520726) at 2021-07-03 09:42 PM PDT -daniellex0,2021-07-04T16:36:19Z,- daniellex0 commented on issue: [1794](https://github.com/hackforla/website/issues/1794#issuecomment-873622581) at 2021-07-04 09:36 AM PDT -daniellex0,2021-07-04T16:45:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-873623729) at 2021-07-04 09:45 AM PDT -daniellex0,2021-07-04T16:47:09Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-873624011) at 2021-07-04 09:47 AM PDT -daniellex0,2021-07-04T16:48:22Z,- daniellex0 commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-873624152) at 2021-07-04 09:48 AM PDT -daniellex0,2021-07-04T16:48:22Z,- daniellex0 closed issue as completed: [1698](https://github.com/hackforla/website/issues/1698#event-4975310166) at 2021-07-04 09:48 AM PDT -daniellex0,2021-07-06T18:18:38Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-874980997) at 2021-07-06 11:18 AM PDT -daniellex0,2021-07-06T23:06:40Z,- daniellex0 commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-875140056) at 2021-07-06 04:06 PM PDT -daniellex0,2021-07-07T01:42:19Z,- daniellex0 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-875203026) at 2021-07-06 06:42 PM PDT -daniellex0,2021-07-07T01:48:42Z,- daniellex0 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-875205348) at 2021-07-06 06:48 PM PDT -daniellex0,2021-07-07T16:25:50Z,- daniellex0 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-875746761) at 2021-07-07 09:25 AM PDT -daniellex0,2021-07-09T15:50:37Z,- daniellex0 commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-877283135) at 2021-07-09 08:50 AM PDT -daniellex0,2021-07-09T17:55:14Z,- daniellex0 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-877358221) at 2021-07-09 10:55 AM PDT -daniellex0,2021-07-11T15:23:17Z,- daniellex0 commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-877820347) at 2021-07-11 08:23 AM PDT -daniellex0,2021-07-11T15:38:16Z,- daniellex0 commented on issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-877822174) at 2021-07-11 08:38 AM PDT -daniellex0,2021-07-11T15:54:59Z,- daniellex0 opened issue: [1919](https://github.com/hackforla/website/issues/1919) at 2021-07-11 08:54 AM PDT -daniellex0,2021-07-11T16:06:42Z,- daniellex0 opened issue: [1920](https://github.com/hackforla/website/issues/1920) at 2021-07-11 09:06 AM PDT -daniellex0,2021-07-11T16:14:11Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-877826771) at 2021-07-11 09:14 AM PDT -daniellex0,2021-07-13T18:21:01Z,- daniellex0 commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-879302707) at 2021-07-13 11:21 AM PDT -daniellex0,2021-07-14T02:31:29Z,- daniellex0 commented on issue: [1933](https://github.com/hackforla/website/issues/1933#issuecomment-879537727) at 2021-07-13 07:31 PM PDT -daniellex0,2021-07-14T09:25:50Z,- daniellex0 commented on issue: [1919](https://github.com/hackforla/website/issues/1919#issuecomment-879740450) at 2021-07-14 02:25 AM PDT -daniellex0,2021-07-14T09:36:33Z,- daniellex0 commented on issue: [1887](https://github.com/hackforla/website/issues/1887#issuecomment-879747283) at 2021-07-14 02:36 AM PDT -daniellex0,2021-07-14T09:51:05Z,- daniellex0 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879756024) at 2021-07-14 02:51 AM PDT -daniellex0,2021-07-15T18:47:17Z,- daniellex0 opened issue: [1948](https://github.com/hackforla/website/issues/1948) at 2021-07-15 11:47 AM PDT -daniellex0,2021-07-16T05:53:26Z,- daniellex0 submitted pull request review: [1949](https://github.com/hackforla/website/pull/1949#pullrequestreview-708028601) at 2021-07-15 10:53 PM PDT -daniellex0,2021-07-18T16:20:47Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-882081638) at 2021-07-18 09:20 AM PDT -daniellex0,2021-07-20T16:44:39Z,- daniellex0 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-883539455) at 2021-07-20 09:44 AM PDT -daniellex0,2021-07-20T16:49:09Z,- daniellex0 commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-883542329) at 2021-07-20 09:49 AM PDT -daniellex0,2021-07-20T16:49:25Z,- daniellex0 commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-883542495) at 2021-07-20 09:49 AM PDT -daniellex0,2021-07-20T17:56:06Z,- daniellex0 commented on issue: [1323](https://github.com/hackforla/website/issues/1323#issuecomment-883584058) at 2021-07-20 10:56 AM PDT -daniellex0,2021-07-21T14:44:43Z,- daniellex0 opened issue: [1993](https://github.com/hackforla/website/issues/1993) at 2021-07-21 07:44 AM PDT -daniellex0,2021-07-21T15:06:01Z,- daniellex0 commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-884263865) at 2021-07-21 08:06 AM PDT -daniellex0,2021-07-21T15:08:15Z,- daniellex0 submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-711798565) at 2021-07-21 08:08 AM PDT -daniellex0,2021-07-21T23:33:59Z,- daniellex0 commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884563649) at 2021-07-21 04:33 PM PDT -daniellex0,2021-07-22T23:01:50Z,- daniellex0 closed issue as completed: [1416](https://github.com/hackforla/website/issues/1416#event-5058474448) at 2021-07-22 04:01 PM PDT -daniellex0,2021-07-22T23:17:54Z,- daniellex0 opened issue: [2000](https://github.com/hackforla/website/issues/2000) at 2021-07-22 04:17 PM PDT -daniellex0,2021-08-03T17:12:47Z,- daniellex0 commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892017989) at 2021-08-03 10:12 AM PDT -daniellex0,2021-08-03T18:00:41Z,- daniellex0 assigned to issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892048780) at 2021-08-03 11:00 AM PDT -daniellex0,2021-08-08T16:23:18Z,- daniellex0 closed issue as completed: [1027](https://github.com/hackforla/website/issues/1027#event-5126816212) at 2021-08-08 09:23 AM PDT -daniellex0,2021-08-27T17:51:48Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-907371652) at 2021-08-27 10:51 AM PDT -danielmshawn,5211,SKILLS ISSUE -danielmshawn,2023-08-15T02:42:56Z,- danielmshawn opened issue: [5211](https://github.com/hackforla/website/issues/5211) at 2023-08-14 07:42 PM PDT -danielmshawn,2023-08-15T02:43:56Z,- danielmshawn assigned to issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1678351151) at 2023-08-14 07:43 PM PDT -danielmshawn,2023-09-12T23:20:10Z,- danielmshawn assigned to issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1707233483) at 2023-09-12 04:20 PM PDT -danielmshawn,2023-09-14T07:21:20Z,- danielmshawn commented on issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1718900553) at 2023-09-14 12:21 AM PDT -danielmshawn,2023-09-15T00:46:48Z,- danielmshawn commented on issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1720333764) at 2023-09-14 05:46 PM PDT -danielmshawn,2023-09-15T01:18:53Z,- danielmshawn opened pull request: [5534](https://github.com/hackforla/website/pull/5534) at 2023-09-14 06:18 PM PDT -danielmshawn,2023-09-20T16:19:54Z,- danielmshawn commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1728060817) at 2023-09-20 09:19 AM PDT -danielmshawn,2023-09-22T18:17:50Z,- danielmshawn pull request closed w/o merging: [5534](https://github.com/hackforla/website/pull/5534#event-10450110329) at 2023-09-22 11:17 AM PDT -danielmshawn,2023-09-22T18:23:04Z,- danielmshawn commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1731864652) at 2023-09-22 11:23 AM PDT -danielmshawn,2023-09-23T02:27:25Z,- danielmshawn opened pull request: [5572](https://github.com/hackforla/website/pull/5572) at 2023-09-22 07:27 PM PDT -danielmshawn,2023-10-03T18:26:23Z,- danielmshawn commented on pull request: [5572](https://github.com/hackforla/website/pull/5572#issuecomment-1745502476) at 2023-10-03 11:26 AM PDT -danielmshawn,2023-10-03T18:34:31Z,- danielmshawn pull request merged: [5572](https://github.com/hackforla/website/pull/5572#event-10541998639) at 2023-10-03 11:34 AM PDT -danielridgebot,2024-05-14T18:50:25Z,- danielridgebot commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2110916198) at 2024-05-14 11:50 AM PDT -dannycpham,2023-07-03T06:34:55Z,- dannycpham opened issue: [4909](https://github.com/hackforla/website/issues/4909) at 2023-07-02 11:34 PM PDT -dannycpham,2023-09-05T18:19:45Z,- dannycpham commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1707100068) at 2023-09-05 11:19 AM PDT -dannycpham,2023-09-19T01:12:10Z,- dannycpham commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1724686914) at 2023-09-18 06:12 PM PDT -dannycpham,2024-02-14T03:02:58Z,- dannycpham commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1943013857) at 2024-02-13 07:02 PM PST -dantor09,5727,SKILLS ISSUE -dantor09,2023-10-17T03:18:22Z,- dantor09 opened issue: [5727](https://github.com/hackforla/website/issues/5727) at 2023-10-16 08:18 PM PDT -dantor09,2023-10-17T03:18:22Z,- dantor09 assigned to issue: [5727](https://github.com/hackforla/website/issues/5727) at 2023-10-16 08:18 PM PDT -dantor09,2023-10-25T05:12:18Z,- dantor09 commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1778525381) at 2023-10-24 10:12 PM PDT -dantor09,2023-11-19T17:46:15Z,- dantor09 commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1817928663) at 2023-11-19 09:46 AM PST -dantor09,2023-11-26T04:12:31Z,- dantor09 commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1826484377) at 2023-11-25 08:12 PM PST -danvgar,6032,SKILLS ISSUE -danvgar,2024-01-03T03:47:59Z,- danvgar opened issue: [6032](https://github.com/hackforla/website/issues/6032) at 2024-01-02 07:47 PM PST -danvgar,2024-01-03T03:48:02Z,- danvgar assigned to issue: [6032](https://github.com/hackforla/website/issues/6032) at 2024-01-02 07:48 PM PST -danvgar,2024-01-03T05:04:28Z,- danvgar opened issue: [6041](https://github.com/hackforla/website/issues/6041) at 2024-01-02 09:04 PM PST -danvgar,2024-02-01T23:48:03Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1922502121) at 2024-02-01 03:48 PM PST -danvgar,2024-02-02T00:53:24Z,- danvgar assigned to issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1752132456) at 2024-02-01 04:53 PM PST -danvgar,2024-02-02T01:19:14Z,- danvgar commented on issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1922615125) at 2024-02-01 05:19 PM PST -danvgar,2024-02-02T01:24:42Z,- danvgar assigned to issue: [6046](https://github.com/hackforla/website/issues/6046#issuecomment-1874998247) at 2024-02-01 05:24 PM PST -danvgar,2024-02-02T01:54:50Z,- danvgar opened pull request: [6207](https://github.com/hackforla/website/pull/6207) at 2024-02-01 05:54 PM PST -danvgar,2024-02-02T01:57:42Z,- danvgar commented on issue: [6046](https://github.com/hackforla/website/issues/6046#issuecomment-1922648406) at 2024-02-01 05:57 PM PST -danvgar,2024-02-02T01:59:43Z,- danvgar assigned to issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922232023) at 2024-02-01 05:59 PM PST -danvgar,2024-02-02T02:09:56Z,- danvgar opened issue: [6208](https://github.com/hackforla/website/issues/6208) at 2024-02-01 06:09 PM PST -danvgar,2024-02-02T02:23:44Z,- danvgar opened issue: [6209](https://github.com/hackforla/website/issues/6209) at 2024-02-01 06:23 PM PST -danvgar,2024-02-02T02:28:37Z,- danvgar opened pull request: [6210](https://github.com/hackforla/website/pull/6210) at 2024-02-01 06:28 PM PST -danvgar,2024-02-02T02:30:46Z,- danvgar commented on issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922678786) at 2024-02-01 06:30 PM PST -danvgar,2024-02-02T05:09:30Z,- danvgar commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922837668) at 2024-02-01 09:09 PM PST -danvgar,2024-02-02T05:19:41Z,- danvgar commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922849118) at 2024-02-01 09:19 PM PST -danvgar,2024-02-03T19:10:51Z,- danvgar pull request merged: [6207](https://github.com/hackforla/website/pull/6207#event-11693315163) at 2024-02-03 11:10 AM PST -danvgar,2024-02-03T19:23:20Z,- danvgar pull request merged: [6210](https://github.com/hackforla/website/pull/6210#event-11693334662) at 2024-02-03 11:23 AM PST -danvgar,2024-02-03T21:43:33Z,- danvgar commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1925462968) at 2024-02-03 01:43 PM PST -danvgar,2024-02-09T03:35:54Z,- danvgar commented on issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1935286195) at 2024-02-08 07:35 PM PST -danvgar,2024-02-09T03:57:17Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1935297687) at 2024-02-08 07:57 PM PST -danvgar,2024-02-09T07:17:54Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1935440538) at 2024-02-08 11:17 PM PST -danvgar,2024-02-11T22:58:13Z,- danvgar commented on pull request: [6276](https://github.com/hackforla/website/pull/6276#issuecomment-1937903306) at 2024-02-11 02:58 PM PST -danvgar,2024-02-14T03:17:31Z,- danvgar assigned to issue: [5988](https://github.com/hackforla/website/issues/5988) at 2024-02-13 07:17 PM PST -danvgar,2024-02-14T03:18:07Z,- danvgar commented on issue: [5988](https://github.com/hackforla/website/issues/5988#issuecomment-1943023050) at 2024-02-13 07:18 PM PST -danvgar,2024-02-14T03:18:39Z,- danvgar commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1943023385) at 2024-02-13 07:18 PM PST -danvgar,2024-02-16T21:17:12Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1949347440) at 2024-02-16 01:17 PM PST -danvgar,2024-02-16T21:20:15Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1949350481) at 2024-02-16 01:20 PM PST -danvgar,2024-02-16T21:49:33Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1949382554) at 2024-02-16 01:49 PM PST -danvgar,2024-02-19T01:41:45Z,- danvgar commented on issue: [5988](https://github.com/hackforla/website/issues/5988#issuecomment-1951552157) at 2024-02-18 05:41 PM PST -danvgar,2024-02-19T02:07:24Z,- danvgar opened issue: [6319](https://github.com/hackforla/website/issues/6319) at 2024-02-18 06:07 PM PST -danvgar,2024-02-19T02:23:41Z,- danvgar submitted pull request review: [6302](https://github.com/hackforla/website/pull/6302#pullrequestreview-1887448001) at 2024-02-18 06:23 PM PST -danvgar,2024-02-19T02:27:58Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1951587395) at 2024-02-18 06:27 PM PST -danvgar,2024-02-20T01:32:09Z,- danvgar assigned to issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1949350481) at 2024-02-19 05:32 PM PST -danvgar,2024-02-20T01:33:13Z,- danvgar unassigned from issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1953349659) at 2024-02-19 05:33 PM PST -danvgar,2024-02-20T01:38:42Z,- danvgar assigned to issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1953353185) at 2024-02-19 05:38 PM PST -danvgar,2024-02-20T01:45:15Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1953358107) at 2024-02-19 05:45 PM PST -danvgar,2024-02-28T03:08:01Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1968109305) at 2024-02-27 07:08 PM PST -danvgar,2024-02-28T03:37:34Z,- danvgar commented on pull request: [6385](https://github.com/hackforla/website/pull/6385#issuecomment-1968156103) at 2024-02-27 07:37 PM PST -danvgar,2024-02-28T22:22:47Z,- danvgar submitted pull request review: [6385](https://github.com/hackforla/website/pull/6385#pullrequestreview-1907542220) at 2024-02-28 02:22 PM PST -danvgar,2024-02-29T01:58:13Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1970260326) at 2024-02-28 05:58 PM PST -danvgar,2024-02-29T02:02:35Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1970264129) at 2024-02-28 06:02 PM PST -danvgar,2024-02-29T02:08:22Z,- danvgar assigned to issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1953583231) at 2024-02-28 06:08 PM PST -danvgar,2024-02-29T02:09:00Z,- danvgar commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1970269137) at 2024-02-28 06:09 PM PST -danvgar,2024-02-29T05:26:21Z,- danvgar commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1970431151) at 2024-02-28 09:26 PM PST -danvgar,2024-03-06T00:08:40Z,- danvgar commented on pull request: [6436](https://github.com/hackforla/website/pull/6436#issuecomment-1979844961) at 2024-03-05 04:08 PM PST -danvgar,2024-03-07T00:40:44Z,- danvgar submitted pull request review: [6436](https://github.com/hackforla/website/pull/6436#pullrequestreview-1921103731) at 2024-03-06 04:40 PM PST -danvgar,2024-03-11T00:51:16Z,- danvgar commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1987446509) at 2024-03-10 05:51 PM PDT -danvgar,2024-03-11T01:03:28Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1987455348) at 2024-03-10 06:03 PM PDT -danvgar,2024-03-11T03:50:07Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987588327) at 2024-03-10 08:50 PM PDT -danvgar,2024-03-11T03:51:43Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987589379) at 2024-03-10 08:51 PM PDT -danvgar,2024-03-11T03:55:35Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987591964) at 2024-03-10 08:55 PM PDT -danvgar,2024-03-11T03:57:00Z,- danvgar assigned to issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987591964) at 2024-03-10 08:57 PM PDT -danvgar,2024-03-11T04:15:34Z,- danvgar opened issue: [6449](https://github.com/hackforla/website/issues/6449) at 2024-03-10 09:15 PM PDT -danvgar,2024-03-11T04:18:08Z,- danvgar commented on issue: [6449](https://github.com/hackforla/website/issues/6449#issuecomment-1987607046) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:18:12Z,- danvgar closed issue as completed: [6449](https://github.com/hackforla/website/issues/6449#event-12067950745) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:18:19Z,- danvgar closed issue as not planned: [6449](https://github.com/hackforla/website/issues/6449#event-12067951276) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:18:32Z,- danvgar opened issue: [6450](https://github.com/hackforla/website/issues/6450) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:28:44Z,- danvgar commented on issue: [6449](https://github.com/hackforla/website/issues/6449#issuecomment-1987614646) at 2024-03-10 09:28 PM PDT -danvgar,2024-03-11T04:42:41Z,- danvgar opened issue: [6451](https://github.com/hackforla/website/issues/6451) at 2024-03-10 09:42 PM PDT -danvgar,2024-03-11T04:45:14Z,- danvgar opened issue: [6452](https://github.com/hackforla/website/issues/6452) at 2024-03-10 09:45 PM PDT -danvgar,2024-03-11T04:47:09Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987627879) at 2024-03-10 09:47 PM PDT -danvgar,2024-03-11T22:23:34Z,- danvgar commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-1989550005) at 2024-03-11 03:23 PM PDT -danvgar,2024-03-14T06:43:06Z,- danvgar opened pull request: [6462](https://github.com/hackforla/website/pull/6462) at 2024-03-13 11:43 PM PDT -danvgar,2024-03-14T06:58:46Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1996677188) at 2024-03-13 11:58 PM PDT -danvgar,2024-03-17T05:43:38Z,- danvgar pull request merged: [6462](https://github.com/hackforla/website/pull/6462#event-12141991474) at 2024-03-16 10:43 PM PDT -danvgar,2024-03-19T16:40:00Z,- danvgar commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2007653130) at 2024-03-19 09:40 AM PDT -danvgar,2024-03-24T01:29:32Z,- danvgar submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1956457817) at 2024-03-23 06:29 PM PDT -danvgar,2024-03-25T21:58:05Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-2018991241) at 2024-03-25 02:58 PM PDT -danvgar,2024-03-26T00:40:05Z,- danvgar commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2019182348) at 2024-03-25 05:40 PM PDT -danvgar,2024-03-26T01:04:13Z,- danvgar submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1959103784) at 2024-03-25 06:04 PM PDT -danvgar,2024-03-26T01:37:38Z,- danvgar assigned to issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2019228385) at 2024-03-25 06:37 PM PDT -danvgar,2024-03-27T00:11:29Z,- danvgar commented on issue: [6452](https://github.com/hackforla/website/issues/6452#issuecomment-2021690622) at 2024-03-26 05:11 PM PDT -danvgar,2024-03-27T00:14:33Z,- danvgar commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2021694011) at 2024-03-26 05:14 PM PDT -danvgar,2024-04-02T02:05:42Z,- danvgar assigned to issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1960595575) at 2024-04-01 07:05 PM PDT -danvgar,2024-04-02T23:55:21Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2033297090) at 2024-04-02 04:55 PM PDT -danvgar,2024-04-05T23:31:32Z,- danvgar commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2040763128) at 2024-04-05 04:31 PM PDT -danvgar,2024-04-05T23:33:41Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2040764363) at 2024-04-05 04:33 PM PDT -danvgar,2024-04-06T00:26:29Z,- danvgar opened issue: [6581](https://github.com/hackforla/website/issues/6581) at 2024-04-05 05:26 PM PDT -danvgar,2024-04-06T00:39:41Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2040828083) at 2024-04-05 05:39 PM PDT -danvgar,2024-04-06T00:44:06Z,- danvgar opened issue: [6582](https://github.com/hackforla/website/issues/6582) at 2024-04-05 05:44 PM PDT -danvgar,2024-04-06T00:49:31Z,- danvgar commented on issue: [6582](https://github.com/hackforla/website/issues/6582#issuecomment-2040833387) at 2024-04-05 05:49 PM PDT -danvgar,2024-04-06T00:53:51Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2040834615) at 2024-04-05 05:53 PM PDT -danvgar,2024-04-06T01:33:18Z,- danvgar commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2040846888) at 2024-04-05 06:33 PM PDT -danvgar,2024-04-06T01:44:26Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2040850071) at 2024-04-05 06:44 PM PDT -danvgar,2024-04-26T08:38:55Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2078915416) at 2024-04-26 01:38 AM PDT -danvgar,2024-04-26T20:44:51Z,- danvgar unassigned from issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2060724382) at 2024-04-26 01:44 PM PDT -danvgar,2024-06-11T05:33:35Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2159829637) at 2024-06-10 10:33 PM PDT -danvgar,2024-06-14T07:53:42Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2167451616) at 2024-06-14 12:53 AM PDT -danvgar,2024-09-02T21:54:54Z,- danvgar assigned to issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2305910403) at 2024-09-02 02:54 PM PDT -danvgar,2024-09-02T21:55:10Z,- danvgar unassigned from issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2325329602) at 2024-09-02 02:55 PM PDT -danvgar,2024-09-02T22:02:13Z,- danvgar opened issue: [7378](https://github.com/hackforla/website/issues/7378) at 2024-09-02 03:02 PM PDT -danvgar,2024-09-16T18:42:21Z,- danvgar commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2353652068) at 2024-09-16 11:42 AM PDT -danyc23,2021-01-24T19:39:03Z,- danyc23 assigned to issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-24 11:39 AM PST -danyc23,2021-01-29T02:39:11Z,- danyc23 opened pull request: [974](https://github.com/hackforla/website/pull/974) at 2021-01-28 06:39 PM PST -danyc23,2021-01-29T02:39:57Z,- danyc23 pull request merged: [974](https://github.com/hackforla/website/pull/974#event-4264120633) at 2021-01-28 06:39 PM PST -danyc23,2021-01-29T03:21:07Z,- danyc23 opened pull request: [975](https://github.com/hackforla/website/pull/975) at 2021-01-28 07:21 PM PST -danyc23,2021-01-29T03:31:09Z,- danyc23 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-769550905) at 2021-01-28 07:31 PM PST -danyc23,2021-01-31T19:28:54Z,- danyc23 assigned to issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-31 11:28 AM PST -danyc23,2021-02-01T01:19:15Z,- danyc23 pull request merged: [975](https://github.com/hackforla/website/pull/975#event-4271052966) at 2021-01-31 05:19 PM PST -danyc23,2021-02-05T01:26:43Z,- danyc23 commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-773716963) at 2021-02-04 05:26 PM PST -danyc23,2021-02-05T01:27:56Z,- danyc23 commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-773717342) at 2021-02-04 05:27 PM PST -danyc23,2021-02-07T18:47:31Z,- danyc23 commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-774731193) at 2021-02-07 10:47 AM PST -danyc23,2021-02-07T19:16:38Z,- danyc23 opened pull request: [1009](https://github.com/hackforla/website/pull/1009) at 2021-02-07 11:16 AM PST -danyc23,2021-02-07T19:46:37Z,- danyc23 submitted pull request review: [1008](https://github.com/hackforla/website/pull/1008#pullrequestreview-585061147) at 2021-02-07 11:46 AM PST -danyc23,2021-02-07T19:52:58Z,- danyc23 commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774747575) at 2021-02-07 11:52 AM PST -danyc23,2021-02-07T19:53:04Z,- danyc23 closed issue by PR 1008: [989](https://github.com/hackforla/website/issues/989#event-4300608360) at 2021-02-07 11:53 AM PST -danyc23,2021-02-08T20:08:47Z,- danyc23 commented on pull request: [1009](https://github.com/hackforla/website/pull/1009#issuecomment-775411781) at 2021-02-08 12:08 PM PST -danyc23,2021-02-09T01:19:34Z,- danyc23 commented on pull request: [1009](https://github.com/hackforla/website/pull/1009#issuecomment-775580944) at 2021-02-08 05:19 PM PST -danyc23,2021-02-10T03:08:39Z,- danyc23 pull request closed w/o merging: [1009](https://github.com/hackforla/website/pull/1009#event-4312575448) at 2021-02-09 07:08 PM PST -danyc23,2021-02-10T04:21:49Z,- danyc23 assigned to issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-775180799) at 2021-02-09 08:21 PM PST -danyc23,2021-02-10T05:14:36Z,- danyc23 opened pull request: [1032](https://github.com/hackforla/website/pull/1032) at 2021-02-09 09:14 PM PST -danyc23,2021-02-10T17:11:57Z,- danyc23 pull request merged: [1032](https://github.com/hackforla/website/pull/1032#event-4315968391) at 2021-02-10 09:11 AM PST -danyc23,2021-02-21T19:38:15Z,- danyc23 commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-782913114) at 2021-02-21 11:38 AM PST -danyc23,2021-02-21T21:46:01Z,- danyc23 opened pull request: [1087](https://github.com/hackforla/website/pull/1087) at 2021-02-21 01:46 PM PST -danyc23,2021-02-22T18:01:49Z,- danyc23 pull request merged: [1087](https://github.com/hackforla/website/pull/1087#event-4361138038) at 2021-02-22 10:01 AM PST -danyc23,2021-02-24T03:59:47Z,- danyc23 assigned to issue: [1064](https://github.com/hackforla/website/issues/1064) at 2021-02-23 07:59 PM PST -danyc23,2021-02-28T18:12:31Z,- danyc23 commented on issue: [1064](https://github.com/hackforla/website/issues/1064#issuecomment-787495249) at 2021-02-28 10:12 AM PST -danyc23,2021-03-06T03:48:15Z,- danyc23 commented on issue: [1064](https://github.com/hackforla/website/issues/1064#issuecomment-791858579) at 2021-03-05 07:48 PM PST -danyc23,2021-03-06T04:16:01Z,- danyc23 opened pull request: [1162](https://github.com/hackforla/website/pull/1162) at 2021-03-05 08:16 PM PST -danyc23,2021-03-06T19:50:42Z,- danyc23 pull request merged: [1162](https://github.com/hackforla/website/pull/1162#event-4417228345) at 2021-03-06 11:50 AM PST -danyc23,2021-03-07T18:44:19Z,- danyc23 assigned to issue: [1067](https://github.com/hackforla/website/issues/1067) at 2021-03-07 10:44 AM PST -danyc23,2021-03-17T02:24:34Z,- danyc23 commented on issue: [1067](https://github.com/hackforla/website/issues/1067#issuecomment-800743034) at 2021-03-16 07:24 PM PDT -danyc23,2021-03-20T01:01:53Z,- danyc23 opened pull request: [1275](https://github.com/hackforla/website/pull/1275) at 2021-03-19 06:01 PM PDT -danyc23,2021-03-20T23:55:17Z,- danyc23 pull request merged: [1275](https://github.com/hackforla/website/pull/1275#event-4486130167) at 2021-03-20 04:55 PM PDT -danyc23,2021-03-23T17:46:24Z,- danyc23 assigned to issue: [1313](https://github.com/hackforla/website/issues/1313) at 2021-03-23 10:46 AM PDT -danyc23,2021-03-29T22:02:47Z,- danyc23 commented on pull request: [1327](https://github.com/hackforla/website/pull/1327#issuecomment-809742987) at 2021-03-29 03:02 PM PDT -danyc23,2021-03-31T21:22:03Z,- danyc23 commented on pull request: [1327](https://github.com/hackforla/website/pull/1327#issuecomment-811474165) at 2021-03-31 02:22 PM PDT -danyc23,2021-03-31T21:22:20Z,- danyc23 closed issue by PR 1327: [1063](https://github.com/hackforla/website/issues/1063#event-4537473229) at 2021-03-31 02:22 PM PDT -danyc23,2021-04-04T16:53:58Z,- danyc23 commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-813064338) at 2021-04-04 09:53 AM PDT -danyc23,2021-04-05T18:53:03Z,- danyc23 commented on pull request: [1360](https://github.com/hackforla/website/pull/1360#issuecomment-813574181) at 2021-04-05 11:53 AM PDT -danyc23,2021-04-05T18:53:15Z,- danyc23 closed issue by PR 1360: [1251](https://github.com/hackforla/website/issues/1251#event-4552922117) at 2021-04-05 11:53 AM PDT -danyc23,2021-04-05T19:02:07Z,- danyc23 commented on pull request: [1359](https://github.com/hackforla/website/pull/1359#issuecomment-813579205) at 2021-04-05 12:02 PM PDT -danyc23,2021-04-05T19:02:17Z,- danyc23 closed issue by PR 1359: [1252](https://github.com/hackforla/website/issues/1252#event-4552956227) at 2021-04-05 12:02 PM PDT -danyc23,2021-04-05T19:06:55Z,- danyc23 commented on pull request: [1358](https://github.com/hackforla/website/pull/1358#issuecomment-813582306) at 2021-04-05 12:06 PM PDT -danyc23,2021-04-05T19:06:59Z,- danyc23 closed issue by PR 1358: [1253](https://github.com/hackforla/website/issues/1253#event-4552973736) at 2021-04-05 12:06 PM PDT -danyc23,2021-04-14T00:21:39Z,- danyc23 assigned to issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-13 05:21 PM PDT -danyc23,2021-04-14T00:22:16Z,- danyc23 unassigned from issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-818409060) at 2021-04-13 05:22 PM PDT -danyc23,2021-04-14T19:22:27Z,- danyc23 commented on issue: [1392](https://github.com/hackforla/website/issues/1392#issuecomment-819771868) at 2021-04-14 12:22 PM PDT -danyc23,2021-04-14T19:55:01Z,- danyc23 opened pull request: [1405](https://github.com/hackforla/website/pull/1405) at 2021-04-14 12:55 PM PDT -danyc23,2021-04-17T03:14:48Z,- danyc23 commented on pull request: [1405](https://github.com/hackforla/website/pull/1405#issuecomment-821756937) at 2021-04-16 08:14 PM PDT -danyc23,2021-04-17T03:27:31Z,- danyc23 submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-638193930) at 2021-04-16 08:27 PM PDT -danyc23,2021-04-18T16:25:18Z,- danyc23 pull request merged: [1405](https://github.com/hackforla/website/pull/1405#event-4609258650) at 2021-04-18 09:25 AM PDT -danyc23,2021-04-21T03:50:30Z,- danyc23 assigned to issue: [1426](https://github.com/hackforla/website/issues/1426) at 2021-04-20 08:50 PM PDT -danyc23,2021-04-25T17:12:48Z,- danyc23 commented on issue: [1426](https://github.com/hackforla/website/issues/1426#issuecomment-826357174) at 2021-04-25 10:12 AM PDT -danyc23,2021-04-29T19:00:53Z,- danyc23 opened pull request: [1492](https://github.com/hackforla/website/pull/1492) at 2021-04-29 12:00 PM PDT -danyc23,2021-04-30T18:34:11Z,- danyc23 commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-830284418) at 2021-04-30 11:34 AM PDT -danyc23,2021-05-07T02:28:30Z,- danyc23 commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-834013217) at 2021-05-06 07:28 PM PDT -danyc23,2021-05-07T20:14:59Z,- danyc23 pull request merged: [1492](https://github.com/hackforla/website/pull/1492#event-4704437237) at 2021-05-07 01:14 PM PDT -danyc23,2021-05-12T02:53:58Z,- danyc23 assigned to issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-05-11 07:53 PM PDT -danyc23,2021-05-17T22:18:59Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-842678878) at 2021-05-17 03:18 PM PDT -danyc23,2021-05-29T03:13:21Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-850759797) at 2021-05-28 08:13 PM PDT -danyc23,2021-06-13T19:39:15Z,- danyc23 unassigned from issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-860259483) at 2021-06-13 12:39 PM PDT -danyc23,2021-07-19T17:50:01Z,- danyc23 assigned to issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-882694329) at 2021-07-19 10:50 AM PDT -danyc23,2021-07-20T21:15:38Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-883713645) at 2021-07-20 02:15 PM PDT -danyc23,2021-07-21T19:38:28Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-884446284) at 2021-07-21 12:38 PM PDT -daras-cu,6948,SKILLS ISSUE -daras-cu,2024-06-04T02:56:12Z,- daras-cu opened issue: [6948](https://github.com/hackforla/website/issues/6948) at 2024-06-03 07:56 PM PDT -daras-cu,2024-06-04T02:56:31Z,- daras-cu assigned to issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2146474634) at 2024-06-03 07:56 PM PDT -daras-cu,2024-06-10T16:37:38Z,- daras-cu assigned to issue: [6936](https://github.com/hackforla/website/issues/6936) at 2024-06-10 09:37 AM PDT -daras-cu,2024-06-10T16:45:15Z,- daras-cu commented on issue: [6936](https://github.com/hackforla/website/issues/6936#issuecomment-2158850660) at 2024-06-10 09:45 AM PDT -daras-cu,2024-06-10T16:47:46Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2158855142) at 2024-06-10 09:47 AM PDT -daras-cu,2024-06-10T20:46:36Z,- daras-cu opened pull request: [6983](https://github.com/hackforla/website/pull/6983) at 2024-06-10 01:46 PM PDT -daras-cu,2024-06-11T18:02:54Z,- daras-cu pull request merged: [6983](https://github.com/hackforla/website/pull/6983#event-13120940795) at 2024-06-11 11:02 AM PDT -daras-cu,2024-06-17T18:00:59Z,- daras-cu assigned to issue: [6939](https://github.com/hackforla/website/issues/6939) at 2024-06-17 11:00 AM PDT -daras-cu,2024-06-17T18:28:22Z,- daras-cu commented on issue: [6939](https://github.com/hackforla/website/issues/6939#issuecomment-2174108189) at 2024-06-17 11:28 AM PDT -daras-cu,2024-06-17T18:53:35Z,- daras-cu opened pull request: [7016](https://github.com/hackforla/website/pull/7016) at 2024-06-17 11:53 AM PDT -daras-cu,2024-06-17T18:59:07Z,- daras-cu commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2174214404) at 2024-06-17 11:59 AM PDT -daras-cu,2024-06-17T19:29:10Z,- daras-cu submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2123751001) at 2024-06-17 12:29 PM PDT -daras-cu,2024-06-17T20:29:33Z,- daras-cu submitted pull request review: [7012](https://github.com/hackforla/website/pull/7012#pullrequestreview-2123848422) at 2024-06-17 01:29 PM PDT -daras-cu,2024-06-18T02:43:29Z,- daras-cu submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2124310068) at 2024-06-17 07:43 PM PDT -daras-cu,2024-06-20T18:44:15Z,- daras-cu pull request merged: [7016](https://github.com/hackforla/website/pull/7016#event-13233151927) at 2024-06-20 11:44 AM PDT -daras-cu,2024-07-03T18:56:13Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2206990707) at 2024-07-03 11:56 AM PDT -daras-cu,2024-07-03T18:57:22Z,- daras-cu closed issue as completed: [6948](https://github.com/hackforla/website/issues/6948#event-13384806076) at 2024-07-03 11:57 AM PDT -daras-cu,2024-07-13T01:02:31Z,- daras-cu assigned to issue: [7101](https://github.com/hackforla/website/issues/7101) at 2024-07-12 06:02 PM PDT -daras-cu,2024-07-13T01:04:08Z,- daras-cu commented on issue: [7101](https://github.com/hackforla/website/issues/7101#issuecomment-2226639191) at 2024-07-12 06:04 PM PDT -daras-cu,2024-07-13T22:31:17Z,- daras-cu opened pull request: [7106](https://github.com/hackforla/website/pull/7106) at 2024-07-13 03:31 PM PDT -daras-cu,2024-07-14T20:47:10Z,- daras-cu pull request merged: [7106](https://github.com/hackforla/website/pull/7106#event-13498710519) at 2024-07-14 01:47 PM PDT -daras-cu,2024-07-16T02:33:08Z,- daras-cu submitted pull request review: [7121](https://github.com/hackforla/website/pull/7121#pullrequestreview-2179084135) at 2024-07-15 07:33 PM PDT -daras-cu,2024-07-21T17:12:54Z,- daras-cu assigned to issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2227786076) at 2024-07-21 10:12 AM PDT -daras-cu,2024-07-21T17:13:47Z,- daras-cu commented on issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2241716535) at 2024-07-21 10:13 AM PDT -daras-cu,2024-07-21T20:24:44Z,- daras-cu commented on issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2241764156) at 2024-07-21 01:24 PM PDT -daras-cu,2024-07-21T20:36:53Z,- daras-cu opened pull request: [7131](https://github.com/hackforla/website/pull/7131) at 2024-07-21 01:36 PM PDT -daras-cu,2024-07-21T20:56:05Z,- daras-cu submitted pull request review: [7128](https://github.com/hackforla/website/pull/7128#pullrequestreview-2190397887) at 2024-07-21 01:56 PM PDT -daras-cu,2024-07-21T21:03:25Z,- daras-cu submitted pull request review: [7129](https://github.com/hackforla/website/pull/7129#pullrequestreview-2190398649) at 2024-07-21 02:03 PM PDT -daras-cu,2024-07-22T04:34:50Z,- daras-cu submitted pull request review: [7128](https://github.com/hackforla/website/pull/7128#pullrequestreview-2190594712) at 2024-07-21 09:34 PM PDT -daras-cu,2024-07-29T22:13:46Z,- daras-cu submitted pull request review: [7136](https://github.com/hackforla/website/pull/7136#pullrequestreview-2206189502) at 2024-07-29 03:13 PM PDT -daras-cu,2024-07-29T22:25:36Z,- daras-cu submitted pull request review: [7141](https://github.com/hackforla/website/pull/7141#pullrequestreview-2206200819) at 2024-07-29 03:25 PM PDT -daras-cu,2024-07-29T22:43:18Z,- daras-cu submitted pull request review: [7150](https://github.com/hackforla/website/pull/7150#pullrequestreview-2206225486) at 2024-07-29 03:43 PM PDT -daras-cu,2024-07-31T21:25:00Z,- daras-cu pull request merged: [7131](https://github.com/hackforla/website/pull/7131#event-13716482905) at 2024-07-31 02:25 PM PDT -daras-cu,2024-07-31T23:09:30Z,- daras-cu submitted pull request review: [7150](https://github.com/hackforla/website/pull/7150#pullrequestreview-2211277031) at 2024-07-31 04:09 PM PDT -daras-cu,2024-07-31T23:27:20Z,- daras-cu assigned to issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2229109182) at 2024-07-31 04:27 PM PDT -daras-cu,2024-07-31T23:28:58Z,- daras-cu commented on issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2261653827) at 2024-07-31 04:28 PM PDT -daras-cu,2024-08-10T21:11:20Z,- daras-cu opened pull request: [7262](https://github.com/hackforla/website/pull/7262) at 2024-08-10 02:11 PM PDT -daras-cu,2024-08-10T21:40:26Z,- daras-cu commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2282283792) at 2024-08-10 02:40 PM PDT -daras-cu,2024-08-10T22:25:01Z,- daras-cu submitted pull request review: [7228](https://github.com/hackforla/website/pull/7228#pullrequestreview-2231711921) at 2024-08-10 03:25 PM PDT -daras-cu,2024-08-10T23:00:29Z,- daras-cu submitted pull request review: [7255](https://github.com/hackforla/website/pull/7255#pullrequestreview-2231714195) at 2024-08-10 04:00 PM PDT -daras-cu,2024-08-11T17:56:08Z,- daras-cu commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2282839310) at 2024-08-11 10:56 AM PDT -daras-cu,2024-08-11T17:57:08Z,- daras-cu commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2282839573) at 2024-08-11 10:57 AM PDT -daras-cu,2024-08-11T18:21:14Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846116) at 2024-08-11 11:21 AM PDT -daras-cu,2024-08-11T18:21:49Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846262) at 2024-08-11 11:21 AM PDT -daras-cu,2024-08-11T18:23:29Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846620) at 2024-08-11 11:23 AM PDT -daras-cu,2024-08-11T18:24:19Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846800) at 2024-08-11 11:24 AM PDT -daras-cu,2024-08-11T18:25:15Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282847007) at 2024-08-11 11:25 AM PDT -daras-cu,2024-08-11T18:27:12Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282847490) at 2024-08-11 11:27 AM PDT -daras-cu,2024-08-11T19:50:12Z,- daras-cu submitted pull request review: [7264](https://github.com/hackforla/website/pull/7264#pullrequestreview-2231880333) at 2024-08-11 12:50 PM PDT -daras-cu,2024-08-11T20:23:44Z,- daras-cu submitted pull request review: [7261](https://github.com/hackforla/website/pull/7261#pullrequestreview-2231885031) at 2024-08-11 01:23 PM PDT -daras-cu,2024-08-11T20:25:18Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282878893) at 2024-08-11 01:25 PM PDT -daras-cu,2024-08-11T20:27:41Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282879506) at 2024-08-11 01:27 PM PDT -daras-cu,2024-08-11T20:44:40Z,- daras-cu submitted pull request review: [7234](https://github.com/hackforla/website/pull/7234#pullrequestreview-2231887547) at 2024-08-11 01:44 PM PDT -daras-cu,2024-08-11T20:48:08Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282885244) at 2024-08-11 01:48 PM PDT -daras-cu,2024-08-11T20:52:07Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282886117) at 2024-08-11 01:52 PM PDT -daras-cu,2024-08-11T20:53:45Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282886564) at 2024-08-11 01:53 PM PDT -daras-cu,2024-08-11T20:55:27Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282886976) at 2024-08-11 01:55 PM PDT -daras-cu,2024-08-11T20:56:01Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282887116) at 2024-08-11 01:56 PM PDT -daras-cu,2024-08-11T20:57:49Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282887482) at 2024-08-11 01:57 PM PDT -daras-cu,2024-08-11T20:59:48Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282887967) at 2024-08-11 01:59 PM PDT -daras-cu,2024-08-11T21:01:39Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282888561) at 2024-08-11 02:01 PM PDT -daras-cu,2024-08-11T21:02:46Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282888882) at 2024-08-11 02:02 PM PDT -daras-cu,2024-08-11T21:03:44Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282889126) at 2024-08-11 02:03 PM PDT -daras-cu,2024-08-11T21:11:16Z,- daras-cu assigned to issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2132285814) at 2024-08-11 02:11 PM PDT -daras-cu,2024-08-11T21:11:30Z,- daras-cu unassigned from issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2282891038) at 2024-08-11 02:11 PM PDT -daras-cu,2024-08-12T17:18:56Z,- daras-cu submitted pull request review: [7261](https://github.com/hackforla/website/pull/7261#pullrequestreview-2233630711) at 2024-08-12 10:18 AM PDT -daras-cu,2024-08-13T02:10:30Z,- daras-cu submitted pull request review: [7264](https://github.com/hackforla/website/pull/7264#pullrequestreview-2234331824) at 2024-08-12 07:10 PM PDT -daras-cu,2024-08-14T00:08:06Z,- daras-cu commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2287462665) at 2024-08-13 05:08 PM PDT -daras-cu,2024-08-14T00:25:04Z,- daras-cu commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2287488650) at 2024-08-13 05:25 PM PDT -daras-cu,2024-08-14T01:14:09Z,- daras-cu submitted pull request review: [7269](https://github.com/hackforla/website/pull/7269#pullrequestreview-2236946207) at 2024-08-13 06:14 PM PDT -daras-cu,2024-08-14T02:25:53Z,- daras-cu submitted pull request review: [7234](https://github.com/hackforla/website/pull/7234#pullrequestreview-2237045949) at 2024-08-13 07:25 PM PDT -daras-cu,2024-08-17T17:51:42Z,- daras-cu submitted pull request review: [7310](https://github.com/hackforla/website/pull/7310#pullrequestreview-2244129982) at 2024-08-17 10:51 AM PDT -daras-cu,2024-08-17T18:26:54Z,- daras-cu commented on issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2294935602) at 2024-08-17 11:26 AM PDT -daras-cu,2024-08-18T17:35:09Z,- daras-cu commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2295335233) at 2024-08-18 10:35 AM PDT -daras-cu,2024-08-18T17:37:42Z,- daras-cu commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2295335956) at 2024-08-18 10:37 AM PDT -daras-cu,2024-08-18T18:26:09Z,- daras-cu submitted pull request review: [7298](https://github.com/hackforla/website/pull/7298#pullrequestreview-2244376266) at 2024-08-18 11:26 AM PDT -daras-cu,2024-08-18T18:58:53Z,- daras-cu submitted pull request review: [7308](https://github.com/hackforla/website/pull/7308#pullrequestreview-2244379906) at 2024-08-18 11:58 AM PDT -daras-cu,2024-08-20T20:59:41Z,- daras-cu pull request merged: [7262](https://github.com/hackforla/website/pull/7262#event-13950853905) at 2024-08-20 01:59 PM PDT -daras-cu,2024-08-21T02:58:51Z,- daras-cu assigned to issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2282831116) at 2024-08-20 07:58 PM PDT -daras-cu,2024-08-21T03:00:57Z,- daras-cu commented on issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2300441335) at 2024-08-20 08:00 PM PDT -daras-cu,2024-08-21T03:10:52Z,- daras-cu opened issue: [7332](https://github.com/hackforla/website/issues/7332) at 2024-08-20 08:10 PM PDT -daras-cu,2024-08-21T03:15:11Z,- daras-cu opened issue: [7333](https://github.com/hackforla/website/issues/7333) at 2024-08-20 08:15 PM PDT -daras-cu,2024-08-21T03:20:24Z,- daras-cu opened issue: [7334](https://github.com/hackforla/website/issues/7334) at 2024-08-20 08:20 PM PDT -daras-cu,2024-08-21T03:22:03Z,- daras-cu opened issue: [7335](https://github.com/hackforla/website/issues/7335) at 2024-08-20 08:22 PM PDT -daras-cu,2024-08-21T03:24:17Z,- daras-cu opened issue: [7336](https://github.com/hackforla/website/issues/7336) at 2024-08-20 08:24 PM PDT -daras-cu,2024-08-21T03:26:01Z,- daras-cu opened issue: [7337](https://github.com/hackforla/website/issues/7337) at 2024-08-20 08:26 PM PDT -daras-cu,2024-08-24T03:07:53Z,- daras-cu submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2258303285) at 2024-08-23 08:07 PM PDT -daras-cu,2024-08-24T03:24:37Z,- daras-cu submitted pull request review: [7343](https://github.com/hackforla/website/pull/7343#pullrequestreview-2258317112) at 2024-08-23 08:24 PM PDT -daras-cu,2024-08-26T17:29:48Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310710187) at 2024-08-26 10:29 AM PDT -daras-cu,2024-08-26T17:34:43Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310719227) at 2024-08-26 10:34 AM PDT -daras-cu,2024-08-26T17:37:21Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310724826) at 2024-08-26 10:37 AM PDT -daras-cu,2024-08-26T17:39:05Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310727663) at 2024-08-26 10:39 AM PDT -daras-cu,2024-08-26T17:40:28Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310729838) at 2024-08-26 10:40 AM PDT -daras-cu,2024-08-26T18:11:33Z,- daras-cu assigned to issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2153288969) at 2024-08-26 11:11 AM PDT -daras-cu,2024-08-26T18:13:06Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2310785952) at 2024-08-26 11:13 AM PDT -daras-cu,2024-08-29T00:46:27Z,- daras-cu submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2267485240) at 2024-08-28 05:46 PM PDT -daras-cu,2024-08-29T01:41:18Z,- daras-cu opened issue: [7363](https://github.com/hackforla/website/issues/7363) at 2024-08-28 06:41 PM PDT -daras-cu,2024-08-29T02:12:29Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2316581307) at 2024-08-28 07:12 PM PDT -daras-cu,2024-08-29T04:22:22Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2316686567) at 2024-08-28 09:22 PM PDT -daras-cu,2024-08-29T04:36:18Z,- daras-cu submitted pull request review: [7361](https://github.com/hackforla/website/pull/7361#pullrequestreview-2267662057) at 2024-08-28 09:36 PM PDT -daras-cu,2024-08-29T04:46:41Z,- daras-cu commented on pull request: [7361](https://github.com/hackforla/website/pull/7361#issuecomment-2316707494) at 2024-08-28 09:46 PM PDT -daras-cu,2024-08-30T03:12:49Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2319828847) at 2024-08-29 08:12 PM PDT -daras-cu,2024-08-30T03:31:34Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2319925719) at 2024-08-29 08:31 PM PDT -daras-cu,2024-08-30T03:38:23Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2319938558) at 2024-08-29 08:38 PM PDT -daras-cu,2024-09-01T18:44:06Z,- daras-cu submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2274469663) at 2024-09-01 11:44 AM PDT -daras-cu,2024-09-07T18:54:51Z,- daras-cu submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2288332024) at 2024-09-07 11:54 AM PDT -daras-cu,2024-09-07T19:00:38Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2336407009) at 2024-09-07 12:00 PM PDT -daras-cu,2024-09-07T19:28:54Z,- daras-cu submitted pull request review: [7405](https://github.com/hackforla/website/pull/7405#pullrequestreview-2288335317) at 2024-09-07 12:28 PM PDT -daras-cu,2024-09-08T18:53:26Z,- daras-cu submitted pull request review: [7367](https://github.com/hackforla/website/pull/7367#pullrequestreview-2288587236) at 2024-09-08 11:53 AM PDT -daras-cu,2024-09-08T18:54:51Z,- daras-cu submitted pull request review: [7367](https://github.com/hackforla/website/pull/7367#pullrequestreview-2288587419) at 2024-09-08 11:54 AM PDT -daras-cu,2024-09-08T19:09:26Z,- daras-cu assigned to issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2215746206) at 2024-09-08 12:09 PM PDT -daras-cu,2024-09-08T19:20:44Z,- daras-cu commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2336795572) at 2024-09-08 12:20 PM PDT -daras-cu,2024-09-09T01:38:51Z,- daras-cu opened issue: [7413](https://github.com/hackforla/website/issues/7413) at 2024-09-08 06:38 PM PDT -daras-cu,2024-09-09T01:43:11Z,- daras-cu opened issue: [7414](https://github.com/hackforla/website/issues/7414) at 2024-09-08 06:43 PM PDT -daras-cu,2024-09-09T01:48:13Z,- daras-cu opened issue: [7415](https://github.com/hackforla/website/issues/7415) at 2024-09-08 06:48 PM PDT -daras-cu,2024-09-09T01:52:21Z,- daras-cu opened issue: [7416](https://github.com/hackforla/website/issues/7416) at 2024-09-08 06:52 PM PDT -daras-cu,2024-09-09T02:24:51Z,- daras-cu opened issue: [7417](https://github.com/hackforla/website/issues/7417) at 2024-09-08 07:24 PM PDT -daras-cu,2024-09-09T02:41:06Z,- daras-cu opened issue: [7418](https://github.com/hackforla/website/issues/7418) at 2024-09-08 07:41 PM PDT -daras-cu,2024-09-09T02:49:36Z,- daras-cu opened issue: [7419](https://github.com/hackforla/website/issues/7419) at 2024-09-08 07:49 PM PDT -daras-cu,2024-09-09T03:00:27Z,- daras-cu opened issue: [7420](https://github.com/hackforla/website/issues/7420) at 2024-09-08 08:00 PM PDT -daras-cu,2024-09-09T03:15:59Z,- daras-cu opened issue: [7421](https://github.com/hackforla/website/issues/7421) at 2024-09-08 08:15 PM PDT -daras-cu,2024-09-09T03:21:10Z,- daras-cu commented on issue: [7421](https://github.com/hackforla/website/issues/7421#issuecomment-2337034171) at 2024-09-08 08:21 PM PDT -daras-cu,2024-09-09T03:25:45Z,- daras-cu opened issue: [7422](https://github.com/hackforla/website/issues/7422) at 2024-09-08 08:25 PM PDT -daras-cu,2024-09-09T03:28:47Z,- daras-cu opened issue: [7423](https://github.com/hackforla/website/issues/7423) at 2024-09-08 08:28 PM PDT -daras-cu,2024-09-09T04:16:24Z,- daras-cu submitted pull request review: [7367](https://github.com/hackforla/website/pull/7367#pullrequestreview-2288784047) at 2024-09-08 09:16 PM PDT -daras-cu,2024-09-09T04:29:11Z,- daras-cu commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2337089462) at 2024-09-08 09:29 PM PDT -daras-cu,2024-09-09T21:33:11Z,- daras-cu commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2339192192) at 2024-09-09 02:33 PM PDT -daras-cu,2024-09-12T03:04:35Z,- daras-cu commented on issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2345174485) at 2024-09-11 08:04 PM PDT -daras-cu,2024-09-12T03:06:34Z,- daras-cu commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2345176234) at 2024-09-11 08:06 PM PDT -daras-cu,2024-09-12T03:40:34Z,- daras-cu opened issue: [7438](https://github.com/hackforla/website/issues/7438) at 2024-09-11 08:40 PM PDT -daras-cu,2024-09-12T03:47:37Z,- daras-cu opened issue: [7439](https://github.com/hackforla/website/issues/7439) at 2024-09-11 08:47 PM PDT -daras-cu,2024-09-12T03:55:07Z,- daras-cu opened issue: [7440](https://github.com/hackforla/website/issues/7440) at 2024-09-11 08:55 PM PDT -daras-cu,2024-09-12T04:02:54Z,- daras-cu opened issue: [7441](https://github.com/hackforla/website/issues/7441) at 2024-09-11 09:02 PM PDT -daras-cu,2024-09-12T04:07:23Z,- daras-cu opened issue: [7442](https://github.com/hackforla/website/issues/7442) at 2024-09-11 09:07 PM PDT -daras-cu,2024-09-12T04:09:50Z,- daras-cu opened issue: [7443](https://github.com/hackforla/website/issues/7443) at 2024-09-11 09:09 PM PDT -daras-cu,2024-09-12T04:36:48Z,- daras-cu commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2345254790) at 2024-09-11 09:36 PM PDT -daras-cu,2024-09-14T22:02:32Z,- daras-cu commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2351173400) at 2024-09-14 03:02 PM PDT -daras-cu,2024-09-14T22:20:13Z,- daras-cu submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2305212222) at 2024-09-14 03:20 PM PDT -daras-cu,2024-09-16T19:49:37Z,- daras-cu closed issue by PR 7461: [7411](https://github.com/hackforla/website/issues/7411#event-14279051028) at 2024-09-16 12:49 PM PDT -daras-cu,2024-09-16T19:53:12Z,- daras-cu commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2353790597) at 2024-09-16 12:53 PM PDT -daras-cu,2024-09-16T19:53:25Z,- daras-cu closed issue by PR 7428: [7291](https://github.com/hackforla/website/issues/7291#event-14279096562) at 2024-09-16 12:53 PM PDT -daras-cu,2024-09-19T01:15:03Z,- daras-cu opened issue: [7494](https://github.com/hackforla/website/issues/7494) at 2024-09-18 06:15 PM PDT -daras-cu,2024-09-19T01:19:26Z,- daras-cu opened issue: [7495](https://github.com/hackforla/website/issues/7495) at 2024-09-18 06:19 PM PDT -daras-cu,2024-09-20T17:36:48Z,- daras-cu submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2318873850) at 2024-09-20 10:36 AM PDT -daras-cu,2024-09-21T03:32:07Z,- daras-cu submitted pull request review: [7503](https://github.com/hackforla/website/pull/7503#pullrequestreview-2319642671) at 2024-09-20 08:32 PM PDT -daras-cu,2024-09-23T19:45:41Z,- daras-cu commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2369223353) at 2024-09-23 12:45 PM PDT -daras-cu,2024-09-23T19:54:17Z,- daras-cu commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2369241554) at 2024-09-23 12:54 PM PDT -daras-cu,2024-09-23T20:30:59Z,- daras-cu commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2369319533) at 2024-09-23 01:30 PM PDT -daras-cu,2024-09-23T20:41:16Z,- daras-cu commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2369340696) at 2024-09-23 01:41 PM PDT -daras-cu,2024-09-23T21:45:14Z,- daras-cu commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2369532522) at 2024-09-23 02:45 PM PDT -daras-cu,2024-09-24T00:49:37Z,- daras-cu closed issue by PR 7464: [6369](https://github.com/hackforla/website/issues/6369#event-14372889484) at 2024-09-23 05:49 PM PDT -daras-cu,2024-09-24T01:04:33Z,- daras-cu submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2323771526) at 2024-09-23 06:04 PM PDT -daras-cu,2024-09-24T01:25:22Z,- daras-cu submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2323813450) at 2024-09-23 06:25 PM PDT -daras-cu,2024-09-24T01:39:43Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2369931420) at 2024-09-23 06:39 PM PDT -daras-cu,2024-09-25T01:50:22Z,- daras-cu submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2326806009) at 2024-09-24 06:50 PM PDT -daras-cu,2024-10-01T01:03:13Z,- daras-cu closed issue by PR 7522: [7097](https://github.com/hackforla/website/issues/7097#event-14464461046) at 2024-09-30 06:03 PM PDT -daras-cu,2024-10-01T01:07:13Z,- daras-cu closed issue as completed: [6453](https://github.com/hackforla/website/issues/6453#event-14464489889) at 2024-09-30 06:07 PM PDT -daras-cu,2024-10-07T19:08:11Z,- daras-cu closed issue by PR 7559: [7549](https://github.com/hackforla/website/issues/7549#event-14545548852) at 2024-10-07 12:08 PM PDT -daras-cu,2024-10-07T21:01:21Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2397887657) at 2024-10-07 02:01 PM PDT -daras-cu,2024-10-13T00:29:03Z,- daras-cu assigned to issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2401584474) at 2024-10-12 05:29 PM PDT -daras-cu,2024-10-15T02:00:57Z,- daras-cu closed issue by PR 7588: [7477](https://github.com/hackforla/website/issues/7477#event-14649328473) at 2024-10-14 07:00 PM PDT -daras-cu,2024-10-16T03:35:24Z,- daras-cu commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2415657621) at 2024-10-15 08:35 PM PDT -daras-cu,2024-10-16T03:36:55Z,- daras-cu closed issue by PR 7592: [7473](https://github.com/hackforla/website/issues/7473#event-14667652140) at 2024-10-15 08:36 PM PDT -daras-cu,2024-10-16T03:43:07Z,- daras-cu commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2415665038) at 2024-10-15 08:43 PM PDT -daras-cu,2024-10-16T03:46:58Z,- daras-cu commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2415668025) at 2024-10-15 08:46 PM PDT -daras-cu,2024-10-21T23:34:12Z,- daras-cu closed issue by PR 7599: [7563](https://github.com/hackforla/website/issues/7563#event-14772739732) at 2024-10-21 04:34 PM PDT -daras-cu,2024-10-23T03:10:51Z,- daras-cu commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2430753234) at 2024-10-22 08:10 PM PDT -daras-cu,2024-10-23T03:12:29Z,- daras-cu commented on issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2430754976) at 2024-10-22 08:12 PM PDT -daras-cu,2024-10-23T03:24:52Z,- daras-cu commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2430769672) at 2024-10-22 08:24 PM PDT -daras-cu,2024-11-04T04:54:42Z,- daras-cu commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2453827738) at 2024-11-03 08:54 PM PST -daras-cu,2024-11-11T22:20:16Z,- daras-cu commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2469184742) at 2024-11-11 02:20 PM PST -daras-cu,2024-11-17T22:10:47Z,- daras-cu commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2481620909) at 2024-11-17 02:10 PM PST -daras-cu,2024-11-20T02:50:55Z,- daras-cu closed issue by PR 7728: [7650](https://github.com/hackforla/website/issues/7650#event-15358056128) at 2024-11-19 06:50 PM PST -daras-cu,2024-11-25T03:12:13Z,- daras-cu submitted pull request review: [7729](https://github.com/hackforla/website/pull/7729#pullrequestreview-2457023060) at 2024-11-24 07:12 PM PST -daras-cu,2024-11-26T00:43:41Z,- daras-cu commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2499323801) at 2024-11-25 04:43 PM PST -daras-cu,2024-11-27T03:35:20Z,- daras-cu closed issue by PR 7768: [7651](https://github.com/hackforla/website/issues/7651#event-15446031663) at 2024-11-26 07:35 PM PST -daras-cu,2024-11-27T04:23:08Z,- daras-cu closed issue by PR 7757: [7703](https://github.com/hackforla/website/issues/7703#event-15446434885) at 2024-11-26 08:23 PM PST -daras-cu,2024-11-27T05:10:30Z,- daras-cu opened issue: [7774](https://github.com/hackforla/website/issues/7774) at 2024-11-26 09:10 PM PST -daras-cu,2024-11-27T06:18:36Z,- daras-cu commented on issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2503000956) at 2024-11-26 10:18 PM PST -daras-cu,2025-01-20T22:15:34Z,- daras-cu closed issue by PR 7832: [7742](https://github.com/hackforla/website/issues/7742#event-16004941663) at 2025-01-20 02:15 PM PST -daras-cu,2025-01-21T04:53:11Z,- daras-cu commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2603652942) at 2025-01-20 08:53 PM PST -daras-cu,2025-01-22T03:23:07Z,- daras-cu commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2606204496) at 2025-01-21 07:23 PM PST -daras-cu,2025-01-22T04:20:35Z,- daras-cu commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2606257939) at 2025-01-21 08:20 PM PST -daras-cu,2025-01-22T04:23:26Z,- daras-cu commented on issue: [7835](https://github.com/hackforla/website/issues/7835#issuecomment-2606263825) at 2025-01-21 08:23 PM PST -daras-cu,2025-01-22T05:06:03Z,- daras-cu opened issue: [7843](https://github.com/hackforla/website/issues/7843) at 2025-01-21 09:06 PM PST -daras-cu,2025-02-06T04:05:09Z,- daras-cu commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2638775376) at 2025-02-05 08:05 PM PST -daras-cu,2025-02-06T04:29:17Z,- daras-cu commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2638797098) at 2025-02-05 08:29 PM PST -daras-cu,2025-02-11T02:10:59Z,- daras-cu closed issue by PR 7902: [7844](https://github.com/hackforla/website/issues/7844#event-16257648781) at 2025-02-10 06:10 PM PST -daras-cu,2025-02-19T02:47:38Z,- daras-cu closed issue by PR 7908: [7850](https://github.com/hackforla/website/issues/7850#event-16358290563) at 2025-02-18 06:47 PM PST -daras-cu,2025-03-07T04:35:59Z,- daras-cu commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2705508164) at 2025-03-06 08:35 PM PST -daras-cu,2025-03-10T19:29:30Z,- daras-cu commented on pull request: [7984](https://github.com/hackforla/website/pull/7984#issuecomment-2711619234) at 2025-03-10 12:29 PM PDT -daras-cu,2025-03-10T19:30:58Z,- daras-cu commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2711622277) at 2025-03-10 12:30 PM PDT -daras-cu,2025-03-17T20:02:34Z,- daras-cu submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2691845975) at 2025-03-17 01:02 PM PDT -daras-cu,2025-03-17T22:19:08Z,- daras-cu commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2731062652) at 2025-03-17 03:19 PM PDT -daras-cu,2025-03-18T00:46:21Z,- daras-cu assigned to issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2646444422) at 2025-03-17 05:46 PM PDT -daras-cu,2025-03-23T18:28:28Z,- daras-cu submitted pull request review: [7987](https://github.com/hackforla/website/pull/7987#pullrequestreview-2708681698) at 2025-03-23 11:28 AM PDT -daras-cu,2025-03-24T20:49:05Z,- daras-cu submitted pull request review: [7987](https://github.com/hackforla/website/pull/7987#pullrequestreview-2711647035) at 2025-03-24 01:49 PM PDT -daras-cu,2025-03-24T20:49:29Z,- daras-cu closed issue by PR 7987: [7533](https://github.com/hackforla/website/issues/7533#event-16962956027) at 2025-03-24 01:49 PM PDT -daras-cu,2025-03-26T05:29:31Z,- daras-cu closed issue by PR 7985: [7866](https://github.com/hackforla/website/issues/7866#event-16986106314) at 2025-03-25 10:29 PM PDT -daras-cu,2025-03-26T05:38:39Z,- daras-cu commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2753299798) at 2025-03-25 10:38 PM PDT -daras-cu,2025-03-26T05:38:39Z,- daras-cu reopened issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2753299798) at 2025-03-25 10:38 PM PDT -daras-cu,2025-03-30T01:11:33Z,- daras-cu commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2764325362) at 2025-03-29 06:11 PM PDT -daras-cu,2025-04-02T02:35:29Z,- daras-cu closed issue by PR 7985: [7866](https://github.com/hackforla/website/issues/7866#event-17085467952) at 2025-04-01 07:35 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu commented on issue: [8051](https://github.com/hackforla/website/issues/8051#issuecomment-2781836372) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu closed issue as completed: [8051](https://github.com/hackforla/website/issues/8051#event-17145264467) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu commented on issue: [8051](https://github.com/hackforla/website/issues/8051#issuecomment-2781836372) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu closed issue as completed: [8051](https://github.com/hackforla/website/issues/8051#event-17145264467) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-16T02:44:28Z,- daras-cu commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2808077985) at 2025-04-15 07:44 PM PDT -daras-cu,2025-04-16T02:44:28Z,- daras-cu closed issue as completed: [7907](https://github.com/hackforla/website/issues/7907#event-17280159123) at 2025-04-15 07:44 PM PDT -daras-cu,2025-04-16T03:30:17Z,- daras-cu closed issue by PR 8046: [7879](https://github.com/hackforla/website/issues/7879#event-17280520905) at 2025-04-15 08:30 PM PDT -daras-cu,2025-04-16T03:36:08Z,- daras-cu commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2808142422) at 2025-04-15 08:36 PM PDT -daras-cu,2025-04-25T01:51:20Z,- daras-cu closed issue by PR 8069: [7581](https://github.com/hackforla/website/issues/7581#event-17399253419) at 2025-04-24 06:51 PM PDT -daras-cu,2025-04-25T02:23:42Z,- daras-cu commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2829233552) at 2025-04-24 07:23 PM PDT -daras-cu,2025-04-25T02:23:42Z,- daras-cu closed issue as completed: [7391](https://github.com/hackforla/website/issues/7391#event-17399468471) at 2025-04-24 07:23 PM PDT -daras-cu,2025-04-28T01:30:53Z,- daras-cu commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2833777579) at 2025-04-27 06:30 PM PDT -daras-cu,2025-04-28T22:21:33Z,- daras-cu commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2836868311) at 2025-04-28 03:21 PM PDT -daras-cu,2025-04-30T01:55:45Z,- daras-cu closed issue by PR 8090: [7443](https://github.com/hackforla/website/issues/7443#event-17465091121) at 2025-04-29 06:55 PM PDT -daras-cu,2025-04-30T01:57:36Z,- daras-cu closed issue by PR 8091: [7909](https://github.com/hackforla/website/issues/7909#event-17465105412) at 2025-04-29 06:57 PM PDT -daras-cu,2025-04-30T02:37:05Z,- daras-cu commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2840657170) at 2025-04-29 07:37 PM PDT -daras-cu,2025-04-30T02:37:05Z,- daras-cu closed issue as completed: [7390](https://github.com/hackforla/website/issues/7390#event-17465395004) at 2025-04-29 07:37 PM PDT -daras-cu,2025-05-05T03:13:41Z,- daras-cu commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2849803450) at 2025-05-04 08:13 PM PDT -daras-cu,2025-05-06T01:27:59Z,- daras-cu commented on issue: [8055](https://github.com/hackforla/website/issues/8055#issuecomment-2852951091) at 2025-05-05 06:27 PM PDT -daras-cu,2025-05-06T01:27:59Z,- daras-cu commented on issue: [8055](https://github.com/hackforla/website/issues/8055#issuecomment-2852951091) at 2025-05-05 06:27 PM PDT -daras-cu,2025-05-11T18:34:30Z,- daras-cu commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2870042749) at 2025-05-11 11:34 AM PDT -daras-cu,2025-05-11T19:56:42Z,- daras-cu opened pull request: [8121](https://github.com/hackforla/website/pull/8121) at 2025-05-11 12:56 PM PDT -daras-cu,2025-05-13T01:44:36Z,- daras-cu commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2874785507) at 2025-05-12 06:44 PM PDT -daras-cu,2025-05-13T01:46:37Z,- daras-cu commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2874788457) at 2025-05-12 06:46 PM PDT -daras-cu,2025-05-13T01:46:38Z,- daras-cu closed issue by PR 7615: [2147](https://github.com/hackforla/website/issues/2147#event-17626743395) at 2025-05-12 06:46 PM PDT -daras-cu,2025-05-17T22:51:28Z,- daras-cu commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2888619556) at 2025-05-17 03:51 PM PDT -daras-cu,2025-05-17T23:12:09Z,- daras-cu commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2888631142) at 2025-05-17 04:12 PM PDT -daras-cu,2025-05-18T02:17:46Z,- daras-cu pull request merged: [8121](https://github.com/hackforla/website/pull/8121#event-17701369624) at 2025-05-17 07:17 PM PDT -daras-cu,2025-05-19T19:21:39Z,- daras-cu commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2892044505) at 2025-05-19 12:21 PM PDT -daras-cu,2025-05-20T00:47:40Z,- daras-cu assigned to issue: [6919](https://github.com/hackforla/website/issues/6919#event-17723933701) at 2025-05-19 05:47 PM PDT -daras-cu,2025-05-21T02:23:29Z,- daras-cu closed issue by PR 8146: [7995](https://github.com/hackforla/website/issues/7995#event-17744365133) at 2025-05-20 07:23 PM PDT -daras-cu,2025-05-21T02:24:21Z,- daras-cu closed issue by PR 8140: [7782](https://github.com/hackforla/website/issues/7782#event-17744371021) at 2025-05-20 07:24 PM PDT -daras-cu,2025-05-28T01:54:34Z,- daras-cu closed issue by PR 8156: [7998](https://github.com/hackforla/website/issues/7998#event-17841450071) at 2025-05-27 06:54 PM PDT -daras-cu,2025-05-28T01:55:30Z,- daras-cu closed issue by PR 8159: [7954](https://github.com/hackforla/website/issues/7954#event-17841462594) at 2025-05-27 06:55 PM PDT -daras-cu,2025-05-28T02:00:34Z,- daras-cu commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2914654454) at 2025-05-27 07:00 PM PDT -daras-cu,2025-05-28T02:23:15Z,- daras-cu commented on issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2914691265) at 2025-05-27 07:23 PM PDT -daras-cu,2025-05-28T02:24:22Z,- daras-cu commented on issue: [8087](https://github.com/hackforla/website/issues/8087#issuecomment-2914692639) at 2025-05-27 07:24 PM PDT -daras-cu,2025-05-28T02:24:22Z,- daras-cu closed issue as completed: [8087](https://github.com/hackforla/website/issues/8087#event-17841730731) at 2025-05-27 07:24 PM PDT -daras-cu,2025-05-28T03:08:57Z,- daras-cu commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2914754554) at 2025-05-27 08:08 PM PDT -daras-cu,2025-05-28T03:09:05Z,- daras-cu closed issue by PR 8160: [7999](https://github.com/hackforla/website/issues/7999#event-17842101649) at 2025-05-27 08:09 PM PDT -daras-cu,2025-06-02T21:51:30Z,- daras-cu commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2932637222) at 2025-06-02 02:51 PM PDT -daras-cu,2025-06-27T02:06:16Z,- daras-cu commented on issue: [7635](https://github.com/hackforla/website/issues/7635#issuecomment-3011108524) at 2025-06-26 07:06 PM PDT -daras-cu,2025-06-27T02:06:16Z,- daras-cu closed issue as completed: [7635](https://github.com/hackforla/website/issues/7635#event-18347621839) at 2025-06-26 07:06 PM PDT -daras-cu,2025-06-30T04:07:58Z,- daras-cu commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3017707967) at 2025-06-29 09:07 PM PDT -daras-cu,2025-06-30T23:25:13Z,- daras-cu commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-3021141805) at 2025-06-30 04:25 PM PDT -daras-cu,2025-06-30T23:27:21Z,- daras-cu closed issue as not planned: [8205](https://github.com/hackforla/website/issues/8205#event-18396698574) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:22Z,- daras-cu closed issue as not planned: [8207](https://github.com/hackforla/website/issues/8207#event-18396698663) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:53Z,- daras-cu closed issue as not planned: [8208](https://github.com/hackforla/website/issues/8208#event-18396702798) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:54Z,- daras-cu closed issue as not planned: [8209](https://github.com/hackforla/website/issues/8209#event-18396702881) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:54Z,- daras-cu closed issue as not planned: [8210](https://github.com/hackforla/website/issues/8210#event-18396702920) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:54Z,- daras-cu closed issue as not planned: [8211](https://github.com/hackforla/website/issues/8211#event-18396702974) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:55Z,- daras-cu closed issue as not planned: [8212](https://github.com/hackforla/website/issues/8212#event-18396703030) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:55Z,- daras-cu closed issue as not planned: [8213](https://github.com/hackforla/website/issues/8213#event-18396703074) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:55Z,- daras-cu closed issue as not planned: [8214](https://github.com/hackforla/website/issues/8214#event-18396703115) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8215](https://github.com/hackforla/website/issues/8215#event-18396703147) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8216](https://github.com/hackforla/website/issues/8216#event-18396703180) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8217](https://github.com/hackforla/website/issues/8217#event-18396703206) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8218](https://github.com/hackforla/website/issues/8218#event-18396703242) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:57Z,- daras-cu closed issue as not planned: [8219](https://github.com/hackforla/website/issues/8219#event-18396703274) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:57Z,- daras-cu closed issue as not planned: [8220](https://github.com/hackforla/website/issues/8220#event-18396703327) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:57Z,- daras-cu closed issue as not planned: [8221](https://github.com/hackforla/website/issues/8221#event-18396703375) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8222](https://github.com/hackforla/website/issues/8222#event-18396703412) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8223](https://github.com/hackforla/website/issues/8223#event-18396703461) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8224](https://github.com/hackforla/website/issues/8224#event-18396703505) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8225](https://github.com/hackforla/website/issues/8225#event-18396703564) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:59Z,- daras-cu closed issue as not planned: [8226](https://github.com/hackforla/website/issues/8226#event-18396703753) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:59Z,- daras-cu closed issue as not planned: [8227](https://github.com/hackforla/website/issues/8227#event-18396703797) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:59Z,- daras-cu closed issue as not planned: [8228](https://github.com/hackforla/website/issues/8228#event-18396703830) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:28:00Z,- daras-cu closed issue as not planned: [8229](https://github.com/hackforla/website/issues/8229#event-18396703857) at 2025-06-30 04:28 PM PDT -daras-cu,2025-06-30T23:28:00Z,- daras-cu closed issue as not planned: [8230](https://github.com/hackforla/website/issues/8230#event-18396703892) at 2025-06-30 04:28 PM PDT -Dartis4,6597,SKILLS ISSUE -Dartis4,2024-04-09T02:50:26Z,- Dartis4 opened issue: [6597](https://github.com/hackforla/website/issues/6597) at 2024-04-08 07:50 PM PDT -Dartis4,2024-04-09T02:50:41Z,- Dartis4 assigned to issue: [6597](https://github.com/hackforla/website/issues/6597#issuecomment-2044060166) at 2024-04-08 07:50 PM PDT -Dartis4,2024-04-12T20:37:02Z,- Dartis4 assigned to issue: [6218](https://github.com/hackforla/website/issues/6218) at 2024-04-12 01:37 PM PDT -Dartis4,2024-04-12T20:37:46Z,- Dartis4 unassigned from issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052495140) at 2024-04-12 01:37 PM PDT -Dartis4,2024-04-12T20:57:39Z,- Dartis4 assigned to issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052495140) at 2024-04-12 01:57 PM PDT -Dartis4,2024-04-14T19:21:07Z,- Dartis4 unassigned from issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052518804) at 2024-04-14 12:21 PM PDT -Dartis4,2024-04-14T19:39:14Z,- Dartis4 assigned to issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2016945295) at 2024-04-14 12:39 PM PDT -Dartis4,2024-04-14T19:40:28Z,- Dartis4 commented on issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2054164765) at 2024-04-14 12:40 PM PDT -Dartis4,2024-04-14T22:04:33Z,- Dartis4 opened pull request: [6646](https://github.com/hackforla/website/pull/6646) at 2024-04-14 03:04 PM PDT -Dartis4,2024-04-14T22:13:01Z,- Dartis4 commented on issue: [6597](https://github.com/hackforla/website/issues/6597#issuecomment-2054200391) at 2024-04-14 03:13 PM PDT -Dartis4,2024-04-18T21:55:48Z,- Dartis4 pull request merged: [6646](https://github.com/hackforla/website/pull/6646#event-12529615166) at 2024-04-18 02:55 PM PDT -Dartis4,2024-04-21T19:25:20Z,- Dartis4 commented on pull request: [6694](https://github.com/hackforla/website/pull/6694#issuecomment-2068173011) at 2024-04-21 12:25 PM PDT -Dartis4,2024-04-21T19:32:17Z,- Dartis4 submitted pull request review: [6694](https://github.com/hackforla/website/pull/6694#pullrequestreview-2013504914) at 2024-04-21 12:32 PM PDT -Dartis4,2024-04-21T19:41:59Z,- Dartis4 assigned to issue: [6696](https://github.com/hackforla/website/issues/6696) at 2024-04-21 12:41 PM PDT -Dartis4,2024-04-21T19:44:16Z,- Dartis4 commented on issue: [6696](https://github.com/hackforla/website/issues/6696#issuecomment-2068177952) at 2024-04-21 12:44 PM PDT -Dartis4,2024-04-21T20:57:55Z,- Dartis4 opened pull request: [6707](https://github.com/hackforla/website/pull/6707) at 2024-04-21 01:57 PM PDT -Dartis4,2024-04-23T13:48:59Z,- Dartis4 pull request merged: [6707](https://github.com/hackforla/website/pull/6707#event-12576057750) at 2024-04-23 06:48 AM PDT -Dartis4,2024-04-23T18:12:06Z,- Dartis4 assigned to issue: [6091](https://github.com/hackforla/website/issues/6091) at 2024-04-23 11:12 AM PDT -Dartis4,2024-04-23T18:14:50Z,- Dartis4 commented on issue: [6091](https://github.com/hackforla/website/issues/6091#issuecomment-2073080961) at 2024-04-23 11:14 AM PDT -Dartis4,2024-04-27T20:02:06Z,- Dartis4 closed issue as completed: [6597](https://github.com/hackforla/website/issues/6597#event-12633040765) at 2024-04-27 01:02 PM PDT -Dartis4,2024-05-06T02:09:26Z,- Dartis4 assigned to issue: [6665](https://github.com/hackforla/website/issues/6665) at 2024-05-05 07:09 PM PDT -Dartis4,2024-05-06T21:21:47Z,- Dartis4 commented on issue: [6665](https://github.com/hackforla/website/issues/6665#issuecomment-2096945604) at 2024-05-06 02:21 PM PDT -Dartis4,2024-05-06T22:59:32Z,- Dartis4 commented on issue: [6665](https://github.com/hackforla/website/issues/6665#issuecomment-2097066269) at 2024-05-06 03:59 PM PDT -Dartis4,2024-05-06T23:20:01Z,- Dartis4 opened pull request: [6824](https://github.com/hackforla/website/pull/6824) at 2024-05-06 04:20 PM PDT -Dartis4,2024-05-07T02:10:53Z,- Dartis4 pull request merged: [6824](https://github.com/hackforla/website/pull/6824#event-12722395915) at 2024-05-06 07:10 PM PDT -das-mittel,6040,SKILLS ISSUE -das-mittel,2024-01-03T04:23:13Z,- das-mittel opened issue: [6040](https://github.com/hackforla/website/issues/6040) at 2024-01-02 08:23 PM PST -das-mittel,2024-01-03T04:23:14Z,- das-mittel assigned to issue: [6040](https://github.com/hackforla/website/issues/6040) at 2024-01-02 08:23 PM PST -das-mittel,2024-01-06T01:18:27Z,- das-mittel assigned to issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1874740969) at 2024-01-05 05:18 PM PST -das-mittel,2024-01-06T01:21:35Z,- das-mittel commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1879479719) at 2024-01-05 05:21 PM PST -das-mittel,2024-01-28T04:00:22Z,- das-mittel commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1913439716) at 2024-01-27 08:00 PM PST -das-mittel,2024-02-01T01:03:22Z,- das-mittel opened pull request: [6202](https://github.com/hackforla/website/pull/6202) at 2024-01-31 05:03 PM PST -das-mittel,2024-02-02T08:21:46Z,- das-mittel pull request merged: [6202](https://github.com/hackforla/website/pull/6202#event-11680825923) at 2024-02-02 12:21 AM PST -das-mittel,2024-02-02T19:37:14Z,- das-mittel assigned to issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1875015788) at 2024-02-02 11:37 AM PST -das-mittel,2024-02-05T22:19:13Z,- das-mittel commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1928238008) at 2024-02-05 02:19 PM PST -das-mittel,2024-02-06T21:43:32Z,- das-mittel opened pull request: [6261](https://github.com/hackforla/website/pull/6261) at 2024-02-06 01:43 PM PST -das-mittel,2024-02-07T18:29:11Z,- das-mittel pull request closed w/o merging: [6261](https://github.com/hackforla/website/pull/6261#event-11736271962) at 2024-02-07 10:29 AM PST -das-mittel,2024-02-29T01:55:32Z,- das-mittel unassigned from issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1970257195) at 2024-02-28 05:55 PM PST -das-mittel,2024-03-03T05:04:19Z,- das-mittel commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1975023713) at 2024-03-02 09:04 PM PST -das-mittel,2024-03-08T08:14:01Z,- das-mittel closed issue as completed: [6040](https://github.com/hackforla/website/issues/6040#event-12052548787) at 2024-03-08 12:14 AM PST -das-mittel,2024-03-12T07:32:14Z,- das-mittel assigned to issue: [6095](https://github.com/hackforla/website/issues/6095) at 2024-03-12 12:32 AM PDT -das-mittel,2024-03-12T07:34:09Z,- das-mittel commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-1990951872) at 2024-03-12 12:34 AM PDT -das-mittel,2024-03-21T00:00:07Z,- das-mittel commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-2010935822) at 2024-03-20 05:00 PM PDT -davidwiese,5070,SKILLS ISSUE -davidwiese,2023-07-26T02:59:37Z,- davidwiese opened issue: [5070](https://github.com/hackforla/website/issues/5070) at 2023-07-25 07:59 PM PDT -davidwiese,2023-07-26T02:59:38Z,- davidwiese assigned to issue: [5070](https://github.com/hackforla/website/issues/5070) at 2023-07-25 07:59 PM PDT -davidwiese,2023-07-26T20:37:58Z,- davidwiese assigned to issue: [4802](https://github.com/hackforla/website/issues/4802) at 2023-07-26 01:37 PM PDT -davidwiese,2023-07-26T20:42:46Z,- davidwiese commented on issue: [4802](https://github.com/hackforla/website/issues/4802#issuecomment-1652466013) at 2023-07-26 01:42 PM PDT -davidwiese,2023-07-26T20:45:15Z,- davidwiese commented on issue: [5070](https://github.com/hackforla/website/issues/5070#issuecomment-1652469128) at 2023-07-26 01:45 PM PDT -davidwiese,2023-07-26T21:59:16Z,- davidwiese commented on issue: [4802](https://github.com/hackforla/website/issues/4802#issuecomment-1652555050) at 2023-07-26 02:59 PM PDT -davidwiese,2023-07-26T22:37:06Z,- davidwiese opened pull request: [5097](https://github.com/hackforla/website/pull/5097) at 2023-07-26 03:37 PM PDT -davidwiese,2023-07-27T01:55:10Z,- davidwiese pull request merged: [5097](https://github.com/hackforla/website/pull/5097#event-9930433136) at 2023-07-26 06:55 PM PDT -davidwiese,2023-07-27T20:46:17Z,- davidwiese closed issue as completed: [5070](https://github.com/hackforla/website/issues/5070#event-9940445597) at 2023-07-27 01:46 PM PDT -davidwiese,2023-07-27T20:48:07Z,- davidwiese reopened issue: [5070](https://github.com/hackforla/website/issues/5070#event-9940445597) at 2023-07-27 01:48 PM PDT -davidwiese,2023-07-29T11:12:58Z,- davidwiese pull request merged: [5097](https://github.com/hackforla/website/pull/5097#event-9954302237) at 2023-07-29 04:12 AM PDT -davidwiese,2023-07-31T19:08:58Z,- davidwiese closed issue as completed: [5070](https://github.com/hackforla/website/issues/5070#event-9967873848) at 2023-07-31 12:08 PM PDT -davidwiese,2023-07-31T19:34:37Z,- davidwiese assigned to issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1651176262) at 2023-07-31 12:34 PM PDT -davidwiese,2023-07-31T19:36:24Z,- davidwiese commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659016083) at 2023-07-31 12:36 PM PDT -davidwiese,2023-07-31T20:10:12Z,- davidwiese commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659061455) at 2023-07-31 01:10 PM PDT -davidwiese,2023-07-31T20:18:17Z,- davidwiese opened pull request: [5121](https://github.com/hackforla/website/pull/5121) at 2023-07-31 01:18 PM PDT -davidwiese,2023-08-04T20:12:46Z,- davidwiese commented on pull request: [5141](https://github.com/hackforla/website/pull/5141#issuecomment-1666123564) at 2023-08-04 01:12 PM PDT -davidwiese,2023-08-04T21:19:09Z,- davidwiese submitted pull request review: [5141](https://github.com/hackforla/website/pull/5141#pullrequestreview-1563576004) at 2023-08-04 02:19 PM PDT -davidwiese,2023-08-06T15:29:15Z,- davidwiese pull request merged: [5121](https://github.com/hackforla/website/pull/5121#event-10017508786) at 2023-08-06 08:29 AM PDT -davidwiese,2023-08-06T15:36:17Z,- davidwiese assigned to issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1641394638) at 2023-08-06 08:36 AM PDT -davidwiese,2023-08-06T15:37:24Z,- davidwiese commented on issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1666898796) at 2023-08-06 08:37 AM PDT -davidwiese,2023-08-09T02:19:08Z,- davidwiese commented on issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1670557506) at 2023-08-08 07:19 PM PDT -davidwiese,2023-08-09T20:18:24Z,- davidwiese opened pull request: [5168](https://github.com/hackforla/website/pull/5168) at 2023-08-09 01:18 PM PDT -davidwiese,2023-08-10T04:13:10Z,- davidwiese pull request closed w/o merging: [5168](https://github.com/hackforla/website/pull/5168#event-10054431838) at 2023-08-09 09:13 PM PDT -davidwiese,2023-08-10T04:19:36Z,- davidwiese commented on pull request: [5168](https://github.com/hackforla/website/pull/5168#issuecomment-1672530745) at 2023-08-09 09:19 PM PDT -davidwiese,2023-08-10T18:32:13Z,- davidwiese assigned to issue: [5017](https://github.com/hackforla/website/issues/5017#issuecomment-1641395420) at 2023-08-10 11:32 AM PDT -davidwiese,2023-08-10T18:34:15Z,- davidwiese commented on issue: [5017](https://github.com/hackforla/website/issues/5017#issuecomment-1673713614) at 2023-08-10 11:34 AM PDT -davidwiese,2023-08-29T21:58:02Z,- davidwiese assigned to issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1697631292) at 2023-08-29 02:58 PM PDT -davidwiese,2023-08-29T21:59:33Z,- davidwiese commented on issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1698201463) at 2023-08-29 02:59 PM PDT -davidwiese,2023-08-30T20:12:29Z,- davidwiese opened pull request: [5380](https://github.com/hackforla/website/pull/5380) at 2023-08-30 01:12 PM PDT -davidwiese,2023-08-31T00:26:18Z,- davidwiese assigned to issue: [5231](https://github.com/hackforla/website/issues/5231) at 2023-08-30 05:26 PM PDT -davidwiese,2023-08-31T00:26:49Z,- davidwiese commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700072682) at 2023-08-30 05:26 PM PDT -davidwiese,2023-08-31T05:02:12Z,- davidwiese unassigned from issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700370898) at 2023-08-30 10:02 PM PDT -davidwiese,2023-08-31T17:03:36Z,- davidwiese pull request merged: [5380](https://github.com/hackforla/website/pull/5380#event-10247506691) at 2023-08-31 10:03 AM PDT -davidwiese,2023-08-31T17:11:43Z,- davidwiese assigned to issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700370898) at 2023-08-31 10:11 AM PDT -davidwiese,2023-08-31T17:12:26Z,- davidwiese commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1701439512) at 2023-08-31 10:12 AM PDT -davidwiese,2023-09-01T19:07:29Z,- davidwiese opened pull request: [5412](https://github.com/hackforla/website/pull/5412) at 2023-09-01 12:07 PM PDT -davidwiese,2023-09-01T19:13:20Z,- davidwiese commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1703216414) at 2023-09-01 12:13 PM PDT -davidwiese,2023-09-04T03:50:24Z,- davidwiese pull request merged: [5412](https://github.com/hackforla/website/pull/5412#event-10269030243) at 2023-09-03 08:50 PM PDT -davidwiese,2023-09-26T19:11:12Z,- davidwiese assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1699595296) at 2023-09-26 12:11 PM PDT -davidwiese,2023-09-26T19:12:09Z,- davidwiese commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1736141319) at 2023-09-26 12:12 PM PDT -davidwiese,2023-10-03T15:46:09Z,- davidwiese commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745248809) at 2023-10-03 08:46 AM PDT -davidwiese,2023-10-03T15:47:19Z,- davidwiese unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745248809) at 2023-10-03 08:47 AM PDT -dcotelessa,6879,SKILLS ISSUE -dcotelessa,2024-05-22T02:59:22Z,- dcotelessa opened issue: [6879](https://github.com/hackforla/website/issues/6879) at 2024-05-21 07:59 PM PDT -dcotelessa,2024-05-22T02:59:26Z,- dcotelessa assigned to issue: [6879](https://github.com/hackforla/website/issues/6879) at 2024-05-21 07:59 PM PDT -dcotelessa,2024-05-26T03:18:36Z,- dcotelessa assigned to issue: [6723](https://github.com/hackforla/website/issues/6723) at 2024-05-25 08:18 PM PDT -dcotelessa,2024-05-26T04:04:01Z,- dcotelessa opened pull request: [6898](https://github.com/hackforla/website/pull/6898) at 2024-05-25 09:04 PM PDT -dcotelessa,2024-05-26T17:27:00Z,- dcotelessa submitted pull request review: [6897](https://github.com/hackforla/website/pull/6897#pullrequestreview-2079759752) at 2024-05-26 10:27 AM PDT -dcotelessa,2024-05-26T17:43:09Z,- dcotelessa submitted pull request review: [6891](https://github.com/hackforla/website/pull/6891#pullrequestreview-2079761608) at 2024-05-26 10:43 AM PDT -dcotelessa,2024-05-27T04:15:18Z,- dcotelessa submitted pull request review: [6899](https://github.com/hackforla/website/pull/6899#pullrequestreview-2079954942) at 2024-05-26 09:15 PM PDT -dcotelessa,2024-05-27T04:25:00Z,- dcotelessa commented on issue: [6723](https://github.com/hackforla/website/issues/6723#issuecomment-2132617511) at 2024-05-26 09:25 PM PDT -dcotelessa,2024-05-29T19:49:56Z,- dcotelessa commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2138151991) at 2024-05-29 12:49 PM PDT -dcotelessa,2024-05-30T00:01:37Z,- dcotelessa commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2138436860) at 2024-05-29 05:01 PM PDT -dcotelessa,2024-05-30T16:11:26Z,- dcotelessa pull request merged: [6898](https://github.com/hackforla/website/pull/6898#event-12988600173) at 2024-05-30 09:11 AM PDT -dcotelessa,2024-05-31T02:50:13Z,- dcotelessa assigned to issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2138313063) at 2024-05-30 07:50 PM PDT -dcotelessa,2024-06-01T03:53:31Z,- dcotelessa submitted pull request review: [6917](https://github.com/hackforla/website/pull/6917#pullrequestreview-2092002521) at 2024-05-31 08:53 PM PDT -dcotelessa,2024-06-01T06:17:14Z,- dcotelessa opened pull request: [6921](https://github.com/hackforla/website/pull/6921) at 2024-05-31 11:17 PM PDT -dcotelessa,2024-06-02T04:53:16Z,- dcotelessa commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143696663) at 2024-06-01 09:53 PM PDT -dcotelessa,2024-06-02T04:58:38Z,- dcotelessa pull request closed w/o merging: [6921](https://github.com/hackforla/website/pull/6921#event-13010789790) at 2024-06-01 09:58 PM PDT -dcotelessa,2024-06-02T05:00:30Z,- dcotelessa opened pull request: [6924](https://github.com/hackforla/website/pull/6924) at 2024-06-01 10:00 PM PDT -dcotelessa,2024-06-02T05:08:33Z,- dcotelessa commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2143699956) at 2024-06-01 10:08 PM PDT -dcotelessa,2024-06-05T20:27:02Z,- dcotelessa pull request merged: [6924](https://github.com/hackforla/website/pull/6924#event-13057117739) at 2024-06-05 01:27 PM PDT -dcotelessa,2024-06-05T21:13:48Z,- dcotelessa submitted pull request review: [6961](https://github.com/hackforla/website/pull/6961#pullrequestreview-2100301393) at 2024-06-05 02:13 PM PDT -dcotelessa,2024-06-05T23:28:15Z,- dcotelessa submitted pull request review: [6963](https://github.com/hackforla/website/pull/6963#pullrequestreview-2100463695) at 2024-06-05 04:28 PM PDT -dcotelessa,2024-06-05T23:30:11Z,- dcotelessa commented on pull request: [6961](https://github.com/hackforla/website/pull/6961#issuecomment-2151121568) at 2024-06-05 04:30 PM PDT -dcotelessa,2024-06-05T23:30:47Z,- dcotelessa commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2151122046) at 2024-06-05 04:30 PM PDT -dcotelessa,2024-06-06T18:17:47Z,- dcotelessa assigned to issue: [6750](https://github.com/hackforla/website/issues/6750) at 2024-06-06 11:17 AM PDT -dcotelessa,2024-06-07T20:26:22Z,- dcotelessa submitted pull request review: [6965](https://github.com/hackforla/website/pull/6965#pullrequestreview-2105310817) at 2024-06-07 01:26 PM PDT -dcotelessa,2024-06-08T01:53:39Z,- dcotelessa commented on issue: [6750](https://github.com/hackforla/website/issues/6750#issuecomment-2155754181) at 2024-06-07 06:53 PM PDT -dcotelessa,2024-06-11T04:41:21Z,- dcotelessa commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2159780160) at 2024-06-10 09:41 PM PDT -dcotelessa,2024-06-11T04:51:00Z,- dcotelessa commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2159788451) at 2024-06-10 09:51 PM PDT -dcotelessa,2024-06-11T04:54:14Z,- dcotelessa submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2109314396) at 2024-06-10 09:54 PM PDT -dcotelessa,2024-06-11T21:20:36Z,- dcotelessa submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2111474105) at 2024-06-11 02:20 PM PDT -dcotelessa,2024-06-11T21:30:52Z,- dcotelessa submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2111486443) at 2024-06-11 02:30 PM PDT -dcotelessa,2024-06-11T23:11:06Z,- dcotelessa assigned to issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2119336517) at 2024-06-11 04:11 PM PDT -dcotelessa,2024-06-11T23:11:51Z,- dcotelessa commented on issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2161749872) at 2024-06-11 04:11 PM PDT -dcotelessa,2024-06-12T00:20:14Z,- dcotelessa opened pull request: [6989](https://github.com/hackforla/website/pull/6989) at 2024-06-11 05:20 PM PDT -dcotelessa,2024-06-12T02:57:07Z,- dcotelessa submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2111846261) at 2024-06-11 07:57 PM PDT -dcotelessa,2024-06-13T01:44:07Z,- dcotelessa pull request merged: [6989](https://github.com/hackforla/website/pull/6989#event-13139161778) at 2024-06-12 06:44 PM PDT -dcotelessa,2024-06-17T22:53:53Z,- dcotelessa assigned to issue: [6918](https://github.com/hackforla/website/issues/6918) at 2024-06-17 03:53 PM PDT -dcotelessa,2024-06-18T07:10:16Z,- dcotelessa commented on issue: [6918](https://github.com/hackforla/website/issues/6918#issuecomment-2175331401) at 2024-06-18 12:10 AM PDT -dcotelessa,2024-06-18T07:38:40Z,- dcotelessa opened pull request: [7017](https://github.com/hackforla/website/pull/7017) at 2024-06-18 12:38 AM PDT -dcotelessa,2024-06-19T22:30:08Z,- dcotelessa assigned to issue: [6932](https://github.com/hackforla/website/issues/6932) at 2024-06-19 03:30 PM PDT -dcotelessa,2024-06-19T22:52:39Z,- dcotelessa commented on issue: [6932](https://github.com/hackforla/website/issues/6932#issuecomment-2179543026) at 2024-06-19 03:52 PM PDT -dcotelessa,2024-06-19T23:01:00Z,- dcotelessa opened pull request: [7038](https://github.com/hackforla/website/pull/7038) at 2024-06-19 04:01 PM PDT -dcotelessa,2024-06-20T18:47:43Z,- dcotelessa pull request merged: [7017](https://github.com/hackforla/website/pull/7017#event-13233199258) at 2024-06-20 11:47 AM PDT -dcotelessa,2024-06-23T04:17:48Z,- dcotelessa pull request merged: [7038](https://github.com/hackforla/website/pull/7038#event-13253123626) at 2024-06-22 09:17 PM PDT -dcotelessa,2024-06-29T02:59:17Z,- dcotelessa assigned to issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2195396302) at 2024-06-28 07:59 PM PDT -dcotelessa,2024-06-29T05:13:28Z,- dcotelessa opened pull request: [7082](https://github.com/hackforla/website/pull/7082) at 2024-06-28 10:13 PM PDT -dcotelessa,2024-06-29T05:59:04Z,- dcotelessa commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2197996425) at 2024-06-28 10:59 PM PDT -dcotelessa,2024-06-30T17:28:47Z,- dcotelessa assigned to issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2097188674) at 2024-06-30 10:28 AM PDT -dcotelessa,2024-06-30T17:28:55Z,- dcotelessa unassigned from issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2097188674) at 2024-06-30 10:28 AM PDT -dcotelessa,2024-06-30T17:29:41Z,- dcotelessa assigned to issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2198629846) at 2024-06-30 10:29 AM PDT -dcotelessa,2024-07-01T04:40:00Z,- dcotelessa pull request merged: [7082](https://github.com/hackforla/website/pull/7082#event-13344901347) at 2024-06-30 09:40 PM PDT -dcotelessa,2024-07-01T06:17:01Z,- dcotelessa commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2199325171) at 2024-06-30 11:17 PM PDT -dcotelessa,2024-07-01T06:17:20Z,- dcotelessa submitted pull request review: [7081](https://github.com/hackforla/website/pull/7081#pullrequestreview-2150507864) at 2024-06-30 11:17 PM PDT -dcotelessa,2024-07-17T06:30:17Z,- dcotelessa closed issue as completed: [6879](https://github.com/hackforla/website/issues/6879#event-13531506900) at 2024-07-16 11:30 PM PDT -dcotelessa,2024-08-12T00:30:48Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282950525) at 2024-08-11 05:30 PM PDT -dcotelessa,2024-08-12T00:45:03Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282957746) at 2024-08-11 05:45 PM PDT -dcotelessa,2024-08-12T01:03:19Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282966905) at 2024-08-11 06:03 PM PDT -dcotelessa,2024-08-12T01:05:26Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282968062) at 2024-08-11 06:05 PM PDT -dcotelessa,2024-08-12T01:11:50Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282971725) at 2024-08-11 06:11 PM PDT -dcotelessa,2024-08-12T01:49:06Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282992248) at 2024-08-11 06:49 PM PDT -dcotelessa,2024-08-12T01:50:55Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282993409) at 2024-08-11 06:50 PM PDT -dcotelessa,2024-08-12T01:59:27Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283000114) at 2024-08-11 06:59 PM PDT -dcotelessa,2024-08-12T02:20:12Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283012119) at 2024-08-11 07:20 PM PDT -dcotelessa,2024-08-12T02:25:24Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283015870) at 2024-08-11 07:25 PM PDT -dcotelessa,2024-08-12T02:26:41Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283016649) at 2024-08-11 07:26 PM PDT -dcotelessa,2024-08-12T02:26:45Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283016692) at 2024-08-11 07:26 PM PDT -dcotelessa,2024-08-12T02:26:50Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283016736) at 2024-08-11 07:26 PM PDT -dcotelessa,2024-08-12T03:06:22Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283039814) at 2024-08-11 08:06 PM PDT -dcotelessa,2024-08-12T03:14:14Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283044348) at 2024-08-11 08:14 PM PDT -dcotelessa,2024-08-12T04:34:16Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283097103) at 2024-08-11 09:34 PM PDT -dcotelessa,2024-08-12T04:35:20Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283097789) at 2024-08-11 09:35 PM PDT -dcotelessa,2024-08-12T04:50:51Z,- dcotelessa assigned to issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2212646963) at 2024-08-11 09:50 PM PDT -dcotelessa,2024-08-12T04:51:04Z,- dcotelessa unassigned from issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283108883) at 2024-08-11 09:51 PM PDT -dcotelessa,2024-08-12T06:53:49Z,- dcotelessa assigned to issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283108883) at 2024-08-11 11:53 PM PDT -dcotelessa,2024-08-12T06:54:04Z,- dcotelessa unassigned from issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283227775) at 2024-08-11 11:54 PM PDT -dcotelessa,2024-08-12T06:56:24Z,- dcotelessa unassigned from issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2282828276) at 2024-08-11 11:56 PM PDT -dcotelessa,2024-08-12T06:59:42Z,- dcotelessa assigned to issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2212600792) at 2024-08-11 11:59 PM PDT -dcotelessa,2024-08-12T07:33:37Z,- dcotelessa opened pull request: [7274](https://github.com/hackforla/website/pull/7274) at 2024-08-12 12:33 AM PDT -dcotelessa,2024-08-13T04:25:31Z,- dcotelessa commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2285315077) at 2024-08-12 09:25 PM PDT -dcotelessa,2024-08-13T04:51:16Z,- dcotelessa opened pull request: [7275](https://github.com/hackforla/website/pull/7275) at 2024-08-12 09:51 PM PDT -dcotelessa,2024-08-13T05:05:07Z,- dcotelessa pull request closed w/o merging: [7275](https://github.com/hackforla/website/pull/7275#event-13857677665) at 2024-08-12 10:05 PM PDT -dcotelessa,2024-08-13T05:06:29Z,- dcotelessa pull request closed w/o merging: [7274](https://github.com/hackforla/website/pull/7274#event-13857686268) at 2024-08-12 10:06 PM PDT -dcotelessa,2024-08-14T04:02:07Z,- dcotelessa unassigned from issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2285315077) at 2024-08-13 09:02 PM PDT -dcotelessa,2024-08-14T05:20:33Z,- dcotelessa commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2287877522) at 2024-08-13 10:20 PM PDT -dcotelessa,2024-08-14T06:37:33Z,- dcotelessa assigned to issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2282828276) at 2024-08-13 11:37 PM PDT -dcotelessa,2024-08-14T23:50:09Z,- dcotelessa commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2290094176) at 2024-08-14 04:50 PM PDT -dcotelessa,2024-08-15T00:06:08Z,- dcotelessa opened issue: [7286](https://github.com/hackforla/website/issues/7286) at 2024-08-14 05:06 PM PDT -dcotelessa,2024-08-15T00:18:31Z,- dcotelessa opened issue: [7287](https://github.com/hackforla/website/issues/7287) at 2024-08-14 05:18 PM PDT -dcotelessa,2024-08-15T00:20:36Z,- dcotelessa opened issue: [7288](https://github.com/hackforla/website/issues/7288) at 2024-08-14 05:20 PM PDT -dcotelessa,2024-08-15T00:22:18Z,- dcotelessa opened issue: [7289](https://github.com/hackforla/website/issues/7289) at 2024-08-14 05:22 PM PDT -dcotelessa,2024-08-15T00:23:47Z,- dcotelessa opened issue: [7290](https://github.com/hackforla/website/issues/7290) at 2024-08-14 05:23 PM PDT -dcotelessa,2024-08-15T00:25:52Z,- dcotelessa opened issue: [7291](https://github.com/hackforla/website/issues/7291) at 2024-08-14 05:25 PM PDT -dcotelessa,2024-08-15T00:36:00Z,- dcotelessa opened issue: [7292](https://github.com/hackforla/website/issues/7292) at 2024-08-14 05:36 PM PDT -dcotelessa,2024-08-18T17:13:23Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2295329975) at 2024-08-18 10:13 AM PDT -dcotelessa,2024-08-18T17:14:36Z,- dcotelessa assigned to issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2291440268) at 2024-08-18 10:14 AM PDT -dcotelessa,2024-08-18T17:14:49Z,- dcotelessa unassigned from issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2295330331) at 2024-08-18 10:14 AM PDT -dcotelessa,2024-08-18T17:19:23Z,- dcotelessa commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2295331475) at 2024-08-18 10:19 AM PDT -dcotelessa,2024-08-18T17:19:28Z,- dcotelessa commented on pull request: [7311](https://github.com/hackforla/website/pull/7311#issuecomment-2295331497) at 2024-08-18 10:19 AM PDT -dcotelessa,2024-08-21T00:37:47Z,- dcotelessa commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2299994531) at 2024-08-20 05:37 PM PDT -dcotelessa,2024-08-21T00:38:06Z,- dcotelessa submitted pull request review: [7308](https://github.com/hackforla/website/pull/7308#pullrequestreview-2249337556) at 2024-08-20 05:38 PM PDT -dcotelessa,2024-08-21T01:54:02Z,- dcotelessa submitted pull request review: [7311](https://github.com/hackforla/website/pull/7311#pullrequestreview-2249412381) at 2024-08-20 06:54 PM PDT -dcotelessa,2024-08-22T22:23:39Z,- dcotelessa commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2305849951) at 2024-08-22 03:23 PM PDT -dcotelessa,2024-08-22T22:27:54Z,- dcotelessa submitted pull request review: [7279](https://github.com/hackforla/website/pull/7279#pullrequestreview-2255911119) at 2024-08-22 03:27 PM PDT -dcotelessa,2024-08-25T17:43:56Z,- dcotelessa assigned to issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148607672) at 2024-08-25 10:43 AM PDT -dcotelessa,2024-08-25T17:47:29Z,- dcotelessa unassigned from issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308937772) at 2024-08-25 10:47 AM PDT -dcotelessa,2024-08-25T17:57:59Z,- dcotelessa assigned to issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308937772) at 2024-08-25 10:57 AM PDT -dcotelessa,2024-08-25T18:03:51Z,- dcotelessa unassigned from issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308941749) at 2024-08-25 11:03 AM PDT -dcotelessa,2024-08-25T18:43:40Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2308954573) at 2024-08-25 11:43 AM PDT -dcotelessa,2024-08-25T18:46:11Z,- dcotelessa assigned to issue: [7108](https://github.com/hackforla/website/issues/7108) at 2024-08-25 11:46 AM PDT -dcotelessa,2024-09-08T18:46:02Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2336785121) at 2024-09-08 11:46 AM PDT -dcotelessa,2024-09-08T18:47:01Z,- dcotelessa opened issue: [7410](https://github.com/hackforla/website/issues/7410) at 2024-09-08 11:47 AM PDT -dcotelessa,2024-09-08T18:51:07Z,- dcotelessa opened issue: [7411](https://github.com/hackforla/website/issues/7411) at 2024-09-08 11:51 AM PDT -dcotelessa,2024-09-08T18:53:54Z,- dcotelessa opened issue: [7412](https://github.com/hackforla/website/issues/7412) at 2024-09-08 11:53 AM PDT -dcotelessa,2024-09-08T18:58:03Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2336788935) at 2024-09-08 11:58 AM PDT -dcotelessa,2024-09-12T22:50:05Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2347373279) at 2024-09-12 03:50 PM PDT -dcotelessa,2024-09-13T20:19:43Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2350092110) at 2024-09-13 01:19 PM PDT -dcotelessa,2024-09-15T17:20:34Z,- dcotelessa assigned to issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2172337604) at 2024-09-15 10:20 AM PDT -dcotelessa,2024-09-16T00:46:08Z,- dcotelessa commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2351868651) at 2024-09-15 05:46 PM PDT -dcotelessa,2024-09-16T03:12:13Z,- dcotelessa opened pull request: [7464](https://github.com/hackforla/website/pull/7464) at 2024-09-15 08:12 PM PDT -dcotelessa,2024-09-16T18:29:00Z,- dcotelessa commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2353618295) at 2024-09-16 11:29 AM PDT -dcotelessa,2024-09-17T01:08:37Z,- dcotelessa assigned to issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354291697) at 2024-09-16 06:08 PM PDT -dcotelessa,2024-09-20T19:11:06Z,- dcotelessa commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2364364982) at 2024-09-20 12:11 PM PDT -dcotelessa,2024-09-24T00:49:36Z,- dcotelessa pull request merged: [7464](https://github.com/hackforla/website/pull/7464#event-14372889361) at 2024-09-23 05:49 PM PDT -dcotelessa,2024-09-24T07:07:07Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2370368767) at 2024-09-24 12:07 AM PDT -dcotelessa,2024-09-29T17:33:57Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2381437234) at 2024-09-29 10:33 AM PDT -dcotelessa,2024-10-15T20:23:50Z,- dcotelessa opened pull request: [7597](https://github.com/hackforla/website/pull/7597) at 2024-10-15 01:23 PM PDT -dcotelessa,2024-10-15T22:04:28Z,- dcotelessa pull request closed w/o merging: [7597](https://github.com/hackforla/website/pull/7597#event-14665158871) at 2024-10-15 03:04 PM PDT -dcotelessa,2024-10-15T22:05:37Z,- dcotelessa commented on pull request: [7597](https://github.com/hackforla/website/pull/7597#issuecomment-2415253138) at 2024-10-15 03:05 PM PDT -dcotelessa,2024-10-21T06:52:51Z,- dcotelessa opened pull request: [7615](https://github.com/hackforla/website/pull/7615) at 2024-10-20 11:52 PM PDT -dcotelessa,2024-10-21T06:54:39Z,- dcotelessa commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2425762934) at 2024-10-20 11:54 PM PDT -dcotelessa,2024-10-30T01:55:55Z,- dcotelessa commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2445656209) at 2024-10-29 06:55 PM PDT -dcotelessa,2024-10-30T02:09:25Z,- dcotelessa pull request merged: [7615](https://github.com/hackforla/website/pull/7615#event-14994711110) at 2024-10-29 07:09 PM PDT -dcotelessa,2024-10-30T02:22:26Z,- dcotelessa commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2445686853) at 2024-10-29 07:22 PM PDT -dcotelessa,2024-10-30T02:22:35Z,- dcotelessa commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2445687008) at 2024-10-29 07:22 PM PDT -dcotelessa,2024-10-31T20:01:57Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2450715239) at 2024-10-31 01:01 PM PDT -dcotelessa,2024-10-31T20:12:18Z,- dcotelessa commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2450731708) at 2024-10-31 01:12 PM PDT -dcotelessa,2024-10-31T20:12:32Z,- dcotelessa submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2408990599) at 2024-10-31 01:12 PM PDT -dcotelessa,2024-10-31T20:26:23Z,- dcotelessa submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2409015039) at 2024-10-31 01:26 PM PDT -dcotelessa,2024-11-05T23:08:21Z,- dcotelessa assigned to issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458326331) at 2024-11-05 03:08 PM PST -dcotelessa,2024-11-06T22:23:29Z,- dcotelessa commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2460912686) at 2024-11-06 02:23 PM PST -dcotelessa,2024-11-06T22:37:49Z,- dcotelessa opened issue: [7707](https://github.com/hackforla/website/issues/7707) at 2024-11-06 02:37 PM PST -dcotelessa,2024-11-06T22:39:27Z,- dcotelessa commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2460936951) at 2024-11-06 02:39 PM PST -dcotelessa,2024-11-06T22:40:27Z,- dcotelessa commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2460938211) at 2024-11-06 02:40 PM PST -dcotelessa,2024-11-22T22:33:13Z,- dcotelessa commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2494982252) at 2024-11-22 02:33 PM PST -dcotelessa,2025-02-09T18:09:58Z,- dcotelessa commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2646444422) at 2025-02-09 10:09 AM PST -dcotelessa,2025-02-09T23:12:24Z,- dcotelessa submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2604487507) at 2025-02-09 03:12 PM PST -dcotelessa,2025-05-20T00:12:48Z,- dcotelessa unassigned from issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458380444) at 2025-05-19 05:12 PM PDT -ddfridley,2020-01-07T16:57:31Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-571675717) at 2020-01-07 08:57 AM PST -ddfridley,2020-01-27T18:42:17Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-578892188) at 2020-01-27 10:42 AM PST -ddfridley,2020-01-28T04:29:31Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-579074051) at 2020-01-27 08:29 PM PST -ddfridley,2020-03-03T01:47:53Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593723501) at 2020-03-02 05:47 PM PST -ddfridley,2020-03-09T02:06:31Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-596299752) at 2020-03-08 07:06 PM PDT -ddfridley,2020-04-03T04:46:12Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-608226848) at 2020-04-02 09:46 PM PDT -ddfridley,2020-04-04T21:24:52Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-609091177) at 2020-04-04 02:24 PM PDT -ddfridley,2020-04-20T19:40:47Z,- ddfridley commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-616767615) at 2020-04-20 12:40 PM PDT -ddfridley,2020-04-21T18:00:37Z,- ddfridley commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-617321655) at 2020-04-21 11:00 AM PDT -ddfridley,2021-01-13T19:54:37Z,- ddfridley assigned to issue: [954](https://github.com/hackforla/website/issues/954) at 2021-01-13 11:54 AM PST -ddfridley,2021-01-17T18:33:28Z,- ddfridley commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-761858492) at 2021-01-17 10:33 AM PST -ddfridley,2021-01-21T23:04:28Z,- ddfridley commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-764997454) at 2021-01-21 03:04 PM PST -ddfridley,2021-01-22T03:32:06Z,- ddfridley unassigned from issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-21 07:32 PM PST -ddfridley,2021-01-29T03:35:31Z,- ddfridley commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-769552250) at 2021-01-28 07:35 PM PST -ddrosario,2019-04-10T04:18:21Z,- ddrosario opened pull request: [60](https://github.com/hackforla/website/pull/60) at 2019-04-09 09:18 PM PDT -ddrosario,2019-04-17T05:24:18Z,- ddrosario commented on pull request: [60](https://github.com/hackforla/website/pull/60#issuecomment-483941601) at 2019-04-16 10:24 PM PDT -ddrosario,2019-04-23T05:46:43Z,- ddrosario pull request merged: [60](https://github.com/hackforla/website/pull/60#event-2292977695) at 2019-04-22 10:46 PM PDT -ddrosario,2019-05-04T00:36:23Z,- ddrosario opened pull request: [87](https://github.com/hackforla/website/pull/87) at 2019-05-03 05:36 PM PDT -ddrosario,2019-05-04T01:27:39Z,- ddrosario pull request closed w/o merging: [87](https://github.com/hackforla/website/pull/87#event-2318766068) at 2019-05-03 06:27 PM PDT -ddrosario,2019-05-08T02:43:37Z,- ddrosario opened pull request: [94](https://github.com/hackforla/website/pull/94) at 2019-05-07 07:43 PM PDT -ddrosario,2019-05-08T03:50:24Z,- ddrosario pull request merged: [94](https://github.com/hackforla/website/pull/94#event-2326074485) at 2019-05-07 08:50 PM PDT -ddrosario,2019-05-08T23:34:57Z,- ddrosario assigned to issue: [75](https://github.com/hackforla/website/issues/75#event-2315674328) at 2019-05-08 04:34 PM PDT -ddrosario,2019-05-11T00:53:13Z,- ddrosario assigned to issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-10 05:53 PM PDT -ddrosario,2019-05-13T02:52:36Z,- ddrosario opened pull request: [104](https://github.com/hackforla/website/pull/104) at 2019-05-12 07:52 PM PDT -ddrosario,2019-05-13T03:11:47Z,- ddrosario pull request merged: [104](https://github.com/hackforla/website/pull/104#event-2335660597) at 2019-05-12 08:11 PM PDT -ddrosario,2019-05-13T03:16:20Z,- ddrosario unassigned from issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:16 PM PDT -ddrosario,2019-05-22T03:40:25Z,- ddrosario opened pull request: [115](https://github.com/hackforla/website/pull/115) at 2019-05-21 08:40 PM PDT -ddrosario,2019-05-23T03:36:19Z,- ddrosario assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -ddrosario,2019-06-05T01:37:52Z,- ddrosario commented on issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2019-06-04 06:37 PM PDT -ddrosario,2019-06-06T02:55:48Z,- ddrosario opened pull request: [125](https://github.com/hackforla/website/pull/125) at 2019-06-05 07:55 PM PDT -ddrosario,2019-06-06T03:04:49Z,- ddrosario pull request closed w/o merging: [115](https://github.com/hackforla/website/pull/115#event-2393051097) at 2019-06-05 08:04 PM PDT -ddrosario,2019-06-06T03:48:50Z,- ddrosario pull request merged: [125](https://github.com/hackforla/website/pull/125#event-2393099090) at 2019-06-05 08:48 PM PDT -ddrosario,2019-06-12T01:24:36Z,- ddrosario opened pull request: [129](https://github.com/hackforla/website/pull/129) at 2019-06-11 06:24 PM PDT -ddrosario,2019-06-12T03:46:36Z,- ddrosario commented on issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501109564) at 2019-06-11 08:46 PM PDT -ddrosario,2019-06-12T22:49:08Z,- ddrosario pull request merged: [129](https://github.com/hackforla/website/pull/129#event-2408919654) at 2019-06-12 03:49 PM PDT -ddrosario,2019-06-12T22:49:38Z,- ddrosario assigned to issue: [127](https://github.com/hackforla/website/issues/127#event-2408919649) at 2019-06-12 03:49 PM PDT -ddrosario,2020-06-01T02:33:13Z,- ddrosario unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -ddrosario,2020-06-01T03:17:10Z,- ddrosario unassigned from issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2020-05-31 08:17 PM PDT -DDVVPP,7885,SKILLS ISSUE -DDVVPP,2025-02-05T03:55:28Z,- DDVVPP opened issue: [7885](https://github.com/hackforla/website/issues/7885) at 2025-02-04 07:55 PM PST -DDVVPP,2025-02-05T03:55:28Z,- DDVVPP assigned to issue: [7885](https://github.com/hackforla/website/issues/7885) at 2025-02-04 07:55 PM PST -DDVVPP,2025-02-05T04:19:05Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2635667685) at 2025-02-04 08:19 PM PST -DDVVPP,2025-02-06T19:11:55Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2640768211) at 2025-02-06 11:11 AM PST -DDVVPP,2025-02-06T19:12:40Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2640770078) at 2025-02-06 11:12 AM PST -DDVVPP,2025-02-06T19:21:28Z,- DDVVPP assigned to issue: [7774](https://github.com/hackforla/website/issues/7774) at 2025-02-06 11:21 AM PST -DDVVPP,2025-02-06T19:29:16Z,- DDVVPP commented on issue: [7774](https://github.com/hackforla/website/issues/7774#issuecomment-2640804226) at 2025-02-06 11:29 AM PST -DDVVPP,2025-02-06T20:08:23Z,- DDVVPP opened pull request: [7899](https://github.com/hackforla/website/pull/7899) at 2025-02-06 12:08 PM PST -DDVVPP,2025-02-06T20:11:28Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2640895948) at 2025-02-06 12:11 PM PST -DDVVPP,2025-02-12T01:05:26Z,- DDVVPP commented on issue: [7774](https://github.com/hackforla/website/issues/7774#issuecomment-2652407785) at 2025-02-11 05:05 PM PST -DDVVPP,2025-02-12T01:06:12Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2652408703) at 2025-02-11 05:06 PM PST -DDVVPP,2025-02-13T05:50:25Z,- DDVVPP pull request merged: [7899](https://github.com/hackforla/website/pull/7899#event-16290916645) at 2025-02-12 09:50 PM PST -DDVVPP,2025-02-13T22:33:56Z,- DDVVPP submitted pull request review: [7899](https://github.com/hackforla/website/pull/7899#pullrequestreview-2616368625) at 2025-02-13 02:33 PM PST -DDVVPP,2025-02-14T02:33:05Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2658127814) at 2025-02-13 06:33 PM PST -DDVVPP,2025-02-14T03:13:01Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2658168494) at 2025-02-13 07:13 PM PST -DDVVPP,2025-02-14T03:13:59Z,- DDVVPP assigned to issue: [7850](https://github.com/hackforla/website/issues/7850) at 2025-02-13 07:13 PM PST -DDVVPP,2025-02-14T03:37:56Z,- DDVVPP opened pull request: [7908](https://github.com/hackforla/website/pull/7908) at 2025-02-13 07:37 PM PST -DDVVPP,2025-02-19T02:47:37Z,- DDVVPP pull request merged: [7908](https://github.com/hackforla/website/pull/7908#event-16358290415) at 2025-02-18 06:47 PM PST -DDVVPP,2025-02-19T20:50:19Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2669730232) at 2025-02-19 12:50 PM PST -DDVVPP,2025-02-21T21:14:23Z,- DDVVPP commented on pull request: [7932](https://github.com/hackforla/website/pull/7932#issuecomment-2675554544) at 2025-02-21 01:14 PM PST -DDVVPP,2025-02-21T21:41:59Z,- DDVVPP submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2634324569) at 2025-02-21 01:41 PM PST -DDVVPP,2025-02-21T21:45:46Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2675612484) at 2025-02-21 01:45 PM PST -DDVVPP,2025-02-21T21:50:56Z,- DDVVPP commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2675619807) at 2025-02-21 01:50 PM PST -DDVVPP,2025-02-21T23:05:53Z,- DDVVPP submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2634447789) at 2025-02-21 03:05 PM PST -DDVVPP,2025-02-21T23:08:34Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2675795716) at 2025-02-21 03:08 PM PST -DDVVPP,2025-02-25T04:07:14Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2680386736) at 2025-02-24 08:07 PM PST -DDVVPP,2025-02-25T18:42:14Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2682960452) at 2025-02-25 10:42 AM PST -DDVVPP,2025-02-26T01:48:56Z,- DDVVPP assigned to issue: [7824](https://github.com/hackforla/website/issues/7824) at 2025-02-25 05:48 PM PST -DDVVPP,2025-02-26T01:53:43Z,- DDVVPP commented on issue: [7824](https://github.com/hackforla/website/issues/7824#issuecomment-2683694138) at 2025-02-25 05:53 PM PST -DDVVPP,2025-02-26T02:17:02Z,- DDVVPP submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2642861914) at 2025-02-25 06:17 PM PST -DDVVPP,2025-02-26T03:29:01Z,- DDVVPP commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2683804506) at 2025-02-25 07:29 PM PST -DDVVPP,2025-02-26T21:19:05Z,- DDVVPP opened pull request: [7950](https://github.com/hackforla/website/pull/7950) at 2025-02-26 01:19 PM PST -DDVVPP,2025-02-28T01:03:55Z,- DDVVPP submitted pull request review: [7947](https://github.com/hackforla/website/pull/7947#pullrequestreview-2649452667) at 2025-02-27 05:03 PM PST -DDVVPP,2025-02-28T01:06:37Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2689470129) at 2025-02-27 05:06 PM PST -DDVVPP,2025-03-07T01:27:49Z,- DDVVPP pull request merged: [7950](https://github.com/hackforla/website/pull/7950#event-16625359011) at 2025-03-06 05:27 PM PST -DDVVPP,2025-03-07T02:23:21Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2705370113) at 2025-03-06 06:23 PM PST -DDVVPP,2025-03-07T02:26:21Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2705373124) at 2025-03-06 06:26 PM PST -DDVVPP,2025-03-07T21:50:06Z,- DDVVPP commented on pull request: [7983](https://github.com/hackforla/website/pull/7983#issuecomment-2707525636) at 2025-03-07 01:50 PM PST -DDVVPP,2025-03-07T21:50:27Z,- DDVVPP commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2707526104) at 2025-03-07 01:50 PM PST -DDVVPP,2025-03-07T22:03:56Z,- DDVVPP submitted pull request review: [7983](https://github.com/hackforla/website/pull/7983#pullrequestreview-2668479667) at 2025-03-07 02:03 PM PST -DDVVPP,2025-03-07T22:12:58Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2707584627) at 2025-03-07 02:12 PM PST -DDVVPP,2025-03-07T22:31:13Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668529452) at 2025-03-07 02:31 PM PST -DDVVPP,2025-03-07T22:32:42Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668531001) at 2025-03-07 02:32 PM PST -DDVVPP,2025-03-07T22:36:05Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668535175) at 2025-03-07 02:36 PM PST -DDVVPP,2025-03-07T22:51:10Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668571255) at 2025-03-07 02:51 PM PST -DDVVPP,2025-03-07T23:05:03Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2707675754) at 2025-03-07 03:05 PM PST -DDVVPP,2025-03-12T16:43:53Z,- DDVVPP assigned to issue: [7907](https://github.com/hackforla/website/issues/7907) at 2025-03-12 09:43 AM PDT -DDVVPP,2025-03-15T17:26:18Z,- DDVVPP opened issue: [7990](https://github.com/hackforla/website/issues/7990) at 2025-03-15 10:26 AM PDT -DDVVPP,2025-03-15T17:39:15Z,- DDVVPP commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2726820260) at 2025-03-15 10:39 AM PDT -DDVVPP,2025-03-17T16:59:02Z,- DDVVPP commented on pull request: [7992](https://github.com/hackforla/website/pull/7992#issuecomment-2730244331) at 2025-03-17 09:59 AM PDT -DDVVPP,2025-03-17T18:26:57Z,- DDVVPP submitted pull request review: [7992](https://github.com/hackforla/website/pull/7992#pullrequestreview-2691619977) at 2025-03-17 11:26 AM PDT -DDVVPP,2025-03-17T18:28:00Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2730477666) at 2025-03-17 11:28 AM PDT -DDVVPP,2025-03-24T17:42:04Z,- DDVVPP assigned to issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2731318935) at 2025-03-24 10:42 AM PDT -DDVVPP,2025-03-24T17:42:17Z,- DDVVPP unassigned from issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2748940827) at 2025-03-24 10:42 AM PDT -DDVVPP,2025-03-24T17:56:05Z,- DDVVPP commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2748976485) at 2025-03-24 10:56 AM PDT -DDVVPP,2025-03-25T19:47:13Z,- DDVVPP assigned to issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2745913516) at 2025-03-25 12:47 PM PDT -DDVVPP,2025-03-25T19:47:28Z,- DDVVPP unassigned from issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2752351823) at 2025-03-25 12:47 PM PDT -DDVVPP,2025-03-26T02:15:29Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2715732044) at 2025-03-25 07:15 PM PDT -DDVVPP,2025-04-03T18:55:43Z,- DDVVPP commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2776665424) at 2025-04-03 11:55 AM PDT -DDVVPP,2025-04-04T04:39:37Z,- DDVVPP submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2741757711) at 2025-04-03 09:39 PM PDT -DDVVPP,2025-04-04T04:45:53Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2777545313) at 2025-04-03 09:45 PM PDT -DDVVPP,2025-04-07T22:17:46Z,- DDVVPP commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2784755746) at 2025-04-07 03:17 PM PDT -DDVVPP,2025-04-07T22:17:46Z,- DDVVPP commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2784755746) at 2025-04-07 03:17 PM PDT -DDVVPP,2025-04-10T15:50:14Z,- DDVVPP submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2757354375) at 2025-04-10 08:50 AM PDT -DDVVPP,2025-04-10T15:50:14Z,- DDVVPP submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2757354375) at 2025-04-10 08:50 AM PDT -DDVVPP,2025-04-10T15:55:39Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2794338619) at 2025-04-10 08:55 AM PDT -DDVVPP,2025-04-16T16:41:34Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2810140595) at 2025-04-16 09:41 AM PDT -DDVVPP,2025-04-20T00:14:18Z,- DDVVPP assigned to issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2784538221) at 2025-04-19 05:14 PM PDT -DDVVPP,2025-04-20T00:17:28Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2816917004) at 2025-04-19 05:17 PM PDT -DDVVPP,2025-04-21T17:12:37Z,- DDVVPP submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2781803670) at 2025-04-21 10:12 AM PDT -DDVVPP,2025-04-28T20:47:39Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2836552652) at 2025-04-28 01:47 PM PDT -DDVVPP,2025-05-01T01:04:29Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2843842633) at 2025-04-30 06:04 PM PDT -DDVVPP,2025-05-01T03:01:11Z,- DDVVPP opened pull request: [8103](https://github.com/hackforla/website/pull/8103) at 2025-04-30 08:01 PM PDT -DDVVPP,2025-05-01T03:04:43Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2843979559) at 2025-04-30 08:04 PM PDT -DDVVPP,2025-05-06T21:41:53Z,- DDVVPP pull request merged: [8103](https://github.com/hackforla/website/pull/8103#event-17544923385) at 2025-05-06 02:41 PM PDT -DDVVPP,2025-05-06T22:44:10Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2856375093) at 2025-05-06 03:44 PM PDT -DDVVPP,2025-05-06T22:46:43Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2856379196) at 2025-05-06 03:46 PM PDT -DDVVPP,2025-05-06T22:48:53Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2856384866) at 2025-05-06 03:48 PM PDT -DDVVPP,2025-05-12T21:18:53Z,- DDVVPP commented on pull request: [8121](https://github.com/hackforla/website/pull/8121#issuecomment-2874140207) at 2025-05-12 02:18 PM PDT -DDVVPP,2025-05-14T23:33:34Z,- DDVVPP submitted pull request review: [8121](https://github.com/hackforla/website/pull/8121#pullrequestreview-2841736852) at 2025-05-14 04:33 PM PDT -DDVVPP,2025-05-19T17:54:47Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2891832188) at 2025-05-19 10:54 AM PDT -DDVVPP,2025-06-08T21:51:06Z,- DDVVPP assigned to issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2892605953) at 2025-06-08 02:51 PM PDT -DDVVPP,2025-06-18T04:40:39Z,- DDVVPP commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2982649949) at 2025-06-17 09:40 PM PDT -debasistripathy01,2023-02-05T12:56:52Z,- debasistripathy01 opened issue: [3937](https://github.com/hackforla/website/issues/3937) at 2023-02-05 04:56 AM PST -deepak-getpu,6727,SKILLS ISSUE -deepak-getpu,2024-04-24T03:54:30Z,- deepak-getpu opened issue: [6727](https://github.com/hackforla/website/issues/6727) at 2024-04-23 08:54 PM PDT -deepak-getpu,2024-04-24T04:15:45Z,- deepak-getpu assigned to issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2073975284) at 2024-04-23 09:15 PM PDT -deepak-getpu,2024-04-27T02:44:17Z,- deepak-getpu commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2080331180) at 2024-04-26 07:44 PM PDT -deepak-getpu,2024-05-15T02:04:07Z,- deepak-getpu opened pull request: [6856](https://github.com/hackforla/website/pull/6856) at 2024-05-14 07:04 PM PDT -deepak-getpu,2024-05-16T18:50:46Z,- deepak-getpu assigned to issue: [6718](https://github.com/hackforla/website/issues/6718#issuecomment-2115839260) at 2024-05-16 11:50 AM PDT -deepak-getpu,2024-05-16T18:52:57Z,- deepak-getpu commented on issue: [6718](https://github.com/hackforla/website/issues/6718#issuecomment-2115972110) at 2024-05-16 11:52 AM PDT -deepak-getpu,2024-05-21T04:02:10Z,- deepak-getpu commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2121680467) at 2024-05-20 09:02 PM PDT -deepak-getpu,2024-05-21T14:00:45Z,- deepak-getpu commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2122709847) at 2024-05-21 07:00 AM PDT -deepak-getpu,2024-05-22T17:25:51Z,- deepak-getpu opened pull request: [6886](https://github.com/hackforla/website/pull/6886) at 2024-05-22 10:25 AM PDT -deepak-getpu,2024-05-22T17:30:54Z,- deepak-getpu commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2125386903) at 2024-05-22 10:30 AM PDT -deepak-getpu,2024-05-22T17:30:54Z,- deepak-getpu pull request closed w/o merging: [6856](https://github.com/hackforla/website/pull/6856#event-12898395900) at 2024-05-22 10:30 AM PDT -deepak-getpu,2024-05-23T01:52:46Z,- deepak-getpu commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2126048467) at 2024-05-22 06:52 PM PDT -deepak-getpu,2024-05-23T01:54:58Z,- deepak-getpu assigned to issue: [6799](https://github.com/hackforla/website/issues/6799) at 2024-05-22 06:54 PM PDT -deepak-getpu,2024-05-23T01:55:23Z,- deepak-getpu unassigned from issue: [6799](https://github.com/hackforla/website/issues/6799#issuecomment-2126050194) at 2024-05-22 06:55 PM PDT -deepak-getpu,2024-05-23T02:10:08Z,- deepak-getpu assigned to issue: [6845](https://github.com/hackforla/website/issues/6845) at 2024-05-22 07:10 PM PDT -deepak-getpu,2024-05-23T02:17:45Z,- deepak-getpu commented on issue: [6845](https://github.com/hackforla/website/issues/6845#issuecomment-2126068773) at 2024-05-22 07:17 PM PDT -deepak-getpu,2024-05-23T20:37:51Z,- deepak-getpu pull request merged: [6886](https://github.com/hackforla/website/pull/6886#event-12914951084) at 2024-05-23 01:37 PM PDT -deepak-getpu,2024-05-24T03:42:21Z,- deepak-getpu opened pull request: [6892](https://github.com/hackforla/website/pull/6892) at 2024-05-23 08:42 PM PDT -deepak-getpu,2024-05-24T18:28:25Z,- deepak-getpu opened pull request: [6893](https://github.com/hackforla/website/pull/6893) at 2024-05-24 11:28 AM PDT -deepak-getpu,2024-05-24T18:33:05Z,- deepak-getpu pull request closed w/o merging: [6892](https://github.com/hackforla/website/pull/6892#event-12928419292) at 2024-05-24 11:33 AM PDT -deepak-getpu,2024-05-24T18:34:08Z,- deepak-getpu commented on pull request: [6892](https://github.com/hackforla/website/pull/6892#issuecomment-2130143791) at 2024-05-24 11:34 AM PDT -deepak-getpu,2024-05-24T18:34:08Z,- deepak-getpu reopened pull request: [6892](https://github.com/hackforla/website/pull/6892#issuecomment-2130143791) at 2024-05-24 11:34 AM PDT -deepak-getpu,2024-05-24T18:34:50Z,- deepak-getpu pull request closed w/o merging: [6892](https://github.com/hackforla/website/pull/6892#event-12928432670) at 2024-05-24 11:34 AM PDT -deepak-getpu,2024-05-25T16:56:02Z,- deepak-getpu pull request merged: [6893](https://github.com/hackforla/website/pull/6893#event-12933526311) at 2024-05-25 09:56 AM PDT -deepak-getpu,2024-05-27T21:27:42Z,- deepak-getpu closed issue as completed: [6751](https://github.com/hackforla/website/issues/6751#event-12949702515) at 2024-05-27 02:27 PM PDT -deepak-getpu,2024-06-09T18:01:34Z,- deepak-getpu assigned to issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2119379659) at 2024-06-09 11:01 AM PDT -deepak-getpu,2024-06-09T18:03:51Z,- deepak-getpu commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2156721423) at 2024-06-09 11:03 AM PDT -deepak-getpu,2024-06-09T18:06:06Z,- deepak-getpu closed issue as completed: [6578](https://github.com/hackforla/website/issues/6578#event-13092166190) at 2024-06-09 11:06 AM PDT -deepak-getpu,2024-06-09T18:08:52Z,- deepak-getpu commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2156723144) at 2024-06-09 11:08 AM PDT -deepak-getpu,2024-06-12T02:32:01Z,- deepak-getpu reopened issue: [6578](https://github.com/hackforla/website/issues/6578#event-13092166190) at 2024-06-11 07:32 PM PDT -deepak-getpu,2024-06-14T02:18:10Z,- deepak-getpu opened pull request: [7003](https://github.com/hackforla/website/pull/7003) at 2024-06-13 07:18 PM PDT -deepak-getpu,2024-06-14T02:19:26Z,- deepak-getpu pull request closed w/o merging: [7003](https://github.com/hackforla/website/pull/7003#event-13154635057) at 2024-06-13 07:19 PM PDT -deepak-getpu,2024-06-14T02:27:10Z,- deepak-getpu reopened pull request: [7003](https://github.com/hackforla/website/pull/7003#event-13154635057) at 2024-06-13 07:27 PM PDT -deepak-getpu,2024-06-15T02:39:08Z,- deepak-getpu pull request closed w/o merging: [7003](https://github.com/hackforla/website/pull/7003#event-13167202885) at 2024-06-14 07:39 PM PDT -Deepkha,2023-12-10T05:59:44Z,- Deepkha opened pull request: [5980](https://github.com/hackforla/website/pull/5980) at 2023-12-09 09:59 PM PST -Deepkha,2023-12-10T06:18:12Z,- Deepkha commented on issue: [5965](https://github.com/hackforla/website/issues/5965#issuecomment-1848871188) at 2023-12-09 10:18 PM PST -Deepkha,2023-12-11T01:29:16Z,- Deepkha pull request closed w/o merging: [5980](https://github.com/hackforla/website/pull/5980#event-11204356696) at 2023-12-10 05:29 PM PST -del9ra,6716,SKILLS ISSUE -del9ra,2024-04-24T03:07:18Z,- del9ra opened issue: [6716](https://github.com/hackforla/website/issues/6716) at 2024-04-23 08:07 PM PDT -del9ra,2024-04-24T03:07:57Z,- del9ra assigned to issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2073926179) at 2024-04-23 08:07 PM PDT -del9ra,2024-04-28T23:20:22Z,- del9ra assigned to issue: [6704](https://github.com/hackforla/website/issues/6704) at 2024-04-28 04:20 PM PDT -del9ra,2024-04-29T01:57:00Z,- del9ra opened pull request: [6776](https://github.com/hackforla/website/pull/6776) at 2024-04-28 06:57 PM PDT -del9ra,2024-04-30T05:47:00Z,- del9ra pull request merged: [6776](https://github.com/hackforla/website/pull/6776#event-12652540576) at 2024-04-29 10:47 PM PDT -del9ra,2024-04-30T16:21:47Z,- del9ra commented on issue: [6704](https://github.com/hackforla/website/issues/6704#issuecomment-2085855631) at 2024-04-30 09:21 AM PDT -del9ra,2024-04-30T16:50:36Z,- del9ra commented on issue: [6704](https://github.com/hackforla/website/issues/6704#issuecomment-2085969130) at 2024-04-30 09:50 AM PDT -del9ra,2024-04-30T17:15:15Z,- del9ra submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2032056437) at 2024-04-30 10:15 AM PDT -del9ra,2024-04-30T18:06:38Z,- del9ra submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2032153334) at 2024-04-30 11:06 AM PDT -del9ra,2024-04-30T18:10:53Z,- del9ra submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2032160139) at 2024-04-30 11:10 AM PDT -del9ra,2024-04-30T20:16:11Z,- del9ra assigned to issue: [6702](https://github.com/hackforla/website/issues/6702) at 2024-04-30 01:16 PM PDT -del9ra,2024-04-30T21:17:15Z,- del9ra commented on issue: [6702](https://github.com/hackforla/website/issues/6702#issuecomment-2087354134) at 2024-04-30 02:17 PM PDT -del9ra,2024-04-30T21:51:32Z,- del9ra opened pull request: [6792](https://github.com/hackforla/website/pull/6792) at 2024-04-30 02:51 PM PDT -del9ra,2024-05-01T02:23:04Z,- del9ra commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2087881877) at 2024-04-30 07:23 PM PDT -del9ra,2024-05-01T22:36:52Z,- del9ra submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2034567372) at 2024-05-01 03:36 PM PDT -del9ra,2024-05-02T20:07:01Z,- del9ra pull request merged: [6792](https://github.com/hackforla/website/pull/6792#event-12688635310) at 2024-05-02 01:07 PM PDT -del9ra,2024-05-03T15:41:44Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2093267350) at 2024-05-03 08:41 AM PDT -del9ra,2024-05-08T01:28:50Z,- del9ra commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2099564981) at 2024-05-07 06:28 PM PDT -del9ra,2024-05-08T01:46:44Z,- del9ra submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2044474197) at 2024-05-07 06:46 PM PDT -del9ra,2024-05-10T01:14:44Z,- del9ra submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2049077672) at 2024-05-09 06:14 PM PDT -del9ra,2024-05-10T01:17:14Z,- del9ra commented on pull request: [6841](https://github.com/hackforla/website/pull/6841#issuecomment-2103678976) at 2024-05-09 06:17 PM PDT -del9ra,2024-05-10T01:47:08Z,- del9ra submitted pull request review: [6841](https://github.com/hackforla/website/pull/6841#pullrequestreview-2049113551) at 2024-05-09 06:47 PM PDT -del9ra,2024-05-18T02:00:37Z,- del9ra assigned to issue: [6574](https://github.com/hackforla/website/issues/6574) at 2024-05-17 07:00 PM PDT -del9ra,2024-05-20T01:09:41Z,- del9ra commented on issue: [6574](https://github.com/hackforla/website/issues/6574#issuecomment-2119497195) at 2024-05-19 06:09 PM PDT -del9ra,2024-05-20T22:31:02Z,- del9ra opened pull request: [6865](https://github.com/hackforla/website/pull/6865) at 2024-05-20 03:31 PM PDT -del9ra,2024-05-22T02:16:42Z,- del9ra pull request closed w/o merging: [6865](https://github.com/hackforla/website/pull/6865#event-12887392950) at 2024-05-21 07:16 PM PDT -del9ra,2024-05-22T15:01:22Z,- del9ra commented on pull request: [6883](https://github.com/hackforla/website/pull/6883#issuecomment-2125025977) at 2024-05-22 08:01 AM PDT -del9ra,2024-05-22T15:39:07Z,- del9ra submitted pull request review: [6883](https://github.com/hackforla/website/pull/6883#pullrequestreview-2071652660) at 2024-05-22 08:39 AM PDT -del9ra,2024-05-23T19:14:31Z,- del9ra commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2127860225) at 2024-05-23 12:14 PM PDT -del9ra,2024-05-23T19:58:27Z,- del9ra submitted pull request review: [6888](https://github.com/hackforla/website/pull/6888#pullrequestreview-2074887343) at 2024-05-23 12:58 PM PDT -del9ra,2024-05-23T21:32:45Z,- del9ra commented on pull request: [6890](https://github.com/hackforla/website/pull/6890#issuecomment-2128053581) at 2024-05-23 02:32 PM PDT -del9ra,2024-05-23T22:25:12Z,- del9ra submitted pull request review: [6890](https://github.com/hackforla/website/pull/6890#pullrequestreview-2075239610) at 2024-05-23 03:25 PM PDT -del9ra,2024-05-23T22:35:55Z,- del9ra commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2128147353) at 2024-05-23 03:35 PM PDT -del9ra,2024-05-23T23:03:41Z,- del9ra submitted pull request review: [6860](https://github.com/hackforla/website/pull/6860#pullrequestreview-2075275689) at 2024-05-23 04:03 PM PDT -del9ra,2024-05-24T01:13:54Z,- del9ra commented on pull request: [6874](https://github.com/hackforla/website/pull/6874#issuecomment-2128306678) at 2024-05-23 06:13 PM PDT -del9ra,2024-05-24T01:44:17Z,- del9ra submitted pull request review: [6874](https://github.com/hackforla/website/pull/6874#pullrequestreview-2075449906) at 2024-05-23 06:44 PM PDT -del9ra,2024-05-24T02:06:12Z,- del9ra commented on pull request: [6887](https://github.com/hackforla/website/pull/6887#issuecomment-2128354444) at 2024-05-23 07:06 PM PDT -del9ra,2024-05-24T02:37:06Z,- del9ra submitted pull request review: [6887](https://github.com/hackforla/website/pull/6887#pullrequestreview-2075530707) at 2024-05-23 07:37 PM PDT -del9ra,2024-05-24T15:20:12Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2129802271) at 2024-05-24 08:20 AM PDT -del9ra,2024-05-30T13:49:17Z,- del9ra commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2139601278) at 2024-05-30 06:49 AM PDT -del9ra,2024-05-30T17:12:26Z,- del9ra submitted pull request review: [6900](https://github.com/hackforla/website/pull/6900#pullrequestreview-2088906671) at 2024-05-30 10:12 AM PDT -del9ra,2024-05-30T17:36:46Z,- del9ra submitted pull request review: [6897](https://github.com/hackforla/website/pull/6897#pullrequestreview-2089002925) at 2024-05-30 10:36 AM PDT -del9ra,2024-05-30T17:37:27Z,- del9ra commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2140416191) at 2024-05-30 10:37 AM PDT -del9ra,2024-05-30T20:19:02Z,- del9ra commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2140800646) at 2024-05-30 01:19 PM PDT -del9ra,2024-05-30T20:30:24Z,- del9ra submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2089312837) at 2024-05-30 01:30 PM PDT -del9ra,2024-05-30T20:56:47Z,- del9ra commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2140852323) at 2024-05-30 01:56 PM PDT -del9ra,2024-05-30T21:11:58Z,- del9ra submitted pull request review: [6913](https://github.com/hackforla/website/pull/6913#pullrequestreview-2089384520) at 2024-05-30 02:11 PM PDT -del9ra,2024-05-30T21:22:02Z,- del9ra commented on pull request: [6914](https://github.com/hackforla/website/pull/6914#issuecomment-2140884944) at 2024-05-30 02:22 PM PDT -del9ra,2024-05-30T22:00:06Z,- del9ra submitted pull request review: [6914](https://github.com/hackforla/website/pull/6914#pullrequestreview-2089438084) at 2024-05-30 03:00 PM PDT -del9ra,2024-05-31T15:36:23Z,- del9ra assigned to issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2104155654) at 2024-05-31 08:36 AM PDT -del9ra,2024-05-31T15:37:24Z,- del9ra commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2142518257) at 2024-05-31 08:37 AM PDT -del9ra,2024-05-31T18:52:46Z,- del9ra opened issue: [6918](https://github.com/hackforla/website/issues/6918) at 2024-05-31 11:52 AM PDT -del9ra,2024-05-31T19:05:08Z,- del9ra commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2142832732) at 2024-05-31 12:05 PM PDT -del9ra,2024-06-01T15:43:55Z,- del9ra commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2143492362) at 2024-06-01 08:43 AM PDT -del9ra,2024-06-02T14:43:34Z,- del9ra submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2092369462) at 2024-06-02 07:43 AM PDT -del9ra,2024-06-03T17:04:37Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2145714887) at 2024-06-03 10:04 AM PDT -del9ra,2024-06-03T19:34:46Z,- del9ra opened issue: [6931](https://github.com/hackforla/website/issues/6931) at 2024-06-03 12:34 PM PDT -del9ra,2024-06-03T19:38:24Z,- del9ra opened issue: [6932](https://github.com/hackforla/website/issues/6932) at 2024-06-03 12:38 PM PDT -del9ra,2024-06-03T19:41:38Z,- del9ra assigned to issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2060041087) at 2024-06-03 12:41 PM PDT -del9ra,2024-06-04T01:34:26Z,- del9ra commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2146400033) at 2024-06-03 06:34 PM PDT -del9ra,2024-06-09T01:43:18Z,- del9ra opened pull request: [6975](https://github.com/hackforla/website/pull/6975) at 2024-06-08 06:43 PM PDT -del9ra,2024-06-10T01:18:43Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2157008122) at 2024-06-09 06:18 PM PDT -del9ra,2024-06-10T03:46:50Z,- del9ra pull request merged: [6975](https://github.com/hackforla/website/pull/6975#event-13094456353) at 2024-06-09 08:46 PM PDT -del9ra,2024-06-10T18:03:07Z,- del9ra commented on pull request: [6972](https://github.com/hackforla/website/pull/6972#issuecomment-2158979867) at 2024-06-10 11:03 AM PDT -del9ra,2024-06-10T22:01:24Z,- del9ra submitted pull request review: [6972](https://github.com/hackforla/website/pull/6972#pullrequestreview-2108840225) at 2024-06-10 03:01 PM PDT -del9ra,2024-06-13T17:53:15Z,- del9ra commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2166443626) at 2024-06-13 10:53 AM PDT -del9ra,2024-06-13T18:07:13Z,- del9ra submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2116582848) at 2024-06-13 11:07 AM PDT -del9ra,2024-06-13T18:39:52Z,- del9ra commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2166531536) at 2024-06-13 11:39 AM PDT -del9ra,2024-06-13T18:46:20Z,- del9ra submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2116664029) at 2024-06-13 11:46 AM PDT -del9ra,2024-06-14T00:31:59Z,- del9ra commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2167002620) at 2024-06-13 05:31 PM PDT -del9ra,2024-06-14T00:33:58Z,- del9ra submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2117222125) at 2024-06-13 05:33 PM PDT -del9ra,2024-06-14T00:44:55Z,- del9ra submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2117229105) at 2024-06-13 05:44 PM PDT -del9ra,2024-06-14T01:20:00Z,- del9ra commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2167041103) at 2024-06-13 06:20 PM PDT -del9ra,2024-06-14T01:28:23Z,- del9ra submitted pull request review: [7001](https://github.com/hackforla/website/pull/7001#pullrequestreview-2117259586) at 2024-06-13 06:28 PM PDT -del9ra,2024-06-14T14:26:46Z,- del9ra commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168164933) at 2024-06-14 07:26 AM PDT -del9ra,2024-06-14T17:50:07Z,- del9ra commented on pull request: [6999](https://github.com/hackforla/website/pull/6999#issuecomment-2168497589) at 2024-06-14 10:50 AM PDT -del9ra,2024-06-14T17:55:29Z,- del9ra submitted pull request review: [6999](https://github.com/hackforla/website/pull/6999#pullrequestreview-2118962766) at 2024-06-14 10:55 AM PDT -del9ra,2024-06-14T18:03:39Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2168516715) at 2024-06-14 11:03 AM PDT -del9ra,2024-06-14T19:34:51Z,- del9ra unassigned from issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168642781) at 2024-06-14 12:34 PM PDT -del9ra,2024-06-18T14:54:11Z,- del9ra commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2176308949) at 2024-06-18 07:54 AM PDT -del9ra,2024-06-18T20:39:43Z,- del9ra submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2126452256) at 2024-06-18 01:39 PM PDT -del9ra,2024-06-23T17:06:13Z,- del9ra assigned to issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168642781) at 2024-06-23 10:06 AM PDT -del9ra,2024-06-23T17:08:14Z,- del9ra assigned to issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1937883463) at 2024-06-23 10:08 AM PDT -del9ra,2024-06-27T17:00:38Z,- del9ra opened issue: [7072](https://github.com/hackforla/website/issues/7072) at 2024-06-27 10:00 AM PDT -del9ra,2024-06-27T17:00:39Z,- del9ra assigned to issue: [7072](https://github.com/hackforla/website/issues/7072) at 2024-06-27 10:00 AM PDT -del9ra,2024-06-27T17:02:34Z,- del9ra commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2195227679) at 2024-06-27 10:02 AM PDT -del9ra,2024-06-30T18:07:33Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2198638845) at 2024-06-30 11:07 AM PDT -del9ra,2024-07-01T15:20:10Z,- del9ra commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2200442661) at 2024-07-01 08:20 AM PDT -del9ra,2024-07-09T18:47:15Z,- del9ra commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2218412328) at 2024-07-09 11:47 AM PDT -del9ra,2024-08-03T01:50:15Z,- del9ra opened pull request: [7169](https://github.com/hackforla/website/pull/7169) at 2024-08-02 06:50 PM PDT -del9ra,2024-08-08T15:57:39Z,- del9ra commented on pull request: [7169](https://github.com/hackforla/website/pull/7169#issuecomment-2276167443) at 2024-08-08 08:57 AM PDT -del9ra,2024-08-09T13:27:15Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2277945270) at 2024-08-09 06:27 AM PDT -del9ra,2024-08-10T19:43:58Z,- del9ra pull request merged: [7169](https://github.com/hackforla/website/pull/7169#event-13828860171) at 2024-08-10 12:43 PM PDT -del9ra,2024-08-12T02:14:57Z,- del9ra opened issue: [7273](https://github.com/hackforla/website/issues/7273) at 2024-08-11 07:14 PM PDT -del9ra,2024-08-12T21:28:03Z,- del9ra commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2284936767) at 2024-08-12 02:28 PM PDT -del9ra,2024-08-15T20:58:02Z,- del9ra commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2292227584) at 2024-08-15 01:58 PM PDT -del9ra,2024-08-16T21:03:07Z,- del9ra commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2294269081) at 2024-08-16 02:03 PM PDT -del9ra,2024-08-18T17:58:52Z,- del9ra commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2295342089) at 2024-08-18 10:58 AM PDT -del9ra,2024-08-18T17:58:52Z,- del9ra closed issue as completed: [5328](https://github.com/hackforla/website/issues/5328#event-13922619902) at 2024-08-18 10:58 AM PDT -del9ra,2024-08-20T00:41:57Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2297755162) at 2024-08-19 05:41 PM PDT -delaradaryaei,6600,SKILLS ISSUE -delaradaryaei,2024-04-09T02:52:14Z,- delaradaryaei opened issue: [6600](https://github.com/hackforla/website/issues/6600) at 2024-04-08 07:52 PM PDT -delaradaryaei,2024-04-09T02:52:47Z,- delaradaryaei assigned to issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2044061333) at 2024-04-08 07:52 PM PDT -DeniseLewis1,6525,SKILLS ISSUE -DeniseLewis1,2024-03-27T03:08:40Z,- DeniseLewis1 opened issue: [6525](https://github.com/hackforla/website/issues/6525) at 2024-03-26 08:08 PM PDT -DeniseLewis1,2024-03-27T03:08:49Z,- DeniseLewis1 assigned to issue: [6525](https://github.com/hackforla/website/issues/6525) at 2024-03-26 08:08 PM PDT -DeniseLewis1,2024-04-03T19:01:19Z,- DeniseLewis1 assigned to issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-2007823099) at 2024-04-03 12:01 PM PDT -DeniseLewis1,2024-04-03T19:05:11Z,- DeniseLewis1 commented on issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-2035376326) at 2024-04-03 12:05 PM PDT -DeniseLewis1,2024-04-03T19:17:18Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2035399939) at 2024-04-03 12:17 PM PDT -DeniseLewis1,2024-04-03T20:36:40Z,- DeniseLewis1 opened pull request: [6560](https://github.com/hackforla/website/pull/6560) at 2024-04-03 01:36 PM PDT -DeniseLewis1,2024-04-05T04:46:01Z,- DeniseLewis1 pull request merged: [6560](https://github.com/hackforla/website/pull/6560#event-12367733902) at 2024-04-04 09:46 PM PDT -DeniseLewis1,2024-04-10T22:39:12Z,- DeniseLewis1 assigned to issue: [6173](https://github.com/hackforla/website/issues/6173) at 2024-04-10 03:39 PM PDT -DeniseLewis1,2024-04-10T22:43:08Z,- DeniseLewis1 commented on issue: [6173](https://github.com/hackforla/website/issues/6173#issuecomment-2048554356) at 2024-04-10 03:43 PM PDT -DeniseLewis1,2024-04-10T23:28:51Z,- DeniseLewis1 opened pull request: [6618](https://github.com/hackforla/website/pull/6618) at 2024-04-10 04:28 PM PDT -DeniseLewis1,2024-04-12T05:03:57Z,- DeniseLewis1 pull request merged: [6618](https://github.com/hackforla/website/pull/6618#event-12444464488) at 2024-04-11 10:03 PM PDT -DeniseLewis1,2024-04-15T18:21:17Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2057539474) at 2024-04-15 11:21 AM PDT -DeniseLewis1,2024-04-17T19:17:14Z,- DeniseLewis1 assigned to issue: [6539](https://github.com/hackforla/website/issues/6539#issuecomment-2030895981) at 2024-04-17 12:17 PM PDT -DeniseLewis1,2024-04-17T19:19:13Z,- DeniseLewis1 commented on issue: [6539](https://github.com/hackforla/website/issues/6539#issuecomment-2062034746) at 2024-04-17 12:19 PM PDT -DeniseLewis1,2024-04-17T21:41:28Z,- DeniseLewis1 opened pull request: [6659](https://github.com/hackforla/website/pull/6659) at 2024-04-17 02:41 PM PDT -DeniseLewis1,2024-04-19T22:47:16Z,- DeniseLewis1 pull request merged: [6659](https://github.com/hackforla/website/pull/6659#event-12545612980) at 2024-04-19 03:47 PM PDT -DeniseLewis1,2024-04-30T22:52:39Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2087663334) at 2024-04-30 03:52 PM PDT -DeniseLewis1,2024-05-03T18:39:58Z,- DeniseLewis1 commented on pull request: [6808](https://github.com/hackforla/website/pull/6808#issuecomment-2093561056) at 2024-05-03 11:39 AM PDT -DeniseLewis1,2024-05-03T19:21:10Z,- DeniseLewis1 submitted pull request review: [6808](https://github.com/hackforla/website/pull/6808#pullrequestreview-2038866060) at 2024-05-03 12:21 PM PDT -DeniseLewis1,2024-05-10T15:57:31Z,- DeniseLewis1 commented on pull request: [6841](https://github.com/hackforla/website/pull/6841#issuecomment-2104850458) at 2024-05-10 08:57 AM PDT -DeniseLewis1,2024-05-10T16:50:01Z,- DeniseLewis1 submitted pull request review: [6841](https://github.com/hackforla/website/pull/6841#pullrequestreview-2050479166) at 2024-05-10 09:50 AM PDT -DeniseLewis1,2024-05-10T16:57:11Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2104940322) at 2024-05-10 09:57 AM PDT -DeniseLewis1,2024-05-24T16:49:00Z,- DeniseLewis1 commented on pull request: [6890](https://github.com/hackforla/website/pull/6890#issuecomment-2129981742) at 2024-05-24 09:49 AM PDT -DeniseLewis1,2024-05-24T19:41:50Z,- DeniseLewis1 submitted pull request review: [6890](https://github.com/hackforla/website/pull/6890#pullrequestreview-2077760616) at 2024-05-24 12:41 PM PDT -DeniseLewis1,2024-05-29T23:24:59Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2138410491) at 2024-05-29 04:24 PM PDT -DeniseLewis1,2024-06-04T18:44:52Z,- DeniseLewis1 commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2148182570) at 2024-06-04 11:44 AM PDT -DeniseLewis1,2024-06-04T19:10:19Z,- DeniseLewis1 submitted pull request review: [6925](https://github.com/hackforla/website/pull/6925#pullrequestreview-2097200086) at 2024-06-04 12:10 PM PDT -DeniseLewis1,2024-06-14T19:47:07Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2168659437) at 2024-06-14 12:47 PM PDT -DeniseLewis1,2024-09-03T16:09:01Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2326907014) at 2024-09-03 09:09 AM PDT -dependabot,2020-04-29T18:00:55Z,- dependabot opened pull request: [474](https://github.com/hackforla/website/pull/474) at 2020-04-29 11:00 AM PDT -dependabot,2020-04-30T05:51:34Z,- dependabot pull request merged: [474](https://github.com/hackforla/website/pull/474#event-3287645291) at 2020-04-29 10:51 PM PDT -dependabot,2020-07-19T18:20:15Z,- dependabot opened pull request: [613](https://github.com/hackforla/website/pull/613) at 2020-07-19 11:20 AM PDT -dependabot,2020-07-23T04:41:04Z,- dependabot pull request merged: [613](https://github.com/hackforla/website/pull/613#event-3578404727) at 2020-07-22 09:41 PM PDT -dependabot,2020-09-12T16:02:49Z,- dependabot opened pull request: [727](https://github.com/hackforla/website/pull/727) at 2020-09-12 09:02 AM PDT -dependabot,2020-09-13T04:00:37Z,- dependabot pull request merged: [727](https://github.com/hackforla/website/pull/727#event-3760061545) at 2020-09-12 09:00 PM PDT -dependabot,2020-10-01T17:32:35Z,- dependabot opened pull request: [762](https://github.com/hackforla/website/pull/762) at 2020-10-01 10:32 AM PDT -dependabot,2020-10-16T01:10:26Z,- dependabot pull request merged: [762](https://github.com/hackforla/website/pull/762#event-3884149557) at 2020-10-15 06:10 PM PDT -dependabot,2022-04-23T10:09:17Z,- dependabot opened pull request: [3077](https://github.com/hackforla/website/pull/3077) at 2022-04-23 03:09 AM PDT -dependabot,2022-06-26T19:34:16Z,- dependabot commented on pull request: [3077](https://github.com/hackforla/website/pull/3077#issuecomment-1166624841) at 2022-06-26 12:34 PM PDT -dependabot,2022-06-26T19:34:17Z,- dependabot pull request closed w/o merging: [3077](https://github.com/hackforla/website/pull/3077#event-6880798158) at 2022-06-26 12:34 PM PDT -dependabot,2022-08-18T19:59:31Z,- dependabot opened pull request: [3474](https://github.com/hackforla/website/pull/3474) at 2022-08-18 12:59 PM PDT -dependabot,2022-08-24T01:17:15Z,- dependabot pull request merged: [3474](https://github.com/hackforla/website/pull/3474#event-7246563425) at 2022-08-23 06:17 PM PDT -dependabot,2023-05-26T02:58:00Z,- dependabot opened pull request: [4734](https://github.com/hackforla/website/pull/4734) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:03Z,- dependabot opened pull request: [4735](https://github.com/hackforla/website/pull/4735) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:06Z,- dependabot opened pull request: [4736](https://github.com/hackforla/website/pull/4736) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:08Z,- dependabot opened pull request: [4737](https://github.com/hackforla/website/pull/4737) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:10Z,- dependabot opened pull request: [4738](https://github.com/hackforla/website/pull/4738) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:11Z,- dependabot opened pull request: [4739](https://github.com/hackforla/website/pull/4739) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:20Z,- dependabot opened pull request: [4740](https://github.com/hackforla/website/pull/4740) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:31Z,- dependabot opened pull request: [4741](https://github.com/hackforla/website/pull/4741) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:39Z,- dependabot opened pull request: [4742](https://github.com/hackforla/website/pull/4742) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:46Z,- dependabot opened pull request: [4743](https://github.com/hackforla/website/pull/4743) at 2023-05-25 07:58 PM PDT -dependabot,2023-06-08T19:13:17Z,- dependabot pull request merged: [4736](https://github.com/hackforla/website/pull/4736#event-9476022106) at 2023-06-08 12:13 PM PDT -dependabot,2023-06-09T00:05:09Z,- dependabot opened pull request: [4791](https://github.com/hackforla/website/pull/4791) at 2023-06-08 05:05 PM PDT -dependabot,2023-06-17T00:00:33Z,- dependabot opened pull request: [4849](https://github.com/hackforla/website/pull/4849) at 2023-06-16 05:00 PM PDT -dependabot,2023-06-17T00:00:37Z,- dependabot commented on pull request: [4741](https://github.com/hackforla/website/pull/4741#issuecomment-1595495786) at 2023-06-16 05:00 PM PDT -dependabot,2023-06-17T00:00:38Z,- dependabot pull request closed w/o merging: [4741](https://github.com/hackforla/website/pull/4741#event-9556971694) at 2023-06-16 05:00 PM PDT -dependabot,2023-07-09T21:29:26Z,- dependabot commented on pull request: [4737](https://github.com/hackforla/website/pull/4737#issuecomment-1627830215) at 2023-07-09 02:29 PM PDT -dependabot,2023-07-09T21:29:28Z,- dependabot pull request closed w/o merging: [4737](https://github.com/hackforla/website/pull/4737#event-9767907787) at 2023-07-09 02:29 PM PDT -dependabot,2023-07-10T05:02:23Z,- dependabot pull request merged: [4743](https://github.com/hackforla/website/pull/4743#event-9769862259) at 2023-07-09 10:02 PM PDT -dependabot,2023-07-10T05:43:16Z,- dependabot pull request merged: [4735](https://github.com/hackforla/website/pull/4735#event-9770083592) at 2023-07-09 10:43 PM PDT -dependabot,2023-07-10T05:46:17Z,- dependabot pull request merged: [4739](https://github.com/hackforla/website/pull/4739#event-9770100715) at 2023-07-09 10:46 PM PDT -dependabot,2023-07-10T06:04:19Z,- dependabot pull request merged: [4740](https://github.com/hackforla/website/pull/4740#event-9770219657) at 2023-07-09 11:04 PM PDT -dependabot,2023-07-10T21:49:24Z,- dependabot pull request merged: [4742](https://github.com/hackforla/website/pull/4742#event-9780175165) at 2023-07-10 02:49 PM PDT -dependabot,2023-07-10T23:31:35Z,- dependabot opened pull request: [4929](https://github.com/hackforla/website/pull/4929) at 2023-07-10 04:31 PM PDT -dependabot,2023-07-10T23:31:39Z,- dependabot opened pull request: [4930](https://github.com/hackforla/website/pull/4930) at 2023-07-10 04:31 PM PDT -dependabot,2023-07-11T23:31:15Z,- dependabot opened pull request: [4940](https://github.com/hackforla/website/pull/4940) at 2023-07-11 04:31 PM PDT -dependabot,2023-07-11T23:31:18Z,- dependabot commented on pull request: [4849](https://github.com/hackforla/website/pull/4849#issuecomment-1631635271) at 2023-07-11 04:31 PM PDT -dependabot,2023-07-11T23:31:19Z,- dependabot pull request closed w/o merging: [4849](https://github.com/hackforla/website/pull/4849#event-9793049587) at 2023-07-11 04:31 PM PDT -dependabot,2023-07-12T06:16:21Z,- dependabot pull request merged: [4791](https://github.com/hackforla/website/pull/4791#event-9794931332) at 2023-07-11 11:16 PM PDT -dependabot,2023-07-12T06:17:08Z,- dependabot opened pull request: [4941](https://github.com/hackforla/website/pull/4941) at 2023-07-11 11:17 PM PDT -dependabot,2023-07-12T06:42:20Z,- dependabot pull request merged: [4941](https://github.com/hackforla/website/pull/4941#event-9795118497) at 2023-07-11 11:42 PM PDT -dependabot,2023-07-14T04:08:54Z,- dependabot pull request merged: [4929](https://github.com/hackforla/website/pull/4929#event-9817626703) at 2023-07-13 09:08 PM PDT -dependabot,2023-07-14T04:37:24Z,- dependabot pull request merged: [4930](https://github.com/hackforla/website/pull/4930#event-9817762097) at 2023-07-13 09:37 PM PDT -dependabot,2023-07-14T05:33:01Z,- dependabot pull request merged: [4940](https://github.com/hackforla/website/pull/4940#event-9818032033) at 2023-07-13 10:33 PM PDT -dependabot,2023-07-15T06:05:55Z,- dependabot pull request merged: [4738](https://github.com/hackforla/website/pull/4738#event-9827718190) at 2023-07-14 11:05 PM PDT -dependabot,2023-07-17T18:26:54Z,- dependabot commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1638656114) at 2023-07-17 11:26 AM PDT -dependabot,2023-07-17T18:26:57Z,- dependabot pull request closed w/o merging: [4734](https://github.com/hackforla/website/pull/4734#event-9841209002) at 2023-07-17 11:26 AM PDT -dependabot,2023-08-04T23:58:23Z,- dependabot opened pull request: [5143](https://github.com/hackforla/website/pull/5143) at 2023-08-04 04:58 PM PDT -dependabot,2023-08-08T17:53:25Z,- dependabot pull request merged: [5143](https://github.com/hackforla/website/pull/5143#event-10038496239) at 2023-08-08 10:53 AM PDT -dependabot,2023-09-04T23:28:38Z,- dependabot opened pull request: [5443](https://github.com/hackforla/website/pull/5443) at 2023-09-04 04:28 PM PDT -dependabot,2023-09-11T23:33:18Z,- dependabot opened pull request: [5478](https://github.com/hackforla/website/pull/5478) at 2023-09-11 04:33 PM PDT -dependabot,2023-09-13T05:24:38Z,- dependabot pull request merged: [5478](https://github.com/hackforla/website/pull/5478#event-10354961508) at 2023-09-12 10:24 PM PDT -dependabot,2023-09-25T23:05:02Z,- dependabot opened pull request: [5582](https://github.com/hackforla/website/pull/5582) at 2023-09-25 04:05 PM PDT -dependabot,2023-09-30T03:40:04Z,- dependabot commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1741647434) at 2023-09-29 08:40 PM PDT -dependabot,2023-09-30T04:04:17Z,- dependabot pull request merged: [5582](https://github.com/hackforla/website/pull/5582#event-10516538834) at 2023-09-29 09:04 PM PDT -dependabot,2023-10-06T23:08:07Z,- dependabot opened pull request: [5669](https://github.com/hackforla/website/pull/5669) at 2023-10-06 04:08 PM PDT -dependabot,2023-10-06T23:57:24Z,- dependabot opened pull request: [5670](https://github.com/hackforla/website/pull/5670) at 2023-10-06 04:57 PM PDT -dependabot,2023-10-09T23:57:53Z,- dependabot opened pull request: [5689](https://github.com/hackforla/website/pull/5689) at 2023-10-09 04:57 PM PDT -dependabot,2023-10-10T23:46:58Z,- dependabot opened pull request: [5700](https://github.com/hackforla/website/pull/5700) at 2023-10-10 04:46 PM PDT -dependabot,2023-10-14T21:51:06Z,- dependabot pull request merged: [5689](https://github.com/hackforla/website/pull/5689#event-10655971929) at 2023-10-14 02:51 PM PDT -dependabot,2023-10-20T02:13:52Z,- dependabot pull request merged: [5670](https://github.com/hackforla/website/pull/5670#event-10718879800) at 2023-10-19 07:13 PM PDT -dependabot,2023-10-20T02:48:06Z,- dependabot pull request merged: [5669](https://github.com/hackforla/website/pull/5669#event-10719083197) at 2023-10-19 07:48 PM PDT -dependabot,2023-10-20T02:49:11Z,- dependabot opened pull request: [5741](https://github.com/hackforla/website/pull/5741) at 2023-10-19 07:49 PM PDT -dependabot,2023-10-20T03:16:33Z,- dependabot pull request merged: [5700](https://github.com/hackforla/website/pull/5700#event-10719230500) at 2023-10-19 08:16 PM PDT -dependabot,2023-10-21T21:47:11Z,- dependabot pull request merged: [5741](https://github.com/hackforla/website/pull/5741#event-10732166386) at 2023-10-21 02:47 PM PDT -dependabot,2023-10-23T23:54:31Z,- dependabot opened pull request: [5769](https://github.com/hackforla/website/pull/5769) at 2023-10-23 04:54 PM PDT -dependabot,2023-10-29T17:58:03Z,- dependabot pull request merged: [5769](https://github.com/hackforla/website/pull/5769#event-10800321452) at 2023-10-29 10:58 AM PDT -dependabot,2023-11-07T04:03:14Z,- dependabot pull request merged: [5443](https://github.com/hackforla/website/pull/5443#event-10881575713) at 2023-11-06 08:03 PM PST -dependabot,2023-11-13T23:10:44Z,- dependabot opened pull request: [5899](https://github.com/hackforla/website/pull/5899) at 2023-11-13 03:10 PM PST -dependabot,2023-11-23T05:08:21Z,- dependabot pull request merged: [5899](https://github.com/hackforla/website/pull/5899#event-11043280991) at 2023-11-22 09:08 PM PST -dependabot,2023-12-13T23:37:38Z,- dependabot opened pull request: [6005](https://github.com/hackforla/website/pull/6005) at 2023-12-13 03:37 PM PST -dependabot,2023-12-14T23:39:59Z,- dependabot opened pull request: [6008](https://github.com/hackforla/website/pull/6008) at 2023-12-14 03:39 PM PST -dependabot,2023-12-14T23:40:04Z,- dependabot opened pull request: [6009](https://github.com/hackforla/website/pull/6009) at 2023-12-14 03:40 PM PST -dependabot,2023-12-21T04:41:01Z,- dependabot pull request merged: [6005](https://github.com/hackforla/website/pull/6005#event-11310168269) at 2023-12-20 08:41 PM PST -dependabot,2023-12-21T05:02:47Z,- dependabot pull request merged: [6009](https://github.com/hackforla/website/pull/6009#event-11310299566) at 2023-12-20 09:02 PM PST -dependabot,2023-12-21T05:17:39Z,- dependabot pull request merged: [6008](https://github.com/hackforla/website/pull/6008#event-11310402531) at 2023-12-20 09:17 PM PST -dependabot,2024-01-03T23:26:19Z,- dependabot opened pull request: [6057](https://github.com/hackforla/website/pull/6057) at 2024-01-03 03:26 PM PST -dependabot,2024-01-07T04:11:23Z,- dependabot pull request merged: [6057](https://github.com/hackforla/website/pull/6057#event-11410238658) at 2024-01-06 08:11 PM PST -dependabot,2024-02-16T18:11:29Z,- dependabot opened pull request: [6304](https://github.com/hackforla/website/pull/6304) at 2024-02-16 10:11 AM PST -dependabot,2024-02-25T02:48:47Z,- dependabot pull request merged: [6304](https://github.com/hackforla/website/pull/6304#event-11912046202) at 2024-02-24 06:48 PM PST -dependabot,2024-03-04T23:17:41Z,- dependabot opened pull request: [6415](https://github.com/hackforla/website/pull/6415) at 2024-03-04 03:17 PM PST -dependabot,2024-03-10T03:27:06Z,- dependabot pull request merged: [6415](https://github.com/hackforla/website/pull/6415#event-12064429482) at 2024-03-09 08:27 PM PDT -dependabot,2024-04-03T23:19:14Z,- dependabot opened pull request: [6562](https://github.com/hackforla/website/pull/6562) at 2024-04-03 04:19 PM PDT -dependabot,2024-04-04T17:28:02Z,- dependabot opened pull request: [6565](https://github.com/hackforla/website/pull/6565) at 2024-04-04 10:28 AM PDT -dependabot,2024-04-12T23:56:15Z,- dependabot opened pull request: [6634](https://github.com/hackforla/website/pull/6634) at 2024-04-12 04:56 PM PDT -dependabot,2024-04-15T01:38:50Z,- dependabot pull request merged: [6562](https://github.com/hackforla/website/pull/6562#event-12461973584) at 2024-04-14 06:38 PM PDT -dependabot,2024-04-15T01:47:14Z,- dependabot pull request merged: [6565](https://github.com/hackforla/website/pull/6565#event-12462022633) at 2024-04-14 06:47 PM PDT -dependabot,2024-04-15T02:15:29Z,- dependabot pull request merged: [6634](https://github.com/hackforla/website/pull/6634#event-12462189286) at 2024-04-14 07:15 PM PDT -dependabot,2024-04-23T23:42:16Z,- dependabot opened pull request: [6713](https://github.com/hackforla/website/pull/6713) at 2024-04-23 04:42 PM PDT -dependabot,2024-04-29T23:59:37Z,- dependabot opened pull request: [6785](https://github.com/hackforla/website/pull/6785) at 2024-04-29 04:59 PM PDT -dependabot,2024-05-02T02:57:03Z,- dependabot pull request merged: [6785](https://github.com/hackforla/website/pull/6785#event-12676910002) at 2024-05-01 07:57 PM PDT -dependabot,2024-05-03T23:50:34Z,- dependabot opened pull request: [6813](https://github.com/hackforla/website/pull/6813) at 2024-05-03 04:50 PM PDT -dependabot,2024-05-05T17:18:35Z,- dependabot pull request merged: [6813](https://github.com/hackforla/website/pull/6813#event-12707917144) at 2024-05-05 10:18 AM PDT -dependabot,2024-05-21T04:18:24Z,- dependabot pull request closed w/o merging: [6713](https://github.com/hackforla/website/pull/6713#event-12873610675) at 2024-05-20 09:18 PM PDT -dependabot,2024-05-21T04:18:25Z,- dependabot commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2121708463) at 2024-05-20 09:18 PM PDT -dependabot,2024-05-24T23:59:45Z,- dependabot opened pull request: [6895](https://github.com/hackforla/website/pull/6895) at 2024-05-24 04:59 PM PDT -dependabot,2024-05-25T02:32:12Z,- dependabot pull request closed w/o merging: [6895](https://github.com/hackforla/website/pull/6895#event-12930941688) at 2024-05-24 07:32 PM PDT -dependabot,2024-05-25T02:32:13Z,- dependabot commented on pull request: [6895](https://github.com/hackforla/website/pull/6895#issuecomment-2130681744) at 2024-05-24 07:32 PM PDT -dependabot,2024-06-20T23:29:00Z,- dependabot opened pull request: [7041](https://github.com/hackforla/website/pull/7041) at 2024-06-20 04:29 PM PDT -dependabot,2024-07-17T23:27:46Z,- dependabot opened pull request: [7127](https://github.com/hackforla/website/pull/7127) at 2024-07-17 04:27 PM PDT -dependabot,2024-07-19T20:50:52Z,- dependabot commented on pull request: [7041](https://github.com/hackforla/website/pull/7041#issuecomment-2240086301) at 2024-07-19 01:50 PM PDT -dependabot,2024-07-19T20:50:52Z,- dependabot commented on pull request: [7127](https://github.com/hackforla/website/pull/7127#issuecomment-2240086294) at 2024-07-19 01:50 PM PDT -dependabot,2024-07-19T20:50:53Z,- dependabot pull request closed w/o merging: [7041](https://github.com/hackforla/website/pull/7041#event-13581006851) at 2024-07-19 01:50 PM PDT -dependabot,2024-07-19T20:50:53Z,- dependabot pull request closed w/o merging: [7127](https://github.com/hackforla/website/pull/7127#event-13581006775) at 2024-07-19 01:50 PM PDT -dependabot,2025-02-17T17:24:12Z,- dependabot opened pull request: [7913](https://github.com/hackforla/website/pull/7913) at 2025-02-17 09:24 AM PST -dependabot,2025-02-17T17:51:02Z,- dependabot pull request merged: [7913](https://github.com/hackforla/website/pull/7913#event-16337359323) at 2025-02-17 09:51 AM PST -dependabot,2025-02-17T17:52:05Z,- dependabot opened pull request: [7914](https://github.com/hackforla/website/pull/7914) at 2025-02-17 09:52 AM PST -dependabot,2025-02-17T17:52:05Z,- dependabot opened pull request: [7915](https://github.com/hackforla/website/pull/7915) at 2025-02-17 09:52 AM PST -dependabot,2025-02-17T18:49:16Z,- dependabot pull request merged: [7914](https://github.com/hackforla/website/pull/7914#event-16337869580) at 2025-02-17 10:49 AM PST -dependabot,2025-02-17T19:07:27Z,- dependabot pull request merged: [7915](https://github.com/hackforla/website/pull/7915#event-16338017534) at 2025-02-17 11:07 AM PST -dependabot,2025-02-17T23:28:52Z,- dependabot opened pull request: [7916](https://github.com/hackforla/website/pull/7916) at 2025-02-17 03:28 PM PST -dependabot,2025-02-18T00:02:21Z,- dependabot opened pull request: [7917](https://github.com/hackforla/website/pull/7917) at 2025-02-17 04:02 PM PST -dependabot,2025-02-18T00:02:25Z,- dependabot opened pull request: [7918](https://github.com/hackforla/website/pull/7918) at 2025-02-17 04:02 PM PST -dependabot,2025-02-18T19:22:43Z,- dependabot opened pull request: [7920](https://github.com/hackforla/website/pull/7920) at 2025-02-18 11:22 AM PST -dependabot,2025-03-02T04:26:06Z,- dependabot pull request merged: [7917](https://github.com/hackforla/website/pull/7917#event-16524069492) at 2025-03-01 08:26 PM PST -dependabot,2025-03-02T04:27:02Z,- dependabot opened pull request: [7961](https://github.com/hackforla/website/pull/7961) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:27:12Z,- dependabot commented on pull request: [7920](https://github.com/hackforla/website/pull/7920#issuecomment-2692551342) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:27:13Z,- dependabot pull request closed w/o merging: [7920](https://github.com/hackforla/website/pull/7920#event-16524070889) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:27:19Z,- dependabot commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2692551369) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:32:30Z,- dependabot pull request merged: [7918](https://github.com/hackforla/website/pull/7918#event-16524077740) at 2025-03-01 08:32 PM PST -dependabot,2025-03-02T04:45:21Z,- dependabot pull request merged: [7916](https://github.com/hackforla/website/pull/7916#event-16524095181) at 2025-03-01 08:45 PM PST -dependabot,2025-03-02T04:56:43Z,- dependabot pull request merged: [7961](https://github.com/hackforla/website/pull/7961#event-16524110074) at 2025-03-01 08:56 PM PST -dependabot,2025-04-21T23:43:24Z,- dependabot opened pull request: [8076](https://github.com/hackforla/website/pull/8076) at 2025-04-21 04:43 PM PDT -dependabot,2025-04-27T19:21:37Z,- dependabot pull request merged: [8076](https://github.com/hackforla/website/pull/8076#event-17424689383) at 2025-04-27 12:21 PM PDT -dependabot,2025-05-15T16:31:28Z,- dependabot opened pull request: [8144](https://github.com/hackforla/website/pull/8144) at 2025-05-15 09:31 AM PDT -dependabot,2025-05-19T03:27:52Z,- dependabot pull request merged: [8144](https://github.com/hackforla/website/pull/8144#event-17706405231) at 2025-05-18 08:27 PM PDT -dependabot,2025-05-26T23:12:53Z,- dependabot opened pull request: [8161](https://github.com/hackforla/website/pull/8161) at 2025-05-26 04:12 PM PDT -dependabot,2025-06-04T17:46:59Z,- dependabot pull request merged: [8161](https://github.com/hackforla/website/pull/8161#event-17986432968) at 2025-06-04 10:46 AM PDT -dependabot,2025-06-10T23:31:22Z,- dependabot opened pull request: [8179](https://github.com/hackforla/website/pull/8179) at 2025-06-10 04:31 PM PDT -dependabot,2025-06-11T23:22:05Z,- dependabot opened pull request: [8182](https://github.com/hackforla/website/pull/8182) at 2025-06-11 04:22 PM PDT -dependabot,2025-06-11T23:22:07Z,- dependabot commented on pull request: [8179](https://github.com/hackforla/website/pull/8179#issuecomment-2964528812) at 2025-06-11 04:22 PM PDT -dependabot,2025-06-11T23:22:07Z,- dependabot pull request closed w/o merging: [8179](https://github.com/hackforla/website/pull/8179#event-18103171116) at 2025-06-11 04:22 PM PDT -dependabot,2025-06-14T20:42:05Z,- dependabot pull request merged: [8182](https://github.com/hackforla/website/pull/8182#event-18152285048) at 2025-06-14 01:42 PM PDT -DeviantSchemist,4987,SKILLS ISSUE -DeviantSchemist,2023-07-18T02:01:20Z,- DeviantSchemist opened issue: [4987](https://github.com/hackforla/website/issues/4987) at 2023-07-17 07:01 PM PDT -DeviantSchemist,2023-07-18T02:41:12Z,- DeviantSchemist assigned to issue: [4987](https://github.com/hackforla/website/issues/4987) at 2023-07-17 07:41 PM PDT -DeviantSchemist,2023-07-20T00:41:09Z,- DeviantSchemist assigned to issue: [4920](https://github.com/hackforla/website/issues/4920#issuecomment-1624445286) at 2023-07-19 05:41 PM PDT -DeviantSchemist,2023-07-20T07:10:09Z,- DeviantSchemist commented on issue: [4920](https://github.com/hackforla/website/issues/4920#issuecomment-1643396229) at 2023-07-20 12:10 AM PDT -DeviantSchemist,2023-07-21T02:14:32Z,- DeviantSchemist opened pull request: [5044](https://github.com/hackforla/website/pull/5044) at 2023-07-20 07:14 PM PDT -DeviantSchemist,2023-07-23T03:48:23Z,- DeviantSchemist commented on issue: [4987](https://github.com/hackforla/website/issues/4987#issuecomment-1646738451) at 2023-07-22 08:48 PM PDT -DeviantSchemist,2023-07-23T04:23:25Z,- DeviantSchemist pull request merged: [5044](https://github.com/hackforla/website/pull/5044#event-9892093712) at 2023-07-22 09:23 PM PDT -DevRishiJain,4627,SKILLS ISSUE -DevRishiJain,2023-05-09T03:34:23Z,- DevRishiJain opened issue: [4627](https://github.com/hackforla/website/issues/4627) at 2023-05-08 08:34 PM PDT -DevRishiJain,2023-05-09T04:04:57Z,- DevRishiJain assigned to issue: [4627](https://github.com/hackforla/website/issues/4627) at 2023-05-08 09:04 PM PDT -DevRishiJain,2023-05-14T10:40:32Z,- DevRishiJain assigned to issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1491166498) at 2023-05-14 03:40 AM PDT -DevRishiJain,2023-05-14T14:52:59Z,- DevRishiJain opened pull request: [4664](https://github.com/hackforla/website/pull/4664) at 2023-05-14 07:52 AM PDT -DevRishiJain,2023-05-14T15:05:48Z,- DevRishiJain submitted pull request review: [4665](https://github.com/hackforla/website/pull/4665#pullrequestreview-1425565278) at 2023-05-14 08:05 AM PDT -DevRishiJain,2023-05-16T06:14:29Z,- DevRishiJain pull request closed w/o merging: [4664](https://github.com/hackforla/website/pull/4664#event-9253816445) at 2023-05-15 11:14 PM PDT -DevRishiJain,2023-05-16T15:45:10Z,- DevRishiJain assigned to issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1526642953) at 2023-05-16 08:45 AM PDT -DevRishiJain,2023-05-16T15:47:08Z,- DevRishiJain commented on issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1549927320) at 2023-05-16 08:47 AM PDT -DevRishiJain,2023-05-16T19:14:56Z,- DevRishiJain opened pull request: [4683](https://github.com/hackforla/website/pull/4683) at 2023-05-16 12:14 PM PDT -DevRishiJain,2023-05-18T10:34:34Z,- DevRishiJain commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1552860569) at 2023-05-18 03:34 AM PDT -DevRishiJain,2023-05-21T10:07:45Z,- DevRishiJain commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1556138109) at 2023-05-21 03:07 AM PDT -DevRishiJain,2023-05-21T19:28:09Z,- DevRishiJain commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1556268479) at 2023-05-21 12:28 PM PDT -DevRishiJain,2023-05-23T23:57:02Z,- DevRishiJain pull request merged: [4683](https://github.com/hackforla/website/pull/4683#event-9321647658) at 2023-05-23 04:57 PM PDT -DevRishiJain,2023-05-24T01:17:34Z,- DevRishiJain assigned to issue: [4699](https://github.com/hackforla/website/issues/4699) at 2023-05-23 06:17 PM PDT -DevRishiJain,2023-05-24T01:19:09Z,- DevRishiJain commented on issue: [4699](https://github.com/hackforla/website/issues/4699#issuecomment-1560326585) at 2023-05-23 06:19 PM PDT -DevRishiJain,2023-05-24T01:27:44Z,- DevRishiJain opened pull request: [4709](https://github.com/hackforla/website/pull/4709) at 2023-05-23 06:27 PM PDT -DevRishiJain,2023-05-25T18:52:21Z,- DevRishiJain pull request merged: [4709](https://github.com/hackforla/website/pull/4709#event-9343462084) at 2023-05-25 11:52 AM PDT -DevRishiJain,2023-05-30T06:54:32Z,- DevRishiJain closed issue as completed: [4627](https://github.com/hackforla/website/issues/4627#event-9374504592) at 2023-05-29 11:54 PM PDT -DevRishiJain,2023-07-05T17:44:13Z,- DevRishiJain assigned to issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1491107679) at 2023-07-05 10:44 AM PDT -DevRishiJain,2023-07-05T17:46:44Z,- DevRishiJain commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1622211652) at 2023-07-05 10:46 AM PDT -DevRishiJain,2023-07-09T17:21:06Z,- DevRishiJain unassigned from issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1549054904) at 2023-07-09 10:21 AM PDT -DevRishiJain,2023-07-09T17:21:38Z,- DevRishiJain unassigned from issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1622211652) at 2023-07-09 10:21 AM PDT -DexinJ,7020,SKILLS ISSUE -DexinJ,2024-06-19T02:46:25Z,- DexinJ opened issue: [7020](https://github.com/hackforla/website/issues/7020) at 2024-06-18 07:46 PM PDT -DexinJ,2024-06-19T02:46:34Z,- DexinJ assigned to issue: [7020](https://github.com/hackforla/website/issues/7020) at 2024-06-18 07:46 PM PDT -DexinJ,2024-07-04T23:42:57Z,- DexinJ commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2209644496) at 2024-07-04 04:42 PM PDT -DGnzl,2021-04-23T22:32:36Z,- DGnzl assigned to issue: [1444](https://github.com/hackforla/website/issues/1444) at 2021-04-23 03:32 PM PDT -DGnzl,2021-04-28T07:02:02Z,- DGnzl opened pull request: [1486](https://github.com/hackforla/website/pull/1486) at 2021-04-28 12:02 AM PDT -DGnzl,2021-04-28T15:43:13Z,- DGnzl commented on pull request: [1486](https://github.com/hackforla/website/pull/1486#issuecomment-828561557) at 2021-04-28 08:43 AM PDT -DGnzl,2021-04-28T22:50:23Z,- DGnzl commented on pull request: [1486](https://github.com/hackforla/website/pull/1486#issuecomment-828831417) at 2021-04-28 03:50 PM PDT -DGnzl,2021-04-29T00:29:21Z,- DGnzl pull request merged: [1486](https://github.com/hackforla/website/pull/1486#event-4659853083) at 2021-04-28 05:29 PM PDT -DGnzl,2021-06-01T21:01:35Z,- DGnzl assigned to issue: [1616](https://github.com/hackforla/website/issues/1616) at 2021-06-01 02:01 PM PDT -DGnzl,2021-06-01T21:10:59Z,- DGnzl opened pull request: [1678](https://github.com/hackforla/website/pull/1678) at 2021-06-01 02:10 PM PDT -DGnzl,2021-06-02T19:16:47Z,- DGnzl pull request merged: [1678](https://github.com/hackforla/website/pull/1678#event-4833654948) at 2021-06-02 12:16 PM PDT -DGnzl,2021-06-02T23:01:11Z,- DGnzl assigned to issue: [1618](https://github.com/hackforla/website/issues/1618) at 2021-06-02 04:01 PM PDT -DGnzl,2021-06-03T00:37:09Z,- DGnzl opened pull request: [1683](https://github.com/hackforla/website/pull/1683) at 2021-06-02 05:37 PM PDT -DGnzl,2021-06-06T06:41:50Z,- DGnzl pull request merged: [1683](https://github.com/hackforla/website/pull/1683#event-4847698124) at 2021-06-05 11:41 PM PDT -dheerajkoppu,5207,SKILLS ISSUE -dheerajkoppu,2023-08-15T02:23:31Z,- dheerajkoppu opened issue: [5207](https://github.com/hackforla/website/issues/5207) at 2023-08-14 07:23 PM PDT -dheerajkoppu,2024-02-13T21:51:45Z,- dheerajkoppu assigned to issue: [5207](https://github.com/hackforla/website/issues/5207#event-11651555544) at 2024-02-13 01:51 PM PST -dhruvdy,2023-12-19T18:21:50Z,- dhruvdy commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1863272898) at 2023-12-19 10:21 AM PST -dimiprousalis,5867,SKILLS ISSUE -dimiprousalis,2023-11-07T04:02:51Z,- dimiprousalis opened issue: [5867](https://github.com/hackforla/website/issues/5867) at 2023-11-06 08:02 PM PST -dimiprousalis,2023-11-07T04:05:15Z,- dimiprousalis assigned to issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1797714527) at 2023-11-06 08:05 PM PST -dimiprousalis,2023-11-21T19:31:52Z,- dimiprousalis assigned to issue: [5680](https://github.com/hackforla/website/issues/5680#issuecomment-1752133159) at 2023-11-21 11:31 AM PST -dimiprousalis,2023-11-22T16:43:55Z,- dimiprousalis opened pull request: [5931](https://github.com/hackforla/website/pull/5931) at 2023-11-22 08:43 AM PST -dimiprousalis,2023-11-22T18:22:55Z,- dimiprousalis commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1823264922) at 2023-11-22 10:22 AM PST -dimiprousalis,2023-11-28T01:00:06Z,- dimiprousalis commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1828893305) at 2023-11-27 05:00 PM PST -dimiprousalis,2023-11-28T01:39:35Z,- dimiprousalis pull request merged: [5931](https://github.com/hackforla/website/pull/5931#event-11077786404) at 2023-11-27 05:39 PM PST -dimiprousalis,2023-11-30T18:47:25Z,- dimiprousalis assigned to issue: [5685](https://github.com/hackforla/website/issues/5685#issuecomment-1752407022) at 2023-11-30 10:47 AM PST -dimiprousalis,2023-12-04T20:10:24Z,- dimiprousalis opened pull request: [5957](https://github.com/hackforla/website/pull/5957) at 2023-12-04 12:10 PM PST -dimiprousalis,2023-12-07T01:01:59Z,- dimiprousalis commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1843963569) at 2023-12-06 05:01 PM PST -dimiprousalis,2023-12-08T02:55:32Z,- dimiprousalis pull request merged: [5957](https://github.com/hackforla/website/pull/5957#event-11188923597) at 2023-12-07 06:55 PM PST -dimiprousalis,2023-12-13T20:07:48Z,- dimiprousalis assigned to issue: [5849](https://github.com/hackforla/website/issues/5849) at 2023-12-13 12:07 PM PST -dimiprousalis,2023-12-13T20:50:13Z,- dimiprousalis commented on issue: [5849](https://github.com/hackforla/website/issues/5849#issuecomment-1854681379) at 2023-12-13 12:50 PM PST -dimiprousalis,2023-12-21T15:55:46Z,- dimiprousalis opened pull request: [6014](https://github.com/hackforla/website/pull/6014) at 2023-12-21 07:55 AM PST -dimiprousalis,2023-12-21T16:09:26Z,- dimiprousalis commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1866576986) at 2023-12-21 08:09 AM PST -dimiprousalis,2023-12-24T04:01:38Z,- dimiprousalis pull request merged: [6014](https://github.com/hackforla/website/pull/6014#event-11331869497) at 2023-12-23 08:01 PM PST -dimiprousalis,2023-12-26T19:49:27Z,- dimiprousalis submitted pull request review: [6013](https://github.com/hackforla/website/pull/6013#pullrequestreview-1796562419) at 2023-12-26 11:49 AM PST -dimiprousalis,2023-12-27T20:03:37Z,- dimiprousalis closed issue as completed: [5867](https://github.com/hackforla/website/issues/5867#event-11346991244) at 2023-12-27 12:03 PM PST -dineshsk98,5536,SKILLS ISSUE -dineshsk98,2023-09-15T02:29:08Z,- dineshsk98 opened issue: [5536](https://github.com/hackforla/website/issues/5536) at 2023-09-14 07:29 PM PDT -dineshsk98,2023-09-15T02:29:09Z,- dineshsk98 assigned to issue: [5536](https://github.com/hackforla/website/issues/5536) at 2023-09-14 07:29 PM PDT -dineshsk98,2023-10-01T19:09:31Z,- dineshsk98 assigned to issue: [5624](https://github.com/hackforla/website/issues/5624) at 2023-10-01 12:09 PM PDT -dineshsk98,2023-10-02T01:08:57Z,- dineshsk98 opened pull request: [5640](https://github.com/hackforla/website/pull/5640) at 2023-10-01 06:08 PM PDT -dineshsk98,2023-10-02T16:52:33Z,- dineshsk98 assigned to issue: [5622](https://github.com/hackforla/website/issues/5622) at 2023-10-02 09:52 AM PDT -dineshsk98,2023-10-02T16:58:08Z,- dineshsk98 commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1743405617) at 2023-10-02 09:58 AM PDT -dineshsk98,2023-10-02T16:59:01Z,- dineshsk98 commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1743408330) at 2023-10-02 09:59 AM PDT -dineshsk98,2023-10-03T23:34:43Z,- dineshsk98 commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1745886882) at 2023-10-03 04:34 PM PDT -dineshsk98,2023-10-03T23:36:13Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745887879) at 2023-10-03 04:36 PM PDT -dineshsk98,2023-10-04T01:43:36Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745999115) at 2023-10-03 06:43 PM PDT -dineshsk98,2023-10-04T22:36:40Z,- dineshsk98 opened pull request: [5662](https://github.com/hackforla/website/pull/5662) at 2023-10-04 03:36 PM PDT -dineshsk98,2023-10-07T15:58:52Z,- dineshsk98 opened pull request: [5672](https://github.com/hackforla/website/pull/5672) at 2023-10-07 08:58 AM PDT -dineshsk98,2023-10-07T16:05:34Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1751746483) at 2023-10-07 09:05 AM PDT -dineshsk98,2023-10-07T16:07:02Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1751746866) at 2023-10-07 09:07 AM PDT -dineshsk98,2023-10-08T02:13:55Z,- dineshsk98 pull request closed w/o merging: [5640](https://github.com/hackforla/website/pull/5640#event-10583074243) at 2023-10-07 07:13 PM PDT -dineshsk98,2023-10-08T02:22:08Z,- dineshsk98 pull request closed w/o merging: [5662](https://github.com/hackforla/website/pull/5662#event-10583083053) at 2023-10-07 07:22 PM PDT -dineshsk98,2023-10-09T17:21:38Z,- dineshsk98 pull request merged: [5672](https://github.com/hackforla/website/pull/5672#event-10593815488) at 2023-10-09 10:21 AM PDT -dineshsk98,2023-10-10T00:03:50Z,- dineshsk98 opened pull request: [5690](https://github.com/hackforla/website/pull/5690) at 2023-10-09 05:03 PM PDT -dineshsk98,2023-10-11T04:27:41Z,- dineshsk98 commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1756762609) at 2023-10-10 09:27 PM PDT -dineshsk98,2023-10-14T23:01:38Z,- dineshsk98 pull request merged: [5690](https://github.com/hackforla/website/pull/5690#event-10656083498) at 2023-10-14 04:01 PM PDT -dineshsk98,2023-10-17T05:11:11Z,- dineshsk98 commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1765679046) at 2023-10-16 10:11 PM PDT -dineshsk98,2023-10-17T20:09:27Z,- dineshsk98 commented on issue: [5536](https://github.com/hackforla/website/issues/5536#issuecomment-1767093405) at 2023-10-17 01:09 PM PDT -dineshsk98,2023-10-17T20:09:27Z,- dineshsk98 closed issue as completed: [5536](https://github.com/hackforla/website/issues/5536#event-10683252620) at 2023-10-17 01:09 PM PDT -dionw412,2917,SKILLS ISSUE -dionw412,2022-03-02T22:13:08Z,- dionw412 opened issue: [2917](https://github.com/hackforla/website/issues/2917) at 2022-03-02 02:13 PM PST -dionw412,2022-03-02T22:13:09Z,- dionw412 assigned to issue: [2917](https://github.com/hackforla/website/issues/2917) at 2022-03-02 02:13 PM PST -dionw412,2022-03-02T22:40:28Z,- dionw412 assigned to issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-03-02 02:40 PM PST -dionw412,2022-03-07T22:09:14Z,- dionw412 assigned to issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-971962314) at 2022-03-07 02:09 PM PST -dionw412,2022-03-09T22:28:15Z,- dionw412 unassigned from issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-03-09 02:28 PM PST -dionw412,2022-03-13T15:32:39Z,- dionw412 unassigned from issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-971962314) at 2022-03-13 08:32 AM PDT -dionw412,2022-04-27T17:22:04Z,- dionw412 closed issue as completed: [3005](https://github.com/hackforla/website/issues/3005#event-6508901055) at 2022-04-27 10:22 AM PDT -dionw412,2022-04-27T17:22:11Z,- dionw412 reopened issue: [3005](https://github.com/hackforla/website/issues/3005#event-6508901055) at 2022-04-27 10:22 AM PDT -dionw412,2022-04-27T17:22:57Z,- dionw412 closed issue as completed: [3005](https://github.com/hackforla/website/issues/3005#event-6508906629) at 2022-04-27 10:22 AM PDT -dionw412,2022-04-27T17:23:18Z,- dionw412 reopened issue: [3005](https://github.com/hackforla/website/issues/3005#event-6508906629) at 2022-04-27 10:23 AM PDT -dionw412,2022-04-27T17:24:50Z,- dionw412 assigned to issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1063263528) at 2022-04-27 10:24 AM PDT -dionw412,2022-06-08T18:36:57Z,- dionw412 unassigned from issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1145667475) at 2022-06-08 11:36 AM PDT -djbradleyii,5875,SKILLS ISSUE -djbradleyii,2023-11-07T05:13:38Z,- djbradleyii opened issue: [5875](https://github.com/hackforla/website/issues/5875) at 2023-11-06 09:13 PM PST -djbradleyii,2023-11-07T05:13:45Z,- djbradleyii assigned to issue: [5875](https://github.com/hackforla/website/issues/5875) at 2023-11-06 09:13 PM PST -djbradleyii,2023-11-14T19:38:34Z,- djbradleyii assigned to issue: [5800](https://github.com/hackforla/website/issues/5800) at 2023-11-14 11:38 AM PST -djbradleyii,2023-11-14T21:46:42Z,- djbradleyii commented on issue: [5800](https://github.com/hackforla/website/issues/5800#issuecomment-1811374920) at 2023-11-14 01:46 PM PST -djbradleyii,2023-11-14T22:00:55Z,- djbradleyii opened pull request: [5904](https://github.com/hackforla/website/pull/5904) at 2023-11-14 02:00 PM PST -djbradleyii,2023-11-19T18:45:41Z,- djbradleyii commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1817943156) at 2023-11-19 10:45 AM PST -djbradleyii,2023-11-21T01:38:28Z,- djbradleyii commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1820075898) at 2023-11-20 05:38 PM PST -djbradleyii,2023-11-28T01:47:58Z,- djbradleyii commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1828931015) at 2023-11-27 05:47 PM PST -djbradleyii,2023-11-28T01:50:51Z,- djbradleyii pull request merged: [5904](https://github.com/hackforla/website/pull/5904#event-11077844400) at 2023-11-27 05:50 PM PST -djbradleyii,2023-11-28T03:13:55Z,- djbradleyii assigned to issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1797619845) at 2023-11-27 07:13 PM PST -djbradleyii,2023-11-28T03:15:05Z,- djbradleyii commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1829003627) at 2023-11-27 07:15 PM PST -djbradleyii,2023-11-29T00:31:12Z,- djbradleyii commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1830999162) at 2023-11-28 04:31 PM PST -djbradleyii,2023-11-29T20:09:12Z,- djbradleyii commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1832628290) at 2023-11-29 12:09 PM PST -djbradleyii,2023-11-29T20:10:59Z,- djbradleyii opened pull request: [5945](https://github.com/hackforla/website/pull/5945) at 2023-11-29 12:10 PM PST -djbradleyii,2023-11-29T23:46:35Z,- djbradleyii opened issue: [5948](https://github.com/hackforla/website/issues/5948) at 2023-11-29 03:46 PM PST -djbradleyii,2023-11-29T23:51:33Z,- djbradleyii assigned to issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-1832876728) at 2023-11-29 03:51 PM PST -djbradleyii,2023-11-30T14:51:18Z,- djbradleyii pull request merged: [5945](https://github.com/hackforla/website/pull/5945#event-11110123884) at 2023-11-30 06:51 AM PST -djbradleyii,2023-12-01T17:02:12Z,- djbradleyii closed issue as completed: [5875](https://github.com/hackforla/website/issues/5875#event-11124531711) at 2023-12-01 09:02 AM PST -djbradleyii,2024-01-03T23:50:12Z,- djbradleyii assigned to issue: [6022](https://github.com/hackforla/website/issues/6022) at 2024-01-03 03:50 PM PST -djbradleyii,2024-01-04T00:50:29Z,- djbradleyii commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1876163540) at 2024-01-03 04:50 PM PST -djbradleyii,2024-01-09T01:51:30Z,- djbradleyii commented on issue: [6024](https://github.com/hackforla/website/issues/6024#issuecomment-1882148859) at 2024-01-08 05:51 PM PST -djbradleyii,2024-01-10T00:23:39Z,- djbradleyii opened pull request: [6085](https://github.com/hackforla/website/pull/6085) at 2024-01-09 04:23 PM PST -djbradleyii,2024-01-10T21:03:26Z,- djbradleyii commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1885728864) at 2024-01-10 01:03 PM PST -djbradleyii,2024-01-17T21:29:15Z,- djbradleyii opened issue: [6129](https://github.com/hackforla/website/issues/6129) at 2024-01-17 01:29 PM PST -djbradleyii,2024-01-23T03:31:34Z,- djbradleyii commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1905232816) at 2024-01-22 07:31 PM PST -djbradleyii,2024-01-23T09:21:31Z,- djbradleyii commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1905631106) at 2024-01-23 01:21 AM PST -djbradleyii,2024-01-23T19:41:01Z,- djbradleyii pull request merged: [6085](https://github.com/hackforla/website/pull/6085#event-11575314949) at 2024-01-23 11:41 AM PST -djbradleyii,2024-03-05T01:36:12Z,- djbradleyii commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1977784008) at 2024-03-04 05:36 PM PST -djbradleyii,2024-03-25T17:27:47Z,- djbradleyii commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-2018528994) at 2024-03-25 10:27 AM PDT -djbradleyii,2024-04-30T01:27:25Z,- djbradleyii unassigned from issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-1832883385) at 2024-04-29 06:27 PM PDT -dmcneary,2021-01-03T19:52:18Z,- dmcneary assigned to issue: [902](https://github.com/hackforla/website/issues/902#issuecomment-753657049) at 2021-01-03 11:52 AM PST -dmcneary,2021-01-03T21:03:01Z,- dmcneary assigned to issue: [912](https://github.com/hackforla/website/issues/912) at 2021-01-03 01:03 PM PST -dmcneary,2021-01-03T23:14:44Z,- dmcneary opened pull request: [913](https://github.com/hackforla/website/pull/913) at 2021-01-03 03:14 PM PST -dmcneary,2021-01-06T03:28:57Z,- dmcneary pull request merged: [913](https://github.com/hackforla/website/pull/913#event-4173190298) at 2021-01-05 07:28 PM PST -dmcneary,2021-01-06T03:46:16Z,- dmcneary closed issue as completed: [912](https://github.com/hackforla/website/issues/912#event-4173232794) at 2021-01-05 07:46 PM PST -dmcneary,2021-01-06T04:08:36Z,- dmcneary assigned to issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-05 08:08 PM PST -dmcneary,2021-01-06T16:53:27Z,- dmcneary unassigned from issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-06 08:53 AM PST -dmcneary,2021-01-07T21:54:26Z,- dmcneary assigned to issue: [922](https://github.com/hackforla/website/issues/922) at 2021-01-07 01:54 PM PST -dmcneary,2021-01-10T02:52:44Z,- dmcneary commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757403941) at 2021-01-09 06:52 PM PST -dmcneary,2021-01-10T18:25:23Z,- dmcneary commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757521215) at 2021-01-10 10:25 AM PST -dmcneary,2021-01-10T18:43:44Z,- dmcneary opened pull request: [924](https://github.com/hackforla/website/pull/924) at 2021-01-10 10:43 AM PST -dmcneary,2021-01-10T19:08:03Z,- dmcneary commented on pull request: [924](https://github.com/hackforla/website/pull/924#issuecomment-757527083) at 2021-01-10 11:08 AM PST -dmcneary,2021-01-10T19:57:14Z,- dmcneary submitted pull request review: [919](https://github.com/hackforla/website/pull/919#pullrequestreview-564895489) at 2021-01-10 11:57 AM PST -dmcneary,2021-01-10T19:57:29Z,- dmcneary closed issue by PR 919: [796](https://github.com/hackforla/website/issues/796#event-4188374485) at 2021-01-10 11:57 AM PST -dmcneary,2021-01-10T20:08:25Z,- dmcneary commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757535702) at 2021-01-10 12:08 PM PST -dmcneary,2021-01-10T20:41:28Z,- dmcneary assigned to issue: [925](https://github.com/hackforla/website/issues/925) at 2021-01-10 12:41 PM PST -dmcneary,2021-01-10T21:04:38Z,- dmcneary pull request merged: [924](https://github.com/hackforla/website/pull/924#event-4188432483) at 2021-01-10 01:04 PM PST -dmcneary,2021-01-10T23:09:13Z,- dmcneary opened pull request: [928](https://github.com/hackforla/website/pull/928) at 2021-01-10 03:09 PM PST -dmcneary,2021-01-11T21:02:59Z,- dmcneary pull request merged: [928](https://github.com/hackforla/website/pull/928#event-4192793996) at 2021-01-11 01:02 PM PST -dmcneary,2021-01-15T21:26:58Z,- dmcneary commented on issue: [925](https://github.com/hackforla/website/issues/925#issuecomment-761205956) at 2021-01-15 01:26 PM PST -dmcneary,2021-01-15T21:30:06Z,- dmcneary opened pull request: [943](https://github.com/hackforla/website/pull/943) at 2021-01-15 01:30 PM PST -dmcneary,2021-01-17T18:06:04Z,- dmcneary commented on issue: [925](https://github.com/hackforla/website/issues/925#issuecomment-761854083) at 2021-01-17 10:06 AM PST -dmcneary,2021-01-17T19:16:56Z,- dmcneary assigned to issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716202808) at 2021-01-17 11:16 AM PST -dmcneary,2021-01-17T20:20:06Z,- dmcneary commented on pull request: [943](https://github.com/hackforla/website/pull/943#issuecomment-761873324) at 2021-01-17 12:20 PM PST -dmcneary,2021-01-20T05:16:19Z,- dmcneary commented on issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-763338967) at 2021-01-19 09:16 PM PST -dmcneary,2021-01-20T15:07:30Z,- dmcneary pull request merged: [943](https://github.com/hackforla/website/pull/943#event-4228394586) at 2021-01-20 07:07 AM PST -dmcneary,2021-01-24T17:58:42Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-766403298) at 2021-01-24 09:58 AM PST -dmcneary,2021-02-01T21:15:14Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-771163120) at 2021-02-01 01:15 PM PST -dmcneary,2021-02-05T04:48:46Z,- dmcneary commented on pull request: [998](https://github.com/hackforla/website/pull/998#issuecomment-773785449) at 2021-02-04 08:48 PM PST -dmcneary,2021-02-05T04:48:57Z,- dmcneary closed issue by PR 998: [990](https://github.com/hackforla/website/issues/990#event-4294261322) at 2021-02-04 08:48 PM PST -dmcneary,2021-02-05T05:01:38Z,- dmcneary submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-584024274) at 2021-02-04 09:01 PM PST -dmcneary,2021-02-07T03:00:36Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-774581671) at 2021-02-06 07:00 PM PST -dmcneary,2021-02-16T19:33:16Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-780068581) at 2021-02-16 11:33 AM PST -dmcneary,2021-02-17T03:41:52Z,- dmcneary opened issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-02-16 07:41 PM PST -dmcneary,2021-02-20T07:09:30Z,- dmcneary commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782576465) at 2021-02-19 11:09 PM PST -dmcneary,2021-02-21T04:54:49Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-782797128) at 2021-02-20 08:54 PM PST -dmcneary,2021-02-28T18:42:35Z,- dmcneary opened pull request: [1137](https://github.com/hackforla/website/pull/1137) at 2021-02-28 10:42 AM PST -dmcneary,2021-02-28T19:03:52Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-787503625) at 2021-02-28 11:03 AM PST -dmcneary,2021-03-18T16:44:05Z,- dmcneary pull request closed w/o merging: [1137](https://github.com/hackforla/website/pull/1137#event-4477350221) at 2021-03-18 09:44 AM PDT -DmitriiTsy,3606,SKILLS ISSUE -DmitriiTsy,2022-10-11T02:53:30Z,- DmitriiTsy opened issue: [3606](https://github.com/hackforla/website/issues/3606) at 2022-10-10 07:53 PM PDT -DmitriiTsy,2022-10-13T02:43:57Z,- DmitriiTsy assigned to issue: [3606](https://github.com/hackforla/website/issues/3606) at 2022-10-12 07:43 PM PDT -DmitriiTsy,2022-10-13T02:49:31Z,- DmitriiTsy assigned to issue: [2850](https://github.com/hackforla/website/issues/2850#issuecomment-1048319128) at 2022-10-12 07:49 PM PDT -DmitriiTsy,2022-10-13T02:57:23Z,- DmitriiTsy commented on issue: [2850](https://github.com/hackforla/website/issues/2850#issuecomment-1276962075) at 2022-10-12 07:57 PM PDT -DmitriiTsy,2022-10-13T03:25:30Z,- DmitriiTsy opened pull request: [3616](https://github.com/hackforla/website/pull/3616) at 2022-10-12 08:25 PM PDT -DmitriiTsy,2022-10-14T02:16:10Z,- DmitriiTsy assigned to issue: [3197](https://github.com/hackforla/website/issues/3197#issuecomment-1145803474) at 2022-10-13 07:16 PM PDT -DmitriiTsy,2022-10-14T02:17:23Z,- DmitriiTsy commented on issue: [3197](https://github.com/hackforla/website/issues/3197#issuecomment-1278382088) at 2022-10-13 07:17 PM PDT -DmitriiTsy,2022-10-14T03:22:48Z,- DmitriiTsy pull request merged: [3616](https://github.com/hackforla/website/pull/3616#event-7586630057) at 2022-10-13 08:22 PM PDT -DmitriiTsy,2022-10-14T20:16:02Z,- DmitriiTsy opened pull request: [3622](https://github.com/hackforla/website/pull/3622) at 2022-10-14 01:16 PM PDT -DmitriiTsy,2022-10-15T20:49:06Z,- DmitriiTsy pull request merged: [3622](https://github.com/hackforla/website/pull/3622#event-7595497051) at 2022-10-15 01:49 PM PDT -DmitriiTsy,2022-10-16T14:55:34Z,- DmitriiTsy commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1279985714) at 2022-10-16 07:55 AM PDT -DmitriiTsy,2022-10-22T01:12:01Z,- DmitriiTsy assigned to issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1284829795) at 2022-10-21 06:12 PM PDT -DmitriiTsy,2022-10-22T01:18:27Z,- DmitriiTsy commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1287570838) at 2022-10-21 06:18 PM PDT -DmitriiTsy,2022-10-22T02:04:47Z,- DmitriiTsy commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1287580008) at 2022-10-21 07:04 PM PDT -DmitriiTsy,2022-10-23T16:35:29Z,- DmitriiTsy unassigned from issue: [1982](https://github.com/hackforla/website/issues/1982#event-7648618094) at 2022-10-23 09:35 AM PDT -DmitriiTsy,2022-10-25T23:43:42Z,- DmitriiTsy assigned to issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1289634879) at 2022-10-25 04:43 PM PDT -DmitriiTsy,2022-10-25T23:45:09Z,- DmitriiTsy commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1291255922) at 2022-10-25 04:45 PM PDT -DmitriiTsy,2022-10-26T01:29:56Z,- DmitriiTsy opened pull request: [3662](https://github.com/hackforla/website/pull/3662) at 2022-10-25 06:29 PM PDT -DmitriiTsy,2022-10-28T19:19:54Z,- DmitriiTsy commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1295366969) at 2022-10-28 12:19 PM PDT -DmitriiTsy,2022-10-28T20:17:09Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1295423241) at 2022-10-28 01:17 PM PDT -DmitriiTsy,2022-10-28T20:37:02Z,- DmitriiTsy commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1295442089) at 2022-10-28 01:37 PM PDT -DmitriiTsy,2022-10-29T17:29:53Z,- DmitriiTsy submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1161020404) at 2022-10-29 10:29 AM PDT -DmitriiTsy,2022-11-12T17:26:27Z,- DmitriiTsy commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1312533120) at 2022-11-12 09:26 AM PST -DmitriiTsy,2022-11-12T17:51:46Z,- DmitriiTsy commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1312537894) at 2022-11-12 09:51 AM PST -DmitriiTsy,2022-11-12T18:13:17Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1312542321) at 2022-11-12 10:13 AM PST -DmitriiTsy,2022-11-12T18:14:43Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1312542617) at 2022-11-12 10:14 AM PST -DmitriiTsy,2022-11-12T18:24:24Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1312544488) at 2022-11-12 10:24 AM PST -DmitriiTsy,2022-11-12T18:36:43Z,- DmitriiTsy submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1178152040) at 2022-11-12 10:36 AM PST -DmitriiTsy,2022-11-12T18:56:52Z,- DmitriiTsy commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312550707) at 2022-11-12 10:56 AM PST -DmitriiTsy,2022-11-12T19:47:55Z,- DmitriiTsy submitted pull request review: [3716](https://github.com/hackforla/website/pull/3716#pullrequestreview-1178157495) at 2022-11-12 11:47 AM PST -DmitriiTsy,2022-11-12T19:49:15Z,- DmitriiTsy commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1312559156) at 2022-11-12 11:49 AM PST -DmitriiTsy,2022-11-20T17:17:43Z,- DmitriiTsy commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1321191038) at 2022-11-20 09:17 AM PST -DmitriiTsy,2022-12-06T20:41:13Z,- DmitriiTsy pull request closed w/o merging: [3662](https://github.com/hackforla/website/pull/3662#event-7970724213) at 2022-12-06 12:41 PM PST -DmitriiTsy,2022-12-12T20:42:41Z,- DmitriiTsy unassigned from issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1347279715) at 2022-12-12 12:42 PM PST -dmuoio,5221,SKILLS ISSUE -dmuoio,2023-08-15T03:03:22Z,- dmuoio opened issue: [5221](https://github.com/hackforla/website/issues/5221) at 2023-08-14 08:03 PM PDT -dmuoio,2023-08-15T03:03:31Z,- dmuoio assigned to issue: [5221](https://github.com/hackforla/website/issues/5221) at 2023-08-14 08:03 PM PDT -dmuoio,2023-09-11T22:14:56Z,- dmuoio closed issue as completed: [5221](https://github.com/hackforla/website/issues/5221#event-10339453355) at 2023-09-11 03:14 PM PDT -doboianh,2021-11-04T12:16:22Z,- doboianh commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-960779523) at 2021-11-04 05:16 AM PDT -DomenicScozz,5218,SKILLS ISSUE -DomenicScozz,2023-08-15T03:01:24Z,- DomenicScozz opened issue: [5218](https://github.com/hackforla/website/issues/5218) at 2023-08-14 08:01 PM PDT -DomenicScozz,2023-08-15T03:01:29Z,- DomenicScozz assigned to issue: [5218](https://github.com/hackforla/website/issues/5218) at 2023-08-14 08:01 PM PDT -DomenicScozz,2023-08-20T16:38:56Z,- DomenicScozz assigned to issue: [5267](https://github.com/hackforla/website/issues/5267) at 2023-08-20 09:38 AM PDT -DomenicScozz,2023-08-21T00:15:55Z,- DomenicScozz opened pull request: [5276](https://github.com/hackforla/website/pull/5276) at 2023-08-20 05:15 PM PDT -DomenicScozz,2023-08-21T00:24:35Z,- DomenicScozz commented on issue: [5267](https://github.com/hackforla/website/issues/5267#issuecomment-1685443717) at 2023-08-20 05:24 PM PDT -DomenicScozz,2023-08-21T00:28:08Z,- DomenicScozz commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1685447717) at 2023-08-20 05:28 PM PDT -DomenicScozz,2023-08-27T02:29:51Z,- DomenicScozz pull request merged: [5276](https://github.com/hackforla/website/pull/5276#event-10201014279) at 2023-08-26 07:29 PM PDT -DomenicScozz,2023-09-17T18:17:27Z,- DomenicScozz assigned to issue: [5189](https://github.com/hackforla/website/issues/5189#issuecomment-1675598633) at 2023-09-17 11:17 AM PDT -DomenicScozz,2023-09-17T20:18:07Z,- DomenicScozz opened pull request: [5549](https://github.com/hackforla/website/pull/5549) at 2023-09-17 01:18 PM PDT -DomenicScozz,2023-09-17T20:23:58Z,- DomenicScozz commented on pull request: [5549](https://github.com/hackforla/website/pull/5549#issuecomment-1722560621) at 2023-09-17 01:23 PM PDT -DomenicScozz,2023-09-17T20:30:16Z,- DomenicScozz commented on issue: [5189](https://github.com/hackforla/website/issues/5189#issuecomment-1722561743) at 2023-09-17 01:30 PM PDT -DomenicScozz,2023-09-17T20:43:28Z,- DomenicScozz commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1722564524) at 2023-09-17 01:43 PM PDT -DomenicScozz,2023-09-17T23:36:32Z,- DomenicScozz closed issue as completed: [5218](https://github.com/hackforla/website/issues/5218#event-10392218537) at 2023-09-17 04:36 PM PDT -DomenicScozz,2023-09-22T04:38:33Z,- DomenicScozz pull request merged: [5549](https://github.com/hackforla/website/pull/5549#event-10442960599) at 2023-09-21 09:38 PM PDT -DonaldBrower,3188,SKILLS ISSUE -DonaldBrower,2022-06-01T03:14:42Z,- DonaldBrower opened issue: [3188](https://github.com/hackforla/website/issues/3188) at 2022-05-31 08:14 PM PDT -DonaldBrower,2022-06-02T03:47:21Z,- DonaldBrower assigned to issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1143072322) at 2022-06-01 08:47 PM PDT -DonaldBrower,2022-06-04T19:58:56Z,- DonaldBrower commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1146677190) at 2022-06-04 12:58 PM PDT -DonaldBrower,2022-06-04T20:29:37Z,- DonaldBrower assigned to issue: [2877](https://github.com/hackforla/website/issues/2877#issuecomment-1049094817) at 2022-06-04 01:29 PM PDT -DonaldBrower,2022-06-04T21:02:49Z,- DonaldBrower commented on issue: [2877](https://github.com/hackforla/website/issues/2877#issuecomment-1146685251) at 2022-06-04 02:02 PM PDT -DonaldBrower,2022-06-04T21:09:06Z,- DonaldBrower commented on issue: [2877](https://github.com/hackforla/website/issues/2877#issuecomment-1146685942) at 2022-06-04 02:09 PM PDT -DonaldBrower,2022-06-04T21:28:50Z,- DonaldBrower opened pull request: [3218](https://github.com/hackforla/website/pull/3218) at 2022-06-04 02:28 PM PDT -DonaldBrower,2022-06-05T00:08:46Z,- DonaldBrower pull request merged: [3218](https://github.com/hackforla/website/pull/3218#event-6742566848) at 2022-06-04 05:08 PM PDT -DonaldBrower,2022-06-07T05:29:35Z,- DonaldBrower assigned to issue: [3214](https://github.com/hackforla/website/issues/3214#issuecomment-1145857701) at 2022-06-06 10:29 PM PDT -DonaldBrower,2022-06-07T05:46:08Z,- DonaldBrower commented on issue: [3214](https://github.com/hackforla/website/issues/3214#issuecomment-1148222618) at 2022-06-06 10:46 PM PDT -DonaldBrower,2022-06-07T06:03:03Z,- DonaldBrower opened pull request: [3226](https://github.com/hackforla/website/pull/3226) at 2022-06-06 11:03 PM PDT -DonaldBrower,2022-06-11T01:22:53Z,- DonaldBrower pull request merged: [3226](https://github.com/hackforla/website/pull/3226#event-6789394653) at 2022-06-10 06:22 PM PDT -DonaldBrower,2022-06-11T03:12:45Z,- DonaldBrower commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1152843793) at 2022-06-10 08:12 PM PDT -DonaldBrower,2022-06-14T02:43:57Z,- DonaldBrower commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1154647750) at 2022-06-13 07:43 PM PDT -doppedheart,2023-10-08T13:24:30Z,- doppedheart commented on issue: [5675](https://github.com/hackforla/website/issues/5675#issuecomment-1752028095) at 2023-10-08 06:24 AM PDT -doppedheart,2023-10-08T13:28:00Z,- doppedheart commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1752028829) at 2023-10-08 06:28 AM PDT -DorianDeptuch,5092,SKILLS ISSUE -DorianDeptuch,2023-07-26T03:01:31Z,- DorianDeptuch opened issue: [5073](https://github.com/hackforla/website/issues/5073) at 2023-07-25 08:01 PM PDT -DorianDeptuch,2023-07-26T03:58:02Z,- DorianDeptuch opened issue: [5092](https://github.com/hackforla/website/issues/5092) at 2023-07-25 08:58 PM PDT -DorianDeptuch,2023-07-26T04:02:14Z,- DorianDeptuch assigned to issue: [5092](https://github.com/hackforla/website/issues/5092) at 2023-07-25 09:02 PM PDT -DorianDeptuch,2023-07-28T21:49:36Z,- DorianDeptuch assigned to issue: [4814](https://github.com/hackforla/website/issues/4814) at 2023-07-28 02:49 PM PDT -DorianDeptuch,2023-07-28T22:43:25Z,- DorianDeptuch opened pull request: [5109](https://github.com/hackforla/website/pull/5109) at 2023-07-28 03:43 PM PDT -DorianDeptuch,2023-07-28T23:28:56Z,- DorianDeptuch commented on issue: [5092](https://github.com/hackforla/website/issues/5092#issuecomment-1656435700) at 2023-07-28 04:28 PM PDT -DorianDeptuch,2023-07-29T01:54:24Z,- DorianDeptuch submitted pull request review: [5108](https://github.com/hackforla/website/pull/5108#pullrequestreview-1553156174) at 2023-07-28 06:54 PM PDT -DorianDeptuch,2023-07-29T02:00:15Z,- DorianDeptuch submitted pull request review: [5111](https://github.com/hackforla/website/pull/5111#pullrequestreview-1553157549) at 2023-07-28 07:00 PM PDT -DorianDeptuch,2023-07-30T18:50:23Z,- DorianDeptuch pull request merged: [5109](https://github.com/hackforla/website/pull/5109#event-9957231595) at 2023-07-30 11:50 AM PDT -DorianDeptuch,2023-07-30T21:46:37Z,- DorianDeptuch assigned to issue: [5101](https://github.com/hackforla/website/issues/5101) at 2023-07-30 02:46 PM PDT -DorianDeptuch,2023-07-30T21:48:26Z,- DorianDeptuch commented on issue: [5101](https://github.com/hackforla/website/issues/5101#issuecomment-1657273922) at 2023-07-30 02:48 PM PDT -DorianDeptuch,2023-07-30T21:54:11Z,- DorianDeptuch commented on issue: [5101](https://github.com/hackforla/website/issues/5101#issuecomment-1657274733) at 2023-07-30 02:54 PM PDT -DorianDeptuch,2023-08-01T04:31:38Z,- DorianDeptuch opened pull request: [5125](https://github.com/hackforla/website/pull/5125) at 2023-07-31 09:31 PM PDT -DorianDeptuch,2023-08-01T05:29:10Z,- DorianDeptuch commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1659591787) at 2023-07-31 10:29 PM PDT -DorianDeptuch,2023-08-01T05:38:03Z,- DorianDeptuch submitted pull request review: [5119](https://github.com/hackforla/website/pull/5119#pullrequestreview-1556196498) at 2023-07-31 10:38 PM PDT -DorianDeptuch,2023-08-01T05:47:09Z,- DorianDeptuch commented on pull request: [5121](https://github.com/hackforla/website/pull/5121#issuecomment-1659606392) at 2023-07-31 10:47 PM PDT -DorianDeptuch,2023-08-01T05:56:32Z,- DorianDeptuch submitted pull request review: [5121](https://github.com/hackforla/website/pull/5121#pullrequestreview-1556213180) at 2023-07-31 10:56 PM PDT -DorianDeptuch,2023-08-07T02:08:32Z,- DorianDeptuch commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1667082245) at 2023-08-06 07:08 PM PDT -DorianDeptuch,2023-08-07T05:05:21Z,- DorianDeptuch commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1667191940) at 2023-08-06 10:05 PM PDT -DorianDeptuch,2023-08-07T18:55:23Z,- DorianDeptuch opened pull request: [5157](https://github.com/hackforla/website/pull/5157) at 2023-08-07 11:55 AM PDT -DorianDeptuch,2023-08-07T18:58:21Z,- DorianDeptuch pull request merged: [5157](https://github.com/hackforla/website/pull/5157#event-10027765910) at 2023-08-07 11:58 AM PDT -DorianDeptuch,2023-08-07T19:02:10Z,- DorianDeptuch pull request closed w/o merging: [5125](https://github.com/hackforla/website/pull/5125#event-10027794067) at 2023-08-07 12:02 PM PDT -DorianDeptuch,2023-08-07T22:00:25Z,- DorianDeptuch assigned to issue: [4959](https://github.com/hackforla/website/issues/4959) at 2023-08-07 03:00 PM PDT -DorianDeptuch,2023-08-07T22:05:40Z,- DorianDeptuch commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1668637701) at 2023-08-07 03:05 PM PDT -DorianDeptuch,2023-08-10T07:37:44Z,- DorianDeptuch commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1672715342) at 2023-08-10 12:37 AM PDT -DorianDeptuch,2023-08-13T17:51:28Z,- DorianDeptuch commented on issue: [5092](https://github.com/hackforla/website/issues/5092#issuecomment-1676423534) at 2023-08-13 10:51 AM PDT -DorianDeptuch,2023-08-13T17:51:56Z,- DorianDeptuch closed issue as completed: [5092](https://github.com/hackforla/website/issues/5092#event-10080307984) at 2023-08-13 10:51 AM PDT -DorianDeptuch,2023-08-17T23:28:01Z,- DorianDeptuch commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1683108022) at 2023-08-17 04:28 PM PDT -DorianDeptuch,2023-08-17T23:52:28Z,- DorianDeptuch submitted pull request review: [5245](https://github.com/hackforla/website/pull/5245#pullrequestreview-1583650955) at 2023-08-17 04:52 PM PDT -DorianDeptuch,2023-08-17T23:55:41Z,- DorianDeptuch commented on pull request: [5241](https://github.com/hackforla/website/pull/5241#issuecomment-1683129903) at 2023-08-17 04:55 PM PDT -DorianDeptuch,2023-08-18T00:19:22Z,- DorianDeptuch submitted pull request review: [5241](https://github.com/hackforla/website/pull/5241#pullrequestreview-1583667193) at 2023-08-17 05:19 PM PDT -DorianDeptuch,2023-08-23T03:06:48Z,- DorianDeptuch commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1689206913) at 2023-08-22 08:06 PM PDT -DorianDeptuch,2023-08-23T06:47:16Z,- DorianDeptuch submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1590865613) at 2023-08-22 11:47 PM PDT -DorianDeptuch,2023-08-28T19:41:55Z,- DorianDeptuch commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1696276041) at 2023-08-28 12:41 PM PDT -DorianDeptuch,2023-08-29T05:53:15Z,- DorianDeptuch submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1599551332) at 2023-08-28 10:53 PM PDT -DorianDeptuch,2023-09-06T00:29:18Z,- DorianDeptuch commented on pull request: [5442](https://github.com/hackforla/website/pull/5442#issuecomment-1707477539) at 2023-09-05 05:29 PM PDT -DorianDeptuch,2023-09-06T00:52:52Z,- DorianDeptuch submitted pull request review: [5442](https://github.com/hackforla/website/pull/5442#pullrequestreview-1612151937) at 2023-09-05 05:52 PM PDT -DorianDeptuch,2023-10-01T16:55:20Z,- DorianDeptuch commented on pull request: [5634](https://github.com/hackforla/website/pull/5634#issuecomment-1742137914) at 2023-10-01 09:55 AM PDT -DorianDeptuch,2023-10-03T04:37:35Z,- DorianDeptuch submitted pull request review: [5634](https://github.com/hackforla/website/pull/5634#pullrequestreview-1654340826) at 2023-10-02 09:37 PM PDT -DorianDeptuch,2023-10-03T04:49:00Z,- DorianDeptuch assigned to issue: [5628](https://github.com/hackforla/website/issues/5628#issuecomment-1740160222) at 2023-10-02 09:49 PM PDT -DorianDeptuch,2023-10-03T04:49:40Z,- DorianDeptuch commented on issue: [5628](https://github.com/hackforla/website/issues/5628#issuecomment-1744205926) at 2023-10-02 09:49 PM PDT -DorianDeptuch,2023-10-05T04:11:49Z,- DorianDeptuch opened pull request: [5663](https://github.com/hackforla/website/pull/5663) at 2023-10-04 09:11 PM PDT -DorianDeptuch,2023-10-05T04:20:10Z,- DorianDeptuch commented on pull request: [5658](https://github.com/hackforla/website/pull/5658#issuecomment-1748009286) at 2023-10-04 09:20 PM PDT -DorianDeptuch,2023-10-05T04:24:12Z,- DorianDeptuch commented on pull request: [5659](https://github.com/hackforla/website/pull/5659#issuecomment-1748011627) at 2023-10-04 09:24 PM PDT -DorianDeptuch,2023-10-05T04:31:37Z,- DorianDeptuch submitted pull request review: [5659](https://github.com/hackforla/website/pull/5659#pullrequestreview-1658859193) at 2023-10-04 09:31 PM PDT -DorianDeptuch,2023-10-06T17:36:15Z,- DorianDeptuch submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1662518619) at 2023-10-06 10:36 AM PDT -DorianDeptuch,2023-10-08T09:41:17Z,- DorianDeptuch pull request merged: [5663](https://github.com/hackforla/website/pull/5663#event-10583687013) at 2023-10-08 02:41 AM PDT -DorianDeptuch,2023-10-18T02:24:37Z,- DorianDeptuch commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1767510716) at 2023-10-17 07:24 PM PDT -DorianDeptuch,2023-10-19T05:09:59Z,- DorianDeptuch submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1686683791) at 2023-10-18 10:09 PM PDT -DorianDeptuch,2023-10-23T20:27:38Z,- DorianDeptuch commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1775967597) at 2023-10-23 01:27 PM PDT -DorianDeptuch,2023-10-23T20:29:23Z,- DorianDeptuch submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1693470781) at 2023-10-23 01:29 PM PDT -Dprosser4,4711,SKILLS ISSUE -Dprosser4,2023-05-24T02:43:04Z,- Dprosser4 opened issue: [4711](https://github.com/hackforla/website/issues/4711) at 2023-05-23 07:43 PM PDT -Dprosser4,2023-05-24T02:59:14Z,- Dprosser4 assigned to issue: [4711](https://github.com/hackforla/website/issues/4711) at 2023-05-23 07:59 PM PDT -Dprosser4,2023-05-26T21:44:02Z,- Dprosser4 assigned to issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547146250) at 2023-05-26 02:44 PM PDT -Dprosser4,2023-05-26T21:46:44Z,- Dprosser4 commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1564993656) at 2023-05-26 02:46 PM PDT -Dprosser4,2023-05-26T22:28:13Z,- Dprosser4 opened pull request: [4747](https://github.com/hackforla/website/pull/4747) at 2023-05-26 03:28 PM PDT -Dprosser4,2023-05-27T15:23:08Z,- Dprosser4 commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565496547) at 2023-05-27 08:23 AM PDT -Dprosser4,2023-05-30T01:17:36Z,- Dprosser4 pull request merged: [4747](https://github.com/hackforla/website/pull/4747#event-9372744344) at 2023-05-29 06:17 PM PDT -Dprosser4,2023-05-30T18:39:12Z,- Dprosser4 assigned to issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1565219916) at 2023-05-30 11:39 AM PDT -Dprosser4,2023-05-30T18:41:18Z,- Dprosser4 commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1568900832) at 2023-05-30 11:41 AM PDT -Dprosser4,2023-05-30T19:07:07Z,- Dprosser4 opened pull request: [4757](https://github.com/hackforla/website/pull/4757) at 2023-05-30 12:07 PM PDT -Dprosser4,2023-06-04T02:29:08Z,- Dprosser4 pull request merged: [4757](https://github.com/hackforla/website/pull/4757#event-9423457217) at 2023-06-03 07:29 PM PDT -Dprosser4,2023-06-06T19:12:57Z,- Dprosser4 assigned to issue: [4758](https://github.com/hackforla/website/issues/4758) at 2023-06-06 12:12 PM PDT -Dprosser4,2023-06-06T19:14:53Z,- Dprosser4 commented on issue: [4758](https://github.com/hackforla/website/issues/4758#issuecomment-1579314678) at 2023-06-06 12:14 PM PDT -Dprosser4,2023-06-06T19:49:24Z,- Dprosser4 opened pull request: [4789](https://github.com/hackforla/website/pull/4789) at 2023-06-06 12:49 PM PDT -Dprosser4,2023-06-14T06:35:11Z,- Dprosser4 pull request merged: [4789](https://github.com/hackforla/website/pull/4789#event-9524167668) at 2023-06-13 11:35 PM PDT -DrAcula27,6598,SKILLS ISSUE -DrAcula27,2024-04-09T02:51:17Z,- DrAcula27 opened issue: [6598](https://github.com/hackforla/website/issues/6598) at 2024-04-08 07:51 PM PDT -DrAcula27,2024-04-09T02:51:22Z,- DrAcula27 assigned to issue: [6598](https://github.com/hackforla/website/issues/6598) at 2024-04-08 07:51 PM PDT -DrAcula27,2024-04-16T02:32:08Z,- DrAcula27 assigned to issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-04-15 07:32 PM PDT -DrAcula27,2024-04-16T02:32:13Z,- DrAcula27 unassigned from issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-04-15 07:32 PM PDT -DrAcula27,2024-04-16T02:32:17Z,- DrAcula27 assigned to issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-04-15 07:32 PM PDT -DrAcula27,2024-04-16T02:35:28Z,- DrAcula27 unassigned from issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058123867) at 2024-04-15 07:35 PM PDT -DrAcula27,2024-04-16T02:35:37Z,- DrAcula27 assigned to issue: [6181](https://github.com/hackforla/website/issues/6181) at 2024-04-15 07:35 PM PDT -DrAcula27,2024-04-16T02:36:05Z,- DrAcula27 unassigned from issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2058126241) at 2024-04-15 07:36 PM PDT -DrAcula27,2024-04-16T02:42:50Z,- DrAcula27 assigned to issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058123867) at 2024-04-15 07:42 PM PDT -DrAcula27,2024-04-16T02:51:25Z,- DrAcula27 commented on issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058137459) at 2024-04-15 07:51 PM PDT -DrAcula27,2024-04-16T02:54:46Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2058139956) at 2024-04-15 07:54 PM PDT -DrAcula27,2024-04-16T02:59:01Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2058143009) at 2024-04-15 07:59 PM PDT -DrAcula27,2024-04-16T04:17:32Z,- DrAcula27 opened pull request: [6656](https://github.com/hackforla/website/pull/6656) at 2024-04-15 09:17 PM PDT -DrAcula27,2024-04-18T00:35:31Z,- DrAcula27 pull request closed w/o merging: [6656](https://github.com/hackforla/website/pull/6656#event-12516219356) at 2024-04-17 05:35 PM PDT -DrAcula27,2024-04-18T19:31:12Z,- DrAcula27 opened pull request: [6681](https://github.com/hackforla/website/pull/6681) at 2024-04-18 12:31 PM PDT -DrAcula27,2024-04-18T21:14:43Z,- DrAcula27 pull request merged: [6681](https://github.com/hackforla/website/pull/6681#event-12529163452) at 2024-04-18 02:14 PM PDT -DrAcula27,2024-04-19T03:24:33Z,- DrAcula27 closed issue as completed: [6598](https://github.com/hackforla/website/issues/6598#event-12531987438) at 2024-04-18 08:24 PM PDT -DrAcula27,2024-04-23T00:12:00Z,- DrAcula27 opened issue: [6710](https://github.com/hackforla/website/issues/6710) at 2024-04-22 05:12 PM PDT -DrAcula27,2024-04-29T23:35:10Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2083864307) at 2024-04-29 04:35 PM PDT -DrAcula27,2024-05-01T02:17:41Z,- DrAcula27 commented on pull request: [6792](https://github.com/hackforla/website/pull/6792#issuecomment-2087877305) at 2024-04-30 07:17 PM PDT -DrAcula27,2024-05-01T02:39:56Z,- DrAcula27 assigned to issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2083864307) at 2024-04-30 07:39 PM PDT -DrAcula27,2024-05-01T02:41:13Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2087893211) at 2024-04-30 07:41 PM PDT -DrAcula27,2024-05-02T03:20:52Z,- DrAcula27 submitted pull request review: [6792](https://github.com/hackforla/website/pull/6792#pullrequestreview-2034747526) at 2024-05-01 08:20 PM PDT -DrAcula27,2024-05-03T06:04:17Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2092361544) at 2024-05-02 11:04 PM PDT -DrAcula27,2024-05-07T18:25:17Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2099049384) at 2024-05-07 11:25 AM PDT -DrAcula27,2024-05-14T21:03:27Z,- DrAcula27 assigned to issue: [6724](https://github.com/hackforla/website/issues/6724) at 2024-05-14 02:03 PM PDT -DrAcula27,2024-05-14T21:05:11Z,- DrAcula27 commented on issue: [6724](https://github.com/hackforla/website/issues/6724#issuecomment-2111140756) at 2024-05-14 02:05 PM PDT -DrAcula27,2024-05-14T21:45:47Z,- DrAcula27 opened pull request: [6855](https://github.com/hackforla/website/pull/6855) at 2024-05-14 02:45 PM PDT -DrAcula27,2024-05-14T21:48:36Z,- DrAcula27 commented on issue: [6724](https://github.com/hackforla/website/issues/6724#issuecomment-2111193910) at 2024-05-14 02:48 PM PDT -DrAcula27,2024-05-15T02:29:53Z,- DrAcula27 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2111466762) at 2024-05-14 07:29 PM PDT -DrAcula27,2024-05-15T23:12:30Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2113629723) at 2024-05-15 04:12 PM PDT -DrAcula27,2024-05-15T23:40:54Z,- DrAcula27 submitted pull request review: [6852](https://github.com/hackforla/website/pull/6852#pullrequestreview-2059229265) at 2024-05-15 04:40 PM PDT -DrAcula27,2024-05-16T00:09:58Z,- DrAcula27 assigned to issue: [6573](https://github.com/hackforla/website/issues/6573) at 2024-05-15 05:09 PM PDT -DrAcula27,2024-05-16T00:34:43Z,- DrAcula27 commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2113698715) at 2024-05-15 05:34 PM PDT -DrAcula27,2024-05-16T17:58:39Z,- DrAcula27 pull request merged: [6855](https://github.com/hackforla/website/pull/6855#event-12837823697) at 2024-05-16 10:58 AM PDT -DrAcula27,2024-05-22T03:58:11Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2123821033) at 2024-05-21 08:58 PM PDT -DrAcula27,2024-05-24T22:23:55Z,- DrAcula27 commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2130439437) at 2024-05-24 03:23 PM PDT -DrAcula27,2024-05-30T19:06:23Z,- DrAcula27 commented on pull request: [6914](https://github.com/hackforla/website/pull/6914#issuecomment-2140703107) at 2024-05-30 12:06 PM PDT -DrAcula27,2024-05-30T19:10:10Z,- DrAcula27 commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2140709623) at 2024-05-30 12:10 PM PDT -DrAcula27,2024-06-06T20:15:43Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2153335697) at 2024-06-06 01:15 PM PDT -DrAcula27,2024-06-06T20:37:40Z,- DrAcula27 assigned to issue: [6862](https://github.com/hackforla/website/issues/6862) at 2024-06-06 01:37 PM PDT -DrAcula27,2024-06-06T20:45:01Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2153378363) at 2024-06-06 01:45 PM PDT -DrAcula27,2024-06-15T03:46:39Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2169089257) at 2024-06-14 08:46 PM PDT -DrAcula27,2024-06-15T04:23:32Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2169118991) at 2024-06-14 09:23 PM PDT -DrAcula27,2024-06-20T19:50:07Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2181415285) at 2024-06-20 12:50 PM PDT -DrAcula27,2024-06-21T02:55:30Z,- DrAcula27 opened issue: [7042](https://github.com/hackforla/website/issues/7042) at 2024-06-20 07:55 PM PDT -DrAcula27,2024-06-21T02:55:31Z,- DrAcula27 assigned to issue: [7042](https://github.com/hackforla/website/issues/7042) at 2024-06-20 07:55 PM PDT -DrAcula27,2024-06-23T23:28:38Z,- DrAcula27 unassigned from issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2173919677) at 2024-06-23 04:28 PM PDT -DrAcula27,2024-06-23T23:30:59Z,- DrAcula27 unassigned from issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2181899671) at 2024-06-23 04:30 PM PDT -DrAcula27,2024-06-25T23:05:31Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2190156154) at 2024-06-25 04:05 PM PDT -DrAcula27,2024-06-28T03:02:00Z,- DrAcula27 opened pull request: [7077](https://github.com/hackforla/website/pull/7077) at 2024-06-27 08:02 PM PDT -DrAcula27,2024-07-05T17:37:22Z,- DrAcula27 pull request merged: [7077](https://github.com/hackforla/website/pull/7077#event-13408293773) at 2024-07-05 10:37 AM PDT -DrAcula27,2024-08-23T02:15:35Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2306058678) at 2024-08-22 07:15 PM PDT -DrAcula27,2024-08-23T02:21:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2306063274) at 2024-08-22 07:21 PM PDT -DrAcula27,2024-08-23T02:23:19Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2306064900) at 2024-08-22 07:23 PM PDT -DrAcula27,2024-08-23T20:09:58Z,- DrAcula27 assigned to issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2196118205) at 2024-08-23 01:09 PM PDT -DrAcula27,2024-08-23T20:14:56Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2307750006) at 2024-08-23 01:14 PM PDT -DrAcula27,2024-09-03T16:01:10Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2326891046) at 2024-09-03 09:01 AM PDT -DrAcula27,2024-09-04T00:00:16Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2327648672) at 2024-09-03 05:00 PM PDT -DrAcula27,2024-09-04T02:08:37Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2327768189) at 2024-09-03 07:08 PM PDT -DrAcula27,2024-09-08T19:00:33Z,- DrAcula27 assigned to issue: [6710](https://github.com/hackforla/website/issues/6710#event-13510534456) at 2024-09-08 12:00 PM PDT -DrAcula27,2024-09-08T22:59:10Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336852900) at 2024-09-08 03:59 PM PDT -DrAcula27,2024-09-08T23:11:18Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336856538) at 2024-09-08 04:11 PM PDT -DrAcula27,2024-09-08T23:12:35Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336856865) at 2024-09-08 04:12 PM PDT -DrAcula27,2024-09-08T23:20:22Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336859212) at 2024-09-08 04:20 PM PDT -DrAcula27,2024-09-08T23:33:32Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336863203) at 2024-09-08 04:33 PM PDT -DrAcula27,2024-09-08T23:37:38Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336864607) at 2024-09-08 04:37 PM PDT -DrAcula27,2024-09-08T23:40:07Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336865827) at 2024-09-08 04:40 PM PDT -DrAcula27,2024-09-10T00:19:16Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2339373317) at 2024-09-09 05:19 PM PDT -DrAcula27,2024-09-11T01:02:58Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2342416743) at 2024-09-10 06:02 PM PDT -DrAcula27,2024-09-11T02:17:54Z,- DrAcula27 commented on pull request: [7436](https://github.com/hackforla/website/pull/7436#issuecomment-2342480955) at 2024-09-10 07:17 PM PDT -DrAcula27,2024-09-14T02:36:07Z,- DrAcula27 submitted pull request review: [7436](https://github.com/hackforla/website/pull/7436#pullrequestreview-2304356195) at 2024-09-13 07:36 PM PDT -DrAcula27,2024-09-14T04:22:18Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2350826996) at 2024-09-13 09:22 PM PDT -DrAcula27,2024-09-16T23:26:38Z,- DrAcula27 commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2354203023) at 2024-09-16 04:26 PM PDT -DrAcula27,2024-09-18T20:14:02Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2359323585) at 2024-09-18 01:14 PM PDT -DrAcula27,2024-09-18T23:20:30Z,- DrAcula27 opened pull request: [7493](https://github.com/hackforla/website/pull/7493) at 2024-09-18 04:20 PM PDT -DrAcula27,2024-09-21T01:22:44Z,- DrAcula27 commented on pull request: [7493](https://github.com/hackforla/website/pull/7493#issuecomment-2364800731) at 2024-09-20 06:22 PM PDT -DrAcula27,2024-09-21T01:28:25Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2364802503) at 2024-09-20 06:28 PM PDT -DrAcula27,2024-09-21T02:15:15Z,- DrAcula27 pull request merged: [7493](https://github.com/hackforla/website/pull/7493#event-14347597552) at 2024-09-20 07:15 PM PDT -DrAcula27,2024-09-23T23:00:52Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369715085) at 2024-09-23 04:00 PM PDT -DrAcula27,2024-09-23T23:07:45Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369729674) at 2024-09-23 04:07 PM PDT -DrAcula27,2024-09-23T23:09:56Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369734509) at 2024-09-23 04:09 PM PDT -DrAcula27,2024-09-23T23:11:50Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369738797) at 2024-09-23 04:11 PM PDT -DrAcula27,2024-10-02T01:36:39Z,- DrAcula27 submitted pull request review: [7557](https://github.com/hackforla/website/pull/7557#pullrequestreview-2341770042) at 2024-10-01 06:36 PM PDT -DrAcula27,2024-10-02T01:38:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2387468707) at 2024-10-01 06:38 PM PDT -DrAcula27,2024-10-08T01:39:49Z,- DrAcula27 submitted pull request review: [7568](https://github.com/hackforla/website/pull/7568#pullrequestreview-2353205515) at 2024-10-07 06:39 PM PDT -DrAcula27,2024-10-08T01:40:49Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2398444988) at 2024-10-07 06:40 PM PDT -DrAcula27,2024-10-15T02:36:50Z,- DrAcula27 submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2367988645) at 2024-10-14 07:36 PM PDT -DrAcula27,2024-10-15T02:39:52Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2412693102) at 2024-10-14 07:39 PM PDT -DrAcula27,2024-10-18T02:15:29Z,- DrAcula27 assigned to issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2167157849) at 2024-10-17 07:15 PM PDT -DrAcula27,2024-10-18T02:18:43Z,- DrAcula27 commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2421119881) at 2024-10-17 07:18 PM PDT -DrAcula27,2024-10-19T03:08:59Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2423530617) at 2024-10-18 08:08 PM PDT -DrAcula27,2024-10-19T04:59:23Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2423571556) at 2024-10-18 09:59 PM PDT -DrAcula27,2024-10-27T23:43:35Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2440223129) at 2024-10-27 04:43 PM PDT -DrAcula27,2024-10-27T23:46:35Z,- DrAcula27 assigned to issue: [7490](https://github.com/hackforla/website/issues/7490) at 2024-10-27 04:46 PM PDT -DrAcula27,2024-10-27T23:46:50Z,- DrAcula27 unassigned from issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224295) at 2024-10-27 04:46 PM PDT -DrAcula27,2024-10-27T23:47:42Z,- DrAcula27 assigned to issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224295) at 2024-10-27 04:47 PM PDT -DrAcula27,2024-10-27T23:47:56Z,- DrAcula27 unassigned from issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224668) at 2024-10-27 04:47 PM PDT -DrAcula27,2024-10-27T23:48:18Z,- DrAcula27 assigned to issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224668) at 2024-10-27 04:48 PM PDT -DrAcula27,2024-10-27T23:48:32Z,- DrAcula27 unassigned from issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224870) at 2024-10-27 04:48 PM PDT -DrAcula27,2024-10-28T00:03:10Z,- DrAcula27 opened issue: [7641](https://github.com/hackforla/website/issues/7641) at 2024-10-27 05:03 PM PDT -DrAcula27,2024-10-28T00:05:07Z,- DrAcula27 commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2440231582) at 2024-10-27 05:05 PM PDT -DrAcula27,2024-10-28T00:11:47Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2440235676) at 2024-10-27 05:11 PM PDT -DrAcula27,2024-10-28T17:38:14Z,- DrAcula27 assigned to issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442223140) at 2024-10-28 10:38 AM PDT -DrAcula27,2024-10-28T20:44:46Z,- DrAcula27 commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442592500) at 2024-10-28 01:44 PM PDT -DrAcula27,2024-10-28T22:49:10Z,- DrAcula27 unassigned from issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442592500) at 2024-10-28 03:49 PM PDT -DrAcula27,2024-10-30T02:20:35Z,- DrAcula27 commented on pull request: [7665](https://github.com/hackforla/website/pull/7665#issuecomment-2445682873) at 2024-10-29 07:20 PM PDT -DrAcula27,2024-10-30T02:56:02Z,- DrAcula27 commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2445722043) at 2024-10-29 07:56 PM PDT -DrAcula27,2024-10-30T03:17:47Z,- DrAcula27 submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2403478471) at 2024-10-29 08:17 PM PDT -DrAcula27,2024-11-05T01:30:22Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2456038492) at 2024-11-04 05:30 PM PST -DrAcula27,2024-11-05T01:33:43Z,- DrAcula27 assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2406166623) at 2024-11-04 05:33 PM PST -DrAcula27,2024-11-05T01:33:57Z,- DrAcula27 unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2456042065) at 2024-11-04 05:33 PM PST -DrAcula27,2024-11-16T20:34:06Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2480802136) at 2024-11-16 12:34 PM PST -DrAcula27,2024-11-21T02:57:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2489964132) at 2024-11-20 06:57 PM PST -DrAcula27,2024-11-21T03:04:51Z,- DrAcula27 assigned to issue: [7661](https://github.com/hackforla/website/issues/7661) at 2024-11-20 07:04 PM PST -DrAcula27,2024-11-21T03:07:10Z,- DrAcula27 commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2489972891) at 2024-11-20 07:07 PM PST -DrAcula27,2024-11-21T22:24:18Z,- DrAcula27 opened issue: [7750](https://github.com/hackforla/website/issues/7750) at 2024-11-21 02:24 PM PST -DrAcula27,2024-11-21T22:26:15Z,- DrAcula27 commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2492471668) at 2024-11-21 02:26 PM PST -DrAcula27,2024-11-21T22:35:36Z,- DrAcula27 opened issue: [7751](https://github.com/hackforla/website/issues/7751) at 2024-11-21 02:35 PM PST -DrAcula27,2024-11-21T22:37:02Z,- DrAcula27 commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2492493162) at 2024-11-21 02:37 PM PST -DrAcula27,2024-11-21T22:42:03Z,- DrAcula27 opened issue: [7752](https://github.com/hackforla/website/issues/7752) at 2024-11-21 02:42 PM PST -DrAcula27,2024-11-21T22:45:43Z,- DrAcula27 opened issue: [7753](https://github.com/hackforla/website/issues/7753) at 2024-11-21 02:45 PM PST -DrAcula27,2024-11-21T22:48:44Z,- DrAcula27 opened issue: [7754](https://github.com/hackforla/website/issues/7754) at 2024-11-21 02:48 PM PST -DrAcula27,2024-11-21T22:51:53Z,- DrAcula27 opened issue: [7755](https://github.com/hackforla/website/issues/7755) at 2024-11-21 02:51 PM PST -DrAcula27,2024-12-02T21:49:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2512997173) at 2024-12-02 01:49 PM PST -DrAcula27,2024-12-10T01:40:40Z,- DrAcula27 submitted pull request review: [7798](https://github.com/hackforla/website/pull/7798#pullrequestreview-2490579014) at 2024-12-09 05:40 PM PST -DrAcula27,2024-12-10T01:41:20Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2530007724) at 2024-12-09 05:41 PM PST -DrAcula27,2024-12-12T23:37:01Z,- DrAcula27 submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2500976922) at 2024-12-12 03:37 PM PST -DrAcula27,2024-12-12T23:37:51Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2540221309) at 2024-12-12 03:37 PM PST -DrAcula27,2024-12-16T18:54:46Z,- DrAcula27 submitted pull request review: [7803](https://github.com/hackforla/website/pull/7803#pullrequestreview-2507017527) at 2024-12-16 10:54 AM PST -DrAcula27,2024-12-16T18:56:28Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2546399624) at 2024-12-16 10:56 AM PST -DrAcula27,2025-01-03T19:38:34Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2569724566) at 2025-01-03 11:38 AM PST -DrAcula27,2025-01-03T19:43:47Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2569730066) at 2025-01-03 11:43 AM PST -DrAcula27,2025-01-06T23:02:28Z,- DrAcula27 submitted pull request review: [7816](https://github.com/hackforla/website/pull/7816#pullrequestreview-2533115165) at 2025-01-06 03:02 PM PST -DrAcula27,2025-01-06T23:03:39Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2574080061) at 2025-01-06 03:03 PM PST -DrAcula27,2025-01-13T22:03:34Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2588316943) at 2025-01-13 02:03 PM PST -DrAcula27,2025-01-21T20:34:31Z,- DrAcula27 submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2565639821) at 2025-01-21 12:34 PM PST -DrAcula27,2025-01-21T21:00:28Z,- DrAcula27 submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2565682898) at 2025-01-21 01:00 PM PST -DrAcula27,2025-01-21T21:02:19Z,- DrAcula27 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518894122) at 2025-01-21 01:02 PM PST -DrAcula27,2025-01-21T21:02:37Z,- DrAcula27 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 01:02 PM PST -DrAcula27,2025-01-21T23:48:34Z,- DrAcula27 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 03:48 PM PST -DrAcula27,2025-01-21T23:48:48Z,- DrAcula27 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 03:48 PM PST -DrAcula27,2025-01-21T23:51:58Z,- DrAcula27 assigned to issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2521235751) at 2025-01-21 03:51 PM PST -DrAcula27,2025-01-22T18:53:31Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2608022617) at 2025-01-22 10:53 AM PST -DrAcula27,2025-01-24T03:15:45Z,- DrAcula27 submitted pull request review: [7846](https://github.com/hackforla/website/pull/7846#pullrequestreview-2571555424) at 2025-01-23 07:15 PM PST -DrAcula27,2025-01-24T03:22:50Z,- DrAcula27 submitted pull request review: [7846](https://github.com/hackforla/website/pull/7846#pullrequestreview-2571560607) at 2025-01-23 07:22 PM PST -DrAcula27,2025-01-29T03:36:05Z,- DrAcula27 submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2579932663) at 2025-01-28 07:36 PM PST -DrAcula27,2025-01-29T03:38:29Z,- DrAcula27 submitted pull request review: [7856](https://github.com/hackforla/website/pull/7856#pullrequestreview-2579933958) at 2025-01-28 07:38 PM PST -DrAcula27,2025-02-01T02:43:18Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2628718438) at 2025-01-31 06:43 PM PST -DrAcula27,2025-02-01T02:59:08Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2628726162) at 2025-01-31 06:59 PM PST -DrAcula27,2025-02-01T03:05:54Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2628730100) at 2025-01-31 07:05 PM PST -DrAcula27,2025-02-01T03:39:39Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2628744521) at 2025-01-31 07:39 PM PST -DrAcula27,2025-02-06T16:41:29Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2640377681) at 2025-02-06 08:41 AM PST -DrAcula27,2025-02-06T17:11:43Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2640501913) at 2025-02-06 09:11 AM PST -DrAcula27,2025-02-06T17:26:26Z,- DrAcula27 opened pull request: [7897](https://github.com/hackforla/website/pull/7897) at 2025-02-06 09:26 AM PST -DrAcula27,2025-02-10T23:05:19Z,- DrAcula27 submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2607374895) at 2025-02-10 03:05 PM PST -DrAcula27,2025-02-11T00:48:47Z,- DrAcula27 commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2649577841) at 2025-02-10 04:48 PM PST -DrAcula27,2025-02-12T05:45:11Z,- DrAcula27 pull request merged: [7897](https://github.com/hackforla/website/pull/7897#event-16275286229) at 2025-02-11 09:45 PM PST -DrAcula27,2025-02-12T23:28:21Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2655067603) at 2025-02-12 03:28 PM PST -DrAcula27,2025-02-13T01:43:52Z,- DrAcula27 submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2613621958) at 2025-02-12 05:43 PM PST -DrAcula27,2025-02-15T03:18:45Z,- DrAcula27 submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2619276354) at 2025-02-14 07:18 PM PST -DrAcula27,2025-02-17T22:52:38Z,- DrAcula27 submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2622057175) at 2025-02-17 02:52 PM PST -DrAcula27,2025-02-17T22:54:21Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2664192929) at 2025-02-17 02:54 PM PST -DrAcula27,2025-02-17T23:09:16Z,- DrAcula27 submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2622069888) at 2025-02-17 03:09 PM PST -DrAcula27,2025-02-17T23:37:01Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2664232004) at 2025-02-17 03:37 PM PST -DrAcula27,2025-02-19T18:28:40Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2669446832) at 2025-02-19 10:28 AM PST -DrAcula27,2025-02-24T19:14:07Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2679418066) at 2025-02-24 11:14 AM PST -DrAcula27,2025-02-24T20:05:05Z,- DrAcula27 submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2638323701) at 2025-02-24 12:05 PM PST -DrAcula27,2025-02-25T19:18:04Z,- DrAcula27 submitted pull request review: [7945](https://github.com/hackforla/website/pull/7945#pullrequestreview-2642173255) at 2025-02-25 11:18 AM PST -DrAcula27,2025-03-03T21:39:49Z,- DrAcula27 submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2655410965) at 2025-03-03 01:39 PM PST -DrAcula27,2025-03-10T21:38:15Z,- DrAcula27 submitted pull request review: [7986](https://github.com/hackforla/website/pull/7986#pullrequestreview-2672265526) at 2025-03-10 02:38 PM PDT -DrAcula27,2025-03-31T22:37:39Z,- DrAcula27 submitted pull request review: [8022](https://github.com/hackforla/website/pull/8022#pullrequestreview-2730675668) at 2025-03-31 03:37 PM PDT -DrAcula27,2025-04-07T22:28:47Z,- DrAcula27 submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2748252685) at 2025-04-07 03:28 PM PDT -DrAcula27,2025-04-12T00:25:28Z,- DrAcula27 submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2761847812) at 2025-04-11 05:25 PM PDT -DrAcula27,2025-04-21T20:46:21Z,- DrAcula27 submitted pull request review: [8072](https://github.com/hackforla/website/pull/8072#pullrequestreview-2782215113) at 2025-04-21 01:46 PM PDT -DrAcula27,2025-05-01T20:45:05Z,- DrAcula27 commented on issue: [8105](https://github.com/hackforla/website/issues/8105#issuecomment-2845734403) at 2025-05-01 01:45 PM PDT -drakenguyen4000,4174,SKILLS ISSUE -drakenguyen4000,2023-03-14T03:43:37Z,- drakenguyen4000 opened issue: [4174](https://github.com/hackforla/website/issues/4174) at 2023-03-13 08:43 PM PDT -drakenguyen4000,2023-03-14T03:45:26Z,- drakenguyen4000 assigned to issue: [4174](https://github.com/hackforla/website/issues/4174) at 2023-03-13 08:45 PM PDT -drakenguyen4000,2023-03-17T03:57:26Z,- drakenguyen4000 assigned to issue: [3877](https://github.com/hackforla/website/issues/3877) at 2023-03-16 08:57 PM PDT -drakenguyen4000,2023-03-17T04:04:42Z,- drakenguyen4000 unassigned from issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1473089388) at 2023-03-16 09:04 PM PDT -drakenguyen4000,2023-03-17T04:06:31Z,- drakenguyen4000 assigned to issue: [3904](https://github.com/hackforla/website/issues/3904) at 2023-03-16 09:06 PM PDT -drakenguyen4000,2023-03-18T03:52:53Z,- drakenguyen4000 commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1474673313) at 2023-03-17 08:52 PM PDT -drakenguyen4000,2023-03-18T04:06:11Z,- drakenguyen4000 commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1474679450) at 2023-03-17 09:06 PM PDT -drakenguyen4000,2023-03-18T04:10:52Z,- drakenguyen4000 commented on issue: [3904](https://github.com/hackforla/website/issues/3904#issuecomment-1474684638) at 2023-03-17 09:10 PM PDT -drakenguyen4000,2023-03-19T22:22:34Z,- drakenguyen4000 opened pull request: [4214](https://github.com/hackforla/website/pull/4214) at 2023-03-19 03:22 PM PDT -drakenguyen4000,2023-03-21T03:09:56Z,- drakenguyen4000 commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1477222751) at 2023-03-20 08:09 PM PDT -drakenguyen4000,2023-03-22T18:00:22Z,- drakenguyen4000 pull request merged: [4214](https://github.com/hackforla/website/pull/4214#event-8819797967) at 2023-03-22 11:00 AM PDT -drakenguyen4000,2023-03-24T03:58:24Z,- drakenguyen4000 assigned to issue: [4268](https://github.com/hackforla/website/issues/4268) at 2023-03-23 08:58 PM PDT -drakenguyen4000,2023-03-26T04:54:04Z,- drakenguyen4000 commented on issue: [4268](https://github.com/hackforla/website/issues/4268#issuecomment-1483995312) at 2023-03-25 09:54 PM PDT -drakenguyen4000,2023-03-26T04:55:27Z,- drakenguyen4000 opened pull request: [4290](https://github.com/hackforla/website/pull/4290) at 2023-03-25 09:55 PM PDT -drakenguyen4000,2023-03-27T02:54:53Z,- drakenguyen4000 commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1484405732) at 2023-03-26 07:54 PM PDT -drakenguyen4000,2023-03-27T04:42:17Z,- drakenguyen4000 submitted pull request review: [4295](https://github.com/hackforla/website/pull/4295#pullrequestreview-1358315229) at 2023-03-26 09:42 PM PDT -drakenguyen4000,2023-03-27T04:51:13Z,- drakenguyen4000 commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1484484753) at 2023-03-26 09:51 PM PDT -drakenguyen4000,2023-03-28T03:57:51Z,- drakenguyen4000 commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1486167198) at 2023-03-27 08:57 PM PDT -drakenguyen4000,2023-03-28T22:51:52Z,- drakenguyen4000 pull request merged: [4290](https://github.com/hackforla/website/pull/4290#event-8870290067) at 2023-03-28 03:51 PM PDT -drakenguyen4000,2023-03-29T02:21:12Z,- drakenguyen4000 assigned to issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1484277046) at 2023-03-28 07:21 PM PDT -drakenguyen4000,2023-03-29T04:15:57Z,- drakenguyen4000 commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1487922495) at 2023-03-28 09:15 PM PDT -drakenguyen4000,2023-03-31T05:05:08Z,- drakenguyen4000 opened pull request: [4353](https://github.com/hackforla/website/pull/4353) at 2023-03-30 10:05 PM PDT -drakenguyen4000,2023-04-03T02:46:13Z,- drakenguyen4000 pull request merged: [4353](https://github.com/hackforla/website/pull/4353#event-8907891785) at 2023-04-02 07:46 PM PDT -drakenguyen4000,2023-04-03T05:03:01Z,- drakenguyen4000 commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1493664892) at 2023-04-02 10:03 PM PDT -drakenguyen4000,2023-04-03T05:08:29Z,- drakenguyen4000 commented on pull request: [4384](https://github.com/hackforla/website/pull/4384#issuecomment-1493670671) at 2023-04-02 10:08 PM PDT -drakenguyen4000,2023-04-04T03:07:24Z,- drakenguyen4000 submitted pull request review: [4384](https://github.com/hackforla/website/pull/4384#pullrequestreview-1370117555) at 2023-04-03 08:07 PM PDT -drakenguyen4000,2023-04-04T03:09:22Z,- drakenguyen4000 commented on pull request: [4384](https://github.com/hackforla/website/pull/4384#issuecomment-1495281714) at 2023-04-03 08:09 PM PDT -drakenguyen4000,2023-04-04T03:39:37Z,- drakenguyen4000 assigned to issue: [4351](https://github.com/hackforla/website/issues/4351) at 2023-04-03 08:39 PM PDT -drakenguyen4000,2023-04-04T03:40:30Z,- drakenguyen4000 commented on issue: [4351](https://github.com/hackforla/website/issues/4351#issuecomment-1495300299) at 2023-04-03 08:40 PM PDT -drakenguyen4000,2023-04-04T04:18:11Z,- drakenguyen4000 submitted pull request review: [4374](https://github.com/hackforla/website/pull/4374#pullrequestreview-1370167366) at 2023-04-03 09:18 PM PDT -drakenguyen4000,2023-04-04T04:23:49Z,- drakenguyen4000 commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1495326944) at 2023-04-03 09:23 PM PDT -drakenguyen4000,2023-04-08T04:16:17Z,- drakenguyen4000 commented on issue: [4351](https://github.com/hackforla/website/issues/4351#issuecomment-1500785418) at 2023-04-07 09:16 PM PDT -drakenguyen4000,2023-04-09T03:55:13Z,- drakenguyen4000 opened pull request: [4444](https://github.com/hackforla/website/pull/4444) at 2023-04-08 08:55 PM PDT -drakenguyen4000,2023-04-10T04:24:01Z,- drakenguyen4000 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1501375828) at 2023-04-09 09:24 PM PDT -drakenguyen4000,2023-04-10T05:17:17Z,- drakenguyen4000 submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1377091297) at 2023-04-09 10:17 PM PDT -drakenguyen4000,2023-04-12T01:12:50Z,- drakenguyen4000 pull request merged: [4444](https://github.com/hackforla/website/pull/4444#event-8979550812) at 2023-04-11 06:12 PM PDT -drakenguyen4000,2023-04-13T02:31:14Z,- drakenguyen4000 submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1382485781) at 2023-04-12 07:31 PM PDT -drakenguyen4000,2023-04-15T04:27:02Z,- drakenguyen4000 commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1509497986) at 2023-04-14 09:27 PM PDT -drakenguyen4000,2023-04-15T04:28:01Z,- drakenguyen4000 submitted pull request review: [4518](https://github.com/hackforla/website/pull/4518#pullrequestreview-1386304878) at 2023-04-14 09:28 PM PDT -drakenguyen4000,2023-04-15T04:57:20Z,- drakenguyen4000 commented on pull request: [4516](https://github.com/hackforla/website/pull/4516#issuecomment-1509509609) at 2023-04-14 09:57 PM PDT -drakenguyen4000,2023-04-15T05:01:31Z,- drakenguyen4000 submitted pull request review: [4516](https://github.com/hackforla/website/pull/4516#pullrequestreview-1386311842) at 2023-04-14 10:01 PM PDT -drakenguyen4000,2023-04-26T01:54:11Z,- drakenguyen4000 commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1522648344) at 2023-04-25 06:54 PM PDT -drakenguyen4000,2023-04-29T22:25:20Z,- drakenguyen4000 assigned to issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1526855180) at 2023-04-29 03:25 PM PDT -drakenguyen4000,2023-04-30T22:00:16Z,- drakenguyen4000 assigned to issue: [4527](https://github.com/hackforla/website/issues/4527) at 2023-04-30 03:00 PM PDT -drakenguyen4000,2023-04-30T22:02:15Z,- drakenguyen4000 commented on issue: [4527](https://github.com/hackforla/website/issues/4527#issuecomment-1529149476) at 2023-04-30 03:02 PM PDT -drakenguyen4000,2023-05-01T02:38:25Z,- drakenguyen4000 commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1529275002) at 2023-04-30 07:38 PM PDT -drakenguyen4000,2023-05-02T02:38:21Z,- drakenguyen4000 commented on pull request: [4586](https://github.com/hackforla/website/pull/4586#issuecomment-1530788898) at 2023-05-01 07:38 PM PDT -drakenguyen4000,2023-05-02T03:39:13Z,- drakenguyen4000 submitted pull request review: [4586](https://github.com/hackforla/website/pull/4586#pullrequestreview-1408350292) at 2023-05-01 08:39 PM PDT -drakenguyen4000,2023-05-03T02:32:09Z,- drakenguyen4000 submitted pull request review: [4586](https://github.com/hackforla/website/pull/4586#pullrequestreview-1410109090) at 2023-05-02 07:32 PM PDT -drakenguyen4000,2023-05-03T03:19:11Z,- drakenguyen4000 opened issue: [4594](https://github.com/hackforla/website/issues/4594) at 2023-05-02 08:19 PM PDT -drakenguyen4000,2023-05-03T03:19:11Z,- drakenguyen4000 assigned to issue: [4594](https://github.com/hackforla/website/issues/4594) at 2023-05-02 08:19 PM PDT -drakenguyen4000,2023-05-03T03:19:24Z,- drakenguyen4000 closed issue as completed: [4568](https://github.com/hackforla/website/issues/4568#event-9151268034) at 2023-05-02 08:19 PM PDT -drakenguyen4000,2023-05-03T22:55:14Z,- drakenguyen4000 commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1533855474) at 2023-05-03 03:55 PM PDT -drakenguyen4000,2023-05-06T02:00:32Z,- drakenguyen4000 commented on issue: [4527](https://github.com/hackforla/website/issues/4527#issuecomment-1536981659) at 2023-05-05 07:00 PM PDT -drakenguyen4000,2023-05-07T16:42:53Z,- drakenguyen4000 unassigned from issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537488312) at 2023-05-07 09:42 AM PDT -drakenguyen4000,2023-05-09T03:20:24Z,- drakenguyen4000 opened pull request: [4613](https://github.com/hackforla/website/pull/4613) at 2023-05-08 08:20 PM PDT -drakenguyen4000,2023-05-15T04:05:49Z,- drakenguyen4000 pull request merged: [4613](https://github.com/hackforla/website/pull/4613#event-9241835232) at 2023-05-14 09:05 PM PDT -drakenguyen4000,2023-06-04T02:15:14Z,- drakenguyen4000 commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1575331710) at 2023-06-03 07:15 PM PDT -drakenguyen4000,2023-06-04T02:15:25Z,- drakenguyen4000 closed issue by PR 4751: [4669](https://github.com/hackforla/website/issues/4669#event-9423432713) at 2023-06-03 07:15 PM PDT -drakenguyen4000,2023-06-04T02:28:43Z,- drakenguyen4000 commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1575336013) at 2023-06-03 07:28 PM PDT -drakenguyen4000,2023-06-04T02:29:10Z,- drakenguyen4000 closed issue by PR 4757: [4670](https://github.com/hackforla/website/issues/4670#event-9423457327) at 2023-06-03 07:29 PM PDT -drakenguyen4000,2023-06-11T01:49:13Z,- drakenguyen4000 commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1585969291) at 2023-06-10 06:49 PM PDT -drakenguyen4000,2023-06-11T01:49:40Z,- drakenguyen4000 closed issue by PR 4772: [4416](https://github.com/hackforla/website/issues/4416#event-9492138629) at 2023-06-10 06:49 PM PDT -drakenguyen4000,2023-06-18T03:18:11Z,- drakenguyen4000 commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1595937554) at 2023-06-17 08:18 PM PDT -drakenguyen4000,2023-06-18T03:18:52Z,- drakenguyen4000 closed issue by PR 4796: [3975](https://github.com/hackforla/website/issues/3975#event-9560042438) at 2023-06-17 08:18 PM PDT -drakenguyen4000,2023-06-18T03:37:08Z,- drakenguyen4000 commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1595939867) at 2023-06-17 08:37 PM PDT -drakenguyen4000,2023-06-18T03:37:19Z,- drakenguyen4000 closed issue by PR 4817: [4514](https://github.com/hackforla/website/issues/4514#event-9560059144) at 2023-06-17 08:37 PM PDT -drakenguyen4000,2023-06-25T04:00:36Z,- drakenguyen4000 commented on pull request: [4875](https://github.com/hackforla/website/pull/4875#issuecomment-1605858410) at 2023-06-24 09:00 PM PDT -drakenguyen4000,2023-06-25T04:01:05Z,- drakenguyen4000 closed issue by PR 4875: [4551](https://github.com/hackforla/website/issues/4551#event-9628582936) at 2023-06-24 09:01 PM PDT -drakenguyen4000,2023-06-25T04:16:55Z,- drakenguyen4000 commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1605861299) at 2023-06-24 09:16 PM PDT -drakenguyen4000,2023-06-25T04:17:08Z,- drakenguyen4000 closed issue by PR 4866: [4787](https://github.com/hackforla/website/issues/4787#event-9628600660) at 2023-06-24 09:17 PM PDT -drakenguyen4000,2023-07-02T03:36:04Z,- drakenguyen4000 commented on pull request: [4897](https://github.com/hackforla/website/pull/4897#issuecomment-1616332576) at 2023-07-01 08:36 PM PDT -drakenguyen4000,2023-07-02T03:36:30Z,- drakenguyen4000 closed issue by PR 4897: [4859](https://github.com/hackforla/website/issues/4859#event-9698572317) at 2023-07-01 08:36 PM PDT -drakenguyen4000,2023-07-02T03:39:47Z,- drakenguyen4000 commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1616336586) at 2023-07-01 08:39 PM PDT -drakenguyen4000,2023-07-02T03:40:14Z,- drakenguyen4000 closed issue by PR 4890: [4883](https://github.com/hackforla/website/issues/4883#event-9698583250) at 2023-07-01 08:40 PM PDT -drakenguyen4000,2023-07-08T02:38:08Z,- drakenguyen4000 closed issue as completed: [4174](https://github.com/hackforla/website/issues/4174#event-9761058881) at 2023-07-07 07:38 PM PDT -drakenguyen4000,2023-07-16T03:06:32Z,- drakenguyen4000 commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1636967930) at 2023-07-15 08:06 PM PDT -drakenguyen4000,2023-07-16T03:06:50Z,- drakenguyen4000 closed issue by PR 4926: [4507](https://github.com/hackforla/website/issues/4507#event-9830276847) at 2023-07-15 08:06 PM PDT -drakenguyen4000,2023-07-23T04:23:27Z,- drakenguyen4000 closed issue by PR 5044: [4920](https://github.com/hackforla/website/issues/4920#event-9892093727) at 2023-07-22 09:23 PM PDT -drakenguyen4000,2023-07-30T04:18:29Z,- drakenguyen4000 commented on pull request: [5105](https://github.com/hackforla/website/pull/5105#issuecomment-1657038326) at 2023-07-29 09:18 PM PDT -drakenguyen4000,2023-07-30T04:18:53Z,- drakenguyen4000 closed issue by PR 5105: [5032](https://github.com/hackforla/website/issues/5032#event-9956076026) at 2023-07-29 09:18 PM PDT -drakenguyen4000,2023-08-20T03:34:01Z,- drakenguyen4000 commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1685166438) at 2023-08-19 08:34 PM PDT -drakenguyen4000,2023-08-20T03:34:19Z,- drakenguyen4000 closed issue by PR 5249: [5174](https://github.com/hackforla/website/issues/5174#event-10137383022) at 2023-08-19 08:34 PM PDT -drakenguyen4000,2023-08-27T05:09:14Z,- drakenguyen4000 closed issue by PR 5251: [5042](https://github.com/hackforla/website/issues/5042#event-10201145903) at 2023-08-26 10:09 PM PDT -drakenguyen4000,2023-09-10T04:07:32Z,- drakenguyen4000 closed issue by PR 5454: [5411](https://github.com/hackforla/website/issues/5411#event-10325447836) at 2023-09-09 09:07 PM PDT -drakenguyen4000,2023-09-17T01:30:23Z,- drakenguyen4000 closed issue by PR 5457: [5368](https://github.com/hackforla/website/issues/5368#event-10390589236) at 2023-09-16 06:30 PM PDT -drakenguyen4000,2023-09-17T01:32:32Z,- drakenguyen4000 closed issue by PR 5523: [5459](https://github.com/hackforla/website/issues/5459#event-10390591225) at 2023-09-16 06:32 PM PDT -drakenguyen4000,2023-10-14T23:01:39Z,- drakenguyen4000 closed issue by PR 5690: [5622](https://github.com/hackforla/website/issues/5622#event-10656083516) at 2023-10-14 04:01 PM PDT -drakenguyen4000,2023-10-14T23:04:38Z,- drakenguyen4000 closed issue by PR 5688: [5633](https://github.com/hackforla/website/issues/5633#event-10656086513) at 2023-10-14 04:04 PM PDT -drakenguyen4000,2023-10-14T23:06:49Z,- drakenguyen4000 closed issue by PR 5683: [5336](https://github.com/hackforla/website/issues/5336#event-10656088589) at 2023-10-14 04:06 PM PDT -drakenguyen4000,2023-10-14T23:11:42Z,- drakenguyen4000 closed issue by PR 5682: [5617](https://github.com/hackforla/website/issues/5617#event-10656092881) at 2023-10-14 04:11 PM PDT -drakenguyen4000,2023-10-14T23:21:46Z,- drakenguyen4000 closed issue by PR 5583: [5506](https://github.com/hackforla/website/issues/5506#event-10656119740) at 2023-10-14 04:21 PM PDT -drakenguyen4000,2023-11-19T07:04:06Z,- drakenguyen4000 commented on pull request: [5916](https://github.com/hackforla/website/pull/5916#issuecomment-1817768732) at 2023-11-18 11:04 PM PST -drakenguyen4000,2023-11-19T07:04:15Z,- drakenguyen4000 closed issue by PR 5916: [5791](https://github.com/hackforla/website/issues/5791#event-11003174341) at 2023-11-18 11:04 PM PST -drakenguyen4000,2023-11-19T07:13:35Z,- drakenguyen4000 commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1817770573) at 2023-11-18 11:13 PM PST -drakenguyen4000,2023-11-19T07:13:45Z,- drakenguyen4000 closed issue by PR 5887: [5808](https://github.com/hackforla/website/issues/5808#event-11003188367) at 2023-11-18 11:13 PM PST -drakenguyen4000,2023-11-19T07:18:30Z,- drakenguyen4000 closed issue by PR 5893: [5803](https://github.com/hackforla/website/issues/5803#event-11003195035) at 2023-11-18 11:18 PM PST -drakenguyen4000,2023-12-24T04:01:40Z,- drakenguyen4000 closed issue by PR 6014: [5849](https://github.com/hackforla/website/issues/5849#event-11331869513) at 2023-12-23 08:01 PM PST -drakenguyen4000,2024-02-25T12:38:57Z,- drakenguyen4000 commented on pull request: [6360](https://github.com/hackforla/website/pull/6360#issuecomment-1962925353) at 2024-02-25 04:38 AM PST -drakenguyen4000,2024-02-25T12:39:24Z,- drakenguyen4000 closed issue by PR 6360: [5711](https://github.com/hackforla/website/issues/5711#event-11912915476) at 2024-02-25 04:39 AM PST -drakenguyen4000,2024-03-17T05:42:41Z,- drakenguyen4000 commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-2002319754) at 2024-03-16 10:42 PM PDT -drakenguyen4000,2024-03-17T05:43:39Z,- drakenguyen4000 closed issue by PR 6462: [6303](https://github.com/hackforla/website/issues/6303#event-12141991498) at 2024-03-16 10:43 PM PDT -drakenguyen4000,2024-03-31T03:05:44Z,- drakenguyen4000 closed issue by PR 6411: [6299](https://github.com/hackforla/website/issues/6299#event-12302220578) at 2024-03-30 08:05 PM PDT -drakenguyen4000,2024-03-31T03:08:32Z,- drakenguyen4000 closed issue by PR 6467: [4648](https://github.com/hackforla/website/issues/4648#event-12302223454) at 2024-03-30 08:08 PM PDT -drakenguyen4000,2024-03-31T03:10:35Z,- drakenguyen4000 closed issue by PR 6508: [6484](https://github.com/hackforla/website/issues/6484#event-12302225388) at 2024-03-30 08:10 PM PDT -drakenguyen4000,2024-03-31T03:11:03Z,- drakenguyen4000 closed issue by PR 6521: [6510](https://github.com/hackforla/website/issues/6510#event-12302225950) at 2024-03-30 08:11 PM PDT -drakenguyen4000,2024-03-31T03:12:35Z,- drakenguyen4000 closed issue by PR 6536: [6479](https://github.com/hackforla/website/issues/6479#event-12302227381) at 2024-03-30 08:12 PM PDT -drakenguyen4000,2024-03-31T03:15:24Z,- drakenguyen4000 closed issue by PR 6543: [5473](https://github.com/hackforla/website/issues/5473#event-12302229943) at 2024-03-30 08:15 PM PDT -drakenguyen4000,2024-04-14T04:53:51Z,- drakenguyen4000 closed issue by PR 6631: [6177](https://github.com/hackforla/website/issues/6177#event-12459470426) at 2024-04-13 09:53 PM PDT -drakenguyen4000,2024-04-14T04:55:35Z,- drakenguyen4000 closed issue by PR 6630: [6178](https://github.com/hackforla/website/issues/6178#event-12459475775) at 2024-04-13 09:55 PM PDT -drakenguyen4000,2024-04-17T02:59:51Z,- drakenguyen4000 commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2060257248) at 2024-04-16 07:59 PM PDT -drakenguyen4000,2024-04-17T03:06:59Z,- drakenguyen4000 commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2060263672) at 2024-04-16 08:06 PM PDT -drakenguyen4000,2024-05-26T04:29:18Z,- drakenguyen4000 closed issue by PR 6890: [6847](https://github.com/hackforla/website/issues/6847#event-12934976007) at 2024-05-25 09:29 PM PDT -drakenguyen4000,2024-05-26T04:37:33Z,- drakenguyen4000 closed issue by PR 6874: [6720](https://github.com/hackforla/website/issues/6720#event-12935000100) at 2024-05-25 09:37 PM PDT -drakenguyen4000,2024-06-16T06:13:19Z,- drakenguyen4000 closed issue by PR 6991: [6737](https://github.com/hackforla/website/issues/6737#event-13173639988) at 2024-06-15 11:13 PM PDT -drakenguyen4000,2024-06-23T04:17:49Z,- drakenguyen4000 closed issue by PR 7038: [6932](https://github.com/hackforla/website/issues/6932#event-13253123646) at 2024-06-22 09:17 PM PDT -drakenguyen4000,2024-06-30T03:16:03Z,- drakenguyen4000 closed issue by PR 7040: [6986](https://github.com/hackforla/website/issues/6986#event-13341168949) at 2024-06-29 08:16 PM PDT -dreams0ng,2019-07-31T02:33:08Z,- dreams0ng assigned to issue: [148](https://github.com/hackforla/website/issues/148) at 2019-07-30 07:33 PM PDT -dreams0ng,2019-08-24T23:34:23Z,- dreams0ng commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-524588222) at 2019-08-24 04:34 PM PDT -DrIffathsultana,2021-10-21T02:06:43Z,- DrIffathsultana opened issue: [2386](https://github.com/hackforla/website/issues/2386) at 2021-10-20 07:06 PM PDT -DrIffathsultana,2021-10-25T06:09:27Z,- DrIffathsultana commented on issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-950561100) at 2021-10-24 11:09 PM PDT -drubgrubby,2020-07-19T18:00:05Z,- drubgrubby assigned to issue: [599](https://github.com/hackforla/website/issues/599) at 2020-07-19 11:00 AM PDT -drubgrubby,2020-07-21T21:26:57Z,- drubgrubby opened pull request: [624](https://github.com/hackforla/website/pull/624) at 2020-07-21 02:26 PM PDT -drubgrubby,2020-07-22T14:31:41Z,- drubgrubby pull request merged: [624](https://github.com/hackforla/website/pull/624#event-3576066511) at 2020-07-22 07:31 AM PDT -drubgrubby,2020-07-23T02:22:51Z,- drubgrubby opened pull request: [630](https://github.com/hackforla/website/pull/630) at 2020-07-22 07:22 PM PDT -drubgrubby,2020-07-23T21:05:12Z,- drubgrubby opened pull request: [631](https://github.com/hackforla/website/pull/631) at 2020-07-23 02:05 PM PDT -drubgrubby,2020-07-23T22:01:00Z,- drubgrubby pull request merged: [631](https://github.com/hackforla/website/pull/631#event-3581876892) at 2020-07-23 03:01 PM PDT -drubgrubby,2020-07-24T14:44:52Z,- drubgrubby commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663574494) at 2020-07-24 07:44 AM PDT -drubgrubby,2020-07-24T22:10:23Z,- drubgrubby commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663754078) at 2020-07-24 03:10 PM PDT -drubgrubby,2020-07-27T16:47:16Z,- drubgrubby commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-664510876) at 2020-07-27 09:47 AM PDT -drubgrubby,2020-07-27T17:31:46Z,- drubgrubby commented on issue: [599](https://github.com/hackforla/website/issues/599#issuecomment-664534349) at 2020-07-27 10:31 AM PDT -drubgrubby,2020-07-27T19:15:06Z,- drubgrubby pull request merged: [630](https://github.com/hackforla/website/pull/630#event-3591277743) at 2020-07-27 12:15 PM PDT -drubgrubby,2020-07-29T03:33:40Z,- drubgrubby assigned to issue: [625](https://github.com/hackforla/website/issues/625) at 2020-07-28 08:33 PM PDT -drubgrubby,2020-07-29T19:29:58Z,- drubgrubby opened issue: [657](https://github.com/hackforla/website/issues/657) at 2020-07-29 12:29 PM PDT -drubgrubby,2020-07-31T15:47:57Z,- drubgrubby opened pull request: [662](https://github.com/hackforla/website/pull/662) at 2020-07-31 08:47 AM PDT -drubgrubby,2020-08-02T12:31:59Z,- drubgrubby commented on pull request: [662](https://github.com/hackforla/website/pull/662#issuecomment-667668429) at 2020-08-02 05:31 AM PDT -drubgrubby,2020-08-02T13:35:47Z,- drubgrubby opened pull request: [663](https://github.com/hackforla/website/pull/663) at 2020-08-02 06:35 AM PDT -drubgrubby,2020-08-02T16:53:41Z,- drubgrubby commented on issue: [625](https://github.com/hackforla/website/issues/625#issuecomment-667698112) at 2020-08-02 09:53 AM PDT -drubgrubby,2020-08-02T18:04:33Z,- drubgrubby assigned to issue: [664](https://github.com/hackforla/website/issues/664) at 2020-08-02 11:04 AM PDT -drubgrubby,2020-08-03T16:09:55Z,- drubgrubby pull request closed w/o merging: [662](https://github.com/hackforla/website/pull/662#event-3616614219) at 2020-08-03 09:09 AM PDT -drubgrubby,2020-08-03T18:40:26Z,- drubgrubby assigned to issue: [659](https://github.com/hackforla/website/issues/659) at 2020-08-03 11:40 AM PDT -drubgrubby,2020-08-03T20:11:38Z,- drubgrubby pull request merged: [663](https://github.com/hackforla/website/pull/663#event-3617426300) at 2020-08-03 01:11 PM PDT -drubgrubby,2020-08-04T23:09:22Z,- drubgrubby opened pull request: [669](https://github.com/hackforla/website/pull/669) at 2020-08-04 04:09 PM PDT -drubgrubby,2020-08-04T23:10:47Z,- drubgrubby commented on issue: [664](https://github.com/hackforla/website/issues/664#issuecomment-668871477) at 2020-08-04 04:10 PM PDT -drubgrubby,2020-08-05T00:27:18Z,- drubgrubby opened pull request: [670](https://github.com/hackforla/website/pull/670) at 2020-08-04 05:27 PM PDT -drubgrubby,2020-08-05T02:52:44Z,- drubgrubby pull request merged: [669](https://github.com/hackforla/website/pull/669#event-3622780740) at 2020-08-04 07:52 PM PDT -drubgrubby,2020-08-05T02:59:14Z,- drubgrubby pull request merged: [670](https://github.com/hackforla/website/pull/670#event-3622793300) at 2020-08-04 07:59 PM PDT -drubgrubby,2020-08-05T03:04:36Z,- drubgrubby assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-08-04 08:04 PM PDT -drubgrubby,2020-08-05T03:08:10Z,- drubgrubby assigned to issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-08-04 08:08 PM PDT -drubgrubby,2020-08-05T22:28:38Z,- drubgrubby unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-08-05 03:28 PM PDT -drubgrubby,2020-08-08T21:32:13Z,- drubgrubby unassigned from issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-670976011) at 2020-08-08 02:32 PM PDT -drubgrubby,2020-08-12T12:01:20Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-672828906) at 2020-08-12 05:01 AM PDT -drubgrubby,2020-08-16T04:41:12Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-674478121) at 2020-08-15 09:41 PM PDT -drubgrubby,2020-08-17T22:40:01Z,- drubgrubby submitted pull request review: [682](https://github.com/hackforla/website/pull/682#pullrequestreview-468878332) at 2020-08-17 03:40 PM PDT -drubgrubby,2020-08-17T22:42:41Z,- drubgrubby closed issue by PR 670: [659](https://github.com/hackforla/website/issues/659#event-3663868494) at 2020-08-17 03:42 PM PDT -drubgrubby,2020-08-23T16:27:23Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-678794946) at 2020-08-23 09:27 AM PDT -drubgrubby,2020-08-30T15:59:30Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-683437674) at 2020-08-30 08:59 AM PDT -drubgrubby,2020-09-04T18:25:32Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-687310053) at 2020-09-04 11:25 AM PDT -drubgrubby,2020-09-04T18:33:36Z,- drubgrubby opened pull request: [716](https://github.com/hackforla/website/pull/716) at 2020-09-04 11:33 AM PDT -drubgrubby,2020-09-04T18:43:12Z,- drubgrubby opened issue: [717](https://github.com/hackforla/website/issues/717) at 2020-09-04 11:43 AM PDT -drubgrubby,2020-09-06T18:10:13Z,- drubgrubby assigned to issue: [690](https://github.com/hackforla/website/issues/690) at 2020-09-06 11:10 AM PDT -drubgrubby,2020-09-06T18:11:29Z,- drubgrubby assigned to issue: [708](https://github.com/hackforla/website/issues/708#issuecomment-683149905) at 2020-09-06 11:11 AM PDT -drubgrubby,2020-09-08T23:07:08Z,- drubgrubby commented on issue: [708](https://github.com/hackforla/website/issues/708#issuecomment-689182198) at 2020-09-08 04:07 PM PDT -drubgrubby,2020-09-08T23:09:08Z,- drubgrubby opened pull request: [723](https://github.com/hackforla/website/pull/723) at 2020-09-08 04:09 PM PDT -drubgrubby,2020-09-10T22:15:44Z,- drubgrubby pull request merged: [723](https://github.com/hackforla/website/pull/723#event-3753388042) at 2020-09-10 03:15 PM PDT -drubgrubby,2020-09-11T02:59:13Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-690843728) at 2020-09-10 07:59 PM PDT -drubgrubby,2020-09-11T03:22:27Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-690850216) at 2020-09-10 08:22 PM PDT -drubgrubby,2020-09-11T04:57:02Z,- drubgrubby commented on issue: [690](https://github.com/hackforla/website/issues/690#issuecomment-690873316) at 2020-09-10 09:57 PM PDT -drubgrubby,2020-09-11T05:05:51Z,- drubgrubby opened pull request: [726](https://github.com/hackforla/website/pull/726) at 2020-09-10 10:05 PM PDT -drubgrubby,2020-09-11T12:27:13Z,- drubgrubby commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-691063807) at 2020-09-11 05:27 AM PDT -drubgrubby,2020-09-11T19:49:31Z,- drubgrubby commented on issue: [690](https://github.com/hackforla/website/issues/690#issuecomment-691282409) at 2020-09-11 12:49 PM PDT -drubgrubby,2020-09-15T00:12:34Z,- drubgrubby submitted pull request review: [724](https://github.com/hackforla/website/pull/724#pullrequestreview-488236996) at 2020-09-14 05:12 PM PDT -drubgrubby,2020-09-15T00:32:30Z,- drubgrubby commented on pull request: [724](https://github.com/hackforla/website/pull/724#issuecomment-692389792) at 2020-09-14 05:32 PM PDT -drubgrubby,2020-09-15T00:37:45Z,- drubgrubby commented on pull request: [724](https://github.com/hackforla/website/pull/724#issuecomment-692391247) at 2020-09-14 05:37 PM PDT -drubgrubby,2020-09-16T01:58:46Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-693123171) at 2020-09-15 06:58 PM PDT -drubgrubby,2020-09-17T02:51:49Z,- drubgrubby assigned to issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-687437005) at 2020-09-16 07:51 PM PDT -drubgrubby,2020-09-17T02:59:15Z,- drubgrubby commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-693778498) at 2020-09-16 07:59 PM PDT -drubgrubby,2020-09-18T02:30:35Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-694611677) at 2020-09-17 07:30 PM PDT -drubgrubby,2020-09-18T02:39:27Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-694614112) at 2020-09-17 07:39 PM PDT -drubgrubby,2020-09-18T02:59:52Z,- drubgrubby commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-694619353) at 2020-09-17 07:59 PM PDT -drubgrubby,2020-09-19T23:03:58Z,- drubgrubby pull request merged: [716](https://github.com/hackforla/website/pull/716#event-3785585857) at 2020-09-19 04:03 PM PDT -drubgrubby,2020-09-20T18:22:10Z,- drubgrubby pull request merged: [726](https://github.com/hackforla/website/pull/726#event-3786300231) at 2020-09-20 11:22 AM PDT -drubgrubby,2020-09-21T18:19:38Z,- drubgrubby assigned to issue: [616](https://github.com/hackforla/website/issues/616) at 2020-09-21 11:19 AM PDT -drubgrubby,2020-09-21T18:31:34Z,- drubgrubby unassigned from issue: [616](https://github.com/hackforla/website/issues/616) at 2020-09-21 11:31 AM PDT -drubgrubby,2020-09-23T03:53:01Z,- drubgrubby submitted pull request review: [741](https://github.com/hackforla/website/pull/741#pullrequestreview-494010612) at 2020-09-22 08:53 PM PDT -drubgrubby,2020-09-24T21:01:22Z,- drubgrubby opened issue: [748](https://github.com/hackforla/website/issues/748) at 2020-09-24 02:01 PM PDT -drubgrubby,2020-09-25T00:15:12Z,- drubgrubby opened pull request: [749](https://github.com/hackforla/website/pull/749) at 2020-09-24 05:15 PM PDT -drubgrubby,2020-09-27T17:25:18Z,- drubgrubby assigned to issue: [748](https://github.com/hackforla/website/issues/748) at 2020-09-27 10:25 AM PDT -drubgrubby,2020-09-27T18:38:41Z,- drubgrubby commented on pull request: [749](https://github.com/hackforla/website/pull/749#issuecomment-699671559) at 2020-09-27 11:38 AM PDT -drubgrubby,2020-09-27T18:52:10Z,- drubgrubby pull request merged: [749](https://github.com/hackforla/website/pull/749#event-3811907868) at 2020-09-27 11:52 AM PDT -drubgrubby,2020-09-30T03:34:33Z,- drubgrubby opened pull request: [758](https://github.com/hackforla/website/pull/758) at 2020-09-29 08:34 PM PDT -drubgrubby,2020-09-30T03:34:51Z,- drubgrubby commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-701136986) at 2020-09-29 08:34 PM PDT -drubgrubby,2020-10-01T03:54:22Z,- drubgrubby pull request merged: [758](https://github.com/hackforla/website/pull/758#event-3827357618) at 2020-09-30 08:54 PM PDT -drubgrubby,2020-10-01T12:02:45Z,- drubgrubby commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-702087166) at 2020-10-01 05:02 AM PDT -drubgrubby,2020-10-02T17:05:06Z,- drubgrubby opened pull request: [764](https://github.com/hackforla/website/pull/764) at 2020-10-02 10:05 AM PDT -drubgrubby,2020-10-06T23:44:32Z,- drubgrubby commented on pull request: [764](https://github.com/hackforla/website/pull/764#issuecomment-704610311) at 2020-10-06 04:44 PM PDT -drubgrubby,2020-10-07T02:31:38Z,- drubgrubby assigned to issue: [616](https://github.com/hackforla/website/issues/616#issuecomment-696294935) at 2020-10-06 07:31 PM PDT -drubgrubby,2020-10-08T22:39:06Z,- drubgrubby pull request merged: [764](https://github.com/hackforla/website/pull/764#event-3857645011) at 2020-10-08 03:39 PM PDT -drubgrubby,2020-10-14T00:05:55Z,- drubgrubby opened pull request: [779](https://github.com/hackforla/website/pull/779) at 2020-10-13 05:05 PM PDT -drubgrubby,2020-10-14T01:12:54Z,- drubgrubby commented on pull request: [779](https://github.com/hackforla/website/pull/779#issuecomment-708094318) at 2020-10-13 06:12 PM PDT -drubgrubby,2020-10-14T01:54:44Z,- drubgrubby commented on issue: [616](https://github.com/hackforla/website/issues/616#issuecomment-708105909) at 2020-10-13 06:54 PM PDT -drubgrubby,2020-10-14T13:42:52Z,- drubgrubby assigned to issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-10-14 06:42 AM PDT -drubgrubby,2020-10-15T02:59:13Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-708863955) at 2020-10-14 07:59 PM PDT -drubgrubby,2020-10-15T19:07:14Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-709533429) at 2020-10-15 12:07 PM PDT -drubgrubby,2020-10-16T00:47:22Z,- drubgrubby pull request merged: [779](https://github.com/hackforla/website/pull/779#event-3884107095) at 2020-10-15 05:47 PM PDT -drubgrubby,2020-10-16T01:50:24Z,- drubgrubby commented on pull request: [782](https://github.com/hackforla/website/pull/782#issuecomment-709681439) at 2020-10-15 06:50 PM PDT -drubgrubby,2020-10-18T13:40:05Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-711169599) at 2020-10-18 06:40 AM PDT -drubgrubby,2020-10-19T17:11:24Z,- drubgrubby submitted pull request review: [788](https://github.com/hackforla/website/pull/788#pullrequestreview-511980016) at 2020-10-19 10:11 AM PDT -drubgrubby,2020-10-21T17:31:51Z,- drubgrubby submitted pull request review: [792](https://github.com/hackforla/website/pull/792#pullrequestreview-514004482) at 2020-10-21 10:31 AM PDT -drubgrubby,2020-10-21T18:05:24Z,- drubgrubby submitted pull request review: [791](https://github.com/hackforla/website/pull/791#pullrequestreview-514040600) at 2020-10-21 11:05 AM PDT -drubgrubby,2020-10-25T14:18:30Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-716155726) at 2020-10-25 07:18 AM PDT -drubgrubby,2020-11-01T17:47:52Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-720125524) at 2020-11-01 09:47 AM PST -drubgrubby,2020-11-06T16:48:32Z,- drubgrubby submitted pull request review: [790](https://github.com/hackforla/website/pull/790#pullrequestreview-525323849) at 2020-11-06 08:48 AM PST -drubgrubby,2020-11-08T17:31:41Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-723641173) at 2020-11-08 09:31 AM PST -drubgrubby,2020-11-09T01:42:09Z,- drubgrubby commented on pull request: [790](https://github.com/hackforla/website/pull/790#issuecomment-723707027) at 2020-11-08 05:42 PM PST -drubgrubby,2020-11-09T01:42:23Z,- drubgrubby closed issue by PR 790: [700](https://github.com/hackforla/website/issues/700#event-3971451864) at 2020-11-08 05:42 PM PST -drubgrubby,2020-11-10T02:28:05Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724408884) at 2020-11-09 06:28 PM PST -drubgrubby,2020-11-12T22:32:56Z,- drubgrubby commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-726382527) at 2020-11-12 02:32 PM PST -drubgrubby,2020-11-17T04:22:59Z,- drubgrubby submitted pull request review: [808](https://github.com/hackforla/website/pull/808#pullrequestreview-532011856) at 2020-11-16 08:22 PM PST -drubgrubby,2020-11-22T17:15:50Z,- drubgrubby submitted pull request review: [808](https://github.com/hackforla/website/pull/808#pullrequestreview-536082586) at 2020-11-22 09:15 AM PST -drubgrubby,2020-11-22T17:22:44Z,- drubgrubby commented on pull request: [808](https://github.com/hackforla/website/pull/808#issuecomment-731780417) at 2020-11-22 09:22 AM PST -drubgrubby,2020-11-22T17:44:16Z,- drubgrubby opened pull request: [811](https://github.com/hackforla/website/pull/811) at 2020-11-22 09:44 AM PST -drubgrubby,2020-11-29T14:19:23Z,- drubgrubby commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-735401950) at 2020-11-29 06:19 AM PST -drubgrubby,2020-11-29T23:02:43Z,- drubgrubby submitted pull request review: [808](https://github.com/hackforla/website/pull/808#pullrequestreview-540532359) at 2020-11-29 03:02 PM PST -drubgrubby,2020-12-01T21:23:51Z,- drubgrubby commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-736829406) at 2020-12-01 01:23 PM PST -drubgrubby,2020-12-01T21:48:07Z,- drubgrubby submitted pull request review: [820](https://github.com/hackforla/website/pull/820#pullrequestreview-542323833) at 2020-12-01 01:48 PM PST -drubgrubby,2020-12-02T02:41:27Z,- drubgrubby commented on pull request: [820](https://github.com/hackforla/website/pull/820#issuecomment-736951191) at 2020-12-01 06:41 PM PST -drubgrubby,2020-12-02T03:22:58Z,- drubgrubby closed issue by PR 816: [817](https://github.com/hackforla/website/issues/817#event-4060227886) at 2020-12-01 07:22 PM PST -drubgrubby,2020-12-04T17:36:55Z,- drubgrubby commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-738916849) at 2020-12-04 09:36 AM PST -drubgrubby,2020-12-04T19:14:24Z,- drubgrubby pull request merged: [811](https://github.com/hackforla/website/pull/811#event-4074100403) at 2020-12-04 11:14 AM PST -drubgrubby,2020-12-04T22:17:44Z,- drubgrubby commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-739053409) at 2020-12-04 02:17 PM PST -drubgrubby,2020-12-04T22:27:49Z,- drubgrubby submitted pull request review: [823](https://github.com/hackforla/website/pull/823#pullrequestreview-545339989) at 2020-12-04 02:27 PM PST -drubgrubby,2020-12-04T22:28:14Z,- drubgrubby closed issue by PR 823: [801](https://github.com/hackforla/website/issues/801#event-4074728433) at 2020-12-04 02:28 PM PST -drubgrubby,2020-12-04T22:50:08Z,- drubgrubby opened pull request: [825](https://github.com/hackforla/website/pull/825) at 2020-12-04 02:50 PM PST -drubgrubby,2020-12-06T01:38:15Z,- drubgrubby commented on pull request: [825](https://github.com/hackforla/website/pull/825#issuecomment-739441594) at 2020-12-05 05:38 PM PST -drubgrubby,2020-12-06T01:50:31Z,- drubgrubby commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-739442528) at 2020-12-05 05:50 PM PST -drubgrubby,2020-12-06T14:11:18Z,- drubgrubby commented on pull request: [825](https://github.com/hackforla/website/pull/825#issuecomment-739508171) at 2020-12-06 06:11 AM PST -drubgrubby,2020-12-06T14:26:35Z,- drubgrubby submitted pull request review: [829](https://github.com/hackforla/website/pull/829#pullrequestreview-545710897) at 2020-12-06 06:26 AM PST -drubgrubby,2020-12-06T14:27:16Z,- drubgrubby closed issue by PR 829: [657](https://github.com/hackforla/website/issues/657#event-4076656042) at 2020-12-06 06:27 AM PST -drubgrubby,2020-12-06T19:04:03Z,- drubgrubby pull request merged: [825](https://github.com/hackforla/website/pull/825#event-4076901479) at 2020-12-06 11:04 AM PST -drubgrubby,2020-12-06T19:07:02Z,- drubgrubby closed issue by PR 828: [827](https://github.com/hackforla/website/issues/827#event-4076904189) at 2020-12-06 11:07 AM PST -drubgrubby,2020-12-07T17:46:36Z,- drubgrubby opened issue: [835](https://github.com/hackforla/website/issues/835) at 2020-12-07 09:46 AM PST -drubgrubby,2020-12-07T17:46:37Z,- drubgrubby assigned to issue: [835](https://github.com/hackforla/website/issues/835) at 2020-12-07 09:46 AM PST -drubgrubby,2020-12-07T17:51:51Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-740077177) at 2020-12-07 09:51 AM PST -drubgrubby,2020-12-07T17:59:10Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-740081272) at 2020-12-07 09:59 AM PST -drubgrubby,2020-12-09T02:45:37Z,- drubgrubby submitted pull request review: [841](https://github.com/hackforla/website/pull/841#pullrequestreview-547794709) at 2020-12-08 06:45 PM PST -drubgrubby,2020-12-09T02:49:01Z,- drubgrubby commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-741491056) at 2020-12-08 06:49 PM PST -drubgrubby,2020-12-09T18:32:42Z,- drubgrubby commented on pull request: [841](https://github.com/hackforla/website/pull/841#issuecomment-741966046) at 2020-12-09 10:32 AM PST -drubgrubby,2020-12-09T18:33:04Z,- drubgrubby closed issue by PR 841: [693](https://github.com/hackforla/website/issues/693#event-4091396388) at 2020-12-09 10:33 AM PST -drubgrubby,2020-12-09T18:51:20Z,- drubgrubby commented on pull request: [820](https://github.com/hackforla/website/pull/820#issuecomment-741976181) at 2020-12-09 10:51 AM PST -drubgrubby,2020-12-09T18:51:31Z,- drubgrubby closed issue by PR 820: [698](https://github.com/hackforla/website/issues/698#event-4091468302) at 2020-12-09 10:51 AM PST -drubgrubby,2020-12-10T20:35:28Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742782635) at 2020-12-10 12:35 PM PST -drubgrubby,2020-12-10T20:45:34Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742788073) at 2020-12-10 12:45 PM PST -drubgrubby,2020-12-10T21:01:50Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742796773) at 2020-12-10 01:01 PM PST -drubgrubby,2020-12-10T21:05:08Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742798470) at 2020-12-10 01:05 PM PST -drubgrubby,2020-12-10T21:08:07Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742799934) at 2020-12-10 01:08 PM PST -drubgrubby,2020-12-10T21:12:39Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742802218) at 2020-12-10 01:12 PM PST -drubgrubby,2020-12-10T21:17:01Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742804608) at 2020-12-10 01:17 PM PST -drubgrubby,2020-12-10T22:06:34Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742829885) at 2020-12-10 02:06 PM PST -drubgrubby,2020-12-10T22:08:04Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742830634) at 2020-12-10 02:08 PM PST -drubgrubby,2020-12-13T02:06:51Z,- drubgrubby opened issue: [842](https://github.com/hackforla/website/issues/842) at 2020-12-12 06:06 PM PST -drubgrubby,2020-12-13T02:06:56Z,- drubgrubby assigned to issue: [842](https://github.com/hackforla/website/issues/842) at 2020-12-12 06:06 PM PST -drubgrubby,2020-12-13T03:23:09Z,- drubgrubby commented on issue: [842](https://github.com/hackforla/website/issues/842#issuecomment-743941812) at 2020-12-12 07:23 PM PST -drubgrubby,2020-12-13T17:54:09Z,- drubgrubby commented on issue: [842](https://github.com/hackforla/website/issues/842#issuecomment-744044030) at 2020-12-13 09:54 AM PST -drubgrubby,2020-12-13T19:25:21Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744055821) at 2020-12-13 11:25 AM PST -drubgrubby,2020-12-13T19:35:04Z,- drubgrubby assigned to issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-744057015) at 2020-12-13 11:35 AM PST -drubgrubby,2020-12-13T20:13:46Z,- drubgrubby commented on pull request: [843](https://github.com/hackforla/website/pull/843#issuecomment-744061906) at 2020-12-13 12:13 PM PST -drubgrubby,2020-12-15T01:25:53Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744961692) at 2020-12-14 05:25 PM PST -drubgrubby,2020-12-15T01:26:40Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744962748) at 2020-12-14 05:26 PM PST -drubgrubby,2020-12-15T01:27:13Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744963500) at 2020-12-14 05:27 PM PST -drubgrubby,2020-12-15T01:39:28Z,- drubgrubby opened issue: [844](https://github.com/hackforla/website/issues/844) at 2020-12-14 05:39 PM PST -drubgrubby,2020-12-15T03:02:21Z,- drubgrubby commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-745020817) at 2020-12-14 07:02 PM PST -drubgrubby,2020-12-15T04:25:07Z,- drubgrubby commented on issue: [842](https://github.com/hackforla/website/issues/842#issuecomment-745043406) at 2020-12-14 08:25 PM PST -drubgrubby,2020-12-15T04:41:53Z,- drubgrubby opened pull request: [845](https://github.com/hackforla/website/pull/845) at 2020-12-14 08:41 PM PST -drubgrubby,2020-12-15T22:13:49Z,- drubgrubby opened issue: [846](https://github.com/hackforla/website/issues/846) at 2020-12-15 02:13 PM PST -drubgrubby,2020-12-15T22:13:49Z,- drubgrubby assigned to issue: [846](https://github.com/hackforla/website/issues/846) at 2020-12-15 02:13 PM PST -drubgrubby,2020-12-15T22:55:34Z,- drubgrubby opened pull request: [847](https://github.com/hackforla/website/pull/847) at 2020-12-15 02:55 PM PST -drubgrubby,2020-12-16T01:02:22Z,- drubgrubby opened issue: [848](https://github.com/hackforla/website/issues/848) at 2020-12-15 05:02 PM PST -drubgrubby,2020-12-16T01:04:06Z,- drubgrubby assigned to issue: [848](https://github.com/hackforla/website/issues/848) at 2020-12-15 05:04 PM PST -drubgrubby,2020-12-16T02:09:07Z,- drubgrubby commented on issue: [848](https://github.com/hackforla/website/issues/848#issuecomment-745716436) at 2020-12-15 06:09 PM PST -drubgrubby,2020-12-16T02:14:34Z,- drubgrubby opened pull request: [849](https://github.com/hackforla/website/pull/849) at 2020-12-15 06:14 PM PST -drubgrubby,2020-12-16T03:19:01Z,- drubgrubby pull request merged: [845](https://github.com/hackforla/website/pull/845#event-4117632223) at 2020-12-15 07:19 PM PST -drubgrubby,2020-12-17T02:02:32Z,- drubgrubby commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747155338) at 2020-12-16 06:02 PM PST -drubgrubby,2020-12-17T03:31:40Z,- drubgrubby commented on pull request: [849](https://github.com/hackforla/website/pull/849#issuecomment-747182037) at 2020-12-16 07:31 PM PST -drubgrubby,2020-12-17T22:12:18Z,- drubgrubby commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747733289) at 2020-12-17 02:12 PM PST -drubgrubby,2020-12-18T02:17:38Z,- drubgrubby opened issue: [851](https://github.com/hackforla/website/issues/851) at 2020-12-17 06:17 PM PST -drubgrubby,2020-12-18T02:17:44Z,- drubgrubby assigned to issue: [851](https://github.com/hackforla/website/issues/851) at 2020-12-17 06:17 PM PST -drubgrubby,2020-12-20T02:42:43Z,- drubgrubby commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-748554773) at 2020-12-19 06:42 PM PST -drubgrubby,2020-12-20T03:56:22Z,- drubgrubby pull request merged: [849](https://github.com/hackforla/website/pull/849#event-4132984522) at 2020-12-19 07:56 PM PST -drubgrubby,2020-12-20T04:30:21Z,- drubgrubby pull request merged: [847](https://github.com/hackforla/website/pull/847#event-4132998114) at 2020-12-19 08:30 PM PST -drubgrubby,2020-12-20T18:12:25Z,- drubgrubby unassigned from issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-748641396) at 2020-12-20 10:12 AM PST -drubgrubby,2020-12-20T19:21:39Z,- drubgrubby opened issue: [854](https://github.com/hackforla/website/issues/854) at 2020-12-20 11:21 AM PST -drubgrubby,2020-12-20T20:26:16Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-748666467) at 2020-12-20 12:26 PM PST -drubgrubby,2020-12-20T20:29:52Z,- drubgrubby opened pull request: [855](https://github.com/hackforla/website/pull/855) at 2020-12-20 12:29 PM PST -drubgrubby,2020-12-20T20:33:23Z,- drubgrubby commented on pull request: [855](https://github.com/hackforla/website/pull/855#issuecomment-748667221) at 2020-12-20 12:33 PM PST -drubgrubby,2020-12-22T02:22:13Z,- drubgrubby commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-749300431) at 2020-12-21 06:22 PM PST -drubgrubby,2020-12-22T02:50:25Z,- drubgrubby opened issue: [860](https://github.com/hackforla/website/issues/860) at 2020-12-21 06:50 PM PST -drubgrubby,2020-12-22T02:53:46Z,- drubgrubby opened issue: [861](https://github.com/hackforla/website/issues/861) at 2020-12-21 06:53 PM PST -drubgrubby,2020-12-22T03:04:28Z,- drubgrubby opened issue: [862](https://github.com/hackforla/website/issues/862) at 2020-12-21 07:04 PM PST -drubgrubby,2020-12-22T03:12:20Z,- drubgrubby assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 07:12 PM PST -drubgrubby,2020-12-22T03:12:30Z,- drubgrubby unassigned from issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 07:12 PM PST -drubgrubby,2020-12-22T03:22:43Z,- drubgrubby opened issue: [863](https://github.com/hackforla/website/issues/863) at 2020-12-21 07:22 PM PST -drubgrubby,2020-12-22T03:27:12Z,- drubgrubby opened issue: [864](https://github.com/hackforla/website/issues/864) at 2020-12-21 07:27 PM PST -drubgrubby,2020-12-22T03:27:46Z,- drubgrubby closed issue as completed: [835](https://github.com/hackforla/website/issues/835#event-4138419926) at 2020-12-21 07:27 PM PST -drubgrubby,2020-12-23T03:25:06Z,- drubgrubby submitted pull request review: [858](https://github.com/hackforla/website/pull/858#pullrequestreview-557499288) at 2020-12-22 07:25 PM PST -drubgrubby,2020-12-27T17:55:35Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-751497211) at 2020-12-27 09:55 AM PST -drubgrubby,2020-12-30T03:20:33Z,- drubgrubby pull request merged: [855](https://github.com/hackforla/website/pull/855#event-4156180034) at 2020-12-29 07:20 PM PST -drubgrubby,2021-01-17T17:48:38Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-761851060) at 2021-01-17 09:48 AM PST -drubgrubby,2021-01-18T15:23:14Z,- drubgrubby submitted pull request review: [933](https://github.com/hackforla/website/pull/933#pullrequestreview-570586200) at 2021-01-18 07:23 AM PST -drubgrubby,2021-01-20T02:07:17Z,- drubgrubby submitted pull request review: [944](https://github.com/hackforla/website/pull/944#pullrequestreview-571813776) at 2021-01-19 06:07 PM PST -drubgrubby,2021-01-20T02:22:30Z,- drubgrubby commented on pull request: [944](https://github.com/hackforla/website/pull/944#issuecomment-763282608) at 2021-01-19 06:22 PM PST -drubgrubby,2021-01-20T03:28:31Z,- drubgrubby commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-763304332) at 2021-01-19 07:28 PM PST -drubgrubby,2021-01-22T02:09:53Z,- drubgrubby submitted pull request review: [951](https://github.com/hackforla/website/pull/951#pullrequestreview-573900867) at 2021-01-21 06:09 PM PST -drubgrubby,2021-01-22T19:21:39Z,- drubgrubby closed issue by PR 944: [923](https://github.com/hackforla/website/issues/923#event-4240050887) at 2021-01-22 11:21 AM PST -drubgrubby,2021-01-22T19:24:35Z,- drubgrubby closed issue by PR 945: [921](https://github.com/hackforla/website/issues/921#event-4240060875) at 2021-01-22 11:24 AM PST -drubgrubby,2021-01-24T17:40:10Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-766400559) at 2021-01-24 09:40 AM PST -drubgrubby,2021-01-24T19:49:00Z,- drubgrubby closed issue as completed: [927](https://github.com/hackforla/website/issues/927#event-4242859622) at 2021-01-24 11:49 AM PST -drubgrubby,2021-01-25T03:18:39Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-766513294) at 2021-01-24 07:18 PM PST -drubgrubby,2021-01-25T03:18:46Z,- drubgrubby closed issue as completed: [851](https://github.com/hackforla/website/issues/851#event-4243399476) at 2021-01-24 07:18 PM PST -drubgrubby,2021-01-25T03:24:31Z,- drubgrubby commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-766514891) at 2021-01-24 07:24 PM PST -drubgrubby,2021-01-25T03:37:38Z,- drubgrubby opened issue: [966](https://github.com/hackforla/website/issues/966) at 2021-01-24 07:37 PM PST -drubgrubby,2021-01-25T03:57:22Z,- drubgrubby opened issue: [967](https://github.com/hackforla/website/issues/967) at 2021-01-24 07:57 PM PST -drubgrubby,2021-01-25T04:07:25Z,- drubgrubby opened issue: [968](https://github.com/hackforla/website/issues/968) at 2021-01-24 08:07 PM PST -drubgrubby,2021-01-27T03:12:48Z,- drubgrubby closed issue as completed: [906](https://github.com/hackforla/website/issues/906#event-4253725765) at 2021-01-26 07:12 PM PST -drubgrubby,2021-01-27T03:12:53Z,- drubgrubby reopened issue: [906](https://github.com/hackforla/website/issues/906#event-4253725765) at 2021-01-26 07:12 PM PST -drubgrubby,2021-01-27T03:17:00Z,- drubgrubby closed issue by PR 941: [830](https://github.com/hackforla/website/issues/830#event-4253734809) at 2021-01-26 07:17 PM PST -drubgrubby,2021-01-29T19:30:43Z,- drubgrubby assigned to issue: [976](https://github.com/hackforla/website/issues/976) at 2021-01-29 11:30 AM PST -drubgrubby,2021-01-31T03:54:02Z,- drubgrubby opened pull request: [978](https://github.com/hackforla/website/pull/978) at 2021-01-30 07:54 PM PST -drubgrubby,2021-01-31T03:55:50Z,- drubgrubby commented on issue: [976](https://github.com/hackforla/website/issues/976#issuecomment-770321208) at 2021-01-30 07:55 PM PST -drubgrubby,2021-01-31T03:56:23Z,- drubgrubby assigned to issue: [968](https://github.com/hackforla/website/issues/968) at 2021-01-30 07:56 PM PST -drubgrubby,2021-01-31T17:22:36Z,- drubgrubby commented on issue: [968](https://github.com/hackforla/website/issues/968#issuecomment-770416929) at 2021-01-31 09:22 AM PST -drubgrubby,2021-01-31T20:11:44Z,- drubgrubby pull request merged: [978](https://github.com/hackforla/website/pull/978#event-4270715278) at 2021-01-31 12:11 PM PST -drubgrubby,2021-01-31T20:25:55Z,- drubgrubby closed issue by PR 980: [939](https://github.com/hackforla/website/issues/939#event-4270727946) at 2021-01-31 12:25 PM PST -drubgrubby,2021-02-01T17:28:11Z,- drubgrubby commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-771022608) at 2021-02-01 09:28 AM PST -drubgrubby,2021-02-02T19:26:29Z,- drubgrubby opened pull request: [985](https://github.com/hackforla/website/pull/985) at 2021-02-02 11:26 AM PST -drubgrubby,2021-02-03T02:45:51Z,- drubgrubby submitted pull request review: [986](https://github.com/hackforla/website/pull/986#pullrequestreview-581960959) at 2021-02-02 06:45 PM PST -drubgrubby,2021-02-03T02:51:07Z,- drubgrubby commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-772177893) at 2021-02-02 06:51 PM PST -drubgrubby,2021-02-03T03:20:04Z,- drubgrubby commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-772189705) at 2021-02-02 07:20 PM PST -drubgrubby,2021-02-03T03:25:42Z,- drubgrubby pull request merged: [985](https://github.com/hackforla/website/pull/985#event-4282957713) at 2021-02-02 07:25 PM PST -drubgrubby,2021-02-03T03:43:12Z,- drubgrubby closed issue as completed: [895](https://github.com/hackforla/website/issues/895#event-4283000395) at 2021-02-02 07:43 PM PST -drubgrubby,2021-02-03T17:09:27Z,- drubgrubby commented on pull request: [993](https://github.com/hackforla/website/pull/993#issuecomment-772670233) at 2021-02-03 09:09 AM PST -drubgrubby,2021-02-03T17:09:35Z,- drubgrubby closed issue by PR 993: [991](https://github.com/hackforla/website/issues/991#event-4286483146) at 2021-02-03 09:09 AM PST -drubgrubby,2021-02-04T00:15:25Z,- drubgrubby assigned to issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-756501661) at 2021-02-03 04:15 PM PST -drubgrubby,2021-02-04T00:37:33Z,- drubgrubby assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -drubgrubby,2021-02-04T00:40:49Z,- drubgrubby assigned to issue: [935](https://github.com/hackforla/website/issues/935) at 2021-02-03 04:40 PM PST -drubgrubby,2021-02-04T16:42:08Z,- drubgrubby commented on pull request: [1001](https://github.com/hackforla/website/pull/1001#issuecomment-773445774) at 2021-02-04 08:42 AM PST -drubgrubby,2021-02-04T23:51:51Z,- drubgrubby commented on issue: [990](https://github.com/hackforla/website/issues/990#issuecomment-773679980) at 2021-02-04 03:51 PM PST -drubgrubby,2021-02-05T17:57:18Z,- drubgrubby commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-774190163) at 2021-02-05 09:57 AM PST -drubgrubby,2021-02-05T17:57:35Z,- drubgrubby assigned to issue: [966](https://github.com/hackforla/website/issues/966) at 2021-02-05 09:57 AM PST -drubgrubby,2021-02-07T02:39:24Z,- drubgrubby submitted pull request review: [1000](https://github.com/hackforla/website/pull/1000#pullrequestreview-584934891) at 2021-02-06 06:39 PM PST -drubgrubby,2021-02-07T02:39:43Z,- drubgrubby closed issue by PR 1000: [946](https://github.com/hackforla/website/issues/946#event-4299741333) at 2021-02-06 06:39 PM PST -drubgrubby,2021-02-07T02:42:38Z,- drubgrubby commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-774579858) at 2021-02-06 06:42 PM PST -drubgrubby,2021-02-07T02:46:29Z,- drubgrubby closed issue by PR 1001: [905](https://github.com/hackforla/website/issues/905#event-4299745094) at 2021-02-06 06:46 PM PST -drubgrubby,2021-02-07T02:48:06Z,- drubgrubby reopened issue: [905](https://github.com/hackforla/website/issues/905#event-4299745094) at 2021-02-06 06:48 PM PST -drubgrubby,2021-02-07T02:48:50Z,- drubgrubby commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-774580390) at 2021-02-06 06:48 PM PST -drubgrubby,2021-02-07T02:53:24Z,- drubgrubby commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774580766) at 2021-02-06 06:53 PM PST -drubgrubby,2021-02-07T17:02:15Z,- drubgrubby commented on issue: [966](https://github.com/hackforla/website/issues/966#issuecomment-774709323) at 2021-02-07 09:02 AM PST -drubgrubby,2021-02-07T17:31:32Z,- drubgrubby commented on issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-774714636) at 2021-02-07 09:31 AM PST -drubgrubby,2021-02-07T17:33:57Z,- drubgrubby submitted pull request review: [1007](https://github.com/hackforla/website/pull/1007#pullrequestreview-585037357) at 2021-02-07 09:33 AM PST -drubgrubby,2021-02-07T17:44:29Z,- drubgrubby commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774716969) at 2021-02-07 09:44 AM PST -drubgrubby,2021-02-07T20:26:56Z,- drubgrubby commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-774754685) at 2021-02-07 12:26 PM PST -drubgrubby,2021-02-07T20:26:56Z,- drubgrubby closed issue as completed: [938](https://github.com/hackforla/website/issues/938#event-4300642529) at 2021-02-07 12:26 PM PST -drubgrubby,2021-02-08T14:17:38Z,- drubgrubby commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-775180799) at 2021-02-08 06:17 AM PST -drubgrubby,2021-02-08T18:06:47Z,- drubgrubby submitted pull request review: [1015](https://github.com/hackforla/website/pull/1015#pullrequestreview-585780116) at 2021-02-08 10:06 AM PST -drubgrubby,2021-02-08T18:07:40Z,- drubgrubby closed issue by PR 1015: [1004](https://github.com/hackforla/website/issues/1004#event-4304902098) at 2021-02-08 10:07 AM PST -drubgrubby,2021-02-08T18:10:54Z,- drubgrubby submitted pull request review: [1016](https://github.com/hackforla/website/pull/1016#pullrequestreview-585783572) at 2021-02-08 10:10 AM PST -drubgrubby,2021-02-09T19:28:59Z,- drubgrubby submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-586925894) at 2021-02-09 11:28 AM PST -drubgrubby,2021-02-09T20:03:25Z,- drubgrubby submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-586954851) at 2021-02-09 12:03 PM PST -drubgrubby,2021-02-09T20:05:55Z,- drubgrubby commented on pull request: [1009](https://github.com/hackforla/website/pull/1009#issuecomment-776206886) at 2021-02-09 12:05 PM PST -drubgrubby,2021-02-09T21:28:53Z,- drubgrubby submitted pull request review: [1018](https://github.com/hackforla/website/pull/1018#pullrequestreview-587027297) at 2021-02-09 01:28 PM PST -drubgrubby,2021-02-10T02:34:14Z,- drubgrubby commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-776395756) at 2021-02-09 06:34 PM PST -drubgrubby,2021-02-10T02:46:37Z,- drubgrubby opened issue: [1026](https://github.com/hackforla/website/issues/1026) at 2021-02-09 06:46 PM PST -drubgrubby,2021-02-10T03:18:39Z,- drubgrubby closed issue as completed: [957](https://github.com/hackforla/website/issues/957#event-4312595995) at 2021-02-09 07:18 PM PST -drubgrubby,2021-02-10T04:32:36Z,- drubgrubby closed issue by PR 977: [595](https://github.com/hackforla/website/issues/595#event-4312748019) at 2021-02-09 08:32 PM PST -drubgrubby,2021-02-10T17:11:57Z,- drubgrubby closed issue by PR 1032: [932](https://github.com/hackforla/website/issues/932#event-4315968382) at 2021-02-10 09:11 AM PST -drubgrubby,2021-02-14T03:37:38Z,- drubgrubby closed issue by PR 1007: [965](https://github.com/hackforla/website/issues/965#event-4328367333) at 2021-02-13 07:37 PM PST -drubgrubby,2021-02-14T03:47:30Z,- drubgrubby commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778718707) at 2021-02-13 07:47 PM PST -drubgrubby,2021-02-14T03:47:36Z,- drubgrubby closed issue by PR 1018: [936](https://github.com/hackforla/website/issues/936#event-4328372192) at 2021-02-13 07:47 PM PST -drubgrubby,2021-02-14T04:19:17Z,- drubgrubby assigned to issue: [1040](https://github.com/hackforla/website/issues/1040) at 2021-02-13 08:19 PM PST -drubgrubby,2021-02-14T04:37:15Z,- drubgrubby submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590014645) at 2021-02-13 08:37 PM PST -drubgrubby,2021-02-14T17:05:55Z,- drubgrubby commented on issue: [966](https://github.com/hackforla/website/issues/966#issuecomment-778806743) at 2021-02-14 09:05 AM PST -drubgrubby,2021-02-14T17:41:28Z,- drubgrubby commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778812047) at 2021-02-14 09:41 AM PST -drubgrubby,2021-02-14T17:43:22Z,- drubgrubby commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778812388) at 2021-02-14 09:43 AM PST -drubgrubby,2021-02-14T18:55:44Z,- drubgrubby closed issue by PR 988: [960](https://github.com/hackforla/website/issues/960#event-4329011882) at 2021-02-14 10:55 AM PST -drubgrubby,2021-02-14T19:03:12Z,- drubgrubby commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-778824919) at 2021-02-14 11:03 AM PST -drubgrubby,2021-02-14T19:10:59Z,- drubgrubby commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-778825966) at 2021-02-14 11:10 AM PST -drubgrubby,2021-02-14T20:05:57Z,- drubgrubby commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-778833990) at 2021-02-14 12:05 PM PST -drubgrubby,2021-02-16T02:55:16Z,- drubgrubby submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590853405) at 2021-02-15 06:55 PM PST -drubgrubby,2021-02-16T02:56:11Z,- drubgrubby submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590853661) at 2021-02-15 06:56 PM PST -drubgrubby,2021-02-16T02:56:48Z,- drubgrubby closed issue by PR 1034: [1030](https://github.com/hackforla/website/issues/1030#event-4334097302) at 2021-02-15 06:56 PM PST -drubgrubby,2021-02-16T18:23:42Z,- drubgrubby commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-780029674) at 2021-02-16 10:23 AM PST -drubgrubby,2021-02-16T18:26:49Z,- drubgrubby commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-780031710) at 2021-02-16 10:26 AM PST -drubgrubby,2021-02-16T18:36:11Z,- drubgrubby commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780037081) at 2021-02-16 10:36 AM PST -drubgrubby,2021-02-16T19:30:06Z,- drubgrubby opened pull request: [1058](https://github.com/hackforla/website/pull/1058) at 2021-02-16 11:30 AM PST -drubgrubby,2021-02-16T19:31:43Z,- drubgrubby assigned to issue: [1050](https://github.com/hackforla/website/issues/1050) at 2021-02-16 11:31 AM PST -drubgrubby,2021-02-16T19:33:47Z,- drubgrubby commented on issue: [1050](https://github.com/hackforla/website/issues/1050#issuecomment-780068872) at 2021-02-16 11:33 AM PST -drubgrubby,2021-02-17T01:55:38Z,- drubgrubby commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780240958) at 2021-02-16 05:55 PM PST -drubgrubby,2021-02-17T02:02:38Z,- drubgrubby commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780243837) at 2021-02-16 06:02 PM PST -drubgrubby,2021-02-17T03:11:19Z,- drubgrubby pull request merged: [1058](https://github.com/hackforla/website/pull/1058#event-4339240164) at 2021-02-16 07:11 PM PST -drubgrubby,2021-02-17T18:30:30Z,- drubgrubby commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780758983) at 2021-02-17 10:30 AM PST -drubgrubby,2021-02-17T22:48:57Z,- drubgrubby commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780905822) at 2021-02-17 02:48 PM PST -drubgrubby,2021-02-18T00:22:03Z,- drubgrubby opened pull request: [1073](https://github.com/hackforla/website/pull/1073) at 2021-02-17 04:22 PM PST -drubgrubby,2021-02-18T00:24:32Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-780943808) at 2021-02-17 04:24 PM PST -drubgrubby,2021-02-18T03:12:52Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781014452) at 2021-02-17 07:12 PM PST -drubgrubby,2021-02-18T05:34:21Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781067962) at 2021-02-17 09:34 PM PST -drubgrubby,2021-02-18T16:22:27Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781463092) at 2021-02-18 08:22 AM PST -drubgrubby,2021-02-18T16:24:29Z,- drubgrubby commented on issue: [966](https://github.com/hackforla/website/issues/966#issuecomment-781464686) at 2021-02-18 08:24 AM PST -drubgrubby,2021-02-18T23:14:50Z,- drubgrubby pull request merged: [1073](https://github.com/hackforla/website/pull/1073#event-4349404732) at 2021-02-18 03:14 PM PST -drubgrubby,2021-02-18T23:41:24Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781707810) at 2021-02-18 03:41 PM PST -drubgrubby,2021-02-19T02:04:11Z,- drubgrubby commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-781762541) at 2021-02-18 06:04 PM PST -drubgrubby,2021-02-19T02:08:28Z,- drubgrubby commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-781763977) at 2021-02-18 06:08 PM PST -drubgrubby,2021-02-19T02:12:17Z,- drubgrubby commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-781765186) at 2021-02-18 06:12 PM PST -drubgrubby,2021-02-19T19:31:45Z,- drubgrubby commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782293824) at 2021-02-19 11:31 AM PST -drubgrubby,2021-02-21T03:31:28Z,- drubgrubby commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782789723) at 2021-02-20 07:31 PM PST -drubgrubby,2021-02-21T17:37:41Z,- drubgrubby closed issue as completed: [894](https://github.com/hackforla/website/issues/894#event-4356588287) at 2021-02-21 09:37 AM PST -drubgrubby,2021-02-21T20:21:26Z,- drubgrubby commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-782919882) at 2021-02-21 12:21 PM PST -drubgrubby,2021-02-22T18:01:19Z,- drubgrubby submitted pull request review: [1087](https://github.com/hackforla/website/pull/1087#pullrequestreview-595628200) at 2021-02-22 10:01 AM PST -drubgrubby,2021-02-22T18:01:49Z,- drubgrubby closed issue by PR 1087: [862](https://github.com/hackforla/website/issues/862#event-4361138022) at 2021-02-22 10:01 AM PST -drubgrubby,2021-02-22T19:49:38Z,- drubgrubby commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783629607) at 2021-02-22 11:49 AM PST -drubgrubby,2021-02-22T22:39:15Z,- drubgrubby commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783727450) at 2021-02-22 02:39 PM PST -drubgrubby,2021-02-23T21:37:38Z,- drubgrubby commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-784530047) at 2021-02-23 01:37 PM PST -drubgrubby,2021-02-26T00:21:03Z,- drubgrubby submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599155637) at 2021-02-25 04:21 PM PST -drubgrubby,2021-02-26T17:33:08Z,- drubgrubby commented on issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786788081) at 2021-02-26 09:33 AM PST -drubgrubby,2021-02-28T17:35:08Z,- drubgrubby commented on issue: [1118](https://github.com/hackforla/website/issues/1118#issuecomment-787488934) at 2021-02-28 09:35 AM PST -drubgrubby,2021-03-01T16:58:22Z,- drubgrubby submitted pull request review: [1140](https://github.com/hackforla/website/pull/1140#pullrequestreview-600957143) at 2021-03-01 08:58 AM PST -drubgrubby,2021-03-01T16:58:33Z,- drubgrubby closed issue by PR 1140: [864](https://github.com/hackforla/website/issues/864#event-4390770982) at 2021-03-01 08:58 AM PST -drubgrubby,2021-03-01T17:32:19Z,- drubgrubby submitted pull request review: [1143](https://github.com/hackforla/website/pull/1143#pullrequestreview-600991029) at 2021-03-01 09:32 AM PST -drubgrubby,2021-03-01T17:38:33Z,- drubgrubby commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788135733) at 2021-03-01 09:38 AM PST -drubgrubby,2021-03-01T19:05:49Z,- drubgrubby commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788194195) at 2021-03-01 11:05 AM PST -drubgrubby,2021-03-07T17:25:36Z,- drubgrubby submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-605867277) at 2021-03-07 09:25 AM PST -drubgrubby,2021-03-08T20:29:29Z,- drubgrubby commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-793054069) at 2021-03-08 12:29 PM PST -drubgrubby,2021-03-08T23:13:55Z,- drubgrubby commented on pull request: [1175](https://github.com/hackforla/website/pull/1175#issuecomment-793158349) at 2021-03-08 03:13 PM PST -drubgrubby,2021-03-10T01:41:06Z,- drubgrubby commented on issue: [1184](https://github.com/hackforla/website/issues/1184#issuecomment-794717311) at 2021-03-09 05:41 PM PST -drubgrubby,2021-03-10T02:10:09Z,- drubgrubby submitted pull request review: [1186](https://github.com/hackforla/website/pull/1186#pullrequestreview-608272528) at 2021-03-09 06:10 PM PST -drubgrubby,2021-03-10T20:48:44Z,- drubgrubby commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-796080622) at 2021-03-10 12:48 PM PST -drubgrubby,2021-03-12T21:31:23Z,- drubgrubby submitted pull request review: [1199](https://github.com/hackforla/website/pull/1199#pullrequestreview-611166676) at 2021-03-12 01:31 PM PST -drubgrubby,2021-03-15T20:13:58Z,- drubgrubby commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-799720432) at 2021-03-15 01:13 PM PDT -drubgrubby,2021-03-15T21:53:30Z,- drubgrubby commented on issue: [1207](https://github.com/hackforla/website/issues/1207#issuecomment-799779786) at 2021-03-15 02:53 PM PDT -drubgrubby,2021-03-17T01:37:16Z,- drubgrubby submitted pull request review: [1211](https://github.com/hackforla/website/pull/1211#pullrequestreview-613853614) at 2021-03-16 06:37 PM PDT -drubgrubby,2021-03-17T18:13:19Z,- drubgrubby submitted pull request review: [1218](https://github.com/hackforla/website/pull/1218#pullrequestreview-614643827) at 2021-03-17 11:13 AM PDT -drubgrubby,2021-03-17T18:38:53Z,- drubgrubby commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-801320659) at 2021-03-17 11:38 AM PDT -drubgrubby,2021-03-17T21:01:02Z,- drubgrubby opened issue: [1236](https://github.com/hackforla/website/issues/1236) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:09Z,- drubgrubby opened issue: [1237](https://github.com/hackforla/website/issues/1237) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:12Z,- drubgrubby opened issue: [1238](https://github.com/hackforla/website/issues/1238) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:36Z,- drubgrubby opened issue: [1239](https://github.com/hackforla/website/issues/1239) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:37Z,- drubgrubby opened issue: [1240](https://github.com/hackforla/website/issues/1240) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:56Z,- drubgrubby opened issue: [1242](https://github.com/hackforla/website/issues/1242) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:02:05Z,- drubgrubby opened issue: [1243](https://github.com/hackforla/website/issues/1243) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:06Z,- drubgrubby opened issue: [1244](https://github.com/hackforla/website/issues/1244) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:06Z,- drubgrubby opened issue: [1245](https://github.com/hackforla/website/issues/1245) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:07Z,- drubgrubby opened issue: [1246](https://github.com/hackforla/website/issues/1246) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:09Z,- drubgrubby opened issue: [1247](https://github.com/hackforla/website/issues/1247) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-18T16:42:03Z,- drubgrubby submitted pull request review: [1217](https://github.com/hackforla/website/pull/1217#pullrequestreview-615631236) at 2021-03-18 09:42 AM PDT -drubgrubby,2021-03-18T16:43:48Z,- drubgrubby closed issue by PR 1217: [1212](https://github.com/hackforla/website/issues/1212#event-4477348140) at 2021-03-18 09:43 AM PDT -drubgrubby,2021-03-18T17:18:49Z,- drubgrubby submitted pull request review: [1211](https://github.com/hackforla/website/pull/1211#pullrequestreview-615671311) at 2021-03-18 10:18 AM PDT -drubgrubby,2021-03-18T17:19:07Z,- drubgrubby closed issue by PR 1211: [1171](https://github.com/hackforla/website/issues/1171#event-4477581355) at 2021-03-18 10:19 AM PDT -drubgrubby,2021-03-18T23:56:27Z,- drubgrubby submitted pull request review: [1260](https://github.com/hackforla/website/pull/1260#pullrequestreview-615963630) at 2021-03-18 04:56 PM PDT -drubgrubby,2021-04-04T23:48:41Z,- drubgrubby commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-813118264) at 2021-04-04 04:48 PM PDT -drubgrubby,2021-04-07T23:04:40Z,- drubgrubby commented on pull request: [1372](https://github.com/hackforla/website/pull/1372#issuecomment-815316212) at 2021-04-07 04:04 PM PDT -drubgrubby,2021-04-07T23:05:05Z,- drubgrubby commented on pull request: [1371](https://github.com/hackforla/website/pull/1371#issuecomment-815316369) at 2021-04-07 04:05 PM PDT -drubgrubby,2021-04-07T23:07:28Z,- drubgrubby commented on pull request: [1370](https://github.com/hackforla/website/pull/1370#issuecomment-815317243) at 2021-04-07 04:07 PM PDT -drubgrubby,2021-06-09T04:31:24Z,- drubgrubby commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857363952) at 2021-06-08 09:31 PM PDT -duojet2ez,6037,SKILLS ISSUE -duojet2ez,2024-01-03T03:59:02Z,- duojet2ez opened issue: [6037](https://github.com/hackforla/website/issues/6037) at 2024-01-02 07:59 PM PST -duojet2ez,2024-01-03T04:00:17Z,- duojet2ez assigned to issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1874821628) at 2024-01-02 08:00 PM PST -duojet2ez,2024-01-26T03:12:25Z,- duojet2ez assigned to issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1874982475) at 2024-01-25 07:12 PM PST -duojet2ez,2024-01-26T03:14:56Z,- duojet2ez commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1911348272) at 2024-01-25 07:14 PM PST -duojet2ez,2024-02-02T03:21:07Z,- duojet2ez commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1922736158) at 2024-02-01 07:21 PM PST -duojet2ez,2024-02-10T20:48:51Z,- duojet2ez commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1937117223) at 2024-02-10 12:48 PM PST -duojet2ez,2024-02-23T04:07:40Z,- duojet2ez opened pull request: [6362](https://github.com/hackforla/website/pull/6362) at 2024-02-22 08:07 PM PST -duojet2ez,2024-02-23T19:17:03Z,- duojet2ez closed issue as completed: [6037](https://github.com/hackforla/website/issues/6037#event-11907336285) at 2024-02-23 11:17 AM PST -duojet2ez,2024-02-25T20:39:31Z,- duojet2ez commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1963054723) at 2024-02-25 12:39 PM PST -duojet2ez,2024-02-29T22:40:12Z,- duojet2ez commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1972093449) at 2024-02-29 02:40 PM PST -duojet2ez,2024-03-01T07:00:55Z,- duojet2ez pull request merged: [6362](https://github.com/hackforla/website/pull/6362#event-11975406944) at 2024-02-29 11:00 PM PST -duojet2ez,2024-03-03T01:07:08Z,- duojet2ez assigned to issue: [6110](https://github.com/hackforla/website/issues/6110) at 2024-03-02 05:07 PM PST -duojet2ez,2024-03-08T01:28:10Z,- duojet2ez commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-1984887060) at 2024-03-07 05:28 PM PST -duojet2ez,2024-03-20T16:44:28Z,- duojet2ez commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-2010030890) at 2024-03-20 09:44 AM PDT -duojet2ez,2024-03-27T04:47:51Z,- duojet2ez opened pull request: [6533](https://github.com/hackforla/website/pull/6533) at 2024-03-26 09:47 PM PDT -duojet2ez,2024-03-30T11:28:12Z,- duojet2ez pull request merged: [6533](https://github.com/hackforla/website/pull/6533#event-12300409595) at 2024-03-30 04:28 AM PDT -duojet2ez,2024-04-09T20:33:34Z,- duojet2ez assigned to issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2016579316) at 2024-04-09 01:33 PM PDT -duojet2ez,2024-04-09T20:37:14Z,- duojet2ez commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2046008362) at 2024-04-09 01:37 PM PDT -duojet2ez,2024-04-13T00:35:11Z,- duojet2ez opened pull request: [6635](https://github.com/hackforla/website/pull/6635) at 2024-04-12 05:35 PM PDT -duojet2ez,2024-04-13T00:36:54Z,- duojet2ez commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2052729585) at 2024-04-12 05:36 PM PDT -duojet2ez,2024-04-15T01:15:28Z,- duojet2ez pull request merged: [6635](https://github.com/hackforla/website/pull/6635#event-12461860500) at 2024-04-14 06:15 PM PDT -duojet2ez,2024-04-24T15:35:32Z,- duojet2ez commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2075235203) at 2024-04-24 08:35 AM PDT -duojet2ez,2024-06-17T04:26:16Z,- duojet2ez assigned to issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2159515453) at 2024-06-16 09:26 PM PDT -duojet2ez,2024-06-17T04:31:26Z,- duojet2ez commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2172217162) at 2024-06-16 09:31 PM PDT -duojet2ez,2024-06-18T16:34:13Z,- duojet2ez commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2176523809) at 2024-06-18 09:34 AM PDT -duojet2ez,2024-06-20T22:03:52Z,- duojet2ez opened pull request: [7040](https://github.com/hackforla/website/pull/7040) at 2024-06-20 03:03 PM PDT -duojet2ez,2024-06-20T22:04:55Z,- duojet2ez commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2181633453) at 2024-06-20 03:04 PM PDT -duojet2ez,2024-06-30T03:16:02Z,- duojet2ez pull request merged: [7040](https://github.com/hackforla/website/pull/7040#event-13341168933) at 2024-06-29 08:16 PM PDT -duojet2ez,2024-08-13T18:16:20Z,- duojet2ez commented on pull request: [7263](https://github.com/hackforla/website/pull/7263#issuecomment-2286847844) at 2024-08-13 11:16 AM PDT -duojet2ez,2024-08-13T22:39:20Z,- duojet2ez submitted pull request review: [7263](https://github.com/hackforla/website/pull/7263#pullrequestreview-2236744973) at 2024-08-13 03:39 PM PDT -DUPLICATE - 2950,2938,SKILLS ISSUE -dustinowen,5724,SKILLS ISSUE -dustinowen,2023-10-17T02:48:12Z,- dustinowen opened issue: [5724](https://github.com/hackforla/website/issues/5724) at 2023-10-16 07:48 PM PDT -dustinowen,2023-11-01T20:58:11Z,- dustinowen assigned to issue: [5790](https://github.com/hackforla/website/issues/5790#issuecomment-1784194086) at 2023-11-01 01:58 PM PDT -dustinowen,2023-11-01T21:17:42Z,- dustinowen opened pull request: [5820](https://github.com/hackforla/website/pull/5820) at 2023-11-01 02:17 PM PDT -dustinowen,2023-11-01T21:19:50Z,- dustinowen commented on issue: [5790](https://github.com/hackforla/website/issues/5790#issuecomment-1789704480) at 2023-11-01 02:19 PM PDT -dustinowen,2023-11-01T21:29:36Z,- dustinowen commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1789715455) at 2023-11-01 02:29 PM PDT -dustinowen,2023-11-06T03:50:36Z,- dustinowen pull request closed w/o merging: [5820](https://github.com/hackforla/website/pull/5820#event-10867329522) at 2023-11-05 07:50 PM PST -dustinowen,2023-11-06T04:07:07Z,- dustinowen opened pull request: [5858](https://github.com/hackforla/website/pull/5858) at 2023-11-05 08:07 PM PST -dustinowen,2023-11-06T04:07:50Z,- dustinowen commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1794053157) at 2023-11-05 08:07 PM PST -dustinowen,2023-11-06T04:09:54Z,- dustinowen commented on pull request: [5858](https://github.com/hackforla/website/pull/5858#issuecomment-1794054507) at 2023-11-05 08:09 PM PST -dustinowen,2023-11-08T04:08:41Z,- dustinowen commented on pull request: [5858](https://github.com/hackforla/website/pull/5858#issuecomment-1801008214) at 2023-11-07 08:08 PM PST -dustinowen,2023-11-08T05:25:12Z,- dustinowen pull request merged: [5858](https://github.com/hackforla/website/pull/5858#event-10895747242) at 2023-11-07 09:25 PM PST -dustinowen,2023-11-14T21:11:18Z,- dustinowen closed issue by PR 5917: [5876](https://github.com/hackforla/website/issues/5876#event-10960153397) at 2023-11-14 01:11 PM PST -dustinowen,2023-11-14T21:19:21Z,- dustinowen assigned to issue: [5874](https://github.com/hackforla/website/issues/5874#issuecomment-1797823731) at 2023-11-14 01:19 PM PST -dustinowen,2023-11-14T21:21:27Z,- dustinowen commented on issue: [5874](https://github.com/hackforla/website/issues/5874#issuecomment-1811334326) at 2023-11-14 01:21 PM PST -dustinowen,2023-11-14T21:40:46Z,- dustinowen opened pull request: [5903](https://github.com/hackforla/website/pull/5903) at 2023-11-14 01:40 PM PST -dustinowen,2023-11-15T22:33:32Z,- dustinowen pull request merged: [5903](https://github.com/hackforla/website/pull/5903#event-10973045721) at 2023-11-15 02:33 PM PST -dustinowen,2023-11-16T03:22:34Z,- dustinowen assigned to issue: [5855](https://github.com/hackforla/website/issues/5855) at 2023-11-15 07:22 PM PST -dustinowen,2023-11-16T03:24:17Z,- dustinowen commented on issue: [5855](https://github.com/hackforla/website/issues/5855#issuecomment-1813731451) at 2023-11-15 07:24 PM PST -dustinowen,2023-11-16T04:17:20Z,- dustinowen opened pull request: [5911](https://github.com/hackforla/website/pull/5911) at 2023-11-15 08:17 PM PST -dustinowen,2023-11-16T21:31:09Z,- dustinowen assigned to issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1815166659) at 2023-11-16 01:31 PM PST -dustinowen,2023-11-16T23:15:32Z,- dustinowen commented on pull request: [5911](https://github.com/hackforla/website/pull/5911#issuecomment-1815467922) at 2023-11-16 03:15 PM PST -dustinowen,2023-11-16T23:28:37Z,- dustinowen commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1815491798) at 2023-11-16 03:28 PM PST -dustinowen,2023-11-17T21:56:52Z,- dustinowen pull request merged: [5911](https://github.com/hackforla/website/pull/5911#event-10999505098) at 2023-11-17 01:56 PM PST -dustinowen,2023-11-28T23:57:20Z,- dustinowen closed issue as completed: [5724](https://github.com/hackforla/website/issues/5724#event-11090004913) at 2023-11-28 03:57 PM PST -dvernon5,7745,SKILLS ISSUE -dvernon5,2024-11-20T04:18:46Z,- dvernon5 opened issue: [7745](https://github.com/hackforla/website/issues/7745) at 2024-11-19 08:18 PM PST -dvernon5,2024-11-20T04:19:54Z,- dvernon5 assigned to issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2487379898) at 2024-11-19 08:19 PM PST -dvernon5,2024-11-24T19:14:19Z,- dvernon5 assigned to issue: [7651](https://github.com/hackforla/website/issues/7651) at 2024-11-24 11:14 AM PST -dvernon5,2024-11-26T02:38:07Z,- dvernon5 opened pull request: [7768](https://github.com/hackforla/website/pull/7768) at 2024-11-25 06:38 PM PST -dvernon5,2024-11-26T17:26:47Z,- dvernon5 commented on issue: [7651](https://github.com/hackforla/website/issues/7651#issuecomment-2501537191) at 2024-11-26 09:26 AM PST -dvernon5,2024-11-26T17:41:51Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501566379) at 2024-11-26 09:41 AM PST -dvernon5,2024-11-26T19:17:37Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501739520) at 2024-11-26 11:17 AM PST -dvernon5,2024-11-26T21:34:00Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501976098) at 2024-11-26 01:34 PM PST -dvernon5,2024-11-26T23:48:57Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2502202718) at 2024-11-26 03:48 PM PST -dvernon5,2024-11-27T01:32:21Z,- dvernon5 commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2502433956) at 2024-11-26 05:32 PM PST -dvernon5,2024-11-27T01:39:57Z,- dvernon5 submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2463355927) at 2024-11-26 05:39 PM PST -dvernon5,2024-11-27T02:03:20Z,- dvernon5 commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2502496223) at 2024-11-26 06:03 PM PST -dvernon5,2024-11-27T02:05:55Z,- dvernon5 submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2463424473) at 2024-11-26 06:05 PM PST -dvernon5,2024-11-27T03:35:19Z,- dvernon5 pull request merged: [7768](https://github.com/hackforla/website/pull/7768#event-15446031603) at 2024-11-26 07:35 PM PST -dvernon5,2024-11-27T04:09:53Z,- dvernon5 assigned to issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487236019) at 2024-11-26 08:09 PM PST -dvernon5,2024-11-27T04:12:05Z,- dvernon5 commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2502684429) at 2024-11-26 08:12 PM PST -dvernon5,2024-11-27T04:50:07Z,- dvernon5 opened pull request: [7773](https://github.com/hackforla/website/pull/7773) at 2024-11-26 08:50 PM PST -dvernon5,2024-11-27T16:49:45Z,- dvernon5 commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504348069) at 2024-11-27 08:49 AM PST -dvernon5,2024-11-27T16:50:30Z,- dvernon5 commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504349696) at 2024-11-27 08:50 AM PST -dvernon5,2024-11-27T22:15:38Z,- dvernon5 pull request merged: [7773](https://github.com/hackforla/website/pull/7773#event-15458078622) at 2024-11-27 02:15 PM PST -dvernon5,2024-11-28T00:46:34Z,- dvernon5 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2471502408) at 2024-11-27 04:46 PM PST -dvernon5,2024-11-28T00:49:29Z,- dvernon5 commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2505060156) at 2024-11-27 04:49 PM PST -dvernon5,2024-11-28T01:38:35Z,- dvernon5 opened pull request: [7776](https://github.com/hackforla/website/pull/7776) at 2024-11-27 05:38 PM PST -dvernon5,2024-11-30T02:49:43Z,- dvernon5 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2508799800) at 2024-11-29 06:49 PM PST -dvernon5,2024-12-01T00:55:24Z,- dvernon5 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2509502738) at 2024-11-30 04:55 PM PST -dvernon5,2024-12-01T00:56:36Z,- dvernon5 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2509503116) at 2024-11-30 04:56 PM PST -dvernon5,2024-12-01T02:34:07Z,- dvernon5 pull request merged: [7776](https://github.com/hackforla/website/pull/7776#event-15483050697) at 2024-11-30 06:34 PM PST -dvernon5,2024-12-02T22:38:44Z,- dvernon5 assigned to issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2501662276) at 2024-12-02 02:38 PM PST -dvernon5,2024-12-02T22:40:48Z,- dvernon5 commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2513124597) at 2024-12-02 02:40 PM PST -dvernon5,2024-12-05T01:30:52Z,- dvernon5 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605) at 2024-12-04 05:30 PM PST -dvernon5,2024-12-05T01:31:09Z,- dvernon5 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:31 PM PST -dvernon5,2024-12-05T01:31:48Z,- dvernon5 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:31 PM PST -dvernon5,2024-12-05T01:32:06Z,- dvernon5 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:32 PM PST -dvernon5,2024-12-05T19:32:28Z,- dvernon5 assigned to issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2387218702) at 2024-12-05 11:32 AM PST -dvernon5,2024-12-05T19:32:48Z,- dvernon5 unassigned from issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2521235751) at 2024-12-05 11:32 AM PST -dvernon5,2024-12-08T03:26:23Z,- dvernon5 opened issue: [7797](https://github.com/hackforla/website/issues/7797) at 2024-12-07 07:26 PM PST -dvernon5,2025-01-03T18:46:29Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2569667288) at 2025-01-03 10:46 AM PST -dvernon5,2025-01-17T04:42:55Z,- dvernon5 commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2597423771) at 2025-01-16 08:42 PM PST -dvernon5,2025-01-19T19:10:44Z,- dvernon5 opened issue: [7835](https://github.com/hackforla/website/issues/7835) at 2025-01-19 11:10 AM PST -dvernon5,2025-01-19T20:10:41Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2601005010) at 2025-01-19 12:10 PM PST -dvernon5,2025-01-22T04:32:11Z,- dvernon5 commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2606272426) at 2025-01-21 08:32 PM PST -dvernon5,2025-01-22T04:33:26Z,- dvernon5 commented on issue: [7835](https://github.com/hackforla/website/issues/7835#issuecomment-2606273502) at 2025-01-21 08:33 PM PST -dvernon5,2025-01-24T03:26:09Z,- dvernon5 assigned to issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-1989698218) at 2025-01-23 07:26 PM PST -dvernon5,2025-01-24T03:26:26Z,- dvernon5 unassigned from issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2611469774) at 2025-01-23 07:26 PM PST -dvernon5,2025-01-26T18:43:57Z,- dvernon5 assigned to issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2078024067) at 2025-01-26 10:43 AM PST -dvernon5,2025-01-26T18:51:16Z,- dvernon5 commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2614546399) at 2025-01-26 10:51 AM PST -dvernon5,2025-01-29T04:49:06Z,- dvernon5 commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2620715393) at 2025-01-28 08:49 PM PST -dvernon5,2025-01-29T20:42:15Z,- dvernon5 submitted pull request review: [7851](https://github.com/hackforla/website/pull/7851#pullrequestreview-2582202072) at 2025-01-29 12:42 PM PST -dvernon5,2025-01-31T03:08:22Z,- dvernon5 opened issue: [7866](https://github.com/hackforla/website/issues/7866) at 2025-01-30 07:08 PM PST -dvernon5,2025-01-31T03:21:05Z,- dvernon5 assigned to issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2626205477) at 2025-01-30 07:21 PM PST -dvernon5,2025-01-31T03:39:20Z,- dvernon5 unassigned from issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2614546399) at 2025-01-30 07:39 PM PST -dvernon5,2025-02-07T07:34:46Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2642139312) at 2025-02-06 11:34 PM PST -dvernon5,2025-03-03T19:59:38Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2695410913) at 2025-03-03 11:59 AM PST -dvernon5,2025-03-09T17:51:03Z,- dvernon5 opened pull request: [7985](https://github.com/hackforla/website/pull/7985) at 2025-03-09 10:51 AM PDT -dvernon5,2025-03-11T21:52:20Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2715786426) at 2025-03-11 02:52 PM PDT -dvernon5,2025-03-11T22:23:40Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2715837152) at 2025-03-11 03:23 PM PDT -dvernon5,2025-03-14T15:45:07Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2725076388) at 2025-03-14 08:45 AM PDT -dvernon5,2025-03-16T05:04:17Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727194658) at 2025-03-15 10:04 PM PDT -dvernon5,2025-03-16T06:09:22Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727216549) at 2025-03-15 11:09 PM PDT -dvernon5,2025-03-16T16:59:07Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727542511) at 2025-03-16 09:59 AM PDT -dvernon5,2025-03-16T16:59:50Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727542775) at 2025-03-16 09:59 AM PDT -dvernon5,2025-03-16T17:30:57Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727554737) at 2025-03-16 10:30 AM PDT -dvernon5,2025-03-16T17:55:48Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727566046) at 2025-03-16 10:55 AM PDT -dvernon5,2025-03-16T17:58:32Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727567139) at 2025-03-16 10:58 AM PDT -dvernon5,2025-03-16T17:59:17Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727567444) at 2025-03-16 10:59 AM PDT -dvernon5,2025-03-16T19:15:40Z,- dvernon5 commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2727602669) at 2025-03-16 12:15 PM PDT -dvernon5,2025-03-16T21:17:24Z,- dvernon5 submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2688799815) at 2025-03-16 02:17 PM PDT -dvernon5,2025-03-16T21:39:31Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727660815) at 2025-03-16 02:39 PM PDT -dvernon5,2025-03-18T00:33:04Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731267485) at 2025-03-17 05:33 PM PDT -dvernon5,2025-03-18T01:40:17Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731366704) at 2025-03-17 06:40 PM PDT -dvernon5,2025-03-18T16:16:40Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2733867345) at 2025-03-18 09:16 AM PDT -dvernon5,2025-03-19T03:53:32Z,- dvernon5 commented on pull request: [7992](https://github.com/hackforla/website/pull/7992#issuecomment-2735255766) at 2025-03-18 08:53 PM PDT -dvernon5,2025-03-19T04:11:54Z,- dvernon5 submitted pull request review: [7992](https://github.com/hackforla/website/pull/7992#pullrequestreview-2696846796) at 2025-03-18 09:11 PM PDT -dvernon5,2025-03-19T04:54:42Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735331396) at 2025-03-18 09:54 PM PDT -dvernon5,2025-03-19T04:57:12Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735336485) at 2025-03-18 09:57 PM PDT -dvernon5,2025-03-19T04:58:08Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735337503) at 2025-03-18 09:58 PM PDT -dvernon5,2025-03-19T04:58:58Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735338415) at 2025-03-18 09:58 PM PDT -dvernon5,2025-03-19T04:59:48Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735339451) at 2025-03-18 09:59 PM PDT -dvernon5,2025-03-26T02:41:59Z,- dvernon5 assigned to issue: [6327](https://github.com/hackforla/website/issues/6327#event-16144900751) at 2025-03-25 07:41 PM PDT -dvernon5,2025-03-26T05:09:12Z,- dvernon5 commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2753258823) at 2025-03-25 10:09 PM PDT -dvernon5,2025-03-26T06:08:27Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2753338201) at 2025-03-25 11:08 PM PDT -dvernon5,2025-03-26T20:46:22Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2755710071) at 2025-03-26 01:46 PM PDT -dvernon5,2025-03-26T20:47:13Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2755711694) at 2025-03-26 01:47 PM PDT -dvernon5,2025-03-26T23:29:25Z,- dvernon5 submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2718840131) at 2025-03-26 04:29 PM PDT -dvernon5,2025-04-02T02:31:36Z,- dvernon5 opened issue: [8036](https://github.com/hackforla/website/issues/8036) at 2025-04-01 07:31 PM PDT -dvernon5,2025-04-02T03:16:17Z,- dvernon5 assigned to issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2770260872) at 2025-04-01 08:16 PM PDT -dvernon5,2025-04-02T03:18:44Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2771241897) at 2025-04-01 08:18 PM PDT -dvernon5,2025-04-03T02:28:31Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2774210362) at 2025-04-02 07:28 PM PDT -dvernon5,2025-04-04T05:22:16Z,- dvernon5 commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2777586623) at 2025-04-03 10:22 PM PDT -dvernon5,2025-04-04T05:35:47Z,- dvernon5 submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2741822257) at 2025-04-03 10:35 PM PDT -dvernon5,2025-04-06T04:27:45Z,- dvernon5 submitted pull request review: [8039](https://github.com/hackforla/website/pull/8039#pullrequestreview-2745035052) at 2025-04-05 09:27 PM PDT -dvernon5,2025-04-06T21:49:41Z,- dvernon5 submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2745285575) at 2025-04-06 02:49 PM PDT -dvernon5,2025-04-09T02:19:19Z,- dvernon5 commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2788119077) at 2025-04-08 07:19 PM PDT -dvernon5,2025-04-09T02:19:19Z,- dvernon5 commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2788119077) at 2025-04-08 07:19 PM PDT -dvernon5,2025-04-09T02:54:24Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751911667) at 2025-04-08 07:54 PM PDT -dvernon5,2025-04-09T02:54:24Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751911667) at 2025-04-08 07:54 PM PDT -dvernon5,2025-04-09T02:56:36Z,- dvernon5 commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2788156317) at 2025-04-08 07:56 PM PDT -dvernon5,2025-04-09T03:24:24Z,- dvernon5 submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2751938878) at 2025-04-08 08:24 PM PDT -dvernon5,2025-04-09T04:25:33Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788244428) at 2025-04-08 09:25 PM PDT -dvernon5,2025-04-09T04:25:48Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788244654) at 2025-04-08 09:25 PM PDT -dvernon5,2025-04-09T04:26:37Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788245492) at 2025-04-08 09:26 PM PDT -dvernon5,2025-04-09T04:26:49Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788245709) at 2025-04-08 09:26 PM PDT -dvernon5,2025-04-09T16:07:37Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2754017735) at 2025-04-09 09:07 AM PDT -dvernon5,2025-04-09T16:07:37Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2754017735) at 2025-04-09 09:07 AM PDT -dvernon5,2025-04-14T20:35:03Z,- dvernon5 submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2765592402) at 2025-04-14 01:35 PM PDT -dvernon5,2025-04-18T16:11:22Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2815730059) at 2025-04-18 09:11 AM PDT -dvernon5,2025-04-21T19:05:23Z,- dvernon5 submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2782033035) at 2025-04-21 12:05 PM PDT -dvernon5,2025-04-24T17:41:57Z,- dvernon5 commented on pull request: [8085](https://github.com/hackforla/website/pull/8085#issuecomment-2828381528) at 2025-04-24 10:41 AM PDT -dvernon5,2025-04-24T22:46:58Z,- dvernon5 submitted pull request review: [8085](https://github.com/hackforla/website/pull/8085#pullrequestreview-2792679506) at 2025-04-24 03:46 PM PDT -dvernon5,2025-04-25T21:33:25Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2831468844) at 2025-04-25 02:33 PM PDT -dvernon5,2025-04-25T23:14:59Z,- dvernon5 opened pull request: [8089](https://github.com/hackforla/website/pull/8089) at 2025-04-25 04:14 PM PDT -dvernon5,2025-04-26T17:26:29Z,- dvernon5 assigned to issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-04-26 10:26 AM PDT -dvernon5,2025-04-26T17:26:41Z,- dvernon5 unassigned from issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832455617) at 2025-04-26 10:26 AM PDT -dvernon5,2025-04-27T03:41:34Z,- dvernon5 commented on pull request: [8089](https://github.com/hackforla/website/pull/8089#issuecomment-2832943508) at 2025-04-26 08:41 PM PDT -dvernon5,2025-04-27T18:58:08Z,- dvernon5 pull request merged: [8089](https://github.com/hackforla/website/pull/8089#event-17424635685) at 2025-04-27 11:58 AM PDT -dvernon5,2025-05-06T02:23:31Z,- dvernon5 assigned to issue: [6291](https://github.com/hackforla/website/issues/6291) at 2025-05-05 07:23 PM PDT -dvernon5,2025-05-06T02:46:42Z,- dvernon5 commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2853126211) at 2025-05-05 07:46 PM PDT -dvernon5,2025-05-06T02:54:23Z,- dvernon5 commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2853134711) at 2025-05-05 07:54 PM PDT -dvernon5,2025-05-14T03:03:06Z,- dvernon5 commented on pull request: [8121](https://github.com/hackforla/website/pull/8121#issuecomment-2878496360) at 2025-05-13 08:03 PM PDT -dvernon5,2025-05-14T16:47:20Z,- dvernon5 opened issue: [8139](https://github.com/hackforla/website/issues/8139) at 2025-05-14 09:47 AM PDT -dvernon5,2025-05-14T21:12:19Z,- dvernon5 commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2881592345) at 2025-05-14 02:12 PM PDT -dvernon5,2025-05-15T21:49:12Z,- dvernon5 submitted pull request review: [8121](https://github.com/hackforla/website/pull/8121#pullrequestreview-2845042755) at 2025-05-15 02:49 PM PDT -dvernon5,2025-05-16T06:19:12Z,- dvernon5 opened issue: [8147](https://github.com/hackforla/website/issues/8147) at 2025-05-15 11:19 PM PDT -dvernon5,2025-05-18T03:13:22Z,- dvernon5 commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2888736451) at 2025-05-17 08:13 PM PDT -dvernon5,2025-05-20T00:58:41Z,- dvernon5 commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2892605953) at 2025-05-19 05:58 PM PDT -dvernon5,2025-06-24T23:15:02Z,- dvernon5 opened issue: [8205](https://github.com/hackforla/website/issues/8205) at 2025-06-24 04:15 PM PDT -dvernon5,2025-06-25T12:08:56Z,- dvernon5 opened issue: [8207](https://github.com/hackforla/website/issues/8207) at 2025-06-25 05:08 AM PDT -dvernon5,2025-06-25T12:19:23Z,- dvernon5 opened issue: [8208](https://github.com/hackforla/website/issues/8208) at 2025-06-25 05:19 AM PDT -dvernon5,2025-06-25T12:27:15Z,- dvernon5 opened issue: [8209](https://github.com/hackforla/website/issues/8209) at 2025-06-25 05:27 AM PDT -dvernon5,2025-06-25T12:32:42Z,- dvernon5 opened issue: [8210](https://github.com/hackforla/website/issues/8210) at 2025-06-25 05:32 AM PDT -dvernon5,2025-06-25T13:10:53Z,- dvernon5 opened issue: [8211](https://github.com/hackforla/website/issues/8211) at 2025-06-25 06:10 AM PDT -dvernon5,2025-06-25T13:34:47Z,- dvernon5 opened issue: [8212](https://github.com/hackforla/website/issues/8212) at 2025-06-25 06:34 AM PDT -dvernon5,2025-06-25T13:42:31Z,- dvernon5 opened issue: [8213](https://github.com/hackforla/website/issues/8213) at 2025-06-25 06:42 AM PDT -dvernon5,2025-06-25T18:55:10Z,- dvernon5 opened issue: [8214](https://github.com/hackforla/website/issues/8214) at 2025-06-25 11:55 AM PDT -dvernon5,2025-06-25T18:58:40Z,- dvernon5 opened issue: [8215](https://github.com/hackforla/website/issues/8215) at 2025-06-25 11:58 AM PDT -dvernon5,2025-06-25T18:58:59Z,- dvernon5 opened issue: [8216](https://github.com/hackforla/website/issues/8216) at 2025-06-25 11:58 AM PDT -dvernon5,2025-06-25T18:59:05Z,- dvernon5 opened issue: [8217](https://github.com/hackforla/website/issues/8217) at 2025-06-25 11:59 AM PDT -dvernon5,2025-06-25T18:59:48Z,- dvernon5 opened issue: [8218](https://github.com/hackforla/website/issues/8218) at 2025-06-25 11:59 AM PDT -dvernon5,2025-06-25T19:03:39Z,- dvernon5 opened issue: [8219](https://github.com/hackforla/website/issues/8219) at 2025-06-25 12:03 PM PDT -dvernon5,2025-06-25T19:05:41Z,- dvernon5 opened issue: [8220](https://github.com/hackforla/website/issues/8220) at 2025-06-25 12:05 PM PDT -dvernon5,2025-06-25T19:06:15Z,- dvernon5 opened issue: [8221](https://github.com/hackforla/website/issues/8221) at 2025-06-25 12:06 PM PDT -dvernon5,2025-06-25T19:06:40Z,- dvernon5 opened issue: [8222](https://github.com/hackforla/website/issues/8222) at 2025-06-25 12:06 PM PDT -dvernon5,2025-06-25T19:06:59Z,- dvernon5 opened issue: [8223](https://github.com/hackforla/website/issues/8223) at 2025-06-25 12:06 PM PDT -dvernon5,2025-06-25T19:07:20Z,- dvernon5 opened issue: [8224](https://github.com/hackforla/website/issues/8224) at 2025-06-25 12:07 PM PDT -dvernon5,2025-06-25T19:08:17Z,- dvernon5 opened issue: [8225](https://github.com/hackforla/website/issues/8225) at 2025-06-25 12:08 PM PDT -dvernon5,2025-06-25T19:08:29Z,- dvernon5 opened issue: [8226](https://github.com/hackforla/website/issues/8226) at 2025-06-25 12:08 PM PDT -dvernon5,2025-06-25T19:08:39Z,- dvernon5 opened issue: [8227](https://github.com/hackforla/website/issues/8227) at 2025-06-25 12:08 PM PDT -dvernon5,2025-06-25T23:11:59Z,- dvernon5 opened issue: [8228](https://github.com/hackforla/website/issues/8228) at 2025-06-25 04:11 PM PDT -dvernon5,2025-06-25T23:39:15Z,- dvernon5 opened issue: [8229](https://github.com/hackforla/website/issues/8229) at 2025-06-25 04:39 PM PDT -dvernon5,2025-06-25T23:44:54Z,- dvernon5 opened issue: [8230](https://github.com/hackforla/website/issues/8230) at 2025-06-25 04:44 PM PDT -dvernon5,2025-06-27T05:38:22Z,- dvernon5 opened pull request: [8232](https://github.com/hackforla/website/pull/8232) at 2025-06-26 10:38 PM PDT -dwightdiesmo,2022-10-11T02:59:33Z,- dwightdiesmo opened issue: [3614](https://github.com/hackforla/website/issues/3614) at 2022-10-10 07:59 PM PDT -eb46,2020-06-24T04:07:03Z,- eb46 assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647152171) at 2020-06-23 09:07 PM PDT -eb46,2020-06-25T00:31:23Z,- eb46 commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-649144501) at 2020-06-24 05:31 PM PDT -eb46,2020-06-25T00:31:35Z,- eb46 unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-649144501) at 2020-06-24 05:31 PM PDT -ebele-oputa,2021-04-30T02:59:26Z,- ebele-oputa opened issue: [1851](https://github.com/hackforla/website/issues/1851) at 2021-04-29 07:59 PM PDT -ebele-oputa,2021-04-30T02:59:26Z,- ebele-oputa assigned to issue: [1851](https://github.com/hackforla/website/issues/1851) at 2021-04-29 07:59 PM PDT -ebele-oputa,2021-06-14T16:34:20Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-860824357) at 2021-06-14 09:34 AM PDT -ebele-oputa,2021-06-22T01:26:07Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865452023) at 2021-06-21 06:26 PM PDT -ebele-oputa,2021-06-22T01:32:03Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865453782) at 2021-06-21 06:32 PM PDT -ebele-oputa,2021-06-22T01:34:15Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865454495) at 2021-06-21 06:34 PM PDT -ebele-oputa,2021-06-28T19:12:55Z,- ebele-oputa unassigned from issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865454495) at 2021-06-28 12:12 PM PDT -ebele-oputa,2021-06-28T19:45:02Z,- ebele-oputa closed issue by PR 1915: [1851](https://github.com/hackforla/website/issues/1851#event-4949482556) at 2021-06-28 12:45 PM PDT -ebele-oputa,2021-07-08T17:30:49Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-876617488) at 2021-07-08 10:30 AM PDT -ebele-oputa,2021-07-10T07:09:48Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-877584691) at 2021-07-10 12:09 AM PDT -ebele-oputa,2021-10-12T01:26:49Z,- ebele-oputa assigned to issue: [2364](https://github.com/hackforla/website/issues/2364) at 2021-10-11 06:26 PM PDT -ebele-oputa,2021-10-12T02:24:15Z,- ebele-oputa commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-940599162) at 2021-10-11 07:24 PM PDT -ebele-oputa,2021-10-12T02:32:43Z,- ebele-oputa unassigned from issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-940599162) at 2021-10-11 07:32 PM PDT -ebele-oputa,2021-10-12T02:34:49Z,- ebele-oputa commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-940602924) at 2021-10-11 07:34 PM PDT -eburdekin,6331,SKILLS ISSUE -eburdekin,2024-02-21T03:28:56Z,- eburdekin opened issue: [6331](https://github.com/hackforla/website/issues/6331) at 2024-02-20 07:28 PM PST -eburdekin,2024-02-21T04:13:11Z,- eburdekin assigned to issue: [6331](https://github.com/hackforla/website/issues/6331) at 2024-02-20 08:13 PM PST -eburdekin,2024-02-22T18:40:45Z,- eburdekin closed issue as completed: [6041](https://github.com/hackforla/website/issues/6041#event-11895194517) at 2024-02-22 10:40 AM PST -eburdekin,2024-02-22T18:40:48Z,- eburdekin reopened issue: [6041](https://github.com/hackforla/website/issues/6041#event-11895194517) at 2024-02-22 10:40 AM PST -eburdekin,2024-02-22T18:59:36Z,- eburdekin assigned to issue: [6107](https://github.com/hackforla/website/issues/6107) at 2024-02-22 10:59 AM PST -eburdekin,2024-02-22T19:00:29Z,- eburdekin commented on issue: [6107](https://github.com/hackforla/website/issues/6107#issuecomment-1960071082) at 2024-02-22 11:00 AM PST -eburdekin,2024-02-22T19:25:53Z,- eburdekin opened pull request: [6359](https://github.com/hackforla/website/pull/6359) at 2024-02-22 11:25 AM PST -eburdekin,2024-02-22T23:47:51Z,- eburdekin commented on issue: [6331](https://github.com/hackforla/website/issues/6331#issuecomment-1960524749) at 2024-02-22 03:47 PM PST -eburdekin,2024-02-23T06:30:58Z,- eburdekin pull request merged: [6359](https://github.com/hackforla/website/pull/6359#event-11899815872) at 2024-02-22 10:30 PM PST -eburdekin,2024-02-23T20:32:16Z,- eburdekin assigned to issue: [5838](https://github.com/hackforla/website/issues/5838) at 2024-02-23 12:32 PM PST -eburdekin,2024-02-23T20:33:54Z,- eburdekin commented on issue: [5838](https://github.com/hackforla/website/issues/5838#issuecomment-1961954675) at 2024-02-23 12:33 PM PST -eburdekin,2024-02-23T20:49:44Z,- eburdekin opened pull request: [6366](https://github.com/hackforla/website/pull/6366) at 2024-02-23 12:49 PM PST -eburdekin,2024-02-24T23:50:10Z,- eburdekin commented on issue: [6331](https://github.com/hackforla/website/issues/6331#issuecomment-1962759901) at 2024-02-24 03:50 PM PST -eburdekin,2024-02-26T03:52:10Z,- eburdekin pull request merged: [6366](https://github.com/hackforla/website/pull/6366#event-11915300666) at 2024-02-25 07:52 PM PST -eburdekin,2024-02-27T01:04:16Z,- eburdekin assigned to issue: [6372](https://github.com/hackforla/website/issues/6372) at 2024-02-26 05:04 PM PST -eburdekin,2024-02-27T01:06:03Z,- eburdekin commented on issue: [6372](https://github.com/hackforla/website/issues/6372#issuecomment-1965608812) at 2024-02-26 05:06 PM PST -eburdekin,2024-02-27T01:23:25Z,- eburdekin opened pull request: [6383](https://github.com/hackforla/website/pull/6383) at 2024-02-26 05:23 PM PST -eburdekin,2024-02-27T02:31:52Z,- eburdekin commented on pull request: [6381](https://github.com/hackforla/website/pull/6381#issuecomment-1965678346) at 2024-02-26 06:31 PM PST -eburdekin,2024-02-27T02:37:50Z,- eburdekin submitted pull request review: [6381](https://github.com/hackforla/website/pull/6381#pullrequestreview-1902409638) at 2024-02-26 06:37 PM PST -eburdekin,2024-02-27T03:11:03Z,- eburdekin closed issue as completed: [6331](https://github.com/hackforla/website/issues/6331#event-11930280460) at 2024-02-26 07:11 PM PST -eburdekin,2024-03-01T07:06:12Z,- eburdekin pull request merged: [6383](https://github.com/hackforla/website/pull/6383#event-11975447346) at 2024-02-29 11:06 PM PST -EchoProject,2023-01-30T17:55:39Z,- EchoProject opened issue: [3900](https://github.com/hackforla/website/issues/3900) at 2023-01-30 09:55 AM PST -EdASalazar,4336,SKILLS ISSUE -EdASalazar,2023-03-29T04:11:08Z,- EdASalazar assigned to issue: [3870](https://github.com/hackforla/website/issues/3870) at 2023-03-28 09:11 PM PDT -EdASalazar,2023-03-29T04:22:11Z,- EdASalazar opened issue: [4336](https://github.com/hackforla/website/issues/4336) at 2023-03-28 09:22 PM PDT -EdASalazar,2023-03-29T04:24:16Z,- EdASalazar unassigned from issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1487919594) at 2023-03-28 09:24 PM PDT -EdASalazar,2023-03-29T04:28:46Z,- EdASalazar assigned to issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1487925935) at 2023-03-28 09:28 PM PDT -EdASalazar,2023-04-11T01:19:42Z,- EdASalazar assigned to issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1484410244) at 2023-04-10 06:19 PM PDT -EdASalazar,2023-04-11T01:41:06Z,- EdASalazar commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1502565076) at 2023-04-10 06:41 PM PDT -EdASalazar,2023-04-11T02:07:30Z,- EdASalazar opened pull request: [4465](https://github.com/hackforla/website/pull/4465) at 2023-04-10 07:07 PM PDT -EdASalazar,2023-04-11T16:51:00Z,- EdASalazar commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1503767366) at 2023-04-11 09:51 AM PDT -EdASalazar,2023-04-11T18:54:38Z,- EdASalazar pull request merged: [4465](https://github.com/hackforla/website/pull/4465#event-8977183395) at 2023-04-11 11:54 AM PDT -EdASalazar,2023-04-12T03:10:23Z,- EdASalazar opened issue: [4486](https://github.com/hackforla/website/issues/4486) at 2023-04-11 08:10 PM PDT -EdASalazar,2023-04-13T05:24:45Z,- EdASalazar assigned to issue: [4393](https://github.com/hackforla/website/issues/4393) at 2023-04-12 10:24 PM PDT -EdASalazar,2023-04-13T05:25:46Z,- EdASalazar commented on issue: [4393](https://github.com/hackforla/website/issues/4393#issuecomment-1506365948) at 2023-04-12 10:25 PM PDT -EdASalazar,2023-04-13T14:05:21Z,- EdASalazar opened pull request: [4500](https://github.com/hackforla/website/pull/4500) at 2023-04-13 07:05 AM PDT -EdASalazar,2023-04-14T01:33:30Z,- EdASalazar pull request merged: [4500](https://github.com/hackforla/website/pull/4500#event-9002657356) at 2023-04-13 06:33 PM PDT -EdASalazar,2023-04-25T00:48:24Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1521009883) at 2023-04-24 05:48 PM PDT -EdASalazar,2023-05-03T00:39:30Z,- EdASalazar assigned to issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1525181643) at 2023-05-02 05:39 PM PDT -EdASalazar,2023-05-03T00:43:02Z,- EdASalazar commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1532318414) at 2023-05-02 05:43 PM PDT -EdASalazar,2023-05-04T00:31:28Z,- EdASalazar commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1533913727) at 2023-05-03 05:31 PM PDT -EdASalazar,2023-05-05T06:42:02Z,- EdASalazar commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1535787623) at 2023-05-04 11:42 PM PDT -EdASalazar,2023-05-05T07:25:08Z,- EdASalazar opened pull request: [4603](https://github.com/hackforla/website/pull/4603) at 2023-05-05 12:25 AM PDT -EdASalazar,2023-05-08T23:41:04Z,- EdASalazar commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1539196424) at 2023-05-08 04:41 PM PDT -EdASalazar,2023-05-09T00:21:39Z,- EdASalazar unassigned from issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1539196424) at 2023-05-08 05:21 PM PDT -EdASalazar,2023-05-09T21:07:33Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1540892121) at 2023-05-09 02:07 PM PDT -EdASalazar,2023-05-10T02:57:26Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1541247590) at 2023-05-09 07:57 PM PDT -EdASalazar,2023-05-11T23:01:52Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1544802991) at 2023-05-11 04:01 PM PDT -EdASalazar,2023-05-13T07:35:41Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1546586634) at 2023-05-13 12:35 AM PDT -EdASalazar,2023-05-13T07:45:17Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1546588238) at 2023-05-13 12:45 AM PDT -EdASalazar,2023-05-14T02:04:47Z,- EdASalazar pull request merged: [4603](https://github.com/hackforla/website/pull/4603#event-9239444298) at 2023-05-13 07:04 PM PDT -EdASalazar,2023-05-14T19:45:13Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1546986512) at 2023-05-14 12:45 PM PDT -EdASalazar,2023-05-15T01:28:43Z,- EdASalazar assigned to issue: [4012](https://github.com/hackforla/website/issues/4012#event-9241187725) at 2023-05-14 06:28 PM PDT -EdASalazar,2023-05-24T02:34:12Z,- EdASalazar assigned to issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1548862779) at 2023-05-23 07:34 PM PDT -EdASalazar,2023-05-24T02:36:19Z,- EdASalazar commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1560376077) at 2023-05-23 07:36 PM PDT -EdASalazar,2023-05-27T07:23:50Z,- EdASalazar commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1565249991) at 2023-05-27 12:23 AM PDT -EdASalazar,2023-05-30T03:42:24Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1567716513) at 2023-05-29 08:42 PM PDT -EdASalazar,2023-05-30T04:33:46Z,- EdASalazar opened pull request: [4755](https://github.com/hackforla/website/pull/4755) at 2023-05-29 09:33 PM PDT -EdASalazar,2023-05-31T18:44:32Z,- EdASalazar submitted pull request review: [4750](https://github.com/hackforla/website/pull/4750#pullrequestreview-1453923568) at 2023-05-31 11:44 AM PDT -EdASalazar,2023-05-31T23:52:26Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1571105830) at 2023-05-31 04:52 PM PDT -EdASalazar,2023-06-05T04:04:09Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1576006459) at 2023-06-04 09:04 PM PDT -EdASalazar,2023-06-06T02:55:53Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1577820033) at 2023-06-05 07:55 PM PDT -EdASalazar,2023-06-06T18:42:23Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579275181) at 2023-06-06 11:42 AM PDT -EdASalazar,2023-06-06T23:03:17Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579574171) at 2023-06-06 04:03 PM PDT -EdASalazar,2023-06-06T23:11:39Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579580221) at 2023-06-06 04:11 PM PDT -EdASalazar,2023-06-07T18:20:18Z,- EdASalazar assigned to issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1547131193) at 2023-06-07 11:20 AM PDT -EdASalazar,2023-06-07T18:22:25Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1581305348) at 2023-06-07 11:22 AM PDT -EdASalazar,2023-06-09T04:04:35Z,- EdASalazar pull request merged: [4755](https://github.com/hackforla/website/pull/4755#event-9480020370) at 2023-06-08 09:04 PM PDT -EdASalazar,2023-06-12T00:39:14Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1586401764) at 2023-06-11 05:39 PM PDT -EdASalazar,2023-06-12T17:58:51Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1587812718) at 2023-06-12 10:58 AM PDT -EdASalazar,2023-06-20T07:28:34Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1598260931) at 2023-06-20 12:28 AM PDT -EdASalazar,2023-06-21T17:10:39Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1601255747) at 2023-06-21 10:10 AM PDT -EdASalazar,2023-06-26T18:01:06Z,- EdASalazar unassigned from issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1601255747) at 2023-06-26 11:01 AM PDT -EdASalazar,2023-07-06T23:09:27Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1624417300) at 2023-07-06 04:09 PM PDT -EdASalazar,2023-07-28T23:07:19Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1656426197) at 2023-07-28 04:07 PM PDT -Eddysunday012,7836,SKILLS ISSUE -Eddysunday012,2025-01-21T03:50:28Z,- Eddysunday012 opened issue: [7836](https://github.com/hackforla/website/issues/7836) at 2025-01-20 07:50 PM PST -Eddysunday012,2025-01-21T03:51:21Z,- Eddysunday012 assigned to issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2603602057) at 2025-01-20 07:51 PM PST -Eddysunday012,2025-01-21T04:11:28Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2603618735) at 2025-01-20 08:11 PM PST -Eddysunday012,2025-01-22T00:09:15Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2605996771) at 2025-01-21 04:09 PM PST -Eddysunday012,2025-01-22T00:11:44Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2605999602) at 2025-01-21 04:11 PM PST -Eddysunday012,2025-01-22T19:57:22Z,- Eddysunday012 assigned to issue: [7754](https://github.com/hackforla/website/issues/7754) at 2025-01-22 11:57 AM PST -Eddysunday012,2025-01-22T19:59:16Z,- Eddysunday012 commented on issue: [7754](https://github.com/hackforla/website/issues/7754#issuecomment-2608148027) at 2025-01-22 11:59 AM PST -Eddysunday012,2025-01-22T20:00:16Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2608149804) at 2025-01-22 12:00 PM PST -Eddysunday012,2025-01-22T22:25:52Z,- Eddysunday012 opened pull request: [7845](https://github.com/hackforla/website/pull/7845) at 2025-01-22 02:25 PM PST -Eddysunday012,2025-01-22T22:35:19Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2608408198) at 2025-01-22 02:35 PM PST -Eddysunday012,2025-01-22T22:36:44Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2608410154) at 2025-01-22 02:36 PM PST -Eddysunday012,2025-01-28T02:19:26Z,- Eddysunday012 commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2617605034) at 2025-01-27 06:19 PM PST -Eddysunday012,2025-02-03T01:49:58Z,- Eddysunday012 pull request merged: [7845](https://github.com/hackforla/website/pull/7845#event-16154739456) at 2025-02-02 05:49 PM PST -Eddysunday012,2025-02-03T23:25:52Z,- Eddysunday012 assigned to issue: [7479](https://github.com/hackforla/website/issues/7479) at 2025-02-03 03:25 PM PST -Eddysunday012,2025-02-03T23:26:41Z,- Eddysunday012 commented on issue: [7479](https://github.com/hackforla/website/issues/7479#issuecomment-2632405743) at 2025-02-03 03:26 PM PST -Eddysunday012,2025-02-03T23:58:20Z,- Eddysunday012 opened pull request: [7880](https://github.com/hackforla/website/pull/7880) at 2025-02-03 03:58 PM PST -Eddysunday012,2025-02-04T00:22:59Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2632479271) at 2025-02-03 04:22 PM PST -Eddysunday012,2025-02-06T19:58:29Z,- Eddysunday012 commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2640868079) at 2025-02-06 11:58 AM PST -Eddysunday012,2025-02-09T21:06:07Z,- Eddysunday012 pull request merged: [7880](https://github.com/hackforla/website/pull/7880#event-16239359374) at 2025-02-09 01:06 PM PST -Eddysunday012,2025-02-12T19:47:41Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2654695278) at 2025-02-12 11:47 AM PST -edeneault,2021-10-20T12:50:26Z,- edeneault assigned to issue: [2347](https://github.com/hackforla/website/issues/2347#issuecomment-939056090) at 2021-10-20 05:50 AM PDT -edeneault,2021-10-20T15:01:51Z,- edeneault opened pull request: [2381](https://github.com/hackforla/website/pull/2381) at 2021-10-20 08:01 AM PDT -edeneault,2021-10-22T22:17:00Z,- edeneault pull request merged: [2381](https://github.com/hackforla/website/pull/2381#event-5507350843) at 2021-10-22 03:17 PM PDT -edeneault,2021-10-22T23:45:55Z,- edeneault commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-950016731) at 2021-10-22 04:45 PM PDT -edeneault,2021-10-23T01:16:39Z,- edeneault commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-950034179) at 2021-10-22 06:16 PM PDT -edeneault,2021-10-23T04:01:43Z,- edeneault pull request merged: [2381](https://github.com/hackforla/website/pull/2381#event-5507790617) at 2021-10-22 09:01 PM PDT -edeneault,2021-10-24T13:22:28Z,- edeneault assigned to issue: [2048](https://github.com/hackforla/website/issues/2048) at 2021-10-24 06:22 AM PDT -edeneault,2021-10-24T14:42:27Z,- edeneault opened pull request: [2394](https://github.com/hackforla/website/pull/2394) at 2021-10-24 07:42 AM PDT -edeneault,2021-10-26T23:15:09Z,- edeneault commented on pull request: [2394](https://github.com/hackforla/website/pull/2394#issuecomment-952400448) at 2021-10-26 04:15 PM PDT -edeneault,2021-10-27T02:33:45Z,- edeneault pull request merged: [2394](https://github.com/hackforla/website/pull/2394#event-5524395736) at 2021-10-26 07:33 PM PDT -edeneault,2021-10-28T11:33:04Z,- edeneault assigned to issue: [2091](https://github.com/hackforla/website/issues/2091) at 2021-10-28 04:33 AM PDT -edeneault,2021-10-30T13:50:31Z,- edeneault commented on issue: [2091](https://github.com/hackforla/website/issues/2091#issuecomment-955237378) at 2021-10-30 06:50 AM PDT -edeneault,2021-11-01T16:40:21Z,- edeneault commented on issue: [1743](https://github.com/hackforla/website/issues/1743#issuecomment-956393424) at 2021-11-01 09:40 AM PDT -edeneault,2021-11-01T21:03:54Z,- edeneault opened pull request: [2420](https://github.com/hackforla/website/pull/2420) at 2021-11-01 02:03 PM PDT -edeneault,2021-11-04T13:43:06Z,- edeneault submitted pull request review: [2432](https://github.com/hackforla/website/pull/2432#pullrequestreview-797755720) at 2021-11-04 06:43 AM PDT -edeneault,2021-11-04T15:13:25Z,- edeneault assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-950470116) at 2021-11-04 08:13 AM PDT -edeneault,2021-11-04T16:25:27Z,- edeneault pull request merged: [2420](https://github.com/hackforla/website/pull/2420#event-5569481903) at 2021-11-04 09:25 AM PDT -edeneault,2021-11-05T21:54:05Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-962244321) at 2021-11-05 02:54 PM PDT -edeneault,2021-11-09T22:40:49Z,- edeneault submitted pull request review: [2452](https://github.com/hackforla/website/pull/2452#pullrequestreview-801958983) at 2021-11-09 02:40 PM PST -edeneault,2021-11-10T20:42:20Z,- edeneault submitted pull request review: [2469](https://github.com/hackforla/website/pull/2469#pullrequestreview-803123832) at 2021-11-10 12:42 PM PST -edeneault,2021-11-10T21:24:47Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-965757517) at 2021-11-10 01:24 PM PST -edeneault,2021-11-16T23:49:02Z,- edeneault opened pull request: [2494](https://github.com/hackforla/website/pull/2494) at 2021-11-16 03:49 PM PST -edeneault,2021-11-22T02:59:32Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651094776) at 2021-11-21 06:59 PM PST -edeneault,2021-11-22T06:17:01Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-975164735) at 2021-11-21 10:17 PM PST -edeneault,2021-11-22T06:17:01Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651619244) at 2021-11-21 10:17 PM PST -edeneault,2021-11-22T06:17:05Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651619244) at 2021-11-21 10:17 PM PST -edeneault,2021-11-22T06:23:12Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651640231) at 2021-11-21 10:23 PM PST -edeneault,2021-11-22T06:23:16Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651640231) at 2021-11-21 10:23 PM PST -edeneault,2021-11-22T06:46:30Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651727033) at 2021-11-21 10:46 PM PST -edeneault,2021-11-22T06:46:32Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651727033) at 2021-11-21 10:46 PM PST -edeneault,2021-11-22T06:50:29Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651739327) at 2021-11-21 10:50 PM PST -edeneault,2021-11-22T06:50:31Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651739327) at 2021-11-21 10:50 PM PST -edeneault,2021-11-22T07:04:24Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651787847) at 2021-11-21 11:04 PM PST -edeneault,2021-11-22T07:04:26Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651787847) at 2021-11-21 11:04 PM PST -edeneault,2021-11-22T07:06:54Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651799208) at 2021-11-21 11:06 PM PST -edeneault,2021-11-22T07:06:56Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651799208) at 2021-11-21 11:06 PM PST -edeneault,2021-11-22T07:08:33Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651806635) at 2021-11-21 11:08 PM PST -edeneault,2021-11-22T07:08:37Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651806635) at 2021-11-21 11:08 PM PST -edeneault,2021-11-22T07:14:31Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651831723) at 2021-11-21 11:14 PM PST -edeneault,2021-11-22T07:14:34Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651831723) at 2021-11-21 11:14 PM PST -edeneault,2021-11-22T07:31:02Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-975203533) at 2021-11-21 11:31 PM PST -edeneault,2021-11-24T17:51:07Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668584136) at 2021-11-24 09:51 AM PST -edeneault,2021-11-24T17:51:10Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668584136) at 2021-11-24 09:51 AM PST -edeneault,2021-11-24T17:56:14Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-978103530) at 2021-11-24 09:56 AM PST -edeneault,2021-11-24T18:02:57Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668640039) at 2021-11-24 10:02 AM PST -edeneault,2021-11-24T18:03:00Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668640039) at 2021-11-24 10:03 AM PST -edeneault,2021-11-24T18:06:54Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668658921) at 2021-11-24 10:06 AM PST -edeneault,2021-11-24T18:06:57Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668658921) at 2021-11-24 10:06 AM PST -edeneault,2021-11-24T18:15:54Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668699215) at 2021-11-24 10:15 AM PST -edeneault,2021-11-24T18:15:56Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668699215) at 2021-11-24 10:15 AM PST -edeneault,2021-11-24T18:21:57Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668726946) at 2021-11-24 10:21 AM PST -edeneault,2021-11-24T18:21:59Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668726946) at 2021-11-24 10:21 AM PST -edeneault,2021-11-24T18:23:55Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668735948) at 2021-11-24 10:23 AM PST -edeneault,2021-11-24T18:23:57Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668735948) at 2021-11-24 10:23 AM PST -edeneault,2021-11-24T18:25:48Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668744689) at 2021-11-24 10:25 AM PST -edeneault,2021-11-24T18:25:51Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668744689) at 2021-11-24 10:25 AM PST -edeneault,2021-11-24T18:27:34Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668752122) at 2021-11-24 10:27 AM PST -edeneault,2021-11-24T18:27:36Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668752122) at 2021-11-24 10:27 AM PST -edeneault,2021-11-24T18:49:51Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668845232) at 2021-11-24 10:49 AM PST -edeneault,2021-11-24T18:49:54Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668845232) at 2021-11-24 10:49 AM PST -edeneault,2021-11-29T18:57:01Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-981921457) at 2021-11-29 10:57 AM PST -edeneault,2021-11-29T18:57:48Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5687036542) at 2021-11-29 10:57 AM PST -edeneault,2021-11-29T18:57:50Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5687036542) at 2021-11-29 10:57 AM PST -edeneault,2021-11-29T18:59:55Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5687046693) at 2021-11-29 10:59 AM PST -edeneault,2021-11-29T18:59:57Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5687046693) at 2021-11-29 10:59 AM PST -edeneault,2021-12-04T14:25:58Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-986036340) at 2021-12-04 06:25 AM PST -edeneault,2021-12-13T01:07:27Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5753611496) at 2021-12-12 05:07 PM PST -edeneault,2021-12-13T13:25:13Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-992474121) at 2021-12-13 05:25 AM PST -edeneault,2021-12-13T13:28:16Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-992476795) at 2021-12-13 05:28 AM PST -edeneault,2021-12-30T09:21:45Z,- edeneault unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1002941219) at 2021-12-30 01:21 AM PST -edwarddim,8137,SKILLS ISSUE -edwarddim,2025-05-14T03:10:55Z,- edwarddim opened issue: [8137](https://github.com/hackforla/website/issues/8137) at 2025-05-13 08:10 PM PDT -edwarddim,2025-05-14T03:10:55Z,- edwarddim assigned to issue: [8137](https://github.com/hackforla/website/issues/8137) at 2025-05-13 08:10 PM PDT -edwarddim,2025-06-26T23:37:21Z,- edwarddim commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-3010636739) at 2025-06-26 04:37 PM PDT -edwarddim,2025-06-26T23:39:06Z,- edwarddim commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-3010644168) at 2025-06-26 04:39 PM PDT -edwarddim,2025-06-26T23:43:57Z,- edwarddim assigned to issue: [8015](https://github.com/hackforla/website/issues/8015) at 2025-06-26 04:43 PM PDT -edwarddim,2025-06-27T00:05:09Z,- edwarddim opened pull request: [8231](https://github.com/hackforla/website/pull/8231) at 2025-06-26 05:05 PM PDT -edwarddim,2025-06-27T23:50:02Z,- edwarddim commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014665803) at 2025-06-27 04:50 PM PDT -edwarddim,2025-06-28T02:45:57Z,- edwarddim commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014860495) at 2025-06-27 07:45 PM PDT -edwarddim,2025-07-06T10:46:17Z,- edwarddim pull request merged: [8231](https://github.com/hackforla/website/pull/8231#event-18490987526) at 2025-07-06 03:46 AM PDT -edwarddim,2025-08-01T23:04:33Z,- edwarddim assigned to issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-3014991321) at 2025-08-01 04:04 PM PDT -edwarddim,2025-08-02T04:05:24Z,- edwarddim opened pull request: [8253](https://github.com/hackforla/website/pull/8253) at 2025-08-01 09:05 PM PDT -edwarddim,2025-08-05T06:03:22Z,- edwarddim commented on pull request: [8253](https://github.com/hackforla/website/pull/8253#issuecomment-3153496039) at 2025-08-04 11:03 PM PDT -edwardsarah,2023-02-02T19:27:37Z,- edwardsarah opened issue: [3925](https://github.com/hackforla/website/issues/3925) at 2023-02-02 11:27 AM PST -edwardsarah,2023-04-17T06:37:29Z,- edwardsarah opened issue: [4529](https://github.com/hackforla/website/issues/4529) at 2023-04-16 11:37 PM PDT -edwardsarah,2023-09-01T12:53:20Z,- edwardsarah opened issue: [5407](https://github.com/hackforla/website/issues/5407) at 2023-09-01 05:53 AM PDT -edwardsarah,2023-11-01T09:15:30Z,- edwardsarah commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1788642960) at 2023-11-01 02:15 AM PDT -edwardsarah,2024-02-23T13:58:34Z,- edwardsarah opened issue: [6364](https://github.com/hackforla/website/issues/6364) at 2024-02-23 05:58 AM PST -edwardsarah,2024-03-15T15:35:27Z,- edwardsarah opened issue: [6466](https://github.com/hackforla/website/issues/6466) at 2024-03-15 08:35 AM PDT -edwardsarah,2024-08-09T15:01:46Z,- edwardsarah opened issue: [7259](https://github.com/hackforla/website/issues/7259) at 2024-08-09 08:01 AM PDT -efranzener,5226,SKILLS ISSUE -efranzener,2023-08-15T03:43:11Z,- efranzener opened issue: [5226](https://github.com/hackforla/website/issues/5226) at 2023-08-14 08:43 PM PDT -efranzener,2023-08-15T03:43:36Z,- efranzener assigned to issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1678385410) at 2023-08-14 08:43 PM PDT -efranzener,2023-08-27T21:35:08Z,- efranzener assigned to issue: [5286](https://github.com/hackforla/website/issues/5286#issuecomment-1689197581) at 2023-08-27 02:35 PM PDT -efranzener,2023-08-28T16:26:46Z,- efranzener commented on issue: [5286](https://github.com/hackforla/website/issues/5286#issuecomment-1695986341) at 2023-08-28 09:26 AM PDT -efranzener,2023-08-28T16:33:29Z,- efranzener commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1695999055) at 2023-08-28 09:33 AM PDT -efranzener,2023-09-04T01:45:41Z,- efranzener opened pull request: [5434](https://github.com/hackforla/website/pull/5434) at 2023-09-03 06:45 PM PDT -efranzener,2023-09-09T06:46:34Z,- efranzener commented on pull request: [5434](https://github.com/hackforla/website/pull/5434#issuecomment-1712434694) at 2023-09-08 11:46 PM PDT -efranzener,2023-09-13T03:58:36Z,- efranzener commented on pull request: [5434](https://github.com/hackforla/website/pull/5434#issuecomment-1716904484) at 2023-09-12 08:58 PM PDT -efranzener,2023-09-13T05:45:39Z,- efranzener assigned to issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1711075060) at 2023-09-12 10:45 PM PDT -efranzener,2023-09-13T05:56:45Z,- efranzener commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1716993152) at 2023-09-12 10:56 PM PDT -efranzener,2023-09-19T21:12:01Z,- efranzener pull request merged: [5434](https://github.com/hackforla/website/pull/5434#event-10415367077) at 2023-09-19 02:12 PM PDT -efranzener,2023-09-20T01:53:13Z,- efranzener opened pull request: [5558](https://github.com/hackforla/website/pull/5558) at 2023-09-19 06:53 PM PDT -efranzener,2023-09-24T15:48:16Z,- efranzener pull request merged: [5558](https://github.com/hackforla/website/pull/5558#event-10455445731) at 2023-09-24 08:48 AM PDT -efranzener,2023-09-28T13:26:11Z,- efranzener assigned to issue: [5596](https://github.com/hackforla/website/issues/5596) at 2023-09-28 06:26 AM PDT -efranzener,2023-09-28T13:34:45Z,- efranzener commented on issue: [5596](https://github.com/hackforla/website/issues/5596#issuecomment-1739199234) at 2023-09-28 06:34 AM PDT -efranzener,2023-10-07T04:53:34Z,- efranzener commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1751600485) at 2023-10-06 09:53 PM PDT -efrenmarin45,2020-07-05T19:08:45Z,- efrenmarin45 assigned to issue: [593](https://github.com/hackforla/website/issues/593) at 2020-07-05 12:08 PM PDT -efrenmarin45,2020-07-06T02:40:28Z,- efrenmarin45 opened pull request: [596](https://github.com/hackforla/website/pull/596) at 2020-07-05 07:40 PM PDT -efrenmarin45,2020-07-06T02:42:11Z,- efrenmarin45 commented on issue: [593](https://github.com/hackforla/website/issues/593#issuecomment-653985664) at 2020-07-05 07:42 PM PDT -efrenmarin45,2020-07-07T22:09:22Z,- efrenmarin45 pull request merged: [596](https://github.com/hackforla/website/pull/596#event-3522504768) at 2020-07-07 03:09 PM PDT -efrenmarin45,2020-07-19T17:59:27Z,- efrenmarin45 assigned to issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-650898496) at 2020-07-19 10:59 AM PDT -efrenmarin45,2020-07-22T10:58:00Z,- efrenmarin45 opened pull request: [627](https://github.com/hackforla/website/pull/627) at 2020-07-22 03:58 AM PDT -efrenmarin45,2020-07-22T11:00:55Z,- efrenmarin45 pull request closed w/o merging: [627](https://github.com/hackforla/website/pull/627#event-3575244963) at 2020-07-22 04:00 AM PDT -efrenmarin45,2020-07-22T11:15:47Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-662395406) at 2020-07-22 04:15 AM PDT -efrenmarin45,2020-07-26T08:15:59Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-663957140) at 2020-07-26 01:15 AM PDT -efrenmarin45,2020-07-26T08:29:33Z,- efrenmarin45 opened pull request: [633](https://github.com/hackforla/website/pull/633) at 2020-07-26 01:29 AM PDT -efrenmarin45,2020-07-26T17:52:38Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-664020062) at 2020-07-26 10:52 AM PDT -efrenmarin45,2020-07-26T17:55:22Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-664020328) at 2020-07-26 10:55 AM PDT -efrenmarin45,2020-07-26T17:55:49Z,- efrenmarin45 pull request closed w/o merging: [633](https://github.com/hackforla/website/pull/633#event-3587279712) at 2020-07-26 10:55 AM PDT -efrenmarin45,2020-07-26T18:04:39Z,- efrenmarin45 opened pull request: [640](https://github.com/hackforla/website/pull/640) at 2020-07-26 11:04 AM PDT -efrenmarin45,2020-07-28T02:43:50Z,- efrenmarin45 opened issue: [651](https://github.com/hackforla/website/issues/651) at 2020-07-27 07:43 PM PDT -efrenmarin45,2020-07-28T02:56:46Z,- efrenmarin45 assigned to issue: [651](https://github.com/hackforla/website/issues/651) at 2020-07-27 07:56 PM PDT -efrenmarin45,2020-07-29T02:15:28Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-665390317) at 2020-07-28 07:15 PM PDT -efrenmarin45,2020-07-29T02:19:44Z,- efrenmarin45 opened pull request: [654](https://github.com/hackforla/website/pull/654) at 2020-07-28 07:19 PM PDT -efrenmarin45,2020-07-29T02:45:12Z,- efrenmarin45 pull request closed w/o merging: [654](https://github.com/hackforla/website/pull/654#event-3597021094) at 2020-07-28 07:45 PM PDT -efrenmarin45,2020-07-29T02:47:17Z,- efrenmarin45 opened pull request: [655](https://github.com/hackforla/website/pull/655) at 2020-07-28 07:47 PM PDT -efrenmarin45,2020-07-29T03:04:34Z,- efrenmarin45 pull request merged: [640](https://github.com/hackforla/website/pull/640#event-3597056148) at 2020-07-28 08:04 PM PDT -efrenmarin45,2020-07-29T03:07:46Z,- efrenmarin45 pull request merged: [655](https://github.com/hackforla/website/pull/655#event-3597061449) at 2020-07-28 08:07 PM PDT -efrenmarin45,2020-08-06T23:04:54Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-670233304) at 2020-08-06 04:04 PM PDT -efrenmarin45,2020-08-06T23:06:14Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-670233688) at 2020-08-06 04:06 PM PDT -efrenmarin45,2020-08-06T23:10:12Z,- efrenmarin45 opened pull request: [673](https://github.com/hackforla/website/pull/673) at 2020-08-06 04:10 PM PDT -efrenmarin45,2020-08-13T23:06:45Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-673752550) at 2020-08-13 04:06 PM PDT -efrenmarin45,2020-08-16T12:54:05Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-674523170) at 2020-08-16 05:54 AM PDT -efrenmarin45,2020-08-16T13:00:05Z,- efrenmarin45 commented on pull request: [673](https://github.com/hackforla/website/pull/673#issuecomment-674523794) at 2020-08-16 06:00 AM PDT -efrenmarin45,2020-08-16T18:23:23Z,- efrenmarin45 assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-674478603) at 2020-08-16 11:23 AM PDT -efrenmarin45,2020-08-18T03:41:24Z,- efrenmarin45 closed issue by PR 673: [651](https://github.com/hackforla/website/issues/651#event-3664412839) at 2020-08-17 08:41 PM PDT -efrenmarin45,2020-08-18T03:41:24Z,- efrenmarin45 pull request merged: [673](https://github.com/hackforla/website/pull/673#event-3664412842) at 2020-08-17 08:41 PM PDT -efrenmarin45,2020-08-18T03:52:12Z,- efrenmarin45 opened pull request: [687](https://github.com/hackforla/website/pull/687) at 2020-08-17 08:52 PM PDT -efrenmarin45,2020-08-24T21:41:46Z,- efrenmarin45 pull request closed w/o merging: [687](https://github.com/hackforla/website/pull/687#event-3687338133) at 2020-08-24 02:41 PM PDT -efrenmarin45,2020-08-29T06:14:59Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683244068) at 2020-08-28 11:14 PM PDT -efrenmarin45,2020-08-29T06:16:12Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683244196) at 2020-08-28 11:16 PM PDT -efrenmarin45,2020-08-29T06:23:08Z,- efrenmarin45 opened pull request: [709](https://github.com/hackforla/website/pull/709) at 2020-08-28 11:23 PM PDT -efrenmarin45,2020-08-29T06:38:54Z,- efrenmarin45 pull request closed w/o merging: [709](https://github.com/hackforla/website/pull/709#event-3706242682) at 2020-08-28 11:38 PM PDT -efrenmarin45,2020-08-29T06:42:41Z,- efrenmarin45 opened pull request: [710](https://github.com/hackforla/website/pull/710) at 2020-08-28 11:42 PM PDT -efrenmarin45,2020-08-29T06:52:59Z,- efrenmarin45 pull request closed w/o merging: [710](https://github.com/hackforla/website/pull/710#event-3706250213) at 2020-08-28 11:52 PM PDT -efrenmarin45,2020-08-29T06:54:55Z,- efrenmarin45 opened pull request: [711](https://github.com/hackforla/website/pull/711) at 2020-08-28 11:54 PM PDT -efrenmarin45,2020-08-29T08:09:55Z,- efrenmarin45 commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683255014) at 2020-08-29 01:09 AM PDT -efrenmarin45,2020-08-30T09:56:21Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683400395) at 2020-08-30 02:56 AM PDT -efrenmarin45,2020-08-30T12:38:53Z,- efrenmarin45 commented on pull request: [711](https://github.com/hackforla/website/pull/711#issuecomment-683415690) at 2020-08-30 05:38 AM PDT -efrenmarin45,2020-08-30T12:38:53Z,- efrenmarin45 pull request closed w/o merging: [711](https://github.com/hackforla/website/pull/711#event-3707275286) at 2020-08-30 05:38 AM PDT -efrenmarin45,2020-08-30T12:40:14Z,- efrenmarin45 opened pull request: [712](https://github.com/hackforla/website/pull/712) at 2020-08-30 05:40 AM PDT -efrenmarin45,2020-08-30T12:43:44Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683416183) at 2020-08-30 05:43 AM PDT -efrenmarin45,2020-08-30T12:45:44Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683416398) at 2020-08-30 05:45 AM PDT -efrenmarin45,2020-09-06T07:45:59Z,- efrenmarin45 commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-687718419) at 2020-09-06 12:45 AM PDT -efrenmarin45,2020-09-11T03:39:50Z,- efrenmarin45 commented on pull request: [712](https://github.com/hackforla/website/pull/712#issuecomment-690854661) at 2020-09-10 08:39 PM PDT -efrenmarin45,2020-09-11T04:26:08Z,- efrenmarin45 opened issue: [725](https://github.com/hackforla/website/issues/725) at 2020-09-10 09:26 PM PDT -efrenmarin45,2020-09-11T20:26:41Z,- efrenmarin45 pull request merged: [712](https://github.com/hackforla/website/pull/712#event-3757915140) at 2020-09-11 01:26 PM PDT -efrenmarin45,2020-09-21T17:47:54Z,- efrenmarin45 commented on pull request: [742](https://github.com/hackforla/website/pull/742#issuecomment-696268906) at 2020-09-21 10:47 AM PDT -efrenmarin45,2020-09-21T17:48:54Z,- efrenmarin45 submitted pull request review: [742](https://github.com/hackforla/website/pull/742#pullrequestreview-492847128) at 2020-09-21 10:48 AM PDT -efrenmarin45,2020-12-06T07:12:19Z,- efrenmarin45 opened issue: [827](https://github.com/hackforla/website/issues/827) at 2020-12-05 11:12 PM PST -efrenmarin45,2020-12-08T03:52:31Z,- efrenmarin45 submitted pull request review: [837](https://github.com/hackforla/website/pull/837#pullrequestreview-546725771) at 2020-12-07 07:52 PM PST -efrenmarin45,2021-03-08T20:59:53Z,- efrenmarin45 commented on issue: [1167](https://github.com/hackforla/website/issues/1167#issuecomment-793073205) at 2021-03-08 12:59 PM PST -efrenmarin45,2021-03-08T20:59:58Z,- efrenmarin45 assigned to issue: [1167](https://github.com/hackforla/website/issues/1167#issuecomment-793073205) at 2021-03-08 12:59 PM PST -efrenmarin45,2021-03-08T21:05:23Z,- efrenmarin45 opened pull request: [1173](https://github.com/hackforla/website/pull/1173) at 2021-03-08 01:05 PM PST -efrenmarin45,2021-03-08T22:38:29Z,- efrenmarin45 pull request closed w/o merging: [1173](https://github.com/hackforla/website/pull/1173#event-4423966873) at 2021-03-08 02:38 PM PST -efrenmarin45,2021-03-08T23:34:20Z,- efrenmarin45 opened pull request: [1176](https://github.com/hackforla/website/pull/1176) at 2021-03-08 03:34 PM PST -efrenmarin45,2021-03-09T23:10:45Z,- efrenmarin45 commented on pull request: [1176](https://github.com/hackforla/website/pull/1176#issuecomment-794584181) at 2021-03-09 03:10 PM PST -efrenmarin45,2021-03-10T01:11:40Z,- efrenmarin45 pull request merged: [1176](https://github.com/hackforla/website/pull/1176#event-4432555859) at 2021-03-09 05:11 PM PST -Ekuo79,2024-02-12T00:44:05Z,- Ekuo79 opened pull request: [6280](https://github.com/hackforla/website/pull/6280) at 2024-02-11 04:44 PM PST -Ekuo79,2024-02-12T05:00:06Z,- Ekuo79 pull request closed w/o merging: [6280](https://github.com/hackforla/website/pull/6280#event-11769950017) at 2024-02-11 09:00 PM PST -Eleftherios01,2024-09-22T18:38:46Z,- Eleftherios01 opened issue: [7506](https://github.com/hackforla/website/issues/7506) at 2024-09-22 11:38 AM PDT -Eleftherios01,2024-09-22T18:38:50Z,- Eleftherios01 assigned to issue: [7506](https://github.com/hackforla/website/issues/7506) at 2024-09-22 11:38 AM PDT -Eleftherios01,2024-10-06T17:17:26Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2395514084) at 2024-10-06 10:17 AM PDT -Eleftherios01,2024-11-10T15:40:43Z,- Eleftherios01 commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-2466781931) at 2024-11-10 07:40 AM PST -Eleftherios01,2024-11-10T17:10:28Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2466812656) at 2024-11-10 09:10 AM PST -Eleftherios01,2024-11-17T10:43:50Z,- Eleftherios01 opened issue: [7725](https://github.com/hackforla/website/issues/7725) at 2024-11-17 02:43 AM PST -Eleftherios01,2024-11-17T10:43:51Z,- Eleftherios01 assigned to issue: [7725](https://github.com/hackforla/website/issues/7725) at 2024-11-17 02:43 AM PST -Eleftherios01,2024-11-24T17:28:02Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2496123255) at 2024-11-24 09:28 AM PST -Eleftherios01,2025-01-12T09:37:24Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2585660800) at 2025-01-12 01:37 AM PST -Eleftherios01,2025-01-19T18:42:01Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2600976125) at 2025-01-19 10:42 AM PST -Eleftherios01,2025-01-26T10:19:23Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2614312762) at 2025-01-26 02:19 AM PST -Eleftherios01,2025-02-02T16:51:37Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2629469838) at 2025-02-02 08:51 AM PST -Eleftherios01,2025-02-02T16:52:59Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2629470277) at 2025-02-02 08:52 AM PST -Eleftherios01,2025-02-23T13:34:00Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2676865457) at 2025-02-23 05:34 AM PST -Eleftherios01,2025-03-09T16:31:06Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2708948369) at 2025-03-09 09:31 AM PDT -Eleftherios01,2025-03-30T12:56:37Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764551715) at 2025-03-30 05:56 AM PDT -Eleftherios01,2025-03-30T13:41:33Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764569216) at 2025-03-30 06:41 AM PDT -Eleftherios01,2025-04-13T10:15:36Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2799892538) at 2025-04-13 03:15 AM PDT -Eleftherios01,2025-05-02T20:47:32Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2848093475) at 2025-05-02 01:47 PM PDT -Eleftherios01,2025-05-02T21:01:35Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2848114090) at 2025-05-02 02:01 PM PDT -Eleftherios01,2025-05-04T16:22:01Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2849299267) at 2025-05-04 09:22 AM PDT -Eleftherios01,2025-06-08T08:58:58Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2953782663) at 2025-06-08 01:58 AM PDT -Eleftherios06,2024-06-26T19:26:33Z,- Eleftherios06 assigned to issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2184186285) at 2024-06-26 12:26 PM PDT -elenanewbrough,2020-12-08T21:53:55Z,- elenanewbrough assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:53 PM PST -elenanewbrough,2020-12-08T21:54:12Z,- elenanewbrough unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -elenanewbrough,2020-12-08T21:54:35Z,- elenanewbrough assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -elenanewbrough,2021-01-10T20:38:35Z,- elenanewbrough unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -elisetvy,6601,SKILLS ISSUE -elisetvy,2024-04-09T02:52:19Z,- elisetvy opened issue: [6601](https://github.com/hackforla/website/issues/6601) at 2024-04-08 07:52 PM PDT -elisetvy,2024-04-09T02:52:47Z,- elisetvy assigned to issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2044061380) at 2024-04-08 07:52 PM PDT -elisetvy,2024-04-09T20:21:09Z,- elisetvy assigned to issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2035422466) at 2024-04-09 01:21 PM PDT -elisetvy,2024-04-09T21:39:22Z,- elisetvy commented on issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2046093211) at 2024-04-09 02:39 PM PDT -elisetvy,2024-04-10T22:56:55Z,- elisetvy opened pull request: [6617](https://github.com/hackforla/website/pull/6617) at 2024-04-10 03:56 PM PDT -elisetvy,2024-04-10T23:00:40Z,- elisetvy commented on issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2048570512) at 2024-04-10 04:00 PM PDT -elisetvy,2024-04-12T21:09:41Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2052536289) at 2024-04-12 02:09 PM PDT -elisetvy,2024-04-13T14:54:16Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053669010) at 2024-04-13 07:54 AM PDT -elisetvy,2024-04-17T17:04:29Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2061783126) at 2024-04-17 10:04 AM PDT -elisetvy,2024-04-17T17:14:18Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2061798782) at 2024-04-17 10:14 AM PDT -elisetvy,2024-04-17T17:23:03Z,- elisetvy commented on pull request: [6656](https://github.com/hackforla/website/pull/6656#issuecomment-2061812692) at 2024-04-17 10:23 AM PDT -elisetvy,2024-04-17T17:41:23Z,- elisetvy submitted pull request review: [6656](https://github.com/hackforla/website/pull/6656#pullrequestreview-2006715314) at 2024-04-17 10:41 AM PDT -elisetvy,2024-04-18T19:54:19Z,- elisetvy submitted pull request review: [6681](https://github.com/hackforla/website/pull/6681#pullrequestreview-2009763743) at 2024-04-18 12:54 PM PDT -elisetvy,2024-04-18T21:54:22Z,- elisetvy pull request merged: [6617](https://github.com/hackforla/website/pull/6617#event-12529601574) at 2024-04-18 02:54 PM PDT -elisetvy,2024-04-18T22:51:58Z,- elisetvy assigned to issue: [6238](https://github.com/hackforla/website/issues/6238) at 2024-04-18 03:51 PM PDT -elisetvy,2024-04-18T22:55:54Z,- elisetvy commented on issue: [6238](https://github.com/hackforla/website/issues/6238#issuecomment-2065454017) at 2024-04-18 03:55 PM PDT -elisetvy,2024-04-22T20:01:42Z,- elisetvy commented on issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2070853892) at 2024-04-22 01:01 PM PDT -elisetvy,2024-04-24T16:20:33Z,- elisetvy opened pull request: [6744](https://github.com/hackforla/website/pull/6744) at 2024-04-24 09:20 AM PDT -elisetvy,2024-04-24T17:01:22Z,- elisetvy closed issue as completed: [6601](https://github.com/hackforla/website/issues/6601#event-12595322683) at 2024-04-24 10:01 AM PDT -elisetvy,2024-04-28T19:10:23Z,- elisetvy commented on pull request: [6744](https://github.com/hackforla/website/pull/6744#issuecomment-2081606316) at 2024-04-28 12:10 PM PDT -elisetvy,2024-04-28T19:29:02Z,- elisetvy pull request merged: [6744](https://github.com/hackforla/website/pull/6744#event-12635653121) at 2024-04-28 12:29 PM PDT -elisetvy,2024-04-29T20:43:42Z,- elisetvy assigned to issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059537181) at 2024-04-29 01:43 PM PDT -elisetvy,2024-04-29T20:56:40Z,- elisetvy submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2029621582) at 2024-04-29 01:56 PM PDT -elisetvy,2024-04-29T21:00:22Z,- elisetvy commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2083653651) at 2024-04-29 02:00 PM PDT -elisetvy,2024-05-01T19:18:56Z,- elisetvy opened pull request: [6802](https://github.com/hackforla/website/pull/6802) at 2024-05-01 12:18 PM PDT -elisetvy,2024-05-02T00:02:20Z,- elisetvy commented on pull request: [6802](https://github.com/hackforla/website/pull/6802#issuecomment-2089312695) at 2024-05-01 05:02 PM PDT -elisetvy,2024-05-02T00:51:49Z,- elisetvy pull request merged: [6802](https://github.com/hackforla/website/pull/6802#event-12676375066) at 2024-05-01 05:51 PM PDT -elisetvy,2024-05-02T01:22:26Z,- elisetvy assigned to issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-1928584033) at 2024-05-01 06:22 PM PDT -elisetvy,2024-05-02T01:23:33Z,- elisetvy commented on issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-2089375732) at 2024-05-01 06:23 PM PDT -elisetvy,2024-05-02T01:30:55Z,- elisetvy submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2034681384) at 2024-05-01 06:30 PM PDT -elisetvy,2024-05-08T16:20:14Z,- elisetvy opened pull request: [6839](https://github.com/hackforla/website/pull/6839) at 2024-05-08 09:20 AM PDT -elisetvy,2024-05-09T19:44:51Z,- elisetvy pull request merged: [6839](https://github.com/hackforla/website/pull/6839#event-12761393321) at 2024-05-09 12:44 PM PDT -elisetvy,2024-06-05T18:56:01Z,- elisetvy assigned to issue: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-05 11:56 AM PDT -elisetvy,2024-06-05T19:25:33Z,- elisetvy commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-2150798160) at 2024-06-05 12:25 PM PDT -elisetvy,2024-06-05T19:45:19Z,- elisetvy opened pull request: [6961](https://github.com/hackforla/website/pull/6961) at 2024-06-05 12:45 PM PDT -elisetvy,2024-06-06T17:06:21Z,- elisetvy pull request merged: [6961](https://github.com/hackforla/website/pull/6961#event-13069824967) at 2024-06-06 10:06 AM PDT -elizabethhonest,2021-09-30T04:15:11Z,- elizabethhonest opened issue: [2318](https://github.com/hackforla/website/issues/2318) at 2021-09-29 09:15 PM PDT -elizabethhonest,2021-09-30T04:27:54Z,- elizabethhonest opened issue: [2319](https://github.com/hackforla/website/issues/2319) at 2021-09-29 09:27 PM PDT -elizabethhonest,2021-09-30T04:30:47Z,- elizabethhonest opened pull request: [2320](https://github.com/hackforla/website/pull/2320) at 2021-09-29 09:30 PM PDT -elizabethhonest,2021-09-30T04:31:14Z,- elizabethhonest pull request closed w/o merging: [2320](https://github.com/hackforla/website/pull/2320#event-5384888671) at 2021-09-29 09:31 PM PDT -elizabethhonest,2021-09-30T04:56:10Z,- elizabethhonest opened pull request: [2321](https://github.com/hackforla/website/pull/2321) at 2021-09-29 09:56 PM PDT -elizabethhonest,2021-09-30T04:56:54Z,- elizabethhonest pull request closed w/o merging: [2321](https://github.com/hackforla/website/pull/2321#event-5384958199) at 2021-09-29 09:56 PM PDT -elizabethhonest,2021-10-01T01:46:00Z,- elizabethhonest opened pull request: [2322](https://github.com/hackforla/website/pull/2322) at 2021-09-30 06:46 PM PDT -elizabethhonest,2021-10-01T01:46:38Z,- elizabethhonest pull request closed w/o merging: [2322](https://github.com/hackforla/website/pull/2322#event-5391270557) at 2021-09-30 06:46 PM PDT -elizabethhonest,2021-10-01T02:07:15Z,- elizabethhonest opened pull request: [2323](https://github.com/hackforla/website/pull/2323) at 2021-09-30 07:07 PM PDT -elizabethhonest,2021-10-03T15:57:10Z,- elizabethhonest pull request closed w/o merging: [2323](https://github.com/hackforla/website/pull/2323#event-5399997864) at 2021-10-03 08:57 AM PDT -elizabethhonest,2021-10-03T15:58:28Z,- elizabethhonest opened pull request: [2325](https://github.com/hackforla/website/pull/2325) at 2021-10-03 08:58 AM PDT -elizabethhonest,2021-10-03T15:58:58Z,- elizabethhonest opened issue: [2326](https://github.com/hackforla/website/issues/2326) at 2021-10-03 08:58 AM PDT -elizabethhonest,2021-10-03T16:11:33Z,- elizabethhonest opened issue: [2327](https://github.com/hackforla/website/issues/2327) at 2021-10-03 09:11 AM PDT -elizabethhonest,2021-10-03T16:30:15Z,- elizabethhonest opened issue: [2329](https://github.com/hackforla/website/issues/2329) at 2021-10-03 09:30 AM PDT -elizabethhonest,2021-10-03T16:36:34Z,- elizabethhonest opened issue: [2330](https://github.com/hackforla/website/issues/2330) at 2021-10-03 09:36 AM PDT -elizabethhonest,2021-10-03T16:38:49Z,- elizabethhonest opened issue: [2331](https://github.com/hackforla/website/issues/2331) at 2021-10-03 09:38 AM PDT -elizabethhonest,2021-10-05T18:04:43Z,- elizabethhonest opened issue: [2335](https://github.com/hackforla/website/issues/2335) at 2021-10-05 11:04 AM PDT -elizabethhonest,2021-10-05T18:17:09Z,- elizabethhonest opened issue: [2336](https://github.com/hackforla/website/issues/2336) at 2021-10-05 11:17 AM PDT -elizabethhonest,2021-10-05T18:27:11Z,- elizabethhonest opened issue: [2337](https://github.com/hackforla/website/issues/2337) at 2021-10-05 11:27 AM PDT -elizabethhonest,2021-10-05T18:35:08Z,- elizabethhonest pull request closed w/o merging: [2325](https://github.com/hackforla/website/pull/2325#event-5412681116) at 2021-10-05 11:35 AM PDT -elizabethhonest,2021-10-07T03:17:14Z,- elizabethhonest opened pull request: [2343](https://github.com/hackforla/website/pull/2343) at 2021-10-06 08:17 PM PDT -elizabethhonest,2021-10-07T13:50:19Z,- elizabethhonest pull request merged: [2343](https://github.com/hackforla/website/pull/2343#event-5428690153) at 2021-10-07 06:50 AM PDT -elizabethhonest,2021-11-01T22:29:37Z,- elizabethhonest opened issue: [2422](https://github.com/hackforla/website/issues/2422) at 2021-11-01 03:29 PM PDT -elizabethhonest,2021-11-05T18:42:26Z,- elizabethhonest opened issue: [2454](https://github.com/hackforla/website/issues/2454) at 2021-11-05 11:42 AM PDT -elizabethhonest,2021-11-14T16:09:36Z,- elizabethhonest opened pull request: [2478](https://github.com/hackforla/website/pull/2478) at 2021-11-14 08:09 AM PST -elizabethhonest,2021-11-14T16:30:53Z,- elizabethhonest pull request merged: [2478](https://github.com/hackforla/website/pull/2478#event-5614469802) at 2021-11-14 08:30 AM PST -elizabethhonest,2021-11-21T16:12:04Z,- elizabethhonest opened issue: [2503](https://github.com/hackforla/website/issues/2503) at 2021-11-21 08:12 AM PST -elizabethhonest,2021-11-21T16:17:27Z,- elizabethhonest opened pull request: [2504](https://github.com/hackforla/website/pull/2504) at 2021-11-21 08:17 AM PST -elizabethhonest,2021-12-03T00:10:38Z,- elizabethhonest pull request merged: [2504](https://github.com/hackforla/website/pull/2504#event-5709180022) at 2021-12-02 04:10 PM PST -elizabethhonest,2021-12-07T00:56:32Z,- elizabethhonest opened issue: [2550](https://github.com/hackforla/website/issues/2550) at 2021-12-06 04:56 PM PST -elizabethhonest,2021-12-17T03:27:14Z,- elizabethhonest opened issue: [2595](https://github.com/hackforla/website/issues/2595) at 2021-12-16 07:27 PM PST -elizabethhonest,2021-12-23T08:38:00Z,- elizabethhonest opened pull request: [2623](https://github.com/hackforla/website/pull/2623) at 2021-12-23 12:38 AM PST -elizabethhonest,2022-01-04T00:08:46Z,- elizabethhonest opened issue: [2655](https://github.com/hackforla/website/issues/2655) at 2022-01-03 04:08 PM PST -elizabethhonest,2022-01-07T04:13:56Z,- elizabethhonest opened issue: [2666](https://github.com/hackforla/website/issues/2666) at 2022-01-06 08:13 PM PST -elizabethhonest,2022-01-08T02:47:49Z,- elizabethhonest opened issue: [2671](https://github.com/hackforla/website/issues/2671) at 2022-01-07 06:47 PM PST -elizabethhonest,2022-02-05T03:00:04Z,- elizabethhonest opened issue: [2737](https://github.com/hackforla/website/issues/2737) at 2022-02-04 07:00 PM PST -elizabethhonest,2022-02-11T18:46:06Z,- elizabethhonest pull request closed w/o merging: [2623](https://github.com/hackforla/website/pull/2623#event-6053282763) at 2022-02-11 10:46 AM PST -elizabethhonest,2022-02-11T18:50:08Z,- elizabethhonest opened pull request: [2765](https://github.com/hackforla/website/pull/2765) at 2022-02-11 10:50 AM PST -elizabethhonest,2022-02-16T03:18:51Z,- elizabethhonest opened issue: [2781](https://github.com/hackforla/website/issues/2781) at 2022-02-15 07:18 PM PST -elizabethhonest,2022-03-02T00:44:42Z,- elizabethhonest pull request closed w/o merging: [2765](https://github.com/hackforla/website/pull/2765#event-6165950248) at 2022-03-01 04:44 PM PST -elizabethhonest,2022-04-01T07:34:31Z,- elizabethhonest opened pull request: [3024](https://github.com/hackforla/website/pull/3024) at 2022-04-01 12:34 AM PDT -elizabethhonest,2022-04-03T17:16:18Z,- elizabethhonest opened issue: [3032](https://github.com/hackforla/website/issues/3032) at 2022-04-03 10:16 AM PDT -elizabethhonest,2022-04-10T20:24:56Z,- elizabethhonest opened issue: [3041](https://github.com/hackforla/website/issues/3041) at 2022-04-10 01:24 PM PDT -elizabethhonest,2022-04-24T22:02:01Z,- elizabethhonest opened issue: [3080](https://github.com/hackforla/website/issues/3080) at 2022-04-24 03:02 PM PDT -elizabethhonest,2022-05-29T19:27:04Z,- elizabethhonest opened issue: [3180](https://github.com/hackforla/website/issues/3180) at 2022-05-29 12:27 PM PDT -elizabethhonest,2023-01-23T19:37:40Z,- elizabethhonest opened issue: [3862](https://github.com/hackforla/website/issues/3862) at 2023-01-23 11:37 AM PST -elizabethhonest,2023-02-06T03:54:56Z,- elizabethhonest opened pull request: [3941](https://github.com/hackforla/website/pull/3941) at 2023-02-05 07:54 PM PST -elizabethhonest,2023-02-06T03:56:42Z,- elizabethhonest pull request merged: [3941](https://github.com/hackforla/website/pull/3941#event-8443315580) at 2023-02-05 07:56 PM PST -elizabethhonest,2023-02-06T04:08:29Z,- elizabethhonest opened pull request: [3942](https://github.com/hackforla/website/pull/3942) at 2023-02-05 08:08 PM PST -elizabethhonest,2023-02-06T04:13:42Z,- elizabethhonest pull request closed w/o merging: [3942](https://github.com/hackforla/website/pull/3942#event-8443395057) at 2023-02-05 08:13 PM PST -elizabethhonest,2023-02-06T22:46:00Z,- elizabethhonest opened pull request: [3943](https://github.com/hackforla/website/pull/3943) at 2023-02-06 02:46 PM PST -elizabethhonest,2023-02-07T02:29:09Z,- elizabethhonest pull request merged: [3943](https://github.com/hackforla/website/pull/3943#event-8453495450) at 2023-02-06 06:29 PM PST -elizabethhonest,2023-02-14T07:41:54Z,- elizabethhonest opened issue: [3974](https://github.com/hackforla/website/issues/3974) at 2023-02-13 11:41 PM PST -elizabethhonest,2023-02-21T08:29:31Z,- elizabethhonest opened pull request: [4019](https://github.com/hackforla/website/pull/4019) at 2023-02-21 12:29 AM PST -elizabethhonest,2023-02-22T22:19:14Z,- elizabethhonest pull request merged: [4019](https://github.com/hackforla/website/pull/4019#event-8585954457) at 2023-02-22 02:19 PM PST -elizabethhonest,2023-02-23T08:29:31Z,- elizabethhonest opened pull request: [4029](https://github.com/hackforla/website/pull/4029) at 2023-02-23 12:29 AM PST -elizabethhonest,2023-02-24T05:38:17Z,- elizabethhonest pull request merged: [4029](https://github.com/hackforla/website/pull/4029#event-8598366088) at 2023-02-23 09:38 PM PST -elizabethhonest,2023-02-25T08:29:30Z,- elizabethhonest opened pull request: [4039](https://github.com/hackforla/website/pull/4039) at 2023-02-25 12:29 AM PST -elizabethhonest,2023-03-01T05:24:01Z,- elizabethhonest pull request merged: [4039](https://github.com/hackforla/website/pull/4039#event-8634131328) at 2023-02-28 09:24 PM PST -elizabethhonest,2023-03-01T08:29:32Z,- elizabethhonest opened pull request: [4079](https://github.com/hackforla/website/pull/4079) at 2023-03-01 12:29 AM PST -elizabethhonest,2023-03-03T08:29:32Z,- elizabethhonest opened pull request: [4098](https://github.com/hackforla/website/pull/4098) at 2023-03-03 12:29 AM PST -elizabethhonest,2023-03-07T08:29:31Z,- elizabethhonest opened pull request: [4124](https://github.com/hackforla/website/pull/4124) at 2023-03-07 12:29 AM PST -elizabethhonest,2023-03-11T08:29:31Z,- elizabethhonest opened pull request: [4149](https://github.com/hackforla/website/pull/4149) at 2023-03-11 01:29 AM PDT -elizabethhonest,2023-03-17T07:29:31Z,- elizabethhonest opened pull request: [4200](https://github.com/hackforla/website/pull/4200) at 2023-03-17 12:29 AM PDT -elizabethhonest,2023-03-19T07:29:30Z,- elizabethhonest opened pull request: [4212](https://github.com/hackforla/website/pull/4212) at 2023-03-19 12:29 AM PDT -elizabethhonest,2023-03-20T07:29:34Z,- elizabethhonest opened pull request: [4216](https://github.com/hackforla/website/pull/4216) at 2023-03-20 12:29 AM PDT -elizabethhonest,2023-03-22T07:29:31Z,- elizabethhonest opened pull request: [4237](https://github.com/hackforla/website/pull/4237) at 2023-03-22 12:29 AM PDT -elizabethhonest,2023-03-22T19:18:30Z,- elizabethhonest opened issue: [4245](https://github.com/hackforla/website/issues/4245) at 2023-03-22 12:18 PM PDT -elizabethhonest,2023-03-30T07:29:31Z,- elizabethhonest opened pull request: [4345](https://github.com/hackforla/website/pull/4345) at 2023-03-30 12:29 AM PDT -elizabethhonest,2023-04-01T07:29:31Z,- elizabethhonest opened pull request: [4360](https://github.com/hackforla/website/pull/4360) at 2023-04-01 12:29 AM PDT -elizabethhonest,2023-04-06T07:29:31Z,- elizabethhonest opened pull request: [4429](https://github.com/hackforla/website/pull/4429) at 2023-04-06 12:29 AM PDT -elizabethhonest,2023-04-07T07:29:31Z,- elizabethhonest opened pull request: [4438](https://github.com/hackforla/website/pull/4438) at 2023-04-07 12:29 AM PDT -elizabethhonest,2023-04-12T07:29:29Z,- elizabethhonest opened pull request: [4493](https://github.com/hackforla/website/pull/4493) at 2023-04-12 12:29 AM PDT -elizabethhonest,2023-04-13T07:29:32Z,- elizabethhonest opened pull request: [4499](https://github.com/hackforla/website/pull/4499) at 2023-04-13 12:29 AM PDT -elizabethhonest,2023-04-16T07:29:31Z,- elizabethhonest opened pull request: [4522](https://github.com/hackforla/website/pull/4522) at 2023-04-16 12:29 AM PDT -elizabethhonest,2023-04-19T07:29:35Z,- elizabethhonest opened pull request: [4547](https://github.com/hackforla/website/pull/4547) at 2023-04-19 12:29 AM PDT -elizabethhonest,2023-04-21T07:29:30Z,- elizabethhonest opened pull request: [4553](https://github.com/hackforla/website/pull/4553) at 2023-04-21 12:29 AM PDT -elizabethhonest,2023-04-27T07:29:31Z,- elizabethhonest opened pull request: [4571](https://github.com/hackforla/website/pull/4571) at 2023-04-27 12:29 AM PDT -elizabethhonest,2023-04-28T07:29:33Z,- elizabethhonest opened pull request: [4583](https://github.com/hackforla/website/pull/4583) at 2023-04-28 12:29 AM PDT -elizabethhonest,2023-05-04T07:29:34Z,- elizabethhonest opened pull request: [4597](https://github.com/hackforla/website/pull/4597) at 2023-05-04 12:29 AM PDT -elizabethhonest,2023-05-05T07:29:34Z,- elizabethhonest opened pull request: [4604](https://github.com/hackforla/website/pull/4604) at 2023-05-05 12:29 AM PDT -elizabethhonest,2023-05-09T07:29:31Z,- elizabethhonest opened pull request: [4641](https://github.com/hackforla/website/pull/4641) at 2023-05-09 12:29 AM PDT -elizabethhonest,2023-05-12T07:29:32Z,- elizabethhonest opened pull request: [4658](https://github.com/hackforla/website/pull/4658) at 2023-05-12 12:29 AM PDT -elizabethhonest,2023-05-16T07:29:31Z,- elizabethhonest opened pull request: [4681](https://github.com/hackforla/website/pull/4681) at 2023-05-16 12:29 AM PDT -elizabethhonest,2023-05-17T07:29:33Z,- elizabethhonest opened pull request: [4684](https://github.com/hackforla/website/pull/4684) at 2023-05-17 12:29 AM PDT -elizabethhonest,2023-05-18T07:29:31Z,- elizabethhonest opened pull request: [4690](https://github.com/hackforla/website/pull/4690) at 2023-05-18 12:29 AM PDT -elizabethhonest,2023-05-19T07:29:33Z,- elizabethhonest opened pull request: [4700](https://github.com/hackforla/website/pull/4700) at 2023-05-19 12:29 AM PDT -elizabethhonest,2023-05-26T07:29:32Z,- elizabethhonest opened pull request: [4744](https://github.com/hackforla/website/pull/4744) at 2023-05-26 12:29 AM PDT -elizabethhonest,2023-05-31T07:29:33Z,- elizabethhonest opened pull request: [4761](https://github.com/hackforla/website/pull/4761) at 2023-05-31 12:29 AM PDT -elizabethhonest,2023-06-02T07:29:33Z,- elizabethhonest opened pull request: [4771](https://github.com/hackforla/website/pull/4771) at 2023-06-02 12:29 AM PDT -elizabethhonest,2023-06-05T07:29:31Z,- elizabethhonest opened pull request: [4780](https://github.com/hackforla/website/pull/4780) at 2023-06-05 12:29 AM PDT -elizabethhonest,2023-06-09T07:29:32Z,- elizabethhonest opened pull request: [4792](https://github.com/hackforla/website/pull/4792) at 2023-06-09 12:29 AM PDT -elizabethhonest,2023-06-12T07:29:32Z,- elizabethhonest opened pull request: [4816](https://github.com/hackforla/website/pull/4816) at 2023-06-12 12:29 AM PDT -elizabethhonest,2023-06-15T07:29:31Z,- elizabethhonest opened pull request: [4840](https://github.com/hackforla/website/pull/4840) at 2023-06-15 12:29 AM PDT -elizabethhonest,2023-06-18T07:29:31Z,- elizabethhonest opened pull request: [4851](https://github.com/hackforla/website/pull/4851) at 2023-06-18 12:29 AM PDT -elizabethhonest,2023-06-19T07:29:32Z,- elizabethhonest opened pull request: [4854](https://github.com/hackforla/website/pull/4854) at 2023-06-19 12:29 AM PDT -elizabethhonest,2023-06-21T07:29:31Z,- elizabethhonest opened pull request: [4871](https://github.com/hackforla/website/pull/4871) at 2023-06-21 12:29 AM PDT -elizabethhonest,2023-06-22T07:29:32Z,- elizabethhonest opened pull request: [4872](https://github.com/hackforla/website/pull/4872) at 2023-06-22 12:29 AM PDT -elizabethhonest,2023-06-29T07:29:31Z,- elizabethhonest opened pull request: [4900](https://github.com/hackforla/website/pull/4900) at 2023-06-29 12:29 AM PDT -elizabethhonest,2023-07-06T07:29:32Z,- elizabethhonest opened pull request: [4915](https://github.com/hackforla/website/pull/4915) at 2023-07-06 12:29 AM PDT -elizabethhonest,2023-07-19T07:29:31Z,- elizabethhonest opened pull request: [5026](https://github.com/hackforla/website/pull/5026) at 2023-07-19 12:29 AM PDT -elizabethhonest,2023-07-20T07:29:35Z,- elizabethhonest opened pull request: [5039](https://github.com/hackforla/website/pull/5039) at 2023-07-20 12:29 AM PDT -elizabethhonest,2023-07-21T07:29:34Z,- elizabethhonest opened pull request: [5045](https://github.com/hackforla/website/pull/5045) at 2023-07-21 12:29 AM PDT -elizabethhonest,2023-08-03T07:29:33Z,- elizabethhonest opened pull request: [5134](https://github.com/hackforla/website/pull/5134) at 2023-08-03 12:29 AM PDT -elizabethhonest,2023-08-16T07:29:31Z,- elizabethhonest opened pull request: [5237](https://github.com/hackforla/website/pull/5237) at 2023-08-16 12:29 AM PDT -elizabethhonest,2023-08-28T00:41:07Z,- elizabethhonest opened issue: [5325](https://github.com/hackforla/website/issues/5325) at 2023-08-27 05:41 PM PDT -elizabethhonest,2023-08-30T07:29:32Z,- elizabethhonest opened pull request: [5374](https://github.com/hackforla/website/pull/5374) at 2023-08-30 12:29 AM PDT -elizabethhonest,2023-08-31T07:29:31Z,- elizabethhonest opened pull request: [5395](https://github.com/hackforla/website/pull/5395) at 2023-08-31 12:29 AM PDT -elizabethhonest,2023-09-21T07:29:31Z,- elizabethhonest opened pull request: [5566](https://github.com/hackforla/website/pull/5566) at 2023-09-21 12:29 AM PDT -elizabethhonest,2023-10-20T07:29:30Z,- elizabethhonest opened pull request: [5742](https://github.com/hackforla/website/pull/5742) at 2023-10-20 12:29 AM PDT -elizabethhonest,2023-10-23T06:49:20Z,- elizabethhonest opened issue: [5766](https://github.com/hackforla/website/issues/5766) at 2023-10-22 11:49 PM PDT -elizabethhonest,2023-10-23T07:29:31Z,- elizabethhonest opened pull request: [5767](https://github.com/hackforla/website/pull/5767) at 2023-10-23 12:29 AM PDT -elizabethhonest,2024-02-02T10:27:23Z,- elizabethhonest opened pull request: [6212](https://github.com/hackforla/website/pull/6212) at 2024-02-02 02:27 AM PST -elizabethhonest,2024-02-08T08:29:31Z,- elizabethhonest opened pull request: [6264](https://github.com/hackforla/website/pull/6264) at 2024-02-08 12:29 AM PST -elizabethhonest,2024-04-04T22:38:46Z,- elizabethhonest opened pull request: [6567](https://github.com/hackforla/website/pull/6567) at 2024-04-04 03:38 PM PDT -elizabethhonest,2024-04-05T07:29:32Z,- elizabethhonest opened pull request: [6568](https://github.com/hackforla/website/pull/6568) at 2024-04-05 12:29 AM PDT -elizabethhonest,2024-05-10T07:29:32Z,- elizabethhonest opened pull request: [6846](https://github.com/hackforla/website/pull/6846) at 2024-05-10 12:29 AM PDT -elizabethhonest,2025-04-07T01:52:13Z,- elizabethhonest opened issue: [8051](https://github.com/hackforla/website/issues/8051) at 2025-04-06 06:52 PM PDT -elizabethhonest,2025-04-07T01:52:13Z,- elizabethhonest opened issue: [8051](https://github.com/hackforla/website/issues/8051) at 2025-04-06 06:52 PM PDT -elizabethhonest,2025-04-07T07:29:33Z,- elizabethhonest opened pull request: [8052](https://github.com/hackforla/website/pull/8052) at 2025-04-07 12:29 AM PDT -elizabethhonest,2025-04-07T07:29:33Z,- elizabethhonest opened pull request: [8052](https://github.com/hackforla/website/pull/8052) at 2025-04-07 12:29 AM PDT -elizabethhonest,2025-05-15T20:08:15Z,- elizabethhonest opened issue: [8145](https://github.com/hackforla/website/issues/8145) at 2025-05-15 01:08 PM PDT -EllenKellyb,3777,SKILLS ISSUE -EllenKellyb,2023-01-04T04:41:17Z,- EllenKellyb opened issue: [3777](https://github.com/hackforla/website/issues/3777) at 2023-01-03 08:41 PM PST -EllenKellyb,2023-01-09T09:17:41Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1375313604) at 2023-01-09 01:17 AM PST -EllenKellyb,2023-01-25T04:06:57Z,- EllenKellyb assigned to issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1375313604) at 2023-01-24 08:06 PM PST -EllenKellyb,2023-02-07T00:43:17Z,- EllenKellyb assigned to issue: [1878](https://github.com/hackforla/website/issues/1878#issuecomment-1310635547) at 2023-02-06 04:43 PM PST -EllenKellyb,2023-02-07T00:43:45Z,- EllenKellyb closed issue as completed: [1878](https://github.com/hackforla/website/issues/1878#event-8453070789) at 2023-02-06 04:43 PM PST -EllenKellyb,2023-02-08T03:28:33Z,- EllenKellyb assigned to issue: [3953](https://github.com/hackforla/website/issues/3953) at 2023-02-07 07:28 PM PST -EllenKellyb,2023-02-08T04:20:12Z,- EllenKellyb unassigned from issue: [3953](https://github.com/hackforla/website/issues/3953) at 2023-02-07 08:20 PM PST -EllenKellyb,2023-02-27T04:32:50Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1445691646) at 2023-02-26 08:32 PM PST -EllenKellyb,2023-02-27T18:33:09Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1446851162) at 2023-02-27 10:33 AM PST -EllenKellyb,2023-03-01T00:25:26Z,- EllenKellyb assigned to issue: [4049](https://github.com/hackforla/website/issues/4049) at 2023-02-28 04:25 PM PST -EllenKellyb,2023-03-01T01:01:44Z,- EllenKellyb commented on issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1449155878) at 2023-02-28 05:01 PM PST -EllenKellyb,2023-03-04T19:39:37Z,- EllenKellyb commented on issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1454852886) at 2023-03-04 11:39 AM PST -EllenKellyb,2023-03-04T19:40:02Z,- EllenKellyb unassigned from issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1454852886) at 2023-03-04 11:40 AM PST -EllenKellyb,2023-03-17T00:29:46Z,- EllenKellyb assigned to issue: [3860](https://github.com/hackforla/website/issues/3860) at 2023-03-16 05:29 PM PDT -EllenKellyb,2023-03-23T07:57:24Z,- EllenKellyb opened pull request: [4260](https://github.com/hackforla/website/pull/4260) at 2023-03-23 12:57 AM PDT -EllenKellyb,2023-03-23T08:17:43Z,- EllenKellyb commented on issue: [3860](https://github.com/hackforla/website/issues/3860#issuecomment-1480762353) at 2023-03-23 01:17 AM PDT -EllenKellyb,2023-03-24T16:59:02Z,- EllenKellyb commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1483124097) at 2023-03-24 09:59 AM PDT -EllenKellyb,2023-03-27T00:11:51Z,- EllenKellyb commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1484286183) at 2023-03-26 05:11 PM PDT -EllenKellyb,2023-03-29T19:38:59Z,- EllenKellyb pull request merged: [4260](https://github.com/hackforla/website/pull/4260#event-8880087206) at 2023-03-29 12:38 PM PDT -EllenKellyb,2023-07-14T17:19:03Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1636155735) at 2023-07-14 10:19 AM PDT -elliot-d-kim,6117,SKILLS ISSUE -elliot-d-kim,2024-01-17T03:47:38Z,- elliot-d-kim opened issue: [6117](https://github.com/hackforla/website/issues/6117) at 2024-01-16 07:47 PM PST -elliot-d-kim,2024-01-17T03:48:00Z,- elliot-d-kim assigned to issue: [6117](https://github.com/hackforla/website/issues/6117#issuecomment-1894891828) at 2024-01-16 07:48 PM PST -elliot-d-kim,2024-01-23T18:39:47Z,- elliot-d-kim assigned to issue: [6112](https://github.com/hackforla/website/issues/6112#issuecomment-1891074732) at 2024-01-23 10:39 AM PST -elliot-d-kim,2024-01-23T20:20:11Z,- elliot-d-kim commented on issue: [6112](https://github.com/hackforla/website/issues/6112#issuecomment-1906856099) at 2024-01-23 12:20 PM PST -elliot-d-kim,2024-01-23T22:28:07Z,- elliot-d-kim commented on issue: [6117](https://github.com/hackforla/website/issues/6117#issuecomment-1907026812) at 2024-01-23 02:28 PM PST -elliot-d-kim,2024-01-23T22:41:49Z,- elliot-d-kim opened pull request: [6147](https://github.com/hackforla/website/pull/6147) at 2024-01-23 02:41 PM PST -elliot-d-kim,2024-01-26T05:32:13Z,- elliot-d-kim opened issue: [6185](https://github.com/hackforla/website/issues/6185) at 2024-01-25 09:32 PM PST -elliot-d-kim,2024-01-26T07:02:04Z,- elliot-d-kim pull request merged: [6147](https://github.com/hackforla/website/pull/6147#event-11605581918) at 2024-01-25 11:02 PM PST -elliot-d-kim,2024-01-28T02:21:43Z,- elliot-d-kim opened issue: [6187](https://github.com/hackforla/website/issues/6187) at 2024-01-27 06:21 PM PST -elliot-d-kim,2024-01-30T19:53:12Z,- elliot-d-kim assigned to issue: [6189](https://github.com/hackforla/website/issues/6189) at 2024-01-30 11:53 AM PST -elliot-d-kim,2024-01-30T19:58:10Z,- elliot-d-kim commented on issue: [6189](https://github.com/hackforla/website/issues/6189#issuecomment-1917788991) at 2024-01-30 11:58 AM PST -elliot-d-kim,2024-01-30T20:17:52Z,- elliot-d-kim opened pull request: [6197](https://github.com/hackforla/website/pull/6197) at 2024-01-30 12:17 PM PST -elliot-d-kim,2024-02-02T06:27:51Z,- elliot-d-kim pull request merged: [6197](https://github.com/hackforla/website/pull/6197#event-11679741739) at 2024-02-01 10:27 PM PST -elliot-d-kim,2024-02-03T01:33:51Z,- elliot-d-kim assigned to issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837204088) at 2024-02-02 05:33 PM PST -elliot-d-kim,2024-02-03T01:45:29Z,- elliot-d-kim commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1925009986) at 2024-02-02 05:45 PM PST -elliot-d-kim,2024-02-03T02:07:13Z,- elliot-d-kim opened pull request: [6216](https://github.com/hackforla/website/pull/6216) at 2024-02-02 06:07 PM PST -elliot-d-kim,2024-02-03T04:27:30Z,- elliot-d-kim commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1925079229) at 2024-02-02 08:27 PM PST -elliot-d-kim,2024-02-03T07:35:33Z,- elliot-d-kim submitted pull request review: [6215](https://github.com/hackforla/website/pull/6215#pullrequestreview-1860917910) at 2024-02-02 11:35 PM PST -elliot-d-kim,2024-02-04T19:43:00Z,- elliot-d-kim pull request merged: [6216](https://github.com/hackforla/website/pull/6216#event-11696389023) at 2024-02-04 11:43 AM PST -elliot-d-kim,2024-02-07T03:20:03Z,- elliot-d-kim assigned to issue: [5234](https://github.com/hackforla/website/issues/5234) at 2024-02-06 07:20 PM PST -elliot-d-kim,2024-02-07T03:21:35Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1931204191) at 2024-02-06 07:21 PM PST -elliot-d-kim,2024-02-14T04:45:20Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1943074910) at 2024-02-13 08:45 PM PST -elliot-d-kim,2024-02-14T04:46:55Z,- elliot-d-kim closed issue as completed: [6117](https://github.com/hackforla/website/issues/6117#event-11796690469) at 2024-02-13 08:46 PM PST -elliot-d-kim,2024-02-17T10:25:57Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1949927685) at 2024-02-17 02:25 AM PST -elliot-d-kim,2024-02-18T06:44:55Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1950980857) at 2024-02-17 10:44 PM PST -elliot-d-kim,2024-02-20T05:08:01Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1953496179) at 2024-02-19 09:08 PM PST -elliot-d-kim,2024-02-25T18:20:37Z,- elliot-d-kim submitted pull request review: [6368](https://github.com/hackforla/website/pull/6368#pullrequestreview-1899726996) at 2024-02-25 10:20 AM PST -elliot-d-kim,2024-02-25T18:29:49Z,- elliot-d-kim assigned to issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1953496179) at 2024-02-25 10:29 AM PST -elliot-d-kim,2024-02-25T18:37:12Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1963024193) at 2024-02-25 10:37 AM PST -elliot-d-kim,2024-02-28T03:32:15Z,- elliot-d-kim commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1968148191) at 2024-02-27 07:32 PM PST -elliot-d-kim,2024-02-28T04:32:39Z,- elliot-d-kim submitted pull request review: [6386](https://github.com/hackforla/website/pull/6386#pullrequestreview-1905285905) at 2024-02-27 08:32 PM PST -elliot-d-kim,2024-03-04T10:14:06Z,- elliot-d-kim submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1913923286) at 2024-03-04 02:14 AM PST -elliot-d-kim,2024-03-05T20:45:24Z,- elliot-d-kim commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1979607035) at 2024-03-05 12:45 PM PST -elliot-d-kim,2024-03-05T21:52:46Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1918203705) at 2024-03-05 01:52 PM PST -elliot-d-kim,2024-03-06T20:39:08Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1981742389) at 2024-03-06 12:39 PM PST -elliot-d-kim,2024-03-07T06:11:07Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1921518484) at 2024-03-06 10:11 PM PST -elliot-d-kim,2024-03-10T05:21:57Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1926381978) at 2024-03-09 10:21 PM PDT -elliot-d-kim,2024-03-22T05:34:40Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2014389162) at 2024-03-21 10:34 PM PDT -elliot-d-kim,2024-03-22T05:34:48Z,- elliot-d-kim unassigned from issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2014389162) at 2024-03-21 10:34 PM PDT -elliot-d-kim,2024-03-27T19:06:32Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1964500709) at 2024-03-27 12:06 PM PDT -elliot-d-kim,2024-04-11T07:05:02Z,- elliot-d-kim submitted pull request review: [6580](https://github.com/hackforla/website/pull/6580#pullrequestreview-1993416292) at 2024-04-11 12:05 AM PDT -elliot-d-kim,2024-04-18T08:43:33Z,- elliot-d-kim commented on pull request: [6651](https://github.com/hackforla/website/pull/6651#issuecomment-2063344998) at 2024-04-18 01:43 AM PDT -elliot-d-kim,2024-04-20T01:47:39Z,- elliot-d-kim commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2067507796) at 2024-04-19 06:47 PM PDT -elliot-d-kim,2024-04-20T01:55:58Z,- elliot-d-kim submitted pull request review: [6651](https://github.com/hackforla/website/pull/6651#pullrequestreview-2012989138) at 2024-04-19 06:55 PM PDT -elliot-d-kim,2024-04-20T02:15:04Z,- elliot-d-kim commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067515517) at 2024-04-19 07:15 PM PDT -elliot-d-kim,2024-04-20T16:42:19Z,- elliot-d-kim commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2067725589) at 2024-04-20 09:42 AM PDT -elliot-d-kim,2024-04-20T17:13:08Z,- elliot-d-kim commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067732813) at 2024-04-20 10:13 AM PDT -elliot-d-kim,2024-04-20T17:40:06Z,- elliot-d-kim commented on pull request: [6686](https://github.com/hackforla/website/pull/6686#issuecomment-2067738981) at 2024-04-20 10:40 AM PDT -elliot-d-kim,2024-04-23T08:30:56Z,- elliot-d-kim commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2071726339) at 2024-04-23 01:30 AM PDT -elliot-d-kim,2024-04-23T08:53:47Z,- elliot-d-kim commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2071768599) at 2024-04-23 01:53 AM PDT -elliot-d-kim,2024-04-23T09:00:17Z,- elliot-d-kim commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2071782156) at 2024-04-23 02:00 AM PDT -elliot-d-kim,2024-04-25T14:21:23Z,- elliot-d-kim commented on issue: [6485](https://github.com/hackforla/website/issues/6485#issuecomment-2077328219) at 2024-04-25 07:21 AM PDT -elliot-d-kim,2024-05-28T20:19:46Z,- elliot-d-kim opened issue: [6904](https://github.com/hackforla/website/issues/6904) at 2024-05-28 01:19 PM PDT -elliot-d-kim,2024-06-09T21:29:34Z,- elliot-d-kim commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2156798302) at 2024-06-09 02:29 PM PDT -elliot-d-kim,2024-09-15T21:26:50Z,- elliot-d-kim assigned to issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351796335) at 2024-09-15 02:26 PM PDT -elliot-d-kim,2024-09-16T16:30:54Z,- elliot-d-kim commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2353390834) at 2024-09-16 09:30 AM PDT -elliot-d-kim,2025-03-04T01:39:27Z,- elliot-d-kim unassigned from issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351797042) at 2025-03-03 05:39 PM PST -elpen84,2021-08-09T15:25:21Z,- elpen84 assigned to issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-08-09 08:25 AM PDT -elpen84,2021-08-12T22:33:38Z,- elpen84 commented on issue: [1577](https://github.com/hackforla/website/issues/1577#issuecomment-898011644) at 2021-08-12 03:33 PM PDT -elpen84,2021-08-14T02:56:57Z,- elpen84 opened pull request: [2115](https://github.com/hackforla/website/pull/2115) at 2021-08-13 07:56 PM PDT -elpen84,2021-08-16T06:50:36Z,- elpen84 pull request merged: [2115](https://github.com/hackforla/website/pull/2115#event-5161202995) at 2021-08-15 11:50 PM PDT -elseclc,7064,SKILLS ISSUE -elseclc,2024-06-25T05:07:33Z,- elseclc opened issue: [7064](https://github.com/hackforla/website/issues/7064) at 2024-06-24 10:07 PM PDT -elseclc,2024-06-25T05:08:40Z,- elseclc assigned to issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2187988727) at 2024-06-24 10:08 PM PDT -elseclc,2024-06-25T20:59:48Z,- elseclc commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2189961133) at 2024-06-25 01:59 PM PDT -elseclc,2024-06-25T21:09:22Z,- elseclc commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2189974582) at 2024-06-25 02:09 PM PDT -elsong86,6942,SKILLS ISSUE -elsong86,2024-06-04T02:38:49Z,- elsong86 opened issue: [6942](https://github.com/hackforla/website/issues/6942) at 2024-06-03 07:38 PM PDT -elsong86,2024-06-04T02:39:34Z,- elsong86 assigned to issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2146461042) at 2024-06-03 07:39 PM PDT -elsong86,2024-07-08T22:13:19Z,- elsong86 assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#event-13359847678) at 2024-07-08 03:13 PM PDT -elsong86,2024-07-08T22:14:43Z,- elsong86 unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2215440105) at 2024-07-08 03:14 PM PDT -elsong86,2024-07-15T20:43:12Z,- elsong86 assigned to issue: [7102](https://github.com/hackforla/website/issues/7102) at 2024-07-15 01:43 PM PDT -elsong86,2024-07-15T20:51:10Z,- elsong86 commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2229409186) at 2024-07-15 01:51 PM PDT -elsong86,2024-07-15T20:54:50Z,- elsong86 commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229415606) at 2024-07-15 01:54 PM PDT -elsong86,2024-07-15T23:26:28Z,- elsong86 opened pull request: [7123](https://github.com/hackforla/website/pull/7123) at 2024-07-15 04:26 PM PDT -elsong86,2024-07-16T01:42:47Z,- elsong86 pull request closed w/o merging: [7123](https://github.com/hackforla/website/pull/7123#event-13513478854) at 2024-07-15 06:42 PM PDT -elsong86,2024-07-16T01:42:56Z,- elsong86 unassigned from issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-07-15 06:42 PM PDT -elsong86,2024-07-16T05:08:43Z,- elsong86 assigned to issue: [7103](https://github.com/hackforla/website/issues/7103) at 2024-07-15 10:08 PM PDT -elsong86,2024-07-19T20:15:03Z,- elsong86 opened pull request: [7130](https://github.com/hackforla/website/pull/7130) at 2024-07-19 01:15 PM PDT -elsong86,2024-07-23T20:40:26Z,- elsong86 commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2246271374) at 2024-07-23 01:40 PM PDT -elsong86,2024-07-24T22:22:33Z,- elsong86 commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2248995478) at 2024-07-24 03:22 PM PDT -elsong86,2024-07-26T04:42:58Z,- elsong86 pull request merged: [7130](https://github.com/hackforla/website/pull/7130#event-13656041343) at 2024-07-25 09:42 PM PDT -elsong86,2024-07-29T23:14:03Z,- elsong86 closed issue as completed: [6942](https://github.com/hackforla/website/issues/6942#event-13687732754) at 2024-07-29 04:14 PM PDT -elsong86,2024-08-11T21:20:36Z,- elsong86 assigned to issue: [7188](https://github.com/hackforla/website/issues/7188) at 2024-08-11 02:20 PM PDT -elsong86,2024-08-11T22:12:14Z,- elsong86 opened pull request: [7271](https://github.com/hackforla/website/pull/7271) at 2024-08-11 03:12 PM PDT -elsong86,2024-08-15T15:09:57Z,- elsong86 pull request merged: [7271](https://github.com/hackforla/website/pull/7271#event-13897396621) at 2024-08-15 08:09 AM PDT -elsong86,2024-08-15T16:30:02Z,- elsong86 commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2291672511) at 2024-08-15 09:30 AM PDT -elsong86,2024-08-21T02:30:10Z,- elsong86 assigned to issue: [7133](https://github.com/hackforla/website/issues/7133#issuecomment-2293876900) at 2024-08-20 07:30 PM PDT -elsong86,2024-08-21T02:58:55Z,- elsong86 opened pull request: [7328](https://github.com/hackforla/website/pull/7328) at 2024-08-20 07:58 PM PDT -elsong86,2024-08-22T19:20:36Z,- elsong86 pull request merged: [7328](https://github.com/hackforla/website/pull/7328#event-13983023245) at 2024-08-22 12:20 PM PDT -elsong86,2024-08-23T19:55:30Z,- elsong86 assigned to issue: [7146](https://github.com/hackforla/website/issues/7146) at 2024-08-23 12:55 PM PDT -elsong86,2024-09-06T16:08:35Z,- elsong86 commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2334384935) at 2024-09-06 09:08 AM PDT -elvisEspinozaN,4064,SKILLS ISSUE -elvisEspinozaN,2023-03-01T04:06:28Z,- elvisEspinozaN opened issue: [4064](https://github.com/hackforla/website/issues/4064) at 2023-02-28 08:06 PM PST -elvisEspinozaN,2023-03-01T04:08:45Z,- elvisEspinozaN assigned to issue: [4064](https://github.com/hackforla/website/issues/4064) at 2023-02-28 08:08 PM PST -ememercy21,2687,SKILLS ISSUE -ememercy21,2022-01-15T01:11:12Z,- ememercy21 opened issue: [2687](https://github.com/hackforla/website/issues/2687) at 2022-01-14 05:11 PM PST -ememercy21,2022-01-15T01:30:22Z,- ememercy21 assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-999092690) at 2022-01-14 05:30 PM PST -ememercy21,2022-01-15T01:31:15Z,- ememercy21 unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-999092690) at 2022-01-14 05:31 PM PST -ememercy21,2022-01-15T01:31:22Z,- ememercy21 assigned to issue: [2687](https://github.com/hackforla/website/issues/2687#issuecomment-1013569737) at 2022-01-14 05:31 PM PST -ememercy21,2022-01-15T01:33:57Z,- ememercy21 assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-999092690) at 2022-01-14 05:33 PM PST -ememercy21,2022-01-15T01:36:35Z,- ememercy21 commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1013576245) at 2022-01-14 05:36 PM PST -ememercy21,2022-01-15T01:38:28Z,- ememercy21 closed issue as completed: [2687](https://github.com/hackforla/website/issues/2687#event-5898042648) at 2022-01-14 05:38 PM PST -ememercy21,2022-03-31T19:48:56Z,- ememercy21 unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 12:48 PM PDT -emillipede,2019-07-04T16:21:32Z,- emillipede opened pull request: [131](https://github.com/hackforla/website/pull/131) at 2019-07-04 09:21 AM PDT -emillipede,2019-08-13T05:04:04Z,- emillipede pull request merged: [131](https://github.com/hackforla/website/pull/131#event-2552175445) at 2019-08-12 10:04 PM PDT -emillipede,2020-01-14T03:48:17Z,- emillipede commented on issue: [253](https://github.com/hackforla/website/issues/253#issuecomment-573986790) at 2020-01-13 07:48 PM PST -emillipede,2020-01-26T21:41:37Z,- emillipede assigned to issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-571403621) at 2020-01-26 01:41 PM PST -emillipede,2020-01-28T04:09:13Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-579070014) at 2020-01-27 08:09 PM PST -emillipede,2020-01-28T04:11:35Z,- emillipede commented on issue: [253](https://github.com/hackforla/website/issues/253#issuecomment-579070472) at 2020-01-27 08:11 PM PST -emillipede,2020-02-02T18:10:22Z,- emillipede unassigned from issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-579070014) at 2020-02-02 10:10 AM PST -emillipede,2020-02-24T05:38:20Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-590174011) at 2020-02-23 09:38 PM PST -emillipede,2020-03-10T02:42:34Z,- emillipede commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-596872438) at 2020-03-09 07:42 PM PDT -emillipede,2020-03-12T19:13:28Z,- emillipede closed issue by PR 417: [246](https://github.com/hackforla/website/issues/246#event-3124172899) at 2020-03-12 12:13 PM PDT -emillipede,2020-03-13T05:57:41Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598563970) at 2020-03-12 10:57 PM PDT -emillipede,2020-03-13T05:58:51Z,- emillipede commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-598564305) at 2020-03-12 10:58 PM PDT -emillipede,2020-03-16T16:55:29Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-599648560) at 2020-03-16 09:55 AM PDT -emillipede,2020-03-17T01:53:00Z,- emillipede commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599837047) at 2020-03-16 06:53 PM PDT -emillipede,2020-03-25T03:39:38Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-603622704) at 2020-03-24 08:39 PM PDT -emillipede,2020-03-27T14:41:44Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-605037600) at 2020-03-27 07:41 AM PDT -emillipede,2020-04-06T16:02:14Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-609884465) at 2020-04-06 09:02 AM PDT -emillipede,2020-07-27T20:37:48Z,- emillipede commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-664625570) at 2020-07-27 01:37 PM PDT -EmilyTat,3141,SKILLS ISSUE -EmilyTat,3408,SKILLS ISSUE -EmilyTat,2022-05-23T15:24:48Z,- EmilyTat assigned to issue: [3141](https://github.com/hackforla/website/issues/3141#issuecomment-1126977952) at 2022-05-23 08:24 AM PDT -EmilyTat,2022-05-23T16:17:40Z,- EmilyTat assigned to issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1122252414) at 2022-05-23 09:17 AM PDT -EmilyTat,2022-06-07T23:21:15Z,- EmilyTat commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149265126) at 2022-06-07 04:21 PM PDT -EmilyTat,2022-06-07T23:22:38Z,- EmilyTat commented on issue: [3141](https://github.com/hackforla/website/issues/3141#issuecomment-1149267244) at 2022-06-07 04:22 PM PDT -EmilyTat,2022-06-07T23:42:16Z,- EmilyTat commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279005) at 2022-06-07 04:42 PM PDT -EmilyTat,2022-06-07T23:43:10Z,- EmilyTat commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-06-07 04:43 PM PDT -EmilyTat,2022-06-08T22:28:36Z,- EmilyTat unassigned from issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-06-08 03:28 PM PDT -EmilyTat,2022-07-20T21:30:32Z,- EmilyTat opened issue: [3408](https://github.com/hackforla/website/issues/3408) at 2022-07-20 02:30 PM PDT -EmilyTat,2022-07-20T21:30:33Z,- EmilyTat assigned to issue: [3408](https://github.com/hackforla/website/issues/3408) at 2022-07-20 02:30 PM PDT -EmmaBin,4712,SKILLS ISSUE -EmmaBin,2023-05-24T02:44:50Z,- EmmaBin opened issue: [4712](https://github.com/hackforla/website/issues/4712) at 2023-05-23 07:44 PM PDT -EmmaBin,2023-05-24T03:00:52Z,- EmmaBin assigned to issue: [4712](https://github.com/hackforla/website/issues/4712) at 2023-05-23 08:00 PM PDT -emmettlsc,2021-11-09T00:57:41Z,- emmettlsc assigned to issue: [2341](https://github.com/hackforla/website/issues/2341#issuecomment-937926424) at 2021-11-08 04:57 PM PST -emmettlsc,2021-11-10T07:40:04Z,- emmettlsc opened pull request: [2469](https://github.com/hackforla/website/pull/2469) at 2021-11-09 11:40 PM PST -emmettlsc,2021-11-10T20:57:06Z,- emmettlsc unassigned from issue: [2341](https://github.com/hackforla/website/issues/2341#issuecomment-937926424) at 2021-11-10 12:57 PM PST -emmettlsc,2021-11-10T21:42:47Z,- emmettlsc pull request merged: [2469](https://github.com/hackforla/website/pull/2469#event-5600169827) at 2021-11-10 01:42 PM PST -emmettlsc,2021-11-17T05:46:16Z,- emmettlsc assigned to issue: [2462](https://github.com/hackforla/website/issues/2462) at 2021-11-16 09:46 PM PST -emmettlsc,2021-12-17T17:58:53Z,- emmettlsc unassigned from issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-996913659) at 2021-12-17 09:58 AM PST -engmaggi,2596,SKILLS ISSUE -engmaggi,2021-12-17T08:05:59Z,- engmaggi assigned to issue: [2596](https://github.com/hackforla/website/issues/2596) at 2021-12-17 12:05 AM PST -entrotech,2019-06-12T00:46:52Z,- entrotech opened issue: [127](https://github.com/hackforla/website/issues/127) at 2019-06-11 05:46 PM PDT -entrotech,2020-07-24T15:40:25Z,- entrotech commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663600998) at 2020-07-24 08:40 AM PDT -entrotech,2020-07-24T15:42:27Z,- entrotech commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663601930) at 2020-07-24 08:42 AM PDT -entrotech,2025-02-14T03:08:02Z,- entrotech opened issue: [7907](https://github.com/hackforla/website/issues/7907) at 2025-02-13 07:08 PM PST -eodero,3055,SKILLS ISSUE -eodero,3074,SKILLS ISSUE -eodero,2022-04-15T02:33:51Z,- eodero opened issue: [3055](https://github.com/hackforla/website/issues/3055) at 2022-04-14 07:33 PM PDT -eodero,2022-04-15T02:34:43Z,- eodero assigned to issue: [3055](https://github.com/hackforla/website/issues/3055#issuecomment-1099795930) at 2022-04-14 07:34 PM PDT -eodero,2022-04-17T18:24:12Z,- eodero assigned to issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1057117918) at 2022-04-17 11:24 AM PDT -eodero,2022-04-17T19:21:17Z,- eodero commented on issue: [2910](https://github.com/hackforla/website/issues/2910#issuecomment-1100935602) at 2022-04-17 12:21 PM PDT -eodero,2022-04-18T01:54:52Z,- eodero opened pull request: [3061](https://github.com/hackforla/website/pull/3061) at 2022-04-17 06:54 PM PDT -eodero,2022-04-21T00:11:53Z,- eodero commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1104569473) at 2022-04-20 05:11 PM PDT -eodero,2022-04-21T00:12:34Z,- eodero commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1104569837) at 2022-04-20 05:12 PM PDT -eodero,2022-04-21T02:01:59Z,- eodero opened pull request: [3073](https://github.com/hackforla/website/pull/3073) at 2022-04-20 07:01 PM PDT -eodero,2022-04-21T02:03:31Z,- eodero opened issue: [3074](https://github.com/hackforla/website/issues/3074) at 2022-04-20 07:03 PM PDT -eodero,2022-04-21T15:58:14Z,- eodero pull request closed w/o merging: [3061](https://github.com/hackforla/website/pull/3061#event-6472286221) at 2022-04-21 08:58 AM PDT -eodero,2022-04-22T02:41:10Z,- eodero commented on pull request: [3073](https://github.com/hackforla/website/pull/3073#issuecomment-1105946134) at 2022-04-21 07:41 PM PDT -eodero,2022-04-23T19:33:14Z,- eodero pull request merged: [3073](https://github.com/hackforla/website/pull/3073#event-6484933985) at 2022-04-23 12:33 PM PDT -eodero,2022-04-28T03:54:11Z,- eodero closed issue as completed: [3055](https://github.com/hackforla/website/issues/3055#event-6511713913) at 2022-04-27 08:54 PM PDT -eodero,2022-04-28T03:55:00Z,- eodero commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1111715529) at 2022-04-27 08:55 PM PDT -eodero,2022-04-28T04:26:04Z,- eodero commented on issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1111730808) at 2022-04-27 09:26 PM PDT -eodero,2022-05-01T15:05:49Z,- eodero opened pull request: [3086](https://github.com/hackforla/website/pull/3086) at 2022-05-01 08:05 AM PDT -eodero,2022-05-02T03:56:05Z,- eodero commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114469138) at 2022-05-01 08:56 PM PDT -eodero,2022-05-02T03:57:04Z,- eodero commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114469346) at 2022-05-01 08:57 PM PDT -eodero,2022-06-01T16:49:01Z,- eodero commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1143867444) at 2022-06-01 09:49 AM PDT -eodero,2022-06-12T17:22:05Z,- eodero pull request merged: [3086](https://github.com/hackforla/website/pull/3086#event-6791732755) at 2022-06-12 10:22 AM PDT -eodero,2022-06-17T00:54:14Z,- eodero assigned to issue: [2804](https://github.com/hackforla/website/issues/2804) at 2022-06-16 05:54 PM PDT -eodero,2022-06-17T00:59:06Z,- eodero commented on issue: [2804](https://github.com/hackforla/website/issues/2804#issuecomment-1158357220) at 2022-06-16 05:59 PM PDT -eodero,2022-06-20T19:02:07Z,- eodero opened pull request: [3264](https://github.com/hackforla/website/pull/3264) at 2022-06-20 12:02 PM PDT -eodero,2022-06-23T01:45:31Z,- eodero pull request merged: [3264](https://github.com/hackforla/website/pull/3264#event-6861983756) at 2022-06-22 06:45 PM PDT -eodero,2022-06-23T03:29:08Z,- eodero commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1163884519) at 2022-06-22 08:29 PM PDT -eodero,2022-06-23T03:29:34Z,- eodero commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1163884735) at 2022-06-22 08:29 PM PDT -epierotti3,2022-06-30T16:39:36Z,- epierotti3 commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1171443658) at 2022-06-30 09:39 AM PDT -ericahagle,6831,SKILLS ISSUE -ericahagle,2024-05-07T03:09:24Z,- ericahagle opened issue: [6831](https://github.com/hackforla/website/issues/6831) at 2024-05-06 08:09 PM PDT -ericahagle,2024-05-07T03:09:25Z,- ericahagle assigned to issue: [6831](https://github.com/hackforla/website/issues/6831) at 2024-05-06 08:09 PM PDT -ericvennemeyer,3048,SKILLS ISSUE -ericvennemeyer,2022-04-13T03:10:31Z,- ericvennemeyer opened issue: [3048](https://github.com/hackforla/website/issues/3048) at 2022-04-12 08:10 PM PDT -ericvennemeyer,2022-04-13T22:23:19Z,- ericvennemeyer assigned to issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1097506136) at 2022-04-13 03:23 PM PDT -ericvennemeyer,2022-04-14T17:08:18Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1099420209) at 2022-04-14 10:08 AM PDT -ericvennemeyer,2022-04-14T23:59:43Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1099728251) at 2022-04-14 04:59 PM PDT -ericvennemeyer,2022-04-17T01:18:52Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1100781723) at 2022-04-16 06:18 PM PDT -ericvennemeyer,2022-04-19T17:07:13Z,- ericvennemeyer opened issue: [3068](https://github.com/hackforla/website/issues/3068) at 2022-04-19 10:07 AM PDT -ericvennemeyer,2022-04-19T17:07:13Z,- ericvennemeyer assigned to issue: [3068](https://github.com/hackforla/website/issues/3068) at 2022-04-19 10:07 AM PDT -ericvennemeyer,2022-04-19T17:21:11Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1102900272) at 2022-04-19 10:21 AM PDT -ericvennemeyer,2022-04-22T22:28:20Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1106949359) at 2022-04-22 03:28 PM PDT -ericvennemeyer,2022-04-28T02:39:06Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1111678732) at 2022-04-27 07:39 PM PDT -ericvennemeyer,2022-04-28T22:01:26Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1112693681) at 2022-04-28 03:01 PM PDT -ericvennemeyer,2022-05-03T17:41:19Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1116371802) at 2022-05-03 10:41 AM PDT -ericvennemeyer,2022-05-04T23:35:56Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1118027375) at 2022-05-04 04:35 PM PDT -ericvennemeyer,2022-05-07T00:20:18Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1120088083) at 2022-05-06 05:20 PM PDT -ericvennemeyer,2022-05-13T23:26:32Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1126576213) at 2022-05-13 04:26 PM PDT -ericvennemeyer,2022-05-20T23:31:30Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1133463183) at 2022-05-20 04:31 PM PDT -ericvennemeyer,2022-05-28T00:27:38Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1140117821) at 2022-05-27 05:27 PM PDT -ericvennemeyer,2022-06-10T23:12:43Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1152793930) at 2022-06-10 04:12 PM PDT -ericvennemeyer,2022-06-13T18:51:37Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1154264042) at 2022-06-13 11:51 AM PDT -ericvennemeyer,2022-06-14T17:05:23Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1155464975) at 2022-06-14 10:05 AM PDT -ericvennemeyer,2022-06-19T17:24:53Z,- ericvennemeyer commented on pull request: [3258](https://github.com/hackforla/website/pull/3258#issuecomment-1159780236) at 2022-06-19 10:24 AM PDT -ericvennemeyer,2022-06-20T23:29:15Z,- ericvennemeyer submitted pull request review: [3258](https://github.com/hackforla/website/pull/3258#pullrequestreview-1012812187) at 2022-06-20 04:29 PM PDT -ericvennemeyer,2022-06-27T18:15:19Z,- ericvennemeyer opened pull request: [3319](https://github.com/hackforla/website/pull/3319) at 2022-06-27 11:15 AM PDT -ericvennemeyer,2022-06-28T20:51:36Z,- ericvennemeyer commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1169230471) at 2022-06-28 01:51 PM PDT -ericvennemeyer,2022-06-29T02:35:26Z,- ericvennemeyer assigned to issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1090773428) at 2022-06-28 07:35 PM PDT -ericvennemeyer,2022-06-29T02:36:08Z,- ericvennemeyer unassigned from issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1090773428) at 2022-06-28 07:36 PM PDT -ericvennemeyer,2022-06-29T02:37:39Z,- ericvennemeyer assigned to issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1167629697) at 2022-06-28 07:37 PM PDT -ericvennemeyer,2022-06-29T02:37:59Z,- ericvennemeyer unassigned from issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1169470246) at 2022-06-28 07:37 PM PDT -ericvennemeyer,2022-06-29T02:40:37Z,- ericvennemeyer assigned to issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1100374784) at 2022-06-28 07:40 PM PDT -ericvennemeyer,2022-06-29T02:45:37Z,- ericvennemeyer unassigned from issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1100374784) at 2022-06-28 07:45 PM PDT -ericvennemeyer,2022-06-29T02:46:02Z,- ericvennemeyer assigned to issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1100374784) at 2022-06-28 07:46 PM PDT -ericvennemeyer,2022-06-29T02:46:43Z,- ericvennemeyer unassigned from issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1169474354) at 2022-06-28 07:46 PM PDT -ericvennemeyer,2022-06-29T18:11:58Z,- ericvennemeyer pull request merged: [3319](https://github.com/hackforla/website/pull/3319#event-6904736668) at 2022-06-29 11:11 AM PDT -ericvennemeyer,2022-07-25T21:32:10Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1194656273) at 2022-07-25 02:32 PM PDT -ericvennemeyer,2022-07-26T23:10:42Z,- ericvennemeyer assigned to issue: [2809](https://github.com/hackforla/website/issues/2809#issuecomment-1046311281) at 2022-07-26 04:10 PM PDT -ericvennemeyer,2022-07-26T23:13:17Z,- ericvennemeyer commented on issue: [2809](https://github.com/hackforla/website/issues/2809#issuecomment-1196072629) at 2022-07-26 04:13 PM PDT -ericvennemeyer,2022-07-26T23:16:13Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1196074229) at 2022-07-26 04:16 PM PDT -ericvennemeyer,2022-07-26T23:55:51Z,- ericvennemeyer opened pull request: [3430](https://github.com/hackforla/website/pull/3430) at 2022-07-26 04:55 PM PDT -ericvennemeyer,2022-07-27T20:05:46Z,- ericvennemeyer pull request merged: [3430](https://github.com/hackforla/website/pull/3430#event-7076221057) at 2022-07-27 01:05 PM PDT -ericvennemeyer,2022-07-27T22:51:33Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1197457053) at 2022-07-27 03:51 PM PDT -ericvennemeyer,2022-07-27T22:51:34Z,- ericvennemeyer closed issue as completed: [3048](https://github.com/hackforla/website/issues/3048#event-7077001170) at 2022-07-27 03:51 PM PDT -ericvennemeyer,2022-07-27T23:25:41Z,- ericvennemeyer assigned to issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1194651649) at 2022-07-27 04:25 PM PDT -ericvennemeyer,2022-07-27T23:27:52Z,- ericvennemeyer commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1197484433) at 2022-07-27 04:27 PM PDT -ericvennemeyer,2022-07-27T23:57:45Z,- ericvennemeyer opened pull request: [3435](https://github.com/hackforla/website/pull/3435) at 2022-07-27 04:57 PM PDT -ericvennemeyer,2022-07-29T01:18:16Z,- ericvennemeyer pull request merged: [3435](https://github.com/hackforla/website/pull/3435#event-7085944914) at 2022-07-28 06:18 PM PDT -ericvennemeyer,2022-07-30T20:27:35Z,- ericvennemeyer commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200288855) at 2022-07-30 01:27 PM PDT -ericvennemeyer,2022-07-30T22:29:10Z,- ericvennemeyer submitted pull request review: [3444](https://github.com/hackforla/website/pull/3444#pullrequestreview-1056497905) at 2022-07-30 03:29 PM PDT -ericvennemeyer,2022-08-09T21:06:55Z,- ericvennemeyer commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1209897036) at 2022-08-09 02:06 PM PDT -ericvennemeyer,2022-08-10T00:02:01Z,- ericvennemeyer submitted pull request review: [3454](https://github.com/hackforla/website/pull/3454#pullrequestreview-1067507680) at 2022-08-09 05:02 PM PDT -ericvennemeyer,2022-08-11T18:39:11Z,- ericvennemeyer assigned to issue: [3331](https://github.com/hackforla/website/issues/3331#issuecomment-1175690910) at 2022-08-11 11:39 AM PDT -ericvennemeyer,2022-08-11T18:42:36Z,- ericvennemeyer commented on issue: [3331](https://github.com/hackforla/website/issues/3331#issuecomment-1212359612) at 2022-08-11 11:42 AM PDT -ericvennemeyer,2022-08-11T19:54:06Z,- ericvennemeyer opened pull request: [3462](https://github.com/hackforla/website/pull/3462) at 2022-08-11 12:54 PM PDT -ericvennemeyer,2022-08-11T20:03:48Z,- ericvennemeyer submitted pull request review: [3460](https://github.com/hackforla/website/pull/3460#pullrequestreview-1070289469) at 2022-08-11 01:03 PM PDT -ericvennemeyer,2022-08-12T04:22:31Z,- ericvennemeyer pull request merged: [3462](https://github.com/hackforla/website/pull/3462#event-7176351043) at 2022-08-11 09:22 PM PDT -ericvennemeyer,2022-08-12T16:10:06Z,- ericvennemeyer commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1213281665) at 2022-08-12 09:10 AM PDT -ericvennemeyer,2022-08-12T23:30:43Z,- ericvennemeyer assigned to issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1194658612) at 2022-08-12 04:30 PM PDT -ericvennemeyer,2022-08-12T23:33:03Z,- ericvennemeyer commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1213589225) at 2022-08-12 04:33 PM PDT -ericvennemeyer,2022-08-13T18:51:25Z,- ericvennemeyer commented on pull request: [3467](https://github.com/hackforla/website/pull/3467#issuecomment-1214205901) at 2022-08-13 11:51 AM PDT -ericvennemeyer,2022-08-13T19:12:40Z,- ericvennemeyer submitted pull request review: [3467](https://github.com/hackforla/website/pull/3467#pullrequestreview-1071990588) at 2022-08-13 12:12 PM PDT -ericvennemeyer,2022-08-16T19:33:26Z,- ericvennemeyer commented on pull request: [3470](https://github.com/hackforla/website/pull/3470#issuecomment-1217076861) at 2022-08-16 12:33 PM PDT -ericvennemeyer,2022-08-16T22:16:47Z,- ericvennemeyer submitted pull request review: [3470](https://github.com/hackforla/website/pull/3470#pullrequestreview-1074835583) at 2022-08-16 03:16 PM PDT -ericvennemeyer,2022-08-18T23:43:54Z,- ericvennemeyer commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1220083477) at 2022-08-18 04:43 PM PDT -ericvennemeyer,2022-08-23T17:16:07Z,- ericvennemeyer commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1224382184) at 2022-08-23 10:16 AM PDT -ericvennemeyer,2022-08-23T21:27:33Z,- ericvennemeyer commented on pull request: [3480](https://github.com/hackforla/website/pull/3480#issuecomment-1224904664) at 2022-08-23 02:27 PM PDT -ericvennemeyer,2022-08-23T21:58:09Z,- ericvennemeyer submitted pull request review: [3480](https://github.com/hackforla/website/pull/3480#pullrequestreview-1082888190) at 2022-08-23 02:58 PM PDT -ericvennemeyer,2022-08-24T02:36:42Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1225104563) at 2022-08-23 07:36 PM PDT -ericvennemeyer,2022-08-24T18:44:47Z,- ericvennemeyer opened pull request: [3483](https://github.com/hackforla/website/pull/3483) at 2022-08-24 11:44 AM PDT -ericvennemeyer,2022-08-24T18:58:40Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226115710) at 2022-08-24 11:58 AM PDT -ericvennemeyer,2022-08-24T19:21:21Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226143634) at 2022-08-24 12:21 PM PDT -ericvennemeyer,2022-08-24T19:34:24Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226158433) at 2022-08-24 12:34 PM PDT -ericvennemeyer,2022-08-24T19:42:24Z,- ericvennemeyer opened pull request: [3484](https://github.com/hackforla/website/pull/3484) at 2022-08-24 12:42 PM PDT -ericvennemeyer,2022-08-24T19:52:10Z,- ericvennemeyer opened pull request: [3486](https://github.com/hackforla/website/pull/3486) at 2022-08-24 12:52 PM PDT -ericvennemeyer,2022-08-24T20:01:17Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226212252) at 2022-08-24 01:01 PM PDT -ericvennemeyer,2022-08-24T20:13:58Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226238633) at 2022-08-24 01:13 PM PDT -ericvennemeyer,2022-08-24T20:23:34Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226258386) at 2022-08-24 01:23 PM PDT -ericvennemeyer,2022-08-24T21:06:01Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226346445) at 2022-08-24 02:06 PM PDT -ericvennemeyer,2022-08-24T21:39:24Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226419209) at 2022-08-24 02:39 PM PDT -ericvennemeyer,2022-08-25T01:34:02Z,- ericvennemeyer opened issue: [3488](https://github.com/hackforla/website/issues/3488) at 2022-08-24 06:34 PM PDT -ericvennemeyer,2022-08-25T18:42:10Z,- ericvennemeyer opened issue: [3489](https://github.com/hackforla/website/issues/3489) at 2022-08-25 11:42 AM PDT -ericvennemeyer,2022-08-26T03:31:23Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1228012626) at 2022-08-25 08:31 PM PDT -ericvennemeyer,2022-08-26T23:45:37Z,- ericvennemeyer submitted pull request review: [3476](https://github.com/hackforla/website/pull/3476#pullrequestreview-1087592392) at 2022-08-26 04:45 PM PDT -ericvennemeyer,2022-08-27T18:12:12Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1229239297) at 2022-08-27 11:12 AM PDT -ericvennemeyer,2022-08-27T20:56:42Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229265789) at 2022-08-27 01:56 PM PDT -ericvennemeyer,2022-08-27T21:03:05Z,- ericvennemeyer commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229266650) at 2022-08-27 02:03 PM PDT -ericvennemeyer,2022-08-28T03:34:33Z,- ericvennemeyer pull request closed w/o merging: [3484](https://github.com/hackforla/website/pull/3484#event-7272846511) at 2022-08-27 08:34 PM PDT -ericvennemeyer,2022-08-28T03:35:17Z,- ericvennemeyer pull request closed w/o merging: [3486](https://github.com/hackforla/website/pull/3486#event-7272846974) at 2022-08-27 08:35 PM PDT -ericvennemeyer,2022-08-28T18:52:15Z,- ericvennemeyer submitted pull request review: [3490](https://github.com/hackforla/website/pull/3490#pullrequestreview-1087899982) at 2022-08-28 11:52 AM PDT -ericvennemeyer,2022-08-28T23:18:44Z,- ericvennemeyer pull request merged: [3483](https://github.com/hackforla/website/pull/3483#event-7274130745) at 2022-08-28 04:18 PM PDT -ericvennemeyer,2022-08-29T02:55:52Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229691050) at 2022-08-28 07:55 PM PDT -ericvennemeyer,2022-08-29T18:22:08Z,- ericvennemeyer commented on pull request: [3497](https://github.com/hackforla/website/pull/3497#issuecomment-1230692466) at 2022-08-29 11:22 AM PDT -ericvennemeyer,2022-08-29T19:45:09Z,- ericvennemeyer submitted pull request review: [3497](https://github.com/hackforla/website/pull/3497#pullrequestreview-1089266730) at 2022-08-29 12:45 PM PDT -ericvennemeyer,2022-08-30T19:41:31Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1232088388) at 2022-08-30 12:41 PM PDT -ericvennemeyer,2022-08-31T19:19:55Z,- ericvennemeyer commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1233329231) at 2022-08-31 12:19 PM PDT -ericvennemeyer,2022-09-02T00:00:21Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1234924450) at 2022-09-01 05:00 PM PDT -ericvennemeyer,2022-09-02T17:22:20Z,- ericvennemeyer submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1095160048) at 2022-09-02 10:22 AM PDT -ericvennemeyer,2022-09-02T23:09:51Z,- ericvennemeyer submitted pull request review: [3516](https://github.com/hackforla/website/pull/3516#pullrequestreview-1095414031) at 2022-09-02 04:09 PM PDT -ericvennemeyer,2022-09-06T20:03:32Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1238596025) at 2022-09-06 01:03 PM PDT -ericvennemeyer,2022-09-07T18:35:15Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1239739318) at 2022-09-07 11:35 AM PDT -ericvennemeyer,2022-09-08T20:19:57Z,- ericvennemeyer submitted pull request review: [3476](https://github.com/hackforla/website/pull/3476#pullrequestreview-1101365344) at 2022-09-08 01:19 PM PDT -ericvennemeyer,2022-09-12T23:22:13Z,- ericvennemeyer submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1104940196) at 2022-09-12 04:22 PM PDT -ericvennemeyer,2022-09-13T22:50:27Z,- ericvennemeyer commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246025009) at 2022-09-13 03:50 PM PDT -ericvennemeyer,2022-09-13T23:09:48Z,- ericvennemeyer commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246039385) at 2022-09-13 04:09 PM PDT -ericvennemeyer,2022-09-13T23:41:44Z,- ericvennemeyer commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246059239) at 2022-09-13 04:41 PM PDT -erikaBell,2021-03-22T00:02:37Z,- erikaBell assigned to issue: [1021](https://github.com/hackforla/website/issues/1021#event-4455740746) at 2021-03-21 05:02 PM PDT -erikaBell,2021-03-22T16:55:55Z,- erikaBell opened pull request: [1291](https://github.com/hackforla/website/pull/1291) at 2021-03-22 09:55 AM PDT -erikaBell,2021-03-22T18:30:44Z,- erikaBell pull request merged: [1291](https://github.com/hackforla/website/pull/1291#event-4491875786) at 2021-03-22 11:30 AM PDT -erikaBell,2021-03-22T19:20:11Z,- erikaBell assigned to issue: [1261](https://github.com/hackforla/website/issues/1261) at 2021-03-22 12:20 PM PDT -erikaBell,2021-03-22T19:52:53Z,- erikaBell opened pull request: [1305](https://github.com/hackforla/website/pull/1305) at 2021-03-22 12:52 PM PDT -erikaBell,2021-03-22T20:04:42Z,- erikaBell assigned to issue: [1045](https://github.com/hackforla/website/issues/1045#event-4380102816) at 2021-03-22 01:04 PM PDT -erikaBell,2021-03-22T20:54:27Z,- erikaBell pull request merged: [1305](https://github.com/hackforla/website/pull/1305#event-4492495788) at 2021-03-22 01:54 PM PDT -erikaBell,2021-03-22T22:49:49Z,- erikaBell opened pull request: [1306](https://github.com/hackforla/website/pull/1306) at 2021-03-22 03:49 PM PDT -erikaBell,2021-03-23T17:11:44Z,- erikaBell pull request merged: [1306](https://github.com/hackforla/website/pull/1306#event-4497498692) at 2021-03-23 10:11 AM PDT -erikaBell,2021-03-23T18:41:36Z,- erikaBell assigned to issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-803512443) at 2021-03-23 11:41 AM PDT -erikaBell,2021-03-23T21:15:13Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-805266006) at 2021-03-23 02:15 PM PDT -erikaBell,2021-03-23T21:41:09Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-805284629) at 2021-03-23 02:41 PM PDT -erikaBell,2021-03-24T02:33:38Z,- erikaBell closed issue by PR 1318: [1155](https://github.com/hackforla/website/issues/1155#event-4499433238) at 2021-03-23 07:33 PM PDT -erikaBell,2021-03-24T21:15:42Z,- erikaBell closed issue by PR 1320: [1164](https://github.com/hackforla/website/issues/1164#event-4504506872) at 2021-03-24 02:15 PM PDT -erikaBell,2021-03-24T21:15:47Z,- erikaBell commented on pull request: [1320](https://github.com/hackforla/website/pull/1320#issuecomment-806191295) at 2021-03-24 02:15 PM PDT -erikaBell,2021-03-28T16:10:17Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-808917933) at 2021-03-28 09:10 AM PDT -erikaBell,2021-04-04T16:51:33Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-813063958) at 2021-04-04 09:51 AM PDT -erikaBell,2021-04-04T20:06:01Z,- erikaBell opened issue: [1353](https://github.com/hackforla/website/issues/1353) at 2021-04-04 01:06 PM PDT -erikaBell,2021-04-04T20:13:45Z,- erikaBell opened pull request: [1354](https://github.com/hackforla/website/pull/1354) at 2021-04-04 01:13 PM PDT -erikaBell,2021-04-04T20:15:21Z,- erikaBell assigned to issue: [1353](https://github.com/hackforla/website/issues/1353) at 2021-04-04 01:15 PM PDT -erikaBell,2021-04-05T00:01:28Z,- erikaBell pull request merged: [1354](https://github.com/hackforla/website/pull/1354#event-4549633393) at 2021-04-04 05:01 PM PDT -erikaBell,2021-04-06T03:29:34Z,- erikaBell commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-813795555) at 2021-04-05 08:29 PM PDT -erikaBell,2021-04-06T16:42:33Z,- erikaBell commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814267789) at 2021-04-06 09:42 AM PDT -erikaBell,2021-04-07T04:32:21Z,- erikaBell assigned to issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-803543032) at 2021-04-06 09:32 PM PDT -erikaBell,2021-04-07T04:38:07Z,- erikaBell unassigned from issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-06 09:38 PM PDT -erikaBell,2021-04-07T06:08:55Z,- erikaBell commented on pull request: [1362](https://github.com/hackforla/website/pull/1362#issuecomment-814630564) at 2021-04-06 11:08 PM PDT -erikaBell,2021-04-07T18:23:09Z,- erikaBell commented on pull request: [1362](https://github.com/hackforla/website/pull/1362#issuecomment-815126709) at 2021-04-07 11:23 AM PDT -erikaBell,2021-04-07T18:39:43Z,- erikaBell commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-815137422) at 2021-04-07 11:39 AM PDT -erikaBell,2021-04-07T18:40:39Z,- erikaBell commented on pull request: [1364](https://github.com/hackforla/website/pull/1364#issuecomment-815138015) at 2021-04-07 11:40 AM PDT -erikaBell,2021-04-07T19:06:05Z,- erikaBell commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-815155274) at 2021-04-07 12:06 PM PDT -erikaBell,2021-04-08T00:36:34Z,- erikaBell commented on pull request: [1365](https://github.com/hackforla/website/pull/1365#issuecomment-815363512) at 2021-04-07 05:36 PM PDT -erikaBell,2021-04-08T01:12:14Z,- erikaBell commented on pull request: [1361](https://github.com/hackforla/website/pull/1361#issuecomment-815374990) at 2021-04-07 06:12 PM PDT -erikaBell,2021-04-08T01:34:42Z,- erikaBell commented on pull request: [1369](https://github.com/hackforla/website/pull/1369#issuecomment-815382338) at 2021-04-07 06:34 PM PDT -erikaBell,2021-04-08T03:21:07Z,- erikaBell opened pull request: [1377](https://github.com/hackforla/website/pull/1377) at 2021-04-07 08:21 PM PDT -erikaBell,2021-04-09T18:40:07Z,- erikaBell assigned to issue: [1284](https://github.com/hackforla/website/issues/1284#issuecomment-803653980) at 2021-04-09 11:40 AM PDT -erikaBell,2021-04-09T18:47:24Z,- erikaBell assigned to issue: [1336](https://github.com/hackforla/website/issues/1336) at 2021-04-09 11:47 AM PDT -erikaBell,2021-04-09T20:08:03Z,- erikaBell commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-816939161) at 2021-04-09 01:08 PM PDT -erikaBell,2021-04-10T02:47:55Z,- erikaBell commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-817066633) at 2021-04-09 07:47 PM PDT -erikaBell,2021-04-10T03:26:56Z,- erikaBell opened pull request: [1386](https://github.com/hackforla/website/pull/1386) at 2021-04-09 08:26 PM PDT -erikaBell,2021-04-10T03:30:53Z,- erikaBell submitted pull request review: [1362](https://github.com/hackforla/website/pull/1362#pullrequestreview-632885019) at 2021-04-09 08:30 PM PDT -erikaBell,2021-04-10T04:53:22Z,- erikaBell pull request merged: [1377](https://github.com/hackforla/website/pull/1377#event-4577091390) at 2021-04-09 09:53 PM PDT -erikaBell,2021-04-10T16:18:58Z,- erikaBell opened issue: [1388](https://github.com/hackforla/website/issues/1388) at 2021-04-10 09:18 AM PDT -erikaBell,2021-04-10T16:19:13Z,- erikaBell assigned to issue: [1388](https://github.com/hackforla/website/issues/1388) at 2021-04-10 09:19 AM PDT -erikaBell,2021-04-10T17:20:18Z,- erikaBell commented on issue: [1388](https://github.com/hackforla/website/issues/1388#issuecomment-817173966) at 2021-04-10 10:20 AM PDT -erikaBell,2021-04-10T17:27:15Z,- erikaBell opened pull request: [1389](https://github.com/hackforla/website/pull/1389) at 2021-04-10 10:27 AM PDT -erikaBell,2021-04-10T17:48:07Z,- erikaBell submitted pull request review: [1387](https://github.com/hackforla/website/pull/1387#pullrequestreview-632940437) at 2021-04-10 10:48 AM PDT -erikaBell,2021-04-10T21:37:29Z,- erikaBell commented on pull request: [1386](https://github.com/hackforla/website/pull/1386#issuecomment-817205553) at 2021-04-10 02:37 PM PDT -erikaBell,2021-04-10T23:01:44Z,- erikaBell submitted pull request review: [1391](https://github.com/hackforla/website/pull/1391#pullrequestreview-632958659) at 2021-04-10 04:01 PM PDT -erikaBell,2021-04-10T23:04:02Z,- erikaBell commented on pull request: [1391](https://github.com/hackforla/website/pull/1391#issuecomment-817213799) at 2021-04-10 04:04 PM PDT -erikaBell,2021-04-10T23:04:08Z,- erikaBell pull request closed w/o merging: [1389](https://github.com/hackforla/website/pull/1389#event-4577958315) at 2021-04-10 04:04 PM PDT -erikaBell,2021-04-11T16:38:04Z,- erikaBell commented on issue: [1284](https://github.com/hackforla/website/issues/1284#issuecomment-817335544) at 2021-04-11 09:38 AM PDT -erikaBell,2021-04-12T21:04:32Z,- erikaBell submitted pull request review: [1397](https://github.com/hackforla/website/pull/1397#pullrequestreview-633964963) at 2021-04-12 02:04 PM PDT -erikaBell,2021-04-12T21:30:02Z,- erikaBell submitted pull request review: [1397](https://github.com/hackforla/website/pull/1397#pullrequestreview-633982301) at 2021-04-12 02:30 PM PDT -erikaBell,2021-04-12T21:46:29Z,- erikaBell submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-633992682) at 2021-04-12 02:46 PM PDT -erikaBell,2021-04-12T21:51:42Z,- erikaBell commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818266715) at 2021-04-12 02:51 PM PDT -erikaBell,2021-04-13T00:11:43Z,- erikaBell commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818323236) at 2021-04-12 05:11 PM PDT -erikaBell,2021-04-13T00:15:28Z,- erikaBell commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818324571) at 2021-04-12 05:15 PM PDT -erikaBell,2021-04-13T01:07:13Z,- erikaBell submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-634089320) at 2021-04-12 06:07 PM PDT -erikaBell,2021-04-13T01:55:39Z,- erikaBell opened pull request: [1401](https://github.com/hackforla/website/pull/1401) at 2021-04-12 06:55 PM PDT -erikaBell,2021-04-13T20:39:28Z,- erikaBell pull request merged: [1386](https://github.com/hackforla/website/pull/1386#event-4590174868) at 2021-04-13 01:39 PM PDT -erikaBell,2021-04-14T01:38:47Z,- erikaBell assigned to issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-818409060) at 2021-04-13 06:38 PM PDT -erikaBell,2021-04-14T02:13:49Z,- erikaBell commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-819171010) at 2021-04-13 07:13 PM PDT -erikaBell,2021-04-14T02:29:38Z,- erikaBell commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819176077) at 2021-04-13 07:29 PM PDT -erikaBell,2021-04-14T02:33:14Z,- erikaBell commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-819177126) at 2021-04-13 07:33 PM PDT -erikaBell,2021-04-14T02:33:14Z,- erikaBell closed issue as completed: [1286](https://github.com/hackforla/website/issues/1286#event-4591103744) at 2021-04-13 07:33 PM PDT -erikaBell,2021-04-14T05:43:21Z,- erikaBell commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-819244495) at 2021-04-13 10:43 PM PDT -erikaBell,2021-04-14T05:46:34Z,- erikaBell commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-819245786) at 2021-04-13 10:46 PM PDT -erikaBell,2021-04-14T21:16:47Z,- erikaBell commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-819838458) at 2021-04-14 02:16 PM PDT -erikaBell,2021-04-14T21:38:27Z,- erikaBell submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-636102238) at 2021-04-14 02:38 PM PDT -erikaBell,2021-04-14T21:49:09Z,- erikaBell commented on pull request: [1403](https://github.com/hackforla/website/pull/1403#issuecomment-819870657) at 2021-04-14 02:49 PM PDT -erikaBell,2021-04-14T21:57:15Z,- erikaBell closed issue by PR 1403: [1152](https://github.com/hackforla/website/issues/1152#event-4596031306) at 2021-04-14 02:57 PM PDT -erikaBell,2021-04-14T22:10:28Z,- erikaBell commented on pull request: [1403](https://github.com/hackforla/website/pull/1403#issuecomment-819881249) at 2021-04-14 03:10 PM PDT -erikaBell,2021-04-15T01:59:45Z,- erikaBell pull request merged: [1401](https://github.com/hackforla/website/pull/1401#event-4596666068) at 2021-04-14 06:59 PM PDT -erikaBell,2021-04-15T05:49:33Z,- erikaBell closed issue by PR 1397: [1345](https://github.com/hackforla/website/issues/1345#event-4597201805) at 2021-04-14 10:49 PM PDT -erikaBell,2021-04-15T07:21:40Z,- erikaBell commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-820183092) at 2021-04-15 12:21 AM PDT -erikaBell,2021-04-15T07:22:28Z,- erikaBell commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-820183593) at 2021-04-15 12:22 AM PDT -erikaBell,2021-04-15T19:35:55Z,- erikaBell commented on pull request: [1409](https://github.com/hackforla/website/pull/1409#issuecomment-820682625) at 2021-04-15 12:35 PM PDT -erikaBell,2021-04-15T19:46:04Z,- erikaBell submitted pull request review: [1409](https://github.com/hackforla/website/pull/1409#pullrequestreview-637068502) at 2021-04-15 12:46 PM PDT -erikaBell,2021-04-16T01:47:53Z,- erikaBell submitted pull request review: [1408](https://github.com/hackforla/website/pull/1408#pullrequestreview-637271767) at 2021-04-15 06:47 PM PDT -erikaBell,2021-04-16T01:51:19Z,- erikaBell closed issue as completed: [1353](https://github.com/hackforla/website/issues/1353#event-4602375752) at 2021-04-15 06:51 PM PDT -erikaBell,2021-04-16T02:05:05Z,- erikaBell submitted pull request review: [1408](https://github.com/hackforla/website/pull/1408#pullrequestreview-637277182) at 2021-04-15 07:05 PM PDT -erikaBell,2021-04-16T02:08:12Z,- erikaBell closed issue by PR 1408: [1090](https://github.com/hackforla/website/issues/1090#event-4602438831) at 2021-04-15 07:08 PM PDT -erikaBell,2021-04-16T19:52:05Z,- erikaBell submitted pull request review: [1409](https://github.com/hackforla/website/pull/1409#pullrequestreview-638040984) at 2021-04-16 12:52 PM PDT -erikaBell,2021-04-18T04:38:40Z,- erikaBell submitted pull request review: [1409](https://github.com/hackforla/website/pull/1409#pullrequestreview-638292689) at 2021-04-17 09:38 PM PDT -erikaBell,2021-04-18T07:25:35Z,- erikaBell submitted pull request review: [1412](https://github.com/hackforla/website/pull/1412#pullrequestreview-638301277) at 2021-04-18 12:25 AM PDT -erikaBell,2021-04-18T16:26:43Z,- erikaBell closed issue by PR 1362: [1257](https://github.com/hackforla/website/issues/1257#event-4609260011) at 2021-04-18 09:26 AM PDT -erikaBell,2021-04-18T18:55:10Z,- erikaBell commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-18 11:55 AM PDT -erikaBell,2021-04-18T19:21:42Z,- erikaBell opened issue: [1418](https://github.com/hackforla/website/issues/1418) at 2021-04-18 12:21 PM PDT -erikaBell,2021-04-18T20:11:03Z,- erikaBell submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-638363401) at 2021-04-18 01:11 PM PDT -erikaBell,2021-04-19T01:03:58Z,- erikaBell submitted pull request review: [1420](https://github.com/hackforla/website/pull/1420#pullrequestreview-638399778) at 2021-04-18 06:03 PM PDT -erikaBell,2021-04-21T00:37:46Z,- erikaBell submitted pull request review: [1422](https://github.com/hackforla/website/pull/1422#pullrequestreview-640538362) at 2021-04-20 05:37 PM PDT -erikaBell,2021-04-21T17:17:00Z,- erikaBell submitted pull request review: [1394](https://github.com/hackforla/website/pull/1394#pullrequestreview-641342615) at 2021-04-21 10:17 AM PDT -erikaBell,2021-04-21T17:17:11Z,- erikaBell closed issue by PR 1394: [1142](https://github.com/hackforla/website/issues/1142#event-4626303991) at 2021-04-21 10:17 AM PDT -erikaBell,2021-04-21T17:23:08Z,- erikaBell commented on pull request: [1428](https://github.com/hackforla/website/pull/1428#issuecomment-824229236) at 2021-04-21 10:23 AM PDT -erikaBell,2021-04-22T16:13:39Z,- erikaBell submitted pull request review: [1429](https://github.com/hackforla/website/pull/1429#pullrequestreview-642408467) at 2021-04-22 09:13 AM PDT -erikaBell,2021-04-22T16:13:47Z,- erikaBell closed issue by PR 1429: [1150](https://github.com/hackforla/website/issues/1150#event-4631885598) at 2021-04-22 09:13 AM PDT -erikaBell,2021-04-23T16:17:56Z,- erikaBell opened pull request: [1437](https://github.com/hackforla/website/pull/1437) at 2021-04-23 09:17 AM PDT -erikaBell,2021-04-23T16:20:06Z,- erikaBell commented on pull request: [1437](https://github.com/hackforla/website/pull/1437#issuecomment-825768637) at 2021-04-23 09:20 AM PDT -erikaBell,2021-04-23T16:27:23Z,- erikaBell submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-643472207) at 2021-04-23 09:27 AM PDT -erikaBell,2021-04-23T16:34:01Z,- erikaBell closed issue by PR 1419: [1322](https://github.com/hackforla/website/issues/1322#event-4637855212) at 2021-04-23 09:34 AM PDT -erikaBell,2021-04-23T16:48:59Z,- erikaBell submitted pull request review: [1438](https://github.com/hackforla/website/pull/1438#pullrequestreview-643489349) at 2021-04-23 09:48 AM PDT -erikaBell,2021-04-23T17:09:29Z,- erikaBell opened issue: [1439](https://github.com/hackforla/website/issues/1439) at 2021-04-23 10:09 AM PDT -erikaBell,2021-04-23T18:01:24Z,- erikaBell opened pull request: [1440](https://github.com/hackforla/website/pull/1440) at 2021-04-23 11:01 AM PDT -erikaBell,2021-04-23T18:04:25Z,- erikaBell pull request merged: [1440](https://github.com/hackforla/website/pull/1440#event-4638215999) at 2021-04-23 11:04 AM PDT -erikaBell,2021-04-24T01:58:56Z,- erikaBell opened pull request: [1448](https://github.com/hackforla/website/pull/1448) at 2021-04-23 06:58 PM PDT -erikaBell,2021-04-24T01:59:21Z,- erikaBell commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826016926) at 2021-04-23 06:59 PM PDT -erikaBell,2021-04-24T03:33:18Z,- erikaBell commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826027204) at 2021-04-23 08:33 PM PDT -erikaBell,2021-04-24T04:12:09Z,- erikaBell submitted pull request review: [1433](https://github.com/hackforla/website/pull/1433#pullrequestreview-643759505) at 2021-04-23 09:12 PM PDT -erikaBell,2021-04-24T04:23:37Z,- erikaBell submitted pull request review: [1449](https://github.com/hackforla/website/pull/1449#pullrequestreview-643760244) at 2021-04-23 09:23 PM PDT -erikaBell,2021-04-24T04:23:56Z,- erikaBell submitted pull request review: [1449](https://github.com/hackforla/website/pull/1449#pullrequestreview-643760273) at 2021-04-23 09:23 PM PDT -erikaBell,2021-04-24T04:24:26Z,- erikaBell closed issue by PR 1449: [1151](https://github.com/hackforla/website/issues/1151#event-4639519339) at 2021-04-23 09:24 PM PDT -erikaBell,2021-04-24T19:12:23Z,- erikaBell commented on pull request: [1454](https://github.com/hackforla/website/pull/1454#issuecomment-826140225) at 2021-04-24 12:12 PM PDT -erikaBell,2021-04-24T19:12:44Z,- erikaBell closed issue as completed: [1453](https://github.com/hackforla/website/issues/1453#event-4640280822) at 2021-04-24 12:12 PM PDT -erikaBell,2021-04-24T19:17:16Z,- erikaBell pull request closed w/o merging: [1437](https://github.com/hackforla/website/pull/1437#event-4640284434) at 2021-04-24 12:17 PM PDT -erikaBell,2021-04-24T19:19:08Z,- erikaBell submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-644059867) at 2021-04-24 12:19 PM PDT -erikaBell,2021-04-24T23:38:48Z,- erikaBell submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-644075000) at 2021-04-24 04:38 PM PDT -erikaBell,2021-04-24T23:45:23Z,- erikaBell submitted pull request review: [1451](https://github.com/hackforla/website/pull/1451#pullrequestreview-644075299) at 2021-04-24 04:45 PM PDT -erikaBell,2021-04-24T23:45:37Z,- erikaBell closed issue by PR 1451: [1450](https://github.com/hackforla/website/issues/1450#event-4640474103) at 2021-04-24 04:45 PM PDT -erikaBell,2021-04-25T19:45:40Z,- erikaBell opened pull request: [1466](https://github.com/hackforla/website/pull/1466) at 2021-04-25 12:45 PM PDT -erikaBell,2021-04-25T19:52:50Z,- erikaBell pull request merged: [1466](https://github.com/hackforla/website/pull/1466#event-4641573126) at 2021-04-25 12:52 PM PDT -erikaBell,2021-04-25T20:01:46Z,- erikaBell pull request closed w/o merging: [1448](https://github.com/hackforla/website/pull/1448#event-4641581919) at 2021-04-25 01:01 PM PDT -erikaBell,2021-04-25T20:02:44Z,- erikaBell closed issue as completed: [1431](https://github.com/hackforla/website/issues/1431#event-4641582841) at 2021-04-25 01:02 PM PDT -erikaBell,2021-04-25T20:02:55Z,- erikaBell closed issue as completed: [1313](https://github.com/hackforla/website/issues/1313#event-4641583006) at 2021-04-25 01:02 PM PDT -erikaBell,2021-04-25T20:03:00Z,- erikaBell commented on pull request: [1466](https://github.com/hackforla/website/pull/1466#issuecomment-826381690) at 2021-04-25 01:03 PM PDT -erikaBell,2021-04-25T20:14:40Z,- erikaBell submitted pull request review: [1464](https://github.com/hackforla/website/pull/1464#pullrequestreview-644177301) at 2021-04-25 01:14 PM PDT -erikaBell,2021-04-25T20:14:45Z,- erikaBell closed issue by PR 1464: [1342](https://github.com/hackforla/website/issues/1342#event-4641594256) at 2021-04-25 01:14 PM PDT -erikaBell,2021-04-25T20:18:26Z,- erikaBell submitted pull request review: [1465](https://github.com/hackforla/website/pull/1465#pullrequestreview-644177586) at 2021-04-25 01:18 PM PDT -erikaBell,2021-04-25T20:18:43Z,- erikaBell closed issue by PR 1465: [1022](https://github.com/hackforla/website/issues/1022#event-4641597760) at 2021-04-25 01:18 PM PDT -erikaBell,2021-04-27T02:07:59Z,- erikaBell submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-645279619) at 2021-04-26 07:07 PM PDT -erikaBell,2021-04-27T02:24:00Z,- erikaBell submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-645289441) at 2021-04-26 07:24 PM PDT -erikaBell,2021-04-27T05:53:26Z,- erikaBell submitted pull request review: [1433](https://github.com/hackforla/website/pull/1433#pullrequestreview-645461050) at 2021-04-26 10:53 PM PDT -erikaBell,2021-04-27T05:53:38Z,- erikaBell closed issue by PR 1433: [1414](https://github.com/hackforla/website/issues/1414#event-4648730041) at 2021-04-26 10:53 PM PDT -erikaBell,2021-04-27T18:50:18Z,- erikaBell submitted pull request review: [1470](https://github.com/hackforla/website/pull/1470#pullrequestreview-646241315) at 2021-04-27 11:50 AM PDT -erikaBell,2021-04-27T18:55:04Z,- erikaBell commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-827840036) at 2021-04-27 11:55 AM PDT -erikaBell,2021-04-27T18:55:09Z,- erikaBell closed issue by PR 1470: [1460](https://github.com/hackforla/website/issues/1460#event-4652617931) at 2021-04-27 11:55 AM PDT -erikaBell,2021-04-27T18:57:41Z,- erikaBell commented on pull request: [1472](https://github.com/hackforla/website/pull/1472#issuecomment-827841736) at 2021-04-27 11:57 AM PDT -erikaBell,2021-04-27T19:00:17Z,- erikaBell commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-827843239) at 2021-04-27 12:00 PM PDT -erikaBell,2021-04-28T04:12:39Z,- erikaBell submitted pull request review: [1472](https://github.com/hackforla/website/pull/1472#pullrequestreview-646579602) at 2021-04-27 09:12 PM PDT -erikaBell,2021-04-28T04:12:45Z,- erikaBell closed issue by PR 1472: [1459](https://github.com/hackforla/website/issues/1459#event-4654313351) at 2021-04-27 09:12 PM PDT -erikaBell,2021-04-28T04:17:34Z,- erikaBell submitted pull request review: [1480](https://github.com/hackforla/website/pull/1480#pullrequestreview-646581137) at 2021-04-27 09:17 PM PDT -erikaBell,2021-04-28T04:18:48Z,- erikaBell closed issue by PR 1480: [1315](https://github.com/hackforla/website/issues/1315#event-4654327381) at 2021-04-27 09:18 PM PDT -erikaBell,2021-04-28T04:32:23Z,- erikaBell submitted pull request review: [1484](https://github.com/hackforla/website/pull/1484#pullrequestreview-646585953) at 2021-04-27 09:32 PM PDT -erikaBell,2021-04-28T04:38:18Z,- erikaBell submitted pull request review: [1428](https://github.com/hackforla/website/pull/1428#pullrequestreview-646587872) at 2021-04-27 09:38 PM PDT -erikaBell,2021-04-28T04:38:27Z,- erikaBell closed issue by PR 1428: [1415](https://github.com/hackforla/website/issues/1415#event-4654371832) at 2021-04-27 09:38 PM PDT -erikaBell,2021-04-28T21:17:19Z,- erikaBell submitted pull request review: [1484](https://github.com/hackforla/website/pull/1484#pullrequestreview-647645806) at 2021-04-28 02:17 PM PDT -erikaBell,2021-04-28T21:21:45Z,- erikaBell submitted pull request review: [1467](https://github.com/hackforla/website/pull/1467#pullrequestreview-647648860) at 2021-04-28 02:21 PM PDT -erikaBell,2021-04-28T21:23:10Z,- erikaBell closed issue by PR 1467: [1335](https://github.com/hackforla/website/issues/1335#event-4659299889) at 2021-04-28 02:23 PM PDT -erikaBell,2021-04-28T21:25:11Z,- erikaBell commented on pull request: [1455](https://github.com/hackforla/website/pull/1455#issuecomment-828790237) at 2021-04-28 02:25 PM PDT -erikaBell,2021-04-28T21:32:49Z,- erikaBell submitted pull request review: [1486](https://github.com/hackforla/website/pull/1486#pullrequestreview-647656361) at 2021-04-28 02:32 PM PDT -erikaBell,2021-04-28T21:37:18Z,- erikaBell assigned to issue: [1425](https://github.com/hackforla/website/issues/1425) at 2021-04-28 02:37 PM PDT -erikaBell,2021-04-29T00:29:16Z,- erikaBell submitted pull request review: [1486](https://github.com/hackforla/website/pull/1486#pullrequestreview-647742123) at 2021-04-28 05:29 PM PDT -erikaBell,2021-04-29T00:29:21Z,- erikaBell closed issue by PR 1486: [1444](https://github.com/hackforla/website/issues/1444#event-4659853078) at 2021-04-28 05:29 PM PDT -erikaBell,2021-04-29T00:33:12Z,- erikaBell closed issue by PR 1490: [1489](https://github.com/hackforla/website/issues/1489#event-4659862320) at 2021-04-28 05:33 PM PDT -erikaBell,2021-04-29T18:55:14Z,- erikaBell assigned to issue: [1432](https://github.com/hackforla/website/issues/1432) at 2021-04-29 11:55 AM PDT -erikaBell,2021-04-30T16:37:11Z,- erikaBell submitted pull request review: [1430](https://github.com/hackforla/website/pull/1430#pullrequestreview-649393893) at 2021-04-30 09:37 AM PDT -erikaBell,2021-04-30T16:37:16Z,- erikaBell closed issue by PR 1430: [861](https://github.com/hackforla/website/issues/861#event-4670551283) at 2021-04-30 09:37 AM PDT -erikaBell,2021-04-30T16:38:18Z,- erikaBell submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-649394785) at 2021-04-30 09:38 AM PDT -erikaBell,2021-04-30T16:38:24Z,- erikaBell closed issue by PR 1455: [1326](https://github.com/hackforla/website/issues/1326#event-4670557703) at 2021-04-30 09:38 AM PDT -erikaBell,2021-04-30T17:00:48Z,- erikaBell commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-830231334) at 2021-04-30 10:00 AM PDT -erikaBell,2021-04-30T17:04:42Z,- erikaBell submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-649415573) at 2021-04-30 10:04 AM PDT -erikaBell,2021-04-30T17:06:09Z,- erikaBell submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-649416655) at 2021-04-30 10:06 AM PDT -erikaBell,2021-04-30T17:44:02Z,- erikaBell submitted pull request review: [1495](https://github.com/hackforla/website/pull/1495#pullrequestreview-649445908) at 2021-04-30 10:44 AM PDT -erikaBell,2021-04-30T17:44:08Z,- erikaBell closed issue by PR 1495: [1462](https://github.com/hackforla/website/issues/1462#event-4670914496) at 2021-04-30 10:44 AM PDT -erikaBell,2021-04-30T18:14:28Z,- erikaBell submitted pull request review: [1493](https://github.com/hackforla/website/pull/1493#pullrequestreview-649469259) at 2021-04-30 11:14 AM PDT -erikaBell,2021-04-30T18:17:00Z,- erikaBell commented on issue: [1425](https://github.com/hackforla/website/issues/1425#issuecomment-830274970) at 2021-04-30 11:17 AM PDT -erikaBell,2021-04-30T18:18:53Z,- erikaBell commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-830276012) at 2021-04-30 11:18 AM PDT -erikaBell,2021-05-01T00:16:15Z,- erikaBell closed issue by PR 1468: [1393](https://github.com/hackforla/website/issues/1393#event-4672539077) at 2021-04-30 05:16 PM PDT -erikaBell,2021-05-02T16:12:22Z,- erikaBell submitted pull request review: [1484](https://github.com/hackforla/website/pull/1484#pullrequestreview-649931032) at 2021-05-02 09:12 AM PDT -erikaBell,2021-05-02T16:12:29Z,- erikaBell closed issue by PR 1484: [1463](https://github.com/hackforla/website/issues/1463#event-4674970273) at 2021-05-02 09:12 AM PDT -erikaBell,2021-05-02T16:16:48Z,- erikaBell submitted pull request review: [1493](https://github.com/hackforla/website/pull/1493#pullrequestreview-649931411) at 2021-05-02 09:16 AM PDT -erikaBell,2021-05-02T16:17:39Z,- erikaBell closed issue by PR 1493: [1249](https://github.com/hackforla/website/issues/1249#event-4674975713) at 2021-05-02 09:17 AM PDT -erikaBell,2021-05-02T16:20:35Z,- erikaBell opened issue: [1500](https://github.com/hackforla/website/issues/1500) at 2021-05-02 09:20 AM PDT -erikaBell,2021-05-03T20:58:23Z,- erikaBell opened pull request: [1502](https://github.com/hackforla/website/pull/1502) at 2021-05-03 01:58 PM PDT -erikaBell,2021-05-04T01:17:56Z,- erikaBell submitted pull request review: [1503](https://github.com/hackforla/website/pull/1503#pullrequestreview-650831670) at 2021-05-03 06:17 PM PDT -erikaBell,2021-05-04T19:10:51Z,- erikaBell commented on pull request: [1502](https://github.com/hackforla/website/pull/1502#issuecomment-832178003) at 2021-05-04 12:10 PM PDT -erikaBell,2021-05-04T20:48:49Z,- erikaBell submitted pull request review: [1503](https://github.com/hackforla/website/pull/1503#pullrequestreview-651655610) at 2021-05-04 01:48 PM PDT -erikaBell,2021-05-04T20:52:41Z,- erikaBell submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-651658513) at 2021-05-04 01:52 PM PDT -erikaBell,2021-05-04T20:52:46Z,- erikaBell closed issue by PR 1494: [1488](https://github.com/hackforla/website/issues/1488#event-4685633336) at 2021-05-04 01:52 PM PDT -erikaBell,2021-05-04T21:02:48Z,- erikaBell submitted pull request review: [1496](https://github.com/hackforla/website/pull/1496#pullrequestreview-651666012) at 2021-05-04 02:02 PM PDT -erikaBell,2021-05-04T21:37:54Z,- erikaBell commented on pull request: [1502](https://github.com/hackforla/website/pull/1502#issuecomment-832265066) at 2021-05-04 02:37 PM PDT -erikaBell,2021-05-05T22:47:47Z,- erikaBell opened pull request: [1516](https://github.com/hackforla/website/pull/1516) at 2021-05-05 03:47 PM PDT -erikaBell,2021-05-05T22:48:53Z,- erikaBell pull request closed w/o merging: [1502](https://github.com/hackforla/website/pull/1502#event-4691916857) at 2021-05-05 03:48 PM PDT -erikaBell,2021-05-05T23:52:07Z,- erikaBell submitted pull request review: [1517](https://github.com/hackforla/website/pull/1517#pullrequestreview-652858501) at 2021-05-05 04:52 PM PDT -erikaBell,2021-05-05T23:52:12Z,- erikaBell closed issue by PR 1517: [1457](https://github.com/hackforla/website/issues/1457#event-4692070518) at 2021-05-05 04:52 PM PDT -erikaBell,2021-05-06T00:04:11Z,- erikaBell commented on issue: [1061](https://github.com/hackforla/website/issues/1061#issuecomment-833125650) at 2021-05-05 05:04 PM PDT -erikaBell,2021-05-06T20:00:21Z,- erikaBell submitted pull request review: [1518](https://github.com/hackforla/website/pull/1518#pullrequestreview-653844620) at 2021-05-06 01:00 PM PDT -erikaBell,2021-05-06T20:00:26Z,- erikaBell closed issue by PR 1518: [1512](https://github.com/hackforla/website/issues/1512#event-4697516811) at 2021-05-06 01:00 PM PDT -erikaBell,2021-05-06T20:26:08Z,- erikaBell submitted pull request review: [1509](https://github.com/hackforla/website/pull/1509#pullrequestreview-653864330) at 2021-05-06 01:26 PM PDT -erikaBell,2021-05-06T20:29:07Z,- erikaBell opened pull request: [1520](https://github.com/hackforla/website/pull/1520) at 2021-05-06 01:29 PM PDT -erikaBell,2021-05-06T20:29:44Z,- erikaBell pull request closed w/o merging: [1520](https://github.com/hackforla/website/pull/1520#event-4697668454) at 2021-05-06 01:29 PM PDT -erikaBell,2021-05-06T21:02:19Z,- erikaBell assigned to issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831557350) at 2021-05-06 02:02 PM PDT -erikaBell,2021-05-06T22:39:22Z,- erikaBell opened issue: [1521](https://github.com/hackforla/website/issues/1521) at 2021-05-06 03:39 PM PDT -erikaBell,2021-05-07T17:57:08Z,- erikaBell commented on pull request: [1516](https://github.com/hackforla/website/pull/1516#issuecomment-834657178) at 2021-05-07 10:57 AM PDT -erikaBell,2021-05-07T20:11:28Z,- erikaBell commented on pull request: [1530](https://github.com/hackforla/website/pull/1530#issuecomment-834744789) at 2021-05-07 01:11 PM PDT -erikaBell,2021-05-07T20:20:46Z,- erikaBell pull request merged: [1516](https://github.com/hackforla/website/pull/1516#event-4704462820) at 2021-05-07 01:20 PM PDT -erikaBell,2021-05-07T23:26:10Z,- erikaBell closed issue by PR 1509: [1115](https://github.com/hackforla/website/issues/1115#event-4705185966) at 2021-05-07 04:26 PM PDT -erikaBell,2021-05-07T23:30:58Z,- erikaBell closed issue by PR 1530: [1458](https://github.com/hackforla/website/issues/1458#event-4705201798) at 2021-05-07 04:30 PM PDT -erikaBell,2021-05-08T07:23:57Z,- erikaBell closed issue by PR 1516: [1425](https://github.com/hackforla/website/issues/1425#event-4706746926) at 2021-05-08 12:23 AM PDT -erikaBell,2021-05-08T07:24:05Z,- erikaBell closed issue by PR 1516: [1432](https://github.com/hackforla/website/issues/1432#event-4706747282) at 2021-05-08 12:24 AM PDT -erikaBell,2021-05-08T07:28:49Z,- erikaBell commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-835172088) at 2021-05-08 12:28 AM PDT -erikaBell,2021-05-09T19:41:25Z,- erikaBell submitted pull request review: [1533](https://github.com/hackforla/website/pull/1533#pullrequestreview-655107476) at 2021-05-09 12:41 PM PDT -erikaBell,2021-05-09T23:47:20Z,- erikaBell submitted pull request review: [1533](https://github.com/hackforla/website/pull/1533#pullrequestreview-655126319) at 2021-05-09 04:47 PM PDT -erikaBell,2021-05-09T23:47:44Z,- erikaBell closed issue by PR 1533: [1483](https://github.com/hackforla/website/issues/1483#event-4712268662) at 2021-05-09 04:47 PM PDT -erikaBell,2021-05-10T17:09:17Z,- erikaBell commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-836982217) at 2021-05-10 10:09 AM PDT -erikaBell,2021-05-10T18:12:43Z,- erikaBell commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837076750) at 2021-05-10 11:12 AM PDT -erikaBell,2021-05-10T22:21:47Z,- erikaBell submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-656131075) at 2021-05-10 03:21 PM PDT -erikaBell,2021-05-12T03:52:07Z,- erikaBell submitted pull request review: [1491](https://github.com/hackforla/website/pull/1491#pullrequestreview-657438594) at 2021-05-11 08:52 PM PDT -erikaBell,2021-05-15T15:22:31Z,- erikaBell opened issue: [1543](https://github.com/hackforla/website/issues/1543) at 2021-05-15 08:22 AM PDT -erikaBell,2021-05-15T19:36:42Z,- erikaBell opened pull request: [1544](https://github.com/hackforla/website/pull/1544) at 2021-05-15 12:36 PM PDT -erikaBell,2021-05-15T19:37:21Z,- erikaBell pull request closed w/o merging: [1544](https://github.com/hackforla/website/pull/1544#event-4750329137) at 2021-05-15 12:37 PM PDT -erikaBell,2021-05-15T19:39:03Z,- erikaBell opened pull request: [1545](https://github.com/hackforla/website/pull/1545) at 2021-05-15 12:39 PM PDT -erikaBell,2021-05-15T19:39:31Z,- erikaBell pull request merged: [1545](https://github.com/hackforla/website/pull/1545#event-4750331200) at 2021-05-15 12:39 PM PDT -erikaBell,2021-05-15T19:52:37Z,- erikaBell opened pull request: [1546](https://github.com/hackforla/website/pull/1546) at 2021-05-15 12:52 PM PDT -erikaBell,2021-05-15T19:53:03Z,- erikaBell pull request merged: [1546](https://github.com/hackforla/website/pull/1546#event-4750343661) at 2021-05-15 12:53 PM PDT -erikaBell,2021-05-15T20:04:04Z,- erikaBell commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-841717158) at 2021-05-15 01:04 PM PDT -erikaBell,2021-05-15T20:04:07Z,- erikaBell closed issue as completed: [1130](https://github.com/hackforla/website/issues/1130#event-4750354650) at 2021-05-15 01:04 PM PDT -erikaBell,2021-05-15T22:00:39Z,- erikaBell commented on issue: [1061](https://github.com/hackforla/website/issues/1061#issuecomment-841731418) at 2021-05-15 03:00 PM PDT -erikaBell,2021-05-15T22:04:38Z,- erikaBell commented on issue: [1070](https://github.com/hackforla/website/issues/1070#issuecomment-841731801) at 2021-05-15 03:04 PM PDT -erikaBell,2021-05-15T22:49:28Z,- erikaBell submitted pull request review: [1547](https://github.com/hackforla/website/pull/1547#pullrequestreview-660393614) at 2021-05-15 03:49 PM PDT -erikaBell,2021-05-20T18:10:59Z,- erikaBell submitted pull request review: [1589](https://github.com/hackforla/website/pull/1589#pullrequestreview-664713814) at 2021-05-20 11:10 AM PDT -erikaBell,2021-05-20T18:11:18Z,- erikaBell closed issue by PR 1589: [1542](https://github.com/hackforla/website/issues/1542#event-4775126714) at 2021-05-20 11:11 AM PDT -erikaBell,2021-05-20T18:16:22Z,- erikaBell submitted pull request review: [1547](https://github.com/hackforla/website/pull/1547#pullrequestreview-664718355) at 2021-05-20 11:16 AM PDT -erikaBell,2021-05-20T18:16:41Z,- erikaBell closed issue as completed: [1521](https://github.com/hackforla/website/issues/1521#event-4775151037) at 2021-05-20 11:16 AM PDT -erikaBell,2021-05-20T18:17:58Z,- erikaBell commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-845356292) at 2021-05-20 11:17 AM PDT -erikaBell,2021-05-21T16:04:43Z,- erikaBell submitted pull request review: [1601](https://github.com/hackforla/website/pull/1601#pullrequestreview-665630177) at 2021-05-21 09:04 AM PDT -erikaBell,2021-05-24T02:04:37Z,- erikaBell assigned to issue: [1605](https://github.com/hackforla/website/issues/1605) at 2021-05-23 07:04 PM PDT -erikaBell,2021-05-24T02:24:01Z,- erikaBell opened pull request: [1624](https://github.com/hackforla/website/pull/1624) at 2021-05-23 07:24 PM PDT -erikaBell,2021-05-24T02:46:41Z,- erikaBell assigned to issue: [1607](https://github.com/hackforla/website/issues/1607) at 2021-05-23 07:46 PM PDT -erikaBell,2021-05-24T02:50:35Z,- erikaBell opened pull request: [1625](https://github.com/hackforla/website/pull/1625) at 2021-05-23 07:50 PM PDT -erikaBell,2021-05-24T03:12:54Z,- erikaBell assigned to issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-05-23 08:12 PM PDT -erikaBell,2021-05-24T03:15:54Z,- erikaBell opened pull request: [1626](https://github.com/hackforla/website/pull/1626) at 2021-05-23 08:15 PM PDT -erikaBell,2021-05-25T23:56:46Z,- erikaBell commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-848350650) at 2021-05-25 04:56 PM PDT -erikaBell,2021-05-26T00:14:38Z,- erikaBell assigned to issue: [1606](https://github.com/hackforla/website/issues/1606) at 2021-05-25 05:14 PM PDT -erikaBell,2021-05-26T00:17:44Z,- erikaBell opened pull request: [1637](https://github.com/hackforla/website/pull/1637) at 2021-05-25 05:17 PM PDT -erikaBell,2021-05-26T00:23:18Z,- erikaBell pull request closed w/o merging: [1637](https://github.com/hackforla/website/pull/1637#event-4795977883) at 2021-05-25 05:23 PM PDT -erikaBell,2021-05-26T00:23:31Z,- erikaBell commented on pull request: [1637](https://github.com/hackforla/website/pull/1637#issuecomment-848367847) at 2021-05-25 05:23 PM PDT -erikaBell,2021-05-26T00:31:23Z,- erikaBell opened pull request: [1638](https://github.com/hackforla/website/pull/1638) at 2021-05-25 05:31 PM PDT -erikaBell,2021-05-26T00:41:50Z,- erikaBell assigned to issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-05-25 05:41 PM PDT -erikaBell,2021-05-26T00:50:44Z,- erikaBell opened pull request: [1639](https://github.com/hackforla/website/pull/1639) at 2021-05-25 05:50 PM PDT -erikaBell,2021-05-26T18:10:04Z,- erikaBell pull request closed w/o merging: [1639](https://github.com/hackforla/website/pull/1639#event-4801161254) at 2021-05-26 11:10 AM PDT -erikaBell,2021-05-26T18:10:13Z,- erikaBell pull request closed w/o merging: [1638](https://github.com/hackforla/website/pull/1638#event-4801161999) at 2021-05-26 11:10 AM PDT -erikaBell,2021-05-26T18:10:33Z,- erikaBell pull request closed w/o merging: [1626](https://github.com/hackforla/website/pull/1626#event-4801163533) at 2021-05-26 11:10 AM PDT -erikaBell,2021-05-26T18:13:01Z,- erikaBell unassigned from issue: [1607](https://github.com/hackforla/website/issues/1607) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-26T18:13:14Z,- erikaBell unassigned from issue: [1606](https://github.com/hackforla/website/issues/1606) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-26T18:13:23Z,- erikaBell unassigned from issue: [1605](https://github.com/hackforla/website/issues/1605) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-26T18:13:32Z,- erikaBell unassigned from issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-27T06:12:17Z,- erikaBell pull request closed w/o merging: [1625](https://github.com/hackforla/website/pull/1625#event-4803505227) at 2021-05-26 11:12 PM PDT -erikaBell,2021-05-27T06:13:41Z,- erikaBell commented on pull request: [1625](https://github.com/hackforla/website/pull/1625#issuecomment-849356165) at 2021-05-26 11:13 PM PDT -erikaBell,2021-05-28T18:13:39Z,- erikaBell commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-850586938) at 2021-05-28 11:13 AM PDT -erikaBell,2021-05-29T18:08:53Z,- erikaBell submitted pull request review: [1628](https://github.com/hackforla/website/pull/1628#pullrequestreview-671764247) at 2021-05-29 11:08 AM PDT -erikaBell,2021-05-29T18:09:02Z,- erikaBell closed issue by PR 1628: [1617](https://github.com/hackforla/website/issues/1617#event-4816302382) at 2021-05-29 11:09 AM PDT -erikaBell,2021-05-29T18:12:40Z,- erikaBell submitted pull request review: [1668](https://github.com/hackforla/website/pull/1668#pullrequestreview-671764514) at 2021-05-29 11:12 AM PDT -erikaBell,2021-05-29T18:13:03Z,- erikaBell closed issue by PR 1668: [1597](https://github.com/hackforla/website/issues/1597#event-4816306039) at 2021-05-29 11:13 AM PDT -erikaBell,2021-05-29T18:34:49Z,- erikaBell submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-671765890) at 2021-05-29 11:34 AM PDT -erikaBell,2021-05-29T18:40:06Z,- erikaBell submitted pull request review: [1627](https://github.com/hackforla/website/pull/1627#pullrequestreview-671766231) at 2021-05-29 11:40 AM PDT -erikaBell,2021-05-29T18:40:19Z,- erikaBell closed issue by PR 1627: [1615](https://github.com/hackforla/website/issues/1615#event-4816330694) at 2021-05-29 11:40 AM PDT -erikaBell,2021-05-30T18:17:09Z,- erikaBell assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -erikaBell,2021-06-01T03:22:33Z,- erikaBell submitted pull request review: [1675](https://github.com/hackforla/website/pull/1675#pullrequestreview-672623890) at 2021-05-31 08:22 PM PDT -erikaBell,2021-06-01T03:34:27Z,- erikaBell submitted pull request review: [1676](https://github.com/hackforla/website/pull/1676#pullrequestreview-672627200) at 2021-05-31 08:34 PM PDT -erikaBell,2021-06-01T03:34:33Z,- erikaBell closed issue by PR 1676: [1456](https://github.com/hackforla/website/issues/1456#event-4822759424) at 2021-05-31 08:34 PM PDT -erikaBell,2021-06-02T19:10:30Z,- erikaBell closed issue by PR 1636: [1608](https://github.com/hackforla/website/issues/1608#event-4833625238) at 2021-06-02 12:10 PM PDT -erikaBell,2021-06-02T19:11:43Z,- erikaBell commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-853315918) at 2021-06-02 12:11 PM PDT -erikaBell,2021-06-02T19:16:32Z,- erikaBell submitted pull request review: [1678](https://github.com/hackforla/website/pull/1678#pullrequestreview-674595392) at 2021-06-02 12:16 PM PDT -erikaBell,2021-06-02T19:16:47Z,- erikaBell closed issue by PR 1678: [1616](https://github.com/hackforla/website/issues/1616#event-4833654941) at 2021-06-02 12:16 PM PDT -erikaBell,2021-06-02T19:19:40Z,- erikaBell submitted pull request review: [1681](https://github.com/hackforla/website/pull/1681#pullrequestreview-674597783) at 2021-06-02 12:19 PM PDT -erikaBell,2021-06-02T19:19:44Z,- erikaBell closed issue by PR 1681: [1592](https://github.com/hackforla/website/issues/1592#event-4833666862) at 2021-06-02 12:19 PM PDT -erikaBell,2021-06-03T18:44:05Z,- erikaBell pull request merged: [1624](https://github.com/hackforla/website/pull/1624#event-4839245304) at 2021-06-03 11:44 AM PDT -erikaBell,2021-06-04T03:24:46Z,- erikaBell assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -erikaBell,2021-06-04T05:15:39Z,- erikaBell assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -erikaBell,2021-06-04T05:17:44Z,- erikaBell assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:17 PM PDT -erikaBell,2021-06-06T06:18:22Z,- erikaBell closed issue by PR 1675: [1613](https://github.com/hackforla/website/issues/1613#event-4847671918) at 2021-06-05 11:18 PM PDT -erikaBell,2021-06-06T06:30:49Z,- erikaBell submitted pull request review: [1682](https://github.com/hackforla/website/pull/1682#pullrequestreview-676831228) at 2021-06-05 11:30 PM PDT -erikaBell,2021-06-06T06:30:59Z,- erikaBell closed issue by PR 1682: [1612](https://github.com/hackforla/website/issues/1612#event-4847685100) at 2021-06-05 11:30 PM PDT -erikaBell,2021-06-06T06:41:44Z,- erikaBell submitted pull request review: [1683](https://github.com/hackforla/website/pull/1683#pullrequestreview-676831916) at 2021-06-05 11:41 PM PDT -erikaBell,2021-06-06T06:41:50Z,- erikaBell closed issue by PR 1683: [1618](https://github.com/hackforla/website/issues/1618#event-4847698119) at 2021-06-05 11:41 PM PDT -erikaBell,2021-06-06T06:46:52Z,- erikaBell commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-855348805) at 2021-06-05 11:46 PM PDT -erikaBell,2021-06-06T08:49:03Z,- erikaBell unassigned from issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-06-06 01:49 AM PDT -erikaBell,2021-06-06T19:49:20Z,- erikaBell unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -erikaBell,2021-06-12T16:32:03Z,- erikaBell unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -erikaBell,2021-06-29T00:16:24Z,- erikaBell assigned to issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-870084891) at 2021-06-28 05:16 PM PDT -erikaBell,2021-07-10T18:18:08Z,- erikaBell commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-877681122) at 2021-07-10 11:18 AM PDT -erikaBell,2021-07-12T15:54:56Z,- erikaBell submitted pull request review: [1924](https://github.com/hackforla/website/pull/1924#pullrequestreview-704280347) at 2021-07-12 08:54 AM PDT -erikaBell,2021-07-12T15:55:48Z,- erikaBell closed issue as completed: [1549](https://github.com/hackforla/website/issues/1549#event-5008410634) at 2021-07-12 08:55 AM PDT -erikaBell,2021-07-12T16:34:35Z,- erikaBell submitted pull request review: [1909](https://github.com/hackforla/website/pull/1909#pullrequestreview-704319949) at 2021-07-12 09:34 AM PDT -erikaBell,2021-07-13T05:23:08Z,- erikaBell submitted pull request review: [1907](https://github.com/hackforla/website/pull/1907#pullrequestreview-704755207) at 2021-07-12 10:23 PM PDT -erikaBell,2021-07-13T05:38:15Z,- erikaBell submitted pull request review: [1912](https://github.com/hackforla/website/pull/1912#pullrequestreview-704761921) at 2021-07-12 10:38 PM PDT -erikaBell,2021-07-13T05:44:06Z,- erikaBell submitted pull request review: [1935](https://github.com/hackforla/website/pull/1935#pullrequestreview-704764687) at 2021-07-12 10:44 PM PDT -erikaBell,2021-07-13T05:44:20Z,- erikaBell closed issue by PR 1935: [1910](https://github.com/hackforla/website/issues/1910#event-5011335647) at 2021-07-12 10:44 PM PDT -erikaBell,2021-07-14T05:15:33Z,- erikaBell submitted pull request review: [1909](https://github.com/hackforla/website/pull/1909#pullrequestreview-705860317) at 2021-07-13 10:15 PM PDT -erikaBell,2021-07-14T05:15:38Z,- erikaBell closed issue by PR 1909: [1824](https://github.com/hackforla/website/issues/1824#event-5017512673) at 2021-07-13 10:15 PM PDT -erikaBell,2021-07-17T18:20:04Z,- erikaBell submitted pull request review: [1952](https://github.com/hackforla/website/pull/1952#pullrequestreview-708960987) at 2021-07-17 11:20 AM PDT -erikaBell,2021-07-17T18:31:53Z,- erikaBell commented on pull request: [1949](https://github.com/hackforla/website/pull/1949#issuecomment-881940562) at 2021-07-17 11:31 AM PDT -erikaBell,2021-07-17T19:05:41Z,- erikaBell submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-708963529) at 2021-07-17 12:05 PM PDT -erikaBell,2021-07-17T19:23:36Z,- erikaBell submitted pull request review: [1949](https://github.com/hackforla/website/pull/1949#pullrequestreview-708964439) at 2021-07-17 12:23 PM PDT -erikaBell,2021-07-17T20:11:43Z,- erikaBell commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-881954109) at 2021-07-17 01:11 PM PDT -erikaBell,2021-07-17T20:34:37Z,- erikaBell opened pull request: [1964](https://github.com/hackforla/website/pull/1964) at 2021-07-17 01:34 PM PDT -erikaBell,2021-07-19T16:50:43Z,- erikaBell submitted pull request review: [1971](https://github.com/hackforla/website/pull/1971#pullrequestreview-709772617) at 2021-07-19 09:50 AM PDT -erikaBell,2021-07-19T16:51:01Z,- erikaBell closed issue by PR 1971: [1875](https://github.com/hackforla/website/issues/1875#event-5039633113) at 2021-07-19 09:51 AM PDT -erikaBell,2021-07-19T16:54:37Z,- erikaBell submitted pull request review: [1946](https://github.com/hackforla/website/pull/1946#pullrequestreview-709776163) at 2021-07-19 09:54 AM PDT -erikaBell,2021-07-19T16:54:42Z,- erikaBell closed issue by PR 1946: [1923](https://github.com/hackforla/website/issues/1923#event-5039650001) at 2021-07-19 09:54 AM PDT -erikaBell,2021-07-19T19:52:38Z,- erikaBell submitted pull request review: [1949](https://github.com/hackforla/website/pull/1949#pullrequestreview-709921689) at 2021-07-19 12:52 PM PDT -erikaBell,2021-07-19T19:52:44Z,- erikaBell closed issue by PR 1949: [1739](https://github.com/hackforla/website/issues/1739#event-5040452914) at 2021-07-19 12:52 PM PDT -erikaBell,2021-07-19T20:04:05Z,- erikaBell submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-709930963) at 2021-07-19 01:04 PM PDT -erikaBell,2021-07-20T18:50:32Z,- erikaBell commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-883616911) at 2021-07-20 11:50 AM PDT -erikaBell,2021-07-20T18:56:43Z,- erikaBell submitted pull request review: [1912](https://github.com/hackforla/website/pull/1912#pullrequestreview-710964399) at 2021-07-20 11:56 AM PDT -erikaBell,2021-07-20T18:56:58Z,- erikaBell closed issue by PR 1912: [1887](https://github.com/hackforla/website/issues/1887#event-5046057447) at 2021-07-20 11:56 AM PDT -erikaBell,2021-07-20T19:05:28Z,- erikaBell commented on pull request: [1954](https://github.com/hackforla/website/pull/1954#issuecomment-883625741) at 2021-07-20 12:05 PM PDT -erikaBell,2021-07-20T19:31:55Z,- erikaBell submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-710992119) at 2021-07-20 12:31 PM PDT -erikaBell,2021-07-21T06:44:50Z,- erikaBell submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-711307501) at 2021-07-20 11:44 PM PDT -erikaBell,2021-07-21T06:54:01Z,- erikaBell submitted pull request review: [1990](https://github.com/hackforla/website/pull/1990#pullrequestreview-711313232) at 2021-07-20 11:54 PM PDT -erikaBell,2021-07-21T06:54:17Z,- erikaBell closed issue by PR 1990: [1793](https://github.com/hackforla/website/issues/1793#event-5048374343) at 2021-07-20 11:54 PM PDT -erikaBell,2021-07-21T21:38:33Z,- erikaBell pull request merged: [1964](https://github.com/hackforla/website/pull/1964#event-5052669466) at 2021-07-21 02:38 PM PDT -erinpattison,4062,SKILLS ISSUE -erinpattison,2023-03-01T04:03:31Z,- erinpattison opened issue: [4062](https://github.com/hackforla/website/issues/4062) at 2023-02-28 08:03 PM PST -erinpattison,2023-03-01T04:19:26Z,- erinpattison assigned to issue: [4062](https://github.com/hackforla/website/issues/4062) at 2023-02-28 08:19 PM PST -erinpattison,2023-03-10T07:31:43Z,- erinpattison commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1463389349) at 2023-03-09 11:31 PM PST -erinpattison,2023-03-15T02:41:43Z,- erinpattison assigned to issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1445221249) at 2023-03-14 07:41 PM PDT -erinpattison,2023-03-15T23:06:19Z,- erinpattison commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1470958868) at 2023-03-15 04:06 PM PDT -erinpattison,2023-03-16T19:59:00Z,- erinpattison opened pull request: [4196](https://github.com/hackforla/website/pull/4196) at 2023-03-16 12:59 PM PDT -erinpattison,2023-03-16T20:00:31Z,- erinpattison commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472659848) at 2023-03-16 01:00 PM PDT -erinpattison,2023-03-16T20:05:56Z,- erinpattison commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1472666166) at 2023-03-16 01:05 PM PDT -erinpattison,2023-03-16T20:07:24Z,- erinpattison closed issue as completed: [4062](https://github.com/hackforla/website/issues/4062#event-8771662926) at 2023-03-16 01:07 PM PDT -erinpattison,2023-04-10T22:09:55Z,- erinpattison pull request closed w/o merging: [4196](https://github.com/hackforla/website/pull/4196#event-8967558026) at 2023-04-10 03:09 PM PDT -erinpattison,2023-04-10T22:10:10Z,- erinpattison unassigned from issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1484410244) at 2023-04-10 03:10 PM PDT -erinzz,5206,SKILLS ISSUE -erinzz,2023-01-04T04:55:47Z,- erinzz opened issue: [3790](https://github.com/hackforla/website/issues/3790) at 2023-01-03 08:55 PM PST -erinzz,2023-08-15T02:16:36Z,- erinzz opened issue: [5206](https://github.com/hackforla/website/issues/5206) at 2023-08-14 07:16 PM PDT -erinzz,2023-08-15T02:26:19Z,- erinzz assigned to issue: [5206](https://github.com/hackforla/website/issues/5206#issuecomment-1678334762) at 2023-08-14 07:26 PM PDT -erinzz,2023-08-16T23:17:10Z,- erinzz assigned to issue: [5186](https://github.com/hackforla/website/issues/5186#issuecomment-1675531562) at 2023-08-16 04:17 PM PDT -erinzz,2023-08-16T23:22:43Z,- erinzz commented on issue: [5186](https://github.com/hackforla/website/issues/5186#issuecomment-1681390515) at 2023-08-16 04:22 PM PDT -erinzz,2023-08-17T20:00:54Z,- erinzz opened pull request: [5245](https://github.com/hackforla/website/pull/5245) at 2023-08-17 01:00 PM PDT -erinzz,2023-08-18T17:03:03Z,- erinzz commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1684194976) at 2023-08-18 10:03 AM PDT -erinzz,2023-08-18T17:03:03Z,- erinzz pull request merged: [5245](https://github.com/hackforla/website/pull/5245#event-10131932779) at 2023-08-18 10:03 AM PDT -erinzz,2023-08-18T17:03:16Z,- erinzz reopened pull request: [5245](https://github.com/hackforla/website/pull/5245#event-10131932779) at 2023-08-18 10:03 AM PDT -erinzz,2023-08-18T17:38:28Z,- erinzz commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1684230939) at 2023-08-18 10:38 AM PDT -erinzz,2023-08-18T19:01:05Z,- erinzz submitted pull request review: [5249](https://github.com/hackforla/website/pull/5249#pullrequestreview-1585075880) at 2023-08-18 12:01 PM PDT -erinzz,2023-08-19T23:31:08Z,- erinzz assigned to issue: [5256](https://github.com/hackforla/website/issues/5256#issuecomment-1684677393) at 2023-08-19 04:31 PM PDT -erinzz,2023-08-20T06:25:46Z,- erinzz commented on issue: [5256](https://github.com/hackforla/website/issues/5256#issuecomment-1685199609) at 2023-08-19 11:25 PM PDT -erinzz,2023-08-20T06:37:08Z,- erinzz commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1685201250) at 2023-08-19 11:37 PM PDT -erinzz,2023-08-21T19:50:49Z,- erinzz opened pull request: [5280](https://github.com/hackforla/website/pull/5280) at 2023-08-21 12:50 PM PDT -erinzz,2023-08-22T04:19:06Z,- erinzz pull request merged: [5245](https://github.com/hackforla/website/pull/5245#event-10152774355) at 2023-08-21 09:19 PM PDT -erinzz,2023-08-22T20:08:09Z,- erinzz commented on pull request: [5280](https://github.com/hackforla/website/pull/5280#issuecomment-1688853334) at 2023-08-22 01:08 PM PDT -erinzz,2023-08-22T20:08:24Z,- erinzz pull request closed w/o merging: [5280](https://github.com/hackforla/website/pull/5280#event-10162688601) at 2023-08-22 01:08 PM PDT -erinzz,2023-08-22T21:12:58Z,- erinzz opened pull request: [5284](https://github.com/hackforla/website/pull/5284) at 2023-08-22 02:12 PM PDT -erinzz,2023-08-23T21:39:46Z,- erinzz commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1690681351) at 2023-08-23 02:39 PM PDT -erinzz,2023-08-24T21:50:57Z,- erinzz closed issue as completed: [5206](https://github.com/hackforla/website/issues/5206#event-10186356847) at 2023-08-24 02:50 PM PDT -erinzz,2023-08-27T02:57:51Z,- erinzz pull request merged: [5284](https://github.com/hackforla/website/pull/5284#event-10201036433) at 2023-08-26 07:57 PM PDT -erinzz,2023-08-28T23:36:28Z,- erinzz assigned to issue: [5153](https://github.com/hackforla/website/issues/5153) at 2023-08-28 04:36 PM PDT -erinzz,2023-08-28T23:37:47Z,- erinzz commented on issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1696563894) at 2023-08-28 04:37 PM PDT -erinzz,2023-08-29T05:06:52Z,- erinzz assigned to issue: [5321](https://github.com/hackforla/website/issues/5321) at 2023-08-28 10:06 PM PDT -erinzz,2023-08-29T05:27:19Z,- erinzz assigned to issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1694748683) at 2023-08-28 10:27 PM PDT -erinzz,2023-08-29T05:28:10Z,- erinzz unassigned from issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1696789972) at 2023-08-28 10:28 PM PDT -erinzz,2023-08-29T15:00:35Z,- erinzz unassigned from issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1696564848) at 2023-08-29 08:00 AM PDT -erinzz,2023-08-29T15:08:00Z,- erinzz unassigned from issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1696772503) at 2023-08-29 08:08 AM PDT -erinzz,2023-08-29T23:52:08Z,- erinzz assigned to issue: [5330](https://github.com/hackforla/website/issues/5330) at 2023-08-29 04:52 PM PDT -erinzz,2023-08-29T23:52:51Z,- erinzz commented on issue: [5330](https://github.com/hackforla/website/issues/5330#issuecomment-1698293002) at 2023-08-29 04:52 PM PDT -erinzz,2023-08-30T00:55:01Z,- erinzz opened pull request: [5346](https://github.com/hackforla/website/pull/5346) at 2023-08-29 05:55 PM PDT -erinzz,2023-09-01T02:40:15Z,- erinzz commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1702039346) at 2023-08-31 07:40 PM PDT -erinzz,2023-09-01T22:21:22Z,- erinzz pull request closed w/o merging: [5346](https://github.com/hackforla/website/pull/5346#event-10261324831) at 2023-09-01 03:21 PM PDT -erinzz,2023-09-01T22:40:50Z,- erinzz opened pull request: [5414](https://github.com/hackforla/website/pull/5414) at 2023-09-01 03:40 PM PDT -erinzz,2023-09-03T17:04:26Z,- erinzz pull request merged: [5414](https://github.com/hackforla/website/pull/5414#event-10266762023) at 2023-09-03 10:04 AM PDT -erinzz,2023-09-05T18:33:18Z,- erinzz assigned to issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1694627286) at 2023-09-05 11:33 AM PDT -erinzz,2023-09-05T18:33:43Z,- erinzz commented on issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1707119919) at 2023-09-05 11:33 AM PDT -erinzz,2023-09-13T03:44:52Z,- erinzz opened pull request: [5512](https://github.com/hackforla/website/pull/5512) at 2023-09-12 08:44 PM PDT -erinzz,2023-09-14T01:41:36Z,- erinzz pull request merged: [5512](https://github.com/hackforla/website/pull/5512#event-10366025905) at 2023-09-13 06:41 PM PDT -erinzz,2023-09-18T00:15:57Z,- erinzz assigned to issue: [5547](https://github.com/hackforla/website/issues/5547#issuecomment-1722424996) at 2023-09-17 05:15 PM PDT -erinzz,2023-09-18T00:16:45Z,- erinzz commented on issue: [5547](https://github.com/hackforla/website/issues/5547#issuecomment-1722611533) at 2023-09-17 05:16 PM PDT -erinzz,2023-09-22T01:26:32Z,- erinzz opened pull request: [5570](https://github.com/hackforla/website/pull/5570) at 2023-09-21 06:26 PM PDT -erinzz,2023-09-26T18:28:01Z,- erinzz commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1736066411) at 2023-09-26 11:28 AM PDT -erinzz,2023-09-27T02:09:47Z,- erinzz commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1736560591) at 2023-09-26 07:09 PM PDT -erinzz,2023-09-28T03:19:42Z,- erinzz pull request merged: [5570](https://github.com/hackforla/website/pull/5570#event-10494009992) at 2023-09-27 08:19 PM PDT -erinzz,2023-10-03T18:35:51Z,- erinzz assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745248809) at 2023-10-03 11:35 AM PDT -erinzz,2023-10-03T18:37:30Z,- erinzz commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745519082) at 2023-10-03 11:37 AM PDT -erinzz,2023-10-13T19:37:32Z,- erinzz commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762099537) at 2023-10-13 12:37 PM PDT -erinzz,2023-10-13T19:37:41Z,- erinzz unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762099537) at 2023-10-13 12:37 PM PDT -erniep278,3607,SKILLS ISSUE -erniep278,2022-10-11T02:53:46Z,- erniep278 opened issue: [3607](https://github.com/hackforla/website/issues/3607) at 2022-10-10 07:53 PM PDT -erniep278,2022-11-27T07:13:19Z,- erniep278 assigned to issue: [3607](https://github.com/hackforla/website/issues/3607) at 2022-11-26 11:13 PM PST -erniep278,2023-01-09T13:02:10Z,- erniep278 commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1375591351) at 2023-01-09 05:02 AM PST -esantiano,3603,SKILLS ISSUE -esantiano,2022-10-11T02:41:47Z,- esantiano opened issue: [3603](https://github.com/hackforla/website/issues/3603) at 2022-10-10 07:41 PM PDT -esantiano,2022-10-12T03:01:32Z,- esantiano assigned to issue: [3603](https://github.com/hackforla/website/issues/3603) at 2022-10-11 08:01 PM PDT -esantiano,2022-10-14T01:02:02Z,- esantiano assigned to issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1275529375) at 2022-10-13 06:02 PM PDT -esantiano,2022-10-14T14:21:12Z,- esantiano commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1279078159) at 2022-10-14 07:21 AM PDT -esantiano,2022-10-14T15:01:01Z,- esantiano commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1279125324) at 2022-10-14 08:01 AM PDT -esantiano,2022-10-14T15:35:26Z,- esantiano opened pull request: [3620](https://github.com/hackforla/website/pull/3620) at 2022-10-14 08:35 AM PDT -esantiano,2022-10-16T18:10:40Z,- esantiano pull request merged: [3620](https://github.com/hackforla/website/pull/3620#event-7596730981) at 2022-10-16 11:10 AM PDT -esantiano,2022-10-17T04:53:24Z,- esantiano commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1280285783) at 2022-10-16 09:53 PM PDT -esantiano,2022-10-17T05:00:49Z,- esantiano submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1143501281) at 2022-10-16 10:00 PM PDT -esantiano,2022-10-17T05:03:38Z,- esantiano commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1280290906) at 2022-10-16 10:03 PM PDT -esantiano,2022-10-21T20:25:15Z,- esantiano assigned to issue: [3200](https://github.com/hackforla/website/issues/3200#issuecomment-1145810588) at 2022-10-21 01:25 PM PDT -esantiano,2022-10-21T20:51:29Z,- esantiano commented on issue: [3200](https://github.com/hackforla/website/issues/3200#issuecomment-1287425314) at 2022-10-21 01:51 PM PDT -esantiano,2022-10-21T21:37:59Z,- esantiano opened pull request: [3647](https://github.com/hackforla/website/pull/3647) at 2022-10-21 02:37 PM PDT -esantiano,2022-10-22T17:27:36Z,- esantiano pull request merged: [3647](https://github.com/hackforla/website/pull/3647#event-7646613045) at 2022-10-22 10:27 AM PDT -esantiano,2022-10-22T19:24:13Z,- esantiano submitted pull request review: [3648](https://github.com/hackforla/website/pull/3648#pullrequestreview-1152114282) at 2022-10-22 12:24 PM PDT -esantiano,2022-10-22T19:27:28Z,- esantiano commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287890489) at 2022-10-22 12:27 PM PDT -esantiano,2022-10-22T19:30:30Z,- esantiano commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287891780) at 2022-10-22 12:30 PM PDT -esantiano,2022-10-23T18:45:42Z,- esantiano assigned to issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1235040283) at 2022-10-23 11:45 AM PDT -esantiano,2022-10-23T18:47:13Z,- esantiano commented on issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1288174228) at 2022-10-23 11:47 AM PDT -esantiano,2022-10-26T21:33:20Z,- esantiano opened pull request: [3666](https://github.com/hackforla/website/pull/3666) at 2022-10-26 02:33 PM PDT -esantiano,2022-10-26T21:35:14Z,- esantiano pull request closed w/o merging: [3666](https://github.com/hackforla/website/pull/3666#event-7676843263) at 2022-10-26 02:35 PM PDT -esantiano,2022-10-26T22:37:15Z,- esantiano opened pull request: [3667](https://github.com/hackforla/website/pull/3667) at 2022-10-26 03:37 PM PDT -esantiano,2022-10-29T21:12:39Z,- esantiano pull request closed w/o merging: [3667](https://github.com/hackforla/website/pull/3667#event-7697755054) at 2022-10-29 02:12 PM PDT -esantiano,2022-10-29T22:03:35Z,- esantiano opened pull request: [3674](https://github.com/hackforla/website/pull/3674) at 2022-10-29 03:03 PM PDT -esantiano,2022-10-29T22:13:04Z,- esantiano commented on pull request: [3673](https://github.com/hackforla/website/pull/3673#issuecomment-1295999677) at 2022-10-29 03:13 PM PDT -esantiano,2022-10-29T22:15:40Z,- esantiano submitted pull request review: [3673](https://github.com/hackforla/website/pull/3673#pullrequestreview-1161044018) at 2022-10-29 03:15 PM PDT -esantiano,2022-10-29T22:22:16Z,- esantiano commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1296002107) at 2022-10-29 03:22 PM PDT -esantiano,2022-10-29T22:37:23Z,- esantiano submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1161045191) at 2022-10-29 03:37 PM PDT -esantiano,2022-10-29T23:10:26Z,- esantiano commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1296015132) at 2022-10-29 04:10 PM PDT -esantiano,2022-10-29T23:13:32Z,- esantiano submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1161046953) at 2022-10-29 04:13 PM PDT -esantiano,2022-10-29T23:20:11Z,- esantiano commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1296017611) at 2022-10-29 04:20 PM PDT -esantiano,2022-10-29T23:30:36Z,- esantiano submitted pull request review: [3664](https://github.com/hackforla/website/pull/3664#pullrequestreview-1161047799) at 2022-10-29 04:30 PM PDT -esantiano,2022-10-29T23:55:49Z,- esantiano commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1296026720) at 2022-10-29 04:55 PM PDT -esantiano,2022-10-29T23:59:11Z,- esantiano commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1296027501) at 2022-10-29 04:59 PM PDT -esantiano,2022-10-31T02:04:08Z,- esantiano pull request merged: [3674](https://github.com/hackforla/website/pull/3674#event-7700332095) at 2022-10-30 07:04 PM PDT -esantiano,2022-10-31T15:11:40Z,- esantiano commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1297238083) at 2022-10-31 08:11 AM PDT -esantiano,2022-10-31T15:16:34Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162061752) at 2022-10-31 08:16 AM PDT -esantiano,2022-10-31T15:19:13Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162066196) at 2022-10-31 08:19 AM PDT -esantiano,2022-10-31T15:38:16Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162099677) at 2022-10-31 08:38 AM PDT -esantiano,2022-10-31T15:42:01Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162105860) at 2022-10-31 08:42 AM PDT -esantiano,2022-10-31T16:46:10Z,- esantiano submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1162205621) at 2022-10-31 09:46 AM PDT -esantiano,2022-11-04T22:31:44Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1169244469) at 2022-11-04 03:31 PM PDT -esantiano,2022-11-05T15:16:15Z,- esantiano commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304565436) at 2022-11-05 07:16 AM PST -esantiano,2022-11-05T15:54:41Z,- esantiano submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1169428764) at 2022-11-05 07:54 AM PST -esantiano,2022-11-12T23:20:14Z,- esantiano commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312594901) at 2022-11-12 03:20 PM PST -esantiano,2022-11-13T01:52:45Z,- esantiano submitted pull request review: [3716](https://github.com/hackforla/website/pull/3716#pullrequestreview-1178179290) at 2022-11-12 05:52 PM PST -esantiano,2022-11-17T19:36:04Z,- esantiano assigned to issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1304866103) at 2022-11-17 11:36 AM PST -esantiano,2022-11-17T19:37:17Z,- esantiano commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1319111047) at 2022-11-17 11:37 AM PST -esantiano,2022-11-18T00:47:23Z,- esantiano opened pull request: [3730](https://github.com/hackforla/website/pull/3730) at 2022-11-17 04:47 PM PST -esantiano,2022-11-20T01:03:45Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1321004520) at 2022-11-19 05:03 PM PST -esantiano,2022-11-27T00:56:18Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1328143494) at 2022-11-26 04:56 PM PST -esantiano,2022-11-27T01:28:08Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1328147948) at 2022-11-26 05:28 PM PST -esantiano,2022-12-04T01:10:10Z,- esantiano commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1336292577) at 2022-12-03 05:10 PM PST -esantiano,2022-12-04T03:14:56Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1336310081) at 2022-12-03 07:14 PM PST -esantiano,2022-12-04T03:16:21Z,- esantiano commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1336310235) at 2022-12-03 07:16 PM PST -esantiano,2022-12-05T06:05:08Z,- esantiano submitted pull request review: [3764](https://github.com/hackforla/website/pull/3764#pullrequestreview-1203898592) at 2022-12-04 10:05 PM PST -esantiano,2022-12-05T06:07:11Z,- esantiano commented on pull request: [3762](https://github.com/hackforla/website/pull/3762#issuecomment-1336793899) at 2022-12-04 10:07 PM PST -esantiano,2022-12-06T03:11:51Z,- esantiano submitted pull request review: [3762](https://github.com/hackforla/website/pull/3762#pullrequestreview-1205706060) at 2022-12-05 07:11 PM PST -esantiano,2022-12-10T03:23:59Z,- esantiano pull request merged: [3730](https://github.com/hackforla/website/pull/3730#event-8003276908) at 2022-12-09 07:23 PM PST -esantiano,2022-12-10T23:26:40Z,- esantiano commented on pull request: [3768](https://github.com/hackforla/website/pull/3768#issuecomment-1345407603) at 2022-12-10 03:26 PM PST -esantiano,2022-12-10T23:46:34Z,- esantiano submitted pull request review: [3768](https://github.com/hackforla/website/pull/3768#pullrequestreview-1212627513) at 2022-12-10 03:46 PM PST -esantiano,2022-12-10T23:49:13Z,- esantiano commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1345410659) at 2022-12-10 03:49 PM PST -esantiano,2023-01-11T14:40:06Z,- esantiano commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1378851598) at 2023-01-11 06:40 AM PST -eselkin,2020-01-26T23:59:47Z,- eselkin assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578545722) at 2020-01-26 03:59 PM PST -eselkin,2020-01-27T00:07:22Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578557698) at 2020-01-26 04:07 PM PST -eselkin,2020-01-27T00:10:09Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578557910) at 2020-01-26 04:10 PM PST -eselkin,2020-02-23T22:13:25Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-590122549) at 2020-02-23 02:13 PM PST -eselkin,2020-03-02T04:33:36Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593214102) at 2020-03-01 08:33 PM PST -eselkin,2020-03-03T07:27:08Z,- eselkin unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593806771) at 2020-03-02 11:27 PM PST -eselkin,2020-03-03T08:04:56Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593819369) at 2020-03-03 12:04 AM PST -eselkin,2020-03-12T03:32:40Z,- eselkin assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-597988796) at 2020-03-11 08:32 PM PDT -eselkin,2020-03-29T23:47:58Z,- eselkin unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-605720708) at 2020-03-29 04:47 PM PDT -eselkin,2020-04-13T02:46:28Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-612724311) at 2020-04-12 07:46 PM PDT -eselkin,2020-04-21T19:29:47Z,- eselkin commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-617367543) at 2020-04-21 12:29 PM PDT -EShahverdian,7969,SKILLS ISSUE -EShahverdian,2025-03-04T04:13:05Z,- EShahverdian opened issue: [7969](https://github.com/hackforla/website/issues/7969) at 2025-03-03 08:13 PM PST -EShahverdian,2025-03-04T04:13:05Z,- EShahverdian assigned to issue: [7969](https://github.com/hackforla/website/issues/7969) at 2025-03-03 08:13 PM PST -EShahverdian,2025-03-12T21:30:10Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2719175775) at 2025-03-12 02:30 PM PDT -EShahverdian,2025-04-16T03:58:19Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2808164648) at 2025-04-15 08:58 PM PDT -EShahverdian,2025-05-14T03:22:11Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2878518076) at 2025-05-13 08:22 PM PDT -EShahverdian,2025-07-16T02:16:50Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-3076492824) at 2025-07-15 07:16 PM PDT -EShahverdian,2025-07-22T04:38:20Z,- EShahverdian assigned to issue: [8244](https://github.com/hackforla/website/issues/8244) at 2025-07-21 09:38 PM PDT -EShahverdian,2025-07-22T04:38:32Z,- EShahverdian unassigned from issue: [8244](https://github.com/hackforla/website/issues/8244#issuecomment-3100918110) at 2025-07-21 09:38 PM PDT -EShahverdian,2025-07-22T20:40:40Z,- EShahverdian opened issue: [8249](https://github.com/hackforla/website/issues/8249) at 2025-07-22 01:40 PM PDT -EShahverdian,2025-07-22T21:11:38Z,- EShahverdian commented on issue: [8249](https://github.com/hackforla/website/issues/8249#issuecomment-3104845230) at 2025-07-22 02:11 PM PDT -eshan-one,2023-12-31T08:33:05Z,- eshan-one commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1872854985) at 2023-12-31 12:33 AM PST -essbee808,3706,SKILLS ISSUE -essbee808,2022-11-09T03:31:12Z,- essbee808 opened issue: [3706](https://github.com/hackforla/website/issues/3706) at 2022-11-08 07:31 PM PST -essbee808,2022-11-27T07:37:11Z,- essbee808 assigned to issue: [3706](https://github.com/hackforla/website/issues/3706) at 2022-11-26 11:37 PM PST -essbee808,2023-01-24T17:50:27Z,- essbee808 closed issue as not planned: [3706](https://github.com/hackforla/website/issues/3706#event-8346811141) at 2023-01-24 09:50 AM PST -essencegoff,2024-09-17T17:16:22Z,- essencegoff opened issue: [7471](https://github.com/hackforla/website/issues/7471) at 2024-09-17 10:16 AM PDT -essencegoff,2024-09-17T17:36:52Z,- essencegoff opened issue: [7472](https://github.com/hackforla/website/issues/7472) at 2024-09-17 10:36 AM PDT -essencegoff,2024-09-17T17:47:06Z,- essencegoff opened issue: [7474](https://github.com/hackforla/website/issues/7474) at 2024-09-17 10:47 AM PDT -essencegoff,2024-09-17T17:59:18Z,- essencegoff opened issue: [7475](https://github.com/hackforla/website/issues/7475) at 2024-09-17 10:59 AM PDT -essencegoff,2024-09-17T18:07:50Z,- essencegoff opened issue: [7476](https://github.com/hackforla/website/issues/7476) at 2024-09-17 11:07 AM PDT -essencegoff,2024-09-17T18:12:00Z,- essencegoff opened issue: [7477](https://github.com/hackforla/website/issues/7477) at 2024-09-17 11:12 AM PDT -essencegoff,2024-09-17T18:18:40Z,- essencegoff opened issue: [7479](https://github.com/hackforla/website/issues/7479) at 2024-09-17 11:18 AM PDT -essencegoff,2024-09-17T18:24:04Z,- essencegoff opened issue: [7480](https://github.com/hackforla/website/issues/7480) at 2024-09-17 11:24 AM PDT -essencegoff,2024-09-17T18:31:47Z,- essencegoff opened issue: [7481](https://github.com/hackforla/website/issues/7481) at 2024-09-17 11:31 AM PDT -essencegoff,2024-09-17T18:36:01Z,- essencegoff opened issue: [7482](https://github.com/hackforla/website/issues/7482) at 2024-09-17 11:36 AM PDT -essencegoff,2024-09-17T18:39:49Z,- essencegoff opened issue: [7483](https://github.com/hackforla/website/issues/7483) at 2024-09-17 11:39 AM PDT -essencegoff,2024-09-17T18:39:57Z,- essencegoff assigned to issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:39 AM PDT -essencegoff,2024-09-17T18:44:08Z,- essencegoff opened issue: [7484](https://github.com/hackforla/website/issues/7484) at 2024-09-17 11:44 AM PDT -essencegoff,2024-09-17T18:47:44Z,- essencegoff opened issue: [7485](https://github.com/hackforla/website/issues/7485) at 2024-09-17 11:47 AM PDT -essencegoff,2024-09-17T19:39:57Z,- essencegoff commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2356747926) at 2024-09-17 12:39 PM PDT -essencegoff,2024-09-17T20:00:07Z,- essencegoff opened issue: [7487](https://github.com/hackforla/website/issues/7487) at 2024-09-17 01:00 PM PDT -essencegoff,2024-09-17T20:00:57Z,- essencegoff commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2356793436) at 2024-09-17 01:00 PM PDT -essencegoff,2024-09-17T20:16:04Z,- essencegoff opened issue: [7488](https://github.com/hackforla/website/issues/7488) at 2024-09-17 01:16 PM PDT -essencegoff,2024-09-17T20:18:14Z,- essencegoff commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2356839429) at 2024-09-17 01:18 PM PDT -essencegoff,2024-09-17T21:57:11Z,- essencegoff opened issue: [7489](https://github.com/hackforla/website/issues/7489) at 2024-09-17 02:57 PM PDT -essencegoff,2024-09-26T23:08:52Z,- essencegoff opened issue: [7525](https://github.com/hackforla/website/issues/7525) at 2024-09-26 04:08 PM PDT -essencegoff,2024-09-27T00:19:25Z,- essencegoff commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2378162993) at 2024-09-26 05:19 PM PDT -essencegoff,2024-09-30T23:16:28Z,- essencegoff commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2384370401) at 2024-09-30 04:16 PM PDT -essencegoff,2024-09-30T23:19:37Z,- essencegoff commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2384383471) at 2024-09-30 04:19 PM PDT -essencegoff,2024-09-30T23:22:59Z,- essencegoff commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2384394964) at 2024-09-30 04:22 PM PDT -essencegoff,2024-09-30T23:25:09Z,- essencegoff commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2384401275) at 2024-09-30 04:25 PM PDT -essencegoff,2024-09-30T23:31:09Z,- essencegoff commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2384422898) at 2024-09-30 04:31 PM PDT -essencegoff,2024-09-30T23:33:51Z,- essencegoff commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2384432972) at 2024-09-30 04:33 PM PDT -essencegoff,2024-09-30T23:34:55Z,- essencegoff commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2384437771) at 2024-09-30 04:34 PM PDT -essencegoff,2024-09-30T23:40:38Z,- essencegoff commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2384460693) at 2024-09-30 04:40 PM PDT -essencegoff,2024-09-30T23:41:52Z,- essencegoff commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2384465274) at 2024-09-30 04:41 PM PDT -essencegoff,2024-09-30T23:44:22Z,- essencegoff commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2384474865) at 2024-09-30 04:44 PM PDT -essencegoff,2024-09-30T23:45:46Z,- essencegoff commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2384480251) at 2024-09-30 04:45 PM PDT -essencegoff,2024-09-30T23:50:11Z,- essencegoff commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2384500114) at 2024-09-30 04:50 PM PDT -essencegoff,2024-09-30T23:51:37Z,- essencegoff commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2384505311) at 2024-09-30 04:51 PM PDT -essencegoff,2024-09-30T23:53:20Z,- essencegoff commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2384514408) at 2024-09-30 04:53 PM PDT -essencegoff,2024-09-30T23:54:57Z,- essencegoff commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2384516138) at 2024-09-30 04:54 PM PDT -essencegoff,2024-09-30T23:56:27Z,- essencegoff commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2384517274) at 2024-09-30 04:56 PM PDT -essencegoff,2024-09-30T23:57:28Z,- essencegoff commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2384518044) at 2024-09-30 04:57 PM PDT -essencegoff,2024-10-01T00:15:57Z,- essencegoff commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2384536144) at 2024-09-30 05:15 PM PDT -essencegoff,2024-10-01T00:29:38Z,- essencegoff commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2384549234) at 2024-09-30 05:29 PM PDT -essencegoff,2024-10-01T00:30:31Z,- essencegoff commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2384550121) at 2024-09-30 05:30 PM PDT -essencegoff,2024-10-01T02:12:11Z,- essencegoff commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2384643118) at 2024-09-30 07:12 PM PDT -essencegoff,2024-10-01T02:13:04Z,- essencegoff commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2384643843) at 2024-09-30 07:13 PM PDT -essencegoff,2024-10-01T02:14:07Z,- essencegoff commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2384644701) at 2024-09-30 07:14 PM PDT -essencegoff,2024-10-01T02:15:19Z,- essencegoff commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2384645662) at 2024-09-30 07:15 PM PDT -essencegoff,2024-10-01T02:16:42Z,- essencegoff commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2384646895) at 2024-09-30 07:16 PM PDT -essencegoff,2024-10-01T02:17:18Z,- essencegoff commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2384647390) at 2024-09-30 07:17 PM PDT -essencegoff,2024-10-01T02:18:43Z,- essencegoff commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2384648516) at 2024-09-30 07:18 PM PDT -essencegoff,2024-10-01T02:20:39Z,- essencegoff commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2384650137) at 2024-09-30 07:20 PM PDT -essencegoff,2024-10-08T00:50:00Z,- essencegoff commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2398331036) at 2024-10-07 05:50 PM PDT -essencegoff,2024-10-08T00:52:08Z,- essencegoff commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2398335865) at 2024-10-07 05:52 PM PDT -essencegoff,2024-10-08T00:54:22Z,- essencegoff commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-2398340879) at 2024-10-07 05:54 PM PDT -essencegoff,2024-10-09T16:21:12Z,- essencegoff commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-2402770229) at 2024-10-09 09:21 AM PDT -essencegoff,2024-10-09T16:39:35Z,- essencegoff commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2402809200) at 2024-10-09 09:39 AM PDT -essencegoff,2024-10-09T16:42:46Z,- essencegoff commented on issue: [6875](https://github.com/hackforla/website/issues/6875#issuecomment-2402814873) at 2024-10-09 09:42 AM PDT -essencegoff,2024-10-09T16:46:27Z,- essencegoff commented on issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2402821742) at 2024-10-09 09:46 AM PDT -essencegoff,2024-10-09T16:52:51Z,- essencegoff commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402833578) at 2024-10-09 09:52 AM PDT -essencegoff,2024-10-09T16:56:42Z,- essencegoff commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2402840808) at 2024-10-09 09:56 AM PDT -essencegoff,2024-10-09T17:18:52Z,- essencegoff commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-2402881657) at 2024-10-09 10:18 AM PDT -essencegoff,2024-10-09T17:20:50Z,- essencegoff commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2402885034) at 2024-10-09 10:20 AM PDT -essencegoff,2024-10-09T17:29:40Z,- essencegoff commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402900675) at 2024-10-09 10:29 AM PDT -essencegoff,2024-10-09T18:12:18Z,- essencegoff commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-2402974610) at 2024-10-09 11:12 AM PDT -essencegoff,2024-10-09T18:13:48Z,- essencegoff commented on issue: [6117](https://github.com/hackforla/website/issues/6117#issuecomment-2402976977) at 2024-10-09 11:13 AM PDT -essencegoff,2024-10-09T18:14:48Z,- essencegoff commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2402978648) at 2024-10-09 11:14 AM PDT -essencegoff,2024-10-09T18:16:45Z,- essencegoff commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-2402981936) at 2024-10-09 11:16 AM PDT -essencegoff,2024-10-09T18:30:17Z,- essencegoff commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-2403007252) at 2024-10-09 11:30 AM PDT -essencegoff,2024-10-09T18:32:53Z,- essencegoff commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2403011578) at 2024-10-09 11:32 AM PDT -essencegoff,2024-10-09T18:42:30Z,- essencegoff commented on issue: [5777](https://github.com/hackforla/website/issues/5777#issuecomment-2403048335) at 2024-10-09 11:42 AM PDT -essencegoff,2024-10-09T18:51:36Z,- essencegoff commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2403104345) at 2024-10-09 11:51 AM PDT -essencegoff,2024-10-09T18:55:48Z,- essencegoff commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2403128951) at 2024-10-09 11:55 AM PDT -essencegoff,2024-10-09T18:58:10Z,- essencegoff commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-2403143783) at 2024-10-09 11:58 AM PDT -essencegoff,2024-10-09T19:28:40Z,- essencegoff commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-2403276170) at 2024-10-09 12:28 PM PDT -essencegoff,2024-10-09T19:30:26Z,- essencegoff commented on issue: [6330](https://github.com/hackforla/website/issues/6330#issuecomment-2403279107) at 2024-10-09 12:30 PM PDT -essencegoff,2024-10-09T19:31:11Z,- essencegoff commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-2403280446) at 2024-10-09 12:31 PM PDT -essencegoff,2024-10-09T19:35:38Z,- essencegoff commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2403287459) at 2024-10-09 12:35 PM PDT -essencegoff,2024-10-09T19:36:41Z,- essencegoff commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2403289199) at 2024-10-09 12:36 PM PDT -essencegoff,2024-10-09T19:38:13Z,- essencegoff commented on issue: [6955](https://github.com/hackforla/website/issues/6955#issuecomment-2403291433) at 2024-10-09 12:38 PM PDT -essencegoff,2024-10-09T19:40:27Z,- essencegoff commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2403294838) at 2024-10-09 12:40 PM PDT -essencegoff,2024-10-09T19:42:36Z,- essencegoff commented on issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2403298090) at 2024-10-09 12:42 PM PDT -essencegoff,2024-10-09T19:43:35Z,- essencegoff commented on issue: [5614](https://github.com/hackforla/website/issues/5614#issuecomment-2403299606) at 2024-10-09 12:43 PM PDT -essencegoff,2024-10-09T19:45:06Z,- essencegoff commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-2403301993) at 2024-10-09 12:45 PM PDT -essencegoff,2024-10-09T19:49:53Z,- essencegoff commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-2403309420) at 2024-10-09 12:49 PM PDT -essencegoff,2024-10-09T19:53:46Z,- essencegoff commented on issue: [5485](https://github.com/hackforla/website/issues/5485#issuecomment-2403315529) at 2024-10-09 12:53 PM PDT -essencegoff,2024-10-09T19:55:47Z,- essencegoff commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2403318722) at 2024-10-09 12:55 PM PDT -essencegoff,2024-10-09T20:00:57Z,- essencegoff commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-2403326747) at 2024-10-09 01:00 PM PDT -essencegoff,2024-10-09T20:03:15Z,- essencegoff commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-2403330522) at 2024-10-09 01:03 PM PDT -essencegoff,2024-10-09T20:04:23Z,- essencegoff commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2403332303) at 2024-10-09 01:04 PM PDT -essencegoff,2024-10-09T20:05:37Z,- essencegoff commented on issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2403334323) at 2024-10-09 01:05 PM PDT -essencegoff,2024-10-22T20:25:24Z,- essencegoff opened issue: [7622](https://github.com/hackforla/website/issues/7622) at 2024-10-22 01:25 PM PDT -essencegoff,2024-10-22T20:26:53Z,- essencegoff commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2430194265) at 2024-10-22 01:26 PM PDT -essencegoff,2024-10-22T20:27:37Z,- essencegoff commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2430195499) at 2024-10-22 01:27 PM PDT -essencegoff,2024-10-22T20:40:51Z,- essencegoff assigned to issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2430195499) at 2024-10-22 01:40 PM PDT -essencegoff,2024-10-22T21:24:33Z,- essencegoff opened issue: [7623](https://github.com/hackforla/website/issues/7623) at 2024-10-22 02:24 PM PDT -essencegoff,2024-10-23T20:37:14Z,- essencegoff opened issue: [7629](https://github.com/hackforla/website/issues/7629) at 2024-10-23 01:37 PM PDT -essencegoff,2024-10-25T13:41:47Z,- essencegoff commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2437816624) at 2024-10-25 06:41 AM PDT -essencegoff,2024-10-25T13:47:02Z,- essencegoff commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437828783) at 2024-10-25 06:47 AM PDT -essencegoff,2024-10-25T14:14:18Z,- essencegoff commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437927464) at 2024-10-25 07:14 AM PDT -essencegoff,2024-11-01T18:00:07Z,- essencegoff commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2452332650) at 2024-11-01 11:00 AM PDT -essencegoff,2024-11-01T18:00:16Z,- essencegoff closed issue as completed: [7622](https://github.com/hackforla/website/issues/7622#event-15073145722) at 2024-11-01 11:00 AM PDT -essencegoff,2024-11-01T18:14:45Z,- essencegoff assigned to issue: [7578](https://github.com/hackforla/website/issues/7578) at 2024-11-01 11:14 AM PDT -essencegoff,2024-11-12T00:42:45Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#event-15257001601) at 2024-11-11 04:42 PM PST -essencegoff,2024-11-12T00:42:59Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359659) at 2024-11-11 04:42 PM PST -essencegoff,2024-11-12T00:53:54Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359659) at 2024-11-11 04:53 PM PST -essencegoff,2024-11-12T00:54:08Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469369813) at 2024-11-11 04:54 PM PST -essencegoff,2024-11-22T23:32:24Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2495096435) at 2024-11-22 03:32 PM PST -essencegoff,2024-11-23T02:45:18Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2495240126) at 2024-11-22 06:45 PM PST -essencegoff,2024-11-25T19:23:36Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852165) at 2024-11-25 11:23 AM PST -essencegoff,2024-11-25T19:23:51Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852920) at 2024-11-25 11:23 AM PST -essencegoff,2025-01-26T22:34:41Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499352645) at 2025-01-26 02:34 PM PST -essencegoff,2025-01-26T22:34:54Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614618011) at 2025-01-26 02:34 PM PST -essencegoff,2025-01-27T13:08:31Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2615719799) at 2025-01-27 05:08 AM PST -essencegoff,2025-02-01T00:58:54Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614622577) at 2025-01-31 04:58 PM PST -essencegoff,2025-02-25T01:08:26Z,- essencegoff assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -essencegoff,2025-03-04T20:29:04Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2698833338) at 2025-03-04 12:29 PM PST -ethanchen7,3386,SKILLS ISSUE -ethanchen7,2022-07-19T02:20:34Z,- ethanchen7 opened issue: [3386](https://github.com/hackforla/website/issues/3386) at 2022-07-18 07:20 PM PDT -ethanloh8,7021,SKILLS ISSUE -ethanloh8,2024-06-19T02:47:39Z,- ethanloh8 opened issue: [7021](https://github.com/hackforla/website/issues/7021) at 2024-06-18 07:47 PM PDT -ethanloh8,2024-06-19T02:47:58Z,- ethanloh8 assigned to issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2177442575) at 2024-06-18 07:47 PM PDT -ethanstrominger,3292,SKILLS ISSUE -ethanstrominger,2022-06-23T15:45:12Z,- ethanstrominger opened issue: [3292](https://github.com/hackforla/website/issues/3292) at 2022-06-23 08:45 AM PDT -ethanstrominger,2022-06-23T15:49:38Z,- ethanstrominger assigned to issue: [3292](https://github.com/hackforla/website/issues/3292#issuecomment-1164579032) at 2022-06-23 08:49 AM PDT -ethanstrominger,2022-06-23T16:05:04Z,- ethanstrominger closed issue as completed: [3292](https://github.com/hackforla/website/issues/3292#event-6867742048) at 2022-06-23 09:05 AM PDT -ethanstrominger,2022-06-24T19:08:36Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1165856434) at 2022-06-24 12:08 PM PDT -ethanstrominger,2022-06-26T11:19:04Z,- ethanstrominger assigned to issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1165856434) at 2022-06-26 04:19 AM PDT -ethanstrominger,2022-06-26T11:42:27Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1166505139) at 2022-06-26 04:42 AM PDT -ethanstrominger,2022-07-29T19:45:29Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1199891752) at 2022-07-29 12:45 PM PDT -ethanstrominger,2022-07-31T15:19:30Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1200445186) at 2022-07-31 08:19 AM PDT -ethanstrominger,2022-08-01T12:56:47Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1201166605) at 2022-08-01 05:56 AM PDT -ethanstrominger,2022-08-02T20:24:41Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1203179128) at 2022-08-02 01:24 PM PDT -ethanstrominger,2022-08-08T15:01:32Z,- ethanstrominger opened issue: [3453](https://github.com/hackforla/website/issues/3453) at 2022-08-08 08:01 AM PDT -ethanstrominger,2022-08-09T13:59:33Z,- ethanstrominger commented on issue: [3453](https://github.com/hackforla/website/issues/3453#issuecomment-1209421005) at 2022-08-09 06:59 AM PDT -ethanstrominger,2022-08-19T16:05:46Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1220843408) at 2022-08-19 09:05 AM PDT -ethanstrominger,2022-09-13T21:29:41Z,- ethanstrominger opened issue: [3549](https://github.com/hackforla/website/issues/3549) at 2022-09-13 02:29 PM PDT -ethanstrominger,2022-09-13T21:48:25Z,- ethanstrominger opened issue: [3550](https://github.com/hackforla/website/issues/3550) at 2022-09-13 02:48 PM PDT -ethanstrominger,2022-10-20T15:38:47Z,- ethanstrominger opened issue: [3644](https://github.com/hackforla/website/issues/3644) at 2022-10-20 08:38 AM PDT -ethanstrominger,2022-11-16T23:41:20Z,- ethanstrominger closed issue as completed: [3550](https://github.com/hackforla/website/issues/3550#event-7828911005) at 2022-11-16 03:41 PM PST -ethanstrominger,2022-11-16T23:41:53Z,- ethanstrominger closed issue as completed: [3644](https://github.com/hackforla/website/issues/3644#event-7828913431) at 2022-11-16 03:41 PM PST -ethanstrominger,2022-11-16T23:42:09Z,- ethanstrominger closed issue as completed: [3549](https://github.com/hackforla/website/issues/3549#event-7828914388) at 2022-11-16 03:42 PM PST -ethanstrominger,2022-11-18T21:54:42Z,- ethanstrominger assigned to issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1314551689) at 2022-11-18 01:54 PM PST -ethanstrominger,2022-11-19T18:08:32Z,- ethanstrominger commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1320937402) at 2022-11-19 10:08 AM PST -ethanstrominger,2025-03-18T01:11:09Z,- ethanstrominger unassigned from issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-2277297084) at 2025-03-17 06:11 PM PDT -eulloa10,4318,SKILLS ISSUE -eulloa10,2023-03-29T03:26:42Z,- eulloa10 opened issue: [4318](https://github.com/hackforla/website/issues/4318) at 2023-03-28 08:26 PM PDT -eulloa10,2023-03-29T03:55:11Z,- eulloa10 assigned to issue: [4318](https://github.com/hackforla/website/issues/4318) at 2023-03-28 08:55 PM PDT -eulloa10,2023-04-04T23:30:35Z,- eulloa10 assigned to issue: [4397](https://github.com/hackforla/website/issues/4397) at 2023-04-04 04:30 PM PDT -eulloa10,2023-04-05T01:22:40Z,- eulloa10 opened pull request: [4421](https://github.com/hackforla/website/pull/4421) at 2023-04-04 06:22 PM PDT -eulloa10,2023-04-05T01:29:18Z,- eulloa10 commented on issue: [4397](https://github.com/hackforla/website/issues/4397#issuecomment-1496800990) at 2023-04-04 06:29 PM PDT -eulloa10,2023-04-06T02:52:08Z,- eulloa10 pull request merged: [4421](https://github.com/hackforla/website/pull/4421#event-8941131824) at 2023-04-05 07:52 PM PDT -eulloa10,2023-04-06T05:12:42Z,- eulloa10 commented on issue: [4318](https://github.com/hackforla/website/issues/4318#issuecomment-1498501824) at 2023-04-05 10:12 PM PDT -eulloa10,2023-04-26T01:40:37Z,- eulloa10 commented on issue: [4318](https://github.com/hackforla/website/issues/4318#issuecomment-1522639715) at 2023-04-25 06:40 PM PDT -eulloa10,2023-04-26T01:40:48Z,- eulloa10 closed issue as completed: [4318](https://github.com/hackforla/website/issues/4318#event-9098028346) at 2023-04-25 06:40 PM PDT -eunicode,8134,SKILLS ISSUE -eunicode,2025-05-14T03:00:04Z,- eunicode opened issue: [8133](https://github.com/hackforla/website/issues/8133) at 2025-05-13 08:00 PM PDT -eunicode,2025-05-14T03:01:43Z,- eunicode opened issue: [8134](https://github.com/hackforla/website/issues/8134) at 2025-05-13 08:01 PM PDT -eunicode,2025-05-14T03:01:43Z,- eunicode assigned to issue: [8134](https://github.com/hackforla/website/issues/8134) at 2025-05-13 08:01 PM PDT -eunicode,2025-05-14T03:08:15Z,- eunicode closed issue as completed: [8133](https://github.com/hackforla/website/issues/8133#event-17645449779) at 2025-05-13 08:08 PM PDT -eunicode,2025-05-14T03:38:44Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2878535001) at 2025-05-13 08:38 PM PDT -eunicode,2025-05-14T03:44:29Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2878561152) at 2025-05-13 08:44 PM PDT -eunicode,2025-05-20T04:31:59Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2892907015) at 2025-05-19 09:31 PM PDT -eunicode,2025-05-20T04:38:06Z,- eunicode assigned to issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2722992095) at 2025-05-19 09:38 PM PDT -eunicode,2025-05-20T05:01:02Z,- eunicode commented on issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2892966890) at 2025-05-19 10:01 PM PDT -eunicode,2025-05-20T05:02:03Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2892968214) at 2025-05-19 10:02 PM PDT -eunicode,2025-05-20T17:53:12Z,- eunicode opened pull request: [8148](https://github.com/hackforla/website/pull/8148) at 2025-05-20 10:53 AM PDT -eunicode,2025-05-20T18:06:04Z,- eunicode assigned to issue: [7956](https://github.com/hackforla/website/issues/7956) at 2025-05-20 11:06 AM PDT -eunicode,2025-05-20T18:06:20Z,- eunicode unassigned from issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895372016) at 2025-05-20 11:06 AM PDT -eunicode,2025-05-23T16:25:39Z,- eunicode pull request merged: [8148](https://github.com/hackforla/website/pull/8148#event-17793025614) at 2025-05-23 09:25 AM PDT -eunicode,2025-05-23T18:37:01Z,- eunicode assigned to issue: [7998](https://github.com/hackforla/website/issues/7998) at 2025-05-23 11:37 AM PDT -eunicode,2025-05-23T18:40:59Z,- eunicode commented on issue: [7998](https://github.com/hackforla/website/issues/7998#issuecomment-2905454709) at 2025-05-23 11:40 AM PDT -eunicode,2025-05-23T22:12:17Z,- eunicode opened pull request: [8156](https://github.com/hackforla/website/pull/8156) at 2025-05-23 03:12 PM PDT -eunicode,2025-05-23T22:16:04Z,- eunicode commented on issue: [7998](https://github.com/hackforla/website/issues/7998#issuecomment-2905928626) at 2025-05-23 03:16 PM PDT -eunicode,2025-05-23T22:16:55Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905929531) at 2025-05-23 03:16 PM PDT -eunicode,2025-05-23T22:19:27Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905932152) at 2025-05-23 03:19 PM PDT -eunicode,2025-05-23T22:20:51Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905933581) at 2025-05-23 03:20 PM PDT -eunicode,2025-05-23T22:23:57Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905936701) at 2025-05-23 03:23 PM PDT -eunicode,2025-05-28T01:54:33Z,- eunicode pull request merged: [8156](https://github.com/hackforla/website/pull/8156#event-17841449939) at 2025-05-27 06:54 PM PDT -eunicode,2025-05-28T18:47:21Z,- eunicode assigned to issue: [7452](https://github.com/hackforla/website/issues/7452) at 2025-05-28 11:47 AM PDT -eunicode,2025-05-29T00:48:43Z,- eunicode commented on issue: [7452](https://github.com/hackforla/website/issues/7452#issuecomment-2917928907) at 2025-05-28 05:48 PM PDT -eunicode,2025-06-04T16:37:35Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940692827) at 2025-06-04 09:37 AM PDT -eunicode,2025-06-04T16:40:19Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940699886) at 2025-06-04 09:40 AM PDT -eunicode,2025-06-04T16:41:24Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940702807) at 2025-06-04 09:41 AM PDT -eunicode,2025-06-04T16:41:57Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940704376) at 2025-06-04 09:41 AM PDT -eunicode,2025-06-04T16:45:08Z,- eunicode assigned to issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2899482311) at 2025-06-04 09:45 AM PDT -eunicode,2025-06-11T01:24:59Z,- eunicode opened pull request: [8180](https://github.com/hackforla/website/pull/8180) at 2025-06-10 06:24 PM PDT -eunicode,2025-06-11T01:27:58Z,- eunicode commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2960951164) at 2025-06-10 06:27 PM PDT -eunicode,2025-06-13T20:32:23Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2971606469) at 2025-06-13 01:32 PM PDT -eunicode,2025-06-13T20:36:07Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2971618464) at 2025-06-13 01:36 PM PDT -eunicode,2025-06-13T21:19:44Z,- eunicode opened issue: [8184](https://github.com/hackforla/website/issues/8184) at 2025-06-13 02:19 PM PDT -eunicode,2025-06-22T16:19:58Z,- eunicode pull request merged: [8180](https://github.com/hackforla/website/pull/8180#event-18261855067) at 2025-06-22 09:19 AM PDT -eunicode,2025-06-27T18:59:13Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-3014092251) at 2025-06-27 11:59 AM PDT -eunicode,2025-07-03T22:39:17Z,- eunicode commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3033872371) at 2025-07-03 03:39 PM PDT -eunicode,2025-07-03T22:44:16Z,- eunicode submitted pull request review: [8231](https://github.com/hackforla/website/pull/8231#pullrequestreview-2984889329) at 2025-07-03 03:44 PM PDT -eunicode,2025-07-12T00:15:09Z,- eunicode commented on issue: [8184](https://github.com/hackforla/website/issues/8184#issuecomment-3064352168) at 2025-07-11 05:15 PM PDT -evan-ishibashi,6247,SKILLS ISSUE -evan-ishibashi,2024-02-06T03:32:13Z,- evan-ishibashi opened issue: [6247](https://github.com/hackforla/website/issues/6247) at 2024-02-05 07:32 PM PST -evan-ishibashi,2024-02-06T03:32:17Z,- evan-ishibashi assigned to issue: [6247](https://github.com/hackforla/website/issues/6247) at 2024-02-05 07:32 PM PST -evan-ishibashi,2024-02-14T01:24:25Z,- evan-ishibashi assigned to issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942349163) at 2024-02-13 05:24 PM PST -evan-ishibashi,2024-02-14T02:28:42Z,- evan-ishibashi opened pull request: [6292](https://github.com/hackforla/website/pull/6292) at 2024-02-13 06:28 PM PST -evan-ishibashi,2024-02-14T02:33:55Z,- evan-ishibashi commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942996255) at 2024-02-13 06:33 PM PST -evan-ishibashi,2024-02-14T02:37:20Z,- evan-ishibashi commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942998417) at 2024-02-13 06:37 PM PST -evan-ishibashi,2024-02-15T21:23:51Z,- evan-ishibashi commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1947363460) at 2024-02-15 01:23 PM PST -evan-ishibashi,2024-02-17T08:44:36Z,- evan-ishibashi pull request merged: [6292](https://github.com/hackforla/website/pull/6292#event-11835936854) at 2024-02-17 12:44 AM PST -evan-ishibashi,2024-02-17T18:43:10Z,- evan-ishibashi assigned to issue: [6296](https://github.com/hackforla/website/issues/6296) at 2024-02-17 10:43 AM PST -evan-ishibashi,2024-02-17T18:46:44Z,- evan-ishibashi commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1950281317) at 2024-02-17 10:46 AM PST -evan-ishibashi,2024-02-18T03:58:29Z,- evan-ishibashi opened pull request: [6314](https://github.com/hackforla/website/pull/6314) at 2024-02-17 07:58 PM PST -evan-ishibashi,2024-02-18T04:01:03Z,- evan-ishibashi commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1950944948) at 2024-02-17 08:01 PM PST -evan-ishibashi,2024-02-18T04:51:00Z,- evan-ishibashi commented on pull request: [6314](https://github.com/hackforla/website/pull/6314#issuecomment-1950961430) at 2024-02-17 08:51 PM PST -evan-ishibashi,2024-02-19T07:04:23Z,- evan-ishibashi pull request closed w/o merging: [6314](https://github.com/hackforla/website/pull/6314#event-11845145537) at 2024-02-18 11:04 PM PST -evan-ishibashi,2024-03-22T03:52:28Z,- evan-ishibashi commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-2014306188) at 2024-03-21 08:52 PM PDT -evan-ishibashi,2024-03-22T05:52:32Z,- evan-ishibashi opened pull request: [6504](https://github.com/hackforla/website/pull/6504) at 2024-03-21 10:52 PM PDT -evan-ishibashi,2024-03-27T01:46:14Z,- evan-ishibashi pull request closed w/o merging: [6504](https://github.com/hackforla/website/pull/6504#event-12258571018) at 2024-03-26 06:46 PM PDT -evan-ishibashi,2024-03-27T01:46:46Z,- evan-ishibashi commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2021772686) at 2024-03-26 06:46 PM PDT -evan-ishibashi,2024-03-27T01:49:59Z,- evan-ishibashi opened pull request: [6522](https://github.com/hackforla/website/pull/6522) at 2024-03-26 06:49 PM PDT -evan-ishibashi,2024-03-27T01:50:47Z,- evan-ishibashi commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2021776318) at 2024-03-26 06:50 PM PDT -evan-ishibashi,2024-03-29T20:33:00Z,- evan-ishibashi submitted pull request review: [6508](https://github.com/hackforla/website/pull/6508#pullrequestreview-1969578866) at 2024-03-29 01:33 PM PDT -evan-ishibashi,2024-03-30T11:25:41Z,- evan-ishibashi pull request merged: [6522](https://github.com/hackforla/website/pull/6522#event-12300406046) at 2024-03-30 04:25 AM PDT -evan-ishibashi,2024-05-23T07:10:50Z,- evan-ishibashi commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2126387516) at 2024-05-23 12:10 AM PDT -evancchen,2021-01-06T04:30:40Z,- evancchen assigned to issue: [906](https://github.com/hackforla/website/issues/906) at 2021-01-05 08:30 PM PST -evancchen,2021-01-17T18:26:16Z,- evancchen commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:26 AM PST -evancchen,2021-01-17T18:26:31Z,- evancchen unassigned from issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:26 AM PST -evancchen,2021-01-17T18:28:08Z,- evancchen assigned to issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:28 AM PST -evancchen,2021-01-18T03:50:39Z,- evancchen opened pull request: [948](https://github.com/hackforla/website/pull/948) at 2021-01-17 07:50 PM PST -evancchen,2021-01-18T04:12:51Z,- evancchen commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761967486) at 2021-01-17 08:12 PM PST -evancchen,2021-01-20T03:27:41Z,- evancchen pull request merged: [948](https://github.com/hackforla/website/pull/948#event-4225773282) at 2021-01-19 07:27 PM PST -evancchen,2021-01-27T03:13:04Z,- evancchen unassigned from issue: [906](https://github.com/hackforla/website/issues/906#event-4253725765) at 2021-01-26 07:13 PM PST -evancchen,2021-01-27T03:14:16Z,- evancchen assigned to issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-26 07:14 PM PST -evancchen,2021-01-28T00:42:34Z,- evancchen opened pull request: [972](https://github.com/hackforla/website/pull/972) at 2021-01-27 04:42 PM PST -evancchen,2021-01-31T19:33:09Z,- evancchen assigned to issue: [959](https://github.com/hackforla/website/issues/959) at 2021-01-31 11:33 AM PST -evancchen,2021-01-31T19:37:10Z,- evancchen pull request merged: [972](https://github.com/hackforla/website/pull/972#event-4270680779) at 2021-01-31 11:37 AM PST -evancchen,2021-01-31T19:39:04Z,- evancchen unassigned from issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770427214) at 2021-01-31 11:39 AM PST -evancchen,2021-01-31T20:20:10Z,- evancchen unassigned from issue: [959](https://github.com/hackforla/website/issues/959) at 2021-01-31 12:20 PM PST -evancchen,2021-01-31T20:24:00Z,- evancchen assigned to issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-764188225) at 2021-01-31 12:24 PM PST -evancchen,2021-02-04T01:00:54Z,- evancchen opened pull request: [1000](https://github.com/hackforla/website/pull/1000) at 2021-02-03 05:00 PM PST -evancchen,2021-02-04T01:01:31Z,- evancchen commented on pull request: [1000](https://github.com/hackforla/website/pull/1000#issuecomment-772943905) at 2021-02-03 05:01 PM PST -evancchen,2021-02-04T01:19:45Z,- evancchen assigned to issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-757548975) at 2021-02-03 05:19 PM PST -evancchen,2021-02-05T00:47:26Z,- evancchen assigned to issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-04 04:47 PM PST -evancchen,2021-02-07T02:39:43Z,- evancchen pull request merged: [1000](https://github.com/hackforla/website/pull/1000#event-4299741336) at 2021-02-06 06:39 PM PST -evancchen,2021-02-07T19:01:39Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 11:01 AM PST -evancchen,2021-02-07T19:51:56Z,- evancchen opened pull request: [1011](https://github.com/hackforla/website/pull/1011) at 2021-02-07 11:51 AM PST -evancchen,2021-02-07T19:52:16Z,- evancchen closed issue by PR 816: [819](https://github.com/hackforla/website/issues/819#event-4300607637) at 2021-02-07 11:52 AM PST -evancchen,2021-02-07T19:52:16Z,- evancchen pull request merged: [1011](https://github.com/hackforla/website/pull/1011#event-4300607639) at 2021-02-07 11:52 AM PST -evancchen,2021-02-07T19:55:40Z,- evancchen opened pull request: [1012](https://github.com/hackforla/website/pull/1012) at 2021-02-07 11:55 AM PST -evancchen,2021-02-07T20:04:45Z,- evancchen reopened issue: [819](https://github.com/hackforla/website/issues/819#event-4300607637) at 2021-02-07 12:04 PM PST -evancchen,2021-02-07T20:17:18Z,- evancchen pull request closed w/o merging: [1012](https://github.com/hackforla/website/pull/1012#event-4300634020) at 2021-02-07 12:17 PM PST -evancchen,2021-02-07T20:17:50Z,- evancchen closed issue by PR 816: [819](https://github.com/hackforla/website/issues/819#event-4300634542) at 2021-02-07 12:17 PM PST -evancchen,2021-02-07T20:17:58Z,- evancchen unassigned from issue: [819](https://github.com/hackforla/website/issues/819#event-4300634542) at 2021-02-07 12:17 PM PST -evancchen,2021-02-07T20:39:38Z,- evancchen assigned to issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 12:39 PM PST -evancchen,2021-02-07T20:40:57Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 12:40 PM PST -evancchen,2021-02-07T20:44:16Z,- evancchen assigned to issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 12:44 PM PST -evancchen,2021-02-10T02:34:33Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-776395756) at 2021-02-09 06:34 PM PST -evancchen,2021-02-10T02:34:33Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-776395756) at 2021-02-09 06:34 PM PST -evancchen,2021-02-11T03:04:39Z,- evancchen assigned to issue: [1010](https://github.com/hackforla/website/issues/1010) at 2021-02-10 07:04 PM PST -evancchen,2021-02-14T18:45:53Z,- evancchen unassigned from issue: [1010](https://github.com/hackforla/website/issues/1010) at 2021-02-14 10:45 AM PST -evancchen,2021-02-14T18:56:15Z,- evancchen assigned to issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-14 10:56 AM PST -evancchen,2021-02-14T19:07:04Z,- evancchen unassigned from issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-14 11:07 AM PST -evancchen,2021-02-14T19:07:50Z,- evancchen assigned to issue: [1042](https://github.com/hackforla/website/issues/1042) at 2021-02-14 11:07 AM PST -evancchen,2021-02-24T02:47:42Z,- evancchen opened pull request: [1097](https://github.com/hackforla/website/pull/1097) at 2021-02-23 06:47 PM PST -evancchen,2021-02-24T03:38:38Z,- evancchen commented on pull request: [1097](https://github.com/hackforla/website/pull/1097#issuecomment-784728366) at 2021-02-23 07:38 PM PST -evancchen,2021-02-24T03:45:20Z,- evancchen pull request merged: [1097](https://github.com/hackforla/website/pull/1097#event-4368626818) at 2021-02-23 07:45 PM PST -evancchen,2021-02-24T03:56:32Z,- evancchen assigned to issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:56 PM PST -evancchen,2021-02-24T04:29:46Z,- evancchen opened pull request: [1099](https://github.com/hackforla/website/pull/1099) at 2021-02-23 08:29 PM PST -evancchen,2021-02-24T04:43:55Z,- evancchen pull request merged: [1099](https://github.com/hackforla/website/pull/1099#event-4368764193) at 2021-02-23 08:43 PM PST -evancchen,2021-02-24T23:02:35Z,- evancchen assigned to issue: [1081](https://github.com/hackforla/website/issues/1081) at 2021-02-24 03:02 PM PST -evancchen,2021-02-24T23:24:14Z,- evancchen commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-785460279) at 2021-02-24 03:24 PM PST -evancchen,2021-02-27T00:59:41Z,- evancchen opened pull request: [1129](https://github.com/hackforla/website/pull/1129) at 2021-02-26 04:59 PM PST -evancchen,2021-02-28T19:06:38Z,- evancchen commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-787504506) at 2021-02-28 11:06 AM PST -evancchen,2021-02-28T19:08:35Z,- evancchen assigned to issue: [1136](https://github.com/hackforla/website/issues/1136) at 2021-02-28 11:08 AM PST -evancchen,2021-03-02T02:52:15Z,- evancchen commented on pull request: [1129](https://github.com/hackforla/website/pull/1129#issuecomment-788536186) at 2021-03-01 06:52 PM PST -evancchen,2021-03-02T03:13:16Z,- evancchen opened pull request: [1148](https://github.com/hackforla/website/pull/1148) at 2021-03-01 07:13 PM PST -evancchen,2021-03-02T05:30:17Z,- evancchen pull request merged: [1129](https://github.com/hackforla/website/pull/1129#event-4393726388) at 2021-03-01 09:30 PM PST -evancchen,2021-03-03T05:06:14Z,- evancchen pull request merged: [1148](https://github.com/hackforla/website/pull/1148#event-4399557838) at 2021-03-02 09:06 PM PST -evancchen,2021-03-07T19:20:45Z,- evancchen assigned to issue: [1169](https://github.com/hackforla/website/issues/1169) at 2021-03-07 11:20 AM PST -evancchen,2021-03-07T19:38:03Z,- evancchen opened pull request: [1172](https://github.com/hackforla/website/pull/1172) at 2021-03-07 11:38 AM PST -evancchen,2021-03-09T17:57:09Z,- evancchen pull request merged: [1172](https://github.com/hackforla/website/pull/1172#event-4430258960) at 2021-03-09 09:57 AM PST -evancchen,2021-03-10T03:10:32Z,- evancchen assigned to issue: [1189](https://github.com/hackforla/website/issues/1189) at 2021-03-09 07:10 PM PST -evancchen,2021-03-11T02:35:06Z,- evancchen commented on issue: [1189](https://github.com/hackforla/website/issues/1189#issuecomment-796387816) at 2021-03-10 06:35 PM PST -evancchen,2021-03-11T02:38:35Z,- evancchen opened pull request: [1198](https://github.com/hackforla/website/pull/1198) at 2021-03-10 06:38 PM PST -evancchen,2021-03-12T02:24:02Z,- evancchen pull request merged: [1198](https://github.com/hackforla/website/pull/1198#event-4448402951) at 2021-03-11 06:24 PM PST -evancchen,2021-03-14T18:11:49Z,- evancchen assigned to issue: [1166](https://github.com/hackforla/website/issues/1166#issuecomment-797862651) at 2021-03-14 11:11 AM PDT -evancchen,2021-03-14T18:35:31Z,- evancchen opened pull request: [1204](https://github.com/hackforla/website/pull/1204) at 2021-03-14 11:35 AM PDT -evancchen,2021-03-17T03:13:16Z,- evancchen pull request merged: [1204](https://github.com/hackforla/website/pull/1204#event-4467869456) at 2021-03-16 08:13 PM PDT -evancchen,2021-03-17T03:46:37Z,- evancchen submitted pull request review: [1214](https://github.com/hackforla/website/pull/1214#pullrequestreview-613898330) at 2021-03-16 08:46 PM PDT -evancchen,2021-03-19T00:05:23Z,- evancchen assigned to issue: [1125](https://github.com/hackforla/website/issues/1125) at 2021-03-18 05:05 PM PDT -evancchen,2021-03-19T00:19:01Z,- evancchen commented on issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-802407318) at 2021-03-18 05:19 PM PDT -evancchen,2021-03-19T00:20:59Z,- evancchen commented on issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-802408446) at 2021-03-18 05:20 PM PDT -evancchen,2021-03-21T16:38:23Z,- evancchen unassigned from issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-803543032) at 2021-03-21 09:38 AM PDT -evancchen,2021-03-21T16:55:38Z,- evancchen assigned to issue: [1063](https://github.com/hackforla/website/issues/1063) at 2021-03-21 09:55 AM PDT -evancchen,2021-03-23T01:56:25Z,- evancchen commented on issue: [1063](https://github.com/hackforla/website/issues/1063#issuecomment-804524621) at 2021-03-22 06:56 PM PDT -evancchen,2021-03-24T23:00:54Z,- evancchen opened pull request: [1327](https://github.com/hackforla/website/pull/1327) at 2021-03-24 04:00 PM PDT -evancchen,2021-03-31T21:22:20Z,- evancchen pull request merged: [1327](https://github.com/hackforla/website/pull/1327#event-4537473236) at 2021-03-31 02:22 PM PDT -evancchen,2021-04-04T18:45:11Z,- evancchen assigned to issue: [1333](https://github.com/hackforla/website/issues/1333) at 2021-04-04 11:45 AM PDT -evancchen,2021-04-09T21:06:53Z,- evancchen opened pull request: [1385](https://github.com/hackforla/website/pull/1385) at 2021-04-09 02:06 PM PDT -evancchen,2021-04-09T21:22:45Z,- evancchen commented on pull request: [1385](https://github.com/hackforla/website/pull/1385#issuecomment-816979468) at 2021-04-09 02:22 PM PDT -evancchen,2021-04-09T21:28:50Z,- evancchen pull request merged: [1385](https://github.com/hackforla/website/pull/1385#event-4576473324) at 2021-04-09 02:28 PM PDT -evancchen,2021-04-11T19:01:58Z,- evancchen assigned to issue: [1322](https://github.com/hackforla/website/issues/1322) at 2021-04-11 12:01 PM PDT -evancchen,2021-04-18T19:30:48Z,- evancchen opened pull request: [1419](https://github.com/hackforla/website/pull/1419) at 2021-04-18 12:30 PM PDT -evancchen,2021-04-23T16:34:01Z,- evancchen pull request merged: [1419](https://github.com/hackforla/website/pull/1419#event-4637855220) at 2021-04-23 09:34 AM PDT -evancchen,2021-04-25T18:35:41Z,- evancchen assigned to issue: [1463](https://github.com/hackforla/website/issues/1463) at 2021-04-25 11:35 AM PDT -evancchen,2021-04-28T03:54:30Z,- evancchen opened pull request: [1484](https://github.com/hackforla/website/pull/1484) at 2021-04-27 08:54 PM PDT -evancchen,2021-05-02T16:12:29Z,- evancchen pull request merged: [1484](https://github.com/hackforla/website/pull/1484#event-4674970275) at 2021-05-02 09:12 AM PDT -evancchen,2021-05-05T02:14:49Z,- evancchen assigned to issue: [1498](https://github.com/hackforla/website/issues/1498) at 2021-05-04 07:14 PM PDT -evancchen,2021-05-30T18:17:09Z,- evancchen assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -evancchen,2021-06-02T01:26:37Z,- evancchen unassigned from issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-835632636) at 2021-06-01 06:26 PM PDT -evancchen,2021-06-02T01:42:27Z,- evancchen assigned to issue: [1612](https://github.com/hackforla/website/issues/1612) at 2021-06-01 06:42 PM PDT -evancchen,2021-06-02T22:18:57Z,- evancchen opened pull request: [1682](https://github.com/hackforla/website/pull/1682) at 2021-06-02 03:18 PM PDT -evancchen,2021-06-06T06:30:59Z,- evancchen pull request merged: [1682](https://github.com/hackforla/website/pull/1682#event-4847685101) at 2021-06-05 11:30 PM PDT -evancchen,2021-06-20T14:03:38Z,- evancchen assigned to issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-06-20 07:03 AM PDT -evancchen,2021-07-04T18:47:57Z,- evancchen commented on issue: [1598](https://github.com/hackforla/website/issues/1598#issuecomment-873640715) at 2021-07-04 11:47 AM PDT -evancchen,2021-07-06T21:38:38Z,- evancchen unassigned from issue: [1598](https://github.com/hackforla/website/issues/1598#issuecomment-873640715) at 2021-07-06 02:38 PM PDT -evancchen,2021-07-31T18:15:54Z,- evancchen assigned to issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-31 11:15 AM PDT -evancchen,2021-07-31T18:26:20Z,- evancchen unassigned from issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-31 11:26 AM PDT -evanhesketh,5069,SKILLS ISSUE -evanhesketh,2023-07-26T02:59:26Z,- evanhesketh opened issue: [5069](https://github.com/hackforla/website/issues/5069) at 2023-07-25 07:59 PM PDT -evanhesketh,2023-07-26T02:59:36Z,- evanhesketh assigned to issue: [5069](https://github.com/hackforla/website/issues/5069) at 2023-07-25 07:59 PM PDT -evanhesketh,2023-07-26T20:40:29Z,- evanhesketh assigned to issue: [4807](https://github.com/hackforla/website/issues/4807) at 2023-07-26 01:40 PM PDT -evanhesketh,2023-07-26T20:49:11Z,- evanhesketh commented on issue: [4807](https://github.com/hackforla/website/issues/4807#issuecomment-1652473957) at 2023-07-26 01:49 PM PDT -evanhesketh,2023-07-26T20:51:17Z,- evanhesketh commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1652476885) at 2023-07-26 01:51 PM PDT -evanhesketh,2023-07-27T21:12:27Z,- evanhesketh opened pull request: [5104](https://github.com/hackforla/website/pull/5104) at 2023-07-27 02:12 PM PDT -evanhesketh,2023-08-01T03:09:54Z,- evanhesketh pull request merged: [5104](https://github.com/hackforla/website/pull/5104#event-9971318604) at 2023-07-31 08:09 PM PDT -evanhesketh,2023-08-03T19:35:16Z,- evanhesketh commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1664531898) at 2023-08-03 12:35 PM PDT -evanhesketh,2023-08-04T18:44:14Z,- evanhesketh submitted pull request review: [5133](https://github.com/hackforla/website/pull/5133#pullrequestreview-1563387814) at 2023-08-04 11:44 AM PDT -evanhesketh,2023-08-04T18:51:27Z,- evanhesketh assigned to issue: [5136](https://github.com/hackforla/website/issues/5136) at 2023-08-04 11:51 AM PDT -evanhesketh,2023-08-04T18:53:37Z,- evanhesketh commented on issue: [5136](https://github.com/hackforla/website/issues/5136#issuecomment-1666044081) at 2023-08-04 11:53 AM PDT -evanhesketh,2023-08-04T19:37:38Z,- evanhesketh opened pull request: [5141](https://github.com/hackforla/website/pull/5141) at 2023-08-04 12:37 PM PDT -evanhesketh,2023-08-06T16:30:48Z,- evanhesketh pull request merged: [5141](https://github.com/hackforla/website/pull/5141#event-10017594719) at 2023-08-06 09:30 AM PDT -evanhesketh,2023-08-08T14:53:11Z,- evanhesketh assigned to issue: [5011](https://github.com/hackforla/website/issues/5011#issuecomment-1641390150) at 2023-08-08 07:53 AM PDT -evanhesketh,2023-08-08T14:55:50Z,- evanhesketh commented on issue: [5011](https://github.com/hackforla/website/issues/5011#issuecomment-1669781364) at 2023-08-08 07:55 AM PDT -evanhesketh,2023-08-11T19:00:43Z,- evanhesketh commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1675232644) at 2023-08-11 12:00 PM PDT -evanhesketh,2023-08-14T13:53:41Z,- evanhesketh unassigned from issue: [4807](https://github.com/hackforla/website/issues/4807#issuecomment-1676444067) at 2023-08-14 06:53 AM PDT -evanhesketh,2023-08-16T19:40:52Z,- evanhesketh commented on pull request: [5239](https://github.com/hackforla/website/pull/5239#issuecomment-1681174592) at 2023-08-16 12:40 PM PDT -evanhesketh,2023-08-16T21:47:03Z,- evanhesketh submitted pull request review: [5239](https://github.com/hackforla/website/pull/5239#pullrequestreview-1581467523) at 2023-08-16 02:47 PM PDT -evanhesketh,2023-08-17T01:18:47Z,- evanhesketh submitted pull request review: [5239](https://github.com/hackforla/website/pull/5239#pullrequestreview-1581626559) at 2023-08-16 06:18 PM PDT -evanhesketh,2023-08-28T21:16:22Z,- evanhesketh commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1696422917) at 2023-08-28 02:16 PM PDT -evanhesketh,2023-08-28T21:33:03Z,- evanhesketh submitted pull request review: [5327](https://github.com/hackforla/website/pull/5327#pullrequestreview-1599161575) at 2023-08-28 02:33 PM PDT -evanhesketh,2023-09-04T20:47:10Z,- evanhesketh closed issue as completed: [5069](https://github.com/hackforla/website/issues/5069#event-10276983301) at 2023-09-04 01:47 PM PDT -Excursionpreneur,2020-08-13T01:17:38Z,- Excursionpreneur assigned to issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673122179) at 2020-08-12 06:17 PM PDT -Excursionpreneur,2020-08-23T17:23:05Z,- Excursionpreneur unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-678794954) at 2020-08-23 10:23 AM PDT -Excursionpreneur,2020-08-30T18:44:13Z,- Excursionpreneur assigned to issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-30 11:44 AM PDT -Excursionpreneur,2020-09-06T17:53:11Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-687854859) at 2020-09-06 10:53 AM PDT -Excursionpreneur,2020-09-09T00:12:47Z,- Excursionpreneur opened pull request: [724](https://github.com/hackforla/website/pull/724) at 2020-09-08 05:12 PM PDT -Excursionpreneur,2020-09-14T01:05:51Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691756830) at 2020-09-13 06:05 PM PDT -Excursionpreneur,2020-09-14T01:07:03Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691757088) at 2020-09-13 06:07 PM PDT -Excursionpreneur,2020-09-16T03:22:01Z,- Excursionpreneur pull request merged: [724](https://github.com/hackforla/website/pull/724#event-3771152930) at 2020-09-15 08:22 PM PDT -Excursionpreneur,2020-09-16T04:04:59Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-693156535) at 2020-09-15 09:04 PM PDT -Excursionpreneur,2020-09-18T22:07:36Z,- Excursionpreneur assigned to issue: [700](https://github.com/hackforla/website/issues/700) at 2020-09-18 03:07 PM PDT -Excursionpreneur,2020-10-04T17:52:55Z,- Excursionpreneur unassigned from issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-04 10:52 AM PDT -ExperimentsInHonesty,4873,SKILLS ISSUE -ExperimentsInHonesty,2018-12-31T23:26:17Z,- ExperimentsInHonesty opened pull request: [27](https://github.com/hackforla/website/pull/27) at 2018-12-31 03:26 PM PST -ExperimentsInHonesty,2019-01-01T01:19:17Z,- ExperimentsInHonesty pull request merged: [27](https://github.com/hackforla/website/pull/27#event-2049302305) at 2018-12-31 05:19 PM PST -ExperimentsInHonesty,2019-01-09T00:18:50Z,- ExperimentsInHonesty opened pull request: [28](https://github.com/hackforla/website/pull/28) at 2019-01-08 04:18 PM PST -ExperimentsInHonesty,2019-01-09T05:10:40Z,- ExperimentsInHonesty pull request merged: [28](https://github.com/hackforla/website/pull/28#event-2062142772) at 2019-01-08 09:10 PM PST -ExperimentsInHonesty,2019-01-09T07:08:37Z,- ExperimentsInHonesty opened pull request: [29](https://github.com/hackforla/website/pull/29) at 2019-01-08 11:08 PM PST -ExperimentsInHonesty,2019-01-09T07:13:39Z,- ExperimentsInHonesty commented on pull request: [28](https://github.com/hackforla/website/pull/28#issuecomment-452595270) at 2019-01-08 11:13 PM PST -ExperimentsInHonesty,2019-01-09T19:08:40Z,- ExperimentsInHonesty pull request closed w/o merging: [29](https://github.com/hackforla/website/pull/29#event-2063942807) at 2019-01-09 11:08 AM PST -ExperimentsInHonesty,2019-01-09T20:20:04Z,- ExperimentsInHonesty opened pull request: [30](https://github.com/hackforla/website/pull/30) at 2019-01-09 12:20 PM PST -ExperimentsInHonesty,2019-01-10T03:38:19Z,- ExperimentsInHonesty pull request merged: [30](https://github.com/hackforla/website/pull/30#event-2064857571) at 2019-01-09 07:38 PM PST -ExperimentsInHonesty,2019-01-15T04:33:49Z,- ExperimentsInHonesty opened pull request: [31](https://github.com/hackforla/website/pull/31) at 2019-01-14 08:33 PM PST -ExperimentsInHonesty,2019-03-13T19:27:35Z,- ExperimentsInHonesty opened pull request: [41](https://github.com/hackforla/website/pull/41) at 2019-03-13 12:27 PM PDT -ExperimentsInHonesty,2019-03-13T20:33:22Z,- ExperimentsInHonesty opened pull request: [42](https://github.com/hackforla/website/pull/42) at 2019-03-13 01:33 PM PDT -ExperimentsInHonesty,2019-03-13T20:35:07Z,- ExperimentsInHonesty pull request closed w/o merging: [42](https://github.com/hackforla/website/pull/42#event-2201546315) at 2019-03-13 01:35 PM PDT -ExperimentsInHonesty,2019-03-13T20:36:37Z,- ExperimentsInHonesty opened pull request: [43](https://github.com/hackforla/website/pull/43) at 2019-03-13 01:36 PM PDT -ExperimentsInHonesty,2019-03-14T03:26:23Z,- ExperimentsInHonesty opened pull request: [44](https://github.com/hackforla/website/pull/44) at 2019-03-13 08:26 PM PDT -ExperimentsInHonesty,2019-03-26T18:41:11Z,- ExperimentsInHonesty pull request closed w/o merging: [44](https://github.com/hackforla/website/pull/44#event-2230808856) at 2019-03-26 11:41 AM PDT -ExperimentsInHonesty,2019-03-26T18:41:19Z,- ExperimentsInHonesty pull request closed w/o merging: [43](https://github.com/hackforla/website/pull/43#event-2230809342) at 2019-03-26 11:41 AM PDT -ExperimentsInHonesty,2019-03-26T18:41:36Z,- ExperimentsInHonesty pull request closed w/o merging: [41](https://github.com/hackforla/website/pull/41#event-2230810142) at 2019-03-26 11:41 AM PDT -ExperimentsInHonesty,2019-03-27T23:58:43Z,- ExperimentsInHonesty opened pull request: [50](https://github.com/hackforla/website/pull/50) at 2019-03-27 04:58 PM PDT -ExperimentsInHonesty,2019-04-01T01:55:37Z,- ExperimentsInHonesty pull request closed w/o merging: [50](https://github.com/hackforla/website/pull/50#event-2241946966) at 2019-03-31 06:55 PM PDT -ExperimentsInHonesty,2019-04-01T02:47:50Z,- ExperimentsInHonesty opened pull request: [55](https://github.com/hackforla/website/pull/55) at 2019-03-31 07:47 PM PDT -ExperimentsInHonesty,2019-04-01T02:51:37Z,- ExperimentsInHonesty pull request closed w/o merging: [55](https://github.com/hackforla/website/pull/55#event-2242006747) at 2019-03-31 07:51 PM PDT -ExperimentsInHonesty,2019-04-01T03:16:29Z,- ExperimentsInHonesty opened pull request: [56](https://github.com/hackforla/website/pull/56) at 2019-03-31 08:16 PM PDT -ExperimentsInHonesty,2019-04-01T03:17:17Z,- ExperimentsInHonesty pull request closed w/o merging: [56](https://github.com/hackforla/website/pull/56#event-2242032332) at 2019-03-31 08:17 PM PDT -ExperimentsInHonesty,2019-04-01T03:20:46Z,- ExperimentsInHonesty opened pull request: [57](https://github.com/hackforla/website/pull/57) at 2019-03-31 08:20 PM PDT -ExperimentsInHonesty,2019-04-02T02:06:44Z,- ExperimentsInHonesty pull request closed w/o merging: [57](https://github.com/hackforla/website/pull/57#event-2245088536) at 2019-04-01 07:06 PM PDT -ExperimentsInHonesty,2019-04-02T02:09:03Z,- ExperimentsInHonesty opened pull request: [58](https://github.com/hackforla/website/pull/58) at 2019-04-01 07:09 PM PDT -ExperimentsInHonesty,2019-04-02T03:52:53Z,- ExperimentsInHonesty pull request merged: [58](https://github.com/hackforla/website/pull/58#event-2245223060) at 2019-04-01 08:52 PM PDT -ExperimentsInHonesty,2019-04-02T04:46:36Z,- ExperimentsInHonesty commented on pull request: [46](https://github.com/hackforla/website/pull/46#issuecomment-478842708) at 2019-04-01 09:46 PM PDT -ExperimentsInHonesty,2019-04-04T21:42:51Z,- ExperimentsInHonesty opened pull request: [59](https://github.com/hackforla/website/pull/59) at 2019-04-04 02:42 PM PDT -ExperimentsInHonesty,2019-04-05T23:21:48Z,- ExperimentsInHonesty pull request merged: [59](https://github.com/hackforla/website/pull/59#event-2257129887) at 2019-04-05 04:21 PM PDT -ExperimentsInHonesty,2019-04-12T20:47:47Z,- ExperimentsInHonesty opened pull request: [62](https://github.com/hackforla/website/pull/62) at 2019-04-12 01:47 PM PDT -ExperimentsInHonesty,2019-04-12T21:12:34Z,- ExperimentsInHonesty opened pull request: [63](https://github.com/hackforla/website/pull/63) at 2019-04-12 02:12 PM PDT -ExperimentsInHonesty,2019-04-23T02:15:55Z,- ExperimentsInHonesty pull request merged: [63](https://github.com/hackforla/website/pull/63#event-2292734110) at 2019-04-22 07:15 PM PDT -ExperimentsInHonesty,2019-04-23T02:19:03Z,- ExperimentsInHonesty pull request merged: [62](https://github.com/hackforla/website/pull/62#event-2292738145) at 2019-04-22 07:19 PM PDT -ExperimentsInHonesty,2019-04-23T06:01:05Z,- ExperimentsInHonesty closed issue as completed: [16](https://github.com/hackforla/website/issues/16#event-2292996298) at 2019-04-22 11:01 PM PDT -ExperimentsInHonesty,2019-04-23T06:10:46Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-485656867) at 2019-04-22 11:10 PM PDT -ExperimentsInHonesty,2019-04-23T06:27:51Z,- ExperimentsInHonesty opened issue: [64](https://github.com/hackforla/website/issues/64) at 2019-04-22 11:27 PM PDT -ExperimentsInHonesty,2019-04-23T06:32:24Z,- ExperimentsInHonesty opened issue: [65](https://github.com/hackforla/website/issues/65) at 2019-04-22 11:32 PM PDT -ExperimentsInHonesty,2019-04-23T06:37:45Z,- ExperimentsInHonesty opened issue: [66](https://github.com/hackforla/website/issues/66) at 2019-04-22 11:37 PM PDT -ExperimentsInHonesty,2019-04-23T06:50:59Z,- ExperimentsInHonesty opened issue: [67](https://github.com/hackforla/website/issues/67) at 2019-04-22 11:50 PM PDT -ExperimentsInHonesty,2019-04-23T08:11:47Z,- ExperimentsInHonesty opened issue: [69](https://github.com/hackforla/website/issues/69) at 2019-04-23 01:11 AM PDT -ExperimentsInHonesty,2019-04-23T08:11:47Z,- ExperimentsInHonesty assigned to issue: [69](https://github.com/hackforla/website/issues/69) at 2019-04-23 01:11 AM PDT -ExperimentsInHonesty,2019-04-25T21:26:21Z,- ExperimentsInHonesty commented on issue: [15](https://github.com/hackforla/website/issues/15#issuecomment-486843914) at 2019-04-25 02:26 PM PDT -ExperimentsInHonesty,2019-04-25T21:26:21Z,- ExperimentsInHonesty closed issue as completed: [15](https://github.com/hackforla/website/issues/15#event-2301525245) at 2019-04-25 02:26 PM PDT -ExperimentsInHonesty,2019-04-30T06:17:26Z,- ExperimentsInHonesty opened issue: [72](https://github.com/hackforla/website/issues/72) at 2019-04-29 11:17 PM PDT -ExperimentsInHonesty,2019-04-30T06:41:05Z,- ExperimentsInHonesty opened issue: [73](https://github.com/hackforla/website/issues/73) at 2019-04-29 11:41 PM PDT -ExperimentsInHonesty,2019-05-01T22:51:43Z,- ExperimentsInHonesty submitted pull request review: [76](https://github.com/hackforla/website/pull/76#pullrequestreview-232790083) at 2019-05-01 03:51 PM PDT -ExperimentsInHonesty,2019-05-01T23:03:13Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-488477159) at 2019-05-01 04:03 PM PDT -ExperimentsInHonesty,2019-05-01T23:16:49Z,- ExperimentsInHonesty commented on issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-488484918) at 2019-05-01 04:16 PM PDT -ExperimentsInHonesty,2019-05-02T00:39:16Z,- ExperimentsInHonesty opened issue: [78](https://github.com/hackforla/website/issues/78) at 2019-05-01 05:39 PM PDT -ExperimentsInHonesty,2019-05-02T03:05:34Z,- ExperimentsInHonesty pull request closed w/o merging: [31](https://github.com/hackforla/website/pull/31#event-2313443041) at 2019-05-01 08:05 PM PDT -ExperimentsInHonesty,2019-05-02T23:25:56Z,- ExperimentsInHonesty assigned to issue: [79](https://github.com/hackforla/website/issues/79) at 2019-05-02 04:25 PM PDT -ExperimentsInHonesty,2019-05-02T23:28:16Z,- ExperimentsInHonesty submitted pull request review: [85](https://github.com/hackforla/website/pull/85#pullrequestreview-233281130) at 2019-05-02 04:28 PM PDT -ExperimentsInHonesty,2019-05-03T00:04:17Z,- ExperimentsInHonesty commented on issue: [79](https://github.com/hackforla/website/issues/79#issuecomment-488874348) at 2019-05-02 05:04 PM PDT -ExperimentsInHonesty,2019-05-03T01:23:17Z,- ExperimentsInHonesty closed issue as completed: [79](https://github.com/hackforla/website/issues/79#event-2316083255) at 2019-05-02 06:23 PM PDT -ExperimentsInHonesty,2019-05-03T01:24:10Z,- ExperimentsInHonesty closed issue as completed: [79](https://github.com/hackforla/website/issues/79#event-2316084013) at 2019-05-02 06:24 PM PDT -ExperimentsInHonesty,2019-05-03T02:31:38Z,- ExperimentsInHonesty submitted pull request review: [86](https://github.com/hackforla/website/pull/86#pullrequestreview-233308214) at 2019-05-02 07:31 PM PDT -ExperimentsInHonesty,2019-05-03T02:31:55Z,- ExperimentsInHonesty submitted pull request review: [86](https://github.com/hackforla/website/pull/86#pullrequestreview-233308246) at 2019-05-02 07:31 PM PDT -ExperimentsInHonesty,2019-05-03T03:22:08Z,- ExperimentsInHonesty submitted pull request review: [84](https://github.com/hackforla/website/pull/84#pullrequestreview-233313169) at 2019-05-02 08:22 PM PDT -ExperimentsInHonesty,2019-05-04T18:06:22Z,- ExperimentsInHonesty commented on issue: [81](https://github.com/hackforla/website/issues/81#issuecomment-489350621) at 2019-05-04 11:06 AM PDT -ExperimentsInHonesty,2019-05-04T18:06:22Z,- ExperimentsInHonesty closed issue as completed: [81](https://github.com/hackforla/website/issues/81#event-2319169844) at 2019-05-04 11:06 AM PDT -ExperimentsInHonesty,2019-05-05T05:31:54Z,- ExperimentsInHonesty opened pull request: [91](https://github.com/hackforla/website/pull/91) at 2019-05-04 10:31 PM PDT -ExperimentsInHonesty,2019-05-05T23:46:11Z,- ExperimentsInHonesty pull request merged: [91](https://github.com/hackforla/website/pull/91#event-2319857656) at 2019-05-05 04:46 PM PDT -ExperimentsInHonesty,2019-05-05T23:46:56Z,- ExperimentsInHonesty closed issue as completed: [69](https://github.com/hackforla/website/issues/69#event-2319858063) at 2019-05-05 04:46 PM PDT -ExperimentsInHonesty,2019-05-08T22:41:57Z,- ExperimentsInHonesty closed issue as completed: [72](https://github.com/hackforla/website/issues/72#event-2328668731) at 2019-05-08 03:41 PM PDT -ExperimentsInHonesty,2019-05-08T23:38:18Z,- ExperimentsInHonesty commented on issue: [64](https://github.com/hackforla/website/issues/64#issuecomment-490689699) at 2019-05-08 04:38 PM PDT -ExperimentsInHonesty,2019-05-08T23:38:18Z,- ExperimentsInHonesty closed issue as completed: [64](https://github.com/hackforla/website/issues/64#event-2328752710) at 2019-05-08 04:38 PM PDT -ExperimentsInHonesty,2019-05-08T23:38:52Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-490689802) at 2019-05-08 04:38 PM PDT -ExperimentsInHonesty,2019-05-08T23:46:35Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-490691273) at 2019-05-08 04:46 PM PDT -ExperimentsInHonesty,2019-05-09T00:15:32Z,- ExperimentsInHonesty opened issue: [97](https://github.com/hackforla/website/issues/97) at 2019-05-08 05:15 PM PDT -ExperimentsInHonesty,2019-05-09T00:43:11Z,- ExperimentsInHonesty opened issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-08 05:43 PM PDT -ExperimentsInHonesty,2019-05-09T00:43:11Z,- ExperimentsInHonesty assigned to issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-08 05:43 PM PDT -ExperimentsInHonesty,2019-05-09T05:23:42Z,- ExperimentsInHonesty commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-490748213) at 2019-05-08 10:23 PM PDT -ExperimentsInHonesty,2019-05-09T05:41:31Z,- ExperimentsInHonesty commented on issue: [73](https://github.com/hackforla/website/issues/73#issuecomment-490751412) at 2019-05-08 10:41 PM PDT -ExperimentsInHonesty,2019-05-09T05:41:31Z,- ExperimentsInHonesty closed issue as completed: [73](https://github.com/hackforla/website/issues/73#event-2329185846) at 2019-05-08 10:41 PM PDT -ExperimentsInHonesty,2019-05-09T06:24:10Z,- ExperimentsInHonesty submitted pull request review: [99](https://github.com/hackforla/website/pull/99#pullrequestreview-235416156) at 2019-05-08 11:24 PM PDT -ExperimentsInHonesty,2019-05-09T19:09:04Z,- ExperimentsInHonesty commented on pull request: [100](https://github.com/hackforla/website/pull/100#issuecomment-491028971) at 2019-05-09 12:09 PM PDT -ExperimentsInHonesty,2019-05-09T19:44:25Z,- ExperimentsInHonesty submitted pull request review: [101](https://github.com/hackforla/website/pull/101#pullrequestreview-235786936) at 2019-05-09 12:44 PM PDT -ExperimentsInHonesty,2019-05-10T01:27:57Z,- ExperimentsInHonesty opened issue: [102](https://github.com/hackforla/website/issues/102) at 2019-05-09 06:27 PM PDT -ExperimentsInHonesty,2019-05-10T01:27:57Z,- ExperimentsInHonesty assigned to issue: [102](https://github.com/hackforla/website/issues/102) at 2019-05-09 06:27 PM PDT -ExperimentsInHonesty,2019-05-11T00:40:06Z,- ExperimentsInHonesty commented on issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-491464756) at 2019-05-10 05:40 PM PDT -ExperimentsInHonesty,2019-05-11T00:50:27Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491465654) at 2019-05-10 05:50 PM PDT -ExperimentsInHonesty,2019-05-11T01:04:47Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491466775) at 2019-05-10 06:04 PM PDT -ExperimentsInHonesty,2019-05-12T03:52:41Z,- ExperimentsInHonesty commented on issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-491562286) at 2019-05-11 08:52 PM PDT -ExperimentsInHonesty,2019-05-12T05:24:50Z,- ExperimentsInHonesty opened issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -ExperimentsInHonesty,2019-05-12T05:24:51Z,- ExperimentsInHonesty assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -ExperimentsInHonesty,2019-05-13T03:15:36Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:15 PM PDT -ExperimentsInHonesty,2019-05-13T03:16:21Z,- ExperimentsInHonesty assigned to issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:16 PM PDT -ExperimentsInHonesty,2019-05-21T05:31:42Z,- ExperimentsInHonesty commented on issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494245577) at 2019-05-20 10:31 PM PDT -ExperimentsInHonesty,2019-05-21T05:31:57Z,- ExperimentsInHonesty assigned to issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494245577) at 2019-05-20 10:31 PM PDT -ExperimentsInHonesty,2019-05-21T18:59:15Z,- ExperimentsInHonesty opened issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 11:59 AM PDT -ExperimentsInHonesty,2019-05-21T18:59:15Z,- ExperimentsInHonesty assigned to issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 11:59 AM PDT -ExperimentsInHonesty,2019-05-22T02:57:54Z,- ExperimentsInHonesty unassigned from issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 07:57 PM PDT -ExperimentsInHonesty,2019-05-23T03:35:32Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:35 PM PDT -ExperimentsInHonesty,2019-05-23T03:36:19Z,- ExperimentsInHonesty assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -ExperimentsInHonesty,2019-05-23T03:37:41Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055343) at 2019-05-22 08:37 PM PDT -ExperimentsInHonesty,2019-05-27T19:16:16Z,- ExperimentsInHonesty commented on pull request: [108](https://github.com/hackforla/website/pull/108#issuecomment-496288994) at 2019-05-27 12:16 PM PDT -ExperimentsInHonesty,2019-05-27T19:49:13Z,- ExperimentsInHonesty opened issue: [117](https://github.com/hackforla/website/issues/117) at 2019-05-27 12:49 PM PDT -ExperimentsInHonesty,2019-05-27T20:09:59Z,- ExperimentsInHonesty opened issue: [119](https://github.com/hackforla/website/issues/119) at 2019-05-27 01:09 PM PDT -ExperimentsInHonesty,2019-05-27T20:10:00Z,- ExperimentsInHonesty assigned to issue: [119](https://github.com/hackforla/website/issues/119) at 2019-05-27 01:10 PM PDT -ExperimentsInHonesty,2019-05-27T20:20:35Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-496298833) at 2019-05-27 01:20 PM PDT -ExperimentsInHonesty,2019-05-27T20:48:23Z,- ExperimentsInHonesty closed issue as completed: [75](https://github.com/hackforla/website/issues/75#event-2370145315) at 2019-05-27 01:48 PM PDT -ExperimentsInHonesty,2019-05-27T21:05:09Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-496305459) at 2019-05-27 02:05 PM PDT -ExperimentsInHonesty,2019-05-27T21:05:15Z,- ExperimentsInHonesty assigned to issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-496305459) at 2019-05-27 02:05 PM PDT -ExperimentsInHonesty,2019-05-27T21:15:51Z,- ExperimentsInHonesty assigned to issue: [116](https://github.com/hackforla/website/issues/116) at 2019-05-27 02:15 PM PDT -ExperimentsInHonesty,2019-05-27T23:08:43Z,- ExperimentsInHonesty opened issue: [120](https://github.com/hackforla/website/issues/120) at 2019-05-27 04:08 PM PDT -ExperimentsInHonesty,2019-05-27T23:08:43Z,- ExperimentsInHonesty assigned to issue: [120](https://github.com/hackforla/website/issues/120) at 2019-05-27 04:08 PM PDT -ExperimentsInHonesty,2019-05-27T23:15:56Z,- ExperimentsInHonesty opened issue: [121](https://github.com/hackforla/website/issues/121) at 2019-05-27 04:15 PM PDT -ExperimentsInHonesty,2019-05-27T23:15:57Z,- ExperimentsInHonesty assigned to issue: [121](https://github.com/hackforla/website/issues/121) at 2019-05-27 04:15 PM PDT -ExperimentsInHonesty,2019-05-27T23:20:13Z,- ExperimentsInHonesty opened issue: [122](https://github.com/hackforla/website/issues/122) at 2019-05-27 04:20 PM PDT -ExperimentsInHonesty,2019-05-27T23:23:19Z,- ExperimentsInHonesty commented on issue: [103](https://github.com/hackforla/website/issues/103#issuecomment-496319749) at 2019-05-27 04:23 PM PDT -ExperimentsInHonesty,2019-05-28T04:45:18Z,- ExperimentsInHonesty opened issue: [123](https://github.com/hackforla/website/issues/123) at 2019-05-27 09:45 PM PDT -ExperimentsInHonesty,2019-05-28T04:45:18Z,- ExperimentsInHonesty assigned to issue: [123](https://github.com/hackforla/website/issues/123) at 2019-05-27 09:45 PM PDT -ExperimentsInHonesty,2019-05-28T16:51:08Z,- ExperimentsInHonesty closed issue as completed: [121](https://github.com/hackforla/website/issues/121#event-2372478376) at 2019-05-28 09:51 AM PDT -ExperimentsInHonesty,2019-06-04T01:16:14Z,- ExperimentsInHonesty assigned to issue: [117](https://github.com/hackforla/website/issues/117) at 2019-06-03 06:16 PM PDT -ExperimentsInHonesty,2019-06-04T01:21:06Z,- ExperimentsInHonesty assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -ExperimentsInHonesty,2019-06-04T01:54:03Z,- ExperimentsInHonesty commented on issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498488767) at 2019-06-03 06:54 PM PDT -ExperimentsInHonesty,2019-06-04T01:57:19Z,- ExperimentsInHonesty commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498489346) at 2019-06-03 06:57 PM PDT -ExperimentsInHonesty,2019-06-10T22:38:02Z,- ExperimentsInHonesty assigned to issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-498506119) at 2019-06-10 03:38 PM PDT -ExperimentsInHonesty,2019-06-10T22:40:00Z,- ExperimentsInHonesty commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-500620338) at 2019-06-10 03:40 PM PDT -ExperimentsInHonesty,2019-06-10T22:48:14Z,- ExperimentsInHonesty commented on pull request: [124](https://github.com/hackforla/website/pull/124#issuecomment-500622051) at 2019-06-10 03:48 PM PDT -ExperimentsInHonesty,2019-06-10T22:52:04Z,- ExperimentsInHonesty commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-500622834) at 2019-06-10 03:52 PM PDT -ExperimentsInHonesty,2019-06-10T22:53:01Z,- ExperimentsInHonesty closed issue as completed: [120](https://github.com/hackforla/website/issues/120#event-2402425802) at 2019-06-10 03:53 PM PDT -ExperimentsInHonesty,2019-06-10T22:59:37Z,- ExperimentsInHonesty commented on issue: [117](https://github.com/hackforla/website/issues/117#issuecomment-500624355) at 2019-06-10 03:59 PM PDT -ExperimentsInHonesty,2019-06-10T22:59:37Z,- ExperimentsInHonesty closed issue as completed: [117](https://github.com/hackforla/website/issues/117#event-2402435524) at 2019-06-10 03:59 PM PDT -ExperimentsInHonesty,2019-06-10T23:14:09Z,- ExperimentsInHonesty commented on issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-500627151) at 2019-06-10 04:14 PM PDT -ExperimentsInHonesty,2019-06-10T23:14:10Z,- ExperimentsInHonesty closed issue as completed: [109](https://github.com/hackforla/website/issues/109#event-2402456465) at 2019-06-10 04:14 PM PDT -ExperimentsInHonesty,2019-06-11T21:53:06Z,- ExperimentsInHonesty opened issue: [126](https://github.com/hackforla/website/issues/126) at 2019-06-11 02:53 PM PDT -ExperimentsInHonesty,2019-06-12T01:00:33Z,- ExperimentsInHonesty opened issue: [128](https://github.com/hackforla/website/issues/128) at 2019-06-11 06:00 PM PDT -ExperimentsInHonesty,2019-06-12T17:38:41Z,- ExperimentsInHonesty assigned to issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501109564) at 2019-06-12 10:38 AM PDT -ExperimentsInHonesty,2019-06-12T17:41:01Z,- ExperimentsInHonesty commented on issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501381032) at 2019-06-12 10:41 AM PDT -ExperimentsInHonesty,2019-06-12T17:45:17Z,- ExperimentsInHonesty commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501382565) at 2019-06-12 10:45 AM PDT -ExperimentsInHonesty,2019-06-12T17:45:17Z,- ExperimentsInHonesty closed issue as completed: [111](https://github.com/hackforla/website/issues/111#event-2408194027) at 2019-06-12 10:45 AM PDT -ExperimentsInHonesty,2019-06-12T22:49:08Z,- ExperimentsInHonesty closed issue by PR 129: [127](https://github.com/hackforla/website/issues/127#event-2408919649) at 2019-06-12 03:49 PM PDT -ExperimentsInHonesty,2019-06-12T22:49:51Z,- ExperimentsInHonesty assigned to issue: [127](https://github.com/hackforla/website/issues/127#event-2408919649) at 2019-06-12 03:49 PM PDT -ExperimentsInHonesty,2019-06-13T00:58:51Z,- ExperimentsInHonesty commented on issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501508466) at 2019-06-12 05:58 PM PDT -ExperimentsInHonesty,2019-06-13T00:58:51Z,- ExperimentsInHonesty closed issue as completed: [126](https://github.com/hackforla/website/issues/126#event-2409091995) at 2019-06-12 05:58 PM PDT -ExperimentsInHonesty,2019-06-16T20:08:15Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-502481835) at 2019-06-16 01:08 PM PDT -ExperimentsInHonesty,2019-06-24T20:04:07Z,- ExperimentsInHonesty commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-505158612) at 2019-06-24 01:04 PM PDT -ExperimentsInHonesty,2019-06-27T19:10:50Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-506474100) at 2019-06-27 12:10 PM PDT -ExperimentsInHonesty,2019-06-27T19:11:42Z,- ExperimentsInHonesty assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-503383749) at 2019-06-27 12:11 PM PDT -ExperimentsInHonesty,2019-07-13T08:55:42Z,- ExperimentsInHonesty commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-511104161) at 2019-07-13 01:55 AM PDT -ExperimentsInHonesty,2019-07-13T09:02:46Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-511104679) at 2019-07-13 02:02 AM PDT -ExperimentsInHonesty,2019-07-23T01:43:14Z,- ExperimentsInHonesty opened issue: [133](https://github.com/hackforla/website/issues/133) at 2019-07-22 06:43 PM PDT -ExperimentsInHonesty,2019-07-23T03:05:45Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-07-22 08:05 PM PDT -ExperimentsInHonesty,2019-07-30T03:24:46Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-516244909) at 2019-07-29 08:24 PM PDT -ExperimentsInHonesty,2019-08-01T05:01:09Z,- ExperimentsInHonesty assigned to issue: [134](https://github.com/hackforla/website/issues/134) at 2019-07-31 10:01 PM PDT -ExperimentsInHonesty,2019-08-13T03:42:20Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2019-08-12 08:42 PM PDT -ExperimentsInHonesty,2019-08-16T03:40:08Z,- ExperimentsInHonesty submitted pull request review: [142](https://github.com/hackforla/website/pull/142#pullrequestreview-275763010) at 2019-08-15 08:40 PM PDT -ExperimentsInHonesty,2019-08-19T18:52:38Z,- ExperimentsInHonesty commented on pull request: [142](https://github.com/hackforla/website/pull/142#issuecomment-522708171) at 2019-08-19 11:52 AM PDT -ExperimentsInHonesty,2019-08-19T18:56:59Z,- ExperimentsInHonesty commented on pull request: [142](https://github.com/hackforla/website/pull/142#issuecomment-522709661) at 2019-08-19 11:56 AM PDT -ExperimentsInHonesty,2019-08-19T18:59:02Z,- ExperimentsInHonesty commented on pull request: [141](https://github.com/hackforla/website/pull/141#issuecomment-522710383) at 2019-08-19 11:59 AM PDT -ExperimentsInHonesty,2019-08-20T02:58:27Z,- ExperimentsInHonesty opened issue: [145](https://github.com/hackforla/website/issues/145) at 2019-08-19 07:58 PM PDT -ExperimentsInHonesty,2019-08-22T18:56:49Z,- ExperimentsInHonesty commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524032853) at 2019-08-22 11:56 AM PDT -ExperimentsInHonesty,2019-08-23T01:31:51Z,- ExperimentsInHonesty commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524137934) at 2019-08-22 06:31 PM PDT -ExperimentsInHonesty,2019-08-27T19:49:55Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525455658) at 2019-08-27 12:49 PM PDT -ExperimentsInHonesty,2019-08-27T21:40:13Z,- ExperimentsInHonesty assigned to issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525493715) at 2019-08-27 02:40 PM PDT -ExperimentsInHonesty,2019-08-28T03:05:15Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525564669) at 2019-08-27 08:05 PM PDT -ExperimentsInHonesty,2019-08-28T03:42:38Z,- ExperimentsInHonesty assigned to issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525568250) at 2019-08-27 08:42 PM PDT -ExperimentsInHonesty,2019-08-28T05:10:41Z,- ExperimentsInHonesty commented on pull request: [146](https://github.com/hackforla/website/pull/146#issuecomment-525586790) at 2019-08-27 10:10 PM PDT -ExperimentsInHonesty,2019-08-28T05:18:37Z,- ExperimentsInHonesty commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525588253) at 2019-08-27 10:18 PM PDT -ExperimentsInHonesty,2019-08-28T20:23:16Z,- ExperimentsInHonesty closed issue as completed: [118](https://github.com/hackforla/website/issues/118#event-2591826989) at 2019-08-28 01:23 PM PDT -ExperimentsInHonesty,2019-08-28T21:48:09Z,- ExperimentsInHonesty opened pull request: [149](https://github.com/hackforla/website/pull/149) at 2019-08-28 02:48 PM PDT -ExperimentsInHonesty,2019-08-28T21:48:31Z,- ExperimentsInHonesty pull request merged: [149](https://github.com/hackforla/website/pull/149#event-2592042439) at 2019-08-28 02:48 PM PDT -ExperimentsInHonesty,2019-08-28T21:53:01Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525937352) at 2019-08-28 02:53 PM PDT -ExperimentsInHonesty,2019-08-28T21:53:45Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525937584) at 2019-08-28 02:53 PM PDT -ExperimentsInHonesty,2019-08-28T22:43:59Z,- ExperimentsInHonesty reopened issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525937584) at 2019-08-28 03:43 PM PDT -ExperimentsInHonesty,2019-08-28T23:18:48Z,- ExperimentsInHonesty opened pull request: [151](https://github.com/hackforla/website/pull/151) at 2019-08-28 04:18 PM PDT -ExperimentsInHonesty,2019-08-28T23:19:49Z,- ExperimentsInHonesty pull request merged: [151](https://github.com/hackforla/website/pull/151#event-2592207761) at 2019-08-28 04:19 PM PDT -ExperimentsInHonesty,2019-10-08T02:07:12Z,- ExperimentsInHonesty submitted pull request review: [153](https://github.com/hackforla/website/pull/153#pullrequestreview-298500711) at 2019-10-07 07:07 PM PDT -ExperimentsInHonesty,2019-10-08T02:11:03Z,- ExperimentsInHonesty closed issue as completed: [148](https://github.com/hackforla/website/issues/148#event-2693847238) at 2019-10-07 07:11 PM PDT -ExperimentsInHonesty,2019-11-03T04:45:13Z,- ExperimentsInHonesty assigned to issue: [167](https://github.com/hackforla/website/issues/167) at 2019-11-02 08:45 PM PST -ExperimentsInHonesty,2019-11-03T20:20:42Z,- ExperimentsInHonesty commented on issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174544) at 2019-11-03 12:20 PM PST -ExperimentsInHonesty,2019-11-03T20:23:03Z,- ExperimentsInHonesty commented on issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174727) at 2019-11-03 12:23 PM PST -ExperimentsInHonesty,2019-11-04T03:29:50Z,- ExperimentsInHonesty opened issue: [168](https://github.com/hackforla/website/issues/168) at 2019-11-03 07:29 PM PST -ExperimentsInHonesty,2019-11-04T03:30:51Z,- ExperimentsInHonesty assigned to issue: [168](https://github.com/hackforla/website/issues/168) at 2019-11-03 07:30 PM PST -ExperimentsInHonesty,2019-11-07T20:59:22Z,- ExperimentsInHonesty opened issue: [177](https://github.com/hackforla/website/issues/177) at 2019-11-07 12:59 PM PST -ExperimentsInHonesty,2019-11-07T20:59:23Z,- ExperimentsInHonesty assigned to issue: [177](https://github.com/hackforla/website/issues/177) at 2019-11-07 12:59 PM PST -ExperimentsInHonesty,2019-11-10T08:55:48Z,- ExperimentsInHonesty commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552175685) at 2019-11-10 12:55 AM PST -ExperimentsInHonesty,2019-11-12T03:03:52Z,- ExperimentsInHonesty unassigned from issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552242613) at 2019-11-11 07:03 PM PST -ExperimentsInHonesty,2019-11-12T03:04:15Z,- ExperimentsInHonesty commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552713295) at 2019-11-11 07:04 PM PST -ExperimentsInHonesty,2019-11-12T03:22:54Z,- ExperimentsInHonesty commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-552717051) at 2019-11-11 07:22 PM PST -ExperimentsInHonesty,2019-11-14T03:01:56Z,- ExperimentsInHonesty commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-553702332) at 2019-11-13 07:01 PM PST -ExperimentsInHonesty,2019-11-19T03:11:25Z,- ExperimentsInHonesty commented on issue: [161](https://github.com/hackforla/website/issues/161#issuecomment-555312557) at 2019-11-18 07:11 PM PST -ExperimentsInHonesty,2019-11-19T03:11:32Z,- ExperimentsInHonesty assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-547721864) at 2019-11-18 07:11 PM PST -ExperimentsInHonesty,2019-11-20T03:12:59Z,- ExperimentsInHonesty closed issue as completed: [168](https://github.com/hackforla/website/issues/168#event-2813762759) at 2019-11-19 07:12 PM PST -ExperimentsInHonesty,2019-11-20T18:48:16Z,- ExperimentsInHonesty opened issue: [181](https://github.com/hackforla/website/issues/181) at 2019-11-20 10:48 AM PST -ExperimentsInHonesty,2019-11-20T19:45:41Z,- ExperimentsInHonesty assigned to issue: [183](https://github.com/hackforla/website/issues/183) at 2019-11-20 11:45 AM PST -ExperimentsInHonesty,2019-11-23T03:45:08Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-557763279) at 2019-11-22 07:45 PM PST -ExperimentsInHonesty,2019-11-23T04:00:11Z,- ExperimentsInHonesty opened issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -ExperimentsInHonesty,2019-11-24T03:11:23Z,- ExperimentsInHonesty commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-557853460) at 2019-11-23 07:11 PM PST -ExperimentsInHonesty,2019-11-25T23:18:47Z,- ExperimentsInHonesty assigned to issue: [186](https://github.com/hackforla/website/issues/186) at 2019-11-25 03:18 PM PST -ExperimentsInHonesty,2019-11-25T23:21:41Z,- ExperimentsInHonesty assigned to issue: [187](https://github.com/hackforla/website/issues/187) at 2019-11-25 03:21 PM PST -ExperimentsInHonesty,2019-11-25T23:48:45Z,- ExperimentsInHonesty assigned to issue: [188](https://github.com/hackforla/website/issues/188) at 2019-11-25 03:48 PM PST -ExperimentsInHonesty,2019-11-25T23:51:43Z,- ExperimentsInHonesty assigned to issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -ExperimentsInHonesty,2019-11-26T00:23:10Z,- ExperimentsInHonesty assigned to issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -ExperimentsInHonesty,2019-11-26T02:49:51Z,- ExperimentsInHonesty unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:49 PM PST -ExperimentsInHonesty,2019-11-26T02:50:06Z,- ExperimentsInHonesty assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -ExperimentsInHonesty,2019-11-26T02:50:11Z,- ExperimentsInHonesty unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -ExperimentsInHonesty,2019-11-26T02:50:35Z,- ExperimentsInHonesty assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -ExperimentsInHonesty,2019-11-26T04:13:39Z,- ExperimentsInHonesty assigned to issue: [195](https://github.com/hackforla/website/issues/195) at 2019-11-25 08:13 PM PST -ExperimentsInHonesty,2019-11-26T04:14:34Z,- ExperimentsInHonesty assigned to issue: [196](https://github.com/hackforla/website/issues/196) at 2019-11-25 08:14 PM PST -ExperimentsInHonesty,2019-11-26T04:15:25Z,- ExperimentsInHonesty assigned to issue: [197](https://github.com/hackforla/website/issues/197) at 2019-11-25 08:15 PM PST -ExperimentsInHonesty,2019-11-26T04:15:57Z,- ExperimentsInHonesty assigned to issue: [198](https://github.com/hackforla/website/issues/198) at 2019-11-25 08:15 PM PST -ExperimentsInHonesty,2019-11-26T04:16:34Z,- ExperimentsInHonesty assigned to issue: [199](https://github.com/hackforla/website/issues/199) at 2019-11-25 08:16 PM PST -ExperimentsInHonesty,2019-12-03T01:08:28Z,- ExperimentsInHonesty opened issue: [202](https://github.com/hackforla/website/issues/202) at 2019-12-02 05:08 PM PST -ExperimentsInHonesty,2019-12-03T03:09:32Z,- ExperimentsInHonesty assigned to issue: [203](https://github.com/hackforla/website/issues/203) at 2019-12-02 07:09 PM PST -ExperimentsInHonesty,2019-12-03T20:11:42Z,- ExperimentsInHonesty commented on issue: [202](https://github.com/hackforla/website/issues/202#issuecomment-561336627) at 2019-12-03 12:11 PM PST -ExperimentsInHonesty,2019-12-03T20:12:41Z,- ExperimentsInHonesty closed issue as completed: [207](https://github.com/hackforla/website/issues/207#event-2851487528) at 2019-12-03 12:12 PM PST -ExperimentsInHonesty,2019-12-04T21:39:33Z,- ExperimentsInHonesty closed issue as completed: [208](https://github.com/hackforla/website/issues/208#event-2855634215) at 2019-12-04 01:39 PM PST -ExperimentsInHonesty,2019-12-04T21:42:23Z,- ExperimentsInHonesty reopened issue: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:42 PM PST -ExperimentsInHonesty,2019-12-04T21:50:21Z,- ExperimentsInHonesty assigned to issue: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:50 PM PST -ExperimentsInHonesty,2019-12-04T21:50:28Z,- ExperimentsInHonesty commented on issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-561855115) at 2019-12-04 01:50 PM PST -ExperimentsInHonesty,2019-12-06T21:55:57Z,- ExperimentsInHonesty opened issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-06 01:55 PM PST -ExperimentsInHonesty,2019-12-10T04:43:47Z,- ExperimentsInHonesty assigned to issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-12-09 08:43 PM PST -ExperimentsInHonesty,2019-12-10T04:43:57Z,- ExperimentsInHonesty unassigned from issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-12-09 08:43 PM PST -ExperimentsInHonesty,2019-12-10T04:44:48Z,- ExperimentsInHonesty closed issue by PR 200: [163](https://github.com/hackforla/website/issues/163#event-2868773623) at 2019-12-09 08:44 PM PST -ExperimentsInHonesty,2019-12-10T23:48:00Z,- ExperimentsInHonesty assigned to issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-10 03:48 PM PST -ExperimentsInHonesty,2019-12-12T00:01:02Z,- ExperimentsInHonesty commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-564787660) at 2019-12-11 04:01 PM PST -ExperimentsInHonesty,2019-12-16T04:25:27Z,- ExperimentsInHonesty assigned to issue: [215](https://github.com/hackforla/website/issues/215) at 2019-12-15 08:25 PM PST -ExperimentsInHonesty,2019-12-16T05:31:32Z,- ExperimentsInHonesty assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:31 PM PST -ExperimentsInHonesty,2019-12-16T05:31:55Z,- ExperimentsInHonesty unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:31 PM PST -ExperimentsInHonesty,2019-12-16T05:33:22Z,- ExperimentsInHonesty assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:33 PM PST -ExperimentsInHonesty,2019-12-17T03:10:50Z,- ExperimentsInHonesty commented on issue: [215](https://github.com/hackforla/website/issues/215#issuecomment-566360324) at 2019-12-16 07:10 PM PST -ExperimentsInHonesty,2019-12-24T21:36:42Z,- ExperimentsInHonesty commented on issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804369) at 2019-12-24 01:36 PM PST -ExperimentsInHonesty,2019-12-24T21:36:56Z,- ExperimentsInHonesty unassigned from issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804369) at 2019-12-24 01:36 PM PST -ExperimentsInHonesty,2019-12-24T21:38:06Z,- ExperimentsInHonesty commented on issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804469) at 2019-12-24 01:38 PM PST -ExperimentsInHonesty,2019-12-24T23:11:47Z,- ExperimentsInHonesty opened issue: [226](https://github.com/hackforla/website/issues/226) at 2019-12-24 03:11 PM PST -ExperimentsInHonesty,2019-12-24T23:18:14Z,- ExperimentsInHonesty commented on issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-568810137) at 2019-12-24 03:18 PM PST -ExperimentsInHonesty,2019-12-24T23:19:32Z,- ExperimentsInHonesty commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-568810213) at 2019-12-24 03:19 PM PST -ExperimentsInHonesty,2019-12-24T23:31:51Z,- ExperimentsInHonesty opened issue: [227](https://github.com/hackforla/website/issues/227) at 2019-12-24 03:31 PM PST -ExperimentsInHonesty,2019-12-25T02:39:52Z,- ExperimentsInHonesty opened issue: [228](https://github.com/hackforla/website/issues/228) at 2019-12-24 06:39 PM PST -ExperimentsInHonesty,2019-12-25T02:40:01Z,- ExperimentsInHonesty assigned to issue: [228](https://github.com/hackforla/website/issues/228) at 2019-12-24 06:40 PM PST -ExperimentsInHonesty,2019-12-25T02:45:37Z,- ExperimentsInHonesty opened pull request: [229](https://github.com/hackforla/website/pull/229) at 2019-12-24 06:45 PM PST -ExperimentsInHonesty,2019-12-25T02:45:47Z,- ExperimentsInHonesty pull request merged: [229](https://github.com/hackforla/website/pull/229#event-2907480866) at 2019-12-24 06:45 PM PST -ExperimentsInHonesty,2019-12-25T02:49:51Z,- ExperimentsInHonesty opened pull request: [230](https://github.com/hackforla/website/pull/230) at 2019-12-24 06:49 PM PST -ExperimentsInHonesty,2019-12-25T02:50:03Z,- ExperimentsInHonesty pull request merged: [230](https://github.com/hackforla/website/pull/230#event-2907483668) at 2019-12-24 06:50 PM PST -ExperimentsInHonesty,2019-12-25T03:02:32Z,- ExperimentsInHonesty commented on pull request: [154](https://github.com/hackforla/website/pull/154#issuecomment-568827627) at 2019-12-24 07:02 PM PST -ExperimentsInHonesty,2019-12-25T03:05:11Z,- ExperimentsInHonesty assigned to issue: [217](https://github.com/hackforla/website/issues/217) at 2019-12-24 07:05 PM PST -ExperimentsInHonesty,2019-12-25T03:06:40Z,- ExperimentsInHonesty opened pull request: [231](https://github.com/hackforla/website/pull/231) at 2019-12-24 07:06 PM PST -ExperimentsInHonesty,2019-12-25T03:07:20Z,- ExperimentsInHonesty pull request merged: [231](https://github.com/hackforla/website/pull/231#event-2907496400) at 2019-12-24 07:07 PM PST -ExperimentsInHonesty,2019-12-25T03:09:38Z,- ExperimentsInHonesty closed issue as completed: [217](https://github.com/hackforla/website/issues/217#event-2907497863) at 2019-12-24 07:09 PM PST -ExperimentsInHonesty,2019-12-25T03:14:42Z,- ExperimentsInHonesty opened pull request: [232](https://github.com/hackforla/website/pull/232) at 2019-12-24 07:14 PM PST -ExperimentsInHonesty,2019-12-25T03:14:55Z,- ExperimentsInHonesty closed issue by PR 232: [205](https://github.com/hackforla/website/issues/205#event-2907501830) at 2019-12-24 07:14 PM PST -ExperimentsInHonesty,2019-12-25T03:14:55Z,- ExperimentsInHonesty pull request merged: [232](https://github.com/hackforla/website/pull/232#event-2907501831) at 2019-12-24 07:14 PM PST -ExperimentsInHonesty,2019-12-29T06:39:04Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569479486) at 2019-12-28 10:39 PM PST -ExperimentsInHonesty,2019-12-29T07:00:41Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569480697) at 2019-12-28 11:00 PM PST -ExperimentsInHonesty,2019-12-29T21:26:13Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569543393) at 2019-12-29 01:26 PM PST -ExperimentsInHonesty,2019-12-29T23:10:05Z,- ExperimentsInHonesty opened issue: [233](https://github.com/hackforla/website/issues/233) at 2019-12-29 03:10 PM PST -ExperimentsInHonesty,2019-12-30T23:37:23Z,- ExperimentsInHonesty closed issue as completed: [198](https://github.com/hackforla/website/issues/198#event-2914866298) at 2019-12-30 03:37 PM PST -ExperimentsInHonesty,2019-12-30T23:37:40Z,- ExperimentsInHonesty closed issue as completed: [197](https://github.com/hackforla/website/issues/197#event-2914866492) at 2019-12-30 03:37 PM PST -ExperimentsInHonesty,2019-12-30T23:37:47Z,- ExperimentsInHonesty closed issue as completed: [196](https://github.com/hackforla/website/issues/196#event-2914866578) at 2019-12-30 03:37 PM PST -ExperimentsInHonesty,2019-12-31T01:04:44Z,- ExperimentsInHonesty closed issue as completed: [195](https://github.com/hackforla/website/issues/195#event-2914934285) at 2019-12-30 05:04 PM PST -ExperimentsInHonesty,2019-12-31T01:05:18Z,- ExperimentsInHonesty closed issue as completed: [183](https://github.com/hackforla/website/issues/183#event-2914934841) at 2019-12-30 05:05 PM PST -ExperimentsInHonesty,2019-12-31T01:05:24Z,- ExperimentsInHonesty closed issue as completed: [187](https://github.com/hackforla/website/issues/187#event-2914934913) at 2019-12-30 05:05 PM PST -ExperimentsInHonesty,2019-12-31T01:07:01Z,- ExperimentsInHonesty closed issue as completed: [215](https://github.com/hackforla/website/issues/215#event-2914935939) at 2019-12-30 05:07 PM PST -ExperimentsInHonesty,2019-12-31T02:34:54Z,- ExperimentsInHonesty commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-569850701) at 2019-12-30 06:34 PM PST -ExperimentsInHonesty,2019-12-31T03:04:09Z,- ExperimentsInHonesty opened pull request: [234](https://github.com/hackforla/website/pull/234) at 2019-12-30 07:04 PM PST -ExperimentsInHonesty,2019-12-31T03:09:03Z,- ExperimentsInHonesty assigned to issue: [235](https://github.com/hackforla/website/issues/235) at 2019-12-30 07:09 PM PST -ExperimentsInHonesty,2019-12-31T03:14:52Z,- ExperimentsInHonesty assigned to issue: [236](https://github.com/hackforla/website/issues/236) at 2019-12-30 07:14 PM PST -ExperimentsInHonesty,2019-12-31T04:18:10Z,- ExperimentsInHonesty opened pull request: [238](https://github.com/hackforla/website/pull/238) at 2019-12-30 08:18 PM PST -ExperimentsInHonesty,2019-12-31T04:18:34Z,- ExperimentsInHonesty pull request merged: [238](https://github.com/hackforla/website/pull/238#event-2915068402) at 2019-12-30 08:18 PM PST -ExperimentsInHonesty,2019-12-31T18:14:01Z,- ExperimentsInHonesty assigned to issue: [239](https://github.com/hackforla/website/issues/239) at 2019-12-31 10:14 AM PST -ExperimentsInHonesty,2019-12-31T19:58:15Z,- ExperimentsInHonesty assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-31 11:58 AM PST -ExperimentsInHonesty,2020-01-02T19:04:50Z,- ExperimentsInHonesty commented on issue: [226](https://github.com/hackforla/website/issues/226#issuecomment-570308250) at 2020-01-02 11:04 AM PST -ExperimentsInHonesty,2020-01-05T23:08:34Z,- ExperimentsInHonesty commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-570957587) at 2020-01-05 03:08 PM PST -ExperimentsInHonesty,2020-01-07T02:22:30Z,- ExperimentsInHonesty assigned to issue: [246](https://github.com/hackforla/website/issues/246) at 2020-01-06 06:22 PM PST -ExperimentsInHonesty,2020-01-10T19:09:12Z,- ExperimentsInHonesty opened pull request: [258](https://github.com/hackforla/website/pull/258) at 2020-01-10 11:09 AM PST -ExperimentsInHonesty,2020-01-10T19:09:38Z,- ExperimentsInHonesty pull request merged: [258](https://github.com/hackforla/website/pull/258#event-2939565274) at 2020-01-10 11:09 AM PST -ExperimentsInHonesty,2020-01-12T00:38:41Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573368108) at 2020-01-11 04:38 PM PST -ExperimentsInHonesty,2020-01-12T17:56:02Z,- ExperimentsInHonesty assigned to issue: [259](https://github.com/hackforla/website/issues/259) at 2020-01-12 09:56 AM PST -ExperimentsInHonesty,2020-01-12T18:42:43Z,- ExperimentsInHonesty commented on issue: [224](https://github.com/hackforla/website/issues/224#issuecomment-573444660) at 2020-01-12 10:42 AM PST -ExperimentsInHonesty,2020-01-12T19:52:50Z,- ExperimentsInHonesty opened issue: [260](https://github.com/hackforla/website/issues/260) at 2020-01-12 11:52 AM PST -ExperimentsInHonesty,2020-01-12T19:57:47Z,- ExperimentsInHonesty commented on issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573451086) at 2020-01-12 11:57 AM PST -ExperimentsInHonesty,2020-01-12T19:58:40Z,- ExperimentsInHonesty assigned to issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573451086) at 2020-01-12 11:58 AM PST -ExperimentsInHonesty,2020-01-14T04:20:42Z,- ExperimentsInHonesty closed issue as completed: [259](https://github.com/hackforla/website/issues/259#event-2945624314) at 2020-01-13 08:20 PM PST -ExperimentsInHonesty,2020-01-19T18:28:25Z,- ExperimentsInHonesty commented on issue: [203](https://github.com/hackforla/website/issues/203#issuecomment-576032297) at 2020-01-19 10:28 AM PST -ExperimentsInHonesty,2020-01-19T18:28:25Z,- ExperimentsInHonesty closed issue as completed: [203](https://github.com/hackforla/website/issues/203#event-2961064022) at 2020-01-19 10:28 AM PST -ExperimentsInHonesty,2020-01-19T19:04:27Z,- ExperimentsInHonesty assigned to issue: [288](https://github.com/hackforla/website/issues/288) at 2020-01-19 11:04 AM PST -ExperimentsInHonesty,2020-01-19T19:22:15Z,- ExperimentsInHonesty pull request merged: [234](https://github.com/hackforla/website/pull/234#event-2961095344) at 2020-01-19 11:22 AM PST -ExperimentsInHonesty,2020-01-19T19:44:02Z,- ExperimentsInHonesty opened issue: [269](https://github.com/hackforla/website/issues/269) at 2020-01-19 11:44 AM PST -ExperimentsInHonesty,2020-01-19T19:46:40Z,- ExperimentsInHonesty commented on issue: [235](https://github.com/hackforla/website/issues/235#issuecomment-576039564) at 2020-01-19 11:46 AM PST -ExperimentsInHonesty,2020-01-19T19:46:41Z,- ExperimentsInHonesty closed issue as completed: [235](https://github.com/hackforla/website/issues/235#event-2961109025) at 2020-01-19 11:46 AM PST -ExperimentsInHonesty,2020-01-19T20:06:27Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-576041303) at 2020-01-19 12:06 PM PST -ExperimentsInHonesty,2020-01-20T03:29:51Z,- ExperimentsInHonesty assigned to issue: [271](https://github.com/hackforla/website/issues/271) at 2020-01-19 07:29 PM PST -ExperimentsInHonesty,2020-01-20T04:40:31Z,- ExperimentsInHonesty assigned to issue: [275](https://github.com/hackforla/website/issues/275) at 2020-01-19 08:40 PM PST -ExperimentsInHonesty,2020-01-20T04:42:56Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-576103684) at 2020-01-19 08:42 PM PST -ExperimentsInHonesty,2020-01-20T04:47:31Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-576104509) at 2020-01-19 08:47 PM PST -ExperimentsInHonesty,2020-01-20T05:03:56Z,- ExperimentsInHonesty assigned to issue: [276](https://github.com/hackforla/website/issues/276) at 2020-01-19 09:03 PM PST -ExperimentsInHonesty,2020-01-20T05:14:17Z,- ExperimentsInHonesty assigned to issue: [277](https://github.com/hackforla/website/issues/277) at 2020-01-19 09:14 PM PST -ExperimentsInHonesty,2020-01-21T03:44:20Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-576505748) at 2020-01-20 07:44 PM PST -ExperimentsInHonesty,2020-01-24T05:53:56Z,- ExperimentsInHonesty commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-01-23 09:53 PM PST -ExperimentsInHonesty,2020-01-26T18:19:27Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-578528499) at 2020-01-26 10:19 AM PST -ExperimentsInHonesty,2020-01-26T18:20:26Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-578528575) at 2020-01-26 10:20 AM PST -ExperimentsInHonesty,2020-01-26T18:21:35Z,- ExperimentsInHonesty commented on issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-578528662) at 2020-01-26 10:21 AM PST -ExperimentsInHonesty,2020-01-26T18:46:32Z,- ExperimentsInHonesty commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-578530739) at 2020-01-26 10:46 AM PST -ExperimentsInHonesty,2020-01-26T18:49:23Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578531013) at 2020-01-26 10:49 AM PST -ExperimentsInHonesty,2020-01-26T18:50:11Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-578531075) at 2020-01-26 10:50 AM PST -ExperimentsInHonesty,2020-01-26T19:02:35Z,- ExperimentsInHonesty assigned to issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-26 11:02 AM PST -ExperimentsInHonesty,2020-01-26T19:15:07Z,- ExperimentsInHonesty assigned to issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578531013) at 2020-01-26 11:15 AM PST -ExperimentsInHonesty,2020-01-26T19:17:54Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578533497) at 2020-01-26 11:17 AM PST -ExperimentsInHonesty,2020-01-26T19:23:14Z,- ExperimentsInHonesty commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-578534005) at 2020-01-26 11:23 AM PST -ExperimentsInHonesty,2020-01-26T19:32:56Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-578534853) at 2020-01-26 11:32 AM PST -ExperimentsInHonesty,2020-01-26T19:38:48Z,- ExperimentsInHonesty commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578535363) at 2020-01-26 11:38 AM PST -ExperimentsInHonesty,2020-01-26T19:43:41Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578535808) at 2020-01-26 11:43 AM PST -ExperimentsInHonesty,2020-01-26T19:45:24Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578535944) at 2020-01-26 11:45 AM PST -ExperimentsInHonesty,2020-01-26T19:46:56Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-578536096) at 2020-01-26 11:46 AM PST -ExperimentsInHonesty,2020-01-26T19:47:28Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578536135) at 2020-01-26 11:47 AM PST -ExperimentsInHonesty,2020-01-26T19:58:51Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578537160) at 2020-01-26 11:58 AM PST -ExperimentsInHonesty,2020-01-26T21:19:18Z,- ExperimentsInHonesty commented on issue: [247](https://github.com/hackforla/website/issues/247#issuecomment-578544329) at 2020-01-26 01:19 PM PST -ExperimentsInHonesty,2020-01-26T21:19:18Z,- ExperimentsInHonesty closed issue as completed: [247](https://github.com/hackforla/website/issues/247#event-2980179715) at 2020-01-26 01:19 PM PST -ExperimentsInHonesty,2020-01-26T21:24:43Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578544817) at 2020-01-26 01:24 PM PST -ExperimentsInHonesty,2020-01-26T21:27:51Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578545120) at 2020-01-26 01:27 PM PST -ExperimentsInHonesty,2020-01-26T21:34:44Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578545722) at 2020-01-26 01:34 PM PST -ExperimentsInHonesty,2020-01-26T21:36:14Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578545853) at 2020-01-26 01:36 PM PST -ExperimentsInHonesty,2020-01-26T21:39:59Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578546144) at 2020-01-26 01:39 PM PST -ExperimentsInHonesty,2020-01-26T21:41:20Z,- ExperimentsInHonesty unassigned from issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-571403621) at 2020-01-26 01:41 PM PST -ExperimentsInHonesty,2020-01-26T21:42:25Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-578546362) at 2020-01-26 01:42 PM PST -ExperimentsInHonesty,2020-01-26T21:44:14Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578546504) at 2020-01-26 01:44 PM PST -ExperimentsInHonesty,2020-01-26T22:13:47Z,- ExperimentsInHonesty commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578548815) at 2020-01-26 02:13 PM PST -ExperimentsInHonesty,2020-01-26T22:16:39Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578549048) at 2020-01-26 02:16 PM PST -ExperimentsInHonesty,2020-01-26T22:46:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578551283) at 2020-01-26 02:46 PM PST -ExperimentsInHonesty,2020-01-26T23:19:14Z,- ExperimentsInHonesty commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578553684) at 2020-01-26 03:19 PM PST -ExperimentsInHonesty,2020-01-27T22:43:35Z,- ExperimentsInHonesty assigned to issue: [286](https://github.com/hackforla/website/issues/286) at 2020-01-27 02:43 PM PST -ExperimentsInHonesty,2020-01-28T09:01:32Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-579145338) at 2020-01-28 01:01 AM PST -ExperimentsInHonesty,2020-01-28T09:04:35Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-579146385) at 2020-01-28 01:04 AM PST -ExperimentsInHonesty,2020-01-28T09:32:36Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579157204) at 2020-01-28 01:32 AM PST -ExperimentsInHonesty,2020-01-28T09:41:19Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579160403) at 2020-01-28 01:41 AM PST -ExperimentsInHonesty,2020-01-28T09:42:36Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579160924) at 2020-01-28 01:42 AM PST -ExperimentsInHonesty,2020-01-28T09:44:18Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579161625) at 2020-01-28 01:44 AM PST -ExperimentsInHonesty,2020-01-28T09:45:24Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579162045) at 2020-01-28 01:45 AM PST -ExperimentsInHonesty,2020-01-30T02:25:40Z,- ExperimentsInHonesty commented on pull request: [287](https://github.com/hackforla/website/pull/287#issuecomment-580055159) at 2020-01-29 06:25 PM PST -ExperimentsInHonesty,2020-01-30T05:07:52Z,- ExperimentsInHonesty commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-580085529) at 2020-01-29 09:07 PM PST -ExperimentsInHonesty,2020-01-30T21:53:57Z,- ExperimentsInHonesty closed issue as completed: [277](https://github.com/hackforla/website/issues/277#event-2995061656) at 2020-01-30 01:53 PM PST -ExperimentsInHonesty,2020-02-02T18:28:51Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-581163031) at 2020-02-02 10:28 AM PST -ExperimentsInHonesty,2020-02-02T18:48:08Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-581164629) at 2020-02-02 10:48 AM PST -ExperimentsInHonesty,2020-02-02T18:50:11Z,- ExperimentsInHonesty commented on pull request: [287](https://github.com/hackforla/website/pull/287#issuecomment-581164819) at 2020-02-02 10:50 AM PST -ExperimentsInHonesty,2020-02-02T19:00:16Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-581165634) at 2020-02-02 11:00 AM PST -ExperimentsInHonesty,2020-02-02T19:12:48Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-581166756) at 2020-02-02 11:12 AM PST -ExperimentsInHonesty,2020-02-04T04:52:37Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-581742064) at 2020-02-03 08:52 PM PST -ExperimentsInHonesty,2020-02-04T04:59:33Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-581743496) at 2020-02-03 08:59 PM PST -ExperimentsInHonesty,2020-02-05T18:08:22Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-582537723) at 2020-02-05 10:08 AM PST -ExperimentsInHonesty,2020-02-05T18:10:48Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-582538821) at 2020-02-05 10:10 AM PST -ExperimentsInHonesty,2020-02-05T18:28:01Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582546238) at 2020-02-05 10:28 AM PST -ExperimentsInHonesty,2020-02-05T18:36:33Z,- ExperimentsInHonesty opened pull request: [290](https://github.com/hackforla/website/pull/290) at 2020-02-05 10:36 AM PST -ExperimentsInHonesty,2020-02-05T18:36:43Z,- ExperimentsInHonesty pull request merged: [290](https://github.com/hackforla/website/pull/290#event-3011139295) at 2020-02-05 10:36 AM PST -ExperimentsInHonesty,2020-02-05T21:07:23Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582612863) at 2020-02-05 01:07 PM PST -ExperimentsInHonesty,2020-02-05T21:09:23Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582613623) at 2020-02-05 01:09 PM PST -ExperimentsInHonesty,2020-02-05T22:09:30Z,- ExperimentsInHonesty opened issue: [294](https://github.com/hackforla/website/issues/294) at 2020-02-05 02:09 PM PST -ExperimentsInHonesty,2020-02-05T22:36:17Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582646759) at 2020-02-05 02:36 PM PST -ExperimentsInHonesty,2020-02-05T23:31:24Z,- ExperimentsInHonesty opened issue: [297](https://github.com/hackforla/website/issues/297) at 2020-02-05 03:31 PM PST -ExperimentsInHonesty,2020-02-05T23:38:19Z,- ExperimentsInHonesty commented on pull request: [289](https://github.com/hackforla/website/pull/289#issuecomment-582665322) at 2020-02-05 03:38 PM PST -ExperimentsInHonesty,2020-02-05T23:40:46Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582666073) at 2020-02-05 03:40 PM PST -ExperimentsInHonesty,2020-02-06T00:14:24Z,- ExperimentsInHonesty opened pull request: [298](https://github.com/hackforla/website/pull/298) at 2020-02-05 04:14 PM PST -ExperimentsInHonesty,2020-02-06T00:14:32Z,- ExperimentsInHonesty pull request merged: [298](https://github.com/hackforla/website/pull/298#event-3012063007) at 2020-02-05 04:14 PM PST -ExperimentsInHonesty,2020-02-06T00:53:45Z,- ExperimentsInHonesty commented on issue: [294](https://github.com/hackforla/website/issues/294#issuecomment-582684551) at 2020-02-05 04:53 PM PST -ExperimentsInHonesty,2020-02-07T00:59:36Z,- ExperimentsInHonesty opened issue: [301](https://github.com/hackforla/website/issues/301) at 2020-02-06 04:59 PM PST -ExperimentsInHonesty,2020-02-08T06:23:00Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583707897) at 2020-02-07 10:23 PM PST -ExperimentsInHonesty,2020-02-08T07:11:29Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583710908) at 2020-02-07 11:11 PM PST -ExperimentsInHonesty,2020-02-08T07:12:11Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583710961) at 2020-02-07 11:12 PM PST -ExperimentsInHonesty,2020-02-09T01:27:32Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583794314) at 2020-02-08 05:27 PM PST -ExperimentsInHonesty,2020-02-09T01:35:11Z,- ExperimentsInHonesty opened pull request: [300](https://github.com/hackforla/website/pull/300) at 2020-02-08 05:35 PM PST -ExperimentsInHonesty,2020-02-09T01:44:01Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583795148) at 2020-02-08 05:44 PM PST -ExperimentsInHonesty,2020-02-09T18:15:48Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-583875891) at 2020-02-09 10:15 AM PST -ExperimentsInHonesty,2020-02-09T18:18:35Z,- ExperimentsInHonesty commented on issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-583876151) at 2020-02-09 10:18 AM PST -ExperimentsInHonesty,2020-02-09T18:23:12Z,- ExperimentsInHonesty commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-583876595) at 2020-02-09 10:23 AM PST -ExperimentsInHonesty,2020-02-09T18:26:30Z,- ExperimentsInHonesty commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-583876930) at 2020-02-09 10:26 AM PST -ExperimentsInHonesty,2020-02-09T18:28:52Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583877158) at 2020-02-09 10:28 AM PST -ExperimentsInHonesty,2020-02-09T18:30:11Z,- ExperimentsInHonesty closed issue as completed: [281](https://github.com/hackforla/website/issues/281#event-3020781344) at 2020-02-09 10:30 AM PST -ExperimentsInHonesty,2020-02-09T18:37:44Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-583878102) at 2020-02-09 10:37 AM PST -ExperimentsInHonesty,2020-02-09T18:41:18Z,- ExperimentsInHonesty commented on issue: [292](https://github.com/hackforla/website/issues/292#issuecomment-583878506) at 2020-02-09 10:41 AM PST -ExperimentsInHonesty,2020-02-09T18:56:06Z,- ExperimentsInHonesty commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-583880039) at 2020-02-09 10:56 AM PST -ExperimentsInHonesty,2020-02-09T19:12:54Z,- ExperimentsInHonesty commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-583881654) at 2020-02-09 11:12 AM PST -ExperimentsInHonesty,2020-02-09T19:16:50Z,- ExperimentsInHonesty commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-583882083) at 2020-02-09 11:16 AM PST -ExperimentsInHonesty,2020-02-09T19:20:47Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583882528) at 2020-02-09 11:20 AM PST -ExperimentsInHonesty,2020-02-09T19:21:07Z,- ExperimentsInHonesty unassigned from issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583882528) at 2020-02-09 11:21 AM PST -ExperimentsInHonesty,2020-02-09T20:09:56Z,- ExperimentsInHonesty assigned to issue: [304](https://github.com/hackforla/website/issues/304) at 2020-02-09 12:09 PM PST -ExperimentsInHonesty,2020-02-10T00:27:19Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-583913430) at 2020-02-09 04:27 PM PST -ExperimentsInHonesty,2020-02-10T04:26:04Z,- ExperimentsInHonesty pull request merged: [300](https://github.com/hackforla/website/pull/300#event-3021277474) at 2020-02-09 08:26 PM PST -ExperimentsInHonesty,2020-02-10T23:48:47Z,- ExperimentsInHonesty opened pull request: [305](https://github.com/hackforla/website/pull/305) at 2020-02-10 03:48 PM PST -ExperimentsInHonesty,2020-02-11T03:49:25Z,- ExperimentsInHonesty pull request merged: [305](https://github.com/hackforla/website/pull/305#event-3025149900) at 2020-02-10 07:49 PM PST -ExperimentsInHonesty,2020-02-11T19:19:20Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584805202) at 2020-02-11 11:19 AM PST -ExperimentsInHonesty,2020-02-11T19:27:01Z,- ExperimentsInHonesty opened pull request: [309](https://github.com/hackforla/website/pull/309) at 2020-02-11 11:27 AM PST -ExperimentsInHonesty,2020-02-11T19:56:09Z,- ExperimentsInHonesty pull request merged: [309](https://github.com/hackforla/website/pull/309#event-3028001127) at 2020-02-11 11:56 AM PST -ExperimentsInHonesty,2020-02-14T22:44:27Z,- ExperimentsInHonesty commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-586507614) at 2020-02-14 02:44 PM PST -ExperimentsInHonesty,2020-02-16T18:27:19Z,- ExperimentsInHonesty commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-586737065) at 2020-02-16 10:27 AM PST -ExperimentsInHonesty,2020-02-16T18:38:06Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-586738161) at 2020-02-16 10:38 AM PST -ExperimentsInHonesty,2020-02-16T18:41:02Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-586738546) at 2020-02-16 10:41 AM PST -ExperimentsInHonesty,2020-02-16T19:37:18Z,- ExperimentsInHonesty commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586744103) at 2020-02-16 11:37 AM PST -ExperimentsInHonesty,2020-02-16T19:43:50Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586744726) at 2020-02-16 11:43 AM PST -ExperimentsInHonesty,2020-02-16T19:50:30Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586745326) at 2020-02-16 11:50 AM PST -ExperimentsInHonesty,2020-02-16T19:52:09Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-586745472) at 2020-02-16 11:52 AM PST -ExperimentsInHonesty,2020-02-16T19:56:02Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-586745834) at 2020-02-16 11:56 AM PST -ExperimentsInHonesty,2020-02-16T19:56:32Z,- ExperimentsInHonesty closed issue as completed: [253](https://github.com/hackforla/website/issues/253#event-3041799926) at 2020-02-16 11:56 AM PST -ExperimentsInHonesty,2020-02-16T19:56:49Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586745928) at 2020-02-16 11:56 AM PST -ExperimentsInHonesty,2020-02-16T19:57:37Z,- ExperimentsInHonesty unassigned from issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578864077) at 2020-02-16 11:57 AM PST -ExperimentsInHonesty,2020-02-16T19:59:07Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586746164) at 2020-02-16 11:59 AM PST -ExperimentsInHonesty,2020-02-16T20:01:02Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586746344) at 2020-02-16 12:01 PM PST -ExperimentsInHonesty,2020-02-16T20:04:55Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586746704) at 2020-02-16 12:04 PM PST -ExperimentsInHonesty,2020-02-16T20:08:31Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586747055) at 2020-02-16 12:08 PM PST -ExperimentsInHonesty,2020-02-16T20:10:09Z,- ExperimentsInHonesty opened issue: [312](https://github.com/hackforla/website/issues/312) at 2020-02-16 12:10 PM PST -ExperimentsInHonesty,2020-02-16T20:10:28Z,- ExperimentsInHonesty assigned to issue: [312](https://github.com/hackforla/website/issues/312) at 2020-02-16 12:10 PM PST -ExperimentsInHonesty,2020-02-16T20:10:58Z,- ExperimentsInHonesty commented on issue: [312](https://github.com/hackforla/website/issues/312#issuecomment-586747295) at 2020-02-16 12:10 PM PST -ExperimentsInHonesty,2020-02-16T20:11:44Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586747399) at 2020-02-16 12:11 PM PST -ExperimentsInHonesty,2020-02-16T21:36:34Z,- ExperimentsInHonesty commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-586756931) at 2020-02-16 01:36 PM PST -ExperimentsInHonesty,2020-02-16T21:37:55Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586757054) at 2020-02-16 01:37 PM PST -ExperimentsInHonesty,2020-02-16T22:04:15Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-586759486) at 2020-02-16 02:04 PM PST -ExperimentsInHonesty,2020-02-19T02:23:58Z,- ExperimentsInHonesty assigned to issue: [318](https://github.com/hackforla/website/issues/318) at 2020-02-18 06:23 PM PST -ExperimentsInHonesty,2020-02-19T23:43:32Z,- ExperimentsInHonesty opened pull request: [321](https://github.com/hackforla/website/pull/321) at 2020-02-19 03:43 PM PST -ExperimentsInHonesty,2020-02-19T23:46:25Z,- ExperimentsInHonesty opened pull request: [322](https://github.com/hackforla/website/pull/322) at 2020-02-19 03:46 PM PST -ExperimentsInHonesty,2020-02-19T23:46:38Z,- ExperimentsInHonesty pull request merged: [322](https://github.com/hackforla/website/pull/322#event-3053842243) at 2020-02-19 03:46 PM PST -ExperimentsInHonesty,2020-02-19T23:46:57Z,- ExperimentsInHonesty pull request merged: [321](https://github.com/hackforla/website/pull/321#event-3053842842) at 2020-02-19 03:46 PM PST -ExperimentsInHonesty,2020-02-22T18:26:42Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-589984582) at 2020-02-22 10:26 AM PST -ExperimentsInHonesty,2020-02-22T18:27:20Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-589984629) at 2020-02-22 10:27 AM PST -ExperimentsInHonesty,2020-02-25T04:37:56Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-590679408) at 2020-02-24 08:37 PM PST -ExperimentsInHonesty,2020-02-29T18:24:12Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-592976988) at 2020-02-29 10:24 AM PST -ExperimentsInHonesty,2020-02-29T20:00:34Z,- ExperimentsInHonesty opened pull request: [328](https://github.com/hackforla/website/pull/328) at 2020-02-29 12:00 PM PST -ExperimentsInHonesty,2020-02-29T20:00:49Z,- ExperimentsInHonesty pull request merged: [328](https://github.com/hackforla/website/pull/328#event-3085018079) at 2020-02-29 12:00 PM PST -ExperimentsInHonesty,2020-03-01T18:11:32Z,- ExperimentsInHonesty commented on issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-593126813) at 2020-03-01 10:11 AM PST -ExperimentsInHonesty,2020-03-01T18:18:22Z,- ExperimentsInHonesty commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-593127536) at 2020-03-01 10:18 AM PST -ExperimentsInHonesty,2020-03-01T18:49:55Z,- ExperimentsInHonesty commented on issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-593130859) at 2020-03-01 10:49 AM PST -ExperimentsInHonesty,2020-03-01T19:39:45Z,- ExperimentsInHonesty commented on issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-593136419) at 2020-03-01 11:39 AM PST -ExperimentsInHonesty,2020-03-01T19:50:34Z,- ExperimentsInHonesty commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-593137507) at 2020-03-01 11:50 AM PST -ExperimentsInHonesty,2020-03-01T19:51:12Z,- ExperimentsInHonesty assigned to issue: [333](https://github.com/hackforla/website/issues/333) at 2020-03-01 11:51 AM PST -ExperimentsInHonesty,2020-03-02T03:47:51Z,- ExperimentsInHonesty commented on issue: [286](https://github.com/hackforla/website/issues/286#issuecomment-593205716) at 2020-03-01 07:47 PM PST -ExperimentsInHonesty,2020-03-02T04:02:44Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-593208326) at 2020-03-01 08:02 PM PST -ExperimentsInHonesty,2020-03-02T04:05:00Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-593208645) at 2020-03-01 08:05 PM PST -ExperimentsInHonesty,2020-03-02T04:06:13Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593208885) at 2020-03-01 08:06 PM PST -ExperimentsInHonesty,2020-03-02T05:14:10Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-593223005) at 2020-03-01 09:14 PM PST -ExperimentsInHonesty,2020-03-02T05:55:55Z,- ExperimentsInHonesty closed issue as completed: [276](https://github.com/hackforla/website/issues/276#event-3086515277) at 2020-03-01 09:55 PM PST -ExperimentsInHonesty,2020-03-02T06:07:47Z,- ExperimentsInHonesty assigned to issue: [329](https://github.com/hackforla/website/issues/329) at 2020-03-01 10:07 PM PST -ExperimentsInHonesty,2020-03-02T06:27:19Z,- ExperimentsInHonesty closed issue as completed: [189](https://github.com/hackforla/website/issues/189#event-3086574521) at 2020-03-01 10:27 PM PST -ExperimentsInHonesty,2020-03-03T06:43:00Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593794191) at 2020-03-02 10:43 PM PST -ExperimentsInHonesty,2020-03-03T07:26:24Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593806771) at 2020-03-02 11:26 PM PST -ExperimentsInHonesty,2020-03-04T01:10:24Z,- ExperimentsInHonesty opened pull request: [344](https://github.com/hackforla/website/pull/344) at 2020-03-03 05:10 PM PST -ExperimentsInHonesty,2020-03-04T01:10:31Z,- ExperimentsInHonesty pull request merged: [344](https://github.com/hackforla/website/pull/344#event-3094508633) at 2020-03-03 05:10 PM PST -ExperimentsInHonesty,2020-03-04T04:54:34Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-594326477) at 2020-03-03 08:54 PM PST -ExperimentsInHonesty,2020-03-06T01:19:58Z,- ExperimentsInHonesty opened issue: [351](https://github.com/hackforla/website/issues/351) at 2020-03-05 05:19 PM PST -ExperimentsInHonesty,2020-03-06T01:31:42Z,- ExperimentsInHonesty opened issue: [352](https://github.com/hackforla/website/issues/352) at 2020-03-05 05:31 PM PST -ExperimentsInHonesty,2020-03-06T01:35:09Z,- ExperimentsInHonesty commented on issue: [352](https://github.com/hackforla/website/issues/352#issuecomment-595552564) at 2020-03-05 05:35 PM PST -ExperimentsInHonesty,2020-03-06T21:34:54Z,- ExperimentsInHonesty closed issue as completed: [304](https://github.com/hackforla/website/issues/304#event-3106950809) at 2020-03-06 01:34 PM PST -ExperimentsInHonesty,2020-03-08T17:49:01Z,- ExperimentsInHonesty closed issue by PR 353: [352](https://github.com/hackforla/website/issues/352#event-3108584244) at 2020-03-08 10:49 AM PDT -ExperimentsInHonesty,2020-03-08T20:44:56Z,- ExperimentsInHonesty commented on issue: [285](https://github.com/hackforla/website/issues/285#issuecomment-596250532) at 2020-03-08 01:44 PM PDT -ExperimentsInHonesty,2020-03-08T20:44:57Z,- ExperimentsInHonesty closed issue as completed: [285](https://github.com/hackforla/website/issues/285#event-3108696252) at 2020-03-08 01:44 PM PDT -ExperimentsInHonesty,2020-03-08T23:51:18Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596267700) at 2020-03-08 04:51 PM PDT -ExperimentsInHonesty,2020-03-08T23:55:06Z,- ExperimentsInHonesty commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-596268006) at 2020-03-08 04:55 PM PDT -ExperimentsInHonesty,2020-03-09T00:13:21Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596270182) at 2020-03-08 05:13 PM PDT -ExperimentsInHonesty,2020-03-09T02:45:14Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596306807) at 2020-03-08 07:45 PM PDT -ExperimentsInHonesty,2020-03-09T05:41:28Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596341030) at 2020-03-08 10:41 PM PDT -ExperimentsInHonesty,2020-03-09T05:47:16Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596342254) at 2020-03-08 10:47 PM PDT -ExperimentsInHonesty,2020-03-09T05:55:41Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596344341) at 2020-03-08 10:55 PM PDT -ExperimentsInHonesty,2020-03-09T06:01:09Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596345695) at 2020-03-08 11:01 PM PDT -ExperimentsInHonesty,2020-03-09T06:05:46Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596346746) at 2020-03-08 11:05 PM PDT -ExperimentsInHonesty,2020-03-09T06:10:58Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596347977) at 2020-03-08 11:10 PM PDT -ExperimentsInHonesty,2020-03-09T06:15:36Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596349134) at 2020-03-08 11:15 PM PDT -ExperimentsInHonesty,2020-03-09T06:18:54Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596349944) at 2020-03-08 11:18 PM PDT -ExperimentsInHonesty,2020-03-09T17:06:55Z,- ExperimentsInHonesty closed issue by PR 355: [318](https://github.com/hackforla/website/issues/318#event-3111576152) at 2020-03-09 10:06 AM PDT -ExperimentsInHonesty,2020-03-09T19:59:37Z,- ExperimentsInHonesty assigned to issue: [356](https://github.com/hackforla/website/issues/356) at 2020-03-09 12:59 PM PDT -ExperimentsInHonesty,2020-03-10T22:02:07Z,- ExperimentsInHonesty opened pull request: [358](https://github.com/hackforla/website/pull/358) at 2020-03-10 03:02 PM PDT -ExperimentsInHonesty,2020-03-10T22:02:21Z,- ExperimentsInHonesty pull request merged: [358](https://github.com/hackforla/website/pull/358#event-3116610456) at 2020-03-10 03:02 PM PDT -ExperimentsInHonesty,2020-03-10T22:04:13Z,- ExperimentsInHonesty opened pull request: [359](https://github.com/hackforla/website/pull/359) at 2020-03-10 03:04 PM PDT -ExperimentsInHonesty,2020-03-10T22:04:28Z,- ExperimentsInHonesty pull request merged: [359](https://github.com/hackforla/website/pull/359#event-3116615320) at 2020-03-10 03:04 PM PDT -ExperimentsInHonesty,2020-03-12T02:30:12Z,- ExperimentsInHonesty commented on issue: [333](https://github.com/hackforla/website/issues/333#issuecomment-597975207) at 2020-03-11 07:30 PM PDT -ExperimentsInHonesty,2020-03-12T02:30:12Z,- ExperimentsInHonesty closed issue as completed: [333](https://github.com/hackforla/website/issues/333#event-3121183682) at 2020-03-11 07:30 PM PDT -ExperimentsInHonesty,2020-03-12T03:31:13Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-597988796) at 2020-03-11 08:31 PM PDT -ExperimentsInHonesty,2020-03-12T03:32:40Z,- ExperimentsInHonesty assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-597988796) at 2020-03-11 08:32 PM PDT -ExperimentsInHonesty,2020-03-12T03:43:58Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-597991342) at 2020-03-11 08:43 PM PDT -ExperimentsInHonesty,2020-03-12T19:05:46Z,- ExperimentsInHonesty commented on pull request: [362](https://github.com/hackforla/website/pull/362#issuecomment-598366038) at 2020-03-12 12:05 PM PDT -ExperimentsInHonesty,2020-03-12T19:06:44Z,- ExperimentsInHonesty commented on pull request: [325](https://github.com/hackforla/website/pull/325#issuecomment-598366408) at 2020-03-12 12:06 PM PDT -ExperimentsInHonesty,2020-03-12T19:11:10Z,- ExperimentsInHonesty commented on issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-598368112) at 2020-03-12 12:11 PM PDT -ExperimentsInHonesty,2020-03-12T19:13:28Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598368976) at 2020-03-12 12:13 PM PDT -ExperimentsInHonesty,2020-03-12T19:17:21Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-598370441) at 2020-03-12 12:17 PM PDT -ExperimentsInHonesty,2020-03-12T19:17:27Z,- ExperimentsInHonesty reopened issue: [252](https://github.com/hackforla/website/issues/252#event-3124183711) at 2020-03-12 12:17 PM PDT -ExperimentsInHonesty,2020-03-12T19:39:21Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-598378644) at 2020-03-12 12:39 PM PDT -ExperimentsInHonesty,2020-03-12T19:45:58Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598381138) at 2020-03-12 12:45 PM PDT -ExperimentsInHonesty,2020-03-12T19:45:58Z,- ExperimentsInHonesty reopened issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598381138) at 2020-03-12 12:45 PM PDT -ExperimentsInHonesty,2020-03-14T19:23:00Z,- ExperimentsInHonesty opened issue: [408](https://github.com/hackforla/website/issues/408) at 2020-03-14 12:23 PM PDT -ExperimentsInHonesty,2020-03-14T20:22:22Z,- ExperimentsInHonesty commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-599130677) at 2020-03-14 01:22 PM PDT -ExperimentsInHonesty,2020-03-15T17:15:46Z,- ExperimentsInHonesty assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-596299752) at 2020-03-15 10:15 AM PDT -ExperimentsInHonesty,2020-03-15T17:19:05Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-599238922) at 2020-03-15 10:19 AM PDT -ExperimentsInHonesty,2020-03-15T18:02:40Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-599243882) at 2020-03-15 11:02 AM PDT -ExperimentsInHonesty,2020-03-15T18:11:02Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-599244794) at 2020-03-15 11:11 AM PDT -ExperimentsInHonesty,2020-03-15T18:14:28Z,- ExperimentsInHonesty assigned to issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -ExperimentsInHonesty,2020-03-15T18:17:43Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-599245595) at 2020-03-15 11:17 AM PDT -ExperimentsInHonesty,2020-03-15T18:40:47Z,- ExperimentsInHonesty commented on pull request: [214](https://github.com/hackforla/website/pull/214#issuecomment-599248196) at 2020-03-15 11:40 AM PDT -ExperimentsInHonesty,2020-03-15T18:41:47Z,- ExperimentsInHonesty commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-599248298) at 2020-03-15 11:41 AM PDT -ExperimentsInHonesty,2020-03-16T07:20:50Z,- ExperimentsInHonesty opened pull request: [372](https://github.com/hackforla/website/pull/372) at 2020-03-16 12:20 AM PDT -ExperimentsInHonesty,2020-03-16T07:21:01Z,- ExperimentsInHonesty pull request merged: [372](https://github.com/hackforla/website/pull/372#event-3131879065) at 2020-03-16 12:21 AM PDT -ExperimentsInHonesty,2020-03-17T01:00:46Z,- ExperimentsInHonesty opened issue: [375](https://github.com/hackforla/website/issues/375) at 2020-03-16 06:00 PM PDT -ExperimentsInHonesty,2020-03-17T01:21:35Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599829924) at 2020-03-16 06:21 PM PDT -ExperimentsInHonesty,2020-03-17T01:55:36Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599837666) at 2020-03-16 06:55 PM PDT -ExperimentsInHonesty,2020-03-19T01:20:16Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600937092) at 2020-03-18 06:20 PM PDT -ExperimentsInHonesty,2020-03-19T04:07:18Z,- ExperimentsInHonesty opened pull request: [381](https://github.com/hackforla/website/pull/381) at 2020-03-18 09:07 PM PDT -ExperimentsInHonesty,2020-03-19T04:08:18Z,- ExperimentsInHonesty pull request merged: [381](https://github.com/hackforla/website/pull/381#event-3143989709) at 2020-03-18 09:08 PM PDT -ExperimentsInHonesty,2020-03-22T18:23:42Z,- ExperimentsInHonesty commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-602250965) at 2020-03-22 11:23 AM PDT -ExperimentsInHonesty,2020-03-26T20:22:18Z,- ExperimentsInHonesty opened issue: [393](https://github.com/hackforla/website/issues/393) at 2020-03-26 01:22 PM PDT -ExperimentsInHonesty,2020-03-29T17:34:40Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-605671736) at 2020-03-29 10:34 AM PDT -ExperimentsInHonesty,2020-03-29T18:02:50Z,- ExperimentsInHonesty assigned to issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-29 11:02 AM PDT -ExperimentsInHonesty,2020-03-29T18:08:38Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-605676550) at 2020-03-29 11:08 AM PDT -ExperimentsInHonesty,2020-03-29T23:40:29Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605719909) at 2020-03-29 04:40 PM PDT -ExperimentsInHonesty,2020-03-29T23:42:43Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-605720161) at 2020-03-29 04:42 PM PDT -ExperimentsInHonesty,2020-03-29T23:47:20Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-605720708) at 2020-03-29 04:47 PM PDT -ExperimentsInHonesty,2020-03-29T23:49:09Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605720902) at 2020-03-29 04:49 PM PDT -ExperimentsInHonesty,2020-03-29T23:52:36Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-605721300) at 2020-03-29 04:52 PM PDT -ExperimentsInHonesty,2020-03-29T23:53:16Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605721374) at 2020-03-29 04:53 PM PDT -ExperimentsInHonesty,2020-03-29T23:58:13Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-605721997) at 2020-03-29 04:58 PM PDT -ExperimentsInHonesty,2020-03-29T23:59:13Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605722120) at 2020-03-29 04:59 PM PDT -ExperimentsInHonesty,2020-03-30T00:01:22Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-605722441) at 2020-03-29 05:01 PM PDT -ExperimentsInHonesty,2020-03-30T00:01:59Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605722546) at 2020-03-29 05:01 PM PDT -ExperimentsInHonesty,2020-03-30T00:53:59Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-605730441) at 2020-03-29 05:53 PM PDT -ExperimentsInHonesty,2020-03-30T00:57:03Z,- ExperimentsInHonesty commented on issue: [395](https://github.com/hackforla/website/issues/395#issuecomment-605730878) at 2020-03-29 05:57 PM PDT -ExperimentsInHonesty,2020-03-30T02:32:41Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-605750310) at 2020-03-29 07:32 PM PDT -ExperimentsInHonesty,2020-03-30T02:36:35Z,- ExperimentsInHonesty unassigned from issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-605720161) at 2020-03-29 07:36 PM PDT -ExperimentsInHonesty,2020-03-30T03:21:17Z,- ExperimentsInHonesty unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605705523) at 2020-03-29 08:21 PM PDT -ExperimentsInHonesty,2020-03-30T03:28:20Z,- ExperimentsInHonesty unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-605720708) at 2020-03-29 08:28 PM PDT -ExperimentsInHonesty,2020-03-30T03:47:54Z,- ExperimentsInHonesty opened issue: [402](https://github.com/hackforla/website/issues/402) at 2020-03-29 08:47 PM PDT -ExperimentsInHonesty,2020-03-30T04:19:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605773487) at 2020-03-29 09:19 PM PDT -ExperimentsInHonesty,2020-03-30T04:39:52Z,- ExperimentsInHonesty opened issue: [403](https://github.com/hackforla/website/issues/403) at 2020-03-29 09:39 PM PDT -ExperimentsInHonesty,2020-03-30T05:00:03Z,- ExperimentsInHonesty commented on issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-605782876) at 2020-03-29 10:00 PM PDT -ExperimentsInHonesty,2020-03-31T03:04:42Z,- ExperimentsInHonesty closed issue as completed: [361](https://github.com/hackforla/website/issues/361#event-3181324757) at 2020-03-30 08:04 PM PDT -ExperimentsInHonesty,2020-04-05T03:24:26Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609225761) at 2020-04-04 08:24 PM PDT -ExperimentsInHonesty,2020-04-05T17:26:11Z,- ExperimentsInHonesty unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -ExperimentsInHonesty,2020-04-05T17:32:52Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-609453037) at 2020-04-05 10:32 AM PDT -ExperimentsInHonesty,2020-04-05T18:15:58Z,- ExperimentsInHonesty commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-609459229) at 2020-04-05 11:15 AM PDT -ExperimentsInHonesty,2020-04-05T18:28:57Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609460920) at 2020-04-05 11:28 AM PDT -ExperimentsInHonesty,2020-04-05T18:47:52Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-609463483) at 2020-04-05 11:47 AM PDT -ExperimentsInHonesty,2020-04-05T18:49:42Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-609463745) at 2020-04-05 11:49 AM PDT -ExperimentsInHonesty,2020-04-05T18:50:54Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609463924) at 2020-04-05 11:50 AM PDT -ExperimentsInHonesty,2020-04-05T18:54:20Z,- ExperimentsInHonesty commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-609464428) at 2020-04-05 11:54 AM PDT -ExperimentsInHonesty,2020-04-05T18:55:27Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609464602) at 2020-04-05 11:55 AM PDT -ExperimentsInHonesty,2020-04-05T18:59:21Z,- ExperimentsInHonesty assigned to issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-05 11:59 AM PDT -ExperimentsInHonesty,2020-04-05T18:59:40Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609465192) at 2020-04-05 11:59 AM PDT -ExperimentsInHonesty,2020-04-05T19:02:52Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609465617) at 2020-04-05 12:02 PM PDT -ExperimentsInHonesty,2020-04-05T23:33:19Z,- ExperimentsInHonesty assigned to issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-05 04:33 PM PDT -ExperimentsInHonesty,2020-04-07T21:53:38Z,- ExperimentsInHonesty commented on issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610639330) at 2020-04-07 02:53 PM PDT -ExperimentsInHonesty,2020-04-12T17:36:21Z,- ExperimentsInHonesty commented on pull request: [410](https://github.com/hackforla/website/pull/410#issuecomment-612650490) at 2020-04-12 10:36 AM PDT -ExperimentsInHonesty,2020-04-12T17:56:20Z,- ExperimentsInHonesty unassigned from issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-12 10:56 AM PDT -ExperimentsInHonesty,2020-04-12T19:26:21Z,- ExperimentsInHonesty commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-612664296) at 2020-04-12 12:26 PM PDT -ExperimentsInHonesty,2020-04-12T19:48:27Z,- ExperimentsInHonesty opened issue: [430](https://github.com/hackforla/website/issues/430) at 2020-04-12 12:48 PM PDT -ExperimentsInHonesty,2020-04-12T20:16:36Z,- ExperimentsInHonesty commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612670223) at 2020-04-12 01:16 PM PDT -ExperimentsInHonesty,2020-04-12T20:27:43Z,- ExperimentsInHonesty opened issue: [431](https://github.com/hackforla/website/issues/431) at 2020-04-12 01:27 PM PDT -ExperimentsInHonesty,2020-04-12T20:50:19Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612674079) at 2020-04-12 01:50 PM PDT -ExperimentsInHonesty,2020-04-12T20:53:55Z,- ExperimentsInHonesty commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-612674462) at 2020-04-12 01:53 PM PDT -ExperimentsInHonesty,2020-04-12T21:18:43Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-612677326) at 2020-04-12 02:18 PM PDT -ExperimentsInHonesty,2020-04-12T22:16:11Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-612684281) at 2020-04-12 03:16 PM PDT -ExperimentsInHonesty,2020-04-13T02:29:28Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-612720893) at 2020-04-12 07:29 PM PDT -ExperimentsInHonesty,2020-04-13T02:32:38Z,- ExperimentsInHonesty opened issue: [435](https://github.com/hackforla/website/issues/435) at 2020-04-12 07:32 PM PDT -ExperimentsInHonesty,2020-04-13T02:38:35Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-612722781) at 2020-04-12 07:38 PM PDT -ExperimentsInHonesty,2020-04-13T02:39:55Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-612723067) at 2020-04-12 07:39 PM PDT -ExperimentsInHonesty,2020-04-13T02:50:56Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-612725156) at 2020-04-12 07:50 PM PDT -ExperimentsInHonesty,2020-04-13T03:30:08Z,- ExperimentsInHonesty commented on issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-612733309) at 2020-04-12 08:30 PM PDT -ExperimentsInHonesty,2020-04-13T16:10:15Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-612966329) at 2020-04-13 09:10 AM PDT -ExperimentsInHonesty,2020-04-18T19:39:44Z,- ExperimentsInHonesty assigned to issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-612684281) at 2020-04-18 12:39 PM PDT -ExperimentsInHonesty,2020-04-18T20:33:12Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-615942745) at 2020-04-18 01:33 PM PDT -ExperimentsInHonesty,2020-04-18T20:34:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-615943015) at 2020-04-18 01:34 PM PDT -ExperimentsInHonesty,2020-04-19T16:26:17Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-616175550) at 2020-04-19 09:26 AM PDT -ExperimentsInHonesty,2020-04-19T16:26:26Z,- ExperimentsInHonesty assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-616175550) at 2020-04-19 09:26 AM PDT -ExperimentsInHonesty,2020-04-19T16:29:32Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-616176317) at 2020-04-19 09:29 AM PDT -ExperimentsInHonesty,2020-04-19T16:35:55Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616177640) at 2020-04-19 09:35 AM PDT -ExperimentsInHonesty,2020-04-19T16:37:18Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616177963) at 2020-04-19 09:37 AM PDT -ExperimentsInHonesty,2020-04-19T16:46:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616180002) at 2020-04-19 09:46 AM PDT -ExperimentsInHonesty,2020-04-19T16:48:14Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616180373) at 2020-04-19 09:48 AM PDT -ExperimentsInHonesty,2020-04-19T16:50:11Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616180763) at 2020-04-19 09:50 AM PDT -ExperimentsInHonesty,2020-04-19T17:04:39Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-616183787) at 2020-04-19 10:04 AM PDT -ExperimentsInHonesty,2020-04-19T17:17:01Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-616187021) at 2020-04-19 10:17 AM PDT -ExperimentsInHonesty,2020-04-19T17:59:05Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-616196251) at 2020-04-19 10:59 AM PDT -ExperimentsInHonesty,2020-04-19T18:01:00Z,- ExperimentsInHonesty commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-616196585) at 2020-04-19 11:01 AM PDT -ExperimentsInHonesty,2020-04-19T18:11:34Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-616198618) at 2020-04-19 11:11 AM PDT -ExperimentsInHonesty,2020-04-19T18:32:47Z,- ExperimentsInHonesty opened issue: [444](https://github.com/hackforla/website/issues/444) at 2020-04-19 11:32 AM PDT -ExperimentsInHonesty,2020-04-19T18:35:33Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616203597) at 2020-04-19 11:35 AM PDT -ExperimentsInHonesty,2020-04-19T18:38:47Z,- ExperimentsInHonesty opened issue: [445](https://github.com/hackforla/website/issues/445) at 2020-04-19 11:38 AM PDT -ExperimentsInHonesty,2020-04-19T18:41:08Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616204819) at 2020-04-19 11:41 AM PDT -ExperimentsInHonesty,2020-04-19T18:48:02Z,- ExperimentsInHonesty opened issue: [446](https://github.com/hackforla/website/issues/446) at 2020-04-19 11:48 AM PDT -ExperimentsInHonesty,2020-04-19T22:44:20Z,- ExperimentsInHonesty opened pull request: [451](https://github.com/hackforla/website/pull/451) at 2020-04-19 03:44 PM PDT -ExperimentsInHonesty,2020-04-19T22:45:25Z,- ExperimentsInHonesty pull request merged: [451](https://github.com/hackforla/website/pull/451#event-3249567867) at 2020-04-19 03:45 PM PDT -ExperimentsInHonesty,2020-04-19T23:32:14Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616243829) at 2020-04-19 04:32 PM PDT -ExperimentsInHonesty,2020-04-20T03:30:15Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616288864) at 2020-04-19 08:30 PM PDT -ExperimentsInHonesty,2020-04-20T19:20:21Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616757000) at 2020-04-20 12:20 PM PDT -ExperimentsInHonesty,2020-04-20T19:20:21Z,- ExperimentsInHonesty reopened issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616757000) at 2020-04-20 12:20 PM PDT -ExperimentsInHonesty,2020-04-20T19:39:44Z,- ExperimentsInHonesty opened pull request: [454](https://github.com/hackforla/website/pull/454) at 2020-04-20 12:39 PM PDT -ExperimentsInHonesty,2020-04-20T19:49:32Z,- ExperimentsInHonesty opened pull request: [455](https://github.com/hackforla/website/pull/455) at 2020-04-20 12:49 PM PDT -ExperimentsInHonesty,2020-04-20T20:55:40Z,- ExperimentsInHonesty pull request merged: [454](https://github.com/hackforla/website/pull/454#event-3253546794) at 2020-04-20 01:55 PM PDT -ExperimentsInHonesty,2020-04-20T21:25:42Z,- ExperimentsInHonesty opened pull request: [456](https://github.com/hackforla/website/pull/456) at 2020-04-20 02:25 PM PDT -ExperimentsInHonesty,2020-04-20T21:26:01Z,- ExperimentsInHonesty pull request merged: [456](https://github.com/hackforla/website/pull/456#event-3253642293) at 2020-04-20 02:26 PM PDT -ExperimentsInHonesty,2020-04-20T21:30:37Z,- ExperimentsInHonesty opened pull request: [457](https://github.com/hackforla/website/pull/457) at 2020-04-20 02:30 PM PDT -ExperimentsInHonesty,2020-04-20T21:30:53Z,- ExperimentsInHonesty pull request merged: [457](https://github.com/hackforla/website/pull/457#event-3253656484) at 2020-04-20 02:30 PM PDT -ExperimentsInHonesty,2020-04-20T23:56:47Z,- ExperimentsInHonesty opened issue: [458](https://github.com/hackforla/website/issues/458) at 2020-04-20 04:56 PM PDT -ExperimentsInHonesty,2020-04-20T23:57:31Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616871129) at 2020-04-20 04:57 PM PDT -ExperimentsInHonesty,2020-04-21T17:44:52Z,- ExperimentsInHonesty opened issue: [459](https://github.com/hackforla/website/issues/459) at 2020-04-21 10:44 AM PDT -ExperimentsInHonesty,2020-04-21T17:59:31Z,- ExperimentsInHonesty opened issue: [460](https://github.com/hackforla/website/issues/460) at 2020-04-21 10:59 AM PDT -ExperimentsInHonesty,2020-04-21T18:04:05Z,- ExperimentsInHonesty commented on pull request: [455](https://github.com/hackforla/website/pull/455#issuecomment-617323525) at 2020-04-21 11:04 AM PDT -ExperimentsInHonesty,2020-04-21T18:04:21Z,- ExperimentsInHonesty pull request merged: [455](https://github.com/hackforla/website/pull/455#event-3257277019) at 2020-04-21 11:04 AM PDT -ExperimentsInHonesty,2020-04-22T02:26:37Z,- ExperimentsInHonesty opened pull request: [461](https://github.com/hackforla/website/pull/461) at 2020-04-21 07:26 PM PDT -ExperimentsInHonesty,2020-04-22T02:28:30Z,- ExperimentsInHonesty pull request merged: [461](https://github.com/hackforla/website/pull/461#event-3258569911) at 2020-04-21 07:28 PM PDT -ExperimentsInHonesty,2020-04-23T23:02:17Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-618714584) at 2020-04-23 04:02 PM PDT -ExperimentsInHonesty,2020-04-24T18:33:16Z,- ExperimentsInHonesty opened issue: [463](https://github.com/hackforla/website/issues/463) at 2020-04-24 11:33 AM PDT -ExperimentsInHonesty,2020-04-24T21:24:02Z,- ExperimentsInHonesty submitted pull request review: [464](https://github.com/hackforla/website/pull/464#pullrequestreview-400279509) at 2020-04-24 02:24 PM PDT -ExperimentsInHonesty,2020-04-26T15:39:07Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-619571706) at 2020-04-26 08:39 AM PDT -ExperimentsInHonesty,2020-04-26T15:45:00Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-619572580) at 2020-04-26 08:45 AM PDT -ExperimentsInHonesty,2020-04-26T16:03:16Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-619575488) at 2020-04-26 09:03 AM PDT -ExperimentsInHonesty,2020-04-26T16:20:10Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619578711) at 2020-04-26 09:20 AM PDT -ExperimentsInHonesty,2020-04-26T16:28:00Z,- ExperimentsInHonesty opened issue: [466](https://github.com/hackforla/website/issues/466) at 2020-04-26 09:28 AM PDT -ExperimentsInHonesty,2020-04-26T16:29:49Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-619580473) at 2020-04-26 09:29 AM PDT -ExperimentsInHonesty,2020-04-26T17:02:51Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-619585940) at 2020-04-26 10:02 AM PDT -ExperimentsInHonesty,2020-04-26T17:59:59Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619595759) at 2020-04-26 10:59 AM PDT -ExperimentsInHonesty,2020-05-01T01:58:12Z,- ExperimentsInHonesty assigned to issue: [478](https://github.com/hackforla/website/issues/478) at 2020-04-30 06:58 PM PDT -ExperimentsInHonesty,2020-05-01T15:40:06Z,- ExperimentsInHonesty closed issue as completed: [478](https://github.com/hackforla/website/issues/478#event-3293556112) at 2020-05-01 08:40 AM PDT -ExperimentsInHonesty,2020-05-01T19:24:59Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-622527534) at 2020-05-01 12:24 PM PDT -ExperimentsInHonesty,2020-05-03T16:19:48Z,- ExperimentsInHonesty commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-623134640) at 2020-05-03 09:19 AM PDT -ExperimentsInHonesty,2020-05-03T16:23:00Z,- ExperimentsInHonesty commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-623135202) at 2020-05-03 09:23 AM PDT -ExperimentsInHonesty,2020-05-03T16:35:56Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-623138472) at 2020-05-03 09:35 AM PDT -ExperimentsInHonesty,2020-05-03T16:39:12Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-623139372) at 2020-05-03 09:39 AM PDT -ExperimentsInHonesty,2020-05-03T16:40:38Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-623139773) at 2020-05-03 09:40 AM PDT -ExperimentsInHonesty,2020-05-03T16:48:44Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-623142043) at 2020-05-03 09:48 AM PDT -ExperimentsInHonesty,2020-05-03T16:59:42Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623144088) at 2020-05-03 09:59 AM PDT -ExperimentsInHonesty,2020-05-03T17:42:32Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:42 AM PDT -ExperimentsInHonesty,2020-05-03T17:43:20Z,- ExperimentsInHonesty assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:43 AM PDT -ExperimentsInHonesty,2020-05-03T17:47:11Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623151315) at 2020-05-03 10:47 AM PDT -ExperimentsInHonesty,2020-05-03T18:02:59Z,- ExperimentsInHonesty commented on issue: [477](https://github.com/hackforla/website/issues/477#issuecomment-623153799) at 2020-05-03 11:02 AM PDT -ExperimentsInHonesty,2020-05-03T18:39:55Z,- ExperimentsInHonesty assigned to issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-03 11:39 AM PDT -ExperimentsInHonesty,2020-05-03T18:57:10Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623162463) at 2020-05-03 11:57 AM PDT -ExperimentsInHonesty,2020-05-03T19:56:27Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623171324) at 2020-05-03 12:56 PM PDT -ExperimentsInHonesty,2020-05-03T22:08:49Z,- ExperimentsInHonesty opened pull request: [489](https://github.com/hackforla/website/pull/489) at 2020-05-03 03:08 PM PDT -ExperimentsInHonesty,2020-05-03T22:09:02Z,- ExperimentsInHonesty pull request merged: [489](https://github.com/hackforla/website/pull/489#event-3297889513) at 2020-05-03 03:09 PM PDT -ExperimentsInHonesty,2020-05-03T22:12:18Z,- ExperimentsInHonesty opened pull request: [490](https://github.com/hackforla/website/pull/490) at 2020-05-03 03:12 PM PDT -ExperimentsInHonesty,2020-05-03T22:12:29Z,- ExperimentsInHonesty pull request merged: [490](https://github.com/hackforla/website/pull/490#event-3297892034) at 2020-05-03 03:12 PM PDT -ExperimentsInHonesty,2020-05-04T00:01:31Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623205697) at 2020-05-03 05:01 PM PDT -ExperimentsInHonesty,2020-05-04T00:27:57Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623209767) at 2020-05-03 05:27 PM PDT -ExperimentsInHonesty,2020-05-05T05:55:18Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-623869169) at 2020-05-04 10:55 PM PDT -ExperimentsInHonesty,2020-05-05T21:10:43Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-624308205) at 2020-05-05 02:10 PM PDT -ExperimentsInHonesty,2020-05-05T21:30:55Z,- ExperimentsInHonesty commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-624317259) at 2020-05-05 02:30 PM PDT -ExperimentsInHonesty,2020-05-05T21:31:58Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-624317757) at 2020-05-05 02:31 PM PDT -ExperimentsInHonesty,2020-05-05T21:34:43Z,- ExperimentsInHonesty unassigned from issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-05 02:34 PM PDT -ExperimentsInHonesty,2020-05-05T21:41:22Z,- ExperimentsInHonesty commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-624321808) at 2020-05-05 02:41 PM PDT -ExperimentsInHonesty,2020-05-05T21:43:11Z,- ExperimentsInHonesty commented on issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-624322591) at 2020-05-05 02:43 PM PDT -ExperimentsInHonesty,2020-05-05T21:52:19Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-624326242) at 2020-05-05 02:52 PM PDT -ExperimentsInHonesty,2020-05-05T21:53:30Z,- ExperimentsInHonesty closed issue as completed: [351](https://github.com/hackforla/website/issues/351#event-3306158034) at 2020-05-05 02:53 PM PDT -ExperimentsInHonesty,2020-05-06T03:32:35Z,- ExperimentsInHonesty submitted pull request review: [498](https://github.com/hackforla/website/pull/498#pullrequestreview-406284727) at 2020-05-05 08:32 PM PDT -ExperimentsInHonesty,2020-05-06T23:29:43Z,- ExperimentsInHonesty commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-624943640) at 2020-05-06 04:29 PM PDT -ExperimentsInHonesty,2020-05-10T16:29:20Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-626353607) at 2020-05-10 09:29 AM PDT -ExperimentsInHonesty,2020-05-10T16:33:18Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-626354165) at 2020-05-10 09:33 AM PDT -ExperimentsInHonesty,2020-05-10T16:35:53Z,- ExperimentsInHonesty commented on issue: [469](https://github.com/hackforla/website/issues/469#issuecomment-626354547) at 2020-05-10 09:35 AM PDT -ExperimentsInHonesty,2020-05-10T16:46:08Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-626356017) at 2020-05-10 09:46 AM PDT -ExperimentsInHonesty,2020-05-10T16:59:22Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-626357767) at 2020-05-10 09:59 AM PDT -ExperimentsInHonesty,2020-05-10T17:07:41Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-626358930) at 2020-05-10 10:07 AM PDT -ExperimentsInHonesty,2020-05-10T17:12:18Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-626359512) at 2020-05-10 10:12 AM PDT -ExperimentsInHonesty,2020-05-10T17:16:50Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-626360065) at 2020-05-10 10:16 AM PDT -ExperimentsInHonesty,2020-05-10T17:29:30Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-626361698) at 2020-05-10 10:29 AM PDT -ExperimentsInHonesty,2020-05-12T20:14:52Z,- ExperimentsInHonesty closed issue by PR 508: [404](https://github.com/hackforla/website/issues/404#event-3329154471) at 2020-05-12 01:14 PM PDT -ExperimentsInHonesty,2020-05-12T20:32:03Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-627577426) at 2020-05-12 01:32 PM PDT -ExperimentsInHonesty,2020-05-12T20:37:35Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-627580295) at 2020-05-12 01:37 PM PDT -ExperimentsInHonesty,2020-05-12T20:52:16Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-627587371) at 2020-05-12 01:52 PM PDT -ExperimentsInHonesty,2020-05-13T04:27:57Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627737796) at 2020-05-12 09:27 PM PDT -ExperimentsInHonesty,2020-05-15T22:10:46Z,- ExperimentsInHonesty commented on issue: [520](https://github.com/hackforla/website/issues/520#issuecomment-629523244) at 2020-05-15 03:10 PM PDT -ExperimentsInHonesty,2020-05-17T16:45:19Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-629826724) at 2020-05-17 09:45 AM PDT -ExperimentsInHonesty,2020-05-17T16:49:48Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-629827304) at 2020-05-17 09:49 AM PDT -ExperimentsInHonesty,2020-05-17T17:00:09Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-629828662) at 2020-05-17 10:00 AM PDT -ExperimentsInHonesty,2020-05-17T17:15:47Z,- ExperimentsInHonesty commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-629830836) at 2020-05-17 10:15 AM PDT -ExperimentsInHonesty,2020-05-17T17:28:32Z,- ExperimentsInHonesty commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-629832603) at 2020-05-17 10:28 AM PDT -ExperimentsInHonesty,2020-05-17T17:37:06Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-629833759) at 2020-05-17 10:37 AM PDT -ExperimentsInHonesty,2020-05-17T17:48:39Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-629835310) at 2020-05-17 10:48 AM PDT -ExperimentsInHonesty,2020-05-17T17:53:42Z,- ExperimentsInHonesty commented on pull request: [513](https://github.com/hackforla/website/pull/513#issuecomment-629836014) at 2020-05-17 10:53 AM PDT -ExperimentsInHonesty,2020-05-17T17:54:03Z,- ExperimentsInHonesty closed issue as completed: [507](https://github.com/hackforla/website/issues/507#event-3344783472) at 2020-05-17 10:54 AM PDT -ExperimentsInHonesty,2020-05-17T17:54:44Z,- ExperimentsInHonesty commented on issue: [507](https://github.com/hackforla/website/issues/507#issuecomment-629836139) at 2020-05-17 10:54 AM PDT -ExperimentsInHonesty,2020-05-17T17:58:35Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629836660) at 2020-05-17 10:58 AM PDT -ExperimentsInHonesty,2020-05-17T18:19:37Z,- ExperimentsInHonesty assigned to issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619662073) at 2020-05-17 11:19 AM PDT -ExperimentsInHonesty,2020-05-17T18:20:17Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-629839429) at 2020-05-17 11:20 AM PDT -ExperimentsInHonesty,2020-05-17T18:23:56Z,- ExperimentsInHonesty commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-629839960) at 2020-05-17 11:23 AM PDT -ExperimentsInHonesty,2020-05-17T18:41:51Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-629842291) at 2020-05-17 11:41 AM PDT -ExperimentsInHonesty,2020-05-17T19:09:44Z,- ExperimentsInHonesty commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-629845649) at 2020-05-17 12:09 PM PDT -ExperimentsInHonesty,2020-05-17T19:43:36Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629850056) at 2020-05-17 12:43 PM PDT -ExperimentsInHonesty,2020-05-24T16:08:13Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633253337) at 2020-05-24 09:08 AM PDT -ExperimentsInHonesty,2020-05-24T16:09:49Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-633253499) at 2020-05-24 09:09 AM PDT -ExperimentsInHonesty,2020-05-24T16:12:40Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-633253931) at 2020-05-24 09:12 AM PDT -ExperimentsInHonesty,2020-05-24T16:26:18Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-633255772) at 2020-05-24 09:26 AM PDT -ExperimentsInHonesty,2020-05-24T16:26:21Z,- ExperimentsInHonesty reopened issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-633255772) at 2020-05-24 09:26 AM PDT -ExperimentsInHonesty,2020-05-24T16:47:44Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-633258700) at 2020-05-24 09:47 AM PDT -ExperimentsInHonesty,2020-05-24T16:54:27Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-633259590) at 2020-05-24 09:54 AM PDT -ExperimentsInHonesty,2020-05-24T16:56:33Z,- ExperimentsInHonesty commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-24 09:56 AM PDT -ExperimentsInHonesty,2020-05-24T16:58:32Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-633260121) at 2020-05-24 09:58 AM PDT -ExperimentsInHonesty,2020-05-24T17:19:59Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633262873) at 2020-05-24 10:19 AM PDT -ExperimentsInHonesty,2020-05-24T17:26:36Z,- ExperimentsInHonesty commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-633263685) at 2020-05-24 10:26 AM PDT -ExperimentsInHonesty,2020-05-24T17:36:48Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-633264947) at 2020-05-24 10:36 AM PDT -ExperimentsInHonesty,2020-05-24T17:39:36Z,- ExperimentsInHonesty commented on issue: [510](https://github.com/hackforla/website/issues/510#issuecomment-633265275) at 2020-05-24 10:39 AM PDT -ExperimentsInHonesty,2020-05-24T17:42:07Z,- ExperimentsInHonesty commented on issue: [532](https://github.com/hackforla/website/issues/532#issuecomment-633265578) at 2020-05-24 10:42 AM PDT -ExperimentsInHonesty,2020-05-24T17:50:18Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-633266581) at 2020-05-24 10:50 AM PDT -ExperimentsInHonesty,2020-05-24T17:55:34Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-633267290) at 2020-05-24 10:55 AM PDT -ExperimentsInHonesty,2020-05-24T18:03:42Z,- ExperimentsInHonesty commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-633268554) at 2020-05-24 11:03 AM PDT -ExperimentsInHonesty,2020-05-24T18:35:06Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-633273914) at 2020-05-24 11:35 AM PDT -ExperimentsInHonesty,2020-05-24T19:30:29Z,- ExperimentsInHonesty commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:30 PM PDT -ExperimentsInHonesty,2020-05-24T19:33:06Z,- ExperimentsInHonesty commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283588) at 2020-05-24 12:33 PM PDT -ExperimentsInHonesty,2020-05-24T19:34:32Z,- ExperimentsInHonesty commented on issue: [273](https://github.com/hackforla/website/issues/273#issuecomment-633283842) at 2020-05-24 12:34 PM PDT -ExperimentsInHonesty,2020-05-24T20:05:23Z,- ExperimentsInHonesty commented on issue: [436](https://github.com/hackforla/website/issues/436#issuecomment-633289489) at 2020-05-24 01:05 PM PDT -ExperimentsInHonesty,2020-05-24T20:24:34Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-633293006) at 2020-05-24 01:24 PM PDT -ExperimentsInHonesty,2020-05-24T20:29:15Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-633293832) at 2020-05-24 01:29 PM PDT -ExperimentsInHonesty,2020-05-24T20:32:38Z,- ExperimentsInHonesty unassigned from issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-624322591) at 2020-05-24 01:32 PM PDT -ExperimentsInHonesty,2020-05-24T20:39:27Z,- ExperimentsInHonesty unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2020-05-24 01:39 PM PDT -ExperimentsInHonesty,2020-05-24T20:42:42Z,- ExperimentsInHonesty commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633296069) at 2020-05-24 01:42 PM PDT -ExperimentsInHonesty,2020-05-24T20:54:43Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-633298029) at 2020-05-24 01:54 PM PDT -ExperimentsInHonesty,2020-05-24T21:00:09Z,- ExperimentsInHonesty opened issue: [538](https://github.com/hackforla/website/issues/538) at 2020-05-24 02:00 PM PDT -ExperimentsInHonesty,2020-05-24T21:00:10Z,- ExperimentsInHonesty assigned to issue: [538](https://github.com/hackforla/website/issues/538) at 2020-05-24 02:00 PM PDT -ExperimentsInHonesty,2020-05-29T21:10:26Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636193710) at 2020-05-29 02:10 PM PDT -ExperimentsInHonesty,2020-05-31T16:47:42Z,- ExperimentsInHonesty commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636496646) at 2020-05-31 09:47 AM PDT -ExperimentsInHonesty,2020-05-31T17:11:29Z,- ExperimentsInHonesty commented on issue: [535](https://github.com/hackforla/website/issues/535#issuecomment-636499809) at 2020-05-31 10:11 AM PDT -ExperimentsInHonesty,2020-05-31T17:31:09Z,- ExperimentsInHonesty commented on issue: [533](https://github.com/hackforla/website/issues/533#issuecomment-636502418) at 2020-05-31 10:31 AM PDT -ExperimentsInHonesty,2020-05-31T17:31:44Z,- ExperimentsInHonesty commented on pull request: [544](https://github.com/hackforla/website/pull/544#issuecomment-636502487) at 2020-05-31 10:31 AM PDT -ExperimentsInHonesty,2020-05-31T17:32:42Z,- ExperimentsInHonesty closed issue by PR 549: [535](https://github.com/hackforla/website/issues/535#event-3390815155) at 2020-05-31 10:32 AM PDT -ExperimentsInHonesty,2020-05-31T18:16:42Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-636507722) at 2020-05-31 11:16 AM PDT -ExperimentsInHonesty,2020-05-31T18:23:17Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-636508622) at 2020-05-31 11:23 AM PDT -ExperimentsInHonesty,2020-05-31T18:40:14Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-636510959) at 2020-05-31 11:40 AM PDT -ExperimentsInHonesty,2020-05-31T19:21:36Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-636516102) at 2020-05-31 12:21 PM PDT -ExperimentsInHonesty,2020-05-31T20:47:16Z,- ExperimentsInHonesty opened issue: [553](https://github.com/hackforla/website/issues/553) at 2020-05-31 01:47 PM PDT -ExperimentsInHonesty,2020-05-31T20:58:15Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-636528966) at 2020-05-31 01:58 PM PDT -ExperimentsInHonesty,2020-06-01T00:21:46Z,- ExperimentsInHonesty commented on issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636554300) at 2020-05-31 05:21 PM PDT -ExperimentsInHonesty,2020-06-01T00:28:14Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-636555514) at 2020-05-31 05:28 PM PDT -ExperimentsInHonesty,2020-06-01T00:53:43Z,- ExperimentsInHonesty commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-636559681) at 2020-05-31 05:53 PM PDT -ExperimentsInHonesty,2020-06-01T01:14:55Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636564351) at 2020-05-31 06:14 PM PDT -ExperimentsInHonesty,2020-06-01T01:16:52Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636564831) at 2020-05-31 06:16 PM PDT -ExperimentsInHonesty,2020-06-01T01:29:23Z,- ExperimentsInHonesty commented on issue: [210](https://github.com/hackforla/website/issues/210#issuecomment-636567891) at 2020-05-31 06:29 PM PDT -ExperimentsInHonesty,2020-06-01T01:49:07Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-636571681) at 2020-05-31 06:49 PM PDT -ExperimentsInHonesty,2020-06-01T02:13:55Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-636576691) at 2020-05-31 07:13 PM PDT -ExperimentsInHonesty,2020-06-01T02:26:06Z,- ExperimentsInHonesty commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-636579295) at 2020-05-31 07:26 PM PDT -ExperimentsInHonesty,2020-06-01T02:32:25Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:32 PM PDT -ExperimentsInHonesty,2020-06-01T02:38:02Z,- ExperimentsInHonesty unassigned from issue: [102](https://github.com/hackforla/website/issues/102) at 2020-05-31 07:38 PM PDT -ExperimentsInHonesty,2020-06-01T02:38:11Z,- ExperimentsInHonesty commented on issue: [102](https://github.com/hackforla/website/issues/102#issuecomment-636581988) at 2020-05-31 07:38 PM PDT -ExperimentsInHonesty,2020-06-01T02:38:11Z,- ExperimentsInHonesty closed issue as completed: [102](https://github.com/hackforla/website/issues/102#event-3391306997) at 2020-05-31 07:38 PM PDT -ExperimentsInHonesty,2020-06-01T02:40:07Z,- ExperimentsInHonesty unassigned from issue: [116](https://github.com/hackforla/website/issues/116) at 2020-05-31 07:40 PM PDT -ExperimentsInHonesty,2020-06-01T02:47:21Z,- ExperimentsInHonesty unassigned from issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2020-05-31 07:47 PM PDT -ExperimentsInHonesty,2020-06-01T02:49:16Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-636584674) at 2020-05-31 07:49 PM PDT -ExperimentsInHonesty,2020-06-01T02:53:27Z,- ExperimentsInHonesty commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-636585768) at 2020-05-31 07:53 PM PDT -ExperimentsInHonesty,2020-06-01T02:59:47Z,- ExperimentsInHonesty commented on issue: [216](https://github.com/hackforla/website/issues/216#issuecomment-636587212) at 2020-05-31 07:59 PM PDT -ExperimentsInHonesty,2020-06-01T02:59:47Z,- ExperimentsInHonesty closed issue as completed: [216](https://github.com/hackforla/website/issues/216#event-3391343463) at 2020-05-31 07:59 PM PDT -ExperimentsInHonesty,2020-06-01T03:04:02Z,- ExperimentsInHonesty commented on issue: [469](https://github.com/hackforla/website/issues/469#issuecomment-636588205) at 2020-05-31 08:04 PM PDT -ExperimentsInHonesty,2020-06-01T03:05:31Z,- ExperimentsInHonesty commented on issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-636588497) at 2020-05-31 08:05 PM PDT -ExperimentsInHonesty,2020-06-01T03:07:22Z,- ExperimentsInHonesty unassigned from issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-624317757) at 2020-05-31 08:07 PM PDT -ExperimentsInHonesty,2020-06-01T03:07:29Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-636588901) at 2020-05-31 08:07 PM PDT -ExperimentsInHonesty,2020-06-01T03:15:08Z,- ExperimentsInHonesty commented on issue: [492](https://github.com/hackforla/website/issues/492#issuecomment-636590339) at 2020-05-31 08:15 PM PDT -ExperimentsInHonesty,2020-06-01T03:15:08Z,- ExperimentsInHonesty closed issue as completed: [492](https://github.com/hackforla/website/issues/492#event-3391369271) at 2020-05-31 08:15 PM PDT -ExperimentsInHonesty,2020-06-01T03:17:10Z,- ExperimentsInHonesty unassigned from issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2020-05-31 08:17 PM PDT -ExperimentsInHonesty,2020-06-01T03:17:54Z,- ExperimentsInHonesty commented on issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-636590955) at 2020-05-31 08:17 PM PDT -ExperimentsInHonesty,2020-06-01T03:19:03Z,- ExperimentsInHonesty commented on issue: [119](https://github.com/hackforla/website/issues/119#issuecomment-636591216) at 2020-05-31 08:19 PM PDT -ExperimentsInHonesty,2020-06-01T03:19:03Z,- ExperimentsInHonesty closed issue as completed: [119](https://github.com/hackforla/website/issues/119#event-3391376624) at 2020-05-31 08:19 PM PDT -ExperimentsInHonesty,2020-06-01T15:59:25Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636940727) at 2020-06-01 08:59 AM PDT -ExperimentsInHonesty,2020-06-01T16:06:45Z,- ExperimentsInHonesty opened issue: [556](https://github.com/hackforla/website/issues/556) at 2020-06-01 09:06 AM PDT -ExperimentsInHonesty,2020-06-01T17:13:33Z,- ExperimentsInHonesty commented on issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-636994125) at 2020-06-01 10:13 AM PDT -ExperimentsInHonesty,2020-06-03T03:14:27Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-637927104) at 2020-06-02 08:14 PM PDT -ExperimentsInHonesty,2020-06-03T05:44:49Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-637968020) at 2020-06-02 10:44 PM PDT -ExperimentsInHonesty,2020-06-03T20:42:53Z,- ExperimentsInHonesty submitted pull request review: [557](https://github.com/hackforla/website/pull/557#pullrequestreview-423914259) at 2020-06-03 01:42 PM PDT -ExperimentsInHonesty,2020-06-03T20:43:13Z,- ExperimentsInHonesty closed issue by PR 557: [551](https://github.com/hackforla/website/issues/551#event-3403980559) at 2020-06-03 01:43 PM PDT -ExperimentsInHonesty,2020-06-03T21:04:39Z,- ExperimentsInHonesty commented on issue: [551](https://github.com/hackforla/website/issues/551#issuecomment-638460742) at 2020-06-03 02:04 PM PDT -ExperimentsInHonesty,2020-06-03T21:25:40Z,- ExperimentsInHonesty opened issue: [558](https://github.com/hackforla/website/issues/558) at 2020-06-03 02:25 PM PDT -ExperimentsInHonesty,2020-06-03T21:31:23Z,- ExperimentsInHonesty opened issue: [559](https://github.com/hackforla/website/issues/559) at 2020-06-03 02:31 PM PDT -ExperimentsInHonesty,2020-06-07T16:11:46Z,- ExperimentsInHonesty commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-640241905) at 2020-06-07 09:11 AM PDT -ExperimentsInHonesty,2020-06-07T16:20:59Z,- ExperimentsInHonesty submitted pull request review: [565](https://github.com/hackforla/website/pull/565#pullrequestreview-425833744) at 2020-06-07 09:20 AM PDT -ExperimentsInHonesty,2020-06-07T16:21:10Z,- ExperimentsInHonesty closed issue by PR 565: [503](https://github.com/hackforla/website/issues/503#event-3416774223) at 2020-06-07 09:21 AM PDT -ExperimentsInHonesty,2020-06-07T16:25:46Z,- ExperimentsInHonesty commented on pull request: [564](https://github.com/hackforla/website/pull/564#issuecomment-640243787) at 2020-06-07 09:25 AM PDT -ExperimentsInHonesty,2020-06-07T16:32:06Z,- ExperimentsInHonesty commented on pull request: [554](https://github.com/hackforla/website/pull/554#issuecomment-640244650) at 2020-06-07 09:32 AM PDT -ExperimentsInHonesty,2020-06-07T17:00:22Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-640248482) at 2020-06-07 10:00 AM PDT -ExperimentsInHonesty,2020-06-07T17:54:31Z,- ExperimentsInHonesty commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-07 10:54 AM PDT -ExperimentsInHonesty,2020-06-07T18:04:54Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-640256843) at 2020-06-07 11:04 AM PDT -ExperimentsInHonesty,2020-06-07T18:14:11Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-640257991) at 2020-06-07 11:14 AM PDT -ExperimentsInHonesty,2020-06-08T02:03:07Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 07:03 PM PDT -ExperimentsInHonesty,2020-06-08T02:37:00Z,- ExperimentsInHonesty closed issue as completed: [356](https://github.com/hackforla/website/issues/356#event-3417741696) at 2020-06-07 07:37 PM PDT -ExperimentsInHonesty,2020-06-08T02:38:30Z,- ExperimentsInHonesty closed issue as completed: [329](https://github.com/hackforla/website/issues/329#event-3417744981) at 2020-06-07 07:38 PM PDT -ExperimentsInHonesty,2020-06-08T02:39:59Z,- ExperimentsInHonesty closed issue as completed: [271](https://github.com/hackforla/website/issues/271#event-3417748249) at 2020-06-07 07:39 PM PDT -ExperimentsInHonesty,2020-06-08T05:26:33Z,- ExperimentsInHonesty assigned to issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 10:26 PM PDT -ExperimentsInHonesty,2020-06-08T05:46:51Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640383385) at 2020-06-07 10:46 PM PDT -ExperimentsInHonesty,2020-06-14T16:14:38Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-643788074) at 2020-06-14 09:14 AM PDT -ExperimentsInHonesty,2020-06-14T16:28:57Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-643789867) at 2020-06-14 09:28 AM PDT -ExperimentsInHonesty,2020-06-14T16:31:29Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-643790191) at 2020-06-14 09:31 AM PDT -ExperimentsInHonesty,2020-06-14T16:44:52Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-643791796) at 2020-06-14 09:44 AM PDT -ExperimentsInHonesty,2020-06-14T16:54:12Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-643792946) at 2020-06-14 09:54 AM PDT -ExperimentsInHonesty,2020-06-14T17:01:51Z,- ExperimentsInHonesty commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-643793829) at 2020-06-14 10:01 AM PDT -ExperimentsInHonesty,2020-06-14T17:01:51Z,- ExperimentsInHonesty closed issue as completed: [553](https://github.com/hackforla/website/issues/553#event-3441860968) at 2020-06-14 10:01 AM PDT -ExperimentsInHonesty,2020-06-14T17:11:08Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-643794859) at 2020-06-14 10:11 AM PDT -ExperimentsInHonesty,2020-06-14T17:16:33Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-14 10:16 AM PDT -ExperimentsInHonesty,2020-06-14T17:16:40Z,- ExperimentsInHonesty assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-14 10:16 AM PDT -ExperimentsInHonesty,2020-06-14T19:41:42Z,- ExperimentsInHonesty opened issue: [577](https://github.com/hackforla/website/issues/577) at 2020-06-14 12:41 PM PDT -ExperimentsInHonesty,2020-06-16T07:04:05Z,- ExperimentsInHonesty commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-644574424) at 2020-06-16 12:04 AM PDT -ExperimentsInHonesty,2020-06-21T00:21:26Z,- ExperimentsInHonesty commented on issue: [579](https://github.com/hackforla/website/issues/579#issuecomment-647060958) at 2020-06-20 05:21 PM PDT -ExperimentsInHonesty,2020-06-21T00:24:30Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-647061211) at 2020-06-20 05:24 PM PDT -ExperimentsInHonesty,2020-06-21T04:12:02Z,- ExperimentsInHonesty submitted pull request review: [580](https://github.com/hackforla/website/pull/580#pullrequestreview-434468161) at 2020-06-20 09:12 PM PDT -ExperimentsInHonesty,2020-06-21T04:12:09Z,- ExperimentsInHonesty closed issue by PR 580: [579](https://github.com/hackforla/website/issues/579#event-3465190436) at 2020-06-20 09:12 PM PDT -ExperimentsInHonesty,2020-06-21T04:21:49Z,- ExperimentsInHonesty submitted pull request review: [578](https://github.com/hackforla/website/pull/578#pullrequestreview-434468577) at 2020-06-20 09:21 PM PDT -ExperimentsInHonesty,2020-06-21T16:38:05Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-647151691) at 2020-06-21 09:38 AM PDT -ExperimentsInHonesty,2020-06-21T16:40:21Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647151991) at 2020-06-21 09:40 AM PDT -ExperimentsInHonesty,2020-06-21T16:42:02Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647152171) at 2020-06-21 09:42 AM PDT -ExperimentsInHonesty,2020-06-21T16:51:46Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-647153287) at 2020-06-21 09:51 AM PDT -ExperimentsInHonesty,2020-06-21T17:02:18Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-647154564) at 2020-06-21 10:02 AM PDT -ExperimentsInHonesty,2020-06-21T17:11:11Z,- ExperimentsInHonesty unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-21 10:11 AM PDT -ExperimentsInHonesty,2020-06-21T17:14:33Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647155926) at 2020-06-21 10:14 AM PDT -ExperimentsInHonesty,2020-06-21T17:28:56Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-647157534) at 2020-06-21 10:28 AM PDT -ExperimentsInHonesty,2020-06-21T17:40:24Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647158781) at 2020-06-21 10:40 AM PDT -ExperimentsInHonesty,2020-06-21T17:55:49Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-647160477) at 2020-06-21 10:55 AM PDT -ExperimentsInHonesty,2020-06-21T18:07:58Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-647161750) at 2020-06-21 11:07 AM PDT -ExperimentsInHonesty,2020-06-21T18:18:32Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:18 AM PDT -ExperimentsInHonesty,2020-06-21T18:22:36Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647163409) at 2020-06-21 11:22 AM PDT -ExperimentsInHonesty,2020-06-21T18:50:19Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-647166426) at 2020-06-21 11:50 AM PDT -ExperimentsInHonesty,2020-06-21T22:51:26Z,- ExperimentsInHonesty commented on issue: [292](https://github.com/hackforla/website/issues/292#issuecomment-647191790) at 2020-06-21 03:51 PM PDT -ExperimentsInHonesty,2020-06-21T22:51:26Z,- ExperimentsInHonesty closed issue as completed: [292](https://github.com/hackforla/website/issues/292#event-3465917885) at 2020-06-21 03:51 PM PDT -ExperimentsInHonesty,2020-06-24T02:49:01Z,- ExperimentsInHonesty assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-23 07:49 PM PDT -ExperimentsInHonesty,2020-06-24T02:49:44Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-648549775) at 2020-06-23 07:49 PM PDT -ExperimentsInHonesty,2020-06-24T02:59:37Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-648552632) at 2020-06-23 07:59 PM PDT -ExperimentsInHonesty,2020-06-24T03:05:33Z,- ExperimentsInHonesty commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-648554496) at 2020-06-23 08:05 PM PDT -ExperimentsInHonesty,2020-06-24T03:13:46Z,- ExperimentsInHonesty commented on pull request: [569](https://github.com/hackforla/website/pull/569#issuecomment-648556804) at 2020-06-23 08:13 PM PDT -ExperimentsInHonesty,2020-06-24T07:02:22Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-648634219) at 2020-06-24 12:02 AM PDT -ExperimentsInHonesty,2020-06-24T20:30:13Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-649054229) at 2020-06-24 01:30 PM PDT -ExperimentsInHonesty,2020-06-28T17:16:25Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-650795811) at 2020-06-28 10:16 AM PDT -ExperimentsInHonesty,2020-06-28T17:19:07Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-650796142) at 2020-06-28 10:19 AM PDT -ExperimentsInHonesty,2020-06-28T17:34:20Z,- ExperimentsInHonesty commented on pull request: [586](https://github.com/hackforla/website/pull/586#issuecomment-650797943) at 2020-06-28 10:34 AM PDT -ExperimentsInHonesty,2020-06-28T17:36:57Z,- ExperimentsInHonesty reopened issue: [254](https://github.com/hackforla/website/issues/254#event-3490525008) at 2020-06-28 10:36 AM PDT -ExperimentsInHonesty,2020-06-28T17:55:10Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-650800318) at 2020-06-28 10:55 AM PDT -ExperimentsInHonesty,2020-06-28T17:59:34Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-650800803) at 2020-06-28 10:59 AM PDT -ExperimentsInHonesty,2020-06-28T18:07:03Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-650801594) at 2020-06-28 11:07 AM PDT -ExperimentsInHonesty,2020-06-28T19:11:30Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650808846) at 2020-06-28 12:11 PM PDT -ExperimentsInHonesty,2020-06-28T19:18:41Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-650809615) at 2020-06-28 12:18 PM PDT -ExperimentsInHonesty,2020-07-02T03:52:56Z,- ExperimentsInHonesty opened issue: [591](https://github.com/hackforla/website/issues/591) at 2020-07-01 08:52 PM PDT -ExperimentsInHonesty,2020-07-05T16:11:22Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-653907205) at 2020-07-05 09:11 AM PDT -ExperimentsInHonesty,2020-07-05T16:15:03Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-653907618) at 2020-07-05 09:15 AM PDT -ExperimentsInHonesty,2020-07-05T16:15:08Z,- ExperimentsInHonesty closed issue as completed: [494](https://github.com/hackforla/website/issues/494#event-3513458415) at 2020-07-05 09:15 AM PDT -ExperimentsInHonesty,2020-07-05T16:37:15Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-653910055) at 2020-07-05 09:37 AM PDT -ExperimentsInHonesty,2020-07-05T16:43:20Z,- ExperimentsInHonesty unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-07-05 09:43 AM PDT -ExperimentsInHonesty,2020-07-05T16:47:23Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-653911124) at 2020-07-05 09:47 AM PDT -ExperimentsInHonesty,2020-07-05T17:48:29Z,- ExperimentsInHonesty assigned to issue: [555](https://github.com/hackforla/website/issues/555) at 2020-07-05 10:48 AM PDT -ExperimentsInHonesty,2020-07-05T19:08:45Z,- ExperimentsInHonesty opened issue: [593](https://github.com/hackforla/website/issues/593) at 2020-07-05 12:08 PM PDT -ExperimentsInHonesty,2020-07-05T23:37:38Z,- ExperimentsInHonesty opened issue: [595](https://github.com/hackforla/website/issues/595) at 2020-07-05 04:37 PM PDT -ExperimentsInHonesty,2020-07-05T23:41:09Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653954106) at 2020-07-05 04:41 PM PDT -ExperimentsInHonesty,2020-07-06T00:39:11Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653961991) at 2020-07-05 05:39 PM PDT -ExperimentsInHonesty,2020-07-09T22:30:27Z,- ExperimentsInHonesty opened issue: [599](https://github.com/hackforla/website/issues/599) at 2020-07-09 03:30 PM PDT -ExperimentsInHonesty,2020-07-10T04:19:07Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656473589) at 2020-07-09 09:19 PM PDT -ExperimentsInHonesty,2020-07-10T04:26:24Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656475187) at 2020-07-09 09:26 PM PDT -ExperimentsInHonesty,2020-07-10T20:35:30Z,- ExperimentsInHonesty assigned to issue: [601](https://github.com/hackforla/website/issues/601) at 2020-07-10 01:35 PM PDT -ExperimentsInHonesty,2020-07-12T01:51:36Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657161440) at 2020-07-11 06:51 PM PDT -ExperimentsInHonesty,2020-07-12T02:00:59Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657162174) at 2020-07-11 07:00 PM PDT -ExperimentsInHonesty,2020-07-12T02:02:27Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657162295) at 2020-07-11 07:02 PM PDT -ExperimentsInHonesty,2020-07-12T17:54:43Z,- ExperimentsInHonesty commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-657254996) at 2020-07-12 10:54 AM PDT -ExperimentsInHonesty,2020-07-12T18:08:59Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-657256359) at 2020-07-12 11:08 AM PDT -ExperimentsInHonesty,2020-07-12T18:13:37Z,- ExperimentsInHonesty commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-657256872) at 2020-07-12 11:13 AM PDT -ExperimentsInHonesty,2020-07-12T18:25:53Z,- ExperimentsInHonesty commented on pull request: [604](https://github.com/hackforla/website/pull/604#issuecomment-657258143) at 2020-07-12 11:25 AM PDT -ExperimentsInHonesty,2020-07-17T17:32:18Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-660243767) at 2020-07-17 10:32 AM PDT -ExperimentsInHonesty,2020-07-19T18:15:23Z,- ExperimentsInHonesty assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660685905) at 2020-07-19 11:15 AM PDT -ExperimentsInHonesty,2020-07-19T19:00:20Z,- ExperimentsInHonesty assigned to issue: [614](https://github.com/hackforla/website/issues/614) at 2020-07-19 12:00 PM PDT -ExperimentsInHonesty,2020-07-19T19:16:02Z,- ExperimentsInHonesty commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660693851) at 2020-07-19 12:16 PM PDT -ExperimentsInHonesty,2020-07-19T19:16:24Z,- ExperimentsInHonesty unassigned from issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660693851) at 2020-07-19 12:16 PM PDT -ExperimentsInHonesty,2020-07-19T19:30:53Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-660696020) at 2020-07-19 12:30 PM PDT -ExperimentsInHonesty,2020-07-19T19:36:32Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-660696676) at 2020-07-19 12:36 PM PDT -ExperimentsInHonesty,2020-07-19T20:02:32Z,- ExperimentsInHonesty unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660693919) at 2020-07-19 01:02 PM PDT -ExperimentsInHonesty,2020-07-21T05:15:03Z,- ExperimentsInHonesty commented on issue: [591](https://github.com/hackforla/website/issues/591#issuecomment-661638051) at 2020-07-20 10:15 PM PDT -ExperimentsInHonesty,2020-07-21T05:15:03Z,- ExperimentsInHonesty closed issue as completed: [591](https://github.com/hackforla/website/issues/591#event-3569171445) at 2020-07-20 10:15 PM PDT -ExperimentsInHonesty,2020-07-24T15:19:36Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663591301) at 2020-07-24 08:19 AM PDT -ExperimentsInHonesty,2020-07-24T15:31:16Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663596800) at 2020-07-24 08:31 AM PDT -ExperimentsInHonesty,2020-07-24T15:33:32Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663597870) at 2020-07-24 08:33 AM PDT -ExperimentsInHonesty,2020-07-25T00:37:08Z,- ExperimentsInHonesty opened issue: [632](https://github.com/hackforla/website/issues/632) at 2020-07-24 05:37 PM PDT -ExperimentsInHonesty,2020-07-25T01:24:49Z,- ExperimentsInHonesty assigned to issue: [632](https://github.com/hackforla/website/issues/632) at 2020-07-24 06:24 PM PDT -ExperimentsInHonesty,2020-07-25T21:48:25Z,- ExperimentsInHonesty commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663909528) at 2020-07-25 02:48 PM PDT -ExperimentsInHonesty,2020-07-26T16:28:30Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-664009612) at 2020-07-26 09:28 AM PDT -ExperimentsInHonesty,2020-07-26T16:30:36Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-664009946) at 2020-07-26 09:30 AM PDT -ExperimentsInHonesty,2020-07-26T18:32:57Z,- ExperimentsInHonesty assigned to issue: [642](https://github.com/hackforla/website/issues/642) at 2020-07-26 11:32 AM PDT -ExperimentsInHonesty,2020-07-26T19:21:18Z,- ExperimentsInHonesty commented on issue: [294](https://github.com/hackforla/website/issues/294#issuecomment-664029448) at 2020-07-26 12:21 PM PDT -ExperimentsInHonesty,2020-07-26T19:21:18Z,- ExperimentsInHonesty closed issue as completed: [294](https://github.com/hackforla/website/issues/294#event-3587337395) at 2020-07-26 12:21 PM PDT -ExperimentsInHonesty,2020-07-26T19:49:05Z,- ExperimentsInHonesty assigned to issue: [387](https://github.com/hackforla/website/issues/387) at 2020-07-26 12:49 PM PDT -ExperimentsInHonesty,2020-07-26T20:30:58Z,- ExperimentsInHonesty commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-664036474) at 2020-07-26 01:30 PM PDT -ExperimentsInHonesty,2020-07-29T03:05:08Z,- ExperimentsInHonesty submitted pull request review: [640](https://github.com/hackforla/website/pull/640#pullrequestreview-457163085) at 2020-07-28 08:05 PM PDT -ExperimentsInHonesty,2020-07-29T03:37:21Z,- ExperimentsInHonesty commented on issue: [643](https://github.com/hackforla/website/issues/643#issuecomment-665411749) at 2020-07-28 08:37 PM PDT -ExperimentsInHonesty,2020-07-29T03:37:24Z,- ExperimentsInHonesty closed issue as completed: [643](https://github.com/hackforla/website/issues/643#event-3597114688) at 2020-07-28 08:37 PM PDT -ExperimentsInHonesty,2020-07-29T22:09:20Z,- ExperimentsInHonesty assigned to issue: [658](https://github.com/hackforla/website/issues/658) at 2020-07-29 03:09 PM PDT -ExperimentsInHonesty,2020-07-29T23:54:41Z,- ExperimentsInHonesty opened issue: [659](https://github.com/hackforla/website/issues/659) at 2020-07-29 04:54 PM PDT -ExperimentsInHonesty,2020-07-30T04:14:45Z,- ExperimentsInHonesty commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666091824) at 2020-07-29 09:14 PM PDT -ExperimentsInHonesty,2020-07-30T04:17:08Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666092836) at 2020-07-29 09:17 PM PDT -ExperimentsInHonesty,2020-08-04T01:07:41Z,- ExperimentsInHonesty submitted pull request review: [666](https://github.com/hackforla/website/pull/666#pullrequestreview-460430908) at 2020-08-03 06:07 PM PDT -ExperimentsInHonesty,2020-08-04T01:07:55Z,- ExperimentsInHonesty closed issue by PR 665: [607](https://github.com/hackforla/website/issues/607#event-3618106413) at 2020-08-03 06:07 PM PDT -ExperimentsInHonesty,2020-08-05T03:04:36Z,- ExperimentsInHonesty unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-08-04 08:04 PM PDT -ExperimentsInHonesty,2020-08-07T20:20:25Z,- ExperimentsInHonesty commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-670697065) at 2020-08-07 01:20 PM PDT -ExperimentsInHonesty,2020-08-08T21:32:02Z,- ExperimentsInHonesty commented on issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-670976011) at 2020-08-08 02:32 PM PDT -ExperimentsInHonesty,2020-08-08T21:32:02Z,- ExperimentsInHonesty reopened issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-670976011) at 2020-08-08 02:32 PM PDT -ExperimentsInHonesty,2020-08-08T21:46:02Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-670977197) at 2020-08-08 02:46 PM PDT -ExperimentsInHonesty,2020-08-09T17:32:08Z,- ExperimentsInHonesty unassigned from issue: [642](https://github.com/hackforla/website/issues/642) at 2020-08-09 10:32 AM PDT -ExperimentsInHonesty,2020-08-09T17:49:37Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-671081487) at 2020-08-09 10:49 AM PDT -ExperimentsInHonesty,2020-08-12T21:22:32Z,- ExperimentsInHonesty commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673117794) at 2020-08-12 02:22 PM PDT -ExperimentsInHonesty,2020-08-16T02:36:03Z,- ExperimentsInHonesty commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-674469787) at 2020-08-15 07:36 PM PDT -ExperimentsInHonesty,2020-08-16T04:48:49Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-674478603) at 2020-08-15 09:48 PM PDT -ExperimentsInHonesty,2020-08-16T16:41:05Z,- ExperimentsInHonesty commented on issue: [645](https://github.com/hackforla/website/issues/645#issuecomment-674548845) at 2020-08-16 09:41 AM PDT -ExperimentsInHonesty,2020-08-16T16:41:17Z,- ExperimentsInHonesty commented on pull request: [675](https://github.com/hackforla/website/pull/675#issuecomment-674548868) at 2020-08-16 09:41 AM PDT -ExperimentsInHonesty,2020-08-16T16:47:06Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674549558) at 2020-08-16 09:47 AM PDT -ExperimentsInHonesty,2020-08-16T19:25:58Z,- ExperimentsInHonesty assigned to issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-664397854) at 2020-08-16 12:25 PM PDT -ExperimentsInHonesty,2020-08-19T00:47:15Z,- ExperimentsInHonesty opened issue: [703](https://github.com/hackforla/website/issues/703) at 2020-08-18 05:47 PM PDT -ExperimentsInHonesty,2020-08-19T23:06:05Z,- ExperimentsInHonesty commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-676800941) at 2020-08-19 04:06 PM PDT -ExperimentsInHonesty,2020-08-19T23:09:27Z,- ExperimentsInHonesty commented on pull request: [681](https://github.com/hackforla/website/pull/681#issuecomment-676801962) at 2020-08-19 04:09 PM PDT -ExperimentsInHonesty,2020-08-22T22:00:35Z,- ExperimentsInHonesty submitted pull request review: [697](https://github.com/hackforla/website/pull/697#pullrequestreview-472965092) at 2020-08-22 03:00 PM PDT -ExperimentsInHonesty,2020-08-22T22:11:59Z,- ExperimentsInHonesty submitted pull request review: [696](https://github.com/hackforla/website/pull/696#pullrequestreview-472965522) at 2020-08-22 03:11 PM PDT -ExperimentsInHonesty,2020-08-23T00:02:13Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678711114) at 2020-08-22 05:02 PM PDT -ExperimentsInHonesty,2020-08-23T00:51:19Z,- ExperimentsInHonesty assigned to issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678711114) at 2020-08-22 05:51 PM PDT -ExperimentsInHonesty,2020-08-23T18:41:24Z,- ExperimentsInHonesty submitted pull request review: [697](https://github.com/hackforla/website/pull/697#pullrequestreview-473033404) at 2020-08-23 11:41 AM PDT -ExperimentsInHonesty,2020-08-23T18:41:40Z,- ExperimentsInHonesty closed issue by PR 697: [692](https://github.com/hackforla/website/issues/692#event-3683046952) at 2020-08-23 11:41 AM PDT -ExperimentsInHonesty,2020-08-23T18:58:46Z,- ExperimentsInHonesty opened issue: [699](https://github.com/hackforla/website/issues/699) at 2020-08-23 11:58 AM PDT -ExperimentsInHonesty,2020-08-23T22:00:30Z,- ExperimentsInHonesty commented on pull request: [685](https://github.com/hackforla/website/pull/685#issuecomment-678830181) at 2020-08-23 03:00 PM PDT -ExperimentsInHonesty,2020-08-24T01:57:15Z,- ExperimentsInHonesty opened issue: [701](https://github.com/hackforla/website/issues/701) at 2020-08-23 06:57 PM PDT -ExperimentsInHonesty,2020-08-24T03:12:30Z,- ExperimentsInHonesty assigned to issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-678880864) at 2020-08-23 08:12 PM PDT -ExperimentsInHonesty,2020-08-24T19:19:29Z,- ExperimentsInHonesty commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679316669) at 2020-08-24 12:19 PM PDT -ExperimentsInHonesty,2020-08-24T21:48:55Z,- ExperimentsInHonesty reopened issue: [651](https://github.com/hackforla/website/issues/651#event-3664412839) at 2020-08-24 02:48 PM PDT -ExperimentsInHonesty,2020-08-24T21:49:14Z,- ExperimentsInHonesty commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679384177) at 2020-08-24 02:49 PM PDT -ExperimentsInHonesty,2020-08-24T22:09:47Z,- ExperimentsInHonesty commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679391882) at 2020-08-24 03:09 PM PDT -ExperimentsInHonesty,2020-08-25T01:10:01Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679443953) at 2020-08-24 06:10 PM PDT -ExperimentsInHonesty,2020-08-25T01:39:16Z,- ExperimentsInHonesty commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679451846) at 2020-08-24 06:39 PM PDT -ExperimentsInHonesty,2020-08-25T01:49:04Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-24 06:49 PM PDT -ExperimentsInHonesty,2020-08-25T01:49:23Z,- ExperimentsInHonesty unassigned from issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-24 06:49 PM PDT -ExperimentsInHonesty,2020-08-25T02:01:50Z,- ExperimentsInHonesty commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679457770) at 2020-08-24 07:01 PM PDT -ExperimentsInHonesty,2020-08-29T17:11:18Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683317391) at 2020-08-29 10:11 AM PDT -ExperimentsInHonesty,2020-08-30T02:37:12Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683368271) at 2020-08-29 07:37 PM PDT -ExperimentsInHonesty,2020-08-30T18:11:25Z,- ExperimentsInHonesty commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-683452119) at 2020-08-30 11:11 AM PDT -ExperimentsInHonesty,2020-08-30T18:16:20Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-683452604) at 2020-08-30 11:16 AM PDT -ExperimentsInHonesty,2020-08-30T18:23:40Z,- ExperimentsInHonesty commented on issue: [684](https://github.com/hackforla/website/issues/684#issuecomment-683453389) at 2020-08-30 11:23 AM PDT -ExperimentsInHonesty,2020-08-30T18:33:38Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-683454473) at 2020-08-30 11:33 AM PDT -ExperimentsInHonesty,2020-08-30T18:38:20Z,- ExperimentsInHonesty commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-683454932) at 2020-08-30 11:38 AM PDT -ExperimentsInHonesty,2020-09-02T22:29:45Z,- ExperimentsInHonesty commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-686062209) at 2020-09-02 03:29 PM PDT -ExperimentsInHonesty,2020-09-04T20:35:58Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-687369890) at 2020-09-04 01:35 PM PDT -ExperimentsInHonesty,2020-09-04T22:35:02Z,- ExperimentsInHonesty commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-687437005) at 2020-09-04 03:35 PM PDT -ExperimentsInHonesty,2020-09-05T15:30:10Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-687625976) at 2020-09-05 08:30 AM PDT -ExperimentsInHonesty,2020-09-06T17:33:26Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-687850177) at 2020-09-06 10:33 AM PDT -ExperimentsInHonesty,2020-09-06T18:04:39Z,- ExperimentsInHonesty commented on pull request: [718](https://github.com/hackforla/website/pull/718#issuecomment-687857600) at 2020-09-06 11:04 AM PDT -ExperimentsInHonesty,2020-09-06T18:16:56Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-687860614) at 2020-09-06 11:16 AM PDT -ExperimentsInHonesty,2020-09-07T16:08:08Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-688414197) at 2020-09-07 09:08 AM PDT -ExperimentsInHonesty,2020-09-07T16:38:46Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-688428430) at 2020-09-07 09:38 AM PDT -ExperimentsInHonesty,2020-09-08T20:30:16Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-689118667) at 2020-09-08 01:30 PM PDT -ExperimentsInHonesty,2020-09-12T16:40:52Z,- ExperimentsInHonesty submitted pull request review: [726](https://github.com/hackforla/website/pull/726#pullrequestreview-487240979) at 2020-09-12 09:40 AM PDT -ExperimentsInHonesty,2020-09-12T17:00:04Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691517085) at 2020-09-12 10:00 AM PDT -ExperimentsInHonesty,2020-09-13T17:18:01Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691698669) at 2020-09-13 10:18 AM PDT -ExperimentsInHonesty,2020-09-13T17:27:20Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-691699675) at 2020-09-13 10:27 AM PDT -ExperimentsInHonesty,2020-09-13T18:05:33Z,- ExperimentsInHonesty commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-691704080) at 2020-09-13 11:05 AM PDT -ExperimentsInHonesty,2020-09-13T19:30:04Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691714195) at 2020-09-13 12:30 PM PDT -ExperimentsInHonesty,2020-09-13T22:56:21Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691737224) at 2020-09-13 03:56 PM PDT -ExperimentsInHonesty,2020-09-14T20:24:46Z,- ExperimentsInHonesty submitted pull request review: [729](https://github.com/hackforla/website/pull/729#pullrequestreview-488114108) at 2020-09-14 01:24 PM PDT -ExperimentsInHonesty,2020-09-14T20:37:10Z,- ExperimentsInHonesty opened issue: [733](https://github.com/hackforla/website/issues/733) at 2020-09-14 01:37 PM PDT -ExperimentsInHonesty,2020-09-15T05:19:04Z,- ExperimentsInHonesty submitted pull request review: [724](https://github.com/hackforla/website/pull/724#pullrequestreview-488331837) at 2020-09-14 10:19 PM PDT -ExperimentsInHonesty,2020-09-17T23:32:35Z,- ExperimentsInHonesty assigned to issue: [209](https://github.com/hackforla/website/issues/209) at 2020-09-17 04:32 PM PDT -ExperimentsInHonesty,2020-09-18T02:23:31Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694609797) at 2020-09-17 07:23 PM PDT -ExperimentsInHonesty,2020-09-19T01:33:24Z,- ExperimentsInHonesty opened issue: [738](https://github.com/hackforla/website/issues/738) at 2020-09-18 06:33 PM PDT -ExperimentsInHonesty,2020-09-19T01:44:00Z,- ExperimentsInHonesty opened issue: [739](https://github.com/hackforla/website/issues/739) at 2020-09-18 06:44 PM PDT -ExperimentsInHonesty,2020-09-19T15:56:52Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-695299465) at 2020-09-19 08:56 AM PDT -ExperimentsInHonesty,2020-09-20T17:25:02Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-695813065) at 2020-09-20 10:25 AM PDT -ExperimentsInHonesty,2020-09-20T17:36:48Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695814271) at 2020-09-20 10:36 AM PDT -ExperimentsInHonesty,2020-09-20T17:44:00Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695814959) at 2020-09-20 10:44 AM PDT -ExperimentsInHonesty,2020-09-20T18:20:33Z,- ExperimentsInHonesty submitted pull request review: [737](https://github.com/hackforla/website/pull/737#pullrequestreview-492212784) at 2020-09-20 11:20 AM PDT -ExperimentsInHonesty,2020-09-20T18:22:00Z,- ExperimentsInHonesty submitted pull request review: [726](https://github.com/hackforla/website/pull/726#pullrequestreview-492212899) at 2020-09-20 11:22 AM PDT -ExperimentsInHonesty,2020-09-20T18:22:10Z,- ExperimentsInHonesty closed issue by PR 726: [690](https://github.com/hackforla/website/issues/690#event-3786300230) at 2020-09-20 11:22 AM PDT -ExperimentsInHonesty,2020-09-21T18:31:18Z,- ExperimentsInHonesty commented on pull request: [741](https://github.com/hackforla/website/pull/741#issuecomment-696292213) at 2020-09-21 11:31 AM PDT -ExperimentsInHonesty,2020-09-21T18:36:15Z,- ExperimentsInHonesty commented on issue: [616](https://github.com/hackforla/website/issues/616#issuecomment-696294935) at 2020-09-21 11:36 AM PDT -ExperimentsInHonesty,2020-09-21T22:23:47Z,- ExperimentsInHonesty assigned to issue: [744](https://github.com/hackforla/website/issues/744) at 2020-09-21 03:23 PM PDT -ExperimentsInHonesty,2020-09-27T17:17:18Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -ExperimentsInHonesty,2020-09-27T17:17:27Z,- ExperimentsInHonesty unassigned from issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -ExperimentsInHonesty,2020-09-27T17:17:50Z,- ExperimentsInHonesty assigned to issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -ExperimentsInHonesty,2020-09-27T17:19:01Z,- ExperimentsInHonesty unassigned from issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:19 AM PDT -ExperimentsInHonesty,2020-09-27T17:26:19Z,- ExperimentsInHonesty commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-699663386) at 2020-09-27 10:26 AM PDT -ExperimentsInHonesty,2020-09-27T17:49:02Z,- ExperimentsInHonesty commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-699665894) at 2020-09-27 10:49 AM PDT -ExperimentsInHonesty,2020-09-27T18:05:22Z,- ExperimentsInHonesty opened issue: [751](https://github.com/hackforla/website/issues/751) at 2020-09-27 11:05 AM PDT -ExperimentsInHonesty,2020-09-27T18:59:29Z,- ExperimentsInHonesty opened issue: [752](https://github.com/hackforla/website/issues/752) at 2020-09-27 11:59 AM PDT -ExperimentsInHonesty,2020-09-27T19:19:29Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-699676629) at 2020-09-27 12:19 PM PDT -ExperimentsInHonesty,2020-09-27T19:19:32Z,- ExperimentsInHonesty closed issue as completed: [695](https://github.com/hackforla/website/issues/695#event-3811928466) at 2020-09-27 12:19 PM PDT -ExperimentsInHonesty,2020-09-28T03:12:17Z,- ExperimentsInHonesty commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-699745319) at 2020-09-27 08:12 PM PDT -ExperimentsInHonesty,2020-10-01T05:05:06Z,- ExperimentsInHonesty commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-701886652) at 2020-09-30 10:05 PM PDT -ExperimentsInHonesty,2020-10-01T14:32:42Z,- ExperimentsInHonesty commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-702177313) at 2020-10-01 07:32 AM PDT -ExperimentsInHonesty,2020-10-04T01:29:26Z,- ExperimentsInHonesty submitted pull request review: [764](https://github.com/hackforla/website/pull/764#pullrequestreview-501584193) at 2020-10-03 06:29 PM PDT -ExperimentsInHonesty,2020-10-04T01:39:17Z,- ExperimentsInHonesty submitted pull request review: [763](https://github.com/hackforla/website/pull/763#pullrequestreview-501584498) at 2020-10-03 06:39 PM PDT -ExperimentsInHonesty,2020-10-04T01:48:42Z,- ExperimentsInHonesty submitted pull request review: [760](https://github.com/hackforla/website/pull/760#pullrequestreview-501584776) at 2020-10-03 06:48 PM PDT -ExperimentsInHonesty,2020-10-05T18:58:42Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-703825673) at 2020-10-05 11:58 AM PDT -ExperimentsInHonesty,2020-10-08T14:56:23Z,- ExperimentsInHonesty commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-705627231) at 2020-10-08 07:56 AM PDT -ExperimentsInHonesty,2020-10-08T23:40:11Z,- ExperimentsInHonesty reopened issue: [156](https://github.com/hackforla/website/issues/156#event-3857778129) at 2020-10-08 04:40 PM PDT -ExperimentsInHonesty,2020-10-11T17:30:55Z,- ExperimentsInHonesty commented on issue: [705](https://github.com/hackforla/website/issues/705#issuecomment-706738990) at 2020-10-11 10:30 AM PDT -ExperimentsInHonesty,2020-10-11T17:31:03Z,- ExperimentsInHonesty closed issue as completed: [705](https://github.com/hackforla/website/issues/705#event-3863904336) at 2020-10-11 10:31 AM PDT -ExperimentsInHonesty,2020-10-12T07:32:16Z,- ExperimentsInHonesty commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-706934480) at 2020-10-12 12:32 AM PDT -ExperimentsInHonesty,2020-10-12T08:48:42Z,- ExperimentsInHonesty commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-706978109) at 2020-10-12 01:48 AM PDT -ExperimentsInHonesty,2020-10-16T00:37:09Z,- ExperimentsInHonesty commented on pull request: [782](https://github.com/hackforla/website/pull/782#issuecomment-709661600) at 2020-10-15 05:37 PM PDT -ExperimentsInHonesty,2020-10-18T18:07:16Z,- ExperimentsInHonesty commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711345122) at 2020-10-18 11:07 AM PDT -ExperimentsInHonesty,2020-10-18T18:16:43Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-711352398) at 2020-10-18 11:16 AM PDT -ExperimentsInHonesty,2020-10-22T22:16:29Z,- ExperimentsInHonesty closed issue as completed: [116](https://github.com/hackforla/website/issues/116#event-3911353157) at 2020-10-22 03:16 PM PDT -ExperimentsInHonesty,2020-10-23T18:58:59Z,- ExperimentsInHonesty assigned to issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:58 AM PDT -ExperimentsInHonesty,2020-10-23T18:59:05Z,- ExperimentsInHonesty unassigned from issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:59 AM PDT -ExperimentsInHonesty,2020-10-24T20:16:01Z,- ExperimentsInHonesty commented on issue: [311](https://github.com/hackforla/website/issues/311#issuecomment-716049520) at 2020-10-24 01:16 PM PDT -ExperimentsInHonesty,2020-10-24T20:16:08Z,- ExperimentsInHonesty closed issue as completed: [311](https://github.com/hackforla/website/issues/311#event-3917169440) at 2020-10-24 01:16 PM PDT -ExperimentsInHonesty,2020-10-24T23:50:19Z,- ExperimentsInHonesty opened issue: [800](https://github.com/hackforla/website/issues/800) at 2020-10-24 04:50 PM PDT -ExperimentsInHonesty,2020-10-25T17:06:14Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-716179253) at 2020-10-25 10:06 AM PDT -ExperimentsInHonesty,2020-10-25T17:08:20Z,- ExperimentsInHonesty assigned to issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-716179253) at 2020-10-25 10:08 AM PDT -ExperimentsInHonesty,2020-10-25T17:16:28Z,- ExperimentsInHonesty commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-716180735) at 2020-10-25 10:16 AM PDT -ExperimentsInHonesty,2020-10-25T19:57:20Z,- ExperimentsInHonesty commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716202808) at 2020-10-25 12:57 PM PDT -ExperimentsInHonesty,2020-10-25T20:03:45Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-716203722) at 2020-10-25 01:03 PM PDT -ExperimentsInHonesty,2020-10-25T20:08:48Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-716204383) at 2020-10-25 01:08 PM PDT -ExperimentsInHonesty,2020-10-29T01:53:43Z,- ExperimentsInHonesty commented on issue: [693](https://github.com/hackforla/website/issues/693#issuecomment-718308706) at 2020-10-28 06:53 PM PDT -ExperimentsInHonesty,2020-10-29T02:26:46Z,- ExperimentsInHonesty opened issue: [801](https://github.com/hackforla/website/issues/801) at 2020-10-28 07:26 PM PDT -ExperimentsInHonesty,2020-11-01T18:06:18Z,- ExperimentsInHonesty closed issue as completed: [699](https://github.com/hackforla/website/issues/699#event-3945438652) at 2020-11-01 10:06 AM PST -ExperimentsInHonesty,2020-11-01T19:32:58Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-720139598) at 2020-11-01 11:32 AM PST -ExperimentsInHonesty,2020-11-01T19:56:28Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-01 11:56 AM PST -ExperimentsInHonesty,2020-11-03T00:28:06Z,- ExperimentsInHonesty commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-720803302) at 2020-11-02 04:28 PM PST -ExperimentsInHonesty,2020-11-03T00:28:16Z,- ExperimentsInHonesty assigned to issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-720803302) at 2020-11-02 04:28 PM PST -ExperimentsInHonesty,2020-11-07T02:20:01Z,- ExperimentsInHonesty opened issue: [804](https://github.com/hackforla/website/issues/804) at 2020-11-06 06:20 PM PST -ExperimentsInHonesty,2020-11-07T02:25:10Z,- ExperimentsInHonesty commented on issue: [680](https://github.com/hackforla/website/issues/680#issuecomment-723376425) at 2020-11-06 06:25 PM PST -ExperimentsInHonesty,2020-11-07T02:25:23Z,- ExperimentsInHonesty closed issue as completed: [680](https://github.com/hackforla/website/issues/680#event-3969475084) at 2020-11-06 06:25 PM PST -ExperimentsInHonesty,2020-11-07T22:01:53Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-723500649) at 2020-11-07 02:01 PM PST -ExperimentsInHonesty,2020-11-08T19:00:49Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-723651497) at 2020-11-08 11:00 AM PST -ExperimentsInHonesty,2020-11-08T19:09:58Z,- ExperimentsInHonesty commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-723652558) at 2020-11-08 11:09 AM PST -ExperimentsInHonesty,2020-11-08T19:15:57Z,- ExperimentsInHonesty commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-723653228) at 2020-11-08 11:15 AM PST -ExperimentsInHonesty,2020-11-10T06:04:45Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724477512) at 2020-11-09 10:04 PM PST -ExperimentsInHonesty,2020-11-11T02:56:29Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-725096406) at 2020-11-10 06:56 PM PST -ExperimentsInHonesty,2020-11-13T19:15:48Z,- ExperimentsInHonesty commented on issue: [800](https://github.com/hackforla/website/issues/800#issuecomment-726984053) at 2020-11-13 11:15 AM PST -ExperimentsInHonesty,2020-11-13T20:00:47Z,- ExperimentsInHonesty opened issue: [807](https://github.com/hackforla/website/issues/807) at 2020-11-13 12:00 PM PST -ExperimentsInHonesty,2020-11-15T18:15:55Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-727612718) at 2020-11-15 10:15 AM PST -ExperimentsInHonesty,2020-11-15T18:53:54Z,- ExperimentsInHonesty commented on issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-727618209) at 2020-11-15 10:53 AM PST -ExperimentsInHonesty,2020-11-16T20:44:53Z,- ExperimentsInHonesty commented on issue: [800](https://github.com/hackforla/website/issues/800#issuecomment-728318979) at 2020-11-16 12:44 PM PST -ExperimentsInHonesty,2020-11-22T21:06:26Z,- ExperimentsInHonesty commented on pull request: [808](https://github.com/hackforla/website/pull/808#issuecomment-731847161) at 2020-11-22 01:06 PM PST -ExperimentsInHonesty,2020-11-29T09:58:49Z,- ExperimentsInHonesty submitted pull request review: [814](https://github.com/hackforla/website/pull/814#pullrequestreview-540464067) at 2020-11-29 01:58 AM PST -ExperimentsInHonesty,2020-11-29T10:01:17Z,- ExperimentsInHonesty submitted pull request review: [812](https://github.com/hackforla/website/pull/812#pullrequestreview-540464248) at 2020-11-29 02:01 AM PST -ExperimentsInHonesty,2020-11-29T10:01:39Z,- ExperimentsInHonesty submitted pull request review: [812](https://github.com/hackforla/website/pull/812#pullrequestreview-540464273) at 2020-11-29 02:01 AM PST -ExperimentsInHonesty,2020-11-29T10:16:07Z,- ExperimentsInHonesty commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-735370664) at 2020-11-29 02:16 AM PST -ExperimentsInHonesty,2020-11-29T18:20:05Z,- ExperimentsInHonesty commented on issue: [657](https://github.com/hackforla/website/issues/657#issuecomment-735434450) at 2020-11-29 10:20 AM PST -ExperimentsInHonesty,2020-11-29T19:36:58Z,- ExperimentsInHonesty commented on issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-11-29 11:36 AM PST -ExperimentsInHonesty,2020-11-29T21:27:16Z,- ExperimentsInHonesty opened issue: [815](https://github.com/hackforla/website/issues/815) at 2020-11-29 01:27 PM PST -ExperimentsInHonesty,2020-12-02T05:09:46Z,- ExperimentsInHonesty commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-736994036) at 2020-12-01 09:09 PM PST -ExperimentsInHonesty,2020-12-05T00:24:52Z,- ExperimentsInHonesty opened issue: [826](https://github.com/hackforla/website/issues/826) at 2020-12-04 04:24 PM PST -ExperimentsInHonesty,2020-12-06T18:14:35Z,- ExperimentsInHonesty commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-739541206) at 2020-12-06 10:14 AM PST -ExperimentsInHonesty,2020-12-06T18:16:03Z,- ExperimentsInHonesty commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-739541407) at 2020-12-06 10:16 AM PST -ExperimentsInHonesty,2020-12-06T18:44:13Z,- ExperimentsInHonesty commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-739545032) at 2020-12-06 10:44 AM PST -ExperimentsInHonesty,2020-12-06T19:13:00Z,- ExperimentsInHonesty commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739548771) at 2020-12-06 11:13 AM PST -ExperimentsInHonesty,2020-12-08T21:12:10Z,- ExperimentsInHonesty commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-741039360) at 2020-12-08 01:12 PM PST -ExperimentsInHonesty,2020-12-08T21:31:18Z,- ExperimentsInHonesty unassigned from issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-657116227) at 2020-12-08 01:31 PM PST -ExperimentsInHonesty,2020-12-08T21:48:52Z,- ExperimentsInHonesty assigned to issue: [838](https://github.com/hackforla/website/issues/838) at 2020-12-08 01:48 PM PST -ExperimentsInHonesty,2020-12-08T21:51:25Z,- ExperimentsInHonesty unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -ExperimentsInHonesty,2020-12-09T04:26:17Z,- ExperimentsInHonesty commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-741518187) at 2020-12-08 08:26 PM PST -ExperimentsInHonesty,2020-12-13T20:41:00Z,- ExperimentsInHonesty submitted pull request review: [840](https://github.com/hackforla/website/pull/840#pullrequestreview-550957840) at 2020-12-13 12:41 PM PST -ExperimentsInHonesty,2020-12-14T20:54:25Z,- ExperimentsInHonesty commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704487) at 2020-12-14 12:54 PM PST -ExperimentsInHonesty,2020-12-14T20:55:09Z,- ExperimentsInHonesty commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-14 12:55 PM PST -ExperimentsInHonesty,2020-12-15T21:28:46Z,- ExperimentsInHonesty unassigned from issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-744062103) at 2020-12-15 01:28 PM PST -ExperimentsInHonesty,2020-12-16T03:26:51Z,- ExperimentsInHonesty closed issue by PR 850: [747](https://github.com/hackforla/website/issues/747#event-4117650703) at 2020-12-15 07:26 PM PST -ExperimentsInHonesty,2020-12-20T01:18:42Z,- ExperimentsInHonesty unassigned from issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2020-12-19 05:18 PM PST -ExperimentsInHonesty,2020-12-21T03:37:17Z,- ExperimentsInHonesty commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-748739013) at 2020-12-20 07:37 PM PST -ExperimentsInHonesty,2020-12-21T16:59:02Z,- ExperimentsInHonesty commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-749081693) at 2020-12-21 08:59 AM PST -ExperimentsInHonesty,2020-12-21T17:59:17Z,- ExperimentsInHonesty commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-749112577) at 2020-12-21 09:59 AM PST -ExperimentsInHonesty,2020-12-21T18:07:35Z,- ExperimentsInHonesty commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-749116587) at 2020-12-21 10:07 AM PST -ExperimentsInHonesty,2020-12-21T18:13:12Z,- ExperimentsInHonesty opened pull request: [858](https://github.com/hackforla/website/pull/858) at 2020-12-21 10:13 AM PST -ExperimentsInHonesty,2020-12-22T02:50:26Z,- ExperimentsInHonesty assigned to issue: [860](https://github.com/hackforla/website/issues/860) at 2020-12-21 06:50 PM PST -ExperimentsInHonesty,2020-12-23T03:35:43Z,- ExperimentsInHonesty pull request merged: [858](https://github.com/hackforla/website/pull/858#event-4142541311) at 2020-12-22 07:35 PM PST -ExperimentsInHonesty,2020-12-27T01:13:01Z,- ExperimentsInHonesty opened pull request: [872](https://github.com/hackforla/website/pull/872) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-27T01:13:09Z,- ExperimentsInHonesty pull request merged: [872](https://github.com/hackforla/website/pull/872#event-4149950993) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-27T01:13:40Z,- ExperimentsInHonesty opened pull request: [873](https://github.com/hackforla/website/pull/873) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-27T01:13:47Z,- ExperimentsInHonesty pull request merged: [873](https://github.com/hackforla/website/pull/873#event-4149951186) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-30T03:02:03Z,- ExperimentsInHonesty opened issue: [891](https://github.com/hackforla/website/issues/891) at 2020-12-29 07:02 PM PST -ExperimentsInHonesty,2020-12-30T03:22:39Z,- ExperimentsInHonesty opened issue: [892](https://github.com/hackforla/website/issues/892) at 2020-12-29 07:22 PM PST -ExperimentsInHonesty,2020-12-30T04:03:04Z,- ExperimentsInHonesty opened issue: [893](https://github.com/hackforla/website/issues/893) at 2020-12-29 08:03 PM PST -ExperimentsInHonesty,2020-12-30T04:16:46Z,- ExperimentsInHonesty opened issue: [894](https://github.com/hackforla/website/issues/894) at 2020-12-29 08:16 PM PST -ExperimentsInHonesty,2020-12-30T04:19:58Z,- ExperimentsInHonesty opened issue: [895](https://github.com/hackforla/website/issues/895) at 2020-12-29 08:19 PM PST -ExperimentsInHonesty,2020-12-30T04:35:02Z,- ExperimentsInHonesty opened issue: [896](https://github.com/hackforla/website/issues/896) at 2020-12-29 08:35 PM PST -ExperimentsInHonesty,2021-01-03T20:31:07Z,- ExperimentsInHonesty commented on issue: [795](https://github.com/hackforla/website/issues/795#issuecomment-753671917) at 2021-01-03 12:31 PM PST -ExperimentsInHonesty,2021-01-03T20:31:07Z,- ExperimentsInHonesty closed issue as completed: [795](https://github.com/hackforla/website/issues/795#event-4162778114) at 2021-01-03 12:31 PM PST -ExperimentsInHonesty,2021-01-05T05:41:08Z,- ExperimentsInHonesty commented on issue: [312](https://github.com/hackforla/website/issues/312#issuecomment-754410501) at 2021-01-04 09:41 PM PST -ExperimentsInHonesty,2021-01-05T09:32:47Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-754520077) at 2021-01-05 01:32 AM PST -ExperimentsInHonesty,2021-01-05T22:37:31Z,- ExperimentsInHonesty assigned to issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 02:37 PM PST -ExperimentsInHonesty,2021-01-05T22:37:53Z,- ExperimentsInHonesty unassigned from issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 02:37 PM PST -ExperimentsInHonesty,2021-01-05T22:39:57Z,- ExperimentsInHonesty assigned to issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-752212279) at 2021-01-05 02:39 PM PST -ExperimentsInHonesty,2021-01-05T23:22:43Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-754961182) at 2021-01-05 03:22 PM PST -ExperimentsInHonesty,2021-01-06T01:03:03Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-754997620) at 2021-01-05 05:03 PM PST -ExperimentsInHonesty,2021-01-07T04:03:56Z,- ExperimentsInHonesty opened issue: [922](https://github.com/hackforla/website/issues/922) at 2021-01-06 08:03 PM PST -ExperimentsInHonesty,2021-01-10T21:30:17Z,- ExperimentsInHonesty assigned to issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2021-01-10 01:30 PM PST -ExperimentsInHonesty,2021-01-10T21:35:06Z,- ExperimentsInHonesty unassigned from issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-748641824) at 2021-01-10 01:35 PM PST -ExperimentsInHonesty,2021-01-10T21:42:18Z,- ExperimentsInHonesty assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-753667535) at 2021-01-10 01:42 PM PST -ExperimentsInHonesty,2021-01-10T21:43:52Z,- ExperimentsInHonesty commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-757548975) at 2021-01-10 01:43 PM PST -ExperimentsInHonesty,2021-01-10T22:02:54Z,- ExperimentsInHonesty commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757551615) at 2021-01-10 02:02 PM PST -ExperimentsInHonesty,2021-01-11T20:25:02Z,- ExperimentsInHonesty opened issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-11 12:25 PM PST -ExperimentsInHonesty,2021-01-13T18:15:19Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-759628170) at 2021-01-13 10:15 AM PST -ExperimentsInHonesty,2021-01-13T18:18:35Z,- ExperimentsInHonesty commented on issue: [893](https://github.com/hackforla/website/issues/893#issuecomment-759629981) at 2021-01-13 10:18 AM PST -ExperimentsInHonesty,2021-01-13T18:18:35Z,- ExperimentsInHonesty closed issue as completed: [893](https://github.com/hackforla/website/issues/893#event-4202590569) at 2021-01-13 10:18 AM PST -ExperimentsInHonesty,2021-01-13T20:31:46Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-759721995) at 2021-01-13 12:31 PM PST -ExperimentsInHonesty,2021-01-13T20:35:08Z,- ExperimentsInHonesty closed issue as completed: [915](https://github.com/hackforla/website/issues/915#event-4203112330) at 2021-01-13 12:35 PM PST -ExperimentsInHonesty,2021-01-18T17:53:46Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-762395117) at 2021-01-18 09:53 AM PST -ExperimentsInHonesty,2021-01-22T19:08:00Z,- ExperimentsInHonesty assigned to issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-757540777) at 2021-01-22 11:08 AM PST -ExperimentsInHonesty,2021-01-24T19:55:35Z,- ExperimentsInHonesty opened issue: [963](https://github.com/hackforla/website/issues/963) at 2021-01-24 11:55 AM PST -ExperimentsInHonesty,2021-01-24T20:36:51Z,- ExperimentsInHonesty assigned to issue: [964](https://github.com/hackforla/website/issues/964) at 2021-01-24 12:36 PM PST -ExperimentsInHonesty,2021-01-24T20:54:58Z,- ExperimentsInHonesty opened issue: [965](https://github.com/hackforla/website/issues/965) at 2021-01-24 12:54 PM PST -ExperimentsInHonesty,2021-01-24T20:55:50Z,- ExperimentsInHonesty assigned to issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-766430442) at 2021-01-24 12:55 PM PST -ExperimentsInHonesty,2021-01-24T20:57:20Z,- ExperimentsInHonesty assigned to issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-766307893) at 2021-01-24 12:57 PM PST -ExperimentsInHonesty,2021-01-27T01:57:17Z,- ExperimentsInHonesty commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-767956609) at 2021-01-26 05:57 PM PST -ExperimentsInHonesty,2021-01-30T10:07:14Z,- ExperimentsInHonesty unassigned from issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-766430442) at 2021-01-30 02:07 AM PST -ExperimentsInHonesty,2021-01-31T20:39:02Z,- ExperimentsInHonesty commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770446849) at 2021-01-31 12:39 PM PST -ExperimentsInHonesty,2021-01-31T20:39:03Z,- ExperimentsInHonesty closed issue as completed: [937](https://github.com/hackforla/website/issues/937#event-4270741609) at 2021-01-31 12:39 PM PST -ExperimentsInHonesty,2021-01-31T20:42:21Z,- ExperimentsInHonesty commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770447358) at 2021-01-31 12:42 PM PST -ExperimentsInHonesty,2021-01-31T20:42:21Z,- ExperimentsInHonesty reopened issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770447358) at 2021-01-31 12:42 PM PST -ExperimentsInHonesty,2021-01-31T20:42:24Z,- ExperimentsInHonesty closed issue as completed: [937](https://github.com/hackforla/website/issues/937#event-4270745002) at 2021-01-31 12:42 PM PST -ExperimentsInHonesty,2021-02-03T05:12:21Z,- ExperimentsInHonesty opened issue: [989](https://github.com/hackforla/website/issues/989) at 2021-02-02 09:12 PM PST -ExperimentsInHonesty,2021-02-03T05:28:31Z,- ExperimentsInHonesty opened issue: [990](https://github.com/hackforla/website/issues/990) at 2021-02-02 09:28 PM PST -ExperimentsInHonesty,2021-02-03T05:40:40Z,- ExperimentsInHonesty opened issue: [991](https://github.com/hackforla/website/issues/991) at 2021-02-02 09:40 PM PST -ExperimentsInHonesty,2021-02-03T17:11:44Z,- ExperimentsInHonesty unassigned from issue: [192](https://github.com/hackforla/website/issues/192) at 2021-02-03 09:11 AM PST -ExperimentsInHonesty,2021-02-03T17:53:49Z,- ExperimentsInHonesty commented on issue: [188](https://github.com/hackforla/website/issues/188#issuecomment-772701066) at 2021-02-03 09:53 AM PST -ExperimentsInHonesty,2021-02-03T17:58:27Z,- ExperimentsInHonesty closed issue as completed: [188](https://github.com/hackforla/website/issues/188#event-4286731206) at 2021-02-03 09:58 AM PST -ExperimentsInHonesty,2021-02-03T20:02:03Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-772784187) at 2021-02-03 12:02 PM PST -ExperimentsInHonesty,2021-02-03T23:55:19Z,- ExperimentsInHonesty opened issue: [999](https://github.com/hackforla/website/issues/999) at 2021-02-03 03:55 PM PST -ExperimentsInHonesty,2021-02-04T00:16:15Z,- ExperimentsInHonesty commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-772919366) at 2021-02-03 04:16 PM PST -ExperimentsInHonesty,2021-02-04T00:37:32Z,- ExperimentsInHonesty assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -ExperimentsInHonesty,2021-02-04T00:37:59Z,- ExperimentsInHonesty commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-772934983) at 2021-02-03 04:37 PM PST -ExperimentsInHonesty,2021-02-04T01:03:12Z,- ExperimentsInHonesty commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-772944550) at 2021-02-03 05:03 PM PST -ExperimentsInHonesty,2021-02-04T01:06:07Z,- ExperimentsInHonesty closed issue as completed: [984](https://github.com/hackforla/website/issues/984#event-4288330262) at 2021-02-03 05:06 PM PST -ExperimentsInHonesty,2021-02-04T01:09:17Z,- ExperimentsInHonesty commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-772946748) at 2021-02-03 05:09 PM PST -ExperimentsInHonesty,2021-02-08T01:54:04Z,- ExperimentsInHonesty commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774816933) at 2021-02-07 05:54 PM PST -ExperimentsInHonesty,2021-02-08T20:53:22Z,- ExperimentsInHonesty commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-775453646) at 2021-02-08 12:53 PM PST -ExperimentsInHonesty,2021-02-08T22:39:25Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585990030) at 2021-02-08 02:39 PM PST -ExperimentsInHonesty,2021-02-08T22:39:38Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585990160) at 2021-02-08 02:39 PM PST -ExperimentsInHonesty,2021-02-08T22:39:46Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585990254) at 2021-02-08 02:39 PM PST -ExperimentsInHonesty,2021-02-08T22:44:02Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585992667) at 2021-02-08 02:44 PM PST -ExperimentsInHonesty,2021-02-08T22:44:45Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585993054) at 2021-02-08 02:44 PM PST -ExperimentsInHonesty,2021-02-08T22:48:40Z,- ExperimentsInHonesty commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-775515422) at 2021-02-08 02:48 PM PST -ExperimentsInHonesty,2021-02-09T06:23:47Z,- ExperimentsInHonesty commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-775702069) at 2021-02-08 10:23 PM PST -ExperimentsInHonesty,2021-02-09T06:40:33Z,- ExperimentsInHonesty opened issue: [1024](https://github.com/hackforla/website/issues/1024) at 2021-02-08 10:40 PM PST -ExperimentsInHonesty,2021-02-10T19:50:06Z,- ExperimentsInHonesty closed issue as completed: [950](https://github.com/hackforla/website/issues/950#event-4316665487) at 2021-02-10 11:50 AM PST -ExperimentsInHonesty,2021-02-10T19:50:09Z,- ExperimentsInHonesty reopened issue: [950](https://github.com/hackforla/website/issues/950#event-4316665487) at 2021-02-10 11:50 AM PST -ExperimentsInHonesty,2021-02-10T20:11:53Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-776993156) at 2021-02-10 12:11 PM PST -ExperimentsInHonesty,2021-02-10T20:15:39Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-776996800) at 2021-02-10 12:15 PM PST -ExperimentsInHonesty,2021-02-10T20:17:01Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-776999473) at 2021-02-10 12:17 PM PST -ExperimentsInHonesty,2021-02-10T20:17:28Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777000366) at 2021-02-10 12:17 PM PST -ExperimentsInHonesty,2021-02-10T20:20:07Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777003286) at 2021-02-10 12:20 PM PST -ExperimentsInHonesty,2021-02-10T20:21:55Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777004278) at 2021-02-10 12:21 PM PST -ExperimentsInHonesty,2021-02-10T20:26:08Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777006641) at 2021-02-10 12:26 PM PST -ExperimentsInHonesty,2021-02-10T20:29:17Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777008362) at 2021-02-10 12:29 PM PST -ExperimentsInHonesty,2021-02-14T04:19:17Z,- ExperimentsInHonesty assigned to issue: [1040](https://github.com/hackforla/website/issues/1040) at 2021-02-13 08:19 PM PST -ExperimentsInHonesty,2021-02-14T18:18:04Z,- ExperimentsInHonesty opened issue: [1053](https://github.com/hackforla/website/issues/1053) at 2021-02-14 10:18 AM PST -ExperimentsInHonesty,2021-02-14T18:21:58Z,- ExperimentsInHonesty commented on issue: [1053](https://github.com/hackforla/website/issues/1053#issuecomment-778818493) at 2021-02-14 10:21 AM PST -ExperimentsInHonesty,2021-02-14T18:24:38Z,- ExperimentsInHonesty commented on issue: [1013](https://github.com/hackforla/website/issues/1013#issuecomment-778818940) at 2021-02-14 10:24 AM PST -ExperimentsInHonesty,2021-02-14T18:24:38Z,- ExperimentsInHonesty closed issue as completed: [1013](https://github.com/hackforla/website/issues/1013#event-4328982871) at 2021-02-14 10:24 AM PST -ExperimentsInHonesty,2021-02-19T02:30:16Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-781771017) at 2021-02-18 06:30 PM PST -ExperimentsInHonesty,2021-02-19T02:39:36Z,- ExperimentsInHonesty opened issue: [1077](https://github.com/hackforla/website/issues/1077) at 2021-02-18 06:39 PM PST -ExperimentsInHonesty,2021-02-21T18:23:59Z,- ExperimentsInHonesty commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-782902247) at 2021-02-21 10:23 AM PST -ExperimentsInHonesty,2021-02-21T18:24:42Z,- ExperimentsInHonesty commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-782902354) at 2021-02-21 10:24 AM PST -ExperimentsInHonesty,2021-02-21T18:47:56Z,- ExperimentsInHonesty commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782905744) at 2021-02-21 10:47 AM PST -ExperimentsInHonesty,2021-02-21T19:02:05Z,- ExperimentsInHonesty commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-782907845) at 2021-02-21 11:02 AM PST -ExperimentsInHonesty,2021-02-21T19:39:04Z,- ExperimentsInHonesty commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782913229) at 2021-02-21 11:39 AM PST -ExperimentsInHonesty,2021-02-24T01:06:50Z,- ExperimentsInHonesty opened issue: [1096](https://github.com/hackforla/website/issues/1096) at 2021-02-23 05:06 PM PST -ExperimentsInHonesty,2021-02-24T18:42:43Z,- ExperimentsInHonesty commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-785289923) at 2021-02-24 10:42 AM PST -ExperimentsInHonesty,2021-02-24T22:30:53Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-785427876) at 2021-02-24 02:30 PM PST -ExperimentsInHonesty,2021-02-24T22:52:26Z,- ExperimentsInHonesty commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-785437722) at 2021-02-24 02:52 PM PST -ExperimentsInHonesty,2021-02-24T23:13:57Z,- ExperimentsInHonesty commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-785456279) at 2021-02-24 03:13 PM PST -ExperimentsInHonesty,2021-02-24T23:17:36Z,- ExperimentsInHonesty commented on issue: [915](https://github.com/hackforla/website/issues/915#issuecomment-785457740) at 2021-02-24 03:17 PM PST -ExperimentsInHonesty,2021-02-26T20:30:14Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-786877971) at 2021-02-26 12:30 PM PST -ExperimentsInHonesty,2021-02-26T21:48:23Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-786911703) at 2021-02-26 01:48 PM PST -ExperimentsInHonesty,2021-02-26T22:39:11Z,- ExperimentsInHonesty assigned to issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-786571819) at 2021-02-26 02:39 PM PST -ExperimentsInHonesty,2021-02-28T21:42:01Z,- ExperimentsInHonesty commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-787528153) at 2021-02-28 01:42 PM PST -ExperimentsInHonesty,2021-02-28T21:43:01Z,- ExperimentsInHonesty unassigned from issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-787528153) at 2021-02-28 01:43 PM PST -ExperimentsInHonesty,2021-02-28T21:59:19Z,- ExperimentsInHonesty commented on issue: [1131](https://github.com/hackforla/website/issues/1131#issuecomment-787530780) at 2021-02-28 01:59 PM PST -ExperimentsInHonesty,2021-02-28T22:28:36Z,- ExperimentsInHonesty commented on issue: [1131](https://github.com/hackforla/website/issues/1131#issuecomment-787535979) at 2021-02-28 02:28 PM PST -ExperimentsInHonesty,2021-02-28T22:44:23Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-787538263) at 2021-02-28 02:44 PM PST -ExperimentsInHonesty,2021-03-01T17:39:30Z,- ExperimentsInHonesty commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-788136400) at 2021-03-01 09:39 AM PST -ExperimentsInHonesty,2021-03-01T17:39:30Z,- ExperimentsInHonesty closed issue as completed: [867](https://github.com/hackforla/website/issues/867#event-4390985864) at 2021-03-01 09:39 AM PST -ExperimentsInHonesty,2021-03-01T17:55:05Z,- ExperimentsInHonesty opened issue: [1144](https://github.com/hackforla/website/issues/1144) at 2021-03-01 09:55 AM PST -ExperimentsInHonesty,2021-03-01T18:06:30Z,- ExperimentsInHonesty commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-788154694) at 2021-03-01 10:06 AM PST -ExperimentsInHonesty,2021-03-01T18:32:52Z,- ExperimentsInHonesty commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-788172848) at 2021-03-01 10:32 AM PST -ExperimentsInHonesty,2021-03-01T18:35:22Z,- ExperimentsInHonesty commented on issue: [964](https://github.com/hackforla/website/issues/964#issuecomment-788174568) at 2021-03-01 10:35 AM PST -ExperimentsInHonesty,2021-03-01T18:35:22Z,- ExperimentsInHonesty closed issue as completed: [964](https://github.com/hackforla/website/issues/964#event-4391251652) at 2021-03-01 10:35 AM PST -ExperimentsInHonesty,2021-03-01T18:36:40Z,- ExperimentsInHonesty unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-03-01 10:36 AM PST -ExperimentsInHonesty,2021-03-01T18:48:39Z,- ExperimentsInHonesty commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788182866) at 2021-03-01 10:48 AM PST -ExperimentsInHonesty,2021-03-01T19:47:42Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-788221965) at 2021-03-01 11:47 AM PST -ExperimentsInHonesty,2021-03-05T18:11:24Z,- ExperimentsInHonesty opened pull request: [1161](https://github.com/hackforla/website/pull/1161) at 2021-03-05 10:11 AM PST -ExperimentsInHonesty,2021-03-05T18:18:02Z,- ExperimentsInHonesty pull request merged: [1161](https://github.com/hackforla/website/pull/1161#event-4414883176) at 2021-03-05 10:18 AM PST -ExperimentsInHonesty,2021-03-07T18:10:07Z,- ExperimentsInHonesty assigned to issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-792326190) at 2021-03-07 10:10 AM PST -ExperimentsInHonesty,2021-03-10T19:02:52Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-795919783) at 2021-03-10 11:02 AM PST -ExperimentsInHonesty,2021-03-10T19:09:38Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-795929145) at 2021-03-10 11:09 AM PST -ExperimentsInHonesty,2021-03-10T19:15:43Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-795938097) at 2021-03-10 11:15 AM PST -ExperimentsInHonesty,2021-03-10T20:18:39Z,- ExperimentsInHonesty unassigned from issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-795582340) at 2021-03-10 12:18 PM PST -ExperimentsInHonesty,2021-03-10T21:01:52Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796099383) at 2021-03-10 01:01 PM PST -ExperimentsInHonesty,2021-03-10T21:03:03Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796101634) at 2021-03-10 01:03 PM PST -ExperimentsInHonesty,2021-03-11T00:02:08Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796304739) at 2021-03-10 04:02 PM PST -ExperimentsInHonesty,2021-03-11T04:44:37Z,- ExperimentsInHonesty unassigned from issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796304739) at 2021-03-10 08:44 PM PST -ExperimentsInHonesty,2021-03-16T03:44:05Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-799921647) at 2021-03-15 08:44 PM PDT -ExperimentsInHonesty,2021-03-17T18:44:26Z,- ExperimentsInHonesty commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-801324216) at 2021-03-17 11:44 AM PDT -ExperimentsInHonesty,2021-03-17T18:56:20Z,- ExperimentsInHonesty commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-801331285) at 2021-03-17 11:56 AM PDT -ExperimentsInHonesty,2021-03-17T19:05:06Z,- ExperimentsInHonesty commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-801336814) at 2021-03-17 12:05 PM PDT -ExperimentsInHonesty,2021-03-17T19:05:06Z,- ExperimentsInHonesty closed issue as completed: [854](https://github.com/hackforla/website/issues/854#event-4472083355) at 2021-03-17 12:05 PM PDT -ExperimentsInHonesty,2021-03-17T20:10:54Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-801406331) at 2021-03-17 01:10 PM PDT -ExperimentsInHonesty,2021-03-17T21:05:03Z,- ExperimentsInHonesty commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801442257) at 2021-03-17 02:05 PM PDT -ExperimentsInHonesty,2021-03-17T21:05:45Z,- ExperimentsInHonesty commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801442651) at 2021-03-17 02:05 PM PDT -ExperimentsInHonesty,2021-03-18T19:26:38Z,- ExperimentsInHonesty commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-802225984) at 2021-03-18 12:26 PM PDT -ExperimentsInHonesty,2021-03-21T19:47:40Z,- ExperimentsInHonesty assigned to issue: [1287](https://github.com/hackforla/website/issues/1287) at 2021-03-21 12:47 PM PDT -ExperimentsInHonesty,2021-03-23T21:57:21Z,- ExperimentsInHonesty opened issue: [1315](https://github.com/hackforla/website/issues/1315) at 2021-03-23 02:57 PM PDT -ExperimentsInHonesty,2021-03-24T02:34:54Z,- ExperimentsInHonesty commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-805436640) at 2021-03-23 07:34 PM PDT -ExperimentsInHonesty,2021-03-24T22:28:48Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-806225940) at 2021-03-24 03:28 PM PDT -ExperimentsInHonesty,2021-03-24T22:29:58Z,- ExperimentsInHonesty commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-806226442) at 2021-03-24 03:29 PM PDT -ExperimentsInHonesty,2021-03-24T22:33:04Z,- ExperimentsInHonesty commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-806227703) at 2021-03-24 03:33 PM PDT -ExperimentsInHonesty,2021-03-25T00:00:32Z,- ExperimentsInHonesty commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-806259667) at 2021-03-24 05:00 PM PDT -ExperimentsInHonesty,2021-03-26T01:28:25Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-807862490) at 2021-03-25 06:28 PM PDT -ExperimentsInHonesty,2021-03-26T04:11:36Z,- ExperimentsInHonesty commented on issue: [1321](https://github.com/hackforla/website/issues/1321#issuecomment-807922030) at 2021-03-25 09:11 PM PDT -ExperimentsInHonesty,2021-03-31T17:44:46Z,- ExperimentsInHonesty commented on issue: [1341](https://github.com/hackforla/website/issues/1341#issuecomment-811283794) at 2021-03-31 10:44 AM PDT -ExperimentsInHonesty,2021-03-31T18:30:26Z,- ExperimentsInHonesty unassigned from issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811310035) at 2021-03-31 11:30 AM PDT -ExperimentsInHonesty,2021-03-31T21:16:07Z,- ExperimentsInHonesty opened issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-03-31 02:16 PM PDT -ExperimentsInHonesty,2021-03-31T22:29:12Z,- ExperimentsInHonesty opened issue: [1346](https://github.com/hackforla/website/issues/1346) at 2021-03-31 03:29 PM PDT -ExperimentsInHonesty,2021-04-04T17:06:55Z,- ExperimentsInHonesty commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-813066304) at 2021-04-04 10:06 AM PDT -ExperimentsInHonesty,2021-04-04T17:15:39Z,- ExperimentsInHonesty commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-813067473) at 2021-04-04 10:15 AM PDT -ExperimentsInHonesty,2021-04-04T17:46:25Z,- ExperimentsInHonesty commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-813071999) at 2021-04-04 10:46 AM PDT -ExperimentsInHonesty,2021-04-04T17:48:18Z,- ExperimentsInHonesty commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-813072237) at 2021-04-04 10:48 AM PDT -ExperimentsInHonesty,2021-04-07T17:30:05Z,- ExperimentsInHonesty opened pull request: [1369](https://github.com/hackforla/website/pull/1369) at 2021-04-07 10:30 AM PDT -ExperimentsInHonesty,2021-04-07T17:37:59Z,- ExperimentsInHonesty commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-815097979) at 2021-04-07 10:37 AM PDT -ExperimentsInHonesty,2021-04-07T17:42:16Z,- ExperimentsInHonesty commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-815100652) at 2021-04-07 10:42 AM PDT -ExperimentsInHonesty,2021-04-07T17:52:39Z,- ExperimentsInHonesty commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-815107125) at 2021-04-07 10:52 AM PDT -ExperimentsInHonesty,2021-04-07T17:52:39Z,- ExperimentsInHonesty closed issue as completed: [602](https://github.com/hackforla/website/issues/602#event-4563962725) at 2021-04-07 10:52 AM PDT -ExperimentsInHonesty,2021-04-07T17:52:54Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-815107277) at 2021-04-07 10:52 AM PDT -ExperimentsInHonesty,2021-04-07T17:53:12Z,- ExperimentsInHonesty commented on issue: [594](https://github.com/hackforla/website/issues/594#issuecomment-815107465) at 2021-04-07 10:53 AM PDT -ExperimentsInHonesty,2021-04-07T17:53:12Z,- ExperimentsInHonesty closed issue as completed: [594](https://github.com/hackforla/website/issues/594#event-4563965118) at 2021-04-07 10:53 AM PDT -ExperimentsInHonesty,2021-04-07T17:56:37Z,- ExperimentsInHonesty commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-815109680) at 2021-04-07 10:56 AM PDT -ExperimentsInHonesty,2021-04-07T18:22:25Z,- ExperimentsInHonesty commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-815126267) at 2021-04-07 11:22 AM PDT -ExperimentsInHonesty,2021-04-07T18:26:55Z,- ExperimentsInHonesty commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-815129199) at 2021-04-07 11:26 AM PDT -ExperimentsInHonesty,2021-04-07T18:41:10Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-815138371) at 2021-04-07 11:41 AM PDT -ExperimentsInHonesty,2021-04-08T02:24:46Z,- ExperimentsInHonesty opened pull request: [1373](https://github.com/hackforla/website/pull/1373) at 2021-04-07 07:24 PM PDT -ExperimentsInHonesty,2021-04-08T02:31:10Z,- ExperimentsInHonesty pull request merged: [1373](https://github.com/hackforla/website/pull/1373#event-4565991789) at 2021-04-07 07:31 PM PDT -ExperimentsInHonesty,2021-04-08T02:38:29Z,- ExperimentsInHonesty pull request merged: [1369](https://github.com/hackforla/website/pull/1369#event-4566008183) at 2021-04-07 07:38 PM PDT -ExperimentsInHonesty,2021-04-08T21:45:52Z,- ExperimentsInHonesty assigned to issue: [1381](https://github.com/hackforla/website/issues/1381) at 2021-04-08 02:45 PM PDT -ExperimentsInHonesty,2021-04-11T16:29:10Z,- ExperimentsInHonesty assigned to issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-817333918) at 2021-04-11 09:29 AM PDT -ExperimentsInHonesty,2021-04-13T23:14:12Z,- ExperimentsInHonesty commented on pull request: [1400](https://github.com/hackforla/website/pull/1400#issuecomment-819110449) at 2021-04-13 04:14 PM PDT -ExperimentsInHonesty,2021-04-14T18:43:29Z,- ExperimentsInHonesty commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-819748459) at 2021-04-14 11:43 AM PDT -ExperimentsInHonesty,2021-04-14T18:49:41Z,- ExperimentsInHonesty commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-819752121) at 2021-04-14 11:49 AM PDT -ExperimentsInHonesty,2021-04-18T16:08:48Z,- ExperimentsInHonesty unassigned from issue: [1381](https://github.com/hackforla/website/issues/1381#issuecomment-816247959) at 2021-04-18 09:08 AM PDT -ExperimentsInHonesty,2021-04-23T00:45:20Z,- ExperimentsInHonesty commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-825304909) at 2021-04-22 05:45 PM PDT -ExperimentsInHonesty,2021-04-23T03:29:48Z,- ExperimentsInHonesty commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-825360799) at 2021-04-22 08:29 PM PDT -ExperimentsInHonesty,2021-04-26T17:12:45Z,- ExperimentsInHonesty commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-827006971) at 2021-04-26 10:12 AM PDT -ExperimentsInHonesty,2021-04-26T17:49:17Z,- ExperimentsInHonesty commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-827029843) at 2021-04-26 10:49 AM PDT -ExperimentsInHonesty,2021-04-28T00:26:11Z,- ExperimentsInHonesty opened pull request: [1476](https://github.com/hackforla/website/pull/1476) at 2021-04-27 05:26 PM PDT -ExperimentsInHonesty,2021-04-28T00:35:09Z,- ExperimentsInHonesty pull request merged: [1476](https://github.com/hackforla/website/pull/1476#event-4653803082) at 2021-04-27 05:35 PM PDT -ExperimentsInHonesty,2021-05-15T15:23:48Z,- ExperimentsInHonesty assigned to issue: [1543](https://github.com/hackforla/website/issues/1543) at 2021-05-15 08:23 AM PDT -ExperimentsInHonesty,2021-05-25T19:55:53Z,- ExperimentsInHonesty opened issue: [1630](https://github.com/hackforla/website/issues/1630) at 2021-05-25 12:55 PM PDT -ExperimentsInHonesty,2021-05-25T20:05:28Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-848223610) at 2021-05-25 01:05 PM PDT -ExperimentsInHonesty,2021-05-25T20:11:09Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-848227034) at 2021-05-25 01:11 PM PDT -ExperimentsInHonesty,2021-05-25T20:19:26Z,- ExperimentsInHonesty opened pull request: [1631](https://github.com/hackforla/website/pull/1631) at 2021-05-25 01:19 PM PDT -ExperimentsInHonesty,2021-05-25T20:20:03Z,- ExperimentsInHonesty pull request merged: [1631](https://github.com/hackforla/website/pull/1631#event-4795027424) at 2021-05-25 01:20 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:01Z,- ExperimentsInHonesty opened pull request: [1632](https://github.com/hackforla/website/pull/1632) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:07Z,- ExperimentsInHonesty pull request merged: [1632](https://github.com/hackforla/website/pull/1632#event-4795082531) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:43Z,- ExperimentsInHonesty opened pull request: [1633](https://github.com/hackforla/website/pull/1633) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:54Z,- ExperimentsInHonesty pull request merged: [1633](https://github.com/hackforla/website/pull/1633#event-4795086013) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:34:18Z,- ExperimentsInHonesty opened pull request: [1634](https://github.com/hackforla/website/pull/1634) at 2021-05-25 01:34 PM PDT -ExperimentsInHonesty,2021-05-25T20:34:30Z,- ExperimentsInHonesty pull request merged: [1634](https://github.com/hackforla/website/pull/1634#event-4795093140) at 2021-05-25 01:34 PM PDT -ExperimentsInHonesty,2021-05-30T17:22:08Z,- ExperimentsInHonesty assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:22 AM PDT -ExperimentsInHonesty,2021-06-08T19:52:23Z,- ExperimentsInHonesty unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-803630058) at 2021-06-08 12:52 PM PDT -ExperimentsInHonesty,2021-06-12T10:09:12Z,- ExperimentsInHonesty closed issue as completed: [312](https://github.com/hackforla/website/issues/312#event-4881095493) at 2021-06-12 03:09 AM PDT -ExperimentsInHonesty,2021-06-20T20:56:25Z,- ExperimentsInHonesty assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -ExperimentsInHonesty,2021-06-20T22:15:50Z,- ExperimentsInHonesty assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -ExperimentsInHonesty,2021-06-24T23:36:03Z,- ExperimentsInHonesty commented on issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-868037751) at 2021-06-24 04:36 PM PDT -ExperimentsInHonesty,2021-06-28T16:22:47Z,- ExperimentsInHonesty commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-869824830) at 2021-06-28 09:22 AM PDT -ExperimentsInHonesty,2021-06-28T20:47:43Z,- ExperimentsInHonesty commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-870030263) at 2021-06-28 01:47 PM PDT -ExperimentsInHonesty,2021-07-01T00:49:30Z,- ExperimentsInHonesty reopened issue: [1851](https://github.com/hackforla/website/issues/1851#event-4949482556) at 2021-06-30 05:49 PM PDT -ExperimentsInHonesty,2021-07-06T01:25:14Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-874395859) at 2021-07-05 06:25 PM PDT -ExperimentsInHonesty,2021-07-06T01:25:54Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-874396008) at 2021-07-05 06:25 PM PDT -ExperimentsInHonesty,2021-07-11T17:30:17Z,- ExperimentsInHonesty commented on issue: [1843](https://github.com/hackforla/website/issues/1843#issuecomment-877835897) at 2021-07-11 10:30 AM PDT -ExperimentsInHonesty,2021-07-11T17:30:17Z,- ExperimentsInHonesty closed issue as completed: [1843](https://github.com/hackforla/website/issues/1843#event-5004370674) at 2021-07-11 10:30 AM PDT -ExperimentsInHonesty,2021-07-11T17:37:50Z,- ExperimentsInHonesty commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877836825) at 2021-07-11 10:37 AM PDT -ExperimentsInHonesty,2021-07-11T17:38:52Z,- ExperimentsInHonesty commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877836926) at 2021-07-11 10:38 AM PDT -ExperimentsInHonesty,2021-07-11T17:42:08Z,- ExperimentsInHonesty commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-877837319) at 2021-07-11 10:42 AM PDT -ExperimentsInHonesty,2021-07-11T17:43:27Z,- ExperimentsInHonesty commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-877837446) at 2021-07-11 10:43 AM PDT -ExperimentsInHonesty,2021-07-11T17:51:35Z,- ExperimentsInHonesty commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-877838271) at 2021-07-11 10:51 AM PDT -ExperimentsInHonesty,2021-07-11T20:09:08Z,- ExperimentsInHonesty opened issue: [1921](https://github.com/hackforla/website/issues/1921) at 2021-07-11 01:09 PM PDT -ExperimentsInHonesty,2021-07-11T20:10:30Z,- ExperimentsInHonesty commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877854201) at 2021-07-11 01:10 PM PDT -ExperimentsInHonesty,2021-07-11T23:30:11Z,- ExperimentsInHonesty opened issue: [1923](https://github.com/hackforla/website/issues/1923) at 2021-07-11 04:30 PM PDT -ExperimentsInHonesty,2021-07-12T16:07:49Z,- ExperimentsInHonesty assigned to issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-877836659) at 2021-07-12 09:07 AM PDT -ExperimentsInHonesty,2021-07-13T00:06:50Z,- ExperimentsInHonesty commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-878677907) at 2021-07-12 05:06 PM PDT -ExperimentsInHonesty,2021-07-13T00:06:50Z,- ExperimentsInHonesty closed issue by PR 1837: [1671](https://github.com/hackforla/website/issues/1671#event-5010421573) at 2021-07-12 05:06 PM PDT -ExperimentsInHonesty,2021-07-13T16:47:44Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-879243171) at 2021-07-13 09:47 AM PDT -ExperimentsInHonesty,2021-07-13T16:54:10Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-879247288) at 2021-07-13 09:54 AM PDT -ExperimentsInHonesty,2021-07-13T16:55:54Z,- ExperimentsInHonesty unassigned from issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-879247288) at 2021-07-13 09:55 AM PDT -ExperimentsInHonesty,2021-07-14T01:23:48Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-879510071) at 2021-07-13 06:23 PM PDT -ExperimentsInHonesty,2021-07-14T01:26:52Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-879511001) at 2021-07-13 06:26 PM PDT -ExperimentsInHonesty,2021-07-14T01:26:52Z,- ExperimentsInHonesty closed issue as completed: [797](https://github.com/hackforla/website/issues/797#event-5016972148) at 2021-07-13 06:26 PM PDT -ExperimentsInHonesty,2021-07-14T01:54:21Z,- ExperimentsInHonesty closed issue as completed: [525](https://github.com/hackforla/website/issues/525#event-5017030989) at 2021-07-13 06:54 PM PDT -ExperimentsInHonesty,2021-07-14T01:55:05Z,- ExperimentsInHonesty reopened issue: [525](https://github.com/hackforla/website/issues/525#event-5017030989) at 2021-07-13 06:55 PM PDT -ExperimentsInHonesty,2021-07-14T03:53:45Z,- ExperimentsInHonesty commented on issue: [1887](https://github.com/hackforla/website/issues/1887#issuecomment-879564848) at 2021-07-13 08:53 PM PDT -ExperimentsInHonesty,2021-07-19T16:24:36Z,- ExperimentsInHonesty commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-882684713) at 2021-07-19 09:24 AM PDT -ExperimentsInHonesty,2021-07-19T16:31:16Z,- ExperimentsInHonesty commented on issue: [1323](https://github.com/hackforla/website/issues/1323#issuecomment-882689053) at 2021-07-19 09:31 AM PDT -ExperimentsInHonesty,2021-07-19T20:12:34Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-882828208) at 2021-07-19 01:12 PM PDT -ExperimentsInHonesty,2021-07-19T20:14:34Z,- ExperimentsInHonesty commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-882829554) at 2021-07-19 01:14 PM PDT -ExperimentsInHonesty,2021-07-19T20:16:52Z,- ExperimentsInHonesty commented on issue: [1086](https://github.com/hackforla/website/issues/1086#issuecomment-882831068) at 2021-07-19 01:16 PM PDT -ExperimentsInHonesty,2021-07-19T20:24:41Z,- ExperimentsInHonesty commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-882835911) at 2021-07-19 01:24 PM PDT -ExperimentsInHonesty,2021-07-19T20:27:01Z,- ExperimentsInHonesty commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-882837264) at 2021-07-19 01:27 PM PDT -ExperimentsInHonesty,2021-07-19T20:28:36Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-882838108) at 2021-07-19 01:28 PM PDT -ExperimentsInHonesty,2021-07-19T20:52:53Z,- ExperimentsInHonesty opened issue: [1975](https://github.com/hackforla/website/issues/1975) at 2021-07-19 01:52 PM PDT -ExperimentsInHonesty,2021-07-20T16:58:34Z,- ExperimentsInHonesty commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-883548369) at 2021-07-20 09:58 AM PDT -ExperimentsInHonesty,2021-07-20T19:31:32Z,- ExperimentsInHonesty opened issue: [1987](https://github.com/hackforla/website/issues/1987) at 2021-07-20 12:31 PM PDT -ExperimentsInHonesty,2021-07-20T19:33:22Z,- ExperimentsInHonesty commented on issue: [1987](https://github.com/hackforla/website/issues/1987#issuecomment-883642356) at 2021-07-20 12:33 PM PDT -ExperimentsInHonesty,2021-07-20T20:28:20Z,- ExperimentsInHonesty commented on issue: [1402](https://github.com/hackforla/website/issues/1402#issuecomment-883678796) at 2021-07-20 01:28 PM PDT -ExperimentsInHonesty,2021-07-20T20:28:20Z,- ExperimentsInHonesty closed issue as completed: [1402](https://github.com/hackforla/website/issues/1402#event-5046473190) at 2021-07-20 01:28 PM PDT -ExperimentsInHonesty,2021-07-20T20:30:44Z,- ExperimentsInHonesty commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-883682408) at 2021-07-20 01:30 PM PDT -ExperimentsInHonesty,2021-07-20T20:31:07Z,- ExperimentsInHonesty closed issue as completed: [1989](https://github.com/hackforla/website/issues/1989#event-5046484780) at 2021-07-20 01:31 PM PDT -ExperimentsInHonesty,2021-07-20T20:34:53Z,- ExperimentsInHonesty commented on issue: [1692](https://github.com/hackforla/website/issues/1692#issuecomment-883686810) at 2021-07-20 01:34 PM PDT -ExperimentsInHonesty,2021-07-20T20:34:53Z,- ExperimentsInHonesty closed issue as completed: [1692](https://github.com/hackforla/website/issues/1692#event-5046500685) at 2021-07-20 01:34 PM PDT -ExperimentsInHonesty,2021-07-20T20:41:56Z,- ExperimentsInHonesty commented on issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-883694809) at 2021-07-20 01:41 PM PDT -ExperimentsInHonesty,2021-07-21T14:47:03Z,- ExperimentsInHonesty opened issue: [1994](https://github.com/hackforla/website/issues/1994) at 2021-07-21 07:47 AM PDT -ExperimentsInHonesty,2021-07-21T14:54:14Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-884254547) at 2021-07-21 07:54 AM PDT -ExperimentsInHonesty,2021-07-21T16:09:42Z,- ExperimentsInHonesty commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-884311123) at 2021-07-21 09:09 AM PDT -ExperimentsInHonesty,2021-07-21T16:17:37Z,- ExperimentsInHonesty commented on issue: [1985](https://github.com/hackforla/website/issues/1985#issuecomment-884316852) at 2021-07-21 09:17 AM PDT -ExperimentsInHonesty,2021-07-21T19:57:55Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-884458557) at 2021-07-21 12:57 PM PDT -ExperimentsInHonesty,2021-07-21T20:09:35Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-884466170) at 2021-07-21 01:09 PM PDT -ExperimentsInHonesty,2021-07-21T22:23:49Z,- ExperimentsInHonesty commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884537708) at 2021-07-21 03:23 PM PDT -ExperimentsInHonesty,2021-07-21T22:24:39Z,- ExperimentsInHonesty commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884538047) at 2021-07-21 03:24 PM PDT -ExperimentsInHonesty,2021-07-21T22:51:40Z,- ExperimentsInHonesty commented on issue: [1996](https://github.com/hackforla/website/issues/1996#issuecomment-884547791) at 2021-07-21 03:51 PM PDT -ExperimentsInHonesty,2021-07-24T14:56:03Z,- ExperimentsInHonesty commented on pull request: [2005](https://github.com/hackforla/website/pull/2005#issuecomment-886064519) at 2021-07-24 07:56 AM PDT -ExperimentsInHonesty,2021-07-25T17:06:40Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-886230904) at 2021-07-25 10:06 AM PDT -ExperimentsInHonesty,2021-07-25T17:14:19Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-886231967) at 2021-07-25 10:14 AM PDT -ExperimentsInHonesty,2021-07-25T18:01:46Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-886237421) at 2021-07-25 11:01 AM PDT -ExperimentsInHonesty,2021-07-25T18:26:48Z,- ExperimentsInHonesty commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-886240212) at 2021-07-25 11:26 AM PDT -ExperimentsInHonesty,2021-07-25T20:04:01Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-886250856) at 2021-07-25 01:04 PM PDT -ExperimentsInHonesty,2021-07-25T20:15:47Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-886252289) at 2021-07-25 01:15 PM PDT -ExperimentsInHonesty,2021-07-25T20:20:54Z,- ExperimentsInHonesty commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-886252808) at 2021-07-25 01:20 PM PDT -ExperimentsInHonesty,2021-07-25T20:51:53Z,- ExperimentsInHonesty commented on issue: [192](https://github.com/hackforla/website/issues/192#issuecomment-886256196) at 2021-07-25 01:51 PM PDT -ExperimentsInHonesty,2021-07-25T20:51:53Z,- ExperimentsInHonesty closed issue as completed: [192](https://github.com/hackforla/website/issues/192#event-5065313736) at 2021-07-25 01:51 PM PDT -ExperimentsInHonesty,2021-07-25T21:16:38Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-886258887) at 2021-07-25 02:16 PM PDT -ExperimentsInHonesty,2021-07-26T02:50:51Z,- ExperimentsInHonesty unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-07-25 07:50 PM PDT -ExperimentsInHonesty,2021-07-26T02:56:17Z,- ExperimentsInHonesty closed issue as completed: [525](https://github.com/hackforla/website/issues/525#event-5065794667) at 2021-07-25 07:56 PM PDT -ExperimentsInHonesty,2021-07-31T02:23:13Z,- ExperimentsInHonesty opened issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-30 07:23 PM PDT -ExperimentsInHonesty,2021-07-31T03:25:22Z,- ExperimentsInHonesty opened issue: [2025](https://github.com/hackforla/website/issues/2025) at 2021-07-30 08:25 PM PDT -ExperimentsInHonesty,2021-07-31T03:30:18Z,- ExperimentsInHonesty commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890284371) at 2021-07-30 08:30 PM PDT -ExperimentsInHonesty,2021-07-31T03:36:22Z,- ExperimentsInHonesty commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890284833) at 2021-07-30 08:36 PM PDT -ExperimentsInHonesty,2021-07-31T03:47:36Z,- ExperimentsInHonesty commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-890285648) at 2021-07-30 08:47 PM PDT -ExperimentsInHonesty,2021-07-31T03:47:57Z,- ExperimentsInHonesty assigned to issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-890285648) at 2021-07-30 08:47 PM PDT -ExperimentsInHonesty,2021-07-31T04:08:02Z,- ExperimentsInHonesty commented on issue: [1216](https://github.com/hackforla/website/issues/1216#issuecomment-890287470) at 2021-07-30 09:08 PM PDT -ExperimentsInHonesty,2021-07-31T04:08:02Z,- ExperimentsInHonesty closed issue as completed: [1216](https://github.com/hackforla/website/issues/1216#event-5093989497) at 2021-07-30 09:08 PM PDT -ExperimentsInHonesty,2021-07-31T04:19:10Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-890288461) at 2021-07-30 09:19 PM PDT -ExperimentsInHonesty,2021-07-31T04:24:38Z,- ExperimentsInHonesty unassigned from issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-890288461) at 2021-07-30 09:24 PM PDT -ExperimentsInHonesty,2021-08-01T17:16:18Z,- ExperimentsInHonesty commented on issue: [1901](https://github.com/hackforla/website/issues/1901#issuecomment-890556963) at 2021-08-01 10:16 AM PDT -ExperimentsInHonesty,2021-08-01T17:25:06Z,- ExperimentsInHonesty commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-890558149) at 2021-08-01 10:25 AM PDT -ExperimentsInHonesty,2021-08-01T17:33:24Z,- ExperimentsInHonesty commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-890559137) at 2021-08-01 10:33 AM PDT -ExperimentsInHonesty,2021-08-01T18:21:31Z,- ExperimentsInHonesty commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-890565400) at 2021-08-01 11:21 AM PDT -ExperimentsInHonesty,2021-08-02T00:50:33Z,- ExperimentsInHonesty commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-890627703) at 2021-08-01 05:50 PM PDT -ExperimentsInHonesty,2021-08-02T00:56:24Z,- ExperimentsInHonesty commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-890630527) at 2021-08-01 05:56 PM PDT -ExperimentsInHonesty,2021-08-02T00:56:24Z,- ExperimentsInHonesty closed issue as completed: [1273](https://github.com/hackforla/website/issues/1273#event-5096133902) at 2021-08-01 05:56 PM PDT -ExperimentsInHonesty,2021-08-02T01:29:46Z,- ExperimentsInHonesty commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-890645395) at 2021-08-01 06:29 PM PDT -ExperimentsInHonesty,2021-08-02T16:21:32Z,- ExperimentsInHonesty commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-891157832) at 2021-08-02 09:21 AM PDT -ExperimentsInHonesty,2021-08-02T16:28:15Z,- ExperimentsInHonesty opened issue: [2033](https://github.com/hackforla/website/issues/2033) at 2021-08-02 09:28 AM PDT -ExperimentsInHonesty,2021-08-02T16:33:05Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-891165745) at 2021-08-02 09:33 AM PDT -ExperimentsInHonesty,2021-08-02T16:37:41Z,- ExperimentsInHonesty opened issue: [2034](https://github.com/hackforla/website/issues/2034) at 2021-08-02 09:37 AM PDT -ExperimentsInHonesty,2021-08-02T22:06:46Z,- ExperimentsInHonesty opened issue: [2037](https://github.com/hackforla/website/issues/2037) at 2021-08-02 03:06 PM PDT -ExperimentsInHonesty,2021-08-02T22:14:22Z,- ExperimentsInHonesty commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-891369616) at 2021-08-02 03:14 PM PDT -ExperimentsInHonesty,2021-08-03T17:01:21Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-892010406) at 2021-08-03 10:01 AM PDT -ExperimentsInHonesty,2021-08-03T19:28:36Z,- ExperimentsInHonesty commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-892106095) at 2021-08-03 12:28 PM PDT -ExperimentsInHonesty,2021-08-03T21:38:09Z,- ExperimentsInHonesty commented on issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-892183607) at 2021-08-03 02:38 PM PDT -ExperimentsInHonesty,2021-08-05T03:09:17Z,- ExperimentsInHonesty opened issue: [2064](https://github.com/hackforla/website/issues/2064) at 2021-08-04 08:09 PM PDT -ExperimentsInHonesty,2021-08-08T18:31:34Z,- ExperimentsInHonesty commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-894836917) at 2021-08-08 11:31 AM PDT -ExperimentsInHonesty,2021-08-08T18:35:53Z,- ExperimentsInHonesty commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-894837449) at 2021-08-08 11:35 AM PDT -ExperimentsInHonesty,2021-08-09T04:25:25Z,- ExperimentsInHonesty commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-894941855) at 2021-08-08 09:25 PM PDT -ExperimentsInHonesty,2021-08-09T18:17:59Z,- ExperimentsInHonesty assigned to issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-848227034) at 2021-08-09 11:17 AM PDT -ExperimentsInHonesty,2021-08-10T17:54:56Z,- ExperimentsInHonesty assigned to issue: [2096](https://github.com/hackforla/website/issues/2096) at 2021-08-10 10:54 AM PDT -ExperimentsInHonesty,2021-08-10T19:55:29Z,- ExperimentsInHonesty commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-896276578) at 2021-08-10 12:55 PM PDT -ExperimentsInHonesty,2021-08-10T19:56:20Z,- ExperimentsInHonesty commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-896277137) at 2021-08-10 12:56 PM PDT -ExperimentsInHonesty,2021-08-10T20:00:09Z,- ExperimentsInHonesty closed issue as completed: [1823](https://github.com/hackforla/website/issues/1823#event-5137498277) at 2021-08-10 01:00 PM PDT -ExperimentsInHonesty,2021-08-10T20:00:51Z,- ExperimentsInHonesty closed issue as completed: [1845](https://github.com/hackforla/website/issues/1845#event-5137502366) at 2021-08-10 01:00 PM PDT -ExperimentsInHonesty,2021-08-10T20:04:40Z,- ExperimentsInHonesty closed issue as completed: [2020](https://github.com/hackforla/website/issues/2020#event-5137522852) at 2021-08-10 01:04 PM PDT -ExperimentsInHonesty,2021-08-12T20:32:32Z,- ExperimentsInHonesty opened issue: [2105](https://github.com/hackforla/website/issues/2105) at 2021-08-12 01:32 PM PDT -ExperimentsInHonesty,2021-08-12T22:27:43Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-898009148) at 2021-08-12 03:27 PM PDT -ExperimentsInHonesty,2021-08-15T17:25:15Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-899084775) at 2021-08-15 10:25 AM PDT -ExperimentsInHonesty,2021-08-15T18:27:08Z,- ExperimentsInHonesty commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-899092317) at 2021-08-15 11:27 AM PDT -ExperimentsInHonesty,2021-08-15T18:47:35Z,- ExperimentsInHonesty commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-899094463) at 2021-08-15 11:47 AM PDT -ExperimentsInHonesty,2021-08-15T19:07:34Z,- ExperimentsInHonesty commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-899096644) at 2021-08-15 12:07 PM PDT -ExperimentsInHonesty,2021-08-15T19:31:30Z,- ExperimentsInHonesty commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-899099306) at 2021-08-15 12:31 PM PDT -ExperimentsInHonesty,2021-08-15T19:39:47Z,- ExperimentsInHonesty unassigned from issue: [2096](https://github.com/hackforla/website/issues/2096) at 2021-08-15 12:39 PM PDT -ExperimentsInHonesty,2021-08-15T19:46:53Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899100930) at 2021-08-15 12:46 PM PDT -ExperimentsInHonesty,2021-08-15T23:49:24Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899129475) at 2021-08-15 04:49 PM PDT -ExperimentsInHonesty,2021-08-16T16:34:43Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-899651077) at 2021-08-16 09:34 AM PDT -ExperimentsInHonesty,2021-08-16T16:49:42Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-899660477) at 2021-08-16 09:49 AM PDT -ExperimentsInHonesty,2021-08-17T19:48:59Z,- ExperimentsInHonesty closed issue as completed: [1697](https://github.com/hackforla/website/issues/1697#event-5170970907) at 2021-08-17 12:48 PM PDT -ExperimentsInHonesty,2021-08-17T20:04:46Z,- ExperimentsInHonesty reopened issue: [2096](https://github.com/hackforla/website/issues/2096#event-5171019965) at 2021-08-17 01:04 PM PDT -ExperimentsInHonesty,2021-08-17T20:08:00Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-900595702) at 2021-08-17 01:08 PM PDT -ExperimentsInHonesty,2021-08-18T16:48:31Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-901268976) at 2021-08-18 09:48 AM PDT -ExperimentsInHonesty,2021-08-18T16:58:05Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-901275320) at 2021-08-18 09:58 AM PDT -ExperimentsInHonesty,2021-08-18T19:26:41Z,- ExperimentsInHonesty opened issue: [2128](https://github.com/hackforla/website/issues/2128) at 2021-08-18 12:26 PM PDT -ExperimentsInHonesty,2021-08-18T19:27:16Z,- ExperimentsInHonesty commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-901372018) at 2021-08-18 12:27 PM PDT -ExperimentsInHonesty,2021-08-19T16:09:37Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-902041554) at 2021-08-19 09:09 AM PDT -ExperimentsInHonesty,2021-08-20T03:41:15Z,- ExperimentsInHonesty commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-902407089) at 2021-08-19 08:41 PM PDT -ExperimentsInHonesty,2021-08-21T16:48:31Z,- ExperimentsInHonesty commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-903143529) at 2021-08-21 09:48 AM PDT -ExperimentsInHonesty,2021-08-22T18:44:44Z,- ExperimentsInHonesty closed issue as completed: [2077](https://github.com/hackforla/website/issues/2077#event-5191133824) at 2021-08-22 11:44 AM PDT -ExperimentsInHonesty,2021-08-22T18:50:38Z,- ExperimentsInHonesty commented on issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-903313669) at 2021-08-22 11:50 AM PDT -ExperimentsInHonesty,2021-08-22T19:24:45Z,- ExperimentsInHonesty closed issue as completed: [2142](https://github.com/hackforla/website/issues/2142#event-5191168138) at 2021-08-22 12:24 PM PDT -ExperimentsInHonesty,2021-08-22T19:45:19Z,- ExperimentsInHonesty commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-903320653) at 2021-08-22 12:45 PM PDT -ExperimentsInHonesty,2021-08-23T23:26:56Z,- ExperimentsInHonesty opened issue: [2169](https://github.com/hackforla/website/issues/2169) at 2021-08-23 04:26 PM PDT -ExperimentsInHonesty,2021-08-23T23:28:16Z,- ExperimentsInHonesty commented on issue: [2163](https://github.com/hackforla/website/issues/2163#issuecomment-904202293) at 2021-08-23 04:28 PM PDT -ExperimentsInHonesty,2021-08-24T01:07:56Z,- ExperimentsInHonesty commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-904240007) at 2021-08-23 06:07 PM PDT -ExperimentsInHonesty,2021-08-25T19:34:59Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-905816873) at 2021-08-25 12:34 PM PDT -ExperimentsInHonesty,2021-08-27T05:32:20Z,- ExperimentsInHonesty commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-906937385) at 2021-08-26 10:32 PM PDT -ExperimentsInHonesty,2021-08-27T21:23:21Z,- ExperimentsInHonesty commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-907484054) at 2021-08-27 02:23 PM PDT -ExperimentsInHonesty,2021-08-27T21:25:27Z,- ExperimentsInHonesty commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-907485051) at 2021-08-27 02:25 PM PDT -ExperimentsInHonesty,2021-08-29T02:26:13Z,- ExperimentsInHonesty commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-907718418) at 2021-08-28 07:26 PM PDT -ExperimentsInHonesty,2021-08-29T18:27:53Z,- ExperimentsInHonesty commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-907844049) at 2021-08-29 11:27 AM PDT -ExperimentsInHonesty,2021-08-29T18:45:17Z,- ExperimentsInHonesty opened issue: [2202](https://github.com/hackforla/website/issues/2202) at 2021-08-29 11:45 AM PDT -ExperimentsInHonesty,2021-08-29T18:49:14Z,- ExperimentsInHonesty commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-907848919) at 2021-08-29 11:49 AM PDT -ExperimentsInHonesty,2021-08-29T19:44:13Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-907858407) at 2021-08-29 12:44 PM PDT -ExperimentsInHonesty,2021-08-29T22:17:45Z,- ExperimentsInHonesty commented on issue: [2203](https://github.com/hackforla/website/issues/2203#issuecomment-907884929) at 2021-08-29 03:17 PM PDT -ExperimentsInHonesty,2021-09-01T16:19:41Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-910443097) at 2021-09-01 09:19 AM PDT -ExperimentsInHonesty,2021-09-01T16:32:04Z,- ExperimentsInHonesty unassigned from issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-910443097) at 2021-09-01 09:32 AM PDT -ExperimentsInHonesty,2021-09-03T15:17:34Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-912615326) at 2021-09-03 08:17 AM PDT -ExperimentsInHonesty,2021-09-05T16:16:48Z,- ExperimentsInHonesty commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-913183831) at 2021-09-05 09:16 AM PDT -ExperimentsInHonesty,2021-09-05T16:19:23Z,- ExperimentsInHonesty commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-913184223) at 2021-09-05 09:19 AM PDT -ExperimentsInHonesty,2021-09-05T18:36:23Z,- ExperimentsInHonesty commented on issue: [1996](https://github.com/hackforla/website/issues/1996#issuecomment-913204054) at 2021-09-05 11:36 AM PDT -ExperimentsInHonesty,2021-09-05T18:37:08Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-913204138) at 2021-09-05 11:37 AM PDT -ExperimentsInHonesty,2021-09-05T18:39:12Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-913204386) at 2021-09-05 11:39 AM PDT -ExperimentsInHonesty,2021-09-05T20:57:44Z,- ExperimentsInHonesty commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-913226301) at 2021-09-05 01:57 PM PDT -ExperimentsInHonesty,2021-09-06T14:34:10Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-913695460) at 2021-09-06 07:34 AM PDT -ExperimentsInHonesty,2021-09-06T18:44:31Z,- ExperimentsInHonesty reopened issue: [916](https://github.com/hackforla/website/issues/916#event-4881229626) at 2021-09-06 11:44 AM PDT -ExperimentsInHonesty,2021-09-06T19:00:46Z,- ExperimentsInHonesty reopened issue: [918](https://github.com/hackforla/website/issues/918#event-4881135273) at 2021-09-06 12:00 PM PDT -ExperimentsInHonesty,2021-09-06T19:01:11Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-913813465) at 2021-09-06 12:01 PM PDT -ExperimentsInHonesty,2021-09-07T00:05:29Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-913905075) at 2021-09-06 05:05 PM PDT -ExperimentsInHonesty,2021-09-07T00:09:06Z,- ExperimentsInHonesty commented on issue: [2188](https://github.com/hackforla/website/issues/2188#issuecomment-913906162) at 2021-09-06 05:09 PM PDT -ExperimentsInHonesty,2021-09-07T00:20:31Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-913909062) at 2021-09-06 05:20 PM PDT -ExperimentsInHonesty,2021-09-07T00:24:23Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-913910010) at 2021-09-06 05:24 PM PDT -ExperimentsInHonesty,2021-09-07T19:37:49Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-914573921) at 2021-09-07 12:37 PM PDT -ExperimentsInHonesty,2021-09-07T19:46:48Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-914578453) at 2021-09-07 12:46 PM PDT -ExperimentsInHonesty,2021-09-07T19:55:16Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-914583010) at 2021-09-07 12:55 PM PDT -ExperimentsInHonesty,2021-09-07T20:28:27Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-914609135) at 2021-09-07 01:28 PM PDT -ExperimentsInHonesty,2021-09-08T19:12:54Z,- ExperimentsInHonesty submitted pull request review: [2241](https://github.com/hackforla/website/pull/2241#pullrequestreview-749521542) at 2021-09-08 12:12 PM PDT -ExperimentsInHonesty,2021-09-08T19:31:14Z,- ExperimentsInHonesty commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-915512188) at 2021-09-08 12:31 PM PDT -ExperimentsInHonesty,2021-09-08T19:31:55Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2021-09-08 12:31 PM PDT -ExperimentsInHonesty,2021-09-08T19:44:13Z,- ExperimentsInHonesty commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-915519861) at 2021-09-08 12:44 PM PDT -ExperimentsInHonesty,2021-09-08T19:50:14Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-915523412) at 2021-09-08 12:50 PM PDT -ExperimentsInHonesty,2021-09-08T19:56:00Z,- ExperimentsInHonesty assigned to issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-912950639) at 2021-09-08 12:56 PM PDT -ExperimentsInHonesty,2021-09-08T19:56:52Z,- ExperimentsInHonesty commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-915527644) at 2021-09-08 12:56 PM PDT -ExperimentsInHonesty,2021-09-08T20:21:40Z,- ExperimentsInHonesty commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915542974) at 2021-09-08 01:21 PM PDT -ExperimentsInHonesty,2021-09-08T23:06:25Z,- ExperimentsInHonesty commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915630828) at 2021-09-08 04:06 PM PDT -ExperimentsInHonesty,2021-09-09T16:05:08Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-916234559) at 2021-09-09 09:05 AM PDT -ExperimentsInHonesty,2021-09-10T17:31:17Z,- ExperimentsInHonesty commented on issue: [1842](https://github.com/hackforla/website/issues/1842#issuecomment-917083414) at 2021-09-10 10:31 AM PDT -ExperimentsInHonesty,2021-09-10T22:32:10Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-917251499) at 2021-09-10 03:32 PM PDT -ExperimentsInHonesty,2021-09-12T17:54:40Z,- ExperimentsInHonesty commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-917681123) at 2021-09-12 10:54 AM PDT -ExperimentsInHonesty,2021-09-12T18:32:39Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-917686983) at 2021-09-12 11:32 AM PDT -ExperimentsInHonesty,2021-09-12T18:48:11Z,- ExperimentsInHonesty commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-917689389) at 2021-09-12 11:48 AM PDT -ExperimentsInHonesty,2021-09-12T18:50:42Z,- ExperimentsInHonesty commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-917689781) at 2021-09-12 11:50 AM PDT -ExperimentsInHonesty,2021-09-13T14:44:07Z,- ExperimentsInHonesty commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-918266431) at 2021-09-13 07:44 AM PDT -ExperimentsInHonesty,2021-09-13T20:36:04Z,- ExperimentsInHonesty opened issue: [2255](https://github.com/hackforla/website/issues/2255) at 2021-09-13 01:36 PM PDT -ExperimentsInHonesty,2021-09-14T19:20:42Z,- ExperimentsInHonesty commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-919446430) at 2021-09-14 12:20 PM PDT -ExperimentsInHonesty,2021-09-15T19:09:01Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-920303375) at 2021-09-15 12:09 PM PDT -ExperimentsInHonesty,2021-09-15T19:14:16Z,- ExperimentsInHonesty commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-920306682) at 2021-09-15 12:14 PM PDT -ExperimentsInHonesty,2021-09-15T19:52:45Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-920330101) at 2021-09-15 12:52 PM PDT -ExperimentsInHonesty,2021-09-15T19:55:14Z,- ExperimentsInHonesty commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-920331613) at 2021-09-15 12:55 PM PDT -ExperimentsInHonesty,2021-09-15T21:35:43Z,- ExperimentsInHonesty opened issue: [2269](https://github.com/hackforla/website/issues/2269) at 2021-09-15 02:35 PM PDT -ExperimentsInHonesty,2021-09-15T21:39:53Z,- ExperimentsInHonesty commented on issue: [2269](https://github.com/hackforla/website/issues/2269#issuecomment-920401843) at 2021-09-15 02:39 PM PDT -ExperimentsInHonesty,2021-09-15T21:55:34Z,- ExperimentsInHonesty commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-920410010) at 2021-09-15 02:55 PM PDT -ExperimentsInHonesty,2021-09-15T22:56:00Z,- ExperimentsInHonesty opened issue: [2270](https://github.com/hackforla/website/issues/2270) at 2021-09-15 03:56 PM PDT -ExperimentsInHonesty,2021-09-15T23:05:29Z,- ExperimentsInHonesty opened issue: [2271](https://github.com/hackforla/website/issues/2271) at 2021-09-15 04:05 PM PDT -ExperimentsInHonesty,2021-09-15T23:08:57Z,- ExperimentsInHonesty opened issue: [2272](https://github.com/hackforla/website/issues/2272) at 2021-09-15 04:08 PM PDT -ExperimentsInHonesty,2021-09-15T23:11:28Z,- ExperimentsInHonesty opened issue: [2273](https://github.com/hackforla/website/issues/2273) at 2021-09-15 04:11 PM PDT -ExperimentsInHonesty,2021-09-15T23:16:40Z,- ExperimentsInHonesty opened issue: [2274](https://github.com/hackforla/website/issues/2274) at 2021-09-15 04:16 PM PDT -ExperimentsInHonesty,2021-09-15T23:28:01Z,- ExperimentsInHonesty opened issue: [2275](https://github.com/hackforla/website/issues/2275) at 2021-09-15 04:28 PM PDT -ExperimentsInHonesty,2021-09-15T23:31:03Z,- ExperimentsInHonesty opened issue: [2276](https://github.com/hackforla/website/issues/2276) at 2021-09-15 04:31 PM PDT -ExperimentsInHonesty,2021-09-15T23:40:38Z,- ExperimentsInHonesty opened issue: [2277](https://github.com/hackforla/website/issues/2277) at 2021-09-15 04:40 PM PDT -ExperimentsInHonesty,2021-09-15T23:44:04Z,- ExperimentsInHonesty opened issue: [2278](https://github.com/hackforla/website/issues/2278) at 2021-09-15 04:44 PM PDT -ExperimentsInHonesty,2021-09-15T23:47:12Z,- ExperimentsInHonesty opened issue: [2279](https://github.com/hackforla/website/issues/2279) at 2021-09-15 04:47 PM PDT -ExperimentsInHonesty,2021-09-15T23:50:18Z,- ExperimentsInHonesty opened issue: [2280](https://github.com/hackforla/website/issues/2280) at 2021-09-15 04:50 PM PDT -ExperimentsInHonesty,2021-09-16T21:59:59Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-921283924) at 2021-09-16 02:59 PM PDT -ExperimentsInHonesty,2021-09-17T16:18:18Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-921920962) at 2021-09-17 09:18 AM PDT -ExperimentsInHonesty,2021-09-17T16:22:01Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-921923284) at 2021-09-17 09:22 AM PDT -ExperimentsInHonesty,2021-09-17T16:40:57Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-921934656) at 2021-09-17 09:40 AM PDT -ExperimentsInHonesty,2021-09-19T00:41:11Z,- ExperimentsInHonesty commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-922394751) at 2021-09-18 05:41 PM PDT -ExperimentsInHonesty,2021-09-20T00:20:35Z,- ExperimentsInHonesty opened issue: [2287](https://github.com/hackforla/website/issues/2287) at 2021-09-19 05:20 PM PDT -ExperimentsInHonesty,2021-09-20T03:18:50Z,- ExperimentsInHonesty opened issue: [2288](https://github.com/hackforla/website/issues/2288) at 2021-09-19 08:18 PM PDT -ExperimentsInHonesty,2021-09-20T04:22:22Z,- ExperimentsInHonesty opened issue: [2289](https://github.com/hackforla/website/issues/2289) at 2021-09-19 09:22 PM PDT -ExperimentsInHonesty,2021-09-21T20:02:29Z,- ExperimentsInHonesty closed issue as completed: [2016](https://github.com/hackforla/website/issues/2016#event-5338386600) at 2021-09-21 01:02 PM PDT -ExperimentsInHonesty,2021-09-22T18:45:59Z,- ExperimentsInHonesty opened issue: [2301](https://github.com/hackforla/website/issues/2301) at 2021-09-22 11:45 AM PDT -ExperimentsInHonesty,2021-09-22T18:47:39Z,- ExperimentsInHonesty commented on issue: [2301](https://github.com/hackforla/website/issues/2301#issuecomment-925201665) at 2021-09-22 11:47 AM PDT -ExperimentsInHonesty,2021-09-24T15:17:47Z,- ExperimentsInHonesty commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-926709908) at 2021-09-24 08:17 AM PDT -ExperimentsInHonesty,2021-09-24T16:46:06Z,- ExperimentsInHonesty opened issue: [2304](https://github.com/hackforla/website/issues/2304) at 2021-09-24 09:46 AM PDT -ExperimentsInHonesty,2021-09-24T19:51:18Z,- ExperimentsInHonesty commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-926882186) at 2021-09-24 12:51 PM PDT -ExperimentsInHonesty,2021-09-26T14:34:41Z,- ExperimentsInHonesty commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-927316195) at 2021-09-26 07:34 AM PDT -ExperimentsInHonesty,2021-09-26T18:14:15Z,- ExperimentsInHonesty assigned to issue: [2309](https://github.com/hackforla/website/issues/2309) at 2021-09-26 11:14 AM PDT -ExperimentsInHonesty,2021-09-26T19:05:30Z,- ExperimentsInHonesty commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-927354528) at 2021-09-26 12:05 PM PDT -ExperimentsInHonesty,2021-09-26T23:01:53Z,- ExperimentsInHonesty commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-927387023) at 2021-09-26 04:01 PM PDT -ExperimentsInHonesty,2021-09-26T23:08:52Z,- ExperimentsInHonesty commented on issue: [1842](https://github.com/hackforla/website/issues/1842#issuecomment-927388481) at 2021-09-26 04:08 PM PDT -ExperimentsInHonesty,2021-09-26T23:24:33Z,- ExperimentsInHonesty commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-927392020) at 2021-09-26 04:24 PM PDT -ExperimentsInHonesty,2021-10-03T23:52:39Z,- ExperimentsInHonesty commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-933053132) at 2021-10-03 04:52 PM PDT -ExperimentsInHonesty,2021-10-04T00:02:00Z,- ExperimentsInHonesty commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-933054519) at 2021-10-03 05:02 PM PDT -ExperimentsInHonesty,2021-10-04T00:12:18Z,- ExperimentsInHonesty reopened issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-933054519) at 2021-10-03 05:12 PM PDT -ExperimentsInHonesty,2021-10-04T00:40:31Z,- ExperimentsInHonesty commented on issue: [2078](https://github.com/hackforla/website/issues/2078#issuecomment-933062398) at 2021-10-03 05:40 PM PDT -ExperimentsInHonesty,2021-10-04T05:02:50Z,- ExperimentsInHonesty closed issue as completed: [2207](https://github.com/hackforla/website/issues/2207#event-5401349369) at 2021-10-03 10:02 PM PDT -ExperimentsInHonesty,2021-10-06T16:20:30Z,- ExperimentsInHonesty commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-936600925) at 2021-10-06 09:20 AM PDT -ExperimentsInHonesty,2021-10-06T16:20:30Z,- ExperimentsInHonesty reopened issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-936600925) at 2021-10-06 09:20 AM PDT -ExperimentsInHonesty,2021-10-06T19:24:47Z,- ExperimentsInHonesty commented on issue: [2336](https://github.com/hackforla/website/issues/2336#issuecomment-936960331) at 2021-10-06 12:24 PM PDT -ExperimentsInHonesty,2021-10-06T19:24:59Z,- ExperimentsInHonesty commented on issue: [2336](https://github.com/hackforla/website/issues/2336#issuecomment-936960671) at 2021-10-06 12:24 PM PDT -ExperimentsInHonesty,2021-10-06T19:24:59Z,- ExperimentsInHonesty closed issue as completed: [2336](https://github.com/hackforla/website/issues/2336#event-5423373869) at 2021-10-06 12:24 PM PDT -ExperimentsInHonesty,2021-10-07T15:54:48Z,- ExperimentsInHonesty commented on issue: [2341](https://github.com/hackforla/website/issues/2341#issuecomment-937926424) at 2021-10-07 08:54 AM PDT -ExperimentsInHonesty,2021-10-07T16:31:09Z,- ExperimentsInHonesty commented on issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-937961584) at 2021-10-07 09:31 AM PDT -ExperimentsInHonesty,2021-10-10T17:40:47Z,- ExperimentsInHonesty commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-939522461) at 2021-10-10 10:40 AM PDT -ExperimentsInHonesty,2021-10-10T17:40:47Z,- ExperimentsInHonesty reopened issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-939522461) at 2021-10-10 10:40 AM PDT -ExperimentsInHonesty,2021-10-10T17:48:43Z,- ExperimentsInHonesty commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-939523577) at 2021-10-10 10:48 AM PDT -ExperimentsInHonesty,2021-10-10T23:07:20Z,- ExperimentsInHonesty commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-939568729) at 2021-10-10 04:07 PM PDT -ExperimentsInHonesty,2021-10-11T03:28:02Z,- ExperimentsInHonesty opened issue: [2362](https://github.com/hackforla/website/issues/2362) at 2021-10-10 08:28 PM PDT -ExperimentsInHonesty,2021-10-11T20:04:30Z,- ExperimentsInHonesty commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-940403731) at 2021-10-11 01:04 PM PDT -ExperimentsInHonesty,2021-10-11T21:27:05Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-940455128) at 2021-10-11 02:27 PM PDT -ExperimentsInHonesty,2021-10-12T19:24:01Z,- ExperimentsInHonesty commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-941341203) at 2021-10-12 12:24 PM PDT -ExperimentsInHonesty,2021-10-12T19:30:29Z,- ExperimentsInHonesty commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-941352359) at 2021-10-12 12:30 PM PDT -ExperimentsInHonesty,2021-10-12T19:34:09Z,- ExperimentsInHonesty closed issue as completed: [1842](https://github.com/hackforla/website/issues/1842#event-5451901512) at 2021-10-12 12:34 PM PDT -ExperimentsInHonesty,2021-10-13T19:36:59Z,- ExperimentsInHonesty commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-942654372) at 2021-10-13 12:36 PM PDT -ExperimentsInHonesty,2021-10-15T15:05:53Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-944375921) at 2021-10-15 08:05 AM PDT -ExperimentsInHonesty,2021-10-17T18:20:59Z,- ExperimentsInHonesty opened pull request: [2369](https://github.com/hackforla/website/pull/2369) at 2021-10-17 11:20 AM PDT -ExperimentsInHonesty,2021-10-17T18:31:57Z,- ExperimentsInHonesty pull request merged: [2369](https://github.com/hackforla/website/pull/2369#event-5474575711) at 2021-10-17 11:31 AM PDT -ExperimentsInHonesty,2021-10-17T19:19:18Z,- ExperimentsInHonesty commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-945179635) at 2021-10-17 12:19 PM PDT -ExperimentsInHonesty,2021-10-17T19:19:20Z,- ExperimentsInHonesty closed issue by PR 2070: [1927](https://github.com/hackforla/website/issues/1927#event-5474621655) at 2021-10-17 12:19 PM PDT -ExperimentsInHonesty,2021-10-17T22:28:56Z,- ExperimentsInHonesty commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-945206081) at 2021-10-17 03:28 PM PDT -ExperimentsInHonesty,2021-10-17T22:28:56Z,- ExperimentsInHonesty reopened issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-945206081) at 2021-10-17 03:28 PM PDT -ExperimentsInHonesty,2021-10-17T23:33:37Z,- ExperimentsInHonesty commented on issue: [2368](https://github.com/hackforla/website/issues/2368#issuecomment-945217166) at 2021-10-17 04:33 PM PDT -ExperimentsInHonesty,2021-10-17T23:39:50Z,- ExperimentsInHonesty commented on issue: [2368](https://github.com/hackforla/website/issues/2368#issuecomment-945218220) at 2021-10-17 04:39 PM PDT -ExperimentsInHonesty,2021-10-18T04:25:11Z,- ExperimentsInHonesty opened issue: [2370](https://github.com/hackforla/website/issues/2370) at 2021-10-17 09:25 PM PDT -ExperimentsInHonesty,2021-10-20T19:08:10Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-947957190) at 2021-10-20 12:08 PM PDT -ExperimentsInHonesty,2021-10-20T19:08:12Z,- ExperimentsInHonesty closed issue as completed: [1879](https://github.com/hackforla/website/issues/1879#event-5494005571) at 2021-10-20 12:08 PM PDT -ExperimentsInHonesty,2021-10-20T19:16:38Z,- ExperimentsInHonesty commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-947963137) at 2021-10-20 12:16 PM PDT -ExperimentsInHonesty,2021-10-20T19:18:13Z,- ExperimentsInHonesty commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-947964221) at 2021-10-20 12:18 PM PDT -ExperimentsInHonesty,2021-10-20T20:23:58Z,- ExperimentsInHonesty commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-948008806) at 2021-10-20 01:23 PM PDT -ExperimentsInHonesty,2021-10-20T21:09:31Z,- ExperimentsInHonesty opened issue: [2382](https://github.com/hackforla/website/issues/2382) at 2021-10-20 02:09 PM PDT -ExperimentsInHonesty,2021-10-20T21:27:48Z,- ExperimentsInHonesty opened issue: [2383](https://github.com/hackforla/website/issues/2383) at 2021-10-20 02:27 PM PDT -ExperimentsInHonesty,2021-10-20T21:56:02Z,- ExperimentsInHonesty opened issue: [2384](https://github.com/hackforla/website/issues/2384) at 2021-10-20 02:56 PM PDT -ExperimentsInHonesty,2021-10-21T00:45:54Z,- ExperimentsInHonesty commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-948142755) at 2021-10-20 05:45 PM PDT -ExperimentsInHonesty,2021-10-24T18:43:20Z,- ExperimentsInHonesty commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-950374042) at 2021-10-24 11:43 AM PDT -ExperimentsInHonesty,2021-10-24T21:35:41Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-950398947) at 2021-10-24 02:35 PM PDT -ExperimentsInHonesty,2021-10-24T21:42:50Z,- ExperimentsInHonesty commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-950399921) at 2021-10-24 02:42 PM PDT -ExperimentsInHonesty,2021-10-24T21:47:46Z,- ExperimentsInHonesty commented on issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-950400542) at 2021-10-24 02:47 PM PDT -ExperimentsInHonesty,2021-10-24T22:27:46Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-950406006) at 2021-10-24 03:27 PM PDT -ExperimentsInHonesty,2021-10-24T22:27:48Z,- ExperimentsInHonesty reopened issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-950406006) at 2021-10-24 03:27 PM PDT -ExperimentsInHonesty,2021-10-26T19:14:12Z,- ExperimentsInHonesty commented on issue: [2389](https://github.com/hackforla/website/issues/2389#issuecomment-952234495) at 2021-10-26 12:14 PM PDT -ExperimentsInHonesty,2021-10-26T21:42:59Z,- ExperimentsInHonesty opened issue: [2401](https://github.com/hackforla/website/issues/2401) at 2021-10-26 02:42 PM PDT -ExperimentsInHonesty,2021-10-29T02:52:32Z,- ExperimentsInHonesty opened issue: [2407](https://github.com/hackforla/website/issues/2407) at 2021-10-28 07:52 PM PDT -ExperimentsInHonesty,2021-10-31T22:34:47Z,- ExperimentsInHonesty commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-955803705) at 2021-10-31 03:34 PM PDT -ExperimentsInHonesty,2021-10-31T22:36:57Z,- ExperimentsInHonesty commented on issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-955803991) at 2021-10-31 03:36 PM PDT -ExperimentsInHonesty,2021-10-31T22:36:58Z,- ExperimentsInHonesty reopened issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-955803991) at 2021-10-31 03:36 PM PDT -ExperimentsInHonesty,2021-10-31T23:05:22Z,- ExperimentsInHonesty commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-955807865) at 2021-10-31 04:05 PM PDT -ExperimentsInHonesty,2021-10-31T23:05:22Z,- ExperimentsInHonesty reopened issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-955807865) at 2021-10-31 04:05 PM PDT -ExperimentsInHonesty,2021-10-31T23:08:59Z,- ExperimentsInHonesty commented on issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-955808538) at 2021-10-31 04:08 PM PDT -ExperimentsInHonesty,2021-10-31T23:09:02Z,- ExperimentsInHonesty reopened issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-955808538) at 2021-10-31 04:09 PM PDT -ExperimentsInHonesty,2021-11-01T03:22:29Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-955895641) at 2021-10-31 08:22 PM PDT -ExperimentsInHonesty,2021-11-01T03:25:34Z,- ExperimentsInHonesty commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-955896887) at 2021-10-31 08:25 PM PDT -ExperimentsInHonesty,2021-11-01T03:25:34Z,- ExperimentsInHonesty closed issue as completed: [1995](https://github.com/hackforla/website/issues/1995#event-5546396792) at 2021-10-31 08:25 PM PDT -ExperimentsInHonesty,2021-11-01T03:32:10Z,- ExperimentsInHonesty commented on issue: [798](https://github.com/hackforla/website/issues/798#issuecomment-955899056) at 2021-10-31 08:32 PM PDT -ExperimentsInHonesty,2021-11-01T03:32:10Z,- ExperimentsInHonesty closed issue as completed: [798](https://github.com/hackforla/website/issues/798#event-5546411953) at 2021-10-31 08:32 PM PDT -ExperimentsInHonesty,2021-11-01T03:45:29Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-955902595) at 2021-10-31 08:45 PM PDT -ExperimentsInHonesty,2021-11-01T04:09:50Z,- ExperimentsInHonesty unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2021-10-31 09:09 PM PDT -ExperimentsInHonesty,2021-11-01T05:06:12Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-955935531) at 2021-10-31 10:06 PM PDT -ExperimentsInHonesty,2021-11-01T05:19:59Z,- ExperimentsInHonesty commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-955942070) at 2021-10-31 10:19 PM PDT -ExperimentsInHonesty,2021-11-01T05:21:16Z,- ExperimentsInHonesty assigned to issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-955942070) at 2021-10-31 10:21 PM PDT -ExperimentsInHonesty,2021-11-01T06:34:55Z,- ExperimentsInHonesty commented on issue: [2383](https://github.com/hackforla/website/issues/2383#issuecomment-955971504) at 2021-10-31 11:34 PM PDT -ExperimentsInHonesty,2021-11-01T08:21:53Z,- ExperimentsInHonesty commented on issue: [2383](https://github.com/hackforla/website/issues/2383#issuecomment-956029832) at 2021-11-01 01:21 AM PDT -ExperimentsInHonesty,2021-11-01T08:41:04Z,- ExperimentsInHonesty commented on issue: [2396](https://github.com/hackforla/website/issues/2396#issuecomment-956040984) at 2021-11-01 01:41 AM PDT -ExperimentsInHonesty,2021-11-01T20:15:15Z,- ExperimentsInHonesty opened issue: [2419](https://github.com/hackforla/website/issues/2419) at 2021-11-01 01:15 PM PDT -ExperimentsInHonesty,2021-11-03T02:20:14Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-958603000) at 2021-11-02 07:20 PM PDT -ExperimentsInHonesty,2021-11-03T02:23:32Z,- ExperimentsInHonesty reopened issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-958603000) at 2021-11-02 07:23 PM PDT -ExperimentsInHonesty,2021-11-03T02:52:29Z,- ExperimentsInHonesty commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-958612586) at 2021-11-02 07:52 PM PDT -ExperimentsInHonesty,2021-11-03T02:52:29Z,- ExperimentsInHonesty closed issue as completed: [1256](https://github.com/hackforla/website/issues/1256#event-5559230273) at 2021-11-02 07:52 PM PDT -ExperimentsInHonesty,2021-11-03T02:55:30Z,- ExperimentsInHonesty closed issue as completed: [2422](https://github.com/hackforla/website/issues/2422#event-5559236268) at 2021-11-02 07:55 PM PDT -ExperimentsInHonesty,2021-11-03T02:56:44Z,- ExperimentsInHonesty commented on issue: [2422](https://github.com/hackforla/website/issues/2422#issuecomment-958613680) at 2021-11-02 07:56 PM PDT -ExperimentsInHonesty,2021-11-03T02:58:58Z,- ExperimentsInHonesty commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-958614209) at 2021-11-02 07:58 PM PDT -ExperimentsInHonesty,2021-11-03T02:58:58Z,- ExperimentsInHonesty closed issue as completed: [2154](https://github.com/hackforla/website/issues/2154#event-5559243031) at 2021-11-02 07:58 PM PDT -ExperimentsInHonesty,2021-11-03T23:56:33Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-960303560) at 2021-11-03 04:56 PM PDT -ExperimentsInHonesty,2021-11-04T23:23:40Z,- ExperimentsInHonesty commented on issue: [2450](https://github.com/hackforla/website/issues/2450#issuecomment-961505914) at 2021-11-04 04:23 PM PDT -ExperimentsInHonesty,2021-11-07T18:20:47Z,- ExperimentsInHonesty closed issue as completed: [2460](https://github.com/hackforla/website/issues/2460#event-5579379442) at 2021-11-07 10:20 AM PST -ExperimentsInHonesty,2021-11-07T18:20:53Z,- ExperimentsInHonesty reopened issue: [2460](https://github.com/hackforla/website/issues/2460#event-5579379442) at 2021-11-07 10:20 AM PST -ExperimentsInHonesty,2021-11-07T18:57:43Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-962662864) at 2021-11-07 10:57 AM PST -ExperimentsInHonesty,2021-11-08T15:41:14Z,- ExperimentsInHonesty opened issue: [2462](https://github.com/hackforla/website/issues/2462) at 2021-11-08 07:41 AM PST -ExperimentsInHonesty,2021-11-09T18:57:34Z,- ExperimentsInHonesty commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-964442519) at 2021-11-09 10:57 AM PST -ExperimentsInHonesty,2021-11-09T18:57:35Z,- ExperimentsInHonesty closed issue as completed: [1989](https://github.com/hackforla/website/issues/1989#event-5591955588) at 2021-11-09 10:57 AM PST -ExperimentsInHonesty,2021-11-10T16:19:08Z,- ExperimentsInHonesty commented on issue: [2295](https://github.com/hackforla/website/issues/2295#issuecomment-965504764) at 2021-11-10 08:19 AM PST -ExperimentsInHonesty,2021-11-10T20:20:55Z,- ExperimentsInHonesty commented on issue: [2468](https://github.com/hackforla/website/issues/2468#issuecomment-965714297) at 2021-11-10 12:20 PM PST -ExperimentsInHonesty,2021-11-10T20:39:50Z,- ExperimentsInHonesty opened pull request: [2472](https://github.com/hackforla/website/pull/2472) at 2021-11-10 12:39 PM PST -ExperimentsInHonesty,2021-11-10T20:41:16Z,- ExperimentsInHonesty closed issue by PR 2472: [2389](https://github.com/hackforla/website/issues/2389#event-5599866758) at 2021-11-10 12:41 PM PST -ExperimentsInHonesty,2021-11-10T20:41:16Z,- ExperimentsInHonesty pull request merged: [2472](https://github.com/hackforla/website/pull/2472#event-5599866772) at 2021-11-10 12:41 PM PST -ExperimentsInHonesty,2021-11-10T21:06:47Z,- ExperimentsInHonesty commented on issue: [221](https://github.com/hackforla/website/issues/221#issuecomment-965745770) at 2021-11-10 01:06 PM PST -ExperimentsInHonesty,2021-11-10T21:16:54Z,- ExperimentsInHonesty commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-965752506) at 2021-11-10 01:16 PM PST -ExperimentsInHonesty,2021-11-10T21:16:54Z,- ExperimentsInHonesty closed issue as completed: [2360](https://github.com/hackforla/website/issues/2360#event-5600029650) at 2021-11-10 01:16 PM PST -ExperimentsInHonesty,2021-11-11T00:53:34Z,- ExperimentsInHonesty commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-965895271) at 2021-11-10 04:53 PM PST -ExperimentsInHonesty,2021-11-12T18:32:11Z,- ExperimentsInHonesty opened issue: [2477](https://github.com/hackforla/website/issues/2477) at 2021-11-12 10:32 AM PST -ExperimentsInHonesty,2021-11-12T18:33:28Z,- ExperimentsInHonesty commented on issue: [2477](https://github.com/hackforla/website/issues/2477#issuecomment-967330027) at 2021-11-12 10:33 AM PST -ExperimentsInHonesty,2021-11-14T18:15:15Z,- ExperimentsInHonesty commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-968339562) at 2021-11-14 10:15 AM PST -ExperimentsInHonesty,2021-11-14T18:20:17Z,- ExperimentsInHonesty opened issue: [2481](https://github.com/hackforla/website/issues/2481) at 2021-11-14 10:20 AM PST -ExperimentsInHonesty,2021-11-14T18:49:02Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-968343733) at 2021-11-14 10:49 AM PST -ExperimentsInHonesty,2021-11-14T18:49:02Z,- ExperimentsInHonesty closed issue as completed: [2130](https://github.com/hackforla/website/issues/2130#event-5614601659) at 2021-11-14 10:49 AM PST -ExperimentsInHonesty,2021-11-14T19:22:05Z,- ExperimentsInHonesty commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-968348767) at 2021-11-14 11:22 AM PST -ExperimentsInHonesty,2021-11-14T19:27:45Z,- ExperimentsInHonesty commented on issue: [2357](https://github.com/hackforla/website/issues/2357#issuecomment-968349565) at 2021-11-14 11:27 AM PST -ExperimentsInHonesty,2021-11-14T19:30:22Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-968349924) at 2021-11-14 11:30 AM PST -ExperimentsInHonesty,2021-11-14T23:32:15Z,- ExperimentsInHonesty commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-968386451) at 2021-11-14 03:32 PM PST -ExperimentsInHonesty,2021-11-16T05:18:41Z,- ExperimentsInHonesty commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-969869484) at 2021-11-15 09:18 PM PST -ExperimentsInHonesty,2021-11-16T05:18:41Z,- ExperimentsInHonesty reopened issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-969869484) at 2021-11-15 09:18 PM PST -ExperimentsInHonesty,2021-11-17T20:21:07Z,- ExperimentsInHonesty commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-971954262) at 2021-11-17 12:21 PM PST -ExperimentsInHonesty,2021-11-17T20:26:29Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-971962314) at 2021-11-17 12:26 PM PST -ExperimentsInHonesty,2021-11-17T20:43:30Z,- ExperimentsInHonesty commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-971988754) at 2021-11-17 12:43 PM PST -ExperimentsInHonesty,2021-11-21T23:31:03Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-974919766) at 2021-11-21 03:31 PM PST -ExperimentsInHonesty,2021-11-21T23:32:08Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-974919932) at 2021-11-21 03:32 PM PST -ExperimentsInHonesty,2021-11-21T23:50:04Z,- ExperimentsInHonesty opened pull request: [2508](https://github.com/hackforla/website/pull/2508) at 2021-11-21 03:50 PM PST -ExperimentsInHonesty,2021-11-21T23:50:34Z,- ExperimentsInHonesty pull request merged: [2508](https://github.com/hackforla/website/pull/2508#event-5650681292) at 2021-11-21 03:50 PM PST -ExperimentsInHonesty,2021-11-21T23:51:52Z,- ExperimentsInHonesty opened pull request: [2509](https://github.com/hackforla/website/pull/2509) at 2021-11-21 03:51 PM PST -ExperimentsInHonesty,2021-11-21T23:51:59Z,- ExperimentsInHonesty pull request merged: [2509](https://github.com/hackforla/website/pull/2509#event-5650684054) at 2021-11-21 03:51 PM PST -ExperimentsInHonesty,2021-11-21T23:59:14Z,- ExperimentsInHonesty commented on issue: [2291](https://github.com/hackforla/website/issues/2291#issuecomment-974924313) at 2021-11-21 03:59 PM PST -ExperimentsInHonesty,2021-11-21T23:59:21Z,- ExperimentsInHonesty closed issue as completed: [2291](https://github.com/hackforla/website/issues/2291#event-5650697388) at 2021-11-21 03:59 PM PST -ExperimentsInHonesty,2021-11-24T20:54:18Z,- ExperimentsInHonesty opened issue: [2515](https://github.com/hackforla/website/issues/2515) at 2021-11-24 12:54 PM PST -ExperimentsInHonesty,2021-11-24T20:56:11Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-978213787) at 2021-11-24 12:56 PM PST -ExperimentsInHonesty,2021-11-24T21:22:06Z,- ExperimentsInHonesty commented on issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-978235511) at 2021-11-24 01:22 PM PST -ExperimentsInHonesty,2021-11-24T21:26:11Z,- ExperimentsInHonesty commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-978243150) at 2021-11-24 01:26 PM PST -ExperimentsInHonesty,2021-11-24T21:31:32Z,- ExperimentsInHonesty commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-978252890) at 2021-11-24 01:31 PM PST -ExperimentsInHonesty,2021-11-24T21:32:34Z,- ExperimentsInHonesty closed issue as completed: [1708](https://github.com/hackforla/website/issues/1708#event-5669472966) at 2021-11-24 01:32 PM PST -ExperimentsInHonesty,2021-11-28T18:15:25Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-981128477) at 2021-11-28 10:15 AM PST -ExperimentsInHonesty,2021-11-28T18:23:02Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-981129406) at 2021-11-28 10:23 AM PST -ExperimentsInHonesty,2021-11-28T18:37:34Z,- ExperimentsInHonesty commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-981131319) at 2021-11-28 10:37 AM PST -ExperimentsInHonesty,2021-11-28T19:01:32Z,- ExperimentsInHonesty commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-981134650) at 2021-11-28 11:01 AM PST -ExperimentsInHonesty,2021-11-28T19:07:55Z,- ExperimentsInHonesty commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-981135530) at 2021-11-28 11:07 AM PST -ExperimentsInHonesty,2021-11-28T20:15:15Z,- ExperimentsInHonesty commented on issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-981144886) at 2021-11-28 12:15 PM PST -ExperimentsInHonesty,2021-12-05T19:15:36Z,- ExperimentsInHonesty commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-986284750) at 2021-12-05 11:15 AM PST -ExperimentsInHonesty,2021-12-05T19:15:36Z,- ExperimentsInHonesty reopened issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-986284750) at 2021-12-05 11:15 AM PST -ExperimentsInHonesty,2021-12-05T19:23:43Z,- ExperimentsInHonesty closed issue as completed: [2486](https://github.com/hackforla/website/issues/2486#event-5717131529) at 2021-12-05 11:23 AM PST -ExperimentsInHonesty,2021-12-05T23:14:22Z,- ExperimentsInHonesty commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-986319595) at 2021-12-05 03:14 PM PST -ExperimentsInHonesty,2021-12-05T23:14:22Z,- ExperimentsInHonesty reopened issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-986319595) at 2021-12-05 03:14 PM PST -ExperimentsInHonesty,2021-12-05T23:30:51Z,- ExperimentsInHonesty commented on issue: [2544](https://github.com/hackforla/website/issues/2544#issuecomment-986323170) at 2021-12-05 03:30 PM PST -ExperimentsInHonesty,2021-12-06T00:07:28Z,- ExperimentsInHonesty commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-986329902) at 2021-12-05 04:07 PM PST -ExperimentsInHonesty,2021-12-06T00:07:32Z,- ExperimentsInHonesty assigned to issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-986329902) at 2021-12-05 04:07 PM PST -ExperimentsInHonesty,2021-12-07T03:32:46Z,- ExperimentsInHonesty opened issue: [2552](https://github.com/hackforla/website/issues/2552) at 2021-12-06 07:32 PM PST -ExperimentsInHonesty,2021-12-07T03:35:07Z,- ExperimentsInHonesty commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-987538036) at 2021-12-06 07:35 PM PST -ExperimentsInHonesty,2021-12-08T20:47:36Z,- ExperimentsInHonesty commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-989182930) at 2021-12-08 12:47 PM PST -ExperimentsInHonesty,2021-12-09T03:47:52Z,- ExperimentsInHonesty opened pull request: [2565](https://github.com/hackforla/website/pull/2565) at 2021-12-08 07:47 PM PST -ExperimentsInHonesty,2021-12-09T04:12:36Z,- ExperimentsInHonesty pull request merged: [2565](https://github.com/hackforla/website/pull/2565#event-5738182540) at 2021-12-08 08:12 PM PST -ExperimentsInHonesty,2021-12-11T18:55:22Z,- ExperimentsInHonesty opened issue: [2576](https://github.com/hackforla/website/issues/2576) at 2021-12-11 10:55 AM PST -ExperimentsInHonesty,2021-12-11T19:08:28Z,- ExperimentsInHonesty commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-991752279) at 2021-12-11 11:08 AM PST -ExperimentsInHonesty,2021-12-12T18:52:31Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-991951023) at 2021-12-12 10:52 AM PST -ExperimentsInHonesty,2021-12-12T18:52:31Z,- ExperimentsInHonesty reopened issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-991951023) at 2021-12-12 10:52 AM PST -ExperimentsInHonesty,2021-12-12T18:55:25Z,- ExperimentsInHonesty commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-991951443) at 2021-12-12 10:55 AM PST -ExperimentsInHonesty,2021-12-12T18:55:25Z,- ExperimentsInHonesty reopened issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-991951443) at 2021-12-12 10:55 AM PST -ExperimentsInHonesty,2021-12-12T23:16:35Z,- ExperimentsInHonesty commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-991990130) at 2021-12-12 03:16 PM PST -ExperimentsInHonesty,2021-12-12T23:16:43Z,- ExperimentsInHonesty reopened issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-991990130) at 2021-12-12 03:16 PM PST -ExperimentsInHonesty,2021-12-12T23:17:44Z,- ExperimentsInHonesty commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-991990335) at 2021-12-12 03:17 PM PST -ExperimentsInHonesty,2021-12-12T23:36:14Z,- ExperimentsInHonesty commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-991993753) at 2021-12-12 03:36 PM PST -ExperimentsInHonesty,2021-12-12T23:57:18Z,- ExperimentsInHonesty commented on pull request: [2540](https://github.com/hackforla/website/pull/2540#issuecomment-991996705) at 2021-12-12 03:57 PM PST -ExperimentsInHonesty,2021-12-13T00:23:18Z,- ExperimentsInHonesty commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-992003343) at 2021-12-12 04:23 PM PST -ExperimentsInHonesty,2021-12-13T00:27:28Z,- ExperimentsInHonesty commented on issue: [2444](https://github.com/hackforla/website/issues/2444#issuecomment-992004414) at 2021-12-12 04:27 PM PST -ExperimentsInHonesty,2021-12-13T00:33:01Z,- ExperimentsInHonesty commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-992006018) at 2021-12-12 04:33 PM PST -ExperimentsInHonesty,2021-12-13T00:34:50Z,- ExperimentsInHonesty commented on issue: [2487](https://github.com/hackforla/website/issues/2487#issuecomment-992006575) at 2021-12-12 04:34 PM PST -ExperimentsInHonesty,2021-12-13T00:41:40Z,- ExperimentsInHonesty assigned to issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-12-12 04:41 PM PST -ExperimentsInHonesty,2021-12-13T00:41:44Z,- ExperimentsInHonesty unassigned from issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-12-12 04:41 PM PST -ExperimentsInHonesty,2021-12-13T00:42:03Z,- ExperimentsInHonesty closed issue as completed: [2311](https://github.com/hackforla/website/issues/2311#event-5753550171) at 2021-12-12 04:42 PM PST -ExperimentsInHonesty,2021-12-13T00:43:35Z,- ExperimentsInHonesty commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-992009154) at 2021-12-12 04:43 PM PST -ExperimentsInHonesty,2021-12-13T01:32:53Z,- ExperimentsInHonesty commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-992031363) at 2021-12-12 05:32 PM PST -ExperimentsInHonesty,2021-12-13T01:37:05Z,- ExperimentsInHonesty commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-992033003) at 2021-12-12 05:37 PM PST -ExperimentsInHonesty,2021-12-13T01:41:58Z,- ExperimentsInHonesty commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-992034966) at 2021-12-12 05:41 PM PST -ExperimentsInHonesty,2021-12-14T00:11:02Z,- ExperimentsInHonesty opened issue: [2585](https://github.com/hackforla/website/issues/2585) at 2021-12-13 04:11 PM PST -ExperimentsInHonesty,2021-12-15T20:27:57Z,- ExperimentsInHonesty commented on issue: [2533](https://github.com/hackforla/website/issues/2533#issuecomment-995188563) at 2021-12-15 12:27 PM PST -ExperimentsInHonesty,2021-12-15T21:11:05Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-995216618) at 2021-12-15 01:11 PM PST -ExperimentsInHonesty,2021-12-18T18:11:57Z,- ExperimentsInHonesty commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-997241408) at 2021-12-18 10:11 AM PST -ExperimentsInHonesty,2021-12-18T23:27:37Z,- ExperimentsInHonesty unassigned from issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-991941531) at 2021-12-18 03:27 PM PST -ExperimentsInHonesty,2021-12-19T19:46:01Z,- ExperimentsInHonesty reopened issue: [2361](https://github.com/hackforla/website/issues/2361#event-5788132194) at 2021-12-19 11:46 AM PST -ExperimentsInHonesty,2021-12-19T19:46:46Z,- ExperimentsInHonesty commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-997450208) at 2021-12-19 11:46 AM PST -ExperimentsInHonesty,2021-12-19T20:16:33Z,- ExperimentsInHonesty commented on issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-997454007) at 2021-12-19 12:16 PM PST -ExperimentsInHonesty,2021-12-19T20:16:43Z,- ExperimentsInHonesty reopened issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-997454007) at 2021-12-19 12:16 PM PST -ExperimentsInHonesty,2021-12-19T20:16:46Z,- ExperimentsInHonesty closed issue by PR 2577: [2417](https://github.com/hackforla/website/issues/2417#event-5789506439) at 2021-12-19 12:16 PM PST -ExperimentsInHonesty,2021-12-19T20:50:36Z,- ExperimentsInHonesty opened issue: [2607](https://github.com/hackforla/website/issues/2607) at 2021-12-19 12:50 PM PST -ExperimentsInHonesty,2021-12-19T21:06:39Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997461322) at 2021-12-19 01:06 PM PST -ExperimentsInHonesty,2021-12-19T21:19:32Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 01:19 PM PST -ExperimentsInHonesty,2021-12-19T21:39:31Z,- ExperimentsInHonesty opened issue: [2608](https://github.com/hackforla/website/issues/2608) at 2021-12-19 01:39 PM PST -ExperimentsInHonesty,2021-12-19T21:40:51Z,- ExperimentsInHonesty commented on issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-997465987) at 2021-12-19 01:40 PM PST -ExperimentsInHonesty,2021-12-19T22:58:25Z,- ExperimentsInHonesty commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-997477244) at 2021-12-19 02:58 PM PST -ExperimentsInHonesty,2021-12-20T00:15:03Z,- ExperimentsInHonesty commented on issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-997490870) at 2021-12-19 04:15 PM PST -ExperimentsInHonesty,2021-12-20T00:17:57Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-997491553) at 2021-12-19 04:17 PM PST -ExperimentsInHonesty,2021-12-20T01:25:31Z,- ExperimentsInHonesty commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-997513785) at 2021-12-19 05:25 PM PST -ExperimentsInHonesty,2021-12-20T01:28:07Z,- ExperimentsInHonesty assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 05:28 PM PST -ExperimentsInHonesty,2021-12-21T00:08:41Z,- ExperimentsInHonesty assigned to issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-997465987) at 2021-12-20 04:08 PM PST -ExperimentsInHonesty,2021-12-21T00:10:08Z,- ExperimentsInHonesty commented on issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2021-12-20 04:10 PM PST -ExperimentsInHonesty,2021-12-21T00:24:43Z,- ExperimentsInHonesty commented on issue: [2020](https://github.com/hackforla/website/issues/2020#issuecomment-998368007) at 2021-12-20 04:24 PM PST -ExperimentsInHonesty,2021-12-21T00:24:43Z,- ExperimentsInHonesty closed issue as completed: [2020](https://github.com/hackforla/website/issues/2020#event-5795886775) at 2021-12-20 04:24 PM PST -ExperimentsInHonesty,2021-12-21T00:32:20Z,- ExperimentsInHonesty commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-998371099) at 2021-12-20 04:32 PM PST -ExperimentsInHonesty,2021-12-24T00:22:02Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1000576921) at 2021-12-23 04:22 PM PST -ExperimentsInHonesty,2021-12-26T17:35:24Z,- ExperimentsInHonesty commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1001218168) at 2021-12-26 09:35 AM PST -ExperimentsInHonesty,2021-12-26T18:41:11Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1001226283) at 2021-12-26 10:41 AM PST -ExperimentsInHonesty,2021-12-26T18:56:13Z,- ExperimentsInHonesty opened issue: [2631](https://github.com/hackforla/website/issues/2631) at 2021-12-26 10:56 AM PST -ExperimentsInHonesty,2021-12-26T18:59:38Z,- ExperimentsInHonesty commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1001227893) at 2021-12-26 10:59 AM PST -ExperimentsInHonesty,2021-12-26T19:10:14Z,- ExperimentsInHonesty commented on issue: [1323](https://github.com/hackforla/website/issues/1323#issuecomment-1001229052) at 2021-12-26 11:10 AM PST -ExperimentsInHonesty,2021-12-26T19:10:14Z,- ExperimentsInHonesty closed issue as completed: [1323](https://github.com/hackforla/website/issues/1323#event-5815846978) at 2021-12-26 11:10 AM PST -ExperimentsInHonesty,2021-12-29T20:23:05Z,- ExperimentsInHonesty commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-1002763549) at 2021-12-29 12:23 PM PST -ExperimentsInHonesty,2021-12-29T20:26:40Z,- ExperimentsInHonesty closed issue as completed: [2328](https://github.com/hackforla/website/issues/2328#event-5825991553) at 2021-12-29 12:26 PM PST -ExperimentsInHonesty,2021-12-29T20:30:10Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1002766018) at 2021-12-29 12:30 PM PST -ExperimentsInHonesty,2021-12-29T20:54:28Z,- ExperimentsInHonesty commented on issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-1002772918) at 2021-12-29 12:54 PM PST -ExperimentsInHonesty,2022-01-02T17:53:26Z,- ExperimentsInHonesty commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1003752150) at 2022-01-02 09:53 AM PST -ExperimentsInHonesty,2022-01-02T17:55:54Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1003752500) at 2022-01-02 09:55 AM PST -ExperimentsInHonesty,2022-01-02T17:58:52Z,- ExperimentsInHonesty commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003752864) at 2022-01-02 09:58 AM PST -ExperimentsInHonesty,2022-01-02T18:24:58Z,- ExperimentsInHonesty commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1003755937) at 2022-01-02 10:24 AM PST -ExperimentsInHonesty,2022-01-02T18:39:16Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1003757576) at 2022-01-02 10:39 AM PST -ExperimentsInHonesty,2022-01-02T18:42:51Z,- ExperimentsInHonesty commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-1003758008) at 2022-01-02 10:42 AM PST -ExperimentsInHonesty,2022-01-02T18:42:51Z,- ExperimentsInHonesty closed issue by PR 2556: [2419](https://github.com/hackforla/website/issues/2419#event-5832939176) at 2022-01-02 10:42 AM PST -ExperimentsInHonesty,2022-01-02T18:54:03Z,- ExperimentsInHonesty commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1003759301) at 2022-01-02 10:54 AM PST -ExperimentsInHonesty,2022-01-02T18:54:03Z,- ExperimentsInHonesty reopened issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1003759301) at 2022-01-02 10:54 AM PST -ExperimentsInHonesty,2022-01-02T18:55:31Z,- ExperimentsInHonesty commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1003759458) at 2022-01-02 10:55 AM PST -ExperimentsInHonesty,2022-01-02T18:57:12Z,- ExperimentsInHonesty commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1003759670) at 2022-01-02 10:57 AM PST -ExperimentsInHonesty,2022-01-02T18:57:12Z,- ExperimentsInHonesty reopened issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1003759670) at 2022-01-02 10:57 AM PST -ExperimentsInHonesty,2022-01-02T19:56:25Z,- ExperimentsInHonesty commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003766779) at 2022-01-02 11:56 AM PST -ExperimentsInHonesty,2022-01-02T20:17:21Z,- ExperimentsInHonesty commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1003769340) at 2022-01-02 12:17 PM PST -ExperimentsInHonesty,2022-01-02T20:42:27Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1003772221) at 2022-01-02 12:42 PM PST -ExperimentsInHonesty,2022-01-02T20:56:52Z,- ExperimentsInHonesty commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003774061) at 2022-01-02 12:56 PM PST -ExperimentsInHonesty,2022-01-02T22:56:09Z,- ExperimentsInHonesty commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1003788176) at 2022-01-02 02:56 PM PST -ExperimentsInHonesty,2022-01-02T22:56:10Z,- ExperimentsInHonesty reopened issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1003788176) at 2022-01-02 02:56 PM PST -ExperimentsInHonesty,2022-01-05T20:29:17Z,- ExperimentsInHonesty opened issue: [2662](https://github.com/hackforla/website/issues/2662) at 2022-01-05 12:29 PM PST -ExperimentsInHonesty,2022-01-05T20:38:05Z,- ExperimentsInHonesty commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1006059938) at 2022-01-05 12:38 PM PST -ExperimentsInHonesty,2022-01-05T21:16:23Z,- ExperimentsInHonesty commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1006083245) at 2022-01-05 01:16 PM PST -ExperimentsInHonesty,2022-01-06T02:38:19Z,- ExperimentsInHonesty commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1006238215) at 2022-01-05 06:38 PM PST -ExperimentsInHonesty,2022-01-09T18:24:27Z,- ExperimentsInHonesty commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-09 10:24 AM PST -ExperimentsInHonesty,2022-01-11T04:18:31Z,- ExperimentsInHonesty unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -ExperimentsInHonesty,2022-01-11T04:18:40Z,- ExperimentsInHonesty assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -ExperimentsInHonesty,2022-01-12T20:22:42Z,- ExperimentsInHonesty commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1011420037) at 2022-01-12 12:22 PM PST -ExperimentsInHonesty,2022-01-12T20:38:00Z,- ExperimentsInHonesty commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1011431913) at 2022-01-12 12:38 PM PST -ExperimentsInHonesty,2022-01-12T20:45:24Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1011437076) at 2022-01-12 12:45 PM PST -ExperimentsInHonesty,2022-01-12T21:05:46Z,- ExperimentsInHonesty commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1011450792) at 2022-01-12 01:05 PM PST -ExperimentsInHonesty,2022-01-15T23:16:52Z,- ExperimentsInHonesty reopened issue: [2664](https://github.com/hackforla/website/issues/2664#event-5888732675) at 2022-01-15 03:16 PM PST -ExperimentsInHonesty,2022-01-15T23:18:13Z,- ExperimentsInHonesty commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1013769729) at 2022-01-15 03:18 PM PST -ExperimentsInHonesty,2022-01-15T23:55:37Z,- ExperimentsInHonesty commented on issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-1013777193) at 2022-01-15 03:55 PM PST -ExperimentsInHonesty,2022-01-16T00:26:43Z,- ExperimentsInHonesty commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1013781729) at 2022-01-15 04:26 PM PST -ExperimentsInHonesty,2022-01-16T19:28:42Z,- ExperimentsInHonesty commented on issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1013937116) at 2022-01-16 11:28 AM PST -ExperimentsInHonesty,2022-01-16T19:28:42Z,- ExperimentsInHonesty closed issue by PR 2594: [2408](https://github.com/hackforla/website/issues/2408#event-5900708128) at 2022-01-16 11:28 AM PST -ExperimentsInHonesty,2022-01-16T19:28:45Z,- ExperimentsInHonesty reopened issue: [2408](https://github.com/hackforla/website/issues/2408#event-5900708128) at 2022-01-16 11:28 AM PST -ExperimentsInHonesty,2022-01-16T19:29:31Z,- ExperimentsInHonesty commented on issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1013937251) at 2022-01-16 11:29 AM PST -ExperimentsInHonesty,2022-01-16T19:34:30Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1013938006) at 2022-01-16 11:34 AM PST -ExperimentsInHonesty,2022-01-16T19:55:34Z,- ExperimentsInHonesty commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1013941235) at 2022-01-16 11:55 AM PST -ExperimentsInHonesty,2022-01-16T20:07:33Z,- ExperimentsInHonesty commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1013943263) at 2022-01-16 12:07 PM PST -ExperimentsInHonesty,2022-01-16T22:16:13Z,- ExperimentsInHonesty opened issue: [2688](https://github.com/hackforla/website/issues/2688) at 2022-01-16 02:16 PM PST -ExperimentsInHonesty,2022-01-16T22:22:23Z,- ExperimentsInHonesty opened issue: [2689](https://github.com/hackforla/website/issues/2689) at 2022-01-16 02:22 PM PST -ExperimentsInHonesty,2022-01-16T22:29:43Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1013965643) at 2022-01-16 02:29 PM PST -ExperimentsInHonesty,2022-01-16T22:46:08Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1013968144) at 2022-01-16 02:46 PM PST -ExperimentsInHonesty,2022-01-16T22:48:05Z,- ExperimentsInHonesty commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1013968447) at 2022-01-16 02:48 PM PST -ExperimentsInHonesty,2022-01-16T22:50:53Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1013968892) at 2022-01-16 02:50 PM PST -ExperimentsInHonesty,2022-01-16T23:03:40Z,- ExperimentsInHonesty commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-1013970971) at 2022-01-16 03:03 PM PST -ExperimentsInHonesty,2022-01-16T23:03:41Z,- ExperimentsInHonesty closed issue as completed: [2374](https://github.com/hackforla/website/issues/2374#event-5900923707) at 2022-01-16 03:03 PM PST -ExperimentsInHonesty,2022-01-18T19:27:30Z,- ExperimentsInHonesty opened issue: [2698](https://github.com/hackforla/website/issues/2698) at 2022-01-18 11:27 AM PST -ExperimentsInHonesty,2022-01-18T20:27:50Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1015807358) at 2022-01-18 12:27 PM PST -ExperimentsInHonesty,2022-01-18T20:43:40Z,- ExperimentsInHonesty commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1015818331) at 2022-01-18 12:43 PM PST -ExperimentsInHonesty,2022-01-18T20:51:04Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1015823228) at 2022-01-18 12:51 PM PST -ExperimentsInHonesty,2022-01-18T21:02:41Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1015830884) at 2022-01-18 01:02 PM PST -ExperimentsInHonesty,2022-01-19T20:22:41Z,- ExperimentsInHonesty commented on issue: [2685](https://github.com/hackforla/website/issues/2685#issuecomment-1016838085) at 2022-01-19 12:22 PM PST -ExperimentsInHonesty,2022-01-20T21:08:53Z,- ExperimentsInHonesty commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1017929598) at 2022-01-20 01:08 PM PST -ExperimentsInHonesty,2022-01-22T16:24:01Z,- ExperimentsInHonesty opened issue: [2711](https://github.com/hackforla/website/issues/2711) at 2022-01-22 08:24 AM PST -ExperimentsInHonesty,2022-01-22T16:29:07Z,- ExperimentsInHonesty commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1019303343) at 2022-01-22 08:29 AM PST -ExperimentsInHonesty,2022-01-23T18:27:24Z,- ExperimentsInHonesty commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1019540777) at 2022-01-23 10:27 AM PST -ExperimentsInHonesty,2022-01-23T19:03:30Z,- ExperimentsInHonesty reopened issue: [2500](https://github.com/hackforla/website/issues/2500#event-5927927110) at 2022-01-23 11:03 AM PST -ExperimentsInHonesty,2022-01-23T19:05:21Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1019547059) at 2022-01-23 11:05 AM PST -ExperimentsInHonesty,2022-01-23T19:05:21Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1019547059) at 2022-01-23 11:05 AM PST -ExperimentsInHonesty,2022-01-23T19:44:44Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1019553870) at 2022-01-23 11:44 AM PST -ExperimentsInHonesty,2022-01-23T19:48:11Z,- ExperimentsInHonesty commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1019554354) at 2022-01-23 11:48 AM PST -ExperimentsInHonesty,2022-01-23T20:16:45Z,- ExperimentsInHonesty commented on issue: [2287](https://github.com/hackforla/website/issues/2287#issuecomment-1019559014) at 2022-01-23 12:16 PM PST -ExperimentsInHonesty,2022-01-25T00:24:34Z,- ExperimentsInHonesty commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1020684231) at 2022-01-24 04:24 PM PST -ExperimentsInHonesty,2022-01-25T00:26:28Z,- ExperimentsInHonesty closed issue as completed: [2585](https://github.com/hackforla/website/issues/2585#event-5946337041) at 2022-01-24 04:26 PM PST -ExperimentsInHonesty,2022-01-25T00:44:47Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1020694782) at 2022-01-24 04:44 PM PST -ExperimentsInHonesty,2022-01-25T19:46:37Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1021547504) at 2022-01-25 11:46 AM PST -ExperimentsInHonesty,2022-01-25T20:06:25Z,- ExperimentsInHonesty commented on issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021562766) at 2022-01-25 12:06 PM PST -ExperimentsInHonesty,2022-01-27T22:40:30Z,- ExperimentsInHonesty commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1023707635) at 2022-01-27 02:40 PM PST -ExperimentsInHonesty,2022-01-28T03:09:24Z,- ExperimentsInHonesty commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-1023844303) at 2022-01-27 07:09 PM PST -ExperimentsInHonesty,2022-01-31T19:48:22Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1026145964) at 2022-01-31 11:48 AM PST -ExperimentsInHonesty,2022-01-31T19:56:08Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1026151766) at 2022-01-31 11:56 AM PST -ExperimentsInHonesty,2022-02-01T20:43:53Z,- ExperimentsInHonesty commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1027269389) at 2022-02-01 12:43 PM PST -ExperimentsInHonesty,2022-02-02T16:53:37Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1028143671) at 2022-02-02 08:53 AM PST -ExperimentsInHonesty,2022-02-02T20:00:27Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1028308101) at 2022-02-02 12:00 PM PST -ExperimentsInHonesty,2022-02-02T21:30:30Z,- ExperimentsInHonesty opened issue: [2733](https://github.com/hackforla/website/issues/2733) at 2022-02-02 01:30 PM PST -ExperimentsInHonesty,2022-02-02T21:31:39Z,- ExperimentsInHonesty commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1028376909) at 2022-02-02 01:31 PM PST -ExperimentsInHonesty,2022-02-02T21:43:13Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1028385806) at 2022-02-02 01:43 PM PST -ExperimentsInHonesty,2022-02-02T21:47:17Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1028388959) at 2022-02-02 01:47 PM PST -ExperimentsInHonesty,2022-02-02T22:00:41Z,- ExperimentsInHonesty closed issue as completed: [2500](https://github.com/hackforla/website/issues/2500#event-5998902139) at 2022-02-02 02:00 PM PST -ExperimentsInHonesty,2022-02-05T00:58:06Z,- ExperimentsInHonesty commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1030472118) at 2022-02-04 04:58 PM PST -ExperimentsInHonesty,2022-02-06T18:25:46Z,- ExperimentsInHonesty commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1030887357) at 2022-02-06 10:25 AM PST -ExperimentsInHonesty,2022-02-06T18:52:14Z,- ExperimentsInHonesty commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1030891657) at 2022-02-06 10:52 AM PST -ExperimentsInHonesty,2022-02-06T18:52:14Z,- ExperimentsInHonesty closed issue as completed: [2497](https://github.com/hackforla/website/issues/2497#event-6015401553) at 2022-02-06 10:52 AM PST -ExperimentsInHonesty,2022-02-06T18:53:49Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1030891877) at 2022-02-06 10:53 AM PST -ExperimentsInHonesty,2022-02-06T18:53:49Z,- ExperimentsInHonesty closed issue as completed: [2606](https://github.com/hackforla/website/issues/2606#event-6015403062) at 2022-02-06 10:53 AM PST -ExperimentsInHonesty,2022-02-08T19:51:52Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1033000940) at 2022-02-08 11:51 AM PST -ExperimentsInHonesty,2022-02-08T19:52:11Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1033001160) at 2022-02-08 11:52 AM PST -ExperimentsInHonesty,2022-02-09T01:36:17Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1033241006) at 2022-02-08 05:36 PM PST -ExperimentsInHonesty,2022-02-09T01:47:54Z,- ExperimentsInHonesty opened issue: [2754](https://github.com/hackforla/website/issues/2754) at 2022-02-08 05:47 PM PST -ExperimentsInHonesty,2022-02-09T01:52:55Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1033250666) at 2022-02-08 05:52 PM PST -ExperimentsInHonesty,2022-02-09T02:17:37Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1033269085) at 2022-02-08 06:17 PM PST -ExperimentsInHonesty,2022-02-09T20:13:13Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1034152051) at 2022-02-09 12:13 PM PST -ExperimentsInHonesty,2022-02-09T20:13:24Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1034152226) at 2022-02-09 12:13 PM PST -ExperimentsInHonesty,2022-02-11T01:43:16Z,- ExperimentsInHonesty opened issue: [2763](https://github.com/hackforla/website/issues/2763) at 2022-02-10 05:43 PM PST -ExperimentsInHonesty,2022-02-11T01:43:25Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1035708480) at 2022-02-10 05:43 PM PST -ExperimentsInHonesty,2022-02-11T01:45:17Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1035709161) at 2022-02-10 05:45 PM PST -ExperimentsInHonesty,2022-02-11T01:45:17Z,- ExperimentsInHonesty closed issue as completed: [2763](https://github.com/hackforla/website/issues/2763#event-6047300984) at 2022-02-10 05:45 PM PST -ExperimentsInHonesty,2022-02-11T01:45:21Z,- ExperimentsInHonesty reopened issue: [2763](https://github.com/hackforla/website/issues/2763#event-6047300984) at 2022-02-10 05:45 PM PST -ExperimentsInHonesty,2022-02-20T18:09:39Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1046291929) at 2022-02-20 10:09 AM PST -ExperimentsInHonesty,2022-02-20T18:17:49Z,- ExperimentsInHonesty commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1046293286) at 2022-02-20 10:17 AM PST -ExperimentsInHonesty,2022-02-20T18:20:13Z,- ExperimentsInHonesty commented on issue: [2703](https://github.com/hackforla/website/issues/2703#issuecomment-1046293657) at 2022-02-20 10:20 AM PST -ExperimentsInHonesty,2022-02-20T18:21:42Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1046293917) at 2022-02-20 10:21 AM PST -ExperimentsInHonesty,2022-02-23T03:16:31Z,- ExperimentsInHonesty commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1048413831) at 2022-02-22 07:16 PM PST -ExperimentsInHonesty,2022-02-26T23:48:49Z,- ExperimentsInHonesty commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1052804602) at 2022-02-26 03:48 PM PST -ExperimentsInHonesty,2022-02-26T23:50:11Z,- ExperimentsInHonesty commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1052806142) at 2022-02-26 03:50 PM PST -ExperimentsInHonesty,2022-02-26T23:50:51Z,- ExperimentsInHonesty commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1052806897) at 2022-02-26 03:50 PM PST -ExperimentsInHonesty,2022-02-26T23:53:05Z,- ExperimentsInHonesty commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1052809357) at 2022-02-26 03:53 PM PST -ExperimentsInHonesty,2022-02-26T23:53:22Z,- ExperimentsInHonesty commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1052809684) at 2022-02-26 03:53 PM PST -ExperimentsInHonesty,2022-02-26T23:55:13Z,- ExperimentsInHonesty commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1052811747) at 2022-02-26 03:55 PM PST -ExperimentsInHonesty,2022-02-26T23:56:48Z,- ExperimentsInHonesty commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1052813625) at 2022-02-26 03:56 PM PST -ExperimentsInHonesty,2022-02-27T18:21:25Z,- ExperimentsInHonesty commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1053637657) at 2022-02-27 10:21 AM PST -ExperimentsInHonesty,2022-02-27T18:54:43Z,- ExperimentsInHonesty opened issue: [2900](https://github.com/hackforla/website/issues/2900) at 2022-02-27 10:54 AM PST -ExperimentsInHonesty,2022-03-01T19:52:24Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1055800960) at 2022-03-01 11:52 AM PST -ExperimentsInHonesty,2022-03-01T19:56:25Z,- ExperimentsInHonesty commented on issue: [1996](https://github.com/hackforla/website/issues/1996#issuecomment-1055803921) at 2022-03-01 11:56 AM PST -ExperimentsInHonesty,2022-03-01T19:56:26Z,- ExperimentsInHonesty closed issue as completed: [1996](https://github.com/hackforla/website/issues/1996#event-6164533627) at 2022-03-01 11:56 AM PST -ExperimentsInHonesty,2022-03-01T20:00:53Z,- ExperimentsInHonesty assigned to issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-884326655) at 2022-03-01 12:00 PM PST -ExperimentsInHonesty,2022-03-02T20:06:12Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1057330885) at 2022-03-02 12:06 PM PST -ExperimentsInHonesty,2022-03-02T20:23:37Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1057343771) at 2022-03-02 12:23 PM PST -ExperimentsInHonesty,2022-03-02T20:34:50Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1057353091) at 2022-03-02 12:34 PM PST -ExperimentsInHonesty,2022-03-03T21:52:06Z,- ExperimentsInHonesty opened issue: [2919](https://github.com/hackforla/website/issues/2919) at 2022-03-03 01:52 PM PST -ExperimentsInHonesty,2022-03-05T23:20:04Z,- ExperimentsInHonesty commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1059849162) at 2022-03-05 03:20 PM PST -ExperimentsInHonesty,2022-03-05T23:21:43Z,- ExperimentsInHonesty commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1059849611) at 2022-03-05 03:21 PM PST -ExperimentsInHonesty,2022-03-05T23:28:05Z,- ExperimentsInHonesty commented on issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1059850250) at 2022-03-05 03:28 PM PST -ExperimentsInHonesty,2022-03-05T23:32:42Z,- ExperimentsInHonesty commented on issue: [2838](https://github.com/hackforla/website/issues/2838#issuecomment-1059850869) at 2022-03-05 03:32 PM PST -ExperimentsInHonesty,2022-03-05T23:34:29Z,- ExperimentsInHonesty commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1059851100) at 2022-03-05 03:34 PM PST -ExperimentsInHonesty,2022-03-05T23:38:47Z,- ExperimentsInHonesty commented on issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1059851741) at 2022-03-05 03:38 PM PST -ExperimentsInHonesty,2022-03-06T00:07:26Z,- ExperimentsInHonesty closed issue as completed: [2773](https://github.com/hackforla/website/issues/2773#event-6189989281) at 2022-03-05 04:07 PM PST -ExperimentsInHonesty,2022-03-06T00:11:05Z,- ExperimentsInHonesty commented on issue: [2749](https://github.com/hackforla/website/issues/2749#issuecomment-1059857194) at 2022-03-05 04:11 PM PST -ExperimentsInHonesty,2022-03-06T00:11:05Z,- ExperimentsInHonesty closed issue as completed: [2749](https://github.com/hackforla/website/issues/2749#event-6189992849) at 2022-03-05 04:11 PM PST -ExperimentsInHonesty,2022-03-06T19:04:23Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1060020246) at 2022-03-06 11:04 AM PST -ExperimentsInHonesty,2022-03-08T20:47:54Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1062193721) at 2022-03-08 12:47 PM PST -ExperimentsInHonesty,2022-03-10T21:16:46Z,- ExperimentsInHonesty commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1064512417) at 2022-03-10 01:16 PM PST -ExperimentsInHonesty,2022-03-10T21:51:38Z,- ExperimentsInHonesty commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1064538117) at 2022-03-10 01:51 PM PST -ExperimentsInHonesty,2022-03-10T22:03:55Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1064546734) at 2022-03-10 02:03 PM PST -ExperimentsInHonesty,2022-03-10T22:09:12Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064553024) at 2022-03-10 02:09 PM PST -ExperimentsInHonesty,2022-03-10T22:34:59Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064577346) at 2022-03-10 02:34 PM PST -ExperimentsInHonesty,2022-03-10T23:05:52Z,- ExperimentsInHonesty commented on issue: [2666](https://github.com/hackforla/website/issues/2666#issuecomment-1064597637) at 2022-03-10 03:05 PM PST -ExperimentsInHonesty,2022-03-10T23:05:52Z,- ExperimentsInHonesty closed issue as completed: [2666](https://github.com/hackforla/website/issues/2666#event-6221317159) at 2022-03-10 03:05 PM PST -ExperimentsInHonesty,2022-03-11T00:04:04Z,- ExperimentsInHonesty commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1064637926) at 2022-03-10 04:04 PM PST -ExperimentsInHonesty,2022-03-11T00:04:31Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064638179) at 2022-03-10 04:04 PM PST -ExperimentsInHonesty,2022-03-12T17:00:30Z,- ExperimentsInHonesty commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065919217) at 2022-03-12 10:00 AM PDT -ExperimentsInHonesty,2022-03-12T21:12:12Z,- ExperimentsInHonesty commented on issue: [2655](https://github.com/hackforla/website/issues/2655#issuecomment-1065963543) at 2022-03-12 02:12 PM PDT -ExperimentsInHonesty,2022-03-12T21:12:12Z,- ExperimentsInHonesty closed issue as completed: [2655](https://github.com/hackforla/website/issues/2655#event-6230280305) at 2022-03-12 02:12 PM PDT -ExperimentsInHonesty,2022-03-12T21:20:41Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1065964652) at 2022-03-12 02:20 PM PDT -ExperimentsInHonesty,2022-03-12T21:21:45Z,- ExperimentsInHonesty assigned to issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1065964652) at 2022-03-12 02:21 PM PDT -ExperimentsInHonesty,2022-03-12T21:28:50Z,- ExperimentsInHonesty commented on issue: [2450](https://github.com/hackforla/website/issues/2450#issuecomment-1065965724) at 2022-03-12 02:28 PM PDT -ExperimentsInHonesty,2022-03-12T21:28:50Z,- ExperimentsInHonesty closed issue as completed: [2450](https://github.com/hackforla/website/issues/2450#event-6230292905) at 2022-03-12 02:28 PM PDT -ExperimentsInHonesty,2022-03-12T21:31:51Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-03-12 02:31 PM PDT -ExperimentsInHonesty,2022-03-12T21:34:50Z,- ExperimentsInHonesty commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-1065966533) at 2022-03-12 02:34 PM PDT -ExperimentsInHonesty,2022-03-12T21:34:50Z,- ExperimentsInHonesty closed issue as completed: [2473](https://github.com/hackforla/website/issues/2473#event-6230297619) at 2022-03-12 02:34 PM PDT -ExperimentsInHonesty,2022-03-12T21:46:47Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1065970255) at 2022-03-12 02:46 PM PDT -ExperimentsInHonesty,2022-03-16T14:26:53Z,- ExperimentsInHonesty commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1069189264) at 2022-03-16 07:26 AM PDT -ExperimentsInHonesty,2022-03-16T19:47:49Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069550621) at 2022-03-16 12:47 PM PDT -ExperimentsInHonesty,2022-03-16T19:48:26Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069551132) at 2022-03-16 12:48 PM PDT -ExperimentsInHonesty,2022-03-18T01:44:37Z,- ExperimentsInHonesty opened issue: [2987](https://github.com/hackforla/website/issues/2987) at 2022-03-17 06:44 PM PDT -ExperimentsInHonesty,2022-03-18T01:51:34Z,- ExperimentsInHonesty commented on issue: [2987](https://github.com/hackforla/website/issues/2987#issuecomment-1071942949) at 2022-03-17 06:51 PM PDT -ExperimentsInHonesty,2022-03-21T21:01:31Z,- ExperimentsInHonesty commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1074413562) at 2022-03-21 02:01 PM PDT -ExperimentsInHonesty,2022-03-23T19:15:30Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1076727605) at 2022-03-23 12:15 PM PDT -ExperimentsInHonesty,2022-03-23T19:49:18Z,- ExperimentsInHonesty commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1076755973) at 2022-03-23 12:49 PM PDT -ExperimentsInHonesty,2022-03-24T21:16:49Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1078346079) at 2022-03-24 02:16 PM PDT -ExperimentsInHonesty,2022-03-30T20:12:31Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1083579148) at 2022-03-30 01:12 PM PDT -ExperimentsInHonesty,2022-03-30T20:36:47Z,- ExperimentsInHonesty commented on issue: [3019](https://github.com/hackforla/website/issues/3019#issuecomment-1083600812) at 2022-03-30 01:36 PM PDT -ExperimentsInHonesty,2022-03-31T19:32:24Z,- ExperimentsInHonesty commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1085018438) at 2022-03-31 12:32 PM PDT -ExperimentsInHonesty,2022-03-31T19:41:48Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1085026219) at 2022-03-31 12:41 PM PDT -ExperimentsInHonesty,2022-03-31T19:45:35Z,- ExperimentsInHonesty commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1085029386) at 2022-03-31 12:45 PM PDT -ExperimentsInHonesty,2022-03-31T19:49:49Z,- ExperimentsInHonesty commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1085033492) at 2022-03-31 12:49 PM PDT -ExperimentsInHonesty,2022-03-31T20:11:51Z,- ExperimentsInHonesty closed issue as completed: [2570](https://github.com/hackforla/website/issues/2570#event-6346959215) at 2022-03-31 01:11 PM PDT -ExperimentsInHonesty,2022-04-02T01:14:52Z,- ExperimentsInHonesty assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1085525076) at 2022-04-01 06:14 PM PDT -ExperimentsInHonesty,2022-04-02T22:05:02Z,- ExperimentsInHonesty commented on issue: [2960](https://github.com/hackforla/website/issues/2960#issuecomment-1086732073) at 2022-04-02 03:05 PM PDT -ExperimentsInHonesty,2022-04-02T22:05:06Z,- ExperimentsInHonesty closed issue as completed: [2960](https://github.com/hackforla/website/issues/2960#event-6357460860) at 2022-04-02 03:05 PM PDT -ExperimentsInHonesty,2022-04-02T22:06:05Z,- ExperimentsInHonesty commented on issue: [2674](https://github.com/hackforla/website/issues/2674#issuecomment-1086732205) at 2022-04-02 03:06 PM PDT -ExperimentsInHonesty,2022-04-02T22:06:05Z,- ExperimentsInHonesty closed issue as completed: [2674](https://github.com/hackforla/website/issues/2674#event-6357461581) at 2022-04-02 03:06 PM PDT -ExperimentsInHonesty,2022-04-02T22:46:12Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086737209) at 2022-04-02 03:46 PM PDT -ExperimentsInHonesty,2022-04-03T16:31:29Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086902818) at 2022-04-03 09:31 AM PDT -ExperimentsInHonesty,2022-04-03T16:34:18Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086903359) at 2022-04-03 09:34 AM PDT -ExperimentsInHonesty,2022-04-04T18:05:50Z,- ExperimentsInHonesty opened pull request: [3033](https://github.com/hackforla/website/pull/3033) at 2022-04-04 11:05 AM PDT -ExperimentsInHonesty,2022-04-04T23:53:08Z,- ExperimentsInHonesty pull request merged: [3033](https://github.com/hackforla/website/pull/3033#event-6366949247) at 2022-04-04 04:53 PM PDT -ExperimentsInHonesty,2022-04-05T19:23:12Z,- ExperimentsInHonesty commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-1089225029) at 2022-04-05 12:23 PM PDT -ExperimentsInHonesty,2022-04-05T21:52:51Z,- ExperimentsInHonesty commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-1089406710) at 2022-04-05 02:52 PM PDT -ExperimentsInHonesty,2022-04-06T19:41:04Z,- ExperimentsInHonesty commented on issue: [3025](https://github.com/hackforla/website/issues/3025#issuecomment-1090691445) at 2022-04-06 12:41 PM PDT -ExperimentsInHonesty,2022-04-06T20:02:22Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090720745) at 2022-04-06 01:02 PM PDT -ExperimentsInHonesty,2022-04-06T20:09:26Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090726358) at 2022-04-06 01:09 PM PDT -ExperimentsInHonesty,2022-04-06T20:11:44Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090728357) at 2022-04-06 01:11 PM PDT -ExperimentsInHonesty,2022-04-06T21:27:22Z,- ExperimentsInHonesty commented on pull request: [3033](https://github.com/hackforla/website/pull/3033#issuecomment-1090825294) at 2022-04-06 02:27 PM PDT -ExperimentsInHonesty,2022-04-07T20:42:30Z,- ExperimentsInHonesty commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1092182565) at 2022-04-07 01:42 PM PDT -ExperimentsInHonesty,2022-04-07T20:54:02Z,- ExperimentsInHonesty closed issue as completed: [3032](https://github.com/hackforla/website/issues/3032#event-6392003922) at 2022-04-07 01:54 PM PDT -ExperimentsInHonesty,2022-04-07T20:54:07Z,- ExperimentsInHonesty closed issue as completed: [2781](https://github.com/hackforla/website/issues/2781#event-6392004199) at 2022-04-07 01:54 PM PDT -ExperimentsInHonesty,2022-04-07T20:54:10Z,- ExperimentsInHonesty closed issue as completed: [2550](https://github.com/hackforla/website/issues/2550#event-6392004489) at 2022-04-07 01:54 PM PDT -ExperimentsInHonesty,2022-04-07T21:12:20Z,- ExperimentsInHonesty closed issue as completed: [2671](https://github.com/hackforla/website/issues/2671#event-6392092678) at 2022-04-07 02:12 PM PDT -ExperimentsInHonesty,2022-04-07T21:16:13Z,- ExperimentsInHonesty commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-1092206890) at 2022-04-07 02:16 PM PDT -ExperimentsInHonesty,2022-04-07T21:16:21Z,- ExperimentsInHonesty closed issue as completed: [803](https://github.com/hackforla/website/issues/803#event-6392111463) at 2022-04-07 02:16 PM PDT -ExperimentsInHonesty,2022-04-07T21:18:31Z,- ExperimentsInHonesty closed issue as completed: [2562](https://github.com/hackforla/website/issues/2562#event-6392121449) at 2022-04-07 02:18 PM PDT -ExperimentsInHonesty,2022-04-07T21:19:10Z,- ExperimentsInHonesty closed issue as completed: [2361](https://github.com/hackforla/website/issues/2361#event-6392124455) at 2022-04-07 02:19 PM PDT -ExperimentsInHonesty,2022-04-07T21:32:17Z,- ExperimentsInHonesty commented on issue: [2272](https://github.com/hackforla/website/issues/2272#issuecomment-1092218788) at 2022-04-07 02:32 PM PDT -ExperimentsInHonesty,2022-04-07T21:32:17Z,- ExperimentsInHonesty closed issue as completed: [2272](https://github.com/hackforla/website/issues/2272#event-6392183896) at 2022-04-07 02:32 PM PDT -ExperimentsInHonesty,2022-04-07T21:34:15Z,- ExperimentsInHonesty closed issue as completed: [2737](https://github.com/hackforla/website/issues/2737#event-6392192127) at 2022-04-07 02:34 PM PDT -ExperimentsInHonesty,2022-04-07T21:36:41Z,- ExperimentsInHonesty commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1092221869) at 2022-04-07 02:36 PM PDT -ExperimentsInHonesty,2022-04-09T16:43:26Z,- ExperimentsInHonesty commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1094082073) at 2022-04-09 09:43 AM PDT -ExperimentsInHonesty,2022-04-09T16:44:29Z,- ExperimentsInHonesty commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1094082242) at 2022-04-09 09:44 AM PDT -ExperimentsInHonesty,2022-04-10T17:10:41Z,- ExperimentsInHonesty commented on issue: [2975](https://github.com/hackforla/website/issues/2975#issuecomment-1094329546) at 2022-04-10 10:10 AM PDT -ExperimentsInHonesty,2022-04-10T17:12:44Z,- ExperimentsInHonesty commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1094330014) at 2022-04-10 10:12 AM PDT -ExperimentsInHonesty,2022-04-10T17:15:51Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1094330685) at 2022-04-10 10:15 AM PDT -ExperimentsInHonesty,2022-04-10T17:22:54Z,- ExperimentsInHonesty commented on issue: [2529](https://github.com/hackforla/website/issues/2529#issuecomment-1094331963) at 2022-04-10 10:22 AM PDT -ExperimentsInHonesty,2022-04-10T17:22:54Z,- ExperimentsInHonesty closed issue as completed: [2529](https://github.com/hackforla/website/issues/2529#event-6404444853) at 2022-04-10 10:22 AM PDT -ExperimentsInHonesty,2022-04-10T17:28:37Z,- ExperimentsInHonesty commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1094332853) at 2022-04-10 10:28 AM PDT -ExperimentsInHonesty,2022-04-10T17:40:16Z,- ExperimentsInHonesty assigned to issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094333447) at 2022-04-10 10:40 AM PDT -ExperimentsInHonesty,2022-04-10T17:40:57Z,- ExperimentsInHonesty commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1094334610) at 2022-04-10 10:40 AM PDT -ExperimentsInHonesty,2022-04-12T15:09:09Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1096854122) at 2022-04-12 08:09 AM PDT -ExperimentsInHonesty,2022-04-14T19:38:56Z,- ExperimentsInHonesty commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-04-14 12:38 PM PDT -ExperimentsInHonesty,2022-04-14T20:23:40Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1099590613) at 2022-04-14 01:23 PM PDT -ExperimentsInHonesty,2022-04-15T19:39:55Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1100318709) at 2022-04-15 12:39 PM PDT -ExperimentsInHonesty,2022-04-15T20:18:47Z,- ExperimentsInHonesty opened issue: [3058](https://github.com/hackforla/website/issues/3058) at 2022-04-15 01:18 PM PDT -ExperimentsInHonesty,2022-04-17T17:14:49Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1100918222) at 2022-04-17 10:14 AM PDT -ExperimentsInHonesty,2022-04-17T20:28:51Z,- ExperimentsInHonesty commented on issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1100944874) at 2022-04-17 01:28 PM PDT -ExperimentsInHonesty,2022-04-20T19:12:50Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1104361357) at 2022-04-20 12:12 PM PDT -ExperimentsInHonesty,2022-04-20T22:14:05Z,- ExperimentsInHonesty assigned to issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1063270297) at 2022-04-20 03:14 PM PDT -ExperimentsInHonesty,2022-04-20T22:17:38Z,- ExperimentsInHonesty unassigned from issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1063270297) at 2022-04-20 03:17 PM PDT -ExperimentsInHonesty,2022-04-23T20:59:33Z,- ExperimentsInHonesty commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1107648652) at 2022-04-23 01:59 PM PDT -ExperimentsInHonesty,2022-04-30T22:08:09Z,- ExperimentsInHonesty commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1114061855) at 2022-04-30 03:08 PM PDT -ExperimentsInHonesty,2022-04-30T22:12:14Z,- ExperimentsInHonesty commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1114062439) at 2022-04-30 03:12 PM PDT -ExperimentsInHonesty,2022-04-30T22:22:41Z,- ExperimentsInHonesty commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1114063632) at 2022-04-30 03:22 PM PDT -ExperimentsInHonesty,2022-04-30T22:22:41Z,- ExperimentsInHonesty reopened issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1114063632) at 2022-04-30 03:22 PM PDT -ExperimentsInHonesty,2022-05-01T04:34:39Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1114130139) at 2022-04-30 09:34 PM PDT -ExperimentsInHonesty,2022-05-01T04:40:53Z,- ExperimentsInHonesty closed issue as completed: [3041](https://github.com/hackforla/website/issues/3041#event-6528911819) at 2022-04-30 09:40 PM PDT -ExperimentsInHonesty,2022-05-03T02:42:09Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1115559051) at 2022-05-02 07:42 PM PDT -ExperimentsInHonesty,2022-05-04T19:13:56Z,- ExperimentsInHonesty commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1117718620) at 2022-05-04 12:13 PM PDT -ExperimentsInHonesty,2022-05-04T19:46:39Z,- ExperimentsInHonesty commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1117788097) at 2022-05-04 12:46 PM PDT -ExperimentsInHonesty,2022-05-05T20:06:55Z,- ExperimentsInHonesty commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-1118999286) at 2022-05-05 01:06 PM PDT -ExperimentsInHonesty,2022-05-05T20:27:19Z,- ExperimentsInHonesty commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1119015346) at 2022-05-05 01:27 PM PDT -ExperimentsInHonesty,2022-05-08T04:29:08Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1120347893) at 2022-05-07 09:29 PM PDT -ExperimentsInHonesty,2022-05-08T04:34:11Z,- ExperimentsInHonesty reopened issue: [312](https://github.com/hackforla/website/issues/312#event-4881095493) at 2022-05-07 09:34 PM PDT -ExperimentsInHonesty,2022-05-08T04:47:14Z,- ExperimentsInHonesty commented on issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1120349481) at 2022-05-07 09:47 PM PDT -ExperimentsInHonesty,2022-05-08T04:47:14Z,- ExperimentsInHonesty reopened issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1120349481) at 2022-05-07 09:47 PM PDT -ExperimentsInHonesty,2022-05-08T04:50:57Z,- ExperimentsInHonesty closed issue by PR 3000: [2927](https://github.com/hackforla/website/issues/2927#event-6568209309) at 2022-05-07 09:50 PM PDT -ExperimentsInHonesty,2022-05-08T05:00:17Z,- ExperimentsInHonesty commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1120350513) at 2022-05-07 10:00 PM PDT -ExperimentsInHonesty,2022-05-08T18:51:46Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1120468995) at 2022-05-08 11:51 AM PDT -ExperimentsInHonesty,2022-05-08T19:46:06Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1120476625) at 2022-05-08 12:46 PM PDT -ExperimentsInHonesty,2022-05-10T22:14:43Z,- ExperimentsInHonesty commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1122945325) at 2022-05-10 03:14 PM PDT -ExperimentsInHonesty,2022-05-11T20:38:53Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1124274032) at 2022-05-11 01:38 PM PDT -ExperimentsInHonesty,2022-05-11T20:51:30Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1124283720) at 2022-05-11 01:51 PM PDT -ExperimentsInHonesty,2022-05-12T21:55:14Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1125455623) at 2022-05-12 02:55 PM PDT -ExperimentsInHonesty,2022-05-12T21:58:13Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1125457988) at 2022-05-12 02:58 PM PDT -ExperimentsInHonesty,2022-05-12T22:09:05Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1125465041) at 2022-05-12 03:09 PM PDT -ExperimentsInHonesty,2022-05-18T19:12:06Z,- ExperimentsInHonesty reopened issue: [2945](https://github.com/hackforla/website/issues/2945#event-6593882013) at 2022-05-18 12:12 PM PDT -ExperimentsInHonesty,2022-05-28T20:27:31Z,- ExperimentsInHonesty commented on issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1140325232) at 2022-05-28 01:27 PM PDT -ExperimentsInHonesty,2022-05-28T20:27:32Z,- ExperimentsInHonesty reopened issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1140325232) at 2022-05-28 01:27 PM PDT -ExperimentsInHonesty,2022-05-28T20:43:29Z,- ExperimentsInHonesty commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1140327068) at 2022-05-28 01:43 PM PDT -ExperimentsInHonesty,2022-05-28T20:43:29Z,- ExperimentsInHonesty reopened issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1140327068) at 2022-05-28 01:43 PM PDT -ExperimentsInHonesty,2022-05-28T21:27:55Z,- ExperimentsInHonesty commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1140331711) at 2022-05-28 02:27 PM PDT -ExperimentsInHonesty,2022-05-28T21:34:13Z,- ExperimentsInHonesty opened issue: [3177](https://github.com/hackforla/website/issues/3177) at 2022-05-28 02:34 PM PDT -ExperimentsInHonesty,2022-05-28T21:38:07Z,- ExperimentsInHonesty commented on issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1140332736) at 2022-05-28 02:38 PM PDT -ExperimentsInHonesty,2022-05-28T21:39:51Z,- ExperimentsInHonesty commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1140332916) at 2022-05-28 02:39 PM PDT -ExperimentsInHonesty,2022-05-28T22:17:07Z,- ExperimentsInHonesty commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1140336841) at 2022-05-28 03:17 PM PDT -ExperimentsInHonesty,2022-05-28T22:21:17Z,- ExperimentsInHonesty commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1140337248) at 2022-05-28 03:21 PM PDT -ExperimentsInHonesty,2022-05-28T22:33:17Z,- ExperimentsInHonesty commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1140338337) at 2022-05-28 03:33 PM PDT -ExperimentsInHonesty,2022-05-28T22:38:53Z,- ExperimentsInHonesty commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1140338832) at 2022-05-28 03:38 PM PDT -ExperimentsInHonesty,2022-05-28T22:41:09Z,- ExperimentsInHonesty commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1140339021) at 2022-05-28 03:41 PM PDT -ExperimentsInHonesty,2022-05-28T23:06:45Z,- ExperimentsInHonesty closed issue by PR 3075: [2802](https://github.com/hackforla/website/issues/2802#event-6697626294) at 2022-05-28 04:06 PM PDT -ExperimentsInHonesty,2022-05-29T17:44:19Z,- ExperimentsInHonesty commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1140494486) at 2022-05-29 10:44 AM PDT -ExperimentsInHonesty,2022-05-29T18:39:42Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1140503112) at 2022-05-29 11:39 AM PDT -ExperimentsInHonesty,2022-05-29T18:39:42Z,- ExperimentsInHonesty reopened issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1140503112) at 2022-05-29 11:39 AM PDT -ExperimentsInHonesty,2022-05-30T14:35:40Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1141230473) at 2022-05-30 07:35 AM PDT -ExperimentsInHonesty,2022-06-02T20:07:33Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1145293399) at 2022-06-02 01:07 PM PDT -ExperimentsInHonesty,2022-06-02T20:07:40Z,- ExperimentsInHonesty closed issue as completed: [2958](https://github.com/hackforla/website/issues/2958#event-6731306347) at 2022-06-02 01:07 PM PDT -ExperimentsInHonesty,2022-06-04T22:09:25Z,- ExperimentsInHonesty opened pull request: [3219](https://github.com/hackforla/website/pull/3219) at 2022-06-04 03:09 PM PDT -ExperimentsInHonesty,2022-06-04T22:11:30Z,- ExperimentsInHonesty pull request merged: [3219](https://github.com/hackforla/website/pull/3219#event-6742491627) at 2022-06-04 03:11 PM PDT -ExperimentsInHonesty,2022-06-04T22:35:00Z,- ExperimentsInHonesty commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1146695412) at 2022-06-04 03:35 PM PDT -ExperimentsInHonesty,2022-06-05T00:43:14Z,- ExperimentsInHonesty opened issue: [3220](https://github.com/hackforla/website/issues/3220) at 2022-06-04 05:43 PM PDT -ExperimentsInHonesty,2022-06-05T01:50:13Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1146721700) at 2022-06-04 06:50 PM PDT -ExperimentsInHonesty,2022-06-05T17:25:59Z,- ExperimentsInHonesty opened issue: [3222](https://github.com/hackforla/website/issues/3222) at 2022-06-05 10:25 AM PDT -ExperimentsInHonesty,2022-06-05T18:12:15Z,- ExperimentsInHonesty opened issue: [3223](https://github.com/hackforla/website/issues/3223) at 2022-06-05 11:12 AM PDT -ExperimentsInHonesty,2022-06-08T19:42:58Z,- ExperimentsInHonesty commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1150327821) at 2022-06-08 12:42 PM PDT -ExperimentsInHonesty,2022-06-13T21:17:14Z,- ExperimentsInHonesty commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1154448472) at 2022-06-13 02:17 PM PDT -ExperimentsInHonesty,2022-06-13T21:23:36Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1154453588) at 2022-06-13 02:23 PM PDT -ExperimentsInHonesty,2022-06-13T22:00:40Z,- ExperimentsInHonesty commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1154481790) at 2022-06-13 03:00 PM PDT -ExperimentsInHonesty,2022-06-19T17:37:57Z,- ExperimentsInHonesty commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1159782031) at 2022-06-19 10:37 AM PDT -ExperimentsInHonesty,2022-06-19T18:10:33Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1159786486) at 2022-06-19 11:10 AM PDT -ExperimentsInHonesty,2022-06-19T18:10:36Z,- ExperimentsInHonesty closed issue as completed: [2401](https://github.com/hackforla/website/issues/2401#event-6835039597) at 2022-06-19 11:10 AM PDT -ExperimentsInHonesty,2022-06-19T19:25:32Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1159796750) at 2022-06-19 12:25 PM PDT -ExperimentsInHonesty,2022-06-23T19:39:18Z,- ExperimentsInHonesty commented on issue: [2935](https://github.com/hackforla/website/issues/2935#issuecomment-1164797394) at 2022-06-23 12:39 PM PDT -ExperimentsInHonesty,2022-06-23T21:12:39Z,- ExperimentsInHonesty commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1164877942) at 2022-06-23 02:12 PM PDT -ExperimentsInHonesty,2022-06-23T21:41:16Z,- ExperimentsInHonesty commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1164906488) at 2022-06-23 02:41 PM PDT -ExperimentsInHonesty,2022-06-23T21:41:16Z,- ExperimentsInHonesty closed issue as completed: [2955](https://github.com/hackforla/website/issues/2955#event-6869810713) at 2022-06-23 02:41 PM PDT -ExperimentsInHonesty,2022-06-26T15:49:09Z,- ExperimentsInHonesty commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1166569926) at 2022-06-26 08:49 AM PDT -ExperimentsInHonesty,2022-06-26T15:52:22Z,- ExperimentsInHonesty commented on issue: [3289](https://github.com/hackforla/website/issues/3289#issuecomment-1166570722) at 2022-06-26 08:52 AM PDT -ExperimentsInHonesty,2022-06-27T21:15:16Z,- ExperimentsInHonesty commented on issue: [3167](https://github.com/hackforla/website/issues/3167#issuecomment-1167908619) at 2022-06-27 02:15 PM PDT -ExperimentsInHonesty,2022-06-27T21:15:16Z,- ExperimentsInHonesty closed issue as completed: [3167](https://github.com/hackforla/website/issues/3167#event-6888652526) at 2022-06-27 02:15 PM PDT -ExperimentsInHonesty,2022-06-27T21:17:34Z,- ExperimentsInHonesty closed issue as completed: [3272](https://github.com/hackforla/website/issues/3272#event-6888666603) at 2022-06-27 02:17 PM PDT -ExperimentsInHonesty,2022-06-27T21:18:10Z,- ExperimentsInHonesty commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1167911620) at 2022-06-27 02:18 PM PDT -ExperimentsInHonesty,2022-06-29T05:13:39Z,- ExperimentsInHonesty assigned to issue: [7460](https://github.com/hackforla/website/issues/7460) at 2022-06-28 10:13 PM PDT -ExperimentsInHonesty,2022-06-29T18:17:55Z,- ExperimentsInHonesty commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1170334760) at 2022-06-29 11:17 AM PDT -ExperimentsInHonesty,2022-07-03T18:03:54Z,- ExperimentsInHonesty commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173145624) at 2022-07-03 11:03 AM PDT -ExperimentsInHonesty,2022-07-03T18:22:42Z,- ExperimentsInHonesty commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1173148805) at 2022-07-03 11:22 AM PDT -ExperimentsInHonesty,2022-07-06T18:28:18Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1176541515) at 2022-07-06 11:28 AM PDT -ExperimentsInHonesty,2022-07-06T18:30:48Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1176543459) at 2022-07-06 11:30 AM PDT -ExperimentsInHonesty,2022-07-07T18:36:27Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178053761) at 2022-07-07 11:36 AM PDT -ExperimentsInHonesty,2022-07-07T18:49:04Z,- ExperimentsInHonesty reopened issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178053761) at 2022-07-07 11:49 AM PDT -ExperimentsInHonesty,2022-07-07T18:51:08Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178074538) at 2022-07-07 11:51 AM PDT -ExperimentsInHonesty,2022-07-07T19:01:36Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178086590) at 2022-07-07 12:01 PM PDT -ExperimentsInHonesty,2022-07-07T19:45:30Z,- ExperimentsInHonesty commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1178141966) at 2022-07-07 12:45 PM PDT -ExperimentsInHonesty,2022-07-07T20:31:57Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178192054) at 2022-07-07 01:31 PM PDT -ExperimentsInHonesty,2022-07-10T17:59:42Z,- ExperimentsInHonesty opened issue: [3343](https://github.com/hackforla/website/issues/3343) at 2022-07-10 10:59 AM PDT -ExperimentsInHonesty,2022-07-11T16:00:59Z,- ExperimentsInHonesty opened issue: [3356](https://github.com/hackforla/website/issues/3356) at 2022-07-11 09:00 AM PDT -ExperimentsInHonesty,2022-07-11T16:10:01Z,- ExperimentsInHonesty opened issue: [3357](https://github.com/hackforla/website/issues/3357) at 2022-07-11 09:10 AM PDT -ExperimentsInHonesty,2022-07-11T21:52:54Z,- ExperimentsInHonesty commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1180906439) at 2022-07-11 02:52 PM PDT -ExperimentsInHonesty,2022-07-12T20:25:35Z,- ExperimentsInHonesty commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1182468692) at 2022-07-12 01:25 PM PDT -ExperimentsInHonesty,2022-07-12T21:15:39Z,- ExperimentsInHonesty commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1182507813) at 2022-07-12 02:15 PM PDT -ExperimentsInHonesty,2022-07-15T14:46:51Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1185618519) at 2022-07-15 07:46 AM PDT -ExperimentsInHonesty,2022-07-15T15:04:31Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1185634230) at 2022-07-15 08:04 AM PDT -ExperimentsInHonesty,2022-07-17T18:23:59Z,- ExperimentsInHonesty commented on issue: [3379](https://github.com/hackforla/website/issues/3379#issuecomment-1186584878) at 2022-07-17 11:23 AM PDT -ExperimentsInHonesty,2022-07-17T18:24:11Z,- ExperimentsInHonesty commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1186584915) at 2022-07-17 11:24 AM PDT -ExperimentsInHonesty,2022-07-18T21:37:50Z,- ExperimentsInHonesty closed issue by PR 3717: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-07-18 02:37 PM PDT -ExperimentsInHonesty,2022-07-18T21:38:10Z,- ExperimentsInHonesty reopened issue: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-07-18 02:38 PM PDT -ExperimentsInHonesty,2022-07-18T21:57:23Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1188362004) at 2022-07-18 02:57 PM PDT -ExperimentsInHonesty,2022-07-19T13:28:41Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1189055116) at 2022-07-19 06:28 AM PDT -ExperimentsInHonesty,2022-07-19T18:25:02Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189416830) at 2022-07-19 11:25 AM PDT -ExperimentsInHonesty,2022-07-19T18:43:55Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189433746) at 2022-07-19 11:43 AM PDT -ExperimentsInHonesty,2022-07-19T19:03:04Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189449698) at 2022-07-19 12:03 PM PDT -ExperimentsInHonesty,2022-07-19T19:05:26Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189451672) at 2022-07-19 12:05 PM PDT -ExperimentsInHonesty,2022-07-24T18:44:01Z,- ExperimentsInHonesty commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1193372681) at 2022-07-24 11:44 AM PDT -ExperimentsInHonesty,2022-07-25T21:25:30Z,- ExperimentsInHonesty commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1194649355) at 2022-07-25 02:25 PM PDT -ExperimentsInHonesty,2022-07-25T21:27:46Z,- ExperimentsInHonesty commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1194651649) at 2022-07-25 02:27 PM PDT -ExperimentsInHonesty,2022-07-25T21:30:27Z,- ExperimentsInHonesty commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1194654272) at 2022-07-25 02:30 PM PDT -ExperimentsInHonesty,2022-07-25T21:30:27Z,- ExperimentsInHonesty closed issue as completed: [3070](https://github.com/hackforla/website/issues/3070#event-7059858054) at 2022-07-25 02:30 PM PDT -ExperimentsInHonesty,2022-07-25T21:31:45Z,- ExperimentsInHonesty commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1194655633) at 2022-07-25 02:31 PM PDT -ExperimentsInHonesty,2022-07-25T21:31:46Z,- ExperimentsInHonesty closed issue as completed: [3144](https://github.com/hackforla/website/issues/3144#event-7059864367) at 2022-07-25 02:31 PM PDT -ExperimentsInHonesty,2022-07-25T21:34:03Z,- ExperimentsInHonesty commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1194658612) at 2022-07-25 02:34 PM PDT -ExperimentsInHonesty,2022-07-25T21:36:28Z,- ExperimentsInHonesty commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1194661868) at 2022-07-25 02:36 PM PDT -ExperimentsInHonesty,2022-07-25T21:36:29Z,- ExperimentsInHonesty closed issue as completed: [3122](https://github.com/hackforla/website/issues/3122#event-7059890650) at 2022-07-25 02:36 PM PDT -ExperimentsInHonesty,2022-07-25T21:39:01Z,- ExperimentsInHonesty commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1194664520) at 2022-07-25 02:39 PM PDT -ExperimentsInHonesty,2022-07-25T21:39:54Z,- ExperimentsInHonesty commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1194665413) at 2022-07-25 02:39 PM PDT -ExperimentsInHonesty,2022-07-25T21:42:07Z,- ExperimentsInHonesty commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1194667732) at 2022-07-25 02:42 PM PDT -ExperimentsInHonesty,2022-07-25T21:43:55Z,- ExperimentsInHonesty commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194669406) at 2022-07-25 02:43 PM PDT -ExperimentsInHonesty,2022-07-25T21:49:42Z,- ExperimentsInHonesty commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1194674868) at 2022-07-25 02:49 PM PDT -ExperimentsInHonesty,2022-07-25T21:58:08Z,- ExperimentsInHonesty commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1194682335) at 2022-07-25 02:58 PM PDT -ExperimentsInHonesty,2022-07-27T22:06:36Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197421483) at 2022-07-27 03:06 PM PDT -ExperimentsInHonesty,2022-07-27T22:09:17Z,- ExperimentsInHonesty commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1197423714) at 2022-07-27 03:09 PM PDT -ExperimentsInHonesty,2022-07-27T22:15:00Z,- ExperimentsInHonesty closed issue as completed: [3273](https://github.com/hackforla/website/issues/3273#event-7076862009) at 2022-07-27 03:15 PM PDT -ExperimentsInHonesty,2022-07-27T22:20:45Z,- ExperimentsInHonesty commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197432546) at 2022-07-27 03:20 PM PDT -ExperimentsInHonesty,2022-07-27T22:23:54Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197434782) at 2022-07-27 03:23 PM PDT -ExperimentsInHonesty,2022-07-28T17:31:21Z,- ExperimentsInHonesty closed issue as completed: [3267](https://github.com/hackforla/website/issues/3267#event-7083516246) at 2022-07-28 10:31 AM PDT -ExperimentsInHonesty,2022-07-28T17:34:36Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1198440696) at 2022-07-28 10:34 AM PDT -ExperimentsInHonesty,2022-07-28T17:39:29Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1198444881) at 2022-07-28 10:39 AM PDT -ExperimentsInHonesty,2022-07-28T17:41:57Z,- ExperimentsInHonesty commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198446844) at 2022-07-28 10:41 AM PDT -ExperimentsInHonesty,2022-07-28T17:42:52Z,- ExperimentsInHonesty commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198447660) at 2022-07-28 10:42 AM PDT -ExperimentsInHonesty,2022-08-08T18:11:40Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1208448284) at 2022-08-08 11:11 AM PDT -ExperimentsInHonesty,2022-08-11T01:11:56Z,- ExperimentsInHonesty commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1211455580) at 2022-08-10 06:11 PM PDT -ExperimentsInHonesty,2022-08-14T22:49:56Z,- ExperimentsInHonesty commented on issue: [3469](https://github.com/hackforla/website/issues/3469#issuecomment-1214464150) at 2022-08-14 03:49 PM PDT -ExperimentsInHonesty,2022-08-14T22:49:56Z,- ExperimentsInHonesty closed issue as completed: [3469](https://github.com/hackforla/website/issues/3469#event-7185275556) at 2022-08-14 03:49 PM PDT -ExperimentsInHonesty,2022-08-15T21:09:56Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1215816956) at 2022-08-15 02:09 PM PDT -ExperimentsInHonesty,2022-08-15T21:10:44Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1215818747) at 2022-08-15 02:10 PM PDT -ExperimentsInHonesty,2022-09-01T21:44:54Z,- ExperimentsInHonesty commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1234813973) at 2022-09-01 02:44 PM PDT -ExperimentsInHonesty,2022-09-04T16:08:48Z,- ExperimentsInHonesty assigned to issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021562766) at 2022-09-04 09:08 AM PDT -ExperimentsInHonesty,2022-09-04T16:47:54Z,- ExperimentsInHonesty commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1236377717) at 2022-09-04 09:47 AM PDT -ExperimentsInHonesty,2022-09-04T17:48:07Z,- ExperimentsInHonesty commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1236387022) at 2022-09-04 10:48 AM PDT -ExperimentsInHonesty,2022-09-04T17:51:36Z,- ExperimentsInHonesty commented on issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1236387462) at 2022-09-04 10:51 AM PDT -ExperimentsInHonesty,2022-09-04T18:48:55Z,- ExperimentsInHonesty commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1236395239) at 2022-09-04 11:48 AM PDT -ExperimentsInHonesty,2022-09-04T19:00:26Z,- ExperimentsInHonesty commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1236396829) at 2022-09-04 12:00 PM PDT -ExperimentsInHonesty,2022-09-05T18:29:18Z,- ExperimentsInHonesty opened issue: [3520](https://github.com/hackforla/website/issues/3520) at 2022-09-05 11:29 AM PDT -ExperimentsInHonesty,2022-09-05T18:34:11Z,- ExperimentsInHonesty commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1237380191) at 2022-09-05 11:34 AM PDT -ExperimentsInHonesty,2022-09-05T18:36:52Z,- ExperimentsInHonesty commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1237381656) at 2022-09-05 11:36 AM PDT -ExperimentsInHonesty,2022-09-08T19:53:52Z,- ExperimentsInHonesty commented on issue: [3523](https://github.com/hackforla/website/issues/3523#issuecomment-1241166011) at 2022-09-08 12:53 PM PDT -ExperimentsInHonesty,2022-09-08T21:20:23Z,- ExperimentsInHonesty commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1241245735) at 2022-09-08 02:20 PM PDT -ExperimentsInHonesty,2022-09-08T21:48:06Z,- ExperimentsInHonesty commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1241267822) at 2022-09-08 02:48 PM PDT -ExperimentsInHonesty,2022-09-08T21:56:53Z,- ExperimentsInHonesty commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1241275256) at 2022-09-08 02:56 PM PDT -ExperimentsInHonesty,2022-09-11T16:05:00Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1242994675) at 2022-09-11 09:05 AM PDT -ExperimentsInHonesty,2022-09-11T16:07:19Z,- ExperimentsInHonesty commented on issue: [3145](https://github.com/hackforla/website/issues/3145#issuecomment-1242995130) at 2022-09-11 09:07 AM PDT -ExperimentsInHonesty,2022-09-11T16:10:25Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1242995663) at 2022-09-11 09:10 AM PDT -ExperimentsInHonesty,2022-09-11T16:21:15Z,- ExperimentsInHonesty commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1242997513) at 2022-09-11 09:21 AM PDT -ExperimentsInHonesty,2022-09-11T16:26:38Z,- ExperimentsInHonesty commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1242998395) at 2022-09-11 09:26 AM PDT -ExperimentsInHonesty,2022-09-11T16:41:42Z,- ExperimentsInHonesty commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1243000675) at 2022-09-11 09:41 AM PDT -ExperimentsInHonesty,2022-09-11T16:49:13Z,- ExperimentsInHonesty commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1243001773) at 2022-09-11 09:49 AM PDT -ExperimentsInHonesty,2022-09-11T16:50:25Z,- ExperimentsInHonesty commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1243001950) at 2022-09-11 09:50 AM PDT -ExperimentsInHonesty,2022-09-11T16:51:30Z,- ExperimentsInHonesty commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1243002103) at 2022-09-11 09:51 AM PDT -ExperimentsInHonesty,2022-09-11T16:56:03Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1243002746) at 2022-09-11 09:56 AM PDT -ExperimentsInHonesty,2022-09-11T18:28:50Z,- ExperimentsInHonesty commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1243017926) at 2022-09-11 11:28 AM PDT -ExperimentsInHonesty,2022-09-11T18:33:18Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1243018723) at 2022-09-11 11:33 AM PDT -ExperimentsInHonesty,2022-09-12T21:17:10Z,- ExperimentsInHonesty commented on issue: [3473](https://github.com/hackforla/website/issues/3473#issuecomment-1244490780) at 2022-09-12 02:17 PM PDT -ExperimentsInHonesty,2022-09-12T21:18:03Z,- ExperimentsInHonesty closed issue as completed: [3473](https://github.com/hackforla/website/issues/3473#event-7371167586) at 2022-09-12 02:18 PM PDT -ExperimentsInHonesty,2022-09-12T21:23:40Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1244500959) at 2022-09-12 02:23 PM PDT -ExperimentsInHonesty,2022-09-12T21:28:40Z,- ExperimentsInHonesty opened issue: [3539](https://github.com/hackforla/website/issues/3539) at 2022-09-12 02:28 PM PDT -ExperimentsInHonesty,2022-09-12T21:32:53Z,- ExperimentsInHonesty commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1244516641) at 2022-09-12 02:32 PM PDT -ExperimentsInHonesty,2022-09-12T21:44:47Z,- ExperimentsInHonesty commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1244537560) at 2022-09-12 02:44 PM PDT -ExperimentsInHonesty,2022-09-12T22:11:03Z,- ExperimentsInHonesty commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1244581760) at 2022-09-12 03:11 PM PDT -ExperimentsInHonesty,2022-09-12T22:17:21Z,- ExperimentsInHonesty assigned to issue: [3540](https://github.com/hackforla/website/issues/3540) at 2022-09-12 03:17 PM PDT -ExperimentsInHonesty,2022-09-12T22:17:34Z,- ExperimentsInHonesty unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540) at 2022-09-12 03:17 PM PDT -ExperimentsInHonesty,2022-09-18T16:13:08Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1250340225) at 2022-09-18 09:13 AM PDT -ExperimentsInHonesty,2022-09-19T16:36:09Z,- ExperimentsInHonesty commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1251264027) at 2022-09-19 09:36 AM PDT -ExperimentsInHonesty,2022-09-19T16:39:41Z,- ExperimentsInHonesty commented on issue: [3253](https://github.com/hackforla/website/issues/3253#issuecomment-1251267753) at 2022-09-19 09:39 AM PDT -ExperimentsInHonesty,2022-09-19T16:43:14Z,- ExperimentsInHonesty commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1251271207) at 2022-09-19 09:43 AM PDT -ExperimentsInHonesty,2022-09-19T16:48:01Z,- ExperimentsInHonesty commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1251278175) at 2022-09-19 09:48 AM PDT -ExperimentsInHonesty,2022-09-19T16:56:57Z,- ExperimentsInHonesty commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1251291350) at 2022-09-19 09:56 AM PDT -ExperimentsInHonesty,2022-09-19T16:56:57Z,- ExperimentsInHonesty closed issue as completed: [3507](https://github.com/hackforla/website/issues/3507#event-7415402335) at 2022-09-19 09:56 AM PDT -ExperimentsInHonesty,2022-09-19T17:00:17Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1251294849) at 2022-09-19 10:00 AM PDT -ExperimentsInHonesty,2022-09-19T21:30:20Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1251582503) at 2022-09-19 02:30 PM PDT -ExperimentsInHonesty,2022-09-19T21:41:47Z,- ExperimentsInHonesty commented on issue: [3549](https://github.com/hackforla/website/issues/3549#issuecomment-1251592302) at 2022-09-19 02:41 PM PDT -ExperimentsInHonesty,2022-09-19T22:09:19Z,- ExperimentsInHonesty commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1251619948) at 2022-09-19 03:09 PM PDT -ExperimentsInHonesty,2022-09-20T12:59:14Z,- ExperimentsInHonesty assigned to issue: [3550](https://github.com/hackforla/website/issues/3550) at 2022-09-20 05:59 AM PDT -ExperimentsInHonesty,2022-09-21T16:18:05Z,- ExperimentsInHonesty commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1253935127) at 2022-09-21 09:18 AM PDT -ExperimentsInHonesty,2022-09-21T16:23:43Z,- ExperimentsInHonesty commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1253941222) at 2022-09-21 09:23 AM PDT -ExperimentsInHonesty,2022-09-21T16:41:20Z,- ExperimentsInHonesty commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1253963184) at 2022-09-21 09:41 AM PDT -ExperimentsInHonesty,2022-09-21T16:48:05Z,- ExperimentsInHonesty commented on issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1253972878) at 2022-09-21 09:48 AM PDT -ExperimentsInHonesty,2022-09-21T17:03:50Z,- ExperimentsInHonesty commented on issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1253988018) at 2022-09-21 10:03 AM PDT -ExperimentsInHonesty,2022-09-25T16:41:54Z,- ExperimentsInHonesty commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1257231436) at 2022-09-25 09:41 AM PDT -ExperimentsInHonesty,2022-09-25T17:28:12Z,- ExperimentsInHonesty commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1257240182) at 2022-09-25 10:28 AM PDT -ExperimentsInHonesty,2022-09-25T17:36:13Z,- ExperimentsInHonesty reopened issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1257240182) at 2022-09-25 10:36 AM PDT -ExperimentsInHonesty,2022-09-25T18:16:32Z,- ExperimentsInHonesty commented on issue: [3563](https://github.com/hackforla/website/issues/3563#issuecomment-1257248783) at 2022-09-25 11:16 AM PDT -ExperimentsInHonesty,2022-10-02T16:36:14Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1264683488) at 2022-10-02 09:36 AM PDT -ExperimentsInHonesty,2022-10-02T16:47:32Z,- ExperimentsInHonesty commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1264685669) at 2022-10-02 09:47 AM PDT -ExperimentsInHonesty,2022-10-02T16:47:32Z,- ExperimentsInHonesty reopened issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1264685669) at 2022-10-02 09:47 AM PDT -ExperimentsInHonesty,2022-10-02T16:59:42Z,- ExperimentsInHonesty commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1264688037) at 2022-10-02 09:59 AM PDT -ExperimentsInHonesty,2022-10-02T16:59:42Z,- ExperimentsInHonesty reopened issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1264688037) at 2022-10-02 09:59 AM PDT -ExperimentsInHonesty,2022-10-02T17:08:34Z,- ExperimentsInHonesty commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1264689921) at 2022-10-02 10:08 AM PDT -ExperimentsInHonesty,2022-10-02T17:08:34Z,- ExperimentsInHonesty reopened issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1264689921) at 2022-10-02 10:08 AM PDT -ExperimentsInHonesty,2022-10-02T17:45:36Z,- ExperimentsInHonesty closed issue by PR 3574: [3351](https://github.com/hackforla/website/issues/3351#event-7502351228) at 2022-10-02 10:45 AM PDT -ExperimentsInHonesty,2022-10-02T17:46:32Z,- ExperimentsInHonesty commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1264697201) at 2022-10-02 10:46 AM PDT -ExperimentsInHonesty,2022-10-02T17:46:47Z,- ExperimentsInHonesty commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1264697247) at 2022-10-02 10:46 AM PDT -ExperimentsInHonesty,2022-10-02T17:46:50Z,- ExperimentsInHonesty closed issue as completed: [3377](https://github.com/hackforla/website/issues/3377#event-7502352628) at 2022-10-02 10:46 AM PDT -ExperimentsInHonesty,2022-10-02T18:17:41Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1264703224) at 2022-10-02 11:17 AM PDT -ExperimentsInHonesty,2022-10-02T18:45:17Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1264708163) at 2022-10-02 11:45 AM PDT -ExperimentsInHonesty,2022-10-05T16:14:21Z,- ExperimentsInHonesty closed issue as completed: [2617](https://github.com/hackforla/website/issues/2617#event-7526635413) at 2022-10-05 09:14 AM PDT -ExperimentsInHonesty,2022-10-05T16:21:31Z,- ExperimentsInHonesty commented on issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-1268654709) at 2022-10-05 09:21 AM PDT -ExperimentsInHonesty,2022-10-05T16:21:31Z,- ExperimentsInHonesty closed issue as completed: [2615](https://github.com/hackforla/website/issues/2615#event-7526681009) at 2022-10-05 09:21 AM PDT -ExperimentsInHonesty,2022-10-09T16:40:37Z,- ExperimentsInHonesty commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1272580704) at 2022-10-09 09:40 AM PDT -ExperimentsInHonesty,2022-10-09T16:50:18Z,- ExperimentsInHonesty commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1272582500) at 2022-10-09 09:50 AM PDT -ExperimentsInHonesty,2022-10-09T16:52:24Z,- ExperimentsInHonesty commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1272582847) at 2022-10-09 09:52 AM PDT -ExperimentsInHonesty,2022-10-09T16:55:19Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1272583281) at 2022-10-09 09:55 AM PDT -ExperimentsInHonesty,2022-10-09T17:11:28Z,- ExperimentsInHonesty commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1272587026) at 2022-10-09 10:11 AM PDT -ExperimentsInHonesty,2022-10-09T17:35:14Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1272591464) at 2022-10-09 10:35 AM PDT -ExperimentsInHonesty,2022-10-09T18:39:51Z,- ExperimentsInHonesty commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272603882) at 2022-10-09 11:39 AM PDT -ExperimentsInHonesty,2022-10-09T18:41:03Z,- ExperimentsInHonesty reopened issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272603882) at 2022-10-09 11:41 AM PDT -ExperimentsInHonesty,2022-10-12T16:40:17Z,- ExperimentsInHonesty commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1276457318) at 2022-10-12 09:40 AM PDT -ExperimentsInHonesty,2022-10-12T16:43:42Z,- ExperimentsInHonesty commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1276460970) at 2022-10-12 09:43 AM PDT -ExperimentsInHonesty,2022-10-16T23:01:17Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1280079521) at 2022-10-16 04:01 PM PDT -ExperimentsInHonesty,2022-10-17T21:22:58Z,- ExperimentsInHonesty commented on issue: [3630](https://github.com/hackforla/website/issues/3630#issuecomment-1281512796) at 2022-10-17 02:22 PM PDT -ExperimentsInHonesty,2022-10-17T21:23:20Z,- ExperimentsInHonesty commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1281513162) at 2022-10-17 02:23 PM PDT -ExperimentsInHonesty,2022-10-23T16:16:03Z,- ExperimentsInHonesty commented on issue: [3610](https://github.com/hackforla/website/issues/3610#issuecomment-1288146796) at 2022-10-23 09:16 AM PDT -ExperimentsInHonesty,2022-10-23T16:16:03Z,- ExperimentsInHonesty closed issue as completed: [3610](https://github.com/hackforla/website/issues/3610#event-7648594318) at 2022-10-23 09:16 AM PDT -ExperimentsInHonesty,2022-10-23T16:25:46Z,- ExperimentsInHonesty commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1288148754) at 2022-10-23 09:25 AM PDT -ExperimentsInHonesty,2022-10-23T16:34:07Z,- ExperimentsInHonesty commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1288150158) at 2022-10-23 09:34 AM PDT -ExperimentsInHonesty,2022-10-23T16:34:48Z,- ExperimentsInHonesty commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1288150274) at 2022-10-23 09:34 AM PDT -ExperimentsInHonesty,2022-10-23T16:34:48Z,- ExperimentsInHonesty closed issue as completed: [1982](https://github.com/hackforla/website/issues/1982#event-7648618094) at 2022-10-23 09:34 AM PDT -ExperimentsInHonesty,2022-10-23T16:41:07Z,- ExperimentsInHonesty commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1288151348) at 2022-10-23 09:41 AM PDT -ExperimentsInHonesty,2022-10-23T17:12:14Z,- ExperimentsInHonesty commented on issue: [3554](https://github.com/hackforla/website/issues/3554#issuecomment-1288157028) at 2022-10-23 10:12 AM PDT -ExperimentsInHonesty,2022-10-23T17:12:14Z,- ExperimentsInHonesty closed issue as completed: [3554](https://github.com/hackforla/website/issues/3554#event-7648662072) at 2022-10-23 10:12 AM PDT -ExperimentsInHonesty,2022-10-23T17:15:28Z,- ExperimentsInHonesty reopened issue: [3124](https://github.com/hackforla/website/issues/3124#event-6749322766) at 2022-10-23 10:15 AM PDT -ExperimentsInHonesty,2022-10-23T17:15:30Z,- ExperimentsInHonesty closed issue as completed: [3124](https://github.com/hackforla/website/issues/3124#event-7648665962) at 2022-10-23 10:15 AM PDT -ExperimentsInHonesty,2022-10-24T22:04:49Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1289678834) at 2022-10-24 03:04 PM PDT -ExperimentsInHonesty,2022-10-24T22:43:51Z,- ExperimentsInHonesty commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1289725365) at 2022-10-24 03:43 PM PDT -ExperimentsInHonesty,2022-10-24T22:53:34Z,- ExperimentsInHonesty commented on issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1289732834) at 2022-10-24 03:53 PM PDT -ExperimentsInHonesty,2022-10-24T22:59:24Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1289736535) at 2022-10-24 03:59 PM PDT -ExperimentsInHonesty,2022-10-25T00:35:52Z,- ExperimentsInHonesty assigned to issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-10-24 05:35 PM PDT -ExperimentsInHonesty,2022-10-25T00:35:59Z,- ExperimentsInHonesty unassigned from issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-10-24 05:35 PM PDT -ExperimentsInHonesty,2022-10-26T16:48:50Z,- ExperimentsInHonesty commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1292327167) at 2022-10-26 09:48 AM PDT -ExperimentsInHonesty,2022-10-28T16:07:44Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1295178212) at 2022-10-28 09:07 AM PDT -ExperimentsInHonesty,2022-10-30T16:34:33Z,- ExperimentsInHonesty commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1296297453) at 2022-10-30 09:34 AM PDT -ExperimentsInHonesty,2022-10-30T17:19:26Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1296306881) at 2022-10-30 10:19 AM PDT -ExperimentsInHonesty,2022-10-30T17:34:37Z,- ExperimentsInHonesty commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1296310277) at 2022-10-30 10:34 AM PDT -ExperimentsInHonesty,2022-10-31T16:45:13Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1297374338) at 2022-10-31 09:45 AM PDT -ExperimentsInHonesty,2022-10-31T16:47:35Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1297377081) at 2022-10-31 09:47 AM PDT -ExperimentsInHonesty,2022-10-31T16:56:04Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1297386781) at 2022-10-31 09:56 AM PDT -ExperimentsInHonesty,2022-10-31T17:06:25Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1297399517) at 2022-10-31 10:06 AM PDT -ExperimentsInHonesty,2022-10-31T21:54:18Z,- ExperimentsInHonesty commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1297732631) at 2022-10-31 02:54 PM PDT -ExperimentsInHonesty,2022-10-31T21:55:54Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1297734118) at 2022-10-31 02:55 PM PDT -ExperimentsInHonesty,2022-10-31T21:59:09Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-1297737227) at 2022-10-31 02:59 PM PDT -ExperimentsInHonesty,2022-10-31T22:56:59Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1297790151) at 2022-10-31 03:56 PM PDT -ExperimentsInHonesty,2022-11-06T18:04:01Z,- ExperimentsInHonesty commented on issue: [3356](https://github.com/hackforla/website/issues/3356#issuecomment-1304859025) at 2022-11-06 10:04 AM PST -ExperimentsInHonesty,2022-11-06T18:21:06Z,- ExperimentsInHonesty commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304862689) at 2022-11-06 10:21 AM PST -ExperimentsInHonesty,2022-11-06T18:40:03Z,- ExperimentsInHonesty commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1304866103) at 2022-11-06 10:40 AM PST -ExperimentsInHonesty,2022-11-06T18:42:04Z,- ExperimentsInHonesty reopened issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1304866103) at 2022-11-06 10:42 AM PST -ExperimentsInHonesty,2022-11-06T19:14:52Z,- ExperimentsInHonesty reopened issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1304867526) at 2022-11-06 11:14 AM PST -ExperimentsInHonesty,2022-11-06T19:15:09Z,- ExperimentsInHonesty reopened issue: [2198](https://github.com/hackforla/website/issues/2198#event-7228040529) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:17Z,- ExperimentsInHonesty reopened issue: [2199](https://github.com/hackforla/website/issues/2199#event-7282462601) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:25Z,- ExperimentsInHonesty reopened issue: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:44Z,- ExperimentsInHonesty reopened issue: [2204](https://github.com/hackforla/website/issues/2204#event-6114501569) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:52Z,- ExperimentsInHonesty reopened issue: [2205](https://github.com/hackforla/website/issues/2205#event-7274007592) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:18:21Z,- ExperimentsInHonesty commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304873372) at 2022-11-06 11:18 AM PST -ExperimentsInHonesty,2022-11-06T19:24:40Z,- ExperimentsInHonesty closed issue by PR 3471: [2198](https://github.com/hackforla/website/issues/2198#event-7747786281) at 2022-11-06 11:24 AM PST -ExperimentsInHonesty,2022-11-06T19:24:59Z,- ExperimentsInHonesty commented on issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1304874482) at 2022-11-06 11:24 AM PST -ExperimentsInHonesty,2022-11-06T19:28:30Z,- ExperimentsInHonesty closed issue by PR 3490: [2205](https://github.com/hackforla/website/issues/2205#event-7747792572) at 2022-11-06 11:28 AM PST -ExperimentsInHonesty,2022-11-06T19:29:31Z,- ExperimentsInHonesty commented on issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-1304875243) at 2022-11-06 11:29 AM PST -ExperimentsInHonesty,2022-11-06T19:40:44Z,- ExperimentsInHonesty closed issue by PR 2767: [2204](https://github.com/hackforla/website/issues/2204#event-7747808850) at 2022-11-06 11:40 AM PST -ExperimentsInHonesty,2022-11-06T20:06:20Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304882665) at 2022-11-06 12:06 PM PST -ExperimentsInHonesty,2022-11-06T20:44:19Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1304889600) at 2022-11-06 12:44 PM PST -ExperimentsInHonesty,2022-11-06T20:50:45Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1304890595) at 2022-11-06 12:50 PM PST -ExperimentsInHonesty,2022-11-06T21:02:33Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1304892925) at 2022-11-06 01:02 PM PST -ExperimentsInHonesty,2022-11-06T21:16:03Z,- ExperimentsInHonesty commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1304895709) at 2022-11-06 01:16 PM PST -ExperimentsInHonesty,2022-11-06T21:42:49Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1304901119) at 2022-11-06 01:42 PM PST -ExperimentsInHonesty,2022-11-06T21:47:16Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1304901975) at 2022-11-06 01:47 PM PST -ExperimentsInHonesty,2022-11-06T21:47:45Z,- ExperimentsInHonesty closed issue as completed: [3056](https://github.com/hackforla/website/issues/3056#event-7747970387) at 2022-11-06 01:47 PM PST -ExperimentsInHonesty,2022-11-06T22:07:22Z,- ExperimentsInHonesty commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1304906631) at 2022-11-06 02:07 PM PST -ExperimentsInHonesty,2022-11-06T22:07:59Z,- ExperimentsInHonesty commented on issue: [3691](https://github.com/hackforla/website/issues/3691#issuecomment-1304906769) at 2022-11-06 02:07 PM PST -ExperimentsInHonesty,2022-11-06T22:21:15Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1304909356) at 2022-11-06 02:21 PM PST -ExperimentsInHonesty,2022-11-07T17:14:25Z,- ExperimentsInHonesty commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1305933275) at 2022-11-07 09:14 AM PST -ExperimentsInHonesty,2022-11-07T17:18:51Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1305938853) at 2022-11-07 09:18 AM PST -ExperimentsInHonesty,2022-11-07T17:31:33Z,- ExperimentsInHonesty commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1305953304) at 2022-11-07 09:31 AM PST -ExperimentsInHonesty,2022-11-07T17:43:41Z,- ExperimentsInHonesty commented on issue: [3080](https://github.com/hackforla/website/issues/3080#issuecomment-1305967445) at 2022-11-07 09:43 AM PST -ExperimentsInHonesty,2022-11-07T17:43:42Z,- ExperimentsInHonesty closed issue as completed: [3080](https://github.com/hackforla/website/issues/3080#event-7754944191) at 2022-11-07 09:43 AM PST -ExperimentsInHonesty,2022-11-07T17:44:34Z,- ExperimentsInHonesty commented on issue: [3180](https://github.com/hackforla/website/issues/3180#issuecomment-1305968036) at 2022-11-07 09:44 AM PST -ExperimentsInHonesty,2022-11-07T17:44:34Z,- ExperimentsInHonesty closed issue as completed: [3180](https://github.com/hackforla/website/issues/3180#event-7754946525) at 2022-11-07 09:44 AM PST -ExperimentsInHonesty,2022-11-07T18:05:36Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1305992546) at 2022-11-07 10:05 AM PST -ExperimentsInHonesty,2022-11-07T18:05:40Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1305992671) at 2022-11-07 10:05 AM PST -ExperimentsInHonesty,2022-11-07T22:28:38Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1306314762) at 2022-11-07 02:28 PM PST -ExperimentsInHonesty,2022-11-07T23:37:06Z,- ExperimentsInHonesty opened pull request: [3698](https://github.com/hackforla/website/pull/3698) at 2022-11-07 03:37 PM PST -ExperimentsInHonesty,2022-11-08T00:00:20Z,- ExperimentsInHonesty commented on pull request: [3698](https://github.com/hackforla/website/pull/3698#issuecomment-1306390703) at 2022-11-07 04:00 PM PST -ExperimentsInHonesty,2022-11-08T01:39:33Z,- ExperimentsInHonesty pull request merged: [3698](https://github.com/hackforla/website/pull/3698#event-7757933774) at 2022-11-07 05:39 PM PST -ExperimentsInHonesty,2022-11-08T15:50:35Z,- ExperimentsInHonesty opened issue: [3701](https://github.com/hackforla/website/issues/3701) at 2022-11-08 07:50 AM PST -ExperimentsInHonesty,2022-11-09T18:25:16Z,- ExperimentsInHonesty commented on issue: [1878](https://github.com/hackforla/website/issues/1878#issuecomment-1309188339) at 2022-11-09 10:25 AM PST -ExperimentsInHonesty,2022-11-09T18:41:30Z,- ExperimentsInHonesty commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1309204731) at 2022-11-09 10:41 AM PST -ExperimentsInHonesty,2022-11-09T20:26:53Z,- ExperimentsInHonesty closed issue as completed: [3252](https://github.com/hackforla/website/issues/3252#event-7777042956) at 2022-11-09 12:26 PM PST -ExperimentsInHonesty,2022-11-09T20:27:23Z,- ExperimentsInHonesty closed issue as completed: [3408](https://github.com/hackforla/website/issues/3408#event-7777046078) at 2022-11-09 12:27 PM PST -ExperimentsInHonesty,2022-11-09T20:27:47Z,- ExperimentsInHonesty closed issue as completed: [3412](https://github.com/hackforla/website/issues/3412#event-7777048787) at 2022-11-09 12:27 PM PST -ExperimentsInHonesty,2022-11-10T01:08:18Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1309628230) at 2022-11-09 05:08 PM PST -ExperimentsInHonesty,2022-11-13T17:09:57Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1312778461) at 2022-11-13 09:09 AM PST -ExperimentsInHonesty,2022-11-13T17:24:45Z,- ExperimentsInHonesty commented on issue: [3167](https://github.com/hackforla/website/issues/3167#issuecomment-1312780953) at 2022-11-13 09:24 AM PST -ExperimentsInHonesty,2022-11-13T17:26:24Z,- ExperimentsInHonesty commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1312781247) at 2022-11-13 09:26 AM PST -ExperimentsInHonesty,2022-11-13T17:29:49Z,- ExperimentsInHonesty commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1312781782) at 2022-11-13 09:29 AM PST -ExperimentsInHonesty,2022-11-13T17:30:36Z,- ExperimentsInHonesty commented on issue: [3545](https://github.com/hackforla/website/issues/3545#issuecomment-1312781926) at 2022-11-13 09:30 AM PST -ExperimentsInHonesty,2022-11-13T17:31:11Z,- ExperimentsInHonesty commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1312782011) at 2022-11-13 09:31 AM PST -ExperimentsInHonesty,2022-11-13T17:31:37Z,- ExperimentsInHonesty commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1312782080) at 2022-11-13 09:31 AM PST -ExperimentsInHonesty,2022-11-13T17:32:02Z,- ExperimentsInHonesty commented on issue: [3512](https://github.com/hackforla/website/issues/3512#issuecomment-1312782152) at 2022-11-13 09:32 AM PST -ExperimentsInHonesty,2022-11-13T17:33:54Z,- ExperimentsInHonesty commented on issue: [3245](https://github.com/hackforla/website/issues/3245#issuecomment-1312782466) at 2022-11-13 09:33 AM PST -ExperimentsInHonesty,2022-11-13T17:34:53Z,- ExperimentsInHonesty commented on issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1312782678) at 2022-11-13 09:34 AM PST -ExperimentsInHonesty,2022-11-13T17:35:15Z,- ExperimentsInHonesty commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1312782738) at 2022-11-13 09:35 AM PST -ExperimentsInHonesty,2022-11-13T17:43:36Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1312784099) at 2022-11-13 09:43 AM PST -ExperimentsInHonesty,2022-11-13T17:59:38Z,- ExperimentsInHonesty commented on issue: [3691](https://github.com/hackforla/website/issues/3691#issuecomment-1312786670) at 2022-11-13 09:59 AM PST -ExperimentsInHonesty,2022-11-13T18:23:41Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1312791601) at 2022-11-13 10:23 AM PST -ExperimentsInHonesty,2022-11-13T18:30:27Z,- ExperimentsInHonesty commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1312792831) at 2022-11-13 10:30 AM PST -ExperimentsInHonesty,2022-11-14T17:26:24Z,- ExperimentsInHonesty commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1314120661) at 2022-11-14 09:26 AM PST -ExperimentsInHonesty,2022-11-14T17:27:07Z,- ExperimentsInHonesty commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1314121364) at 2022-11-14 09:27 AM PST -ExperimentsInHonesty,2022-11-14T17:33:34Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1314129039) at 2022-11-14 09:33 AM PST -ExperimentsInHonesty,2022-11-14T17:33:39Z,- ExperimentsInHonesty unassigned from issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1314129039) at 2022-11-14 09:33 AM PST -ExperimentsInHonesty,2022-11-14T23:32:06Z,- ExperimentsInHonesty commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1314546517) at 2022-11-14 03:32 PM PST -ExperimentsInHonesty,2022-11-14T23:38:47Z,- ExperimentsInHonesty commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1314551689) at 2022-11-14 03:38 PM PST -ExperimentsInHonesty,2022-11-16T17:45:25Z,- ExperimentsInHonesty commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1317413949) at 2022-11-16 09:45 AM PST -ExperimentsInHonesty,2022-11-16T17:45:25Z,- ExperimentsInHonesty closed issue as completed: [3661](https://github.com/hackforla/website/issues/3661#event-7826498690) at 2022-11-16 09:45 AM PST -ExperimentsInHonesty,2022-11-16T17:52:40Z,- ExperimentsInHonesty commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1317423556) at 2022-11-16 09:52 AM PST -ExperimentsInHonesty,2022-11-19T19:01:05Z,- ExperimentsInHonesty commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-1320947774) at 2022-11-19 11:01 AM PST -ExperimentsInHonesty,2022-11-19T19:01:05Z,- ExperimentsInHonesty closed issue as completed: [2576](https://github.com/hackforla/website/issues/2576#event-7850107031) at 2022-11-19 11:01 AM PST -ExperimentsInHonesty,2022-11-20T18:44:40Z,- ExperimentsInHonesty closed issue as completed: [3434](https://github.com/hackforla/website/issues/3434#event-7851992624) at 2022-11-20 10:44 AM PST -ExperimentsInHonesty,2022-11-20T18:50:03Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1321212365) at 2022-11-20 10:50 AM PST -ExperimentsInHonesty,2022-11-21T15:34:56Z,- ExperimentsInHonesty opened issue: [3735](https://github.com/hackforla/website/issues/3735) at 2022-11-21 07:34 AM PST -ExperimentsInHonesty,2022-11-26T18:48:50Z,- ExperimentsInHonesty commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1328096306) at 2022-11-26 10:48 AM PST -ExperimentsInHonesty,2022-11-26T18:48:50Z,- ExperimentsInHonesty closed issue as completed: [3571](https://github.com/hackforla/website/issues/3571#event-7896607212) at 2022-11-26 10:48 AM PST -ExperimentsInHonesty,2022-11-26T19:03:19Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1328098258) at 2022-11-26 11:03 AM PST -ExperimentsInHonesty,2022-11-26T19:20:15Z,- ExperimentsInHonesty commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1328100470) at 2022-11-26 11:20 AM PST -ExperimentsInHonesty,2022-11-26T19:24:38Z,- ExperimentsInHonesty commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1328101052) at 2022-11-26 11:24 AM PST -ExperimentsInHonesty,2022-11-26T19:31:37Z,- ExperimentsInHonesty commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328101902) at 2022-11-26 11:31 AM PST -ExperimentsInHonesty,2022-11-26T19:53:12Z,- ExperimentsInHonesty commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1328104511) at 2022-11-26 11:53 AM PST -ExperimentsInHonesty,2022-11-26T20:17:40Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328107516) at 2022-11-26 12:17 PM PST -ExperimentsInHonesty,2022-11-26T21:00:47Z,- ExperimentsInHonesty commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1328113671) at 2022-11-26 01:00 PM PST -ExperimentsInHonesty,2022-11-27T03:50:11Z,- ExperimentsInHonesty commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1328164934) at 2022-11-26 07:50 PM PST -ExperimentsInHonesty,2022-11-27T04:04:35Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1328166495) at 2022-11-26 08:04 PM PST -ExperimentsInHonesty,2022-11-27T04:24:26Z,- ExperimentsInHonesty commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1328168818) at 2022-11-26 08:24 PM PST -ExperimentsInHonesty,2022-11-27T04:25:44Z,- ExperimentsInHonesty commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1328168935) at 2022-11-26 08:25 PM PST -ExperimentsInHonesty,2022-11-27T04:33:35Z,- ExperimentsInHonesty commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1328169584) at 2022-11-26 08:33 PM PST -ExperimentsInHonesty,2022-11-27T04:39:04Z,- ExperimentsInHonesty commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1328170089) at 2022-11-26 08:39 PM PST -ExperimentsInHonesty,2022-11-27T04:41:40Z,- ExperimentsInHonesty commented on issue: [2298](https://github.com/hackforla/website/issues/2298#issuecomment-1328170337) at 2022-11-26 08:41 PM PST -ExperimentsInHonesty,2022-11-27T04:43:11Z,- ExperimentsInHonesty commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1328170490) at 2022-11-26 08:43 PM PST -ExperimentsInHonesty,2022-11-27T04:48:33Z,- ExperimentsInHonesty commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1328170999) at 2022-11-26 08:48 PM PST -ExperimentsInHonesty,2022-11-27T04:59:20Z,- ExperimentsInHonesty commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1328171964) at 2022-11-26 08:59 PM PST -ExperimentsInHonesty,2022-11-27T05:22:26Z,- ExperimentsInHonesty commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1328174510) at 2022-11-26 09:22 PM PST -ExperimentsInHonesty,2022-11-27T05:31:26Z,- ExperimentsInHonesty commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1328175300) at 2022-11-26 09:31 PM PST -ExperimentsInHonesty,2022-11-27T05:40:31Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1328176150) at 2022-11-26 09:40 PM PST -ExperimentsInHonesty,2022-11-27T05:43:06Z,- ExperimentsInHonesty closed issue as completed: [3153](https://github.com/hackforla/website/issues/3153#event-7897083642) at 2022-11-26 09:43 PM PST -ExperimentsInHonesty,2022-11-27T05:51:23Z,- ExperimentsInHonesty commented on issue: [3734](https://github.com/hackforla/website/issues/3734#issuecomment-1328177133) at 2022-11-26 09:51 PM PST -ExperimentsInHonesty,2022-11-27T06:01:07Z,- ExperimentsInHonesty commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328178099) at 2022-11-26 10:01 PM PST -ExperimentsInHonesty,2022-11-27T06:09:11Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1328179044) at 2022-11-26 10:09 PM PST -ExperimentsInHonesty,2022-11-27T06:34:49Z,- ExperimentsInHonesty commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1328181683) at 2022-11-26 10:34 PM PST -ExperimentsInHonesty,2022-11-27T06:37:39Z,- ExperimentsInHonesty commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1328181981) at 2022-11-26 10:37 PM PST -ExperimentsInHonesty,2022-11-27T06:55:38Z,- ExperimentsInHonesty commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1328183793) at 2022-11-26 10:55 PM PST -ExperimentsInHonesty,2022-11-27T07:00:47Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1328184353) at 2022-11-26 11:00 PM PST -ExperimentsInHonesty,2022-11-27T07:03:21Z,- ExperimentsInHonesty closed issue as completed: [3406](https://github.com/hackforla/website/issues/3406#event-7897141913) at 2022-11-26 11:03 PM PST -ExperimentsInHonesty,2022-11-27T07:06:14Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1328185038) at 2022-11-26 11:06 PM PST -ExperimentsInHonesty,2022-11-27T07:11:49Z,- ExperimentsInHonesty commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1328185738) at 2022-11-26 11:11 PM PST -ExperimentsInHonesty,2022-11-27T07:15:59Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1328186274) at 2022-11-26 11:15 PM PST -ExperimentsInHonesty,2022-11-27T07:16:33Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1328186326) at 2022-11-26 11:16 PM PST -ExperimentsInHonesty,2022-11-27T07:19:25Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1328186672) at 2022-11-26 11:19 PM PST -ExperimentsInHonesty,2022-11-27T07:24:02Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1328187176) at 2022-11-26 11:24 PM PST -ExperimentsInHonesty,2022-11-27T07:25:55Z,- ExperimentsInHonesty commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1328187360) at 2022-11-26 11:25 PM PST -ExperimentsInHonesty,2022-11-27T07:35:02Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1328188313) at 2022-11-26 11:35 PM PST -ExperimentsInHonesty,2022-11-27T07:36:38Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1328188461) at 2022-11-26 11:36 PM PST -ExperimentsInHonesty,2022-11-27T07:38:15Z,- ExperimentsInHonesty commented on issue: [3706](https://github.com/hackforla/website/issues/3706#issuecomment-1328188612) at 2022-11-26 11:38 PM PST -ExperimentsInHonesty,2022-11-27T07:56:29Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1328190837) at 2022-11-26 11:56 PM PST -ExperimentsInHonesty,2022-11-27T08:00:49Z,- ExperimentsInHonesty commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1328191391) at 2022-11-27 12:00 AM PST -ExperimentsInHonesty,2022-11-27T08:07:35Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1328192541) at 2022-11-27 12:07 AM PST -ExperimentsInHonesty,2022-11-27T08:12:47Z,- ExperimentsInHonesty commented on issue: [3634](https://github.com/hackforla/website/issues/3634#issuecomment-1328193361) at 2022-11-27 12:12 AM PST -ExperimentsInHonesty,2022-11-27T08:26:11Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1328195050) at 2022-11-27 12:26 AM PST -ExperimentsInHonesty,2022-11-27T08:41:57Z,- ExperimentsInHonesty commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1328197383) at 2022-11-27 12:41 AM PST -ExperimentsInHonesty,2022-11-27T09:04:58Z,- ExperimentsInHonesty commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1328200974) at 2022-11-27 01:04 AM PST -ExperimentsInHonesty,2022-11-27T09:20:56Z,- ExperimentsInHonesty commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1328204261) at 2022-11-27 01:20 AM PST -ExperimentsInHonesty,2022-11-27T09:22:32Z,- ExperimentsInHonesty commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1328204529) at 2022-11-27 01:22 AM PST -ExperimentsInHonesty,2022-11-27T09:29:47Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328205643) at 2022-11-27 01:29 AM PST -ExperimentsInHonesty,2022-11-27T09:33:02Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328206170) at 2022-11-27 01:33 AM PST -ExperimentsInHonesty,2022-11-27T09:49:58Z,- ExperimentsInHonesty reopened issue: [3604](https://github.com/hackforla/website/issues/3604#event-7798922045) at 2022-11-27 01:49 AM PST -ExperimentsInHonesty,2022-11-27T09:51:01Z,- ExperimentsInHonesty commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328208839) at 2022-11-27 01:51 AM PST -ExperimentsInHonesty,2022-11-27T18:33:20Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1328312902) at 2022-11-27 10:33 AM PST -ExperimentsInHonesty,2022-11-27T19:00:00Z,- ExperimentsInHonesty opened issue: [3748](https://github.com/hackforla/website/issues/3748) at 2022-11-27 11:00 AM PST -ExperimentsInHonesty,2022-11-27T19:09:05Z,- ExperimentsInHonesty commented on issue: [3734](https://github.com/hackforla/website/issues/3734#issuecomment-1328319044) at 2022-11-27 11:09 AM PST -ExperimentsInHonesty,2022-11-27T19:20:06Z,- ExperimentsInHonesty commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328320992) at 2022-11-27 11:20 AM PST -ExperimentsInHonesty,2022-11-27T19:27:10Z,- ExperimentsInHonesty commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1328322289) at 2022-11-27 11:27 AM PST -ExperimentsInHonesty,2022-11-27T19:36:23Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-11-27 11:36 AM PST -ExperimentsInHonesty,2022-11-27T19:36:25Z,- ExperimentsInHonesty reopened issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-11-27 11:36 AM PST -ExperimentsInHonesty,2022-11-27T19:41:52Z,- ExperimentsInHonesty commented on issue: [3634](https://github.com/hackforla/website/issues/3634#issuecomment-1328324752) at 2022-11-27 11:41 AM PST -ExperimentsInHonesty,2022-11-27T19:47:07Z,- ExperimentsInHonesty commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1328325640) at 2022-11-27 11:47 AM PST -ExperimentsInHonesty,2022-11-27T19:53:16Z,- ExperimentsInHonesty commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1328326660) at 2022-11-27 11:53 AM PST -ExperimentsInHonesty,2022-11-27T20:04:29Z,- ExperimentsInHonesty commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1328328768) at 2022-11-27 12:04 PM PST -ExperimentsInHonesty,2022-11-27T20:06:21Z,- ExperimentsInHonesty reopened issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328206170) at 2022-11-27 12:06 PM PST -ExperimentsInHonesty,2022-11-27T20:09:16Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328329813) at 2022-11-27 12:09 PM PST -ExperimentsInHonesty,2022-11-27T20:21:59Z,- ExperimentsInHonesty commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328332173) at 2022-11-27 12:21 PM PST -ExperimentsInHonesty,2022-11-27T20:22:01Z,- ExperimentsInHonesty reopened issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328332173) at 2022-11-27 12:22 PM PST -ExperimentsInHonesty,2022-11-27T20:42:50Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1328335715) at 2022-11-27 12:42 PM PST -ExperimentsInHonesty,2022-11-28T17:36:11Z,- ExperimentsInHonesty commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1329482194) at 2022-11-28 09:36 AM PST -ExperimentsInHonesty,2022-11-29T01:54:23Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1329972156) at 2022-11-28 05:54 PM PST -ExperimentsInHonesty,2022-11-29T01:57:58Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1329973906) at 2022-11-28 05:57 PM PST -ExperimentsInHonesty,2022-11-29T02:01:28Z,- ExperimentsInHonesty commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1329975785) at 2022-11-28 06:01 PM PST -ExperimentsInHonesty,2022-11-29T02:28:35Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1329993757) at 2022-11-28 06:28 PM PST -ExperimentsInHonesty,2022-11-29T14:47:50Z,- ExperimentsInHonesty commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1330763184) at 2022-11-29 06:47 AM PST -ExperimentsInHonesty,2022-11-29T14:48:34Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1330764858) at 2022-11-29 06:48 AM PST -ExperimentsInHonesty,2022-11-29T14:53:03Z,- ExperimentsInHonesty commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1330771382) at 2022-11-29 06:53 AM PST -ExperimentsInHonesty,2022-11-29T14:57:03Z,- ExperimentsInHonesty closed issue as completed: [3606](https://github.com/hackforla/website/issues/3606#event-7913439691) at 2022-11-29 06:57 AM PST -ExperimentsInHonesty,2022-11-29T14:57:56Z,- ExperimentsInHonesty closed issue as completed: [3553](https://github.com/hackforla/website/issues/3553#event-7913448608) at 2022-11-29 06:57 AM PST -ExperimentsInHonesty,2022-11-29T14:58:14Z,- ExperimentsInHonesty closed issue as completed: [3569](https://github.com/hackforla/website/issues/3569#event-7913451593) at 2022-11-29 06:58 AM PST -ExperimentsInHonesty,2022-11-29T15:02:39Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1330786611) at 2022-11-29 07:02 AM PST -ExperimentsInHonesty,2022-11-29T15:26:58Z,- ExperimentsInHonesty commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1330824787) at 2022-11-29 07:26 AM PST -ExperimentsInHonesty,2022-12-02T15:49:45Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1335450887) at 2022-12-02 07:49 AM PST -ExperimentsInHonesty,2022-12-02T16:09:28Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1335479529) at 2022-12-02 08:09 AM PST -ExperimentsInHonesty,2022-12-02T20:09:56Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1335792087) at 2022-12-02 12:09 PM PST -ExperimentsInHonesty,2022-12-02T20:44:31Z,- ExperimentsInHonesty commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1335827358) at 2022-12-02 12:44 PM PST -ExperimentsInHonesty,2022-12-02T20:47:04Z,- ExperimentsInHonesty commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1335829061) at 2022-12-02 12:47 PM PST -ExperimentsInHonesty,2022-12-02T20:52:34Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1335835546) at 2022-12-02 12:52 PM PST -ExperimentsInHonesty,2022-12-02T20:56:05Z,- ExperimentsInHonesty commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1335837974) at 2022-12-02 12:56 PM PST -ExperimentsInHonesty,2022-12-02T21:00:21Z,- ExperimentsInHonesty commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1335840746) at 2022-12-02 01:00 PM PST -ExperimentsInHonesty,2022-12-02T21:06:47Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1335845685) at 2022-12-02 01:06 PM PST -ExperimentsInHonesty,2022-12-02T21:09:57Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1335847822) at 2022-12-02 01:09 PM PST -ExperimentsInHonesty,2022-12-02T21:16:41Z,- ExperimentsInHonesty commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1335852309) at 2022-12-02 01:16 PM PST -ExperimentsInHonesty,2022-12-02T21:16:46Z,- ExperimentsInHonesty closed issue as completed: [3608](https://github.com/hackforla/website/issues/3608#event-7943838982) at 2022-12-02 01:16 PM PST -ExperimentsInHonesty,2022-12-02T21:20:59Z,- ExperimentsInHonesty commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1335855453) at 2022-12-02 01:20 PM PST -ExperimentsInHonesty,2022-12-02T21:26:44Z,- ExperimentsInHonesty commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1335859441) at 2022-12-02 01:26 PM PST -ExperimentsInHonesty,2022-12-02T21:29:23Z,- ExperimentsInHonesty commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1335861286) at 2022-12-02 01:29 PM PST -ExperimentsInHonesty,2022-12-02T21:34:25Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1335864572) at 2022-12-02 01:34 PM PST -ExperimentsInHonesty,2022-12-02T21:36:05Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1335865789) at 2022-12-02 01:36 PM PST -ExperimentsInHonesty,2022-12-02T21:39:49Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1335868749) at 2022-12-02 01:39 PM PST -ExperimentsInHonesty,2022-12-02T21:42:36Z,- ExperimentsInHonesty commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1335870961) at 2022-12-02 01:42 PM PST -ExperimentsInHonesty,2022-12-02T21:59:39Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1335888414) at 2022-12-02 01:59 PM PST -ExperimentsInHonesty,2022-12-03T00:24:14Z,- ExperimentsInHonesty commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1335983599) at 2022-12-02 04:24 PM PST -ExperimentsInHonesty,2022-12-03T00:32:10Z,- ExperimentsInHonesty commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1335986237) at 2022-12-02 04:32 PM PST -ExperimentsInHonesty,2022-12-05T21:21:52Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1338185396) at 2022-12-05 01:21 PM PST -ExperimentsInHonesty,2023-01-04T17:43:11Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1371231710) at 2023-01-04 09:43 AM PST -ExperimentsInHonesty,2023-01-08T17:08:59Z,- ExperimentsInHonesty commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1374883013) at 2023-01-08 09:08 AM PST -ExperimentsInHonesty,2023-01-08T17:31:40Z,- ExperimentsInHonesty commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1374887337) at 2023-01-08 09:31 AM PST -ExperimentsInHonesty,2023-01-08T18:55:24Z,- ExperimentsInHonesty commented on issue: [3796](https://github.com/hackforla/website/issues/3796#issuecomment-1374902948) at 2023-01-08 10:55 AM PST -ExperimentsInHonesty,2023-01-08T19:05:19Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1374905033) at 2023-01-08 11:05 AM PST -ExperimentsInHonesty,2023-01-09T03:04:20Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1375047981) at 2023-01-08 07:04 PM PST -ExperimentsInHonesty,2023-01-09T03:06:04Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1375049581) at 2023-01-08 07:06 PM PST -ExperimentsInHonesty,2023-01-09T03:09:26Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1375052262) at 2023-01-08 07:09 PM PST -ExperimentsInHonesty,2023-01-09T03:12:01Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1375054207) at 2023-01-08 07:12 PM PST -ExperimentsInHonesty,2023-01-09T03:20:30Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1375060441) at 2023-01-08 07:20 PM PST -ExperimentsInHonesty,2023-01-09T03:22:36Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1375061745) at 2023-01-08 07:22 PM PST -ExperimentsInHonesty,2023-01-09T03:25:06Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1375062979) at 2023-01-08 07:25 PM PST -ExperimentsInHonesty,2023-01-09T03:30:51Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1375065765) at 2023-01-08 07:30 PM PST -ExperimentsInHonesty,2023-01-09T03:33:30Z,- ExperimentsInHonesty commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1375066761) at 2023-01-08 07:33 PM PST -ExperimentsInHonesty,2023-01-09T03:49:01Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1375071684) at 2023-01-08 07:49 PM PST -ExperimentsInHonesty,2023-01-09T04:00:51Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1375075347) at 2023-01-08 08:00 PM PST -ExperimentsInHonesty,2023-01-09T04:01:13Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1375075620) at 2023-01-08 08:01 PM PST -ExperimentsInHonesty,2023-01-09T04:08:36Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1375082474) at 2023-01-08 08:08 PM PST -ExperimentsInHonesty,2023-01-09T04:13:10Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1375085928) at 2023-01-08 08:13 PM PST -ExperimentsInHonesty,2023-01-09T04:22:06Z,- ExperimentsInHonesty commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1375091905) at 2023-01-08 08:22 PM PST -ExperimentsInHonesty,2023-01-09T04:22:06Z,- ExperimentsInHonesty closed issue as completed: [3613](https://github.com/hackforla/website/issues/3613#event-8178107585) at 2023-01-08 08:22 PM PST -ExperimentsInHonesty,2023-01-09T04:25:13Z,- ExperimentsInHonesty commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1375093824) at 2023-01-08 08:25 PM PST -ExperimentsInHonesty,2023-01-09T04:25:13Z,- ExperimentsInHonesty closed issue as completed: [3637](https://github.com/hackforla/website/issues/3637#event-8178118131) at 2023-01-08 08:25 PM PST -ExperimentsInHonesty,2023-01-09T04:27:38Z,- ExperimentsInHonesty commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1375095174) at 2023-01-08 08:27 PM PST -ExperimentsInHonesty,2023-01-09T04:27:38Z,- ExperimentsInHonesty closed issue as completed: [3639](https://github.com/hackforla/website/issues/3639#event-8178126476) at 2023-01-08 08:27 PM PST -ExperimentsInHonesty,2023-01-09T04:31:19Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1375097061) at 2023-01-08 08:31 PM PST -ExperimentsInHonesty,2023-01-09T04:34:17Z,- ExperimentsInHonesty commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1375098436) at 2023-01-08 08:34 PM PST -ExperimentsInHonesty,2023-01-09T04:38:13Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1375099931) at 2023-01-08 08:38 PM PST -ExperimentsInHonesty,2023-01-09T04:41:23Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1375101119) at 2023-01-08 08:41 PM PST -ExperimentsInHonesty,2023-01-09T04:41:59Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1375101371) at 2023-01-08 08:41 PM PST -ExperimentsInHonesty,2023-01-09T04:44:04Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1375102082) at 2023-01-08 08:44 PM PST -ExperimentsInHonesty,2023-01-09T04:49:59Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1375104044) at 2023-01-08 08:49 PM PST -ExperimentsInHonesty,2023-01-09T04:52:26Z,- ExperimentsInHonesty commented on issue: [3706](https://github.com/hackforla/website/issues/3706#issuecomment-1375104788) at 2023-01-08 08:52 PM PST -ExperimentsInHonesty,2023-01-09T04:56:19Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1375106017) at 2023-01-08 08:56 PM PST -ExperimentsInHonesty,2023-01-09T05:11:19Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1375115877) at 2023-01-08 09:11 PM PST -ExperimentsInHonesty,2023-01-09T05:15:31Z,- ExperimentsInHonesty commented on issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1375118859) at 2023-01-08 09:15 PM PST -ExperimentsInHonesty,2023-01-09T05:17:47Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1375120273) at 2023-01-08 09:17 PM PST -ExperimentsInHonesty,2023-01-09T05:19:26Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1375121122) at 2023-01-08 09:19 PM PST -ExperimentsInHonesty,2023-01-09T05:21:08Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1375121804) at 2023-01-08 09:21 PM PST -ExperimentsInHonesty,2023-01-09T05:23:58Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1375122938) at 2023-01-08 09:23 PM PST -ExperimentsInHonesty,2023-01-09T05:28:44Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1375124725) at 2023-01-08 09:28 PM PST -ExperimentsInHonesty,2023-01-09T05:31:14Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1375125708) at 2023-01-08 09:31 PM PST -ExperimentsInHonesty,2023-01-09T05:33:06Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1375126422) at 2023-01-08 09:33 PM PST -ExperimentsInHonesty,2023-01-09T05:35:58Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1375127560) at 2023-01-08 09:35 PM PST -ExperimentsInHonesty,2023-01-09T05:39:05Z,- ExperimentsInHonesty commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1375128769) at 2023-01-08 09:39 PM PST -ExperimentsInHonesty,2023-01-09T05:41:49Z,- ExperimentsInHonesty commented on issue: [3796](https://github.com/hackforla/website/issues/3796#issuecomment-1375129770) at 2023-01-08 09:41 PM PST -ExperimentsInHonesty,2023-01-10T21:45:33Z,- ExperimentsInHonesty commented on issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1377929246) at 2023-01-10 01:45 PM PST -ExperimentsInHonesty,2023-01-11T17:40:35Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1379252206) at 2023-01-11 09:40 AM PST -ExperimentsInHonesty,2023-01-11T17:44:33Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1379258194) at 2023-01-11 09:44 AM PST -ExperimentsInHonesty,2023-01-15T16:55:45Z,- ExperimentsInHonesty commented on issue: [3803](https://github.com/hackforla/website/issues/3803#issuecomment-1383199526) at 2023-01-15 08:55 AM PST -ExperimentsInHonesty,2023-01-15T16:59:12Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1383200218) at 2023-01-15 08:59 AM PST -ExperimentsInHonesty,2023-01-15T17:07:19Z,- ExperimentsInHonesty commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1383202116) at 2023-01-15 09:07 AM PST -ExperimentsInHonesty,2023-01-15T17:07:23Z,- ExperimentsInHonesty reopened issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1383202116) at 2023-01-15 09:07 AM PST -ExperimentsInHonesty,2023-01-15T17:09:34Z,- ExperimentsInHonesty commented on issue: [2861](https://github.com/hackforla/website/issues/2861#issuecomment-1383202902) at 2023-01-15 09:09 AM PST -ExperimentsInHonesty,2023-01-15T17:22:10Z,- ExperimentsInHonesty commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1383205729) at 2023-01-15 09:22 AM PST -ExperimentsInHonesty,2023-01-15T17:33:24Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1383207871) at 2023-01-15 09:33 AM PST -ExperimentsInHonesty,2023-01-15T17:33:39Z,- ExperimentsInHonesty reopened issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1383207871) at 2023-01-15 09:33 AM PST -ExperimentsInHonesty,2023-01-15T17:35:13Z,- ExperimentsInHonesty commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1383208179) at 2023-01-15 09:35 AM PST -ExperimentsInHonesty,2023-01-15T17:41:25Z,- ExperimentsInHonesty commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1383209455) at 2023-01-15 09:41 AM PST -ExperimentsInHonesty,2023-01-15T17:43:49Z,- ExperimentsInHonesty commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1383210061) at 2023-01-15 09:43 AM PST -ExperimentsInHonesty,2023-01-15T17:47:48Z,- ExperimentsInHonesty commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1383210995) at 2023-01-15 09:47 AM PST -ExperimentsInHonesty,2023-01-15T17:47:48Z,- ExperimentsInHonesty reopened issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1383210995) at 2023-01-15 09:47 AM PST -ExperimentsInHonesty,2023-01-15T17:54:43Z,- ExperimentsInHonesty commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1383212318) at 2023-01-15 09:54 AM PST -ExperimentsInHonesty,2023-01-15T18:28:49Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1383219592) at 2023-01-15 10:28 AM PST -ExperimentsInHonesty,2023-01-15T18:38:07Z,- ExperimentsInHonesty commented on issue: [3748](https://github.com/hackforla/website/issues/3748#issuecomment-1383221254) at 2023-01-15 10:38 AM PST -ExperimentsInHonesty,2023-01-15T18:40:13Z,- ExperimentsInHonesty commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1383221677) at 2023-01-15 10:40 AM PST -ExperimentsInHonesty,2023-01-15T18:45:38Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1383222682) at 2023-01-15 10:45 AM PST -ExperimentsInHonesty,2023-01-22T17:23:13Z,- ExperimentsInHonesty commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1399552035) at 2023-01-22 09:23 AM PST -ExperimentsInHonesty,2023-01-22T17:32:03Z,- ExperimentsInHonesty assigned to issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1379258194) at 2023-01-22 09:32 AM PST -ExperimentsInHonesty,2023-01-22T19:16:27Z,- ExperimentsInHonesty commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1399579073) at 2023-01-22 11:16 AM PST -ExperimentsInHonesty,2023-01-22T19:20:11Z,- ExperimentsInHonesty opened issue: [3851](https://github.com/hackforla/website/issues/3851) at 2023-01-22 11:20 AM PST -ExperimentsInHonesty,2023-01-22T19:55:27Z,- ExperimentsInHonesty closed issue as completed: [3089](https://github.com/hackforla/website/issues/3089#event-8329458421) at 2023-01-22 11:55 AM PST -ExperimentsInHonesty,2023-01-22T21:07:37Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399608678) at 2023-01-22 01:07 PM PST -ExperimentsInHonesty,2023-01-22T21:28:58Z,- ExperimentsInHonesty opened issue: [3858](https://github.com/hackforla/website/issues/3858) at 2023-01-22 01:28 PM PST -ExperimentsInHonesty,2023-01-22T21:31:46Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399614108) at 2023-01-22 01:31 PM PST -ExperimentsInHonesty,2023-01-22T21:36:03Z,- ExperimentsInHonesty commented on issue: [3858](https://github.com/hackforla/website/issues/3858#issuecomment-1399615005) at 2023-01-22 01:36 PM PST -ExperimentsInHonesty,2023-01-22T22:16:33Z,- ExperimentsInHonesty opened issue: [3859](https://github.com/hackforla/website/issues/3859) at 2023-01-22 02:16 PM PST -ExperimentsInHonesty,2023-01-22T22:31:23Z,- ExperimentsInHonesty commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1399626813) at 2023-01-22 02:31 PM PST -ExperimentsInHonesty,2023-01-22T22:59:58Z,- ExperimentsInHonesty commented on issue: [3858](https://github.com/hackforla/website/issues/3858#issuecomment-1399632664) at 2023-01-22 02:59 PM PST -ExperimentsInHonesty,2023-01-24T01:36:25Z,- ExperimentsInHonesty commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1401290140) at 2023-01-23 05:36 PM PST -ExperimentsInHonesty,2023-01-24T01:42:22Z,- ExperimentsInHonesty commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1401293557) at 2023-01-23 05:42 PM PST -ExperimentsInHonesty,2023-01-24T02:10:57Z,- ExperimentsInHonesty commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1401310301) at 2023-01-23 06:10 PM PST -ExperimentsInHonesty,2023-01-24T02:22:42Z,- ExperimentsInHonesty commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1401316234) at 2023-01-23 06:22 PM PST -ExperimentsInHonesty,2023-01-24T02:34:28Z,- ExperimentsInHonesty commented on issue: [3855](https://github.com/hackforla/website/issues/3855#issuecomment-1401321885) at 2023-01-23 06:34 PM PST -ExperimentsInHonesty,2023-01-24T02:34:29Z,- ExperimentsInHonesty closed issue as completed: [3855](https://github.com/hackforla/website/issues/3855#event-8340109975) at 2023-01-23 06:34 PM PST -ExperimentsInHonesty,2023-01-29T18:50:06Z,- ExperimentsInHonesty opened issue: [3890](https://github.com/hackforla/website/issues/3890) at 2023-01-29 10:50 AM PST -ExperimentsInHonesty,2023-01-29T18:53:38Z,- ExperimentsInHonesty assigned to issue: [3890](https://github.com/hackforla/website/issues/3890) at 2023-01-29 10:53 AM PST -ExperimentsInHonesty,2023-01-29T19:17:37Z,- ExperimentsInHonesty commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1407747225) at 2023-01-29 11:17 AM PST -ExperimentsInHonesty,2023-01-29T19:26:33Z,- ExperimentsInHonesty unassigned from issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1407747225) at 2023-01-29 11:26 AM PST -ExperimentsInHonesty,2023-01-29T23:09:08Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1407796831) at 2023-01-29 03:09 PM PST -ExperimentsInHonesty,2023-01-29T23:41:19Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407805181) at 2023-01-29 03:41 PM PST -ExperimentsInHonesty,2023-01-29T23:44:17Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407805861) at 2023-01-29 03:44 PM PST -ExperimentsInHonesty,2023-01-29T23:53:19Z,- ExperimentsInHonesty commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1407807995) at 2023-01-29 03:53 PM PST -ExperimentsInHonesty,2023-01-30T00:04:12Z,- ExperimentsInHonesty unassigned from issue: [312](https://github.com/hackforla/website/issues/312#event-4881095493) at 2023-01-29 04:04 PM PST -ExperimentsInHonesty,2023-01-30T00:41:09Z,- ExperimentsInHonesty opened issue: [3891](https://github.com/hackforla/website/issues/3891) at 2023-01-29 04:41 PM PST -ExperimentsInHonesty,2023-01-30T00:42:34Z,- ExperimentsInHonesty assigned to issue: [3891](https://github.com/hackforla/website/issues/3891) at 2023-01-29 04:42 PM PST -ExperimentsInHonesty,2023-01-30T00:47:13Z,- ExperimentsInHonesty opened issue: [3892](https://github.com/hackforla/website/issues/3892) at 2023-01-29 04:47 PM PST -ExperimentsInHonesty,2023-01-30T00:55:24Z,- ExperimentsInHonesty opened issue: [3893](https://github.com/hackforla/website/issues/3893) at 2023-01-29 04:55 PM PST -ExperimentsInHonesty,2023-01-30T01:13:45Z,- ExperimentsInHonesty opened issue: [3895](https://github.com/hackforla/website/issues/3895) at 2023-01-29 05:13 PM PST -ExperimentsInHonesty,2023-01-30T01:19:58Z,- ExperimentsInHonesty commented on issue: [3891](https://github.com/hackforla/website/issues/3891#issuecomment-1407848476) at 2023-01-29 05:19 PM PST -ExperimentsInHonesty,2023-01-30T01:19:58Z,- ExperimentsInHonesty closed issue as completed: [3891](https://github.com/hackforla/website/issues/3891#event-8383227698) at 2023-01-29 05:19 PM PST -ExperimentsInHonesty,2023-01-30T04:16:48Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1407971553) at 2023-01-29 08:16 PM PST -ExperimentsInHonesty,2023-01-30T04:21:59Z,- ExperimentsInHonesty commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1407975561) at 2023-01-29 08:21 PM PST -ExperimentsInHonesty,2023-01-30T04:29:41Z,- ExperimentsInHonesty commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1407981561) at 2023-01-29 08:29 PM PST -ExperimentsInHonesty,2023-01-30T04:45:08Z,- ExperimentsInHonesty commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1407993011) at 2023-01-29 08:45 PM PST -ExperimentsInHonesty,2023-01-31T01:29:22Z,- ExperimentsInHonesty commented on issue: [3634](https://github.com/hackforla/website/issues/3634#issuecomment-1409612161) at 2023-01-30 05:29 PM PST -ExperimentsInHonesty,2023-01-31T01:35:12Z,- ExperimentsInHonesty closed issue as completed: [3634](https://github.com/hackforla/website/issues/3634#event-8394208016) at 2023-01-30 05:35 PM PST -ExperimentsInHonesty,2023-01-31T01:35:19Z,- ExperimentsInHonesty assigned to issue: [3634](https://github.com/hackforla/website/issues/3634#event-8394208016) at 2023-01-30 05:35 PM PST -ExperimentsInHonesty,2023-01-31T03:00:40Z,- ExperimentsInHonesty commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1409670518) at 2023-01-30 07:00 PM PST -ExperimentsInHonesty,2023-01-31T15:34:11Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1410597638) at 2023-01-31 07:34 AM PST -ExperimentsInHonesty,2023-02-03T18:45:57Z,- ExperimentsInHonesty commented on issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416262079) at 2023-02-03 10:45 AM PST -ExperimentsInHonesty,2023-02-03T18:49:58Z,- ExperimentsInHonesty commented on issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416265727) at 2023-02-03 10:49 AM PST -ExperimentsInHonesty,2023-02-04T00:09:18Z,- ExperimentsInHonesty commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1416547323) at 2023-02-03 04:09 PM PST -ExperimentsInHonesty,2023-02-04T16:47:53Z,- ExperimentsInHonesty commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416798094) at 2023-02-04 08:47 AM PST -ExperimentsInHonesty,2023-02-05T19:47:20Z,- ExperimentsInHonesty commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1418248653) at 2023-02-05 11:47 AM PST -ExperimentsInHonesty,2023-02-05T19:48:17Z,- ExperimentsInHonesty commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1418248835) at 2023-02-05 11:48 AM PST -ExperimentsInHonesty,2023-02-07T01:30:18Z,- ExperimentsInHonesty commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1420038144) at 2023-02-06 05:30 PM PST -ExperimentsInHonesty,2023-02-07T01:34:03Z,- ExperimentsInHonesty commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1420040545) at 2023-02-06 05:34 PM PST -ExperimentsInHonesty,2023-02-07T01:42:01Z,- ExperimentsInHonesty commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1420045154) at 2023-02-06 05:42 PM PST -ExperimentsInHonesty,2023-02-07T01:46:46Z,- ExperimentsInHonesty commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1420047683) at 2023-02-06 05:46 PM PST -ExperimentsInHonesty,2023-02-07T01:51:30Z,- ExperimentsInHonesty commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420050148) at 2023-02-06 05:51 PM PST -ExperimentsInHonesty,2023-02-07T02:02:36Z,- ExperimentsInHonesty opened pull request: [3945](https://github.com/hackforla/website/pull/3945) at 2023-02-06 06:02 PM PST -ExperimentsInHonesty,2023-02-07T02:14:36Z,- ExperimentsInHonesty pull request merged: [3945](https://github.com/hackforla/website/pull/3945#event-8453436869) at 2023-02-06 06:14 PM PST -ExperimentsInHonesty,2023-02-08T22:07:18Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1423301660) at 2023-02-08 02:07 PM PST -ExperimentsInHonesty,2023-02-12T17:33:00Z,- ExperimentsInHonesty commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1427088430) at 2023-02-12 09:33 AM PST -ExperimentsInHonesty,2023-02-12T18:26:45Z,- ExperimentsInHonesty commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1427099997) at 2023-02-12 10:26 AM PST -ExperimentsInHonesty,2023-02-12T23:32:09Z,- ExperimentsInHonesty commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1427163718) at 2023-02-12 03:32 PM PST -ExperimentsInHonesty,2023-02-12T23:32:09Z,- ExperimentsInHonesty reopened issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1427163718) at 2023-02-12 03:32 PM PST -ExperimentsInHonesty,2023-02-12T23:35:57Z,- ExperimentsInHonesty commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1427164538) at 2023-02-12 03:35 PM PST -ExperimentsInHonesty,2023-02-12T23:35:58Z,- ExperimentsInHonesty reopened issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1427164538) at 2023-02-12 03:35 PM PST -ExperimentsInHonesty,2023-02-12T23:42:24Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1427165958) at 2023-02-12 03:42 PM PST -ExperimentsInHonesty,2023-02-12T23:42:25Z,- ExperimentsInHonesty reopened issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1427165958) at 2023-02-12 03:42 PM PST -ExperimentsInHonesty,2023-02-12T23:45:33Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1427166630) at 2023-02-12 03:45 PM PST -ExperimentsInHonesty,2023-02-12T23:45:33Z,- ExperimentsInHonesty reopened issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1427166630) at 2023-02-12 03:45 PM PST -ExperimentsInHonesty,2023-02-12T23:47:30Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1427167014) at 2023-02-12 03:47 PM PST -ExperimentsInHonesty,2023-02-12T23:47:30Z,- ExperimentsInHonesty reopened issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1427167014) at 2023-02-12 03:47 PM PST -ExperimentsInHonesty,2023-02-12T23:49:23Z,- ExperimentsInHonesty commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1427167330) at 2023-02-12 03:49 PM PST -ExperimentsInHonesty,2023-02-12T23:49:23Z,- ExperimentsInHonesty reopened issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1427167330) at 2023-02-12 03:49 PM PST -ExperimentsInHonesty,2023-02-12T23:59:54Z,- ExperimentsInHonesty commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1427169494) at 2023-02-12 03:59 PM PST -ExperimentsInHonesty,2023-02-13T00:03:04Z,- ExperimentsInHonesty commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1427170779) at 2023-02-12 04:03 PM PST -ExperimentsInHonesty,2023-02-13T00:03:04Z,- ExperimentsInHonesty reopened issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1427170779) at 2023-02-12 04:03 PM PST -ExperimentsInHonesty,2023-02-13T00:08:04Z,- ExperimentsInHonesty commented on issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1427172910) at 2023-02-12 04:08 PM PST -ExperimentsInHonesty,2023-02-13T00:10:23Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1427173736) at 2023-02-12 04:10 PM PST -ExperimentsInHonesty,2023-02-13T00:10:23Z,- ExperimentsInHonesty reopened issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1427173736) at 2023-02-12 04:10 PM PST -ExperimentsInHonesty,2023-02-13T00:12:25Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1427174514) at 2023-02-12 04:12 PM PST -ExperimentsInHonesty,2023-02-13T00:12:26Z,- ExperimentsInHonesty reopened issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1427174514) at 2023-02-12 04:12 PM PST -ExperimentsInHonesty,2023-02-13T00:17:25Z,- ExperimentsInHonesty commented on issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1427176253) at 2023-02-12 04:17 PM PST -ExperimentsInHonesty,2023-02-13T00:17:25Z,- ExperimentsInHonesty reopened issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1427176253) at 2023-02-12 04:17 PM PST -ExperimentsInHonesty,2023-02-13T00:22:34Z,- ExperimentsInHonesty commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1427177919) at 2023-02-12 04:22 PM PST -ExperimentsInHonesty,2023-02-13T00:22:34Z,- ExperimentsInHonesty reopened issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1427177919) at 2023-02-12 04:22 PM PST -ExperimentsInHonesty,2023-02-13T00:39:49Z,- ExperimentsInHonesty commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1427183118) at 2023-02-12 04:39 PM PST -ExperimentsInHonesty,2023-02-13T00:54:46Z,- ExperimentsInHonesty commented on issue: [3957](https://github.com/hackforla/website/issues/3957#issuecomment-1427187208) at 2023-02-12 04:54 PM PST -ExperimentsInHonesty,2023-02-13T01:14:56Z,- ExperimentsInHonesty commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-1427194537) at 2023-02-12 05:14 PM PST -ExperimentsInHonesty,2023-02-13T01:20:52Z,- ExperimentsInHonesty commented on issue: [3862](https://github.com/hackforla/website/issues/3862#issuecomment-1427198720) at 2023-02-12 05:20 PM PST -ExperimentsInHonesty,2023-02-13T03:00:22Z,- ExperimentsInHonesty commented on issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1427262247) at 2023-02-12 07:00 PM PST -ExperimentsInHonesty,2023-02-13T03:00:34Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-1427262391) at 2023-02-12 07:00 PM PST -ExperimentsInHonesty,2023-02-13T03:06:27Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1427265093) at 2023-02-12 07:06 PM PST -ExperimentsInHonesty,2023-02-13T03:15:53Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1427272227) at 2023-02-12 07:15 PM PST -ExperimentsInHonesty,2023-02-13T04:33:50Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1427330169) at 2023-02-12 08:33 PM PST -ExperimentsInHonesty,2023-02-13T04:34:37Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1427330527) at 2023-02-12 08:34 PM PST -ExperimentsInHonesty,2023-02-13T04:35:15Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1427330839) at 2023-02-12 08:35 PM PST -ExperimentsInHonesty,2023-02-13T04:35:31Z,- ExperimentsInHonesty commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1427330989) at 2023-02-12 08:35 PM PST -ExperimentsInHonesty,2023-02-13T04:38:03Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1427332280) at 2023-02-12 08:38 PM PST -ExperimentsInHonesty,2023-02-14T01:32:53Z,- ExperimentsInHonesty commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1428973185) at 2023-02-13 05:32 PM PST -ExperimentsInHonesty,2023-02-14T01:43:35Z,- ExperimentsInHonesty reopened issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-1427194537) at 2023-02-13 05:43 PM PST -ExperimentsInHonesty,2023-02-19T18:34:12Z,- ExperimentsInHonesty commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1436060855) at 2023-02-19 10:34 AM PST -ExperimentsInHonesty,2023-02-20T01:03:16Z,- ExperimentsInHonesty commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1436159914) at 2023-02-19 05:03 PM PST -ExperimentsInHonesty,2023-02-20T01:18:07Z,- ExperimentsInHonesty commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1436167092) at 2023-02-19 05:18 PM PST -ExperimentsInHonesty,2023-02-21T02:16:06Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1437767954) at 2023-02-20 06:16 PM PST -ExperimentsInHonesty,2023-02-21T02:20:26Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1437770470) at 2023-02-20 06:20 PM PST -ExperimentsInHonesty,2023-02-21T02:23:15Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1437772008) at 2023-02-20 06:23 PM PST -ExperimentsInHonesty,2023-02-21T02:24:26Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437772588) at 2023-02-20 06:24 PM PST -ExperimentsInHonesty,2023-02-21T02:25:50Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1437773318) at 2023-02-20 06:25 PM PST -ExperimentsInHonesty,2023-02-21T02:36:34Z,- ExperimentsInHonesty commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1437778853) at 2023-02-20 06:36 PM PST -ExperimentsInHonesty,2023-02-25T22:13:24Z,- ExperimentsInHonesty commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1445216650) at 2023-02-25 02:13 PM PST -ExperimentsInHonesty,2023-02-25T23:26:10Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1445226283) at 2023-02-25 03:26 PM PST -ExperimentsInHonesty,2023-02-26T02:47:36Z,- ExperimentsInHonesty commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1445254455) at 2023-02-25 06:47 PM PST -ExperimentsInHonesty,2023-02-26T03:06:51Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1445256946) at 2023-02-25 07:06 PM PST -ExperimentsInHonesty,2023-02-26T03:06:54Z,- ExperimentsInHonesty closed issue by PR 3947: [3731](https://github.com/hackforla/website/issues/3731#event-8608842827) at 2023-02-25 07:06 PM PST -ExperimentsInHonesty,2023-02-26T03:14:15Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1445257700) at 2023-02-25 07:14 PM PST -ExperimentsInHonesty,2023-02-26T03:15:03Z,- ExperimentsInHonesty reopened issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1445257700) at 2023-02-25 07:15 PM PST -ExperimentsInHonesty,2023-02-26T03:18:26Z,- ExperimentsInHonesty commented on issue: [3996](https://github.com/hackforla/website/issues/3996#issuecomment-1445258136) at 2023-02-25 07:18 PM PST -ExperimentsInHonesty,2023-02-26T03:27:39Z,- ExperimentsInHonesty commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1445259148) at 2023-02-25 07:27 PM PST -ExperimentsInHonesty,2023-02-26T03:27:39Z,- ExperimentsInHonesty reopened issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1445259148) at 2023-02-25 07:27 PM PST -ExperimentsInHonesty,2023-02-26T03:35:16Z,- ExperimentsInHonesty commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1445259944) at 2023-02-25 07:35 PM PST -ExperimentsInHonesty,2023-02-26T03:45:00Z,- ExperimentsInHonesty commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1445261001) at 2023-02-25 07:45 PM PST -ExperimentsInHonesty,2023-02-26T03:45:11Z,- ExperimentsInHonesty reopened issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1445261001) at 2023-02-25 07:45 PM PST -ExperimentsInHonesty,2023-02-26T03:58:15Z,- ExperimentsInHonesty commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1445262375) at 2023-02-25 07:58 PM PST -ExperimentsInHonesty,2023-02-26T03:58:15Z,- ExperimentsInHonesty reopened issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1445262375) at 2023-02-25 07:58 PM PST -ExperimentsInHonesty,2023-02-26T04:03:08Z,- ExperimentsInHonesty reopened issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1428916188) at 2023-02-25 08:03 PM PST -ExperimentsInHonesty,2023-02-26T04:03:45Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1445263167) at 2023-02-25 08:03 PM PST -ExperimentsInHonesty,2023-02-26T04:06:35Z,- ExperimentsInHonesty reopened issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1445259944) at 2023-02-25 08:06 PM PST -ExperimentsInHonesty,2023-02-26T04:09:18Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1445263955) at 2023-02-25 08:09 PM PST -ExperimentsInHonesty,2023-02-26T04:13:53Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1445264497) at 2023-02-25 08:13 PM PST -ExperimentsInHonesty,2023-02-26T04:14:40Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1445264583) at 2023-02-25 08:14 PM PST -ExperimentsInHonesty,2023-02-26T04:17:42Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1445264963) at 2023-02-25 08:17 PM PST -ExperimentsInHonesty,2023-02-26T04:19:16Z,- ExperimentsInHonesty closed issue as completed: [3825](https://github.com/hackforla/website/issues/3825#event-8608899072) at 2023-02-25 08:19 PM PST -ExperimentsInHonesty,2023-02-26T04:21:06Z,- ExperimentsInHonesty commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445265371) at 2023-02-25 08:21 PM PST -ExperimentsInHonesty,2023-02-26T04:42:59Z,- ExperimentsInHonesty commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1445267582) at 2023-02-25 08:42 PM PST -ExperimentsInHonesty,2023-02-26T04:59:03Z,- ExperimentsInHonesty commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1445269310) at 2023-02-25 08:59 PM PST -ExperimentsInHonesty,2023-02-26T05:13:30Z,- ExperimentsInHonesty commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1445270972) at 2023-02-25 09:13 PM PST -ExperimentsInHonesty,2023-02-26T05:21:50Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1445271867) at 2023-02-25 09:21 PM PST -ExperimentsInHonesty,2023-02-26T05:33:55Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1445273094) at 2023-02-25 09:33 PM PST -ExperimentsInHonesty,2023-02-26T05:37:35Z,- ExperimentsInHonesty commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1445273430) at 2023-02-25 09:37 PM PST -ExperimentsInHonesty,2023-02-26T05:40:59Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1445273765) at 2023-02-25 09:40 PM PST -ExperimentsInHonesty,2023-02-26T05:46:18Z,- ExperimentsInHonesty commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1445274278) at 2023-02-25 09:46 PM PST -ExperimentsInHonesty,2023-02-26T05:50:00Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1445274669) at 2023-02-25 09:50 PM PST -ExperimentsInHonesty,2023-02-26T05:50:00Z,- ExperimentsInHonesty closed issue as completed: [3542](https://github.com/hackforla/website/issues/3542#event-8608966248) at 2023-02-25 09:50 PM PST -ExperimentsInHonesty,2023-02-26T05:52:10Z,- ExperimentsInHonesty commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1445274901) at 2023-02-25 09:52 PM PST -ExperimentsInHonesty,2023-02-26T05:52:10Z,- ExperimentsInHonesty closed issue as completed: [3544](https://github.com/hackforla/website/issues/3544#event-8608967771) at 2023-02-25 09:52 PM PST -ExperimentsInHonesty,2023-02-26T05:56:55Z,- ExperimentsInHonesty commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1445275448) at 2023-02-25 09:56 PM PST -ExperimentsInHonesty,2023-02-26T05:56:55Z,- ExperimentsInHonesty closed issue as completed: [3690](https://github.com/hackforla/website/issues/3690#event-8608970983) at 2023-02-25 09:56 PM PST -ExperimentsInHonesty,2023-02-26T06:02:55Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1445276250) at 2023-02-25 10:02 PM PST -ExperimentsInHonesty,2023-02-26T06:04:10Z,- ExperimentsInHonesty closed issue as completed: [3688](https://github.com/hackforla/website/issues/3688#event-8608977102) at 2023-02-25 10:04 PM PST -ExperimentsInHonesty,2023-02-26T06:14:58Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1445277800) at 2023-02-25 10:14 PM PST -ExperimentsInHonesty,2023-02-26T06:18:40Z,- ExperimentsInHonesty commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1445278244) at 2023-02-25 10:18 PM PST -ExperimentsInHonesty,2023-02-26T06:23:10Z,- ExperimentsInHonesty commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1445278752) at 2023-02-25 10:23 PM PST -ExperimentsInHonesty,2023-02-26T06:27:26Z,- ExperimentsInHonesty commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1445279208) at 2023-02-25 10:27 PM PST -ExperimentsInHonesty,2023-02-26T06:32:35Z,- ExperimentsInHonesty commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1445279784) at 2023-02-25 10:32 PM PST -ExperimentsInHonesty,2023-02-26T06:32:35Z,- ExperimentsInHonesty closed issue as completed: [3784](https://github.com/hackforla/website/issues/3784#event-8609001402) at 2023-02-25 10:32 PM PST -ExperimentsInHonesty,2023-02-26T06:36:59Z,- ExperimentsInHonesty commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1445280260) at 2023-02-25 10:36 PM PST -ExperimentsInHonesty,2023-02-26T06:41:03Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1445280741) at 2023-02-25 10:41 PM PST -ExperimentsInHonesty,2023-02-26T06:48:04Z,- ExperimentsInHonesty commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1445281545) at 2023-02-25 10:48 PM PST -ExperimentsInHonesty,2023-02-26T06:50:24Z,- ExperimentsInHonesty closed issue by PR 3907: [3818](https://github.com/hackforla/website/issues/3818#event-8609017504) at 2023-02-25 10:50 PM PST -ExperimentsInHonesty,2023-02-26T06:54:33Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1445282375) at 2023-02-25 10:54 PM PST -ExperimentsInHonesty,2023-02-26T06:59:09Z,- ExperimentsInHonesty commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1445283071) at 2023-02-25 10:59 PM PST -ExperimentsInHonesty,2023-02-26T06:59:10Z,- ExperimentsInHonesty closed issue as completed: [3553](https://github.com/hackforla/website/issues/3553#event-8609025922) at 2023-02-25 10:59 PM PST -ExperimentsInHonesty,2023-02-26T07:00:50Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1445283362) at 2023-02-25 11:00 PM PST -ExperimentsInHonesty,2023-02-26T07:05:02Z,- ExperimentsInHonesty commented on issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1445283959) at 2023-02-25 11:05 PM PST -ExperimentsInHonesty,2023-02-26T07:09:43Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1445284641) at 2023-02-25 11:09 PM PST -ExperimentsInHonesty,2023-02-26T07:13:06Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1445285121) at 2023-02-25 11:13 PM PST -ExperimentsInHonesty,2023-02-26T07:14:48Z,- ExperimentsInHonesty commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1445285327) at 2023-02-25 11:14 PM PST -ExperimentsInHonesty,2023-02-26T07:15:41Z,- ExperimentsInHonesty closed issue as completed: [3409](https://github.com/hackforla/website/issues/3409#event-8609041919) at 2023-02-25 11:15 PM PST -ExperimentsInHonesty,2023-02-26T07:21:02Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1445286129) at 2023-02-25 11:21 PM PST -ExperimentsInHonesty,2023-02-26T07:21:08Z,- ExperimentsInHonesty closed issue as completed: [3683](https://github.com/hackforla/website/issues/3683#event-8609047083) at 2023-02-25 11:21 PM PST -ExperimentsInHonesty,2023-02-26T07:30:50Z,- ExperimentsInHonesty commented on issue: [3828](https://github.com/hackforla/website/issues/3828#issuecomment-1445287341) at 2023-02-25 11:30 PM PST -ExperimentsInHonesty,2023-02-26T07:30:53Z,- ExperimentsInHonesty closed issue as completed: [3828](https://github.com/hackforla/website/issues/3828#event-8609055952) at 2023-02-25 11:30 PM PST -ExperimentsInHonesty,2023-02-26T07:35:10Z,- ExperimentsInHonesty commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1445287983) at 2023-02-25 11:35 PM PST -ExperimentsInHonesty,2023-02-26T07:35:59Z,- ExperimentsInHonesty commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1445288091) at 2023-02-25 11:35 PM PST -ExperimentsInHonesty,2023-02-26T07:39:58Z,- ExperimentsInHonesty commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1445288677) at 2023-02-25 11:39 PM PST -ExperimentsInHonesty,2023-02-26T07:41:06Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1445288874) at 2023-02-25 11:41 PM PST -ExperimentsInHonesty,2023-02-26T07:43:43Z,- ExperimentsInHonesty commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1445289244) at 2023-02-25 11:43 PM PST -ExperimentsInHonesty,2023-02-26T07:48:37Z,- ExperimentsInHonesty commented on issue: [3915](https://github.com/hackforla/website/issues/3915#issuecomment-1445289997) at 2023-02-25 11:48 PM PST -ExperimentsInHonesty,2023-02-26T07:49:35Z,- ExperimentsInHonesty commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1445290145) at 2023-02-25 11:49 PM PST -ExperimentsInHonesty,2023-02-26T07:50:28Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1445290287) at 2023-02-25 11:50 PM PST -ExperimentsInHonesty,2023-02-26T07:51:48Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1445290478) at 2023-02-25 11:51 PM PST -ExperimentsInHonesty,2023-02-26T07:54:46Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1445290898) at 2023-02-25 11:54 PM PST -ExperimentsInHonesty,2023-02-26T07:56:43Z,- ExperimentsInHonesty commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1445291147) at 2023-02-25 11:56 PM PST -ExperimentsInHonesty,2023-02-26T07:59:31Z,- ExperimentsInHonesty commented on issue: [3970](https://github.com/hackforla/website/issues/3970#issuecomment-1445291671) at 2023-02-25 11:59 PM PST -ExperimentsInHonesty,2023-02-26T08:00:15Z,- ExperimentsInHonesty commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1445291911) at 2023-02-26 12:00 AM PST -ExperimentsInHonesty,2023-02-26T08:10:15Z,- ExperimentsInHonesty commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1445294271) at 2023-02-26 12:10 AM PST -ExperimentsInHonesty,2023-02-26T08:17:33Z,- ExperimentsInHonesty commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1445295432) at 2023-02-26 12:17 AM PST -ExperimentsInHonesty,2023-02-26T08:28:31Z,- ExperimentsInHonesty commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1445297065) at 2023-02-26 12:28 AM PST -ExperimentsInHonesty,2023-02-26T08:39:11Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1445299193) at 2023-02-26 12:39 AM PST -ExperimentsInHonesty,2023-02-26T08:55:08Z,- ExperimentsInHonesty commented on issue: [3976](https://github.com/hackforla/website/issues/3976#issuecomment-1445301818) at 2023-02-26 12:55 AM PST -ExperimentsInHonesty,2023-02-26T09:06:58Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1445304170) at 2023-02-26 01:06 AM PST -ExperimentsInHonesty,2023-02-26T18:54:43Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1445435515) at 2023-02-26 10:54 AM PST -ExperimentsInHonesty,2023-02-26T22:57:23Z,- ExperimentsInHonesty commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1445490986) at 2023-02-26 02:57 PM PST -ExperimentsInHonesty,2023-02-28T01:51:22Z,- ExperimentsInHonesty commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1447443213) at 2023-02-27 05:51 PM PST -ExperimentsInHonesty,2023-02-28T02:04:32Z,- ExperimentsInHonesty commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1447455328) at 2023-02-27 06:04 PM PST -ExperimentsInHonesty,2023-02-28T02:34:33Z,- ExperimentsInHonesty reopened issue: [3611](https://github.com/hackforla/website/issues/3611#event-7698517039) at 2023-02-27 06:34 PM PST -ExperimentsInHonesty,2023-02-28T02:35:17Z,- ExperimentsInHonesty closed issue as completed: [3611](https://github.com/hackforla/website/issues/3611#event-8622182252) at 2023-02-27 06:35 PM PST -ExperimentsInHonesty,2023-03-05T17:34:45Z,- ExperimentsInHonesty commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1455153986) at 2023-03-05 09:34 AM PST -ExperimentsInHonesty,2023-03-05T18:25:52Z,- ExperimentsInHonesty commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1455166215) at 2023-03-05 10:25 AM PST -ExperimentsInHonesty,2023-03-05T18:41:40Z,- ExperimentsInHonesty reopened issue: [2112](https://github.com/hackforla/website/issues/2112#event-8003276962) at 2023-03-05 10:41 AM PST -ExperimentsInHonesty,2023-03-05T18:42:04Z,- ExperimentsInHonesty closed issue by PR 3329: [2112](https://github.com/hackforla/website/issues/2112#event-8668466266) at 2023-03-05 10:42 AM PST -ExperimentsInHonesty,2023-03-05T19:07:06Z,- ExperimentsInHonesty commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1455175736) at 2023-03-05 11:07 AM PST -ExperimentsInHonesty,2023-03-05T19:21:34Z,- ExperimentsInHonesty commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-1455179697) at 2023-03-05 11:21 AM PST -ExperimentsInHonesty,2023-03-05T20:09:34Z,- ExperimentsInHonesty commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1455191634) at 2023-03-05 12:09 PM PST -ExperimentsInHonesty,2023-03-05T20:29:30Z,- ExperimentsInHonesty commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1455196756) at 2023-03-05 12:29 PM PST -ExperimentsInHonesty,2023-03-05T20:56:28Z,- ExperimentsInHonesty commented on issue: [4081](https://github.com/hackforla/website/issues/4081#issuecomment-1455203225) at 2023-03-05 12:56 PM PST -ExperimentsInHonesty,2023-03-05T21:09:51Z,- ExperimentsInHonesty commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1455207236) at 2023-03-05 01:09 PM PST -ExperimentsInHonesty,2023-03-05T21:18:24Z,- ExperimentsInHonesty commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1455209200) at 2023-03-05 01:18 PM PST -ExperimentsInHonesty,2023-03-05T21:27:37Z,- ExperimentsInHonesty commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1455211583) at 2023-03-05 01:27 PM PST -ExperimentsInHonesty,2023-03-05T21:29:09Z,- ExperimentsInHonesty commented on issue: [4112](https://github.com/hackforla/website/issues/4112#issuecomment-1455212005) at 2023-03-05 01:29 PM PST -ExperimentsInHonesty,2023-03-05T21:30:19Z,- ExperimentsInHonesty commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1455212308) at 2023-03-05 01:30 PM PST -ExperimentsInHonesty,2023-03-06T01:31:17Z,- ExperimentsInHonesty commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1455294793) at 2023-03-05 05:31 PM PST -ExperimentsInHonesty,2023-03-06T01:32:24Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-1455295619) at 2023-03-05 05:32 PM PST -ExperimentsInHonesty,2023-03-07T03:14:41Z,- ExperimentsInHonesty commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1457447102) at 2023-03-06 07:14 PM PST -ExperimentsInHonesty,2023-03-07T03:15:15Z,- ExperimentsInHonesty commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1457447525) at 2023-03-06 07:15 PM PST -ExperimentsInHonesty,2023-03-07T23:54:10Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1459048549) at 2023-03-07 03:54 PM PST -ExperimentsInHonesty,2023-03-07T23:54:15Z,- ExperimentsInHonesty closed issue by PR 3928: [3572](https://github.com/hackforla/website/issues/3572#event-8691600687) at 2023-03-07 03:54 PM PST -ExperimentsInHonesty,2023-03-09T23:25:29Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1462970335) at 2023-03-09 03:25 PM PST -ExperimentsInHonesty,2023-03-09T23:46:26Z,- ExperimentsInHonesty commented on issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1463002265) at 2023-03-09 03:46 PM PST -ExperimentsInHonesty,2023-03-09T23:50:11Z,- ExperimentsInHonesty commented on issue: [3974](https://github.com/hackforla/website/issues/3974#issuecomment-1463004543) at 2023-03-09 03:50 PM PST -ExperimentsInHonesty,2023-03-10T16:24:27Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1464052635) at 2023-03-10 08:24 AM PST -ExperimentsInHonesty,2023-03-10T18:36:12Z,- ExperimentsInHonesty commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1464227244) at 2023-03-10 10:36 AM PST -ExperimentsInHonesty,2023-03-10T18:44:14Z,- ExperimentsInHonesty commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1464236591) at 2023-03-10 10:44 AM PST -ExperimentsInHonesty,2023-03-10T19:29:10Z,- ExperimentsInHonesty commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1464305506) at 2023-03-10 11:29 AM PST -ExperimentsInHonesty,2023-03-12T19:56:31Z,- ExperimentsInHonesty assigned to issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465105865) at 2023-03-12 12:56 PM PDT -ExperimentsInHonesty,2023-03-12T19:56:47Z,- ExperimentsInHonesty unassigned from issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465285478) at 2023-03-12 12:56 PM PDT -ExperimentsInHonesty,2023-03-13T01:19:17Z,- ExperimentsInHonesty commented on issue: [4155](https://github.com/hackforla/website/issues/4155#issuecomment-1465366349) at 2023-03-12 06:19 PM PDT -ExperimentsInHonesty,2023-03-14T01:54:42Z,- ExperimentsInHonesty commented on issue: [4155](https://github.com/hackforla/website/issues/4155#issuecomment-1467224540) at 2023-03-13 06:54 PM PDT -ExperimentsInHonesty,2023-03-15T19:38:20Z,- ExperimentsInHonesty commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1470725416) at 2023-03-15 12:38 PM PDT -ExperimentsInHonesty,2023-03-15T19:59:30Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1470756030) at 2023-03-15 12:59 PM PDT -ExperimentsInHonesty,2023-03-15T20:13:08Z,- ExperimentsInHonesty commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1470776361) at 2023-03-15 01:13 PM PDT -ExperimentsInHonesty,2023-03-15T20:23:22Z,- ExperimentsInHonesty commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1470788835) at 2023-03-15 01:23 PM PDT -ExperimentsInHonesty,2023-03-15T20:27:55Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1470794519) at 2023-03-15 01:27 PM PDT -ExperimentsInHonesty,2023-03-15T21:01:07Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1470836116) at 2023-03-15 02:01 PM PDT -ExperimentsInHonesty,2023-03-16T00:44:54Z,- ExperimentsInHonesty commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1471092961) at 2023-03-15 05:44 PM PDT -ExperimentsInHonesty,2023-03-16T00:49:44Z,- ExperimentsInHonesty commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1471103761) at 2023-03-15 05:49 PM PDT -ExperimentsInHonesty,2023-03-16T00:53:56Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1471107307) at 2023-03-15 05:53 PM PDT -ExperimentsInHonesty,2023-03-16T00:59:48Z,- ExperimentsInHonesty commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1471112841) at 2023-03-15 05:59 PM PDT -ExperimentsInHonesty,2023-03-16T15:33:14Z,- ExperimentsInHonesty commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1472207957) at 2023-03-16 08:33 AM PDT -ExperimentsInHonesty,2023-03-16T15:47:24Z,- ExperimentsInHonesty commented on issue: [4054](https://github.com/hackforla/website/issues/4054#issuecomment-1472231817) at 2023-03-16 08:47 AM PDT -ExperimentsInHonesty,2023-03-16T15:50:45Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1472237696) at 2023-03-16 08:50 AM PDT -ExperimentsInHonesty,2023-03-16T16:01:30Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1472256165) at 2023-03-16 09:01 AM PDT -ExperimentsInHonesty,2023-03-16T16:07:28Z,- ExperimentsInHonesty commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1472265863) at 2023-03-16 09:07 AM PDT -ExperimentsInHonesty,2023-03-16T16:08:15Z,- ExperimentsInHonesty commented on issue: [4168](https://github.com/hackforla/website/issues/4168#issuecomment-1472267169) at 2023-03-16 09:08 AM PDT -ExperimentsInHonesty,2023-03-16T16:09:15Z,- ExperimentsInHonesty closed issue as completed: [4167](https://github.com/hackforla/website/issues/4167#event-8769293088) at 2023-03-16 09:09 AM PDT -ExperimentsInHonesty,2023-03-16T16:38:00Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-1472319888) at 2023-03-16 09:38 AM PDT -ExperimentsInHonesty,2023-03-16T17:41:01Z,- ExperimentsInHonesty commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1472430437) at 2023-03-16 10:41 AM PDT -ExperimentsInHonesty,2023-03-16T17:45:22Z,- ExperimentsInHonesty commented on issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1472436357) at 2023-03-16 10:45 AM PDT -ExperimentsInHonesty,2023-03-16T17:51:20Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1472444325) at 2023-03-16 10:51 AM PDT -ExperimentsInHonesty,2023-03-16T17:53:37Z,- ExperimentsInHonesty closed issue as not planned: [3433](https://github.com/hackforla/website/issues/3433#event-8770441516) at 2023-03-16 10:53 AM PDT -ExperimentsInHonesty,2023-03-16T17:54:00Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1472449795) at 2023-03-16 10:54 AM PDT -ExperimentsInHonesty,2023-03-16T18:39:07Z,- ExperimentsInHonesty commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1472550773) at 2023-03-16 11:39 AM PDT -ExperimentsInHonesty,2023-03-16T19:17:17Z,- ExperimentsInHonesty closed issue as completed: [2978](https://github.com/hackforla/website/issues/2978#event-8771230921) at 2023-03-16 12:17 PM PDT -ExperimentsInHonesty,2023-03-16T21:56:15Z,- ExperimentsInHonesty commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1472800616) at 2023-03-16 02:56 PM PDT -ExperimentsInHonesty,2023-03-16T21:56:15Z,- ExperimentsInHonesty reopened issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1472800616) at 2023-03-16 02:56 PM PDT -ExperimentsInHonesty,2023-03-16T22:59:27Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1472871208) at 2023-03-16 03:59 PM PDT -ExperimentsInHonesty,2023-03-16T23:03:00Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1472874369) at 2023-03-16 04:03 PM PDT -ExperimentsInHonesty,2023-03-18T15:04:16Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1474873508) at 2023-03-18 08:04 AM PDT -ExperimentsInHonesty,2023-03-18T15:06:46Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1474874103) at 2023-03-18 08:06 AM PDT -ExperimentsInHonesty,2023-03-18T15:24:06Z,- ExperimentsInHonesty commented on issue: [4145](https://github.com/hackforla/website/issues/4145#issuecomment-1474877812) at 2023-03-18 08:24 AM PDT -ExperimentsInHonesty,2023-03-18T15:44:35Z,- ExperimentsInHonesty commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1474882059) at 2023-03-18 08:44 AM PDT -ExperimentsInHonesty,2023-03-18T23:53:53Z,- ExperimentsInHonesty commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1475036305) at 2023-03-18 04:53 PM PDT -ExperimentsInHonesty,2023-03-18T23:58:15Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1475037586) at 2023-03-18 04:58 PM PDT -ExperimentsInHonesty,2023-03-19T00:08:44Z,- ExperimentsInHonesty commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1475040270) at 2023-03-18 05:08 PM PDT -ExperimentsInHonesty,2023-03-19T00:31:32Z,- ExperimentsInHonesty commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1475047783) at 2023-03-18 05:31 PM PDT -ExperimentsInHonesty,2023-03-19T00:38:13Z,- ExperimentsInHonesty commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1475049450) at 2023-03-18 05:38 PM PDT -ExperimentsInHonesty,2023-03-19T00:54:20Z,- ExperimentsInHonesty commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1475053272) at 2023-03-18 05:54 PM PDT -ExperimentsInHonesty,2023-03-19T15:08:45Z,- ExperimentsInHonesty commented on issue: [4047](https://github.com/hackforla/website/issues/4047#issuecomment-1475287643) at 2023-03-19 08:08 AM PDT -ExperimentsInHonesty,2023-03-19T15:20:56Z,- ExperimentsInHonesty commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1475292110) at 2023-03-19 08:20 AM PDT -ExperimentsInHonesty,2023-03-19T15:42:46Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1475297767) at 2023-03-19 08:42 AM PDT -ExperimentsInHonesty,2023-03-19T16:11:53Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1475307515) at 2023-03-19 09:11 AM PDT -ExperimentsInHonesty,2023-03-19T16:27:59Z,- ExperimentsInHonesty reopened issue: [3917](https://github.com/hackforla/website/issues/3917#event-8786355309) at 2023-03-19 09:27 AM PDT -ExperimentsInHonesty,2023-03-19T16:29:14Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1475312116) at 2023-03-19 09:29 AM PDT -ExperimentsInHonesty,2023-03-19T17:02:50Z,- ExperimentsInHonesty reopened issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1475053272) at 2023-03-19 10:02 AM PDT -ExperimentsInHonesty,2023-03-19T17:08:13Z,- ExperimentsInHonesty commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1475324190) at 2023-03-19 10:08 AM PDT -ExperimentsInHonesty,2023-03-19T17:08:13Z,- ExperimentsInHonesty closed issue as completed: [3722](https://github.com/hackforla/website/issues/3722#event-8788268695) at 2023-03-19 10:08 AM PDT -ExperimentsInHonesty,2023-03-20T17:42:43Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1476672283) at 2023-03-20 10:42 AM PDT -ExperimentsInHonesty,2023-03-21T15:43:52Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1478073222) at 2023-03-21 08:43 AM PDT -ExperimentsInHonesty,2023-03-21T15:46:10Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1478076874) at 2023-03-21 08:46 AM PDT -ExperimentsInHonesty,2023-03-21T15:46:10Z,- ExperimentsInHonesty reopened issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1478076874) at 2023-03-21 08:46 AM PDT -ExperimentsInHonesty,2023-03-21T15:59:28Z,- ExperimentsInHonesty commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1478104997) at 2023-03-21 08:59 AM PDT -ExperimentsInHonesty,2023-03-21T17:29:39Z,- ExperimentsInHonesty commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1478313235) at 2023-03-21 10:29 AM PDT -ExperimentsInHonesty,2023-03-21T17:29:40Z,- ExperimentsInHonesty reopened issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1478313235) at 2023-03-21 10:29 AM PDT -ExperimentsInHonesty,2023-03-21T17:48:11Z,- ExperimentsInHonesty commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1478338899) at 2023-03-21 10:48 AM PDT -ExperimentsInHonesty,2023-03-21T17:53:29Z,- ExperimentsInHonesty commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1478345659) at 2023-03-21 10:53 AM PDT -ExperimentsInHonesty,2023-03-21T17:55:10Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1478347776) at 2023-03-21 10:55 AM PDT -ExperimentsInHonesty,2023-03-21T17:55:11Z,- ExperimentsInHonesty reopened issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1478347776) at 2023-03-21 10:55 AM PDT -ExperimentsInHonesty,2023-03-21T18:09:05Z,- ExperimentsInHonesty commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1478369304) at 2023-03-21 11:09 AM PDT -ExperimentsInHonesty,2023-03-21T18:09:12Z,- ExperimentsInHonesty reopened issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1478369304) at 2023-03-21 11:09 AM PDT -ExperimentsInHonesty,2023-03-21T18:20:46Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1478384702) at 2023-03-21 11:20 AM PDT -ExperimentsInHonesty,2023-03-21T18:23:22Z,- ExperimentsInHonesty commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1478387979) at 2023-03-21 11:23 AM PDT -ExperimentsInHonesty,2023-03-21T18:58:11Z,- ExperimentsInHonesty commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1478431024) at 2023-03-21 11:58 AM PDT -ExperimentsInHonesty,2023-03-21T19:30:34Z,- ExperimentsInHonesty commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1478468551) at 2023-03-21 12:30 PM PDT -ExperimentsInHonesty,2023-03-21T20:23:23Z,- ExperimentsInHonesty commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1478533148) at 2023-03-21 01:23 PM PDT -ExperimentsInHonesty,2023-03-21T21:28:52Z,- ExperimentsInHonesty commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1478607253) at 2023-03-21 02:28 PM PDT -ExperimentsInHonesty,2023-03-21T22:04:00Z,- ExperimentsInHonesty commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1478649095) at 2023-03-21 03:04 PM PDT -ExperimentsInHonesty,2023-03-21T22:16:51Z,- ExperimentsInHonesty commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1478663986) at 2023-03-21 03:16 PM PDT -ExperimentsInHonesty,2023-03-21T22:37:21Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1478685437) at 2023-03-21 03:37 PM PDT -ExperimentsInHonesty,2023-03-21T22:53:26Z,- ExperimentsInHonesty commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1478698753) at 2023-03-21 03:53 PM PDT -ExperimentsInHonesty,2023-03-21T22:59:21Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1478703394) at 2023-03-21 03:59 PM PDT -ExperimentsInHonesty,2023-03-21T23:07:00Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1478709708) at 2023-03-21 04:07 PM PDT -ExperimentsInHonesty,2023-03-21T23:07:06Z,- ExperimentsInHonesty reopened issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1478709708) at 2023-03-21 04:07 PM PDT -ExperimentsInHonesty,2023-03-21T23:07:32Z,- ExperimentsInHonesty commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1478710094) at 2023-03-21 04:07 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:10Z,- ExperimentsInHonesty commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1478710538) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:10Z,- ExperimentsInHonesty reopened issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1478710538) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:57Z,- ExperimentsInHonesty commented on issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1478711132) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:57Z,- ExperimentsInHonesty reopened issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1478711132) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:09:06Z,- ExperimentsInHonesty reopened issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1478710094) at 2023-03-21 04:09 PM PDT -ExperimentsInHonesty,2023-03-21T23:12:04Z,- ExperimentsInHonesty commented on issue: [4183](https://github.com/hackforla/website/issues/4183#issuecomment-1478713220) at 2023-03-21 04:12 PM PDT -ExperimentsInHonesty,2023-03-21T23:17:50Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1478717068) at 2023-03-21 04:17 PM PDT -ExperimentsInHonesty,2023-03-21T23:30:13Z,- ExperimentsInHonesty commented on issue: [4168](https://github.com/hackforla/website/issues/4168#issuecomment-1478724756) at 2023-03-21 04:30 PM PDT -ExperimentsInHonesty,2023-03-21T23:30:14Z,- ExperimentsInHonesty closed issue as completed: [4168](https://github.com/hackforla/website/issues/4168#event-8811076578) at 2023-03-21 04:30 PM PDT -ExperimentsInHonesty,2023-03-22T15:43:40Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1479808595) at 2023-03-22 08:43 AM PDT -ExperimentsInHonesty,2023-03-22T15:44:36Z,- ExperimentsInHonesty commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1479810137) at 2023-03-22 08:44 AM PDT -ExperimentsInHonesty,2023-03-22T16:02:33Z,- ExperimentsInHonesty opened issue: [4240](https://github.com/hackforla/website/issues/4240) at 2023-03-22 09:02 AM PDT -ExperimentsInHonesty,2023-03-22T16:15:54Z,- ExperimentsInHonesty opened issue: [4241](https://github.com/hackforla/website/issues/4241) at 2023-03-22 09:15 AM PDT -ExperimentsInHonesty,2023-03-22T16:16:45Z,- ExperimentsInHonesty commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1479870606) at 2023-03-22 09:16 AM PDT -ExperimentsInHonesty,2023-03-22T16:26:49Z,- ExperimentsInHonesty opened issue: [4242](https://github.com/hackforla/website/issues/4242) at 2023-03-22 09:26 AM PDT -ExperimentsInHonesty,2023-03-22T16:28:49Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1479892705) at 2023-03-22 09:28 AM PDT -ExperimentsInHonesty,2023-03-22T16:41:42Z,- ExperimentsInHonesty commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1479911127) at 2023-03-22 09:41 AM PDT -ExperimentsInHonesty,2023-03-22T17:20:17Z,- ExperimentsInHonesty commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1479970237) at 2023-03-22 10:20 AM PDT -ExperimentsInHonesty,2023-03-22T17:31:41Z,- ExperimentsInHonesty commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1479986896) at 2023-03-22 10:31 AM PDT -ExperimentsInHonesty,2023-03-22T17:47:02Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1480007331) at 2023-03-22 10:47 AM PDT -ExperimentsInHonesty,2023-03-22T17:57:08Z,- ExperimentsInHonesty commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1480020394) at 2023-03-22 10:57 AM PDT -ExperimentsInHonesty,2023-03-22T17:59:42Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1480023909) at 2023-03-22 10:59 AM PDT -ExperimentsInHonesty,2023-03-22T18:16:38Z,- ExperimentsInHonesty opened issue: [4243](https://github.com/hackforla/website/issues/4243) at 2023-03-22 11:16 AM PDT -ExperimentsInHonesty,2023-03-22T18:18:17Z,- ExperimentsInHonesty opened issue: [4244](https://github.com/hackforla/website/issues/4244) at 2023-03-22 11:18 AM PDT -ExperimentsInHonesty,2023-03-22T18:58:21Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-1480104428) at 2023-03-22 11:58 AM PDT -ExperimentsInHonesty,2023-03-22T19:04:30Z,- ExperimentsInHonesty commented on issue: [4244](https://github.com/hackforla/website/issues/4244#issuecomment-1480112022) at 2023-03-22 12:04 PM PDT -ExperimentsInHonesty,2023-03-22T19:40:14Z,- ExperimentsInHonesty opened issue: [4246](https://github.com/hackforla/website/issues/4246) at 2023-03-22 12:40 PM PDT -ExperimentsInHonesty,2023-03-22T20:11:54Z,- ExperimentsInHonesty commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1480200755) at 2023-03-22 01:11 PM PDT -ExperimentsInHonesty,2023-03-22T20:48:11Z,- ExperimentsInHonesty opened issue: [4247](https://github.com/hackforla/website/issues/4247) at 2023-03-22 01:48 PM PDT -ExperimentsInHonesty,2023-03-23T00:45:49Z,- ExperimentsInHonesty opened issue: [4252](https://github.com/hackforla/website/issues/4252) at 2023-03-22 05:45 PM PDT -ExperimentsInHonesty,2023-03-23T01:01:23Z,- ExperimentsInHonesty commented on issue: [4236](https://github.com/hackforla/website/issues/4236#issuecomment-1480440129) at 2023-03-22 06:01 PM PDT -ExperimentsInHonesty,2023-03-23T01:01:41Z,- ExperimentsInHonesty commented on issue: [4235](https://github.com/hackforla/website/issues/4235#issuecomment-1480440319) at 2023-03-22 06:01 PM PDT -ExperimentsInHonesty,2023-03-23T01:06:46Z,- ExperimentsInHonesty commented on issue: [3860](https://github.com/hackforla/website/issues/3860#issuecomment-1480443747) at 2023-03-22 06:06 PM PDT -ExperimentsInHonesty,2023-03-23T04:53:36Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1480599904) at 2023-03-22 09:53 PM PDT -ExperimentsInHonesty,2023-03-23T04:59:41Z,- ExperimentsInHonesty commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1480603641) at 2023-03-22 09:59 PM PDT -ExperimentsInHonesty,2023-03-23T05:02:24Z,- ExperimentsInHonesty commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1480605637) at 2023-03-22 10:02 PM PDT -ExperimentsInHonesty,2023-03-23T05:17:43Z,- ExperimentsInHonesty commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1480616137) at 2023-03-22 10:17 PM PDT -ExperimentsInHonesty,2023-03-23T05:26:07Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1480622140) at 2023-03-22 10:26 PM PDT -ExperimentsInHonesty,2023-03-23T15:52:48Z,- ExperimentsInHonesty commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1481442498) at 2023-03-23 08:52 AM PDT -ExperimentsInHonesty,2023-03-23T15:53:38Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1481444365) at 2023-03-23 08:53 AM PDT -ExperimentsInHonesty,2023-03-23T16:44:51Z,- ExperimentsInHonesty opened issue: [4261](https://github.com/hackforla/website/issues/4261) at 2023-03-23 09:44 AM PDT -ExperimentsInHonesty,2023-03-23T16:56:07Z,- ExperimentsInHonesty opened issue: [4262](https://github.com/hackforla/website/issues/4262) at 2023-03-23 09:56 AM PDT -ExperimentsInHonesty,2023-03-23T17:28:05Z,- ExperimentsInHonesty commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1481597627) at 2023-03-23 10:28 AM PDT -ExperimentsInHonesty,2023-03-24T01:02:29Z,- ExperimentsInHonesty commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1482107731) at 2023-03-23 06:02 PM PDT -ExperimentsInHonesty,2023-03-24T03:35:20Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482202468) at 2023-03-23 08:35 PM PDT -ExperimentsInHonesty,2023-03-24T03:45:15Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482207533) at 2023-03-23 08:45 PM PDT -ExperimentsInHonesty,2023-03-24T03:45:30Z,- ExperimentsInHonesty reopened issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482207533) at 2023-03-23 08:45 PM PDT -ExperimentsInHonesty,2023-03-24T03:46:04Z,- ExperimentsInHonesty commented on issue: [4269](https://github.com/hackforla/website/issues/4269#issuecomment-1482207948) at 2023-03-23 08:46 PM PDT -ExperimentsInHonesty,2023-03-24T04:05:29Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1482219221) at 2023-03-23 09:05 PM PDT -ExperimentsInHonesty,2023-03-24T04:14:59Z,- ExperimentsInHonesty closed issue as completed: [4241](https://github.com/hackforla/website/issues/4241#event-8834525328) at 2023-03-23 09:14 PM PDT -ExperimentsInHonesty,2023-03-24T05:35:49Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1482276713) at 2023-03-23 10:35 PM PDT -ExperimentsInHonesty,2023-03-24T05:39:25Z,- ExperimentsInHonesty closed issue as completed: [4244](https://github.com/hackforla/website/issues/4244#event-8834873583) at 2023-03-23 10:39 PM PDT -ExperimentsInHonesty,2023-03-24T05:46:05Z,- ExperimentsInHonesty commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1482284175) at 2023-03-23 10:46 PM PDT -ExperimentsInHonesty,2023-03-24T05:48:39Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1482288649) at 2023-03-23 10:48 PM PDT -ExperimentsInHonesty,2023-03-24T05:53:14Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482291544) at 2023-03-23 10:53 PM PDT -ExperimentsInHonesty,2023-03-24T05:55:37Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1482292795) at 2023-03-23 10:55 PM PDT -ExperimentsInHonesty,2023-03-24T06:01:24Z,- ExperimentsInHonesty commented on issue: [3370](https://github.com/hackforla/website/issues/3370#issuecomment-1482297139) at 2023-03-23 11:01 PM PDT -ExperimentsInHonesty,2023-03-24T06:01:25Z,- ExperimentsInHonesty closed issue as completed: [3370](https://github.com/hackforla/website/issues/3370#event-8834999252) at 2023-03-23 11:01 PM PDT -ExperimentsInHonesty,2023-03-24T06:02:37Z,- ExperimentsInHonesty commented on issue: [3533](https://github.com/hackforla/website/issues/3533#issuecomment-1482298163) at 2023-03-23 11:02 PM PDT -ExperimentsInHonesty,2023-03-24T06:02:37Z,- ExperimentsInHonesty closed issue as completed: [3533](https://github.com/hackforla/website/issues/3533#event-8835007443) at 2023-03-23 11:02 PM PDT -ExperimentsInHonesty,2023-03-24T06:23:55Z,- ExperimentsInHonesty commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-1482313306) at 2023-03-23 11:23 PM PDT -ExperimentsInHonesty,2023-03-24T06:48:44Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1482333765) at 2023-03-23 11:48 PM PDT -ExperimentsInHonesty,2023-03-24T15:03:57Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1482951990) at 2023-03-24 08:03 AM PDT -ExperimentsInHonesty,2023-03-24T15:42:44Z,- ExperimentsInHonesty opened issue: [4276](https://github.com/hackforla/website/issues/4276) at 2023-03-24 08:42 AM PDT -ExperimentsInHonesty,2023-03-24T15:47:26Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1483023208) at 2023-03-24 08:47 AM PDT -ExperimentsInHonesty,2023-03-24T16:19:47Z,- ExperimentsInHonesty opened issue: [4277](https://github.com/hackforla/website/issues/4277) at 2023-03-24 09:19 AM PDT -ExperimentsInHonesty,2023-03-24T16:20:16Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1483073060) at 2023-03-24 09:20 AM PDT -ExperimentsInHonesty,2023-03-24T16:37:48Z,- ExperimentsInHonesty commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1483095718) at 2023-03-24 09:37 AM PDT -ExperimentsInHonesty,2023-03-24T17:05:42Z,- ExperimentsInHonesty commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1483134101) at 2023-03-24 10:05 AM PDT -ExperimentsInHonesty,2023-03-24T17:49:57Z,- ExperimentsInHonesty assigned to issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1483134101) at 2023-03-24 10:49 AM PDT -ExperimentsInHonesty,2023-03-24T21:11:39Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1483411014) at 2023-03-24 02:11 PM PDT -ExperimentsInHonesty,2023-03-24T21:11:43Z,- ExperimentsInHonesty closed issue as completed: [3885](https://github.com/hackforla/website/issues/3885#event-8842834407) at 2023-03-24 02:11 PM PDT -ExperimentsInHonesty,2023-03-24T21:15:55Z,- ExperimentsInHonesty commented on issue: [4281](https://github.com/hackforla/website/issues/4281#issuecomment-1483414237) at 2023-03-24 02:15 PM PDT -ExperimentsInHonesty,2023-03-24T21:37:33Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1483437556) at 2023-03-24 02:37 PM PDT -ExperimentsInHonesty,2023-03-24T22:15:46Z,- ExperimentsInHonesty commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1483496383) at 2023-03-24 03:15 PM PDT -ExperimentsInHonesty,2023-03-24T22:19:23Z,- ExperimentsInHonesty commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1483502810) at 2023-03-24 03:19 PM PDT -ExperimentsInHonesty,2023-03-24T23:59:36Z,- ExperimentsInHonesty opened issue: [4282](https://github.com/hackforla/website/issues/4282) at 2023-03-24 04:59 PM PDT -ExperimentsInHonesty,2023-03-25T01:15:24Z,- ExperimentsInHonesty opened issue: [4283](https://github.com/hackforla/website/issues/4283) at 2023-03-24 06:15 PM PDT -ExperimentsInHonesty,2023-03-25T01:35:02Z,- ExperimentsInHonesty opened issue: [4285](https://github.com/hackforla/website/issues/4285) at 2023-03-24 06:35 PM PDT -ExperimentsInHonesty,2023-03-25T01:45:09Z,- ExperimentsInHonesty commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1483672874) at 2023-03-24 06:45 PM PDT -ExperimentsInHonesty,2023-03-25T06:00:22Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1483736599) at 2023-03-24 11:00 PM PDT -ExperimentsInHonesty,2023-03-26T07:15:16Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1484016722) at 2023-03-26 12:15 AM PDT -ExperimentsInHonesty,2023-03-26T07:17:35Z,- ExperimentsInHonesty commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1484017168) at 2023-03-26 12:17 AM PDT -ExperimentsInHonesty,2023-03-26T16:36:54Z,- ExperimentsInHonesty opened issue: [4294](https://github.com/hackforla/website/issues/4294) at 2023-03-26 09:36 AM PDT -ExperimentsInHonesty,2023-03-26T16:40:32Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484153105) at 2023-03-26 09:40 AM PDT -ExperimentsInHonesty,2023-03-26T16:41:25Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484153332) at 2023-03-26 09:41 AM PDT -ExperimentsInHonesty,2023-03-26T17:16:24Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484162168) at 2023-03-26 10:16 AM PDT -ExperimentsInHonesty,2023-03-26T17:19:06Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484162883) at 2023-03-26 10:19 AM PDT -ExperimentsInHonesty,2023-03-26T18:34:52Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1484182141) at 2023-03-26 11:34 AM PDT -ExperimentsInHonesty,2023-03-26T20:49:33Z,- ExperimentsInHonesty assigned to issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484162883) at 2023-03-26 01:49 PM PDT -ExperimentsInHonesty,2023-03-26T22:11:40Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1484239501) at 2023-03-26 03:11 PM PDT -ExperimentsInHonesty,2023-03-26T22:15:12Z,- ExperimentsInHonesty commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1484240225) at 2023-03-26 03:15 PM PDT -ExperimentsInHonesty,2023-03-26T22:23:33Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1484242149) at 2023-03-26 03:23 PM PDT -ExperimentsInHonesty,2023-03-26T22:58:24Z,- ExperimentsInHonesty commented on issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1484251190) at 2023-03-26 03:58 PM PDT -ExperimentsInHonesty,2023-03-26T22:58:25Z,- ExperimentsInHonesty closed issue as completed: [3611](https://github.com/hackforla/website/issues/3611#event-8848317207) at 2023-03-26 03:58 PM PDT -ExperimentsInHonesty,2023-03-26T23:08:40Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1484254478) at 2023-03-26 04:08 PM PDT -ExperimentsInHonesty,2023-03-26T23:26:07Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1484270060) at 2023-03-26 04:26 PM PDT -ExperimentsInHonesty,2023-03-26T23:32:19Z,- ExperimentsInHonesty commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1484271417) at 2023-03-26 04:32 PM PDT -ExperimentsInHonesty,2023-03-26T23:36:04Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1484272263) at 2023-03-26 04:36 PM PDT -ExperimentsInHonesty,2023-03-26T23:39:46Z,- ExperimentsInHonesty commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1484276572) at 2023-03-26 04:39 PM PDT -ExperimentsInHonesty,2023-03-26T23:41:42Z,- ExperimentsInHonesty commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1484277046) at 2023-03-26 04:41 PM PDT -ExperimentsInHonesty,2023-03-26T23:52:33Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1484279461) at 2023-03-26 04:52 PM PDT -ExperimentsInHonesty,2023-03-26T23:58:40Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1484280877) at 2023-03-26 04:58 PM PDT -ExperimentsInHonesty,2023-03-27T00:09:05Z,- ExperimentsInHonesty commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1484285108) at 2023-03-26 05:09 PM PDT -ExperimentsInHonesty,2023-03-27T00:09:12Z,- ExperimentsInHonesty closed issue as completed: [3820](https://github.com/hackforla/website/issues/3820#event-8848457750) at 2023-03-26 05:09 PM PDT -ExperimentsInHonesty,2023-03-27T00:11:12Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1484285907) at 2023-03-26 05:11 PM PDT -ExperimentsInHonesty,2023-03-27T00:14:43Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1484287840) at 2023-03-26 05:14 PM PDT -ExperimentsInHonesty,2023-03-27T00:20:34Z,- ExperimentsInHonesty commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1484290194) at 2023-03-26 05:20 PM PDT -ExperimentsInHonesty,2023-03-27T00:20:35Z,- ExperimentsInHonesty closed issue as completed: [3882](https://github.com/hackforla/website/issues/3882#event-8848487333) at 2023-03-26 05:20 PM PDT -ExperimentsInHonesty,2023-03-27T00:21:49Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1484290661) at 2023-03-26 05:21 PM PDT -ExperimentsInHonesty,2023-03-27T00:27:20Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1484293271) at 2023-03-26 05:27 PM PDT -ExperimentsInHonesty,2023-03-27T00:27:43Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1484293419) at 2023-03-26 05:27 PM PDT -ExperimentsInHonesty,2023-03-27T00:36:15Z,- ExperimentsInHonesty commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1484303686) at 2023-03-26 05:36 PM PDT -ExperimentsInHonesty,2023-03-27T00:49:33Z,- ExperimentsInHonesty commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1484310918) at 2023-03-26 05:49 PM PDT -ExperimentsInHonesty,2023-03-27T00:49:34Z,- ExperimentsInHonesty closed issue as completed: [3916](https://github.com/hackforla/website/issues/3916#event-8848562733) at 2023-03-26 05:49 PM PDT -ExperimentsInHonesty,2023-03-27T00:53:09Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1484312343) at 2023-03-26 05:53 PM PDT -ExperimentsInHonesty,2023-03-27T00:59:07Z,- ExperimentsInHonesty commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1484316737) at 2023-03-26 05:59 PM PDT -ExperimentsInHonesty,2023-03-27T01:01:56Z,- ExperimentsInHonesty commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1484318070) at 2023-03-26 06:01 PM PDT -ExperimentsInHonesty,2023-03-27T01:06:32Z,- ExperimentsInHonesty commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1484320041) at 2023-03-26 06:06 PM PDT -ExperimentsInHonesty,2023-03-27T01:21:47Z,- ExperimentsInHonesty commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1484328976) at 2023-03-26 06:21 PM PDT -ExperimentsInHonesty,2023-03-27T01:27:40Z,- ExperimentsInHonesty commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1484334242) at 2023-03-26 06:27 PM PDT -ExperimentsInHonesty,2023-03-27T01:45:06Z,- ExperimentsInHonesty commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1484346168) at 2023-03-26 06:45 PM PDT -ExperimentsInHonesty,2023-03-27T01:46:20Z,- ExperimentsInHonesty commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1484348023) at 2023-03-26 06:46 PM PDT -ExperimentsInHonesty,2023-03-27T01:54:42Z,- ExperimentsInHonesty commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1484356166) at 2023-03-26 06:54 PM PDT -ExperimentsInHonesty,2023-03-27T02:54:02Z,- ExperimentsInHonesty commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1484405290) at 2023-03-26 07:54 PM PDT -ExperimentsInHonesty,2023-03-27T02:55:32Z,- ExperimentsInHonesty commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1484406037) at 2023-03-26 07:55 PM PDT -ExperimentsInHonesty,2023-03-27T03:01:03Z,- ExperimentsInHonesty commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1484410244) at 2023-03-26 08:01 PM PDT -ExperimentsInHonesty,2023-03-27T03:01:30Z,- ExperimentsInHonesty commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1484410637) at 2023-03-26 08:01 PM PDT -ExperimentsInHonesty,2023-03-27T03:04:18Z,- ExperimentsInHonesty commented on issue: [4064](https://github.com/hackforla/website/issues/4064#issuecomment-1484413065) at 2023-03-26 08:04 PM PDT -ExperimentsInHonesty,2023-03-27T03:06:44Z,- ExperimentsInHonesty commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1484415193) at 2023-03-26 08:06 PM PDT -ExperimentsInHonesty,2023-03-27T03:10:13Z,- ExperimentsInHonesty commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1484418102) at 2023-03-26 08:10 PM PDT -ExperimentsInHonesty,2023-03-27T03:14:57Z,- ExperimentsInHonesty commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1484421675) at 2023-03-26 08:14 PM PDT -ExperimentsInHonesty,2023-03-27T03:16:01Z,- ExperimentsInHonesty commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1484422289) at 2023-03-26 08:16 PM PDT -ExperimentsInHonesty,2023-03-27T03:17:52Z,- ExperimentsInHonesty commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1484423292) at 2023-03-26 08:17 PM PDT -ExperimentsInHonesty,2023-03-27T03:25:41Z,- ExperimentsInHonesty commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1484427592) at 2023-03-26 08:25 PM PDT -ExperimentsInHonesty,2023-03-27T03:35:02Z,- ExperimentsInHonesty commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1484432261) at 2023-03-26 08:35 PM PDT -ExperimentsInHonesty,2023-03-27T03:39:12Z,- ExperimentsInHonesty commented on issue: [4160](https://github.com/hackforla/website/issues/4160#issuecomment-1484436745) at 2023-03-26 08:39 PM PDT -ExperimentsInHonesty,2023-03-27T03:42:50Z,- ExperimentsInHonesty commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1484442509) at 2023-03-26 08:42 PM PDT -ExperimentsInHonesty,2023-03-27T03:44:59Z,- ExperimentsInHonesty commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1484444854) at 2023-03-26 08:44 PM PDT -ExperimentsInHonesty,2023-03-27T03:46:31Z,- ExperimentsInHonesty commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1484445511) at 2023-03-26 08:46 PM PDT -ExperimentsInHonesty,2023-03-27T03:53:36Z,- ExperimentsInHonesty commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1484448750) at 2023-03-26 08:53 PM PDT -ExperimentsInHonesty,2023-03-27T03:54:44Z,- ExperimentsInHonesty commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1484449249) at 2023-03-26 08:54 PM PDT -ExperimentsInHonesty,2023-03-27T03:57:18Z,- ExperimentsInHonesty commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1484450619) at 2023-03-26 08:57 PM PDT -ExperimentsInHonesty,2023-03-27T04:01:32Z,- ExperimentsInHonesty commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1484453980) at 2023-03-26 09:01 PM PDT -ExperimentsInHonesty,2023-03-27T04:06:19Z,- ExperimentsInHonesty commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1484458905) at 2023-03-26 09:06 PM PDT -ExperimentsInHonesty,2023-03-27T04:11:00Z,- ExperimentsInHonesty commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1484463005) at 2023-03-26 09:11 PM PDT -ExperimentsInHonesty,2023-03-27T04:21:56Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1484469891) at 2023-03-26 09:21 PM PDT -ExperimentsInHonesty,2023-03-27T04:23:18Z,- ExperimentsInHonesty commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1484470560) at 2023-03-26 09:23 PM PDT -ExperimentsInHonesty,2023-03-27T04:25:31Z,- ExperimentsInHonesty commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1484471726) at 2023-03-26 09:25 PM PDT -ExperimentsInHonesty,2023-03-27T04:32:38Z,- ExperimentsInHonesty commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1484475858) at 2023-03-26 09:32 PM PDT -ExperimentsInHonesty,2023-03-27T04:33:50Z,- ExperimentsInHonesty commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1484476418) at 2023-03-26 09:33 PM PDT -ExperimentsInHonesty,2023-03-27T04:34:20Z,- ExperimentsInHonesty commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1484476662) at 2023-03-26 09:34 PM PDT -ExperimentsInHonesty,2023-03-27T04:34:46Z,- ExperimentsInHonesty commented on issue: [4090](https://github.com/hackforla/website/issues/4090#issuecomment-1484476869) at 2023-03-26 09:34 PM PDT -ExperimentsInHonesty,2023-03-27T04:49:24Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1484483900) at 2023-03-26 09:49 PM PDT -ExperimentsInHonesty,2023-03-27T04:51:42Z,- ExperimentsInHonesty commented on issue: [4269](https://github.com/hackforla/website/issues/4269#issuecomment-1484484986) at 2023-03-26 09:51 PM PDT -ExperimentsInHonesty,2023-03-27T05:00:04Z,- ExperimentsInHonesty commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1484491167) at 2023-03-26 10:00 PM PDT -ExperimentsInHonesty,2023-03-27T05:01:28Z,- ExperimentsInHonesty commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1484494520) at 2023-03-26 10:01 PM PDT -ExperimentsInHonesty,2023-03-27T05:59:48Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484540784) at 2023-03-26 10:59 PM PDT -ExperimentsInHonesty,2023-03-27T06:28:24Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1484573601) at 2023-03-26 11:28 PM PDT -ExperimentsInHonesty,2023-03-27T06:42:52Z,- ExperimentsInHonesty unassigned from issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484540784) at 2023-03-26 11:42 PM PDT -ExperimentsInHonesty,2023-03-27T07:05:26Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1484612385) at 2023-03-27 12:05 AM PDT -ExperimentsInHonesty,2023-03-27T07:30:59Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1484644038) at 2023-03-27 12:30 AM PDT -ExperimentsInHonesty,2023-03-27T07:46:43Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1484662456) at 2023-03-27 12:46 AM PDT -ExperimentsInHonesty,2023-03-27T08:00:50Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1484680290) at 2023-03-27 01:00 AM PDT -ExperimentsInHonesty,2023-03-28T00:33:59Z,- ExperimentsInHonesty commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1486042925) at 2023-03-27 05:33 PM PDT -ExperimentsInHonesty,2023-03-28T01:35:55Z,- ExperimentsInHonesty commented on issue: [3500](https://github.com/hackforla/website/issues/3500#issuecomment-1486082425) at 2023-03-27 06:35 PM PDT -ExperimentsInHonesty,2023-03-28T01:36:43Z,- ExperimentsInHonesty closed issue as completed: [3501](https://github.com/hackforla/website/issues/3501#event-8859870429) at 2023-03-27 06:36 PM PDT -ExperimentsInHonesty,2023-03-28T01:37:00Z,- ExperimentsInHonesty closed issue as completed: [3500](https://github.com/hackforla/website/issues/3500#event-8859871742) at 2023-03-27 06:37 PM PDT -ExperimentsInHonesty,2023-03-28T01:41:48Z,- ExperimentsInHonesty commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-1486085956) at 2023-03-27 06:41 PM PDT -ExperimentsInHonesty,2023-03-29T23:54:41Z,- ExperimentsInHonesty opened issue: [4342](https://github.com/hackforla/website/issues/4342) at 2023-03-29 04:54 PM PDT -ExperimentsInHonesty,2023-04-02T15:30:43Z,- ExperimentsInHonesty opened issue: [4367](https://github.com/hackforla/website/issues/4367) at 2023-04-02 08:30 AM PDT -ExperimentsInHonesty,2023-04-02T15:36:59Z,- ExperimentsInHonesty commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1493374309) at 2023-04-02 08:36 AM PDT -ExperimentsInHonesty,2023-04-02T15:40:04Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1493374953) at 2023-04-02 08:40 AM PDT -ExperimentsInHonesty,2023-04-02T15:44:39Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1493375886) at 2023-04-02 08:44 AM PDT -ExperimentsInHonesty,2023-04-02T15:45:25Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1493376054) at 2023-04-02 08:45 AM PDT -ExperimentsInHonesty,2023-04-02T15:55:59Z,- ExperimentsInHonesty commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493378268) at 2023-04-02 08:55 AM PDT -ExperimentsInHonesty,2023-04-02T16:00:46Z,- ExperimentsInHonesty opened issue: [4368](https://github.com/hackforla/website/issues/4368) at 2023-04-02 09:00 AM PDT -ExperimentsInHonesty,2023-04-02T16:21:57Z,- ExperimentsInHonesty commented on issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1493383822) at 2023-04-02 09:21 AM PDT -ExperimentsInHonesty,2023-04-02T16:29:46Z,- ExperimentsInHonesty commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1493385344) at 2023-04-02 09:29 AM PDT -ExperimentsInHonesty,2023-04-02T16:45:42Z,- ExperimentsInHonesty opened issue: [4369](https://github.com/hackforla/website/issues/4369) at 2023-04-02 09:45 AM PDT -ExperimentsInHonesty,2023-04-02T16:48:53Z,- ExperimentsInHonesty commented on issue: [4350](https://github.com/hackforla/website/issues/4350#issuecomment-1493388903) at 2023-04-02 09:48 AM PDT -ExperimentsInHonesty,2023-04-02T16:53:04Z,- ExperimentsInHonesty commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1493389723) at 2023-04-02 09:53 AM PDT -ExperimentsInHonesty,2023-04-02T17:48:54Z,- ExperimentsInHonesty commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1493401332) at 2023-04-02 10:48 AM PDT -ExperimentsInHonesty,2023-04-02T18:52:21Z,- ExperimentsInHonesty commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1493414075) at 2023-04-02 11:52 AM PDT -ExperimentsInHonesty,2023-04-02T19:06:25Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493417001) at 2023-04-02 12:06 PM PDT -ExperimentsInHonesty,2023-04-02T19:09:34Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493417628) at 2023-04-02 12:09 PM PDT -ExperimentsInHonesty,2023-04-02T19:17:08Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493419037) at 2023-04-02 12:17 PM PDT -ExperimentsInHonesty,2023-04-02T20:05:15Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493428321) at 2023-04-02 01:05 PM PDT -ExperimentsInHonesty,2023-04-02T20:34:35Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493434319) at 2023-04-02 01:34 PM PDT -ExperimentsInHonesty,2023-04-02T20:46:25Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493436362) at 2023-04-02 01:46 PM PDT -ExperimentsInHonesty,2023-04-02T21:03:59Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493439717) at 2023-04-02 02:03 PM PDT -ExperimentsInHonesty,2023-04-03T00:58:53Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493494956) at 2023-04-02 05:58 PM PDT -ExperimentsInHonesty,2023-04-03T00:59:20Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493495104) at 2023-04-02 05:59 PM PDT -ExperimentsInHonesty,2023-04-03T04:23:38Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493641922) at 2023-04-02 09:23 PM PDT -ExperimentsInHonesty,2023-04-03T04:27:58Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493645397) at 2023-04-02 09:27 PM PDT -ExperimentsInHonesty,2023-04-03T04:35:00Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493648757) at 2023-04-02 09:35 PM PDT -ExperimentsInHonesty,2023-04-03T05:16:46Z,- ExperimentsInHonesty opened issue: [4385](https://github.com/hackforla/website/issues/4385) at 2023-04-02 10:16 PM PDT -ExperimentsInHonesty,2023-04-03T05:25:45Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1493684387) at 2023-04-02 10:25 PM PDT -ExperimentsInHonesty,2023-04-03T06:09:08Z,- ExperimentsInHonesty commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493716472) at 2023-04-02 11:09 PM PDT -ExperimentsInHonesty,2023-04-03T06:21:53Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493727759) at 2023-04-02 11:21 PM PDT -ExperimentsInHonesty,2023-04-03T06:29:04Z,- ExperimentsInHonesty commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1493741627) at 2023-04-02 11:29 PM PDT -ExperimentsInHonesty,2023-04-03T06:29:04Z,- ExperimentsInHonesty closed issue as completed: [3758](https://github.com/hackforla/website/issues/3758#event-8908912472) at 2023-04-02 11:29 PM PDT -ExperimentsInHonesty,2023-04-03T06:38:09Z,- ExperimentsInHonesty commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1493760332) at 2023-04-02 11:38 PM PDT -ExperimentsInHonesty,2023-04-03T16:28:33Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494630931) at 2023-04-03 09:28 AM PDT -ExperimentsInHonesty,2023-04-03T16:55:31Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494665636) at 2023-04-03 09:55 AM PDT -ExperimentsInHonesty,2023-04-03T16:56:05Z,- ExperimentsInHonesty assigned to issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494665636) at 2023-04-03 09:56 AM PDT -ExperimentsInHonesty,2023-04-03T17:02:56Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494676630) at 2023-04-03 10:02 AM PDT -ExperimentsInHonesty,2023-04-03T17:14:46Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494693228) at 2023-04-03 10:14 AM PDT -ExperimentsInHonesty,2023-04-03T17:22:48Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494702870) at 2023-04-03 10:22 AM PDT -ExperimentsInHonesty,2023-04-03T17:54:18Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494739533) at 2023-04-03 10:54 AM PDT -ExperimentsInHonesty,2023-04-03T17:56:23Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494741922) at 2023-04-03 10:56 AM PDT -ExperimentsInHonesty,2023-04-03T22:47:12Z,- ExperimentsInHonesty commented on issue: [4387](https://github.com/hackforla/website/issues/4387#issuecomment-1495083801) at 2023-04-03 03:47 PM PDT -ExperimentsInHonesty,2023-04-03T23:43:05Z,- ExperimentsInHonesty commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1495131102) at 2023-04-03 04:43 PM PDT -ExperimentsInHonesty,2023-04-03T23:57:41Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1495143197) at 2023-04-03 04:57 PM PDT -ExperimentsInHonesty,2023-04-04T00:06:25Z,- ExperimentsInHonesty commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1495151351) at 2023-04-03 05:06 PM PDT -ExperimentsInHonesty,2023-04-04T00:27:04Z,- ExperimentsInHonesty commented on pull request: [4273](https://github.com/hackforla/website/pull/4273#issuecomment-1495170008) at 2023-04-03 05:27 PM PDT -ExperimentsInHonesty,2023-04-04T00:27:36Z,- ExperimentsInHonesty commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1495170363) at 2023-04-03 05:27 PM PDT -ExperimentsInHonesty,2023-04-04T00:29:46Z,- ExperimentsInHonesty commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1495172551) at 2023-04-03 05:29 PM PDT -ExperimentsInHonesty,2023-04-04T01:51:20Z,- ExperimentsInHonesty commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1495225001) at 2023-04-03 06:51 PM PDT -ExperimentsInHonesty,2023-04-04T02:23:42Z,- ExperimentsInHonesty commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1495248796) at 2023-04-03 07:23 PM PDT -ExperimentsInHonesty,2023-04-04T02:23:43Z,- ExperimentsInHonesty closed issue as completed: [3829](https://github.com/hackforla/website/issues/3829#event-8919329569) at 2023-04-03 07:23 PM PDT -ExperimentsInHonesty,2023-04-04T18:44:30Z,- ExperimentsInHonesty opened issue: [4407](https://github.com/hackforla/website/issues/4407) at 2023-04-04 11:44 AM PDT -ExperimentsInHonesty,2023-04-04T19:05:09Z,- ExperimentsInHonesty commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1496461466) at 2023-04-04 12:05 PM PDT -ExperimentsInHonesty,2023-04-04T21:43:45Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1496642310) at 2023-04-04 02:43 PM PDT -ExperimentsInHonesty,2023-04-04T21:52:50Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1496650077) at 2023-04-04 02:52 PM PDT -ExperimentsInHonesty,2023-04-04T21:59:02Z,- ExperimentsInHonesty commented on issue: [4342](https://github.com/hackforla/website/issues/4342#issuecomment-1496655562) at 2023-04-04 02:59 PM PDT -ExperimentsInHonesty,2023-04-04T22:11:14Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1496666502) at 2023-04-04 03:11 PM PDT -ExperimentsInHonesty,2023-04-04T22:48:40Z,- ExperimentsInHonesty commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1496694092) at 2023-04-04 03:48 PM PDT -ExperimentsInHonesty,2023-04-06T14:47:50Z,- ExperimentsInHonesty commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1499189544) at 2023-04-06 07:47 AM PDT -ExperimentsInHonesty,2023-04-06T15:43:45Z,- ExperimentsInHonesty commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1499272225) at 2023-04-06 08:43 AM PDT -ExperimentsInHonesty,2023-04-06T16:00:04Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1499293575) at 2023-04-06 09:00 AM PDT -ExperimentsInHonesty,2023-04-06T16:02:19Z,- ExperimentsInHonesty unassigned from issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494746839) at 2023-04-06 09:02 AM PDT -ExperimentsInHonesty,2023-04-06T16:07:28Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1499303662) at 2023-04-06 09:07 AM PDT -ExperimentsInHonesty,2023-04-06T17:03:53Z,- ExperimentsInHonesty opened issue: [4431](https://github.com/hackforla/website/issues/4431) at 2023-04-06 10:03 AM PDT -ExperimentsInHonesty,2023-04-06T17:41:51Z,- ExperimentsInHonesty opened issue: [4432](https://github.com/hackforla/website/issues/4432) at 2023-04-06 10:41 AM PDT -ExperimentsInHonesty,2023-04-06T18:19:15Z,- ExperimentsInHonesty commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1499448531) at 2023-04-06 11:19 AM PDT -ExperimentsInHonesty,2023-04-06T18:23:09Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1499453729) at 2023-04-06 11:23 AM PDT -ExperimentsInHonesty,2023-04-06T18:29:39Z,- ExperimentsInHonesty commented on issue: [4431](https://github.com/hackforla/website/issues/4431#issuecomment-1499460170) at 2023-04-06 11:29 AM PDT -ExperimentsInHonesty,2023-04-06T18:38:04Z,- ExperimentsInHonesty commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1499468391) at 2023-04-06 11:38 AM PDT -ExperimentsInHonesty,2023-04-06T19:09:47Z,- ExperimentsInHonesty reopened issue: [4261](https://github.com/hackforla/website/issues/4261#event-8941104878) at 2023-04-06 12:09 PM PDT -ExperimentsInHonesty,2023-04-06T19:15:51Z,- ExperimentsInHonesty commented on issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499506499) at 2023-04-06 12:15 PM PDT -ExperimentsInHonesty,2023-04-06T19:17:32Z,- ExperimentsInHonesty commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1499508041) at 2023-04-06 12:17 PM PDT -ExperimentsInHonesty,2023-04-06T19:27:36Z,- ExperimentsInHonesty assigned to issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499506499) at 2023-04-06 12:27 PM PDT -ExperimentsInHonesty,2023-04-06T19:28:31Z,- ExperimentsInHonesty commented on issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499518464) at 2023-04-06 12:28 PM PDT -ExperimentsInHonesty,2023-04-06T19:30:50Z,- ExperimentsInHonesty opened issue: [4434](https://github.com/hackforla/website/issues/4434) at 2023-04-06 12:30 PM PDT -ExperimentsInHonesty,2023-04-06T19:49:11Z,- ExperimentsInHonesty closed issue as completed: [4261](https://github.com/hackforla/website/issues/4261#event-8949211505) at 2023-04-06 12:49 PM PDT -ExperimentsInHonesty,2023-04-06T20:21:10Z,- ExperimentsInHonesty commented on issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1499575444) at 2023-04-06 01:21 PM PDT -ExperimentsInHonesty,2023-04-06T20:37:20Z,- ExperimentsInHonesty commented on issue: [4357](https://github.com/hackforla/website/issues/4357#issuecomment-1499594375) at 2023-04-06 01:37 PM PDT -ExperimentsInHonesty,2023-04-06T20:43:04Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1499600016) at 2023-04-06 01:43 PM PDT -ExperimentsInHonesty,2023-04-06T21:00:50Z,- ExperimentsInHonesty commented on issue: [4335](https://github.com/hackforla/website/issues/4335#issuecomment-1499625967) at 2023-04-06 02:00 PM PDT -ExperimentsInHonesty,2023-04-09T07:19:01Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1501060907) at 2023-04-09 12:19 AM PDT -ExperimentsInHonesty,2023-04-09T16:57:29Z,- ExperimentsInHonesty opened issue: [4452](https://github.com/hackforla/website/issues/4452) at 2023-04-09 09:57 AM PDT -ExperimentsInHonesty,2023-04-12T15:53:44Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1505521858) at 2023-04-12 08:53 AM PDT -ExperimentsInHonesty,2023-04-12T15:57:32Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1505531408) at 2023-04-12 08:57 AM PDT -ExperimentsInHonesty,2023-04-12T15:59:31Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1505535910) at 2023-04-12 08:59 AM PDT -ExperimentsInHonesty,2023-04-13T18:16:57Z,- ExperimentsInHonesty commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1507419944) at 2023-04-13 11:16 AM PDT -ExperimentsInHonesty,2023-04-23T16:54:52Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1519109556) at 2023-04-23 09:54 AM PDT -ExperimentsInHonesty,2023-04-25T01:29:48Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1521032707) at 2023-04-24 06:29 PM PDT -ExperimentsInHonesty,2023-04-30T14:41:44Z,- ExperimentsInHonesty commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1529040949) at 2023-04-30 07:41 AM PDT -ExperimentsInHonesty,2023-04-30T14:54:48Z,- ExperimentsInHonesty commented on issue: [4557](https://github.com/hackforla/website/issues/4557#issuecomment-1529043522) at 2023-04-30 07:54 AM PDT -ExperimentsInHonesty,2023-04-30T15:34:11Z,- ExperimentsInHonesty commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1529055394) at 2023-04-30 08:34 AM PDT -ExperimentsInHonesty,2023-04-30T16:46:56Z,- ExperimentsInHonesty commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1529075067) at 2023-04-30 09:46 AM PDT -ExperimentsInHonesty,2023-04-30T16:50:29Z,- ExperimentsInHonesty commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1529075976) at 2023-04-30 09:50 AM PDT -ExperimentsInHonesty,2023-04-30T17:04:28Z,- ExperimentsInHonesty commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1529080237) at 2023-04-30 10:04 AM PDT -ExperimentsInHonesty,2023-04-30T17:57:11Z,- ExperimentsInHonesty commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1529097673) at 2023-04-30 10:57 AM PDT -ExperimentsInHonesty,2023-04-30T18:47:57Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1529113213) at 2023-04-30 11:47 AM PDT -ExperimentsInHonesty,2023-04-30T18:48:25Z,- ExperimentsInHonesty commented on issue: [4369](https://github.com/hackforla/website/issues/4369#issuecomment-1529113278) at 2023-04-30 11:48 AM PDT -ExperimentsInHonesty,2023-05-02T00:47:12Z,- ExperimentsInHonesty commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1530707266) at 2023-05-01 05:47 PM PDT -ExperimentsInHonesty,2023-05-07T16:07:31Z,- ExperimentsInHonesty commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1537479876) at 2023-05-07 09:07 AM PDT -ExperimentsInHonesty,2023-05-07T16:14:09Z,- ExperimentsInHonesty commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1537481644) at 2023-05-07 09:14 AM PDT -ExperimentsInHonesty,2023-05-07T16:20:34Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537483602) at 2023-05-07 09:20 AM PDT -ExperimentsInHonesty,2023-05-07T16:20:35Z,- ExperimentsInHonesty closed issue as completed: [4594](https://github.com/hackforla/website/issues/4594#event-9184569791) at 2023-05-07 09:20 AM PDT -ExperimentsInHonesty,2023-05-07T16:20:59Z,- ExperimentsInHonesty reopened issue: [4568](https://github.com/hackforla/website/issues/4568#event-9151268034) at 2023-05-07 09:20 AM PDT -ExperimentsInHonesty,2023-05-07T16:24:08Z,- ExperimentsInHonesty commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1537484511) at 2023-05-07 09:24 AM PDT -ExperimentsInHonesty,2023-05-07T16:40:05Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537488312) at 2023-05-07 09:40 AM PDT -ExperimentsInHonesty,2023-05-07T16:40:06Z,- ExperimentsInHonesty reopened issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537488312) at 2023-05-07 09:40 AM PDT -ExperimentsInHonesty,2023-05-07T16:49:04Z,- ExperimentsInHonesty commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1537490398) at 2023-05-07 09:49 AM PDT -ExperimentsInHonesty,2023-05-07T16:49:04Z,- ExperimentsInHonesty closed issue as completed: [4568](https://github.com/hackforla/website/issues/4568#event-9184606701) at 2023-05-07 09:49 AM PDT -ExperimentsInHonesty,2023-05-07T17:46:40Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1537502732) at 2023-05-07 10:46 AM PDT -ExperimentsInHonesty,2023-05-07T17:47:52Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1537502921) at 2023-05-07 10:47 AM PDT -ExperimentsInHonesty,2023-05-07T18:24:20Z,- ExperimentsInHonesty commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1537511149) at 2023-05-07 11:24 AM PDT -ExperimentsInHonesty,2023-05-07T19:06:14Z,- ExperimentsInHonesty commented on issue: [4577](https://github.com/hackforla/website/issues/4577#issuecomment-1537519148) at 2023-05-07 12:06 PM PDT -ExperimentsInHonesty,2023-05-07T19:12:49Z,- ExperimentsInHonesty commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1537520291) at 2023-05-07 12:12 PM PDT -ExperimentsInHonesty,2023-05-07T19:16:33Z,- ExperimentsInHonesty commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1537520892) at 2023-05-07 12:16 PM PDT -ExperimentsInHonesty,2023-05-07T19:28:01Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1537522872) at 2023-05-07 12:28 PM PDT -ExperimentsInHonesty,2023-05-07T20:24:00Z,- ExperimentsInHonesty opened issue: [4606](https://github.com/hackforla/website/issues/4606) at 2023-05-07 01:24 PM PDT -ExperimentsInHonesty,2023-05-07T20:27:00Z,- ExperimentsInHonesty commented on issue: [3934](https://github.com/hackforla/website/issues/3934#issuecomment-1537533579) at 2023-05-07 01:27 PM PDT -ExperimentsInHonesty,2023-05-07T21:24:44Z,- ExperimentsInHonesty commented on issue: [3934](https://github.com/hackforla/website/issues/3934#issuecomment-1537543909) at 2023-05-07 02:24 PM PDT -ExperimentsInHonesty,2023-05-08T02:14:43Z,- ExperimentsInHonesty opened issue: [4607](https://github.com/hackforla/website/issues/4607) at 2023-05-07 07:14 PM PDT -ExperimentsInHonesty,2023-05-08T04:00:27Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1537704857) at 2023-05-07 09:00 PM PDT -ExperimentsInHonesty,2023-05-09T00:30:33Z,- ExperimentsInHonesty commented on issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1539229664) at 2023-05-08 05:30 PM PDT -ExperimentsInHonesty,2023-05-09T00:47:48Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1539238424) at 2023-05-08 05:47 PM PDT -ExperimentsInHonesty,2023-05-14T03:51:13Z,- ExperimentsInHonesty commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1546800007) at 2023-05-13 08:51 PM PDT -ExperimentsInHonesty,2023-05-14T04:20:53Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1546803333) at 2023-05-13 09:20 PM PDT -ExperimentsInHonesty,2023-05-14T05:01:51Z,- ExperimentsInHonesty commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1546808261) at 2023-05-13 10:01 PM PDT -ExperimentsInHonesty,2023-05-14T05:28:38Z,- ExperimentsInHonesty commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1546811735) at 2023-05-13 10:28 PM PDT -ExperimentsInHonesty,2023-05-14T15:55:44Z,- ExperimentsInHonesty commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1546930217) at 2023-05-14 08:55 AM PDT -ExperimentsInHonesty,2023-05-14T15:57:39Z,- ExperimentsInHonesty commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1546930844) at 2023-05-14 08:57 AM PDT -ExperimentsInHonesty,2023-05-14T16:59:52Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1546946975) at 2023-05-14 09:59 AM PDT -ExperimentsInHonesty,2023-05-14T17:47:19Z,- ExperimentsInHonesty commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1546958629) at 2023-05-14 10:47 AM PDT -ExperimentsInHonesty,2023-05-14T18:00:17Z,- ExperimentsInHonesty commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1546961942) at 2023-05-14 11:00 AM PDT -ExperimentsInHonesty,2023-05-14T18:51:02Z,- ExperimentsInHonesty commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1546974791) at 2023-05-14 11:51 AM PDT -ExperimentsInHonesty,2023-05-14T18:55:29Z,- ExperimentsInHonesty commented on issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1546975471) at 2023-05-14 11:55 AM PDT -ExperimentsInHonesty,2023-05-14T19:26:07Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1546982001) at 2023-05-14 12:26 PM PDT -ExperimentsInHonesty,2023-05-14T22:33:31Z,- ExperimentsInHonesty commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1547015924) at 2023-05-14 03:33 PM PDT -ExperimentsInHonesty,2023-05-14T23:49:45Z,- ExperimentsInHonesty commented on issue: [1992](https://github.com/hackforla/website/issues/1992#issuecomment-1547032537) at 2023-05-14 04:49 PM PDT -ExperimentsInHonesty,2023-05-14T23:49:48Z,- ExperimentsInHonesty closed issue as completed: [1992](https://github.com/hackforla/website/issues/1992#event-9240947982) at 2023-05-14 04:49 PM PDT -ExperimentsInHonesty,2023-05-14T23:52:18Z,- ExperimentsInHonesty commented on issue: [4589](https://github.com/hackforla/website/issues/4589#issuecomment-1547033248) at 2023-05-14 04:52 PM PDT -ExperimentsInHonesty,2023-05-14T23:52:24Z,- ExperimentsInHonesty closed issue as completed: [4589](https://github.com/hackforla/website/issues/4589#event-9240952151) at 2023-05-14 04:52 PM PDT -ExperimentsInHonesty,2023-05-15T00:30:38Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-1547046658) at 2023-05-14 05:30 PM PDT -ExperimentsInHonesty,2023-05-15T00:33:14Z,- ExperimentsInHonesty commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1547047689) at 2023-05-14 05:33 PM PDT -ExperimentsInHonesty,2023-05-15T01:19:27Z,- ExperimentsInHonesty commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1547063903) at 2023-05-14 06:19 PM PDT -ExperimentsInHonesty,2023-05-15T01:28:28Z,- ExperimentsInHonesty commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1547068754) at 2023-05-14 06:28 PM PDT -ExperimentsInHonesty,2023-05-15T01:28:29Z,- ExperimentsInHonesty closed issue as completed: [4012](https://github.com/hackforla/website/issues/4012#event-9241187725) at 2023-05-14 06:28 PM PDT -ExperimentsInHonesty,2023-05-15T02:15:42Z,- ExperimentsInHonesty commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1547100517) at 2023-05-14 07:15 PM PDT -ExperimentsInHonesty,2023-05-15T02:23:05Z,- ExperimentsInHonesty commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1547104482) at 2023-05-14 07:23 PM PDT -ExperimentsInHonesty,2023-05-15T02:57:44Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1547120133) at 2023-05-14 07:57 PM PDT -ExperimentsInHonesty,2023-05-15T03:03:58Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1547125558) at 2023-05-14 08:03 PM PDT -ExperimentsInHonesty,2023-05-15T03:08:43Z,- ExperimentsInHonesty commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1547129609) at 2023-05-14 08:08 PM PDT -ExperimentsInHonesty,2023-05-15T03:10:39Z,- ExperimentsInHonesty commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1547131193) at 2023-05-14 08:10 PM PDT -ExperimentsInHonesty,2023-05-15T03:17:54Z,- ExperimentsInHonesty commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547135751) at 2023-05-14 08:17 PM PDT -ExperimentsInHonesty,2023-05-15T03:20:34Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1547137070) at 2023-05-14 08:20 PM PDT -ExperimentsInHonesty,2023-05-15T03:24:11Z,- ExperimentsInHonesty commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1547138979) at 2023-05-14 08:24 PM PDT -ExperimentsInHonesty,2023-05-15T03:27:42Z,- ExperimentsInHonesty commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1547140586) at 2023-05-14 08:27 PM PDT -ExperimentsInHonesty,2023-05-15T03:31:56Z,- ExperimentsInHonesty commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1547142489) at 2023-05-14 08:31 PM PDT -ExperimentsInHonesty,2023-05-15T15:02:29Z,- ExperimentsInHonesty commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1548037594) at 2023-05-15 08:02 AM PDT -ExperimentsInHonesty,2023-05-15T15:23:10Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1548073153) at 2023-05-15 08:23 AM PDT -ExperimentsInHonesty,2023-05-15T16:31:55Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1548182267) at 2023-05-15 09:31 AM PDT -ExperimentsInHonesty,2023-05-15T16:33:36Z,- ExperimentsInHonesty closed issue as completed: [4369](https://github.com/hackforla/website/issues/4369#event-9248752318) at 2023-05-15 09:33 AM PDT -ExperimentsInHonesty,2023-05-16T00:35:47Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1548798611) at 2023-05-15 05:35 PM PDT -ExperimentsInHonesty,2023-05-16T00:52:40Z,- ExperimentsInHonesty commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1548809729) at 2023-05-15 05:52 PM PDT -ExperimentsInHonesty,2023-05-16T01:19:36Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1548829750) at 2023-05-15 06:19 PM PDT -ExperimentsInHonesty,2023-05-16T01:25:27Z,- ExperimentsInHonesty commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1548832976) at 2023-05-15 06:25 PM PDT -ExperimentsInHonesty,2023-05-16T01:33:34Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1548837791) at 2023-05-15 06:33 PM PDT -ExperimentsInHonesty,2023-05-16T01:37:23Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1548840185) at 2023-05-15 06:37 PM PDT -ExperimentsInHonesty,2023-05-16T01:40:41Z,- ExperimentsInHonesty commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1548842383) at 2023-05-15 06:40 PM PDT -ExperimentsInHonesty,2023-05-16T01:40:49Z,- ExperimentsInHonesty closed issue as not planned: [3334](https://github.com/hackforla/website/issues/3334#event-9252471213) at 2023-05-15 06:40 PM PDT -ExperimentsInHonesty,2023-05-16T02:07:15Z,- ExperimentsInHonesty commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1548862779) at 2023-05-15 07:07 PM PDT -ExperimentsInHonesty,2023-05-17T22:18:29Z,- ExperimentsInHonesty opened issue: [4687](https://github.com/hackforla/website/issues/4687) at 2023-05-17 03:18 PM PDT -ExperimentsInHonesty,2023-05-21T18:01:51Z,- ExperimentsInHonesty commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1556242895) at 2023-05-21 11:01 AM PDT -ExperimentsInHonesty,2023-05-23T00:13:22Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1558248720) at 2023-05-22 05:13 PM PDT -ExperimentsInHonesty,2023-05-23T00:21:10Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1558260181) at 2023-05-22 05:21 PM PDT -ExperimentsInHonesty,2023-05-23T00:24:11Z,- ExperimentsInHonesty commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1558262605) at 2023-05-22 05:24 PM PDT -ExperimentsInHonesty,2023-05-23T00:51:40Z,- ExperimentsInHonesty commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1558290569) at 2023-05-22 05:51 PM PDT -ExperimentsInHonesty,2023-05-23T00:53:13Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1558291471) at 2023-05-22 05:53 PM PDT -ExperimentsInHonesty,2023-05-23T00:54:49Z,- ExperimentsInHonesty commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1558292332) at 2023-05-22 05:54 PM PDT -ExperimentsInHonesty,2023-05-23T01:06:58Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1558309191) at 2023-05-22 06:06 PM PDT -ExperimentsInHonesty,2023-05-23T01:13:04Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1558313276) at 2023-05-22 06:13 PM PDT -ExperimentsInHonesty,2023-05-23T01:24:51Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1558322101) at 2023-05-22 06:24 PM PDT -ExperimentsInHonesty,2023-05-23T01:30:07Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1558339257) at 2023-05-22 06:30 PM PDT -ExperimentsInHonesty,2023-05-28T17:13:44Z,- ExperimentsInHonesty commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1566203169) at 2023-05-28 10:13 AM PDT -ExperimentsInHonesty,2023-05-30T01:40:28Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1567654887) at 2023-05-29 06:40 PM PDT -ExperimentsInHonesty,2023-05-30T02:10:00Z,- ExperimentsInHonesty commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1567670460) at 2023-05-29 07:10 PM PDT -ExperimentsInHonesty,2023-05-30T02:13:10Z,- ExperimentsInHonesty commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1567672354) at 2023-05-29 07:13 PM PDT -ExperimentsInHonesty,2023-06-01T17:48:35Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1572524499) at 2023-06-01 10:48 AM PDT -ExperimentsInHonesty,2023-06-01T17:51:20Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1572527495) at 2023-06-01 10:51 AM PDT -ExperimentsInHonesty,2023-06-04T13:58:55Z,- ExperimentsInHonesty commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1575580469) at 2023-06-04 06:58 AM PDT -ExperimentsInHonesty,2023-06-04T14:04:45Z,- ExperimentsInHonesty commented on issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1575582340) at 2023-06-04 07:04 AM PDT -ExperimentsInHonesty,2023-06-04T15:40:20Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1575614815) at 2023-06-04 08:40 AM PDT -ExperimentsInHonesty,2023-06-04T15:57:00Z,- ExperimentsInHonesty opened issue: [4778](https://github.com/hackforla/website/issues/4778) at 2023-06-04 08:57 AM PDT -ExperimentsInHonesty,2023-06-04T16:18:22Z,- ExperimentsInHonesty assigned to issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1566235512) at 2023-06-04 09:18 AM PDT -ExperimentsInHonesty,2023-06-04T16:23:45Z,- ExperimentsInHonesty commented on issue: [4765](https://github.com/hackforla/website/issues/4765#issuecomment-1575629037) at 2023-06-04 09:23 AM PDT -ExperimentsInHonesty,2023-06-04T16:24:05Z,- ExperimentsInHonesty commented on issue: [4766](https://github.com/hackforla/website/issues/4766#issuecomment-1575629109) at 2023-06-04 09:24 AM PDT -ExperimentsInHonesty,2023-06-04T16:26:52Z,- ExperimentsInHonesty commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1575629839) at 2023-06-04 09:26 AM PDT -ExperimentsInHonesty,2023-06-04T16:31:36Z,- ExperimentsInHonesty commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1575631260) at 2023-06-04 09:31 AM PDT -ExperimentsInHonesty,2023-06-04T16:40:41Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1575633887) at 2023-06-04 09:40 AM PDT -ExperimentsInHonesty,2023-06-04T16:51:23Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575637126) at 2023-06-04 09:51 AM PDT -ExperimentsInHonesty,2023-06-04T18:06:43Z,- ExperimentsInHonesty commented on issue: [4770](https://github.com/hackforla/website/issues/4770#issuecomment-1575659941) at 2023-06-04 11:06 AM PDT -ExperimentsInHonesty,2023-06-04T18:36:36Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1575669216) at 2023-06-04 11:36 AM PDT -ExperimentsInHonesty,2023-06-04T18:49:38Z,- ExperimentsInHonesty commented on issue: [4707](https://github.com/hackforla/website/issues/4707#issuecomment-1575672350) at 2023-06-04 11:49 AM PDT -ExperimentsInHonesty,2023-06-04T18:50:04Z,- ExperimentsInHonesty closed issue as completed: [4707](https://github.com/hackforla/website/issues/4707#event-9425580388) at 2023-06-04 11:50 AM PDT -ExperimentsInHonesty,2023-06-04T18:50:15Z,- ExperimentsInHonesty closed issue as not planned: [4707](https://github.com/hackforla/website/issues/4707#event-9425580725) at 2023-06-04 11:50 AM PDT -ExperimentsInHonesty,2023-06-04T18:56:47Z,- ExperimentsInHonesty commented on issue: [4405](https://github.com/hackforla/website/issues/4405#issuecomment-1575674003) at 2023-06-04 11:56 AM PDT -ExperimentsInHonesty,2023-06-04T18:58:12Z,- ExperimentsInHonesty commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1575674721) at 2023-06-04 11:58 AM PDT -ExperimentsInHonesty,2023-06-04T19:14:38Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575679047) at 2023-06-04 12:14 PM PDT -ExperimentsInHonesty,2023-06-04T19:16:35Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575679729) at 2023-06-04 12:16 PM PDT -ExperimentsInHonesty,2023-06-04T19:47:37Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1575689404) at 2023-06-04 12:47 PM PDT -ExperimentsInHonesty,2023-06-04T19:47:37Z,- ExperimentsInHonesty closed issue as completed: [1686](https://github.com/hackforla/website/issues/1686#event-9425684837) at 2023-06-04 12:47 PM PDT -ExperimentsInHonesty,2023-06-04T21:40:36Z,- ExperimentsInHonesty commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575744162) at 2023-06-04 02:40 PM PDT -ExperimentsInHonesty,2023-06-04T21:58:48Z,- ExperimentsInHonesty commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575748515) at 2023-06-04 02:58 PM PDT -ExperimentsInHonesty,2023-06-04T22:11:52Z,- ExperimentsInHonesty commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575752838) at 2023-06-04 03:11 PM PDT -ExperimentsInHonesty,2023-06-06T00:50:42Z,- ExperimentsInHonesty commented on issue: [4785](https://github.com/hackforla/website/issues/4785#issuecomment-1577737413) at 2023-06-05 05:50 PM PDT -ExperimentsInHonesty,2023-06-06T01:34:30Z,- ExperimentsInHonesty commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1577763926) at 2023-06-05 06:34 PM PDT -ExperimentsInHonesty,2023-06-06T01:56:24Z,- ExperimentsInHonesty commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1577775606) at 2023-06-05 06:56 PM PDT -ExperimentsInHonesty,2023-06-11T15:42:55Z,- ExperimentsInHonesty commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1586218869) at 2023-06-11 08:42 AM PDT -ExperimentsInHonesty,2023-06-11T15:48:46Z,- ExperimentsInHonesty commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1586221219) at 2023-06-11 08:48 AM PDT -ExperimentsInHonesty,2023-06-11T15:58:33Z,- ExperimentsInHonesty commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1586226100) at 2023-06-11 08:58 AM PDT -ExperimentsInHonesty,2023-06-11T16:29:39Z,- ExperimentsInHonesty commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1586239364) at 2023-06-11 09:29 AM PDT -ExperimentsInHonesty,2023-06-11T16:47:54Z,- ExperimentsInHonesty commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1586244643) at 2023-06-11 09:47 AM PDT -ExperimentsInHonesty,2023-06-11T16:57:42Z,- ExperimentsInHonesty commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1586246785) at 2023-06-11 09:57 AM PDT -ExperimentsInHonesty,2023-06-11T17:06:25Z,- ExperimentsInHonesty submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1473762350) at 2023-06-11 10:06 AM PDT -ExperimentsInHonesty,2023-06-11T17:09:30Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1586250052) at 2023-06-11 10:09 AM PDT -ExperimentsInHonesty,2023-06-11T17:16:25Z,- ExperimentsInHonesty commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1586253209) at 2023-06-11 10:16 AM PDT -ExperimentsInHonesty,2023-06-11T17:42:35Z,- ExperimentsInHonesty commented on issue: [4795](https://github.com/hackforla/website/issues/4795#issuecomment-1586259122) at 2023-06-11 10:42 AM PDT -ExperimentsInHonesty,2023-06-11T17:43:10Z,- ExperimentsInHonesty closed issue as not planned: [4795](https://github.com/hackforla/website/issues/4795#event-9494943221) at 2023-06-11 10:43 AM PDT -ExperimentsInHonesty,2023-06-11T17:55:22Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586262316) at 2023-06-11 10:55 AM PDT -ExperimentsInHonesty,2023-06-11T18:53:28Z,- ExperimentsInHonesty commented on issue: [2740](https://github.com/hackforla/website/issues/2740#issuecomment-1586292383) at 2023-06-11 11:53 AM PDT -ExperimentsInHonesty,2023-06-11T18:59:59Z,- ExperimentsInHonesty commented on issue: [2740](https://github.com/hackforla/website/issues/2740#issuecomment-1586293788) at 2023-06-11 11:59 AM PDT -ExperimentsInHonesty,2023-06-13T00:10:05Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588275782) at 2023-06-12 05:10 PM PDT -ExperimentsInHonesty,2023-06-13T00:24:06Z,- ExperimentsInHonesty commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1588286233) at 2023-06-12 05:24 PM PDT -ExperimentsInHonesty,2023-06-13T01:29:47Z,- ExperimentsInHonesty commented on issue: [4704](https://github.com/hackforla/website/issues/4704#issuecomment-1588370872) at 2023-06-12 06:29 PM PDT -ExperimentsInHonesty,2023-06-18T16:05:33Z,- ExperimentsInHonesty commented on issue: [4782](https://github.com/hackforla/website/issues/4782#issuecomment-1596192894) at 2023-06-18 09:05 AM PDT -ExperimentsInHonesty,2023-06-18T16:09:07Z,- ExperimentsInHonesty commented on issue: [4784](https://github.com/hackforla/website/issues/4784#issuecomment-1596193602) at 2023-06-18 09:09 AM PDT -ExperimentsInHonesty,2023-06-18T16:58:06Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1596207225) at 2023-06-18 09:58 AM PDT -ExperimentsInHonesty,2023-06-18T17:10:46Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1596211325) at 2023-06-18 10:10 AM PDT -ExperimentsInHonesty,2023-06-18T18:50:31Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1596235976) at 2023-06-18 11:50 AM PDT -ExperimentsInHonesty,2023-06-20T01:11:32Z,- ExperimentsInHonesty closed issue as completed: [4781](https://github.com/hackforla/website/issues/4781#event-9573652706) at 2023-06-19 06:11 PM PDT -ExperimentsInHonesty,2023-06-22T13:57:24Z,- ExperimentsInHonesty opened issue: [4873](https://github.com/hackforla/website/issues/4873) at 2023-06-22 06:57 AM PDT -ExperimentsInHonesty,2023-06-22T13:57:47Z,- ExperimentsInHonesty assigned to issue: [4873](https://github.com/hackforla/website/issues/4873) at 2023-06-22 06:57 AM PDT -ExperimentsInHonesty,2023-06-23T17:17:52Z,- ExperimentsInHonesty assigned to issue: [4874](https://github.com/hackforla/website/issues/4874) at 2023-06-23 10:17 AM PDT -ExperimentsInHonesty,2023-06-25T16:12:17Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1606146438) at 2023-06-25 09:12 AM PDT -ExperimentsInHonesty,2023-06-25T16:51:54Z,- ExperimentsInHonesty commented on issue: [4874](https://github.com/hackforla/website/issues/4874#issuecomment-1606155521) at 2023-06-25 09:51 AM PDT -ExperimentsInHonesty,2023-06-25T16:51:58Z,- ExperimentsInHonesty closed issue as completed: [4874](https://github.com/hackforla/website/issues/4874#event-9630273655) at 2023-06-25 09:51 AM PDT -ExperimentsInHonesty,2023-06-25T16:54:45Z,- ExperimentsInHonesty closed issue as completed: [4873](https://github.com/hackforla/website/issues/4873#event-9630278392) at 2023-06-25 09:54 AM PDT -ExperimentsInHonesty,2023-06-26T23:51:00Z,- ExperimentsInHonesty commented on issue: [4857](https://github.com/hackforla/website/issues/4857#issuecomment-1608479810) at 2023-06-26 04:51 PM PDT -ExperimentsInHonesty,2023-06-26T23:51:00Z,- ExperimentsInHonesty closed issue as completed: [4857](https://github.com/hackforla/website/issues/4857#event-9645275525) at 2023-06-26 04:51 PM PDT -ExperimentsInHonesty,2023-06-27T00:15:27Z,- ExperimentsInHonesty commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1608512542) at 2023-06-26 05:15 PM PDT -ExperimentsInHonesty,2023-06-27T01:27:27Z,- ExperimentsInHonesty commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1608566987) at 2023-06-26 06:27 PM PDT -ExperimentsInHonesty,2023-06-27T01:39:39Z,- ExperimentsInHonesty commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1608575872) at 2023-06-26 06:39 PM PDT -ExperimentsInHonesty,2023-06-27T01:52:06Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1608583462) at 2023-06-26 06:52 PM PDT -ExperimentsInHonesty,2023-06-27T01:53:49Z,- ExperimentsInHonesty commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1608584916) at 2023-06-26 06:53 PM PDT -ExperimentsInHonesty,2023-06-27T01:56:44Z,- ExperimentsInHonesty commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1608587496) at 2023-06-26 06:56 PM PDT -ExperimentsInHonesty,2023-07-02T16:27:56Z,- ExperimentsInHonesty commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1616720980) at 2023-07-02 09:27 AM PDT -ExperimentsInHonesty,2023-07-02T16:28:45Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1616721949) at 2023-07-02 09:28 AM PDT -ExperimentsInHonesty,2023-07-02T16:28:45Z,- ExperimentsInHonesty reopened issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1616721949) at 2023-07-02 09:28 AM PDT -ExperimentsInHonesty,2023-07-02T16:44:41Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1616728149) at 2023-07-02 09:44 AM PDT -ExperimentsInHonesty,2023-07-02T16:54:28Z,- ExperimentsInHonesty commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1616730166) at 2023-07-02 09:54 AM PDT -ExperimentsInHonesty,2023-07-02T17:51:52Z,- ExperimentsInHonesty opened issue: [4907](https://github.com/hackforla/website/issues/4907) at 2023-07-02 10:51 AM PDT -ExperimentsInHonesty,2023-07-02T17:52:20Z,- ExperimentsInHonesty assigned to issue: [4907](https://github.com/hackforla/website/issues/4907) at 2023-07-02 10:52 AM PDT -ExperimentsInHonesty,2023-07-02T18:09:08Z,- ExperimentsInHonesty commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1616756533) at 2023-07-02 11:09 AM PDT -ExperimentsInHonesty,2023-07-02T18:09:50Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1616756649) at 2023-07-02 11:09 AM PDT -ExperimentsInHonesty,2023-07-02T18:09:51Z,- ExperimentsInHonesty closed issue as completed: [4407](https://github.com/hackforla/website/issues/4407#event-9700816351) at 2023-07-02 11:09 AM PDT -ExperimentsInHonesty,2023-07-04T00:59:58Z,- ExperimentsInHonesty commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1619312877) at 2023-07-03 05:59 PM PDT -ExperimentsInHonesty,2023-07-04T01:01:48Z,- ExperimentsInHonesty commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1619313846) at 2023-07-03 06:01 PM PDT -ExperimentsInHonesty,2023-07-04T01:47:45Z,- ExperimentsInHonesty commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1619343987) at 2023-07-03 06:47 PM PDT -ExperimentsInHonesty,2023-07-11T00:39:11Z,- ExperimentsInHonesty commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1629923279) at 2023-07-10 05:39 PM PDT -ExperimentsInHonesty,2023-07-11T00:43:32Z,- ExperimentsInHonesty opened issue: [4932](https://github.com/hackforla/website/issues/4932) at 2023-07-10 05:43 PM PDT -ExperimentsInHonesty,2023-07-11T00:43:32Z,- ExperimentsInHonesty assigned to issue: [4932](https://github.com/hackforla/website/issues/4932) at 2023-07-10 05:43 PM PDT -ExperimentsInHonesty,2023-07-12T02:32:36Z,- ExperimentsInHonesty commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1631760951) at 2023-07-11 07:32 PM PDT -ExperimentsInHonesty,2023-07-16T16:27:25Z,- ExperimentsInHonesty unassigned from issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2023-07-16 09:27 AM PDT -ExperimentsInHonesty,2023-07-16T16:29:10Z,- ExperimentsInHonesty unassigned from issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2023-07-16 09:29 AM PDT -ExperimentsInHonesty,2023-07-16T16:36:10Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1637134254) at 2023-07-16 09:36 AM PDT -ExperimentsInHonesty,2023-07-16T16:39:22Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1637134823) at 2023-07-16 09:39 AM PDT -ExperimentsInHonesty,2023-07-16T17:24:09Z,- ExperimentsInHonesty commented on issue: [3549](https://github.com/hackforla/website/issues/3549#issuecomment-1637144487) at 2023-07-16 10:24 AM PDT -ExperimentsInHonesty,2023-07-16T17:40:09Z,- ExperimentsInHonesty commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1637147606) at 2023-07-16 10:40 AM PDT -ExperimentsInHonesty,2023-07-16T17:40:11Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1637147615) at 2023-07-16 10:40 AM PDT -ExperimentsInHonesty,2023-07-16T17:47:29Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1637150223) at 2023-07-16 10:47 AM PDT -ExperimentsInHonesty,2023-07-18T00:10:26Z,- ExperimentsInHonesty commented on issue: [4938](https://github.com/hackforla/website/issues/4938#issuecomment-1639062515) at 2023-07-17 05:10 PM PDT -ExperimentsInHonesty,2023-07-18T00:10:33Z,- ExperimentsInHonesty closed issue as completed: [4938](https://github.com/hackforla/website/issues/4938#event-9843905541) at 2023-07-17 05:10 PM PDT -ExperimentsInHonesty,2023-07-18T00:10:39Z,- ExperimentsInHonesty closed issue as not planned: [4938](https://github.com/hackforla/website/issues/4938#event-9843906872) at 2023-07-17 05:10 PM PDT -ExperimentsInHonesty,2023-07-18T00:22:15Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1639077809) at 2023-07-17 05:22 PM PDT -ExperimentsInHonesty,2023-07-18T00:54:03Z,- ExperimentsInHonesty commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1639112562) at 2023-07-17 05:54 PM PDT -ExperimentsInHonesty,2023-07-23T16:35:29Z,- ExperimentsInHonesty commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1646884594) at 2023-07-23 09:35 AM PDT -ExperimentsInHonesty,2023-07-23T16:54:04Z,- ExperimentsInHonesty commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1646889592) at 2023-07-23 09:54 AM PDT -ExperimentsInHonesty,2023-07-23T18:54:29Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-1646931151) at 2023-07-23 11:54 AM PDT -ExperimentsInHonesty,2023-07-23T19:28:10Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1646940101) at 2023-07-23 12:28 PM PDT -ExperimentsInHonesty,2023-07-23T19:38:30Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-1646942709) at 2023-07-23 12:38 PM PDT -ExperimentsInHonesty,2023-07-25T00:55:34Z,- ExperimentsInHonesty commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1648812159) at 2023-07-24 05:55 PM PDT -ExperimentsInHonesty,2023-07-26T04:47:32Z,- ExperimentsInHonesty commented on issue: [5060](https://github.com/hackforla/website/issues/5060#issuecomment-1650974185) at 2023-07-25 09:47 PM PDT -ExperimentsInHonesty,2023-07-26T04:50:08Z,- ExperimentsInHonesty commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1650976056) at 2023-07-25 09:50 PM PDT -ExperimentsInHonesty,2023-07-26T22:20:46Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1652605476) at 2023-07-26 03:20 PM PDT -ExperimentsInHonesty,2023-07-26T22:53:02Z,- ExperimentsInHonesty opened issue: [5098](https://github.com/hackforla/website/issues/5098) at 2023-07-26 03:53 PM PDT -ExperimentsInHonesty,2023-07-26T22:56:42Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1652651437) at 2023-07-26 03:56 PM PDT -ExperimentsInHonesty,2023-07-26T22:56:42Z,- ExperimentsInHonesty closed issue as completed: [4151](https://github.com/hackforla/website/issues/4151#event-9929562731) at 2023-07-26 03:56 PM PDT -ExperimentsInHonesty,2023-07-30T15:33:06Z,- ExperimentsInHonesty commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1657202377) at 2023-07-30 08:33 AM PDT -ExperimentsInHonesty,2023-07-30T15:44:50Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1657204952) at 2023-07-30 08:44 AM PDT -ExperimentsInHonesty,2023-07-30T15:58:24Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1657207814) at 2023-07-30 08:58 AM PDT -ExperimentsInHonesty,2023-07-30T16:45:42Z,- ExperimentsInHonesty commented on issue: [4660](https://github.com/hackforla/website/issues/4660#issuecomment-1657217412) at 2023-07-30 09:45 AM PDT -ExperimentsInHonesty,2023-07-30T16:45:42Z,- ExperimentsInHonesty closed issue as completed: [4660](https://github.com/hackforla/website/issues/4660#event-9957066140) at 2023-07-30 09:45 AM PDT -ExperimentsInHonesty,2023-07-30T16:50:34Z,- ExperimentsInHonesty opened issue: [5115](https://github.com/hackforla/website/issues/5115) at 2023-07-30 09:50 AM PDT -ExperimentsInHonesty,2023-08-04T00:45:44Z,- ExperimentsInHonesty commented on issue: [4799](https://github.com/hackforla/website/issues/4799#issuecomment-1664818625) at 2023-08-03 05:45 PM PDT -ExperimentsInHonesty,2023-08-06T16:31:26Z,- ExperimentsInHonesty commented on issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666913046) at 2023-08-06 09:31 AM PDT -ExperimentsInHonesty,2023-08-06T16:34:07Z,- ExperimentsInHonesty commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1666913763) at 2023-08-06 09:34 AM PDT -ExperimentsInHonesty,2023-08-06T16:40:05Z,- ExperimentsInHonesty commented on issue: [5132](https://github.com/hackforla/website/issues/5132#issuecomment-1666915240) at 2023-08-06 09:40 AM PDT -ExperimentsInHonesty,2023-08-06T16:43:39Z,- ExperimentsInHonesty commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1666916314) at 2023-08-06 09:43 AM PDT -ExperimentsInHonesty,2023-08-06T16:44:59Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1666916643) at 2023-08-06 09:44 AM PDT -ExperimentsInHonesty,2023-08-06T16:54:02Z,- ExperimentsInHonesty opened issue: [5151](https://github.com/hackforla/website/issues/5151) at 2023-08-06 09:54 AM PDT -ExperimentsInHonesty,2023-08-06T18:50:26Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1666943325) at 2023-08-06 11:50 AM PDT -ExperimentsInHonesty,2023-08-07T02:18:47Z,- ExperimentsInHonesty commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1667089040) at 2023-08-06 07:18 PM PDT -ExperimentsInHonesty,2023-08-08T00:26:56Z,- ExperimentsInHonesty closed issue as completed: [3830](https://github.com/hackforla/website/issues/3830#event-10029720265) at 2023-08-07 05:26 PM PDT -ExperimentsInHonesty,2023-08-08T00:47:01Z,- ExperimentsInHonesty commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1668751998) at 2023-08-07 05:47 PM PDT -ExperimentsInHonesty,2023-08-08T00:57:01Z,- ExperimentsInHonesty commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1668757958) at 2023-08-07 05:57 PM PDT -ExperimentsInHonesty,2023-08-09T15:28:18Z,- ExperimentsInHonesty opened issue: [5167](https://github.com/hackforla/website/issues/5167) at 2023-08-09 08:28 AM PDT -ExperimentsInHonesty,2023-08-09T15:47:39Z,- ExperimentsInHonesty commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1671661728) at 2023-08-09 08:47 AM PDT -ExperimentsInHonesty,2023-08-13T16:55:14Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1676411860) at 2023-08-13 09:55 AM PDT -ExperimentsInHonesty,2023-08-13T19:10:10Z,- ExperimentsInHonesty commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1676439366) at 2023-08-13 12:10 PM PDT -ExperimentsInHonesty,2023-08-13T19:17:40Z,- ExperimentsInHonesty commented on issue: [4805](https://github.com/hackforla/website/issues/4805#issuecomment-1676440789) at 2023-08-13 12:17 PM PDT -ExperimentsInHonesty,2023-08-13T19:20:05Z,- ExperimentsInHonesty commented on issue: [4913](https://github.com/hackforla/website/issues/4913#issuecomment-1676441392) at 2023-08-13 12:20 PM PDT -ExperimentsInHonesty,2023-08-13T19:24:40Z,- ExperimentsInHonesty commented on issue: [4800](https://github.com/hackforla/website/issues/4800#issuecomment-1676442480) at 2023-08-13 12:24 PM PDT -ExperimentsInHonesty,2023-08-13T19:32:14Z,- ExperimentsInHonesty commented on issue: [4807](https://github.com/hackforla/website/issues/4807#issuecomment-1676444067) at 2023-08-13 12:32 PM PDT -ExperimentsInHonesty,2023-08-13T19:35:04Z,- ExperimentsInHonesty commented on issue: [4806](https://github.com/hackforla/website/issues/4806#issuecomment-1676444558) at 2023-08-13 12:35 PM PDT -ExperimentsInHonesty,2023-08-13T19:37:28Z,- ExperimentsInHonesty commented on issue: [4798](https://github.com/hackforla/website/issues/4798#issuecomment-1676445018) at 2023-08-13 12:37 PM PDT -ExperimentsInHonesty,2023-08-13T19:43:46Z,- ExperimentsInHonesty commented on issue: [4813](https://github.com/hackforla/website/issues/4813#issuecomment-1676446208) at 2023-08-13 12:43 PM PDT -ExperimentsInHonesty,2023-08-13T19:48:44Z,- ExperimentsInHonesty commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1676447353) at 2023-08-13 12:48 PM PDT -ExperimentsInHonesty,2023-08-13T19:48:54Z,- ExperimentsInHonesty commented on issue: [4924](https://github.com/hackforla/website/issues/4924#issuecomment-1676447392) at 2023-08-13 12:48 PM PDT -ExperimentsInHonesty,2023-08-13T19:49:40Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1676447544) at 2023-08-13 12:49 PM PDT -ExperimentsInHonesty,2023-08-13T19:53:14Z,- ExperimentsInHonesty commented on issue: [4939](https://github.com/hackforla/website/issues/4939#issuecomment-1676448291) at 2023-08-13 12:53 PM PDT -ExperimentsInHonesty,2023-08-13T20:37:20Z,- ExperimentsInHonesty commented on issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1676457241) at 2023-08-13 01:37 PM PDT -ExperimentsInHonesty,2023-08-13T20:37:22Z,- ExperimentsInHonesty reopened issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1676457241) at 2023-08-13 01:37 PM PDT -ExperimentsInHonesty,2023-08-13T21:28:26Z,- ExperimentsInHonesty commented on issue: [4484](https://github.com/hackforla/website/issues/4484#issuecomment-1676467250) at 2023-08-13 02:28 PM PDT -ExperimentsInHonesty,2023-08-13T21:36:09Z,- ExperimentsInHonesty commented on issue: [4480](https://github.com/hackforla/website/issues/4480#issuecomment-1676468790) at 2023-08-13 02:36 PM PDT -ExperimentsInHonesty,2023-08-13T21:44:06Z,- ExperimentsInHonesty commented on issue: [4914](https://github.com/hackforla/website/issues/4914#issuecomment-1676470225) at 2023-08-13 02:44 PM PDT -ExperimentsInHonesty,2023-08-13T22:52:36Z,- ExperimentsInHonesty opened issue: [5195](https://github.com/hackforla/website/issues/5195) at 2023-08-13 03:52 PM PDT -ExperimentsInHonesty,2023-08-13T23:16:50Z,- ExperimentsInHonesty commented on issue: [4895](https://github.com/hackforla/website/issues/4895#issuecomment-1676490918) at 2023-08-13 04:16 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:06Z,- ExperimentsInHonesty commented on issue: [4894](https://github.com/hackforla/website/issues/4894#issuecomment-1676491182) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:18Z,- ExperimentsInHonesty commented on issue: [4893](https://github.com/hackforla/website/issues/4893#issuecomment-1676491229) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:26Z,- ExperimentsInHonesty commented on issue: [4892](https://github.com/hackforla/website/issues/4892#issuecomment-1676491250) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:49Z,- ExperimentsInHonesty commented on issue: [4891](https://github.com/hackforla/website/issues/4891#issuecomment-1676491320) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:03Z,- ExperimentsInHonesty commented on issue: [4779](https://github.com/hackforla/website/issues/4779#issuecomment-1676491365) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:14Z,- ExperimentsInHonesty commented on issue: [4797](https://github.com/hackforla/website/issues/4797#issuecomment-1676491408) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:38Z,- ExperimentsInHonesty commented on issue: [4766](https://github.com/hackforla/website/issues/4766#issuecomment-1676491485) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:54Z,- ExperimentsInHonesty commented on issue: [4765](https://github.com/hackforla/website/issues/4765#issuecomment-1676491545) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:33:05Z,- ExperimentsInHonesty commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1676495117) at 2023-08-13 04:33 PM PDT -ExperimentsInHonesty,2023-08-27T17:13:47Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1694717822) at 2023-08-27 10:13 AM PDT -ExperimentsInHonesty,2023-08-27T17:57:33Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1694726155) at 2023-08-27 10:57 AM PDT -ExperimentsInHonesty,2023-08-27T18:06:39Z,- ExperimentsInHonesty commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1694727875) at 2023-08-27 11:06 AM PDT -ExperimentsInHonesty,2023-09-01T18:38:22Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1703178647) at 2023-09-01 11:38 AM PDT -ExperimentsInHonesty,2023-09-01T18:46:03Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1703186729) at 2023-09-01 11:46 AM PDT -ExperimentsInHonesty,2023-09-01T19:24:33Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1703227282) at 2023-09-01 12:24 PM PDT -ExperimentsInHonesty,2023-09-05T19:33:46Z,- ExperimentsInHonesty commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1707202389) at 2023-09-05 12:33 PM PDT -ExperimentsInHonesty,2023-09-05T20:00:21Z,- ExperimentsInHonesty commented on issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1707233483) at 2023-09-05 01:00 PM PDT -ExperimentsInHonesty,2023-09-05T20:08:17Z,- ExperimentsInHonesty commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1707242755) at 2023-09-05 01:08 PM PDT -ExperimentsInHonesty,2023-09-05T20:12:28Z,- ExperimentsInHonesty commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1707248855) at 2023-09-05 01:12 PM PDT -ExperimentsInHonesty,2023-09-05T20:23:32Z,- ExperimentsInHonesty commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1707261592) at 2023-09-05 01:23 PM PDT -ExperimentsInHonesty,2023-09-05T20:25:41Z,- ExperimentsInHonesty commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1707263980) at 2023-09-05 01:25 PM PDT -ExperimentsInHonesty,2023-09-05T20:45:42Z,- ExperimentsInHonesty commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1707288362) at 2023-09-05 01:45 PM PDT -ExperimentsInHonesty,2023-09-05T20:51:15Z,- ExperimentsInHonesty commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1707294204) at 2023-09-05 01:51 PM PDT -ExperimentsInHonesty,2023-09-05T20:56:23Z,- ExperimentsInHonesty commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1707299675) at 2023-09-05 01:56 PM PDT -ExperimentsInHonesty,2023-09-10T17:15:30Z,- ExperimentsInHonesty commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1712882377) at 2023-09-10 10:15 AM PDT -ExperimentsInHonesty,2023-09-10T17:16:49Z,- ExperimentsInHonesty commented on issue: [5177](https://github.com/hackforla/website/issues/5177#issuecomment-1712882689) at 2023-09-10 10:16 AM PDT -ExperimentsInHonesty,2023-09-10T17:17:07Z,- ExperimentsInHonesty commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1712882887) at 2023-09-10 10:17 AM PDT -ExperimentsInHonesty,2023-09-10T18:00:17Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1712898192) at 2023-09-10 11:00 AM PDT -ExperimentsInHonesty,2023-09-10T18:04:58Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1712899041) at 2023-09-10 11:04 AM PDT -ExperimentsInHonesty,2023-09-17T18:01:36Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1722531668) at 2023-09-17 11:01 AM PDT -ExperimentsInHonesty,2023-09-17T18:05:32Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1722532412) at 2023-09-17 11:05 AM PDT -ExperimentsInHonesty,2023-09-17T18:05:33Z,- ExperimentsInHonesty closed issue as completed: [3139](https://github.com/hackforla/website/issues/3139#event-10391768930) at 2023-09-17 11:05 AM PDT -ExperimentsInHonesty,2023-09-17T18:28:36Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1722536912) at 2023-09-17 11:28 AM PDT -ExperimentsInHonesty,2023-09-24T16:23:21Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1732612849) at 2023-09-24 09:23 AM PDT -ExperimentsInHonesty,2023-09-24T16:25:39Z,- ExperimentsInHonesty commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1732613359) at 2023-09-24 09:25 AM PDT -ExperimentsInHonesty,2023-09-24T16:26:03Z,- ExperimentsInHonesty commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1732613445) at 2023-09-24 09:26 AM PDT -ExperimentsInHonesty,2023-09-24T16:51:43Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1732618558) at 2023-09-24 09:51 AM PDT -ExperimentsInHonesty,2023-09-26T00:36:53Z,- ExperimentsInHonesty commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1734650107) at 2023-09-25 05:36 PM PDT -ExperimentsInHonesty,2023-09-26T00:48:06Z,- ExperimentsInHonesty commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1734661979) at 2023-09-25 05:48 PM PDT -ExperimentsInHonesty,2023-09-26T01:15:28Z,- ExperimentsInHonesty commented on issue: [5325](https://github.com/hackforla/website/issues/5325#issuecomment-1734683557) at 2023-09-25 06:15 PM PDT -ExperimentsInHonesty,2023-09-26T01:15:28Z,- ExperimentsInHonesty closed issue as completed: [5325](https://github.com/hackforla/website/issues/5325#event-10468910535) at 2023-09-25 06:15 PM PDT -ExperimentsInHonesty,2023-09-26T15:54:28Z,- ExperimentsInHonesty opened issue: [5592](https://github.com/hackforla/website/issues/5592) at 2023-09-26 08:54 AM PDT -ExperimentsInHonesty,2023-09-26T15:56:08Z,- ExperimentsInHonesty assigned to issue: [5592](https://github.com/hackforla/website/issues/5592) at 2023-09-26 08:56 AM PDT -ExperimentsInHonesty,2023-10-01T16:12:34Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1742127472) at 2023-10-01 09:12 AM PDT -ExperimentsInHonesty,2023-10-01T16:27:43Z,- ExperimentsInHonesty commented on issue: [5639](https://github.com/hackforla/website/issues/5639#issuecomment-1742131119) at 2023-10-01 09:27 AM PDT -ExperimentsInHonesty,2023-10-01T17:53:22Z,- ExperimentsInHonesty commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1742152551) at 2023-10-01 10:53 AM PDT -ExperimentsInHonesty,2023-10-01T18:06:19Z,- ExperimentsInHonesty commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1742155759) at 2023-10-01 11:06 AM PDT -ExperimentsInHonesty,2023-10-02T22:55:35Z,- ExperimentsInHonesty commented on issue: [5165](https://github.com/hackforla/website/issues/5165#issuecomment-1743883857) at 2023-10-02 03:55 PM PDT -ExperimentsInHonesty,2023-10-02T23:09:46Z,- ExperimentsInHonesty commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1743898049) at 2023-10-02 04:09 PM PDT -ExperimentsInHonesty,2023-10-02T23:13:16Z,- ExperimentsInHonesty commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1743900894) at 2023-10-02 04:13 PM PDT -ExperimentsInHonesty,2023-10-02T23:52:51Z,- ExperimentsInHonesty commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1743934323) at 2023-10-02 04:52 PM PDT -ExperimentsInHonesty,2023-10-03T14:48:59Z,- ExperimentsInHonesty commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1745138050) at 2023-10-03 07:48 AM PDT -ExperimentsInHonesty,2023-10-08T16:22:17Z,- ExperimentsInHonesty commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1752097750) at 2023-10-08 09:22 AM PDT -ExperimentsInHonesty,2023-10-08T16:22:17Z,- ExperimentsInHonesty closed issue as completed: [4623](https://github.com/hackforla/website/issues/4623#event-10584530548) at 2023-10-08 09:22 AM PDT -ExperimentsInHonesty,2023-10-08T16:33:07Z,- ExperimentsInHonesty commented on issue: [4649](https://github.com/hackforla/website/issues/4649#issuecomment-1752100101) at 2023-10-08 09:33 AM PDT -ExperimentsInHonesty,2023-10-08T16:33:10Z,- ExperimentsInHonesty closed issue as completed: [4649](https://github.com/hackforla/website/issues/4649#event-10584578258) at 2023-10-08 09:33 AM PDT -ExperimentsInHonesty,2023-10-08T16:38:12Z,- ExperimentsInHonesty commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1752101167) at 2023-10-08 09:38 AM PDT -ExperimentsInHonesty,2023-10-08T16:57:45Z,- ExperimentsInHonesty commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1752105078) at 2023-10-08 09:57 AM PDT -ExperimentsInHonesty,2023-10-08T17:03:09Z,- ExperimentsInHonesty opened issue: [5677](https://github.com/hackforla/website/issues/5677) at 2023-10-08 10:03 AM PDT -ExperimentsInHonesty,2023-10-10T01:09:44Z,- ExperimentsInHonesty commented on issue: [4901](https://github.com/hackforla/website/issues/4901#issuecomment-1754153598) at 2023-10-09 06:09 PM PDT -ExperimentsInHonesty,2023-10-10T01:11:23Z,- ExperimentsInHonesty commented on issue: [4901](https://github.com/hackforla/website/issues/4901#issuecomment-1754154569) at 2023-10-09 06:11 PM PDT -ExperimentsInHonesty,2023-10-10T01:30:13Z,- ExperimentsInHonesty closed issue as completed: [4918](https://github.com/hackforla/website/issues/4918#event-10597549015) at 2023-10-09 06:30 PM PDT -ExperimentsInHonesty,2023-10-10T01:34:02Z,- ExperimentsInHonesty commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1754168019) at 2023-10-09 06:34 PM PDT -ExperimentsInHonesty,2023-10-10T01:52:10Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1754194788) at 2023-10-09 06:52 PM PDT -ExperimentsInHonesty,2023-10-10T01:54:04Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1754197048) at 2023-10-09 06:54 PM PDT -ExperimentsInHonesty,2023-10-10T01:56:52Z,- ExperimentsInHonesty commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1754200066) at 2023-10-09 06:56 PM PDT -ExperimentsInHonesty,2023-10-10T01:56:52Z,- ExperimentsInHonesty closed issue as completed: [4562](https://github.com/hackforla/website/issues/4562#event-10597696534) at 2023-10-09 06:56 PM PDT -ExperimentsInHonesty,2023-10-10T01:57:46Z,- ExperimentsInHonesty commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1754200941) at 2023-10-09 06:57 PM PDT -ExperimentsInHonesty,2023-10-17T00:06:31Z,- ExperimentsInHonesty commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1765453946) at 2023-10-16 05:06 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:39Z,- ExperimentsInHonesty commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1765459570) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:39Z,- ExperimentsInHonesty closed issue as completed: [2498](https://github.com/hackforla/website/issues/2498#event-10671823045) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:53Z,- ExperimentsInHonesty commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1765459747) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:54Z,- ExperimentsInHonesty closed issue as completed: [3040](https://github.com/hackforla/website/issues/3040#event-10671824295) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:36:41Z,- ExperimentsInHonesty commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1765476348) at 2023-10-16 05:36 PM PDT -ExperimentsInHonesty,2023-10-17T00:56:02Z,- ExperimentsInHonesty commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1765488579) at 2023-10-16 05:56 PM PDT -ExperimentsInHonesty,2023-10-20T15:04:48Z,- ExperimentsInHonesty opened issue: [5743](https://github.com/hackforla/website/issues/5743) at 2023-10-20 08:04 AM PDT -ExperimentsInHonesty,2023-10-20T15:08:20Z,- ExperimentsInHonesty commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1772919665) at 2023-10-20 08:08 AM PDT -ExperimentsInHonesty,2023-10-22T17:45:09Z,- ExperimentsInHonesty opened issue: [5758](https://github.com/hackforla/website/issues/5758) at 2023-10-22 10:45 AM PDT -ExperimentsInHonesty,2023-10-22T18:03:27Z,- ExperimentsInHonesty commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1774159530) at 2023-10-22 11:03 AM PDT -ExperimentsInHonesty,2023-10-22T18:08:13Z,- ExperimentsInHonesty commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1774160739) at 2023-10-22 11:08 AM PDT -ExperimentsInHonesty,2023-10-24T01:12:11Z,- ExperimentsInHonesty commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1776306588) at 2023-10-23 06:12 PM PDT -ExperimentsInHonesty,2023-10-24T01:15:06Z,- ExperimentsInHonesty reopened issue: [5747](https://github.com/hackforla/website/issues/5747#event-10733084482) at 2023-10-23 06:15 PM PDT -ExperimentsInHonesty,2023-10-24T01:15:23Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-1776308841) at 2023-10-23 06:15 PM PDT -ExperimentsInHonesty,2023-10-24T01:53:40Z,- ExperimentsInHonesty commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1776360465) at 2023-10-23 06:53 PM PDT -ExperimentsInHonesty,2023-10-24T03:10:27Z,- ExperimentsInHonesty commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1776430622) at 2023-10-23 08:10 PM PDT -ExperimentsInHonesty,2023-10-29T16:39:48Z,- ExperimentsInHonesty commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1784162359) at 2023-10-29 09:39 AM PDT -ExperimentsInHonesty,2023-10-29T16:45:52Z,- ExperimentsInHonesty commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1784164013) at 2023-10-29 09:45 AM PDT -ExperimentsInHonesty,2023-10-31T01:40:50Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786302078) at 2023-10-30 06:40 PM PDT -ExperimentsInHonesty,2023-10-31T01:41:52Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786302732) at 2023-10-30 06:41 PM PDT -ExperimentsInHonesty,2023-10-31T01:42:36Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786303203) at 2023-10-30 06:42 PM PDT -ExperimentsInHonesty,2023-10-31T01:52:52Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786311641) at 2023-10-30 06:52 PM PDT -ExperimentsInHonesty,2023-10-31T01:57:37Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786314988) at 2023-10-30 06:57 PM PDT -ExperimentsInHonesty,2023-10-31T01:57:46Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786315086) at 2023-10-30 06:57 PM PDT -ExperimentsInHonesty,2023-10-31T02:28:33Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786338632) at 2023-10-30 07:28 PM PDT -ExperimentsInHonesty,2023-11-03T16:51:41Z,- ExperimentsInHonesty commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1792799986) at 2023-11-03 09:51 AM PDT -ExperimentsInHonesty,2023-11-03T16:55:26Z,- ExperimentsInHonesty commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1792805332) at 2023-11-03 09:55 AM PDT -ExperimentsInHonesty,2023-11-03T17:00:17Z,- ExperimentsInHonesty commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1792812866) at 2023-11-03 10:00 AM PDT -ExperimentsInHonesty,2023-11-03T17:14:23Z,- ExperimentsInHonesty commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1792833226) at 2023-11-03 10:14 AM PDT -ExperimentsInHonesty,2023-11-03T17:29:40Z,- ExperimentsInHonesty commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1792855194) at 2023-11-03 10:29 AM PDT -ExperimentsInHonesty,2023-11-03T17:44:06Z,- ExperimentsInHonesty commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1792874928) at 2023-11-03 10:44 AM PDT -ExperimentsInHonesty,2023-11-03T18:13:19Z,- ExperimentsInHonesty commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792915165) at 2023-11-03 11:13 AM PDT -ExperimentsInHonesty,2023-11-03T18:22:47Z,- ExperimentsInHonesty commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1792930599) at 2023-11-03 11:22 AM PDT -ExperimentsInHonesty,2023-11-06T18:30:12Z,- ExperimentsInHonesty commented on issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1795855938) at 2023-11-06 10:30 AM PST -ExperimentsInHonesty,2023-11-06T18:34:09Z,- ExperimentsInHonesty commented on issue: [5696](https://github.com/hackforla/website/issues/5696#issuecomment-1795881435) at 2023-11-06 10:34 AM PST -ExperimentsInHonesty,2023-11-06T18:44:30Z,- ExperimentsInHonesty commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1795909848) at 2023-11-06 10:44 AM PST -ExperimentsInHonesty,2023-11-06T20:00:55Z,- ExperimentsInHonesty commented on issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1796293621) at 2023-11-06 12:00 PM PST -ExperimentsInHonesty,2023-11-06T21:02:53Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1796429136) at 2023-11-06 01:02 PM PST -ExperimentsInHonesty,2023-11-06T21:07:16Z,- ExperimentsInHonesty commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-1796454453) at 2023-11-06 01:07 PM PST -ExperimentsInHonesty,2023-11-06T21:31:34Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1796524281) at 2023-11-06 01:31 PM PST -ExperimentsInHonesty,2023-11-07T02:34:56Z,- ExperimentsInHonesty commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1797317918) at 2023-11-06 06:34 PM PST -ExperimentsInHonesty,2023-11-07T22:58:51Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1800335792) at 2023-11-07 02:58 PM PST -ExperimentsInHonesty,2023-11-07T23:24:27Z,- ExperimentsInHonesty commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1800404637) at 2023-11-07 03:24 PM PST -ExperimentsInHonesty,2023-11-07T23:56:08Z,- ExperimentsInHonesty commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1800466574) at 2023-11-07 03:56 PM PST -ExperimentsInHonesty,2023-11-08T00:08:28Z,- ExperimentsInHonesty commented on issue: [4368](https://github.com/hackforla/website/issues/4368#issuecomment-1800617590) at 2023-11-07 04:08 PM PST -ExperimentsInHonesty,2023-11-08T00:15:53Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1800686279) at 2023-11-07 04:15 PM PST -ExperimentsInHonesty,2023-11-08T00:38:09Z,- ExperimentsInHonesty commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1800747526) at 2023-11-07 04:38 PM PST -ExperimentsInHonesty,2023-11-08T00:47:44Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1800802546) at 2023-11-07 04:47 PM PST -ExperimentsInHonesty,2023-11-08T00:55:40Z,- ExperimentsInHonesty commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-1800822538) at 2023-11-07 04:55 PM PST -ExperimentsInHonesty,2023-11-08T00:57:24Z,- ExperimentsInHonesty commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-1800824630) at 2023-11-07 04:57 PM PST -ExperimentsInHonesty,2023-11-08T01:31:28Z,- ExperimentsInHonesty commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1800859608) at 2023-11-07 05:31 PM PST -ExperimentsInHonesty,2023-11-08T01:53:24Z,- ExperimentsInHonesty commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1800878523) at 2023-11-07 05:53 PM PST -ExperimentsInHonesty,2023-11-08T02:33:23Z,- ExperimentsInHonesty commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1800912954) at 2023-11-07 06:33 PM PST -ExperimentsInHonesty,2023-11-09T18:45:36Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739568) at 2023-11-09 10:45 AM PST -ExperimentsInHonesty,2023-11-12T17:26:26Z,- ExperimentsInHonesty commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1807189654) at 2023-11-12 09:26 AM PST -ExperimentsInHonesty,2023-11-14T01:08:35Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1809381162) at 2023-11-13 05:08 PM PST -ExperimentsInHonesty,2023-11-14T01:38:14Z,- ExperimentsInHonesty commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-1809402458) at 2023-11-13 05:38 PM PST -ExperimentsInHonesty,2023-11-14T02:12:58Z,- ExperimentsInHonesty commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1809431319) at 2023-11-13 06:12 PM PST -ExperimentsInHonesty,2023-11-14T02:37:41Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-1809452564) at 2023-11-13 06:37 PM PST -ExperimentsInHonesty,2023-11-14T02:50:39Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1809462592) at 2023-11-13 06:50 PM PST -ExperimentsInHonesty,2023-11-17T21:11:12Z,- ExperimentsInHonesty opened issue: [5919](https://github.com/hackforla/website/issues/5919) at 2023-11-17 01:11 PM PST -ExperimentsInHonesty,2023-11-17T21:13:56Z,- ExperimentsInHonesty commented on issue: [5855](https://github.com/hackforla/website/issues/5855#issuecomment-1817113975) at 2023-11-17 01:13 PM PST -ExperimentsInHonesty,2023-11-17T21:15:08Z,- ExperimentsInHonesty commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1817115171) at 2023-11-17 01:15 PM PST -ExperimentsInHonesty,2023-11-19T16:37:42Z,- ExperimentsInHonesty commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1817907972) at 2023-11-19 08:37 AM PST -ExperimentsInHonesty,2023-11-19T18:49:35Z,- ExperimentsInHonesty commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1817944117) at 2023-11-19 10:49 AM PST -ExperimentsInHonesty,2023-11-20T01:52:17Z,- ExperimentsInHonesty commented on issue: [5921](https://github.com/hackforla/website/issues/5921#issuecomment-1818089692) at 2023-11-19 05:52 PM PST -ExperimentsInHonesty,2023-11-20T22:04:23Z,- ExperimentsInHonesty commented on issue: [5777](https://github.com/hackforla/website/issues/5777#issuecomment-1819878149) at 2023-11-20 02:04 PM PST -ExperimentsInHonesty,2023-11-20T22:15:37Z,- ExperimentsInHonesty commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1819891873) at 2023-11-20 02:15 PM PST -ExperimentsInHonesty,2023-11-21T02:21:44Z,- ExperimentsInHonesty commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1820109653) at 2023-11-20 06:21 PM PST -ExperimentsInHonesty,2023-11-24T21:17:56Z,- ExperimentsInHonesty commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1826089811) at 2023-11-24 01:17 PM PST -ExperimentsInHonesty,2023-11-28T01:15:43Z,- ExperimentsInHonesty commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1828906348) at 2023-11-27 05:15 PM PST -ExperimentsInHonesty,2023-11-28T01:24:41Z,- ExperimentsInHonesty commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1828913065) at 2023-11-27 05:24 PM PST -ExperimentsInHonesty,2023-11-28T01:30:12Z,- ExperimentsInHonesty commented on issue: [5007](https://github.com/hackforla/website/issues/5007#issuecomment-1828917368) at 2023-11-27 05:30 PM PST -ExperimentsInHonesty,2023-11-28T01:38:22Z,- ExperimentsInHonesty commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1828923509) at 2023-11-27 05:38 PM PST -ExperimentsInHonesty,2023-11-28T01:57:26Z,- ExperimentsInHonesty commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1828938541) at 2023-11-27 05:57 PM PST -ExperimentsInHonesty,2023-11-28T02:31:31Z,- ExperimentsInHonesty closed issue as completed: [4907](https://github.com/hackforla/website/issues/4907#event-11078049074) at 2023-11-27 06:31 PM PST -ExperimentsInHonesty,2023-11-28T02:35:50Z,- ExperimentsInHonesty closed issue as completed: [4492](https://github.com/hackforla/website/issues/4492#event-11078071237) at 2023-11-27 06:35 PM PST -ExperimentsInHonesty,2023-12-01T15:41:06Z,- ExperimentsInHonesty commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1836326761) at 2023-12-01 07:41 AM PST -ExperimentsInHonesty,2024-01-01T00:45:51Z,- ExperimentsInHonesty commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1873075118) at 2023-12-31 04:45 PM PST -ExperimentsInHonesty,2024-01-01T23:11:02Z,- ExperimentsInHonesty commented on issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1873518510) at 2024-01-01 03:11 PM PST -ExperimentsInHonesty,2024-01-03T23:48:42Z,- ExperimentsInHonesty opened issue: [6058](https://github.com/hackforla/website/issues/6058) at 2024-01-03 03:48 PM PST -ExperimentsInHonesty,2024-01-03T23:53:32Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1876123987) at 2024-01-03 03:53 PM PST -ExperimentsInHonesty,2024-01-07T18:44:30Z,- ExperimentsInHonesty commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1880139107) at 2024-01-07 10:44 AM PST -ExperimentsInHonesty,2024-01-16T02:31:58Z,- ExperimentsInHonesty commented on issue: [6114](https://github.com/hackforla/website/issues/6114#issuecomment-1892982310) at 2024-01-15 06:31 PM PST -ExperimentsInHonesty,2024-01-17T21:43:35Z,- ExperimentsInHonesty commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1896906256) at 2024-01-17 01:43 PM PST -ExperimentsInHonesty,2024-01-17T21:45:57Z,- ExperimentsInHonesty reopened issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1896906256) at 2024-01-17 01:45 PM PST -ExperimentsInHonesty,2024-01-17T21:46:04Z,- ExperimentsInHonesty closed issue as completed: [5949](https://github.com/hackforla/website/issues/5949#event-11516824554) at 2024-01-17 01:46 PM PST -ExperimentsInHonesty,2024-01-18T01:36:10Z,- ExperimentsInHonesty commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1897619452) at 2024-01-17 05:36 PM PST -ExperimentsInHonesty,2024-01-21T19:50:53Z,- ExperimentsInHonesty opened issue: [6140](https://github.com/hackforla/website/issues/6140) at 2024-01-21 11:50 AM PST -ExperimentsInHonesty,2024-01-23T01:11:21Z,- ExperimentsInHonesty commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1905114103) at 2024-01-22 05:11 PM PST -ExperimentsInHonesty,2024-01-23T01:51:20Z,- ExperimentsInHonesty commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1905148455) at 2024-01-22 05:51 PM PST -ExperimentsInHonesty,2024-01-23T02:02:21Z,- ExperimentsInHonesty opened issue: [6145](https://github.com/hackforla/website/issues/6145) at 2024-01-22 06:02 PM PST -ExperimentsInHonesty,2024-01-23T03:25:17Z,- ExperimentsInHonesty commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1905228436) at 2024-01-22 07:25 PM PST -ExperimentsInHonesty,2024-01-23T04:36:23Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-1905279037) at 2024-01-22 08:36 PM PST -ExperimentsInHonesty,2024-01-23T23:32:25Z,- ExperimentsInHonesty commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1907089711) at 2024-01-23 03:32 PM PST -ExperimentsInHonesty,2024-01-23T23:59:02Z,- ExperimentsInHonesty commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1907114320) at 2024-01-23 03:59 PM PST -ExperimentsInHonesty,2024-01-24T01:05:29Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-1907177222) at 2024-01-23 05:05 PM PST -ExperimentsInHonesty,2024-01-24T01:06:11Z,- ExperimentsInHonesty commented on issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-1907177739) at 2024-01-23 05:06 PM PST -ExperimentsInHonesty,2024-01-24T01:07:35Z,- ExperimentsInHonesty commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1907179035) at 2024-01-23 05:07 PM PST -ExperimentsInHonesty,2024-01-24T01:08:31Z,- ExperimentsInHonesty commented on issue: [4850](https://github.com/hackforla/website/issues/4850#issuecomment-1907179823) at 2024-01-23 05:08 PM PST -ExperimentsInHonesty,2024-01-24T01:09:38Z,- ExperimentsInHonesty commented on issue: [1068](https://github.com/hackforla/website/issues/1068#issuecomment-1907180813) at 2024-01-23 05:09 PM PST -ExperimentsInHonesty,2024-01-24T01:10:43Z,- ExperimentsInHonesty commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-1907181696) at 2024-01-23 05:10 PM PST -ExperimentsInHonesty,2024-01-24T01:11:20Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-1907182189) at 2024-01-23 05:11 PM PST -ExperimentsInHonesty,2024-01-24T01:11:56Z,- ExperimentsInHonesty commented on issue: [2188](https://github.com/hackforla/website/issues/2188#issuecomment-1907182707) at 2024-01-23 05:11 PM PST -ExperimentsInHonesty,2024-01-24T01:25:44Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1907195357) at 2024-01-23 05:25 PM PST -ExperimentsInHonesty,2024-01-24T01:27:31Z,- ExperimentsInHonesty commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1907196945) at 2024-01-23 05:27 PM PST -ExperimentsInHonesty,2024-01-24T01:33:48Z,- ExperimentsInHonesty commented on issue: [5826](https://github.com/hackforla/website/issues/5826#issuecomment-1907202103) at 2024-01-23 05:33 PM PST -ExperimentsInHonesty,2024-01-24T01:34:53Z,- ExperimentsInHonesty commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1907202949) at 2024-01-23 05:34 PM PST -ExperimentsInHonesty,2024-01-24T01:36:51Z,- ExperimentsInHonesty commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1907204421) at 2024-01-23 05:36 PM PST -ExperimentsInHonesty,2024-01-24T01:40:33Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1907207320) at 2024-01-23 05:40 PM PST -ExperimentsInHonesty,2024-01-24T21:09:27Z,- ExperimentsInHonesty closed issue as completed: [3813](https://github.com/hackforla/website/issues/3813#event-11589641365) at 2024-01-24 01:09 PM PST -ExperimentsInHonesty,2024-01-24T21:34:53Z,- ExperimentsInHonesty opened issue: [6150](https://github.com/hackforla/website/issues/6150) at 2024-01-24 01:34 PM PST -ExperimentsInHonesty,2024-01-24T21:39:53Z,- ExperimentsInHonesty commented on issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1908959975) at 2024-01-24 01:39 PM PST -ExperimentsInHonesty,2024-01-25T20:00:41Z,- ExperimentsInHonesty opened issue: [6161](https://github.com/hackforla/website/issues/6161) at 2024-01-25 12:00 PM PST -ExperimentsInHonesty,2024-01-25T20:37:09Z,- ExperimentsInHonesty opened issue: [6162](https://github.com/hackforla/website/issues/6162) at 2024-01-25 12:37 PM PST -ExperimentsInHonesty,2024-01-25T21:00:28Z,- ExperimentsInHonesty opened issue: [6163](https://github.com/hackforla/website/issues/6163) at 2024-01-25 01:00 PM PST -ExperimentsInHonesty,2024-01-26T21:35:04Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1912726743) at 2024-01-26 01:35 PM PST -ExperimentsInHonesty,2024-01-28T04:49:30Z,- ExperimentsInHonesty opened issue: [6188](https://github.com/hackforla/website/issues/6188) at 2024-01-27 08:49 PM PST -ExperimentsInHonesty,2024-01-28T05:36:02Z,- ExperimentsInHonesty commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-01-27 09:36 PM PST -ExperimentsInHonesty,2024-01-28T05:36:17Z,- ExperimentsInHonesty reopened issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-01-27 09:36 PM PST -ExperimentsInHonesty,2024-01-28T06:12:10Z,- ExperimentsInHonesty commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1913466919) at 2024-01-27 10:12 PM PST -ExperimentsInHonesty,2024-01-28T06:18:19Z,- ExperimentsInHonesty reopened issue: [5749](https://github.com/hackforla/website/issues/5749#event-10732929922) at 2024-01-27 10:18 PM PST -ExperimentsInHonesty,2024-01-28T18:26:05Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1913682683) at 2024-01-28 10:26 AM PST -ExperimentsInHonesty,2024-01-28T18:36:36Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1913685305) at 2024-01-28 10:36 AM PST -ExperimentsInHonesty,2024-01-28T23:25:13Z,- ExperimentsInHonesty commented on issue: [2246](https://github.com/hackforla/website/issues/2246#issuecomment-1913757349) at 2024-01-28 03:25 PM PST -ExperimentsInHonesty,2024-01-29T07:04:16Z,- ExperimentsInHonesty commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1914081154) at 2024-01-28 11:04 PM PST -ExperimentsInHonesty,2024-01-29T07:04:30Z,- ExperimentsInHonesty commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1914081408) at 2024-01-28 11:04 PM PST -ExperimentsInHonesty,2024-01-29T23:34:16Z,- ExperimentsInHonesty opened issue: [6195](https://github.com/hackforla/website/issues/6195) at 2024-01-29 03:34 PM PST -ExperimentsInHonesty,2024-01-29T23:35:06Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915801260) at 2024-01-29 03:35 PM PST -ExperimentsInHonesty,2024-01-30T00:00:27Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915801269) at 2024-01-29 04:00 PM PST -ExperimentsInHonesty,2024-01-30T00:07:38Z,- ExperimentsInHonesty assigned to issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915801269) at 2024-01-29 04:07 PM PST -ExperimentsInHonesty,2024-01-30T00:28:32Z,- ExperimentsInHonesty commented on issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1915825035) at 2024-01-29 04:28 PM PST -ExperimentsInHonesty,2024-01-30T00:35:56Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915835782) at 2024-01-29 04:35 PM PST -ExperimentsInHonesty,2024-01-30T00:53:18Z,- ExperimentsInHonesty commented on issue: [4850](https://github.com/hackforla/website/issues/4850#issuecomment-1915853086) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T00:53:18Z,- ExperimentsInHonesty closed issue as completed: [4850](https://github.com/hackforla/website/issues/4850#event-11635093194) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T00:53:35Z,- ExperimentsInHonesty reopened issue: [4850](https://github.com/hackforla/website/issues/4850#event-11635093194) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T00:53:42Z,- ExperimentsInHonesty closed issue as not planned: [4850](https://github.com/hackforla/website/issues/4850#event-11635095309) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T01:08:18Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915870368) at 2024-01-29 05:08 PM PST -ExperimentsInHonesty,2024-01-30T02:50:38Z,- ExperimentsInHonesty reopened issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1915979086) at 2024-01-29 06:50 PM PST -ExperimentsInHonesty,2024-01-30T02:52:13Z,- ExperimentsInHonesty commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1915980640) at 2024-01-29 06:52 PM PST -ExperimentsInHonesty,2024-02-03T20:45:46Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1925451261) at 2024-02-03 12:45 PM PST -ExperimentsInHonesty,2024-02-04T18:21:36Z,- ExperimentsInHonesty opened issue: [6224](https://github.com/hackforla/website/issues/6224) at 2024-02-04 10:21 AM PST -ExperimentsInHonesty,2024-02-04T19:29:06Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925890137) at 2024-02-04 11:29 AM PST -ExperimentsInHonesty,2024-02-05T05:44:12Z,- ExperimentsInHonesty opened issue: [6229](https://github.com/hackforla/website/issues/6229) at 2024-02-04 09:44 PM PST -ExperimentsInHonesty,2024-02-05T06:23:01Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-1926305759) at 2024-02-04 10:23 PM PST -ExperimentsInHonesty,2024-02-05T06:23:01Z,- ExperimentsInHonesty closed issue as completed: [2108](https://github.com/hackforla/website/issues/2108#event-11699209535) at 2024-02-04 10:23 PM PST -ExperimentsInHonesty,2024-02-05T06:39:23Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1926320789) at 2024-02-04 10:39 PM PST -ExperimentsInHonesty,2024-02-06T00:57:52Z,- ExperimentsInHonesty commented on issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-1928584033) at 2024-02-05 04:57 PM PST -ExperimentsInHonesty,2024-02-06T01:53:20Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1928639921) at 2024-02-05 05:53 PM PST -ExperimentsInHonesty,2024-02-08T03:51:00Z,- ExperimentsInHonesty commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1933320952) at 2024-02-07 07:51 PM PST -ExperimentsInHonesty,2024-02-08T03:54:10Z,- ExperimentsInHonesty commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1933322843) at 2024-02-07 07:54 PM PST -ExperimentsInHonesty,2024-02-08T03:56:25Z,- ExperimentsInHonesty commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1933324099) at 2024-02-07 07:56 PM PST -ExperimentsInHonesty,2024-02-09T17:16:47Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1936298234) at 2024-02-09 09:16 AM PST -ExperimentsInHonesty,2024-02-11T17:27:00Z,- ExperimentsInHonesty opened issue: [6277](https://github.com/hackforla/website/issues/6277) at 2024-02-11 09:27 AM PST -ExperimentsInHonesty,2024-02-11T18:32:40Z,- ExperimentsInHonesty opened issue: [6278](https://github.com/hackforla/website/issues/6278) at 2024-02-11 10:32 AM PST -ExperimentsInHonesty,2024-02-11T19:04:53Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1937840152) at 2024-02-11 11:04 AM PST -ExperimentsInHonesty,2024-02-11T19:09:54Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1937841409) at 2024-02-11 11:09 AM PST -ExperimentsInHonesty,2024-02-11T19:23:07Z,- ExperimentsInHonesty commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1937844888) at 2024-02-11 11:23 AM PST -ExperimentsInHonesty,2024-02-11T19:35:37Z,- ExperimentsInHonesty commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1937847844) at 2024-02-11 11:35 AM PST -ExperimentsInHonesty,2024-02-11T19:49:39Z,- ExperimentsInHonesty assigned to issue: [6278](https://github.com/hackforla/website/issues/6278) at 2024-02-11 11:49 AM PST -ExperimentsInHonesty,2024-02-11T20:34:15Z,- ExperimentsInHonesty assigned to issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1828952297) at 2024-02-11 12:34 PM PST -ExperimentsInHonesty,2024-02-11T20:34:19Z,- ExperimentsInHonesty unassigned from issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1828952297) at 2024-02-11 12:34 PM PST -ExperimentsInHonesty,2024-02-12T17:24:16Z,- nelsonuprety1 assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-02-12 09:24 AM PST -ExperimentsInHonesty,2024-02-13T00:42:48Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-1939908950) at 2024-02-12 04:42 PM PST -ExperimentsInHonesty,2024-02-13T01:35:04Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1940112615) at 2024-02-12 05:35 PM PST -ExperimentsInHonesty,2024-02-13T01:53:32Z,- ExperimentsInHonesty commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1940189455) at 2024-02-12 05:53 PM PST -ExperimentsInHonesty,2024-02-13T02:19:16Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1940272351) at 2024-02-12 06:19 PM PST -ExperimentsInHonesty,2024-02-13T02:34:08Z,- ExperimentsInHonesty commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-1940306837) at 2024-02-12 06:34 PM PST -ExperimentsInHonesty,2024-02-13T16:43:36Z,- ExperimentsInHonesty closed issue as completed: [6278](https://github.com/hackforla/website/issues/6278#event-11791474360) at 2024-02-13 08:43 AM PST -ExperimentsInHonesty,2024-02-13T16:49:34Z,- ExperimentsInHonesty commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1941992435) at 2024-02-13 08:49 AM PST -ExperimentsInHonesty,2024-02-13T16:57:16Z,- ExperimentsInHonesty opened issue: [6288](https://github.com/hackforla/website/issues/6288) at 2024-02-13 08:57 AM PST -ExperimentsInHonesty,2024-02-13T19:03:36Z,- ExperimentsInHonesty opened issue: [6289](https://github.com/hackforla/website/issues/6289) at 2024-02-13 11:03 AM PST -ExperimentsInHonesty,2024-02-13T19:20:56Z,- ExperimentsInHonesty opened issue: [6290](https://github.com/hackforla/website/issues/6290) at 2024-02-13 11:20 AM PST -ExperimentsInHonesty,2024-02-13T19:47:46Z,- ExperimentsInHonesty reopened issue: [3523](https://github.com/hackforla/website/issues/3523#event-8880282627) at 2024-02-13 11:47 AM PST -ExperimentsInHonesty,2024-02-13T20:06:26Z,- ExperimentsInHonesty commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942349163) at 2024-02-13 12:06 PM PST -ExperimentsInHonesty,2024-02-13T20:06:42Z,- ExperimentsInHonesty reopened issue: [5776](https://github.com/hackforla/website/issues/5776#event-11679277194) at 2024-02-13 12:06 PM PST -ExperimentsInHonesty,2024-02-13T20:11:28Z,- ExperimentsInHonesty commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1942364169) at 2024-02-13 12:11 PM PST -ExperimentsInHonesty,2024-02-13T20:15:53Z,- ExperimentsInHonesty commented on issue: [5726](https://github.com/hackforla/website/issues/5726#issuecomment-1942377131) at 2024-02-13 12:15 PM PST -ExperimentsInHonesty,2024-02-13T20:20:49Z,- ExperimentsInHonesty commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1942391261) at 2024-02-13 12:20 PM PST -ExperimentsInHonesty,2024-02-13T21:02:27Z,- ExperimentsInHonesty commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1942523276) at 2024-02-13 01:02 PM PST -ExperimentsInHonesty,2024-02-13T21:07:22Z,- ExperimentsInHonesty commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1942536564) at 2024-02-13 01:07 PM PST -ExperimentsInHonesty,2024-02-13T21:15:14Z,- ExperimentsInHonesty commented on issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1942558241) at 2024-02-13 01:15 PM PST -ExperimentsInHonesty,2024-02-13T21:49:39Z,- ExperimentsInHonesty commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1942685997) at 2024-02-13 01:49 PM PST -ExperimentsInHonesty,2024-02-13T23:22:20Z,- ExperimentsInHonesty commented on issue: [5082](https://github.com/hackforla/website/issues/5082#issuecomment-1942828249) at 2024-02-13 03:22 PM PST -ExperimentsInHonesty,2024-02-13T23:33:41Z,- ExperimentsInHonesty commented on issue: [5074](https://github.com/hackforla/website/issues/5074#issuecomment-1942853312) at 2024-02-13 03:33 PM PST -ExperimentsInHonesty,2024-02-13T23:38:38Z,- ExperimentsInHonesty commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1942857270) at 2024-02-13 03:38 PM PST -ExperimentsInHonesty,2024-02-14T00:11:10Z,- ExperimentsInHonesty commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1942885093) at 2024-02-13 04:11 PM PST -ExperimentsInHonesty,2024-02-14T00:31:01Z,- ExperimentsInHonesty commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1942903388) at 2024-02-13 04:31 PM PST -ExperimentsInHonesty,2024-02-14T00:34:33Z,- ExperimentsInHonesty commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1942906310) at 2024-02-13 04:34 PM PST -ExperimentsInHonesty,2024-02-14T00:48:18Z,- ExperimentsInHonesty commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1942917364) at 2024-02-13 04:48 PM PST -ExperimentsInHonesty,2024-02-14T01:27:22Z,- ExperimentsInHonesty commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1942947551) at 2024-02-13 05:27 PM PST -ExperimentsInHonesty,2024-02-14T01:53:58Z,- ExperimentsInHonesty commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1942968783) at 2024-02-13 05:53 PM PST -ExperimentsInHonesty,2024-02-14T05:01:14Z,- ExperimentsInHonesty commented on issue: [4968](https://github.com/hackforla/website/issues/4968#issuecomment-1943085566) at 2024-02-13 09:01 PM PST -ExperimentsInHonesty,2024-02-14T05:04:52Z,- ExperimentsInHonesty commented on issue: [5605](https://github.com/hackforla/website/issues/5605#issuecomment-1943088133) at 2024-02-13 09:04 PM PST -ExperimentsInHonesty,2024-02-14T05:28:39Z,- ExperimentsInHonesty commented on issue: [5481](https://github.com/hackforla/website/issues/5481#issuecomment-1943107564) at 2024-02-13 09:28 PM PST -ExperimentsInHonesty,2024-02-14T05:43:26Z,- ExperimentsInHonesty commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1943120238) at 2024-02-13 09:43 PM PST -ExperimentsInHonesty,2024-02-14T05:49:24Z,- ExperimentsInHonesty commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1943124446) at 2024-02-13 09:49 PM PST -ExperimentsInHonesty,2024-02-14T05:54:08Z,- ExperimentsInHonesty commented on issue: [5559](https://github.com/hackforla/website/issues/5559#issuecomment-1943127981) at 2024-02-13 09:54 PM PST -ExperimentsInHonesty,2024-02-14T05:59:28Z,- ExperimentsInHonesty commented on issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1943132491) at 2024-02-13 09:59 PM PST -ExperimentsInHonesty,2024-02-14T06:02:03Z,- ExperimentsInHonesty commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1943134606) at 2024-02-13 10:02 PM PST -ExperimentsInHonesty,2024-02-14T06:10:13Z,- ExperimentsInHonesty commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1943142027) at 2024-02-13 10:10 PM PST -ExperimentsInHonesty,2024-02-14T18:04:53Z,- ExperimentsInHonesty commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1944338517) at 2024-02-14 10:04 AM PST -ExperimentsInHonesty,2024-02-15T17:49:08Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739570) at 2024-02-15 09:49 AM PST -ExperimentsInHonesty,2024-02-15T19:56:51Z,- ExperimentsInHonesty commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1947178429) at 2024-02-15 11:56 AM PST -ExperimentsInHonesty,2024-02-15T20:32:37Z,- ExperimentsInHonesty commented on issue: [4987](https://github.com/hackforla/website/issues/4987#issuecomment-1947295689) at 2024-02-15 12:32 PM PST -ExperimentsInHonesty,2024-02-15T20:57:54Z,- ExperimentsInHonesty commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1947328299) at 2024-02-15 12:57 PM PST -ExperimentsInHonesty,2024-02-16T00:41:19Z,- ExperimentsInHonesty commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1947566013) at 2024-02-15 04:41 PM PST -ExperimentsInHonesty,2024-02-16T00:44:39Z,- ExperimentsInHonesty commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1947568519) at 2024-02-15 04:44 PM PST -ExperimentsInHonesty,2024-02-16T01:02:44Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1947582784) at 2024-02-15 05:02 PM PST -ExperimentsInHonesty,2024-02-16T02:27:16Z,- ExperimentsInHonesty closed issue as completed: [4331](https://github.com/hackforla/website/issues/4331#event-11823456798) at 2024-02-15 06:27 PM PST -ExperimentsInHonesty,2024-02-16T02:31:36Z,- ExperimentsInHonesty closed issue as completed: [4162](https://github.com/hackforla/website/issues/4162#event-11823486152) at 2024-02-15 06:31 PM PST -ExperimentsInHonesty,2024-02-16T02:35:47Z,- ExperimentsInHonesty commented on issue: [4627](https://github.com/hackforla/website/issues/4627#issuecomment-1947668177) at 2024-02-15 06:35 PM PST -ExperimentsInHonesty,2024-02-16T04:00:24Z,- ExperimentsInHonesty commented on issue: [4337](https://github.com/hackforla/website/issues/4337#issuecomment-1947720779) at 2024-02-15 08:00 PM PST -ExperimentsInHonesty,2024-02-16T04:01:47Z,- ExperimentsInHonesty commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1947721618) at 2024-02-15 08:01 PM PST -ExperimentsInHonesty,2024-02-16T04:02:45Z,- ExperimentsInHonesty closed issue as completed: [4172](https://github.com/hackforla/website/issues/4172#event-11824017046) at 2024-02-15 08:02 PM PST -ExperimentsInHonesty,2024-02-16T04:04:15Z,- ExperimentsInHonesty closed issue as completed: [4324](https://github.com/hackforla/website/issues/4324#event-11824026009) at 2024-02-15 08:04 PM PST -ExperimentsInHonesty,2024-02-16T04:05:22Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1947723969) at 2024-02-15 08:05 PM PST -ExperimentsInHonesty,2024-02-16T17:35:11Z,- ExperimentsInHonesty reopened issue: [4563](https://github.com/hackforla/website/issues/4563#event-9490654208) at 2024-02-16 09:35 AM PST -ExperimentsInHonesty,2024-02-16T17:35:22Z,- ExperimentsInHonesty closed issue as completed: [4563](https://github.com/hackforla/website/issues/4563#event-11831724924) at 2024-02-16 09:35 AM PST -ExperimentsInHonesty,2024-02-16T17:50:56Z,- ExperimentsInHonesty commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1948981472) at 2024-02-16 09:50 AM PST -ExperimentsInHonesty,2024-02-16T17:53:59Z,- ExperimentsInHonesty commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1948985516) at 2024-02-16 09:53 AM PST -ExperimentsInHonesty,2024-02-16T19:43:39Z,- ExperimentsInHonesty commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1949219687) at 2024-02-16 11:43 AM PST -ExperimentsInHonesty,2024-02-16T19:50:22Z,- ExperimentsInHonesty commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1949228578) at 2024-02-16 11:50 AM PST -ExperimentsInHonesty,2024-02-18T18:52:42Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-1951413151) at 2024-02-18 10:52 AM PST -ExperimentsInHonesty,2024-02-18T19:37:51Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1951424985) at 2024-02-18 11:37 AM PST -ExperimentsInHonesty,2024-02-19T06:27:10Z,- ExperimentsInHonesty opened issue: [6320](https://github.com/hackforla/website/issues/6320) at 2024-02-18 10:27 PM PST -ExperimentsInHonesty,2024-02-19T21:05:12Z,- ExperimentsInHonesty opened issue: [6321](https://github.com/hackforla/website/issues/6321) at 2024-02-19 01:05 PM PST -ExperimentsInHonesty,2024-02-19T21:39:32Z,- ExperimentsInHonesty assigned to issue: [6321](https://github.com/hackforla/website/issues/6321) at 2024-02-19 01:39 PM PST -ExperimentsInHonesty,2024-02-19T21:53:36Z,- ExperimentsInHonesty unassigned from issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1953188039) at 2024-02-19 01:53 PM PST -ExperimentsInHonesty,2024-02-19T22:23:00Z,- ExperimentsInHonesty closed issue as not planned: [4835](https://github.com/hackforla/website/issues/4835#event-11854753133) at 2024-02-19 02:23 PM PST -ExperimentsInHonesty,2024-02-19T23:40:26Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1953280229) at 2024-02-19 03:40 PM PST -ExperimentsInHonesty,2024-02-20T00:38:16Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1953316798) at 2024-02-19 04:38 PM PST -ExperimentsInHonesty,2024-02-20T00:42:52Z,- ExperimentsInHonesty commented on issue: [4321](https://github.com/hackforla/website/issues/4321#issuecomment-1953319300) at 2024-02-19 04:42 PM PST -ExperimentsInHonesty,2024-02-20T00:49:57Z,- ExperimentsInHonesty commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1953323900) at 2024-02-19 04:49 PM PST -ExperimentsInHonesty,2024-02-20T00:54:26Z,- ExperimentsInHonesty commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1953326881) at 2024-02-19 04:54 PM PST -ExperimentsInHonesty,2024-02-20T00:58:19Z,- ExperimentsInHonesty commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1953329173) at 2024-02-19 04:58 PM PST -ExperimentsInHonesty,2024-02-20T00:59:41Z,- ExperimentsInHonesty commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1953329939) at 2024-02-19 04:59 PM PST -ExperimentsInHonesty,2024-02-20T01:02:11Z,- ExperimentsInHonesty commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1953331374) at 2024-02-19 05:02 PM PST -ExperimentsInHonesty,2024-02-20T01:38:20Z,- ExperimentsInHonesty commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1953353185) at 2024-02-19 05:38 PM PST -ExperimentsInHonesty,2024-02-20T01:41:16Z,- ExperimentsInHonesty commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1953355091) at 2024-02-19 05:41 PM PST -ExperimentsInHonesty,2024-02-20T02:19:28Z,- ExperimentsInHonesty commented on issue: [5677](https://github.com/hackforla/website/issues/5677#issuecomment-1953381772) at 2024-02-19 06:19 PM PST -ExperimentsInHonesty,2024-02-20T02:19:35Z,- ExperimentsInHonesty closed issue as completed: [5677](https://github.com/hackforla/website/issues/5677#event-11855833964) at 2024-02-19 06:19 PM PST -ExperimentsInHonesty,2024-02-20T02:26:17Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1953386051) at 2024-02-19 06:26 PM PST -ExperimentsInHonesty,2024-02-20T02:26:17Z,- ExperimentsInHonesty closed issue as completed: [4931](https://github.com/hackforla/website/issues/4931#event-11855866329) at 2024-02-19 06:26 PM PST -ExperimentsInHonesty,2024-02-20T02:57:01Z,- ExperimentsInHonesty commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1953405701) at 2024-02-19 06:57 PM PST -ExperimentsInHonesty,2024-02-20T03:02:32Z,- ExperimentsInHonesty commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1953409889) at 2024-02-19 07:02 PM PST -ExperimentsInHonesty,2024-02-20T03:13:53Z,- ExperimentsInHonesty commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1953417897) at 2024-02-19 07:13 PM PST -ExperimentsInHonesty,2024-02-20T03:35:50Z,- ExperimentsInHonesty commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1953434363) at 2024-02-19 07:35 PM PST -ExperimentsInHonesty,2024-02-20T03:37:27Z,- ExperimentsInHonesty commented on issue: [5777](https://github.com/hackforla/website/issues/5777#issuecomment-1953435331) at 2024-02-19 07:37 PM PST -ExperimentsInHonesty,2024-02-20T03:37:27Z,- ExperimentsInHonesty closed issue as not planned: [5777](https://github.com/hackforla/website/issues/5777#event-11856252932) at 2024-02-19 07:37 PM PST -ExperimentsInHonesty,2024-02-20T23:01:40Z,- ExperimentsInHonesty opened issue: [6326](https://github.com/hackforla/website/issues/6326) at 2024-02-20 03:01 PM PST -ExperimentsInHonesty,2024-02-20T23:39:15Z,- ExperimentsInHonesty commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1955364698) at 2024-02-20 03:39 PM PST -ExperimentsInHonesty,2024-02-20T23:39:23Z,- ExperimentsInHonesty reopened issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1955364698) at 2024-02-20 03:39 PM PST -ExperimentsInHonesty,2024-02-21T01:29:34Z,- ExperimentsInHonesty opened issue: [6327](https://github.com/hackforla/website/issues/6327) at 2024-02-20 05:29 PM PST -ExperimentsInHonesty,2024-02-25T18:00:33Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1963014491) at 2024-02-25 10:00 AM PST -ExperimentsInHonesty,2024-02-25T18:08:09Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1963016857) at 2024-02-25 10:08 AM PST -ExperimentsInHonesty,2024-02-25T18:16:04Z,- ExperimentsInHonesty commented on issue: [6256](https://github.com/hackforla/website/issues/6256#issuecomment-1963018905) at 2024-02-25 10:16 AM PST -ExperimentsInHonesty,2024-02-25T18:16:04Z,- ExperimentsInHonesty closed issue as not planned: [6256](https://github.com/hackforla/website/issues/6256#event-11913562363) at 2024-02-25 10:16 AM PST -ExperimentsInHonesty,2024-02-25T18:37:15Z,- ExperimentsInHonesty closed issue as not planned: [6355](https://github.com/hackforla/website/issues/6355#event-11913601253) at 2024-02-25 10:37 AM PST -ExperimentsInHonesty,2024-02-25T18:46:47Z,- ExperimentsInHonesty commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1963026461) at 2024-02-25 10:46 AM PST -ExperimentsInHonesty,2024-02-25T18:49:37Z,- ExperimentsInHonesty commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1963027201) at 2024-02-25 10:49 AM PST -ExperimentsInHonesty,2024-02-25T19:35:36Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1963038991) at 2024-02-25 11:35 AM PST -ExperimentsInHonesty,2024-02-26T23:47:12Z,- ExperimentsInHonesty commented on issue: [4542](https://github.com/hackforla/website/issues/4542#issuecomment-1965530837) at 2024-02-26 03:47 PM PST -ExperimentsInHonesty,2024-02-27T00:20:45Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1965568163) at 2024-02-26 04:20 PM PST -ExperimentsInHonesty,2024-02-27T00:41:10Z,- ExperimentsInHonesty closed issue as completed: [6195](https://github.com/hackforla/website/issues/6195#event-11929416601) at 2024-02-26 04:41 PM PST -ExperimentsInHonesty,2024-02-27T02:56:18Z,- ExperimentsInHonesty commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1965697267) at 2024-02-26 06:56 PM PST -ExperimentsInHonesty,2024-02-27T03:00:38Z,- ExperimentsInHonesty assigned to issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1953188039) at 2024-02-26 07:00 PM PST -ExperimentsInHonesty,2024-02-28T18:02:47Z,- ExperimentsInHonesty commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1969548282) at 2024-02-28 10:02 AM PST -ExperimentsInHonesty,2024-02-28T18:05:27Z,- ExperimentsInHonesty commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1969552817) at 2024-02-28 10:05 AM PST -ExperimentsInHonesty,2024-02-28T18:57:56Z,- ExperimentsInHonesty commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-1969647286) at 2024-02-28 10:57 AM PST -ExperimentsInHonesty,2024-02-28T18:59:56Z,- ExperimentsInHonesty commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1969651598) at 2024-02-28 10:59 AM PST -ExperimentsInHonesty,2024-02-28T19:04:44Z,- ExperimentsInHonesty closed issue as completed: [5116](https://github.com/hackforla/website/issues/5116#event-11956114315) at 2024-02-28 11:04 AM PST -ExperimentsInHonesty,2024-02-28T19:22:18Z,- ExperimentsInHonesty closed issue as completed: [5727](https://github.com/hackforla/website/issues/5727#event-11956302011) at 2024-02-28 11:22 AM PST -ExperimentsInHonesty,2024-02-28T19:30:12Z,- ExperimentsInHonesty commented on issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1969699478) at 2024-02-28 11:30 AM PST -ExperimentsInHonesty,2024-02-28T19:31:28Z,- ExperimentsInHonesty commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1969701421) at 2024-02-28 11:31 AM PST -ExperimentsInHonesty,2024-02-28T19:35:56Z,- ExperimentsInHonesty commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1969708848) at 2024-02-28 11:35 AM PST -ExperimentsInHonesty,2024-02-28T19:40:17Z,- ExperimentsInHonesty commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969716797) at 2024-02-28 11:40 AM PST -ExperimentsInHonesty,2024-02-28T19:50:25Z,- ExperimentsInHonesty commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969734687) at 2024-02-28 11:50 AM PST -ExperimentsInHonesty,2024-02-28T19:53:34Z,- ExperimentsInHonesty commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1969741969) at 2024-02-28 11:53 AM PST -ExperimentsInHonesty,2024-02-28T19:53:34Z,- ExperimentsInHonesty closed issue as completed: [5772](https://github.com/hackforla/website/issues/5772#event-11956612278) at 2024-02-28 11:53 AM PST -ExperimentsInHonesty,2024-02-28T19:55:50Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1969746680) at 2024-02-28 11:55 AM PST -ExperimentsInHonesty,2024-02-28T19:57:51Z,- ExperimentsInHonesty commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1969752179) at 2024-02-28 11:57 AM PST -ExperimentsInHonesty,2024-02-28T20:13:28Z,- ExperimentsInHonesty commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1969814318) at 2024-02-28 12:13 PM PST -ExperimentsInHonesty,2024-02-28T20:50:42Z,- ExperimentsInHonesty opened issue: [6389](https://github.com/hackforla/website/issues/6389) at 2024-02-28 12:50 PM PST -ExperimentsInHonesty,2024-02-28T20:56:34Z,- ExperimentsInHonesty closed issue as completed: [5861](https://github.com/hackforla/website/issues/5861#event-11957454757) at 2024-02-28 12:56 PM PST -ExperimentsInHonesty,2024-02-28T20:58:00Z,- ExperimentsInHonesty closed issue as completed: [5862](https://github.com/hackforla/website/issues/5862#event-11957467818) at 2024-02-28 12:58 PM PST -ExperimentsInHonesty,2024-02-28T21:24:25Z,- ExperimentsInHonesty commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1969945515) at 2024-02-28 01:24 PM PST -ExperimentsInHonesty,2024-02-28T21:25:58Z,- ExperimentsInHonesty closed issue as completed: [5866](https://github.com/hackforla/website/issues/5866#event-11957747625) at 2024-02-28 01:25 PM PST -ExperimentsInHonesty,2024-02-28T21:26:56Z,- ExperimentsInHonesty closed issue as completed: [5871](https://github.com/hackforla/website/issues/5871#event-11957756718) at 2024-02-28 01:26 PM PST -ExperimentsInHonesty,2024-02-28T21:27:42Z,- ExperimentsInHonesty closed issue as completed: [5870](https://github.com/hackforla/website/issues/5870#event-11957763914) at 2024-02-28 01:27 PM PST -ExperimentsInHonesty,2024-02-28T21:29:31Z,- ExperimentsInHonesty commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1969951931) at 2024-02-28 01:29 PM PST -ExperimentsInHonesty,2024-02-28T21:29:34Z,- ExperimentsInHonesty closed issue as completed: [5924](https://github.com/hackforla/website/issues/5924#event-11957781360) at 2024-02-28 01:29 PM PST -ExperimentsInHonesty,2024-02-28T21:35:33Z,- ExperimentsInHonesty commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1969959747) at 2024-02-28 01:35 PM PST -ExperimentsInHonesty,2024-02-28T21:35:42Z,- ExperimentsInHonesty reopened issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1969959747) at 2024-02-28 01:35 PM PST -ExperimentsInHonesty,2024-02-28T21:42:50Z,- ExperimentsInHonesty commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1969969798) at 2024-02-28 01:42 PM PST -ExperimentsInHonesty,2024-02-28T21:45:02Z,- ExperimentsInHonesty commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1969972654) at 2024-02-28 01:45 PM PST -ExperimentsInHonesty,2024-02-28T21:49:59Z,- ExperimentsInHonesty commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1969978885) at 2024-02-28 01:49 PM PST -ExperimentsInHonesty,2024-02-28T21:55:31Z,- ExperimentsInHonesty commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1969985963) at 2024-02-28 01:55 PM PST -ExperimentsInHonesty,2024-02-28T21:55:32Z,- ExperimentsInHonesty closed issue as completed: [4326](https://github.com/hackforla/website/issues/4326#event-11958012773) at 2024-02-28 01:55 PM PST -ExperimentsInHonesty,2024-02-28T21:57:56Z,- ExperimentsInHonesty commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1969988765) at 2024-02-28 01:57 PM PST -ExperimentsInHonesty,2024-02-28T21:57:56Z,- ExperimentsInHonesty closed issue as completed: [6036](https://github.com/hackforla/website/issues/6036#event-11958032888) at 2024-02-28 01:57 PM PST -ExperimentsInHonesty,2024-02-28T22:00:40Z,- ExperimentsInHonesty commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1969992092) at 2024-02-28 02:00 PM PST -ExperimentsInHonesty,2024-02-28T22:00:40Z,- ExperimentsInHonesty closed issue as completed: [6034](https://github.com/hackforla/website/issues/6034#event-11958055181) at 2024-02-28 02:00 PM PST -ExperimentsInHonesty,2024-02-28T22:09:40Z,- ExperimentsInHonesty commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1970003410) at 2024-02-28 02:09 PM PST -ExperimentsInHonesty,2024-02-28T22:12:55Z,- ExperimentsInHonesty commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1970007309) at 2024-02-28 02:12 PM PST -ExperimentsInHonesty,2024-02-28T22:16:35Z,- ExperimentsInHonesty commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-1970012484) at 2024-02-28 02:16 PM PST -ExperimentsInHonesty,2024-02-28T22:19:31Z,- ExperimentsInHonesty commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1970016052) at 2024-02-28 02:19 PM PST -ExperimentsInHonesty,2024-02-28T22:20:46Z,- ExperimentsInHonesty commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1970017489) at 2024-02-28 02:20 PM PST -ExperimentsInHonesty,2024-02-28T22:22:18Z,- ExperimentsInHonesty commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1970019297) at 2024-02-28 02:22 PM PST -ExperimentsInHonesty,2024-02-28T22:22:54Z,- ExperimentsInHonesty commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1970020000) at 2024-02-28 02:22 PM PST -ExperimentsInHonesty,2024-02-28T22:24:26Z,- ExperimentsInHonesty commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1970021984) at 2024-02-28 02:24 PM PST -ExperimentsInHonesty,2024-02-28T23:11:07Z,- ExperimentsInHonesty commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1970072202) at 2024-02-28 03:11 PM PST -ExperimentsInHonesty,2024-02-28T23:13:03Z,- ExperimentsInHonesty commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1970074100) at 2024-02-28 03:13 PM PST -ExperimentsInHonesty,2024-02-28T23:19:58Z,- ExperimentsInHonesty commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1970080855) at 2024-02-28 03:19 PM PST -ExperimentsInHonesty,2024-02-28T23:21:33Z,- ExperimentsInHonesty commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1970082390) at 2024-02-28 03:21 PM PST -ExperimentsInHonesty,2024-02-28T23:31:36Z,- ExperimentsInHonesty commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1970091461) at 2024-02-28 03:31 PM PST -ExperimentsInHonesty,2024-02-28T23:31:36Z,- ExperimentsInHonesty closed issue as completed: [6116](https://github.com/hackforla/website/issues/6116#event-11958734086) at 2024-02-28 03:31 PM PST -ExperimentsInHonesty,2024-02-28T23:31:54Z,- ExperimentsInHonesty commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-02-28 03:31 PM PST -ExperimentsInHonesty,2024-02-28T23:48:30Z,- ExperimentsInHonesty commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1970108547) at 2024-02-28 03:48 PM PST -ExperimentsInHonesty,2024-02-28T23:55:04Z,- ExperimentsInHonesty commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1970120406) at 2024-02-28 03:55 PM PST -ExperimentsInHonesty,2024-02-29T00:09:54Z,- ExperimentsInHonesty commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1970143091) at 2024-02-28 04:09 PM PST -ExperimentsInHonesty,2024-02-29T01:13:01Z,- ExperimentsInHonesty commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1970201231) at 2024-02-28 05:13 PM PST -ExperimentsInHonesty,2024-02-29T01:14:14Z,- ExperimentsInHonesty closed issue as completed: [5208](https://github.com/hackforla/website/issues/5208#event-11959341019) at 2024-02-28 05:14 PM PST -ExperimentsInHonesty,2024-02-29T01:20:22Z,- ExperimentsInHonesty commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1970206954) at 2024-02-28 05:20 PM PST -ExperimentsInHonesty,2024-02-29T01:31:33Z,- ExperimentsInHonesty commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1970227528) at 2024-02-28 05:31 PM PST -ExperimentsInHonesty,2024-02-29T01:35:19Z,- ExperimentsInHonesty commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1970235023) at 2024-02-28 05:35 PM PST -ExperimentsInHonesty,2024-02-29T01:43:41Z,- ExperimentsInHonesty commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1970242163) at 2024-02-28 05:43 PM PST -ExperimentsInHonesty,2024-02-29T01:46:12Z,- ExperimentsInHonesty closed issue as completed: [5872](https://github.com/hackforla/website/issues/5872#event-11959538317) at 2024-02-28 05:46 PM PST -ExperimentsInHonesty,2024-02-29T01:47:07Z,- ExperimentsInHonesty closed issue as completed: [5869](https://github.com/hackforla/website/issues/5869#event-11959544917) at 2024-02-28 05:47 PM PST -ExperimentsInHonesty,2024-02-29T01:51:22Z,- ExperimentsInHonesty commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1970249439) at 2024-02-28 05:51 PM PST -ExperimentsInHonesty,2024-02-29T01:55:27Z,- ExperimentsInHonesty commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1970257195) at 2024-02-28 05:55 PM PST -ExperimentsInHonesty,2024-02-29T03:42:22Z,- ExperimentsInHonesty commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1970342149) at 2024-02-28 07:42 PM PST -ExperimentsInHonesty,2024-02-29T03:59:40Z,- ExperimentsInHonesty commented on issue: [5587](https://github.com/hackforla/website/issues/5587#issuecomment-1970353831) at 2024-02-28 07:59 PM PST -ExperimentsInHonesty,2024-02-29T03:59:40Z,- ExperimentsInHonesty closed issue as completed: [5587](https://github.com/hackforla/website/issues/5587#event-11960294821) at 2024-02-28 07:59 PM PST -ExperimentsInHonesty,2024-02-29T03:59:45Z,- ExperimentsInHonesty assigned to issue: [5587](https://github.com/hackforla/website/issues/5587#event-11960294821) at 2024-02-28 07:59 PM PST -ExperimentsInHonesty,2024-02-29T04:01:35Z,- ExperimentsInHonesty commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-1970355174) at 2024-02-28 08:01 PM PST -ExperimentsInHonesty,2024-02-29T04:23:59Z,- ExperimentsInHonesty commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1970371496) at 2024-02-28 08:23 PM PST -ExperimentsInHonesty,2024-02-29T04:24:45Z,- ExperimentsInHonesty commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1970372008) at 2024-02-28 08:24 PM PST -ExperimentsInHonesty,2024-02-29T04:25:08Z,- ExperimentsInHonesty commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1970372310) at 2024-02-28 08:25 PM PST -ExperimentsInHonesty,2024-02-29T04:25:52Z,- ExperimentsInHonesty commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1970372819) at 2024-02-28 08:25 PM PST -ExperimentsInHonesty,2024-02-29T04:26:31Z,- ExperimentsInHonesty commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1970373274) at 2024-02-28 08:26 PM PST -ExperimentsInHonesty,2024-02-29T04:27:13Z,- ExperimentsInHonesty commented on issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1970373708) at 2024-02-28 08:27 PM PST -ExperimentsInHonesty,2024-02-29T23:34:56Z,- ExperimentsInHonesty commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1972150605) at 2024-02-29 03:34 PM PST -ExperimentsInHonesty,2024-02-29T23:44:43Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1972160104) at 2024-02-29 03:44 PM PST -ExperimentsInHonesty,2024-02-29T23:47:24Z,- ExperimentsInHonesty commented on issue: [6142](https://github.com/hackforla/website/issues/6142#issuecomment-1972162447) at 2024-02-29 03:47 PM PST -ExperimentsInHonesty,2024-02-29T23:47:24Z,- ExperimentsInHonesty closed issue as completed: [6142](https://github.com/hackforla/website/issues/6142#event-11972690846) at 2024-02-29 03:47 PM PST -ExperimentsInHonesty,2024-03-01T00:58:28Z,- ExperimentsInHonesty opened issue: [6402](https://github.com/hackforla/website/issues/6402) at 2024-02-29 04:58 PM PST -ExperimentsInHonesty,2024-03-01T01:03:19Z,- ExperimentsInHonesty opened issue: [6403](https://github.com/hackforla/website/issues/6403) at 2024-02-29 05:03 PM PST -ExperimentsInHonesty,2024-03-01T01:07:10Z,- ExperimentsInHonesty commented on issue: [6402](https://github.com/hackforla/website/issues/6402#issuecomment-1972259178) at 2024-02-29 05:07 PM PST -ExperimentsInHonesty,2024-03-01T01:07:17Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-1972259280) at 2024-02-29 05:07 PM PST -ExperimentsInHonesty,2024-03-01T01:21:47Z,- ExperimentsInHonesty commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1972273333) at 2024-02-29 05:21 PM PST -ExperimentsInHonesty,2024-03-01T01:21:47Z,- ExperimentsInHonesty closed issue as completed: [5644](https://github.com/hackforla/website/issues/5644#event-11973294429) at 2024-02-29 05:21 PM PST -ExperimentsInHonesty,2024-03-01T01:27:38Z,- ExperimentsInHonesty commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1972279146) at 2024-02-29 05:27 PM PST -ExperimentsInHonesty,2024-03-01T02:06:04Z,- ExperimentsInHonesty commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-1972321839) at 2024-02-29 06:06 PM PST -ExperimentsInHonesty,2024-03-01T02:20:54Z,- ExperimentsInHonesty commented on issue: [6017](https://github.com/hackforla/website/issues/6017#issuecomment-1972336348) at 2024-02-29 06:20 PM PST -ExperimentsInHonesty,2024-03-01T17:11:34Z,- ExperimentsInHonesty opened issue: [6404](https://github.com/hackforla/website/issues/6404) at 2024-03-01 09:11 AM PST -ExperimentsInHonesty,2024-03-01T17:32:46Z,- ExperimentsInHonesty assigned to issue: [6404](https://github.com/hackforla/website/issues/6404) at 2024-03-01 09:32 AM PST -ExperimentsInHonesty,2024-03-01T17:38:34Z,- ExperimentsInHonesty closed issue as completed: [6404](https://github.com/hackforla/website/issues/6404#event-11982309617) at 2024-03-01 09:38 AM PST -ExperimentsInHonesty,2024-03-01T17:41:00Z,- ExperimentsInHonesty commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1973614943) at 2024-03-01 09:41 AM PST -ExperimentsInHonesty,2024-03-01T17:45:40Z,- ExperimentsInHonesty commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-1973621705) at 2024-03-01 09:45 AM PST -ExperimentsInHonesty,2024-03-03T17:13:05Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1975233734) at 2024-03-03 09:13 AM PST -ExperimentsInHonesty,2024-03-03T17:24:19Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1975236387) at 2024-03-03 09:24 AM PST -ExperimentsInHonesty,2024-03-03T17:47:59Z,- ExperimentsInHonesty commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-1975242862) at 2024-03-03 09:47 AM PST -ExperimentsInHonesty,2024-03-03T17:49:28Z,- ExperimentsInHonesty commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1975243208) at 2024-03-03 09:49 AM PST -ExperimentsInHonesty,2024-03-03T19:11:02Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1975267449) at 2024-03-03 11:11 AM PST -ExperimentsInHonesty,2024-03-04T00:04:26Z,- ExperimentsInHonesty commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1975410198) at 2024-03-03 04:04 PM PST -ExperimentsInHonesty,2024-03-04T00:04:50Z,- ExperimentsInHonesty commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1975410408) at 2024-03-03 04:04 PM PST -ExperimentsInHonesty,2024-03-04T00:26:08Z,- ExperimentsInHonesty commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975455167) at 2024-03-03 04:26 PM PST -ExperimentsInHonesty,2024-03-04T00:31:07Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1975457357) at 2024-03-03 04:31 PM PST -ExperimentsInHonesty,2024-03-04T00:56:24Z,- ExperimentsInHonesty opened issue: [6412](https://github.com/hackforla/website/issues/6412) at 2024-03-03 04:56 PM PST -ExperimentsInHonesty,2024-03-04T01:00:34Z,- ExperimentsInHonesty commented on issue: [4862](https://github.com/hackforla/website/issues/4862#issuecomment-1975472477) at 2024-03-03 05:00 PM PST -ExperimentsInHonesty,2024-03-04T01:06:39Z,- ExperimentsInHonesty commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1975476048) at 2024-03-03 05:06 PM PST -ExperimentsInHonesty,2024-03-04T01:07:55Z,- ExperimentsInHonesty closed issue as not planned: [5062](https://github.com/hackforla/website/issues/5062#event-11991966597) at 2024-03-03 05:07 PM PST -ExperimentsInHonesty,2024-03-04T01:20:07Z,- ExperimentsInHonesty commented on issue: [5159](https://github.com/hackforla/website/issues/5159#issuecomment-1975487082) at 2024-03-03 05:20 PM PST -ExperimentsInHonesty,2024-03-04T01:35:36Z,- ExperimentsInHonesty commented on issue: [5334](https://github.com/hackforla/website/issues/5334#issuecomment-1975501567) at 2024-03-03 05:35 PM PST -ExperimentsInHonesty,2024-03-04T01:58:52Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1975521879) at 2024-03-03 05:58 PM PST -ExperimentsInHonesty,2024-03-04T02:07:29Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1975528471) at 2024-03-03 06:07 PM PST -ExperimentsInHonesty,2024-03-04T03:01:55Z,- ExperimentsInHonesty commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975569205) at 2024-03-03 07:01 PM PST -ExperimentsInHonesty,2024-03-04T03:10:48Z,- ExperimentsInHonesty commented on issue: [5202](https://github.com/hackforla/website/issues/5202#issuecomment-1975585776) at 2024-03-03 07:10 PM PST -ExperimentsInHonesty,2024-03-04T03:14:56Z,- ExperimentsInHonesty commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1975594589) at 2024-03-03 07:14 PM PST -ExperimentsInHonesty,2024-03-04T04:00:00Z,- ExperimentsInHonesty commented on issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-1975655651) at 2024-03-03 08:00 PM PST -ExperimentsInHonesty,2024-03-04T04:04:06Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1975658529) at 2024-03-03 08:04 PM PST -ExperimentsInHonesty,2024-03-04T04:16:36Z,- ExperimentsInHonesty commented on issue: [5995](https://github.com/hackforla/website/issues/5995#issuecomment-1975667654) at 2024-03-03 08:16 PM PST -ExperimentsInHonesty,2024-03-04T04:45:30Z,- ExperimentsInHonesty closed issue as not planned: [1796](https://github.com/hackforla/website/issues/1796#event-11993166722) at 2024-03-03 08:45 PM PST -ExperimentsInHonesty,2024-03-04T05:30:31Z,- ExperimentsInHonesty commented on issue: [6114](https://github.com/hackforla/website/issues/6114#issuecomment-1975762014) at 2024-03-03 09:30 PM PST -ExperimentsInHonesty,2024-03-04T05:30:33Z,- ExperimentsInHonesty closed issue as completed: [6114](https://github.com/hackforla/website/issues/6114#event-11993458666) at 2024-03-03 09:30 PM PST -ExperimentsInHonesty,2024-03-04T05:46:05Z,- ExperimentsInHonesty commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1975776628) at 2024-03-03 09:46 PM PST -ExperimentsInHonesty,2024-03-04T06:00:19Z,- ExperimentsInHonesty commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1975790547) at 2024-03-03 10:00 PM PST -ExperimentsInHonesty,2024-03-04T06:03:22Z,- ExperimentsInHonesty commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-1975794131) at 2024-03-03 10:03 PM PST -ExperimentsInHonesty,2024-03-04T06:03:39Z,- ExperimentsInHonesty commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-1975794398) at 2024-03-03 10:03 PM PST -ExperimentsInHonesty,2024-03-04T06:21:04Z,- ExperimentsInHonesty commented on issue: [6404](https://github.com/hackforla/website/issues/6404#issuecomment-1975811615) at 2024-03-03 10:21 PM PST -ExperimentsInHonesty,2024-03-04T06:24:31Z,- ExperimentsInHonesty commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1975815576) at 2024-03-03 10:24 PM PST -ExperimentsInHonesty,2024-03-04T06:49:07Z,- ExperimentsInHonesty commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1975845128) at 2024-03-03 10:49 PM PST -ExperimentsInHonesty,2024-03-04T06:52:18Z,- ExperimentsInHonesty commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-1975848582) at 2024-03-03 10:52 PM PST -ExperimentsInHonesty,2024-03-04T07:01:48Z,- ExperimentsInHonesty commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-1975858949) at 2024-03-03 11:01 PM PST -ExperimentsInHonesty,2024-03-04T07:12:07Z,- ExperimentsInHonesty commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1975870438) at 2024-03-03 11:12 PM PST -ExperimentsInHonesty,2024-03-04T07:14:39Z,- ExperimentsInHonesty commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1975873272) at 2024-03-03 11:14 PM PST -ExperimentsInHonesty,2024-03-04T07:15:03Z,- ExperimentsInHonesty commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1975873747) at 2024-03-03 11:15 PM PST -ExperimentsInHonesty,2024-03-04T07:20:26Z,- ExperimentsInHonesty commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1975880105) at 2024-03-03 11:20 PM PST -ExperimentsInHonesty,2024-03-04T07:20:33Z,- ExperimentsInHonesty assigned to issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1975880105) at 2024-03-03 11:20 PM PST -ExperimentsInHonesty,2024-03-05T01:26:10Z,- ExperimentsInHonesty commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1977775515) at 2024-03-04 05:26 PM PST -ExperimentsInHonesty,2024-03-05T01:33:27Z,- ExperimentsInHonesty commented on issue: [5202](https://github.com/hackforla/website/issues/5202#issuecomment-1977781752) at 2024-03-04 05:33 PM PST -ExperimentsInHonesty,2024-03-05T01:43:14Z,- ExperimentsInHonesty commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1977790710) at 2024-03-04 05:43 PM PST -ExperimentsInHonesty,2024-03-05T01:46:18Z,- ExperimentsInHonesty commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1977794023) at 2024-03-04 05:46 PM PST -ExperimentsInHonesty,2024-03-08T21:21:33Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1986436520) at 2024-03-08 01:21 PM PST -ExperimentsInHonesty,2024-03-08T21:35:23Z,- ExperimentsInHonesty commented on issue: [6380](https://github.com/hackforla/website/issues/6380#issuecomment-1986453258) at 2024-03-08 01:35 PM PST -ExperimentsInHonesty,2024-03-08T21:39:19Z,- ExperimentsInHonesty commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1986457424) at 2024-03-08 01:39 PM PST -ExperimentsInHonesty,2024-03-13T00:25:39Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-1992820039) at 2024-03-12 05:25 PM PDT -ExperimentsInHonesty,2024-03-15T07:08:27Z,- ExperimentsInHonesty commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1999060052) at 2024-03-15 12:08 AM PDT -ExperimentsInHonesty,2024-03-15T07:23:08Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1999076857) at 2024-03-15 12:23 AM PDT -ExperimentsInHonesty,2024-03-15T07:23:43Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1999077419) at 2024-03-15 12:23 AM PDT -ExperimentsInHonesty,2024-03-15T07:29:56Z,- ExperimentsInHonesty closed issue as completed: [6039](https://github.com/hackforla/website/issues/6039#event-12127687461) at 2024-03-15 12:29 AM PDT -ExperimentsInHonesty,2024-03-15T07:30:20Z,- ExperimentsInHonesty commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1999084385) at 2024-03-15 12:30 AM PDT -ExperimentsInHonesty,2024-03-15T08:02:59Z,- ExperimentsInHonesty commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1999123534) at 2024-03-15 01:02 AM PDT -ExperimentsInHonesty,2024-03-15T08:06:16Z,- ExperimentsInHonesty commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1999127995) at 2024-03-15 01:06 AM PDT -ExperimentsInHonesty,2024-03-15T08:10:50Z,- ExperimentsInHonesty commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-1999133863) at 2024-03-15 01:10 AM PDT -ExperimentsInHonesty,2024-03-15T08:21:24Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1999148153) at 2024-03-15 01:21 AM PDT -ExperimentsInHonesty,2024-03-15T08:43:37Z,- ExperimentsInHonesty commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-1999182111) at 2024-03-15 01:43 AM PDT -ExperimentsInHonesty,2024-03-15T09:00:57Z,- ExperimentsInHonesty commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-1999210575) at 2024-03-15 02:00 AM PDT -ExperimentsInHonesty,2024-03-19T00:22:38Z,- ExperimentsInHonesty unassigned from issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1989712362) at 2024-03-18 05:22 PM PDT -ExperimentsInHonesty,2024-03-19T00:31:50Z,- ExperimentsInHonesty commented on issue: [5242](https://github.com/hackforla/website/issues/5242#issuecomment-2005469220) at 2024-03-18 05:31 PM PDT -ExperimentsInHonesty,2024-03-19T00:49:04Z,- ExperimentsInHonesty commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-2005514397) at 2024-03-18 05:49 PM PDT -ExperimentsInHonesty,2024-03-19T01:02:17Z,- ExperimentsInHonesty commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2005540568) at 2024-03-18 06:02 PM PDT -ExperimentsInHonesty,2024-03-19T01:02:57Z,- ExperimentsInHonesty commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2005541155) at 2024-03-18 06:02 PM PDT -ExperimentsInHonesty,2024-03-19T01:34:27Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2005578473) at 2024-03-18 06:34 PM PDT -ExperimentsInHonesty,2024-03-24T16:15:32Z,- ExperimentsInHonesty commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2016857951) at 2024-03-24 09:15 AM PDT -ExperimentsInHonesty,2024-03-24T16:38:29Z,- ExperimentsInHonesty commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2016863723) at 2024-03-24 09:38 AM PDT -ExperimentsInHonesty,2024-03-24T16:45:09Z,- ExperimentsInHonesty commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-2016865637) at 2024-03-24 09:45 AM PDT -ExperimentsInHonesty,2024-03-24T17:54:00Z,- ExperimentsInHonesty reopened issue: [6478](https://github.com/hackforla/website/issues/6478#event-12207703051) at 2024-03-24 10:54 AM PDT -ExperimentsInHonesty,2024-03-25T21:03:16Z,- ExperimentsInHonesty commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2018910722) at 2024-03-25 02:03 PM PDT -ExperimentsInHonesty,2024-03-25T21:40:11Z,- ExperimentsInHonesty commented on issue: [6510](https://github.com/hackforla/website/issues/6510#issuecomment-2018966461) at 2024-03-25 02:40 PM PDT -ExperimentsInHonesty,2024-03-25T21:41:10Z,- ExperimentsInHonesty commented on issue: [6482](https://github.com/hackforla/website/issues/6482#issuecomment-2018967756) at 2024-03-25 02:41 PM PDT -ExperimentsInHonesty,2024-03-25T21:41:54Z,- ExperimentsInHonesty commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2018968669) at 2024-03-25 02:41 PM PDT -ExperimentsInHonesty,2024-03-25T21:42:53Z,- ExperimentsInHonesty commented on issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-2018969992) at 2024-03-25 02:42 PM PDT -ExperimentsInHonesty,2024-03-25T21:51:02Z,- ExperimentsInHonesty commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-2018980789) at 2024-03-25 02:51 PM PDT -ExperimentsInHonesty,2024-03-25T23:51:48Z,- ExperimentsInHonesty commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2019120148) at 2024-03-25 04:51 PM PDT -ExperimentsInHonesty,2024-03-25T23:51:49Z,- ExperimentsInHonesty reopened issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2019120148) at 2024-03-25 04:51 PM PDT -ExperimentsInHonesty,2024-03-26T01:12:20Z,- ExperimentsInHonesty commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2019208970) at 2024-03-25 06:12 PM PDT -ExperimentsInHonesty,2024-03-26T01:37:29Z,- ExperimentsInHonesty commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2019228385) at 2024-03-25 06:37 PM PDT -ExperimentsInHonesty,2024-03-26T01:56:37Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2019246917) at 2024-03-25 06:56 PM PDT -ExperimentsInHonesty,2024-03-26T21:53:43Z,- ExperimentsInHonesty commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-2021537292) at 2024-03-26 02:53 PM PDT -ExperimentsInHonesty,2024-03-26T21:56:07Z,- ExperimentsInHonesty commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2021539978) at 2024-03-26 02:56 PM PDT -ExperimentsInHonesty,2024-03-26T21:57:27Z,- ExperimentsInHonesty commented on issue: [6420](https://github.com/hackforla/website/issues/6420#issuecomment-2021542027) at 2024-03-26 02:57 PM PDT -ExperimentsInHonesty,2024-03-26T21:59:35Z,- ExperimentsInHonesty commented on issue: [6418](https://github.com/hackforla/website/issues/6418#issuecomment-2021544268) at 2024-03-26 02:59 PM PDT -ExperimentsInHonesty,2024-03-26T22:09:47Z,- ExperimentsInHonesty commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2021556298) at 2024-03-26 03:09 PM PDT -ExperimentsInHonesty,2024-03-26T22:17:51Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-2021565194) at 2024-03-26 03:17 PM PDT -ExperimentsInHonesty,2024-03-26T22:33:33Z,- ExperimentsInHonesty commented on issue: [4276](https://github.com/hackforla/website/issues/4276#issuecomment-2021583182) at 2024-03-26 03:33 PM PDT -ExperimentsInHonesty,2024-03-26T22:33:33Z,- ExperimentsInHonesty closed issue as completed: [4276](https://github.com/hackforla/website/issues/4276#event-12257435552) at 2024-03-26 03:33 PM PDT -ExperimentsInHonesty,2024-03-26T22:40:11Z,- ExperimentsInHonesty assigned to issue: [4342](https://github.com/hackforla/website/issues/4342#issuecomment-1496655562) at 2024-03-26 03:40 PM PDT -ExperimentsInHonesty,2024-03-26T22:46:14Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2021595207) at 2024-03-26 03:46 PM PDT -ExperimentsInHonesty,2024-03-26T23:27:14Z,- ExperimentsInHonesty commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2021634520) at 2024-03-26 04:27 PM PDT -ExperimentsInHonesty,2024-03-26T23:28:58Z,- ExperimentsInHonesty commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2021636339) at 2024-03-26 04:28 PM PDT -ExperimentsInHonesty,2024-03-26T23:30:11Z,- ExperimentsInHonesty commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2021639632) at 2024-03-26 04:30 PM PDT -ExperimentsInHonesty,2024-03-27T00:14:36Z,- ExperimentsInHonesty commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2021694053) at 2024-03-26 05:14 PM PDT -ExperimentsInHonesty,2024-03-28T16:27:58Z,- ExperimentsInHonesty commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2025628314) at 2024-03-28 09:27 AM PDT -ExperimentsInHonesty,2024-03-31T17:10:05Z,- ExperimentsInHonesty commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2028826172) at 2024-03-31 10:10 AM PDT -ExperimentsInHonesty,2024-03-31T17:21:57Z,- ExperimentsInHonesty commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2028832372) at 2024-03-31 10:21 AM PDT -ExperimentsInHonesty,2024-03-31T17:45:48Z,- ExperimentsInHonesty commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-2028841737) at 2024-03-31 10:45 AM PDT -ExperimentsInHonesty,2024-03-31T17:45:48Z,- ExperimentsInHonesty closed issue as completed: [6361](https://github.com/hackforla/website/issues/6361#event-12304352457) at 2024-03-31 10:45 AM PDT -ExperimentsInHonesty,2024-03-31T17:51:35Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2028843176) at 2024-03-31 10:51 AM PDT -ExperimentsInHonesty,2024-04-02T01:00:41Z,- ExperimentsInHonesty commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2030891263) at 2024-04-01 06:00 PM PDT -ExperimentsInHonesty,2024-04-02T01:41:57Z,- ExperimentsInHonesty commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2030922088) at 2024-04-01 06:41 PM PDT -ExperimentsInHonesty,2024-04-02T01:44:42Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2030924477) at 2024-04-01 06:44 PM PDT -ExperimentsInHonesty,2024-04-02T02:01:21Z,- ExperimentsInHonesty commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2030940916) at 2024-04-01 07:01 PM PDT -ExperimentsInHonesty,2024-04-02T02:05:10Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2030944823) at 2024-04-01 07:05 PM PDT -ExperimentsInHonesty,2024-04-02T21:29:13Z,- ExperimentsInHonesty opened issue: [6558](https://github.com/hackforla/website/issues/6558) at 2024-04-02 02:29 PM PDT -ExperimentsInHonesty,2024-04-02T21:37:27Z,- ExperimentsInHonesty commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2033142071) at 2024-04-02 02:37 PM PDT -ExperimentsInHonesty,2024-04-02T21:59:21Z,- ExperimentsInHonesty commented on issue: [5844](https://github.com/hackforla/website/issues/5844#issuecomment-2033175798) at 2024-04-02 02:59 PM PDT -ExperimentsInHonesty,2024-04-02T22:01:34Z,- ExperimentsInHonesty commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2033178992) at 2024-04-02 03:01 PM PDT -ExperimentsInHonesty,2024-04-02T22:14:00Z,- ExperimentsInHonesty commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2033192876) at 2024-04-02 03:14 PM PDT -ExperimentsInHonesty,2024-04-02T22:24:42Z,- ExperimentsInHonesty commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2033204502) at 2024-04-02 03:24 PM PDT -ExperimentsInHonesty,2024-04-02T22:48:08Z,- ExperimentsInHonesty commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2033230019) at 2024-04-02 03:48 PM PDT -ExperimentsInHonesty,2024-04-02T22:50:54Z,- ExperimentsInHonesty commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2033232807) at 2024-04-02 03:50 PM PDT -ExperimentsInHonesty,2024-04-02T22:51:44Z,- ExperimentsInHonesty commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2033234940) at 2024-04-02 03:51 PM PDT -ExperimentsInHonesty,2024-04-03T20:11:02Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-03 01:11 PM PDT -ExperimentsInHonesty,2024-04-03T20:16:13Z,- ExperimentsInHonesty commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2035501645) at 2024-04-03 01:16 PM PDT -ExperimentsInHonesty,2024-04-03T21:30:59Z,- ExperimentsInHonesty commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2035630760) at 2024-04-03 02:30 PM PDT -ExperimentsInHonesty,2024-04-04T18:20:01Z,- ExperimentsInHonesty commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2037889757) at 2024-04-04 11:20 AM PDT -ExperimentsInHonesty,2024-04-05T17:33:16Z,- ExperimentsInHonesty commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2040310588) at 2024-04-05 10:33 AM PDT -ExperimentsInHonesty,2024-04-07T18:08:50Z,- ExperimentsInHonesty commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2041548567) at 2024-04-07 11:08 AM PDT -ExperimentsInHonesty,2024-04-07T18:31:19Z,- ExperimentsInHonesty commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2041555977) at 2024-04-07 11:31 AM PDT -ExperimentsInHonesty,2024-04-07T18:36:36Z,- ExperimentsInHonesty commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2041557229) at 2024-04-07 11:36 AM PDT -ExperimentsInHonesty,2024-04-07T18:45:40Z,- ExperimentsInHonesty commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2041559199) at 2024-04-07 11:45 AM PDT -ExperimentsInHonesty,2024-04-07T19:02:26Z,- ExperimentsInHonesty commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-2041571529) at 2024-04-07 12:02 PM PDT -ExperimentsInHonesty,2024-04-07T19:02:26Z,- ExperimentsInHonesty closed issue as completed: [6225](https://github.com/hackforla/website/issues/6225#event-12384886070) at 2024-04-07 12:02 PM PDT -ExperimentsInHonesty,2024-04-08T00:54:29Z,- ExperimentsInHonesty commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-2041682576) at 2024-04-07 05:54 PM PDT -ExperimentsInHonesty,2024-04-08T00:54:29Z,- ExperimentsInHonesty reopened issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-2041682576) at 2024-04-07 05:54 PM PDT -ExperimentsInHonesty,2024-04-08T00:59:12Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2041685637) at 2024-04-07 05:59 PM PDT -ExperimentsInHonesty,2024-04-08T21:00:19Z,- ExperimentsInHonesty commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-2043633848) at 2024-04-08 02:00 PM PDT -ExperimentsInHonesty,2024-04-09T00:44:45Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2043940837) at 2024-04-08 05:44 PM PDT -ExperimentsInHonesty,2024-04-09T20:42:08Z,- ExperimentsInHonesty opened issue: [6614](https://github.com/hackforla/website/issues/6614) at 2024-04-09 01:42 PM PDT -ExperimentsInHonesty,2024-04-09T20:44:26Z,- ExperimentsInHonesty assigned to issue: [6614](https://github.com/hackforla/website/issues/6614) at 2024-04-09 01:44 PM PDT -ExperimentsInHonesty,2024-04-09T22:04:39Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2046120452) at 2024-04-09 03:04 PM PDT -ExperimentsInHonesty,2024-04-09T22:07:47Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2046123766) at 2024-04-09 03:07 PM PDT -ExperimentsInHonesty,2024-04-09T23:02:25Z,- ExperimentsInHonesty commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2046173895) at 2024-04-09 04:02 PM PDT -ExperimentsInHonesty,2024-04-09T23:50:20Z,- ExperimentsInHonesty commented on issue: [6326](https://github.com/hackforla/website/issues/6326#issuecomment-2046211680) at 2024-04-09 04:50 PM PDT -ExperimentsInHonesty,2024-04-10T01:38:18Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2046304370) at 2024-04-09 06:38 PM PDT -ExperimentsInHonesty,2024-04-10T01:49:27Z,- ExperimentsInHonesty commented on issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2046313581) at 2024-04-09 06:49 PM PDT -ExperimentsInHonesty,2024-04-10T01:52:08Z,- ExperimentsInHonesty closed issue as completed: [6389](https://github.com/hackforla/website/issues/6389#event-12415045685) at 2024-04-09 06:52 PM PDT -ExperimentsInHonesty,2024-04-10T02:12:12Z,- ExperimentsInHonesty commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2046334159) at 2024-04-09 07:12 PM PDT -ExperimentsInHonesty,2024-04-10T02:13:16Z,- ExperimentsInHonesty commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2046334879) at 2024-04-09 07:13 PM PDT -ExperimentsInHonesty,2024-04-10T02:14:31Z,- ExperimentsInHonesty commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2046335793) at 2024-04-09 07:14 PM PDT -ExperimentsInHonesty,2024-04-10T02:20:20Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2046340021) at 2024-04-09 07:20 PM PDT -ExperimentsInHonesty,2024-04-10T02:37:29Z,- ExperimentsInHonesty opened issue: [6615](https://github.com/hackforla/website/issues/6615) at 2024-04-09 07:37 PM PDT -ExperimentsInHonesty,2024-04-10T02:47:47Z,- ExperimentsInHonesty commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2046424757) at 2024-04-09 07:47 PM PDT -ExperimentsInHonesty,2024-04-10T22:01:31Z,- ExperimentsInHonesty closed issue as completed: [6296](https://github.com/hackforla/website/issues/6296#event-12428673439) at 2024-04-10 03:01 PM PDT -ExperimentsInHonesty,2024-04-10T22:01:53Z,- ExperimentsInHonesty commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-2048511426) at 2024-04-10 03:01 PM PDT -ExperimentsInHonesty,2024-04-10T23:07:29Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2048576438) at 2024-04-10 04:07 PM PDT -ExperimentsInHonesty,2024-04-14T18:01:42Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2054135875) at 2024-04-14 11:01 AM PDT -ExperimentsInHonesty,2024-04-14T18:09:42Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2054137735) at 2024-04-14 11:09 AM PDT -ExperimentsInHonesty,2024-04-14T19:01:46Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2054155370) at 2024-04-14 12:01 PM PDT -ExperimentsInHonesty,2024-04-15T20:21:41Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057736401) at 2024-04-15 01:21 PM PDT -ExperimentsInHonesty,2024-04-15T20:56:13Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057792260) at 2024-04-15 01:56 PM PDT -ExperimentsInHonesty,2024-04-15T21:13:55Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057820250) at 2024-04-15 02:13 PM PDT -ExperimentsInHonesty,2024-04-15T21:57:07Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057879755) at 2024-04-15 02:57 PM PDT -ExperimentsInHonesty,2024-04-16T00:14:21Z,- ExperimentsInHonesty commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2058018157) at 2024-04-15 05:14 PM PDT -ExperimentsInHonesty,2024-04-16T01:35:14Z,- ExperimentsInHonesty commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2058078988) at 2024-04-15 06:35 PM PDT -ExperimentsInHonesty,2024-04-16T01:36:32Z,- ExperimentsInHonesty closed issue as completed: [5758](https://github.com/hackforla/website/issues/5758#event-12480261266) at 2024-04-15 06:36 PM PDT -ExperimentsInHonesty,2024-04-16T01:38:53Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2058081836) at 2024-04-15 06:38 PM PDT -ExperimentsInHonesty,2024-04-16T16:37:08Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2059505858) at 2024-04-16 09:37 AM PDT -ExperimentsInHonesty,2024-04-16T16:39:10Z,- ExperimentsInHonesty commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2059509192) at 2024-04-16 09:39 AM PDT -ExperimentsInHonesty,2024-04-16T16:42:09Z,- ExperimentsInHonesty commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2059514362) at 2024-04-16 09:42 AM PDT -ExperimentsInHonesty,2024-04-16T16:56:33Z,- ExperimentsInHonesty commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059537181) at 2024-04-16 09:56 AM PDT -ExperimentsInHonesty,2024-04-16T17:14:13Z,- ExperimentsInHonesty commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2059566587) at 2024-04-16 10:14 AM PDT -ExperimentsInHonesty,2024-04-16T17:28:37Z,- ExperimentsInHonesty commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2059588039) at 2024-04-16 10:28 AM PDT -ExperimentsInHonesty,2024-04-16T22:35:28Z,- ExperimentsInHonesty commented on issue: [6124](https://github.com/hackforla/website/issues/6124#issuecomment-2060022178) at 2024-04-16 03:35 PM PDT -ExperimentsInHonesty,2024-04-16T22:36:09Z,- ExperimentsInHonesty commented on issue: [6494](https://github.com/hackforla/website/issues/6494#issuecomment-2060022796) at 2024-04-16 03:36 PM PDT -ExperimentsInHonesty,2024-04-16T22:42:07Z,- ExperimentsInHonesty assigned to issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-2005514397) at 2024-04-16 03:42 PM PDT -ExperimentsInHonesty,2024-04-16T22:50:59Z,- ExperimentsInHonesty assigned to issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2054129686) at 2024-04-16 03:50 PM PDT -ExperimentsInHonesty,2024-04-16T22:55:43Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2060040648) at 2024-04-16 03:55 PM PDT -ExperimentsInHonesty,2024-04-16T22:55:57Z,- ExperimentsInHonesty assigned to issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-1989550005) at 2024-04-16 03:55 PM PDT -ExperimentsInHonesty,2024-04-16T22:56:08Z,- ExperimentsInHonesty assigned to issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1913746149) at 2024-04-16 03:56 PM PDT -ExperimentsInHonesty,2024-04-16T22:57:46Z,- ExperimentsInHonesty assigned to issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2060040648) at 2024-04-16 03:57 PM PDT -ExperimentsInHonesty,2024-04-17T18:30:33Z,- ExperimentsInHonesty commented on issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2061954860) at 2024-04-17 11:30 AM PDT -ExperimentsInHonesty,2024-04-17T18:33:04Z,- ExperimentsInHonesty commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2061961305) at 2024-04-17 11:33 AM PDT -ExperimentsInHonesty,2024-04-22T22:35:30Z,- ExperimentsInHonesty commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2071063699) at 2024-04-22 03:35 PM PDT -ExperimentsInHonesty,2024-04-22T22:57:32Z,- ExperimentsInHonesty commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2071088728) at 2024-04-22 03:57 PM PDT -ExperimentsInHonesty,2024-04-23T00:13:31Z,- ExperimentsInHonesty commented on pull request: [6660](https://github.com/hackforla/website/pull/6660#issuecomment-2071157320) at 2024-04-22 05:13 PM PDT -ExperimentsInHonesty,2024-04-23T00:16:49Z,- ExperimentsInHonesty commented on pull request: [6660](https://github.com/hackforla/website/pull/6660#issuecomment-2071160336) at 2024-04-22 05:16 PM PDT -ExperimentsInHonesty,2024-04-23T01:17:42Z,- ExperimentsInHonesty commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2071220826) at 2024-04-22 06:17 PM PDT -ExperimentsInHonesty,2024-04-23T17:58:07Z,- ExperimentsInHonesty commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2073047735) at 2024-04-23 10:58 AM PDT -ExperimentsInHonesty,2024-04-23T18:24:21Z,- ExperimentsInHonesty commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2073098283) at 2024-04-23 11:24 AM PDT -ExperimentsInHonesty,2024-04-23T18:30:50Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2073118589) at 2024-04-23 11:30 AM PDT -ExperimentsInHonesty,2024-04-23T22:52:45Z,- ExperimentsInHonesty commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2073608896) at 2024-04-23 03:52 PM PDT -ExperimentsInHonesty,2024-04-23T22:56:03Z,- ExperimentsInHonesty assigned to issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2028832372) at 2024-04-23 03:56 PM PDT -ExperimentsInHonesty,2024-04-24T00:02:52Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2073682298) at 2024-04-23 05:02 PM PDT -ExperimentsInHonesty,2024-04-24T00:08:37Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2073687635) at 2024-04-23 05:08 PM PDT -ExperimentsInHonesty,2024-04-24T00:15:54Z,- ExperimentsInHonesty commented on issue: [6700](https://github.com/hackforla/website/issues/6700#issuecomment-2073694582) at 2024-04-23 05:15 PM PDT -ExperimentsInHonesty,2024-04-25T00:40:03Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2076106376) at 2024-04-24 05:40 PM PDT -ExperimentsInHonesty,2024-04-25T01:15:35Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2076129649) at 2024-04-24 06:15 PM PDT -ExperimentsInHonesty,2024-04-25T02:23:22Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2076203968) at 2024-04-24 07:23 PM PDT -ExperimentsInHonesty,2024-04-25T16:40:47Z,- ExperimentsInHonesty unassigned from issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739570) at 2024-04-25 09:40 AM PDT -ExperimentsInHonesty,2024-04-26T18:50:24Z,- ExperimentsInHonesty commented on issue: [6765](https://github.com/hackforla/website/issues/6765#issuecomment-2079952460) at 2024-04-26 11:50 AM PDT -ExperimentsInHonesty,2024-04-26T18:50:24Z,- ExperimentsInHonesty closed issue as completed: [6765](https://github.com/hackforla/website/issues/6765#event-12627336971) at 2024-04-26 11:50 AM PDT -ExperimentsInHonesty,2024-04-26T18:57:51Z,- ExperimentsInHonesty commented on issue: [6763](https://github.com/hackforla/website/issues/6763#issuecomment-2079962377) at 2024-04-26 11:57 AM PDT -ExperimentsInHonesty,2024-04-26T19:55:50Z,- ExperimentsInHonesty unassigned from issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2078024067) at 2024-04-26 12:55 PM PDT -ExperimentsInHonesty,2024-04-28T16:43:04Z,- ExperimentsInHonesty commented on issue: [6639](https://github.com/hackforla/website/issues/6639#issuecomment-2081548524) at 2024-04-28 09:43 AM PDT -ExperimentsInHonesty,2024-04-28T16:44:49Z,- ExperimentsInHonesty commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2081550481) at 2024-04-28 09:44 AM PDT -ExperimentsInHonesty,2024-04-28T17:04:07Z,- ExperimentsInHonesty commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2081556895) at 2024-04-28 10:04 AM PDT -ExperimentsInHonesty,2024-04-28T17:07:04Z,- ExperimentsInHonesty commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081557664) at 2024-04-28 10:07 AM PDT -ExperimentsInHonesty,2024-04-28T17:13:47Z,- ExperimentsInHonesty commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2081559554) at 2024-04-28 10:13 AM PDT -ExperimentsInHonesty,2024-04-28T17:25:08Z,- ExperimentsInHonesty commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2081562604) at 2024-04-28 10:25 AM PDT -ExperimentsInHonesty,2024-04-29T23:07:05Z,- ExperimentsInHonesty opened issue: [6783](https://github.com/hackforla/website/issues/6783) at 2024-04-29 04:07 PM PDT -ExperimentsInHonesty,2024-04-29T23:56:01Z,- ExperimentsInHonesty opened issue: [6784](https://github.com/hackforla/website/issues/6784) at 2024-04-29 04:56 PM PDT -ExperimentsInHonesty,2024-04-30T00:47:02Z,- ExperimentsInHonesty commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2083982045) at 2024-04-29 05:47 PM PDT -ExperimentsInHonesty,2024-04-30T01:11:42Z,- ExperimentsInHonesty commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-2084044357) at 2024-04-29 06:11 PM PDT -ExperimentsInHonesty,2024-04-30T01:18:27Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2084059689) at 2024-04-29 06:18 PM PDT -ExperimentsInHonesty,2024-04-30T01:18:27Z,- ExperimentsInHonesty closed issue as not planned: [6269](https://github.com/hackforla/website/issues/6269#event-12650969510) at 2024-04-29 06:18 PM PDT -ExperimentsInHonesty,2024-04-30T01:19:56Z,- ExperimentsInHonesty unassigned from issue: [4932](https://github.com/hackforla/website/issues/4932) at 2024-04-29 06:19 PM PDT -ExperimentsInHonesty,2024-04-30T01:30:06Z,- ExperimentsInHonesty commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2084087409) at 2024-04-29 06:30 PM PDT -ExperimentsInHonesty,2024-04-30T01:35:18Z,- ExperimentsInHonesty commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-2084098415) at 2024-04-29 06:35 PM PDT -ExperimentsInHonesty,2024-04-30T01:42:09Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2084112675) at 2024-04-29 06:42 PM PDT -ExperimentsInHonesty,2024-04-30T18:34:32Z,- ExperimentsInHonesty commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2086484338) at 2024-04-30 11:34 AM PDT -ExperimentsInHonesty,2024-05-03T21:54:55Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2093812219) at 2024-05-03 02:54 PM PDT -ExperimentsInHonesty,2024-05-03T22:40:06Z,- ExperimentsInHonesty commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2093850057) at 2024-05-03 03:40 PM PDT -ExperimentsInHonesty,2024-05-03T22:49:48Z,- ExperimentsInHonesty commented on issue: [6805](https://github.com/hackforla/website/issues/6805#issuecomment-2093857862) at 2024-05-03 03:49 PM PDT -ExperimentsInHonesty,2024-05-03T22:54:32Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2093861444) at 2024-05-03 03:54 PM PDT -ExperimentsInHonesty,2024-05-03T23:30:57Z,- ExperimentsInHonesty commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2093883924) at 2024-05-03 04:30 PM PDT -ExperimentsInHonesty,2024-05-03T23:34:34Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2093885537) at 2024-05-03 04:34 PM PDT -ExperimentsInHonesty,2024-05-03T23:37:43Z,- ExperimentsInHonesty commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-2093887232) at 2024-05-03 04:37 PM PDT -ExperimentsInHonesty,2024-05-03T23:40:45Z,- ExperimentsInHonesty commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2093888903) at 2024-05-03 04:40 PM PDT -ExperimentsInHonesty,2024-05-05T17:41:25Z,- ExperimentsInHonesty opened issue: [6819](https://github.com/hackforla/website/issues/6819) at 2024-05-05 10:41 AM PDT -ExperimentsInHonesty,2024-05-05T17:42:10Z,- ExperimentsInHonesty assigned to issue: [6819](https://github.com/hackforla/website/issues/6819) at 2024-05-05 10:42 AM PDT -ExperimentsInHonesty,2024-05-05T18:48:14Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2094910273) at 2024-05-05 11:48 AM PDT -ExperimentsInHonesty,2024-05-06T01:57:56Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2095072936) at 2024-05-05 06:57 PM PDT -ExperimentsInHonesty,2024-05-06T04:22:53Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2095175216) at 2024-05-05 09:22 PM PDT -ExperimentsInHonesty,2024-05-06T04:25:08Z,- ExperimentsInHonesty commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2095176583) at 2024-05-05 09:25 PM PDT -ExperimentsInHonesty,2024-05-06T04:25:08Z,- ExperimentsInHonesty closed issue as not planned: [5948](https://github.com/hackforla/website/issues/5948#event-12709794809) at 2024-05-05 09:25 PM PDT -ExperimentsInHonesty,2024-05-06T04:31:39Z,- ExperimentsInHonesty commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2095180971) at 2024-05-05 09:31 PM PDT -ExperimentsInHonesty,2024-05-06T22:37:12Z,- ExperimentsInHonesty commented on issue: [6807](https://github.com/hackforla/website/issues/6807#issuecomment-2097043959) at 2024-05-06 03:37 PM PDT -ExperimentsInHonesty,2024-05-06T22:53:24Z,- ExperimentsInHonesty commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2097060377) at 2024-05-06 03:53 PM PDT -ExperimentsInHonesty,2024-05-07T00:20:57Z,- ExperimentsInHonesty commented on issue: [6805](https://github.com/hackforla/website/issues/6805#issuecomment-2097137975) at 2024-05-06 05:20 PM PDT -ExperimentsInHonesty,2024-05-07T00:24:57Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2097141267) at 2024-05-06 05:24 PM PDT -ExperimentsInHonesty,2024-05-07T00:36:35Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2097149996) at 2024-05-06 05:36 PM PDT -ExperimentsInHonesty,2024-05-07T00:55:46Z,- ExperimentsInHonesty closed issue as completed: [4470](https://github.com/hackforla/website/issues/4470#event-12721972464) at 2024-05-06 05:55 PM PDT -ExperimentsInHonesty,2024-05-07T16:46:08Z,- ExperimentsInHonesty commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2098886061) at 2024-05-07 09:46 AM PDT -ExperimentsInHonesty,2024-05-07T16:50:32Z,- ExperimentsInHonesty opened issue: [6833](https://github.com/hackforla/website/issues/6833) at 2024-05-07 09:50 AM PDT -ExperimentsInHonesty,2024-05-07T16:55:21Z,- ExperimentsInHonesty closed issue as completed: [6289](https://github.com/hackforla/website/issues/6289#event-12732609625) at 2024-05-07 09:55 AM PDT -ExperimentsInHonesty,2024-05-07T16:58:08Z,- ExperimentsInHonesty commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2098905705) at 2024-05-07 09:58 AM PDT -ExperimentsInHonesty,2024-05-07T17:00:27Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2098909438) at 2024-05-07 10:00 AM PDT -ExperimentsInHonesty,2024-05-07T17:09:08Z,- ExperimentsInHonesty commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2098924231) at 2024-05-07 10:09 AM PDT -ExperimentsInHonesty,2024-05-07T17:28:08Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2098955375) at 2024-05-07 10:28 AM PDT -ExperimentsInHonesty,2024-05-07T17:32:46Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-2098963127) at 2024-05-07 10:32 AM PDT -ExperimentsInHonesty,2024-05-07T17:55:02Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2098998183) at 2024-05-07 10:55 AM PDT -ExperimentsInHonesty,2024-05-07T21:02:59Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-2099305953) at 2024-05-07 02:02 PM PDT -ExperimentsInHonesty,2024-05-07T21:12:39Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2099318913) at 2024-05-07 02:12 PM PDT -ExperimentsInHonesty,2024-05-08T18:06:19Z,- ExperimentsInHonesty commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2101126228) at 2024-05-08 11:06 AM PDT -ExperimentsInHonesty,2024-05-08T18:06:22Z,- ExperimentsInHonesty reopened issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2101126228) at 2024-05-08 11:06 AM PDT -ExperimentsInHonesty,2024-05-10T00:59:53Z,- ExperimentsInHonesty commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2103666187) at 2024-05-09 05:59 PM PDT -ExperimentsInHonesty,2024-05-19T16:50:40Z,- ExperimentsInHonesty commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2119298242) at 2024-05-19 09:50 AM PDT -ExperimentsInHonesty,2024-05-19T16:53:05Z,- ExperimentsInHonesty commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2119298802) at 2024-05-19 09:53 AM PDT -ExperimentsInHonesty,2024-05-19T17:07:33Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119302757) at 2024-05-19 10:07 AM PDT -ExperimentsInHonesty,2024-05-19T17:34:04Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119308826) at 2024-05-19 10:34 AM PDT -ExperimentsInHonesty,2024-05-19T17:46:32Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119311601) at 2024-05-19 10:46 AM PDT -ExperimentsInHonesty,2024-05-20T17:16:45Z,- ExperimentsInHonesty opened issue: [6863](https://github.com/hackforla/website/issues/6863) at 2024-05-20 10:16 AM PDT -ExperimentsInHonesty,2024-05-21T01:37:14Z,- ExperimentsInHonesty assigned to issue: [4155](https://github.com/hackforla/website/issues/4155#issuecomment-1467224540) at 2024-05-20 06:37 PM PDT -ExperimentsInHonesty,2024-05-21T01:47:02Z,- ExperimentsInHonesty commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-2121548998) at 2024-05-20 06:47 PM PDT -ExperimentsInHonesty,2024-05-21T01:47:26Z,- ExperimentsInHonesty closed issue as not planned: [5375](https://github.com/hackforla/website/issues/5375#event-12872744752) at 2024-05-20 06:47 PM PDT -ExperimentsInHonesty,2024-05-21T01:59:10Z,- ExperimentsInHonesty commented on issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-2121563569) at 2024-05-20 06:59 PM PDT -ExperimentsInHonesty,2024-05-21T02:00:23Z,- ExperimentsInHonesty assigned to issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-2121563569) at 2024-05-20 07:00 PM PDT -ExperimentsInHonesty,2024-05-21T02:02:39Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2121566909) at 2024-05-20 07:02 PM PDT -ExperimentsInHonesty,2024-05-26T16:28:34Z,- ExperimentsInHonesty commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2132278024) at 2024-05-26 09:28 AM PDT -ExperimentsInHonesty,2024-05-26T16:59:23Z,- ExperimentsInHonesty commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2132285814) at 2024-05-26 09:59 AM PDT -ExperimentsInHonesty,2024-05-26T18:42:54Z,- ExperimentsInHonesty commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2132343262) at 2024-05-26 11:42 AM PDT -ExperimentsInHonesty,2024-05-26T18:50:49Z,- ExperimentsInHonesty commented on issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2132356023) at 2024-05-26 11:50 AM PDT -ExperimentsInHonesty,2024-05-29T22:28:12Z,- ExperimentsInHonesty commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-2138360625) at 2024-05-29 03:28 PM PDT -ExperimentsInHonesty,2024-05-29T22:28:12Z,- ExperimentsInHonesty reopened issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-2138360625) at 2024-05-29 03:28 PM PDT -ExperimentsInHonesty,2024-06-02T16:48:54Z,- ExperimentsInHonesty commented on issue: [6838](https://github.com/hackforla/website/issues/6838#issuecomment-2143939191) at 2024-06-02 09:48 AM PDT -ExperimentsInHonesty,2024-06-02T16:57:35Z,- ExperimentsInHonesty commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2143942627) at 2024-06-02 09:57 AM PDT -ExperimentsInHonesty,2024-06-02T20:46:05Z,- ExperimentsInHonesty commented on issue: [6903](https://github.com/hackforla/website/issues/6903#issuecomment-2144015615) at 2024-06-02 01:46 PM PDT -ExperimentsInHonesty,2024-06-02T20:52:18Z,- ExperimentsInHonesty commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2144017219) at 2024-06-02 01:52 PM PDT -ExperimentsInHonesty,2024-06-02T21:23:27Z,- ExperimentsInHonesty commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2144025602) at 2024-06-02 02:23 PM PDT -ExperimentsInHonesty,2024-06-02T21:27:14Z,- ExperimentsInHonesty commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2144026457) at 2024-06-02 02:27 PM PDT -ExperimentsInHonesty,2024-06-02T21:29:12Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2144026930) at 2024-06-02 02:29 PM PDT -ExperimentsInHonesty,2024-06-03T03:13:50Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2144199281) at 2024-06-02 08:13 PM PDT -ExperimentsInHonesty,2024-06-03T07:21:26Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2144457123) at 2024-06-03 12:21 AM PDT -ExperimentsInHonesty,2024-06-03T07:32:31Z,- ExperimentsInHonesty commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2144476129) at 2024-06-03 12:32 AM PDT -ExperimentsInHonesty,2024-06-03T07:33:33Z,- ExperimentsInHonesty unassigned from issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2144476918) at 2024-06-03 12:33 AM PDT -ExperimentsInHonesty,2024-06-03T07:59:38Z,- ExperimentsInHonesty commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-2144525131) at 2024-06-03 12:59 AM PDT -ExperimentsInHonesty,2024-06-03T07:59:38Z,- ExperimentsInHonesty closed issue by PR 6961: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-03 12:59 AM PDT -ExperimentsInHonesty,2024-06-03T08:02:43Z,- ExperimentsInHonesty unassigned from issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2060041087) at 2024-06-03 01:02 AM PDT -ExperimentsInHonesty,2024-06-03T08:07:58Z,- ExperimentsInHonesty unassigned from issue: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-03 01:07 AM PDT -ExperimentsInHonesty,2024-06-03T08:08:08Z,- ExperimentsInHonesty reopened issue: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-03 01:08 AM PDT -ExperimentsInHonesty,2024-06-04T00:44:09Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2146359961) at 2024-06-03 05:44 PM PDT -ExperimentsInHonesty,2024-06-04T16:01:58Z,- ExperimentsInHonesty commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2147895750) at 2024-06-04 09:01 AM PDT -ExperimentsInHonesty,2024-06-04T16:13:02Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2147918890) at 2024-06-04 09:13 AM PDT -ExperimentsInHonesty,2024-06-04T17:21:12Z,- ExperimentsInHonesty commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-2148041144) at 2024-06-04 10:21 AM PDT -ExperimentsInHonesty,2024-06-04T17:56:39Z,- ExperimentsInHonesty commented on issue: [4678](https://github.com/hackforla/website/issues/4678#issuecomment-2148099781) at 2024-06-04 10:56 AM PDT -ExperimentsInHonesty,2024-06-04T18:09:03Z,- ExperimentsInHonesty commented on issue: [6903](https://github.com/hackforla/website/issues/6903#issuecomment-2148119803) at 2024-06-04 11:09 AM PDT -ExperimentsInHonesty,2024-06-04T22:09:35Z,- ExperimentsInHonesty closed issue as completed: [5926](https://github.com/hackforla/website/issues/5926#event-13042389291) at 2024-06-04 03:09 PM PDT -ExperimentsInHonesty,2024-06-04T22:54:44Z,- ExperimentsInHonesty commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2148545318) at 2024-06-04 03:54 PM PDT -ExperimentsInHonesty,2024-06-04T22:54:44Z,- ExperimentsInHonesty closed issue as not planned: [6859](https://github.com/hackforla/website/issues/6859#event-13042732950) at 2024-06-04 03:54 PM PDT -ExperimentsInHonesty,2024-06-04T22:54:58Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148545693) at 2024-06-04 03:54 PM PDT -ExperimentsInHonesty,2024-06-04T22:55:33Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148546246) at 2024-06-04 03:55 PM PDT -ExperimentsInHonesty,2024-06-04T23:20:42Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2148567579) at 2024-06-04 04:20 PM PDT -ExperimentsInHonesty,2024-06-05T00:10:41Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148607672) at 2024-06-04 05:10 PM PDT -ExperimentsInHonesty,2024-06-05T00:26:38Z,- ExperimentsInHonesty commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2148622166) at 2024-06-04 05:26 PM PDT -ExperimentsInHonesty,2024-06-05T00:35:18Z,- ExperimentsInHonesty commented on issue: [4778](https://github.com/hackforla/website/issues/4778#issuecomment-2148628780) at 2024-06-04 05:35 PM PDT -ExperimentsInHonesty,2024-06-08T23:02:16Z,- ExperimentsInHonesty commented on issue: [6223](https://github.com/hackforla/website/issues/6223#issuecomment-2156218162) at 2024-06-08 04:02 PM PDT -ExperimentsInHonesty,2024-06-08T23:02:36Z,- ExperimentsInHonesty commented on issue: [6222](https://github.com/hackforla/website/issues/6222#issuecomment-2156218235) at 2024-06-08 04:02 PM PDT -ExperimentsInHonesty,2024-06-08T23:02:51Z,- ExperimentsInHonesty commented on issue: [6221](https://github.com/hackforla/website/issues/6221#issuecomment-2156218270) at 2024-06-08 04:02 PM PDT -ExperimentsInHonesty,2024-06-08T23:03:58Z,- ExperimentsInHonesty commented on issue: [6220](https://github.com/hackforla/website/issues/6220#issuecomment-2156218544) at 2024-06-08 04:03 PM PDT -ExperimentsInHonesty,2024-06-09T00:56:33Z,- ExperimentsInHonesty commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2156250300) at 2024-06-08 05:56 PM PDT -ExperimentsInHonesty,2024-06-09T01:19:54Z,- ExperimentsInHonesty commented on issue: [6185](https://github.com/hackforla/website/issues/6185#issuecomment-2156256508) at 2024-06-08 06:19 PM PDT -ExperimentsInHonesty,2024-06-09T01:21:00Z,- ExperimentsInHonesty commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2156256813) at 2024-06-08 06:21 PM PDT -ExperimentsInHonesty,2024-06-09T01:21:22Z,- ExperimentsInHonesty commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2156256892) at 2024-06-08 06:21 PM PDT -ExperimentsInHonesty,2024-06-09T01:31:18Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156260076) at 2024-06-08 06:31 PM PDT -ExperimentsInHonesty,2024-06-09T01:34:33Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156261605) at 2024-06-08 06:34 PM PDT -ExperimentsInHonesty,2024-06-09T01:41:58Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156263610) at 2024-06-08 06:41 PM PDT -ExperimentsInHonesty,2024-06-09T01:44:11Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156264132) at 2024-06-08 06:44 PM PDT -ExperimentsInHonesty,2024-06-09T01:49:37Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156265561) at 2024-06-08 06:49 PM PDT -ExperimentsInHonesty,2024-06-09T01:55:09Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156268649) at 2024-06-08 06:55 PM PDT -ExperimentsInHonesty,2024-06-09T02:05:00Z,- ExperimentsInHonesty commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2156271665) at 2024-06-08 07:05 PM PDT -ExperimentsInHonesty,2024-06-09T02:09:59Z,- ExperimentsInHonesty commented on issue: [5450](https://github.com/hackforla/website/issues/5450#issuecomment-2156272797) at 2024-06-08 07:09 PM PDT -ExperimentsInHonesty,2024-06-09T02:14:08Z,- ExperimentsInHonesty commented on issue: [4841](https://github.com/hackforla/website/issues/4841#issuecomment-2156273851) at 2024-06-08 07:14 PM PDT -ExperimentsInHonesty,2024-06-09T02:17:58Z,- ExperimentsInHonesty commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-2156275036) at 2024-06-08 07:17 PM PDT -ExperimentsInHonesty,2024-06-09T02:40:14Z,- ExperimentsInHonesty commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-2156280589) at 2024-06-08 07:40 PM PDT -ExperimentsInHonesty,2024-06-09T02:47:55Z,- ExperimentsInHonesty commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-2156282889) at 2024-06-08 07:47 PM PDT -ExperimentsInHonesty,2024-06-09T02:51:37Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156283806) at 2024-06-08 07:51 PM PDT -ExperimentsInHonesty,2024-06-09T02:53:46Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156284296) at 2024-06-08 07:53 PM PDT -ExperimentsInHonesty,2024-06-09T16:27:24Z,- ExperimentsInHonesty commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2156688309) at 2024-06-09 09:27 AM PDT -ExperimentsInHonesty,2024-06-09T16:28:42Z,- ExperimentsInHonesty commented on issue: [6812](https://github.com/hackforla/website/issues/6812#issuecomment-2156688660) at 2024-06-09 09:28 AM PDT -ExperimentsInHonesty,2024-06-09T16:28:42Z,- ExperimentsInHonesty closed issue as completed: [6812](https://github.com/hackforla/website/issues/6812#event-13091981689) at 2024-06-09 09:28 AM PDT -ExperimentsInHonesty,2024-06-09T16:41:37Z,- ExperimentsInHonesty commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2156693378) at 2024-06-09 09:41 AM PDT -ExperimentsInHonesty,2024-06-09T16:55:39Z,- ExperimentsInHonesty commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2156697479) at 2024-06-09 09:55 AM PDT -ExperimentsInHonesty,2024-06-10T21:00:23Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-2159275047) at 2024-06-10 02:00 PM PDT -ExperimentsInHonesty,2024-06-11T00:16:45Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-2159534869) at 2024-06-10 05:16 PM PDT -ExperimentsInHonesty,2024-06-11T00:16:45Z,- ExperimentsInHonesty closed issue as not planned: [4229](https://github.com/hackforla/website/issues/4229#event-13108822251) at 2024-06-10 05:16 PM PDT -ExperimentsInHonesty,2024-06-11T01:00:11Z,- ExperimentsInHonesty closed issue as not planned: [5244](https://github.com/hackforla/website/issues/5244#event-13109052451) at 2024-06-10 06:00 PM PDT -ExperimentsInHonesty,2024-06-11T01:05:39Z,- ExperimentsInHonesty commented on issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-2159577711) at 2024-06-10 06:05 PM PDT -ExperimentsInHonesty,2024-06-11T01:11:31Z,- ExperimentsInHonesty commented on issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-2159582716) at 2024-06-10 06:11 PM PDT -ExperimentsInHonesty,2024-06-11T01:16:20Z,- ExperimentsInHonesty closed issue as completed: [5450](https://github.com/hackforla/website/issues/5450#event-13109140323) at 2024-06-10 06:16 PM PDT -ExperimentsInHonesty,2024-06-11T01:22:23Z,- ExperimentsInHonesty commented on issue: [4190](https://github.com/hackforla/website/issues/4190#issuecomment-2159591888) at 2024-06-10 06:22 PM PDT -ExperimentsInHonesty,2024-06-11T16:20:00Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2161154914) at 2024-06-11 09:20 AM PDT -ExperimentsInHonesty,2024-06-11T16:20:00Z,- ExperimentsInHonesty closed issue as completed: [3222](https://github.com/hackforla/website/issues/3222#event-13119810744) at 2024-06-11 09:20 AM PDT -ExperimentsInHonesty,2024-06-11T16:21:37Z,- ExperimentsInHonesty opened issue: [6987](https://github.com/hackforla/website/issues/6987) at 2024-06-11 09:21 AM PDT -ExperimentsInHonesty,2024-06-11T16:45:52Z,- ExperimentsInHonesty reopened issue: [3222](https://github.com/hackforla/website/issues/3222#event-13119810744) at 2024-06-11 09:45 AM PDT -ExperimentsInHonesty,2024-06-13T02:41:55Z,- ExperimentsInHonesty closed issue as completed: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-12 07:41 PM PDT -ExperimentsInHonesty,2024-06-13T02:46:50Z,- ExperimentsInHonesty assigned to issue: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-12 07:46 PM PDT -ExperimentsInHonesty,2024-06-13T02:46:58Z,- ExperimentsInHonesty unassigned from issue: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-12 07:46 PM PDT -ExperimentsInHonesty,2024-06-13T23:57:40Z,- ExperimentsInHonesty reopened issue: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-13 04:57 PM PDT -ExperimentsInHonesty,2024-06-14T14:54:28Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2168215081) at 2024-06-14 07:54 AM PDT -ExperimentsInHonesty,2024-06-14T18:15:56Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2168533893) at 2024-06-14 11:15 AM PDT -ExperimentsInHonesty,2024-06-14T18:33:11Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2168559544) at 2024-06-14 11:33 AM PDT -ExperimentsInHonesty,2024-06-14T18:43:07Z,- ExperimentsInHonesty opened issue: [7005](https://github.com/hackforla/website/issues/7005) at 2024-06-14 11:43 AM PDT -ExperimentsInHonesty,2024-06-14T18:46:25Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2168576181) at 2024-06-14 11:46 AM PDT -ExperimentsInHonesty,2024-06-14T18:48:49Z,- ExperimentsInHonesty assigned to issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2168576181) at 2024-06-14 11:48 AM PDT -ExperimentsInHonesty,2024-06-14T19:37:20Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2168645971) at 2024-06-14 12:37 PM PDT -ExperimentsInHonesty,2024-06-14T19:45:46Z,- ExperimentsInHonesty opened issue: [7007](https://github.com/hackforla/website/issues/7007) at 2024-06-14 12:45 PM PDT -ExperimentsInHonesty,2024-06-14T19:46:08Z,- ExperimentsInHonesty assigned to issue: [7007](https://github.com/hackforla/website/issues/7007) at 2024-06-14 12:46 PM PDT -ExperimentsInHonesty,2024-06-15T18:25:17Z,- ExperimentsInHonesty commented on issue: [7004](https://github.com/hackforla/website/issues/7004#issuecomment-2170471384) at 2024-06-15 11:25 AM PDT -ExperimentsInHonesty,2024-06-15T18:54:30Z,- ExperimentsInHonesty commented on issue: [6940](https://github.com/hackforla/website/issues/6940#issuecomment-2170523725) at 2024-06-15 11:54 AM PDT -ExperimentsInHonesty,2024-06-15T19:11:28Z,- ExperimentsInHonesty commented on issue: [6967](https://github.com/hackforla/website/issues/6967#issuecomment-2170537215) at 2024-06-15 12:11 PM PDT -ExperimentsInHonesty,2024-06-15T19:11:29Z,- ExperimentsInHonesty closed issue as completed: [6967](https://github.com/hackforla/website/issues/6967#event-13171169243) at 2024-06-15 12:11 PM PDT -ExperimentsInHonesty,2024-06-15T19:17:01Z,- ExperimentsInHonesty commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2170543205) at 2024-06-15 12:17 PM PDT -ExperimentsInHonesty,2024-06-15T19:43:02Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2170595357) at 2024-06-15 12:43 PM PDT -ExperimentsInHonesty,2024-06-15T20:18:50Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2170632943) at 2024-06-15 01:18 PM PDT -ExperimentsInHonesty,2024-06-17T23:58:52Z,- ExperimentsInHonesty commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2174649947) at 2024-06-17 04:58 PM PDT -ExperimentsInHonesty,2024-06-17T23:59:19Z,- ExperimentsInHonesty commented on issue: [6918](https://github.com/hackforla/website/issues/6918#issuecomment-2174650424) at 2024-06-17 04:59 PM PDT -ExperimentsInHonesty,2024-06-18T00:04:06Z,- ExperimentsInHonesty commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2174655794) at 2024-06-17 05:04 PM PDT -ExperimentsInHonesty,2024-06-18T01:03:47Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2174712162) at 2024-06-17 06:03 PM PDT -ExperimentsInHonesty,2024-06-18T01:07:33Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2174715860) at 2024-06-17 06:07 PM PDT -ExperimentsInHonesty,2024-06-18T01:43:34Z,- ExperimentsInHonesty commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2174750623) at 2024-06-17 06:43 PM PDT -ExperimentsInHonesty,2024-06-18T01:55:29Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174764652) at 2024-06-17 06:55 PM PDT -ExperimentsInHonesty,2024-06-18T01:55:30Z,- ExperimentsInHonesty reopened issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174764652) at 2024-06-17 06:55 PM PDT -ExperimentsInHonesty,2024-06-18T01:57:46Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174767374) at 2024-06-17 06:57 PM PDT -ExperimentsInHonesty,2024-06-19T21:04:24Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2179454587) at 2024-06-19 02:04 PM PDT -ExperimentsInHonesty,2024-06-22T00:18:00Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2183602973) at 2024-06-21 05:18 PM PDT -ExperimentsInHonesty,2024-06-22T00:20:17Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2183604150) at 2024-06-21 05:20 PM PDT -ExperimentsInHonesty,2024-06-22T22:15:48Z,- ExperimentsInHonesty commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2184212181) at 2024-06-22 03:15 PM PDT -ExperimentsInHonesty,2024-06-22T22:22:24Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2184213781) at 2024-06-22 03:22 PM PDT -ExperimentsInHonesty,2024-06-23T16:31:54Z,- ExperimentsInHonesty closed issue as completed: [7034](https://github.com/hackforla/website/issues/7034#event-13256825514) at 2024-06-23 09:31 AM PDT -ExperimentsInHonesty,2024-06-23T16:33:37Z,- ExperimentsInHonesty commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2185145971) at 2024-06-23 09:33 AM PDT -ExperimentsInHonesty,2024-06-23T16:38:15Z,- ExperimentsInHonesty commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2185147329) at 2024-06-23 09:38 AM PDT -ExperimentsInHonesty,2024-06-23T17:06:18Z,- ExperimentsInHonesty closed issue as completed: [6844](https://github.com/hackforla/website/issues/6844#event-13256919956) at 2024-06-23 10:06 AM PDT -ExperimentsInHonesty,2024-06-23T17:15:53Z,- ExperimentsInHonesty commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2185167370) at 2024-06-23 10:15 AM PDT -ExperimentsInHonesty,2024-06-23T18:34:57Z,- ExperimentsInHonesty assigned to issue: [6995](https://github.com/hackforla/website/issues/6995#issuecomment-2163953646) at 2024-06-23 11:34 AM PDT -ExperimentsInHonesty,2024-06-23T18:35:09Z,- ExperimentsInHonesty unassigned from issue: [6995](https://github.com/hackforla/website/issues/6995#issuecomment-2163953646) at 2024-06-23 11:35 AM PDT -ExperimentsInHonesty,2024-06-23T18:36:46Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2185264899) at 2024-06-23 11:36 AM PDT -ExperimentsInHonesty,2024-06-23T18:45:35Z,- ExperimentsInHonesty reopened issue: [6998](https://github.com/hackforla/website/issues/6998#event-13257788708) at 2024-06-23 11:45 AM PDT -ExperimentsInHonesty,2024-06-23T18:45:50Z,- ExperimentsInHonesty commented on issue: [6998](https://github.com/hackforla/website/issues/6998#issuecomment-2185267286) at 2024-06-23 11:45 AM PDT -ExperimentsInHonesty,2024-06-23T18:48:33Z,- ExperimentsInHonesty commented on issue: [6997](https://github.com/hackforla/website/issues/6997#issuecomment-2185267991) at 2024-06-23 11:48 AM PDT -ExperimentsInHonesty,2024-06-23T18:48:36Z,- ExperimentsInHonesty reopened issue: [6997](https://github.com/hackforla/website/issues/6997#issuecomment-2185267991) at 2024-06-23 11:48 AM PDT -ExperimentsInHonesty,2024-06-23T18:49:14Z,- ExperimentsInHonesty commented on issue: [6996](https://github.com/hackforla/website/issues/6996#issuecomment-2185268163) at 2024-06-23 11:49 AM PDT -ExperimentsInHonesty,2024-06-23T18:49:16Z,- ExperimentsInHonesty reopened issue: [6996](https://github.com/hackforla/website/issues/6996#issuecomment-2185268163) at 2024-06-23 11:49 AM PDT -ExperimentsInHonesty,2024-06-23T18:51:01Z,- ExperimentsInHonesty closed issue as completed: [6995](https://github.com/hackforla/website/issues/6995#event-13257805701) at 2024-06-23 11:51 AM PDT -ExperimentsInHonesty,2024-06-23T18:52:31Z,- ExperimentsInHonesty closed issue by PR 7053: [6996](https://github.com/hackforla/website/issues/6996#event-13257808058) at 2024-06-23 11:52 AM PDT -ExperimentsInHonesty,2024-06-24T17:13:59Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2187041982) at 2024-06-24 10:13 AM PDT -ExperimentsInHonesty,2024-06-24T17:16:29Z,- ExperimentsInHonesty commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2187046084) at 2024-06-24 10:16 AM PDT -ExperimentsInHonesty,2024-06-24T17:21:30Z,- ExperimentsInHonesty commented on issue: [6628](https://github.com/hackforla/website/issues/6628#issuecomment-2187054102) at 2024-06-24 10:21 AM PDT -ExperimentsInHonesty,2024-06-24T17:22:24Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2187055561) at 2024-06-24 10:22 AM PDT -ExperimentsInHonesty,2024-06-24T17:36:09Z,- ExperimentsInHonesty commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2187079775) at 2024-06-24 10:36 AM PDT -ExperimentsInHonesty,2024-06-25T00:57:44Z,- ExperimentsInHonesty commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2187709493) at 2024-06-24 05:57 PM PDT -ExperimentsInHonesty,2024-06-25T00:58:29Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2187710008) at 2024-06-24 05:58 PM PDT -ExperimentsInHonesty,2024-06-25T01:17:47Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2187729076) at 2024-06-24 06:17 PM PDT -ExperimentsInHonesty,2024-06-25T20:44:10Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189935530) at 2024-06-25 01:44 PM PDT -ExperimentsInHonesty,2024-06-25T20:56:39Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189954519) at 2024-06-25 01:56 PM PDT -ExperimentsInHonesty,2024-06-25T21:01:17Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189963289) at 2024-06-25 02:01 PM PDT -ExperimentsInHonesty,2024-06-25T21:14:39Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189981945) at 2024-06-25 02:14 PM PDT -ExperimentsInHonesty,2024-06-27T16:30:30Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2195172423) at 2024-06-27 09:30 AM PDT -ExperimentsInHonesty,2024-07-01T19:16:40Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2200855368) at 2024-07-01 12:16 PM PDT -ExperimentsInHonesty,2024-07-01T19:21:57Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2200863113) at 2024-07-01 12:21 PM PDT -ExperimentsInHonesty,2024-07-02T00:27:56Z,- ExperimentsInHonesty commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2201524234) at 2024-07-01 05:27 PM PDT -ExperimentsInHonesty,2024-07-02T00:49:26Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2201563412) at 2024-07-01 05:49 PM PDT -ExperimentsInHonesty,2024-07-02T01:10:07Z,- ExperimentsInHonesty commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2201593251) at 2024-07-01 06:10 PM PDT -ExperimentsInHonesty,2024-07-02T01:22:50Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2201609275) at 2024-07-01 06:22 PM PDT -ExperimentsInHonesty,2024-07-02T18:04:43Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2203986920) at 2024-07-02 11:04 AM PDT -ExperimentsInHonesty,2024-07-08T20:11:41Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2215167527) at 2024-07-08 01:11 PM PDT -ExperimentsInHonesty,2024-07-08T20:13:23Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2215176094) at 2024-07-08 01:13 PM PDT -ExperimentsInHonesty,2024-07-08T20:13:54Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2215178381) at 2024-07-08 01:13 PM PDT -ExperimentsInHonesty,2024-07-09T00:28:17Z,- ExperimentsInHonesty commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2215746206) at 2024-07-08 05:28 PM PDT -ExperimentsInHonesty,2024-07-09T01:43:56Z,- ExperimentsInHonesty opened issue: [7100](https://github.com/hackforla/website/issues/7100) at 2024-07-08 06:43 PM PDT -ExperimentsInHonesty,2024-07-09T01:44:19Z,- ExperimentsInHonesty assigned to issue: [7100](https://github.com/hackforla/website/issues/7100) at 2024-07-08 06:44 PM PDT -ExperimentsInHonesty,2024-07-09T01:44:25Z,- ExperimentsInHonesty unassigned from issue: [7100](https://github.com/hackforla/website/issues/7100) at 2024-07-08 06:44 PM PDT -ExperimentsInHonesty,2024-07-13T02:22:32Z,- ExperimentsInHonesty commented on issue: [7092](https://github.com/hackforla/website/issues/7092#issuecomment-2226725169) at 2024-07-12 07:22 PM PDT -ExperimentsInHonesty,2024-07-13T02:25:38Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2226726028) at 2024-07-12 07:25 PM PDT -ExperimentsInHonesty,2024-07-13T02:28:04Z,- ExperimentsInHonesty commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2226726572) at 2024-07-12 07:28 PM PDT -ExperimentsInHonesty,2024-07-13T02:28:04Z,- ExperimentsInHonesty closed issue as not planned: [7011](https://github.com/hackforla/website/issues/7011#event-13494215535) at 2024-07-12 07:28 PM PDT -ExperimentsInHonesty,2024-07-16T00:17:59Z,- ExperimentsInHonesty closed issue as completed: [3265](https://github.com/hackforla/website/issues/3265#event-13512755989) at 2024-07-15 05:17 PM PDT -ExperimentsInHonesty,2024-07-16T00:58:23Z,- ExperimentsInHonesty commented on issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2229774533) at 2024-07-15 05:58 PM PDT -ExperimentsInHonesty,2024-07-23T02:11:08Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2244117121) at 2024-07-22 07:11 PM PDT -ExperimentsInHonesty,2024-07-23T03:10:05Z,- ExperimentsInHonesty commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2244165598) at 2024-07-22 08:10 PM PDT -ExperimentsInHonesty,2024-07-30T01:09:33Z,- ExperimentsInHonesty commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2257272094) at 2024-07-29 06:09 PM PDT -ExperimentsInHonesty,2024-08-05T03:49:46Z,- ExperimentsInHonesty commented on issue: [7144](https://github.com/hackforla/website/issues/7144#issuecomment-2268118125) at 2024-08-04 08:49 PM PDT -ExperimentsInHonesty,2024-08-05T22:15:52Z,- ExperimentsInHonesty commented on issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2270011834) at 2024-08-05 03:15 PM PDT -ExperimentsInHonesty,2024-08-06T00:05:15Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2270125173) at 2024-08-05 05:05 PM PDT -ExperimentsInHonesty,2024-08-06T16:11:10Z,- ExperimentsInHonesty commented on issue: [6607](https://github.com/hackforla/website/issues/6607#issuecomment-2271655137) at 2024-08-06 09:11 AM PDT -ExperimentsInHonesty,2024-08-06T16:11:11Z,- ExperimentsInHonesty closed issue as completed: [6607](https://github.com/hackforla/website/issues/6607#event-13781081220) at 2024-08-06 09:11 AM PDT -ExperimentsInHonesty,2024-08-06T16:12:27Z,- ExperimentsInHonesty commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2271657526) at 2024-08-06 09:12 AM PDT -ExperimentsInHonesty,2024-08-06T16:12:28Z,- ExperimentsInHonesty closed issue as completed: [6964](https://github.com/hackforla/website/issues/6964#event-13781095748) at 2024-08-06 09:12 AM PDT -ExperimentsInHonesty,2024-08-06T16:15:10Z,- ExperimentsInHonesty commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271662341) at 2024-08-06 09:15 AM PDT -ExperimentsInHonesty,2024-08-06T16:16:57Z,- ExperimentsInHonesty commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2271665635) at 2024-08-06 09:16 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:10Z,- ExperimentsInHonesty commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2282841295) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:10Z,- ExperimentsInHonesty reopened issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2282841295) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:42Z,- ExperimentsInHonesty commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282841411) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:42Z,- ExperimentsInHonesty reopened issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282841411) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:05:22Z,- ExperimentsInHonesty commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282841579) at 2024-08-11 11:05 AM PDT -ExperimentsInHonesty,2024-08-11T18:05:22Z,- ExperimentsInHonesty reopened issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282841579) at 2024-08-11 11:05 AM PDT -ExperimentsInHonesty,2024-08-11T18:06:34Z,- ExperimentsInHonesty commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2282841902) at 2024-08-11 11:06 AM PDT -ExperimentsInHonesty,2024-08-11T18:15:15Z,- ExperimentsInHonesty commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2282844635) at 2024-08-11 11:15 AM PDT -ExperimentsInHonesty,2024-08-13T00:24:28Z,- ExperimentsInHonesty commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2285120477) at 2024-08-12 05:24 PM PDT -ExperimentsInHonesty,2024-08-13T00:31:36Z,- ExperimentsInHonesty commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2285126544) at 2024-08-12 05:31 PM PDT -ExperimentsInHonesty,2024-08-13T00:41:11Z,- ExperimentsInHonesty commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2285134185) at 2024-08-12 05:41 PM PDT -ExperimentsInHonesty,2024-08-13T00:42:49Z,- ExperimentsInHonesty commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2285135595) at 2024-08-12 05:42 PM PDT -ExperimentsInHonesty,2024-08-13T00:42:49Z,- ExperimentsInHonesty closed issue as completed: [6949](https://github.com/hackforla/website/issues/6949#event-13856201691) at 2024-08-12 05:42 PM PDT -ExperimentsInHonesty,2024-08-13T00:45:11Z,- ExperimentsInHonesty commented on issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-2285137660) at 2024-08-12 05:45 PM PDT -ExperimentsInHonesty,2024-08-18T15:24:40Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2295300286) at 2024-08-18 08:24 AM PDT -ExperimentsInHonesty,2024-08-18T15:32:41Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2295302820) at 2024-08-18 08:32 AM PDT -ExperimentsInHonesty,2024-08-18T15:33:56Z,- ExperimentsInHonesty commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2295303122) at 2024-08-18 08:33 AM PDT -ExperimentsInHonesty,2024-08-18T17:52:47Z,- ExperimentsInHonesty opened issue: [7313](https://github.com/hackforla/website/issues/7313) at 2024-08-18 10:52 AM PDT -ExperimentsInHonesty,2024-08-19T20:24:17Z,- ExperimentsInHonesty commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2297386212) at 2024-08-19 01:24 PM PDT -ExperimentsInHonesty,2024-08-20T00:03:17Z,- ExperimentsInHonesty commented on issue: [7253](https://github.com/hackforla/website/issues/7253#issuecomment-2297721180) at 2024-08-19 05:03 PM PDT -ExperimentsInHonesty,2024-08-20T00:20:40Z,- ExperimentsInHonesty commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2297738129) at 2024-08-19 05:20 PM PDT -ExperimentsInHonesty,2024-08-20T00:38:05Z,- ExperimentsInHonesty commented on issue: [7215](https://github.com/hackforla/website/issues/7215#issuecomment-2297752207) at 2024-08-19 05:38 PM PDT -ExperimentsInHonesty,2024-08-20T00:38:05Z,- ExperimentsInHonesty closed issue as not planned: [7215](https://github.com/hackforla/website/issues/7215#event-13937723299) at 2024-08-19 05:38 PM PDT -ExperimentsInHonesty,2024-08-20T00:40:09Z,- ExperimentsInHonesty commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2297753826) at 2024-08-19 05:40 PM PDT -ExperimentsInHonesty,2024-08-20T00:45:18Z,- ExperimentsInHonesty commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2297757820) at 2024-08-19 05:45 PM PDT -ExperimentsInHonesty,2024-08-20T00:49:22Z,- ExperimentsInHonesty commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2297760856) at 2024-08-19 05:49 PM PDT -ExperimentsInHonesty,2024-08-20T00:50:21Z,- ExperimentsInHonesty closed issue as completed: [7201](https://github.com/hackforla/website/issues/7201#event-13937789762) at 2024-08-19 05:50 PM PDT -ExperimentsInHonesty,2024-08-20T00:52:13Z,- ExperimentsInHonesty commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2297762888) at 2024-08-19 05:52 PM PDT -ExperimentsInHonesty,2024-08-20T00:54:39Z,- ExperimentsInHonesty commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2297764739) at 2024-08-19 05:54 PM PDT -ExperimentsInHonesty,2024-08-21T17:21:26Z,- ExperimentsInHonesty closed issue as completed: [6943](https://github.com/hackforla/website/issues/6943#event-13964064501) at 2024-08-21 10:21 AM PDT -ExperimentsInHonesty,2024-08-21T17:21:51Z,- ExperimentsInHonesty closed issue as completed: [6953](https://github.com/hackforla/website/issues/6953#event-13964069323) at 2024-08-21 10:21 AM PDT -ExperimentsInHonesty,2024-08-25T18:06:59Z,- ExperimentsInHonesty commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-2308944670) at 2024-08-25 11:06 AM PDT -ExperimentsInHonesty,2024-08-27T00:48:05Z,- ExperimentsInHonesty commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2311358700) at 2024-08-26 05:48 PM PDT -ExperimentsInHonesty,2024-08-27T01:25:06Z,- ExperimentsInHonesty commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2311391464) at 2024-08-26 06:25 PM PDT -ExperimentsInHonesty,2024-08-27T01:48:19Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2311411859) at 2024-08-26 06:48 PM PDT -ExperimentsInHonesty,2024-09-03T01:14:03Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-2325436051) at 2024-09-02 06:14 PM PDT -ExperimentsInHonesty,2024-09-03T01:14:08Z,- ExperimentsInHonesty closed issue as not planned: [4146](https://github.com/hackforla/website/issues/4146#event-14108109961) at 2024-09-02 06:14 PM PDT -ExperimentsInHonesty,2024-09-03T01:27:44Z,- ExperimentsInHonesty commented on issue: [7144](https://github.com/hackforla/website/issues/7144#issuecomment-2325444020) at 2024-09-02 06:27 PM PDT -ExperimentsInHonesty,2024-09-03T01:27:44Z,- ExperimentsInHonesty closed issue as not planned: [7144](https://github.com/hackforla/website/issues/7144#event-14108167244) at 2024-09-02 06:27 PM PDT -ExperimentsInHonesty,2024-09-03T22:16:47Z,- ExperimentsInHonesty commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2327538889) at 2024-09-03 03:16 PM PDT -ExperimentsInHonesty,2024-09-06T18:13:54Z,- ExperimentsInHonesty commented on issue: [7291](https://github.com/hackforla/website/issues/7291#issuecomment-2334585201) at 2024-09-06 11:13 AM PDT -ExperimentsInHonesty,2024-09-08T18:36:46Z,- ExperimentsInHonesty commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336782608) at 2024-09-08 11:36 AM PDT -ExperimentsInHonesty,2024-09-09T21:01:35Z,- ExperimentsInHonesty commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2339083021) at 2024-09-09 02:01 PM PDT -ExperimentsInHonesty,2024-09-10T00:10:44Z,- ExperimentsInHonesty commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2339365630) at 2024-09-09 05:10 PM PDT -ExperimentsInHonesty,2024-09-10T00:33:33Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2339386230) at 2024-09-09 05:33 PM PDT -ExperimentsInHonesty,2024-09-10T00:44:26Z,- ExperimentsInHonesty commented on issue: [7424](https://github.com/hackforla/website/issues/7424#issuecomment-2339395291) at 2024-09-09 05:44 PM PDT -ExperimentsInHonesty,2024-09-13T18:28:09Z,- ExperimentsInHonesty commented on issue: [7421](https://github.com/hackforla/website/issues/7421#issuecomment-2349805885) at 2024-09-13 11:28 AM PDT -ExperimentsInHonesty,2024-09-13T18:51:59Z,- ExperimentsInHonesty commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2349894955) at 2024-09-13 11:51 AM PDT -ExperimentsInHonesty,2024-09-13T18:55:03Z,- ExperimentsInHonesty commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2349907730) at 2024-09-13 11:55 AM PDT -ExperimentsInHonesty,2024-09-13T23:22:32Z,- ExperimentsInHonesty commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2350694858) at 2024-09-13 04:22 PM PDT -ExperimentsInHonesty,2024-09-14T01:04:21Z,- ExperimentsInHonesty commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2350756398) at 2024-09-13 06:04 PM PDT -ExperimentsInHonesty,2024-09-14T01:17:18Z,- ExperimentsInHonesty commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2350761862) at 2024-09-13 06:17 PM PDT -ExperimentsInHonesty,2024-09-14T03:24:53Z,- ExperimentsInHonesty commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2350811035) at 2024-09-13 08:24 PM PDT -ExperimentsInHonesty,2024-09-14T03:25:22Z,- ExperimentsInHonesty commented on issue: [7089](https://github.com/hackforla/website/issues/7089#issuecomment-2350811169) at 2024-09-13 08:25 PM PDT -ExperimentsInHonesty,2024-09-14T03:25:22Z,- ExperimentsInHonesty closed issue as completed: [7089](https://github.com/hackforla/website/issues/7089#event-14256651258) at 2024-09-13 08:25 PM PDT -ExperimentsInHonesty,2024-09-15T18:37:28Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739573) at 2024-09-15 11:37 AM PDT -ExperimentsInHonesty,2024-09-15T21:24:12Z,- ExperimentsInHonesty commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351796335) at 2024-09-15 02:24 PM PDT -ExperimentsInHonesty,2024-09-15T21:30:13Z,- ExperimentsInHonesty commented on issue: [7090](https://github.com/hackforla/website/issues/7090#issuecomment-2351797821) at 2024-09-15 02:30 PM PDT -ExperimentsInHonesty,2024-09-15T21:30:13Z,- ExperimentsInHonesty closed issue as completed: [7090](https://github.com/hackforla/website/issues/7090#event-14264715942) at 2024-09-15 02:30 PM PDT -ExperimentsInHonesty,2024-09-15T21:35:57Z,- ExperimentsInHonesty commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2351799432) at 2024-09-15 02:35 PM PDT -ExperimentsInHonesty,2024-09-16T04:50:49Z,- ExperimentsInHonesty commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2352015587) at 2024-09-15 09:50 PM PDT -ExperimentsInHonesty,2024-09-16T04:50:50Z,- ExperimentsInHonesty closed issue as completed: [7219](https://github.com/hackforla/website/issues/7219#event-14266510253) at 2024-09-15 09:50 PM PDT -ExperimentsInHonesty,2024-09-16T04:50:52Z,- ExperimentsInHonesty reopened issue: [7219](https://github.com/hackforla/website/issues/7219#event-14266510253) at 2024-09-15 09:50 PM PDT -ExperimentsInHonesty,2024-09-16T16:13:34Z,- ExperimentsInHonesty opened issue: [7465](https://github.com/hackforla/website/issues/7465) at 2024-09-16 09:13 AM PDT -ExperimentsInHonesty,2024-09-16T16:13:45Z,- ExperimentsInHonesty assigned to issue: [7465](https://github.com/hackforla/website/issues/7465) at 2024-09-16 09:13 AM PDT -ExperimentsInHonesty,2024-09-16T16:15:22Z,- ExperimentsInHonesty commented on issue: [7465](https://github.com/hackforla/website/issues/7465#issuecomment-2353357642) at 2024-09-16 09:15 AM PDT -ExperimentsInHonesty,2024-09-16T16:28:31Z,- ExperimentsInHonesty closed issue as completed: [7465](https://github.com/hackforla/website/issues/7465#event-14276230712) at 2024-09-16 09:28 AM PDT -ExperimentsInHonesty,2024-09-17T00:16:37Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2354251309) at 2024-09-16 05:16 PM PDT -ExperimentsInHonesty,2024-09-17T00:25:40Z,- ExperimentsInHonesty commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2354260226) at 2024-09-16 05:25 PM PDT -ExperimentsInHonesty,2024-09-17T00:35:35Z,- ExperimentsInHonesty commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2354269065) at 2024-09-16 05:35 PM PDT -ExperimentsInHonesty,2024-09-17T00:46:58Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2354277475) at 2024-09-16 05:46 PM PDT -ExperimentsInHonesty,2024-09-17T00:58:14Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2354285684) at 2024-09-16 05:58 PM PDT -ExperimentsInHonesty,2024-09-17T01:06:42Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354291697) at 2024-09-16 06:06 PM PDT -ExperimentsInHonesty,2024-09-17T01:52:26Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354349889) at 2024-09-16 06:52 PM PDT -ExperimentsInHonesty,2024-09-17T16:44:31Z,- ExperimentsInHonesty opened issue: [7469](https://github.com/hackforla/website/issues/7469) at 2024-09-17 09:44 AM PDT -ExperimentsInHonesty,2024-09-17T17:05:41Z,- ExperimentsInHonesty opened issue: [7470](https://github.com/hackforla/website/issues/7470) at 2024-09-17 10:05 AM PDT -ExperimentsInHonesty,2024-09-17T17:34:45Z,- ExperimentsInHonesty commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2356527903) at 2024-09-17 10:34 AM PDT -ExperimentsInHonesty,2024-09-17T17:43:25Z,- ExperimentsInHonesty opened issue: [7473](https://github.com/hackforla/website/issues/7473) at 2024-09-17 10:43 AM PDT -ExperimentsInHonesty,2024-09-17T18:12:47Z,- ExperimentsInHonesty opened issue: [7478](https://github.com/hackforla/website/issues/7478) at 2024-09-17 11:12 AM PDT -ExperimentsInHonesty,2024-09-17T18:15:36Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356600221) at 2024-09-17 11:15 AM PDT -ExperimentsInHonesty,2024-09-17T18:22:16Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356611920) at 2024-09-17 11:22 AM PDT -ExperimentsInHonesty,2024-09-17T18:25:52Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356617696) at 2024-09-17 11:25 AM PDT -ExperimentsInHonesty,2024-09-17T18:31:24Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:31 AM PDT -ExperimentsInHonesty,2024-09-17T18:39:56Z,- ExperimentsInHonesty assigned to issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:39 AM PDT -ExperimentsInHonesty,2024-09-17T19:14:50Z,- ExperimentsInHonesty commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2356704529) at 2024-09-17 12:14 PM PDT -ExperimentsInHonesty,2024-09-17T21:15:41Z,- ExperimentsInHonesty commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2356949663) at 2024-09-17 02:15 PM PDT -ExperimentsInHonesty,2024-09-17T21:15:41Z,- ExperimentsInHonesty reopened issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2356949663) at 2024-09-17 02:15 PM PDT -ExperimentsInHonesty,2024-09-17T22:51:33Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2357066233) at 2024-09-17 03:51 PM PDT -ExperimentsInHonesty,2024-09-18T03:52:47Z,- ExperimentsInHonesty commented on issue: [7318](https://github.com/hackforla/website/issues/7318#issuecomment-2357439135) at 2024-09-17 08:52 PM PDT -ExperimentsInHonesty,2024-09-18T03:52:47Z,- ExperimentsInHonesty closed issue as completed: [7318](https://github.com/hackforla/website/issues/7318#event-14300927584) at 2024-09-17 08:52 PM PDT -ExperimentsInHonesty,2024-09-18T03:57:14Z,- ExperimentsInHonesty commented on issue: [7313](https://github.com/hackforla/website/issues/7313#issuecomment-2357442928) at 2024-09-17 08:57 PM PDT -ExperimentsInHonesty,2024-09-18T03:57:15Z,- ExperimentsInHonesty closed issue as completed: [7313](https://github.com/hackforla/website/issues/7313#event-14300952322) at 2024-09-17 08:57 PM PDT -ExperimentsInHonesty,2024-09-18T03:57:21Z,- ExperimentsInHonesty closed issue as not planned: [7313](https://github.com/hackforla/website/issues/7313#event-14300952855) at 2024-09-17 08:57 PM PDT -ExperimentsInHonesty,2024-09-18T04:16:02Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2357459731) at 2024-09-17 09:16 PM PDT -ExperimentsInHonesty,2024-09-18T04:17:54Z,- ExperimentsInHonesty opened issue: [7490](https://github.com/hackforla/website/issues/7490) at 2024-09-17 09:17 PM PDT -ExperimentsInHonesty,2024-09-18T04:22:15Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2357464918) at 2024-09-17 09:22 PM PDT -ExperimentsInHonesty,2024-09-19T15:50:29Z,- ExperimentsInHonesty opened issue: [7497](https://github.com/hackforla/website/issues/7497) at 2024-09-19 08:50 AM PDT -ExperimentsInHonesty,2024-09-19T16:04:57Z,- ExperimentsInHonesty commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2361428744) at 2024-09-19 09:04 AM PDT -ExperimentsInHonesty,2024-09-19T16:06:33Z,- ExperimentsInHonesty commented on issue: [7294](https://github.com/hackforla/website/issues/7294#issuecomment-2361431946) at 2024-09-19 09:06 AM PDT -ExperimentsInHonesty,2024-09-23T15:53:55Z,- ExperimentsInHonesty commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2368708562) at 2024-09-23 08:53 AM PDT -ExperimentsInHonesty,2024-09-24T00:10:46Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2369818889) at 2024-09-23 05:10 PM PDT -ExperimentsInHonesty,2024-09-24T00:43:12Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2369872169) at 2024-09-23 05:43 PM PDT -ExperimentsInHonesty,2024-09-24T16:56:32Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2371834851) at 2024-09-24 09:56 AM PDT -ExperimentsInHonesty,2024-09-24T16:58:37Z,- ExperimentsInHonesty opened issue: [7515](https://github.com/hackforla/website/issues/7515) at 2024-09-24 09:58 AM PDT -ExperimentsInHonesty,2024-09-24T18:21:25Z,- ExperimentsInHonesty commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2371997004) at 2024-09-24 11:21 AM PDT -ExperimentsInHonesty,2024-09-26T21:28:03Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2377970516) at 2024-09-26 02:28 PM PDT -ExperimentsInHonesty,2024-09-26T22:31:56Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2378049564) at 2024-09-26 03:31 PM PDT -ExperimentsInHonesty,2024-09-26T23:20:19Z,- ExperimentsInHonesty commented on issue: [7486](https://github.com/hackforla/website/issues/7486#issuecomment-2378108208) at 2024-09-26 04:20 PM PDT -ExperimentsInHonesty,2024-09-26T23:20:19Z,- ExperimentsInHonesty closed issue as not planned: [7486](https://github.com/hackforla/website/issues/7486#event-14423557496) at 2024-09-26 04:20 PM PDT -ExperimentsInHonesty,2024-09-27T21:00:29Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2380053184) at 2024-09-27 02:00 PM PDT -ExperimentsInHonesty,2024-09-27T21:00:40Z,- ExperimentsInHonesty closed issue as completed: [4530](https://github.com/hackforla/website/issues/4530#event-14436250789) at 2024-09-27 02:00 PM PDT -ExperimentsInHonesty,2024-09-27T21:21:01Z,- ExperimentsInHonesty commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380074797) at 2024-09-27 02:21 PM PDT -ExperimentsInHonesty,2024-09-27T21:22:03Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2380075801) at 2024-09-27 02:22 PM PDT -ExperimentsInHonesty,2024-09-29T17:31:17Z,- ExperimentsInHonesty reopened issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2200598709) at 2024-09-29 10:31 AM PDT -ExperimentsInHonesty,2024-09-29T17:35:19Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2381437601) at 2024-09-29 10:35 AM PDT -ExperimentsInHonesty,2024-09-29T17:39:20Z,- ExperimentsInHonesty commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2381438840) at 2024-09-29 10:39 AM PDT -ExperimentsInHonesty,2024-09-29T17:50:20Z,- ExperimentsInHonesty opened issue: [7540](https://github.com/hackforla/website/issues/7540) at 2024-09-29 10:50 AM PDT -ExperimentsInHonesty,2024-09-29T18:05:36Z,- ExperimentsInHonesty commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2381446832) at 2024-09-29 11:05 AM PDT -ExperimentsInHonesty,2024-09-29T18:34:35Z,- ExperimentsInHonesty commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2381455731) at 2024-09-29 11:34 AM PDT -ExperimentsInHonesty,2024-09-29T19:32:59Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2381575569) at 2024-09-29 12:32 PM PDT -ExperimentsInHonesty,2024-09-30T22:16:02Z,- ExperimentsInHonesty commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2384277028) at 2024-09-30 03:16 PM PDT -ExperimentsInHonesty,2024-09-30T22:16:28Z,- ExperimentsInHonesty commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2384277572) at 2024-09-30 03:16 PM PDT -ExperimentsInHonesty,2024-09-30T22:18:17Z,- ExperimentsInHonesty commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2384279635) at 2024-09-30 03:18 PM PDT -ExperimentsInHonesty,2024-09-30T22:18:17Z,- ExperimentsInHonesty closed issue as completed: [7544](https://github.com/hackforla/website/issues/7544#event-14463039052) at 2024-09-30 03:18 PM PDT -ExperimentsInHonesty,2024-09-30T22:18:22Z,- ExperimentsInHonesty closed issue as not planned: [7544](https://github.com/hackforla/website/issues/7544#event-14463039615) at 2024-09-30 03:18 PM PDT -ExperimentsInHonesty,2024-09-30T22:29:14Z,- ExperimentsInHonesty commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2384290512) at 2024-09-30 03:29 PM PDT -ExperimentsInHonesty,2024-09-30T23:08:15Z,- ExperimentsInHonesty commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2384338641) at 2024-09-30 04:08 PM PDT -ExperimentsInHonesty,2024-09-30T23:12:10Z,- ExperimentsInHonesty commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2384352506) at 2024-09-30 04:12 PM PDT -ExperimentsInHonesty,2024-09-30T23:24:08Z,- ExperimentsInHonesty commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2384397261) at 2024-09-30 04:24 PM PDT -ExperimentsInHonesty,2024-09-30T23:24:08Z,- ExperimentsInHonesty closed issue as completed: [2753](https://github.com/hackforla/website/issues/2753#event-14463588518) at 2024-09-30 04:24 PM PDT -ExperimentsInHonesty,2024-09-30T23:46:10Z,- ExperimentsInHonesty commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2384480675) at 2024-09-30 04:46 PM PDT -ExperimentsInHonesty,2024-10-01T00:52:03Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2384568985) at 2024-09-30 05:52 PM PDT -ExperimentsInHonesty,2024-10-01T00:56:30Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2384572890) at 2024-09-30 05:56 PM PDT -ExperimentsInHonesty,2024-10-01T01:07:41Z,- ExperimentsInHonesty reopened issue: [7014](https://github.com/hackforla/website/issues/7014#event-13874195431) at 2024-09-30 06:07 PM PDT -ExperimentsInHonesty,2024-10-01T01:07:44Z,- ExperimentsInHonesty closed issue as completed: [7014](https://github.com/hackforla/website/issues/7014#event-14464494626) at 2024-09-30 06:07 PM PDT -ExperimentsInHonesty,2024-10-01T01:16:24Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2384590549) at 2024-09-30 06:16 PM PDT -ExperimentsInHonesty,2024-10-02T22:52:49Z,- ExperimentsInHonesty commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2389841213) at 2024-10-02 03:52 PM PDT -ExperimentsInHonesty,2024-10-02T22:52:49Z,- ExperimentsInHonesty closed issue as completed: [7521](https://github.com/hackforla/website/issues/7521#event-14496175646) at 2024-10-02 03:52 PM PDT -ExperimentsInHonesty,2024-10-02T23:01:53Z,- ExperimentsInHonesty commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2389911422) at 2024-10-02 04:01 PM PDT -ExperimentsInHonesty,2024-10-02T23:01:53Z,- ExperimentsInHonesty closed issue as completed: [7301](https://github.com/hackforla/website/issues/7301#event-14496317793) at 2024-10-02 04:01 PM PDT -ExperimentsInHonesty,2024-10-02T23:29:23Z,- ExperimentsInHonesty commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2389975235) at 2024-10-02 04:29 PM PDT -ExperimentsInHonesty,2024-10-02T23:53:46Z,- ExperimentsInHonesty commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2389994965) at 2024-10-02 04:53 PM PDT -ExperimentsInHonesty,2024-10-03T15:14:57Z,- ExperimentsInHonesty commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2391684399) at 2024-10-03 08:14 AM PDT -ExperimentsInHonesty,2024-10-03T15:15:00Z,- ExperimentsInHonesty reopened issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2391684399) at 2024-10-03 08:15 AM PDT -ExperimentsInHonesty,2024-10-03T15:16:02Z,- ExperimentsInHonesty commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2391686959) at 2024-10-03 08:16 AM PDT -ExperimentsInHonesty,2024-10-03T15:45:09Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2391751685) at 2024-10-03 08:45 AM PDT -ExperimentsInHonesty,2024-10-03T17:12:50Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2391922726) at 2024-10-03 10:12 AM PDT -ExperimentsInHonesty,2024-10-05T22:59:58Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2395220071) at 2024-10-05 03:59 PM PDT -ExperimentsInHonesty,2024-10-05T22:59:58Z,- ExperimentsInHonesty closed issue as completed: [6145](https://github.com/hackforla/website/issues/6145#event-14529151816) at 2024-10-05 03:59 PM PDT -ExperimentsInHonesty,2024-10-06T15:14:43Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395474970) at 2024-10-06 08:14 AM PDT -ExperimentsInHonesty,2024-10-06T15:15:35Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395475289) at 2024-10-06 08:15 AM PDT -ExperimentsInHonesty,2024-10-06T15:54:24Z,- ExperimentsInHonesty commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2395487367) at 2024-10-06 08:54 AM PDT -ExperimentsInHonesty,2024-10-06T16:07:46Z,- ExperimentsInHonesty closed issue as not planned: [1029](https://github.com/hackforla/website/issues/1029#event-14530940748) at 2024-10-06 09:07 AM PDT -ExperimentsInHonesty,2024-10-06T16:28:16Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2395498554) at 2024-10-06 09:28 AM PDT -ExperimentsInHonesty,2024-10-06T16:39:38Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2395502130) at 2024-10-06 09:39 AM PDT -ExperimentsInHonesty,2024-10-06T16:41:24Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2395502705) at 2024-10-06 09:41 AM PDT -ExperimentsInHonesty,2024-10-06T17:00:38Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2395508778) at 2024-10-06 10:00 AM PDT -ExperimentsInHonesty,2024-10-06T18:02:33Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2395527731) at 2024-10-06 11:02 AM PDT -ExperimentsInHonesty,2024-10-06T19:22:33Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2395552676) at 2024-10-06 12:22 PM PDT -ExperimentsInHonesty,2024-10-07T15:18:40Z,- ExperimentsInHonesty commented on issue: [7528](https://github.com/hackforla/website/issues/7528#issuecomment-2397226154) at 2024-10-07 08:18 AM PDT -ExperimentsInHonesty,2024-10-07T15:18:40Z,- ExperimentsInHonesty closed issue as completed: [7528](https://github.com/hackforla/website/issues/7528#event-14542654362) at 2024-10-07 08:18 AM PDT -ExperimentsInHonesty,2024-10-07T15:50:34Z,- ExperimentsInHonesty opened issue: [7566](https://github.com/hackforla/website/issues/7566) at 2024-10-07 08:50 AM PDT -ExperimentsInHonesty,2024-10-07T15:51:33Z,- ExperimentsInHonesty commented on issue: [7294](https://github.com/hackforla/website/issues/7294#issuecomment-2397303376) at 2024-10-07 08:51 AM PDT -ExperimentsInHonesty,2024-10-07T16:00:26Z,- ExperimentsInHonesty opened issue: [7567](https://github.com/hackforla/website/issues/7567) at 2024-10-07 09:00 AM PDT -ExperimentsInHonesty,2024-10-07T16:03:00Z,- ExperimentsInHonesty commented on issue: [7087](https://github.com/hackforla/website/issues/7087#issuecomment-2397328931) at 2024-10-07 09:03 AM PDT -ExperimentsInHonesty,2024-10-07T23:34:07Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2398160671) at 2024-10-07 04:34 PM PDT -ExperimentsInHonesty,2024-10-08T00:55:43Z,- ExperimentsInHonesty commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2398343972) at 2024-10-07 05:55 PM PDT -ExperimentsInHonesty,2024-10-08T15:58:51Z,- ExperimentsInHonesty commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2400238861) at 2024-10-08 08:58 AM PDT -ExperimentsInHonesty,2024-10-08T22:57:36Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2400958400) at 2024-10-08 03:57 PM PDT -ExperimentsInHonesty,2024-10-09T18:11:16Z,- ExperimentsInHonesty opened issue: [7578](https://github.com/hackforla/website/issues/7578) at 2024-10-09 11:11 AM PDT -ExperimentsInHonesty,2024-10-10T22:44:50Z,- ExperimentsInHonesty commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2406166623) at 2024-10-10 03:44 PM PDT -ExperimentsInHonesty,2024-10-14T23:51:56Z,- ExperimentsInHonesty commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2412539722) at 2024-10-14 04:51 PM PDT -ExperimentsInHonesty,2024-10-14T23:54:27Z,- ExperimentsInHonesty commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2412541708) at 2024-10-14 04:54 PM PDT -ExperimentsInHonesty,2024-10-15T00:04:11Z,- ExperimentsInHonesty commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2412555855) at 2024-10-14 05:04 PM PDT -ExperimentsInHonesty,2024-10-15T00:51:26Z,- ExperimentsInHonesty commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-2412602114) at 2024-10-14 05:51 PM PDT -ExperimentsInHonesty,2024-10-15T01:44:29Z,- ExperimentsInHonesty commented on issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2412646265) at 2024-10-14 06:44 PM PDT -ExperimentsInHonesty,2024-10-15T01:48:57Z,- ExperimentsInHonesty commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2412649894) at 2024-10-14 06:48 PM PDT -ExperimentsInHonesty,2024-10-15T01:50:19Z,- ExperimentsInHonesty commented on issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2412650919) at 2024-10-14 06:50 PM PDT -ExperimentsInHonesty,2024-10-15T17:08:12Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2414568871) at 2024-10-15 10:08 AM PDT -ExperimentsInHonesty,2024-10-15T17:59:43Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2414672007) at 2024-10-15 10:59 AM PDT -ExperimentsInHonesty,2024-10-15T19:16:09Z,- ExperimentsInHonesty opened issue: [7596](https://github.com/hackforla/website/issues/7596) at 2024-10-15 12:16 PM PDT -ExperimentsInHonesty,2024-10-15T19:19:06Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2414823314) at 2024-10-15 12:19 PM PDT -ExperimentsInHonesty,2024-10-15T19:19:08Z,- ExperimentsInHonesty closed issue as completed: [7478](https://github.com/hackforla/website/issues/7478#event-14662994002) at 2024-10-15 12:19 PM PDT -ExperimentsInHonesty,2024-10-15T19:42:33Z,- ExperimentsInHonesty commented on issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2414863384) at 2024-10-15 12:42 PM PDT -ExperimentsInHonesty,2024-10-15T19:42:54Z,- ExperimentsInHonesty assigned to issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2414863384) at 2024-10-15 12:42 PM PDT -ExperimentsInHonesty,2024-10-15T20:38:33Z,- ExperimentsInHonesty reopened issue: [3526](https://github.com/hackforla/website/issues/3526#event-13086673505) at 2024-10-15 01:38 PM PDT -ExperimentsInHonesty,2024-10-15T22:02:54Z,- ExperimentsInHonesty commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2415249962) at 2024-10-15 03:02 PM PDT -ExperimentsInHonesty,2024-10-16T20:43:07Z,- ExperimentsInHonesty commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2417923954) at 2024-10-16 01:43 PM PDT -ExperimentsInHonesty,2024-10-16T20:43:07Z,- ExperimentsInHonesty closed issue as completed: [7259](https://github.com/hackforla/website/issues/7259#event-14689169161) at 2024-10-16 01:43 PM PDT -ExperimentsInHonesty,2024-10-19T23:28:11Z,- ExperimentsInHonesty commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2424285391) at 2024-10-19 04:28 PM PDT -ExperimentsInHonesty,2024-10-19T23:50:21Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2424296345) at 2024-10-19 04:50 PM PDT -ExperimentsInHonesty,2024-10-20T00:46:11Z,- ExperimentsInHonesty opened issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-19 05:46 PM PDT -ExperimentsInHonesty,2024-10-20T00:46:34Z,- ExperimentsInHonesty assigned to issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-19 05:46 PM PDT -ExperimentsInHonesty,2024-10-20T01:03:45Z,- ExperimentsInHonesty opened issue: [7601](https://github.com/hackforla/website/issues/7601) at 2024-10-19 06:03 PM PDT -ExperimentsInHonesty,2024-10-20T01:08:58Z,- ExperimentsInHonesty opened issue: [7602](https://github.com/hackforla/website/issues/7602) at 2024-10-19 06:08 PM PDT -ExperimentsInHonesty,2024-10-20T01:14:39Z,- ExperimentsInHonesty assigned to issue: [7602](https://github.com/hackforla/website/issues/7602) at 2024-10-19 06:14 PM PDT -ExperimentsInHonesty,2024-10-20T01:15:39Z,- ExperimentsInHonesty opened issue: [7603](https://github.com/hackforla/website/issues/7603) at 2024-10-19 06:15 PM PDT -ExperimentsInHonesty,2024-10-20T01:20:58Z,- ExperimentsInHonesty opened issue: [7604](https://github.com/hackforla/website/issues/7604) at 2024-10-19 06:20 PM PDT -ExperimentsInHonesty,2024-10-20T01:25:56Z,- ExperimentsInHonesty opened issue: [7605](https://github.com/hackforla/website/issues/7605) at 2024-10-19 06:25 PM PDT -ExperimentsInHonesty,2024-10-20T01:28:24Z,- ExperimentsInHonesty opened issue: [7606](https://github.com/hackforla/website/issues/7606) at 2024-10-19 06:28 PM PDT -ExperimentsInHonesty,2024-10-20T01:38:18Z,- ExperimentsInHonesty closed issue as completed: [7602](https://github.com/hackforla/website/issues/7602#event-14742548269) at 2024-10-19 06:38 PM PDT -ExperimentsInHonesty,2024-10-20T01:46:36Z,- ExperimentsInHonesty unassigned from issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-19 06:46 PM PDT -ExperimentsInHonesty,2024-10-20T02:01:18Z,- ExperimentsInHonesty commented on issue: [4778](https://github.com/hackforla/website/issues/4778#issuecomment-2424404088) at 2024-10-19 07:01 PM PDT -ExperimentsInHonesty,2024-10-20T02:01:18Z,- ExperimentsInHonesty closed issue as completed: [4778](https://github.com/hackforla/website/issues/4778#event-14742657256) at 2024-10-19 07:01 PM PDT -ExperimentsInHonesty,2024-10-20T16:10:10Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2425091541) at 2024-10-20 09:10 AM PDT -ExperimentsInHonesty,2024-10-20T16:36:26Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2425107256) at 2024-10-20 09:36 AM PDT -ExperimentsInHonesty,2024-10-20T16:37:22Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2425108021) at 2024-10-20 09:37 AM PDT -ExperimentsInHonesty,2024-10-20T17:01:22Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2425122891) at 2024-10-20 10:01 AM PDT -ExperimentsInHonesty,2024-10-20T17:09:21Z,- ExperimentsInHonesty commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2425130523) at 2024-10-20 10:09 AM PDT -ExperimentsInHonesty,2024-10-20T17:26:11Z,- ExperimentsInHonesty commented on issue: [3549](https://github.com/hackforla/website/issues/3549#issuecomment-2425139147) at 2024-10-20 10:26 AM PDT -ExperimentsInHonesty,2024-10-20T17:28:44Z,- ExperimentsInHonesty closed issue as completed: [3005](https://github.com/hackforla/website/issues/3005#event-14754746037) at 2024-10-20 10:28 AM PDT -ExperimentsInHonesty,2024-10-20T17:46:48Z,- ExperimentsInHonesty commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2425149610) at 2024-10-20 10:46 AM PDT -ExperimentsInHonesty,2024-10-20T17:46:48Z,- ExperimentsInHonesty closed issue as completed: [7220](https://github.com/hackforla/website/issues/7220#event-14754849551) at 2024-10-20 10:46 AM PDT -ExperimentsInHonesty,2024-10-20T18:41:31Z,- ExperimentsInHonesty commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2425173813) at 2024-10-20 11:41 AM PDT -ExperimentsInHonesty,2024-10-20T18:48:20Z,- ExperimentsInHonesty opened issue: [7607](https://github.com/hackforla/website/issues/7607) at 2024-10-20 11:48 AM PDT -ExperimentsInHonesty,2024-10-20T19:04:35Z,- ExperimentsInHonesty commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2425180273) at 2024-10-20 12:04 PM PDT -ExperimentsInHonesty,2024-10-22T01:02:28Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2428006202) at 2024-10-21 06:02 PM PDT -ExperimentsInHonesty,2024-10-22T01:10:41Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2428013217) at 2024-10-21 06:10 PM PDT -ExperimentsInHonesty,2024-10-25T17:46:18Z,- ExperimentsInHonesty commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2438436178) at 2024-10-25 10:46 AM PDT -ExperimentsInHonesty,2024-10-25T17:56:33Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2438452005) at 2024-10-25 10:56 AM PDT -ExperimentsInHonesty,2024-10-25T17:59:56Z,- ExperimentsInHonesty commented on issue: [7577](https://github.com/hackforla/website/issues/7577#issuecomment-2438458153) at 2024-10-25 10:59 AM PDT -ExperimentsInHonesty,2024-10-25T17:59:57Z,- ExperimentsInHonesty closed issue as not planned: [7577](https://github.com/hackforla/website/issues/7577#event-14881075894) at 2024-10-25 10:59 AM PDT -ExperimentsInHonesty,2024-10-25T23:35:22Z,- ExperimentsInHonesty closed issue as completed: [7024](https://github.com/hackforla/website/issues/7024#event-14887362495) at 2024-10-25 04:35 PM PDT -ExperimentsInHonesty,2024-10-25T23:35:58Z,- ExperimentsInHonesty closed issue as completed: [7224](https://github.com/hackforla/website/issues/7224#event-14887367538) at 2024-10-25 04:35 PM PDT -ExperimentsInHonesty,2024-10-25T23:42:42Z,- ExperimentsInHonesty commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2439047005) at 2024-10-25 04:42 PM PDT -ExperimentsInHonesty,2024-10-27T16:18:56Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440084990) at 2024-10-27 09:18 AM PDT -ExperimentsInHonesty,2024-10-27T16:29:12Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440088499) at 2024-10-27 09:29 AM PDT -ExperimentsInHonesty,2024-10-27T16:31:53Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440089451) at 2024-10-27 09:31 AM PDT -ExperimentsInHonesty,2024-10-27T16:34:04Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440090197) at 2024-10-27 09:34 AM PDT -ExperimentsInHonesty,2024-10-27T16:58:38Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440098816) at 2024-10-27 09:58 AM PDT -ExperimentsInHonesty,2024-10-27T17:32:42Z,- ExperimentsInHonesty reopened issue: [6751](https://github.com/hackforla/website/issues/6751#event-12949702515) at 2024-10-27 10:32 AM PDT -ExperimentsInHonesty,2024-10-29T00:50:11Z,- ExperimentsInHonesty closed issue as completed: [7331](https://github.com/hackforla/website/issues/7331#event-14971309907) at 2024-10-28 05:50 PM PDT -ExperimentsInHonesty,2024-10-29T01:49:15Z,- ExperimentsInHonesty commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2442997922) at 2024-10-28 06:49 PM PDT -ExperimentsInHonesty,2024-10-29T01:57:23Z,- ExperimentsInHonesty commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2443005322) at 2024-10-28 06:57 PM PDT -ExperimentsInHonesty,2024-10-29T17:05:13Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2444867021) at 2024-10-29 10:05 AM PDT -ExperimentsInHonesty,2024-10-29T18:52:57Z,- ExperimentsInHonesty opened issue: [7661](https://github.com/hackforla/website/issues/7661) at 2024-10-29 11:52 AM PDT -ExperimentsInHonesty,2024-10-29T19:00:42Z,- ExperimentsInHonesty commented on issue: [7621](https://github.com/hackforla/website/issues/7621#issuecomment-2445099851) at 2024-10-29 12:00 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:03Z,- ExperimentsInHonesty commented on issue: [7620](https://github.com/hackforla/website/issues/7620#issuecomment-2445100476) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:05Z,- ExperimentsInHonesty closed issue as completed: [7620](https://github.com/hackforla/website/issues/7620#event-14989965599) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:11Z,- ExperimentsInHonesty closed issue as not planned: [7620](https://github.com/hackforla/website/issues/7620#event-14989966710) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:19Z,- ExperimentsInHonesty closed issue as not planned: [7621](https://github.com/hackforla/website/issues/7621#event-14989968179) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:06:28Z,- ExperimentsInHonesty commented on issue: [7319](https://github.com/hackforla/website/issues/7319#issuecomment-2445110524) at 2024-10-29 12:06 PM PDT -ExperimentsInHonesty,2024-10-29T19:06:28Z,- ExperimentsInHonesty closed issue as not planned: [7319](https://github.com/hackforla/website/issues/7319#event-14990026208) at 2024-10-29 12:06 PM PDT -ExperimentsInHonesty,2024-10-29T19:18:19Z,- ExperimentsInHonesty commented on issue: [7644](https://github.com/hackforla/website/issues/7644#issuecomment-2445131436) at 2024-10-29 12:18 PM PDT -ExperimentsInHonesty,2024-10-29T19:18:19Z,- ExperimentsInHonesty closed issue as not planned: [7644](https://github.com/hackforla/website/issues/7644#event-14990155933) at 2024-10-29 12:18 PM PDT -ExperimentsInHonesty,2024-10-30T18:58:27Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2448097140) at 2024-10-30 11:58 AM PDT -ExperimentsInHonesty,2024-10-30T21:33:26Z,- ExperimentsInHonesty commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2448448573) at 2024-10-30 02:33 PM PDT -ExperimentsInHonesty,2024-10-30T22:19:33Z,- ExperimentsInHonesty commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2448565184) at 2024-10-30 03:19 PM PDT -ExperimentsInHonesty,2024-11-01T19:00:20Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2452428244) at 2024-11-01 12:00 PM PDT -ExperimentsInHonesty,2024-11-03T17:07:56Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2453498659) at 2024-11-03 09:07 AM PST -ExperimentsInHonesty,2024-11-03T18:07:27Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2453515171) at 2024-11-03 10:07 AM PST -ExperimentsInHonesty,2024-11-03T18:30:07Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2453521636) at 2024-11-03 10:30 AM PST -ExperimentsInHonesty,2024-11-03T18:30:29Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2453521749) at 2024-11-03 10:30 AM PST -ExperimentsInHonesty,2024-11-03T20:02:02Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2453559497) at 2024-11-03 12:02 PM PST -ExperimentsInHonesty,2024-11-03T21:01:24Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2453575671) at 2024-11-03 01:01 PM PST -ExperimentsInHonesty,2024-11-04T20:32:16Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2455644731) at 2024-11-04 12:32 PM PST -ExperimentsInHonesty,2024-11-05T22:55:59Z,- ExperimentsInHonesty commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458326331) at 2024-11-05 02:55 PM PST -ExperimentsInHonesty,2024-11-06T19:00:07Z,- ExperimentsInHonesty reopened issue: [2147](https://github.com/hackforla/website/issues/2147#event-14994711313) at 2024-11-06 11:00 AM PST -ExperimentsInHonesty,2024-11-06T19:01:06Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2460552255) at 2024-11-06 11:01 AM PST -ExperimentsInHonesty,2024-11-06T20:19:57Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2460699990) at 2024-11-06 12:19 PM PST -ExperimentsInHonesty,2024-11-06T20:46:14Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2460745726) at 2024-11-06 12:46 PM PST -ExperimentsInHonesty,2024-11-08T19:50:47Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2465639238) at 2024-11-08 11:50 AM PST -ExperimentsInHonesty,2024-11-10T17:51:21Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2466825281) at 2024-11-10 09:51 AM PST -ExperimentsInHonesty,2024-11-10T18:38:38Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2466840601) at 2024-11-10 10:38 AM PST -ExperimentsInHonesty,2024-11-10T18:45:26Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2466842623) at 2024-11-10 10:45 AM PST -ExperimentsInHonesty,2024-11-10T19:22:54Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2466854411) at 2024-11-10 11:22 AM PST -ExperimentsInHonesty,2024-11-12T00:42:35Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359332) at 2024-11-11 04:42 PM PST -ExperimentsInHonesty,2024-11-12T00:42:35Z,- ExperimentsInHonesty closed issue as completed: [7321](https://github.com/hackforla/website/issues/7321#event-15257001601) at 2024-11-11 04:42 PM PST -ExperimentsInHonesty,2024-11-12T00:43:22Z,- ExperimentsInHonesty commented on issue: [7686](https://github.com/hackforla/website/issues/7686#issuecomment-2469359964) at 2024-11-11 04:43 PM PST -ExperimentsInHonesty,2024-11-12T00:43:23Z,- ExperimentsInHonesty closed issue as not planned: [7686](https://github.com/hackforla/website/issues/7686#event-15257005482) at 2024-11-11 04:43 PM PST -ExperimentsInHonesty,2024-11-12T00:52:51Z,- ExperimentsInHonesty commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2469367744) at 2024-11-11 04:52 PM PST -ExperimentsInHonesty,2024-11-12T00:52:51Z,- ExperimentsInHonesty closed issue as completed: [7580](https://github.com/hackforla/website/issues/7580#event-15257057212) at 2024-11-11 04:52 PM PST -ExperimentsInHonesty,2024-11-12T00:53:23Z,- ExperimentsInHonesty commented on issue: [7704](https://github.com/hackforla/website/issues/7704#issuecomment-2469368341) at 2024-11-11 04:53 PM PST -ExperimentsInHonesty,2024-11-12T00:54:47Z,- ExperimentsInHonesty closed issue as not planned: [7704](https://github.com/hackforla/website/issues/7704#event-15257066530) at 2024-11-11 04:54 PM PST -ExperimentsInHonesty,2024-11-12T01:11:39Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2469386992) at 2024-11-11 05:11 PM PST -ExperimentsInHonesty,2024-11-12T01:11:39Z,- ExperimentsInHonesty reopened issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2469386992) at 2024-11-11 05:11 PM PST -ExperimentsInHonesty,2024-11-12T21:43:01Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2471644558) at 2024-11-12 01:43 PM PST -ExperimentsInHonesty,2024-11-13T03:28:26Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2472295856) at 2024-11-12 07:28 PM PST -ExperimentsInHonesty,2024-11-13T03:28:26Z,- ExperimentsInHonesty closed issue as completed: [6771](https://github.com/hackforla/website/issues/6771#event-15275182186) at 2024-11-12 07:28 PM PST -ExperimentsInHonesty,2024-11-13T03:51:34Z,- ExperimentsInHonesty closed issue as completed: [7314](https://github.com/hackforla/website/issues/7314#event-15275321907) at 2024-11-12 07:51 PM PST -ExperimentsInHonesty,2024-11-13T04:00:36Z,- ExperimentsInHonesty commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2472325268) at 2024-11-12 08:00 PM PST -ExperimentsInHonesty,2024-11-13T04:03:31Z,- ExperimentsInHonesty commented on issue: [7668](https://github.com/hackforla/website/issues/7668#issuecomment-2472327895) at 2024-11-12 08:03 PM PST -ExperimentsInHonesty,2024-11-13T04:04:39Z,- ExperimentsInHonesty commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2472328892) at 2024-11-12 08:04 PM PST -ExperimentsInHonesty,2024-11-13T04:10:43Z,- ExperimentsInHonesty commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2472334120) at 2024-11-12 08:10 PM PST -ExperimentsInHonesty,2024-11-13T04:10:43Z,- ExperimentsInHonesty closed issue as completed: [7454](https://github.com/hackforla/website/issues/7454#event-15275436727) at 2024-11-12 08:10 PM PST -ExperimentsInHonesty,2024-11-13T21:51:12Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2474893901) at 2024-11-13 01:51 PM PST -ExperimentsInHonesty,2024-11-14T23:50:48Z,- ExperimentsInHonesty commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477645955) at 2024-11-14 03:50 PM PST -ExperimentsInHonesty,2024-11-15T19:09:52Z,- ExperimentsInHonesty commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2479744135) at 2024-11-15 11:09 AM PST -ExperimentsInHonesty,2024-11-15T19:18:54Z,- ExperimentsInHonesty submitted pull request review: [7714](https://github.com/hackforla/website/pull/7714#pullrequestreview-2439437519) at 2024-11-15 11:18 AM PST -ExperimentsInHonesty,2024-11-15T19:21:35Z,- ExperimentsInHonesty commented on issue: [7648](https://github.com/hackforla/website/issues/7648#issuecomment-2479763796) at 2024-11-15 11:21 AM PST -ExperimentsInHonesty,2024-11-15T19:24:25Z,- ExperimentsInHonesty commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2479768081) at 2024-11-15 11:24 AM PST -ExperimentsInHonesty,2024-11-15T19:24:33Z,- ExperimentsInHonesty closed issue by PR 7714: [7648](https://github.com/hackforla/website/issues/7648#event-15316660375) at 2024-11-15 11:24 AM PST -ExperimentsInHonesty,2024-11-15T19:26:41Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2479771075) at 2024-11-15 11:26 AM PST -ExperimentsInHonesty,2024-11-17T18:50:17Z,- ExperimentsInHonesty commented on issue: [7724](https://github.com/hackforla/website/issues/7724#issuecomment-2481425679) at 2024-11-17 10:50 AM PST -ExperimentsInHonesty,2024-11-17T19:29:09Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2481454157) at 2024-11-17 11:29 AM PST -ExperimentsInHonesty,2024-11-18T19:58:41Z,- ExperimentsInHonesty opened issue: [7726](https://github.com/hackforla/website/issues/7726) at 2024-11-18 11:58 AM PST -ExperimentsInHonesty,2024-11-19T19:12:04Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2486539343) at 2024-11-19 11:12 AM PST -ExperimentsInHonesty,2024-11-19T19:25:20Z,- ExperimentsInHonesty commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2486569404) at 2024-11-19 11:25 AM PST -ExperimentsInHonesty,2024-11-19T19:33:35Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2486583954) at 2024-11-19 11:33 AM PST -ExperimentsInHonesty,2024-11-24T17:21:07Z,- ExperimentsInHonesty opened issue: [7760](https://github.com/hackforla/website/issues/7760) at 2024-11-24 09:21 AM PST -ExperimentsInHonesty,2024-11-24T17:21:33Z,- ExperimentsInHonesty assigned to issue: [7760](https://github.com/hackforla/website/issues/7760) at 2024-11-24 09:21 AM PST -ExperimentsInHonesty,2024-11-24T18:00:53Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2496140719) at 2024-11-24 10:00 AM PST -ExperimentsInHonesty,2024-11-24T18:07:10Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2496142893) at 2024-11-24 10:07 AM PST -ExperimentsInHonesty,2024-11-24T19:10:50Z,- ExperimentsInHonesty commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2496179645) at 2024-11-24 11:10 AM PST -ExperimentsInHonesty,2024-11-24T19:13:11Z,- ExperimentsInHonesty commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2496181213) at 2024-11-24 11:13 AM PST -ExperimentsInHonesty,2024-11-24T19:13:11Z,- ExperimentsInHonesty closed issue as completed: [7490](https://github.com/hackforla/website/issues/7490#event-15411276959) at 2024-11-24 11:13 AM PST -ExperimentsInHonesty,2024-11-24T19:43:47Z,- ExperimentsInHonesty commented on issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2496199234) at 2024-11-24 11:43 AM PST -ExperimentsInHonesty,2024-11-24T19:43:47Z,- ExperimentsInHonesty reopened issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2496199234) at 2024-11-24 11:43 AM PST -ExperimentsInHonesty,2024-11-25T19:23:27Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852165) at 2024-11-25 11:23 AM PST -ExperimentsInHonesty,2024-11-25T19:28:17Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498861238) at 2024-11-25 11:28 AM PST -ExperimentsInHonesty,2024-11-26T00:07:49Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2499286400) at 2024-11-25 04:07 PM PST -ExperimentsInHonesty,2024-11-26T01:19:07Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2499365116) at 2024-11-25 05:19 PM PST -ExperimentsInHonesty,2024-11-26T16:04:04Z,- ExperimentsInHonesty commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2501255362) at 2024-11-26 08:04 AM PST -ExperimentsInHonesty,2024-11-26T16:50:03Z,- ExperimentsInHonesty commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2501395523) at 2024-11-26 08:50 AM PST -ExperimentsInHonesty,2024-11-26T16:50:03Z,- ExperimentsInHonesty closed issue as completed: [7159](https://github.com/hackforla/website/issues/7159#event-15439399437) at 2024-11-26 08:50 AM PST -ExperimentsInHonesty,2024-11-26T18:33:32Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2501662276) at 2024-11-26 10:33 AM PST -ExperimentsInHonesty,2024-11-27T00:54:07Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2502365614) at 2024-11-26 04:54 PM PST -ExperimentsInHonesty,2024-11-27T04:08:43Z,- ExperimentsInHonesty closed issue as completed: [6058](https://github.com/hackforla/website/issues/6058#event-15446260018) at 2024-11-26 08:08 PM PST -ExperimentsInHonesty,2024-11-27T04:10:56Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2502683374) at 2024-11-26 08:10 PM PST -ExperimentsInHonesty,2024-11-27T21:29:58Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2504797807) at 2024-11-27 01:29 PM PST -ExperimentsInHonesty,2024-11-27T21:57:31Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2504863483) at 2024-11-27 01:57 PM PST -ExperimentsInHonesty,2024-11-27T21:58:58Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2504867946) at 2024-11-27 01:58 PM PST -ExperimentsInHonesty,2024-11-27T21:59:05Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2504868299) at 2024-11-27 01:59 PM PST -ExperimentsInHonesty,2024-11-27T22:02:46Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2504873436) at 2024-11-27 02:02 PM PST -ExperimentsInHonesty,2024-12-20T19:01:50Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2557561087) at 2024-12-20 11:01 AM PST -ExperimentsInHonesty,2024-12-31T18:49:00Z,- ExperimentsInHonesty commented on issue: [7574](https://github.com/hackforla/website/issues/7574#issuecomment-2566657251) at 2024-12-31 10:49 AM PST -ExperimentsInHonesty,2024-12-31T18:49:17Z,- ExperimentsInHonesty closed issue as completed: [7574](https://github.com/hackforla/website/issues/7574#event-15791617523) at 2024-12-31 10:49 AM PST -ExperimentsInHonesty,2025-01-19T17:17:59Z,- ExperimentsInHonesty commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2600949132) at 2025-01-19 09:17 AM PST -ExperimentsInHonesty,2025-01-19T17:18:54Z,- ExperimentsInHonesty unassigned from issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2277284985) at 2025-01-19 09:18 AM PST -ExperimentsInHonesty,2025-01-19T17:23:42Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2600950830) at 2025-01-19 09:23 AM PST -ExperimentsInHonesty,2025-01-21T01:40:15Z,- ExperimentsInHonesty commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2603457201) at 2025-01-20 05:40 PM PST -ExperimentsInHonesty,2025-01-21T17:48:13Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2605381318) at 2025-01-21 09:48 AM PST -ExperimentsInHonesty,2025-01-21T19:18:03Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2605548603) at 2025-01-21 11:18 AM PST -ExperimentsInHonesty,2025-01-21T19:27:28Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2605565227) at 2025-01-21 11:27 AM PST -ExperimentsInHonesty,2025-01-21T23:16:44Z,- ExperimentsInHonesty commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2605935006) at 2025-01-21 03:16 PM PST -ExperimentsInHonesty,2025-01-21T23:16:45Z,- ExperimentsInHonesty closed issue as completed: [7661](https://github.com/hackforla/website/issues/7661#event-16021322686) at 2025-01-21 03:16 PM PST -ExperimentsInHonesty,2025-01-23T17:46:14Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2610554821) at 2025-01-23 09:46 AM PST -ExperimentsInHonesty,2025-01-26T17:18:49Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2614513523) at 2025-01-26 09:18 AM PST -ExperimentsInHonesty,2025-01-26T17:36:37Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2614519911) at 2025-01-26 09:36 AM PST -ExperimentsInHonesty,2025-01-26T17:51:50Z,- ExperimentsInHonesty commented on issue: [7853](https://github.com/hackforla/website/issues/7853#issuecomment-2614525756) at 2025-01-26 09:51 AM PST -ExperimentsInHonesty,2025-01-26T17:53:38Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2614526376) at 2025-01-26 09:53 AM PST -ExperimentsInHonesty,2025-01-26T18:17:56Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2614536032) at 2025-01-26 10:17 AM PST -ExperimentsInHonesty,2025-01-26T18:20:00Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2614536624) at 2025-01-26 10:20 AM PST -ExperimentsInHonesty,2025-01-26T19:21:42Z,- ExperimentsInHonesty opened issue: [7854](https://github.com/hackforla/website/issues/7854) at 2025-01-26 11:21 AM PST -ExperimentsInHonesty,2025-01-26T22:24:47Z,- ExperimentsInHonesty opened issue: [7855](https://github.com/hackforla/website/issues/7855) at 2025-01-26 02:24 PM PST -ExperimentsInHonesty,2025-01-26T22:30:12Z,- ExperimentsInHonesty commented on issue: [7854](https://github.com/hackforla/website/issues/7854#issuecomment-2614616705) at 2025-01-26 02:30 PM PST -ExperimentsInHonesty,2025-01-26T22:30:12Z,- ExperimentsInHonesty closed issue as completed: [7854](https://github.com/hackforla/website/issues/7854#event-16071232939) at 2025-01-26 02:30 PM PST -ExperimentsInHonesty,2025-01-26T22:32:20Z,- ExperimentsInHonesty commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2614617347) at 2025-01-26 02:32 PM PST -ExperimentsInHonesty,2025-01-26T22:35:34Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614618196) at 2025-01-26 02:35 PM PST -ExperimentsInHonesty,2025-01-28T01:12:07Z,- ExperimentsInHonesty opened issue: [7859](https://github.com/hackforla/website/issues/7859) at 2025-01-27 05:12 PM PST -ExperimentsInHonesty,2025-01-28T01:12:32Z,- ExperimentsInHonesty commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2617388206) at 2025-01-27 05:12 PM PST -ExperimentsInHonesty,2025-01-28T01:29:11Z,- ExperimentsInHonesty commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2617432597) at 2025-01-27 05:29 PM PST -ExperimentsInHonesty,2025-01-28T01:29:12Z,- ExperimentsInHonesty closed issue as completed: [7377](https://github.com/hackforla/website/issues/7377#event-16086200041) at 2025-01-27 05:29 PM PST -ExperimentsInHonesty,2025-01-28T01:35:07Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2617451571) at 2025-01-27 05:35 PM PST -ExperimentsInHonesty,2025-01-28T17:14:42Z,- ExperimentsInHonesty commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2619604868) at 2025-01-28 09:14 AM PST -ExperimentsInHonesty,2025-02-04T01:22:54Z,- ExperimentsInHonesty commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2632548239) at 2025-02-03 05:22 PM PST -ExperimentsInHonesty,2025-02-04T23:16:43Z,- ExperimentsInHonesty commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2635276877) at 2025-02-04 03:16 PM PST -ExperimentsInHonesty,2025-02-07T04:41:14Z,- ExperimentsInHonesty commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2641933007) at 2025-02-06 08:41 PM PST -ExperimentsInHonesty,2025-02-09T18:41:18Z,- ExperimentsInHonesty closed issue as completed: [7710](https://github.com/hackforla/website/issues/7710#event-16238995199) at 2025-02-09 10:41 AM PST -ExperimentsInHonesty,2025-02-09T18:44:28Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2646476192) at 2025-02-09 10:44 AM PST -ExperimentsInHonesty,2025-02-09T18:58:33Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2646500765) at 2025-02-09 10:58 AM PST -ExperimentsInHonesty,2025-02-09T20:05:00Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2646563084) at 2025-02-09 12:05 PM PST -ExperimentsInHonesty,2025-02-09T20:10:44Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2646565323) at 2025-02-09 12:10 PM PST -ExperimentsInHonesty,2025-02-11T21:39:51Z,- ExperimentsInHonesty commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2652128063) at 2025-02-11 01:39 PM PST -ExperimentsInHonesty,2025-02-12T18:41:42Z,- ExperimentsInHonesty commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2654557583) at 2025-02-12 10:41 AM PST -ExperimentsInHonesty,2025-02-12T19:09:07Z,- ExperimentsInHonesty opened issue: [7904](https://github.com/hackforla/website/issues/7904) at 2025-02-12 11:09 AM PST -ExperimentsInHonesty,2025-02-12T19:31:19Z,- ExperimentsInHonesty commented on issue: [7663](https://github.com/hackforla/website/issues/7663#issuecomment-2654661699) at 2025-02-12 11:31 AM PST -ExperimentsInHonesty,2025-02-12T19:32:46Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2654664621) at 2025-02-12 11:32 AM PST -ExperimentsInHonesty,2025-02-13T23:39:18Z,- ExperimentsInHonesty commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2657932692) at 2025-02-13 03:39 PM PST -ExperimentsInHonesty,2025-02-16T18:25:58Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2661558222) at 2025-02-16 10:25 AM PST -ExperimentsInHonesty,2025-02-16T18:47:58Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2661566800) at 2025-02-16 10:47 AM PST -ExperimentsInHonesty,2025-02-16T19:43:37Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2661586397) at 2025-02-16 11:43 AM PST -ExperimentsInHonesty,2025-02-16T20:11:57Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2661596813) at 2025-02-16 12:11 PM PST -ExperimentsInHonesty,2025-02-16T20:37:43Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2661607467) at 2025-02-16 12:37 PM PST -ExperimentsInHonesty,2025-02-24T17:17:44Z,- ExperimentsInHonesty commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2679148663) at 2025-02-24 09:17 AM PST -ExperimentsInHonesty,2025-02-25T01:08:07Z,- ExperimentsInHonesty commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2680095103) at 2025-02-24 05:08 PM PST -ExperimentsInHonesty,2025-02-25T01:08:14Z,- ExperimentsInHonesty closed issue as completed: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -ExperimentsInHonesty,2025-02-25T01:08:26Z,- ExperimentsInHonesty assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -ExperimentsInHonesty,2025-02-25T01:32:46Z,- ExperimentsInHonesty closed issue by PR 8118: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-02-24 05:32 PM PST -ExperimentsInHonesty,2025-02-25T01:37:34Z,- ExperimentsInHonesty commented on issue: [7921](https://github.com/hackforla/website/issues/7921#issuecomment-2680143288) at 2025-02-24 05:37 PM PST -ExperimentsInHonesty,2025-02-25T01:37:34Z,- ExperimentsInHonesty closed issue as duplicate: [7921](https://github.com/hackforla/website/issues/7921#event-16442795926) at 2025-02-24 05:37 PM PST -ExperimentsInHonesty,2025-02-25T01:37:42Z,- ExperimentsInHonesty closed issue as not planned: [7921](https://github.com/hackforla/website/issues/7921#event-16442817402) at 2025-02-24 05:37 PM PST -ExperimentsInHonesty,2025-02-25T01:38:09Z,- ExperimentsInHonesty reopened issue: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-02-24 05:38 PM PST -ExperimentsInHonesty,2025-02-25T02:04:14Z,- ExperimentsInHonesty commented on issue: [7573](https://github.com/hackforla/website/issues/7573#issuecomment-2680185377) at 2025-02-24 06:04 PM PST -ExperimentsInHonesty,2025-02-25T02:09:18Z,- ExperimentsInHonesty commented on issue: [7841](https://github.com/hackforla/website/issues/7841#issuecomment-2680192143) at 2025-02-24 06:09 PM PST -ExperimentsInHonesty,2025-02-27T20:41:52Z,- ExperimentsInHonesty assigned to issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-02-27 12:41 PM PST -ExperimentsInHonesty,2025-03-02T18:11:53Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2692843083) at 2025-03-02 10:11 AM PST -ExperimentsInHonesty,2025-03-02T18:31:25Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2692850045) at 2025-03-02 10:31 AM PST -ExperimentsInHonesty,2025-03-02T18:46:41Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692855413) at 2025-03-02 10:46 AM PST -ExperimentsInHonesty,2025-03-02T19:20:46Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692867455) at 2025-03-02 11:20 AM PST -ExperimentsInHonesty,2025-03-02T19:40:30Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692874344) at 2025-03-02 11:40 AM PST -ExperimentsInHonesty,2025-03-02T19:59:30Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692881231) at 2025-03-02 11:59 AM PST -ExperimentsInHonesty,2025-03-03T20:16:26Z,- ExperimentsInHonesty unassigned from issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-03-03 12:16 PM PST -ExperimentsInHonesty,2025-03-04T01:29:58Z,- ExperimentsInHonesty commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2695954699) at 2025-03-03 05:29 PM PST -ExperimentsInHonesty,2025-03-04T01:36:05Z,- ExperimentsInHonesty closed issue as completed: [6689](https://github.com/hackforla/website/issues/6689#event-16543177143) at 2025-03-03 05:36 PM PST -ExperimentsInHonesty,2025-03-04T01:38:27Z,- ExperimentsInHonesty commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2695964353) at 2025-03-03 05:38 PM PST -ExperimentsInHonesty,2025-03-04T01:39:51Z,- ExperimentsInHonesty commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2695965897) at 2025-03-03 05:39 PM PST -ExperimentsInHonesty,2025-03-04T01:41:20Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-2695967567) at 2025-03-03 05:41 PM PST -ExperimentsInHonesty,2025-03-04T01:43:42Z,- ExperimentsInHonesty opened pull request: [7964](https://github.com/hackforla/website/pull/7964) at 2025-03-03 05:43 PM PST -ExperimentsInHonesty,2025-03-04T01:48:48Z,- ExperimentsInHonesty pull request closed w/o merging: [7964](https://github.com/hackforla/website/pull/7964#event-16543259729) at 2025-03-03 05:48 PM PST -ExperimentsInHonesty,2025-03-04T17:02:18Z,- ExperimentsInHonesty closed issue as completed: [7007](https://github.com/hackforla/website/issues/7007#event-16567092335) at 2025-03-04 09:02 AM PST -ExperimentsInHonesty,2025-03-05T21:18:02Z,- ExperimentsInHonesty commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2702100522) at 2025-03-05 01:18 PM PST -ExperimentsInHonesty,2025-03-09T17:10:30Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2708966670) at 2025-03-09 10:10 AM PDT -ExperimentsInHonesty,2025-03-09T17:11:53Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2708967223) at 2025-03-09 10:11 AM PDT -ExperimentsInHonesty,2025-03-09T17:35:47Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2708978731) at 2025-03-09 10:35 AM PDT -ExperimentsInHonesty,2025-03-09T18:06:04Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2708993504) at 2025-03-09 11:06 AM PDT -ExperimentsInHonesty,2025-03-09T18:29:06Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709004329) at 2025-03-09 11:29 AM PDT -ExperimentsInHonesty,2025-03-09T18:31:31Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709005422) at 2025-03-09 11:31 AM PDT -ExperimentsInHonesty,2025-03-09T18:53:39Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709015584) at 2025-03-09 11:53 AM PDT -ExperimentsInHonesty,2025-03-09T18:55:45Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709016387) at 2025-03-09 11:55 AM PDT -ExperimentsInHonesty,2025-03-11T01:04:33Z,- ExperimentsInHonesty commented on issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2712192146) at 2025-03-10 06:04 PM PDT -ExperimentsInHonesty,2025-03-16T17:27:54Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2727553398) at 2025-03-16 10:27 AM PDT -ExperimentsInHonesty,2025-03-16T17:41:59Z,- ExperimentsInHonesty commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727559798) at 2025-03-16 10:41 AM PDT -ExperimentsInHonesty,2025-03-18T00:54:36Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2731297512) at 2025-03-17 05:54 PM PDT -ExperimentsInHonesty,2025-03-18T00:54:36Z,- ExperimentsInHonesty closed issue as completed: [6129](https://github.com/hackforla/website/issues/6129#event-16816829973) at 2025-03-17 05:54 PM PDT -ExperimentsInHonesty,2025-03-18T01:07:44Z,- ExperimentsInHonesty commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2731316345) at 2025-03-17 06:07 PM PDT -ExperimentsInHonesty,2025-03-18T01:09:39Z,- ExperimentsInHonesty commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2731318935) at 2025-03-17 06:09 PM PDT -ExperimentsInHonesty,2025-03-19T21:10:37Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2738122919) at 2025-03-19 02:10 PM PDT -ExperimentsInHonesty,2025-03-30T16:08:54Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764629155) at 2025-03-30 09:08 AM PDT -ExperimentsInHonesty,2025-03-30T16:42:38Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764641268) at 2025-03-30 09:42 AM PDT -ExperimentsInHonesty,2025-04-06T16:15:20Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781495596) at 2025-04-06 09:15 AM PDT -ExperimentsInHonesty,2025-04-06T16:58:38Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781511936) at 2025-04-06 09:58 AM PDT -ExperimentsInHonesty,2025-04-06T17:07:42Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781515348) at 2025-04-06 10:07 AM PDT -ExperimentsInHonesty,2025-04-13T19:13:51Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2800083657) at 2025-04-13 12:13 PM PDT -ExperimentsInHonesty,2025-04-13T19:16:33Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2800084814) at 2025-04-13 12:16 PM PDT -ExperimentsInHonesty,2025-04-13T19:31:10Z,- ExperimentsInHonesty commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2800090128) at 2025-04-13 12:31 PM PDT -ExperimentsInHonesty,2025-04-14T18:43:35Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2802627306) at 2025-04-14 11:43 AM PDT -ExperimentsInHonesty,2025-04-14T18:59:30Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2802685507) at 2025-04-14 11:59 AM PDT -ExperimentsInHonesty,2025-04-15T00:14:49Z,- ExperimentsInHonesty commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2803384770) at 2025-04-14 05:14 PM PDT -ExperimentsInHonesty,2025-04-27T17:48:50Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2833567742) at 2025-04-27 10:48 AM PDT -ExperimentsInHonesty,2025-04-27T18:01:51Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2833572669) at 2025-04-27 11:01 AM PDT -ExperimentsInHonesty,2025-05-04T18:14:05Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2849346855) at 2025-05-04 11:14 AM PDT -ExperimentsInHonesty,2025-05-04T18:24:20Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2849351028) at 2025-05-04 11:24 AM PDT -ExperimentsInHonesty,2025-05-06T17:09:04Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2855330337) at 2025-05-06 10:09 AM PDT -ExperimentsInHonesty,2025-05-07T20:38:07Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860281028) at 2025-05-07 01:38 PM PDT -ExperimentsInHonesty,2025-05-07T20:42:23Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860297309) at 2025-05-07 01:42 PM PDT -ExperimentsInHonesty,2025-05-07T20:47:33Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860311497) at 2025-05-07 01:47 PM PDT -ExperimentsInHonesty,2025-05-07T20:50:41Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860319071) at 2025-05-07 01:50 PM PDT -ExperimentsInHonesty,2025-05-13T00:49:13Z,- ExperimentsInHonesty commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2874680163) at 2025-05-12 05:49 PM PDT -ExperimentsInHonesty,2025-05-14T20:13:29Z,- ExperimentsInHonesty commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2881443593) at 2025-05-14 01:13 PM PDT -ExperimentsInHonesty,2025-05-19T16:08:26Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2891566352) at 2025-05-19 09:08 AM PDT -ExperimentsInHonesty,2025-05-20T00:11:48Z,- ExperimentsInHonesty commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892551537) at 2025-05-19 05:11 PM PDT -ExperimentsInHonesty,2025-05-20T00:47:08Z,- ExperimentsInHonesty closed issue as completed: [6919](https://github.com/hackforla/website/issues/6919#event-17723933701) at 2025-05-19 05:47 PM PDT -ExperimentsInHonesty,2025-05-28T20:24:22Z,- ExperimentsInHonesty commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2917519652) at 2025-05-28 01:24 PM PDT -ExperimentsInHonesty,2025-05-28T20:26:54Z,- ExperimentsInHonesty commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2917525402) at 2025-05-28 01:26 PM PDT -ExperimentsInHonesty,2025-05-28T20:27:28Z,- ExperimentsInHonesty commented on issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2917527404) at 2025-05-28 01:27 PM PDT -ExperimentsInHonesty,2025-05-28T20:28:08Z,- ExperimentsInHonesty commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2917529464) at 2025-05-28 01:28 PM PDT -ExperimentsInHonesty,2025-05-28T20:28:35Z,- ExperimentsInHonesty commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2917531083) at 2025-05-28 01:28 PM PDT -ExperimentsInHonesty,2025-06-03T00:35:31Z,- ExperimentsInHonesty closed issue as completed: [8168](https://github.com/hackforla/website/issues/8168#event-17945561153) at 2025-06-02 05:35 PM PDT -ExperimentsInHonesty,2025-06-03T00:35:41Z,- ExperimentsInHonesty closed issue as completed: [8165](https://github.com/hackforla/website/issues/8165#event-17945564853) at 2025-06-02 05:35 PM PDT -ExperimentsInHonesty,2025-06-08T16:58:59Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2954176779) at 2025-06-08 09:58 AM PDT -ExperimentsInHonesty,2025-06-11T20:05:44Z,- ExperimentsInHonesty commented on issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2964007788) at 2025-06-11 01:05 PM PDT -ExperimentsInHonesty,2025-06-22T16:48:45Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2994313899) at 2025-06-22 09:48 AM PDT -ExperimentsInHonesty,2025-06-22T17:14:16Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2994329904) at 2025-06-22 10:14 AM PDT -ExperimentsInHonesty,2025-06-22T17:36:11Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2994340043) at 2025-06-22 10:36 AM PDT -eyaaoo,6428,SKILLS ISSUE -eyaaoo,2024-03-05T04:07:07Z,- eyaaoo opened issue: [6428](https://github.com/hackforla/website/issues/6428) at 2024-03-04 08:07 PM PST -eyaaoo,2024-03-05T04:12:21Z,- eyaaoo assigned to issue: [6428](https://github.com/hackforla/website/issues/6428) at 2024-03-04 08:12 PM PST -eyaaoo,2024-03-14T18:14:44Z,- eyaaoo commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-1998055485) at 2024-03-14 11:14 AM PDT -eyaaoo,2024-03-31T21:43:56Z,- eyaaoo assigned to issue: [6235](https://github.com/hackforla/website/issues/6235) at 2024-03-31 02:43 PM PDT -eyaaoo,2024-03-31T22:22:44Z,- eyaaoo commented on issue: [6235](https://github.com/hackforla/website/issues/6235#issuecomment-2028931805) at 2024-03-31 03:22 PM PDT -eyaaoo,2024-03-31T22:23:44Z,- eyaaoo commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-2028931986) at 2024-03-31 03:23 PM PDT -eyaaoo,2024-03-31T22:23:44Z,- eyaaoo closed issue as completed: [6428](https://github.com/hackforla/website/issues/6428#event-12304943959) at 2024-03-31 03:23 PM PDT -eyaaoo,2024-04-04T05:58:07Z,- eyaaoo opened pull request: [6564](https://github.com/hackforla/website/pull/6564) at 2024-04-03 10:58 PM PDT -eyaaoo,2024-04-05T05:30:33Z,- eyaaoo pull request merged: [6564](https://github.com/hackforla/website/pull/6564#event-12368097819) at 2024-04-04 10:30 PM PDT -eyaaoo,2024-04-06T17:33:08Z,- eyaaoo assigned to issue: [6537](https://github.com/hackforla/website/issues/6537) at 2024-04-06 10:33 AM PDT -eyaaoo,2024-04-06T17:37:12Z,- eyaaoo commented on issue: [6537](https://github.com/hackforla/website/issues/6537#issuecomment-2041147111) at 2024-04-06 10:37 AM PDT -eyaaoo,2024-04-06T17:38:27Z,- eyaaoo commented on issue: [6537](https://github.com/hackforla/website/issues/6537#issuecomment-2041147335) at 2024-04-06 10:38 AM PDT -ezchung,4609,SKILLS ISSUE -ezchung,2023-05-09T02:58:25Z,- ezchung opened issue: [4609](https://github.com/hackforla/website/issues/4609) at 2023-05-08 07:58 PM PDT -ezchung,2023-05-09T04:08:56Z,- ezchung assigned to issue: [4609](https://github.com/hackforla/website/issues/4609) at 2023-05-08 09:08 PM PDT -fahimicodes,5726,SKILLS ISSUE -fahimicodes,2023-10-17T03:11:20Z,- fahimicodes opened issue: [5726](https://github.com/hackforla/website/issues/5726) at 2023-10-16 08:11 PM PDT -fahimicodes,2023-10-17T03:11:21Z,- fahimicodes assigned to issue: [5726](https://github.com/hackforla/website/issues/5726) at 2023-10-16 08:11 PM PDT -fahimicodes,2023-10-17T18:18:14Z,- fahimicodes assigned to issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1738367332) at 2023-10-17 11:18 AM PDT -fahimicodes,2023-10-17T18:26:58Z,- fahimicodes commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1766944554) at 2023-10-17 11:26 AM PDT -fahimicodes,2023-10-17T18:57:22Z,- fahimicodes commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1766988529) at 2023-10-17 11:57 AM PDT -fahimicodes,2023-10-17T20:08:03Z,- fahimicodes opened pull request: [5732](https://github.com/hackforla/website/pull/5732) at 2023-10-17 01:08 PM PDT -fahimicodes,2023-10-18T23:24:27Z,- fahimicodes commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1769572645) at 2023-10-18 04:24 PM PDT -fahimicodes,2023-10-20T13:51:38Z,- fahimicodes pull request merged: [5732](https://github.com/hackforla/website/pull/5732#event-10724811238) at 2023-10-20 06:51 AM PDT -FamousHero,6964,SKILLS ISSUE -FamousHero,7327,SKILLS ISSUE -FamousHero,2024-06-05T21:19:49Z,- FamousHero opened issue: [6964](https://github.com/hackforla/website/issues/6964) at 2024-06-05 02:19 PM PDT -FamousHero,2024-06-23T16:33:57Z,- FamousHero assigned to issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2185145971) at 2024-06-23 09:33 AM PDT -FamousHero,2024-08-21T02:58:30Z,- FamousHero opened issue: [7327](https://github.com/hackforla/website/issues/7327) at 2024-08-20 07:58 PM PDT -FamousHero,2024-08-21T02:58:41Z,- FamousHero assigned to issue: [7327](https://github.com/hackforla/website/issues/7327) at 2024-08-20 07:58 PM PDT -FamousHero,2024-08-21T03:19:16Z,- FamousHero assigned to issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2282848346) at 2024-08-20 08:19 PM PDT -FamousHero,2024-08-21T03:40:04Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2300602215) at 2024-08-20 08:40 PM PDT -FamousHero,2024-08-23T18:12:09Z,- FamousHero assigned to issue: [7189](https://github.com/hackforla/website/issues/7189) at 2024-08-23 11:12 AM PDT -FamousHero,2024-08-23T18:12:29Z,- FamousHero unassigned from issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307578482) at 2024-08-23 11:12 AM PDT -FamousHero,2024-08-23T18:20:48Z,- FamousHero assigned to issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307578482) at 2024-08-23 11:20 AM PDT -FamousHero,2024-08-23T18:21:05Z,- FamousHero unassigned from issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307590162) at 2024-08-23 11:21 AM PDT -FamousHero,2024-08-23T18:21:58Z,- FamousHero unassigned from issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2300512055) at 2024-08-23 11:21 AM PDT -FamousHero,2024-08-23T18:22:38Z,- FamousHero assigned to issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307590162) at 2024-08-23 11:22 AM PDT -FamousHero,2024-08-23T19:32:26Z,- FamousHero opened pull request: [7345](https://github.com/hackforla/website/pull/7345) at 2024-08-23 12:32 PM PDT -FamousHero,2024-08-23T21:31:44Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2307837053) at 2024-08-23 02:31 PM PDT -FamousHero,2024-08-23T21:34:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2307839689) at 2024-08-23 02:34 PM PDT -FamousHero,2024-08-23T21:36:10Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2307841405) at 2024-08-23 02:36 PM PDT -FamousHero,2024-08-23T21:38:03Z,- FamousHero commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307843266) at 2024-08-23 02:38 PM PDT -FamousHero,2024-08-24T01:27:05Z,- FamousHero commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2307977571) at 2024-08-23 06:27 PM PDT -FamousHero,2024-08-29T23:17:50Z,- FamousHero pull request merged: [7345](https://github.com/hackforla/website/pull/7345#event-14072096650) at 2024-08-29 04:17 PM PDT -FamousHero,2024-08-30T06:05:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2320164442) at 2024-08-29 11:05 PM PDT -FamousHero,2024-08-30T06:07:05Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2320167687) at 2024-08-29 11:07 PM PDT -FamousHero,2024-08-30T06:08:23Z,- FamousHero assigned to issue: [7286](https://github.com/hackforla/website/issues/7286) at 2024-08-29 11:08 PM PDT -FamousHero,2024-08-30T06:10:48Z,- FamousHero commented on issue: [7286](https://github.com/hackforla/website/issues/7286#issuecomment-2320175108) at 2024-08-29 11:10 PM PDT -FamousHero,2024-09-01T23:58:47Z,- FamousHero opened pull request: [7376](https://github.com/hackforla/website/pull/7376) at 2024-09-01 04:58 PM PDT -FamousHero,2024-09-04T22:05:01Z,- FamousHero pull request merged: [7376](https://github.com/hackforla/website/pull/7376#event-14138080045) at 2024-09-04 03:05 PM PDT -FamousHero,2024-09-06T09:20:00Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2333632091) at 2024-09-06 02:20 AM PDT -FamousHero,2024-09-06T09:26:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2333644041) at 2024-09-06 02:26 AM PDT -FamousHero,2024-09-10T04:24:10Z,- FamousHero assigned to issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2259995516) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:24:20Z,- FamousHero assigned to issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2260003698) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:24:24Z,- FamousHero unassigned from issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2339580789) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:24:29Z,- FamousHero unassigned from issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2260003698) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:25:12Z,- FamousHero assigned to issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339580938) at 2024-09-09 09:25 PM PDT -FamousHero,2024-09-10T04:38:53Z,- FamousHero opened issue: [7430](https://github.com/hackforla/website/issues/7430) at 2024-09-09 09:38 PM PDT -FamousHero,2024-09-10T04:45:04Z,- FamousHero opened issue: [7431](https://github.com/hackforla/website/issues/7431) at 2024-09-09 09:45 PM PDT -FamousHero,2024-09-10T04:48:02Z,- FamousHero opened issue: [7432](https://github.com/hackforla/website/issues/7432) at 2024-09-09 09:48 PM PDT -FamousHero,2024-09-10T04:49:46Z,- FamousHero opened issue: [7433](https://github.com/hackforla/website/issues/7433) at 2024-09-09 09:49 PM PDT -FamousHero,2024-09-10T04:51:22Z,- FamousHero opened issue: [7434](https://github.com/hackforla/website/issues/7434) at 2024-09-09 09:51 PM PDT -FamousHero,2024-09-10T04:52:44Z,- FamousHero opened issue: [7435](https://github.com/hackforla/website/issues/7435) at 2024-09-09 09:52 PM PDT -FamousHero,2024-09-10T04:58:23Z,- FamousHero commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339619053) at 2024-09-09 09:58 PM PDT -FamousHero,2024-09-10T05:18:35Z,- FamousHero commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2339642814) at 2024-09-09 10:18 PM PDT -FamousHero,2024-09-11T15:26:19Z,- FamousHero commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2343990836) at 2024-09-11 08:26 AM PDT -FamousHero,2024-09-11T15:34:03Z,- FamousHero submitted pull request review: [7427](https://github.com/hackforla/website/pull/7427#pullrequestreview-2297621161) at 2024-09-11 08:34 AM PDT -FamousHero,2024-09-11T20:22:05Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2344631376) at 2024-09-11 01:22 PM PDT -FamousHero,2024-09-11T20:24:03Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2344634384) at 2024-09-11 01:24 PM PDT -FamousHero,2024-09-11T20:27:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2344639635) at 2024-09-11 01:27 PM PDT -FamousHero,2024-09-13T23:58:55Z,- FamousHero assigned to issue: [7379](https://github.com/hackforla/website/issues/7379) at 2024-09-13 04:58 PM PDT -FamousHero,2024-09-14T02:48:37Z,- FamousHero submitted pull request review: [7445](https://github.com/hackforla/website/pull/7445#pullrequestreview-2304360666) at 2024-09-13 07:48 PM PDT -FamousHero,2024-09-14T03:51:55Z,- FamousHero opened pull request: [7446](https://github.com/hackforla/website/pull/7446) at 2024-09-13 08:51 PM PDT -FamousHero,2024-09-15T02:57:32Z,- FamousHero pull request merged: [7446](https://github.com/hackforla/website/pull/7446#event-14262096861) at 2024-09-14 07:57 PM PDT -FamousHero,2024-09-15T11:21:41Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2351546481) at 2024-09-15 04:21 AM PDT -FamousHero,2024-09-15T11:22:37Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2351546809) at 2024-09-15 04:22 AM PDT -FamousHero,2024-09-15T22:24:58Z,- FamousHero assigned to issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2345174485) at 2024-09-15 03:24 PM PDT -FamousHero,2024-09-16T00:55:53Z,- FamousHero opened pull request: [7463](https://github.com/hackforla/website/pull/7463) at 2024-09-15 05:55 PM PDT -FamousHero,2024-09-16T17:53:25Z,- FamousHero commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2353552112) at 2024-09-16 10:53 AM PDT -FamousHero,2024-09-17T00:55:44Z,- FamousHero submitted pull request review: [7462](https://github.com/hackforla/website/pull/7462#pullrequestreview-2308047754) at 2024-09-16 05:55 PM PDT -FamousHero,2024-09-17T15:46:05Z,- FamousHero submitted pull request review: [7462](https://github.com/hackforla/website/pull/7462#pullrequestreview-2310149466) at 2024-09-17 08:46 AM PDT -FamousHero,2024-09-18T18:52:38Z,- FamousHero pull request merged: [7463](https://github.com/hackforla/website/pull/7463#event-14312282936) at 2024-09-18 11:52 AM PDT -FamousHero,2024-09-19T22:58:43Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2362341795) at 2024-09-19 03:58 PM PDT -FamousHero,2024-09-19T23:03:14Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2362346510) at 2024-09-19 04:03 PM PDT -FamousHero,2024-09-19T23:08:49Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2362351930) at 2024-09-19 04:08 PM PDT -FamousHero,2024-09-19T23:17:24Z,- FamousHero commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362359866) at 2024-09-19 04:17 PM PDT -FamousHero,2024-09-19T23:23:43Z,- FamousHero commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2362365817) at 2024-09-19 04:23 PM PDT -FamousHero,2024-09-21T02:40:24Z,- FamousHero submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2319636647) at 2024-09-20 07:40 PM PDT -FamousHero,2024-09-21T03:02:48Z,- FamousHero submitted pull request review: [7498](https://github.com/hackforla/website/pull/7498#pullrequestreview-2319639312) at 2024-09-20 08:02 PM PDT -FamousHero,2024-09-21T19:54:45Z,- FamousHero submitted pull request review: [7504](https://github.com/hackforla/website/pull/7504#pullrequestreview-2319896729) at 2024-09-21 12:54 PM PDT -FamousHero,2024-09-21T20:13:51Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2365307522) at 2024-09-21 01:13 PM PDT -FamousHero,2024-09-22T17:27:13Z,- FamousHero assigned to issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2257211841) at 2024-09-22 10:27 AM PDT -FamousHero,2024-09-22T17:47:12Z,- FamousHero unassigned from issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2366883244) at 2024-09-22 10:47 AM PDT -FamousHero,2024-09-22T18:03:11Z,- FamousHero assigned to issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2031082340) at 2024-09-22 11:03 AM PDT -FamousHero,2024-09-24T05:25:01Z,- FamousHero submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2324073855) at 2024-09-23 10:25 PM PDT -FamousHero,2024-09-24T05:29:01Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2370220251) at 2024-09-23 10:29 PM PDT -FamousHero,2024-09-24T05:31:10Z,- FamousHero commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2370224456) at 2024-09-23 10:31 PM PDT -FamousHero,2024-09-25T02:00:30Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2372731327) at 2024-09-24 07:00 PM PDT -FamousHero,2024-09-26T02:23:04Z,- FamousHero submitted pull request review: [7514](https://github.com/hackforla/website/pull/7514#pullrequestreview-2329874264) at 2024-09-25 07:23 PM PDT -FamousHero,2024-09-26T21:27:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2377969603) at 2024-09-26 02:27 PM PDT -FamousHero,2024-09-26T22:09:36Z,- FamousHero opened issue: [7524](https://github.com/hackforla/website/issues/7524) at 2024-09-26 03:09 PM PDT -FamousHero,2024-09-27T02:49:55Z,- FamousHero commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2378306304) at 2024-09-26 07:49 PM PDT -FamousHero,2024-09-27T04:17:04Z,- FamousHero opened issue: [7527](https://github.com/hackforla/website/issues/7527) at 2024-09-26 09:17 PM PDT -FamousHero,2024-09-27T04:22:56Z,- FamousHero commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2378373349) at 2024-09-26 09:22 PM PDT -FamousHero,2024-09-27T04:52:54Z,- FamousHero commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2378396726) at 2024-09-26 09:52 PM PDT -FamousHero,2024-09-27T21:21:32Z,- FamousHero assigned to issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380074797) at 2024-09-27 02:21 PM PDT -FamousHero,2024-09-28T02:37:39Z,- FamousHero commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380371655) at 2024-09-27 07:37 PM PDT -FamousHero,2024-09-28T02:56:39Z,- FamousHero submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2334864647) at 2024-09-27 07:56 PM PDT -FamousHero,2024-09-28T03:05:43Z,- FamousHero submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2334865616) at 2024-09-27 08:05 PM PDT -FamousHero,2024-09-29T23:49:01Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2381656729) at 2024-09-29 04:49 PM PDT -FamousHero,2024-09-29T23:51:30Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2381657458) at 2024-09-29 04:51 PM PDT -FamousHero,2024-10-03T23:41:00Z,- FamousHero commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392516161) at 2024-10-03 04:41 PM PDT -FamousHero,2024-10-03T23:42:55Z,- FamousHero commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2392517698) at 2024-10-03 04:42 PM PDT -FamousHero,2024-10-05T15:05:51Z,- FamousHero submitted pull request review: [7558](https://github.com/hackforla/website/pull/7558#pullrequestreview-2349621934) at 2024-10-05 08:05 AM PDT -FamousHero,2024-10-05T15:11:35Z,- FamousHero commented on pull request: [7564](https://github.com/hackforla/website/pull/7564#issuecomment-2395088241) at 2024-10-05 08:11 AM PDT -FamousHero,2024-10-05T22:58:39Z,- FamousHero unassigned from issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392752116) at 2024-10-05 03:58 PM PDT -FamousHero,2024-10-07T06:28:28Z,- FamousHero submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2350964275) at 2024-10-06 11:28 PM PDT -FamousHero,2024-10-08T01:34:47Z,- FamousHero commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2398431519) at 2024-10-07 06:34 PM PDT -FamousHero,2024-10-08T03:43:27Z,- FamousHero commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2398735451) at 2024-10-07 08:43 PM PDT -FamousHero,2024-10-08T03:43:40Z,- FamousHero submitted pull request review: [7558](https://github.com/hackforla/website/pull/7558#pullrequestreview-2353307665) at 2024-10-07 08:43 PM PDT -FamousHero,2024-10-08T18:24:07Z,- FamousHero submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2355225254) at 2024-10-08 11:24 AM PDT -FamousHero,2024-10-22T02:17:43Z,- FamousHero submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2383620670) at 2024-10-21 07:17 PM PDT -FamousHero,2024-10-22T02:24:14Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2428078492) at 2024-10-21 07:24 PM PDT -FamousHero,2024-10-22T02:26:25Z,- FamousHero commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2428080290) at 2024-10-21 07:26 PM PDT -FamousHero,2024-10-25T05:40:59Z,- FamousHero submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394225834) at 2024-10-24 10:40 PM PDT -FamousHero,2024-11-01T02:12:48Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2451163278) at 2024-10-31 07:12 PM PDT -FamousHero,2024-11-01T02:18:05Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2451167459) at 2024-10-31 07:18 PM PDT -FamousHero,2024-11-01T02:28:34Z,- FamousHero assigned to issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2366883244) at 2024-10-31 07:28 PM PDT -FamousHero,2024-11-15T23:27:08Z,- FamousHero commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2480122314) at 2024-11-15 03:27 PM PST -FamousHero,2024-11-15T23:34:21Z,- FamousHero submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2439928139) at 2024-11-15 03:34 PM PST -FamousHero,2024-11-15T23:36:41Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2480130910) at 2024-11-15 03:36 PM PST -FamousHero,2024-11-15T23:45:44Z,- FamousHero submitted pull request review: [7719](https://github.com/hackforla/website/pull/7719#pullrequestreview-2439939092) at 2024-11-15 03:45 PM PST -FamousHero,2024-12-07T20:33:23Z,- FamousHero closed issue by PR 7791: [7604](https://github.com/hackforla/website/issues/7604#event-15570616804) at 2024-12-07 12:33 PM PST -FamousHero,2025-01-13T22:47:43Z,- FamousHero commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2588386246) at 2025-01-13 02:47 PM PST -FamousHero,2025-01-17T04:33:25Z,- FamousHero commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2597415776) at 2025-01-16 08:33 PM PST -FamousHero,2025-02-14T02:45:46Z,- FamousHero closed issue as completed: [7327](https://github.com/hackforla/website/issues/7327#event-16305242774) at 2025-02-13 06:45 PM PST -FamousHero,2025-02-26T02:56:31Z,- FamousHero commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2683767887) at 2025-02-25 06:56 PM PST -fancyham,2022-09-21T06:02:42Z,- fancyham commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1253243896) at 2022-09-20 11:02 PM PDT -FatCatLikesBeer,8094,SKILLS ISSUE -FatCatLikesBeer,2025-04-29T02:46:48Z,- FatCatLikesBeer opened issue: [8094](https://github.com/hackforla/website/issues/8094) at 2025-04-28 07:46 PM PDT -FatCatLikesBeer,2025-04-29T02:46:57Z,- FatCatLikesBeer assigned to issue: [8094](https://github.com/hackforla/website/issues/8094) at 2025-04-28 07:46 PM PDT -FatCatLikesBeer,2025-04-29T03:59:32Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2837380629) at 2025-04-28 08:59 PM PDT -FatCatLikesBeer,2025-04-30T06:02:19Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2840894152) at 2025-04-29 11:02 PM PDT -FatCatLikesBeer,2025-05-05T05:39:23Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2849961512) at 2025-05-04 10:39 PM PDT -FatCatLikesBeer,2025-05-06T02:53:49Z,- FatCatLikesBeer assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705552522) at 2025-05-05 07:53 PM PDT -FatCatLikesBeer,2025-05-06T02:57:01Z,- FatCatLikesBeer commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2853136725) at 2025-05-05 07:57 PM PDT -FatCatLikesBeer,2025-05-06T02:58:27Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2853137829) at 2025-05-05 07:58 PM PDT -FatCatLikesBeer,2025-05-06T03:51:38Z,- FatCatLikesBeer opened pull request: [8116](https://github.com/hackforla/website/pull/8116) at 2025-05-05 08:51 PM PDT -FatCatLikesBeer,2025-05-11T17:07:52Z,- FatCatLikesBeer pull request merged: [8116](https://github.com/hackforla/website/pull/8116#event-17606135888) at 2025-05-11 10:07 AM PDT -FatCatLikesBeer,2025-05-13T05:15:17Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2875073355) at 2025-05-12 10:15 PM PDT -FatCatLikesBeer,2025-05-13T23:15:48Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2878160975) at 2025-05-13 04:15 PM PDT -FatCatLikesBeer,2025-05-14T00:12:31Z,- FatCatLikesBeer assigned to issue: [7944](https://github.com/hackforla/website/issues/7944) at 2025-05-13 05:12 PM PDT -FatCatLikesBeer,2025-05-14T00:16:03Z,- FatCatLikesBeer commented on issue: [7944](https://github.com/hackforla/website/issues/7944#issuecomment-2878247577) at 2025-05-13 05:16 PM PDT -FatCatLikesBeer,2025-05-15T05:41:56Z,- FatCatLikesBeer opened pull request: [8143](https://github.com/hackforla/website/pull/8143) at 2025-05-14 10:41 PM PDT -FatCatLikesBeer,2025-05-18T02:07:08Z,- FatCatLikesBeer commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2888708614) at 2025-05-17 07:07 PM PDT -FatCatLikesBeer,2025-05-18T02:33:04Z,- FatCatLikesBeer pull request merged: [8143](https://github.com/hackforla/website/pull/8143#event-17701412398) at 2025-05-17 07:33 PM PDT -FatCatLikesBeer,2025-05-18T02:50:35Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2888728084) at 2025-05-17 07:50 PM PDT -FatCatLikesBeer,2025-05-18T02:53:13Z,- FatCatLikesBeer unassigned from issue: [7944](https://github.com/hackforla/website/issues/7944#event-17701412438) at 2025-05-17 07:53 PM PDT -FatCatLikesBeer,2025-05-18T02:53:44Z,- FatCatLikesBeer unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#event-17606135928) at 2025-05-17 07:53 PM PDT -FatCatLikesBeer,2025-06-04T19:57:02Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2941291606) at 2025-06-04 12:57 PM PDT -FatCatLikesBeer,2025-06-12T23:37:23Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2968447596) at 2025-06-12 04:37 PM PDT -FatCatLikesBeer,2025-06-19T06:52:39Z,- FatCatLikesBeer commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2986845618) at 2025-06-18 11:52 PM PDT -FatCatLikesBeer,2025-06-20T09:38:46Z,- FatCatLikesBeer submitted pull request review: [8197](https://github.com/hackforla/website/pull/8197#pullrequestreview-2945291355) at 2025-06-20 02:38 AM PDT -FatCatLikesBeer,2025-06-20T17:58:25Z,- FatCatLikesBeer commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2992401433) at 2025-06-20 10:58 AM PDT -FatCatLikesBeer,2025-06-25T03:12:43Z,- FatCatLikesBeer submitted pull request review: [8197](https://github.com/hackforla/website/pull/8197#pullrequestreview-2956208114) at 2025-06-24 08:12 PM PDT -FatCatLikesBeer,2025-06-25T03:18:54Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3002757057) at 2025-06-24 08:18 PM PDT -FatCatLikesBeer,2025-06-25T03:22:49Z,- FatCatLikesBeer commented on pull request: [8204](https://github.com/hackforla/website/pull/8204#issuecomment-3002772719) at 2025-06-24 08:22 PM PDT -FatCatLikesBeer,2025-06-25T03:32:02Z,- FatCatLikesBeer submitted pull request review: [8204](https://github.com/hackforla/website/pull/8204#pullrequestreview-2956268981) at 2025-06-24 08:32 PM PDT -FatCatLikesBeer,2025-06-25T03:34:04Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3002825658) at 2025-06-24 08:34 PM PDT -FatCatLikesBeer,2025-06-25T21:37:20Z,- FatCatLikesBeer commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3006220727) at 2025-06-25 02:37 PM PDT -FatCatLikesBeer,2025-06-26T03:41:26Z,- FatCatLikesBeer submitted pull request review: [8206](https://github.com/hackforla/website/pull/8206#pullrequestreview-2960444393) at 2025-06-25 08:41 PM PDT -FatCatLikesBeer,2025-06-26T03:45:46Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3006943048) at 2025-06-25 08:45 PM PDT -FatCatLikesBeer,2025-06-27T23:00:33Z,- FatCatLikesBeer commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014583161) at 2025-06-27 04:00 PM PDT -FatCatLikesBeer,2025-06-28T00:53:52Z,- FatCatLikesBeer commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014780841) at 2025-06-27 05:53 PM PDT -FatCatLikesBeer,2025-06-28T02:18:06Z,- FatCatLikesBeer submitted pull request review: [8231](https://github.com/hackforla/website/pull/8231#pullrequestreview-2968319866) at 2025-06-27 07:18 PM PDT -FatCatLikesBeer,2025-06-28T04:16:52Z,- FatCatLikesBeer submitted pull request review: [8231](https://github.com/hackforla/website/pull/8231#pullrequestreview-2968354167) at 2025-06-27 09:16 PM PDT -FatCatLikesBeer,2025-06-28T04:30:18Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3014939109) at 2025-06-27 09:30 PM PDT -FatCatLikesBeer,2025-07-01T10:04:57Z,- FatCatLikesBeer commented on pull request: [8236](https://github.com/hackforla/website/pull/8236#issuecomment-3023135826) at 2025-07-01 03:04 AM PDT -FatCatLikesBeer,2025-07-02T06:09:49Z,- FatCatLikesBeer submitted pull request review: [8236](https://github.com/hackforla/website/pull/8236#pullrequestreview-2977860542) at 2025-07-01 11:09 PM PDT -FatCatLikesBeer,2025-07-02T06:11:01Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3026580128) at 2025-07-01 11:11 PM PDT -FatCatLikesBeer,2025-07-02T06:25:58Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3026611607) at 2025-07-01 11:25 PM PDT -FatCatLikesBeer,2025-07-17T06:28:20Z,- FatCatLikesBeer assigned to issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-2673476000) at 2025-07-16 11:28 PM PDT -FatCatLikesBeer,2025-07-17T06:29:54Z,- FatCatLikesBeer commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3082750089) at 2025-07-16 11:29 PM PDT -FatCatLikesBeer,2025-07-20T20:12:52Z,- FatCatLikesBeer commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3094744352) at 2025-07-20 01:12 PM PDT -FatCatLikesBeer,2025-07-20T20:15:42Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3094745683) at 2025-07-20 01:15 PM PDT -FatCatLikesBeer,2025-08-05T06:15:14Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3153594456) at 2025-08-04 11:15 PM PDT -FatCatLikesBeer,2025-08-05T06:29:46Z,- FatCatLikesBeer assigned to issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998293493) at 2025-08-04 11:29 PM PDT -FatCatLikesBeer,2025-08-05T06:29:58Z,- FatCatLikesBeer unassigned from issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998293493) at 2025-08-04 11:29 PM PDT -FatCatLikesBeer,2025-08-05T06:39:43Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3153700567) at 2025-08-04 11:39 PM PDT -fchan218,2024-10-25T12:53:20Z,- fchan218 opened issue: [7635](https://github.com/hackforla/website/issues/7635) at 2024-10-25 05:53 AM PDT -fchan218,2025-04-06T19:57:28Z,- fchan218 opened issue: [8050](https://github.com/hackforla/website/issues/8050) at 2025-04-06 12:57 PM PDT -fernandoqueue,2985,SKILLS ISSUE -fernandoqueue,2022-03-16T02:57:48Z,- fernandoqueue opened issue: [2985](https://github.com/hackforla/website/issues/2985) at 2022-03-15 07:57 PM PDT -fernandoqueue,2022-03-16T02:58:55Z,- fernandoqueue assigned to issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1068679555) at 2022-03-15 07:58 PM PDT -flashcabaja64,5077,SKILLS ISSUE -flashcabaja64,2023-07-26T03:04:32Z,- flashcabaja64 opened issue: [5077](https://github.com/hackforla/website/issues/5077) at 2023-07-25 08:04 PM PDT -flashcabaja64,2023-07-26T03:04:44Z,- flashcabaja64 assigned to issue: [5077](https://github.com/hackforla/website/issues/5077) at 2023-07-25 08:04 PM PDT -floydferrer,7517,SKILLS ISSUE -floydferrer,2024-09-25T02:52:26Z,- floydferrer opened issue: [7517](https://github.com/hackforla/website/issues/7517) at 2024-09-24 07:52 PM PDT -floydferrer,2024-09-25T02:52:46Z,- floydferrer assigned to issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2372786225) at 2024-09-24 07:52 PM PDT -floydferrer,2024-09-25T02:59:29Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2372804002) at 2024-09-24 07:59 PM PDT -floydferrer,2024-09-27T02:45:46Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2378303015) at 2024-09-26 07:45 PM PDT -floydferrer,2024-09-27T03:05:42Z,- floydferrer assigned to issue: [7515](https://github.com/hackforla/website/issues/7515) at 2024-09-26 08:05 PM PDT -floydferrer,2024-09-27T03:43:07Z,- floydferrer opened pull request: [7526](https://github.com/hackforla/website/pull/7526) at 2024-09-26 08:43 PM PDT -floydferrer,2024-09-29T17:33:23Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381437078) at 2024-09-29 10:33 AM PDT -floydferrer,2024-09-29T19:45:09Z,- floydferrer pull request merged: [7526](https://github.com/hackforla/website/pull/7526#event-14446481635) at 2024-09-29 12:45 PM PDT -floydferrer,2024-09-29T21:41:14Z,- floydferrer assigned to issue: [7521](https://github.com/hackforla/website/issues/7521) at 2024-09-29 02:41 PM PDT -floydferrer,2024-09-29T21:43:58Z,- floydferrer commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381621147) at 2024-09-29 02:43 PM PDT -floydferrer,2024-09-29T21:45:00Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381621406) at 2024-09-29 02:45 PM PDT -floydferrer,2024-09-29T21:47:04Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381622029) at 2024-09-29 02:47 PM PDT -floydferrer,2024-09-29T21:53:20Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381623969) at 2024-09-29 02:53 PM PDT -floydferrer,2024-09-29T22:45:50Z,- floydferrer opened pull request: [7543](https://github.com/hackforla/website/pull/7543) at 2024-09-29 03:45 PM PDT -floydferrer,2024-09-30T00:03:10Z,- floydferrer opened issue: [7544](https://github.com/hackforla/website/issues/7544) at 2024-09-29 05:03 PM PDT -floydferrer,2024-09-30T00:09:45Z,- floydferrer opened issue: [7545](https://github.com/hackforla/website/issues/7545) at 2024-09-29 05:09 PM PDT -floydferrer,2024-09-30T00:11:22Z,- floydferrer commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381666380) at 2024-09-29 05:11 PM PDT -floydferrer,2024-09-30T04:26:07Z,- floydferrer pull request closed w/o merging: [7543](https://github.com/hackforla/website/pull/7543#event-14448732590) at 2024-09-29 09:26 PM PDT -floydferrer,2024-09-30T04:56:24Z,- floydferrer commented on issue: [7545](https://github.com/hackforla/website/issues/7545#issuecomment-2382070486) at 2024-09-29 09:56 PM PDT -floydferrer,2024-09-30T04:56:52Z,- floydferrer closed issue as completed: [7545](https://github.com/hackforla/website/issues/7545#event-14449090677) at 2024-09-29 09:56 PM PDT -floydferrer,2024-09-30T04:57:49Z,- floydferrer commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2382075981) at 2024-09-29 09:57 PM PDT -floydferrer,2024-09-30T05:02:46Z,- floydferrer commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2382101433) at 2024-09-29 10:02 PM PDT -floydferrer,2024-09-30T22:20:35Z,- floydferrer unassigned from issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381666380) at 2024-09-30 03:20 PM PDT -floydferrer,2024-10-04T02:32:59Z,- floydferrer assigned to issue: [7355](https://github.com/hackforla/website/issues/7355) at 2024-10-03 07:32 PM PDT -floydferrer,2024-10-04T02:33:45Z,- floydferrer commented on issue: [7355](https://github.com/hackforla/website/issues/7355#issuecomment-2392671544) at 2024-10-03 07:33 PM PDT -floydferrer,2024-10-04T03:20:05Z,- floydferrer opened pull request: [7560](https://github.com/hackforla/website/pull/7560) at 2024-10-03 08:20 PM PDT -floydferrer,2024-10-06T17:32:22Z,- floydferrer pull request merged: [7560](https://github.com/hackforla/website/pull/7560#event-14531117558) at 2024-10-06 10:32 AM PDT -floydferrer,2024-10-07T20:12:48Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2397803248) at 2024-10-07 01:12 PM PDT -floydferrer,2024-10-13T22:23:17Z,- floydferrer commented on pull request: [7588](https://github.com/hackforla/website/pull/7588#issuecomment-2409202598) at 2024-10-13 03:23 PM PDT -floydferrer,2024-10-14T21:43:47Z,- floydferrer submitted pull request review: [7588](https://github.com/hackforla/website/pull/7588#pullrequestreview-2367707169) at 2024-10-14 02:43 PM PDT -floydferrer,2024-10-14T21:49:27Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2412397058) at 2024-10-14 02:49 PM PDT -floydferrer,2024-10-20T17:26:21Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2425139203) at 2024-10-20 10:26 AM PDT -floydferrer,2024-10-23T19:21:23Z,- floydferrer commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2433251065) at 2024-10-23 12:21 PM PDT -floydferrer,2024-10-24T02:50:01Z,- floydferrer commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2434130838) at 2024-10-23 07:50 PM PDT -floydferrer,2024-10-24T02:50:57Z,- floydferrer submitted pull request review: [7628](https://github.com/hackforla/website/pull/7628#pullrequestreview-2391101787) at 2024-10-23 07:50 PM PDT -floydferrer,2024-10-24T03:01:07Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2434141008) at 2024-10-23 08:01 PM PDT -floydferrer,2024-10-29T04:57:18Z,- floydferrer commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2443213563) at 2024-10-28 09:57 PM PDT -floydferrer,2024-11-04T17:59:55Z,- floydferrer submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2413766851) at 2024-11-04 09:59 AM PST -floydferrer,2024-11-04T18:02:53Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2455371719) at 2024-11-04 10:02 AM PST -floydferrer,2024-11-04T18:04:55Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2455375513) at 2024-11-04 10:04 AM PST -floydferrer,2024-11-04T18:08:00Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2455381466) at 2024-11-04 10:08 AM PST -floydferrer,2024-11-05T17:33:52Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2457786014) at 2024-11-05 09:33 AM PST -floydferrer,2024-11-07T18:09:42Z,- floydferrer commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2462912989) at 2024-11-07 10:09 AM PST -floydferrer,2024-11-07T18:31:42Z,- floydferrer submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2421831485) at 2024-11-07 10:31 AM PST -floydferrer,2024-11-07T18:33:22Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2462954218) at 2024-11-07 10:33 AM PST -floydferrer,2024-11-08T23:33:20Z,- floydferrer commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2465899870) at 2024-11-08 03:33 PM PST -floydferrer,2024-11-08T23:43:25Z,- floydferrer submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2425076074) at 2024-11-08 03:43 PM PST -floydferrer,2024-11-08T23:57:45Z,- floydferrer submitted pull request review: [7711](https://github.com/hackforla/website/pull/7711#pullrequestreview-2425083238) at 2024-11-08 03:57 PM PST -floydferrer,2024-11-09T00:00:09Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2465917320) at 2024-11-08 04:00 PM PST -floydferrer,2024-11-10T18:25:35Z,- floydferrer submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2425822699) at 2024-11-10 10:25 AM PST -floydferrer,2024-11-13T01:05:53Z,- floydferrer assigned to issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2436693785) at 2024-11-12 05:05 PM PST -floydferrer,2024-11-13T01:07:04Z,- floydferrer commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2472070076) at 2024-11-12 05:07 PM PST -floydferrer,2024-11-14T01:38:21Z,- floydferrer opened pull request: [7719](https://github.com/hackforla/website/pull/7719) at 2024-11-13 05:38 PM PST -floydferrer,2024-11-17T17:21:43Z,- floydferrer pull request merged: [7719](https://github.com/hackforla/website/pull/7719#event-15325544425) at 2024-11-17 09:21 AM PST -floydferrer,2024-11-19T19:13:47Z,- floydferrer assigned to issue: [7399](https://github.com/hackforla/website/issues/7399) at 2024-11-19 11:13 AM PST -floydferrer,2024-11-19T19:14:47Z,- floydferrer unassigned from issue: [7399](https://github.com/hackforla/website/issues/7399#issuecomment-2486544320) at 2024-11-19 11:14 AM PST -floydferrer,2024-11-19T19:16:01Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2486549449) at 2024-11-19 11:16 AM PST -floydferrer,2024-11-19T21:20:15Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2486775928) at 2024-11-19 01:20 PM PST -floydferrer,2024-11-19T21:23:36Z,- floydferrer assigned to issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224870) at 2024-11-19 01:23 PM PST -floydferrer,2024-11-19T21:32:08Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2486795439) at 2024-11-19 01:32 PM PST -floydferrer,2024-11-19T21:59:43Z,- floydferrer opened issue: [7730](https://github.com/hackforla/website/issues/7730) at 2024-11-19 01:59 PM PST -floydferrer,2024-11-19T22:03:13Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2486844617) at 2024-11-19 02:03 PM PST -floydferrer,2024-11-19T22:18:24Z,- floydferrer opened issue: [7731](https://github.com/hackforla/website/issues/7731) at 2024-11-19 02:18 PM PST -floydferrer,2024-11-19T22:19:46Z,- floydferrer opened issue: [7732](https://github.com/hackforla/website/issues/7732) at 2024-11-19 02:19 PM PST -floydferrer,2024-11-20T01:11:43Z,- floydferrer opened issue: [7734](https://github.com/hackforla/website/issues/7734) at 2024-11-19 05:11 PM PST -floydferrer,2024-11-20T01:12:25Z,- floydferrer opened issue: [7735](https://github.com/hackforla/website/issues/7735) at 2024-11-19 05:12 PM PST -floydferrer,2024-11-20T01:12:57Z,- floydferrer opened issue: [7736](https://github.com/hackforla/website/issues/7736) at 2024-11-19 05:12 PM PST -floydferrer,2024-11-20T01:13:26Z,- floydferrer opened issue: [7737](https://github.com/hackforla/website/issues/7737) at 2024-11-19 05:13 PM PST -floydferrer,2024-11-20T01:14:54Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2487106957) at 2024-11-19 05:14 PM PST -floydferrer,2024-11-20T02:01:15Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2487161876) at 2024-11-19 06:01 PM PST -floydferrer,2024-11-20T03:29:03Z,- floydferrer opened issue: [7742](https://github.com/hackforla/website/issues/7742) at 2024-11-19 07:29 PM PST -floydferrer,2024-11-24T18:37:14Z,- floydferrer assigned to issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392514174) at 2024-11-24 10:37 AM PST -floydferrer,2024-11-24T18:37:29Z,- floydferrer unassigned from issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2496161660) at 2024-11-24 10:37 AM PST -floydferrer,2024-11-25T06:45:10Z,- floydferrer assigned to issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2422845169) at 2024-11-24 10:45 PM PST -floydferrer,2024-11-25T06:46:02Z,- floydferrer commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2496996616) at 2024-11-24 10:46 PM PST -floydferrer,2024-11-26T02:09:49Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2499473671) at 2024-11-25 06:09 PM PST -floydferrer,2024-11-27T03:27:04Z,- floydferrer commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2502625252) at 2024-11-26 07:27 PM PST -floydferrer,2025-03-16T22:36:56Z,- floydferrer unassigned from issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2723826147) at 2025-03-16 03:36 PM PDT -frankstepanski,2660,SKILLS ISSUE -frankstepanski,2022-01-05T03:32:11Z,- frankstepanski opened issue: [2660](https://github.com/hackforla/website/issues/2660) at 2022-01-04 07:32 PM PST -frankstepanski,2022-01-08T03:58:42Z,- frankstepanski opened issue: [2673](https://github.com/hackforla/website/issues/2673) at 2022-01-07 07:58 PM PST -frankstepanski,2022-01-08T21:18:06Z,- frankstepanski commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1008156253) at 2022-01-08 01:18 PM PST -frankstepanski,2022-02-06T15:52:31Z,- frankstepanski assigned to issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1023707635) at 2022-02-06 07:52 AM PST -frankstepanski,2022-02-06T16:47:54Z,- frankstepanski opened pull request: [2741](https://github.com/hackforla/website/pull/2741) at 2022-02-06 08:47 AM PST -frankstepanski,2022-02-06T16:56:00Z,- frankstepanski commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1030871404) at 2022-02-06 08:56 AM PST -frankstepanski,2022-02-06T17:00:18Z,- frankstepanski commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1030872112) at 2022-02-06 09:00 AM PST -frankstepanski,2022-02-06T17:41:01Z,- frankstepanski closed issue as completed: [2666](https://github.com/hackforla/website/issues/2666#event-6015324898) at 2022-02-06 09:41 AM PST -frankstepanski,2022-02-06T17:41:09Z,- frankstepanski reopened issue: [2666](https://github.com/hackforla/website/issues/2666#event-6015324898) at 2022-02-06 09:41 AM PST -frankstepanski,2022-02-06T19:00:26Z,- frankstepanski assigned to issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-995353120) at 2022-02-06 11:00 AM PST -frankstepanski,2022-02-06T19:00:50Z,- frankstepanski unassigned from issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-995353120) at 2022-02-06 11:00 AM PST -frankstepanski,2022-02-06T19:01:22Z,- frankstepanski assigned to issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-995353120) at 2022-02-06 11:01 AM PST -frankstepanski,2022-02-06T19:08:43Z,- frankstepanski closed issue as completed: [2660](https://github.com/hackforla/website/issues/2660#event-6015418443) at 2022-02-06 11:08 AM PST -frankstepanski,2022-02-06T19:09:36Z,- frankstepanski closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-6015419445) at 2022-02-06 11:09 AM PST -frankstepanski,2022-02-06T19:39:27Z,- frankstepanski opened pull request: [2742](https://github.com/hackforla/website/pull/2742) at 2022-02-06 11:39 AM PST -frankstepanski,2022-02-06T19:41:34Z,- frankstepanski commented on issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-1030899957) at 2022-02-06 11:41 AM PST -frankstepanski,2022-02-06T19:41:52Z,- frankstepanski closed issue by PR 2742: [2591](https://github.com/hackforla/website/issues/2591#event-6015453941) at 2022-02-06 11:41 AM PST -frankstepanski,2022-02-07T05:40:46Z,- frankstepanski pull request merged: [2741](https://github.com/hackforla/website/pull/2741#event-6016628534) at 2022-02-06 09:40 PM PST -frankstepanski,2022-02-07T07:18:42Z,- frankstepanski pull request merged: [2742](https://github.com/hackforla/website/pull/2742#event-6016992439) at 2022-02-06 11:18 PM PST -frankstepanski,2022-02-28T09:26:33Z,- frankstepanski assigned to issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1031148862) at 2022-02-28 01:26 AM PST -frankstepanski,2022-03-20T16:27:02Z,- frankstepanski commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1073285595) at 2022-03-20 09:27 AM PDT -frankstepanski,2022-03-20T16:27:06Z,- frankstepanski closed issue as completed: [2660](https://github.com/hackforla/website/issues/2660#event-6271414705) at 2022-03-20 09:27 AM PDT -frankstepanski,2022-03-20T17:20:37Z,- frankstepanski commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073295508) at 2022-03-20 10:20 AM PDT -frankstepanski,2022-03-22T02:12:00Z,- frankstepanski submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-916579861) at 2022-03-21 07:12 PM PDT -frankstepanski,2022-03-26T17:29:11Z,- frankstepanski assigned to issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1065786460) at 2022-03-26 10:29 AM PDT -frankstepanski,2022-03-26T18:38:24Z,- frankstepanski commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1079751170) at 2022-03-26 11:38 AM PDT -frankstepanski,2022-03-27T15:33:25Z,- frankstepanski commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1079954782) at 2022-03-27 08:33 AM PDT -frankstepanski,2022-04-03T05:16:37Z,- frankstepanski opened pull request: [3030](https://github.com/hackforla/website/pull/3030) at 2022-04-02 10:16 PM PDT -frankstepanski,2022-04-03T05:19:32Z,- frankstepanski commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1086779054) at 2022-04-02 10:19 PM PDT -frankstepanski,2022-04-05T15:24:00Z,- frankstepanski pull request merged: [3030](https://github.com/hackforla/website/pull/3030#event-6372241827) at 2022-04-05 08:24 AM PDT -frankstepanski,2022-04-21T21:51:49Z,- frankstepanski closed issue as completed: [1878](https://github.com/hackforla/website/issues/1878#event-6474262247) at 2022-04-21 02:51 PM PDT -frankstepanski,2022-04-21T21:51:55Z,- frankstepanski reopened issue: [1878](https://github.com/hackforla/website/issues/1878#event-6474262247) at 2022-04-21 02:51 PM PDT -frankstepanski,2022-05-14T20:15:45Z,- frankstepanski assigned to issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1104696934) at 2022-05-14 01:15 PM PDT -frankstepanski,2022-05-14T20:24:22Z,- frankstepanski commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1126805949) at 2022-05-14 01:24 PM PDT -frankstepanski,2022-05-19T20:40:29Z,- frankstepanski commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1132186162) at 2022-05-19 01:40 PM PDT -frankstepanski,2022-05-29T17:21:22Z,- frankstepanski opened pull request: [3179](https://github.com/hackforla/website/pull/3179) at 2022-05-29 10:21 AM PDT -frankstepanski,2022-08-13T03:27:15Z,- frankstepanski commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1213643104) at 2022-08-12 08:27 PM PDT -frankstepanski,2022-08-19T21:10:31Z,- frankstepanski unassigned from issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1140203060) at 2022-08-19 02:10 PM PDT -frankstepanski,2022-08-19T21:17:13Z,- frankstepanski pull request closed w/o merging: [3179](https://github.com/hackforla/website/pull/3179#event-7225076507) at 2022-08-19 02:17 PM PDT -frankstepanski,2022-11-09T18:40:13Z,- frankstepanski unassigned from issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1289853218) at 2022-11-09 10:40 AM PST -freaky4wrld,5614,SKILLS ISSUE -freaky4wrld,2023-09-27T08:33:48Z,- freaky4wrld opened issue: [5614](https://github.com/hackforla/website/issues/5614) at 2023-09-27 01:33 AM PDT -freaky4wrld,2023-09-29T03:43:55Z,- freaky4wrld assigned to issue: [5614](https://github.com/hackforla/website/issues/5614) at 2023-09-28 08:43 PM PDT -freaky4wrld,2023-09-30T05:37:04Z,- freaky4wrld commented on issue: [5614](https://github.com/hackforla/website/issues/5614#issuecomment-1741685486) at 2023-09-29 10:37 PM PDT -freaky4wrld,2023-09-30T05:59:52Z,- freaky4wrld assigned to issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1694737441) at 2023-09-29 10:59 PM PDT -freaky4wrld,2023-09-30T07:18:06Z,- freaky4wrld commented on issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1741702171) at 2023-09-30 12:18 AM PDT -freaky4wrld,2023-09-30T07:22:26Z,- freaky4wrld commented on issue: [5614](https://github.com/hackforla/website/issues/5614#issuecomment-1741702892) at 2023-09-30 12:22 AM PDT -freaky4wrld,2023-10-03T08:57:25Z,- freaky4wrld commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1744526027) at 2023-10-03 01:57 AM PDT -freaky4wrld,2023-10-05T05:15:46Z,- freaky4wrld opened pull request: [5664](https://github.com/hackforla/website/pull/5664) at 2023-10-04 10:15 PM PDT -freaky4wrld,2023-10-05T05:25:43Z,- freaky4wrld commented on issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1748053178) at 2023-10-04 10:25 PM PDT -freaky4wrld,2023-10-06T04:06:09Z,- freaky4wrld commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1749954024) at 2023-10-05 09:06 PM PDT -freaky4wrld,2023-10-07T10:19:43Z,- freaky4wrld commented on pull request: [5649](https://github.com/hackforla/website/pull/5649#issuecomment-1751673944) at 2023-10-07 03:19 AM PDT -freaky4wrld,2023-10-07T10:40:20Z,- freaky4wrld submitted pull request review: [5649](https://github.com/hackforla/website/pull/5649#pullrequestreview-1663038248) at 2023-10-07 03:40 AM PDT -freaky4wrld,2023-10-08T10:05:10Z,- freaky4wrld pull request merged: [5664](https://github.com/hackforla/website/pull/5664#event-10583722898) at 2023-10-08 03:05 AM PDT -freaky4wrld,2023-10-08T17:32:38Z,- freaky4wrld commented on pull request: [5661](https://github.com/hackforla/website/pull/5661#issuecomment-1752112983) at 2023-10-08 10:32 AM PDT -freaky4wrld,2023-10-09T03:54:43Z,- freaky4wrld submitted pull request review: [5661](https://github.com/hackforla/website/pull/5661#pullrequestreview-1663696794) at 2023-10-08 08:54 PM PDT -freaky4wrld,2023-10-09T04:38:16Z,- freaky4wrld assigned to issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1741671729) at 2023-10-08 09:38 PM PDT -freaky4wrld,2023-10-09T04:43:13Z,- freaky4wrld commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1752338896) at 2023-10-08 09:43 PM PDT -freaky4wrld,2023-10-11T03:48:14Z,- freaky4wrld commented on pull request: [5702](https://github.com/hackforla/website/pull/5702#issuecomment-1756721633) at 2023-10-10 08:48 PM PDT -freaky4wrld,2023-10-11T03:48:31Z,- freaky4wrld commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1756721849) at 2023-10-10 08:48 PM PDT -freaky4wrld,2023-10-11T04:32:21Z,- freaky4wrld submitted pull request review: [5702](https://github.com/hackforla/website/pull/5702#pullrequestreview-1669858789) at 2023-10-10 09:32 PM PDT -freaky4wrld,2023-10-11T04:33:52Z,- freaky4wrld submitted pull request review: [5702](https://github.com/hackforla/website/pull/5702#pullrequestreview-1669865290) at 2023-10-10 09:33 PM PDT -freaky4wrld,2023-10-11T10:14:26Z,- freaky4wrld commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1757330041) at 2023-10-11 03:14 AM PDT -freaky4wrld,2023-10-11T11:23:41Z,- freaky4wrld submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1670923120) at 2023-10-11 04:23 AM PDT -freaky4wrld,2023-10-12T02:17:08Z,- freaky4wrld commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1758808346) at 2023-10-11 07:17 PM PDT -freaky4wrld,2023-10-12T07:50:45Z,- freaky4wrld closed issue as completed: [5614](https://github.com/hackforla/website/issues/5614#event-10628118244) at 2023-10-12 12:50 AM PDT -freaky4wrld,2023-10-12T07:55:11Z,- freaky4wrld assigned to issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1758681203) at 2023-10-12 12:55 AM PDT -freaky4wrld,2023-10-12T07:56:10Z,- freaky4wrld unassigned from issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1759116583) at 2023-10-12 12:56 AM PDT -freaky4wrld,2023-10-21T04:23:12Z,- freaky4wrld submitted pull request review: [5744](https://github.com/hackforla/website/pull/5744#pullrequestreview-1691160119) at 2023-10-20 09:23 PM PDT -freaky4wrld,2023-10-22T13:38:11Z,- freaky4wrld submitted pull request review: [5744](https://github.com/hackforla/website/pull/5744#pullrequestreview-1691436378) at 2023-10-22 06:38 AM PDT -freaky4wrld,2023-10-25T23:15:20Z,- freaky4wrld opened pull request: [5784](https://github.com/hackforla/website/pull/5784) at 2023-10-25 04:15 PM PDT -freaky4wrld,2023-10-25T23:19:47Z,- freaky4wrld pull request closed w/o merging: [5784](https://github.com/hackforla/website/pull/5784#event-10773233605) at 2023-10-25 04:19 PM PDT -freaky4wrld,2023-10-26T09:18:18Z,- freaky4wrld opened pull request: [5787](https://github.com/hackforla/website/pull/5787) at 2023-10-26 02:18 AM PDT -freaky4wrld,2023-10-26T09:20:09Z,- freaky4wrld pull request closed w/o merging: [5787](https://github.com/hackforla/website/pull/5787#event-10777130167) at 2023-10-26 02:20 AM PDT -freaky4wrld,2023-11-05T13:08:30Z,- freaky4wrld assigned to issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1715246452) at 2023-11-05 05:08 AM PST -freaky4wrld,2023-11-05T13:21:07Z,- freaky4wrld commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1793735922) at 2023-11-05 05:21 AM PST -freaky4wrld,2023-11-05T13:28:24Z,- freaky4wrld opened issue: [5838](https://github.com/hackforla/website/issues/5838) at 2023-11-05 05:28 AM PST -freaky4wrld,2023-11-05T13:32:44Z,- freaky4wrld opened issue: [5839](https://github.com/hackforla/website/issues/5839) at 2023-11-05 05:32 AM PST -freaky4wrld,2023-11-05T13:35:53Z,- freaky4wrld opened issue: [5840](https://github.com/hackforla/website/issues/5840) at 2023-11-05 05:35 AM PST -freaky4wrld,2023-11-05T13:38:28Z,- freaky4wrld opened issue: [5841](https://github.com/hackforla/website/issues/5841) at 2023-11-05 05:38 AM PST -freaky4wrld,2023-11-05T13:41:25Z,- freaky4wrld opened issue: [5842](https://github.com/hackforla/website/issues/5842) at 2023-11-05 05:41 AM PST -freaky4wrld,2023-11-05T13:46:12Z,- freaky4wrld opened issue: [5843](https://github.com/hackforla/website/issues/5843) at 2023-11-05 05:46 AM PST -freaky4wrld,2023-11-05T13:48:08Z,- freaky4wrld opened issue: [5844](https://github.com/hackforla/website/issues/5844) at 2023-11-05 05:48 AM PST -freaky4wrld,2023-11-05T13:50:02Z,- freaky4wrld opened issue: [5845](https://github.com/hackforla/website/issues/5845) at 2023-11-05 05:50 AM PST -freaky4wrld,2023-11-05T13:51:55Z,- freaky4wrld opened issue: [5846](https://github.com/hackforla/website/issues/5846) at 2023-11-05 05:51 AM PST -freaky4wrld,2023-11-05T13:54:02Z,- freaky4wrld opened issue: [5847](https://github.com/hackforla/website/issues/5847) at 2023-11-05 05:54 AM PST -freaky4wrld,2023-11-05T13:57:58Z,- freaky4wrld opened issue: [5848](https://github.com/hackforla/website/issues/5848) at 2023-11-05 05:57 AM PST -freaky4wrld,2023-11-05T14:00:22Z,- freaky4wrld opened issue: [5849](https://github.com/hackforla/website/issues/5849) at 2023-11-05 06:00 AM PST -freaky4wrld,2023-11-05T14:02:19Z,- freaky4wrld opened issue: [5850](https://github.com/hackforla/website/issues/5850) at 2023-11-05 06:02 AM PST -freaky4wrld,2023-11-05T14:17:44Z,- freaky4wrld commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1793750576) at 2023-11-05 06:17 AM PST -freaky4wrld,2023-11-05T17:07:22Z,- freaky4wrld commented on pull request: [5837](https://github.com/hackforla/website/pull/5837#issuecomment-1793793006) at 2023-11-05 09:07 AM PST -freaky4wrld,2023-11-05T17:46:17Z,- freaky4wrld submitted pull request review: [5837](https://github.com/hackforla/website/pull/5837#pullrequestreview-1714028547) at 2023-11-05 09:46 AM PST -freaky4wrld,2023-11-06T13:54:16Z,- freaky4wrld commented on pull request: [5853](https://github.com/hackforla/website/pull/5853#issuecomment-1794876244) at 2023-11-06 05:54 AM PST -freaky4wrld,2023-11-06T14:00:30Z,- freaky4wrld submitted pull request review: [5853](https://github.com/hackforla/website/pull/5853#pullrequestreview-1715246681) at 2023-11-06 06:00 AM PST -freaky4wrld,2023-11-08T15:29:02Z,- freaky4wrld submitted pull request review: [5884](https://github.com/hackforla/website/pull/5884#pullrequestreview-1720647040) at 2023-11-08 07:29 AM PST -freaky4wrld,2023-11-08T22:17:16Z,- freaky4wrld submitted pull request review: [5884](https://github.com/hackforla/website/pull/5884#pullrequestreview-1721370902) at 2023-11-08 02:17 PM PST -freaky4wrld,2023-11-08T22:48:27Z,- freaky4wrld assigned to issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1690929863) at 2023-11-08 02:48 PM PST -freaky4wrld,2023-11-08T22:58:11Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1802840021) at 2023-11-08 02:58 PM PST -freaky4wrld,2023-11-10T05:48:32Z,- freaky4wrld submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1724053480) at 2023-11-09 09:48 PM PST -freaky4wrld,2023-11-11T07:30:35Z,- freaky4wrld submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1725994993) at 2023-11-10 11:30 PM PST -freaky4wrld,2023-11-11T07:31:35Z,- freaky4wrld submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1725995080) at 2023-11-10 11:31 PM PST -freaky4wrld,2023-11-12T12:04:34Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1807106584) at 2023-11-12 04:04 AM PST -freaky4wrld,2023-11-13T04:45:03Z,- freaky4wrld commented on pull request: [5893](https://github.com/hackforla/website/pull/5893#issuecomment-1807470657) at 2023-11-12 08:45 PM PST -freaky4wrld,2023-11-13T04:46:39Z,- freaky4wrld commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1807471731) at 2023-11-12 08:46 PM PST -freaky4wrld,2023-11-13T06:33:47Z,- freaky4wrld submitted pull request review: [5893](https://github.com/hackforla/website/pull/5893#pullrequestreview-1726612918) at 2023-11-12 10:33 PM PST -freaky4wrld,2023-11-13T06:39:52Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1807552428) at 2023-11-12 10:39 PM PST -freaky4wrld,2023-11-13T22:48:06Z,- freaky4wrld commented on pull request: [5894](https://github.com/hackforla/website/pull/5894#issuecomment-1809257124) at 2023-11-13 02:48 PM PST -freaky4wrld,2023-11-14T10:42:08Z,- freaky4wrld submitted pull request review: [5894](https://github.com/hackforla/website/pull/5894#pullrequestreview-1729437631) at 2023-11-14 02:42 AM PST -freaky4wrld,2023-11-15T03:56:42Z,- freaky4wrld commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1811770261) at 2023-11-14 07:56 PM PST -freaky4wrld,2023-11-15T08:26:56Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1812004398) at 2023-11-15 12:26 AM PST -freaky4wrld,2023-11-15T10:35:16Z,- freaky4wrld commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1812210777) at 2023-11-15 02:35 AM PST -freaky4wrld,2023-11-16T06:24:21Z,- freaky4wrld submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1733589148) at 2023-11-15 10:24 PM PST -freaky4wrld,2023-11-16T07:43:30Z,- freaky4wrld submitted pull request review: [5906](https://github.com/hackforla/website/pull/5906#pullrequestreview-1733702273) at 2023-11-15 11:43 PM PST -freaky4wrld,2023-11-17T10:40:08Z,- freaky4wrld commented on pull request: [5918](https://github.com/hackforla/website/pull/5918#issuecomment-1816132852) at 2023-11-17 02:40 AM PST -freaky4wrld,2023-11-17T11:05:20Z,- freaky4wrld submitted pull request review: [5918](https://github.com/hackforla/website/pull/5918#pullrequestreview-1736651476) at 2023-11-17 03:05 AM PST -freaky4wrld,2023-11-17T11:06:48Z,- freaky4wrld commented on pull request: [5917](https://github.com/hackforla/website/pull/5917#issuecomment-1816171595) at 2023-11-17 03:06 AM PST -freaky4wrld,2023-11-18T07:23:47Z,- freaky4wrld submitted pull request review: [5917](https://github.com/hackforla/website/pull/5917#pullrequestreview-1738282581) at 2023-11-17 11:23 PM PST -freaky4wrld,2023-11-18T07:26:15Z,- freaky4wrld commented on pull request: [5916](https://github.com/hackforla/website/pull/5916#issuecomment-1817423554) at 2023-11-17 11:26 PM PST -freaky4wrld,2023-11-18T07:37:49Z,- freaky4wrld submitted pull request review: [5916](https://github.com/hackforla/website/pull/5916#pullrequestreview-1738284692) at 2023-11-17 11:37 PM PST -freaky4wrld,2023-11-20T10:09:41Z,- freaky4wrld commented on pull request: [5922](https://github.com/hackforla/website/pull/5922#issuecomment-1818743657) at 2023-11-20 02:09 AM PST -freaky4wrld,2023-11-20T10:22:45Z,- freaky4wrld submitted pull request review: [5922](https://github.com/hackforla/website/pull/5922#pullrequestreview-1739444049) at 2023-11-20 02:22 AM PST -freaky4wrld,2023-11-21T05:41:24Z,- freaky4wrld commented on pull request: [5925](https://github.com/hackforla/website/pull/5925#issuecomment-1820275900) at 2023-11-20 09:41 PM PST -freaky4wrld,2023-11-21T06:06:01Z,- freaky4wrld submitted pull request review: [5925](https://github.com/hackforla/website/pull/5925#pullrequestreview-1741178015) at 2023-11-20 10:06 PM PST -freaky4wrld,2023-11-21T06:12:31Z,- freaky4wrld assigned to issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1820006678) at 2023-11-20 10:12 PM PST -freaky4wrld,2023-11-21T06:13:47Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1820302037) at 2023-11-20 10:13 PM PST -freaky4wrld,2023-11-21T22:22:03Z,- freaky4wrld commented on pull request: [5927](https://github.com/hackforla/website/pull/5927#issuecomment-1821794821) at 2023-11-21 02:22 PM PST -freaky4wrld,2023-11-21T22:32:02Z,- freaky4wrld submitted pull request review: [5927](https://github.com/hackforla/website/pull/5927#pullrequestreview-1743260024) at 2023-11-21 02:32 PM PST -freaky4wrld,2023-11-21T22:35:13Z,- freaky4wrld commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1821807788) at 2023-11-21 02:35 PM PST -freaky4wrld,2023-11-21T22:45:34Z,- freaky4wrld submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1743280327) at 2023-11-21 02:45 PM PST -freaky4wrld,2023-11-23T05:05:23Z,- freaky4wrld submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1745710240) at 2023-11-22 09:05 PM PST -freaky4wrld,2023-11-23T05:08:22Z,- freaky4wrld commented on pull request: [5933](https://github.com/hackforla/website/pull/5933#issuecomment-1823826907) at 2023-11-22 09:08 PM PST -freaky4wrld,2023-11-23T05:19:46Z,- freaky4wrld submitted pull request review: [5933](https://github.com/hackforla/website/pull/5933#pullrequestreview-1745718380) at 2023-11-22 09:19 PM PST -freaky4wrld,2023-11-23T05:21:52Z,- freaky4wrld commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1823833762) at 2023-11-22 09:21 PM PST -freaky4wrld,2023-11-23T05:30:36Z,- freaky4wrld submitted pull request review: [5931](https://github.com/hackforla/website/pull/5931#pullrequestreview-1745725507) at 2023-11-22 09:30 PM PST -freaky4wrld,2023-11-25T04:28:28Z,- freaky4wrld commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826211110) at 2023-11-24 08:28 PM PST -freaky4wrld,2023-11-25T04:42:14Z,- freaky4wrld submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1748776183) at 2023-11-24 08:42 PM PST -freaky4wrld,2023-11-26T11:19:21Z,- freaky4wrld submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749325618) at 2023-11-26 03:19 AM PST -freaky4wrld,2023-11-26T12:03:12Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1826765209) at 2023-11-26 04:03 AM PST -freaky4wrld,2023-11-26T23:23:51Z,- freaky4wrld commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1826935921) at 2023-11-26 03:23 PM PST -freaky4wrld,2023-11-26T23:37:37Z,- freaky4wrld submitted pull request review: [5936](https://github.com/hackforla/website/pull/5936#pullrequestreview-1749450217) at 2023-11-26 03:37 PM PST -freaky4wrld,2023-11-27T02:30:59Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1827033600) at 2023-11-26 06:30 PM PST -freaky4wrld,2023-11-28T11:01:44Z,- freaky4wrld submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1752614649) at 2023-11-28 03:01 AM PST -freaky4wrld,2023-12-06T05:08:17Z,- freaky4wrld commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1842095529) at 2023-12-05 09:08 PM PST -freaky4wrld,2023-12-06T05:09:43Z,- freaky4wrld commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1842096522) at 2023-12-05 09:09 PM PST -freaky4wrld,2023-12-06T05:11:31Z,- freaky4wrld commented on pull request: [5947](https://github.com/hackforla/website/pull/5947#issuecomment-1842097670) at 2023-12-05 09:11 PM PST -freaky4wrld,2023-12-06T12:43:23Z,- freaky4wrld submitted pull request review: [5961](https://github.com/hackforla/website/pull/5961#pullrequestreview-1767450137) at 2023-12-06 04:43 AM PST -freaky4wrld,2023-12-06T12:58:17Z,- freaky4wrld commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1842832292) at 2023-12-06 04:58 AM PST -freaky4wrld,2023-12-06T13:42:44Z,- freaky4wrld submitted pull request review: [5947](https://github.com/hackforla/website/pull/5947#pullrequestreview-1767605376) at 2023-12-06 05:42 AM PST -freaky4wrld,2023-12-06T14:23:27Z,- freaky4wrld submitted pull request review: [5967](https://github.com/hackforla/website/pull/5967#pullrequestreview-1767706660) at 2023-12-06 06:23 AM PST -freaky4wrld,2023-12-07T02:03:46Z,- freaky4wrld submitted pull request review: [5957](https://github.com/hackforla/website/pull/5957#pullrequestreview-1768977203) at 2023-12-06 06:03 PM PST -freaky4wrld,2023-12-09T09:06:07Z,- freaky4wrld opened issue: [5979](https://github.com/hackforla/website/issues/5979) at 2023-12-09 01:06 AM PST -freaky4wrld,2023-12-09T09:06:08Z,- freaky4wrld assigned to issue: [5979](https://github.com/hackforla/website/issues/5979) at 2023-12-09 01:06 AM PST -freaky4wrld,2023-12-09T09:13:23Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1848338741) at 2023-12-09 01:13 AM PST -freaky4wrld,2023-12-09T09:59:29Z,- freaky4wrld assigned to issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1837257078) at 2023-12-09 01:59 AM PST -freaky4wrld,2023-12-09T10:00:21Z,- freaky4wrld commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1848357675) at 2023-12-09 02:00 AM PST -freaky4wrld,2023-12-10T03:21:35Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1848845213) at 2023-12-09 07:21 PM PST -freaky4wrld,2023-12-10T05:10:57Z,- freaky4wrld commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1848860566) at 2023-12-09 09:10 PM PST -freaky4wrld,2023-12-11T08:40:13Z,- freaky4wrld submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1774538556) at 2023-12-11 12:40 AM PST -freaky4wrld,2023-12-13T12:37:34Z,- freaky4wrld commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1853842026) at 2023-12-13 04:37 AM PST -freaky4wrld,2023-12-13T12:40:13Z,- freaky4wrld submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1779551946) at 2023-12-13 04:40 AM PST -freaky4wrld,2023-12-13T12:47:08Z,- freaky4wrld submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1779563823) at 2023-12-13 04:47 AM PST -freaky4wrld,2023-12-14T11:01:30Z,- freaky4wrld commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1855636627) at 2023-12-14 03:01 AM PST -freaky4wrld,2023-12-15T14:06:36Z,- freaky4wrld submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1784128732) at 2023-12-15 06:06 AM PST -freaky4wrld,2023-12-16T06:36:12Z,- freaky4wrld commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1858739401) at 2023-12-15 10:36 PM PST -freaky4wrld,2023-12-16T14:16:22Z,- freaky4wrld commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1858829241) at 2023-12-16 06:16 AM PST -freaky4wrld,2023-12-17T05:01:22Z,- freaky4wrld submitted pull request review: [6010](https://github.com/hackforla/website/pull/6010#pullrequestreview-1785338118) at 2023-12-16 09:01 PM PST -freaky4wrld,2023-12-18T21:57:40Z,- freaky4wrld submitted pull request review: [6010](https://github.com/hackforla/website/pull/6010#pullrequestreview-1787778324) at 2023-12-18 01:57 PM PST -freaky4wrld,2023-12-20T03:38:22Z,- freaky4wrld commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1863798386) at 2023-12-19 07:38 PM PST -freaky4wrld,2023-12-20T03:39:10Z,- freaky4wrld commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1863798805) at 2023-12-19 07:39 PM PST -freaky4wrld,2023-12-20T03:40:11Z,- freaky4wrld commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1863799383) at 2023-12-19 07:40 PM PST -freaky4wrld,2023-12-20T08:20:18Z,- freaky4wrld commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1864048121) at 2023-12-20 12:20 AM PST -freaky4wrld,2023-12-20T09:52:18Z,- freaky4wrld commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1864172788) at 2023-12-20 01:52 AM PST -freaky4wrld,2023-12-20T10:09:04Z,- freaky4wrld submitted pull request review: [6004](https://github.com/hackforla/website/pull/6004#pullrequestreview-1790572391) at 2023-12-20 02:09 AM PST -freaky4wrld,2023-12-21T03:37:39Z,- freaky4wrld submitted pull request review: [6013](https://github.com/hackforla/website/pull/6013#pullrequestreview-1792137508) at 2023-12-20 07:37 PM PST -freaky4wrld,2023-12-21T03:44:52Z,- freaky4wrld commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1865433370) at 2023-12-20 07:44 PM PST -freaky4wrld,2023-12-22T17:13:19Z,- freaky4wrld submitted pull request review: [6006](https://github.com/hackforla/website/pull/6006#pullrequestreview-1794756340) at 2023-12-22 09:13 AM PST -freaky4wrld,2023-12-27T07:30:49Z,- freaky4wrld commented on pull request: [6016](https://github.com/hackforla/website/pull/6016#issuecomment-1870028680) at 2023-12-26 11:30 PM PST -freaky4wrld,2023-12-28T04:11:42Z,- freaky4wrld submitted pull request review: [6016](https://github.com/hackforla/website/pull/6016#pullrequestreview-1797650141) at 2023-12-27 08:11 PM PST -freaky4wrld,2024-01-03T04:28:19Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1874834239) at 2024-01-02 08:28 PM PST -freaky4wrld,2024-01-06T04:52:53Z,- freaky4wrld commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879549650) at 2024-01-05 08:52 PM PST -freaky4wrld,2024-01-06T05:09:42Z,- freaky4wrld commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879553583) at 2024-01-05 09:09 PM PST -freaky4wrld,2024-01-06T05:17:27Z,- freaky4wrld assigned to issue: [6019](https://github.com/hackforla/website/issues/6019#issuecomment-1879523318) at 2024-01-05 09:17 PM PST -freaky4wrld,2024-01-06T05:18:36Z,- freaky4wrld unassigned from issue: [6019](https://github.com/hackforla/website/issues/6019#issuecomment-1879523318) at 2024-01-05 09:18 PM PST -freaky4wrld,2024-01-06T05:19:28Z,- freaky4wrld commented on pull request: [6068](https://github.com/hackforla/website/pull/6068#issuecomment-1879555841) at 2024-01-05 09:19 PM PST -freaky4wrld,2024-01-06T05:30:44Z,- freaky4wrld submitted pull request review: [6068](https://github.com/hackforla/website/pull/6068#pullrequestreview-1807257816) at 2024-01-05 09:30 PM PST -freaky4wrld,2024-01-06T10:29:36Z,- freaky4wrld submitted pull request review: [6070](https://github.com/hackforla/website/pull/6070#pullrequestreview-1807336485) at 2024-01-06 02:29 AM PST -freaky4wrld,2024-01-09T07:04:46Z,- freaky4wrld commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1882514611) at 2024-01-08 11:04 PM PST -freaky4wrld,2024-01-09T07:19:04Z,- freaky4wrld commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1882528323) at 2024-01-08 11:19 PM PST -freaky4wrld,2024-01-09T10:11:07Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1882777168) at 2024-01-09 02:11 AM PST -freaky4wrld,2024-01-10T04:01:01Z,- freaky4wrld submitted pull request review: [6076](https://github.com/hackforla/website/pull/6076#pullrequestreview-1812373297) at 2024-01-09 08:01 PM PST -freaky4wrld,2024-01-13T06:59:35Z,- freaky4wrld commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1890349766) at 2024-01-12 10:59 PM PST -freaky4wrld,2024-01-13T07:29:54Z,- freaky4wrld commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1890359756) at 2024-01-12 11:29 PM PST -freaky4wrld,2024-01-14T04:01:25Z,- freaky4wrld submitted pull request review: [6099](https://github.com/hackforla/website/pull/6099#pullrequestreview-1820141695) at 2024-01-13 08:01 PM PST -freaky4wrld,2024-01-15T22:47:41Z,- freaky4wrld commented on pull request: [6100](https://github.com/hackforla/website/pull/6100#issuecomment-1892843013) at 2024-01-15 02:47 PM PST -freaky4wrld,2024-01-15T23:00:38Z,- freaky4wrld submitted pull request review: [6100](https://github.com/hackforla/website/pull/6100#pullrequestreview-1822325562) at 2024-01-15 03:00 PM PST -freaky4wrld,2024-01-17T04:19:52Z,- freaky4wrld opened issue: [6120](https://github.com/hackforla/website/issues/6120) at 2024-01-16 08:19 PM PST -freaky4wrld,2024-01-18T09:54:01Z,- freaky4wrld commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1898148861) at 2024-01-18 01:54 AM PST -freaky4wrld,2024-01-18T10:47:25Z,- freaky4wrld commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1898237540) at 2024-01-18 02:47 AM PST -freaky4wrld,2024-01-19T11:21:32Z,- freaky4wrld commented on pull request: [6131](https://github.com/hackforla/website/pull/6131#issuecomment-1900226036) at 2024-01-19 03:21 AM PST -freaky4wrld,2024-01-19T11:31:16Z,- freaky4wrld submitted pull request review: [6131](https://github.com/hackforla/website/pull/6131#pullrequestreview-1832227191) at 2024-01-19 03:31 AM PST -freaky4wrld,2024-01-20T04:26:49Z,- freaky4wrld commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1901740761) at 2024-01-19 08:26 PM PST -freaky4wrld,2024-01-21T07:27:19Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1902540919) at 2024-01-20 11:27 PM PST -freaky4wrld,2024-01-21T08:15:07Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1902550553) at 2024-01-21 12:15 AM PST -freaky4wrld,2024-01-22T07:34:21Z,- freaky4wrld commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1903410878) at 2024-01-21 11:34 PM PST -freaky4wrld,2024-01-23T23:51:54Z,- freaky4wrld submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1840138954) at 2024-01-23 03:51 PM PST -freaky4wrld,2024-01-24T04:12:45Z,- freaky4wrld commented on pull request: [6146](https://github.com/hackforla/website/pull/6146#issuecomment-1907347876) at 2024-01-23 08:12 PM PST -freaky4wrld,2024-01-24T06:21:37Z,- freaky4wrld commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1907447126) at 2024-01-23 10:21 PM PST -freaky4wrld,2024-01-24T10:39:42Z,- freaky4wrld submitted pull request review: [6149](https://github.com/hackforla/website/pull/6149#pullrequestreview-1841061127) at 2024-01-24 02:39 AM PST -freaky4wrld,2024-01-24T11:10:48Z,- freaky4wrld commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1907915932) at 2024-01-24 03:10 AM PST -freaky4wrld,2024-01-25T06:46:26Z,- freaky4wrld commented on pull request: [6152](https://github.com/hackforla/website/pull/6152#issuecomment-1909450521) at 2024-01-24 10:46 PM PST -freaky4wrld,2024-01-25T09:26:00Z,- freaky4wrld submitted pull request review: [6152](https://github.com/hackforla/website/pull/6152#pullrequestreview-1843219606) at 2024-01-25 01:26 AM PST -freaky4wrld,2024-01-28T04:41:06Z,- freaky4wrld commented on pull request: [6151](https://github.com/hackforla/website/pull/6151#issuecomment-1913447179) at 2024-01-27 08:41 PM PST -freaky4wrld,2024-01-28T05:36:43Z,- freaky4wrld submitted pull request review: [6151](https://github.com/hackforla/website/pull/6151#pullrequestreview-1847401088) at 2024-01-27 09:36 PM PST -freaky4wrld,2024-01-28T12:15:24Z,- freaky4wrld submitted pull request review: [6186](https://github.com/hackforla/website/pull/6186#pullrequestreview-1847520587) at 2024-01-28 04:15 AM PST -freaky4wrld,2024-01-29T08:35:49Z,- freaky4wrld commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1914205081) at 2024-01-29 12:35 AM PST -freaky4wrld,2024-01-29T09:54:42Z,- freaky4wrld submitted pull request review: [6158](https://github.com/hackforla/website/pull/6158#pullrequestreview-1848261676) at 2024-01-29 01:54 AM PST -freaky4wrld,2024-01-30T04:33:34Z,- freaky4wrld commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1916057940) at 2024-01-29 08:33 PM PST -freaky4wrld,2024-01-30T05:41:07Z,- freaky4wrld commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1916116541) at 2024-01-29 09:41 PM PST -freaky4wrld,2024-01-31T04:28:46Z,- freaky4wrld submitted pull request review: [6158](https://github.com/hackforla/website/pull/6158#pullrequestreview-1852872054) at 2024-01-30 08:28 PM PST -freaky4wrld,2024-02-02T05:50:08Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1922883487) at 2024-02-01 09:50 PM PST -freaky4wrld,2024-02-02T06:14:06Z,- freaky4wrld commented on pull request: [6201](https://github.com/hackforla/website/pull/6201#issuecomment-1922935965) at 2024-02-01 10:14 PM PST -freaky4wrld,2024-02-02T06:20:35Z,- freaky4wrld submitted pull request review: [6201](https://github.com/hackforla/website/pull/6201#pullrequestreview-1858412740) at 2024-02-01 10:20 PM PST -freaky4wrld,2024-02-03T04:15:04Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1925064713) at 2024-02-02 08:15 PM PST -freaky4wrld,2024-02-03T10:18:02Z,- freaky4wrld submitted pull request review: [6216](https://github.com/hackforla/website/pull/6216#pullrequestreview-1860972542) at 2024-02-03 02:18 AM PST -freaky4wrld,2024-02-04T16:18:57Z,- freaky4wrld submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1861469367) at 2024-02-04 08:18 AM PST -freaky4wrld,2024-02-05T06:06:25Z,- freaky4wrld commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1926290952) at 2024-02-04 10:06 PM PST -freaky4wrld,2024-02-06T04:51:14Z,- freaky4wrld commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1928781064) at 2024-02-05 08:51 PM PST -freaky4wrld,2024-02-07T07:45:49Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1931458807) at 2024-02-06 11:45 PM PST -freaky4wrld,2024-02-07T07:55:53Z,- freaky4wrld submitted pull request review: [6243](https://github.com/hackforla/website/pull/6243#pullrequestreview-1867121384) at 2024-02-06 11:55 PM PST -freaky4wrld,2024-02-07T08:45:29Z,- freaky4wrld commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1931545018) at 2024-02-07 12:45 AM PST -freaky4wrld,2024-02-08T09:24:35Z,- freaky4wrld submitted pull request review: [6263](https://github.com/hackforla/website/pull/6263#pullrequestreview-1869643211) at 2024-02-08 01:24 AM PST -freaky4wrld,2024-02-09T13:25:03Z,- freaky4wrld submitted pull request review: [6271](https://github.com/hackforla/website/pull/6271#pullrequestreview-1872386595) at 2024-02-09 05:25 AM PST -freaky4wrld,2024-02-10T05:28:33Z,- freaky4wrld commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1936877417) at 2024-02-09 09:28 PM PST -freaky4wrld,2024-02-10T05:30:04Z,- freaky4wrld commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1936877947) at 2024-02-09 09:30 PM PST -freaky4wrld,2024-02-10T08:33:03Z,- freaky4wrld submitted pull request review: [6271](https://github.com/hackforla/website/pull/6271#pullrequestreview-1873582385) at 2024-02-10 12:33 AM PST -freaky4wrld,2024-02-11T05:15:08Z,- freaky4wrld submitted pull request review: [6267](https://github.com/hackforla/website/pull/6267#pullrequestreview-1874304211) at 2024-02-10 09:15 PM PST -freaky4wrld,2024-02-14T05:04:00Z,- freaky4wrld commented on pull request: [6293](https://github.com/hackforla/website/pull/6293#issuecomment-1943087497) at 2024-02-13 09:04 PM PST -freaky4wrld,2024-02-15T04:46:11Z,- freaky4wrld submitted pull request review: [6293](https://github.com/hackforla/website/pull/6293#pullrequestreview-1881754737) at 2024-02-14 08:46 PM PST -freaky4wrld,2024-02-16T05:39:18Z,- freaky4wrld commented on pull request: [6301](https://github.com/hackforla/website/pull/6301#issuecomment-1947790422) at 2024-02-15 09:39 PM PST -freaky4wrld,2024-02-16T06:41:24Z,- freaky4wrld opened issue: [6303](https://github.com/hackforla/website/issues/6303) at 2024-02-15 10:41 PM PST -freaky4wrld,2024-02-16T06:42:32Z,- freaky4wrld commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1947839702) at 2024-02-15 10:42 PM PST -freaky4wrld,2024-02-17T05:54:19Z,- freaky4wrld commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949700770) at 2024-02-16 09:54 PM PST -freaky4wrld,2024-02-17T06:08:51Z,- freaky4wrld submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1886482412) at 2024-02-16 10:08 PM PST -freaky4wrld,2024-02-17T06:13:37Z,- freaky4wrld commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1949764135) at 2024-02-16 10:13 PM PST -freaky4wrld,2024-02-17T08:44:37Z,- freaky4wrld closed issue by PR 6292: [5365](https://github.com/hackforla/website/issues/5365#event-11835936888) at 2024-02-17 12:44 AM PST -freaky4wrld,2024-02-17T08:48:14Z,- freaky4wrld commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1949904821) at 2024-02-17 12:48 AM PST -freaky4wrld,2024-02-18T06:06:20Z,- freaky4wrld submitted pull request review: [6307](https://github.com/hackforla/website/pull/6307#pullrequestreview-1887094584) at 2024-02-17 10:06 PM PST -freaky4wrld,2024-02-18T06:45:16Z,- freaky4wrld commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950980923) at 2024-02-17 10:45 PM PST -freaky4wrld,2024-02-18T06:45:20Z,- freaky4wrld closed issue by PR 6307: [6052](https://github.com/hackforla/website/issues/6052#event-11838274168) at 2024-02-17 10:45 PM PST -freaky4wrld,2024-02-19T07:04:23Z,- freaky4wrld commented on pull request: [6314](https://github.com/hackforla/website/pull/6314#issuecomment-1951822644) at 2024-02-18 11:04 PM PST -freaky4wrld,2024-02-20T06:34:56Z,- freaky4wrld assigned to issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1940112615) at 2024-02-19 10:34 PM PST -freaky4wrld,2024-02-20T06:35:23Z,- freaky4wrld commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1953570303) at 2024-02-19 10:35 PM PST -freaky4wrld,2024-02-24T04:07:25Z,- freaky4wrld submitted pull request review: [6366](https://github.com/hackforla/website/pull/6366#pullrequestreview-1899208811) at 2024-02-23 08:07 PM PST -freaky4wrld,2024-02-24T04:30:05Z,- freaky4wrld assigned to issue: [6289](https://github.com/hackforla/website/issues/6289) at 2024-02-23 08:30 PM PST -freaky4wrld,2024-02-24T04:44:58Z,- freaky4wrld opened issue: [6369](https://github.com/hackforla/website/issues/6369) at 2024-02-23 08:44 PM PST -freaky4wrld,2024-02-24T04:53:06Z,- freaky4wrld commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-1962253742) at 2024-02-23 08:53 PM PST -freaky4wrld,2024-02-25T06:36:28Z,- freaky4wrld commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1962831820) at 2024-02-24 10:36 PM PST -freaky4wrld,2024-02-26T03:52:11Z,- freaky4wrld closed issue by PR 6366: [5838](https://github.com/hackforla/website/issues/5838#event-11915300742) at 2024-02-25 07:52 PM PST -freaky4wrld,2024-02-26T04:15:19Z,- freaky4wrld commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1963287917) at 2024-02-25 08:15 PM PST -freaky4wrld,2024-02-26T04:18:08Z,- freaky4wrld submitted pull request review: [6365](https://github.com/hackforla/website/pull/6365#pullrequestreview-1899929690) at 2024-02-25 08:18 PM PST -freaky4wrld,2024-02-26T04:19:44Z,- freaky4wrld closed issue by PR 6365: [6111](https://github.com/hackforla/website/issues/6111#event-11915441906) at 2024-02-25 08:19 PM PST -freaky4wrld,2024-02-26T04:25:58Z,- freaky4wrld commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1963295674) at 2024-02-25 08:25 PM PST -freaky4wrld,2024-02-27T14:50:52Z,- freaky4wrld commented on pull request: [6381](https://github.com/hackforla/website/pull/6381#issuecomment-1966723157) at 2024-02-27 06:50 AM PST -freaky4wrld,2024-02-28T06:05:18Z,- freaky4wrld submitted pull request review: [6381](https://github.com/hackforla/website/pull/6381#pullrequestreview-1905387929) at 2024-02-27 10:05 PM PST -freaky4wrld,2024-02-28T06:05:36Z,- freaky4wrld closed issue by PR 6381: [5839](https://github.com/hackforla/website/issues/5839#event-11946818626) at 2024-02-27 10:05 PM PST -freaky4wrld,2024-02-28T06:25:21Z,- freaky4wrld submitted pull request review: [6363](https://github.com/hackforla/website/pull/6363#pullrequestreview-1905408883) at 2024-02-27 10:25 PM PST -freaky4wrld,2024-02-28T06:25:28Z,- freaky4wrld closed issue by PR 6363: [5878](https://github.com/hackforla/website/issues/5878#event-11946953924) at 2024-02-27 10:25 PM PST -freaky4wrld,2024-03-01T03:18:10Z,- freaky4wrld closed issue by PR 6385: [6257](https://github.com/hackforla/website/issues/6257#event-11974037182) at 2024-02-29 07:18 PM PST -freaky4wrld,2024-03-02T08:03:21Z,- freaky4wrld closed issue by PR 6393: [6311](https://github.com/hackforla/website/issues/6311#event-11986793260) at 2024-03-02 12:03 AM PST -freaky4wrld,2024-03-02T08:13:50Z,- freaky4wrld submitted pull request review: [6406](https://github.com/hackforla/website/pull/6406#pullrequestreview-1912612763) at 2024-03-02 12:13 AM PST -freaky4wrld,2024-03-02T08:13:59Z,- freaky4wrld closed issue by PR 6406: [6377](https://github.com/hackforla/website/issues/6377#event-11986837575) at 2024-03-02 12:13 AM PST -freaky4wrld,2024-03-03T16:54:47Z,- freaky4wrld submitted pull request review: [6388](https://github.com/hackforla/website/pull/6388#pullrequestreview-1913042415) at 2024-03-03 08:54 AM PST -freaky4wrld,2024-03-04T05:46:55Z,- freaky4wrld assigned to issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1975776628) at 2024-03-03 09:46 PM PST -freaky4wrld,2024-03-04T10:08:02Z,- freaky4wrld commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1976219020) at 2024-03-04 02:08 AM PST -freaky4wrld,2024-03-04T10:20:30Z,- freaky4wrld commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1976243620) at 2024-03-04 02:20 AM PST -freaky4wrld,2024-03-07T05:09:53Z,- freaky4wrld closed issue by PR 6436: [5850](https://github.com/hackforla/website/issues/5850#event-12036550580) at 2024-03-06 09:09 PM PST -freaky4wrld,2024-03-12T01:55:53Z,- freaky4wrld commented on pull request: [6448](https://github.com/hackforla/website/pull/6448#issuecomment-1989774203) at 2024-03-11 06:55 PM PDT -freaky4wrld,2024-03-14T03:48:14Z,- freaky4wrld submitted pull request review: [6448](https://github.com/hackforla/website/pull/6448#pullrequestreview-1935593119) at 2024-03-13 08:48 PM PDT -freaky4wrld,2024-03-14T03:48:26Z,- freaky4wrld closed issue by PR 6448: [6167](https://github.com/hackforla/website/issues/6167#event-12111802977) at 2024-03-13 08:48 PM PDT -freaky4wrld,2024-03-15T05:45:46Z,- freaky4wrld closed issue by PR 6461: [6171](https://github.com/hackforla/website/issues/6171#event-12126963059) at 2024-03-14 10:45 PM PDT -freaky4wrld,2024-03-15T06:05:40Z,- freaky4wrld closed issue by PR 6443: [5507](https://github.com/hackforla/website/issues/5507#event-12127087125) at 2024-03-14 11:05 PM PDT -freaky4wrld,2024-03-15T10:07:04Z,- freaky4wrld closed issue by PR 6457: [6154](https://github.com/hackforla/website/issues/6154#event-12129377817) at 2024-03-15 03:07 AM PDT -freaky4wrld,2024-03-16T04:07:30Z,- freaky4wrld commented on pull request: [6469](https://github.com/hackforla/website/pull/6469#issuecomment-2001555617) at 2024-03-15 09:07 PM PDT -freaky4wrld,2024-03-16T04:28:13Z,- freaky4wrld submitted pull request review: [6469](https://github.com/hackforla/website/pull/6469#pullrequestreview-1940947198) at 2024-03-15 09:28 PM PDT -freaky4wrld,2024-03-16T06:31:50Z,- freaky4wrld commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-2001850278) at 2024-03-15 11:31 PM PDT -freaky4wrld,2024-03-19T04:11:31Z,- freaky4wrld commented on pull request: [6471](https://github.com/hackforla/website/pull/6471#issuecomment-2005719271) at 2024-03-18 09:11 PM PDT -freaky4wrld,2024-03-21T15:57:06Z,- freaky4wrld submitted pull request review: [6486](https://github.com/hackforla/website/pull/6486#pullrequestreview-1952668835) at 2024-03-21 08:57 AM PDT -freaky4wrld,2024-03-21T15:57:26Z,- freaky4wrld closed issue by PR 6486: [6395](https://github.com/hackforla/website/issues/6395#event-12203194855) at 2024-03-21 08:57 AM PDT -freaky4wrld,2024-03-30T03:14:36Z,- freaky4wrld commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2027893318) at 2024-03-29 08:14 PM PDT -freaky4wrld,2024-03-30T11:28:13Z,- freaky4wrld closed issue by PR 6533: [6110](https://github.com/hackforla/website/issues/6110#event-12300409625) at 2024-03-30 04:28 AM PDT -freaky4wrld,2024-03-30T11:28:47Z,- freaky4wrld closed issue by PR 6547: [6450](https://github.com/hackforla/website/issues/6450#event-12300410494) at 2024-03-30 04:28 AM PDT -freaky4wrld,2024-04-10T05:04:49Z,- freaky4wrld submitted pull request review: [6566](https://github.com/hackforla/website/pull/6566#pullrequestreview-1990800015) at 2024-04-09 10:04 PM PDT -freaky4wrld,2024-04-10T05:14:09Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2046552045) at 2024-04-09 10:14 PM PDT -freaky4wrld,2024-04-10T05:14:38Z,- freaky4wrld closed issue by PR 6566: [6309](https://github.com/hackforla/website/issues/6309#event-12416460175) at 2024-04-09 10:14 PM PDT -freaky4wrld,2024-04-11T05:52:13Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2048971577) at 2024-04-10 10:52 PM PDT -freaky4wrld,2024-04-11T11:26:04Z,- freaky4wrld submitted pull request review: [6620](https://github.com/hackforla/website/pull/6620#pullrequestreview-1993924779) at 2024-04-11 04:26 AM PDT -freaky4wrld,2024-04-12T05:19:32Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2050996923) at 2024-04-11 10:19 PM PDT -freaky4wrld,2024-04-13T07:59:15Z,- freaky4wrld submitted pull request review: [6631](https://github.com/hackforla/website/pull/6631#pullrequestreview-1999182436) at 2024-04-13 12:59 AM PDT -freaky4wrld,2024-04-15T09:30:00Z,- freaky4wrld submitted pull request review: [6647](https://github.com/hackforla/website/pull/6647#pullrequestreview-2000528661) at 2024-04-15 02:30 AM PDT -freaky4wrld,2024-04-15T09:30:09Z,- freaky4wrld closed issue by PR 6647: [6170](https://github.com/hackforla/website/issues/6170#event-12466180134) at 2024-04-15 02:30 AM PDT -freaky4wrld,2024-04-20T04:20:13Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2067545031) at 2024-04-19 09:20 PM PDT -freaky4wrld,2024-04-21T06:01:12Z,- freaky4wrld submitted pull request review: [6520](https://github.com/hackforla/website/pull/6520#pullrequestreview-2013328500) at 2024-04-20 11:01 PM PDT -freaky4wrld,2024-04-23T05:12:39Z,- freaky4wrld commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2071421851) at 2024-04-22 10:12 PM PDT -freaky4wrld,2024-04-23T05:17:39Z,- freaky4wrld commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2071426667) at 2024-04-22 10:17 PM PDT -freaky4wrld,2024-04-23T05:24:50Z,- freaky4wrld closed issue by PR 6708: [6642](https://github.com/hackforla/website/issues/6642#event-12569366781) at 2024-04-22 10:24 PM PDT -freaky4wrld,2024-04-23T13:49:00Z,- freaky4wrld closed issue by PR 6707: [6696](https://github.com/hackforla/website/issues/6696#event-12576058168) at 2024-04-23 06:49 AM PDT -freaky4wrld,2024-04-25T04:30:51Z,- freaky4wrld submitted pull request review: [6748](https://github.com/hackforla/website/pull/6748#pullrequestreview-2021467498) at 2024-04-24 09:30 PM PDT -freaky4wrld,2024-04-25T05:59:32Z,- freaky4wrld commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2076428826) at 2024-04-24 10:59 PM PDT -freaky4wrld,2024-04-30T10:33:12Z,- freaky4wrld commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2084945936) at 2024-04-30 03:33 AM PDT -freaky4wrld,2024-04-30T16:06:57Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-2085798486) at 2024-04-30 09:06 AM PDT -freaky4wrld,2024-05-01T04:08:17Z,- freaky4wrld submitted pull request review: [6788](https://github.com/hackforla/website/pull/6788#pullrequestreview-2033010248) at 2024-04-30 09:08 PM PDT -freaky4wrld,2024-05-10T03:24:07Z,- freaky4wrld commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2103788671) at 2024-05-09 08:24 PM PDT -freaky4wrld,2024-06-02T05:52:29Z,- freaky4wrld submitted pull request review: [6923](https://github.com/hackforla/website/pull/6923#pullrequestreview-2092220603) at 2024-06-01 10:52 PM PDT -freaky4wrld,2024-06-02T05:52:49Z,- freaky4wrld closed issue by PR 6923: [6922](https://github.com/hackforla/website/issues/6922#event-13010856879) at 2024-06-01 10:52 PM PDT -freaky4wrld,2024-06-04T01:08:33Z,- freaky4wrld submitted pull request review: [6928](https://github.com/hackforla/website/pull/6928#pullrequestreview-2095105508) at 2024-06-03 06:08 PM PDT -freaky4wrld,2024-06-11T03:11:33Z,- freaky4wrld submitted pull request review: [6985](https://github.com/hackforla/website/pull/6985#pullrequestreview-2109203907) at 2024-06-10 08:11 PM PDT -freaky4wrld,2024-06-12T00:40:25Z,- freaky4wrld submitted pull request review: [6989](https://github.com/hackforla/website/pull/6989#pullrequestreview-2111686367) at 2024-06-11 05:40 PM PDT -freaky4wrld,2024-06-13T00:07:29Z,- freaky4wrld submitted pull request review: [6992](https://github.com/hackforla/website/pull/6992#pullrequestreview-2114433927) at 2024-06-12 05:07 PM PDT -freaky4wrld,2024-06-13T00:07:38Z,- freaky4wrld closed issue by PR 6992: [6858](https://github.com/hackforla/website/issues/6858#event-13138635025) at 2024-06-12 05:07 PM PDT -freaky4wrld,2024-06-13T01:44:08Z,- freaky4wrld closed issue by PR 6989: [6848](https://github.com/hackforla/website/issues/6848#event-13139161863) at 2024-06-12 06:44 PM PDT -freaky4wrld,2024-06-14T02:03:48Z,- freaky4wrld submitted pull request review: [6999](https://github.com/hackforla/website/pull/6999#pullrequestreview-2117287708) at 2024-06-13 07:03 PM PDT -freaky4wrld,2024-06-14T23:19:40Z,- freaky4wrld closed issue by PR 6999: [6850](https://github.com/hackforla/website/issues/6850#event-13166269937) at 2024-06-14 04:19 PM PDT -freaky4wrld,2024-08-13T04:57:45Z,- freaky4wrld submitted pull request review: [7272](https://github.com/hackforla/website/pull/7272#pullrequestreview-2234500317) at 2024-08-12 09:57 PM PDT -freaky4wrld,2024-08-13T04:57:53Z,- freaky4wrld closed issue by PR 7272: [7251](https://github.com/hackforla/website/issues/7251#event-13857635595) at 2024-08-12 09:57 PM PDT -freaky4wrld,2024-08-13T05:05:07Z,- freaky4wrld commented on pull request: [7275](https://github.com/hackforla/website/pull/7275#issuecomment-2285347077) at 2024-08-12 10:05 PM PDT -freaky4wrld,2024-08-13T05:06:29Z,- freaky4wrld commented on pull request: [7274](https://github.com/hackforla/website/pull/7274#issuecomment-2285348170) at 2024-08-12 10:06 PM PDT -freaky4wrld,2024-09-09T08:53:18Z,- freaky4wrld unassigned from issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2172337604) at 2024-09-09 01:53 AM PDT -freaky4wrld,2025-03-04T01:41:26Z,- freaky4wrld unassigned from issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-2695967567) at 2025-03-03 05:41 PM PST -ftblmagician,3918,SKILLS ISSUE -ftblmagician,2023-02-01T05:00:55Z,- ftblmagician opened issue: [3918](https://github.com/hackforla/website/issues/3918) at 2023-01-31 09:00 PM PST -ftblmagician,2023-02-01T05:00:56Z,- ftblmagician assigned to issue: [3918](https://github.com/hackforla/website/issues/3918) at 2023-01-31 09:00 PM PST -ftblmagician,2023-02-26T19:08:51Z,- ftblmagician assigned to issue: [3837](https://github.com/hackforla/website/issues/3837#event-8453047120) at 2023-02-26 11:08 AM PST -ftblmagician,2023-02-27T00:35:26Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1445520144) at 2023-02-26 04:35 PM PST -ftblmagician,2023-02-28T15:07:07Z,- ftblmagician commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1448349600) at 2023-02-28 07:07 AM PST -ftblmagician,2023-02-28T16:06:10Z,- ftblmagician unassigned from issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1448446187) at 2023-02-28 08:06 AM PST -ftblmagician,2023-03-01T02:46:40Z,- ftblmagician assigned to issue: [4007](https://github.com/hackforla/website/issues/4007) at 2023-02-28 06:46 PM PST -ftblmagician,2023-03-02T04:06:56Z,- ftblmagician opened pull request: [4086](https://github.com/hackforla/website/pull/4086) at 2023-03-01 08:06 PM PST -ftblmagician,2023-03-02T14:41:29Z,- ftblmagician unassigned from issue: [4007](https://github.com/hackforla/website/issues/4007#issuecomment-1449249575) at 2023-03-02 06:41 AM PST -ftblmagician,2023-03-04T15:44:17Z,- ftblmagician commented on issue: [4007](https://github.com/hackforla/website/issues/4007#issuecomment-1454781739) at 2023-03-04 07:44 AM PST -ftblmagician,2023-03-04T15:46:44Z,- ftblmagician commented on pull request: [4086](https://github.com/hackforla/website/pull/4086#issuecomment-1454782470) at 2023-03-04 07:46 AM PST -ftblmagician,2023-03-08T04:22:51Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1459420719) at 2023-03-07 08:22 PM PST -ftblmagician,2023-03-09T18:56:24Z,- ftblmagician pull request merged: [4086](https://github.com/hackforla/website/pull/4086#event-8711482107) at 2023-03-09 10:56 AM PST -ftblmagician,2023-03-10T04:04:33Z,- ftblmagician assigned to issue: [4141](https://github.com/hackforla/website/issues/4141) at 2023-03-09 08:04 PM PST -ftblmagician,2023-03-11T14:44:34Z,- ftblmagician commented on issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1464926417) at 2023-03-11 07:44 AM PDT -ftblmagician,2023-03-11T15:13:45Z,- ftblmagician opened pull request: [4150](https://github.com/hackforla/website/pull/4150) at 2023-03-11 08:13 AM PDT -ftblmagician,2023-03-11T15:17:48Z,- ftblmagician commented on issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1464932982) at 2023-03-11 08:17 AM PDT -ftblmagician,2023-03-14T14:57:21Z,- ftblmagician commented on pull request: [4150](https://github.com/hackforla/website/pull/4150#issuecomment-1468258111) at 2023-03-14 07:57 AM PDT -ftblmagician,2023-03-15T02:02:16Z,- ftblmagician unassigned from issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1464932982) at 2023-03-14 07:02 PM PDT -ftblmagician,2023-03-15T02:15:47Z,- ftblmagician assigned to issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1437720862) at 2023-03-14 07:15 PM PDT -ftblmagician,2023-03-15T04:41:48Z,- ftblmagician pull request merged: [4150](https://github.com/hackforla/website/pull/4150#event-8750936531) at 2023-03-14 09:41 PM PDT -ftblmagician,2023-03-21T04:08:14Z,- ftblmagician commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1477254936) at 2023-03-20 09:08 PM PDT -ftblmagician,2023-03-24T18:05:49Z,- ftblmagician opened pull request: [4278](https://github.com/hackforla/website/pull/4278) at 2023-03-24 11:05 AM PDT -ftblmagician,2023-03-27T00:59:21Z,- ftblmagician unassigned from issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1484316737) at 2023-03-26 05:59 PM PDT -ftblmagician,2023-03-28T02:04:57Z,- ftblmagician commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1486100887) at 2023-03-27 07:04 PM PDT -ftblmagician,2023-03-28T02:10:13Z,- ftblmagician commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1486104331) at 2023-03-27 07:10 PM PDT -ftblmagician,2023-03-29T04:06:13Z,- ftblmagician assigned to issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1484316737) at 2023-03-28 09:06 PM PDT -ftblmagician,2023-03-29T04:07:49Z,- ftblmagician commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1487917125) at 2023-03-28 09:07 PM PDT -ftblmagician,2023-03-29T22:09:06Z,- ftblmagician pull request merged: [4278](https://github.com/hackforla/website/pull/4278#event-8881231050) at 2023-03-29 03:09 PM PDT -ftblmagician,2023-03-31T02:31:35Z,- ftblmagician assigned to issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1483559227) at 2023-03-30 07:31 PM PDT -ftblmagician,2023-04-07T19:25:46Z,- ftblmagician assigned to issue: [4007](https://github.com/hackforla/website/issues/4007#event-8711482335) at 2023-04-07 12:25 PM PDT -ftblmagician,2023-04-07T19:27:20Z,- ftblmagician assigned to issue: [4141](https://github.com/hackforla/website/issues/4141#event-8750936606) at 2023-04-07 12:27 PM PDT -ftblmagician,2023-04-09T15:33:33Z,- ftblmagician commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1501154765) at 2023-04-09 08:33 AM PDT -ftblmagician,2023-04-11T14:55:31Z,- ftblmagician commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1503529561) at 2023-04-11 07:55 AM PDT -ftblmagician,2023-04-11T14:56:53Z,- ftblmagician commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1503533098) at 2023-04-11 07:56 AM PDT -ftblmagician,2023-04-12T02:24:54Z,- ftblmagician opened pull request: [4474](https://github.com/hackforla/website/pull/4474) at 2023-04-11 07:24 PM PDT -ftblmagician,2023-04-21T17:44:21Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1518148386) at 2023-04-21 10:44 AM PDT -ftblmagician,2023-04-26T02:29:04Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1522673588) at 2023-04-25 07:29 PM PDT -ftblmagician,2023-05-02T01:49:10Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1530758503) at 2023-05-01 06:49 PM PDT -ftblmagician,2023-05-22T14:39:59Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1557342442) at 2023-05-22 07:39 AM PDT -ftblmagician,2023-05-22T14:41:37Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1557345001) at 2023-05-22 07:41 AM PDT -ftblmagician,2023-05-29T19:48:12Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1567462571) at 2023-05-29 12:48 PM PDT -ftblmagician,2023-06-27T00:13:55Z,- ftblmagician pull request closed w/o merging: [4474](https://github.com/hackforla/website/pull/4474#event-9645440059) at 2023-06-26 05:13 PM PDT -ftblmagician,2023-06-27T00:17:35Z,- ftblmagician unassigned from issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1586250052) at 2023-06-26 05:17 PM PDT -ftblmagician,2023-07-09T16:24:21Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1627764193) at 2023-07-09 09:24 AM PDT -fusionxx23,8066,SKILLS ISSUE -fusionxx23,2025-04-16T03:05:46Z,- fusionxx23 opened issue: [8066](https://github.com/hackforla/website/issues/8066) at 2025-04-15 08:05 PM PDT -fusionxx23,2025-04-16T03:05:47Z,- fusionxx23 assigned to issue: [8066](https://github.com/hackforla/website/issues/8066) at 2025-04-15 08:05 PM PDT -fusionxx23,2025-04-16T03:18:54Z,- fusionxx23 commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2808121896) at 2025-04-15 08:18 PM PDT -fusionxx23,2025-04-16T03:25:44Z,- fusionxx23 commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2808130385) at 2025-04-15 08:25 PM PDT -fyliu,2022-08-14T22:49:05Z,- fyliu opened issue: [3469](https://github.com/hackforla/website/issues/3469) at 2022-08-14 03:49 PM PDT -fyliu,2023-07-31T04:33:57Z,- fyliu commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1657550602) at 2023-07-30 09:33 PM PDT -fyliu,2023-11-27T04:39:34Z,- fyliu commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1827114392) at 2023-11-26 08:39 PM PST -fyliu,2024-01-26T22:45:01Z,- fyliu commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1912793042) at 2024-01-26 02:45 PM PST -fyliu,2024-02-07T10:07:10Z,- fyliu commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1931699246) at 2024-02-07 02:07 AM PST -fyliu,2024-02-09T01:43:35Z,- fyliu commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1935212336) at 2024-02-08 05:43 PM PST -fyliu,2024-02-26T21:45:32Z,- fyliu commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1965350895) at 2024-02-26 01:45 PM PST -Garcia1416,2638,SKILLS ISSUE -Garcia1416,2021-12-28T03:40:22Z,- Garcia1416 opened issue: [2638](https://github.com/hackforla/website/issues/2638) at 2021-12-27 07:40 PM PST -Garcia1416,2022-01-21T16:01:08Z,- Garcia1416 assigned to issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1018074008) at 2022-01-21 08:01 AM PST -Garcia1416,2022-02-07T06:34:21Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1031122805) at 2022-02-06 10:34 PM PST -Garcia1416,2022-02-08T09:30:05Z,- Garcia1416 assigned to issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1005329755) at 2022-02-08 01:30 AM PST -Garcia1416,2022-02-08T09:31:47Z,- Garcia1416 commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1032397066) at 2022-02-08 01:31 AM PST -Garcia1416,2022-02-17T05:47:20Z,- Garcia1416 assigned to issue: [2442](https://github.com/hackforla/website/issues/2442#issuecomment-960300953) at 2022-02-16 09:47 PM PST -Garcia1416,2022-02-17T05:48:11Z,- Garcia1416 commented on issue: [2442](https://github.com/hackforla/website/issues/2442#issuecomment-1042597711) at 2022-02-16 09:48 PM PST -Garcia1416,2022-02-17T22:00:40Z,- Garcia1416 opened pull request: [2788](https://github.com/hackforla/website/pull/2788) at 2022-02-17 02:00 PM PST -Garcia1416,2022-02-18T00:27:03Z,- Garcia1416 unassigned from issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1043672010) at 2022-02-17 04:27 PM PST -Garcia1416,2022-02-18T16:40:19Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1044808947) at 2022-02-18 08:40 AM PST -Garcia1416,2022-02-18T22:50:38Z,- Garcia1416 pull request merged: [2788](https://github.com/hackforla/website/pull/2788#event-6103084688) at 2022-02-18 02:50 PM PST -Garcia1416,2022-02-19T19:19:42Z,- Garcia1416 closed issue as completed: [2638](https://github.com/hackforla/website/issues/2638#event-6106326804) at 2022-02-19 11:19 AM PST -Garcia1416,2022-03-02T04:22:40Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1056175242) at 2022-03-01 08:22 PM PST -Garcia1416,2022-03-12T00:49:26Z,- Garcia1416 assigned to issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1037524345) at 2022-03-11 05:49 PM PDT -Garcia1416,2022-03-12T00:51:05Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1065754086) at 2022-03-11 05:51 PM PDT -Garcia1416,2022-03-13T03:10:42Z,- Garcia1416 commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1066012174) at 2022-03-12 08:10 PM PDT -Garcia1416,2022-03-13T17:30:39Z,- Garcia1416 commented on pull request: [2973](https://github.com/hackforla/website/pull/2973#issuecomment-1066146938) at 2022-03-13 10:30 AM PDT -Garcia1416,2022-03-20T05:40:58Z,- Garcia1416 commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1073173005) at 2022-03-19 10:40 PM PDT -Garcia1416,2022-03-22T02:56:19Z,- Garcia1416 opened pull request: [2998](https://github.com/hackforla/website/pull/2998) at 2022-03-21 07:56 PM PDT -Garcia1416,2022-03-22T18:41:19Z,- Garcia1416 pull request merged: [2998](https://github.com/hackforla/website/pull/2998#event-6285921891) at 2022-03-22 11:41 AM PDT -Garcia1416,2022-03-27T19:16:48Z,- Garcia1416 closed issue as completed: [2638](https://github.com/hackforla/website/issues/2638#event-6314128565) at 2022-03-27 12:16 PM PDT -gardenqu,3052,SKILLS ISSUE -gardenqu,2022-04-13T23:07:55Z,- gardenqu opened issue: [3052](https://github.com/hackforla/website/issues/3052) at 2022-04-13 04:07 PM PDT -gardenqu,2022-04-13T23:30:10Z,- gardenqu assigned to issue: [3052](https://github.com/hackforla/website/issues/3052#issuecomment-1098561528) at 2022-04-13 04:30 PM PDT -gardenqu,2022-04-18T18:26:08Z,- gardenqu assigned to issue: [2910](https://github.com/hackforla/website/issues/2910#issuecomment-1100935602) at 2022-04-18 11:26 AM PDT -gardenqu,2022-04-19T06:28:58Z,- gardenqu opened pull request: [3067](https://github.com/hackforla/website/pull/3067) at 2022-04-18 11:28 PM PDT -gardenqu,2022-04-19T18:01:49Z,- gardenqu pull request merged: [3067](https://github.com/hackforla/website/pull/3067#event-6457325323) at 2022-04-19 11:01 AM PDT -gardenqu,2022-04-19T22:39:09Z,- gardenqu commented on issue: [3052](https://github.com/hackforla/website/issues/3052#issuecomment-1103233513) at 2022-04-19 03:39 PM PDT -gardenqu,2022-04-19T22:55:32Z,- gardenqu assigned to issue: [2215](https://github.com/hackforla/website/issues/2215) at 2022-04-19 03:55 PM PDT -gardenqu,2022-04-19T22:58:41Z,- gardenqu commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1103242389) at 2022-04-19 03:58 PM PDT -gardenqu,2022-04-22T22:22:59Z,- gardenqu unassigned from issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1103242389) at 2022-04-22 03:22 PM PDT -garrettallen0,4061,SKILLS ISSUE -garrettallen0,2023-03-01T04:02:33Z,- garrettallen0 opened issue: [4061](https://github.com/hackforla/website/issues/4061) at 2023-02-28 08:02 PM PST -garrettallen0,2023-03-01T04:08:14Z,- garrettallen0 assigned to issue: [4061](https://github.com/hackforla/website/issues/4061) at 2023-02-28 08:08 PM PST -garrettallen0,2023-03-31T03:58:50Z,- garrettallen0 commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1491252308) at 2023-03-30 08:58 PM PDT -garrettallen0,2023-04-12T03:34:41Z,- garrettallen0 closed issue as completed: [2908](https://github.com/hackforla/website/issues/2908#event-8980455784) at 2023-04-11 08:34 PM PDT -garrettallen0,2023-04-12T03:34:52Z,- garrettallen0 reopened issue: [2908](https://github.com/hackforla/website/issues/2908#event-8980455784) at 2023-04-11 08:34 PM PDT -garrettallen0,2023-04-12T03:36:04Z,- garrettallen0 assigned to issue: [2908](https://github.com/hackforla/website/issues/2908#event-8980455784) at 2023-04-11 08:36 PM PDT -garrettallen0,2023-04-12T03:54:48Z,- garrettallen0 commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1504552787) at 2023-04-11 08:54 PM PDT -garrettallen0,2023-04-12T03:55:52Z,- garrettallen0 commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1504553771) at 2023-04-11 08:55 PM PDT -garrettallen0,2023-04-12T04:34:26Z,- garrettallen0 commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1504594927) at 2023-04-11 09:34 PM PDT -garrettallen0,2023-04-14T02:39:47Z,- garrettallen0 unassigned from issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1504594927) at 2023-04-13 07:39 PM PDT -garrettallen0,2023-04-14T02:43:42Z,- garrettallen0 assigned to issue: [4394](https://github.com/hackforla/website/issues/4394) at 2023-04-13 07:43 PM PDT -garrettallen0,2023-04-14T02:45:48Z,- garrettallen0 commented on issue: [4394](https://github.com/hackforla/website/issues/4394#issuecomment-1507853319) at 2023-04-13 07:45 PM PDT -garrettallen0,2023-04-18T01:42:06Z,- garrettallen0 commented on issue: [4394](https://github.com/hackforla/website/issues/4394#issuecomment-1512316324) at 2023-04-17 06:42 PM PDT -garrettallen0,2023-04-19T03:09:19Z,- garrettallen0 opened pull request: [4546](https://github.com/hackforla/website/pull/4546) at 2023-04-18 08:09 PM PDT -garrettallen0,2023-04-20T04:49:04Z,- garrettallen0 commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1515708377) at 2023-04-19 09:49 PM PDT -garrettallen0,2023-04-21T00:25:27Z,- garrettallen0 pull request closed w/o merging: [4546](https://github.com/hackforla/website/pull/4546#event-9062497718) at 2023-04-20 05:25 PM PDT -garrettallen0,2023-04-23T16:47:06Z,- garrettallen0 opened pull request: [4558](https://github.com/hackforla/website/pull/4558) at 2023-04-23 09:47 AM PDT -garrettallen0,2023-04-23T18:16:57Z,- garrettallen0 opened issue: [4559](https://github.com/hackforla/website/issues/4559) at 2023-04-23 11:16 AM PDT -garrettallen0,2023-04-23T18:24:14Z,- garrettallen0 commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1519126362) at 2023-04-23 11:24 AM PDT -garrettallen0,2023-04-23T22:42:46Z,- garrettallen0 commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519185161) at 2023-04-23 03:42 PM PDT -garrettallen0,2023-04-26T20:52:07Z,- garrettallen0 pull request merged: [4558](https://github.com/hackforla/website/pull/4558#event-9107834388) at 2023-04-26 01:52 PM PDT -garrettallen0,2023-05-08T20:13:01Z,- garrettallen0 commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1538986182) at 2023-05-08 01:13 PM PDT -garrettallen0,2023-05-08T20:18:53Z,- garrettallen0 commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1538995183) at 2023-05-08 01:18 PM PDT -Gauravvpnd,2023-05-10T17:08:07Z,- Gauravvpnd commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1542541247) at 2023-05-10 10:08 AM PDT -Gauravvpnd,2023-05-10T17:47:31Z,- Gauravvpnd commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1542585630) at 2023-05-10 10:47 AM PDT -gawaragcha,2019-06-25T21:15:43Z,- gawaragcha commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-505625778) at 2019-06-25 02:15 PM PDT -gaylem,6246,SKILLS ISSUE -gaylem,2024-02-06T03:30:27Z,- gaylem opened issue: [6246](https://github.com/hackforla/website/issues/6246) at 2024-02-05 07:30 PM PST -gaylem,2024-02-06T03:30:33Z,- gaylem assigned to issue: [6246](https://github.com/hackforla/website/issues/6246) at 2024-02-05 07:30 PM PST -gaylem,2024-02-06T18:01:13Z,- gaylem assigned to issue: [6050](https://github.com/hackforla/website/issues/6050#issuecomment-1875023354) at 2024-02-06 10:01 AM PST -gaylem,2024-02-06T18:04:49Z,- gaylem commented on issue: [6050](https://github.com/hackforla/website/issues/6050#issuecomment-1930488166) at 2024-02-06 10:04 AM PST -gaylem,2024-02-06T19:16:46Z,- gaylem opened pull request: [6260](https://github.com/hackforla/website/pull/6260) at 2024-02-06 11:16 AM PST -gaylem,2024-02-06T19:20:38Z,- gaylem commented on issue: [6246](https://github.com/hackforla/website/issues/6246#issuecomment-1930603459) at 2024-02-06 11:20 AM PST -gaylem,2024-02-06T23:17:58Z,- gaylem commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1930931161) at 2024-02-06 03:17 PM PST -gaylem,2024-02-07T16:03:18Z,- gaylem commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1932367945) at 2024-02-07 08:03 AM PST -gaylem,2024-02-09T06:43:59Z,- gaylem pull request merged: [6260](https://github.com/hackforla/website/pull/6260#event-11754415939) at 2024-02-08 10:43 PM PST -gaylem,2024-02-10T14:53:36Z,- gaylem commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1937025101) at 2024-02-10 06:53 AM PST -gaylem,2024-02-10T14:59:25Z,- gaylem submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1873725212) at 2024-02-10 06:59 AM PST -gaylem,2024-02-10T15:04:24Z,- gaylem assigned to issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-02-10 07:04 AM PST -gaylem,2024-02-10T15:07:16Z,- gaylem commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1937037326) at 2024-02-10 07:07 AM PST -gaylem,2024-02-11T14:44:49Z,- gaylem submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1874381939) at 2024-02-11 06:44 AM PST -gaylem,2024-02-12T16:29:04Z,- gaylem opened pull request: [6281](https://github.com/hackforla/website/pull/6281) at 2024-02-12 08:29 AM PST -gaylem,2024-02-12T16:29:35Z,- gaylem commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1939085012) at 2024-02-12 08:29 AM PST -gaylem,2024-02-12T16:29:48Z,- gaylem commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939085398) at 2024-02-12 08:29 AM PST -gaylem,2024-02-12T16:35:45Z,- gaylem commented on pull request: [6279](https://github.com/hackforla/website/pull/6279#issuecomment-1939104924) at 2024-02-12 08:35 AM PST -gaylem,2024-02-12T16:56:53Z,- gaylem submitted pull request review: [6279](https://github.com/hackforla/website/pull/6279#pullrequestreview-1875736041) at 2024-02-12 08:56 AM PST -gaylem,2024-02-13T22:16:55Z,- gaylem assigned to issue: [5985](https://github.com/hackforla/website/issues/5985) at 2024-02-13 02:16 PM PST -gaylem,2024-02-13T22:19:35Z,- gaylem unassigned from issue: [5985](https://github.com/hackforla/website/issues/5985) at 2024-02-13 02:19 PM PST -gaylem,2024-02-14T02:59:39Z,- gaylem closed issue as completed: [6246](https://github.com/hackforla/website/issues/6246#event-11796224619) at 2024-02-13 06:59 PM PST -gaylem,2024-02-14T03:26:41Z,- gaylem commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1943028187) at 2024-02-13 07:26 PM PST -gaylem,2024-02-14T14:59:06Z,- gaylem submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1880528276) at 2024-02-14 06:59 AM PST -gaylem,2024-02-15T14:09:31Z,- gaylem opened pull request: [6300](https://github.com/hackforla/website/pull/6300) at 2024-02-15 06:09 AM PST -gaylem,2024-02-15T14:11:05Z,- gaylem commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1946174697) at 2024-02-15 06:11 AM PST -gaylem,2024-02-15T14:11:09Z,- gaylem pull request closed w/o merging: [6281](https://github.com/hackforla/website/pull/6281#event-11816041206) at 2024-02-15 06:11 AM PST -gaylem,2024-02-16T05:27:05Z,- gaylem pull request merged: [6300](https://github.com/hackforla/website/pull/6300#event-11824529073) at 2024-02-15 09:27 PM PST -gaylem,2024-02-17T07:15:28Z,- gaylem submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1886489594) at 2024-02-16 11:15 PM PST -gaylem,2024-02-19T19:47:27Z,- gaylem assigned to issue: [5991](https://github.com/hackforla/website/issues/5991) at 2024-02-19 11:47 AM PST -gaylem,2024-02-19T19:48:03Z,- gaylem commented on issue: [5991](https://github.com/hackforla/website/issues/5991#issuecomment-1953077225) at 2024-02-19 11:48 AM PST -gaylem,2024-02-20T17:24:19Z,- gaylem commented on issue: [5991](https://github.com/hackforla/website/issues/5991#issuecomment-1954693240) at 2024-02-20 09:24 AM PST -gaylem,2024-02-20T17:33:41Z,- gaylem commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1954709017) at 2024-02-20 09:33 AM PST -gaylem,2024-02-20T17:44:07Z,- gaylem submitted pull request review: [6324](https://github.com/hackforla/website/pull/6324#pullrequestreview-1891088131) at 2024-02-20 09:44 AM PST -gaylem,2024-02-20T17:47:56Z,- gaylem commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1954738156) at 2024-02-20 09:47 AM PST -gaylem,2024-02-20T17:50:09Z,- gaylem commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1954745951) at 2024-02-20 09:50 AM PST -gaylem,2024-02-20T18:10:48Z,- gaylem submitted pull request review: [6322](https://github.com/hackforla/website/pull/6322#pullrequestreview-1891139190) at 2024-02-20 10:10 AM PST -gaylem,2024-02-21T06:29:33Z,- gaylem commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955979696) at 2024-02-20 10:29 PM PST -gaylem,2024-02-21T21:30:23Z,- gaylem commented on pull request: [6352](https://github.com/hackforla/website/pull/6352#issuecomment-1957991614) at 2024-02-21 01:30 PM PST -gaylem,2024-02-21T21:30:26Z,- gaylem commented on pull request: [6351](https://github.com/hackforla/website/pull/6351#issuecomment-1957992013) at 2024-02-21 01:30 PM PST -gaylem,2024-02-21T21:46:39Z,- gaylem submitted pull request review: [6352](https://github.com/hackforla/website/pull/6352#pullrequestreview-1894479186) at 2024-02-21 01:46 PM PST -gaylem,2024-02-21T21:56:35Z,- gaylem submitted pull request review: [6351](https://github.com/hackforla/website/pull/6351#pullrequestreview-1894492788) at 2024-02-21 01:56 PM PST -gaylem,2024-02-28T14:43:47Z,- gaylem commented on pull request: [6383](https://github.com/hackforla/website/pull/6383#issuecomment-1969137305) at 2024-02-28 06:43 AM PST -gaylem,2024-02-28T14:43:51Z,- gaylem commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1969137399) at 2024-02-28 06:43 AM PST -gaylem,2024-02-28T22:06:53Z,- gaylem submitted pull request review: [6383](https://github.com/hackforla/website/pull/6383#pullrequestreview-1907521136) at 2024-02-28 02:06 PM PST -gaylem,2024-02-28T22:15:17Z,- gaylem submitted pull request review: [6362](https://github.com/hackforla/website/pull/6362#pullrequestreview-1907532707) at 2024-02-28 02:15 PM PST -gaylem,2024-02-28T22:24:59Z,- gaylem commented on pull request: [6390](https://github.com/hackforla/website/pull/6390#issuecomment-1970022639) at 2024-02-28 02:24 PM PST -gaylem,2024-02-28T22:58:43Z,- gaylem submitted pull request review: [6390](https://github.com/hackforla/website/pull/6390#pullrequestreview-1907611416) at 2024-02-28 02:58 PM PST -gaylem,2024-02-28T23:10:24Z,- gaylem assigned to issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1839169663) at 2024-02-28 03:10 PM PST -gaylem,2024-02-28T23:11:22Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1970072440) at 2024-02-28 03:11 PM PST -gaylem,2024-02-29T16:30:42Z,- gaylem opened issue: [6397](https://github.com/hackforla/website/issues/6397) at 2024-02-29 08:30 AM PST -gaylem,2024-03-01T16:10:20Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1973463593) at 2024-03-01 08:10 AM PST -gaylem,2024-03-01T18:13:34Z,- gaylem commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-1973682123) at 2024-03-01 10:13 AM PST -gaylem,2024-03-02T15:14:11Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1974826346) at 2024-03-02 07:14 AM PST -gaylem,2024-03-02T15:16:55Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1974827105) at 2024-03-02 07:16 AM PST -gaylem,2024-03-06T23:12:15Z,- gaylem commented on pull request: [6436](https://github.com/hackforla/website/pull/6436#issuecomment-1982012691) at 2024-03-06 03:12 PM PST -gaylem,2024-03-06T23:12:21Z,- gaylem commented on pull request: [6435](https://github.com/hackforla/website/pull/6435#issuecomment-1982012789) at 2024-03-06 03:12 PM PST -gaylem,2024-03-06T23:23:33Z,- gaylem submitted pull request review: [6436](https://github.com/hackforla/website/pull/6436#pullrequestreview-1921026304) at 2024-03-06 03:23 PM PST -gaylem,2024-03-06T23:30:54Z,- gaylem submitted pull request review: [6435](https://github.com/hackforla/website/pull/6435#pullrequestreview-1921033414) at 2024-03-06 03:30 PM PST -gaylem,2024-03-06T23:32:07Z,- gaylem commented on pull request: [6433](https://github.com/hackforla/website/pull/6433#issuecomment-1982034322) at 2024-03-06 03:32 PM PST -gaylem,2024-03-06T23:44:52Z,- gaylem submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1921046079) at 2024-03-06 03:44 PM PST -gaylem,2024-03-06T23:48:09Z,- gaylem commented on pull request: [6431](https://github.com/hackforla/website/pull/6431#issuecomment-1982058298) at 2024-03-06 03:48 PM PST -gaylem,2024-03-06T23:48:19Z,- gaylem commented on pull request: [6417](https://github.com/hackforla/website/pull/6417#issuecomment-1982058447) at 2024-03-06 03:48 PM PST -gaylem,2024-03-07T00:09:07Z,- gaylem submitted pull request review: [6431](https://github.com/hackforla/website/pull/6431#pullrequestreview-1921067108) at 2024-03-06 04:09 PM PST -gaylem,2024-03-07T00:41:04Z,- gaylem submitted pull request review: [6417](https://github.com/hackforla/website/pull/6417#pullrequestreview-1921103998) at 2024-03-06 04:41 PM PST -gaylem,2024-03-07T00:51:28Z,- gaylem submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1921114991) at 2024-03-06 04:51 PM PST -gaylem,2024-03-07T01:42:14Z,- gaylem submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1921192959) at 2024-03-06 05:42 PM PST -gaylem,2024-03-07T01:56:32Z,- gaylem commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1982198269) at 2024-03-06 05:56 PM PST -gaylem,2024-03-07T14:21:20Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983607252) at 2024-03-07 06:21 AM PST -gaylem,2024-03-07T15:00:40Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983692505) at 2024-03-07 07:00 AM PST -gaylem,2024-03-07T15:07:06Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983710459) at 2024-03-07 07:07 AM PST -gaylem,2024-03-07T15:29:54Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983762477) at 2024-03-07 07:29 AM PST -gaylem,2024-03-08T01:41:34Z,- gaylem submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1923880459) at 2024-03-07 05:41 PM PST -gaylem,2024-03-08T21:05:23Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1986419244) at 2024-03-08 01:05 PM PST -gaylem,2024-03-13T18:32:19Z,- gaylem commented on pull request: [6458](https://github.com/hackforla/website/pull/6458#issuecomment-1995309008) at 2024-03-13 11:32 AM PDT -gaylem,2024-03-13T18:32:24Z,- gaylem commented on pull request: [6448](https://github.com/hackforla/website/pull/6448#issuecomment-1995309327) at 2024-03-13 11:32 AM PDT -gaylem,2024-03-13T19:45:45Z,- gaylem submitted pull request review: [6448](https://github.com/hackforla/website/pull/6448#pullrequestreview-1935074067) at 2024-03-13 12:45 PM PDT -gaylem,2024-03-13T20:57:39Z,- gaylem submitted pull request review: [6458](https://github.com/hackforla/website/pull/6458#pullrequestreview-1935194353) at 2024-03-13 01:57 PM PDT -gaylem,2024-03-13T21:35:26Z,- gaylem submitted pull request review: [6448](https://github.com/hackforla/website/pull/6448#pullrequestreview-1935258914) at 2024-03-13 02:35 PM PDT -gaylem,2024-03-20T02:17:44Z,- gaylem assigned to issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1986582600) at 2024-03-19 07:17 PM PDT -gaylem,2024-03-20T02:19:29Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2008570476) at 2024-03-19 07:19 PM PDT -gaylem,2024-03-20T22:38:44Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2010781311) at 2024-03-20 03:38 PM PDT -gaylem,2024-03-21T15:24:17Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2012624495) at 2024-03-21 08:24 AM PDT -gaylem,2024-03-22T02:22:47Z,- gaylem opened pull request: [6503](https://github.com/hackforla/website/pull/6503) at 2024-03-21 07:22 PM PDT -gaylem,2024-03-25T00:18:18Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017007368) at 2024-03-24 05:18 PM PDT -gaylem,2024-03-25T00:31:08Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017018193) at 2024-03-24 05:31 PM PDT -gaylem,2024-03-27T02:34:50Z,- gaylem commented on pull request: [6517](https://github.com/hackforla/website/pull/6517#issuecomment-2021810056) at 2024-03-26 07:34 PM PDT -gaylem,2024-03-27T15:27:59Z,- gaylem commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2023058767) at 2024-03-27 08:27 AM PDT -gaylem,2024-03-27T19:17:02Z,- gaylem submitted pull request review: [6517](https://github.com/hackforla/website/pull/6517#pullrequestreview-1964546393) at 2024-03-27 12:17 PM PDT -gaylem,2024-03-27T19:41:01Z,- gaylem commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2023827590) at 2024-03-27 12:41 PM PDT -gaylem,2024-03-27T21:10:16Z,- gaylem commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2023996097) at 2024-03-27 02:10 PM PDT -gaylem,2024-03-27T21:54:08Z,- gaylem submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1964837461) at 2024-03-27 02:54 PM PDT -gaylem,2024-03-27T22:02:45Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2024067640) at 2024-03-27 03:02 PM PDT -gaylem,2024-03-28T18:31:37Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2025861379) at 2024-03-28 11:31 AM PDT -gaylem,2024-03-28T20:30:11Z,- gaylem submitted pull request review: [6543](https://github.com/hackforla/website/pull/6543#pullrequestreview-1967220328) at 2024-03-28 01:30 PM PDT -gaylem,2024-03-28T20:43:55Z,- gaylem commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026082873) at 2024-03-28 01:43 PM PDT -gaylem,2024-03-28T21:49:20Z,- gaylem commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026191584) at 2024-03-28 02:49 PM PDT -gaylem,2024-03-29T14:49:56Z,- gaylem opened issue: [6548](https://github.com/hackforla/website/issues/6548) at 2024-03-29 07:49 AM PDT -gaylem,2024-03-29T14:55:28Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2027349578) at 2024-03-29 07:55 AM PDT -gaylem,2024-03-29T20:18:36Z,- gaylem assigned to issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1988828224) at 2024-03-29 01:18 PM PDT -gaylem,2024-03-29T20:18:59Z,- gaylem assigned to issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2027349578) at 2024-03-29 01:18 PM PDT -gaylem,2024-03-29T20:22:18Z,- gaylem submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1969570551) at 2024-03-29 01:22 PM PDT -gaylem,2024-03-29T21:41:12Z,- gaylem commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2027762141) at 2024-03-29 02:41 PM PDT -gaylem,2024-03-29T22:04:04Z,- gaylem commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2027777765) at 2024-03-29 03:04 PM PDT -gaylem,2024-03-30T18:51:55Z,- gaylem opened pull request: [6551](https://github.com/hackforla/website/pull/6551) at 2024-03-30 11:51 AM PDT -gaylem,2024-03-30T18:52:02Z,- gaylem pull request closed w/o merging: [6551](https://github.com/hackforla/website/pull/6551#event-12301448408) at 2024-03-30 11:52 AM PDT -gaylem,2024-03-30T18:52:15Z,- gaylem commented on pull request: [6551](https://github.com/hackforla/website/pull/6551#issuecomment-2028441052) at 2024-03-30 11:52 AM PDT -gaylem,2024-03-30T23:03:28Z,- gaylem opened issue: [6552](https://github.com/hackforla/website/issues/6552) at 2024-03-30 04:03 PM PDT -gaylem,2024-04-02T02:01:40Z,- gaylem assigned to issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2030940916) at 2024-04-01 07:01 PM PDT -gaylem,2024-04-02T02:11:01Z,- gaylem commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2030949807) at 2024-04-01 07:11 PM PDT -gaylem,2024-04-02T14:46:31Z,- gaylem commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2032248243) at 2024-04-02 07:46 AM PDT -gaylem,2024-04-02T14:47:46Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2032252820) at 2024-04-02 07:47 AM PDT -gaylem,2024-04-05T14:12:41Z,- gaylem commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2039912865) at 2024-04-05 07:12 AM PDT -gaylem,2024-04-05T14:21:09Z,- gaylem submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1983340492) at 2024-04-05 07:21 AM PDT -gaylem,2024-04-05T14:34:09Z,- gaylem commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2039959726) at 2024-04-05 07:34 AM PDT -gaylem,2024-04-05T14:50:19Z,- gaylem commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2039996985) at 2024-04-05 07:50 AM PDT -gaylem,2024-04-05T14:50:19Z,- gaylem closed issue as completed: [6489](https://github.com/hackforla/website/issues/6489#event-12375444222) at 2024-04-05 07:50 AM PDT -gaylem,2024-04-05T16:42:28Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2040239751) at 2024-04-05 09:42 AM PDT -gaylem,2024-04-05T19:52:31Z,- gaylem unassigned from issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2040529751) at 2024-04-05 12:52 PM PDT -gaylem,2024-04-05T19:54:30Z,- gaylem unassigned from issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2027777765) at 2024-04-05 12:54 PM PDT -gaylem,2024-04-05T20:15:32Z,- gaylem commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2040562049) at 2024-04-05 01:15 PM PDT -gaylem,2024-04-05T20:15:39Z,- gaylem submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1984114500) at 2024-04-05 01:15 PM PDT -gaylem,2024-04-05T23:52:11Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2040790973) at 2024-04-05 04:52 PM PDT -gaylem,2024-04-07T16:28:57Z,- gaylem commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2041522366) at 2024-04-07 09:28 AM PDT -gaylem,2024-04-10T17:27:02Z,- gaylem commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2048102569) at 2024-04-10 10:27 AM PDT -gaylem,2024-04-12T17:00:18Z,- gaylem closed issue by PR 6506: [5840](https://github.com/hackforla/website/issues/5840#event-12452039842) at 2024-04-12 10:00 AM PDT -gaylem,2024-04-12T17:05:44Z,- gaylem closed issue by PR 6549: [6196](https://github.com/hackforla/website/issues/6196#event-12452091940) at 2024-04-12 10:05 AM PDT -gaylem,2024-04-12T17:44:00Z,- gaylem commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2052202743) at 2024-04-12 10:44 AM PDT -gaylem,2024-04-12T17:45:02Z,- gaylem commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2052204419) at 2024-04-12 10:45 AM PDT -gaylem,2024-04-12T17:50:08Z,- gaylem assigned to issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2046335793) at 2024-04-12 10:50 AM PDT -gaylem,2024-04-12T17:51:27Z,- gaylem commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2052212789) at 2024-04-12 10:51 AM PDT -gaylem,2024-04-12T23:08:30Z,- gaylem closed issue by PR 6629: [6174](https://github.com/hackforla/website/issues/6174#event-12454960725) at 2024-04-12 04:08 PM PDT -gaylem,2024-04-12T23:14:12Z,- gaylem assigned to issue: [4752](https://github.com/hackforla/website/issues/4752#issuecomment-1776030382) at 2024-04-12 04:14 PM PDT -gaylem,2024-04-12T23:48:08Z,- gaylem opened issue: [6633](https://github.com/hackforla/website/issues/6633) at 2024-04-12 04:48 PM PDT -gaylem,2024-04-13T00:09:46Z,- gaylem commented on issue: [4752](https://github.com/hackforla/website/issues/4752#issuecomment-2052715567) at 2024-04-12 05:09 PM PDT -gaylem,2024-04-13T00:13:54Z,- gaylem closed issue as completed: [4752](https://github.com/hackforla/website/issues/4752#event-12455274972) at 2024-04-12 05:13 PM PDT -gaylem,2024-04-13T00:42:04Z,- gaylem opened issue: [6637](https://github.com/hackforla/website/issues/6637) at 2024-04-12 05:42 PM PDT -gaylem,2024-04-13T01:00:15Z,- gaylem commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2052785002) at 2024-04-12 06:00 PM PDT -gaylem,2024-04-13T01:00:17Z,- gaylem closed issue as completed: [6397](https://github.com/hackforla/website/issues/6397#event-12455398453) at 2024-04-12 06:00 PM PDT -gaylem,2024-04-13T01:03:18Z,- gaylem assigned to issue: [6397](https://github.com/hackforla/website/issues/6397#event-12455398453) at 2024-04-12 06:03 PM PDT -gaylem,2024-04-15T00:07:51Z,- gaylem unassigned from issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2041393563) at 2024-04-14 05:07 PM PDT -gaylem,2024-04-15T16:12:17Z,- gaylem opened issue: [6649](https://github.com/hackforla/website/issues/6649) at 2024-04-15 09:12 AM PDT -gaylem,2024-04-15T16:45:30Z,- gaylem commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2057349454) at 2024-04-15 09:45 AM PDT -gaylem,2024-04-16T00:39:57Z,- gaylem unassigned from issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2058018157) at 2024-04-15 05:39 PM PDT -gaylem,2024-04-16T01:02:59Z,- gaylem commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2058055037) at 2024-04-15 06:02 PM PDT -gaylem,2024-04-19T14:33:31Z,- gaylem commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2066714065) at 2024-04-19 07:33 AM PDT -gaylem,2024-04-19T22:47:17Z,- gaylem closed issue by PR 6659: [6539](https://github.com/hackforla/website/issues/6539#event-12545613065) at 2024-04-19 03:47 PM PDT -gaylem,2024-04-20T14:33:49Z,- gaylem opened issue: [6691](https://github.com/hackforla/website/issues/6691) at 2024-04-20 07:33 AM PDT -gaylem,2024-04-20T14:36:54Z,- gaylem assigned to issue: [6691](https://github.com/hackforla/website/issues/6691) at 2024-04-20 07:36 AM PDT -gaylem,2024-04-20T18:21:45Z,- gaylem opened pull request: [6692](https://github.com/hackforla/website/pull/6692) at 2024-04-20 11:21 AM PDT -gaylem,2024-04-20T20:00:14Z,- gaylem commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2067768469) at 2024-04-20 01:00 PM PDT -gaylem,2024-04-20T20:10:36Z,- gaylem commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2067770732) at 2024-04-20 01:10 PM PDT -gaylem,2024-04-21T19:03:33Z,- gaylem commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2068167566) at 2024-04-21 12:03 PM PDT -gaylem,2024-04-23T13:20:22Z,- gaylem commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2072308517) at 2024-04-23 06:20 AM PDT -gaylem,2024-04-23T17:58:25Z,- gaylem assigned to issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2073047735) at 2024-04-23 10:58 AM PDT -gaylem,2024-04-24T19:08:11Z,- gaylem unassigned from issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2073048654) at 2024-04-24 12:08 PM PDT -gaylem,2024-04-26T23:05:49Z,- gaylem closed issue by PR 6520: [6193](https://github.com/hackforla/website/issues/6193#event-12629137915) at 2024-04-26 04:05 PM PDT -gaylem,2024-04-28T17:14:00Z,- gaylem assigned to issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2081559554) at 2024-04-28 10:14 AM PDT -gaylem,2024-04-29T16:11:41Z,- gaylem commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2083137865) at 2024-04-29 09:11 AM PDT -gaylem,2024-04-29T16:12:00Z,- gaylem unassigned from issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2083137865) at 2024-04-29 09:12 AM PDT -gaylem,2024-04-30T14:03:57Z,- gaylem commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2085425110) at 2024-04-30 07:03 AM PDT -gaylem,2024-04-30T17:31:50Z,- gaylem unassigned from issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2072308517) at 2024-04-30 10:31 AM PDT -gaylem,2024-04-30T18:03:38Z,- gaylem submitted pull request review: [6777](https://github.com/hackforla/website/pull/6777#pullrequestreview-2032148319) at 2024-04-30 11:03 AM PDT -gaylem,2024-04-30T18:06:57Z,- gaylem commented on pull request: [6777](https://github.com/hackforla/website/pull/6777#issuecomment-2086337672) at 2024-04-30 11:06 AM PDT -gaylem,2024-04-30T23:31:29Z,- gaylem commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2087714803) at 2024-04-30 04:31 PM PDT -gaylem,2024-04-30T23:34:07Z,- gaylem assigned to issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2072308517) at 2024-04-30 04:34 PM PDT -gaylem,2024-05-02T12:11:50Z,- gaylem submitted pull request review: [6777](https://github.com/hackforla/website/pull/6777#pullrequestreview-2035573913) at 2024-05-02 05:11 AM PDT -gaylem,2024-05-02T12:12:01Z,- gaylem closed issue by PR 6777: [6775](https://github.com/hackforla/website/issues/6775#event-12682356399) at 2024-05-02 05:12 AM PDT -gaylem,2024-05-03T01:26:55Z,- gaylem submitted pull request review: [6804](https://github.com/hackforla/website/pull/6804#pullrequestreview-2037217017) at 2024-05-02 06:26 PM PDT -gaylem,2024-05-03T20:55:11Z,- gaylem closed issue by PR 6808: [6705](https://github.com/hackforla/website/issues/6705#event-12701068407) at 2024-05-03 01:55 PM PDT -gaylem,2024-05-06T13:25:53Z,- gaylem closed issue by PR 6692: [6691](https://github.com/hackforla/website/issues/6691#event-12715027731) at 2024-05-06 06:25 AM PDT -gaylem,2024-05-10T14:31:59Z,- gaylem closed issue by PR 6821: [6759](https://github.com/hackforla/website/issues/6759#event-12770555264) at 2024-05-10 07:31 AM PDT -gaylem,2024-05-10T21:39:44Z,- gaylem closed issue by PR 6841: [6717](https://github.com/hackforla/website/issues/6717#event-12774264060) at 2024-05-10 02:39 PM PDT -gaylem,2024-05-13T21:01:55Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2108793894) at 2024-05-13 02:01 PM PDT -gaylem,2024-05-14T23:03:28Z,- gaylem commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2111302403) at 2024-05-14 04:03 PM PDT -gaylem,2024-05-31T19:49:30Z,- gaylem closed issue by PR 6913: [6735](https://github.com/hackforla/website/issues/6735#event-13005179468) at 2024-05-31 12:49 PM PDT -gaylem,2024-05-31T19:50:11Z,- gaylem closed issue by PR 6900: [6731](https://github.com/hackforla/website/issues/6731#event-13005187238) at 2024-05-31 12:50 PM PDT -gdkoo,6034,SKILLS ISSUE -gdkoo,2024-01-03T03:48:42Z,- gdkoo opened issue: [6034](https://github.com/hackforla/website/issues/6034) at 2024-01-02 07:48 PM PST -gdkoo,2024-01-03T03:48:42Z,- gdkoo assigned to issue: [6034](https://github.com/hackforla/website/issues/6034) at 2024-01-02 07:48 PM PST -gdkoo,2024-03-06T01:52:46Z,- gdkoo reopened issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1979315506) at 2024-03-05 05:52 PM PST -gdkoo,2024-03-06T01:53:20Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1979936862) at 2024-03-05 05:53 PM PST -gdkoo,2024-03-18T02:35:07Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2002768944) at 2024-03-17 07:35 PM PDT -gdkoo,2024-03-21T06:10:52Z,- gdkoo assigned to issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007914581) at 2024-03-20 11:10 PM PDT -gdkoo,2024-03-22T03:51:11Z,- gdkoo commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2014305326) at 2024-03-21 08:51 PM PDT -gdkoo,2024-03-22T07:11:07Z,- gdkoo opened pull request: [6505](https://github.com/hackforla/website/pull/6505) at 2024-03-22 12:11 AM PDT -gdkoo,2024-03-22T07:17:44Z,- gdkoo commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2014491883) at 2024-03-22 12:17 AM PDT -gdkoo,2024-03-22T07:19:44Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2014494067) at 2024-03-22 12:19 AM PDT -gdkoo,2024-03-24T21:36:16Z,- gdkoo pull request merged: [6505](https://github.com/hackforla/website/pull/6505#event-12227638706) at 2024-03-24 02:36 PM PDT -gdkoo,2024-03-25T03:10:48Z,- gdkoo commented on pull request: [6505](https://github.com/hackforla/website/pull/6505#issuecomment-2017132269) at 2024-03-24 08:10 PM PDT -gdkoo,2024-03-25T03:16:03Z,- gdkoo assigned to issue: [6509](https://github.com/hackforla/website/issues/6509#issuecomment-2016720549) at 2024-03-24 08:16 PM PDT -gdkoo,2024-03-25T03:19:33Z,- gdkoo commented on issue: [6509](https://github.com/hackforla/website/issues/6509#issuecomment-2017138280) at 2024-03-24 08:19 PM PDT -gdkoo,2024-03-25T03:56:04Z,- gdkoo opened pull request: [6518](https://github.com/hackforla/website/pull/6518) at 2024-03-24 08:56 PM PDT -gdkoo,2024-03-28T18:32:21Z,- gdkoo pull request merged: [6518](https://github.com/hackforla/website/pull/6518#event-12285877731) at 2024-03-28 11:32 AM PDT -gdkoo,2024-03-29T03:48:09Z,- gdkoo closed issue as completed: [6466](https://github.com/hackforla/website/issues/6466#event-12290680130) at 2024-03-28 08:48 PM PDT -gdkoo,2024-03-29T03:48:46Z,- gdkoo reopened issue: [6466](https://github.com/hackforla/website/issues/6466#event-12290680130) at 2024-03-28 08:48 PM PDT -gdkoo,2024-03-29T03:50:27Z,- gdkoo commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2026591735) at 2024-03-28 08:50 PM PDT -gdkoo,2024-03-29T04:03:44Z,- gdkoo assigned to issue: [6450](https://github.com/hackforla/website/issues/6450#issuecomment-2009725259) at 2024-03-28 09:03 PM PDT -gdkoo,2024-03-29T04:05:58Z,- gdkoo commented on issue: [6450](https://github.com/hackforla/website/issues/6450#issuecomment-2026615083) at 2024-03-28 09:05 PM PDT -gdkoo,2024-03-29T04:27:40Z,- gdkoo opened pull request: [6547](https://github.com/hackforla/website/pull/6547) at 2024-03-28 09:27 PM PDT -gdkoo,2024-03-29T04:32:07Z,- gdkoo closed issue as completed: [6034](https://github.com/hackforla/website/issues/6034#event-12290961850) at 2024-03-28 09:32 PM PDT -gdkoo,2024-03-30T11:28:45Z,- gdkoo pull request merged: [6547](https://github.com/hackforla/website/pull/6547#event-12300410464) at 2024-03-30 04:28 AM PDT -gdkoo,2024-04-09T02:56:20Z,- gdkoo assigned to issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2041559199) at 2024-04-08 07:56 PM PDT -gdkoo,2024-04-09T02:58:21Z,- gdkoo commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2044065412) at 2024-04-08 07:58 PM PDT -gdkoo,2024-04-12T06:30:28Z,- gdkoo commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2051077099) at 2024-04-11 11:30 PM PDT -gdkoo,2024-04-21T13:36:02Z,- gdkoo commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2068046313) at 2024-04-21 06:36 AM PDT -gdkoo,2024-04-26T05:21:37Z,- gdkoo opened pull request: [6766](https://github.com/hackforla/website/pull/6766) at 2024-04-25 10:21 PM PDT -gdkoo,2024-04-29T05:20:05Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2081907546) at 2024-04-28 10:20 PM PDT -gdkoo,2024-04-29T05:31:27Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2081917563) at 2024-04-28 10:31 PM PDT -gdkoo,2024-04-30T13:34:06Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2085350690) at 2024-04-30 06:34 AM PDT -gdkoo,2024-05-09T04:05:51Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2101895145) at 2024-05-08 09:05 PM PDT -gdkoo,2024-05-16T03:33:44Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2113963120) at 2024-05-15 08:33 PM PDT -gdkoo,2024-06-19T07:37:47Z,- gdkoo pull request merged: [6766](https://github.com/hackforla/website/pull/6766#event-13211615291) at 2024-06-19 12:37 AM PDT -gdkoo,2024-08-15T03:51:19Z,- gdkoo assigned to issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2270010275) at 2024-08-14 08:51 PM PDT -gdkoo,2024-08-15T03:53:14Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2290517908) at 2024-08-14 08:53 PM PDT -gdkoo,2024-08-15T04:16:01Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2290539686) at 2024-08-14 09:16 PM PDT -gdkoo,2024-08-30T08:22:22Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2320464217) at 2024-08-30 01:22 AM PDT -gdkoo,2024-09-18T03:57:35Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2357443235) at 2024-09-17 08:57 PM PDT -gdkoo,2024-09-18T04:04:37Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2357449790) at 2024-09-17 09:04 PM PDT -gdkoo,2024-09-18T04:05:45Z,- gdkoo unassigned from issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2357449790) at 2024-09-17 09:05 PM PDT -ge-andrew,5360,SKILLS ISSUE -ge-andrew,2023-08-30T04:07:15Z,- ge-andrew opened issue: [5360](https://github.com/hackforla/website/issues/5360) at 2023-08-29 09:07 PM PDT -ge-andrew,2023-08-30T04:07:16Z,- ge-andrew assigned to issue: [5360](https://github.com/hackforla/website/issues/5360) at 2023-08-29 09:07 PM PDT -ge-andrew,2023-08-31T03:13:35Z,- ge-andrew assigned to issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1698560854) at 2023-08-30 08:13 PM PDT -ge-andrew,2023-09-01T18:58:17Z,- ge-andrew commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1703198802) at 2023-09-01 11:58 AM PDT -ge-andrew,2023-10-16T17:12:03Z,- ge-andrew unassigned from issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1761018592) at 2023-10-16 10:12 AM PDT -geedtd,3123,SKILLS ISSUE -geedtd,2022-05-11T03:21:37Z,- geedtd opened issue: [3123](https://github.com/hackforla/website/issues/3123) at 2022-05-10 08:21 PM PDT -geedtd,2022-05-19T00:37:32Z,- geedtd assigned to issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1126974285) at 2022-05-18 05:37 PM PDT -geedtd,2022-05-19T00:47:16Z,- geedtd assigned to issue: [2796](https://github.com/hackforla/website/issues/2796#issuecomment-1045528515) at 2022-05-18 05:47 PM PDT -geedtd,2022-05-19T00:55:11Z,- geedtd commented on issue: [2796](https://github.com/hackforla/website/issues/2796#issuecomment-1130881272) at 2022-05-18 05:55 PM PDT -geedtd,2022-05-19T00:57:20Z,- geedtd commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1130884337) at 2022-05-18 05:57 PM PDT -geedtd,2022-05-19T03:36:04Z,- geedtd opened pull request: [3159](https://github.com/hackforla/website/pull/3159) at 2022-05-18 08:36 PM PDT -geedtd,2022-05-19T03:48:07Z,- geedtd commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1131170304) at 2022-05-18 08:48 PM PDT -geedtd,2022-05-19T19:37:18Z,- geedtd commented on pull request: [3159](https://github.com/hackforla/website/pull/3159#issuecomment-1132124651) at 2022-05-19 12:37 PM PDT -geedtd,2022-05-20T16:05:33Z,- geedtd pull request merged: [3159](https://github.com/hackforla/website/pull/3159#event-6651908256) at 2022-05-20 09:05 AM PDT -geedtd,2022-05-20T19:07:33Z,- geedtd assigned to issue: [3105](https://github.com/hackforla/website/issues/3105#issuecomment-1116858255) at 2022-05-20 12:07 PM PDT -geedtd,2022-05-20T23:45:50Z,- geedtd opened pull request: [3163](https://github.com/hackforla/website/pull/3163) at 2022-05-20 04:45 PM PDT -geedtd,2022-05-20T23:51:04Z,- geedtd closed issue as completed: [3123](https://github.com/hackforla/website/issues/3123#event-6654087758) at 2022-05-20 04:51 PM PDT -geedtd,2022-05-21T00:49:17Z,- geedtd commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133486461) at 2022-05-20 05:49 PM PDT -geedtd,2022-05-21T15:10:36Z,- geedtd pull request merged: [3163](https://github.com/hackforla/website/pull/3163#event-6655046261) at 2022-05-21 08:10 AM PDT -geedtd,2022-05-24T07:11:54Z,- geedtd assigned to issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1120444851) at 2022-05-24 12:11 AM PDT -geedtd,2022-07-25T21:40:54Z,- geedtd unassigned from issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1194666034) at 2022-07-25 02:40 PM PDT -geedtd,2022-08-11T09:47:46Z,- geedtd unassigned from issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194669406) at 2022-08-11 02:47 AM PDT -geedtd,2022-08-15T20:33:00Z,- geedtd assigned to issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-907766739) at 2022-08-15 01:33 PM PDT -geedtd,2022-08-17T21:07:28Z,- geedtd commented on issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-1218491333) at 2022-08-17 02:07 PM PDT -geedtd,2022-08-22T06:39:33Z,- geedtd opened pull request: [3480](https://github.com/hackforla/website/pull/3480) at 2022-08-21 11:39 PM PDT -geedtd,2022-08-24T00:43:21Z,- geedtd pull request merged: [3480](https://github.com/hackforla/website/pull/3480#event-7246418609) at 2022-08-23 05:43 PM PDT -geedtd,2022-09-16T00:22:56Z,- geedtd assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1178645901) at 2022-09-15 05:22 PM PDT -geedtd,2022-09-16T00:25:10Z,- geedtd commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1248781511) at 2022-09-15 05:25 PM PDT -geedtd,2022-11-03T20:53:09Z,- geedtd unassigned from issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1302649451) at 2022-11-03 01:53 PM PDT -geedtd,2022-11-06T19:15:21Z,- geedtd unassigned from issue: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-11-06 11:15 AM PST -geedtd,2022-11-06T19:30:28Z,- geedtd assigned to issue: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-11-06 11:30 AM PST -geedtd,2023-03-19T18:15:17Z,- geedtd assigned to issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194669406) at 2023-03-19 11:15 AM PDT -Georgema20,2559,SKILLS ISSUE -Georgema20,2021-12-08T03:58:55Z,- Georgema20 assigned to issue: [2559](https://github.com/hackforla/website/issues/2559) at 2021-12-07 07:58 PM PST -Georgema20,2021-12-12T16:06:09Z,- Georgema20 assigned to issue: [2348](https://github.com/hackforla/website/issues/2348#issuecomment-938228116) at 2021-12-12 08:06 AM PST -Georgema20,2021-12-12T23:04:54Z,- Georgema20 opened pull request: [2582](https://github.com/hackforla/website/pull/2582) at 2021-12-12 03:04 PM PST -Georgema20,2021-12-12T23:20:49Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-991991000) at 2021-12-12 03:20 PM PST -Georgema20,2021-12-13T00:45:57Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-992009957) at 2021-12-12 04:45 PM PST -Georgema20,2021-12-13T00:57:05Z,- Georgema20 assigned to issue: [2087](https://github.com/hackforla/website/issues/2087) at 2021-12-12 04:57 PM PST -Georgema20,2021-12-13T16:14:54Z,- Georgema20 commented on pull request: [2582](https://github.com/hackforla/website/pull/2582#issuecomment-992636392) at 2021-12-13 08:14 AM PST -Georgema20,2021-12-13T17:20:52Z,- Georgema20 opened pull request: [2584](https://github.com/hackforla/website/pull/2584) at 2021-12-13 09:20 AM PST -Georgema20,2021-12-13T19:54:13Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-992827312) at 2021-12-13 11:54 AM PST -Georgema20,2021-12-14T01:53:45Z,- Georgema20 pull request merged: [2582](https://github.com/hackforla/website/pull/2582#event-5760937845) at 2021-12-13 05:53 PM PST -Georgema20,2021-12-14T04:08:57Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-993138647) at 2021-12-13 08:08 PM PST -Georgema20,2021-12-16T17:58:53Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996050046) at 2021-12-16 09:58 AM PST -Georgema20,2021-12-16T20:42:08Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996179156) at 2021-12-16 12:42 PM PST -Georgema20,2021-12-17T02:35:00Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996387158) at 2021-12-16 06:35 PM PST -Georgema20,2021-12-17T02:37:55Z,- Georgema20 closed issue as completed: [2559](https://github.com/hackforla/website/issues/2559#event-5782087807) at 2021-12-16 06:37 PM PST -Georgema20,2021-12-17T18:12:45Z,- Georgema20 pull request merged: [2584](https://github.com/hackforla/website/pull/2584#event-5786162524) at 2021-12-17 10:12 AM PST -Georgema20,2021-12-22T19:35:52Z,- Georgema20 assigned to issue: [2544](https://github.com/hackforla/website/issues/2544#issuecomment-989575961) at 2021-12-22 11:35 AM PST -Georgema20,2021-12-22T20:28:10Z,- Georgema20 opened pull request: [2620](https://github.com/hackforla/website/pull/2620) at 2021-12-22 12:28 PM PST -Georgema20,2021-12-24T21:53:35Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000937588) at 2021-12-24 01:53 PM PST -Georgema20,2021-12-24T22:28:09Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000941319) at 2021-12-24 02:28 PM PST -Georgema20,2021-12-24T22:30:02Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000941467) at 2021-12-24 02:30 PM PST -Georgema20,2021-12-24T22:49:57Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000943060) at 2021-12-24 02:49 PM PST -Georgema20,2021-12-25T02:23:27Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000960597) at 2021-12-24 06:23 PM PST -Georgema20,2021-12-27T06:27:35Z,- Georgema20 pull request merged: [2620](https://github.com/hackforla/website/pull/2620#event-5816672769) at 2021-12-26 10:27 PM PST -Georgema20,2021-12-28T15:57:18Z,- Georgema20 assigned to issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-997490870) at 2021-12-28 07:57 AM PST -Georgema20,2021-12-28T16:53:11Z,- Georgema20 opened pull request: [2640](https://github.com/hackforla/website/pull/2640) at 2021-12-28 08:53 AM PST -Georgema20,2021-12-29T21:06:11Z,- Georgema20 commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1002776157) at 2021-12-29 01:06 PM PST -Georgema20,2021-12-29T21:08:16Z,- Georgema20 commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1002776760) at 2021-12-29 01:08 PM PST -Georgema20,2021-12-30T15:20:50Z,- Georgema20 commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1003073608) at 2021-12-30 07:20 AM PST -Georgema20,2021-12-31T00:45:12Z,- Georgema20 commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1003225274) at 2021-12-30 04:45 PM PST -Georgema20,2021-12-31T02:09:31Z,- Georgema20 commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1003240687) at 2021-12-30 06:09 PM PST -Georgema20,2022-01-01T19:38:02Z,- Georgema20 submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-842356148) at 2022-01-01 11:38 AM PST -Georgema20,2022-01-01T19:38:17Z,- Georgema20 commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1003607123) at 2022-01-01 11:38 AM PST -Georgema20,2022-01-01T19:39:23Z,- Georgema20 submitted pull request review: [2611](https://github.com/hackforla/website/pull/2611#pullrequestreview-842356199) at 2022-01-01 11:39 AM PST -Georgema20,2022-01-01T19:39:28Z,- Georgema20 commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003607241) at 2022-01-01 11:39 AM PST -Georgema20,2022-01-01T23:46:30Z,- Georgema20 pull request closed w/o merging: [2640](https://github.com/hackforla/website/pull/2640#event-5832150541) at 2022-01-01 03:46 PM PST -Georgema20,2022-01-01T23:53:03Z,- Georgema20 unassigned from issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-01 03:53 PM PST -Georgema20,2022-01-04T15:47:58Z,- Georgema20 assigned to issue: [2598](https://github.com/hackforla/website/issues/2598#issuecomment-997095473) at 2022-01-04 07:47 AM PST -Georgema20,2022-01-07T03:45:21Z,- Georgema20 opened pull request: [2665](https://github.com/hackforla/website/pull/2665) at 2022-01-06 07:45 PM PST -Georgema20,2022-01-11T23:01:17Z,- Georgema20 commented on pull request: [2665](https://github.com/hackforla/website/pull/2665#issuecomment-1010443344) at 2022-01-11 03:01 PM PST -Georgema20,2022-01-20T01:08:30Z,- Georgema20 commented on pull request: [2665](https://github.com/hackforla/website/pull/2665#issuecomment-1017017775) at 2022-01-19 05:08 PM PST -Georgema20,2022-01-20T18:30:20Z,- Georgema20 pull request merged: [2665](https://github.com/hackforla/website/pull/2665#event-5927247618) at 2022-01-20 10:30 AM PST -Georgema20,2022-01-21T03:09:41Z,- Georgema20 assigned to issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-20 07:09 PM PST -Georgema20,2022-01-21T03:09:45Z,- Georgema20 unassigned from issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-20 07:09 PM PST -Georgema20,2022-01-21T03:31:15Z,- Georgema20 assigned to issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-20 07:31 PM PST -Georgema20,2022-01-21T03:34:11Z,- Georgema20 opened pull request: [2710](https://github.com/hackforla/website/pull/2710) at 2022-01-20 07:34 PM PST -Georgema20,2022-01-21T03:42:30Z,- Georgema20 submitted pull request review: [2696](https://github.com/hackforla/website/pull/2696#pullrequestreview-859081217) at 2022-01-20 07:42 PM PST -Georgema20,2022-01-21T18:57:10Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1018776842) at 2022-01-21 10:57 AM PST -Georgema20,2022-01-21T18:58:02Z,- Georgema20 closed issue as completed: [2559](https://github.com/hackforla/website/issues/2559#event-5934126770) at 2022-01-21 10:58 AM PST -Georgema20,2022-01-23T00:21:45Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1019382859) at 2022-01-22 04:21 PM PST -Georgema20,2022-01-26T19:59:23Z,- Georgema20 commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1022552907) at 2022-01-26 11:59 AM PST -Georgema20,2022-01-26T19:59:51Z,- Georgema20 commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1022553226) at 2022-01-26 11:59 AM PST -Georgema20,2022-01-26T20:49:55Z,- Georgema20 commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1022590352) at 2022-01-26 12:49 PM PST -Georgema20,2022-01-26T21:02:02Z,- Georgema20 commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1022598849) at 2022-01-26 01:02 PM PST -Georgema20,2022-01-29T09:01:59Z,- Georgema20 pull request merged: [2710](https://github.com/hackforla/website/pull/2710#event-5974796380) at 2022-01-29 01:01 AM PST -Georgema20,2022-02-02T21:41:08Z,- Georgema20 assigned to issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1024815778) at 2022-02-02 01:41 PM PST -Georgema20,2022-03-05T08:19:56Z,- Georgema20 unassigned from issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1059719546) at 2022-03-05 12:19 AM PST -GeorgeSu,2019-12-04T04:08:05Z,- GeorgeSu commented on issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-561467691) at 2019-12-03 08:08 PM PST -GeorgeSu,2019-12-04T04:24:34Z,- GeorgeSu opened pull request: [211](https://github.com/hackforla/website/pull/211) at 2019-12-03 08:24 PM PST -GeorgeSu,2019-12-04T04:35:04Z,- GeorgeSu opened pull request: [212](https://github.com/hackforla/website/pull/212) at 2019-12-03 08:35 PM PST -GeorgeSu,2019-12-04T21:39:31Z,- GeorgeSu pull request merged: [212](https://github.com/hackforla/website/pull/212#event-2855634142) at 2019-12-04 01:39 PM PST -GeorgeSu,2019-12-04T21:50:13Z,- GeorgeSu assigned to issue: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:50 PM PST -GeorgeSu,2019-12-11T03:22:05Z,- GeorgeSu pull request merged: [211](https://github.com/hackforla/website/pull/211#event-2872808609) at 2019-12-10 07:22 PM PST -GeorgeSu,2019-12-24T23:17:26Z,- GeorgeSu unassigned from issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-561855115) at 2019-12-24 03:17 PM PST -ggrrettcchhenn,2021-01-18T23:33:08Z,- ggrrettcchhenn commented on issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762513526) at 2021-01-18 03:33 PM PST -ggrrettcchhenn,2021-02-26T00:40:21Z,- ggrrettcchhenn commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-786327914) at 2021-02-25 04:40 PM PST -ggrrettcchhenn,2021-03-18T03:59:49Z,- ggrrettcchhenn opened issue: [1249](https://github.com/hackforla/website/issues/1249) at 2021-03-17 08:59 PM PDT -ggrrettcchhenn,2021-03-18T19:41:13Z,- ggrrettcchhenn assigned to issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-802225984) at 2021-03-18 12:41 PM PDT -ggrrettcchhenn,2021-04-06T04:40:53Z,- ggrrettcchhenn commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-813815899) at 2021-04-05 09:40 PM PDT -ggrrettcchhenn,2021-04-06T17:33:48Z,- ggrrettcchhenn commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-814302412) at 2021-04-06 10:33 AM PDT -ggrrettcchhenn,2021-05-18T03:37:07Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-842800413) at 2021-05-17 08:37 PM PDT -ggrrettcchhenn,2021-05-25T16:16:40Z,- ggrrettcchhenn opened issue: [1629](https://github.com/hackforla/website/issues/1629) at 2021-05-25 09:16 AM PDT -ggrrettcchhenn,2021-05-25T16:25:45Z,- ggrrettcchhenn commented on issue: [1629](https://github.com/hackforla/website/issues/1629#issuecomment-848023478) at 2021-05-25 09:25 AM PDT -ggrrettcchhenn,2021-06-11T17:10:42Z,- ggrrettcchhenn commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859723531) at 2021-06-11 10:10 AM PDT -ggrrettcchhenn,2021-06-11T17:10:42Z,- ggrrettcchhenn commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859723531) at 2021-06-11 10:10 AM PDT -ggrrettcchhenn,2021-06-13T19:23:22Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860258322) at 2021-06-13 12:23 PM PDT -ggrrettcchhenn,2021-06-13T19:46:27Z,- ggrrettcchhenn assigned to issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860258322) at 2021-06-13 12:46 PM PDT -ggrrettcchhenn,2021-06-16T01:52:10Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-861948132) at 2021-06-15 06:52 PM PDT -ggrrettcchhenn,2021-06-18T17:36:01Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-864184487) at 2021-06-18 10:36 AM PDT -GinaCastromonte,6340,SKILLS ISSUE -GinaCastromonte,2024-02-21T03:42:37Z,- GinaCastromonte opened issue: [6340](https://github.com/hackforla/website/issues/6340) at 2024-02-20 07:42 PM PST -GinaCastromonte,2024-02-21T04:11:22Z,- GinaCastromonte assigned to issue: [6340](https://github.com/hackforla/website/issues/6340) at 2024-02-20 08:11 PM PST -GioMogi,6343,SKILLS ISSUE -GioMogi,2024-02-21T03:49:06Z,- GioMogi opened issue: [6343](https://github.com/hackforla/website/issues/6343) at 2024-02-20 07:49 PM PST -GioMogi,2024-02-21T03:49:11Z,- GioMogi assigned to issue: [6343](https://github.com/hackforla/website/issues/6343) at 2024-02-20 07:49 PM PST -giroz,3459,SKILLS ISSUE -giroz,2022-08-10T03:35:13Z,- giroz opened issue: [3459](https://github.com/hackforla/website/issues/3459) at 2022-08-09 08:35 PM PDT -giroz,2022-08-12T02:35:51Z,- giroz assigned to issue: [2821](https://github.com/hackforla/website/issues/2821#issuecomment-1046372753) at 2022-08-11 07:35 PM PDT -giroz,2022-08-13T05:17:55Z,- giroz commented on issue: [2821](https://github.com/hackforla/website/issues/2821#issuecomment-1213719284) at 2022-08-12 10:17 PM PDT -giroz,2022-08-14T22:32:48Z,- giroz assigned to issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1210112001) at 2022-08-14 03:32 PM PDT -giroz,2022-08-19T03:57:42Z,- giroz opened pull request: [3475](https://github.com/hackforla/website/pull/3475) at 2022-08-18 08:57 PM PDT -giroz,2022-08-19T21:07:44Z,- giroz pull request merged: [3475](https://github.com/hackforla/website/pull/3475#event-7225039802) at 2022-08-19 02:07 PM PDT -giroz,2022-08-26T03:26:02Z,- giroz commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1228009904) at 2022-08-25 08:26 PM PDT -giroz,2022-08-29T00:27:59Z,- giroz commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229598402) at 2022-08-28 05:27 PM PDT -giroz,2022-09-02T00:37:34Z,- giroz commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1234942863) at 2022-09-01 05:37 PM PDT -giroz,2022-09-04T18:18:37Z,- giroz submitted pull request review: [3515](https://github.com/hackforla/website/pull/3515#pullrequestreview-1095699926) at 2022-09-04 11:18 AM PDT -giroz,2022-09-04T18:25:18Z,- giroz commented on pull request: [3518](https://github.com/hackforla/website/pull/3518#issuecomment-1236391900) at 2022-09-04 11:25 AM PDT -giroz,2022-09-04T18:46:21Z,- giroz submitted pull request review: [3518](https://github.com/hackforla/website/pull/3518#pullrequestreview-1095702333) at 2022-09-04 11:46 AM PDT -giroz,2022-09-08T09:02:26Z,- giroz commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1240434926) at 2022-09-08 02:02 AM PDT -giroz,2022-09-08T09:50:01Z,- giroz submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1100430779) at 2022-09-08 02:50 AM PDT -giroz,2022-09-14T01:24:48Z,- giroz commented on pull request: [3551](https://github.com/hackforla/website/pull/3551#issuecomment-1246116191) at 2022-09-13 06:24 PM PDT -giroz,2022-09-16T17:06:17Z,- giroz submitted pull request review: [3551](https://github.com/hackforla/website/pull/3551#pullrequestreview-1110981598) at 2022-09-16 10:06 AM PDT -giroz,2022-09-18T01:25:50Z,- giroz commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1250170466) at 2022-09-17 06:25 PM PDT -giroz,2022-09-18T02:06:23Z,- giroz submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1111483501) at 2022-09-17 07:06 PM PDT -giroz,2022-09-21T02:28:29Z,- giroz commented on pull request: [3568](https://github.com/hackforla/website/pull/3568#issuecomment-1253128842) at 2022-09-20 07:28 PM PDT -giroz,2022-09-21T03:15:06Z,- giroz submitted pull request review: [3568](https://github.com/hackforla/website/pull/3568#pullrequestreview-1114704014) at 2022-09-20 08:15 PM PDT -giroz,2022-09-25T05:46:32Z,- giroz commented on pull request: [3579](https://github.com/hackforla/website/pull/3579#issuecomment-1257126306) at 2022-09-24 10:46 PM PDT -giroz,2022-09-25T21:34:54Z,- giroz submitted pull request review: [3579](https://github.com/hackforla/website/pull/3579#pullrequestreview-1119457553) at 2022-09-25 02:34 PM PDT -giroz,2022-09-30T02:39:07Z,- giroz commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1263036009) at 2022-09-29 07:39 PM PDT -giroz,2022-09-30T15:26:43Z,- giroz submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1127000392) at 2022-09-30 08:26 AM PDT -giroz,2022-10-12T19:47:35Z,- giroz commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276658818) at 2022-10-12 12:47 PM PDT -giroz,2022-10-14T06:50:34Z,- giroz submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1141902446) at 2022-10-13 11:50 PM PDT -giroz,2022-10-16T17:20:08Z,- giroz commented on pull request: [3623](https://github.com/hackforla/website/pull/3623#issuecomment-1280013563) at 2022-10-16 10:20 AM PDT -giroz,2022-10-16T17:21:42Z,- giroz commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1280013842) at 2022-10-16 10:21 AM PDT -giroz,2022-10-17T00:07:55Z,- giroz submitted pull request review: [3623](https://github.com/hackforla/website/pull/3623#pullrequestreview-1143386046) at 2022-10-16 05:07 PM PDT -giroz,2022-10-26T02:32:27Z,- giroz commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1291414298) at 2022-10-25 07:32 PM PDT -giroz,2022-10-27T01:08:10Z,- giroz submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1157465981) at 2022-10-26 06:08 PM PDT -giroz,2022-10-27T01:27:33Z,- giroz submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1157476743) at 2022-10-26 06:27 PM PDT -giroz,2022-10-29T18:02:12Z,- giroz submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1161023527) at 2022-10-29 11:02 AM PDT -giroz,2022-10-30T17:20:01Z,- giroz commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1296307054) at 2022-10-30 10:20 AM PDT -giroz,2022-10-30T17:20:46Z,- giroz commented on pull request: [3676](https://github.com/hackforla/website/pull/3676#issuecomment-1296307236) at 2022-10-30 10:20 AM PDT -giroz,2022-10-31T04:40:44Z,- giroz submitted pull request review: [3676](https://github.com/hackforla/website/pull/3676#pullrequestreview-1161318776) at 2022-10-30 09:40 PM PDT -giroz,2022-10-31T05:06:44Z,- giroz submitted pull request review: [3675](https://github.com/hackforla/website/pull/3675#pullrequestreview-1161331324) at 2022-10-30 10:06 PM PDT -giroz,2022-11-18T01:15:57Z,- giroz commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319425892) at 2022-11-17 05:15 PM PST -giroz,2022-11-19T00:07:00Z,- giroz submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186959088) at 2022-11-18 04:07 PM PST -giroz,2022-11-20T18:21:49Z,- giroz commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321206797) at 2022-11-20 10:21 AM PST -giroz,2022-11-23T01:34:55Z,- giroz submitted pull request review: [3733](https://github.com/hackforla/website/pull/3733#pullrequestreview-1190955153) at 2022-11-22 05:34 PM PST -githelsui,7968,SKILLS ISSUE -githelsui,2025-03-04T03:59:32Z,- githelsui opened issue: [7968](https://github.com/hackforla/website/issues/7968) at 2025-03-03 07:59 PM PST -githelsui,2025-03-04T04:00:18Z,- githelsui assigned to issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2696131209) at 2025-03-03 08:00 PM PST -githelsui,2025-03-04T04:12:09Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2696143694) at 2025-03-03 08:12 PM PST -githelsui,2025-03-12T02:20:35Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2716222393) at 2025-03-11 07:20 PM PDT -githelsui,2025-03-16T05:23:06Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2727202605) at 2025-03-15 10:23 PM PDT -githelsui,2025-03-16T05:24:39Z,- githelsui assigned to issue: [7939](https://github.com/hackforla/website/issues/7939) at 2025-03-15 10:24 PM PDT -githelsui,2025-03-16T05:28:23Z,- githelsui commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2727204177) at 2025-03-15 10:28 PM PDT -githelsui,2025-03-16T05:29:15Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2727204760) at 2025-03-15 10:29 PM PDT -githelsui,2025-04-06T02:54:39Z,- githelsui opened pull request: [8047](https://github.com/hackforla/website/pull/8047) at 2025-04-05 07:54 PM PDT -githelsui,2025-04-06T02:56:15Z,- githelsui commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2781190209) at 2025-04-05 07:56 PM PDT -githelsui,2025-04-13T03:24:44Z,- githelsui pull request closed w/o merging: [8047](https://github.com/hackforla/website/pull/8047#event-17237023250) at 2025-04-12 08:24 PM PDT -githelsui,2025-04-13T03:31:20Z,- githelsui opened pull request: [8062](https://github.com/hackforla/website/pull/8062) at 2025-04-12 08:31 PM PDT -githelsui,2025-04-13T03:33:17Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2799574148) at 2025-04-12 08:33 PM PDT -githelsui,2025-04-16T14:51:09Z,- githelsui pull request merged: [8062](https://github.com/hackforla/website/pull/8062#event-17290796859) at 2025-04-16 07:51 AM PDT -githelsui,2025-04-27T03:34:58Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2832940881) at 2025-04-26 08:34 PM PDT -githelsui,2025-04-27T03:34:58Z,- githelsui closed issue as completed: [7968](https://github.com/hackforla/website/issues/7968#event-17420699623) at 2025-04-26 08:34 PM PDT -githelsui,2025-05-06T20:46:21Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2855933292) at 2025-05-06 01:46 PM PDT -githelsui,2025-05-06T20:48:49Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2855938592) at 2025-05-06 01:48 PM PDT -github-actions,2021-07-18T05:54:41Z,- github-actions commented on pull request: [1966](https://github.com/hackforla/website/pull/1966#issuecomment-882003616) at 2021-07-17 10:54 PM PDT -github-actions,2021-07-18T17:16:19Z,- github-actions commented on pull request: [1967](https://github.com/hackforla/website/pull/1967#issuecomment-882089546) at 2021-07-18 10:16 AM PDT -github-actions,2021-07-19T12:58:36Z,- github-actions commented on pull request: [1971](https://github.com/hackforla/website/pull/1971#issuecomment-882525393) at 2021-07-19 05:58 AM PDT -github-actions,2021-07-19T18:38:23Z,- github-actions commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-882771162) at 2021-07-19 11:38 AM PDT -github-actions,2021-07-20T04:05:20Z,- github-actions commented on pull request: [1986](https://github.com/hackforla/website/pull/1986#issuecomment-883034489) at 2021-07-19 09:05 PM PDT -github-actions,2021-07-20T23:52:07Z,- github-actions commented on pull request: [1990](https://github.com/hackforla/website/pull/1990#issuecomment-883778596) at 2021-07-20 04:52 PM PDT -github-actions,2021-07-21T04:42:35Z,- github-actions commented on pull request: [1991](https://github.com/hackforla/website/pull/1991#issuecomment-883883062) at 2021-07-20 09:42 PM PDT -github-actions,2021-07-22T19:58:50Z,- github-actions commented on pull request: [1999](https://github.com/hackforla/website/pull/1999#issuecomment-885193597) at 2021-07-22 12:58 PM PDT -github-actions,2021-07-23T01:57:42Z,- github-actions commented on pull request: [2001](https://github.com/hackforla/website/pull/2001#issuecomment-885348162) at 2021-07-22 06:57 PM PDT -github-actions,2021-07-23T02:48:46Z,- github-actions commented on pull request: [2002](https://github.com/hackforla/website/pull/2002#issuecomment-885362561) at 2021-07-22 07:48 PM PDT -github-actions,2021-07-23T03:43:53Z,- github-actions commented on pull request: [2003](https://github.com/hackforla/website/pull/2003#issuecomment-885378024) at 2021-07-22 08:43 PM PDT -github-actions,2021-07-23T05:43:20Z,- github-actions commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-885413651) at 2021-07-22 10:43 PM PDT -github-actions,2021-07-24T04:23:50Z,- github-actions commented on pull request: [2005](https://github.com/hackforla/website/pull/2005#issuecomment-885997449) at 2021-07-23 09:23 PM PDT -github-actions,2021-07-24T16:34:05Z,- github-actions commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-886077014) at 2021-07-24 09:34 AM PDT -github-actions,2021-07-26T17:55:02Z,- github-actions commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-886907045) at 2021-07-26 10:55 AM PDT -github-actions,2021-07-27T01:13:50Z,- github-actions commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-887134177) at 2021-07-26 06:13 PM PDT -github-actions,2021-07-30T22:45:52Z,- github-actions commented on pull request: [2022](https://github.com/hackforla/website/pull/2022#issuecomment-890224208) at 2021-07-30 03:45 PM PDT -github-actions,2021-07-31T02:24:50Z,- github-actions commented on pull request: [2024](https://github.com/hackforla/website/pull/2024#issuecomment-890278511) at 2021-07-30 07:24 PM PDT -github-actions,2021-08-01T04:11:37Z,- github-actions commented on pull request: [2028](https://github.com/hackforla/website/pull/2028#issuecomment-890445667) at 2021-07-31 09:11 PM PDT -github-actions,2021-08-01T21:35:18Z,- github-actions commented on pull request: [2030](https://github.com/hackforla/website/pull/2030#issuecomment-890590522) at 2021-08-01 02:35 PM PDT -github-actions,2021-08-01T22:29:54Z,- github-actions commented on pull request: [2031](https://github.com/hackforla/website/pull/2031#issuecomment-890597307) at 2021-08-01 03:29 PM PDT -github-actions,2021-08-02T18:58:19Z,- github-actions commented on pull request: [2036](https://github.com/hackforla/website/pull/2036#issuecomment-891256807) at 2021-08-02 11:58 AM PDT -github-actions,2021-08-03T08:15:33Z,- github-actions commented on pull request: [2038](https://github.com/hackforla/website/pull/2038#issuecomment-891637478) at 2021-08-03 01:15 AM PDT -github-actions,2021-08-03T15:31:57Z,- github-actions commented on pull request: [2039](https://github.com/hackforla/website/pull/2039#issuecomment-891945528) at 2021-08-03 08:31 AM PDT -github-actions,2021-08-04T01:39:02Z,- github-actions commented on pull request: [2059](https://github.com/hackforla/website/pull/2059#issuecomment-892291302) at 2021-08-03 06:39 PM PDT -github-actions,2021-08-04T02:05:15Z,- github-actions commented on pull request: [2060](https://github.com/hackforla/website/pull/2060#issuecomment-892301128) at 2021-08-03 07:05 PM PDT -github-actions,2021-08-04T18:27:11Z,- github-actions commented on pull request: [2062](https://github.com/hackforla/website/pull/2062#issuecomment-892876977) at 2021-08-04 11:27 AM PDT -github-actions,2021-08-08T19:41:44Z,- github-actions commented on pull request: [2072](https://github.com/hackforla/website/pull/2072#issuecomment-894845410) at 2021-08-08 12:41 PM PDT -github-actions,2021-08-09T05:34:34Z,- github-actions commented on pull request: [2074](https://github.com/hackforla/website/pull/2074#issuecomment-894962758) at 2021-08-08 10:34 PM PDT -github-actions,2021-08-11T01:01:26Z,- github-actions commented on pull request: [2098](https://github.com/hackforla/website/pull/2098#issuecomment-896414517) at 2021-08-10 06:01 PM PDT -github-actions,2021-08-11T22:10:26Z,- github-actions commented on pull request: [2102](https://github.com/hackforla/website/pull/2102#issuecomment-897195025) at 2021-08-11 03:10 PM PDT -github-actions,2021-08-12T05:01:20Z,- github-actions commented on pull request: [2103](https://github.com/hackforla/website/pull/2103#issuecomment-897349837) at 2021-08-11 10:01 PM PDT -github-actions,2021-08-13T03:55:23Z,- github-actions commented on pull request: [2107](https://github.com/hackforla/website/pull/2107#issuecomment-898172846) at 2021-08-12 08:55 PM PDT -github-actions,2021-08-14T02:57:29Z,- github-actions commented on pull request: [2115](https://github.com/hackforla/website/pull/2115#issuecomment-898805116) at 2021-08-13 07:57 PM PDT -github-actions,2021-08-15T00:07:41Z,- github-actions commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-898973894) at 2021-08-14 05:07 PM PDT -github-actions,2021-08-15T05:46:23Z,- github-actions commented on pull request: [2119](https://github.com/hackforla/website/pull/2119#issuecomment-898999402) at 2021-08-14 10:46 PM PDT -github-actions,2021-08-15T20:35:15Z,- github-actions commented on pull request: [2120](https://github.com/hackforla/website/pull/2120#issuecomment-899106450) at 2021-08-15 01:35 PM PDT -github-actions,2021-08-15T23:52:57Z,- github-actions commented on pull request: [2121](https://github.com/hackforla/website/pull/2121#issuecomment-899129973) at 2021-08-15 04:52 PM PDT -github-actions,2021-08-16T23:19:51Z,- github-actions commented on pull request: [2123](https://github.com/hackforla/website/pull/2123#issuecomment-899880034) at 2021-08-16 04:19 PM PDT -github-actions,2021-08-17T00:48:40Z,- github-actions commented on pull request: [2124](https://github.com/hackforla/website/pull/2124#issuecomment-899911399) at 2021-08-16 05:48 PM PDT -github-actions,2021-08-18T01:25:50Z,- github-actions commented on pull request: [2126](https://github.com/hackforla/website/pull/2126#issuecomment-900742532) at 2021-08-17 06:25 PM PDT -github-actions,2021-08-20T03:49:38Z,- github-actions commented on pull request: [2131](https://github.com/hackforla/website/pull/2131#issuecomment-902409395) at 2021-08-19 08:49 PM PDT -github-actions,2021-08-20T04:23:02Z,- github-actions commented on pull request: [2132](https://github.com/hackforla/website/pull/2132#issuecomment-902420042) at 2021-08-19 09:23 PM PDT -github-actions,2021-08-20T05:12:28Z,- github-actions commented on pull request: [2134](https://github.com/hackforla/website/pull/2134#issuecomment-902436159) at 2021-08-19 10:12 PM PDT -github-actions,2021-08-20T05:18:31Z,- github-actions commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902438265) at 2021-08-19 10:18 PM PDT -github-actions,2021-08-20T05:43:29Z,- github-actions commented on pull request: [2139](https://github.com/hackforla/website/pull/2139#issuecomment-902446813) at 2021-08-19 10:43 PM PDT -github-actions,2021-08-20T17:26:14Z,- github-actions commented on pull request: [2144](https://github.com/hackforla/website/pull/2144#issuecomment-902844599) at 2021-08-20 10:26 AM PDT -github-actions,2021-08-20T20:20:17Z,- github-actions commented on pull request: [2149](https://github.com/hackforla/website/pull/2149#issuecomment-902935650) at 2021-08-20 01:20 PM PDT -github-actions,2021-08-20T23:35:59Z,- github-actions commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-903008412) at 2021-08-20 04:35 PM PDT -github-actions,2021-08-21T01:38:27Z,- github-actions commented on pull request: [2152](https://github.com/hackforla/website/pull/2152#issuecomment-903033288) at 2021-08-20 06:38 PM PDT -github-actions,2021-08-21T19:24:18Z,- github-actions commented on pull request: [2156](https://github.com/hackforla/website/pull/2156#issuecomment-903164659) at 2021-08-21 12:24 PM PDT -github-actions,2021-08-21T23:02:34Z,- github-actions commented on pull request: [2157](https://github.com/hackforla/website/pull/2157#issuecomment-903186343) at 2021-08-21 04:02 PM PDT -github-actions,2021-08-23T17:05:36Z,- github-actions commented on pull request: [2166](https://github.com/hackforla/website/pull/2166#issuecomment-903953815) at 2021-08-23 10:05 AM PDT -github-actions,2021-08-25T06:49:54Z,- github-actions commented on pull request: [2178](https://github.com/hackforla/website/pull/2178#issuecomment-905231541) at 2021-08-24 11:49 PM PDT -github-actions,2021-08-26T04:55:29Z,- github-actions commented on pull request: [2181](https://github.com/hackforla/website/pull/2181#issuecomment-906093881) at 2021-08-25 09:55 PM PDT -github-actions,2021-08-27T04:24:22Z,- github-actions commented on pull request: [2186](https://github.com/hackforla/website/pull/2186#issuecomment-906915499) at 2021-08-26 09:24 PM PDT -github-actions,2021-08-27T18:54:08Z,- github-actions commented on pull request: [2189](https://github.com/hackforla/website/pull/2189#issuecomment-907406530) at 2021-08-27 11:54 AM PDT -github-actions,2021-08-28T04:14:27Z,- github-actions commented on pull request: [2195](https://github.com/hackforla/website/pull/2195#issuecomment-907564522) at 2021-08-27 09:14 PM PDT -github-actions,2021-08-28T19:50:56Z,- github-actions commented on pull request: [2196](https://github.com/hackforla/website/pull/2196#issuecomment-907681105) at 2021-08-28 12:50 PM PDT -github-actions,2021-08-29T08:59:30Z,- github-actions commented on pull request: [2197](https://github.com/hackforla/website/pull/2197#issuecomment-907755863) at 2021-08-29 01:59 AM PDT -github-actions,2021-08-31T04:27:35Z,- github-actions commented on pull request: [2209](https://github.com/hackforla/website/pull/2209#issuecomment-908889123) at 2021-08-30 09:27 PM PDT -github-actions,2021-09-02T07:22:57Z,- github-actions commented on pull request: [2214](https://github.com/hackforla/website/pull/2214#issuecomment-911307590) at 2021-09-02 12:22 AM PDT -github-actions,2021-09-03T06:32:05Z,- github-actions commented on pull request: [2217](https://github.com/hackforla/website/pull/2217#issuecomment-912293154) at 2021-09-02 11:32 PM PDT -github-actions,2021-09-03T10:12:52Z,- github-actions commented on pull request: [2218](https://github.com/hackforla/website/pull/2218#issuecomment-912425623) at 2021-09-03 03:12 AM PDT -github-actions,2021-09-03T14:26:41Z,- github-actions commented on pull request: [2219](https://github.com/hackforla/website/pull/2219#issuecomment-912580710) at 2021-09-03 07:26 AM PDT -github-actions,2021-09-04T00:31:00Z,- github-actions commented on pull request: [2223](https://github.com/hackforla/website/pull/2223#issuecomment-912875395) at 2021-09-03 05:31 PM PDT -github-actions,2021-09-05T07:02:57Z,- github-actions commented on pull request: [2225](https://github.com/hackforla/website/pull/2225#issuecomment-913098039) at 2021-09-05 12:02 AM PDT -github-actions,2021-09-07T23:07:44Z,- github-actions commented on pull request: [2229](https://github.com/hackforla/website/pull/2229#issuecomment-914682868) at 2021-09-07 04:07 PM PDT -github-actions,2021-09-08T00:57:54Z,- github-actions commented on pull request: [2230](https://github.com/hackforla/website/pull/2230#issuecomment-914745645) at 2021-09-07 05:57 PM PDT -github-actions,2021-09-08T19:13:17Z,- github-actions commented on pull request: [2241](https://github.com/hackforla/website/pull/2241#issuecomment-915500672) at 2021-09-08 12:13 PM PDT -github-actions,2021-09-09T21:07:44Z,- github-actions commented on pull request: [2245](https://github.com/hackforla/website/pull/2245#issuecomment-916437224) at 2021-09-09 02:07 PM PDT -github-actions,2021-09-11T17:05:38Z,- github-actions commented on pull request: [2247](https://github.com/hackforla/website/pull/2247#issuecomment-917439756) at 2021-09-11 10:05 AM PDT -github-actions,2021-09-12T19:52:33Z,- github-actions commented on pull request: [2250](https://github.com/hackforla/website/pull/2250#issuecomment-917699503) at 2021-09-12 12:52 PM PDT -github-actions,2021-09-12T22:16:34Z,- github-actions commented on pull request: [2252](https://github.com/hackforla/website/pull/2252#issuecomment-917720425) at 2021-09-12 03:16 PM PDT -github-actions,2021-09-13T00:26:01Z,- github-actions commented on pull request: [2253](https://github.com/hackforla/website/pull/2253#issuecomment-917743770) at 2021-09-12 05:26 PM PDT -github-actions,2021-09-13T03:55:55Z,- github-actions commented on pull request: [2254](https://github.com/hackforla/website/pull/2254#issuecomment-917816515) at 2021-09-12 08:55 PM PDT -github-actions,2021-09-13T22:03:47Z,- github-actions commented on pull request: [2256](https://github.com/hackforla/website/pull/2256#issuecomment-918612241) at 2021-09-13 03:03 PM PDT -github-actions,2021-09-14T04:46:07Z,- github-actions commented on pull request: [2260](https://github.com/hackforla/website/pull/2260#issuecomment-918797601) at 2021-09-13 09:46 PM PDT -github-actions,2021-09-14T21:55:35Z,- github-actions commented on pull request: [2261](https://github.com/hackforla/website/pull/2261#issuecomment-919540462) at 2021-09-14 02:55 PM PDT -github-actions,2021-09-14T21:57:11Z,- github-actions commented on pull request: [2262](https://github.com/hackforla/website/pull/2262#issuecomment-919541265) at 2021-09-14 02:57 PM PDT -github-actions,2021-09-14T22:19:12Z,- github-actions commented on pull request: [2263](https://github.com/hackforla/website/pull/2263#issuecomment-919552862) at 2021-09-14 03:19 PM PDT -github-actions,2021-09-16T00:38:17Z,- github-actions commented on pull request: [2281](https://github.com/hackforla/website/pull/2281#issuecomment-920486504) at 2021-09-15 05:38 PM PDT -github-actions,2021-09-17T02:39:02Z,- github-actions commented on pull request: [2284](https://github.com/hackforla/website/pull/2284#issuecomment-921409682) at 2021-09-16 07:39 PM PDT -github-actions,2021-09-19T06:41:48Z,- github-actions commented on pull request: [2285](https://github.com/hackforla/website/pull/2285#issuecomment-922423856) at 2021-09-18 11:41 PM PDT -github-actions,2021-09-22T07:20:27Z,- github-actions commented on pull request: [2300](https://github.com/hackforla/website/pull/2300#issuecomment-924656212) at 2021-09-22 12:20 AM PDT -github-actions,2021-09-22T19:50:37Z,- github-actions commented on pull request: [2302](https://github.com/hackforla/website/pull/2302#issuecomment-925278097) at 2021-09-22 12:50 PM PDT -github-actions,2021-09-24T17:17:05Z,- github-actions commented on pull request: [2305](https://github.com/hackforla/website/pull/2305#issuecomment-926794038) at 2021-09-24 10:17 AM PDT -github-actions,2021-09-25T05:25:44Z,- github-actions commented on pull request: [2308](https://github.com/hackforla/website/pull/2308#issuecomment-927013743) at 2021-09-24 10:25 PM PDT -github-actions,2021-09-26T21:36:06Z,- github-actions commented on pull request: [2310](https://github.com/hackforla/website/pull/2310#issuecomment-927375694) at 2021-09-26 02:36 PM PDT -github-actions,2021-09-29T03:26:27Z,- github-actions commented on pull request: [2313](https://github.com/hackforla/website/pull/2313#issuecomment-929797107) at 2021-09-28 08:26 PM PDT -github-actions,2021-09-29T05:01:48Z,- github-actions commented on pull request: [2314](https://github.com/hackforla/website/pull/2314#issuecomment-929837532) at 2021-09-28 10:01 PM PDT -github-actions,2021-09-29T07:25:07Z,- github-actions commented on pull request: [2315](https://github.com/hackforla/website/pull/2315#issuecomment-929911477) at 2021-09-29 12:25 AM PDT -github-actions,2021-09-30T04:31:19Z,- github-actions commented on pull request: [2320](https://github.com/hackforla/website/pull/2320#issuecomment-930773436) at 2021-09-29 09:31 PM PDT -github-actions,2021-09-30T04:56:44Z,- github-actions commented on pull request: [2321](https://github.com/hackforla/website/pull/2321#issuecomment-930782699) at 2021-09-29 09:56 PM PDT -github-actions,2021-10-01T01:46:32Z,- github-actions commented on pull request: [2322](https://github.com/hackforla/website/pull/2322#issuecomment-931828430) at 2021-09-30 06:46 PM PDT -github-actions,2021-10-01T02:07:52Z,- github-actions commented on pull request: [2323](https://github.com/hackforla/website/pull/2323#issuecomment-931837728) at 2021-09-30 07:07 PM PDT -github-actions,2021-10-01T22:05:44Z,- github-actions commented on pull request: [2324](https://github.com/hackforla/website/pull/2324#issuecomment-932604060) at 2021-10-01 03:05 PM PDT -github-actions,2021-10-03T15:59:00Z,- github-actions commented on pull request: [2325](https://github.com/hackforla/website/pull/2325#issuecomment-932978396) at 2021-10-03 08:59 AM PDT -github-actions,2021-10-04T07:05:27Z,- github-actions commented on pull request: [2333](https://github.com/hackforla/website/pull/2333#issuecomment-933202962) at 2021-10-04 12:05 AM PDT -github-actions,2021-10-05T20:29:05Z,- github-actions commented on pull request: [2338](https://github.com/hackforla/website/pull/2338#issuecomment-934782009) at 2021-10-05 01:29 PM PDT -github-actions,2021-10-06T05:34:12Z,- github-actions commented on pull request: [2340](https://github.com/hackforla/website/pull/2340#issuecomment-935498109) at 2021-10-05 10:34 PM PDT -github-actions,2021-10-07T03:17:48Z,- github-actions commented on pull request: [2343](https://github.com/hackforla/website/pull/2343#issuecomment-937410542) at 2021-10-06 08:17 PM PDT -github-actions,2021-10-10T01:51:34Z,- github-actions commented on pull request: [2352](https://github.com/hackforla/website/pull/2352#issuecomment-939390775) at 2021-10-09 06:51 PM PDT -github-actions,2021-10-12T05:12:29Z,- github-actions commented on pull request: [2365](https://github.com/hackforla/website/pull/2365#issuecomment-940668935) at 2021-10-11 10:12 PM PDT -github-actions,2021-10-14T03:21:39Z,- github-actions commented on pull request: [2367](https://github.com/hackforla/website/pull/2367#issuecomment-942910884) at 2021-10-13 08:21 PM PDT -github-actions,2021-10-17T18:21:31Z,- github-actions commented on pull request: [2369](https://github.com/hackforla/website/pull/2369#issuecomment-945171275) at 2021-10-17 11:21 AM PDT -github-actions,2021-10-18T15:46:41Z,- github-actions commented on pull request: [2371](https://github.com/hackforla/website/pull/2371#issuecomment-945913038) at 2021-10-18 08:46 AM PDT -github-actions,2021-10-18T18:34:57Z,- github-actions commented on pull request: [2372](https://github.com/hackforla/website/pull/2372#issuecomment-946052133) at 2021-10-18 11:34 AM PDT -github-actions,2021-10-18T18:52:11Z,- github-actions commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-946065960) at 2021-10-18 11:52 AM PDT -github-actions,2021-10-19T19:50:18Z,- github-actions commented on pull request: [2375](https://github.com/hackforla/website/pull/2375#issuecomment-947054183) at 2021-10-19 12:50 PM PDT -github-actions,2021-10-19T22:32:12Z,- github-actions commented on pull request: [2376](https://github.com/hackforla/website/pull/2376#issuecomment-947154799) at 2021-10-19 03:32 PM PDT -github-actions,2021-10-19T23:56:12Z,- github-actions commented on pull request: [2358](https://github.com/hackforla/website/pull/2358#issuecomment-947192478) at 2021-10-19 04:56 PM PDT -github-actions,2021-10-20T03:42:57Z,- github-actions commented on pull request: [2377](https://github.com/hackforla/website/pull/2377#issuecomment-947298573) at 2021-10-19 08:42 PM PDT -github-actions,2021-10-20T06:18:14Z,- github-actions commented on pull request: [2380](https://github.com/hackforla/website/pull/2380#issuecomment-947362623) at 2021-10-19 11:18 PM PDT -github-actions,2021-10-20T15:02:50Z,- github-actions commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-947756444) at 2021-10-20 08:02 AM PDT -github-actions,2021-10-20T15:26:41Z,- github-actions commented on pull request: [2378](https://github.com/hackforla/website/pull/2378#issuecomment-947779880) at 2021-10-20 08:26 AM PDT -github-actions,2021-10-21T03:50:00Z,- github-actions commented on pull request: [2387](https://github.com/hackforla/website/pull/2387#issuecomment-948233486) at 2021-10-20 08:50 PM PDT -github-actions,2021-10-22T20:45:39Z,- github-actions commented on pull request: [2390](https://github.com/hackforla/website/pull/2390#issuecomment-949949203) at 2021-10-22 01:45 PM PDT -github-actions,2021-10-24T14:43:00Z,- github-actions commented on pull request: [2394](https://github.com/hackforla/website/pull/2394#issuecomment-950337210) at 2021-10-24 07:43 AM PDT -github-actions,2021-10-26T08:08:37Z,- github-actions commented on pull request: [2398](https://github.com/hackforla/website/pull/2398#issuecomment-951668572) at 2021-10-26 01:08 AM PDT -github-actions,2021-10-26T09:50:48Z,- github-actions commented on pull request: [2399](https://github.com/hackforla/website/pull/2399#issuecomment-951771386) at 2021-10-26 02:50 AM PDT -github-actions,2021-10-27T05:27:53Z,- github-actions commented on pull request: [2402](https://github.com/hackforla/website/pull/2402#issuecomment-952550629) at 2021-10-26 10:27 PM PDT -github-actions,2021-10-27T06:06:24Z,- github-actions commented on pull request: [2403](https://github.com/hackforla/website/pull/2403#issuecomment-952568433) at 2021-10-26 11:06 PM PDT -github-actions,2021-10-27T21:41:53Z,- github-actions commented on pull request: [2405](https://github.com/hackforla/website/pull/2405#issuecomment-953333079) at 2021-10-27 02:41 PM PDT -github-actions,2021-10-28T09:38:02Z,- github-actions commented on pull request: [2406](https://github.com/hackforla/website/pull/2406#issuecomment-953680564) at 2021-10-28 02:38 AM PDT -github-actions,2021-10-31T05:14:40Z,- github-actions commented on pull request: [2411](https://github.com/hackforla/website/pull/2411#issuecomment-955638741) at 2021-10-30 10:14 PM PDT -github-actions,2021-10-31T19:41:13Z,- github-actions commented on pull request: [2412](https://github.com/hackforla/website/pull/2412#issuecomment-955779994) at 2021-10-31 12:41 PM PDT -github-actions,2021-11-01T16:15:43Z,- github-actions commented on pull request: [2413](https://github.com/hackforla/website/pull/2413#issuecomment-956373672) at 2021-11-01 09:15 AM PDT -github-actions,2021-11-01T16:47:03Z,- github-actions commented on pull request: [2414](https://github.com/hackforla/website/pull/2414#issuecomment-956398237) at 2021-11-01 09:47 AM PDT -github-actions,2021-11-01T17:27:22Z,- github-actions commented on pull request: [2415](https://github.com/hackforla/website/pull/2415#issuecomment-956431973) at 2021-11-01 10:27 AM PDT -github-actions,2021-11-01T17:58:18Z,- github-actions commented on pull request: [2416](https://github.com/hackforla/website/pull/2416#issuecomment-956454013) at 2021-11-01 10:58 AM PDT -github-actions,2021-11-01T19:38:16Z,- github-actions commented on pull request: [2418](https://github.com/hackforla/website/pull/2418#issuecomment-956530631) at 2021-11-01 12:38 PM PDT -github-actions,2021-11-01T21:04:56Z,- github-actions commented on pull request: [2420](https://github.com/hackforla/website/pull/2420#issuecomment-956589083) at 2021-11-01 02:04 PM PDT -github-actions,2021-11-02T20:37:36Z,- github-actions commented on pull request: [2432](https://github.com/hackforla/website/pull/2432#issuecomment-958147939) at 2021-11-02 01:37 PM PDT -github-actions,2021-11-05T02:50:00Z,- github-actions commented on pull request: [2452](https://github.com/hackforla/website/pull/2452#issuecomment-961586873) at 2021-11-04 07:50 PM PDT -github-actions,2021-11-05T04:25:07Z,- github-actions commented on pull request: [2453](https://github.com/hackforla/website/pull/2453#issuecomment-961618649) at 2021-11-04 09:25 PM PDT -github-actions,2021-11-10T07:40:44Z,- github-actions commented on pull request: [2469](https://github.com/hackforla/website/pull/2469#issuecomment-964860759) at 2021-11-09 11:40 PM PST -github-actions,2021-11-10T19:09:17Z,- github-actions commented on pull request: [2470](https://github.com/hackforla/website/pull/2470#issuecomment-965654304) at 2021-11-10 11:09 AM PST -github-actions,2021-11-10T20:40:31Z,- github-actions commented on pull request: [2472](https://github.com/hackforla/website/pull/2472#issuecomment-965728725) at 2021-11-10 12:40 PM PST -github-actions,2021-11-14T16:23:18Z,- github-actions commented on pull request: [2478](https://github.com/hackforla/website/pull/2478#issuecomment-968321819) at 2021-11-14 08:23 AM PST -github-actions,2021-11-14T20:46:22Z,- github-actions commented on pull request: [2482](https://github.com/hackforla/website/pull/2482#issuecomment-968360457) at 2021-11-14 12:46 PM PST -github-actions,2021-11-16T03:46:04Z,- github-actions commented on pull request: [2491](https://github.com/hackforla/website/pull/2491#issuecomment-969827000) at 2021-11-15 07:46 PM PST -github-actions,2021-11-16T04:42:41Z,- github-actions commented on pull request: [2492](https://github.com/hackforla/website/pull/2492#issuecomment-969854706) at 2021-11-15 08:42 PM PST -github-actions,2021-11-16T05:05:57Z,- github-actions commented on pull request: [2493](https://github.com/hackforla/website/pull/2493#issuecomment-969863565) at 2021-11-15 09:05 PM PST -github-actions,2021-11-16T23:49:35Z,- github-actions commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-970866866) at 2021-11-16 03:49 PM PST -github-actions,2021-11-17T02:52:45Z,- github-actions commented on pull request: [2495](https://github.com/hackforla/website/pull/2495#issuecomment-971126635) at 2021-11-16 06:52 PM PST -github-actions,2021-11-21T16:17:55Z,- github-actions commented on pull request: [2504](https://github.com/hackforla/website/pull/2504#issuecomment-974847590) at 2021-11-21 08:17 AM PST -github-actions,2021-11-21T22:55:47Z,- github-actions commented on pull request: [2506](https://github.com/hackforla/website/pull/2506#issuecomment-974912995) at 2021-11-21 02:55 PM PST -github-actions,2021-11-21T23:32:44Z,- github-actions commented on pull request: [2507](https://github.com/hackforla/website/pull/2507#issuecomment-974920007) at 2021-11-21 03:32 PM PST -github-actions,2021-11-21T23:50:38Z,- github-actions commented on pull request: [2508](https://github.com/hackforla/website/pull/2508#issuecomment-974923029) at 2021-11-21 03:50 PM PST -github-actions,2021-11-21T23:52:26Z,- github-actions commented on pull request: [2509](https://github.com/hackforla/website/pull/2509#issuecomment-974923291) at 2021-11-21 03:52 PM PST -github-actions,2021-11-22T00:32:55Z,- github-actions commented on pull request: [2510](https://github.com/hackforla/website/pull/2510#issuecomment-974937859) at 2021-11-21 04:32 PM PST -github-actions,2021-11-22T19:54:08Z,- github-actions commented on pull request: [2514](https://github.com/hackforla/website/pull/2514#issuecomment-975867014) at 2021-11-22 11:54 AM PST -github-actions,2021-11-28T09:58:59Z,- github-actions commented on pull request: [2516](https://github.com/hackforla/website/pull/2516#issuecomment-981056112) at 2021-11-28 01:58 AM PST -github-actions,2021-11-30T18:54:21Z,- github-actions commented on pull request: [2525](https://github.com/hackforla/website/pull/2525#issuecomment-982922803) at 2021-11-30 10:54 AM PST -github-actions,2021-12-01T19:24:39Z,- github-actions commented on pull request: [2526](https://github.com/hackforla/website/pull/2526#issuecomment-983982118) at 2021-12-01 11:24 AM PST -github-actions,2021-12-01T22:33:04Z,- github-actions commented on pull request: [2530](https://github.com/hackforla/website/pull/2530#issuecomment-984113400) at 2021-12-01 02:33 PM PST -github-actions,2021-12-01T23:13:30Z,- github-actions commented on pull request: [2532](https://github.com/hackforla/website/pull/2532#issuecomment-984143693) at 2021-12-01 03:13 PM PST -github-actions,2021-12-02T02:31:02Z,- github-actions commented on pull request: [2534](https://github.com/hackforla/website/pull/2534#issuecomment-984236027) at 2021-12-01 06:31 PM PST -github-actions,2021-12-02T05:19:49Z,- github-actions commented on pull request: [2535](https://github.com/hackforla/website/pull/2535#issuecomment-984302618) at 2021-12-01 09:19 PM PST -github-actions,2021-12-02T20:22:46Z,- github-actions commented on pull request: [2538](https://github.com/hackforla/website/pull/2538#issuecomment-984972353) at 2021-12-02 12:22 PM PST -github-actions,2021-12-03T01:59:11Z,- github-actions commented on pull request: [2540](https://github.com/hackforla/website/pull/2540#issuecomment-985151041) at 2021-12-02 05:59 PM PST -github-actions,2021-12-03T17:41:10Z,- github-actions commented on pull request: [2541](https://github.com/hackforla/website/pull/2541#issuecomment-985707512) at 2021-12-03 09:41 AM PST -github-actions,2021-12-04T20:14:09Z,- github-actions commented on pull request: [2543](https://github.com/hackforla/website/pull/2543#issuecomment-986086624) at 2021-12-04 12:14 PM PST -github-actions,2021-12-05T06:43:28Z,- github-actions commented on pull request: [2545](https://github.com/hackforla/website/pull/2545#issuecomment-986176267) at 2021-12-04 10:43 PM PST -github-actions,2021-12-05T16:24:55Z,- github-actions commented on pull request: [2546](https://github.com/hackforla/website/pull/2546#issuecomment-986259869) at 2021-12-05 08:24 AM PST -github-actions,2021-12-06T04:14:36Z,- github-actions commented on pull request: [2548](https://github.com/hackforla/website/pull/2548#issuecomment-986422476) at 2021-12-05 08:14 PM PST -github-actions,2021-12-06T04:27:42Z,- github-actions commented on pull request: [2549](https://github.com/hackforla/website/pull/2549#issuecomment-986428515) at 2021-12-05 08:27 PM PST -github-actions,2021-12-07T02:20:32Z,- github-actions commented on pull request: [2551](https://github.com/hackforla/website/pull/2551#issuecomment-987506657) at 2021-12-06 06:20 PM PST -github-actions,2021-12-07T23:52:45Z,- github-actions commented on pull request: [2556](https://github.com/hackforla/website/pull/2556#issuecomment-988352032) at 2021-12-07 03:52 PM PST -github-actions,2021-12-08T02:07:14Z,- github-actions commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-988429834) at 2021-12-07 06:07 PM PST -github-actions,2021-12-08T23:56:58Z,- github-actions commented on pull request: [2564](https://github.com/hackforla/website/pull/2564#issuecomment-989323094) at 2021-12-08 03:56 PM PST -github-actions,2021-12-09T03:48:29Z,- github-actions commented on pull request: [2565](https://github.com/hackforla/website/pull/2565#issuecomment-989483337) at 2021-12-08 07:48 PM PST -github-actions,2021-12-09T21:27:27Z,- github-actions commented on pull request: [2566](https://github.com/hackforla/website/pull/2566#issuecomment-990278146) at 2021-12-09 01:27 PM PST -github-actions,2021-12-10T02:10:55Z,- github-actions commented on pull request: [2573](https://github.com/hackforla/website/pull/2573#issuecomment-990536570) at 2021-12-09 06:10 PM PST -github-actions,2021-12-10T19:00:35Z,- github-actions commented on pull request: [2574](https://github.com/hackforla/website/pull/2574#issuecomment-991219812) at 2021-12-10 11:00 AM PST -github-actions,2021-12-11T00:08:47Z,- github-actions commented on pull request: [2575](https://github.com/hackforla/website/pull/2575#issuecomment-991384980) at 2021-12-10 04:08 PM PST -github-actions,2021-12-12T09:25:02Z,- github-actions commented on pull request: [2577](https://github.com/hackforla/website/pull/2577#issuecomment-991862277) at 2021-12-12 01:25 AM PST -github-actions,2021-12-12T22:31:43Z,- github-actions commented on pull request: [2578](https://github.com/hackforla/website/pull/2578#issuecomment-991983109) at 2021-12-12 02:31 PM PST -github-actions,2021-12-12T23:05:29Z,- github-actions commented on pull request: [2582](https://github.com/hackforla/website/pull/2582#issuecomment-991988095) at 2021-12-12 03:05 PM PST -github-actions,2021-12-13T03:18:23Z,- github-actions commented on pull request: [2583](https://github.com/hackforla/website/pull/2583#issuecomment-992072172) at 2021-12-12 07:18 PM PST -github-actions,2021-12-13T17:21:33Z,- github-actions commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-992699543) at 2021-12-13 09:21 AM PST -github-actions,2021-12-14T06:35:34Z,- github-actions commented on pull request: [2587](https://github.com/hackforla/website/pull/2587#issuecomment-993205025) at 2021-12-13 10:35 PM PST -github-actions,2021-12-15T13:42:04Z,- github-actions commented on pull request: [2588](https://github.com/hackforla/website/pull/2588#issuecomment-994802970) at 2021-12-15 05:42 AM PST -github-actions,2021-12-15T23:07:40Z,- github-actions commented on pull request: [2590](https://github.com/hackforla/website/pull/2590#issuecomment-995284475) at 2021-12-15 03:07 PM PST -github-actions,2021-12-16T19:15:20Z,- github-actions commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-996104436) at 2021-12-16 11:15 AM PST -github-actions,2021-12-17T01:28:10Z,- github-actions commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-996350336) at 2021-12-16 05:28 PM PST -github-actions,2021-12-18T19:23:10Z,- github-actions commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-997272977) at 2021-12-18 11:23 AM PST -github-actions,2021-12-18T22:31:02Z,- github-actions commented on pull request: [2602](https://github.com/hackforla/website/pull/2602#issuecomment-997293705) at 2021-12-18 02:31 PM PST -github-actions,2021-12-18T23:00:13Z,- github-actions commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-997296749) at 2021-12-18 03:00 PM PST -github-actions,2021-12-21T00:10:13Z,- github-actions commented on pull request: [2609](https://github.com/hackforla/website/pull/2609#issuecomment-998361946) at 2021-12-20 04:10 PM PST -github-actions,2021-12-22T20:28:51Z,- github-actions commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-999848565) at 2021-12-22 12:28 PM PST -github-actions,2021-12-22T21:32:47Z,- github-actions commented on pull request: [2621](https://github.com/hackforla/website/pull/2621#issuecomment-999893288) at 2021-12-22 01:32 PM PST -github-actions,2021-12-24T01:23:36Z,- github-actions commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1000597812) at 2021-12-23 05:23 PM PST -github-actions,2021-12-26T09:53:50Z,- github-actions commented on pull request: [2630](https://github.com/hackforla/website/pull/2630#issuecomment-1001140303) at 2021-12-26 01:53 AM PST -github-actions,2021-12-27T20:24:29Z,- github-actions commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1001739783) at 2021-12-27 12:24 PM PST -github-actions,2021-12-28T16:53:43Z,- github-actions commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1002195355) at 2021-12-28 08:53 AM PST -github-actions,2021-12-29T03:20:41Z,- github-actions commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1002377530) at 2021-12-28 07:20 PM PST -github-actions,2021-12-30T00:58:47Z,- github-actions commented on pull request: [2644](https://github.com/hackforla/website/pull/2644#issuecomment-1002829950) at 2021-12-29 04:58 PM PST -github-actions,2021-12-30T04:24:15Z,- github-actions commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1002867234) at 2021-12-29 08:24 PM PST -github-actions,2021-12-30T21:52:37Z,- github-actions commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1003192613) at 2021-12-30 01:52 PM PST -github-actions,2021-12-31T01:50:35Z,- github-actions commented on pull request: [2647](https://github.com/hackforla/website/pull/2647#issuecomment-1003237357) at 2021-12-30 05:50 PM PST -github-actions,2021-12-31T08:23:09Z,- github-actions commented on pull request: [2648](https://github.com/hackforla/website/pull/2648#issuecomment-1003306619) at 2021-12-31 12:23 AM PST -github-actions,2022-01-07T03:46:01Z,- github-actions commented on pull request: [2665](https://github.com/hackforla/website/pull/2665#issuecomment-1007117863) at 2022-01-06 07:46 PM PST -github-actions,2022-01-08T03:18:45Z,- github-actions commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1007876122) at 2022-01-07 07:18 PM PST -github-actions,2022-01-09T10:25:28Z,- github-actions commented on pull request: [2678](https://github.com/hackforla/website/pull/2678#issuecomment-1008270408) at 2022-01-09 02:25 AM PST -github-actions,2022-01-10T01:08:26Z,- github-actions commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1008468324) at 2022-01-09 05:08 PM PST -github-actions,2022-01-17T19:01:18Z,- github-actions commented on pull request: [2693](https://github.com/hackforla/website/pull/2693#issuecomment-1014818216) at 2022-01-17 11:01 AM PST -github-actions,2022-01-18T03:28:32Z,- github-actions commented on pull request: [2696](https://github.com/hackforla/website/pull/2696#issuecomment-1015040347) at 2022-01-17 07:28 PM PST -github-actions,2022-01-19T03:45:47Z,- github-actions commented on pull request: [2700](https://github.com/hackforla/website/pull/2700#issuecomment-1016052450) at 2022-01-18 07:45 PM PST -github-actions,2022-01-21T02:34:45Z,- github-actions commented on pull request: [2709](https://github.com/hackforla/website/pull/2709#issuecomment-1018110465) at 2022-01-20 06:34 PM PST -github-actions,2022-01-21T03:34:46Z,- github-actions commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1018137151) at 2022-01-20 07:34 PM PST -github-actions,2022-01-23T20:23:09Z,- github-actions commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1019559988) at 2022-01-23 12:23 PM PST -github-actions,2022-01-24T01:05:41Z,- github-actions commented on pull request: [2714](https://github.com/hackforla/website/pull/2714#issuecomment-1019620033) at 2022-01-23 05:05 PM PST -github-actions,2022-01-26T02:48:55Z,- github-actions commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1021811526) at 2022-01-25 06:48 PM PST -github-actions,2022-01-26T23:37:39Z,- github-actions commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1022702689) at 2022-01-26 03:37 PM PST -github-actions,2022-01-28T14:40:12Z,- github-actions commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1024286211) at 2022-01-28 06:40 AM PST -github-actions,2022-01-29T20:02:12Z,- github-actions commented on pull request: [2724](https://github.com/hackforla/website/pull/2724#issuecomment-1024977242) at 2022-01-29 12:02 PM PST -github-actions,2022-01-29T20:28:25Z,- github-actions commented on pull request: [2725](https://github.com/hackforla/website/pull/2725#issuecomment-1024980876) at 2022-01-29 12:28 PM PST -github-actions,2022-01-31T16:00:25Z,- github-actions commented on pull request: [2729](https://github.com/hackforla/website/pull/2729#issuecomment-1025935521) at 2022-01-31 08:00 AM PST -github-actions,2022-02-01T05:16:36Z,- github-actions commented on pull request: [2730](https://github.com/hackforla/website/pull/2730#issuecomment-1026486828) at 2022-01-31 09:16 PM PST -github-actions,2022-02-02T19:59:12Z,- github-actions commented on pull request: [2732](https://github.com/hackforla/website/pull/2732#issuecomment-1028307094) at 2022-02-02 11:59 AM PST -github-actions,2022-02-02T22:44:34Z,- github-actions commented on pull request: [2734](https://github.com/hackforla/website/pull/2734#issuecomment-1028428136) at 2022-02-02 02:44 PM PST -github-actions,2022-02-03T05:52:40Z,- github-actions commented on pull request: [2735](https://github.com/hackforla/website/pull/2735#issuecomment-1028626154) at 2022-02-02 09:52 PM PST -github-actions,2022-02-04T02:34:17Z,- github-actions commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1029584390) at 2022-02-03 06:34 PM PST -github-actions,2022-02-05T06:10:24Z,- github-actions commented on pull request: [2738](https://github.com/hackforla/website/pull/2738#issuecomment-1030535823) at 2022-02-04 10:10 PM PST -github-actions,2022-02-06T16:48:25Z,- github-actions commented on pull request: [2741](https://github.com/hackforla/website/pull/2741#issuecomment-1030870010) at 2022-02-06 08:48 AM PST -github-actions,2022-02-06T19:39:57Z,- github-actions commented on pull request: [2742](https://github.com/hackforla/website/pull/2742#issuecomment-1030899708) at 2022-02-06 11:39 AM PST -github-actions,2022-02-08T20:59:06Z,- github-actions commented on pull request: [2752](https://github.com/hackforla/website/pull/2752#issuecomment-1033055943) at 2022-02-08 12:59 PM PST -github-actions,2022-02-09T04:47:11Z,- github-actions commented on pull request: [2755](https://github.com/hackforla/website/pull/2755#issuecomment-1033345036) at 2022-02-08 08:47 PM PST -github-actions,2022-02-09T04:47:36Z,- github-actions commented on pull request: [2756](https://github.com/hackforla/website/pull/2756#issuecomment-1033345252) at 2022-02-08 08:47 PM PST -github-actions,2022-02-09T05:37:12Z,- github-actions commented on pull request: [2757](https://github.com/hackforla/website/pull/2757#issuecomment-1033370601) at 2022-02-08 09:37 PM PST -github-actions,2022-02-10T00:54:38Z,- github-actions commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1034369407) at 2022-02-09 04:54 PM PST -github-actions,2022-02-10T01:41:30Z,- github-actions commented on pull request: [2762](https://github.com/hackforla/website/pull/2762#issuecomment-1034397438) at 2022-02-09 05:41 PM PST -github-actions,2022-02-11T18:50:47Z,- github-actions commented on pull request: [2765](https://github.com/hackforla/website/pull/2765#issuecomment-1036515066) at 2022-02-11 10:50 AM PST -github-actions,2022-02-12T07:18:43Z,- github-actions commented on pull request: [2767](https://github.com/hackforla/website/pull/2767#issuecomment-1037037557) at 2022-02-11 11:18 PM PST -github-actions,2022-02-12T22:32:59Z,- github-actions commented on pull request: [2769](https://github.com/hackforla/website/pull/2769#issuecomment-1037536653) at 2022-02-12 02:32 PM PST -github-actions,2022-02-13T02:57:55Z,- github-actions commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1037704001) at 2022-02-12 06:57 PM PST -github-actions,2022-02-14T18:04:14Z,- github-actions commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1039390096) at 2022-02-14 10:04 AM PST -github-actions,2022-02-16T01:41:38Z,- github-actions commented on pull request: [2779](https://github.com/hackforla/website/pull/2779#issuecomment-1041004641) at 2022-02-15 05:41 PM PST -github-actions,2022-02-16T02:23:07Z,- github-actions commented on pull request: [2780](https://github.com/hackforla/website/pull/2780#issuecomment-1041026224) at 2022-02-15 06:23 PM PST -github-actions,2022-02-16T06:34:37Z,- github-actions commented on pull request: [2785](https://github.com/hackforla/website/pull/2785#issuecomment-1041155553) at 2022-02-15 10:34 PM PST -github-actions,2022-02-16T19:55:24Z,- github-actions commented on pull request: [2786](https://github.com/hackforla/website/pull/2786#issuecomment-1042106878) at 2022-02-16 11:55 AM PST -github-actions,2022-02-17T01:59:01Z,- github-actions commented on pull request: [2787](https://github.com/hackforla/website/pull/2787#issuecomment-1042491204) at 2022-02-16 05:59 PM PST -github-actions,2022-02-17T22:02:11Z,- github-actions commented on pull request: [2788](https://github.com/hackforla/website/pull/2788#issuecomment-1043511948) at 2022-02-17 02:02 PM PST -github-actions,2022-02-18T03:51:08Z,- github-actions commented on pull request: [2789](https://github.com/hackforla/website/pull/2789#issuecomment-1043841257) at 2022-02-17 07:51 PM PST -github-actions,2022-02-18T19:05:40Z,- github-actions commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1045030595) at 2022-02-18 11:05 AM PST -github-actions,2022-02-19T21:19:28Z,- github-actions commented on pull request: [2801](https://github.com/hackforla/website/pull/2801#issuecomment-1046105027) at 2022-02-19 01:19 PM PST -github-actions,2022-02-19T21:59:32Z,- github-actions commented on pull request: [2803](https://github.com/hackforla/website/pull/2803#issuecomment-1046111298) at 2022-02-19 01:59 PM PST -github-actions,2022-02-20T21:07:37Z,- github-actions commented on pull request: [2819](https://github.com/hackforla/website/pull/2819#issuecomment-1046321082) at 2022-02-20 01:07 PM PST -github-actions,2022-02-22T19:11:12Z,- github-actions commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1048124079) at 2022-02-22 11:11 AM PST -github-actions,2022-02-23T05:13:24Z,- github-actions commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1048455170) at 2022-02-22 09:13 PM PST -github-actions,2022-02-23T13:33:45Z,- github-actions commented on pull request: [2872](https://github.com/hackforla/website/pull/2872#issuecomment-1048787353) at 2022-02-23 05:33 AM PST -github-actions,2022-02-23T19:26:57Z,- github-actions commented on pull request: [2879](https://github.com/hackforla/website/pull/2879#issuecomment-1049134617) at 2022-02-23 11:26 AM PST -github-actions,2022-02-23T23:23:53Z,- github-actions commented on pull request: [2880](https://github.com/hackforla/website/pull/2880#issuecomment-1049319559) at 2022-02-23 03:23 PM PST -github-actions,2022-02-24T03:18:50Z,- github-actions commented on pull request: [2881](https://github.com/hackforla/website/pull/2881#issuecomment-1049454707) at 2022-02-23 07:18 PM PST -github-actions,2022-02-24T07:23:18Z,- github-actions commented on pull request: [2882](https://github.com/hackforla/website/pull/2882#issuecomment-1049566055) at 2022-02-23 11:23 PM PST -github-actions,2022-02-24T11:09:49Z,- github-actions commented on pull request: [2883](https://github.com/hackforla/website/pull/2883#issuecomment-1049747947) at 2022-02-24 03:09 AM PST -github-actions,2022-02-24T21:07:43Z,- github-actions commented on pull request: [2884](https://github.com/hackforla/website/pull/2884#issuecomment-1050265436) at 2022-02-24 01:07 PM PST -github-actions,2022-02-25T02:32:25Z,- github-actions commented on pull request: [2885](https://github.com/hackforla/website/pull/2885#issuecomment-1050458789) at 2022-02-24 06:32 PM PST -github-actions,2022-02-25T21:45:38Z,- github-actions commented on pull request: [2889](https://github.com/hackforla/website/pull/2889#issuecomment-1051294405) at 2022-02-25 01:45 PM PST -github-actions,2022-02-26T22:15:00Z,- github-actions commented on pull request: [2893](https://github.com/hackforla/website/pull/2893#issuecomment-1052697410) at 2022-02-26 02:15 PM PST -github-actions,2022-02-27T04:27:13Z,- github-actions commented on pull request: [2894](https://github.com/hackforla/website/pull/2894#issuecomment-1053101241) at 2022-02-26 08:27 PM PST -github-actions,2022-02-27T17:10:04Z,- github-actions commented on pull request: [2899](https://github.com/hackforla/website/pull/2899#issuecomment-1053618209) at 2022-02-27 09:10 AM PST -github-actions,2022-02-28T11:10:00Z,- github-actions commented on pull request: [2903](https://github.com/hackforla/website/pull/2903#issuecomment-1054144631) at 2022-02-28 03:10 AM PST -github-actions,2022-03-01T06:00:14Z,- github-actions commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055052324) at 2022-02-28 10:00 PM PST -github-actions,2022-03-08T22:49:30Z,- github-actions commented on pull request: [2943](https://github.com/hackforla/website/pull/2943#issuecomment-1062308376) at 2022-03-08 02:49 PM PST -github-actions,2022-03-09T18:45:33Z,- github-actions commented on pull request: [2944](https://github.com/hackforla/website/pull/2944#issuecomment-1063244320) at 2022-03-09 10:45 AM PST -github-actions,2022-03-10T19:10:22Z,- github-actions commented on pull request: [2957](https://github.com/hackforla/website/pull/2957#issuecomment-1064399833) at 2022-03-10 11:10 AM PST -github-actions,2022-03-10T22:10:51Z,- github-actions commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1064556982) at 2022-03-10 02:10 PM PST -github-actions,2022-03-11T04:34:33Z,- github-actions commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1064763718) at 2022-03-10 08:34 PM PST -github-actions,2022-03-11T06:05:56Z,- github-actions commented on pull request: [2963](https://github.com/hackforla/website/pull/2963#issuecomment-1064803057) at 2022-03-10 10:05 PM PST -github-actions,2022-03-11T09:49:36Z,- github-actions commented on pull request: [2965](https://github.com/hackforla/website/pull/2965#issuecomment-1064948682) at 2022-03-11 01:49 AM PST -github-actions,2022-03-11T18:51:20Z,- github-actions commented on pull request: [2966](https://github.com/hackforla/website/pull/2966#issuecomment-1065395503) at 2022-03-11 10:51 AM PST -github-actions,2022-03-11T20:29:56Z,- github-actions commented on pull request: [2967](https://github.com/hackforla/website/pull/2967#issuecomment-1065494054) at 2022-03-11 12:29 PM PST -github-actions,2022-03-11T21:49:17Z,- github-actions commented on pull request: [2968](https://github.com/hackforla/website/pull/2968#issuecomment-1065561397) at 2022-03-11 01:49 PM PST -github-actions,2022-03-12T11:20:52Z,- github-actions commented on pull request: [2970](https://github.com/hackforla/website/pull/2970#issuecomment-1065865133) at 2022-03-12 04:20 AM PDT -github-actions,2022-03-12T14:38:20Z,- github-actions commented on pull request: [2971](https://github.com/hackforla/website/pull/2971#issuecomment-1065894401) at 2022-03-12 07:38 AM PDT -github-actions,2022-03-13T03:53:41Z,- github-actions commented on pull request: [2973](https://github.com/hackforla/website/pull/2973#issuecomment-1066016460) at 2022-03-12 08:53 PM PDT -github-actions,2022-03-13T19:55:57Z,- github-actions commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1066170794) at 2022-03-13 12:55 PM PDT -github-actions,2022-03-13T23:55:56Z,- github-actions commented on pull request: [2979](https://github.com/hackforla/website/pull/2979#issuecomment-1066211211) at 2022-03-13 04:55 PM PDT -github-actions,2022-03-14T17:20:03Z,- github-actions commented on pull request: [2980](https://github.com/hackforla/website/pull/2980#issuecomment-1067086113) at 2022-03-14 10:20 AM PDT -github-actions,2022-03-14T23:34:20Z,- github-actions commented on pull request: [2981](https://github.com/hackforla/website/pull/2981#issuecomment-1067411974) at 2022-03-14 04:34 PM PDT -github-actions,2022-03-15T00:04:08Z,- github-actions commented on pull request: [2982](https://github.com/hackforla/website/pull/2982#issuecomment-1067425932) at 2022-03-14 05:04 PM PDT -github-actions,2022-03-15T05:53:54Z,- github-actions commented on pull request: [2983](https://github.com/hackforla/website/pull/2983#issuecomment-1067590666) at 2022-03-14 10:53 PM PDT -github-actions,2022-03-16T00:55:56Z,- github-actions commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1068617408) at 2022-03-15 05:55 PM PDT -github-actions,2022-03-16T03:53:48Z,- github-actions commented on pull request: [2986](https://github.com/hackforla/website/pull/2986#issuecomment-1068704018) at 2022-03-15 08:53 PM PDT -github-actions,2022-03-18T13:12:18Z,- github-actions commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1072396865) at 2022-03-18 06:12 AM PDT -github-actions,2022-03-18T17:49:10Z,- github-actions commented on pull request: [2989](https://github.com/hackforla/website/pull/2989#issuecomment-1072650838) at 2022-03-18 10:49 AM PDT -github-actions,2022-03-19T06:35:03Z,- github-actions commented on pull request: [2991](https://github.com/hackforla/website/pull/2991#issuecomment-1072953738) at 2022-03-18 11:35 PM PDT -github-actions,2022-03-19T18:03:52Z,- github-actions commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073054819) at 2022-03-19 11:03 AM PDT -github-actions,2022-03-20T20:19:00Z,- github-actions commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1073341510) at 2022-03-20 01:19 PM PDT -github-actions,2022-03-20T22:26:55Z,- github-actions commented on pull request: [2995](https://github.com/hackforla/website/pull/2995#issuecomment-1073361278) at 2022-03-20 03:26 PM PDT -github-actions,2022-03-21T01:08:26Z,- github-actions commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1073396749) at 2022-03-20 06:08 PM PDT -github-actions,2022-03-21T20:53:17Z,- github-actions commented on pull request: [2997](https://github.com/hackforla/website/pull/2997#issuecomment-1074407178) at 2022-03-21 01:53 PM PDT -github-actions,2022-03-22T02:57:00Z,- github-actions commented on pull request: [2998](https://github.com/hackforla/website/pull/2998#issuecomment-1074672865) at 2022-03-21 07:57 PM PDT -github-actions,2022-03-22T06:02:33Z,- github-actions commented on pull request: [3000](https://github.com/hackforla/website/pull/3000#issuecomment-1074771988) at 2022-03-21 11:02 PM PDT -github-actions,2022-03-22T21:58:04Z,- github-actions commented on pull request: [3001](https://github.com/hackforla/website/pull/3001#issuecomment-1075682920) at 2022-03-22 02:58 PM PDT -github-actions,2022-03-22T23:04:55Z,- github-actions commented on pull request: [3002](https://github.com/hackforla/website/pull/3002#issuecomment-1075735145) at 2022-03-22 04:04 PM PDT -github-actions,2022-03-23T21:06:25Z,- github-actions commented on pull request: [3006](https://github.com/hackforla/website/pull/3006#issuecomment-1076820701) at 2022-03-23 02:06 PM PDT -github-actions,2022-03-23T21:18:55Z,- github-actions commented on pull request: [3007](https://github.com/hackforla/website/pull/3007#issuecomment-1076830384) at 2022-03-23 02:18 PM PDT -github-actions,2022-03-24T19:38:04Z,- github-actions commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1078035864) at 2022-03-24 12:38 PM PDT -github-actions,2022-03-25T16:26:34Z,- github-actions commented on pull request: [3010](https://github.com/hackforla/website/pull/3010#issuecomment-1079192762) at 2022-03-25 09:26 AM PDT -github-actions,2022-03-26T01:18:36Z,- github-actions commented on pull request: [3012](https://github.com/hackforla/website/pull/3012#issuecomment-1079546758) at 2022-03-25 06:18 PM PDT -github-actions,2022-03-26T02:02:30Z,- github-actions commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079563042) at 2022-03-25 07:02 PM PDT -github-actions,2022-03-26T13:17:21Z,- github-actions commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1079692729) at 2022-03-26 06:17 AM PDT -github-actions,2022-03-26T16:55:10Z,- github-actions commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1079732163) at 2022-03-26 09:55 AM PDT -github-actions,2022-03-27T01:11:00Z,- github-actions commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1079807940) at 2022-03-26 06:11 PM PDT -github-actions,2022-03-28T16:47:35Z,- github-actions commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1080896197) at 2022-03-28 09:47 AM PDT -github-actions,2022-04-01T07:35:05Z,- github-actions commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1085535755) at 2022-04-01 12:35 AM PDT -github-actions,2022-04-02T23:18:29Z,- github-actions commented on pull request: [3029](https://github.com/hackforla/website/pull/3029#issuecomment-1086740613) at 2022-04-02 04:18 PM PDT -github-actions,2022-04-03T05:17:09Z,- github-actions commented on pull request: [3030](https://github.com/hackforla/website/pull/3030#issuecomment-1086778783) at 2022-04-02 10:17 PM PDT -github-actions,2022-04-04T18:06:39Z,- github-actions commented on pull request: [3033](https://github.com/hackforla/website/pull/3033#issuecomment-1087857728) at 2022-04-04 11:06 AM PDT -github-actions,2022-04-07T23:03:41Z,- github-actions commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1092286924) at 2022-04-07 04:03 PM PDT -github-actions,2022-04-08T02:32:18Z,- github-actions commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1092383566) at 2022-04-07 07:32 PM PDT -github-actions,2022-04-10T23:42:23Z,- github-actions commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1094411464) at 2022-04-10 04:42 PM PDT -github-actions,2022-04-11T21:29:26Z,- github-actions commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1095585058) at 2022-04-11 02:29 PM PDT -github-actions,2022-04-11T22:42:08Z,- github-actions commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1095661321) at 2022-04-11 03:42 PM PDT -github-actions,2022-04-12T21:42:34Z,- github-actions commented on pull request: [3046](https://github.com/hackforla/website/pull/3046#issuecomment-1097250197) at 2022-04-12 02:42 PM PDT -github-actions,2022-04-15T19:26:20Z,- github-actions commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1100307979) at 2022-04-15 12:26 PM PDT -github-actions,2022-04-18T01:55:27Z,- github-actions commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1101019694) at 2022-04-17 06:55 PM PDT -github-actions,2022-04-18T03:43:13Z,- github-actions commented on pull request: [3062](https://github.com/hackforla/website/pull/3062#issuecomment-1101062663) at 2022-04-17 08:43 PM PDT -github-actions,2022-04-19T06:29:36Z,- github-actions commented on pull request: [3067](https://github.com/hackforla/website/pull/3067#issuecomment-1102144136) at 2022-04-18 11:29 PM PDT -github-actions,2022-04-20T23:40:51Z,- github-actions commented on pull request: [3072](https://github.com/hackforla/website/pull/3072#issuecomment-1104555700) at 2022-04-20 04:40 PM PDT -github-actions,2022-04-21T02:02:40Z,- github-actions commented on pull request: [3073](https://github.com/hackforla/website/pull/3073#issuecomment-1104630370) at 2022-04-20 07:02 PM PDT -github-actions,2022-04-21T04:11:29Z,- github-actions commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1104687751) at 2022-04-20 09:11 PM PDT -github-actions,2022-04-21T20:58:43Z,- github-actions commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1105753214) at 2022-04-21 01:58 PM PDT -github-actions,2022-04-23T10:09:48Z,- github-actions commented on pull request: [3077](https://github.com/hackforla/website/pull/3077#issuecomment-1107446406) at 2022-04-23 03:09 AM PDT -github-actions,2022-04-23T21:22:07Z,- github-actions commented on pull request: [3078](https://github.com/hackforla/website/pull/3078#issuecomment-1107651320) at 2022-04-23 02:22 PM PDT -github-actions,2022-04-24T13:20:07Z,- github-actions commented on pull request: [3079](https://github.com/hackforla/website/pull/3079#issuecomment-1107840852) at 2022-04-24 06:20 AM PDT -github-actions,2022-04-25T03:00:19Z,- github-actions commented on pull request: [3081](https://github.com/hackforla/website/pull/3081#issuecomment-1108015178) at 2022-04-24 08:00 PM PDT -github-actions,2022-04-27T01:33:24Z,- github-actions commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1110435989) at 2022-04-26 06:33 PM PDT -github-actions,2022-05-01T04:06:00Z,- github-actions commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1114123628) at 2022-04-30 09:06 PM PDT -github-actions,2022-05-01T15:06:29Z,- github-actions commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114260649) at 2022-05-01 08:06 AM PDT -github-actions,2022-05-06T21:20:34Z,- github-actions commented on pull request: [3108](https://github.com/hackforla/website/pull/3108#issuecomment-1120015912) at 2022-05-06 02:20 PM PDT -github-actions,2022-05-09T01:51:56Z,- github-actions commented on pull request: [3114](https://github.com/hackforla/website/pull/3114#issuecomment-1120550292) at 2022-05-08 06:51 PM PDT -github-actions,2022-05-12T20:01:49Z,- github-actions commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1125373857) at 2022-05-12 01:01 PM PDT -github-actions,2022-05-14T02:13:21Z,- github-actions commented on pull request: [3137](https://github.com/hackforla/website/pull/3137#issuecomment-1126612529) at 2022-05-13 07:13 PM PDT -github-actions,2022-05-17T00:28:58Z,- github-actions commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1128270611) at 2022-05-16 05:28 PM PDT -github-actions,2022-05-18T22:16:29Z,- github-actions commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1130615324) at 2022-05-18 03:16 PM PDT -github-actions,2022-05-19T03:36:38Z,- github-actions commented on pull request: [3159](https://github.com/hackforla/website/pull/3159#issuecomment-1131163198) at 2022-05-18 08:36 PM PDT -github-actions,2022-05-20T03:18:06Z,- github-actions commented on pull request: [3160](https://github.com/hackforla/website/pull/3160#issuecomment-1132414906) at 2022-05-19 08:18 PM PDT -github-actions,2022-05-20T03:58:25Z,- github-actions commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1132432147) at 2022-05-19 08:58 PM PDT -github-actions,2022-05-20T08:08:05Z,- github-actions commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1132607721) at 2022-05-20 01:08 AM PDT -github-actions,2022-05-20T23:46:46Z,- github-actions commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133468637) at 2022-05-20 04:46 PM PDT -github-actions,2022-05-23T06:40:17Z,- github-actions commented on pull request: [3168](https://github.com/hackforla/website/pull/3168#issuecomment-1134244297) at 2022-05-22 11:40 PM PDT -github-actions,2022-05-23T18:46:32Z,- github-actions commented on pull request: [3169](https://github.com/hackforla/website/pull/3169#issuecomment-1135020183) at 2022-05-23 11:46 AM PDT -github-actions,2022-05-23T22:28:54Z,- github-actions commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135199053) at 2022-05-23 03:28 PM PDT -github-actions,2022-05-24T04:23:09Z,- github-actions commented on pull request: [3172](https://github.com/hackforla/website/pull/3172#issuecomment-1135389326) at 2022-05-23 09:23 PM PDT -github-actions,2022-05-24T08:57:54Z,- github-actions commented on pull request: [3173](https://github.com/hackforla/website/pull/3173#issuecomment-1135597503) at 2022-05-24 01:57 AM PDT -github-actions,2022-05-24T19:59:36Z,- github-actions commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1136375622) at 2022-05-24 12:59 PM PDT -github-actions,2022-05-26T22:02:18Z,- github-actions commented on pull request: [3176](https://github.com/hackforla/website/pull/3176#issuecomment-1139098914) at 2022-05-26 03:02 PM PDT -github-actions,2022-05-29T11:29:49Z,- github-actions commented on pull request: [3178](https://github.com/hackforla/website/pull/3178#issuecomment-1140429022) at 2022-05-29 04:29 AM PDT -github-actions,2022-05-29T17:22:27Z,- github-actions commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1140491101) at 2022-05-29 10:22 AM PDT -github-actions,2022-05-29T20:53:27Z,- github-actions commented on pull request: [3181](https://github.com/hackforla/website/pull/3181#issuecomment-1140522595) at 2022-05-29 01:53 PM PDT -github-actions,2022-05-30T02:21:06Z,- github-actions commented on pull request: [3182](https://github.com/hackforla/website/pull/3182#issuecomment-1140614871) at 2022-05-29 07:21 PM PDT -github-actions,2022-05-30T13:38:22Z,- github-actions commented on pull request: [3183](https://github.com/hackforla/website/pull/3183#issuecomment-1141172156) at 2022-05-30 06:38 AM PDT -github-actions,2022-05-31T08:40:44Z,- github-actions commented on pull request: [3184](https://github.com/hackforla/website/pull/3184#issuecomment-1141846188) at 2022-05-31 01:40 AM PDT -github-actions,2022-05-31T15:39:12Z,- github-actions commented on pull request: [3185](https://github.com/hackforla/website/pull/3185#issuecomment-1142299050) at 2022-05-31 08:39 AM PDT -github-actions,2022-06-01T18:07:46Z,- github-actions commented on pull request: [3192](https://github.com/hackforla/website/pull/3192#issuecomment-1143972038) at 2022-06-01 11:07 AM PDT -github-actions,2022-06-02T06:20:07Z,- github-actions commented on pull request: [3193](https://github.com/hackforla/website/pull/3193#issuecomment-1144481345) at 2022-06-01 11:20 PM PDT -github-actions,2022-06-04T21:29:23Z,- github-actions commented on pull request: [3218](https://github.com/hackforla/website/pull/3218#issuecomment-1146688103) at 2022-06-04 02:29 PM PDT -github-actions,2022-06-04T22:10:04Z,- github-actions commented on pull request: [3219](https://github.com/hackforla/website/pull/3219#issuecomment-1146693027) at 2022-06-04 03:10 PM PDT -github-actions,2022-06-05T16:24:22Z,- github-actions commented on pull request: [3221](https://github.com/hackforla/website/pull/3221#issuecomment-1146842927) at 2022-06-05 09:24 AM PDT -github-actions,2022-06-05T21:32:07Z,- github-actions commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1146887146) at 2022-06-05 02:32 PM PDT -github-actions,2022-06-06T20:35:41Z,- github-actions commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1147897708) at 2022-06-06 01:35 PM PDT -github-actions,2022-06-07T06:03:44Z,- github-actions commented on pull request: [3226](https://github.com/hackforla/website/pull/3226#issuecomment-1148231851) at 2022-06-06 11:03 PM PDT -github-actions,2022-06-07T18:01:51Z,- github-actions commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1148999368) at 2022-06-07 11:01 AM PDT -github-actions,2022-06-08T19:39:04Z,- github-actions commented on pull request: [3235](https://github.com/hackforla/website/pull/3235#issuecomment-1150324500) at 2022-06-08 12:39 PM PDT -github-actions,2022-06-12T05:58:44Z,- github-actions commented on pull request: [3237](https://github.com/hackforla/website/pull/3237#issuecomment-1153079732) at 2022-06-11 10:58 PM PDT -github-actions,2022-06-14T02:16:41Z,- github-actions commented on pull request: [3241](https://github.com/hackforla/website/pull/3241#issuecomment-1154634567) at 2022-06-13 07:16 PM PDT -github-actions,2022-06-17T03:04:13Z,- github-actions commented on pull request: [3258](https://github.com/hackforla/website/pull/3258#issuecomment-1158439756) at 2022-06-16 08:04 PM PDT -github-actions,2022-06-18T22:14:35Z,- github-actions commented on pull request: [3259](https://github.com/hackforla/website/pull/3259#issuecomment-1159574023) at 2022-06-18 03:14 PM PDT -github-actions,2022-06-18T22:21:02Z,- github-actions commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159574780) at 2022-06-18 03:21 PM PDT -github-actions,2022-06-18T22:36:50Z,- github-actions commented on pull request: [3261](https://github.com/hackforla/website/pull/3261#issuecomment-1159576345) at 2022-06-18 03:36 PM PDT -github-actions,2022-06-20T06:28:49Z,- github-actions commented on pull request: [3262](https://github.com/hackforla/website/pull/3262#issuecomment-1160028154) at 2022-06-19 11:28 PM PDT -github-actions,2022-06-20T16:37:00Z,- github-actions commented on pull request: [3263](https://github.com/hackforla/website/pull/3263#issuecomment-1160653328) at 2022-06-20 09:37 AM PDT -github-actions,2022-06-20T19:02:42Z,- github-actions commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1160758651) at 2022-06-20 12:02 PM PDT -github-actions,2022-06-21T18:49:23Z,- github-actions commented on pull request: [3276](https://github.com/hackforla/website/pull/3276#issuecomment-1162187673) at 2022-06-21 11:49 AM PDT -github-actions,2022-06-22T03:15:24Z,- github-actions commented on pull request: [3285](https://github.com/hackforla/website/pull/3285#issuecomment-1162588701) at 2022-06-21 08:15 PM PDT -github-actions,2022-06-22T18:51:24Z,- github-actions commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1163487959) at 2022-06-22 11:51 AM PDT -github-actions,2022-06-22T22:54:02Z,- github-actions commented on pull request: [3288](https://github.com/hackforla/website/pull/3288#issuecomment-1163728707) at 2022-06-22 03:54 PM PDT -github-actions,2022-06-23T04:13:24Z,- github-actions commented on pull request: [3291](https://github.com/hackforla/website/pull/3291#issuecomment-1163906960) at 2022-06-22 09:13 PM PDT -github-actions,2022-06-23T18:33:05Z,- github-actions commented on pull request: [3293](https://github.com/hackforla/website/pull/3293#issuecomment-1164740333) at 2022-06-23 11:33 AM PDT -github-actions,2022-06-23T21:10:12Z,- github-actions commented on pull request: [3297](https://github.com/hackforla/website/pull/3297#issuecomment-1164876104) at 2022-06-23 02:10 PM PDT -github-actions,2022-06-23T23:37:58Z,- github-actions commented on pull request: [3298](https://github.com/hackforla/website/pull/3298#issuecomment-1165013747) at 2022-06-23 04:37 PM PDT -github-actions,2022-06-24T15:54:26Z,- github-actions commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1165707888) at 2022-06-24 08:54 AM PDT -github-actions,2022-06-25T15:15:39Z,- github-actions commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166308332) at 2022-06-25 08:15 AM PDT -github-actions,2022-06-26T07:26:07Z,- github-actions commented on pull request: [3303](https://github.com/hackforla/website/pull/3303#issuecomment-1166438824) at 2022-06-26 12:26 AM PDT -github-actions,2022-06-26T16:41:35Z,- github-actions commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166583564) at 2022-06-26 09:41 AM PDT -github-actions,2022-06-27T06:24:19Z,- github-actions commented on pull request: [3317](https://github.com/hackforla/website/pull/3317#issuecomment-1166926604) at 2022-06-26 11:24 PM PDT -github-actions,2022-06-27T18:16:03Z,- github-actions commented on pull request: [3319](https://github.com/hackforla/website/pull/3319#issuecomment-1167709619) at 2022-06-27 11:16 AM PDT -github-actions,2022-06-27T19:09:51Z,- github-actions commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1167770383) at 2022-06-27 12:09 PM PDT -github-actions,2022-06-27T21:20:12Z,- github-actions commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1167913742) at 2022-06-27 02:20 PM PDT -github-actions,2022-06-29T01:39:00Z,- github-actions commented on pull request: [3322](https://github.com/hackforla/website/pull/3322#issuecomment-1169442873) at 2022-06-28 06:39 PM PDT -github-actions,2022-06-29T02:38:01Z,- github-actions commented on pull request: [3323](https://github.com/hackforla/website/pull/3323#issuecomment-1169470282) at 2022-06-28 07:38 PM PDT -github-actions,2022-06-29T03:08:51Z,- github-actions commented on pull request: [3324](https://github.com/hackforla/website/pull/3324#issuecomment-1169485291) at 2022-06-28 08:08 PM PDT -github-actions,2022-06-30T17:58:48Z,- github-actions commented on pull request: [3326](https://github.com/hackforla/website/pull/3326#issuecomment-1171517561) at 2022-06-30 10:58 AM PDT -github-actions,2022-07-01T03:21:47Z,- github-actions commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1171888393) at 2022-06-30 08:21 PM PDT -github-actions,2022-07-05T16:30:13Z,- github-actions commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1175254528) at 2022-07-05 09:30 AM PDT -github-actions,2022-07-05T20:04:19Z,- github-actions commented on pull request: [3330](https://github.com/hackforla/website/pull/3330#issuecomment-1175450995) at 2022-07-05 01:04 PM PDT -github-actions,2022-07-06T02:27:27Z,- github-actions commented on pull request: [3332](https://github.com/hackforla/website/pull/3332#issuecomment-1175708098) at 2022-07-05 07:27 PM PDT -github-actions,2022-07-06T05:03:44Z,- github-actions commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1175784539) at 2022-07-05 10:03 PM PDT -github-actions,2022-07-07T17:34:55Z,- github-actions commented on pull request: [3338](https://github.com/hackforla/website/pull/3338#issuecomment-1177977743) at 2022-07-07 10:34 AM PDT -github-actions,2022-07-10T18:33:18Z,- github-actions commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1179777425) at 2022-07-10 11:33 AM PDT -github-actions,2022-07-11T21:18:14Z,- github-actions commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1180880051) at 2022-07-11 02:18 PM PDT -github-actions,2022-07-13T01:04:38Z,- github-actions commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1182648611) at 2022-07-12 06:04 PM PDT -github-actions,2022-07-13T01:20:39Z,- github-actions commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182656418) at 2022-07-12 06:20 PM PDT -github-actions,2022-07-13T17:15:14Z,- github-actions commented on pull request: [3367](https://github.com/hackforla/website/pull/3367#issuecomment-1183480174) at 2022-07-13 10:15 AM PDT -github-actions,2022-07-13T18:52:18Z,- github-actions commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1183565101) at 2022-07-13 11:52 AM PDT -github-actions,2022-07-14T00:42:57Z,- github-actions commented on pull request: [3369](https://github.com/hackforla/website/pull/3369#issuecomment-1183821555) at 2022-07-13 05:42 PM PDT -github-actions,2022-07-15T02:57:25Z,- github-actions commented on pull request: [3371](https://github.com/hackforla/website/pull/3371#issuecomment-1185116867) at 2022-07-14 07:57 PM PDT -github-actions,2022-07-15T04:15:47Z,- github-actions commented on pull request: [3372](https://github.com/hackforla/website/pull/3372#issuecomment-1185155624) at 2022-07-14 09:15 PM PDT -github-actions,2022-07-15T17:09:03Z,- github-actions commented on pull request: [3373](https://github.com/hackforla/website/pull/3373#issuecomment-1185738008) at 2022-07-15 10:09 AM PDT -github-actions,2022-07-16T22:18:25Z,- github-actions commented on pull request: [3375](https://github.com/hackforla/website/pull/3375#issuecomment-1186308520) at 2022-07-16 03:18 PM PDT -github-actions,2022-07-18T18:45:03Z,- github-actions commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1188107217) at 2022-07-18 11:45 AM PDT -github-actions,2022-07-18T18:53:59Z,- github-actions commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1188127884) at 2022-07-18 11:53 AM PDT -github-actions,2022-07-19T04:55:32Z,- github-actions commented on pull request: [3390](https://github.com/hackforla/website/pull/3390#issuecomment-1188598277) at 2022-07-18 09:55 PM PDT -github-actions,2022-07-19T16:49:24Z,- github-actions commented on pull request: [3391](https://github.com/hackforla/website/pull/3391#issuecomment-1189326075) at 2022-07-19 09:49 AM PDT -github-actions,2022-07-19T18:56:59Z,- github-actions commented on pull request: [3392](https://github.com/hackforla/website/pull/3392#issuecomment-1189444586) at 2022-07-19 11:56 AM PDT -github-actions,2022-07-19T19:09:26Z,- github-actions commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1189454921) at 2022-07-19 12:09 PM PDT -github-actions,2022-07-19T21:33:34Z,- github-actions commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1189572575) at 2022-07-19 02:33 PM PDT -github-actions,2022-07-20T01:49:10Z,- github-actions commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1189714906) at 2022-07-19 06:49 PM PDT -github-actions,2022-07-20T03:35:31Z,- github-actions commented on pull request: [3405](https://github.com/hackforla/website/pull/3405#issuecomment-1189779776) at 2022-07-19 08:35 PM PDT -github-actions,2022-07-20T19:38:43Z,- github-actions commented on pull request: [3407](https://github.com/hackforla/website/pull/3407#issuecomment-1190679252) at 2022-07-20 12:38 PM PDT -github-actions,2022-07-22T20:26:29Z,- github-actions commented on pull request: [3421](https://github.com/hackforla/website/pull/3421#issuecomment-1192910926) at 2022-07-22 01:26 PM PDT -github-actions,2022-07-22T22:04:04Z,- github-actions commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1192963903) at 2022-07-22 03:04 PM PDT -github-actions,2022-07-24T17:27:56Z,- github-actions commented on pull request: [3424](https://github.com/hackforla/website/pull/3424#issuecomment-1193361840) at 2022-07-24 10:27 AM PDT -github-actions,2022-07-24T23:05:59Z,- github-actions commented on pull request: [3425](https://github.com/hackforla/website/pull/3425#issuecomment-1193411782) at 2022-07-24 04:05 PM PDT -github-actions,2022-07-25T05:25:43Z,- github-actions commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1193596512) at 2022-07-24 10:25 PM PDT -github-actions,2022-07-25T19:29:50Z,- github-actions commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194523356) at 2022-07-25 12:29 PM PDT -github-actions,2022-07-26T00:53:37Z,- github-actions commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1194839180) at 2022-07-25 05:53 PM PDT -github-actions,2022-07-26T23:56:25Z,- github-actions commented on pull request: [3430](https://github.com/hackforla/website/pull/3430#issuecomment-1196109139) at 2022-07-26 04:56 PM PDT -github-actions,2022-07-27T01:13:39Z,- github-actions commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1196160312) at 2022-07-26 06:13 PM PDT -github-actions,2022-07-27T23:58:17Z,- github-actions commented on pull request: [3435](https://github.com/hackforla/website/pull/3435#issuecomment-1197500090) at 2022-07-27 04:58 PM PDT -github-actions,2022-07-28T04:27:44Z,- github-actions commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1197644540) at 2022-07-27 09:27 PM PDT -github-actions,2022-07-28T20:12:08Z,- github-actions commented on pull request: [3439](https://github.com/hackforla/website/pull/3439#issuecomment-1198586410) at 2022-07-28 01:12 PM PDT -github-actions,2022-07-29T02:33:34Z,- github-actions commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198818982) at 2022-07-28 07:33 PM PDT -github-actions,2022-07-29T02:38:59Z,- github-actions commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1198821272) at 2022-07-28 07:38 PM PDT -github-actions,2022-07-29T02:47:22Z,- github-actions commented on pull request: [3443](https://github.com/hackforla/website/pull/3443#issuecomment-1198824768) at 2022-07-28 07:47 PM PDT -github-actions,2022-07-30T05:34:04Z,- github-actions commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200095415) at 2022-07-29 10:34 PM PDT -github-actions,2022-08-01T05:09:57Z,- github-actions commented on pull request: [3445](https://github.com/hackforla/website/pull/3445#issuecomment-1200714460) at 2022-07-31 10:09 PM PDT -github-actions,2022-08-01T09:06:28Z,- github-actions commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1200926004) at 2022-08-01 02:06 AM PDT -github-actions,2022-08-04T03:28:45Z,- github-actions commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1204713849) at 2022-08-03 08:28 PM PDT -github-actions,2022-08-05T06:09:55Z,- github-actions commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1206079962) at 2022-08-04 11:09 PM PDT -github-actions,2022-08-07T18:42:02Z,- github-actions commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1207463520) at 2022-08-07 11:42 AM PDT -github-actions,2022-08-08T23:54:40Z,- github-actions commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1208737998) at 2022-08-08 04:54 PM PDT -github-actions,2022-08-09T00:22:14Z,- github-actions commented on pull request: [3455](https://github.com/hackforla/website/pull/3455#issuecomment-1208753161) at 2022-08-08 05:22 PM PDT -github-actions,2022-08-09T23:55:49Z,- github-actions commented on pull request: [3456](https://github.com/hackforla/website/pull/3456#issuecomment-1210003587) at 2022-08-09 04:55 PM PDT -github-actions,2022-08-10T00:33:27Z,- github-actions commented on pull request: [3457](https://github.com/hackforla/website/pull/3457#issuecomment-1210022308) at 2022-08-09 05:33 PM PDT -github-actions,2022-08-11T07:04:10Z,- github-actions commented on pull request: [3460](https://github.com/hackforla/website/pull/3460#issuecomment-1211622476) at 2022-08-11 12:04 AM PDT -github-actions,2022-08-11T19:54:43Z,- github-actions commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1212425649) at 2022-08-11 12:54 PM PDT -github-actions,2022-08-12T02:34:08Z,- github-actions commented on pull request: [3463](https://github.com/hackforla/website/pull/3463#issuecomment-1212672958) at 2022-08-11 07:34 PM PDT -github-actions,2022-08-12T16:25:29Z,- github-actions commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1213298686) at 2022-08-12 09:25 AM PDT -github-actions,2022-08-13T16:37:06Z,- github-actions commented on pull request: [3467](https://github.com/hackforla/website/pull/3467#issuecomment-1214186631) at 2022-08-13 09:37 AM PDT -github-actions,2022-08-14T18:13:27Z,- github-actions commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214425486) at 2022-08-14 11:13 AM PDT -github-actions,2022-08-16T05:02:51Z,- github-actions commented on pull request: [3470](https://github.com/hackforla/website/pull/3470#issuecomment-1216150267) at 2022-08-15 10:02 PM PDT -github-actions,2022-08-17T05:31:20Z,- github-actions commented on pull request: [3471](https://github.com/hackforla/website/pull/3471#issuecomment-1217479543) at 2022-08-16 10:31 PM PDT -github-actions,2022-08-17T18:59:50Z,- github-actions commented on pull request: [3472](https://github.com/hackforla/website/pull/3472#issuecomment-1218383497) at 2022-08-17 11:59 AM PDT -github-actions,2022-08-18T20:00:14Z,- github-actions commented on pull request: [3474](https://github.com/hackforla/website/pull/3474#issuecomment-1219901408) at 2022-08-18 01:00 PM PDT -github-actions,2022-08-19T03:58:19Z,- github-actions commented on pull request: [3475](https://github.com/hackforla/website/pull/3475#issuecomment-1220222214) at 2022-08-18 08:58 PM PDT -github-actions,2022-08-19T04:55:29Z,- github-actions commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1220249344) at 2022-08-18 09:55 PM PDT -github-actions,2022-08-19T23:57:47Z,- github-actions commented on pull request: [3477](https://github.com/hackforla/website/pull/3477#issuecomment-1221178228) at 2022-08-19 04:57 PM PDT -github-actions,2022-08-20T00:13:52Z,- github-actions commented on pull request: [3478](https://github.com/hackforla/website/pull/3478#issuecomment-1221182965) at 2022-08-19 05:13 PM PDT -github-actions,2022-08-22T04:11:21Z,- github-actions commented on pull request: [3479](https://github.com/hackforla/website/pull/3479#issuecomment-1221783275) at 2022-08-21 09:11 PM PDT -github-actions,2022-08-22T06:40:07Z,- github-actions commented on pull request: [3480](https://github.com/hackforla/website/pull/3480#issuecomment-1221915779) at 2022-08-21 11:40 PM PDT -github-actions,2022-08-24T01:53:14Z,- github-actions commented on pull request: [3482](https://github.com/hackforla/website/pull/3482#issuecomment-1225080511) at 2022-08-23 06:53 PM PDT -github-actions,2022-08-24T18:45:18Z,- github-actions commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226102254) at 2022-08-24 11:45 AM PDT -github-actions,2022-08-24T19:42:58Z,- github-actions commented on pull request: [3484](https://github.com/hackforla/website/pull/3484#issuecomment-1226169648) at 2022-08-24 12:42 PM PDT -github-actions,2022-08-24T19:50:43Z,- github-actions commented on pull request: [3485](https://github.com/hackforla/website/pull/3485#issuecomment-1226189762) at 2022-08-24 12:50 PM PDT -github-actions,2022-08-24T19:52:40Z,- github-actions commented on pull request: [3486](https://github.com/hackforla/website/pull/3486#issuecomment-1226194062) at 2022-08-24 12:52 PM PDT -github-actions,2022-08-26T20:45:09Z,- github-actions commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1228932857) at 2022-08-26 01:45 PM PDT -github-actions,2022-08-27T20:25:38Z,- github-actions commented on pull request: [3491](https://github.com/hackforla/website/pull/3491#issuecomment-1229260310) at 2022-08-27 01:25 PM PDT -github-actions,2022-08-28T03:28:10Z,- github-actions commented on pull request: [3495](https://github.com/hackforla/website/pull/3495#issuecomment-1229365839) at 2022-08-27 08:28 PM PDT -github-actions,2022-08-29T14:59:21Z,- github-actions commented on pull request: [3496](https://github.com/hackforla/website/pull/3496#issuecomment-1230431762) at 2022-08-29 07:59 AM PDT -github-actions,2022-08-29T17:46:41Z,- github-actions commented on pull request: [3497](https://github.com/hackforla/website/pull/3497#issuecomment-1230646342) at 2022-08-29 10:46 AM PDT -github-actions,2022-08-30T13:02:50Z,- github-actions commented on pull request: [3498](https://github.com/hackforla/website/pull/3498#issuecomment-1231637606) at 2022-08-30 06:02 AM PDT -github-actions,2022-08-30T23:24:33Z,- github-actions commented on pull request: [3502](https://github.com/hackforla/website/pull/3502#issuecomment-1232270467) at 2022-08-30 04:24 PM PDT -github-actions,2022-08-30T23:26:31Z,- github-actions commented on pull request: [3503](https://github.com/hackforla/website/pull/3503#issuecomment-1232271620) at 2022-08-30 04:26 PM PDT -github-actions,2022-08-30T23:36:16Z,- github-actions commented on pull request: [3505](https://github.com/hackforla/website/pull/3505#issuecomment-1232277700) at 2022-08-30 04:36 PM PDT -github-actions,2022-08-31T22:31:24Z,- github-actions commented on pull request: [3513](https://github.com/hackforla/website/pull/3513#issuecomment-1233486645) at 2022-08-31 03:31 PM PDT -github-actions,2022-09-01T18:23:40Z,- github-actions commented on pull request: [3514](https://github.com/hackforla/website/pull/3514#issuecomment-1234632341) at 2022-09-01 11:23 AM PDT -github-actions,2022-09-01T23:44:01Z,- github-actions commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1234915340) at 2022-09-01 04:44 PM PDT -github-actions,2022-09-02T22:42:54Z,- github-actions commented on pull request: [3516](https://github.com/hackforla/website/pull/3516#issuecomment-1235951131) at 2022-09-02 03:42 PM PDT -github-actions,2022-09-03T00:06:20Z,- github-actions commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1235991698) at 2022-09-02 05:06 PM PDT -github-actions,2022-09-03T21:17:03Z,- github-actions commented on pull request: [3518](https://github.com/hackforla/website/pull/3518#issuecomment-1236199775) at 2022-09-03 02:17 PM PDT -github-actions,2022-09-05T01:46:18Z,- github-actions commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1236471304) at 2022-09-04 06:46 PM PDT -github-actions,2022-09-07T02:47:18Z,- github-actions commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1238845980) at 2022-09-06 07:47 PM PDT -github-actions,2022-09-09T02:35:59Z,- github-actions commented on pull request: [3531](https://github.com/hackforla/website/pull/3531#issuecomment-1241431328) at 2022-09-08 07:35 PM PDT -github-actions,2022-09-11T16:57:57Z,- github-actions commented on pull request: [3534](https://github.com/hackforla/website/pull/3534#issuecomment-1243002991) at 2022-09-11 09:57 AM PDT -github-actions,2022-09-12T01:26:45Z,- github-actions commented on pull request: [3536](https://github.com/hackforla/website/pull/3536#issuecomment-1243106726) at 2022-09-11 06:26 PM PDT -github-actions,2022-09-13T05:49:45Z,- github-actions commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1244931349) at 2022-09-12 10:49 PM PDT -github-actions,2022-09-13T22:00:37Z,- github-actions commented on pull request: [3551](https://github.com/hackforla/website/pull/3551#issuecomment-1245994890) at 2022-09-13 03:00 PM PDT -github-actions,2022-09-14T20:45:04Z,- github-actions commented on pull request: [3556](https://github.com/hackforla/website/pull/3556#issuecomment-1247283715) at 2022-09-14 01:45 PM PDT -github-actions,2022-09-16T01:46:14Z,- github-actions commented on pull request: [3557](https://github.com/hackforla/website/pull/3557#issuecomment-1248820528) at 2022-09-15 06:46 PM PDT -github-actions,2022-09-16T04:49:21Z,- github-actions commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1248916000) at 2022-09-15 09:49 PM PDT -github-actions,2022-09-16T17:36:33Z,- github-actions commented on pull request: [3559](https://github.com/hackforla/website/pull/3559#issuecomment-1249618592) at 2022-09-16 10:36 AM PDT -github-actions,2022-09-16T18:26:42Z,- github-actions commented on pull request: [3560](https://github.com/hackforla/website/pull/3560#issuecomment-1249676098) at 2022-09-16 11:26 AM PDT -github-actions,2022-09-17T01:44:44Z,- github-actions commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1249973108) at 2022-09-16 06:44 PM PDT -github-actions,2022-09-19T20:16:23Z,- github-actions commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1251504915) at 2022-09-19 01:16 PM PDT -github-actions,2022-09-19T22:57:41Z,- github-actions commented on pull request: [3566](https://github.com/hackforla/website/pull/3566#issuecomment-1251653140) at 2022-09-19 03:57 PM PDT -github-actions,2022-09-20T18:11:58Z,- github-actions commented on pull request: [3567](https://github.com/hackforla/website/pull/3567#issuecomment-1252728628) at 2022-09-20 11:11 AM PDT -github-actions,2022-09-21T00:28:29Z,- github-actions commented on pull request: [3568](https://github.com/hackforla/website/pull/3568#issuecomment-1253049208) at 2022-09-20 05:28 PM PDT -github-actions,2022-09-21T18:24:56Z,- github-actions commented on pull request: [3573](https://github.com/hackforla/website/pull/3573#issuecomment-1254072156) at 2022-09-21 11:24 AM PDT -github-actions,2022-09-22T22:56:04Z,- github-actions commented on pull request: [3574](https://github.com/hackforla/website/pull/3574#issuecomment-1255638486) at 2022-09-22 03:56 PM PDT -github-actions,2022-09-23T01:23:56Z,- github-actions commented on pull request: [3575](https://github.com/hackforla/website/pull/3575#issuecomment-1255708724) at 2022-09-22 06:23 PM PDT -github-actions,2022-09-23T02:58:20Z,- github-actions commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1255750718) at 2022-09-22 07:58 PM PDT -github-actions,2022-09-23T14:23:14Z,- github-actions commented on pull request: [3577](https://github.com/hackforla/website/pull/3577#issuecomment-1256281369) at 2022-09-23 07:23 AM PDT -github-actions,2022-09-23T22:00:29Z,- github-actions commented on pull request: [3578](https://github.com/hackforla/website/pull/3578#issuecomment-1256716822) at 2022-09-23 03:00 PM PDT -github-actions,2022-09-24T00:15:45Z,- github-actions commented on pull request: [3579](https://github.com/hackforla/website/pull/3579#issuecomment-1256811212) at 2022-09-23 05:15 PM PDT -github-actions,2022-09-25T06:29:53Z,- github-actions commented on pull request: [3580](https://github.com/hackforla/website/pull/3580#issuecomment-1257131637) at 2022-09-24 11:29 PM PDT -github-actions,2022-09-26T16:32:51Z,- github-actions commented on pull request: [3582](https://github.com/hackforla/website/pull/3582#issuecomment-1258317284) at 2022-09-26 09:32 AM PDT -github-actions,2022-09-26T20:19:43Z,- github-actions commented on pull request: [3585](https://github.com/hackforla/website/pull/3585#issuecomment-1258575556) at 2022-09-26 01:19 PM PDT -github-actions,2022-09-27T18:39:16Z,- github-actions commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1259905686) at 2022-09-27 11:39 AM PDT -github-actions,2022-09-28T20:19:22Z,- github-actions commented on pull request: [3588](https://github.com/hackforla/website/pull/3588#issuecomment-1261422136) at 2022-09-28 01:19 PM PDT -github-actions,2022-09-29T00:07:21Z,- github-actions commented on pull request: [3589](https://github.com/hackforla/website/pull/3589#issuecomment-1261587408) at 2022-09-28 05:07 PM PDT -github-actions,2022-09-29T16:56:20Z,- github-actions commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1262550068) at 2022-09-29 09:56 AM PDT -github-actions,2022-09-29T23:42:32Z,- github-actions commented on pull request: [3591](https://github.com/hackforla/website/pull/3591#issuecomment-1262940574) at 2022-09-29 04:42 PM PDT -github-actions,2022-09-30T04:04:30Z,- github-actions commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1263075962) at 2022-09-29 09:04 PM PDT -github-actions,2022-10-01T01:43:01Z,- github-actions commented on pull request: [3594](https://github.com/hackforla/website/pull/3594#issuecomment-1264191291) at 2022-09-30 06:43 PM PDT -github-actions,2022-10-01T07:36:36Z,- github-actions commented on pull request: [3595](https://github.com/hackforla/website/pull/3595#issuecomment-1264277964) at 2022-10-01 12:36 AM PDT -github-actions,2022-10-02T21:25:42Z,- github-actions commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1264736564) at 2022-10-02 02:25 PM PDT -github-actions,2022-10-04T01:41:08Z,- github-actions commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1266289972) at 2022-10-03 06:41 PM PDT -github-actions,2022-10-07T15:24:28Z,- github-actions commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1271738365) at 2022-10-07 08:24 AM PDT -github-actions,2022-10-09T23:48:57Z,- github-actions commented on pull request: [3601](https://github.com/hackforla/website/pull/3601#issuecomment-1272655988) at 2022-10-09 04:48 PM PDT -github-actions,2022-10-12T04:24:47Z,- github-actions commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1275569520) at 2022-10-11 09:24 PM PDT -github-actions,2022-10-13T03:26:04Z,- github-actions commented on pull request: [3616](https://github.com/hackforla/website/pull/3616#issuecomment-1276977365) at 2022-10-12 08:26 PM PDT -github-actions,2022-10-13T21:41:45Z,- github-actions commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278208203) at 2022-10-13 02:41 PM PDT -github-actions,2022-10-13T22:35:00Z,- github-actions commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278248886) at 2022-10-13 03:35 PM PDT -github-actions,2022-10-14T15:36:02Z,- github-actions commented on pull request: [3620](https://github.com/hackforla/website/pull/3620#issuecomment-1279163983) at 2022-10-14 08:36 AM PDT -github-actions,2022-10-14T18:29:31Z,- github-actions commented on pull request: [3621](https://github.com/hackforla/website/pull/3621#issuecomment-1279331222) at 2022-10-14 11:29 AM PDT -github-actions,2022-10-14T20:16:34Z,- github-actions commented on pull request: [3622](https://github.com/hackforla/website/pull/3622#issuecomment-1279419271) at 2022-10-14 01:16 PM PDT -github-actions,2022-10-14T21:10:57Z,- github-actions commented on pull request: [3623](https://github.com/hackforla/website/pull/3623#issuecomment-1279471226) at 2022-10-14 02:10 PM PDT -github-actions,2022-10-14T23:02:35Z,- github-actions commented on pull request: [3624](https://github.com/hackforla/website/pull/3624#issuecomment-1279562656) at 2022-10-14 04:02 PM PDT -github-actions,2022-10-16T01:10:33Z,- github-actions commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1279864371) at 2022-10-15 06:10 PM PDT -github-actions,2022-10-16T07:26:30Z,- github-actions commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1279911326) at 2022-10-16 12:26 AM PDT -github-actions,2022-10-16T19:23:35Z,- github-actions commented on pull request: [3629](https://github.com/hackforla/website/pull/3629#issuecomment-1280036248) at 2022-10-16 12:23 PM PDT -github-actions,2022-10-17T01:40:40Z,- github-actions commented on pull request: [3631](https://github.com/hackforla/website/pull/3631#issuecomment-1280154021) at 2022-10-16 06:40 PM PDT -github-actions,2022-10-17T10:18:35Z,- github-actions commented on pull request: [3632](https://github.com/hackforla/website/pull/3632#issuecomment-1280627591) at 2022-10-17 03:18 AM PDT -github-actions,2022-10-17T23:02:58Z,- github-actions commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1281607535) at 2022-10-17 04:02 PM PDT -github-actions,2022-10-19T05:18:28Z,- github-actions commented on pull request: [3642](https://github.com/hackforla/website/pull/3642#issuecomment-1283443851) at 2022-10-18 10:18 PM PDT -github-actions,2022-10-20T03:16:19Z,- github-actions commented on pull request: [3643](https://github.com/hackforla/website/pull/3643#issuecomment-1284857753) at 2022-10-19 08:16 PM PDT -github-actions,2022-10-20T20:13:35Z,- github-actions commented on pull request: [3645](https://github.com/hackforla/website/pull/3645#issuecomment-1286086410) at 2022-10-20 01:13 PM PDT -github-actions,2022-10-21T03:00:59Z,- github-actions commented on pull request: [3646](https://github.com/hackforla/website/pull/3646#issuecomment-1286395259) at 2022-10-20 08:00 PM PDT -github-actions,2022-10-21T21:38:33Z,- github-actions commented on pull request: [3647](https://github.com/hackforla/website/pull/3647#issuecomment-1287461383) at 2022-10-21 02:38 PM PDT -github-actions,2022-10-22T01:43:10Z,- github-actions commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287575835) at 2022-10-21 06:43 PM PDT -github-actions,2022-10-22T18:54:54Z,- github-actions commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1287883348) at 2022-10-22 11:54 AM PDT -github-actions,2022-10-23T21:19:58Z,- github-actions commented on pull request: [3650](https://github.com/hackforla/website/pull/3650#issuecomment-1288203691) at 2022-10-23 02:19 PM PDT -github-actions,2022-10-24T07:54:11Z,- github-actions commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1288570526) at 2022-10-24 12:54 AM PDT -github-actions,2022-10-24T22:51:43Z,- github-actions commented on pull request: [3653](https://github.com/hackforla/website/pull/3653#issuecomment-1289731227) at 2022-10-24 03:51 PM PDT -github-actions,2022-10-25T00:22:09Z,- github-actions commented on pull request: [3654](https://github.com/hackforla/website/pull/3654#issuecomment-1289809946) at 2022-10-24 05:22 PM PDT -github-actions,2022-10-25T01:20:42Z,- github-actions commented on pull request: [3655](https://github.com/hackforla/website/pull/3655#issuecomment-1289852669) at 2022-10-24 06:20 PM PDT -github-actions,2022-10-25T02:05:48Z,- github-actions commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1289878356) at 2022-10-24 07:05 PM PDT -github-actions,2022-10-25T02:46:21Z,- github-actions commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1289903423) at 2022-10-24 07:46 PM PDT -github-actions,2022-10-25T07:41:29Z,- github-actions commented on pull request: [3658](https://github.com/hackforla/website/pull/3658#issuecomment-1290126342) at 2022-10-25 12:41 AM PDT -github-actions,2022-10-25T21:48:50Z,- github-actions commented on pull request: [3659](https://github.com/hackforla/website/pull/3659#issuecomment-1291180010) at 2022-10-25 02:48 PM PDT -github-actions,2022-10-26T01:30:34Z,- github-actions commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1291350193) at 2022-10-25 06:30 PM PDT -github-actions,2022-10-26T08:06:34Z,- github-actions commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1291653197) at 2022-10-26 01:06 AM PDT -github-actions,2022-10-26T21:33:54Z,- github-actions commented on pull request: [3666](https://github.com/hackforla/website/pull/3666#issuecomment-1292677267) at 2022-10-26 02:33 PM PDT -github-actions,2022-10-27T06:42:29Z,- github-actions commented on pull request: [3668](https://github.com/hackforla/website/pull/3668#issuecomment-1293065616) at 2022-10-26 11:42 PM PDT -github-actions,2022-10-28T06:17:22Z,- github-actions commented on pull request: [3671](https://github.com/hackforla/website/pull/3671#issuecomment-1294512789) at 2022-10-27 11:17 PM PDT -github-actions,2022-10-28T19:27:27Z,- github-actions commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1295373357) at 2022-10-28 12:27 PM PDT -github-actions,2022-10-29T01:33:26Z,- github-actions commented on pull request: [3673](https://github.com/hackforla/website/pull/3673#issuecomment-1295680655) at 2022-10-28 06:33 PM PDT -github-actions,2022-10-29T22:04:15Z,- github-actions commented on pull request: [3674](https://github.com/hackforla/website/pull/3674#issuecomment-1295997067) at 2022-10-29 03:04 PM PDT -github-actions,2022-10-30T08:46:25Z,- github-actions commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1296171449) at 2022-10-30 01:46 AM PDT -github-actions,2022-10-30T08:50:48Z,- github-actions commented on pull request: [3676](https://github.com/hackforla/website/pull/3676#issuecomment-1296172836) at 2022-10-30 01:50 AM PDT -github-actions,2022-10-31T03:19:30Z,- github-actions commented on pull request: [3677](https://github.com/hackforla/website/pull/3677#issuecomment-1296485517) at 2022-10-30 08:19 PM PDT -github-actions,2022-10-31T19:52:11Z,- github-actions commented on pull request: [3679](https://github.com/hackforla/website/pull/3679#issuecomment-1297597126) at 2022-10-31 12:52 PM PDT -github-actions,2022-10-31T19:57:14Z,- github-actions commented on pull request: [3680](https://github.com/hackforla/website/pull/3680#issuecomment-1297602579) at 2022-10-31 12:57 PM PDT -github-actions,2022-11-01T01:02:11Z,- github-actions commented on pull request: [3681](https://github.com/hackforla/website/pull/3681#issuecomment-1297872366) at 2022-10-31 06:02 PM PDT -github-actions,2022-11-01T05:26:26Z,- github-actions commented on pull request: [3686](https://github.com/hackforla/website/pull/3686#issuecomment-1298047276) at 2022-10-31 10:26 PM PDT -github-actions,2022-11-01T17:04:17Z,- github-actions commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1298840403) at 2022-11-01 10:04 AM PDT -github-actions,2022-11-02T05:06:15Z,- github-actions commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1299577185) at 2022-11-01 10:06 PM PDT -github-actions,2022-11-03T04:03:04Z,- github-actions commented on pull request: [3692](https://github.com/hackforla/website/pull/3692#issuecomment-1301615172) at 2022-11-02 09:03 PM PDT -github-actions,2022-11-05T05:08:19Z,- github-actions commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304408471) at 2022-11-04 09:08 PM PST -github-actions,2022-11-05T07:05:26Z,- github-actions commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304427514) at 2022-11-04 11:05 PM PST -github-actions,2022-11-07T23:37:37Z,- github-actions commented on pull request: [3698](https://github.com/hackforla/website/pull/3698#issuecomment-1306376424) at 2022-11-07 03:37 PM PST -github-actions,2022-11-08T06:52:50Z,- github-actions commented on pull request: [3699](https://github.com/hackforla/website/pull/3699#issuecomment-1306716920) at 2022-11-07 10:52 PM PST -github-actions,2022-11-08T12:53:43Z,- github-actions commented on pull request: [3700](https://github.com/hackforla/website/pull/3700#issuecomment-1307169225) at 2022-11-08 04:53 AM PST -github-actions,2022-11-08T23:30:55Z,- github-actions commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1307976027) at 2022-11-08 03:30 PM PST -github-actions,2022-11-09T00:24:52Z,- github-actions commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1308021271) at 2022-11-08 04:24 PM PST -github-actions,2022-11-09T02:38:59Z,- github-actions commented on pull request: [3705](https://github.com/hackforla/website/pull/3705#issuecomment-1308122043) at 2022-11-08 06:38 PM PST -github-actions,2022-11-10T21:22:40Z,- github-actions commented on pull request: [3713](https://github.com/hackforla/website/pull/3713#issuecomment-1310907599) at 2022-11-10 01:22 PM PST -github-actions,2022-11-11T02:11:18Z,- github-actions commented on pull request: [3714](https://github.com/hackforla/website/pull/3714#issuecomment-1311138562) at 2022-11-10 06:11 PM PST -github-actions,2022-11-11T03:53:05Z,- github-actions commented on pull request: [3715](https://github.com/hackforla/website/pull/3715#issuecomment-1311198134) at 2022-11-10 07:53 PM PST -github-actions,2022-11-12T07:56:32Z,- github-actions commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312403138) at 2022-11-11 11:56 PM PST -github-actions,2022-11-14T04:54:59Z,- github-actions commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1313095078) at 2022-11-13 08:54 PM PST -github-actions,2022-11-15T00:33:27Z,- github-actions commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314594651) at 2022-11-14 04:33 PM PST -github-actions,2022-11-15T06:44:57Z,- github-actions commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1314847589) at 2022-11-14 10:44 PM PST -github-actions,2022-11-15T18:39:13Z,- github-actions commented on pull request: [3721](https://github.com/hackforla/website/pull/3721#issuecomment-1315718247) at 2022-11-15 10:39 AM PST -github-actions,2022-11-16T08:50:25Z,- github-actions commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1316618661) at 2022-11-16 12:50 AM PST -github-actions,2022-11-16T19:38:48Z,- github-actions commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1317571560) at 2022-11-16 11:38 AM PST -github-actions,2022-11-16T21:58:39Z,- github-actions commented on pull request: [3727](https://github.com/hackforla/website/pull/3727#issuecomment-1317725259) at 2022-11-16 01:58 PM PST -github-actions,2022-11-17T01:08:52Z,- github-actions commented on pull request: [3728](https://github.com/hackforla/website/pull/3728#issuecomment-1317909553) at 2022-11-16 05:08 PM PST -github-actions,2022-11-17T19:57:23Z,- github-actions commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319131274) at 2022-11-17 11:57 AM PST -github-actions,2022-11-18T00:47:59Z,- github-actions commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319405778) at 2022-11-17 04:47 PM PST -github-actions,2022-11-20T01:07:44Z,- github-actions commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321005358) at 2022-11-19 05:07 PM PST -github-actions,2022-11-21T21:56:25Z,- github-actions commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1322702043) at 2022-11-21 01:56 PM PST -github-actions,2022-11-21T22:23:08Z,- github-actions commented on pull request: [3737](https://github.com/hackforla/website/pull/3737#issuecomment-1322729626) at 2022-11-21 02:23 PM PST -github-actions,2022-11-22T02:42:29Z,- github-actions commented on pull request: [3739](https://github.com/hackforla/website/pull/3739#issuecomment-1322946215) at 2022-11-21 06:42 PM PST -github-actions,2022-11-22T02:42:56Z,- github-actions commented on pull request: [3740](https://github.com/hackforla/website/pull/3740#issuecomment-1322946594) at 2022-11-21 06:42 PM PST -github-actions,2022-11-22T07:25:01Z,- github-actions commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1323222699) at 2022-11-21 11:25 PM PST -github-actions,2022-11-23T03:43:17Z,- github-actions commented on pull request: [3743](https://github.com/hackforla/website/pull/3743#issuecomment-1324511609) at 2022-11-22 07:43 PM PST -github-actions,2022-11-25T03:57:23Z,- github-actions commented on pull request: [3745](https://github.com/hackforla/website/pull/3745#issuecomment-1326997721) at 2022-11-24 07:57 PM PST -github-actions,2022-11-27T22:13:35Z,- github-actions commented on pull request: [3749](https://github.com/hackforla/website/pull/3749#issuecomment-1328352655) at 2022-11-27 02:13 PM PST -github-actions,2022-11-28T06:29:09Z,- github-actions commented on pull request: [3751](https://github.com/hackforla/website/pull/3751#issuecomment-1328605843) at 2022-11-27 10:29 PM PST -github-actions,2022-11-28T18:30:26Z,- github-actions commented on pull request: [3752](https://github.com/hackforla/website/pull/3752#issuecomment-1329555233) at 2022-11-28 10:30 AM PST -github-actions,2022-11-28T21:59:43Z,- github-actions commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1329809392) at 2022-11-28 01:59 PM PST -github-actions,2022-11-30T01:15:09Z,- github-actions commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1331520428) at 2022-11-29 05:15 PM PST -github-actions,2022-12-02T04:10:29Z,- github-actions commented on pull request: [3762](https://github.com/hackforla/website/pull/3762#issuecomment-1334740191) at 2022-12-01 08:10 PM PST -github-actions,2022-12-02T21:55:50Z,- github-actions commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1335883373) at 2022-12-02 01:55 PM PST -github-actions,2022-12-06T01:13:32Z,- github-actions commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1338520787) at 2022-12-05 05:13 PM PST -github-actions,2022-12-09T06:33:41Z,- github-actions commented on pull request: [3768](https://github.com/hackforla/website/pull/3768#issuecomment-1343911309) at 2022-12-08 10:33 PM PST -github-actions,2022-12-27T19:49:00Z,- github-actions commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1366135336) at 2022-12-27 11:49 AM PST -github-actions,2023-01-05T08:01:20Z,- github-actions commented on pull request: [3795](https://github.com/hackforla/website/pull/3795#issuecomment-1371892524) at 2023-01-05 12:01 AM PST -github-actions,2023-01-06T23:23:32Z,- github-actions commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1374249934) at 2023-01-06 03:23 PM PST -github-actions,2023-01-09T17:38:00Z,- github-actions commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1376004145) at 2023-01-09 09:38 AM PST -github-actions,2023-01-09T20:20:07Z,- github-actions commented on pull request: [3800](https://github.com/hackforla/website/pull/3800#issuecomment-1376266543) at 2023-01-09 12:20 PM PST -github-actions,2023-01-09T22:20:10Z,- github-actions commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1376410119) at 2023-01-09 02:20 PM PST -github-actions,2023-01-10T16:04:53Z,- github-actions commented on pull request: [3804](https://github.com/hackforla/website/pull/3804#issuecomment-1377495195) at 2023-01-10 08:04 AM PST -github-actions,2023-01-10T21:10:08Z,- github-actions commented on pull request: [3806](https://github.com/hackforla/website/pull/3806#issuecomment-1377858924) at 2023-01-10 01:10 PM PST -github-actions,2023-01-10T21:54:38Z,- github-actions commented on pull request: [3807](https://github.com/hackforla/website/pull/3807#issuecomment-1377941654) at 2023-01-10 01:54 PM PST -github-actions,2023-01-11T01:09:09Z,- github-actions commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378106251) at 2023-01-10 05:09 PM PST -github-actions,2023-01-11T06:48:15Z,- github-actions commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1378307723) at 2023-01-10 10:48 PM PST -github-actions,2023-01-11T22:46:17Z,- github-actions commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1379580108) at 2023-01-11 02:46 PM PST -github-actions,2023-01-12T23:33:49Z,- github-actions commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1381106162) at 2023-01-12 03:33 PM PST -github-actions,2023-01-13T00:40:55Z,- github-actions commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1381160651) at 2023-01-12 04:40 PM PST -github-actions,2023-01-13T20:14:58Z,- github-actions commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1382342761) at 2023-01-13 12:14 PM PST -github-actions,2023-01-13T21:27:36Z,- github-actions commented on pull request: [3815](https://github.com/hackforla/website/pull/3815#issuecomment-1382410466) at 2023-01-13 01:27 PM PST -github-actions,2023-01-14T00:23:36Z,- github-actions commented on pull request: [3816](https://github.com/hackforla/website/pull/3816#issuecomment-1382603701) at 2023-01-13 04:23 PM PST -github-actions,2023-01-15T17:25:00Z,- github-actions commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1383206274) at 2023-01-15 09:25 AM PST -github-actions,2023-01-15T18:21:36Z,- github-actions commented on pull request: [3819](https://github.com/hackforla/website/pull/3819#issuecomment-1383218024) at 2023-01-15 10:21 AM PST -github-actions,2023-01-17T06:14:59Z,- github-actions commented on pull request: [3832](https://github.com/hackforla/website/pull/3832#issuecomment-1384885020) at 2023-01-16 10:14 PM PST -github-actions,2023-01-17T06:57:21Z,- github-actions commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1384915458) at 2023-01-16 10:57 PM PST -github-actions,2023-01-17T16:42:28Z,- github-actions commented on pull request: [3834](https://github.com/hackforla/website/pull/3834#issuecomment-1385710265) at 2023-01-17 08:42 AM PST -github-actions,2023-01-17T18:38:23Z,- github-actions commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1385863994) at 2023-01-17 10:38 AM PST -github-actions,2023-01-17T19:18:27Z,- github-actions commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1385928091) at 2023-01-17 11:18 AM PST -github-actions,2023-01-18T02:45:31Z,- github-actions commented on pull request: [3838](https://github.com/hackforla/website/pull/3838#issuecomment-1386396399) at 2023-01-17 06:45 PM PST -github-actions,2023-01-18T04:52:08Z,- github-actions commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1386485113) at 2023-01-17 08:52 PM PST -github-actions,2023-01-18T23:03:51Z,- github-actions commented on pull request: [3841](https://github.com/hackforla/website/pull/3841#issuecomment-1396209307) at 2023-01-18 03:03 PM PST -github-actions,2023-01-19T05:40:10Z,- github-actions commented on pull request: [3842](https://github.com/hackforla/website/pull/3842#issuecomment-1396465759) at 2023-01-18 09:40 PM PST -github-actions,2023-01-19T22:18:01Z,- github-actions commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1397686880) at 2023-01-19 02:18 PM PST -github-actions,2023-01-20T01:58:06Z,- github-actions commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1397832547) at 2023-01-19 05:58 PM PST -github-actions,2023-01-21T04:28:46Z,- github-actions commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1399175346) at 2023-01-20 08:28 PM PST -github-actions,2023-01-21T16:42:46Z,- github-actions commented on pull request: [3847](https://github.com/hackforla/website/pull/3847#issuecomment-1399285890) at 2023-01-21 08:42 AM PST -github-actions,2023-01-22T03:22:19Z,- github-actions commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1399394599) at 2023-01-21 07:22 PM PST -github-actions,2023-01-24T04:20:32Z,- github-actions commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1401376985) at 2023-01-23 08:20 PM PST -github-actions,2023-01-24T17:28:58Z,- github-actions commented on pull request: [3865](https://github.com/hackforla/website/pull/3865#issuecomment-1402323723) at 2023-01-24 09:28 AM PST -github-actions,2023-01-24T20:01:05Z,- github-actions commented on pull request: [3867](https://github.com/hackforla/website/pull/3867#issuecomment-1402538163) at 2023-01-24 12:01 PM PST -github-actions,2023-01-27T00:25:34Z,- github-actions commented on pull request: [3880](https://github.com/hackforla/website/pull/3880#issuecomment-1405853079) at 2023-01-26 04:25 PM PST -github-actions,2023-01-27T04:12:12Z,- github-actions commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1405995034) at 2023-01-26 08:12 PM PST -github-actions,2023-01-28T18:01:30Z,- github-actions commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1407453049) at 2023-01-28 10:01 AM PST -github-actions,2023-01-29T03:01:11Z,- github-actions commented on pull request: [3888](https://github.com/hackforla/website/pull/3888#issuecomment-1407546024) at 2023-01-28 07:01 PM PST -github-actions,2023-01-30T00:59:07Z,- github-actions commented on pull request: [3894](https://github.com/hackforla/website/pull/3894#issuecomment-1407834568) at 2023-01-29 04:59 PM PST -github-actions,2023-01-30T05:19:00Z,- github-actions commented on pull request: [3896](https://github.com/hackforla/website/pull/3896#issuecomment-1408015507) at 2023-01-29 09:19 PM PST -github-actions,2023-01-30T05:38:52Z,- github-actions commented on pull request: [3897](https://github.com/hackforla/website/pull/3897#issuecomment-1408028435) at 2023-01-29 09:38 PM PST -github-actions,2023-01-30T18:08:23Z,- github-actions commented on pull request: [3901](https://github.com/hackforla/website/pull/3901#issuecomment-1409084728) at 2023-01-30 10:08 AM PST -github-actions,2023-01-31T03:45:59Z,- github-actions commented on pull request: [3905](https://github.com/hackforla/website/pull/3905#issuecomment-1409710645) at 2023-01-30 07:45 PM PST -github-actions,2023-01-31T23:52:59Z,- github-actions commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1411230946) at 2023-01-31 03:52 PM PST -github-actions,2023-02-02T07:24:16Z,- github-actions commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1413264808) at 2023-02-01 11:24 PM PST -github-actions,2023-02-02T09:47:43Z,- github-actions commented on pull request: [3924](https://github.com/hackforla/website/pull/3924#issuecomment-1413437521) at 2023-02-02 01:47 AM PST -github-actions,2023-02-02T21:46:57Z,- github-actions commented on pull request: [3926](https://github.com/hackforla/website/pull/3926#issuecomment-1414418891) at 2023-02-02 01:46 PM PST -github-actions,2023-02-03T01:15:06Z,- github-actions commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1414580689) at 2023-02-02 05:15 PM PST -github-actions,2023-02-03T04:02:41Z,- github-actions commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1414855629) at 2023-02-02 08:02 PM PST -github-actions,2023-02-03T21:33:34Z,- github-actions commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1416425272) at 2023-02-03 01:33 PM PST -github-actions,2023-02-04T00:40:21Z,- github-actions commented on pull request: [3932](https://github.com/hackforla/website/pull/3932#issuecomment-1416561758) at 2023-02-03 04:40 PM PST -github-actions,2023-02-05T01:50:56Z,- github-actions commented on pull request: [3935](https://github.com/hackforla/website/pull/3935#issuecomment-1416897837) at 2023-02-04 05:50 PM PST -github-actions,2023-02-05T22:39:37Z,- github-actions commented on pull request: [3939](https://github.com/hackforla/website/pull/3939#issuecomment-1418284490) at 2023-02-05 02:39 PM PST -github-actions,2023-02-05T22:44:36Z,- github-actions commented on pull request: [3940](https://github.com/hackforla/website/pull/3940#issuecomment-1418285523) at 2023-02-05 02:44 PM PST -github-actions,2023-02-06T03:55:28Z,- github-actions commented on pull request: [3941](https://github.com/hackforla/website/pull/3941#issuecomment-1418471802) at 2023-02-05 07:55 PM PST -github-actions,2023-02-07T02:03:09Z,- github-actions commented on pull request: [3945](https://github.com/hackforla/website/pull/3945#issuecomment-1420062946) at 2023-02-06 06:03 PM PST -github-actions,2023-02-07T08:36:58Z,- github-actions commented on pull request: [3947](https://github.com/hackforla/website/pull/3947#issuecomment-1420390108) at 2023-02-07 12:36 AM PST -github-actions,2023-02-07T23:06:37Z,- github-actions commented on pull request: [3954](https://github.com/hackforla/website/pull/3954#issuecomment-1421593534) at 2023-02-07 03:06 PM PST -github-actions,2023-02-09T00:11:31Z,- github-actions commented on pull request: [3956](https://github.com/hackforla/website/pull/3956#issuecomment-1423404621) at 2023-02-08 04:11 PM PST -github-actions,2023-02-10T20:09:57Z,- github-actions commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1426284952) at 2023-02-10 12:09 PM PST -github-actions,2023-02-11T02:03:22Z,- github-actions commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1426571686) at 2023-02-10 06:03 PM PST -github-actions,2023-02-11T18:38:24Z,- github-actions commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1426848940) at 2023-02-11 10:38 AM PST -github-actions,2023-02-13T02:41:58Z,- github-actions commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1427248413) at 2023-02-12 06:41 PM PST -github-actions,2023-02-15T00:28:13Z,- github-actions commented on pull request: [3977](https://github.com/hackforla/website/pull/3977#issuecomment-1430578483) at 2023-02-14 04:28 PM PST -github-actions,2023-02-15T01:52:29Z,- github-actions commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1430639199) at 2023-02-14 05:52 PM PST -github-actions,2023-02-15T03:00:09Z,- github-actions commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1430682407) at 2023-02-14 07:00 PM PST -github-actions,2023-02-15T05:15:52Z,- github-actions commented on pull request: [3982](https://github.com/hackforla/website/pull/3982#issuecomment-1430769117) at 2023-02-14 09:15 PM PST -github-actions,2023-02-15T17:29:35Z,- github-actions commented on pull request: [3984](https://github.com/hackforla/website/pull/3984#issuecomment-1431743483) at 2023-02-15 09:29 AM PST -github-actions,2023-02-16T19:00:35Z,- github-actions commented on pull request: [3988](https://github.com/hackforla/website/pull/3988#issuecomment-1433574599) at 2023-02-16 11:00 AM PST -github-actions,2023-02-17T01:24:16Z,- github-actions commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1433964648) at 2023-02-16 05:24 PM PST -github-actions,2023-02-17T03:26:05Z,- github-actions commented on pull request: [3993](https://github.com/hackforla/website/pull/3993#issuecomment-1434044906) at 2023-02-16 07:26 PM PST -github-actions,2023-02-17T03:30:23Z,- github-actions commented on pull request: [3994](https://github.com/hackforla/website/pull/3994#issuecomment-1434047512) at 2023-02-16 07:30 PM PST -github-actions,2023-02-17T04:43:10Z,- github-actions commented on pull request: [3995](https://github.com/hackforla/website/pull/3995#issuecomment-1434094904) at 2023-02-16 08:43 PM PST -github-actions,2023-02-17T19:55:31Z,- github-actions commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435167029) at 2023-02-17 11:55 AM PST -github-actions,2023-02-17T20:02:20Z,- github-actions commented on pull request: [4003](https://github.com/hackforla/website/pull/4003#issuecomment-1435174290) at 2023-02-17 12:02 PM PST -github-actions,2023-02-17T21:32:37Z,- github-actions commented on pull request: [4004](https://github.com/hackforla/website/pull/4004#issuecomment-1435294945) at 2023-02-17 01:32 PM PST -github-actions,2023-02-18T05:30:36Z,- github-actions commented on pull request: [4005](https://github.com/hackforla/website/pull/4005#issuecomment-1435489858) at 2023-02-17 09:30 PM PST -github-actions,2023-02-20T03:07:54Z,- github-actions commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1436249448) at 2023-02-19 07:07 PM PST -github-actions,2023-02-20T23:06:48Z,- github-actions commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1437654314) at 2023-02-20 03:06 PM PST -github-actions,2023-02-21T04:43:09Z,- github-actions commented on pull request: [4018](https://github.com/hackforla/website/pull/4018#issuecomment-1437850770) at 2023-02-20 08:43 PM PST -github-actions,2023-02-21T08:30:05Z,- github-actions commented on pull request: [4019](https://github.com/hackforla/website/pull/4019#issuecomment-1438040049) at 2023-02-21 12:30 AM PST -github-actions,2023-02-21T18:38:46Z,- github-actions commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1438934159) at 2023-02-21 10:38 AM PST -github-actions,2023-02-22T01:02:01Z,- github-actions commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1439291166) at 2023-02-21 05:02 PM PST -github-actions,2023-02-22T01:17:58Z,- github-actions commented on pull request: [4022](https://github.com/hackforla/website/pull/4022#issuecomment-1439303017) at 2023-02-21 05:17 PM PST -github-actions,2023-02-23T06:10:37Z,- github-actions commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1441256465) at 2023-02-22 10:10 PM PST -github-actions,2023-02-23T08:30:03Z,- github-actions commented on pull request: [4029](https://github.com/hackforla/website/pull/4029#issuecomment-1441369929) at 2023-02-23 12:30 AM PST -github-actions,2023-02-23T18:21:42Z,- github-actions commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442230517) at 2023-02-23 10:21 AM PST -github-actions,2023-02-24T16:55:51Z,- github-actions commented on pull request: [4034](https://github.com/hackforla/website/pull/4034#issuecomment-1444014261) at 2023-02-24 08:55 AM PST -github-actions,2023-02-25T05:15:47Z,- github-actions commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1444997364) at 2023-02-24 09:15 PM PST -github-actions,2023-02-25T08:30:04Z,- github-actions commented on pull request: [4039](https://github.com/hackforla/website/pull/4039#issuecomment-1445029897) at 2023-02-25 12:30 AM PST -github-actions,2023-02-25T21:04:59Z,- github-actions commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1445206332) at 2023-02-25 01:04 PM PST -github-actions,2023-02-26T22:13:23Z,- github-actions commented on pull request: [4052](https://github.com/hackforla/website/pull/4052#issuecomment-1445481595) at 2023-02-26 02:13 PM PST -github-actions,2023-02-28T02:21:58Z,- github-actions commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1447468696) at 2023-02-27 06:21 PM PST -github-actions,2023-02-28T18:08:46Z,- github-actions commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1448641762) at 2023-02-28 10:08 AM PST -github-actions,2023-02-28T18:22:23Z,- github-actions commented on pull request: [4057](https://github.com/hackforla/website/pull/4057#issuecomment-1448658289) at 2023-02-28 10:22 AM PST -github-actions,2023-02-28T23:44:16Z,- github-actions commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1449094947) at 2023-02-28 03:44 PM PST -github-actions,2023-03-01T05:55:57Z,- github-actions commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1449392056) at 2023-02-28 09:55 PM PST -github-actions,2023-03-01T07:45:49Z,- github-actions commented on pull request: [4078](https://github.com/hackforla/website/pull/4078#issuecomment-1449497552) at 2023-02-28 11:45 PM PST -github-actions,2023-03-01T08:30:08Z,- github-actions commented on pull request: [4079](https://github.com/hackforla/website/pull/4079#issuecomment-1449554164) at 2023-03-01 12:30 AM PST -github-actions,2023-03-01T19:44:05Z,- github-actions commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1450751613) at 2023-03-01 11:44 AM PST -github-actions,2023-03-02T04:07:34Z,- github-actions commented on pull request: [4086](https://github.com/hackforla/website/pull/4086#issuecomment-1451271129) at 2023-03-01 08:07 PM PST -github-actions,2023-03-02T09:19:43Z,- github-actions commented on pull request: [4089](https://github.com/hackforla/website/pull/4089#issuecomment-1451548281) at 2023-03-02 01:19 AM PST -github-actions,2023-03-02T18:26:29Z,- github-actions commented on pull request: [4091](https://github.com/hackforla/website/pull/4091#issuecomment-1452341611) at 2023-03-02 10:26 AM PST -github-actions,2023-03-03T01:35:58Z,- github-actions commented on pull request: [4092](https://github.com/hackforla/website/pull/4092#issuecomment-1452808316) at 2023-03-02 05:35 PM PST -github-actions,2023-03-03T02:32:11Z,- github-actions commented on pull request: [4093](https://github.com/hackforla/website/pull/4093#issuecomment-1452867696) at 2023-03-02 06:32 PM PST -github-actions,2023-03-03T02:40:38Z,- github-actions commented on pull request: [4094](https://github.com/hackforla/website/pull/4094#issuecomment-1452872755) at 2023-03-02 06:40 PM PST -github-actions,2023-03-03T05:46:21Z,- github-actions commented on pull request: [4096](https://github.com/hackforla/website/pull/4096#issuecomment-1453008152) at 2023-03-02 09:46 PM PST -github-actions,2023-03-03T06:08:23Z,- github-actions commented on pull request: [4097](https://github.com/hackforla/website/pull/4097#issuecomment-1453025988) at 2023-03-02 10:08 PM PST -github-actions,2023-03-03T08:30:06Z,- github-actions commented on pull request: [4098](https://github.com/hackforla/website/pull/4098#issuecomment-1453157130) at 2023-03-03 12:30 AM PST -github-actions,2023-03-03T09:51:46Z,- github-actions commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1453258079) at 2023-03-03 01:51 AM PST -github-actions,2023-03-03T16:55:25Z,- github-actions commented on pull request: [4100](https://github.com/hackforla/website/pull/4100#issuecomment-1453818423) at 2023-03-03 08:55 AM PST -github-actions,2023-03-03T18:03:21Z,- github-actions commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1453900929) at 2023-03-03 10:03 AM PST -github-actions,2023-03-03T18:32:36Z,- github-actions commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1453931898) at 2023-03-03 10:32 AM PST -github-actions,2023-03-04T00:47:56Z,- github-actions commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1454305865) at 2023-03-03 04:47 PM PST -github-actions,2023-03-04T01:54:12Z,- github-actions commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1454331647) at 2023-03-03 05:54 PM PST -github-actions,2023-03-04T04:53:38Z,- github-actions commented on pull request: [4107](https://github.com/hackforla/website/pull/4107#issuecomment-1454430971) at 2023-03-03 08:53 PM PST -github-actions,2023-03-04T07:52:17Z,- github-actions commented on pull request: [4109](https://github.com/hackforla/website/pull/4109#issuecomment-1454657179) at 2023-03-03 11:52 PM PST -github-actions,2023-03-04T17:53:47Z,- github-actions commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454821169) at 2023-03-04 09:53 AM PST -github-actions,2023-03-05T16:47:42Z,- github-actions commented on pull request: [4114](https://github.com/hackforla/website/pull/4114#issuecomment-1455143124) at 2023-03-05 08:47 AM PST -github-actions,2023-03-05T20:42:47Z,- github-actions commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1455200007) at 2023-03-05 12:42 PM PST -github-actions,2023-03-06T17:55:05Z,- github-actions commented on pull request: [4119](https://github.com/hackforla/website/pull/4119#issuecomment-1456647766) at 2023-03-06 09:55 AM PST -github-actions,2023-03-07T00:10:58Z,- github-actions commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1457250012) at 2023-03-06 04:10 PM PST -github-actions,2023-03-07T00:57:04Z,- github-actions commented on pull request: [4122](https://github.com/hackforla/website/pull/4122#issuecomment-1457297820) at 2023-03-06 04:57 PM PST -github-actions,2023-03-07T04:23:06Z,- github-actions commented on pull request: [4123](https://github.com/hackforla/website/pull/4123#issuecomment-1457506094) at 2023-03-06 08:23 PM PST -github-actions,2023-03-07T17:19:39Z,- github-actions commented on pull request: [4125](https://github.com/hackforla/website/pull/4125#issuecomment-1458545448) at 2023-03-07 09:19 AM PST -github-actions,2023-03-07T22:44:55Z,- github-actions commented on pull request: [4126](https://github.com/hackforla/website/pull/4126#issuecomment-1458981320) at 2023-03-07 02:44 PM PST -github-actions,2023-03-08T05:52:28Z,- github-actions commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1459583013) at 2023-03-07 09:52 PM PST -github-actions,2023-03-08T08:10:35Z,- github-actions commented on pull request: [4133](https://github.com/hackforla/website/pull/4133#issuecomment-1459699405) at 2023-03-08 12:10 AM PST -github-actions,2023-03-09T02:39:31Z,- github-actions commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1461181275) at 2023-03-08 06:39 PM PST -github-actions,2023-03-09T03:33:07Z,- github-actions commented on pull request: [4137](https://github.com/hackforla/website/pull/4137#issuecomment-1461216906) at 2023-03-08 07:33 PM PST -github-actions,2023-03-09T06:37:08Z,- github-actions commented on pull request: [4139](https://github.com/hackforla/website/pull/4139#issuecomment-1461385695) at 2023-03-08 10:37 PM PST -github-actions,2023-03-09T07:23:26Z,- github-actions commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1461465255) at 2023-03-08 11:23 PM PST -github-actions,2023-03-09T23:38:43Z,- github-actions commented on pull request: [4143](https://github.com/hackforla/website/pull/4143#issuecomment-1462996208) at 2023-03-09 03:38 PM PST -github-actions,2023-03-10T04:43:30Z,- github-actions commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1463253185) at 2023-03-09 08:43 PM PST -github-actions,2023-03-10T23:29:18Z,- github-actions commented on pull request: [4147](https://github.com/hackforla/website/pull/4147#issuecomment-1464638811) at 2023-03-10 03:29 PM PST -github-actions,2023-03-11T06:26:48Z,- github-actions commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1464841088) at 2023-03-10 11:26 PM PDT -github-actions,2023-03-11T15:14:23Z,- github-actions commented on pull request: [4150](https://github.com/hackforla/website/pull/4150#issuecomment-1464932296) at 2023-03-11 08:14 AM PDT -github-actions,2023-03-13T04:17:17Z,- github-actions commented on pull request: [4156](https://github.com/hackforla/website/pull/4156#issuecomment-1465488145) at 2023-03-12 09:17 PM PDT -github-actions,2023-03-13T16:49:01Z,- github-actions commented on pull request: [4157](https://github.com/hackforla/website/pull/4157#issuecomment-1466512136) at 2023-03-13 09:49 AM PDT -github-actions,2023-03-14T05:24:43Z,- github-actions commented on pull request: [4175](https://github.com/hackforla/website/pull/4175#issuecomment-1467380670) at 2023-03-13 10:24 PM PDT -github-actions,2023-03-14T13:37:28Z,- github-actions commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1468119776) at 2023-03-14 06:37 AM PDT -github-actions,2023-03-14T17:19:52Z,- github-actions commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1468514653) at 2023-03-14 10:19 AM PDT -github-actions,2023-03-14T20:31:56Z,- github-actions commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1468798989) at 2023-03-14 01:31 PM PDT -github-actions,2023-03-14T21:05:27Z,- github-actions commented on pull request: [4182](https://github.com/hackforla/website/pull/4182#issuecomment-1468844278) at 2023-03-14 02:05 PM PDT -github-actions,2023-03-14T22:13:49Z,- github-actions commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1468911402) at 2023-03-14 03:13 PM PDT -github-actions,2023-03-15T03:03:46Z,- github-actions commented on pull request: [4191](https://github.com/hackforla/website/pull/4191#issuecomment-1469239739) at 2023-03-14 08:03 PM PDT -github-actions,2023-03-16T03:35:44Z,- github-actions commented on pull request: [4194](https://github.com/hackforla/website/pull/4194#issuecomment-1471248115) at 2023-03-15 08:35 PM PDT -github-actions,2023-03-16T17:59:43Z,- github-actions commented on pull request: [4195](https://github.com/hackforla/website/pull/4195#issuecomment-1472457990) at 2023-03-16 10:59 AM PDT -github-actions,2023-03-16T19:59:40Z,- github-actions commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472658796) at 2023-03-16 12:59 PM PDT -github-actions,2023-03-16T20:32:21Z,- github-actions commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1472700535) at 2023-03-16 01:32 PM PDT -github-actions,2023-03-16T21:27:50Z,- github-actions commented on pull request: [4198](https://github.com/hackforla/website/pull/4198#issuecomment-1472768054) at 2023-03-16 02:27 PM PDT -github-actions,2023-03-17T02:51:34Z,- github-actions commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1473040546) at 2023-03-16 07:51 PM PDT -github-actions,2023-03-17T08:12:14Z,- github-actions commented on pull request: [4201](https://github.com/hackforla/website/pull/4201#issuecomment-1473354591) at 2023-03-17 01:12 AM PDT -github-actions,2023-03-17T17:44:57Z,- github-actions commented on pull request: [4202](https://github.com/hackforla/website/pull/4202#issuecomment-1474193921) at 2023-03-17 10:44 AM PDT -github-actions,2023-03-17T21:20:37Z,- github-actions commented on pull request: [4203](https://github.com/hackforla/website/pull/4203#issuecomment-1474413478) at 2023-03-17 02:20 PM PDT -github-actions,2023-03-18T00:28:26Z,- github-actions commented on pull request: [4204](https://github.com/hackforla/website/pull/4204#issuecomment-1474542180) at 2023-03-17 05:28 PM PDT -github-actions,2023-03-18T02:08:22Z,- github-actions commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1474596173) at 2023-03-17 07:08 PM PDT -github-actions,2023-03-18T09:19:40Z,- github-actions commented on pull request: [4207](https://github.com/hackforla/website/pull/4207#issuecomment-1474785101) at 2023-03-18 02:19 AM PDT -github-actions,2023-03-18T22:11:04Z,- github-actions commented on pull request: [4209](https://github.com/hackforla/website/pull/4209#issuecomment-1475012000) at 2023-03-18 03:11 PM PDT -github-actions,2023-03-19T02:01:14Z,- github-actions commented on pull request: [4210](https://github.com/hackforla/website/pull/4210#issuecomment-1475069089) at 2023-03-18 07:01 PM PDT -github-actions,2023-03-19T20:23:39Z,- github-actions commented on pull request: [4213](https://github.com/hackforla/website/pull/4213#issuecomment-1475387054) at 2023-03-19 01:23 PM PDT -github-actions,2023-03-19T22:23:12Z,- github-actions commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1475416967) at 2023-03-19 03:23 PM PDT -github-actions,2023-03-20T03:49:45Z,- github-actions commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1475577834) at 2023-03-19 08:49 PM PDT -github-actions,2023-03-21T02:40:42Z,- github-actions commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1477202802) at 2023-03-20 07:40 PM PDT -github-actions,2023-03-21T08:40:10Z,- github-actions commented on pull request: [4223](https://github.com/hackforla/website/pull/4223#issuecomment-1477450257) at 2023-03-21 01:40 AM PDT -github-actions,2023-03-21T17:21:01Z,- github-actions commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478299623) at 2023-03-21 10:21 AM PDT -github-actions,2023-03-21T23:33:31Z,- github-actions commented on pull request: [4228](https://github.com/hackforla/website/pull/4228#issuecomment-1478726670) at 2023-03-21 04:33 PM PDT -github-actions,2023-03-22T04:55:55Z,- github-actions commented on pull request: [4234](https://github.com/hackforla/website/pull/4234#issuecomment-1478916723) at 2023-03-21 09:55 PM PDT -github-actions,2023-03-23T07:44:04Z,- github-actions commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1480727483) at 2023-03-23 12:44 AM PDT -github-actions,2023-03-23T07:58:00Z,- github-actions commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1480741494) at 2023-03-23 12:58 AM PDT -github-actions,2023-03-23T23:02:37Z,- github-actions commented on pull request: [4265](https://github.com/hackforla/website/pull/4265#issuecomment-1482022341) at 2023-03-23 04:02 PM PDT -github-actions,2023-03-24T00:55:04Z,- github-actions commented on pull request: [4266](https://github.com/hackforla/website/pull/4266#issuecomment-1482103022) at 2023-03-23 05:55 PM PDT -github-actions,2023-03-24T01:03:47Z,- github-actions commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1482108519) at 2023-03-23 06:03 PM PDT -github-actions,2023-03-24T01:37:29Z,- github-actions commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1482132433) at 2023-03-23 06:37 PM PDT -github-actions,2023-03-24T02:03:41Z,- github-actions commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482148599) at 2023-03-23 07:03 PM PDT -github-actions,2023-03-24T03:03:08Z,- github-actions commented on pull request: [4273](https://github.com/hackforla/website/pull/4273#issuecomment-1482184441) at 2023-03-23 08:03 PM PDT -github-actions,2023-03-24T05:09:06Z,- github-actions commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1482259449) at 2023-03-23 10:09 PM PDT -github-actions,2023-03-24T07:45:31Z,- github-actions commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1482384168) at 2023-03-24 12:45 AM PDT -github-actions,2023-03-24T18:06:30Z,- github-actions commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1483213642) at 2023-03-24 11:06 AM PDT -github-actions,2023-03-24T19:56:54Z,- github-actions commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1483339260) at 2023-03-24 12:56 PM PDT -github-actions,2023-03-25T21:04:51Z,- github-actions commented on pull request: [4289](https://github.com/hackforla/website/pull/4289#issuecomment-1483921851) at 2023-03-25 02:04 PM PDT -github-actions,2023-03-26T04:56:04Z,- github-actions commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1483995522) at 2023-03-25 09:56 PM PDT -github-actions,2023-03-26T15:01:14Z,- github-actions commented on pull request: [4292](https://github.com/hackforla/website/pull/4292#issuecomment-1484122980) at 2023-03-26 08:01 AM PDT -github-actions,2023-03-26T21:22:57Z,- github-actions commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1484228096) at 2023-03-26 02:22 PM PDT -github-actions,2023-03-27T23:23:21Z,- github-actions commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1485990504) at 2023-03-27 04:23 PM PDT -github-actions,2023-03-28T20:47:43Z,- github-actions commented on pull request: [4304](https://github.com/hackforla/website/pull/4304#issuecomment-1487571705) at 2023-03-28 01:47 PM PDT -github-actions,2023-03-28T21:06:49Z,- github-actions commented on pull request: [4305](https://github.com/hackforla/website/pull/4305#issuecomment-1487592144) at 2023-03-28 02:06 PM PDT -github-actions,2023-03-29T01:24:07Z,- github-actions commented on pull request: [4308](https://github.com/hackforla/website/pull/4308#issuecomment-1487816383) at 2023-03-28 06:24 PM PDT -github-actions,2023-03-29T03:13:37Z,- github-actions commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1487886787) at 2023-03-28 08:13 PM PDT -github-actions,2023-03-29T05:24:06Z,- github-actions commented on pull request: [4338](https://github.com/hackforla/website/pull/4338#issuecomment-1487965295) at 2023-03-28 10:24 PM PDT -github-actions,2023-03-29T09:49:31Z,- github-actions commented on pull request: [4340](https://github.com/hackforla/website/pull/4340#issuecomment-1488284971) at 2023-03-29 02:49 AM PDT -github-actions,2023-03-29T22:32:39Z,- github-actions commented on pull request: [4341](https://github.com/hackforla/website/pull/4341#issuecomment-1489423184) at 2023-03-29 03:32 PM PDT -github-actions,2023-03-30T09:31:55Z,- github-actions commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1489990912) at 2023-03-30 02:31 AM PDT -github-actions,2023-03-30T17:02:40Z,- github-actions commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490637399) at 2023-03-30 10:02 AM PDT -github-actions,2023-03-30T21:20:40Z,- github-actions commented on pull request: [4348](https://github.com/hackforla/website/pull/4348#issuecomment-1490977960) at 2023-03-30 02:20 PM PDT -github-actions,2023-03-31T05:05:44Z,- github-actions commented on pull request: [4353](https://github.com/hackforla/website/pull/4353#issuecomment-1491302485) at 2023-03-30 10:05 PM PDT -github-actions,2023-03-31T20:52:26Z,- github-actions commented on pull request: [4355](https://github.com/hackforla/website/pull/4355#issuecomment-1492594057) at 2023-03-31 01:52 PM PDT -github-actions,2023-03-31T21:15:48Z,- github-actions commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1492615476) at 2023-03-31 02:15 PM PDT -github-actions,2023-04-01T00:55:41Z,- github-actions commented on pull request: [4359](https://github.com/hackforla/website/pull/4359#issuecomment-1492764963) at 2023-03-31 05:55 PM PDT -github-actions,2023-04-01T17:12:34Z,- github-actions commented on pull request: [4361](https://github.com/hackforla/website/pull/4361#issuecomment-1493049510) at 2023-04-01 10:12 AM PDT -github-actions,2023-04-02T04:03:32Z,- github-actions commented on pull request: [4365](https://github.com/hackforla/website/pull/4365#issuecomment-1493217236) at 2023-04-01 09:03 PM PDT -github-actions,2023-04-02T19:34:57Z,- github-actions commented on pull request: [4372](https://github.com/hackforla/website/pull/4372#issuecomment-1493422356) at 2023-04-02 12:34 PM PDT -github-actions,2023-04-02T19:35:52Z,- github-actions commented on pull request: [4373](https://github.com/hackforla/website/pull/4373#issuecomment-1493422527) at 2023-04-02 12:35 PM PDT -github-actions,2023-04-03T00:09:54Z,- github-actions commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1493479704) at 2023-04-02 05:09 PM PDT -github-actions,2023-04-03T04:13:21Z,- github-actions commented on pull request: [4384](https://github.com/hackforla/website/pull/4384#issuecomment-1493624928) at 2023-04-02 09:13 PM PDT -github-actions,2023-04-03T18:48:07Z,- github-actions commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1494808310) at 2023-04-03 11:48 AM PDT -github-actions,2023-04-03T22:39:13Z,- github-actions commented on pull request: [4391](https://github.com/hackforla/website/pull/4391#issuecomment-1495078013) at 2023-04-03 03:39 PM PDT -github-actions,2023-04-04T00:25:57Z,- github-actions commented on pull request: [4402](https://github.com/hackforla/website/pull/4402#issuecomment-1495169182) at 2023-04-03 05:25 PM PDT -github-actions,2023-04-04T04:02:30Z,- github-actions commented on pull request: [4403](https://github.com/hackforla/website/pull/4403#issuecomment-1495314570) at 2023-04-03 09:02 PM PDT -github-actions,2023-04-04T05:29:07Z,- github-actions commented on pull request: [4404](https://github.com/hackforla/website/pull/4404#issuecomment-1495367988) at 2023-04-03 10:29 PM PDT -github-actions,2023-04-04T16:48:47Z,- github-actions commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496294283) at 2023-04-04 09:48 AM PDT -github-actions,2023-04-04T20:03:58Z,- github-actions commented on pull request: [4408](https://github.com/hackforla/website/pull/4408#issuecomment-1496526297) at 2023-04-04 01:03 PM PDT -github-actions,2023-04-04T23:23:15Z,- github-actions commented on pull request: [4411](https://github.com/hackforla/website/pull/4411#issuecomment-1496717572) at 2023-04-04 04:23 PM PDT -github-actions,2023-04-04T23:53:15Z,- github-actions commented on pull request: [4412](https://github.com/hackforla/website/pull/4412#issuecomment-1496737095) at 2023-04-04 04:53 PM PDT -github-actions,2023-04-05T01:23:17Z,- github-actions commented on pull request: [4421](https://github.com/hackforla/website/pull/4421#issuecomment-1496797625) at 2023-04-04 06:23 PM PDT -github-actions,2023-04-05T02:07:22Z,- github-actions commented on pull request: [4424](https://github.com/hackforla/website/pull/4424#issuecomment-1496823569) at 2023-04-04 07:07 PM PDT -github-actions,2023-04-05T02:42:27Z,- github-actions commented on pull request: [4425](https://github.com/hackforla/website/pull/4425#issuecomment-1496842398) at 2023-04-04 07:42 PM PDT -github-actions,2023-04-06T04:10:51Z,- github-actions commented on pull request: [4428](https://github.com/hackforla/website/pull/4428#issuecomment-1498465197) at 2023-04-05 09:10 PM PDT -github-actions,2023-04-06T16:47:22Z,- github-actions commented on pull request: [4430](https://github.com/hackforla/website/pull/4430#issuecomment-1499347352) at 2023-04-06 09:47 AM PDT -github-actions,2023-04-06T17:42:47Z,- github-actions commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499411118) at 2023-04-06 10:42 AM PDT -github-actions,2023-04-06T23:07:12Z,- github-actions commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1499732774) at 2023-04-06 04:07 PM PDT -github-actions,2023-04-07T05:46:57Z,- github-actions commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1499960374) at 2023-04-06 10:46 PM PDT -github-actions,2023-04-08T02:54:32Z,- github-actions commented on pull request: [4443](https://github.com/hackforla/website/pull/4443#issuecomment-1500771749) at 2023-04-07 07:54 PM PDT -github-actions,2023-04-09T03:55:48Z,- github-actions commented on pull request: [4444](https://github.com/hackforla/website/pull/4444#issuecomment-1501033051) at 2023-04-08 08:55 PM PDT -github-actions,2023-04-09T11:09:30Z,- github-actions commented on pull request: [4441](https://github.com/hackforla/website/pull/4441#issuecomment-1501103512) at 2023-04-09 04:09 AM PDT -github-actions,2023-04-09T18:08:17Z,- github-actions commented on pull request: [4453](https://github.com/hackforla/website/pull/4453#issuecomment-1501183400) at 2023-04-09 11:08 AM PDT -github-actions,2023-04-10T23:09:26Z,- github-actions commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1502452098) at 2023-04-10 04:09 PM PDT -github-actions,2023-04-10T23:49:41Z,- github-actions commented on pull request: [4462](https://github.com/hackforla/website/pull/4462#issuecomment-1502480380) at 2023-04-10 04:49 PM PDT -github-actions,2023-04-10T23:52:06Z,- github-actions commented on pull request: [4463](https://github.com/hackforla/website/pull/4463#issuecomment-1502481591) at 2023-04-10 04:52 PM PDT -github-actions,2023-04-10T23:54:15Z,- github-actions commented on pull request: [4464](https://github.com/hackforla/website/pull/4464#issuecomment-1502482982) at 2023-04-10 04:54 PM PDT -github-actions,2023-04-11T02:08:03Z,- github-actions commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1502586616) at 2023-04-10 07:08 PM PDT -github-actions,2023-04-11T17:51:12Z,- github-actions commented on pull request: [4467](https://github.com/hackforla/website/pull/4467#issuecomment-1503841901) at 2023-04-11 10:51 AM PDT -github-actions,2023-04-12T00:42:19Z,- github-actions commented on pull request: [4472](https://github.com/hackforla/website/pull/4472#issuecomment-1504342304) at 2023-04-11 05:42 PM PDT -github-actions,2023-04-12T02:25:27Z,- github-actions commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1504453690) at 2023-04-11 07:25 PM PDT -github-actions,2023-04-12T20:13:41Z,- github-actions commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1505868480) at 2023-04-12 01:13 PM PDT -github-actions,2023-04-13T04:26:04Z,- github-actions commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1506324580) at 2023-04-12 09:26 PM PDT -github-actions,2023-04-13T06:25:56Z,- github-actions commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1506416096) at 2023-04-12 11:25 PM PDT -github-actions,2023-04-13T14:05:58Z,- github-actions commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507033368) at 2023-04-13 07:05 AM PDT -github-actions,2023-04-13T17:19:26Z,- github-actions commented on pull request: [4501](https://github.com/hackforla/website/pull/4501#issuecomment-1507330992) at 2023-04-13 10:19 AM PDT -github-actions,2023-04-14T01:38:07Z,- github-actions commented on pull request: [4511](https://github.com/hackforla/website/pull/4511#issuecomment-1507809418) at 2023-04-13 06:38 PM PDT -github-actions,2023-04-14T19:00:32Z,- github-actions commented on pull request: [4516](https://github.com/hackforla/website/pull/4516#issuecomment-1509092374) at 2023-04-14 12:00 PM PDT -github-actions,2023-04-14T23:39:14Z,- github-actions commented on pull request: [4519](https://github.com/hackforla/website/pull/4519#issuecomment-1509394631) at 2023-04-14 04:39 PM PDT -github-actions,2023-04-15T19:52:23Z,- github-actions commented on pull request: [4520](https://github.com/hackforla/website/pull/4520#issuecomment-1509944375) at 2023-04-15 12:52 PM PDT -github-actions,2023-04-16T06:14:39Z,- github-actions commented on pull request: [4521](https://github.com/hackforla/website/pull/4521#issuecomment-1510102483) at 2023-04-15 11:14 PM PDT -github-actions,2023-04-16T20:24:37Z,- github-actions commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1510478000) at 2023-04-16 01:24 PM PDT -github-actions,2023-04-17T04:31:00Z,- github-actions commented on pull request: [4528](https://github.com/hackforla/website/pull/4528#issuecomment-1510682304) at 2023-04-16 09:31 PM PDT -github-actions,2023-04-17T17:14:53Z,- github-actions commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1511769602) at 2023-04-17 10:14 AM PDT -github-actions,2023-04-18T22:54:23Z,- github-actions commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1513885153) at 2023-04-18 03:54 PM PDT -github-actions,2023-04-19T19:09:52Z,- github-actions commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515236964) at 2023-04-19 12:09 PM PDT -github-actions,2023-04-20T02:54:06Z,- github-actions commented on pull request: [4549](https://github.com/hackforla/website/pull/4549#issuecomment-1515638716) at 2023-04-19 07:54 PM PDT -github-actions,2023-04-21T05:18:19Z,- github-actions commented on pull request: [4550](https://github.com/hackforla/website/pull/4550#issuecomment-1517274881) at 2023-04-20 10:18 PM PDT -github-actions,2023-04-21T21:51:11Z,- github-actions commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1518365655) at 2023-04-21 02:51 PM PDT -github-actions,2023-04-23T16:47:43Z,- github-actions commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519108363) at 2023-04-23 09:47 AM PDT -github-actions,2023-04-24T04:51:38Z,- github-actions commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1519378908) at 2023-04-23 09:51 PM PDT -github-actions,2023-04-24T20:05:52Z,- github-actions commented on pull request: [4561](https://github.com/hackforla/website/pull/4561#issuecomment-1520758200) at 2023-04-24 01:05 PM PDT -github-actions,2023-04-27T01:28:29Z,- github-actions commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1524385622) at 2023-04-26 06:28 PM PDT -github-actions,2023-04-27T01:42:28Z,- github-actions commented on pull request: [4570](https://github.com/hackforla/website/pull/4570#issuecomment-1524414037) at 2023-04-26 06:42 PM PDT -github-actions,2023-04-27T08:43:50Z,- github-actions commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1525147195) at 2023-04-27 01:43 AM PDT -github-actions,2023-04-27T21:24:47Z,- github-actions commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1526508076) at 2023-04-27 02:24 PM PDT -github-actions,2023-04-27T23:19:42Z,- github-actions commented on pull request: [4576](https://github.com/hackforla/website/pull/4576#issuecomment-1526734871) at 2023-04-27 04:19 PM PDT -github-actions,2023-04-28T01:39:23Z,- github-actions commented on pull request: [4580](https://github.com/hackforla/website/pull/4580#issuecomment-1526859033) at 2023-04-27 06:39 PM PDT -github-actions,2023-04-28T02:27:30Z,- github-actions commented on pull request: [4581](https://github.com/hackforla/website/pull/4581#issuecomment-1526890250) at 2023-04-27 07:27 PM PDT -github-actions,2023-04-28T02:49:33Z,- github-actions commented on pull request: [4582](https://github.com/hackforla/website/pull/4582#issuecomment-1526905947) at 2023-04-27 07:49 PM PDT -github-actions,2023-04-28T20:13:18Z,- github-actions commented on pull request: [4584](https://github.com/hackforla/website/pull/4584#issuecomment-1528042394) at 2023-04-28 01:13 PM PDT -github-actions,2023-05-01T00:50:09Z,- github-actions commented on pull request: [4586](https://github.com/hackforla/website/pull/4586#issuecomment-1529204164) at 2023-04-30 05:50 PM PDT -github-actions,2023-05-04T07:24:07Z,- github-actions commented on pull request: [4596](https://github.com/hackforla/website/pull/4596#issuecomment-1534214620) at 2023-05-04 12:24 AM PDT -github-actions,2023-05-04T19:29:50Z,- github-actions commented on pull request: [4598](https://github.com/hackforla/website/pull/4598#issuecomment-1535299473) at 2023-05-04 12:29 PM PDT -github-actions,2023-05-04T23:41:15Z,- github-actions commented on pull request: [4599](https://github.com/hackforla/website/pull/4599#issuecomment-1535531700) at 2023-05-04 04:41 PM PDT -github-actions,2023-05-05T00:50:15Z,- github-actions commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1535565863) at 2023-05-04 05:50 PM PDT -github-actions,2023-05-05T04:58:48Z,- github-actions commented on pull request: [4602](https://github.com/hackforla/website/pull/4602#issuecomment-1535695059) at 2023-05-04 09:58 PM PDT -github-actions,2023-05-05T07:25:39Z,- github-actions commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1535837941) at 2023-05-05 12:25 AM PDT -github-actions,2023-05-08T23:21:43Z,- github-actions commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1539186241) at 2023-05-08 04:21 PM PDT -github-actions,2023-05-09T03:20:54Z,- github-actions commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1539330795) at 2023-05-08 08:20 PM PDT -github-actions,2023-05-09T07:02:12Z,- github-actions commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1539573646) at 2023-05-09 12:02 AM PDT -github-actions,2023-05-09T14:33:29Z,- github-actions commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1540247992) at 2023-05-09 07:33 AM PDT -github-actions,2023-05-10T00:52:30Z,- github-actions commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1541078895) at 2023-05-09 05:52 PM PDT -github-actions,2023-05-10T04:50:55Z,- github-actions commented on pull request: [4645](https://github.com/hackforla/website/pull/4645#issuecomment-1541348195) at 2023-05-09 09:50 PM PDT -github-actions,2023-05-10T10:40:22Z,- github-actions commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1541904407) at 2023-05-10 03:40 AM PDT -github-actions,2023-05-11T04:47:30Z,- github-actions commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1543326145) at 2023-05-10 09:47 PM PDT -github-actions,2023-05-11T05:08:13Z,- github-actions commented on pull request: [4651](https://github.com/hackforla/website/pull/4651#issuecomment-1543344178) at 2023-05-10 10:08 PM PDT -github-actions,2023-05-11T16:33:22Z,- github-actions commented on pull request: [4656](https://github.com/hackforla/website/pull/4656#issuecomment-1544312759) at 2023-05-11 09:33 AM PDT -github-actions,2023-05-11T21:40:16Z,- github-actions commented on pull request: [4657](https://github.com/hackforla/website/pull/4657#issuecomment-1544716138) at 2023-05-11 02:40 PM PDT -github-actions,2023-05-13T01:56:09Z,- github-actions commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1546492777) at 2023-05-12 06:56 PM PDT -github-actions,2023-05-14T11:03:28Z,- github-actions commented on pull request: [4663](https://github.com/hackforla/website/pull/4663#issuecomment-1546872474) at 2023-05-14 04:03 AM PDT -github-actions,2023-05-14T15:00:15Z,- github-actions commented on pull request: [4665](https://github.com/hackforla/website/pull/4665#issuecomment-1546919515) at 2023-05-14 08:00 AM PDT -github-actions,2023-05-14T17:17:28Z,- github-actions commented on pull request: [4666](https://github.com/hackforla/website/pull/4666#issuecomment-1546951371) at 2023-05-14 10:17 AM PDT -github-actions,2023-05-14T23:21:00Z,- github-actions commented on pull request: [4667](https://github.com/hackforla/website/pull/4667#issuecomment-1547025345) at 2023-05-14 04:21 PM PDT -github-actions,2023-05-15T02:12:56Z,- github-actions commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1547098625) at 2023-05-14 07:12 PM PDT -github-actions,2023-05-15T18:13:31Z,- github-actions commented on pull request: [4674](https://github.com/hackforla/website/pull/4674#issuecomment-1548333664) at 2023-05-15 11:13 AM PDT -github-actions,2023-05-15T20:32:59Z,- github-actions commented on pull request: [4675](https://github.com/hackforla/website/pull/4675#issuecomment-1548535003) at 2023-05-15 01:32 PM PDT -github-actions,2023-05-15T20:57:19Z,- github-actions commented on pull request: [4677](https://github.com/hackforla/website/pull/4677#issuecomment-1548564470) at 2023-05-15 01:57 PM PDT -github-actions,2023-05-16T00:58:43Z,- github-actions commented on pull request: [4680](https://github.com/hackforla/website/pull/4680#issuecomment-1548814891) at 2023-05-15 05:58 PM PDT -github-actions,2023-05-16T19:15:28Z,- github-actions commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1550222052) at 2023-05-16 12:15 PM PDT -github-actions,2023-05-17T21:39:25Z,- github-actions commented on pull request: [4686](https://github.com/hackforla/website/pull/4686#issuecomment-1552119739) at 2023-05-17 02:39 PM PDT -github-actions,2023-05-18T06:50:14Z,- github-actions commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1552568382) at 2023-05-17 11:50 PM PDT -github-actions,2023-05-18T10:59:14Z,- github-actions commented on pull request: [4691](https://github.com/hackforla/website/pull/4691#issuecomment-1552886942) at 2023-05-18 03:59 AM PDT -github-actions,2023-05-18T19:23:41Z,- github-actions commented on pull request: [4693](https://github.com/hackforla/website/pull/4693#issuecomment-1553531299) at 2023-05-18 12:23 PM PDT -github-actions,2023-05-18T21:27:07Z,- github-actions commented on pull request: [4694](https://github.com/hackforla/website/pull/4694#issuecomment-1553667418) at 2023-05-18 02:27 PM PDT -github-actions,2023-05-19T00:54:25Z,- github-actions commented on pull request: [4696](https://github.com/hackforla/website/pull/4696#issuecomment-1553860499) at 2023-05-18 05:54 PM PDT -github-actions,2023-05-19T01:23:48Z,- github-actions commented on pull request: [4697](https://github.com/hackforla/website/pull/4697#issuecomment-1553883479) at 2023-05-18 06:23 PM PDT -github-actions,2023-05-19T04:04:12Z,- github-actions commented on pull request: [4698](https://github.com/hackforla/website/pull/4698#issuecomment-1553964869) at 2023-05-18 09:04 PM PDT -github-actions,2023-05-19T18:48:49Z,- github-actions commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1555091586) at 2023-05-19 11:48 AM PDT -github-actions,2023-05-20T18:24:21Z,- github-actions commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1555966843) at 2023-05-20 11:24 AM PDT -github-actions,2023-05-23T10:19:08Z,- github-actions commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1558991712) at 2023-05-23 03:19 AM PDT -github-actions,2023-05-24T01:28:26Z,- github-actions commented on pull request: [4709](https://github.com/hackforla/website/pull/4709#issuecomment-1560333877) at 2023-05-23 06:28 PM PDT -github-actions,2023-05-24T02:15:35Z,- github-actions commented on pull request: [4710](https://github.com/hackforla/website/pull/4710#issuecomment-1560363516) at 2023-05-23 07:15 PM PDT -github-actions,2023-05-24T20:01:01Z,- github-actions commented on pull request: [4725](https://github.com/hackforla/website/pull/4725#issuecomment-1561853194) at 2023-05-24 01:01 PM PDT -github-actions,2023-05-25T00:31:44Z,- github-actions commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562094504) at 2023-05-24 05:31 PM PDT -github-actions,2023-05-25T02:21:17Z,- github-actions commented on pull request: [4727](https://github.com/hackforla/website/pull/4727#issuecomment-1562165788) at 2023-05-24 07:21 PM PDT -github-actions,2023-05-25T20:25:41Z,- github-actions commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1563465205) at 2023-05-25 01:25 PM PDT -github-actions,2023-05-25T23:04:45Z,- github-actions commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1563613777) at 2023-05-25 04:04 PM PDT -github-actions,2023-05-26T00:28:15Z,- github-actions commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1563661858) at 2023-05-25 05:28 PM PDT -github-actions,2023-05-26T02:47:03Z,- github-actions commented on pull request: [4733](https://github.com/hackforla/website/pull/4733#issuecomment-1563742798) at 2023-05-25 07:47 PM PDT -github-actions,2023-05-26T02:58:37Z,- github-actions commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1563749658) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:47Z,- github-actions commented on pull request: [4735](https://github.com/hackforla/website/pull/4735#issuecomment-1563749786) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:47Z,- github-actions commented on pull request: [4736](https://github.com/hackforla/website/pull/4736#issuecomment-1563749780) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:54Z,- github-actions commented on pull request: [4737](https://github.com/hackforla/website/pull/4737#issuecomment-1563749871) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:59Z,- github-actions commented on pull request: [4739](https://github.com/hackforla/website/pull/4739#issuecomment-1563749923) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:59:04Z,- github-actions commented on pull request: [4740](https://github.com/hackforla/website/pull/4740#issuecomment-1563749970) at 2023-05-25 07:59 PM PDT -github-actions,2023-05-26T02:59:27Z,- github-actions commented on pull request: [4743](https://github.com/hackforla/website/pull/4743#issuecomment-1563750240) at 2023-05-25 07:59 PM PDT -github-actions,2023-05-26T02:59:50Z,- github-actions commented on pull request: [4738](https://github.com/hackforla/website/pull/4738#issuecomment-1563750464) at 2023-05-25 07:59 PM PDT -github-actions,2023-05-26T03:00:01Z,- github-actions commented on pull request: [4741](https://github.com/hackforla/website/pull/4741#issuecomment-1563750573) at 2023-05-25 08:00 PM PDT -github-actions,2023-05-26T03:00:14Z,- github-actions commented on pull request: [4742](https://github.com/hackforla/website/pull/4742#issuecomment-1563750685) at 2023-05-25 08:00 PM PDT -github-actions,2023-05-26T19:29:51Z,- github-actions commented on pull request: [4745](https://github.com/hackforla/website/pull/4745#issuecomment-1564835483) at 2023-05-26 12:29 PM PDT -github-actions,2023-05-26T20:11:22Z,- github-actions commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1564893492) at 2023-05-26 01:11 PM PDT -github-actions,2023-05-26T22:28:49Z,- github-actions commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565026982) at 2023-05-26 03:28 PM PDT -github-actions,2023-05-27T06:47:08Z,- github-actions commented on pull request: [4748](https://github.com/hackforla/website/pull/4748#issuecomment-1565237268) at 2023-05-26 11:47 PM PDT -github-actions,2023-05-29T02:04:34Z,- github-actions commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1566388037) at 2023-05-28 07:04 PM PDT -github-actions,2023-05-29T02:09:45Z,- github-actions commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1566392642) at 2023-05-28 07:09 PM PDT -github-actions,2023-05-30T03:16:05Z,- github-actions commented on pull request: [4754](https://github.com/hackforla/website/pull/4754#issuecomment-1567704257) at 2023-05-29 08:16 PM PDT -github-actions,2023-05-30T04:34:19Z,- github-actions commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1567742163) at 2023-05-29 09:34 PM PDT -github-actions,2023-05-30T19:07:39Z,- github-actions commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1568936911) at 2023-05-30 12:07 PM PDT -github-actions,2023-05-31T04:21:58Z,- github-actions commented on pull request: [4759](https://github.com/hackforla/website/pull/4759#issuecomment-1569475030) at 2023-05-30 09:21 PM PDT -github-actions,2023-05-31T05:35:41Z,- github-actions commented on pull request: [4760](https://github.com/hackforla/website/pull/4760#issuecomment-1569524245) at 2023-05-30 10:35 PM PDT -github-actions,2023-05-31T09:23:27Z,- github-actions commented on pull request: [4763](https://github.com/hackforla/website/pull/4763#issuecomment-1569822879) at 2023-05-31 02:23 AM PDT -github-actions,2023-06-01T02:25:59Z,- github-actions commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1571228758) at 2023-05-31 07:25 PM PDT -github-actions,2023-06-01T19:20:34Z,- github-actions commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1572646398) at 2023-06-01 12:20 PM PDT -github-actions,2023-06-02T22:34:02Z,- github-actions commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1574391528) at 2023-06-02 03:34 PM PDT -github-actions,2023-06-02T22:49:40Z,- github-actions commented on pull request: [4773](https://github.com/hackforla/website/pull/4773#issuecomment-1574406159) at 2023-06-02 03:49 PM PDT -github-actions,2023-06-03T00:32:55Z,- github-actions commented on pull request: [4774](https://github.com/hackforla/website/pull/4774#issuecomment-1574489396) at 2023-06-02 05:32 PM PDT -github-actions,2023-06-03T01:51:05Z,- github-actions commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1574546434) at 2023-06-02 06:51 PM PDT -github-actions,2023-06-05T10:51:15Z,- github-actions commented on pull request: [4783](https://github.com/hackforla/website/pull/4783#issuecomment-1576564349) at 2023-06-05 03:51 AM PDT -github-actions,2023-06-06T19:49:59Z,- github-actions commented on pull request: [4789](https://github.com/hackforla/website/pull/4789#issuecomment-1579354117) at 2023-06-06 12:49 PM PDT -github-actions,2023-06-09T00:06:00Z,- github-actions commented on pull request: [4791](https://github.com/hackforla/website/pull/4791#issuecomment-1583638352) at 2023-06-08 05:06 PM PDT -github-actions,2023-06-10T20:54:17Z,- github-actions commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1585814051) at 2023-06-10 01:54 PM PDT -github-actions,2023-06-12T07:57:39Z,- github-actions commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1586783657) at 2023-06-12 12:57 AM PDT -github-actions,2023-06-13T23:01:01Z,- github-actions commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1590167611) at 2023-06-13 04:01 PM PDT -github-actions,2023-06-13T23:46:45Z,- github-actions commented on pull request: [4833](https://github.com/hackforla/website/pull/4833#issuecomment-1590212519) at 2023-06-13 04:46 PM PDT -github-actions,2023-06-14T17:39:04Z,- github-actions commented on pull request: [4836](https://github.com/hackforla/website/pull/4836#issuecomment-1591721621) at 2023-06-14 10:39 AM PDT -github-actions,2023-06-14T17:59:17Z,- github-actions commented on pull request: [4837](https://github.com/hackforla/website/pull/4837#issuecomment-1591745101) at 2023-06-14 10:59 AM PDT -github-actions,2023-06-14T18:44:56Z,- github-actions commented on pull request: [4838](https://github.com/hackforla/website/pull/4838#issuecomment-1591804232) at 2023-06-14 11:44 AM PDT -github-actions,2023-06-15T21:57:15Z,- github-actions commented on pull request: [4842](https://github.com/hackforla/website/pull/4842#issuecomment-1593770457) at 2023-06-15 02:57 PM PDT -github-actions,2023-06-16T01:44:02Z,- github-actions commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1593959911) at 2023-06-15 06:44 PM PDT -github-actions,2023-06-16T03:46:04Z,- github-actions commented on pull request: [4844](https://github.com/hackforla/website/pull/4844#issuecomment-1594043854) at 2023-06-15 08:46 PM PDT -github-actions,2023-06-16T04:40:10Z,- github-actions commented on pull request: [4845](https://github.com/hackforla/website/pull/4845#issuecomment-1594088311) at 2023-06-15 09:40 PM PDT -github-actions,2023-06-16T04:58:05Z,- github-actions commented on pull request: [4846](https://github.com/hackforla/website/pull/4846#issuecomment-1594097497) at 2023-06-15 09:58 PM PDT -github-actions,2023-06-16T05:11:00Z,- github-actions commented on pull request: [4847](https://github.com/hackforla/website/pull/4847#issuecomment-1594107426) at 2023-06-15 10:11 PM PDT -github-actions,2023-06-16T05:33:31Z,- github-actions commented on pull request: [4848](https://github.com/hackforla/website/pull/4848#issuecomment-1594128594) at 2023-06-15 10:33 PM PDT -github-actions,2023-06-17T00:01:08Z,- github-actions commented on pull request: [4849](https://github.com/hackforla/website/pull/4849#issuecomment-1595496140) at 2023-06-16 05:01 PM PDT -github-actions,2023-06-18T23:31:58Z,- github-actions commented on pull request: [4853](https://github.com/hackforla/website/pull/4853#issuecomment-1596306423) at 2023-06-18 04:31 PM PDT -github-actions,2023-06-20T00:09:27Z,- github-actions commented on pull request: [4863](https://github.com/hackforla/website/pull/4863#issuecomment-1597896571) at 2023-06-19 05:09 PM PDT -github-actions,2023-06-20T19:28:42Z,- github-actions commented on pull request: [4865](https://github.com/hackforla/website/pull/4865#issuecomment-1599384531) at 2023-06-20 12:28 PM PDT -github-actions,2023-06-20T21:26:50Z,- github-actions commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1599582718) at 2023-06-20 02:26 PM PDT -github-actions,2023-06-22T23:29:03Z,- github-actions commented on pull request: [4875](https://github.com/hackforla/website/pull/4875#issuecomment-1603434329) at 2023-06-22 04:29 PM PDT -github-actions,2023-06-23T20:05:22Z,- github-actions commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1604880596) at 2023-06-23 01:05 PM PDT -github-actions,2023-06-24T05:05:37Z,- github-actions commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1605269889) at 2023-06-23 10:05 PM PDT -github-actions,2023-06-24T16:49:31Z,- github-actions commented on pull request: [4880](https://github.com/hackforla/website/pull/4880#issuecomment-1605637630) at 2023-06-24 09:49 AM PDT -github-actions,2023-06-24T20:19:01Z,- github-actions commented on pull request: [4881](https://github.com/hackforla/website/pull/4881#issuecomment-1605714896) at 2023-06-24 01:19 PM PDT -github-actions,2023-06-26T05:42:06Z,- github-actions commented on pull request: [4882](https://github.com/hackforla/website/pull/4882#issuecomment-1606689662) at 2023-06-25 10:42 PM PDT -github-actions,2023-06-27T01:27:54Z,- github-actions commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1608567409) at 2023-06-26 06:27 PM PDT -github-actions,2023-06-27T18:40:50Z,- github-actions commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1610036366) at 2023-06-27 11:40 AM PDT -github-actions,2023-06-28T07:21:49Z,- github-actions commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1610901670) at 2023-06-28 12:21 AM PDT -github-actions,2023-06-28T18:44:22Z,- github-actions commented on pull request: [4897](https://github.com/hackforla/website/pull/4897#issuecomment-1611907651) at 2023-06-28 11:44 AM PDT -github-actions,2023-06-28T19:34:19Z,- github-actions commented on pull request: [4899](https://github.com/hackforla/website/pull/4899#issuecomment-1611994606) at 2023-06-28 12:34 PM PDT -github-actions,2023-06-30T21:39:48Z,- github-actions commented on pull request: [4902](https://github.com/hackforla/website/pull/4902#issuecomment-1615218773) at 2023-06-30 02:39 PM PDT -github-actions,2023-07-01T04:02:07Z,- github-actions commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1615448979) at 2023-06-30 09:02 PM PDT -github-actions,2023-07-02T04:29:11Z,- github-actions commented on pull request: [4905](https://github.com/hackforla/website/pull/4905#issuecomment-1616352238) at 2023-07-01 09:29 PM PDT -github-actions,2023-07-02T22:59:05Z,- github-actions commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1616930913) at 2023-07-02 03:59 PM PDT -github-actions,2023-07-05T00:12:27Z,- github-actions commented on pull request: [4911](https://github.com/hackforla/website/pull/4911#issuecomment-1620849144) at 2023-07-04 05:12 PM PDT -github-actions,2023-07-07T23:49:29Z,- github-actions commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1626368711) at 2023-07-07 04:49 PM PDT -github-actions,2023-07-09T09:15:22Z,- github-actions commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1627657013) at 2023-07-09 02:15 AM PDT -github-actions,2023-07-10T06:12:39Z,- github-actions commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1628304196) at 2023-07-09 11:12 PM PDT -github-actions,2023-07-10T22:52:52Z,- github-actions commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1629838324) at 2023-07-10 03:52 PM PDT -github-actions,2023-07-10T23:32:14Z,- github-actions commented on pull request: [4929](https://github.com/hackforla/website/pull/4929#issuecomment-1629870513) at 2023-07-10 04:32 PM PDT -github-actions,2023-07-10T23:32:20Z,- github-actions commented on pull request: [4930](https://github.com/hackforla/website/pull/4930#issuecomment-1629870587) at 2023-07-10 04:32 PM PDT -github-actions,2023-07-11T03:07:47Z,- github-actions commented on pull request: [4935](https://github.com/hackforla/website/pull/4935#issuecomment-1630035509) at 2023-07-10 08:07 PM PDT -github-actions,2023-07-11T03:48:32Z,- github-actions commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1630065839) at 2023-07-10 08:48 PM PDT -github-actions,2023-07-11T04:19:38Z,- github-actions commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1630088668) at 2023-07-10 09:19 PM PDT -github-actions,2023-07-11T23:31:50Z,- github-actions commented on pull request: [4940](https://github.com/hackforla/website/pull/4940#issuecomment-1631635677) at 2023-07-11 04:31 PM PDT -github-actions,2023-07-12T06:17:40Z,- github-actions commented on pull request: [4941](https://github.com/hackforla/website/pull/4941#issuecomment-1631912444) at 2023-07-11 11:17 PM PDT -github-actions,2023-07-12T16:54:19Z,- github-actions commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1632887718) at 2023-07-12 09:54 AM PDT -github-actions,2023-07-13T03:32:49Z,- github-actions commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1633495270) at 2023-07-12 08:32 PM PDT -github-actions,2023-07-13T17:36:45Z,- github-actions commented on pull request: [4947](https://github.com/hackforla/website/pull/4947#issuecomment-1634641840) at 2023-07-13 10:36 AM PDT -github-actions,2023-07-14T17:23:46Z,- github-actions commented on pull request: [4949](https://github.com/hackforla/website/pull/4949#issuecomment-1636160583) at 2023-07-14 10:23 AM PDT -github-actions,2023-07-15T18:32:54Z,- github-actions commented on pull request: [4950](https://github.com/hackforla/website/pull/4950#issuecomment-1636851776) at 2023-07-15 11:32 AM PDT -github-actions,2023-07-16T13:57:25Z,- github-actions commented on pull request: [4952](https://github.com/hackforla/website/pull/4952#issuecomment-1637091301) at 2023-07-16 06:57 AM PDT -github-actions,2023-07-16T14:06:34Z,- github-actions commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1637093478) at 2023-07-16 07:06 AM PDT -github-actions,2023-07-19T00:36:29Z,- github-actions commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1641201358) at 2023-07-18 05:36 PM PDT -github-actions,2023-07-19T05:54:15Z,- github-actions commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641459769) at 2023-07-18 10:54 PM PDT -github-actions,2023-07-19T06:14:26Z,- github-actions commented on pull request: [5025](https://github.com/hackforla/website/pull/5025#issuecomment-1641479499) at 2023-07-18 11:14 PM PDT -github-actions,2023-07-19T17:54:05Z,- github-actions commented on pull request: [5034](https://github.com/hackforla/website/pull/5034#issuecomment-1642511110) at 2023-07-19 10:54 AM PDT -github-actions,2023-07-20T04:35:45Z,- github-actions commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1643148228) at 2023-07-19 09:35 PM PDT -github-actions,2023-07-20T22:31:45Z,- github-actions commented on pull request: [5043](https://github.com/hackforla/website/pull/5043#issuecomment-1644707265) at 2023-07-20 03:31 PM PDT -github-actions,2023-07-21T02:15:06Z,- github-actions commented on pull request: [5044](https://github.com/hackforla/website/pull/5044#issuecomment-1644892226) at 2023-07-20 07:15 PM PDT -github-actions,2023-07-21T21:50:24Z,- github-actions commented on pull request: [5046](https://github.com/hackforla/website/pull/5046#issuecomment-1646271535) at 2023-07-21 02:50 PM PDT -github-actions,2023-07-22T00:13:08Z,- github-actions commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646350435) at 2023-07-21 05:13 PM PDT -github-actions,2023-07-22T03:03:54Z,- github-actions commented on pull request: [5049](https://github.com/hackforla/website/pull/5049#issuecomment-1646438788) at 2023-07-21 08:03 PM PDT -github-actions,2023-07-22T19:01:28Z,- github-actions commented on pull request: [5050](https://github.com/hackforla/website/pull/5050#issuecomment-1646651434) at 2023-07-22 12:01 PM PDT -github-actions,2023-07-23T05:52:39Z,- github-actions commented on pull request: [5051](https://github.com/hackforla/website/pull/5051#issuecomment-1646753985) at 2023-07-22 10:52 PM PDT -github-actions,2023-07-23T14:59:31Z,- github-actions commented on pull request: [5052](https://github.com/hackforla/website/pull/5052#issuecomment-1646863061) at 2023-07-23 07:59 AM PDT -github-actions,2023-07-23T16:55:44Z,- github-actions commented on pull request: [5053](https://github.com/hackforla/website/pull/5053#issuecomment-1646890087) at 2023-07-23 09:55 AM PDT -github-actions,2023-07-23T19:30:21Z,- github-actions commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1646940739) at 2023-07-23 12:30 PM PDT -github-actions,2023-07-24T00:40:06Z,- github-actions commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1647031206) at 2023-07-23 05:40 PM PDT -github-actions,2023-07-24T06:07:31Z,- github-actions commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1647271597) at 2023-07-23 11:07 PM PDT -github-actions,2023-07-25T21:49:22Z,- github-actions commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1650607813) at 2023-07-25 02:49 PM PDT -github-actions,2023-07-26T01:38:55Z,- github-actions commented on pull request: [5063](https://github.com/hackforla/website/pull/5063#issuecomment-1650835323) at 2023-07-25 06:38 PM PDT -github-actions,2023-07-26T04:18:01Z,- github-actions commented on pull request: [5093](https://github.com/hackforla/website/pull/5093#issuecomment-1650954988) at 2023-07-25 09:18 PM PDT -github-actions,2023-07-26T13:11:52Z,- github-actions commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1651779048) at 2023-07-26 06:11 AM PDT -github-actions,2023-07-26T20:22:46Z,- github-actions commented on pull request: [5096](https://github.com/hackforla/website/pull/5096#issuecomment-1652440475) at 2023-07-26 01:22 PM PDT -github-actions,2023-07-26T22:37:43Z,- github-actions commented on pull request: [5097](https://github.com/hackforla/website/pull/5097#issuecomment-1652631355) at 2023-07-26 03:37 PM PDT -github-actions,2023-07-27T17:41:04Z,- github-actions commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1654098144) at 2023-07-27 10:41 AM PDT -github-actions,2023-07-27T21:13:02Z,- github-actions commented on pull request: [5104](https://github.com/hackforla/website/pull/5104#issuecomment-1654593358) at 2023-07-27 02:13 PM PDT -github-actions,2023-07-27T23:54:37Z,- github-actions commented on pull request: [5105](https://github.com/hackforla/website/pull/5105#issuecomment-1654773362) at 2023-07-27 04:54 PM PDT -github-actions,2023-07-28T01:14:51Z,- github-actions commented on pull request: [5106](https://github.com/hackforla/website/pull/5106#issuecomment-1654832291) at 2023-07-27 06:14 PM PDT -github-actions,2023-07-28T07:13:03Z,- github-actions commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1655163969) at 2023-07-28 12:13 AM PDT -github-actions,2023-07-28T18:36:31Z,- github-actions commented on pull request: [5108](https://github.com/hackforla/website/pull/5108#issuecomment-1656162771) at 2023-07-28 11:36 AM PDT -github-actions,2023-07-28T22:43:53Z,- github-actions commented on pull request: [5109](https://github.com/hackforla/website/pull/5109#issuecomment-1656408465) at 2023-07-28 03:43 PM PDT -github-actions,2023-07-28T23:13:41Z,- github-actions commented on pull request: [5110](https://github.com/hackforla/website/pull/5110#issuecomment-1656429480) at 2023-07-28 04:13 PM PDT -github-actions,2023-07-29T00:02:15Z,- github-actions commented on pull request: [5111](https://github.com/hackforla/website/pull/5111#issuecomment-1656475728) at 2023-07-28 05:02 PM PDT -github-actions,2023-07-29T06:01:28Z,- github-actions commented on pull request: [5112](https://github.com/hackforla/website/pull/5112#issuecomment-1656568596) at 2023-07-28 11:01 PM PDT -github-actions,2023-07-30T02:25:53Z,- github-actions commented on pull request: [5114](https://github.com/hackforla/website/pull/5114#issuecomment-1656999430) at 2023-07-29 07:25 PM PDT -github-actions,2023-07-30T18:03:40Z,- github-actions commented on pull request: [5117](https://github.com/hackforla/website/pull/5117#issuecomment-1657232270) at 2023-07-30 11:03 AM PDT -github-actions,2023-07-31T15:05:14Z,- github-actions commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1658558474) at 2023-07-31 08:05 AM PDT -github-actions,2023-07-31T16:16:16Z,- github-actions commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1658709520) at 2023-07-31 09:16 AM PDT -github-actions,2023-07-31T19:42:27Z,- github-actions commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659025406) at 2023-07-31 12:42 PM PDT -github-actions,2023-07-31T20:18:58Z,- github-actions commented on pull request: [5121](https://github.com/hackforla/website/pull/5121#issuecomment-1659073927) at 2023-07-31 01:18 PM PDT -github-actions,2023-07-31T20:20:51Z,- github-actions commented on pull request: [5122](https://github.com/hackforla/website/pull/5122#issuecomment-1659080990) at 2023-07-31 01:20 PM PDT -github-actions,2023-07-31T23:55:36Z,- github-actions commented on pull request: [5123](https://github.com/hackforla/website/pull/5123#issuecomment-1659362942) at 2023-07-31 04:55 PM PDT -github-actions,2023-08-01T04:07:13Z,- github-actions commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1659533083) at 2023-07-31 09:07 PM PDT -github-actions,2023-08-01T04:32:11Z,- github-actions commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1659549727) at 2023-07-31 09:32 PM PDT -github-actions,2023-08-01T17:44:56Z,- github-actions commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1660806728) at 2023-08-01 10:44 AM PDT -github-actions,2023-08-02T18:05:31Z,- github-actions commented on pull request: [5130](https://github.com/hackforla/website/pull/5130#issuecomment-1662710136) at 2023-08-02 11:05 AM PDT -github-actions,2023-08-03T05:01:19Z,- github-actions commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1663293101) at 2023-08-02 10:01 PM PDT -github-actions,2023-08-04T19:38:13Z,- github-actions commented on pull request: [5141](https://github.com/hackforla/website/pull/5141#issuecomment-1666084988) at 2023-08-04 12:38 PM PDT -github-actions,2023-08-04T20:55:09Z,- github-actions commented on pull request: [5142](https://github.com/hackforla/website/pull/5142#issuecomment-1666171032) at 2023-08-04 01:55 PM PDT -github-actions,2023-08-04T23:58:55Z,- github-actions commented on pull request: [5143](https://github.com/hackforla/website/pull/5143#issuecomment-1666289398) at 2023-08-04 04:58 PM PDT -github-actions,2023-08-05T00:37:06Z,- github-actions commented on pull request: [5144](https://github.com/hackforla/website/pull/5144#issuecomment-1666306733) at 2023-08-04 05:37 PM PDT -github-actions,2023-08-05T03:10:28Z,- github-actions commented on pull request: [5145](https://github.com/hackforla/website/pull/5145#issuecomment-1666367543) at 2023-08-04 08:10 PM PDT -github-actions,2023-08-06T17:56:28Z,- github-actions commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1666933333) at 2023-08-06 10:56 AM PDT -github-actions,2023-08-07T06:36:18Z,- github-actions commented on pull request: [5155](https://github.com/hackforla/website/pull/5155#issuecomment-1667269729) at 2023-08-06 11:36 PM PDT -github-actions,2023-08-07T07:54:54Z,- github-actions commented on pull request: [5156](https://github.com/hackforla/website/pull/5156#issuecomment-1667375083) at 2023-08-07 12:54 AM PDT -github-actions,2023-08-07T18:55:56Z,- github-actions commented on pull request: [5157](https://github.com/hackforla/website/pull/5157#issuecomment-1668420741) at 2023-08-07 11:55 AM PDT -github-actions,2023-08-07T22:09:22Z,- github-actions commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1668640901) at 2023-08-07 03:09 PM PDT -github-actions,2023-08-08T01:06:22Z,- github-actions commented on pull request: [5161](https://github.com/hackforla/website/pull/5161#issuecomment-1668763295) at 2023-08-07 06:06 PM PDT -github-actions,2023-08-08T02:10:11Z,- github-actions commented on pull request: [5162](https://github.com/hackforla/website/pull/5162#issuecomment-1668804147) at 2023-08-07 07:10 PM PDT -github-actions,2023-08-09T20:18:56Z,- github-actions commented on pull request: [5168](https://github.com/hackforla/website/pull/5168#issuecomment-1672088613) at 2023-08-09 01:18 PM PDT -github-actions,2023-08-09T20:35:08Z,- github-actions commented on pull request: [5169](https://github.com/hackforla/website/pull/5169#issuecomment-1672110613) at 2023-08-09 01:35 PM PDT -github-actions,2023-08-09T22:34:08Z,- github-actions commented on pull request: [5170](https://github.com/hackforla/website/pull/5170#issuecomment-1672265949) at 2023-08-09 03:34 PM PDT -github-actions,2023-08-11T17:28:18Z,- github-actions commented on pull request: [5183](https://github.com/hackforla/website/pull/5183#issuecomment-1675139616) at 2023-08-11 10:28 AM PDT -github-actions,2023-08-15T00:48:42Z,- github-actions commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1678276735) at 2023-08-14 05:48 PM PDT -github-actions,2023-08-15T01:44:25Z,- github-actions commented on pull request: [5204](https://github.com/hackforla/website/pull/5204#issuecomment-1678310423) at 2023-08-14 06:44 PM PDT -github-actions,2023-08-15T22:52:16Z,- github-actions commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1679730139) at 2023-08-15 03:52 PM PDT -github-actions,2023-08-16T01:54:22Z,- github-actions commented on pull request: [5236](https://github.com/hackforla/website/pull/5236#issuecomment-1679852219) at 2023-08-15 06:54 PM PDT -github-actions,2023-08-16T19:27:20Z,- github-actions commented on pull request: [5239](https://github.com/hackforla/website/pull/5239#issuecomment-1681158811) at 2023-08-16 12:27 PM PDT -github-actions,2023-08-16T23:27:19Z,- github-actions commented on pull request: [5240](https://github.com/hackforla/website/pull/5240#issuecomment-1681393371) at 2023-08-16 04:27 PM PDT -github-actions,2023-08-17T00:42:54Z,- github-actions commented on pull request: [5241](https://github.com/hackforla/website/pull/5241#issuecomment-1681442772) at 2023-08-16 05:42 PM PDT -github-actions,2023-08-17T14:03:39Z,- github-actions commented on pull request: [5243](https://github.com/hackforla/website/pull/5243#issuecomment-1682347398) at 2023-08-17 07:03 AM PDT -github-actions,2023-08-17T20:01:37Z,- github-actions commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1682898700) at 2023-08-17 01:01 PM PDT -github-actions,2023-08-17T22:57:06Z,- github-actions commented on pull request: [5247](https://github.com/hackforla/website/pull/5247#issuecomment-1683082728) at 2023-08-17 03:57 PM PDT -github-actions,2023-08-18T00:41:53Z,- github-actions commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1683161554) at 2023-08-17 05:41 PM PDT -github-actions,2023-08-18T18:09:19Z,- github-actions commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1684261740) at 2023-08-18 11:09 AM PDT -github-actions,2023-08-19T06:02:09Z,- github-actions commented on pull request: [5257](https://github.com/hackforla/website/pull/5257#issuecomment-1684844881) at 2023-08-18 11:02 PM PDT -github-actions,2023-08-19T09:34:59Z,- github-actions commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1684904877) at 2023-08-19 02:34 AM PDT -github-actions,2023-08-19T16:39:48Z,- github-actions commented on pull request: [5259](https://github.com/hackforla/website/pull/5259#issuecomment-1685041675) at 2023-08-19 09:39 AM PDT -github-actions,2023-08-20T02:59:26Z,- github-actions commented on pull request: [5261](https://github.com/hackforla/website/pull/5261#issuecomment-1685162101) at 2023-08-19 07:59 PM PDT -github-actions,2023-08-20T03:02:33Z,- github-actions commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1685162605) at 2023-08-19 08:02 PM PDT -github-actions,2023-08-20T04:27:47Z,- github-actions commented on pull request: [5263](https://github.com/hackforla/website/pull/5263#issuecomment-1685173145) at 2023-08-19 09:27 PM PDT -github-actions,2023-08-20T22:47:13Z,- github-actions commented on pull request: [5275](https://github.com/hackforla/website/pull/5275#issuecomment-1685416464) at 2023-08-20 03:47 PM PDT -github-actions,2023-08-21T00:16:27Z,- github-actions commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1685438477) at 2023-08-20 05:16 PM PDT -github-actions,2023-08-21T19:51:23Z,- github-actions commented on pull request: [5280](https://github.com/hackforla/website/pull/5280#issuecomment-1686946630) at 2023-08-21 12:51 PM PDT -github-actions,2023-08-22T16:36:48Z,- github-actions commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1688555972) at 2023-08-22 09:36 AM PDT -github-actions,2023-08-22T21:13:34Z,- github-actions commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1688940453) at 2023-08-22 02:13 PM PDT -github-actions,2023-08-23T14:44:50Z,- github-actions commented on pull request: [5294](https://github.com/hackforla/website/pull/5294#issuecomment-1690097577) at 2023-08-23 07:44 AM PDT -github-actions,2023-08-23T19:05:46Z,- github-actions commented on pull request: [5295](https://github.com/hackforla/website/pull/5295#issuecomment-1690493765) at 2023-08-23 12:05 PM PDT -github-actions,2023-08-23T23:19:40Z,- github-actions commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1690765793) at 2023-08-23 04:19 PM PDT -github-actions,2023-08-24T08:33:49Z,- github-actions commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1691250044) at 2023-08-24 01:33 AM PDT -github-actions,2023-08-24T18:52:29Z,- github-actions commented on pull request: [5299](https://github.com/hackforla/website/pull/5299#issuecomment-1692240640) at 2023-08-24 11:52 AM PDT -github-actions,2023-08-28T14:38:02Z,- github-actions commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1695818453) at 2023-08-28 07:38 AM PDT -github-actions,2023-08-29T04:09:01Z,- github-actions commented on pull request: [5331](https://github.com/hackforla/website/pull/5331#issuecomment-1696735808) at 2023-08-28 09:09 PM PDT -github-actions,2023-08-29T19:09:02Z,- github-actions commented on pull request: [5335](https://github.com/hackforla/website/pull/5335#issuecomment-1697987166) at 2023-08-29 12:09 PM PDT -github-actions,2023-08-29T20:20:22Z,- github-actions commented on pull request: [5339](https://github.com/hackforla/website/pull/5339#issuecomment-1698073294) at 2023-08-29 01:20 PM PDT -github-actions,2023-08-29T21:13:11Z,- github-actions commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1698152805) at 2023-08-29 02:13 PM PDT -github-actions,2023-08-29T21:16:32Z,- github-actions commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698156564) at 2023-08-29 02:16 PM PDT -github-actions,2023-08-30T00:55:34Z,- github-actions commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1698336383) at 2023-08-29 05:55 PM PDT -github-actions,2023-08-30T03:50:07Z,- github-actions commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1698446727) at 2023-08-29 08:50 PM PDT -github-actions,2023-08-30T20:13:14Z,- github-actions commented on pull request: [5380](https://github.com/hackforla/website/pull/5380#issuecomment-1699774951) at 2023-08-30 01:13 PM PDT -github-actions,2023-08-30T21:05:06Z,- github-actions commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1699841659) at 2023-08-30 02:05 PM PDT -github-actions,2023-08-31T03:03:19Z,- github-actions commented on pull request: [5392](https://github.com/hackforla/website/pull/5392#issuecomment-1700302189) at 2023-08-30 08:03 PM PDT -github-actions,2023-08-31T17:57:04Z,- github-actions commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1701514038) at 2023-08-31 10:57 AM PDT -github-actions,2023-08-31T18:31:56Z,- github-actions commented on pull request: [5397](https://github.com/hackforla/website/pull/5397#issuecomment-1701562294) at 2023-08-31 11:31 AM PDT -github-actions,2023-08-31T19:39:02Z,- github-actions commented on pull request: [5398](https://github.com/hackforla/website/pull/5398#issuecomment-1701678000) at 2023-08-31 12:39 PM PDT -github-actions,2023-08-31T19:41:20Z,- github-actions commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1701681276) at 2023-08-31 12:41 PM PDT -github-actions,2023-08-31T20:08:55Z,- github-actions commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701713434) at 2023-08-31 01:08 PM PDT -github-actions,2023-08-31T22:24:43Z,- github-actions commented on pull request: [5402](https://github.com/hackforla/website/pull/5402#issuecomment-1701860602) at 2023-08-31 03:24 PM PDT -github-actions,2023-09-01T07:24:38Z,- github-actions commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1702293838) at 2023-09-01 12:24 AM PDT -github-actions,2023-09-01T19:08:11Z,- github-actions commented on pull request: [5412](https://github.com/hackforla/website/pull/5412#issuecomment-1703208785) at 2023-09-01 12:08 PM PDT -github-actions,2023-09-01T20:46:30Z,- github-actions commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1703302659) at 2023-09-01 01:46 PM PDT -github-actions,2023-09-01T22:41:21Z,- github-actions commented on pull request: [5414](https://github.com/hackforla/website/pull/5414#issuecomment-1703397484) at 2023-09-01 03:41 PM PDT -github-actions,2023-09-01T23:18:05Z,- github-actions commented on pull request: [5415](https://github.com/hackforla/website/pull/5415#issuecomment-1703466691) at 2023-09-01 04:18 PM PDT -github-actions,2023-09-02T01:58:09Z,- github-actions commented on pull request: [5416](https://github.com/hackforla/website/pull/5416#issuecomment-1703642359) at 2023-09-01 06:58 PM PDT -github-actions,2023-09-02T02:37:29Z,- github-actions commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1703655467) at 2023-09-01 07:37 PM PDT -github-actions,2023-09-02T04:49:26Z,- github-actions commented on pull request: [5418](https://github.com/hackforla/website/pull/5418#issuecomment-1703695531) at 2023-09-01 09:49 PM PDT -github-actions,2023-09-02T05:45:54Z,- github-actions commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1703718183) at 2023-09-01 10:45 PM PDT -github-actions,2023-09-02T20:53:11Z,- github-actions commented on pull request: [5421](https://github.com/hackforla/website/pull/5421#issuecomment-1703938643) at 2023-09-02 01:53 PM PDT -github-actions,2023-09-03T00:12:14Z,- github-actions commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1703969598) at 2023-09-02 05:12 PM PDT -github-actions,2023-09-03T00:52:20Z,- github-actions commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1703975805) at 2023-09-02 05:52 PM PDT -github-actions,2023-09-03T06:43:25Z,- github-actions commented on pull request: [5424](https://github.com/hackforla/website/pull/5424#issuecomment-1704027401) at 2023-09-02 11:43 PM PDT -github-actions,2023-09-03T07:38:06Z,- github-actions commented on pull request: [5425](https://github.com/hackforla/website/pull/5425#issuecomment-1704037379) at 2023-09-03 12:38 AM PDT -github-actions,2023-09-03T10:12:30Z,- github-actions commented on pull request: [5430](https://github.com/hackforla/website/pull/5430#issuecomment-1704091761) at 2023-09-03 03:12 AM PDT -github-actions,2023-09-03T18:21:00Z,- github-actions commented on pull request: [5431](https://github.com/hackforla/website/pull/5431#issuecomment-1704368338) at 2023-09-03 11:21 AM PDT -github-actions,2023-09-03T20:54:07Z,- github-actions commented on pull request: [5430](https://github.com/hackforla/website/pull/5430#issuecomment-1704399162) at 2023-09-03 01:54 PM PDT -github-actions,2023-09-03T23:26:48Z,- github-actions commented on pull request: [5432](https://github.com/hackforla/website/pull/5432#issuecomment-1704434017) at 2023-09-03 04:26 PM PDT -github-actions,2023-09-03T23:28:58Z,- github-actions commented on pull request: [5432](https://github.com/hackforla/website/pull/5432#issuecomment-1704434463) at 2023-09-03 04:28 PM PDT -github-actions,2023-09-03T23:51:04Z,- github-actions commented on pull request: [5432](https://github.com/hackforla/website/pull/5432#issuecomment-1704439063) at 2023-09-03 04:51 PM PDT -github-actions,2023-09-04T00:10:19Z,- github-actions commented on pull request: [5433](https://github.com/hackforla/website/pull/5433#issuecomment-1704444563) at 2023-09-03 05:10 PM PDT -github-actions,2023-09-04T04:18:25Z,- github-actions commented on pull request: [5436](https://github.com/hackforla/website/pull/5436#issuecomment-1704586672) at 2023-09-03 09:18 PM PDT -github-actions,2023-09-04T04:21:49Z,- github-actions commented on pull request: [5436](https://github.com/hackforla/website/pull/5436#issuecomment-1704588624) at 2023-09-03 09:21 PM PDT -github-actions,2023-09-04T05:26:01Z,- github-actions commented on pull request: [5437](https://github.com/hackforla/website/pull/5437#issuecomment-1704631894) at 2023-09-03 10:26 PM PDT -github-actions,2023-09-04T07:21:39Z,- github-actions commented on pull request: [5438](https://github.com/hackforla/website/pull/5438#issuecomment-1704744324) at 2023-09-04 12:21 AM PDT -github-actions,2023-09-04T23:29:15Z,- github-actions commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1705764686) at 2023-09-04 04:29 PM PDT -github-actions,2023-09-05T02:30:40Z,- github-actions commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1705861378) at 2023-09-04 07:30 PM PDT -github-actions,2023-09-05T20:39:48Z,- github-actions commented on pull request: [5449](https://github.com/hackforla/website/pull/5449#issuecomment-1707279980) at 2023-09-05 01:39 PM PDT -github-actions,2023-09-05T22:54:48Z,- github-actions commented on pull request: [5451](https://github.com/hackforla/website/pull/5451#issuecomment-1707413962) at 2023-09-05 03:54 PM PDT -github-actions,2023-09-07T04:52:46Z,- github-actions commented on pull request: [5454](https://github.com/hackforla/website/pull/5454#issuecomment-1709473060) at 2023-09-06 09:52 PM PDT -github-actions,2023-09-07T19:56:00Z,- github-actions commented on pull request: [5455](https://github.com/hackforla/website/pull/5455#issuecomment-1710694772) at 2023-09-07 12:56 PM PDT -github-actions,2023-09-07T20:22:53Z,- github-actions commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1710724563) at 2023-09-07 01:22 PM PDT -github-actions,2023-09-08T04:09:33Z,- github-actions commented on pull request: [5457](https://github.com/hackforla/website/pull/5457#issuecomment-1711046838) at 2023-09-07 09:09 PM PDT -github-actions,2023-09-08T04:34:22Z,- github-actions commented on pull request: [5458](https://github.com/hackforla/website/pull/5458#issuecomment-1711060792) at 2023-09-07 09:34 PM PDT -github-actions,2023-09-08T16:04:42Z,- github-actions commented on pull request: [5464](https://github.com/hackforla/website/pull/5464#issuecomment-1711905628) at 2023-09-08 09:04 AM PDT -github-actions,2023-09-08T18:39:43Z,- github-actions commented on pull request: [5465](https://github.com/hackforla/website/pull/5465#issuecomment-1712081577) at 2023-09-08 11:39 AM PDT -github-actions,2023-09-08T22:50:47Z,- github-actions commented on pull request: [5466](https://github.com/hackforla/website/pull/5466#issuecomment-1712310691) at 2023-09-08 03:50 PM PDT -github-actions,2023-09-09T02:23:39Z,- github-actions commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1712388934) at 2023-09-08 07:23 PM PDT -github-actions,2023-09-09T14:44:12Z,- github-actions commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1712528253) at 2023-09-09 07:44 AM PDT -github-actions,2023-09-10T02:58:33Z,- github-actions commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712695852) at 2023-09-09 07:58 PM PDT -github-actions,2023-09-11T23:33:58Z,- github-actions commented on pull request: [5478](https://github.com/hackforla/website/pull/5478#issuecomment-1714740115) at 2023-09-11 04:33 PM PDT -github-actions,2023-09-12T05:01:53Z,- github-actions commented on pull request: [5488](https://github.com/hackforla/website/pull/5488#issuecomment-1714971591) at 2023-09-11 10:01 PM PDT -github-actions,2023-09-12T19:15:47Z,- github-actions commented on pull request: [5510](https://github.com/hackforla/website/pull/5510#issuecomment-1716281558) at 2023-09-12 12:15 PM PDT -github-actions,2023-09-13T03:45:28Z,- github-actions commented on pull request: [5512](https://github.com/hackforla/website/pull/5512#issuecomment-1716896567) at 2023-09-12 08:45 PM PDT -github-actions,2023-09-13T05:07:23Z,- github-actions commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1716951756) at 2023-09-12 10:07 PM PDT -github-actions,2023-09-13T16:37:00Z,- github-actions commented on pull request: [5521](https://github.com/hackforla/website/pull/5521#issuecomment-1717965568) at 2023-09-13 09:37 AM PDT -github-actions,2023-09-13T21:15:11Z,- github-actions commented on pull request: [5522](https://github.com/hackforla/website/pull/5522#issuecomment-1718327057) at 2023-09-13 02:15 PM PDT -github-actions,2023-09-14T22:33:32Z,- github-actions commented on pull request: [5523](https://github.com/hackforla/website/pull/5523#issuecomment-1720242078) at 2023-09-14 03:33 PM PDT -github-actions,2023-09-15T01:19:24Z,- github-actions commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1720353022) at 2023-09-14 06:19 PM PDT -github-actions,2023-09-15T02:11:29Z,- github-actions commented on pull request: [5535](https://github.com/hackforla/website/pull/5535#issuecomment-1720388216) at 2023-09-14 07:11 PM PDT -github-actions,2023-09-15T03:24:57Z,- github-actions commented on pull request: [5537](https://github.com/hackforla/website/pull/5537#issuecomment-1720430368) at 2023-09-14 08:24 PM PDT -github-actions,2023-09-15T06:26:49Z,- github-actions commented on pull request: [5538](https://github.com/hackforla/website/pull/5538#issuecomment-1720744380) at 2023-09-14 11:26 PM PDT -github-actions,2023-09-15T16:56:17Z,- github-actions commented on pull request: [5542](https://github.com/hackforla/website/pull/5542#issuecomment-1721580987) at 2023-09-15 09:56 AM PDT -github-actions,2023-09-16T10:38:24Z,- github-actions commented on pull request: [5543](https://github.com/hackforla/website/pull/5543#issuecomment-1722200527) at 2023-09-16 03:38 AM PDT -github-actions,2023-09-17T04:29:32Z,- github-actions commented on pull request: [5544](https://github.com/hackforla/website/pull/5544#issuecomment-1722388873) at 2023-09-16 09:29 PM PDT -github-actions,2023-09-17T05:31:37Z,- github-actions commented on pull request: [5545](https://github.com/hackforla/website/pull/5545#issuecomment-1722397291) at 2023-09-16 10:31 PM PDT -github-actions,2023-09-17T06:13:53Z,- github-actions commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722403136) at 2023-09-16 11:13 PM PDT -github-actions,2023-09-17T20:18:46Z,- github-actions commented on pull request: [5549](https://github.com/hackforla/website/pull/5549#issuecomment-1722559496) at 2023-09-17 01:18 PM PDT -github-actions,2023-09-18T01:31:19Z,- github-actions commented on pull request: [5550](https://github.com/hackforla/website/pull/5550#issuecomment-1722646501) at 2023-09-17 06:31 PM PDT -github-actions,2023-09-18T17:06:50Z,- github-actions commented on pull request: [5552](https://github.com/hackforla/website/pull/5552#issuecomment-1724015956) at 2023-09-18 10:06 AM PDT -github-actions,2023-09-18T18:49:17Z,- github-actions commented on pull request: [5553](https://github.com/hackforla/website/pull/5553#issuecomment-1724188250) at 2023-09-18 11:49 AM PDT -github-actions,2023-09-18T19:25:20Z,- github-actions commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1724238135) at 2023-09-18 12:25 PM PDT -github-actions,2023-09-18T19:51:01Z,- github-actions commented on pull request: [5555](https://github.com/hackforla/website/pull/5555#issuecomment-1724272604) at 2023-09-18 12:51 PM PDT -github-actions,2023-09-18T21:14:02Z,- github-actions commented on pull request: [5556](https://github.com/hackforla/website/pull/5556#issuecomment-1724439376) at 2023-09-18 02:14 PM PDT -github-actions,2023-09-19T19:34:35Z,- github-actions commented on pull request: [5557](https://github.com/hackforla/website/pull/5557#issuecomment-1726358769) at 2023-09-19 12:34 PM PDT -github-actions,2023-09-20T01:53:43Z,- github-actions commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1726766004) at 2023-09-19 06:53 PM PDT -github-actions,2023-09-20T04:00:33Z,- github-actions commented on pull request: [5560](https://github.com/hackforla/website/pull/5560#issuecomment-1726891007) at 2023-09-19 09:00 PM PDT -github-actions,2023-09-20T22:17:41Z,- github-actions commented on pull request: [5563](https://github.com/hackforla/website/pull/5563#issuecomment-1728498465) at 2023-09-20 03:17 PM PDT -github-actions,2023-09-21T00:22:07Z,- github-actions commented on pull request: [5564](https://github.com/hackforla/website/pull/5564#issuecomment-1728587184) at 2023-09-20 05:22 PM PDT -github-actions,2023-09-21T07:19:12Z,- github-actions commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1728995110) at 2023-09-21 12:19 AM PDT -github-actions,2023-09-21T08:30:31Z,- github-actions commented on pull request: [5568](https://github.com/hackforla/website/pull/5568#issuecomment-1729102454) at 2023-09-21 01:30 AM PDT -github-actions,2023-09-21T19:00:21Z,- github-actions commented on pull request: [5569](https://github.com/hackforla/website/pull/5569#issuecomment-1730138103) at 2023-09-21 12:00 PM PDT -github-actions,2023-09-22T01:27:07Z,- github-actions commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1730635618) at 2023-09-21 06:27 PM PDT -github-actions,2023-09-22T20:54:10Z,- github-actions commented on pull request: [5571](https://github.com/hackforla/website/pull/5571#issuecomment-1732022155) at 2023-09-22 01:54 PM PDT -github-actions,2023-09-23T02:27:56Z,- github-actions commented on pull request: [5572](https://github.com/hackforla/website/pull/5572#issuecomment-1732185678) at 2023-09-22 07:27 PM PDT -github-actions,2023-09-24T04:03:16Z,- github-actions commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1732470493) at 2023-09-23 09:03 PM PDT -github-actions,2023-09-24T04:35:14Z,- github-actions commented on pull request: [5574](https://github.com/hackforla/website/pull/5574#issuecomment-1732474707) at 2023-09-23 09:35 PM PDT -github-actions,2023-09-24T05:20:00Z,- github-actions commented on pull request: [5575](https://github.com/hackforla/website/pull/5575#issuecomment-1732480603) at 2023-09-23 10:20 PM PDT -github-actions,2023-09-24T05:43:18Z,- github-actions commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1732490921) at 2023-09-23 10:43 PM PDT -github-actions,2023-09-24T09:20:36Z,- github-actions commented on pull request: [5577](https://github.com/hackforla/website/pull/5577#issuecomment-1732528755) at 2023-09-24 02:20 AM PDT -github-actions,2023-09-25T05:20:08Z,- github-actions commented on pull request: [5580](https://github.com/hackforla/website/pull/5580#issuecomment-1732934871) at 2023-09-24 10:20 PM PDT -github-actions,2023-09-25T23:05:35Z,- github-actions commented on pull request: [5582](https://github.com/hackforla/website/pull/5582#issuecomment-1734581604) at 2023-09-25 04:05 PM PDT -github-actions,2023-09-25T23:08:10Z,- github-actions commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1734583800) at 2023-09-25 04:08 PM PDT -github-actions,2023-09-26T02:05:25Z,- github-actions commented on pull request: [5585](https://github.com/hackforla/website/pull/5585#issuecomment-1734717793) at 2023-09-25 07:05 PM PDT -github-actions,2023-09-26T06:49:10Z,- github-actions commented on pull request: [5586](https://github.com/hackforla/website/pull/5586#issuecomment-1734929721) at 2023-09-25 11:49 PM PDT -github-actions,2023-09-26T20:34:15Z,- github-actions commented on pull request: [5593](https://github.com/hackforla/website/pull/5593#issuecomment-1736255292) at 2023-09-26 01:34 PM PDT -github-actions,2023-09-27T03:25:55Z,- github-actions commented on pull request: [5610](https://github.com/hackforla/website/pull/5610#issuecomment-1736615139) at 2023-09-26 08:25 PM PDT -github-actions,2023-09-27T03:46:44Z,- github-actions commented on pull request: [5611](https://github.com/hackforla/website/pull/5611#issuecomment-1736627228) at 2023-09-26 08:46 PM PDT -github-actions,2023-09-27T03:57:45Z,- github-actions commented on pull request: [5612](https://github.com/hackforla/website/pull/5612#issuecomment-1736633599) at 2023-09-26 08:57 PM PDT -github-actions,2023-09-27T23:07:20Z,- github-actions commented on pull request: [5616](https://github.com/hackforla/website/pull/5616#issuecomment-1738221333) at 2023-09-27 04:07 PM PDT -github-actions,2023-09-30T01:30:49Z,- github-actions commented on pull request: [5634](https://github.com/hackforla/website/pull/5634#issuecomment-1741619407) at 2023-09-29 06:30 PM PDT -github-actions,2023-09-30T22:48:37Z,- github-actions commented on pull request: [5636](https://github.com/hackforla/website/pull/5636#issuecomment-1741875674) at 2023-09-30 03:48 PM PDT -github-actions,2023-10-01T00:44:35Z,- github-actions commented on pull request: [5637](https://github.com/hackforla/website/pull/5637#issuecomment-1741897509) at 2023-09-30 05:44 PM PDT -github-actions,2023-10-02T01:09:38Z,- github-actions commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1742275799) at 2023-10-01 06:09 PM PDT -github-actions,2023-10-02T02:52:44Z,- github-actions commented on pull request: [5641](https://github.com/hackforla/website/pull/5641#issuecomment-1742335498) at 2023-10-01 07:52 PM PDT -github-actions,2023-10-02T04:59:42Z,- github-actions commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1742401677) at 2023-10-01 09:59 PM PDT -github-actions,2023-10-02T06:28:33Z,- github-actions commented on pull request: [5645](https://github.com/hackforla/website/pull/5645#issuecomment-1742460662) at 2023-10-01 11:28 PM PDT -github-actions,2023-10-02T19:27:29Z,- github-actions commented on pull request: [5646](https://github.com/hackforla/website/pull/5646#issuecomment-1743628130) at 2023-10-02 12:27 PM PDT -github-actions,2023-10-03T00:17:20Z,- github-actions commented on pull request: [5648](https://github.com/hackforla/website/pull/5648#issuecomment-1743961485) at 2023-10-02 05:17 PM PDT -github-actions,2023-10-03T09:31:09Z,- github-actions commented on pull request: [5649](https://github.com/hackforla/website/pull/5649#issuecomment-1744588583) at 2023-10-03 02:31 AM PDT -github-actions,2023-10-03T19:58:25Z,- github-actions commented on pull request: [5658](https://github.com/hackforla/website/pull/5658#issuecomment-1745635393) at 2023-10-03 12:58 PM PDT -github-actions,2023-10-04T01:49:04Z,- github-actions commented on pull request: [5659](https://github.com/hackforla/website/pull/5659#issuecomment-1746003904) at 2023-10-03 06:49 PM PDT -github-actions,2023-10-04T19:01:11Z,- github-actions commented on pull request: [5661](https://github.com/hackforla/website/pull/5661#issuecomment-1747471137) at 2023-10-04 12:01 PM PDT -github-actions,2023-10-04T22:37:17Z,- github-actions commented on pull request: [5662](https://github.com/hackforla/website/pull/5662#issuecomment-1747742706) at 2023-10-04 03:37 PM PDT -github-actions,2023-10-05T04:12:24Z,- github-actions commented on pull request: [5663](https://github.com/hackforla/website/pull/5663#issuecomment-1748004868) at 2023-10-04 09:12 PM PDT -github-actions,2023-10-05T05:16:24Z,- github-actions commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1748046132) at 2023-10-04 10:16 PM PDT -github-actions,2023-10-05T18:35:55Z,- github-actions commented on pull request: [5665](https://github.com/hackforla/website/pull/5665#issuecomment-1749444408) at 2023-10-05 11:35 AM PDT -github-actions,2023-10-06T22:59:03Z,- github-actions commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1751483471) at 2023-10-06 03:59 PM PDT -github-actions,2023-10-06T23:08:44Z,- github-actions commented on pull request: [5669](https://github.com/hackforla/website/pull/5669#issuecomment-1751488225) at 2023-10-06 04:08 PM PDT -github-actions,2023-10-06T23:57:59Z,- github-actions commented on pull request: [5670](https://github.com/hackforla/website/pull/5670#issuecomment-1751511188) at 2023-10-06 04:57 PM PDT -github-actions,2023-10-07T09:36:55Z,- github-actions commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1751665483) at 2023-10-07 02:36 AM PDT -github-actions,2023-10-07T15:59:25Z,- github-actions commented on pull request: [5672](https://github.com/hackforla/website/pull/5672#issuecomment-1751745159) at 2023-10-07 08:59 AM PDT -github-actions,2023-10-08T19:14:40Z,- github-actions commented on pull request: [5682](https://github.com/hackforla/website/pull/5682#issuecomment-1752136801) at 2023-10-08 12:14 PM PDT -github-actions,2023-10-09T01:49:48Z,- github-actions commented on pull request: [5683](https://github.com/hackforla/website/pull/5683#issuecomment-1752248788) at 2023-10-08 06:49 PM PDT -github-actions,2023-10-09T14:40:52Z,- github-actions commented on pull request: [5688](https://github.com/hackforla/website/pull/5688#issuecomment-1753142606) at 2023-10-09 07:40 AM PDT -github-actions,2023-10-09T23:58:37Z,- github-actions commented on pull request: [5689](https://github.com/hackforla/website/pull/5689#issuecomment-1754075041) at 2023-10-09 04:58 PM PDT -github-actions,2023-10-10T00:04:32Z,- github-actions commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1754082450) at 2023-10-09 05:04 PM PDT -github-actions,2023-10-10T06:11:51Z,- github-actions commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1754465292) at 2023-10-09 11:11 PM PDT -github-actions,2023-10-10T23:47:37Z,- github-actions commented on pull request: [5700](https://github.com/hackforla/website/pull/5700#issuecomment-1756473234) at 2023-10-10 04:47 PM PDT -github-actions,2023-10-11T01:52:59Z,- github-actions commented on pull request: [5701](https://github.com/hackforla/website/pull/5701#issuecomment-1756611643) at 2023-10-10 06:52 PM PDT -github-actions,2023-10-11T02:34:23Z,- github-actions commented on pull request: [5702](https://github.com/hackforla/website/pull/5702#issuecomment-1756653665) at 2023-10-10 07:34 PM PDT -github-actions,2023-10-13T21:39:12Z,- github-actions commented on pull request: [5704](https://github.com/hackforla/website/pull/5704#issuecomment-1762255675) at 2023-10-13 02:39 PM PDT -github-actions,2023-10-16T18:07:26Z,- github-actions commented on pull request: [5718](https://github.com/hackforla/website/pull/5718#issuecomment-1765012845) at 2023-10-16 11:07 AM PDT -github-actions,2023-10-16T19:52:10Z,- github-actions commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1765171218) at 2023-10-16 12:52 PM PDT -github-actions,2023-10-17T18:27:46Z,- github-actions commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1766946532) at 2023-10-17 11:27 AM PDT -github-actions,2023-10-17T20:08:43Z,- github-actions commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1767092499) at 2023-10-17 01:08 PM PDT -github-actions,2023-10-20T00:56:17Z,- github-actions commented on pull request: [5740](https://github.com/hackforla/website/pull/5740#issuecomment-1771904241) at 2023-10-19 05:56 PM PDT -github-actions,2023-10-20T02:49:43Z,- github-actions commented on pull request: [5741](https://github.com/hackforla/website/pull/5741#issuecomment-1771994069) at 2023-10-19 07:49 PM PDT -github-actions,2023-10-20T18:53:14Z,- github-actions commented on pull request: [5744](https://github.com/hackforla/website/pull/5744#issuecomment-1773240352) at 2023-10-20 11:53 AM PDT -github-actions,2023-10-20T21:50:41Z,- github-actions commented on pull request: [5745](https://github.com/hackforla/website/pull/5745#issuecomment-1773437228) at 2023-10-20 02:50 PM PDT -github-actions,2023-10-22T06:02:17Z,- github-actions commented on pull request: [5750](https://github.com/hackforla/website/pull/5750#issuecomment-1774004314) at 2023-10-21 11:02 PM PDT -github-actions,2023-10-22T13:36:21Z,- github-actions commented on pull request: [5751](https://github.com/hackforla/website/pull/5751#issuecomment-1774097945) at 2023-10-22 06:36 AM PDT -github-actions,2023-10-22T19:39:39Z,- github-actions commented on pull request: [5765](https://github.com/hackforla/website/pull/5765#issuecomment-1774181166) at 2023-10-22 12:39 PM PDT -github-actions,2023-10-23T22:52:11Z,- github-actions commented on pull request: [5768](https://github.com/hackforla/website/pull/5768#issuecomment-1776147443) at 2023-10-23 03:52 PM PDT -github-actions,2023-10-23T23:55:07Z,- github-actions commented on pull request: [5769](https://github.com/hackforla/website/pull/5769#issuecomment-1776236123) at 2023-10-23 04:55 PM PDT -github-actions,2023-10-24T19:12:52Z,- github-actions commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1777867967) at 2023-10-24 12:12 PM PDT -github-actions,2023-10-25T23:15:59Z,- github-actions commented on pull request: [5784](https://github.com/hackforla/website/pull/5784#issuecomment-1780184550) at 2023-10-25 04:15 PM PDT -github-actions,2023-10-25T23:18:13Z,- github-actions commented on pull request: [5785](https://github.com/hackforla/website/pull/5785#issuecomment-1780186176) at 2023-10-25 04:18 PM PDT -github-actions,2023-10-26T09:18:59Z,- github-actions commented on pull request: [5787](https://github.com/hackforla/website/pull/5787#issuecomment-1780732353) at 2023-10-26 02:18 AM PDT -github-actions,2023-10-26T18:24:43Z,- github-actions commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1781628875) at 2023-10-26 11:24 AM PDT -github-actions,2023-10-27T21:37:43Z,- github-actions commented on pull request: [5789](https://github.com/hackforla/website/pull/5789#issuecomment-1783539575) at 2023-10-27 02:37 PM PDT -github-actions,2023-10-29T21:55:44Z,- github-actions commented on pull request: [5793](https://github.com/hackforla/website/pull/5793#issuecomment-1784235835) at 2023-10-29 02:55 PM PDT -github-actions,2023-10-30T05:34:38Z,- github-actions commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1784513551) at 2023-10-29 10:34 PM PDT -github-actions,2023-11-01T21:18:20Z,- github-actions commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1789701733) at 2023-11-01 02:18 PM PDT -github-actions,2023-11-03T03:28:49Z,- github-actions commented on pull request: [5828](https://github.com/hackforla/website/pull/5828#issuecomment-1791851787) at 2023-11-02 08:28 PM PDT -github-actions,2023-11-03T08:08:11Z,- github-actions commented on pull request: [5833](https://github.com/hackforla/website/pull/5833#issuecomment-1792018516) at 2023-11-03 01:08 AM PDT -github-actions,2023-11-03T09:02:44Z,- github-actions commented on pull request: [5834](https://github.com/hackforla/website/pull/5834#issuecomment-1792079047) at 2023-11-03 02:02 AM PDT -github-actions,2023-11-04T05:31:54Z,- github-actions commented on pull request: [5835](https://github.com/hackforla/website/pull/5835#issuecomment-1793349209) at 2023-11-03 09:31 PM PST -github-actions,2023-11-05T09:26:54Z,- github-actions commented on pull request: [5836](https://github.com/hackforla/website/pull/5836#issuecomment-1793671900) at 2023-11-05 01:26 AM PST -github-actions,2023-11-05T09:56:02Z,- github-actions commented on pull request: [5837](https://github.com/hackforla/website/pull/5837#issuecomment-1793677172) at 2023-11-05 01:56 AM PST -github-actions,2023-11-05T19:36:02Z,- github-actions commented on pull request: [5853](https://github.com/hackforla/website/pull/5853#issuecomment-1793825822) at 2023-11-05 11:36 AM PST -github-actions,2023-11-06T04:07:45Z,- github-actions commented on pull request: [5858](https://github.com/hackforla/website/pull/5858#issuecomment-1794053104) at 2023-11-05 08:07 PM PST -github-actions,2023-11-08T02:54:51Z,- github-actions commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1800929081) at 2023-11-07 06:54 PM PST -github-actions,2023-11-08T03:02:42Z,- github-actions commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1800935431) at 2023-11-07 07:02 PM PST -github-actions,2023-11-08T20:59:25Z,- github-actions commented on pull request: [5886](https://github.com/hackforla/website/pull/5886#issuecomment-1802665390) at 2023-11-08 12:59 PM PST -github-actions,2023-11-09T01:32:41Z,- github-actions commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1803023124) at 2023-11-08 05:32 PM PST -github-actions,2023-11-09T02:24:31Z,- github-actions commented on pull request: [5888](https://github.com/hackforla/website/pull/5888#issuecomment-1803063179) at 2023-11-08 06:24 PM PST -github-actions,2023-11-09T20:08:33Z,- github-actions commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1804587578) at 2023-11-09 12:08 PM PST -github-actions,2023-11-09T21:57:54Z,- github-actions commented on pull request: [5890](https://github.com/hackforla/website/pull/5890#issuecomment-1804747215) at 2023-11-09 01:57 PM PST -github-actions,2023-11-11T06:37:59Z,- github-actions commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1806716043) at 2023-11-10 10:37 PM PST -github-actions,2023-11-12T06:41:52Z,- github-actions commented on pull request: [5892](https://github.com/hackforla/website/pull/5892#issuecomment-1807020923) at 2023-11-11 10:41 PM PST -github-actions,2023-11-12T20:15:06Z,- github-actions commented on pull request: [5893](https://github.com/hackforla/website/pull/5893#issuecomment-1807227520) at 2023-11-12 12:15 PM PST -github-actions,2023-11-13T06:16:43Z,- github-actions commented on pull request: [5894](https://github.com/hackforla/website/pull/5894#issuecomment-1807534071) at 2023-11-12 10:16 PM PST -github-actions,2023-11-13T08:47:00Z,- github-actions commented on pull request: [5896](https://github.com/hackforla/website/pull/5896#issuecomment-1807692740) at 2023-11-13 12:47 AM PST -github-actions,2023-11-13T23:12:45Z,- github-actions commented on pull request: [5899](https://github.com/hackforla/website/pull/5899#issuecomment-1809281850) at 2023-11-13 03:12 PM PST -github-actions,2023-11-14T00:26:57Z,- github-actions commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1809346827) at 2023-11-13 04:26 PM PST -github-actions,2023-11-14T01:25:32Z,- github-actions commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1809393634) at 2023-11-13 05:25 PM PST -github-actions,2023-11-14T21:10:38Z,- github-actions commented on pull request: [5902](https://github.com/hackforla/website/pull/5902#issuecomment-1811316240) at 2023-11-14 01:10 PM PST -github-actions,2023-11-14T21:41:24Z,- github-actions commented on pull request: [5903](https://github.com/hackforla/website/pull/5903#issuecomment-1811368507) at 2023-11-14 01:41 PM PST -github-actions,2023-11-14T22:01:30Z,- github-actions commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1811432086) at 2023-11-14 02:01 PM PST -github-actions,2023-11-14T22:35:13Z,- github-actions commented on pull request: [5905](https://github.com/hackforla/website/pull/5905#issuecomment-1811500646) at 2023-11-14 02:35 PM PST -github-actions,2023-11-14T22:56:30Z,- github-actions commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1811523200) at 2023-11-14 02:56 PM PST -github-actions,2023-11-15T04:01:04Z,- github-actions commented on pull request: [5907](https://github.com/hackforla/website/pull/5907#issuecomment-1811772847) at 2023-11-14 08:01 PM PST -github-actions,2023-11-15T19:25:09Z,- github-actions commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1813125777) at 2023-11-15 11:25 AM PST -github-actions,2023-11-16T03:27:48Z,- github-actions commented on pull request: [5910](https://github.com/hackforla/website/pull/5910#issuecomment-1813733853) at 2023-11-15 07:27 PM PST -github-actions,2023-11-16T04:17:52Z,- github-actions commented on pull request: [5911](https://github.com/hackforla/website/pull/5911#issuecomment-1813764960) at 2023-11-15 08:17 PM PST -github-actions,2023-11-16T19:05:33Z,- github-actions commented on pull request: [5912](https://github.com/hackforla/website/pull/5912#issuecomment-1815137298) at 2023-11-16 11:05 AM PST -github-actions,2023-11-16T19:19:25Z,- github-actions commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1815165761) at 2023-11-16 11:19 AM PST -github-actions,2023-11-16T19:20:34Z,- github-actions commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815167437) at 2023-11-16 11:20 AM PST -github-actions,2023-11-16T21:13:46Z,- github-actions commented on pull request: [5915](https://github.com/hackforla/website/pull/5915#issuecomment-1815324132) at 2023-11-16 01:13 PM PST -github-actions,2023-11-16T22:09:44Z,- github-actions commented on pull request: [5916](https://github.com/hackforla/website/pull/5916#issuecomment-1815393586) at 2023-11-16 02:09 PM PST -github-actions,2023-11-17T03:40:13Z,- github-actions commented on pull request: [5917](https://github.com/hackforla/website/pull/5917#issuecomment-1815700228) at 2023-11-16 07:40 PM PST -github-actions,2023-11-17T08:11:10Z,- github-actions commented on pull request: [5918](https://github.com/hackforla/website/pull/5918#issuecomment-1815911939) at 2023-11-17 12:11 AM PST -github-actions,2023-11-17T22:15:17Z,- github-actions commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1817185398) at 2023-11-17 02:15 PM PST -github-actions,2023-11-19T21:54:23Z,- github-actions commented on pull request: [5922](https://github.com/hackforla/website/pull/5922#issuecomment-1817989450) at 2023-11-19 01:54 PM PST -github-actions,2023-11-20T23:25:01Z,- github-actions commented on pull request: [5925](https://github.com/hackforla/website/pull/5925#issuecomment-1819964708) at 2023-11-20 03:25 PM PST -github-actions,2023-11-21T06:23:22Z,- github-actions commented on pull request: [5927](https://github.com/hackforla/website/pull/5927#issuecomment-1820310465) at 2023-11-20 10:23 PM PST -github-actions,2023-11-21T23:55:55Z,- github-actions commented on pull request: [5928](https://github.com/hackforla/website/pull/5928#issuecomment-1821877574) at 2023-11-21 03:55 PM PST -github-actions,2023-11-22T04:11:43Z,- github-actions commented on pull request: [5929](https://github.com/hackforla/website/pull/5929#issuecomment-1822074199) at 2023-11-21 08:11 PM PST -github-actions,2023-11-22T16:44:38Z,- github-actions commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1823127441) at 2023-11-22 08:44 AM PST -github-actions,2023-11-22T19:12:46Z,- github-actions commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1823348809) at 2023-11-22 11:12 AM PST -github-actions,2023-11-22T19:30:09Z,- github-actions commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1823392880) at 2023-11-22 11:30 AM PST -github-actions,2023-11-22T21:01:16Z,- github-actions commented on pull request: [5933](https://github.com/hackforla/website/pull/5933#issuecomment-1823497340) at 2023-11-22 01:01 PM PST -github-actions,2023-11-25T00:22:54Z,- github-actions commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826165033) at 2023-11-24 04:22 PM PST -github-actions,2023-11-25T07:00:02Z,- github-actions commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1826234890) at 2023-11-24 11:00 PM PST -github-actions,2023-11-27T18:14:29Z,- github-actions commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1828371682) at 2023-11-27 10:14 AM PST -github-actions,2023-11-28T07:38:56Z,- github-actions commented on pull request: [5940](https://github.com/hackforla/website/pull/5940#issuecomment-1829264550) at 2023-11-27 11:38 PM PST -github-actions,2023-11-28T22:32:41Z,- github-actions commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1830864463) at 2023-11-28 02:32 PM PST -github-actions,2023-11-29T02:29:25Z,- github-actions commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1831113803) at 2023-11-28 06:29 PM PST -github-actions,2023-11-29T05:04:24Z,- github-actions commented on pull request: [5943](https://github.com/hackforla/website/pull/5943#issuecomment-1831228716) at 2023-11-28 09:04 PM PST -github-actions,2023-11-29T07:59:21Z,- github-actions commented on pull request: [5944](https://github.com/hackforla/website/pull/5944#issuecomment-1831393011) at 2023-11-28 11:59 PM PST -github-actions,2023-11-29T20:11:31Z,- github-actions commented on pull request: [5945](https://github.com/hackforla/website/pull/5945#issuecomment-1832631346) at 2023-11-29 12:11 PM PST -github-actions,2023-11-29T21:12:07Z,- github-actions commented on pull request: [5946](https://github.com/hackforla/website/pull/5946#issuecomment-1832706977) at 2023-11-29 01:12 PM PST -github-actions,2023-11-29T21:27:24Z,- github-actions commented on pull request: [5947](https://github.com/hackforla/website/pull/5947#issuecomment-1832726159) at 2023-11-29 01:27 PM PST -github-actions,2023-11-30T20:56:23Z,- github-actions commented on pull request: [5950](https://github.com/hackforla/website/pull/5950#issuecomment-1834548233) at 2023-11-30 12:56 PM PST -github-actions,2023-11-30T21:40:12Z,- github-actions commented on pull request: [5951](https://github.com/hackforla/website/pull/5951#issuecomment-1834602211) at 2023-11-30 01:40 PM PST -github-actions,2023-12-01T00:27:23Z,- github-actions commented on pull request: [5952](https://github.com/hackforla/website/pull/5952#issuecomment-1835086486) at 2023-11-30 04:27 PM PST -github-actions,2023-12-01T20:34:33Z,- github-actions commented on pull request: [5954](https://github.com/hackforla/website/pull/5954#issuecomment-1836741452) at 2023-12-01 12:34 PM PST -github-actions,2023-12-02T01:15:17Z,- github-actions commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1836976795) at 2023-12-01 05:15 PM PST -github-actions,2023-12-04T20:11:38Z,- github-actions commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1839398789) at 2023-12-04 12:11 PM PST -github-actions,2023-12-05T00:49:44Z,- github-actions commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1839812122) at 2023-12-04 04:49 PM PST -github-actions,2023-12-05T03:40:06Z,- github-actions commented on pull request: [5967](https://github.com/hackforla/website/pull/5967#issuecomment-1839948825) at 2023-12-04 07:40 PM PST -github-actions,2023-12-07T04:42:23Z,- github-actions commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1844371563) at 2023-12-06 08:42 PM PST -github-actions,2023-12-08T06:18:22Z,- github-actions commented on pull request: [5976](https://github.com/hackforla/website/pull/5976#issuecomment-1846604658) at 2023-12-07 10:18 PM PST -github-actions,2023-12-08T07:22:32Z,- github-actions commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1846675176) at 2023-12-07 11:22 PM PST -github-actions,2023-12-09T00:19:01Z,- github-actions commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1847997822) at 2023-12-08 04:19 PM PST -github-actions,2023-12-12T08:59:48Z,- github-actions commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1851568259) at 2023-12-12 12:59 AM PST -github-actions,2023-12-13T02:32:14Z,- github-actions commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1853171541) at 2023-12-12 06:32 PM PST -github-actions,2023-12-13T23:38:09Z,- github-actions commented on pull request: [6005](https://github.com/hackforla/website/pull/6005#issuecomment-1854859289) at 2023-12-13 03:38 PM PST -github-actions,2023-12-14T22:37:35Z,- github-actions commented on pull request: [6007](https://github.com/hackforla/website/pull/6007#issuecomment-1856832145) at 2023-12-14 02:37 PM PST -github-actions,2023-12-14T23:40:29Z,- github-actions commented on pull request: [6008](https://github.com/hackforla/website/pull/6008#issuecomment-1856978366) at 2023-12-14 03:40 PM PST -github-actions,2023-12-14T23:40:36Z,- github-actions commented on pull request: [6009](https://github.com/hackforla/website/pull/6009#issuecomment-1856978625) at 2023-12-14 03:40 PM PST -github-actions,2023-12-15T21:50:11Z,- github-actions commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1858529951) at 2023-12-15 01:50 PM PST -github-actions,2023-12-17T04:59:17Z,- github-actions commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1859038614) at 2023-12-16 08:59 PM PST -github-actions,2023-12-19T08:16:27Z,- github-actions commented on pull request: [6012](https://github.com/hackforla/website/pull/6012#issuecomment-1862306389) at 2023-12-19 12:16 AM PST -github-actions,2023-12-19T23:23:20Z,- github-actions commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1863608386) at 2023-12-19 03:23 PM PST -github-actions,2023-12-21T15:56:20Z,- github-actions commented on pull request: [6014](https://github.com/hackforla/website/pull/6014#issuecomment-1866550882) at 2023-12-21 07:56 AM PST -github-actions,2023-12-26T20:14:59Z,- github-actions commented on pull request: [6016](https://github.com/hackforla/website/pull/6016#issuecomment-1869752451) at 2023-12-26 12:14 PM PST -github-actions,2023-12-28T22:12:47Z,- github-actions commented on pull request: [6021](https://github.com/hackforla/website/pull/6021#issuecomment-1871536315) at 2023-12-28 02:12 PM PST -github-actions,2024-01-02T02:35:16Z,- github-actions commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1873576439) at 2024-01-01 06:35 PM PST -github-actions,2024-01-03T00:50:08Z,- github-actions commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1874732169) at 2024-01-02 04:50 PM PST -github-actions,2024-01-03T22:09:39Z,- github-actions commented on pull request: [6056](https://github.com/hackforla/website/pull/6056#issuecomment-1876036158) at 2024-01-03 02:09 PM PST -github-actions,2024-01-03T23:26:49Z,- github-actions commented on pull request: [6057](https://github.com/hackforla/website/pull/6057#issuecomment-1876105039) at 2024-01-03 03:26 PM PST -github-actions,2024-01-04T20:08:18Z,- github-actions commented on pull request: [6061](https://github.com/hackforla/website/pull/6061#issuecomment-1877695274) at 2024-01-04 12:08 PM PST -github-actions,2024-01-05T00:14:01Z,- github-actions commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1877936423) at 2024-01-04 04:14 PM PST -github-actions,2024-01-05T05:23:49Z,- github-actions commented on pull request: [6067](https://github.com/hackforla/website/pull/6067#issuecomment-1878142982) at 2024-01-04 09:23 PM PST -github-actions,2024-01-05T08:10:19Z,- github-actions commented on pull request: [6068](https://github.com/hackforla/website/pull/6068#issuecomment-1878280727) at 2024-01-05 12:10 AM PST -github-actions,2024-01-05T22:43:10Z,- github-actions commented on pull request: [6069](https://github.com/hackforla/website/pull/6069#issuecomment-1879346000) at 2024-01-05 02:43 PM PST -github-actions,2024-01-05T23:10:27Z,- github-actions commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879365619) at 2024-01-05 03:10 PM PST -github-actions,2024-01-06T16:52:12Z,- github-actions commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879753049) at 2024-01-06 08:52 AM PST -github-actions,2024-01-07T01:12:36Z,- github-actions commented on pull request: [6073](https://github.com/hackforla/website/pull/6073#issuecomment-1879903118) at 2024-01-06 05:12 PM PST -github-actions,2024-01-07T23:07:53Z,- github-actions commented on pull request: [6075](https://github.com/hackforla/website/pull/6075#issuecomment-1880208583) at 2024-01-07 03:07 PM PST -github-actions,2024-01-08T02:23:31Z,- github-actions commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1880304981) at 2024-01-07 06:23 PM PST -github-actions,2024-01-08T03:10:36Z,- github-actions commented on pull request: [6077](https://github.com/hackforla/website/pull/6077#issuecomment-1880328172) at 2024-01-07 07:10 PM PST -github-actions,2024-01-09T03:37:31Z,- github-actions commented on pull request: [6079](https://github.com/hackforla/website/pull/6079#issuecomment-1882352405) at 2024-01-08 07:37 PM PST -github-actions,2024-01-09T03:52:01Z,- github-actions commented on pull request: [6080](https://github.com/hackforla/website/pull/6080#issuecomment-1882372090) at 2024-01-08 07:52 PM PST -github-actions,2024-01-09T04:10:12Z,- github-actions commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1882383713) at 2024-01-08 08:10 PM PST -github-actions,2024-01-10T00:24:13Z,- github-actions commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1884001285) at 2024-01-09 04:24 PM PST -github-actions,2024-01-11T01:24:32Z,- github-actions commented on pull request: [6098](https://github.com/hackforla/website/pull/6098#issuecomment-1886045931) at 2024-01-10 05:24 PM PST -github-actions,2024-01-11T01:27:47Z,- github-actions commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1886048383) at 2024-01-10 05:27 PM PST -github-actions,2024-01-11T23:59:25Z,- github-actions commented on pull request: [6100](https://github.com/hackforla/website/pull/6100#issuecomment-1888158512) at 2024-01-11 03:59 PM PST -github-actions,2024-01-12T22:56:57Z,- github-actions commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1890088843) at 2024-01-12 02:56 PM PST -github-actions,2024-01-18T20:43:49Z,- github-actions commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1899176344) at 2024-01-18 12:43 PM PST -github-actions,2024-01-19T02:19:01Z,- github-actions commented on pull request: [6131](https://github.com/hackforla/website/pull/6131#issuecomment-1899535690) at 2024-01-18 06:19 PM PST -github-actions,2024-01-19T05:49:38Z,- github-actions commented on pull request: [6132](https://github.com/hackforla/website/pull/6132#issuecomment-1899809488) at 2024-01-18 09:49 PM PST -github-actions,2024-01-20T19:24:17Z,- github-actions commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1902245685) at 2024-01-20 11:24 AM PST -github-actions,2024-01-21T04:06:20Z,- github-actions commented on pull request: [6134](https://github.com/hackforla/website/pull/6134#issuecomment-1902494920) at 2024-01-20 08:06 PM PST -github-actions,2024-01-21T04:26:35Z,- github-actions commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1902500989) at 2024-01-20 08:26 PM PST -github-actions,2024-01-21T08:32:46Z,- github-actions commented on pull request: [6136](https://github.com/hackforla/website/pull/6136#issuecomment-1902554362) at 2024-01-21 12:32 AM PST -github-actions,2024-01-22T07:37:11Z,- github-actions commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1903414056) at 2024-01-21 11:37 PM PST -github-actions,2024-01-23T22:06:41Z,- github-actions commented on pull request: [6146](https://github.com/hackforla/website/pull/6146#issuecomment-1906999668) at 2024-01-23 02:06 PM PST -github-actions,2024-01-23T22:42:24Z,- github-actions commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1907042343) at 2024-01-23 02:42 PM PST -github-actions,2024-01-24T01:04:44Z,- github-actions commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1907176564) at 2024-01-23 05:04 PM PST -github-actions,2024-01-24T04:38:06Z,- github-actions commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1907363715) at 2024-01-23 08:38 PM PST -github-actions,2024-01-24T23:40:50Z,- github-actions commented on pull request: [6151](https://github.com/hackforla/website/pull/6151#issuecomment-1909105830) at 2024-01-24 03:40 PM PST -github-actions,2024-01-25T01:24:53Z,- github-actions commented on pull request: [6152](https://github.com/hackforla/website/pull/6152#issuecomment-1909193256) at 2024-01-24 05:24 PM PST -github-actions,2024-01-25T03:50:50Z,- github-actions commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1909299512) at 2024-01-24 07:50 PM PST -github-actions,2024-01-25T22:33:25Z,- github-actions commented on pull request: [6164](https://github.com/hackforla/website/pull/6164#issuecomment-1911105535) at 2024-01-25 02:33 PM PST -github-actions,2024-01-27T04:29:32Z,- github-actions commented on pull request: [6186](https://github.com/hackforla/website/pull/6186#issuecomment-1912980706) at 2024-01-26 08:29 PM PST -github-actions,2024-01-29T00:31:07Z,- github-actions commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1913781679) at 2024-01-28 04:31 PM PST -github-actions,2024-01-29T21:22:10Z,- github-actions commented on pull request: [6194](https://github.com/hackforla/website/pull/6194#issuecomment-1915594372) at 2024-01-29 01:22 PM PST -github-actions,2024-01-30T20:18:24Z,- github-actions commented on pull request: [6197](https://github.com/hackforla/website/pull/6197#issuecomment-1917822399) at 2024-01-30 12:18 PM PST -github-actions,2024-01-30T20:53:11Z,- github-actions commented on pull request: [6198](https://github.com/hackforla/website/pull/6198#issuecomment-1917874226) at 2024-01-30 12:53 PM PST -github-actions,2024-01-31T23:37:10Z,- github-actions commented on pull request: [6201](https://github.com/hackforla/website/pull/6201#issuecomment-1920180949) at 2024-01-31 03:37 PM PST -github-actions,2024-02-01T01:03:52Z,- github-actions commented on pull request: [6202](https://github.com/hackforla/website/pull/6202#issuecomment-1920281628) at 2024-01-31 05:03 PM PST -github-actions,2024-02-01T01:56:02Z,- github-actions commented on pull request: [6203](https://github.com/hackforla/website/pull/6203#issuecomment-1920348626) at 2024-01-31 05:56 PM PST -github-actions,2024-02-01T04:48:02Z,- github-actions commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1920506494) at 2024-01-31 08:48 PM PST -github-actions,2024-02-01T20:38:30Z,- github-actions commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1922205046) at 2024-02-01 12:38 PM PST -github-actions,2024-02-01T22:01:10Z,- github-actions commented on pull request: [6206](https://github.com/hackforla/website/pull/6206#issuecomment-1922334471) at 2024-02-01 02:01 PM PST -github-actions,2024-02-02T01:55:25Z,- github-actions commented on pull request: [6207](https://github.com/hackforla/website/pull/6207#issuecomment-1922646631) at 2024-02-01 05:55 PM PST -github-actions,2024-02-02T02:29:03Z,- github-actions commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922677621) at 2024-02-01 06:29 PM PST -github-actions,2024-02-02T18:58:47Z,- github-actions commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1924500469) at 2024-02-02 10:58 AM PST -github-actions,2024-02-03T01:15:19Z,- github-actions commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1924994278) at 2024-02-02 05:15 PM PST -github-actions,2024-02-03T02:07:42Z,- github-actions commented on pull request: [6216](https://github.com/hackforla/website/pull/6216#issuecomment-1925020302) at 2024-02-02 06:07 PM PST -github-actions,2024-02-03T05:41:54Z,- github-actions commented on pull request: [6217](https://github.com/hackforla/website/pull/6217#issuecomment-1925141602) at 2024-02-02 09:41 PM PST -github-actions,2024-02-06T01:59:14Z,- github-actions commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1928645058) at 2024-02-05 05:59 PM PST -github-actions,2024-02-06T02:59:29Z,- github-actions commented on pull request: [6243](https://github.com/hackforla/website/pull/6243#issuecomment-1928694932) at 2024-02-05 06:59 PM PST -github-actions,2024-02-06T08:13:45Z,- github-actions commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1928985376) at 2024-02-06 12:13 AM PST -github-actions,2024-02-06T19:17:18Z,- github-actions commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1930598796) at 2024-02-06 11:17 AM PST -github-actions,2024-02-06T21:44:02Z,- github-actions commented on pull request: [6261](https://github.com/hackforla/website/pull/6261#issuecomment-1930801037) at 2024-02-06 01:44 PM PST -github-actions,2024-02-07T19:26:06Z,- github-actions commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1932722635) at 2024-02-07 11:26 AM PST -github-actions,2024-02-08T04:37:20Z,- github-actions commented on pull request: [6263](https://github.com/hackforla/website/pull/6263#issuecomment-1933351540) at 2024-02-07 08:37 PM PST -github-actions,2024-02-09T03:28:43Z,- github-actions commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1935282534) at 2024-02-08 07:28 PM PST -github-actions,2024-02-09T05:43:13Z,- github-actions commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1935367310) at 2024-02-08 09:43 PM PST -github-actions,2024-02-09T23:35:47Z,- github-actions commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1936740284) at 2024-02-09 03:35 PM PST -github-actions,2024-02-11T01:17:58Z,- github-actions commented on pull request: [6275](https://github.com/hackforla/website/pull/6275#issuecomment-1937381739) at 2024-02-10 05:17 PM PST -github-actions,2024-02-11T03:26:18Z,- github-actions commented on pull request: [6276](https://github.com/hackforla/website/pull/6276#issuecomment-1937408688) at 2024-02-10 07:26 PM PST -github-actions,2024-02-11T23:35:07Z,- github-actions commented on pull request: [6279](https://github.com/hackforla/website/pull/6279#issuecomment-1937913026) at 2024-02-11 03:35 PM PST -github-actions,2024-02-12T16:29:37Z,- github-actions commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939085075) at 2024-02-12 08:29 AM PST -github-actions,2024-02-12T20:10:45Z,- github-actions commented on pull request: [6282](https://github.com/hackforla/website/pull/6282#issuecomment-1939482316) at 2024-02-12 12:10 PM PST -github-actions,2024-02-13T16:49:01Z,- github-actions commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1941991374) at 2024-02-13 08:49 AM PST -github-actions,2024-02-14T02:29:13Z,- github-actions commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1942993200) at 2024-02-13 06:29 PM PST -github-actions,2024-02-14T03:54:18Z,- github-actions commented on pull request: [6293](https://github.com/hackforla/website/pull/6293#issuecomment-1943043820) at 2024-02-13 07:54 PM PST -github-actions,2024-02-15T14:10:05Z,- github-actions commented on pull request: [6300](https://github.com/hackforla/website/pull/6300#issuecomment-1946172880) at 2024-02-15 06:10 AM PST -github-actions,2024-02-16T00:04:57Z,- github-actions commented on pull request: [6301](https://github.com/hackforla/website/pull/6301#issuecomment-1947533557) at 2024-02-15 04:04 PM PST -github-actions,2024-02-16T06:20:55Z,- github-actions commented on pull request: [6302](https://github.com/hackforla/website/pull/6302#issuecomment-1947822420) at 2024-02-15 10:20 PM PST -github-actions,2024-02-16T18:12:12Z,- github-actions commented on pull request: [6304](https://github.com/hackforla/website/pull/6304#issuecomment-1949024588) at 2024-02-16 10:12 AM PST -github-actions,2024-02-16T18:29:02Z,- github-actions commented on pull request: [6305](https://github.com/hackforla/website/pull/6305#issuecomment-1949070602) at 2024-02-16 10:29 AM PST -github-actions,2024-02-17T00:56:21Z,- github-actions commented on pull request: [6306](https://github.com/hackforla/website/pull/6306#issuecomment-1949553567) at 2024-02-16 04:56 PM PST -github-actions,2024-02-17T02:07:54Z,- github-actions commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949602273) at 2024-02-16 06:07 PM PST -github-actions,2024-02-17T02:11:35Z,- github-actions commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1949605151) at 2024-02-16 06:11 PM PST -github-actions,2024-02-18T06:49:46Z,- github-actions commented on pull request: [6315](https://github.com/hackforla/website/pull/6315#issuecomment-1950981709) at 2024-02-17 10:49 PM PST -github-actions,2024-02-18T19:22:46Z,- github-actions commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1951420751) at 2024-02-18 11:22 AM PST -github-actions,2024-02-20T01:57:43Z,- github-actions commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1953367048) at 2024-02-19 05:57 PM PST -github-actions,2024-02-20T06:06:57Z,- github-actions commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1953545274) at 2024-02-19 10:06 PM PST -github-actions,2024-02-20T19:29:13Z,- github-actions commented on pull request: [6325](https://github.com/hackforla/website/pull/6325#issuecomment-1954915555) at 2024-02-20 11:29 AM PST -github-actions,2024-02-21T02:16:54Z,- github-actions commented on pull request: [6328](https://github.com/hackforla/website/pull/6328#issuecomment-1955746403) at 2024-02-20 06:16 PM PST -github-actions,2024-02-21T19:40:38Z,- github-actions commented on pull request: [6351](https://github.com/hackforla/website/pull/6351#issuecomment-1957773409) at 2024-02-21 11:40 AM PST -github-actions,2024-02-21T20:46:07Z,- github-actions commented on pull request: [6352](https://github.com/hackforla/website/pull/6352#issuecomment-1957881388) at 2024-02-21 12:46 PM PST -github-actions,2024-02-22T07:38:01Z,- github-actions commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1958865450) at 2024-02-21 11:38 PM PST -github-actions,2024-02-22T18:28:50Z,- github-actions commented on pull request: [6358](https://github.com/hackforla/website/pull/6358#issuecomment-1960024326) at 2024-02-22 10:28 AM PST -github-actions,2024-02-22T19:26:22Z,- github-actions commented on pull request: [6359](https://github.com/hackforla/website/pull/6359#issuecomment-1960108335) at 2024-02-22 11:26 AM PST -github-actions,2024-02-23T00:01:31Z,- github-actions commented on pull request: [6360](https://github.com/hackforla/website/pull/6360#issuecomment-1960536101) at 2024-02-22 04:01 PM PST -github-actions,2024-02-23T04:08:13Z,- github-actions commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1960706318) at 2024-02-22 08:08 PM PST -github-actions,2024-02-23T06:13:33Z,- github-actions commented on pull request: [6363](https://github.com/hackforla/website/pull/6363#issuecomment-1960784712) at 2024-02-22 10:13 PM PST -github-actions,2024-02-23T16:56:11Z,- github-actions commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1961673673) at 2024-02-23 08:56 AM PST -github-actions,2024-02-23T20:50:15Z,- github-actions commented on pull request: [6366](https://github.com/hackforla/website/pull/6366#issuecomment-1961972212) at 2024-02-23 12:50 PM PST -github-actions,2024-02-24T00:58:05Z,- github-actions commented on pull request: [6368](https://github.com/hackforla/website/pull/6368#issuecomment-1962187358) at 2024-02-23 04:58 PM PST -github-actions,2024-02-25T03:00:14Z,- github-actions commented on pull request: [6371](https://github.com/hackforla/website/pull/6371#issuecomment-1962795829) at 2024-02-24 07:00 PM PST -github-actions,2024-02-25T22:53:46Z,- github-actions commented on pull request: [6374](https://github.com/hackforla/website/pull/6374#issuecomment-1963090021) at 2024-02-25 02:53 PM PST -github-actions,2024-02-26T07:55:33Z,- github-actions commented on pull request: [6379](https://github.com/hackforla/website/pull/6379#issuecomment-1963511066) at 2024-02-25 11:55 PM PST -github-actions,2024-02-26T22:30:12Z,- github-actions commented on pull request: [6381](https://github.com/hackforla/website/pull/6381#issuecomment-1965432782) at 2024-02-26 02:30 PM PST -github-actions,2024-02-27T01:23:56Z,- github-actions commented on pull request: [6383](https://github.com/hackforla/website/pull/6383#issuecomment-1965623928) at 2024-02-26 05:23 PM PST -github-actions,2024-02-27T20:39:20Z,- github-actions commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1967551274) at 2024-02-27 12:39 PM PST -github-actions,2024-02-27T23:27:03Z,- github-actions commented on pull request: [6385](https://github.com/hackforla/website/pull/6385#issuecomment-1967902580) at 2024-02-27 03:27 PM PST -github-actions,2024-02-28T00:37:38Z,- github-actions commented on pull request: [6386](https://github.com/hackforla/website/pull/6386#issuecomment-1967972757) at 2024-02-27 04:37 PM PST -github-actions,2024-02-28T15:25:07Z,- github-actions commented on pull request: [6387](https://github.com/hackforla/website/pull/6387#issuecomment-1969223311) at 2024-02-28 07:25 AM PST -github-actions,2024-02-28T18:18:37Z,- github-actions commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1969574057) at 2024-02-28 10:18 AM PST -github-actions,2024-02-28T21:33:53Z,- github-actions commented on pull request: [6390](https://github.com/hackforla/website/pull/6390#issuecomment-1969957547) at 2024-02-28 01:33 PM PST -github-actions,2024-02-29T03:37:06Z,- github-actions commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1970337810) at 2024-02-28 07:37 PM PST -github-actions,2024-02-29T04:40:38Z,- github-actions commented on pull request: [6394](https://github.com/hackforla/website/pull/6394#issuecomment-1970383773) at 2024-02-28 08:40 PM PST -github-actions,2024-02-29T19:23:31Z,- github-actions commented on pull request: [6400](https://github.com/hackforla/website/pull/6400#issuecomment-1971810882) at 2024-02-29 11:23 AM PST -github-actions,2024-02-29T23:18:06Z,- github-actions commented on pull request: [6401](https://github.com/hackforla/website/pull/6401#issuecomment-1972134633) at 2024-02-29 03:18 PM PST -github-actions,2024-03-01T22:09:33Z,- github-actions commented on pull request: [6406](https://github.com/hackforla/website/pull/6406#issuecomment-1973995692) at 2024-03-01 02:09 PM PST -github-actions,2024-03-02T04:12:11Z,- github-actions commented on pull request: [6407](https://github.com/hackforla/website/pull/6407#issuecomment-1974264259) at 2024-03-01 08:12 PM PST -github-actions,2024-03-02T07:43:24Z,- github-actions commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1974667802) at 2024-03-01 11:43 PM PST -github-actions,2024-03-03T01:25:12Z,- github-actions commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1974968249) at 2024-03-02 05:25 PM PST -github-actions,2024-03-03T19:23:19Z,- github-actions commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1975271053) at 2024-03-03 11:23 AM PST -github-actions,2024-03-04T05:47:47Z,- github-actions commented on pull request: [6414](https://github.com/hackforla/website/pull/6414#issuecomment-1975778143) at 2024-03-03 09:47 PM PST -github-actions,2024-03-04T23:18:09Z,- github-actions commented on pull request: [6415](https://github.com/hackforla/website/pull/6415#issuecomment-1977636708) at 2024-03-04 03:18 PM PST -github-actions,2024-03-05T02:27:36Z,- github-actions commented on pull request: [6417](https://github.com/hackforla/website/pull/6417#issuecomment-1977833663) at 2024-03-04 06:27 PM PST -github-actions,2024-03-05T06:07:47Z,- github-actions commented on pull request: [6431](https://github.com/hackforla/website/pull/6431#issuecomment-1978030451) at 2024-03-04 10:07 PM PST -github-actions,2024-03-05T17:08:44Z,- github-actions commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1979246130) at 2024-03-05 09:08 AM PST -github-actions,2024-03-05T19:37:01Z,- github-actions commented on pull request: [6433](https://github.com/hackforla/website/pull/6433#issuecomment-1979499481) at 2024-03-05 11:37 AM PST -github-actions,2024-03-05T21:10:49Z,- github-actions commented on pull request: [6434](https://github.com/hackforla/website/pull/6434#issuecomment-1979641456) at 2024-03-05 01:10 PM PST -github-actions,2024-03-05T22:52:07Z,- github-actions commented on pull request: [6435](https://github.com/hackforla/website/pull/6435#issuecomment-1979771927) at 2024-03-05 02:52 PM PST -github-actions,2024-03-05T23:05:23Z,- github-actions commented on pull request: [6436](https://github.com/hackforla/website/pull/6436#issuecomment-1979788470) at 2024-03-05 03:05 PM PST -github-actions,2024-03-07T18:17:42Z,- github-actions commented on pull request: [6437](https://github.com/hackforla/website/pull/6437#issuecomment-1984157882) at 2024-03-07 10:17 AM PST -github-actions,2024-03-07T21:21:09Z,- github-actions commented on pull request: [6438](https://github.com/hackforla/website/pull/6438#issuecomment-1984520460) at 2024-03-07 01:21 PM PST -github-actions,2024-03-08T04:00:05Z,- github-actions commented on pull request: [6439](https://github.com/hackforla/website/pull/6439#issuecomment-1984999508) at 2024-03-07 08:00 PM PST -github-actions,2024-03-08T17:13:08Z,- github-actions commented on pull request: [6440](https://github.com/hackforla/website/pull/6440#issuecomment-1986088899) at 2024-03-08 09:13 AM PST -github-actions,2024-03-08T20:45:17Z,- github-actions commented on pull request: [6441](https://github.com/hackforla/website/pull/6441#issuecomment-1986391958) at 2024-03-08 12:45 PM PST -github-actions,2024-03-09T05:39:55Z,- github-actions commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-1986739828) at 2024-03-08 10:39 PM PDT -github-actions,2024-03-10T03:17:25Z,- github-actions commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1987054054) at 2024-03-09 08:17 PM PDT -github-actions,2024-03-10T19:09:27Z,- github-actions commented on pull request: [6445](https://github.com/hackforla/website/pull/6445#issuecomment-1987334363) at 2024-03-10 12:09 PM PDT -github-actions,2024-03-11T00:08:58Z,- github-actions commented on pull request: [6447](https://github.com/hackforla/website/pull/6447#issuecomment-1987424300) at 2024-03-10 05:08 PM PDT -github-actions,2024-03-11T03:18:41Z,- github-actions commented on pull request: [6448](https://github.com/hackforla/website/pull/6448#issuecomment-1987553704) at 2024-03-10 08:18 PM PDT -github-actions,2024-03-11T22:27:33Z,- github-actions commented on pull request: [6455](https://github.com/hackforla/website/pull/6455#issuecomment-1989554448) at 2024-03-11 03:27 PM PDT -github-actions,2024-03-11T23:44:03Z,- github-actions commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1989647678) at 2024-03-11 04:44 PM PDT -github-actions,2024-03-13T02:22:24Z,- github-actions commented on pull request: [6457](https://github.com/hackforla/website/pull/6457#issuecomment-1993157861) at 2024-03-12 07:22 PM PDT -github-actions,2024-03-13T18:26:04Z,- github-actions commented on pull request: [6458](https://github.com/hackforla/website/pull/6458#issuecomment-1995287188) at 2024-03-13 11:26 AM PDT -github-actions,2024-03-14T05:45:30Z,- github-actions commented on pull request: [6461](https://github.com/hackforla/website/pull/6461#issuecomment-1996573011) at 2024-03-13 10:45 PM PDT -github-actions,2024-03-14T06:43:39Z,- github-actions commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-1996628319) at 2024-03-13 11:43 PM PDT -github-actions,2024-03-14T23:19:31Z,- github-actions commented on pull request: [6464](https://github.com/hackforla/website/pull/6464#issuecomment-1998633203) at 2024-03-14 04:19 PM PDT -github-actions,2024-03-15T13:28:39Z,- github-actions commented on pull request: [6465](https://github.com/hackforla/website/pull/6465#issuecomment-1999667008) at 2024-03-15 06:28 AM PDT -github-actions,2024-03-15T23:24:07Z,- github-actions commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2000621117) at 2024-03-15 04:24 PM PDT -github-actions,2024-03-15T23:40:09Z,- github-actions commented on pull request: [6468](https://github.com/hackforla/website/pull/6468#issuecomment-2000659744) at 2024-03-15 04:40 PM PDT -github-actions,2024-03-16T01:56:56Z,- github-actions commented on pull request: [6469](https://github.com/hackforla/website/pull/6469#issuecomment-2001090451) at 2024-03-15 06:56 PM PDT -github-actions,2024-03-16T19:58:18Z,- github-actions commented on pull request: [6470](https://github.com/hackforla/website/pull/6470#issuecomment-2002108690) at 2024-03-16 12:58 PM PDT -github-actions,2024-03-17T22:54:17Z,- github-actions commented on pull request: [6471](https://github.com/hackforla/website/pull/6471#issuecomment-2002646137) at 2024-03-17 03:54 PM PDT -github-actions,2024-03-19T23:23:17Z,- github-actions commented on pull request: [6476](https://github.com/hackforla/website/pull/6476#issuecomment-2008333128) at 2024-03-19 04:23 PM PDT -github-actions,2024-03-20T00:43:42Z,- github-actions commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008433852) at 2024-03-19 05:43 PM PDT -github-actions,2024-03-20T19:37:28Z,- github-actions commented on pull request: [6486](https://github.com/hackforla/website/pull/6486#issuecomment-2010472382) at 2024-03-20 12:37 PM PDT -github-actions,2024-03-21T22:49:42Z,- github-actions commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2013982626) at 2024-03-21 03:49 PM PDT -github-actions,2024-03-22T02:23:15Z,- github-actions commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2014195134) at 2024-03-21 07:23 PM PDT -github-actions,2024-03-22T05:53:04Z,- github-actions commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2014407014) at 2024-03-21 10:53 PM PDT -github-actions,2024-03-22T07:11:34Z,- github-actions commented on pull request: [6505](https://github.com/hackforla/website/pull/6505#issuecomment-2014484756) at 2024-03-22 12:11 AM PDT -github-actions,2024-03-23T03:16:33Z,- github-actions commented on pull request: [6507](https://github.com/hackforla/website/pull/6507#issuecomment-2016325051) at 2024-03-22 08:16 PM PDT -github-actions,2024-03-23T05:25:02Z,- github-actions commented on pull request: [6508](https://github.com/hackforla/website/pull/6508#issuecomment-2016357603) at 2024-03-22 10:25 PM PDT -github-actions,2024-03-25T00:47:41Z,- github-actions commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2017025970) at 2024-03-24 05:47 PM PDT -github-actions,2024-03-25T03:16:39Z,- github-actions commented on pull request: [6517](https://github.com/hackforla/website/pull/6517#issuecomment-2017136300) at 2024-03-24 08:16 PM PDT -github-actions,2024-03-25T03:56:34Z,- github-actions commented on pull request: [6518](https://github.com/hackforla/website/pull/6518#issuecomment-2017164316) at 2024-03-24 08:56 PM PDT -github-actions,2024-03-26T19:14:42Z,- github-actions commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2021278319) at 2024-03-26 12:14 PM PDT -github-actions,2024-03-27T00:18:07Z,- github-actions commented on pull request: [6521](https://github.com/hackforla/website/pull/6521#issuecomment-2021697094) at 2024-03-26 05:18 PM PDT -github-actions,2024-03-27T01:50:31Z,- github-actions commented on pull request: [6522](https://github.com/hackforla/website/pull/6522#issuecomment-2021776140) at 2024-03-26 06:50 PM PDT -github-actions,2024-03-27T04:48:23Z,- github-actions commented on pull request: [6533](https://github.com/hackforla/website/pull/6533#issuecomment-2021926101) at 2024-03-26 09:48 PM PDT -github-actions,2024-03-27T05:01:00Z,- github-actions commented on pull request: [6534](https://github.com/hackforla/website/pull/6534#issuecomment-2021938093) at 2024-03-26 10:01 PM PDT -github-actions,2024-03-27T05:21:16Z,- github-actions commented on pull request: [6535](https://github.com/hackforla/website/pull/6535#issuecomment-2021962787) at 2024-03-26 10:21 PM PDT -github-actions,2024-03-27T18:19:28Z,- github-actions commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2023513711) at 2024-03-27 11:19 AM PDT -github-actions,2024-03-27T21:59:24Z,- github-actions commented on pull request: [6538](https://github.com/hackforla/website/pull/6538#issuecomment-2024063248) at 2024-03-27 02:59 PM PDT -github-actions,2024-03-28T02:31:06Z,- github-actions commented on pull request: [6540](https://github.com/hackforla/website/pull/6540#issuecomment-2024290196) at 2024-03-27 07:31 PM PDT -github-actions,2024-03-28T17:05:48Z,- github-actions commented on pull request: [6542](https://github.com/hackforla/website/pull/6542#issuecomment-2025707105) at 2024-03-28 10:05 AM PDT -github-actions,2024-03-28T20:05:04Z,- github-actions commented on pull request: [6543](https://github.com/hackforla/website/pull/6543#issuecomment-2026016637) at 2024-03-28 01:05 PM PDT -github-actions,2024-03-29T04:23:31Z,- github-actions commented on pull request: [6546](https://github.com/hackforla/website/pull/6546#issuecomment-2026625114) at 2024-03-28 09:23 PM PDT -github-actions,2024-03-29T04:28:10Z,- github-actions commented on pull request: [6547](https://github.com/hackforla/website/pull/6547#issuecomment-2026627786) at 2024-03-28 09:28 PM PDT -github-actions,2024-03-30T00:35:19Z,- github-actions commented on pull request: [6549](https://github.com/hackforla/website/pull/6549#issuecomment-2027845841) at 2024-03-29 05:35 PM PDT -github-actions,2024-03-30T03:25:43Z,- github-actions commented on pull request: [6550](https://github.com/hackforla/website/pull/6550#issuecomment-2027895549) at 2024-03-29 08:25 PM PDT -github-actions,2024-03-30T18:52:28Z,- github-actions commented on pull request: [6551](https://github.com/hackforla/website/pull/6551#issuecomment-2028441100) at 2024-03-30 11:52 AM PDT -github-actions,2024-04-01T02:04:23Z,- github-actions commented on pull request: [6553](https://github.com/hackforla/website/pull/6553#issuecomment-2029031341) at 2024-03-31 07:04 PM PDT -github-actions,2024-04-02T04:50:56Z,- github-actions commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2031079423) at 2024-04-01 09:50 PM PDT -github-actions,2024-04-02T17:55:56Z,- github-actions commented on pull request: [6557](https://github.com/hackforla/website/pull/6557#issuecomment-2032698715) at 2024-04-02 10:55 AM PDT -github-actions,2024-04-03T20:37:22Z,- github-actions commented on pull request: [6560](https://github.com/hackforla/website/pull/6560#issuecomment-2035536381) at 2024-04-03 01:37 PM PDT -github-actions,2024-04-03T22:08:25Z,- github-actions commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2035686306) at 2024-04-03 03:08 PM PDT -github-actions,2024-04-03T23:19:43Z,- github-actions commented on pull request: [6562](https://github.com/hackforla/website/pull/6562#issuecomment-2035796611) at 2024-04-03 04:19 PM PDT -github-actions,2024-04-04T05:58:41Z,- github-actions commented on pull request: [6564](https://github.com/hackforla/website/pull/6564#issuecomment-2036249941) at 2024-04-03 10:58 PM PDT -github-actions,2024-04-04T17:28:30Z,- github-actions commented on pull request: [6565](https://github.com/hackforla/website/pull/6565#issuecomment-2037787812) at 2024-04-04 10:28 AM PDT -github-actions,2024-04-04T20:49:22Z,- github-actions commented on pull request: [6566](https://github.com/hackforla/website/pull/6566#issuecomment-2038190441) at 2024-04-04 01:49 PM PDT -github-actions,2024-04-05T22:13:05Z,- github-actions commented on pull request: [6580](https://github.com/hackforla/website/pull/6580#issuecomment-2040696826) at 2024-04-05 03:13 PM PDT -github-actions,2024-04-09T19:52:28Z,- github-actions commented on pull request: [6612](https://github.com/hackforla/website/pull/6612#issuecomment-2045947112) at 2024-04-09 12:52 PM PDT -github-actions,2024-04-09T20:41:29Z,- github-actions commented on pull request: [6613](https://github.com/hackforla/website/pull/6613#issuecomment-2046014243) at 2024-04-09 01:41 PM PDT -github-actions,2024-04-10T20:51:18Z,- github-actions commented on pull request: [6616](https://github.com/hackforla/website/pull/6616#issuecomment-2048415227) at 2024-04-10 01:51 PM PDT -github-actions,2024-04-10T22:57:28Z,- github-actions commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2048567148) at 2024-04-10 03:57 PM PDT -github-actions,2024-04-10T23:29:24Z,- github-actions commented on pull request: [6618](https://github.com/hackforla/website/pull/6618#issuecomment-2048597076) at 2024-04-10 04:29 PM PDT -github-actions,2024-04-11T00:44:19Z,- github-actions commented on pull request: [6620](https://github.com/hackforla/website/pull/6620#issuecomment-2048662573) at 2024-04-10 05:44 PM PDT -github-actions,2024-04-11T15:44:26Z,- github-actions commented on pull request: [6624](https://github.com/hackforla/website/pull/6624#issuecomment-2049996635) at 2024-04-11 08:44 AM PDT -github-actions,2024-04-11T17:14:49Z,- github-actions commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2050147660) at 2024-04-11 10:14 AM PDT -github-actions,2024-04-11T23:18:16Z,- github-actions commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2050704045) at 2024-04-11 04:18 PM PDT -github-actions,2024-04-12T00:53:26Z,- github-actions commented on pull request: [6627](https://github.com/hackforla/website/pull/6627#issuecomment-2050779925) at 2024-04-11 05:53 PM PDT -github-actions,2024-04-12T01:43:25Z,- github-actions commented on pull request: [6629](https://github.com/hackforla/website/pull/6629#issuecomment-2050817948) at 2024-04-11 06:43 PM PDT -github-actions,2024-04-12T18:06:18Z,- github-actions commented on pull request: [6630](https://github.com/hackforla/website/pull/6630#issuecomment-2052232617) at 2024-04-12 11:06 AM PDT -github-actions,2024-04-12T22:41:34Z,- github-actions commented on pull request: [6631](https://github.com/hackforla/website/pull/6631#issuecomment-2052646888) at 2024-04-12 03:41 PM PDT -github-actions,2024-04-12T23:56:46Z,- github-actions commented on pull request: [6634](https://github.com/hackforla/website/pull/6634#issuecomment-2052706915) at 2024-04-12 04:56 PM PDT -github-actions,2024-04-13T00:35:43Z,- github-actions commented on pull request: [6635](https://github.com/hackforla/website/pull/6635#issuecomment-2052729209) at 2024-04-12 05:35 PM PDT -github-actions,2024-04-14T22:05:05Z,- github-actions commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2054198296) at 2024-04-14 03:05 PM PDT -github-actions,2024-04-15T00:27:32Z,- github-actions commented on pull request: [6647](https://github.com/hackforla/website/pull/6647#issuecomment-2054240838) at 2024-04-14 05:27 PM PDT -github-actions,2024-04-15T20:07:54Z,- github-actions commented on pull request: [6651](https://github.com/hackforla/website/pull/6651#issuecomment-2057715272) at 2024-04-15 01:07 PM PDT -github-actions,2024-04-15T23:25:01Z,- github-actions commented on pull request: [6652](https://github.com/hackforla/website/pull/6652#issuecomment-2057975190) at 2024-04-15 04:25 PM PDT -github-actions,2024-04-16T04:18:01Z,- github-actions commented on pull request: [6656](https://github.com/hackforla/website/pull/6656#issuecomment-2058198842) at 2024-04-15 09:18 PM PDT -github-actions,2024-04-16T15:26:44Z,- github-actions commented on pull request: [6657](https://github.com/hackforla/website/pull/6657#issuecomment-2059363842) at 2024-04-16 08:26 AM PDT -github-actions,2024-04-16T20:19:05Z,- github-actions commented on pull request: [6658](https://github.com/hackforla/website/pull/6658#issuecomment-2059857996) at 2024-04-16 01:19 PM PDT -github-actions,2024-04-17T21:42:05Z,- github-actions commented on pull request: [6659](https://github.com/hackforla/website/pull/6659#issuecomment-2062454692) at 2024-04-17 02:42 PM PDT -github-actions,2024-04-17T23:30:49Z,- github-actions commented on pull request: [6660](https://github.com/hackforla/website/pull/6660#issuecomment-2062664748) at 2024-04-17 04:30 PM PDT -github-actions,2024-04-18T00:49:01Z,- github-actions commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2062791009) at 2024-04-17 05:49 PM PDT -github-actions,2024-04-18T19:31:45Z,- github-actions commented on pull request: [6681](https://github.com/hackforla/website/pull/6681#issuecomment-2065071588) at 2024-04-18 12:31 PM PDT -github-actions,2024-04-18T21:06:28Z,- github-actions commented on pull request: [6682](https://github.com/hackforla/website/pull/6682#issuecomment-2065324165) at 2024-04-18 02:06 PM PDT -github-actions,2024-04-19T02:36:57Z,- github-actions commented on pull request: [6686](https://github.com/hackforla/website/pull/6686#issuecomment-2065647786) at 2024-04-18 07:36 PM PDT -github-actions,2024-04-19T10:15:19Z,- github-actions commented on pull request: [6688](https://github.com/hackforla/website/pull/6688#issuecomment-2066266081) at 2024-04-19 03:15 AM PDT -github-actions,2024-04-20T09:46:09Z,- github-actions commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2067620871) at 2024-04-20 02:46 AM PDT -github-actions,2024-04-20T18:22:14Z,- github-actions commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2067748890) at 2024-04-20 11:22 AM PDT -github-actions,2024-04-21T00:28:02Z,- github-actions commented on pull request: [6693](https://github.com/hackforla/website/pull/6693#issuecomment-2067825190) at 2024-04-20 05:28 PM PDT -github-actions,2024-04-21T00:39:58Z,- github-actions commented on pull request: [6694](https://github.com/hackforla/website/pull/6694#issuecomment-2067827260) at 2024-04-20 05:39 PM PDT -github-actions,2024-04-21T20:58:24Z,- github-actions commented on pull request: [6707](https://github.com/hackforla/website/pull/6707#issuecomment-2068195940) at 2024-04-21 01:58 PM PDT -github-actions,2024-04-21T21:16:25Z,- github-actions commented on pull request: [6708](https://github.com/hackforla/website/pull/6708#issuecomment-2068203028) at 2024-04-21 02:16 PM PDT -github-actions,2024-04-23T00:33:37Z,- github-actions commented on pull request: [6711](https://github.com/hackforla/website/pull/6711#issuecomment-2071173895) at 2024-04-22 05:33 PM PDT -github-actions,2024-04-23T20:55:23Z,- github-actions commented on pull request: [6712](https://github.com/hackforla/website/pull/6712#issuecomment-2073428692) at 2024-04-23 01:55 PM PDT -github-actions,2024-04-23T23:42:44Z,- github-actions commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2073663261) at 2024-04-23 04:42 PM PDT -github-actions,2024-04-24T16:21:10Z,- github-actions commented on pull request: [6744](https://github.com/hackforla/website/pull/6744#issuecomment-2075358392) at 2024-04-24 09:21 AM PDT -github-actions,2024-04-24T20:02:39Z,- github-actions commented on pull request: [6745](https://github.com/hackforla/website/pull/6745#issuecomment-2075743187) at 2024-04-24 01:02 PM PDT -github-actions,2024-04-24T20:16:08Z,- github-actions commented on pull request: [6746](https://github.com/hackforla/website/pull/6746#issuecomment-2075765917) at 2024-04-24 01:16 PM PDT -github-actions,2024-04-24T22:51:10Z,- github-actions commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2075983673) at 2024-04-24 03:51 PM PDT -github-actions,2024-04-25T00:09:10Z,- github-actions commented on pull request: [6748](https://github.com/hackforla/website/pull/6748#issuecomment-2076074889) at 2024-04-24 05:09 PM PDT -github-actions,2024-04-26T03:00:37Z,- github-actions commented on pull request: [6764](https://github.com/hackforla/website/pull/6764#issuecomment-2078549019) at 2024-04-25 08:00 PM PDT -github-actions,2024-04-26T05:22:11Z,- github-actions commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2078652712) at 2024-04-25 10:22 PM PDT -github-actions,2024-04-26T15:57:43Z,- github-actions commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2079667084) at 2024-04-26 08:57 AM PDT -github-actions,2024-04-26T18:33:09Z,- github-actions commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2079928635) at 2024-04-26 11:33 AM PDT -github-actions,2024-04-27T00:30:30Z,- github-actions commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2080267648) at 2024-04-26 05:30 PM PDT -github-actions,2024-04-27T10:45:18Z,- github-actions commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2080448766) at 2024-04-27 03:45 AM PDT -github-actions,2024-04-28T02:17:26Z,- github-actions commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2081294046) at 2024-04-27 07:17 PM PDT -github-actions,2024-04-28T02:26:42Z,- github-actions commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2081296162) at 2024-04-27 07:26 PM PDT -github-actions,2024-04-29T04:25:48Z,- github-actions commented on pull request: [6779](https://github.com/hackforla/website/pull/6779#issuecomment-2081868567) at 2024-04-28 09:25 PM PDT -github-actions,2024-04-29T08:17:52Z,- github-actions commented on pull request: [6780](https://github.com/hackforla/website/pull/6780#issuecomment-2082130866) at 2024-04-29 01:17 AM PDT -github-actions,2024-04-29T20:19:01Z,- github-actions commented on pull request: [6781](https://github.com/hackforla/website/pull/6781#issuecomment-2083590254) at 2024-04-29 01:19 PM PDT -github-actions,2024-04-29T22:00:55Z,- github-actions commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2083758072) at 2024-04-29 03:00 PM PDT -github-actions,2024-04-30T00:00:02Z,- github-actions commented on pull request: [6785](https://github.com/hackforla/website/pull/6785#issuecomment-2083896514) at 2024-04-29 05:00 PM PDT -github-actions,2024-04-30T07:02:49Z,- github-actions commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2084526099) at 2024-04-30 12:02 AM PDT -github-actions,2024-04-30T19:14:19Z,- github-actions commented on pull request: [6790](https://github.com/hackforla/website/pull/6790#issuecomment-2086711609) at 2024-04-30 12:14 PM PDT -github-actions,2024-04-30T20:00:15Z,- github-actions commented on pull request: [6791](https://github.com/hackforla/website/pull/6791#issuecomment-2086979330) at 2024-04-30 01:00 PM PDT -github-actions,2024-04-30T22:08:29Z,- github-actions commented on pull request: [6795](https://github.com/hackforla/website/pull/6795#issuecomment-2087530428) at 2024-04-30 03:08 PM PDT -github-actions,2024-05-01T00:52:56Z,- github-actions commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2087786041) at 2024-04-30 05:52 PM PDT -github-actions,2024-05-01T18:56:12Z,- github-actions commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2088924979) at 2024-05-01 11:56 AM PDT -github-actions,2024-05-01T19:19:27Z,- github-actions commented on pull request: [6802](https://github.com/hackforla/website/pull/6802#issuecomment-2088962146) at 2024-05-01 12:19 PM PDT -github-actions,2024-05-01T22:03:40Z,- github-actions commented on pull request: [6804](https://github.com/hackforla/website/pull/6804#issuecomment-2089207857) at 2024-05-01 03:03 PM PDT -github-actions,2024-05-02T07:14:18Z,- github-actions commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2089773421) at 2024-05-02 12:14 AM PDT -github-actions,2024-05-02T21:48:05Z,- github-actions commented on pull request: [6808](https://github.com/hackforla/website/pull/6808#issuecomment-2091796166) at 2024-05-02 02:48 PM PDT -github-actions,2024-05-03T19:46:30Z,- github-actions commented on pull request: [6810](https://github.com/hackforla/website/pull/6810#issuecomment-2093664290) at 2024-05-03 12:46 PM PDT -github-actions,2024-05-03T20:14:34Z,- github-actions commented on pull request: [6811](https://github.com/hackforla/website/pull/6811#issuecomment-2093699906) at 2024-05-03 01:14 PM PDT -github-actions,2024-05-03T23:51:04Z,- github-actions commented on pull request: [6813](https://github.com/hackforla/website/pull/6813#issuecomment-2093893750) at 2024-05-03 04:51 PM PDT -github-actions,2024-05-04T00:05:25Z,- github-actions commented on pull request: [6814](https://github.com/hackforla/website/pull/6814#issuecomment-2093900526) at 2024-05-03 05:05 PM PDT -github-actions,2024-05-04T00:35:40Z,- github-actions commented on pull request: [6815](https://github.com/hackforla/website/pull/6815#issuecomment-2093917919) at 2024-05-03 05:35 PM PDT -github-actions,2024-05-04T01:06:40Z,- github-actions commented on pull request: [6816](https://github.com/hackforla/website/pull/6816#issuecomment-2093935376) at 2024-05-03 06:06 PM PDT -github-actions,2024-05-04T06:39:44Z,- github-actions commented on pull request: [6817](https://github.com/hackforla/website/pull/6817#issuecomment-2094050358) at 2024-05-03 11:39 PM PDT -github-actions,2024-05-04T06:54:33Z,- github-actions commented on pull request: [6818](https://github.com/hackforla/website/pull/6818#issuecomment-2094054716) at 2024-05-03 11:54 PM PDT -github-actions,2024-05-06T00:52:21Z,- github-actions commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2095029254) at 2024-05-05 05:52 PM PDT -github-actions,2024-05-06T03:24:48Z,- github-actions commented on pull request: [6822](https://github.com/hackforla/website/pull/6822#issuecomment-2095127712) at 2024-05-05 08:24 PM PDT -github-actions,2024-05-06T23:20:33Z,- github-actions commented on pull request: [6824](https://github.com/hackforla/website/pull/6824#issuecomment-2097084743) at 2024-05-06 04:20 PM PDT -github-actions,2024-05-08T02:31:41Z,- github-actions commented on pull request: [6836](https://github.com/hackforla/website/pull/6836#issuecomment-2099620528) at 2024-05-07 07:31 PM PDT -github-actions,2024-05-08T16:20:52Z,- github-actions commented on pull request: [6839](https://github.com/hackforla/website/pull/6839#issuecomment-2100944045) at 2024-05-08 09:20 AM PDT -github-actions,2024-05-09T20:23:51Z,- github-actions commented on pull request: [6841](https://github.com/hackforla/website/pull/6841#issuecomment-2103361908) at 2024-05-09 01:23 PM PDT -github-actions,2024-05-10T07:30:04Z,- github-actions commented on pull request: [6846](https://github.com/hackforla/website/pull/6846#issuecomment-2104079468) at 2024-05-10 12:30 AM PDT -github-actions,2024-05-12T01:35:21Z,- github-actions commented on pull request: [6851](https://github.com/hackforla/website/pull/6851#issuecomment-2106083054) at 2024-05-11 06:35 PM PDT -github-actions,2024-05-13T17:10:12Z,- github-actions commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2108274626) at 2024-05-13 10:10 AM PDT -github-actions,2024-05-14T00:52:04Z,- github-actions commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2109071421) at 2024-05-13 05:52 PM PDT -github-actions,2024-05-14T19:41:25Z,- github-actions commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2111012556) at 2024-05-14 12:41 PM PDT -github-actions,2024-05-14T21:46:19Z,- github-actions commented on pull request: [6855](https://github.com/hackforla/website/pull/6855#issuecomment-2111191335) at 2024-05-14 02:46 PM PDT -github-actions,2024-05-15T02:04:36Z,- github-actions commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2111446853) at 2024-05-14 07:04 PM PDT -github-actions,2024-05-18T18:13:50Z,- github-actions commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2118906227) at 2024-05-18 11:13 AM PDT -github-actions,2024-05-20T22:31:28Z,- github-actions commented on pull request: [6865](https://github.com/hackforla/website/pull/6865#issuecomment-2121324378) at 2024-05-20 03:31 PM PDT -github-actions,2024-05-21T06:01:53Z,- github-actions commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2121811225) at 2024-05-20 11:01 PM PDT -github-actions,2024-05-21T18:24:42Z,- github-actions commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2123195537) at 2024-05-21 11:24 AM PDT -github-actions,2024-05-21T20:42:12Z,- github-actions commented on pull request: [6874](https://github.com/hackforla/website/pull/6874#issuecomment-2123408417) at 2024-05-21 01:42 PM PDT -github-actions,2024-05-22T03:24:50Z,- github-actions commented on pull request: [6883](https://github.com/hackforla/website/pull/6883#issuecomment-2123798181) at 2024-05-21 08:24 PM PDT -github-actions,2024-05-22T17:26:19Z,- github-actions commented on pull request: [6886](https://github.com/hackforla/website/pull/6886#issuecomment-2125379834) at 2024-05-22 10:26 AM PDT -github-actions,2024-05-22T20:56:34Z,- github-actions commented on pull request: [6887](https://github.com/hackforla/website/pull/6887#issuecomment-2125730270) at 2024-05-22 01:56 PM PDT -github-actions,2024-05-23T00:35:43Z,- github-actions commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2125991212) at 2024-05-22 05:35 PM PDT -github-actions,2024-05-23T20:05:19Z,- github-actions commented on pull request: [6890](https://github.com/hackforla/website/pull/6890#issuecomment-2127932458) at 2024-05-23 01:05 PM PDT -github-actions,2024-05-24T03:37:13Z,- github-actions commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2128464307) at 2024-05-23 08:37 PM PDT -github-actions,2024-05-24T03:42:53Z,- github-actions commented on pull request: [6892](https://github.com/hackforla/website/pull/6892#issuecomment-2128467987) at 2024-05-23 08:42 PM PDT -github-actions,2024-05-24T18:28:51Z,- github-actions commented on pull request: [6893](https://github.com/hackforla/website/pull/6893#issuecomment-2130136934) at 2024-05-24 11:28 AM PDT -github-actions,2024-05-24T23:23:07Z,- github-actions commented on pull request: [6894](https://github.com/hackforla/website/pull/6894#issuecomment-2130507705) at 2024-05-24 04:23 PM PDT -github-actions,2024-05-25T00:00:12Z,- github-actions commented on pull request: [6895](https://github.com/hackforla/website/pull/6895#issuecomment-2130529308) at 2024-05-24 05:00 PM PDT -github-actions,2024-05-25T17:46:28Z,- github-actions commented on pull request: [6896](https://github.com/hackforla/website/pull/6896#issuecomment-2131372696) at 2024-05-25 10:46 AM PDT -github-actions,2024-05-26T02:06:42Z,- github-actions commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2131963477) at 2024-05-25 07:06 PM PDT -github-actions,2024-05-26T04:04:34Z,- github-actions commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2132054377) at 2024-05-25 09:04 PM PDT -github-actions,2024-05-26T17:56:35Z,- github-actions commented on pull request: [6899](https://github.com/hackforla/website/pull/6899#issuecomment-2132299748) at 2024-05-26 10:56 AM PDT -github-actions,2024-05-27T16:33:25Z,- github-actions commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2133808627) at 2024-05-27 09:33 AM PDT -github-actions,2024-05-27T18:51:25Z,- github-actions commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2133935802) at 2024-05-27 11:51 AM PDT -github-actions,2024-05-28T21:11:01Z,- github-actions commented on pull request: [6905](https://github.com/hackforla/website/pull/6905#issuecomment-2136113828) at 2024-05-28 02:11 PM PDT -github-actions,2024-05-28T21:40:51Z,- github-actions commented on pull request: [6906](https://github.com/hackforla/website/pull/6906#issuecomment-2136155400) at 2024-05-28 02:40 PM PDT -github-actions,2024-05-29T03:18:21Z,- github-actions commented on pull request: [6907](https://github.com/hackforla/website/pull/6907#issuecomment-2136441231) at 2024-05-28 08:18 PM PDT -github-actions,2024-05-30T01:20:25Z,- github-actions commented on pull request: [6912](https://github.com/hackforla/website/pull/6912#issuecomment-2138501037) at 2024-05-29 06:20 PM PDT -github-actions,2024-05-30T03:03:24Z,- github-actions commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2138586535) at 2024-05-29 08:03 PM PDT -github-actions,2024-05-30T03:06:51Z,- github-actions commented on pull request: [6914](https://github.com/hackforla/website/pull/6914#issuecomment-2138589268) at 2024-05-29 08:06 PM PDT -github-actions,2024-05-30T23:31:57Z,- github-actions commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2141001444) at 2024-05-30 04:31 PM PDT -github-actions,2024-05-31T06:13:58Z,- github-actions commented on pull request: [6917](https://github.com/hackforla/website/pull/6917#issuecomment-2141300990) at 2024-05-30 11:13 PM PDT -github-actions,2024-06-01T06:17:39Z,- github-actions commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143318199) at 2024-05-31 11:17 PM PDT -github-actions,2024-06-01T20:28:55Z,- github-actions commented on pull request: [6923](https://github.com/hackforla/website/pull/6923#issuecomment-2143576741) at 2024-06-01 01:28 PM PDT -github-actions,2024-06-02T05:01:03Z,- github-actions commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2143698137) at 2024-06-01 10:01 PM PDT -github-actions,2024-06-02T14:20:18Z,- github-actions commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2143874945) at 2024-06-02 07:20 AM PDT -github-actions,2024-06-02T17:35:49Z,- github-actions commented on pull request: [6928](https://github.com/hackforla/website/pull/6928#issuecomment-2143960276) at 2024-06-02 10:35 AM PDT -github-actions,2024-06-04T03:33:56Z,- github-actions commented on pull request: [6958](https://github.com/hackforla/website/pull/6958#issuecomment-2146521760) at 2024-06-03 08:33 PM PDT -github-actions,2024-06-05T19:45:45Z,- github-actions commented on pull request: [6961](https://github.com/hackforla/website/pull/6961#issuecomment-2150831007) at 2024-06-05 12:45 PM PDT -github-actions,2024-06-05T21:13:18Z,- github-actions commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2150972171) at 2024-06-05 02:13 PM PDT -github-actions,2024-06-05T23:30:47Z,- github-actions commented on pull request: [6965](https://github.com/hackforla/website/pull/6965#issuecomment-2151122040) at 2024-06-05 04:30 PM PDT -github-actions,2024-06-06T22:33:58Z,- github-actions commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2153508435) at 2024-06-06 03:33 PM PDT -github-actions,2024-06-07T05:16:31Z,- github-actions commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2154045075) at 2024-06-06 10:16 PM PDT -github-actions,2024-06-07T05:54:49Z,- github-actions commented on pull request: [6972](https://github.com/hackforla/website/pull/6972#issuecomment-2154134497) at 2024-06-06 10:54 PM PDT -github-actions,2024-06-08T00:05:37Z,- github-actions commented on pull request: [6973](https://github.com/hackforla/website/pull/6973#issuecomment-2155710274) at 2024-06-07 05:05 PM PDT -github-actions,2024-06-08T04:56:50Z,- github-actions commented on pull request: [6974](https://github.com/hackforla/website/pull/6974#issuecomment-2155809125) at 2024-06-07 09:56 PM PDT -github-actions,2024-06-09T01:43:51Z,- github-actions commented on pull request: [6975](https://github.com/hackforla/website/pull/6975#issuecomment-2156264046) at 2024-06-08 06:43 PM PDT -github-actions,2024-06-10T10:15:33Z,- github-actions commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2157942899) at 2024-06-10 03:15 AM PDT -github-actions,2024-06-10T20:02:46Z,- github-actions commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2159186441) at 2024-06-10 01:02 PM PDT -github-actions,2024-06-10T20:47:09Z,- github-actions commented on pull request: [6983](https://github.com/hackforla/website/pull/6983#issuecomment-2159255564) at 2024-06-10 01:47 PM PDT -github-actions,2024-06-10T22:13:11Z,- github-actions commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2159396512) at 2024-06-10 03:13 PM PDT -github-actions,2024-06-10T22:45:47Z,- github-actions commented on pull request: [6985](https://github.com/hackforla/website/pull/6985#issuecomment-2159434983) at 2024-06-10 03:45 PM PDT -github-actions,2024-06-12T00:20:54Z,- github-actions commented on pull request: [6989](https://github.com/hackforla/website/pull/6989#issuecomment-2161835264) at 2024-06-11 05:20 PM PDT -github-actions,2024-06-12T17:49:28Z,- github-actions commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163600129) at 2024-06-12 10:49 AM PDT -github-actions,2024-06-12T17:57:33Z,- github-actions commented on pull request: [6992](https://github.com/hackforla/website/pull/6992#issuecomment-2163613401) at 2024-06-12 10:57 AM PDT -github-actions,2024-06-13T00:04:34Z,- github-actions commented on pull request: [6999](https://github.com/hackforla/website/pull/6999#issuecomment-2164112296) at 2024-06-12 05:04 PM PDT -github-actions,2024-06-13T19:28:31Z,- github-actions commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2166616511) at 2024-06-13 12:28 PM PDT -github-actions,2024-06-13T19:57:27Z,- github-actions commented on pull request: [7002](https://github.com/hackforla/website/pull/7002#issuecomment-2166660934) at 2024-06-13 12:57 PM PDT -github-actions,2024-06-14T02:18:39Z,- github-actions commented on pull request: [7003](https://github.com/hackforla/website/pull/7003#issuecomment-2167088221) at 2024-06-13 07:18 PM PDT -github-actions,2024-06-15T23:18:52Z,- github-actions commented on pull request: [7008](https://github.com/hackforla/website/pull/7008#issuecomment-2170967661) at 2024-06-15 04:18 PM PDT -github-actions,2024-06-15T23:38:18Z,- github-actions commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2170971218) at 2024-06-15 04:38 PM PDT -github-actions,2024-06-17T11:33:35Z,- github-actions commented on pull request: [7012](https://github.com/hackforla/website/pull/7012#issuecomment-2173146761) at 2024-06-17 04:33 AM PDT -github-actions,2024-06-17T18:54:11Z,- github-actions commented on pull request: [7016](https://github.com/hackforla/website/pull/7016#issuecomment-2174206487) at 2024-06-17 11:54 AM PDT -github-actions,2024-06-18T07:39:14Z,- github-actions commented on pull request: [7017](https://github.com/hackforla/website/pull/7017#issuecomment-2175411219) at 2024-06-18 12:39 AM PDT -github-actions,2024-06-19T15:20:27Z,- github-actions commented on pull request: [7036](https://github.com/hackforla/website/pull/7036#issuecomment-2178965760) at 2024-06-19 08:20 AM PDT -github-actions,2024-06-19T20:10:08Z,- github-actions commented on pull request: [7037](https://github.com/hackforla/website/pull/7037#issuecomment-2179399337) at 2024-06-19 01:10 PM PDT -github-actions,2024-06-19T23:01:39Z,- github-actions commented on pull request: [7038](https://github.com/hackforla/website/pull/7038#issuecomment-2179547981) at 2024-06-19 04:01 PM PDT -github-actions,2024-06-20T22:04:17Z,- github-actions commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2181632670) at 2024-06-20 03:04 PM PDT -github-actions,2024-06-20T23:29:30Z,- github-actions commented on pull request: [7041](https://github.com/hackforla/website/pull/7041#issuecomment-2181714011) at 2024-06-20 04:29 PM PDT -github-actions,2024-06-21T02:59:34Z,- github-actions commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2181905389) at 2024-06-20 07:59 PM PDT -github-actions,2024-06-23T03:50:12Z,- github-actions commented on pull request: [7052](https://github.com/hackforla/website/pull/7052#issuecomment-2184489197) at 2024-06-22 08:50 PM PDT -github-actions,2024-06-23T04:41:33Z,- github-actions commented on pull request: [7053](https://github.com/hackforla/website/pull/7053#issuecomment-2184527368) at 2024-06-22 09:41 PM PDT -github-actions,2024-06-23T04:43:29Z,- github-actions commented on pull request: [7054](https://github.com/hackforla/website/pull/7054#issuecomment-2184527744) at 2024-06-22 09:43 PM PDT -github-actions,2024-06-23T04:45:04Z,- github-actions commented on pull request: [7055](https://github.com/hackforla/website/pull/7055#issuecomment-2184529469) at 2024-06-22 09:45 PM PDT -github-actions,2024-06-23T04:46:36Z,- github-actions commented on pull request: [7056](https://github.com/hackforla/website/pull/7056#issuecomment-2184530913) at 2024-06-22 09:46 PM PDT -github-actions,2024-06-24T02:48:35Z,- github-actions commented on pull request: [7057](https://github.com/hackforla/website/pull/7057#issuecomment-2185486875) at 2024-06-23 07:48 PM PDT -github-actions,2024-06-24T04:19:48Z,- github-actions commented on pull request: [7058](https://github.com/hackforla/website/pull/7058#issuecomment-2185574658) at 2024-06-23 09:19 PM PDT -github-actions,2024-06-24T04:26:16Z,- github-actions commented on pull request: [7059](https://github.com/hackforla/website/pull/7059#issuecomment-2185580462) at 2024-06-23 09:26 PM PDT -github-actions,2024-06-24T19:13:48Z,- github-actions commented on pull request: [7063](https://github.com/hackforla/website/pull/7063#issuecomment-2187237226) at 2024-06-24 12:13 PM PDT -github-actions,2024-06-26T03:04:55Z,- github-actions commented on pull request: [7065](https://github.com/hackforla/website/pull/7065#issuecomment-2190456469) at 2024-06-25 08:04 PM PDT -github-actions,2024-06-26T20:05:38Z,- github-actions commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2192534306) at 2024-06-26 01:05 PM PDT -github-actions,2024-06-26T21:38:57Z,- github-actions commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192669914) at 2024-06-26 02:38 PM PDT -github-actions,2024-06-26T21:47:14Z,- github-actions commented on pull request: [7069](https://github.com/hackforla/website/pull/7069#issuecomment-2192680129) at 2024-06-26 02:47 PM PDT -github-actions,2024-06-27T09:02:40Z,- github-actions commented on pull request: [7070](https://github.com/hackforla/website/pull/7070#issuecomment-2194163643) at 2024-06-27 02:02 AM PDT -github-actions,2024-06-27T16:35:32Z,- github-actions commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195181179) at 2024-06-27 09:35 AM PDT -github-actions,2024-06-27T18:25:47Z,- github-actions commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2195417457) at 2024-06-27 11:25 AM PDT -github-actions,2024-06-27T19:17:12Z,- github-actions commented on pull request: [7074](https://github.com/hackforla/website/pull/7074#issuecomment-2195500276) at 2024-06-27 12:17 PM PDT -github-actions,2024-06-28T03:02:31Z,- github-actions commented on pull request: [7077](https://github.com/hackforla/website/pull/7077#issuecomment-2196019732) at 2024-06-27 08:02 PM PDT -github-actions,2024-06-28T23:19:30Z,- github-actions commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2197763070) at 2024-06-28 04:19 PM PDT -github-actions,2024-06-29T05:14:00Z,- github-actions commented on pull request: [7082](https://github.com/hackforla/website/pull/7082#issuecomment-2197968366) at 2024-06-28 10:14 PM PDT -github-actions,2024-07-02T03:59:26Z,- github-actions commented on pull request: [7086](https://github.com/hackforla/website/pull/7086#issuecomment-2201844003) at 2024-07-01 08:59 PM PDT -github-actions,2024-07-05T06:03:29Z,- github-actions commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2210235766) at 2024-07-04 11:03 PM PDT -github-actions,2024-07-13T02:12:27Z,- github-actions commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2226721346) at 2024-07-12 07:12 PM PDT -github-actions,2024-07-13T22:31:49Z,- github-actions commented on pull request: [7106](https://github.com/hackforla/website/pull/7106#issuecomment-2227120527) at 2024-07-13 03:31 PM PDT -github-actions,2024-07-15T02:18:40Z,- github-actions commented on pull request: [7109](https://github.com/hackforla/website/pull/7109#issuecomment-2227602578) at 2024-07-14 07:18 PM PDT -github-actions,2024-07-15T09:48:21Z,- github-actions commented on pull request: [7119](https://github.com/hackforla/website/pull/7119#issuecomment-2228104033) at 2024-07-15 02:48 AM PDT -github-actions,2024-07-15T22:20:57Z,- github-actions commented on pull request: [7121](https://github.com/hackforla/website/pull/7121#issuecomment-2229534807) at 2024-07-15 03:20 PM PDT -github-actions,2024-07-15T22:25:50Z,- github-actions commented on pull request: [7122](https://github.com/hackforla/website/pull/7122#issuecomment-2229539854) at 2024-07-15 03:25 PM PDT -github-actions,2024-07-15T23:26:58Z,- github-actions commented on pull request: [7123](https://github.com/hackforla/website/pull/7123#issuecomment-2229612830) at 2024-07-15 04:26 PM PDT -github-actions,2024-07-15T23:34:46Z,- github-actions commented on pull request: [7124](https://github.com/hackforla/website/pull/7124#issuecomment-2229619938) at 2024-07-15 04:34 PM PDT -github-actions,2024-07-16T05:43:52Z,- github-actions commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2230070816) at 2024-07-15 10:43 PM PDT -github-actions,2024-07-17T00:46:57Z,- github-actions commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2232079872) at 2024-07-16 05:46 PM PDT -github-actions,2024-07-17T23:28:17Z,- github-actions commented on pull request: [7127](https://github.com/hackforla/website/pull/7127#issuecomment-2234704039) at 2024-07-17 04:28 PM PDT -github-actions,2024-07-18T22:31:48Z,- github-actions commented on pull request: [7128](https://github.com/hackforla/website/pull/7128#issuecomment-2237730127) at 2024-07-18 03:31 PM PDT -github-actions,2024-07-19T01:55:51Z,- github-actions commented on pull request: [7129](https://github.com/hackforla/website/pull/7129#issuecomment-2237892874) at 2024-07-18 06:55 PM PDT -github-actions,2024-07-19T20:15:37Z,- github-actions commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2240046249) at 2024-07-19 01:15 PM PDT -github-actions,2024-07-21T20:37:19Z,- github-actions commented on pull request: [7131](https://github.com/hackforla/website/pull/7131#issuecomment-2241767162) at 2024-07-21 01:37 PM PDT -github-actions,2024-07-21T21:06:50Z,- github-actions commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2241774358) at 2024-07-21 02:06 PM PDT -github-actions,2024-07-23T08:07:49Z,- github-actions commented on pull request: [7136](https://github.com/hackforla/website/pull/7136#issuecomment-2244536910) at 2024-07-23 01:07 AM PDT -github-actions,2024-07-25T23:51:19Z,- github-actions commented on pull request: [7141](https://github.com/hackforla/website/pull/7141#issuecomment-2251586563) at 2024-07-25 04:51 PM PDT -github-actions,2024-07-27T17:49:27Z,- github-actions commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2254212271) at 2024-07-27 10:49 AM PDT -github-actions,2024-07-29T20:19:00Z,- github-actions commented on pull request: [7153](https://github.com/hackforla/website/pull/7153#issuecomment-2256820037) at 2024-07-29 01:19 PM PDT -github-actions,2024-08-03T01:50:44Z,- github-actions commented on pull request: [7169](https://github.com/hackforla/website/pull/7169#issuecomment-2266325172) at 2024-08-02 06:50 PM PDT -github-actions,2024-08-06T19:14:51Z,- github-actions commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2271972854) at 2024-08-06 12:14 PM PDT -github-actions,2024-08-06T19:16:29Z,- github-actions commented on pull request: [7228](https://github.com/hackforla/website/pull/7228#issuecomment-2271975655) at 2024-08-06 12:16 PM PDT -github-actions,2024-08-06T20:30:45Z,- github-actions commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2272095538) at 2024-08-06 01:30 PM PDT -github-actions,2024-08-07T00:21:33Z,- github-actions commented on pull request: [7230](https://github.com/hackforla/website/pull/7230#issuecomment-2272389355) at 2024-08-06 05:21 PM PDT -github-actions,2024-08-07T03:12:53Z,- github-actions commented on pull request: [7233](https://github.com/hackforla/website/pull/7233#issuecomment-2272533688) at 2024-08-06 08:12 PM PDT -github-actions,2024-08-07T03:25:06Z,- github-actions commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2272542948) at 2024-08-06 08:25 PM PDT -github-actions,2024-08-07T03:46:11Z,- github-actions commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2272558628) at 2024-08-06 08:46 PM PDT -github-actions,2024-08-07T06:49:11Z,- github-actions commented on pull request: [7238](https://github.com/hackforla/website/pull/7238#issuecomment-2272745293) at 2024-08-06 11:49 PM PDT -github-actions,2024-08-08T02:39:03Z,- github-actions commented on pull request: [7244](https://github.com/hackforla/website/pull/7244#issuecomment-2274837666) at 2024-08-07 07:39 PM PDT -github-actions,2024-08-08T21:50:32Z,- github-actions commented on pull request: [7255](https://github.com/hackforla/website/pull/7255#issuecomment-2276727607) at 2024-08-08 02:50 PM PDT -github-actions,2024-08-09T03:39:00Z,- github-actions commented on pull request: [7256](https://github.com/hackforla/website/pull/7256#issuecomment-2277080644) at 2024-08-08 08:39 PM PDT -github-actions,2024-08-09T06:21:57Z,- github-actions commented on pull request: [7257](https://github.com/hackforla/website/pull/7257#issuecomment-2277230295) at 2024-08-08 11:21 PM PDT -github-actions,2024-08-09T13:21:25Z,- github-actions commented on pull request: [7258](https://github.com/hackforla/website/pull/7258#issuecomment-2277934255) at 2024-08-09 06:21 AM PDT -github-actions,2024-08-09T23:19:48Z,- github-actions commented on pull request: [7260](https://github.com/hackforla/website/pull/7260#issuecomment-2278870069) at 2024-08-09 04:19 PM PDT -github-actions,2024-08-10T15:36:59Z,- github-actions commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2282188663) at 2024-08-10 08:36 AM PDT -github-actions,2024-08-10T21:11:49Z,- github-actions commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2282278643) at 2024-08-10 02:11 PM PDT -github-actions,2024-08-10T22:17:57Z,- github-actions commented on pull request: [7263](https://github.com/hackforla/website/pull/7263#issuecomment-2282297939) at 2024-08-10 03:17 PM PDT -github-actions,2024-08-10T22:27:36Z,- github-actions commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2282300185) at 2024-08-10 03:27 PM PDT -github-actions,2024-08-11T18:24:05Z,- github-actions commented on pull request: [7269](https://github.com/hackforla/website/pull/7269#issuecomment-2282846749) at 2024-08-11 11:24 AM PDT -github-actions,2024-08-11T20:02:51Z,- github-actions commented on pull request: [7270](https://github.com/hackforla/website/pull/7270#issuecomment-2282873255) at 2024-08-11 01:02 PM PDT -github-actions,2024-08-11T22:12:48Z,- github-actions commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2282905586) at 2024-08-11 03:12 PM PDT -github-actions,2024-08-11T22:19:42Z,- github-actions commented on pull request: [7272](https://github.com/hackforla/website/pull/7272#issuecomment-2282907237) at 2024-08-11 03:19 PM PDT -github-actions,2024-08-12T07:34:15Z,- github-actions commented on pull request: [7274](https://github.com/hackforla/website/pull/7274#issuecomment-2283286049) at 2024-08-12 12:34 AM PDT -github-actions,2024-08-13T04:51:44Z,- github-actions commented on pull request: [7275](https://github.com/hackforla/website/pull/7275#issuecomment-2285336191) at 2024-08-12 09:51 PM PDT -github-actions,2024-08-13T07:50:14Z,- github-actions commented on pull request: [7276](https://github.com/hackforla/website/pull/7276#issuecomment-2285586350) at 2024-08-13 12:50 AM PDT -github-actions,2024-08-13T17:17:54Z,- github-actions commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2286742436) at 2024-08-13 10:17 AM PDT -github-actions,2024-08-13T19:45:13Z,- github-actions commented on pull request: [7280](https://github.com/hackforla/website/pull/7280#issuecomment-2287004251) at 2024-08-13 12:45 PM PDT -github-actions,2024-08-14T17:57:09Z,- github-actions commented on pull request: [7285](https://github.com/hackforla/website/pull/7285#issuecomment-2289482349) at 2024-08-14 10:57 AM PDT -github-actions,2024-08-15T02:37:42Z,- github-actions commented on pull request: [7293](https://github.com/hackforla/website/pull/7293#issuecomment-2290412474) at 2024-08-14 07:37 PM PDT -github-actions,2024-08-15T18:49:17Z,- github-actions commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2291984863) at 2024-08-15 11:49 AM PDT -github-actions,2024-08-15T20:17:35Z,- github-actions commented on pull request: [7297](https://github.com/hackforla/website/pull/7297#issuecomment-2292156431) at 2024-08-15 01:17 PM PDT -github-actions,2024-08-15T20:42:11Z,- github-actions commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2292201418) at 2024-08-15 01:42 PM PDT -github-actions,2024-08-15T20:47:36Z,- github-actions commented on pull request: [7299](https://github.com/hackforla/website/pull/7299#issuecomment-2292209696) at 2024-08-15 01:47 PM PDT -github-actions,2024-08-16T11:35:53Z,- github-actions commented on pull request: [7302](https://github.com/hackforla/website/pull/7302#issuecomment-2293344599) at 2024-08-16 04:35 AM PDT -github-actions,2024-08-16T22:50:25Z,- github-actions commented on pull request: [7306](https://github.com/hackforla/website/pull/7306#issuecomment-2294415418) at 2024-08-16 03:50 PM PDT -github-actions,2024-08-17T00:30:24Z,- github-actions commented on pull request: [7307](https://github.com/hackforla/website/pull/7307#issuecomment-2294497693) at 2024-08-16 05:30 PM PDT -github-actions,2024-08-17T00:34:52Z,- github-actions commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2294499395) at 2024-08-16 05:34 PM PDT -github-actions,2024-08-17T03:23:13Z,- github-actions commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2294605058) at 2024-08-16 08:23 PM PDT -github-actions,2024-08-17T05:59:05Z,- github-actions commented on pull request: [7310](https://github.com/hackforla/website/pull/7310#issuecomment-2294658418) at 2024-08-16 10:59 PM PDT -github-actions,2024-08-18T02:19:26Z,- github-actions commented on pull request: [7311](https://github.com/hackforla/website/pull/7311#issuecomment-2295066921) at 2024-08-17 07:19 PM PDT -github-actions,2024-08-18T05:56:47Z,- github-actions commented on pull request: [7312](https://github.com/hackforla/website/pull/7312#issuecomment-2295124709) at 2024-08-17 10:56 PM PDT -github-actions,2024-08-19T16:40:32Z,- github-actions commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2296992951) at 2024-08-19 09:40 AM PDT -github-actions,2024-08-20T00:17:51Z,- github-actions commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2297735724) at 2024-08-19 05:17 PM PDT -github-actions,2024-08-20T22:35:52Z,- github-actions commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2299875427) at 2024-08-20 03:35 PM PDT -github-actions,2024-08-21T02:18:24Z,- github-actions commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2300255767) at 2024-08-20 07:18 PM PDT -github-actions,2024-08-21T02:59:29Z,- github-actions commented on pull request: [7328](https://github.com/hackforla/website/pull/7328#issuecomment-2300435627) at 2024-08-20 07:59 PM PDT -github-actions,2024-08-21T23:53:21Z,- github-actions commented on pull request: [7340](https://github.com/hackforla/website/pull/7340#issuecomment-2303310242) at 2024-08-21 04:53 PM PDT -github-actions,2024-08-22T08:05:08Z,- github-actions commented on pull request: [7341](https://github.com/hackforla/website/pull/7341#issuecomment-2304037405) at 2024-08-22 01:05 AM PDT -github-actions,2024-08-22T18:46:47Z,- github-actions commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2305416794) at 2024-08-22 11:46 AM PDT -github-actions,2024-08-22T23:06:22Z,- github-actions commented on pull request: [7343](https://github.com/hackforla/website/pull/7343#issuecomment-2305892915) at 2024-08-22 04:06 PM PDT -github-actions,2024-08-23T19:33:00Z,- github-actions commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2307696887) at 2024-08-23 12:33 PM PDT -github-actions,2024-08-23T20:08:03Z,- github-actions commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2307741499) at 2024-08-23 01:08 PM PDT -github-actions,2024-08-24T04:45:00Z,- github-actions commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308090115) at 2024-08-23 09:45 PM PDT -github-actions,2024-08-24T05:33:57Z,- github-actions commented on pull request: [7348](https://github.com/hackforla/website/pull/7348#issuecomment-2308134107) at 2024-08-23 10:33 PM PDT -github-actions,2024-08-25T23:18:19Z,- github-actions commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2309035123) at 2024-08-25 04:18 PM PDT -github-actions,2024-08-26T23:26:20Z,- github-actions commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2311281205) at 2024-08-26 04:26 PM PDT -github-actions,2024-08-27T03:45:08Z,- github-actions commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2311511242) at 2024-08-26 08:45 PM PDT -github-actions,2024-08-28T01:35:34Z,- github-actions commented on pull request: [7361](https://github.com/hackforla/website/pull/7361#issuecomment-2313915645) at 2024-08-27 06:35 PM PDT -github-actions,2024-08-29T05:14:56Z,- github-actions commented on pull request: [7364](https://github.com/hackforla/website/pull/7364#issuecomment-2316731967) at 2024-08-28 10:14 PM PDT -github-actions,2024-08-29T15:50:37Z,- github-actions commented on pull request: [7365](https://github.com/hackforla/website/pull/7365#issuecomment-2318206219) at 2024-08-29 08:50 AM PDT -github-actions,2024-08-30T04:02:53Z,- github-actions commented on pull request: [7367](https://github.com/hackforla/website/pull/7367#issuecomment-2319969047) at 2024-08-29 09:02 PM PDT -github-actions,2024-08-30T09:13:54Z,- github-actions commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2320602542) at 2024-08-30 02:13 AM PDT -github-actions,2024-08-30T21:35:54Z,- github-actions commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2322370370) at 2024-08-30 02:35 PM PDT -github-actions,2024-08-30T22:40:21Z,- github-actions commented on pull request: [7370](https://github.com/hackforla/website/pull/7370#issuecomment-2322508486) at 2024-08-30 03:40 PM PDT -github-actions,2024-08-31T02:24:24Z,- github-actions commented on pull request: [7371](https://github.com/hackforla/website/pull/7371#issuecomment-2322734403) at 2024-08-30 07:24 PM PDT -github-actions,2024-08-31T21:56:26Z,- github-actions commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2323052938) at 2024-08-31 02:56 PM PDT -github-actions,2024-09-01T17:51:39Z,- github-actions commented on pull request: [7375](https://github.com/hackforla/website/pull/7375#issuecomment-2323440754) at 2024-09-01 10:51 AM PDT -github-actions,2024-09-01T23:59:21Z,- github-actions commented on pull request: [7376](https://github.com/hackforla/website/pull/7376#issuecomment-2323549816) at 2024-09-01 04:59 PM PDT -github-actions,2024-09-04T20:35:10Z,- github-actions commented on pull request: [7385](https://github.com/hackforla/website/pull/7385#issuecomment-2329921521) at 2024-09-04 01:35 PM PDT -github-actions,2024-09-06T00:43:16Z,- github-actions commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2332968290) at 2024-09-05 05:43 PM PDT -github-actions,2024-09-06T17:55:27Z,- github-actions commented on pull request: [7406](https://github.com/hackforla/website/pull/7406#issuecomment-2334558142) at 2024-09-06 10:55 AM PDT -github-actions,2024-09-07T14:42:09Z,- github-actions commented on pull request: [7408](https://github.com/hackforla/website/pull/7408#issuecomment-2335298417) at 2024-09-07 07:42 AM PDT -github-actions,2024-09-07T22:17:57Z,- github-actions commented on pull request: [7409](https://github.com/hackforla/website/pull/7409#issuecomment-2336467191) at 2024-09-07 03:17 PM PDT -github-actions,2024-09-10T02:37:28Z,- github-actions commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2339493707) at 2024-09-09 07:37 PM PDT -github-actions,2024-09-10T02:49:43Z,- github-actions commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2339504000) at 2024-09-09 07:49 PM PDT -github-actions,2024-09-10T19:09:23Z,- github-actions commented on pull request: [7436](https://github.com/hackforla/website/pull/7436#issuecomment-2341812449) at 2024-09-10 12:09 PM PDT -github-actions,2024-09-12T00:22:42Z,- github-actions commented on pull request: [7437](https://github.com/hackforla/website/pull/7437#issuecomment-2345017370) at 2024-09-11 05:22 PM PDT -github-actions,2024-09-12T19:12:41Z,- github-actions commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2347050279) at 2024-09-12 12:12 PM PDT -github-actions,2024-09-13T02:37:48Z,- github-actions commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2347927364) at 2024-09-12 07:37 PM PDT -github-actions,2024-09-13T18:22:59Z,- github-actions commented on pull request: [7445](https://github.com/hackforla/website/pull/7445#issuecomment-2349785162) at 2024-09-13 11:22 AM PDT -github-actions,2024-09-14T03:52:28Z,- github-actions commented on pull request: [7446](https://github.com/hackforla/website/pull/7446#issuecomment-2350818391) at 2024-09-13 08:52 PM PDT -github-actions,2024-09-14T05:44:00Z,- github-actions commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2350854853) at 2024-09-13 10:44 PM PDT -github-actions,2024-09-15T19:20:22Z,- github-actions commented on pull request: [7461](https://github.com/hackforla/website/pull/7461#issuecomment-2351754723) at 2024-09-15 12:20 PM PDT -github-actions,2024-09-15T23:45:12Z,- github-actions commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2351837139) at 2024-09-15 04:45 PM PDT -github-actions,2024-09-16T00:56:29Z,- github-actions commented on pull request: [7463](https://github.com/hackforla/website/pull/7463#issuecomment-2351874312) at 2024-09-15 05:56 PM PDT -github-actions,2024-09-16T03:12:50Z,- github-actions commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2351953329) at 2024-09-15 08:12 PM PDT -github-actions,2024-09-17T00:14:07Z,- github-actions commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2354248933) at 2024-09-16 05:14 PM PDT -github-actions,2024-09-17T01:47:18Z,- github-actions commented on pull request: [7466](https://github.com/hackforla/website/pull/7466#issuecomment-2354344333) at 2024-09-16 06:47 PM PDT -github-actions,2024-09-17T06:26:11Z,- github-actions commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2354636113) at 2024-09-16 11:26 PM PDT -github-actions,2024-09-17T09:14:26Z,- github-actions commented on pull request: [7468](https://github.com/hackforla/website/pull/7468#issuecomment-2354985199) at 2024-09-17 02:14 AM PDT -github-actions,2024-09-18T06:48:13Z,- github-actions commented on pull request: [7491](https://github.com/hackforla/website/pull/7491#issuecomment-2357640692) at 2024-09-17 11:48 PM PDT -github-actions,2024-09-18T23:21:03Z,- github-actions commented on pull request: [7493](https://github.com/hackforla/website/pull/7493#issuecomment-2359615134) at 2024-09-18 04:21 PM PDT -github-actions,2024-09-19T14:23:15Z,- github-actions commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2361139206) at 2024-09-19 07:23 AM PDT -github-actions,2024-09-19T21:31:34Z,- github-actions commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362237837) at 2024-09-19 02:31 PM PDT -github-actions,2024-09-20T01:28:04Z,- github-actions commented on pull request: [7499](https://github.com/hackforla/website/pull/7499#issuecomment-2362529357) at 2024-09-19 06:28 PM PDT -github-actions,2024-09-20T23:01:52Z,- github-actions commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2364732006) at 2024-09-20 04:01 PM PDT -github-actions,2024-09-21T02:51:54Z,- github-actions commented on pull request: [7503](https://github.com/hackforla/website/pull/7503#issuecomment-2364959329) at 2024-09-20 07:51 PM PDT -github-actions,2024-09-21T19:25:01Z,- github-actions commented on pull request: [7504](https://github.com/hackforla/website/pull/7504#issuecomment-2365295514) at 2024-09-21 12:25 PM PDT -github-actions,2024-09-23T05:41:28Z,- github-actions commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2367276702) at 2024-09-22 10:41 PM PDT -github-actions,2024-09-24T00:28:22Z,- github-actions commented on pull request: [7511](https://github.com/hackforla/website/pull/7511#issuecomment-2369849935) at 2024-09-23 05:28 PM PDT -github-actions,2024-09-24T02:05:16Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369963202) at 2024-09-23 07:05 PM PDT -github-actions,2024-09-24T02:08:25Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369966225) at 2024-09-23 07:08 PM PDT -github-actions,2024-09-24T02:12:24Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369970055) at 2024-09-23 07:12 PM PDT -github-actions,2024-09-24T02:14:27Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369971813) at 2024-09-23 07:14 PM PDT -github-actions,2024-09-24T02:14:31Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369971886) at 2024-09-23 07:14 PM PDT -github-actions,2024-09-24T02:14:48Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369972130) at 2024-09-23 07:14 PM PDT -github-actions,2024-09-24T02:20:35Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369977227) at 2024-09-23 07:20 PM PDT -github-actions,2024-09-24T02:51:12Z,- github-actions commented on pull request: [7514](https://github.com/hackforla/website/pull/7514#issuecomment-2370006333) at 2024-09-23 07:51 PM PDT -github-actions,2024-09-25T06:20:42Z,- github-actions commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2373129672) at 2024-09-24 11:20 PM PDT -github-actions,2024-09-25T18:03:30Z,- github-actions commented on pull request: [7523](https://github.com/hackforla/website/pull/7523#issuecomment-2374813499) at 2024-09-25 11:03 AM PDT -github-actions,2024-09-27T03:43:38Z,- github-actions commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2378343680) at 2024-09-26 08:43 PM PDT -github-actions,2024-09-27T17:43:30Z,- github-actions commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2379770548) at 2024-09-27 10:43 AM PDT -github-actions,2024-09-29T03:59:08Z,- github-actions commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2381096324) at 2024-09-28 08:59 PM PDT -github-actions,2024-09-29T22:46:20Z,- github-actions commented on pull request: [7543](https://github.com/hackforla/website/pull/7543#issuecomment-2381639196) at 2024-09-29 03:46 PM PDT -github-actions,2024-09-30T19:55:15Z,- github-actions commented on pull request: [7546](https://github.com/hackforla/website/pull/7546#issuecomment-2384035160) at 2024-09-30 12:55 PM PDT -github-actions,2024-10-01T15:20:57Z,- github-actions commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2386300713) at 2024-10-01 08:20 AM PDT -github-actions,2024-10-01T22:24:35Z,- github-actions commented on pull request: [7557](https://github.com/hackforla/website/pull/7557#issuecomment-2387191420) at 2024-10-01 03:24 PM PDT -github-actions,2024-10-02T21:30:04Z,- github-actions commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2389728839) at 2024-10-02 02:30 PM PDT -github-actions,2024-10-03T16:20:00Z,- github-actions commented on pull request: [7559](https://github.com/hackforla/website/pull/7559#issuecomment-2391823853) at 2024-10-03 09:20 AM PDT -github-actions,2024-10-04T03:20:34Z,- github-actions commented on pull request: [7560](https://github.com/hackforla/website/pull/7560#issuecomment-2392717338) at 2024-10-03 08:20 PM PDT -github-actions,2024-10-05T06:38:06Z,- github-actions commented on pull request: [7564](https://github.com/hackforla/website/pull/7564#issuecomment-2394951393) at 2024-10-04 11:38 PM PDT -github-actions,2024-10-07T21:02:21Z,- github-actions commented on pull request: [7568](https://github.com/hackforla/website/pull/7568#issuecomment-2397889325) at 2024-10-07 02:02 PM PDT -github-actions,2024-10-08T00:23:22Z,- github-actions commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2398273443) at 2024-10-07 05:23 PM PDT -github-actions,2024-10-10T01:06:34Z,- github-actions commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2403695725) at 2024-10-09 06:06 PM PDT -github-actions,2024-10-13T21:40:51Z,- github-actions commented on pull request: [7588](https://github.com/hackforla/website/pull/7588#issuecomment-2409141192) at 2024-10-13 02:40 PM PDT -github-actions,2024-10-14T00:33:56Z,- github-actions commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2409488153) at 2024-10-13 05:33 PM PDT -github-actions,2024-10-14T20:46:43Z,- github-actions commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2412294325) at 2024-10-14 01:46 PM PDT -github-actions,2024-10-15T15:43:03Z,- github-actions commented on pull request: [7595](https://github.com/hackforla/website/pull/7595#issuecomment-2414384648) at 2024-10-15 08:43 AM PDT -github-actions,2024-10-15T20:24:25Z,- github-actions commented on pull request: [7597](https://github.com/hackforla/website/pull/7597#issuecomment-2414937327) at 2024-10-15 01:24 PM PDT -github-actions,2024-10-19T22:23:52Z,- github-actions commented on pull request: [7599](https://github.com/hackforla/website/pull/7599#issuecomment-2424246802) at 2024-10-19 03:23 PM PDT -github-actions,2024-10-21T06:53:19Z,- github-actions commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2425757625) at 2024-10-20 11:53 PM PDT -github-actions,2024-10-21T17:55:54Z,- github-actions commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2427367934) at 2024-10-21 10:55 AM PDT -github-actions,2024-10-23T18:25:52Z,- github-actions commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2433102292) at 2024-10-23 11:25 AM PDT -github-actions,2024-10-23T22:59:11Z,- github-actions commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2433694483) at 2024-10-23 03:59 PM PDT -github-actions,2024-10-25T03:49:17Z,- github-actions commented on pull request: [7634](https://github.com/hackforla/website/pull/7634#issuecomment-2436764039) at 2024-10-24 08:49 PM PDT -github-actions,2024-10-25T23:40:51Z,- github-actions commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2439045860) at 2024-10-25 04:40 PM PDT -github-actions,2024-10-26T18:03:51Z,- github-actions commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2439677332) at 2024-10-26 11:03 AM PDT -github-actions,2024-10-26T18:29:21Z,- github-actions commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2439686055) at 2024-10-26 11:29 AM PDT -github-actions,2024-10-28T23:03:12Z,- github-actions commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2442834046) at 2024-10-28 04:03 PM PDT -github-actions,2024-10-29T00:47:59Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442942743) at 2024-10-28 05:47 PM PDT -github-actions,2024-10-29T00:48:14Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442942940) at 2024-10-28 05:48 PM PDT -github-actions,2024-10-29T00:48:30Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442943126) at 2024-10-28 05:48 PM PDT -github-actions,2024-10-29T00:49:05Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442943639) at 2024-10-28 05:49 PM PDT -github-actions,2024-10-29T01:03:36Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442956885) at 2024-10-28 06:03 PM PDT -github-actions,2024-10-29T01:03:56Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442957210) at 2024-10-28 06:03 PM PDT -github-actions,2024-10-29T16:47:24Z,- github-actions commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2444822974) at 2024-10-29 09:47 AM PDT -github-actions,2024-10-29T22:38:38Z,- github-actions commented on pull request: [7665](https://github.com/hackforla/website/pull/7665#issuecomment-2445454313) at 2024-10-29 03:38 PM PDT -github-actions,2024-11-01T02:53:35Z,- github-actions commented on pull request: [7683](https://github.com/hackforla/website/pull/7683#issuecomment-2451197991) at 2024-10-31 07:53 PM PDT -github-actions,2024-11-02T18:30:35Z,- github-actions commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453086693) at 2024-11-02 10:30 AM PST -github-actions,2024-11-04T22:10:40Z,- github-actions commented on pull request: [7688](https://github.com/hackforla/website/pull/7688#issuecomment-2455804138) at 2024-11-04 02:10 PM PST -github-actions,2024-11-05T01:50:08Z,- github-actions commented on pull request: [7691](https://github.com/hackforla/website/pull/7691#issuecomment-2456056812) at 2024-11-04 05:50 PM PST -github-actions,2024-11-05T05:23:57Z,- github-actions commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2456262140) at 2024-11-04 09:23 PM PST -github-actions,2024-11-06T20:26:00Z,- github-actions commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460710591) at 2024-11-06 12:26 PM PST -github-actions,2024-11-07T00:29:11Z,- github-actions commented on pull request: [7708](https://github.com/hackforla/website/pull/7708#issuecomment-2461077777) at 2024-11-06 04:29 PM PST -github-actions,2024-11-08T15:22:26Z,- github-actions commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2465026298) at 2024-11-08 07:22 AM PST -github-actions,2024-11-09T21:35:11Z,- github-actions commented on pull request: [7712](https://github.com/hackforla/website/pull/7712#issuecomment-2466466787) at 2024-11-09 01:35 PM PST -github-actions,2024-11-09T23:57:54Z,- github-actions commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2466514708) at 2024-11-09 03:57 PM PST -github-actions,2024-11-10T00:04:35Z,- github-actions commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2466516318) at 2024-11-09 04:04 PM PST -github-actions,2024-11-10T20:56:40Z,- github-actions commented on pull request: [7715](https://github.com/hackforla/website/pull/7715#issuecomment-2466914998) at 2024-11-10 12:56 PM PST -github-actions,2024-11-10T20:57:07Z,- github-actions commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2466915118) at 2024-11-10 12:57 PM PST -github-actions,2024-11-12T02:16:24Z,- github-actions commented on pull request: [7717](https://github.com/hackforla/website/pull/7717#issuecomment-2469453577) at 2024-11-11 06:16 PM PST -github-actions,2024-11-13T20:42:29Z,- github-actions commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2474743794) at 2024-11-13 12:42 PM PST -github-actions,2024-11-14T01:38:51Z,- github-actions commented on pull request: [7719](https://github.com/hackforla/website/pull/7719#issuecomment-2475173207) at 2024-11-13 05:38 PM PST -github-actions,2024-11-15T00:13:41Z,- github-actions commented on pull request: [7720](https://github.com/hackforla/website/pull/7720#issuecomment-2477672637) at 2024-11-14 04:13 PM PST -github-actions,2024-11-15T02:50:44Z,- github-actions commented on pull request: [7721](https://github.com/hackforla/website/pull/7721#issuecomment-2477848882) at 2024-11-14 06:50 PM PST -github-actions,2024-11-17T00:09:18Z,- github-actions commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2480859462) at 2024-11-16 04:09 PM PST -github-actions,2024-11-19T01:15:10Z,- github-actions commented on pull request: [7728](https://github.com/hackforla/website/pull/7728#issuecomment-2484504160) at 2024-11-18 05:15 PM PST -github-actions,2024-11-19T02:37:18Z,- github-actions commented on pull request: [7729](https://github.com/hackforla/website/pull/7729#issuecomment-2484584464) at 2024-11-18 06:37 PM PST -github-actions,2024-11-19T22:36:57Z,- github-actions commented on pull request: [7733](https://github.com/hackforla/website/pull/7733#issuecomment-2486892694) at 2024-11-19 02:36 PM PST -github-actions,2024-11-20T02:12:34Z,- github-actions commented on pull request: [7738](https://github.com/hackforla/website/pull/7738#issuecomment-2487176771) at 2024-11-19 06:12 PM PST -github-actions,2024-11-20T02:19:43Z,- github-actions commented on pull request: [7739](https://github.com/hackforla/website/pull/7739#issuecomment-2487187271) at 2024-11-19 06:19 PM PST -github-actions,2024-11-20T04:17:01Z,- github-actions commented on pull request: [7744](https://github.com/hackforla/website/pull/7744#issuecomment-2487377184) at 2024-11-19 08:17 PM PST -github-actions,2024-11-20T06:20:46Z,- github-actions commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2487595225) at 2024-11-19 10:20 PM PST -github-actions,2024-11-20T16:16:48Z,- github-actions commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2489015208) at 2024-11-20 08:16 AM PST -github-actions,2024-11-22T08:34:26Z,- github-actions commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2493178188) at 2024-11-22 12:34 AM PST -github-actions,2024-11-26T02:38:33Z,- github-actions commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2499527238) at 2024-11-25 06:38 PM PST -github-actions,2024-11-27T04:50:40Z,- github-actions commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2502767191) at 2024-11-26 08:50 PM PST -github-actions,2024-11-28T01:39:04Z,- github-actions commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2505100861) at 2024-11-27 05:39 PM PST -github-actions,2024-11-28T18:50:01Z,- github-actions commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2506647814) at 2024-11-28 10:50 AM PST -github-actions,2024-12-04T18:50:40Z,- github-actions commented on pull request: [7791](https://github.com/hackforla/website/pull/7791#issuecomment-2518271081) at 2024-12-04 10:50 AM PST -github-actions,2024-12-04T19:16:21Z,- github-actions commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2518352719) at 2024-12-04 11:16 AM PST -github-actions,2024-12-09T11:39:31Z,- github-actions commented on pull request: [7798](https://github.com/hackforla/website/pull/7798#issuecomment-2527681430) at 2024-12-09 03:39 AM PST -github-actions,2024-12-13T19:03:04Z,- github-actions commented on pull request: [7803](https://github.com/hackforla/website/pull/7803#issuecomment-2542073002) at 2024-12-13 11:03 AM PST -github-actions,2025-01-06T19:58:42Z,- github-actions commented on pull request: [7816](https://github.com/hackforla/website/pull/7816#issuecomment-2573819336) at 2025-01-06 11:58 AM PST -github-actions,2025-01-06T23:06:55Z,- github-actions commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2574083465) at 2025-01-06 03:06 PM PST -github-actions,2025-01-06T23:54:42Z,- github-actions commented on pull request: [7818](https://github.com/hackforla/website/pull/7818#issuecomment-2574132611) at 2025-01-06 03:54 PM PST -github-actions,2025-01-09T03:37:28Z,- github-actions commented on pull request: [7821](https://github.com/hackforla/website/pull/7821#issuecomment-2579117735) at 2025-01-08 07:37 PM PST -github-actions,2025-01-10T22:49:32Z,- github-actions commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2584641502) at 2025-01-10 02:49 PM PST -github-actions,2025-01-15T04:56:05Z,- github-actions commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2591651781) at 2025-01-14 08:56 PM PST -github-actions,2025-01-18T02:37:40Z,- github-actions commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2599482325) at 2025-01-17 06:37 PM PST -github-actions,2025-01-21T04:36:27Z,- github-actions commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2603638675) at 2025-01-20 08:36 PM PST -github-actions,2025-01-22T22:26:26Z,- github-actions commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2608396951) at 2025-01-22 02:26 PM PST -github-actions,2025-01-23T01:44:37Z,- github-actions commented on pull request: [7846](https://github.com/hackforla/website/pull/7846#issuecomment-2608666185) at 2025-01-22 05:44 PM PST -github-actions,2025-01-25T07:58:03Z,- github-actions commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2613832012) at 2025-01-24 11:58 PM PST -github-actions,2025-01-26T00:47:56Z,- github-actions commented on pull request: [7852](https://github.com/hackforla/website/pull/7852#issuecomment-2614154912) at 2025-01-25 04:47 PM PST -github-actions,2025-01-27T01:48:26Z,- github-actions commented on pull request: [7856](https://github.com/hackforla/website/pull/7856#issuecomment-2614711863) at 2025-01-26 05:48 PM PST -github-actions,2025-01-28T02:27:16Z,- github-actions commented on pull request: [7861](https://github.com/hackforla/website/pull/7861#issuecomment-2617634269) at 2025-01-27 06:27 PM PST -github-actions,2025-01-29T06:03:04Z,- github-actions commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2620790198) at 2025-01-28 10:03 PM PST -github-actions,2025-02-01T19:21:14Z,- github-actions commented on pull request: [7871](https://github.com/hackforla/website/pull/7871#issuecomment-2629078689) at 2025-02-01 11:21 AM PST -github-actions,2025-02-02T03:43:43Z,- github-actions commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2629227852) at 2025-02-01 07:43 PM PST -github-actions,2025-02-03T05:49:10Z,- github-actions commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2630033201) at 2025-02-02 09:49 PM PST -github-actions,2025-02-03T23:58:51Z,- github-actions commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2632445467) at 2025-02-03 03:58 PM PST -github-actions,2025-02-05T05:40:15Z,- github-actions commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2635750026) at 2025-02-04 09:40 PM PST -github-actions,2025-02-06T17:27:00Z,- github-actions commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2640536233) at 2025-02-06 09:27 AM PST -github-actions,2025-02-06T19:34:01Z,- github-actions commented on pull request: [7898](https://github.com/hackforla/website/pull/7898#issuecomment-2640816979) at 2025-02-06 11:34 AM PST -github-actions,2025-02-06T20:08:52Z,- github-actions commented on pull request: [7899](https://github.com/hackforla/website/pull/7899#issuecomment-2640891304) at 2025-02-06 12:08 PM PST -github-actions,2025-02-06T22:05:59Z,- github-actions commented on pull request: [7900](https://github.com/hackforla/website/pull/7900#issuecomment-2641164657) at 2025-02-06 02:05 PM PST -github-actions,2025-02-07T22:37:18Z,- github-actions commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2644254845) at 2025-02-07 02:37 PM PST -github-actions,2025-02-08T10:18:16Z,- github-actions commented on pull request: [7902](https://github.com/hackforla/website/pull/7902#issuecomment-2644820554) at 2025-02-08 02:18 AM PST -github-actions,2025-02-10T06:25:58Z,- github-actions commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2647041483) at 2025-02-09 10:25 PM PST -github-actions,2025-02-13T22:30:43Z,- github-actions commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2657845982) at 2025-02-13 02:30 PM PST -github-actions,2025-02-14T03:38:25Z,- github-actions commented on pull request: [7908](https://github.com/hackforla/website/pull/7908#issuecomment-2658192694) at 2025-02-13 07:38 PM PST -github-actions,2025-02-14T18:57:36Z,- github-actions commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2660054708) at 2025-02-14 10:57 AM PST -github-actions,2025-02-16T10:17:30Z,- github-actions commented on pull request: [7912](https://github.com/hackforla/website/pull/7912#issuecomment-2661362406) at 2025-02-16 02:17 AM PST -github-actions,2025-02-17T17:24:46Z,- github-actions commented on pull request: [7913](https://github.com/hackforla/website/pull/7913#issuecomment-2663722550) at 2025-02-17 09:24 AM PST -github-actions,2025-02-17T17:52:32Z,- github-actions commented on pull request: [7914](https://github.com/hackforla/website/pull/7914#issuecomment-2663789579) at 2025-02-17 09:52 AM PST -github-actions,2025-02-17T17:52:34Z,- github-actions commented on pull request: [7915](https://github.com/hackforla/website/pull/7915#issuecomment-2663789628) at 2025-02-17 09:52 AM PST -github-actions,2025-02-17T23:29:20Z,- github-actions commented on pull request: [7916](https://github.com/hackforla/website/pull/7916#issuecomment-2664225224) at 2025-02-17 03:29 PM PST -github-actions,2025-02-18T00:02:49Z,- github-actions commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2664253701) at 2025-02-17 04:02 PM PST -github-actions,2025-02-18T00:02:52Z,- github-actions commented on pull request: [7917](https://github.com/hackforla/website/pull/7917#issuecomment-2664253745) at 2025-02-17 04:02 PM PST -github-actions,2025-02-18T19:23:13Z,- github-actions commented on pull request: [7920](https://github.com/hackforla/website/pull/7920#issuecomment-2666732904) at 2025-02-18 11:23 AM PST -github-actions,2025-02-19T05:25:19Z,- github-actions commented on pull request: [7928](https://github.com/hackforla/website/pull/7928#issuecomment-2667541014) at 2025-02-18 09:25 PM PST -github-actions,2025-02-21T02:01:00Z,- github-actions commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2673166553) at 2025-02-20 06:01 PM PST -github-actions,2025-02-21T02:03:15Z,- github-actions commented on pull request: [7932](https://github.com/hackforla/website/pull/7932#issuecomment-2673170209) at 2025-02-20 06:03 PM PST -github-actions,2025-02-21T21:37:40Z,- github-actions commented on pull request: [7933](https://github.com/hackforla/website/pull/7933#issuecomment-2675597719) at 2025-02-21 01:37 PM PST -github-actions,2025-02-23T04:59:33Z,- github-actions commented on pull request: [7935](https://github.com/hackforla/website/pull/7935#issuecomment-2676573403) at 2025-02-22 08:59 PM PST -github-actions,2025-02-23T05:21:43Z,- github-actions commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2676628627) at 2025-02-22 09:21 PM PST -github-actions,2025-02-25T06:03:53Z,- github-actions commented on pull request: [7945](https://github.com/hackforla/website/pull/7945#issuecomment-2680704211) at 2025-02-24 10:03 PM PST -github-actions,2025-02-25T18:45:06Z,- github-actions commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2682966267) at 2025-02-25 10:45 AM PST -github-actions,2025-02-26T04:03:45Z,- github-actions commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2683838770) at 2025-02-25 08:03 PM PST -github-actions,2025-02-26T21:19:40Z,- github-actions commented on pull request: [7950](https://github.com/hackforla/website/pull/7950#issuecomment-2686222189) at 2025-02-26 01:19 PM PST -github-actions,2025-02-27T07:59:48Z,- github-actions commented on pull request: [7951](https://github.com/hackforla/website/pull/7951#issuecomment-2687178277) at 2025-02-26 11:59 PM PST -github-actions,2025-03-02T04:27:29Z,- github-actions commented on pull request: [7961](https://github.com/hackforla/website/pull/7961#issuecomment-2692551406) at 2025-03-01 08:27 PM PST -github-actions,2025-03-03T05:32:46Z,- github-actions commented on pull request: [7962](https://github.com/hackforla/website/pull/7962#issuecomment-2693321214) at 2025-03-02 09:32 PM PST -github-actions,2025-03-04T01:35:47Z,- github-actions commented on pull request: [7963](https://github.com/hackforla/website/pull/7963#issuecomment-2695961515) at 2025-03-03 05:35 PM PST -github-actions,2025-03-04T01:44:09Z,- github-actions commented on pull request: [7964](https://github.com/hackforla/website/pull/7964#issuecomment-2695970549) at 2025-03-03 05:44 PM PST -github-actions,2025-03-04T02:11:27Z,- github-actions commented on pull request: [7965](https://github.com/hackforla/website/pull/7965#issuecomment-2696001335) at 2025-03-03 06:11 PM PST -github-actions,2025-03-04T22:53:16Z,- github-actions commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2699161182) at 2025-03-04 02:53 PM PST -github-actions,2025-03-07T04:41:58Z,- github-actions commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2705515370) at 2025-03-06 08:41 PM PST -github-actions,2025-03-07T05:11:32Z,- github-actions commented on pull request: [7982](https://github.com/hackforla/website/pull/7982#issuecomment-2705545501) at 2025-03-06 09:11 PM PST -github-actions,2025-03-07T16:23:01Z,- github-actions commented on pull request: [7983](https://github.com/hackforla/website/pull/7983#issuecomment-2706879372) at 2025-03-07 08:23 AM PST -github-actions,2025-03-07T16:49:51Z,- github-actions commented on pull request: [7984](https://github.com/hackforla/website/pull/7984#issuecomment-2706936301) at 2025-03-07 08:49 AM PST -github-actions,2025-03-09T17:51:34Z,- github-actions commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2708986282) at 2025-03-09 10:51 AM PDT -github-actions,2025-03-10T17:55:37Z,- github-actions commented on pull request: [7986](https://github.com/hackforla/website/pull/7986#issuecomment-2711395614) at 2025-03-10 10:55 AM PDT -github-actions,2025-03-10T18:49:15Z,- github-actions commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2711522263) at 2025-03-10 11:49 AM PDT -github-actions,2025-03-14T01:42:04Z,- github-actions commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2723113418) at 2025-03-13 06:42 PM PDT -github-actions,2025-03-17T15:53:10Z,- github-actions commented on pull request: [7992](https://github.com/hackforla/website/pull/7992#issuecomment-2730034224) at 2025-03-17 08:53 AM PDT -github-actions,2025-03-24T15:26:36Z,- github-actions commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2748524670) at 2025-03-24 08:26 AM PDT -github-actions,2025-03-29T12:59:39Z,- github-actions commented on pull request: [8020](https://github.com/hackforla/website/pull/8020#issuecomment-2763354255) at 2025-03-29 05:59 AM PDT -github-actions,2025-03-29T21:53:12Z,- github-actions commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2764256558) at 2025-03-29 02:53 PM PDT -github-actions,2025-03-29T23:27:53Z,- github-actions commented on pull request: [8022](https://github.com/hackforla/website/pull/8022#issuecomment-2764288243) at 2025-03-29 04:27 PM PDT -github-actions,2025-04-01T00:22:37Z,- github-actions commented on pull request: [8026](https://github.com/hackforla/website/pull/8026#issuecomment-2767705235) at 2025-03-31 05:22 PM PDT -github-actions,2025-04-01T00:22:52Z,- github-actions commented on pull request: [8026](https://github.com/hackforla/website/pull/8026#issuecomment-2767705524) at 2025-03-31 05:22 PM PDT -github-actions,2025-04-02T19:01:01Z,- github-actions commented on pull request: [8037](https://github.com/hackforla/website/pull/8037#issuecomment-2773447201) at 2025-04-02 12:01 PM PDT -github-actions,2025-04-03T03:02:33Z,- github-actions commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2774312485) at 2025-04-02 08:02 PM PDT -github-actions,2025-04-03T03:30:43Z,- github-actions commented on pull request: [8039](https://github.com/hackforla/website/pull/8039#issuecomment-2774380154) at 2025-04-02 08:30 PM PDT -github-actions,2025-04-03T14:46:52Z,- github-actions commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2776041070) at 2025-04-03 07:46 AM PDT -github-actions,2025-04-04T02:08:32Z,- github-actions commented on pull request: [8043](https://github.com/hackforla/website/pull/8043#issuecomment-2777379528) at 2025-04-03 07:08 PM PDT -github-actions,2025-04-05T09:01:26Z,- github-actions commented on pull request: [8045](https://github.com/hackforla/website/pull/8045#issuecomment-2780606936) at 2025-04-05 02:01 AM PDT -github-actions,2025-04-05T20:40:16Z,- github-actions commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2781086558) at 2025-04-05 01:40 PM PDT -github-actions,2025-04-06T02:55:06Z,- github-actions commented on pull request: [8047](https://github.com/hackforla/website/pull/8047#issuecomment-2781189933) at 2025-04-05 07:55 PM PDT -github-actions,2025-04-06T19:01:38Z,- github-actions commented on pull request: [8049](https://github.com/hackforla/website/pull/8049#issuecomment-2781569452) at 2025-04-06 12:01 PM PDT -github-actions,2025-04-07T13:08:58Z,- github-actions commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2783284401) at 2025-04-07 06:08 AM PDT -github-actions,2025-04-07T13:08:58Z,- github-actions commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2783284401) at 2025-04-07 06:08 AM PDT -github-actions,2025-04-09T03:14:18Z,- github-actions commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2788174868) at 2025-04-08 08:14 PM PDT -github-actions,2025-04-09T03:14:18Z,- github-actions commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2788174868) at 2025-04-08 08:14 PM PDT -github-actions,2025-04-11T02:37:16Z,- github-actions commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2795697147) at 2025-04-10 07:37 PM PDT -github-actions,2025-04-12T03:06:35Z,- github-actions commented on pull request: [8058](https://github.com/hackforla/website/pull/8058#issuecomment-2798412928) at 2025-04-11 08:06 PM PDT -github-actions,2025-04-12T06:43:48Z,- github-actions commented on pull request: [8059](https://github.com/hackforla/website/pull/8059#issuecomment-2798678614) at 2025-04-11 11:43 PM PDT -github-actions,2025-04-12T20:55:46Z,- github-actions commented on pull request: [8060](https://github.com/hackforla/website/pull/8060#issuecomment-2799035964) at 2025-04-12 01:55 PM PDT -github-actions,2025-04-12T20:58:08Z,- github-actions commented on pull request: [8061](https://github.com/hackforla/website/pull/8061#issuecomment-2799036590) at 2025-04-12 01:58 PM PDT -github-actions,2025-04-13T03:31:45Z,- github-actions commented on pull request: [8062](https://github.com/hackforla/website/pull/8062#issuecomment-2799573620) at 2025-04-12 08:31 PM PDT -github-actions,2025-04-17T16:08:43Z,- github-actions commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2813449973) at 2025-04-17 09:08 AM PDT -github-actions,2025-04-17T23:56:44Z,- github-actions commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2814220516) at 2025-04-17 04:56 PM PDT -github-actions,2025-04-21T19:53:57Z,- github-actions commented on pull request: [8072](https://github.com/hackforla/website/pull/8072#issuecomment-2819373473) at 2025-04-21 12:53 PM PDT -github-actions,2025-04-21T21:47:31Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819569659) at 2025-04-21 02:47 PM PDT -github-actions,2025-04-21T21:47:44Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819569942) at 2025-04-21 02:47 PM PDT -github-actions,2025-04-21T21:59:59Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819586239) at 2025-04-21 02:59 PM PDT -github-actions,2025-04-21T22:13:31Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819603838) at 2025-04-21 03:13 PM PDT -github-actions,2025-04-21T22:15:48Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819607063) at 2025-04-21 03:15 PM PDT -github-actions,2025-04-21T22:21:55Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819614651) at 2025-04-21 03:21 PM PDT -github-actions,2025-04-21T23:43:52Z,- github-actions commented on pull request: [8076](https://github.com/hackforla/website/pull/8076#issuecomment-2819718703) at 2025-04-21 04:43 PM PDT -github-actions,2025-04-22T01:45:24Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819847383) at 2025-04-21 06:45 PM PDT -github-actions,2025-04-22T01:45:35Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819847585) at 2025-04-21 06:45 PM PDT -github-actions,2025-04-22T01:51:40Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819853475) at 2025-04-21 06:51 PM PDT -github-actions,2025-04-22T02:00:31Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819864459) at 2025-04-21 07:00 PM PDT -github-actions,2025-04-22T02:15:38Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819884860) at 2025-04-21 07:15 PM PDT -github-actions,2025-04-22T21:16:21Z,- github-actions commented on pull request: [8082](https://github.com/hackforla/website/pull/8082#issuecomment-2822502713) at 2025-04-22 02:16 PM PDT -github-actions,2025-04-23T05:29:46Z,- github-actions commented on pull request: [8085](https://github.com/hackforla/website/pull/8085#issuecomment-2823106871) at 2025-04-22 10:29 PM PDT -github-actions,2025-04-25T04:37:37Z,- github-actions commented on pull request: [8088](https://github.com/hackforla/website/pull/8088#issuecomment-2829353438) at 2025-04-24 09:37 PM PDT -github-actions,2025-04-25T23:15:23Z,- github-actions commented on pull request: [8089](https://github.com/hackforla/website/pull/8089#issuecomment-2831588319) at 2025-04-25 04:15 PM PDT -github-actions,2025-04-26T20:46:01Z,- github-actions commented on pull request: [8090](https://github.com/hackforla/website/pull/8090#issuecomment-2832606328) at 2025-04-26 01:46 PM PDT -github-actions,2025-04-26T23:13:35Z,- github-actions commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2832726457) at 2025-04-26 04:13 PM PDT -github-actions,2025-04-28T03:37:52Z,- github-actions commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2833900811) at 2025-04-27 08:37 PM PDT -github-actions,2025-04-29T09:04:47Z,- github-actions commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2838020677) at 2025-04-29 02:04 AM PDT -github-actions,2025-04-30T05:24:53Z,- github-actions commented on pull request: [8101](https://github.com/hackforla/website/pull/8101#issuecomment-2840843374) at 2025-04-29 10:24 PM PDT -github-actions,2025-05-01T03:01:37Z,- github-actions commented on pull request: [8103](https://github.com/hackforla/website/pull/8103#issuecomment-2843976422) at 2025-04-30 08:01 PM PDT -github-actions,2025-05-01T05:14:37Z,- github-actions commented on pull request: [8104](https://github.com/hackforla/website/pull/8104#issuecomment-2844123288) at 2025-04-30 10:14 PM PDT -github-actions,2025-05-02T01:09:01Z,- github-actions commented on pull request: [8106](https://github.com/hackforla/website/pull/8106#issuecomment-2846092592) at 2025-05-01 06:09 PM PDT -github-actions,2025-05-02T02:10:35Z,- github-actions commented on pull request: [8107](https://github.com/hackforla/website/pull/8107#issuecomment-2846144466) at 2025-05-01 07:10 PM PDT -github-actions,2025-05-03T01:10:14Z,- github-actions commented on pull request: [8114](https://github.com/hackforla/website/pull/8114#issuecomment-2848338206) at 2025-05-02 06:10 PM PDT -github-actions,2025-05-04T07:56:55Z,- github-actions commented on pull request: [8115](https://github.com/hackforla/website/pull/8115#issuecomment-2849067443) at 2025-05-04 12:56 AM PDT -github-actions,2025-05-06T03:52:02Z,- github-actions commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2853199997) at 2025-05-05 08:52 PM PDT -github-actions,2025-05-06T22:59:31Z,- github-actions commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2856403711) at 2025-05-06 03:59 PM PDT -github-actions,2025-05-11T19:57:10Z,- github-actions commented on pull request: [8121](https://github.com/hackforla/website/pull/8121#issuecomment-2870071601) at 2025-05-11 12:57 PM PDT -github-actions,2025-05-12T22:10:16Z,- github-actions commented on pull request: [8124](https://github.com/hackforla/website/pull/8124#issuecomment-2874315246) at 2025-05-12 03:10 PM PDT -github-actions,2025-05-13T21:58:05Z,- github-actions commented on pull request: [8126](https://github.com/hackforla/website/pull/8126#issuecomment-2878046799) at 2025-05-13 02:58 PM PDT -github-actions,2025-05-13T23:40:31Z,- github-actions commented on pull request: [8127](https://github.com/hackforla/website/pull/8127#issuecomment-2878192162) at 2025-05-13 04:40 PM PDT -github-actions,2025-05-14T21:49:15Z,- github-actions commented on pull request: [8140](https://github.com/hackforla/website/pull/8140#issuecomment-2881666651) at 2025-05-14 02:49 PM PDT -github-actions,2025-05-15T04:06:15Z,- github-actions commented on pull request: [8141](https://github.com/hackforla/website/pull/8141#issuecomment-2882176995) at 2025-05-14 09:06 PM PDT -github-actions,2025-05-15T04:28:11Z,- github-actions commented on pull request: [8142](https://github.com/hackforla/website/pull/8142#issuecomment-2882204127) at 2025-05-14 09:28 PM PDT -github-actions,2025-05-15T05:42:16Z,- github-actions commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2882568027) at 2025-05-14 10:42 PM PDT -github-actions,2025-05-15T16:31:57Z,- github-actions commented on pull request: [8144](https://github.com/hackforla/website/pull/8144#issuecomment-2884427438) at 2025-05-15 09:31 AM PDT -github-actions,2025-05-16T00:56:44Z,- github-actions commented on pull request: [8146](https://github.com/hackforla/website/pull/8146#issuecomment-2885368988) at 2025-05-15 05:56 PM PDT -github-actions,2025-05-20T17:53:42Z,- github-actions commented on pull request: [8148](https://github.com/hackforla/website/pull/8148#issuecomment-2895342059) at 2025-05-20 10:53 AM PDT -github-actions,2025-05-20T22:55:00Z,- github-actions commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2896008924) at 2025-05-20 03:55 PM PDT -github-actions,2025-05-21T03:24:38Z,- github-actions commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2896448831) at 2025-05-20 08:24 PM PDT -github-actions,2025-05-22T18:38:52Z,- github-actions commented on pull request: [8153](https://github.com/hackforla/website/pull/8153#issuecomment-2902215281) at 2025-05-22 11:38 AM PDT -github-actions,2025-05-23T01:15:04Z,- github-actions commented on pull request: [8154](https://github.com/hackforla/website/pull/8154#issuecomment-2902992930) at 2025-05-22 06:15 PM PDT -github-actions,2025-05-23T05:45:49Z,- github-actions commented on pull request: [8155](https://github.com/hackforla/website/pull/8155#issuecomment-2903332443) at 2025-05-22 10:45 PM PDT -github-actions,2025-05-23T22:12:44Z,- github-actions commented on pull request: [8156](https://github.com/hackforla/website/pull/8156#issuecomment-2905925298) at 2025-05-23 03:12 PM PDT -github-actions,2025-05-24T21:47:43Z,- github-actions commented on pull request: [8158](https://github.com/hackforla/website/pull/8158#issuecomment-2907119231) at 2025-05-24 02:47 PM PDT -github-actions,2025-05-25T17:07:14Z,- github-actions commented on pull request: [8159](https://github.com/hackforla/website/pull/8159#issuecomment-2907949179) at 2025-05-25 10:07 AM PDT -github-actions,2025-05-26T01:38:26Z,- github-actions commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2908277063) at 2025-05-25 06:38 PM PDT -github-actions,2025-05-26T23:13:22Z,- github-actions commented on pull request: [8161](https://github.com/hackforla/website/pull/8161#issuecomment-2910747578) at 2025-05-26 04:13 PM PDT -github-actions,2025-05-27T21:48:51Z,- github-actions commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2914203244) at 2025-05-27 02:48 PM PDT -github-actions,2025-06-04T01:36:26Z,- github-actions commented on pull request: [8169](https://github.com/hackforla/website/pull/8169#issuecomment-2937990216) at 2025-06-03 06:36 PM PDT -github-actions,2025-06-05T20:26:55Z,- github-actions commented on pull request: [8171](https://github.com/hackforla/website/pull/8171#issuecomment-2946089930) at 2025-06-05 01:26 PM PDT -github-actions,2025-06-05T23:28:07Z,- github-actions commented on pull request: [8172](https://github.com/hackforla/website/pull/8172#issuecomment-2946901642) at 2025-06-05 04:28 PM PDT -github-actions,2025-06-08T07:21:12Z,- github-actions commented on pull request: [8173](https://github.com/hackforla/website/pull/8173#issuecomment-2953665687) at 2025-06-08 12:21 AM PDT -github-actions,2025-06-10T04:07:13Z,- github-actions commented on pull request: [8175](https://github.com/hackforla/website/pull/8175#issuecomment-2957616856) at 2025-06-09 09:07 PM PDT -github-actions,2025-06-10T18:51:06Z,- github-actions commented on pull request: [8177](https://github.com/hackforla/website/pull/8177#issuecomment-2960285780) at 2025-06-10 11:51 AM PDT -github-actions,2025-06-10T23:31:45Z,- github-actions commented on pull request: [8179](https://github.com/hackforla/website/pull/8179#issuecomment-2960809150) at 2025-06-10 04:31 PM PDT -github-actions,2025-06-11T01:25:23Z,- github-actions commented on pull request: [8180](https://github.com/hackforla/website/pull/8180#issuecomment-2960948258) at 2025-06-10 06:25 PM PDT -github-actions,2025-06-11T19:50:30Z,- github-actions commented on pull request: [8181](https://github.com/hackforla/website/pull/8181#issuecomment-2963973633) at 2025-06-11 12:50 PM PDT -github-actions,2025-06-11T23:22:28Z,- github-actions commented on pull request: [8182](https://github.com/hackforla/website/pull/8182#issuecomment-2964529389) at 2025-06-11 04:22 PM PDT -github-actions,2025-06-18T21:22:25Z,- github-actions commented on pull request: [8193](https://github.com/hackforla/website/pull/8193#issuecomment-2985731200) at 2025-06-18 02:22 PM PDT -github-actions,2025-06-18T21:38:22Z,- github-actions commented on pull request: [8194](https://github.com/hackforla/website/pull/8194#issuecomment-2985767614) at 2025-06-18 02:38 PM PDT -github-actions,2025-06-18T21:42:18Z,- github-actions commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-2985775020) at 2025-06-18 02:42 PM PDT -github-actions,2025-06-18T22:43:39Z,- github-actions commented on pull request: [8196](https://github.com/hackforla/website/pull/8196#issuecomment-2985928676) at 2025-06-18 03:43 PM PDT -github-actions,2025-06-19T03:18:04Z,- github-actions commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2986459412) at 2025-06-18 08:18 PM PDT -github-actions,2025-06-19T17:26:25Z,- github-actions commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2988765341) at 2025-06-19 10:26 AM PDT -github-actions,2025-06-21T18:21:51Z,- github-actions commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2993709189) at 2025-06-21 11:21 AM PDT -github-actions,2025-06-24T08:14:02Z,- github-actions commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-2999286696) at 2025-06-24 01:14 AM PDT -github-actions,2025-06-24T22:56:26Z,- github-actions commented on pull request: [8204](https://github.com/hackforla/website/pull/8204#issuecomment-3002096709) at 2025-06-24 03:56 PM PDT -github-actions,2025-06-25T08:15:38Z,- github-actions commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3003814913) at 2025-06-25 01:15 AM PDT -github-actions,2025-06-27T00:05:43Z,- github-actions commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3010759699) at 2025-06-26 05:05 PM PDT -github-actions,2025-06-27T05:38:49Z,- github-actions commented on pull request: [8232](https://github.com/hackforla/website/pull/8232#issuecomment-3011739478) at 2025-06-26 10:38 PM PDT -github-actions,2025-06-28T20:32:36Z,- github-actions commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3016019392) at 2025-06-28 01:32 PM PDT -github-actions,2025-07-01T06:03:47Z,- github-actions commented on pull request: [8236](https://github.com/hackforla/website/pull/8236#issuecomment-3021950118) at 2025-06-30 11:03 PM PDT -github-actions,2025-07-02T02:57:48Z,- github-actions commented on pull request: [8240](https://github.com/hackforla/website/pull/8240#issuecomment-3026186161) at 2025-07-01 07:57 PM PDT -github-actions,2025-07-02T09:28:36Z,- github-actions commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3027137348) at 2025-07-02 02:28 AM PDT -github-actions,2025-07-04T18:25:27Z,- github-actions commented on pull request: [8243](https://github.com/hackforla/website/pull/8243#issuecomment-3037027067) at 2025-07-04 11:25 AM PDT -github-actions,2025-07-08T06:30:29Z,- github-actions commented on pull request: [8245](https://github.com/hackforla/website/pull/8245#issuecomment-3047542637) at 2025-07-07 11:30 PM PDT -github-actions,2025-07-10T05:55:35Z,- github-actions commented on pull request: [8246](https://github.com/hackforla/website/pull/8246#issuecomment-3055693518) at 2025-07-09 10:55 PM PDT -github-actions,2025-07-22T03:33:22Z,- github-actions commented on pull request: [8248](https://github.com/hackforla/website/pull/8248#issuecomment-3100685919) at 2025-07-21 08:33 PM PDT -github-actions,2025-07-22T22:50:54Z,- github-actions commented on pull request: [8250](https://github.com/hackforla/website/pull/8250#issuecomment-3105054147) at 2025-07-22 03:50 PM PDT -github-actions,2025-08-02T04:05:51Z,- github-actions commented on pull request: [8253](https://github.com/hackforla/website/pull/8253#issuecomment-3146193000) at 2025-08-01 09:05 PM PDT -github-advanced-security,2023-06-27T01:29:24Z,- github-advanced-security commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1608568372) at 2023-06-26 06:29 PM PDT -github-advanced-security,2023-07-20T14:41:22Z,- github-advanced-security submitted pull request review: [5024](https://github.com/hackforla/website/pull/5024#pullrequestreview-1539437635) at 2023-07-20 07:41 AM PDT -github-advanced-security,2023-08-07T07:56:00Z,- github-advanced-security submitted pull request review: [5156](https://github.com/hackforla/website/pull/5156#pullrequestreview-1564764085) at 2023-08-07 12:56 AM PDT -github-advanced-security,2023-08-07T22:10:25Z,- github-advanced-security submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1566210580) at 2023-08-07 03:10 PM PDT -github-advanced-security,2023-08-19T09:36:10Z,- github-advanced-security submitted pull request review: [5258](https://github.com/hackforla/website/pull/5258#pullrequestreview-1585620727) at 2023-08-19 02:36 AM PDT -github-advanced-security,2023-08-21T19:32:48Z,- github-advanced-security submitted pull request review: [5204](https://github.com/hackforla/website/pull/5204#pullrequestreview-1587726126) at 2023-08-21 12:32 PM PDT -github-advanced-security,2023-08-21T19:52:34Z,- github-advanced-security submitted pull request review: [5280](https://github.com/hackforla/website/pull/5280#pullrequestreview-1587764076) at 2023-08-21 12:52 PM PDT -github-advanced-security,2023-08-31T22:26:30Z,- github-advanced-security submitted pull request review: [5402](https://github.com/hackforla/website/pull/5402#pullrequestreview-1605855594) at 2023-08-31 03:26 PM PDT -github-advanced-security,2023-09-09T02:24:36Z,- github-advanced-security submitted pull request review: [5467](https://github.com/hackforla/website/pull/5467#pullrequestreview-1618547666) at 2023-09-08 07:24 PM PDT -github-advanced-security,2023-09-24T09:21:37Z,- github-advanced-security submitted pull request review: [5577](https://github.com/hackforla/website/pull/5577#pullrequestreview-1641026973) at 2023-09-24 02:21 AM PDT -github-advanced-security,2024-01-20T04:33:49Z,- github-advanced-security submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1834611689) at 2024-01-19 08:33 PM PST -github-advanced-security,2024-02-06T21:44:40Z,- github-advanced-security submitted pull request review: [6261](https://github.com/hackforla/website/pull/6261#pullrequestreview-1866375154) at 2024-02-06 01:44 PM PST -github-advanced-security,2024-02-09T23:36:36Z,- github-advanced-security submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1873332087) at 2024-02-09 03:36 PM PST -github-advanced-security,2024-02-12T20:11:37Z,- github-advanced-security submitted pull request review: [6282](https://github.com/hackforla/website/pull/6282#pullrequestreview-1876133919) at 2024-02-12 12:11 PM PST -github-advanced-security,2024-03-25T00:48:46Z,- github-advanced-security submitted pull request review: [6516](https://github.com/hackforla/website/pull/6516#pullrequestreview-1956711967) at 2024-03-24 05:48 PM PDT -github-advanced-security,2024-03-28T15:41:03Z,- github-advanced-security submitted pull request review: [6503](https://github.com/hackforla/website/pull/6503#pullrequestreview-1966574891) at 2024-03-28 08:41 AM PDT -github-advanced-security,2024-03-30T03:26:30Z,- github-advanced-security submitted pull request review: [6550](https://github.com/hackforla/website/pull/6550#pullrequestreview-1969739257) at 2024-03-29 08:26 PM PDT -github-advanced-security,2024-04-20T18:58:34Z,- github-advanced-security submitted pull request review: [6692](https://github.com/hackforla/website/pull/6692#pullrequestreview-2013134859) at 2024-04-20 11:58 AM PDT -github-advanced-security,2024-05-04T00:36:47Z,- github-advanced-security submitted pull request review: [6815](https://github.com/hackforla/website/pull/6815#pullrequestreview-2039171629) at 2024-05-03 05:36 PM PDT -github-advanced-security,2024-05-21T18:25:40Z,- github-advanced-security submitted pull request review: [6873](https://github.com/hackforla/website/pull/6873#pullrequestreview-2069328025) at 2024-05-21 11:25 AM PDT -github-advanced-security,2024-06-02T02:25:10Z,- github-advanced-security submitted pull request review: [6442](https://github.com/hackforla/website/pull/6442#pullrequestreview-2092201429) at 2024-06-01 07:25 PM PDT -github-advanced-security,2024-06-06T22:35:03Z,- github-advanced-security submitted pull request review: [6969](https://github.com/hackforla/website/pull/6969#pullrequestreview-2103317955) at 2024-06-06 03:35 PM PDT -github-advanced-security,2024-06-21T13:20:40Z,- github-advanced-security submitted pull request review: [6971](https://github.com/hackforla/website/pull/6971#pullrequestreview-2132646943) at 2024-06-21 06:20 AM PDT -github-advanced-security,2024-06-23T04:45:39Z,- github-advanced-security submitted pull request review: [7055](https://github.com/hackforla/website/pull/7055#pullrequestreview-2134071004) at 2024-06-22 09:45 PM PDT -github-advanced-security,2024-07-21T21:07:29Z,- github-advanced-security submitted pull request review: [7132](https://github.com/hackforla/website/pull/7132#pullrequestreview-2190399077) at 2024-07-21 02:07 PM PDT -github-advanced-security,2024-07-31T10:18:57Z,- github-advanced-security submitted pull request review: [6971](https://github.com/hackforla/website/pull/6971#pullrequestreview-2209767511) at 2024-07-31 03:18 AM PDT -github-advanced-security,2024-08-03T01:51:36Z,- github-advanced-security submitted pull request review: [7169](https://github.com/hackforla/website/pull/7169#pullrequestreview-2216576711) at 2024-08-02 06:51 PM PDT -github-advanced-security,2024-08-06T19:17:28Z,- github-advanced-security submitted pull request review: [7228](https://github.com/hackforla/website/pull/7228#pullrequestreview-2222062432) at 2024-08-06 12:17 PM PDT -github-advanced-security,2024-08-22T21:54:56Z,- github-advanced-security submitted pull request review: [6442](https://github.com/hackforla/website/pull/6442#pullrequestreview-2255865193) at 2024-08-22 02:54 PM PDT -github-advanced-security,2024-08-31T21:57:33Z,- github-advanced-security submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2274144614) at 2024-08-31 02:57 PM PDT -github-advanced-security,2024-09-07T22:18:29Z,- github-advanced-security submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2288417163) at 2024-09-07 03:18 PM PDT -github-advanced-security,2024-09-16T17:45:57Z,- github-advanced-security submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2307328599) at 2024-09-16 10:45 AM PDT -github-advanced-security,2024-09-18T23:21:40Z,- github-advanced-security submitted pull request review: [7493](https://github.com/hackforla/website/pull/7493#pullrequestreview-2314013924) at 2024-09-18 04:21 PM PDT -github-advanced-security,2024-10-15T15:44:17Z,- github-advanced-security submitted pull request review: [7595](https://github.com/hackforla/website/pull/7595#pullrequestreview-2369841291) at 2024-10-15 08:44 AM PDT -github-advanced-security,2024-10-21T06:54:08Z,- github-advanced-security submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2381089631) at 2024-10-20 11:54 PM PDT -github-advanced-security,2024-10-27T21:30:24Z,- github-advanced-security submitted pull request review: [7595](https://github.com/hackforla/website/pull/7595#pullrequestreview-2397631645) at 2024-10-27 02:30 PM PDT -github-advanced-security,2024-11-04T22:11:48Z,- github-advanced-security submitted pull request review: [7688](https://github.com/hackforla/website/pull/7688#pullrequestreview-2414226550) at 2024-11-04 02:11 PM PST -github-advanced-security,2025-04-23T05:30:27Z,- github-advanced-security submitted pull request review: [8085](https://github.com/hackforla/website/pull/8085#pullrequestreview-2785974436) at 2025-04-22 10:30 PM PDT -github-advanced-security,2025-04-25T23:16:26Z,- github-advanced-security submitted pull request review: [8089](https://github.com/hackforla/website/pull/8089#pullrequestreview-2795491827) at 2025-04-25 04:16 PM PDT -github-advanced-security,2025-06-10T04:08:02Z,- github-advanced-security submitted pull request review: [8175](https://github.com/hackforla/website/pull/8175#pullrequestreview-2911901086) at 2025-06-09 09:08 PM PDT -github-advanced-security,2025-06-14T21:12:58Z,- github-advanced-security submitted pull request review: [8175](https://github.com/hackforla/website/pull/8175#pullrequestreview-2928846821) at 2025-06-14 02:12 PM PDT -github-advanced-security,2025-06-27T05:39:38Z,- github-advanced-security submitted pull request review: [8232](https://github.com/hackforla/website/pull/8232#pullrequestreview-2964822646) at 2025-06-26 10:39 PM PDT -github-advanced-security,2025-07-22T03:34:10Z,- github-advanced-security submitted pull request review: [8248](https://github.com/hackforla/website/pull/8248#pullrequestreview-3040744318) at 2025-07-21 08:34 PM PDT -gitklu,2019-07-23T02:39:59Z,- gitklu commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514030382) at 2019-07-22 07:39 PM PDT -gitklu,2019-07-23T03:25:41Z,- gitklu opened issue: [134](https://github.com/hackforla/website/issues/134) at 2019-07-22 08:25 PM PDT -gitklu,2019-07-23T03:45:00Z,- gitklu opened issue: [137](https://github.com/hackforla/website/issues/137) at 2019-07-22 08:45 PM PDT -gitklu,2019-07-23T03:46:09Z,- gitklu opened issue: [148](https://github.com/hackforla/website/issues/148) at 2019-07-22 08:46 PM PDT -GitPeebles,3786,SKILLS ISSUE -GitPeebles,2023-01-04T04:47:47Z,- GitPeebles opened issue: [3786](https://github.com/hackforla/website/issues/3786) at 2023-01-03 08:47 PM PST -GitPeebles,2023-01-07T14:26:16Z,- GitPeebles assigned to issue: [3786](https://github.com/hackforla/website/issues/3786) at 2023-01-07 06:26 AM PST -glenflorendo,2021-04-29T00:49:37Z,- glenflorendo assigned to issue: [1475](https://github.com/hackforla/website/issues/1475) at 2021-04-28 05:49 PM PDT -glenflorendo,2021-04-29T18:25:07Z,- glenflorendo assigned to issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823750826) at 2021-04-29 11:25 AM PDT -glenflorendo,2021-05-02T08:45:39Z,- glenflorendo commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-830773591) at 2021-05-02 01:45 AM PDT -glenflorendo,2021-05-02T21:22:32Z,- glenflorendo assigned to issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-826405242) at 2021-05-02 02:22 PM PDT -glenflorendo,2021-05-02T21:23:49Z,- glenflorendo unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-826405242) at 2021-05-02 02:23 PM PDT -glenflorendo,2021-05-07T23:06:39Z,- glenflorendo commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-834848075) at 2021-05-07 04:06 PM PDT -glenflorendo,2021-05-14T06:30:13Z,- glenflorendo commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-841041249) at 2021-05-13 11:30 PM PDT -glenflorendo,2021-05-20T21:31:59Z,- glenflorendo assigned to issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-20 02:31 PM PDT -glenflorendo,2021-05-22T15:56:21Z,- glenflorendo opened pull request: [1603](https://github.com/hackforla/website/pull/1603) at 2021-05-22 08:56 AM PDT -glenflorendo,2021-05-22T16:20:37Z,- glenflorendo opened pull request: [1604](https://github.com/hackforla/website/pull/1604) at 2021-05-22 09:20 AM PDT -glenflorendo,2021-05-22T21:07:49Z,- glenflorendo pull request merged: [1604](https://github.com/hackforla/website/pull/1604#event-4782712332) at 2021-05-22 02:07 PM PDT -glenflorendo,2021-05-28T07:35:19Z,- glenflorendo commented on pull request: [1603](https://github.com/hackforla/website/pull/1603#issuecomment-850215655) at 2021-05-28 12:35 AM PDT -glenflorendo,2021-06-06T19:16:41Z,- glenflorendo commented on pull request: [1603](https://github.com/hackforla/website/pull/1603#issuecomment-855448198) at 2021-06-06 12:16 PM PDT -glenflorendo,2021-06-09T01:19:02Z,- glenflorendo closed issue by PR 1603: [1031](https://github.com/hackforla/website/issues/1031#event-4862048136) at 2021-06-08 06:19 PM PDT -glenflorendo,2021-06-09T01:19:02Z,- glenflorendo pull request merged: [1603](https://github.com/hackforla/website/pull/1603#event-4862048145) at 2021-06-08 06:19 PM PDT -glenflorendo,2021-06-09T05:13:35Z,- glenflorendo assigned to issue: [1689](https://github.com/hackforla/website/issues/1689) at 2021-06-08 10:13 PM PDT -glenflorendo,2021-06-09T05:46:45Z,- glenflorendo opened pull request: [1703](https://github.com/hackforla/website/pull/1703) at 2021-06-08 10:46 PM PDT -glenflorendo,2021-06-11T04:30:46Z,- glenflorendo submitted pull request review: [1704](https://github.com/hackforla/website/pull/1704#pullrequestreview-681440409) at 2021-06-10 09:30 PM PDT -glenflorendo,2021-06-11T06:30:58Z,- glenflorendo closed issue by PR 1703: [1689](https://github.com/hackforla/website/issues/1689#event-4875958700) at 2021-06-10 11:30 PM PDT -glenflorendo,2021-06-11T06:30:58Z,- glenflorendo pull request merged: [1703](https://github.com/hackforla/website/pull/1703#event-4875958705) at 2021-06-10 11:30 PM PDT -glenflorendo,2021-06-22T00:22:42Z,- glenflorendo assigned to issue: [1794](https://github.com/hackforla/website/issues/1794) at 2021-06-21 05:22 PM PDT -glenflorendo,2021-06-22T06:35:55Z,- glenflorendo unassigned from issue: [1794](https://github.com/hackforla/website/issues/1794) at 2021-06-21 11:35 PM PDT -glenflorendo,2021-06-30T01:57:31Z,- glenflorendo assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-870026744) at 2021-06-29 06:57 PM PDT -glenflorendo,2021-07-05T00:10:14Z,- glenflorendo commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-873691854) at 2021-07-04 05:10 PM PDT -glenflorendo,2021-07-16T19:32:03Z,- glenflorendo commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-881671692) at 2021-07-16 12:32 PM PDT -glenflorendo,2021-07-18T19:09:35Z,- glenflorendo unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-882103738) at 2021-07-18 12:09 PM PDT -glenflorendo,2021-08-11T23:51:51Z,- glenflorendo assigned to issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-08-11 04:51 PM PDT -glenflorendo,2021-08-25T01:34:47Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-905099421) at 2021-08-24 06:34 PM PDT -glenflorendo,2021-09-14T05:13:29Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-918809548) at 2021-09-13 10:13 PM PDT -glenflorendo,2021-09-15T22:02:57Z,- glenflorendo assigned to issue: [2269](https://github.com/hackforla/website/issues/2269#issuecomment-920401843) at 2021-09-15 03:02 PM PDT -glenflorendo,2021-09-16T00:37:43Z,- glenflorendo opened pull request: [2281](https://github.com/hackforla/website/pull/2281) at 2021-09-15 05:37 PM PDT -glenflorendo,2021-09-17T02:11:42Z,- glenflorendo commented on pull request: [2281](https://github.com/hackforla/website/pull/2281#issuecomment-921399658) at 2021-09-16 07:11 PM PDT -glenflorendo,2021-09-17T05:30:47Z,- glenflorendo pull request merged: [2281](https://github.com/hackforla/website/pull/2281#event-5316734453) at 2021-09-16 10:30 PM PDT -glenflorendo,2021-09-20T19:55:41Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-923248182) at 2021-09-20 12:55 PM PDT -glenflorendo,2021-10-05T21:14:50Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-934851473) at 2021-10-05 02:14 PM PDT -glenflorendo,2021-10-06T02:48:50Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-935308069) at 2021-10-05 07:48 PM PDT -glenflorendo,2021-10-22T07:28:18Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-949362460) at 2021-10-22 12:28 AM PDT -glenflorendo,2021-11-05T04:24:31Z,- glenflorendo opened pull request: [2453](https://github.com/hackforla/website/pull/2453) at 2021-11-04 09:24 PM PDT -glenflorendo,2021-11-10T20:31:33Z,- glenflorendo submitted pull request review: [2469](https://github.com/hackforla/website/pull/2469#pullrequestreview-803114660) at 2021-11-10 12:31 PM PST -glenflorendo,2021-11-11T01:41:03Z,- glenflorendo submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-803334548) at 2021-11-10 05:41 PM PST -glenflorendo,2021-11-12T17:40:55Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-967296950) at 2021-11-12 09:40 AM PST -glenflorendo,2021-11-14T03:22:44Z,- glenflorendo commented on pull request: [2453](https://github.com/hackforla/website/pull/2453#issuecomment-968198404) at 2021-11-13 07:22 PM PST -glenflorendo,2021-11-16T04:24:56Z,- glenflorendo pull request merged: [2453](https://github.com/hackforla/website/pull/2453#event-5622297387) at 2021-11-15 08:24 PM PST -glenflorendo,2021-11-16T18:22:10Z,- glenflorendo submitted pull request review: [2491](https://github.com/hackforla/website/pull/2491#pullrequestreview-807679136) at 2021-11-16 10:22 AM PST -glenflorendo,2021-11-16T18:55:17Z,- glenflorendo submitted pull request review: [2482](https://github.com/hackforla/website/pull/2482#pullrequestreview-807712078) at 2021-11-16 10:55 AM PST -glenflorendo,2021-11-16T19:24:25Z,- glenflorendo submitted pull request review: [2482](https://github.com/hackforla/website/pull/2482#pullrequestreview-807740579) at 2021-11-16 11:24 AM PST -glenflorendo,2021-11-17T00:08:28Z,- glenflorendo submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-807988430) at 2021-11-16 04:08 PM PST -glenflorendo,2021-11-17T02:17:56Z,- glenflorendo submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-808048834) at 2021-11-16 06:17 PM PST -glenflorendo,2021-11-22T00:32:15Z,- glenflorendo opened pull request: [2510](https://github.com/hackforla/website/pull/2510) at 2021-11-21 04:32 PM PST -glenflorendo,2021-11-22T00:44:24Z,- glenflorendo submitted pull request review: [2507](https://github.com/hackforla/website/pull/2507#pullrequestreview-811995208) at 2021-11-21 04:44 PM PST -glenflorendo,2021-11-22T00:46:20Z,- glenflorendo pull request merged: [2510](https://github.com/hackforla/website/pull/2510#event-5650774356) at 2021-11-21 04:46 PM PST -glenflorendo,2021-12-01T02:24:46Z,- glenflorendo submitted pull request review: [2525](https://github.com/hackforla/website/pull/2525#pullrequestreview-819744111) at 2021-11-30 06:24 PM PST -GLRJr,2021-04-11T18:39:11Z,- GLRJr assigned to issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-11 11:39 AM PDT -GLRJr,2021-04-12T00:56:34Z,- GLRJr opened pull request: [1397](https://github.com/hackforla/website/pull/1397) at 2021-04-11 05:56 PM PDT -GLRJr,2021-04-12T00:59:59Z,- GLRJr commented on issue: [1345](https://github.com/hackforla/website/issues/1345#issuecomment-817412800) at 2021-04-11 05:59 PM PDT -GLRJr,2021-04-12T21:40:01Z,- GLRJr commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818261143) at 2021-04-12 02:40 PM PDT -GLRJr,2021-04-12T22:15:22Z,- GLRJr commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818278100) at 2021-04-12 03:15 PM PDT -GLRJr,2021-04-14T21:17:14Z,- GLRJr submitted pull request review: [1403](https://github.com/hackforla/website/pull/1403#pullrequestreview-636088135) at 2021-04-14 02:17 PM PDT -GLRJr,2021-04-14T22:08:19Z,- GLRJr commented on pull request: [1403](https://github.com/hackforla/website/pull/1403#issuecomment-819880217) at 2021-04-14 03:08 PM PDT -GLRJr,2021-04-15T05:49:33Z,- GLRJr pull request merged: [1397](https://github.com/hackforla/website/pull/1397#event-4597201816) at 2021-04-14 10:49 PM PDT -GLRJr,2021-04-18T18:57:28Z,- GLRJr assigned to issue: [1315](https://github.com/hackforla/website/issues/1315) at 2021-04-18 11:57 AM PDT -GLRJr,2021-04-25T02:40:48Z,- GLRJr commented on issue: [1315](https://github.com/hackforla/website/issues/1315#issuecomment-826226549) at 2021-04-24 07:40 PM PDT -GLRJr,2021-04-28T02:34:10Z,- GLRJr opened pull request: [1480](https://github.com/hackforla/website/pull/1480) at 2021-04-27 07:34 PM PDT -GLRJr,2021-04-28T04:18:48Z,- GLRJr pull request merged: [1480](https://github.com/hackforla/website/pull/1480#event-4654327389) at 2021-04-27 09:18 PM PDT -GLRJr,2021-05-12T01:12:17Z,- GLRJr closed issue by PR 1677: [1427](https://github.com/hackforla/website/issues/1427#event-4733124396) at 2021-05-11 06:12 PM PDT -GLRJr,2021-05-12T01:12:24Z,- GLRJr reopened issue: [1427](https://github.com/hackforla/website/issues/1427#event-4733124396) at 2021-05-11 06:12 PM PDT -GLRJr,2021-05-12T01:12:40Z,- GLRJr assigned to issue: [1427](https://github.com/hackforla/website/issues/1427#event-4733124396) at 2021-05-11 06:12 PM PDT -GLRJr,2021-05-15T16:45:24Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-841690813) at 2021-05-15 09:45 AM PDT -GLRJr,2021-05-16T02:17:21Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-841755018) at 2021-05-15 07:17 PM PDT -GLRJr,2021-05-26T23:36:29Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-849189282) at 2021-05-26 04:36 PM PDT -GLRJr,2021-05-30T18:17:09Z,- GLRJr assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -GLRJr,2021-05-30T18:19:32Z,- GLRJr commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040453) at 2021-05-30 11:19 AM PDT -GLRJr,2021-05-30T18:41:13Z,- GLRJr commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-851043027) at 2021-05-30 11:41 AM PDT -GLRJr,2021-06-01T01:54:56Z,- GLRJr opened pull request: [1677](https://github.com/hackforla/website/pull/1677) at 2021-05-31 06:54 PM PDT -GLRJr,2021-06-13T17:15:44Z,- GLRJr commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-860243371) at 2021-06-13 10:15 AM PDT -GLRJr,2021-06-13T17:36:18Z,- GLRJr commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-860245851) at 2021-06-13 10:36 AM PDT -GLRJr,2021-06-13T17:51:15Z,- GLRJr commented on issue: [1709](https://github.com/hackforla/website/issues/1709#issuecomment-860247579) at 2021-06-13 10:51 AM PDT -GLRJr,2021-06-17T21:59:07Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-863590089) at 2021-06-17 02:59 PM PDT -GLRJr,2021-06-25T23:07:51Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-868876043) at 2021-06-25 04:07 PM PDT -GLRJr,2021-06-27T01:10:21Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-869082575) at 2021-06-26 06:10 PM PDT -GLRJr,2021-06-29T21:50:01Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-870942194) at 2021-06-29 02:50 PM PDT -GLRJr,2021-06-29T23:13:43Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-870978370) at 2021-06-29 04:13 PM PDT -GLRJr,2021-07-02T15:02:42Z,- GLRJr pull request merged: [1677](https://github.com/hackforla/website/pull/1677#event-4971958501) at 2021-07-02 08:02 AM PDT -GLRJr,2021-07-07T21:49:57Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-875958068) at 2021-07-07 02:49 PM PDT -GLRJr,2021-07-13T22:37:40Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-879451504) at 2021-07-13 03:37 PM PDT -GLRJr,2021-07-15T20:47:57Z,- GLRJr opened pull request: [1951](https://github.com/hackforla/website/pull/1951) at 2021-07-15 01:47 PM PDT -GLRJr,2021-07-21T02:38:02Z,- GLRJr commented on pull request: [1951](https://github.com/hackforla/website/pull/1951#issuecomment-883840563) at 2021-07-20 07:38 PM PDT -GLRJr,2021-08-01T17:04:57Z,- GLRJr commented on pull request: [1951](https://github.com/hackforla/website/pull/1951#issuecomment-890554791) at 2021-08-01 10:04 AM PDT -GLRJr,2021-08-01T18:00:54Z,- GLRJr commented on pull request: [1917](https://github.com/hackforla/website/pull/1917#issuecomment-890562384) at 2021-08-01 11:00 AM PDT -GLRJr,2021-08-01T18:21:33Z,- GLRJr commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-890565405) at 2021-08-01 11:21 AM PDT -GLRJr,2021-08-05T18:35:24Z,- GLRJr pull request merged: [1951](https://github.com/hackforla/website/pull/1951#event-5119144000) at 2021-08-05 11:35 AM PDT -GLRJr,2021-09-01T02:09:46Z,- GLRJr assigned to issue: [2182](https://github.com/hackforla/website/issues/2182) at 2021-08-31 07:09 PM PDT -GLRJr,2021-09-01T02:48:21Z,- GLRJr unassigned from issue: [2182](https://github.com/hackforla/website/issues/2182) at 2021-08-31 07:48 PM PDT -GLRJr,2021-09-01T03:00:26Z,- GLRJr assigned to issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-899662109) at 2021-08-31 08:00 PM PDT -GLRJr,2021-09-12T19:39:15Z,- GLRJr commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-917697576) at 2021-09-12 12:39 PM PDT -GLRJr,2021-09-12T19:52:00Z,- GLRJr opened pull request: [2250](https://github.com/hackforla/website/pull/2250) at 2021-09-12 12:52 PM PDT -GLRJr,2021-09-19T17:08:35Z,- GLRJr commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-922506032) at 2021-09-19 10:08 AM PDT -GLRJr,2021-09-19T18:38:01Z,- GLRJr assigned to issue: [2141](https://github.com/hackforla/website/issues/2141) at 2021-09-19 11:38 AM PDT -GLRJr,2021-09-23T15:03:20Z,- GLRJr unassigned from issue: [2141](https://github.com/hackforla/website/issues/2141) at 2021-09-23 08:03 AM PDT -GLRJr,2021-09-24T22:33:58Z,- GLRJr commented on pull request: [2250](https://github.com/hackforla/website/pull/2250#issuecomment-926953524) at 2021-09-24 03:33 PM PDT -GLRJr,2021-09-25T01:24:10Z,- GLRJr pull request merged: [2250](https://github.com/hackforla/website/pull/2250#event-5358930754) at 2021-09-24 06:24 PM PDT -gmgonzal,7743,SKILLS ISSUE -gmgonzal,2024-11-20T03:46:10Z,- gmgonzal opened issue: [7743](https://github.com/hackforla/website/issues/7743) at 2024-11-19 07:46 PM PST -gmgonzal,2024-11-20T03:46:25Z,- gmgonzal assigned to issue: [7743](https://github.com/hackforla/website/issues/7743) at 2024-11-19 07:46 PM PST -gmgonzal,2024-11-20T03:58:00Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2487355914) at 2024-11-19 07:58 PM PST -gmgonzal,2024-12-13T01:32:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2540341592) at 2024-12-12 05:32 PM PST -gmgonzal,2024-12-13T02:01:27Z,- gmgonzal assigned to issue: [7732](https://github.com/hackforla/website/issues/7732) at 2024-12-12 06:01 PM PST -gmgonzal,2025-01-04T00:15:06Z,- gmgonzal commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2569955127) at 2025-01-03 04:15 PM PST -gmgonzal,2025-01-04T00:37:37Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2569966408) at 2025-01-03 04:37 PM PST -gmgonzal,2025-01-04T00:39:59Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2569967360) at 2025-01-03 04:39 PM PST -gmgonzal,2025-01-21T18:49:35Z,- gmgonzal commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2605497252) at 2025-01-21 10:49 AM PST -gmgonzal,2025-01-21T18:54:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2605506110) at 2025-01-21 10:54 AM PST -gmgonzal,2025-01-28T02:26:44Z,- gmgonzal opened pull request: [7861](https://github.com/hackforla/website/pull/7861) at 2025-01-27 06:26 PM PST -gmgonzal,2025-01-28T02:36:55Z,- gmgonzal commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2617664851) at 2025-01-27 06:36 PM PST -gmgonzal,2025-01-28T02:42:29Z,- gmgonzal commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2617681224) at 2025-01-27 06:42 PM PST -gmgonzal,2025-01-28T23:53:46Z,- gmgonzal submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2579660845) at 2025-01-28 03:53 PM PST -gmgonzal,2025-01-29T00:02:11Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2620299835) at 2025-01-28 04:02 PM PST -gmgonzal,2025-01-29T00:09:00Z,- gmgonzal commented on pull request: [7852](https://github.com/hackforla/website/pull/7852#issuecomment-2620307850) at 2025-01-28 04:09 PM PST -gmgonzal,2025-02-02T22:37:55Z,- gmgonzal pull request merged: [7861](https://github.com/hackforla/website/pull/7861#event-16153924019) at 2025-02-02 02:37 PM PST -gmgonzal,2025-02-04T20:27:46Z,- gmgonzal submitted pull request review: [7852](https://github.com/hackforla/website/pull/7852#pullrequestreview-2593960163) at 2025-02-04 12:27 PM PST -gmgonzal,2025-02-04T20:40:34Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2635023383) at 2025-02-04 12:40 PM PST -gmgonzal,2025-02-05T19:22:27Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2637833271) at 2025-02-05 11:22 AM PST -gmgonzal,2025-02-06T19:02:38Z,- gmgonzal assigned to issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2462788218) at 2025-02-06 11:02 AM PST -gmgonzal,2025-02-06T19:16:25Z,- gmgonzal commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2640776822) at 2025-02-06 11:16 AM PST -gmgonzal,2025-02-06T19:33:29Z,- gmgonzal opened pull request: [7898](https://github.com/hackforla/website/pull/7898) at 2025-02-06 11:33 AM PST -gmgonzal,2025-02-06T19:38:33Z,- gmgonzal commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2640825525) at 2025-02-06 11:38 AM PST -gmgonzal,2025-02-06T20:17:30Z,- gmgonzal submitted pull request review: [7880](https://github.com/hackforla/website/pull/7880#pullrequestreview-2599809736) at 2025-02-06 12:17 PM PST -gmgonzal,2025-02-06T20:19:50Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2640911370) at 2025-02-06 12:19 PM PST -gmgonzal,2025-02-10T17:13:07Z,- gmgonzal pull request merged: [7898](https://github.com/hackforla/website/pull/7898#event-16251638407) at 2025-02-10 09:13 AM PST -gmgonzal,2025-02-10T19:32:01Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2649044136) at 2025-02-10 11:32 AM PST -gmgonzal,2025-02-10T20:01:14Z,- gmgonzal submitted pull request review: [7902](https://github.com/hackforla/website/pull/7902#pullrequestreview-2607025557) at 2025-02-10 12:01 PM PST -gmgonzal,2025-02-10T20:06:43Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2649119620) at 2025-02-10 12:06 PM PST -gmgonzal,2025-02-10T20:08:03Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2649122600) at 2025-02-10 12:08 PM PST -gmgonzal,2025-02-10T23:39:51Z,- gmgonzal submitted pull request review: [7902](https://github.com/hackforla/website/pull/7902#pullrequestreview-2607411503) at 2025-02-10 03:39 PM PST -gmgonzal,2025-02-11T20:08:34Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2651958407) at 2025-02-11 12:08 PM PST -gmgonzal,2025-02-11T20:10:23Z,- gmgonzal assigned to issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2387226214) at 2025-02-11 12:10 PM PST -gmgonzal,2025-02-11T20:15:42Z,- gmgonzal commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2651971734) at 2025-02-11 12:15 PM PST -gmgonzal,2025-02-11T23:38:22Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2652301888) at 2025-02-11 03:38 PM PST -gmgonzal,2025-02-11T23:39:12Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2652302825) at 2025-02-11 03:39 PM PST -gmgonzal,2025-02-12T17:15:24Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2654367486) at 2025-02-12 09:15 AM PST -gmgonzal,2025-02-12T17:31:40Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2654406713) at 2025-02-12 09:31 AM PST -gmgonzal,2025-02-14T18:40:25Z,- gmgonzal commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2660025505) at 2025-02-14 10:40 AM PST -gmgonzal,2025-02-17T19:09:07Z,- gmgonzal commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2663909905) at 2025-02-17 11:09 AM PST -gmgonzal,2025-02-17T22:46:47Z,- gmgonzal submitted pull request review: [7906](https://github.com/hackforla/website/pull/7906#pullrequestreview-2622053021) at 2025-02-17 02:46 PM PST -gmgonzal,2025-02-17T22:51:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2664190237) at 2025-02-17 02:51 PM PST -gmgonzal,2025-02-17T22:54:21Z,- gmgonzal commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2664192924) at 2025-02-17 02:54 PM PST -gmgonzal,2025-02-17T23:04:38Z,- gmgonzal submitted pull request review: [7910](https://github.com/hackforla/website/pull/7910#pullrequestreview-2622066609) at 2025-02-17 03:04 PM PST -gmgonzal,2025-02-17T23:06:28Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2664204589) at 2025-02-17 03:06 PM PST -gmgonzal,2025-02-17T23:08:03Z,- gmgonzal assigned to issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2641933007) at 2025-02-17 03:08 PM PST -gmgonzal,2025-02-17T23:08:20Z,- gmgonzal unassigned from issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2641933007) at 2025-02-17 03:08 PM PST -gmgonzal,2025-02-17T23:12:38Z,- gmgonzal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2664210236) at 2025-02-17 03:12 PM PST -gmgonzal,2025-02-17T23:32:40Z,- gmgonzal assigned to issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2381010498) at 2025-02-17 03:32 PM PST -gmgonzal,2025-02-17T23:34:43Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2664229993) at 2025-02-17 03:34 PM PST -gmgonzal,2025-02-20T03:02:16Z,- gmgonzal submitted pull request review: [7906](https://github.com/hackforla/website/pull/7906#pullrequestreview-2628605790) at 2025-02-19 07:02 PM PST -gmgonzal,2025-02-24T22:02:51Z,- gmgonzal submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2638545674) at 2025-02-24 02:02 PM PST -gmgonzal,2025-02-24T22:05:29Z,- gmgonzal submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2638549949) at 2025-02-24 02:05 PM PST -gmgonzal,2025-02-24T22:12:25Z,- gmgonzal submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2638563861) at 2025-02-24 02:12 PM PST -gmgonzal,2025-02-24T22:14:19Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2679781644) at 2025-02-24 02:14 PM PST -gmgonzal,2025-02-25T23:25:41Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2683517077) at 2025-02-25 03:25 PM PST -gmgonzal,2025-02-26T03:14:18Z,- gmgonzal commented on pull request: [7945](https://github.com/hackforla/website/pull/7945#issuecomment-2683789640) at 2025-02-25 07:14 PM PST -gmgonzal,2025-02-26T03:49:51Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2683824846) at 2025-02-25 07:49 PM PST -gmgonzal,2025-03-01T01:14:32Z,- gmgonzal commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2691807362) at 2025-02-28 05:14 PM PST -gmgonzal,2025-03-01T01:17:19Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2691809521) at 2025-02-28 05:17 PM PST -gmgonzal,2025-03-01T01:36:56Z,- gmgonzal submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2652088828) at 2025-02-28 05:36 PM PST -gmgonzal,2025-03-01T01:43:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2691827964) at 2025-02-28 05:43 PM PST -gmgonzal,2025-03-01T01:46:12Z,- gmgonzal commented on pull request: [7951](https://github.com/hackforla/website/pull/7951#issuecomment-2691829439) at 2025-02-28 05:46 PM PST -gmgonzal,2025-03-01T01:53:31Z,- gmgonzal submitted pull request review: [7951](https://github.com/hackforla/website/pull/7951#pullrequestreview-2652096877) at 2025-02-28 05:53 PM PST -gmgonzal,2025-03-01T01:55:57Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2691835963) at 2025-02-28 05:55 PM PST -gmgonzal,2025-03-05T03:56:43Z,- gmgonzal submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2659803023) at 2025-03-04 07:56 PM PST -gmgonzal,2025-03-05T05:05:04Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2699850665) at 2025-03-04 09:05 PM PST -gmgonzal,2025-03-05T10:06:22Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2700446309) at 2025-03-05 02:06 AM PST -gmgonzal,2025-03-11T22:00:59Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2715799556) at 2025-03-11 03:00 PM PDT -gmgonzal,2025-03-11T22:12:20Z,- gmgonzal assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2412459670) at 2025-03-11 03:12 PM PDT -gmgonzal,2025-03-11T22:12:34Z,- gmgonzal unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2715818467) at 2025-03-11 03:12 PM PDT -gmgonzal,2025-03-11T22:13:52Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2715822740) at 2025-03-11 03:13 PM PDT -gmgonzal,2025-03-12T21:47:06Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2719206058) at 2025-03-12 02:47 PM PDT -gmgonzal,2025-03-17T07:43:57Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2728470159) at 2025-03-17 12:43 AM PDT -gmgonzal,2025-03-17T10:17:52Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2689896690) at 2025-03-17 03:17 AM PDT -gmgonzal,2025-03-18T01:19:44Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731340990) at 2025-03-17 06:19 PM PDT -gmgonzal,2025-03-18T06:21:17Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731809242) at 2025-03-17 11:21 PM PDT -gmgonzal,2025-03-18T06:38:56Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2731842910) at 2025-03-17 11:38 PM PDT -gmgonzal,2025-03-18T07:16:40Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2693257727) at 2025-03-18 12:16 AM PDT -gmgonzal,2025-03-18T07:18:56Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2693262539) at 2025-03-18 12:18 AM PDT -gmgonzal,2025-03-18T07:20:07Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2693264790) at 2025-03-18 12:20 AM PDT -gmgonzal,2025-03-25T23:02:05Z,- gmgonzal commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2752730552) at 2025-03-25 04:02 PM PDT -gmgonzal,2025-03-25T23:03:16Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2752731912) at 2025-03-25 04:03 PM PDT -gmgonzal,2025-03-26T00:45:13Z,- gmgonzal submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2715515602) at 2025-03-25 05:45 PM PDT -gmgonzal,2025-03-26T00:47:19Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2752878519) at 2025-03-25 05:47 PM PDT -gmgonzal,2025-04-04T01:03:40Z,- gmgonzal commented on pull request: [8037](https://github.com/hackforla/website/pull/8037#issuecomment-2777312427) at 2025-04-03 06:03 PM PDT -gmgonzal,2025-04-04T01:41:06Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2777352355) at 2025-04-03 06:41 PM PDT -gmgonzal,2025-04-04T02:08:04Z,- gmgonzal opened pull request: [8043](https://github.com/hackforla/website/pull/8043) at 2025-04-03 07:08 PM PDT -gmgonzal,2025-04-04T02:08:54Z,- gmgonzal pull request closed w/o merging: [8043](https://github.com/hackforla/website/pull/8043#event-17122943973) at 2025-04-03 07:08 PM PDT -gmgonzal,2025-04-04T02:09:23Z,- gmgonzal commented on pull request: [8043](https://github.com/hackforla/website/pull/8043#issuecomment-2777380416) at 2025-04-03 07:09 PM PDT -gmgonzal,2025-04-09T20:30:21Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754742828) at 2025-04-09 01:30 PM PDT -gmgonzal,2025-04-09T20:34:13Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754750571) at 2025-04-09 01:34 PM PDT -gmgonzal,2025-04-09T20:34:27Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754751057) at 2025-04-09 01:34 PM PDT -gmgonzal,2025-04-09T20:54:45Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754790889) at 2025-04-09 01:54 PM PDT -gmgonzal,2025-04-10T01:42:39Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2755131395) at 2025-04-09 06:42 PM PDT -gmgonzal,2025-04-10T01:43:51Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2791342535) at 2025-04-09 06:43 PM PDT -gmgonzal,2025-04-18T22:55:18Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2816320975) at 2025-04-18 03:55 PM PDT -gmgonzal,2025-04-18T22:59:29Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2816324292) at 2025-04-18 03:59 PM PDT -gmgonzal,2025-05-02T00:47:21Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2846074676) at 2025-05-01 05:47 PM PDT -gmgonzal,2025-05-02T01:08:32Z,- gmgonzal opened pull request: [8106](https://github.com/hackforla/website/pull/8106) at 2025-05-01 06:08 PM PDT -gmgonzal,2025-05-02T20:48:07Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2848094281) at 2025-05-02 01:48 PM PDT -gmgonzal,2025-05-05T21:10:12Z,- gmgonzal pull request merged: [8106](https://github.com/hackforla/website/pull/8106#event-17526339534) at 2025-05-05 02:10 PM PDT -gmgonzal,2025-05-08T19:49:02Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2864110919) at 2025-05-08 12:49 PM PDT -gold-o,3069,SKILLS ISSUE -gold-o,2022-04-19T17:26:36Z,- gold-o opened issue: [3069](https://github.com/hackforla/website/issues/3069) at 2022-04-19 10:26 AM PDT -gold-o,2022-04-20T22:36:30Z,- gold-o assigned to issue: [3069](https://github.com/hackforla/website/issues/3069#issuecomment-1102905420) at 2022-04-20 03:36 PM PDT -gold-o,2022-04-20T22:46:17Z,- gold-o assigned to issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1091394048) at 2022-04-20 03:46 PM PDT -gold-o,2022-04-27T20:29:57Z,- gold-o commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1111451291) at 2022-04-27 01:29 PM PDT -gold-o,2022-04-27T22:06:12Z,- gold-o closed issue as completed: [3069](https://github.com/hackforla/website/issues/3069#event-6510454340) at 2022-04-27 03:06 PM PDT -gold-o,2022-05-29T18:49:55Z,- gold-o commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1140504416) at 2022-05-29 11:49 AM PDT -gold-o,2022-06-20T07:39:10Z,- gold-o commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1160086251) at 2022-06-20 12:39 AM PDT -gold-o,2022-06-20T07:39:10Z,- gold-o closed issue as completed: [3034](https://github.com/hackforla/website/issues/3034#event-6836996427) at 2022-06-20 12:39 AM PDT -gold-o,2022-06-22T20:59:55Z,- gold-o assigned to issue: [1848](https://github.com/hackforla/website/issues/1848#issuecomment-894829423) at 2022-06-22 01:59 PM PDT -gold-o,2022-06-22T22:22:44Z,- gold-o assigned to issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-999099692) at 2022-06-22 03:22 PM PDT -gold-o,2022-06-22T22:22:54Z,- gold-o unassigned from issue: [1848](https://github.com/hackforla/website/issues/1848#issuecomment-894829423) at 2022-06-22 03:22 PM PDT -gold-o,2022-06-26T17:20:14Z,- gold-o commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1166593171) at 2022-06-26 10:20 AM PDT -gold-o,2022-07-06T19:02:53Z,- gold-o assigned to issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-07-06 12:02 PM PDT -gold-o,2022-07-06T19:02:58Z,- gold-o unassigned from issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-07-06 12:02 PM PDT -gold-o,2022-07-06T19:03:01Z,- gold-o assigned to issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-07-06 12:03 PM PDT -gold-o,2022-07-07T22:10:24Z,- gold-o commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1178280519) at 2022-07-07 03:10 PM PDT -gold-o,2022-07-17T22:18:46Z,- gold-o commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1186617457) at 2022-07-17 03:18 PM PDT -gold-o,2022-09-12T22:40:27Z,- gold-o commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1244636993) at 2022-09-12 03:40 PM PDT -gold-o,2022-09-12T22:43:17Z,- gold-o commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1244645781) at 2022-09-12 03:43 PM PDT -gold-o,2022-09-12T22:43:17Z,- gold-o closed issue as completed: [3117](https://github.com/hackforla/website/issues/3117#event-7371598729) at 2022-09-12 03:43 PM PDT -gold-o,2022-10-05T16:10:34Z,- gold-o unassigned from issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1263227729) at 2022-10-05 09:10 AM PDT -Gourav2609,2023-08-18T19:05:27Z,- Gourav2609 commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1684327412) at 2023-08-18 12:05 PM PDT -gr4ssman,2021-06-30T03:40:47Z,- gr4ssman assigned to issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-06-29 08:40 PM PDT -gr4ssman,2021-08-20T20:25:02Z,- gr4ssman unassigned from issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902938080) at 2021-08-20 01:25 PM PDT -graycodesnu,4312,SKILLS ISSUE -graycodesnu,2023-03-29T03:16:12Z,- graycodesnu opened issue: [4312](https://github.com/hackforla/website/issues/4312) at 2023-03-28 08:16 PM PDT -graycodesnu,2023-03-29T03:33:06Z,- graycodesnu assigned to issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1487888544) at 2023-03-28 08:33 PM PDT -graycodesnu,2023-04-03T18:08:35Z,- graycodesnu assigned to issue: [4376](https://github.com/hackforla/website/issues/4376) at 2023-04-03 11:08 AM PDT -graycodesnu,2023-04-03T18:14:17Z,- graycodesnu commented on issue: [4376](https://github.com/hackforla/website/issues/4376#issuecomment-1494766697) at 2023-04-03 11:14 AM PDT -graycodesnu,2023-04-03T18:16:20Z,- graycodesnu commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1494769515) at 2023-04-03 11:16 AM PDT -graycodesnu,2023-04-03T18:47:31Z,- graycodesnu opened pull request: [4386](https://github.com/hackforla/website/pull/4386) at 2023-04-03 11:47 AM PDT -graycodesnu,2023-04-06T02:51:27Z,- graycodesnu pull request merged: [4386](https://github.com/hackforla/website/pull/4386#event-8941129602) at 2023-04-05 07:51 PM PDT -graycodesnu,2023-04-09T07:19:31Z,- graycodesnu submitted pull request review: [4441](https://github.com/hackforla/website/pull/4441#pullrequestreview-1376868590) at 2023-04-09 12:19 AM PDT -graycodesnu,2023-04-09T07:31:09Z,- graycodesnu commented on pull request: [4441](https://github.com/hackforla/website/pull/4441#issuecomment-1501062507) at 2023-04-09 12:31 AM PDT -graycodesnu,2023-04-16T05:35:05Z,- graycodesnu assigned to issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1509090621) at 2023-04-15 10:35 PM PDT -graycodesnu,2023-04-16T05:39:01Z,- graycodesnu commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1510088302) at 2023-04-15 10:39 PM PDT -graycodesnu,2023-04-16T06:14:02Z,- graycodesnu opened pull request: [4521](https://github.com/hackforla/website/pull/4521) at 2023-04-15 11:14 PM PDT -graycodesnu,2023-04-16T20:14:34Z,- graycodesnu pull request closed w/o merging: [4521](https://github.com/hackforla/website/pull/4521#event-9018212711) at 2023-04-16 01:14 PM PDT -graycodesnu,2023-04-16T20:24:03Z,- graycodesnu opened pull request: [4524](https://github.com/hackforla/website/pull/4524) at 2023-04-16 01:24 PM PDT -graycodesnu,2023-04-16T20:28:44Z,- graycodesnu commented on pull request: [4521](https://github.com/hackforla/website/pull/4521#issuecomment-1510478702) at 2023-04-16 01:28 PM PDT -graycodesnu,2023-04-16T20:29:23Z,- graycodesnu commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1510478796) at 2023-04-16 01:29 PM PDT -graycodesnu,2023-04-17T05:51:57Z,- graycodesnu commented on pull request: [4528](https://github.com/hackforla/website/pull/4528#issuecomment-1510744101) at 2023-04-16 10:51 PM PDT -graycodesnu,2023-04-18T01:23:22Z,- graycodesnu submitted pull request review: [4528](https://github.com/hackforla/website/pull/4528#pullrequestreview-1389137525) at 2023-04-17 06:23 PM PDT -graycodesnu,2023-04-19T17:00:23Z,- graycodesnu pull request merged: [4524](https://github.com/hackforla/website/pull/4524#event-9048942563) at 2023-04-19 10:00 AM PDT -graycodesnu,2023-04-20T22:14:17Z,- graycodesnu commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1517010097) at 2023-04-20 03:14 PM PDT -graycodesnu,2023-04-27T00:26:37Z,- graycodesnu assigned to issue: [4401](https://github.com/hackforla/website/issues/4401) at 2023-04-26 05:26 PM PDT -graycodesnu,2023-04-27T00:47:42Z,- graycodesnu commented on issue: [4401](https://github.com/hackforla/website/issues/4401#issuecomment-1524318255) at 2023-04-26 05:47 PM PDT -graycodesnu,2023-04-27T01:27:52Z,- graycodesnu opened pull request: [4569](https://github.com/hackforla/website/pull/4569) at 2023-04-26 06:27 PM PDT -graycodesnu,2023-04-30T00:16:23Z,- graycodesnu commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1528903151) at 2023-04-29 05:16 PM PDT -graycodesnu,2023-04-30T16:53:32Z,- graycodesnu commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1529076667) at 2023-04-30 09:53 AM PDT -graycodesnu,2023-04-30T17:24:44Z,- graycodesnu pull request merged: [4569](https://github.com/hackforla/website/pull/4569#event-9132683857) at 2023-04-30 10:24 AM PDT -graycodesnu,2023-04-30T17:31:19Z,- graycodesnu assigned to issue: [4513](https://github.com/hackforla/website/issues/4513#issuecomment-1509624686) at 2023-04-30 10:31 AM PDT -graycodesnu,2023-04-30T17:32:59Z,- graycodesnu commented on issue: [4513](https://github.com/hackforla/website/issues/4513#issuecomment-1529088753) at 2023-04-30 10:32 AM PDT -graycodesnu,2023-05-04T07:23:34Z,- graycodesnu opened pull request: [4596](https://github.com/hackforla/website/pull/4596) at 2023-05-04 12:23 AM PDT -graycodesnu,2023-05-04T18:37:58Z,- graycodesnu pull request merged: [4596](https://github.com/hackforla/website/pull/4596#event-9170404017) at 2023-05-04 11:37 AM PDT -graycodesnu,2023-05-09T00:36:55Z,- graycodesnu assigned to issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1533494584) at 2023-05-08 05:36 PM PDT -graycodesnu,2023-05-09T00:39:34Z,- graycodesnu commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1539234255) at 2023-05-08 05:39 PM PDT -graycodesnu,2023-05-15T04:09:21Z,- graycodesnu commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1547165007) at 2023-05-14 09:09 PM PDT -graycodesnu,2023-05-15T04:11:07Z,- graycodesnu commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1547166329) at 2023-05-14 09:11 PM PDT -graycodesnu,2023-05-15T04:11:07Z,- graycodesnu closed issue as completed: [4312](https://github.com/hackforla/website/issues/4312#event-9241859881) at 2023-05-14 09:11 PM PDT -graycodesnu,2023-05-17T02:13:59Z,- graycodesnu commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1550587795) at 2023-05-16 07:13 PM PDT -graycodesnu,2023-05-29T22:49:23Z,- graycodesnu commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 03:49 PM PDT -graycodesnu,2023-05-29T22:51:03Z,- graycodesnu unassigned from issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 03:51 PM PDT -graycodesnu,2023-05-29T22:51:03Z,- graycodesnu unassigned from issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 03:51 PM PDT -graycodesnu,2023-06-01T19:06:02Z,- graycodesnu commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1572627121) at 2023-06-01 12:06 PM PDT -graycodesnu,2023-06-01T19:26:04Z,- graycodesnu submitted pull request review: [4757](https://github.com/hackforla/website/pull/4757#pullrequestreview-1456167804) at 2023-06-01 12:26 PM PDT -graycodesnu,2023-06-01T19:28:13Z,- graycodesnu commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1572654890) at 2023-06-01 12:28 PM PDT -graycodesnu,2023-06-01T19:36:01Z,- graycodesnu commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1572663914) at 2023-06-01 12:36 PM PDT -graycodesnu,2023-06-02T07:02:47Z,- graycodesnu submitted pull request review: [4751](https://github.com/hackforla/website/pull/4751#pullrequestreview-1456770112) at 2023-06-02 12:02 AM PDT -graycodesnu,2023-06-09T02:33:53Z,- graycodesnu commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1583856947) at 2023-06-08 07:33 PM PDT -graycodesnu,2023-06-09T02:57:27Z,- graycodesnu submitted pull request review: [4772](https://github.com/hackforla/website/pull/4772#pullrequestreview-1471122970) at 2023-06-08 07:57 PM PDT -graycodesnu,2023-06-16T03:57:02Z,- graycodesnu commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1594051441) at 2023-06-15 08:57 PM PDT -graycodesnu,2023-06-16T05:39:12Z,- graycodesnu submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1482750473) at 2023-06-15 10:39 PM PDT -greg-nice,3050,SKILLS ISSUE -greg-nice,2022-04-13T03:10:42Z,- greg-nice opened issue: [3050](https://github.com/hackforla/website/issues/3050) at 2022-04-12 08:10 PM PDT -greg-nice,2022-04-13T03:18:12Z,- greg-nice assigned to issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1097506203) at 2022-04-12 08:18 PM PDT -gregpawin,2020-07-26T22:24:44Z,- gregpawin commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-664048034) at 2020-07-26 03:24 PM PDT -gregpawin,2020-08-03T03:51:05Z,- gregpawin commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-667788585) at 2020-08-02 08:51 PM PDT -gregpawin,2020-08-21T01:25:13Z,- gregpawin opened issue: [693](https://github.com/hackforla/website/issues/693) at 2020-08-20 06:25 PM PDT -gregpawin,2020-10-29T03:21:28Z,- gregpawin commented on issue: [693](https://github.com/hackforla/website/issues/693#issuecomment-718334198) at 2020-10-28 08:21 PM PDT -gregpawin,2021-01-10T20:53:11Z,- gregpawin assigned to issue: [937](https://github.com/hackforla/website/issues/937) at 2021-01-10 12:53 PM PST -gregpawin,2021-01-11T05:45:35Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-757636737) at 2021-01-10 09:45 PM PST -gregpawin,2021-01-13T01:07:11Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759136019) at 2021-01-12 05:07 PM PST -gregpawin,2021-01-13T01:39:29Z,- gregpawin closed issue as completed: [937](https://github.com/hackforla/website/issues/937#event-4198992921) at 2021-01-12 05:39 PM PST -gregpawin,2021-01-13T01:39:36Z,- gregpawin reopened issue: [937](https://github.com/hackforla/website/issues/937#event-4198992921) at 2021-01-12 05:39 PM PST -gregpawin,2021-01-13T01:39:48Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-12 05:39 PM PST -gregpawin,2021-01-13T19:22:21Z,- gregpawin unassigned from issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-13 11:22 AM PST -gregpawin,2021-01-31T20:46:30Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770448037) at 2021-01-31 12:46 PM PST -gregpawin,2021-01-31T20:59:03Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770449757) at 2021-01-31 12:59 PM PST -gregpawin,2021-01-31T21:02:48Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770450360) at 2021-01-31 01:02 PM PST -gregpawin,2022-04-15T16:20:30Z,- gregpawin opened issue: [3056](https://github.com/hackforla/website/issues/3056) at 2022-04-15 09:20 AM PDT -gregpawin,2022-04-20T19:57:25Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104402022) at 2022-04-20 12:57 PM PDT -gregpawin,2022-05-26T19:55:56Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1138953636) at 2022-05-26 12:55 PM PDT -gregpawin,2022-07-21T01:39:39Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1190940215) at 2022-07-20 06:39 PM PDT -gregpawin,2022-09-11T20:28:08Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1243037048) at 2022-09-11 01:28 PM PDT -gregpawin,2022-10-31T23:26:49Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1297810524) at 2022-10-31 04:26 PM PDT -greylaw89,2837,SKILLS ISSUE -greylaw89,2022-02-22T03:18:52Z,- greylaw89 opened issue: [2837](https://github.com/hackforla/website/issues/2837) at 2022-02-21 07:18 PM PST -greylaw89,2022-02-22T03:23:04Z,- greylaw89 assigned to issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1047387113) at 2022-02-21 07:23 PM PST -greylaw89,2022-02-23T03:33:31Z,- greylaw89 assigned to issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-22 07:33 PM PST -greylaw89,2022-02-23T03:55:17Z,- greylaw89 assigned to issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-957988338) at 2022-02-22 07:55 PM PST -greylaw89,2022-02-23T03:58:27Z,- greylaw89 unassigned from issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-22 07:58 PM PST -greylaw89,2022-02-23T05:12:50Z,- greylaw89 opened pull request: [2862](https://github.com/hackforla/website/pull/2862) at 2022-02-22 09:12 PM PST -greylaw89,2022-02-23T05:13:35Z,- greylaw89 pull request closed w/o merging: [2862](https://github.com/hackforla/website/pull/2862#event-6122552135) at 2022-02-22 09:13 PM PST -greylaw89,2022-02-23T05:13:44Z,- greylaw89 reopened pull request: [2862](https://github.com/hackforla/website/pull/2862#event-6122552135) at 2022-02-22 09:13 PM PST -greylaw89,2022-02-23T20:28:20Z,- greylaw89 commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1049185275) at 2022-02-23 12:28 PM PST -greylaw89,2022-02-24T20:30:25Z,- greylaw89 commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1050236339) at 2022-02-24 12:30 PM PST -greylaw89,2022-02-26T23:14:17Z,- greylaw89 commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1052768187) at 2022-02-26 03:14 PM PST -greylaw89,2022-03-26T21:28:05Z,- greylaw89 pull request closed w/o merging: [2862](https://github.com/hackforla/website/pull/2862#event-6312583412) at 2022-03-26 02:28 PM PDT -greylaw89,2022-03-26T21:29:53Z,- greylaw89 unassigned from issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1073045830) at 2022-03-26 02:29 PM PDT -grhhhh,2021-04-25T18:48:55Z,- grhhhh assigned to issue: [1436](https://github.com/hackforla/website/issues/1436#issuecomment-826152022) at 2021-04-25 11:48 AM PDT -grhhhh,2021-04-27T22:46:39Z,- grhhhh opened pull request: [1474](https://github.com/hackforla/website/pull/1474) at 2021-04-27 03:46 PM PDT -grhhhh,2021-04-28T02:09:14Z,- grhhhh pull request merged: [1474](https://github.com/hackforla/website/pull/1474#event-4654025167) at 2021-04-27 07:09 PM PDT -grhhhh,2021-04-28T07:26:52Z,- grhhhh assigned to issue: [1487](https://github.com/hackforla/website/issues/1487) at 2021-04-28 12:26 AM PDT -grhhhh,2021-05-03T19:12:22Z,- grhhhh assigned to issue: [1499](https://github.com/hackforla/website/issues/1499) at 2021-05-03 12:12 PM PDT -grhhhh,2021-05-03T23:56:36Z,- grhhhh opened pull request: [1503](https://github.com/hackforla/website/pull/1503) at 2021-05-03 04:56 PM PDT -grhhhh,2021-05-04T21:10:24Z,- grhhhh pull request merged: [1503](https://github.com/hackforla/website/pull/1503#event-4685708322) at 2021-05-04 02:10 PM PDT -grhhhh,2021-05-04T21:14:36Z,- grhhhh assigned to issue: [1457](https://github.com/hackforla/website/issues/1457) at 2021-05-04 02:14 PM PDT -grhhhh,2021-05-04T23:56:19Z,- grhhhh opened pull request: [1508](https://github.com/hackforla/website/pull/1508) at 2021-05-04 04:56 PM PDT -grhhhh,2021-05-05T23:40:40Z,- grhhhh opened pull request: [1517](https://github.com/hackforla/website/pull/1517) at 2021-05-05 04:40 PM PDT -grhhhh,2021-05-05T23:41:02Z,- grhhhh pull request closed w/o merging: [1508](https://github.com/hackforla/website/pull/1508#event-4692046029) at 2021-05-05 04:41 PM PDT -grhhhh,2021-05-05T23:52:13Z,- grhhhh pull request merged: [1517](https://github.com/hackforla/website/pull/1517#event-4692070526) at 2021-05-05 04:52 PM PDT -grhhhh,2021-05-06T00:28:49Z,- grhhhh assigned to issue: [1507](https://github.com/hackforla/website/issues/1507#issuecomment-831770752) at 2021-05-05 05:28 PM PDT -grhhhh,2021-05-06T22:57:56Z,- grhhhh opened pull request: [1522](https://github.com/hackforla/website/pull/1522) at 2021-05-06 03:57 PM PDT -grhhhh,2021-05-07T03:16:14Z,- grhhhh opened issue: [1524](https://github.com/hackforla/website/issues/1524) at 2021-05-06 08:16 PM PDT -grhhhh,2021-05-08T00:47:45Z,- grhhhh commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-834911116) at 2021-05-07 05:47 PM PDT -grhhhh,2021-05-10T19:31:20Z,- grhhhh commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837202528) at 2021-05-10 12:31 PM PDT -grhhhh,2021-05-10T20:03:58Z,- grhhhh commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837250546) at 2021-05-10 01:03 PM PDT -grhhhh,2021-05-11T01:19:38Z,- grhhhh pull request merged: [1522](https://github.com/hackforla/website/pull/1522#event-4722108579) at 2021-05-10 06:19 PM PDT -grhhhh,2021-05-11T21:50:18Z,- grhhhh assigned to issue: [1537](https://github.com/hackforla/website/issues/1537) at 2021-05-11 02:50 PM PDT -grhhhh,2021-05-11T22:35:46Z,- grhhhh opened pull request: [1540](https://github.com/hackforla/website/pull/1540) at 2021-05-11 03:35 PM PDT -grhhhh,2021-05-12T00:35:10Z,- grhhhh assigned to issue: [1531](https://github.com/hackforla/website/issues/1531) at 2021-05-11 05:35 PM PDT -grhhhh,2021-05-13T18:24:09Z,- grhhhh pull request merged: [1540](https://github.com/hackforla/website/pull/1540#event-4743264388) at 2021-05-13 11:24 AM PDT -grhhhh,2021-05-16T17:19:03Z,- grhhhh commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-841847345) at 2021-05-16 10:19 AM PDT -grhhhh,2021-05-20T23:07:10Z,- grhhhh commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-845539213) at 2021-05-20 04:07 PM PDT -grhhhh,2021-05-24T21:44:56Z,- grhhhh assigned to issue: [1617](https://github.com/hackforla/website/issues/1617) at 2021-05-24 02:44 PM PDT -grhhhh,2021-05-24T22:40:19Z,- grhhhh opened pull request: [1628](https://github.com/hackforla/website/pull/1628) at 2021-05-24 03:40 PM PDT -grhhhh,2021-05-25T22:31:39Z,- grhhhh assigned to issue: [1608](https://github.com/hackforla/website/issues/1608) at 2021-05-25 03:31 PM PDT -grhhhh,2021-05-25T23:09:03Z,- grhhhh opened pull request: [1636](https://github.com/hackforla/website/pull/1636) at 2021-05-25 04:09 PM PDT -grhhhh,2021-05-29T18:09:02Z,- grhhhh pull request merged: [1628](https://github.com/hackforla/website/pull/1628#event-4816302383) at 2021-05-29 11:09 AM PDT -grhhhh,2021-06-01T23:27:45Z,- grhhhh opened pull request: [1679](https://github.com/hackforla/website/pull/1679) at 2021-06-01 04:27 PM PDT -grhhhh,2021-06-02T19:10:30Z,- grhhhh pull request merged: [1636](https://github.com/hackforla/website/pull/1636#event-4833625247) at 2021-06-02 12:10 PM PDT -grhhhh,2021-06-04T03:24:47Z,- grhhhh assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -grhhhh,2021-06-05T21:24:05Z,- grhhhh commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855297728) at 2021-06-05 02:24 PM PDT -grhhhh,2021-06-05T21:47:56Z,- grhhhh commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-855300068) at 2021-06-05 02:47 PM PDT -grhhhh,2021-06-09T00:41:18Z,- grhhhh commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-857286064) at 2021-06-08 05:41 PM PDT -grhhhh,2021-06-10T21:50:35Z,- grhhhh commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-859101293) at 2021-06-10 02:50 PM PDT -grhhhh,2021-06-12T16:32:03Z,- grhhhh unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -grhhhh,2021-06-15T04:24:42Z,- grhhhh pull request merged: [1679](https://github.com/hackforla/website/pull/1679#event-4889109554) at 2021-06-14 09:24 PM PDT -grhhhh,2021-08-07T01:31:56Z,- grhhhh assigned to issue: [2064](https://github.com/hackforla/website/issues/2064) at 2021-08-06 06:31 PM PDT -grhhhh,2021-08-15T00:07:02Z,- grhhhh opened pull request: [2118](https://github.com/hackforla/website/pull/2118) at 2021-08-14 05:07 PM PDT -grhhhh,2021-08-15T00:10:34Z,- grhhhh commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-898974265) at 2021-08-14 05:10 PM PDT -grhhhh,2021-08-18T18:46:34Z,- grhhhh commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-901346847) at 2021-08-18 11:46 AM PDT -grhhhh,2021-08-22T16:51:43Z,- grhhhh pull request merged: [2118](https://github.com/hackforla/website/pull/2118#event-5191037816) at 2021-08-22 09:51 AM PDT -grhhhh,2021-08-22T20:11:39Z,- grhhhh commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-903324086) at 2021-08-22 01:11 PM PDT -GRISONRF,3544,SKILLS ISSUE -GRISONRF,2022-09-13T02:44:34Z,- GRISONRF opened issue: [3544](https://github.com/hackforla/website/issues/3544) at 2022-09-12 07:44 PM PDT -GRISONRF,2022-09-16T03:02:29Z,- GRISONRF assigned to issue: [3544](https://github.com/hackforla/website/issues/3544) at 2022-09-15 08:02 PM PDT -GRISONRF,2022-09-21T17:27:24Z,- GRISONRF assigned to issue: [2834](https://github.com/hackforla/website/issues/2834#issuecomment-1047139925) at 2022-09-21 10:27 AM PDT -GRISONRF,2022-09-21T17:58:21Z,- GRISONRF commented on issue: [2834](https://github.com/hackforla/website/issues/2834#issuecomment-1254042946) at 2022-09-21 10:58 AM PDT -GRISONRF,2022-09-21T18:24:10Z,- GRISONRF opened pull request: [3573](https://github.com/hackforla/website/pull/3573) at 2022-09-21 11:24 AM PDT -GRISONRF,2022-09-21T22:26:30Z,- GRISONRF pull request merged: [3573](https://github.com/hackforla/website/pull/3573#event-7434714127) at 2022-09-21 03:26 PM PDT -GRISONRF,2022-09-22T22:52:05Z,- GRISONRF assigned to issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1116814402) at 2022-09-22 03:52 PM PDT -GRISONRF,2022-09-22T22:53:48Z,- GRISONRF commented on issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1255637239) at 2022-09-22 03:53 PM PDT -GRISONRF,2022-09-22T23:38:05Z,- GRISONRF commented on issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1255660623) at 2022-09-22 04:38 PM PDT -GRISONRF,2022-09-23T14:22:29Z,- GRISONRF opened pull request: [3577](https://github.com/hackforla/website/pull/3577) at 2022-09-23 07:22 AM PDT -GRISONRF,2022-09-23T14:26:07Z,- GRISONRF commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1256284762) at 2022-09-23 07:26 AM PDT -GRISONRF,2022-09-23T14:32:28Z,- GRISONRF submitted pull request review: [3576](https://github.com/hackforla/website/pull/3576#pullrequestreview-1118575082) at 2022-09-23 07:32 AM PDT -GRISONRF,2022-09-23T22:50:01Z,- GRISONRF commented on pull request: [3578](https://github.com/hackforla/website/pull/3578#issuecomment-1256771664) at 2022-09-23 03:50 PM PDT -GRISONRF,2022-09-23T22:52:26Z,- GRISONRF submitted pull request review: [3578](https://github.com/hackforla/website/pull/3578#pullrequestreview-1119101070) at 2022-09-23 03:52 PM PDT -GRISONRF,2022-09-24T00:44:18Z,- GRISONRF pull request merged: [3577](https://github.com/hackforla/website/pull/3577#event-7451040893) at 2022-09-23 05:44 PM PDT -GRISONRF,2022-09-25T17:13:17Z,- GRISONRF commented on pull request: [3580](https://github.com/hackforla/website/pull/3580#issuecomment-1257237342) at 2022-09-25 10:13 AM PDT -GRISONRF,2022-09-25T18:31:07Z,- GRISONRF submitted pull request review: [3580](https://github.com/hackforla/website/pull/3580#pullrequestreview-1119438559) at 2022-09-25 11:31 AM PDT -GRISONRF,2022-09-26T15:34:27Z,- GRISONRF assigned to issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1254305375) at 2022-09-26 08:34 AM PDT -GRISONRF,2022-09-26T15:44:31Z,- GRISONRF commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1258239738) at 2022-09-26 08:44 AM PDT -GRISONRF,2022-09-26T16:32:06Z,- GRISONRF opened pull request: [3582](https://github.com/hackforla/website/pull/3582) at 2022-09-26 09:32 AM PDT -GRISONRF,2022-09-27T16:15:40Z,- GRISONRF closed issue as completed: [3544](https://github.com/hackforla/website/issues/3544#event-7470192289) at 2022-09-27 09:15 AM PDT -GRISONRF,2022-09-28T01:02:37Z,- GRISONRF pull request merged: [3582](https://github.com/hackforla/website/pull/3582#event-7473343483) at 2022-09-27 06:02 PM PDT -GRISONRF,2022-10-12T17:45:30Z,- GRISONRF commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276528886) at 2022-10-12 10:45 AM PDT -GRISONRF,2022-10-12T17:51:49Z,- GRISONRF submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1139504874) at 2022-10-12 10:51 AM PDT -GRK1998,5000,SKILLS ISSUE -GRK1998,2023-07-18T03:08:03Z,- GRK1998 opened issue: [5000](https://github.com/hackforla/website/issues/5000) at 2023-07-17 08:08 PM PDT -GRK1998,2023-07-18T03:59:57Z,- GRK1998 assigned to issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1639246093) at 2023-07-17 08:59 PM PDT -GRK1998,2023-08-16T23:39:48Z,- GRK1998 assigned to issue: [5185](https://github.com/hackforla/website/issues/5185#issuecomment-1675514515) at 2023-08-16 04:39 PM PDT -GRK1998,2023-08-17T00:09:21Z,- GRK1998 commented on issue: [5185](https://github.com/hackforla/website/issues/5185#issuecomment-1681420647) at 2023-08-16 05:09 PM PDT -GRK1998,2023-08-20T02:58:59Z,- GRK1998 opened pull request: [5262](https://github.com/hackforla/website/pull/5262) at 2023-08-19 07:58 PM PDT -GRK1998,2023-08-27T03:08:55Z,- GRK1998 pull request merged: [5262](https://github.com/hackforla/website/pull/5262#event-10201045904) at 2023-08-26 08:08 PM PDT -GRK1998,2023-08-29T15:57:45Z,- GRK1998 assigned to issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1696789972) at 2023-08-29 08:57 AM PDT -GRK1998,2023-08-29T21:59:55Z,- GRK1998 commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1698201996) at 2023-08-29 02:59 PM PDT -GRK1998,2023-09-02T02:37:00Z,- GRK1998 opened pull request: [5417](https://github.com/hackforla/website/pull/5417) at 2023-09-01 07:37 PM PDT -GRK1998,2023-09-05T15:45:26Z,- GRK1998 assigned to issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1684546506) at 2023-09-05 08:45 AM PDT -GRK1998,2023-09-05T15:47:27Z,- GRK1998 unassigned from issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1706872893) at 2023-09-05 08:47 AM PDT -GRK1998,2023-09-05T15:47:27Z,- GRK1998 unassigned from issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1706872893) at 2023-09-05 08:47 AM PDT -GRK1998,2023-09-16T16:48:17Z,- GRK1998 assigned to issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1720324283) at 2023-09-16 09:48 AM PDT -GRK1998,2023-09-17T01:12:45Z,- GRK1998 commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1722359457) at 2023-09-16 06:12 PM PDT -GRK1998,2023-09-23T23:30:59Z,- GRK1998 unassigned from issue: [5525](https://github.com/hackforla/website/issues/5525#event-10405063320) at 2023-09-23 04:30 PM PDT -GRK1998,2023-09-25T17:58:34Z,- GRK1998 assigned to issue: [5525](https://github.com/hackforla/website/issues/5525#event-10405063320) at 2023-09-25 10:58 AM PDT -GRK1998,2023-09-25T17:58:53Z,- GRK1998 unassigned from issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1734219960) at 2023-09-25 10:58 AM PDT -GRK1998,2023-09-27T16:27:52Z,- GRK1998 assigned to issue: [5599](https://github.com/hackforla/website/issues/5599) at 2023-09-27 09:27 AM PDT -GRK1998,2023-09-27T16:29:11Z,- GRK1998 commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1737723775) at 2023-09-27 09:29 AM PDT -GRK1998,2023-09-30T04:15:51Z,- GRK1998 unassigned from issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1737723775) at 2023-09-29 09:15 PM PDT -GRK1998,2023-09-30T15:38:57Z,- GRK1998 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1741792746) at 2023-09-30 08:38 AM PDT -GRK1998,2023-09-30T19:27:34Z,- GRK1998 unassigned from issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1700363797) at 2023-09-30 12:27 PM PDT -GRK1998,2023-09-30T19:29:45Z,- GRK1998 assigned to issue: [5602](https://github.com/hackforla/website/issues/5602) at 2023-09-30 12:29 PM PDT -GRK1998,2023-09-30T19:33:07Z,- GRK1998 commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741843558) at 2023-09-30 12:33 PM PDT -GRK1998,2023-09-30T19:56:44Z,- GRK1998 unassigned from issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741847713) at 2023-09-30 12:56 PM PDT -GRK1998,2023-09-30T19:59:55Z,- GRK1998 assigned to issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1741848223) at 2023-09-30 12:59 PM PDT -GRK1998,2023-10-01T01:44:32Z,- GRK1998 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1741919252) at 2023-09-30 06:44 PM PDT -GRK1998,2023-10-01T02:05:03Z,- GRK1998 pull request merged: [5417](https://github.com/hackforla/website/pull/5417#event-10518453781) at 2023-09-30 07:05 PM PDT -GRK1998,2023-10-04T01:12:18Z,- GRK1998 assigned to issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1743900894) at 2023-10-03 06:12 PM PDT -GRK1998,2023-10-04T01:14:10Z,- GRK1998 commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1745978623) at 2023-10-03 06:14 PM PDT -GRK1998,2023-10-09T14:40:10Z,- GRK1998 opened pull request: [5688](https://github.com/hackforla/website/pull/5688) at 2023-10-09 07:40 AM PDT -GRK1998,2023-10-12T01:08:26Z,- GRK1998 commented on pull request: [5688](https://github.com/hackforla/website/pull/5688#issuecomment-1758759794) at 2023-10-11 06:08 PM PDT -GRK1998,2023-10-14T23:04:37Z,- GRK1998 pull request merged: [5688](https://github.com/hackforla/website/pull/5688#event-10656086483) at 2023-10-14 04:04 PM PDT -GRK1998,2023-11-12T01:34:31Z,- GRK1998 assigned to issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1745395363) at 2023-11-11 05:34 PM PST -GRK1998,2023-11-12T01:38:59Z,- GRK1998 unassigned from issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1806969073) at 2023-11-11 05:38 PM PST -GRK1998,2023-11-12T01:39:16Z,- GRK1998 assigned to issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1790264857) at 2023-11-11 05:39 PM PST -GRK1998,2023-11-15T21:28:14Z,- GRK1998 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1810929161) at 2023-11-15 01:28 PM PST -GRK1998,2023-11-15T21:28:26Z,- GRK1998 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1810929161) at 2023-11-15 01:28 PM PST -GRK1998,2023-11-17T22:14:39Z,- GRK1998 opened pull request: [5920](https://github.com/hackforla/website/pull/5920) at 2023-11-17 02:14 PM PST -GRK1998,2023-11-21T17:17:15Z,- GRK1998 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1821338352) at 2023-11-21 09:17 AM PST -GRK1998,2023-11-25T19:23:34Z,- GRK1998 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826403482) at 2023-11-25 11:23 AM PST -GRK1998,2024-01-13T22:19:19Z,- GRK1998 assigned to issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1865412759) at 2024-01-13 02:19 PM PST -GRK1998,2024-01-17T01:01:51Z,- GRK1998 commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1894764561) at 2024-01-16 05:01 PM PST -GRK1998,2024-01-18T16:00:59Z,- GRK1998 unassigned from issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1825234935) at 2024-01-18 08:00 AM PST -GRK1998,2024-01-18T16:04:09Z,- GRK1998 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1898770385) at 2024-01-18 08:04 AM PST -GRK1998,2024-01-19T06:25:38Z,- GRK1998 pull request closed w/o merging: [5920](https://github.com/hackforla/website/pull/5920#event-11533471674) at 2024-01-18 10:25 PM PST -GRK1998,2024-01-19T07:10:42Z,- GRK1998 assigned to issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1541143884) at 2024-01-18 11:10 PM PST -GRK1998,2024-01-21T18:54:08Z,- GRK1998 commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1902727124) at 2024-01-21 10:54 AM PST -GRK1998,2024-01-26T01:56:42Z,- GRK1998 opened issue: [6167](https://github.com/hackforla/website/issues/6167) at 2024-01-25 05:56 PM PST -GRK1998,2024-01-26T01:59:40Z,- GRK1998 opened issue: [6168](https://github.com/hackforla/website/issues/6168) at 2024-01-25 05:59 PM PST -GRK1998,2024-01-26T02:01:38Z,- GRK1998 opened issue: [6169](https://github.com/hackforla/website/issues/6169) at 2024-01-25 06:01 PM PST -GRK1998,2024-01-26T02:04:11Z,- GRK1998 opened issue: [6170](https://github.com/hackforla/website/issues/6170) at 2024-01-25 06:04 PM PST -GRK1998,2024-01-26T02:05:46Z,- GRK1998 opened issue: [6171](https://github.com/hackforla/website/issues/6171) at 2024-01-25 06:05 PM PST -GRK1998,2024-01-26T02:07:27Z,- GRK1998 opened issue: [6172](https://github.com/hackforla/website/issues/6172) at 2024-01-25 06:07 PM PST -GRK1998,2024-01-26T02:08:46Z,- GRK1998 opened issue: [6173](https://github.com/hackforla/website/issues/6173) at 2024-01-25 06:08 PM PST -GRK1998,2024-01-26T02:09:57Z,- GRK1998 opened issue: [6174](https://github.com/hackforla/website/issues/6174) at 2024-01-25 06:09 PM PST -GRK1998,2024-01-26T02:11:18Z,- GRK1998 opened issue: [6175](https://github.com/hackforla/website/issues/6175) at 2024-01-25 06:11 PM PST -GRK1998,2024-01-26T02:14:24Z,- GRK1998 opened issue: [6176](https://github.com/hackforla/website/issues/6176) at 2024-01-25 06:14 PM PST -GRK1998,2024-01-26T02:16:04Z,- GRK1998 opened issue: [6177](https://github.com/hackforla/website/issues/6177) at 2024-01-25 06:16 PM PST -GRK1998,2024-01-26T02:17:13Z,- GRK1998 opened issue: [6178](https://github.com/hackforla/website/issues/6178) at 2024-01-25 06:17 PM PST -GRK1998,2024-01-26T02:18:28Z,- GRK1998 opened issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-01-25 06:18 PM PST -GRK1998,2024-01-26T02:19:28Z,- GRK1998 opened issue: [6180](https://github.com/hackforla/website/issues/6180) at 2024-01-25 06:19 PM PST -GRK1998,2024-01-26T02:20:30Z,- GRK1998 opened issue: [6181](https://github.com/hackforla/website/issues/6181) at 2024-01-25 06:20 PM PST -GRK1998,2024-01-26T02:21:47Z,- GRK1998 opened issue: [6182](https://github.com/hackforla/website/issues/6182) at 2024-01-25 06:21 PM PST -GRK1998,2024-03-03T03:36:21Z,- GRK1998 unassigned from issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1974983198) at 2024-03-02 07:36 PM PST -GRK1998,2024-03-03T19:25:28Z,- GRK1998 assigned to issue: [5995](https://github.com/hackforla/website/issues/5995) at 2024-03-03 11:25 AM PST -GRK1998,2024-03-03T21:11:43Z,- GRK1998 commented on issue: [5995](https://github.com/hackforla/website/issues/5995#issuecomment-1975327342) at 2024-03-03 01:11 PM PST -GRK1998,2024-03-07T03:13:01Z,- GRK1998 commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1982266105) at 2024-03-06 07:13 PM PST -GRK1998,2024-04-16T00:12:51Z,- GRK1998 assigned to issue: [6495](https://github.com/hackforla/website/issues/6495) at 2024-04-15 05:12 PM PDT -GRK1998,2024-04-16T00:13:56Z,- GRK1998 commented on issue: [6495](https://github.com/hackforla/website/issues/6495#issuecomment-2058017769) at 2024-04-15 05:13 PM PDT -GRK1998,2024-04-23T14:53:14Z,- GRK1998 commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2072567852) at 2024-04-23 07:53 AM PDT -GRK1998,2024-05-11T00:20:34Z,- GRK1998 assigned to issue: [6757](https://github.com/hackforla/website/issues/6757) at 2024-05-10 05:20 PM PDT -GRK1998,2024-05-11T00:21:36Z,- GRK1998 commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2105404178) at 2024-05-10 05:21 PM PDT -GRK1998,2024-05-11T00:25:01Z,- GRK1998 commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2105405746) at 2024-05-10 05:25 PM PDT -GRK1998,2024-06-09T01:29:06Z,- GRK1998 commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2156259022) at 2024-06-08 06:29 PM PDT -gsh3729,6949,SKILLS ISSUE -gsh3729,2024-06-04T02:56:43Z,- gsh3729 opened issue: [6949](https://github.com/hackforla/website/issues/6949) at 2024-06-03 07:56 PM PDT -gsh3729,2024-06-04T02:56:58Z,- gsh3729 assigned to issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2146474989) at 2024-06-03 07:56 PM PDT -gsh3729,2024-06-18T23:28:21Z,- gsh3729 assigned to issue: [6933](https://github.com/hackforla/website/issues/6933) at 2024-06-18 04:28 PM PDT -gsh3729,2024-06-25T00:01:00Z,- gsh3729 commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2187655479) at 2024-06-24 05:01 PM PDT -gsh3729,2024-06-25T00:01:01Z,- gsh3729 closed issue as completed: [6933](https://github.com/hackforla/website/issues/6933#event-13273136134) at 2024-06-24 05:01 PM PDT -gsh3729,2024-06-25T00:01:17Z,- gsh3729 reopened issue: [6933](https://github.com/hackforla/website/issues/6933#event-13273136134) at 2024-06-24 05:01 PM PDT -gsh3729,2024-07-02T05:30:20Z,- gsh3729 unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#event-13273136134) at 2024-07-01 10:30 PM PDT -gsh3729,2024-08-09T12:11:33Z,- gsh3729 unassigned from issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2277285662) at 2024-08-09 05:11 AM PDT -gsh3729,2024-08-13T00:42:55Z,- gsh3729 assigned to issue: [6949](https://github.com/hackforla/website/issues/6949#event-13856201691) at 2024-08-12 05:42 PM PDT -gstemmann,3604,SKILLS ISSUE -gstemmann,3614,SKILLS ISSUE -gstemmann,2022-10-11T02:43:39Z,- gstemmann opened issue: [3604](https://github.com/hackforla/website/issues/3604) at 2022-10-10 07:43 PM PDT -gstemmann,2022-10-12T03:00:11Z,- gstemmann assigned to issue: [3614](https://github.com/hackforla/website/issues/3614) at 2022-10-11 08:00 PM PDT -gstemmann,2022-10-12T03:00:14Z,- gstemmann unassigned from issue: [3614](https://github.com/hackforla/website/issues/3614) at 2022-10-11 08:00 PM PDT -gstemmann,2022-10-12T03:09:38Z,- gstemmann assigned to issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1275519629) at 2022-10-11 08:09 PM PDT -gstemmann,2022-10-12T03:15:56Z,- gstemmann assigned to issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1048311439) at 2022-10-11 08:15 PM PDT -gstemmann,2022-10-12T03:19:27Z,- gstemmann commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1275529375) at 2022-10-11 08:19 PM PDT -gstemmann,2022-10-13T17:53:51Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277974513) at 2022-10-13 10:53 AM PDT -gstemmann,2022-10-13T17:54:24Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277975069) at 2022-10-13 10:54 AM PDT -gstemmann,2022-10-13T18:44:34Z,- gstemmann unassigned from issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277975069) at 2022-10-13 11:44 AM PDT -gstemmann,2022-10-13T18:47:58Z,- gstemmann assigned to issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1048148664) at 2022-10-13 11:47 AM PDT -gstemmann,2022-10-13T18:49:38Z,- gstemmann commented on issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278039444) at 2022-10-13 11:49 AM PDT -gstemmann,2022-10-13T19:19:20Z,- gstemmann unassigned from issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278039444) at 2022-10-13 12:19 PM PDT -gstemmann,2022-10-13T21:41:12Z,- gstemmann opened pull request: [3617](https://github.com/hackforla/website/pull/3617) at 2022-10-13 02:41 PM PDT -gstemmann,2022-10-13T21:57:46Z,- gstemmann assigned to issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277975069) at 2022-10-13 02:57 PM PDT -gstemmann,2022-10-13T22:04:14Z,- gstemmann assigned to issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278039444) at 2022-10-13 03:04 PM PDT -gstemmann,2022-10-13T22:05:15Z,- gstemmann unassigned from issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1275529375) at 2022-10-13 03:05 PM PDT -gstemmann,2022-10-13T22:33:43Z,- gstemmann commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1278248103) at 2022-10-13 03:33 PM PDT -gstemmann,2022-10-13T22:49:11Z,- gstemmann submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1141596618) at 2022-10-13 03:49 PM PDT -gstemmann,2022-10-13T23:22:55Z,- gstemmann commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278277820) at 2022-10-13 04:22 PM PDT -gstemmann,2022-10-14T02:27:24Z,- gstemmann commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278387877) at 2022-10-13 07:27 PM PDT -gstemmann,2022-10-14T02:34:50Z,- gstemmann submitted pull request review: [3618](https://github.com/hackforla/website/pull/3618#pullrequestreview-1141734836) at 2022-10-13 07:34 PM PDT -gstemmann,2022-10-14T03:16:32Z,- gstemmann pull request merged: [3617](https://github.com/hackforla/website/pull/3617#event-7586604529) at 2022-10-13 08:16 PM PDT -gstemmann,2022-10-14T19:16:29Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1279369507) at 2022-10-14 12:16 PM PDT -gstemmann,2022-10-14T19:34:18Z,- gstemmann assigned to issue: [3397](https://github.com/hackforla/website/issues/3397) at 2022-10-14 12:34 PM PDT -gstemmann,2022-10-14T19:35:13Z,- gstemmann commented on issue: [3397](https://github.com/hackforla/website/issues/3397#issuecomment-1279384230) at 2022-10-14 12:35 PM PDT -gstemmann,2022-10-14T21:10:27Z,- gstemmann opened pull request: [3623](https://github.com/hackforla/website/pull/3623) at 2022-10-14 02:10 PM PDT -gstemmann,2022-10-15T21:37:48Z,- gstemmann commented on pull request: [3624](https://github.com/hackforla/website/pull/3624#issuecomment-1279836511) at 2022-10-15 02:37 PM PDT -gstemmann,2022-10-15T21:49:32Z,- gstemmann submitted pull request review: [3624](https://github.com/hackforla/website/pull/3624#pullrequestreview-1143230489) at 2022-10-15 02:49 PM PDT -gstemmann,2022-10-16T17:20:56Z,- gstemmann commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1280013703) at 2022-10-16 10:20 AM PDT -gstemmann,2022-10-16T17:34:22Z,- gstemmann submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1143318530) at 2022-10-16 10:34 AM PDT -gstemmann,2022-10-17T20:27:37Z,- gstemmann pull request merged: [3623](https://github.com/hackforla/website/pull/3623#event-7605630950) at 2022-10-17 01:27 PM PDT -gstemmann,2022-10-19T00:55:28Z,- gstemmann commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1283201475) at 2022-10-18 05:55 PM PDT -gstemmann,2022-10-19T01:08:11Z,- gstemmann submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1146704617) at 2022-10-18 06:08 PM PDT -gstemmann,2022-10-19T03:21:13Z,- gstemmann assigned to issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1003693750) at 2022-10-18 08:21 PM PDT -gstemmann,2022-10-19T03:23:09Z,- gstemmann commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1283363218) at 2022-10-18 08:23 PM PDT -gstemmann,2022-10-19T03:32:08Z,- gstemmann unassigned from issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1283363218) at 2022-10-18 08:32 PM PDT -gstemmann,2022-10-19T03:40:31Z,- gstemmann assigned to issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1250483942) at 2022-10-18 08:40 PM PDT -gstemmann,2022-10-19T03:41:25Z,- gstemmann commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1283377088) at 2022-10-18 08:41 PM PDT -gstemmann,2022-10-21T04:47:24Z,- gstemmann commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1286455083) at 2022-10-20 09:47 PM PDT -gstemmann,2022-10-23T18:37:55Z,- gstemmann commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288172670) at 2022-10-23 11:37 AM PDT -gstemmann,2022-10-23T19:13:12Z,- gstemmann commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1288178979) at 2022-10-23 12:13 PM PDT -gstemmann,2022-10-23T19:21:56Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1288180688) at 2022-10-23 12:21 PM PDT -gstemmann,2022-10-23T21:12:08Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1152374654) at 2022-10-23 02:12 PM PDT -gstemmann,2022-10-23T23:58:08Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1152400279) at 2022-10-23 04:58 PM PDT -gstemmann,2022-10-24T02:56:59Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1152490311) at 2022-10-23 07:56 PM PDT -gstemmann,2022-10-24T21:40:27Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1153839962) at 2022-10-24 02:40 PM PDT -gstemmann,2022-10-28T00:25:20Z,- gstemmann commented on pull request: [3668](https://github.com/hackforla/website/pull/3668#issuecomment-1294261173) at 2022-10-27 05:25 PM PDT -gstemmann,2022-10-28T00:27:02Z,- gstemmann submitted pull request review: [3668](https://github.com/hackforla/website/pull/3668#pullrequestreview-1159178165) at 2022-10-27 05:27 PM PDT -gstemmann,2022-10-28T00:41:55Z,- gstemmann commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1294271220) at 2022-10-27 05:41 PM PDT -gstemmann,2022-10-28T00:46:41Z,- gstemmann submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1159194600) at 2022-10-27 05:46 PM PDT -gstemmann,2022-10-30T16:47:43Z,- gstemmann assigned to issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1288164384) at 2022-10-30 09:47 AM PDT -gstemmann,2022-10-30T16:49:15Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1296300207) at 2022-10-30 09:49 AM PDT -gstemmann,2022-10-30T17:48:11Z,- gstemmann commented on pull request: [3676](https://github.com/hackforla/website/pull/3676#issuecomment-1296312950) at 2022-10-30 10:48 AM PDT -gstemmann,2022-10-30T17:50:13Z,- gstemmann submitted pull request review: [3676](https://github.com/hackforla/website/pull/3676#pullrequestreview-1161170721) at 2022-10-30 10:50 AM PDT -gstemmann,2022-10-30T17:50:45Z,- gstemmann commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1296313449) at 2022-10-30 10:50 AM PDT -gstemmann,2022-10-30T17:54:12Z,- gstemmann submitted pull request review: [3675](https://github.com/hackforla/website/pull/3675#pullrequestreview-1161171187) at 2022-10-30 10:54 AM PDT -gstemmann,2022-10-31T16:11:07Z,- gstemmann submitted pull request review: [3677](https://github.com/hackforla/website/pull/3677#pullrequestreview-1162152986) at 2022-10-31 09:11 AM PDT -gstemmann,2022-10-31T16:52:08Z,- gstemmann commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1297382197) at 2022-10-31 09:52 AM PDT -gstemmann,2022-10-31T20:36:29Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1162525535) at 2022-10-31 01:36 PM PDT -gstemmann,2022-11-02T16:48:25Z,- gstemmann commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1300884984) at 2022-11-02 09:48 AM PDT -gstemmann,2022-11-02T20:06:06Z,- gstemmann commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301168124) at 2022-11-02 01:06 PM PDT -gstemmann,2022-11-02T21:37:16Z,- gstemmann commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301323757) at 2022-11-02 02:37 PM PDT -gstemmann,2022-11-02T21:37:43Z,- gstemmann submitted pull request review: [3689](https://github.com/hackforla/website/pull/3689#pullrequestreview-1166042745) at 2022-11-02 02:37 PM PDT -gstemmann,2022-11-06T17:37:24Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1304853459) at 2022-11-06 09:37 AM PST -gstemmann,2022-11-06T23:24:48Z,- gstemmann submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1169671527) at 2022-11-06 03:24 PM PST -gstemmann,2022-11-13T17:57:32Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1312786347) at 2022-11-13 09:57 AM PST -gstemmann,2022-11-13T18:45:29Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7798857769) at 2022-11-13 10:45 AM PST -gstemmann,2022-11-13T18:48:07Z,- gstemmann closed issue as completed: [3614](https://github.com/hackforla/website/issues/3614#event-7798861057) at 2022-11-13 10:48 AM PST -gstemmann,2022-11-13T18:57:43Z,- gstemmann reopened issue: [3604](https://github.com/hackforla/website/issues/3604#event-7798857769) at 2022-11-13 10:57 AM PST -gstemmann,2022-11-13T19:35:45Z,- gstemmann commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1312804417) at 2022-11-13 11:35 AM PST -gstemmann,2022-11-13T19:35:45Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7798922045) at 2022-11-13 11:35 AM PST -gstemmann,2022-11-14T01:38:11Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1312929189) at 2022-11-13 05:38 PM PST -gstemmann,2022-11-25T21:54:24Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1327903391) at 2022-11-25 01:54 PM PST -gstemmann,2022-11-27T01:08:16Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1328145114) at 2022-11-26 05:08 PM PST -gstemmann,2022-11-27T09:49:50Z,- gstemmann assigned to issue: [3604](https://github.com/hackforla/website/issues/3604#event-7798922045) at 2022-11-27 01:49 AM PST -gstemmann,2022-11-27T17:10:48Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7897893973) at 2022-11-27 09:10 AM PST -gstemmann,2022-11-27T20:24:34Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7898118176) at 2022-11-27 12:24 PM PST -gstemmann,2022-11-27T23:53:15Z,- gstemmann commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328372991) at 2022-11-27 03:53 PM PST -gstemmann,2022-12-03T09:46:46Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1336124569) at 2022-12-03 01:46 AM PST -gstemmann,2023-01-08T18:33:01Z,- gstemmann commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1374898813) at 2023-01-08 10:33 AM PST -gstemmann,2023-01-09T04:14:26Z,- gstemmann commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1375086857) at 2023-01-08 08:14 PM PST -gurjot03,2023-10-30T10:20:50Z,- gurjot03 opened pull request: [5795](https://github.com/hackforla/website/pull/5795) at 2023-10-30 03:20 AM PDT -gurjot03,2023-10-30T20:42:16Z,- gurjot03 pull request closed w/o merging: [5795](https://github.com/hackforla/website/pull/5795#event-10812851649) at 2023-10-30 01:42 PM PDT -H1Angela,2019-11-18T18:24:37Z,- H1Angela assigned to issue: [499](https://github.com/hackforla/website/issues/499) at 2019-11-18 10:24 AM PST -H1Angela,2020-01-24T02:12:43Z,- H1Angela commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-577963240) at 2020-01-23 06:12 PM PST -H1Angela,2020-01-24T05:54:23Z,- H1Angela unassigned from issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-01-23 09:54 PM PST -H1Angela,2020-03-10T02:20:20Z,- H1Angela commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-596867262) at 2020-03-09 07:20 PM PDT -h3nry-m,3612,SKILLS ISSUE -h3nry-m,2022-10-11T02:55:45Z,- h3nry-m opened issue: [3612](https://github.com/hackforla/website/issues/3612) at 2022-10-10 07:55 PM PDT -h3nry-m,2022-10-12T03:02:25Z,- h3nry-m assigned to issue: [3612](https://github.com/hackforla/website/issues/3612) at 2022-10-11 08:02 PM PDT -h3nry-m,2022-10-12T03:09:29Z,- h3nry-m assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1232437217) at 2022-10-11 08:09 PM PDT -h3nry-m,2022-10-18T00:48:24Z,- h3nry-m commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1281671883) at 2022-10-17 05:48 PM PDT -h3nry-m,2022-10-19T02:31:20Z,- h3nry-m unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1281671883) at 2022-10-18 07:31 PM PDT -h3nry-m,2022-10-19T15:50:37Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1284229625) at 2022-10-19 08:50 AM PDT -h3nry-m,2022-10-25T20:35:06Z,- h3nry-m assigned to issue: [2857](https://github.com/hackforla/website/issues/2857#issuecomment-1048434128) at 2022-10-25 01:35 PM PDT -h3nry-m,2022-10-25T21:48:10Z,- h3nry-m opened pull request: [3659](https://github.com/hackforla/website/pull/3659) at 2022-10-25 02:48 PM PDT -h3nry-m,2022-10-25T21:54:54Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1291184821) at 2022-10-25 02:54 PM PDT -h3nry-m,2022-10-25T21:55:45Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1291185443) at 2022-10-25 02:55 PM PDT -h3nry-m,2022-10-26T00:13:00Z,- h3nry-m pull request merged: [3659](https://github.com/hackforla/website/pull/3659#event-7668021141) at 2022-10-25 05:13 PM PDT -h3nry-m,2022-11-16T22:13:25Z,- h3nry-m assigned to issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1145848740) at 2022-11-16 02:13 PM PST -h3nry-m,2022-11-28T06:28:37Z,- h3nry-m opened pull request: [3751](https://github.com/hackforla/website/pull/3751) at 2022-11-27 10:28 PM PST -h3nry-m,2022-11-28T06:36:37Z,- h3nry-m commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1328610070) at 2022-11-27 10:36 PM PST -h3nry-m,2022-11-29T02:38:27Z,- h3nry-m pull request merged: [3751](https://github.com/hackforla/website/pull/3751#event-7908409081) at 2022-11-28 06:38 PM PST -h3nry-m,2022-11-29T07:08:43Z,- h3nry-m assigned to issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1327102635) at 2022-11-28 11:08 PM PST -h3nry-m,2022-11-30T01:14:36Z,- h3nry-m opened pull request: [3754](https://github.com/hackforla/website/pull/3754) at 2022-11-29 05:14 PM PST -h3nry-m,2022-11-30T01:23:34Z,- h3nry-m commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1331526866) at 2022-11-29 05:23 PM PST -h3nry-m,2022-12-06T06:18:35Z,- h3nry-m commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1338824012) at 2022-12-05 10:18 PM PST -h3nry-m,2022-12-20T01:07:21Z,- h3nry-m commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1358698437) at 2022-12-19 05:07 PM PST -h3nry-m,2022-12-20T01:07:53Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1358698845) at 2022-12-19 05:07 PM PST -h3nry-m,2022-12-20T01:21:28Z,- h3nry-m pull request closed w/o merging: [3754](https://github.com/hackforla/website/pull/3754#event-8074143133) at 2022-12-19 05:21 PM PST -h3nry-m,2022-12-20T01:23:57Z,- h3nry-m unassigned from issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1331526866) at 2022-12-19 05:23 PM PST -h3nry-m,2023-01-06T20:44:16Z,- h3nry-m closed issue as not planned: [3612](https://github.com/hackforla/website/issues/3612#event-8172275051) at 2023-01-06 12:44 PM PST -ha-bach,5086,SKILLS ISSUE -ha-bach,2023-07-26T03:21:51Z,- ha-bach opened issue: [5086](https://github.com/hackforla/website/issues/5086) at 2023-07-25 08:21 PM PDT -ha-bach,2023-07-26T03:21:52Z,- ha-bach assigned to issue: [5086](https://github.com/hackforla/website/issues/5086) at 2023-07-25 08:21 PM PDT -ha-bach,2023-07-29T09:20:23Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1656675628) at 2023-07-29 02:20 AM PDT -ha-bach,2023-07-30T06:15:07Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1657054972) at 2023-07-29 11:15 PM PDT -ha-bach,2023-08-06T15:49:46Z,- ha-bach assigned to issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1641392054) at 2023-08-06 08:49 AM PDT -ha-bach,2023-08-06T15:53:35Z,- ha-bach commented on issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1666903195) at 2023-08-06 08:53 AM PDT -ha-bach,2023-08-06T16:15:52Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1666909195) at 2023-08-06 09:15 AM PDT -ha-bach,2023-08-06T16:20:25Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1666910372) at 2023-08-06 09:20 AM PDT -ha-bach,2023-08-06T16:45:06Z,- ha-bach closed issue as completed: [5086](https://github.com/hackforla/website/issues/5086#event-10017613270) at 2023-08-06 09:45 AM PDT -ha-bach,2023-08-06T16:56:41Z,- ha-bach assigned to issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666913046) at 2023-08-06 09:56 AM PDT -ha-bach,2023-08-06T16:57:17Z,- ha-bach commented on issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666920020) at 2023-08-06 09:57 AM PDT -ha-bach,2023-08-06T17:55:59Z,- ha-bach opened pull request: [5152](https://github.com/hackforla/website/pull/5152) at 2023-08-06 10:55 AM PDT -ha-bach,2023-08-09T03:50:43Z,- ha-bach pull request merged: [5152](https://github.com/hackforla/website/pull/5152#event-10042037090) at 2023-08-08 08:50 PM PDT -ha-bach,2023-08-12T02:22:19Z,- ha-bach reopened issue: [5086](https://github.com/hackforla/website/issues/5086#event-10017613270) at 2023-08-11 07:22 PM PDT -ha-bach,2023-08-12T02:22:21Z,- ha-bach closed issue as completed: [5086](https://github.com/hackforla/website/issues/5086#event-10075194330) at 2023-08-11 07:22 PM PDT -ha-bach,2023-08-12T02:24:16Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1675627875) at 2023-08-11 07:24 PM PDT -ha-bach,2023-08-23T02:40:42Z,- ha-bach commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1689175018) at 2023-08-22 07:40 PM PDT -ha-bach,2023-08-26T19:52:00Z,- ha-bach submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1597041035) at 2023-08-26 12:52 PM PDT -ha-bach,2023-09-10T17:21:32Z,- ha-bach commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712886843) at 2023-09-10 10:21 AM PDT -ha-bach,2023-09-10T18:27:58Z,- ha-bach commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712905803) at 2023-09-10 11:27 AM PDT -ha-bach,2023-09-10T21:43:03Z,- ha-bach commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712946668) at 2023-09-10 02:43 PM PDT -ha-bach,2023-09-10T21:43:13Z,- ha-bach submitted pull request review: [5469](https://github.com/hackforla/website/pull/5469#pullrequestreview-1618923094) at 2023-09-10 02:43 PM PDT -ha-bach,2023-09-24T17:19:34Z,- ha-bach commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1732623982) at 2023-09-24 10:19 AM PDT -ha-bach,2023-09-24T17:20:01Z,- ha-bach commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1732624077) at 2023-09-24 10:20 AM PDT -ha-bach,2023-09-28T03:39:35Z,- ha-bach submitted pull request review: [5576](https://github.com/hackforla/website/pull/5576#pullrequestreview-1647838081) at 2023-09-27 08:39 PM PDT -ha-bach,2024-05-22T02:36:14Z,- ha-bach reopened issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1675627875) at 2024-05-21 07:36 PM PDT -ha-bach,2024-05-27T22:03:45Z,- ha-bach assigned to issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2119379952) at 2024-05-27 03:03 PM PDT -ha-bach,2024-05-27T22:10:35Z,- ha-bach commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2134094681) at 2024-05-27 03:10 PM PDT -ha-bach,2024-05-27T22:18:12Z,- ha-bach closed issue as completed: [5086](https://github.com/hackforla/website/issues/5086#event-12949907673) at 2024-05-27 03:18 PM PDT -ha-bach,2024-05-27T22:21:09Z,- ha-bach commented on issue: [6731](https://github.com/hackforla/website/issues/6731#issuecomment-2134101872) at 2024-05-27 03:21 PM PDT -ha-bach,2024-05-27T22:48:39Z,- ha-bach submitted pull request review: [6900](https://github.com/hackforla/website/pull/6900#pullrequestreview-2081512690) at 2024-05-27 03:48 PM PDT -ha-bach,2024-05-27T23:50:19Z,- ha-bach opened issue: [6902](https://github.com/hackforla/website/issues/6902) at 2024-05-27 04:50 PM PDT -ha-bach,2024-05-30T23:59:05Z,- ha-bach commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2141019922) at 2024-05-30 04:59 PM PDT -ha-bach,2024-05-31T00:25:42Z,- ha-bach submitted pull request review: [6900](https://github.com/hackforla/website/pull/6900#pullrequestreview-2089553068) at 2024-05-30 05:25 PM PDT -ha-bach,2024-05-31T17:42:15Z,- ha-bach commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2142712068) at 2024-05-31 10:42 AM PDT -ha-bach,2024-06-01T19:30:19Z,- ha-bach submitted pull request review: [6915](https://github.com/hackforla/website/pull/6915#pullrequestreview-2092164494) at 2024-06-01 12:30 PM PDT -ha-bach,2024-06-01T19:52:43Z,- ha-bach assigned to issue: [6754](https://github.com/hackforla/website/issues/6754) at 2024-06-01 12:52 PM PDT -ha-bach,2024-06-01T19:53:34Z,- ha-bach commented on issue: [6754](https://github.com/hackforla/website/issues/6754#issuecomment-2143565456) at 2024-06-01 12:53 PM PDT -ha-bach,2024-06-02T16:50:59Z,- ha-bach assigned to issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2134148437) at 2024-06-02 09:50 AM PDT -ha-bach,2024-06-02T17:19:11Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2143950496) at 2024-06-02 10:19 AM PDT -ha-bach,2024-06-06T17:07:27Z,- ha-bach assigned to issue: [6909](https://github.com/hackforla/website/issues/6909#issuecomment-2136837472) at 2024-06-06 10:07 AM PDT -ha-bach,2024-06-06T17:09:41Z,- ha-bach commented on issue: [6909](https://github.com/hackforla/website/issues/6909#issuecomment-2153017347) at 2024-06-06 10:09 AM PDT -ha-bach,2024-06-08T00:05:10Z,- ha-bach opened pull request: [6973](https://github.com/hackforla/website/pull/6973) at 2024-06-07 05:05 PM PDT -ha-bach,2024-06-13T20:44:20Z,- ha-bach pull request merged: [6973](https://github.com/hackforla/website/pull/6973#event-13152590421) at 2024-06-13 01:44 PM PDT -ha-bach,2024-06-19T14:13:14Z,- ha-bach commented on pull request: [7016](https://github.com/hackforla/website/pull/7016#issuecomment-2178824831) at 2024-06-19 07:13 AM PDT -ha-bach,2024-06-19T14:13:34Z,- ha-bach commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2178825518) at 2024-06-19 07:13 AM PDT -ha-bach,2024-06-19T18:43:35Z,- ha-bach submitted pull request review: [6976](https://github.com/hackforla/website/pull/6976#pullrequestreview-2128892458) at 2024-06-19 11:43 AM PDT -ha-bach,2024-06-19T18:49:47Z,- ha-bach submitted pull request review: [7016](https://github.com/hackforla/website/pull/7016#pullrequestreview-2128898580) at 2024-06-19 11:49 AM PDT -ha-bach,2024-06-19T19:24:33Z,- ha-bach assigned to issue: [6931](https://github.com/hackforla/website/issues/6931) at 2024-06-19 12:24 PM PDT -ha-bach,2024-06-19T19:26:01Z,- ha-bach commented on issue: [6931](https://github.com/hackforla/website/issues/6931#issuecomment-2179352048) at 2024-06-19 12:26 PM PDT -ha-bach,2024-06-19T20:09:35Z,- ha-bach opened pull request: [7037](https://github.com/hackforla/website/pull/7037) at 2024-06-19 01:09 PM PDT -ha-bach,2024-06-20T20:07:59Z,- ha-bach pull request merged: [7037](https://github.com/hackforla/website/pull/7037#event-13233990665) at 2024-06-20 01:07 PM PDT -ha-bach,2024-06-28T18:06:16Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2197411730) at 2024-06-28 11:06 AM PDT -ha-bach,2024-06-28T18:07:42Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2197413250) at 2024-06-28 11:07 AM PDT -ha-bach,2024-06-28T18:07:42Z,- ha-bach closed issue as completed: [6902](https://github.com/hackforla/website/issues/6902#event-13334835199) at 2024-06-28 11:07 AM PDT -ha-bach,2024-06-28T18:11:44Z,- ha-bach commented on pull request: [7077](https://github.com/hackforla/website/pull/7077#issuecomment-2197417561) at 2024-06-28 11:11 AM PDT -ha-bach,2024-07-01T17:02:05Z,- ha-bach submitted pull request review: [7077](https://github.com/hackforla/website/pull/7077#pullrequestreview-2151849549) at 2024-07-01 10:02 AM PDT -ha-bach,2024-07-07T17:02:27Z,- ha-bach commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2212509858) at 2024-07-07 10:02 AM PDT -ha-bach,2024-07-07T18:02:15Z,- ha-bach submitted pull request review: [7088](https://github.com/hackforla/website/pull/7088#pullrequestreview-2161901002) at 2024-07-07 11:02 AM PDT -ha-bach,2024-07-07T18:12:53Z,- ha-bach opened issue: [7089](https://github.com/hackforla/website/issues/7089) at 2024-07-07 11:12 AM PDT -ha-bach,2024-07-07T18:21:42Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2212530298) at 2024-07-07 11:21 AM PDT -ha-bach,2024-07-07T18:30:02Z,- ha-bach opened issue: [7090](https://github.com/hackforla/website/issues/7090) at 2024-07-07 11:30 AM PDT -ha-bach,2024-07-13T22:22:03Z,- ha-bach submitted pull request review: [7088](https://github.com/hackforla/website/pull/7088#pullrequestreview-2176553442) at 2024-07-13 03:22 PM PDT -ha-bach,2024-07-28T20:04:47Z,- ha-bach commented on pull request: [7141](https://github.com/hackforla/website/pull/7141#issuecomment-2254629445) at 2024-07-28 01:04 PM PDT -ha-bach,2024-07-28T20:15:02Z,- ha-bach submitted pull request review: [7141](https://github.com/hackforla/website/pull/7141#pullrequestreview-2203567081) at 2024-07-28 01:15 PM PDT -ha-bach,2024-08-10T18:58:02Z,- ha-bach commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2282246075) at 2024-08-10 11:58 AM PDT -ha-bach,2024-08-10T19:15:20Z,- ha-bach submitted pull request review: [6915](https://github.com/hackforla/website/pull/6915#pullrequestreview-2231631299) at 2024-08-10 12:15 PM PDT -HackforLABot,2021-05-26T14:41:16Z,- HackforLABot opened issue: [1642](https://github.com/hackforla/website/issues/1642) at 2021-05-26 07:41 AM PDT -HackforLABot,2021-05-26T14:44:58Z,- HackforLABot opened issue: [1643](https://github.com/hackforla/website/issues/1643) at 2021-05-26 07:44 AM PDT -HackforLABot,2021-05-26T15:20:47Z,- HackforLABot opened issue: [1644](https://github.com/hackforla/website/issues/1644) at 2021-05-26 08:20 AM PDT -HackforLABot,2021-05-26T15:35:19Z,- HackforLABot opened issue: [1646](https://github.com/hackforla/website/issues/1646) at 2021-05-26 08:35 AM PDT -HackforLABot,2021-05-26T15:36:59Z,- HackforLABot opened issue: [1647](https://github.com/hackforla/website/issues/1647) at 2021-05-26 08:36 AM PDT -HackforLABot,2021-05-26T15:38:40Z,- HackforLABot opened issue: [1648](https://github.com/hackforla/website/issues/1648) at 2021-05-26 08:38 AM PDT -HackforLABot,2021-05-26T15:39:14Z,- HackforLABot opened issue: [1649](https://github.com/hackforla/website/issues/1649) at 2021-05-26 08:39 AM PDT -HackforLABot,2021-05-26T15:59:06Z,- HackforLABot opened issue: [1650](https://github.com/hackforla/website/issues/1650) at 2021-05-26 08:59 AM PDT -HackforLABot,2021-05-26T16:09:10Z,- HackforLABot opened issue: [1651](https://github.com/hackforla/website/issues/1651) at 2021-05-26 09:09 AM PDT -HackforLABot,2021-05-26T16:12:45Z,- HackforLABot opened issue: [1652](https://github.com/hackforla/website/issues/1652) at 2021-05-26 09:12 AM PDT -HackforLABot,2021-05-26T16:14:59Z,- HackforLABot opened issue: [1653](https://github.com/hackforla/website/issues/1653) at 2021-05-26 09:14 AM PDT -HackforLABot,2021-05-26T16:15:47Z,- HackforLABot opened issue: [1654](https://github.com/hackforla/website/issues/1654) at 2021-05-26 09:15 AM PDT -HackforLABot,2021-05-26T16:16:11Z,- HackforLABot opened issue: [1655](https://github.com/hackforla/website/issues/1655) at 2021-05-26 09:16 AM PDT -HackforLABot,2021-05-26T16:16:36Z,- HackforLABot opened issue: [1656](https://github.com/hackforla/website/issues/1656) at 2021-05-26 09:16 AM PDT -HackforLABot,2021-05-26T16:20:29Z,- HackforLABot opened issue: [1657](https://github.com/hackforla/website/issues/1657) at 2021-05-26 09:20 AM PDT -HackforLABot,2021-05-26T16:21:04Z,- HackforLABot opened issue: [1658](https://github.com/hackforla/website/issues/1658) at 2021-05-26 09:21 AM PDT -HackforLABot,2021-05-26T16:22:39Z,- HackforLABot opened issue: [1659](https://github.com/hackforla/website/issues/1659) at 2021-05-26 09:22 AM PDT -HackforLABot,2021-05-26T16:24:04Z,- HackforLABot opened issue: [1660](https://github.com/hackforla/website/issues/1660) at 2021-05-26 09:24 AM PDT -HackforLABot,2021-05-26T16:24:46Z,- HackforLABot opened issue: [1661](https://github.com/hackforla/website/issues/1661) at 2021-05-26 09:24 AM PDT -HackforLABot,2021-05-26T16:32:00Z,- HackforLABot opened issue: [1662](https://github.com/hackforla/website/issues/1662) at 2021-05-26 09:32 AM PDT -HackforLABot,2021-05-26T16:32:28Z,- HackforLABot opened issue: [1663](https://github.com/hackforla/website/issues/1663) at 2021-05-26 09:32 AM PDT -HackforLABot,2021-05-26T17:17:22Z,- HackforLABot opened issue: [1664](https://github.com/hackforla/website/issues/1664) at 2021-05-26 10:17 AM PDT -HackforLABot,2021-05-26T17:26:13Z,- HackforLABot opened issue: [1665](https://github.com/hackforla/website/issues/1665) at 2021-05-26 10:26 AM PDT -HackforLABot,2021-05-26T17:32:41Z,- HackforLABot opened issue: [1666](https://github.com/hackforla/website/issues/1666) at 2021-05-26 10:32 AM PDT -HackforLABot,2021-05-26T17:51:37Z,- HackforLABot opened issue: [1667](https://github.com/hackforla/website/issues/1667) at 2021-05-26 10:51 AM PDT -HackforLABot,2021-05-30T17:32:34Z,- HackforLABot opened issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-05-30 10:32 AM PDT -HackforLABot,2021-06-11T21:13:47Z,- HackforLABot opened issue: [1714](https://github.com/hackforla/website/issues/1714) at 2021-06-11 02:13 PM PDT -HackforLABot,2021-06-12T16:32:20Z,- HackforLABot assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -HackforLABot,2021-06-12T16:32:31Z,- HackforLABot unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -HackforLABot,2021-06-12T19:40:20Z,- HackforLABot closed issue as completed: [1723](https://github.com/hackforla/website/issues/1723#event-4881603719) at 2021-06-12 12:40 PM PDT -HackforLABot,2021-06-12T19:54:25Z,- HackforLABot opened issue: [1727](https://github.com/hackforla/website/issues/1727) at 2021-06-12 12:54 PM PDT -HackforLABot,2021-06-12T19:54:27Z,- HackforLABot assigned to issue: [1727](https://github.com/hackforla/website/issues/1727) at 2021-06-12 12:54 PM PDT -HackforLABot,2021-06-12T19:54:34Z,- HackforLABot unassigned from issue: [1727](https://github.com/hackforla/website/issues/1727) at 2021-06-12 12:54 PM PDT -HackforLABot,2021-06-17T23:47:37Z,- HackforLABot opened issue: [1766](https://github.com/hackforla/website/issues/1766) at 2021-06-17 04:47 PM PDT -HackforLABot,2021-06-18T00:06:15Z,- HackforLABot opened issue: [1767](https://github.com/hackforla/website/issues/1767) at 2021-06-17 05:06 PM PDT -HackforLABot,2021-06-18T00:20:11Z,- HackforLABot opened issue: [1768](https://github.com/hackforla/website/issues/1768) at 2021-06-17 05:20 PM PDT -HackforLABot,2021-06-18T00:30:48Z,- HackforLABot opened issue: [1769](https://github.com/hackforla/website/issues/1769) at 2021-06-17 05:30 PM PDT -HackforLABot,2021-06-18T00:35:04Z,- HackforLABot opened issue: [1770](https://github.com/hackforla/website/issues/1770) at 2021-06-17 05:35 PM PDT -HackforLABot,2021-06-18T02:13:15Z,- HackforLABot opened issue: [1772](https://github.com/hackforla/website/issues/1772) at 2021-06-17 07:13 PM PDT -HackforLABot,2021-06-18T15:25:49Z,- HackforLABot opened issue: [1776](https://github.com/hackforla/website/issues/1776) at 2021-06-18 08:25 AM PDT -HackforLABot,2021-06-18T15:27:41Z,- HackforLABot opened issue: [1777](https://github.com/hackforla/website/issues/1777) at 2021-06-18 08:27 AM PDT -HackforLABot,2021-06-18T15:41:42Z,- HackforLABot opened issue: [1778](https://github.com/hackforla/website/issues/1778) at 2021-06-18 08:41 AM PDT -HackforLABot,2021-06-18T16:48:00Z,- HackforLABot opened issue: [1779](https://github.com/hackforla/website/issues/1779) at 2021-06-18 09:48 AM PDT -HackforLABot,2021-06-18T21:00:12Z,- HackforLABot opened issue: [1781](https://github.com/hackforla/website/issues/1781) at 2021-06-18 02:00 PM PDT -HackforLABot,2021-06-19T16:10:12Z,- HackforLABot opened issue: [1786](https://github.com/hackforla/website/issues/1786) at 2021-06-19 09:10 AM PDT -HackforLABot,2021-06-22T06:07:56Z,- HackforLABot opened pull request: [1808](https://github.com/hackforla/website/pull/1808) at 2021-06-21 11:07 PM PDT -HackforLABot,2021-06-22T06:11:39Z,- HackforLABot pull request closed w/o merging: [1808](https://github.com/hackforla/website/pull/1808#event-4920553918) at 2021-06-21 11:11 PM PDT -HackforLABot,2021-06-22T06:17:02Z,- HackforLABot reopened pull request: [1809](https://github.com/hackforla/website/pull/1809#event-4920573132) at 2021-06-21 11:17 PM PDT -HackforLABot,2021-06-22T06:26:26Z,- HackforLABot opened pull request: [1811](https://github.com/hackforla/website/pull/1811) at 2021-06-21 11:26 PM PDT -HackforLABot,2021-06-22T06:26:30Z,- HackforLABot pull request closed w/o merging: [1811](https://github.com/hackforla/website/pull/1811#event-4920608348) at 2021-06-21 11:26 PM PDT -HackforLABot,2021-06-22T06:26:46Z,- HackforLABot opened pull request: [1812](https://github.com/hackforla/website/pull/1812) at 2021-06-21 11:26 PM PDT -HackforLABot,2021-06-22T06:27:32Z,- HackforLABot pull request closed w/o merging: [1812](https://github.com/hackforla/website/pull/1812#event-4920612439) at 2021-06-21 11:27 PM PDT -HackforLABot,2021-07-02T19:34:19Z,- HackforLABot opened issue: [1881](https://github.com/hackforla/website/issues/1881) at 2021-07-02 12:34 PM PDT -HackforLABot,2021-07-10T22:46:47Z,- HackforLABot opened issue: [1916](https://github.com/hackforla/website/issues/1916) at 2021-07-10 03:46 PM PDT -HackforLABot,2021-07-28T17:15:39Z,- HackforLABot opened issue: [2017](https://github.com/hackforla/website/issues/2017) at 2021-07-28 10:15 AM PDT -HackforLABot,2021-08-20T06:42:50Z,- HackforLABot opened issue: [2142](https://github.com/hackforla/website/issues/2142) at 2021-08-19 11:42 PM PDT -HackforLABot,2021-08-20T06:47:32Z,- HackforLABot opened issue: [2143](https://github.com/hackforla/website/issues/2143) at 2021-08-19 11:47 PM PDT -HackforLABot,2022-09-16T03:58:08Z,- HackforLABot closed issue by PR 3551: [2824](https://github.com/hackforla/website/issues/2824#event-7399843254) at 2022-09-15 08:58 PM PDT -HackforLABot,2024-04-17T23:41:30Z,- HackforLABot opened issue: [6662](https://github.com/hackforla/website/issues/6662) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:31Z,- HackforLABot opened issue: [6663](https://github.com/hackforla/website/issues/6663) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:32Z,- HackforLABot opened issue: [6664](https://github.com/hackforla/website/issues/6664) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:33Z,- HackforLABot opened issue: [6665](https://github.com/hackforla/website/issues/6665) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:33Z,- HackforLABot opened issue: [6666](https://github.com/hackforla/website/issues/6666) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:35Z,- HackforLABot opened issue: [6668](https://github.com/hackforla/website/issues/6668) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:35Z,- HackforLABot opened issue: [6669](https://github.com/hackforla/website/issues/6669) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:36Z,- HackforLABot opened issue: [6670](https://github.com/hackforla/website/issues/6670) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:37Z,- HackforLABot opened issue: [6671](https://github.com/hackforla/website/issues/6671) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:37Z,- HackforLABot opened issue: [6672](https://github.com/hackforla/website/issues/6672) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:38Z,- HackforLABot opened issue: [6673](https://github.com/hackforla/website/issues/6673) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:39Z,- HackforLABot opened issue: [6674](https://github.com/hackforla/website/issues/6674) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:39Z,- HackforLABot opened issue: [6675](https://github.com/hackforla/website/issues/6675) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:41Z,- HackforLABot opened issue: [6677](https://github.com/hackforla/website/issues/6677) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-05-05T17:47:06Z,- HackforLABot closed issue as completed: [6344](https://github.com/hackforla/website/issues/6344#event-12707977425) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:07Z,- HackforLABot commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2094891371) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:07Z,- HackforLABot closed issue as completed: [6254](https://github.com/hackforla/website/issues/6254#event-12707977446) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:07Z,- HackforLABot commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2094891367) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:08Z,- HackforLABot commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2094891377) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:08Z,- HackforLABot closed issue as completed: [6348](https://github.com/hackforla/website/issues/6348#event-12707977469) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:09Z,- HackforLABot commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2094891380) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:09Z,- HackforLABot closed issue as completed: [6251](https://github.com/hackforla/website/issues/6251#event-12707977507) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:09Z,- HackforLABot closed issue as completed: [6332](https://github.com/hackforla/website/issues/6332#event-12707977517) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:10Z,- HackforLABot closed issue as completed: [6128](https://github.com/hackforla/website/issues/6128#event-12707977554) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:10Z,- HackforLABot commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2094891381) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:11Z,- HackforLABot commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2094891385) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:11Z,- HackforLABot closed issue as completed: [6335](https://github.com/hackforla/website/issues/6335#event-12707977582) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:12Z,- HackforLABot closed issue as completed: [6244](https://github.com/hackforla/website/issues/6244#event-12707977604) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:12Z,- HackforLABot commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2094891390) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:13Z,- HackforLABot commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2094891393) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:13Z,- HackforLABot commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2094891398) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:13Z,- HackforLABot closed issue as completed: [6250](https://github.com/hackforla/website/issues/6250#event-12707977640) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:14Z,- HackforLABot closed issue as completed: [5909](https://github.com/hackforla/website/issues/5909#event-12707977705) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:14Z,- HackforLABot closed issue as completed: [6340](https://github.com/hackforla/website/issues/6340#event-12707977686) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2094891405) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2094891410) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot closed issue as completed: [6338](https://github.com/hackforla/website/issues/6338#event-12707977727) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2094891402) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot closed issue as completed: [6343](https://github.com/hackforla/website/issues/6343#event-12707977745) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:16Z,- HackforLABot commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2094891418) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:16Z,- HackforLABot closed issue as completed: [5863](https://github.com/hackforla/website/issues/5863#event-12707977782) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:16Z,- HackforLABot commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2094891414) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-07T00:52:21Z,- HackforLABot opened issue: [6825](https://github.com/hackforla/website/issues/6825) at 2024-05-06 05:52 PM PDT -HackforLABot,2024-05-07T00:52:22Z,- HackforLABot opened issue: [6826](https://github.com/hackforla/website/issues/6826) at 2024-05-06 05:52 PM PDT -HackforLABot,2024-05-07T00:52:22Z,- HackforLABot opened issue: [6827](https://github.com/hackforla/website/issues/6827) at 2024-05-06 05:52 PM PDT -HackforLABot,2024-06-01T11:07:22Z,- HackforLABot closed issue as completed: [6424](https://github.com/hackforla/website/issues/6424#event-13008918393) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:23Z,- HackforLABot closed issue as completed: [6245](https://github.com/hackforla/website/issues/6245#event-13008918433) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:23Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2143408203) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:24Z,- HackforLABot commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2143408208) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:25Z,- HackforLABot commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2143408218) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:25Z,- HackforLABot closed issue as completed: [5090](https://github.com/hackforla/website/issues/5090#event-13008918493) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:26Z,- HackforLABot closed issue as completed: [6413](https://github.com/hackforla/website/issues/6413#event-13008918537) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:27Z,- HackforLABot commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2143408225) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:27Z,- HackforLABot commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2143408228) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:27Z,- HackforLABot closed issue as completed: [6545](https://github.com/hackforla/website/issues/6545#event-13008918564) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:28Z,- HackforLABot commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2143408231) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:28Z,- HackforLABot closed issue as completed: [6252](https://github.com/hackforla/website/issues/6252#event-13008918593) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:28Z,- HackforLABot closed issue as completed: [6425](https://github.com/hackforla/website/issues/6425#event-13008918621) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:29Z,- HackforLABot commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2143408233) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-02T16:35:22Z,- HackforLABot opened issue: [6926](https://github.com/hackforla/website/issues/6926) at 2024-06-02 09:35 AM PDT -HackforLABot,2024-06-02T16:35:36Z,- HackforLABot closed issue as completed: [6926](https://github.com/hackforla/website/issues/6926#event-13012347692) at 2024-06-02 09:35 AM PDT -HackforLABot,2024-06-17T17:30:40Z,- HackforLABot opened issue: [7013](https://github.com/hackforla/website/issues/7013) at 2024-06-17 10:30 AM PDT -HackforLABot,2024-06-17T17:30:41Z,- HackforLABot opened issue: [7014](https://github.com/hackforla/website/issues/7014) at 2024-06-17 10:30 AM PDT -HackforLABot,2024-06-17T17:30:41Z,- HackforLABot opened issue: [7015](https://github.com/hackforla/website/issues/7015) at 2024-06-17 10:30 AM PDT -HackforLABot,2024-07-01T11:07:40Z,- HackforLABot closed issue as completed: [6345](https://github.com/hackforla/website/issues/6345#event-13349586883) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:41Z,- HackforLABot commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2199859187) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:41Z,- HackforLABot commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2199859199) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:41Z,- HackforLABot closed issue as completed: [6604](https://github.com/hackforla/website/issues/6604#event-13349586974) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:43Z,- HackforLABot commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2199859285) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:43Z,- HackforLABot closed issue as completed: [6600](https://github.com/hackforla/website/issues/6600#event-13349587442) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:44Z,- HackforLABot closed issue as completed: [6478](https://github.com/hackforla/website/issues/6478#event-13349587705) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:44Z,- HackforLABot closed issue as completed: [6605](https://github.com/hackforla/website/issues/6605#event-13349587770) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2199859327) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot closed issue as completed: [6532](https://github.com/hackforla/website/issues/6532#event-13349587956) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2199859335) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2199859354) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot closed issue as completed: [6609](https://github.com/hackforla/website/issues/6609#event-13349587854) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2199859371) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2199859396) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot closed issue as completed: [6596](https://github.com/hackforla/website/issues/6596#event-13349588118) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2199859383) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot closed issue as completed: [6728](https://github.com/hackforla/website/issues/6728#event-13349588039) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:47Z,- HackforLABot closed issue as completed: [4999](https://github.com/hackforla/website/issues/4999#event-13349588495) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:48Z,- HackforLABot commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2199859461) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:48Z,- HackforLABot closed issue as completed: [6628](https://github.com/hackforla/website/issues/6628#event-13349588651) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:49Z,- HackforLABot commented on issue: [6628](https://github.com/hackforla/website/issues/6628#issuecomment-2199859483) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:08:20Z,- HackforLABot opened issue: [7084](https://github.com/hackforla/website/issues/7084) at 2024-07-01 04:08 AM PDT -HackforLABot,2024-07-15T22:28:00Z,- HackforLABot commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229542020) at 2024-07-15 03:28 PM PDT -HackforLABot,2024-07-15T23:24:40Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-07-15 04:24 PM PDT -HackforLABot,2024-07-16T00:33:44Z,- HackforLABot commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229736172) at 2024-07-15 05:33 PM PDT -HackforLABot,2024-07-16T05:08:59Z,- HackforLABot commented on issue: [7103](https://github.com/hackforla/website/issues/7103#issuecomment-2230036389) at 2024-07-15 10:08 PM PDT -HackforLABot,2024-07-16T22:24:59Z,- HackforLABot commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2231921551) at 2024-07-16 03:24 PM PDT -HackforLABot,2024-07-18T19:14:55Z,- HackforLABot commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2237353616) at 2024-07-18 12:14 PM PDT -HackforLABot,2024-07-19T01:55:35Z,- HackforLABot commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2237891433) at 2024-07-18 06:55 PM PDT -HackforLABot,2024-07-19T01:55:38Z,- HackforLABot commented on issue: [3525](https://github.com/hackforla/website/issues/3525#issuecomment-2237891776) at 2024-07-18 06:55 PM PDT -HackforLABot,2024-07-19T01:55:53Z,- HackforLABot commented on issue: [7096](https://github.com/hackforla/website/issues/7096#issuecomment-2237893026) at 2024-07-18 06:55 PM PDT -HackforLABot,2024-07-20T08:29:08Z,- HackforLABot commented on issue: [7117](https://github.com/hackforla/website/issues/7117#issuecomment-2241043992) at 2024-07-20 01:29 AM PDT -HackforLABot,2024-07-21T17:13:07Z,- HackforLABot commented on issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2241716403) at 2024-07-21 10:13 AM PDT -HackforLABot,2024-07-22T17:05:23Z,- HackforLABot commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2243424678) at 2024-07-22 10:05 AM PDT -HackforLABot,2024-07-22T19:23:46Z,- HackforLABot commented on issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2243657939) at 2024-07-22 12:23 PM PDT -HackforLABot,2024-07-23T19:44:14Z,- HackforLABot commented on issue: [7110](https://github.com/hackforla/website/issues/7110#issuecomment-2246148598) at 2024-07-23 12:44 PM PDT -HackforLABot,2024-07-25T02:38:02Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2249249211) at 2024-07-24 07:38 PM PDT -HackforLABot,2024-07-27T01:13:41Z,- HackforLABot commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253690494) at 2024-07-26 06:13 PM PDT -HackforLABot,2024-07-27T01:30:21Z,- HackforLABot commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253695746) at 2024-07-26 06:30 PM PDT -HackforLABot,2024-07-29T20:24:40Z,- HackforLABot commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2256828735) at 2024-07-29 01:24 PM PDT -HackforLABot,2024-07-29T23:56:29Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2257211841) at 2024-07-29 04:56 PM PDT -HackforLABot,2024-07-31T00:24:44Z,- HackforLABot commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2259410695) at 2024-07-30 05:24 PM PDT -HackforLABot,2024-07-31T23:27:33Z,- HackforLABot commented on issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2261652732) at 2024-07-31 04:27 PM PDT -HackforLABot,2024-08-03T00:11:54Z,- HackforLABot commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2266290875) at 2024-08-02 05:11 PM PDT -HackforLABot,2024-08-05T07:17:42Z,- HackforLABot commented on issue: [7164](https://github.com/hackforla/website/issues/7164#issuecomment-2268347330) at 2024-08-05 12:17 AM PDT -HackforLABot,2024-08-05T09:00:42Z,- HackforLABot commented on issue: [7157](https://github.com/hackforla/website/issues/7157#issuecomment-2268540449) at 2024-08-05 02:00 AM PDT -HackforLABot,2024-08-05T22:13:47Z,- HackforLABot commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2270009567) at 2024-08-05 03:13 PM PDT -HackforLABot,2024-08-05T22:16:15Z,- HackforLABot commented on issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2270012267) at 2024-08-05 03:16 PM PDT -HackforLABot,2024-08-06T00:24:37Z,- HackforLABot commented on issue: [7197](https://github.com/hackforla/website/issues/7197#issuecomment-2270142221) at 2024-08-05 05:24 PM PDT -HackforLABot,2024-08-06T03:10:17Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2270299402) at 2024-08-05 08:10 PM PDT -HackforLABot,2024-08-06T03:26:17Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2270310844) at 2024-08-05 08:26 PM PDT -HackforLABot,2024-08-06T03:39:26Z,- HackforLABot commented on issue: [7191](https://github.com/hackforla/website/issues/7191#issuecomment-2270321002) at 2024-08-05 08:39 PM PDT -HackforLABot,2024-08-06T03:57:03Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2270333508) at 2024-08-05 08:57 PM PDT -HackforLABot,2024-08-06T18:42:17Z,- HackforLABot commented on issue: [7138](https://github.com/hackforla/website/issues/7138#issuecomment-2271920307) at 2024-08-06 11:42 AM PDT -HackforLABot,2024-08-06T18:42:41Z,- HackforLABot commented on issue: [7138](https://github.com/hackforla/website/issues/7138#issuecomment-2271921033) at 2024-08-06 11:42 AM PDT -HackforLABot,2024-08-06T18:48:30Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2271930485) at 2024-08-06 11:48 AM PDT -HackforLABot,2024-08-06T19:56:53Z,- HackforLABot commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2272041048) at 2024-08-06 12:56 PM PDT -HackforLABot,2024-08-07T02:08:02Z,- HackforLABot commented on issue: [7139](https://github.com/hackforla/website/issues/7139#issuecomment-2272481885) at 2024-08-06 07:08 PM PDT -HackforLABot,2024-08-07T02:11:52Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2272485014) at 2024-08-06 07:11 PM PDT -HackforLABot,2024-08-07T02:21:10Z,- HackforLABot commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-2272492214) at 2024-08-06 07:21 PM PDT -HackforLABot,2024-08-07T02:27:07Z,- HackforLABot commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272497239) at 2024-08-06 07:27 PM PDT -HackforLABot,2024-08-07T02:29:24Z,- HackforLABot commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272499172) at 2024-08-06 07:29 PM PDT -HackforLABot,2024-08-07T02:38:34Z,- HackforLABot commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2272507065) at 2024-08-06 07:38 PM PDT -HackforLABot,2024-08-07T02:40:50Z,- HackforLABot commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-2272508879) at 2024-08-06 07:40 PM PDT -HackforLABot,2024-08-07T02:45:45Z,- HackforLABot commented on issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2272512702) at 2024-08-06 07:45 PM PDT -HackforLABot,2024-08-07T02:47:55Z,- HackforLABot commented on issue: [7171](https://github.com/hackforla/website/issues/7171#issuecomment-2272514388) at 2024-08-06 07:47 PM PDT -HackforLABot,2024-08-07T02:55:06Z,- HackforLABot commented on issue: [7174](https://github.com/hackforla/website/issues/7174#issuecomment-2272519685) at 2024-08-06 07:55 PM PDT -HackforLABot,2024-08-07T02:58:58Z,- HackforLABot commented on issue: [7176](https://github.com/hackforla/website/issues/7176#issuecomment-2272522605) at 2024-08-06 07:58 PM PDT -HackforLABot,2024-08-07T02:59:04Z,- HackforLABot commented on issue: [7175](https://github.com/hackforla/website/issues/7175#issuecomment-2272522668) at 2024-08-06 07:59 PM PDT -HackforLABot,2024-08-07T05:21:42Z,- HackforLABot commented on issue: [7236](https://github.com/hackforla/website/issues/7236#issuecomment-2272640269) at 2024-08-06 10:21 PM PDT -HackforLABot,2024-08-07T05:27:39Z,- HackforLABot commented on issue: [7237](https://github.com/hackforla/website/issues/7237#issuecomment-2272646172) at 2024-08-06 10:27 PM PDT -HackforLABot,2024-08-07T08:32:20Z,- HackforLABot commented on issue: [7160](https://github.com/hackforla/website/issues/7160#issuecomment-2272922365) at 2024-08-07 01:32 AM PDT -HackforLABot,2024-08-07T17:06:09Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2273928523) at 2024-08-07 10:06 AM PDT -HackforLABot,2024-08-08T03:17:18Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2274874337) at 2024-08-07 08:17 PM PDT -HackforLABot,2024-08-08T20:53:23Z,- HackforLABot commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2276633831) at 2024-08-08 01:53 PM PDT -HackforLABot,2024-08-09T00:27:26Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276939762) at 2024-08-08 05:27 PM PDT -HackforLABot,2024-08-09T05:18:52Z,- HackforLABot commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2277170724) at 2024-08-08 10:18 PM PDT -HackforLABot,2024-08-09T05:31:00Z,- HackforLABot commented on issue: [7178](https://github.com/hackforla/website/issues/7178#issuecomment-2277181058) at 2024-08-08 10:31 PM PDT -HackforLABot,2024-08-09T12:56:07Z,- HackforLABot commented on issue: [7249](https://github.com/hackforla/website/issues/7249#issuecomment-2277884879) at 2024-08-09 05:56 AM PDT -HackforLABot,2024-08-09T21:04:02Z,- HackforLABot commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2278754268) at 2024-08-09 02:04 PM PDT -HackforLABot,2024-08-10T14:48:02Z,- HackforLABot commented on issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2282176041) at 2024-08-10 07:48 AM PDT -HackforLABot,2024-08-10T14:50:24Z,- HackforLABot commented on issue: [7181](https://github.com/hackforla/website/issues/7181#issuecomment-2282176583) at 2024-08-10 07:50 AM PDT -HackforLABot,2024-08-10T14:50:50Z,- HackforLABot commented on issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2282176682) at 2024-08-10 07:50 AM PDT -HackforLABot,2024-08-10T15:01:36Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2282179548) at 2024-08-10 08:01 AM PDT -HackforLABot,2024-08-10T15:07:30Z,- HackforLABot commented on issue: [7181](https://github.com/hackforla/website/issues/7181#issuecomment-2282181214) at 2024-08-10 08:07 AM PDT -HackforLABot,2024-08-10T20:59:41Z,- HackforLABot commented on issue: [7184](https://github.com/hackforla/website/issues/7184#issuecomment-2282276188) at 2024-08-10 01:59 PM PDT -HackforLABot,2024-08-10T21:32:19Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282282343) at 2024-08-10 02:32 PM PDT -HackforLABot,2024-08-10T21:39:48Z,- HackforLABot commented on issue: [7185](https://github.com/hackforla/website/issues/7185#issuecomment-2282283693) at 2024-08-10 02:39 PM PDT -HackforLABot,2024-08-11T17:32:32Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2282833231) at 2024-08-11 10:32 AM PDT -HackforLABot,2024-08-11T17:36:22Z,- HackforLABot commented on issue: [7186](https://github.com/hackforla/website/issues/7186#issuecomment-2282834274) at 2024-08-11 10:36 AM PDT -HackforLABot,2024-08-11T18:30:43Z,- HackforLABot commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2282848346) at 2024-08-11 11:30 AM PDT -HackforLABot,2024-08-11T18:48:43Z,- HackforLABot commented on issue: [7187](https://github.com/hackforla/website/issues/7187#issuecomment-2282853357) at 2024-08-11 11:48 AM PDT -HackforLABot,2024-08-11T19:38:57Z,- HackforLABot commented on issue: [7251](https://github.com/hackforla/website/issues/7251#issuecomment-2282866916) at 2024-08-11 12:38 PM PDT -HackforLABot,2024-08-11T21:11:30Z,- HackforLABot commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2282891038) at 2024-08-11 02:11 PM PDT -HackforLABot,2024-08-11T21:20:50Z,- HackforLABot commented on issue: [7188](https://github.com/hackforla/website/issues/7188#issuecomment-2282893464) at 2024-08-11 02:20 PM PDT -HackforLABot,2024-08-12T04:51:04Z,- HackforLABot commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283108883) at 2024-08-11 09:51 PM PDT -HackforLABot,2024-08-12T06:54:04Z,- HackforLABot commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283227775) at 2024-08-11 11:54 PM PDT -HackforLABot,2024-08-12T06:59:57Z,- HackforLABot commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2283235626) at 2024-08-11 11:59 PM PDT -HackforLABot,2024-08-13T00:43:11Z,- HackforLABot commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2285135894) at 2024-08-12 05:43 PM PDT -HackforLABot,2024-08-13T04:32:17Z,- HackforLABot commented on issue: [7192](https://github.com/hackforla/website/issues/7192#issuecomment-2285320418) at 2024-08-12 09:32 PM PDT -HackforLABot,2024-08-13T15:14:40Z,- HackforLABot commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2286504190) at 2024-08-13 08:14 AM PDT -HackforLABot,2024-08-13T15:34:48Z,- HackforLABot commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2286548491) at 2024-08-13 08:34 AM PDT -HackforLABot,2024-08-13T22:22:51Z,- HackforLABot commented on issue: [7246](https://github.com/hackforla/website/issues/7246#issuecomment-2287242704) at 2024-08-13 03:22 PM PDT -HackforLABot,2024-08-13T23:53:10Z,- HackforLABot commented on issue: [7148](https://github.com/hackforla/website/issues/7148#issuecomment-2287414748) at 2024-08-13 04:53 PM PDT -HackforLABot,2024-08-14T01:06:51Z,- HackforLABot commented on issue: [7253](https://github.com/hackforla/website/issues/7253#issuecomment-2287583508) at 2024-08-13 06:06 PM PDT -HackforLABot,2024-08-14T02:03:21Z,- HackforLABot commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2287693130) at 2024-08-13 07:03 PM PDT -HackforLABot,2024-08-14T02:39:46Z,- HackforLABot commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2287725460) at 2024-08-13 07:39 PM PDT -HackforLABot,2024-08-14T06:37:47Z,- HackforLABot commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2287965726) at 2024-08-13 11:37 PM PDT -HackforLABot,2024-08-14T08:21:49Z,- HackforLABot commented on issue: [7193](https://github.com/hackforla/website/issues/7193#issuecomment-2288136576) at 2024-08-14 01:21 AM PDT -HackforLABot,2024-08-14T17:35:19Z,- HackforLABot commented on issue: [7254](https://github.com/hackforla/website/issues/7254#issuecomment-2289418936) at 2024-08-14 10:35 AM PDT -HackforLABot,2024-08-14T22:10:41Z,- HackforLABot commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2290006846) at 2024-08-14 03:10 PM PDT -HackforLABot,2024-08-14T22:17:27Z,- HackforLABot commented on issue: [7252](https://github.com/hackforla/website/issues/7252#issuecomment-2290014902) at 2024-08-14 03:17 PM PDT -HackforLABot,2024-08-15T02:33:13Z,- HackforLABot commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2290397697) at 2024-08-14 07:33 PM PDT -HackforLABot,2024-08-15T03:51:33Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2290516194) at 2024-08-14 08:51 PM PDT -HackforLABot,2024-08-15T17:56:32Z,- HackforLABot commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2291860442) at 2024-08-15 10:56 AM PDT -HackforLABot,2024-08-15T18:41:14Z,- HackforLABot commented on issue: [7295](https://github.com/hackforla/website/issues/7295#issuecomment-2291971460) at 2024-08-15 11:41 AM PDT -HackforLABot,2024-08-15T19:56:27Z,- HackforLABot commented on issue: [7250](https://github.com/hackforla/website/issues/7250#issuecomment-2292090789) at 2024-08-15 12:56 PM PDT -HackforLABot,2024-08-16T00:07:09Z,- HackforLABot commented on issue: [7111](https://github.com/hackforla/website/issues/7111#issuecomment-2292485530) at 2024-08-15 05:07 PM PDT -HackforLABot,2024-08-16T02:25:54Z,- HackforLABot commented on issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2292617588) at 2024-08-15 07:25 PM PDT -HackforLABot,2024-08-16T10:57:09Z,- HackforLABot commented on issue: [7247](https://github.com/hackforla/website/issues/7247#issuecomment-2293292754) at 2024-08-16 03:57 AM PDT -HackforLABot,2024-08-16T17:19:55Z,- HackforLABot commented on issue: [7133](https://github.com/hackforla/website/issues/7133#issuecomment-2293876900) at 2024-08-16 10:19 AM PDT -HackforLABot,2024-08-16T19:15:41Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2294030747) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:45Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2294030982) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:47Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2294031081) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:50Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2294031195) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:52Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2294031244) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:54Z,- HackforLABot commented on issue: [7215](https://github.com/hackforla/website/issues/7215#issuecomment-2294031284) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:56Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2294031323) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:58Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2294031364) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:16:03Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2294031456) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:06Z,- HackforLABot commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2294031509) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:16Z,- HackforLABot commented on issue: [7175](https://github.com/hackforla/website/issues/7175#issuecomment-2294031719) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:24Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2294031937) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:26Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2294032018) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:28Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2294032093) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:30Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2294032184) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:32Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2294032249) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:35Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2294032387) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:38Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2294032547) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:40Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2294032604) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:42Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2294032658) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:44Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2294032741) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:46Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2294032805) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:47Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2294032859) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:49Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2294032903) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:51Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2294032958) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:55Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2294033065) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:57Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2294033117) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:59Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2294033188) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:17:02Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2294033278) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:03Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2294033341) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:05Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2294033402) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:08Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2294033500) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:11Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2294033557) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:12Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2294033615) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:14Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2294033675) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:18Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294033762) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:20Z,- HackforLABot commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2294033817) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:22Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2294033886) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:24Z,- HackforLABot commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2294033931) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:27Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2294034026) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:29Z,- HackforLABot commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2294034076) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:31Z,- HackforLABot commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2294034119) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:33Z,- HackforLABot commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2294034158) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:35Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2294034200) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:40Z,- HackforLABot commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2294034296) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:42Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2294034339) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:44Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2294034381) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:46Z,- HackforLABot commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2294034419) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:48Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2294034451) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:50Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2294034493) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:52Z,- HackforLABot commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2294034540) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:54Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2294034580) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:56Z,- HackforLABot commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2294034617) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:18:09Z,- HackforLABot commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2294034991) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:12Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2294035074) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:14Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2294035143) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:16Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2294035234) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:18Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2294035341) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:20Z,- HackforLABot commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2294035431) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:33Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2294035926) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:43Z,- HackforLABot commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2294036255) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T22:36:05Z,- HackforLABot commented on issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2294406124) at 2024-08-16 03:36 PM PDT -HackforLABot,2024-08-16T23:16:31Z,- HackforLABot commented on issue: [7173](https://github.com/hackforla/website/issues/7173#issuecomment-2294434859) at 2024-08-16 04:16 PM PDT -HackforLABot,2024-08-17T05:36:36Z,- HackforLABot commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2294636412) at 2024-08-16 10:36 PM PDT -HackforLABot,2024-08-18T05:46:34Z,- HackforLABot commented on issue: [7245](https://github.com/hackforla/website/issues/7245#issuecomment-2295122977) at 2024-08-17 10:46 PM PDT -HackforLABot,2024-08-18T17:14:48Z,- HackforLABot commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2295330331) at 2024-08-18 10:14 AM PDT -HackforLABot,2024-08-19T05:19:21Z,- HackforLABot commented on issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2295690508) at 2024-08-18 10:19 PM PDT -HackforLABot,2024-08-19T15:58:53Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2296916498) at 2024-08-19 08:58 AM PDT -HackforLABot,2024-08-20T06:25:47Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2298062013) at 2024-08-19 11:25 PM PDT -HackforLABot,2024-08-20T12:02:25Z,- HackforLABot commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-08-20 05:02 AM PDT -HackforLABot,2024-08-20T21:12:55Z,- HackforLABot commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2299776363) at 2024-08-20 02:12 PM PDT -HackforLABot,2024-08-20T22:12:34Z,- HackforLABot commented on issue: [7322](https://github.com/hackforla/website/issues/7322#issuecomment-2299850612) at 2024-08-20 03:12 PM PDT -HackforLABot,2024-08-21T01:59:02Z,- HackforLABot commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2300157054) at 2024-08-20 06:59 PM PDT -HackforLABot,2024-08-21T02:30:23Z,- HackforLABot commented on issue: [7133](https://github.com/hackforla/website/issues/7133#issuecomment-2300324644) at 2024-08-20 07:30 PM PDT -HackforLABot,2024-08-21T02:33:38Z,- HackforLABot commented on issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-2300340736) at 2024-08-20 07:33 PM PDT -HackforLABot,2024-08-21T02:41:40Z,- HackforLABot commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2300370289) at 2024-08-20 07:41 PM PDT -HackforLABot,2024-08-21T02:59:03Z,- HackforLABot commented on issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2300434782) at 2024-08-20 07:59 PM PDT -HackforLABot,2024-08-21T03:19:29Z,- HackforLABot commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2300512055) at 2024-08-20 08:19 PM PDT -HackforLABot,2024-08-21T19:53:42Z,- HackforLABot commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2302902168) at 2024-08-21 12:53 PM PDT -HackforLABot,2024-08-21T22:32:45Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2303178955) at 2024-08-21 03:32 PM PDT -HackforLABot,2024-08-21T22:55:42Z,- HackforLABot commented on issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303251610) at 2024-08-21 03:55 PM PDT -HackforLABot,2024-08-21T22:58:23Z,- HackforLABot commented on issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303254023) at 2024-08-21 03:58 PM PDT -HackforLABot,2024-08-22T17:31:24Z,- HackforLABot commented on issue: [7288](https://github.com/hackforla/website/issues/7288#issuecomment-2305289145) at 2024-08-22 10:31 AM PDT -HackforLABot,2024-08-22T22:29:56Z,- HackforLABot commented on issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2305856402) at 2024-08-22 03:29 PM PDT -HackforLABot,2024-08-22T23:25:32Z,- HackforLABot commented on issue: [7337](https://github.com/hackforla/website/issues/7337#issuecomment-2305909946) at 2024-08-22 04:25 PM PDT -HackforLABot,2024-08-22T23:26:02Z,- HackforLABot commented on issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2305910335) at 2024-08-22 04:26 PM PDT -HackforLABot,2024-08-22T23:26:09Z,- HackforLABot commented on issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2305910403) at 2024-08-22 04:26 PM PDT -HackforLABot,2024-08-23T05:46:11Z,- HackforLABot commented on issue: [7172](https://github.com/hackforla/website/issues/7172#issuecomment-2306336231) at 2024-08-22 10:46 PM PDT -HackforLABot,2024-08-23T18:12:29Z,- HackforLABot commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307578482) at 2024-08-23 11:12 AM PDT -HackforLABot,2024-08-23T18:21:05Z,- HackforLABot commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307590162) at 2024-08-23 11:21 AM PDT -HackforLABot,2024-08-23T18:21:16Z,- HackforLABot commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2307590477) at 2024-08-23 11:21 AM PDT -HackforLABot,2024-08-23T18:22:50Z,- HackforLABot commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307592918) at 2024-08-23 11:22 AM PDT -HackforLABot,2024-08-23T19:55:43Z,- HackforLABot commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2307725928) at 2024-08-23 12:55 PM PDT -HackforLABot,2024-08-23T20:10:12Z,- HackforLABot commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2307744263) at 2024-08-23 01:10 PM PDT -HackforLABot,2024-08-24T04:07:22Z,- HackforLABot commented on issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2308043583) at 2024-08-23 09:07 PM PDT -HackforLABot,2024-08-24T14:09:36Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308407830) at 2024-08-24 07:09 AM PDT -HackforLABot,2024-08-24T14:17:44Z,- HackforLABot commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2308410676) at 2024-08-24 07:17 AM PDT -HackforLABot,2024-08-24T22:08:26Z,- HackforLABot commented on issue: [7349](https://github.com/hackforla/website/issues/7349#issuecomment-2308554132) at 2024-08-24 03:08 PM PDT -HackforLABot,2024-08-25T03:38:08Z,- HackforLABot commented on issue: [7149](https://github.com/hackforla/website/issues/7149#issuecomment-2308640516) at 2024-08-24 08:38 PM PDT -HackforLABot,2024-08-25T04:21:06Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308648976) at 2024-08-24 09:21 PM PDT -HackforLABot,2024-08-25T14:07:03Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308865084) at 2024-08-25 07:07 AM PDT -HackforLABot,2024-08-25T14:07:28Z,- HackforLABot commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2308865372) at 2024-08-25 07:07 AM PDT -HackforLABot,2024-08-25T14:07:44Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308865503) at 2024-08-25 07:07 AM PDT -HackforLABot,2024-08-25T14:38:25Z,- HackforLABot commented on issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2308877793) at 2024-08-25 07:38 AM PDT -HackforLABot,2024-08-25T17:44:09Z,- HackforLABot commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308937772) at 2024-08-25 10:44 AM PDT -HackforLABot,2024-08-25T17:58:13Z,- HackforLABot commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308941749) at 2024-08-25 10:58 AM PDT -HackforLABot,2024-08-25T18:46:23Z,- HackforLABot commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2308955275) at 2024-08-25 11:46 AM PDT -HackforLABot,2024-08-25T20:55:13Z,- HackforLABot commented on issue: [7240](https://github.com/hackforla/website/issues/7240#issuecomment-2308990409) at 2024-08-25 01:55 PM PDT -HackforLABot,2024-08-26T05:11:33Z,- HackforLABot commented on issue: [7242](https://github.com/hackforla/website/issues/7242#issuecomment-2309330603) at 2024-08-25 10:11 PM PDT -HackforLABot,2024-08-26T16:21:26Z,- HackforLABot commented on issue: [7292](https://github.com/hackforla/website/issues/7292#issuecomment-2310588857) at 2024-08-26 09:21 AM PDT -HackforLABot,2024-08-26T18:11:50Z,- HackforLABot commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2310783733) at 2024-08-26 11:11 AM PDT -HackforLABot,2024-08-26T21:47:33Z,- HackforLABot commented on issue: [7266](https://github.com/hackforla/website/issues/7266#issuecomment-2311158274) at 2024-08-26 02:47 PM PDT -HackforLABot,2024-08-26T22:54:48Z,- HackforLABot commented on issue: [7358](https://github.com/hackforla/website/issues/7358#issuecomment-2311247592) at 2024-08-26 03:54 PM PDT -HackforLABot,2024-08-27T02:53:16Z,- HackforLABot commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2311468205) at 2024-08-26 07:53 PM PDT -HackforLABot,2024-08-27T03:08:11Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2311480634) at 2024-08-26 08:08 PM PDT -HackforLABot,2024-08-27T03:14:52Z,- HackforLABot commented on issue: [7092](https://github.com/hackforla/website/issues/7092#issuecomment-2311486074) at 2024-08-26 08:14 PM PDT -HackforLABot,2024-08-27T05:09:46Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:09 PM PDT -HackforLABot,2024-08-27T05:14:22Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311588429) at 2024-08-26 10:14 PM PDT -HackforLABot,2024-08-27T15:22:20Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2312865962) at 2024-08-27 08:22 AM PDT -HackforLABot,2024-08-27T22:07:50Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2313660517) at 2024-08-27 03:07 PM PDT -HackforLABot,2024-08-28T00:58:15Z,- HackforLABot commented on issue: [7282](https://github.com/hackforla/website/issues/7282#issuecomment-2313879750) at 2024-08-27 05:58 PM PDT -HackforLABot,2024-08-28T01:16:08Z,- HackforLABot commented on issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2313895504) at 2024-08-27 06:16 PM PDT -HackforLABot,2024-08-28T03:24:22Z,- HackforLABot commented on issue: [7287](https://github.com/hackforla/website/issues/7287#issuecomment-2314124378) at 2024-08-27 08:24 PM PDT -HackforLABot,2024-08-28T06:36:34Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2314435631) at 2024-08-27 11:36 PM PDT -HackforLABot,2024-08-29T02:37:49Z,- HackforLABot commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2316603112) at 2024-08-28 07:37 PM PDT -HackforLABot,2024-08-29T15:18:50Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318072259) at 2024-08-29 08:18 AM PDT -HackforLABot,2024-08-30T00:48:46Z,- HackforLABot commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2319574349) at 2024-08-29 05:48 PM PDT -HackforLABot,2024-08-30T02:07:46Z,- HackforLABot commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2319686102) at 2024-08-29 07:07 PM PDT -HackforLABot,2024-08-30T06:08:36Z,- HackforLABot commented on issue: [7286](https://github.com/hackforla/website/issues/7286#issuecomment-2320170582) at 2024-08-29 11:08 PM PDT -HackforLABot,2024-08-30T07:04:59Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2320282008) at 2024-08-30 12:04 AM PDT -HackforLABot,2024-08-30T07:05:00Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2320282084) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:02Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2320282156) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:07Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2320282351) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:12Z,- HackforLABot commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2320282513) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:13Z,- HackforLABot commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2320282576) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:16Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2320282665) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:18Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2320282747) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:20Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2320282815) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:21Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2320282873) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:23Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2320282927) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:26Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2320283034) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:28Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2320283103) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:31Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2320283196) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:32Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2320283259) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:34Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2320283323) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:37Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2320283444) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:43Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2320283646) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:49Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2320283876) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:51Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2320283969) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:56Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2320284166) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:58Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2320284237) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:59Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2320284289) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:06:01Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2320284346) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:03Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2320284404) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:05Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2320284469) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:07Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2320284560) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:09Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2320284632) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:11Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2320284691) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:13Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2320284759) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:15Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2320284812) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:16Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2320284888) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:18Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2320284947) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:20Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2320285005) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:21Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2320285067) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:23Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2320285115) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:26Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2320285187) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:28Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2320285265) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:29Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2320285325) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:31Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2320285390) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:33Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2320285449) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:34Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2320285502) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:38Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2320285622) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:40Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2320285706) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:41Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2320285773) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:43Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2320285863) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:45Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2320285958) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:47Z,- HackforLABot commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2320286033) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:49Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2320286105) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:51Z,- HackforLABot commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2320286159) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:53Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2320286260) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:55Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2320286323) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:57Z,- HackforLABot commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2320286382) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:59Z,- HackforLABot commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2320286461) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:07:01Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2320286529) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:02Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2320286602) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:06Z,- HackforLABot commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2320286743) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:08Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2320286802) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:10Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2320286858) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:11Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2320286921) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:16Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2320287109) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:17Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2320287176) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:19Z,- HackforLABot commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2320287245) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:21Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2320287322) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:23Z,- HackforLABot commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2320287371) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:34Z,- HackforLABot commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2320287785) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:36Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2320287853) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:38Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2320287908) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:40Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2320287973) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:42Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2320288031) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:43Z,- HackforLABot commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2320288096) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:46Z,- HackforLABot commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2320288163) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:58Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2320288565) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:08:09Z,- HackforLABot commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2320288900) at 2024-08-30 12:08 AM PDT -HackforLABot,2024-08-30T07:09:03Z,- HackforLABot commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2320290962) at 2024-08-30 12:09 AM PDT -HackforLABot,2024-08-30T07:09:14Z,- HackforLABot commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2320291363) at 2024-08-30 12:09 AM PDT -HackforLABot,2024-08-30T17:41:39Z,- HackforLABot commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2322046458) at 2024-08-30 10:41 AM PDT -HackforLABot,2024-08-30T18:36:13Z,- HackforLABot commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2322125583) at 2024-08-30 11:36 AM PDT -HackforLABot,2024-08-30T19:53:46Z,- HackforLABot commented on issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2322240897) at 2024-08-30 12:53 PM PDT -HackforLABot,2024-08-31T03:49:51Z,- HackforLABot commented on issue: [7372](https://github.com/hackforla/website/issues/7372#issuecomment-2322754322) at 2024-08-30 08:49 PM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2323290717) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot closed issue as completed: [6829](https://github.com/hackforla/website/issues/6829#event-14094275095) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2323290714) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot closed issue as completed: [6882](https://github.com/hackforla/website/issues/6882#event-14094275090) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:35Z,- HackforLABot commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2323290727) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:35Z,- HackforLABot closed issue as completed: [6880](https://github.com/hackforla/website/issues/6880#event-14094275165) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:37Z,- HackforLABot closed issue as completed: [6423](https://github.com/hackforla/website/issues/6423#event-14094275288) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:38Z,- HackforLABot commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2323290745) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:38Z,- HackforLABot closed issue as completed: [6603](https://github.com/hackforla/website/issues/6603#event-14094275373) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot closed issue as completed: [5361](https://github.com/hackforla/website/issues/5361#event-14094275429) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2323290758) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot closed issue as completed: [6526](https://github.com/hackforla/website/issues/6526#event-14094275400) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2323290755) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:40Z,- HackforLABot commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-2323290764) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:41Z,- HackforLABot commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2323290777) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:41Z,- HackforLABot closed issue as completed: [6831](https://github.com/hackforla/website/issues/6831#event-14094275523) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:42Z,- HackforLABot closed issue as completed: [6524](https://github.com/hackforla/website/issues/6524#event-14094275563) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:43Z,- HackforLABot commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2323290784) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:08:18Z,- HackforLABot opened issue: [7374](https://github.com/hackforla/website/issues/7374) at 2024-09-01 04:08 AM PDT -HackforLABot,2024-09-02T21:55:10Z,- HackforLABot commented on issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2325329602) at 2024-09-02 02:55 PM PDT -HackforLABot,2024-09-03T18:49:23Z,- HackforLABot commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2327195713) at 2024-09-03 11:49 AM PDT -HackforLABot,2024-09-03T19:44:31Z,- HackforLABot commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2327298542) at 2024-09-03 12:44 PM PDT -HackforLABot,2024-09-04T01:16:18Z,- HackforLABot commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2327722272) at 2024-09-03 06:16 PM PDT -HackforLABot,2024-09-04T01:31:15Z,- HackforLABot commented on issue: [7383](https://github.com/hackforla/website/issues/7383#issuecomment-2327734854) at 2024-09-03 06:31 PM PDT -HackforLABot,2024-09-04T20:30:21Z,- HackforLABot commented on issue: [7156](https://github.com/hackforla/website/issues/7156#issuecomment-2329914056) at 2024-09-04 01:30 PM PDT -HackforLABot,2024-09-04T21:42:34Z,- HackforLABot commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2330196364) at 2024-09-04 02:42 PM PDT -HackforLABot,2024-09-05T03:45:47Z,- HackforLABot commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2330537237) at 2024-09-04 08:45 PM PDT -HackforLABot,2024-09-05T17:07:54Z,- HackforLABot commented on issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2332239994) at 2024-09-05 10:07 AM PDT -HackforLABot,2024-09-05T17:13:26Z,- HackforLABot commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -HackforLABot,2024-09-05T17:13:52Z,- HackforLABot commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249761) at 2024-09-05 10:13 AM PDT -HackforLABot,2024-09-05T23:57:42Z,- HackforLABot commented on issue: [7404](https://github.com/hackforla/website/issues/7404#issuecomment-2332917767) at 2024-09-05 04:57 PM PDT -HackforLABot,2024-09-06T04:03:14Z,- HackforLABot commented on issue: [7291](https://github.com/hackforla/website/issues/7291#issuecomment-2333191357) at 2024-09-05 09:03 PM PDT -HackforLABot,2024-09-06T07:04:57Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2333387703) at 2024-09-06 12:04 AM PDT -HackforLABot,2024-09-06T07:04:59Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2333387783) at 2024-09-06 12:04 AM PDT -HackforLABot,2024-09-06T07:05:01Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2333387875) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:03Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2333387932) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:05Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2333387974) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:09Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2333388075) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:14Z,- HackforLABot commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2333388210) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:16Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2333388257) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:18Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2333388309) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:19Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2333388354) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:23Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2333388446) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:25Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2333388487) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:27Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2333388552) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:29Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2333388616) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:33Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2333388681) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:34Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2333388716) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:36Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2333388765) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:38Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2333388815) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:41Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2333388899) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:43Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2333388970) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:45Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2333389011) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:50Z,- HackforLABot commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2333389168) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:54Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2333389287) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:57Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2333389366) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:58Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2333389400) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:06:00Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2333389437) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:02Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2333389484) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:03Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2333389524) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:06Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2333389600) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:09Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2333389673) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:11Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2333389719) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:12Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2333389758) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:14Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2333389802) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:15Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2333389845) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:17Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2333389896) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:19Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2333389931) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:20Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2333389982) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:24Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2333390078) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:26Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2333390151) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:28Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2333390200) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:30Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2333390245) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:31Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2333390279) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:33Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2333390333) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:35Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2333390404) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:37Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2333390450) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:38Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2333390497) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:40Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2333390535) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:42Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2333390575) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:44Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2333390638) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:46Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2333390690) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:47Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2333390748) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:49Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2333390809) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:51Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2333390858) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:53Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2333390907) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:55Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2333390985) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:59Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2333391093) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:07:01Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2333391168) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:07Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2333391315) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:08Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2333391371) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:19Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2333391660) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:21Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2333391707) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:23Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2333391756) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:25Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2333391800) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:37Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2333392134) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T17:48:33Z,- HackforLABot commented on issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2334548498) at 2024-09-06 10:48 AM PDT -HackforLABot,2024-09-07T13:39:52Z,- HackforLABot commented on issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2335191023) at 2024-09-07 06:39 AM PDT -HackforLABot,2024-09-08T19:00:47Z,- HackforLABot commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2336789779) at 2024-09-08 12:00 PM PDT -HackforLABot,2024-09-08T19:09:39Z,- HackforLABot commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2336792448) at 2024-09-08 12:09 PM PDT -HackforLABot,2024-09-09T01:45:34Z,- HackforLABot commented on issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2336954430) at 2024-09-08 06:45 PM PDT -HackforLABot,2024-09-09T01:47:56Z,- HackforLABot commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2336956265) at 2024-09-08 06:47 PM PDT -HackforLABot,2024-09-09T22:13:06Z,- HackforLABot commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339245566) at 2024-09-09 03:13 PM PDT -HackforLABot,2024-09-09T22:35:29Z,- HackforLABot commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339270739) at 2024-09-09 03:35 PM PDT -HackforLABot,2024-09-10T02:32:44Z,- HackforLABot commented on issue: [7089](https://github.com/hackforla/website/issues/7089#issuecomment-2339489751) at 2024-09-09 07:32 PM PDT -HackforLABot,2024-09-10T04:24:23Z,- HackforLABot commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2339580789) at 2024-09-09 09:24 PM PDT -HackforLABot,2024-09-10T04:24:31Z,- HackforLABot commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339580938) at 2024-09-09 09:24 PM PDT -HackforLABot,2024-09-10T04:25:23Z,- HackforLABot commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339581670) at 2024-09-09 09:25 PM PDT -HackforLABot,2024-09-10T18:38:38Z,- HackforLABot commented on issue: [7180](https://github.com/hackforla/website/issues/7180#issuecomment-2341744425) at 2024-09-10 11:38 AM PDT -HackforLABot,2024-09-10T23:23:23Z,- HackforLABot commented on issue: [7176](https://github.com/hackforla/website/issues/7176#issuecomment-2342328653) at 2024-09-10 04:23 PM PDT -HackforLABot,2024-09-12T16:53:03Z,- HackforLABot commented on issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2346796076) at 2024-09-12 09:53 AM PDT -HackforLABot,2024-09-13T02:19:13Z,- HackforLABot commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2347912038) at 2024-09-12 07:19 PM PDT -HackforLABot,2024-09-13T03:11:12Z,- HackforLABot commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2347952497) at 2024-09-12 08:11 PM PDT -HackforLABot,2024-09-13T07:05:14Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2348188226) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:17Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2348188309) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:19Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2348188340) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:22Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2348188427) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:27Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2348188566) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:29Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2348188607) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:30Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2348188657) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:33Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2348188715) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:35Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2348188769) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:38Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2348188848) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:40Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2348188898) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:41Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2348188943) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:43Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2348188987) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:45Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2348189037) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:48Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2348189099) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:50Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2348189145) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:52Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2348189196) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:54Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2348189265) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:57Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2348189350) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:59Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2348189403) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:06:01Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2348189462) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:03Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2348189503) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:05Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2348189539) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:06Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2348189576) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:08Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2348189610) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:10Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2348189668) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:12Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2348189704) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:13Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2348189750) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:15Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2348189796) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:17Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2348189840) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:18Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2348189891) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:20Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2348189928) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:21Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2348189965) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:23Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2348190015) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:24Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2348190050) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:27Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2348190123) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:29Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2348190173) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:31Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2348190212) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:32Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2348190256) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:34Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2348190291) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:35Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2348190338) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:38Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2348190396) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:40Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2348190479) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:42Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2348190512) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:43Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2348190549) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:45Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2348190578) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:47Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2348190612) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:48Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2348190656) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:50Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2348190718) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:52Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2348190781) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:54Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2348190845) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:56Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2348190868) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:07:00Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2348190935) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:03Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2348191012) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:08Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2348191133) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:10Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2348191187) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:21Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2348191483) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:23Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2348191568) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:25Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2348191677) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:27Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2348191733) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:29Z,- HackforLABot commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2348191816) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:39Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2348192165) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T23:59:07Z,- HackforLABot commented on issue: [7379](https://github.com/hackforla/website/issues/7379#issuecomment-2350720235) at 2024-09-13 04:59 PM PDT -HackforLABot,2024-09-14T04:54:52Z,- HackforLABot commented on issue: [7410](https://github.com/hackforla/website/issues/7410#issuecomment-2350835165) at 2024-09-13 09:54 PM PDT -HackforLABot,2024-09-14T14:26:46Z,- HackforLABot commented on issue: [7167](https://github.com/hackforla/website/issues/7167#issuecomment-2351010945) at 2024-09-14 07:26 AM PDT -HackforLABot,2024-09-14T16:48:44Z,- HackforLABot commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2351057207) at 2024-09-14 09:48 AM PDT -HackforLABot,2024-09-14T23:20:20Z,- HackforLABot commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2351214594) at 2024-09-14 04:20 PM PDT -HackforLABot,2024-09-15T01:42:15Z,- HackforLABot commented on issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2351279538) at 2024-09-14 06:42 PM PDT -HackforLABot,2024-09-15T17:12:16Z,- HackforLABot commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2351683035) at 2024-09-15 10:12 AM PDT -HackforLABot,2024-09-15T17:20:48Z,- HackforLABot commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2351686467) at 2024-09-15 10:20 AM PDT -HackforLABot,2024-09-15T18:01:17Z,- HackforLABot commented on issue: [7411](https://github.com/hackforla/website/issues/7411#issuecomment-2351704098) at 2024-09-15 11:01 AM PDT -HackforLABot,2024-09-15T19:43:18Z,- HackforLABot commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2351766961) at 2024-09-15 12:43 PM PDT -HackforLABot,2024-09-15T21:27:02Z,- HackforLABot commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351797042) at 2024-09-15 02:27 PM PDT -HackforLABot,2024-09-15T21:43:04Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2351801203) at 2024-09-15 02:43 PM PDT -HackforLABot,2024-09-15T22:25:14Z,- HackforLABot commented on issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2351813346) at 2024-09-15 03:25 PM PDT -HackforLABot,2024-09-15T22:57:13Z,- HackforLABot commented on issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2351822253) at 2024-09-15 03:57 PM PDT -HackforLABot,2024-09-16T04:25:24Z,- HackforLABot commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2351997782) at 2024-09-15 09:25 PM PDT -HackforLABot,2024-09-16T07:41:01Z,- HackforLABot commented on issue: [7415](https://github.com/hackforla/website/issues/7415#issuecomment-2352212583) at 2024-09-16 12:41 AM PDT -HackforLABot,2024-09-16T17:18:10Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2353485874) at 2024-09-16 10:18 AM PDT -HackforLABot,2024-09-17T00:23:40Z,- HackforLABot commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2354258346) at 2024-09-16 05:23 PM PDT -HackforLABot,2024-09-17T00:47:46Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2354278064) at 2024-09-16 05:47 PM PDT -HackforLABot,2024-09-17T00:57:40Z,- HackforLABot commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2354285288) at 2024-09-16 05:57 PM PDT -HackforLABot,2024-09-17T01:02:51Z,- HackforLABot commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354289044) at 2024-09-16 06:02 PM PDT -HackforLABot,2024-09-17T01:08:54Z,- HackforLABot commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354293281) at 2024-09-16 06:08 PM PDT -HackforLABot,2024-09-18T19:32:05Z,- HackforLABot commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2359252794) at 2024-09-18 12:32 PM PDT -HackforLABot,2024-09-19T14:04:33Z,- HackforLABot commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2361082302) at 2024-09-19 07:04 AM PDT -HackforLABot,2024-09-19T14:04:33Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2361082333) at 2024-09-19 07:04 AM PDT -HackforLABot,2024-09-19T20:29:23Z,- HackforLABot commented on issue: [7497](https://github.com/hackforla/website/issues/7497#issuecomment-2362117009) at 2024-09-19 01:29 PM PDT -HackforLABot,2024-09-20T02:13:31Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2362570171) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:13:31Z,- HackforLABot commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2362570168) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:13:31Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2362570158) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:13:32Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2362570179) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:58:52Z,- HackforLABot commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362662638) at 2024-09-19 07:58 PM PDT -HackforLABot,2024-09-20T07:05:20Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2362981398) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:28Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2362981593) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:30Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2362981684) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:33Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2362981756) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:39Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2362981911) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:41Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2362981964) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:43Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2362982015) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:45Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2362982077) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:47Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2362982150) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:49Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2362982213) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:51Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2362982274) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:53Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2362982315) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:55Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2362982389) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:57Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2362982433) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:06:03Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2362982574) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:06Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2362982654) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:10Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2362982776) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:12Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2362982819) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:13Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2362982855) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:15Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2362982896) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:17Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2362982960) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:19Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2362983021) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:21Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2362983064) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:23Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2362983134) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:25Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2362983178) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:26Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2362983226) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:28Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2362983271) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:30Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2362983304) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:31Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2362983357) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:33Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2362983402) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:34Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2362983447) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:36Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2362983499) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:40Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2362983603) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:42Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2362983653) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:43Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2362983676) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:45Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2362983719) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:46Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2362983755) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:48Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2362983807) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:50Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2362983858) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:52Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2362983916) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:53Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2362983966) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:55Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2362984026) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:57Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2362984063) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:58Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2362984111) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:07:00Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2362984163) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:03Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2362984226) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:05Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2362984273) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:06Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2362984317) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:10Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2362984417) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:12Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2362984477) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:14Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2362984531) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:19Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2362984648) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:21Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2362984706) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:33Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2362985010) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:35Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2362985060) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:36Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2362985114) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:38Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2362985158) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:40Z,- HackforLABot commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2362985217) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T18:01:38Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2364253402) at 2024-09-20 11:01 AM PDT -HackforLABot,2024-09-20T23:59:50Z,- HackforLABot reopened issue: [6715](https://github.com/hackforla/website/issues/6715#event-12842005024) at 2024-09-20 04:59 PM PDT -HackforLABot,2024-09-20T23:59:56Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2364764798) at 2024-09-20 04:59 PM PDT -HackforLABot,2024-09-20T23:59:56Z,- HackforLABot commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2364764802) at 2024-09-20 04:59 PM PDT -HackforLABot,2024-09-21T16:48:22Z,- HackforLABot commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2365250049) at 2024-09-21 09:48 AM PDT -HackforLABot,2024-09-21T18:59:55Z,- HackforLABot commented on issue: [7488](https://github.com/hackforla/website/issues/7488#issuecomment-2365288779) at 2024-09-21 11:59 AM PDT -HackforLABot,2024-09-21T19:14:57Z,- HackforLABot commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2365292643) at 2024-09-21 12:14 PM PDT -HackforLABot,2024-09-21T19:14:57Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365292647) at 2024-09-21 12:14 PM PDT -HackforLABot,2024-09-22T17:27:27Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2366883244) at 2024-09-22 10:27 AM PDT -HackforLABot,2024-09-22T18:03:25Z,- HackforLABot commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2366897267) at 2024-09-22 11:03 AM PDT -HackforLABot,2024-09-23T01:55:23Z,- HackforLABot commented on issue: [7442](https://github.com/hackforla/website/issues/7442#issuecomment-2367108207) at 2024-09-22 06:55 PM PDT -HackforLABot,2024-09-23T01:55:24Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2367108211) at 2024-09-22 06:55 PM PDT -HackforLABot,2024-09-23T03:18:56Z,- HackforLABot commented on pull request: [7507](https://github.com/hackforla/website/pull/7507#issuecomment-2367164097) at 2024-09-22 08:18 PM PDT -HackforLABot,2024-09-23T14:29:51Z,- HackforLABot commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2368459995) at 2024-09-23 07:29 AM PDT -HackforLABot,2024-09-23T15:58:10Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2368718468) at 2024-09-23 08:58 AM PDT -HackforLABot,2024-09-23T18:25:16Z,- HackforLABot reopened issue: [6426](https://github.com/hackforla/website/issues/6426#event-12865964727) at 2024-09-23 11:25 AM PDT -HackforLABot,2024-09-23T18:25:22Z,- HackforLABot commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2369048734) at 2024-09-23 11:25 AM PDT -HackforLABot,2024-09-23T18:25:23Z,- HackforLABot commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2369048754) at 2024-09-23 11:25 AM PDT -HackforLABot,2024-09-25T02:26:07Z,- HackforLABot commented on issue: [7494](https://github.com/hackforla/website/issues/7494#issuecomment-2372759527) at 2024-09-24 07:26 PM PDT -HackforLABot,2024-09-25T02:54:30Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2372798413) at 2024-09-24 07:54 PM PDT -HackforLABot,2024-09-25T02:54:31Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2372798432) at 2024-09-24 07:54 PM PDT -HackforLABot,2024-09-25T02:56:09Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2372800389) at 2024-09-24 07:56 PM PDT -HackforLABot,2024-09-26T15:11:41Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2377253709) at 2024-09-26 08:11 AM PDT -HackforLABot,2024-09-26T15:11:42Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2377253723) at 2024-09-26 08:11 AM PDT -HackforLABot,2024-09-27T03:05:58Z,- HackforLABot commented on issue: [7515](https://github.com/hackforla/website/issues/7515#issuecomment-2378318196) at 2024-09-26 08:05 PM PDT -HackforLABot,2024-09-27T07:05:07Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2378548473) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:09Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2378548512) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:15Z,- HackforLABot commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2378548691) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:17Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2378548725) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:19Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2378548789) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:20Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2378548831) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:25Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2378548955) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:27Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2378549030) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:29Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2378549076) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:30Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2378549130) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:33Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2378549207) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:36Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2378549293) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:39Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2378549380) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:42Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2378549444) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:44Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2378549506) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:46Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2378549571) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:48Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2378549703) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:50Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2378549867) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:52Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2378549918) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:55Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2378549991) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:57Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2378550080) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:59Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2378550134) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:06:01Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2378550171) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:02Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2378550213) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:04Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2378550254) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:07Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2378550328) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:09Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2378550377) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:10Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2378550424) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:12Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2378550460) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:14Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2378550492) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:15Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2378550532) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:17Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2378550581) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:19Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2378550628) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:20Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2378550666) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:23Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2378550720) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:25Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2378550812) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:27Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2378551069) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:28Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2378551201) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:30Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2378551280) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:34Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2378551491) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:37Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2378551606) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:39Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2378551656) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:41Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2378551712) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:42Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2378551754) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:44Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2378551819) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:46Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2378551891) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:51Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2378552036) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:53Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2378552076) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:55Z,- HackforLABot commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2378552132) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:58Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2378552222) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:07:02Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2378552305) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:05Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2378552415) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:07Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2378552461) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:09Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2378552520) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:18Z,- HackforLABot commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2378552764) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:23Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2378552881) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:25Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2378552940) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:28Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2378553008) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:30Z,- HackforLABot commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2378553087) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T14:31:11Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2379421752) at 2024-09-27 07:31 AM PDT -HackforLABot,2024-09-27T16:18:15Z,- HackforLABot commented on issue: [7403](https://github.com/hackforla/website/issues/7403#issuecomment-2379639973) at 2024-09-27 09:18 AM PDT -HackforLABot,2024-09-27T21:21:46Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380075545) at 2024-09-27 02:21 PM PDT -HackforLABot,2024-09-28T22:22:03Z,- HackforLABot commented on issue: [7537](https://github.com/hackforla/website/issues/7537#issuecomment-2381010475) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:10Z,- HackforLABot commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2381010498) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:36Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2381010597) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:41Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2381010607) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:42Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2381010610) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:51Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2381010652) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:52Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2381010666) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:54Z,- HackforLABot commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2381010672) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-29T18:41:36Z,- HackforLABot commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381457811) at 2024-09-29 11:41 AM PDT -HackforLABot,2024-09-29T21:41:27Z,- HackforLABot commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381620539) at 2024-09-29 02:41 PM PDT -HackforLABot,2024-10-01T00:42:18Z,- HackforLABot commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2384560649) at 2024-09-30 05:42 PM PDT -HackforLABot,2024-10-01T03:52:16Z,- HackforLABot commented on issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2384729676) at 2024-09-30 08:52 PM PDT -HackforLABot,2024-10-01T11:07:53Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2385487775) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:53Z,- HackforLABot closed issue as completed: [7027](https://github.com/hackforla/website/issues/7027#event-14470548716) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:53Z,- HackforLABot closed issue as completed: [7064](https://github.com/hackforla/website/issues/7064#event-14470548840) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot closed issue as completed: [7031](https://github.com/hackforla/website/issues/7031#event-14470549014) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2385487812) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot closed issue as completed: [7033](https://github.com/hackforla/website/issues/7033#event-14470548919) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2385487793) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:55Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2385487835) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:55Z,- HackforLABot closed issue as completed: [7025](https://github.com/hackforla/website/issues/7025#event-14470549132) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:55Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2385487823) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:57Z,- HackforLABot closed issue as completed: [7023](https://github.com/hackforla/website/issues/7023#event-14470549761) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:58Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2385487922) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:58Z,- HackforLABot closed issue as completed: [6944](https://github.com/hackforla/website/issues/6944#event-14470549871) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:58Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2385487895) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:59Z,- HackforLABot closed issue as completed: [6945](https://github.com/hackforla/website/issues/6945#event-14470550140) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:08:00Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2385487961) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:03Z,- HackforLABot closed issue as completed: [6881](https://github.com/hackforla/website/issues/6881#event-14470550979) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:03Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2385488062) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:03Z,- HackforLABot closed issue as completed: [6952](https://github.com/hackforla/website/issues/6952#event-14470550828) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:04Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2385488079) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:04Z,- HackforLABot closed issue as completed: [7021](https://github.com/hackforla/website/issues/7021#event-14470551216) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:05Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2385488118) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:06Z,- HackforLABot closed issue as completed: [7022](https://github.com/hackforla/website/issues/7022#event-14470551603) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:07Z,- HackforLABot closed issue as completed: [6954](https://github.com/hackforla/website/issues/6954#event-14470551810) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:07Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2385488176) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:08Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2385488205) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:08Z,- HackforLABot closed issue as completed: [7032](https://github.com/hackforla/website/issues/7032#event-14470551970) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:09Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2385488249) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:09Z,- HackforLABot closed issue as completed: [6951](https://github.com/hackforla/website/issues/6951#event-14470552094) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:09Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2385488234) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:11Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2385488317) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:11Z,- HackforLABot closed issue as completed: [7035](https://github.com/hackforla/website/issues/7035#event-14470552534) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:45Z,- HackforLABot opened issue: [7553](https://github.com/hackforla/website/issues/7553) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T13:53:35Z,- HackforLABot reopened issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2088597236) at 2024-10-01 06:53 AM PDT -HackforLABot,2024-10-01T13:53:41Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386022923) at 2024-10-01 06:53 AM PDT -HackforLABot,2024-10-01T13:53:41Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386022875) at 2024-10-01 06:53 AM PDT -HackforLABot,2024-10-01T13:57:21Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 06:57 AM PDT -HackforLABot,2024-10-01T14:00:23Z,- HackforLABot reopened issue: [6419](https://github.com/hackforla/website/issues/6419#event-14473533870) at 2024-10-01 07:00 AM PDT -HackforLABot,2024-10-01T14:00:29Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386057061) at 2024-10-01 07:00 AM PDT -HackforLABot,2024-10-01T14:00:30Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386057081) at 2024-10-01 07:00 AM PDT -HackforLABot,2024-10-01T14:41:13Z,- HackforLABot reopened issue: [6419](https://github.com/hackforla/website/issues/6419#event-14473843734) at 2024-10-01 07:41 AM PDT -HackforLABot,2024-10-01T14:41:19Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386185500) at 2024-10-01 07:41 AM PDT -HackforLABot,2024-10-01T14:41:19Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386185462) at 2024-10-01 07:41 AM PDT -HackforLABot,2024-10-01T14:52:05Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386224583) at 2024-10-01 07:52 AM PDT -HackforLABot,2024-10-01T18:52:29Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2386730247) at 2024-10-01 11:52 AM PDT -HackforLABot,2024-10-01T20:46:53Z,- HackforLABot commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387043951) at 2024-10-01 01:46 PM PDT -HackforLABot,2024-10-01T21:30:48Z,- HackforLABot commented on issue: [7442](https://github.com/hackforla/website/issues/7442#issuecomment-2387111672) at 2024-10-01 02:30 PM PDT -HackforLABot,2024-10-01T22:49:02Z,- HackforLABot reopened issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2050820621) at 2024-10-01 03:49 PM PDT -HackforLABot,2024-10-01T22:49:08Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2387218710) at 2024-10-01 03:49 PM PDT -HackforLABot,2024-10-01T22:49:08Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2387218702) at 2024-10-01 03:49 PM PDT -HackforLABot,2024-10-01T22:56:32Z,- HackforLABot commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2387226214) at 2024-10-01 03:56 PM PDT -HackforLABot,2024-10-01T22:56:33Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2387226224) at 2024-10-01 03:56 PM PDT -HackforLABot,2024-10-02T23:20:22Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2389968144) at 2024-10-02 04:20 PM PDT -HackforLABot,2024-10-02T23:20:22Z,- HackforLABot commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2389968138) at 2024-10-02 04:20 PM PDT -HackforLABot,2024-10-02T23:31:45Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2389977380) at 2024-10-02 04:31 PM PDT -HackforLABot,2024-10-03T06:24:56Z,- HackforLABot reopened issue: [6956](https://github.com/hackforla/website/issues/6956#event-13954113563) at 2024-10-02 11:24 PM PDT -HackforLABot,2024-10-03T06:25:02Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2390620039) at 2024-10-02 11:25 PM PDT -HackforLABot,2024-10-03T06:25:02Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2390620049) at 2024-10-02 11:25 PM PDT -HackforLABot,2024-10-03T15:40:56Z,- HackforLABot commented on issue: [7549](https://github.com/hackforla/website/issues/7549#issuecomment-2391742689) at 2024-10-03 08:40 AM PDT -HackforLABot,2024-10-03T15:41:49Z,- HackforLABot commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2391744519) at 2024-10-03 08:41 AM PDT -HackforLABot,2024-10-03T23:37:05Z,- HackforLABot commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392513105) at 2024-10-03 04:37 PM PDT -HackforLABot,2024-10-04T02:33:16Z,- HackforLABot commented on issue: [7355](https://github.com/hackforla/website/issues/7355#issuecomment-2392671168) at 2024-10-03 07:33 PM PDT -HackforLABot,2024-10-04T03:30:20Z,- HackforLABot commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2392723934) at 2024-10-03 08:30 PM PDT -HackforLABot,2024-10-04T07:05:25Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2392973595) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:27Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2392973654) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:31Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2392973763) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:34Z,- HackforLABot commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2392973822) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:38Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2392973938) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:41Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2392974013) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:43Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2392974077) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:51Z,- HackforLABot commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2392974254) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:53Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2392974317) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:56Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2392974391) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:58Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2392974438) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:06:00Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2392974506) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:04Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2392974621) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:08Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2392974717) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:11Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2392974773) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:13Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2392974828) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:15Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2392974883) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:17Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2392974940) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:19Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2392975023) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:21Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2392975089) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:24Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2392975152) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:27Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2392975262) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:29Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2392975314) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:31Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2392975368) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:38Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2392975522) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:40Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2392975580) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:43Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2392975646) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:45Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2392975697) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:47Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2392975763) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:52Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2392975878) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:57Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2392976033) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:07:01Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2392976120) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:03Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2392976177) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:05Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2392976250) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:08Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2392976330) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:16Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2392976572) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:21Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2392976698) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:26Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2392976812) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:29Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2392976899) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:34Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2392977029) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:37Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2392977086) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:50Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2392977389) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:56Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2392977536) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:08:01Z,- HackforLABot commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2392977688) at 2024-10-04 12:08 AM PDT -HackforLABot,2024-10-05T08:45:01Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2394984031) at 2024-10-05 01:45 AM PDT -HackforLABot,2024-10-05T20:04:12Z,- HackforLABot commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2395175114) at 2024-10-05 01:04 PM PDT -HackforLABot,2024-10-06T15:27:25Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395478878) at 2024-10-06 08:27 AM PDT -HackforLABot,2024-10-06T15:28:44Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395479262) at 2024-10-06 08:28 AM PDT -HackforLABot,2024-10-07T20:26:50Z,- HackforLABot commented on issue: [7566](https://github.com/hackforla/website/issues/7566#issuecomment-2397827082) at 2024-10-07 01:26 PM PDT -HackforLABot,2024-10-07T20:42:06Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2397855008) at 2024-10-07 01:42 PM PDT -HackforLABot,2024-10-08T00:13:08Z,- HackforLABot commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398250655) at 2024-10-07 05:13 PM PDT -HackforLABot,2024-10-08T00:26:23Z,- HackforLABot commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2398279924) at 2024-10-07 05:26 PM PDT -HackforLABot,2024-10-08T00:52:37Z,- HackforLABot commented on issue: [7570](https://github.com/hackforla/website/issues/7570#issuecomment-2398336889) at 2024-10-07 05:52 PM PDT -HackforLABot,2024-10-08T00:55:31Z,- HackforLABot commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2398343501) at 2024-10-07 05:55 PM PDT -HackforLABot,2024-10-08T01:05:38Z,- HackforLABot commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398366013) at 2024-10-07 06:05 PM PDT -HackforLABot,2024-10-08T09:20:18Z,- HackforLABot commented on issue: [7576](https://github.com/hackforla/website/issues/7576#issuecomment-2399317571) at 2024-10-08 02:20 AM PDT -HackforLABot,2024-10-08T23:38:02Z,- HackforLABot commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2400994155) at 2024-10-08 04:38 PM PDT -HackforLABot,2024-10-09T07:46:08Z,- HackforLABot commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2401584474) at 2024-10-09 12:46 AM PDT -HackforLABot,2024-10-09T21:04:47Z,- HackforLABot commented on issue: [7555](https://github.com/hackforla/website/issues/7555#issuecomment-2403427183) at 2024-10-09 02:04 PM PDT -HackforLABot,2024-10-10T04:18:44Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2403936188) at 2024-10-09 09:18 PM PDT -HackforLABot,2024-10-10T17:14:11Z,- HackforLABot commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405649238) at 2024-10-10 10:14 AM PDT -HackforLABot,2024-10-11T07:05:59Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2406687562) at 2024-10-11 12:05 AM PDT -HackforLABot,2024-10-11T07:06:02Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2406687652) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:04Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2406687708) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:09Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2406687834) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:13Z,- HackforLABot commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2406687934) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:15Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2406688005) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:18Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2406688062) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:20Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2406688119) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:27Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2406688269) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:30Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2406688342) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:33Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2406688413) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:36Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2406688461) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:39Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2406688537) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:41Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2406688615) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:43Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2406688654) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:46Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2406688711) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:48Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2406688769) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:50Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2406688807) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:54Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2406688888) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:57Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2406688962) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:07:02Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2406689092) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:04Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2406689141) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:07Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2406689188) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:09Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2406689238) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:14Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2406689371) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:17Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2406689442) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:20Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2406689513) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:22Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2406689577) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:25Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2406689640) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:27Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2406689696) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:29Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2406689756) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:31Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2406689812) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:34Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2406689864) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:36Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2406689910) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:38Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2406689958) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:40Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2406690018) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:44Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2406690094) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:48Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2406690191) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:50Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2406690249) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:55Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2406690358) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:58Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2406690408) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:08:02Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2406690530) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:05Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2406690605) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:07Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2406690650) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:12Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2406690765) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:21Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2406691001) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:26Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2406691095) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:45Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2406691631) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:09:30Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2406692794) at 2024-10-11 12:09 AM PDT -HackforLABot,2024-10-11T07:10:07Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2406693728) at 2024-10-11 12:10 AM PDT -HackforLABot,2024-10-13T00:29:18Z,- HackforLABot commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2408758819) at 2024-10-12 05:29 PM PDT -HackforLABot,2024-10-13T18:25:11Z,- HackforLABot commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2409076885) at 2024-10-13 11:25 AM PDT -HackforLABot,2024-10-13T21:12:29Z,- HackforLABot commented on issue: [7477](https://github.com/hackforla/website/issues/7477#issuecomment-2409133046) at 2024-10-13 02:12 PM PDT -HackforLABot,2024-10-14T20:15:08Z,- HackforLABot commented on issue: [7473](https://github.com/hackforla/website/issues/7473#issuecomment-2412121934) at 2024-10-14 01:15 PM PDT -HackforLABot,2024-10-14T22:40:51Z,- HackforLABot commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2412459670) at 2024-10-14 03:40 PM PDT -HackforLABot,2024-10-15T08:54:52Z,- HackforLABot commented on issue: [7594](https://github.com/hackforla/website/issues/7594#issuecomment-2413289520) at 2024-10-15 01:54 AM PDT -HackforLABot,2024-10-15T19:43:19Z,- HackforLABot commented on issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2414864601) at 2024-10-15 12:43 PM PDT -HackforLABot,2024-10-16T10:34:53Z,- HackforLABot reopened issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2403289199) at 2024-10-16 03:34 AM PDT -HackforLABot,2024-10-17T20:12:11Z,- HackforLABot commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2420465247) at 2024-10-17 01:12 PM PDT -HackforLABot,2024-10-18T02:15:44Z,- HackforLABot commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2421105636) at 2024-10-17 07:15 PM PDT -HackforLABot,2024-10-18T07:05:10Z,- HackforLABot commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2421599030) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:13Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2421599128) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:15Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2421599174) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:17Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2421599238) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:21Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2421599443) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:23Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2421599617) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:25Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2421599715) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:30Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2421599983) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:32Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2421600059) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:34Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2421600138) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:36Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2421600218) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:38Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2421600298) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:42Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2421600455) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:44Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2421600554) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:46Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2421600690) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:48Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2421600881) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:51Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2421601032) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:53Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2421601125) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:55Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2421601190) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:57Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2421601269) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:59Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2421601335) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:06:01Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2421601381) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:06Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2421601564) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:08Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2421601605) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:12Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2421601710) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:14Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2421601786) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:16Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2421601855) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:18Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2421601942) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:20Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2421602034) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:22Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2421602112) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:25Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2421602201) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:27Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2421602282) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:29Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2421602364) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:31Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2421602460) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:33Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2421602521) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:34Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2421602571) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:40Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2421602761) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:42Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2421602832) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:44Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2421602899) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:47Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2421603017) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:49Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2421603102) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:51Z,- HackforLABot commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2421603177) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:54Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2421603266) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:56Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2421603343) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:58Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2421603412) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:07:06Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2421603691) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:09Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2421603840) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:15Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2421604069) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:27Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2421604429) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:34Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2421604688) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:08:42Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2421606651) at 2024-10-18 12:08 AM PDT -HackforLABot,2024-10-18T16:32:28Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2422845169) at 2024-10-18 09:32 AM PDT -HackforLABot,2024-10-18T19:55:12Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2423141084) at 2024-10-18 12:55 PM PDT -HackforLABot,2024-10-18T19:55:12Z,- HackforLABot commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2423141080) at 2024-10-18 12:55 PM PDT -HackforLABot,2024-10-18T20:07:05Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2423157176) at 2024-10-18 01:07 PM PDT -HackforLABot,2024-10-18T20:07:05Z,- HackforLABot commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423157170) at 2024-10-18 01:07 PM PDT -HackforLABot,2024-10-18T20:08:14Z,- HackforLABot commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423158875) at 2024-10-18 01:08 PM PDT -HackforLABot,2024-10-18T20:09:40Z,- HackforLABot commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2423160800) at 2024-10-18 01:09 PM PDT -HackforLABot,2024-10-18T20:09:41Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2423160806) at 2024-10-18 01:09 PM PDT -HackforLABot,2024-10-18T22:08:58Z,- HackforLABot commented on issue: [7576](https://github.com/hackforla/website/issues/7576#issuecomment-2423307337) at 2024-10-18 03:08 PM PDT -HackforLABot,2024-10-19T22:02:21Z,- HackforLABot commented on issue: [7563](https://github.com/hackforla/website/issues/7563#issuecomment-2424232746) at 2024-10-19 03:02 PM PDT -HackforLABot,2024-10-20T01:14:57Z,- HackforLABot commented on issue: [7602](https://github.com/hackforla/website/issues/7602#issuecomment-2424373571) at 2024-10-19 06:14 PM PDT -HackforLABot,2024-10-20T17:28:39Z,- HackforLABot commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2425140170) at 2024-10-20 10:28 AM PDT -HackforLABot,2024-10-20T17:31:03Z,- HackforLABot commented on issue: [2900](https://github.com/hackforla/website/issues/2900#issuecomment-2425142712) at 2024-10-20 10:31 AM PDT -HackforLABot,2024-10-20T22:05:12Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2425247835) at 2024-10-20 03:05 PM PDT -HackforLABot,2024-10-20T22:05:12Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2425247831) at 2024-10-20 03:05 PM PDT -HackforLABot,2024-10-21T17:47:35Z,- HackforLABot commented on issue: [7614](https://github.com/hackforla/website/issues/7614#issuecomment-2427352357) at 2024-10-21 10:47 AM PDT -HackforLABot,2024-10-21T21:01:07Z,- HackforLABot commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2427709841) at 2024-10-21 02:01 PM PDT -HackforLABot,2024-10-22T00:52:03Z,- HackforLABot commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2427997171) at 2024-10-21 05:52 PM PDT -HackforLABot,2024-10-22T23:12:57Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2430485803) at 2024-10-22 04:12 PM PDT -HackforLABot,2024-10-22T23:12:57Z,- HackforLABot commented on issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2430485796) at 2024-10-22 04:12 PM PDT -HackforLABot,2024-10-23T01:22:19Z,- HackforLABot commented on issue: [7541](https://github.com/hackforla/website/issues/7541#issuecomment-2430607030) at 2024-10-22 06:22 PM PDT -HackforLABot,2024-10-23T17:44:16Z,- HackforLABot commented on issue: [7489](https://github.com/hackforla/website/issues/7489#issuecomment-2432985047) at 2024-10-23 10:44 AM PDT -HackforLABot,2024-10-23T21:55:26Z,- HackforLABot commented on pull request: [7630](https://github.com/hackforla/website/pull/7630#issuecomment-2433537852) at 2024-10-23 02:55 PM PDT -HackforLABot,2024-10-24T06:44:41Z,- HackforLABot commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2434430602) at 2024-10-23 11:44 PM PDT -HackforLABot,2024-10-24T16:57:28Z,- HackforLABot commented on issue: [7500](https://github.com/hackforla/website/issues/7500#issuecomment-2435793910) at 2024-10-24 09:57 AM PDT -HackforLABot,2024-10-25T02:27:30Z,- HackforLABot commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436684617) at 2024-10-24 07:27 PM PDT -HackforLABot,2024-10-25T02:33:42Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2436689864) at 2024-10-24 07:33 PM PDT -HackforLABot,2024-10-25T02:35:22Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2436691276) at 2024-10-24 07:35 PM PDT -HackforLABot,2024-10-25T02:35:22Z,- HackforLABot commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2436691275) at 2024-10-24 07:35 PM PDT -HackforLABot,2024-10-25T02:37:57Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2436693434) at 2024-10-24 07:37 PM PDT -HackforLABot,2024-10-25T02:37:57Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2436693437) at 2024-10-24 07:37 PM PDT -HackforLABot,2024-10-25T02:43:09Z,- HackforLABot commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436697674) at 2024-10-24 07:43 PM PDT -HackforLABot,2024-10-25T03:54:21Z,- HackforLABot commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2436767645) at 2024-10-24 08:54 PM PDT -HackforLABot,2024-10-25T07:05:34Z,- HackforLABot commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2437050930) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:39Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2437051067) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:44Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2437051229) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:49Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2437051343) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:52Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2437051422) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:55Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2437051522) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:06:00Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2437051667) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:02Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2437051714) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:04Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2437051771) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:06Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2437051830) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:08Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2437051888) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:12Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2437051977) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:14Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2437052036) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:16Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2437052090) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:21Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2437052208) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:23Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2437052253) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:25Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2437052308) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:29Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2437052385) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:32Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2437052483) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:35Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2437052576) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:38Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2437052634) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:40Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2437052670) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:57Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2437053130) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:59Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2437053188) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:07:02Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2437053252) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:04Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2437053296) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:06Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2437053358) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:08Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2437053435) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:11Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2437053499) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:13Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2437053554) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:16Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2437053615) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:18Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2437053668) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:20Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2437053731) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:22Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2437053798) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:24Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2437053846) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:28Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2437053943) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:30Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2437053999) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:32Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2437054064) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:34Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2437054103) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:40Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2437054275) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:45Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2437054407) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:50Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2437054572) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:08:08Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2437055098) at 2024-10-25 12:08 AM PDT -HackforLABot,2024-10-25T07:08:58Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2437056686) at 2024-10-25 12:08 AM PDT -HackforLABot,2024-10-25T15:39:41Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2438154888) at 2024-10-25 08:39 AM PDT -HackforLABot,2024-10-25T17:57:12Z,- HackforLABot commented on issue: [7542](https://github.com/hackforla/website/issues/7542#issuecomment-2438453248) at 2024-10-25 10:57 AM PDT -HackforLABot,2024-10-26T20:49:32Z,- HackforLABot commented on issue: [7561](https://github.com/hackforla/website/issues/7561#issuecomment-2439732465) at 2024-10-26 01:49 PM PDT -HackforLABot,2024-10-27T18:00:04Z,- HackforLABot commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2440118727) at 2024-10-27 11:00 AM PDT -HackforLABot,2024-10-27T23:46:49Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224295) at 2024-10-27 04:46 PM PDT -HackforLABot,2024-10-27T23:47:55Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224668) at 2024-10-27 04:47 PM PDT -HackforLABot,2024-10-27T23:48:31Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224870) at 2024-10-27 04:48 PM PDT -HackforLABot,2024-10-28T17:38:31Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442224857) at 2024-10-28 10:38 AM PDT -HackforLABot,2024-10-28T21:33:27Z,- HackforLABot commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2442674523) at 2024-10-28 02:33 PM PDT -HackforLABot,2024-10-28T21:39:44Z,- HackforLABot commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2442684031) at 2024-10-28 02:39 PM PDT -HackforLABot,2024-10-29T02:57:46Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2443082725) at 2024-10-28 07:57 PM PDT -HackforLABot,2024-10-29T20:53:29Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2445309975) at 2024-10-29 01:53 PM PDT -HackforLABot,2024-10-29T21:42:08Z,- HackforLABot commented on issue: [7584](https://github.com/hackforla/website/issues/7584#issuecomment-2445384741) at 2024-10-29 02:42 PM PDT -HackforLABot,2024-10-30T19:16:25Z,- HackforLABot commented on issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2448143759) at 2024-10-30 12:16 PM PDT -HackforLABot,2024-10-30T19:16:25Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2448143771) at 2024-10-30 12:16 PM PDT -HackforLABot,2024-10-31T11:30:04Z,- HackforLABot reopened issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2398331036) at 2024-10-31 04:30 AM PDT -HackforLABot,2024-10-31T11:39:58Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2449647523) at 2024-10-31 04:39 AM PDT -HackforLABot,2024-10-31T11:39:59Z,- HackforLABot commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2449647535) at 2024-10-31 04:39 AM PDT -HackforLABot,2024-10-31T11:53:19Z,- HackforLABot commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2449668943) at 2024-10-31 04:53 AM PDT -HackforLABot,2024-10-31T22:55:31Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2450986350) at 2024-10-31 03:55 PM PDT -HackforLABot,2024-11-01T02:28:51Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2451176734) at 2024-10-31 07:28 PM PDT -HackforLABot,2024-11-01T02:34:31Z,- HackforLABot commented on issue: [7682](https://github.com/hackforla/website/issues/7682#issuecomment-2451181885) at 2024-10-31 07:34 PM PDT -HackforLABot,2024-11-01T07:05:21Z,- HackforLABot commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2451408214) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:28Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2451408315) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:29Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2451408345) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:32Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2451408376) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:34Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2451408411) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:37Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2451408462) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:39Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2451408506) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:42Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2451408541) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:44Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2451408574) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:48Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2451408637) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:49Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2451408661) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:51Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2451408697) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:54Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2451408738) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:55Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2451408763) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:57Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2451408782) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:59Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2451408816) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:06:01Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2451408853) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:03Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2451408877) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:06Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2451408920) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:08Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2451408959) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:10Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2451408990) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:11Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2451409016) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:13Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2451409046) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:16Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2451409076) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:17Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2451409103) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:19Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2451409132) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:20Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2451409161) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:22Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2451409184) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:23Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2451409208) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:26Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2451409251) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:28Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2451409289) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:30Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2451409320) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:32Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2451409334) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:33Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2451409367) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:35Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2451409404) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:39Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2451409459) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:40Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2451409490) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:42Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2451409528) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:46Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2451409602) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:53Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2451409702) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:07:07Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2451409956) at 2024-11-01 12:07 AM PDT -HackforLABot,2024-11-01T07:07:13Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2451410036) at 2024-11-01 12:07 AM PDT -HackforLABot,2024-11-01T11:07:35Z,- HackforLABot closed issue as completed: [6947](https://github.com/hackforla/website/issues/6947#event-15064564632) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:36Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2451703167) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:36Z,- HackforLABot closed issue as completed: [7225](https://github.com/hackforla/website/issues/7225#event-15064564763) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:37Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2451703190) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2451703214) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot closed issue as completed: [7209](https://github.com/hackforla/website/issues/7209#event-15064565436) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2451703224) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot closed issue as completed: [7338](https://github.com/hackforla/website/issues/7338#event-15064565477) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:40Z,- HackforLABot closed issue as completed: [6950](https://github.com/hackforla/website/issues/6950#event-15064566751) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:40Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2451703248) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:40Z,- HackforLABot closed issue as completed: [7208](https://github.com/hackforla/website/issues/7208#event-15064566717) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:41Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2451703258) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:42Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2451703281) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:42Z,- HackforLABot closed issue as completed: [7202](https://github.com/hackforla/website/issues/7202#event-15064567471) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:44Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2451703340) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:44Z,- HackforLABot closed issue as completed: [7231](https://github.com/hackforla/website/issues/7231#event-15064568695) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:45Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2451703371) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:45Z,- HackforLABot closed issue as completed: [6532](https://github.com/hackforla/website/issues/6532#event-15064569317) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:45Z,- HackforLABot closed issue as completed: [6716](https://github.com/hackforla/website/issues/6716#event-15064569372) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:46Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2451703375) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:46Z,- HackforLABot closed issue as completed: [7066](https://github.com/hackforla/website/issues/7066#event-15064569968) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:47Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2451703395) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:48Z,- HackforLABot closed issue as completed: [7330](https://github.com/hackforla/website/issues/7330#event-15064570745) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:49Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2451703444) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:49Z,- HackforLABot closed issue as completed: [7218](https://github.com/hackforla/website/issues/7218#event-15064571301) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:49Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2451703434) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:08:21Z,- HackforLABot opened issue: [7684](https://github.com/hackforla/website/issues/7684) at 2024-11-01 04:08 AM PDT -HackforLABot,2024-11-02T16:56:20Z,- HackforLABot commented on issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2453047390) at 2024-11-02 08:56 AM PST -HackforLABot,2024-11-04T04:57:06Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2453829592) at 2024-11-03 08:57 PM PST -HackforLABot,2024-11-04T21:48:41Z,- HackforLABot commented on issue: [7619](https://github.com/hackforla/website/issues/7619#issuecomment-2455769779) at 2024-11-04 01:48 PM PST -HackforLABot,2024-11-04T22:11:44Z,- HackforLABot commented on issue: [7687](https://github.com/hackforla/website/issues/7687#issuecomment-2455805808) at 2024-11-04 02:11 PM PST -HackforLABot,2024-11-04T22:46:22Z,- HackforLABot commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455855588) at 2024-11-04 02:46 PM PST -HackforLABot,2024-11-05T00:17:45Z,- HackforLABot commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455965752) at 2024-11-04 04:17 PM PST -HackforLABot,2024-11-05T01:33:56Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2456042065) at 2024-11-04 05:33 PM PST -HackforLABot,2024-11-05T01:44:41Z,- HackforLABot commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2456051866) at 2024-11-04 05:44 PM PST -HackforLABot,2024-11-05T13:34:30Z,- HackforLABot commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2457199661) at 2024-11-05 05:34 AM PST -HackforLABot,2024-11-05T23:08:40Z,- HackforLABot commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458380444) at 2024-11-05 03:08 PM PST -HackforLABot,2024-11-06T14:37:05Z,- HackforLABot commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2459924396) at 2024-11-06 06:37 AM PST -HackforLABot,2024-11-06T17:50:33Z,- HackforLABot commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460418975) at 2024-11-06 09:50 AM PST -HackforLABot,2024-11-06T20:01:51Z,- HackforLABot commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2460664575) at 2024-11-06 12:01 PM PST -HackforLABot,2024-11-07T16:57:34Z,- HackforLABot commented on issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2462764818) at 2024-11-07 08:57 AM PST -HackforLABot,2024-11-07T17:08:28Z,- HackforLABot commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2462788218) at 2024-11-07 09:08 AM PST -HackforLABot,2024-11-07T17:15:07Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2462802842) at 2024-11-07 09:15 AM PST -HackforLABot,2024-11-07T17:19:48Z,- HackforLABot commented on issue: [7646](https://github.com/hackforla/website/issues/7646#issuecomment-2462814466) at 2024-11-07 09:19 AM PST -HackforLABot,2024-11-07T21:20:27Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2463238412) at 2024-11-07 01:20 PM PST -HackforLABot,2024-11-07T21:20:28Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2463238434) at 2024-11-07 01:20 PM PST -HackforLABot,2024-11-07T21:30:57Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2463259105) at 2024-11-07 01:30 PM PST -HackforLABot,2024-11-07T21:30:57Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2463259089) at 2024-11-07 01:30 PM PST -HackforLABot,2024-11-07T21:53:19Z,- HackforLABot commented on issue: [7601](https://github.com/hackforla/website/issues/7601#issuecomment-2463303433) at 2024-11-07 01:53 PM PST -HackforLABot,2024-11-08T07:05:06Z,- HackforLABot commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2463919349) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:11Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2463919461) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:16Z,- HackforLABot commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2463919557) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:18Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2463919597) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:20Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2463919622) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:24Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2463919683) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:26Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2463919724) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:29Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2463919790) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:31Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2463919832) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:34Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2463919907) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:37Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2463919966) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:39Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2463920008) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:41Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2463920054) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:43Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2463920105) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:45Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2463920160) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:48Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2463920203) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:50Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2463920252) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:52Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2463920292) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:55Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2463920344) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:06:01Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2463920481) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:03Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2463920523) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:05Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2463920574) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:07Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2463920614) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:09Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2463920654) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:11Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2463920696) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:13Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2463920741) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:15Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2463920781) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:17Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2463920826) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:19Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2463920858) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:21Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2463920899) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:23Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2463920933) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:25Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2463920984) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:29Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2463921045) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:31Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2463921076) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:57Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2463921582) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:07:06Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2463921749) at 2024-11-07 11:07 PM PST -HackforLABot,2024-11-08T15:54:26Z,- HackforLABot commented on issue: [7647](https://github.com/hackforla/website/issues/7647#issuecomment-2465101317) at 2024-11-08 07:54 AM PST -HackforLABot,2024-11-08T19:38:24Z,- HackforLABot commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2465619534) at 2024-11-08 11:38 AM PST -HackforLABot,2024-11-09T19:52:04Z,- HackforLABot commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2466434786) at 2024-11-09 11:52 AM PST -HackforLABot,2024-11-09T23:27:08Z,- HackforLABot commented on issue: [7648](https://github.com/hackforla/website/issues/7648#issuecomment-2466501148) at 2024-11-09 03:27 PM PST -HackforLABot,2024-11-10T05:19:24Z,- HackforLABot commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2466591798) at 2024-11-09 09:19 PM PST -HackforLABot,2024-11-10T20:10:55Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2466893855) at 2024-11-10 12:10 PM PST -HackforLABot,2024-11-10T20:22:14Z,- HackforLABot commented on issue: [7649](https://github.com/hackforla/website/issues/7649#issuecomment-2466905103) at 2024-11-10 12:22 PM PST -HackforLABot,2024-11-11T17:09:55Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-11 09:09 AM PST -HackforLABot,2024-11-11T17:37:48Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2468707994) at 2024-11-11 09:37 AM PST -HackforLABot,2024-11-12T00:42:58Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359659) at 2024-11-11 04:42 PM PST -HackforLABot,2024-11-12T00:46:00Z,- HackforLABot commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2469362050) at 2024-11-11 04:46 PM PST -HackforLABot,2024-11-12T00:54:07Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469369813) at 2024-11-11 04:54 PM PST -HackforLABot,2024-11-12T00:59:54Z,- HackforLABot commented on issue: [7458](https://github.com/hackforla/website/issues/7458#issuecomment-2469374387) at 2024-11-11 04:59 PM PST -HackforLABot,2024-11-12T20:19:45Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2471502408) at 2024-11-12 12:19 PM PST -HackforLABot,2024-11-12T21:53:28Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2471660253) at 2024-11-12 01:53 PM PST -HackforLABot,2024-11-13T01:06:11Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2472068819) at 2024-11-12 05:06 PM PST -HackforLABot,2024-11-13T04:01:09Z,- HackforLABot commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2472325755) at 2024-11-12 08:01 PM PST -HackforLABot,2024-11-13T04:03:53Z,- HackforLABot commented on issue: [7668](https://github.com/hackforla/website/issues/7668#issuecomment-2472328170) at 2024-11-12 08:03 PM PST -HackforLABot,2024-11-13T04:25:17Z,- HackforLABot commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2472346947) at 2024-11-12 08:25 PM PST -HackforLABot,2024-11-13T16:09:22Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2474058622) at 2024-11-13 08:09 AM PST -HackforLABot,2024-11-13T19:38:22Z,- HackforLABot commented on issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2474576620) at 2024-11-13 11:38 AM PST -HackforLABot,2024-11-14T00:48:56Z,- HackforLABot commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2475121450) at 2024-11-13 04:48 PM PST -HackforLABot,2024-11-15T02:08:13Z,- HackforLABot commented on issue: [7474](https://github.com/hackforla/website/issues/7474#issuecomment-2477809285) at 2024-11-14 06:08 PM PST -HackforLABot,2024-11-15T03:38:25Z,- HackforLABot commented on issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2477888340) at 2024-11-14 07:38 PM PST -HackforLABot,2024-11-15T07:05:39Z,- HackforLABot commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2478100085) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:41Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2478100146) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:46Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2478100265) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:49Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2478100310) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:51Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2478100351) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:55Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2478100444) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:57Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2478100482) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:06:08Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2478100679) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:13Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2478100799) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:20Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2478100943) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:24Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2478101016) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:29Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2478101109) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:34Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2478101219) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:37Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2478101279) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:39Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2478101324) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:42Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2478101371) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:46Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2478101455) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:49Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2478101508) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:51Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2478101553) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:53Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2478101603) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:55Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2478101639) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:07:00Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2478101758) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:02Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2478101803) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:05Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2478101868) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:08Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2478101928) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:12Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2478102006) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:15Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2478102074) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:17Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2478102129) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:20Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2478102195) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:23Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2478102265) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:32Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2478102458) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:08:05Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2478103160) at 2024-11-14 11:08 PM PST -HackforLABot,2024-11-15T19:10:29Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2479744996) at 2024-11-15 11:10 AM PST -HackforLABot,2024-11-16T22:26:11Z,- HackforLABot commented on issue: [7647](https://github.com/hackforla/website/issues/7647#issuecomment-2480831717) at 2024-11-16 02:26 PM PST -HackforLABot,2024-11-17T17:32:25Z,- HackforLABot commented on issue: [7650](https://github.com/hackforla/website/issues/7650#issuecomment-2481394469) at 2024-11-17 09:32 AM PST -HackforLABot,2024-11-17T18:12:36Z,- HackforLABot commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2481413580) at 2024-11-17 10:12 AM PST -HackforLABot,2024-11-18T19:12:24Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2483894498) at 2024-11-18 11:12 AM PST -HackforLABot,2024-11-19T16:29:50Z,- HackforLABot commented on issue: [7603](https://github.com/hackforla/website/issues/7603#issuecomment-2486192232) at 2024-11-19 08:29 AM PST -HackforLABot,2024-11-19T19:14:02Z,- HackforLABot commented on issue: [7399](https://github.com/hackforla/website/issues/7399#issuecomment-2486544320) at 2024-11-19 11:14 AM PST -HackforLABot,2024-11-19T21:23:51Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2486781697) at 2024-11-19 01:23 PM PST -HackforLABot,2024-11-19T21:46:35Z,- HackforLABot commented on issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2486817802) at 2024-11-19 01:46 PM PST -HackforLABot,2024-11-20T02:27:03Z,- HackforLABot commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487197087) at 2024-11-19 06:27 PM PST -HackforLABot,2024-11-20T02:52:37Z,- HackforLABot commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487236019) at 2024-11-19 06:52 PM PST -HackforLABot,2024-11-20T03:07:57Z,- HackforLABot commented on issue: [7701](https://github.com/hackforla/website/issues/7701#issuecomment-2487251353) at 2024-11-19 07:07 PM PST -HackforLABot,2024-11-20T05:42:54Z,- HackforLABot commented on issue: [7702](https://github.com/hackforla/website/issues/7702#issuecomment-2487502809) at 2024-11-19 09:42 PM PST -HackforLABot,2024-11-21T03:05:04Z,- HackforLABot commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2489971058) at 2024-11-20 07:05 PM PST -HackforLABot,2024-11-22T07:05:28Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2493015858) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:32Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2493015949) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:34Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2493015994) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:37Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2493016034) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:41Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2493016136) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:43Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2493016202) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:47Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2493016309) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:50Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2493016389) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:52Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2493016423) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:57Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2493016536) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:06:01Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2493016651) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:03Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2493016700) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:05Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2493016748) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:09Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2493016836) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:12Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2493016910) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:17Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2493017019) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:19Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2493017070) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:21Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2493017110) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:23Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2493017149) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:25Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2493017186) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:27Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2493017240) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:29Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2493017285) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:31Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2493017332) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:33Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2493017379) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:35Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2493017417) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:38Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2493017489) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:40Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2493017534) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:42Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2493017577) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:44Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2493017611) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:07:17Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2493018474) at 2024-11-21 11:07 PM PST -HackforLABot,2024-11-22T07:29:53Z,- HackforLABot commented on issue: [7703](https://github.com/hackforla/website/issues/7703#issuecomment-2493054208) at 2024-11-21 11:29 PM PST -HackforLABot,2024-11-22T21:02:26Z,- HackforLABot commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2494794081) at 2024-11-22 01:02 PM PST -HackforLABot,2024-11-23T09:20:19Z,- HackforLABot commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2495413093) at 2024-11-23 01:20 AM PST -HackforLABot,2024-11-24T17:22:44Z,- HackforLABot commented on issue: [7760](https://github.com/hackforla/website/issues/7760#issuecomment-2496119633) at 2024-11-24 09:22 AM PST -HackforLABot,2024-11-24T18:37:28Z,- HackforLABot commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2496161660) at 2024-11-24 10:37 AM PST -HackforLABot,2024-11-24T19:14:31Z,- HackforLABot commented on issue: [7651](https://github.com/hackforla/website/issues/7651#issuecomment-2496181644) at 2024-11-24 11:14 AM PST -HackforLABot,2024-11-25T06:45:26Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2496995849) at 2024-11-24 10:45 PM PST -HackforLABot,2024-11-25T13:40:30Z,- HackforLABot commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2498052502) at 2024-11-25 05:40 AM PST -HackforLABot,2024-11-25T19:23:51Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852920) at 2024-11-25 11:23 AM PST -HackforLABot,2024-11-26T01:09:47Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499349652) at 2024-11-25 05:09 PM PST -HackforLABot,2024-11-26T01:12:38Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499352645) at 2024-11-25 05:12 PM PST -HackforLABot,2024-11-26T03:40:57Z,- HackforLABot commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2499587714) at 2024-11-25 07:40 PM PST -HackforLABot,2024-11-26T03:54:43Z,- HackforLABot commented on issue: [7770](https://github.com/hackforla/website/issues/7770#issuecomment-2499600355) at 2024-11-25 07:54 PM PST -HackforLABot,2024-11-26T04:24:02Z,- HackforLABot commented on issue: [7771](https://github.com/hackforla/website/issues/7771#issuecomment-2499628462) at 2024-11-25 08:24 PM PST -HackforLABot,2024-11-27T04:10:06Z,- HackforLABot commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2502682581) at 2024-11-26 08:10 PM PST -HackforLABot,2024-11-27T04:10:33Z,- HackforLABot commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2502683010) at 2024-11-26 08:10 PM PST -HackforLABot,2024-11-27T16:11:44Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2504268912) at 2024-11-27 08:11 AM PST -HackforLABot,2024-11-28T00:46:50Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2505058126) at 2024-11-27 04:46 PM PST -HackforLABot,2024-11-28T01:57:13Z,- HackforLABot commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2505115462) at 2024-11-27 05:57 PM PST -HackforLABot,2024-11-29T07:05:28Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2507206094) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:30Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2507206137) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:32Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2507206176) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:34Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2507206213) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:36Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2507206252) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:38Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2507206286) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:44Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2507206405) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:45Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2507206441) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:47Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2507206475) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:50Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2507206522) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:51Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2507206559) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:54Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2507206610) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:56Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2507206647) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:58Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2507206681) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:06:00Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2507206722) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:04Z,- HackforLABot commented on issue: [7574](https://github.com/hackforla/website/issues/7574#issuecomment-2507206785) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:06Z,- HackforLABot commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2507206816) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:08Z,- HackforLABot commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2507206851) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:11Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2507206922) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:14Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2507206982) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:15Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2507207007) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:22Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2507207126) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:26Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2507207198) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:30Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2507207269) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:35Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2507207362) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:37Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2507207408) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:42Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2507207511) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:44Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2507207553) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:46Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2507207584) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:49Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2507207671) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:51Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2507207710) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:52Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2507207748) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:54Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2507207773) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:56Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2507207813) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:58Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2507207843) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:59Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2507207876) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:07:01Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2507207914) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:03Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2507207941) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:05Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2507207985) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:08Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2507208030) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:10Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2507208062) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:11Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2507208112) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:13Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2507208146) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:16Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2507208194) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:17Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2507208234) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:19Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2507208268) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:26Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2507208380) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:47Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2507208763) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:56Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2507208909) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:58Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2507208945) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:08:03Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2507209051) at 2024-11-28 11:08 PM PST -HackforLABot,2024-11-29T08:55:00Z,- HackforLABot commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2507352482) at 2024-11-29 12:55 AM PST -HackforLABot,2024-12-01T03:16:22Z,- HackforLABot commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2509545960) at 2024-11-30 07:16 PM PST -HackforLABot,2024-12-01T11:07:14Z,- HackforLABot closed issue as completed: [7020](https://github.com/hackforla/website/issues/7020#event-15484025688) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:15Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2509707920) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:15Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2509707962) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:15Z,- HackforLABot closed issue as completed: [7028](https://github.com/hackforla/website/issues/7028#event-15484026155) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:16Z,- HackforLABot closed issue as completed: [7426](https://github.com/hackforla/website/issues/7426#event-15484026942) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:17Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2509708209) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:21Z,- HackforLABot closed issue as completed: [7519](https://github.com/hackforla/website/issues/7519#event-15484027139) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:22Z,- HackforLABot closed issue as completed: [6957](https://github.com/hackforla/website/issues/6957#event-15484027196) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:22Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2509708610) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:23Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2509708658) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:23Z,- HackforLABot closed issue as completed: [7029](https://github.com/hackforla/website/issues/7029#event-15484027238) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:24Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2509708712) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:25Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2509708764) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:25Z,- HackforLABot closed issue as completed: [7217](https://github.com/hackforla/website/issues/7217#event-15484027276) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:51Z,- HackforLABot opened issue: [7790](https://github.com/hackforla/website/issues/7790) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:08:08Z,- HackforLABot closed issue as completed: [7790](https://github.com/hackforla/website/issues/7790#event-15484031697) at 2024-12-01 03:08 AM PST -HackforLABot,2024-12-02T17:40:57Z,- HackforLABot commented on issue: [7789](https://github.com/hackforla/website/issues/7789#issuecomment-2512258416) at 2024-12-02 09:40 AM PST -HackforLABot,2024-12-02T17:43:30Z,- HackforLABot commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2512263868) at 2024-12-02 09:43 AM PST -HackforLABot,2024-12-02T22:38:59Z,- HackforLABot commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2513119805) at 2024-12-02 02:38 PM PST -HackforLABot,2024-12-03T19:35:33Z,- HackforLABot commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2515422686) at 2024-12-03 11:35 AM PST -HackforLABot,2024-12-03T21:18:08Z,- HackforLABot commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2515570394) at 2024-12-03 01:18 PM PST -HackforLABot,2024-12-03T23:56:05Z,- HackforLABot commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2515825922) at 2024-12-03 03:56 PM PST -HackforLABot,2024-12-04T17:58:28Z,- HackforLABot commented on issue: [7604](https://github.com/hackforla/website/issues/7604#issuecomment-2518158177) at 2024-12-04 09:58 AM PST -HackforLABot,2024-12-04T18:05:36Z,- HackforLABot commented on issue: [7396](https://github.com/hackforla/website/issues/7396#issuecomment-2518172291) at 2024-12-04 10:05 AM PST -HackforLABot,2024-12-05T01:31:09Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:31 PM PST -HackforLABot,2024-12-05T01:32:07Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518894122) at 2024-12-04 05:32 PM PST -HackforLABot,2024-12-05T19:32:47Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2521235751) at 2024-12-05 11:32 AM PST -HackforLABot,2024-12-06T08:11:22Z,- HackforLABot commented on issue: [7731](https://github.com/hackforla/website/issues/7731#issuecomment-2522468747) at 2024-12-06 12:11 AM PST -HackforLABot,2024-12-12T05:21:08Z,- HackforLABot commented on issue: [7780](https://github.com/hackforla/website/issues/7780#issuecomment-2537839534) at 2024-12-11 09:21 PM PST -HackforLABot,2024-12-12T05:31:03Z,- HackforLABot commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2537850961) at 2024-12-11 09:31 PM PST -HackforLABot,2024-12-13T00:48:15Z,- HackforLABot commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2540298558) at 2024-12-12 04:48 PM PST -HackforLABot,2024-12-13T01:13:31Z,- HackforLABot commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2540323552) at 2024-12-12 05:13 PM PST -HackforLABot,2024-12-13T02:01:41Z,- HackforLABot commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2540370339) at 2024-12-12 06:01 PM PST -HackforLABot,2024-12-13T17:47:43Z,- HackforLABot commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2541956189) at 2024-12-13 09:47 AM PST -HackforLABot,2024-12-20T03:56:01Z,- HackforLABot commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2556236554) at 2024-12-19 07:56 PM PST -HackforLABot,2025-01-03T07:05:07Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2568774771) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:10Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2568774804) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:12Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2568774833) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:15Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2568774881) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:17Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2568774921) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:20Z,- HackforLABot commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2568774949) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:22Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2568774981) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:24Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2568775012) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:26Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2568775051) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:29Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2568775088) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:30Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2568775115) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:32Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2568775144) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:35Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2568775185) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:37Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2568775225) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:38Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2568775245) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:40Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2568775284) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:42Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2568775314) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:44Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2568775344) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:46Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2568775375) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:49Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2568775411) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:51Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2568775436) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:53Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2568775462) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:55Z,- HackforLABot commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2568775487) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:58Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2568775541) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:59Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2568775563) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:06:02Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2568775593) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:04Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2568775620) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:06Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2568775650) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:08Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2568775679) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:10Z,- HackforLABot commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2568775707) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:13Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2568775756) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:16Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2568775778) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:18Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2568775808) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:20Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2568775835) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:25Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2568775895) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:31Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2568775986) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:33Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2568776015) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:35Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2568776043) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:37Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2568776069) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:39Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2568776087) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:41Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2568776111) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:43Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2568776140) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:45Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2568776162) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:47Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2568776191) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:50Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2568776216) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:52Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2568776250) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:54Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2568776281) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:55Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2568776303) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:58Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2568776331) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:07:08Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2568776470) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:24Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2568776685) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:33Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2568776805) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:36Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2568776841) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:41Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2568776915) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-06T18:35:10Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2573685937) at 2025-01-06 10:35 AM PST -HackforLABot,2025-01-10T00:09:17Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2581482448) at 2025-01-09 04:09 PM PST -HackforLABot,2025-01-10T07:05:25Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2581928547) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:31Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2581928660) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:33Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2581928721) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:38Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2581928847) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:42Z,- HackforLABot commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2581928979) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:47Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2581929103) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:49Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2581929156) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:51Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2581929219) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:54Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2581929277) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:58Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2581929444) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:06:03Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2581929585) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:05Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2581929649) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:08Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2581929702) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:12Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2581929787) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:16Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2581929952) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:22Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2581930091) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:25Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2581930147) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:29Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2581930250) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:34Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2581930376) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:40Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2581930554) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:45Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2581930664) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:53Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2581930839) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:58Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2581931044) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:07:01Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2581931115) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:04Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2581931193) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:08Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2581931306) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:11Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2581931359) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:15Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2581931473) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:23Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2581931634) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:25Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2581931677) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:28Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2581931732) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:30Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2581931776) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:08:09Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2581932519) at 2025-01-09 11:08 PM PST -HackforLABot,2025-01-10T07:08:43Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2581933176) at 2025-01-09 11:08 PM PST -HackforLABot,2025-01-14T04:24:36Z,- HackforLABot commented on issue: [7611](https://github.com/hackforla/website/issues/7611#issuecomment-2588918122) at 2025-01-13 08:24 PM PST -HackforLABot,2025-01-15T03:54:30Z,- HackforLABot commented on issue: [7742](https://github.com/hackforla/website/issues/7742#issuecomment-2591590351) at 2025-01-14 07:54 PM PST -HackforLABot,2025-01-17T02:17:03Z,- HackforLABot commented on issue: [7833](https://github.com/hackforla/website/issues/7833#issuecomment-2597292897) at 2025-01-16 06:17 PM PST -HackforLABot,2025-01-17T02:53:51Z,- HackforLABot reopened issue: [6885](https://github.com/hackforla/website/issues/6885#event-12920899109) at 2025-01-16 06:53 PM PST -HackforLABot,2025-01-17T02:53:57Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2597327304) at 2025-01-16 06:53 PM PST -HackforLABot,2025-01-17T02:53:57Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2597327297) at 2025-01-16 06:53 PM PST -HackforLABot,2025-01-17T05:58:15Z,- HackforLABot commented on issue: [7751](https://github.com/hackforla/website/issues/7751#issuecomment-2597494520) at 2025-01-16 09:58 PM PST -HackforLABot,2025-01-17T07:05:29Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2597570759) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:32Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2597570811) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:36Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2597570878) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:38Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2597570929) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:40Z,- HackforLABot commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2597570989) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:43Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2597571043) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:48Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2597571130) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:51Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2597571192) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:55Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2597571278) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:58Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2597571342) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:06:00Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2597571386) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:03Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2597571439) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:05Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2597571493) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:09Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2597571580) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:12Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2597571652) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:16Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2597571735) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:18Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2597571793) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:21Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2597571856) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:25Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2597571941) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:27Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2597572001) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:30Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2597572058) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:34Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2597572137) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:36Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2597572188) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:38Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2597572231) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:44Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2597572336) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:46Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2597572391) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:49Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2597572451) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:51Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2597572514) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:57Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2597572629) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:07:04Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2597572792) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:06Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2597572831) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:10Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2597572937) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:16Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2597573063) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:18Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2597573108) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:29Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2597573333) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:34Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2597573440) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:08:31Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2597574617) at 2025-01-16 11:08 PM PST -HackforLABot,2025-01-21T02:33:07Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2603502874) at 2025-01-20 06:33 PM PST -HackforLABot,2025-01-21T02:34:17Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2603503970) at 2025-01-20 06:34 PM PST -HackforLABot,2025-01-21T03:23:22Z,- HackforLABot commented on issue: [7752](https://github.com/hackforla/website/issues/7752#issuecomment-2603551611) at 2025-01-20 07:23 PM PST -HackforLABot,2025-01-21T04:05:19Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2603613439) at 2025-01-20 08:05 PM PST -HackforLABot,2025-01-21T21:02:37Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 01:02 PM PST -HackforLABot,2025-01-21T23:48:49Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605972760) at 2025-01-21 03:48 PM PST -HackforLABot,2025-01-21T23:52:14Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2605976501) at 2025-01-21 03:52 PM PST -HackforLABot,2025-01-22T02:32:47Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2606151364) at 2025-01-21 06:32 PM PST -HackforLABot,2025-01-22T03:42:43Z,- HackforLABot commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2606221893) at 2025-01-21 07:42 PM PST -HackforLABot,2025-01-22T07:19:39Z,- HackforLABot commented on issue: [7753](https://github.com/hackforla/website/issues/7753#issuecomment-2606470145) at 2025-01-21 11:19 PM PST -HackforLABot,2025-01-22T19:57:42Z,- HackforLABot commented on issue: [7754](https://github.com/hackforla/website/issues/7754#issuecomment-2608145140) at 2025-01-22 11:57 AM PST -HackforLABot,2025-01-22T21:03:03Z,- HackforLABot commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2608262989) at 2025-01-22 01:03 PM PST -HackforLABot,2025-01-23T00:39:11Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2608589724) at 2025-01-22 04:39 PM PST -HackforLABot,2025-01-24T03:26:26Z,- HackforLABot commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2611469774) at 2025-01-23 07:26 PM PST -HackforLABot,2025-01-24T07:05:11Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2611745069) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:13Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2611745144) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:20Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2611745323) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:22Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2611745384) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:25Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2611745519) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:27Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2611745574) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:29Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2611745669) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:32Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2611745737) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:35Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2611745903) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:37Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2611746041) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:39Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2611746113) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:42Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2611746206) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:46Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2611746347) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:50Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2611746455) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:52Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2611746505) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:54Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2611746564) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:57Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2611746611) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:06:04Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2611746771) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:09Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2611747078) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:14Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2611747248) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:18Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2611747341) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:20Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2611747393) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:27Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2611747607) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:32Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2611747738) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:40Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2611748116) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:42Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2611748181) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:07:28Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2611749434) at 2025-01-23 11:07 PM PST -HackforLABot,2025-01-25T23:02:26Z,- HackforLABot commented on issue: [7356](https://github.com/hackforla/website/issues/7356#issuecomment-2614127085) at 2025-01-25 03:02 PM PST -HackforLABot,2025-01-26T18:44:13Z,- HackforLABot commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2614544230) at 2025-01-26 10:44 AM PST -HackforLABot,2025-01-26T22:34:53Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614618011) at 2025-01-26 02:34 PM PST -HackforLABot,2025-01-27T00:48:51Z,- HackforLABot commented on issue: [7567](https://github.com/hackforla/website/issues/7567#issuecomment-2614671584) at 2025-01-26 04:48 PM PST -HackforLABot,2025-01-31T03:21:21Z,- HackforLABot commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2626216264) at 2025-01-30 07:21 PM PST -HackforLABot,2025-01-31T04:50:37Z,- HackforLABot commented on issue: [7855](https://github.com/hackforla/website/issues/7855#issuecomment-2626294989) at 2025-01-30 08:50 PM PST -HackforLABot,2025-01-31T07:05:18Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2626450662) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:22Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2626450738) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:24Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2626450783) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:29Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2626450915) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:33Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2626450993) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:35Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2626451038) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:38Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2626451090) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:39Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2626451136) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:42Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2626451185) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:44Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2626451223) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:47Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2626451300) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:50Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2626451353) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:53Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2626451419) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:55Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2626451468) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:57Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2626451510) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:06:01Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2626451584) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:05Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2626451662) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:09Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2626451745) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:11Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2626451784) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:13Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2626451838) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:17Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2626451918) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:24Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2626452045) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:29Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2626452135) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:34Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2626452233) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:43Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2626452384) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:49Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2626452484) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:51Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2626452528) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:58Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2626452647) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:07:22Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2626453148) at 2025-01-30 11:07 PM PST -HackforLABot,2025-01-31T07:07:33Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2626453391) at 2025-01-30 11:07 PM PST -HackforLABot,2025-01-31T07:08:12Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2626454104) at 2025-01-30 11:08 PM PST -HackforLABot,2025-02-01T11:06:45Z,- HackforLABot closed issue as completed: [7339](https://github.com/hackforla/website/issues/7339#event-16149851649) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:46Z,- HackforLABot commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2628907062) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:46Z,- HackforLABot closed issue as completed: [7625](https://github.com/hackforla/website/issues/7625#event-16149851656) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:47Z,- HackforLABot closed issue as completed: [7624](https://github.com/hackforla/website/issues/7624#event-16149851684) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:47Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2628907072) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:48Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2628907098) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:48Z,- HackforLABot closed issue as completed: [7520](https://github.com/hackforla/website/issues/7520#event-16149851701) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:48Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2628907089) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:07:21Z,- HackforLABot opened issue: [7869](https://github.com/hackforla/website/issues/7869) at 2025-02-01 03:07 AM PST -HackforLABot,2025-02-01T11:07:38Z,- HackforLABot closed issue as completed: [7869](https://github.com/hackforla/website/issues/7869#event-16149853462) at 2025-02-01 03:07 AM PST -HackforLABot,2025-02-01T18:02:56Z,- HackforLABot commented on issue: [7870](https://github.com/hackforla/website/issues/7870#issuecomment-2629050099) at 2025-02-01 10:02 AM PST -HackforLABot,2025-02-03T04:09:54Z,- HackforLABot reopened issue: [6885](https://github.com/hackforla/website/issues/6885#event-16066803811) at 2025-02-02 08:09 PM PST -HackforLABot,2025-02-03T04:09:59Z,- HackforLABot commented on issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2629862978) at 2025-02-02 08:09 PM PST -HackforLABot,2025-02-03T04:10:02Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2629863012) at 2025-02-02 08:10 PM PST -HackforLABot,2025-02-03T04:16:18Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2629871649) at 2025-02-02 08:16 PM PST -HackforLABot,2025-02-03T04:16:18Z,- HackforLABot commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2629871636) at 2025-02-02 08:16 PM PST -HackforLABot,2025-02-03T23:26:06Z,- HackforLABot commented on issue: [7479](https://github.com/hackforla/website/issues/7479#issuecomment-2632405054) at 2025-02-03 03:26 PM PST -HackforLABot,2025-02-04T01:23:45Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2632549099) at 2025-02-03 05:23 PM PST -HackforLABot,2025-02-04T04:41:22Z,- HackforLABot commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2632844998) at 2025-02-03 08:41 PM PST -HackforLABot,2025-02-04T05:09:48Z,- HackforLABot commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2632892917) at 2025-02-03 09:09 PM PST -HackforLABot,2025-02-05T03:55:45Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2635645948) at 2025-02-04 07:55 PM PST -HackforLABot,2025-02-05T05:32:55Z,- HackforLABot commented on issue: [7480](https://github.com/hackforla/website/issues/7480#issuecomment-2635742057) at 2025-02-04 09:32 PM PST -HackforLABot,2025-02-05T05:37:26Z,- HackforLABot commented on issue: [7480](https://github.com/hackforla/website/issues/7480#issuecomment-2635746973) at 2025-02-04 09:37 PM PST -HackforLABot,2025-02-05T09:19:07Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2636168613) at 2025-02-05 01:19 AM PST -HackforLABot,2025-02-05T12:22:29Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2636583978) at 2025-02-05 04:22 AM PST -HackforLABot,2025-02-05T23:21:31Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2638256811) at 2025-02-05 03:21 PM PST -HackforLABot,2025-02-06T19:02:53Z,- HackforLABot commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2640751428) at 2025-02-06 11:02 AM PST -HackforLABot,2025-02-06T19:21:41Z,- HackforLABot commented on issue: [7774](https://github.com/hackforla/website/issues/7774#issuecomment-2640786580) at 2025-02-06 11:21 AM PST -HackforLABot,2025-02-06T20:54:36Z,- HackforLABot commented on issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2640997244) at 2025-02-06 12:54 PM PST -HackforLABot,2025-02-06T20:57:27Z,- HackforLABot commented on issue: [7855](https://github.com/hackforla/website/issues/7855#issuecomment-2641004431) at 2025-02-06 12:57 PM PST -HackforLABot,2025-02-07T07:05:24Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2642098792) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:27Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2642098863) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:29Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2642098911) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:31Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2642098959) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:36Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2642099058) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:38Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2642099110) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:41Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2642099170) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:45Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2642099237) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:47Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2642099272) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:49Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2642099350) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:52Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2642099402) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:57Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2642099555) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:59Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2642099615) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:06:02Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2642099671) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:05Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2642099712) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:07Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2642099776) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:10Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2642099830) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:13Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2642099894) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:17Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2642099993) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:23Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2642100138) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:26Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2642100201) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:32Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2642100332) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:40Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2642100522) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:48Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2642100688) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:07:04Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2642101094) at 2025-02-06 11:07 PM PST -HackforLABot,2025-02-07T07:07:14Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2642101315) at 2025-02-06 11:07 PM PST -HackforLABot,2025-02-07T07:08:06Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2642102498) at 2025-02-06 11:08 PM PST -HackforLABot,2025-02-07T07:08:31Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2642103031) at 2025-02-06 11:08 PM PST -HackforLABot,2025-02-07T12:47:04Z,- HackforLABot commented on issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2642823300) at 2025-02-07 04:47 AM PST -HackforLABot,2025-02-07T21:06:54Z,- HackforLABot commented on issue: [7878](https://github.com/hackforla/website/issues/7878#issuecomment-2644129184) at 2025-02-07 01:06 PM PST -HackforLABot,2025-02-10T05:49:27Z,- HackforLABot commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2646978071) at 2025-02-09 09:49 PM PST -HackforLABot,2025-02-11T20:10:37Z,- HackforLABot commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2651962293) at 2025-02-11 12:10 PM PST -HackforLABot,2025-02-12T00:09:07Z,- HackforLABot commented on issue: [7766](https://github.com/hackforla/website/issues/7766#issuecomment-2652337020) at 2025-02-11 04:09 PM PST -HackforLABot,2025-02-13T11:58:32Z,- HackforLABot commented on issue: [7395](https://github.com/hackforla/website/issues/7395#issuecomment-2656378888) at 2025-02-13 03:58 AM PST -HackforLABot,2025-02-14T03:08:49Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:08 PM PST -HackforLABot,2025-02-14T03:09:34Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165098) at 2025-02-13 07:09 PM PST -HackforLABot,2025-02-14T03:09:58Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165556) at 2025-02-13 07:09 PM PST -HackforLABot,2025-02-14T03:14:16Z,- HackforLABot commented on issue: [7850](https://github.com/hackforla/website/issues/7850#issuecomment-2658169638) at 2025-02-13 07:14 PM PST -HackforLABot,2025-02-14T03:23:00Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658178106) at 2025-02-13 07:23 PM PST -HackforLABot,2025-02-14T03:30:51Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658185774) at 2025-02-13 07:30 PM PST -HackforLABot,2025-02-14T03:31:45Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658186571) at 2025-02-13 07:31 PM PST -HackforLABot,2025-02-14T03:59:25Z,- HackforLABot commented on issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2658210594) at 2025-02-13 07:59 PM PST -HackforLABot,2025-02-14T07:05:07Z,- HackforLABot commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2658437593) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:09Z,- HackforLABot commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2658437684) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:13Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2658437934) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:17Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2658438168) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:19Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2658438261) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:21Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2658438370) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:23Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2658438543) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:25Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2658438642) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:28Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2658438803) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:30Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2658438920) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:31Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2658439017) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:33Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2658439115) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:36Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2658439274) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:38Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2658439395) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:40Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2658439528) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:41Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2658439616) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:43Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2658439703) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:46Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2658439871) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:51Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2658440103) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:54Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2658440256) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:06:08Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2658441111) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T07:06:14Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2658441477) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T07:06:25Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2658442189) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T07:06:34Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2658442685) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T18:26:12Z,- HackforLABot commented on issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660002268) at 2025-02-14 10:26 AM PST -HackforLABot,2025-02-14T18:28:38Z,- HackforLABot commented on issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660006259) at 2025-02-14 10:28 AM PST -HackforLABot,2025-02-14T18:46:09Z,- HackforLABot commented on issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2660034278) at 2025-02-14 10:46 AM PST -HackforLABot,2025-02-16T09:55:41Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661351382) at 2025-02-16 01:55 AM PST -HackforLABot,2025-02-16T09:55:42Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2661351386) at 2025-02-16 01:55 AM PST -HackforLABot,2025-02-16T10:18:24Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661362678) at 2025-02-16 02:18 AM PST -HackforLABot,2025-02-16T10:20:56Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661363589) at 2025-02-16 02:20 AM PST -HackforLABot,2025-02-16T19:14:22Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2661576139) at 2025-02-16 11:14 AM PST -HackforLABot,2025-02-16T19:20:03Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 11:20 AM PST -HackforLABot,2025-02-16T20:21:39Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661600532) at 2025-02-16 12:21 PM PST -HackforLABot,2025-02-16T20:24:43Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661601504) at 2025-02-16 12:24 PM PST -HackforLABot,2025-02-17T07:29:45Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2662269756) at 2025-02-16 11:29 PM PST -HackforLABot,2025-02-17T23:08:22Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2664206389) at 2025-02-17 03:08 PM PST -HackforLABot,2025-02-17T23:08:22Z,- HackforLABot commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2664206379) at 2025-02-17 03:08 PM PST -HackforLABot,2025-02-17T23:32:55Z,- HackforLABot commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2664228310) at 2025-02-17 03:32 PM PST -HackforLABot,2025-02-18T18:36:17Z,- HackforLABot commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2666570545) at 2025-02-18 10:36 AM PST -HackforLABot,2025-02-19T03:32:58Z,- HackforLABot commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2667427189) at 2025-02-18 07:32 PM PST -HackforLABot,2025-02-19T03:42:29Z,- HackforLABot commented on issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2667436272) at 2025-02-18 07:42 PM PST -HackforLABot,2025-02-19T03:55:01Z,- HackforLABot commented on issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2667448949) at 2025-02-18 07:55 PM PST -HackforLABot,2025-02-19T04:05:53Z,- HackforLABot commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2667458957) at 2025-02-18 08:05 PM PST -HackforLABot,2025-02-19T04:13:08Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2667466340) at 2025-02-18 08:13 PM PST -HackforLABot,2025-02-19T04:56:46Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2667508857) at 2025-02-18 08:56 PM PST -HackforLABot,2025-02-19T04:58:08Z,- HackforLABot commented on issue: [7476](https://github.com/hackforla/website/issues/7476#issuecomment-2667510298) at 2025-02-18 08:58 PM PST -HackforLABot,2025-02-20T11:13:50Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2671192286) at 2025-02-20 03:13 AM PST -HackforLABot,2025-02-20T11:13:50Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2671192296) at 2025-02-20 03:13 AM PST -HackforLABot,2025-02-20T11:14:52Z,- HackforLABot commented on issue: [7877](https://github.com/hackforla/website/issues/7877#issuecomment-2671194411) at 2025-02-20 03:14 AM PST -HackforLABot,2025-02-20T11:14:53Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2671194432) at 2025-02-20 03:14 AM PST -HackforLABot,2025-02-20T11:16:01Z,- HackforLABot commented on issue: [7393](https://github.com/hackforla/website/issues/7393#issuecomment-2671196817) at 2025-02-20 03:16 AM PST -HackforLABot,2025-02-20T13:57:30Z,- HackforLABot commented on pull request: [7930](https://github.com/hackforla/website/pull/7930#issuecomment-2671578401) at 2025-02-20 05:57 AM PST -HackforLABot,2025-02-20T17:46:33Z,- HackforLABot commented on issue: [7843](https://github.com/hackforla/website/issues/7843#issuecomment-2672235850) at 2025-02-20 09:46 AM PST -HackforLABot,2025-02-20T22:07:19Z,- HackforLABot commented on issue: [7387](https://github.com/hackforla/website/issues/7387#issuecomment-2672798348) at 2025-02-20 02:07 PM PST -HackforLABot,2025-02-20T23:16:02Z,- HackforLABot commented on issue: [7775](https://github.com/hackforla/website/issues/7775#issuecomment-2672920053) at 2025-02-20 03:16 PM PST -HackforLABot,2025-02-21T05:16:05Z,- HackforLABot commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-2673476000) at 2025-02-20 09:16 PM PST -HackforLABot,2025-02-21T05:16:06Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2673476009) at 2025-02-20 09:16 PM PST -HackforLABot,2025-02-21T07:05:17Z,- HackforLABot commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2673750811) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:21Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2673750902) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:24Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2673750978) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:25Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2673751031) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:29Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2673751114) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:31Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2673751152) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:34Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2673751210) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:36Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2673751267) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:38Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2673751308) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:40Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2673751367) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:43Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2673751622) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:46Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2673751811) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:48Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2673751884) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:50Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2673751987) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:54Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2673752191) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:06:00Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2673752462) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:15Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2673752879) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:21Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2673753010) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:34Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2673753547) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:41Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2673753742) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:07:47Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2673755588) at 2025-02-20 11:07 PM PST -HackforLABot,2025-02-23T01:15:56Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2676485799) at 2025-02-22 05:15 PM PST -HackforLABot,2025-02-23T04:09:54Z,- HackforLABot commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2676552746) at 2025-02-22 08:09 PM PST -HackforLABot,2025-02-23T05:09:48Z,- HackforLABot commented on issue: [7484](https://github.com/hackforla/website/issues/7484#issuecomment-2676593873) at 2025-02-22 09:09 PM PST -HackforLABot,2025-02-23T19:13:35Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2677068275) at 2025-02-23 11:13 AM PST -HackforLABot,2025-02-25T04:40:24Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2680472331) at 2025-02-24 08:40 PM PST -HackforLABot,2025-02-25T04:54:27Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2680509133) at 2025-02-24 08:54 PM PST -HackforLABot,2025-02-25T17:55:51Z,- HackforLABot commented on issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2682859582) at 2025-02-25 09:55 AM PST -HackforLABot,2025-02-25T18:17:52Z,- HackforLABot commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2682910344) at 2025-02-25 10:17 AM PST -HackforLABot,2025-02-26T01:49:12Z,- HackforLABot commented on issue: [7824](https://github.com/hackforla/website/issues/7824#issuecomment-2683689454) at 2025-02-25 05:49 PM PST -HackforLABot,2025-02-26T03:39:23Z,- HackforLABot commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2683814657) at 2025-02-25 07:39 PM PST -HackforLABot,2025-02-26T03:39:24Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2683814673) at 2025-02-25 07:39 PM PST -HackforLABot,2025-02-26T03:42:50Z,- HackforLABot commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2683818162) at 2025-02-25 07:42 PM PST -HackforLABot,2025-02-26T03:42:51Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2683818179) at 2025-02-25 07:42 PM PST -HackforLABot,2025-02-26T03:44:14Z,- HackforLABot commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2683819611) at 2025-02-25 07:44 PM PST -HackforLABot,2025-02-26T03:44:15Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2683819618) at 2025-02-25 07:44 PM PST -HackforLABot,2025-02-26T21:22:34Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2686227549) at 2025-02-26 01:22 PM PST -HackforLABot,2025-02-27T00:20:46Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2686499942) at 2025-02-26 04:20 PM PST -HackforLABot,2025-02-27T02:30:52Z,- HackforLABot commented on issue: [7440](https://github.com/hackforla/website/issues/7440#issuecomment-2686699070) at 2025-02-26 06:30 PM PST -HackforLABot,2025-02-28T07:05:57Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2689895366) at 2025-02-27 11:05 PM PST -HackforLABot,2025-02-28T07:06:01Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2689895440) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:05Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2689895514) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:07Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2689895566) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:11Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2689895653) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:13Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2689895702) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:17Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2689895793) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:20Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2689895858) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:23Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2689895923) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:27Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2689896009) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:30Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2689896075) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:33Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2689896136) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:36Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2689896211) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:38Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2689896277) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:41Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2689896345) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:43Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2689896410) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:46Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2689896477) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:52Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2689896600) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:56Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2689896709) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:58Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2689896762) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:07:04Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2689896867) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:06Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2689896943) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:10Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2689897052) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:13Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2689897097) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:15Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2689897150) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:18Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2689897207) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:20Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2689897285) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:23Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2689897347) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:27Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2689897451) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:30Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2689897516) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:33Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2689897572) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:39Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2689897721) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:42Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2689897779) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:44Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2689897832) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:49Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2689897944) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:56Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2689898109) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:08:03Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2689898361) at 2025-02-27 11:08 PM PST -HackforLABot,2025-02-28T07:08:39Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2689899459) at 2025-02-27 11:08 PM PST -HackforLABot,2025-03-01T11:07:14Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2692147150) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:14Z,- HackforLABot closed issue as completed: [7692](https://github.com/hackforla/website/issues/7692#event-16521928738) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:15Z,- HackforLABot closed issue as completed: [7694](https://github.com/hackforla/website/issues/7694#event-16521928792) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:16Z,- HackforLABot closed issue as completed: [7329](https://github.com/hackforla/website/issues/7329#event-16521928854) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:16Z,- HackforLABot closed issue as completed: [7573](https://github.com/hackforla/website/issues/7573#event-16521928844) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:16Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2692147156) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:17Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2692147168) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:17Z,- HackforLABot commented on issue: [7573](https://github.com/hackforla/website/issues/7573#issuecomment-2692147164) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:19Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2692147187) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:19Z,- HackforLABot closed issue as completed: [7740](https://github.com/hackforla/website/issues/7740#event-16521928947) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:22Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2692147213) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:22Z,- HackforLABot closed issue as completed: [7633](https://github.com/hackforla/website/issues/7633#event-16521929052) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:23Z,- HackforLABot closed issue as completed: [7517](https://github.com/hackforla/website/issues/7517#event-16521929090) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:23Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2692147218) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:23Z,- HackforLABot closed issue as completed: [7741](https://github.com/hackforla/website/issues/7741#event-16521929072) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:24Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2692147219) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:52Z,- HackforLABot opened issue: [7958](https://github.com/hackforla/website/issues/7958) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:54Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2692147388) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:08:10Z,- HackforLABot closed issue as completed: [7958](https://github.com/hackforla/website/issues/7958#event-16521930948) at 2025-03-01 03:08 AM PST -HackforLABot,2025-03-01T11:14:15Z,- HackforLABot commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2692152404) at 2025-03-01 03:14 AM PST -HackforLABot,2025-03-01T11:16:31Z,- HackforLABot commented on issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2692153370) at 2025-03-01 03:16 AM PST -HackforLABot,2025-03-01T11:22:59Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692155712) at 2025-03-01 03:22 AM PST -HackforLABot,2025-03-02T23:43:26Z,- HackforLABot commented on issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2692971806) at 2025-03-02 03:43 PM PST -HackforLABot,2025-03-04T04:13:22Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2696144840) at 2025-03-03 08:13 PM PST -HackforLABot,2025-03-04T04:23:41Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2696155160) at 2025-03-03 08:23 PM PST -HackforLABot,2025-03-04T04:39:23Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2696174883) at 2025-03-03 08:39 PM PST -HackforLABot,2025-03-04T05:02:30Z,- HackforLABot commented on issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2696211147) at 2025-03-03 09:02 PM PST -HackforLABot,2025-03-04T22:19:50Z,- HackforLABot commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2699081078) at 2025-03-04 02:19 PM PST -HackforLABot,2025-03-06T15:16:43Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2704146019) at 2025-03-06 07:16 AM PST -HackforLABot,2025-03-06T19:50:47Z,- HackforLABot commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2704800163) at 2025-03-06 11:50 AM PST -HackforLABot,2025-03-07T03:59:21Z,- HackforLABot commented on issue: [7877](https://github.com/hackforla/website/issues/7877#issuecomment-2705473836) at 2025-03-06 07:59 PM PST -HackforLABot,2025-03-07T05:00:32Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705534298) at 2025-03-06 09:00 PM PST -HackforLABot,2025-03-07T05:00:32Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2705534310) at 2025-03-06 09:00 PM PST -HackforLABot,2025-03-07T05:03:32Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705537480) at 2025-03-06 09:03 PM PST -HackforLABot,2025-03-07T05:03:32Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2705537491) at 2025-03-06 09:03 PM PST -HackforLABot,2025-03-07T05:08:57Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705542954) at 2025-03-06 09:08 PM PST -HackforLABot,2025-03-07T05:09:44Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705543713) at 2025-03-06 09:09 PM PST -HackforLABot,2025-03-07T07:05:43Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2705688903) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:48Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2705689013) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:50Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2705689057) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:52Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2705689116) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:57Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2705689223) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:58Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2705689269) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:06:01Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2705689328) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:03Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2705689393) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:06Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2705689455) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:08Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2705689529) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:15Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2705689697) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:19Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2705689801) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:22Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2705689852) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:24Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2705689907) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:26Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2705689966) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:29Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2705690008) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:31Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2705690045) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:40Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2705690264) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:44Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2705690349) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:46Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2705690401) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:48Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2705690471) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:51Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2705690526) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:54Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2705690606) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:56Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2705690667) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:59Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2705690729) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:07:07Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2705690939) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:11Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2705691023) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:19Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2705691238) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:29Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2705691475) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:41Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2705691763) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:57Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2705692155) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:08:06Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2705692348) at 2025-03-06 11:08 PM PST -HackforLABot,2025-03-07T07:33:16Z,- HackforLABot reopened issue: [7018](https://github.com/hackforla/website/issues/7018#event-15830232824) at 2025-03-06 11:33 PM PST -HackforLABot,2025-03-07T07:33:21Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2705733409) at 2025-03-06 11:33 PM PST -HackforLABot,2025-03-07T07:33:22Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2705733423) at 2025-03-06 11:33 PM PST -HackforLABot,2025-03-07T07:54:49Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2705769117) at 2025-03-06 11:54 PM PST -HackforLABot,2025-03-07T07:54:49Z,- HackforLABot commented on issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2705769103) at 2025-03-06 11:54 PM PST -HackforLABot,2025-03-09T04:49:54Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2708670607) at 2025-03-08 09:49 PM PDT -HackforLABot,2025-03-10T07:37:18Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2709675335) at 2025-03-10 12:37 AM PDT -HackforLABot,2025-03-10T16:18:04Z,- HackforLABot commented on issue: [7938](https://github.com/hackforla/website/issues/7938#issuecomment-2711133468) at 2025-03-10 09:18 AM PDT -HackforLABot,2025-03-10T20:46:05Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2711784507) at 2025-03-10 01:46 PM PDT -HackforLABot,2025-03-11T22:12:33Z,- HackforLABot commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2715818467) at 2025-03-11 03:12 PM PDT -HackforLABot,2025-03-12T16:44:07Z,- HackforLABot commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2718497141) at 2025-03-12 09:44 AM PDT -HackforLABot,2025-03-14T00:23:00Z,- HackforLABot commented on issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2722992095) at 2025-03-13 05:23 PM PDT -HackforLABot,2025-03-14T00:51:47Z,- HackforLABot commented on issue: [7475](https://github.com/hackforla/website/issues/7475#issuecomment-2723039253) at 2025-03-13 05:51 PM PDT -HackforLABot,2025-03-14T07:05:49Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2723823265) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:53Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2723823352) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:55Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2723823435) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:57Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2723823505) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:59Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2723823581) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:06:04Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2723823722) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:06Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2723823783) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:08Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2723823854) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:11Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2723823945) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:15Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2723824034) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:17Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2723824124) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:22Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2723824248) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:25Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2723824334) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:27Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2723824385) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:29Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2723824449) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:32Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2723824517) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:34Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2723824576) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:42Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2723824834) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:45Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2723824919) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:47Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2723824977) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:49Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2723825034) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:51Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2723825067) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:54Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2723825126) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:56Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2723825169) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:58Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2723825226) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:07:02Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2723825313) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:04Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2723825385) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:11Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2723825575) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:14Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2723825614) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:17Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2723825693) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:20Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2723825743) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:22Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2723825795) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:25Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2723825859) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:27Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2723825917) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:30Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2723825991) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:32Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2723826044) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:36Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2723826147) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:38Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2723826224) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:43Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2723826363) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:58Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2723826732) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:08:09Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2723826999) at 2025-03-14 12:08 AM PDT -HackforLABot,2025-03-14T07:08:27Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2723827404) at 2025-03-14 12:08 AM PDT -HackforLABot,2025-03-14T07:08:35Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2723827627) at 2025-03-14 12:08 AM PDT -HackforLABot,2025-03-14T07:09:19Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2723828739) at 2025-03-14 12:09 AM PDT -HackforLABot,2025-03-14T07:09:39Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2723829185) at 2025-03-14 12:09 AM PDT -HackforLABot,2025-03-16T05:24:52Z,- HackforLABot commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2727203034) at 2025-03-15 10:24 PM PDT -HackforLABot,2025-03-16T14:58:24Z,- HackforLABot commented on issue: [7991](https://github.com/hackforla/website/issues/7991#issuecomment-2727485564) at 2025-03-16 07:58 AM PDT -HackforLABot,2025-03-16T15:54:38Z,- HackforLABot commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2727512863) at 2025-03-16 08:54 AM PDT -HackforLABot,2025-03-17T15:06:09Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2729879947) at 2025-03-17 08:06 AM PDT -HackforLABot,2025-03-18T04:23:55Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2731586032) at 2025-03-17 09:23 PM PDT -HackforLABot,2025-03-19T03:43:33Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2735244336) at 2025-03-18 08:43 PM PDT -HackforLABot,2025-03-19T03:46:24Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2735247000) at 2025-03-18 08:46 PM PDT -HackforLABot,2025-03-19T22:22:41Z,- HackforLABot commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2738307755) at 2025-03-19 03:22 PM PDT -HackforLABot,2025-03-19T22:25:19Z,- HackforLABot commented on issue: [7450](https://github.com/hackforla/website/issues/7450#issuecomment-2738313420) at 2025-03-19 03:25 PM PDT -HackforLABot,2025-03-21T00:00:48Z,- HackforLABot commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2741912688) at 2025-03-20 05:00 PM PDT -HackforLABot,2025-03-21T07:05:41Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2742529357) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:44Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2742529431) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:46Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2742529478) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:49Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2742529542) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:51Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2742529579) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:57Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2742529745) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:59Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2742529782) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:06:02Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2742529860) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:03Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2742529906) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:06Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2742529969) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:08Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2742530012) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:11Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2742530089) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:14Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2742530157) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:16Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2742530185) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:18Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2742530233) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:20Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2742530285) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:22Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2742530327) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:24Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2742530368) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:27Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2742530416) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:30Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2742530494) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:32Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2742530546) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:36Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2742530636) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:39Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2742530697) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:41Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2742530741) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:43Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2742530795) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:44Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2742530843) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:46Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2742530890) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:48Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2742530935) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:50Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2742530983) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:57Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2742531160) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:59Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2742531201) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:07:03Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2742531279) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:05Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2742531340) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:07Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2742531436) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:10Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2742531582) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:13Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2742531688) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:16Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2742531749) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:25Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2742531902) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:28Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2742531980) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:36Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2742532146) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:46Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2742532349) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:08:03Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2742532749) at 2025-03-21 12:08 AM PDT -HackforLABot,2025-03-21T07:08:53Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2742533962) at 2025-03-21 12:08 AM PDT -HackforLABot,2025-03-21T18:55:14Z,- HackforLABot commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2744207838) at 2025-03-21 11:55 AM PDT -HackforLABot,2025-03-21T19:40:24Z,- HackforLABot commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2744289880) at 2025-03-21 12:40 PM PDT -HackforLABot,2025-03-22T16:11:21Z,- HackforLABot commented on pull request: [8013](https://github.com/hackforla/website/pull/8013#issuecomment-2745337066) at 2025-03-22 09:11 AM PDT -HackforLABot,2025-03-23T16:21:39Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2746296623) at 2025-03-23 09:21 AM PDT -HackforLABot,2025-03-24T17:42:17Z,- HackforLABot commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2748940827) at 2025-03-24 10:42 AM PDT -HackforLABot,2025-03-25T02:02:46Z,- HackforLABot commented on issue: [7940](https://github.com/hackforla/website/issues/7940#issuecomment-2749852635) at 2025-03-24 07:02 PM PDT -HackforLABot,2025-03-25T19:47:28Z,- HackforLABot commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2752351823) at 2025-03-25 12:47 PM PDT -HackforLABot,2025-03-26T22:12:09Z,- HackforLABot commented on issue: [7469](https://github.com/hackforla/website/issues/7469#issuecomment-2755858278) at 2025-03-26 03:12 PM PDT -HackforLABot,2025-03-26T22:18:22Z,- HackforLABot commented on issue: [7472](https://github.com/hackforla/website/issues/7472#issuecomment-2755867104) at 2025-03-26 03:18 PM PDT -HackforLABot,2025-03-28T07:06:15Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2760399293) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:18Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2760399362) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:20Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2760399415) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:23Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2760399479) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:26Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2760399552) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:28Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2760399593) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:30Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2760399649) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:33Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2760399702) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:35Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2760399758) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:38Z,- HackforLABot commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2760399818) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:43Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2760399953) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:46Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2760400006) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:48Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2760400063) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:51Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2760400116) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:53Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2760400180) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:56Z,- HackforLABot commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2760400241) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:58Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2760400290) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:07:03Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2760400417) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:05Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2760400476) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:09Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2760400540) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:11Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2760400604) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:14Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2760400652) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:16Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2760400702) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:18Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2760400753) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:21Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2760400803) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:23Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2760400863) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:26Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2760400939) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:29Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2760401015) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:33Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2760401098) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:36Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2760401188) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:40Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2760401290) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:43Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2760401349) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:45Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2760401424) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:48Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2760401484) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:50Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2760401536) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:52Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2760401595) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:55Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2760401657) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:59Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2760401749) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:08:04Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2760401831) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:11Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2760402007) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:14Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2760402059) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:17Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2760402124) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:19Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2760402192) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:22Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2760402244) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:24Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2760402308) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:27Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2760402366) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:30Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2760402427) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:32Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2760402488) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:37Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2760402578) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:49Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2760402851) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:09:09Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2760403335) at 2025-03-28 12:09 AM PDT -HackforLABot,2025-03-28T07:09:31Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2760403869) at 2025-03-28 12:09 AM PDT -HackforLABot,2025-03-28T07:09:39Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2760404122) at 2025-03-28 12:09 AM PDT -HackforLABot,2025-03-28T07:10:23Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2760405193) at 2025-03-28 12:10 AM PDT -HackforLABot,2025-03-28T07:10:44Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2760405692) at 2025-03-28 12:10 AM PDT -HackforLABot,2025-03-28T20:54:05Z,- HackforLABot commented on issue: [7470](https://github.com/hackforla/website/issues/7470#issuecomment-2762485067) at 2025-03-28 01:54 PM PDT -HackforLABot,2025-03-30T16:39:41Z,- HackforLABot commented on issue: [8023](https://github.com/hackforla/website/issues/8023#issuecomment-2764640224) at 2025-03-30 09:39 AM PDT -HackforLABot,2025-03-31T22:55:21Z,- HackforLABot commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2767603092) at 2025-03-31 03:55 PM PDT -HackforLABot,2025-04-01T01:50:27Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2767832889) at 2025-03-31 06:50 PM PDT -HackforLABot,2025-04-01T02:18:21Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2767880222) at 2025-03-31 07:18 PM PDT -HackforLABot,2025-04-01T03:18:10Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2767966528) at 2025-03-31 08:18 PM PDT -HackforLABot,2025-04-01T11:08:02Z,- HackforLABot closed issue as completed: [7626](https://github.com/hackforla/website/issues/7626#event-17073407304) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2769001478) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot closed issue as completed: [7825](https://github.com/hackforla/website/issues/7825#event-17073407506) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2769001511) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot closed issue as completed: [7838](https://github.com/hackforla/website/issues/7838#event-17073407365) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:04Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2769001532) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:05Z,- HackforLABot closed issue as completed: [7830](https://github.com/hackforla/website/issues/7830#event-17073408088) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:05Z,- HackforLABot closed issue as completed: [7837](https://github.com/hackforla/website/issues/7837#event-17073407984) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:06Z,- HackforLABot commented on issue: [7830](https://github.com/hackforla/website/issues/7830#issuecomment-2769001673) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:06Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2769001650) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:08Z,- HackforLABot closed issue as completed: [7696](https://github.com/hackforla/website/issues/7696#event-17073408669) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:08Z,- HackforLABot closed issue as completed: [7842](https://github.com/hackforla/website/issues/7842#event-17073408891) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:09Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2769001846) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:09Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2769001872) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:38Z,- HackforLABot opened issue: [8034](https://github.com/hackforla/website/issues/8034) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:39Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2769003009) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:50Z,- HackforLABot closed issue as completed: [8034](https://github.com/hackforla/website/issues/8034#event-17073420405) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-02T03:16:32Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2771239668) at 2025-04-01 08:16 PM PDT -HackforLABot,2025-04-02T23:00:42Z,- HackforLABot commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2773915987) at 2025-04-02 04:00 PM PDT -HackforLABot,2025-04-02T23:48:41Z,- HackforLABot commented on issue: [7487](https://github.com/hackforla/website/issues/7487#issuecomment-2773985616) at 2025-04-02 04:48 PM PDT -HackforLABot,2025-04-03T12:34:05Z,- HackforLABot commented on issue: [7485](https://github.com/hackforla/website/issues/7485#issuecomment-2775646055) at 2025-04-03 05:34 AM PDT -HackforLABot,2025-04-03T15:25:41Z,- HackforLABot commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2776170524) at 2025-04-03 08:25 AM PDT -HackforLABot,2025-04-03T21:16:06Z,- HackforLABot commented on issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2776936689) at 2025-04-03 02:16 PM PDT -HackforLABot,2025-04-03T22:53:30Z,- HackforLABot commented on issue: [7483](https://github.com/hackforla/website/issues/7483#issuecomment-2777166158) at 2025-04-03 03:53 PM PDT -HackforLABot,2025-04-04T07:05:51Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2777733201) at 2025-04-04 12:05 AM PDT -HackforLABot,2025-04-04T07:05:56Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2777733325) at 2025-04-04 12:05 AM PDT -HackforLABot,2025-04-04T07:06:00Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2777733454) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:02Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2777733519) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:04Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2777733579) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:06Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2777733635) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:08Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2777733708) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:10Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2777733778) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:13Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2777733868) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:16Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2777733946) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:18Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2777734005) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:20Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2777734064) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:22Z,- HackforLABot commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2777734119) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:24Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2777734179) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:26Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2777734245) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:29Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2777734309) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:31Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2777734362) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:34Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2777734455) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:36Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2777734501) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:38Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2777734559) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:40Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2777734606) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:42Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2777734654) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:45Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2777734717) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:46Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2777734752) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:50Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2777734858) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:52Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2777734917) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:54Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2777734978) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:56Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2777735026) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:58Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2777735075) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:07:00Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2777735160) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:04Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2777735260) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:06Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2777735334) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:09Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2777735394) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:13Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2777735506) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:16Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2777735598) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:20Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2777735701) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:22Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2777735777) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:24Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2777735863) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:27Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2777735939) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:37Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2777736255) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:43Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2777736405) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:57Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2777736822) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:08:14Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2777737330) at 2025-04-04 12:08 AM PDT -HackforLABot,2025-04-04T07:08:51Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2777738347) at 2025-04-04 12:08 AM PDT -HackforLABot,2025-04-05T01:30:39Z,- HackforLABot commented on issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2780117671) at 2025-04-04 06:30 PM PDT -HackforLABot,2025-04-05T01:42:48Z,- HackforLABot commented on issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-2780124517) at 2025-04-04 06:42 PM PDT -HackforLABot,2025-04-06T18:53:49Z,- HackforLABot commented on issue: [8048](https://github.com/hackforla/website/issues/8048#issuecomment-2781563331) at 2025-04-06 11:53 AM PDT -HackforLABot,2025-04-07T12:37:00Z,- HackforLABot commented on issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2783192875) at 2025-04-07 05:37 AM PDT -HackforLABot,2025-04-07T22:33:07Z,- HackforLABot commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2784778660) at 2025-04-07 03:33 PM PDT -HackforLABot,2025-04-07T22:33:15Z,- HackforLABot commented on issue: [7482](https://github.com/hackforla/website/issues/7482#issuecomment-2784778833) at 2025-04-07 03:33 PM PDT -HackforLABot,2025-04-07T22:33:15Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2784778843) at 2025-04-07 03:33 PM PDT -HackforLABot,2025-04-07T22:37:21Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2784784449) at 2025-04-07 03:37 PM PDT -HackforLABot,2025-04-07T22:43:31Z,- HackforLABot commented on issue: [7424](https://github.com/hackforla/website/issues/7424#issuecomment-2784792287) at 2025-04-07 03:43 PM PDT -HackforLABot,2025-04-09T02:40:47Z,- HackforLABot commented on issue: [7482](https://github.com/hackforla/website/issues/7482#issuecomment-2788140772) at 2025-04-08 07:40 PM PDT -HackforLABot,2025-04-10T21:43:39Z,- HackforLABot commented on issue: [7547](https://github.com/hackforla/website/issues/7547#issuecomment-2795232210) at 2025-04-10 02:43 PM PDT -HackforLABot,2025-04-11T01:48:56Z,- HackforLABot commented on issue: [8050](https://github.com/hackforla/website/issues/8050#issuecomment-2795613377) at 2025-04-10 06:48 PM PDT -HackforLABot,2025-04-11T01:49:49Z,- HackforLABot commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2795614163) at 2025-04-10 06:49 PM PDT -HackforLABot,2025-04-11T07:05:43Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2796037565) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:46Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2796037648) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:48Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2796037703) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:50Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2796037770) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:52Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2796037834) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:54Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2796037888) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:06:00Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2796038047) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:02Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2796038126) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:04Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2796038208) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:07Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2796038270) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:12Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2796038434) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:16Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2796038672) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:19Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2796038755) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:21Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2796038819) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:23Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2796038882) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:26Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2796038940) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:28Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2796039009) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:31Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2796039101) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:35Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2796039217) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:38Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2796039314) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:40Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2796039378) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:42Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2796039443) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:48Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2796039610) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:50Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2796039695) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:54Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2796039834) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:57Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2796039920) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:59Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2796040007) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:07:03Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2796040157) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:05Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2796040263) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:08Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2796040357) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:11Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2796040442) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:23Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2796040854) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:46Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2796041601) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:08:04Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2796042159) at 2025-04-11 12:08 AM PDT -HackforLABot,2025-04-11T15:34:56Z,- HackforLABot commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2797253710) at 2025-04-11 08:34 AM PDT -HackforLABot,2025-04-12T01:14:25Z,- HackforLABot commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2798356300) at 2025-04-11 06:14 PM PDT -HackforLABot,2025-04-12T06:21:24Z,- HackforLABot commented on issue: [7550](https://github.com/hackforla/website/issues/7550#issuecomment-2798521414) at 2025-04-11 11:21 PM PDT -HackforLABot,2025-04-16T03:05:59Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2808107093) at 2025-04-15 08:05 PM PDT -HackforLABot,2025-04-16T03:27:36Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2808132256) at 2025-04-15 08:27 PM PDT -HackforLABot,2025-04-16T23:39:22Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2811133955) at 2025-04-16 04:39 PM PDT -HackforLABot,2025-04-17T04:31:30Z,- HackforLABot commented on issue: [7581](https://github.com/hackforla/website/issues/7581#issuecomment-2811710525) at 2025-04-16 09:31 PM PDT -HackforLABot,2025-04-18T07:05:54Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2814725027) at 2025-04-18 12:05 AM PDT -HackforLABot,2025-04-18T07:05:57Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2814725350) at 2025-04-18 12:05 AM PDT -HackforLABot,2025-04-18T07:05:59Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2814725426) at 2025-04-18 12:05 AM PDT -HackforLABot,2025-04-18T07:06:01Z,- HackforLABot commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2814725515) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:07Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2814725789) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:09Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2814725864) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:13Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2814725957) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:18Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2814726390) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:21Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2814726467) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:24Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2814726545) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:27Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2814726664) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:30Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2814726839) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:35Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2814726997) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:38Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2814727358) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:42Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2814727468) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:44Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2814727524) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:47Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2814727597) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:49Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2814727666) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:51Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2814727760) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:53Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2814727878) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:55Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2814727957) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:57Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2814728023) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:07:00Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2814728093) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:02Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2814728163) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:06Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2814728226) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:08Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2814728286) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:10Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2814728364) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:12Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2814728445) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:19Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2814728722) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:21Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2814728797) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:27Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2814728956) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:31Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2814729042) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:35Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2814729156) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:37Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2814729219) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:41Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2814729299) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:48Z,- HackforLABot commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2814729595) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:50Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2814729668) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:08:03Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2814730250) at 2025-04-18 12:08 AM PDT -HackforLABot,2025-04-18T07:08:34Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2814731437) at 2025-04-18 12:08 AM PDT -HackforLABot,2025-04-19T09:35:35Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2816630959) at 2025-04-19 02:35 AM PDT -HackforLABot,2025-04-20T00:14:31Z,- HackforLABot commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2816916053) at 2025-04-19 05:14 PM PDT -HackforLABot,2025-04-20T19:43:33Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2817311510) at 2025-04-20 12:43 PM PDT -HackforLABot,2025-04-21T01:07:27Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2817439407) at 2025-04-20 06:07 PM PDT -HackforLABot,2025-04-21T06:24:21Z,- HackforLABot commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2817739220) at 2025-04-20 11:24 PM PDT -HackforLABot,2025-04-21T19:30:36Z,- HackforLABot commented on issue: [7755](https://github.com/hackforla/website/issues/7755#issuecomment-2819331552) at 2025-04-21 12:30 PM PDT -HackforLABot,2025-04-21T21:31:02Z,- HackforLABot commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-2819546542) at 2025-04-21 02:31 PM PDT -HackforLABot,2025-04-21T22:08:12Z,- HackforLABot commented on issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2819597217) at 2025-04-21 03:08 PM PDT -HackforLABot,2025-04-22T23:18:39Z,- HackforLABot commented on issue: [8083](https://github.com/hackforla/website/issues/8083#issuecomment-2822688997) at 2025-04-22 04:18 PM PDT -HackforLABot,2025-04-22T23:43:59Z,- HackforLABot commented on issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822720546) at 2025-04-22 04:43 PM PDT -HackforLABot,2025-04-23T01:19:02Z,- HackforLABot commented on issue: [7635](https://github.com/hackforla/website/issues/7635#issuecomment-2822826635) at 2025-04-22 06:19 PM PDT -HackforLABot,2025-04-23T01:34:53Z,- HackforLABot commented on issue: [7582](https://github.com/hackforla/website/issues/7582#issuecomment-2822842623) at 2025-04-22 06:34 PM PDT -HackforLABot,2025-04-25T03:44:24Z,- HackforLABot commented on issue: [7734](https://github.com/hackforla/website/issues/7734#issuecomment-2829307122) at 2025-04-24 08:44 PM PDT -HackforLABot,2025-04-25T07:05:51Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2829551650) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:05:53Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2829551712) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:05:55Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2829551777) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:05:58Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2829551899) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:06:00Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2829551943) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:03Z,- HackforLABot commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2829552044) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:05Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2829552130) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:07Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2829552199) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:09Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2829552265) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:11Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2829552340) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:13Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2829552381) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:15Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2829552445) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:17Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2829552515) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:19Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2829552568) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:21Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2829552622) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:23Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2829552705) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:29Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2829552901) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:31Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2829552957) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:33Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2829553004) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:35Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2829553072) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:38Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2829553166) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:41Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2829553281) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:43Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2829553332) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:45Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2829553396) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:47Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2829553450) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:49Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2829553525) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:51Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2829553580) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:53Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2829553638) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:55Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2829553718) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:57Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2829553794) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:07:00Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2829553895) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:02Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2829553965) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:05Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2829554047) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:07Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2829554108) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:15Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2829554314) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:17Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2829554385) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:21Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2829554507) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:25Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2829554627) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:28Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2829554740) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:33Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2829554891) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:51Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2829555412) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:08:22Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2829556384) at 2025-04-25 12:08 AM PDT -HackforLABot,2025-04-26T17:26:41Z,- HackforLABot commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832455617) at 2025-04-26 10:26 AM PDT -HackforLABot,2025-04-26T17:38:25Z,- HackforLABot commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2832467048) at 2025-04-26 10:38 AM PDT -HackforLABot,2025-04-26T21:38:29Z,- HackforLABot commented on issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2832635374) at 2025-04-26 02:38 PM PDT -HackforLABot,2025-04-28T02:09:29Z,- HackforLABot commented on issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2833812934) at 2025-04-27 07:09 PM PDT -HackforLABot,2025-04-29T18:16:50Z,- HackforLABot commented on issue: [8064](https://github.com/hackforla/website/issues/8064#issuecomment-2839784532) at 2025-04-29 11:16 AM PDT -HackforLABot,2025-04-30T00:58:45Z,- HackforLABot commented on issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2840557430) at 2025-04-29 05:58 PM PDT -HackforLABot,2025-04-30T02:15:20Z,- HackforLABot commented on issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2840634132) at 2025-04-29 07:15 PM PDT -HackforLABot,2025-04-30T02:28:23Z,- HackforLABot commented on issue: [8100](https://github.com/hackforla/website/issues/8100#issuecomment-2840646650) at 2025-04-29 07:28 PM PDT -HackforLABot,2025-04-30T16:58:22Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2842646025) at 2025-04-30 09:58 AM PDT -HackforLABot,2025-05-01T11:08:18Z,- HackforLABot closed issue as completed: [7827](https://github.com/hackforla/website/issues/7827#event-17486389405) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:18Z,- HackforLABot closed issue as completed: [7836](https://github.com/hackforla/website/issues/7836#event-17486389448) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:19Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2844655263) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:19Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2844655268) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:19Z,- HackforLABot closed issue as completed: [7891](https://github.com/hackforla/website/issues/7891#event-17486389562) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:20Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2844655285) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:20Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2844655291) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:20Z,- HackforLABot closed issue as completed: [7893](https://github.com/hackforla/website/issues/7893#event-17486389602) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:22Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2844655334) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:22Z,- HackforLABot closed issue as completed: [7693](https://github.com/hackforla/website/issues/7693#event-17486389762) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:22Z,- HackforLABot closed issue as completed: [7890](https://github.com/hackforla/website/issues/7890#event-17486389800) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:23Z,- HackforLABot closed issue as completed: [7828](https://github.com/hackforla/website/issues/7828#event-17486389915) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:23Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2844655340) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:24Z,- HackforLABot closed issue as completed: [7627](https://github.com/hackforla/website/issues/7627#event-17486390009) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:24Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2844655365) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:25Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2844655382) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:25Z,- HackforLABot closed issue as completed: [7888](https://github.com/hackforla/website/issues/7888#event-17486390076) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:26Z,- HackforLABot commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2844655396) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:56Z,- HackforLABot opened issue: [8105](https://github.com/hackforla/website/issues/8105) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:57Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2844656009) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:09:08Z,- HackforLABot closed issue as completed: [8105](https://github.com/hackforla/website/issues/8105#event-17486394839) at 2025-05-01 04:09 AM PDT -HackforLABot,2025-05-02T07:05:52Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2846519780) at 2025-05-02 12:05 AM PDT -HackforLABot,2025-05-02T07:05:55Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2846519847) at 2025-05-02 12:05 AM PDT -HackforLABot,2025-05-02T07:05:57Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2846519917) at 2025-05-02 12:05 AM PDT -HackforLABot,2025-05-02T07:06:03Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2846520057) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:05Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2846520112) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:06Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2846520163) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:11Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2846520258) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:13Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2846520324) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:16Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2846520404) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:19Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2846520461) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:22Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2846520529) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:23Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2846520578) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:26Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2846520645) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:28Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2846520692) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:32Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2846520772) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:35Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2846520829) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:37Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2846520883) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:40Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2846520971) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:42Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2846521008) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:47Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2846521112) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:49Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2846521163) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:53Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2846521254) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:07:03Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2846521472) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:07Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2846521540) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:16Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2846521728) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:22Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2846521841) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:27Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2846521975) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:31Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2846522065) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:35Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2846522195) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:38Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2846522263) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:48Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2846522483) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:52Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2846522559) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:55Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2846522638) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:59Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2846522749) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:08:02Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2846522856) at 2025-05-02 12:08 AM PDT -HackforLABot,2025-05-02T07:08:11Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2846523054) at 2025-05-02 12:08 AM PDT -HackforLABot,2025-05-02T07:08:29Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2846523508) at 2025-05-02 12:08 AM PDT -HackforLABot,2025-05-02T20:38:17Z,- HackforLABot commented on issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848078749) at 2025-05-02 01:38 PM PDT -HackforLABot,2025-05-02T20:41:46Z,- HackforLABot commented on issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848084742) at 2025-05-02 01:41 PM PDT -HackforLABot,2025-05-02T20:43:50Z,- HackforLABot commented on issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848087769) at 2025-05-02 01:43 PM PDT -HackforLABot,2025-05-02T20:52:40Z,- HackforLABot commented on issue: [7737](https://github.com/hackforla/website/issues/7737#issuecomment-2848100878) at 2025-05-02 01:52 PM PDT -HackforLABot,2025-05-04T22:32:24Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2849474313) at 2025-05-04 03:32 PM PDT -HackforLABot,2025-05-04T22:32:24Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2849474315) at 2025-05-04 03:32 PM PDT -HackforLABot,2025-05-05T23:33:47Z,- HackforLABot commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2852664512) at 2025-05-05 04:33 PM PDT -HackforLABot,2025-05-06T02:23:46Z,- HackforLABot commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2853097192) at 2025-05-05 07:23 PM PDT -HackforLABot,2025-05-06T02:54:05Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2853134462) at 2025-05-05 07:54 PM PDT -HackforLABot,2025-05-06T03:30:44Z,- HackforLABot commented on issue: [8087](https://github.com/hackforla/website/issues/8087#issuecomment-2853173989) at 2025-05-05 08:30 PM PDT -HackforLABot,2025-05-06T03:36:47Z,- HackforLABot commented on issue: [8113](https://github.com/hackforla/website/issues/8113#issuecomment-2853181983) at 2025-05-05 08:36 PM PDT -HackforLABot,2025-05-06T03:44:43Z,- HackforLABot commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2853191875) at 2025-05-05 08:44 PM PDT -HackforLABot,2025-05-06T20:07:52Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2855815871) at 2025-05-06 01:07 PM PDT -HackforLABot,2025-05-08T03:12:55Z,- HackforLABot commented on issue: [7990](https://github.com/hackforla/website/issues/7990#issuecomment-2861515428) at 2025-05-07 08:12 PM PDT -HackforLABot,2025-05-09T07:05:51Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2865383082) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:05:53Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2865383162) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:05:55Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2865383221) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:05:57Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2865383295) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:06:00Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2865383389) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:02Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2865383439) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:04Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2865383502) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:06Z,- HackforLABot commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2865383564) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:10Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2865383733) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:12Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2865384391) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:15Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2865384805) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:17Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2865384930) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:19Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2865385006) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:22Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2865385102) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:24Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2865385168) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:25Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2865385226) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:28Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2865385282) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:29Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2865385350) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:36Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2865386451) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:38Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2865386593) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:41Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2865386676) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:43Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2865386795) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:45Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2865386900) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:49Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2865387011) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:53Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2865387162) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:55Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2865387250) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:57Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2865387756) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:59Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2865388253) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:07:01Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2865388400) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:04Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2865388523) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:08Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2865388661) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:11Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2865388721) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:17Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2865388928) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:23Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2865389861) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:31Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2865390485) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:45Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2865391070) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-12T21:34:17Z,- HackforLABot commented on issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2874210786) at 2025-05-12 02:34 PM PDT -HackforLABot,2025-05-13T03:55:01Z,- HackforLABot commented on issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2874982926) at 2025-05-12 08:55 PM PDT -HackforLABot,2025-05-13T21:29:57Z,- HackforLABot commented on issue: [7943](https://github.com/hackforla/website/issues/7943#issuecomment-2877999329) at 2025-05-13 02:29 PM PDT -HackforLABot,2025-05-14T00:12:44Z,- HackforLABot commented on issue: [7944](https://github.com/hackforla/website/issues/7944#issuecomment-2878241097) at 2025-05-13 05:12 PM PDT -HackforLABot,2025-05-14T03:01:55Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2878494831) at 2025-05-13 08:01 PM PDT -HackforLABot,2025-05-14T03:11:07Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-2878506795) at 2025-05-13 08:11 PM PDT -HackforLABot,2025-05-14T03:16:32Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2878512204) at 2025-05-13 08:16 PM PDT -HackforLABot,2025-05-14T21:07:39Z,- HackforLABot commented on issue: [7782](https://github.com/hackforla/website/issues/7782#issuecomment-2881580765) at 2025-05-14 02:07 PM PDT -HackforLABot,2025-05-15T03:34:57Z,- HackforLABot commented on issue: [7953](https://github.com/hackforla/website/issues/7953#issuecomment-2882131881) at 2025-05-14 08:34 PM PDT -HackforLABot,2025-05-15T22:49:03Z,- HackforLABot commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2885217556) at 2025-05-15 03:49 PM PDT -HackforLABot,2025-05-16T00:07:20Z,- HackforLABot commented on issue: [7995](https://github.com/hackforla/website/issues/7995#issuecomment-2885312888) at 2025-05-15 05:07 PM PDT -HackforLABot,2025-05-16T07:06:01Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2885838536) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:02Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2885838585) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:04Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2885838650) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:06Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2885838691) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:07Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2885838758) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:09Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2885838804) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:11Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2885838882) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:13Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2885838962) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:15Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2885839016) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:16Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2885839071) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:19Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2885839169) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:22Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2885839279) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:24Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2885839332) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:25Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2885839388) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:27Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2885839439) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:29Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2885839488) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:30Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2885839545) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:34Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2885839659) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:36Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2885839755) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:39Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2885839836) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:45Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2885840076) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:48Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2885840181) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:51Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2885840314) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:53Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2885840411) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:55Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2885840488) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:57Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2885840549) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:58Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2885840611) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:07:00Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2885840683) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:05Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2885840839) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:06Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2885840896) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:12Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2885841124) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:14Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2885841202) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:18Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2885841347) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:26Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2885841606) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:31Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2885841825) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:40Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2885842190) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-18T17:41:15Z,- HackforLABot commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2889117015) at 2025-05-18 10:41 AM PDT -HackforLABot,2025-05-18T18:13:03Z,- HackforLABot commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889134342) at 2025-05-18 11:13 AM PDT -HackforLABot,2025-05-18T18:15:01Z,- HackforLABot commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889135248) at 2025-05-18 11:15 AM PDT -HackforLABot,2025-05-19T02:25:02Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2889434213) at 2025-05-18 07:25 PM PDT -HackforLABot,2025-05-19T19:55:35Z,- HackforLABot commented on issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892123866) at 2025-05-19 12:55 PM PDT -HackforLABot,2025-05-19T19:55:35Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2892123878) at 2025-05-19 12:55 PM PDT -HackforLABot,2025-05-19T19:56:22Z,- HackforLABot commented on issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892125433) at 2025-05-19 12:56 PM PDT -HackforLABot,2025-05-19T19:57:13Z,- HackforLABot commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2892127019) at 2025-05-19 12:57 PM PDT -HackforLABot,2025-05-19T19:57:13Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2892127042) at 2025-05-19 12:57 PM PDT -HackforLABot,2025-05-19T20:00:17Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2892132648) at 2025-05-19 01:00 PM PDT -HackforLABot,2025-05-19T23:21:10Z,- HackforLABot commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892496126) at 2025-05-19 04:21 PM PDT -HackforLABot,2025-05-19T23:34:02Z,- HackforLABot commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892510323) at 2025-05-19 04:34 PM PDT -HackforLABot,2025-05-20T00:45:48Z,- HackforLABot commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892592217) at 2025-05-19 05:45 PM PDT -HackforLABot,2025-05-20T04:38:20Z,- HackforLABot commented on issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2892914874) at 2025-05-19 09:38 PM PDT -HackforLABot,2025-05-20T16:51:38Z,- HackforLABot commented on issue: [8035](https://github.com/hackforla/website/issues/8035#issuecomment-2895190267) at 2025-05-20 09:51 AM PDT -HackforLABot,2025-05-20T18:06:20Z,- HackforLABot commented on issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895372016) at 2025-05-20 11:06 AM PDT -HackforLABot,2025-05-20T20:45:17Z,- HackforLABot commented on issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895789203) at 2025-05-20 01:45 PM PDT -HackforLABot,2025-05-21T02:26:14Z,- HackforLABot commented on issue: [7957](https://github.com/hackforla/website/issues/7957#issuecomment-2896282275) at 2025-05-20 07:26 PM PDT -HackforLABot,2025-05-21T16:56:08Z,- HackforLABot commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2898628859) at 2025-05-21 09:56 AM PDT -HackforLABot,2025-05-21T23:18:27Z,- HackforLABot commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2899482311) at 2025-05-21 04:18 PM PDT -HackforLABot,2025-05-22T18:10:16Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2902125568) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:18Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2902125626) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:20Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2902125714) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:22Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2902125793) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:25Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2902125928) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:27Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2902125986) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:29Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2902126063) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:34Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2902126229) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:36Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2902126320) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:39Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2902126429) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:41Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2902126526) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:43Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2902126612) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:45Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2902126688) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:47Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2902126757) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:48Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2902126830) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:51Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2902126965) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:55Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2902127343) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:57Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2902127672) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:59Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2902128051) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:11:05Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2902128980) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:07Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2902129211) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:10Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2902129608) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:13Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2902129903) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:15Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2902130087) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:17Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2902130221) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:18Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2902130333) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:20Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2902130448) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:23Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2902130645) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:25Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2902130934) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:31Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2902132069) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:33Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2902132477) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:12:03Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2902136962) at 2025-05-22 11:12 AM PDT -HackforLABot,2025-05-22T18:33:03Z,- HackforLABot commented on issue: [8152](https://github.com/hackforla/website/issues/8152#issuecomment-2902202279) at 2025-05-22 11:33 AM PDT -HackforLABot,2025-05-22T21:55:20Z,- HackforLABot commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902661940) at 2025-05-22 02:55 PM PDT -HackforLABot,2025-05-23T01:00:21Z,- HackforLABot commented on issue: [7996](https://github.com/hackforla/website/issues/7996#issuecomment-2902977020) at 2025-05-22 06:00 PM PDT -HackforLABot,2025-05-23T02:20:19Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2903068772) at 2025-05-22 07:20 PM PDT -HackforLABot,2025-05-23T02:23:27Z,- HackforLABot commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2903072073) at 2025-05-22 07:23 PM PDT -HackforLABot,2025-05-23T07:06:02Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2903479542) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:04Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2903479614) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:06Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2903479665) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:07Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2903479723) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:09Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2903479791) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:11Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2903479851) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:13Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2903479905) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:17Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2903480040) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:19Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2903480157) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:22Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2903480240) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:23Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2903480301) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:25Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2903480347) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:27Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2903480384) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:28Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2903480439) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:30Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2903480488) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:34Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2903480603) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:35Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2903480655) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:37Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2903480721) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:41Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2903480954) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:43Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2903480992) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:45Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2903481084) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:48Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2903481160) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:49Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2903481219) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:51Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2903481280) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:53Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2903481356) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:54Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2903481396) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:57Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2903481465) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:58Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2903481509) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:07:04Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2903481709) at 2025-05-23 12:07 AM PDT -HackforLABot,2025-05-23T07:07:06Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2903481755) at 2025-05-23 12:07 AM PDT -HackforLABot,2025-05-23T07:07:32Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2903482604) at 2025-05-23 12:07 AM PDT -HackforLABot,2025-05-23T18:37:17Z,- HackforLABot commented on issue: [7998](https://github.com/hackforla/website/issues/7998#issuecomment-2905444474) at 2025-05-23 11:37 AM PDT -HackforLABot,2025-05-24T21:39:47Z,- HackforLABot commented on issue: [8157](https://github.com/hackforla/website/issues/8157#issuecomment-2907098148) at 2025-05-24 02:39 PM PDT -HackforLABot,2025-05-25T04:44:42Z,- HackforLABot commented on issue: [7451](https://github.com/hackforla/website/issues/7451#issuecomment-2907606621) at 2025-05-24 09:44 PM PDT -HackforLABot,2025-05-26T01:06:45Z,- HackforLABot commented on issue: [7999](https://github.com/hackforla/website/issues/7999#issuecomment-2908240835) at 2025-05-25 06:06 PM PDT -HackforLABot,2025-05-27T19:39:44Z,- HackforLABot commented on issue: [8000](https://github.com/hackforla/website/issues/8000#issuecomment-2913788858) at 2025-05-27 12:39 PM PDT -HackforLABot,2025-05-28T18:47:36Z,- HackforLABot commented on issue: [7452](https://github.com/hackforla/website/issues/7452#issuecomment-2917294250) at 2025-05-28 11:47 AM PDT -HackforLABot,2025-05-29T22:54:58Z,- HackforLABot commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2920762507) at 2025-05-29 03:54 PM PDT -HackforLABot,2025-05-30T07:06:01Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2921427830) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:04Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2921427935) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:06Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2921427988) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:08Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2921428031) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:10Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2921428091) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:13Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2921428194) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:15Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2921428251) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:19Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2921428385) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:23Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2921428503) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:26Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2921428586) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:28Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2921428653) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:30Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2921428718) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:32Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2921428782) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:34Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2921428842) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:37Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2921428899) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:41Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2921429045) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:44Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2921429134) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:46Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2921429194) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:49Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2921429262) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:53Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2921429418) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:55Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2921429481) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:57Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2921429528) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:59Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2921429591) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:07:02Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2921429686) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:04Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2921429758) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:06Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2921429827) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:08Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2921429911) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:11Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2921429989) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:13Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2921430056) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:15Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2921430124) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:17Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2921430187) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:25Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2921430451) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:27Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2921430515) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:47Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2921431128) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:57Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2921431470) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-06-01T11:08:13Z,- HackforLABot closed issue as completed: [7979](https://github.com/hackforla/website/issues/7979#event-17912979924) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:13Z,- HackforLABot closed issue as completed: [8032](https://github.com/hackforla/website/issues/8032#event-17912979913) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:14Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2927034872) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:14Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2927034868) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:16Z,- HackforLABot closed issue as completed: [7974](https://github.com/hackforla/website/issues/7974#event-17912981034) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:17Z,- HackforLABot closed issue as completed: [7887](https://github.com/hackforla/website/issues/7887#event-17912981633) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:17Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2927035068) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:17Z,- HackforLABot closed issue as completed: [7976](https://github.com/hackforla/website/issues/7976#event-17912982168) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2927035124) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot closed issue as completed: [7967](https://github.com/hackforla/website/issues/7967#event-17912983403) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2927035132) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot closed issue as completed: [8007](https://github.com/hackforla/website/issues/8007#event-17912983632) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2927035186) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2927035196) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2927035222) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot closed issue as completed: [8030](https://github.com/hackforla/website/issues/8030#event-17912983681) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:46Z,- HackforLABot opened issue: [8166](https://github.com/hackforla/website/issues/8166) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:47Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2927035921) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:09:00Z,- HackforLABot closed issue as completed: [8166](https://github.com/hackforla/website/issues/8166#event-17912991541) at 2025-06-01 04:09 AM PDT -HackforLABot,2025-06-01T21:34:04Z,- HackforLABot commented on issue: [8167](https://github.com/hackforla/website/issues/8167#issuecomment-2927931222) at 2025-06-01 02:34 PM PDT -HackforLABot,2025-06-02T23:24:13Z,- HackforLABot commented on issue: [8167](https://github.com/hackforla/website/issues/8167#issuecomment-2932855978) at 2025-06-02 04:24 PM PDT -HackforLABot,2025-06-03T17:33:54Z,- HackforLABot commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2936432683) at 2025-06-03 10:33 AM PDT -HackforLABot,2025-06-04T03:30:48Z,- HackforLABot commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2938279290) at 2025-06-03 08:30 PM PDT -HackforLABot,2025-06-04T16:45:23Z,- HackforLABot commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2940713001) at 2025-06-04 09:45 AM PDT -HackforLABot,2025-06-04T17:46:19Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2940876209) at 2025-06-04 10:46 AM PDT -HackforLABot,2025-06-04T22:45:32Z,- HackforLABot commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2941826775) at 2025-06-04 03:45 PM PDT -HackforLABot,2025-06-06T07:05:54Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2948305665) at 2025-06-06 12:05 AM PDT -HackforLABot,2025-06-06T07:05:56Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2948305728) at 2025-06-06 12:05 AM PDT -HackforLABot,2025-06-06T07:05:58Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2948305779) at 2025-06-06 12:05 AM PDT -HackforLABot,2025-06-06T07:06:00Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2948305832) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:01Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2948305898) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:04Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2948305981) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:06Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2948306041) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:09Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2948306144) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:12Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2948306239) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:14Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2948306302) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:16Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2948306362) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:17Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2948306421) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:23Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2948306602) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:26Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2948306672) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:29Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2948306773) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:31Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2948306865) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:33Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2948306939) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:36Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2948307023) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:38Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2948307092) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:40Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2948307156) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:41Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2948307211) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:43Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2948307264) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:46Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2948307336) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:49Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2948307431) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:07:17Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2948308361) at 2025-06-06 12:07 AM PDT -HackforLABot,2025-06-06T07:07:19Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2948308442) at 2025-06-06 12:07 AM PDT -HackforLABot,2025-06-06T07:07:31Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2948308860) at 2025-06-06 12:07 AM PDT -HackforLABot,2025-06-07T20:05:56Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2952958182) at 2025-06-07 01:05 PM PDT -HackforLABot,2025-06-08T01:33:58Z,- HackforLABot commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2953376566) at 2025-06-07 06:33 PM PDT -HackforLABot,2025-06-08T01:33:58Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2953376564) at 2025-06-07 06:33 PM PDT -HackforLABot,2025-06-08T21:51:23Z,- HackforLABot commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2954292248) at 2025-06-08 02:51 PM PDT -HackforLABot,2025-06-08T22:41:51Z,- HackforLABot commented on issue: [7994](https://github.com/hackforla/website/issues/7994#issuecomment-2954310886) at 2025-06-08 03:41 PM PDT -HackforLABot,2025-06-08T22:44:50Z,- HackforLABot commented on issue: [8174](https://github.com/hackforla/website/issues/8174#issuecomment-2954311905) at 2025-06-08 03:44 PM PDT -HackforLABot,2025-06-09T20:59:07Z,- HackforLABot commented on issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2957020447) at 2025-06-09 01:59 PM PDT -HackforLABot,2025-06-09T21:02:51Z,- HackforLABot commented on issue: [6751](https://github.com/hackforla/website/issues/6751#issuecomment-2957028281) at 2025-06-09 02:02 PM PDT -HackforLABot,2025-06-10T18:27:01Z,- HackforLABot commented on issue: [8176](https://github.com/hackforla/website/issues/8176#issuecomment-2960231337) at 2025-06-10 11:27 AM PDT -HackforLABot,2025-06-10T21:33:32Z,- HackforLABot commented on issue: [8178](https://github.com/hackforla/website/issues/8178#issuecomment-2960635368) at 2025-06-10 02:33 PM PDT -HackforLABot,2025-06-11T00:45:50Z,- HackforLABot commented on issue: [7609](https://github.com/hackforla/website/issues/7609#issuecomment-2960903617) at 2025-06-10 05:45 PM PDT -HackforLABot,2025-06-11T00:45:51Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2960903626) at 2025-06-10 05:45 PM PDT -HackforLABot,2025-06-13T07:06:09Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2969320369) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:11Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-2969320799) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:15Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-2969321131) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:17Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2969321315) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:20Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2969321537) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:22Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2969321711) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:25Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-2969321837) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:27Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2969321926) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:31Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2969322080) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:33Z,- HackforLABot commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2969322172) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:37Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2969322340) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:41Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2969322474) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:43Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2969322582) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:46Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2969322663) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:48Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2969322735) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:51Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2969322825) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:53Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2969322907) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:57Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2969323053) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:07:02Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2969323208) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:04Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2969323314) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:07Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2969323404) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:09Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2969323491) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:15Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2969323969) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:19Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2969324278) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:22Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2969324361) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:25Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2969324474) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:27Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2969324571) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:30Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2969324658) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:32Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2969324739) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:36Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2969325523) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:39Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2969325724) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:41Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2969325879) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:44Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2969325993) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:47Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2969326362) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:50Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2969326655) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:52Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2969326904) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:55Z,- HackforLABot commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2969327085) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:08:06Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2969328024) at 2025-06-13 12:08 AM PDT -HackforLABot,2025-06-13T07:08:17Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2969328627) at 2025-06-13 12:08 AM PDT -HackforLABot,2025-06-13T07:08:50Z,- HackforLABot commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2969330799) at 2025-06-13 12:08 AM PDT -HackforLABot,2025-06-13T19:28:33Z,- HackforLABot commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2971423732) at 2025-06-13 12:28 PM PDT -HackforLABot,2025-06-17T03:10:09Z,- HackforLABot commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2978780686) at 2025-06-16 08:10 PM PDT -HackforLABot,2025-06-17T03:23:39Z,- HackforLABot commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-2978798391) at 2025-06-16 08:23 PM PDT -HackforLABot,2025-06-17T04:17:21Z,- HackforLABot commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2978877066) at 2025-06-16 09:17 PM PDT -HackforLABot,2025-06-18T00:49:03Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2982244263) at 2025-06-17 05:49 PM PDT -HackforLABot,2025-06-19T02:26:18Z,- HackforLABot commented on issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2986379037) at 2025-06-18 07:26 PM PDT -HackforLABot,2025-06-20T07:05:49Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2990053264) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:51Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-2990053590) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:53Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2990053890) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:54Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-2990054173) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:57Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2990054514) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:58Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2990054651) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:06:00Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-2990054739) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:02Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2990054830) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:04Z,- HackforLABot commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2990054917) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:05Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2990054982) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:08Z,- HackforLABot commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2990055103) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:10Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2990055162) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:12Z,- HackforLABot commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2990055301) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:14Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2990055792) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:16Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2990056266) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:18Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2990056462) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:19Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2990056545) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:21Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2990056676) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:23Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2990056813) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:26Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2990057143) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:29Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2990057314) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:31Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2990057413) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:33Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2990057509) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:35Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2990057579) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:36Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2990057665) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:38Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2990057732) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:44Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2990058708) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:46Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2990058837) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:48Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2990058985) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:49Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2990059222) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:51Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2990059596) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:53Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2990059986) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:55Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2990060299) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:56Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2990060540) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:58Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2990060725) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:07:00Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2990060855) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:03Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2990061066) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:05Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2990061157) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:14Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2990062299) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:20Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2990062785) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:30Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2990064618) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:32Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2990064805) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-21T16:53:04Z,- HackforLABot commented on issue: [8004](https://github.com/hackforla/website/issues/8004#issuecomment-2993671333) at 2025-06-21 09:53 AM PDT -HackforLABot,2025-06-22T17:45:54Z,- HackforLABot commented on issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-2994344197) at 2025-06-22 10:45 AM PDT -HackforLABot,2025-06-22T17:46:31Z,- HackforLABot commented on issue: [8003](https://github.com/hackforla/website/issues/8003#issuecomment-2994344492) at 2025-06-22 10:46 AM PDT -HackforLABot,2025-06-23T19:40:03Z,- HackforLABot commented on issue: [8201](https://github.com/hackforla/website/issues/8201#issuecomment-2997732121) at 2025-06-23 12:40 PM PDT -HackforLABot,2025-06-23T23:28:44Z,- HackforLABot commented on issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998270083) at 2025-06-23 04:28 PM PDT -HackforLABot,2025-06-24T06:34:45Z,- HackforLABot commented on issue: [8011](https://github.com/hackforla/website/issues/8011#issuecomment-2999001224) at 2025-06-23 11:34 PM PDT -HackforLABot,2025-06-24T08:32:13Z,- HackforLABot commented on issue: [8012](https://github.com/hackforla/website/issues/8012#issuecomment-2999343380) at 2025-06-24 01:32 AM PDT -HackforLABot,2025-06-26T23:43:50Z,- HackforLABot commented on issue: [8014](https://github.com/hackforla/website/issues/8014#issuecomment-3010669713) at 2025-06-26 04:43 PM PDT -HackforLABot,2025-06-26T23:44:07Z,- HackforLABot commented on issue: [8015](https://github.com/hackforla/website/issues/8015#issuecomment-3010670372) at 2025-06-26 04:44 PM PDT -HackforLABot,2025-06-27T07:06:21Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-3011940131) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:24Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3011940271) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:27Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-3011940368) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:29Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-3011940452) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:31Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-3011940532) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:33Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-3011940607) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:35Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-3011940692) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:37Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-3011940761) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:40Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-3011940847) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:42Z,- HackforLABot commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-3011940943) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:45Z,- HackforLABot commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-3011941044) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:47Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-3011941107) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:50Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-3011941237) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:53Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-3011941359) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:55Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-3011941449) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:57Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-3011941533) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:59Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-3011941597) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:07:01Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-3011941685) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:07Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-3011941923) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:10Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-3011942026) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:12Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-3011942121) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:18Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-3011942335) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:19Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-3011942411) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:22Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-3011942494) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:26Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3011942660) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:30Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-3011942768) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:31Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-3011942831) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:33Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-3011942907) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:35Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-3011942971) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:37Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-3011943044) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:39Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-3011943114) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:42Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-3011943236) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:44Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-3011943329) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:46Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-3011943427) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:48Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-3011943506) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:50Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-3011943572) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:52Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-3011943651) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:54Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-3011943724) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:56Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-3011943794) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:08:05Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-3011944147) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-27T07:08:14Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-3011944474) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-27T07:08:25Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3011944843) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-27T07:08:36Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-3011945185) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-28T18:43:23Z,- HackforLABot commented on issue: [7380](https://github.com/hackforla/website/issues/7380#issuecomment-3015979211) at 2025-06-28 11:43 AM PDT -HackforLABot,2025-07-01T03:59:47Z,- HackforLABot commented on issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-3021667627) at 2025-06-30 08:59 PM PDT -HackforLABot,2025-07-01T11:07:49Z,- HackforLABot closed issue as completed: [7839](https://github.com/hackforla/website/issues/7839#event-18408186566) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:49Z,- HackforLABot closed issue as completed: [8066](https://github.com/hackforla/website/issues/8066#event-18408186600) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:50Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-3023448143) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:50Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-3023448147) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:51Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-3023448368) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:51Z,- HackforLABot closed issue as completed: [7923](https://github.com/hackforla/website/issues/7923#event-18408187007) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:55Z,- HackforLABot closed issue as completed: [8067](https://github.com/hackforla/website/issues/8067#event-18408188421) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:56Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-3023448968) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:57Z,- HackforLABot closed issue as completed: [7889](https://github.com/hackforla/website/issues/7889#event-18408188795) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:57Z,- HackforLABot closed issue as completed: [7894](https://github.com/hackforla/website/issues/7894#event-18408188979) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:58Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-3023449160) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:58Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-3023449222) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:58Z,- HackforLABot closed issue as completed: [7978](https://github.com/hackforla/website/issues/7978#event-18408189179) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:59Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-3023449287) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:08:00Z,- HackforLABot commented on issue: [8098](https://github.com/hackforla/website/issues/8098#issuecomment-3023449462) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:00Z,- HackforLABot closed issue as completed: [8098](https://github.com/hackforla/website/issues/8098#event-18408190041) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:01Z,- HackforLABot closed issue as completed: [7975](https://github.com/hackforla/website/issues/7975#event-18408190426) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:02Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-3023449569) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:27Z,- HackforLABot opened issue: [8237](https://github.com/hackforla/website/issues/8237) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:28Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-3023452654) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:37Z,- HackforLABot closed issue as completed: [8237](https://github.com/hackforla/website/issues/8237#event-18408203241) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-02T02:32:16Z,- HackforLABot commented on issue: [8239](https://github.com/hackforla/website/issues/8239#issuecomment-3026141917) at 2025-07-01 07:32 PM PDT -HackforLABot,2025-07-02T07:15:42Z,- HackforLABot commented on issue: [8122](https://github.com/hackforla/website/issues/8122#issuecomment-3026728752) at 2025-07-02 12:15 AM PDT -HackforLABot,2025-07-04T18:57:22Z,- HackforLABot commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037067245) at 2025-07-04 11:57 AM PDT -HackforLABot,2025-07-10T05:09:38Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055576826) at 2025-07-09 10:09 PM PDT -HackforLABot,2025-07-10T05:12:08Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055580425) at 2025-07-09 10:12 PM PDT -HackforLABot,2025-07-17T06:28:39Z,- HackforLABot commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3082747619) at 2025-07-16 11:28 PM PDT -HackforLABot,2025-07-18T19:14:30Z,- HackforLABot commented on issue: [7417](https://github.com/hackforla/website/issues/7417#issuecomment-3090467079) at 2025-07-18 12:14 PM PDT -HackforLABot,2025-07-19T10:31:39Z,- HackforLABot commented on issue: [7612](https://github.com/hackforla/website/issues/7612#issuecomment-3092248012) at 2025-07-19 03:31 AM PDT -HackforLABot,2025-07-22T02:35:58Z,- HackforLABot commented on issue: [8247](https://github.com/hackforla/website/issues/8247#issuecomment-3100543232) at 2025-07-21 07:35 PM PDT -HackforLABot,2025-07-22T04:38:32Z,- HackforLABot commented on issue: [8244](https://github.com/hackforla/website/issues/8244#issuecomment-3100918110) at 2025-07-21 09:38 PM PDT -HackforLABot,2025-08-01T06:04:52Z,- HackforLABot commented on issue: [7613](https://github.com/hackforla/website/issues/7613#issuecomment-3142564994) at 2025-07-31 11:04 PM PDT -HackforLABot,2025-08-01T07:09:46Z,- HackforLABot commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3143188192) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:48Z,- HackforLABot commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-3143188620) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:50Z,- HackforLABot commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-3143189083) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:52Z,- HackforLABot commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-3143189732) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:54Z,- HackforLABot commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-3143190163) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:56Z,- HackforLABot commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3143190438) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:58Z,- HackforLABot commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-3143190714) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:10:00Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-3143191001) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:02Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-3143191076) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:04Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3143191484) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:06Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-3143191829) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:08Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-3143192408) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:10Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-3143192733) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:12Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-3143193172) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:14Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-3143193628) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:16Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-3143194019) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:18Z,- HackforLABot commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3143194519) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:21Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-3143195075) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:23Z,- HackforLABot commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-3143195629) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:25Z,- HackforLABot commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-3143196112) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:27Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-3143196556) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:30Z,- HackforLABot commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3143197136) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:32Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-3143197728) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:34Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-3143198096) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:36Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-3143198466) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:38Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-3143199044) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:41Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-3143199690) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:43Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-3143200249) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:45Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-3143200647) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:48Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-3143201484) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:51Z,- HackforLABot commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3143202077) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:54Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3143202670) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:56Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-3143203108) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:58Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-3143203718) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:11:00Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-3143204178) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:03Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-3143204709) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:04Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-3143205102) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:07Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-3143205637) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:09Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-3143206080) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:10Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-3143206504) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:12Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-3143206947) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:17Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-3143208130) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:20Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-3143208586) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:26Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-3143210106) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:43Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3143213800) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:45Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3143214299) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:58Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-3143217261) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T23:04:45Z,- HackforLABot commented on issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-3145965344) at 2025-08-01 04:04 PM PDT -HackforLABot,2025-08-05T06:29:59Z,- HackforLABot commented on issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-3153673373) at 2025-08-04 11:29 PM PDT -HackforLABot,2025-08-05T06:30:00Z,- HackforLABot commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3153673397) at 2025-08-04 11:30 PM PDT -Hallecsy,2021-11-02T22:05:11Z,- Hallecsy opened pull request: [2436](https://github.com/hackforla/website/pull/2436) at 2021-11-02 03:05 PM PDT -Hallecsy,2021-11-02T22:23:15Z,- Hallecsy pull request closed w/o merging: [2436](https://github.com/hackforla/website/pull/2436#event-5558550441) at 2021-11-02 03:23 PM PDT -hanapotski,2024-02-13T03:31:27Z,- hanapotski opened issue: [6284](https://github.com/hackforla/website/issues/6284) at 2024-02-12 07:31 PM PST -Hanastevenson,2021-09-24T21:47:20Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-926936982) at 2021-09-24 02:47 PM PDT -Hanastevenson,2021-09-24T21:50:28Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-926938120) at 2021-09-24 02:50 PM PDT -Hanastevenson,2021-09-28T18:11:53Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-929503788) at 2021-09-28 11:11 AM PDT -Hanastevenson,2021-10-13T21:02:08Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-942717603) at 2021-10-13 02:02 PM PDT -hang-justin,4161,SKILLS ISSUE -hang-justin,2023-03-14T03:00:31Z,- hang-justin opened issue: [4161](https://github.com/hackforla/website/issues/4161) at 2023-03-13 08:00 PM PDT -hang-justin,2023-03-14T03:38:37Z,- hang-justin assigned to issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1467278196) at 2023-03-13 08:38 PM PDT -hang-justin,2023-03-18T08:23:23Z,- hang-justin assigned to issue: [3951](https://github.com/hackforla/website/issues/3951) at 2023-03-18 01:23 AM PDT -hang-justin,2023-03-18T08:39:28Z,- hang-justin commented on issue: [3951](https://github.com/hackforla/website/issues/3951#issuecomment-1474774349) at 2023-03-18 01:39 AM PDT -hang-justin,2023-03-18T09:19:07Z,- hang-justin opened pull request: [4207](https://github.com/hackforla/website/pull/4207) at 2023-03-18 02:19 AM PDT -hang-justin,2023-03-18T09:24:10Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1474786005) at 2023-03-18 02:24 AM PDT -hang-justin,2023-03-18T09:26:25Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1474786971) at 2023-03-18 02:26 AM PDT -hang-justin,2023-03-18T09:29:21Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1474787429) at 2023-03-18 02:29 AM PDT -hang-justin,2023-03-19T04:06:39Z,- hang-justin pull request merged: [4207](https://github.com/hackforla/website/pull/4207#event-8786882915) at 2023-03-18 09:06 PM PDT -hang-justin,2023-03-28T20:22:13Z,- hang-justin assigned to issue: [3869](https://github.com/hackforla/website/issues/3869) at 2023-03-28 01:22 PM PDT -hang-justin,2023-03-28T20:41:45Z,- hang-justin commented on issue: [3869](https://github.com/hackforla/website/issues/3869#issuecomment-1487565694) at 2023-03-28 01:41 PM PDT -hang-justin,2023-03-28T20:47:05Z,- hang-justin opened pull request: [4304](https://github.com/hackforla/website/pull/4304) at 2023-03-28 01:47 PM PDT -hang-justin,2023-03-28T20:54:50Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1487579114) at 2023-03-28 01:54 PM PDT -hang-justin,2023-03-29T20:29:09Z,- hang-justin commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1489264371) at 2023-03-29 01:29 PM PDT -hang-justin,2023-03-29T20:41:45Z,- hang-justin submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1363926656) at 2023-03-29 01:41 PM PDT -hang-justin,2023-03-29T22:09:39Z,- hang-justin pull request merged: [4304](https://github.com/hackforla/website/pull/4304#event-8881233947) at 2023-03-29 03:09 PM PDT -hang-justin,2023-03-30T19:41:13Z,- hang-justin submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1365812499) at 2023-03-30 12:41 PM PDT -hang-justin,2023-03-30T19:41:20Z,- hang-justin commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490839983) at 2023-03-30 12:41 PM PDT -hang-justin,2023-04-04T08:01:15Z,- hang-justin submitted pull request review: [4402](https://github.com/hackforla/website/pull/4402#pullrequestreview-1370417599) at 2023-04-04 01:01 AM PDT -hang-justin,2023-04-04T08:02:26Z,- hang-justin commented on pull request: [4402](https://github.com/hackforla/website/pull/4402#issuecomment-1495523096) at 2023-04-04 01:02 AM PDT -hang-justin,2023-04-04T08:03:40Z,- hang-justin commented on pull request: [4402](https://github.com/hackforla/website/pull/4402#issuecomment-1495524654) at 2023-04-04 01:03 AM PDT -hang-justin,2023-04-07T21:02:20Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1500644172) at 2023-04-07 02:02 PM PDT -hang-justin,2023-04-07T21:02:20Z,- hang-justin closed issue as completed: [4161](https://github.com/hackforla/website/issues/4161#event-8956125703) at 2023-04-07 02:02 PM PDT -hangjoyce,2022-03-15T19:06:32Z,- hangjoyce assigned to issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1064573278) at 2022-03-15 12:06 PM PDT -hangjoyce,2022-03-15T19:12:01Z,- hangjoyce commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1068363783) at 2022-03-15 12:12 PM PDT -hangjoyce,2022-03-31T22:25:32Z,- hangjoyce commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1085188478) at 2022-03-31 03:25 PM PDT -Happyashbunny,2024-02-05T03:44:36Z,- Happyashbunny commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-1926180047) at 2024-02-04 07:44 PM PST -harimwoo,2024-03-19T18:56:57Z,- harimwoo assigned to issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007851060) at 2024-03-19 11:56 AM PDT -harimwoo,2024-03-19T18:57:07Z,- harimwoo unassigned from issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007851060) at 2024-03-19 11:57 AM PDT -harishlingam,2019-08-13T03:22:47Z,- harishlingam opened pull request: [139](https://github.com/hackforla/website/pull/139) at 2019-08-12 08:22 PM PDT -harishlingam,2019-08-13T03:48:30Z,- harishlingam assigned to issue: [138](https://github.com/hackforla/website/issues/138) at 2019-08-12 08:48 PM PDT -harishlingam,2019-08-15T05:14:54Z,- harishlingam closed issue by PR 139: [138](https://github.com/hackforla/website/issues/138#event-2558577954) at 2019-08-14 10:14 PM PDT -harishlingam,2019-08-15T05:14:54Z,- harishlingam pull request merged: [139](https://github.com/hackforla/website/pull/139#event-2558577956) at 2019-08-14 10:14 PM PDT -harishlingam,2019-09-17T02:25:56Z,- harishlingam assigned to issue: [143](https://github.com/hackforla/website/issues/143#issuecomment-523758475) at 2019-09-16 07:25 PM PDT -harishlingam,2019-10-13T22:06:56Z,- harishlingam opened pull request: [155](https://github.com/hackforla/website/pull/155) at 2019-10-13 03:06 PM PDT -harishlingam,2019-10-15T02:37:19Z,- harishlingam closed issue by PR 155: [143](https://github.com/hackforla/website/issues/143#event-2712353626) at 2019-10-14 07:37 PM PDT -harishlingam,2019-10-15T02:37:19Z,- harishlingam pull request merged: [155](https://github.com/hackforla/website/pull/155#event-2712353629) at 2019-10-14 07:37 PM PDT -harishlingam,2019-11-04T18:53:33Z,- harishlingam opened issue: [170](https://github.com/hackforla/website/issues/170) at 2019-11-04 10:53 AM PST -harishlingam,2019-11-04T18:56:45Z,- harishlingam assigned to issue: [170](https://github.com/hackforla/website/issues/170) at 2019-11-04 10:56 AM PST -harishlingam,2019-11-05T03:00:57Z,- harishlingam assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-11-04 07:00 PM PST -harishlingam,2019-11-05T03:46:22Z,- harishlingam opened issue: [172](https://github.com/hackforla/website/issues/172) at 2019-11-04 07:46 PM PST -harishlingam,2019-11-05T03:46:22Z,- harishlingam assigned to issue: [172](https://github.com/hackforla/website/issues/172) at 2019-11-04 07:46 PM PST -harishlingam,2019-11-05T03:52:26Z,- harishlingam opened issue: [173](https://github.com/hackforla/website/issues/173) at 2019-11-04 07:52 PM PST -harishlingam,2019-11-05T03:52:27Z,- harishlingam assigned to issue: [173](https://github.com/hackforla/website/issues/173) at 2019-11-04 07:52 PM PST -harishlingam,2019-11-05T03:55:26Z,- harishlingam opened issue: [174](https://github.com/hackforla/website/issues/174) at 2019-11-04 07:55 PM PST -harishlingam,2019-11-05T03:55:26Z,- harishlingam assigned to issue: [174](https://github.com/hackforla/website/issues/174) at 2019-11-04 07:55 PM PST -harishlingam,2019-11-05T04:03:51Z,- harishlingam opened issue: [175](https://github.com/hackforla/website/issues/175) at 2019-11-04 08:03 PM PST -harishlingam,2019-11-05T04:04:00Z,- harishlingam assigned to issue: [175](https://github.com/hackforla/website/issues/175) at 2019-11-04 08:04 PM PST -harishlingam,2019-11-05T19:15:33Z,- harishlingam opened issue: [176](https://github.com/hackforla/website/issues/176) at 2019-11-05 11:15 AM PST -harishlingam,2019-11-05T19:15:34Z,- harishlingam assigned to issue: [176](https://github.com/hackforla/website/issues/176) at 2019-11-05 11:15 AM PST -harishlingam,2019-11-12T03:01:35Z,- harishlingam assigned to issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552242613) at 2019-11-11 07:01 PM PST -harishlingam,2019-11-12T04:04:47Z,- harishlingam opened issue: [178](https://github.com/hackforla/website/issues/178) at 2019-11-11 08:04 PM PST -harishlingam,2019-11-12T04:04:47Z,- harishlingam assigned to issue: [178](https://github.com/hackforla/website/issues/178) at 2019-11-11 08:04 PM PST -harishlingam,2019-11-12T04:11:07Z,- harishlingam opened issue: [179](https://github.com/hackforla/website/issues/179) at 2019-11-11 08:11 PM PST -harishlingam,2019-11-12T04:11:07Z,- harishlingam assigned to issue: [179](https://github.com/hackforla/website/issues/179) at 2019-11-11 08:11 PM PST -harishlingam,2019-11-20T03:33:54Z,- harishlingam closed issue as completed: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-19 07:33 PM PST -harishlingam,2019-11-20T17:58:03Z,- harishlingam unassigned from issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 09:58 AM PST -harishlingam,2019-11-20T17:58:28Z,- harishlingam assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 09:58 AM PST -harishlingam,2019-11-20T18:48:17Z,- harishlingam assigned to issue: [181](https://github.com/hackforla/website/issues/181) at 2019-11-20 10:48 AM PST -harishlingam,2019-11-20T18:57:56Z,- harishlingam opened issue: [182](https://github.com/hackforla/website/issues/182) at 2019-11-20 10:57 AM PST -harishlingam,2019-11-20T18:57:57Z,- harishlingam assigned to issue: [182](https://github.com/hackforla/website/issues/182) at 2019-11-20 10:57 AM PST -harishlingam,2019-11-20T19:45:41Z,- harishlingam opened issue: [183](https://github.com/hackforla/website/issues/183) at 2019-11-20 11:45 AM PST -harishlingam,2019-11-25T23:16:13Z,- harishlingam opened issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -harishlingam,2019-11-25T23:16:13Z,- harishlingam assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -harishlingam,2019-11-25T23:18:46Z,- harishlingam opened issue: [186](https://github.com/hackforla/website/issues/186) at 2019-11-25 03:18 PM PST -harishlingam,2019-11-25T23:18:47Z,- harishlingam assigned to issue: [186](https://github.com/hackforla/website/issues/186) at 2019-11-25 03:18 PM PST -harishlingam,2019-11-25T23:21:40Z,- harishlingam opened issue: [187](https://github.com/hackforla/website/issues/187) at 2019-11-25 03:21 PM PST -harishlingam,2019-11-25T23:21:41Z,- harishlingam assigned to issue: [187](https://github.com/hackforla/website/issues/187) at 2019-11-25 03:21 PM PST -harishlingam,2019-11-25T23:48:44Z,- harishlingam opened issue: [188](https://github.com/hackforla/website/issues/188) at 2019-11-25 03:48 PM PST -harishlingam,2019-11-25T23:51:43Z,- harishlingam opened issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -harishlingam,2019-11-25T23:51:43Z,- harishlingam assigned to issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -harishlingam,2019-11-25T23:57:04Z,- harishlingam opened issue: [190](https://github.com/hackforla/website/issues/190) at 2019-11-25 03:57 PM PST -harishlingam,2019-11-25T23:57:04Z,- harishlingam assigned to issue: [190](https://github.com/hackforla/website/issues/190) at 2019-11-25 03:57 PM PST -harishlingam,2019-11-26T00:11:22Z,- harishlingam opened issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -harishlingam,2019-11-26T00:11:22Z,- harishlingam assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -harishlingam,2019-11-26T00:23:09Z,- harishlingam opened issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -harishlingam,2019-11-26T03:19:10Z,- harishlingam opened issue: [193](https://github.com/hackforla/website/issues/193) at 2019-11-25 07:19 PM PST -harishlingam,2019-11-26T03:19:10Z,- harishlingam assigned to issue: [193](https://github.com/hackforla/website/issues/193) at 2019-11-25 07:19 PM PST -harishlingam,2019-11-26T03:56:53Z,- harishlingam opened issue: [194](https://github.com/hackforla/website/issues/194) at 2019-11-25 07:56 PM PST -harishlingam,2019-11-26T04:13:38Z,- harishlingam opened issue: [195](https://github.com/hackforla/website/issues/195) at 2019-11-25 08:13 PM PST -harishlingam,2019-11-26T04:14:34Z,- harishlingam opened issue: [196](https://github.com/hackforla/website/issues/196) at 2019-11-25 08:14 PM PST -harishlingam,2019-11-26T04:15:24Z,- harishlingam opened issue: [197](https://github.com/hackforla/website/issues/197) at 2019-11-25 08:15 PM PST -harishlingam,2019-11-26T04:15:57Z,- harishlingam opened issue: [198](https://github.com/hackforla/website/issues/198) at 2019-11-25 08:15 PM PST -harishlingam,2019-11-26T04:16:34Z,- harishlingam opened issue: [199](https://github.com/hackforla/website/issues/199) at 2019-11-25 08:16 PM PST -harishlingam,2019-12-03T03:09:32Z,- harishlingam opened issue: [203](https://github.com/hackforla/website/issues/203) at 2019-12-02 07:09 PM PST -harishlingam,2019-12-03T03:09:32Z,- harishlingam assigned to issue: [203](https://github.com/hackforla/website/issues/203) at 2019-12-02 07:09 PM PST -harishlingam,2019-12-03T18:25:11Z,- harishlingam opened issue: [205](https://github.com/hackforla/website/issues/205) at 2019-12-03 10:25 AM PST -harishlingam,2019-12-03T18:29:40Z,- harishlingam commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-561296620) at 2019-12-03 10:29 AM PST -harishlingam,2019-12-03T18:37:25Z,- harishlingam assigned to issue: [202](https://github.com/hackforla/website/issues/202) at 2019-12-03 10:37 AM PST -harishlingam,2019-12-03T18:47:13Z,- harishlingam opened issue: [206](https://github.com/hackforla/website/issues/206) at 2019-12-03 10:47 AM PST -harishlingam,2019-12-03T18:58:29Z,- harishlingam commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2019-12-03 10:58 AM PST -harishlingam,2019-12-03T19:10:51Z,- harishlingam opened issue: [209](https://github.com/hackforla/website/issues/209) at 2019-12-03 11:10 AM PST -harishlingam,2019-12-03T19:16:49Z,- harishlingam opened issue: [210](https://github.com/hackforla/website/issues/210) at 2019-12-03 11:16 AM PST -harishlingam,2019-12-03T20:11:42Z,- harishlingam closed issue as completed: [202](https://github.com/hackforla/website/issues/202#event-2851484360) at 2019-12-03 12:11 PM PST -harishlingam,2019-12-06T00:32:13Z,- harishlingam commented on pull request: [213](https://github.com/hackforla/website/pull/213#issuecomment-562379926) at 2019-12-05 04:32 PM PST -harishlingam,2019-12-06T00:38:10Z,- harishlingam commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-05 04:38 PM PST -harishlingam,2019-12-06T00:42:57Z,- harishlingam assigned to issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-05 04:42 PM PST -harishlingam,2019-12-08T19:37:35Z,- harishlingam assigned to issue: [209](https://github.com/hackforla/website/issues/209) at 2019-12-08 11:37 AM PST -harishlingam,2019-12-12T00:18:33Z,- harishlingam commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-564792279) at 2019-12-11 04:18 PM PST -harishlingam,2019-12-16T01:23:33Z,- harishlingam assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-15 05:23 PM PST -harishlingam,2019-12-16T04:25:26Z,- harishlingam opened issue: [215](https://github.com/hackforla/website/issues/215) at 2019-12-15 08:25 PM PST -harishlingam,2019-12-16T04:27:01Z,- harishlingam unassigned from issue: [186](https://github.com/hackforla/website/issues/186) at 2019-12-15 08:27 PM PST -harishlingam,2019-12-16T05:23:58Z,- harishlingam opened issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:23 PM PST -harishlingam,2019-12-16T05:23:58Z,- harishlingam assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:23 PM PST -harishlingam,2019-12-17T02:29:44Z,- harishlingam unassigned from issue: [193](https://github.com/hackforla/website/issues/193) at 2019-12-16 06:29 PM PST -harishlingam,2019-12-22T06:18:05Z,- harishlingam opened issue: [220](https://github.com/hackforla/website/issues/220) at 2019-12-21 10:18 PM PST -harishlingam,2019-12-22T06:18:05Z,- harishlingam assigned to issue: [220](https://github.com/hackforla/website/issues/220) at 2019-12-21 10:18 PM PST -harishlingam,2019-12-22T06:24:08Z,- harishlingam assigned to issue: [210](https://github.com/hackforla/website/issues/210) at 2019-12-21 10:24 PM PST -harishlingam,2019-12-22T16:33:39Z,- harishlingam opened issue: [221](https://github.com/hackforla/website/issues/221) at 2019-12-22 08:33 AM PST -harishlingam,2019-12-22T16:33:40Z,- harishlingam assigned to issue: [221](https://github.com/hackforla/website/issues/221) at 2019-12-22 08:33 AM PST -harishlingam,2019-12-23T00:19:32Z,- harishlingam opened issue: [222](https://github.com/hackforla/website/issues/222) at 2019-12-22 04:19 PM PST -harishlingam,2019-12-23T00:25:47Z,- harishlingam opened issue: [223](https://github.com/hackforla/website/issues/223) at 2019-12-22 04:25 PM PST -harishlingam,2019-12-23T00:25:48Z,- harishlingam assigned to issue: [223](https://github.com/hackforla/website/issues/223) at 2019-12-22 04:25 PM PST -harishlingam,2019-12-23T00:29:43Z,- harishlingam opened issue: [224](https://github.com/hackforla/website/issues/224) at 2019-12-22 04:29 PM PST -harishlingam,2019-12-23T00:29:43Z,- harishlingam assigned to issue: [224](https://github.com/hackforla/website/issues/224) at 2019-12-22 04:29 PM PST -harishlingam,2019-12-23T01:04:23Z,- harishlingam opened issue: [225](https://github.com/hackforla/website/issues/225) at 2019-12-22 05:04 PM PST -harishlingam,2019-12-23T01:04:23Z,- harishlingam assigned to issue: [225](https://github.com/hackforla/website/issues/225) at 2019-12-22 05:04 PM PST -harishlingam,2019-12-24T21:36:52Z,- harishlingam assigned to issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804369) at 2019-12-24 01:36 PM PST -harishlingam,2019-12-30T23:36:32Z,- harishlingam commented on issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-569827372) at 2019-12-30 03:36 PM PST -harishlingam,2019-12-30T23:36:36Z,- harishlingam closed issue as completed: [199](https://github.com/hackforla/website/issues/199#event-2914865704) at 2019-12-30 03:36 PM PST -harishlingam,2019-12-30T23:54:10Z,- harishlingam assigned to issue: [162](https://github.com/hackforla/website/issues/162) at 2019-12-30 03:54 PM PST -harishlingam,2019-12-31T00:07:12Z,- harishlingam closed issue as completed: [220](https://github.com/hackforla/website/issues/220#event-2914892235) at 2019-12-30 04:07 PM PST -harishlingam,2019-12-31T00:21:55Z,- harishlingam commented on issue: [225](https://github.com/hackforla/website/issues/225#issuecomment-569834993) at 2019-12-30 04:21 PM PST -harishlingam,2019-12-31T01:03:50Z,- harishlingam commented on issue: [227](https://github.com/hackforla/website/issues/227#issuecomment-569840410) at 2019-12-30 05:03 PM PST -harishlingam,2019-12-31T01:03:50Z,- harishlingam closed issue as completed: [227](https://github.com/hackforla/website/issues/227#event-2914933616) at 2019-12-30 05:03 PM PST -harishlingam,2019-12-31T01:04:20Z,- harishlingam closed issue as completed: [181](https://github.com/hackforla/website/issues/181#event-2914933948) at 2019-12-30 05:04 PM PST -harishlingam,2019-12-31T01:04:54Z,- harishlingam closed issue as completed: [182](https://github.com/hackforla/website/issues/182#event-2914934447) at 2019-12-30 05:04 PM PST -harishlingam,2019-12-31T01:05:10Z,- harishlingam closed issue as completed: [190](https://github.com/hackforla/website/issues/190#event-2914934745) at 2019-12-30 05:05 PM PST -harishlingam,2019-12-31T01:05:49Z,- harishlingam closed issue as completed: [158](https://github.com/hackforla/website/issues/158#event-2914935185) at 2019-12-30 05:05 PM PST -harishlingam,2019-12-31T01:06:09Z,- harishlingam closed issue as completed: [170](https://github.com/hackforla/website/issues/170#event-2914935405) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:06:19Z,- harishlingam closed issue as completed: [175](https://github.com/hackforla/website/issues/175#event-2914935503) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:06:28Z,- harishlingam closed issue as completed: [174](https://github.com/hackforla/website/issues/174#event-2914935594) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:06:48Z,- harishlingam closed issue as completed: [194](https://github.com/hackforla/website/issues/194#event-2914935797) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:07:39Z,- harishlingam closed issue as completed: [177](https://github.com/hackforla/website/issues/177#event-2914936412) at 2019-12-30 05:07 PM PST -harishlingam,2019-12-31T01:08:01Z,- harishlingam closed issue as completed: [159](https://github.com/hackforla/website/issues/159#event-2914936659) at 2019-12-30 05:08 PM PST -harishlingam,2019-12-31T03:09:02Z,- harishlingam opened issue: [235](https://github.com/hackforla/website/issues/235) at 2019-12-30 07:09 PM PST -harishlingam,2019-12-31T03:14:52Z,- harishlingam opened issue: [236](https://github.com/hackforla/website/issues/236) at 2019-12-30 07:14 PM PST -harishlingam,2019-12-31T03:40:11Z,- harishlingam opened issue: [237](https://github.com/hackforla/website/issues/237) at 2019-12-30 07:40 PM PST -harishlingam,2019-12-31T03:45:44Z,- harishlingam closed issue as completed: [222](https://github.com/hackforla/website/issues/222#event-2915046122) at 2019-12-30 07:45 PM PST -harishlingam,2019-12-31T05:55:33Z,- harishlingam opened issue: [239](https://github.com/hackforla/website/issues/239) at 2019-12-30 09:55 PM PST -harishlingam,2019-12-31T05:55:34Z,- harishlingam assigned to issue: [239](https://github.com/hackforla/website/issues/239) at 2019-12-30 09:55 PM PST -harishlingam,2019-12-31T05:57:40Z,- harishlingam opened issue: [240](https://github.com/hackforla/website/issues/240) at 2019-12-30 09:57 PM PST -harishlingam,2019-12-31T05:57:41Z,- harishlingam assigned to issue: [240](https://github.com/hackforla/website/issues/240) at 2019-12-30 09:57 PM PST -harishlingam,2019-12-31T06:00:22Z,- harishlingam opened issue: [241](https://github.com/hackforla/website/issues/241) at 2019-12-30 10:00 PM PST -harishlingam,2019-12-31T06:00:23Z,- harishlingam assigned to issue: [241](https://github.com/hackforla/website/issues/241) at 2019-12-30 10:00 PM PST -harishlingam,2019-12-31T06:04:53Z,- harishlingam opened issue: [242](https://github.com/hackforla/website/issues/242) at 2019-12-30 10:04 PM PST -harishlingam,2019-12-31T06:04:53Z,- harishlingam assigned to issue: [242](https://github.com/hackforla/website/issues/242) at 2019-12-30 10:04 PM PST -harishlingam,2019-12-31T18:19:19Z,- harishlingam opened issue: [244](https://github.com/hackforla/website/issues/244) at 2019-12-31 10:19 AM PST -harishlingam,2019-12-31T18:24:06Z,- harishlingam commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-569970107) at 2019-12-31 10:24 AM PST -harishlingam,2019-12-31T19:55:45Z,- harishlingam closed issue as completed: [241](https://github.com/hackforla/website/issues/241#event-2916042888) at 2019-12-31 11:55 AM PST -harishlingam,2020-01-05T22:21:10Z,- harishlingam commented on issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-570953843) at 2020-01-05 02:21 PM PST -harishlingam,2020-01-06T01:33:53Z,- harishlingam assigned to issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-570107258) at 2020-01-05 05:33 PM PST -harishlingam,2020-01-07T02:22:30Z,- harishlingam assigned to issue: [246](https://github.com/hackforla/website/issues/246) at 2020-01-06 06:22 PM PST -harishlingam,2020-01-07T04:19:21Z,- harishlingam opened issue: [247](https://github.com/hackforla/website/issues/247) at 2020-01-06 08:19 PM PST -harishlingam,2020-01-07T04:25:15Z,- harishlingam opened issue: [250](https://github.com/hackforla/website/issues/250) at 2020-01-06 08:25 PM PST -harishlingam,2020-01-07T04:25:58Z,- harishlingam opened issue: [251](https://github.com/hackforla/website/issues/251) at 2020-01-06 08:25 PM PST -harishlingam,2020-01-07T04:26:49Z,- harishlingam opened issue: [252](https://github.com/hackforla/website/issues/252) at 2020-01-06 08:26 PM PST -harishlingam,2020-01-07T04:27:41Z,- harishlingam opened issue: [253](https://github.com/hackforla/website/issues/253) at 2020-01-06 08:27 PM PST -harishlingam,2020-01-07T04:34:24Z,- harishlingam opened issue: [254](https://github.com/hackforla/website/issues/254) at 2020-01-06 08:34 PM PST -harishlingam,2020-01-07T04:43:43Z,- harishlingam opened issue: [255](https://github.com/hackforla/website/issues/255) at 2020-01-06 08:43 PM PST -harishlingam,2020-01-07T18:56:34Z,- harishlingam opened issue: [288](https://github.com/hackforla/website/issues/288) at 2020-01-07 10:56 AM PST -harishlingam,2020-01-11T20:06:57Z,- harishlingam commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573349992) at 2020-01-11 12:06 PM PST -harishlingam,2020-01-11T20:15:16Z,- harishlingam commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573350595) at 2020-01-11 12:15 PM PST -harishlingam,2020-01-12T17:56:02Z,- harishlingam opened issue: [259](https://github.com/hackforla/website/issues/259) at 2020-01-12 09:56 AM PST -harishlingam,2020-01-12T18:38:01Z,- harishlingam assigned to issue: [236](https://github.com/hackforla/website/issues/236#issuecomment-570003137) at 2020-01-12 10:38 AM PST -harishlingam,2020-01-12T18:42:46Z,- harishlingam closed issue as completed: [224](https://github.com/hackforla/website/issues/224#event-2941424836) at 2020-01-12 10:42 AM PST -harishlingam,2020-01-14T03:47:35Z,- harishlingam commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-573986669) at 2020-01-13 07:47 PM PST -harishlingam,2020-01-15T01:11:38Z,- harishlingam opened issue: [308](https://github.com/hackforla/website/issues/308) at 2020-01-14 05:11 PM PST -harishlingam,2020-01-15T01:12:15Z,- harishlingam opened issue: [264](https://github.com/hackforla/website/issues/264) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:12:15Z,- harishlingam assigned to issue: [264](https://github.com/hackforla/website/issues/264) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:12:46Z,- harishlingam opened issue: [265](https://github.com/hackforla/website/issues/265) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:12:47Z,- harishlingam assigned to issue: [265](https://github.com/hackforla/website/issues/265) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:13:19Z,- harishlingam opened issue: [266](https://github.com/hackforla/website/issues/266) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:13:19Z,- harishlingam assigned to issue: [266](https://github.com/hackforla/website/issues/266) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:13:47Z,- harishlingam opened issue: [327](https://github.com/hackforla/website/issues/327) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:13:47Z,- harishlingam assigned to issue: [327](https://github.com/hackforla/website/issues/327) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:14:15Z,- harishlingam opened issue: [268](https://github.com/hackforla/website/issues/268) at 2020-01-14 05:14 PM PST -harishlingam,2020-01-15T01:14:15Z,- harishlingam assigned to issue: [268](https://github.com/hackforla/website/issues/268) at 2020-01-14 05:14 PM PST -harishlingam,2020-01-15T01:14:54Z,- harishlingam assigned to issue: [308](https://github.com/hackforla/website/issues/308) at 2020-01-14 05:14 PM PST -harishlingam,2020-01-15T01:16:32Z,- harishlingam unassigned from issue: [268](https://github.com/hackforla/website/issues/268) at 2020-01-14 05:16 PM PST -harishlingam,2020-01-15T01:17:02Z,- harishlingam unassigned from issue: [264](https://github.com/hackforla/website/issues/264) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:09Z,- harishlingam unassigned from issue: [265](https://github.com/hackforla/website/issues/265) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:15Z,- harishlingam unassigned from issue: [266](https://github.com/hackforla/website/issues/266) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:18Z,- harishlingam unassigned from issue: [327](https://github.com/hackforla/website/issues/327) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:29Z,- harishlingam unassigned from issue: [308](https://github.com/hackforla/website/issues/308) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-19T19:17:35Z,- harishlingam assigned to issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-570106964) at 2020-01-19 11:17 AM PST -harishlingam,2020-01-19T19:18:48Z,- harishlingam unassigned from issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-575852901) at 2020-01-19 11:18 AM PST -harishlingam,2020-01-19T19:29:24Z,- harishlingam unassigned from issue: [210](https://github.com/hackforla/website/issues/210) at 2020-01-19 11:29 AM PST -harishlingam,2020-01-20T03:19:14Z,- harishlingam opened issue: [270](https://github.com/hackforla/website/issues/270) at 2020-01-19 07:19 PM PST -harishlingam,2020-01-20T03:19:15Z,- harishlingam assigned to issue: [270](https://github.com/hackforla/website/issues/270) at 2020-01-19 07:19 PM PST -harishlingam,2020-01-20T03:19:37Z,- harishlingam closed issue as completed: [236](https://github.com/hackforla/website/issues/236#event-2961456020) at 2020-01-19 07:19 PM PST -harishlingam,2020-01-20T03:29:50Z,- harishlingam opened issue: [271](https://github.com/hackforla/website/issues/271) at 2020-01-19 07:29 PM PST -harishlingam,2020-01-20T03:29:51Z,- harishlingam assigned to issue: [271](https://github.com/hackforla/website/issues/271) at 2020-01-19 07:29 PM PST -harishlingam,2020-01-20T03:35:44Z,- harishlingam opened issue: [272](https://github.com/hackforla/website/issues/272) at 2020-01-19 07:35 PM PST -harishlingam,2020-01-20T03:43:17Z,- harishlingam opened issue: [273](https://github.com/hackforla/website/issues/273) at 2020-01-19 07:43 PM PST -harishlingam,2020-01-20T03:43:18Z,- harishlingam assigned to issue: [273](https://github.com/hackforla/website/issues/273) at 2020-01-19 07:43 PM PST -harishlingam,2020-01-20T03:45:01Z,- harishlingam closed issue as completed: [225](https://github.com/hackforla/website/issues/225#event-2961487074) at 2020-01-19 07:45 PM PST -harishlingam,2020-01-20T04:40:30Z,- harishlingam opened issue: [275](https://github.com/hackforla/website/issues/275) at 2020-01-19 08:40 PM PST -harishlingam,2020-01-20T04:40:31Z,- harishlingam assigned to issue: [275](https://github.com/hackforla/website/issues/275) at 2020-01-19 08:40 PM PST -harishlingam,2020-01-20T05:03:56Z,- harishlingam opened issue: [276](https://github.com/hackforla/website/issues/276) at 2020-01-19 09:03 PM PST -harishlingam,2020-01-20T05:03:56Z,- harishlingam assigned to issue: [276](https://github.com/hackforla/website/issues/276) at 2020-01-19 09:03 PM PST -harishlingam,2020-01-20T05:14:17Z,- harishlingam opened issue: [277](https://github.com/hackforla/website/issues/277) at 2020-01-19 09:14 PM PST -harishlingam,2020-01-20T05:14:17Z,- harishlingam assigned to issue: [277](https://github.com/hackforla/website/issues/277) at 2020-01-19 09:14 PM PST -harishlingam,2020-01-20T05:19:47Z,- harishlingam opened issue: [278](https://github.com/hackforla/website/issues/278) at 2020-01-19 09:19 PM PST -harishlingam,2020-01-20T05:19:48Z,- harishlingam assigned to issue: [278](https://github.com/hackforla/website/issues/278) at 2020-01-19 09:19 PM PST -harishlingam,2020-01-25T19:23:36Z,- harishlingam opened issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-25 11:23 AM PST -harishlingam,2020-01-25T19:23:37Z,- harishlingam assigned to issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-25 11:23 AM PST -harishlingam,2020-01-26T17:24:01Z,- harishlingam closed issue as completed: [278](https://github.com/hackforla/website/issues/278#event-2980049912) at 2020-01-26 09:24 AM PST -harishlingam,2020-01-26T18:41:40Z,- harishlingam opened issue: [282](https://github.com/hackforla/website/issues/282) at 2020-01-26 10:41 AM PST -harishlingam,2020-01-26T18:41:41Z,- harishlingam assigned to issue: [282](https://github.com/hackforla/website/issues/282) at 2020-01-26 10:41 AM PST -harishlingam,2020-01-26T19:02:40Z,- harishlingam unassigned from issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-26 11:02 AM PST -harishlingam,2020-01-26T19:15:07Z,- harishlingam unassigned from issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578531013) at 2020-01-26 11:15 AM PST -harishlingam,2020-01-26T20:15:24Z,- harishlingam opened issue: [284](https://github.com/hackforla/website/issues/284) at 2020-01-26 12:15 PM PST -harishlingam,2020-01-26T20:15:24Z,- harishlingam assigned to issue: [284](https://github.com/hackforla/website/issues/284) at 2020-01-26 12:15 PM PST -harishlingam,2020-01-26T21:41:18Z,- harishlingam unassigned from issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-571403621) at 2020-01-26 01:41 PM PST -harishlingam,2020-01-27T22:08:51Z,- harishlingam opened issue: [285](https://github.com/hackforla/website/issues/285) at 2020-01-27 02:08 PM PST -harishlingam,2020-01-27T22:43:01Z,- harishlingam opened issue: [286](https://github.com/hackforla/website/issues/286) at 2020-01-27 02:43 PM PST -harishlingam,2020-01-27T22:49:12Z,- harishlingam unassigned from issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-578534005) at 2020-01-27 02:49 PM PST -harishlingam,2020-01-27T22:57:39Z,- harishlingam closed issue as completed: [250](https://github.com/hackforla/website/issues/250#event-2983707097) at 2020-01-27 02:57 PM PST -harishlingam,2020-01-30T22:11:37Z,- harishlingam commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-580485825) at 2020-01-30 02:11 PM PST -harishlingam,2020-02-09T18:35:13Z,- harishlingam opened issue: [302](https://github.com/hackforla/website/issues/302) at 2020-02-09 10:35 AM PST -harishlingam,2020-02-09T19:01:32Z,- harishlingam opened issue: [303](https://github.com/hackforla/website/issues/303) at 2020-02-09 11:01 AM PST -harishlingam,2020-02-11T01:50:33Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-584446021) at 2020-02-10 05:50 PM PST -harishlingam,2020-02-15T22:48:39Z,- harishlingam commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586648596) at 2020-02-15 02:48 PM PST -harishlingam,2020-02-15T23:53:43Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-586652823) at 2020-02-15 03:53 PM PST -harishlingam,2020-02-15T23:54:19Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-586652854) at 2020-02-15 03:54 PM PST -harishlingam,2020-02-16T00:01:05Z,- harishlingam commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586653264) at 2020-02-15 04:01 PM PST -harishlingam,2020-02-16T17:26:20Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-586731210) at 2020-02-16 09:26 AM PST -harishlingam,2020-02-16T18:38:06Z,- harishlingam closed issue as completed: [237](https://github.com/hackforla/website/issues/237#event-3041748568) at 2020-02-16 10:38 AM PST -harishlingam,2020-02-17T22:01:06Z,- harishlingam commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-587172231) at 2020-02-17 02:01 PM PST -harishlingam,2020-02-17T22:30:48Z,- harishlingam opened issue: [316](https://github.com/hackforla/website/issues/316) at 2020-02-17 02:30 PM PST -harishlingam,2020-02-17T23:12:34Z,- harishlingam commented on issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-587186656) at 2020-02-17 03:12 PM PST -harishlingam,2020-02-17T23:15:17Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-587187147) at 2020-02-17 03:15 PM PST -harishlingam,2020-02-22T20:08:44Z,- harishlingam commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-589993591) at 2020-02-22 12:08 PM PST -harishlingam,2020-02-22T20:13:17Z,- harishlingam commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-589993994) at 2020-02-22 12:13 PM PST -harishlingam,2020-02-23T18:45:07Z,- harishlingam commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-590102319) at 2020-02-23 10:45 AM PST -harishlingam,2020-02-23T19:07:57Z,- harishlingam commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-590104617) at 2020-02-23 11:07 AM PST -harishlingam,2020-02-23T19:18:24Z,- harishlingam commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-590105602) at 2020-02-23 11:18 AM PST -harishlingam,2020-02-23T19:19:33Z,- harishlingam commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-590105711) at 2020-02-23 11:19 AM PST -harishlingam,2020-02-23T19:23:50Z,- harishlingam commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-590106152) at 2020-02-23 11:23 AM PST -harishlingam,2020-02-23T20:46:28Z,- harishlingam opened issue: [323](https://github.com/hackforla/website/issues/323) at 2020-02-23 12:46 PM PST -harishlingam,2020-02-23T20:47:01Z,- harishlingam assigned to issue: [323](https://github.com/hackforla/website/issues/323) at 2020-02-23 12:47 PM PST -harishlingam,2020-02-23T20:54:09Z,- harishlingam commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-590114854) at 2020-02-23 12:54 PM PST -harishlingam,2020-02-29T21:44:17Z,- harishlingam opened issue: [329](https://github.com/hackforla/website/issues/329) at 2020-02-29 01:44 PM PST -harishlingam,2020-03-01T19:48:05Z,- harishlingam opened issue: [332](https://github.com/hackforla/website/issues/332) at 2020-03-01 11:48 AM PST -harishlingam,2020-03-01T19:51:12Z,- harishlingam opened issue: [333](https://github.com/hackforla/website/issues/333) at 2020-03-01 11:51 AM PST -harishlingam,2020-03-02T04:32:42Z,- harishlingam commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593213925) at 2020-03-01 08:32 PM PST -harishlingam,2020-03-02T04:35:54Z,- harishlingam commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-593214576) at 2020-03-01 08:35 PM PST -harishlingam,2020-03-02T05:55:54Z,- harishlingam commented on issue: [276](https://github.com/hackforla/website/issues/276#issuecomment-593233636) at 2020-03-01 09:55 PM PST -harishlingam,2020-03-02T06:05:12Z,- harishlingam commented on issue: [264](https://github.com/hackforla/website/issues/264#issuecomment-593236006) at 2020-03-01 10:05 PM PST -harishlingam,2020-03-02T06:05:13Z,- harishlingam closed issue as completed: [264](https://github.com/hackforla/website/issues/264#event-3086532095) at 2020-03-01 10:05 PM PST -harishlingam,2020-03-02T06:07:47Z,- harishlingam assigned to issue: [329](https://github.com/hackforla/website/issues/329) at 2020-03-01 10:07 PM PST -harishlingam,2020-03-02T06:27:15Z,- harishlingam commented on issue: [189](https://github.com/hackforla/website/issues/189#issuecomment-593241654) at 2020-03-01 10:27 PM PST -harishlingam,2020-03-03T02:10:52Z,- harishlingam commented on issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-593729322) at 2020-03-02 06:10 PM PST -harishlingam,2020-03-03T03:11:11Z,- harishlingam opened issue: [340](https://github.com/hackforla/website/issues/340) at 2020-03-02 07:11 PM PST -harishlingam,2020-03-03T03:11:11Z,- harishlingam assigned to issue: [340](https://github.com/hackforla/website/issues/340) at 2020-03-02 07:11 PM PST -harishlingam,2020-03-08T18:21:15Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-596235039) at 2020-03-08 11:21 AM PDT -harishlingam,2020-03-09T19:59:36Z,- harishlingam opened issue: [356](https://github.com/hackforla/website/issues/356) at 2020-03-09 12:59 PM PDT -harishlingam,2020-03-09T19:59:37Z,- harishlingam assigned to issue: [356](https://github.com/hackforla/website/issues/356) at 2020-03-09 12:59 PM PDT -harishlingam,2020-03-13T23:17:38Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969379) at 2020-03-13 04:17 PM PDT -harishlingam,2020-03-13T23:18:34Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969580) at 2020-03-13 04:18 PM PDT -harishlingam,2020-03-13T23:22:15Z,- harishlingam opened issue: [365](https://github.com/hackforla/website/issues/365) at 2020-03-13 04:22 PM PDT -harishlingam,2020-03-13T23:22:15Z,- harishlingam assigned to issue: [365](https://github.com/hackforla/website/issues/365) at 2020-03-13 04:22 PM PDT -harishlingam,2020-03-13T23:22:30Z,- harishlingam commented on issue: [365](https://github.com/hackforla/website/issues/365#issuecomment-598970344) at 2020-03-13 04:22 PM PDT -harishlingam,2020-03-13T23:49:13Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-598975424) at 2020-03-13 04:49 PM PDT -harishlingam,2020-03-16T03:49:39Z,- harishlingam assigned to issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 08:49 PM PDT -harishlingam,2020-03-16T03:50:09Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599332116) at 2020-03-15 08:50 PM PDT -harishlingam,2020-03-16T07:12:57Z,- harishlingam closed issue by PR 371: [368](https://github.com/hackforla/website/issues/368#event-3131843295) at 2020-03-16 12:12 AM PDT -harishlingam,2020-03-21T20:14:57Z,- harishlingam closed issue as completed: [365](https://github.com/hackforla/website/issues/365#event-3152057634) at 2020-03-21 01:14 PM PDT -harishlingam,2020-03-21T20:18:59Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-602098628) at 2020-03-21 01:18 PM PDT -harishlingam,2020-03-21T20:19:00Z,- harishlingam reopened issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-602098628) at 2020-03-21 01:19 PM PDT -harishlingam,2020-03-22T18:23:46Z,- harishlingam closed issue by PR 371: [368](https://github.com/hackforla/website/issues/368#event-3152939776) at 2020-03-22 11:23 AM PDT -harishlingam,2020-03-26T19:07:28Z,- harishlingam commented on issue: [271](https://github.com/hackforla/website/issues/271#issuecomment-604627368) at 2020-03-26 12:07 PM PDT -harishlingam,2020-03-26T19:18:42Z,- harishlingam commented on issue: [247](https://github.com/hackforla/website/issues/247#issuecomment-604632579) at 2020-03-26 12:18 PM PDT -harishlingam,2020-03-26T19:18:42Z,- harishlingam reopened issue: [247](https://github.com/hackforla/website/issues/247#issuecomment-604632579) at 2020-03-26 12:18 PM PDT -harishlingam,2020-03-26T19:33:38Z,- harishlingam commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-604640549) at 2020-03-26 12:33 PM PDT -harishlingam,2020-03-26T19:34:13Z,- harishlingam closed issue as completed: [247](https://github.com/hackforla/website/issues/247#event-3169773790) at 2020-03-26 12:34 PM PDT -harishlingam,2020-03-26T19:35:37Z,- harishlingam commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-604641625) at 2020-03-26 12:35 PM PDT -harishlingam,2020-03-27T00:33:39Z,- harishlingam opened issue: [395](https://github.com/hackforla/website/issues/395) at 2020-03-26 05:33 PM PDT -harishlingam,2020-03-27T00:33:40Z,- harishlingam assigned to issue: [395](https://github.com/hackforla/website/issues/395) at 2020-03-26 05:33 PM PDT -harishlingam,2020-03-29T18:14:16Z,- harishlingam commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-605677227) at 2020-03-29 11:14 AM PDT -harishlingam,2020-03-29T19:16:32Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605685374) at 2020-03-29 12:16 PM PDT -harishlingam,2020-03-29T19:16:32Z,- harishlingam reopened issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605685374) at 2020-03-29 12:16 PM PDT -harishlingam,2020-03-29T21:35:46Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605705523) at 2020-03-29 02:35 PM PDT -harishlingam,2020-03-29T21:37:59Z,- harishlingam commented on issue: [395](https://github.com/hackforla/website/issues/395#issuecomment-605705800) at 2020-03-29 02:37 PM PDT -harishlingam,2020-03-30T00:03:55Z,- harishlingam commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605722857) at 2020-03-29 05:03 PM PDT -harishlingam,2020-03-30T00:57:03Z,- harishlingam closed issue as completed: [395](https://github.com/hackforla/website/issues/395#event-3176527820) at 2020-03-29 05:57 PM PDT -harishlingam,2020-03-30T03:21:17Z,- harishlingam unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605705523) at 2020-03-29 08:21 PM PDT -harishlingam,2020-03-30T03:43:27Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-605766452) at 2020-03-29 08:43 PM PDT -harishlingam,2020-03-30T04:51:40Z,- harishlingam opened issue: [404](https://github.com/hackforla/website/issues/404) at 2020-03-29 09:51 PM PDT -harishlingam,2020-03-30T05:00:05Z,- harishlingam opened issue: [405](https://github.com/hackforla/website/issues/405) at 2020-03-29 10:00 PM PDT -harishlingam,2020-03-31T01:38:13Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-606345840) at 2020-03-30 06:38 PM PDT -harishlingam,2020-04-05T15:39:44Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 08:39 AM PDT -harishlingam,2020-04-05T15:58:51Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609438979) at 2020-04-05 08:58 AM PDT -harishlingam,2020-04-05T16:05:15Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-609439962) at 2020-04-05 09:05 AM PDT -harishlingam,2020-04-05T16:43:38Z,- harishlingam commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-609445702) at 2020-04-05 09:43 AM PDT -harishlingam,2020-04-05T18:59:21Z,- harishlingam opened issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-05 11:59 AM PDT -harishlingam,2020-04-05T23:33:18Z,- harishlingam opened issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-05 04:33 PM PDT -harishlingam,2020-04-05T23:33:18Z,- harishlingam assigned to issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-05 04:33 PM PDT -harishlingam,2020-04-06T01:56:40Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609527890) at 2020-04-05 06:56 PM PDT -harishlingam,2020-04-11T20:07:46Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612503755) at 2020-04-11 01:07 PM PDT -harishlingam,2020-04-11T20:11:25Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612504360) at 2020-04-11 01:11 PM PDT -harishlingam,2020-04-11T20:28:35Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612507321) at 2020-04-11 01:28 PM PDT -harishlingam,2020-04-11T21:18:48Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-11 02:18 PM PDT -harishlingam,2020-04-12T16:59:20Z,- harishlingam assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612507321) at 2020-04-12 09:59 AM PDT -harishlingam,2020-04-12T17:59:02Z,- harishlingam commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-612653514) at 2020-04-12 10:59 AM PDT -harishlingam,2020-04-12T19:26:21Z,- harishlingam closed issue by PR 371: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-12 12:26 PM PDT -harishlingam,2020-04-12T19:34:48Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612665254) at 2020-04-12 12:34 PM PDT -harishlingam,2020-04-12T19:39:44Z,- harishlingam opened issue: [429](https://github.com/hackforla/website/issues/429) at 2020-04-12 12:39 PM PDT -harishlingam,2020-04-12T19:57:00Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612667914) at 2020-04-12 12:57 PM PDT -harishlingam,2020-04-12T20:23:14Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612671046) at 2020-04-12 01:23 PM PDT -harishlingam,2020-04-12T20:51:58Z,- harishlingam opened issue: [432](https://github.com/hackforla/website/issues/432) at 2020-04-12 01:51 PM PDT -harishlingam,2020-04-13T01:50:16Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612713055) at 2020-04-12 06:50 PM PDT -harishlingam,2020-04-13T03:58:55Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612738967) at 2020-04-12 08:58 PM PDT -harishlingam,2020-04-13T04:07:31Z,- harishlingam opened issue: [436](https://github.com/hackforla/website/issues/436) at 2020-04-12 09:07 PM PDT -harishlingam,2020-04-13T04:07:31Z,- harishlingam assigned to issue: [436](https://github.com/hackforla/website/issues/436) at 2020-04-12 09:07 PM PDT -harishlingam,2020-04-17T22:14:16Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-615487337) at 2020-04-17 03:14 PM PDT -harishlingam,2020-04-17T22:16:56Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-615488164) at 2020-04-17 03:16 PM PDT -harishlingam,2020-04-17T22:20:41Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-615489332) at 2020-04-17 03:20 PM PDT -harishlingam,2020-04-17T22:24:33Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-615490518) at 2020-04-17 03:24 PM PDT -harishlingam,2020-04-17T22:41:33Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-615494936) at 2020-04-17 03:41 PM PDT -harishlingam,2020-04-17T22:44:20Z,- harishlingam assigned to issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-612733309) at 2020-04-17 03:44 PM PDT -harishlingam,2020-04-17T22:47:45Z,- harishlingam commented on issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-615496390) at 2020-04-17 03:47 PM PDT -harishlingam,2020-04-21T20:01:45Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617383708) at 2020-04-21 01:01 PM PDT -harishlingam,2020-04-25T22:54:57Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619451315) at 2020-04-25 03:54 PM PDT -harishlingam,2020-04-25T23:00:48Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-619451847) at 2020-04-25 04:00 PM PDT -harishlingam,2020-04-26T17:39:11Z,- harishlingam commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-619592417) at 2020-04-26 10:39 AM PDT -harishlingam,2020-04-26T17:55:37Z,- harishlingam reopened issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 10:55 AM PDT -harishlingam,2020-04-26T18:02:02Z,- harishlingam unassigned from issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-619446280) at 2020-04-26 11:02 AM PDT -harishlingam,2020-04-26T20:24:51Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619619774) at 2020-04-26 01:24 PM PDT -harishlingam,2020-04-26T20:54:32Z,- harishlingam unassigned from issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:54 PM PDT -harishlingam,2020-04-26T20:56:47Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-619623680) at 2020-04-26 01:56 PM PDT -harishlingam,2020-04-26T20:58:45Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-619623919) at 2020-04-26 01:58 PM PDT -harishlingam,2020-04-26T23:39:38Z,- harishlingam assigned to issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619619774) at 2020-04-26 04:39 PM PDT -harishlingam,2020-04-26T23:46:34Z,- harishlingam opened issue: [469](https://github.com/hackforla/website/issues/469) at 2020-04-26 04:46 PM PDT -harishlingam,2020-04-27T00:34:25Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619650564) at 2020-04-26 05:34 PM PDT -harishlingam,2020-04-27T00:51:46Z,- harishlingam commented on pull request: [467](https://github.com/hackforla/website/pull/467#issuecomment-619653758) at 2020-04-26 05:51 PM PDT -harishlingam,2020-04-27T01:38:11Z,- harishlingam assigned to issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619451315) at 2020-04-26 06:38 PM PDT -harishlingam,2020-04-27T01:55:03Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619666863) at 2020-04-26 06:55 PM PDT -harishlingam,2020-04-27T02:17:11Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619671638) at 2020-04-26 07:17 PM PDT -harishlingam,2020-04-27T16:39:44Z,- harishlingam assigned to issue: [472](https://github.com/hackforla/website/issues/472) at 2020-04-27 09:39 AM PDT -harishlingam,2020-05-02T20:16:29Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623007780) at 2020-05-02 01:16 PM PDT -harishlingam,2020-05-03T15:15:35Z,- harishlingam opened issue: [482](https://github.com/hackforla/website/issues/482) at 2020-05-03 08:15 AM PDT -harishlingam,2020-05-03T15:15:35Z,- harishlingam assigned to issue: [482](https://github.com/hackforla/website/issues/482) at 2020-05-03 08:15 AM PDT -harishlingam,2020-05-03T15:21:21Z,- harishlingam commented on issue: [482](https://github.com/hackforla/website/issues/482#issuecomment-623126204) at 2020-05-03 08:21 AM PDT -harishlingam,2020-05-03T15:25:08Z,- harishlingam commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-623126815) at 2020-05-03 08:25 AM PDT -harishlingam,2020-05-03T17:43:20Z,- harishlingam assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:43 AM PDT -harishlingam,2020-05-03T18:25:47Z,- harishlingam opened issue: [484](https://github.com/hackforla/website/issues/484) at 2020-05-03 11:25 AM PDT -harishlingam,2020-05-03T18:39:55Z,- harishlingam opened issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-03 11:39 AM PDT -harishlingam,2020-05-03T18:39:55Z,- harishlingam assigned to issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-03 11:39 AM PDT -harishlingam,2020-05-03T20:19:27Z,- harishlingam opened issue: [487](https://github.com/hackforla/website/issues/487) at 2020-05-03 01:19 PM PDT -harishlingam,2020-05-03T21:53:24Z,- harishlingam opened issue: [488](https://github.com/hackforla/website/issues/488) at 2020-05-03 02:53 PM PDT -harishlingam,2020-05-03T22:41:49Z,- harishlingam opened issue: [492](https://github.com/hackforla/website/issues/492) at 2020-05-03 03:41 PM PDT -harishlingam,2020-05-03T22:53:09Z,- harishlingam opened issue: [493](https://github.com/hackforla/website/issues/493) at 2020-05-03 03:53 PM PDT -harishlingam,2020-05-03T23:14:17Z,- harishlingam commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623199233) at 2020-05-03 04:14 PM PDT -harishlingam,2020-05-03T23:43:39Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623203351) at 2020-05-03 04:43 PM PDT -harishlingam,2020-05-03T23:45:28Z,- harishlingam unassigned from issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623203351) at 2020-05-03 04:45 PM PDT -harishlingam,2020-05-04T00:13:53Z,- harishlingam commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623207656) at 2020-05-03 05:13 PM PDT -harishlingam,2020-05-04T01:52:20Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623224970) at 2020-05-03 06:52 PM PDT -harishlingam,2020-05-05T22:32:33Z,- harishlingam commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-624341435) at 2020-05-05 03:32 PM PDT -harishlingam,2020-05-05T22:36:22Z,- harishlingam commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-624342663) at 2020-05-05 03:36 PM PDT -harishlingam,2020-05-09T00:17:34Z,- harishlingam commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-626072582) at 2020-05-08 05:17 PM PDT -harishlingam,2020-05-09T00:38:02Z,- harishlingam opened issue: [503](https://github.com/hackforla/website/issues/503) at 2020-05-08 05:38 PM PDT -harishlingam,2020-05-10T16:33:36Z,- harishlingam opened issue: [505](https://github.com/hackforla/website/issues/505) at 2020-05-10 09:33 AM PDT -harishlingam,2020-05-10T16:33:37Z,- harishlingam assigned to issue: [505](https://github.com/hackforla/website/issues/505) at 2020-05-10 09:33 AM PDT -harishlingam,2020-05-10T17:29:36Z,- harishlingam commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-626361712) at 2020-05-10 10:29 AM PDT -harishlingam,2020-05-10T19:16:36Z,- harishlingam opened issue: [506](https://github.com/hackforla/website/issues/506) at 2020-05-10 12:16 PM PDT -harishlingam,2020-05-10T20:35:44Z,- harishlingam closed issue as completed: [505](https://github.com/hackforla/website/issues/505#event-3320672269) at 2020-05-10 01:35 PM PDT -harishlingam,2020-05-12T20:33:03Z,- harishlingam unassigned from issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-627577426) at 2020-05-12 01:33 PM PDT -harishlingam,2020-05-17T18:06:45Z,- harishlingam opened issue: [525](https://github.com/hackforla/website/issues/525) at 2020-05-17 11:06 AM PDT -harishlingam,2020-05-17T18:34:56Z,- harishlingam opened issue: [526](https://github.com/hackforla/website/issues/526) at 2020-05-17 11:34 AM PDT -harishlingam,2020-05-17T18:38:19Z,- harishlingam unassigned from issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-629839960) at 2020-05-17 11:38 AM PDT -harishlingam,2020-05-17T22:16:30Z,- harishlingam commented on issue: [482](https://github.com/hackforla/website/issues/482#issuecomment-629869099) at 2020-05-17 03:16 PM PDT -harishlingam,2020-05-17T23:30:38Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629878411) at 2020-05-17 04:30 PM PDT -harishlingam,2020-05-17T23:30:56Z,- harishlingam assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629878411) at 2020-05-17 04:30 PM PDT -harishlingam,2020-05-17T23:31:01Z,- harishlingam unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629878411) at 2020-05-17 04:31 PM PDT -harishlingam,2020-05-23T20:29:23Z,- harishlingam opened issue: [533](https://github.com/hackforla/website/issues/533) at 2020-05-23 01:29 PM PDT -harishlingam,2020-05-23T20:43:17Z,- harishlingam commented on issue: [482](https://github.com/hackforla/website/issues/482#issuecomment-633136387) at 2020-05-23 01:43 PM PDT -harishlingam,2020-05-23T20:43:17Z,- harishlingam closed issue as completed: [482](https://github.com/hackforla/website/issues/482#event-3367409099) at 2020-05-23 01:43 PM PDT -harishlingam,2020-05-23T20:49:02Z,- harishlingam assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629882675) at 2020-05-23 01:49 PM PDT -harishlingam,2020-05-23T20:53:55Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633138460) at 2020-05-23 01:53 PM PDT -harishlingam,2020-05-24T01:31:37Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163692) at 2020-05-23 06:31 PM PDT -harishlingam,2020-05-24T01:32:46Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163759) at 2020-05-23 06:32 PM PDT -harishlingam,2020-05-24T16:22:24Z,- harishlingam opened issue: [534](https://github.com/hackforla/website/issues/534) at 2020-05-24 09:22 AM PDT -harishlingam,2020-05-24T16:46:33Z,- harishlingam opened issue: [535](https://github.com/hackforla/website/issues/535) at 2020-05-24 09:46 AM PDT -harishlingam,2020-05-24T19:25:02Z,- harishlingam unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163759) at 2020-05-24 12:25 PM PDT -harishlingam,2020-05-24T19:31:10Z,- harishlingam unassigned from issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -harishlingam,2020-05-24T19:34:46Z,- harishlingam unassigned from issue: [273](https://github.com/hackforla/website/issues/273#issuecomment-633283842) at 2020-05-24 12:34 PM PDT -harishlingam,2020-05-24T19:35:01Z,- harishlingam unassigned from issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969580) at 2020-05-24 12:35 PM PDT -harishlingam,2020-05-24T19:52:27Z,- harishlingam assigned to issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969580) at 2020-05-24 12:52 PM PDT -harishlingam,2020-05-24T19:53:40Z,- harishlingam unassigned from issue: [221](https://github.com/hackforla/website/issues/221) at 2020-05-24 12:53 PM PDT -harishlingam,2020-05-24T19:55:00Z,- harishlingam unassigned from issue: [162](https://github.com/hackforla/website/issues/162) at 2020-05-24 12:55 PM PDT -harishlingam,2020-05-24T19:56:04Z,- harishlingam unassigned from issue: [209](https://github.com/hackforla/website/issues/209) at 2020-05-24 12:56 PM PDT -harishlingam,2020-05-24T19:57:10Z,- harishlingam unassigned from issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-605782876) at 2020-05-24 12:57 PM PDT -harishlingam,2020-05-24T20:09:43Z,- harishlingam unassigned from issue: [436](https://github.com/hackforla/website/issues/436#issuecomment-633289489) at 2020-05-24 01:09 PM PDT -harishlingam,2020-05-24T20:32:37Z,- harishlingam unassigned from issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-624322591) at 2020-05-24 01:32 PM PDT -harishlingam,2020-05-24T20:39:27Z,- harishlingam unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2020-05-24 01:39 PM PDT -harishlingam,2020-05-24T20:45:04Z,- harishlingam unassigned from issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633296069) at 2020-05-24 01:45 PM PDT -harishlingam,2020-05-24T21:00:10Z,- harishlingam assigned to issue: [538](https://github.com/hackforla/website/issues/538) at 2020-05-24 02:00 PM PDT -harishlingam,2020-05-25T00:01:26Z,- harishlingam commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633319628) at 2020-05-24 05:01 PM PDT -harishlingam,2020-05-25T00:05:06Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-633320104) at 2020-05-24 05:05 PM PDT -harishlingam,2020-05-25T20:40:42Z,- harishlingam opened issue: [542](https://github.com/hackforla/website/issues/542) at 2020-05-25 01:40 PM PDT -harishlingam,2020-05-25T20:40:42Z,- harishlingam assigned to issue: [542](https://github.com/hackforla/website/issues/542) at 2020-05-25 01:40 PM PDT -harishlingam,2020-05-27T20:47:21Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-634930516) at 2020-05-27 01:47 PM PDT -harishlingam,2020-05-27T21:03:46Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-634938449) at 2020-05-27 02:03 PM PDT -harishlingam,2020-05-27T22:32:10Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-634978430) at 2020-05-27 03:32 PM PDT -harishlingam,2020-05-27T22:55:47Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-634986390) at 2020-05-27 03:55 PM PDT -harishlingam,2020-05-31T15:37:16Z,- harishlingam commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-636487613) at 2020-05-31 08:37 AM PDT -harishlingam,2020-05-31T15:40:06Z,- harishlingam commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-636487966) at 2020-05-31 08:40 AM PDT -harishlingam,2020-05-31T17:48:51Z,- harishlingam opened issue: [550](https://github.com/hackforla/website/issues/550) at 2020-05-31 10:48 AM PDT -harishlingam,2020-05-31T17:51:58Z,- harishlingam opened issue: [551](https://github.com/hackforla/website/issues/551) at 2020-05-31 10:51 AM PDT -harishlingam,2020-05-31T18:26:02Z,- harishlingam unassigned from issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636496646) at 2020-05-31 11:26 AM PDT -harishlingam,2020-05-31T18:28:04Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636509287) at 2020-05-31 11:28 AM PDT -harishlingam,2020-05-31T20:36:15Z,- harishlingam opened issue: [552](https://github.com/hackforla/website/issues/552) at 2020-05-31 01:36 PM PDT -harishlingam,2020-06-01T01:29:23Z,- harishlingam closed issue as completed: [210](https://github.com/hackforla/website/issues/210#event-3391204594) at 2020-05-31 06:29 PM PDT -harishlingam,2020-06-01T01:46:10Z,- harishlingam opened issue: [555](https://github.com/hackforla/website/issues/555) at 2020-05-31 06:46 PM PDT -harishlingam,2020-06-03T02:17:01Z,- harishlingam commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-637912358) at 2020-06-02 07:17 PM PDT -harishlingam,2020-06-03T02:29:00Z,- harishlingam commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637915401) at 2020-06-02 07:29 PM PDT -harishlingam,2020-06-03T02:38:18Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-637917801) at 2020-06-02 07:38 PM PDT -harishlingam,2020-06-07T00:23:18Z,- harishlingam opened issue: [562](https://github.com/hackforla/website/issues/562) at 2020-06-06 05:23 PM PDT -harishlingam,2020-06-07T00:23:24Z,- harishlingam assigned to issue: [562](https://github.com/hackforla/website/issues/562) at 2020-06-06 05:23 PM PDT -harishlingam,2020-06-07T01:10:18Z,- harishlingam commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640140731) at 2020-06-06 06:10 PM PDT -harishlingam,2020-06-07T16:25:00Z,- harishlingam opened issue: [567](https://github.com/hackforla/website/issues/567) at 2020-06-07 09:25 AM PDT -harishlingam,2020-06-07T16:43:22Z,- harishlingam opened issue: [568](https://github.com/hackforla/website/issues/568) at 2020-06-07 09:43 AM PDT -harishlingam,2020-06-07T17:24:07Z,- harishlingam reopened issue: [503](https://github.com/hackforla/website/issues/503#event-3416774223) at 2020-06-07 10:24 AM PDT -harishlingam,2020-06-07T17:37:44Z,- harishlingam opened issue: [570](https://github.com/hackforla/website/issues/570) at 2020-06-07 10:37 AM PDT -harishlingam,2020-06-07T17:55:01Z,- harishlingam opened issue: [571](https://github.com/hackforla/website/issues/571) at 2020-06-07 10:55 AM PDT -harishlingam,2020-06-07T18:36:16Z,- harishlingam closed issue as completed: [568](https://github.com/hackforla/website/issues/568#event-3416974332) at 2020-06-07 11:36 AM PDT -harishlingam,2020-06-08T02:04:35Z,- harishlingam unassigned from issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640140731) at 2020-06-07 07:04 PM PDT -harishlingam,2020-06-08T02:39:17Z,- harishlingam closed issue as completed: [340](https://github.com/hackforla/website/issues/340#event-3417746723) at 2020-06-07 07:39 PM PDT -harishlingam,2020-06-08T02:42:20Z,- harishlingam unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-633293006) at 2020-06-07 07:42 PM PDT -harishlingam,2020-06-08T02:43:27Z,- harishlingam closed issue as completed: [284](https://github.com/hackforla/website/issues/284#event-3417756183) at 2020-06-07 07:43 PM PDT -harishlingam,2020-06-08T04:31:22Z,- harishlingam unassigned from issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-636487613) at 2020-06-07 09:31 PM PDT -harishlingam,2020-06-08T04:32:01Z,- harishlingam unassigned from issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616288864) at 2020-06-07 09:32 PM PDT -harishlingam,2020-06-08T05:26:32Z,- harishlingam unassigned from issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 10:26 PM PDT -harishlingam,2020-06-10T03:26:45Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641697603) at 2020-06-09 08:26 PM PDT -harishlingam,2020-06-10T03:26:54Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641697653) at 2020-06-09 08:26 PM PDT -harishlingam,2020-06-10T03:39:13Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641700999) at 2020-06-09 08:39 PM PDT -harishlingam,2020-06-10T03:55:42Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641704877) at 2020-06-09 08:55 PM PDT -harishlingam,2020-06-13T22:54:50Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-643688618) at 2020-06-13 03:54 PM PDT -harishlingam,2020-06-21T18:19:11Z,- harishlingam assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:19 AM PDT -harishlingam,2020-06-21T22:00:41Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187320) at 2020-06-21 03:00 PM PDT -harishlingam,2020-06-21T22:02:59Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-21 03:02 PM PDT -harishlingam,2020-06-21T22:10:45Z,- harishlingam unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-21 03:10 PM PDT -harishlingam,2020-10-22T22:32:57Z,- harishlingam closed issue as completed: [273](https://github.com/hackforla/website/issues/273#event-3911392796) at 2020-10-22 03:32 PM PDT -harishlingam,2020-11-12T23:52:07Z,- harishlingam closed issue as completed: [265](https://github.com/hackforla/website/issues/265#event-3991162912) at 2020-11-12 03:52 PM PST -harishlingam,2021-06-12T12:54:19Z,- harishlingam closed issue as completed: [436](https://github.com/hackforla/website/issues/436#event-4881239376) at 2021-06-12 05:54 AM PDT -harishlingam,2021-11-01T04:09:50Z,- harishlingam unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2021-10-31 09:09 PM PDT -harith-aaron,2024-05-29T08:14:42Z,- harith-aaron commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2136813635) at 2024-05-29 01:14 AM PDT -harshitasao,2840,SKILLS ISSUE -harshitasao,2022-02-22T17:05:52Z,- harshitasao opened issue: [2840](https://github.com/hackforla/website/issues/2840) at 2022-02-22 09:05 AM PST -harshitasao,2022-02-23T07:23:40Z,- harshitasao assigned to issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1048413831) at 2022-02-22 11:23 PM PST -harshitasao,2022-02-23T11:01:30Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1048666019) at 2022-02-23 03:01 AM PST -harshitasao,2022-02-23T13:31:54Z,- harshitasao assigned to issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1046314894) at 2022-02-23 05:31 AM PST -harshitasao,2022-02-23T13:33:00Z,- harshitasao opened pull request: [2872](https://github.com/hackforla/website/pull/2872) at 2022-02-23 05:33 AM PST -harshitasao,2022-02-23T23:13:16Z,- harshitasao pull request closed w/o merging: [2872](https://github.com/hackforla/website/pull/2872#event-6128577607) at 2022-02-23 03:13 PM PST -harshitasao,2022-02-23T23:14:03Z,- harshitasao unassigned from issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049305628) at 2022-02-23 03:14 PM PST -harshitasao,2022-02-24T03:18:06Z,- harshitasao commented on issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049454355) at 2022-02-23 07:18 PM PST -harshitasao,2022-02-24T07:53:37Z,- harshitasao assigned to issue: [2791](https://github.com/hackforla/website/issues/2791#issuecomment-1045479483) at 2022-02-23 11:53 PM PST -harshitasao,2022-02-24T11:09:06Z,- harshitasao opened pull request: [2883](https://github.com/hackforla/website/pull/2883) at 2022-02-24 03:09 AM PST -harshitasao,2022-02-25T20:46:26Z,- harshitasao pull request merged: [2883](https://github.com/hackforla/website/pull/2883#event-6141862144) at 2022-02-25 12:46 PM PST -harshitasao,2022-02-26T04:32:16Z,- harshitasao commented on pull request: [2883](https://github.com/hackforla/website/pull/2883#issuecomment-1051567870) at 2022-02-25 08:32 PM PST -harshitasao,2022-02-28T10:20:04Z,- harshitasao assigned to issue: [2890](https://github.com/hackforla/website/issues/2890#issuecomment-1051559621) at 2022-02-28 02:20 AM PST -harshitasao,2022-02-28T11:09:21Z,- harshitasao opened pull request: [2903](https://github.com/hackforla/website/pull/2903) at 2022-02-28 03:09 AM PST -harshitasao,2022-03-01T09:37:09Z,- harshitasao closed issue as completed: [2840](https://github.com/hackforla/website/issues/2840#event-6160645607) at 2022-03-01 01:37 AM PST -harshitasao,2022-03-01T09:50:46Z,- harshitasao pull request merged: [2903](https://github.com/hackforla/website/pull/2903#event-6160740538) at 2022-03-01 01:50 AM PST -harshitasao,2022-03-11T14:27:38Z,- harshitasao assigned to issue: [2896](https://github.com/hackforla/website/issues/2896#issuecomment-1053380851) at 2022-03-11 06:27 AM PST -harshitasao,2022-03-12T03:34:46Z,- harshitasao commented on issue: [2896](https://github.com/hackforla/website/issues/2896#issuecomment-1065803851) at 2022-03-11 08:34 PM PDT -harshitasao,2022-03-12T11:20:17Z,- harshitasao opened pull request: [2970](https://github.com/hackforla/website/pull/2970) at 2022-03-12 04:20 AM PDT -harshitasao,2022-03-15T13:51:26Z,- harshitasao commented on pull request: [2983](https://github.com/hackforla/website/pull/2983#issuecomment-1068012707) at 2022-03-15 06:51 AM PDT -harshitasao,2022-03-15T17:41:21Z,- harshitasao submitted pull request review: [2983](https://github.com/hackforla/website/pull/2983#pullrequestreview-910597387) at 2022-03-15 10:41 AM PDT -harshitasao,2022-03-16T21:14:35Z,- harshitasao pull request merged: [2970](https://github.com/hackforla/website/pull/2970#event-6254038125) at 2022-03-16 02:14 PM PDT -harshitasao,2022-03-18T13:18:08Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1072401838) at 2022-03-18 06:18 AM PDT -harshitasao,2022-03-21T12:35:20Z,- harshitasao commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1073839553) at 2022-03-21 05:35 AM PDT -harshitasao,2022-03-21T17:23:27Z,- harshitasao submitted pull request review: [2996](https://github.com/hackforla/website/pull/2996#pullrequestreview-916101612) at 2022-03-21 10:23 AM PDT -harshitasao,2022-03-22T13:49:11Z,- harshitasao commented on pull request: [2998](https://github.com/hackforla/website/pull/2998#issuecomment-1075204374) at 2022-03-22 06:49 AM PDT -harshitasao,2022-03-22T17:55:23Z,- harshitasao submitted pull request review: [2998](https://github.com/hackforla/website/pull/2998#pullrequestreview-917652288) at 2022-03-22 10:55 AM PDT -harshitasao,2022-03-25T07:11:05Z,- harshitasao assigned to issue: [2290](https://github.com/hackforla/website/issues/2290) at 2022-03-25 12:11 AM PDT -harshitasao,2022-03-25T07:16:10Z,- harshitasao commented on issue: [2290](https://github.com/hackforla/website/issues/2290#issuecomment-1078726380) at 2022-03-25 12:16 AM PDT -harshitasao,2022-03-26T02:23:32Z,- harshitasao commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079569397) at 2022-03-25 07:23 PM PDT -harshitasao,2022-03-26T09:46:35Z,- harshitasao submitted pull request review: [3013](https://github.com/hackforla/website/pull/3013#pullrequestreview-922301147) at 2022-03-26 02:46 AM PDT -harshitasao,2022-03-26T13:16:48Z,- harshitasao opened pull request: [3014](https://github.com/hackforla/website/pull/3014) at 2022-03-26 06:16 AM PDT -harshitasao,2022-03-31T08:02:04Z,- harshitasao pull request merged: [3014](https://github.com/hackforla/website/pull/3014#event-6341616176) at 2022-03-31 01:02 AM PDT -harshitasao,2022-04-02T16:18:38Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1086671352) at 2022-04-02 09:18 AM PDT -harshitasao,2022-04-03T03:32:49Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1086769087) at 2022-04-02 08:32 PM PDT -harshitasao,2022-04-06T06:05:11Z,- harshitasao assigned to issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-995399442) at 2022-04-05 11:05 PM PDT -harshitasao,2022-04-06T06:08:09Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1089858441) at 2022-04-05 11:08 PM PDT -harshitasao,2022-04-08T07:49:32Z,- harshitasao commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1092557227) at 2022-04-08 12:49 AM PDT -harshitasao,2022-04-08T16:44:59Z,- harshitasao submitted pull request review: [3037](https://github.com/hackforla/website/pull/3037#pullrequestreview-936722853) at 2022-04-08 09:44 AM PDT -harshitasao,2022-04-10T18:24:03Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1094341643) at 2022-04-10 11:24 AM PDT -harshitasao,2022-04-10T18:29:47Z,- harshitasao closed issue as completed: [2840](https://github.com/hackforla/website/issues/2840#event-6404515021) at 2022-04-10 11:29 AM PDT -harshitasao,2022-04-12T13:00:22Z,- harshitasao commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096697858) at 2022-04-12 06:00 AM PDT -harshitasao,2022-04-12T14:21:46Z,- harshitasao submitted pull request review: [3044](https://github.com/hackforla/website/pull/3044#pullrequestreview-939637556) at 2022-04-12 07:21 AM PDT -harshitasao,2022-04-12T17:01:02Z,- harshitasao commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096974577) at 2022-04-12 10:01 AM PDT -harshitasao,2022-04-18T14:16:59Z,- harshitasao commented on pull request: [3062](https://github.com/hackforla/website/pull/3062#issuecomment-1101443528) at 2022-04-18 07:16 AM PDT -harshitasao,2022-04-18T16:32:42Z,- harshitasao commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1101547740) at 2022-04-18 09:32 AM PDT -harshitasao,2022-04-19T03:36:06Z,- harshitasao submitted pull request review: [3062](https://github.com/hackforla/website/pull/3062#pullrequestreview-945018397) at 2022-04-18 08:36 PM PDT -harshitasao,2022-04-19T06:18:43Z,- harshitasao submitted pull request review: [3061](https://github.com/hackforla/website/pull/3061#pullrequestreview-945107079) at 2022-04-18 11:18 PM PDT -harshitasao,2022-04-23T16:23:46Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1107529662) at 2022-04-23 09:23 AM PDT -harshitasao,2022-04-25T05:04:56Z,- harshitasao commented on pull request: [3081](https://github.com/hackforla/website/pull/3081#issuecomment-1108081657) at 2022-04-24 10:04 PM PDT -harshitasao,2022-04-25T18:38:19Z,- harshitasao submitted pull request review: [3081](https://github.com/hackforla/website/pull/3081#pullrequestreview-952297266) at 2022-04-25 11:38 AM PDT -harshitasao,2022-04-25T18:58:01Z,- harshitasao submitted pull request review: [3081](https://github.com/hackforla/website/pull/3081#pullrequestreview-952318444) at 2022-04-25 11:58 AM PDT -harshitasao,2022-05-07T07:17:18Z,- harshitasao commented on pull request: [3108](https://github.com/hackforla/website/pull/3108#issuecomment-1120153659) at 2022-05-07 12:17 AM PDT -harshitasao,2022-05-07T12:53:01Z,- harshitasao submitted pull request review: [3108](https://github.com/hackforla/website/pull/3108#pullrequestreview-965329208) at 2022-05-07 05:53 AM PDT -harshitasao,2022-05-08T13:16:38Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1120417439) at 2022-05-08 06:16 AM PDT -harshitasao,2022-05-09T09:44:25Z,- harshitasao commented on pull request: [3114](https://github.com/hackforla/website/pull/3114#issuecomment-1120882783) at 2022-05-09 02:44 AM PDT -harshitasao,2022-05-10T06:02:38Z,- harshitasao submitted pull request review: [3114](https://github.com/hackforla/website/pull/3114#pullrequestreview-967213064) at 2022-05-09 11:02 PM PDT -harshitasao,2022-05-19T08:02:42Z,- harshitasao commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1131371363) at 2022-05-19 01:02 AM PDT -harshitasao,2022-05-19T08:03:14Z,- harshitasao commented on pull request: [3159](https://github.com/hackforla/website/pull/3159#issuecomment-1131371855) at 2022-05-19 01:03 AM PDT -harshitasao,2022-05-20T02:58:23Z,- harshitasao submitted pull request review: [3159](https://github.com/hackforla/website/pull/3159#pullrequestreview-979462188) at 2022-05-19 07:58 PM PDT -harshitasao,2022-05-21T05:29:19Z,- harshitasao commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133538250) at 2022-05-20 10:29 PM PDT -harshitasao,2022-05-21T13:42:53Z,- harshitasao submitted pull request review: [3163](https://github.com/hackforla/website/pull/3163#pullrequestreview-980828970) at 2022-05-21 06:42 AM PDT -harshitasao,2022-05-24T05:30:12Z,- harshitasao commented on pull request: [3172](https://github.com/hackforla/website/pull/3172#issuecomment-1135427522) at 2022-05-23 10:30 PM PDT -harshitasao,2022-05-24T05:42:11Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1135434712) at 2022-05-23 10:42 PM PDT -harshitasao,2022-05-24T19:23:39Z,- harshitasao submitted pull request review: [3172](https://github.com/hackforla/website/pull/3172#pullrequestreview-983744202) at 2022-05-24 12:23 PM PDT -harshitasao,2022-05-25T02:50:33Z,- harshitasao submitted pull request review: [3172](https://github.com/hackforla/website/pull/3172#pullrequestreview-984151851) at 2022-05-24 07:50 PM PDT -harshitasao,2022-07-25T21:52:28Z,- harshitasao unassigned from issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1194674868) at 2022-07-25 02:52 PM PDT -hdkassamali,7888,SKILLS ISSUE -hdkassamali,2025-02-05T04:19:11Z,- hdkassamali opened issue: [7888](https://github.com/hackforla/website/issues/7888) at 2025-02-04 08:19 PM PST -hdkassamali,2025-02-05T04:19:31Z,- hdkassamali assigned to issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2635668013) at 2025-02-04 08:19 PM PST -hdkassamali,2025-02-09T18:37:23Z,- hdkassamali commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2646473726) at 2025-02-09 10:37 AM PST -hdkassamali,2025-02-09T18:41:42Z,- hdkassamali commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2646475221) at 2025-02-09 10:41 AM PST -hdkassamali,2025-02-21T02:14:59Z,- hdkassamali commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2673182485) at 2025-02-20 06:14 PM PST -heejung-hong,5868,SKILLS ISSUE -heejung-hong,2023-11-07T04:03:32Z,- heejung-hong opened issue: [5868](https://github.com/hackforla/website/issues/5868) at 2023-11-06 08:03 PM PST -heejung-hong,2023-11-07T04:03:52Z,- heejung-hong assigned to issue: [5868](https://github.com/hackforla/website/issues/5868#issuecomment-1797715249) at 2023-11-06 08:03 PM PST -heejung-hong,2023-11-11T01:23:51Z,- heejung-hong assigned to issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1797802085) at 2023-11-10 05:23 PM PST -heejung-hong,2023-11-11T04:35:42Z,- heejung-hong commented on issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1806675791) at 2023-11-10 08:35 PM PST -heejung-hong,2023-11-13T17:33:36Z,- heejung-hong opened pull request: [5898](https://github.com/hackforla/website/pull/5898) at 2023-11-13 09:33 AM PST -heejung-hong,2023-11-20T23:03:28Z,- heejung-hong pull request closed w/o merging: [5898](https://github.com/hackforla/website/pull/5898#event-11017581386) at 2023-11-20 03:03 PM PST -heejung-hong,2023-11-20T23:24:27Z,- heejung-hong opened pull request: [5925](https://github.com/hackforla/website/pull/5925) at 2023-11-20 03:24 PM PST -heejung-hong,2023-11-22T20:41:21Z,- heejung-hong commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1823477643) at 2023-11-22 12:41 PM PST -heejung-hong,2023-11-22T21:18:50Z,- heejung-hong submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1745393467) at 2023-11-22 01:18 PM PST -heejung-hong,2023-11-22T21:30:14Z,- heejung-hong pull request merged: [5925](https://github.com/hackforla/website/pull/5925#event-11041395757) at 2023-11-22 01:30 PM PST -heejung-hong,2023-11-23T00:31:02Z,- heejung-hong assigned to issue: [5798](https://github.com/hackforla/website/issues/5798) at 2023-11-22 04:31 PM PST -heejung-hong,2023-11-27T18:13:51Z,- heejung-hong opened pull request: [5937](https://github.com/hackforla/website/pull/5937) at 2023-11-27 10:13 AM PST -heejung-hong,2023-11-29T03:26:12Z,- heejung-hong commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1831154211) at 2023-11-28 07:26 PM PST -heejung-hong,2023-11-29T03:36:13Z,- heejung-hong commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1831163830) at 2023-11-28 07:36 PM PST -heejung-hong,2023-11-29T04:27:21Z,- heejung-hong pull request closed w/o merging: [5937](https://github.com/hackforla/website/pull/5937#event-11091458187) at 2023-11-28 08:27 PM PST -heejung-hong,2023-11-29T04:27:48Z,- heejung-hong commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1831197680) at 2023-11-28 08:27 PM PST -heejung-hong,2023-11-29T20:07:43Z,- heejung-hong commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1832626388) at 2023-11-29 12:07 PM PST -heejung-hong,2023-11-30T21:39:26Z,- heejung-hong opened pull request: [5951](https://github.com/hackforla/website/pull/5951) at 2023-11-30 01:39 PM PST -heejung-hong,2023-12-01T03:28:10Z,- heejung-hong submitted pull request review: [5952](https://github.com/hackforla/website/pull/5952#pullrequestreview-1758942278) at 2023-11-30 07:28 PM PST -heejung-hong,2023-12-02T18:42:02Z,- heejung-hong pull request merged: [5951](https://github.com/hackforla/website/pull/5951#event-11129560741) at 2023-12-02 10:42 AM PST -heejung-hong,2023-12-07T22:48:58Z,- heejung-hong commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1846226938) at 2023-12-07 02:48 PM PST -heejung-hong,2023-12-07T23:19:54Z,- heejung-hong submitted pull request review: [5957](https://github.com/hackforla/website/pull/5957#pullrequestreview-1771283121) at 2023-12-07 03:19 PM PST -heejung-hong,2023-12-12T01:00:35Z,- heejung-hong assigned to issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1752126495) at 2023-12-11 05:00 PM PST -heejung-hong,2023-12-22T02:21:35Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1867149393) at 2023-12-21 06:21 PM PST -heejung-hong,2023-12-22T02:41:51Z,- heejung-hong assigned to issue: [5735](https://github.com/hackforla/website/issues/5735) at 2023-12-21 06:41 PM PST -heejung-hong,2023-12-22T02:44:17Z,- heejung-hong commented on issue: [5735](https://github.com/hackforla/website/issues/5735#issuecomment-1867162344) at 2023-12-21 06:44 PM PST -heejung-hong,2024-01-05T04:37:29Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1878112319) at 2024-01-04 08:37 PM PST -heejung-hong,2024-01-05T05:09:25Z,- heejung-hong submitted pull request review: [6063](https://github.com/hackforla/website/pull/6063#pullrequestreview-1805354133) at 2024-01-04 09:09 PM PST -heejung-hong,2024-01-05T05:37:15Z,- heejung-hong submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1805371080) at 2024-01-04 09:37 PM PST -heejung-hong,2024-01-09T03:27:14Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1882331309) at 2024-01-08 07:27 PM PST -heejung-hong,2024-01-09T03:29:39Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1882336265) at 2024-01-08 07:29 PM PST -heejung-hong,2024-01-16T04:16:58Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1893045818) at 2024-01-15 08:16 PM PST -heejung-hong,2024-01-23T05:21:39Z,- heejung-hong assigned to issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1905148455) at 2024-01-22 09:21 PM PST -heejung-hong,2024-01-23T05:24:28Z,- heejung-hong commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1905314650) at 2024-01-22 09:24 PM PST -heejung-hong,2024-01-24T04:37:36Z,- heejung-hong opened pull request: [6149](https://github.com/hackforla/website/pull/6149) at 2024-01-23 08:37 PM PST -heejung-hong,2024-01-26T06:35:07Z,- heejung-hong submitted pull request review: [6164](https://github.com/hackforla/website/pull/6164#pullrequestreview-1845135551) at 2024-01-25 10:35 PM PST -heejung-hong,2024-01-26T06:49:37Z,- heejung-hong pull request merged: [6149](https://github.com/hackforla/website/pull/6149#event-11605512918) at 2024-01-25 10:49 PM PST -heejung-hong,2024-01-31T03:45:37Z,- heejung-hong assigned to issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1796293621) at 2024-01-30 07:45 PM PST -heejung-hong,2024-01-31T03:48:46Z,- heejung-hong commented on issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1918331351) at 2024-01-30 07:48 PM PST -heejung-hong,2024-02-02T04:59:57Z,- heejung-hong submitted pull request review: [6210](https://github.com/hackforla/website/pull/6210#pullrequestreview-1858304708) at 2024-02-01 08:59 PM PST -heejung-hong,2024-02-02T05:18:20Z,- heejung-hong commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922847957) at 2024-02-01 09:18 PM PST -heejung-hong,2024-02-02T05:20:50Z,- heejung-hong submitted pull request review: [6207](https://github.com/hackforla/website/pull/6207#pullrequestreview-1858325658) at 2024-02-01 09:20 PM PST -heejung-hong,2024-02-02T05:41:37Z,- heejung-hong submitted pull request review: [6206](https://github.com/hackforla/website/pull/6206#pullrequestreview-1858362360) at 2024-02-01 09:41 PM PST -heejung-hong,2024-02-02T05:54:17Z,- heejung-hong submitted pull request review: [6204](https://github.com/hackforla/website/pull/6204#pullrequestreview-1858377479) at 2024-02-01 09:54 PM PST -heejung-hong,2024-02-02T06:09:09Z,- heejung-hong submitted pull request review: [6202](https://github.com/hackforla/website/pull/6202#pullrequestreview-1858393836) at 2024-02-01 10:09 PM PST -heejung-hong,2024-02-02T06:30:18Z,- heejung-hong submitted pull request review: [6201](https://github.com/hackforla/website/pull/6201#pullrequestreview-1858430570) at 2024-02-01 10:30 PM PST -heejung-hong,2024-02-08T23:41:24Z,- heejung-hong submitted pull request review: [6263](https://github.com/hackforla/website/pull/6263#pullrequestreview-1871445502) at 2024-02-08 03:41 PM PST -heejung-hong,2024-02-09T00:00:39Z,- heejung-hong submitted pull request review: [6241](https://github.com/hackforla/website/pull/6241#pullrequestreview-1871459633) at 2024-02-08 04:00 PM PST -heejung-hong,2024-02-09T03:28:12Z,- heejung-hong opened pull request: [6270](https://github.com/hackforla/website/pull/6270) at 2024-02-08 07:28 PM PST -heejung-hong,2024-02-11T17:40:26Z,- heejung-hong pull request merged: [6270](https://github.com/hackforla/website/pull/6270#event-11767719708) at 2024-02-11 09:40 AM PST -heejung-hong,2024-02-11T19:38:57Z,- heejung-hong commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1937848629) at 2024-02-11 11:38 AM PST -heejung-hong,2024-02-16T03:15:43Z,- heejung-hong submitted pull request review: [6301](https://github.com/hackforla/website/pull/6301#pullrequestreview-1884247913) at 2024-02-15 07:15 PM PST -heejung-hong,2024-02-16T04:03:29Z,- heejung-hong submitted pull request review: [6300](https://github.com/hackforla/website/pull/6300#pullrequestreview-1884275343) at 2024-02-15 08:03 PM PST -heejung-hong,2024-02-22T20:02:01Z,- heejung-hong submitted pull request review: [6357](https://github.com/hackforla/website/pull/6357#pullrequestreview-1896844769) at 2024-02-22 12:02 PM PST -heejung-hong,2024-02-22T20:44:15Z,- heejung-hong submitted pull request review: [6359](https://github.com/hackforla/website/pull/6359#pullrequestreview-1896910802) at 2024-02-22 12:44 PM PST -heejung-hong,2024-02-22T20:53:23Z,- heejung-hong submitted pull request review: [6358](https://github.com/hackforla/website/pull/6358#pullrequestreview-1896923964) at 2024-02-22 12:53 PM PST -heejung-hong,2024-02-22T22:18:15Z,- heejung-hong submitted pull request review: [6352](https://github.com/hackforla/website/pull/6352#pullrequestreview-1897058184) at 2024-02-22 02:18 PM PST -heejung-hong,2024-02-22T22:31:35Z,- heejung-hong submitted pull request review: [6351](https://github.com/hackforla/website/pull/6351#pullrequestreview-1897092207) at 2024-02-22 02:31 PM PST -heejung-hong,2024-02-22T22:51:56Z,- heejung-hong submitted pull request review: [6328](https://github.com/hackforla/website/pull/6328#pullrequestreview-1897114725) at 2024-02-22 02:51 PM PST -heejung-hong,2024-02-29T23:29:23Z,- heejung-hong submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1910049593) at 2024-02-29 03:29 PM PST -heejung-hong,2024-02-29T23:36:54Z,- heejung-hong submitted pull request review: [6401](https://github.com/hackforla/website/pull/6401#pullrequestreview-1910055866) at 2024-02-29 03:36 PM PST -heejung-hong,2024-03-01T00:30:28Z,- heejung-hong submitted pull request review: [6386](https://github.com/hackforla/website/pull/6386#pullrequestreview-1910098204) at 2024-02-29 04:30 PM PST -heejung-hong,2024-03-02T02:25:01Z,- heejung-hong submitted pull request review: [6386](https://github.com/hackforla/website/pull/6386#pullrequestreview-1912508783) at 2024-03-01 06:25 PM PST -heejung-hong,2024-03-02T02:34:42Z,- heejung-hong commented on issue: [5868](https://github.com/hackforla/website/issues/5868#issuecomment-1974220678) at 2024-03-01 06:34 PM PST -heejung-hong,2024-03-02T02:35:17Z,- heejung-hong closed issue as completed: [5868](https://github.com/hackforla/website/issues/5868#event-11986189379) at 2024-03-01 06:35 PM PST -heejung-hong,2024-03-02T02:42:40Z,- heejung-hong assigned to issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1958318079) at 2024-03-01 06:42 PM PST -heejung-hong,2024-03-02T02:45:55Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1974228412) at 2024-03-01 06:45 PM PST -heejung-hong,2024-03-04T04:42:57Z,- heejung-hong unassigned from issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1974228412) at 2024-03-03 08:42 PM PST -heejung-hong,2024-03-04T04:44:01Z,- heejung-hong assigned to issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1974228412) at 2024-03-03 08:44 PM PST -heejung-hong,2024-03-08T01:39:53Z,- heejung-hong submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1923879207) at 2024-03-07 05:39 PM PST -heejung-hong,2024-03-08T21:00:33Z,- heejung-hong submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1925830907) at 2024-03-08 01:00 PM PST -heejung-hong,2024-03-14T23:24:29Z,- heejung-hong submitted pull request review: [6462](https://github.com/hackforla/website/pull/6462#pullrequestreview-1937884719) at 2024-03-14 04:24 PM PDT -heejung-hong,2024-03-14T23:33:15Z,- heejung-hong submitted pull request review: [6461](https://github.com/hackforla/website/pull/6461#pullrequestreview-1937890901) at 2024-03-14 04:33 PM PDT -heejung-hong,2024-03-15T06:28:19Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1999021728) at 2024-03-14 11:28 PM PDT -heejung-hong,2024-03-29T03:29:32Z,- heejung-hong submitted pull request review: [6508](https://github.com/hackforla/website/pull/6508#pullrequestreview-1967772528) at 2024-03-28 08:29 PM PDT -heejung-hong,2024-03-29T03:41:45Z,- heejung-hong submitted pull request review: [6521](https://github.com/hackforla/website/pull/6521#pullrequestreview-1967785050) at 2024-03-28 08:41 PM PDT -heejung-hong,2024-03-29T03:51:34Z,- heejung-hong submitted pull request review: [6533](https://github.com/hackforla/website/pull/6533#pullrequestreview-1967790131) at 2024-03-28 08:51 PM PDT -heejung-hong,2024-03-31T18:52:55Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2028872754) at 2024-03-31 11:52 AM PDT -heejung-hong,2024-04-05T00:58:28Z,- heejung-hong submitted pull request review: [6538](https://github.com/hackforla/website/pull/6538#pullrequestreview-1981464313) at 2024-04-04 05:58 PM PDT -heejung-hong,2024-04-05T01:09:37Z,- heejung-hong submitted pull request review: [6540](https://github.com/hackforla/website/pull/6540#pullrequestreview-1981473019) at 2024-04-04 06:09 PM PDT -heejung-hong,2024-04-05T01:47:18Z,- heejung-hong submitted pull request review: [6553](https://github.com/hackforla/website/pull/6553#pullrequestreview-1981496939) at 2024-04-04 06:47 PM PDT -heejung-hong,2024-04-05T01:53:04Z,- heejung-hong submitted pull request review: [6560](https://github.com/hackforla/website/pull/6560#pullrequestreview-1981500887) at 2024-04-04 06:53 PM PDT -heejung-hong,2024-04-05T03:12:31Z,- heejung-hong submitted pull request review: [6564](https://github.com/hackforla/website/pull/6564#pullrequestreview-1981592535) at 2024-04-04 08:12 PM PDT -heejung-hong,2024-04-11T23:27:36Z,- heejung-hong submitted pull request review: [6612](https://github.com/hackforla/website/pull/6612#pullrequestreview-1995629057) at 2024-04-11 04:27 PM PDT -heejung-hong,2024-04-11T23:38:06Z,- heejung-hong submitted pull request review: [6616](https://github.com/hackforla/website/pull/6616#pullrequestreview-1995636205) at 2024-04-11 04:38 PM PDT -heejung-hong,2024-04-12T00:40:02Z,- heejung-hong submitted pull request review: [6618](https://github.com/hackforla/website/pull/6618#pullrequestreview-1995678913) at 2024-04-11 05:40 PM PDT -heejung-hong,2024-04-12T02:46:27Z,- heejung-hong submitted pull request review: [6624](https://github.com/hackforla/website/pull/6624#pullrequestreview-1995777168) at 2024-04-11 07:46 PM PDT -heejung-hong,2024-04-12T03:29:25Z,- heejung-hong submitted pull request review: [6627](https://github.com/hackforla/website/pull/6627#pullrequestreview-1995805926) at 2024-04-11 08:29 PM PDT -heejung-hong,2024-04-12T03:35:46Z,- heejung-hong submitted pull request review: [6629](https://github.com/hackforla/website/pull/6629#pullrequestreview-1995809601) at 2024-04-11 08:35 PM PDT -heejung-hong,2024-04-12T03:45:47Z,- heejung-hong submitted pull request review: [6616](https://github.com/hackforla/website/pull/6616#pullrequestreview-1995815901) at 2024-04-11 08:45 PM PDT -heejung-hong,2024-04-12T04:04:59Z,- heejung-hong submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-1995831432) at 2024-04-11 09:04 PM PDT -heejung-hong,2024-04-15T18:49:23Z,- heejung-hong submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-2001923763) at 2024-04-15 11:49 AM PDT -heejung-hong,2024-04-18T22:35:54Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2065436514) at 2024-04-18 03:35 PM PDT -hellorachelschwartz,3252,SKILLS ISSUE -hellorachelschwartz,2022-06-15T21:11:10Z,- hellorachelschwartz opened issue: [3252](https://github.com/hackforla/website/issues/3252) at 2022-06-15 02:11 PM PDT -hellorachelschwartz,2022-06-15T21:25:00Z,- hellorachelschwartz assigned to issue: [3252](https://github.com/hackforla/website/issues/3252#issuecomment-1156947605) at 2022-06-15 02:25 PM PDT -Henrymarks1,2019-12-29T03:04:15Z,- Henrymarks1 assigned to issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-28 07:04 PM PST -heylittlehouse,2019-08-14T03:58:26Z,- heylittlehouse opened pull request: [140](https://github.com/hackforla/website/pull/140) at 2019-08-13 08:58 PM PDT -heylittlehouse,2019-08-14T04:32:33Z,- heylittlehouse pull request closed w/o merging: [140](https://github.com/hackforla/website/pull/140#event-2555365874) at 2019-08-13 09:32 PM PDT -heylittlehouse,2019-08-14T04:37:42Z,- heylittlehouse opened pull request: [141](https://github.com/hackforla/website/pull/141) at 2019-08-13 09:37 PM PDT -heylittlehouse,2019-08-14T04:50:55Z,- heylittlehouse opened pull request: [142](https://github.com/hackforla/website/pull/142) at 2019-08-13 09:50 PM PDT -heylittlehouse,2019-08-14T05:04:21Z,- heylittlehouse commented on issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-521102591) at 2019-08-13 10:04 PM PDT -heylittlehouse,2019-08-14T05:05:34Z,- heylittlehouse commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-521102779) at 2019-08-13 10:05 PM PDT -heylittlehouse,2019-08-19T18:52:15Z,- heylittlehouse pull request merged: [142](https://github.com/hackforla/website/pull/142#event-2567323569) at 2019-08-19 11:52 AM PDT -heylittlehouse,2019-08-19T18:55:26Z,- heylittlehouse pull request merged: [141](https://github.com/hackforla/website/pull/141#event-2567332489) at 2019-08-19 11:55 AM PDT -heylittlehouse,2019-08-28T03:03:16Z,- heylittlehouse assigned to issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525493715) at 2019-08-27 08:03 PM PDT -heylittlehouse,2019-08-28T03:21:11Z,- heylittlehouse opened pull request: [146](https://github.com/hackforla/website/pull/146) at 2019-08-27 08:21 PM PDT -heylittlehouse,2019-08-28T03:31:48Z,- heylittlehouse opened pull request: [147](https://github.com/hackforla/website/pull/147) at 2019-08-27 08:31 PM PDT -heylittlehouse,2019-08-28T21:46:00Z,- heylittlehouse closed issue by PR 146: [145](https://github.com/hackforla/website/issues/145#event-2592037182) at 2019-08-28 02:46 PM PDT -heylittlehouse,2019-08-28T21:46:00Z,- heylittlehouse pull request merged: [146](https://github.com/hackforla/website/pull/146#event-2592037186) at 2019-08-28 02:46 PM PDT -heylittlehouse,2019-10-28T22:06:25Z,- heylittlehouse closed issue by PR 146: [145](https://github.com/hackforla/website/issues/145#event-2750217994) at 2019-10-28 03:06 PM PDT -heylittlehouse,2019-12-22T23:36:15Z,- heylittlehouse pull request merged: [147](https://github.com/hackforla/website/pull/147#event-2903495953) at 2019-12-22 03:36 PM PST -hirentimbadiya,2023-07-26T12:11:07Z,- hirentimbadiya commented on issue: [5041](https://github.com/hackforla/website/issues/5041#issuecomment-1651684925) at 2023-07-26 05:11 AM PDT -hirentimbadiya,2023-07-26T12:14:18Z,- hirentimbadiya commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1651689339) at 2023-07-26 05:14 AM PDT -hisergiorojas,2020-11-11T03:32:30Z,- hisergiorojas assigned to issue: [800](https://github.com/hackforla/website/issues/800) at 2020-11-10 07:32 PM PST -hisergiorojas,2020-11-17T02:11:14Z,- hisergiorojas commented on issue: [800](https://github.com/hackforla/website/issues/800#issuecomment-728640081) at 2020-11-16 06:11 PM PST -hisergiorojas,2020-11-17T02:38:23Z,- hisergiorojas opened pull request: [809](https://github.com/hackforla/website/pull/809) at 2020-11-16 06:38 PM PST -hisergiorojas,2020-11-17T02:51:25Z,- hisergiorojas commented on pull request: [809](https://github.com/hackforla/website/pull/809#issuecomment-728652257) at 2020-11-16 06:51 PM PST -hisergiorojas,2020-11-17T02:52:50Z,- hisergiorojas commented on pull request: [809](https://github.com/hackforla/website/pull/809#issuecomment-728652616) at 2020-11-16 06:52 PM PST -hisergiorojas,2020-11-18T04:04:45Z,- hisergiorojas opened pull request: [810](https://github.com/hackforla/website/pull/810) at 2020-11-17 08:04 PM PST -hisergiorojas,2020-11-18T04:07:06Z,- hisergiorojas pull request closed w/o merging: [809](https://github.com/hackforla/website/pull/809#event-4008635334) at 2020-11-17 08:07 PM PST -hisergiorojas,2020-11-18T04:08:24Z,- hisergiorojas commented on pull request: [810](https://github.com/hackforla/website/pull/810#issuecomment-729392024) at 2020-11-17 08:08 PM PST -hisergiorojas,2020-11-18T04:15:17Z,- hisergiorojas pull request merged: [810](https://github.com/hackforla/website/pull/810#event-4008651371) at 2020-11-17 08:15 PM PST -hisergiorojas,2020-12-02T04:30:01Z,- hisergiorojas assigned to issue: [819](https://github.com/hackforla/website/issues/819) at 2020-12-01 08:30 PM PST -hisergiorojas,2020-12-09T03:31:54Z,- hisergiorojas commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-741503817) at 2020-12-08 07:31 PM PST -hisergiorojas,2021-01-06T03:33:51Z,- hisergiorojas unassigned from issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-748641396) at 2021-01-05 07:33 PM PST -hit1st,2020-11-15T18:56:32Z,- hit1st assigned to issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-727618209) at 2020-11-15 10:56 AM PST -hit1st,2020-11-25T09:08:07Z,- hit1st opened pull request: [814](https://github.com/hackforla/website/pull/814) at 2020-11-25 01:08 AM PST -hit1st,2020-11-29T09:58:58Z,- hit1st closed issue by PR 814: [268](https://github.com/hackforla/website/issues/268#event-4048872450) at 2020-11-29 01:58 AM PST -hit1st,2020-11-29T09:58:58Z,- hit1st pull request merged: [814](https://github.com/hackforla/website/pull/814#event-4048872451) at 2020-11-29 01:58 AM PST -hit1st,2020-11-29T20:06:01Z,- hit1st assigned to issue: [793](https://github.com/hackforla/website/issues/793) at 2020-11-29 12:06 PM PST -hit1st,2020-11-29T21:56:52Z,- hit1st opened pull request: [816](https://github.com/hackforla/website/pull/816) at 2020-11-29 01:56 PM PST -hit1st,2020-11-30T02:50:02Z,- hit1st pull request merged: [816](https://github.com/hackforla/website/pull/816#event-4049820568) at 2020-11-29 06:50 PM PST -hit1st,2020-12-01T01:53:20Z,- hit1st submitted pull request review: [818](https://github.com/hackforla/website/pull/818#pullrequestreview-541431215) at 2020-11-30 05:53 PM PST -hit1st,2020-12-02T04:30:30Z,- hit1st assigned to issue: [756](https://github.com/hackforla/website/issues/756) at 2020-12-01 08:30 PM PST -hit1st,2020-12-07T04:20:29Z,- hit1st commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-739653159) at 2020-12-06 08:20 PM PST -hit1st,2020-12-07T04:36:41Z,- hit1st opened pull request: [834](https://github.com/hackforla/website/pull/834) at 2020-12-06 08:36 PM PST -hit1st,2020-12-09T03:29:26Z,- hit1st pull request merged: [834](https://github.com/hackforla/website/pull/834#event-4087849295) at 2020-12-08 07:29 PM PST -hit1st,2020-12-10T06:56:56Z,- hit1st commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-742284156) at 2020-12-09 10:56 PM PST -HiThereImCam,2021-06-06T18:43:29Z,- HiThereImCam assigned to issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-06-06 11:43 AM PDT -HiThereImCam,2021-06-10T18:11:33Z,- HiThereImCam opened pull request: [1705](https://github.com/hackforla/website/pull/1705) at 2021-06-10 11:11 AM PDT -HiThereImCam,2021-06-10T20:14:05Z,- HiThereImCam commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859013449) at 2021-06-10 01:14 PM PDT -HiThereImCam,2021-06-10T20:14:15Z,- HiThereImCam assigned to issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859013449) at 2021-06-10 01:14 PM PDT -HiThereImCam,2021-06-11T01:59:42Z,- HiThereImCam unassigned from issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859013449) at 2021-06-10 06:59 PM PDT -HiThereImCam,2021-06-11T13:02:34Z,- HiThereImCam commented on pull request: [1705](https://github.com/hackforla/website/pull/1705#issuecomment-859565984) at 2021-06-11 06:02 AM PDT -HiThereImCam,2021-06-11T18:27:27Z,- HiThereImCam commented on pull request: [1705](https://github.com/hackforla/website/pull/1705#issuecomment-859763505) at 2021-06-11 11:27 AM PDT -HiThereImCam,2021-06-12T00:12:49Z,- HiThereImCam pull request merged: [1705](https://github.com/hackforla/website/pull/1705#event-4880547386) at 2021-06-11 05:12 PM PDT -HiThereImCam,2021-06-14T19:14:19Z,- HiThereImCam commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-860928256) at 2021-06-14 12:14 PM PDT -HiThereImCam,2021-07-21T18:37:34Z,- HiThereImCam assigned to issue: [1982](https://github.com/hackforla/website/issues/1982) at 2021-07-21 11:37 AM PDT -HiThereImCam,2021-08-15T16:24:21Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-899077484) at 2021-08-15 09:24 AM PDT -HiThereImCam,2021-08-16T22:05:01Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-899847937) at 2021-08-16 03:05 PM PDT -HiThereImCam,2021-08-18T18:27:26Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-901335053) at 2021-08-18 11:27 AM PDT -HiThereImCam,2021-08-25T15:31:05Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905613746) at 2021-08-25 08:31 AM PDT -HiThereImCam,2021-08-25T15:31:12Z,- HiThereImCam unassigned from issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905613746) at 2021-08-25 08:31 AM PDT -HiThereImCam,2021-08-25T17:19:45Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905725391) at 2021-08-25 10:19 AM PDT -hkhaung,7202,SKILLS ISSUE -hkhaung,2024-08-06T02:54:39Z,- hkhaung opened issue: [7202](https://github.com/hackforla/website/issues/7202) at 2024-08-05 07:54 PM PDT -hkhaung,2024-08-06T02:54:52Z,- hkhaung assigned to issue: [7202](https://github.com/hackforla/website/issues/7202) at 2024-08-05 07:54 PM PDT -hkhaung,2024-08-06T03:24:44Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2270309826) at 2024-08-05 08:24 PM PDT -hkhaung,2024-08-06T03:46:06Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2270325569) at 2024-08-05 08:46 PM PDT -hkhaung,2024-08-07T02:47:39Z,- hkhaung assigned to issue: [7171](https://github.com/hackforla/website/issues/7171) at 2024-08-06 07:47 PM PDT -hkhaung,2024-08-07T03:45:46Z,- hkhaung opened pull request: [7235](https://github.com/hackforla/website/pull/7235) at 2024-08-06 08:45 PM PDT -hkhaung,2024-08-07T03:47:43Z,- hkhaung commented on issue: [7171](https://github.com/hackforla/website/issues/7171#issuecomment-2272559747) at 2024-08-06 08:47 PM PDT -hkhaung,2024-08-07T03:56:36Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2272566184) at 2024-08-06 08:56 PM PDT -hkhaung,2024-08-07T04:02:18Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2272570468) at 2024-08-06 09:02 PM PDT -hkhaung,2024-08-07T21:59:46Z,- hkhaung commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2274421452) at 2024-08-07 02:59 PM PDT -hkhaung,2024-08-08T19:24:41Z,- hkhaung pull request merged: [7235](https://github.com/hackforla/website/pull/7235#event-13811311414) at 2024-08-08 12:24 PM PDT -hkhaung,2024-08-11T17:32:18Z,- hkhaung assigned to issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276942408) at 2024-08-11 10:32 AM PDT -hkhaung,2024-08-11T17:33:53Z,- hkhaung unassigned from issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2282833231) at 2024-08-11 10:33 AM PDT -hkhaung,2024-08-11T17:36:09Z,- hkhaung assigned to issue: [7186](https://github.com/hackforla/website/issues/7186) at 2024-08-11 10:36 AM PDT -hkhaung,2024-08-11T18:23:37Z,- hkhaung opened pull request: [7269](https://github.com/hackforla/website/pull/7269) at 2024-08-11 11:23 AM PDT -hkhaung,2024-08-11T18:27:08Z,- hkhaung commented on issue: [7186](https://github.com/hackforla/website/issues/7186#issuecomment-2282847469) at 2024-08-11 11:27 AM PDT -hkhaung,2024-08-11T19:16:01Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2282860828) at 2024-08-11 12:16 PM PDT -hkhaung,2024-08-14T02:39:30Z,- hkhaung assigned to issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2173957267) at 2024-08-13 07:39 PM PDT -hkhaung,2024-08-14T02:39:46Z,- hkhaung unassigned from issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2287725460) at 2024-08-13 07:39 PM PDT -hkhaung,2024-08-14T03:30:14Z,- hkhaung submitted pull request review: [7271](https://github.com/hackforla/website/pull/7271#pullrequestreview-2237090905) at 2024-08-13 08:30 PM PDT -hkhaung,2024-08-14T03:31:13Z,- hkhaung commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2287769792) at 2024-08-13 08:31 PM PDT -hkhaung,2024-08-15T02:32:58Z,- hkhaung assigned to issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2287725460) at 2024-08-14 07:32 PM PDT -hkhaung,2024-08-15T02:33:14Z,- hkhaung unassigned from issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2290397697) at 2024-08-14 07:33 PM PDT -hkhaung,2024-08-15T15:07:47Z,- hkhaung pull request merged: [7269](https://github.com/hackforla/website/pull/7269#event-13897370699) at 2024-08-15 08:07 AM PDT -hkhaung,2024-08-25T03:37:52Z,- hkhaung assigned to issue: [7149](https://github.com/hackforla/website/issues/7149) at 2024-08-24 08:37 PM PDT -hkhaung,2024-08-25T04:00:11Z,- hkhaung commented on issue: [7149](https://github.com/hackforla/website/issues/7149#issuecomment-2308644258) at 2024-08-24 09:00 PM PDT -hkhaung,2024-08-25T04:10:04Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2308646840) at 2024-08-24 09:10 PM PDT -hkhaung,2024-08-25T04:18:45Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2308648553) at 2024-08-24 09:18 PM PDT -hkhaung,2024-08-25T04:20:48Z,- hkhaung assigned to issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2301392763) at 2024-08-24 09:20 PM PDT -hkhaung,2024-08-25T04:21:06Z,- hkhaung unassigned from issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308648976) at 2024-08-24 09:21 PM PDT -hoanhua14,7896,SKILLS ISSUE -hoanhua14,2025-02-05T23:21:17Z,- hoanhua14 opened issue: [7896](https://github.com/hackforla/website/issues/7896) at 2025-02-05 03:21 PM PST -hoanhua14,2025-02-05T23:21:17Z,- hoanhua14 assigned to issue: [7896](https://github.com/hackforla/website/issues/7896) at 2025-02-05 03:21 PM PST -hoanhua14,2025-02-05T23:25:59Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2638262239) at 2025-02-05 03:25 PM PST -hoanhua14,2025-02-12T00:08:52Z,- hoanhua14 assigned to issue: [7766](https://github.com/hackforla/website/issues/7766) at 2025-02-11 04:08 PM PST -hoanhua14,2025-02-13T17:47:04Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2657329813) at 2025-02-13 09:47 AM PST -hoanhua14,2025-02-13T22:30:12Z,- hoanhua14 opened pull request: [7906](https://github.com/hackforla/website/pull/7906) at 2025-02-13 02:30 PM PST -hoanhua14,2025-02-19T21:15:38Z,- hoanhua14 commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2669777448) at 2025-02-19 01:15 PM PST -hoanhua14,2025-02-20T07:49:19Z,- hoanhua14 pull request merged: [7906](https://github.com/hackforla/website/pull/7906#event-16377472864) at 2025-02-19 11:49 PM PST -hoanhua14,2025-02-20T21:38:00Z,- hoanhua14 commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2672742952) at 2025-02-20 01:38 PM PST -hoanhua14,2025-02-20T22:23:34Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672825697) at 2025-02-20 02:23 PM PST -hoanhua14,2025-02-20T22:36:26Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672847061) at 2025-02-20 02:36 PM PST -hoanhua14,2025-02-20T22:42:36Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672861974) at 2025-02-20 02:42 PM PST -hoanhua14,2025-02-20T22:49:04Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672879147) at 2025-02-20 02:49 PM PST -hoanhua14,2025-02-20T23:15:49Z,- hoanhua14 assigned to issue: [7775](https://github.com/hackforla/website/issues/7775) at 2025-02-20 03:15 PM PST -hoanhua14,2025-02-20T23:18:52Z,- hoanhua14 commented on issue: [7775](https://github.com/hackforla/website/issues/7775#issuecomment-2672925414) at 2025-02-20 03:18 PM PST -hoanhua14,2025-02-21T02:00:31Z,- hoanhua14 opened pull request: [7931](https://github.com/hackforla/website/pull/7931) at 2025-02-20 06:00 PM PST -hoanhua14,2025-02-26T00:16:19Z,- hoanhua14 commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2683577596) at 2025-02-25 04:16 PM PST -hoanhua14,2025-02-26T00:36:10Z,- hoanhua14 commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2683601794) at 2025-02-25 04:36 PM PST -hoanhua14,2025-02-26T01:03:13Z,- hoanhua14 pull request merged: [7931](https://github.com/hackforla/website/pull/7931#event-16470962730) at 2025-02-25 05:03 PM PST -hoanhua14,2025-02-26T22:53:53Z,- hoanhua14 submitted pull request review: [7947](https://github.com/hackforla/website/pull/7947#pullrequestreview-2646139070) at 2025-02-26 02:53 PM PST -hoanhua14,2025-02-27T00:13:56Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2686491209) at 2025-02-26 04:13 PM PST -hoanhua14,2025-02-27T00:25:47Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2686506134) at 2025-02-26 04:25 PM PST -hoanhua14,2025-03-02T23:43:13Z,- hoanhua14 assigned to issue: [7868](https://github.com/hackforla/website/issues/7868) at 2025-03-02 03:43 PM PST -hoanhua14,2025-03-02T23:47:01Z,- hoanhua14 commented on issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2692973381) at 2025-03-02 03:47 PM PST -hoanhua14,2025-03-03T05:32:10Z,- hoanhua14 opened pull request: [7962](https://github.com/hackforla/website/pull/7962) at 2025-03-02 09:32 PM PST -hoanhua14,2025-03-06T00:33:05Z,- hoanhua14 commented on pull request: [7950](https://github.com/hackforla/website/pull/7950#issuecomment-2702399067) at 2025-03-05 04:33 PM PST -hoanhua14,2025-03-07T00:07:03Z,- hoanhua14 submitted pull request review: [7950](https://github.com/hackforla/website/pull/7950#pullrequestreview-2665892455) at 2025-03-06 04:07 PM PST -hoanhua14,2025-03-07T02:16:00Z,- hoanhua14 pull request closed w/o merging: [7962](https://github.com/hackforla/website/pull/7962#event-16625671128) at 2025-03-06 06:16 PM PST -hoanhua14,2025-03-07T02:16:13Z,- hoanhua14 unassigned from issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2692973381) at 2025-03-06 06:16 PM PST -hoanhua14,2025-04-29T22:40:35Z,- hoanhua14 commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2840392761) at 2025-04-29 03:40 PM PDT -hoanhua14,2025-04-29T22:40:53Z,- hoanhua14 commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2840393176) at 2025-04-29 03:40 PM PDT -hoanhua14,2025-05-01T03:00:56Z,- hoanhua14 commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2843975169) at 2025-04-30 08:00 PM PDT -hoanhua14,2025-05-01T03:24:09Z,- hoanhua14 commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2843996192) at 2025-04-30 08:24 PM PDT -hoanhua14,2025-05-06T01:19:16Z,- hoanhua14 submitted pull request review: [8099](https://github.com/hackforla/website/pull/8099#pullrequestreview-2816525929) at 2025-05-05 06:19 PM PDT -hoanhua14,2025-05-06T01:20:57Z,- hoanhua14 commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2852920050) at 2025-05-05 06:20 PM PDT -hoanhua14,2025-05-06T01:35:30Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2852969307) at 2025-05-05 06:35 PM PDT -hoanhua14,2025-05-07T01:21:44Z,- hoanhua14 commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2856751133) at 2025-05-06 06:21 PM PDT -hoanhua14,2025-05-07T19:17:52Z,- hoanhua14 commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2859955349) at 2025-05-07 12:17 PM PDT -hoanhua14,2025-05-08T02:44:47Z,- hoanhua14 submitted pull request review: [8118](https://github.com/hackforla/website/pull/8118#pullrequestreview-2823665076) at 2025-05-07 07:44 PM PDT -hoanhua14,2025-05-08T02:46:39Z,- hoanhua14 submitted pull request review: [8092](https://github.com/hackforla/website/pull/8092#pullrequestreview-2823666821) at 2025-05-07 07:46 PM PDT -hoanhua14,2025-05-08T03:01:57Z,- hoanhua14 submitted pull request review: [8116](https://github.com/hackforla/website/pull/8116#pullrequestreview-2823681546) at 2025-05-07 08:01 PM PDT -hoanhua14,2025-05-08T03:09:17Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2861500249) at 2025-05-07 08:09 PM PDT -hoanhua14,2025-05-08T03:12:42Z,- hoanhua14 assigned to issue: [7990](https://github.com/hackforla/website/issues/7990#issuecomment-2726806420) at 2025-05-07 08:12 PM PDT -hoanhua14,2025-05-08T03:12:55Z,- hoanhua14 unassigned from issue: [7990](https://github.com/hackforla/website/issues/7990#issuecomment-2861515428) at 2025-05-07 08:12 PM PDT -hoanhua14,2025-05-09T02:12:02Z,- hoanhua14 submitted pull request review: [8118](https://github.com/hackforla/website/pull/8118#pullrequestreview-2826779866) at 2025-05-08 07:12 PM PDT -hoanhua14,2025-05-09T02:13:06Z,- hoanhua14 commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2864891249) at 2025-05-08 07:13 PM PDT -hoanhua14,2025-05-12T22:37:29Z,- hoanhua14 commented on pull request: [8124](https://github.com/hackforla/website/pull/8124#issuecomment-2874355585) at 2025-05-12 03:37 PM PDT -hoanhua14,2025-05-13T06:01:23Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2875148762) at 2025-05-12 11:01 PM PDT -hoanhua14,2025-05-13T06:02:52Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2875151385) at 2025-05-12 11:02 PM PDT -hoanhua14,2025-05-13T07:20:46Z,- hoanhua14 submitted pull request review: [8124](https://github.com/hackforla/website/pull/8124#pullrequestreview-2835557239) at 2025-05-13 12:20 AM PDT -hoanhua14,2025-05-14T02:12:31Z,- hoanhua14 commented on pull request: [8126](https://github.com/hackforla/website/pull/8126#issuecomment-2878431850) at 2025-05-13 07:12 PM PDT -hoanhua14,2025-05-15T00:02:47Z,- hoanhua14 submitted pull request review: [8126](https://github.com/hackforla/website/pull/8126#pullrequestreview-2841763368) at 2025-05-14 05:02 PM PDT -hoanhua14,2025-05-21T01:14:26Z,- hoanhua14 submitted pull request review: [8124](https://github.com/hackforla/website/pull/8124#pullrequestreview-2855950114) at 2025-05-20 06:14 PM PDT -hoanhua14,2025-05-21T01:15:45Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2896185348) at 2025-05-20 06:15 PM PDT -hoanhua14,2025-05-28T00:34:42Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2914520185) at 2025-05-27 05:34 PM PDT -hoanhua14,2025-05-28T05:00:55Z,- hoanhua14 submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2873579814) at 2025-05-27 10:00 PM PDT -hoanhua14,2025-06-09T20:58:51Z,- hoanhua14 assigned to issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2914691265) at 2025-06-09 01:58 PM PDT -hoanhua14,2025-06-09T20:59:06Z,- hoanhua14 unassigned from issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2914691265) at 2025-06-09 01:59 PM PDT -hoanhua14,2025-06-09T21:02:37Z,- hoanhua14 assigned to issue: [6751](https://github.com/hackforla/website/issues/6751#event-12949702515) at 2025-06-09 02:02 PM PDT -hoanhua14,2025-06-09T21:46:44Z,- hoanhua14 commented on issue: [6751](https://github.com/hackforla/website/issues/6751#issuecomment-2957111130) at 2025-06-09 02:46 PM PDT -hoanhua14,2025-06-09T23:11:58Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2957251359) at 2025-06-09 04:11 PM PDT -hoanhua14,2025-06-11T00:45:37Z,- hoanhua14 assigned to issue: [7609](https://github.com/hackforla/website/issues/7609) at 2025-06-10 05:45 PM PDT -hoanhua14,2025-06-11T00:45:49Z,- hoanhua14 unassigned from issue: [7609](https://github.com/hackforla/website/issues/7609) at 2025-06-10 05:45 PM PDT -hoanhua14,2025-06-11T23:56:56Z,- hoanhua14 submitted pull request review: [8177](https://github.com/hackforla/website/pull/8177#pullrequestreview-2919000461) at 2025-06-11 04:56 PM PDT -hoanhua14,2025-06-12T21:55:23Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2968262395) at 2025-06-12 02:55 PM PDT -homeroochoa47,5078,SKILLS ISSUE -homeroochoa47,2023-07-26T03:04:47Z,- homeroochoa47 opened issue: [5078](https://github.com/hackforla/website/issues/5078) at 2023-07-25 08:04 PM PDT -homeroochoa47,2023-07-26T03:39:47Z,- homeroochoa47 assigned to issue: [5078](https://github.com/hackforla/website/issues/5078) at 2023-07-25 08:39 PM PDT -homeroochoa47,2023-08-11T18:39:00Z,- homeroochoa47 commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1675211179) at 2023-08-11 11:39 AM PDT -homeroochoa47,2023-08-16T00:52:36Z,- homeroochoa47 commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1679812727) at 2023-08-15 05:52 PM PDT -homeroochoa47,2023-08-16T18:15:09Z,- homeroochoa47 submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1581181327) at 2023-08-16 11:15 AM PDT -homeroochoa47,2023-08-16T18:29:33Z,- homeroochoa47 assigned to issue: [5201](https://github.com/hackforla/website/issues/5201#issuecomment-1677926943) at 2023-08-16 11:29 AM PDT -homeroochoa47,2023-08-16T18:39:24Z,- homeroochoa47 commented on issue: [5201](https://github.com/hackforla/website/issues/5201#issuecomment-1681101164) at 2023-08-16 11:39 AM PDT -homeroochoa47,2023-08-16T23:26:42Z,- homeroochoa47 opened pull request: [5240](https://github.com/hackforla/website/pull/5240) at 2023-08-16 04:26 PM PDT -homeroochoa47,2023-08-16T23:37:37Z,- homeroochoa47 commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1681399695) at 2023-08-16 04:37 PM PDT -homeroochoa47,2023-08-19T23:48:35Z,- homeroochoa47 pull request merged: [5240](https://github.com/hackforla/website/pull/5240#event-10137191538) at 2023-08-19 04:48 PM PDT -homeroochoa47,2023-08-23T05:08:55Z,- homeroochoa47 commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1689289623) at 2023-08-22 10:08 PM PDT -homeroochoa47,2023-08-23T23:47:44Z,- homeroochoa47 submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1592557387) at 2023-08-23 04:47 PM PDT -homeroochoa47,2023-08-27T19:04:12Z,- homeroochoa47 assigned to issue: [5287](https://github.com/hackforla/website/issues/5287#issuecomment-1689199529) at 2023-08-27 12:04 PM PDT -homeroochoa47,2023-08-27T19:06:10Z,- homeroochoa47 commented on issue: [5287](https://github.com/hackforla/website/issues/5287#issuecomment-1694738497) at 2023-08-27 12:06 PM PDT -homeroochoa47,2023-08-29T21:15:59Z,- homeroochoa47 opened pull request: [5344](https://github.com/hackforla/website/pull/5344) at 2023-08-29 02:15 PM PDT -homeroochoa47,2023-08-29T21:17:04Z,- homeroochoa47 commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698157133) at 2023-08-29 02:17 PM PDT -homeroochoa47,2023-09-01T16:14:39Z,- homeroochoa47 pull request merged: [5344](https://github.com/hackforla/website/pull/5344#event-10258995174) at 2023-09-01 09:14 AM PDT -homeroochoa47,2023-09-03T22:06:32Z,- homeroochoa47 commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1704417502) at 2023-09-03 03:06 PM PDT -homeroochoa47,2023-09-04T19:05:29Z,- homeroochoa47 submitted pull request review: [5423](https://github.com/hackforla/website/pull/5423#pullrequestreview-1609898488) at 2023-09-04 12:05 PM PDT -homeroochoa47,2023-09-12T23:59:25Z,- homeroochoa47 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1623424898) at 2023-09-12 04:59 PM PDT -homeroochoa47,2023-09-14T22:00:40Z,- homeroochoa47 assigned to issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1717123435) at 2023-09-14 03:00 PM PDT -homeroochoa47,2023-09-14T22:02:01Z,- homeroochoa47 commented on issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1720212215) at 2023-09-14 03:02 PM PDT -homeroochoa47,2023-09-17T15:14:19Z,- homeroochoa47 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1630093239) at 2023-09-17 08:14 AM PDT -homeroochoa47,2023-09-19T22:29:06Z,- homeroochoa47 commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1726625576) at 2023-09-19 03:29 PM PDT -homeroochoa47,2023-09-21T04:50:15Z,- homeroochoa47 submitted pull request review: [5554](https://github.com/hackforla/website/pull/5554#pullrequestreview-1636880197) at 2023-09-20 09:50 PM PDT -homeroochoa47,2023-09-21T19:57:46Z,- homeroochoa47 submitted pull request review: [5554](https://github.com/hackforla/website/pull/5554#pullrequestreview-1638605364) at 2023-09-21 12:57 PM PDT -homeroochoa47,2023-09-25T23:36:18Z,- homeroochoa47 commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1734608650) at 2023-09-25 04:36 PM PDT -howdyjessie,6253,SKILLS ISSUE -howdyjessie,2024-02-06T04:18:18Z,- howdyjessie opened issue: [6253](https://github.com/hackforla/website/issues/6253) at 2024-02-05 08:18 PM PST -howdyjessie,2024-02-06T04:18:21Z,- howdyjessie assigned to issue: [6253](https://github.com/hackforla/website/issues/6253) at 2024-02-05 08:18 PM PST -howdyjessie,2024-02-16T23:49:48Z,- howdyjessie commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1949495937) at 2024-02-16 03:49 PM PST -howdyjessie,2024-02-19T23:05:39Z,- howdyjessie assigned to issue: [6294](https://github.com/hackforla/website/issues/6294) at 2024-02-19 03:05 PM PST -howdyjessie,2024-02-20T00:19:56Z,- howdyjessie commented on issue: [6294](https://github.com/hackforla/website/issues/6294#issuecomment-1953305665) at 2024-02-19 04:19 PM PST -howdyjessie,2024-02-20T01:57:12Z,- howdyjessie opened pull request: [6322](https://github.com/hackforla/website/pull/6322) at 2024-02-19 05:57 PM PST -howdyjessie,2024-02-20T02:08:13Z,- howdyjessie commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1953374654) at 2024-02-19 06:08 PM PST -howdyjessie,2024-02-21T07:25:28Z,- howdyjessie commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1956038569) at 2024-02-20 11:25 PM PST -howdyjessie,2024-02-21T18:41:29Z,- howdyjessie pull request merged: [6322](https://github.com/hackforla/website/pull/6322#event-11880638342) at 2024-02-21 10:41 AM PST -howdyjessie,2024-02-23T03:46:15Z,- howdyjessie commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1960694475) at 2024-02-22 07:46 PM PST -howdyjessie,2024-04-18T01:50:16Z,- howdyjessie commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-2062848826) at 2024-04-17 06:50 PM PDT -howdyjessie,2024-04-18T01:50:16Z,- howdyjessie closed issue as completed: [6253](https://github.com/hackforla/website/issues/6253#event-12516591926) at 2024-04-17 06:50 PM PDT -Hritik1503,2023-05-03T18:07:03Z,- Hritik1503 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1533488711) at 2023-05-03 11:07 AM PDT -Hritik1503,2023-05-03T18:07:43Z,- Hritik1503 commented on issue: [4592](https://github.com/hackforla/website/issues/4592#issuecomment-1533489391) at 2023-05-03 11:07 AM PDT -Hritik1503,2023-05-03T18:08:15Z,- Hritik1503 commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1533489983) at 2023-05-03 11:08 AM PDT -Hritik1503,2023-05-03T18:08:43Z,- Hritik1503 commented on issue: [4590](https://github.com/hackforla/website/issues/4590#issuecomment-1533490465) at 2023-05-03 11:08 AM PDT -Hritik1503,2023-05-03T18:09:07Z,- Hritik1503 commented on issue: [4589](https://github.com/hackforla/website/issues/4589#issuecomment-1533490879) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:09:26Z,- Hritik1503 commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1533491257) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:09:43Z,- Hritik1503 commented on issue: [4585](https://github.com/hackforla/website/issues/4585#issuecomment-1533491550) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:09:58Z,- Hritik1503 commented on issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1533491825) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:10:15Z,- Hritik1503 commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1533492134) at 2023-05-03 11:10 AM PDT -Hritik1503,2023-05-03T18:10:35Z,- Hritik1503 commented on issue: [4577](https://github.com/hackforla/website/issues/4577#issuecomment-1533492512) at 2023-05-03 11:10 AM PDT -Hritik1503,2023-05-03T18:10:58Z,- Hritik1503 commented on issue: [4567](https://github.com/hackforla/website/issues/4567#issuecomment-1533492955) at 2023-05-03 11:10 AM PDT -Hritik1503,2023-05-03T18:11:20Z,- Hritik1503 commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1533493390) at 2023-05-03 11:11 AM PDT -Hritik1503,2023-05-03T18:11:40Z,- Hritik1503 commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1533493735) at 2023-05-03 11:11 AM PDT -Hritik1503,2023-05-03T18:11:58Z,- Hritik1503 commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1533494090) at 2023-05-03 11:11 AM PDT -Hritik1503,2023-05-03T18:12:28Z,- Hritik1503 commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1533494584) at 2023-05-03 11:12 AM PDT -Hritik1503,2023-05-04T15:34:04Z,- Hritik1503 commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1534993384) at 2023-05-04 08:34 AM PDT -Hritik1503,2023-05-04T15:35:00Z,- Hritik1503 commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1534994729) at 2023-05-04 08:35 AM PDT -Hsan2022,6532,SKILLS ISSUE -Hsan2022,2024-03-27T03:55:03Z,- Hsan2022 opened issue: [6532](https://github.com/hackforla/website/issues/6532) at 2024-03-26 08:55 PM PDT -Hsan2022,2024-03-27T03:58:07Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2021878619) at 2024-03-26 08:58 PM PDT -Hsan2022,2024-03-27T04:16:13Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2021893309) at 2024-03-26 09:16 PM PDT -Hsan2022,2024-03-27T04:24:55Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2021901861) at 2024-03-26 09:24 PM PDT -Hsan2022,2024-04-04T22:46:48Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:46 PM PDT -Hsan2022,2024-04-04T22:54:01Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:54:27Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:54:35Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:54:55Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:55:13Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:55 PM PDT -Hsan2022,2024-04-04T22:55:16Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:55 PM PDT -Hsan2022,2024-04-07T03:45:33Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-06 08:45 PM PDT -Hsan2022,2024-04-07T03:45:39Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-06 08:45 PM PDT -Hsan2022,2024-07-01T16:37:58Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2200598709) at 2024-07-01 09:37 AM PDT -hussainmudassir,7209,SKILLS ISSUE -hussainmudassir,2024-08-06T03:15:49Z,- hussainmudassir opened issue: [7209](https://github.com/hackforla/website/issues/7209) at 2024-08-05 08:15 PM PDT -hussainmudassir,2024-08-06T03:15:49Z,- hussainmudassir assigned to issue: [7209](https://github.com/hackforla/website/issues/7209) at 2024-08-05 08:15 PM PDT -hussainmudassir,2024-08-20T00:52:13Z,- hussainmudassir commented on pull request: [7258](https://github.com/hackforla/website/pull/7258#issuecomment-2297762887) at 2024-08-19 05:52 PM PDT -hussainmudassir,2024-08-20T00:56:25Z,- hussainmudassir submitted pull request review: [7258](https://github.com/hackforla/website/pull/7258#pullrequestreview-2246778937) at 2024-08-19 05:56 PM PDT -HyMike,8067,SKILLS ISSUE -HyMike,2025-04-16T03:08:19Z,- HyMike opened issue: [8067](https://github.com/hackforla/website/issues/8067) at 2025-04-15 08:08 PM PDT -HyMike,2025-04-16T03:08:35Z,- HyMike assigned to issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2808110867) at 2025-04-15 08:08 PM PDT -HyMike,2025-04-16T04:40:44Z,- HyMike commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2808270657) at 2025-04-15 09:40 PM PDT -HyMike,2025-04-17T04:31:14Z,- HyMike assigned to issue: [7581](https://github.com/hackforla/website/issues/7581) at 2025-04-16 09:31 PM PDT -HyMike,2025-04-17T16:08:12Z,- HyMike opened pull request: [8069](https://github.com/hackforla/website/pull/8069) at 2025-04-17 09:08 AM PDT -HyMike,2025-04-17T16:44:03Z,- HyMike commented on issue: [7581](https://github.com/hackforla/website/issues/7581#issuecomment-2813524476) at 2025-04-17 09:44 AM PDT -HyMike,2025-04-25T01:51:18Z,- HyMike pull request merged: [8069](https://github.com/hackforla/website/pull/8069#event-17399253311) at 2025-04-24 06:51 PM PDT -HyMike,2025-04-25T03:44:08Z,- HyMike assigned to issue: [7734](https://github.com/hackforla/website/issues/7734) at 2025-04-24 08:44 PM PDT -HyMike,2025-04-25T03:56:47Z,- HyMike commented on issue: [7734](https://github.com/hackforla/website/issues/7734#issuecomment-2829317032) at 2025-04-24 08:56 PM PDT -HyMike,2025-04-25T04:37:11Z,- HyMike opened pull request: [8088](https://github.com/hackforla/website/pull/8088) at 2025-04-24 09:37 PM PDT -HyMike,2025-04-27T05:41:06Z,- HyMike commented on pull request: [8072](https://github.com/hackforla/website/pull/8072#issuecomment-2833177772) at 2025-04-26 10:41 PM PDT -HyMike,2025-04-27T05:59:35Z,- HyMike submitted pull request review: [8072](https://github.com/hackforla/website/pull/8072#pullrequestreview-2797344011) at 2025-04-26 10:59 PM PDT -HyMike,2025-04-28T18:04:54Z,- HyMike pull request merged: [8088](https://github.com/hackforla/website/pull/8088#event-17439422099) at 2025-04-28 11:04 AM PDT -hziegel,8097,SKILLS ISSUE -hziegel,2025-04-29T03:02:41Z,- hziegel opened issue: [8097](https://github.com/hackforla/website/issues/8097) at 2025-04-28 08:02 PM PDT -hziegel,2025-04-29T03:02:55Z,- hziegel assigned to issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2837313862) at 2025-04-28 08:02 PM PDT -hziegel,2025-05-06T03:36:32Z,- hziegel assigned to issue: [8113](https://github.com/hackforla/website/issues/8113) at 2025-05-05 08:36 PM PDT -hziegel,2025-05-06T03:36:46Z,- hziegel unassigned from issue: [8113](https://github.com/hackforla/website/issues/8113) at 2025-05-05 08:36 PM PDT -hziegel,2025-05-06T03:38:40Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2853183572) at 2025-05-05 08:38 PM PDT -hziegel,2025-05-06T03:40:39Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2853185280) at 2025-05-05 08:40 PM PDT -hziegel,2025-05-06T03:44:32Z,- hziegel assigned to issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2692152404) at 2025-05-05 08:44 PM PDT -hziegel,2025-05-06T04:37:46Z,- hziegel commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2853254835) at 2025-05-05 09:37 PM PDT -hziegel,2025-05-06T04:39:11Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2853256417) at 2025-05-05 09:39 PM PDT -hziegel,2025-05-06T22:58:59Z,- hziegel opened pull request: [8118](https://github.com/hackforla/website/pull/8118) at 2025-05-06 03:58 PM PDT -hziegel,2025-05-08T18:35:40Z,- hziegel commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2863944330) at 2025-05-08 11:35 AM PDT -hziegel,2025-05-11T16:27:13Z,- hziegel pull request merged: [8118](https://github.com/hackforla/website/pull/8118#event-17606049267) at 2025-05-11 09:27 AM PDT -hziegel,2025-05-11T16:48:02Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2869974946) at 2025-05-11 09:48 AM PDT -hziegel,2025-05-13T21:29:46Z,- hziegel assigned to issue: [7943](https://github.com/hackforla/website/issues/7943) at 2025-05-13 02:29 PM PDT -hziegel,2025-05-13T21:32:20Z,- hziegel commented on issue: [7943](https://github.com/hackforla/website/issues/7943#issuecomment-2878003704) at 2025-05-13 02:32 PM PDT -hziegel,2025-05-13T21:57:42Z,- hziegel opened pull request: [8126](https://github.com/hackforla/website/pull/8126) at 2025-05-13 02:57 PM PDT -hziegel,2025-05-14T02:27:31Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2878450901) at 2025-05-13 07:27 PM PDT -hziegel,2025-05-19T02:58:35Z,- hziegel pull request merged: [8126](https://github.com/hackforla/website/pull/8126#event-17706200259) at 2025-05-18 07:58 PM PDT -hziegel,2025-05-19T21:44:35Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2892364517) at 2025-05-19 02:44 PM PDT -hziegel,2025-05-19T22:14:11Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2892408068) at 2025-05-19 03:14 PM PDT -hziegel,2025-06-15T18:33:50Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2974530111) at 2025-06-15 11:33 AM PDT -IAgbaje,2020-12-08T21:27:47Z,- IAgbaje assigned to issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-693773011) at 2020-12-08 01:27 PM PST -IAgbaje,2020-12-08T21:51:26Z,- IAgbaje assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -IAgbaje,2020-12-08T21:54:12Z,- IAgbaje unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -IAgbaje,2020-12-08T21:54:35Z,- IAgbaje assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -IAgbaje,2020-12-13T20:27:21Z,- IAgbaje commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-744063682) at 2020-12-13 12:27 PM PST -IAgbaje,2020-12-15T21:21:59Z,- IAgbaje assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:21 PM PST -IAgbaje,2020-12-15T21:34:27Z,- IAgbaje commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745581749) at 2020-12-15 01:34 PM PST -IAgbaje,2020-12-20T20:48:40Z,- IAgbaje unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -IAgbaje,2020-12-20T20:48:40Z,- IAgbaje unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -IAgbaje,2020-12-22T21:21:46Z,- IAgbaje commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-749781819) at 2020-12-22 01:21 PM PST -IAgbaje,2020-12-24T18:20:57Z,- IAgbaje opened issue: [869](https://github.com/hackforla/website/issues/869) at 2020-12-24 10:20 AM PST -IAgbaje,2020-12-29T21:59:30Z,- IAgbaje assigned to issue: [949](https://github.com/hackforla/website/issues/949) at 2020-12-29 01:59 PM PST -IAgbaje,2020-12-29T22:01:17Z,- IAgbaje assigned to issue: [954](https://github.com/hackforla/website/issues/954) at 2020-12-29 02:01 PM PST -IAgbaje,2020-12-29T22:11:38Z,- IAgbaje assigned to issue: [889](https://github.com/hackforla/website/issues/889) at 2020-12-29 02:11 PM PST -IAgbaje,2021-01-10T20:38:35Z,- IAgbaje unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -IAgbaje,2021-01-10T21:31:32Z,- IAgbaje unassigned from issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-748652850) at 2021-01-10 01:31 PM PST -IAgbaje,2021-01-11T16:08:42Z,- IAgbaje unassigned from issue: [889](https://github.com/hackforla/website/issues/889) at 2021-01-11 08:08 AM PST -IAgbaje,2021-01-11T16:10:44Z,- IAgbaje unassigned from issue: [949](https://github.com/hackforla/website/issues/949) at 2021-01-11 08:10 AM PST -IAgbaje,2021-01-11T16:18:49Z,- IAgbaje unassigned from issue: [954](https://github.com/hackforla/website/issues/954) at 2021-01-11 08:18 AM PST -IAgbaje,2021-02-03T16:58:17Z,- IAgbaje assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-02-03 08:58 AM PST -IAgbaje,2021-02-10T19:14:41Z,- IAgbaje assigned to issue: [916](https://github.com/hackforla/website/issues/916) at 2021-02-10 11:14 AM PST -IAgbaje,2021-02-14T18:47:57Z,- IAgbaje assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -IAgbaje,2021-02-16T18:33:02Z,- IAgbaje opened issue: [1057](https://github.com/hackforla/website/issues/1057) at 2021-02-16 10:33 AM PST -IAgbaje,2021-02-16T18:48:51Z,- IAgbaje commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-780044250) at 2021-02-16 10:48 AM PST -IAgbaje,2021-02-16T18:49:22Z,- IAgbaje commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-780044558) at 2021-02-16 10:49 AM PST -IAgbaje,2021-02-16T18:51:21Z,- IAgbaje commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-780045608) at 2021-02-16 10:51 AM PST -IAgbaje,2021-02-18T05:54:57Z,- IAgbaje assigned to issue: [1074](https://github.com/hackforla/website/issues/1074) at 2021-02-17 09:54 PM PST -IAgbaje,2021-03-10T19:34:37Z,- IAgbaje unassigned from issue: [916](https://github.com/hackforla/website/issues/916) at 2021-03-10 11:34 AM PST -IAgbaje,2021-03-10T19:54:32Z,- IAgbaje unassigned from issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-795974096) at 2021-03-10 11:54 AM PST -IAgbaje,2021-03-31T18:31:23Z,- IAgbaje unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-806018314) at 2021-03-31 11:31 AM PDT -iamsadat,2023-08-06T17:55:10Z,- iamsadat commented on issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1666933084) at 2023-08-06 10:55 AM PDT -iamtreetop,2021-05-14T03:43:34Z,- iamtreetop assigned to issue: [1542](https://github.com/hackforla/website/issues/1542) at 2021-05-13 08:43 PM PDT -iamtreetop,2021-05-18T18:39:01Z,- iamtreetop opened pull request: [1589](https://github.com/hackforla/website/pull/1589) at 2021-05-18 11:39 AM PDT -iamtreetop,2021-05-20T18:11:18Z,- iamtreetop pull request merged: [1589](https://github.com/hackforla/website/pull/1589#event-4775126720) at 2021-05-20 11:11 AM PDT -iamtreetop,2021-05-23T18:33:42Z,- iamtreetop assigned to issue: [1615](https://github.com/hackforla/website/issues/1615) at 2021-05-23 11:33 AM PDT -iamtreetop,2021-05-24T21:24:40Z,- iamtreetop opened pull request: [1627](https://github.com/hackforla/website/pull/1627) at 2021-05-24 02:24 PM PDT -iamtreetop,2021-05-29T18:40:19Z,- iamtreetop pull request merged: [1627](https://github.com/hackforla/website/pull/1627#event-4816330697) at 2021-05-29 11:40 AM PDT -iancooperman,6033,SKILLS ISSUE -iancooperman,2024-01-03T03:48:39Z,- iancooperman opened issue: [6033](https://github.com/hackforla/website/issues/6033) at 2024-01-02 07:48 PM PST -iancooperman,2024-01-03T03:48:58Z,- iancooperman assigned to issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1874817060) at 2024-01-02 07:48 PM PST -iancooperman,2024-01-07T00:25:59Z,- iancooperman assigned to issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1879323557) at 2024-01-06 04:25 PM PST -iancooperman,2024-01-07T00:42:09Z,- iancooperman commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1879896315) at 2024-01-06 04:42 PM PST -iancooperman,2024-01-07T00:45:25Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1879897066) at 2024-01-06 04:45 PM PST -iancooperman,2024-01-07T01:12:08Z,- iancooperman opened pull request: [6073](https://github.com/hackforla/website/pull/6073) at 2024-01-06 05:12 PM PST -iancooperman,2024-01-08T21:45:08Z,- iancooperman pull request merged: [6073](https://github.com/hackforla/website/pull/6073#event-11422864810) at 2024-01-08 01:45 PM PST -iancooperman,2024-01-11T03:52:52Z,- iancooperman assigned to issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1883806836) at 2024-01-10 07:52 PM PST -iancooperman,2024-01-11T03:58:15Z,- iancooperman commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1886187028) at 2024-01-10 07:58 PM PST -iancooperman,2024-01-13T04:33:51Z,- iancooperman commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1890303633) at 2024-01-12 08:33 PM PST -iancooperman,2024-01-16T01:57:57Z,- iancooperman commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1892960255) at 2024-01-15 05:57 PM PST -iancooperman,2024-01-19T02:18:25Z,- iancooperman opened pull request: [6131](https://github.com/hackforla/website/pull/6131) at 2024-01-18 06:18 PM PST -iancooperman,2024-01-19T18:59:12Z,- iancooperman pull request merged: [6131](https://github.com/hackforla/website/pull/6131#event-11541084058) at 2024-01-19 10:59 AM PST -iancooperman,2024-01-20T18:01:40Z,- iancooperman assigned to issue: [6064](https://github.com/hackforla/website/issues/6064) at 2024-01-20 10:01 AM PST -iancooperman,2024-01-20T18:03:53Z,- iancooperman commented on issue: [6064](https://github.com/hackforla/website/issues/6064#issuecomment-1902207986) at 2024-01-20 10:03 AM PST -iancooperman,2024-01-20T19:23:50Z,- iancooperman opened pull request: [6133](https://github.com/hackforla/website/pull/6133) at 2024-01-20 11:23 AM PST -iancooperman,2024-01-25T01:39:31Z,- iancooperman pull request merged: [6133](https://github.com/hackforla/website/pull/6133#event-11591486840) at 2024-01-24 05:39 PM PST -iancooperman,2024-01-26T02:04:55Z,- iancooperman commented on pull request: [6164](https://github.com/hackforla/website/pull/6164#issuecomment-1911293300) at 2024-01-25 06:04 PM PST -iancooperman,2024-01-26T02:20:59Z,- iancooperman commented on pull request: [6164](https://github.com/hackforla/website/pull/6164#issuecomment-1911306287) at 2024-01-25 06:20 PM PST -iancooperman,2024-01-26T02:22:39Z,- iancooperman submitted pull request review: [6164](https://github.com/hackforla/website/pull/6164#pullrequestreview-1844992543) at 2024-01-25 06:22 PM PST -iancooperman,2024-01-27T02:29:40Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1912921050) at 2024-01-26 06:29 PM PST -iancooperman,2024-01-28T18:23:48Z,- iancooperman assigned to issue: [5895](https://github.com/hackforla/website/issues/5895#event-10984924341) at 2024-01-28 10:23 AM PST -iancooperman,2024-01-28T18:27:14Z,- iancooperman commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1913682961) at 2024-01-28 10:27 AM PST -iancooperman,2024-02-01T04:03:57Z,- iancooperman commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1920464876) at 2024-01-31 08:03 PM PST -iancooperman,2024-02-03T04:53:59Z,- iancooperman commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1925096559) at 2024-02-02 08:53 PM PST -iancooperman,2024-02-04T03:55:28Z,- iancooperman commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1925571397) at 2024-02-03 07:55 PM PST -iancooperman,2024-02-10T04:15:13Z,- iancooperman commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1936852542) at 2024-02-09 08:15 PM PST -iancooperman,2024-02-15T02:06:36Z,- iancooperman commented on pull request: [6293](https://github.com/hackforla/website/pull/6293#issuecomment-1945252551) at 2024-02-14 06:06 PM PST -iancooperman,2024-02-18T17:56:38Z,- iancooperman commented on pull request: [6315](https://github.com/hackforla/website/pull/6315#issuecomment-1951398946) at 2024-02-18 09:56 AM PST -iancooperman,2024-02-19T03:50:44Z,- iancooperman submitted pull request review: [6315](https://github.com/hackforla/website/pull/6315#pullrequestreview-1887505823) at 2024-02-18 07:50 PM PST -iancooperman,2024-02-25T18:10:58Z,- iancooperman commented on pull request: [6366](https://github.com/hackforla/website/pull/6366#issuecomment-1963017524) at 2024-02-25 10:10 AM PST -iancooperman,2024-02-26T03:21:26Z,- iancooperman submitted pull request review: [6366](https://github.com/hackforla/website/pull/6366#pullrequestreview-1899896986) at 2024-02-25 07:21 PM PST -iancooperman,2024-02-29T02:32:54Z,- iancooperman assigned to issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1917889892) at 2024-02-28 06:32 PM PST -iancooperman,2024-02-29T02:39:15Z,- iancooperman commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1970294566) at 2024-02-28 06:39 PM PST -iancooperman,2024-02-29T02:42:46Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1970297204) at 2024-02-28 06:42 PM PST -iancooperman,2024-02-29T02:42:49Z,- iancooperman closed issue as completed: [6033](https://github.com/hackforla/website/issues/6033#event-11959902841) at 2024-02-28 06:42 PM PST -iancooperman,2024-03-05T04:58:24Z,- iancooperman commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1977969389) at 2024-03-04 08:58 PM PST -iancooperman,2024-03-08T04:26:48Z,- iancooperman commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1985019486) at 2024-03-07 08:26 PM PST -iancooperman,2024-03-13T02:38:28Z,- iancooperman commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1993198412) at 2024-03-12 07:38 PM PDT -iancooperman,2024-03-16T05:18:01Z,- iancooperman commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-2001714695) at 2024-03-15 10:18 PM PDT -iancooperman,2024-03-22T04:03:29Z,- iancooperman commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-2014314455) at 2024-03-21 09:03 PM PDT -iancooperman,2024-03-27T03:52:03Z,- iancooperman commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-2021874339) at 2024-03-26 08:52 PM PDT -iancooperman,2024-03-30T03:25:11Z,- iancooperman opened pull request: [6550](https://github.com/hackforla/website/pull/6550) at 2024-03-29 08:25 PM PDT -iancooperman,2024-04-04T04:21:41Z,- iancooperman commented on pull request: [6550](https://github.com/hackforla/website/pull/6550#issuecomment-2036161364) at 2024-04-03 09:21 PM PDT -iancooperman,2024-04-17T02:18:38Z,- iancooperman commented on pull request: [6657](https://github.com/hackforla/website/pull/6657#issuecomment-2060217859) at 2024-04-16 07:18 PM PDT -iancooperman,2024-04-18T01:17:59Z,- iancooperman submitted pull request review: [6657](https://github.com/hackforla/website/pull/6657#pullrequestreview-2007634820) at 2024-04-17 06:17 PM PDT -iancooperman,2024-04-21T17:10:40Z,- iancooperman commented on pull request: [6693](https://github.com/hackforla/website/pull/6693#issuecomment-2068137550) at 2024-04-21 10:10 AM PDT -iancooperman,2024-04-21T23:08:00Z,- iancooperman submitted pull request review: [6693](https://github.com/hackforla/website/pull/6693#pullrequestreview-2013561722) at 2024-04-21 04:08 PM PDT -iancooperman,2024-05-15T02:17:05Z,- iancooperman commented on pull request: [6855](https://github.com/hackforla/website/pull/6855#issuecomment-2111457126) at 2024-05-14 07:17 PM PDT -iancooperman,2024-05-16T04:02:15Z,- iancooperman submitted pull request review: [6855](https://github.com/hackforla/website/pull/6855#pullrequestreview-2059519369) at 2024-05-15 09:02 PM PDT -iancooperman,2024-05-22T02:17:07Z,- iancooperman commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2123746934) at 2024-05-21 07:17 PM PDT -iancooperman,2024-05-25T18:09:42Z,- iancooperman submitted pull request review: [6896](https://github.com/hackforla/website/pull/6896#pullrequestreview-2079098563) at 2024-05-25 11:09 AM PDT -iancooperman,2024-05-25T18:37:54Z,- iancooperman submitted pull request review: [6894](https://github.com/hackforla/website/pull/6894#pullrequestreview-2079101974) at 2024-05-25 11:37 AM PDT -iancooperman,2024-05-27T04:03:29Z,- iancooperman commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2132600655) at 2024-05-26 09:03 PM PDT -iancooperman,2024-05-27T04:07:51Z,- iancooperman submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2079950108) at 2024-05-26 09:07 PM PDT -iancooperman,2024-05-29T02:40:08Z,- iancooperman submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2084155812) at 2024-05-28 07:40 PM PDT -iancooperman,2024-06-01T23:17:38Z,- iancooperman commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143624482) at 2024-06-01 04:17 PM PDT -iancooperman,2024-06-01T23:18:22Z,- iancooperman commented on pull request: [6917](https://github.com/hackforla/website/pull/6917#issuecomment-2143624649) at 2024-06-01 04:18 PM PDT -iancooperman,2024-06-02T04:33:10Z,- iancooperman submitted pull request review: [6917](https://github.com/hackforla/website/pull/6917#pullrequestreview-2092212012) at 2024-06-01 09:33 PM PDT -iancooperman,2024-06-02T04:38:18Z,- iancooperman commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143694243) at 2024-06-01 09:38 PM PDT -iancooperman,2024-06-04T04:06:45Z,- iancooperman assigned to issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-1970355174) at 2024-06-03 09:06 PM PDT -iancooperman,2024-06-04T04:13:57Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2146564477) at 2024-06-03 09:13 PM PDT -iancooperman,2024-06-09T17:20:42Z,- iancooperman commented on pull request: [6974](https://github.com/hackforla/website/pull/6974#issuecomment-2156706435) at 2024-06-09 10:20 AM PDT -iancooperman,2024-06-09T23:59:22Z,- iancooperman submitted pull request review: [6974](https://github.com/hackforla/website/pull/6974#pullrequestreview-2106416395) at 2024-06-09 04:59 PM PDT -iancooperman,2024-06-23T03:06:59Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2184408849) at 2024-06-22 08:06 PM PDT -iancooperman,2024-06-23T03:11:25Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2184410457) at 2024-06-22 08:11 PM PDT -iancooperman,2024-08-02T03:07:44Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2264426490) at 2024-08-01 08:07 PM PDT -iancooperman,2024-08-13T01:16:18Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2285162918) at 2024-08-12 06:16 PM PDT -iancooperman,2024-08-17T17:51:16Z,- iancooperman commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2294926281) at 2024-08-17 10:51 AM PDT -iancooperman,2024-08-17T17:51:39Z,- iancooperman commented on pull request: [7307](https://github.com/hackforla/website/pull/7307#issuecomment-2294926382) at 2024-08-17 10:51 AM PDT -iancooperman,2024-08-18T03:17:28Z,- iancooperman submitted pull request review: [7307](https://github.com/hackforla/website/pull/7307#pullrequestreview-2244205825) at 2024-08-17 08:17 PM PDT -iancooperman,2024-08-18T03:29:10Z,- iancooperman submitted pull request review: [7309](https://github.com/hackforla/website/pull/7309#pullrequestreview-2244206672) at 2024-08-17 08:29 PM PDT -iancooperman,2024-08-19T02:35:21Z,- iancooperman submitted pull request review: [7307](https://github.com/hackforla/website/pull/7307#pullrequestreview-2244523908) at 2024-08-18 07:35 PM PDT -iancooperman,2024-08-21T03:16:29Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2300500272) at 2024-08-20 08:16 PM PDT -iancooperman,2024-09-02T22:25:26Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2325345899) at 2024-09-02 03:25 PM PDT -iancooperman,2024-09-05T03:16:20Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2330515338) at 2024-09-04 08:16 PM PDT -iancooperman,2024-09-05T03:38:19Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2330531559) at 2024-09-04 08:38 PM PDT -iancooperman,2024-09-07T22:17:19Z,- iancooperman opened pull request: [7409](https://github.com/hackforla/website/pull/7409) at 2024-09-07 03:17 PM PDT -iancooperman,2024-09-07T22:21:27Z,- iancooperman commented on pull request: [7409](https://github.com/hackforla/website/pull/7409#issuecomment-2336467899) at 2024-09-07 03:21 PM PDT -iancooperman,2024-09-10T03:01:40Z,- iancooperman commented on pull request: [7409](https://github.com/hackforla/website/pull/7409#issuecomment-2339513892) at 2024-09-09 08:01 PM PDT -iancooperman,2024-10-09T02:04:41Z,- iancooperman commented on pull request: [7409](https://github.com/hackforla/website/pull/7409#issuecomment-2401126893) at 2024-10-08 07:04 PM PDT -iancooperman,2024-10-16T02:18:44Z,- iancooperman commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2415588313) at 2024-10-15 07:18 PM PDT -iancooperman,2024-10-18T23:34:55Z,- iancooperman pull request merged: [7409](https://github.com/hackforla/website/pull/7409#event-14728329971) at 2024-10-18 04:34 PM PDT -iancooperman,2024-10-30T02:11:21Z,- iancooperman reopened issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2403011578) at 2024-10-29 07:11 PM PDT -iancooperman,2024-11-10T01:41:57Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2466541161) at 2024-11-09 05:41 PM PST -iancooperman,2024-11-10T01:44:30Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2466541829) at 2024-11-09 05:44 PM PST -iancooperman,2024-11-11T18:36:51Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2468806582) at 2024-11-11 10:36 AM PST -iancooperman,2024-11-12T01:31:42Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2469410653) at 2024-11-11 05:31 PM PST -iancooperman,2024-11-12T01:36:06Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2469414757) at 2024-11-11 05:36 PM PST -iancooperman,2024-11-12T01:49:12Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2469428009) at 2024-11-11 05:49 PM PST -iancooperman,2024-11-19T03:31:08Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2484634156) at 2024-11-18 07:31 PM PST -iancooperman,2024-11-19T04:05:03Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2484663193) at 2024-11-18 08:05 PM PST -iancooperman,2024-11-19T04:11:15Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2484668855) at 2024-11-18 08:11 PM PST -iancooperman,2024-11-19T04:13:17Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2484670621) at 2024-11-18 08:13 PM PST -iancooperman,2024-11-19T04:14:45Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2484671731) at 2024-11-18 08:14 PM PST -iancooperman,2024-11-19T04:16:44Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2484673371) at 2024-11-18 08:16 PM PST -iancooperman,2024-11-19T04:17:24Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2484673855) at 2024-11-18 08:17 PM PST -iancooperman,2024-11-20T02:04:01Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2487166285) at 2024-11-19 06:04 PM PST -iancooperman,2024-11-20T02:05:57Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2487169189) at 2024-11-19 06:05 PM PST -iancooperman,2024-11-20T02:17:02Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2487182224) at 2024-11-19 06:17 PM PST -iancooperman,2024-11-20T02:17:31Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2487182852) at 2024-11-19 06:17 PM PST -iancooperman,2024-12-03T04:01:50Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2513498777) at 2024-12-02 08:01 PM PST -iancooperman,2024-12-20T03:55:48Z,- iancooperman assigned to issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2322046458) at 2024-12-19 07:55 PM PST -iancooperman,2024-12-20T03:58:34Z,- iancooperman commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2556238484) at 2024-12-19 07:58 PM PST -iancooperman,2024-12-20T04:02:55Z,- iancooperman opened issue: [7804](https://github.com/hackforla/website/issues/7804) at 2024-12-19 08:02 PM PST -iancooperman,2024-12-20T04:05:44Z,- iancooperman opened issue: [7805](https://github.com/hackforla/website/issues/7805) at 2024-12-19 08:05 PM PST -iancooperman,2024-12-20T04:06:46Z,- iancooperman opened issue: [7806](https://github.com/hackforla/website/issues/7806) at 2024-12-19 08:06 PM PST -iancooperman,2024-12-20T04:07:45Z,- iancooperman opened issue: [7807](https://github.com/hackforla/website/issues/7807) at 2024-12-19 08:07 PM PST -iancooperman,2024-12-20T04:09:01Z,- iancooperman opened issue: [7808](https://github.com/hackforla/website/issues/7808) at 2024-12-19 08:09 PM PST -iancooperman,2024-12-20T04:09:42Z,- iancooperman opened issue: [7809](https://github.com/hackforla/website/issues/7809) at 2024-12-19 08:09 PM PST -iancooperman,2024-12-20T04:10:14Z,- iancooperman opened issue: [7810](https://github.com/hackforla/website/issues/7810) at 2024-12-19 08:10 PM PST -iancooperman,2024-12-20T04:10:56Z,- iancooperman opened issue: [7811](https://github.com/hackforla/website/issues/7811) at 2024-12-19 08:10 PM PST -iancooperman,2024-12-20T04:11:30Z,- iancooperman opened issue: [7812](https://github.com/hackforla/website/issues/7812) at 2024-12-19 08:11 PM PST -iancooperman,2025-01-06T02:13:51Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2572055361) at 2025-01-05 06:13 PM PST -iancooperman,2025-01-14T02:05:27Z,- iancooperman commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2588632760) at 2025-01-13 06:05 PM PST -iancooperman,2025-01-28T04:25:18Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2617816434) at 2025-01-27 08:25 PM PST -iancooperman,2025-01-28T04:31:18Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2617821430) at 2025-01-27 08:31 PM PST -iancooperman,2025-02-12T01:32:36Z,- iancooperman commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2652437098) at 2025-02-11 05:32 PM PST -iancooperman,2025-02-19T03:05:30Z,- iancooperman commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2667400548) at 2025-02-18 07:05 PM PST -iancooperman,2025-02-22T17:49:21Z,- iancooperman submitted pull request review: [7910](https://github.com/hackforla/website/pull/7910#pullrequestreview-2635099702) at 2025-02-22 09:49 AM PST -iancooperman,2025-02-25T04:54:07Z,- iancooperman assigned to issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165556) at 2025-02-24 08:54 PM PST -iancooperman,2025-02-26T03:05:49Z,- iancooperman commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2683780765) at 2025-02-25 07:05 PM PST -iancooperman,2025-02-26T04:03:11Z,- iancooperman opened pull request: [7948](https://github.com/hackforla/website/pull/7948) at 2025-02-25 08:03 PM PST -iancooperman,2025-02-26T04:08:20Z,- iancooperman commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2683843940) at 2025-02-25 08:08 PM PST -iancooperman,2025-03-05T03:21:03Z,- iancooperman commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2699684747) at 2025-03-04 07:21 PM PST -iancooperman,2025-03-05T16:16:12Z,- iancooperman pull request merged: [7948](https://github.com/hackforla/website/pull/7948#event-16602507863) at 2025-03-05 08:16 AM PST -ihop-56,7210,SKILLS ISSUE -ihop-56,7212,SKILLS ISSUE -ihop-56,2024-08-06T03:16:34Z,- ihop-56 opened issue: [7210](https://github.com/hackforla/website/issues/7210) at 2024-08-05 08:16 PM PDT -ihop-56,2024-08-06T03:19:54Z,- ihop-56 assigned to issue: [7210](https://github.com/hackforla/website/issues/7210#issuecomment-2270304368) at 2024-08-05 08:19 PM PDT -ihop-56,2024-08-06T03:31:28Z,- ihop-56 opened issue: [7212](https://github.com/hackforla/website/issues/7212) at 2024-08-05 08:31 PM PDT -ihop-56,2024-08-06T03:31:32Z,- ihop-56 assigned to issue: [7212](https://github.com/hackforla/website/issues/7212) at 2024-08-05 08:31 PM PDT -ihop-56,2024-08-06T03:48:43Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2270327506) at 2024-08-05 08:48 PM PDT -ihop-56,2024-08-06T03:59:14Z,- ihop-56 commented on issue: [7210](https://github.com/hackforla/website/issues/7210#issuecomment-2270335065) at 2024-08-05 08:59 PM PDT -ihop-56,2024-08-07T02:58:43Z,- ihop-56 assigned to issue: [7176](https://github.com/hackforla/website/issues/7176) at 2024-08-06 07:58 PM PDT -ihop-56,2024-08-07T02:58:49Z,- ihop-56 assigned to issue: [7175](https://github.com/hackforla/website/issues/7175) at 2024-08-06 07:58 PM PDT -ihop-56,2024-08-07T02:58:59Z,- ihop-56 unassigned from issue: [7176](https://github.com/hackforla/website/issues/7176#issuecomment-2272522605) at 2024-08-06 07:58 PM PDT -ihop-56,2024-08-07T03:14:13Z,- ihop-56 commented on issue: [7210](https://github.com/hackforla/website/issues/7210#issuecomment-2272534723) at 2024-08-06 08:14 PM PDT -ihop-56,2024-08-07T03:14:13Z,- ihop-56 closed issue as completed: [7210](https://github.com/hackforla/website/issues/7210#event-13786062228) at 2024-08-06 08:14 PM PDT -ihop-56,2024-08-17T01:51:29Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2294526889) at 2024-08-16 06:51 PM PDT -ihop-56,2024-08-17T03:22:44Z,- ihop-56 opened pull request: [7309](https://github.com/hackforla/website/pull/7309) at 2024-08-16 08:22 PM PDT -ihop-56,2024-08-17T03:29:07Z,- ihop-56 commented on issue: [7175](https://github.com/hackforla/website/issues/7175#issuecomment-2294606281) at 2024-08-16 08:29 PM PDT -ihop-56,2024-08-22T19:39:49Z,- ihop-56 commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2305498803) at 2024-08-22 12:39 PM PDT -ihop-56,2024-08-23T18:07:22Z,- ihop-56 submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2257816996) at 2024-08-23 11:07 AM PDT -ihop-56,2024-08-23T18:15:31Z,- ihop-56 submitted pull request review: [7296](https://github.com/hackforla/website/pull/7296#pullrequestreview-2257829370) at 2024-08-23 11:15 AM PDT -ihop-56,2024-08-23T18:29:23Z,- ihop-56 submitted pull request review: [7307](https://github.com/hackforla/website/pull/7307#pullrequestreview-2257854207) at 2024-08-23 11:29 AM PDT -ihop-56,2024-08-23T18:55:10Z,- ihop-56 commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2307641265) at 2024-08-23 11:55 AM PDT -ihop-56,2024-08-23T20:07:26Z,- ihop-56 opened pull request: [7346](https://github.com/hackforla/website/pull/7346) at 2024-08-23 01:07 PM PDT -ihop-56,2024-08-23T20:08:58Z,- ihop-56 commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2307742741) at 2024-08-23 01:08 PM PDT -ihop-56,2024-08-23T23:23:58Z,- ihop-56 commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2307919841) at 2024-08-23 04:23 PM PDT -ihop-56,2024-08-25T14:04:09Z,- ihop-56 pull request closed w/o merging: [7309](https://github.com/hackforla/website/pull/7309#event-14004405567) at 2024-08-25 07:04 AM PDT -ihop-56,2024-08-25T14:05:31Z,- ihop-56 commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2308863915) at 2024-08-25 07:05 AM PDT -ihop-56,2024-08-25T14:06:48Z,- ihop-56 assigned to issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308407830) at 2024-08-25 07:06 AM PDT -ihop-56,2024-08-25T14:07:04Z,- ihop-56 unassigned from issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308865084) at 2024-08-25 07:07 AM PDT -ihop-56,2024-08-25T14:07:15Z,- ihop-56 assigned to issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2294196567) at 2024-08-25 07:07 AM PDT -ihop-56,2024-08-25T14:07:28Z,- ihop-56 unassigned from issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2308865372) at 2024-08-25 07:07 AM PDT -ihop-56,2024-08-25T14:07:28Z,- ihop-56 assigned to issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308648976) at 2024-08-25 07:07 AM PDT -ihop-56,2024-08-25T14:07:44Z,- ihop-56 unassigned from issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308865503) at 2024-08-25 07:07 AM PDT -ihop-56,2024-08-27T17:01:59Z,- ihop-56 pull request merged: [7346](https://github.com/hackforla/website/pull/7346#event-14032247108) at 2024-08-27 10:01 AM PDT -ihop-56,2024-08-30T19:42:45Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2322226238) at 2024-08-30 12:42 PM PDT -ihop-56,2024-08-30T19:43:03Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2322226663) at 2024-08-30 12:43 PM PDT -ihop-56,2024-08-30T19:43:52Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2322227753) at 2024-08-30 12:43 PM PDT -ihop-56,2024-08-30T19:48:26Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2322233892) at 2024-08-30 12:48 PM PDT -ihop-56,2024-08-30T19:50:23Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2322236509) at 2024-08-30 12:50 PM PDT -ihop-56,2024-08-30T19:53:32Z,- ihop-56 assigned to issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2282176041) at 2024-08-30 12:53 PM PDT -ihop-56,2024-08-30T19:54:56Z,- ihop-56 commented on issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2322242113) at 2024-08-30 12:54 PM PDT -ihop-56,2024-08-30T22:39:53Z,- ihop-56 opened pull request: [7370](https://github.com/hackforla/website/pull/7370) at 2024-08-30 03:39 PM PDT -ihop-56,2024-08-30T22:42:16Z,- ihop-56 commented on issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2322509998) at 2024-08-30 03:42 PM PDT -ihop-56,2024-09-04T22:18:06Z,- ihop-56 pull request merged: [7370](https://github.com/hackforla/website/pull/7370#event-14138224179) at 2024-09-04 03:18 PM PDT -ihop-56,2024-09-14T22:54:20Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2351204565) at 2024-09-14 03:54 PM PDT -ihop-56,2024-09-14T23:00:04Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2351206318) at 2024-09-14 04:00 PM PDT -ihop-56,2024-09-23T14:27:07Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2368452579) at 2024-09-23 07:27 AM PDT -ihop-56,2024-09-23T14:29:34Z,- ihop-56 assigned to issue: [7392](https://github.com/hackforla/website/issues/7392) at 2024-09-23 07:29 AM PDT -ihop-56,2024-09-29T16:58:15Z,- ihop-56 commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2381426268) at 2024-09-29 09:58 AM PDT -ihop-56,2024-10-05T13:49:11Z,- ihop-56 commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2395065125) at 2024-10-05 06:49 AM PDT -ihop-56,2024-10-05T13:55:01Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2395066868) at 2024-10-05 06:55 AM PDT -ihop-56,2024-10-20T22:04:57Z,- ihop-56 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2353652068) at 2024-10-20 03:04 PM PDT -ihop-56,2024-10-20T22:05:11Z,- ihop-56 unassigned from issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2353652068) at 2024-10-20 03:05 PM PDT -ihop-56,2024-10-20T22:07:26Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2425249052) at 2024-10-20 03:07 PM PDT -ihop-56,2024-10-20T22:10:46Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2425250955) at 2024-10-20 03:10 PM PDT -ihop-56,2024-10-25T02:33:28Z,- ihop-56 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2425247831) at 2024-10-24 07:33 PM PDT -ihop-56,2024-10-25T02:33:41Z,- ihop-56 unassigned from issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2425247831) at 2024-10-24 07:33 PM PDT -ihop-56,2024-10-25T02:35:06Z,- ihop-56 assigned to issue: [7441](https://github.com/hackforla/website/issues/7441) at 2024-10-24 07:35 PM PDT -ihop-56,2024-10-25T02:35:19Z,- ihop-56 unassigned from issue: [7441](https://github.com/hackforla/website/issues/7441) at 2024-10-24 07:35 PM PDT -ihop-56,2024-10-25T02:37:42Z,- ihop-56 assigned to issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2414672007) at 2024-10-24 07:37 PM PDT -ihop-56,2024-10-25T02:37:55Z,- ihop-56 unassigned from issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2414672007) at 2024-10-24 07:37 PM PDT -ihop-56,2024-10-25T02:38:25Z,- ihop-56 commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2436693785) at 2024-10-24 07:38 PM PDT -ihop-56,2024-10-25T02:38:47Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2436694107) at 2024-10-24 07:38 PM PDT -ihop-56,2024-10-25T15:39:26Z,- ihop-56 assigned to issue: [7606](https://github.com/hackforla/website/issues/7606) at 2024-10-25 08:39 AM PDT -ihop-56,2024-10-25T15:44:00Z,- ihop-56 commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2438164243) at 2024-10-25 08:44 AM PDT -ihop-56,2024-10-29T16:46:46Z,- ihop-56 opened pull request: [7660](https://github.com/hackforla/website/pull/7660) at 2024-10-29 09:46 AM PDT -ihop-56,2024-10-29T16:48:33Z,- ihop-56 commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2444825642) at 2024-10-29 09:48 AM PDT -ihop-56,2024-10-31T16:00:33Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2450246482) at 2024-10-31 09:00 AM PDT -ihop-56,2024-11-17T18:58:20Z,- ihop-56 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2481430653) at 2024-11-17 10:58 AM PST -ihop-56,2024-11-17T19:01:48Z,- ihop-56 commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2481431875) at 2024-11-17 11:01 AM PST -ihop-56,2024-11-17T20:32:49Z,- ihop-56 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2481541136) at 2024-11-17 12:32 PM PST -ihop-56,2024-11-22T21:21:08Z,- ihop-56 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2494836722) at 2024-11-22 01:21 PM PST -ihop-56,2024-12-01T17:44:50Z,- ihop-56 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2510137168) at 2024-12-01 09:44 AM PST -ihop-56,2024-12-11T19:53:58Z,- ihop-56 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2536980206) at 2024-12-11 11:53 AM PST -ihop-56,2025-01-31T02:05:04Z,- ihop-56 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2626141897) at 2025-01-30 06:05 PM PST -ihop-56,2025-02-13T03:08:37Z,- ihop-56 pull request closed w/o merging: [7660](https://github.com/hackforla/website/pull/7660#event-16289795815) at 2025-02-12 07:08 PM PST -ihop-56,2025-02-13T03:08:50Z,- ihop-56 unassigned from issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2444825642) at 2025-02-12 07:08 PM PST -ihop-56,2025-03-01T11:14:02Z,- ihop-56 assigned to issue: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-03-01 03:14 AM PST -ihop-56,2025-03-01T11:14:14Z,- ihop-56 unassigned from issue: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-03-01 03:14 AM PST -ihop-56,2025-03-01T11:16:12Z,- ihop-56 assigned to issue: [7750](https://github.com/hackforla/website/issues/7750) at 2025-03-01 03:16 AM PST -ihop-56,2025-03-01T11:16:29Z,- ihop-56 unassigned from issue: [7750](https://github.com/hackforla/website/issues/7750) at 2025-03-01 03:16 AM PST -ihop-56,2025-03-01T11:22:44Z,- ihop-56 assigned to issue: [7391](https://github.com/hackforla/website/issues/7391) at 2025-03-01 03:22 AM PST -ihop-56,2025-03-01T11:22:57Z,- ihop-56 unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391) at 2025-03-01 03:22 AM PST -ihop-56,2025-03-01T11:31:21Z,- ihop-56 commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692158773) at 2025-03-01 03:31 AM PST -ihop-56,2025-03-24T15:26:10Z,- ihop-56 opened pull request: [8018](https://github.com/hackforla/website/pull/8018) at 2025-03-24 08:26 AM PDT -ihop-56,2025-04-14T17:20:53Z,- ihop-56 commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2802383064) at 2025-04-14 10:20 AM PDT -ihop-56,2025-04-16T19:52:33Z,- ihop-56 pull request merged: [8018](https://github.com/hackforla/website/pull/8018#event-17295065906) at 2025-04-16 12:52 PM PDT -iilashi,2021-11-11T01:14:07Z,- iilashi assigned to issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-961446085) at 2021-11-10 05:14 PM PST -iilashi,2021-11-15T00:37:17Z,- iilashi commented on issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-968405009) at 2021-11-14 04:37 PM PST -iilashi,2021-11-27T05:15:47Z,- iilashi commented on issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-980504927) at 2021-11-26 09:15 PM PST -iilashi,2021-12-06T01:27:58Z,- iilashi assigned to issue: [2501](https://github.com/hackforla/website/issues/2501) at 2021-12-05 05:27 PM PST -iilashi,2021-12-13T03:26:36Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-992076793) at 2021-12-12 07:26 PM PST -iilashi,2021-12-21T07:52:12Z,- iilashi assigned to issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-990369188) at 2021-12-20 11:52 PM PST -iilashi,2021-12-30T08:35:47Z,- iilashi commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-1002925665) at 2021-12-30 12:35 AM PST -iilashi,2021-12-31T01:16:47Z,- iilashi assigned to issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-990375978) at 2021-12-30 05:16 PM PST -iilashi,2022-01-05T06:19:33Z,- iilashi assigned to issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-990396966) at 2022-01-04 10:19 PM PST -iilashi,2022-01-07T00:48:29Z,- iilashi commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1007051408) at 2022-01-06 04:48 PM PST -iilashi,2022-01-11T20:17:42Z,- iilashi unassigned from issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-990396966) at 2022-01-11 12:17 PM PST -iilashi,2022-01-13T22:43:04Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1012584150) at 2022-01-13 02:43 PM PST -iilashi,2022-01-19T04:30:32Z,- iilashi assigned to issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-990396966) at 2022-01-18 08:30 PM PST -iilashi,2022-01-21T00:07:43Z,- iilashi commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1018036191) at 2022-01-20 04:07 PM PST -iilashi,2022-01-21T00:41:38Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1018053760) at 2022-01-20 04:41 PM PST -iilashi,2022-01-24T01:30:12Z,- iilashi commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1019632218) at 2022-01-23 05:30 PM PST -iilashi,2022-01-28T09:32:41Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1024039043) at 2022-01-28 01:32 AM PST -iilashi,2022-02-17T22:00:48Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1043509809) at 2022-02-17 02:00 PM PST -iilashi,2022-02-17T22:04:45Z,- iilashi assigned to issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-999096843) at 2022-02-17 02:04 PM PST -iilashi,2022-03-02T23:54:56Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1057518201) at 2022-03-02 03:54 PM PST -iilashi,2022-03-20T23:33:24Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1073373745) at 2022-03-20 04:33 PM PDT -iilashi,2022-03-25T05:42:59Z,- iilashi commented on issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-1078674993) at 2022-03-24 10:42 PM PDT -iilashi,2022-04-06T01:08:34Z,- iilashi commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1089607678) at 2022-04-05 06:08 PM PDT -iilashi,2022-04-06T01:09:34Z,- iilashi unassigned from issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1089607678) at 2022-04-05 06:09 PM PDT -iilashi,2022-04-14T21:31:23Z,- iilashi unassigned from issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1099595194) at 2022-04-14 02:31 PM PDT -imheeok,7891,SKILLS ISSUE -imheeok,2025-02-05T04:41:06Z,- imheeok opened issue: [7891](https://github.com/hackforla/website/issues/7891) at 2025-02-04 08:41 PM PST -imheeok,2025-02-05T04:41:12Z,- imheeok assigned to issue: [7891](https://github.com/hackforla/website/issues/7891) at 2025-02-04 08:41 PM PST -imsoumya18,2023-09-04T04:41:06Z,- imsoumya18 commented on issue: [5427](https://github.com/hackforla/website/issues/5427#issuecomment-1704600032) at 2023-09-03 09:41 PM PDT -imsoumya18,2023-09-05T10:13:34Z,- imsoumya18 opened pull request: [5445](https://github.com/hackforla/website/pull/5445) at 2023-09-05 03:13 AM PDT -imsoumya18,2023-09-05T10:14:11Z,- imsoumya18 commented on issue: [5427](https://github.com/hackforla/website/issues/5427#issuecomment-1706336996) at 2023-09-05 03:14 AM PDT -imsoumya18,2023-09-05T15:59:17Z,- imsoumya18 pull request closed w/o merging: [5445](https://github.com/hackforla/website/pull/5445#event-10285547866) at 2023-09-05 08:59 AM PDT -imsoumya18,2023-09-05T17:47:12Z,- imsoumya18 commented on pull request: [5445](https://github.com/hackforla/website/pull/5445#issuecomment-1707046063) at 2023-09-05 10:47 AM PDT -imthiazh,7574,SKILLS ISSUE -imthiazh,2024-10-08T03:43:03Z,- imthiazh opened issue: [7574](https://github.com/hackforla/website/issues/7574) at 2024-10-07 08:43 PM PDT -imthiazh,2024-10-08T03:43:12Z,- imthiazh assigned to issue: [7574](https://github.com/hackforla/website/issues/7574) at 2024-10-07 08:43 PM PDT -imvan2,4618,SKILLS ISSUE -imvan2,2023-05-09T03:27:45Z,- imvan2 opened issue: [4618](https://github.com/hackforla/website/issues/4618) at 2023-05-08 08:27 PM PDT -imvan2,2023-05-09T03:48:24Z,- imvan2 assigned to issue: [4618](https://github.com/hackforla/website/issues/4618) at 2023-05-08 08:48 PM PDT -imvan2,2023-05-16T19:23:09Z,- imvan2 assigned to issue: [4490](https://github.com/hackforla/website/issues/4490) at 2023-05-16 12:23 PM PDT -imvan2,2023-05-16T19:27:39Z,- imvan2 commented on issue: [4490](https://github.com/hackforla/website/issues/4490#issuecomment-1550238287) at 2023-05-16 12:27 PM PDT -imvan2,2023-05-17T21:01:20Z,- imvan2 commented on issue: [4490](https://github.com/hackforla/website/issues/4490#issuecomment-1552078918) at 2023-05-17 02:01 PM PDT -imvan2,2023-05-17T21:38:52Z,- imvan2 opened pull request: [4686](https://github.com/hackforla/website/pull/4686) at 2023-05-17 02:38 PM PDT -imvan2,2023-05-18T21:23:41Z,- imvan2 pull request merged: [4686](https://github.com/hackforla/website/pull/4686#event-9283904106) at 2023-05-18 02:23 PM PDT -imvan2,2023-05-18T22:08:00Z,- imvan2 commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1553724190) at 2023-05-18 03:08 PM PDT -imvan2,2023-05-19T18:47:30Z,- imvan2 commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1555090551) at 2023-05-19 11:47 AM PDT -imvan2,2023-05-19T20:20:09Z,- imvan2 submitted pull request review: [4689](https://github.com/hackforla/website/pull/4689#pullrequestreview-1435045223) at 2023-05-19 01:20 PM PDT -imvan2,2023-05-26T19:17:25Z,- imvan2 assigned to issue: [4487](https://github.com/hackforla/website/issues/4487#issuecomment-1504506928) at 2023-05-26 12:17 PM PDT -imvan2,2023-05-26T19:19:26Z,- imvan2 commented on issue: [4487](https://github.com/hackforla/website/issues/4487#issuecomment-1564824764) at 2023-05-26 12:19 PM PDT -imvan2,2023-05-26T19:22:30Z,- imvan2 commented on issue: [4487](https://github.com/hackforla/website/issues/4487#issuecomment-1564827873) at 2023-05-26 12:22 PM PDT -imvan2,2023-05-26T20:10:53Z,- imvan2 opened pull request: [4746](https://github.com/hackforla/website/pull/4746) at 2023-05-26 01:10 PM PDT -imvan2,2023-05-26T22:11:58Z,- imvan2 commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1565014497) at 2023-05-26 03:11 PM PDT -imvan2,2023-05-31T02:12:02Z,- imvan2 pull request merged: [4746](https://github.com/hackforla/website/pull/4746#event-9384619039) at 2023-05-30 07:12 PM PDT -imvan2,2024-02-21T22:30:44Z,- imvan2 commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1958156230) at 2024-02-21 02:30 PM PST -innith,5363,SKILLS ISSUE -innith,2023-08-30T04:10:58Z,- innith opened issue: [5362](https://github.com/hackforla/website/issues/5362) at 2023-08-29 09:10 PM PDT -innith,2023-08-30T04:16:44Z,- innith closed issue as completed: [5362](https://github.com/hackforla/website/issues/5362#event-10228076849) at 2023-08-29 09:16 PM PDT -innith,2023-08-30T04:19:07Z,- innith opened issue: [5363](https://github.com/hackforla/website/issues/5363) at 2023-08-29 09:19 PM PDT -innith,2023-08-30T09:19:52Z,- innith commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1698805032) at 2023-08-30 02:19 AM PDT -innith,2023-08-31T00:23:20Z,- innith assigned to issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1698805032) at 2023-08-30 05:23 PM PDT -innith,2023-08-31T02:35:35Z,- innith assigned to issue: [5376](https://github.com/hackforla/website/issues/5376) at 2023-08-30 07:35 PM PDT -innith,2023-08-31T03:02:41Z,- innith opened pull request: [5392](https://github.com/hackforla/website/pull/5392) at 2023-08-30 08:02 PM PDT -innith,2023-09-02T03:48:27Z,- innith pull request merged: [5392](https://github.com/hackforla/website/pull/5392#event-10262850715) at 2023-09-01 08:48 PM PDT -innith,2023-09-02T04:08:56Z,- innith assigned to issue: [5390](https://github.com/hackforla/website/issues/5390) at 2023-09-01 09:08 PM PDT -innith,2023-09-02T04:48:52Z,- innith opened pull request: [5418](https://github.com/hackforla/website/pull/5418) at 2023-09-01 09:48 PM PDT -innith,2023-09-02T04:58:43Z,- innith pull request closed w/o merging: [5418](https://github.com/hackforla/website/pull/5418#event-10262981656) at 2023-09-01 09:58 PM PDT -innith,2023-09-02T05:45:18Z,- innith opened pull request: [5419](https://github.com/hackforla/website/pull/5419) at 2023-09-01 10:45 PM PDT -innith,2023-09-03T05:55:03Z,- innith assigned to issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1703751301) at 2023-09-02 10:55 PM PDT -innith,2023-09-03T06:15:14Z,- innith commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1704022700) at 2023-09-02 11:15 PM PDT -innith,2023-09-03T06:42:54Z,- innith opened pull request: [5424](https://github.com/hackforla/website/pull/5424) at 2023-09-02 11:42 PM PDT -innith,2023-09-03T07:20:33Z,- innith assigned to issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1702807066) at 2023-09-03 12:20 AM PDT -innith,2023-09-03T07:37:36Z,- innith opened pull request: [5425](https://github.com/hackforla/website/pull/5425) at 2023-09-03 12:37 AM PDT -innith,2023-09-03T08:14:25Z,- innith commented on issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1704045066) at 2023-09-03 01:14 AM PDT -innith,2023-09-03T08:35:43Z,- innith unassigned from issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1704022700) at 2023-09-03 01:35 AM PDT -innith,2023-09-03T08:37:55Z,- innith pull request closed w/o merging: [5424](https://github.com/hackforla/website/pull/5424#event-10265571866) at 2023-09-03 01:37 AM PDT -innith,2023-09-03T17:12:52Z,- innith pull request closed w/o merging: [5425](https://github.com/hackforla/website/pull/5425#event-10266783645) at 2023-09-03 10:12 AM PDT -innith,2023-09-03T17:13:15Z,- innith unassigned from issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1704045066) at 2023-09-03 10:13 AM PDT -innith,2023-09-08T04:26:35Z,- innith pull request merged: [5419](https://github.com/hackforla/website/pull/5419#event-10313587704) at 2023-09-07 09:26 PM PDT -innith,2023-09-30T14:10:07Z,- innith assigned to issue: [5603](https://github.com/hackforla/website/issues/5603) at 2023-09-30 07:10 AM PDT -innith,2023-09-30T14:13:09Z,- innith commented on issue: [5603](https://github.com/hackforla/website/issues/5603#issuecomment-1741775451) at 2023-09-30 07:13 AM PDT -innith,2024-12-26T04:54:34Z,- innith opened issue: [7813](https://github.com/hackforla/website/issues/7813) at 2024-12-25 08:54 PM PST -innith,2025-01-22T02:32:32Z,- innith assigned to issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2471660253) at 2025-01-21 06:32 PM PST -innith,2025-01-22T02:52:20Z,- innith commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2606170814) at 2025-01-21 06:52 PM PST -innith,2025-01-23T07:46:55Z,- innith commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2609075336) at 2025-01-22 11:46 PM PST -innith,2025-02-02T03:43:15Z,- innith opened pull request: [7873](https://github.com/hackforla/website/pull/7873) at 2025-02-01 07:43 PM PST -innith,2025-02-09T03:24:49Z,- innith commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2646048413) at 2025-02-08 07:24 PM PST -innith,2025-02-13T01:32:01Z,- innith commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2655228462) at 2025-02-12 05:32 PM PST -innith,2025-02-13T02:48:51Z,- innith commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2655322790) at 2025-02-12 06:48 PM PST -innith,2025-03-04T13:25:50Z,- innith pull request merged: [7873](https://github.com/hackforla/website/pull/7873#event-16558562877) at 2025-03-04 05:25 AM PST -ino-iosdev,6885,SKILLS ISSUE -ino-iosdev,2024-05-22T07:16:05Z,- ino-iosdev opened issue: [6885](https://github.com/hackforla/website/issues/6885) at 2024-05-22 12:16 AM PDT -ino-iosdev,2024-05-22T07:16:06Z,- ino-iosdev assigned to issue: [6885](https://github.com/hackforla/website/issues/6885) at 2024-05-22 12:16 AM PDT -ino-iosdev,2024-05-22T07:19:40Z,- ino-iosdev commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2124047641) at 2024-05-22 12:19 AM PDT -ino-iosdev,2024-05-24T08:10:41Z,- ino-iosdev commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2128872186) at 2024-05-24 01:10 AM PDT -ino-iosdev,2024-05-24T08:10:42Z,- ino-iosdev closed issue as completed: [6885](https://github.com/hackforla/website/issues/6885#event-12920899109) at 2024-05-24 01:10 AM PDT -ino-iosdev,2024-05-24T09:14:16Z,- ino-iosdev assigned to issue: [6799](https://github.com/hackforla/website/issues/6799#issuecomment-2126050194) at 2024-05-24 02:14 AM PDT -ino-iosdev,2024-05-24T09:25:50Z,- ino-iosdev commented on issue: [6799](https://github.com/hackforla/website/issues/6799#issuecomment-2129058074) at 2024-05-24 02:25 AM PDT -ino-iosdev,2024-05-24T23:22:32Z,- ino-iosdev opened pull request: [6894](https://github.com/hackforla/website/pull/6894) at 2024-05-24 04:22 PM PDT -ino-iosdev,2024-05-26T16:54:25Z,- ino-iosdev pull request merged: [6894](https://github.com/hackforla/website/pull/6894#event-12937456279) at 2024-05-26 09:54 AM PDT -ino-iosdev,2024-05-29T18:44:28Z,- ino-iosdev commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2138047768) at 2024-05-29 11:44 AM PDT -ino-iosdev,2024-05-29T21:21:04Z,- ino-iosdev submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2086537863) at 2024-05-29 02:21 PM PDT -ino-iosdev,2024-05-29T21:44:44Z,- ino-iosdev assigned to issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2132356023) at 2024-05-29 02:44 PM PDT -ino-iosdev,2024-05-29T21:44:56Z,- ino-iosdev unassigned from issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2138313063) at 2024-05-29 02:44 PM PDT -ino-iosdev,2024-05-29T21:48:46Z,- ino-iosdev assigned to issue: [6798](https://github.com/hackforla/website/issues/6798) at 2024-05-29 02:48 PM PDT -ino-iosdev,2024-05-29T21:48:58Z,- ino-iosdev unassigned from issue: [6798](https://github.com/hackforla/website/issues/6798) at 2024-05-29 02:48 PM PDT -ino-iosdev,2024-05-29T22:15:34Z,- ino-iosdev assigned to issue: [6730](https://github.com/hackforla/website/issues/6730) at 2024-05-29 03:15 PM PDT -ino-iosdev,2024-05-29T22:17:00Z,- ino-iosdev commented on issue: [6730](https://github.com/hackforla/website/issues/6730#issuecomment-2138350080) at 2024-05-29 03:17 PM PDT -ino-iosdev,2024-05-30T03:06:20Z,- ino-iosdev opened pull request: [6914](https://github.com/hackforla/website/pull/6914) at 2024-05-29 08:06 PM PDT -ino-iosdev,2024-05-30T03:12:13Z,- ino-iosdev commented on issue: [6730](https://github.com/hackforla/website/issues/6730#issuecomment-2138594694) at 2024-05-29 08:12 PM PDT -ino-iosdev,2024-05-30T03:22:17Z,- ino-iosdev commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2138602873) at 2024-05-29 08:22 PM PDT -ino-iosdev,2024-05-30T03:32:46Z,- ino-iosdev commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2138610921) at 2024-05-29 08:32 PM PDT -ino-iosdev,2024-05-30T04:01:18Z,- ino-iosdev submitted pull request review: [6913](https://github.com/hackforla/website/pull/6913#pullrequestreview-2087179485) at 2024-05-29 09:01 PM PDT -ino-iosdev,2024-05-30T04:09:24Z,- ino-iosdev commented on pull request: [6912](https://github.com/hackforla/website/pull/6912#issuecomment-2138638892) at 2024-05-29 09:09 PM PDT -ino-iosdev,2024-05-30T04:29:48Z,- ino-iosdev submitted pull request review: [6912](https://github.com/hackforla/website/pull/6912#pullrequestreview-2087201456) at 2024-05-29 09:29 PM PDT -ino-iosdev,2024-05-30T19:44:18Z,- ino-iosdev submitted pull request review: [6913](https://github.com/hackforla/website/pull/6913#pullrequestreview-2089239981) at 2024-05-30 12:44 PM PDT -ino-iosdev,2024-05-31T01:37:20Z,- ino-iosdev pull request closed w/o merging: [6914](https://github.com/hackforla/website/pull/6914#event-12993507729) at 2024-05-30 06:37 PM PDT -ino-iosdev,2024-05-31T01:44:27Z,- ino-iosdev commented on pull request: [6914](https://github.com/hackforla/website/pull/6914#issuecomment-2141095619) at 2024-05-30 06:44 PM PDT -ino-iosdev,2024-05-31T06:13:29Z,- ino-iosdev opened pull request: [6917](https://github.com/hackforla/website/pull/6917) at 2024-05-30 11:13 PM PDT -ino-iosdev,2024-05-31T06:33:39Z,- ino-iosdev commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2141321251) at 2024-05-30 11:33 PM PDT -ino-iosdev,2024-06-02T00:41:50Z,- ino-iosdev commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143648107) at 2024-06-01 05:41 PM PDT -ino-iosdev,2024-06-02T00:45:32Z,- ino-iosdev commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143648841) at 2024-06-01 05:45 PM PDT -ino-iosdev,2024-06-02T04:28:45Z,- ino-iosdev commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2143692700) at 2024-06-01 09:28 PM PDT -ino-iosdev,2024-06-02T17:44:06Z,- ino-iosdev pull request merged: [6917](https://github.com/hackforla/website/pull/6917#event-13012612378) at 2024-06-02 10:44 AM PDT -ino-iosdev,2024-06-03T08:53:56Z,- ino-iosdev commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2144649441) at 2024-06-03 01:53 AM PDT -ino-iosdev,2024-06-05T08:10:29Z,- ino-iosdev submitted pull request review: [6924](https://github.com/hackforla/website/pull/6924#pullrequestreview-2098358313) at 2024-06-05 01:10 AM PDT -ino-iosdev,2024-06-05T08:18:33Z,- ino-iosdev commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2149178776) at 2024-06-05 01:18 AM PDT -ino-iosdev,2024-06-05T08:29:26Z,- ino-iosdev assigned to issue: [6941](https://github.com/hackforla/website/issues/6941) at 2024-06-05 01:29 AM PDT -ino-iosdev,2024-06-05T08:29:42Z,- ino-iosdev unassigned from issue: [6941](https://github.com/hackforla/website/issues/6941) at 2024-06-05 01:29 AM PDT -ino-iosdev,2024-06-05T08:32:09Z,- ino-iosdev assigned to issue: [6935](https://github.com/hackforla/website/issues/6935) at 2024-06-05 01:32 AM PDT -ino-iosdev,2024-06-05T08:32:23Z,- ino-iosdev unassigned from issue: [6935](https://github.com/hackforla/website/issues/6935) at 2024-06-05 01:32 AM PDT -ino-iosdev,2024-06-05T08:35:33Z,- ino-iosdev assigned to issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138418428) at 2024-06-05 01:35 AM PDT -ino-iosdev,2024-06-05T08:36:30Z,- ino-iosdev commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2149214979) at 2024-06-05 01:36 AM PDT -ino-iosdev,2024-06-05T21:12:51Z,- ino-iosdev opened pull request: [6963](https://github.com/hackforla/website/pull/6963) at 2024-06-05 02:12 PM PDT -ino-iosdev,2024-06-05T21:27:32Z,- ino-iosdev commented on pull request: [6958](https://github.com/hackforla/website/pull/6958#issuecomment-2150991903) at 2024-06-05 02:27 PM PDT -ino-iosdev,2024-06-05T21:43:36Z,- ino-iosdev submitted pull request review: [6958](https://github.com/hackforla/website/pull/6958#pullrequestreview-2100340477) at 2024-06-05 02:43 PM PDT -ino-iosdev,2024-06-05T21:44:28Z,- ino-iosdev submitted pull request review: [6958](https://github.com/hackforla/website/pull/6958#pullrequestreview-2100341459) at 2024-06-05 02:44 PM PDT -ino-iosdev,2024-06-06T16:51:10Z,- ino-iosdev pull request merged: [6963](https://github.com/hackforla/website/pull/6963#event-13069659611) at 2024-06-06 09:51 AM PDT -ino-iosdev,2024-06-07T03:47:50Z,- ino-iosdev submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2103580482) at 2024-06-06 08:47 PM PDT -ino-iosdev,2024-06-12T01:10:31Z,- ino-iosdev submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2111706901) at 2024-06-11 06:10 PM PDT -ino-iosdev,2024-06-12T01:17:22Z,- ino-iosdev commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2161879846) at 2024-06-11 06:17 PM PDT -ino-iosdev,2024-06-12T01:51:46Z,- ino-iosdev submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2111756485) at 2024-06-11 06:51 PM PDT -ino-iosdev,2024-06-12T02:15:14Z,- ino-iosdev submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2111805745) at 2024-06-11 07:15 PM PDT -ino-iosdev,2024-06-12T03:07:41Z,- ino-iosdev opened issue: [6990](https://github.com/hackforla/website/issues/6990) at 2024-06-11 08:07 PM PDT -ino-iosdev,2024-06-12T03:43:27Z,- ino-iosdev assigned to issue: [6755](https://github.com/hackforla/website/issues/6755) at 2024-06-11 08:43 PM PDT -ino-iosdev,2024-06-12T03:46:20Z,- ino-iosdev commented on issue: [6755](https://github.com/hackforla/website/issues/6755#issuecomment-2162048275) at 2024-06-11 08:46 PM PDT -ino-iosdev,2024-06-12T03:52:57Z,- ino-iosdev submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2111895852) at 2024-06-11 08:52 PM PDT -ino-iosdev,2024-06-12T04:44:48Z,- ino-iosdev submitted pull request review: [6989](https://github.com/hackforla/website/pull/6989#pullrequestreview-2111939502) at 2024-06-11 09:44 PM PDT -ino-iosdev,2024-06-12T16:25:56Z,- ino-iosdev commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2163455284) at 2024-06-12 09:25 AM PDT -ino-iosdev,2024-06-12T16:36:13Z,- ino-iosdev commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2163473186) at 2024-06-12 09:36 AM PDT -ino-iosdev,2024-06-12T16:48:21Z,- ino-iosdev commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2163493512) at 2024-06-12 09:48 AM PDT -ino-iosdev,2024-06-12T16:53:42Z,- ino-iosdev reopened pull request: [6980](https://github.com/hackforla/website/pull/6980#event-13134761820) at 2024-06-12 09:53 AM PDT -ino-iosdev,2024-06-12T17:16:20Z,- ino-iosdev commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2163543607) at 2024-06-12 10:16 AM PDT -ino-iosdev,2024-06-12T21:00:14Z,- ino-iosdev submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2114210819) at 2024-06-12 02:00 PM PDT -ino-iosdev,2024-06-12T21:45:59Z,- ino-iosdev assigned to issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2111173399) at 2024-06-12 02:45 PM PDT -ino-iosdev,2024-06-12T21:46:24Z,- ino-iosdev commented on issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2163956515) at 2024-06-12 02:46 PM PDT -ino-iosdev,2024-06-12T21:50:50Z,- ino-iosdev submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2114288571) at 2024-06-12 02:50 PM PDT -ino-iosdev,2024-06-13T00:04:01Z,- ino-iosdev opened pull request: [6999](https://github.com/hackforla/website/pull/6999) at 2024-06-12 05:04 PM PDT -ino-iosdev,2024-06-14T23:19:39Z,- ino-iosdev pull request merged: [6999](https://github.com/hackforla/website/pull/6999#event-13166269856) at 2024-06-14 04:19 PM PDT -ino-iosdev,2024-06-17T15:24:00Z,- ino-iosdev submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2123212855) at 2024-06-17 08:24 AM PDT -ino-iosdev,2024-06-24T21:33:14Z,- ino-iosdev submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2136824306) at 2024-06-24 02:33 PM PDT -ino-iosdev,2024-10-06T17:49:25Z,- ino-iosdev assigned to issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2167157849) at 2024-10-06 10:49 AM PDT -ino-iosdev,2024-10-06T21:41:56Z,- ino-iosdev unassigned from issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2167157849) at 2024-10-06 02:41 PM PDT -ino-iosdev,2025-01-17T02:53:37Z,- ino-iosdev assigned to issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2481458031) at 2025-01-16 06:53 PM PST -ino-iosdev,2025-01-17T02:53:49Z,- ino-iosdev unassigned from issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2481458031) at 2025-01-16 06:53 PM PST -ino-iosdev,2025-01-17T02:57:05Z,- ino-iosdev commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2597330105) at 2025-01-16 06:57 PM PST -ino-iosdev,2025-01-17T02:57:53Z,- ino-iosdev commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2597330910) at 2025-01-16 06:57 PM PST -ino-iosdev,2025-01-21T02:32:50Z,- ino-iosdev assigned to issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2597330105) at 2025-01-20 06:32 PM PST -ino-iosdev,2025-01-21T02:33:06Z,- ino-iosdev unassigned from issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2597330105) at 2025-01-20 06:33 PM PST -ino-iosdev,2025-01-21T02:34:00Z,- ino-iosdev assigned to issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2603502874) at 2025-01-20 06:34 PM PST -ino-iosdev,2025-01-21T06:50:05Z,- ino-iosdev commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2603794773) at 2025-01-20 10:50 PM PST -ino-iosdev,2025-01-25T07:57:34Z,- ino-iosdev opened pull request: [7851](https://github.com/hackforla/website/pull/7851) at 2025-01-24 11:57 PM PST -ino-iosdev,2025-01-25T08:04:17Z,- ino-iosdev commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2613833692) at 2025-01-25 12:04 AM PST -ino-iosdev,2025-01-25T08:07:55Z,- ino-iosdev closed issue as completed: [6885](https://github.com/hackforla/website/issues/6885#event-16066803811) at 2025-01-25 12:07 AM PST -ino-iosdev,2025-02-01T05:28:56Z,- ino-iosdev commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2628785724) at 2025-01-31 09:28 PM PST -ino-iosdev,2025-02-02T22:29:54Z,- ino-iosdev pull request merged: [7851](https://github.com/hackforla/website/pull/7851#event-16153903224) at 2025-02-02 02:29 PM PST -ino-iosdev,2025-02-03T04:09:38Z,- ino-iosdev assigned to issue: [7481](https://github.com/hackforla/website/issues/7481) at 2025-02-02 08:09 PM PST -ino-iosdev,2025-02-03T04:09:52Z,- ino-iosdev unassigned from issue: [7481](https://github.com/hackforla/website/issues/7481) at 2025-02-02 08:09 PM PST -ino-iosdev,2025-02-03T04:16:04Z,- ino-iosdev assigned to issue: [7448](https://github.com/hackforla/website/issues/7448) at 2025-02-02 08:16 PM PST -ino-iosdev,2025-02-03T04:16:16Z,- ino-iosdev unassigned from issue: [7448](https://github.com/hackforla/website/issues/7448) at 2025-02-02 08:16 PM PST -ino-iosdev,2025-04-01T07:36:50Z,- ino-iosdev closed issue as completed: [6885](https://github.com/hackforla/website/issues/6885#event-17070035258) at 2025-04-01 12:36 AM PDT -Insaneowl1993,6607,SKILLS ISSUE -Insaneowl1993,2024-04-09T03:21:01Z,- Insaneowl1993 opened issue: [6607](https://github.com/hackforla/website/issues/6607) at 2024-04-08 08:21 PM PDT -Insaneowl1993,2024-06-23T16:34:24Z,- Insaneowl1993 assigned to issue: [6607](https://github.com/hackforla/website/issues/6607#issuecomment-2045935660) at 2024-06-23 09:34 AM PDT -Insaneowl1993,2024-10-25T23:10:46Z,- Insaneowl1993 commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2439027285) at 2024-10-25 04:10 PM PDT -IpshitaSingh,2021-08-20T04:48:27Z,- IpshitaSingh assigned to issue: [2026](https://github.com/hackforla/website/issues/2026#issuecomment-892055633) at 2021-08-19 09:48 PM PDT -IpshitaSingh,2021-08-26T04:32:58Z,- IpshitaSingh commented on issue: [2026](https://github.com/hackforla/website/issues/2026#issuecomment-906087001) at 2021-08-25 09:32 PM PDT -IpshitaSingh,2021-08-26T04:54:58Z,- IpshitaSingh opened pull request: [2181](https://github.com/hackforla/website/pull/2181) at 2021-08-25 09:54 PM PDT -IpshitaSingh,2021-08-30T16:50:54Z,- IpshitaSingh pull request merged: [2181](https://github.com/hackforla/website/pull/2181#event-5227471637) at 2021-08-30 09:50 AM PDT -IpshitaSingh,2021-09-03T09:29:58Z,- IpshitaSingh assigned to issue: [2194](https://github.com/hackforla/website/issues/2194) at 2021-09-03 02:29 AM PDT -IpshitaSingh,2021-09-03T10:05:38Z,- IpshitaSingh commented on issue: [2194](https://github.com/hackforla/website/issues/2194#issuecomment-912421166) at 2021-09-03 03:05 AM PDT -IpshitaSingh,2021-09-03T10:12:12Z,- IpshitaSingh opened pull request: [2218](https://github.com/hackforla/website/pull/2218) at 2021-09-03 03:12 AM PDT -IpshitaSingh,2021-09-03T17:37:26Z,- IpshitaSingh pull request closed w/o merging: [2218](https://github.com/hackforla/website/pull/2218#event-5254768869) at 2021-09-03 10:37 AM PDT -IpshitaSingh,2021-09-03T17:45:07Z,- IpshitaSingh unassigned from issue: [2194](https://github.com/hackforla/website/issues/2194#issuecomment-912421166) at 2021-09-03 10:45 AM PDT -IpshitaSingh,2021-09-07T20:47:20Z,- IpshitaSingh assigned to issue: [2045](https://github.com/hackforla/website/issues/2045) at 2021-09-07 01:47 PM PDT -IpshitaSingh,2021-09-08T07:49:34Z,- IpshitaSingh commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-915003034) at 2021-09-08 12:49 AM PDT -IpshitaSingh,2021-09-09T20:55:48Z,- IpshitaSingh commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-916429706) at 2021-09-09 01:55 PM PDT -IpshitaSingh,2021-09-09T21:07:03Z,- IpshitaSingh opened pull request: [2245](https://github.com/hackforla/website/pull/2245) at 2021-09-09 02:07 PM PDT -IpshitaSingh,2021-09-09T21:20:02Z,- IpshitaSingh commented on pull request: [2245](https://github.com/hackforla/website/pull/2245#issuecomment-916444787) at 2021-09-09 02:20 PM PDT -IpshitaSingh,2021-09-09T21:20:02Z,- IpshitaSingh pull request closed w/o merging: [2245](https://github.com/hackforla/website/pull/2245#event-5281079087) at 2021-09-09 02:20 PM PDT -IpshitaSingh,2021-09-24T16:54:56Z,- IpshitaSingh commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-926780207) at 2021-09-24 09:54 AM PDT -IpshitaSingh,2021-09-27T10:09:29Z,- IpshitaSingh commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-927720797) at 2021-09-27 03:09 AM PDT -IpshitaSingh,2021-09-29T05:01:06Z,- IpshitaSingh opened pull request: [2314](https://github.com/hackforla/website/pull/2314) at 2021-09-28 10:01 PM PDT -IpshitaSingh,2021-09-29T05:05:26Z,- IpshitaSingh commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-929839024) at 2021-09-28 10:05 PM PDT -IpshitaSingh,2021-09-29T17:03:49Z,- IpshitaSingh commented on pull request: [2314](https://github.com/hackforla/website/pull/2314#issuecomment-930363936) at 2021-09-29 10:03 AM PDT -IpshitaSingh,2021-10-05T08:13:23Z,- IpshitaSingh submitted pull request review: [2314](https://github.com/hackforla/website/pull/2314#pullrequestreview-771117496) at 2021-10-05 01:13 AM PDT -IpshitaSingh,2021-10-06T03:55:24Z,- IpshitaSingh pull request merged: [2314](https://github.com/hackforla/website/pull/2314#event-5415841535) at 2021-10-05 08:55 PM PDT -IpshitaSingh,2021-10-06T21:01:29Z,- IpshitaSingh commented on pull request: [2314](https://github.com/hackforla/website/pull/2314#issuecomment-937128408) at 2021-10-06 02:01 PM PDT -irais-valenzuela,5777,SKILLS ISSUE -irais-valenzuela,5779,SKILLS ISSUE -irais-valenzuela,2023-10-25T02:51:07Z,- irais-valenzuela opened issue: [5777](https://github.com/hackforla/website/issues/5777) at 2023-10-24 07:51 PM PDT -irais-valenzuela,2023-10-25T02:51:19Z,- irais-valenzuela assigned to issue: [5777](https://github.com/hackforla/website/issues/5777) at 2023-10-24 07:51 PM PDT -irais-valenzuela,2023-10-25T02:54:42Z,- irais-valenzuela opened issue: [5779](https://github.com/hackforla/website/issues/5779) at 2023-10-24 07:54 PM PDT -irais-valenzuela,2023-10-25T02:54:51Z,- irais-valenzuela assigned to issue: [5779](https://github.com/hackforla/website/issues/5779) at 2023-10-24 07:54 PM PDT -irais-valenzuela,2023-11-01T19:41:08Z,- irais-valenzuela assigned to issue: [5761](https://github.com/hackforla/website/issues/5761) at 2023-11-01 12:41 PM PDT -irais-valenzuela,2023-11-01T21:52:00Z,- irais-valenzuela opened pull request: [5821](https://github.com/hackforla/website/pull/5821) at 2023-11-01 02:52 PM PDT -irais-valenzuela,2023-11-03T19:17:27Z,- irais-valenzuela commented on pull request: [5822](https://github.com/hackforla/website/pull/5822#issuecomment-1792972917) at 2023-11-03 12:17 PM PDT -irais-valenzuela,2023-11-03T20:07:26Z,- irais-valenzuela submitted pull request review: [5822](https://github.com/hackforla/website/pull/5822#pullrequestreview-1713459007) at 2023-11-03 01:07 PM PDT -irais-valenzuela,2023-11-03T21:06:30Z,- irais-valenzuela submitted pull request review: [5822](https://github.com/hackforla/website/pull/5822#pullrequestreview-1713532590) at 2023-11-03 02:06 PM PDT -irais-valenzuela,2023-11-05T23:51:37Z,- irais-valenzuela commented on pull request: [5821](https://github.com/hackforla/website/pull/5821#issuecomment-1793886884) at 2023-11-05 03:51 PM PST -irais-valenzuela,2023-11-06T02:25:35Z,- irais-valenzuela pull request merged: [5821](https://github.com/hackforla/website/pull/5821#event-10866869669) at 2023-11-05 06:25 PM PST -irais-valenzuela,2023-11-06T19:31:52Z,- irais-valenzuela assigned to issue: [5755](https://github.com/hackforla/website/issues/5755) at 2023-11-06 11:31 AM PST -irais-valenzuela,2023-11-06T19:34:52Z,- irais-valenzuela commented on issue: [5755](https://github.com/hackforla/website/issues/5755#issuecomment-1796168457) at 2023-11-06 11:34 AM PST -irais-valenzuela,2023-11-08T20:58:49Z,- irais-valenzuela opened pull request: [5886](https://github.com/hackforla/website/pull/5886) at 2023-11-08 12:58 PM PST -irais-valenzuela,2023-11-10T14:57:59Z,- irais-valenzuela pull request merged: [5886](https://github.com/hackforla/website/pull/5886#event-10926154946) at 2023-11-10 06:57 AM PST -irais-valenzuela,2023-11-15T18:44:15Z,- irais-valenzuela assigned to issue: [5860](https://github.com/hackforla/website/issues/5860) at 2023-11-15 10:44 AM PST -irais-valenzuela,2023-11-15T18:47:30Z,- irais-valenzuela commented on issue: [5860](https://github.com/hackforla/website/issues/5860#issuecomment-1813078527) at 2023-11-15 10:47 AM PST -irais-valenzuela,2023-11-16T19:04:57Z,- irais-valenzuela opened pull request: [5912](https://github.com/hackforla/website/pull/5912) at 2023-11-16 11:04 AM PST -irais-valenzuela,2023-11-16T19:37:11Z,- irais-valenzuela commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815191888) at 2023-11-16 11:37 AM PST -irais-valenzuela,2023-11-16T19:44:34Z,- irais-valenzuela commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815202343) at 2023-11-16 11:44 AM PST -irais-valenzuela,2023-11-16T20:16:16Z,- irais-valenzuela commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815248714) at 2023-11-16 12:16 PM PST -irais-valenzuela,2023-11-16T23:05:54Z,- irais-valenzuela submitted pull request review: [5914](https://github.com/hackforla/website/pull/5914#pullrequestreview-1735696240) at 2023-11-16 03:05 PM PST -irais-valenzuela,2023-11-16T23:11:48Z,- irais-valenzuela commented on pull request: [5916](https://github.com/hackforla/website/pull/5916#issuecomment-1815463400) at 2023-11-16 03:11 PM PST -irais-valenzuela,2023-11-16T23:36:24Z,- irais-valenzuela submitted pull request review: [5916](https://github.com/hackforla/website/pull/5916#pullrequestreview-1735736517) at 2023-11-16 03:36 PM PST -irais-valenzuela,2023-11-18T02:59:51Z,- irais-valenzuela commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1817341216) at 2023-11-17 06:59 PM PST -irais-valenzuela,2023-11-22T18:39:50Z,- irais-valenzuela pull request merged: [5912](https://github.com/hackforla/website/pull/5912#event-11039967286) at 2023-11-22 10:39 AM PST -irais-valenzuela,2023-11-26T03:37:25Z,- irais-valenzuela submitted pull request review: [5914](https://github.com/hackforla/website/pull/5914#pullrequestreview-1749259741) at 2023-11-25 07:37 PM PST -irais-valenzuela,2024-02-05T23:32:23Z,- irais-valenzuela assigned to issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1906556729) at 2024-02-05 03:32 PM PST -irais-valenzuela,2024-02-05T23:34:40Z,- irais-valenzuela commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1928501959) at 2024-02-05 03:34 PM PST -irais-valenzuela,2024-02-06T22:24:05Z,- irais-valenzuela commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1930869902) at 2024-02-06 02:24 PM PST -irais-valenzuela,2024-02-08T21:00:05Z,- irais-valenzuela commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1934924828) at 2024-02-08 01:00 PM PST -irais-valenzuela,2024-02-09T05:42:44Z,- irais-valenzuela opened pull request: [6271](https://github.com/hackforla/website/pull/6271) at 2024-02-08 09:42 PM PST -irais-valenzuela,2024-02-15T00:38:38Z,- irais-valenzuela commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1945177244) at 2024-02-14 04:38 PM PST -irais-valenzuela,2024-02-15T00:39:59Z,- irais-valenzuela commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1945178394) at 2024-02-14 04:39 PM PST -irais-valenzuela,2024-02-15T03:48:44Z,- irais-valenzuela pull request merged: [6271](https://github.com/hackforla/website/pull/6271#event-11809662014) at 2024-02-14 07:48 PM PST -irais-valenzuela,2024-02-17T17:56:44Z,- irais-valenzuela commented on pull request: [6305](https://github.com/hackforla/website/pull/6305#issuecomment-1950269631) at 2024-02-17 09:56 AM PST -irais-valenzuela,2024-02-18T18:32:22Z,- irais-valenzuela submitted pull request review: [6305](https://github.com/hackforla/website/pull/6305#pullrequestreview-1887303265) at 2024-02-18 10:32 AM PST -irais-valenzuela,2024-02-21T02:01:41Z,- irais-valenzuela commented on pull request: [6325](https://github.com/hackforla/website/pull/6325#issuecomment-1955732170) at 2024-02-20 06:01 PM PST -irais-valenzuela,2024-02-21T02:16:14Z,- irais-valenzuela submitted pull request review: [6325](https://github.com/hackforla/website/pull/6325#pullrequestreview-1891919800) at 2024-02-20 06:16 PM PST -irais-valenzuela,2024-02-21T03:15:51Z,- irais-valenzuela commented on pull request: [6328](https://github.com/hackforla/website/pull/6328#issuecomment-1955801120) at 2024-02-20 07:15 PM PST -irais-valenzuela,2024-02-21T21:22:58Z,- irais-valenzuela submitted pull request review: [6328](https://github.com/hackforla/website/pull/6328#pullrequestreview-1894438814) at 2024-02-21 01:22 PM PST -irais-valenzuela,2024-02-21T22:17:52Z,- irais-valenzuela submitted pull request review: [6328](https://github.com/hackforla/website/pull/6328#pullrequestreview-1894522016) at 2024-02-21 02:17 PM PST -irais-valenzuela,2024-02-29T02:13:29Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1970272513) at 2024-02-28 06:13 PM PST -irais-valenzuela,2024-02-29T02:16:07Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1970274596) at 2024-02-28 06:16 PM PST -irais-valenzuela,2024-03-06T20:40:06Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1981743686) at 2024-03-06 12:40 PM PST -irais-valenzuela,2024-03-15T19:10:34Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2000291069) at 2024-03-15 12:10 PM PDT -irais-valenzuela,2024-03-15T22:50:23Z,- irais-valenzuela commented on pull request: [6465](https://github.com/hackforla/website/pull/6465#issuecomment-2000600512) at 2024-03-15 03:50 PM PDT -irais-valenzuela,2024-03-15T23:01:09Z,- irais-valenzuela submitted pull request review: [6465](https://github.com/hackforla/website/pull/6465#pullrequestreview-1940786139) at 2024-03-15 04:01 PM PDT -irais-valenzuela,2024-03-15T23:51:56Z,- irais-valenzuela commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-2000687569) at 2024-03-15 04:51 PM PDT -irais-valenzuela,2024-03-16T21:54:12Z,- irais-valenzuela submitted pull request review: [6462](https://github.com/hackforla/website/pull/6462#pullrequestreview-1941336302) at 2024-03-16 02:54 PM PDT -irais-valenzuela,2024-03-18T20:36:31Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2004940902) at 2024-03-18 01:36 PM PDT -irais-valenzuela,2024-03-20T19:56:28Z,- irais-valenzuela commented on pull request: [6486](https://github.com/hackforla/website/pull/6486#issuecomment-2010509855) at 2024-03-20 12:56 PM PDT -irais-valenzuela,2024-03-20T20:08:18Z,- irais-valenzuela submitted pull request review: [6486](https://github.com/hackforla/website/pull/6486#pullrequestreview-1950041004) at 2024-03-20 01:08 PM PDT -irais-valenzuela,2024-03-20T20:25:39Z,- irais-valenzuela commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2010560925) at 2024-03-20 01:25 PM PDT -irais-valenzuela,2024-03-21T20:28:53Z,- irais-valenzuela submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1953351700) at 2024-03-21 01:28 PM PDT -irais-valenzuela,2024-03-26T20:36:03Z,- irais-valenzuela submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1961670757) at 2024-03-26 01:36 PM PDT -irais-valenzuela,2024-04-08T20:02:53Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2043547644) at 2024-04-08 01:02 PM PDT -irais-valenzuela,2024-04-08T20:03:03Z,- irais-valenzuela assigned to issue: [6541](https://github.com/hackforla/website/issues/6541#issuecomment-2024456325) at 2024-04-08 01:03 PM PDT -irais-valenzuela,2024-04-08T20:04:27Z,- irais-valenzuela commented on issue: [6541](https://github.com/hackforla/website/issues/6541#issuecomment-2043549707) at 2024-04-08 01:04 PM PDT -irais-valenzuela,2024-04-08T20:14:55Z,- irais-valenzuela opened issue: [6585](https://github.com/hackforla/website/issues/6585) at 2024-04-08 01:14 PM PDT -irais-valenzuela,2024-04-08T20:22:17Z,- irais-valenzuela opened issue: [6586](https://github.com/hackforla/website/issues/6586) at 2024-04-08 01:22 PM PDT -irais-valenzuela,2024-04-08T20:25:10Z,- irais-valenzuela opened issue: [6587](https://github.com/hackforla/website/issues/6587) at 2024-04-08 01:25 PM PDT -irais-valenzuela,2024-04-08T20:26:52Z,- irais-valenzuela opened issue: [6588](https://github.com/hackforla/website/issues/6588) at 2024-04-08 01:26 PM PDT -irais-valenzuela,2024-04-08T20:29:18Z,- irais-valenzuela opened issue: [6589](https://github.com/hackforla/website/issues/6589) at 2024-04-08 01:29 PM PDT -irais-valenzuela,2024-04-08T20:30:47Z,- irais-valenzuela opened issue: [6590](https://github.com/hackforla/website/issues/6590) at 2024-04-08 01:30 PM PDT -irais-valenzuela,2024-04-08T20:32:00Z,- irais-valenzuela opened issue: [6591](https://github.com/hackforla/website/issues/6591) at 2024-04-08 01:32 PM PDT -irais-valenzuela,2024-04-08T20:34:55Z,- irais-valenzuela opened issue: [6592](https://github.com/hackforla/website/issues/6592) at 2024-04-08 01:34 PM PDT -irais-valenzuela,2024-04-08T20:36:07Z,- irais-valenzuela opened issue: [6593](https://github.com/hackforla/website/issues/6593) at 2024-04-08 01:36 PM PDT -irais-valenzuela,2024-04-08T20:37:10Z,- irais-valenzuela opened issue: [6594](https://github.com/hackforla/website/issues/6594) at 2024-04-08 01:37 PM PDT -irais-valenzuela,2024-04-10T20:04:07Z,- irais-valenzuela commented on pull request: [6613](https://github.com/hackforla/website/pull/6613#issuecomment-2048346681) at 2024-04-10 01:04 PM PDT -irais-valenzuela,2024-04-10T20:39:26Z,- irais-valenzuela submitted pull request review: [6613](https://github.com/hackforla/website/pull/6613#pullrequestreview-1992635764) at 2024-04-10 01:39 PM PDT -irais-valenzuela,2024-04-11T19:26:37Z,- irais-valenzuela submitted pull request review: [6613](https://github.com/hackforla/website/pull/6613#pullrequestreview-1995104284) at 2024-04-11 12:26 PM PDT -irais-valenzuela,2024-04-16T23:12:48Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2060054496) at 2024-04-16 04:12 PM PDT -irais-valenzuela,2024-04-17T19:25:14Z,- irais-valenzuela commented on pull request: [6658](https://github.com/hackforla/website/pull/6658#issuecomment-2062043444) at 2024-04-17 12:25 PM PDT -irais-valenzuela,2024-04-17T19:39:03Z,- irais-valenzuela submitted pull request review: [6658](https://github.com/hackforla/website/pull/6658#pullrequestreview-2006987004) at 2024-04-17 12:39 PM PDT -irais-valenzuela,2024-04-22T19:41:51Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2070801588) at 2024-04-22 12:41 PM PDT -irais-valenzuela,2024-04-30T01:07:09Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2084034826) at 2024-04-29 06:07 PM PDT -irais-valenzuela,2024-05-04T00:35:07Z,- irais-valenzuela opened pull request: [6815](https://github.com/hackforla/website/pull/6815) at 2024-05-03 05:35 PM PDT -irais-valenzuela,2024-05-06T19:00:10Z,- irais-valenzuela commented on pull request: [6815](https://github.com/hackforla/website/pull/6815#issuecomment-2096706650) at 2024-05-06 12:00 PM PDT -irais-valenzuela,2024-05-06T19:02:39Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2096710595) at 2024-05-06 12:02 PM PDT -irais-valenzuela,2024-05-07T20:17:56Z,- irais-valenzuela commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2099229929) at 2024-05-07 01:17 PM PDT -irais-valenzuela,2024-05-07T21:01:26Z,- irais-valenzuela submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2044186425) at 2024-05-07 02:01 PM PDT -irais-valenzuela,2024-05-08T06:59:26Z,- irais-valenzuela pull request merged: [6815](https://github.com/hackforla/website/pull/6815#event-12739186004) at 2024-05-07 11:59 PM PDT -irais-valenzuela,2024-08-07T00:39:38Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2272407386) at 2024-08-06 05:39 PM PDT -irais-valenzuela,2024-08-21T02:33:23Z,- irais-valenzuela assigned to issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-2159582716) at 2024-08-20 07:33 PM PDT -irais-valenzuela,2024-08-21T02:36:25Z,- irais-valenzuela unassigned from issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-2300340736) at 2024-08-20 07:36 PM PDT -irais-valenzuela,2024-08-21T02:41:26Z,- irais-valenzuela assigned to issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2201524234) at 2024-08-20 07:41 PM PDT -irais-valenzuela,2024-08-21T02:44:17Z,- irais-valenzuela commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2300380337) at 2024-08-20 07:44 PM PDT -irais-valenzuela,2024-08-21T02:45:30Z,- irais-valenzuela commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2300385690) at 2024-08-20 07:45 PM PDT -irais-valenzuela,2024-08-30T18:32:59Z,- irais-valenzuela commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2322121376) at 2024-08-30 11:32 AM PDT -irais-valenzuela,2024-09-04T22:49:05Z,- irais-valenzuela commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2330281160) at 2024-09-04 03:49 PM PDT -irais-valenzuela,2024-09-11T00:48:56Z,- irais-valenzuela commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2342405402) at 2024-09-10 05:48 PM PDT -irais-valenzuela,2024-09-15T04:23:08Z,- irais-valenzuela commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2351357032) at 2024-09-14 09:23 PM PDT -irais-valenzuela,2024-09-16T20:59:21Z,- irais-valenzuela commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2354023308) at 2024-09-16 01:59 PM PDT -irais-valenzuela,2024-09-18T19:09:27Z,- irais-valenzuela unassigned from issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2351667270) at 2024-09-18 12:09 PM PDT -irais-valenzuela,2024-09-19T22:02:27Z,- irais-valenzuela submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2316827226) at 2024-09-19 03:02 PM PDT -iris-jeong,5862,SKILLS ISSUE -iris-jeong,2023-11-07T03:44:59Z,- iris-jeong opened issue: [5862](https://github.com/hackforla/website/issues/5862) at 2023-11-06 07:44 PM PST -iris-jeong,2023-11-07T03:54:22Z,- iris-jeong assigned to issue: [5862](https://github.com/hackforla/website/issues/5862) at 2023-11-06 07:54 PM PST -irisxie,2021-07-25T21:48:26Z,- irisxie assigned to issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-867348107) at 2021-07-25 02:48 PM PDT -irisxie,2021-07-28T08:59:18Z,- irisxie unassigned from issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-887670543) at 2021-07-28 01:59 AM PDT -IsaacDesigns,2021-11-12T17:20:31Z,- IsaacDesigns assigned to issue: [2449](https://github.com/hackforla/website/issues/2449#issuecomment-961447145) at 2021-11-12 09:20 AM PST -IsaacDesigns,2021-11-12T17:32:09Z,- IsaacDesigns commented on issue: [2449](https://github.com/hackforla/website/issues/2449#issuecomment-967291324) at 2021-11-12 09:32 AM PST -IsaacDesigns,2021-11-19T00:54:29Z,- IsaacDesigns opened issue: [2501](https://github.com/hackforla/website/issues/2501) at 2021-11-18 04:54 PM PST -IsaacDesigns,2021-11-22T16:37:35Z,- IsaacDesigns commented on issue: [2449](https://github.com/hackforla/website/issues/2449#issuecomment-975709078) at 2021-11-22 08:37 AM PST -IsaacDesigns,2021-11-22T18:46:35Z,- IsaacDesigns opened issue: [2511](https://github.com/hackforla/website/issues/2511) at 2021-11-22 10:46 AM PST -IsaacDesigns,2021-11-22T19:10:07Z,- IsaacDesigns opened issue: [2512](https://github.com/hackforla/website/issues/2512) at 2021-11-22 11:10 AM PST -IsaacDesigns,2021-11-22T19:15:09Z,- IsaacDesigns opened issue: [2513](https://github.com/hackforla/website/issues/2513) at 2021-11-22 11:15 AM PST -IsaacDesigns,2021-11-24T20:54:38Z,- IsaacDesigns assigned to issue: [2515](https://github.com/hackforla/website/issues/2515) at 2021-11-24 12:54 PM PST -IsaacDesigns,2021-11-28T16:41:16Z,- IsaacDesigns commented on issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-981115363) at 2021-11-28 08:41 AM PST -IsaacDesigns,2021-11-28T17:24:32Z,- IsaacDesigns commented on issue: [2449](https://github.com/hackforla/website/issues/2449#issuecomment-981121468) at 2021-11-28 09:24 AM PST -IsaacDesigns,2021-11-28T17:24:32Z,- IsaacDesigns closed issue as completed: [2449](https://github.com/hackforla/website/issues/2449#event-5681385086) at 2021-11-28 09:24 AM PST -IsaacDesigns,2021-11-28T17:55:34Z,- IsaacDesigns commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-981125753) at 2021-11-28 09:55 AM PST -IsaacDesigns,2021-11-29T03:16:08Z,- IsaacDesigns assigned to issue: [2512](https://github.com/hackforla/website/issues/2512#issuecomment-975836153) at 2021-11-28 07:16 PM PST -IsaacDesigns,2021-11-29T03:20:51Z,- IsaacDesigns commented on issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-981255429) at 2021-11-28 07:20 PM PST -IsaacDesigns,2021-11-29T23:02:55Z,- IsaacDesigns closed issue as completed: [2447](https://github.com/hackforla/website/issues/2447#event-5688204768) at 2021-11-29 03:02 PM PST -IsaacDesigns,2021-11-29T23:03:51Z,- IsaacDesigns closed issue as completed: [2446](https://github.com/hackforla/website/issues/2446#event-5688208717) at 2021-11-29 03:03 PM PST -IsaacDesigns,2021-11-29T23:04:43Z,- IsaacDesigns commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-982101942) at 2021-11-29 03:04 PM PST -IsaacDesigns,2021-11-29T23:04:43Z,- IsaacDesigns closed issue as completed: [2448](https://github.com/hackforla/website/issues/2448#event-5688212310) at 2021-11-29 03:04 PM PST -IsaacDesigns,2021-11-30T02:20:44Z,- IsaacDesigns commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-982218129) at 2021-11-29 06:20 PM PST -IsaacDesigns,2021-11-30T18:53:52Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-982922457) at 2021-11-30 10:53 AM PST -IsaacDesigns,2021-12-01T21:33:24Z,- IsaacDesigns commented on issue: [2512](https://github.com/hackforla/website/issues/2512#issuecomment-984073974) at 2021-12-01 01:33 PM PST -IsaacDesigns,2021-12-05T16:47:24Z,- IsaacDesigns closed issue as completed: [2511](https://github.com/hackforla/website/issues/2511#event-5716983950) at 2021-12-05 08:47 AM PST -IsaacDesigns,2021-12-05T16:48:02Z,- IsaacDesigns reopened issue: [2511](https://github.com/hackforla/website/issues/2511#event-5716983950) at 2021-12-05 08:48 AM PST -IsaacDesigns,2021-12-05T16:56:08Z,- IsaacDesigns commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-986264760) at 2021-12-05 08:56 AM PST -IsaacDesigns,2021-12-05T18:35:24Z,- IsaacDesigns closed issue as completed: [2511](https://github.com/hackforla/website/issues/2511#event-5717086528) at 2021-12-05 10:35 AM PST -IsaacDesigns,2021-12-06T21:15:05Z,- IsaacDesigns commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-987222753) at 2021-12-06 01:15 PM PST -IsaacDesigns,2021-12-07T15:58:21Z,- IsaacDesigns commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-988059348) at 2021-12-07 07:58 AM PST -IsaacDesigns,2021-12-08T23:52:28Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-989321070) at 2021-12-08 03:52 PM PST -IsaacDesigns,2021-12-09T00:11:58Z,- IsaacDesigns commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-989330493) at 2021-12-08 04:11 PM PST -IsaacDesigns,2021-12-09T00:14:27Z,- IsaacDesigns commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-989331647) at 2021-12-08 04:14 PM PST -IsaacDesigns,2021-12-09T19:51:29Z,- IsaacDesigns commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-990189345) at 2021-12-09 11:51 AM PST -IsaacDesigns,2021-12-09T19:51:29Z,- IsaacDesigns closed issue as completed: [2312](https://github.com/hackforla/website/issues/2312#event-5743184576) at 2021-12-09 11:51 AM PST -IsaacDesigns,2021-12-09T22:09:16Z,- IsaacDesigns commented on issue: [2370](https://github.com/hackforla/website/issues/2370#issuecomment-990331971) at 2021-12-09 02:09 PM PST -IsaacDesigns,2021-12-09T22:09:17Z,- IsaacDesigns closed issue as completed: [2370](https://github.com/hackforla/website/issues/2370#event-5743967546) at 2021-12-09 02:09 PM PST -IsaacDesigns,2021-12-09T22:20:00Z,- IsaacDesigns opened issue: [2567](https://github.com/hackforla/website/issues/2567) at 2021-12-09 02:20 PM PST -IsaacDesigns,2021-12-09T22:45:24Z,- IsaacDesigns opened issue: [2568](https://github.com/hackforla/website/issues/2568) at 2021-12-09 02:45 PM PST -IsaacDesigns,2021-12-09T22:54:18Z,- IsaacDesigns opened issue: [2569](https://github.com/hackforla/website/issues/2569) at 2021-12-09 02:54 PM PST -IsaacDesigns,2021-12-09T23:19:51Z,- IsaacDesigns opened issue: [2570](https://github.com/hackforla/website/issues/2570) at 2021-12-09 03:19 PM PST -IsaacDesigns,2021-12-09T23:22:55Z,- IsaacDesigns opened issue: [2571](https://github.com/hackforla/website/issues/2571) at 2021-12-09 03:22 PM PST -IsaacDesigns,2021-12-09T23:26:37Z,- IsaacDesigns opened issue: [2572](https://github.com/hackforla/website/issues/2572) at 2021-12-09 03:26 PM PST -IsaacDesigns,2021-12-10T00:56:47Z,- IsaacDesigns commented on issue: [2512](https://github.com/hackforla/website/issues/2512#issuecomment-990466298) at 2021-12-09 04:56 PM PST -IsaacDesigns,2021-12-10T15:24:50Z,- IsaacDesigns commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-991062828) at 2021-12-10 07:24 AM PST -IsaacDesigns,2021-12-10T15:24:50Z,- IsaacDesigns closed issue as completed: [2513](https://github.com/hackforla/website/issues/2513#event-5748467789) at 2021-12-10 07:24 AM PST -IsaacDesigns,2021-12-10T18:28:22Z,- IsaacDesigns closed issue as completed: [2512](https://github.com/hackforla/website/issues/2512#event-5749446919) at 2021-12-10 10:28 AM PST -IsaacDesigns,2021-12-10T18:37:47Z,- IsaacDesigns commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-991205036) at 2021-12-10 10:37 AM PST -IsaacDesigns,2021-12-10T18:37:47Z,- IsaacDesigns closed issue as completed: [2515](https://github.com/hackforla/website/issues/2515#event-5749490136) at 2021-12-10 10:37 AM PST -IsaacDesigns,2021-12-13T18:52:41Z,- IsaacDesigns commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-992770230) at 2021-12-13 10:52 AM PST -IsaacDesigns,2021-12-13T19:51:13Z,- IsaacDesigns assigned to issue: [2567](https://github.com/hackforla/website/issues/2567) at 2021-12-13 11:51 AM PST -IsaacDesigns,2021-12-14T19:22:19Z,- IsaacDesigns closed issue as completed: [2567](https://github.com/hackforla/website/issues/2567#event-5766467608) at 2021-12-14 11:22 AM PST -IsaacDesigns,2021-12-14T20:35:54Z,- IsaacDesigns commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-993959961) at 2021-12-14 12:35 PM PST -IsaacDesigns,2021-12-14T20:35:54Z,- IsaacDesigns closed issue as completed: [2497](https://github.com/hackforla/website/issues/2497#event-5766846479) at 2021-12-14 12:35 PM PST -IsaacDesigns,2021-12-14T20:38:02Z,- IsaacDesigns closed issue as completed: [2513](https://github.com/hackforla/website/issues/2513#event-5766860383) at 2021-12-14 12:38 PM PST -IsaacDesigns,2021-12-17T03:47:41Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-996413956) at 2021-12-16 07:47 PM PST -IsaacDesigns,2021-12-17T23:24:44Z,- IsaacDesigns opened issue: [2597](https://github.com/hackforla/website/issues/2597) at 2021-12-17 03:24 PM PST -IsaacDesigns,2021-12-18T15:37:29Z,- IsaacDesigns commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-997219230) at 2021-12-18 07:37 AM PST -IsaacDesigns,2021-12-18T15:37:29Z,- IsaacDesigns closed issue as completed: [2361](https://github.com/hackforla/website/issues/2361#event-5788132194) at 2021-12-18 07:37 AM PST -IsaacDesigns,2021-12-18T21:44:24Z,- IsaacDesigns opened issue: [2601](https://github.com/hackforla/website/issues/2601) at 2021-12-18 01:44 PM PST -IsaacDesigns,2021-12-19T01:25:12Z,- IsaacDesigns closed issue as completed: [2515](https://github.com/hackforla/website/issues/2515#event-5788632763) at 2021-12-18 05:25 PM PST -IsaacDesigns,2021-12-19T02:15:33Z,- IsaacDesigns assigned to issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-945147412) at 2021-12-18 06:15 PM PST -IsaacDesigns,2021-12-19T16:30:06Z,- IsaacDesigns commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-997421241) at 2021-12-19 08:30 AM PST -IsaacDesigns,2021-12-19T16:34:23Z,- IsaacDesigns commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-997421936) at 2021-12-19 08:34 AM PST -IsaacDesigns,2021-12-20T01:45:16Z,- IsaacDesigns assigned to issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-996413956) at 2021-12-19 05:45 PM PST -IsaacDesigns,2021-12-21T16:48:43Z,- IsaacDesigns commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-998935632) at 2021-12-21 08:48 AM PST -IsaacDesigns,2021-12-21T20:59:51Z,- IsaacDesigns opened issue: [2612](https://github.com/hackforla/website/issues/2612) at 2021-12-21 12:59 PM PST -IsaacDesigns,2021-12-21T21:03:29Z,- IsaacDesigns opened issue: [2613](https://github.com/hackforla/website/issues/2613) at 2021-12-21 01:03 PM PST -IsaacDesigns,2021-12-21T21:07:02Z,- IsaacDesigns opened issue: [2614](https://github.com/hackforla/website/issues/2614) at 2021-12-21 01:07 PM PST -IsaacDesigns,2021-12-21T21:10:48Z,- IsaacDesigns opened issue: [2615](https://github.com/hackforla/website/issues/2615) at 2021-12-21 01:10 PM PST -IsaacDesigns,2021-12-21T21:14:43Z,- IsaacDesigns opened issue: [2616](https://github.com/hackforla/website/issues/2616) at 2021-12-21 01:14 PM PST -IsaacDesigns,2021-12-21T21:16:32Z,- IsaacDesigns opened issue: [2617](https://github.com/hackforla/website/issues/2617) at 2021-12-21 01:16 PM PST -IsaacDesigns,2021-12-22T18:40:31Z,- IsaacDesigns commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-999786892) at 2021-12-22 10:40 AM PST -IsaacDesigns,2021-12-22T23:37:08Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-999941793) at 2021-12-22 03:37 PM PST -IsaacDesigns,2021-12-23T00:01:05Z,- IsaacDesigns commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-999948935) at 2021-12-22 04:01 PM PST -IsaacDesigns,2021-12-23T20:48:07Z,- IsaacDesigns commented on issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-1000517366) at 2021-12-23 12:48 PM PST -IsaacDesigns,2021-12-23T20:55:30Z,- IsaacDesigns commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1000519694) at 2021-12-23 12:55 PM PST -IsaacDesigns,2021-12-23T20:58:57Z,- IsaacDesigns commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1000520821) at 2021-12-23 12:58 PM PST -IsaacDesigns,2021-12-23T21:04:29Z,- IsaacDesigns commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1000522831) at 2021-12-23 01:04 PM PST -IsaacDesigns,2021-12-30T22:29:41Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1003200776) at 2021-12-30 02:29 PM PST -IsaacDesigns,2021-12-30T22:51:59Z,- IsaacDesigns reopened issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1000520821) at 2021-12-30 02:51 PM PST -IsaacDesigns,2021-12-30T22:54:03Z,- IsaacDesigns commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1003205133) at 2021-12-30 02:54 PM PST -IsaacDesigns,2021-12-30T22:56:31Z,- IsaacDesigns commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1003205624) at 2021-12-30 02:56 PM PST -IsaacDesigns,2021-12-30T23:36:21Z,- IsaacDesigns commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1003213006) at 2021-12-30 03:36 PM PST -IsaacDesigns,2021-12-31T18:02:34Z,- IsaacDesigns commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1003428183) at 2021-12-31 10:02 AM PST -IsaacDesigns,2021-12-31T20:24:10Z,- IsaacDesigns commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1003446588) at 2021-12-31 12:24 PM PST -IsaacDesigns,2021-12-31T20:57:07Z,- IsaacDesigns commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-1003450107) at 2021-12-31 12:57 PM PST -IsaacDesigns,2021-12-31T21:00:09Z,- IsaacDesigns closed issue as completed: [2568](https://github.com/hackforla/website/issues/2568#event-5831018872) at 2021-12-31 01:00 PM PST -IsaacDesigns,2022-01-02T18:25:36Z,- IsaacDesigns assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1003755937) at 2022-01-02 10:25 AM PST -IsaacDesigns,2022-01-05T18:22:46Z,- IsaacDesigns commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1005970422) at 2022-01-05 10:22 AM PST -IsaacDesigns,2022-01-05T19:20:00Z,- IsaacDesigns unassigned from issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1003755937) at 2022-01-05 11:20 AM PST -IsaacDesigns,2022-01-05T20:24:17Z,- IsaacDesigns unassigned from issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1003428183) at 2022-01-05 12:24 PM PST -IsaacDesigns,2022-01-05T20:26:01Z,- IsaacDesigns assigned to issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1003428183) at 2022-01-05 12:26 PM PST -IsaacDesigns,2022-01-06T00:45:52Z,- IsaacDesigns assigned to issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-997288885) at 2022-01-05 04:45 PM PST -IsaacDesigns,2022-01-06T00:51:23Z,- IsaacDesigns commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006195952) at 2022-01-05 04:51 PM PST -IsaacDesigns,2022-01-06T00:54:54Z,- IsaacDesigns commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1006197634) at 2022-01-05 04:54 PM PST -IsaacDesigns,2022-01-06T22:02:39Z,- IsaacDesigns commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1006966566) at 2022-01-06 02:02 PM PST -IsaacDesigns,2022-01-06T22:50:38Z,- IsaacDesigns commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-01-06 02:50 PM PST -IsaacDesigns,2022-01-06T23:10:38Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1007002473) at 2022-01-06 03:10 PM PST -IsaacDesigns,2022-01-06T23:29:28Z,- IsaacDesigns commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1007011621) at 2022-01-06 03:29 PM PST -IsaacDesigns,2022-01-06T23:29:28Z,- IsaacDesigns closed issue as completed: [2571](https://github.com/hackforla/website/issues/2571#event-5855089708) at 2022-01-06 03:29 PM PST -IsaacDesigns,2022-01-06T23:36:20Z,- IsaacDesigns commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1007014260) at 2022-01-06 03:36 PM PST -IsaacDesigns,2022-01-09T17:50:33Z,- IsaacDesigns reopened issue: [2654](https://github.com/hackforla/website/issues/2654#event-5855451328) at 2022-01-09 09:50 AM PST -IsaacDesigns,2022-01-09T17:51:42Z,- IsaacDesigns commented on issue: [2654](https://github.com/hackforla/website/issues/2654#issuecomment-1008344440) at 2022-01-09 09:51 AM PST -IsaacDesigns,2022-01-11T18:09:53Z,- IsaacDesigns commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1010228515) at 2022-01-11 10:09 AM PST -IsaacDesigns,2022-01-11T19:40:15Z,- IsaacDesigns opened issue: [2684](https://github.com/hackforla/website/issues/2684) at 2022-01-11 11:40 AM PST -IsaacDesigns,2022-01-11T20:06:03Z,- IsaacDesigns opened issue: [2685](https://github.com/hackforla/website/issues/2685) at 2022-01-11 12:06 PM PST -IsaacDesigns,2022-01-11T20:11:49Z,- IsaacDesigns commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1010322679) at 2022-01-11 12:11 PM PST -IsaacDesigns,2022-01-11T20:11:50Z,- IsaacDesigns closed issue as completed: [2569](https://github.com/hackforla/website/issues/2569#event-5876003720) at 2022-01-11 12:11 PM PST -IsaacDesigns,2022-01-12T20:24:03Z,- IsaacDesigns unassigned from issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-01-12 12:24 PM PST -IsaacDesigns,2022-01-13T22:11:20Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1012556888) at 2022-01-13 02:11 PM PST -IsaacDesigns,2022-01-14T15:10:14Z,- IsaacDesigns commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1013209629) at 2022-01-14 07:10 AM PST -IsaacDesigns,2022-01-16T19:39:11Z,- IsaacDesigns commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1013938672) at 2022-01-16 11:39 AM PST -IsaacDesigns,2022-01-17T15:07:47Z,- IsaacDesigns commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1014644118) at 2022-01-17 07:07 AM PST -IsaacDesigns,2022-01-17T19:55:33Z,- IsaacDesigns opened issue: [2694](https://github.com/hackforla/website/issues/2694) at 2022-01-17 11:55 AM PST -IsaacDesigns,2022-01-18T04:07:21Z,- IsaacDesigns opened issue: [2697](https://github.com/hackforla/website/issues/2697) at 2022-01-17 08:07 PM PST -IsaacDesigns,2022-01-18T04:07:21Z,- IsaacDesigns assigned to issue: [2697](https://github.com/hackforla/website/issues/2697) at 2022-01-17 08:07 PM PST -IsaacDesigns,2022-01-20T15:52:03Z,- IsaacDesigns commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1017648439) at 2022-01-20 07:52 AM PST -IsaacDesigns,2022-01-20T17:05:39Z,- IsaacDesigns commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1017723029) at 2022-01-20 09:05 AM PST -IsaacDesigns,2022-01-20T23:35:56Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1018021440) at 2022-01-20 03:35 PM PST -IsaacDesigns,2022-01-21T23:03:42Z,- IsaacDesigns commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1018927250) at 2022-01-21 03:03 PM PST -IsaacDesigns,2022-01-23T17:20:54Z,- IsaacDesigns commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1019529272) at 2022-01-23 09:20 AM PST -IsaacDesigns,2022-01-23T18:58:02Z,- IsaacDesigns commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1019545570) at 2022-01-23 10:58 AM PST -IsaacDesigns,2022-01-26T19:52:41Z,- IsaacDesigns closed issue as completed: [2572](https://github.com/hackforla/website/issues/2572#event-5959145534) at 2022-01-26 11:52 AM PST -IsaacDesigns,2022-01-26T23:09:17Z,- IsaacDesigns commented on issue: [1564](https://github.com/hackforla/website/issues/1564#issuecomment-1022686156) at 2022-01-26 03:09 PM PST -IsaacDesigns,2022-02-06T19:10:55Z,- IsaacDesigns commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1030894831) at 2022-02-06 11:10 AM PST -IsaacDesigns,2022-02-09T14:36:25Z,- IsaacDesigns commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1033827771) at 2022-02-09 06:36 AM PST -IsaacDesigns,2022-02-10T00:15:15Z,- IsaacDesigns unassigned from issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1029717143) at 2022-02-09 04:15 PM PST -IsaacDesigns,2022-02-11T00:39:39Z,- IsaacDesigns commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1035681718) at 2022-02-10 04:39 PM PST -IsaacDesigns,2022-04-14T19:50:21Z,- IsaacDesigns unassigned from issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1035681718) at 2022-04-14 12:50 PM PDT -isayakmondal,2021-11-02T07:37:09Z,- isayakmondal commented on issue: [2422](https://github.com/hackforla/website/issues/2422#issuecomment-957168119) at 2021-11-02 12:37 AM PDT -isayakmondal,2021-11-02T16:03:27Z,- isayakmondal commented on issue: [2422](https://github.com/hackforla/website/issues/2422#issuecomment-957881605) at 2021-11-02 09:03 AM PDT -Islaster,7031,SKILLS ISSUE -Islaster,2024-06-19T03:36:46Z,- Islaster opened issue: [7031](https://github.com/hackforla/website/issues/7031) at 2024-06-18 08:36 PM PDT -Islaster,2024-06-19T03:36:52Z,- Islaster assigned to issue: [7031](https://github.com/hackforla/website/issues/7031) at 2024-06-18 08:36 PM PDT -isletprogramiz,2021-10-27T06:11:45Z,- isletprogramiz commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-952573307) at 2021-10-26 11:11 PM PDT -isletprogramiz,2021-12-09T16:41:11Z,- isletprogramiz commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-990023298) at 2021-12-09 08:41 AM PST -isletprogramiz,2021-12-30T07:49:42Z,- isletprogramiz commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1002910759) at 2021-12-29 11:49 PM PST -Itav8,6545,SKILLS ISSUE -Itav8,2024-03-29T01:10:12Z,- Itav8 opened issue: [6545](https://github.com/hackforla/website/issues/6545) at 2024-03-28 06:10 PM PDT -Itav8,2024-03-29T02:10:14Z,- Itav8 assigned to issue: [6545](https://github.com/hackforla/website/issues/6545) at 2024-03-28 07:10 PM PDT -itazurakozo,7330,SKILLS ISSUE -itazurakozo,2024-08-21T03:05:24Z,- itazurakozo opened issue: [7330](https://github.com/hackforla/website/issues/7330) at 2024-08-20 08:05 PM PDT -itazurakozo,2024-08-21T03:05:59Z,- itazurakozo assigned to issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2300457785) at 2024-08-20 08:05 PM PDT -itazurakozo,2024-08-21T03:18:40Z,- itazurakozo commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2300508837) at 2024-08-20 08:18 PM PDT -its-chowtime,2021-08-18T02:51:09Z,- its-chowtime assigned to issue: [1562](https://github.com/hackforla/website/issues/1562) at 2021-08-17 07:51 PM PDT -its-chowtime,2021-08-26T19:20:05Z,- its-chowtime unassigned from issue: [1562](https://github.com/hackforla/website/issues/1562#issuecomment-902480780) at 2021-08-26 12:20 PM PDT -its-chowtime,2021-09-01T01:39:10Z,- its-chowtime assigned to issue: [2163](https://github.com/hackforla/website/issues/2163#issuecomment-904202293) at 2021-08-31 06:39 PM PDT -its-chowtime,2021-09-14T21:54:54Z,- its-chowtime opened pull request: [2261](https://github.com/hackforla/website/pull/2261) at 2021-09-14 02:54 PM PDT -its-chowtime,2021-09-15T04:13:25Z,- its-chowtime pull request merged: [2261](https://github.com/hackforla/website/pull/2261#event-5303310577) at 2021-09-14 09:13 PM PDT -itserindean,2023-02-07T02:06:16Z,- itserindean commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1420071200) at 2023-02-06 06:06 PM PST -itserindean,2023-02-07T02:13:51Z,- itserindean commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420087532) at 2023-02-06 06:13 PM PST -itserindean,2023-03-22T22:04:23Z,- itserindean opened issue: [4248](https://github.com/hackforla/website/issues/4248) at 2023-03-22 03:04 PM PDT -itsjoycelee,2020-03-18T02:16:59Z,- itsjoycelee assigned to issue: [409](https://github.com/hackforla/website/issues/409) at 2020-03-17 07:16 PM PDT -itsjoycelee,2020-03-18T02:17:39Z,- itsjoycelee commented on issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-600389893) at 2020-03-17 07:17 PM PDT -itsjoycelee,2020-03-18T02:18:33Z,- itsjoycelee closed issue as completed: [409](https://github.com/hackforla/website/issues/409#event-3139701344) at 2020-03-17 07:18 PM PDT -itsjoycelee,2020-03-18T02:18:40Z,- itsjoycelee reopened issue: [409](https://github.com/hackforla/website/issues/409#event-3139701344) at 2020-03-17 07:18 PM PDT -itsjoycelee,2020-03-18T02:19:03Z,- itsjoycelee closed issue as completed: [409](https://github.com/hackforla/website/issues/409#event-3139702256) at 2020-03-17 07:19 PM PDT -itsjoycelee,2020-04-07T21:53:45Z,- itsjoycelee unassigned from issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610639330) at 2020-04-07 02:53 PM PDT -ItsLaszlo,2020-12-30T04:10:35Z,- ItsLaszlo assigned to issue: [892](https://github.com/hackforla/website/issues/892) at 2020-12-29 08:10 PM PST -ItsLaszlo,2020-12-30T18:02:59Z,- ItsLaszlo opened pull request: [899](https://github.com/hackforla/website/pull/899) at 2020-12-30 10:02 AM PST -ItsLaszlo,2020-12-30T18:07:54Z,- ItsLaszlo assigned to issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-12-30 10:07 AM PST -ItsLaszlo,2020-12-31T21:23:21Z,- ItsLaszlo opened pull request: [900](https://github.com/hackforla/website/pull/900) at 2020-12-31 01:23 PM PST -ItsLaszlo,2021-01-01T01:00:08Z,- ItsLaszlo pull request merged: [900](https://github.com/hackforla/website/pull/900#event-4160514356) at 2020-12-31 05:00 PM PST -ItsLaszlo,2021-01-01T01:53:05Z,- ItsLaszlo pull request merged: [899](https://github.com/hackforla/website/pull/899#event-4160540236) at 2020-12-31 05:53 PM PST -ItsLaszlo,2021-01-06T18:21:43Z,- ItsLaszlo opened pull request: [919](https://github.com/hackforla/website/pull/919) at 2021-01-06 10:21 AM PST -ItsLaszlo,2021-01-06T19:19:28Z,- ItsLaszlo assigned to issue: [917](https://github.com/hackforla/website/issues/917) at 2021-01-06 11:19 AM PST -ItsLaszlo,2021-01-06T19:41:17Z,- ItsLaszlo opened pull request: [920](https://github.com/hackforla/website/pull/920) at 2021-01-06 11:41 AM PST -ItsLaszlo,2021-01-06T19:47:30Z,- ItsLaszlo pull request closed w/o merging: [920](https://github.com/hackforla/website/pull/920#event-4176768607) at 2021-01-06 11:47 AM PST -ItsLaszlo,2021-01-06T19:59:45Z,- ItsLaszlo commented on issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-755604285) at 2021-01-06 11:59 AM PST -ItsLaszlo,2021-01-06T20:29:33Z,- ItsLaszlo opened issue: [921](https://github.com/hackforla/website/issues/921) at 2021-01-06 12:29 PM PST -ItsLaszlo,2021-01-06T20:31:55Z,- ItsLaszlo commented on issue: [921](https://github.com/hackforla/website/issues/921#issuecomment-755648877) at 2021-01-06 12:31 PM PST -ItsLaszlo,2021-01-09T16:38:27Z,- ItsLaszlo assigned to issue: [921](https://github.com/hackforla/website/issues/921#issuecomment-755648877) at 2021-01-09 08:38 AM PST -ItsLaszlo,2021-01-10T00:55:48Z,- ItsLaszlo commented on issue: [917](https://github.com/hackforla/website/issues/917#issuecomment-757392567) at 2021-01-09 04:55 PM PST -ItsLaszlo,2021-01-10T19:57:29Z,- ItsLaszlo pull request merged: [919](https://github.com/hackforla/website/pull/919#event-4188374487) at 2021-01-10 11:57 AM PST -ItsLaszlo,2021-01-10T20:23:21Z,- ItsLaszlo submitted pull request review: [924](https://github.com/hackforla/website/pull/924#pullrequestreview-564897469) at 2021-01-10 12:23 PM PST -ItsLaszlo,2021-01-11T02:26:33Z,- ItsLaszlo submitted pull request review: [929](https://github.com/hackforla/website/pull/929#pullrequestreview-564940256) at 2021-01-10 06:26 PM PST -ItsLaszlo,2021-01-11T19:13:39Z,- ItsLaszlo opened pull request: [930](https://github.com/hackforla/website/pull/930) at 2021-01-11 11:13 AM PST -ItsLaszlo,2021-01-11T19:31:17Z,- ItsLaszlo pull request closed w/o merging: [930](https://github.com/hackforla/website/pull/930#event-4192445929) at 2021-01-11 11:31 AM PST -ItsLaszlo,2021-01-11T19:54:16Z,- ItsLaszlo opened pull request: [931](https://github.com/hackforla/website/pull/931) at 2021-01-11 11:54 AM PST -ItsLaszlo,2021-01-11T21:37:32Z,- ItsLaszlo assigned to issue: [830](https://github.com/hackforla/website/issues/830) at 2021-01-11 01:37 PM PST -ItsLaszlo,2021-01-12T04:55:09Z,- ItsLaszlo pull request merged: [931](https://github.com/hackforla/website/pull/931#event-4193984475) at 2021-01-11 08:55 PM PST -ItsLaszlo,2021-01-13T00:10:57Z,- ItsLaszlo submitted pull request review: [929](https://github.com/hackforla/website/pull/929#pullrequestreview-566801591) at 2021-01-12 04:10 PM PST -ItsLaszlo,2021-01-15T01:08:36Z,- ItsLaszlo opened pull request: [941](https://github.com/hackforla/website/pull/941) at 2021-01-14 05:08 PM PST -ItsLaszlo,2021-01-15T02:50:08Z,- ItsLaszlo commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-760609983) at 2021-01-14 06:50 PM PST -ItsLaszlo,2021-01-15T19:30:06Z,- ItsLaszlo submitted pull request review: [942](https://github.com/hackforla/website/pull/942#pullrequestreview-569561011) at 2021-01-15 11:30 AM PST -ItsLaszlo,2021-01-17T18:14:38Z,- ItsLaszlo opened pull request: [945](https://github.com/hackforla/website/pull/945) at 2021-01-17 10:14 AM PST -ItsLaszlo,2021-01-17T19:07:15Z,- ItsLaszlo assigned to issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-716204383) at 2021-01-17 11:07 AM PST -ItsLaszlo,2021-01-18T17:57:55Z,- ItsLaszlo commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-762396878) at 2021-01-18 09:57 AM PST -ItsLaszlo,2021-01-22T18:42:54Z,- ItsLaszlo submitted pull request review: [944](https://github.com/hackforla/website/pull/944#pullrequestreview-574523937) at 2021-01-22 10:42 AM PST -ItsLaszlo,2021-01-22T18:53:42Z,- ItsLaszlo commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-765617896) at 2021-01-22 10:53 AM PST -ItsLaszlo,2021-01-22T19:24:35Z,- ItsLaszlo pull request merged: [945](https://github.com/hackforla/website/pull/945#event-4240060883) at 2021-01-22 11:24 AM PST -ItsLaszlo,2021-01-24T08:06:15Z,- ItsLaszlo commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-766308742) at 2021-01-24 12:06 AM PST -ItsLaszlo,2021-01-24T17:36:58Z,- ItsLaszlo commented on issue: [830](https://github.com/hackforla/website/issues/830#issuecomment-766400029) at 2021-01-24 09:36 AM PST -ItsLaszlo,2021-01-25T18:25:13Z,- ItsLaszlo commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-767018853) at 2021-01-25 10:25 AM PST -ItsLaszlo,2021-01-27T03:17:00Z,- ItsLaszlo pull request merged: [941](https://github.com/hackforla/website/pull/941#event-4253734812) at 2021-01-26 07:17 PM PST -ItsLaszlo,2021-01-30T00:01:15Z,- ItsLaszlo opened pull request: [977](https://github.com/hackforla/website/pull/977) at 2021-01-29 04:01 PM PST -ItsLaszlo,2021-01-31T17:54:59Z,- ItsLaszlo commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-770421827) at 2021-01-31 09:54 AM PST -ItsLaszlo,2021-02-04T00:40:37Z,- ItsLaszlo assigned to issue: [935](https://github.com/hackforla/website/issues/935) at 2021-02-03 04:40 PM PST -ItsLaszlo,2021-02-05T18:49:12Z,- ItsLaszlo commented on pull request: [977](https://github.com/hackforla/website/pull/977#issuecomment-774220167) at 2021-02-05 10:49 AM PST -ItsLaszlo,2021-02-07T18:12:48Z,- ItsLaszlo commented on pull request: [977](https://github.com/hackforla/website/pull/977#issuecomment-774724448) at 2021-02-07 10:12 AM PST -ItsLaszlo,2021-02-10T03:13:46Z,- ItsLaszlo commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-776408207) at 2021-02-09 07:13 PM PST -ItsLaszlo,2021-02-10T03:14:37Z,- ItsLaszlo commented on pull request: [977](https://github.com/hackforla/website/pull/977#issuecomment-776408475) at 2021-02-09 07:14 PM PST -ItsLaszlo,2021-02-10T03:45:54Z,- ItsLaszlo assigned to issue: [1027](https://github.com/hackforla/website/issues/1027) at 2021-02-09 07:45 PM PST -ItsLaszlo,2021-02-10T04:32:36Z,- ItsLaszlo pull request merged: [977](https://github.com/hackforla/website/pull/977#event-4312748022) at 2021-02-09 08:32 PM PST -ItsLaszlo,2021-02-12T23:38:46Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-778514210) at 2021-02-12 03:38 PM PST -ItsLaszlo,2021-02-17T03:21:51Z,- ItsLaszlo commented on pull request: [1059](https://github.com/hackforla/website/pull/1059#issuecomment-780270057) at 2021-02-16 07:21 PM PST -ItsLaszlo,2021-02-17T03:22:10Z,- ItsLaszlo closed issue by PR 1059: [1043](https://github.com/hackforla/website/issues/1043#event-4339263287) at 2021-02-16 07:22 PM PST -ItsLaszlo,2021-02-17T03:46:36Z,- ItsLaszlo commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780277146) at 2021-02-16 07:46 PM PST -ItsLaszlo,2021-02-21T16:47:35Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-782887140) at 2021-02-21 08:47 AM PST -ItsLaszlo,2021-02-28T17:57:41Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-787492668) at 2021-02-28 09:57 AM PST -ItsLaszlo,2021-02-28T19:06:28Z,- ItsLaszlo assigned to issue: [947](https://github.com/hackforla/website/issues/947) at 2021-02-28 11:06 AM PST -ItsLaszlo,2021-02-28T20:08:17Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-787514084) at 2021-02-28 12:08 PM PST -ItsLaszlo,2021-02-28T20:20:46Z,- ItsLaszlo opened issue: [1139](https://github.com/hackforla/website/issues/1139) at 2021-02-28 12:20 PM PST -ItsLaszlo,2021-02-28T20:29:29Z,- ItsLaszlo assigned to issue: [1118](https://github.com/hackforla/website/issues/1118#issuecomment-787488934) at 2021-02-28 12:29 PM PST -ItsLaszlo,2021-03-01T18:33:58Z,- ItsLaszlo submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-601045084) at 2021-03-01 10:33 AM PST -ItsLaszlo,2021-03-01T21:30:49Z,- ItsLaszlo opened pull request: [1145](https://github.com/hackforla/website/pull/1145) at 2021-03-01 01:30 PM PST -ItsLaszlo,2021-03-01T23:35:49Z,- ItsLaszlo pull request merged: [1145](https://github.com/hackforla/website/pull/1145#event-4392616242) at 2021-03-01 03:35 PM PST -ItsLaszlo,2021-03-02T02:17:56Z,- ItsLaszlo submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-601347068) at 2021-03-01 06:17 PM PST -ItsLaszlo,2021-03-02T02:30:25Z,- ItsLaszlo commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-788528644) at 2021-03-01 06:30 PM PST -ItsLaszlo,2021-03-03T01:45:34Z,- ItsLaszlo assigned to issue: [1154](https://github.com/hackforla/website/issues/1154) at 2021-03-02 05:45 PM PST -ItsLaszlo,2021-03-03T02:51:03Z,- ItsLaszlo opened issue: [1155](https://github.com/hackforla/website/issues/1155) at 2021-03-02 06:51 PM PST -ItsLaszlo,2021-03-03T02:51:53Z,- ItsLaszlo commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-789387219) at 2021-03-02 06:51 PM PST -ItsLaszlo,2021-03-03T03:09:08Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-789393225) at 2021-03-02 07:09 PM PST -ItsLaszlo,2021-03-03T03:39:20Z,- ItsLaszlo commented on pull request: [1100](https://github.com/hackforla/website/pull/1100#issuecomment-789403768) at 2021-03-02 07:39 PM PST -ItsLaszlo,2021-03-03T03:39:26Z,- ItsLaszlo closed issue by PR 1100: [1069](https://github.com/hackforla/website/issues/1069#event-4399315361) at 2021-03-02 07:39 PM PST -ItsLaszlo,2021-03-03T18:16:47Z,- ItsLaszlo opened pull request: [1158](https://github.com/hackforla/website/pull/1158) at 2021-03-03 10:16 AM PST -ItsLaszlo,2021-03-07T10:45:07Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-792255623) at 2021-03-07 02:45 AM PST -ItsLaszlo,2021-03-08T21:13:41Z,- ItsLaszlo commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-793082039) at 2021-03-08 01:13 PM PST -ItsLaszlo,2021-03-08T21:14:40Z,- ItsLaszlo closed issue by PR 1132: [1060](https://github.com/hackforla/website/issues/1060#event-4423618647) at 2021-03-08 01:14 PM PST -ItsLaszlo,2021-03-08T21:14:40Z,- ItsLaszlo closed issue by PR 1132: [1066](https://github.com/hackforla/website/issues/1066#event-4423618644) at 2021-03-08 01:14 PM PST -ItsLaszlo,2021-03-10T03:23:14Z,- ItsLaszlo pull request merged: [1158](https://github.com/hackforla/website/pull/1158#event-4433085864) at 2021-03-09 07:23 PM PST -ItsLaszlo,2021-03-10T18:51:06Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-795904141) at 2021-03-10 10:51 AM PST -ItsLaszlo,2021-03-10T18:53:02Z,- ItsLaszlo commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-795906763) at 2021-03-10 10:53 AM PST -ItsLaszlo,2021-03-14T16:42:56Z,- ItsLaszlo commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-798938725) at 2021-03-14 09:42 AM PDT -ItsLaszlo,2021-04-02T04:54:01Z,- ItsLaszlo unassigned from issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-808921555) at 2021-04-01 09:54 PM PDT -ItsLaszlo,2021-04-02T17:31:51Z,- ItsLaszlo submitted pull request review: [1344](https://github.com/hackforla/website/pull/1344#pullrequestreview-627139765) at 2021-04-02 10:31 AM PDT -ItsLaszlo,2021-04-02T17:33:21Z,- ItsLaszlo closed issue by PR 1344: [1258](https://github.com/hackforla/website/issues/1258#event-4546475799) at 2021-04-02 10:33 AM PDT -ItsLaszlo,2021-04-06T03:46:29Z,- ItsLaszlo submitted pull request review: [1355](https://github.com/hackforla/website/pull/1355#pullrequestreview-628550024) at 2021-04-05 08:46 PM PDT -ItsLaszlo,2021-04-06T04:17:15Z,- ItsLaszlo commented on pull request: [1350](https://github.com/hackforla/website/pull/1350#issuecomment-813809442) at 2021-04-05 09:17 PM PDT -ItsLaszlo,2021-04-14T04:22:02Z,- ItsLaszlo commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819217282) at 2021-04-13 09:22 PM PDT -ItsLaszlo,2021-04-14T04:22:35Z,- ItsLaszlo unassigned from issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819217282) at 2021-04-13 09:22 PM PDT -iuddin,4320,SKILLS ISSUE -iuddin,2023-03-29T03:34:31Z,- iuddin opened issue: [4320](https://github.com/hackforla/website/issues/4320) at 2023-03-28 08:34 PM PDT -iuddin,2023-03-29T03:35:00Z,- iuddin assigned to issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1487898509) at 2023-03-28 08:35 PM PDT -iuddin,2023-04-11T00:13:09Z,- iuddin assigned to issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1493585195) at 2023-04-10 05:13 PM PDT -iuddin,2023-05-15T03:27:47Z,- iuddin unassigned from issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1547140586) at 2023-05-14 08:27 PM PDT -iuddin,2023-05-26T06:43:53Z,- iuddin commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1563884176) at 2023-05-25 11:43 PM PDT -ivan20203,4974,SKILLS ISSUE -ivan20203,2023-07-18T01:54:07Z,- ivan20203 opened issue: [4974](https://github.com/hackforla/website/issues/4974) at 2023-07-17 06:54 PM PDT -ivan20203,2023-07-18T01:54:22Z,- ivan20203 assigned to issue: [4974](https://github.com/hackforla/website/issues/4974) at 2023-07-17 06:54 PM PDT -ivan20203,2023-07-28T21:36:40Z,- ivan20203 assigned to issue: [4803](https://github.com/hackforla/website/issues/4803) at 2023-07-28 02:36 PM PDT -ivan20203,2023-07-28T22:01:40Z,- ivan20203 commented on issue: [4803](https://github.com/hackforla/website/issues/4803#issuecomment-1656374614) at 2023-07-28 03:01 PM PDT -ivan20203,2023-07-28T22:03:34Z,- ivan20203 commented on issue: [4803](https://github.com/hackforla/website/issues/4803#issuecomment-1656375833) at 2023-07-28 03:03 PM PDT -ivan20203,2023-07-29T00:01:38Z,- ivan20203 opened pull request: [5111](https://github.com/hackforla/website/pull/5111) at 2023-07-28 05:01 PM PDT -ivan20203,2023-07-30T17:44:35Z,- ivan20203 commented on pull request: [5111](https://github.com/hackforla/website/pull/5111#issuecomment-1657228794) at 2023-07-30 10:44 AM PDT -ivan20203,2023-07-30T18:47:52Z,- ivan20203 pull request merged: [5111](https://github.com/hackforla/website/pull/5111#event-9957228352) at 2023-07-30 11:47 AM PDT -ivan20203,2023-08-04T19:20:33Z,- ivan20203 assigned to issue: [5139](https://github.com/hackforla/website/issues/5139) at 2023-08-04 12:20 PM PDT -ivan20203,2023-08-04T19:24:18Z,- ivan20203 commented on issue: [5139](https://github.com/hackforla/website/issues/5139#issuecomment-1666072432) at 2023-08-04 12:24 PM PDT -ivan20203,2023-08-04T20:54:38Z,- ivan20203 opened pull request: [5142](https://github.com/hackforla/website/pull/5142) at 2023-08-04 01:54 PM PDT -ivan20203,2023-08-06T01:50:04Z,- ivan20203 pull request merged: [5142](https://github.com/hackforla/website/pull/5142#event-10016391298) at 2023-08-05 06:50 PM PDT -ivan20203,2023-08-08T19:02:51Z,- ivan20203 assigned to issue: [5020](https://github.com/hackforla/website/issues/5020#issuecomment-1641423041) at 2023-08-08 12:02 PM PDT -ivan20203,2023-08-08T19:06:09Z,- ivan20203 commented on issue: [5020](https://github.com/hackforla/website/issues/5020#issuecomment-1670145127) at 2023-08-08 12:06 PM PDT -izma-mujeeb,7030,SKILLS ISSUE -izma-mujeeb,2024-06-19T03:17:25Z,- izma-mujeeb opened issue: [7030](https://github.com/hackforla/website/issues/7030) at 2024-06-18 08:17 PM PDT -izma-mujeeb,2024-06-19T03:18:53Z,- izma-mujeeb assigned to issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2177466881) at 2024-06-18 08:18 PM PDT -izma-mujeeb,2024-06-24T15:41:33Z,- izma-mujeeb assigned to issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2183286778) at 2024-06-24 08:41 AM PDT -izma-mujeeb,2024-06-24T16:28:53Z,- izma-mujeeb commented on issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2186966267) at 2024-06-24 09:28 AM PDT -izma-mujeeb,2024-06-27T16:35:02Z,- izma-mujeeb opened pull request: [7071](https://github.com/hackforla/website/pull/7071) at 2024-06-27 09:35 AM PDT -izma-mujeeb,2024-06-27T16:44:25Z,- izma-mujeeb pull request closed w/o merging: [7071](https://github.com/hackforla/website/pull/7071#event-13320435172) at 2024-06-27 09:44 AM PDT -izma-mujeeb,2024-06-27T17:18:53Z,- izma-mujeeb reopened pull request: [7071](https://github.com/hackforla/website/pull/7071#event-13320435172) at 2024-06-27 10:18 AM PDT -izma-mujeeb,2024-06-27T18:07:40Z,- izma-mujeeb commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195362618) at 2024-06-27 11:07 AM PDT -izma-mujeeb,2024-06-27T18:52:17Z,- izma-mujeeb pull request closed w/o merging: [7071](https://github.com/hackforla/website/pull/7071#event-13322201343) at 2024-06-27 11:52 AM PDT -izma-mujeeb,2024-07-02T18:06:18Z,- izma-mujeeb commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2203989241) at 2024-07-02 11:06 AM PDT -izma-mujeeb,2024-08-14T01:04:55Z,- izma-mujeeb commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2287579288) at 2024-08-13 06:04 PM PDT -izma-mujeeb,2024-08-14T01:06:39Z,- izma-mujeeb assigned to issue: [7253](https://github.com/hackforla/website/issues/7253) at 2024-08-13 06:06 PM PDT -izma-mujeeb,2024-08-14T01:08:51Z,- izma-mujeeb commented on issue: [7253](https://github.com/hackforla/website/issues/7253#issuecomment-2287588177) at 2024-08-13 06:08 PM PDT -izma-mujeeb,2024-08-16T22:49:57Z,- izma-mujeeb opened pull request: [7306](https://github.com/hackforla/website/pull/7306) at 2024-08-16 03:49 PM PDT -izma-mujeeb,2024-08-22T19:12:19Z,- izma-mujeeb pull request merged: [7306](https://github.com/hackforla/website/pull/7306#event-13982945287) at 2024-08-22 12:12 PM PDT -izma-mujeeb,2024-08-28T03:24:09Z,- izma-mujeeb assigned to issue: [7287](https://github.com/hackforla/website/issues/7287) at 2024-08-27 08:24 PM PDT -izma-mujeeb,2024-08-28T03:25:14Z,- izma-mujeeb commented on issue: [7287](https://github.com/hackforla/website/issues/7287#issuecomment-2314125005) at 2024-08-27 08:25 PM PDT -izma-mujeeb,2024-08-31T02:23:56Z,- izma-mujeeb opened pull request: [7371](https://github.com/hackforla/website/pull/7371) at 2024-08-30 07:23 PM PDT -izma-mujeeb,2024-08-31T20:43:51Z,- izma-mujeeb commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2323038789) at 2024-08-31 01:43 PM PDT -izma-mujeeb,2024-09-04T22:10:40Z,- izma-mujeeb pull request merged: [7371](https://github.com/hackforla/website/pull/7371#event-14138152608) at 2024-09-04 03:10 PM PDT -izma-mujeeb,2024-09-06T17:48:17Z,- izma-mujeeb assigned to issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2308043583) at 2024-09-06 10:48 AM PDT -izma-mujeeb,2024-09-06T17:49:48Z,- izma-mujeeb commented on issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2334550237) at 2024-09-06 10:49 AM PDT -izma-mujeeb,2024-09-10T02:36:58Z,- izma-mujeeb opened pull request: [7427](https://github.com/hackforla/website/pull/7427) at 2024-09-09 07:36 PM PDT -izma-mujeeb,2024-09-11T17:50:05Z,- izma-mujeeb pull request merged: [7427](https://github.com/hackforla/website/pull/7427#event-14220457353) at 2024-09-11 10:50 AM PDT -izma-mujeeb,2024-09-15T01:42:02Z,- izma-mujeeb assigned to issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2292617588) at 2024-09-14 06:42 PM PDT -izma-mujeeb,2024-09-15T01:44:19Z,- izma-mujeeb commented on issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2351279968) at 2024-09-14 06:44 PM PDT -izma-mujeeb,2024-09-17T01:46:49Z,- izma-mujeeb opened pull request: [7466](https://github.com/hackforla/website/pull/7466) at 2024-09-16 06:46 PM PDT -izma-mujeeb,2024-09-19T03:07:39Z,- izma-mujeeb pull request merged: [7466](https://github.com/hackforla/website/pull/7466#event-14317096581) at 2024-09-18 08:07 PM PDT -izma-mujeeb,2024-09-23T01:55:06Z,- izma-mujeeb assigned to issue: [7442](https://github.com/hackforla/website/issues/7442) at 2024-09-22 06:55 PM PDT -izma-mujeeb,2024-09-23T01:55:22Z,- izma-mujeeb unassigned from issue: [7442](https://github.com/hackforla/website/issues/7442) at 2024-09-22 06:55 PM PDT -izma-mujeeb,2024-09-25T02:51:22Z,- izma-mujeeb commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2372784686) at 2024-09-24 07:51 PM PDT -izma-mujeeb,2024-09-25T02:54:12Z,- izma-mujeeb assigned to issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2364764798) at 2024-09-24 07:54 PM PDT -izma-mujeeb,2024-09-25T02:54:29Z,- izma-mujeeb unassigned from issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2364764798) at 2024-09-24 07:54 PM PDT -izma-mujeeb,2024-09-25T02:55:54Z,- izma-mujeeb assigned to issue: [7495](https://github.com/hackforla/website/issues/7495) at 2024-09-24 07:55 PM PDT -izma-mujeeb,2024-10-01T00:41:30Z,- izma-mujeeb unassigned from issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2372800389) at 2024-09-30 05:41 PM PDT -izma-mujeeb,2024-10-01T00:42:03Z,- izma-mujeeb assigned to issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2351214806) at 2024-09-30 05:42 PM PDT -izma-mujeeb,2024-10-01T00:43:11Z,- izma-mujeeb commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2384561326) at 2024-09-30 05:43 PM PDT -izma-mujeeb,2024-10-08T00:22:50Z,- izma-mujeeb opened pull request: [7569](https://github.com/hackforla/website/pull/7569) at 2024-10-07 05:22 PM PDT -izma-mujeeb,2024-10-16T21:12:17Z,- izma-mujeeb commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2417974030) at 2024-10-16 02:12 PM PDT -izma-mujeeb,2024-11-01T02:38:03Z,- izma-mujeeb commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2451184917) at 2024-10-31 07:38 PM PDT -izma-mujeeb,2024-11-05T01:49:36Z,- izma-mujeeb opened pull request: [7691](https://github.com/hackforla/website/pull/7691) at 2024-11-04 05:49 PM PST -izma-mujeeb,2024-11-05T02:02:37Z,- izma-mujeeb pull request closed w/o merging: [7691](https://github.com/hackforla/website/pull/7691#event-15112746259) at 2024-11-04 06:02 PM PST -izma-mujeeb,2025-01-11T03:17:49Z,- izma-mujeeb commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2585041610) at 2025-01-10 07:17 PM PST -j-m-rodriguez,7201,SKILLS ISSUE -j-m-rodriguez,2024-08-06T02:54:38Z,- j-m-rodriguez opened issue: [7201](https://github.com/hackforla/website/issues/7201) at 2024-08-05 07:54 PM PDT -j-m-rodriguez,2024-08-06T02:54:42Z,- j-m-rodriguez assigned to issue: [7201](https://github.com/hackforla/website/issues/7201) at 2024-08-05 07:54 PM PDT -j-m-rodriguez,2024-08-07T01:49:22Z,- j-m-rodriguez commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2272464935) at 2024-08-06 06:49 PM PDT -j-m-rodriguez,2024-08-07T01:53:13Z,- j-m-rodriguez commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2272468876) at 2024-08-06 06:53 PM PDT -j-m-rodriguez,2024-08-07T02:27:13Z,- j-m-rodriguez commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2272497329) at 2024-08-06 07:27 PM PDT -j100892,2020-12-05T01:18:19Z,- j100892 commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-04 05:18 PM PST -j100892,2020-12-23T03:25:28Z,- j100892 commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-749906319) at 2020-12-22 07:25 PM PST -j100892,2021-01-11T16:11:15Z,- j100892 assigned to issue: [949](https://github.com/hackforla/website/issues/949) at 2021-01-11 08:11 AM PST -j100892,2021-01-15T02:35:50Z,- j100892 commented on issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-760605527) at 2021-01-14 06:35 PM PST -j100892,2021-01-19T15:30:16Z,- j100892 unassigned from issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762915062) at 2021-01-19 07:30 AM PST -jaasonw,5635,SKILLS ISSUE -jaasonw,2023-09-30T02:42:35Z,- jaasonw opened issue: [5635](https://github.com/hackforla/website/issues/5635) at 2023-09-29 07:42 PM PDT -jaasonw,2023-10-01T22:44:05Z,- jaasonw assigned to issue: [5635](https://github.com/hackforla/website/issues/5635) at 2023-10-01 03:44 PM PDT -jaasonw,2023-10-02T00:57:04Z,- jaasonw assigned to issue: [5318](https://github.com/hackforla/website/issues/5318#issuecomment-1694736805) at 2023-10-01 05:57 PM PDT -jaasonw,2023-10-02T01:08:10Z,- jaasonw assigned to issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1738367332) at 2023-10-01 06:08 PM PDT -jaasonw,2023-10-02T01:08:31Z,- jaasonw unassigned from issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1738367332) at 2023-10-01 06:08 PM PDT -jaasonw,2023-10-02T01:11:28Z,- jaasonw commented on issue: [5318](https://github.com/hackforla/website/issues/5318#issuecomment-1742277950) at 2023-10-01 06:11 PM PDT -jaasonw,2023-10-02T02:54:12Z,- jaasonw commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1742336269) at 2023-10-01 07:54 PM PDT -jaasonw,2023-10-02T03:15:09Z,- jaasonw submitted pull request review: [5258](https://github.com/hackforla/website/pull/5258#pullrequestreview-1652060748) at 2023-10-01 08:15 PM PDT -jaasonw,2023-10-03T09:30:31Z,- jaasonw opened pull request: [5649](https://github.com/hackforla/website/pull/5649) at 2023-10-03 02:30 AM PDT -jaasonw,2023-10-03T09:31:38Z,- jaasonw submitted pull request review: [5646](https://github.com/hackforla/website/pull/5646#pullrequestreview-1654770585) at 2023-10-03 02:31 AM PDT -jaasonw,2023-10-03T09:39:43Z,- jaasonw submitted pull request review: [5645](https://github.com/hackforla/website/pull/5645#pullrequestreview-1654784836) at 2023-10-03 02:39 AM PDT -jaasonw,2023-10-03T11:25:16Z,- jaasonw opened issue: [5650](https://github.com/hackforla/website/issues/5650) at 2023-10-03 04:25 AM PDT -jaasonw,2023-10-03T18:33:41Z,- jaasonw opened issue: [5654](https://github.com/hackforla/website/issues/5654) at 2023-10-03 11:33 AM PDT -jaasonw,2023-10-04T03:32:46Z,- jaasonw assigned to issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1746062791) at 2023-10-03 08:32 PM PDT -jaasonw,2023-10-04T19:41:20Z,- jaasonw submitted pull request review: [5645](https://github.com/hackforla/website/pull/5645#pullrequestreview-1658360227) at 2023-10-04 12:41 PM PDT -jaasonw,2023-10-10T02:12:48Z,- jaasonw opened issue: [5691](https://github.com/hackforla/website/issues/5691) at 2023-10-09 07:12 PM PDT -jaasonw,2023-10-10T11:25:11Z,- jaasonw commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1755124787) at 2023-10-10 04:25 AM PDT -jaasonw,2023-10-10T11:26:50Z,- jaasonw pull request closed w/o merging: [5649](https://github.com/hackforla/website/pull/5649#event-10603077425) at 2023-10-10 04:26 AM PDT -jaasonw,2023-10-10T11:27:09Z,- jaasonw reopened pull request: [5649](https://github.com/hackforla/website/pull/5649#event-10603077425) at 2023-10-10 04:27 AM PDT -jaasonw,2023-10-10T11:42:59Z,- jaasonw commented on pull request: [5649](https://github.com/hackforla/website/pull/5649#issuecomment-1755173684) at 2023-10-10 04:42 AM PDT -jaasonw,2023-10-11T02:33:48Z,- jaasonw opened pull request: [5702](https://github.com/hackforla/website/pull/5702) at 2023-10-10 07:33 PM PDT -jaasonw,2023-10-11T02:35:33Z,- jaasonw pull request closed w/o merging: [5649](https://github.com/hackforla/website/pull/5649#event-10612264005) at 2023-10-10 07:35 PM PDT -jaasonw,2023-10-15T16:08:12Z,- jaasonw pull request merged: [5702](https://github.com/hackforla/website/pull/5702#event-10657972362) at 2023-10-15 09:08 AM PDT -jaasonw,2023-10-15T18:09:34Z,- jaasonw closed issue as completed: [5635](https://github.com/hackforla/website/issues/5635#event-10658181970) at 2023-10-15 11:09 AM PDT -jaasonw,2023-10-15T21:42:26Z,- jaasonw commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1763511732) at 2023-10-15 02:42 PM PDT -jaasonw,2023-10-17T10:42:59Z,- jaasonw assigned to issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1761018592) at 2023-10-17 03:42 AM PDT -jaasonw,2023-10-17T10:43:39Z,- jaasonw commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1766154491) at 2023-10-17 03:43 AM PDT -jaasonw,2023-10-17T18:26:28Z,- jaasonw opened pull request: [5731](https://github.com/hackforla/website/pull/5731) at 2023-10-17 11:26 AM PDT -jaasonw,2023-10-17T18:54:51Z,- jaasonw commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1766984833) at 2023-10-17 11:54 AM PDT -jaasonw,2023-10-17T19:03:01Z,- jaasonw submitted pull request review: [5719](https://github.com/hackforla/website/pull/5719#pullrequestreview-1683156086) at 2023-10-17 12:03 PM PDT -jaasonw,2023-10-17T19:15:28Z,- jaasonw submitted pull request review: [5668](https://github.com/hackforla/website/pull/5668#pullrequestreview-1683183903) at 2023-10-17 12:15 PM PDT -jaasonw,2023-10-19T06:15:33Z,- jaasonw commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1770130646) at 2023-10-18 11:15 PM PDT -jaasonw,2023-10-20T21:57:07Z,- jaasonw commented on pull request: [5745](https://github.com/hackforla/website/pull/5745#issuecomment-1773443508) at 2023-10-20 02:57 PM PDT -jaasonw,2023-10-20T21:57:48Z,- jaasonw submitted pull request review: [5745](https://github.com/hackforla/website/pull/5745#pullrequestreview-1690945686) at 2023-10-20 02:57 PM PDT -jaasonw,2023-10-21T05:11:46Z,- jaasonw submitted pull request review: [5745](https://github.com/hackforla/website/pull/5745#pullrequestreview-1691185484) at 2023-10-20 10:11 PM PDT -jaasonw,2023-10-22T23:00:17Z,- jaasonw submitted pull request review: [5765](https://github.com/hackforla/website/pull/5765#pullrequestreview-1691508540) at 2023-10-22 04:00 PM PDT -jaasonw,2023-10-22T23:40:32Z,- jaasonw submitted pull request review: [5751](https://github.com/hackforla/website/pull/5751#pullrequestreview-1691516018) at 2023-10-22 04:40 PM PDT -jaasonw,2023-10-23T02:53:41Z,- jaasonw reopened issue: [5620](https://github.com/hackforla/website/issues/5620#event-10734836262) at 2023-10-22 07:53 PM PDT -jaasonw,2023-10-23T02:54:58Z,- jaasonw commented on issue: [5620](https://github.com/hackforla/website/issues/5620#issuecomment-1774353924) at 2023-10-22 07:54 PM PDT -jaasonw,2023-10-23T20:38:44Z,- jaasonw pull request merged: [5731](https://github.com/hackforla/website/pull/5731#event-10746017651) at 2023-10-23 01:38 PM PDT -jaasonw,2023-10-23T21:07:10Z,- jaasonw commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1776022705) at 2023-10-23 02:07 PM PDT -jaasonw,2023-10-23T21:07:10Z,- jaasonw closed issue as completed: [5650](https://github.com/hackforla/website/issues/5650#event-10746251383) at 2023-10-23 02:07 PM PDT -jaasonw,2023-10-25T08:57:49Z,- jaasonw commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1778817930) at 2023-10-25 01:57 AM PDT -jaasonw,2023-10-25T13:34:06Z,- jaasonw reopened pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1779271814) at 2023-10-25 06:34 AM PDT -jaasonw,2023-10-31T03:15:53Z,- jaasonw assigned to issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786338632) at 2023-10-30 08:15 PM PDT -jaasonw,2023-10-31T03:16:09Z,- jaasonw unassigned from issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786338632) at 2023-10-30 08:16 PM PDT -jaasonw,2023-10-31T03:16:19Z,- jaasonw assigned to issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786314988) at 2023-10-30 08:16 PM PDT -jaasonw,2023-11-02T00:27:14Z,- jaasonw reopened pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789840520) at 2023-11-01 05:27 PM PDT -jaasonw,2023-11-02T00:29:22Z,- jaasonw commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789875255) at 2023-11-01 05:29 PM PDT -jaasonw,2023-11-08T11:49:49Z,- jaasonw commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1801731524) at 2023-11-08 03:49 AM PST -jaasonw,2023-11-13T10:23:13Z,- jaasonw commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1807877901) at 2023-11-13 02:23 AM PST -jaasonw,2023-11-15T04:06:53Z,- jaasonw commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1811776776) at 2023-11-14 08:06 PM PST -jaasonw,2023-11-20T11:07:40Z,- jaasonw commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1818840871) at 2023-11-20 03:07 AM PST -jaasonw,2023-11-26T00:41:52Z,- jaasonw commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1826454496) at 2023-11-25 04:41 PM PST -jaasonw,2024-02-28T23:19:19Z,- jaasonw commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1970080168) at 2024-02-28 03:19 PM PST -JackCasica,5865,SKILLS ISSUE -JackCasica,2023-11-07T04:01:37Z,- JackCasica opened issue: [5865](https://github.com/hackforla/website/issues/5865) at 2023-11-06 08:01 PM PST -JackCasica,2023-11-07T04:01:41Z,- JackCasica assigned to issue: [5865](https://github.com/hackforla/website/issues/5865) at 2023-11-06 08:01 PM PST -JackCasica,2024-01-30T20:22:16Z,- JackCasica assigned to issue: [6165](https://github.com/hackforla/website/issues/6165#issuecomment-1911207771) at 2024-01-30 12:22 PM PST -JackCasica,2024-01-30T20:33:47Z,- JackCasica commented on issue: [6165](https://github.com/hackforla/website/issues/6165#issuecomment-1917843375) at 2024-01-30 12:33 PM PST -JackCasica,2024-01-30T20:36:21Z,- JackCasica commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1917847490) at 2024-01-30 12:36 PM PST -JackCasica,2024-01-30T20:52:36Z,- JackCasica opened pull request: [6198](https://github.com/hackforla/website/pull/6198) at 2024-01-30 12:52 PM PST -JackCasica,2024-01-30T21:10:23Z,- JackCasica commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1917899570) at 2024-01-30 01:10 PM PST -JackCasica,2024-01-30T21:20:43Z,- JackCasica assigned to issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1874991139) at 2024-01-30 01:20 PM PST -JackCasica,2024-01-30T21:31:21Z,- JackCasica commented on issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1917928715) at 2024-01-30 01:31 PM PST -JackCasica,2024-01-30T21:34:22Z,- JackCasica commented on issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1917932724) at 2024-01-30 01:34 PM PST -JackCasica,2024-01-30T21:34:31Z,- JackCasica unassigned from issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1917932724) at 2024-01-30 01:34 PM PST -JackCasica,2024-02-02T06:46:40Z,- JackCasica pull request merged: [6198](https://github.com/hackforla/website/pull/6198#event-11679900147) at 2024-02-01 10:46 PM PST -JackCasica,2024-02-02T17:37:08Z,- JackCasica assigned to issue: [6048](https://github.com/hackforla/website/issues/6048#issuecomment-1875008824) at 2024-02-02 09:37 AM PST -JackCasica,2024-02-02T17:56:44Z,- JackCasica commented on issue: [6048](https://github.com/hackforla/website/issues/6048#issuecomment-1924412268) at 2024-02-02 09:56 AM PST -JackCasica,2024-02-02T18:58:17Z,- JackCasica opened pull request: [6214](https://github.com/hackforla/website/pull/6214) at 2024-02-02 10:58 AM PST -JackCasica,2024-02-03T02:52:05Z,- JackCasica commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1925031679) at 2024-02-02 06:52 PM PST -JackCasica,2024-02-05T19:39:34Z,- JackCasica pull request merged: [6214](https://github.com/hackforla/website/pull/6214#event-11709057210) at 2024-02-05 11:39 AM PST -JackCasica,2024-02-06T02:46:55Z,- JackCasica assigned to issue: [6200](https://github.com/hackforla/website/issues/6200#issuecomment-1918608008) at 2024-02-05 06:46 PM PST -JackCasica,2024-02-06T02:48:41Z,- JackCasica commented on issue: [6200](https://github.com/hackforla/website/issues/6200#issuecomment-1928685510) at 2024-02-05 06:48 PM PST -JackCasica,2024-02-06T02:59:01Z,- JackCasica opened pull request: [6243](https://github.com/hackforla/website/pull/6243) at 2024-02-05 06:59 PM PST -JackCasica,2024-02-07T18:59:44Z,- JackCasica pull request merged: [6243](https://github.com/hackforla/website/pull/6243#event-11736569221) at 2024-02-07 10:59 AM PST -JackCasica,2024-02-08T03:45:35Z,- JackCasica assigned to issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1920630340) at 2024-02-07 07:45 PM PST -JackCasica,2024-02-08T03:46:40Z,- JackCasica commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1933318252) at 2024-02-07 07:46 PM PST -JackCasica,2024-02-08T04:36:52Z,- JackCasica opened pull request: [6263](https://github.com/hackforla/website/pull/6263) at 2024-02-07 08:36 PM PST -JackCasica,2024-02-09T08:16:57Z,- JackCasica pull request merged: [6263](https://github.com/hackforla/website/pull/6263#event-11755041805) at 2024-02-09 12:16 AM PST -JackCasica,2024-02-29T17:00:02Z,- JackCasica commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1971570832) at 2024-02-29 09:00 AM PST -JackCasica,2024-02-29T17:10:29Z,- JackCasica commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1971589698) at 2024-02-29 09:10 AM PST -JackCasica,2024-03-08T15:16:34Z,- JackCasica commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1985875081) at 2024-03-08 07:16 AM PST -JackCasica,2024-03-22T15:28:49Z,- JackCasica assigned to issue: [6490](https://github.com/hackforla/website/issues/6490) at 2024-03-22 08:28 AM PDT -JackCasica,2024-03-22T17:02:22Z,- JackCasica commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2015522855) at 2024-03-22 10:02 AM PDT -JackCasica,2024-03-22T17:03:53Z,- JackCasica commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2015525984) at 2024-03-22 10:03 AM PDT -JackCasica,2024-03-27T14:52:28Z,- JackCasica commented on pull request: [6522](https://github.com/hackforla/website/pull/6522#issuecomment-2022973781) at 2024-03-27 07:52 AM PDT -JackCasica,2024-03-27T19:38:41Z,- JackCasica submitted pull request review: [6522](https://github.com/hackforla/website/pull/6522#pullrequestreview-1964587657) at 2024-03-27 12:38 PM PDT -JackCasica,2024-03-28T14:44:43Z,- JackCasica commented on pull request: [6535](https://github.com/hackforla/website/pull/6535#issuecomment-2025402557) at 2024-03-28 07:44 AM PDT -JackCasica,2024-03-28T19:02:11Z,- JackCasica submitted pull request review: [6535](https://github.com/hackforla/website/pull/6535#pullrequestreview-1967042287) at 2024-03-28 12:02 PM PDT -JackCasica,2024-03-29T02:42:17Z,- JackCasica commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-2026512273) at 2024-03-28 07:42 PM PDT -JackCasica,2024-03-29T04:30:32Z,- JackCasica submitted pull request review: [6546](https://github.com/hackforla/website/pull/6546#pullrequestreview-1967815491) at 2024-03-28 09:30 PM PDT -JackCasica,2024-03-31T17:25:35Z,- JackCasica commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2028833618) at 2024-03-31 10:25 AM PDT -JackCasica,2024-03-31T18:02:12Z,- JackCasica commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-2028846592) at 2024-03-31 11:02 AM PDT -JackCasica,2024-04-01T17:23:20Z,- JackCasica commented on pull request: [6549](https://github.com/hackforla/website/pull/6549#issuecomment-2030197676) at 2024-04-01 10:23 AM PDT -JackCasica,2024-04-01T20:07:41Z,- JackCasica submitted pull request review: [6549](https://github.com/hackforla/website/pull/6549#pullrequestreview-1972036196) at 2024-04-01 01:07 PM PDT -JackCasica,2024-04-08T14:41:23Z,- JackCasica submitted pull request review: [6549](https://github.com/hackforla/website/pull/6549#pullrequestreview-1986650673) at 2024-04-08 07:41 AM PDT -JackCasica,2024-04-08T14:46:01Z,- JackCasica commented on pull request: [6549](https://github.com/hackforla/website/pull/6549#issuecomment-2042952062) at 2024-04-08 07:46 AM PDT -JackCasica,2024-04-10T01:59:46Z,- JackCasica commented on pull request: [6613](https://github.com/hackforla/website/pull/6613#issuecomment-2046321084) at 2024-04-09 06:59 PM PDT -JackCasica,2024-04-11T03:58:00Z,- JackCasica submitted pull request review: [6613](https://github.com/hackforla/website/pull/6613#pullrequestreview-1993241664) at 2024-04-10 08:58 PM PDT -JackCasica,2024-04-11T04:02:32Z,- JackCasica submitted pull request review: [6613](https://github.com/hackforla/website/pull/6613#pullrequestreview-1993244705) at 2024-04-10 09:02 PM PDT -JackCasica,2024-04-14T18:31:18Z,- JackCasica commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2054147916) at 2024-04-14 11:31 AM PDT -JackCasica,2024-04-14T18:36:14Z,- JackCasica commented on pull request: [6635](https://github.com/hackforla/website/pull/6635#issuecomment-2054149276) at 2024-04-14 11:36 AM PDT -JackCasica,2024-04-14T18:36:35Z,- JackCasica submitted pull request review: [6635](https://github.com/hackforla/website/pull/6635#pullrequestreview-1999726416) at 2024-04-14 11:36 AM PDT -JackCasica,2024-04-22T04:34:39Z,- JackCasica commented on pull request: [6708](https://github.com/hackforla/website/pull/6708#issuecomment-2068471036) at 2024-04-21 09:34 PM PDT -JackCasica,2024-04-23T02:49:38Z,- JackCasica commented on pull request: [6708](https://github.com/hackforla/website/pull/6708#issuecomment-2071311420) at 2024-04-22 07:49 PM PDT -JackCasica,2024-04-23T02:49:54Z,- JackCasica submitted pull request review: [6708](https://github.com/hackforla/website/pull/6708#pullrequestreview-2016141534) at 2024-04-22 07:49 PM PDT -JackCasica,2024-04-23T03:08:08Z,- JackCasica assigned to issue: [6683](https://github.com/hackforla/website/issues/6683) at 2024-04-22 08:08 PM PDT -JackCasica,2024-04-23T03:09:13Z,- JackCasica commented on issue: [6683](https://github.com/hackforla/website/issues/6683#issuecomment-2071326568) at 2024-04-22 08:09 PM PDT -JackCasica,2024-04-23T20:54:51Z,- JackCasica opened pull request: [6712](https://github.com/hackforla/website/pull/6712) at 2024-04-23 01:54 PM PDT -JackCasica,2024-04-24T03:02:06Z,- JackCasica assigned to issue: [6697](https://github.com/hackforla/website/issues/6697#issuecomment-2067949016) at 2024-04-23 08:02 PM PDT -JackCasica,2024-04-24T03:03:22Z,- JackCasica commented on issue: [6697](https://github.com/hackforla/website/issues/6697#issuecomment-2073921497) at 2024-04-23 08:03 PM PDT -JackCasica,2024-04-24T03:10:30Z,- JackCasica opened issue: [6717](https://github.com/hackforla/website/issues/6717) at 2024-04-23 08:10 PM PDT -JackCasica,2024-04-24T03:14:12Z,- JackCasica opened issue: [6718](https://github.com/hackforla/website/issues/6718) at 2024-04-23 08:14 PM PDT -JackCasica,2024-04-24T03:16:10Z,- JackCasica opened issue: [6719](https://github.com/hackforla/website/issues/6719) at 2024-04-23 08:16 PM PDT -JackCasica,2024-04-24T03:17:43Z,- JackCasica opened issue: [6720](https://github.com/hackforla/website/issues/6720) at 2024-04-23 08:17 PM PDT -JackCasica,2024-04-24T03:18:55Z,- JackCasica opened issue: [6721](https://github.com/hackforla/website/issues/6721) at 2024-04-23 08:18 PM PDT -JackCasica,2024-04-24T03:20:18Z,- JackCasica opened issue: [6722](https://github.com/hackforla/website/issues/6722) at 2024-04-23 08:20 PM PDT -JackCasica,2024-04-24T03:21:16Z,- JackCasica opened issue: [6723](https://github.com/hackforla/website/issues/6723) at 2024-04-23 08:21 PM PDT -JackCasica,2024-04-24T03:22:45Z,- JackCasica opened issue: [6724](https://github.com/hackforla/website/issues/6724) at 2024-04-23 08:22 PM PDT -JackCasica,2024-04-24T03:23:51Z,- JackCasica opened issue: [6725](https://github.com/hackforla/website/issues/6725) at 2024-04-23 08:23 PM PDT -JackCasica,2024-04-28T16:40:40Z,- JackCasica pull request merged: [6712](https://github.com/hackforla/website/pull/6712#event-12635284514) at 2024-04-28 09:40 AM PDT -JackCasica,2024-05-05T16:04:12Z,- JackCasica assigned to issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2093853155) at 2024-05-05 09:04 AM PDT -JackCasica,2024-05-05T16:08:16Z,- JackCasica commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2094863107) at 2024-05-05 09:08 AM PDT -JackCasica,2024-05-05T16:18:44Z,- JackCasica commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2094866090) at 2024-05-05 09:18 AM PDT -JackCasica,2024-05-06T03:24:20Z,- JackCasica opened pull request: [6822](https://github.com/hackforla/website/pull/6822) at 2024-05-05 08:24 PM PDT -JackCasica,2024-05-06T18:31:35Z,- JackCasica pull request merged: [6822](https://github.com/hackforla/website/pull/6822#event-12718842673) at 2024-05-06 11:31 AM PDT -JackCasica,2024-05-20T01:55:07Z,- JackCasica assigned to issue: [6849](https://github.com/hackforla/website/issues/6849) at 2024-05-19 06:55 PM PDT -JackCasica,2024-05-20T01:55:44Z,- JackCasica commented on issue: [6849](https://github.com/hackforla/website/issues/6849#issuecomment-2119532853) at 2024-05-19 06:55 PM PDT -JackCasica,2024-05-21T05:48:21Z,- JackCasica commented on issue: [6849](https://github.com/hackforla/website/issues/6849#issuecomment-2121794207) at 2024-05-20 10:48 PM PDT -JackCasica,2024-05-21T06:01:24Z,- JackCasica opened pull request: [6870](https://github.com/hackforla/website/pull/6870) at 2024-05-20 11:01 PM PDT -JackCasica,2024-05-27T14:08:52Z,- JackCasica commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2133563476) at 2024-05-27 07:08 AM PDT -JackCasica,2024-05-29T02:48:30Z,- JackCasica pull request merged: [6870](https://github.com/hackforla/website/pull/6870#event-12965140343) at 2024-05-28 07:48 PM PDT -JackCSweeney,7022,SKILLS ISSUE -JackCSweeney,2024-06-19T02:49:02Z,- JackCSweeney opened issue: [7022](https://github.com/hackforla/website/issues/7022) at 2024-06-18 07:49 PM PDT -JackCSweeney,2024-06-19T02:49:02Z,- JackCSweeney assigned to issue: [7022](https://github.com/hackforla/website/issues/7022) at 2024-06-18 07:49 PM PDT -JackHaeg,2024-09-06T19:37:32Z,- JackHaeg opened issue: [7407](https://github.com/hackforla/website/issues/7407) at 2024-09-06 12:37 PM PDT -JackHaeg,2024-10-08T00:50:55Z,- JackHaeg opened issue: [7570](https://github.com/hackforla/website/issues/7570) at 2024-10-07 05:50 PM PDT -JackHaeg,2024-10-08T00:52:22Z,- JackHaeg assigned to issue: [7570](https://github.com/hackforla/website/issues/7570) at 2024-10-07 05:52 PM PDT -JackHaeg,2024-10-22T01:18:58Z,- JackHaeg commented on issue: [7570](https://github.com/hackforla/website/issues/7570#issuecomment-2428019910) at 2024-10-21 06:18 PM PDT -JackHaeg,2024-10-22T01:18:58Z,- JackHaeg closed issue as completed: [7570](https://github.com/hackforla/website/issues/7570#event-14773543027) at 2024-10-21 06:18 PM PDT -JackieRiley1,2500,SKILLS ISSUE -JackieRiley1,2021-11-17T22:21:33Z,- JackieRiley1 opened issue: [2500](https://github.com/hackforla/website/issues/2500) at 2021-11-17 02:21 PM PST -JackieRiley1,2021-11-17T22:22:04Z,- JackieRiley1 assigned to issue: [2500](https://github.com/hackforla/website/issues/2500) at 2021-11-17 02:22 PM PST -JackieRiley1,2021-12-02T17:30:46Z,- JackieRiley1 opened issue: [2536](https://github.com/hackforla/website/issues/2536) at 2021-12-02 09:30 AM PST -JackieRiley1,2021-12-02T17:30:46Z,- JackieRiley1 assigned to issue: [2536](https://github.com/hackforla/website/issues/2536) at 2021-12-02 09:30 AM PST -JackieRiley1,2021-12-08T21:05:44Z,- JackieRiley1 commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-989195108) at 2021-12-08 01:05 PM PST -JackieRiley1,2021-12-12T17:16:38Z,- JackieRiley1 commented on issue: [2536](https://github.com/hackforla/website/issues/2536#issuecomment-991936009) at 2021-12-12 09:16 AM PST -JackieRiley1,2021-12-15T22:55:46Z,- JackieRiley1 assigned to issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-636588497) at 2021-12-15 02:55 PM PST -JackieRiley1,2021-12-16T15:15:59Z,- JackieRiley1 unassigned from issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-636588497) at 2021-12-16 07:15 AM PST -JackieRiley1,2021-12-16T15:17:50Z,- JackieRiley1 assigned to issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-636588497) at 2021-12-16 07:17 AM PST -JackieRiley1,2021-12-16T15:19:08Z,- JackieRiley1 commented on issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-995913648) at 2021-12-16 07:19 AM PST -JackieRiley1,2021-12-29T03:26:37Z,- JackieRiley1 assigned to issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-917681123) at 2021-12-28 07:26 PM PST -JackieRiley1,2022-01-02T16:19:13Z,- JackieRiley1 commented on issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-1003740128) at 2022-01-02 08:19 AM PST -JackieRiley1,2022-01-06T21:32:11Z,- JackieRiley1 unassigned from issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-1003740128) at 2022-01-06 01:32 PM PST -JackieRiley1,2022-01-06T21:34:43Z,- JackieRiley1 commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1006951211) at 2022-01-06 01:34 PM PST -JackieRiley1,2022-01-06T21:38:19Z,- JackieRiley1 unassigned from issue: [2536](https://github.com/hackforla/website/issues/2536#issuecomment-991936009) at 2022-01-06 01:38 PM PST -JackieRiley1,2022-01-06T21:38:49Z,- JackieRiley1 unassigned from issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-989195108) at 2022-01-06 01:38 PM PST -JackieRiley1,2022-01-06T21:46:53Z,- JackieRiley1 opened issue: [2663](https://github.com/hackforla/website/issues/2663) at 2022-01-06 01:46 PM PST -JackieRiley1,2022-01-06T21:46:54Z,- JackieRiley1 assigned to issue: [2663](https://github.com/hackforla/website/issues/2663) at 2022-01-06 01:46 PM PST -JackieRiley1,2022-01-16T18:53:42Z,- JackieRiley1 commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1013931512) at 2022-01-16 10:53 AM PST -JackieRiley1,2022-01-16T20:08:46Z,- JackieRiley1 unassigned from issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1006958269) at 2022-01-16 12:08 PM PST -JackieRiley1,2022-01-20T21:14:20Z,- JackieRiley1 assigned to issue: [2500](https://github.com/hackforla/website/issues/2500#event-5927927110) at 2022-01-20 01:14 PM PST -JackieRiley1,2022-02-02T20:27:17Z,- JackieRiley1 commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1028328734) at 2022-02-02 12:27 PM PST -JackieRiley1,2022-02-02T21:46:56Z,- JackieRiley1 assigned to issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1028385806) at 2022-02-02 01:46 PM PST -JackieRiley1,2022-02-09T20:25:30Z,- JackieRiley1 unassigned from issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-02-09 12:25 PM PST -JackieRiley1,2022-02-21T19:20:04Z,- JackieRiley1 commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1047168730) at 2022-02-21 11:20 AM PST -JackieRiley1,2022-03-03T18:09:52Z,- JackieRiley1 commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1058338009) at 2022-03-03 10:09 AM PST -JackieRiley1,2022-03-16T18:05:02Z,- JackieRiley1 commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1069403307) at 2022-03-16 11:05 AM PDT -JackieRiley1,2022-03-16T18:35:50Z,- JackieRiley1 assigned to issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1069403307) at 2022-03-16 11:35 AM PDT -JackieRiley1,2022-03-16T18:36:35Z,- JackieRiley1 commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1069441691) at 2022-03-16 11:36 AM PDT -JackieRiley1,2022-03-21T15:36:40Z,- JackieRiley1 commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1074052523) at 2022-03-21 08:36 AM PDT -JackieRiley1,2022-03-24T15:51:22Z,- JackieRiley1 commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1077778030) at 2022-03-24 08:51 AM PDT -JackieRiley1,2022-03-27T13:57:12Z,- JackieRiley1 commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1079937306) at 2022-03-27 06:57 AM PDT -JackieRiley1,2022-04-13T20:01:00Z,- JackieRiley1 commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1098432423) at 2022-04-13 01:01 PM PDT -JackieRiley1,2022-04-25T20:37:01Z,- JackieRiley1 commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1109016687) at 2022-04-25 01:37 PM PDT -JackieRiley1,2022-05-11T21:42:36Z,- JackieRiley1 unassigned from issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1119330582) at 2022-05-11 02:42 PM PDT -JackRichman,2021-07-07T02:43:39Z,- JackRichman assigned to issue: [1580](https://github.com/hackforla/website/issues/1580) at 2021-07-06 07:43 PM PDT -JackRichman,2021-07-11T23:03:27Z,- JackRichman opened pull request: [1922](https://github.com/hackforla/website/pull/1922) at 2021-07-11 04:03 PM PDT -JackRichman,2021-07-12T15:08:00Z,- JackRichman pull request merged: [1922](https://github.com/hackforla/website/pull/1922#event-5008135955) at 2021-07-12 08:08 AM PDT -JackRichman,2021-07-18T01:21:21Z,- JackRichman assigned to issue: [1874](https://github.com/hackforla/website/issues/1874) at 2021-07-17 06:21 PM PDT -JackRichman,2021-07-21T04:41:54Z,- JackRichman opened pull request: [1991](https://github.com/hackforla/website/pull/1991) at 2021-07-20 09:41 PM PDT -JackRichman,2021-07-23T02:52:42Z,- JackRichman pull request closed w/o merging: [1991](https://github.com/hackforla/website/pull/1991#event-5058940952) at 2021-07-22 07:52 PM PDT -JackRichman,2021-07-23T02:53:05Z,- JackRichman reopened pull request: [1991](https://github.com/hackforla/website/pull/1991#event-5058940952) at 2021-07-22 07:53 PM PDT -JackRichman,2021-07-23T02:55:11Z,- JackRichman pull request closed w/o merging: [1991](https://github.com/hackforla/website/pull/1991#event-5058944920) at 2021-07-22 07:55 PM PDT -JackRichman,2021-07-23T03:43:15Z,- JackRichman opened pull request: [2003](https://github.com/hackforla/website/pull/2003) at 2021-07-22 08:43 PM PDT -JackRichman,2021-07-28T02:43:41Z,- JackRichman submitted pull request review: [2001](https://github.com/hackforla/website/pull/2001#pullrequestreview-716533415) at 2021-07-27 07:43 PM PDT -JackRichman,2021-07-30T03:49:51Z,- JackRichman pull request merged: [2003](https://github.com/hackforla/website/pull/2003#event-5089307438) at 2021-07-29 08:49 PM PDT -JackRichman,2021-07-31T01:36:52Z,- JackRichman assigned to issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-889407417) at 2021-07-30 06:36 PM PDT -JackRichman,2021-07-31T02:23:44Z,- JackRichman assigned to issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-30 07:23 PM PDT -JackRichman,2021-07-31T02:24:14Z,- JackRichman opened pull request: [2024](https://github.com/hackforla/website/pull/2024) at 2021-07-30 07:24 PM PDT -JackRichman,2021-07-31T02:24:23Z,- JackRichman unassigned from issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-30 07:24 PM PDT -JackRichman,2021-08-04T02:44:25Z,- JackRichman submitted pull request review: [2038](https://github.com/hackforla/website/pull/2038#pullrequestreview-721813976) at 2021-08-03 07:44 PM PDT -JackRichman,2021-08-05T02:10:25Z,- JackRichman pull request merged: [2024](https://github.com/hackforla/website/pull/2024#event-5114771045) at 2021-08-04 07:10 PM PDT -JackRichman,2021-08-07T01:13:22Z,- JackRichman assigned to issue: [1978](https://github.com/hackforla/website/issues/1978) at 2021-08-06 06:13 PM PDT -JackRichman,2021-08-11T01:37:56Z,- JackRichman opened pull request: [2099](https://github.com/hackforla/website/pull/2099) at 2021-08-10 06:37 PM PDT -JackRichman,2021-08-11T04:16:36Z,- JackRichman commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896487453) at 2021-08-10 09:16 PM PDT -JackRichman,2021-08-11T16:16:45Z,- JackRichman commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896962956) at 2021-08-11 09:16 AM PDT -JackRichman,2021-08-14T02:53:03Z,- JackRichman pull request merged: [2099](https://github.com/hackforla/website/pull/2099#event-5158194467) at 2021-08-13 07:53 PM PDT -JackRichman,2021-08-20T07:41:37Z,- JackRichman submitted pull request review: [2131](https://github.com/hackforla/website/pull/2131#pullrequestreview-734757844) at 2021-08-20 12:41 AM PDT -JackRichman,2021-08-21T01:56:10Z,- JackRichman commented on issue: [2077](https://github.com/hackforla/website/issues/2077#issuecomment-903035887) at 2021-08-20 06:56 PM PDT -JackRichman,2021-08-21T02:03:50Z,- JackRichman assigned to issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-901378279) at 2021-08-20 07:03 PM PDT -JackRichman,2021-08-21T02:04:54Z,- JackRichman commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-903037124) at 2021-08-20 07:04 PM PDT -JackRichman,2021-08-30T19:41:29Z,- JackRichman opened pull request: [2208](https://github.com/hackforla/website/pull/2208) at 2021-08-30 12:41 PM PDT -JackRichman,2021-08-30T19:44:19Z,- JackRichman commented on pull request: [2208](https://github.com/hackforla/website/pull/2208#issuecomment-908636996) at 2021-08-30 12:44 PM PDT -JackRichman,2021-09-15T16:16:02Z,- JackRichman pull request merged: [2208](https://github.com/hackforla/website/pull/2208#event-5307102503) at 2021-09-15 09:16 AM PDT -jackyuan1,5720,SKILLS ISSUE -jackyuan1,2023-10-17T02:29:32Z,- jackyuan1 opened issue: [5720](https://github.com/hackforla/website/issues/5720) at 2023-10-16 07:29 PM PDT -jackyuan1,2023-10-17T02:29:41Z,- jackyuan1 assigned to issue: [5720](https://github.com/hackforla/website/issues/5720) at 2023-10-16 07:29 PM PDT -jackyuan1,2023-10-22T12:28:12Z,- jackyuan1 assigned to issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1685346382) at 2023-10-22 05:28 AM PDT -jackyuan1,2023-10-22T13:35:42Z,- jackyuan1 opened pull request: [5751](https://github.com/hackforla/website/pull/5751) at 2023-10-22 06:35 AM PDT -jackyuan1,2023-10-23T04:44:52Z,- jackyuan1 pull request merged: [5751](https://github.com/hackforla/website/pull/5751#event-10735643085) at 2023-10-22 09:44 PM PDT -jackyuan1,2023-10-25T18:20:43Z,- jackyuan1 commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1779816149) at 2023-10-25 11:20 AM PDT -jackyuan1,2023-10-25T22:56:56Z,- jackyuan1 assigned to issue: [5756](https://github.com/hackforla/website/issues/5756) at 2023-10-25 03:56 PM PDT -jackyuan1,2023-10-25T23:17:39Z,- jackyuan1 opened pull request: [5785](https://github.com/hackforla/website/pull/5785) at 2023-10-25 04:17 PM PDT -jackyuan1,2023-10-31T21:03:00Z,- jackyuan1 commented on pull request: [5811](https://github.com/hackforla/website/pull/5811#issuecomment-1788031641) at 2023-10-31 02:03 PM PDT -jackyuan1,2023-10-31T21:25:06Z,- jackyuan1 submitted pull request review: [5811](https://github.com/hackforla/website/pull/5811#pullrequestreview-1707263577) at 2023-10-31 02:25 PM PDT -jackyuan1,2023-10-31T22:02:22Z,- jackyuan1 pull request merged: [5785](https://github.com/hackforla/website/pull/5785#event-10826378232) at 2023-10-31 03:02 PM PDT -jackyuan1,2023-11-03T17:58:21Z,- jackyuan1 commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1792893185) at 2023-11-03 10:58 AM PDT -jackyuan1,2023-11-06T22:11:11Z,- jackyuan1 submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1716374427) at 2023-11-06 02:11 PM PST -jackyuan1,2023-11-16T20:36:29Z,- jackyuan1 assigned to issue: [5589](https://github.com/hackforla/website/issues/5589#issuecomment-1735105303) at 2023-11-16 12:36 PM PST -jackyuan1,2023-11-16T20:45:16Z,- jackyuan1 commented on issue: [5589](https://github.com/hackforla/website/issues/5589#issuecomment-1815285196) at 2023-11-16 12:45 PM PST -jackyuan1,2023-11-16T21:13:16Z,- jackyuan1 opened pull request: [5915](https://github.com/hackforla/website/pull/5915) at 2023-11-16 01:13 PM PST -jackyuan1,2023-11-22T21:51:59Z,- jackyuan1 pull request merged: [5915](https://github.com/hackforla/website/pull/5915#event-11041525053) at 2023-11-22 01:51 PM PST -jackyuan1,2023-11-29T20:40:55Z,- jackyuan1 assigned to issue: [5705](https://github.com/hackforla/website/issues/5705#issuecomment-1763488125) at 2023-11-29 12:40 PM PST -jackyuan1,2023-11-29T20:40:58Z,- jackyuan1 unassigned from issue: [5705](https://github.com/hackforla/website/issues/5705#issuecomment-1763488125) at 2023-11-29 12:40 PM PST -jackyuan1,2023-11-29T20:41:44Z,- jackyuan1 assigned to issue: [5705](https://github.com/hackforla/website/issues/5705#issuecomment-1763488125) at 2023-11-29 12:41 PM PST -jackyuan1,2023-11-29T20:43:28Z,- jackyuan1 commented on issue: [5705](https://github.com/hackforla/website/issues/5705#issuecomment-1832671743) at 2023-11-29 12:43 PM PST -jackyuan1,2023-11-29T20:51:29Z,- jackyuan1 commented on issue: [5705](https://github.com/hackforla/website/issues/5705#issuecomment-1832681671) at 2023-11-29 12:51 PM PST -jackyuan1,2023-11-29T21:26:43Z,- jackyuan1 opened pull request: [5947](https://github.com/hackforla/website/pull/5947) at 2023-11-29 01:26 PM PST -jackyuan1,2023-12-08T02:42:30Z,- jackyuan1 pull request merged: [5947](https://github.com/hackforla/website/pull/5947#event-11188868606) at 2023-12-07 06:42 PM PST -jacquesarzu2014,7035,SKILLS ISSUE -jacquesarzu2014,2024-06-19T04:01:37Z,- jacquesarzu2014 opened issue: [7034](https://github.com/hackforla/website/issues/7034) at 2024-06-18 09:01 PM PDT -jacquesarzu2014,2024-06-19T04:16:10Z,- jacquesarzu2014 opened issue: [7035](https://github.com/hackforla/website/issues/7035) at 2024-06-18 09:16 PM PDT -jacquesarzu2014,2024-06-19T04:16:10Z,- jacquesarzu2014 assigned to issue: [7035](https://github.com/hackforla/website/issues/7035) at 2024-06-18 09:16 PM PDT -Jain8888,2021-07-25T19:30:17Z,- Jain8888 assigned to issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-881566992) at 2021-07-25 12:30 PM PDT -Jain8888,2021-07-25T19:34:13Z,- Jain8888 commented on issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-886247545) at 2021-07-25 12:34 PM PDT -Jain8888,2021-07-26T02:27:21Z,- Jain8888 unassigned from issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-886247545) at 2021-07-25 07:27 PM PDT -jakejjoyner,7693,SKILLS ISSUE -jakejjoyner,2024-11-05T03:56:12Z,- jakejjoyner opened issue: [7693](https://github.com/hackforla/website/issues/7693) at 2024-11-04 07:56 PM PST -jakejjoyner,2024-11-05T03:56:28Z,- jakejjoyner assigned to issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2456179130) at 2024-11-04 07:56 PM PST -jakejjoyner,2024-11-05T04:31:19Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2456210692) at 2024-11-04 08:31 PM PST -jakejjoyner,2024-11-10T04:58:58Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2466587292) at 2024-11-09 08:58 PM PST -jakejjoyner,2024-11-12T00:59:41Z,- jakejjoyner assigned to issue: [7458](https://github.com/hackforla/website/issues/7458#issuecomment-2351436132) at 2024-11-11 04:59 PM PST -jakejjoyner,2024-11-12T02:15:56Z,- jakejjoyner opened pull request: [7717](https://github.com/hackforla/website/pull/7717) at 2024-11-11 06:15 PM PST -jakejjoyner,2024-11-15T01:28:52Z,- jakejjoyner pull request merged: [7717](https://github.com/hackforla/website/pull/7717#event-15306152553) at 2024-11-14 05:28 PM PST -jakejjoyner,2024-11-20T02:07:37Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2487171652) at 2024-11-19 06:07 PM PST -jakejjoyner,2024-11-20T02:09:29Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2487173693) at 2024-11-19 06:09 PM PST -jakejjoyner,2024-11-20T02:19:37Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2487186802) at 2024-11-19 06:19 PM PST -jakejjoyner,2024-11-20T02:26:45Z,- jakejjoyner assigned to issue: [7730](https://github.com/hackforla/website/issues/7730) at 2024-11-19 06:26 PM PST -jakejjoyner,2024-11-20T02:27:02Z,- jakejjoyner unassigned from issue: [7730](https://github.com/hackforla/website/issues/7730) at 2024-11-19 06:27 PM PST -jakejjoyner,2024-11-20T02:52:22Z,- jakejjoyner assigned to issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487197087) at 2024-11-19 06:52 PM PST -jakejjoyner,2024-11-20T02:52:36Z,- jakejjoyner unassigned from issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487197087) at 2024-11-19 06:52 PM PST -jakejjoyner,2024-11-20T03:07:42Z,- jakejjoyner assigned to issue: [7701](https://github.com/hackforla/website/issues/7701) at 2024-11-19 07:07 PM PST -jakejjoyner,2024-11-20T03:36:42Z,- jakejjoyner commented on issue: [7701](https://github.com/hackforla/website/issues/7701#issuecomment-2487280953) at 2024-11-19 07:36 PM PST -jakejjoyner,2024-11-20T03:37:04Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2487281328) at 2024-11-19 07:37 PM PST -jakejjoyner,2024-11-20T04:16:33Z,- jakejjoyner opened pull request: [7744](https://github.com/hackforla/website/pull/7744) at 2024-11-19 08:16 PM PST -jakejjoyner,2024-11-22T05:44:30Z,- jakejjoyner pull request merged: [7744](https://github.com/hackforla/website/pull/7744#event-15392437500) at 2024-11-21 09:44 PM PST -jakejjoyner,2024-12-14T08:38:02Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2543004360) at 2024-12-14 12:38 AM PST -jakejjoyner,2024-12-14T08:56:36Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2543009697) at 2024-12-14 12:56 AM PST -jakejjoyner,2024-12-26T08:44:56Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2562324307) at 2024-12-26 12:44 AM PST -jakejjoyner,2024-12-31T19:47:33Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2566681408) at 2024-12-31 11:47 AM PST -jakejjoyner,2025-02-03T00:57:28Z,- jakejjoyner commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2629674195) at 2025-02-02 04:57 PM PST -jakejjoyner,2025-02-03T01:07:57Z,- jakejjoyner submitted pull request review: [7845](https://github.com/hackforla/website/pull/7845#pullrequestreview-2588719364) at 2025-02-02 05:07 PM PST -jakejjoyner,2025-02-03T01:21:43Z,- jakejjoyner commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2629693540) at 2025-02-02 05:21 PM PST -james-aguirre,5774,SKILLS ISSUE -james-aguirre,2023-10-25T02:45:42Z,- james-aguirre opened issue: [5774](https://github.com/hackforla/website/issues/5774) at 2023-10-24 07:45 PM PDT -james-aguirre,2023-10-25T02:46:06Z,- james-aguirre assigned to issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1778415576) at 2023-10-24 07:46 PM PDT -james-aguirre,2023-11-09T00:43:40Z,- james-aguirre assigned to issue: [5808](https://github.com/hackforla/website/issues/5808) at 2023-11-08 04:43 PM PST -james-aguirre,2023-11-09T00:48:41Z,- james-aguirre commented on issue: [5808](https://github.com/hackforla/website/issues/5808#issuecomment-1802990206) at 2023-11-08 04:48 PM PST -james-aguirre,2023-11-09T01:32:07Z,- james-aguirre opened pull request: [5887](https://github.com/hackforla/website/pull/5887) at 2023-11-08 05:32 PM PST -james-aguirre,2023-11-09T01:54:06Z,- james-aguirre assigned to issue: [5807](https://github.com/hackforla/website/issues/5807) at 2023-11-08 05:54 PM PST -james-aguirre,2023-11-09T01:54:45Z,- james-aguirre commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1803041793) at 2023-11-08 05:54 PM PST -james-aguirre,2023-11-09T02:24:00Z,- james-aguirre opened pull request: [5888](https://github.com/hackforla/website/pull/5888) at 2023-11-08 06:24 PM PST -james-aguirre,2023-11-12T18:26:30Z,- james-aguirre pull request closed w/o merging: [5888](https://github.com/hackforla/website/pull/5888#event-10935065715) at 2023-11-12 10:26 AM PST -james-aguirre,2023-11-14T18:43:12Z,- james-aguirre unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1810929161) at 2023-11-14 10:43 AM PST -james-aguirre,2023-11-19T07:13:44Z,- james-aguirre pull request merged: [5887](https://github.com/hackforla/website/pull/5887#event-11003188346) at 2023-11-18 11:13 PM PST -james-aguirre,2023-11-30T22:37:17Z,- james-aguirre assigned to issue: [5696](https://github.com/hackforla/website/issues/5696#issuecomment-1795881435) at 2023-11-30 02:37 PM PST -james-aguirre,2023-11-30T22:43:22Z,- james-aguirre commented on issue: [5696](https://github.com/hackforla/website/issues/5696#issuecomment-1834676510) at 2023-11-30 02:43 PM PST -james-aguirre,2023-12-02T01:14:46Z,- james-aguirre opened pull request: [5955](https://github.com/hackforla/website/pull/5955) at 2023-12-01 05:14 PM PST -james-aguirre,2023-12-03T02:05:16Z,- james-aguirre commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1837309755) at 2023-12-02 06:05 PM PST -james-aguirre,2023-12-18T03:56:04Z,- james-aguirre pull request merged: [5955](https://github.com/hackforla/website/pull/5955#event-11271268488) at 2023-12-17 07:56 PM PST -james-aguirre,2023-12-19T18:29:15Z,- james-aguirre commented on pull request: [6012](https://github.com/hackforla/website/pull/6012#issuecomment-1863282079) at 2023-12-19 10:29 AM PST -james-aguirre,2023-12-19T20:01:18Z,- james-aguirre submitted pull request review: [6012](https://github.com/hackforla/website/pull/6012#pullrequestreview-1789631673) at 2023-12-19 12:01 PM PST -james-aguirre,2023-12-20T02:05:47Z,- james-aguirre assigned to issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1851331369) at 2023-12-19 06:05 PM PST -james-aguirre,2023-12-21T03:04:53Z,- james-aguirre unassigned from issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1863740265) at 2023-12-20 07:04 PM PST -james-aguirre,2023-12-21T03:07:24Z,- james-aguirre commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1865412759) at 2023-12-20 07:07 PM PST -james-aguirre,2023-12-21T21:15:53Z,- james-aguirre commented on pull request: [6014](https://github.com/hackforla/website/pull/6014#issuecomment-1866939137) at 2023-12-21 01:15 PM PST -james-aguirre,2023-12-22T21:13:54Z,- james-aguirre submitted pull request review: [6014](https://github.com/hackforla/website/pull/6014#pullrequestreview-1795166479) at 2023-12-22 01:13 PM PST -jamesberke,2021-05-05T02:20:42Z,- jamesberke assigned to issue: [1512](https://github.com/hackforla/website/issues/1512) at 2021-05-04 07:20 PM PDT -jamesberke,2021-05-06T02:05:05Z,- jamesberke opened pull request: [1518](https://github.com/hackforla/website/pull/1518) at 2021-05-05 07:05 PM PDT -jamesberke,2021-05-06T20:00:26Z,- jamesberke pull request merged: [1518](https://github.com/hackforla/website/pull/1518#event-4697516818) at 2021-05-06 01:00 PM PDT -jamesberke,2021-05-06T21:01:17Z,- jamesberke assigned to issue: [1505](https://github.com/hackforla/website/issues/1505#issuecomment-831760990) at 2021-05-06 02:01 PM PDT -jamesberke,2021-05-06T23:27:12Z,- jamesberke commented on issue: [1505](https://github.com/hackforla/website/issues/1505#issuecomment-833943102) at 2021-05-06 04:27 PM PDT -jamesberke,2021-05-07T03:15:28Z,- jamesberke opened pull request: [1523](https://github.com/hackforla/website/pull/1523) at 2021-05-06 08:15 PM PDT -jamesberke,2021-05-07T04:23:57Z,- jamesberke assigned to issue: [1458](https://github.com/hackforla/website/issues/1458) at 2021-05-06 09:23 PM PDT -jamesberke,2021-05-07T17:45:14Z,- jamesberke pull request merged: [1523](https://github.com/hackforla/website/pull/1523#event-4703646209) at 2021-05-07 10:45 AM PDT -jamesberke,2021-05-07T18:45:51Z,- jamesberke opened pull request: [1529](https://github.com/hackforla/website/pull/1529) at 2021-05-07 11:45 AM PDT -jamesberke,2021-05-07T19:23:43Z,- jamesberke pull request closed w/o merging: [1529](https://github.com/hackforla/website/pull/1529#event-4704176859) at 2021-05-07 12:23 PM PDT -jamesberke,2021-05-07T20:03:58Z,- jamesberke opened pull request: [1530](https://github.com/hackforla/website/pull/1530) at 2021-05-07 01:03 PM PDT -jamesberke,2021-05-07T20:22:52Z,- jamesberke commented on pull request: [1530](https://github.com/hackforla/website/pull/1530#issuecomment-834750626) at 2021-05-07 01:22 PM PDT -jamesberke,2021-05-07T23:30:58Z,- jamesberke pull request merged: [1530](https://github.com/hackforla/website/pull/1530#event-4705201805) at 2021-05-07 04:30 PM PDT -jamesberke,2021-05-12T02:07:36Z,- jamesberke assigned to issue: [1439](https://github.com/hackforla/website/issues/1439) at 2021-05-11 07:07 PM PDT -jamesberke,2021-05-12T02:14:49Z,- jamesberke commented on issue: [1439](https://github.com/hackforla/website/issues/1439#issuecomment-839379691) at 2021-05-11 07:14 PM PDT -jamesberke,2021-05-16T17:47:42Z,- jamesberke commented on issue: [1439](https://github.com/hackforla/website/issues/1439#issuecomment-841851152) at 2021-05-16 10:47 AM PDT -jamesberke,2021-05-21T03:17:32Z,- jamesberke opened pull request: [1601](https://github.com/hackforla/website/pull/1601) at 2021-05-20 08:17 PM PDT -jamesberke,2021-05-21T03:33:47Z,- jamesberke assigned to issue: [1592](https://github.com/hackforla/website/issues/1592) at 2021-05-20 08:33 PM PDT -jamesberke,2021-05-21T16:04:57Z,- jamesberke pull request merged: [1601](https://github.com/hackforla/website/pull/1601#event-4780155073) at 2021-05-21 09:04 AM PDT -jamesberke,2021-05-22T01:15:37Z,- jamesberke closed issue as completed: [1439](https://github.com/hackforla/website/issues/1439#event-4781793620) at 2021-05-21 06:15 PM PDT -jamesberke,2021-05-22T20:42:47Z,- jamesberke commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846461179) at 2021-05-22 01:42 PM PDT -jamesberke,2021-05-23T18:25:33Z,- jamesberke commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846604795) at 2021-05-23 11:25 AM PDT -jamesberke,2021-05-30T16:56:33Z,- jamesberke commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-851029649) at 2021-05-30 09:56 AM PDT -jamesberke,2021-06-02T03:21:56Z,- jamesberke opened pull request: [1681](https://github.com/hackforla/website/pull/1681) at 2021-06-01 08:21 PM PDT -jamesberke,2021-06-02T19:19:44Z,- jamesberke pull request merged: [1681](https://github.com/hackforla/website/pull/1681#event-4833666868) at 2021-06-02 12:19 PM PDT -jamesberke,2021-06-04T00:36:49Z,- jamesberke commented on issue: [1635](https://github.com/hackforla/website/issues/1635#issuecomment-854272828) at 2021-06-03 05:36 PM PDT -jamesberke,2021-06-07T16:41:19Z,- jamesberke assigned to issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-835632636) at 2021-06-07 09:41 AM PDT -jamesberke,2021-06-07T17:20:40Z,- jamesberke commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-856118564) at 2021-06-07 10:20 AM PDT -jamesberke,2021-06-07T17:36:30Z,- jamesberke opened pull request: [1700](https://github.com/hackforla/website/pull/1700) at 2021-06-07 10:36 AM PDT -jamesberke,2021-06-07T21:30:35Z,- jamesberke commented on pull request: [1700](https://github.com/hackforla/website/pull/1700#issuecomment-856277103) at 2021-06-07 02:30 PM PDT -jamesberke,2021-06-07T21:34:03Z,- jamesberke pull request closed w/o merging: [1700](https://github.com/hackforla/website/pull/1700#event-4854510160) at 2021-06-07 02:34 PM PDT -jamesberke,2021-06-29T18:11:34Z,- jamesberke commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-870809436) at 2021-06-29 11:11 AM PDT -jamesberke,2021-07-11T17:37:16Z,- jamesberke unassigned from issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877612854) at 2021-07-11 10:37 AM PDT -jamhpark,8188,SKILLS ISSUE -jamhpark,2025-06-17T03:23:29Z,- jamhpark opened issue: [8188](https://github.com/hackforla/website/issues/8188) at 2025-06-16 08:23 PM PDT -jamhpark,2025-06-17T03:23:29Z,- jamhpark assigned to issue: [8188](https://github.com/hackforla/website/issues/8188) at 2025-06-16 08:23 PM PDT -jamhpark,2025-06-18T03:10:15Z,- jamhpark commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-2982494544) at 2025-06-17 08:10 PM PDT -jamhpark,2025-06-18T22:00:04Z,- jamhpark commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-2985810493) at 2025-06-18 03:00 PM PDT -jamhpark,2025-06-22T17:45:42Z,- jamhpark assigned to issue: [8002](https://github.com/hackforla/website/issues/8002) at 2025-06-22 10:45 AM PDT -jamhpark,2025-06-25T06:16:54Z,- jamhpark commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-3003482841) at 2025-06-24 11:16 PM PDT -jamhpark,2025-06-27T01:12:39Z,- jamhpark commented on issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-3010978420) at 2025-06-26 06:12 PM PDT -jamhpark,2025-06-27T01:14:47Z,- jamhpark commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-3010982530) at 2025-06-26 06:14 PM PDT -jamhpark,2025-06-28T05:39:28Z,- jamhpark commented on issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-3014991321) at 2025-06-27 10:39 PM PDT -jamhpark,2025-06-28T05:40:52Z,- jamhpark commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-3014991947) at 2025-06-27 10:40 PM PDT -jamhpark,2025-07-04T03:28:07Z,- jamhpark opened pull request: [8242](https://github.com/hackforla/website/pull/8242) at 2025-07-03 08:28 PM PDT -jamhpark,2025-07-10T23:21:34Z,- jamhpark commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3059496603) at 2025-07-10 04:21 PM PDT -jamhpark,2025-07-20T00:09:19Z,- jamhpark commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3092643823) at 2025-07-19 05:09 PM PDT -jamhpark,2025-07-20T00:15:40Z,- jamhpark unassigned from issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-3014991321) at 2025-07-19 05:15 PM PDT -janice87,4173,SKILLS ISSUE -janice87,2023-03-14T03:37:55Z,- janice87 opened issue: [4173](https://github.com/hackforla/website/issues/4173) at 2023-03-13 08:37 PM PDT -janice87,2023-03-14T03:40:20Z,- janice87 assigned to issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1467302208) at 2023-03-13 08:40 PM PDT -janice87,2023-03-19T19:39:09Z,- janice87 assigned to issue: [3876](https://github.com/hackforla/website/issues/3876) at 2023-03-19 12:39 PM PDT -janice87,2023-03-19T20:23:05Z,- janice87 opened pull request: [4213](https://github.com/hackforla/website/pull/4213) at 2023-03-19 01:23 PM PDT -janice87,2023-03-19T23:58:10Z,- janice87 commented on pull request: [4213](https://github.com/hackforla/website/pull/4213#issuecomment-1475442264) at 2023-03-19 04:58 PM PDT -janice87,2023-03-20T00:01:21Z,- janice87 commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1475443450) at 2023-03-19 05:01 PM PDT -janice87,2023-03-20T15:09:41Z,- janice87 commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1476409487) at 2023-03-20 08:09 AM PDT -janice87,2023-03-20T15:38:09Z,- janice87 submitted pull request review: [4215](https://github.com/hackforla/website/pull/4215#pullrequestreview-1348849984) at 2023-03-20 08:38 AM PDT -janice87,2023-03-20T22:50:48Z,- janice87 pull request merged: [4213](https://github.com/hackforla/website/pull/4213#event-8799920296) at 2023-03-20 03:50 PM PDT -janice87,2023-03-21T23:50:29Z,- janice87 commented on pull request: [4228](https://github.com/hackforla/website/pull/4228#issuecomment-1478736473) at 2023-03-21 04:50 PM PDT -janice87,2023-03-22T00:58:03Z,- janice87 submitted pull request review: [4228](https://github.com/hackforla/website/pull/4228#pullrequestreview-1351574579) at 2023-03-21 05:58 PM PDT -janice87,2023-03-22T01:04:40Z,- janice87 assigned to issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1386434200) at 2023-03-21 06:04 PM PDT -janice87,2023-03-22T01:11:36Z,- janice87 commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1478786523) at 2023-03-21 06:11 PM PDT -janice87,2023-03-22T02:14:11Z,- janice87 commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1478828173) at 2023-03-21 07:14 PM PDT -janice87,2023-03-22T17:50:30Z,- janice87 commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1480011957) at 2023-03-22 10:50 AM PDT -janice87,2023-03-23T00:54:16Z,- janice87 commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1480435618) at 2023-03-22 05:54 PM PDT -janice87,2023-03-24T10:19:28Z,- janice87 commented on pull request: [4273](https://github.com/hackforla/website/pull/4273#issuecomment-1482567391) at 2023-03-24 03:19 AM PDT -janice87,2023-03-24T10:40:01Z,- janice87 submitted pull request review: [4273](https://github.com/hackforla/website/pull/4273#pullrequestreview-1356422955) at 2023-03-24 03:40 AM PDT -janice87,2023-03-24T10:42:47Z,- janice87 commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1482596000) at 2023-03-24 03:42 AM PDT -janice87,2023-03-25T11:59:05Z,- janice87 submitted pull request review: [4267](https://github.com/hackforla/website/pull/4267#pullrequestreview-1357823996) at 2023-03-25 04:59 AM PDT -janice87,2023-03-25T12:13:12Z,- janice87 assigned to issue: [4287](https://github.com/hackforla/website/issues/4287) at 2023-03-25 05:13 AM PDT -janice87,2023-03-25T12:15:43Z,- janice87 commented on issue: [4287](https://github.com/hackforla/website/issues/4287#issuecomment-1483809355) at 2023-03-25 05:15 AM PDT -janice87,2023-03-26T15:00:39Z,- janice87 opened pull request: [4292](https://github.com/hackforla/website/pull/4292) at 2023-03-26 08:00 AM PDT -janice87,2023-03-27T03:58:12Z,- janice87 unassigned from issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1480435618) at 2023-03-26 08:58 PM PDT -janice87,2023-03-27T03:58:37Z,- janice87 assigned to issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1480435618) at 2023-03-26 08:58 PM PDT -janice87,2023-03-27T23:59:42Z,- janice87 commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1486015008) at 2023-03-27 04:59 PM PDT -janice87,2023-03-28T00:27:12Z,- janice87 assigned to issue: [4269](https://github.com/hackforla/website/issues/4269#issuecomment-1484484986) at 2023-03-27 05:27 PM PDT -janice87,2023-03-28T00:29:24Z,- janice87 commented on issue: [4269](https://github.com/hackforla/website/issues/4269#issuecomment-1486040178) at 2023-03-27 05:29 PM PDT -janice87,2023-03-28T22:21:12Z,- janice87 pull request merged: [4292](https://github.com/hackforla/website/pull/4292#event-8870107679) at 2023-03-28 03:21 PM PDT -janice87,2023-03-29T01:23:35Z,- janice87 opened pull request: [4308](https://github.com/hackforla/website/pull/4308) at 2023-03-28 06:23 PM PDT -janice87,2023-03-29T01:31:46Z,- janice87 commented on pull request: [4304](https://github.com/hackforla/website/pull/4304#issuecomment-1487822173) at 2023-03-28 06:31 PM PDT -janice87,2023-03-29T15:20:55Z,- janice87 submitted pull request review: [4304](https://github.com/hackforla/website/pull/4304#pullrequestreview-1363386482) at 2023-03-29 08:20 AM PDT -janice87,2023-03-29T15:32:07Z,- janice87 commented on pull request: [4305](https://github.com/hackforla/website/pull/4305#issuecomment-1488851663) at 2023-03-29 08:32 AM PDT -janice87,2023-03-30T10:50:31Z,- janice87 submitted pull request review: [4305](https://github.com/hackforla/website/pull/4305#pullrequestreview-1364843258) at 2023-03-30 03:50 AM PDT -janice87,2023-03-30T20:06:50Z,- janice87 pull request merged: [4308](https://github.com/hackforla/website/pull/4308#event-8891429324) at 2023-03-30 01:06 PM PDT -janice87,2023-03-31T11:08:01Z,- janice87 commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1491753202) at 2023-03-31 04:08 AM PDT -janice87,2023-04-03T16:46:48Z,- janice87 assigned to issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1493684387) at 2023-04-03 09:46 AM PDT -janice87,2023-04-03T16:48:26Z,- janice87 commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1494656674) at 2023-04-03 09:48 AM PDT -janice87,2023-04-03T16:57:46Z,- janice87 commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1494668674) at 2023-04-03 09:57 AM PDT -janice87,2023-04-03T17:16:29Z,- janice87 submitted pull request review: [4374](https://github.com/hackforla/website/pull/4374#pullrequestreview-1369462163) at 2023-04-03 10:16 AM PDT -janice87,2023-04-04T16:48:13Z,- janice87 opened pull request: [4406](https://github.com/hackforla/website/pull/4406) at 2023-04-04 09:48 AM PDT -janice87,2023-04-04T22:36:37Z,- janice87 commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496685962) at 2023-04-04 03:36 PM PDT -janice87,2023-04-11T20:18:14Z,- janice87 commented on pull request: [4467](https://github.com/hackforla/website/pull/4467#issuecomment-1504037707) at 2023-04-11 01:18 PM PDT -janice87,2023-04-11T20:38:53Z,- janice87 submitted pull request review: [4467](https://github.com/hackforla/website/pull/4467#pullrequestreview-1380045003) at 2023-04-11 01:38 PM PDT -janice87,2023-04-11T22:53:50Z,- janice87 pull request merged: [4406](https://github.com/hackforla/website/pull/4406#event-8978772867) at 2023-04-11 03:53 PM PDT -janice87,2023-04-13T19:59:36Z,- janice87 commented on pull request: [4501](https://github.com/hackforla/website/pull/4501#issuecomment-1507537975) at 2023-04-13 12:59 PM PDT -janice87,2023-04-14T03:07:59Z,- janice87 submitted pull request review: [4501](https://github.com/hackforla/website/pull/4501#pullrequestreview-1384537463) at 2023-04-13 08:07 PM PDT -janieche,2021-07-30T22:00:15Z,- janieche assigned to issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-879536782) at 2021-07-30 03:00 PM PDT -janieche,2021-07-30T22:21:44Z,- janieche commented on issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-890217200) at 2021-07-30 03:21 PM PDT -janieche,2021-08-04T18:38:58Z,- janieche commented on issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-892884125) at 2021-08-04 11:38 AM PDT -janieche,2021-08-05T15:00:46Z,- janieche assigned to issue: [2016](https://github.com/hackforla/website/issues/2016) at 2021-08-05 08:00 AM PDT -janieche,2021-08-05T15:04:15Z,- janieche unassigned from issue: [2016](https://github.com/hackforla/website/issues/2016) at 2021-08-05 08:04 AM PDT -janieche,2021-08-05T15:05:57Z,- janieche assigned to issue: [2020](https://github.com/hackforla/website/issues/2020) at 2021-08-05 08:05 AM PDT -janieche,2021-08-05T15:39:13Z,- janieche unassigned from issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-893559681) at 2021-08-05 08:39 AM PDT -janieche,2021-08-06T16:28:20Z,- janieche commented on issue: [2020](https://github.com/hackforla/website/issues/2020#issuecomment-894374655) at 2021-08-06 09:28 AM PDT -janieche,2021-08-09T18:27:38Z,- janieche commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-895442120) at 2021-08-09 11:27 AM PDT -janieche,2021-08-09T18:43:33Z,- janieche commented on issue: [2020](https://github.com/hackforla/website/issues/2020#issuecomment-895453059) at 2021-08-09 11:43 AM PDT -janieche,2021-08-10T15:35:42Z,- janieche assigned to issue: [2016](https://github.com/hackforla/website/issues/2016) at 2021-08-10 08:35 AM PDT -janieche,2021-08-10T15:37:19Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-896122196) at 2021-08-10 08:37 AM PDT -janieche,2021-08-12T20:44:02Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-897954942) at 2021-08-12 01:44 PM PDT -janieche,2021-08-21T02:14:57Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-903038573) at 2021-08-20 07:14 PM PDT -janieche,2021-08-21T02:19:07Z,- janieche assigned to issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-894607328) at 2021-08-20 07:19 PM PDT -janieche,2021-08-21T19:59:41Z,- janieche commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-903169464) at 2021-08-21 12:59 PM PDT -janieche,2021-08-26T23:43:27Z,- janieche commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-906815104) at 2021-08-26 04:43 PM PDT -janieche,2021-08-29T15:56:28Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-907816143) at 2021-08-29 08:56 AM PDT -janieche,2021-09-01T21:01:58Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-910748917) at 2021-09-01 02:01 PM PDT -janieche,2021-09-05T15:45:46Z,- janieche commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-913178608) at 2021-09-05 08:45 AM PDT -janieche,2021-09-07T23:27:50Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-914690973) at 2021-09-07 04:27 PM PDT -janieche,2021-09-08T00:55:33Z,- janieche commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-914743354) at 2021-09-07 05:55 PM PDT -janieche,2021-09-08T04:37:05Z,- janieche assigned to issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-902306108) at 2021-09-07 09:37 PM PDT -janieche,2021-09-10T20:29:05Z,- janieche assigned to issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-910342111) at 2021-09-10 01:29 PM PDT -janieche,2021-09-18T18:50:41Z,- janieche commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-922355465) at 2021-09-18 11:50 AM PDT -janieche,2021-09-18T19:24:21Z,- janieche commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-922360412) at 2021-09-18 12:24 PM PDT -janieche,2021-09-19T17:28:00Z,- janieche commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-922508579) at 2021-09-19 10:28 AM PDT -janieche,2021-09-19T17:36:40Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-922509712) at 2021-09-19 10:36 AM PDT -janieche,2021-09-19T17:58:30Z,- janieche commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-922512454) at 2021-09-19 10:58 AM PDT -janieche,2021-09-23T15:45:33Z,- janieche commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-925935292) at 2021-09-23 08:45 AM PDT -janieche,2021-09-26T23:11:05Z,- janieche commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-927388942) at 2021-09-26 04:11 PM PDT -janieche,2021-10-14T16:55:00Z,- janieche unassigned from issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-941352359) at 2021-10-14 09:55 AM PDT -JanineSooThow,4988,SKILLS ISSUE -JanineSooThow,4996,SKILLS ISSUE -JanineSooThow,2023-07-18T02:07:34Z,- JanineSooThow opened issue: [4988](https://github.com/hackforla/website/issues/4988) at 2023-07-17 07:07 PM PDT -JanineSooThow,2023-07-18T02:31:40Z,- JanineSooThow opened issue: [4996](https://github.com/hackforla/website/issues/4996) at 2023-07-17 07:31 PM PDT -JanineSooThow,2023-07-18T02:31:41Z,- JanineSooThow assigned to issue: [4996](https://github.com/hackforla/website/issues/4996) at 2023-07-17 07:31 PM PDT -JanineSooThow,2023-07-27T09:58:02Z,- JanineSooThow commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1653292126) at 2023-07-27 02:58 AM PDT -JanineSooThow,2023-07-27T09:59:47Z,- JanineSooThow assigned to issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1653292126) at 2023-07-27 02:59 AM PDT -JanineSooThow,2023-07-27T10:24:10Z,- JanineSooThow commented on issue: [4996](https://github.com/hackforla/website/issues/4996#issuecomment-1653333017) at 2023-07-27 03:24 AM PDT -JanineSooThow,2023-07-27T10:24:10Z,- JanineSooThow closed issue as completed: [4996](https://github.com/hackforla/website/issues/4996#event-9934074208) at 2023-07-27 03:24 AM PDT -JanineSooThow,2023-08-05T10:19:58Z,- JanineSooThow commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1666463761) at 2023-08-05 03:19 AM PDT -JanineSooThow,2023-08-06T21:04:32Z,- JanineSooThow assigned to issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1641417572) at 2023-08-06 02:04 PM PDT -JanineSooThow,2023-08-06T21:08:16Z,- JanineSooThow commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1666968238) at 2023-08-06 02:08 PM PDT -JanineSooThow,2023-08-06T21:12:38Z,- JanineSooThow commented on issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1666968972) at 2023-08-06 02:12 PM PDT -JanineSooThow,2023-08-09T08:44:09Z,- JanineSooThow unassigned from issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1666968972) at 2023-08-09 01:44 AM PDT -JanineSooThow,2023-08-09T08:44:09Z,- JanineSooThow unassigned from issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1666968972) at 2023-08-09 01:44 AM PDT -JanineSooThow,2023-08-09T08:54:53Z,- JanineSooThow assigned to issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1666968972) at 2023-08-09 01:54 AM PDT -JanineSooThow,2023-08-09T08:57:48Z,- JanineSooThow commented on issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1670938173) at 2023-08-09 01:57 AM PDT -JanineSooThow,2023-08-09T17:38:28Z,- JanineSooThow commented on issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1671866900) at 2023-08-09 10:38 AM PDT -JanineSooThow,2023-08-10T02:40:38Z,- JanineSooThow commented on issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1672465328) at 2023-08-09 07:40 PM PDT -JanineSooThow,2023-08-10T02:46:03Z,- JanineSooThow commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1672469872) at 2023-08-09 07:46 PM PDT -JanineSooThow,2023-08-10T02:46:03Z,- JanineSooThow closed issue as completed: [4988](https://github.com/hackforla/website/issues/4988#event-10054045320) at 2023-08-09 07:46 PM PDT -JanineSooThow,2023-08-12T04:10:56Z,- JanineSooThow commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1675677733) at 2023-08-11 09:10 PM PDT -JanineSooThow,2023-08-30T00:53:56Z,- JanineSooThow assigned to issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1676447353) at 2023-08-29 05:53 PM PDT -JanineSooThow,2023-08-30T02:18:23Z,- JanineSooThow commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1698390737) at 2023-08-29 07:18 PM PDT -JanineSooThow,2023-09-03T00:11:43Z,- JanineSooThow opened pull request: [5422](https://github.com/hackforla/website/pull/5422) at 2023-09-02 05:11 PM PDT -JanineSooThow,2023-09-03T00:16:11Z,- JanineSooThow commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1703970527) at 2023-09-02 05:16 PM PDT -JanineSooThow,2023-09-06T22:40:51Z,- JanineSooThow commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1709219869) at 2023-09-06 03:40 PM PDT -JanineSooThow,2023-09-11T00:15:11Z,- JanineSooThow commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1712983605) at 2023-09-10 05:15 PM PDT -JanineSooThow,2023-09-11T00:18:52Z,- JanineSooThow commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1712985347) at 2023-09-10 05:18 PM PDT -JanineSooThow,2023-09-11T01:03:53Z,- JanineSooThow pull request merged: [5422](https://github.com/hackforla/website/pull/5422#event-10327815408) at 2023-09-10 06:03 PM PDT -JanineSooThow,2023-09-19T07:47:49Z,- JanineSooThow assigned to issue: [5524](https://github.com/hackforla/website/issues/5524#issuecomment-1720323483) at 2023-09-19 12:47 AM PDT -JanineSooThow,2023-09-19T07:49:19Z,- JanineSooThow commented on issue: [5524](https://github.com/hackforla/website/issues/5524#issuecomment-1724999153) at 2023-09-19 12:49 AM PDT -JanineSooThow,2023-09-19T08:05:24Z,- JanineSooThow commented on issue: [5524](https://github.com/hackforla/website/issues/5524#issuecomment-1725021755) at 2023-09-19 01:05 AM PDT -JanineSooThow,2023-09-27T02:38:01Z,- JanineSooThow commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1736583151) at 2023-09-26 07:38 PM PDT -JanineSooThow,2023-09-27T03:13:28Z,- JanineSooThow commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1736607553) at 2023-09-26 08:13 PM PDT -JanineSooThow,2023-09-28T07:55:22Z,- JanineSooThow commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1738659352) at 2023-09-28 12:55 AM PDT -JanineSooThow,2023-09-30T08:47:13Z,- JanineSooThow commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1741717416) at 2023-09-30 01:47 AM PDT -JanineSooThow,2023-10-08T10:28:37Z,- JanineSooThow commented on pull request: [5672](https://github.com/hackforla/website/pull/5672#issuecomment-1751989733) at 2023-10-08 03:28 AM PDT -JanineSooThow,2023-10-09T08:57:54Z,- JanineSooThow submitted pull request review: [5672](https://github.com/hackforla/website/pull/5672#pullrequestreview-1663998252) at 2023-10-09 01:57 AM PDT -JanineSooThow,2023-10-09T09:08:59Z,- JanineSooThow commented on pull request: [5682](https://github.com/hackforla/website/pull/5682#issuecomment-1752611562) at 2023-10-09 02:08 AM PDT -JanineSooThow,2023-10-09T09:14:30Z,- JanineSooThow assigned to issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1720826133) at 2023-10-09 02:14 AM PDT -JanineSooThow,2023-10-09T09:15:17Z,- JanineSooThow commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1752621103) at 2023-10-09 02:15 AM PDT -JanineSooThow,2023-10-09T09:25:48Z,- JanineSooThow submitted pull request review: [5682](https://github.com/hackforla/website/pull/5682#pullrequestreview-1664044881) at 2023-10-09 02:25 AM PDT -JanineSooThow,2023-10-12T04:39:43Z,- JanineSooThow commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1758899660) at 2023-10-11 09:39 PM PDT -JanineSooThow,2023-10-22T05:57:55Z,- JanineSooThow commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1774003730) at 2023-10-21 10:57 PM PDT -JanineSooThow,2023-10-22T07:42:19Z,- JanineSooThow commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1774021919) at 2023-10-22 12:42 AM PDT -JanineSooThow,2023-11-08T02:54:16Z,- JanineSooThow opened pull request: [5883](https://github.com/hackforla/website/pull/5883) at 2023-11-07 06:54 PM PST -JanineSooThow,2023-11-08T03:00:29Z,- JanineSooThow commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1800932882) at 2023-11-07 07:00 PM PST -JanineSooThow,2023-11-08T03:03:36Z,- JanineSooThow commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1800936047) at 2023-11-07 07:03 PM PST -JanineSooThow,2023-11-11T02:52:09Z,- JanineSooThow commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1806644940) at 2023-11-10 06:52 PM PST -JanineSooThow,2023-11-15T01:35:47Z,- JanineSooThow commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1811661052) at 2023-11-14 05:35 PM PST -JanineSooThow,2023-11-15T23:44:25Z,- JanineSooThow commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1813473926) at 2023-11-15 03:44 PM PST -JanineSooThow,2023-11-17T23:16:23Z,- JanineSooThow commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1817238778) at 2023-11-17 03:16 PM PST -JanineSooThow,2023-11-20T23:37:51Z,- JanineSooThow commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1819977604) at 2023-11-20 03:37 PM PST -JanineSooThow,2023-11-21T07:28:04Z,- JanineSooThow commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1820371596) at 2023-11-20 11:28 PM PST -JanineSooThow,2023-11-21T07:28:44Z,- JanineSooThow submitted pull request review: [5901](https://github.com/hackforla/website/pull/5901#pullrequestreview-1741270705) at 2023-11-20 11:28 PM PST -JanineSooThow,2023-11-21T08:05:46Z,- JanineSooThow commented on pull request: [5927](https://github.com/hackforla/website/pull/5927#issuecomment-1820417024) at 2023-11-21 12:05 AM PST -JanineSooThow,2023-11-21T08:16:53Z,- JanineSooThow commented on pull request: [5927](https://github.com/hackforla/website/pull/5927#issuecomment-1820431571) at 2023-11-21 12:16 AM PST -JanineSooThow,2023-11-21T08:17:08Z,- JanineSooThow submitted pull request review: [5927](https://github.com/hackforla/website/pull/5927#pullrequestreview-1741350999) at 2023-11-21 12:17 AM PST -JanineSooThow,2023-12-02T01:16:10Z,- JanineSooThow pull request merged: [5883](https://github.com/hackforla/website/pull/5883#event-11127695661) at 2023-12-01 05:16 PM PST -JanineSooThow,2023-12-18T23:52:19Z,- JanineSooThow assigned to issue: [5707](https://github.com/hackforla/website/issues/5707) at 2023-12-18 03:52 PM PST -JanineSooThow,2023-12-18T23:53:36Z,- JanineSooThow commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1861873544) at 2023-12-18 03:53 PM PST -JanineSooThow,2024-01-03T01:07:09Z,- JanineSooThow commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1874740969) at 2024-01-02 05:07 PM PST -JanineSooThow,2024-01-03T01:07:23Z,- JanineSooThow unassigned from issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1874740969) at 2024-01-02 05:07 PM PST -Janis-Mollineau,2025-01-31T01:15:01Z,- Janis-Mollineau opened issue: [7864](https://github.com/hackforla/website/issues/7864) at 2025-01-30 05:15 PM PST -Janis-Mollineau,2025-01-31T01:16:43Z,- Janis-Mollineau commented on issue: [7864](https://github.com/hackforla/website/issues/7864#issuecomment-2626073080) at 2025-01-30 05:16 PM PST -Janis-Mollineau,2025-01-31T01:16:43Z,- Janis-Mollineau closed issue as completed: [7864](https://github.com/hackforla/website/issues/7864#event-16132545417) at 2025-01-30 05:16 PM PST -Janis-Mollineau,2025-01-31T01:22:59Z,- Janis-Mollineau opened issue: [7865](https://github.com/hackforla/website/issues/7865) at 2025-01-30 05:22 PM PST -Janis-Mollineau,2025-01-31T14:15:48Z,- Janis-Mollineau opened issue: [7867](https://github.com/hackforla/website/issues/7867) at 2025-01-31 06:15 AM PST -Janis-Mollineau,2025-01-31T15:09:15Z,- Janis-Mollineau opened issue: [7868](https://github.com/hackforla/website/issues/7868) at 2025-01-31 07:09 AM PST -Janis-Mollineau,2025-03-16T14:58:03Z,- Janis-Mollineau opened issue: [7991](https://github.com/hackforla/website/issues/7991) at 2025-03-16 07:58 AM PDT -Janis-Mollineau,2025-03-16T14:58:11Z,- Janis-Mollineau assigned to issue: [7991](https://github.com/hackforla/website/issues/7991) at 2025-03-16 07:58 AM PDT -Janis-Mollineau,2025-03-17T21:04:50Z,- Janis-Mollineau unassigned from issue: [7991](https://github.com/hackforla/website/issues/7991#issuecomment-2727485564) at 2025-03-17 02:04 PM PDT -Janis-Mollineau,2025-03-21T00:00:32Z,- Janis-Mollineau opened issue: [8009](https://github.com/hackforla/website/issues/8009) at 2025-03-20 05:00 PM PDT -Janis-Mollineau,2025-03-21T00:00:36Z,- Janis-Mollineau assigned to issue: [8009](https://github.com/hackforla/website/issues/8009) at 2025-03-20 05:00 PM PDT -Janis-Mollineau,2025-03-25T18:24:17Z,- Janis-Mollineau unassigned from issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2745913516) at 2025-03-25 11:24 AM PDT -Janis-Mollineau,2025-03-30T16:39:16Z,- Janis-Mollineau opened issue: [8023](https://github.com/hackforla/website/issues/8023) at 2025-03-30 09:39 AM PDT -Janis-Mollineau,2025-03-30T16:39:25Z,- Janis-Mollineau assigned to issue: [8023](https://github.com/hackforla/website/issues/8023) at 2025-03-30 09:39 AM PDT -Janis-Mollineau,2025-03-30T16:41:25Z,- Janis-Mollineau assigned to issue: [7867](https://github.com/hackforla/website/issues/7867#event-16817704228) at 2025-03-30 09:41 AM PDT -Jaretzbalba,2838,SKILLS ISSUE -Jaretzbalba,2022-02-22T03:18:55Z,- Jaretzbalba opened issue: [2838](https://github.com/hackforla/website/issues/2838) at 2022-02-21 07:18 PM PST -Jaretzbalba,2022-02-22T03:27:22Z,- Jaretzbalba assigned to issue: [2838](https://github.com/hackforla/website/issues/2838#issuecomment-1047387139) at 2022-02-21 07:27 PM PST -Jaretzbalba,2022-03-06T06:28:40Z,- Jaretzbalba commented on issue: [2838](https://github.com/hackforla/website/issues/2838#issuecomment-1059904315) at 2022-03-05 10:28 PM PST -Jaretzbalba,2022-03-11T17:53:10Z,- Jaretzbalba assigned to issue: [2907](https://github.com/hackforla/website/issues/2907#issuecomment-1055987213) at 2022-03-11 09:53 AM PST -Jaretzbalba,2022-03-11T18:08:17Z,- Jaretzbalba commented on issue: [2907](https://github.com/hackforla/website/issues/2907#issuecomment-1065357931) at 2022-03-11 10:08 AM PST -Jaretzbalba,2022-03-11T18:50:38Z,- Jaretzbalba opened pull request: [2966](https://github.com/hackforla/website/pull/2966) at 2022-03-11 10:50 AM PST -Jaretzbalba,2022-03-12T09:52:05Z,- Jaretzbalba pull request merged: [2966](https://github.com/hackforla/website/pull/2966#event-6229496788) at 2022-03-12 02:52 AM PDT -Jaretzbalba,2022-03-14T22:44:36Z,- Jaretzbalba closed issue as completed: [2838](https://github.com/hackforla/website/issues/2838#event-6239166961) at 2022-03-14 03:44 PM PDT -Jaretzbalba,2022-03-14T22:53:53Z,- Jaretzbalba assigned to issue: [2887](https://github.com/hackforla/website/issues/2887#issuecomment-1053598143) at 2022-03-14 03:53 PM PDT -Jaretzbalba,2022-03-14T23:33:42Z,- Jaretzbalba opened pull request: [2981](https://github.com/hackforla/website/pull/2981) at 2022-03-14 04:33 PM PDT -Jaretzbalba,2022-03-14T23:42:55Z,- Jaretzbalba assigned to issue: [2886](https://github.com/hackforla/website/issues/2886#issuecomment-1050471253) at 2022-03-14 04:42 PM PDT -Jaretzbalba,2022-03-15T00:03:34Z,- Jaretzbalba opened pull request: [2982](https://github.com/hackforla/website/pull/2982) at 2022-03-14 05:03 PM PDT -Jaretzbalba,2022-03-15T15:20:26Z,- Jaretzbalba pull request merged: [2981](https://github.com/hackforla/website/pull/2981#event-6244142578) at 2022-03-15 08:20 AM PDT -Jaretzbalba,2022-03-21T08:16:28Z,- Jaretzbalba pull request merged: [2982](https://github.com/hackforla/website/pull/2982#event-6273479739) at 2022-03-21 01:16 AM PDT -Jaretzbalba,2022-03-21T20:19:38Z,- Jaretzbalba assigned to issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1063501879) at 2022-03-21 01:19 PM PDT -Jaretzbalba,2022-03-21T20:52:43Z,- Jaretzbalba opened pull request: [2997](https://github.com/hackforla/website/pull/2997) at 2022-03-21 01:52 PM PDT -Jaretzbalba,2022-03-22T16:46:41Z,- Jaretzbalba commented on pull request: [3000](https://github.com/hackforla/website/pull/3000#issuecomment-1075383025) at 2022-03-22 09:46 AM PDT -Jaretzbalba,2022-03-22T16:53:08Z,- Jaretzbalba submitted pull request review: [3000](https://github.com/hackforla/website/pull/3000#pullrequestreview-917566215) at 2022-03-22 09:53 AM PDT -Jaretzbalba,2022-03-23T00:47:50Z,- Jaretzbalba pull request closed w/o merging: [2997](https://github.com/hackforla/website/pull/2997#event-6287681100) at 2022-03-22 05:47 PM PDT -Jaretzbalba,2022-03-23T00:48:27Z,- Jaretzbalba unassigned from issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1075792069) at 2022-03-22 05:48 PM PDT -Jaretzbalba,2022-03-23T20:41:26Z,- Jaretzbalba assigned to issue: [2760](https://github.com/hackforla/website/issues/2760#issuecomment-1034232970) at 2022-03-23 01:41 PM PDT -Jaretzbalba,2022-03-23T21:18:03Z,- Jaretzbalba opened pull request: [3007](https://github.com/hackforla/website/pull/3007) at 2022-03-23 02:18 PM PDT -Jaretzbalba,2022-03-23T23:18:49Z,- Jaretzbalba commented on issue: [2760](https://github.com/hackforla/website/issues/2760#issuecomment-1076911292) at 2022-03-23 04:18 PM PDT -Jaretzbalba,2022-03-25T03:51:20Z,- Jaretzbalba pull request merged: [3007](https://github.com/hackforla/website/pull/3007#event-6304475393) at 2022-03-24 08:51 PM PDT -Jaretzbalba,2022-03-25T16:47:44Z,- Jaretzbalba commented on pull request: [3010](https://github.com/hackforla/website/pull/3010#issuecomment-1079211004) at 2022-03-25 09:47 AM PDT -Jaretzbalba,2022-03-25T16:48:57Z,- Jaretzbalba submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-921904583) at 2022-03-25 09:48 AM PDT -Jaretzbalba,2022-03-27T06:44:58Z,- Jaretzbalba commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1079852516) at 2022-03-26 11:44 PM PDT -Jaretzbalba,2022-03-28T15:22:23Z,- Jaretzbalba submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-923328476) at 2022-03-28 08:22 AM PDT -Jaretzbalba,2022-03-28T15:40:00Z,- Jaretzbalba submitted pull request review: [3015](https://github.com/hackforla/website/pull/3015#pullrequestreview-923354601) at 2022-03-28 08:40 AM PDT -Jaretzbalba,2022-03-28T15:47:50Z,- Jaretzbalba assigned to issue: [2764](https://github.com/hackforla/website/issues/2764#issuecomment-1035854914) at 2022-03-28 08:47 AM PDT -Jaretzbalba,2022-03-28T16:46:53Z,- Jaretzbalba opened pull request: [3020](https://github.com/hackforla/website/pull/3020) at 2022-03-28 09:46 AM PDT -Jaretzbalba,2022-04-01T16:01:43Z,- Jaretzbalba commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1086088683) at 2022-04-01 09:01 AM PDT -Jaretzbalba,2022-04-03T16:31:48Z,- Jaretzbalba commented on pull request: [3029](https://github.com/hackforla/website/pull/3029#issuecomment-1086902871) at 2022-04-03 09:31 AM PDT -Jaretzbalba,2022-04-03T16:35:09Z,- Jaretzbalba commented on pull request: [3030](https://github.com/hackforla/website/pull/3030#issuecomment-1086903504) at 2022-04-03 09:35 AM PDT -Jaretzbalba,2022-04-04T20:10:56Z,- Jaretzbalba submitted pull request review: [3029](https://github.com/hackforla/website/pull/3029#pullrequestreview-930898643) at 2022-04-04 01:10 PM PDT -Jaretzbalba,2022-04-04T20:20:49Z,- Jaretzbalba submitted pull request review: [3030](https://github.com/hackforla/website/pull/3030#pullrequestreview-930908562) at 2022-04-04 01:20 PM PDT -Jaretzbalba,2022-04-05T03:43:29Z,- Jaretzbalba pull request merged: [3020](https://github.com/hackforla/website/pull/3020#event-6367677204) at 2022-04-04 08:43 PM PDT -Jaretzbalba,2022-04-05T04:17:43Z,- Jaretzbalba assigned to issue: [3022](https://github.com/hackforla/website/issues/3022#issuecomment-1086742590) at 2022-04-04 09:17 PM PDT -Jaretzbalba,2022-04-06T21:20:07Z,- Jaretzbalba commented on issue: [3022](https://github.com/hackforla/website/issues/3022#issuecomment-1090819374) at 2022-04-06 02:20 PM PDT -Jaretzbalba,2022-04-11T21:28:47Z,- Jaretzbalba opened pull request: [3043](https://github.com/hackforla/website/pull/3043) at 2022-04-11 02:28 PM PDT -Jaretzbalba,2022-04-12T16:11:10Z,- Jaretzbalba commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1096925005) at 2022-04-12 09:11 AM PDT -Jaretzbalba,2022-04-12T23:50:32Z,- Jaretzbalba commented on pull request: [3046](https://github.com/hackforla/website/pull/3046#issuecomment-1097385523) at 2022-04-12 04:50 PM PDT -Jaretzbalba,2022-04-13T03:08:04Z,- Jaretzbalba commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1097504731) at 2022-04-12 08:08 PM PDT -Jaretzbalba,2022-04-13T16:52:42Z,- Jaretzbalba submitted pull request review: [3046](https://github.com/hackforla/website/pull/3046#pullrequestreview-941280544) at 2022-04-13 09:52 AM PDT -Jaretzbalba,2022-04-14T02:14:15Z,- Jaretzbalba commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1098641686) at 2022-04-13 07:14 PM PDT -Jaretzbalba,2022-04-14T23:10:15Z,- Jaretzbalba commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1099707397) at 2022-04-14 04:10 PM PDT -Jaretzbalba,2022-04-19T15:12:20Z,- Jaretzbalba submitted pull request review: [3067](https://github.com/hackforla/website/pull/3067#pullrequestreview-945883153) at 2022-04-19 08:12 AM PDT -Jaretzbalba,2022-04-25T17:27:05Z,- Jaretzbalba commented on pull request: [3081](https://github.com/hackforla/website/pull/3081#issuecomment-1108845220) at 2022-04-25 10:27 AM PDT -Jaretzbalba,2022-04-25T17:37:24Z,- Jaretzbalba submitted pull request review: [3081](https://github.com/hackforla/website/pull/3081#pullrequestreview-952228738) at 2022-04-25 10:37 AM PDT -Jaretzbalba,2022-05-01T07:03:57Z,- Jaretzbalba pull request merged: [3043](https://github.com/hackforla/website/pull/3043#event-6529043168) at 2022-05-01 12:03 AM PDT -Jaretzbalba,2022-05-02T20:52:39Z,- Jaretzbalba assigned to issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1038339054) at 2022-05-02 01:52 PM PDT -Jaretzbalba,2022-05-02T20:54:07Z,- Jaretzbalba commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1115357054) at 2022-05-02 01:54 PM PDT -Jaretzbalba,2022-05-02T22:43:00Z,- Jaretzbalba opened pull request: [3087](https://github.com/hackforla/website/pull/3087) at 2022-05-02 03:43 PM PDT -Jaretzbalba,2022-05-02T23:04:02Z,- Jaretzbalba commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1115449453) at 2022-05-02 04:04 PM PDT -Jaretzbalba,2022-05-04T17:00:14Z,- Jaretzbalba commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1117589322) at 2022-05-04 10:00 AM PDT -Jaretzbalba,2022-05-09T04:10:08Z,- Jaretzbalba commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1120618701) at 2022-05-08 09:10 PM PDT -Jaretzbalba,2022-05-11T02:27:25Z,- Jaretzbalba commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1123111570) at 2022-05-10 07:27 PM PDT -Jaretzbalba,2022-05-11T03:16:11Z,- Jaretzbalba commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1123135590) at 2022-05-10 08:16 PM PDT -Jaretzbalba,2022-05-11T18:07:08Z,- Jaretzbalba commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1124115495) at 2022-05-11 11:07 AM PDT -Jaretzbalba,2022-05-13T17:54:54Z,- Jaretzbalba commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126300529) at 2022-05-13 10:54 AM PDT -Jaretzbalba,2022-05-13T23:08:10Z,- Jaretzbalba commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126567946) at 2022-05-13 04:08 PM PDT -Jaretzbalba,2022-05-17T16:32:05Z,- Jaretzbalba commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1129080428) at 2022-05-17 09:32 AM PDT -Jaretzbalba,2022-05-17T16:47:34Z,- Jaretzbalba submitted pull request review: [3146](https://github.com/hackforla/website/pull/3146#pullrequestreview-975802642) at 2022-05-17 09:47 AM PDT -Jaretzbalba,2022-05-17T20:38:38Z,- Jaretzbalba commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1129296018) at 2022-05-17 01:38 PM PDT -Jaretzbalba,2022-05-17T20:41:23Z,- Jaretzbalba submitted pull request review: [3146](https://github.com/hackforla/website/pull/3146#pullrequestreview-976068797) at 2022-05-17 01:41 PM PDT -Jaretzbalba,2022-05-19T15:50:25Z,- Jaretzbalba commented on pull request: [3159](https://github.com/hackforla/website/pull/3159#issuecomment-1131895599) at 2022-05-19 08:50 AM PDT -Jaretzbalba,2022-05-19T17:01:13Z,- Jaretzbalba submitted pull request review: [3159](https://github.com/hackforla/website/pull/3159#pullrequestreview-978929760) at 2022-05-19 10:01 AM PDT -Jaretzbalba,2022-05-20T15:33:05Z,- Jaretzbalba submitted pull request review: [3159](https://github.com/hackforla/website/pull/3159#pullrequestreview-980306491) at 2022-05-20 08:33 AM PDT -Jaretzbalba,2022-05-20T15:35:07Z,- Jaretzbalba commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1133044591) at 2022-05-20 08:35 AM PDT -Jaretzbalba,2022-05-20T15:36:23Z,- Jaretzbalba commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1133045717) at 2022-05-20 08:36 AM PDT -Jaretzbalba,2022-05-20T15:53:41Z,- Jaretzbalba submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-980338521) at 2022-05-20 08:53 AM PDT -Jaretzbalba,2022-05-23T15:22:05Z,- Jaretzbalba commented on pull request: [3168](https://github.com/hackforla/website/pull/3168#issuecomment-1134813597) at 2022-05-23 08:22 AM PDT -Jaretzbalba,2022-05-23T17:59:16Z,- Jaretzbalba submitted pull request review: [3168](https://github.com/hackforla/website/pull/3168#pullrequestreview-982166499) at 2022-05-23 10:59 AM PDT -Jaretzbalba,2022-05-24T02:03:00Z,- Jaretzbalba closed issue by PR 3168: [2797](https://github.com/hackforla/website/issues/2797#event-6665193504) at 2022-05-23 07:03 PM PDT -Jaretzbalba,2022-05-24T02:07:06Z,- Jaretzbalba commented on pull request: [3169](https://github.com/hackforla/website/pull/3169#issuecomment-1135320359) at 2022-05-23 07:07 PM PDT -Jaretzbalba,2022-05-24T02:12:17Z,- Jaretzbalba submitted pull request review: [3169](https://github.com/hackforla/website/pull/3169#pullrequestreview-982512991) at 2022-05-23 07:12 PM PDT -Jaretzbalba,2022-05-24T02:14:28Z,- Jaretzbalba commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135323963) at 2022-05-23 07:14 PM PDT -Jaretzbalba,2022-05-24T02:17:35Z,- Jaretzbalba commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135325662) at 2022-05-23 07:17 PM PDT -Jaretzbalba,2022-05-24T02:22:10Z,- Jaretzbalba submitted pull request review: [3171](https://github.com/hackforla/website/pull/3171#pullrequestreview-982517757) at 2022-05-23 07:22 PM PDT -Jaretzbalba,2022-05-24T02:23:37Z,- Jaretzbalba closed issue by PR 3169: [2920](https://github.com/hackforla/website/issues/2920#event-6665257580) at 2022-05-23 07:23 PM PDT -Jaretzbalba,2022-05-24T02:37:31Z,- Jaretzbalba closed issue by PR 3171: [2794](https://github.com/hackforla/website/issues/2794#event-6665303518) at 2022-05-23 07:37 PM PDT -Jaretzbalba,2022-05-30T17:32:43Z,- Jaretzbalba commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1141370524) at 2022-05-30 10:32 AM PDT -Jaretzbalba,2022-05-30T17:36:17Z,- Jaretzbalba submitted pull request review: [3182](https://github.com/hackforla/website/pull/3182#pullrequestreview-989589835) at 2022-05-30 10:36 AM PDT -Jaretzbalba,2022-05-30T17:39:11Z,- Jaretzbalba commented on pull request: [3183](https://github.com/hackforla/website/pull/3183#issuecomment-1141374154) at 2022-05-30 10:39 AM PDT -Jaretzbalba,2022-05-30T17:46:24Z,- Jaretzbalba commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1141378194) at 2022-05-30 10:46 AM PDT -Jaretzbalba,2022-05-30T17:53:30Z,- Jaretzbalba submitted pull request review: [3179](https://github.com/hackforla/website/pull/3179#pullrequestreview-989598345) at 2022-05-30 10:53 AM PDT -Jaretzbalba,2022-05-30T18:00:15Z,- Jaretzbalba submitted pull request review: [3179](https://github.com/hackforla/website/pull/3179#pullrequestreview-989601594) at 2022-05-30 11:00 AM PDT -Jaretzbalba,2022-05-31T17:57:17Z,- Jaretzbalba closed issue by PR 3182: [2799](https://github.com/hackforla/website/issues/2799#event-6711764629) at 2022-05-31 10:57 AM PDT -Jaretzbalba,2022-06-01T17:31:06Z,- Jaretzbalba submitted pull request review: [3146](https://github.com/hackforla/website/pull/3146#pullrequestreview-992414058) at 2022-06-01 10:31 AM PDT -Jaretzbalba,2022-06-03T21:15:06Z,- Jaretzbalba submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-995545293) at 2022-06-03 02:15 PM PDT -Jaretzbalba,2022-06-03T21:18:49Z,- Jaretzbalba commented on pull request: [3193](https://github.com/hackforla/website/pull/3193#issuecomment-1146370040) at 2022-06-03 02:18 PM PDT -Jaretzbalba,2022-06-03T21:23:32Z,- Jaretzbalba submitted pull request review: [3193](https://github.com/hackforla/website/pull/3193#pullrequestreview-995553407) at 2022-06-03 02:23 PM PDT -Jaretzbalba,2022-06-03T21:24:08Z,- Jaretzbalba closed issue by PR 3193: [2798](https://github.com/hackforla/website/issues/2798#event-6739950352) at 2022-06-03 02:24 PM PDT -Jaretzbalba,2022-07-01T00:38:48Z,- Jaretzbalba pull request merged: [3087](https://github.com/hackforla/website/pull/3087#event-6914778408) at 2022-06-30 05:38 PM PDT -Jaretzbalba,2022-12-12T18:43:44Z,- Jaretzbalba assigned to issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1306531685) at 2022-12-12 10:43 AM PST -Jaretzbalba,2022-12-12T18:45:09Z,- Jaretzbalba commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347063554) at 2022-12-12 10:45 AM PST -Jaretzbalba,2022-12-12T20:02:09Z,- Jaretzbalba opened pull request: [3771](https://github.com/hackforla/website/pull/3771) at 2022-12-12 12:02 PM PST -Jaretzbalba,2022-12-13T02:13:06Z,- Jaretzbalba commented on pull request: [3771](https://github.com/hackforla/website/pull/3771#issuecomment-1347650341) at 2022-12-12 06:13 PM PST -Jaretzbalba,2022-12-14T06:33:32Z,- Jaretzbalba pull request merged: [3771](https://github.com/hackforla/website/pull/3771#event-8033411042) at 2022-12-13 10:33 PM PST -Jaretzbalba,2022-12-14T16:27:10Z,- Jaretzbalba commented on issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351728906) at 2022-12-14 08:27 AM PST -Jaretzbalba,2022-12-14T16:27:17Z,- Jaretzbalba assigned to issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351728906) at 2022-12-14 08:27 AM PST -Jaretzbalba,2022-12-14T16:31:45Z,- Jaretzbalba unassigned from issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351734938) at 2022-12-14 08:31 AM PST -Jaretzbalba,2022-12-20T23:46:55Z,- Jaretzbalba commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1360494808) at 2022-12-20 03:46 PM PST -Jaretzbalba,2022-12-20T23:47:01Z,- Jaretzbalba assigned to issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1360494808) at 2022-12-20 03:47 PM PST -Jaretzbalba,2022-12-27T19:48:24Z,- Jaretzbalba opened pull request: [3774](https://github.com/hackforla/website/pull/3774) at 2022-12-27 11:48 AM PST -Jaretzbalba,2022-12-29T19:29:05Z,- Jaretzbalba commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1367538777) at 2022-12-29 11:29 AM PST -Jaretzbalba,2023-01-05T17:01:14Z,- Jaretzbalba commented on pull request: [3795](https://github.com/hackforla/website/pull/3795#issuecomment-1372480878) at 2023-01-05 09:01 AM PST -Jaretzbalba,2023-01-05T17:08:12Z,- Jaretzbalba submitted pull request review: [3795](https://github.com/hackforla/website/pull/3795#pullrequestreview-1237743162) at 2023-01-05 09:08 AM PST -Jaretzbalba,2023-01-09T23:26:38Z,- Jaretzbalba pull request merged: [3774](https://github.com/hackforla/website/pull/3774#event-8186795204) at 2023-01-09 03:26 PM PST -Jaretzbalba,2023-01-12T22:23:40Z,- Jaretzbalba commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1381061263) at 2023-01-12 02:23 PM PST -Jaretzbalba,2023-01-15T22:42:00Z,- Jaretzbalba commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1383272691) at 2023-01-15 02:42 PM PST -Jaretzbalba,2023-01-15T22:43:35Z,- Jaretzbalba submitted pull request review: [3817](https://github.com/hackforla/website/pull/3817#pullrequestreview-1249374798) at 2023-01-15 02:43 PM PST -Jaretzbalba,2023-01-15T22:46:08Z,- Jaretzbalba commented on pull request: [3816](https://github.com/hackforla/website/pull/3816#issuecomment-1383273516) at 2023-01-15 02:46 PM PST -Jaretzbalba,2023-01-16T17:45:02Z,- Jaretzbalba submitted pull request review: [3816](https://github.com/hackforla/website/pull/3816#pullrequestreview-1250518060) at 2023-01-16 09:45 AM PST -Jaretzbalba,2023-01-16T20:16:02Z,- Jaretzbalba submitted pull request review: [3810](https://github.com/hackforla/website/pull/3810#pullrequestreview-1250632731) at 2023-01-16 12:16 PM PST -Jaretzbalba,2023-01-18T01:12:00Z,- Jaretzbalba assigned to issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1374747101) at 2023-01-17 05:12 PM PST -Jaretzbalba,2023-01-18T01:13:41Z,- Jaretzbalba commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1386321971) at 2023-01-17 05:13 PM PST -Jaretzbalba,2023-01-25T03:39:40Z,- Jaretzbalba commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1403055048) at 2023-01-24 07:39 PM PST -Jaretzbalba,2023-01-31T22:07:44Z,- Jaretzbalba submitted pull request review: [3845](https://github.com/hackforla/website/pull/3845#pullrequestreview-1278095420) at 2023-01-31 02:07 PM PST -Jaretzbalba,2023-01-31T22:10:00Z,- Jaretzbalba commented on pull request: [3901](https://github.com/hackforla/website/pull/3901#issuecomment-1411136352) at 2023-01-31 02:10 PM PST -Jaretzbalba,2023-02-06T15:31:48Z,- Jaretzbalba commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1419274740) at 2023-02-06 07:31 AM PST -Jaretzbalba,2023-02-13T05:20:45Z,- Jaretzbalba commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1427362461) at 2023-02-12 09:20 PM PST -Jaretzbalba,2023-02-13T05:26:39Z,- Jaretzbalba submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1294964092) at 2023-02-12 09:26 PM PST -Jaretzbalba,2023-02-13T17:39:23Z,- Jaretzbalba commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1428378645) at 2023-02-13 09:39 AM PST -Jaretzbalba,2023-02-13T17:42:56Z,- Jaretzbalba submitted pull request review: [3844](https://github.com/hackforla/website/pull/3844#pullrequestreview-1296157980) at 2023-02-13 09:42 AM PST -Jaretzbalba,2023-02-13T17:50:29Z,- Jaretzbalba commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1428395858) at 2023-02-13 09:50 AM PST -Jaretzbalba,2023-02-13T17:55:06Z,- Jaretzbalba submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1296175922) at 2023-02-13 09:55 AM PST -Jaretzbalba,2023-02-13T18:00:19Z,- Jaretzbalba commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1428408599) at 2023-02-13 10:00 AM PST -Jaretzbalba,2023-02-13T18:04:02Z,- Jaretzbalba submitted pull request review: [3964](https://github.com/hackforla/website/pull/3964#pullrequestreview-1296189171) at 2023-02-13 10:04 AM PST -Jaretzbalba,2023-02-13T18:13:11Z,- Jaretzbalba commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1428428465) at 2023-02-13 10:13 AM PST -Jaretzbalba,2023-02-21T19:04:41Z,- Jaretzbalba commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1438962699) at 2023-02-21 11:04 AM PST -Jaretzbalba,2023-02-21T19:14:26Z,- Jaretzbalba submitted pull request review: [4020](https://github.com/hackforla/website/pull/4020#pullrequestreview-1308028535) at 2023-02-21 11:14 AM PST -Jaretzbalba,2023-02-26T16:47:05Z,- Jaretzbalba commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1445406302) at 2023-02-26 08:47 AM PST -Jaretzbalba,2023-02-26T16:52:14Z,- Jaretzbalba submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1314699881) at 2023-02-26 08:52 AM PST -Jaretzbalba,2023-02-28T18:08:10Z,- Jaretzbalba opened pull request: [4056](https://github.com/hackforla/website/pull/4056) at 2023-02-28 10:08 AM PST -Jaretzbalba,2023-03-01T18:46:36Z,- Jaretzbalba commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1450682232) at 2023-03-01 10:46 AM PST -Jaretzbalba,2023-03-02T21:41:33Z,- Jaretzbalba commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1452586555) at 2023-03-02 01:41 PM PST -Jaretzbalba,2023-03-05T19:52:05Z,- Jaretzbalba pull request merged: [4056](https://github.com/hackforla/website/pull/4056#event-8668569545) at 2023-03-05 11:52 AM PST -Jaretzbalba,2023-03-09T20:31:53Z,- Jaretzbalba commented on issue: [4084](https://github.com/hackforla/website/issues/4084#issuecomment-1462741452) at 2023-03-09 12:31 PM PST -Jaretzbalba,2023-03-13T23:00:08Z,- Jaretzbalba commented on pull request: [4157](https://github.com/hackforla/website/pull/4157#issuecomment-1467091349) at 2023-03-13 04:00 PM PDT -Jaretzbalba,2023-03-13T23:03:26Z,- Jaretzbalba submitted pull request review: [4157](https://github.com/hackforla/website/pull/4157#pullrequestreview-1338081433) at 2023-03-13 04:03 PM PDT -Jaretzbalba,2023-03-13T23:10:10Z,- Jaretzbalba commented on pull request: [4156](https://github.com/hackforla/website/pull/4156#issuecomment-1467102407) at 2023-03-13 04:10 PM PDT -Jaretzbalba,2023-03-13T23:20:12Z,- Jaretzbalba submitted pull request review: [4156](https://github.com/hackforla/website/pull/4156#pullrequestreview-1338101609) at 2023-03-13 04:20 PM PDT -Jaretzbalba,2023-03-14T00:08:32Z,- Jaretzbalba commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1467149201) at 2023-03-13 05:08 PM PDT -Jaretzbalba,2023-03-14T21:42:04Z,- Jaretzbalba commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1468881974) at 2023-03-14 02:42 PM PDT -Jaretzbalba,2023-03-14T21:57:13Z,- Jaretzbalba commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1468895480) at 2023-03-14 02:57 PM PDT -Jaretzbalba,2023-03-14T21:58:43Z,- Jaretzbalba submitted pull request review: [4179](https://github.com/hackforla/website/pull/4179#pullrequestreview-1340336932) at 2023-03-14 02:58 PM PDT -Jaretzbalba,2023-03-16T19:08:07Z,- Jaretzbalba assigned to issue: [4112](https://github.com/hackforla/website/issues/4112#issuecomment-1457323941) at 2023-03-16 12:08 PM PDT -Jaretzbalba,2023-03-16T19:10:45Z,- Jaretzbalba commented on issue: [4112](https://github.com/hackforla/website/issues/4112#issuecomment-1472600935) at 2023-03-16 12:10 PM PDT -Jaretzbalba,2023-03-16T19:22:17Z,- Jaretzbalba commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1472616667) at 2023-03-16 12:22 PM PDT -Jaretzbalba,2023-03-16T21:27:04Z,- Jaretzbalba opened pull request: [4198](https://github.com/hackforla/website/pull/4198) at 2023-03-16 02:27 PM PDT -Jaretzbalba,2023-03-19T23:15:08Z,- Jaretzbalba pull request merged: [4198](https://github.com/hackforla/website/pull/4198#event-8788931268) at 2023-03-19 04:15 PM PDT -Jaretzbalba,2023-04-04T18:31:57Z,- Jaretzbalba commented on issue: [4351](https://github.com/hackforla/website/issues/4351#issuecomment-1496420772) at 2023-04-04 11:31 AM PDT -Jaretzbalba,2023-04-04T20:09:42Z,- Jaretzbalba commented on pull request: [4404](https://github.com/hackforla/website/pull/4404#issuecomment-1496537100) at 2023-04-04 01:09 PM PDT -Jaretzbalba,2023-04-04T20:14:31Z,- Jaretzbalba submitted pull request review: [4404](https://github.com/hackforla/website/pull/4404#pullrequestreview-1371713345) at 2023-04-04 01:14 PM PDT -Jaretzbalba,2023-04-04T20:27:41Z,- Jaretzbalba assigned to issue: [4350](https://github.com/hackforla/website/issues/4350#issuecomment-1493388903) at 2023-04-04 01:27 PM PDT -Jaretzbalba,2023-04-04T20:28:47Z,- Jaretzbalba commented on issue: [4350](https://github.com/hackforla/website/issues/4350#issuecomment-1496562696) at 2023-04-04 01:28 PM PDT -Jaretzbalba,2023-04-05T21:02:45Z,- Jaretzbalba commented on pull request: [4421](https://github.com/hackforla/website/pull/4421#issuecomment-1498155646) at 2023-04-05 02:02 PM PDT -Jaretzbalba,2023-04-05T21:31:17Z,- Jaretzbalba submitted pull request review: [4421](https://github.com/hackforla/website/pull/4421#pullrequestreview-1373722573) at 2023-04-05 02:31 PM PDT -Jaretzbalba,2023-04-06T23:06:38Z,- Jaretzbalba opened pull request: [4435](https://github.com/hackforla/website/pull/4435) at 2023-04-06 04:06 PM PDT -Jaretzbalba,2023-04-08T17:07:04Z,- Jaretzbalba commented on pull request: [4443](https://github.com/hackforla/website/pull/4443#issuecomment-1500935453) at 2023-04-08 10:07 AM PDT -Jaretzbalba,2023-04-08T17:30:41Z,- Jaretzbalba submitted pull request review: [4443](https://github.com/hackforla/website/pull/4443#pullrequestreview-1376787163) at 2023-04-08 10:30 AM PDT -Jaretzbalba,2023-04-11T18:16:51Z,- Jaretzbalba commented on pull request: [4467](https://github.com/hackforla/website/pull/4467#issuecomment-1503874430) at 2023-04-11 11:16 AM PDT -Jaretzbalba,2023-04-11T18:23:25Z,- Jaretzbalba submitted pull request review: [4467](https://github.com/hackforla/website/pull/4467#pullrequestreview-1379849174) at 2023-04-11 11:23 AM PDT -Jaretzbalba,2023-04-12T03:02:28Z,- Jaretzbalba opened issue: [4481](https://github.com/hackforla/website/issues/4481) at 2023-04-11 08:02 PM PDT -Jaretzbalba,2023-04-13T03:14:06Z,- Jaretzbalba pull request merged: [4435](https://github.com/hackforla/website/pull/4435#event-8992057622) at 2023-04-12 08:14 PM PDT -Jaretzbalba,2023-04-17T15:34:54Z,- Jaretzbalba commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1511609860) at 2023-04-17 08:34 AM PDT -Jaretzbalba,2023-04-17T15:38:38Z,- Jaretzbalba submitted pull request review: [4524](https://github.com/hackforla/website/pull/4524#pullrequestreview-1388423209) at 2023-04-17 08:38 AM PDT -Jaretzbalba,2023-04-18T15:00:30Z,- Jaretzbalba assigned to issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1503846178) at 2023-04-18 08:00 AM PDT -Jaretzbalba,2023-04-18T15:03:54Z,- Jaretzbalba commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1513318176) at 2023-04-18 08:03 AM PDT -Jaretzbalba,2023-05-01T14:13:29Z,- Jaretzbalba commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1529757507) at 2023-05-01 07:13 AM PDT -Jaretzbalba,2023-05-01T14:13:49Z,- Jaretzbalba unassigned from issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1529757507) at 2023-05-01 07:13 AM PDT -Jaretzbalba,2023-05-01T14:17:59Z,- Jaretzbalba assigned to issue: [4557](https://github.com/hackforla/website/issues/4557#issuecomment-1529044010) at 2023-05-01 07:17 AM PDT -Jaretzbalba,2023-05-01T14:19:06Z,- Jaretzbalba commented on issue: [4557](https://github.com/hackforla/website/issues/4557#issuecomment-1529767530) at 2023-05-01 07:19 AM PDT -Jaretzbalba,2023-05-08T23:21:09Z,- Jaretzbalba opened pull request: [4608](https://github.com/hackforla/website/pull/4608) at 2023-05-08 04:21 PM PDT -Jaretzbalba,2023-05-09T05:17:19Z,- Jaretzbalba commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1539425212) at 2023-05-08 10:17 PM PDT -Jaretzbalba,2023-05-11T17:50:11Z,- Jaretzbalba commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1544434617) at 2023-05-11 10:50 AM PDT -Jaretzbalba,2023-05-15T04:25:19Z,- Jaretzbalba pull request merged: [4608](https://github.com/hackforla/website/pull/4608#event-9241914733) at 2023-05-14 09:25 PM PDT -Jaretzbalba,2023-05-16T21:17:07Z,- Jaretzbalba commented on pull request: [4677](https://github.com/hackforla/website/pull/4677#issuecomment-1550368416) at 2023-05-16 02:17 PM PDT -Jaretzbalba,2023-05-16T21:17:17Z,- Jaretzbalba commented on pull request: [4677](https://github.com/hackforla/website/pull/4677#issuecomment-1550368479) at 2023-05-16 02:17 PM PDT -Jaretzbalba,2023-05-16T21:24:25Z,- Jaretzbalba submitted pull request review: [4677](https://github.com/hackforla/website/pull/4677#pullrequestreview-1429459016) at 2023-05-16 02:24 PM PDT -Jaretzbalba,2023-05-16T21:25:50Z,- Jaretzbalba commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1550374283) at 2023-05-16 02:25 PM PDT -Jaretzbalba,2023-05-16T22:25:09Z,- Jaretzbalba submitted pull request review: [4668](https://github.com/hackforla/website/pull/4668#pullrequestreview-1429523313) at 2023-05-16 03:25 PM PDT -JasonEb,2022-02-07T00:17:36Z,- JasonEb opened issue: [2743](https://github.com/hackforla/website/issues/2743) at 2022-02-06 04:17 PM PST -JasonEb,2023-03-02T02:12:35Z,- JasonEb opened issue: [4085](https://github.com/hackforla/website/issues/4085) at 2023-03-01 06:12 PM PST -jasonlinlinlin,5869,SKILLS ISSUE -jasonlinlinlin,2023-11-07T04:20:28Z,- jasonlinlinlin opened issue: [5869](https://github.com/hackforla/website/issues/5869) at 2023-11-06 08:20 PM PST -jasonlinlinlin,2023-11-07T04:20:33Z,- jasonlinlinlin assigned to issue: [5869](https://github.com/hackforla/website/issues/5869) at 2023-11-06 08:20 PM PST -jasonTelanoff,2019-12-29T03:04:15Z,- jasonTelanoff assigned to issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-28 07:04 PM PST -JasonUranta,2021-06-29T04:06:44Z,- JasonUranta assigned to issue: [1572](https://github.com/hackforla/website/issues/1572) at 2021-06-28 09:06 PM PDT -JasonUranta,2021-07-09T01:42:05Z,- JasonUranta opened pull request: [1906](https://github.com/hackforla/website/pull/1906) at 2021-07-08 06:42 PM PDT -JasonUranta,2021-07-09T23:28:19Z,- JasonUranta pull request merged: [1906](https://github.com/hackforla/website/pull/1906#event-5002567309) at 2021-07-09 04:28 PM PDT -JasonUranta,2021-07-13T05:00:07Z,- JasonUranta unassigned from issue: [1572](https://github.com/hackforla/website/issues/1572#event-5002567306) at 2021-07-12 10:00 PM PDT -JasonUranta,2021-07-13T05:04:04Z,- JasonUranta assigned to issue: [1572](https://github.com/hackforla/website/issues/1572#event-5002567306) at 2021-07-12 10:04 PM PDT -JasonUranta,2021-07-13T05:05:47Z,- JasonUranta assigned to issue: [1923](https://github.com/hackforla/website/issues/1923) at 2021-07-12 10:05 PM PDT -JasonUranta,2021-07-15T16:29:09Z,- JasonUranta commented on issue: [1923](https://github.com/hackforla/website/issues/1923#issuecomment-880842217) at 2021-07-15 09:29 AM PDT -JasonUranta,2021-07-15T16:48:25Z,- JasonUranta opened pull request: [1946](https://github.com/hackforla/website/pull/1946) at 2021-07-15 09:48 AM PDT -JasonUranta,2021-07-19T16:13:58Z,- JasonUranta commented on pull request: [1946](https://github.com/hackforla/website/pull/1946#issuecomment-882676916) at 2021-07-19 09:13 AM PDT -JasonUranta,2021-07-19T16:54:43Z,- JasonUranta pull request merged: [1946](https://github.com/hackforla/website/pull/1946#event-5039650008) at 2021-07-19 09:54 AM PDT -JasonUranta,2021-07-20T06:22:51Z,- JasonUranta assigned to issue: [1919](https://github.com/hackforla/website/issues/1919#issuecomment-879740450) at 2021-07-19 11:22 PM PDT -JasonUranta,2021-07-24T04:23:12Z,- JasonUranta opened pull request: [2005](https://github.com/hackforla/website/pull/2005) at 2021-07-23 09:23 PM PDT -JasonUranta,2021-07-25T18:00:59Z,- JasonUranta opened issue: [2008](https://github.com/hackforla/website/issues/2008) at 2021-07-25 11:00 AM PDT -JasonUranta,2021-08-03T02:59:42Z,- JasonUranta submitted pull request review: [2005](https://github.com/hackforla/website/pull/2005#pullrequestreview-720737960) at 2021-08-02 07:59 PM PDT -JasonUranta,2021-08-03T07:39:03Z,- JasonUranta pull request merged: [2005](https://github.com/hackforla/website/pull/2005#event-5103069405) at 2021-08-03 12:39 AM PDT -JasonUranta,2021-08-05T02:03:59Z,- JasonUranta submitted pull request review: [2024](https://github.com/hackforla/website/pull/2024#pullrequestreview-722873110) at 2021-08-04 07:03 PM PDT -JasonUranta,2021-08-05T02:15:17Z,- JasonUranta commented on pull request: [2024](https://github.com/hackforla/website/pull/2024#issuecomment-893109998) at 2021-08-04 07:15 PM PDT -JasonUranta,2021-08-05T16:16:35Z,- JasonUranta assigned to issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-892010406) at 2021-08-05 09:16 AM PDT -JasonUranta,2021-08-09T04:23:24Z,- JasonUranta commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-894941161) at 2021-08-08 09:23 PM PDT -JasonUranta,2021-08-09T05:34:00Z,- JasonUranta opened pull request: [2074](https://github.com/hackforla/website/pull/2074) at 2021-08-08 10:34 PM PDT -JasonUranta,2021-08-15T06:27:03Z,- JasonUranta commented on pull request: [2074](https://github.com/hackforla/website/pull/2074#issuecomment-899003075) at 2021-08-14 11:27 PM PDT -JasonUranta,2021-08-15T06:28:13Z,- JasonUranta pull request closed w/o merging: [2074](https://github.com/hackforla/website/pull/2074#event-5159392477) at 2021-08-14 11:28 PM PDT -JasonUranta,2021-08-20T04:22:29Z,- JasonUranta opened pull request: [2132](https://github.com/hackforla/website/pull/2132) at 2021-08-19 09:22 PM PDT -JasonUranta,2021-08-20T06:01:05Z,- JasonUranta pull request closed w/o merging: [2132](https://github.com/hackforla/website/pull/2132#event-5184951356) at 2021-08-19 11:01 PM PDT -JasonUranta,2021-08-23T17:04:46Z,- JasonUranta opened pull request: [2166](https://github.com/hackforla/website/pull/2166) at 2021-08-23 10:04 AM PDT -JasonUranta,2021-08-26T00:03:23Z,- JasonUranta pull request merged: [2166](https://github.com/hackforla/website/pull/2166#event-5209848891) at 2021-08-25 05:03 PM PDT -JasonUranta,2021-08-26T05:39:30Z,- JasonUranta commented on pull request: [2166](https://github.com/hackforla/website/pull/2166#issuecomment-906110294) at 2021-08-25 10:39 PM PDT -JasonY188,2750,SKILLS ISSUE -JasonY188,2022-02-08T05:33:29Z,- JasonY188 opened issue: [2750](https://github.com/hackforla/website/issues/2750) at 2022-02-07 09:33 PM PST -JasonY188,2022-02-09T00:26:04Z,- JasonY188 assigned to issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1032975812) at 2022-02-08 04:26 PM PST -JasonY188,2022-02-09T20:23:31Z,- JasonY188 assigned to issue: [2428](https://github.com/hackforla/website/issues/2428#issuecomment-958019170) at 2022-02-09 12:23 PM PST -JasonY188,2022-02-09T20:29:55Z,- JasonY188 commented on issue: [2428](https://github.com/hackforla/website/issues/2428#issuecomment-1034164551) at 2022-02-09 12:29 PM PST -JasonY188,2022-02-10T01:40:55Z,- JasonY188 opened pull request: [2762](https://github.com/hackforla/website/pull/2762) at 2022-02-09 05:40 PM PST -JasonY188,2022-02-10T22:11:57Z,- JasonY188 pull request merged: [2762](https://github.com/hackforla/website/pull/2762#event-6046330333) at 2022-02-10 02:11 PM PST -JasonY188,2022-02-11T03:36:54Z,- JasonY188 assigned to issue: [2233](https://github.com/hackforla/website/issues/2233) at 2022-02-10 07:36 PM PST -JasonY188,2022-02-11T03:51:59Z,- JasonY188 commented on issue: [2233](https://github.com/hackforla/website/issues/2233#issuecomment-1035860506) at 2022-02-10 07:51 PM PST -JasonY188,2022-02-16T06:34:04Z,- JasonY188 opened pull request: [2785](https://github.com/hackforla/website/pull/2785) at 2022-02-15 10:34 PM PST -JasonY188,2022-02-18T00:18:18Z,- JasonY188 pull request merged: [2785](https://github.com/hackforla/website/pull/2785#event-6094542471) at 2022-02-17 04:18 PM PST -JasonY188,2022-02-21T23:15:07Z,- JasonY188 assigned to issue: [2480](https://github.com/hackforla/website/issues/2480#issuecomment-968336717) at 2022-02-21 03:15 PM PST -JasonY188,2022-02-21T23:25:01Z,- JasonY188 commented on issue: [2480](https://github.com/hackforla/website/issues/2480#issuecomment-1047295578) at 2022-02-21 03:25 PM PST -JasonY188,2022-02-23T04:49:52Z,- JasonY188 opened issue: [2860](https://github.com/hackforla/website/issues/2860) at 2022-02-22 08:49 PM PST -JasonY188,2022-02-23T04:57:39Z,- JasonY188 opened issue: [2861](https://github.com/hackforla/website/issues/2861) at 2022-02-22 08:57 PM PST -JasonY188,2022-02-24T07:01:51Z,- JasonY188 submitted pull request review: [2862](https://github.com/hackforla/website/pull/2862#pullrequestreview-892047597) at 2022-02-23 11:01 PM PST -JasonY188,2022-02-24T07:22:43Z,- JasonY188 opened pull request: [2882](https://github.com/hackforla/website/pull/2882) at 2022-02-23 11:22 PM PST -JasonY188,2022-02-25T05:26:52Z,- JasonY188 commented on pull request: [2882](https://github.com/hackforla/website/pull/2882#issuecomment-1050536736) at 2022-02-24 09:26 PM PST -JasonY188,2022-02-25T05:46:47Z,- JasonY188 submitted pull request review: [2883](https://github.com/hackforla/website/pull/2883#pullrequestreview-893289383) at 2022-02-24 09:46 PM PST -JasonY188,2022-03-01T22:58:26Z,- JasonY188 pull request merged: [2882](https://github.com/hackforla/website/pull/2882#event-6165449952) at 2022-03-01 02:58 PM PST -JasonY188,2022-03-02T07:24:57Z,- JasonY188 assigned to issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-962288923) at 2022-03-01 11:24 PM PST -JasonY188,2022-03-02T07:28:32Z,- JasonY188 commented on issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-1056454152) at 2022-03-01 11:28 PM PST -JasonY188,2022-03-12T02:00:54Z,- JasonY188 commented on pull request: [2943](https://github.com/hackforla/website/pull/2943#issuecomment-1065787443) at 2022-03-11 07:00 PM PDT -JasonY188,2022-03-12T02:16:07Z,- JasonY188 submitted pull request review: [2943](https://github.com/hackforla/website/pull/2943#pullrequestreview-907933832) at 2022-03-11 07:16 PM PDT -JasonY188,2022-03-14T04:10:36Z,- JasonY188 commented on issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-1066319925) at 2022-03-13 09:10 PM PDT -JasonY188,2022-03-16T00:55:22Z,- JasonY188 opened pull request: [2984](https://github.com/hackforla/website/pull/2984) at 2022-03-15 05:55 PM PDT -JasonY188,2022-03-16T04:39:22Z,- JasonY188 commented on pull request: [2967](https://github.com/hackforla/website/pull/2967#issuecomment-1068724899) at 2022-03-15 09:39 PM PDT -JasonY188,2022-03-18T00:44:37Z,- JasonY188 submitted pull request review: [2967](https://github.com/hackforla/website/pull/2967#pullrequestreview-913842690) at 2022-03-17 05:44 PM PDT -JasonY188,2022-03-23T03:13:36Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1075870408) at 2022-03-22 08:13 PM PDT -JasonY188,2022-03-28T01:19:50Z,- JasonY188 commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1080082604) at 2022-03-27 06:19 PM PDT -JasonY188,2022-03-28T01:19:50Z,- JasonY188 closed issue as completed: [2750](https://github.com/hackforla/website/issues/2750#event-6314631925) at 2022-03-27 06:19 PM PDT -JasonY188,2022-03-28T02:12:58Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1080107650) at 2022-03-27 07:12 PM PDT -JasonY188,2022-04-08T05:20:34Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1092451859) at 2022-04-07 10:20 PM PDT -JasonY188,2022-04-11T02:19:39Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1094476174) at 2022-04-10 07:19 PM PDT -JasonY188,2022-04-20T02:35:41Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1103406264) at 2022-04-19 07:35 PM PDT -JasonY188,2022-05-07T04:36:29Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1120132318) at 2022-05-06 09:36 PM PDT -JasonY188,2022-05-12T00:55:59Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1124419609) at 2022-05-11 05:55 PM PDT -JasonY188,2022-05-15T18:41:39Z,- JasonY188 commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1126994132) at 2022-05-15 11:41 AM PDT -javierb256,8135,SKILLS ISSUE -javierb256,2025-05-14T03:04:00Z,- javierb256 opened issue: [8135](https://github.com/hackforla/website/issues/8135) at 2025-05-13 08:04 PM PDT -javierb256,2025-05-14T03:04:31Z,- javierb256 assigned to issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-2878497618) at 2025-05-13 08:04 PM PDT -javierb256,2025-05-15T22:50:18Z,- javierb256 commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-2885219742) at 2025-05-15 03:50 PM PDT -JayBarbanel,3070,SKILLS ISSUE -JayBarbanel,2022-04-20T03:11:43Z,- JayBarbanel opened issue: [3070](https://github.com/hackforla/website/issues/3070) at 2022-04-19 08:11 PM PDT -JayBarbanel,2022-04-20T03:15:17Z,- JayBarbanel assigned to issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1103426118) at 2022-04-19 08:15 PM PDT -JayBarbanel,2022-04-21T19:07:53Z,- JayBarbanel assigned to issue: [2914](https://github.com/hackforla/website/issues/2914#issuecomment-1056032919) at 2022-04-21 12:07 PM PDT -JayBarbanel,2022-04-21T20:58:09Z,- JayBarbanel opened pull request: [3076](https://github.com/hackforla/website/pull/3076) at 2022-04-21 01:58 PM PDT -JayBarbanel,2022-04-22T06:18:53Z,- JayBarbanel commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1106050599) at 2022-04-21 11:18 PM PDT -JayBarbanel,2022-04-23T17:56:41Z,- JayBarbanel commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1107546673) at 2022-04-23 10:56 AM PDT -JayBarbanel,2022-04-27T18:00:50Z,- JayBarbanel commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1111317100) at 2022-04-27 11:00 AM PDT -JayBarbanel,2022-04-28T23:20:43Z,- JayBarbanel pull request merged: [3076](https://github.com/hackforla/website/pull/3076#event-6518871230) at 2022-04-28 04:20 PM PDT -JayBarbanel,2022-05-17T18:47:31Z,- JayBarbanel assigned to issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1116862004) at 2022-05-17 11:47 AM PDT -JayBarbanel,2022-07-25T21:27:54Z,- JayBarbanel unassigned from issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1194651649) at 2022-07-25 02:27 PM PDT -Jaycelab,7890,SKILLS ISSUE -Jaycelab,2025-02-05T04:30:19Z,- Jaycelab opened issue: [7890](https://github.com/hackforla/website/issues/7890) at 2025-02-04 08:30 PM PST -Jaycelab,2025-02-05T04:38:22Z,- Jaycelab assigned to issue: [7890](https://github.com/hackforla/website/issues/7890) at 2025-02-04 08:38 PM PST -Jaycelab,2025-02-05T17:45:47Z,- Jaycelab commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2637612216) at 2025-02-05 09:45 AM PST -Jaycelab,2025-02-07T17:08:05Z,- Jaycelab commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2643505000) at 2025-02-07 09:08 AM PST -Jaycelab,2025-02-07T17:50:22Z,- Jaycelab commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2643603211) at 2025-02-07 09:50 AM PST -jazxbx,6832,SKILLS ISSUE -jazxbx,2024-05-07T03:26:38Z,- jazxbx opened issue: [6832](https://github.com/hackforla/website/issues/6832) at 2024-05-06 08:26 PM PDT -jazxbx,2024-05-07T03:26:39Z,- jazxbx assigned to issue: [6832](https://github.com/hackforla/website/issues/6832) at 2024-05-06 08:26 PM PDT -jazxbx,2024-05-25T02:33:41Z,- jazxbx assigned to issue: [6733](https://github.com/hackforla/website/issues/6733) at 2024-05-24 07:33 PM PDT -jazxbx,2024-05-25T02:40:33Z,- jazxbx commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2130693739) at 2024-05-24 07:40 PM PDT -jazxbx,2024-05-25T02:43:38Z,- jazxbx commented on issue: [6733](https://github.com/hackforla/website/issues/6733#issuecomment-2130694697) at 2024-05-24 07:43 PM PDT -jazxbx,2024-05-27T18:50:56Z,- jazxbx opened pull request: [6901](https://github.com/hackforla/website/pull/6901) at 2024-05-27 11:50 AM PDT -jazxbx,2024-05-29T20:30:41Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2138212939) at 2024-05-29 01:30 PM PDT -jazxbx,2024-05-29T20:39:52Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2138226452) at 2024-05-29 01:39 PM PDT -jazxbx,2024-05-30T02:08:58Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2138543161) at 2024-05-29 07:08 PM PDT -jazxbx,2024-05-30T02:10:46Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2138544624) at 2024-05-29 07:10 PM PDT -jazxbx,2024-05-31T05:24:31Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2141254273) at 2024-05-30 10:24 PM PDT -jazxbx,2024-05-31T05:31:22Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2141260297) at 2024-05-30 10:31 PM PDT -jazxbx,2024-06-01T05:10:32Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2143298213) at 2024-05-31 10:10 PM PDT -jazxbx,2024-06-01T16:10:33Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2143500449) at 2024-06-01 09:10 AM PDT -jazxbx,2024-06-02T04:44:49Z,- jazxbx commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2143695260) at 2024-06-01 09:44 PM PDT -jazxbx,2024-06-02T17:47:58Z,- jazxbx pull request merged: [6901](https://github.com/hackforla/website/pull/6901#event-13012621797) at 2024-06-02 10:47 AM PDT -jazxbx,2024-06-24T02:07:44Z,- jazxbx assigned to issue: [7050](https://github.com/hackforla/website/issues/7050#issuecomment-2183294587) at 2024-06-23 07:07 PM PDT -jazxbx,2024-06-24T02:11:08Z,- jazxbx commented on issue: [7050](https://github.com/hackforla/website/issues/7050#issuecomment-2185457583) at 2024-06-23 07:11 PM PDT -jazxbx,2024-06-24T02:15:02Z,- jazxbx commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2185460739) at 2024-06-23 07:15 PM PDT -jazxbx,2024-06-24T02:48:04Z,- jazxbx opened pull request: [7057](https://github.com/hackforla/website/pull/7057) at 2024-06-23 07:48 PM PDT -jazxbx,2024-06-26T23:40:25Z,- jazxbx pull request closed w/o merging: [7057](https://github.com/hackforla/website/pull/7057#event-13305327262) at 2024-06-26 04:40 PM PDT -jazxbx,2024-09-10T23:23:12Z,- jazxbx assigned to issue: [7176](https://github.com/hackforla/website/issues/7176#issuecomment-2272522605) at 2024-09-10 04:23 PM PDT -jazxbx,2024-09-10T23:27:19Z,- jazxbx commented on issue: [7176](https://github.com/hackforla/website/issues/7176#issuecomment-2342332090) at 2024-09-10 04:27 PM PDT -jazxbx,2024-09-10T23:29:45Z,- jazxbx commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2342334153) at 2024-09-10 04:29 PM PDT -jazxbx,2024-09-12T00:21:58Z,- jazxbx opened pull request: [7437](https://github.com/hackforla/website/pull/7437) at 2024-09-11 05:21 PM PDT -jazxbx,2024-09-12T20:02:13Z,- jazxbx pull request merged: [7437](https://github.com/hackforla/website/pull/7437#event-14238297593) at 2024-09-12 01:02 PM PDT -jazxbx,2024-09-14T04:54:38Z,- jazxbx assigned to issue: [7410](https://github.com/hackforla/website/issues/7410) at 2024-09-13 09:54 PM PDT -jazxbx,2024-09-14T04:58:38Z,- jazxbx commented on issue: [7410](https://github.com/hackforla/website/issues/7410#issuecomment-2350836046) at 2024-09-13 09:58 PM PDT -jazxbx,2024-09-14T05:43:32Z,- jazxbx opened pull request: [7447](https://github.com/hackforla/website/pull/7447) at 2024-09-13 10:43 PM PDT -jazxbx,2024-09-18T19:19:33Z,- jazxbx pull request merged: [7447](https://github.com/hackforla/website/pull/7447#event-14312572188) at 2024-09-18 12:19 PM PDT -jazxbx,2024-09-18T19:31:51Z,- jazxbx assigned to issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2351057207) at 2024-09-18 12:31 PM PDT -jazxbx,2024-09-18T19:34:36Z,- jazxbx commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2359256792) at 2024-09-18 12:34 PM PDT -jazxbx,2024-09-20T04:19:05Z,- jazxbx commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2362737617) at 2024-09-19 09:19 PM PDT -jazxbx,2024-09-22T03:22:20Z,- jazxbx commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2365440584) at 2024-09-21 08:22 PM PDT -jazxbx,2024-09-22T04:01:47Z,- jazxbx commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2365452327) at 2024-09-21 09:01 PM PDT -jazxbx,2024-09-22T05:27:06Z,- jazxbx commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2365476698) at 2024-09-21 10:27 PM PDT -jazxbx,2024-09-23T05:40:51Z,- jazxbx opened pull request: [7508](https://github.com/hackforla/website/pull/7508) at 2024-09-22 10:40 PM PDT -jazxbx,2024-09-23T17:42:51Z,- jazxbx commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2368949740) at 2024-09-23 10:42 AM PDT -jazxbx,2024-09-23T17:43:13Z,- jazxbx commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2368950682) at 2024-09-23 10:43 AM PDT -jazxbx,2024-09-23T20:51:49Z,- jazxbx commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2369359073) at 2024-09-23 01:51 PM PDT -jazxbx,2024-09-24T00:52:22Z,- jazxbx commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2369880855) at 2024-09-23 05:52 PM PDT -jazxbx,2024-09-24T01:12:40Z,- jazxbx commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2369907489) at 2024-09-23 06:12 PM PDT -jazxbx,2024-10-21T20:16:58Z,- jazxbx pull request merged: [7508](https://github.com/hackforla/website/pull/7508#event-14770820974) at 2024-10-21 01:16 PM PDT -jbialkin98,3387,SKILLS ISSUE -jbialkin98,2022-07-19T02:21:40Z,- jbialkin98 opened issue: [3387](https://github.com/hackforla/website/issues/3387) at 2022-07-18 07:21 PM PDT -jbialkin98,2022-09-26T00:40:02Z,- jbialkin98 commented on issue: [3387](https://github.com/hackforla/website/issues/3387#issuecomment-1257328266) at 2022-09-25 05:40 PM PDT -jbialkin98,2022-09-28T02:59:24Z,- jbialkin98 assigned to issue: [3387](https://github.com/hackforla/website/issues/3387#issuecomment-1257328266) at 2022-09-27 07:59 PM PDT -jbialkin98,2022-09-28T03:04:06Z,- jbialkin98 assigned to issue: [2836](https://github.com/hackforla/website/issues/2836#issuecomment-1047154706) at 2022-09-27 08:04 PM PDT -jbialkin98,2022-09-28T03:07:26Z,- jbialkin98 commented on issue: [2836](https://github.com/hackforla/website/issues/2836#issuecomment-1260328437) at 2022-09-27 08:07 PM PDT -jbialkin98,2022-09-29T16:55:44Z,- jbialkin98 opened pull request: [3590](https://github.com/hackforla/website/pull/3590) at 2022-09-29 09:55 AM PDT -jbialkin98,2022-09-29T17:03:15Z,- jbialkin98 commented on issue: [3387](https://github.com/hackforla/website/issues/3387#issuecomment-1262557735) at 2022-09-29 10:03 AM PDT -jbialkin98,2022-09-29T17:18:38Z,- jbialkin98 closed issue as completed: [3387](https://github.com/hackforla/website/issues/3387#event-7488805323) at 2022-09-29 10:18 AM PDT -jbialkin98,2022-09-30T22:40:31Z,- jbialkin98 pull request merged: [3590](https://github.com/hackforla/website/pull/3590#event-7499029640) at 2022-09-30 03:40 PM PDT -jbialkin98,2022-10-17T01:22:03Z,- jbialkin98 assigned to issue: [3203](https://github.com/hackforla/website/issues/3203#issuecomment-1145814907) at 2022-10-16 06:22 PM PDT -jbialkin98,2022-10-17T01:40:14Z,- jbialkin98 opened pull request: [3631](https://github.com/hackforla/website/pull/3631) at 2022-10-16 06:40 PM PDT -jbialkin98,2022-10-17T22:53:31Z,- jbialkin98 pull request merged: [3631](https://github.com/hackforla/website/pull/3631#event-7606463201) at 2022-10-17 03:53 PM PDT -jbubar,2019-12-06T21:55:57Z,- jbubar assigned to issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-06 01:55 PM PST -jbubar,2019-12-10T06:13:19Z,- jbubar unassigned from issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-09 10:13 PM PST -jbubar,2020-06-01T01:07:16Z,- jbubar assigned to issue: [551](https://github.com/hackforla/website/issues/551) at 2020-05-31 06:07 PM PDT -jbubar,2020-06-01T01:08:34Z,- jbubar assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636439250) at 2020-05-31 06:08 PM PDT -jbubar,2020-06-03T01:09:16Z,- jbubar opened pull request: [557](https://github.com/hackforla/website/pull/557) at 2020-06-02 06:09 PM PDT -jbubar,2020-06-03T20:43:13Z,- jbubar pull request merged: [557](https://github.com/hackforla/website/pull/557#event-3403980568) at 2020-06-03 01:43 PM PDT -jbubar,2020-06-03T21:31:33Z,- jbubar assigned to issue: [559](https://github.com/hackforla/website/issues/559) at 2020-06-03 02:31 PM PDT -jbubar,2020-06-07T17:15:38Z,- jbubar opened pull request: [569](https://github.com/hackforla/website/pull/569) at 2020-06-07 10:15 AM PDT -jbubar,2020-06-07T18:38:03Z,- jbubar assigned to issue: [558](https://github.com/hackforla/website/issues/558) at 2020-06-07 11:38 AM PDT -jbubar,2020-06-14T18:38:45Z,- jbubar opened pull request: [576](https://github.com/hackforla/website/pull/576) at 2020-06-14 11:38 AM PDT -jbubar,2020-06-14T18:39:40Z,- jbubar pull request merged: [576](https://github.com/hackforla/website/pull/576#event-3441934423) at 2020-06-14 11:39 AM PDT -jbubar,2020-06-20T17:48:02Z,- jbubar assigned to issue: [579](https://github.com/hackforla/website/issues/579) at 2020-06-20 10:48 AM PDT -jbubar,2020-06-21T17:35:37Z,- jbubar assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647155926) at 2020-06-21 10:35 AM PDT -jbubar,2020-06-22T00:01:24Z,- jbubar assigned to issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-636487613) at 2020-06-21 05:01 PM PDT -jbubar,2020-06-22T00:02:32Z,- jbubar unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647158781) at 2020-06-21 05:02 PM PDT -jbubar,2020-06-24T03:13:46Z,- jbubar pull request closed w/o merging: [569](https://github.com/hackforla/website/pull/569#event-3475591652) at 2020-06-23 08:13 PM PDT -jbubar,2020-06-28T18:43:28Z,- jbubar unassigned from issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-636487613) at 2020-06-28 11:43 AM PDT -jbubar,2020-06-29T04:30:53Z,- jbubar commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-650898496) at 2020-06-28 09:30 PM PDT -jbubar,2020-07-05T16:41:21Z,- jbubar commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653910556) at 2020-07-05 09:41 AM PDT -jbubar,2020-07-05T17:54:58Z,- jbubar commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653918886) at 2020-07-05 10:54 AM PDT -jbubar,2020-07-05T18:05:21Z,- jbubar unassigned from issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-653919954) at 2020-07-05 11:05 AM PDT -jbubar,2020-07-05T18:11:45Z,- jbubar assigned to issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650808846) at 2020-07-05 11:11 AM PDT -jbubar,2020-07-09T09:17:49Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656013883) at 2020-07-09 02:17 AM PDT -jbubar,2020-07-09T09:22:45Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656016405) at 2020-07-09 02:22 AM PDT -jbubar,2020-07-09T09:23:45Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656016930) at 2020-07-09 02:23 AM PDT -jbubar,2020-07-10T20:17:29Z,- jbubar assigned to issue: [600](https://github.com/hackforla/website/issues/600) at 2020-07-10 01:17 PM PDT -jbubar,2020-07-12T01:40:53Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657160617) at 2020-07-11 06:40 PM PDT -jbubar,2020-07-12T01:51:36Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657161439) at 2020-07-11 06:51 PM PDT -jbubar,2020-07-12T01:55:00Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657161717) at 2020-07-11 06:55 PM PDT -jbubar,2020-07-12T17:13:25Z,- jbubar opened pull request: [604](https://github.com/hackforla/website/pull/604) at 2020-07-12 10:13 AM PDT -jbubar,2020-07-12T18:25:53Z,- jbubar pull request closed w/o merging: [604](https://github.com/hackforla/website/pull/604#event-3537326739) at 2020-07-12 11:25 AM PDT -jbubar,2020-07-12T18:44:47Z,- jbubar assigned to issue: [605](https://github.com/hackforla/website/issues/605) at 2020-07-12 11:44 AM PDT -jbubar,2020-07-18T02:57:03Z,- jbubar commented on issue: [600](https://github.com/hackforla/website/issues/600#issuecomment-660413197) at 2020-07-17 07:57 PM PDT -jbubar,2020-07-18T18:08:37Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-660519786) at 2020-07-18 11:08 AM PDT -jbubar,2020-07-18T18:09:43Z,- jbubar commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-660519952) at 2020-07-18 11:09 AM PDT -jbubar,2020-07-18T18:22:06Z,- jbubar opened pull request: [611](https://github.com/hackforla/website/pull/611) at 2020-07-18 11:22 AM PDT -jbubar,2020-07-18T18:25:35Z,- jbubar commented on pull request: [611](https://github.com/hackforla/website/pull/611#issuecomment-660522016) at 2020-07-18 11:25 AM PDT -jbubar,2020-07-18T19:09:46Z,- jbubar unassigned from issue: [600](https://github.com/hackforla/website/issues/600#issuecomment-660413197) at 2020-07-18 12:09 PM PDT -jbubar,2020-07-19T16:27:25Z,- jbubar unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653918886) at 2020-07-19 09:27 AM PDT -jbubar,2020-07-19T17:00:53Z,- jbubar opened pull request: [612](https://github.com/hackforla/website/pull/612) at 2020-07-19 10:00 AM PDT -jbubar,2020-07-19T17:01:48Z,- jbubar commented on pull request: [612](https://github.com/hackforla/website/pull/612#issuecomment-660676489) at 2020-07-19 10:01 AM PDT -jbubar,2020-07-19T17:06:22Z,- jbubar commented on issue: [605](https://github.com/hackforla/website/issues/605#issuecomment-660677098) at 2020-07-19 10:06 AM PDT -jbubar,2020-07-19T17:32:50Z,- jbubar pull request merged: [612](https://github.com/hackforla/website/pull/612#event-3562881073) at 2020-07-19 10:32 AM PDT -jbubar,2020-07-19T19:07:57Z,- jbubar commented on pull request: [611](https://github.com/hackforla/website/pull/611#issuecomment-660692681) at 2020-07-19 12:07 PM PDT -jbubar,2020-07-21T03:39:13Z,- jbubar opened pull request: [620](https://github.com/hackforla/website/pull/620) at 2020-07-20 08:39 PM PDT -jbubar,2020-07-21T03:45:44Z,- jbubar opened pull request: [621](https://github.com/hackforla/website/pull/621) at 2020-07-20 08:45 PM PDT -jbubar,2020-07-21T04:25:57Z,- jbubar pull request closed w/o merging: [611](https://github.com/hackforla/website/pull/611#event-3569022269) at 2020-07-20 09:25 PM PDT -jbubar,2020-07-21T04:33:12Z,- jbubar pull request merged: [620](https://github.com/hackforla/website/pull/620#event-3569044052) at 2020-07-20 09:33 PM PDT -jbubar,2020-07-21T04:37:33Z,- jbubar pull request merged: [621](https://github.com/hackforla/website/pull/621#event-3569056712) at 2020-07-20 09:37 PM PDT -jbubar,2020-07-21T16:25:42Z,- jbubar assigned to issue: [617](https://github.com/hackforla/website/issues/617) at 2020-07-21 09:25 AM PDT -jbubar,2020-07-21T16:26:27Z,- jbubar opened pull request: [623](https://github.com/hackforla/website/pull/623) at 2020-07-21 09:26 AM PDT -jbubar,2020-07-23T17:42:03Z,- jbubar pull request merged: [623](https://github.com/hackforla/website/pull/623#event-3581049647) at 2020-07-23 10:42 AM PDT -jbubar,2020-07-23T17:42:03Z,- jbubar closed issue by PR 623: [617](https://github.com/hackforla/website/issues/617#event-3581049641) at 2020-07-23 10:42 AM PDT -jbubar,2020-07-24T03:15:48Z,- jbubar assigned to issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-653910055) at 2020-07-23 08:15 PM PDT -jbubar,2020-07-24T03:15:53Z,- jbubar commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663329137) at 2020-07-23 08:15 PM PDT -jbubar,2020-07-26T16:24:00Z,- jbubar opened pull request: [634](https://github.com/hackforla/website/pull/634) at 2020-07-26 09:24 AM PDT -jbubar,2020-07-26T16:25:38Z,- jbubar opened pull request: [635](https://github.com/hackforla/website/pull/635) at 2020-07-26 09:25 AM PDT -jbubar,2020-07-26T16:43:12Z,- jbubar opened pull request: [636](https://github.com/hackforla/website/pull/636) at 2020-07-26 09:43 AM PDT -jbubar,2020-07-26T16:44:25Z,- jbubar opened pull request: [637](https://github.com/hackforla/website/pull/637) at 2020-07-26 09:44 AM PDT -jbubar,2020-07-26T16:46:10Z,- jbubar opened pull request: [638](https://github.com/hackforla/website/pull/638) at 2020-07-26 09:46 AM PDT -jbubar,2020-07-26T17:01:00Z,- jbubar opened pull request: [639](https://github.com/hackforla/website/pull/639) at 2020-07-26 10:01 AM PDT -jbubar,2020-07-28T00:07:50Z,- jbubar closed issue by PR 638: [459](https://github.com/hackforla/website/issues/459#event-3592081177) at 2020-07-27 05:07 PM PDT -jbubar,2020-07-28T00:07:50Z,- jbubar pull request merged: [638](https://github.com/hackforla/website/pull/638#event-3592081182) at 2020-07-27 05:07 PM PDT -jbubar,2020-07-28T00:12:03Z,- jbubar pull request merged: [637](https://github.com/hackforla/website/pull/637#event-3592089391) at 2020-07-27 05:12 PM PDT -jbubar,2020-07-28T00:25:17Z,- jbubar pull request merged: [636](https://github.com/hackforla/website/pull/636#event-3592114472) at 2020-07-27 05:25 PM PDT -jbubar,2020-07-28T00:29:38Z,- jbubar pull request merged: [635](https://github.com/hackforla/website/pull/635#event-3592122026) at 2020-07-27 05:29 PM PDT -jbubar,2020-07-28T00:40:23Z,- jbubar pull request merged: [639](https://github.com/hackforla/website/pull/639#event-3592141200) at 2020-07-27 05:40 PM PDT -jbubar,2020-07-28T00:48:57Z,- jbubar pull request merged: [634](https://github.com/hackforla/website/pull/634#event-3592156120) at 2020-07-27 05:48 PM PDT -jbubar,2020-07-28T20:57:05Z,- jbubar commented on pull request: [634](https://github.com/hackforla/website/pull/634#issuecomment-665278626) at 2020-07-28 01:57 PM PDT -jbubar,2020-07-28T21:19:28Z,- jbubar opened pull request: [652](https://github.com/hackforla/website/pull/652) at 2020-07-28 02:19 PM PDT -jbubar,2020-07-28T21:24:43Z,- jbubar opened pull request: [653](https://github.com/hackforla/website/pull/653) at 2020-07-28 02:24 PM PDT -jbubar,2020-07-28T21:25:34Z,- jbubar commented on pull request: [653](https://github.com/hackforla/website/pull/653#issuecomment-665291815) at 2020-07-28 02:25 PM PDT -jbubar,2020-07-28T22:00:52Z,- jbubar commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-665305786) at 2020-07-28 03:00 PM PDT -jbubar,2020-07-29T02:23:56Z,- jbubar commented on pull request: [647](https://github.com/hackforla/website/pull/647#issuecomment-665392586) at 2020-07-28 07:23 PM PDT -jbubar,2020-07-29T02:24:07Z,- jbubar closed issue by PR 647: [628](https://github.com/hackforla/website/issues/628#event-3596980419) at 2020-07-28 07:24 PM PDT -jbubar,2020-07-29T02:52:34Z,- jbubar pull request merged: [653](https://github.com/hackforla/website/pull/653#event-3597033978) at 2020-07-28 07:52 PM PDT -jbubar,2020-07-29T03:25:23Z,- jbubar pull request merged: [652](https://github.com/hackforla/website/pull/652#event-3597093106) at 2020-07-28 08:25 PM PDT -jbubar,2020-07-29T03:32:10Z,- jbubar assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-662616351) at 2020-07-28 08:32 PM PDT -jbubar,2020-08-02T16:52:43Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-667697985) at 2020-08-02 09:52 AM PDT -jbubar,2020-08-02T18:04:36Z,- jbubar commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-667706142) at 2020-08-02 11:04 AM PDT -jbubar,2020-08-09T15:47:32Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-671067795) at 2020-08-09 08:47 AM PDT -jbubar,2020-08-09T16:13:34Z,- jbubar unassigned from issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-671067795) at 2020-08-09 09:13 AM PDT -jbubar,2020-08-09T17:35:29Z,- jbubar closed issue by PR 638: [459](https://github.com/hackforla/website/issues/459#event-3636640041) at 2020-08-09 10:35 AM PDT -jbubar,2020-08-09T17:54:56Z,- jbubar assigned to issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-670976011) at 2020-08-09 10:54 AM PDT -jbubar,2020-08-16T16:37:49Z,- jbubar commented on issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-674548508) at 2020-08-16 09:37 AM PDT -jbubar,2020-08-16T16:39:15Z,- jbubar opened pull request: [682](https://github.com/hackforla/website/pull/682) at 2020-08-16 09:39 AM PDT -jbubar,2020-08-16T18:23:29Z,- jbubar assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-674478603) at 2020-08-16 11:23 AM PDT -jbubar,2020-08-17T22:42:41Z,- jbubar pull request merged: [682](https://github.com/hackforla/website/pull/682#event-3663868497) at 2020-08-17 03:42 PM PDT -jbubar,2020-08-23T17:31:15Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-678801925) at 2020-08-23 10:31 AM PDT -jbubar,2020-08-29T17:12:39Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683317569) at 2020-08-29 10:12 AM PDT -jbubar,2020-08-29T17:26:47Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683319276) at 2020-08-29 10:26 AM PDT -jbubar,2020-08-29T18:06:30Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683323948) at 2020-08-29 11:06 AM PDT -jbubar,2020-09-02T22:25:36Z,- jbubar commented on pull request: [713](https://github.com/hackforla/website/pull/713#issuecomment-686060805) at 2020-09-02 03:25 PM PDT -jbubar,2020-09-02T22:28:22Z,- jbubar commented on pull request: [713](https://github.com/hackforla/website/pull/713#issuecomment-686061747) at 2020-09-02 03:28 PM PDT -jbubar,2020-09-04T21:12:07Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-687387501) at 2020-09-04 02:12 PM PDT -jbubar,2020-09-06T18:33:00Z,- jbubar commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-687864448) at 2020-09-06 11:33 AM PDT -jbubar,2020-09-13T17:16:13Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-691698444) at 2020-09-13 10:16 AM PDT -jbubar,2020-09-14T20:32:13Z,- jbubar commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-692297500) at 2020-09-14 01:32 PM PDT -jbubar,2020-09-15T02:01:40Z,- jbubar submitted pull request review: [729](https://github.com/hackforla/website/pull/729#pullrequestreview-488270660) at 2020-09-14 07:01 PM PDT -jbubar,2020-09-15T02:08:23Z,- jbubar commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-692417556) at 2020-09-14 07:08 PM PDT -jbubar,2020-09-20T15:17:55Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-695798856) at 2020-09-20 08:17 AM PDT -jbubar,2020-09-20T20:56:46Z,- jbubar commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-695835438) at 2020-09-20 01:56 PM PDT -jbubar,2020-09-20T21:19:03Z,- jbubar opened pull request: [742](https://github.com/hackforla/website/pull/742) at 2020-09-20 02:19 PM PDT -jbubar,2020-09-25T08:11:46Z,- jbubar commented on pull request: [742](https://github.com/hackforla/website/pull/742#issuecomment-698790427) at 2020-09-25 01:11 AM PDT -jbubar,2020-09-27T03:49:18Z,- jbubar pull request merged: [742](https://github.com/hackforla/website/pull/742#event-3811314412) at 2020-09-26 08:49 PM PDT -jbubar,2020-10-11T17:41:22Z,- jbubar opened pull request: [775](https://github.com/hackforla/website/pull/775) at 2020-10-11 10:41 AM PDT -jbubar,2020-10-11T18:36:40Z,- jbubar pull request merged: [775](https://github.com/hackforla/website/pull/775#event-3863964349) at 2020-10-11 11:36 AM PDT -jbubar,2020-11-15T22:13:54Z,- jbubar opened pull request: [808](https://github.com/hackforla/website/pull/808) at 2020-11-15 02:13 PM PST -jbubar,2020-11-18T04:15:16Z,- jbubar closed issue by PR 810: [800](https://github.com/hackforla/website/issues/800#event-4008651364) at 2020-11-17 08:15 PM PST -jbubar,2020-11-20T02:07:59Z,- jbubar commented on pull request: [808](https://github.com/hackforla/website/pull/808#issuecomment-730799172) at 2020-11-19 06:07 PM PST -jbubar,2020-11-25T04:05:07Z,- jbubar commented on pull request: [812](https://github.com/hackforla/website/pull/812#issuecomment-733449781) at 2020-11-24 08:05 PM PST -jbubar,2020-11-29T19:04:00Z,- jbubar commented on pull request: [808](https://github.com/hackforla/website/pull/808#issuecomment-735439635) at 2020-11-29 11:04 AM PST -jbubar,2020-11-30T02:09:41Z,- jbubar pull request merged: [808](https://github.com/hackforla/website/pull/808#event-4049749323) at 2020-11-29 06:09 PM PST -jbubar,2020-11-30T02:48:49Z,- jbubar submitted pull request review: [816](https://github.com/hackforla/website/pull/816#pullrequestreview-540568598) at 2020-11-29 06:48 PM PST -jbubar,2020-11-30T02:50:02Z,- jbubar closed issue by PR 816: [793](https://github.com/hackforla/website/issues/793#event-4049820563) at 2020-11-29 06:50 PM PST -jbubar,2020-11-30T03:00:09Z,- jbubar opened issue: [817](https://github.com/hackforla/website/issues/817) at 2020-11-29 07:00 PM PST -jbubar,2020-11-30T03:24:05Z,- jbubar opened pull request: [818](https://github.com/hackforla/website/pull/818) at 2020-11-29 07:24 PM PST -jbubar,2020-11-30T03:24:38Z,- jbubar assigned to issue: [817](https://github.com/hackforla/website/issues/817) at 2020-11-29 07:24 PM PST -jbubar,2020-11-30T03:54:42Z,- jbubar opened issue: [819](https://github.com/hackforla/website/issues/819) at 2020-11-29 07:54 PM PST -jbubar,2020-12-01T20:03:07Z,- jbubar opened pull request: [821](https://github.com/hackforla/website/pull/821) at 2020-12-01 12:03 PM PST -jbubar,2020-12-01T20:03:59Z,- jbubar commented on pull request: [821](https://github.com/hackforla/website/pull/821#issuecomment-736786431) at 2020-12-01 12:03 PM PST -jbubar,2020-12-01T20:11:59Z,- jbubar opened pull request: [822](https://github.com/hackforla/website/pull/822) at 2020-12-01 12:11 PM PST -jbubar,2020-12-02T03:19:44Z,- jbubar pull request merged: [822](https://github.com/hackforla/website/pull/822#event-4060220648) at 2020-12-01 07:19 PM PST -jbubar,2020-12-02T03:20:10Z,- jbubar pull request merged: [821](https://github.com/hackforla/website/pull/821#event-4060221600) at 2020-12-01 07:20 PM PST -jbubar,2020-12-02T03:22:58Z,- jbubar pull request merged: [818](https://github.com/hackforla/website/pull/818#event-4060227889) at 2020-12-01 07:22 PM PST -jbubar,2020-12-04T09:36:01Z,- jbubar commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-738679119) at 2020-12-04 01:36 AM PST -jbubar,2020-12-04T17:28:24Z,- jbubar submitted pull request review: [811](https://github.com/hackforla/website/pull/811#pullrequestreview-545156485) at 2020-12-04 09:28 AM PST -jbubar,2020-12-06T07:42:40Z,- jbubar commented on issue: [827](https://github.com/hackforla/website/issues/827#issuecomment-739468154) at 2020-12-05 11:42 PM PST -jbubar,2020-12-06T07:45:04Z,- jbubar opened pull request: [828](https://github.com/hackforla/website/pull/828) at 2020-12-05 11:45 PM PST -jbubar,2020-12-06T08:07:29Z,- jbubar submitted pull request review: [825](https://github.com/hackforla/website/pull/825#pullrequestreview-545680743) at 2020-12-06 12:07 AM PST -jbubar,2020-12-06T08:23:45Z,- jbubar opened issue: [830](https://github.com/hackforla/website/issues/830) at 2020-12-06 12:23 AM PST -jbubar,2020-12-06T19:04:03Z,- jbubar closed issue by PR 825: [717](https://github.com/hackforla/website/issues/717#event-4076901478) at 2020-12-06 11:04 AM PST -jbubar,2020-12-06T19:07:02Z,- jbubar pull request merged: [828](https://github.com/hackforla/website/pull/828#event-4076904192) at 2020-12-06 11:07 AM PST -jbubar,2020-12-07T22:38:27Z,- jbubar opened pull request: [836](https://github.com/hackforla/website/pull/836) at 2020-12-07 02:38 PM PST -jbubar,2020-12-07T22:57:23Z,- jbubar pull request merged: [836](https://github.com/hackforla/website/pull/836#event-4082051020) at 2020-12-07 02:57 PM PST -jbubar,2020-12-07T23:28:23Z,- jbubar opened pull request: [837](https://github.com/hackforla/website/pull/837) at 2020-12-07 03:28 PM PST -jbubar,2020-12-07T23:48:19Z,- jbubar commented on pull request: [837](https://github.com/hackforla/website/pull/837#issuecomment-740251146) at 2020-12-07 03:48 PM PST -jbubar,2020-12-08T03:52:46Z,- jbubar pull request merged: [837](https://github.com/hackforla/website/pull/837#event-4082731827) at 2020-12-07 07:52 PM PST -jbubar,2020-12-09T03:29:26Z,- jbubar closed issue by PR 834: [756](https://github.com/hackforla/website/issues/756#event-4087849288) at 2020-12-08 07:29 PM PST -jbubar,2020-12-09T22:31:08Z,- jbubar commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-742104673) at 2020-12-09 02:31 PM PST -jbubar,2020-12-09T22:31:45Z,- jbubar reopened issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-742104673) at 2020-12-09 02:31 PM PST -jbubar,2020-12-09T22:39:40Z,- jbubar commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-742108480) at 2020-12-09 02:39 PM PST -jbubar,2020-12-13T19:16:53Z,- jbubar opened pull request: [843](https://github.com/hackforla/website/pull/843) at 2020-12-13 11:16 AM PST -jbubar,2020-12-13T20:13:52Z,- jbubar pull request merged: [843](https://github.com/hackforla/website/pull/843#event-4106395780) at 2020-12-13 12:13 PM PST -jbubar,2020-12-16T03:19:01Z,- jbubar closed issue by PR 845: [842](https://github.com/hackforla/website/issues/842#event-4117632217) at 2020-12-15 07:19 PM PST -jbubar,2020-12-16T03:23:12Z,- jbubar submitted pull request review: [847](https://github.com/hackforla/website/pull/847#pullrequestreview-553328790) at 2020-12-15 07:23 PM PST -jbubar,2020-12-16T03:30:47Z,- jbubar submitted pull request review: [847](https://github.com/hackforla/website/pull/847#pullrequestreview-553331200) at 2020-12-15 07:30 PM PST -jbubar,2020-12-16T03:34:44Z,- jbubar commented on pull request: [849](https://github.com/hackforla/website/pull/849#issuecomment-745742147) at 2020-12-15 07:34 PM PST -jbubar,2020-12-20T03:56:14Z,- jbubar submitted pull request review: [849](https://github.com/hackforla/website/pull/849#pullrequestreview-555984402) at 2020-12-19 07:56 PM PST -jbubar,2020-12-20T03:56:22Z,- jbubar closed issue by PR 849: [848](https://github.com/hackforla/website/issues/848#event-4132984519) at 2020-12-19 07:56 PM PST -jbubar,2020-12-20T04:29:05Z,- jbubar submitted pull request review: [847](https://github.com/hackforla/website/pull/847#pullrequestreview-555985535) at 2020-12-19 08:29 PM PST -jbubar,2020-12-20T04:30:21Z,- jbubar closed issue by PR 847: [846](https://github.com/hackforla/website/issues/846#event-4132998113) at 2020-12-19 08:30 PM PST -jbubar,2020-12-23T03:10:12Z,- jbubar submitted pull request review: [868](https://github.com/hackforla/website/pull/868#pullrequestreview-557484941) at 2020-12-22 07:10 PM PST -jbubar,2020-12-30T02:26:11Z,- jbubar submitted pull request review: [874](https://github.com/hackforla/website/pull/874#pullrequestreview-559761101) at 2020-12-29 06:26 PM PST -jbubar,2020-12-30T03:20:23Z,- jbubar submitted pull request review: [855](https://github.com/hackforla/website/pull/855#pullrequestreview-559767837) at 2020-12-29 07:20 PM PST -jbubar,2021-01-03T19:55:41Z,- jbubar submitted pull request review: [901](https://github.com/hackforla/website/pull/901#pullrequestreview-560721596) at 2021-01-03 11:55 AM PST -jbubar,2021-01-03T20:06:56Z,- jbubar submitted pull request review: [903](https://github.com/hackforla/website/pull/903#pullrequestreview-560722230) at 2021-01-03 12:06 PM PST -jbubar,2021-01-03T21:02:36Z,- jbubar opened issue: [912](https://github.com/hackforla/website/issues/912) at 2021-01-03 01:02 PM PST -jbubar,2021-01-06T03:36:46Z,- jbubar commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-755056564) at 2021-01-05 07:36 PM PST -jbubar,2021-01-06T03:43:53Z,- jbubar commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-755058555) at 2021-01-05 07:43 PM PST -jbubar,2021-01-06T04:30:47Z,- jbubar assigned to issue: [906](https://github.com/hackforla/website/issues/906) at 2021-01-05 08:30 PM PST -jbubar,2021-01-06T06:23:00Z,- jbubar opened issue: [917](https://github.com/hackforla/website/issues/917) at 2021-01-05 10:23 PM PST -jbubar,2021-01-06T06:24:06Z,- jbubar commented on issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-755109034) at 2021-01-05 10:24 PM PST -jbubar,2021-01-06T19:53:29Z,- jbubar commented on issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-755595817) at 2021-01-06 11:53 AM PST -jbubar,2021-01-10T20:41:27Z,- jbubar opened issue: [925](https://github.com/hackforla/website/issues/925) at 2021-01-10 12:41 PM PST -jbubar,2021-01-10T20:58:39Z,- jbubar assigned to issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-10 12:58 PM PST -jbubar,2021-01-10T21:03:51Z,- jbubar submitted pull request review: [924](https://github.com/hackforla/website/pull/924#pullrequestreview-564900413) at 2021-01-10 01:03 PM PST -jbubar,2021-01-10T22:00:32Z,- jbubar commented on pull request: [924](https://github.com/hackforla/website/pull/924#issuecomment-757551313) at 2021-01-10 02:00 PM PST -jbubar,2021-01-10T22:04:38Z,- jbubar commented on pull request: [926](https://github.com/hackforla/website/pull/926#issuecomment-757551862) at 2021-01-10 02:04 PM PST -jbubar,2021-01-10T22:04:58Z,- jbubar submitted pull request review: [926](https://github.com/hackforla/website/pull/926#pullrequestreview-564905202) at 2021-01-10 02:04 PM PST -jbubar,2021-01-10T22:08:00Z,- jbubar commented on pull request: [926](https://github.com/hackforla/website/pull/926#issuecomment-757552257) at 2021-01-10 02:08 PM PST -jbubar,2021-01-11T21:03:23Z,- jbubar commented on pull request: [928](https://github.com/hackforla/website/pull/928#issuecomment-758221481) at 2021-01-11 01:03 PM PST -jbubar,2021-01-12T04:31:57Z,- jbubar closed issue by PR 926: [908](https://github.com/hackforla/website/issues/908#event-4193938842) at 2021-01-11 08:31 PM PST -jbubar,2021-01-12T04:54:33Z,- jbubar submitted pull request review: [931](https://github.com/hackforla/website/pull/931#pullrequestreview-565938212) at 2021-01-11 08:54 PM PST -jbubar,2021-01-12T04:55:09Z,- jbubar closed issue by PR 931: [917](https://github.com/hackforla/website/issues/917#event-4193984471) at 2021-01-11 08:55 PM PST -jbubar,2021-01-13T02:52:49Z,- jbubar opened issue: [934](https://github.com/hackforla/website/issues/934) at 2021-01-12 06:52 PM PST -jbubar,2021-01-13T03:32:02Z,- jbubar opened issue: [935](https://github.com/hackforla/website/issues/935) at 2021-01-12 07:32 PM PST -jbubar,2021-01-13T03:34:15Z,- jbubar closed issue by PR 929: [911](https://github.com/hackforla/website/issues/911#event-4199223365) at 2021-01-12 07:34 PM PST -jbubar,2021-01-13T19:25:20Z,- jbubar unassigned from issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665527) at 2021-01-13 11:25 AM PST -jbubar,2021-01-17T18:02:45Z,- jbubar commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-761853495) at 2021-01-17 10:02 AM PST -jbubar,2021-01-17T18:04:59Z,- jbubar commented on pull request: [942](https://github.com/hackforla/website/pull/942#issuecomment-761853922) at 2021-01-17 10:04 AM PST -jbubar,2021-01-17T18:08:29Z,- jbubar commented on pull request: [942](https://github.com/hackforla/website/pull/942#issuecomment-761854426) at 2021-01-17 10:08 AM PST -jbubar,2021-01-17T18:08:45Z,- jbubar submitted pull request review: [942](https://github.com/hackforla/website/pull/942#pullrequestreview-570081017) at 2021-01-17 10:08 AM PST -jbubar,2021-01-17T18:16:19Z,- jbubar commented on issue: [910](https://github.com/hackforla/website/issues/910#issuecomment-761855675) at 2021-01-17 10:16 AM PST -jbubar,2021-01-17T18:16:19Z,- jbubar closed issue as completed: [910](https://github.com/hackforla/website/issues/910#event-4215390262) at 2021-01-17 10:16 AM PST -jbubar,2021-01-17T18:26:31Z,- jbubar unassigned from issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:26 AM PST -jbubar,2021-01-17T18:28:08Z,- jbubar assigned to issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:28 AM PST -jbubar,2021-01-17T19:04:06Z,- jbubar opened issue: [946](https://github.com/hackforla/website/issues/946) at 2021-01-17 11:04 AM PST -jbubar,2021-01-17T19:30:24Z,- jbubar submitted pull request review: [941](https://github.com/hackforla/website/pull/941#pullrequestreview-570086969) at 2021-01-17 11:30 AM PST -jbubar,2021-01-17T19:33:53Z,- jbubar commented on pull request: [943](https://github.com/hackforla/website/pull/943#issuecomment-761866941) at 2021-01-17 11:33 AM PST -jbubar,2021-01-17T19:39:28Z,- jbubar submitted pull request review: [945](https://github.com/hackforla/website/pull/945#pullrequestreview-570087701) at 2021-01-17 11:39 AM PST -jbubar,2021-01-17T19:42:58Z,- jbubar submitted pull request review: [945](https://github.com/hackforla/website/pull/945#pullrequestreview-570087967) at 2021-01-17 11:42 AM PST -jbubar,2021-01-17T19:47:31Z,- jbubar submitted pull request review: [945](https://github.com/hackforla/website/pull/945#pullrequestreview-570088324) at 2021-01-17 11:47 AM PST -jbubar,2021-01-20T20:51:04Z,- jbubar closed issue as completed: [853](https://github.com/hackforla/website/issues/853#event-4229900558) at 2021-01-20 12:51 PM PST -jbubar,2021-01-20T20:53:13Z,- jbubar commented on pull request: [952](https://github.com/hackforla/website/pull/952#issuecomment-763930684) at 2021-01-20 12:53 PM PST -jbubar,2021-01-20T20:54:10Z,- jbubar submitted pull request review: [952](https://github.com/hackforla/website/pull/952#pullrequestreview-572637537) at 2021-01-20 12:54 PM PST -jbubar,2021-01-20T22:21:06Z,- jbubar commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-763988983) at 2021-01-20 02:21 PM PST -jbubar,2021-01-21T01:51:25Z,- jbubar closed issue by PR 952: [949](https://github.com/hackforla/website/issues/949#event-4231050656) at 2021-01-20 05:51 PM PST -jbubar,2021-01-21T01:51:44Z,- jbubar commented on pull request: [952](https://github.com/hackforla/website/pull/952#issuecomment-764174452) at 2021-01-20 05:51 PM PST -jbubar,2021-01-21T02:05:20Z,- jbubar commented on issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-764181941) at 2021-01-20 06:05 PM PST -jbubar,2021-01-21T02:06:14Z,- jbubar commented on issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-764182383) at 2021-01-20 06:06 PM PST -jbubar,2021-01-24T18:30:08Z,- jbubar commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-766408635) at 2021-01-24 10:30 AM PST -jbubar,2021-01-24T18:30:27Z,- jbubar commented on pull request: [941](https://github.com/hackforla/website/pull/941#issuecomment-766408704) at 2021-01-24 10:30 AM PST -jbubar,2021-01-27T03:13:04Z,- jbubar unassigned from issue: [906](https://github.com/hackforla/website/issues/906#event-4253725765) at 2021-01-26 07:13 PM PST -jbubar,2021-01-31T18:28:01Z,- jbubar commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770427214) at 2021-01-31 10:28 AM PST -jbubar,2021-01-31T18:32:35Z,- jbubar submitted pull request review: [972](https://github.com/hackforla/website/pull/972#pullrequestreview-579921430) at 2021-01-31 10:32 AM PST -jbubar,2021-01-31T20:42:54Z,- jbubar commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770447459) at 2021-01-31 12:42 PM PST -jbubar,2021-02-01T01:19:15Z,- jbubar closed issue by PR 975: [954](https://github.com/hackforla/website/issues/954#event-4271052963) at 2021-01-31 05:19 PM PST -jbubar,2021-02-01T01:38:22Z,- jbubar closed issue by PR 983: [904](https://github.com/hackforla/website/issues/904#event-4271084860) at 2021-01-31 05:38 PM PST -jbubar,2021-02-01T01:38:50Z,- jbubar commented on pull request: [983](https://github.com/hackforla/website/pull/983#issuecomment-770508211) at 2021-01-31 05:38 PM PST -jbubar,2021-02-01T01:47:18Z,- jbubar opened issue: [984](https://github.com/hackforla/website/issues/984) at 2021-01-31 05:47 PM PST -jbubar,2021-02-03T03:25:42Z,- jbubar closed issue by PR 985: [968](https://github.com/hackforla/website/issues/968#event-4282957710) at 2021-02-02 07:25 PM PST -jbubar,2021-02-04T00:15:31Z,- jbubar assigned to issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-756501661) at 2021-02-03 04:15 PM PST -jbubar,2021-02-04T00:37:33Z,- jbubar assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -jbubar,2021-02-04T00:40:49Z,- jbubar assigned to issue: [935](https://github.com/hackforla/website/issues/935) at 2021-02-03 04:40 PM PST -jbubar,2021-02-07T08:16:50Z,- jbubar commented on pull request: [988](https://github.com/hackforla/website/pull/988#issuecomment-774632793) at 2021-02-07 12:16 AM PST -jbubar,2021-02-07T08:31:52Z,- jbubar commented on pull request: [988](https://github.com/hackforla/website/pull/988#issuecomment-774634605) at 2021-02-07 12:31 AM PST -jbubar,2021-02-07T10:55:32Z,- jbubar opened pull request: [1006](https://github.com/hackforla/website/pull/1006) at 2021-02-07 02:55 AM PST -jbubar,2021-02-07T10:59:50Z,- jbubar commented on pull request: [1006](https://github.com/hackforla/website/pull/1006#issuecomment-774654039) at 2021-02-07 02:59 AM PST -jbubar,2021-02-07T23:54:54Z,- jbubar commented on pull request: [1014](https://github.com/hackforla/website/pull/1014#issuecomment-774791773) at 2021-02-07 03:54 PM PST -jbubar,2021-02-07T23:59:41Z,- jbubar commented on pull request: [1014](https://github.com/hackforla/website/pull/1014#issuecomment-774792460) at 2021-02-07 03:59 PM PST -jbubar,2021-02-08T00:03:04Z,- jbubar commented on pull request: [1009](https://github.com/hackforla/website/pull/1009#issuecomment-774793041) at 2021-02-07 04:03 PM PST -jbubar,2021-02-09T21:08:49Z,- jbubar commented on pull request: [1006](https://github.com/hackforla/website/pull/1006#issuecomment-776245339) at 2021-02-09 01:08 PM PST -jbubar,2021-02-09T23:45:41Z,- jbubar submitted pull request review: [1025](https://github.com/hackforla/website/pull/1025#pullrequestreview-587123106) at 2021-02-09 03:45 PM PST -jbubar,2021-02-09T23:45:54Z,- jbubar closed issue by PR 1025: [1024](https://github.com/hackforla/website/issues/1024#event-4312045213) at 2021-02-09 03:45 PM PST -jbubar,2021-02-09T23:48:58Z,- jbubar submitted pull request review: [1020](https://github.com/hackforla/website/pull/1020#pullrequestreview-587124714) at 2021-02-09 03:48 PM PST -jbubar,2021-02-09T23:50:41Z,- jbubar commented on pull request: [1020](https://github.com/hackforla/website/pull/1020#issuecomment-776324169) at 2021-02-09 03:50 PM PST -jbubar,2021-02-09T23:51:10Z,- jbubar closed issue as completed: [999](https://github.com/hackforla/website/issues/999#event-4312057982) at 2021-02-09 03:51 PM PST -jbubar,2021-02-09T23:51:44Z,- jbubar commented on issue: [999](https://github.com/hackforla/website/issues/999#issuecomment-776324566) at 2021-02-09 03:51 PM PST -jbubar,2021-02-10T00:06:34Z,- jbubar submitted pull request review: [1019](https://github.com/hackforla/website/pull/1019#pullrequestreview-587132675) at 2021-02-09 04:06 PM PST -jbubar,2021-02-10T00:11:56Z,- jbubar commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-776332263) at 2021-02-09 04:11 PM PST -jbubar,2021-02-10T00:21:16Z,- jbubar commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-776336288) at 2021-02-09 04:21 PM PST -jbubar,2021-02-10T00:22:16Z,- jbubar commented on pull request: [1019](https://github.com/hackforla/website/pull/1019#issuecomment-776336702) at 2021-02-09 04:22 PM PST -jbubar,2021-02-10T00:22:23Z,- jbubar commented on pull request: [1019](https://github.com/hackforla/website/pull/1019#issuecomment-776336757) at 2021-02-09 04:22 PM PST -jbubar,2021-02-10T00:22:28Z,- jbubar commented on pull request: [1019](https://github.com/hackforla/website/pull/1019#issuecomment-776336788) at 2021-02-09 04:22 PM PST -jbubar,2021-02-10T00:24:32Z,- jbubar commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-776337593) at 2021-02-09 04:24 PM PST -jbubar,2021-02-10T00:26:45Z,- jbubar closed issue by PR 1019: [953](https://github.com/hackforla/website/issues/953#event-4312147230) at 2021-02-09 04:26 PM PST -jbubar,2021-02-10T02:34:12Z,- jbubar submitted pull request review: [1017](https://github.com/hackforla/website/pull/1017#pullrequestreview-587204148) at 2021-02-09 06:34 PM PST -jbubar,2021-02-10T02:54:02Z,- jbubar opened issue: [1028](https://github.com/hackforla/website/issues/1028) at 2021-02-09 06:54 PM PST -jbubar,2021-02-10T02:57:16Z,- jbubar opened issue: [1029](https://github.com/hackforla/website/issues/1029) at 2021-02-09 06:57 PM PST -jbubar,2021-02-10T03:09:15Z,- jbubar opened issue: [1030](https://github.com/hackforla/website/issues/1030) at 2021-02-09 07:09 PM PST -jbubar,2021-02-10T03:58:29Z,- jbubar commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-776422060) at 2021-02-09 07:58 PM PST -jbubar,2021-02-10T04:02:26Z,- jbubar commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-776423179) at 2021-02-09 08:02 PM PST -jbubar,2021-02-10T23:47:35Z,- jbubar commented on issue: [1030](https://github.com/hackforla/website/issues/1030#issuecomment-777117431) at 2021-02-10 03:47 PM PST -jbubar,2021-02-14T17:12:51Z,- jbubar commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-778807717) at 2021-02-14 09:12 AM PST -jbubar,2021-02-14T17:53:45Z,- jbubar submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590070100) at 2021-02-14 09:53 AM PST -jbubar,2021-02-14T17:55:20Z,- jbubar pull request closed w/o merging: [1006](https://github.com/hackforla/website/pull/1006#event-4328956071) at 2021-02-14 09:55 AM PST -jbubar,2021-02-14T19:36:08Z,- jbubar commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-778829189) at 2021-02-14 11:36 AM PST -jbubar,2021-02-14T19:39:09Z,- jbubar commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-778829720) at 2021-02-14 11:39 AM PST -jbubar,2021-02-15T01:50:09Z,- jbubar submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590117891) at 2021-02-14 05:50 PM PST -jbubar,2021-02-15T03:56:07Z,- jbubar submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590144931) at 2021-02-14 07:56 PM PST -jbubar,2021-02-15T03:58:18Z,- jbubar commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778921283) at 2021-02-14 07:58 PM PST -jbubar,2021-02-17T01:16:36Z,- jbubar opened issue: [1060](https://github.com/hackforla/website/issues/1060) at 2021-02-16 05:16 PM PST -jbubar,2021-02-17T01:22:44Z,- jbubar opened issue: [1061](https://github.com/hackforla/website/issues/1061) at 2021-02-16 05:22 PM PST -jbubar,2021-02-17T01:31:32Z,- jbubar opened issue: [1062](https://github.com/hackforla/website/issues/1062) at 2021-02-16 05:31 PM PST -jbubar,2021-02-17T01:37:48Z,- jbubar commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780234712) at 2021-02-16 05:37 PM PST -jbubar,2021-02-17T01:48:44Z,- jbubar opened issue: [1065](https://github.com/hackforla/website/issues/1065) at 2021-02-16 05:48 PM PST -jbubar,2021-02-17T01:50:15Z,- jbubar commented on issue: [1065](https://github.com/hackforla/website/issues/1065#issuecomment-780238985) at 2021-02-16 05:50 PM PST -jbubar,2021-02-17T01:57:48Z,- jbubar opened issue: [1066](https://github.com/hackforla/website/issues/1066) at 2021-02-16 05:57 PM PST -jbubar,2021-02-17T02:01:11Z,- jbubar opened issue: [1067](https://github.com/hackforla/website/issues/1067) at 2021-02-16 06:01 PM PST -jbubar,2021-02-17T02:07:19Z,- jbubar opened issue: [1068](https://github.com/hackforla/website/issues/1068) at 2021-02-16 06:07 PM PST -jbubar,2021-02-17T02:22:02Z,- jbubar opened issue: [1069](https://github.com/hackforla/website/issues/1069) at 2021-02-16 06:22 PM PST -jbubar,2021-02-17T03:07:27Z,- jbubar opened issue: [1070](https://github.com/hackforla/website/issues/1070) at 2021-02-16 07:07 PM PST -jbubar,2021-02-17T06:28:53Z,- jbubar commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-780335862) at 2021-02-16 10:28 PM PST -jbubar,2021-02-17T06:28:53Z,- jbubar closed issue as completed: [831](https://github.com/hackforla/website/issues/831#event-4339680586) at 2021-02-16 10:28 PM PST -jbubar,2021-02-17T16:35:13Z,- jbubar commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-780683706) at 2021-02-17 08:35 AM PST -jbubar,2021-02-18T08:18:58Z,- jbubar submitted pull request review: [1073](https://github.com/hackforla/website/pull/1073#pullrequestreview-592949616) at 2021-02-18 12:18 AM PST -jbubar,2021-02-18T23:14:50Z,- jbubar closed issue by PR 1073: [966](https://github.com/hackforla/website/issues/966#event-4349404726) at 2021-02-18 03:14 PM PST -jbubar,2021-02-18T23:22:07Z,- jbubar commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-781700525) at 2021-02-18 03:22 PM PST -jbubar,2021-02-18T23:33:51Z,- jbubar commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-781704960) at 2021-02-18 03:33 PM PST -jbubar,2021-02-19T00:01:58Z,- jbubar commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-781715142) at 2021-02-18 04:01 PM PST -jbubar,2021-02-19T00:09:30Z,- jbubar commented on pull request: [1075](https://github.com/hackforla/website/pull/1075#issuecomment-781718410) at 2021-02-18 04:09 PM PST -jbubar,2021-02-21T18:54:15Z,- jbubar commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-782906705) at 2021-02-21 10:54 AM PST -jbubar,2021-02-22T00:42:28Z,- jbubar submitted pull request review: [1088](https://github.com/hackforla/website/pull/1088#pullrequestreview-594904342) at 2021-02-21 04:42 PM PST -jbubar,2021-02-22T01:05:08Z,- jbubar assigned to issue: [1066](https://github.com/hackforla/website/issues/1066) at 2021-02-21 05:05 PM PST -jbubar,2021-02-24T02:51:35Z,- jbubar commented on pull request: [1097](https://github.com/hackforla/website/pull/1097#issuecomment-784710336) at 2021-02-23 06:51 PM PST -jbubar,2021-02-24T04:43:48Z,- jbubar submitted pull request review: [1099](https://github.com/hackforla/website/pull/1099#pullrequestreview-597064455) at 2021-02-23 08:43 PM PST -jbubar,2021-02-24T04:43:55Z,- jbubar closed issue by PR 1099: [1098](https://github.com/hackforla/website/issues/1098#event-4368764190) at 2021-02-23 08:43 PM PST -jbubar,2021-02-24T06:22:04Z,- jbubar commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-784821011) at 2021-02-23 10:22 PM PST -jbubar,2021-02-24T06:23:27Z,- jbubar commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-784821786) at 2021-02-23 10:23 PM PST -jbubar,2021-02-25T07:27:12Z,- jbubar opened issue: [1118](https://github.com/hackforla/website/issues/1118) at 2021-02-24 11:27 PM PST -jbubar,2021-02-26T17:28:42Z,- jbubar submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599789803) at 2021-02-26 09:28 AM PST -jbubar,2021-02-26T19:17:45Z,- jbubar opened pull request: [1124](https://github.com/hackforla/website/pull/1124) at 2021-02-26 11:17 AM PST -jbubar,2021-02-26T19:20:26Z,- jbubar pull request merged: [1124](https://github.com/hackforla/website/pull/1124#event-4383388380) at 2021-02-26 11:20 AM PST -jbubar,2021-02-27T02:08:36Z,- jbubar submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-600064099) at 2021-02-26 06:08 PM PST -jbubar,2021-02-27T06:15:54Z,- jbubar opened issue: [1130](https://github.com/hackforla/website/issues/1130) at 2021-02-26 10:15 PM PST -jbubar,2021-02-27T06:15:54Z,- jbubar assigned to issue: [1130](https://github.com/hackforla/website/issues/1130) at 2021-02-26 10:15 PM PST -jbubar,2021-02-27T06:18:28Z,- jbubar commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-787013805) at 2021-02-26 10:18 PM PST -jbubar,2021-02-27T20:28:45Z,- jbubar submitted pull request review: [1100](https://github.com/hackforla/website/pull/1100#pullrequestreview-600192808) at 2021-02-27 12:28 PM PST -jbubar,2021-02-28T17:16:28Z,- jbubar opened pull request: [1132](https://github.com/hackforla/website/pull/1132) at 2021-02-28 09:16 AM PST -jbubar,2021-02-28T18:13:56Z,- jbubar commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-787495505) at 2021-02-28 10:13 AM PST -jbubar,2021-02-28T18:15:37Z,- jbubar commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-787495827) at 2021-02-28 10:15 AM PST -jbubar,2021-02-28T19:41:49Z,- jbubar opened issue: [1138](https://github.com/hackforla/website/issues/1138) at 2021-02-28 11:41 AM PST -jbubar,2021-02-28T19:46:06Z,- jbubar commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-787510622) at 2021-02-28 11:46 AM PST -jbubar,2021-02-28T19:46:20Z,- jbubar closed issue by PR 1117: [1109](https://github.com/hackforla/website/issues/1109#event-4386455234) at 2021-02-28 11:46 AM PST -jbubar,2021-02-28T19:46:21Z,- jbubar closed issue by PR 1117: [1111](https://github.com/hackforla/website/issues/1111#event-4386455249) at 2021-02-28 11:46 AM PST -jbubar,2021-02-28T19:46:21Z,- jbubar closed issue by PR 1117: [1112](https://github.com/hackforla/website/issues/1112#event-4386455239) at 2021-02-28 11:46 AM PST -jbubar,2021-02-28T19:46:21Z,- jbubar closed issue by PR 1117: [1113](https://github.com/hackforla/website/issues/1113#event-4386455247) at 2021-02-28 11:46 AM PST -jbubar,2021-02-28T19:46:21Z,- jbubar closed issue by PR 1117: [1114](https://github.com/hackforla/website/issues/1114#event-4386455236) at 2021-02-28 11:46 AM PST -jbubar,2021-02-28T19:46:21Z,- jbubar closed issue by PR 1117: [1116](https://github.com/hackforla/website/issues/1116#event-4386455254) at 2021-02-28 11:46 AM PST -jbubar,2021-02-28T19:51:35Z,- jbubar commented on pull request: [1129](https://github.com/hackforla/website/pull/1129#issuecomment-787511340) at 2021-02-28 11:51 AM PST -jbubar,2021-03-01T02:49:55Z,- jbubar commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-787599011) at 2021-02-28 06:49 PM PST -jbubar,2021-03-01T03:06:18Z,- jbubar submitted pull request review: [1141](https://github.com/hackforla/website/pull/1141#pullrequestreview-600361166) at 2021-02-28 07:06 PM PST -jbubar,2021-03-01T03:07:48Z,- jbubar closed issue by PR 1141: [1118](https://github.com/hackforla/website/issues/1118#event-4387058511) at 2021-02-28 07:07 PM PST -jbubar,2021-03-01T03:29:06Z,- jbubar commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-787610575) at 2021-02-28 07:29 PM PST -jbubar,2021-03-01T18:15:16Z,- jbubar commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788160809) at 2021-03-01 10:15 AM PST -jbubar,2021-03-01T18:49:26Z,- jbubar unassigned from issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788182866) at 2021-03-01 10:49 AM PST -jbubar,2021-03-01T21:25:01Z,- jbubar commented on issue: [1107](https://github.com/hackforla/website/issues/1107#issuecomment-788304375) at 2021-03-01 01:25 PM PST -jbubar,2021-03-01T21:29:48Z,- jbubar commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788308182) at 2021-03-01 01:29 PM PST -jbubar,2021-03-01T22:00:13Z,- jbubar opened issue: [1146](https://github.com/hackforla/website/issues/1146) at 2021-03-01 02:00 PM PST -jbubar,2021-03-01T22:06:23Z,- jbubar commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788333558) at 2021-03-01 02:06 PM PST -jbubar,2021-03-01T22:30:23Z,- jbubar submitted pull request review: [1145](https://github.com/hackforla/website/pull/1145#pullrequestreview-601226887) at 2021-03-01 02:30 PM PST -jbubar,2021-03-01T22:39:35Z,- jbubar submitted pull request review: [1147](https://github.com/hackforla/website/pull/1147#pullrequestreview-601232692) at 2021-03-01 02:39 PM PST -jbubar,2021-03-01T22:52:10Z,- jbubar commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-788367832) at 2021-03-01 02:52 PM PST -jbubar,2021-03-02T15:54:43Z,- jbubar commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-789010443) at 2021-03-02 07:54 AM PST -jbubar,2021-03-03T01:18:30Z,- jbubar submitted pull request review: [1147](https://github.com/hackforla/website/pull/1147#pullrequestreview-602423175) at 2021-03-02 05:18 PM PST -jbubar,2021-03-03T01:24:56Z,- jbubar submitted pull request review: [1147](https://github.com/hackforla/website/pull/1147#pullrequestreview-602425985) at 2021-03-02 05:24 PM PST -jbubar,2021-03-06T07:11:15Z,- jbubar commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-791887703) at 2021-03-05 11:11 PM PST -jbubar,2021-03-06T07:20:58Z,- jbubar opened issue: [1163](https://github.com/hackforla/website/issues/1163) at 2021-03-05 11:20 PM PST -jbubar,2021-03-06T07:22:58Z,- jbubar commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-791888735) at 2021-03-05 11:22 PM PST -jbubar,2021-03-06T07:32:50Z,- jbubar submitted pull request review: [1157](https://github.com/hackforla/website/pull/1157#pullrequestreview-605737071) at 2021-03-05 11:32 PM PST -jbubar,2021-03-06T07:34:38Z,- jbubar closed issue by PR 1157: [1055](https://github.com/hackforla/website/issues/1055#event-4416609975) at 2021-03-05 11:34 PM PST -jbubar,2021-03-06T07:43:26Z,- jbubar commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-791890573) at 2021-03-05 11:43 PM PST -jbubar,2021-03-06T07:44:25Z,- jbubar commented on issue: [1066](https://github.com/hackforla/website/issues/1066#issuecomment-791890668) at 2021-03-05 11:44 PM PST -jbubar,2021-03-06T07:45:40Z,- jbubar commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-791890779) at 2021-03-05 11:45 PM PST -jbubar,2021-03-08T05:49:09Z,- jbubar commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-792484239) at 2021-03-07 09:49 PM PST -jbubar,2021-03-08T21:14:40Z,- jbubar pull request merged: [1132](https://github.com/hackforla/website/pull/1132#event-4423618661) at 2021-03-08 01:14 PM PST -jbubar,2021-03-09T01:05:15Z,- jbubar opened pull request: [1179](https://github.com/hackforla/website/pull/1179) at 2021-03-08 05:05 PM PST -jbubar,2021-03-09T01:06:29Z,- jbubar pull request merged: [1179](https://github.com/hackforla/website/pull/1179#event-4424477868) at 2021-03-08 05:06 PM PST -jbubar,2021-03-09T01:24:51Z,- jbubar opened pull request: [1180](https://github.com/hackforla/website/pull/1180) at 2021-03-08 05:24 PM PST -jbubar,2021-03-09T01:26:20Z,- jbubar pull request merged: [1180](https://github.com/hackforla/website/pull/1180#event-4424548818) at 2021-03-08 05:26 PM PST -jbubar,2021-03-09T20:15:32Z,- jbubar opened pull request: [1183](https://github.com/hackforla/website/pull/1183) at 2021-03-09 12:15 PM PST -jbubar,2021-03-09T20:41:16Z,- jbubar pull request merged: [1183](https://github.com/hackforla/website/pull/1183#event-4431248481) at 2021-03-09 12:41 PM PST -jbubar,2021-03-10T05:20:54Z,- jbubar commented on pull request: [1186](https://github.com/hackforla/website/pull/1186#issuecomment-794899878) at 2021-03-09 09:20 PM PST -jbubar,2021-03-10T05:21:03Z,- jbubar closed issue by PR 1186: [1185](https://github.com/hackforla/website/issues/1185#event-4433532979) at 2021-03-09 09:21 PM PST -jbubar,2021-03-10T23:46:17Z,- jbubar commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-796295210) at 2021-03-10 03:46 PM PST -jbubar,2021-03-13T00:55:35Z,- jbubar submitted pull request review: [1200](https://github.com/hackforla/website/pull/1200#pullrequestreview-611286707) at 2021-03-12 05:55 PM PDT -jbubar,2021-03-13T00:56:00Z,- jbubar closed issue by PR 1200: [1184](https://github.com/hackforla/website/issues/1184#event-4453238268) at 2021-03-12 05:56 PM PDT -jbubar,2021-03-13T05:01:22Z,- jbubar commented on pull request: [1199](https://github.com/hackforla/website/pull/1199#issuecomment-797867782) at 2021-03-12 10:01 PM PDT -jbubar,2021-03-13T05:10:30Z,- jbubar submitted pull request review: [1199](https://github.com/hackforla/website/pull/1199#pullrequestreview-611568273) at 2021-03-12 10:10 PM PDT -jbubar,2021-03-13T21:57:33Z,- jbubar submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-611641132) at 2021-03-13 02:57 PM PDT -jbubar,2021-03-14T10:29:12Z,- jbubar commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-798883102) at 2021-03-14 03:29 AM PDT -jbubar,2021-03-14T10:49:19Z,- jbubar opened issue: [1203](https://github.com/hackforla/website/issues/1203) at 2021-03-14 03:49 AM PDT -jbubar,2021-03-14T17:47:53Z,- jbubar closed issue by PR 1199: [959](https://github.com/hackforla/website/issues/959#event-4455522601) at 2021-03-14 10:47 AM PDT -jbubar,2021-03-15T20:39:01Z,- jbubar opened issue: [1207](https://github.com/hackforla/website/issues/1207) at 2021-03-15 01:39 PM PDT -jbubar,2021-03-15T22:20:28Z,- jbubar closed issue by PR 1209: [1207](https://github.com/hackforla/website/issues/1207#event-4461337773) at 2021-03-15 03:20 PM PDT -jbubar,2021-03-15T22:20:46Z,- jbubar commented on pull request: [1209](https://github.com/hackforla/website/pull/1209#issuecomment-799793598) at 2021-03-15 03:20 PM PDT -jbubar,2021-03-17T17:59:56Z,- jbubar assigned to issue: [1104](https://github.com/hackforla/website/issues/1104) at 2021-03-17 10:59 AM PDT -jbubar,2021-03-17T18:07:42Z,- jbubar commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-801298520) at 2021-03-17 11:07 AM PDT -jbubar,2021-03-17T18:07:56Z,- jbubar unassigned from issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-801298520) at 2021-03-17 11:07 AM PDT -jbubar,2021-03-17T18:08:46Z,- jbubar submitted pull request review: [1218](https://github.com/hackforla/website/pull/1218#pullrequestreview-614639918) at 2021-03-17 11:08 AM PDT -jbubar,2021-03-17T18:20:27Z,- jbubar submitted pull request review: [1217](https://github.com/hackforla/website/pull/1217#pullrequestreview-614650419) at 2021-03-17 11:20 AM PDT -jbubar,2021-03-17T18:38:43Z,- jbubar commented on pull request: [1137](https://github.com/hackforla/website/pull/1137#issuecomment-801320557) at 2021-03-17 11:38 AM PDT -jbubar,2021-03-17T20:56:27Z,- jbubar opened issue: [1223](https://github.com/hackforla/website/issues/1223) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:32Z,- jbubar opened issue: [1224](https://github.com/hackforla/website/issues/1224) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:35Z,- jbubar opened issue: [1225](https://github.com/hackforla/website/issues/1225) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:41Z,- jbubar opened issue: [1226](https://github.com/hackforla/website/issues/1226) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:43Z,- jbubar opened issue: [1227](https://github.com/hackforla/website/issues/1227) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:44Z,- jbubar opened issue: [1228](https://github.com/hackforla/website/issues/1228) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:46Z,- jbubar opened issue: [1229](https://github.com/hackforla/website/issues/1229) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:48Z,- jbubar opened issue: [1230](https://github.com/hackforla/website/issues/1230) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:56:49Z,- jbubar opened issue: [1231](https://github.com/hackforla/website/issues/1231) at 2021-03-17 01:56 PM PDT -jbubar,2021-03-17T20:57:02Z,- jbubar opened issue: [1232](https://github.com/hackforla/website/issues/1232) at 2021-03-17 01:57 PM PDT -jbubar,2021-03-17T20:57:03Z,- jbubar opened issue: [1233](https://github.com/hackforla/website/issues/1233) at 2021-03-17 01:57 PM PDT -jbubar,2021-03-17T20:57:12Z,- jbubar opened issue: [1234](https://github.com/hackforla/website/issues/1234) at 2021-03-17 01:57 PM PDT -jbubar,2021-03-17T20:57:13Z,- jbubar opened issue: [1235](https://github.com/hackforla/website/issues/1235) at 2021-03-17 01:57 PM PDT -jbubar,2021-03-17T20:58:26Z,- jbubar closed issue as completed: [1223](https://github.com/hackforla/website/issues/1223#event-4472553175) at 2021-03-17 01:58 PM PDT -jbubar,2021-03-17T20:58:37Z,- jbubar closed issue as completed: [1235](https://github.com/hackforla/website/issues/1235#event-4472553869) at 2021-03-17 01:58 PM PDT -jbubar,2021-03-17T20:58:44Z,- jbubar closed issue as completed: [1234](https://github.com/hackforla/website/issues/1234#event-4472554407) at 2021-03-17 01:58 PM PDT -jbubar,2021-03-17T21:01:41Z,- jbubar opened issue: [1241](https://github.com/hackforla/website/issues/1241) at 2021-03-17 02:01 PM PDT -jbubar,2021-03-17T21:01:54Z,- jbubar closed issue as completed: [1241](https://github.com/hackforla/website/issues/1241#event-4472567470) at 2021-03-17 02:01 PM PDT -jbubar,2021-03-19T23:38:12Z,- jbubar submitted pull request review: [1270](https://github.com/hackforla/website/pull/1270#pullrequestreview-616849723) at 2021-03-19 04:38 PM PDT -jbubar,2021-03-19T23:41:54Z,- jbubar commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803193340) at 2021-03-19 04:41 PM PDT -jbubar,2021-03-20T23:55:06Z,- jbubar submitted pull request review: [1275](https://github.com/hackforla/website/pull/1275#pullrequestreview-616970916) at 2021-03-20 04:55 PM PDT -jbubar,2021-03-20T23:55:17Z,- jbubar closed issue by PR 1275: [1067](https://github.com/hackforla/website/issues/1067#event-4486130161) at 2021-03-20 04:55 PM PDT -jbubar,2021-03-21T00:03:24Z,- jbubar submitted pull request review: [1267](https://github.com/hackforla/website/pull/1267#pullrequestreview-616971275) at 2021-03-20 05:03 PM PDT -jbubar,2021-03-21T16:17:52Z,- jbubar closed issue by PR 1267: [1266](https://github.com/hackforla/website/issues/1266#event-4486914916) at 2021-03-21 09:17 AM PDT -jbubar,2021-03-21T16:18:20Z,- jbubar commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803613990) at 2021-03-21 09:18 AM PDT -jbubar,2021-03-21T16:21:44Z,- jbubar commented on issue: [1276](https://github.com/hackforla/website/issues/1276#issuecomment-803614649) at 2021-03-21 09:21 AM PDT -jbubar,2021-03-21T18:17:43Z,- jbubar assigned to issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-803635491) at 2021-03-21 11:17 AM PDT -jbubar,2021-03-21T18:45:39Z,- jbubar opened issue: [1285](https://github.com/hackforla/website/issues/1285) at 2021-03-21 11:45 AM PDT -jbubar,2021-03-21T19:14:17Z,- jbubar opened issue: [1286](https://github.com/hackforla/website/issues/1286) at 2021-03-21 12:14 PM PDT -jbubar,2021-03-21T19:38:37Z,- jbubar submitted pull request review: [1269](https://github.com/hackforla/website/pull/1269#pullrequestreview-617054234) at 2021-03-21 12:38 PM PDT -jbubar,2021-03-21T19:38:50Z,- jbubar closed issue by PR 1269: [1268](https://github.com/hackforla/website/issues/1268#event-4487117262) at 2021-03-21 12:38 PM PDT -jbubar,2021-03-23T05:36:31Z,- jbubar submitted pull request review: [1308](https://github.com/hackforla/website/pull/1308#pullrequestreview-618219119) at 2021-03-22 10:36 PM PDT -jbubar,2021-03-23T20:13:28Z,- jbubar opened pull request: [1314](https://github.com/hackforla/website/pull/1314) at 2021-03-23 01:13 PM PDT -jbubar,2021-03-24T04:00:13Z,- jbubar submitted pull request review: [1316](https://github.com/hackforla/website/pull/1316#pullrequestreview-619291212) at 2021-03-23 09:00 PM PDT -jbubar,2021-03-24T21:46:51Z,- jbubar submitted pull request review: [1320](https://github.com/hackforla/website/pull/1320#pullrequestreview-620258720) at 2021-03-24 02:46 PM PDT -jbubar,2021-03-26T16:57:49Z,- jbubar submitted pull request review: [1328](https://github.com/hackforla/website/pull/1328#pullrequestreview-622357610) at 2021-03-26 09:57 AM PDT -jbubar,2021-03-27T05:41:00Z,- jbubar submitted pull request review: [1277](https://github.com/hackforla/website/pull/1277#pullrequestreview-622622292) at 2021-03-26 10:41 PM PDT -jbubar,2021-03-28T07:00:35Z,- jbubar commented on pull request: [1277](https://github.com/hackforla/website/pull/1277#issuecomment-808857151) at 2021-03-28 12:00 AM PDT -jbubar,2021-03-31T02:52:18Z,- jbubar closed issue by PR 1277: [958](https://github.com/hackforla/website/issues/958#event-4531603667) at 2021-03-30 07:52 PM PDT -jbubar,2021-03-31T23:13:38Z,- jbubar submitted pull request review: [1344](https://github.com/hackforla/website/pull/1344#pullrequestreview-625790517) at 2021-03-31 04:13 PM PDT -jbubar,2021-04-04T16:47:34Z,- jbubar commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-813063404) at 2021-04-04 09:47 AM PDT -jbubar,2021-04-04T16:49:36Z,- jbubar closed issue as completed: [1203](https://github.com/hackforla/website/issues/1203#event-4549294876) at 2021-04-04 09:49 AM PDT -jbubar,2021-04-04T16:50:25Z,- jbubar commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-813063781) at 2021-04-04 09:50 AM PDT -jbubar,2021-04-04T17:33:40Z,- jbubar opened issue: [1351](https://github.com/hackforla/website/issues/1351) at 2021-04-04 10:33 AM PDT -jbubar,2021-04-04T19:18:37Z,- jbubar opened issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-04-04 12:18 PM PDT -jbubar,2021-04-04T19:19:58Z,- jbubar assigned to issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-04-04 12:19 PM PDT -jbubar,2021-04-04T20:55:26Z,- jbubar submitted pull request review: [1349](https://github.com/hackforla/website/pull/1349#pullrequestreview-627572006) at 2021-04-04 01:55 PM PDT -jbubar,2021-04-04T20:56:44Z,- jbubar closed issue by PR 1349: [1348](https://github.com/hackforla/website/issues/1348#event-4549503810) at 2021-04-04 01:56 PM PDT -jbubar,2021-04-04T21:32:09Z,- jbubar commented on pull request: [1350](https://github.com/hackforla/website/pull/1350#issuecomment-813102550) at 2021-04-04 02:32 PM PDT -jbubar,2021-04-05T08:09:27Z,- jbubar submitted pull request review: [1357](https://github.com/hackforla/website/pull/1357#pullrequestreview-627698665) at 2021-04-05 01:09 AM PDT -jbubar,2021-04-05T08:20:58Z,- jbubar submitted pull request review: [1355](https://github.com/hackforla/website/pull/1355#pullrequestreview-627703778) at 2021-04-05 01:20 AM PDT -jbubar,2021-04-05T16:57:29Z,- jbubar closed issue as completed: [1139](https://github.com/hackforla/website/issues/1139#event-4552457705) at 2021-04-05 09:57 AM PDT -jbubar,2021-04-05T20:49:12Z,- jbubar closed issue by PR 1357: [1351](https://github.com/hackforla/website/issues/1351#event-4553353428) at 2021-04-05 01:49 PM PDT -jbubar,2021-04-08T02:36:18Z,- jbubar opened issue: [1374](https://github.com/hackforla/website/issues/1374) at 2021-04-07 07:36 PM PDT -jbubar,2021-04-08T02:39:54Z,- jbubar commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-815403356) at 2021-04-07 07:39 PM PDT -jbubar,2021-04-08T02:45:33Z,- jbubar opened issue: [1375](https://github.com/hackforla/website/issues/1375) at 2021-04-07 07:45 PM PDT -jbubar,2021-04-08T02:46:32Z,- jbubar commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-815405373) at 2021-04-07 07:46 PM PDT -jbubar,2021-04-08T02:59:43Z,- jbubar opened issue: [1376](https://github.com/hackforla/website/issues/1376) at 2021-04-07 07:59 PM PDT -jbubar,2021-04-11T02:40:46Z,- jbubar commented on pull request: [1386](https://github.com/hackforla/website/pull/1386#issuecomment-817237407) at 2021-04-10 07:40 PM PDT -jbubar,2021-04-11T02:41:48Z,- jbubar closed issue as completed: [1376](https://github.com/hackforla/website/issues/1376#event-4578077197) at 2021-04-10 07:41 PM PDT -jbubar,2021-04-13T02:18:44Z,- jbubar commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818381680) at 2021-04-12 07:18 PM PDT -jbubar,2021-04-13T02:21:06Z,- jbubar submitted pull request review: [1396](https://github.com/hackforla/website/pull/1396#pullrequestreview-634117389) at 2021-04-12 07:21 PM PDT -jbubar,2021-04-13T02:21:11Z,- jbubar closed issue by PR 1396: [1382](https://github.com/hackforla/website/issues/1382#event-4585419379) at 2021-04-12 07:21 PM PDT -jbubar,2021-04-13T03:44:56Z,- jbubar commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-818409060) at 2021-04-12 08:44 PM PDT -jbubar,2021-04-13T18:04:00Z,- jbubar closed issue by PR 1400: [1341](https://github.com/hackforla/website/issues/1341#event-4589549454) at 2021-04-13 11:04 AM PDT -jbubar,2021-04-13T18:39:25Z,- jbubar commented on pull request: [1355](https://github.com/hackforla/website/pull/1355#issuecomment-818968480) at 2021-04-13 11:39 AM PDT -jbubar,2021-04-13T20:39:20Z,- jbubar submitted pull request review: [1386](https://github.com/hackforla/website/pull/1386#pullrequestreview-635006303) at 2021-04-13 01:39 PM PDT -jbubar,2021-04-13T20:39:28Z,- jbubar closed issue by PR 1386: [1336](https://github.com/hackforla/website/issues/1336#event-4590174857) at 2021-04-13 01:39 PM PDT -jbubar,2021-04-13T20:49:59Z,- jbubar submitted pull request review: [1355](https://github.com/hackforla/website/pull/1355#pullrequestreview-635014251) at 2021-04-13 01:49 PM PDT -jbubar,2021-04-13T20:50:22Z,- jbubar closed issue by PR 1355: [1192](https://github.com/hackforla/website/issues/1192#event-4590217217) at 2021-04-13 01:50 PM PDT -jbubar,2021-04-13T20:53:13Z,- jbubar submitted pull request review: [1362](https://github.com/hackforla/website/pull/1362#pullrequestreview-635016603) at 2021-04-13 01:53 PM PDT -jbubar,2021-04-13T20:57:04Z,- jbubar submitted pull request review: [1387](https://github.com/hackforla/website/pull/1387#pullrequestreview-635019426) at 2021-04-13 01:57 PM PDT -jbubar,2021-04-13T23:38:01Z,- jbubar commented on pull request: [1394](https://github.com/hackforla/website/pull/1394#issuecomment-819118628) at 2021-04-13 04:38 PM PDT -jbubar,2021-04-13T23:53:10Z,- jbubar opened pull request: [1404](https://github.com/hackforla/website/pull/1404) at 2021-04-13 04:53 PM PDT -jbubar,2021-04-13T23:58:13Z,- jbubar commented on pull request: [1404](https://github.com/hackforla/website/pull/1404#issuecomment-819124887) at 2021-04-13 04:58 PM PDT -jbubar,2021-04-14T00:16:34Z,- jbubar pull request merged: [1404](https://github.com/hackforla/website/pull/1404#event-4590798297) at 2021-04-13 05:16 PM PDT -jbubar,2021-04-16T23:21:38Z,- jbubar commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-821720101) at 2021-04-16 04:21 PM PDT -jbubar,2021-04-18T07:34:29Z,- jbubar commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-821948429) at 2021-04-18 12:34 AM PDT -jbubar,2021-04-19T17:48:48Z,- jbubar submitted pull request review: [1420](https://github.com/hackforla/website/pull/1420#pullrequestreview-639144478) at 2021-04-19 10:48 AM PDT -jbubar,2021-04-19T17:48:55Z,- jbubar closed issue by PR 1420: [1417](https://github.com/hackforla/website/issues/1417#event-4614175247) at 2021-04-19 10:48 AM PDT -jbubar,2021-04-19T17:48:55Z,- jbubar closed issue by PR 1420: [1418](https://github.com/hackforla/website/issues/1418#event-4614175232) at 2021-04-19 10:48 AM PDT -jbubar,2021-04-19T17:50:09Z,- jbubar commented on pull request: [1420](https://github.com/hackforla/website/pull/1420#issuecomment-822657520) at 2021-04-19 10:50 AM PDT -jbubar,2021-04-19T22:19:28Z,- jbubar commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-822823561) at 2021-04-19 03:19 PM PDT -jbubar,2021-04-21T03:11:47Z,- jbubar opened issue: [1425](https://github.com/hackforla/website/issues/1425) at 2021-04-20 08:11 PM PDT -jbubar,2021-04-21T03:49:45Z,- jbubar submitted pull request review: [1421](https://github.com/hackforla/website/pull/1421#pullrequestreview-640604576) at 2021-04-20 08:49 PM PDT -jbubar,2021-04-21T03:50:19Z,- jbubar closed issue by PR 1421: [833](https://github.com/hackforla/website/issues/833#event-4622569833) at 2021-04-20 08:50 PM PDT -jbubar,2021-04-21T04:50:10Z,- jbubar submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-640624536) at 2021-04-20 09:50 PM PDT -jbubar,2021-04-21T23:53:08Z,- jbubar opened issue: [1431](https://github.com/hackforla/website/issues/1431) at 2021-04-21 04:53 PM PDT -jbubar,2021-04-21T23:57:31Z,- jbubar opened issue: [1432](https://github.com/hackforla/website/issues/1432) at 2021-04-21 04:57 PM PDT -jbubar,2021-04-25T16:20:13Z,- jbubar submitted pull request review: [1448](https://github.com/hackforla/website/pull/1448#pullrequestreview-644157189) at 2021-04-25 09:20 AM PDT -jbubar,2021-04-25T16:22:36Z,- jbubar commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826350493) at 2021-04-25 09:22 AM PDT -jbubar,2021-04-27T03:56:42Z,- jbubar assigned to issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-26 08:56 PM PDT -jbubar,2021-04-28T00:11:54Z,- jbubar opened issue: [1475](https://github.com/hackforla/website/issues/1475) at 2021-04-27 05:11 PM PDT -jbubar,2021-04-28T00:49:06Z,- jbubar opened issue: [1477](https://github.com/hackforla/website/issues/1477) at 2021-04-27 05:49 PM PDT -jbubar,2021-04-28T01:00:53Z,- jbubar opened issue: [1478](https://github.com/hackforla/website/issues/1478) at 2021-04-27 06:00 PM PDT -jbubar,2021-05-02T17:21:18Z,- jbubar commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-830841986) at 2021-05-02 10:21 AM PDT -jbubar,2021-05-02T17:28:34Z,- jbubar commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-830842911) at 2021-05-02 10:28 AM PDT -jbubar,2021-05-02T17:32:54Z,- jbubar assigned to issue: [1458](https://github.com/hackforla/website/issues/1458) at 2021-05-02 10:32 AM PDT -jbubar,2021-05-02T17:33:09Z,- jbubar unassigned from issue: [1458](https://github.com/hackforla/website/issues/1458) at 2021-05-02 10:33 AM PDT -jbubar,2021-05-02T19:43:08Z,- jbubar commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-830861025) at 2021-05-02 12:43 PM PDT -jbubar,2021-05-05T01:41:13Z,- jbubar submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-651788566) at 2021-05-04 06:41 PM PDT -jbubar,2021-05-05T02:25:17Z,- jbubar commented on pull request: [1502](https://github.com/hackforla/website/pull/1502#issuecomment-832371855) at 2021-05-04 07:25 PM PDT -jbubar,2021-05-06T20:57:33Z,- jbubar commented on pull request: [1518](https://github.com/hackforla/website/pull/1518#issuecomment-833860855) at 2021-05-06 01:57 PM PDT -jbubar,2021-05-07T17:25:24Z,- jbubar submitted pull request review: [1516](https://github.com/hackforla/website/pull/1516#pullrequestreview-654707103) at 2021-05-07 10:25 AM PDT -jbubar,2021-05-07T17:42:16Z,- jbubar commented on pull request: [1523](https://github.com/hackforla/website/pull/1523#issuecomment-834647903) at 2021-05-07 10:42 AM PDT -jbubar,2021-05-07T17:42:40Z,- jbubar commented on pull request: [1523](https://github.com/hackforla/website/pull/1523#issuecomment-834648121) at 2021-05-07 10:42 AM PDT -jbubar,2021-05-07T17:44:58Z,- jbubar commented on pull request: [1523](https://github.com/hackforla/website/pull/1523#issuecomment-834649476) at 2021-05-07 10:44 AM PDT -jbubar,2021-05-07T17:45:14Z,- jbubar closed issue by PR 1523: [1505](https://github.com/hackforla/website/issues/1505#event-4703646195) at 2021-05-07 10:45 AM PDT -jbubar,2021-05-08T04:53:09Z,- jbubar commented on issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-835094843) at 2021-05-07 09:53 PM PDT -jbubar,2021-05-08T05:18:10Z,- jbubar opened issue: [1532](https://github.com/hackforla/website/issues/1532) at 2021-05-07 10:18 PM PDT -jbubar,2021-05-11T05:23:53Z,- jbubar opened issue: [1538](https://github.com/hackforla/website/issues/1538) at 2021-05-10 10:23 PM PDT -jbubar,2021-05-14T00:40:03Z,- jbubar submitted pull request review: [1541](https://github.com/hackforla/website/pull/1541#pullrequestreview-659399725) at 2021-05-13 05:40 PM PDT -jbubar,2021-05-14T00:54:11Z,- jbubar opened issue: [1542](https://github.com/hackforla/website/issues/1542) at 2021-05-13 05:54 PM PDT -jbubar,2021-05-16T07:23:05Z,- jbubar commented on issue: [1070](https://github.com/hackforla/website/issues/1070#issuecomment-841780271) at 2021-05-16 12:23 AM PDT -jbubar,2021-05-16T18:50:58Z,- jbubar commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-841860135) at 2021-05-16 11:50 AM PDT -jbubar,2021-05-16T18:51:13Z,- jbubar commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-841860177) at 2021-05-16 11:51 AM PDT -jbubar,2021-05-16T18:51:33Z,- jbubar commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-841860254) at 2021-05-16 11:51 AM PDT -jbubar,2021-05-16T18:51:46Z,- jbubar commented on issue: [1548](https://github.com/hackforla/website/issues/1548#issuecomment-841860287) at 2021-05-16 11:51 AM PDT -jbubar,2021-05-23T19:17:14Z,- jbubar opened issue: [1621](https://github.com/hackforla/website/issues/1621) at 2021-05-23 12:17 PM PDT -jbubar,2021-05-23T19:24:50Z,- jbubar opened issue: [1622](https://github.com/hackforla/website/issues/1622) at 2021-05-23 12:24 PM PDT -jbubar,2021-05-23T19:38:35Z,- jbubar opened issue: [1623](https://github.com/hackforla/website/issues/1623) at 2021-05-23 12:38 PM PDT -jbubar,2021-05-23T19:39:23Z,- jbubar assigned to issue: [1623](https://github.com/hackforla/website/issues/1623) at 2021-05-23 12:39 PM PDT -jbubar,2021-05-25T22:42:50Z,- jbubar commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-848316515) at 2021-05-25 03:42 PM PDT -jbubar,2021-05-26T03:45:03Z,- jbubar reopened issue: [1550](https://github.com/hackforla/website/issues/1550#event-4796325140) at 2021-05-25 08:45 PM PDT -jbubar,2021-05-26T04:12:25Z,- jbubar commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-848439297) at 2021-05-25 09:12 PM PDT -jbubar,2021-05-30T17:18:54Z,- jbubar assigned to issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-851032524) at 2021-05-30 10:18 AM PDT -jbubar,2021-05-30T21:00:44Z,- jbubar opened issue: [1674](https://github.com/hackforla/website/issues/1674) at 2021-05-30 02:00 PM PDT -jbubar,2021-05-30T21:03:57Z,- jbubar commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-851060974) at 2021-05-30 02:03 PM PDT -jbubar,2021-06-02T03:09:56Z,- jbubar closed issue by PR 2031: [1378](https://github.com/hackforla/website/issues/1378#event-4829128884) at 2021-06-01 08:09 PM PDT -jbubar,2021-06-02T03:10:05Z,- jbubar reopened issue: [1378](https://github.com/hackforla/website/issues/1378#event-4829128884) at 2021-06-01 08:10 PM PDT -jbubar,2021-06-02T19:57:18Z,- jbubar commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-853342849) at 2021-06-02 12:57 PM PDT -jbubar,2021-06-02T19:57:18Z,- jbubar commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-853342849) at 2021-06-02 12:57 PM PDT -jbubar,2021-06-04T03:24:46Z,- jbubar assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -jbubar,2021-06-04T05:01:26Z,- jbubar assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -jbubar,2021-06-04T05:15:39Z,- jbubar assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -jbubar,2021-06-06T09:10:08Z,- jbubar submitted pull request review: [1684](https://github.com/hackforla/website/pull/1684#pullrequestreview-676844262) at 2021-06-06 02:10 AM PDT -jbubar,2021-06-06T09:19:17Z,- jbubar commented on pull request: [1471](https://github.com/hackforla/website/pull/1471#issuecomment-855367129) at 2021-06-06 02:19 AM PDT -jbubar,2021-06-06T17:53:28Z,- jbubar commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855436614) at 2021-06-06 10:53 AM PDT -jbubar,2021-06-06T18:54:11Z,- jbubar submitted pull request review: [1603](https://github.com/hackforla/website/pull/1603#pullrequestreview-676893696) at 2021-06-06 11:54 AM PDT -jbubar,2021-06-06T19:09:16Z,- jbubar commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-855447150) at 2021-06-06 12:09 PM PDT -jbubar,2021-06-06T19:49:19Z,- jbubar unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -jbubar,2021-06-09T01:49:50Z,- jbubar unassigned from issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-855444230) at 2021-06-08 06:49 PM PDT -jbubar,2021-06-09T01:50:57Z,- jbubar commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857309006) at 2021-06-08 06:50 PM PDT -jbubar,2021-06-09T01:57:20Z,- jbubar submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-679143092) at 2021-06-08 06:57 PM PDT -jbubar,2021-06-09T01:58:40Z,- jbubar submitted pull request review: [1620](https://github.com/hackforla/website/pull/1620#pullrequestreview-679143594) at 2021-06-08 06:58 PM PDT -jbubar,2021-06-11T20:34:04Z,- jbubar submitted pull request review: [1684](https://github.com/hackforla/website/pull/1684#pullrequestreview-682197305) at 2021-06-11 01:34 PM PDT -jbubar,2021-06-12T16:32:03Z,- jbubar unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -jbubar,2021-06-13T16:40:47Z,- jbubar commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-860239069) at 2021-06-13 09:40 AM PDT -jbubar,2021-06-13T16:46:19Z,- jbubar commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-860239730) at 2021-06-13 09:46 AM PDT -jbubar,2021-06-13T16:50:11Z,- jbubar commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-860240189) at 2021-06-13 09:50 AM PDT -jbubar,2021-06-13T16:52:12Z,- jbubar commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-860240474) at 2021-06-13 09:52 AM PDT -jbubar,2021-06-13T17:35:32Z,- jbubar commented on pull request: [1471](https://github.com/hackforla/website/pull/1471#issuecomment-860245766) at 2021-06-13 10:35 AM PDT -jbubar,2021-06-15T00:13:01Z,- jbubar commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-861073082) at 2021-06-14 05:13 PM PDT -jbubar,2021-06-15T00:14:54Z,- jbubar commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-861073851) at 2021-06-14 05:14 PM PDT -jbubar,2021-06-15T22:32:05Z,- jbubar opened pull request: [1745](https://github.com/hackforla/website/pull/1745) at 2021-06-15 03:32 PM PDT -jbubar,2021-06-15T22:34:35Z,- jbubar pull request merged: [1745](https://github.com/hackforla/website/pull/1745#event-4894374881) at 2021-06-15 03:34 PM PDT -jbubar,2021-06-15T23:46:20Z,- jbubar opened pull request: [1746](https://github.com/hackforla/website/pull/1746) at 2021-06-15 04:46 PM PDT -jbubar,2021-06-15T23:48:02Z,- jbubar pull request merged: [1746](https://github.com/hackforla/website/pull/1746#event-4894573400) at 2021-06-15 04:48 PM PDT -jbubar,2021-06-15T23:59:06Z,- jbubar closed issue by PR 1684: [1614](https://github.com/hackforla/website/issues/1614#event-4894621577) at 2021-06-15 04:59 PM PDT -jbubar,2021-06-16T02:57:57Z,- jbubar assigned to issue: [1556](https://github.com/hackforla/website/issues/1556) at 2021-06-15 07:57 PM PDT -jbubar,2021-06-16T02:58:02Z,- jbubar unassigned from issue: [1556](https://github.com/hackforla/website/issues/1556) at 2021-06-15 07:58 PM PDT -jbubar,2021-06-16T03:39:42Z,- jbubar pull request merged: [1314](https://github.com/hackforla/website/pull/1314#event-4895176172) at 2021-06-15 08:39 PM PDT -jbubar,2021-06-18T17:00:03Z,- jbubar commented on issue: [1576](https://github.com/hackforla/website/issues/1576#issuecomment-864167221) at 2021-06-18 10:00 AM PDT -jbubar,2021-06-18T17:24:18Z,- jbubar commented on pull request: [1471](https://github.com/hackforla/website/pull/1471#issuecomment-864179135) at 2021-06-18 10:24 AM PDT -jbubar,2021-06-18T17:25:24Z,- jbubar submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-687610261) at 2021-06-18 10:25 AM PDT -jbubar,2021-06-18T17:26:37Z,- jbubar submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-687611028) at 2021-06-18 10:26 AM PDT -jbubar,2021-06-18T17:28:58Z,- jbubar commented on pull request: [1471](https://github.com/hackforla/website/pull/1471#issuecomment-864181310) at 2021-06-18 10:28 AM PDT -jbubar,2021-06-18T17:33:34Z,- jbubar commented on pull request: [1758](https://github.com/hackforla/website/pull/1758#issuecomment-864183390) at 2021-06-18 10:33 AM PDT -jbubar,2021-06-22T16:59:18Z,- jbubar submitted pull request review: [1670](https://github.com/hackforla/website/pull/1670#pullrequestreview-689774897) at 2021-06-22 09:59 AM PDT -jbubar,2021-06-22T17:01:43Z,- jbubar commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-866165987) at 2021-06-22 10:01 AM PDT -jbubar,2021-06-22T18:54:11Z,- jbubar commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-866247800) at 2021-06-22 11:54 AM PDT -jbubar,2021-06-23T02:19:56Z,- jbubar commented on pull request: [1803](https://github.com/hackforla/website/pull/1803#issuecomment-866469876) at 2021-06-22 07:19 PM PDT -jbubar,2021-06-23T03:20:46Z,- jbubar closed issue by PR 1670: [1550](https://github.com/hackforla/website/issues/1550#event-4926243385) at 2021-06-22 08:20 PM PDT -jbubar,2021-06-24T16:08:49Z,- jbubar commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-867766160) at 2021-06-24 09:08 AM PDT -jbubar,2021-06-24T16:12:13Z,- jbubar commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-867768719) at 2021-06-24 09:12 AM PDT -jbubar,2021-06-24T16:22:50Z,- jbubar commented on pull request: [1822](https://github.com/hackforla/website/pull/1822#issuecomment-867776253) at 2021-06-24 09:22 AM PDT -jbubar,2021-06-24T16:24:01Z,- jbubar submitted pull request review: [1822](https://github.com/hackforla/website/pull/1822#pullrequestreview-691978359) at 2021-06-24 09:24 AM PDT -jbubar,2021-06-25T17:07:22Z,- jbubar assigned to issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-860121310) at 2021-06-25 10:07 AM PDT -jbubar,2021-06-27T16:54:37Z,- jbubar submitted pull request review: [1775](https://github.com/hackforla/website/pull/1775#pullrequestreview-693435991) at 2021-06-27 09:54 AM PDT -jbubar,2021-06-27T17:44:03Z,- jbubar commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-869200874) at 2021-06-27 10:44 AM PDT -jbubar,2021-06-27T17:48:42Z,- jbubar unassigned from issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-06-27 10:48 AM PDT -jbubar,2021-06-28T04:13:06Z,- jbubar commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-869339011) at 2021-06-27 09:13 PM PDT -jbubar,2021-06-29T02:07:31Z,- jbubar commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-870170839) at 2021-06-28 07:07 PM PDT -jbubar,2021-06-29T02:07:31Z,- jbubar closed issue as completed: [1104](https://github.com/hackforla/website/issues/1104#event-4950687142) at 2021-06-28 07:07 PM PDT -jbubar,2021-06-30T02:18:54Z,- jbubar submitted pull request review: [1775](https://github.com/hackforla/website/pull/1775#pullrequestreview-695640491) at 2021-06-29 07:18 PM PDT -jbubar,2021-06-30T02:19:07Z,- jbubar closed issue by PR 1775: [1552](https://github.com/hackforla/website/issues/1552#event-4956897854) at 2021-06-29 07:19 PM PDT -jbubar,2021-06-30T03:37:58Z,- jbubar submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-695668044) at 2021-06-29 08:37 PM PDT -jbubar,2021-06-30T03:38:23Z,- jbubar closed issue by PR 1814: [1743](https://github.com/hackforla/website/issues/1743#event-4957070515) at 2021-06-29 08:38 PM PDT -jbubar,2021-06-30T23:43:57Z,- jbubar opened pull request: [1869](https://github.com/hackforla/website/pull/1869) at 2021-06-30 04:43 PM PDT -jbubar,2021-07-01T05:38:59Z,- jbubar submitted pull request review: [1863](https://github.com/hackforla/website/pull/1863#pullrequestreview-696833796) at 2021-06-30 10:38 PM PDT -jbubar,2021-07-01T06:01:39Z,- jbubar submitted pull request review: [1861](https://github.com/hackforla/website/pull/1861#pullrequestreview-696846794) at 2021-06-30 11:01 PM PDT -jbubar,2021-07-01T06:17:09Z,- jbubar commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-871954931) at 2021-06-30 11:17 PM PDT -jbubar,2021-07-02T23:09:44Z,- jbubar commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873297358) at 2021-07-02 04:09 PM PDT -jbubar,2021-07-04T22:30:43Z,- jbubar commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-873674835) at 2021-07-04 03:30 PM PDT -jbubar,2021-07-04T23:44:58Z,- jbubar commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-873687098) at 2021-07-04 04:44 PM PDT -jbubar,2021-07-05T16:11:27Z,- jbubar submitted pull request review: [1883](https://github.com/hackforla/website/pull/1883#pullrequestreview-699311107) at 2021-07-05 09:11 AM PDT -jbubar,2021-07-06T17:57:51Z,- jbubar submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-700235981) at 2021-07-06 10:57 AM PDT -jbubar,2021-07-06T18:27:50Z,- jbubar commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-874986946) at 2021-07-06 11:27 AM PDT -jbubar,2021-07-06T18:40:48Z,- jbubar commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-874994984) at 2021-07-06 11:40 AM PDT -jbubar,2021-07-06T18:42:22Z,- jbubar submitted pull request review: [1894](https://github.com/hackforla/website/pull/1894#pullrequestreview-700271243) at 2021-07-06 11:42 AM PDT -jbubar,2021-07-07T17:51:05Z,- jbubar submitted pull request review: [1895](https://github.com/hackforla/website/pull/1895#pullrequestreview-701292090) at 2021-07-07 10:51 AM PDT -jbubar,2021-07-07T17:53:31Z,- jbubar commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-875807832) at 2021-07-07 10:53 AM PDT -jbubar,2021-07-07T17:53:56Z,- jbubar commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-875808143) at 2021-07-07 10:53 AM PDT -jbubar,2021-07-07T18:04:52Z,- jbubar reopened issue: [1427](https://github.com/hackforla/website/issues/1427#event-4971958490) at 2021-07-07 11:04 AM PDT -jbubar,2021-07-07T18:05:51Z,- jbubar commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-875816541) at 2021-07-07 11:05 AM PDT -jbubar,2021-07-09T03:03:52Z,- jbubar submitted pull request review: [1861](https://github.com/hackforla/website/pull/1861#pullrequestreview-702645792) at 2021-07-08 08:03 PM PDT -jbubar,2021-07-10T18:30:16Z,- jbubar submitted pull request review: [1861](https://github.com/hackforla/website/pull/1861#pullrequestreview-703520863) at 2021-07-10 11:30 AM PDT -jbubar,2021-07-11T00:47:23Z,- jbubar submitted pull request review: [1914](https://github.com/hackforla/website/pull/1914#pullrequestreview-703538129) at 2021-07-10 05:47 PM PDT -jbubar,2021-07-11T00:48:19Z,- jbubar commented on pull request: [1914](https://github.com/hackforla/website/pull/1914#issuecomment-877723042) at 2021-07-10 05:48 PM PDT -jbubar,2021-07-11T07:39:40Z,- jbubar commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-877756089) at 2021-07-11 12:39 AM PDT -jbubar,2021-07-11T17:07:38Z,- jbubar commented on pull request: [1905](https://github.com/hackforla/website/pull/1905#issuecomment-877833273) at 2021-07-11 10:07 AM PDT -jbubar,2021-07-11T17:29:34Z,- jbubar commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-877835823) at 2021-07-11 10:29 AM PDT -jbubar,2021-07-11T20:04:59Z,- jbubar submitted pull request review: [1914](https://github.com/hackforla/website/pull/1914#pullrequestreview-703619423) at 2021-07-11 01:04 PM PDT -jbubar,2021-07-11T20:05:16Z,- jbubar closed issue by PR 1914: [1596](https://github.com/hackforla/website/issues/1596#event-5004480127) at 2021-07-11 01:05 PM PDT -jbubar,2021-07-11T20:15:42Z,- jbubar commented on pull request: [1914](https://github.com/hackforla/website/pull/1914#issuecomment-877854901) at 2021-07-11 01:15 PM PDT -jbubar,2021-07-11T20:16:11Z,- jbubar reopened issue: [1596](https://github.com/hackforla/website/issues/1596#event-5004480127) at 2021-07-11 01:16 PM PDT -jbubar,2021-07-11T20:18:03Z,- jbubar commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-877855172) at 2021-07-11 01:18 PM PDT -jbubar,2021-07-11T20:25:03Z,- jbubar commented on pull request: [1914](https://github.com/hackforla/website/pull/1914#issuecomment-877855946) at 2021-07-11 01:25 PM PDT -jbubar,2021-07-11T22:09:47Z,- jbubar commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-877868325) at 2021-07-11 03:09 PM PDT -jbubar,2021-07-11T22:25:02Z,- jbubar commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-877870012) at 2021-07-11 03:25 PM PDT -jbubar,2021-07-11T22:37:11Z,- jbubar submitted pull request review: [1897](https://github.com/hackforla/website/pull/1897#pullrequestreview-703629533) at 2021-07-11 03:37 PM PDT -jbubar,2021-07-12T00:44:28Z,- jbubar opened pull request: [1924](https://github.com/hackforla/website/pull/1924) at 2021-07-11 05:44 PM PDT -jbubar,2021-07-12T04:47:16Z,- jbubar commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-877967105) at 2021-07-11 09:47 PM PDT -jbubar,2021-07-12T15:55:15Z,- jbubar pull request merged: [1924](https://github.com/hackforla/website/pull/1924#event-5008407578) at 2021-07-12 08:55 AM PDT -jbubar,2021-07-12T23:32:00Z,- jbubar opened issue: [1933](https://github.com/hackforla/website/issues/1933) at 2021-07-12 04:32 PM PDT -jbubar,2021-07-12T23:38:52Z,- jbubar submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-704627305) at 2021-07-12 04:38 PM PDT -jbubar,2021-07-13T17:00:46Z,- jbubar assigned to issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-07-13 10:00 AM PDT -jbubar,2021-07-13T17:01:03Z,- jbubar unassigned from issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-07-13 10:01 AM PDT -jbubar,2021-07-13T23:07:30Z,- jbubar submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-705717169) at 2021-07-13 04:07 PM PDT -jbubar,2021-07-14T00:18:25Z,- jbubar commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879487502) at 2021-07-13 05:18 PM PDT -jbubar,2021-07-14T02:24:43Z,- jbubar commented on issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-879535414) at 2021-07-13 07:24 PM PDT -jbubar,2021-07-14T02:25:04Z,- jbubar commented on pull request: [1936](https://github.com/hackforla/website/pull/1936#issuecomment-879535534) at 2021-07-13 07:25 PM PDT -jbubar,2021-07-14T02:25:18Z,- jbubar commented on pull request: [1936](https://github.com/hackforla/website/pull/1936#issuecomment-879535601) at 2021-07-13 07:25 PM PDT -jbubar,2021-07-14T02:28:51Z,- jbubar commented on issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-879536782) at 2021-07-13 07:28 PM PDT -jbubar,2021-07-14T02:41:23Z,- jbubar commented on issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-879540955) at 2021-07-13 07:41 PM PDT -jbubar,2021-07-15T20:13:24Z,- jbubar commented on pull request: [1937](https://github.com/hackforla/website/pull/1937#issuecomment-880983089) at 2021-07-15 01:13 PM PDT -jbubar,2021-07-15T20:18:30Z,- jbubar closed issue as completed: [1933](https://github.com/hackforla/website/issues/1933#event-5027561361) at 2021-07-15 01:18 PM PDT -jbubar,2021-07-15T20:28:13Z,- jbubar commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-880991804) at 2021-07-15 01:28 PM PDT -jbubar,2021-07-15T20:33:29Z,- jbubar opened issue: [1950](https://github.com/hackforla/website/issues/1950) at 2021-07-15 01:33 PM PDT -jbubar,2021-07-16T06:30:20Z,- jbubar opened pull request: [1954](https://github.com/hackforla/website/pull/1954) at 2021-07-15 11:30 PM PDT -jbubar,2021-07-17T07:01:05Z,- jbubar submitted pull request review: [1953](https://github.com/hackforla/website/pull/1953#pullrequestreview-708859246) at 2021-07-17 12:01 AM PDT -jbubar,2021-07-17T07:37:09Z,- jbubar commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-881850027) at 2021-07-17 12:37 AM PDT -jbubar,2021-07-17T07:46:47Z,- jbubar commented on pull request: [1954](https://github.com/hackforla/website/pull/1954#issuecomment-881851015) at 2021-07-17 12:46 AM PDT -jbubar,2021-07-17T20:41:40Z,- jbubar assigned to issue: [1950](https://github.com/hackforla/website/issues/1950) at 2021-07-17 01:41 PM PDT -jbubar,2021-07-18T05:43:02Z,- jbubar commented on pull request: [1954](https://github.com/hackforla/website/pull/1954#issuecomment-882002640) at 2021-07-17 10:43 PM PDT -jbubar,2021-07-18T05:43:44Z,- jbubar commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-882002693) at 2021-07-17 10:43 PM PDT -jbubar,2021-07-18T17:12:21Z,- jbubar commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-882089001) at 2021-07-18 10:12 AM PDT -jbubar,2021-07-19T05:56:28Z,- jbubar submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-709173607) at 2021-07-18 10:56 PM PDT -jbubar,2021-07-19T05:57:02Z,- jbubar submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-709173857) at 2021-07-18 10:57 PM PDT -jbubar,2021-07-19T05:58:15Z,- jbubar submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-709174376) at 2021-07-18 10:58 PM PDT -jbubar,2021-07-19T05:59:14Z,- jbubar submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-709174814) at 2021-07-18 10:59 PM PDT -jbubar,2021-07-19T06:00:34Z,- jbubar submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-709175489) at 2021-07-18 11:00 PM PDT -jbubar,2021-07-19T06:00:57Z,- jbubar submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-709175677) at 2021-07-18 11:00 PM PDT -jbubar,2021-07-21T01:35:48Z,- jbubar submitted pull request review: [1953](https://github.com/hackforla/website/pull/1953#pullrequestreview-711188282) at 2021-07-20 06:35 PM PDT -jbubar,2021-07-21T01:36:26Z,- jbubar closed issue by PR 1914: [1596](https://github.com/hackforla/website/issues/1596#event-5047555170) at 2021-07-20 06:36 PM PDT -jbubar,2021-07-21T01:39:46Z,- jbubar commented on pull request: [1954](https://github.com/hackforla/website/pull/1954#issuecomment-883819081) at 2021-07-20 06:39 PM PDT -jbubar,2021-07-21T06:45:14Z,- jbubar pull request merged: [1954](https://github.com/hackforla/website/pull/1954#event-5048342394) at 2021-07-20 11:45 PM PDT -jbubar,2021-07-21T18:53:20Z,- jbubar commented on issue: [1985](https://github.com/hackforla/website/issues/1985#issuecomment-884416721) at 2021-07-21 11:53 AM PDT -jbubar,2021-07-21T18:53:20Z,- jbubar closed issue as completed: [1985](https://github.com/hackforla/website/issues/1985#event-5052002972) at 2021-07-21 11:53 AM PDT -jbubar,2021-07-21T18:55:39Z,- jbubar commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-884418261) at 2021-07-21 11:55 AM PDT -jbubar,2021-07-21T19:02:28Z,- jbubar commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-884422685) at 2021-07-21 12:02 PM PDT -jbubar,2021-07-21T19:02:46Z,- jbubar commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-884422889) at 2021-07-21 12:02 PM PDT -jbubar,2021-07-21T20:13:06Z,- jbubar commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-884468413) at 2021-07-21 01:13 PM PDT -jbubar,2021-07-21T21:34:18Z,- jbubar submitted pull request review: [1964](https://github.com/hackforla/website/pull/1964#pullrequestreview-712211081) at 2021-07-21 02:34 PM PDT -jbubar,2021-07-26T17:51:08Z,- jbubar submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-715126326) at 2021-07-26 10:51 AM PDT -jbubar,2021-07-31T06:09:52Z,- jbubar opened issue: [2026](https://github.com/hackforla/website/issues/2026) at 2021-07-30 11:09 PM PDT -jbubar,2021-08-01T18:36:54Z,- jbubar opened issue: [2029](https://github.com/hackforla/website/issues/2029) at 2021-08-01 11:36 AM PDT -jbubar,2021-08-01T18:39:49Z,- jbubar commented on issue: [2029](https://github.com/hackforla/website/issues/2029#issuecomment-890567384) at 2021-08-01 11:39 AM PDT -jbubar,2021-08-18T15:16:08Z,- jbubar commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-901200923) at 2021-08-18 08:16 AM PDT -jbubar,2021-08-18T15:16:08Z,- jbubar closed issue by PR 1954: [1950](https://github.com/hackforla/website/issues/1950#event-5175533838) at 2021-08-18 08:16 AM PDT -jbubar,2021-08-20T05:00:51Z,- jbubar commented on pull request: [2133](https://github.com/hackforla/website/pull/2133#issuecomment-902431678) at 2021-08-19 10:00 PM PDT -jbubar,2021-08-20T05:15:48Z,- jbubar opened issue: [2135](https://github.com/hackforla/website/issues/2135) at 2021-08-19 10:15 PM PDT -jbubar,2021-08-20T05:20:19Z,- jbubar commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-902438810) at 2021-08-19 10:20 PM PDT -jbubar,2021-08-20T05:20:24Z,- jbubar closed issue as completed: [1981](https://github.com/hackforla/website/issues/1981#event-5184844611) at 2021-08-19 10:20 PM PDT -jbubar,2021-08-20T05:27:31Z,- jbubar submitted pull request review: [2133](https://github.com/hackforla/website/pull/2133#pullrequestreview-734682326) at 2021-08-19 10:27 PM PDT -jbubar,2021-08-20T05:30:08Z,- jbubar opened issue: [2137](https://github.com/hackforla/website/issues/2137) at 2021-08-19 10:30 PM PDT -jbubar,2021-08-20T05:33:38Z,- jbubar opened issue: [2138](https://github.com/hackforla/website/issues/2138) at 2021-08-19 10:33 PM PDT -jbubar,2021-08-20T05:43:53Z,- jbubar opened pull request: [2140](https://github.com/hackforla/website/pull/2140) at 2021-08-19 10:43 PM PDT -jbubar,2021-08-20T06:36:07Z,- jbubar closed issue as completed: [1984](https://github.com/hackforla/website/issues/1984#event-5185058621) at 2021-08-19 11:36 PM PDT -jbubar,2021-08-20T06:38:10Z,- jbubar commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-902468166) at 2021-08-19 11:38 PM PDT -jbubar,2021-08-23T00:54:24Z,- jbubar submitted pull request review: [2144](https://github.com/hackforla/website/pull/2144#pullrequestreview-735636933) at 2021-08-22 05:54 PM PDT -jbubar,2021-08-25T02:14:04Z,- jbubar commented on pull request: [2140](https://github.com/hackforla/website/pull/2140#issuecomment-905114730) at 2021-08-24 07:14 PM PDT -jbubar,2021-08-25T02:16:46Z,- jbubar commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-905115906) at 2021-08-24 07:16 PM PDT -jbubar,2021-08-25T02:17:06Z,- jbubar opened issue: [2176](https://github.com/hackforla/website/issues/2176) at 2021-08-24 07:17 PM PDT -jbubar,2021-08-25T02:37:33Z,- jbubar commented on pull request: [2140](https://github.com/hackforla/website/pull/2140#issuecomment-905131456) at 2021-08-24 07:37 PM PDT -jbubar,2021-08-29T18:38:30Z,- jbubar pull request merged: [2140](https://github.com/hackforla/website/pull/2140#event-5223028280) at 2021-08-29 11:38 AM PDT -jbubar,2021-12-07T03:41:46Z,- jbubar opened issue: [2553](https://github.com/hackforla/website/issues/2553) at 2021-12-06 07:41 PM PST -jbubar,2022-06-22T22:16:24Z,- jbubar commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1163664110) at 2022-06-22 03:16 PM PDT -JC789,2021-04-15T23:41:17Z,- JC789 commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820805369) at 2021-04-15 04:41 PM PDT -JCameren,5310,SKILLS ISSUE -JCameren,2023-08-25T19:05:16Z,- JCameren opened issue: [5310](https://github.com/hackforla/website/issues/5310) at 2023-08-25 12:05 PM PDT -JCameren,2023-09-05T20:47:30Z,- JCameren assigned to issue: [5310](https://github.com/hackforla/website/issues/5310) at 2023-09-05 01:47 PM PDT -JCameren,2023-09-07T22:00:23Z,- JCameren assigned to issue: [5387](https://github.com/hackforla/website/issues/5387) at 2023-09-07 03:00 PM PDT -JCameren,2023-09-07T23:26:31Z,- JCameren commented on issue: [5387](https://github.com/hackforla/website/issues/5387#issuecomment-1710882684) at 2023-09-07 04:26 PM PDT -JCameren,2023-09-08T21:43:11Z,- JCameren commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1712256956) at 2023-09-08 02:43 PM PDT -JCameren,2023-09-08T22:50:12Z,- JCameren opened pull request: [5466](https://github.com/hackforla/website/pull/5466) at 2023-09-08 03:50 PM PDT -JCameren,2023-09-12T21:11:58Z,- JCameren closed issue by PR 5466: [5387](https://github.com/hackforla/website/issues/5387#event-10351712082) at 2023-09-12 02:11 PM PDT -JCameren,2023-09-15T05:16:49Z,- JCameren pull request merged: [5466](https://github.com/hackforla/website/pull/5466#event-10379116271) at 2023-09-14 10:16 PM PDT -JCameren,2023-09-29T21:22:05Z,- JCameren commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1741503287) at 2023-09-29 02:22 PM PDT -jch1013,3796,SKILLS ISSUE -jch1013,2023-01-06T15:42:01Z,- jch1013 opened issue: [3796](https://github.com/hackforla/website/issues/3796) at 2023-01-06 07:42 AM PST -jch1013,2023-01-10T22:42:56Z,- jch1013 assigned to issue: [2866](https://github.com/hackforla/website/issues/2866#issuecomment-1048468751) at 2023-01-10 02:42 PM PST -jch1013,2023-01-10T23:22:18Z,- jch1013 commented on issue: [2866](https://github.com/hackforla/website/issues/2866#issuecomment-1378025343) at 2023-01-10 03:22 PM PST -jch1013,2023-01-13T21:26:58Z,- jch1013 opened pull request: [3815](https://github.com/hackforla/website/pull/3815) at 2023-01-13 01:26 PM PST -jch1013,2023-01-16T20:53:53Z,- jch1013 commented on issue: [3796](https://github.com/hackforla/website/issues/3796#issuecomment-1384539572) at 2023-01-16 12:53 PM PST -jch1013,2023-01-17T15:58:21Z,- jch1013 pull request merged: [3815](https://github.com/hackforla/website/pull/3815#event-8247186471) at 2023-01-17 07:58 AM PST -jch1013,2023-01-17T17:40:41Z,- jch1013 closed issue as completed: [3796](https://github.com/hackforla/website/issues/3796#event-8248143153) at 2023-01-17 09:40 AM PST -jch1013,2023-01-17T17:43:22Z,- jch1013 assigned to issue: [3398](https://github.com/hackforla/website/issues/3398#issuecomment-1189759825) at 2023-01-17 09:43 AM PST -jch1013,2023-01-17T17:44:58Z,- jch1013 commented on issue: [3398](https://github.com/hackforla/website/issues/3398#issuecomment-1385795958) at 2023-01-17 09:44 AM PST -jch1013,2023-01-17T18:37:45Z,- jch1013 opened pull request: [3835](https://github.com/hackforla/website/pull/3835) at 2023-01-17 10:37 AM PST -jch1013,2023-01-18T04:53:06Z,- jch1013 commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1386485733) at 2023-01-17 08:53 PM PST -jch1013,2023-01-18T17:53:42Z,- jch1013 pull request merged: [3835](https://github.com/hackforla/website/pull/3835#event-8258310178) at 2023-01-18 09:53 AM PST -jch1013,2023-01-18T23:40:51Z,- jch1013 submitted pull request review: [3838](https://github.com/hackforla/website/pull/3838#pullrequestreview-1260934445) at 2023-01-18 03:40 PM PST -jch1013,2023-01-24T00:12:16Z,- jch1013 assigned to issue: [3793](https://github.com/hackforla/website/issues/3793#issuecomment-1371127206) at 2023-01-23 04:12 PM PST -jch1013,2023-01-24T00:13:38Z,- jch1013 commented on issue: [3793](https://github.com/hackforla/website/issues/3793#issuecomment-1401186107) at 2023-01-23 04:13 PM PST -jch1013,2023-01-24T17:28:19Z,- jch1013 opened pull request: [3865](https://github.com/hackforla/website/pull/3865) at 2023-01-24 09:28 AM PST -jch1013,2023-01-26T18:47:53Z,- jch1013 pull request merged: [3865](https://github.com/hackforla/website/pull/3865#event-8366881004) at 2023-01-26 10:47 AM PST -jch1013,2023-01-30T16:27:44Z,- jch1013 assigned to issue: [3805](https://github.com/hackforla/website/issues/3805) at 2023-01-30 08:27 AM PST -jch1013,2023-01-30T16:29:54Z,- jch1013 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1408943467) at 2023-01-30 08:29 AM PST -jch1013,2023-02-12T23:54:08Z,- jch1013 assigned to issue: [3796](https://github.com/hackforla/website/issues/3796#event-8248143153) at 2023-02-12 03:54 PM PST -jch1013,2023-02-14T03:01:02Z,- jch1013 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1429039860) at 2023-02-13 07:01 PM PST -jch1013,2023-02-17T22:09:36Z,- jch1013 commented on pull request: [4004](https://github.com/hackforla/website/pull/4004#issuecomment-1435331210) at 2023-02-17 02:09 PM PST -jch1013,2023-02-17T22:31:06Z,- jch1013 submitted pull request review: [4004](https://github.com/hackforla/website/pull/4004#pullrequestreview-1304276303) at 2023-02-17 02:31 PM PST -jch1013,2023-02-17T22:32:27Z,- jch1013 submitted pull request review: [4004](https://github.com/hackforla/website/pull/4004#pullrequestreview-1304277169) at 2023-02-17 02:32 PM PST -jch1013,2023-02-24T22:07:56Z,- jch1013 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1444584350) at 2023-02-24 02:07 PM PST -jch1013,2023-02-24T22:08:14Z,- jch1013 unassigned from issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1444584350) at 2023-02-24 02:08 PM PST -jch1013,2023-02-28T22:51:37Z,- jch1013 assigned to issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1442703033) at 2023-02-28 02:51 PM PST -jch1013,2023-02-28T23:43:44Z,- jch1013 opened pull request: [4058](https://github.com/hackforla/website/pull/4058) at 2023-02-28 03:43 PM PST -jch1013,2023-03-01T05:36:51Z,- jch1013 commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1449379381) at 2023-02-28 09:36 PM PST -jch1013,2023-03-02T07:22:35Z,- jch1013 pull request merged: [4058](https://github.com/hackforla/website/pull/4058#event-8646042380) at 2023-03-01 11:22 PM PST -jch1013,2023-03-04T21:24:46Z,- jch1013 commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1454892218) at 2023-03-04 01:24 PM PST -jch1013,2023-03-04T21:47:12Z,- jch1013 submitted pull request review: [4103](https://github.com/hackforla/website/pull/4103#pullrequestreview-1325128994) at 2023-03-04 01:47 PM PST -jch1013,2023-03-05T22:03:18Z,- jch1013 commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1455220560) at 2023-03-05 02:03 PM PST -jch1013,2023-03-06T19:41:22Z,- jch1013 assigned to issue: [4084](https://github.com/hackforla/website/issues/4084) at 2023-03-06 11:41 AM PST -jch1013,2023-03-06T19:43:00Z,- jch1013 commented on issue: [4084](https://github.com/hackforla/website/issues/4084#issuecomment-1456850116) at 2023-03-06 11:43 AM PST -jch1013,2023-03-07T04:22:35Z,- jch1013 opened pull request: [4123](https://github.com/hackforla/website/pull/4123) at 2023-03-06 08:22 PM PST -jch1013,2023-03-09T02:55:20Z,- jch1013 commented on pull request: [4123](https://github.com/hackforla/website/pull/4123#issuecomment-1461191861) at 2023-03-08 06:55 PM PST -jch1013,2023-03-09T23:32:18Z,- jch1013 pull request merged: [4123](https://github.com/hackforla/website/pull/4123#event-8713359037) at 2023-03-09 03:32 PM PST -jch1013,2023-03-20T17:47:07Z,- jch1013 assigned to issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1474882059) at 2023-03-20 10:47 AM PDT -jch1013,2023-03-20T17:48:47Z,- jch1013 commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1476680059) at 2023-03-20 10:48 AM PDT -jch1013,2023-03-22T17:49:24Z,- jch1013 commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1480010503) at 2023-03-22 10:49 AM PDT -jch1013,2023-03-29T00:21:02Z,- jch1013 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1487773281) at 2023-03-28 05:21 PM PDT -jch1013,2023-03-29T00:42:09Z,- jch1013 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1487786360) at 2023-03-28 05:42 PM PDT -jch1013,2023-03-30T18:53:39Z,- jch1013 commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1490776915) at 2023-03-30 11:53 AM PDT -jch1013,2023-03-30T20:33:50Z,- jch1013 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490915183) at 2023-03-30 01:33 PM PDT -jch1013,2023-03-30T20:39:23Z,- jch1013 submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1365890305) at 2023-03-30 01:39 PM PDT -jch1013,2023-04-01T00:55:07Z,- jch1013 opened pull request: [4359](https://github.com/hackforla/website/pull/4359) at 2023-03-31 05:55 PM PDT -jch1013,2023-04-01T00:56:56Z,- jch1013 commented on pull request: [4359](https://github.com/hackforla/website/pull/4359#issuecomment-1492765366) at 2023-03-31 05:56 PM PDT -jch1013,2023-04-05T08:31:59Z,- jch1013 pull request merged: [4359](https://github.com/hackforla/website/pull/4359#event-8932458453) at 2023-04-05 01:31 AM PDT -jch1013,2023-05-04T15:24:14Z,- jch1013 commented on pull request: [4596](https://github.com/hackforla/website/pull/4596#issuecomment-1534977843) at 2023-05-04 08:24 AM PDT -jch1013,2023-05-04T15:35:29Z,- jch1013 submitted pull request review: [4596](https://github.com/hackforla/website/pull/4596#pullrequestreview-1413404585) at 2023-05-04 08:35 AM PDT -jch1013,2023-05-16T21:17:12Z,- jch1013 assigned to issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1547104482) at 2023-05-16 02:17 PM PDT -jch1013,2023-05-16T21:17:55Z,- jch1013 commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1550368763) at 2023-05-16 02:17 PM PDT -jch1013,2023-05-23T22:28:24Z,- jch1013 commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1560209256) at 2023-05-23 03:28 PM PDT -jch1013,2023-06-02T23:30:18Z,- jch1013 commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1574433964) at 2023-06-02 04:30 PM PDT -jch1013,2023-06-02T23:40:38Z,- jch1013 submitted pull request review: [4772](https://github.com/hackforla/website/pull/4772#pullrequestreview-1458600959) at 2023-06-02 04:40 PM PDT -jch1013,2023-06-06T21:06:30Z,- jch1013 commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1579452335) at 2023-06-06 02:06 PM PDT -jch1013,2023-06-15T21:56:39Z,- jch1013 opened pull request: [4842](https://github.com/hackforla/website/pull/4842) at 2023-06-15 02:56 PM PDT -jch1013,2023-06-19T23:17:43Z,- jch1013 commented on pull request: [4842](https://github.com/hackforla/website/pull/4842#issuecomment-1597868732) at 2023-06-19 04:17 PM PDT -jch1013,2023-06-26T18:25:14Z,- jch1013 pull request merged: [4842](https://github.com/hackforla/website/pull/4842#event-9642372476) at 2023-06-26 11:25 AM PDT -jch1013,2023-07-27T23:09:30Z,- jch1013 commented on pull request: [5104](https://github.com/hackforla/website/pull/5104#issuecomment-1654716847) at 2023-07-27 04:09 PM PDT -jch1013,2023-07-28T00:05:38Z,- jch1013 submitted pull request review: [5104](https://github.com/hackforla/website/pull/5104#pullrequestreview-1551029410) at 2023-07-27 05:05 PM PDT -jch1013,2023-07-30T16:34:43Z,- jch1013 commented on pull request: [5109](https://github.com/hackforla/website/pull/5109#issuecomment-1657215274) at 2023-07-30 09:34 AM PDT -jch1013,2023-07-30T16:42:20Z,- jch1013 submitted pull request review: [5109](https://github.com/hackforla/website/pull/5109#pullrequestreview-1553668709) at 2023-07-30 09:42 AM PDT -jch1013,2023-10-15T21:02:40Z,- jch1013 assigned to issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1486072205) at 2023-10-15 02:02 PM PDT -jch1013,2023-10-15T21:04:13Z,- jch1013 commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1763503463) at 2023-10-15 02:04 PM PDT -jch1013,2023-10-20T00:55:40Z,- jch1013 opened pull request: [5740](https://github.com/hackforla/website/pull/5740) at 2023-10-19 05:55 PM PDT -jch1013,2023-10-22T16:56:09Z,- jch1013 pull request merged: [5740](https://github.com/hackforla/website/pull/5740#event-10733642040) at 2023-10-22 09:56 AM PDT -jchue,6715,SKILLS ISSUE -jchue,2024-04-24T02:41:35Z,- jchue opened issue: [6715](https://github.com/hackforla/website/issues/6715) at 2024-04-23 07:41 PM PDT -jchue,2024-04-24T02:41:45Z,- jchue assigned to issue: [6715](https://github.com/hackforla/website/issues/6715) at 2024-04-23 07:41 PM PDT -jchue,2024-04-30T06:32:59Z,- jchue assigned to issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065560110) at 2024-04-29 11:32 PM PDT -jchue,2024-04-30T06:40:07Z,- jchue commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2084489880) at 2024-04-29 11:40 PM PDT -jchue,2024-04-30T06:41:46Z,- jchue commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2084492039) at 2024-04-29 11:41 PM PDT -jchue,2024-04-30T07:02:17Z,- jchue opened pull request: [6788](https://github.com/hackforla/website/pull/6788) at 2024-04-30 12:02 AM PDT -jchue,2024-04-30T15:36:33Z,- jchue commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2085701943) at 2024-04-30 08:36 AM PDT -jchue,2024-05-01T04:42:19Z,- jchue commented on pull request: [6791](https://github.com/hackforla/website/pull/6791#issuecomment-2087969885) at 2024-04-30 09:42 PM PDT -jchue,2024-05-01T19:04:31Z,- jchue pull request merged: [6788](https://github.com/hackforla/website/pull/6788#event-12673726853) at 2024-05-01 12:04 PM PDT -jchue,2024-05-01T20:09:08Z,- jchue submitted pull request review: [6791](https://github.com/hackforla/website/pull/6791#pullrequestreview-2034368249) at 2024-05-01 01:09 PM PDT -jchue,2024-05-10T15:44:13Z,- jchue commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2104831288) at 2024-05-10 08:44 AM PDT -jchue,2024-05-17T02:30:09Z,- jchue closed issue as completed: [6715](https://github.com/hackforla/website/issues/6715#event-12842005024) at 2024-05-16 07:30 PM PDT -jchue,2024-05-22T00:29:27Z,- jchue commented on pull request: [6874](https://github.com/hackforla/website/pull/6874#issuecomment-2123639374) at 2024-05-21 05:29 PM PDT -jchue,2024-05-22T00:47:52Z,- jchue submitted pull request review: [6874](https://github.com/hackforla/website/pull/6874#pullrequestreview-2069914791) at 2024-05-21 05:47 PM PDT -jchue,2024-05-24T03:02:12Z,- jchue submitted pull request review: [6874](https://github.com/hackforla/website/pull/6874#pullrequestreview-2075563665) at 2024-05-23 08:02 PM PDT -jchue,2024-05-28T23:03:43Z,- jchue assigned to issue: [6729](https://github.com/hackforla/website/issues/6729) at 2024-05-28 04:03 PM PDT -jchue,2024-05-28T23:05:25Z,- jchue commented on issue: [6729](https://github.com/hackforla/website/issues/6729#issuecomment-2136245070) at 2024-05-28 04:05 PM PDT -jchue,2024-05-30T01:19:58Z,- jchue opened pull request: [6912](https://github.com/hackforla/website/pull/6912) at 2024-05-29 06:19 PM PDT -jchue,2024-05-30T18:11:02Z,- jchue pull request merged: [6912](https://github.com/hackforla/website/pull/6912#event-12989994523) at 2024-05-30 11:11 AM PDT -jchue,2024-06-05T16:10:39Z,- jchue commented on pull request: [6958](https://github.com/hackforla/website/pull/6958#issuecomment-2150449484) at 2024-06-05 09:10 AM PDT -jchue,2024-06-06T00:02:27Z,- jchue submitted pull request review: [6958](https://github.com/hackforla/website/pull/6958#pullrequestreview-2100486594) at 2024-06-05 05:02 PM PDT -jchue,2024-06-12T16:39:17Z,- jchue assigned to issue: [6752](https://github.com/hackforla/website/issues/6752) at 2024-06-12 09:39 AM PDT -jchue,2024-06-12T16:40:33Z,- jchue commented on issue: [6752](https://github.com/hackforla/website/issues/6752#issuecomment-2163480421) at 2024-06-12 09:40 AM PDT -jchue,2024-06-14T05:48:10Z,- jchue commented on issue: [6752](https://github.com/hackforla/website/issues/6752#issuecomment-2167257025) at 2024-06-13 10:48 PM PDT -jchue,2024-06-22T17:55:33Z,- jchue commented on pull request: [7038](https://github.com/hackforla/website/pull/7038#issuecomment-2184131040) at 2024-06-22 10:55 AM PDT -jchue,2024-06-22T18:00:02Z,- jchue submitted pull request review: [7038](https://github.com/hackforla/website/pull/7038#pullrequestreview-2133873886) at 2024-06-22 11:00 AM PDT -jchue,2024-06-26T23:54:13Z,- jchue commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2192806871) at 2024-06-26 04:54 PM PDT -jchue,2024-06-27T00:05:11Z,- jchue submitted pull request review: [7067](https://github.com/hackforla/website/pull/7067#pullrequestreview-2143171928) at 2024-06-26 05:05 PM PDT -jchue,2024-08-08T02:01:00Z,- jchue commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2274796121) at 2024-08-07 07:01 PM PDT -jchue,2024-08-08T02:08:03Z,- jchue submitted pull request review: [7229](https://github.com/hackforla/website/pull/7229#pullrequestreview-2226705772) at 2024-08-07 07:08 PM PDT -jchue,2024-09-20T23:59:34Z,- jchue assigned to issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2354269065) at 2024-09-20 04:59 PM PDT -jchue,2024-09-20T23:59:48Z,- jchue unassigned from issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2354269065) at 2024-09-20 04:59 PM PDT -jchue,2024-09-23T15:57:53Z,- jchue assigned to issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2357449790) at 2024-09-23 08:57 AM PDT -jchue,2024-09-23T15:58:51Z,- jchue commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2368720169) at 2024-09-23 08:58 AM PDT -jchue,2024-09-24T02:50:40Z,- jchue opened pull request: [7514](https://github.com/hackforla/website/pull/7514) at 2024-09-23 07:50 PM PDT -jchue,2024-09-26T21:06:15Z,- jchue pull request merged: [7514](https://github.com/hackforla/website/pull/7514#event-14422588635) at 2024-09-26 02:06 PM PDT -jchue,2024-09-27T07:10:44Z,- jchue closed issue as completed: [6715](https://github.com/hackforla/website/issues/6715#event-14426501393) at 2024-09-27 12:10 AM PDT -jdingeman,3365,SKILLS ISSUE -jdingeman,2022-07-13T03:14:33Z,- jdingeman opened issue: [3365](https://github.com/hackforla/website/issues/3365) at 2022-07-12 08:14 PM PDT -jdingeman,2022-07-13T03:14:34Z,- jdingeman assigned to issue: [3365](https://github.com/hackforla/website/issues/3365) at 2022-07-12 08:14 PM PDT -jdingeman,2022-07-15T04:00:49Z,- jdingeman assigned to issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049454355) at 2022-07-14 09:00 PM PDT -jdingeman,2022-07-15T04:15:02Z,- jdingeman opened pull request: [3372](https://github.com/hackforla/website/pull/3372) at 2022-07-14 09:15 PM PDT -jdingeman,2022-07-15T20:53:22Z,- jdingeman commented on pull request: [3372](https://github.com/hackforla/website/pull/3372#issuecomment-1185921062) at 2022-07-15 01:53 PM PDT -jdingeman,2022-07-15T23:36:23Z,- jdingeman pull request merged: [3372](https://github.com/hackforla/website/pull/3372#event-7005276927) at 2022-07-15 04:36 PM PDT -jdingeman,2022-07-19T04:48:06Z,- jdingeman assigned to issue: [3094](https://github.com/hackforla/website/issues/3094#issuecomment-1116767287) at 2022-07-18 09:48 PM PDT -jdingeman,2022-07-19T04:49:13Z,- jdingeman commented on issue: [3094](https://github.com/hackforla/website/issues/3094#issuecomment-1188595557) at 2022-07-18 09:49 PM PDT -jdingeman,2022-07-19T04:54:46Z,- jdingeman opened pull request: [3390](https://github.com/hackforla/website/pull/3390) at 2022-07-18 09:54 PM PDT -jdingeman,2022-07-20T03:13:58Z,- jdingeman opened issue: [3399](https://github.com/hackforla/website/issues/3399) at 2022-07-19 08:13 PM PDT -jdingeman,2022-07-20T16:44:10Z,- jdingeman pull request merged: [3390](https://github.com/hackforla/website/pull/3390#event-7031138806) at 2022-07-20 09:44 AM PDT -jdingeman,2022-07-20T19:07:08Z,- jdingeman commented on issue: [3365](https://github.com/hackforla/website/issues/3365#issuecomment-1190649952) at 2022-07-20 12:07 PM PDT -jdingeman,2022-07-20T19:08:39Z,- jdingeman assigned to issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1166584104) at 2022-07-20 12:08 PM PDT -jdingeman,2022-07-20T19:09:50Z,- jdingeman commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1190652176) at 2022-07-20 12:09 PM PDT -jdingeman,2022-07-20T19:38:04Z,- jdingeman opened pull request: [3407](https://github.com/hackforla/website/pull/3407) at 2022-07-20 12:38 PM PDT -jdingeman,2022-07-20T22:22:13Z,- jdingeman pull request merged: [3407](https://github.com/hackforla/website/pull/3407#event-7033303436) at 2022-07-20 03:22 PM PDT -jdingeman,2022-07-27T02:27:18Z,- jdingeman assigned to issue: [2298](https://github.com/hackforla/website/issues/2298#issuecomment-924501631) at 2022-07-26 07:27 PM PDT -jdingeman,2022-07-27T02:27:44Z,- jdingeman commented on issue: [2298](https://github.com/hackforla/website/issues/2298#issuecomment-1196195775) at 2022-07-26 07:27 PM PDT -jdingeman,2022-07-28T04:27:04Z,- jdingeman opened pull request: [3436](https://github.com/hackforla/website/pull/3436) at 2022-07-27 09:27 PM PDT -jdingeman,2022-07-28T04:27:37Z,- jdingeman commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1197644478) at 2022-07-27 09:27 PM PDT -jdingeman,2022-07-30T19:32:54Z,- jdingeman commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1200282091) at 2022-07-30 12:32 PM PDT -jdingeman,2022-08-02T21:51:41Z,- jdingeman commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1203249247) at 2022-08-02 02:51 PM PDT -jdingeman,2022-08-03T02:16:43Z,- jdingeman commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1203405703) at 2022-08-02 07:16 PM PDT -jdingeman,2022-08-08T01:54:35Z,- jdingeman commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1207563854) at 2022-08-07 06:54 PM PDT -jdingeman,2022-08-10T02:26:36Z,- jdingeman commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1210077126) at 2022-08-09 07:26 PM PDT -jdingeman,2022-08-10T22:18:50Z,- jdingeman commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1211341169) at 2022-08-10 03:18 PM PDT -jdingeman,2022-08-10T22:49:11Z,- jdingeman submitted pull request review: [3451](https://github.com/hackforla/website/pull/3451#pullrequestreview-1069014299) at 2022-08-10 03:49 PM PDT -jdingeman,2022-08-10T23:11:56Z,- jdingeman submitted pull request review: [3451](https://github.com/hackforla/website/pull/3451#pullrequestreview-1069037534) at 2022-08-10 04:11 PM PDT -jdingeman,2022-08-15T02:28:54Z,- jdingeman commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1214547161) at 2022-08-14 07:28 PM PDT -jdingeman,2022-08-15T02:32:17Z,- jdingeman commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214548820) at 2022-08-14 07:32 PM PDT -jdingeman,2022-08-15T02:42:08Z,- jdingeman commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214553305) at 2022-08-14 07:42 PM PDT -jdingeman,2022-08-17T02:52:07Z,- jdingeman commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1217397018) at 2022-08-16 07:52 PM PDT -jdingeman,2022-08-17T19:49:24Z,- jdingeman submitted pull request review: [3468](https://github.com/hackforla/website/pull/3468#pullrequestreview-1076313103) at 2022-08-17 12:49 PM PDT -jdingeman,2022-08-19T20:11:10Z,- jdingeman assigned to issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1064546734) at 2022-08-19 01:11 PM PDT -jdingeman,2022-08-19T20:12:17Z,- jdingeman commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1221057558) at 2022-08-19 01:12 PM PDT -jdingeman,2022-08-19T20:13:53Z,- jdingeman unassigned from issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1221057558) at 2022-08-19 01:13 PM PDT -jdingeman,2022-08-19T20:14:07Z,- jdingeman assigned to issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1221057558) at 2022-08-19 01:14 PM PDT -jdingeman,2022-08-19T20:15:11Z,- jdingeman commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1221059493) at 2022-08-19 01:15 PM PDT -jdingeman,2022-08-22T01:20:02Z,- jdingeman commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1221678741) at 2022-08-21 06:20 PM PDT -jdingeman,2022-08-24T02:10:29Z,- jdingeman commented on pull request: [3482](https://github.com/hackforla/website/pull/3482#issuecomment-1225089104) at 2022-08-23 07:10 PM PDT -jdingeman,2022-08-24T03:40:34Z,- jdingeman submitted pull request review: [3482](https://github.com/hackforla/website/pull/3482#pullrequestreview-1083097811) at 2022-08-23 08:40 PM PDT -jdingeman,2022-08-25T04:58:42Z,- jdingeman closed issue as completed: [3365](https://github.com/hackforla/website/issues/3365#event-7256068832) at 2022-08-24 09:58 PM PDT -jdingeman,2022-09-01T19:32:44Z,- jdingeman commented on pull request: [3514](https://github.com/hackforla/website/pull/3514#issuecomment-1234697297) at 2022-09-01 12:32 PM PDT -jdingeman,2022-09-01T19:34:09Z,- jdingeman commented on pull request: [3496](https://github.com/hackforla/website/pull/3496#issuecomment-1234698428) at 2022-09-01 12:34 PM PDT -jdingeman,2022-09-02T01:28:19Z,- jdingeman submitted pull request review: [3496](https://github.com/hackforla/website/pull/3496#pullrequestreview-1094214137) at 2022-09-01 06:28 PM PDT -jdingeman,2022-09-02T01:33:13Z,- jdingeman submitted pull request review: [3514](https://github.com/hackforla/website/pull/3514#pullrequestreview-1094216305) at 2022-09-01 06:33 PM PDT -jdingeman,2022-09-02T19:45:13Z,- jdingeman submitted pull request review: [3496](https://github.com/hackforla/website/pull/3496#pullrequestreview-1095279248) at 2022-09-02 12:45 PM PDT -jdingeman,2022-09-07T01:07:04Z,- jdingeman commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1238796070) at 2022-09-06 06:07 PM PDT -jdingeman,2022-09-09T03:33:37Z,- jdingeman commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1241458705) at 2022-09-08 08:33 PM PDT -jdingeman,2022-09-14T02:23:06Z,- jdingeman commented on pull request: [3551](https://github.com/hackforla/website/pull/3551#issuecomment-1246148117) at 2022-09-13 07:23 PM PDT -jdingeman,2022-09-15T19:53:15Z,- jdingeman submitted pull request review: [3551](https://github.com/hackforla/website/pull/3551#pullrequestreview-1109759851) at 2022-09-15 12:53 PM PDT -jdingeman,2022-09-18T17:14:25Z,- jdingeman assigned to issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-996913938) at 2022-09-18 10:14 AM PDT -jdingeman,2022-09-18T17:14:53Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1250350375) at 2022-09-18 10:14 AM PDT -jdingeman,2022-09-18T17:18:45Z,- jdingeman submitted pull request review: [3559](https://github.com/hackforla/website/pull/3559#pullrequestreview-1111568628) at 2022-09-18 10:18 AM PDT -jdingeman,2022-09-21T03:43:42Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1253166757) at 2022-09-20 08:43 PM PDT -jdingeman,2022-09-21T22:01:49Z,- jdingeman commented on pull request: [3573](https://github.com/hackforla/website/pull/3573#issuecomment-1254273233) at 2022-09-21 03:01 PM PDT -jdingeman,2022-09-21T22:02:27Z,- jdingeman submitted pull request review: [3573](https://github.com/hackforla/website/pull/3573#pullrequestreview-1116142341) at 2022-09-21 03:02 PM PDT -jdingeman,2022-09-22T20:23:01Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1255510269) at 2022-09-22 01:23 PM PDT -jdingeman,2022-09-23T03:51:13Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1255771927) at 2022-09-22 08:51 PM PDT -jdingeman,2022-09-25T17:09:35Z,- jdingeman commented on pull request: [3579](https://github.com/hackforla/website/pull/3579#issuecomment-1257236576) at 2022-09-25 10:09 AM PDT -jdingeman,2022-09-28T02:10:35Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1260297651) at 2022-09-27 07:10 PM PDT -jdingeman,2022-09-28T04:20:29Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1260368131) at 2022-09-27 09:20 PM PDT -jdingeman,2022-09-28T23:43:03Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1261575945) at 2022-09-28 04:43 PM PDT -jdingeman,2022-09-28T23:49:53Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1261579356) at 2022-09-28 04:49 PM PDT -jdingeman,2022-09-29T00:00:07Z,- jdingeman commented on pull request: [3588](https://github.com/hackforla/website/pull/3588#issuecomment-1261583748) at 2022-09-28 05:00 PM PDT -jdingeman,2022-09-29T01:01:36Z,- jdingeman submitted pull request review: [3588](https://github.com/hackforla/website/pull/3588#pullrequestreview-1124508253) at 2022-09-28 06:01 PM PDT -jdingeman,2022-09-29T01:03:41Z,- jdingeman commented on pull request: [3589](https://github.com/hackforla/website/pull/3589#issuecomment-1261621084) at 2022-09-28 06:03 PM PDT -jdingeman,2022-09-29T01:06:40Z,- jdingeman commented on pull request: [3589](https://github.com/hackforla/website/pull/3589#issuecomment-1261622514) at 2022-09-28 06:06 PM PDT -jdingeman,2022-09-29T01:17:05Z,- jdingeman submitted pull request review: [3589](https://github.com/hackforla/website/pull/3589#pullrequestreview-1124515775) at 2022-09-28 06:17 PM PDT -jdingeman,2022-09-30T03:12:19Z,- jdingeman opened issue: [3592](https://github.com/hackforla/website/issues/3592) at 2022-09-29 08:12 PM PDT -jdingeman,2022-09-30T04:03:23Z,- jdingeman opened pull request: [3593](https://github.com/hackforla/website/pull/3593) at 2022-09-29 09:03 PM PDT -jdingeman,2022-09-30T20:33:10Z,- jdingeman commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1263997933) at 2022-09-30 01:33 PM PDT -jdingeman,2022-09-30T21:36:21Z,- jdingeman pull request merged: [3593](https://github.com/hackforla/website/pull/3593#event-7498804032) at 2022-09-30 02:36 PM PDT -jdingeman,2022-10-02T20:30:59Z,- jdingeman assigned to issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1255890655) at 2022-10-02 01:30 PM PDT -jdingeman,2022-10-02T20:31:50Z,- jdingeman commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1264727274) at 2022-10-02 01:31 PM PDT -jdingeman,2022-10-02T21:25:05Z,- jdingeman opened pull request: [3597](https://github.com/hackforla/website/pull/3597) at 2022-10-02 02:25 PM PDT -jdingeman,2022-10-12T01:49:32Z,- jdingeman commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1275480257) at 2022-10-11 06:49 PM PDT -jdingeman,2022-10-12T23:55:03Z,- jdingeman commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1276855807) at 2022-10-12 04:55 PM PDT -jdingeman,2022-10-13T01:10:39Z,- jdingeman commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1276903032) at 2022-10-12 06:10 PM PDT -jdingeman,2022-10-13T03:28:04Z,- jdingeman commented on pull request: [3616](https://github.com/hackforla/website/pull/3616#issuecomment-1276978349) at 2022-10-12 08:28 PM PDT -jdingeman,2022-10-13T03:32:28Z,- jdingeman submitted pull request review: [3616](https://github.com/hackforla/website/pull/3616#pullrequestreview-1139976545) at 2022-10-12 08:32 PM PDT -jdingeman,2022-10-14T01:47:23Z,- jdingeman commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278366482) at 2022-10-13 06:47 PM PDT -jdingeman,2022-10-14T01:50:35Z,- jdingeman submitted pull request review: [3618](https://github.com/hackforla/website/pull/3618#pullrequestreview-1141705320) at 2022-10-13 06:50 PM PDT -jdingeman,2022-10-14T03:54:27Z,- jdingeman opened issue: [3619](https://github.com/hackforla/website/issues/3619) at 2022-10-13 08:54 PM PDT -jdingeman,2022-10-15T20:35:27Z,- jdingeman closed issue by PR 3621: [3199](https://github.com/hackforla/website/issues/3199#event-7595484562) at 2022-10-15 01:35 PM PDT -jdingeman,2022-10-15T20:43:27Z,- jdingeman commented on pull request: [3622](https://github.com/hackforla/website/pull/3622#issuecomment-1279828920) at 2022-10-15 01:43 PM PDT -jdingeman,2022-10-15T20:47:57Z,- jdingeman submitted pull request review: [3622](https://github.com/hackforla/website/pull/3622#pullrequestreview-1143226577) at 2022-10-15 01:47 PM PDT -jdingeman,2022-10-15T20:49:08Z,- jdingeman closed issue by PR 3622: [3197](https://github.com/hackforla/website/issues/3197#event-7595497082) at 2022-10-15 01:49 PM PDT -jdingeman,2022-10-15T22:05:44Z,- jdingeman closed issue by PR 3624: [3201](https://github.com/hackforla/website/issues/3201#event-7595562573) at 2022-10-15 03:05 PM PDT -jdingeman,2022-10-16T23:06:27Z,- jdingeman commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1280080863) at 2022-10-16 04:06 PM PDT -jdingeman,2022-10-17T22:52:30Z,- jdingeman closed issue by PR 3628: [3202](https://github.com/hackforla/website/issues/3202#event-7606459121) at 2022-10-17 03:52 PM PDT -jdingeman,2022-10-17T22:53:33Z,- jdingeman closed issue by PR 3631: [3203](https://github.com/hackforla/website/issues/3203#event-7606463281) at 2022-10-17 03:53 PM PDT -jdingeman,2022-10-17T22:54:51Z,- jdingeman closed issue by PR 3632: [2843](https://github.com/hackforla/website/issues/2843#event-7606467925) at 2022-10-17 03:54 PM PDT -jdingeman,2022-10-18T01:20:40Z,- jdingeman closed issue by PR 3629: [3596](https://github.com/hackforla/website/issues/3596#event-7606983198) at 2022-10-17 06:20 PM PDT -jdingeman,2022-10-19T02:28:41Z,- jdingeman commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1283312931) at 2022-10-18 07:28 PM PDT -jdingeman,2022-10-19T02:54:17Z,- jdingeman commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1283337427) at 2022-10-18 07:54 PM PDT -jdingeman,2022-10-20T00:51:45Z,- jdingeman closed issue by PR 3633: [3493](https://github.com/hackforla/website/issues/3493#event-7626235255) at 2022-10-19 05:51 PM PDT -jdingeman,2022-10-20T00:52:35Z,- jdingeman closed issue by PR 3642: [3204](https://github.com/hackforla/website/issues/3204#event-7626237803) at 2022-10-19 05:52 PM PDT -jdingeman,2022-10-21T02:04:03Z,- jdingeman closed issue by PR 3645: [2849](https://github.com/hackforla/website/issues/2849#event-7636454200) at 2022-10-20 07:04 PM PDT -jdingeman,2022-10-21T03:00:22Z,- jdingeman opened pull request: [3646](https://github.com/hackforla/website/pull/3646) at 2022-10-20 08:00 PM PDT -jdingeman,2022-10-21T03:01:58Z,- jdingeman pull request merged: [3646](https://github.com/hackforla/website/pull/3646#event-7636698069) at 2022-10-20 08:01 PM PDT -jdingeman,2022-10-22T17:27:38Z,- jdingeman closed issue by PR 3647: [3200](https://github.com/hackforla/website/issues/3200#event-7646613095) at 2022-10-22 10:27 AM PDT -jdingeman,2022-10-23T06:33:33Z,- jdingeman commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1288023397) at 2022-10-22 11:33 PM PDT -jdingeman,2022-10-23T06:35:00Z,- jdingeman closed issue by PR 3648: [2851](https://github.com/hackforla/website/issues/2851#event-7647771720) at 2022-10-22 11:35 PM PDT -jdingeman,2022-10-24T22:41:22Z,- jdingeman commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1289723397) at 2022-10-24 03:41 PM PDT -jdingeman,2022-10-24T23:52:08Z,- jdingeman closed issue by PR 3650: [2852](https://github.com/hackforla/website/issues/2852#event-7658636193) at 2022-10-24 04:52 PM PDT -jdingeman,2022-10-25T00:21:37Z,- jdingeman opened pull request: [3654](https://github.com/hackforla/website/pull/3654) at 2022-10-24 05:21 PM PDT -jdingeman,2022-10-25T00:24:05Z,- jdingeman pull request merged: [3654](https://github.com/hackforla/website/pull/3654#event-7658767778) at 2022-10-24 05:24 PM PDT -jdingeman,2022-10-26T03:01:33Z,- jdingeman submitted pull request review: [3656](https://github.com/hackforla/website/pull/3656#pullrequestreview-1155791642) at 2022-10-25 08:01 PM PDT -jdingeman,2022-10-26T03:02:10Z,- jdingeman closed issue by PR 3656: [2632](https://github.com/hackforla/website/issues/2632#event-7668727144) at 2022-10-25 08:02 PM PDT -jdingeman,2022-10-31T20:14:06Z,- jdingeman submitted pull request review: [3680](https://github.com/hackforla/website/pull/3680#pullrequestreview-1162497757) at 2022-10-31 01:14 PM PDT -jdingeman,2022-11-01T04:21:28Z,- jdingeman closed issue by PR 3679: [3210](https://github.com/hackforla/website/issues/3210#event-7709993357) at 2022-10-31 09:21 PM PDT -jdingeman,2022-11-01T04:25:37Z,- jdingeman submitted pull request review: [3664](https://github.com/hackforla/website/pull/3664#pullrequestreview-1162812913) at 2022-10-31 09:25 PM PDT -jdingeman,2022-11-01T04:25:59Z,- jdingeman closed issue by PR 3664: [2600](https://github.com/hackforla/website/issues/2600#event-7710012260) at 2022-10-31 09:25 PM PDT -jdingeman,2022-11-02T00:51:29Z,- jdingeman commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1299404987) at 2022-11-01 05:51 PM PDT -jdingeman,2022-11-02T00:51:30Z,- jdingeman closed issue as completed: [3492](https://github.com/hackforla/website/issues/3492#event-7718331857) at 2022-11-01 05:51 PM PDT -jdingeman,2022-11-02T03:02:23Z,- jdingeman commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1299499232) at 2022-11-01 08:02 PM PDT -jdingeman,2022-11-02T04:14:24Z,- jdingeman closed issue by PR 3658: [2853](https://github.com/hackforla/website/issues/2853#event-7719210458) at 2022-11-01 09:14 PM PDT -jdingeman,2022-11-03T02:23:54Z,- jdingeman closed issue by PR 3689: [2856](https://github.com/hackforla/website/issues/2856#event-7728460621) at 2022-11-02 07:23 PM PDT -jdingeman,2022-11-04T22:48:07Z,- jdingeman commented on pull request: [3692](https://github.com/hackforla/website/pull/3692#issuecomment-1304318165) at 2022-11-04 03:48 PM PDT -jdingeman,2022-11-04T22:56:50Z,- jdingeman submitted pull request review: [3692](https://github.com/hackforla/website/pull/3692#pullrequestreview-1169254842) at 2022-11-04 03:56 PM PDT -jdingeman,2022-11-04T22:56:57Z,- jdingeman closed issue by PR 3692: [3592](https://github.com/hackforla/website/issues/3592#event-7744393068) at 2022-11-04 03:56 PM PDT -jdingeman,2022-11-05T00:46:11Z,- jdingeman submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1169284417) at 2022-11-04 04:46 PM PST -jdingeman,2022-11-05T00:53:50Z,- jdingeman commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1304362076) at 2022-11-04 04:53 PM PST -jdingeman,2022-11-07T20:08:22Z,- jdingeman closed issue by PR 3695: [2858](https://github.com/hackforla/website/issues/2858#event-7755951720) at 2022-11-07 12:08 PM PST -jdingeman,2022-11-08T00:06:31Z,- jdingeman submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1171258758) at 2022-11-07 04:06 PM PST -jdingeman,2022-11-08T01:39:28Z,- jdingeman submitted pull request review: [3698](https://github.com/hackforla/website/pull/3698#pullrequestreview-1171322547) at 2022-11-07 05:39 PM PST -jdingeman,2022-11-08T03:54:38Z,- jdingeman submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1171400103) at 2022-11-07 07:54 PM PST -jdingeman,2022-11-09T02:15:55Z,- jdingeman opened issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -jdingeman,2022-11-09T02:15:57Z,- jdingeman assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -jdingeman,2022-11-09T02:38:22Z,- jdingeman opened pull request: [3705](https://github.com/hackforla/website/pull/3705) at 2022-11-08 06:38 PM PST -jdingeman,2022-11-09T03:02:07Z,- jdingeman commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1308136973) at 2022-11-08 07:02 PM PST -jdingeman,2022-11-10T02:14:11Z,- jdingeman commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1309673218) at 2022-11-09 06:14 PM PST -jdingeman,2022-11-11T01:30:37Z,- jdingeman submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1176692141) at 2022-11-10 05:30 PM PST -jdingeman,2022-11-11T01:33:06Z,- jdingeman commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1311119675) at 2022-11-10 05:33 PM PST -jdingeman,2022-11-11T02:31:36Z,- jdingeman commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1311153203) at 2022-11-10 06:31 PM PST -jdingeman,2022-11-11T02:42:43Z,- jdingeman commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1311160966) at 2022-11-10 06:42 PM PST -jdingeman,2022-11-11T03:17:25Z,- jdingeman submitted pull request review: [3714](https://github.com/hackforla/website/pull/3714#pullrequestreview-1176746439) at 2022-11-10 07:17 PM PST -jdingeman,2022-11-11T04:24:57Z,- jdingeman pull request merged: [3705](https://github.com/hackforla/website/pull/3705#event-7788913511) at 2022-11-10 08:24 PM PST -jdingeman,2022-11-13T02:02:12Z,- jdingeman closed issue by PR 3432: [2113](https://github.com/hackforla/website/issues/2113#event-7797609454) at 2022-11-12 06:02 PM PST -jdingeman,2022-11-13T02:31:44Z,- jdingeman commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1312622234) at 2022-11-12 06:31 PM PST -jdingeman,2022-11-14T01:48:21Z,- jdingeman submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1178360860) at 2022-11-13 05:48 PM PST -jdingeman,2022-11-14T01:48:29Z,- jdingeman closed issue by PR 3672: [2292](https://github.com/hackforla/website/issues/2292#event-7799696550) at 2022-11-13 05:48 PM PST -jdingeman,2022-11-14T04:17:46Z,- jdingeman assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1244872964) at 2022-11-13 08:17 PM PST -jdingeman,2022-11-14T04:18:41Z,- jdingeman commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1313075221) at 2022-11-13 08:18 PM PST -jdingeman,2022-11-22T02:41:50Z,- jdingeman opened pull request: [3739](https://github.com/hackforla/website/pull/3739) at 2022-11-21 06:41 PM PST -jdingeman,2022-11-22T02:41:58Z,- jdingeman pull request merged: [3739](https://github.com/hackforla/website/pull/3739#event-7863057861) at 2022-11-21 06:41 PM PST -jdingeman,2022-11-22T02:42:22Z,- jdingeman opened pull request: [3740](https://github.com/hackforla/website/pull/3740) at 2022-11-21 06:42 PM PST -jdingeman,2022-11-22T02:42:33Z,- jdingeman pull request merged: [3740](https://github.com/hackforla/website/pull/3740#event-7863060866) at 2022-11-21 06:42 PM PST -jdingeman,2022-11-23T03:03:02Z,- jdingeman commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1324487667) at 2022-11-22 07:03 PM PST -jdingeman,2022-11-23T03:03:03Z,- jdingeman reopened issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1324487667) at 2022-11-22 07:03 PM PST -jdingeman,2022-11-23T03:42:40Z,- jdingeman opened pull request: [3743](https://github.com/hackforla/website/pull/3743) at 2022-11-22 07:42 PM PST -jdingeman,2022-11-23T03:47:20Z,- jdingeman pull request closed w/o merging: [3743](https://github.com/hackforla/website/pull/3743#event-7873339671) at 2022-11-22 07:47 PM PST -jdingeman,2022-11-27T08:38:46Z,- jdingeman submitted pull request review: [3741](https://github.com/hackforla/website/pull/3741#pullrequestreview-1194948006) at 2022-11-27 12:38 AM PST -jdingeman,2022-11-27T08:43:17Z,- jdingeman commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1328197595) at 2022-11-27 12:43 AM PST -jdingeman,2022-11-27T08:43:23Z,- jdingeman closed issue by PR 3719: [2459](https://github.com/hackforla/website/issues/2459#event-7897232360) at 2022-11-27 12:43 AM PST -jdingeman,2022-11-28T02:49:53Z,- jdingeman opened issue: [3750](https://github.com/hackforla/website/issues/3750) at 2022-11-27 06:49 PM PST -jdingeman,2022-11-29T01:10:10Z,- jdingeman commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1329946670) at 2022-11-28 05:10 PM PST -jdingeman,2022-11-29T02:38:29Z,- jdingeman closed issue by PR 3751: [3209](https://github.com/hackforla/website/issues/3209#event-7908409182) at 2022-11-28 06:38 PM PST -jdingeman,2022-11-29T02:39:08Z,- jdingeman closed issue by PR 3741: [3587](https://github.com/hackforla/website/issues/3587#event-7908411480) at 2022-11-28 06:39 PM PST -jdingeman,2022-11-29T02:58:28Z,- jdingeman commented on pull request: [3749](https://github.com/hackforla/website/pull/3749#issuecomment-1330009178) at 2022-11-28 06:58 PM PST -jdingeman,2022-11-29T02:58:36Z,- jdingeman closed issue by PR 3497: [2199](https://github.com/hackforla/website/issues/2199#event-7908478940) at 2022-11-28 06:58 PM PST -jdingeman,2022-11-29T03:12:17Z,- jdingeman commented on pull request: [3752](https://github.com/hackforla/website/pull/3752#issuecomment-1330018508) at 2022-11-28 07:12 PM PST -jdingeman,2022-11-29T03:12:23Z,- jdingeman closed issue by PR 3752: [3693](https://github.com/hackforla/website/issues/3693#event-7908536416) at 2022-11-28 07:12 PM PST -jdingeman,2022-11-29T03:13:52Z,- jdingeman commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1330019573) at 2022-11-28 07:13 PM PST -jdingeman,2022-11-29T03:28:07Z,- jdingeman commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1330027465) at 2022-11-28 07:28 PM PST -jdingeman,2022-11-29T03:37:19Z,- jdingeman commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1330031927) at 2022-11-28 07:37 PM PST -jdingeman,2022-11-30T04:01:59Z,- jdingeman commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1331615130) at 2022-11-29 08:01 PM PST -jdingeman,2022-12-09T03:04:46Z,- jdingeman commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1343781844) at 2022-12-08 07:04 PM PST -jdingeman,2023-01-04T03:31:21Z,- jdingeman commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1370450529) at 2023-01-03 07:31 PM PST -jdingeman,2023-01-08T18:34:35Z,- jdingeman commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1374899107) at 2023-01-08 10:34 AM PST -jdingeman,2023-01-08T19:00:16Z,- jdingeman commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1374903895) at 2023-01-08 11:00 AM PST -jdingeman,2023-01-09T03:04:17Z,- jdingeman submitted pull request review: [3798](https://github.com/hackforla/website/pull/3798#pullrequestreview-1239899337) at 2023-01-08 07:04 PM PST -jdingeman,2023-01-10T00:11:39Z,- jdingeman closed issue by PR 3800: [2278](https://github.com/hackforla/website/issues/2278#event-8186990799) at 2023-01-09 04:11 PM PST -jdingeman,2023-01-10T00:14:34Z,- jdingeman commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1376527955) at 2023-01-09 04:14 PM PST -jdingeman,2023-01-11T00:07:23Z,- jdingeman submitted pull request review: [3798](https://github.com/hackforla/website/pull/3798#pullrequestreview-1243133134) at 2023-01-10 04:07 PM PST -jdingeman,2023-01-11T00:07:42Z,- jdingeman closed issue by PR 3798: [2863](https://github.com/hackforla/website/issues/2863#event-8196905380) at 2023-01-10 04:07 PM PST -jdingeman,2023-01-11T03:20:08Z,- jdingeman commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1378193026) at 2023-01-10 07:20 PM PST -jdingeman,2023-01-19T00:26:21Z,- jdingeman commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1396279178) at 2023-01-18 04:26 PM PST -jdingeman,2023-01-19T02:16:02Z,- jdingeman commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1396355462) at 2023-01-18 06:16 PM PST -jdingeman,2023-01-21T08:43:16Z,- jdingeman closed issue by PR 3841: [2868](https://github.com/hackforla/website/issues/2868#event-8327008592) at 2023-01-21 12:43 AM PST -jdingeman,2023-01-21T08:46:26Z,- jdingeman commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1399209514) at 2023-01-21 12:46 AM PST -jdingeman,2023-01-22T01:48:10Z,- jdingeman submitted pull request review: [3846](https://github.com/hackforla/website/pull/3846#pullrequestreview-1264708537) at 2023-01-21 05:48 PM PST -jdingeman,2023-01-22T02:05:46Z,- jdingeman commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1399385526) at 2023-01-21 06:05 PM PST -jdingeman,2023-01-22T02:29:18Z,- jdingeman opened issue: [3849](https://github.com/hackforla/website/issues/3849) at 2023-01-21 06:29 PM PST -jdingeman,2023-01-22T02:30:02Z,- jdingeman commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1399388329) at 2023-01-21 06:30 PM PST -jdingeman,2023-01-24T01:10:31Z,- jdingeman commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1401232788) at 2023-01-23 05:10 PM PST -jdingeman,2023-01-25T01:35:39Z,- jdingeman commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1402926411) at 2023-01-24 05:35 PM PST -jdingeman,2023-01-25T02:04:04Z,- jdingeman submitted pull request review: [3844](https://github.com/hackforla/website/pull/3844#pullrequestreview-1268617347) at 2023-01-24 06:04 PM PST -jdingeman,2023-01-25T03:56:18Z,- jdingeman commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1403061824) at 2023-01-24 07:56 PM PST -jdingeman,2023-01-27T00:22:06Z,- jdingeman submitted pull request review: [3867](https://github.com/hackforla/website/pull/3867#pullrequestreview-1271961560) at 2023-01-26 04:22 PM PST -jdingeman,2023-01-27T00:25:00Z,- jdingeman opened pull request: [3880](https://github.com/hackforla/website/pull/3880) at 2023-01-26 04:25 PM PST -jdingeman,2023-01-27T00:25:20Z,- jdingeman pull request merged: [3880](https://github.com/hackforla/website/pull/3880#event-8368990840) at 2023-01-26 04:25 PM PST -jdingeman,2023-01-27T00:27:01Z,- jdingeman commented on pull request: [3880](https://github.com/hackforla/website/pull/3880#issuecomment-1405854183) at 2023-01-26 04:27 PM PST -jdingeman,2023-01-27T00:27:57Z,- jdingeman commented on pull request: [3867](https://github.com/hackforla/website/pull/3867#issuecomment-1405854942) at 2023-01-26 04:27 PM PST -jdingeman,2023-01-27T01:56:46Z,- jdingeman commented on pull request: [3871](https://github.com/hackforla/website/pull/3871#issuecomment-1405921001) at 2023-01-26 05:56 PM PST -jdingeman,2023-01-27T04:00:48Z,- jdingeman commented on pull request: [3871](https://github.com/hackforla/website/pull/3871#issuecomment-1405986670) at 2023-01-26 08:00 PM PST -jdingeman,2023-02-01T01:57:35Z,- jdingeman submitted pull request review: [3897](https://github.com/hackforla/website/pull/3897#pullrequestreview-1278312231) at 2023-01-31 05:57 PM PST -jdingeman,2023-02-01T02:01:35Z,- jdingeman commented on pull request: [3897](https://github.com/hackforla/website/pull/3897#issuecomment-1411337259) at 2023-01-31 06:01 PM PST -jdingeman,2023-02-01T02:08:43Z,- jdingeman commented on pull request: [3897](https://github.com/hackforla/website/pull/3897#issuecomment-1411345416) at 2023-01-31 06:08 PM PST -jdingeman,2023-02-01T02:15:34Z,- jdingeman closed issue by PR 3845: [3761](https://github.com/hackforla/website/issues/3761#event-8405553763) at 2023-01-31 06:15 PM PST -jdingeman,2023-02-01T02:34:16Z,- jdingeman commented on pull request: [3896](https://github.com/hackforla/website/pull/3896#issuecomment-1411368985) at 2023-01-31 06:34 PM PST -jdingeman,2023-02-01T02:35:05Z,- jdingeman commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1411369489) at 2023-01-31 06:35 PM PST -jdingeman,2023-02-01T03:31:36Z,- jdingeman commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1411412657) at 2023-01-31 07:31 PM PST -jdingeman,2023-02-01T05:11:54Z,- jdingeman assigned to issue: [3893](https://github.com/hackforla/website/issues/3893) at 2023-01-31 09:11 PM PST -jdingeman,2023-02-02T02:36:24Z,- jdingeman opened issue: [3922](https://github.com/hackforla/website/issues/3922) at 2023-02-01 06:36 PM PST -jdingeman,2023-02-02T02:38:24Z,- jdingeman commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1413068560) at 2023-02-01 06:38 PM PST -jdingeman,2023-02-02T02:39:56Z,- jdingeman commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1413069531) at 2023-02-01 06:39 PM PST -jdingeman,2023-02-02T02:50:53Z,- jdingeman unassigned from issue: [3893](https://github.com/hackforla/website/issues/3893#issuecomment-1411478803) at 2023-02-01 06:50 PM PST -jdingeman,2023-02-02T03:20:00Z,- jdingeman closed issue by PR 5: [2395](https://github.com/hackforla/website/issues/2395#event-8416737538) at 2023-02-01 07:20 PM PST -jdingeman,2023-02-02T03:37:44Z,- jdingeman reopened issue: [2395](https://github.com/hackforla/website/issues/2395#event-8416737538) at 2023-02-01 07:37 PM PST -jdingeman,2023-02-03T01:29:57Z,- jdingeman commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1414589257) at 2023-02-02 05:29 PM PST -jdingeman,2023-02-05T18:09:23Z,- jdingeman commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1418204326) at 2023-02-05 10:09 AM PST -jdingeman,2023-02-06T03:52:18Z,- jdingeman commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1418470591) at 2023-02-05 07:52 PM PST -jdingeman,2023-02-06T03:52:18Z,- jdingeman closed issue as completed: [3417](https://github.com/hackforla/website/issues/3417#event-8443301627) at 2023-02-05 07:52 PM PST -jdingeman,2023-02-06T03:56:33Z,- jdingeman submitted pull request review: [3941](https://github.com/hackforla/website/pull/3941#pullrequestreview-1284513403) at 2023-02-05 07:56 PM PST -jdingeman,2023-02-06T04:11:14Z,- jdingeman commented on pull request: [3942](https://github.com/hackforla/website/pull/3942#issuecomment-1418483026) at 2023-02-05 08:11 PM PST -jdingeman,2023-02-06T04:16:51Z,- jdingeman submitted pull request review: [3930](https://github.com/hackforla/website/pull/3930#pullrequestreview-1284523872) at 2023-02-05 08:16 PM PST -jdingeman,2023-02-07T01:54:18Z,- jdingeman closed issue by PR 3935: [3853](https://github.com/hackforla/website/issues/3853#event-8453347039) at 2023-02-06 05:54 PM PST -jdingeman,2023-02-07T01:56:36Z,- jdingeman opened issue: [3944](https://github.com/hackforla/website/issues/3944) at 2023-02-06 05:56 PM PST -jdingeman,2023-02-07T02:06:51Z,- jdingeman submitted pull request review: [3945](https://github.com/hackforla/website/pull/3945#pullrequestreview-1286282225) at 2023-02-06 06:06 PM PST -jdingeman,2023-02-07T02:13:53Z,- jdingeman submitted pull request review: [3945](https://github.com/hackforla/website/pull/3945#pullrequestreview-1286286693) at 2023-02-06 06:13 PM PST -jdingeman,2023-02-07T02:25:35Z,- jdingeman submitted pull request review: [3943](https://github.com/hackforla/website/pull/3943#pullrequestreview-1286294318) at 2023-02-06 06:25 PM PST -jdingeman,2023-02-07T03:12:25Z,- jdingeman closed issue by PR 3923: [3255](https://github.com/hackforla/website/issues/3255#event-8453667284) at 2023-02-06 07:12 PM PST -jdingeman,2023-02-07T03:14:07Z,- jdingeman commented on issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1420136530) at 2023-02-06 07:14 PM PST -jdingeman,2023-02-07T05:21:28Z,- jdingeman commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1420217965) at 2023-02-06 09:21 PM PST -jdingeman,2023-02-07T23:59:10Z,- jdingeman commented on issue: [3849](https://github.com/hackforla/website/issues/3849#issuecomment-1421667666) at 2023-02-07 03:59 PM PST -jdingeman,2023-02-07T23:59:17Z,- jdingeman closed issue as completed: [3849](https://github.com/hackforla/website/issues/3849#event-8463181768) at 2023-02-07 03:59 PM PST -jdingeman,2023-02-08T01:58:56Z,- jdingeman commented on issue: [3952](https://github.com/hackforla/website/issues/3952#issuecomment-1421840677) at 2023-02-07 05:58 PM PST -jdingeman,2023-02-08T02:17:54Z,- jdingeman commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1421882034) at 2023-02-07 06:17 PM PST -jdingeman,2023-02-08T02:20:00Z,- jdingeman commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1421883456) at 2023-02-07 06:20 PM PST -jdingeman,2023-02-08T02:51:04Z,- jdingeman commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1421904264) at 2023-02-07 06:51 PM PST -jdingeman,2023-02-08T03:28:57Z,- jdingeman commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1421940683) at 2023-02-07 07:28 PM PST -jdingeman,2023-02-08T03:54:34Z,- jdingeman assigned to issue: [3748](https://github.com/hackforla/website/issues/3748#issuecomment-1383221254) at 2023-02-07 07:54 PM PST -jdingeman,2023-02-08T03:59:39Z,- jdingeman commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1421961372) at 2023-02-07 07:59 PM PST -jdingeman,2023-02-08T04:37:19Z,- jdingeman closed issue by PR 3940: [3854](https://github.com/hackforla/website/issues/3854#event-8464545390) at 2023-02-07 08:37 PM PST -jdingeman,2023-02-09T00:04:41Z,- jdingeman commented on pull request: [3947](https://github.com/hackforla/website/pull/3947#issuecomment-1423398565) at 2023-02-08 04:04 PM PST -jdingeman,2023-02-09T00:10:13Z,- jdingeman submitted pull request review: [3947](https://github.com/hackforla/website/pull/3947#pullrequestreview-1290211056) at 2023-02-08 04:10 PM PST -jdingeman,2023-02-09T00:10:22Z,- jdingeman closed issue by PR 3947: [3731](https://github.com/hackforla/website/issues/3731#event-8474177017) at 2023-02-08 04:10 PM PST -jdingeman,2023-02-09T00:13:41Z,- jdingeman closed issue by PR 3954: [3872](https://github.com/hackforla/website/issues/3872#event-8474194242) at 2023-02-08 04:13 PM PST -jdingeman,2023-02-09T00:26:28Z,- jdingeman opened issue: [3957](https://github.com/hackforla/website/issues/3957) at 2023-02-08 04:26 PM PST -jdingeman,2023-02-09T00:27:09Z,- jdingeman commented on issue: [3748](https://github.com/hackforla/website/issues/3748#issuecomment-1423420863) at 2023-02-08 04:27 PM PST -jdingeman,2023-02-09T00:27:09Z,- jdingeman closed issue as completed: [3748](https://github.com/hackforla/website/issues/3748#event-8474271364) at 2023-02-08 04:27 PM PST -jdingeman,2023-02-09T00:30:05Z,- jdingeman assigned to issue: [3949](https://github.com/hackforla/website/issues/3949) at 2023-02-08 04:30 PM PST -jdingeman,2023-02-09T01:09:50Z,- jdingeman opened issue: [3958](https://github.com/hackforla/website/issues/3958) at 2023-02-08 05:09 PM PST -jdingeman,2023-02-09T01:10:14Z,- jdingeman unassigned from issue: [3949](https://github.com/hackforla/website/issues/3949#issuecomment-1423426247) at 2023-02-08 05:10 PM PST -jdingeman,2023-02-09T01:10:23Z,- jdingeman commented on issue: [3949](https://github.com/hackforla/website/issues/3949#issuecomment-1423465765) at 2023-02-08 05:10 PM PST -jdingeman,2023-02-09T01:10:24Z,- jdingeman closed issue as completed: [3949](https://github.com/hackforla/website/issues/3949#event-8474499945) at 2023-02-08 05:10 PM PST -jdingeman,2023-02-09T01:39:21Z,- jdingeman opened issue: [3959](https://github.com/hackforla/website/issues/3959) at 2023-02-08 05:39 PM PST -jdingeman,2023-02-09T01:40:01Z,- jdingeman commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1423487855) at 2023-02-08 05:40 PM PST -jdingeman,2023-02-09T02:41:54Z,- jdingeman commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1423536429) at 2023-02-08 06:41 PM PST -jdingeman,2023-02-11T22:16:56Z,- jdingeman commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1426887664) at 2023-02-11 02:16 PM PST -jdingeman,2023-02-14T00:26:14Z,- jdingeman submitted pull request review: [3844](https://github.com/hackforla/website/pull/3844#pullrequestreview-1296649355) at 2023-02-13 04:26 PM PST -jdingeman,2023-02-14T00:26:21Z,- jdingeman closed issue by PR 3844: [3738](https://github.com/hackforla/website/issues/3738#event-8510150112) at 2023-02-13 04:26 PM PST -jdingeman,2023-02-14T00:29:44Z,- jdingeman commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1428916188) at 2023-02-13 04:29 PM PST -jdingeman,2023-02-14T00:32:20Z,- jdingeman assigned to issue: [3963](https://github.com/hackforla/website/issues/3963) at 2023-02-13 04:32 PM PST -jdingeman,2023-02-14T00:39:40Z,- jdingeman opened issue: [3967](https://github.com/hackforla/website/issues/3967) at 2023-02-13 04:39 PM PST -jdingeman,2023-02-14T00:40:01Z,- jdingeman unassigned from issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428918367) at 2023-02-13 04:40 PM PST -jdingeman,2023-02-14T00:42:26Z,- jdingeman commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428925335) at 2023-02-13 04:42 PM PST -jdingeman,2023-02-14T00:42:42Z,- jdingeman closed issue by PR 4091: [3963](https://github.com/hackforla/website/issues/3963#event-8510219961) at 2023-02-13 04:42 PM PST -jdingeman,2023-02-14T00:52:44Z,- jdingeman commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1428932156) at 2023-02-13 04:52 PM PST -jdingeman,2023-02-14T01:11:22Z,- jdingeman commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428950944) at 2023-02-13 05:11 PM PST -jdingeman,2023-02-14T01:11:24Z,- jdingeman reopened issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428950944) at 2023-02-13 05:11 PM PST -jdingeman,2023-02-14T01:14:56Z,- jdingeman commented on issue: [3967](https://github.com/hackforla/website/issues/3967#issuecomment-1428954666) at 2023-02-13 05:14 PM PST -jdingeman,2023-02-14T01:14:56Z,- jdingeman closed issue as not planned: [3967](https://github.com/hackforla/website/issues/3967#event-8510376246) at 2023-02-13 05:14 PM PST -jdingeman,2023-02-14T01:24:22Z,- jdingeman commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428964280) at 2023-02-13 05:24 PM PST -jdingeman,2023-02-14T01:32:02Z,- jdingeman commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1428972228) at 2023-02-13 05:32 PM PST -jdingeman,2023-02-17T02:29:30Z,- jdingeman commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1434009499) at 2023-02-16 06:29 PM PST -jdingeman,2023-02-17T02:40:52Z,- jdingeman opened issue: [3990](https://github.com/hackforla/website/issues/3990) at 2023-02-16 06:40 PM PST -jdingeman,2023-02-17T02:52:21Z,- jdingeman commented on issue: [3990](https://github.com/hackforla/website/issues/3990#issuecomment-1434023430) at 2023-02-16 06:52 PM PST -jdingeman,2023-02-19T07:40:37Z,- jdingeman commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1435916150) at 2023-02-18 11:40 PM PST -jdingeman,2023-02-19T07:48:59Z,- jdingeman submitted pull request review: [4002](https://github.com/hackforla/website/pull/4002#pullrequestreview-1304730669) at 2023-02-18 11:48 PM PST -jdingeman,2023-02-19T08:13:03Z,- jdingeman opened issue: [4009](https://github.com/hackforla/website/issues/4009) at 2023-02-19 12:13 AM PST -jdingeman,2023-02-19T19:12:23Z,- jdingeman commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1436068677) at 2023-02-19 11:12 AM PST -jdingeman,2023-02-19T19:24:35Z,- jdingeman commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1436071043) at 2023-02-19 11:24 AM PST -jdingeman,2023-02-19T19:34:58Z,- jdingeman commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1436073154) at 2023-02-19 11:34 AM PST -jdingeman,2023-02-19T19:38:44Z,- jdingeman commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1436073915) at 2023-02-19 11:38 AM PST -jdingeman,2023-02-24T02:19:13Z,- jdingeman commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1442703033) at 2023-02-23 06:19 PM PST -jdingeman,2023-02-24T02:36:25Z,- jdingeman unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1420217965) at 2023-02-23 06:36 PM PST -jdingeman,2023-02-24T02:40:06Z,- jdingeman commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1442716718) at 2023-02-23 06:40 PM PST -jdingeman,2023-02-24T04:14:00Z,- jdingeman commented on pull request: [4030](https://github.com/hackforla/website/pull/4030#issuecomment-1442786425) at 2023-02-23 08:14 PM PST -jdingeman,2023-02-24T04:17:21Z,- jdingeman commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1442788123) at 2023-02-23 08:17 PM PST -jdingeman,2023-02-24T04:17:22Z,- jdingeman closed issue as completed: [3540](https://github.com/hackforla/website/issues/3540#event-8597998388) at 2023-02-23 08:17 PM PST -jdingeman,2023-02-25T07:23:53Z,- jdingeman assigned to issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-24 11:23 PM PST -jdingeman,2023-02-25T17:04:19Z,- jdingeman unassigned from issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-25 09:04 AM PST -jdingeman,2023-02-27T20:25:00Z,- jdingeman commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1447033104) at 2023-02-27 12:25 PM PST -jdingeman,2023-02-28T01:20:45Z,- jdingeman commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1447419620) at 2023-02-27 05:20 PM PST -jdingeman,2023-03-01T05:23:48Z,- jdingeman submitted pull request review: [4039](https://github.com/hackforla/website/pull/4039#pullrequestreview-1319061593) at 2023-02-28 09:23 PM PST -jdingeman,2023-03-01T06:15:21Z,- jdingeman commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1449413433) at 2023-02-28 10:15 PM PST -jdingeman,2023-03-01T06:28:18Z,- jdingeman opened issue: [4077](https://github.com/hackforla/website/issues/4077) at 2023-02-28 10:28 PM PST -jdingeman,2023-03-01T06:32:47Z,- jdingeman commented on issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1449429516) at 2023-02-28 10:32 PM PST -jdingeman,2023-03-01T21:29:21Z,- jdingeman commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1450872479) at 2023-03-01 01:29 PM PST -jdingeman,2023-03-01T21:31:28Z,- jdingeman commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1450874660) at 2023-03-01 01:31 PM PST -jdingeman,2023-03-01T23:50:35Z,- jdingeman opened issue: [4081](https://github.com/hackforla/website/issues/4081) at 2023-03-01 03:50 PM PST -jdingeman,2023-03-01T23:55:21Z,- jdingeman opened issue: [4082](https://github.com/hackforla/website/issues/4082) at 2023-03-01 03:55 PM PST -jdingeman,2023-03-01T23:56:17Z,- jdingeman commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1451046890) at 2023-03-01 03:56 PM PST -jdingeman,2023-03-01T23:59:03Z,- jdingeman commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1451051775) at 2023-03-01 03:59 PM PST -jdingeman,2023-03-02T00:01:11Z,- jdingeman commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1451054689) at 2023-03-01 04:01 PM PST -jdingeman,2023-03-02T00:08:16Z,- jdingeman commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1451070857) at 2023-03-01 04:08 PM PST -jdingeman,2023-03-02T00:25:49Z,- jdingeman opened issue: [4083](https://github.com/hackforla/website/issues/4083) at 2023-03-01 04:25 PM PST -jdingeman,2023-03-02T00:43:27Z,- jdingeman opened issue: [4084](https://github.com/hackforla/website/issues/4084) at 2023-03-01 04:43 PM PST -jdingeman,2023-03-03T03:30:29Z,- jdingeman commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1452910097) at 2023-03-02 07:30 PM PST -jdingeman,2023-03-03T03:44:35Z,- jdingeman commented on issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1452918340) at 2023-03-02 07:44 PM PST -jdingeman,2023-03-03T03:47:08Z,- jdingeman commented on issue: [3889](https://github.com/hackforla/website/issues/3889#issuecomment-1452919733) at 2023-03-02 07:47 PM PST -jdingeman,2023-03-03T03:47:41Z,- jdingeman commented on issue: [3976](https://github.com/hackforla/website/issues/3976#issuecomment-1452920093) at 2023-03-02 07:47 PM PST -jdingeman,2023-03-07T00:31:44Z,- jdingeman commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1457274729) at 2023-03-06 04:31 PM PST -jdingeman,2023-03-07T00:32:44Z,- jdingeman closed issue by PR 4099: [4043](https://github.com/hackforla/website/issues/4043#event-8680279864) at 2023-03-06 04:32 PM PST -jdingeman,2023-03-07T00:33:27Z,- jdingeman closed issue by PR 4114: [4049](https://github.com/hackforla/website/issues/4049#event-8680283206) at 2023-03-06 04:33 PM PST -jdingeman,2023-03-07T00:34:42Z,- jdingeman commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1457278530) at 2023-03-06 04:34 PM PST -jdingeman,2023-03-07T00:34:42Z,- jdingeman closed issue as completed: [3790](https://github.com/hackforla/website/issues/3790#event-8680289645) at 2023-03-06 04:34 PM PST -jdingeman,2023-03-07T00:35:09Z,- jdingeman commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1457278939) at 2023-03-06 04:35 PM PST -jdingeman,2023-03-07T00:35:09Z,- jdingeman closed issue as completed: [3781](https://github.com/hackforla/website/issues/3781#event-8680291992) at 2023-03-06 04:35 PM PST -jdingeman,2023-03-07T00:43:22Z,- jdingeman closed issue as completed: [3670](https://github.com/hackforla/website/issues/3670#event-8680332683) at 2023-03-06 04:43 PM PST -jdingeman,2023-03-07T00:48:51Z,- jdingeman commented on issue: [3937](https://github.com/hackforla/website/issues/3937#issuecomment-1457290669) at 2023-03-06 04:48 PM PST -jdingeman,2023-03-07T00:48:51Z,- jdingeman closed issue as not planned: [3937](https://github.com/hackforla/website/issues/3937#event-8680357198) at 2023-03-06 04:48 PM PST -jdingeman,2023-03-07T00:56:31Z,- jdingeman opened pull request: [4122](https://github.com/hackforla/website/pull/4122) at 2023-03-06 04:56 PM PST -jdingeman,2023-03-07T01:07:05Z,- jdingeman pull request merged: [4122](https://github.com/hackforla/website/pull/4122#event-8680452373) at 2023-03-06 05:07 PM PST -jdingeman,2023-03-07T01:14:34Z,- jdingeman commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1457317410) at 2023-03-06 05:14 PM PST -jdingeman,2023-03-07T01:18:45Z,- jdingeman commented on issue: [4112](https://github.com/hackforla/website/issues/4112#issuecomment-1457323941) at 2023-03-06 05:18 PM PST -jdingeman,2023-03-07T01:20:15Z,- jdingeman commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1457325557) at 2023-03-06 05:20 PM PST -jdingeman,2023-03-07T01:21:56Z,- jdingeman commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1457327205) at 2023-03-06 05:21 PM PST -jdingeman,2023-03-07T01:43:00Z,- jdingeman commented on issue: [3957](https://github.com/hackforla/website/issues/3957#issuecomment-1457358421) at 2023-03-06 05:43 PM PST -jdingeman,2023-03-07T01:43:01Z,- jdingeman closed issue as not planned: [3957](https://github.com/hackforla/website/issues/3957#event-8680639303) at 2023-03-06 05:43 PM PST -jdingeman,2023-03-07T01:45:06Z,- jdingeman unassigned from issue: [3748](https://github.com/hackforla/website/issues/3748#issuecomment-1427211734) at 2023-03-06 05:45 PM PST -jdingeman,2023-03-07T02:19:24Z,- jdingeman commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1457398129) at 2023-03-06 06:19 PM PST -jdingeman,2023-03-08T03:14:12Z,- jdingeman closed issue as completed: [3722](https://github.com/hackforla/website/issues/3722#event-8692617588) at 2023-03-07 07:14 PM PST -jdingeman,2023-03-09T02:12:23Z,- jdingeman commented on issue: [4132](https://github.com/hackforla/website/issues/4132#issuecomment-1461162887) at 2023-03-08 06:12 PM PST -jdingeman,2023-03-09T02:14:56Z,- jdingeman commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1461164777) at 2023-03-08 06:14 PM PST -jdingeman,2023-03-09T03:21:29Z,- jdingeman opened issue: [4136](https://github.com/hackforla/website/issues/4136) at 2023-03-08 07:21 PM PST -jdingeman,2023-03-09T03:24:40Z,- jdingeman commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1461211621) at 2023-03-08 07:24 PM PST -jdingeman,2023-03-09T03:37:23Z,- jdingeman opened issue: [4138](https://github.com/hackforla/website/issues/4138) at 2023-03-08 07:37 PM PST -jdingeman,2023-03-09T03:37:58Z,- jdingeman commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1461219662) at 2023-03-08 07:37 PM PST -jdingeman,2023-03-09T03:39:58Z,- jdingeman commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1461220936) at 2023-03-08 07:39 PM PST -jdingeman,2023-03-09T03:43:23Z,- jdingeman commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1461223307) at 2023-03-08 07:43 PM PST -jdingeman,2023-03-09T03:47:29Z,- jdingeman commented on issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1461226654) at 2023-03-08 07:47 PM PST -jdingeman,2023-03-09T03:49:12Z,- jdingeman closed issue by PR 4106: [4036](https://github.com/hackforla/website/issues/4036#event-8702909824) at 2023-03-08 07:49 PM PST -jdingeman,2023-03-09T03:50:20Z,- jdingeman commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1461229085) at 2023-03-08 07:50 PM PST -jdingeman,2023-03-09T03:53:33Z,- jdingeman commented on issue: [4047](https://github.com/hackforla/website/issues/4047#issuecomment-1461231926) at 2023-03-08 07:53 PM PST -jdingeman,2023-03-09T03:54:53Z,- jdingeman closed issue by PR 4126: [4047](https://github.com/hackforla/website/issues/4047#event-8702934565) at 2023-03-08 07:54 PM PST -jdingeman,2023-03-09T03:57:15Z,- jdingeman closed issue by PR 4133: [4046](https://github.com/hackforla/website/issues/4046#event-8702945438) at 2023-03-08 07:57 PM PST -jdingeman,2023-03-12T06:14:45Z,- jdingeman commented on issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1465102179) at 2023-03-11 11:14 PM PDT -jdingeman,2023-03-12T06:31:14Z,- jdingeman commented on issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1465104230) at 2023-03-11 11:31 PM PDT -jdingeman,2023-03-12T06:32:18Z,- jdingeman commented on issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1465104338) at 2023-03-11 11:32 PM PDT -jdingeman,2023-03-12T06:45:57Z,- jdingeman commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465105865) at 2023-03-11 11:45 PM PDT -jdingeman,2023-03-12T06:48:55Z,- jdingeman closed issue by PR 4143: [4015](https://github.com/hackforla/website/issues/4015#event-8725151560) at 2023-03-11 11:48 PM PDT -jdingeman,2023-03-12T06:50:05Z,- jdingeman closed issue by PR 4139: [4026](https://github.com/hackforla/website/issues/4026#event-8725152669) at 2023-03-11 11:50 PM PDT -jdingeman,2023-03-12T07:26:41Z,- jdingeman commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1465111344) at 2023-03-12 12:26 AM PDT -jdingeman,2023-03-12T17:26:35Z,- jdingeman commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1465253782) at 2023-03-12 10:26 AM PDT -jdingeman,2023-03-13T20:06:51Z,- jdingeman submitted pull request review: [4135](https://github.com/hackforla/website/pull/4135#pullrequestreview-1337869668) at 2023-03-13 01:06 PM PDT -jdingeman,2023-03-13T20:07:00Z,- jdingeman closed issue by PR 4135: [2475](https://github.com/hackforla/website/issues/2475#event-8736021150) at 2023-03-13 01:07 PM PDT -jdingeman,2023-03-13T22:26:08Z,- jdingeman commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1467057791) at 2023-03-13 03:26 PM PDT -jdingeman,2023-03-13T22:39:13Z,- jdingeman opened issue: [4158](https://github.com/hackforla/website/issues/4158) at 2023-03-13 03:39 PM PDT -jdingeman,2023-03-13T22:50:26Z,- jdingeman closed issue by PR 4017: [3118](https://github.com/hackforla/website/issues/3118#event-8737227643) at 2023-03-13 03:50 PM PDT -jdingeman,2023-03-13T23:59:59Z,- jdingeman closed issue by PR 4157: [4118](https://github.com/hackforla/website/issues/4118#event-8737573580) at 2023-03-13 04:59 PM PDT -jdingeman,2023-03-15T02:23:47Z,- jdingeman opened issue: [4188](https://github.com/hackforla/website/issues/4188) at 2023-03-14 07:23 PM PDT -jdingeman,2023-03-15T02:40:11Z,- jdingeman opened issue: [4189](https://github.com/hackforla/website/issues/4189) at 2023-03-14 07:40 PM PDT -jdingeman,2023-03-15T02:40:50Z,- jdingeman commented on issue: [4129](https://github.com/hackforla/website/issues/4129#issuecomment-1469214407) at 2023-03-14 07:40 PM PDT -jdingeman,2023-03-15T02:40:50Z,- jdingeman closed issue as completed: [4129](https://github.com/hackforla/website/issues/4129#event-8750345585) at 2023-03-14 07:40 PM PDT -jdingeman,2023-03-15T02:55:52Z,- jdingeman opened issue: [4190](https://github.com/hackforla/website/issues/4190) at 2023-03-14 07:55 PM PDT -jdingeman,2023-03-15T03:08:50Z,- jdingeman commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1469243638) at 2023-03-14 08:08 PM PDT -jdingeman,2023-03-16T22:51:29Z,- jdingeman commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1472864632) at 2023-03-16 03:51 PM PDT -jdingeman,2023-03-16T22:51:30Z,- jdingeman closed issue as completed: [3969](https://github.com/hackforla/website/issues/3969#event-8772722245) at 2023-03-16 03:51 PM PDT -jdingeman,2023-03-16T22:57:09Z,- jdingeman commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1472869167) at 2023-03-16 03:57 PM PDT -jdingeman,2023-03-16T22:58:54Z,- jdingeman commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1472870755) at 2023-03-16 03:58 PM PDT -jdingeman,2023-03-16T22:58:54Z,- jdingeman closed issue as completed: [3711](https://github.com/hackforla/website/issues/3711#event-8772758105) at 2023-03-16 03:58 PM PDT -jdingeman,2023-03-16T23:05:03Z,- jdingeman commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1472876186) at 2023-03-16 04:05 PM PDT -jdingeman,2023-03-16T23:05:04Z,- jdingeman closed issue as completed: [3712](https://github.com/hackforla/website/issues/3712#event-8772804774) at 2023-03-16 04:05 PM PDT -jdingeman,2023-03-16T23:06:45Z,- jdingeman commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1472877758) at 2023-03-16 04:06 PM PDT -jdingeman,2023-03-16T23:06:45Z,- jdingeman closed issue as completed: [3791](https://github.com/hackforla/website/issues/3791#event-8772813510) at 2023-03-16 04:06 PM PDT -jdingeman,2023-03-16T23:08:13Z,- jdingeman commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1472879193) at 2023-03-16 04:08 PM PDT -jdingeman,2023-03-16T23:08:14Z,- jdingeman closed issue as completed: [3786](https://github.com/hackforla/website/issues/3786#event-8772823007) at 2023-03-16 04:08 PM PDT -jdingeman,2023-03-16T23:09:56Z,- jdingeman commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1472880537) at 2023-03-16 04:09 PM PDT -jdingeman,2023-03-16T23:09:56Z,- jdingeman closed issue as completed: [3606](https://github.com/hackforla/website/issues/3606#event-8772832773) at 2023-03-16 04:09 PM PDT -jdingeman,2023-03-16T23:10:57Z,- jdingeman commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1472881259) at 2023-03-16 04:10 PM PDT -jdingeman,2023-03-16T23:10:58Z,- jdingeman closed issue as completed: [3607](https://github.com/hackforla/website/issues/3607#event-8772836981) at 2023-03-16 04:10 PM PDT -jdingeman,2023-03-16T23:12:44Z,- jdingeman commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1472882518) at 2023-03-16 04:12 PM PDT -jdingeman,2023-03-16T23:12:44Z,- jdingeman closed issue as completed: [3783](https://github.com/hackforla/website/issues/3783#event-8772845120) at 2023-03-16 04:12 PM PDT -jdingeman,2023-03-16T23:14:20Z,- jdingeman commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1472883576) at 2023-03-16 04:14 PM PDT -jdingeman,2023-03-16T23:14:21Z,- jdingeman closed issue as completed: [3831](https://github.com/hackforla/website/issues/3831#event-8772852578) at 2023-03-16 04:14 PM PDT -jdingeman,2023-03-16T23:16:14Z,- jdingeman commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1472884904) at 2023-03-16 04:16 PM PDT -jdingeman,2023-03-16T23:19:16Z,- jdingeman commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1472886760) at 2023-03-16 04:19 PM PDT -jdingeman,2023-03-16T23:21:08Z,- jdingeman commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1472887968) at 2023-03-16 04:21 PM PDT -jdingeman,2023-03-16T23:23:44Z,- jdingeman commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1472889636) at 2023-03-16 04:23 PM PDT -jdingeman,2023-03-16T23:25:08Z,- jdingeman commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1472890572) at 2023-03-16 04:25 PM PDT -jdingeman,2023-03-16T23:26:33Z,- jdingeman commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1472891541) at 2023-03-16 04:26 PM PDT -jdingeman,2023-03-16T23:27:28Z,- jdingeman commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1472892081) at 2023-03-16 04:27 PM PDT -jdingeman,2023-03-16T23:27:28Z,- jdingeman closed issue as completed: [3684](https://github.com/hackforla/website/issues/3684#event-8772904154) at 2023-03-16 04:27 PM PDT -jdingeman,2023-03-16T23:29:54Z,- jdingeman commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1472893686) at 2023-03-16 04:29 PM PDT -jdingeman,2023-03-16T23:31:12Z,- jdingeman commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1472894494) at 2023-03-16 04:31 PM PDT -jdingeman,2023-03-16T23:33:04Z,- jdingeman commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1472895693) at 2023-03-16 04:33 PM PDT -jdingeman,2023-03-16T23:36:21Z,- jdingeman commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1472897979) at 2023-03-16 04:36 PM PDT -jdingeman,2023-03-16T23:36:21Z,- jdingeman closed issue as completed: [3785](https://github.com/hackforla/website/issues/3785#event-8772941117) at 2023-03-16 04:36 PM PDT -jdingeman,2023-03-16T23:49:01Z,- jdingeman commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1472906540) at 2023-03-16 04:49 PM PDT -jdingeman,2023-03-16T23:51:21Z,- jdingeman commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1472908068) at 2023-03-16 04:51 PM PDT -jdingeman,2023-03-16T23:53:36Z,- jdingeman commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1472909436) at 2023-03-16 04:53 PM PDT -jdingeman,2023-03-17T00:04:41Z,- jdingeman reopened issue: [3950](https://github.com/hackforla/website/issues/3950#event-8771860945) at 2023-03-16 05:04 PM PDT -jdingeman,2023-03-17T00:05:21Z,- jdingeman commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1472918878) at 2023-03-16 05:05 PM PDT -jdingeman,2023-03-17T00:45:10Z,- jdingeman closed issue by PR 4176: [4013](https://github.com/hackforla/website/issues/4013#event-8773226968) at 2023-03-16 05:45 PM PDT -jdingeman,2023-03-17T02:59:22Z,- jdingeman closed issue by PR 4195: [3953](https://github.com/hackforla/website/issues/3953#event-8773791632) at 2023-03-16 07:59 PM PDT -jdingeman,2023-03-19T04:00:41Z,- jdingeman closed issue by PR 4184: [4083](https://github.com/hackforla/website/issues/4083#event-8786870938) at 2023-03-18 09:00 PM PDT -jdingeman,2023-03-19T04:01:32Z,- jdingeman closed issue by PR 4194: [3933](https://github.com/hackforla/website/issues/3933#event-8786872735) at 2023-03-18 09:01 PM PDT -jdingeman,2023-03-19T04:02:42Z,- jdingeman closed issue by PR 4199: [3950](https://github.com/hackforla/website/issues/3950#event-8786875039) at 2023-03-18 09:02 PM PDT -jdingeman,2023-03-19T04:04:04Z,- jdingeman closed issue by PR 4201: [3997](https://github.com/hackforla/website/issues/3997#event-8786877883) at 2023-03-18 09:04 PM PDT -jdingeman,2023-03-19T04:05:47Z,- jdingeman closed issue by PR 4204: [4085](https://github.com/hackforla/website/issues/4085#event-8786881208) at 2023-03-18 09:05 PM PDT -jdingeman,2023-03-19T04:06:41Z,- jdingeman closed issue by PR 4207: [3951](https://github.com/hackforla/website/issues/3951#event-8786882960) at 2023-03-18 09:06 PM PDT -jdingeman,2023-03-19T04:36:56Z,- jdingeman opened issue: [4211](https://github.com/hackforla/website/issues/4211) at 2023-03-18 09:36 PM PDT -jdingeman,2023-03-19T04:37:59Z,- jdingeman commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1475101357) at 2023-03-18 09:37 PM PDT -jdingeman,2023-03-19T04:56:10Z,- jdingeman commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1475104673) at 2023-03-18 09:56 PM PDT -jdingeman,2023-03-19T05:08:01Z,- jdingeman commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1475106563) at 2023-03-18 10:08 PM PDT -jdingeman,2023-03-20T22:38:08Z,- jdingeman opened issue: [4220](https://github.com/hackforla/website/issues/4220) at 2023-03-20 03:38 PM PDT -jdingeman,2023-03-20T22:41:15Z,- jdingeman commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1477039974) at 2023-03-20 03:41 PM PDT -jdingeman,2023-03-20T22:46:35Z,- jdingeman commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1477044061) at 2023-03-20 03:46 PM PDT -jdingeman,2023-03-20T22:47:36Z,- jdingeman commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1477044734) at 2023-03-20 03:47 PM PDT -jdingeman,2023-03-20T22:48:34Z,- jdingeman commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1477045430) at 2023-03-20 03:48 PM PDT -jdingeman,2023-03-20T22:50:50Z,- jdingeman closed issue by PR 4213: [3876](https://github.com/hackforla/website/issues/3876#event-8799920459) at 2023-03-20 03:50 PM PDT -jdingeman,2023-03-20T22:53:15Z,- jdingeman commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1477049894) at 2023-03-20 03:53 PM PDT -jdingeman,2023-03-20T23:04:27Z,- jdingeman commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1477064290) at 2023-03-20 04:04 PM PDT -jdingeman,2023-03-20T23:04:27Z,- jdingeman closed issue as completed: [3971](https://github.com/hackforla/website/issues/3971#event-8799999682) at 2023-03-20 04:04 PM PDT -jdingeman,2023-03-21T00:39:41Z,- jdingeman commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1477132237) at 2023-03-20 05:39 PM PDT -jdingeman,2023-03-21T00:45:16Z,- jdingeman commented on issue: [3724](https://github.com/hackforla/website/issues/3724#issuecomment-1477134978) at 2023-03-20 05:45 PM PDT -jdingeman,2023-03-21T00:45:16Z,- jdingeman closed issue as completed: [3724](https://github.com/hackforla/website/issues/3724#event-8800432740) at 2023-03-20 05:45 PM PDT -jdingeman,2023-03-21T03:53:34Z,- jdingeman submitted pull request review: [4105](https://github.com/hackforla/website/pull/4105#pullrequestreview-1349662668) at 2023-03-20 08:53 PM PDT -jdingeman,2023-03-21T03:53:42Z,- jdingeman closed issue by PR 4105: [4054](https://github.com/hackforla/website/issues/4054#event-8801094205) at 2023-03-20 08:53 PM PDT -jdingeman,2023-03-22T01:57:48Z,- jdingeman commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1478815991) at 2023-03-21 06:57 PM PDT -jdingeman,2023-03-22T04:45:42Z,- jdingeman commented on issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1478911800) at 2023-03-21 09:45 PM PDT -jdingeman,2023-03-22T04:45:42Z,- jdingeman closed issue as completed: [4077](https://github.com/hackforla/website/issues/4077#event-8812334909) at 2023-03-21 09:45 PM PDT -jdingeman,2023-03-22T16:46:22Z,- jdingeman commented on issue: [4111](https://github.com/hackforla/website/issues/4111#issuecomment-1479917853) at 2023-03-22 09:46 AM PDT -jdingeman,2023-03-22T16:46:22Z,- jdingeman closed issue by PR 4178: [4111](https://github.com/hackforla/website/issues/4111#event-8819108903) at 2023-03-22 09:46 AM PDT -jdingeman,2023-03-22T16:49:24Z,- jdingeman commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1479922007) at 2023-03-22 09:49 AM PDT -jdingeman,2023-03-22T17:00:41Z,- jdingeman commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1479939053) at 2023-03-22 10:00 AM PDT -jdingeman,2023-03-22T17:05:55Z,- jdingeman commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1479947563) at 2023-03-22 10:05 AM PDT -jdingeman,2023-03-22T17:14:00Z,- jdingeman commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1479960242) at 2023-03-22 10:14 AM PDT -jdingeman,2023-03-22T17:21:27Z,- jdingeman commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1479971866) at 2023-03-22 10:21 AM PDT -jdingeman,2023-03-22T17:27:08Z,- jdingeman commented on issue: [4193](https://github.com/hackforla/website/issues/4193#issuecomment-1479980187) at 2023-03-22 10:27 AM PDT -jdingeman,2023-03-22T17:30:51Z,- jdingeman commented on issue: [4230](https://github.com/hackforla/website/issues/4230#issuecomment-1479985694) at 2023-03-22 10:30 AM PDT -jdingeman,2023-03-22T18:00:24Z,- jdingeman closed issue by PR 4214: [3904](https://github.com/hackforla/website/issues/3904#event-8819798308) at 2023-03-22 11:00 AM PDT -jdingeman,2023-03-22T23:20:25Z,- jdingeman opened issue: [4249](https://github.com/hackforla/website/issues/4249) at 2023-03-22 04:20 PM PDT -jdingeman,2023-03-22T23:20:51Z,- jdingeman commented on issue: [4243](https://github.com/hackforla/website/issues/4243#issuecomment-1480377471) at 2023-03-22 04:20 PM PDT -jdingeman,2023-03-22T23:22:28Z,- jdingeman commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1480378652) at 2023-03-22 04:22 PM PDT -jdingeman,2023-03-22T23:35:45Z,- jdingeman opened issue: [4250](https://github.com/hackforla/website/issues/4250) at 2023-03-22 04:35 PM PDT -jdingeman,2023-03-22T23:36:52Z,- jdingeman commented on issue: [4243](https://github.com/hackforla/website/issues/4243#issuecomment-1480389152) at 2023-03-22 04:36 PM PDT -jdingeman,2023-03-22T23:56:35Z,- jdingeman opened issue: [4251](https://github.com/hackforla/website/issues/4251) at 2023-03-22 04:56 PM PDT -jdingeman,2023-03-22T23:57:08Z,- jdingeman commented on issue: [4243](https://github.com/hackforla/website/issues/4243#issuecomment-1480401316) at 2023-03-22 04:57 PM PDT -jdingeman,2023-03-22T23:59:52Z,- jdingeman commented on issue: [4243](https://github.com/hackforla/website/issues/4243#issuecomment-1480403113) at 2023-03-22 04:59 PM PDT -jdingeman,2023-03-22T23:59:57Z,- jdingeman closed issue as completed: [4243](https://github.com/hackforla/website/issues/4243#event-8822135974) at 2023-03-22 04:59 PM PDT -jdingeman,2023-03-23T00:03:33Z,- jdingeman commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480406046) at 2023-03-22 05:03 PM PDT -jdingeman,2023-03-23T00:08:05Z,- jdingeman commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1480409416) at 2023-03-22 05:08 PM PDT -jdingeman,2023-03-23T00:12:50Z,- jdingeman commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1480412553) at 2023-03-22 05:12 PM PDT -jdingeman,2023-03-23T00:14:23Z,- jdingeman commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1480413398) at 2023-03-22 05:14 PM PDT -jdingeman,2023-03-23T01:42:01Z,- jdingeman commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1480465389) at 2023-03-22 06:42 PM PDT -jdingeman,2023-03-23T01:47:28Z,- jdingeman commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1480468258) at 2023-03-22 06:47 PM PDT -jdingeman,2023-03-23T15:45:45Z,- jdingeman commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1481430741) at 2023-03-23 08:45 AM PDT -jdingeman,2023-03-23T15:50:03Z,- jdingeman commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1481437935) at 2023-03-23 08:50 AM PDT -jdingeman,2023-03-24T00:34:11Z,- jdingeman commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1482089887) at 2023-03-23 05:34 PM PDT -jdingeman,2023-03-24T00:34:54Z,- jdingeman commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482090295) at 2023-03-23 05:34 PM PDT -jdingeman,2023-03-24T01:06:29Z,- jdingeman opened issue: [4268](https://github.com/hackforla/website/issues/4268) at 2023-03-23 06:06 PM PDT -jdingeman,2023-03-24T01:07:39Z,- jdingeman commented on issue: [4246](https://github.com/hackforla/website/issues/4246#issuecomment-1482111267) at 2023-03-23 06:07 PM PDT -jdingeman,2023-03-24T01:07:39Z,- jdingeman closed issue as completed: [4246](https://github.com/hackforla/website/issues/4246#event-8833769269) at 2023-03-23 06:07 PM PDT -jdingeman,2023-03-24T01:19:37Z,- jdingeman opened issue: [4269](https://github.com/hackforla/website/issues/4269) at 2023-03-23 06:19 PM PDT -jdingeman,2023-03-24T01:19:51Z,- jdingeman commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482121982) at 2023-03-23 06:19 PM PDT -jdingeman,2023-03-24T01:19:51Z,- jdingeman closed issue as completed: [4240](https://github.com/hackforla/website/issues/4240#event-8833840932) at 2023-03-23 06:19 PM PDT -jdingeman,2023-03-24T01:39:04Z,- jdingeman opened issue: [4271](https://github.com/hackforla/website/issues/4271) at 2023-03-23 06:39 PM PDT -jdingeman,2023-03-24T01:39:20Z,- jdingeman commented on issue: [4247](https://github.com/hackforla/website/issues/4247#issuecomment-1482133460) at 2023-03-23 06:39 PM PDT -jdingeman,2023-03-24T01:39:20Z,- jdingeman closed issue as completed: [4247](https://github.com/hackforla/website/issues/4247#event-8833916584) at 2023-03-23 06:39 PM PDT -jdingeman,2023-03-24T01:45:36Z,- jdingeman commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1482136903) at 2023-03-23 06:45 PM PDT -jdingeman,2023-03-24T01:49:50Z,- jdingeman commented on issue: [4193](https://github.com/hackforla/website/issues/4193#issuecomment-1482139176) at 2023-03-23 06:49 PM PDT -jdingeman,2023-03-24T01:50:36Z,- jdingeman commented on issue: [4230](https://github.com/hackforla/website/issues/4230#issuecomment-1482139535) at 2023-03-23 06:50 PM PDT -jdingeman,2023-03-24T04:09:05Z,- jdingeman commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482221715) at 2023-03-23 09:09 PM PDT -jdingeman,2023-03-24T04:10:01Z,- jdingeman commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482222324) at 2023-03-23 09:10 PM PDT -jdingeman,2023-03-24T04:39:00Z,- jdingeman commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482239048) at 2023-03-23 09:39 PM PDT -jdingeman,2023-03-24T15:29:59Z,- jdingeman commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482997940) at 2023-03-24 08:29 AM PDT -jdingeman,2023-03-27T17:54:56Z,- jdingeman commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1485580306) at 2023-03-27 10:54 AM PDT -jdingeman,2023-03-27T17:54:56Z,- jdingeman closed issue as completed: [3821](https://github.com/hackforla/website/issues/3821#event-8856847819) at 2023-03-27 10:54 AM PDT -jdingeman,2023-03-27T17:58:13Z,- jdingeman commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1485584784) at 2023-03-27 10:58 AM PDT -jdingeman,2023-03-27T18:28:35Z,- jdingeman commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1485660671) at 2023-03-27 11:28 AM PDT -jdingeman,2023-03-27T18:37:14Z,- jdingeman commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1485677273) at 2023-03-27 11:37 AM PDT -jdingeman,2023-03-27T22:06:58Z,- jdingeman commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1485921917) at 2023-03-27 03:06 PM PDT -jdingeman,2023-03-27T22:41:43Z,- jdingeman opened issue: [4296](https://github.com/hackforla/website/issues/4296) at 2023-03-27 03:41 PM PDT -jdingeman,2023-03-27T23:26:46Z,- jdingeman commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1485992783) at 2023-03-27 04:26 PM PDT -jdingeman,2023-03-29T00:48:48Z,- jdingeman assigned to issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1480038829) at 2023-03-28 05:48 PM PDT -jdingeman,2023-03-29T01:06:21Z,- jdingeman opened issue: [4307](https://github.com/hackforla/website/issues/4307) at 2023-03-28 06:06 PM PDT -jdingeman,2023-03-29T01:07:07Z,- jdingeman assigned to issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1487801664) at 2023-03-28 06:07 PM PDT -jdingeman,2023-03-29T03:36:00Z,- jdingeman commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1487899092) at 2023-03-28 08:36 PM PDT -jdingeman,2023-03-29T03:36:47Z,- jdingeman unassigned from issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1487790340) at 2023-03-28 08:36 PM PDT -jdingeman,2023-03-29T03:37:18Z,- jdingeman commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1487899719) at 2023-03-28 08:37 PM PDT -jdingeman,2023-03-29T21:53:29Z,- jdingeman commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1489378210) at 2023-03-29 02:53 PM PDT -jdingeman,2023-03-29T21:55:34Z,- jdingeman commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1489380019) at 2023-03-29 02:55 PM PDT -jdingeman,2023-03-29T22:09:07Z,- jdingeman closed issue by PR 4278: [3922](https://github.com/hackforla/website/issues/3922#event-8881231199) at 2023-03-29 03:09 PM PDT -jdingeman,2023-03-29T22:09:41Z,- jdingeman closed issue by PR 4304: [3869](https://github.com/hackforla/website/issues/3869#event-8881234111) at 2023-03-29 03:09 PM PDT -jdingeman,2023-03-29T22:11:23Z,- jdingeman commented on pull request: [4338](https://github.com/hackforla/website/pull/4338#issuecomment-1489394943) at 2023-03-29 03:11 PM PDT -jdingeman,2023-03-29T22:14:20Z,- jdingeman commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1489399152) at 2023-03-29 03:14 PM PDT -jdingeman,2023-03-29T22:25:53Z,- jdingeman commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1489414630) at 2023-03-29 03:25 PM PDT -jdingeman,2023-03-29T22:25:53Z,- jdingeman closed issue as completed: [1478](https://github.com/hackforla/website/issues/1478#event-8881333605) at 2023-03-29 03:25 PM PDT -jdingeman,2023-03-30T00:46:02Z,- jdingeman commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1489527536) at 2023-03-29 05:46 PM PDT -jdingeman,2023-03-30T23:16:09Z,- jdingeman commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1491084690) at 2023-03-30 04:16 PM PDT -jdingeman,2023-03-30T23:55:35Z,- jdingeman opened issue: [4349](https://github.com/hackforla/website/issues/4349) at 2023-03-30 04:55 PM PDT -jdingeman,2023-03-30T23:57:18Z,- jdingeman commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1491107679) at 2023-03-30 04:57 PM PDT -jdingeman,2023-03-30T23:59:14Z,- jdingeman commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1491108948) at 2023-03-30 04:59 PM PDT -jdingeman,2023-03-31T00:36:58Z,- jdingeman opened issue: [4350](https://github.com/hackforla/website/issues/4350) at 2023-03-30 05:36 PM PDT -jdingeman,2023-03-31T00:37:28Z,- jdingeman commented on issue: [4350](https://github.com/hackforla/website/issues/4350#issuecomment-1491136769) at 2023-03-30 05:37 PM PDT -jdingeman,2023-03-31T00:37:55Z,- jdingeman commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-1491137028) at 2023-03-30 05:37 PM PDT -jdingeman,2023-03-31T00:54:50Z,- jdingeman opened issue: [4351](https://github.com/hackforla/website/issues/4351) at 2023-03-30 05:54 PM PDT -jdingeman,2023-03-31T00:55:33Z,- jdingeman commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1491145307) at 2023-03-30 05:55 PM PDT -jdingeman,2023-03-31T00:55:33Z,- jdingeman closed issue as completed: [4240](https://github.com/hackforla/website/issues/4240#event-8893049050) at 2023-03-30 05:55 PM PDT -jdingeman,2023-03-31T01:10:59Z,- jdingeman commented on issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1491154642) at 2023-03-30 06:10 PM PDT -jdingeman,2023-03-31T01:24:02Z,- jdingeman opened issue: [4352](https://github.com/hackforla/website/issues/4352) at 2023-03-30 06:24 PM PDT -jdingeman,2023-03-31T01:24:18Z,- jdingeman commented on issue: [4231](https://github.com/hackforla/website/issues/4231#issuecomment-1491163330) at 2023-03-30 06:24 PM PDT -jdingeman,2023-03-31T01:24:18Z,- jdingeman closed issue as completed: [4231](https://github.com/hackforla/website/issues/4231#event-8893167482) at 2023-03-30 06:24 PM PDT -jdingeman,2023-03-31T01:30:09Z,- jdingeman commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1491166498) at 2023-03-30 06:30 PM PDT -jdingeman,2023-03-31T01:32:18Z,- jdingeman closed issue as completed: [2651](https://github.com/hackforla/website/issues/2651#event-8893197675) at 2023-03-30 06:32 PM PDT -jdingeman,2023-03-31T22:33:39Z,- jdingeman commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1492682023) at 2023-03-31 03:33 PM PDT -jdingeman,2023-03-31T22:38:20Z,- jdingeman assigned to issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1492682023) at 2023-03-31 03:38 PM PDT -jdingeman,2023-03-31T22:49:34Z,- jdingeman unassigned from issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1492687713) at 2023-03-31 03:49 PM PDT -jdingeman,2023-03-31T22:51:04Z,- jdingeman assigned to issue: [4248](https://github.com/hackforla/website/issues/4248) at 2023-03-31 03:51 PM PDT -jdingeman,2023-03-31T22:51:21Z,- jdingeman commented on issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1492694483) at 2023-03-31 03:51 PM PDT -jdingeman,2023-03-31T23:18:21Z,- jdingeman opened issue: [4357](https://github.com/hackforla/website/issues/4357) at 2023-03-31 04:18 PM PDT -jdingeman,2023-03-31T23:18:44Z,- jdingeman commented on issue: [4232](https://github.com/hackforla/website/issues/4232#issuecomment-1492714592) at 2023-03-31 04:18 PM PDT -jdingeman,2023-03-31T23:18:44Z,- jdingeman closed issue as completed: [4232](https://github.com/hackforla/website/issues/4232#event-8902569610) at 2023-03-31 04:18 PM PDT -jdingeman,2023-03-31T23:21:21Z,- jdingeman commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1492715657) at 2023-03-31 04:21 PM PDT -jdingeman,2023-03-31T23:24:33Z,- jdingeman assigned to issue: [4285](https://github.com/hackforla/website/issues/4285) at 2023-03-31 04:24 PM PDT -jdingeman,2023-03-31T23:30:24Z,- jdingeman opened issue: [4358](https://github.com/hackforla/website/issues/4358) at 2023-03-31 04:30 PM PDT -jdingeman,2023-03-31T23:31:06Z,- jdingeman commented on issue: [4285](https://github.com/hackforla/website/issues/4285#issuecomment-1492719735) at 2023-03-31 04:31 PM PDT -jdingeman,2023-03-31T23:31:06Z,- jdingeman closed issue as completed: [4285](https://github.com/hackforla/website/issues/4285#event-8902622016) at 2023-03-31 04:31 PM PDT -jdingeman,2023-03-31T23:32:02Z,- jdingeman unassigned from issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1492694483) at 2023-03-31 04:32 PM PDT -jdingeman,2023-04-02T18:39:32Z,- jdingeman commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1493411546) at 2023-04-02 11:39 AM PDT -jdingeman,2023-04-02T18:46:21Z,- jdingeman opened issue: [4371](https://github.com/hackforla/website/issues/4371) at 2023-04-02 11:46 AM PDT -jdingeman,2023-04-02T19:34:19Z,- jdingeman opened pull request: [4372](https://github.com/hackforla/website/pull/4372) at 2023-04-02 12:34 PM PDT -jdingeman,2023-04-02T19:34:38Z,- jdingeman pull request merged: [4372](https://github.com/hackforla/website/pull/4372#event-8906980382) at 2023-04-02 12:34 PM PDT -jdingeman,2023-04-02T19:35:16Z,- jdingeman opened pull request: [4373](https://github.com/hackforla/website/pull/4373) at 2023-04-02 12:35 PM PDT -jdingeman,2023-04-02T19:35:24Z,- jdingeman pull request merged: [4373](https://github.com/hackforla/website/pull/4373#event-8906981519) at 2023-04-02 12:35 PM PDT -jdingeman,2023-04-03T17:59:35Z,- jdingeman assigned to issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494741922) at 2023-04-03 10:59 AM PDT -jdingeman,2023-04-04T22:15:46Z,- jdingeman assigned to issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1496666502) at 2023-04-04 03:15 PM PDT -jdingeman,2023-04-04T22:35:58Z,- jdingeman commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1496685534) at 2023-04-04 03:35 PM PDT -jdingeman,2023-04-04T22:51:45Z,- jdingeman commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1496696802) at 2023-04-04 03:51 PM PDT -jdingeman,2023-04-04T23:01:05Z,- jdingeman closed issue by PR 4374: [4366](https://github.com/hackforla/website/issues/4366#event-8929488329) at 2023-04-04 04:01 PM PDT -jdingeman,2023-04-04T23:02:09Z,- jdingeman closed issue by PR 4384: [4303](https://github.com/hackforla/website/issues/4303#event-8929493704) at 2023-04-04 04:02 PM PDT -jdingeman,2023-04-04T23:02:49Z,- jdingeman closed issue by PR 4402: [4377](https://github.com/hackforla/website/issues/4377#event-8929496689) at 2023-04-04 04:02 PM PDT -jdingeman,2023-04-04T23:04:29Z,- jdingeman closed issue by PR 4404: [4233](https://github.com/hackforla/website/issues/4233#event-8929503258) at 2023-04-04 04:04 PM PDT -jdingeman,2023-04-04T23:07:03Z,- jdingeman commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1496707322) at 2023-04-04 04:07 PM PDT -jdingeman,2023-04-04T23:08:38Z,- jdingeman submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1371909508) at 2023-04-04 04:08 PM PDT -jdingeman,2023-04-04T23:19:21Z,- jdingeman commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1496715092) at 2023-04-04 04:19 PM PDT -jdingeman,2023-04-04T23:29:49Z,- jdingeman commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1496721350) at 2023-04-04 04:29 PM PDT -jdingeman,2023-04-05T01:23:18Z,- jdingeman commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1496797628) at 2023-04-04 06:23 PM PDT -jdingeman,2023-04-05T01:43:01Z,- jdingeman opened issue: [4422](https://github.com/hackforla/website/issues/4422) at 2023-04-04 06:43 PM PDT -jdingeman,2023-04-05T01:43:42Z,- jdingeman commented on issue: [4343](https://github.com/hackforla/website/issues/4343#issuecomment-1496808550) at 2023-04-04 06:43 PM PDT -jdingeman,2023-04-05T01:43:42Z,- jdingeman closed issue as completed: [4343](https://github.com/hackforla/website/issues/4343#event-8930158515) at 2023-04-04 06:43 PM PDT -jdingeman,2023-04-05T01:59:08Z,- jdingeman opened issue: [4423](https://github.com/hackforla/website/issues/4423) at 2023-04-04 06:59 PM PDT -jdingeman,2023-04-05T02:00:17Z,- jdingeman commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1496818886) at 2023-04-04 07:00 PM PDT -jdingeman,2023-04-05T02:00:33Z,- jdingeman commented on issue: [4371](https://github.com/hackforla/website/issues/4371#issuecomment-1496819083) at 2023-04-04 07:00 PM PDT -jdingeman,2023-04-05T02:00:33Z,- jdingeman closed issue as completed: [4371](https://github.com/hackforla/website/issues/4371#event-8930227751) at 2023-04-04 07:00 PM PDT -jdingeman,2023-04-05T02:25:27Z,- jdingeman commented on issue: [4193](https://github.com/hackforla/website/issues/4193#issuecomment-1496832492) at 2023-04-04 07:25 PM PDT -jdingeman,2023-04-05T02:56:29Z,- jdingeman commented on issue: [4364](https://github.com/hackforla/website/issues/4364#issuecomment-1496851737) at 2023-04-04 07:56 PM PDT -jdingeman,2023-04-05T22:05:54Z,- jdingeman submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1373763170) at 2023-04-05 03:05 PM PDT -jdingeman,2023-04-06T01:38:01Z,- jdingeman closed issue by PR 4408: [4293](https://github.com/hackforla/website/issues/4293#event-8940852156) at 2023-04-05 06:38 PM PDT -jdingeman,2023-04-06T01:40:40Z,- jdingeman assigned to issue: [4367](https://github.com/hackforla/website/issues/4367) at 2023-04-05 06:40 PM PDT -jdingeman,2023-04-06T01:58:50Z,- jdingeman opened issue: [4426](https://github.com/hackforla/website/issues/4426) at 2023-04-05 06:58 PM PDT -jdingeman,2023-04-06T01:59:06Z,- jdingeman commented on issue: [4367](https://github.com/hackforla/website/issues/4367#issuecomment-1498388133) at 2023-04-05 06:59 PM PDT -jdingeman,2023-04-06T01:59:06Z,- jdingeman closed issue as completed: [4367](https://github.com/hackforla/website/issues/4367#event-8940931670) at 2023-04-05 06:59 PM PDT -jdingeman,2023-04-06T01:59:33Z,- jdingeman unassigned from issue: [4367](https://github.com/hackforla/website/issues/4367#event-8940931670) at 2023-04-05 06:59 PM PDT -jdingeman,2023-04-06T02:04:15Z,- jdingeman commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1498391783) at 2023-04-05 07:04 PM PDT -jdingeman,2023-04-06T02:44:02Z,- jdingeman opened issue: [4427](https://github.com/hackforla/website/issues/4427) at 2023-04-05 07:44 PM PDT -jdingeman,2023-04-06T02:44:53Z,- jdingeman commented on issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1498413761) at 2023-04-05 07:44 PM PDT -jdingeman,2023-04-06T02:44:53Z,- jdingeman closed issue as completed: [4261](https://github.com/hackforla/website/issues/4261#event-8941104878) at 2023-04-05 07:44 PM PDT -jdingeman,2023-04-06T02:51:28Z,- jdingeman closed issue by PR 4386: [4376](https://github.com/hackforla/website/issues/4376#event-8941129701) at 2023-04-05 07:51 PM PDT -jdingeman,2023-04-06T02:52:10Z,- jdingeman closed issue by PR 4421: [4397](https://github.com/hackforla/website/issues/4397#event-8941131888) at 2023-04-05 07:52 PM PDT -jdingeman,2023-04-06T02:52:53Z,- jdingeman closed issue by PR 4391: [4379](https://github.com/hackforla/website/issues/4379#event-8941134815) at 2023-04-05 07:52 PM PDT -jdingeman,2023-04-06T19:49:23Z,- jdingeman assigned to issue: [4261](https://github.com/hackforla/website/issues/4261#event-8949211505) at 2023-04-06 12:49 PM PDT -jdingeman,2023-04-07T01:53:54Z,- jdingeman commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1499839704) at 2023-04-06 06:53 PM PDT -jdingeman,2023-04-07T02:13:35Z,- jdingeman commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1499856927) at 2023-04-06 07:13 PM PDT -jdingeman,2023-04-07T02:33:05Z,- jdingeman commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1499866166) at 2023-04-06 07:33 PM PDT -jdingeman,2023-04-07T03:49:49Z,- jdingeman commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1499902196) at 2023-04-06 08:49 PM PDT -jdingeman,2023-04-07T03:58:59Z,- jdingeman submitted pull request review: [4412](https://github.com/hackforla/website/pull/4412#pullrequestreview-1375796614) at 2023-04-06 08:58 PM PDT -jdingeman,2023-04-07T03:59:08Z,- jdingeman closed issue by PR 4412: [4358](https://github.com/hackforla/website/issues/4358#event-8951284548) at 2023-04-06 08:59 PM PDT -jdingeman,2023-04-07T04:02:46Z,- jdingeman closed issue by PR 4424: [2670](https://github.com/hackforla/website/issues/2670#event-8951297637) at 2023-04-06 09:02 PM PDT -jdingeman,2023-04-07T04:03:37Z,- jdingeman closed issue by PR 4425: [4271](https://github.com/hackforla/website/issues/4271#event-8951300664) at 2023-04-06 09:03 PM PDT -jdingeman,2023-04-07T04:04:34Z,- jdingeman closed issue by PR 4428: [3746](https://github.com/hackforla/website/issues/3746#event-8951304151) at 2023-04-06 09:04 PM PDT -jdingeman,2023-04-07T04:05:13Z,- jdingeman closed issue by PR 4430: [4395](https://github.com/hackforla/website/issues/4395#event-8951306380) at 2023-04-06 09:05 PM PDT -jdingeman,2023-04-07T04:07:27Z,- jdingeman closed issue by PR 4433: [4302](https://github.com/hackforla/website/issues/4302#event-8951314461) at 2023-04-06 09:07 PM PDT -jdingeman,2023-04-07T19:05:06Z,- jdingeman commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1500556997) at 2023-04-07 12:05 PM PDT -jdingeman,2023-04-07T19:05:06Z,- jdingeman closed issue as completed: [3788](https://github.com/hackforla/website/issues/3788#event-8955568647) at 2023-04-07 12:05 PM PDT -jdingeman,2023-04-07T19:08:25Z,- jdingeman commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1500559354) at 2023-04-07 12:08 PM PDT -jdingeman,2023-04-07T19:09:40Z,- jdingeman commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1500560153) at 2023-04-07 12:09 PM PDT -jdingeman,2023-04-07T19:11:32Z,- jdingeman commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1500561284) at 2023-04-07 12:11 PM PDT -jdingeman,2023-04-07T19:15:50Z,- jdingeman commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1500566696) at 2023-04-07 12:15 PM PDT -jdingeman,2023-04-07T19:21:55Z,- jdingeman commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1500572120) at 2023-04-07 12:21 PM PDT -jdingeman,2023-04-07T19:21:55Z,- jdingeman closed issue as completed: [3919](https://github.com/hackforla/website/issues/3919#event-8955645245) at 2023-04-07 12:21 PM PDT -jdingeman,2023-04-07T19:24:59Z,- jdingeman commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1500573967) at 2023-04-07 12:24 PM PDT -jdingeman,2023-04-07T19:28:11Z,- jdingeman commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1500575994) at 2023-04-07 12:28 PM PDT -jdingeman,2023-04-07T19:32:16Z,- jdingeman commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1500578655) at 2023-04-07 12:32 PM PDT -jdingeman,2023-04-07T19:34:42Z,- jdingeman commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1500580195) at 2023-04-07 12:34 PM PDT -jdingeman,2023-04-07T19:35:42Z,- jdingeman commented on issue: [4064](https://github.com/hackforla/website/issues/4064#issuecomment-1500580830) at 2023-04-07 12:35 PM PDT -jdingeman,2023-04-07T19:35:42Z,- jdingeman closed issue as completed: [4064](https://github.com/hackforla/website/issues/4064#event-8955716051) at 2023-04-07 12:35 PM PDT -jdingeman,2023-04-07T19:36:35Z,- jdingeman commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1500581399) at 2023-04-07 12:36 PM PDT -jdingeman,2023-04-07T19:36:35Z,- jdingeman closed issue as completed: [4068](https://github.com/hackforla/website/issues/4068#event-8955720060) at 2023-04-07 12:36 PM PDT -jdingeman,2023-04-07T19:37:59Z,- jdingeman commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1500582310) at 2023-04-07 12:37 PM PDT -jdingeman,2023-04-07T19:39:53Z,- jdingeman commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1500583710) at 2023-04-07 12:39 PM PDT -jdingeman,2023-04-07T19:40:19Z,- jdingeman commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1500584058) at 2023-04-07 12:40 PM PDT -jdingeman,2023-04-07T19:42:04Z,- jdingeman commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1500585608) at 2023-04-07 12:42 PM PDT -jdingeman,2023-04-07T19:50:40Z,- jdingeman commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1500591610) at 2023-04-07 12:50 PM PDT -jdingeman,2023-04-07T19:54:11Z,- jdingeman commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1500593681) at 2023-04-07 12:54 PM PDT -jdingeman,2023-04-07T19:55:42Z,- jdingeman commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1500594598) at 2023-04-07 12:55 PM PDT -jdingeman,2023-04-07T19:59:26Z,- jdingeman commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1500597207) at 2023-04-07 12:59 PM PDT -jdingeman,2023-04-07T20:01:52Z,- jdingeman commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1500599236) at 2023-04-07 01:01 PM PDT -jdingeman,2023-04-07T20:01:52Z,- jdingeman closed issue as completed: [3789](https://github.com/hackforla/website/issues/3789#event-8955845021) at 2023-04-07 01:01 PM PDT -jdingeman,2023-04-08T00:54:41Z,- jdingeman commented on issue: [4193](https://github.com/hackforla/website/issues/4193#issuecomment-1500747169) at 2023-04-07 05:54 PM PDT -jdingeman,2023-04-08T01:44:02Z,- jdingeman opened issue: [4442](https://github.com/hackforla/website/issues/4442) at 2023-04-07 06:44 PM PDT -jdingeman,2023-04-08T01:45:28Z,- jdingeman commented on issue: [4193](https://github.com/hackforla/website/issues/4193#issuecomment-1500757891) at 2023-04-07 06:45 PM PDT -jdingeman,2023-04-08T01:45:28Z,- jdingeman closed issue as completed: [4193](https://github.com/hackforla/website/issues/4193#event-8956827354) at 2023-04-07 06:45 PM PDT -jdingeman,2023-04-08T01:54:32Z,- jdingeman commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1500760568) at 2023-04-07 06:54 PM PDT -jdingeman,2023-04-08T01:54:32Z,- jdingeman closed issue as completed: [4073](https://github.com/hackforla/website/issues/4073#event-8956839221) at 2023-04-07 06:54 PM PDT -jdingeman,2023-04-09T18:15:38Z,- jdingeman submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1376942202) at 2023-04-09 11:15 AM PDT -jdingeman,2023-04-10T22:09:55Z,- jdingeman commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1502392670) at 2023-04-10 03:09 PM PDT -jdingeman,2023-04-10T23:42:01Z,- jdingeman commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1502476036) at 2023-04-10 04:42 PM PDT -jdingeman,2023-04-10T23:49:06Z,- jdingeman opened pull request: [4462](https://github.com/hackforla/website/pull/4462) at 2023-04-10 04:49 PM PDT -jdingeman,2023-04-10T23:51:31Z,- jdingeman opened pull request: [4463](https://github.com/hackforla/website/pull/4463) at 2023-04-10 04:51 PM PDT -jdingeman,2023-04-10T23:53:43Z,- jdingeman opened pull request: [4464](https://github.com/hackforla/website/pull/4464) at 2023-04-10 04:53 PM PDT -jdingeman,2023-04-10T23:54:59Z,- jdingeman commented on issue: [4385](https://github.com/hackforla/website/issues/4385#issuecomment-1502483392) at 2023-04-10 04:54 PM PDT -jdingeman,2023-04-11T00:24:38Z,- jdingeman commented on issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1502510231) at 2023-04-10 05:24 PM PDT -jdingeman,2023-04-11T22:53:43Z,- jdingeman submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1380188853) at 2023-04-11 03:53 PM PDT -jdingeman,2023-04-11T22:53:51Z,- jdingeman closed issue by PR 4406: [4127](https://github.com/hackforla/website/issues/4127#event-8978772990) at 2023-04-11 03:53 PM PDT -jdingeman,2023-04-11T22:54:38Z,- jdingeman commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1504228800) at 2023-04-11 03:54 PM PDT -jdingeman,2023-04-11T23:25:33Z,- jdingeman commented on issue: [4369](https://github.com/hackforla/website/issues/4369#issuecomment-1504257906) at 2023-04-11 04:25 PM PDT -jdingeman,2023-04-11T23:34:00Z,- jdingeman commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1504266923) at 2023-04-11 04:34 PM PDT -jdingeman,2023-04-11T23:46:15Z,- jdingeman opened issue: [4469](https://github.com/hackforla/website/issues/4469) at 2023-04-11 04:46 PM PDT -jdingeman,2023-04-11T23:58:16Z,- jdingeman opened issue: [4470](https://github.com/hackforla/website/issues/4470) at 2023-04-11 04:58 PM PDT -jdingeman,2023-04-12T00:12:10Z,- jdingeman opened issue: [4471](https://github.com/hackforla/website/issues/4471) at 2023-04-11 05:12 PM PDT -jdingeman,2023-04-12T02:00:18Z,- jdingeman opened issue: [4473](https://github.com/hackforla/website/issues/4473) at 2023-04-11 07:00 PM PDT -jdingeman,2023-04-13T02:08:36Z,- jdingeman pull request merged: [4464](https://github.com/hackforla/website/pull/4464#event-8991682763) at 2023-04-12 07:08 PM PDT -jdingeman,2023-04-13T02:08:50Z,- jdingeman pull request merged: [4463](https://github.com/hackforla/website/pull/4463#event-8991683824) at 2023-04-12 07:08 PM PDT -jdingeman,2023-04-13T02:33:30Z,- jdingeman commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1506242829) at 2023-04-12 07:33 PM PDT -jdingeman,2023-04-13T03:07:57Z,- jdingeman commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1506267242) at 2023-04-12 08:07 PM PDT -jdingeman,2023-04-13T03:12:15Z,- jdingeman closed issue by PR 4467: [4258](https://github.com/hackforla/website/issues/4258#event-8992048582) at 2023-04-12 08:12 PM PDT -jdingeman,2023-04-13T03:14:07Z,- jdingeman closed issue by PR 4435: [4350](https://github.com/hackforla/website/issues/4350#event-8992057771) at 2023-04-12 08:14 PM PDT -jdingeman,2023-04-13T03:14:51Z,- jdingeman closed issue by PR 4437: [4225](https://github.com/hackforla/website/issues/4225#event-8992063300) at 2023-04-12 08:14 PM PDT -jdingeman,2023-04-13T03:15:55Z,- jdingeman closed issue by PR 4461: [4447](https://github.com/hackforla/website/issues/4447#event-8992069981) at 2023-04-12 08:15 PM PDT -jdingeman,2023-04-13T03:16:43Z,- jdingeman closed issue by PR 4453: [4446](https://github.com/hackforla/website/issues/4446#event-8992073791) at 2023-04-12 08:16 PM PDT -jdingeman,2023-04-13T03:17:51Z,- jdingeman closed issue by PR 4472: [4255](https://github.com/hackforla/website/issues/4255#event-8992080111) at 2023-04-12 08:17 PM PDT -jdingeman,2023-04-13T23:09:00Z,- jdingeman pull request merged: [4462](https://github.com/hackforla/website/pull/4462#event-9001958207) at 2023-04-13 04:09 PM PDT -jdingeman,2023-04-13T23:21:02Z,- jdingeman commented on issue: [4385](https://github.com/hackforla/website/issues/4385#issuecomment-1507722915) at 2023-04-13 04:21 PM PDT -jdingeman,2023-04-13T23:21:02Z,- jdingeman closed issue as completed: [4385](https://github.com/hackforla/website/issues/4385#event-9002023337) at 2023-04-13 04:21 PM PDT -jdingeman,2023-04-13T23:48:05Z,- jdingeman opened issue: [4505](https://github.com/hackforla/website/issues/4505) at 2023-04-13 04:48 PM PDT -jdingeman,2023-04-13T23:48:32Z,- jdingeman commented on issue: [4230](https://github.com/hackforla/website/issues/4230#issuecomment-1507737883) at 2023-04-13 04:48 PM PDT -jdingeman,2023-04-13T23:48:32Z,- jdingeman closed issue as completed: [4230](https://github.com/hackforla/website/issues/4230#event-9002124688) at 2023-04-13 04:48 PM PDT -jdingeman,2023-04-14T00:11:22Z,- jdingeman opened issue: [4506](https://github.com/hackforla/website/issues/4506) at 2023-04-13 05:11 PM PDT -jdingeman,2023-04-14T01:13:41Z,- jdingeman opened issue: [4508](https://github.com/hackforla/website/issues/4508) at 2023-04-13 06:13 PM PDT -jdingeman,2023-04-14T01:24:14Z,- jdingeman opened issue: [4509](https://github.com/hackforla/website/issues/4509) at 2023-04-13 06:24 PM PDT -jdingeman,2023-04-14T01:37:29Z,- jdingeman opened issue: [4510](https://github.com/hackforla/website/issues/4510) at 2023-04-13 06:37 PM PDT -jdingeman,2023-04-14T01:40:26Z,- jdingeman commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1507810513) at 2023-04-13 06:40 PM PDT -jdingeman,2023-04-15T02:02:30Z,- jdingeman commented on issue: [4352](https://github.com/hackforla/website/issues/4352#issuecomment-1509466182) at 2023-04-14 07:02 PM PDT -jdingeman,2023-04-15T02:03:09Z,- jdingeman commented on issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1509466298) at 2023-04-14 07:03 PM PDT -jdingeman,2023-04-15T02:05:33Z,- jdingeman commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1509467094) at 2023-04-14 07:05 PM PDT -jdingeman,2023-04-15T02:10:56Z,- jdingeman commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1509468696) at 2023-04-14 07:10 PM PDT -jdingeman,2023-04-17T23:35:18Z,- jdingeman commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1512237059) at 2023-04-17 04:35 PM PDT -jdingeman,2023-04-17T23:37:21Z,- jdingeman commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1512238227) at 2023-04-17 04:37 PM PDT -jdingeman,2023-04-17T23:38:44Z,- jdingeman commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1512239011) at 2023-04-17 04:38 PM PDT -jdingeman,2023-04-17T23:41:22Z,- jdingeman commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1512240500) at 2023-04-17 04:41 PM PDT -jdingeman,2023-04-17T23:43:32Z,- jdingeman commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1512241647) at 2023-04-17 04:43 PM PDT -jdingeman,2023-04-17T23:44:18Z,- jdingeman commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1512242094) at 2023-04-17 04:44 PM PDT -jdingeman,2023-04-17T23:46:14Z,- jdingeman commented on issue: [4090](https://github.com/hackforla/website/issues/4090#issuecomment-1512243343) at 2023-04-17 04:46 PM PDT -jdingeman,2023-04-17T23:46:14Z,- jdingeman closed issue as completed: [4090](https://github.com/hackforla/website/issues/4090#event-9030015929) at 2023-04-17 04:46 PM PDT -jdingeman,2023-04-17T23:48:59Z,- jdingeman commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1512244872) at 2023-04-17 04:48 PM PDT -jdingeman,2023-04-17T23:50:14Z,- jdingeman commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1512245574) at 2023-04-17 04:50 PM PDT -jdingeman,2023-04-17T23:53:28Z,- jdingeman commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1512247814) at 2023-04-17 04:53 PM PDT -jdingeman,2023-04-17T23:55:09Z,- jdingeman commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1512248778) at 2023-04-17 04:55 PM PDT -jdingeman,2023-04-17T23:55:09Z,- jdingeman closed issue as completed: [3917](https://github.com/hackforla/website/issues/3917#event-9030050316) at 2023-04-17 04:55 PM PDT -jdingeman,2023-04-17T23:56:35Z,- jdingeman commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1512249567) at 2023-04-17 04:56 PM PDT -jdingeman,2023-04-17T23:57:20Z,- jdingeman commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1512250154) at 2023-04-17 04:57 PM PDT -jdingeman,2023-04-18T01:36:33Z,- jdingeman commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1512313244) at 2023-04-17 06:36 PM PDT -jdingeman,2023-04-18T01:36:36Z,- jdingeman closed issue as completed: [4250](https://github.com/hackforla/website/issues/4250#event-9030468188) at 2023-04-17 06:36 PM PDT -jdingeman,2023-04-18T03:35:10Z,- jdingeman commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1512387138) at 2023-04-17 08:35 PM PDT -jdingeman,2023-04-18T03:39:55Z,- jdingeman commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1512389343) at 2023-04-17 08:39 PM PDT -jdingeman,2023-04-18T22:39:22Z,- jdingeman commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1513873050) at 2023-04-18 03:39 PM PDT -jdingeman,2023-04-21T01:19:44Z,- jdingeman commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1517123593) at 2023-04-20 06:19 PM PDT -jdingeman,2023-04-21T01:23:13Z,- jdingeman commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1517126326) at 2023-04-20 06:23 PM PDT -jdingeman,2023-04-21T01:28:17Z,- jdingeman commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1517129986) at 2023-04-20 06:28 PM PDT -jdingeman,2023-04-21T01:29:26Z,- jdingeman assigned to issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1512127207) at 2023-04-20 06:29 PM PDT -jdingeman,2023-04-21T01:42:08Z,- jdingeman assigned to issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1502510231) at 2023-04-20 06:42 PM PDT -jdingeman,2023-04-21T02:05:13Z,- jdingeman unassigned from issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1517139160) at 2023-04-20 07:05 PM PDT -jdingeman,2023-04-23T05:58:46Z,- jdingeman commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1518953059) at 2023-04-22 10:58 PM PDT -jdingeman,2023-04-24T22:04:44Z,- jdingeman commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1520889331) at 2023-04-24 03:04 PM PDT -jdingeman,2023-04-24T22:04:44Z,- jdingeman closed issue as completed: [3968](https://github.com/hackforla/website/issues/3968#event-9086193909) at 2023-04-24 03:04 PM PDT -jdingeman,2023-04-24T22:06:45Z,- jdingeman commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1520891565) at 2023-04-24 03:06 PM PDT -jdingeman,2023-04-24T22:08:37Z,- jdingeman commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1520893212) at 2023-04-24 03:08 PM PDT -jdingeman,2023-04-24T22:08:37Z,- jdingeman closed issue as completed: [3972](https://github.com/hackforla/website/issues/3972#event-9086219114) at 2023-04-24 03:08 PM PDT -jdingeman,2023-04-24T22:10:57Z,- jdingeman commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1520895072) at 2023-04-24 03:10 PM PDT -jdingeman,2023-04-24T22:10:57Z,- jdingeman closed issue as completed: [4065](https://github.com/hackforla/website/issues/4065#event-9086232147) at 2023-04-24 03:10 PM PDT -jdingeman,2023-04-24T22:13:38Z,- jdingeman commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1520897163) at 2023-04-24 03:13 PM PDT -jdingeman,2023-04-24T22:14:03Z,- jdingeman commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1520897468) at 2023-04-24 03:14 PM PDT -jdingeman,2023-04-24T22:14:47Z,- jdingeman commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1520897994) at 2023-04-24 03:14 PM PDT -jdingeman,2023-04-24T22:17:13Z,- jdingeman commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1520899726) at 2023-04-24 03:17 PM PDT -jdingeman,2023-04-24T22:18:05Z,- jdingeman commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1520900343) at 2023-04-24 03:18 PM PDT -jdingeman,2023-04-24T22:20:05Z,- jdingeman commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1520901783) at 2023-04-24 03:20 PM PDT -jdingeman,2023-04-24T22:20:08Z,- jdingeman closed issue as completed: [4069](https://github.com/hackforla/website/issues/4069#event-9086281754) at 2023-04-24 03:20 PM PDT -jdingeman,2023-04-24T22:20:45Z,- jdingeman commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1520902264) at 2023-04-24 03:20 PM PDT -jdingeman,2023-04-24T22:20:45Z,- jdingeman closed issue as completed: [3825](https://github.com/hackforla/website/issues/3825#event-9086285001) at 2023-04-24 03:20 PM PDT -jdingeman,2023-04-24T22:43:44Z,- jdingeman commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1520917267) at 2023-04-24 03:43 PM PDT -jdingeman,2023-04-24T22:53:20Z,- jdingeman commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1520923262) at 2023-04-24 03:53 PM PDT -jdingeman,2023-04-24T23:07:47Z,- jdingeman commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1520935726) at 2023-04-24 04:07 PM PDT -jdingeman,2023-04-25T00:15:06Z,- jdingeman closed issue as not planned: [3959](https://github.com/hackforla/website/issues/3959#event-9086822865) at 2023-04-24 05:15 PM PDT -jdingeman,2023-04-25T00:15:20Z,- jdingeman assigned to issue: [3959](https://github.com/hackforla/website/issues/3959#event-9086822865) at 2023-04-24 05:15 PM PDT -jdingeman,2023-04-25T00:15:56Z,- jdingeman commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1520983160) at 2023-04-24 05:15 PM PDT -jdingeman,2023-04-25T00:47:31Z,- jdingeman commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1521009484) at 2023-04-24 05:47 PM PDT -jdingeman,2023-04-25T01:29:32Z,- jdingeman opened issue: [4564](https://github.com/hackforla/website/issues/4564) at 2023-04-24 06:29 PM PDT -jdingeman,2023-04-25T01:30:23Z,- jdingeman commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1521033016) at 2023-04-24 06:30 PM PDT -jdingeman,2023-04-25T01:30:30Z,- jdingeman closed issue as completed: [4535](https://github.com/hackforla/website/issues/4535#event-9087106529) at 2023-04-24 06:30 PM PDT -jdingeman,2023-04-25T01:37:46Z,- jdingeman commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1521036461) at 2023-04-24 06:37 PM PDT -jdingeman,2023-04-25T02:14:12Z,- jdingeman commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1521058079) at 2023-04-24 07:14 PM PDT -jdingeman,2023-04-25T02:14:12Z,- jdingeman closed issue as not planned: [2652](https://github.com/hackforla/website/issues/2652#event-9087278250) at 2023-04-24 07:14 PM PDT -jdingeman,2023-04-25T02:18:20Z,- jdingeman assigned to issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1521036461) at 2023-04-24 07:18 PM PDT -jdingeman,2023-04-26T02:12:16Z,- jdingeman commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1522662538) at 2023-04-25 07:12 PM PDT -jdingeman,2023-04-26T02:16:24Z,- jdingeman commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1522665387) at 2023-04-25 07:16 PM PDT -jdingeman,2023-04-28T00:46:09Z,- jdingeman commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1526823489) at 2023-04-27 05:46 PM PDT -jdingeman,2023-04-28T01:06:50Z,- jdingeman opened issue: [4578](https://github.com/hackforla/website/issues/4578) at 2023-04-27 06:06 PM PDT -jdingeman,2023-04-28T01:11:33Z,- jdingeman opened issue: [4579](https://github.com/hackforla/website/issues/4579) at 2023-04-27 06:11 PM PDT -jdingeman,2023-04-28T01:11:57Z,- jdingeman commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1526842495) at 2023-04-27 06:11 PM PDT -jdingeman,2023-04-28T01:11:57Z,- jdingeman closed issue as completed: [4531](https://github.com/hackforla/website/issues/4531#event-9120044428) at 2023-04-27 06:11 PM PDT -jdingeman,2023-04-28T01:23:44Z,- jdingeman commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1526849487) at 2023-04-27 06:23 PM PDT -jdingeman,2023-04-28T02:18:10Z,- jdingeman commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1526884522) at 2023-04-27 07:18 PM PDT -jdingeman,2023-04-28T02:38:53Z,- jdingeman assigned to issue: [4531](https://github.com/hackforla/website/issues/4531#event-9120044428) at 2023-04-27 07:38 PM PDT -jdingeman,2023-04-30T03:32:48Z,- jdingeman commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1528930108) at 2023-04-29 08:32 PM PDT -jdingeman,2023-04-30T17:21:30Z,- jdingeman commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1529085789) at 2023-04-30 10:21 AM PDT -jdingeman,2023-04-30T17:24:46Z,- jdingeman closed issue by PR 4569: [4401](https://github.com/hackforla/website/issues/4401#event-9132683919) at 2023-04-30 10:24 AM PDT -jdingeman,2023-04-30T19:40:10Z,- jdingeman opened issue: [4585](https://github.com/hackforla/website/issues/4585) at 2023-04-30 12:40 PM PDT -jdingeman,2023-05-02T23:21:42Z,- jdingeman commented on issue: [3990](https://github.com/hackforla/website/issues/3990#issuecomment-1532271719) at 2023-05-02 04:21 PM PDT -jdingeman,2023-05-02T23:21:42Z,- jdingeman closed issue as completed: [3990](https://github.com/hackforla/website/issues/3990#event-9150542365) at 2023-05-02 04:21 PM PDT -jdingeman,2023-06-06T01:19:45Z,- jdingeman unassigned from issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1530021507) at 2023-06-05 06:19 PM PDT -jdingeman,2023-07-23T09:23:33Z,- jdingeman unassigned from issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1499303662) at 2023-07-23 02:23 AM PDT -jdingeman,2023-09-24T16:38:09Z,- jdingeman unassigned from issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1670539995) at 2023-09-24 09:38 AM PDT -JeannyRen,2022-03-07T20:20:09Z,- JeannyRen opened issue: [2936](https://github.com/hackforla/website/issues/2936) at 2022-03-07 12:20 PM PST -JeannyRen,2022-03-07T20:28:22Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1061104838) at 2022-03-07 12:28 PM PST -JeannyRen,2022-03-08T23:15:42Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1062353923) at 2022-03-08 03:15 PM PST -JeannyRen,2022-03-10T22:03:24Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1064546377) at 2022-03-10 02:03 PM PST -JeannyRen,2022-03-22T01:21:08Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1074585754) at 2022-03-21 06:21 PM PDT -JeannyRen,2022-03-26T14:32:53Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1079706165) at 2022-03-26 07:32 AM PDT -JeannyRen,2022-03-26T15:43:41Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1079719021) at 2022-03-26 08:43 AM PDT -JeannyRen,2022-03-31T17:25:39Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1084892923) at 2022-03-31 10:25 AM PDT -JeannyRen,2022-04-01T17:05:33Z,- JeannyRen commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1086144438) at 2022-04-01 10:05 AM PDT -jefflueck,4090,SKILLS ISSUE -jefflueck,2023-03-02T17:59:37Z,- jefflueck opened issue: [4090](https://github.com/hackforla/website/issues/4090) at 2023-03-02 09:59 AM PST -jefflueck,2023-03-02T18:16:57Z,- jefflueck assigned to issue: [4090](https://github.com/hackforla/website/issues/4090) at 2023-03-02 10:16 AM PST -jefflueck,2023-03-02T18:27:32Z,- jefflueck assigned to issue: [4040](https://github.com/hackforla/website/issues/4040) at 2023-03-02 10:27 AM PST -jefflueck,2023-03-02T18:30:18Z,- jefflueck commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1452346513) at 2023-03-02 10:30 AM PST -jefflueck,2023-03-03T15:28:05Z,- jefflueck closed issue by PR 4100: [4040](https://github.com/hackforla/website/issues/4040#event-8660878088) at 2023-03-03 07:28 AM PST -jefflueck,2023-03-03T15:35:49Z,- jefflueck commented on issue: [4090](https://github.com/hackforla/website/issues/4090#issuecomment-1453710474) at 2023-03-03 07:35 AM PST -jefflueck,2023-03-03T16:54:42Z,- jefflueck opened pull request: [4100](https://github.com/hackforla/website/pull/4100) at 2023-03-03 08:54 AM PST -jefflueck,2023-03-03T17:40:42Z,- jefflueck submitted pull request review: [4096](https://github.com/hackforla/website/pull/4096#pullrequestreview-1324358632) at 2023-03-03 09:40 AM PST -jefflueck,2023-03-05T18:41:10Z,- jefflueck commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1455169885) at 2023-03-05 10:41 AM PST -jefflueck,2023-03-05T20:45:54Z,- jefflueck pull request merged: [4100](https://github.com/hackforla/website/pull/4100#event-8668654950) at 2023-03-05 12:45 PM PST -jefflueck,2023-03-07T22:02:26Z,- jefflueck assigned to issue: [4047](https://github.com/hackforla/website/issues/4047) at 2023-03-07 02:02 PM PST -jefflueck,2023-03-07T22:18:12Z,- jefflueck commented on issue: [4047](https://github.com/hackforla/website/issues/4047#issuecomment-1458950358) at 2023-03-07 02:18 PM PST -jefflueck,2023-03-07T22:44:17Z,- jefflueck opened pull request: [4126](https://github.com/hackforla/website/pull/4126) at 2023-03-07 02:44 PM PST -jefflueck,2023-03-07T22:58:25Z,- jefflueck submitted pull request review: [4121](https://github.com/hackforla/website/pull/4121#pullrequestreview-1329685375) at 2023-03-07 02:58 PM PST -jefflueck,2023-03-07T23:00:57Z,- jefflueck submitted pull request review: [4119](https://github.com/hackforla/website/pull/4119#pullrequestreview-1329687990) at 2023-03-07 03:00 PM PST -jefflueck,2023-03-09T03:54:51Z,- jefflueck pull request merged: [4126](https://github.com/hackforla/website/pull/4126#event-8702934443) at 2023-03-08 07:54 PM PST -jefflueck,2023-03-14T15:41:38Z,- jefflueck submitted pull request review: [4150](https://github.com/hackforla/website/pull/4150#pullrequestreview-1339608657) at 2023-03-14 08:41 AM PDT -jefflueck,2023-03-14T15:50:15Z,- jefflueck assigned to issue: [4111](https://github.com/hackforla/website/issues/4111) at 2023-03-14 08:50 AM PDT -jefflueck,2023-03-14T15:53:43Z,- jefflueck commented on issue: [4111](https://github.com/hackforla/website/issues/4111#issuecomment-1468367643) at 2023-03-14 08:53 AM PDT -jefflueck,2023-03-14T16:23:25Z,- jefflueck opened pull request: [4178](https://github.com/hackforla/website/pull/4178) at 2023-03-14 09:23 AM PDT -jefflueck,2023-03-15T20:47:25Z,- jefflueck commented on pull request: [4178](https://github.com/hackforla/website/pull/4178#issuecomment-1470817197) at 2023-03-15 01:47 PM PDT -jefflueck,2023-03-17T05:15:06Z,- jefflueck pull request merged: [4178](https://github.com/hackforla/website/pull/4178#event-8774449675) at 2023-03-16 10:15 PM PDT -jefflueck,2023-03-22T19:43:27Z,- jefflueck submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1353366675) at 2023-03-22 12:43 PM PDT -jefflueck,2023-03-22T19:46:21Z,- jefflueck submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1353370384) at 2023-03-22 12:46 PM PDT -jefflueck,2023-03-22T20:13:15Z,- jefflueck submitted pull request review: [4215](https://github.com/hackforla/website/pull/4215#pullrequestreview-1353406436) at 2023-03-22 01:13 PM PDT -jefflueck,2023-03-29T15:38:28Z,- jefflueck assigned to issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1485584784) at 2023-03-29 08:38 AM PDT -jefflueck,2023-03-29T15:42:10Z,- jefflueck commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1488865736) at 2023-03-29 08:42 AM PDT -jefflueck,2023-03-29T15:48:19Z,- jefflueck commented on issue: [4090](https://github.com/hackforla/website/issues/4090#issuecomment-1488873729) at 2023-03-29 08:48 AM PDT -jefflueck,2023-04-01T16:54:55Z,- jefflueck commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1493043936) at 2023-04-01 09:54 AM PDT -jefflueck,2023-04-01T17:11:57Z,- jefflueck opened pull request: [4361](https://github.com/hackforla/website/pull/4361) at 2023-04-01 10:11 AM PDT -jefflueck,2023-04-02T04:28:17Z,- jefflueck pull request merged: [4361](https://github.com/hackforla/website/pull/4361#event-8905724365) at 2023-04-01 09:28 PM PDT -jefflueck,2023-04-05T19:05:12Z,- jefflueck commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1497981902) at 2023-04-05 12:05 PM PDT -jefflueck,2023-04-05T19:31:05Z,- jefflueck commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498010242) at 2023-04-05 12:31 PM PDT -jefflueck,2023-04-05T21:42:32Z,- jefflueck commented on pull request: [4408](https://github.com/hackforla/website/pull/4408#issuecomment-1498196806) at 2023-04-05 02:42 PM PDT -jefflueck,2023-04-05T21:43:36Z,- jefflueck submitted pull request review: [4408](https://github.com/hackforla/website/pull/4408#pullrequestreview-1373736826) at 2023-04-05 02:43 PM PDT -jefflueck,2023-04-05T21:53:11Z,- jefflueck assigned to issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-950398947) at 2023-04-05 02:53 PM PDT -jefflueck,2023-04-05T21:55:52Z,- jefflueck unassigned from issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1498205598) at 2023-04-05 02:55 PM PDT -jefflueck,2023-04-07T19:12:08Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1500561702) at 2023-04-07 12:12 PM PDT -jefflueck,2023-04-08T18:44:18Z,- jefflueck assigned to issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1500561702) at 2023-04-08 11:44 AM PDT -jefflueck,2023-04-08T18:46:15Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1500953870) at 2023-04-08 11:46 AM PDT -jefflueck,2023-04-16T18:47:19Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1510456749) at 2023-04-16 11:47 AM PDT -jefflueck,2023-04-17T01:38:37Z,- jefflueck submitted pull request review: [4519](https://github.com/hackforla/website/pull/4519#pullrequestreview-1387138376) at 2023-04-16 06:38 PM PDT -jefflueck,2023-04-25T19:34:14Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1522315347) at 2023-04-25 12:34 PM PDT -jefflueck,2023-05-04T15:47:22Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1535012539) at 2023-05-04 08:47 AM PDT -jefflueck,2023-05-24T02:19:44Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1560366142) at 2023-05-23 07:19 PM PDT -jefflueck,2023-06-09T22:11:29Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1585181743) at 2023-06-09 03:11 PM PDT -jefflueck,2023-06-19T17:27:28Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1597523441) at 2023-06-19 10:27 AM PDT -jefflueck,2023-06-21T18:33:15Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1601377316) at 2023-06-21 11:33 AM PDT -jefflueck,2023-06-21T18:40:22Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1601385762) at 2023-06-21 11:40 AM PDT -jefflueck,2023-07-15T20:20:49Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1636879002) at 2023-07-15 01:20 PM PDT -jefflueck,2023-07-15T20:21:03Z,- jefflueck unassigned from issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1636879002) at 2023-07-15 01:21 PM PDT -jefflueck,2023-07-16T17:29:21Z,- jefflueck assigned to issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1637136730) at 2023-07-16 10:29 AM PDT -jefflueck,2023-08-14T04:57:34Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1676678879) at 2023-08-13 09:57 PM PDT -jefflueck,2023-09-05T18:12:31Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1707085335) at 2023-09-05 11:12 AM PDT -jefflueck,2023-09-10T18:19:16Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1712904125) at 2023-09-10 11:19 AM PDT -jefflueck,2023-09-14T23:58:50Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1720301817) at 2023-09-14 04:58 PM PDT -jefflueck,2023-10-22T18:05:51Z,- jefflueck assigned to issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1774159530) at 2023-10-22 11:05 AM PDT -jefflueck,2023-10-23T16:57:43Z,- jefflueck commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1775622373) at 2023-10-23 09:57 AM PDT -jefflueck,2023-10-23T16:58:07Z,- jefflueck unassigned from issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1775622373) at 2023-10-23 09:58 AM PDT -jefflueck,2023-10-23T16:59:24Z,- jefflueck commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1775625079) at 2023-10-23 09:59 AM PDT -jefflueck,2023-10-23T16:59:36Z,- jefflueck unassigned from issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1775625079) at 2023-10-23 09:59 AM PDT -Jeffreyp1,8130,SKILLS ISSUE -Jeffreyp1,2025-05-14T02:51:57Z,- Jeffreyp1 opened issue: [8130](https://github.com/hackforla/website/issues/8130) at 2025-05-13 07:51 PM PDT -Jeffreyp1,2025-05-14T02:52:04Z,- Jeffreyp1 assigned to issue: [8130](https://github.com/hackforla/website/issues/8130) at 2025-05-13 07:52 PM PDT -Jeffreyp1,2025-05-23T02:20:02Z,- Jeffreyp1 assigned to issue: [7792](https://github.com/hackforla/website/issues/7792) at 2025-05-22 07:20 PM PDT -Jeffreyp1,2025-05-23T03:42:15Z,- Jeffreyp1 commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-2903155811) at 2025-05-22 08:42 PM PDT -Jeffreyp1,2025-05-23T03:43:10Z,- Jeffreyp1 commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-2903156709) at 2025-05-22 08:43 PM PDT -Jeffreyp1,2025-06-08T07:20:40Z,- Jeffreyp1 opened pull request: [8173](https://github.com/hackforla/website/pull/8173) at 2025-06-08 12:20 AM PDT -jenjen26,2021-10-21T17:50:34Z,- jenjen26 commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-948864214) at 2021-10-21 10:50 AM PDT -jenjen26,2021-11-06T15:59:56Z,- jenjen26 assigned to issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-961445700) at 2021-11-06 07:59 AM PST -jenjen26,2021-11-09T16:24:15Z,- jenjen26 commented on issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-964313491) at 2021-11-09 08:24 AM PST -jenjen26,2021-11-09T19:00:44Z,- jenjen26 assigned to issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-939408739) at 2021-11-09 11:00 AM PST -jenjen26,2021-11-09T19:03:18Z,- jenjen26 commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-964446934) at 2021-11-09 11:03 AM PST -jenjen26,2021-11-14T05:58:21Z,- jenjen26 commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-968212289) at 2021-11-13 09:58 PM PST -jenjen26,2021-11-19T18:42:39Z,- jenjen26 commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-974316773) at 2021-11-19 10:42 AM PST -jenjen26,2021-11-22T17:46:14Z,- jenjen26 assigned to issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-929347339) at 2021-11-22 09:46 AM PST -jenjen26,2021-11-22T17:50:01Z,- jenjen26 commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-975773498) at 2021-11-22 09:50 AM PST -jenjen26,2021-11-30T20:52:13Z,- jenjen26 assigned to issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-971810270) at 2021-11-30 12:52 PM PST -jenjen26,2021-11-30T20:53:34Z,- jenjen26 commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-983011382) at 2021-11-30 12:53 PM PST -jenjen26,2021-12-02T22:16:11Z,- jenjen26 commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-985045742) at 2021-12-02 02:16 PM PST -jenjen26,2021-12-06T21:29:16Z,- jenjen26 commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-987241947) at 2021-12-06 01:29 PM PST -jenjen26,2021-12-08T17:26:21Z,- jenjen26 commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-989018658) at 2021-12-08 09:26 AM PST -jenjen26,2021-12-10T21:00:43Z,- jenjen26 commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-991289933) at 2021-12-10 01:00 PM PST -jenjen26,2021-12-10T21:06:10Z,- jenjen26 assigned to issue: [2066](https://github.com/hackforla/website/issues/2066) at 2021-12-10 01:06 PM PST -jenjen26,2021-12-11T19:18:57Z,- jenjen26 unassigned from issue: [2066](https://github.com/hackforla/website/issues/2066) at 2021-12-11 11:18 AM PST -jenjen26,2021-12-14T23:29:40Z,- jenjen26 assigned to issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-990395004) at 2021-12-14 03:29 PM PST -jenjen26,2021-12-23T16:38:32Z,- jenjen26 commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1000415184) at 2021-12-23 08:38 AM PST -jenjen26,2022-01-03T03:40:56Z,- jenjen26 commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1003853398) at 2022-01-02 07:40 PM PST -jenjen26,2022-01-03T03:53:51Z,- jenjen26 commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1003855066) at 2022-01-02 07:53 PM PST -jenjen26,2022-01-03T04:00:48Z,- jenjen26 commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1003855978) at 2022-01-02 08:00 PM PST -jenjen26,2022-01-05T20:37:12Z,- jenjen26 assigned to issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1005970422) at 2022-01-05 12:37 PM PST -jenjen26,2022-01-05T20:46:28Z,- jenjen26 commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1006064756) at 2022-01-05 12:46 PM PST -jenjen26,2022-01-07T00:33:09Z,- jenjen26 commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1007043460) at 2022-01-06 04:33 PM PST -jenjen26,2022-01-07T00:34:39Z,- jenjen26 closed issue as completed: [2567](https://github.com/hackforla/website/issues/2567#event-5855297898) at 2022-01-06 04:34 PM PST -jenjen26,2022-01-12T22:02:48Z,- jenjen26 commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1011491729) at 2022-01-12 02:02 PM PST -jenjen26,2022-01-14T20:30:07Z,- jenjen26 commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1013453180) at 2022-01-14 12:30 PM PST -jenjen26,2022-01-20T19:42:52Z,- jenjen26 commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1017859165) at 2022-01-20 11:42 AM PST -jenjen26,2022-01-20T19:57:49Z,- jenjen26 commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1017870005) at 2022-01-20 11:57 AM PST -jenjen26,2022-01-27T19:01:26Z,- jenjen26 commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1023546239) at 2022-01-27 11:01 AM PST -jenjen26,2022-02-10T19:32:29Z,- jenjen26 assigned to issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-999094773) at 2022-02-10 11:32 AM PST -jenjen26,2022-02-10T19:32:39Z,- jenjen26 assigned to issue: [2570](https://github.com/hackforla/website/issues/2570#issuecomment-990393352) at 2022-02-10 11:32 AM PST -jenjen26,2022-02-24T18:53:06Z,- jenjen26 commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1050158878) at 2022-02-24 10:53 AM PST -jenjen26,2022-02-24T18:54:17Z,- jenjen26 commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1050159829) at 2022-02-24 10:54 AM PST -jenjen26,2022-02-24T18:54:36Z,- jenjen26 commented on issue: [2570](https://github.com/hackforla/website/issues/2570#issuecomment-1050160062) at 2022-02-24 10:54 AM PST -jenjen26,2022-04-13T21:45:51Z,- jenjen26 assigned to issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1012839202) at 2022-04-13 02:45 PM PDT -jenjen26,2022-04-14T20:31:25Z,- jenjen26 unassigned from issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1099594508) at 2022-04-14 01:31 PM PDT -jenjen26,2022-04-24T20:49:30Z,- jenjen26 unassigned from issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1012839202) at 2022-04-24 01:49 PM PDT -jenjen26,2022-10-12T16:50:05Z,- jenjen26 unassigned from issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1276460970) at 2022-10-12 09:50 AM PDT -jenjenkayi,6350,SKILLS ISSUE -jenjenkayi,2024-02-21T18:31:11Z,- jenjenkayi opened issue: [6350](https://github.com/hackforla/website/issues/6350) at 2024-02-21 10:31 AM PST -jenjenkayi,2024-02-21T18:31:20Z,- jenjenkayi assigned to issue: [6350](https://github.com/hackforla/website/issues/6350) at 2024-02-21 10:31 AM PST -jenjenkayi,2024-04-08T22:52:39Z,- jenjenkayi assigned to issue: [6511](https://github.com/hackforla/website/issues/6511#issuecomment-2016940239) at 2024-04-08 03:52 PM PDT -jenjenkayi,2024-04-08T22:55:13Z,- jenjenkayi commented on issue: [6511](https://github.com/hackforla/website/issues/6511#issuecomment-2043769924) at 2024-04-08 03:55 PM PDT -jenjenkayi,2024-04-09T20:40:56Z,- jenjenkayi opened pull request: [6613](https://github.com/hackforla/website/pull/6613) at 2024-04-09 01:40 PM PDT -jenjenkayi,2024-04-11T17:26:25Z,- jenjenkayi commented on pull request: [6613](https://github.com/hackforla/website/pull/6613#issuecomment-2050165451) at 2024-04-11 10:26 AM PDT -jenjenkayi,2024-04-11T17:28:03Z,- jenjenkayi closed issue as completed: [6350](https://github.com/hackforla/website/issues/6350#event-12439590046) at 2024-04-11 10:28 AM PDT -jenjenkayi,2024-04-11T23:37:11Z,- jenjenkayi pull request merged: [6613](https://github.com/hackforla/website/pull/6613#event-12442743178) at 2024-04-11 04:37 PM PDT -jenjenkayi,2024-04-17T19:38:37Z,- jenjenkayi assigned to issue: [6191](https://github.com/hackforla/website/issues/6191#issuecomment-1913796977) at 2024-04-17 12:38 PM PDT -jenjenkayi,2024-04-18T17:20:49Z,- jenjenkayi commented on issue: [6191](https://github.com/hackforla/website/issues/6191#issuecomment-2064637259) at 2024-04-18 10:20 AM PDT -jenjenkayi,2024-04-18T21:05:47Z,- jenjenkayi opened pull request: [6682](https://github.com/hackforla/website/pull/6682) at 2024-04-18 02:05 PM PDT -jenjenkayi,2024-04-21T18:07:43Z,- jenjenkayi pull request merged: [6682](https://github.com/hackforla/website/pull/6682#event-12551593400) at 2024-04-21 11:07 AM PDT -jenjenkayi,2024-04-23T17:49:10Z,- jenjenkayi assigned to issue: [6700](https://github.com/hackforla/website/issues/6700) at 2024-04-23 10:49 AM PDT -jenjenkayi,2024-04-24T03:41:08Z,- jenjenkayi commented on issue: [6700](https://github.com/hackforla/website/issues/6700#issuecomment-2073963757) at 2024-04-23 08:41 PM PDT -jenjenkayi,2024-04-24T20:15:32Z,- jenjenkayi opened pull request: [6746](https://github.com/hackforla/website/pull/6746) at 2024-04-24 01:15 PM PDT -jenjenkayi,2024-04-29T22:02:48Z,- jenjenkayi pull request merged: [6746](https://github.com/hackforla/website/pull/6746#event-12649690025) at 2024-04-29 03:02 PM PDT -jenjenkayi,2024-04-30T21:00:32Z,- jenjenkayi submitted pull request review: [6791](https://github.com/hackforla/website/pull/6791#pullrequestreview-2032515182) at 2024-04-30 02:00 PM PDT -jenjenkayi,2024-05-01T21:58:42Z,- jenjenkayi assigned to issue: [6705](https://github.com/hackforla/website/issues/6705) at 2024-05-01 02:58 PM PDT -jenjenkayi,2024-05-01T22:02:00Z,- jenjenkayi commented on issue: [6705](https://github.com/hackforla/website/issues/6705#issuecomment-2089204574) at 2024-05-01 03:02 PM PDT -jenjenkayi,2024-05-02T21:47:28Z,- jenjenkayi opened pull request: [6808](https://github.com/hackforla/website/pull/6808) at 2024-05-02 02:47 PM PDT -jenjenkayi,2024-05-03T20:55:10Z,- jenjenkayi pull request merged: [6808](https://github.com/hackforla/website/pull/6808#event-12701068275) at 2024-05-03 01:55 PM PDT -jenjenkayi,2024-05-03T21:38:03Z,- jenjenkayi commented on pull request: [6810](https://github.com/hackforla/website/pull/6810#issuecomment-2093796610) at 2024-05-03 02:38 PM PDT -jenjenkayi,2024-05-03T21:53:13Z,- jenjenkayi submitted pull request review: [6810](https://github.com/hackforla/website/pull/6810#pullrequestreview-2039041147) at 2024-05-03 02:53 PM PDT -jenjenkayi,2024-05-08T20:20:45Z,- jenjenkayi assigned to issue: [6717](https://github.com/hackforla/website/issues/6717) at 2024-05-08 01:20 PM PDT -jenjenkayi,2024-05-08T20:21:59Z,- jenjenkayi commented on issue: [6717](https://github.com/hackforla/website/issues/6717#issuecomment-2101361018) at 2024-05-08 01:21 PM PDT -jenjenkayi,2024-05-09T20:23:17Z,- jenjenkayi opened pull request: [6841](https://github.com/hackforla/website/pull/6841) at 2024-05-09 01:23 PM PDT -jenjenkayi,2024-05-10T21:39:43Z,- jenjenkayi pull request merged: [6841](https://github.com/hackforla/website/pull/6841#event-12774263978) at 2024-05-10 02:39 PM PDT -jenjenkayi,2024-05-21T20:27:21Z,- jenjenkayi assigned to issue: [6800](https://github.com/hackforla/website/issues/6800#issuecomment-2096906694) at 2024-05-21 01:27 PM PDT -jenjenkayi,2024-05-21T20:28:09Z,- jenjenkayi commented on issue: [6800](https://github.com/hackforla/website/issues/6800#issuecomment-2123388318) at 2024-05-21 01:28 PM PDT -jenjenkayi,2024-05-22T20:56:01Z,- jenjenkayi opened pull request: [6887](https://github.com/hackforla/website/pull/6887) at 2024-05-22 01:56 PM PDT -jenjenkayi,2024-05-29T17:46:33Z,- jenjenkayi pull request merged: [6887](https://github.com/hackforla/website/pull/6887#event-12975310567) at 2024-05-29 10:46 AM PDT -jenjenkayi,2024-09-20T21:14:51Z,- jenjenkayi commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2364626705) at 2024-09-20 02:14 PM PDT -jenjenkayi,2024-09-20T22:37:01Z,- jenjenkayi commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2364716098) at 2024-09-20 03:37 PM PDT -jenjenkayi,2024-10-01T21:30:30Z,- jenjenkayi assigned to issue: [7442](https://github.com/hackforla/website/issues/7442#issuecomment-2367108207) at 2024-10-01 02:30 PM PDT -jenjenkayi,2024-10-02T21:29:29Z,- jenjenkayi opened pull request: [7558](https://github.com/hackforla/website/pull/7558) at 2024-10-02 02:29 PM PDT -jenjenkayi,2024-10-02T21:33:10Z,- jenjenkayi commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2389732829) at 2024-10-02 02:33 PM PDT -jenjenkayi,2024-10-02T21:34:27Z,- jenjenkayi commented on issue: [7442](https://github.com/hackforla/website/issues/7442#issuecomment-2389734500) at 2024-10-02 02:34 PM PDT -jenjenkayi,2024-10-07T21:10:34Z,- jenjenkayi pull request merged: [7558](https://github.com/hackforla/website/pull/7558#event-14546884795) at 2024-10-07 02:10 PM PDT -jenjenkayi,2024-10-07T21:11:30Z,- jenjenkayi reopened pull request: [7558](https://github.com/hackforla/website/pull/7558#event-14546884795) at 2024-10-07 02:11 PM PDT -jenjenkayi,2024-10-07T21:19:07Z,- jenjenkayi pull request merged: [7558](https://github.com/hackforla/website/pull/7558#event-14546967462) at 2024-10-07 02:19 PM PDT -jenjenkayi,2024-10-07T21:24:31Z,- jenjenkayi commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2397926290) at 2024-10-07 02:24 PM PDT -jenjenkayi,2024-10-07T21:26:16Z,- jenjenkayi reopened pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2397926290) at 2024-10-07 02:26 PM PDT -jenjenkayi,2024-10-08T21:08:24Z,- jenjenkayi pull request merged: [7558](https://github.com/hackforla/website/pull/7558#event-14562902050) at 2024-10-08 02:08 PM PDT -jenjenkayi,2024-10-18T19:54:57Z,- jenjenkayi assigned to issue: [7454](https://github.com/hackforla/website/issues/7454) at 2024-10-18 12:54 PM PDT -jenjenkayi,2024-10-18T19:55:10Z,- jenjenkayi unassigned from issue: [7454](https://github.com/hackforla/website/issues/7454) at 2024-10-18 12:55 PM PDT -jenjenkayi,2024-10-18T20:06:43Z,- jenjenkayi assigned to issue: [7455](https://github.com/hackforla/website/issues/7455) at 2024-10-18 01:06 PM PDT -jenjenkayi,2024-10-18T20:07:03Z,- jenjenkayi unassigned from issue: [7455](https://github.com/hackforla/website/issues/7455) at 2024-10-18 01:07 PM PDT -jenjenkayi,2024-10-18T20:08:00Z,- jenjenkayi assigned to issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423157170) at 2024-10-18 01:08 PM PDT -jenjenkayi,2024-10-18T20:08:14Z,- jenjenkayi unassigned from issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423158875) at 2024-10-18 01:08 PM PDT -jenjenkayi,2024-10-18T20:09:25Z,- jenjenkayi assigned to issue: [7453](https://github.com/hackforla/website/issues/7453) at 2024-10-18 01:09 PM PDT -jenjenkayi,2024-10-18T20:09:39Z,- jenjenkayi unassigned from issue: [7453](https://github.com/hackforla/website/issues/7453) at 2024-10-18 01:09 PM PDT -jenjenkayi,2024-10-18T22:08:44Z,- jenjenkayi assigned to issue: [7576](https://github.com/hackforla/website/issues/7576#issuecomment-2399317571) at 2024-10-18 03:08 PM PDT -jenjenkayi,2024-10-23T22:46:56Z,- jenjenkayi commented on issue: [7576](https://github.com/hackforla/website/issues/7576#issuecomment-2433665905) at 2024-10-23 03:46 PM PDT -jenjenkayi,2024-10-23T22:58:37Z,- jenjenkayi opened pull request: [7631](https://github.com/hackforla/website/pull/7631) at 2024-10-23 03:58 PM PDT -jenjenkayi,2024-10-24T21:29:17Z,- jenjenkayi commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2436369717) at 2024-10-24 02:29 PM PDT -jenjenkayi,2024-10-24T21:31:32Z,- jenjenkayi commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2436372927) at 2024-10-24 02:31 PM PDT -jenjenkayi,2024-10-24T23:27:53Z,- jenjenkayi commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2436510980) at 2024-10-24 04:27 PM PDT -jenjenkayi,2024-10-24T23:28:03Z,- jenjenkayi commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2436511309) at 2024-10-24 04:28 PM PDT -jenjenkayi,2024-10-24T23:30:08Z,- jenjenkayi commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2436513103) at 2024-10-24 04:30 PM PDT -jenjenkayi,2024-10-29T21:33:43Z,- jenjenkayi commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2445371523) at 2024-10-29 02:33 PM PDT -jenjenkayi,2024-11-01T19:45:04Z,- jenjenkayi commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2452487884) at 2024-11-01 12:45 PM PDT -jenjenkayi,2024-11-04T21:32:03Z,- jenjenkayi commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2455744087) at 2024-11-04 01:32 PM PST -jenjenkayi,2024-11-13T23:31:55Z,- jenjenkayi pull request merged: [7631](https://github.com/hackforla/website/pull/7631#event-15290649974) at 2024-11-13 03:31 PM PST -jenjenkayi,2025-03-06T22:16:50Z,- jenjenkayi commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2705064999) at 2025-03-06 02:16 PM PST -jenjenkayi,2025-03-06T22:18:41Z,- jenjenkayi submitted pull request review: [7980](https://github.com/hackforla/website/pull/7980#pullrequestreview-2665760997) at 2025-03-06 02:18 PM PST -jenniesf,4331,SKILLS ISSUE -jenniesf,2023-03-29T03:58:20Z,- jenniesf opened issue: [4331](https://github.com/hackforla/website/issues/4331) at 2023-03-28 08:58 PM PDT -jenniesf,2023-03-29T03:58:32Z,- jenniesf assigned to issue: [4331](https://github.com/hackforla/website/issues/4331) at 2023-03-28 08:58 PM PDT -jenniesf,2023-05-11T00:50:07Z,- jenniesf commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1542988124) at 2023-05-10 05:50 PM PDT -jennifertieu,4966,SKILLS ISSUE -jennifertieu,2023-07-18T01:49:59Z,- jennifertieu opened issue: [4966](https://github.com/hackforla/website/issues/4966) at 2023-07-17 06:49 PM PDT -jennifertieu,2023-07-18T03:12:49Z,- jennifertieu assigned to issue: [4966](https://github.com/hackforla/website/issues/4966) at 2023-07-17 08:12 PM PDT -jennifertieu,2023-08-01T15:11:40Z,- jennifertieu closed issue as completed: [4966](https://github.com/hackforla/website/issues/4966#event-9977989764) at 2023-08-01 08:11 AM PDT -jennisung,6877,SKILLS ISSUE -jennisung,2024-05-22T02:56:52Z,- jennisung opened issue: [6877](https://github.com/hackforla/website/issues/6877) at 2024-05-21 07:56 PM PDT -jennisung,2024-05-22T03:05:10Z,- jennisung assigned to issue: [6877](https://github.com/hackforla/website/issues/6877) at 2024-05-21 08:05 PM PDT -jennisung,2024-06-09T03:22:23Z,- jennisung assigned to issue: [6940](https://github.com/hackforla/website/issues/6940) at 2024-06-08 08:22 PM PDT -jennisung,2024-06-09T16:55:25Z,- jennisung commented on issue: [6940](https://github.com/hackforla/website/issues/6940#issuecomment-2156697406) at 2024-06-09 09:55 AM PDT -jennisung,2024-06-15T23:18:20Z,- jennisung opened pull request: [7008](https://github.com/hackforla/website/pull/7008) at 2024-06-15 04:18 PM PDT -jennisung,2024-06-15T23:18:41Z,- jennisung commented on pull request: [7008](https://github.com/hackforla/website/pull/7008#issuecomment-2170967624) at 2024-06-15 04:18 PM PDT -jennisung,2024-06-15T23:25:48Z,- jennisung commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2170968819) at 2024-06-15 04:25 PM PDT -jennisung,2024-06-15T23:37:47Z,- jennisung opened pull request: [7009](https://github.com/hackforla/website/pull/7009) at 2024-06-15 04:37 PM PDT -jennisung,2024-06-18T02:09:21Z,- jennisung commented on pull request: [7008](https://github.com/hackforla/website/pull/7008#issuecomment-2174783453) at 2024-06-17 07:09 PM PDT -jennisung,2024-06-18T02:09:25Z,- jennisung pull request closed w/o merging: [7008](https://github.com/hackforla/website/pull/7008#event-13193849531) at 2024-06-17 07:09 PM PDT -jennisung,2024-06-18T02:09:56Z,- jennisung commented on pull request: [7008](https://github.com/hackforla/website/pull/7008#issuecomment-2174784820) at 2024-06-17 07:09 PM PDT -jennisung,2024-06-18T02:12:06Z,- jennisung commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2174787542) at 2024-06-17 07:12 PM PDT -jennisung,2024-06-23T20:33:32Z,- jennisung pull request merged: [7009](https://github.com/hackforla/website/pull/7009#event-13258162174) at 2024-06-23 01:33 PM PDT -jennisung,2024-06-28T23:33:41Z,- jennisung commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2197770075) at 2024-06-28 04:33 PM PDT -jennisung,2024-06-29T02:43:05Z,- jennisung submitted pull request review: [7043](https://github.com/hackforla/website/pull/7043#pullrequestreview-2149212724) at 2024-06-28 07:43 PM PDT -jennisung,2024-08-11T00:59:36Z,- jennisung commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2282334899) at 2024-08-10 05:59 PM PDT -jennisung,2024-08-11T00:59:42Z,- jennisung closed issue as completed: [6877](https://github.com/hackforla/website/issues/6877#event-13830505624) at 2024-08-10 05:59 PM PDT -jennisung,2024-08-11T01:00:05Z,- jennisung reopened issue: [6877](https://github.com/hackforla/website/issues/6877#event-13830505624) at 2024-08-10 06:00 PM PDT -jennisung,2024-08-11T01:01:13Z,- jennisung commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2282335326) at 2024-08-10 06:01 PM PDT -jennisung,2024-08-18T17:16:07Z,- jennisung commented on pull request: [7302](https://github.com/hackforla/website/pull/7302#issuecomment-2295330724) at 2024-08-18 10:16 AM PDT -jennisung,2024-08-20T03:03:50Z,- jennisung submitted pull request review: [7302](https://github.com/hackforla/website/pull/7302#pullrequestreview-2246881992) at 2024-08-19 08:03 PM PDT -jennisung,2024-11-12T01:34:39Z,- jennisung commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2469413512) at 2024-11-11 05:34 PM PST -jennisung,2024-11-14T19:44:12Z,- jennisung submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2437053597) at 2024-11-14 11:44 AM PST -jennisung,2024-11-16T04:13:37Z,- jennisung submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2440293176) at 2024-11-15 08:13 PM PST -jennisung,2024-11-30T03:38:58Z,- jennisung commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2508813204) at 2024-11-29 07:38 PM PST -jennisung,2025-01-19T16:58:40Z,- jennisung commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2600942356) at 2025-01-19 08:58 AM PST -jennisung,2025-02-22T06:57:17Z,- jennisung commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2676059618) at 2025-02-21 10:57 PM PST -jennisung,2025-03-16T06:00:48Z,- jennisung commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2727213542) at 2025-03-15 11:00 PM PDT -jenny-alexander,4636,SKILLS ISSUE -jenny-alexander,2023-05-09T04:16:05Z,- jenny-alexander opened issue: [4636](https://github.com/hackforla/website/issues/4636) at 2023-05-08 09:16 PM PDT -jenny-alexander,2023-05-09T04:16:06Z,- jenny-alexander assigned to issue: [4636](https://github.com/hackforla/website/issues/4636) at 2023-05-08 09:16 PM PDT -jenny-alexander,2023-05-09T20:30:01Z,- jenny-alexander assigned to issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1533492134) at 2023-05-09 01:30 PM PDT -jenny-alexander,2023-05-09T20:45:23Z,- jenny-alexander commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1540867228) at 2023-05-09 01:45 PM PDT -jenny-alexander,2023-05-10T00:52:01Z,- jenny-alexander opened pull request: [4644](https://github.com/hackforla/website/pull/4644) at 2023-05-09 05:52 PM PDT -jenny-alexander,2023-05-10T01:01:39Z,- jenny-alexander commented on issue: [4636](https://github.com/hackforla/website/issues/4636#issuecomment-1541095716) at 2023-05-09 06:01 PM PDT -jenny-alexander,2023-05-10T16:56:53Z,- jenny-alexander commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1542527920) at 2023-05-10 09:56 AM PDT -jenny-alexander,2023-05-11T17:02:30Z,- jenny-alexander closed issue as completed: [4636](https://github.com/hackforla/website/issues/4636#event-9224800897) at 2023-05-11 10:02 AM PDT -jenny-alexander,2023-05-13T21:29:57Z,- jenny-alexander submitted pull request review: [4651](https://github.com/hackforla/website/pull/4651#pullrequestreview-1425461805) at 2023-05-13 02:29 PM PDT -jenny-alexander,2023-05-15T04:48:21Z,- jenny-alexander pull request merged: [4644](https://github.com/hackforla/website/pull/4644#event-9241997389) at 2023-05-14 09:48 PM PDT -jenny-alexander,2023-05-15T17:12:39Z,- jenny-alexander commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1548241638) at 2023-05-15 10:12 AM PDT -jenny-alexander,2023-05-19T02:46:57Z,- jenny-alexander assigned to issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1547047689) at 2023-05-18 07:46 PM PDT -jenny-alexander,2023-05-19T02:49:58Z,- jenny-alexander commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1553928340) at 2023-05-18 07:49 PM PDT -jenny-alexander,2023-05-19T04:03:40Z,- jenny-alexander opened pull request: [4698](https://github.com/hackforla/website/pull/4698) at 2023-05-18 09:03 PM PDT -jenny-alexander,2023-05-19T04:13:54Z,- jenny-alexander commented on pull request: [4697](https://github.com/hackforla/website/pull/4697#issuecomment-1553970277) at 2023-05-18 09:13 PM PDT -jenny-alexander,2023-05-19T16:13:52Z,- jenny-alexander submitted pull request review: [4697](https://github.com/hackforla/website/pull/4697#pullrequestreview-1434712768) at 2023-05-19 09:13 AM PDT -jenny-alexander,2023-05-21T16:16:11Z,- jenny-alexander pull request merged: [4698](https://github.com/hackforla/website/pull/4698#event-9296236684) at 2023-05-21 09:16 AM PDT -jenny-alexander,2023-05-21T22:56:30Z,- jenny-alexander commented on pull request: [4680](https://github.com/hackforla/website/pull/4680#issuecomment-1556317967) at 2023-05-21 03:56 PM PDT -jenny-alexander,2023-05-22T18:55:13Z,- jenny-alexander submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1437259879) at 2023-05-22 11:55 AM PDT -jenny-alexander,2023-05-23T01:31:02Z,- jenny-alexander submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1438050846) at 2023-05-22 06:31 PM PDT -jenny-alexander,2023-05-23T23:20:51Z,- jenny-alexander assigned to issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1534994729) at 2023-05-23 04:20 PM PDT -jenny-alexander,2023-05-23T23:23:42Z,- jenny-alexander commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1560250808) at 2023-05-23 04:23 PM PDT -jenny-alexander,2023-05-25T00:31:13Z,- jenny-alexander opened pull request: [4726](https://github.com/hackforla/website/pull/4726) at 2023-05-24 05:31 PM PDT -jenny-alexander,2023-05-25T00:42:48Z,- jenny-alexander commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562100785) at 2023-05-24 05:42 PM PDT -jenny-alexander,2023-05-25T00:56:01Z,- jenny-alexander commented on pull request: [4725](https://github.com/hackforla/website/pull/4725#issuecomment-1562113338) at 2023-05-24 05:56 PM PDT -jenny-alexander,2023-05-25T17:32:26Z,- jenny-alexander commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1563267617) at 2023-05-25 10:32 AM PDT -jenny-alexander,2023-05-26T23:48:02Z,- jenny-alexander submitted pull request review: [4725](https://github.com/hackforla/website/pull/4725#pullrequestreview-1447061783) at 2023-05-26 04:48 PM PDT -jenny-alexander,2023-05-27T00:34:51Z,- jenny-alexander commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1565105788) at 2023-05-26 05:34 PM PDT -jenny-alexander,2023-05-28T02:55:48Z,- jenny-alexander commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1565824789) at 2023-05-27 07:55 PM PDT -jenny-alexander,2023-05-29T02:03:16Z,- jenny-alexander commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1566386818) at 2023-05-28 07:03 PM PDT -jenny-alexander,2023-05-31T01:30:04Z,- jenny-alexander commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1569359333) at 2023-05-30 06:30 PM PDT -jenny-alexander,2023-06-01T05:53:52Z,- jenny-alexander pull request merged: [4726](https://github.com/hackforla/website/pull/4726#event-9398540622) at 2023-05-31 10:53 PM PDT -jeristella,3908,SKILLS ISSUE -jeristella,2023-02-01T04:55:45Z,- jeristella opened issue: [3908](https://github.com/hackforla/website/issues/3908) at 2023-01-31 08:55 PM PST -jeristella,2023-02-01T04:58:46Z,- jeristella assigned to issue: [3908](https://github.com/hackforla/website/issues/3908) at 2023-01-31 08:58 PM PST -jeristella,2023-02-01T05:37:59Z,- jeristella closed issue as not planned: [3908](https://github.com/hackforla/website/issues/3908#event-8406580148) at 2023-01-31 09:37 PM PST -jeristella,2023-02-01T05:45:43Z,- jeristella reopened issue: [3908](https://github.com/hackforla/website/issues/3908#event-8406580148) at 2023-01-31 09:45 PM PST -jeristella,2023-02-26T21:24:01Z,- jeristella commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1445471204) at 2023-02-26 01:24 PM PST -jeristella,2023-02-28T07:44:33Z,- jeristella assigned to issue: [4043](https://github.com/hackforla/website/issues/4043) at 2023-02-27 11:44 PM PST -jeristella,2023-03-03T06:07:48Z,- jeristella opened pull request: [4097](https://github.com/hackforla/website/pull/4097) at 2023-03-02 10:07 PM PST -jeristella,2023-03-03T06:16:30Z,- jeristella commented on issue: [4043](https://github.com/hackforla/website/issues/4043#issuecomment-1453035929) at 2023-03-02 10:16 PM PST -jeristella,2023-03-03T06:20:07Z,- jeristella commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1453038380) at 2023-03-02 10:20 PM PST -jeristella,2023-03-03T08:29:59Z,- jeristella pull request closed w/o merging: [4097](https://github.com/hackforla/website/pull/4097#event-8657382164) at 2023-03-03 12:29 AM PST -jeristella,2023-03-03T09:05:50Z,- jeristella reopened pull request: [4097](https://github.com/hackforla/website/pull/4097#event-8657382164) at 2023-03-03 01:05 AM PST -jeristella,2023-03-03T09:51:03Z,- jeristella opened pull request: [4099](https://github.com/hackforla/website/pull/4099) at 2023-03-03 01:51 AM PST -jeristella,2023-03-05T21:16:59Z,- jeristella pull request closed w/o merging: [4097](https://github.com/hackforla/website/pull/4097#event-8668702363) at 2023-03-05 01:16 PM PST -jeristella,2023-03-07T00:32:43Z,- jeristella pull request merged: [4099](https://github.com/hackforla/website/pull/4099#event-8680279722) at 2023-03-06 04:32 PM PST -jeristella,2023-03-09T22:25:29Z,- jeristella commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1462912369) at 2023-03-09 02:25 PM PST -jeristella,2023-03-24T21:24:28Z,- jeristella commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1483421407) at 2023-03-24 02:24 PM PDT -jeristella,2023-03-27T19:18:18Z,- jeristella assigned to issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1484276572) at 2023-03-27 12:18 PM PDT -jeristella,2023-03-27T19:19:21Z,- jeristella commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1485735457) at 2023-03-27 12:19 PM PDT -jeristella,2023-03-27T19:20:27Z,- jeristella commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1485736703) at 2023-03-27 12:20 PM PDT -jeristella,2023-03-29T03:13:04Z,- jeristella opened pull request: [4309](https://github.com/hackforla/website/pull/4309) at 2023-03-28 08:13 PM PDT -jeristella,2023-03-30T21:15:23Z,- jeristella commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1490972717) at 2023-03-30 02:15 PM PDT -jeristella,2023-04-12T03:50:45Z,- jeristella pull request merged: [4309](https://github.com/hackforla/website/pull/4309#event-8980569459) at 2023-04-11 08:50 PM PDT -jeristella,2023-04-18T01:24:43Z,- jeristella commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1512306479) at 2023-04-17 06:24 PM PDT -jeristella,2023-05-16T22:43:16Z,- jeristella commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1550451529) at 2023-05-16 03:43 PM PDT -jeristella,2023-05-30T20:20:26Z,- jeristella closed issue as completed: [3908](https://github.com/hackforla/website/issues/3908#event-9382632878) at 2023-05-30 01:20 PM PDT -jessdvdv,3910,SKILLS ISSUE -jessdvdv,2023-02-01T04:58:18Z,- jessdvdv opened issue: [3910](https://github.com/hackforla/website/issues/3910) at 2023-01-31 08:58 PM PST -jessdvdv,2023-02-01T04:58:25Z,- jessdvdv assigned to issue: [3910](https://github.com/hackforla/website/issues/3910) at 2023-01-31 08:58 PM PST -JessicaLucindaCheng,2520,SKILLS ISSUE -JessicaLucindaCheng,2021-11-30T03:41:24Z,- JessicaLucindaCheng opened issue: [2520](https://github.com/hackforla/website/issues/2520) at 2021-11-29 07:41 PM PST -JessicaLucindaCheng,2021-11-30T03:41:24Z,- JessicaLucindaCheng assigned to issue: [2520](https://github.com/hackforla/website/issues/2520) at 2021-11-29 07:41 PM PST -JessicaLucindaCheng,2021-12-05T12:33:47Z,- JessicaLucindaCheng assigned to issue: [2484](https://github.com/hackforla/website/issues/2484#issuecomment-968453762) at 2021-12-05 04:33 AM PST -JessicaLucindaCheng,2021-12-05T12:45:03Z,- JessicaLucindaCheng commented on issue: [2484](https://github.com/hackforla/website/issues/2484#issuecomment-986223875) at 2021-12-05 04:45 AM PST -JessicaLucindaCheng,2021-12-05T15:53:10Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-986254455) at 2021-12-05 07:53 AM PST -JessicaLucindaCheng,2021-12-05T15:53:10Z,- JessicaLucindaCheng closed issue as completed: [2520](https://github.com/hackforla/website/issues/2520#event-5716926923) at 2021-12-05 07:53 AM PST -JessicaLucindaCheng,2021-12-05T16:24:22Z,- JessicaLucindaCheng opened pull request: [2546](https://github.com/hackforla/website/pull/2546) at 2021-12-05 08:24 AM PST -JessicaLucindaCheng,2021-12-06T20:33:47Z,- JessicaLucindaCheng assigned to issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-956556752) at 2021-12-06 12:33 PM PST -JessicaLucindaCheng,2021-12-06T20:44:24Z,- JessicaLucindaCheng commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-987192642) at 2021-12-06 12:44 PM PST -JessicaLucindaCheng,2021-12-07T07:21:35Z,- JessicaLucindaCheng commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-987639971) at 2021-12-06 11:21 PM PST -JessicaLucindaCheng,2021-12-07T23:15:01Z,- JessicaLucindaCheng commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-988331338) at 2021-12-07 03:15 PM PST -JessicaLucindaCheng,2021-12-07T23:51:58Z,- JessicaLucindaCheng opened pull request: [2556](https://github.com/hackforla/website/pull/2556) at 2021-12-07 03:51 PM PST -JessicaLucindaCheng,2021-12-08T01:33:21Z,- JessicaLucindaCheng pull request merged: [2546](https://github.com/hackforla/website/pull/2546#event-5730922324) at 2021-12-07 05:33 PM PST -JessicaLucindaCheng,2021-12-08T03:12:17Z,- JessicaLucindaCheng assigned to issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-956472847) at 2021-12-07 07:12 PM PST -JessicaLucindaCheng,2021-12-08T03:16:03Z,- JessicaLucindaCheng commented on issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-988459755) at 2021-12-07 07:16 PM PST -JessicaLucindaCheng,2021-12-08T07:47:01Z,- JessicaLucindaCheng commented on pull request: [2549](https://github.com/hackforla/website/pull/2549#issuecomment-988575086) at 2021-12-07 11:47 PM PST -JessicaLucindaCheng,2021-12-09T01:37:28Z,- JessicaLucindaCheng submitted pull request review: [2549](https://github.com/hackforla/website/pull/2549#pullrequestreview-827122131) at 2021-12-08 05:37 PM PST -JessicaLucindaCheng,2021-12-09T04:48:40Z,- JessicaLucindaCheng submitted pull request review: [2549](https://github.com/hackforla/website/pull/2549#pullrequestreview-827198499) at 2021-12-08 08:48 PM PST -JessicaLucindaCheng,2021-12-10T00:20:12Z,- JessicaLucindaCheng pull request merged: [2556](https://github.com/hackforla/website/pull/2556#event-5744525487) at 2021-12-09 04:20 PM PST -JessicaLucindaCheng,2021-12-12T09:24:26Z,- JessicaLucindaCheng opened pull request: [2577](https://github.com/hackforla/website/pull/2577) at 2021-12-12 01:24 AM PST -JessicaLucindaCheng,2021-12-12T09:41:12Z,- JessicaLucindaCheng commented on issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-991864475) at 2021-12-12 01:41 AM PST -JessicaLucindaCheng,2021-12-12T23:25:10Z,- JessicaLucindaCheng commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-991992027) at 2021-12-12 03:25 PM PST -JessicaLucindaCheng,2021-12-13T04:15:55Z,- JessicaLucindaCheng submitted pull request review: [2583](https://github.com/hackforla/website/pull/2583#pullrequestreview-829757466) at 2021-12-12 08:15 PM PST -JessicaLucindaCheng,2021-12-13T04:26:25Z,- JessicaLucindaCheng commented on pull request: [2583](https://github.com/hackforla/website/pull/2583#issuecomment-992100169) at 2021-12-12 08:26 PM PST -JessicaLucindaCheng,2021-12-13T04:33:32Z,- JessicaLucindaCheng commented on pull request: [2582](https://github.com/hackforla/website/pull/2582#issuecomment-992103213) at 2021-12-12 08:33 PM PST -JessicaLucindaCheng,2021-12-13T04:39:07Z,- JessicaLucindaCheng commented on pull request: [2574](https://github.com/hackforla/website/pull/2574#issuecomment-992105436) at 2021-12-12 08:39 PM PST -JessicaLucindaCheng,2021-12-13T04:40:28Z,- JessicaLucindaCheng commented on pull request: [2575](https://github.com/hackforla/website/pull/2575#issuecomment-992105916) at 2021-12-12 08:40 PM PST -JessicaLucindaCheng,2021-12-13T21:02:42Z,- JessicaLucindaCheng submitted pull request review: [2582](https://github.com/hackforla/website/pull/2582#pullrequestreview-830752116) at 2021-12-13 01:02 PM PST -JessicaLucindaCheng,2021-12-14T04:36:24Z,- JessicaLucindaCheng submitted pull request review: [2574](https://github.com/hackforla/website/pull/2574#pullrequestreview-831007357) at 2021-12-13 08:36 PM PST -JessicaLucindaCheng,2021-12-14T05:11:39Z,- JessicaLucindaCheng submitted pull request review: [2575](https://github.com/hackforla/website/pull/2575#pullrequestreview-831022486) at 2021-12-13 09:11 PM PST -JessicaLucindaCheng,2021-12-15T02:14:21Z,- JessicaLucindaCheng pull request merged: [2577](https://github.com/hackforla/website/pull/2577#event-5768320331) at 2021-12-14 06:14 PM PST -JessicaLucindaCheng,2021-12-15T04:45:39Z,- JessicaLucindaCheng assigned to issue: [2457](https://github.com/hackforla/website/issues/2457#issuecomment-962286868) at 2021-12-14 08:45 PM PST -JessicaLucindaCheng,2021-12-15T11:05:14Z,- JessicaLucindaCheng commented on issue: [2457](https://github.com/hackforla/website/issues/2457#issuecomment-994681404) at 2021-12-15 03:05 AM PST -JessicaLucindaCheng,2021-12-15T13:41:24Z,- JessicaLucindaCheng opened pull request: [2588](https://github.com/hackforla/website/pull/2588) at 2021-12-15 05:41 AM PST -JessicaLucindaCheng,2021-12-16T01:18:58Z,- JessicaLucindaCheng opened issue: [2591](https://github.com/hackforla/website/issues/2591) at 2021-12-15 05:18 PM PST -JessicaLucindaCheng,2021-12-16T20:03:49Z,- JessicaLucindaCheng commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-996155190) at 2021-12-16 12:03 PM PST -JessicaLucindaCheng,2021-12-17T02:48:44Z,- JessicaLucindaCheng commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996391766) at 2021-12-16 06:48 PM PST -JessicaLucindaCheng,2021-12-17T21:15:53Z,- JessicaLucindaCheng submitted pull request review: [2593](https://github.com/hackforla/website/pull/2593#pullrequestreview-835643443) at 2021-12-17 01:15 PM PST -JessicaLucindaCheng,2021-12-17T23:49:40Z,- JessicaLucindaCheng opened issue: [2598](https://github.com/hackforla/website/issues/2598) at 2021-12-17 03:49 PM PST -JessicaLucindaCheng,2021-12-18T17:21:10Z,- JessicaLucindaCheng commented on issue: [2457](https://github.com/hackforla/website/issues/2457#issuecomment-997233774) at 2021-12-18 09:21 AM PST -JessicaLucindaCheng,2021-12-19T04:18:08Z,- JessicaLucindaCheng pull request merged: [2588](https://github.com/hackforla/website/pull/2588#event-5788721321) at 2021-12-18 08:18 PM PST -JessicaLucindaCheng,2021-12-19T04:48:33Z,- JessicaLucindaCheng assigned to issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-992034966) at 2021-12-18 08:48 PM PST -JessicaLucindaCheng,2021-12-19T06:51:22Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-997339609) at 2021-12-18 10:51 PM PST -JessicaLucindaCheng,2021-12-19T13:43:29Z,- JessicaLucindaCheng commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-997394583) at 2021-12-19 05:43 AM PST -JessicaLucindaCheng,2021-12-19T14:11:09Z,- JessicaLucindaCheng commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-997398969) at 2021-12-19 06:11 AM PST -JessicaLucindaCheng,2021-12-19T14:22:21Z,- JessicaLucindaCheng commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-997400766) at 2021-12-19 06:22 AM PST -JessicaLucindaCheng,2021-12-19T20:25:26Z,- JessicaLucindaCheng commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-997455359) at 2021-12-19 12:25 PM PST -JessicaLucindaCheng,2021-12-19T20:54:32Z,- JessicaLucindaCheng commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-997459747) at 2021-12-19 12:54 PM PST -JessicaLucindaCheng,2021-12-20T04:01:58Z,- JessicaLucindaCheng commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-997573143) at 2021-12-19 08:01 PM PST -JessicaLucindaCheng,2021-12-20T21:57:56Z,- JessicaLucindaCheng submitted pull request review: [2599](https://github.com/hackforla/website/pull/2599#pullrequestreview-836848110) at 2021-12-20 01:57 PM PST -JessicaLucindaCheng,2021-12-21T00:50:57Z,- JessicaLucindaCheng submitted pull request review: [2593](https://github.com/hackforla/website/pull/2593#pullrequestreview-836926521) at 2021-12-20 04:50 PM PST -JessicaLucindaCheng,2021-12-21T04:57:59Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-998472377) at 2021-12-20 08:57 PM PST -JessicaLucindaCheng,2021-12-21T05:03:38Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-998474341) at 2021-12-20 09:03 PM PST -JessicaLucindaCheng,2021-12-21T22:01:44Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-999122394) at 2021-12-21 02:01 PM PST -JessicaLucindaCheng,2021-12-22T02:53:21Z,- JessicaLucindaCheng opened issue: [2619](https://github.com/hackforla/website/issues/2619) at 2021-12-21 06:53 PM PST -JessicaLucindaCheng,2021-12-22T19:55:44Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-999827199) at 2021-12-22 11:55 AM PST -JessicaLucindaCheng,2021-12-24T22:24:12Z,- JessicaLucindaCheng submitted pull request review: [2620](https://github.com/hackforla/website/pull/2620#pullrequestreview-839992961) at 2021-12-24 02:24 PM PST -JessicaLucindaCheng,2021-12-24T22:25:51Z,- JessicaLucindaCheng commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000941128) at 2021-12-24 02:25 PM PST -JessicaLucindaCheng,2021-12-24T22:39:01Z,- JessicaLucindaCheng commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000942189) at 2021-12-24 02:39 PM PST -JessicaLucindaCheng,2021-12-24T23:16:53Z,- JessicaLucindaCheng submitted pull request review: [2624](https://github.com/hackforla/website/pull/2624#pullrequestreview-839995043) at 2021-12-24 03:16 PM PST -JessicaLucindaCheng,2021-12-25T00:14:49Z,- JessicaLucindaCheng submitted pull request review: [2620](https://github.com/hackforla/website/pull/2620#pullrequestreview-839997009) at 2021-12-24 04:14 PM PST -JessicaLucindaCheng,2021-12-25T03:12:06Z,- JessicaLucindaCheng submitted pull request review: [2620](https://github.com/hackforla/website/pull/2620#pullrequestreview-840002496) at 2021-12-24 07:12 PM PST -JessicaLucindaCheng,2021-12-25T22:11:08Z,- JessicaLucindaCheng opened issue: [2626](https://github.com/hackforla/website/issues/2626) at 2021-12-25 02:11 PM PST -JessicaLucindaCheng,2021-12-25T23:50:24Z,- JessicaLucindaCheng opened issue: [2627](https://github.com/hackforla/website/issues/2627) at 2021-12-25 03:50 PM PST -JessicaLucindaCheng,2021-12-26T01:36:01Z,- JessicaLucindaCheng opened issue: [2628](https://github.com/hackforla/website/issues/2628) at 2021-12-25 05:36 PM PST -JessicaLucindaCheng,2021-12-26T09:10:34Z,- JessicaLucindaCheng opened issue: [2629](https://github.com/hackforla/website/issues/2629) at 2021-12-26 01:10 AM PST -JessicaLucindaCheng,2021-12-26T10:21:16Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1001147824) at 2021-12-26 02:21 AM PST -JessicaLucindaCheng,2021-12-26T10:26:09Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1001149386) at 2021-12-26 02:26 AM PST -JessicaLucindaCheng,2021-12-28T11:04:53Z,- JessicaLucindaCheng opened issue: [2639](https://github.com/hackforla/website/issues/2639) at 2021-12-28 03:04 AM PST -JessicaLucindaCheng,2021-12-28T23:36:33Z,- JessicaLucindaCheng opened issue: [2641](https://github.com/hackforla/website/issues/2641) at 2021-12-28 03:36 PM PST -JessicaLucindaCheng,2021-12-28T23:58:13Z,- JessicaLucindaCheng opened issue: [2642](https://github.com/hackforla/website/issues/2642) at 2021-12-28 03:58 PM PST -JessicaLucindaCheng,2021-12-29T01:22:19Z,- JessicaLucindaCheng commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1002351494) at 2021-12-28 05:22 PM PST -JessicaLucindaCheng,2021-12-29T03:44:08Z,- JessicaLucindaCheng commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1002383137) at 2021-12-28 07:44 PM PST -JessicaLucindaCheng,2021-12-30T01:03:43Z,- JessicaLucindaCheng submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-841669590) at 2021-12-29 05:03 PM PST -JessicaLucindaCheng,2021-12-30T03:06:08Z,- JessicaLucindaCheng commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1002852611) at 2021-12-29 07:06 PM PST -JessicaLucindaCheng,2021-12-30T21:26:15Z,- JessicaLucindaCheng submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-842094139) at 2021-12-30 01:26 PM PST -JessicaLucindaCheng,2021-12-30T22:08:10Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003196176) at 2021-12-30 02:08 PM PST -JessicaLucindaCheng,2021-12-30T22:10:19Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003196685) at 2021-12-30 02:10 PM PST -JessicaLucindaCheng,2021-12-31T01:52:37Z,- JessicaLucindaCheng submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-842134737) at 2021-12-30 05:52 PM PST -JessicaLucindaCheng,2021-12-31T20:31:46Z,- JessicaLucindaCheng submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-842299114) at 2021-12-31 12:31 PM PST -JessicaLucindaCheng,2022-01-02T09:19:48Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1003686322) at 2022-01-02 01:19 AM PST -JessicaLucindaCheng,2022-01-02T09:53:38Z,- JessicaLucindaCheng commented on pull request: [2647](https://github.com/hackforla/website/pull/2647#issuecomment-1003690159) at 2022-01-02 01:53 AM PST -JessicaLucindaCheng,2022-01-02T20:57:50Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003774194) at 2022-01-02 12:57 PM PST -JessicaLucindaCheng,2022-01-05T00:22:35Z,- JessicaLucindaCheng submitted pull request review: [2647](https://github.com/hackforla/website/pull/2647#pullrequestreview-844118439) at 2022-01-04 04:22 PM PST -JessicaLucindaCheng,2022-01-05T02:18:45Z,- JessicaLucindaCheng opened issue: [2657](https://github.com/hackforla/website/issues/2657) at 2022-01-04 06:18 PM PST -JessicaLucindaCheng,2022-01-05T02:22:32Z,- JessicaLucindaCheng opened issue: [2658](https://github.com/hackforla/website/issues/2658) at 2022-01-04 06:22 PM PST -JessicaLucindaCheng,2022-01-05T02:29:50Z,- JessicaLucindaCheng opened issue: [2659](https://github.com/hackforla/website/issues/2659) at 2022-01-04 06:29 PM PST -JessicaLucindaCheng,2022-01-05T03:55:35Z,- JessicaLucindaCheng opened issue: [2661](https://github.com/hackforla/website/issues/2661) at 2022-01-04 07:55 PM PST -JessicaLucindaCheng,2022-01-05T22:57:36Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1006143115) at 2022-01-05 02:57 PM PST -JessicaLucindaCheng,2022-01-07T23:41:51Z,- JessicaLucindaCheng opened issue: [2670](https://github.com/hackforla/website/issues/2670) at 2022-01-07 03:41 PM PST -JessicaLucindaCheng,2022-01-08T01:36:34Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1007859588) at 2022-01-07 05:36 PM PST -JessicaLucindaCheng,2022-01-08T11:29:52Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1007964648) at 2022-01-08 03:29 AM PST -JessicaLucindaCheng,2022-01-08T20:48:04Z,- JessicaLucindaCheng opened issue: [2674](https://github.com/hackforla/website/issues/2674) at 2022-01-08 12:48 PM PST -JessicaLucindaCheng,2022-01-08T20:51:41Z,- JessicaLucindaCheng opened issue: [2675](https://github.com/hackforla/website/issues/2675) at 2022-01-08 12:51 PM PST -JessicaLucindaCheng,2022-01-09T00:49:18Z,- JessicaLucindaCheng commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1008201103) at 2022-01-08 04:49 PM PST -JessicaLucindaCheng,2022-01-09T11:50:23Z,- JessicaLucindaCheng commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1008282819) at 2022-01-09 03:50 AM PST -JessicaLucindaCheng,2022-01-09T12:37:02Z,- JessicaLucindaCheng commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1008289769) at 2022-01-09 04:37 AM PST -JessicaLucindaCheng,2022-01-09T14:56:19Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1008312859) at 2022-01-09 06:56 AM PST -JessicaLucindaCheng,2022-01-09T16:31:06Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1008331388) at 2022-01-09 08:31 AM PST -JessicaLucindaCheng,2022-01-09T21:06:14Z,- JessicaLucindaCheng opened issue: [2681](https://github.com/hackforla/website/issues/2681) at 2022-01-09 01:06 PM PST -JessicaLucindaCheng,2022-01-09T22:14:55Z,- JessicaLucindaCheng commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1008434267) at 2022-01-09 02:14 PM PST -JessicaLucindaCheng,2022-01-09T22:44:39Z,- JessicaLucindaCheng commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1008438679) at 2022-01-09 02:44 PM PST -JessicaLucindaCheng,2022-01-11T02:41:13Z,- JessicaLucindaCheng commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1009547753) at 2022-01-10 06:41 PM PST -JessicaLucindaCheng,2022-01-11T02:53:40Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009552570) at 2022-01-10 06:53 PM PST -JessicaLucindaCheng,2022-01-11T04:19:52Z,- JessicaLucindaCheng assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1007193548) at 2022-01-10 08:19 PM PST -JessicaLucindaCheng,2022-01-11T05:13:43Z,- JessicaLucindaCheng submitted pull request review: [2672](https://github.com/hackforla/website/pull/2672#pullrequestreview-848608029) at 2022-01-10 09:13 PM PST -JessicaLucindaCheng,2022-01-11T05:44:49Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009618629) at 2022-01-10 09:44 PM PST -JessicaLucindaCheng,2022-01-11T06:59:08Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009651157) at 2022-01-10 10:59 PM PST -JessicaLucindaCheng,2022-01-11T20:35:58Z,- JessicaLucindaCheng commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1010339525) at 2022-01-11 12:35 PM PST -JessicaLucindaCheng,2022-01-11T22:04:04Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1010399103) at 2022-01-11 02:04 PM PST -JessicaLucindaCheng,2022-01-11T23:00:15Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1010442796) at 2022-01-11 03:00 PM PST -JessicaLucindaCheng,2022-01-13T03:15:35Z,- JessicaLucindaCheng commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1011740849) at 2022-01-12 07:15 PM PST -JessicaLucindaCheng,2022-01-13T04:02:30Z,- JessicaLucindaCheng commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1011774107) at 2022-01-12 08:02 PM PST -JessicaLucindaCheng,2022-01-14T22:20:34Z,- JessicaLucindaCheng commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1013512259) at 2022-01-14 02:20 PM PST -JessicaLucindaCheng,2022-01-14T23:19:24Z,- JessicaLucindaCheng commented on pull request: [2630](https://github.com/hackforla/website/pull/2630#issuecomment-1013536978) at 2022-01-14 03:19 PM PST -JessicaLucindaCheng,2022-01-14T23:59:54Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1013550364) at 2022-01-14 03:59 PM PST -JessicaLucindaCheng,2022-01-16T02:38:19Z,- JessicaLucindaCheng assigned to issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1008224954) at 2022-01-15 06:38 PM PST -JessicaLucindaCheng,2022-01-16T15:56:54Z,- JessicaLucindaCheng commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1013901544) at 2022-01-16 07:56 AM PST -JessicaLucindaCheng,2022-01-16T16:13:10Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1013904367) at 2022-01-16 08:13 AM PST -JessicaLucindaCheng,2022-01-16T17:55:10Z,- JessicaLucindaCheng commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1013922203) at 2022-01-16 09:55 AM PST -JessicaLucindaCheng,2022-01-17T02:11:06Z,- JessicaLucindaCheng opened issue: [2690](https://github.com/hackforla/website/issues/2690) at 2022-01-16 06:11 PM PST -JessicaLucindaCheng,2022-01-17T02:51:52Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1014089655) at 2022-01-16 06:51 PM PST -JessicaLucindaCheng,2022-01-17T03:28:15Z,- JessicaLucindaCheng commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1014107073) at 2022-01-16 07:28 PM PST -JessicaLucindaCheng,2022-01-17T03:39:54Z,- JessicaLucindaCheng commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1014110882) at 2022-01-16 07:39 PM PST -JessicaLucindaCheng,2022-01-17T05:23:55Z,- JessicaLucindaCheng commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1014154476) at 2022-01-16 09:23 PM PST -JessicaLucindaCheng,2022-01-17T06:25:14Z,- JessicaLucindaCheng commented on issue: [2677](https://github.com/hackforla/website/issues/2677#issuecomment-1014181300) at 2022-01-16 10:25 PM PST -JessicaLucindaCheng,2022-01-17T06:25:17Z,- JessicaLucindaCheng closed issue as completed: [2677](https://github.com/hackforla/website/issues/2677#event-5902043279) at 2022-01-16 10:25 PM PST -JessicaLucindaCheng,2022-01-17T06:30:46Z,- JessicaLucindaCheng commented on issue: [2653](https://github.com/hackforla/website/issues/2653#issuecomment-1014183935) at 2022-01-16 10:30 PM PST -JessicaLucindaCheng,2022-01-17T06:30:47Z,- JessicaLucindaCheng closed issue as completed: [2653](https://github.com/hackforla/website/issues/2653#event-5902062069) at 2022-01-16 10:30 PM PST -JessicaLucindaCheng,2022-01-17T23:57:09Z,- JessicaLucindaCheng assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1013922203) at 2022-01-17 03:57 PM PST -JessicaLucindaCheng,2022-01-18T07:23:52Z,- JessicaLucindaCheng commented on pull request: [2696](https://github.com/hackforla/website/pull/2696#issuecomment-1015135642) at 2022-01-17 11:23 PM PST -JessicaLucindaCheng,2022-01-18T22:20:18Z,- JessicaLucindaCheng submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-856039360) at 2022-01-18 02:20 PM PST -JessicaLucindaCheng,2022-01-19T00:39:52Z,- JessicaLucindaCheng submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-856128108) at 2022-01-18 04:39 PM PST -JessicaLucindaCheng,2022-01-19T01:18:09Z,- JessicaLucindaCheng opened issue: [2699](https://github.com/hackforla/website/issues/2699) at 2022-01-18 05:18 PM PST -JessicaLucindaCheng,2022-01-19T01:24:54Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1015989140) at 2022-01-18 05:24 PM PST -JessicaLucindaCheng,2022-01-19T03:28:34Z,- JessicaLucindaCheng commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1016045529) at 2022-01-18 07:28 PM PST -JessicaLucindaCheng,2022-01-19T05:22:33Z,- JessicaLucindaCheng closed issue by PR 2693: [2627](https://github.com/hackforla/website/issues/2627#event-5915140451) at 2022-01-18 09:22 PM PST -JessicaLucindaCheng,2022-01-19T21:16:06Z,- JessicaLucindaCheng opened issue: [2707](https://github.com/hackforla/website/issues/2707) at 2022-01-19 01:16 PM PST -JessicaLucindaCheng,2022-01-19T21:43:31Z,- JessicaLucindaCheng commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1016894190) at 2022-01-19 01:43 PM PST -JessicaLucindaCheng,2022-01-19T21:56:48Z,- JessicaLucindaCheng assigned to issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1015989140) at 2022-01-19 01:56 PM PST -JessicaLucindaCheng,2022-01-20T18:28:54Z,- JessicaLucindaCheng submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-858652438) at 2022-01-20 10:28 AM PST -JessicaLucindaCheng,2022-01-20T18:30:20Z,- JessicaLucindaCheng closed issue by PR 2665: [2598](https://github.com/hackforla/website/issues/2598#event-5927247589) at 2022-01-20 10:30 AM PST -JessicaLucindaCheng,2022-01-20T18:58:47Z,- JessicaLucindaCheng submitted pull request review: [2672](https://github.com/hackforla/website/pull/2672#pullrequestreview-858682931) at 2022-01-20 10:58 AM PST -JessicaLucindaCheng,2022-01-21T00:47:29Z,- JessicaLucindaCheng commented on pull request: [2691](https://github.com/hackforla/website/pull/2691#issuecomment-1018056990) at 2022-01-20 04:47 PM PST -JessicaLucindaCheng,2022-01-21T01:15:59Z,- JessicaLucindaCheng commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1018072865) at 2022-01-20 05:15 PM PST -JessicaLucindaCheng,2022-01-21T01:18:18Z,- JessicaLucindaCheng commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1018074008) at 2022-01-20 05:18 PM PST -JessicaLucindaCheng,2022-01-21T23:47:23Z,- JessicaLucindaCheng commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1018970482) at 2022-01-21 03:47 PM PST -JessicaLucindaCheng,2022-01-22T18:00:31Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1019324026) at 2022-01-22 10:00 AM PST -JessicaLucindaCheng,2022-01-22T18:51:50Z,- JessicaLucindaCheng commented on issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1019337301) at 2022-01-22 10:51 AM PST -JessicaLucindaCheng,2022-01-23T00:21:38Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1019382843) at 2022-01-22 04:21 PM PST -JessicaLucindaCheng,2022-01-23T01:15:14Z,- JessicaLucindaCheng commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1019388727) at 2022-01-22 05:15 PM PST -JessicaLucindaCheng,2022-01-23T01:15:28Z,- JessicaLucindaCheng commented on issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1019388747) at 2022-01-22 05:15 PM PST -JessicaLucindaCheng,2022-01-23T01:25:51Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1019389756) at 2022-01-22 05:25 PM PST -JessicaLucindaCheng,2022-01-23T01:38:19Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1019391556) at 2022-01-22 05:38 PM PST -JessicaLucindaCheng,2022-01-23T18:14:44Z,- JessicaLucindaCheng commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1019538611) at 2022-01-23 10:14 AM PST -JessicaLucindaCheng,2022-01-24T19:22:07Z,- JessicaLucindaCheng commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1020458298) at 2022-01-24 11:22 AM PST -JessicaLucindaCheng,2022-01-24T19:35:13Z,- JessicaLucindaCheng commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1020469532) at 2022-01-24 11:35 AM PST -JessicaLucindaCheng,2022-01-24T20:21:45Z,- JessicaLucindaCheng commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1020511785) at 2022-01-24 12:21 PM PST -JessicaLucindaCheng,2022-01-24T20:33:22Z,- JessicaLucindaCheng commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1020522034) at 2022-01-24 12:33 PM PST -JessicaLucindaCheng,2022-01-24T20:56:44Z,- JessicaLucindaCheng commented on pull request: [2700](https://github.com/hackforla/website/pull/2700#issuecomment-1020538981) at 2022-01-24 12:56 PM PST -JessicaLucindaCheng,2022-01-24T21:00:29Z,- JessicaLucindaCheng commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1020541598) at 2022-01-24 01:00 PM PST -JessicaLucindaCheng,2022-01-24T21:02:45Z,- JessicaLucindaCheng commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1020543329) at 2022-01-24 01:02 PM PST -JessicaLucindaCheng,2022-01-24T21:49:30Z,- JessicaLucindaCheng closed issue by PR 2696: [2464](https://github.com/hackforla/website/issues/2464#event-5945711302) at 2022-01-24 01:49 PM PST -JessicaLucindaCheng,2022-01-24T22:11:50Z,- JessicaLucindaCheng submitted pull request review: [2700](https://github.com/hackforla/website/pull/2700#pullrequestreview-861574185) at 2022-01-24 02:11 PM PST -JessicaLucindaCheng,2022-01-24T22:23:47Z,- JessicaLucindaCheng commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1020609001) at 2022-01-24 02:23 PM PST -JessicaLucindaCheng,2022-01-24T22:23:51Z,- JessicaLucindaCheng closed issue as completed: [2619](https://github.com/hackforla/website/issues/2619#event-5945877919) at 2022-01-24 02:23 PM PST -JessicaLucindaCheng,2022-01-25T20:28:49Z,- JessicaLucindaCheng unassigned from issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1019389756) at 2022-01-25 12:28 PM PST -JessicaLucindaCheng,2022-01-25T20:54:16Z,- JessicaLucindaCheng commented on pull request: [2709](https://github.com/hackforla/website/pull/2709#issuecomment-1021599136) at 2022-01-25 12:54 PM PST -JessicaLucindaCheng,2022-01-25T21:47:15Z,- JessicaLucindaCheng submitted pull request review: [2710](https://github.com/hackforla/website/pull/2710#pullrequestreview-862901700) at 2022-01-25 01:47 PM PST -JessicaLucindaCheng,2022-01-25T21:55:39Z,- JessicaLucindaCheng submitted pull request review: [2710](https://github.com/hackforla/website/pull/2710#pullrequestreview-862909176) at 2022-01-25 01:55 PM PST -JessicaLucindaCheng,2022-01-25T22:35:44Z,- JessicaLucindaCheng commented on pull request: [2714](https://github.com/hackforla/website/pull/2714#issuecomment-1021673689) at 2022-01-25 02:35 PM PST -JessicaLucindaCheng,2022-01-26T00:53:37Z,- JessicaLucindaCheng commented on issue: [2658](https://github.com/hackforla/website/issues/2658#issuecomment-1021750650) at 2022-01-25 04:53 PM PST -JessicaLucindaCheng,2022-01-26T04:16:56Z,- JessicaLucindaCheng commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1021846609) at 2022-01-25 08:16 PM PST -JessicaLucindaCheng,2022-01-26T21:27:32Z,- JessicaLucindaCheng commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1022618608) at 2022-01-26 01:27 PM PST -JessicaLucindaCheng,2022-01-26T22:22:49Z,- JessicaLucindaCheng commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1022658207) at 2022-01-26 02:22 PM PST -JessicaLucindaCheng,2022-01-26T22:46:45Z,- JessicaLucindaCheng commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1022672704) at 2022-01-26 02:46 PM PST -JessicaLucindaCheng,2022-01-27T05:56:43Z,- JessicaLucindaCheng opened issue: [2720](https://github.com/hackforla/website/issues/2720) at 2022-01-26 09:56 PM PST -JessicaLucindaCheng,2022-01-27T06:11:58Z,- JessicaLucindaCheng opened issue: [2721](https://github.com/hackforla/website/issues/2721) at 2022-01-26 10:11 PM PST -JessicaLucindaCheng,2022-01-27T07:41:21Z,- JessicaLucindaCheng commented on issue: [2721](https://github.com/hackforla/website/issues/2721#issuecomment-1022930427) at 2022-01-26 11:41 PM PST -JessicaLucindaCheng,2022-01-27T17:16:14Z,- JessicaLucindaCheng commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1023457675) at 2022-01-27 09:16 AM PST -JessicaLucindaCheng,2022-01-27T18:31:25Z,- JessicaLucindaCheng commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023523026) at 2022-01-27 10:31 AM PST -JessicaLucindaCheng,2022-01-27T18:41:41Z,- JessicaLucindaCheng opened issue: [2722](https://github.com/hackforla/website/issues/2722) at 2022-01-27 10:41 AM PST -JessicaLucindaCheng,2022-01-27T22:00:11Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1023676369) at 2022-01-27 02:00 PM PST -JessicaLucindaCheng,2022-01-27T23:06:28Z,- JessicaLucindaCheng submitted pull request review: [2709](https://github.com/hackforla/website/pull/2709#pullrequestreview-865534152) at 2022-01-27 03:06 PM PST -JessicaLucindaCheng,2022-01-27T23:06:35Z,- JessicaLucindaCheng closed issue by PR 2709: [2424](https://github.com/hackforla/website/issues/2424#event-5967282194) at 2022-01-27 03:06 PM PST -JessicaLucindaCheng,2022-01-27T23:23:21Z,- JessicaLucindaCheng closed issue by PR 2714: [1564](https://github.com/hackforla/website/issues/1564#event-5967346975) at 2022-01-27 03:23 PM PST -JessicaLucindaCheng,2022-01-27T23:33:56Z,- JessicaLucindaCheng submitted pull request review: [2718](https://github.com/hackforla/website/pull/2718#pullrequestreview-865551155) at 2022-01-27 03:33 PM PST -JessicaLucindaCheng,2022-01-27T23:34:22Z,- JessicaLucindaCheng closed issue by PR 2718: [2431](https://github.com/hackforla/website/issues/2431#event-5967383099) at 2022-01-27 03:34 PM PST -JessicaLucindaCheng,2022-01-27T23:45:40Z,- JessicaLucindaCheng submitted pull request review: [2700](https://github.com/hackforla/website/pull/2700#pullrequestreview-865557431) at 2022-01-27 03:45 PM PST -JessicaLucindaCheng,2022-01-27T23:45:47Z,- JessicaLucindaCheng closed issue by PR 2700: [2631](https://github.com/hackforla/website/issues/2631#event-5967417354) at 2022-01-27 03:45 PM PST -JessicaLucindaCheng,2022-01-28T00:03:38Z,- JessicaLucindaCheng unassigned from issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1023676369) at 2022-01-27 04:03 PM PST -JessicaLucindaCheng,2022-01-28T01:25:52Z,- JessicaLucindaCheng commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1023799128) at 2022-01-27 05:25 PM PST -JessicaLucindaCheng,2022-01-28T01:27:36Z,- JessicaLucindaCheng commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1023800022) at 2022-01-27 05:27 PM PST -JessicaLucindaCheng,2022-01-28T21:35:07Z,- JessicaLucindaCheng submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-866729996) at 2022-01-28 01:35 PM PST -JessicaLucindaCheng,2022-01-28T22:22:29Z,- JessicaLucindaCheng submitted pull request review: [2710](https://github.com/hackforla/website/pull/2710#pullrequestreview-866761426) at 2022-01-28 02:22 PM PST -JessicaLucindaCheng,2022-01-29T03:49:58Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1024825233) at 2022-01-28 07:49 PM PST -JessicaLucindaCheng,2022-01-29T06:09:03Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1024845161) at 2022-01-28 10:09 PM PST -JessicaLucindaCheng,2022-01-29T08:43:10Z,- JessicaLucindaCheng assigned to issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1014154476) at 2022-01-29 12:43 AM PST -JessicaLucindaCheng,2022-01-29T09:01:59Z,- JessicaLucindaCheng closed issue by PR 2710: [2604](https://github.com/hackforla/website/issues/2604#event-5974796378) at 2022-01-29 01:01 AM PST -JessicaLucindaCheng,2022-01-29T20:01:30Z,- JessicaLucindaCheng opened pull request: [2724](https://github.com/hackforla/website/pull/2724) at 2022-01-29 12:01 PM PST -JessicaLucindaCheng,2022-01-29T22:06:48Z,- JessicaLucindaCheng opened issue: [2726](https://github.com/hackforla/website/issues/2726) at 2022-01-29 02:06 PM PST -JessicaLucindaCheng,2022-01-29T23:46:09Z,- JessicaLucindaCheng assigned to issue: [2712](https://github.com/hackforla/website/issues/2712#issuecomment-1019539297) at 2022-01-29 03:46 PM PST -JessicaLucindaCheng,2022-01-30T00:02:37Z,- JessicaLucindaCheng assigned to issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1014074171) at 2022-01-29 04:02 PM PST -JessicaLucindaCheng,2022-01-30T00:42:42Z,- JessicaLucindaCheng commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1025016798) at 2022-01-29 04:42 PM PST -JessicaLucindaCheng,2022-01-30T19:44:44Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1025216387) at 2022-01-30 11:44 AM PST -JessicaLucindaCheng,2022-01-30T19:59:20Z,- JessicaLucindaCheng commented on issue: [2712](https://github.com/hackforla/website/issues/2712#issuecomment-1025218994) at 2022-01-30 11:59 AM PST -JessicaLucindaCheng,2022-01-31T06:38:49Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1025426035) at 2022-01-30 10:38 PM PST -JessicaLucindaCheng,2022-02-01T19:11:50Z,- JessicaLucindaCheng opened issue: [2731](https://github.com/hackforla/website/issues/2731) at 2022-02-01 11:11 AM PST -JessicaLucindaCheng,2022-02-01T19:29:00Z,- JessicaLucindaCheng assigned to issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1027194199) at 2022-02-01 11:29 AM PST -JessicaLucindaCheng,2022-02-01T22:21:03Z,- JessicaLucindaCheng commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1027344883) at 2022-02-01 02:21 PM PST -JessicaLucindaCheng,2022-02-01T22:36:12Z,- JessicaLucindaCheng commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1027355694) at 2022-02-01 02:36 PM PST -JessicaLucindaCheng,2022-02-01T23:52:59Z,- JessicaLucindaCheng commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1027402700) at 2022-02-01 03:52 PM PST -JessicaLucindaCheng,2022-02-02T02:50:14Z,- JessicaLucindaCheng closed issue as completed: [2712](https://github.com/hackforla/website/issues/2712#event-5992698379) at 2022-02-01 06:50 PM PST -JessicaLucindaCheng,2022-02-02T02:51:48Z,- JessicaLucindaCheng commented on issue: [2712](https://github.com/hackforla/website/issues/2712#issuecomment-1027526088) at 2022-02-01 06:51 PM PST -JessicaLucindaCheng,2022-02-02T06:42:55Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1027633695) at 2022-02-01 10:42 PM PST -JessicaLucindaCheng,2022-02-02T06:44:53Z,- JessicaLucindaCheng commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1027634707) at 2022-02-01 10:44 PM PST -JessicaLucindaCheng,2022-02-02T06:57:35Z,- JessicaLucindaCheng commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1027640222) at 2022-02-01 10:57 PM PST -JessicaLucindaCheng,2022-02-02T06:59:41Z,- JessicaLucindaCheng commented on issue: [2240](https://github.com/hackforla/website/issues/2240#issuecomment-1027641160) at 2022-02-01 10:59 PM PST -JessicaLucindaCheng,2022-02-02T07:27:27Z,- JessicaLucindaCheng commented on pull request: [2714](https://github.com/hackforla/website/pull/2714#issuecomment-1027656125) at 2022-02-01 11:27 PM PST -JessicaLucindaCheng,2022-02-02T19:57:42Z,- JessicaLucindaCheng commented on pull request: [2714](https://github.com/hackforla/website/pull/2714#issuecomment-1028305940) at 2022-02-02 11:57 AM PST -JessicaLucindaCheng,2022-02-02T20:00:53Z,- JessicaLucindaCheng commented on issue: [1562](https://github.com/hackforla/website/issues/1562#issuecomment-1028308432) at 2022-02-02 12:00 PM PST -JessicaLucindaCheng,2022-02-02T20:01:11Z,- JessicaLucindaCheng commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-1028308641) at 2022-02-02 12:01 PM PST -JessicaLucindaCheng,2022-02-02T20:01:52Z,- JessicaLucindaCheng commented on issue: [1566](https://github.com/hackforla/website/issues/1566#issuecomment-1028309211) at 2022-02-02 12:01 PM PST -JessicaLucindaCheng,2022-02-02T20:05:36Z,- JessicaLucindaCheng commented on issue: [1564](https://github.com/hackforla/website/issues/1564#issuecomment-1028312162) at 2022-02-02 12:05 PM PST -JessicaLucindaCheng,2022-02-02T21:31:41Z,- JessicaLucindaCheng commented on issue: [2239](https://github.com/hackforla/website/issues/2239#issuecomment-1028376931) at 2022-02-02 01:31 PM PST -JessicaLucindaCheng,2022-02-02T22:40:21Z,- JessicaLucindaCheng submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-871189206) at 2022-02-02 02:40 PM PST -JessicaLucindaCheng,2022-02-02T23:06:55Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1028441393) at 2022-02-02 03:06 PM PST -JessicaLucindaCheng,2022-02-02T23:51:20Z,- JessicaLucindaCheng submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-871235596) at 2022-02-02 03:51 PM PST -JessicaLucindaCheng,2022-02-03T00:32:14Z,- JessicaLucindaCheng commented on pull request: [2732](https://github.com/hackforla/website/pull/2732#issuecomment-1028488220) at 2022-02-02 04:32 PM PST -JessicaLucindaCheng,2022-02-03T00:33:27Z,- JessicaLucindaCheng commented on pull request: [2734](https://github.com/hackforla/website/pull/2734#issuecomment-1028488815) at 2022-02-02 04:33 PM PST -JessicaLucindaCheng,2022-02-03T00:51:38Z,- JessicaLucindaCheng commented on pull request: [2734](https://github.com/hackforla/website/pull/2734#issuecomment-1028498894) at 2022-02-02 04:51 PM PST -JessicaLucindaCheng,2022-02-03T03:52:46Z,- JessicaLucindaCheng commented on pull request: [2724](https://github.com/hackforla/website/pull/2724#issuecomment-1028576878) at 2022-02-02 07:52 PM PST -JessicaLucindaCheng,2022-02-03T05:52:05Z,- JessicaLucindaCheng opened pull request: [2735](https://github.com/hackforla/website/pull/2735) at 2022-02-02 09:52 PM PST -JessicaLucindaCheng,2022-02-03T05:57:52Z,- JessicaLucindaCheng commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1028628331) at 2022-02-02 09:57 PM PST -JessicaLucindaCheng,2022-02-03T07:51:32Z,- JessicaLucindaCheng pull request merged: [2724](https://github.com/hackforla/website/pull/2724#event-6000788219) at 2022-02-02 11:51 PM PST -JessicaLucindaCheng,2022-02-03T20:04:40Z,- JessicaLucindaCheng commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1029354264) at 2022-02-03 12:04 PM PST -JessicaLucindaCheng,2022-02-03T21:44:18Z,- JessicaLucindaCheng commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1029430205) at 2022-02-03 01:44 PM PST -JessicaLucindaCheng,2022-02-03T21:44:20Z,- JessicaLucindaCheng reopened issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1029430205) at 2022-02-03 01:44 PM PST -JessicaLucindaCheng,2022-02-03T21:49:16Z,- JessicaLucindaCheng commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1029433835) at 2022-02-03 01:49 PM PST -JessicaLucindaCheng,2022-02-03T21:49:44Z,- JessicaLucindaCheng commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1029434177) at 2022-02-03 01:49 PM PST -JessicaLucindaCheng,2022-02-03T21:49:54Z,- JessicaLucindaCheng closed issue as completed: [2707](https://github.com/hackforla/website/issues/2707#event-6005892042) at 2022-02-03 01:49 PM PST -JessicaLucindaCheng,2022-02-03T22:32:27Z,- JessicaLucindaCheng submitted pull request review: [2734](https://github.com/hackforla/website/pull/2734#pullrequestreview-872488847) at 2022-02-03 02:32 PM PST -JessicaLucindaCheng,2022-02-03T23:29:29Z,- JessicaLucindaCheng submitted pull request review: [2732](https://github.com/hackforla/website/pull/2732#pullrequestreview-872526957) at 2022-02-03 03:29 PM PST -JessicaLucindaCheng,2022-02-03T23:50:41Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1029508518) at 2022-02-03 03:50 PM PST -JessicaLucindaCheng,2022-02-04T01:21:44Z,- JessicaLucindaCheng pull request merged: [2735](https://github.com/hackforla/website/pull/2735#event-6006637781) at 2022-02-03 05:21 PM PST -JessicaLucindaCheng,2022-02-04T02:21:10Z,- JessicaLucindaCheng commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1029579212) at 2022-02-03 06:21 PM PST -JessicaLucindaCheng,2022-02-04T06:08:13Z,- JessicaLucindaCheng submitted pull request review: [2732](https://github.com/hackforla/website/pull/2732#pullrequestreview-872702346) at 2022-02-03 10:08 PM PST -JessicaLucindaCheng,2022-02-04T06:09:57Z,- JessicaLucindaCheng closed issue by PR 2732: [2240](https://github.com/hackforla/website/issues/2240#event-6007374327) at 2022-02-03 10:09 PM PST -JessicaLucindaCheng,2022-02-04T17:16:50Z,- JessicaLucindaCheng commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1030188944) at 2022-02-04 09:16 AM PST -JessicaLucindaCheng,2022-02-04T17:51:27Z,- JessicaLucindaCheng commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1030215789) at 2022-02-04 09:51 AM PST -JessicaLucindaCheng,2022-02-04T18:13:32Z,- JessicaLucindaCheng commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1030232616) at 2022-02-04 10:13 AM PST -JessicaLucindaCheng,2022-02-04T19:10:00Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1030273048) at 2022-02-04 11:10 AM PST -JessicaLucindaCheng,2022-02-04T19:38:24Z,- JessicaLucindaCheng submitted pull request review: [2734](https://github.com/hackforla/website/pull/2734#pullrequestreview-873502931) at 2022-02-04 11:38 AM PST -JessicaLucindaCheng,2022-02-04T19:42:52Z,- JessicaLucindaCheng closed issue by PR 2734: [2239](https://github.com/hackforla/website/issues/2239#event-6011650739) at 2022-02-04 11:42 AM PST -JessicaLucindaCheng,2022-02-04T19:45:57Z,- JessicaLucindaCheng commented on pull request: [2734](https://github.com/hackforla/website/pull/2734#issuecomment-1030297658) at 2022-02-04 11:45 AM PST -JessicaLucindaCheng,2022-02-04T19:55:32Z,- JessicaLucindaCheng commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1030304019) at 2022-02-04 11:55 AM PST -JessicaLucindaCheng,2022-02-04T20:02:57Z,- JessicaLucindaCheng commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1030309185) at 2022-02-04 12:02 PM PST -JessicaLucindaCheng,2022-02-05T06:09:44Z,- JessicaLucindaCheng opened pull request: [2738](https://github.com/hackforla/website/pull/2738) at 2022-02-04 10:09 PM PST -JessicaLucindaCheng,2022-02-05T17:20:23Z,- JessicaLucindaCheng commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1030663441) at 2022-02-05 09:20 AM PST -JessicaLucindaCheng,2022-02-05T17:48:52Z,- JessicaLucindaCheng commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1030668417) at 2022-02-05 09:48 AM PST -JessicaLucindaCheng,2022-02-05T17:51:48Z,- JessicaLucindaCheng commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1030668917) at 2022-02-05 09:51 AM PST -JessicaLucindaCheng,2022-02-05T18:33:40Z,- JessicaLucindaCheng commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1030676443) at 2022-02-05 10:33 AM PST -JessicaLucindaCheng,2022-02-05T19:09:48Z,- JessicaLucindaCheng commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1030682426) at 2022-02-05 11:09 AM PST -JessicaLucindaCheng,2022-02-05T19:09:48Z,- JessicaLucindaCheng closed issue as completed: [2681](https://github.com/hackforla/website/issues/2681#event-6014179867) at 2022-02-05 11:09 AM PST -JessicaLucindaCheng,2022-02-05T21:20:37Z,- JessicaLucindaCheng commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1030700775) at 2022-02-05 01:20 PM PST -JessicaLucindaCheng,2022-02-05T22:34:36Z,- JessicaLucindaCheng unassigned from issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1029354264) at 2022-02-05 02:34 PM PST -JessicaLucindaCheng,2022-02-05T23:54:42Z,- JessicaLucindaCheng commented on issue: [2674](https://github.com/hackforla/website/issues/2674#issuecomment-1030716085) at 2022-02-05 03:54 PM PST -JessicaLucindaCheng,2022-02-06T01:07:04Z,- JessicaLucindaCheng assigned to issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1029354264) at 2022-02-05 05:07 PM PST -JessicaLucindaCheng,2022-02-06T09:10:03Z,- JessicaLucindaCheng pull request merged: [2738](https://github.com/hackforla/website/pull/2738#event-6014781727) at 2022-02-06 01:10 AM PST -JessicaLucindaCheng,2022-02-06T18:02:29Z,- JessicaLucindaCheng commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1030883057) at 2022-02-06 10:02 AM PST -JessicaLucindaCheng,2022-02-06T23:28:05Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1030939882) at 2022-02-06 03:28 PM PST -JessicaLucindaCheng,2022-02-06T23:31:52Z,- JessicaLucindaCheng assigned to issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1030939882) at 2022-02-06 03:31 PM PST -JessicaLucindaCheng,2022-02-07T00:40:56Z,- JessicaLucindaCheng submitted pull request review: [2713](https://github.com/hackforla/website/pull/2713#pullrequestreview-874109122) at 2022-02-06 04:40 PM PST -JessicaLucindaCheng,2022-02-07T01:02:34Z,- JessicaLucindaCheng submitted pull request review: [2713](https://github.com/hackforla/website/pull/2713#pullrequestreview-874113532) at 2022-02-06 05:02 PM PST -JessicaLucindaCheng,2022-02-07T01:04:00Z,- JessicaLucindaCheng closed issue by PR 2594: [2408](https://github.com/hackforla/website/issues/2408#event-6015852972) at 2022-02-06 05:04 PM PST -JessicaLucindaCheng,2022-02-07T01:05:08Z,- JessicaLucindaCheng commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1030969477) at 2022-02-06 05:05 PM PST -JessicaLucindaCheng,2022-02-07T01:56:06Z,- JessicaLucindaCheng commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1030996357) at 2022-02-06 05:56 PM PST -JessicaLucindaCheng,2022-02-07T20:03:48Z,- JessicaLucindaCheng commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1031867989) at 2022-02-07 12:03 PM PST -JessicaLucindaCheng,2022-02-07T21:08:23Z,- JessicaLucindaCheng submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-875248788) at 2022-02-07 01:08 PM PST -JessicaLucindaCheng,2022-02-07T21:10:23Z,- JessicaLucindaCheng closed issue by PR 2645: [2081](https://github.com/hackforla/website/issues/2081#event-6022326959) at 2022-02-07 01:10 PM PST -JessicaLucindaCheng,2022-02-07T21:19:41Z,- JessicaLucindaCheng commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1031936043) at 2022-02-07 01:19 PM PST -JessicaLucindaCheng,2022-02-07T21:28:48Z,- JessicaLucindaCheng commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1031944162) at 2022-02-07 01:28 PM PST -JessicaLucindaCheng,2022-02-07T21:46:15Z,- JessicaLucindaCheng commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1031962636) at 2022-02-07 01:46 PM PST -JessicaLucindaCheng,2022-02-07T22:19:05Z,- JessicaLucindaCheng opened issue: [2746](https://github.com/hackforla/website/issues/2746) at 2022-02-07 02:19 PM PST -JessicaLucindaCheng,2022-02-07T22:20:01Z,- JessicaLucindaCheng assigned to issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1031993012) at 2022-02-07 02:20 PM PST -JessicaLucindaCheng,2022-02-07T22:35:16Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1032004926) at 2022-02-07 02:35 PM PST -JessicaLucindaCheng,2022-02-09T02:35:14Z,- JessicaLucindaCheng assigned to issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1033247749) at 2022-02-08 06:35 PM PST -JessicaLucindaCheng,2022-02-09T02:51:38Z,- JessicaLucindaCheng commented on issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1033289895) at 2022-02-08 06:51 PM PST -JessicaLucindaCheng,2022-02-09T04:46:28Z,- JessicaLucindaCheng opened pull request: [2755](https://github.com/hackforla/website/pull/2755) at 2022-02-08 08:46 PM PST -JessicaLucindaCheng,2022-02-09T04:46:55Z,- JessicaLucindaCheng opened pull request: [2756](https://github.com/hackforla/website/pull/2756) at 2022-02-08 08:46 PM PST -JessicaLucindaCheng,2022-02-09T05:14:57Z,- JessicaLucindaCheng pull request closed w/o merging: [2756](https://github.com/hackforla/website/pull/2756#event-6031600460) at 2022-02-08 09:14 PM PST -JessicaLucindaCheng,2022-02-09T05:17:53Z,- JessicaLucindaCheng commented on pull request: [2756](https://github.com/hackforla/website/pull/2756#issuecomment-1033361286) at 2022-02-08 09:17 PM PST -JessicaLucindaCheng,2022-02-09T05:36:30Z,- JessicaLucindaCheng opened pull request: [2757](https://github.com/hackforla/website/pull/2757) at 2022-02-08 09:36 PM PST -JessicaLucindaCheng,2022-02-09T06:41:28Z,- JessicaLucindaCheng commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1033403396) at 2022-02-08 10:41 PM PST -JessicaLucindaCheng,2022-02-09T06:42:37Z,- JessicaLucindaCheng reopened issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1033403396) at 2022-02-08 10:42 PM PST -JessicaLucindaCheng,2022-02-09T06:57:29Z,- JessicaLucindaCheng opened issue: [2759](https://github.com/hackforla/website/issues/2759) at 2022-02-08 10:57 PM PST -JessicaLucindaCheng,2022-02-09T07:29:45Z,- JessicaLucindaCheng commented on issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1033431521) at 2022-02-08 11:29 PM PST -JessicaLucindaCheng,2022-02-09T09:36:25Z,- JessicaLucindaCheng pull request merged: [2757](https://github.com/hackforla/website/pull/2757#event-6032851818) at 2022-02-09 01:36 AM PST -JessicaLucindaCheng,2022-02-09T15:24:07Z,- JessicaLucindaCheng commented on issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1033878607) at 2022-02-09 07:24 AM PST -JessicaLucindaCheng,2022-02-09T15:24:11Z,- JessicaLucindaCheng reopened issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1033878607) at 2022-02-09 07:24 AM PST -JessicaLucindaCheng,2022-02-09T16:29:37Z,- JessicaLucindaCheng commented on pull request: [2755](https://github.com/hackforla/website/pull/2755#issuecomment-1033951264) at 2022-02-09 08:29 AM PST -JessicaLucindaCheng,2022-02-09T16:29:44Z,- JessicaLucindaCheng pull request closed w/o merging: [2755](https://github.com/hackforla/website/pull/2755#event-6035725466) at 2022-02-09 08:29 AM PST -JessicaLucindaCheng,2022-02-09T22:00:50Z,- JessicaLucindaCheng opened issue: [2760](https://github.com/hackforla/website/issues/2760) at 2022-02-09 02:00 PM PST -JessicaLucindaCheng,2022-02-10T00:53:59Z,- JessicaLucindaCheng opened pull request: [2761](https://github.com/hackforla/website/pull/2761) at 2022-02-09 04:53 PM PST -JessicaLucindaCheng,2022-02-10T20:32:59Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1035477725) at 2022-02-10 12:32 PM PST -JessicaLucindaCheng,2022-02-10T20:41:04Z,- JessicaLucindaCheng commented on pull request: [2762](https://github.com/hackforla/website/pull/2762#issuecomment-1035488865) at 2022-02-10 12:41 PM PST -JessicaLucindaCheng,2022-02-10T22:11:15Z,- JessicaLucindaCheng submitted pull request review: [2762](https://github.com/hackforla/website/pull/2762#pullrequestreview-879586118) at 2022-02-10 02:11 PM PST -JessicaLucindaCheng,2022-02-10T22:11:57Z,- JessicaLucindaCheng closed issue by PR 2762: [2428](https://github.com/hackforla/website/issues/2428#event-6046330318) at 2022-02-10 02:11 PM PST -JessicaLucindaCheng,2022-02-10T22:22:30Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1035591574) at 2022-02-10 02:22 PM PST -JessicaLucindaCheng,2022-02-10T22:34:41Z,- JessicaLucindaCheng commented on issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1035600870) at 2022-02-10 02:34 PM PST -JessicaLucindaCheng,2022-02-10T23:24:30Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1035636347) at 2022-02-10 03:24 PM PST -JessicaLucindaCheng,2022-02-11T01:03:11Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1035692939) at 2022-02-10 05:03 PM PST -JessicaLucindaCheng,2022-02-11T03:39:50Z,- JessicaLucindaCheng opened issue: [2764](https://github.com/hackforla/website/issues/2764) at 2022-02-10 07:39 PM PST -JessicaLucindaCheng,2022-02-11T18:46:02Z,- JessicaLucindaCheng commented on pull request: [2623](https://github.com/hackforla/website/pull/2623#issuecomment-1036511471) at 2022-02-11 10:46 AM PST -JessicaLucindaCheng,2022-02-12T00:28:33Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1036841950) at 2022-02-11 04:28 PM PST -JessicaLucindaCheng,2022-02-12T02:01:54Z,- JessicaLucindaCheng commented on pull request: [2765](https://github.com/hackforla/website/pull/2765#issuecomment-1036942313) at 2022-02-11 06:01 PM PST -JessicaLucindaCheng,2022-02-12T19:26:08Z,- JessicaLucindaCheng commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1037412747) at 2022-02-12 11:26 AM PST -JessicaLucindaCheng,2022-02-12T19:26:08Z,- JessicaLucindaCheng closed issue as completed: [2496](https://github.com/hackforla/website/issues/2496#event-6057963103) at 2022-02-12 11:26 AM PST -JessicaLucindaCheng,2022-02-12T20:03:44Z,- JessicaLucindaCheng commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1037437676) at 2022-02-12 12:03 PM PST -JessicaLucindaCheng,2022-02-12T20:36:37Z,- JessicaLucindaCheng commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1037460653) at 2022-02-12 12:36 PM PST -JessicaLucindaCheng,2022-02-12T20:57:53Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1037474327) at 2022-02-12 12:57 PM PST -JessicaLucindaCheng,2022-02-12T21:03:14Z,- JessicaLucindaCheng commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1037477811) at 2022-02-12 01:03 PM PST -JessicaLucindaCheng,2022-02-12T21:08:16Z,- JessicaLucindaCheng commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1037481029) at 2022-02-12 01:08 PM PST -JessicaLucindaCheng,2022-02-12T22:05:07Z,- JessicaLucindaCheng opened issue: [2768](https://github.com/hackforla/website/issues/2768) at 2022-02-12 02:05 PM PST -JessicaLucindaCheng,2022-02-12T22:14:37Z,- JessicaLucindaCheng commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1037524345) at 2022-02-12 02:14 PM PST -JessicaLucindaCheng,2022-02-12T22:55:51Z,- JessicaLucindaCheng opened issue: [2770](https://github.com/hackforla/website/issues/2770) at 2022-02-12 02:55 PM PST -JessicaLucindaCheng,2022-02-13T02:21:21Z,- JessicaLucindaCheng assigned to issue: [2642](https://github.com/hackforla/website/issues/2642#issuecomment-1002327131) at 2022-02-12 06:21 PM PST -JessicaLucindaCheng,2022-02-13T02:50:13Z,- JessicaLucindaCheng commented on issue: [2642](https://github.com/hackforla/website/issues/2642#issuecomment-1037699323) at 2022-02-12 06:50 PM PST -JessicaLucindaCheng,2022-02-13T02:50:13Z,- JessicaLucindaCheng closed issue as completed: [2642](https://github.com/hackforla/website/issues/2642#event-6059283864) at 2022-02-12 06:50 PM PST -JessicaLucindaCheng,2022-02-13T07:05:27Z,- JessicaLucindaCheng commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1037870828) at 2022-02-12 11:05 PM PST -JessicaLucindaCheng,2022-02-13T07:10:01Z,- JessicaLucindaCheng commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1037873583) at 2022-02-12 11:10 PM PST -JessicaLucindaCheng,2022-02-13T17:09:00Z,- JessicaLucindaCheng commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1038268352) at 2022-02-13 09:09 AM PST -JessicaLucindaCheng,2022-02-13T17:58:22Z,- JessicaLucindaCheng commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1038301427) at 2022-02-13 09:58 AM PST -JessicaLucindaCheng,2022-02-13T18:15:45Z,- JessicaLucindaCheng commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1038313609) at 2022-02-13 10:15 AM PST -JessicaLucindaCheng,2022-02-13T20:13:23Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1038398490) at 2022-02-13 12:13 PM PST -JessicaLucindaCheng,2022-02-13T22:14:12Z,- JessicaLucindaCheng commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1038452962) at 2022-02-13 02:14 PM PST -JessicaLucindaCheng,2022-02-13T22:22:27Z,- JessicaLucindaCheng commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1038455118) at 2022-02-13 02:22 PM PST -JessicaLucindaCheng,2022-02-14T01:57:35Z,- JessicaLucindaCheng commented on issue: [2642](https://github.com/hackforla/website/issues/2642#issuecomment-1038545344) at 2022-02-13 05:57 PM PST -JessicaLucindaCheng,2022-02-14T02:22:04Z,- JessicaLucindaCheng assigned to issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-13 06:22 PM PST -JessicaLucindaCheng,2022-02-14T02:59:42Z,- JessicaLucindaCheng submitted pull request review: [2772](https://github.com/hackforla/website/pull/2772#pullrequestreview-881115088) at 2022-02-13 06:59 PM PST -JessicaLucindaCheng,2022-02-15T20:46:17Z,- JessicaLucindaCheng commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1040776157) at 2022-02-15 12:46 PM PST -JessicaLucindaCheng,2022-02-15T21:37:44Z,- JessicaLucindaCheng commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1040819357) at 2022-02-15 01:37 PM PST -JessicaLucindaCheng,2022-02-15T22:26:48Z,- JessicaLucindaCheng commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1040860098) at 2022-02-15 02:26 PM PST -JessicaLucindaCheng,2022-02-15T22:46:32Z,- JessicaLucindaCheng commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1040873956) at 2022-02-15 02:46 PM PST -JessicaLucindaCheng,2022-02-15T23:04:56Z,- JessicaLucindaCheng commented on issue: [2747](https://github.com/hackforla/website/issues/2747#issuecomment-1040885550) at 2022-02-15 03:04 PM PST -JessicaLucindaCheng,2022-02-15T23:04:56Z,- JessicaLucindaCheng closed issue as completed: [2747](https://github.com/hackforla/website/issues/2747#event-6078800594) at 2022-02-15 03:04 PM PST -JessicaLucindaCheng,2022-02-16T02:29:56Z,- JessicaLucindaCheng commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1041030045) at 2022-02-15 06:29 PM PST -JessicaLucindaCheng,2022-02-16T02:34:24Z,- JessicaLucindaCheng commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1041032394) at 2022-02-15 06:34 PM PST -JessicaLucindaCheng,2022-02-16T03:34:41Z,- JessicaLucindaCheng commented on pull request: [2779](https://github.com/hackforla/website/pull/2779#issuecomment-1041062339) at 2022-02-15 07:34 PM PST -JessicaLucindaCheng,2022-02-16T04:45:18Z,- JessicaLucindaCheng commented on pull request: [2780](https://github.com/hackforla/website/pull/2780#issuecomment-1041102403) at 2022-02-15 08:45 PM PST -JessicaLucindaCheng,2022-02-16T21:58:00Z,- JessicaLucindaCheng submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-885191388) at 2022-02-16 01:58 PM PST -JessicaLucindaCheng,2022-02-17T00:41:06Z,- JessicaLucindaCheng submitted pull request review: [2779](https://github.com/hackforla/website/pull/2779#pullrequestreview-885304175) at 2022-02-16 04:41 PM PST -JessicaLucindaCheng,2022-02-17T00:42:50Z,- JessicaLucindaCheng commented on pull request: [2786](https://github.com/hackforla/website/pull/2786#issuecomment-1042449946) at 2022-02-16 04:42 PM PST -JessicaLucindaCheng,2022-02-17T00:44:20Z,- JessicaLucindaCheng submitted pull request review: [2785](https://github.com/hackforla/website/pull/2785#pullrequestreview-885305877) at 2022-02-16 04:44 PM PST -JessicaLucindaCheng,2022-02-17T01:06:59Z,- JessicaLucindaCheng commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1042466408) at 2022-02-16 05:06 PM PST -JessicaLucindaCheng,2022-02-17T01:31:27Z,- JessicaLucindaCheng submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-885330365) at 2022-02-16 05:31 PM PST -JessicaLucindaCheng,2022-02-17T17:45:53Z,- JessicaLucindaCheng submitted pull request review: [2780](https://github.com/hackforla/website/pull/2780#pullrequestreview-886333722) at 2022-02-17 09:45 AM PST -JessicaLucindaCheng,2022-02-17T22:30:13Z,- JessicaLucindaCheng submitted pull request review: [2779](https://github.com/hackforla/website/pull/2779#pullrequestreview-886632026) at 2022-02-17 02:30 PM PST -JessicaLucindaCheng,2022-02-18T00:17:39Z,- JessicaLucindaCheng submitted pull request review: [2785](https://github.com/hackforla/website/pull/2785#pullrequestreview-886703077) at 2022-02-17 04:17 PM PST -JessicaLucindaCheng,2022-02-18T00:18:18Z,- JessicaLucindaCheng closed issue by PR 2785: [2233](https://github.com/hackforla/website/issues/2233#event-6094542465) at 2022-02-17 04:18 PM PST -JessicaLucindaCheng,2022-02-18T00:26:20Z,- JessicaLucindaCheng commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1043672010) at 2022-02-17 04:26 PM PST -JessicaLucindaCheng,2022-02-18T00:43:21Z,- JessicaLucindaCheng submitted pull request review: [2786](https://github.com/hackforla/website/pull/2786#pullrequestreview-886717701) at 2022-02-17 04:43 PM PST -JessicaLucindaCheng,2022-02-18T00:47:36Z,- JessicaLucindaCheng submitted pull request review: [2780](https://github.com/hackforla/website/pull/2780#pullrequestreview-886719770) at 2022-02-17 04:47 PM PST -JessicaLucindaCheng,2022-02-18T00:49:08Z,- JessicaLucindaCheng closed issue by PR 2780: [2243](https://github.com/hackforla/website/issues/2243#event-6094641769) at 2022-02-17 04:49 PM PST -JessicaLucindaCheng,2022-02-18T01:00:12Z,- JessicaLucindaCheng commented on pull request: [2788](https://github.com/hackforla/website/pull/2788#issuecomment-1043691989) at 2022-02-17 05:00 PM PST -JessicaLucindaCheng,2022-02-18T01:18:48Z,- JessicaLucindaCheng submitted pull request review: [2786](https://github.com/hackforla/website/pull/2786#pullrequestreview-886735165) at 2022-02-17 05:18 PM PST -JessicaLucindaCheng,2022-02-18T01:19:06Z,- JessicaLucindaCheng closed issue by PR 2786: [2430](https://github.com/hackforla/website/issues/2430#event-6094744786) at 2022-02-17 05:19 PM PST -JessicaLucindaCheng,2022-02-18T01:46:24Z,- JessicaLucindaCheng submitted pull request review: [2788](https://github.com/hackforla/website/pull/2788#pullrequestreview-886748433) at 2022-02-17 05:46 PM PST -JessicaLucindaCheng,2022-02-18T03:08:13Z,- JessicaLucindaCheng commented on pull request: [2779](https://github.com/hackforla/website/pull/2779#issuecomment-1043803984) at 2022-02-17 07:08 PM PST -JessicaLucindaCheng,2022-02-18T03:38:08Z,- JessicaLucindaCheng submitted pull request review: [2779](https://github.com/hackforla/website/pull/2779#pullrequestreview-886797496) at 2022-02-17 07:38 PM PST -JessicaLucindaCheng,2022-02-18T03:38:30Z,- JessicaLucindaCheng closed issue by PR 2779: [2088](https://github.com/hackforla/website/issues/2088#event-6095376975) at 2022-02-17 07:38 PM PST -JessicaLucindaCheng,2022-02-18T22:50:29Z,- JessicaLucindaCheng submitted pull request review: [2788](https://github.com/hackforla/website/pull/2788#pullrequestreview-887819785) at 2022-02-18 02:50 PM PST -JessicaLucindaCheng,2022-02-18T22:50:38Z,- JessicaLucindaCheng closed issue by PR 2788: [2442](https://github.com/hackforla/website/issues/2442#event-6103084670) at 2022-02-18 02:50 PM PST -JessicaLucindaCheng,2022-02-18T22:53:50Z,- JessicaLucindaCheng commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1045306641) at 2022-02-18 02:53 PM PST -JessicaLucindaCheng,2022-02-18T23:28:01Z,- JessicaLucindaCheng submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-887835336) at 2022-02-18 03:28 PM PST -JessicaLucindaCheng,2022-02-19T01:08:12Z,- JessicaLucindaCheng opened issue: [2791](https://github.com/hackforla/website/issues/2791) at 2022-02-18 05:08 PM PST -JessicaLucindaCheng,2022-02-19T01:24:15Z,- JessicaLucindaCheng opened issue: [2792](https://github.com/hackforla/website/issues/2792) at 2022-02-18 05:24 PM PST -JessicaLucindaCheng,2022-02-19T01:28:53Z,- JessicaLucindaCheng opened issue: [2793](https://github.com/hackforla/website/issues/2793) at 2022-02-18 05:28 PM PST -JessicaLucindaCheng,2022-02-19T01:33:03Z,- JessicaLucindaCheng opened issue: [2794](https://github.com/hackforla/website/issues/2794) at 2022-02-18 05:33 PM PST -JessicaLucindaCheng,2022-02-19T01:39:10Z,- JessicaLucindaCheng opened issue: [2795](https://github.com/hackforla/website/issues/2795) at 2022-02-18 05:39 PM PST -JessicaLucindaCheng,2022-02-19T01:45:12Z,- JessicaLucindaCheng opened issue: [2796](https://github.com/hackforla/website/issues/2796) at 2022-02-18 05:45 PM PST -JessicaLucindaCheng,2022-02-19T01:57:02Z,- JessicaLucindaCheng opened issue: [2797](https://github.com/hackforla/website/issues/2797) at 2022-02-18 05:57 PM PST -JessicaLucindaCheng,2022-02-19T02:04:00Z,- JessicaLucindaCheng opened issue: [2798](https://github.com/hackforla/website/issues/2798) at 2022-02-18 06:04 PM PST -JessicaLucindaCheng,2022-02-19T18:47:08Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1046081480) at 2022-02-19 10:47 AM PST -JessicaLucindaCheng,2022-02-19T19:34:43Z,- JessicaLucindaCheng commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1046089520) at 2022-02-19 11:34 AM PST -JessicaLucindaCheng,2022-02-19T19:46:25Z,- JessicaLucindaCheng commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1046091121) at 2022-02-19 11:46 AM PST -JessicaLucindaCheng,2022-02-19T19:46:27Z,- JessicaLucindaCheng reopened issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1046091121) at 2022-02-19 11:46 AM PST -JessicaLucindaCheng,2022-02-19T20:02:29Z,- JessicaLucindaCheng opened issue: [2799](https://github.com/hackforla/website/issues/2799) at 2022-02-19 12:02 PM PST -JessicaLucindaCheng,2022-02-19T20:11:09Z,- JessicaLucindaCheng opened issue: [2800](https://github.com/hackforla/website/issues/2800) at 2022-02-19 12:11 PM PST -JessicaLucindaCheng,2022-02-19T20:38:46Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1046098686) at 2022-02-19 12:38 PM PST -JessicaLucindaCheng,2022-02-19T20:43:06Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1046099273) at 2022-02-19 12:43 PM PST -JessicaLucindaCheng,2022-02-19T20:47:25Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1046099798) at 2022-02-19 12:47 PM PST -JessicaLucindaCheng,2022-02-19T21:48:51Z,- JessicaLucindaCheng opened issue: [2802](https://github.com/hackforla/website/issues/2802) at 2022-02-19 01:48 PM PST -JessicaLucindaCheng,2022-02-19T22:50:07Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1046118792) at 2022-02-19 02:50 PM PST -JessicaLucindaCheng,2022-02-20T16:33:27Z,- JessicaLucindaCheng commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1046274214) at 2022-02-20 08:33 AM PST -JessicaLucindaCheng,2022-02-20T17:41:26Z,- JessicaLucindaCheng commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1046287098) at 2022-02-20 09:41 AM PST -JessicaLucindaCheng,2022-02-20T18:18:05Z,- JessicaLucindaCheng commented on pull request: [2789](https://github.com/hackforla/website/pull/2789#issuecomment-1046293320) at 2022-02-20 10:18 AM PST -JessicaLucindaCheng,2022-02-20T20:23:17Z,- JessicaLucindaCheng commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046313877) at 2022-02-20 12:23 PM PST -JessicaLucindaCheng,2022-02-22T23:54:00Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1048321899) at 2022-02-22 03:54 PM PST -JessicaLucindaCheng,2022-02-22T23:56:54Z,- JessicaLucindaCheng commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1048323245) at 2022-02-22 03:56 PM PST -JessicaLucindaCheng,2022-02-23T00:25:16Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1048338806) at 2022-02-22 04:25 PM PST -JessicaLucindaCheng,2022-02-23T00:55:26Z,- JessicaLucindaCheng submitted pull request review: [2772](https://github.com/hackforla/website/pull/2772#pullrequestreview-890526974) at 2022-02-22 04:55 PM PST -JessicaLucindaCheng,2022-02-23T02:58:23Z,- JessicaLucindaCheng commented on pull request: [2789](https://github.com/hackforla/website/pull/2789#issuecomment-1048406669) at 2022-02-22 06:58 PM PST -JessicaLucindaCheng,2022-02-23T08:30:43Z,- JessicaLucindaCheng pull request merged: [2761](https://github.com/hackforla/website/pull/2761#event-6123238730) at 2022-02-23 12:30 AM PST -JessicaLucindaCheng,2022-02-23T19:35:36Z,- JessicaLucindaCheng submitted pull request review: [2789](https://github.com/hackforla/website/pull/2789#pullrequestreview-891585817) at 2022-02-23 11:35 AM PST -JessicaLucindaCheng,2022-02-23T19:36:20Z,- JessicaLucindaCheng closed issue by PR 2789: [2159](https://github.com/hackforla/website/issues/2159#event-6127507140) at 2022-02-23 11:36 AM PST -JessicaLucindaCheng,2022-02-23T21:12:42Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1049220909) at 2022-02-23 01:12 PM PST -JessicaLucindaCheng,2022-02-23T22:08:23Z,- JessicaLucindaCheng submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-891755034) at 2022-02-23 02:08 PM PST -JessicaLucindaCheng,2022-02-23T22:12:24Z,- JessicaLucindaCheng reopened pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1049256804) at 2022-02-23 02:12 PM PST -JessicaLucindaCheng,2022-02-23T22:13:40Z,- JessicaLucindaCheng commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1049265748) at 2022-02-23 02:13 PM PST -JessicaLucindaCheng,2022-02-23T22:26:10Z,- JessicaLucindaCheng submitted pull request review: [2841](https://github.com/hackforla/website/pull/2841#pullrequestreview-891770671) at 2022-02-23 02:26 PM PST -JessicaLucindaCheng,2022-02-23T22:26:24Z,- JessicaLucindaCheng closed issue by PR 2841: [2426](https://github.com/hackforla/website/issues/2426#event-6128369628) at 2022-02-23 02:26 PM PST -JessicaLucindaCheng,2022-02-23T22:36:33Z,- JessicaLucindaCheng commented on pull request: [2854](https://github.com/hackforla/website/pull/2854#issuecomment-1049283004) at 2022-02-23 02:36 PM PST -JessicaLucindaCheng,2022-02-23T23:10:05Z,- JessicaLucindaCheng commented on issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049305628) at 2022-02-23 03:10 PM PST -JessicaLucindaCheng,2022-02-23T23:13:09Z,- JessicaLucindaCheng commented on pull request: [2872](https://github.com/hackforla/website/pull/2872#issuecomment-1049307704) at 2022-02-23 03:13 PM PST -JessicaLucindaCheng,2022-02-23T23:23:12Z,- JessicaLucindaCheng opened pull request: [2880](https://github.com/hackforla/website/pull/2880) at 2022-02-23 03:23 PM PST -JessicaLucindaCheng,2022-02-24T20:07:29Z,- JessicaLucindaCheng commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1050219151) at 2022-02-24 12:07 PM PST -JessicaLucindaCheng,2022-02-24T20:18:18Z,- JessicaLucindaCheng submitted pull request review: [2862](https://github.com/hackforla/website/pull/2862#pullrequestreview-892951862) at 2022-02-24 12:18 PM PST -JessicaLucindaCheng,2022-02-24T20:36:21Z,- JessicaLucindaCheng commented on issue: [2721](https://github.com/hackforla/website/issues/2721#issuecomment-1050240767) at 2022-02-24 12:36 PM PST -JessicaLucindaCheng,2022-02-24T20:59:36Z,- JessicaLucindaCheng submitted pull request review: [2879](https://github.com/hackforla/website/pull/2879#pullrequestreview-892992936) at 2022-02-24 12:59 PM PST -JessicaLucindaCheng,2022-02-24T21:00:46Z,- JessicaLucindaCheng closed issue by PR 2879: [2721](https://github.com/hackforla/website/issues/2721#event-6135056733) at 2022-02-24 01:00 PM PST -JessicaLucindaCheng,2022-02-24T22:15:59Z,- JessicaLucindaCheng commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1050317245) at 2022-02-24 02:15 PM PST -JessicaLucindaCheng,2022-02-24T22:55:25Z,- JessicaLucindaCheng submitted pull request review: [2881](https://github.com/hackforla/website/pull/2881#pullrequestreview-893097195) at 2022-02-24 02:55 PM PST -JessicaLucindaCheng,2022-02-24T23:05:14Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1050347944) at 2022-02-24 03:05 PM PST -JessicaLucindaCheng,2022-02-25T00:26:45Z,- JessicaLucindaCheng commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1050392158) at 2022-02-24 04:26 PM PST -JessicaLucindaCheng,2022-02-25T00:33:36Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1050396168) at 2022-02-24 04:33 PM PST -JessicaLucindaCheng,2022-02-25T00:45:39Z,- JessicaLucindaCheng commented on issue: [2639](https://github.com/hackforla/website/issues/2639#issuecomment-1050404795) at 2022-02-24 04:45 PM PST -JessicaLucindaCheng,2022-02-25T01:44:13Z,- JessicaLucindaCheng commented on pull request: [2883](https://github.com/hackforla/website/pull/2883#issuecomment-1050433551) at 2022-02-24 05:44 PM PST -JessicaLucindaCheng,2022-02-25T01:46:51Z,- JessicaLucindaCheng commented on pull request: [2883](https://github.com/hackforla/website/pull/2883#issuecomment-1050434693) at 2022-02-24 05:46 PM PST -JessicaLucindaCheng,2022-02-25T02:07:21Z,- JessicaLucindaCheng commented on issue: [2639](https://github.com/hackforla/website/issues/2639#issuecomment-1050444672) at 2022-02-24 06:07 PM PST -JessicaLucindaCheng,2022-02-25T02:07:21Z,- JessicaLucindaCheng closed issue as completed: [2639](https://github.com/hackforla/website/issues/2639#event-6136318302) at 2022-02-24 06:07 PM PST -JessicaLucindaCheng,2022-02-25T02:59:16Z,- JessicaLucindaCheng opened issue: [2886](https://github.com/hackforla/website/issues/2886) at 2022-02-24 06:59 PM PST -JessicaLucindaCheng,2022-02-25T20:16:59Z,- JessicaLucindaCheng commented on pull request: [2880](https://github.com/hackforla/website/pull/2880#issuecomment-1051205913) at 2022-02-25 12:16 PM PST -JessicaLucindaCheng,2022-02-25T20:46:18Z,- JessicaLucindaCheng submitted pull request review: [2883](https://github.com/hackforla/website/pull/2883#pullrequestreview-894218410) at 2022-02-25 12:46 PM PST -JessicaLucindaCheng,2022-02-25T20:46:26Z,- JessicaLucindaCheng closed issue by PR 2883: [2791](https://github.com/hackforla/website/issues/2791#event-6141862129) at 2022-02-25 12:46 PM PST -JessicaLucindaCheng,2022-02-25T21:12:24Z,- JessicaLucindaCheng commented on issue: [2887](https://github.com/hackforla/website/issues/2887#issuecomment-1051271331) at 2022-02-25 01:12 PM PST -JessicaLucindaCheng,2022-02-25T21:57:46Z,- JessicaLucindaCheng submitted pull request review: [2885](https://github.com/hackforla/website/pull/2885#pullrequestreview-894270809) at 2022-02-25 01:57 PM PST -JessicaLucindaCheng,2022-02-25T23:05:32Z,- JessicaLucindaCheng submitted pull request review: [2881](https://github.com/hackforla/website/pull/2881#pullrequestreview-894308566) at 2022-02-25 03:05 PM PST -JessicaLucindaCheng,2022-02-25T23:05:43Z,- JessicaLucindaCheng closed issue by PR 2881: [2726](https://github.com/hackforla/website/issues/2726#event-6142369959) at 2022-02-25 03:05 PM PST -JessicaLucindaCheng,2022-02-25T23:16:03Z,- JessicaLucindaCheng commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1051349764) at 2022-02-25 03:16 PM PST -JessicaLucindaCheng,2022-02-25T23:26:57Z,- JessicaLucindaCheng commented on issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1051360129) at 2022-02-25 03:26 PM PST -JessicaLucindaCheng,2022-02-25T23:26:57Z,- JessicaLucindaCheng reopened issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1051360129) at 2022-02-25 03:26 PM PST -JessicaLucindaCheng,2022-02-25T23:31:26Z,- JessicaLucindaCheng commented on issue: [2083](https://github.com/hackforla/website/issues/2083#issuecomment-1051362772) at 2022-02-25 03:31 PM PST -JessicaLucindaCheng,2022-02-25T23:34:18Z,- JessicaLucindaCheng commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1051364362) at 2022-02-25 03:34 PM PST -JessicaLucindaCheng,2022-02-25T23:34:31Z,- JessicaLucindaCheng reopened issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1051364362) at 2022-02-25 03:34 PM PST -JessicaLucindaCheng,2022-02-26T00:23:39Z,- JessicaLucindaCheng commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1051393045) at 2022-02-25 04:23 PM PST -JessicaLucindaCheng,2022-02-26T00:26:48Z,- JessicaLucindaCheng commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1051394359) at 2022-02-25 04:26 PM PST -JessicaLucindaCheng,2022-02-26T00:54:27Z,- JessicaLucindaCheng commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1051405799) at 2022-02-25 04:54 PM PST -JessicaLucindaCheng,2022-02-26T00:59:16Z,- JessicaLucindaCheng commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1051407505) at 2022-02-25 04:59 PM PST -JessicaLucindaCheng,2022-02-26T01:03:18Z,- JessicaLucindaCheng commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1051409104) at 2022-02-25 05:03 PM PST -JessicaLucindaCheng,2022-02-26T01:10:43Z,- JessicaLucindaCheng commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1051411908) at 2022-02-25 05:10 PM PST -JessicaLucindaCheng,2022-02-26T01:15:06Z,- JessicaLucindaCheng commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1051413924) at 2022-02-25 05:15 PM PST -JessicaLucindaCheng,2022-02-26T01:19:17Z,- JessicaLucindaCheng commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1051415713) at 2022-02-25 05:19 PM PST -JessicaLucindaCheng,2022-02-26T01:19:31Z,- JessicaLucindaCheng commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1051415811) at 2022-02-25 05:19 PM PST -JessicaLucindaCheng,2022-02-26T01:26:13Z,- JessicaLucindaCheng commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1051420361) at 2022-02-25 05:26 PM PST -JessicaLucindaCheng,2022-02-26T01:30:33Z,- JessicaLucindaCheng commented on issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1051422530) at 2022-02-25 05:30 PM PST -JessicaLucindaCheng,2022-02-26T01:34:09Z,- JessicaLucindaCheng commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1051424385) at 2022-02-25 05:34 PM PST -JessicaLucindaCheng,2022-02-26T01:40:13Z,- JessicaLucindaCheng closed issue as completed: [2524](https://github.com/hackforla/website/issues/2524#event-6142734968) at 2022-02-25 05:40 PM PST -JessicaLucindaCheng,2022-02-26T02:38:33Z,- JessicaLucindaCheng commented on issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1051487459) at 2022-02-25 06:38 PM PST -JessicaLucindaCheng,2022-02-26T04:07:12Z,- JessicaLucindaCheng opened issue: [2890](https://github.com/hackforla/website/issues/2890) at 2022-02-25 08:07 PM PST -JessicaLucindaCheng,2022-02-26T05:39:59Z,- JessicaLucindaCheng opened issue: [2891](https://github.com/hackforla/website/issues/2891) at 2022-02-25 09:39 PM PST -JessicaLucindaCheng,2022-02-26T06:01:37Z,- JessicaLucindaCheng opened issue: [2892](https://github.com/hackforla/website/issues/2892) at 2022-02-25 10:01 PM PST -JessicaLucindaCheng,2022-02-26T18:56:43Z,- JessicaLucindaCheng submitted pull request review: [2885](https://github.com/hackforla/website/pull/2885#pullrequestreview-894432157) at 2022-02-26 10:56 AM PST -JessicaLucindaCheng,2022-02-26T18:56:50Z,- JessicaLucindaCheng closed issue by PR 2885: [2273](https://github.com/hackforla/website/issues/2273#event-6146530928) at 2022-02-26 10:56 AM PST -JessicaLucindaCheng,2022-02-26T19:19:44Z,- JessicaLucindaCheng submitted pull request review: [2884](https://github.com/hackforla/website/pull/2884#pullrequestreview-894433736) at 2022-02-26 11:19 AM PST -JessicaLucindaCheng,2022-02-26T19:32:45Z,- JessicaLucindaCheng commented on issue: [2717](https://github.com/hackforla/website/issues/2717#issuecomment-1052502572) at 2022-02-26 11:32 AM PST -JessicaLucindaCheng,2022-02-26T19:32:45Z,- JessicaLucindaCheng closed issue as completed: [2717](https://github.com/hackforla/website/issues/2717#event-6146680989) at 2022-02-26 11:32 AM PST -JessicaLucindaCheng,2022-02-26T19:49:36Z,- JessicaLucindaCheng commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1052523087) at 2022-02-26 11:49 AM PST -JessicaLucindaCheng,2022-02-26T22:31:15Z,- JessicaLucindaCheng commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1052717367) at 2022-02-26 02:31 PM PST -JessicaLucindaCheng,2022-02-26T22:32:21Z,- JessicaLucindaCheng commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1052718719) at 2022-02-26 02:32 PM PST -JessicaLucindaCheng,2022-02-27T00:10:37Z,- JessicaLucindaCheng commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1052828920) at 2022-02-26 04:10 PM PST -JessicaLucindaCheng,2022-02-27T02:12:34Z,- JessicaLucindaCheng commented on issue: [2744](https://github.com/hackforla/website/issues/2744#issuecomment-1052956499) at 2022-02-26 06:12 PM PST -JessicaLucindaCheng,2022-02-27T04:53:31Z,- JessicaLucindaCheng opened issue: [2895](https://github.com/hackforla/website/issues/2895) at 2022-02-26 08:53 PM PST -JessicaLucindaCheng,2022-02-27T18:25:56Z,- JessicaLucindaCheng commented on pull request: [2894](https://github.com/hackforla/website/pull/2894#issuecomment-1053638726) at 2022-02-27 10:25 AM PST -JessicaLucindaCheng,2022-02-28T19:55:16Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1054608495) at 2022-02-28 11:55 AM PST -JessicaLucindaCheng,2022-02-28T20:40:34Z,- JessicaLucindaCheng submitted pull request review: [2889](https://github.com/hackforla/website/pull/2889#pullrequestreview-895571622) at 2022-02-28 12:40 PM PST -JessicaLucindaCheng,2022-02-28T21:05:08Z,- JessicaLucindaCheng commented on pull request: [2899](https://github.com/hackforla/website/pull/2899#issuecomment-1054660723) at 2022-02-28 01:05 PM PST -JessicaLucindaCheng,2022-02-28T21:59:57Z,- JessicaLucindaCheng submitted pull request review: [2889](https://github.com/hackforla/website/pull/2889#pullrequestreview-895639012) at 2022-02-28 01:59 PM PST -JessicaLucindaCheng,2022-02-28T22:00:39Z,- JessicaLucindaCheng closed issue by PR 2889: [2083](https://github.com/hackforla/website/issues/2083#event-6157786961) at 2022-02-28 02:00 PM PST -JessicaLucindaCheng,2022-03-01T03:51:46Z,- JessicaLucindaCheng submitted pull request review: [2899](https://github.com/hackforla/website/pull/2899#pullrequestreview-895830130) at 2022-02-28 07:51 PM PST -JessicaLucindaCheng,2022-03-01T03:51:55Z,- JessicaLucindaCheng closed issue by PR 2899: [2283](https://github.com/hackforla/website/issues/2283#event-6159086068) at 2022-02-28 07:51 PM PST -JessicaLucindaCheng,2022-03-01T04:01:57Z,- JessicaLucindaCheng opened issue: [2904](https://github.com/hackforla/website/issues/2904) at 2022-02-28 08:01 PM PST -JessicaLucindaCheng,2022-03-01T20:53:08Z,- JessicaLucindaCheng submitted pull request review: [2894](https://github.com/hackforla/website/pull/2894#pullrequestreview-896809929) at 2022-03-01 12:53 PM PST -JessicaLucindaCheng,2022-03-01T20:53:19Z,- JessicaLucindaCheng closed issue by PR 2894: [2743](https://github.com/hackforla/website/issues/2743#event-6164828520) at 2022-03-01 12:53 PM PST -JessicaLucindaCheng,2022-03-01T22:58:26Z,- JessicaLucindaCheng closed issue by PR 2882: [2480](https://github.com/hackforla/website/issues/2480#event-6165449930) at 2022-03-01 02:58 PM PST -JessicaLucindaCheng,2022-03-01T23:25:03Z,- JessicaLucindaCheng commented on issue: [2907](https://github.com/hackforla/website/issues/2907#issuecomment-1055963857) at 2022-03-01 03:25 PM PST -JessicaLucindaCheng,2022-03-01T23:40:27Z,- JessicaLucindaCheng commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1055975443) at 2022-03-01 03:40 PM PST -JessicaLucindaCheng,2022-03-02T01:50:28Z,- JessicaLucindaCheng submitted pull request review: [2905](https://github.com/hackforla/website/pull/2905#pullrequestreview-897013316) at 2022-03-01 05:50 PM PST -JessicaLucindaCheng,2022-03-02T21:04:08Z,- JessicaLucindaCheng commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057382063) at 2022-03-02 01:04 PM PST -JessicaLucindaCheng,2022-03-02T21:30:53Z,- JessicaLucindaCheng submitted pull request review: [2905](https://github.com/hackforla/website/pull/2905#pullrequestreview-898196835) at 2022-03-02 01:30 PM PST -JessicaLucindaCheng,2022-03-02T21:31:23Z,- JessicaLucindaCheng closed issue by PR 2905: [2744](https://github.com/hackforla/website/issues/2744#event-6174014499) at 2022-03-02 01:31 PM PST -JessicaLucindaCheng,2022-03-02T23:15:25Z,- JessicaLucindaCheng commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-1057485910) at 2022-03-02 03:15 PM PST -JessicaLucindaCheng,2022-03-02T23:32:49Z,- JessicaLucindaCheng commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1057496142) at 2022-03-02 03:32 PM PST -JessicaLucindaCheng,2022-03-03T02:16:05Z,- JessicaLucindaCheng pull request merged: [2880](https://github.com/hackforla/website/pull/2880#event-6175046768) at 2022-03-02 06:16 PM PST -JessicaLucindaCheng,2022-03-03T02:32:26Z,- JessicaLucindaCheng assigned to issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1023676369) at 2022-03-02 06:32 PM PST -JessicaLucindaCheng,2022-03-03T03:02:56Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1057618605) at 2022-03-02 07:02 PM PST -JessicaLucindaCheng,2022-03-03T04:56:42Z,- JessicaLucindaCheng commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057666674) at 2022-03-02 08:56 PM PST -JessicaLucindaCheng,2022-03-03T07:44:35Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1057762511) at 2022-03-02 11:44 PM PST -JessicaLucindaCheng,2022-03-03T08:05:09Z,- JessicaLucindaCheng commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057780267) at 2022-03-03 12:05 AM PST -JessicaLucindaCheng,2022-03-03T22:07:02Z,- JessicaLucindaCheng commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1058541936) at 2022-03-03 02:07 PM PST -JessicaLucindaCheng,2022-03-03T22:26:14Z,- JessicaLucindaCheng opened issue: [2920](https://github.com/hackforla/website/issues/2920) at 2022-03-03 02:26 PM PST -JessicaLucindaCheng,2022-03-03T22:30:59Z,- JessicaLucindaCheng opened issue: [2921](https://github.com/hackforla/website/issues/2921) at 2022-03-03 02:30 PM PST -JessicaLucindaCheng,2022-03-03T22:34:53Z,- JessicaLucindaCheng opened issue: [2922](https://github.com/hackforla/website/issues/2922) at 2022-03-03 02:34 PM PST -JessicaLucindaCheng,2022-03-03T22:49:45Z,- JessicaLucindaCheng opened issue: [2923](https://github.com/hackforla/website/issues/2923) at 2022-03-03 02:49 PM PST -JessicaLucindaCheng,2022-03-03T22:58:44Z,- JessicaLucindaCheng opened issue: [2924](https://github.com/hackforla/website/issues/2924) at 2022-03-03 02:58 PM PST -JessicaLucindaCheng,2022-03-03T23:02:17Z,- JessicaLucindaCheng opened issue: [2925](https://github.com/hackforla/website/issues/2925) at 2022-03-03 03:02 PM PST -JessicaLucindaCheng,2022-03-03T23:06:30Z,- JessicaLucindaCheng opened issue: [2926](https://github.com/hackforla/website/issues/2926) at 2022-03-03 03:06 PM PST -JessicaLucindaCheng,2022-03-03T23:10:15Z,- JessicaLucindaCheng opened issue: [2927](https://github.com/hackforla/website/issues/2927) at 2022-03-03 03:10 PM PST -JessicaLucindaCheng,2022-03-04T20:23:53Z,- JessicaLucindaCheng commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1059496179) at 2022-03-04 12:23 PM PST -JessicaLucindaCheng,2022-03-04T21:12:59Z,- JessicaLucindaCheng submitted pull request review: [2918](https://github.com/hackforla/website/pull/2918#pullrequestreview-900725710) at 2022-03-04 01:12 PM PST -JessicaLucindaCheng,2022-03-04T21:14:58Z,- JessicaLucindaCheng commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1059535552) at 2022-03-04 01:14 PM PST -JessicaLucindaCheng,2022-03-04T21:22:33Z,- JessicaLucindaCheng commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1059541351) at 2022-03-04 01:22 PM PST -JessicaLucindaCheng,2022-03-04T21:25:34Z,- JessicaLucindaCheng commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1059542944) at 2022-03-04 01:25 PM PST -JessicaLucindaCheng,2022-03-04T22:53:11Z,- JessicaLucindaCheng commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-1059588454) at 2022-03-04 02:53 PM PST -JessicaLucindaCheng,2022-03-04T22:56:08Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1059589633) at 2022-03-04 02:56 PM PST -JessicaLucindaCheng,2022-03-05T01:08:00Z,- JessicaLucindaCheng commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1059635161) at 2022-03-04 05:08 PM PST -JessicaLucindaCheng,2022-03-05T01:33:18Z,- JessicaLucindaCheng commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1059642726) at 2022-03-04 05:33 PM PST -JessicaLucindaCheng,2022-03-05T01:33:18Z,- JessicaLucindaCheng reopened issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1059642726) at 2022-03-04 05:33 PM PST -JessicaLucindaCheng,2022-03-05T18:43:26Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1059813305) at 2022-03-05 10:43 AM PST -JessicaLucindaCheng,2022-03-05T19:51:16Z,- JessicaLucindaCheng opened issue: [2928](https://github.com/hackforla/website/issues/2928) at 2022-03-05 11:51 AM PST -JessicaLucindaCheng,2022-03-05T20:14:07Z,- JessicaLucindaCheng opened issue: [2929](https://github.com/hackforla/website/issues/2929) at 2022-03-05 12:14 PM PST -JessicaLucindaCheng,2022-03-05T20:29:55Z,- JessicaLucindaCheng commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1059827125) at 2022-03-05 12:29 PM PST -JessicaLucindaCheng,2022-03-05T20:29:55Z,- JessicaLucindaCheng closed issue as completed: [2560](https://github.com/hackforla/website/issues/2560#event-6189838936) at 2022-03-05 12:29 PM PST -JessicaLucindaCheng,2022-03-05T22:04:26Z,- JessicaLucindaCheng opened issue: [2930](https://github.com/hackforla/website/issues/2930) at 2022-03-05 02:04 PM PST -JessicaLucindaCheng,2022-03-05T22:06:17Z,- JessicaLucindaCheng opened issue: [2931](https://github.com/hackforla/website/issues/2931) at 2022-03-05 02:06 PM PST -JessicaLucindaCheng,2022-03-06T00:53:20Z,- JessicaLucindaCheng opened issue: [2935](https://github.com/hackforla/website/issues/2935) at 2022-03-05 04:53 PM PST -JessicaLucindaCheng,2022-03-06T17:08:26Z,- JessicaLucindaCheng closed issue as completed: [2935](https://github.com/hackforla/website/issues/2935#event-6190841712) at 2022-03-06 09:08 AM PST -JessicaLucindaCheng,2022-03-06T21:23:20Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1060041771) at 2022-03-06 01:23 PM PST -JessicaLucindaCheng,2022-03-06T22:31:22Z,- JessicaLucindaCheng commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1060052110) at 2022-03-06 02:31 PM PST -JessicaLucindaCheng,2022-03-07T09:35:43Z,- JessicaLucindaCheng commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1060391670) at 2022-03-07 01:35 AM PST -JessicaLucindaCheng,2022-03-07T22:33:25Z,- JessicaLucindaCheng commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1061208793) at 2022-03-07 02:33 PM PST -JessicaLucindaCheng,2022-03-07T23:39:29Z,- JessicaLucindaCheng commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1061253843) at 2022-03-07 03:39 PM PST -JessicaLucindaCheng,2022-03-08T21:04:38Z,- JessicaLucindaCheng commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1062207320) at 2022-03-08 01:04 PM PST -JessicaLucindaCheng,2022-03-08T21:45:04Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1062242929) at 2022-03-08 01:45 PM PST -JessicaLucindaCheng,2022-03-08T22:49:04Z,- JessicaLucindaCheng commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1062307635) at 2022-03-08 02:49 PM PST -JessicaLucindaCheng,2022-03-09T00:13:26Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1062417163) at 2022-03-08 04:13 PM PST -JessicaLucindaCheng,2022-03-09T10:18:09Z,- JessicaLucindaCheng assigned to issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1023531237) at 2022-03-09 02:18 AM PST -JessicaLucindaCheng,2022-03-10T00:06:05Z,- JessicaLucindaCheng commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1063502621) at 2022-03-09 04:06 PM PST -JessicaLucindaCheng,2022-03-11T01:27:36Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1064680635) at 2022-03-10 05:27 PM PST -JessicaLucindaCheng,2022-03-11T02:10:10Z,- JessicaLucindaCheng commented on issue: [2674](https://github.com/hackforla/website/issues/2674#issuecomment-1064700517) at 2022-03-10 06:10 PM PST -JessicaLucindaCheng,2022-03-11T07:00:59Z,- JessicaLucindaCheng assigned to issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1058768426) at 2022-03-10 11:00 PM PST -JessicaLucindaCheng,2022-03-11T19:35:07Z,- JessicaLucindaCheng submitted pull request review: [2772](https://github.com/hackforla/website/pull/2772#pullrequestreview-907646987) at 2022-03-11 11:35 AM PST -JessicaLucindaCheng,2022-03-11T19:35:52Z,- JessicaLucindaCheng closed issue by PR 2772: [2242](https://github.com/hackforla/website/issues/2242#event-6227094510) at 2022-03-11 11:35 AM PST -JessicaLucindaCheng,2022-03-11T22:49:55Z,- JessicaLucindaCheng commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1065613339) at 2022-03-11 02:49 PM PST -JessicaLucindaCheng,2022-03-11T22:52:21Z,- JessicaLucindaCheng commented on issue: [2759](https://github.com/hackforla/website/issues/2759#issuecomment-1065614494) at 2022-03-11 02:52 PM PST -JessicaLucindaCheng,2022-03-11T22:52:21Z,- JessicaLucindaCheng closed issue as completed: [2759](https://github.com/hackforla/website/issues/2759#event-6228228327) at 2022-03-11 02:52 PM PST -JessicaLucindaCheng,2022-03-12T00:03:34Z,- JessicaLucindaCheng commented on pull request: [2969](https://github.com/hackforla/website/pull/2969#issuecomment-1065682110) at 2022-03-11 05:03 PM PDT -JessicaLucindaCheng,2022-03-12T02:15:13Z,- JessicaLucindaCheng commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1065790456) at 2022-03-11 07:15 PM PDT -JessicaLucindaCheng,2022-03-12T02:15:13Z,- JessicaLucindaCheng closed issue as completed: [2401](https://github.com/hackforla/website/issues/2401#event-6229019858) at 2022-03-11 07:15 PM PDT -JessicaLucindaCheng,2022-03-12T02:20:35Z,- JessicaLucindaCheng assigned to issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1065782689) at 2022-03-11 07:20 PM PDT -JessicaLucindaCheng,2022-03-12T02:20:58Z,- JessicaLucindaCheng commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1065791566) at 2022-03-11 07:20 PM PDT -JessicaLucindaCheng,2022-03-12T03:24:33Z,- JessicaLucindaCheng commented on issue: [2896](https://github.com/hackforla/website/issues/2896#issuecomment-1065802322) at 2022-03-11 08:24 PM PDT -JessicaLucindaCheng,2022-03-12T07:12:34Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1065831035) at 2022-03-12 12:12 AM PDT -JessicaLucindaCheng,2022-03-12T20:42:38Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1065959398) at 2022-03-12 01:42 PM PDT -JessicaLucindaCheng,2022-03-12T20:55:16Z,- JessicaLucindaCheng commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1065961115) at 2022-03-12 01:55 PM PDT -JessicaLucindaCheng,2022-03-12T21:03:12Z,- JessicaLucindaCheng closed issue as completed: [2770](https://github.com/hackforla/website/issues/2770#event-6230255479) at 2022-03-12 02:03 PM PDT -JessicaLucindaCheng,2022-03-12T21:17:35Z,- JessicaLucindaCheng reopened issue: [2770](https://github.com/hackforla/website/issues/2770#event-6230255479) at 2022-03-12 02:17 PM PDT -JessicaLucindaCheng,2022-03-12T22:26:11Z,- JessicaLucindaCheng commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1065975914) at 2022-03-12 03:26 PM PDT -JessicaLucindaCheng,2022-03-12T22:46:15Z,- JessicaLucindaCheng commented on issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1065978465) at 2022-03-12 03:46 PM PDT -JessicaLucindaCheng,2022-03-12T22:46:15Z,- JessicaLucindaCheng closed issue by PR 2757: [2754](https://github.com/hackforla/website/issues/2754#event-6230371641) at 2022-03-12 03:46 PM PDT -JessicaLucindaCheng,2022-03-12T22:55:46Z,- JessicaLucindaCheng opened issue: [2972](https://github.com/hackforla/website/issues/2972) at 2022-03-12 03:55 PM PDT -JessicaLucindaCheng,2022-03-12T22:57:06Z,- JessicaLucindaCheng commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1065979991) at 2022-03-12 03:57 PM PDT -JessicaLucindaCheng,2022-03-12T22:57:07Z,- JessicaLucindaCheng closed issue by PR 2672: [2397](https://github.com/hackforla/website/issues/2397#event-6230382221) at 2022-03-12 03:57 PM PDT -JessicaLucindaCheng,2022-03-13T16:56:30Z,- JessicaLucindaCheng submitted pull request review: [2971](https://github.com/hackforla/website/pull/2971#pullrequestreview-908163407) at 2022-03-13 09:56 AM PDT -JessicaLucindaCheng,2022-03-13T16:56:39Z,- JessicaLucindaCheng closed issue by PR 2971: [2792](https://github.com/hackforla/website/issues/2792#event-6231362757) at 2022-03-13 09:56 AM PDT -JessicaLucindaCheng,2022-03-13T17:29:01Z,- JessicaLucindaCheng commented on pull request: [2967](https://github.com/hackforla/website/pull/2967#issuecomment-1066146674) at 2022-03-13 10:29 AM PDT -JessicaLucindaCheng,2022-03-13T17:30:02Z,- JessicaLucindaCheng commented on pull request: [2969](https://github.com/hackforla/website/pull/2969#issuecomment-1066146838) at 2022-03-13 10:30 AM PDT -JessicaLucindaCheng,2022-03-14T23:42:23Z,- JessicaLucindaCheng submitted pull request review: [2973](https://github.com/hackforla/website/pull/2973#pullrequestreview-909512564) at 2022-03-14 04:42 PM PDT -JessicaLucindaCheng,2022-03-15T00:13:48Z,- JessicaLucindaCheng commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1067431093) at 2022-03-14 05:13 PM PDT -JessicaLucindaCheng,2022-03-15T00:14:55Z,- JessicaLucindaCheng commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1067431699) at 2022-03-14 05:14 PM PDT -JessicaLucindaCheng,2022-03-15T20:55:57Z,- JessicaLucindaCheng commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1068465248) at 2022-03-15 01:55 PM PDT -JessicaLucindaCheng,2022-03-15T21:16:53Z,- JessicaLucindaCheng submitted pull request review: [2973](https://github.com/hackforla/website/pull/2973#pullrequestreview-910842025) at 2022-03-15 02:16 PM PDT -JessicaLucindaCheng,2022-03-15T21:17:15Z,- JessicaLucindaCheng closed issue by PR 2973: [2720](https://github.com/hackforla/website/issues/2720#event-6246521267) at 2022-03-15 02:17 PM PDT -JessicaLucindaCheng,2022-03-15T22:17:34Z,- JessicaLucindaCheng commented on issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-1068521748) at 2022-03-15 03:17 PM PDT -JessicaLucindaCheng,2022-03-16T21:04:40Z,- JessicaLucindaCheng commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1069631200) at 2022-03-16 02:04 PM PDT -JessicaLucindaCheng,2022-03-16T21:14:35Z,- JessicaLucindaCheng closed issue by PR 2970: [2896](https://github.com/hackforla/website/issues/2896#event-6254038114) at 2022-03-16 02:14 PM PDT -JessicaLucindaCheng,2022-03-17T01:30:52Z,- JessicaLucindaCheng commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1069813934) at 2022-03-16 06:30 PM PDT -JessicaLucindaCheng,2022-03-17T22:56:56Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1071742247) at 2022-03-17 03:56 PM PDT -JessicaLucindaCheng,2022-03-17T23:06:02Z,- JessicaLucindaCheng commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1071765130) at 2022-03-17 04:06 PM PDT -JessicaLucindaCheng,2022-03-18T13:37:36Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1072419278) at 2022-03-18 06:37 AM PDT -JessicaLucindaCheng,2022-03-18T13:43:21Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1072424213) at 2022-03-18 06:43 AM PDT -JessicaLucindaCheng,2022-03-18T13:45:12Z,- JessicaLucindaCheng commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1072425762) at 2022-03-18 06:45 AM PDT -JessicaLucindaCheng,2022-03-18T14:06:13Z,- JessicaLucindaCheng submitted pull request review: [2967](https://github.com/hackforla/website/pull/2967#pullrequestreview-914406825) at 2022-03-18 07:06 AM PDT -JessicaLucindaCheng,2022-03-18T14:06:58Z,- JessicaLucindaCheng closed issue by PR 2967: [2605](https://github.com/hackforla/website/issues/2605#event-6266442044) at 2022-03-18 07:06 AM PDT -JessicaLucindaCheng,2022-03-19T05:01:19Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1072941690) at 2022-03-18 10:01 PM PDT -JessicaLucindaCheng,2022-03-19T05:12:17Z,- JessicaLucindaCheng commented on issue: [2771](https://github.com/hackforla/website/issues/2771#issuecomment-1072943190) at 2022-03-18 10:12 PM PDT -JessicaLucindaCheng,2022-03-19T05:12:17Z,- JessicaLucindaCheng closed issue as completed: [2771](https://github.com/hackforla/website/issues/2771#event-6269518194) at 2022-03-18 10:12 PM PDT -JessicaLucindaCheng,2022-03-19T19:40:44Z,- JessicaLucindaCheng commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1073070352) at 2022-03-19 12:40 PM PDT -JessicaLucindaCheng,2022-03-19T20:09:05Z,- JessicaLucindaCheng commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1073073876) at 2022-03-19 01:09 PM PDT -JessicaLucindaCheng,2022-03-19T20:15:21Z,- JessicaLucindaCheng commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1073074590) at 2022-03-19 01:15 PM PDT -JessicaLucindaCheng,2022-03-19T22:20:00Z,- JessicaLucindaCheng commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1073121240) at 2022-03-19 03:20 PM PDT -JessicaLucindaCheng,2022-03-20T16:10:18Z,- JessicaLucindaCheng commented on issue: [2895](https://github.com/hackforla/website/issues/2895#issuecomment-1073282845) at 2022-03-20 09:10 AM PDT -JessicaLucindaCheng,2022-03-23T00:41:38Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1075790037) at 2022-03-22 05:41 PM PDT -JessicaLucindaCheng,2022-03-23T00:46:04Z,- JessicaLucindaCheng commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1075792069) at 2022-03-22 05:46 PM PDT -JessicaLucindaCheng,2022-03-23T00:47:35Z,- JessicaLucindaCheng commented on pull request: [2997](https://github.com/hackforla/website/pull/2997#issuecomment-1075792717) at 2022-03-22 05:47 PM PDT -JessicaLucindaCheng,2022-03-23T21:19:32Z,- JessicaLucindaCheng commented on pull request: [3006](https://github.com/hackforla/website/pull/3006#issuecomment-1076830905) at 2022-03-23 02:19 PM PDT -JessicaLucindaCheng,2022-03-23T23:08:58Z,- JessicaLucindaCheng commented on issue: [2760](https://github.com/hackforla/website/issues/2760#issuecomment-1076906128) at 2022-03-23 04:08 PM PDT -JessicaLucindaCheng,2022-03-24T02:59:51Z,- JessicaLucindaCheng closed issue by PR 3006: [2911](https://github.com/hackforla/website/issues/2911#event-6296102899) at 2022-03-23 07:59 PM PDT -JessicaLucindaCheng,2022-03-24T04:56:44Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1077115270) at 2022-03-23 09:56 PM PDT -JessicaLucindaCheng,2022-03-24T05:21:09Z,- JessicaLucindaCheng commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1077174784) at 2022-03-23 10:21 PM PDT -JessicaLucindaCheng,2022-03-24T23:22:09Z,- JessicaLucindaCheng commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1078475689) at 2022-03-24 04:22 PM PDT -JessicaLucindaCheng,2022-03-24T23:27:01Z,- JessicaLucindaCheng commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1078478725) at 2022-03-24 04:27 PM PDT -JessicaLucindaCheng,2022-03-24T23:30:56Z,- JessicaLucindaCheng commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1078480875) at 2022-03-24 04:30 PM PDT -JessicaLucindaCheng,2022-03-25T02:46:26Z,- JessicaLucindaCheng commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-1078600322) at 2022-03-24 07:46 PM PDT -JessicaLucindaCheng,2022-03-25T02:46:26Z,- JessicaLucindaCheng reopened issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-1078600322) at 2022-03-24 07:46 PM PDT -JessicaLucindaCheng,2022-03-25T22:13:19Z,- JessicaLucindaCheng commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1079480952) at 2022-03-25 03:13 PM PDT -JessicaLucindaCheng,2022-03-25T22:33:57Z,- JessicaLucindaCheng commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1079491411) at 2022-03-25 03:33 PM PDT -JessicaLucindaCheng,2022-03-25T23:15:01Z,- JessicaLucindaCheng commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1079508469) at 2022-03-25 04:15 PM PDT -JessicaLucindaCheng,2022-03-25T23:17:08Z,- JessicaLucindaCheng assigned to issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1062099385) at 2022-03-25 04:17 PM PDT -JessicaLucindaCheng,2022-03-25T23:20:47Z,- JessicaLucindaCheng commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1079510714) at 2022-03-25 04:20 PM PDT -JessicaLucindaCheng,2022-03-25T23:32:33Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1079515408) at 2022-03-25 04:32 PM PDT -JessicaLucindaCheng,2022-03-26T01:17:58Z,- JessicaLucindaCheng opened pull request: [3012](https://github.com/hackforla/website/pull/3012) at 2022-03-25 06:17 PM PDT -JessicaLucindaCheng,2022-03-26T04:58:40Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1079605069) at 2022-03-25 09:58 PM PDT -JessicaLucindaCheng,2022-03-26T21:14:42Z,- JessicaLucindaCheng opened issue: [3016](https://github.com/hackforla/website/issues/3016) at 2022-03-26 02:14 PM PDT -JessicaLucindaCheng,2022-03-27T03:13:10Z,- JessicaLucindaCheng commented on pull request: [3010](https://github.com/hackforla/website/pull/3010#issuecomment-1079828653) at 2022-03-26 08:13 PM PDT -JessicaLucindaCheng,2022-03-27T08:44:35Z,- JessicaLucindaCheng pull request merged: [3012](https://github.com/hackforla/website/pull/3012#event-6313395717) at 2022-03-27 01:44 AM PDT -JessicaLucindaCheng,2022-03-27T14:46:35Z,- JessicaLucindaCheng submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-922461182) at 2022-03-27 07:46 AM PDT -JessicaLucindaCheng,2022-03-27T15:57:51Z,- JessicaLucindaCheng commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1079959577) at 2022-03-27 08:57 AM PDT -JessicaLucindaCheng,2022-03-27T16:03:30Z,- JessicaLucindaCheng commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1079960741) at 2022-03-27 09:03 AM PDT -JessicaLucindaCheng,2022-03-27T23:59:58Z,- JessicaLucindaCheng commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080048656) at 2022-03-27 04:59 PM PDT -JessicaLucindaCheng,2022-03-28T00:19:00Z,- JessicaLucindaCheng commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080054657) at 2022-03-27 05:19 PM PDT -JessicaLucindaCheng,2022-03-28T06:26:44Z,- JessicaLucindaCheng commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1080250796) at 2022-03-27 11:26 PM PDT -JessicaLucindaCheng,2022-03-30T00:16:53Z,- JessicaLucindaCheng commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1082488622) at 2022-03-29 05:16 PM PDT -JessicaLucindaCheng,2022-03-30T00:16:56Z,- JessicaLucindaCheng reopened issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1082488622) at 2022-03-29 05:16 PM PDT -JessicaLucindaCheng,2022-03-30T00:25:25Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1082493310) at 2022-03-29 05:25 PM PDT -JessicaLucindaCheng,2022-03-30T06:30:38Z,- JessicaLucindaCheng commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-1082677212) at 2022-03-29 11:30 PM PDT -JessicaLucindaCheng,2022-03-30T22:12:05Z,- JessicaLucindaCheng closed issue as completed: [2354](https://github.com/hackforla/website/issues/2354#event-6338662481) at 2022-03-30 03:12 PM PDT -JessicaLucindaCheng,2022-03-30T22:36:32Z,- JessicaLucindaCheng commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-1083703541) at 2022-03-30 03:36 PM PDT -JessicaLucindaCheng,2022-03-30T22:37:54Z,- JessicaLucindaCheng commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-1083704693) at 2022-03-30 03:37 PM PDT -JessicaLucindaCheng,2022-03-30T22:37:54Z,- JessicaLucindaCheng closed issue by PR 2373: [2317](https://github.com/hackforla/website/issues/2317#event-6338794498) at 2022-03-30 03:37 PM PDT -JessicaLucindaCheng,2022-03-31T00:39:09Z,- JessicaLucindaCheng commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1083867167) at 2022-03-30 05:39 PM PDT -JessicaLucindaCheng,2022-03-31T01:24:26Z,- JessicaLucindaCheng commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1083934908) at 2022-03-30 06:24 PM PDT -JessicaLucindaCheng,2022-03-31T01:35:36Z,- JessicaLucindaCheng commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1083955129) at 2022-03-30 06:35 PM PDT -JessicaLucindaCheng,2022-03-31T02:04:57Z,- JessicaLucindaCheng submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-926909862) at 2022-03-30 07:04 PM PDT -JessicaLucindaCheng,2022-03-31T02:05:57Z,- JessicaLucindaCheng closed issue by PR 3008: [2089](https://github.com/hackforla/website/issues/2089#event-6340106128) at 2022-03-30 07:05 PM PDT -JessicaLucindaCheng,2022-03-31T07:54:28Z,- JessicaLucindaCheng commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1084225191) at 2022-03-31 12:54 AM PDT -JessicaLucindaCheng,2022-03-31T08:01:13Z,- JessicaLucindaCheng commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1084232382) at 2022-03-31 01:01 AM PDT -JessicaLucindaCheng,2022-03-31T08:01:51Z,- JessicaLucindaCheng submitted pull request review: [3014](https://github.com/hackforla/website/pull/3014#pullrequestreview-927158479) at 2022-03-31 01:01 AM PDT -JessicaLucindaCheng,2022-03-31T08:02:03Z,- JessicaLucindaCheng closed issue by PR 3014: [2290](https://github.com/hackforla/website/issues/2290#event-6341616142) at 2022-03-31 01:02 AM PDT -JessicaLucindaCheng,2022-03-31T08:09:08Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1084241298) at 2022-03-31 01:09 AM PDT -JessicaLucindaCheng,2022-03-31T18:53:23Z,- JessicaLucindaCheng commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1084984444) at 2022-03-31 11:53 AM PDT -JessicaLucindaCheng,2022-03-31T20:07:12Z,- JessicaLucindaCheng commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1085050068) at 2022-03-31 01:07 PM PDT -JessicaLucindaCheng,2022-03-31T20:26:39Z,- JessicaLucindaCheng commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1085068882) at 2022-03-31 01:26 PM PDT -JessicaLucindaCheng,2022-03-31T21:34:13Z,- JessicaLucindaCheng commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1085143244) at 2022-03-31 02:34 PM PDT -JessicaLucindaCheng,2022-03-31T21:50:14Z,- JessicaLucindaCheng opened issue: [3022](https://github.com/hackforla/website/issues/3022) at 2022-03-31 02:50 PM PDT -JessicaLucindaCheng,2022-04-01T00:55:05Z,- JessicaLucindaCheng commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1085278521) at 2022-03-31 05:55 PM PDT -JessicaLucindaCheng,2022-04-01T05:59:02Z,- JessicaLucindaCheng opened issue: [3023](https://github.com/hackforla/website/issues/3023) at 2022-03-31 10:59 PM PDT -JessicaLucindaCheng,2022-04-01T22:47:46Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1086393321) at 2022-04-01 03:47 PM PDT -JessicaLucindaCheng,2022-04-01T22:49:59Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1086394208) at 2022-04-01 03:49 PM PDT -JessicaLucindaCheng,2022-04-01T22:51:28Z,- JessicaLucindaCheng commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1086394838) at 2022-04-01 03:51 PM PDT -JessicaLucindaCheng,2022-04-01T23:05:44Z,- JessicaLucindaCheng commented on issue: [3022](https://github.com/hackforla/website/issues/3022#issuecomment-1086401376) at 2022-04-01 04:05 PM PDT -JessicaLucindaCheng,2022-04-02T06:14:20Z,- JessicaLucindaCheng commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1086560598) at 2022-04-01 11:14 PM PDT -JessicaLucindaCheng,2022-04-02T06:20:51Z,- JessicaLucindaCheng opened issue: [3025](https://github.com/hackforla/website/issues/3025) at 2022-04-01 11:20 PM PDT -JessicaLucindaCheng,2022-04-02T08:11:55Z,- JessicaLucindaCheng opened issue: [3026](https://github.com/hackforla/website/issues/3026) at 2022-04-02 01:11 AM PDT -JessicaLucindaCheng,2022-04-02T08:23:25Z,- JessicaLucindaCheng opened issue: [3027](https://github.com/hackforla/website/issues/3027) at 2022-04-02 01:23 AM PDT -JessicaLucindaCheng,2022-04-02T23:39:43Z,- JessicaLucindaCheng commented on issue: [3022](https://github.com/hackforla/website/issues/3022#issuecomment-1086742590) at 2022-04-02 04:39 PM PDT -JessicaLucindaCheng,2022-04-03T09:10:13Z,- JessicaLucindaCheng commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1086818577) at 2022-04-03 02:10 AM PDT -JessicaLucindaCheng,2022-04-03T19:04:18Z,- JessicaLucindaCheng commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086928837) at 2022-04-03 12:04 PM PDT -JessicaLucindaCheng,2022-04-04T01:27:47Z,- JessicaLucindaCheng submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-929758441) at 2022-04-03 06:27 PM PDT -JessicaLucindaCheng,2022-04-05T13:33:14Z,- JessicaLucindaCheng commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1088709929) at 2022-04-05 06:33 AM PDT -JessicaLucindaCheng,2022-04-05T13:35:40Z,- JessicaLucindaCheng commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1088712650) at 2022-04-05 06:35 AM PDT -JessicaLucindaCheng,2022-04-05T22:03:53Z,- JessicaLucindaCheng commented on issue: [3022](https://github.com/hackforla/website/issues/3022#issuecomment-1089419830) at 2022-04-05 03:03 PM PDT -JessicaLucindaCheng,2022-04-06T00:24:08Z,- JessicaLucindaCheng submitted pull request review: [3024](https://github.com/hackforla/website/pull/3024#pullrequestreview-932660250) at 2022-04-05 05:24 PM PDT -JessicaLucindaCheng,2022-04-06T01:31:51Z,- JessicaLucindaCheng commented on issue: [3025](https://github.com/hackforla/website/issues/3025#issuecomment-1089629351) at 2022-04-05 06:31 PM PDT -JessicaLucindaCheng,2022-04-06T01:36:25Z,- JessicaLucindaCheng commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1089633727) at 2022-04-05 06:36 PM PDT -JessicaLucindaCheng,2022-04-06T02:00:26Z,- JessicaLucindaCheng commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1089659051) at 2022-04-05 07:00 PM PDT -JessicaLucindaCheng,2022-04-06T03:33:26Z,- JessicaLucindaCheng commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1089749420) at 2022-04-05 08:33 PM PDT -JessicaLucindaCheng,2022-04-06T03:34:04Z,- JessicaLucindaCheng commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1089750088) at 2022-04-05 08:34 PM PDT -JessicaLucindaCheng,2022-04-06T04:29:11Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1089805799) at 2022-04-05 09:29 PM PDT -JessicaLucindaCheng,2022-04-06T20:10:24Z,- JessicaLucindaCheng commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1090727197) at 2022-04-06 01:10 PM PDT -JessicaLucindaCheng,2022-04-06T20:42:02Z,- JessicaLucindaCheng commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1090773428) at 2022-04-06 01:42 PM PDT -JessicaLucindaCheng,2022-04-06T20:51:03Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1090780552) at 2022-04-06 01:51 PM PDT -JessicaLucindaCheng,2022-04-06T20:52:38Z,- JessicaLucindaCheng commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1090783754) at 2022-04-06 01:52 PM PDT -JessicaLucindaCheng,2022-04-06T20:58:22Z,- JessicaLucindaCheng commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1090795433) at 2022-04-06 01:58 PM PDT -JessicaLucindaCheng,2022-04-06T21:19:12Z,- JessicaLucindaCheng commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1090818643) at 2022-04-06 02:19 PM PDT -JessicaLucindaCheng,2022-04-06T21:19:43Z,- JessicaLucindaCheng commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1090819057) at 2022-04-06 02:19 PM PDT -JessicaLucindaCheng,2022-04-06T21:20:41Z,- JessicaLucindaCheng commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1090819803) at 2022-04-06 02:20 PM PDT -JessicaLucindaCheng,2022-04-06T21:21:29Z,- JessicaLucindaCheng commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1090820541) at 2022-04-06 02:21 PM PDT -JessicaLucindaCheng,2022-04-06T21:22:34Z,- JessicaLucindaCheng commented on issue: [2939](https://github.com/hackforla/website/issues/2939#issuecomment-1090821399) at 2022-04-06 02:22 PM PDT -JessicaLucindaCheng,2022-04-06T23:49:35Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1090934024) at 2022-04-06 04:49 PM PDT -JessicaLucindaCheng,2022-04-07T01:24:43Z,- JessicaLucindaCheng commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1090982728) at 2022-04-06 06:24 PM PDT -JessicaLucindaCheng,2022-04-07T01:33:19Z,- JessicaLucindaCheng commented on issue: [2770](https://github.com/hackforla/website/issues/2770#issuecomment-1090986624) at 2022-04-06 06:33 PM PDT -JessicaLucindaCheng,2022-04-07T01:33:19Z,- JessicaLucindaCheng closed issue as completed: [2770](https://github.com/hackforla/website/issues/2770#event-6384544010) at 2022-04-06 06:33 PM PDT -JessicaLucindaCheng,2022-04-07T01:48:32Z,- JessicaLucindaCheng commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1090993404) at 2022-04-06 06:48 PM PDT -JessicaLucindaCheng,2022-04-07T19:04:05Z,- JessicaLucindaCheng commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1092100326) at 2022-04-07 12:04 PM PDT -JessicaLucindaCheng,2022-04-08T00:28:58Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1092325372) at 2022-04-07 05:28 PM PDT -JessicaLucindaCheng,2022-04-08T01:35:56Z,- JessicaLucindaCheng commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1092355398) at 2022-04-07 06:35 PM PDT -JessicaLucindaCheng,2022-04-08T01:43:26Z,- JessicaLucindaCheng commented on issue: [2939](https://github.com/hackforla/website/issues/2939#issuecomment-1092359569) at 2022-04-07 06:43 PM PDT -JessicaLucindaCheng,2022-04-08T02:10:38Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1092372580) at 2022-04-07 07:10 PM PDT -JessicaLucindaCheng,2022-04-08T05:00:27Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1092443042) at 2022-04-07 10:00 PM PDT -JessicaLucindaCheng,2022-04-08T07:05:54Z,- JessicaLucindaCheng commented on issue: [1338](https://github.com/hackforla/website/issues/1338#issuecomment-1092511802) at 2022-04-08 12:05 AM PDT -JessicaLucindaCheng,2022-04-08T07:06:02Z,- JessicaLucindaCheng closed issue as completed: [1338](https://github.com/hackforla/website/issues/1338#event-6394004999) at 2022-04-08 12:06 AM PDT -JessicaLucindaCheng,2022-04-08T22:52:22Z,- JessicaLucindaCheng commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1093441769) at 2022-04-08 03:52 PM PDT -JessicaLucindaCheng,2022-04-08T23:59:20Z,- JessicaLucindaCheng commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1093497950) at 2022-04-08 04:59 PM PDT -JessicaLucindaCheng,2022-04-09T00:01:24Z,- JessicaLucindaCheng commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1093499450) at 2022-04-08 05:01 PM PDT -JessicaLucindaCheng,2022-04-09T19:08:51Z,- JessicaLucindaCheng assigned to issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090728357) at 2022-04-09 12:08 PM PDT -JessicaLucindaCheng,2022-04-09T22:47:08Z,- JessicaLucindaCheng commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1094136702) at 2022-04-09 03:47 PM PDT -JessicaLucindaCheng,2022-04-10T03:39:09Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1094168496) at 2022-04-09 08:39 PM PDT -JessicaLucindaCheng,2022-04-10T11:53:29Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1094255128) at 2022-04-10 04:53 AM PDT -JessicaLucindaCheng,2022-04-10T17:27:48Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1094332721) at 2022-04-10 10:27 AM PDT -JessicaLucindaCheng,2022-04-10T18:20:28Z,- JessicaLucindaCheng commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1094341044) at 2022-04-10 11:20 AM PDT -JessicaLucindaCheng,2022-04-10T18:27:31Z,- JessicaLucindaCheng commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1094342204) at 2022-04-10 11:27 AM PDT -JessicaLucindaCheng,2022-04-11T13:16:34Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1095038737) at 2022-04-11 06:16 AM PDT -JessicaLucindaCheng,2022-04-13T22:24:17Z,- JessicaLucindaCheng submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-941616879) at 2022-04-13 03:24 PM PDT -JessicaLucindaCheng,2022-04-13T22:26:14Z,- JessicaLucindaCheng submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-941618129) at 2022-04-13 03:26 PM PDT -JessicaLucindaCheng,2022-04-13T22:27:46Z,- JessicaLucindaCheng submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-941619037) at 2022-04-13 03:27 PM PDT -JessicaLucindaCheng,2022-04-13T22:34:38Z,- JessicaLucindaCheng submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-941622909) at 2022-04-13 03:34 PM PDT -JessicaLucindaCheng,2022-04-13T23:13:40Z,- JessicaLucindaCheng commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1098564333) at 2022-04-13 04:13 PM PDT -JessicaLucindaCheng,2022-04-13T23:20:10Z,- JessicaLucindaCheng commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1098567884) at 2022-04-13 04:20 PM PDT -JessicaLucindaCheng,2022-04-14T04:53:10Z,- JessicaLucindaCheng commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1098707496) at 2022-04-13 09:53 PM PDT -JessicaLucindaCheng,2022-04-14T08:28:40Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1098847723) at 2022-04-14 01:28 AM PDT -JessicaLucindaCheng,2022-04-14T23:08:05Z,- JessicaLucindaCheng commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1099706183) at 2022-04-14 04:08 PM PDT -JessicaLucindaCheng,2022-04-16T19:58:11Z,- JessicaLucindaCheng unassigned from issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1100610368) at 2022-04-16 12:58 PM PDT -JessicaLucindaCheng,2022-04-16T19:59:46Z,- JessicaLucindaCheng commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1100745301) at 2022-04-16 12:59 PM PDT -JessicaLucindaCheng,2022-04-16T20:05:18Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1100746757) at 2022-04-16 01:05 PM PDT -JessicaLucindaCheng,2022-04-16T21:58:31Z,- JessicaLucindaCheng commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1100761208) at 2022-04-16 02:58 PM PDT -JessicaLucindaCheng,2022-04-17T16:53:05Z,- JessicaLucindaCheng commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1100914690) at 2022-04-17 09:53 AM PDT -JessicaLucindaCheng,2022-04-17T16:58:19Z,- JessicaLucindaCheng commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1100915405) at 2022-04-17 09:58 AM PDT -JessicaLucindaCheng,2022-04-17T16:59:44Z,- JessicaLucindaCheng commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1100915588) at 2022-04-17 09:59 AM PDT -JessicaLucindaCheng,2022-04-18T20:04:24Z,- JessicaLucindaCheng commented on issue: [3060](https://github.com/hackforla/website/issues/3060#issuecomment-1101716917) at 2022-04-18 01:04 PM PDT -JessicaLucindaCheng,2022-04-19T09:15:38Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1102362648) at 2022-04-19 02:15 AM PDT -JessicaLucindaCheng,2022-04-19T20:48:39Z,- JessicaLucindaCheng submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-946278821) at 2022-04-19 01:48 PM PDT -JessicaLucindaCheng,2022-04-19T23:01:25Z,- JessicaLucindaCheng commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1103243713) at 2022-04-19 04:01 PM PDT -JessicaLucindaCheng,2022-04-19T23:10:42Z,- JessicaLucindaCheng submitted pull request review: [3057](https://github.com/hackforla/website/pull/3057#pullrequestreview-946414948) at 2022-04-19 04:10 PM PDT -JessicaLucindaCheng,2022-04-19T23:14:03Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1103251042) at 2022-04-19 04:14 PM PDT -JessicaLucindaCheng,2022-04-20T19:46:45Z,- JessicaLucindaCheng commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104392914) at 2022-04-20 12:46 PM PDT -JessicaLucindaCheng,2022-04-20T19:52:07Z,- JessicaLucindaCheng commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104397681) at 2022-04-20 12:52 PM PDT -JessicaLucindaCheng,2022-04-20T21:04:14Z,- JessicaLucindaCheng commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104454341) at 2022-04-20 02:04 PM PDT -JessicaLucindaCheng,2022-04-20T21:45:59Z,- JessicaLucindaCheng commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1104482941) at 2022-04-20 02:45 PM PDT -JessicaLucindaCheng,2022-04-20T22:15:12Z,- JessicaLucindaCheng commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104511921) at 2022-04-20 03:15 PM PDT -JessicaLucindaCheng,2022-04-20T23:07:36Z,- JessicaLucindaCheng commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1104537430) at 2022-04-20 04:07 PM PDT -JessicaLucindaCheng,2022-04-20T23:17:41Z,- JessicaLucindaCheng commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1104543388) at 2022-04-20 04:17 PM PDT -JessicaLucindaCheng,2022-04-20T23:19:08Z,- JessicaLucindaCheng commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1104544538) at 2022-04-20 04:19 PM PDT -JessicaLucindaCheng,2022-04-21T01:38:10Z,- JessicaLucindaCheng commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1104620275) at 2022-04-20 06:38 PM PDT -JessicaLucindaCheng,2022-04-21T01:55:54Z,- JessicaLucindaCheng commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1104627382) at 2022-04-20 06:55 PM PDT -JessicaLucindaCheng,2022-04-22T22:20:57Z,- JessicaLucindaCheng commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1106942914) at 2022-04-22 03:20 PM PDT -JessicaLucindaCheng,2022-04-22T22:21:34Z,- JessicaLucindaCheng commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1106943409) at 2022-04-22 03:21 PM PDT -JessicaLucindaCheng,2022-04-23T01:03:50Z,- JessicaLucindaCheng submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-950782744) at 2022-04-22 06:03 PM PDT -JessicaLucindaCheng,2022-04-23T06:52:10Z,- JessicaLucindaCheng commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1107400164) at 2022-04-22 11:52 PM PDT -JessicaLucindaCheng,2022-04-23T07:46:22Z,- JessicaLucindaCheng commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1107417438) at 2022-04-23 12:46 AM PDT -JessicaLucindaCheng,2022-04-23T10:16:56Z,- JessicaLucindaCheng commented on pull request: [3077](https://github.com/hackforla/website/pull/3077#issuecomment-1107447334) at 2022-04-23 03:16 AM PDT -JessicaLucindaCheng,2022-04-23T10:41:37Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1107450333) at 2022-04-23 03:41 AM PDT -JessicaLucindaCheng,2022-04-23T11:15:12Z,- JessicaLucindaCheng commented on issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1107454471) at 2022-04-23 04:15 AM PDT -JessicaLucindaCheng,2022-04-23T20:53:48Z,- JessicaLucindaCheng commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1107647962) at 2022-04-23 01:53 PM PDT -JessicaLucindaCheng,2022-04-24T14:26:42Z,- JessicaLucindaCheng commented on pull request: [3078](https://github.com/hackforla/website/pull/3078#issuecomment-1107852494) at 2022-04-24 07:26 AM PDT -JessicaLucindaCheng,2022-04-24T15:35:08Z,- JessicaLucindaCheng commented on issue: [2914](https://github.com/hackforla/website/issues/2914#issuecomment-1107864833) at 2022-04-24 08:35 AM PDT -JessicaLucindaCheng,2022-04-24T15:39:01Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1107865490) at 2022-04-24 08:39 AM PDT -JessicaLucindaCheng,2022-04-24T15:43:29Z,- JessicaLucindaCheng commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1107866402) at 2022-04-24 08:43 AM PDT -JessicaLucindaCheng,2022-04-24T15:47:01Z,- JessicaLucindaCheng commented on issue: [2183](https://github.com/hackforla/website/issues/2183#issuecomment-1107866896) at 2022-04-24 08:47 AM PDT -JessicaLucindaCheng,2022-04-24T15:47:37Z,- JessicaLucindaCheng commented on issue: [2793](https://github.com/hackforla/website/issues/2793#issuecomment-1107866994) at 2022-04-24 08:47 AM PDT -JessicaLucindaCheng,2022-04-24T23:38:40Z,- JessicaLucindaCheng submitted pull request review: [3078](https://github.com/hackforla/website/pull/3078#pullrequestreview-951259040) at 2022-04-24 04:38 PM PDT -JessicaLucindaCheng,2022-04-24T23:54:50Z,- JessicaLucindaCheng commented on pull request: [3079](https://github.com/hackforla/website/pull/3079#issuecomment-1107942649) at 2022-04-24 04:54 PM PDT -JessicaLucindaCheng,2022-04-25T00:27:47Z,- JessicaLucindaCheng submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-951264078) at 2022-04-24 05:27 PM PDT -JessicaLucindaCheng,2022-04-27T01:32:39Z,- JessicaLucindaCheng opened pull request: [3083](https://github.com/hackforla/website/pull/3083) at 2022-04-26 06:32 PM PDT -JessicaLucindaCheng,2022-04-27T02:13:25Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1110454548) at 2022-04-26 07:13 PM PDT -JessicaLucindaCheng,2022-04-28T02:09:58Z,- JessicaLucindaCheng commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1111662549) at 2022-04-27 07:09 PM PDT -JessicaLucindaCheng,2022-04-28T02:11:25Z,- JessicaLucindaCheng commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1111663250) at 2022-04-27 07:11 PM PDT -JessicaLucindaCheng,2022-04-28T02:12:58Z,- JessicaLucindaCheng commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1111663976) at 2022-04-27 07:12 PM PDT -JessicaLucindaCheng,2022-04-28T23:18:47Z,- JessicaLucindaCheng submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-957135083) at 2022-04-28 04:18 PM PDT -JessicaLucindaCheng,2022-04-28T23:20:43Z,- JessicaLucindaCheng closed issue by PR 3076: [2914](https://github.com/hackforla/website/issues/2914#event-6518871211) at 2022-04-28 04:20 PM PDT -JessicaLucindaCheng,2022-04-29T00:38:56Z,- JessicaLucindaCheng submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-957167456) at 2022-04-28 05:38 PM PDT -JessicaLucindaCheng,2022-05-01T07:03:00Z,- JessicaLucindaCheng submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-958551338) at 2022-05-01 12:03 AM PDT -JessicaLucindaCheng,2022-05-01T07:03:57Z,- JessicaLucindaCheng closed issue by PR 3043: [3022](https://github.com/hackforla/website/issues/3022#event-6529043164) at 2022-05-01 12:03 AM PDT -JessicaLucindaCheng,2022-05-01T07:04:57Z,- JessicaLucindaCheng commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1114152541) at 2022-05-01 12:04 AM PDT -JessicaLucindaCheng,2022-05-02T06:05:38Z,- JessicaLucindaCheng commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1114525338) at 2022-05-01 11:05 PM PDT -JessicaLucindaCheng,2022-05-04T19:59:33Z,- JessicaLucindaCheng commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1117825945) at 2022-05-04 12:59 PM PDT -JessicaLucindaCheng,2022-05-04T21:20:24Z,- JessicaLucindaCheng commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1117948656) at 2022-05-04 02:20 PM PDT -JessicaLucindaCheng,2022-05-04T23:24:18Z,- JessicaLucindaCheng commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1118022013) at 2022-05-04 04:24 PM PDT -JessicaLucindaCheng,2022-05-05T01:22:53Z,- JessicaLucindaCheng commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1118079027) at 2022-05-04 06:22 PM PDT -JessicaLucindaCheng,2022-05-05T02:53:56Z,- JessicaLucindaCheng commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1118115845) at 2022-05-04 07:53 PM PDT -JessicaLucindaCheng,2022-05-05T03:48:11Z,- JessicaLucindaCheng pull request merged: [3083](https://github.com/hackforla/website/pull/3083#event-6553607403) at 2022-05-04 08:48 PM PDT -JessicaLucindaCheng,2022-05-05T21:39:07Z,- JessicaLucindaCheng commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1119071273) at 2022-05-05 02:39 PM PDT -JessicaLucindaCheng,2022-05-05T23:41:56Z,- JessicaLucindaCheng commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1119142364) at 2022-05-05 04:41 PM PDT -JessicaLucindaCheng,2022-05-05T23:51:00Z,- JessicaLucindaCheng commented on pull request: [3077](https://github.com/hackforla/website/pull/3077#issuecomment-1119146327) at 2022-05-05 04:51 PM PDT -JessicaLucindaCheng,2022-05-06T03:35:20Z,- JessicaLucindaCheng commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1119231598) at 2022-05-05 08:35 PM PDT -JessicaLucindaCheng,2022-05-06T03:56:29Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1119238121) at 2022-05-05 08:56 PM PDT -JessicaLucindaCheng,2022-05-06T04:15:20Z,- JessicaLucindaCheng commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1119245015) at 2022-05-05 09:15 PM PDT -JessicaLucindaCheng,2022-05-06T23:43:09Z,- JessicaLucindaCheng commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1120078632) at 2022-05-06 04:43 PM PDT -JessicaLucindaCheng,2022-05-06T23:55:16Z,- JessicaLucindaCheng commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1120081541) at 2022-05-06 04:55 PM PDT -JessicaLucindaCheng,2022-05-06T23:58:22Z,- JessicaLucindaCheng commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1120082164) at 2022-05-06 04:58 PM PDT -JessicaLucindaCheng,2022-05-07T21:40:13Z,- JessicaLucindaCheng commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1120296293) at 2022-05-07 02:40 PM PDT -JessicaLucindaCheng,2022-05-07T21:44:29Z,- JessicaLucindaCheng commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1120297584) at 2022-05-07 02:44 PM PDT -JessicaLucindaCheng,2022-05-11T02:26:24Z,- JessicaLucindaCheng commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1123110996) at 2022-05-10 07:26 PM PDT -JessicaLucindaCheng,2022-05-11T23:27:02Z,- JessicaLucindaCheng commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1124380324) at 2022-05-11 04:27 PM PDT -JessicaLucindaCheng,2022-05-12T01:39:28Z,- JessicaLucindaCheng opened issue: [3129](https://github.com/hackforla/website/issues/3129) at 2022-05-11 06:39 PM PDT -JessicaLucindaCheng,2022-05-12T01:48:32Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1124448423) at 2022-05-11 06:48 PM PDT -JessicaLucindaCheng,2022-05-12T09:17:43Z,- JessicaLucindaCheng unassigned from issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1065791566) at 2022-05-12 02:17 AM PDT -JessicaLucindaCheng,2022-05-12T09:21:13Z,- JessicaLucindaCheng opened issue: [3130](https://github.com/hackforla/website/issues/3130) at 2022-05-12 02:21 AM PDT -JessicaLucindaCheng,2022-05-12T09:24:15Z,- JessicaLucindaCheng commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1124739741) at 2022-05-12 02:24 AM PDT -JessicaLucindaCheng,2022-05-12T09:24:15Z,- JessicaLucindaCheng closed issue as completed: [2528](https://github.com/hackforla/website/issues/2528#event-6596624644) at 2022-05-12 02:24 AM PDT -JessicaLucindaCheng,2022-05-12T09:37:23Z,- JessicaLucindaCheng opened issue: [3131](https://github.com/hackforla/website/issues/3131) at 2022-05-12 02:37 AM PDT -JessicaLucindaCheng,2022-05-13T03:02:58Z,- JessicaLucindaCheng opened pull request: [3136](https://github.com/hackforla/website/pull/3136) at 2022-05-12 08:02 PM PDT -JessicaLucindaCheng,2022-05-13T04:04:53Z,- JessicaLucindaCheng pull request closed w/o merging: [3136](https://github.com/hackforla/website/pull/3136#event-6602716218) at 2022-05-12 09:04 PM PDT -JessicaLucindaCheng,2022-05-14T02:12:46Z,- JessicaLucindaCheng opened pull request: [3137](https://github.com/hackforla/website/pull/3137) at 2022-05-13 07:12 PM PDT -JessicaLucindaCheng,2022-05-14T02:15:14Z,- JessicaLucindaCheng pull request merged: [3137](https://github.com/hackforla/website/pull/3137#event-6609368676) at 2022-05-13 07:15 PM PDT -JessicaLucindaCheng,2022-05-15T05:36:53Z,- JessicaLucindaCheng commented on issue: [3115](https://github.com/hackforla/website/issues/3115#issuecomment-1126864493) at 2022-05-14 10:36 PM PDT -JessicaLucindaCheng,2022-05-15T05:42:05Z,- JessicaLucindaCheng commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1126864984) at 2022-05-14 10:42 PM PDT -JessicaLucindaCheng,2022-05-15T05:55:50Z,- JessicaLucindaCheng commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1126866864) at 2022-05-14 10:55 PM PDT -JessicaLucindaCheng,2022-05-15T19:52:11Z,- JessicaLucindaCheng commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1127011691) at 2022-05-15 12:52 PM PDT -JessicaLucindaCheng,2022-05-16T06:49:13Z,- JessicaLucindaCheng commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1127287905) at 2022-05-15 11:49 PM PDT -JessicaLucindaCheng,2022-05-18T11:53:56Z,- JessicaLucindaCheng commented on issue: [3156](https://github.com/hackforla/website/issues/3156#issuecomment-1129914347) at 2022-05-18 04:53 AM PDT -JessicaLucindaCheng,2022-05-18T11:58:09Z,- JessicaLucindaCheng commented on issue: [3154](https://github.com/hackforla/website/issues/3154#issuecomment-1129917780) at 2022-05-18 04:58 AM PDT -JessicaLucindaCheng,2022-05-25T01:22:41Z,- JessicaLucindaCheng opened issue: [3175](https://github.com/hackforla/website/issues/3175) at 2022-05-24 06:22 PM PDT -JessicaLucindaCheng,2022-05-25T02:13:59Z,- JessicaLucindaCheng commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1136638662) at 2022-05-24 07:13 PM PDT -JessicaLucindaCheng,2022-05-25T02:22:30Z,- JessicaLucindaCheng commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1136644958) at 2022-05-24 07:22 PM PDT -JessicaLucindaCheng,2022-05-25T02:43:05Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1136662872) at 2022-05-24 07:43 PM PDT -JessicaLucindaCheng,2022-05-27T02:40:34Z,- JessicaLucindaCheng commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1139225886) at 2022-05-26 07:40 PM PDT -JessicaLucindaCheng,2022-05-28T17:49:13Z,- JessicaLucindaCheng submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-988543571) at 2022-05-28 10:49 AM PDT -JessicaLucindaCheng,2022-05-28T18:00:57Z,- JessicaLucindaCheng commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1140306110) at 2022-05-28 11:00 AM PDT -JessicaLucindaCheng,2022-05-28T18:02:40Z,- JessicaLucindaCheng closed issue by PR 2723: [2084](https://github.com/hackforla/website/issues/2084#event-6697414823) at 2022-05-28 11:02 AM PDT -JessicaLucindaCheng,2022-05-29T02:23:37Z,- JessicaLucindaCheng commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1140363224) at 2022-05-28 07:23 PM PDT -JessicaLucindaCheng,2022-05-29T02:31:23Z,- JessicaLucindaCheng commented on issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1140364227) at 2022-05-28 07:31 PM PDT -JessicaLucindaCheng,2022-05-29T02:39:05Z,- JessicaLucindaCheng commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1140365285) at 2022-05-28 07:39 PM PDT -JessicaLucindaCheng,2022-05-29T20:52:55Z,- JessicaLucindaCheng opened pull request: [3181](https://github.com/hackforla/website/pull/3181) at 2022-05-29 01:52 PM PDT -JessicaLucindaCheng,2022-05-29T20:56:14Z,- JessicaLucindaCheng pull request merged: [3181](https://github.com/hackforla/website/pull/3181#event-6698751209) at 2022-05-29 01:56 PM PDT -JessicaLucindaCheng,2022-05-29T21:27:50Z,- JessicaLucindaCheng commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1140527638) at 2022-05-29 02:27 PM PDT -JessicaLucindaCheng,2022-05-29T23:19:28Z,- JessicaLucindaCheng commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140543608) at 2022-05-29 04:19 PM PDT -JessicaLucindaCheng,2022-05-30T22:39:55Z,- JessicaLucindaCheng commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-05-30 03:39 PM PDT -JessicaLucindaCheng,2022-05-31T04:31:22Z,- JessicaLucindaCheng commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1141656827) at 2022-05-30 09:31 PM PDT -JessicaLucindaCheng,2022-05-31T05:52:31Z,- JessicaLucindaCheng commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1141694299) at 2022-05-30 10:52 PM PDT -JessicaLucindaCheng,2022-05-31T22:47:34Z,- JessicaLucindaCheng commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1142709066) at 2022-05-31 03:47 PM PDT -JessicaLucindaCheng,2022-05-31T22:50:46Z,- JessicaLucindaCheng commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1142710709) at 2022-05-31 03:50 PM PDT -JessicaLucindaCheng,2022-06-01T03:31:56Z,- JessicaLucindaCheng commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1143078965) at 2022-05-31 08:31 PM PDT -JessicaLucindaCheng,2022-06-01T22:37:18Z,- JessicaLucindaCheng submitted pull request review: [3192](https://github.com/hackforla/website/pull/3192#pullrequestreview-992754316) at 2022-06-01 03:37 PM PDT -JessicaLucindaCheng,2022-06-01T23:05:38Z,- JessicaLucindaCheng commented on pull request: [3192](https://github.com/hackforla/website/pull/3192#issuecomment-1144228663) at 2022-06-01 04:05 PM PDT -JessicaLucindaCheng,2022-06-01T23:13:43Z,- JessicaLucindaCheng submitted pull request review: [3184](https://github.com/hackforla/website/pull/3184#pullrequestreview-992775049) at 2022-06-01 04:13 PM PDT -JessicaLucindaCheng,2022-06-02T21:08:53Z,- JessicaLucindaCheng commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1145343376) at 2022-06-02 02:08 PM PDT -JessicaLucindaCheng,2022-06-02T22:15:36Z,- JessicaLucindaCheng commented on issue: [1842](https://github.com/hackforla/website/issues/1842#issuecomment-1145397595) at 2022-06-02 03:15 PM PDT -JessicaLucindaCheng,2022-06-02T22:20:08Z,- JessicaLucindaCheng commented on issue: [2570](https://github.com/hackforla/website/issues/2570#issuecomment-1145400450) at 2022-06-02 03:20 PM PDT -JessicaLucindaCheng,2022-06-02T23:43:36Z,- JessicaLucindaCheng commented on issue: [1723](https://github.com/hackforla/website/issues/1723#issuecomment-1145441726) at 2022-06-02 04:43 PM PDT -JessicaLucindaCheng,2022-06-03T00:08:24Z,- JessicaLucindaCheng commented on issue: [1562](https://github.com/hackforla/website/issues/1562#issuecomment-1145460430) at 2022-06-02 05:08 PM PDT -JessicaLucindaCheng,2022-06-03T00:08:27Z,- JessicaLucindaCheng closed issue as completed: [1562](https://github.com/hackforla/website/issues/1562#event-6732518486) at 2022-06-02 05:08 PM PDT -JessicaLucindaCheng,2022-06-03T00:08:40Z,- JessicaLucindaCheng commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-1145460559) at 2022-06-02 05:08 PM PDT -JessicaLucindaCheng,2022-06-03T00:08:40Z,- JessicaLucindaCheng closed issue as completed: [1563](https://github.com/hackforla/website/issues/1563#event-6732519372) at 2022-06-02 05:08 PM PDT -JessicaLucindaCheng,2022-06-03T00:11:14Z,- JessicaLucindaCheng commented on issue: [1566](https://github.com/hackforla/website/issues/1566#issuecomment-1145461847) at 2022-06-02 05:11 PM PDT -JessicaLucindaCheng,2022-06-03T00:12:02Z,- JessicaLucindaCheng closed issue as completed: [1566](https://github.com/hackforla/website/issues/1566#event-6732532614) at 2022-06-02 05:12 PM PDT -JessicaLucindaCheng,2022-06-03T00:36:20Z,- JessicaLucindaCheng commented on issue: [3143](https://github.com/hackforla/website/issues/3143#issuecomment-1145473282) at 2022-06-02 05:36 PM PDT -JessicaLucindaCheng,2022-06-03T04:51:16Z,- JessicaLucindaCheng commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1145582170) at 2022-06-02 09:51 PM PDT -JessicaLucindaCheng,2022-06-03T09:42:26Z,- JessicaLucindaCheng opened issue: [3194](https://github.com/hackforla/website/issues/3194) at 2022-06-03 02:42 AM PDT -JessicaLucindaCheng,2022-06-03T09:50:35Z,- JessicaLucindaCheng opened issue: [3195](https://github.com/hackforla/website/issues/3195) at 2022-06-03 02:50 AM PDT -JessicaLucindaCheng,2022-06-03T09:55:26Z,- JessicaLucindaCheng opened issue: [3196](https://github.com/hackforla/website/issues/3196) at 2022-06-03 02:55 AM PDT -JessicaLucindaCheng,2022-06-03T10:00:40Z,- JessicaLucindaCheng opened issue: [3197](https://github.com/hackforla/website/issues/3197) at 2022-06-03 03:00 AM PDT -JessicaLucindaCheng,2022-06-03T10:03:10Z,- JessicaLucindaCheng opened issue: [3198](https://github.com/hackforla/website/issues/3198) at 2022-06-03 03:03 AM PDT -JessicaLucindaCheng,2022-06-03T10:07:47Z,- JessicaLucindaCheng opened issue: [3199](https://github.com/hackforla/website/issues/3199) at 2022-06-03 03:07 AM PDT -JessicaLucindaCheng,2022-06-03T10:09:18Z,- JessicaLucindaCheng opened issue: [3200](https://github.com/hackforla/website/issues/3200) at 2022-06-03 03:09 AM PDT -JessicaLucindaCheng,2022-06-03T10:11:23Z,- JessicaLucindaCheng opened issue: [3201](https://github.com/hackforla/website/issues/3201) at 2022-06-03 03:11 AM PDT -JessicaLucindaCheng,2022-06-03T10:13:36Z,- JessicaLucindaCheng opened issue: [3202](https://github.com/hackforla/website/issues/3202) at 2022-06-03 03:13 AM PDT -JessicaLucindaCheng,2022-06-03T10:15:04Z,- JessicaLucindaCheng opened issue: [3203](https://github.com/hackforla/website/issues/3203) at 2022-06-03 03:15 AM PDT -JessicaLucindaCheng,2022-06-03T10:18:12Z,- JessicaLucindaCheng opened issue: [3204](https://github.com/hackforla/website/issues/3204) at 2022-06-03 03:18 AM PDT -JessicaLucindaCheng,2022-06-03T10:20:30Z,- JessicaLucindaCheng opened issue: [3205](https://github.com/hackforla/website/issues/3205) at 2022-06-03 03:20 AM PDT -JessicaLucindaCheng,2022-06-03T10:22:29Z,- JessicaLucindaCheng opened issue: [3206](https://github.com/hackforla/website/issues/3206) at 2022-06-03 03:22 AM PDT -JessicaLucindaCheng,2022-06-03T10:25:04Z,- JessicaLucindaCheng opened issue: [3207](https://github.com/hackforla/website/issues/3207) at 2022-06-03 03:25 AM PDT -JessicaLucindaCheng,2022-06-03T10:27:06Z,- JessicaLucindaCheng opened issue: [3208](https://github.com/hackforla/website/issues/3208) at 2022-06-03 03:27 AM PDT -JessicaLucindaCheng,2022-06-03T11:01:11Z,- JessicaLucindaCheng opened issue: [3209](https://github.com/hackforla/website/issues/3209) at 2022-06-03 04:01 AM PDT -JessicaLucindaCheng,2022-06-03T11:03:48Z,- JessicaLucindaCheng opened issue: [3210](https://github.com/hackforla/website/issues/3210) at 2022-06-03 04:03 AM PDT -JessicaLucindaCheng,2022-06-03T11:05:56Z,- JessicaLucindaCheng opened issue: [3211](https://github.com/hackforla/website/issues/3211) at 2022-06-03 04:05 AM PDT -JessicaLucindaCheng,2022-06-03T11:07:57Z,- JessicaLucindaCheng opened issue: [3212](https://github.com/hackforla/website/issues/3212) at 2022-06-03 04:07 AM PDT -JessicaLucindaCheng,2022-06-03T11:10:15Z,- JessicaLucindaCheng opened issue: [3213](https://github.com/hackforla/website/issues/3213) at 2022-06-03 04:10 AM PDT -JessicaLucindaCheng,2022-06-03T11:12:13Z,- JessicaLucindaCheng opened issue: [3214](https://github.com/hackforla/website/issues/3214) at 2022-06-03 04:12 AM PDT -JessicaLucindaCheng,2022-06-03T11:14:04Z,- JessicaLucindaCheng opened issue: [3215](https://github.com/hackforla/website/issues/3215) at 2022-06-03 04:14 AM PDT -JessicaLucindaCheng,2022-06-03T11:15:51Z,- JessicaLucindaCheng opened issue: [3216](https://github.com/hackforla/website/issues/3216) at 2022-06-03 04:15 AM PDT -JessicaLucindaCheng,2022-06-03T11:39:49Z,- JessicaLucindaCheng commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1145876901) at 2022-06-03 04:39 AM PDT -JessicaLucindaCheng,2022-06-03T11:42:11Z,- JessicaLucindaCheng commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1145878507) at 2022-06-03 04:42 AM PDT -JessicaLucindaCheng,2022-06-03T11:52:27Z,- JessicaLucindaCheng commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1145885602) at 2022-06-03 04:52 AM PDT -JessicaLucindaCheng,2022-06-04T10:43:23Z,- JessicaLucindaCheng commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1146586350) at 2022-06-04 03:43 AM PDT -JessicaLucindaCheng,2022-06-04T11:05:47Z,- JessicaLucindaCheng commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-1146589066) at 2022-06-04 04:05 AM PDT -JessicaLucindaCheng,2022-06-04T22:11:12Z,- JessicaLucindaCheng submitted pull request review: [3219](https://github.com/hackforla/website/pull/3219#pullrequestreview-995958087) at 2022-06-04 03:11 PM PDT -JessicaLucindaCheng,2022-06-04T23:44:41Z,- JessicaLucindaCheng commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1146704057) at 2022-06-04 04:44 PM PDT -JessicaLucindaCheng,2022-06-05T15:55:28Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1146838278) at 2022-06-05 08:55 AM PDT -JessicaLucindaCheng,2022-06-05T17:53:30Z,- JessicaLucindaCheng unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1059882684) at 2022-06-05 10:53 AM PDT -JessicaLucindaCheng,2022-06-05T19:28:15Z,- JessicaLucindaCheng commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-1146869927) at 2022-06-05 12:28 PM PDT -JessicaLucindaCheng,2022-06-05T19:28:53Z,- JessicaLucindaCheng commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1146870016) at 2022-06-05 12:28 PM PDT -JessicaLucindaCheng,2022-06-05T21:54:47Z,- JessicaLucindaCheng commented on issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1146889828) at 2022-06-05 02:54 PM PDT -JessicaLucindaCheng,2022-06-05T21:56:56Z,- JessicaLucindaCheng commented on issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1146890081) at 2022-06-05 02:56 PM PDT -JessicaLucindaCheng,2022-06-05T22:35:19Z,- JessicaLucindaCheng commented on issue: [2935](https://github.com/hackforla/website/issues/2935#issuecomment-1146895575) at 2022-06-05 03:35 PM PDT -JessicaLucindaCheng,2022-06-05T22:35:19Z,- JessicaLucindaCheng reopened issue: [2935](https://github.com/hackforla/website/issues/2935#issuecomment-1146895575) at 2022-06-05 03:35 PM PDT -JessicaLucindaCheng,2022-06-06T22:05:03Z,- JessicaLucindaCheng commented on issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1147979492) at 2022-06-06 03:05 PM PDT -JessicaLucindaCheng,2022-06-08T20:16:01Z,- JessicaLucindaCheng commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1150364240) at 2022-06-08 01:16 PM PDT -JessicaLucindaCheng,2022-06-12T04:33:56Z,- JessicaLucindaCheng commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1153068857) at 2022-06-11 09:33 PM PDT -JessicaLucindaCheng,2022-06-12T05:34:53Z,- JessicaLucindaCheng commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1153077541) at 2022-06-11 10:34 PM PDT -JessicaLucindaCheng,2022-06-12T06:41:25Z,- JessicaLucindaCheng commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1153084987) at 2022-06-11 11:41 PM PDT -JessicaLucindaCheng,2022-06-12T16:27:16Z,- JessicaLucindaCheng opened issue: [3238](https://github.com/hackforla/website/issues/3238) at 2022-06-12 09:27 AM PDT -JessicaLucindaCheng,2022-06-12T16:45:01Z,- JessicaLucindaCheng commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-1153230064) at 2022-06-12 09:45 AM PDT -JessicaLucindaCheng,2022-06-12T20:46:15Z,- JessicaLucindaCheng commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1153288628) at 2022-06-12 01:46 PM PDT -JessicaLucindaCheng,2022-06-12T20:46:17Z,- JessicaLucindaCheng reopened issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1153288628) at 2022-06-12 01:46 PM PDT -JessicaLucindaCheng,2022-06-13T01:26:12Z,- JessicaLucindaCheng commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1153359796) at 2022-06-12 06:26 PM PDT -JessicaLucindaCheng,2022-06-13T01:38:41Z,- JessicaLucindaCheng commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1153368253) at 2022-06-12 06:38 PM PDT -JessicaLucindaCheng,2022-06-13T18:33:30Z,- JessicaLucindaCheng commented on issue: [3240](https://github.com/hackforla/website/issues/3240#issuecomment-1154247770) at 2022-06-13 11:33 AM PDT -JessicaLucindaCheng,2022-06-13T18:33:30Z,- JessicaLucindaCheng closed issue as completed: [3240](https://github.com/hackforla/website/issues/3240#event-6798351554) at 2022-06-13 11:33 AM PDT -JessicaLucindaCheng,2022-06-13T19:19:49Z,- JessicaLucindaCheng commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1154338032) at 2022-06-13 12:19 PM PDT -JessicaLucindaCheng,2022-06-13T20:50:27Z,- JessicaLucindaCheng assigned to issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1124737133) at 2022-06-13 01:50 PM PDT -JessicaLucindaCheng,2022-06-14T23:26:01Z,- JessicaLucindaCheng commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1155803187) at 2022-06-14 04:26 PM PDT -JessicaLucindaCheng,2022-06-15T21:11:14Z,- JessicaLucindaCheng assigned to issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1155804132) at 2022-06-15 02:11 PM PDT -JessicaLucindaCheng,2022-06-15T21:37:36Z,- JessicaLucindaCheng commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1156971748) at 2022-06-15 02:37 PM PDT -JessicaLucindaCheng,2022-06-20T21:37:42Z,- JessicaLucindaCheng opened issue: [3265](https://github.com/hackforla/website/issues/3265) at 2022-06-20 02:37 PM PDT -JessicaLucindaCheng,2022-06-20T21:40:43Z,- JessicaLucindaCheng commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1160867841) at 2022-06-20 02:40 PM PDT -JessicaLucindaCheng,2022-06-20T21:55:54Z,- JessicaLucindaCheng commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1160877429) at 2022-06-20 02:55 PM PDT -JessicaLucindaCheng,2022-06-20T22:29:37Z,- JessicaLucindaCheng commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1160901815) at 2022-06-20 03:29 PM PDT -JessicaLucindaCheng,2022-06-20T22:37:53Z,- JessicaLucindaCheng unassigned from issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1160901815) at 2022-06-20 03:37 PM PDT -JessicaLucindaCheng,2022-06-22T06:38:55Z,- JessicaLucindaCheng commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1162705692) at 2022-06-21 11:38 PM PDT -JessicaLucindaCheng,2022-06-22T07:09:39Z,- JessicaLucindaCheng commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1162731682) at 2022-06-22 12:09 AM PDT -JessicaLucindaCheng,2022-06-22T07:14:30Z,- JessicaLucindaCheng commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1162735905) at 2022-06-22 12:14 AM PDT -JessicaLucindaCheng,2022-06-23T19:41:41Z,- JessicaLucindaCheng opened issue: [3294](https://github.com/hackforla/website/issues/3294) at 2022-06-23 12:41 PM PDT -JessicaLucindaCheng,2022-06-23T20:27:38Z,- JessicaLucindaCheng opened issue: [3295](https://github.com/hackforla/website/issues/3295) at 2022-06-23 01:27 PM PDT -JessicaLucindaCheng,2022-06-23T20:43:34Z,- JessicaLucindaCheng opened issue: [3296](https://github.com/hackforla/website/issues/3296) at 2022-06-23 01:43 PM PDT -JessicaLucindaCheng,2022-06-23T22:45:40Z,- JessicaLucindaCheng commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1164984320) at 2022-06-23 03:45 PM PDT -JessicaLucindaCheng,2022-06-23T22:46:21Z,- JessicaLucindaCheng commented on issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1164984691) at 2022-06-23 03:46 PM PDT -JessicaLucindaCheng,2022-06-23T22:46:30Z,- JessicaLucindaCheng commented on issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1164984752) at 2022-06-23 03:46 PM PDT -JessicaLucindaCheng,2022-06-24T00:44:25Z,- JessicaLucindaCheng commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1165048665) at 2022-06-23 05:44 PM PDT -JessicaLucindaCheng,2022-06-24T17:34:59Z,- JessicaLucindaCheng commented on issue: [2935](https://github.com/hackforla/website/issues/2935#issuecomment-1165789295) at 2022-06-24 10:34 AM PDT -JessicaLucindaCheng,2022-06-24T17:35:22Z,- JessicaLucindaCheng closed issue as not planned: [2935](https://github.com/hackforla/website/issues/2935#event-6875820998) at 2022-06-24 10:35 AM PDT -JessicaLucindaCheng,2022-06-26T17:01:25Z,- JessicaLucindaCheng commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166588198) at 2022-06-26 10:01 AM PDT -JessicaLucindaCheng,2022-06-26T17:32:55Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1166596259) at 2022-06-26 10:32 AM PDT -JessicaLucindaCheng,2022-06-26T17:45:21Z,- JessicaLucindaCheng commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1166599048) at 2022-06-26 10:45 AM PDT -JessicaLucindaCheng,2022-06-26T18:06:09Z,- JessicaLucindaCheng commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1166603889) at 2022-06-26 11:06 AM PDT -JessicaLucindaCheng,2022-06-26T18:15:05Z,- JessicaLucindaCheng closed issue as completed: [3305](https://github.com/hackforla/website/issues/3305#event-6880721024) at 2022-06-26 11:15 AM PDT -JessicaLucindaCheng,2022-06-27T19:19:08Z,- JessicaLucindaCheng commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1167779490) at 2022-06-27 12:19 PM PDT -JessicaLucindaCheng,2022-06-27T19:25:58Z,- JessicaLucindaCheng commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1167787681) at 2022-06-27 12:25 PM PDT -JessicaLucindaCheng,2022-06-27T19:26:47Z,- JessicaLucindaCheng commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1167788479) at 2022-06-27 12:26 PM PDT -JessicaLucindaCheng,2022-06-27T20:12:27Z,- JessicaLucindaCheng commented on issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1167834781) at 2022-06-27 01:12 PM PDT -JessicaLucindaCheng,2022-06-27T20:12:27Z,- JessicaLucindaCheng reopened issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1167834781) at 2022-06-27 01:12 PM PDT -JessicaLucindaCheng,2022-06-27T20:34:13Z,- JessicaLucindaCheng commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1167859032) at 2022-06-27 01:34 PM PDT -JessicaLucindaCheng,2022-06-27T20:34:13Z,- JessicaLucindaCheng reopened issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1167859032) at 2022-06-27 01:34 PM PDT -JessicaLucindaCheng,2022-06-27T20:55:19Z,- JessicaLucindaCheng commented on issue: [3167](https://github.com/hackforla/website/issues/3167#issuecomment-1167886430) at 2022-06-27 01:55 PM PDT -JessicaLucindaCheng,2022-06-28T21:25:16Z,- JessicaLucindaCheng commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1169258275) at 2022-06-28 02:25 PM PDT -JessicaLucindaCheng,2022-06-30T18:05:56Z,- JessicaLucindaCheng commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1171523578) at 2022-06-30 11:05 AM PDT -JessicaLucindaCheng,2022-07-03T17:00:45Z,- JessicaLucindaCheng opened issue: [3328](https://github.com/hackforla/website/issues/3328) at 2022-07-03 10:00 AM PDT -JessicaLucindaCheng,2022-07-06T01:50:09Z,- JessicaLucindaCheng commented on pull request: [3325](https://github.com/hackforla/website/pull/3325#issuecomment-1175686979) at 2022-07-05 06:50 PM PDT -JessicaLucindaCheng,2022-07-06T01:51:14Z,- JessicaLucindaCheng commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1175687534) at 2022-07-05 06:51 PM PDT -JessicaLucindaCheng,2022-07-06T01:57:40Z,- JessicaLucindaCheng opened issue: [3331](https://github.com/hackforla/website/issues/3331) at 2022-07-05 06:57 PM PDT -JessicaLucindaCheng,2022-07-06T01:57:55Z,- JessicaLucindaCheng commented on issue: [3331](https://github.com/hackforla/website/issues/3331#issuecomment-1175690876) at 2022-07-05 06:57 PM PDT -JessicaLucindaCheng,2022-07-06T02:15:00Z,- JessicaLucindaCheng commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1175701208) at 2022-07-05 07:15 PM PDT -JessicaLucindaCheng,2022-07-06T02:15:01Z,- JessicaLucindaCheng closed issue by PR 3326: [3294](https://github.com/hackforla/website/issues/3294#event-6938752744) at 2022-07-05 07:15 PM PDT -JessicaLucindaCheng,2022-07-07T03:11:35Z,- JessicaLucindaCheng opened issue: [3336](https://github.com/hackforla/website/issues/3336) at 2022-07-06 08:11 PM PDT -JessicaLucindaCheng,2022-07-07T03:12:39Z,- JessicaLucindaCheng commented on issue: [3336](https://github.com/hackforla/website/issues/3336#issuecomment-1177001753) at 2022-07-06 08:12 PM PDT -JessicaLucindaCheng,2022-07-07T03:28:50Z,- JessicaLucindaCheng opened issue: [3337](https://github.com/hackforla/website/issues/3337) at 2022-07-06 08:28 PM PDT -JessicaLucindaCheng,2022-07-07T03:29:43Z,- JessicaLucindaCheng commented on issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1177011694) at 2022-07-06 08:29 PM PDT -JessicaLucindaCheng,2022-07-10T01:10:12Z,- JessicaLucindaCheng commented on pull request: [3338](https://github.com/hackforla/website/pull/3338#issuecomment-1179632289) at 2022-07-09 06:10 PM PDT -JessicaLucindaCheng,2022-07-10T01:10:38Z,- JessicaLucindaCheng commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1179632333) at 2022-07-09 06:10 PM PDT -JessicaLucindaCheng,2022-07-10T01:11:15Z,- JessicaLucindaCheng closed issue by PR 3338: [3131](https://github.com/hackforla/website/issues/3131#event-6964501816) at 2022-07-09 06:11 PM PDT -JessicaLucindaCheng,2022-07-10T01:38:57Z,- JessicaLucindaCheng opened issue: [3342](https://github.com/hackforla/website/issues/3342) at 2022-07-09 06:38 PM PDT -JessicaLucindaCheng,2022-07-10T01:42:09Z,- JessicaLucindaCheng commented on issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1179635333) at 2022-07-09 06:42 PM PDT -JessicaLucindaCheng,2022-07-10T23:24:53Z,- JessicaLucindaCheng opened issue: [3351](https://github.com/hackforla/website/issues/3351) at 2022-07-10 04:24 PM PDT -JessicaLucindaCheng,2022-07-10T23:30:30Z,- JessicaLucindaCheng commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1179823406) at 2022-07-10 04:30 PM PDT -JessicaLucindaCheng,2022-07-10T23:37:14Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1179824495) at 2022-07-10 04:37 PM PDT -JessicaLucindaCheng,2022-07-11T00:01:40Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1179828880) at 2022-07-10 05:01 PM PDT -JessicaLucindaCheng,2022-07-11T01:12:20Z,- JessicaLucindaCheng opened issue: [3352](https://github.com/hackforla/website/issues/3352) at 2022-07-10 06:12 PM PDT -JessicaLucindaCheng,2022-07-11T01:13:04Z,- JessicaLucindaCheng commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1179852137) at 2022-07-10 06:13 PM PDT -JessicaLucindaCheng,2022-07-11T01:23:47Z,- JessicaLucindaCheng opened issue: [3353](https://github.com/hackforla/website/issues/3353) at 2022-07-10 06:23 PM PDT -JessicaLucindaCheng,2022-07-11T01:24:38Z,- JessicaLucindaCheng commented on issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1179858411) at 2022-07-10 06:24 PM PDT -JessicaLucindaCheng,2022-07-11T19:52:47Z,- JessicaLucindaCheng closed issue as completed: [2612](https://github.com/hackforla/website/issues/2612#event-6972311840) at 2022-07-11 12:52 PM PDT -JessicaLucindaCheng,2022-07-11T19:54:54Z,- JessicaLucindaCheng closed issue as completed: [2616](https://github.com/hackforla/website/issues/2616#event-6972323367) at 2022-07-11 12:54 PM PDT -JessicaLucindaCheng,2022-07-11T20:03:06Z,- JessicaLucindaCheng commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1180813008) at 2022-07-11 01:03 PM PDT -JessicaLucindaCheng,2022-07-11T20:04:38Z,- JessicaLucindaCheng closed issue as completed: [2614](https://github.com/hackforla/website/issues/2614#event-6972378236) at 2022-07-11 01:04 PM PDT -JessicaLucindaCheng,2022-07-11T20:14:06Z,- JessicaLucindaCheng commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1180823454) at 2022-07-11 01:14 PM PDT -JessicaLucindaCheng,2022-07-11T20:14:06Z,- JessicaLucindaCheng closed issue as not planned: [3149](https://github.com/hackforla/website/issues/3149#event-6972432034) at 2022-07-11 01:14 PM PDT -JessicaLucindaCheng,2022-07-11T20:26:15Z,- JessicaLucindaCheng closed issue as not planned: [3189](https://github.com/hackforla/website/issues/3189#event-6972512967) at 2022-07-11 01:26 PM PDT -JessicaLucindaCheng,2022-07-11T20:27:10Z,- JessicaLucindaCheng commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1180835721) at 2022-07-11 01:27 PM PDT -JessicaLucindaCheng,2022-07-11T20:43:37Z,- JessicaLucindaCheng commented on issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1180851068) at 2022-07-11 01:43 PM PDT -JessicaLucindaCheng,2022-07-11T21:00:37Z,- JessicaLucindaCheng opened issue: [3358](https://github.com/hackforla/website/issues/3358) at 2022-07-11 02:00 PM PDT -JessicaLucindaCheng,2022-07-11T21:01:40Z,- JessicaLucindaCheng commented on issue: [3358](https://github.com/hackforla/website/issues/3358#issuecomment-1180866276) at 2022-07-11 02:01 PM PDT -JessicaLucindaCheng,2022-07-13T00:44:11Z,- JessicaLucindaCheng commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1182638565) at 2022-07-12 05:44 PM PDT -JessicaLucindaCheng,2022-07-13T00:55:51Z,- JessicaLucindaCheng commented on issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1182644379) at 2022-07-12 05:55 PM PDT -JessicaLucindaCheng,2022-07-13T00:55:51Z,- JessicaLucindaCheng closed issue as not planned: [3246](https://github.com/hackforla/website/issues/3246#event-6981982448) at 2022-07-12 05:55 PM PDT -JessicaLucindaCheng,2022-07-16T08:08:22Z,- JessicaLucindaCheng commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1186115078) at 2022-07-16 01:08 AM PDT -JessicaLucindaCheng,2022-07-16T08:59:47Z,- JessicaLucindaCheng commented on issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1186125503) at 2022-07-16 01:59 AM PDT -JessicaLucindaCheng,2022-07-16T08:59:48Z,- JessicaLucindaCheng reopened issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1186125503) at 2022-07-16 01:59 AM PDT -JessicaLucindaCheng,2022-07-17T01:47:37Z,- JessicaLucindaCheng opened issue: [3376](https://github.com/hackforla/website/issues/3376) at 2022-07-16 06:47 PM PDT -JessicaLucindaCheng,2022-07-17T01:51:13Z,- JessicaLucindaCheng assigned to issue: [3376](https://github.com/hackforla/website/issues/3376) at 2022-07-16 06:51 PM PDT -JessicaLucindaCheng,2022-07-17T03:55:38Z,- JessicaLucindaCheng opened issue: [3377](https://github.com/hackforla/website/issues/3377) at 2022-07-16 08:55 PM PDT -JessicaLucindaCheng,2022-07-17T07:27:51Z,- JessicaLucindaCheng opened pull request: [3378](https://github.com/hackforla/website/pull/3378) at 2022-07-17 12:27 AM PDT -JessicaLucindaCheng,2022-07-17T07:58:01Z,- JessicaLucindaCheng unassigned from issue: [3376](https://github.com/hackforla/website/issues/3376) at 2022-07-17 12:58 AM PDT -JessicaLucindaCheng,2022-07-17T18:40:11Z,- JessicaLucindaCheng commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1186587174) at 2022-07-17 11:40 AM PDT -JessicaLucindaCheng,2022-07-21T23:06:35Z,- JessicaLucindaCheng commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1192015662) at 2022-07-21 04:06 PM PDT -JessicaLucindaCheng,2022-07-21T23:44:27Z,- JessicaLucindaCheng commented on issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1192033274) at 2022-07-21 04:44 PM PDT -JessicaLucindaCheng,2022-07-22T00:06:08Z,- JessicaLucindaCheng commented on issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1192044729) at 2022-07-21 05:06 PM PDT -JessicaLucindaCheng,2022-07-22T01:36:59Z,- JessicaLucindaCheng opened issue: [3415](https://github.com/hackforla/website/issues/3415) at 2022-07-21 06:36 PM PDT -JessicaLucindaCheng,2022-07-22T01:37:11Z,- JessicaLucindaCheng commented on issue: [3415](https://github.com/hackforla/website/issues/3415#issuecomment-1192092035) at 2022-07-21 06:37 PM PDT -JessicaLucindaCheng,2022-07-22T01:42:10Z,- JessicaLucindaCheng opened issue: [3416](https://github.com/hackforla/website/issues/3416) at 2022-07-21 06:42 PM PDT -JessicaLucindaCheng,2022-07-22T01:42:20Z,- JessicaLucindaCheng commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1192094491) at 2022-07-21 06:42 PM PDT -JessicaLucindaCheng,2022-07-22T01:48:14Z,- JessicaLucindaCheng opened issue: [3418](https://github.com/hackforla/website/issues/3418) at 2022-07-21 06:48 PM PDT -JessicaLucindaCheng,2022-07-22T01:48:25Z,- JessicaLucindaCheng commented on issue: [3418](https://github.com/hackforla/website/issues/3418#issuecomment-1192097211) at 2022-07-21 06:48 PM PDT -JessicaLucindaCheng,2022-07-22T02:46:35Z,- JessicaLucindaCheng assigned to issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1189771039) at 2022-07-21 07:46 PM PDT -JessicaLucindaCheng,2022-07-22T02:46:38Z,- JessicaLucindaCheng unassigned from issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1189771039) at 2022-07-21 07:46 PM PDT -JessicaLucindaCheng,2022-07-23T00:39:05Z,- JessicaLucindaCheng commented on issue: [3415](https://github.com/hackforla/website/issues/3415#issuecomment-1193022680) at 2022-07-22 05:39 PM PDT -JessicaLucindaCheng,2022-07-23T00:50:26Z,- JessicaLucindaCheng commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1193024853) at 2022-07-22 05:50 PM PDT -JessicaLucindaCheng,2022-07-23T01:08:51Z,- JessicaLucindaCheng opened issue: [3423](https://github.com/hackforla/website/issues/3423) at 2022-07-22 06:08 PM PDT -JessicaLucindaCheng,2022-07-23T01:20:13Z,- JessicaLucindaCheng commented on issue: [3423](https://github.com/hackforla/website/issues/3423#issuecomment-1193030715) at 2022-07-22 06:20 PM PDT -JessicaLucindaCheng,2022-07-23T01:34:11Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1193033180) at 2022-07-22 06:34 PM PDT -JessicaLucindaCheng,2022-07-25T22:15:01Z,- JessicaLucindaCheng commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1194699146) at 2022-07-25 03:15 PM PDT -JessicaLucindaCheng,2022-07-31T16:34:25Z,- JessicaLucindaCheng commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1200457781) at 2022-07-31 09:34 AM PDT -JessicaLucindaCheng,2022-07-31T20:56:58Z,- JessicaLucindaCheng closed issue as not planned: [3240](https://github.com/hackforla/website/issues/3240#event-7096822387) at 2022-07-31 01:56 PM PDT -JessicaLucindaCheng,2022-08-01T23:31:32Z,- JessicaLucindaCheng commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1201839289) at 2022-08-01 04:31 PM PDT -JessicaLucindaCheng,2022-08-02T00:15:00Z,- JessicaLucindaCheng commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1201863585) at 2022-08-01 05:15 PM PDT -JessicaLucindaCheng,2022-08-02T02:45:20Z,- JessicaLucindaCheng commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1201952064) at 2022-08-01 07:45 PM PDT -JessicaLucindaCheng,2022-08-02T02:45:20Z,- JessicaLucindaCheng closed issue as completed: [2554](https://github.com/hackforla/website/issues/2554#event-7106183068) at 2022-08-01 07:45 PM PDT -JessicaLucindaCheng,2022-08-08T15:58:40Z,- JessicaLucindaCheng commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1208310586) at 2022-08-08 08:58 AM PDT -JessicaLucindaCheng,2022-08-08T19:37:53Z,- JessicaLucindaCheng closed issue as not planned: [3364](https://github.com/hackforla/website/issues/3364#event-7149834336) at 2022-08-08 12:37 PM PDT -JessicaLucindaCheng,2022-08-08T19:56:50Z,- JessicaLucindaCheng commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1208547707) at 2022-08-08 12:56 PM PDT -JessicaLucindaCheng,2022-08-09T23:55:16Z,- JessicaLucindaCheng opened pull request: [3456](https://github.com/hackforla/website/pull/3456) at 2022-08-09 04:55 PM PDT -JessicaLucindaCheng,2022-08-13T09:41:42Z,- JessicaLucindaCheng pull request merged: [3456](https://github.com/hackforla/website/pull/3456#event-7183062908) at 2022-08-13 02:41 AM PDT -JessicaLucindaCheng,2022-09-12T18:14:44Z,- JessicaLucindaCheng commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1244118865) at 2022-09-12 11:14 AM PDT -JessicaLucindaCheng,2022-09-12T20:21:29Z,- JessicaLucindaCheng opened pull request: [3538](https://github.com/hackforla/website/pull/3538) at 2022-09-12 01:21 PM PDT -JessicaLucindaCheng,2022-09-12T20:49:26Z,- JessicaLucindaCheng commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1244446002) at 2022-09-12 01:49 PM PDT -JessicaLucindaCheng,2022-09-12T22:00:20Z,- JessicaLucindaCheng commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1244564151) at 2022-09-12 03:00 PM PDT -JessicaLucindaCheng,2022-09-14T15:11:52Z,- JessicaLucindaCheng commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1246917051) at 2022-09-14 08:11 AM PDT -JessicaLucindaCheng,2022-09-14T15:50:53Z,- JessicaLucindaCheng commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1246970068) at 2022-09-14 08:50 AM PDT -JessicaLucindaCheng,2022-09-18T00:37:48Z,- JessicaLucindaCheng commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1250163449) at 2022-09-17 05:37 PM PDT -JessicaLucindaCheng,2022-09-18T00:37:49Z,- JessicaLucindaCheng closed issue as completed: [2211](https://github.com/hackforla/website/issues/2211#event-7408260609) at 2022-09-17 05:37 PM PDT -JessicaLucindaCheng,2022-09-18T04:43:27Z,- JessicaLucindaCheng opened issue: [3562](https://github.com/hackforla/website/issues/3562) at 2022-09-17 09:43 PM PDT -JessicaLucindaCheng,2022-09-19T19:56:41Z,- JessicaLucindaCheng commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1251481065) at 2022-09-19 12:56 PM PDT -JessicaLucindaCheng,2022-09-19T20:59:28Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1251541241) at 2022-09-19 01:59 PM PDT -JessicaLucindaCheng,2022-09-19T21:23:41Z,- JessicaLucindaCheng commented on issue: [3415](https://github.com/hackforla/website/issues/3415#issuecomment-1251576284) at 2022-09-19 02:23 PM PDT -JessicaLucindaCheng,2022-09-19T21:23:50Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1251576439) at 2022-09-19 02:23 PM PDT -JessicaLucindaCheng,2022-09-19T22:39:43Z,- JessicaLucindaCheng commented on issue: [3358](https://github.com/hackforla/website/issues/3358#issuecomment-1251642815) at 2022-09-19 03:39 PM PDT -JessicaLucindaCheng,2022-09-19T22:39:46Z,- JessicaLucindaCheng closed issue by PR 3444: [3358](https://github.com/hackforla/website/issues/3358#event-7417430757) at 2022-09-19 03:39 PM PDT -JessicaLucindaCheng,2022-09-19T23:14:33Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1251663721) at 2022-09-19 04:14 PM PDT -JessicaLucindaCheng,2022-09-19T23:48:14Z,- JessicaLucindaCheng commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1251684598) at 2022-09-19 04:48 PM PDT -JessicaLucindaCheng,2022-09-21T22:38:46Z,- JessicaLucindaCheng commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1254305375) at 2022-09-21 03:38 PM PDT -JessicaLucindaCheng,2022-09-25T02:10:59Z,- JessicaLucindaCheng commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1257100889) at 2022-09-24 07:10 PM PDT -JessicaLucindaCheng,2022-09-26T20:39:27Z,- JessicaLucindaCheng commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1258607794) at 2022-09-26 01:39 PM PDT -JessicaLucindaCheng,2022-09-26T21:38:12Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1258662625) at 2022-09-26 02:38 PM PDT -JessicaLucindaCheng,2022-10-05T10:19:57Z,- JessicaLucindaCheng commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1268238877) at 2022-10-05 03:19 AM PDT -JessicaLucindaCheng,2022-10-16T15:44:44Z,- JessicaLucindaCheng commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1279995139) at 2022-10-16 08:44 AM PDT -JessicaLucindaCheng,2022-10-16T16:01:35Z,- JessicaLucindaCheng commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1279998006) at 2022-10-16 09:01 AM PDT -JessicaLucindaCheng,2022-10-16T16:11:46Z,- JessicaLucindaCheng commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1280000156) at 2022-10-16 09:11 AM PDT -JessicaLucindaCheng,2022-10-24T20:40:22Z,- JessicaLucindaCheng commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1289589303) at 2022-10-24 01:40 PM PDT -JessicaLucindaCheng,2022-10-25T22:14:40Z,- JessicaLucindaCheng commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1291199290) at 2022-10-25 03:14 PM PDT -JessicaLucindaCheng,2022-10-26T08:00:38Z,- JessicaLucindaCheng opened pull request: [3663](https://github.com/hackforla/website/pull/3663) at 2022-10-26 01:00 AM PDT -JessicaLucindaCheng,2022-10-26T08:11:21Z,- JessicaLucindaCheng opened pull request: [3665](https://github.com/hackforla/website/pull/3665) at 2022-10-26 01:11 AM PDT -JessicaLucindaCheng,2022-10-26T08:56:43Z,- JessicaLucindaCheng commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1291717434) at 2022-10-26 01:56 AM PDT -JessicaLucindaCheng,2022-10-26T09:34:02Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1291763667) at 2022-10-26 02:34 AM PDT -JessicaLucindaCheng,2022-10-26T09:43:53Z,- JessicaLucindaCheng commented on issue: [2972](https://github.com/hackforla/website/issues/2972#issuecomment-1291774432) at 2022-10-26 02:43 AM PDT -JessicaLucindaCheng,2022-10-26T09:43:53Z,- JessicaLucindaCheng closed issue as not planned: [2972](https://github.com/hackforla/website/issues/2972#event-7671104221) at 2022-10-26 02:43 AM PDT -JessicaLucindaCheng,2022-10-26T09:45:07Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1291775801) at 2022-10-26 02:45 AM PDT -JessicaLucindaCheng,2022-10-30T17:20:25Z,- JessicaLucindaCheng commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1296307149) at 2022-10-30 10:20 AM PDT -JessicaLucindaCheng,2022-10-31T10:09:07Z,- JessicaLucindaCheng opened issue: [3678](https://github.com/hackforla/website/issues/3678) at 2022-10-31 03:09 AM PDT -JessicaLucindaCheng,2022-10-31T10:11:19Z,- JessicaLucindaCheng commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1296869839) at 2022-10-31 03:11 AM PDT -JessicaLucindaCheng,2022-10-31T20:52:30Z,- JessicaLucindaCheng commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1297671317) at 2022-10-31 01:52 PM PDT -JessicaLucindaCheng,2022-11-03T00:06:36Z,- JessicaLucindaCheng commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1301508627) at 2022-11-02 05:06 PM PDT -JessicaLucindaCheng,2022-11-03T00:16:35Z,- JessicaLucindaCheng commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1301513984) at 2022-11-02 05:16 PM PDT -JessicaLucindaCheng,2022-11-03T20:51:43Z,- JessicaLucindaCheng commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1302649451) at 2022-11-03 01:51 PM PDT -JessicaLucindaCheng,2022-11-03T21:06:56Z,- JessicaLucindaCheng commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1302663199) at 2022-11-03 02:06 PM PDT -JessicaLucindaCheng,2022-11-03T21:22:13Z,- JessicaLucindaCheng commented on issue: [3453](https://github.com/hackforla/website/issues/3453#issuecomment-1302678622) at 2022-11-03 02:22 PM PDT -JessicaLucindaCheng,2022-11-03T21:24:13Z,- JessicaLucindaCheng commented on issue: [3453](https://github.com/hackforla/website/issues/3453#issuecomment-1302680444) at 2022-11-03 02:24 PM PDT -JessicaLucindaCheng,2022-11-03T21:24:22Z,- JessicaLucindaCheng closed issue as completed: [3453](https://github.com/hackforla/website/issues/3453#event-7736002918) at 2022-11-03 02:24 PM PDT -JessicaLucindaCheng,2022-11-06T17:59:00Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1304857311) at 2022-11-06 09:59 AM PST -JessicaLucindaCheng,2022-11-06T19:17:11Z,- JessicaLucindaCheng commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304873183) at 2022-11-06 11:17 AM PST -JessicaLucindaCheng,2022-11-06T19:32:50Z,- JessicaLucindaCheng commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1304875746) at 2022-11-06 11:32 AM PST -JessicaLucindaCheng,2022-11-06T19:49:14Z,- JessicaLucindaCheng commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304878628) at 2022-11-06 11:49 AM PST -JessicaLucindaCheng,2022-11-06T21:33:32Z,- JessicaLucindaCheng commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1304899236) at 2022-11-06 01:33 PM PST -JessicaLucindaCheng,2022-11-06T21:39:57Z,- JessicaLucindaCheng commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1304900574) at 2022-11-06 01:39 PM PST -JessicaLucindaCheng,2022-11-08T20:06:12Z,- JessicaLucindaCheng commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1307766232) at 2022-11-08 12:06 PM PST -JessicaLucindaCheng,2022-11-09T01:01:18Z,- JessicaLucindaCheng reopened issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1261164143) at 2022-11-08 05:01 PM PST -JessicaLucindaCheng,2022-11-09T01:02:05Z,- JessicaLucindaCheng commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1308049061) at 2022-11-08 05:02 PM PST -JessicaLucindaCheng,2022-11-09T01:10:44Z,- JessicaLucindaCheng reopened issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1261073070) at 2022-11-08 05:10 PM PST -JessicaLucindaCheng,2022-11-09T01:15:16Z,- JessicaLucindaCheng commented on issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1308060800) at 2022-11-08 05:15 PM PST -JessicaLucindaCheng,2022-11-09T01:23:20Z,- JessicaLucindaCheng commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1308066218) at 2022-11-08 05:23 PM PST -JessicaLucindaCheng,2022-11-09T02:15:56Z,- JessicaLucindaCheng assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -JessicaLucindaCheng,2022-11-09T10:18:00Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1308526568) at 2022-11-09 02:18 AM PST -JessicaLucindaCheng,2022-11-09T15:58:02Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1308976799) at 2022-11-09 07:58 AM PST -JessicaLucindaCheng,2022-11-10T01:59:00Z,- JessicaLucindaCheng commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1309663483) at 2022-11-09 05:59 PM PST -JessicaLucindaCheng,2022-11-10T03:03:00Z,- JessicaLucindaCheng commented on issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1309702705) at 2022-11-09 07:03 PM PST -JessicaLucindaCheng,2022-11-13T16:21:28Z,- JessicaLucindaCheng commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1312768622) at 2022-11-13 08:21 AM PST -JessicaLucindaCheng,2022-11-13T16:29:46Z,- JessicaLucindaCheng commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312770160) at 2022-11-13 08:29 AM PST -JessicaLucindaCheng,2022-11-13T16:32:28Z,- JessicaLucindaCheng commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1312770682) at 2022-11-13 08:32 AM PST -JessicaLucindaCheng,2022-11-13T16:35:19Z,- JessicaLucindaCheng commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-1312771217) at 2022-11-13 08:35 AM PST -JessicaLucindaCheng,2022-11-13T16:43:29Z,- JessicaLucindaCheng commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1312772752) at 2022-11-13 08:43 AM PST -JessicaLucindaCheng,2022-11-13T18:24:52Z,- JessicaLucindaCheng commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1312791841) at 2022-11-13 10:24 AM PST -JessicaLucindaCheng,2022-11-14T21:26:32Z,- JessicaLucindaCheng commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1314405145) at 2022-11-14 01:26 PM PST -JessicaLucindaCheng,2022-11-14T21:40:40Z,- JessicaLucindaCheng commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1314443053) at 2022-11-14 01:40 PM PST -JessicaLucindaCheng,2022-11-14T22:12:23Z,- JessicaLucindaCheng commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1314477129) at 2022-11-14 02:12 PM PST -JessicaLucindaCheng,2022-11-16T01:01:16Z,- JessicaLucindaCheng commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-1316114038) at 2022-11-15 05:01 PM PST -JessicaLucindaCheng,2022-11-20T15:34:17Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1321162336) at 2022-11-20 07:34 AM PST -JessicaLucindaCheng,2022-11-20T15:45:18Z,- JessicaLucindaCheng commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1321164662) at 2022-11-20 07:45 AM PST -JessicaLucindaCheng,2022-11-22T01:57:20Z,- JessicaLucindaCheng opened issue: [3738](https://github.com/hackforla/website/issues/3738) at 2022-11-21 05:57 PM PST -JessicaLucindaCheng,2022-11-22T01:58:38Z,- JessicaLucindaCheng commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1322906568) at 2022-11-21 05:58 PM PST -JessicaLucindaCheng,2022-11-22T04:19:41Z,- JessicaLucindaCheng commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1323027771) at 2022-11-21 08:19 PM PST -JessicaLucindaCheng,2022-11-28T12:05:47Z,- JessicaLucindaCheng commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1328963596) at 2022-11-28 04:05 AM PST -JessicaLucindaCheng,2022-11-28T23:53:47Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1329896735) at 2022-11-28 03:53 PM PST -JessicaLucindaCheng,2022-11-29T01:32:10Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1329959960) at 2022-11-28 05:32 PM PST -JessicaLucindaCheng,2022-11-29T01:47:29Z,- JessicaLucindaCheng commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1329968502) at 2022-11-28 05:47 PM PST -JessicaLucindaCheng,2022-11-30T15:10:20Z,- JessicaLucindaCheng commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1332315647) at 2022-11-30 07:10 AM PST -JessicaLucindaCheng,2022-11-30T15:14:47Z,- JessicaLucindaCheng commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1332325541) at 2022-11-30 07:14 AM PST -JessicaLucindaCheng,2022-11-30T15:19:41Z,- JessicaLucindaCheng opened issue: [3756](https://github.com/hackforla/website/issues/3756) at 2022-11-30 07:19 AM PST -JessicaLucindaCheng,2022-11-30T15:21:54Z,- JessicaLucindaCheng commented on issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1332338618) at 2022-11-30 07:21 AM PST -JessicaLucindaCheng,2022-11-30T15:38:44Z,- JessicaLucindaCheng opened issue: [3757](https://github.com/hackforla/website/issues/3757) at 2022-11-30 07:38 AM PST -JessicaLucindaCheng,2022-11-30T15:48:12Z,- JessicaLucindaCheng opened issue: [3758](https://github.com/hackforla/website/issues/3758) at 2022-11-30 07:48 AM PST -JessicaLucindaCheng,2022-11-30T16:08:57Z,- JessicaLucindaCheng commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1332402495) at 2022-11-30 08:08 AM PST -JessicaLucindaCheng,2022-12-01T03:18:45Z,- JessicaLucindaCheng commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1333109214) at 2022-11-30 07:18 PM PST -JessicaLucindaCheng,2022-12-01T08:16:39Z,- JessicaLucindaCheng commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1333380481) at 2022-12-01 12:16 AM PST -JessicaLucindaCheng,2022-12-01T08:23:21Z,- JessicaLucindaCheng commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1333387663) at 2022-12-01 12:23 AM PST -JessicaLucindaCheng,2022-12-01T08:45:20Z,- JessicaLucindaCheng commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1333410350) at 2022-12-01 12:45 AM PST -JessicaLucindaCheng,2022-12-01T09:35:35Z,- JessicaLucindaCheng opened pull request: [3760](https://github.com/hackforla/website/pull/3760) at 2022-12-01 01:35 AM PST -JessicaLucindaCheng,2022-12-01T10:38:02Z,- JessicaLucindaCheng commented on issue: [3415](https://github.com/hackforla/website/issues/3415#issuecomment-1333559213) at 2022-12-01 02:38 AM PST -JessicaLucindaCheng,2022-12-01T11:12:35Z,- JessicaLucindaCheng commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1333602077) at 2022-12-01 03:12 AM PST -JessicaLucindaCheng,2022-12-01T11:12:59Z,- JessicaLucindaCheng commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1333602592) at 2022-12-01 03:12 AM PST -JessicaLucindaCheng,2022-12-01T11:17:51Z,- JessicaLucindaCheng commented on issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1333608653) at 2022-12-01 03:17 AM PST -JessicaLucindaCheng,2022-12-01T11:51:01Z,- JessicaLucindaCheng opened issue: [3761](https://github.com/hackforla/website/issues/3761) at 2022-12-01 03:51 AM PST -JessicaLucindaCheng,2022-12-01T11:51:55Z,- JessicaLucindaCheng commented on issue: [3761](https://github.com/hackforla/website/issues/3761#issuecomment-1333648797) at 2022-12-01 03:51 AM PST -JessicaLucindaCheng,2022-12-02T03:01:52Z,- JessicaLucindaCheng commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1334702332) at 2022-12-01 07:01 PM PST -JessicaLucindaCheng,2022-12-02T03:01:55Z,- JessicaLucindaCheng reopened issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1334702332) at 2022-12-01 07:01 PM PST -JessicaLucindaCheng,2022-12-03T02:21:56Z,- JessicaLucindaCheng commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1336016133) at 2022-12-02 06:21 PM PST -JessicaLucindaCheng,2022-12-03T10:16:03Z,- JessicaLucindaCheng commented on issue: [3761](https://github.com/hackforla/website/issues/3761#issuecomment-1336128568) at 2022-12-03 02:16 AM PST -JessicaLucindaCheng,2022-12-03T11:01:11Z,- JessicaLucindaCheng opened issue: [3766](https://github.com/hackforla/website/issues/3766) at 2022-12-03 03:01 AM PST -JessicaLucindaCheng,2022-12-03T11:09:51Z,- JessicaLucindaCheng commented on issue: [3766](https://github.com/hackforla/website/issues/3766#issuecomment-1336136439) at 2022-12-03 03:09 AM PST -JessicaLucindaCheng,2022-12-15T09:40:32Z,- JessicaLucindaCheng commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1352797019) at 2022-12-15 01:40 AM PST -JessicaLucindaCheng,2022-12-15T10:48:32Z,- JessicaLucindaCheng commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1352881530) at 2022-12-15 02:48 AM PST -JessicaLucindaCheng,2022-12-21T06:02:04Z,- JessicaLucindaCheng closed issue by PR 3764: [3416](https://github.com/hackforla/website/issues/3416#event-8084008202) at 2022-12-20 10:02 PM PST -JessicaLucindaCheng,2023-01-03T06:42:48Z,- JessicaLucindaCheng commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1369437598) at 2023-01-02 10:42 PM PST -JessicaLucindaCheng,2023-01-03T07:00:47Z,- JessicaLucindaCheng opened issue: [3775](https://github.com/hackforla/website/issues/3775) at 2023-01-02 11:00 PM PST -JessicaLucindaCheng,2023-01-04T14:22:57Z,- JessicaLucindaCheng opened issue: [3792](https://github.com/hackforla/website/issues/3792) at 2023-01-04 06:22 AM PST -JessicaLucindaCheng,2023-01-04T15:40:49Z,- JessicaLucindaCheng opened issue: [3793](https://github.com/hackforla/website/issues/3793) at 2023-01-04 07:40 AM PST -JessicaLucindaCheng,2023-01-04T16:11:54Z,- JessicaLucindaCheng commented on issue: [3793](https://github.com/hackforla/website/issues/3793#issuecomment-1371127206) at 2023-01-04 08:11 AM PST -JessicaLucindaCheng,2023-01-08T07:49:55Z,- JessicaLucindaCheng commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1374745980) at 2023-01-07 11:49 PM PST -JessicaLucindaCheng,2023-01-08T07:50:28Z,- JessicaLucindaCheng commented on issue: [3766](https://github.com/hackforla/website/issues/3766#issuecomment-1374746113) at 2023-01-07 11:50 PM PST -JessicaLucindaCheng,2023-01-08T07:53:44Z,- JessicaLucindaCheng commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1374747101) at 2023-01-07 11:53 PM PST -JessicaLucindaCheng,2023-01-08T08:00:27Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1374749075) at 2023-01-08 12:00 AM PST -JessicaLucindaCheng,2023-01-08T08:02:46Z,- JessicaLucindaCheng commented on issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1374749926) at 2023-01-08 12:02 AM PST -JessicaLucindaCheng,2023-01-08T08:10:10Z,- JessicaLucindaCheng commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1374752242) at 2023-01-08 12:10 AM PST -JessicaLucindaCheng,2023-01-08T17:36:08Z,- JessicaLucindaCheng commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1374888143) at 2023-01-08 09:36 AM PST -JessicaLucindaCheng,2023-01-09T16:06:24Z,- JessicaLucindaCheng commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1375868506) at 2023-01-09 08:06 AM PST -JessicaLucindaCheng,2023-01-09T22:35:04Z,- JessicaLucindaCheng opened issue: [3802](https://github.com/hackforla/website/issues/3802) at 2023-01-09 02:35 PM PST -JessicaLucindaCheng,2023-01-10T00:13:56Z,- JessicaLucindaCheng commented on issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1376527280) at 2023-01-09 04:13 PM PST -JessicaLucindaCheng,2023-01-16T20:58:55Z,- JessicaLucindaCheng assigned to issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1374752242) at 2023-01-16 12:58 PM PST -JessicaLucindaCheng,2023-01-16T21:00:22Z,- JessicaLucindaCheng unassigned from issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1384542689) at 2023-01-16 01:00 PM PST -JessicaLucindaCheng,2023-01-16T21:14:40Z,- JessicaLucindaCheng commented on issue: [3766](https://github.com/hackforla/website/issues/3766#issuecomment-1384557615) at 2023-01-16 01:14 PM PST -JessicaLucindaCheng,2023-01-16T22:23:41Z,- JessicaLucindaCheng opened issue: [3821](https://github.com/hackforla/website/issues/3821) at 2023-01-16 02:23 PM PST -JessicaLucindaCheng,2023-01-16T22:46:11Z,- JessicaLucindaCheng opened issue: [3822](https://github.com/hackforla/website/issues/3822) at 2023-01-16 02:46 PM PST -JessicaLucindaCheng,2023-01-16T23:33:43Z,- JessicaLucindaCheng opened issue: [3823](https://github.com/hackforla/website/issues/3823) at 2023-01-16 03:33 PM PST -JessicaLucindaCheng,2023-01-16T23:41:43Z,- JessicaLucindaCheng commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1384674874) at 2023-01-16 03:41 PM PST -JessicaLucindaCheng,2023-01-16T23:41:51Z,- JessicaLucindaCheng closed issue as not planned: [3309](https://github.com/hackforla/website/issues/3309#event-8240673996) at 2023-01-16 03:41 PM PST -JessicaLucindaCheng,2023-01-16T23:49:41Z,- JessicaLucindaCheng commented on issue: [3255](https://github.com/hackforla/website/issues/3255#issuecomment-1384677733) at 2023-01-16 03:49 PM PST -JessicaLucindaCheng,2023-01-16T23:54:13Z,- JessicaLucindaCheng commented on issue: [3281](https://github.com/hackforla/website/issues/3281#issuecomment-1384679930) at 2023-01-16 03:54 PM PST -JessicaLucindaCheng,2023-01-16T23:54:19Z,- JessicaLucindaCheng closed issue as not planned: [3281](https://github.com/hackforla/website/issues/3281#event-8240703106) at 2023-01-16 03:54 PM PST -JessicaLucindaCheng,2023-01-17T00:50:55Z,- JessicaLucindaCheng commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1384705652) at 2023-01-16 04:50 PM PST -JessicaLucindaCheng,2023-01-17T03:09:57Z,- JessicaLucindaCheng commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1384779208) at 2023-01-16 07:09 PM PST -JessicaLucindaCheng,2023-01-17T15:27:11Z,- JessicaLucindaCheng commented on issue: [3279](https://github.com/hackforla/website/issues/3279#issuecomment-1385601206) at 2023-01-17 07:27 AM PST -JessicaLucindaCheng,2023-01-17T15:27:17Z,- JessicaLucindaCheng closed issue as not planned: [3279](https://github.com/hackforla/website/issues/3279#event-8246886729) at 2023-01-17 07:27 AM PST -JessicaLucindaCheng,2023-01-17T15:39:08Z,- JessicaLucindaCheng commented on issue: [3280](https://github.com/hackforla/website/issues/3280#issuecomment-1385617949) at 2023-01-17 07:39 AM PST -JessicaLucindaCheng,2023-01-17T15:39:18Z,- JessicaLucindaCheng closed issue as not planned: [3280](https://github.com/hackforla/website/issues/3280#event-8247002453) at 2023-01-17 07:39 AM PST -JessicaLucindaCheng,2023-01-17T15:42:12Z,- JessicaLucindaCheng commented on issue: [3282](https://github.com/hackforla/website/issues/3282#issuecomment-1385622168) at 2023-01-17 07:42 AM PST -JessicaLucindaCheng,2023-01-17T15:42:12Z,- JessicaLucindaCheng closed issue as not planned: [3282](https://github.com/hackforla/website/issues/3282#event-8247030749) at 2023-01-17 07:42 AM PST -JessicaLucindaCheng,2023-01-17T15:46:55Z,- JessicaLucindaCheng commented on issue: [3286](https://github.com/hackforla/website/issues/3286#issuecomment-1385628870) at 2023-01-17 07:46 AM PST -JessicaLucindaCheng,2023-01-17T15:46:55Z,- JessicaLucindaCheng closed issue as not planned: [3286](https://github.com/hackforla/website/issues/3286#event-8247078237) at 2023-01-17 07:46 AM PST -JessicaLucindaCheng,2023-01-17T15:47:53Z,- JessicaLucindaCheng commented on issue: [3312](https://github.com/hackforla/website/issues/3312#issuecomment-1385630123) at 2023-01-17 07:47 AM PST -JessicaLucindaCheng,2023-01-17T15:47:53Z,- JessicaLucindaCheng closed issue as not planned: [3312](https://github.com/hackforla/website/issues/3312#event-8247087308) at 2023-01-17 07:47 AM PST -JessicaLucindaCheng,2023-01-17T15:50:13Z,- JessicaLucindaCheng commented on issue: [3300](https://github.com/hackforla/website/issues/3300#issuecomment-1385633276) at 2023-01-17 07:50 AM PST -JessicaLucindaCheng,2023-01-17T15:50:13Z,- JessicaLucindaCheng closed issue as not planned: [3300](https://github.com/hackforla/website/issues/3300#event-8247108658) at 2023-01-17 07:50 AM PST -JessicaLucindaCheng,2023-01-17T15:51:09Z,- JessicaLucindaCheng commented on issue: [3313](https://github.com/hackforla/website/issues/3313#issuecomment-1385634513) at 2023-01-17 07:51 AM PST -JessicaLucindaCheng,2023-01-17T15:51:09Z,- JessicaLucindaCheng closed issue as not planned: [3313](https://github.com/hackforla/website/issues/3313#event-8247117515) at 2023-01-17 07:51 AM PST -JessicaLucindaCheng,2023-01-17T15:52:43Z,- JessicaLucindaCheng commented on issue: [3308](https://github.com/hackforla/website/issues/3308#issuecomment-1385636529) at 2023-01-17 07:52 AM PST -JessicaLucindaCheng,2023-01-17T15:52:43Z,- JessicaLucindaCheng closed issue as not planned: [3308](https://github.com/hackforla/website/issues/3308#event-8247132496) at 2023-01-17 07:52 AM PST -JessicaLucindaCheng,2023-01-17T15:54:28Z,- JessicaLucindaCheng commented on issue: [3307](https://github.com/hackforla/website/issues/3307#issuecomment-1385639032) at 2023-01-17 07:54 AM PST -JessicaLucindaCheng,2023-01-17T15:54:28Z,- JessicaLucindaCheng closed issue as not planned: [3307](https://github.com/hackforla/website/issues/3307#event-8247149394) at 2023-01-17 07:54 AM PST -JessicaLucindaCheng,2023-01-17T15:59:37Z,- JessicaLucindaCheng commented on issue: [3310](https://github.com/hackforla/website/issues/3310#issuecomment-1385646377) at 2023-01-17 07:59 AM PST -JessicaLucindaCheng,2023-01-17T15:59:37Z,- JessicaLucindaCheng closed issue as not planned: [3310](https://github.com/hackforla/website/issues/3310#event-8247198944) at 2023-01-17 07:59 AM PST -JessicaLucindaCheng,2023-01-17T16:00:43Z,- JessicaLucindaCheng commented on issue: [3314](https://github.com/hackforla/website/issues/3314#issuecomment-1385648056) at 2023-01-17 08:00 AM PST -JessicaLucindaCheng,2023-01-17T16:00:43Z,- JessicaLucindaCheng closed issue as not planned: [3314](https://github.com/hackforla/website/issues/3314#event-8247210961) at 2023-01-17 08:00 AM PST -JessicaLucindaCheng,2023-01-17T16:02:52Z,- JessicaLucindaCheng commented on issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1385651521) at 2023-01-17 08:02 AM PST -JessicaLucindaCheng,2023-01-17T16:02:52Z,- JessicaLucindaCheng closed issue as not planned: [3315](https://github.com/hackforla/website/issues/3315#event-8247231785) at 2023-01-17 08:02 AM PST -JessicaLucindaCheng,2023-01-17T16:04:38Z,- JessicaLucindaCheng commented on issue: [3311](https://github.com/hackforla/website/issues/3311#issuecomment-1385654291) at 2023-01-17 08:04 AM PST -JessicaLucindaCheng,2023-01-17T16:04:39Z,- JessicaLucindaCheng closed issue as not planned: [3311](https://github.com/hackforla/website/issues/3311#event-8247249138) at 2023-01-17 08:04 AM PST -JessicaLucindaCheng,2023-01-17T16:09:20Z,- JessicaLucindaCheng commented on issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1385662138) at 2023-01-17 08:09 AM PST -JessicaLucindaCheng,2023-01-17T16:09:21Z,- JessicaLucindaCheng closed issue as not planned: [3132](https://github.com/hackforla/website/issues/3132#event-8247297945) at 2023-01-17 08:09 AM PST -JessicaLucindaCheng,2023-01-17T16:09:24Z,- JessicaLucindaCheng reopened issue: [3132](https://github.com/hackforla/website/issues/3132#event-8247297945) at 2023-01-17 08:09 AM PST -JessicaLucindaCheng,2023-01-17T16:10:24Z,- JessicaLucindaCheng commented on issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1385664269) at 2023-01-17 08:10 AM PST -JessicaLucindaCheng,2023-01-17T16:23:00Z,- JessicaLucindaCheng commented on issue: [3766](https://github.com/hackforla/website/issues/3766#issuecomment-1385683536) at 2023-01-17 08:23 AM PST -JessicaLucindaCheng,2023-01-17T18:25:27Z,- JessicaLucindaCheng commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1385847606) at 2023-01-17 10:25 AM PST -JessicaLucindaCheng,2023-01-17T20:03:30Z,- JessicaLucindaCheng opened issue: [3837](https://github.com/hackforla/website/issues/3837) at 2023-01-17 12:03 PM PST -JessicaLucindaCheng,2023-01-17T20:08:35Z,- JessicaLucindaCheng commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1385988822) at 2023-01-17 12:08 PM PST -JessicaLucindaCheng,2023-01-23T23:33:12Z,- JessicaLucindaCheng commented on issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1401151372) at 2023-01-23 03:33 PM PST -JessicaLucindaCheng,2023-01-24T00:38:14Z,- JessicaLucindaCheng opened issue: [3863](https://github.com/hackforla/website/issues/3863) at 2023-01-23 04:38 PM PST -JessicaLucindaCheng,2023-01-24T03:04:39Z,- JessicaLucindaCheng commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1401336005) at 2023-01-23 07:04 PM PST -JessicaLucindaCheng,2023-01-26T23:02:19Z,- JessicaLucindaCheng opened issue: [3879](https://github.com/hackforla/website/issues/3879) at 2023-01-26 03:02 PM PST -JessicaLucindaCheng,2023-01-29T13:33:29Z,- JessicaLucindaCheng commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1407665103) at 2023-01-29 05:33 AM PST -JessicaLucindaCheng,2023-01-29T13:38:09Z,- JessicaLucindaCheng opened issue: [3889](https://github.com/hackforla/website/issues/3889) at 2023-01-29 05:38 AM PST -JessicaLucindaCheng,2023-01-30T23:38:37Z,- JessicaLucindaCheng commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1409525426) at 2023-01-30 03:38 PM PST -JessicaLucindaCheng,2023-01-30T23:46:25Z,- JessicaLucindaCheng commented on pull request: [3886](https://github.com/hackforla/website/pull/3886#issuecomment-1409531264) at 2023-01-30 03:46 PM PST -JessicaLucindaCheng,2023-02-03T01:52:10Z,- JessicaLucindaCheng commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1414615124) at 2023-02-02 05:52 PM PST -JessicaLucindaCheng,2023-02-04T05:58:40Z,- JessicaLucindaCheng opened issue: [3934](https://github.com/hackforla/website/issues/3934) at 2023-02-03 09:58 PM PST -JessicaLucindaCheng,2023-02-06T21:28:49Z,- JessicaLucindaCheng commented on issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1419781590) at 2023-02-06 01:28 PM PST -JessicaLucindaCheng,2023-02-07T00:34:11Z,- JessicaLucindaCheng commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1419991097) at 2023-02-06 04:34 PM PST -JessicaLucindaCheng,2023-02-07T00:34:11Z,- JessicaLucindaCheng closed issue as completed: [3437](https://github.com/hackforla/website/issues/3437#event-8453034485) at 2023-02-06 04:34 PM PST -JessicaLucindaCheng,2023-02-07T02:28:36Z,- JessicaLucindaCheng commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1420106684) at 2023-02-06 06:28 PM PST -JessicaLucindaCheng,2023-02-07T03:39:44Z,- JessicaLucindaCheng closed issue as completed: [3132](https://github.com/hackforla/website/issues/3132#event-8453771061) at 2023-02-06 07:39 PM PST -JessicaLucindaCheng,2023-02-07T03:40:37Z,- JessicaLucindaCheng commented on issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1420153843) at 2023-02-06 07:40 PM PST -JessicaLucindaCheng,2023-02-07T03:44:46Z,- JessicaLucindaCheng commented on issue: [3946](https://github.com/hackforla/website/issues/3946#issuecomment-1420156404) at 2023-02-06 07:44 PM PST -JessicaLucindaCheng,2023-02-07T03:44:47Z,- JessicaLucindaCheng closed issue as not planned: [3946](https://github.com/hackforla/website/issues/3946#event-8453788463) at 2023-02-06 07:44 PM PST -JessicaLucindaCheng,2023-02-10T01:47:21Z,- JessicaLucindaCheng commented on issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1425064469) at 2023-02-09 05:47 PM PST -JessicaLucindaCheng,2023-02-13T01:47:47Z,- JessicaLucindaCheng commented on issue: [3748](https://github.com/hackforla/website/issues/3748#issuecomment-1427211734) at 2023-02-12 05:47 PM PST -JessicaLucindaCheng,2023-02-13T23:38:27Z,- JessicaLucindaCheng opened issue: [3966](https://github.com/hackforla/website/issues/3966) at 2023-02-13 03:38 PM PST -JessicaLucindaCheng,2023-02-14T02:14:07Z,- JessicaLucindaCheng commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1429008366) at 2023-02-13 06:14 PM PST -JessicaLucindaCheng,2023-02-27T22:09:27Z,- JessicaLucindaCheng commented on issue: [3889](https://github.com/hackforla/website/issues/3889#issuecomment-1447189935) at 2023-02-27 02:09 PM PST -JessicaLucindaCheng,2023-02-27T23:06:22Z,- JessicaLucindaCheng commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1447251358) at 2023-02-27 03:06 PM PST -JessicaLucindaCheng,2023-03-01T22:37:16Z,- JessicaLucindaCheng commented on issue: [3889](https://github.com/hackforla/website/issues/3889#issuecomment-1450951500) at 2023-03-01 02:37 PM PST -JessicaLucindaCheng,2023-03-04T21:34:43Z,- JessicaLucindaCheng commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1454894531) at 2023-03-04 01:34 PM PST -JessicaLucindaCheng,2023-03-04T22:44:25Z,- JessicaLucindaCheng commented on issue: [3934](https://github.com/hackforla/website/issues/3934#issuecomment-1454910870) at 2023-03-04 02:44 PM PST -JessicaLucindaCheng,2023-03-04T22:51:00Z,- JessicaLucindaCheng commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1454912362) at 2023-03-04 02:51 PM PST -JessicaLucindaCheng,2023-03-04T22:51:01Z,- JessicaLucindaCheng closed issue as completed: [3775](https://github.com/hackforla/website/issues/3775#event-8666952197) at 2023-03-04 02:51 PM PST -JessicaLucindaCheng,2023-03-04T23:26:11Z,- JessicaLucindaCheng opened issue: [4111](https://github.com/hackforla/website/issues/4111) at 2023-03-04 03:26 PM PST -JessicaLucindaCheng,2023-03-06T10:45:42Z,- JessicaLucindaCheng opened issue: [4118](https://github.com/hackforla/website/issues/4118) at 2023-03-06 02:45 AM PST -JessicaLucindaCheng,2023-03-06T21:48:48Z,- JessicaLucindaCheng opened issue: [4120](https://github.com/hackforla/website/issues/4120) at 2023-03-06 01:48 PM PST -JessicaLucindaCheng,2023-03-06T22:28:38Z,- JessicaLucindaCheng commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1457116778) at 2023-03-06 02:28 PM PST -JessicaLucindaCheng,2023-03-06T22:29:38Z,- JessicaLucindaCheng commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1457118825) at 2023-03-06 02:29 PM PST -JessicaLucindaCheng,2023-03-06T22:31:34Z,- JessicaLucindaCheng commented on issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1457122510) at 2023-03-06 02:31 PM PST -JessicaLucindaCheng,2023-03-06T23:35:07Z,- JessicaLucindaCheng commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1457214908) at 2023-03-06 03:35 PM PST -JessicaLucindaCheng,2023-03-07T23:04:25Z,- JessicaLucindaCheng commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1459002172) at 2023-03-07 03:04 PM PST -JessicaLucindaCheng,2023-03-08T02:10:30Z,- JessicaLucindaCheng opened issue: [4129](https://github.com/hackforla/website/issues/4129) at 2023-03-07 06:10 PM PST -JessicaLucindaCheng,2023-03-12T06:11:07Z,- JessicaLucindaCheng commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1465101775) at 2023-03-11 11:11 PM PDT -JessicaLucindaCheng,2023-03-12T22:35:03Z,- JessicaLucindaCheng opened issue: [4153](https://github.com/hackforla/website/issues/4153) at 2023-03-12 03:35 PM PDT -JessicaLucindaCheng,2023-03-13T23:54:22Z,- JessicaLucindaCheng opened issue: [4159](https://github.com/hackforla/website/issues/4159) at 2023-03-13 04:54 PM PDT -JessicaLucindaCheng,2023-03-14T21:28:38Z,- JessicaLucindaCheng opened issue: [4183](https://github.com/hackforla/website/issues/4183) at 2023-03-14 02:28 PM PDT -JessicaLucindaCheng,2023-03-14T23:17:40Z,- JessicaLucindaCheng opened issue: [4185](https://github.com/hackforla/website/issues/4185) at 2023-03-14 04:17 PM PDT -JessicaLucindaCheng,2023-03-14T23:39:38Z,- JessicaLucindaCheng opened issue: [4186](https://github.com/hackforla/website/issues/4186) at 2023-03-14 04:39 PM PDT -JessicaLucindaCheng,2023-03-15T00:07:28Z,- JessicaLucindaCheng commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1469030676) at 2023-03-14 05:07 PM PDT -JessicaLucindaCheng,2023-03-15T01:24:20Z,- JessicaLucindaCheng opened issue: [4187](https://github.com/hackforla/website/issues/4187) at 2023-03-14 06:24 PM PDT -JessicaLucindaCheng,2023-03-15T06:31:00Z,- JessicaLucindaCheng commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1469422964) at 2023-03-14 11:31 PM PDT -JessicaLucindaCheng,2023-03-15T19:35:41Z,- JessicaLucindaCheng commented on issue: [4129](https://github.com/hackforla/website/issues/4129#issuecomment-1470720984) at 2023-03-15 12:35 PM PDT -JessicaLucindaCheng,2023-03-15T19:45:12Z,- JessicaLucindaCheng commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1470735951) at 2023-03-15 12:45 PM PDT -JessicaLucindaCheng,2023-03-15T22:41:23Z,- JessicaLucindaCheng opened issue: [4193](https://github.com/hackforla/website/issues/4193) at 2023-03-15 03:41 PM PDT -JessicaLucindaCheng,2023-03-18T21:25:49Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1474997923) at 2023-03-18 02:25 PM PDT -JessicaLucindaCheng,2023-03-19T08:02:02Z,- JessicaLucindaCheng commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1475143698) at 2023-03-19 01:02 AM PDT -JessicaLucindaCheng,2023-03-19T17:29:53Z,- JessicaLucindaCheng commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1475333297) at 2023-03-19 10:29 AM PDT -JessicaLucindaCheng,2023-03-19T18:56:42Z,- JessicaLucindaCheng closed issue by PR 2: [3635](https://github.com/hackforla/website/issues/3635#event-8788471245) at 2023-03-19 11:56 AM PDT -JessicaLucindaCheng,2023-03-19T21:11:35Z,- JessicaLucindaCheng commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1475398847) at 2023-03-19 02:11 PM PDT -JessicaLucindaCheng,2023-03-19T21:48:44Z,- JessicaLucindaCheng commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1475408537) at 2023-03-19 02:48 PM PDT -JessicaLucindaCheng,2023-03-19T21:48:44Z,- JessicaLucindaCheng reopened issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1475408537) at 2023-03-19 02:48 PM PDT -JessicaLucindaCheng,2023-03-21T00:46:27Z,- JessicaLucindaCheng commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1477135610) at 2023-03-20 05:46 PM PDT -JessicaLucindaCheng,2023-03-21T00:55:19Z,- JessicaLucindaCheng commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1477140429) at 2023-03-20 05:55 PM PDT -JessicaLucindaCheng,2023-03-21T06:47:06Z,- JessicaLucindaCheng commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1477352398) at 2023-03-20 11:47 PM PDT -JessicaLucindaCheng,2023-03-21T06:54:05Z,- JessicaLucindaCheng commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1477356460) at 2023-03-20 11:54 PM PDT -JessicaLucindaCheng,2023-03-21T20:32:48Z,- JessicaLucindaCheng opened issue: [4225](https://github.com/hackforla/website/issues/4225) at 2023-03-21 01:32 PM PDT -JessicaLucindaCheng,2023-03-21T20:55:40Z,- JessicaLucindaCheng opened issue: [4226](https://github.com/hackforla/website/issues/4226) at 2023-03-21 01:55 PM PDT -JessicaLucindaCheng,2023-03-22T01:46:02Z,- JessicaLucindaCheng opened issue: [4229](https://github.com/hackforla/website/issues/4229) at 2023-03-21 06:46 PM PDT -JessicaLucindaCheng,2023-03-22T01:53:13Z,- JessicaLucindaCheng commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1478812171) at 2023-03-21 06:53 PM PDT -JessicaLucindaCheng,2023-03-22T02:27:17Z,- JessicaLucindaCheng opened issue: [4230](https://github.com/hackforla/website/issues/4230) at 2023-03-21 07:27 PM PDT -JessicaLucindaCheng,2023-03-22T02:35:50Z,- JessicaLucindaCheng opened issue: [4231](https://github.com/hackforla/website/issues/4231) at 2023-03-21 07:35 PM PDT -JessicaLucindaCheng,2023-03-22T02:51:53Z,- JessicaLucindaCheng opened issue: [4232](https://github.com/hackforla/website/issues/4232) at 2023-03-21 07:51 PM PDT -JessicaLucindaCheng,2023-03-22T03:01:57Z,- JessicaLucindaCheng opened issue: [4233](https://github.com/hackforla/website/issues/4233) at 2023-03-21 08:01 PM PDT -JessicaLucindaCheng,2023-03-22T03:06:04Z,- JessicaLucindaCheng commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1478858424) at 2023-03-21 08:06 PM PDT -JessicaLucindaCheng,2023-03-22T18:43:10Z,- JessicaLucindaCheng commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1480083131) at 2023-03-22 11:43 AM PDT -JessicaLucindaCheng,2023-03-22T18:50:58Z,- JessicaLucindaCheng commented on issue: [4193](https://github.com/hackforla/website/issues/4193#issuecomment-1480094398) at 2023-03-22 11:50 AM PDT -JessicaLucindaCheng,2023-03-22T19:07:40Z,- JessicaLucindaCheng commented on issue: [4230](https://github.com/hackforla/website/issues/4230#issuecomment-1480115584) at 2023-03-22 12:07 PM PDT -JessicaLucindaCheng,2023-03-22T19:27:29Z,- JessicaLucindaCheng commented on issue: [4245](https://github.com/hackforla/website/issues/4245#issuecomment-1480137966) at 2023-03-22 12:27 PM PDT -JessicaLucindaCheng,2023-03-22T19:27:29Z,- JessicaLucindaCheng closed issue as not planned: [4245](https://github.com/hackforla/website/issues/4245#event-8820483646) at 2023-03-22 12:27 PM PDT -JessicaLucindaCheng,2023-03-22T19:48:13Z,- JessicaLucindaCheng commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1480163905) at 2023-03-22 12:48 PM PDT -JessicaLucindaCheng,2023-03-22T21:22:59Z,- JessicaLucindaCheng assigned to issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1474997923) at 2023-03-22 02:22 PM PDT -JessicaLucindaCheng,2023-03-23T00:38:31Z,- JessicaLucindaCheng commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1480427430) at 2023-03-22 05:38 PM PDT -JessicaLucindaCheng,2023-03-23T01:00:49Z,- JessicaLucindaCheng opened issue: [4253](https://github.com/hackforla/website/issues/4253) at 2023-03-22 06:00 PM PDT -JessicaLucindaCheng,2023-03-23T01:10:58Z,- JessicaLucindaCheng commented on issue: [4253](https://github.com/hackforla/website/issues/4253#issuecomment-1480446659) at 2023-03-22 06:10 PM PDT -JessicaLucindaCheng,2023-03-23T01:14:49Z,- JessicaLucindaCheng opened issue: [4254](https://github.com/hackforla/website/issues/4254) at 2023-03-22 06:14 PM PDT -JessicaLucindaCheng,2023-03-23T01:28:50Z,- JessicaLucindaCheng opened issue: [4255](https://github.com/hackforla/website/issues/4255) at 2023-03-22 06:28 PM PDT -JessicaLucindaCheng,2023-03-23T01:41:06Z,- JessicaLucindaCheng commented on issue: [4255](https://github.com/hackforla/website/issues/4255#issuecomment-1480464925) at 2023-03-22 06:41 PM PDT -JessicaLucindaCheng,2023-03-23T01:41:43Z,- JessicaLucindaCheng commented on issue: [4254](https://github.com/hackforla/website/issues/4254#issuecomment-1480465245) at 2023-03-22 06:41 PM PDT -JessicaLucindaCheng,2023-03-23T01:47:02Z,- JessicaLucindaCheng opened issue: [4256](https://github.com/hackforla/website/issues/4256) at 2023-03-22 06:47 PM PDT -JessicaLucindaCheng,2023-03-23T02:23:34Z,- JessicaLucindaCheng opened issue: [4257](https://github.com/hackforla/website/issues/4257) at 2023-03-22 07:23 PM PDT -JessicaLucindaCheng,2023-03-23T02:26:17Z,- JessicaLucindaCheng commented on issue: [4256](https://github.com/hackforla/website/issues/4256#issuecomment-1480492944) at 2023-03-22 07:26 PM PDT -JessicaLucindaCheng,2023-03-23T02:26:41Z,- JessicaLucindaCheng commented on issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1480493155) at 2023-03-22 07:26 PM PDT -JessicaLucindaCheng,2023-03-23T03:06:08Z,- JessicaLucindaCheng opened issue: [4258](https://github.com/hackforla/website/issues/4258) at 2023-03-22 08:06 PM PDT -JessicaLucindaCheng,2023-03-23T03:09:58Z,- JessicaLucindaCheng commented on issue: [4258](https://github.com/hackforla/website/issues/4258#issuecomment-1480541719) at 2023-03-22 08:09 PM PDT -JessicaLucindaCheng,2023-03-25T22:01:50Z,- JessicaLucindaCheng commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1483932268) at 2023-03-25 03:01 PM PDT -JessicaLucindaCheng,2023-03-25T22:02:41Z,- JessicaLucindaCheng commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1483932478) at 2023-03-25 03:02 PM PDT -JessicaLucindaCheng,2023-03-26T00:47:12Z,- JessicaLucindaCheng commented on issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1483959603) at 2023-03-25 05:47 PM PDT -JessicaLucindaCheng,2023-03-26T15:09:01Z,- JessicaLucindaCheng commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484125549) at 2023-03-26 08:09 AM PDT -JessicaLucindaCheng,2023-03-26T16:31:35Z,- JessicaLucindaCheng opened issue: [4293](https://github.com/hackforla/website/issues/4293) at 2023-03-26 09:31 AM PDT -JessicaLucindaCheng,2023-03-27T00:12:58Z,- JessicaLucindaCheng commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1484287190) at 2023-03-26 05:12 PM PDT -JessicaLucindaCheng,2023-03-27T02:24:17Z,- JessicaLucindaCheng commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1484388185) at 2023-03-26 07:24 PM PDT -JessicaLucindaCheng,2023-03-27T02:34:31Z,- JessicaLucindaCheng commented on issue: [1068](https://github.com/hackforla/website/issues/1068#issuecomment-1484395903) at 2023-03-26 07:34 PM PDT -JessicaLucindaCheng,2023-03-27T02:37:53Z,- JessicaLucindaCheng commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-1484397437) at 2023-03-26 07:37 PM PDT -JessicaLucindaCheng,2023-03-27T02:38:16Z,- JessicaLucindaCheng commented on issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-1484397621) at 2023-03-26 07:38 PM PDT -JessicaLucindaCheng,2023-03-27T02:38:39Z,- JessicaLucindaCheng commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-1484397817) at 2023-03-26 07:38 PM PDT -JessicaLucindaCheng,2023-03-27T02:39:02Z,- JessicaLucindaCheng commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-1484397998) at 2023-03-26 07:39 PM PDT -JessicaLucindaCheng,2023-03-27T02:39:15Z,- JessicaLucindaCheng commented on issue: [1992](https://github.com/hackforla/website/issues/1992#issuecomment-1484398112) at 2023-03-26 07:39 PM PDT -JessicaLucindaCheng,2023-03-27T02:39:25Z,- JessicaLucindaCheng commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-1484398179) at 2023-03-26 07:39 PM PDT -JessicaLucindaCheng,2023-03-27T02:39:36Z,- JessicaLucindaCheng commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1484398262) at 2023-03-26 07:39 PM PDT -JessicaLucindaCheng,2023-03-27T02:40:41Z,- JessicaLucindaCheng commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1484398778) at 2023-03-26 07:40 PM PDT -JessicaLucindaCheng,2023-03-27T02:41:05Z,- JessicaLucindaCheng commented on issue: [3227](https://github.com/hackforla/website/issues/3227#issuecomment-1484399016) at 2023-03-26 07:41 PM PDT -JessicaLucindaCheng,2023-03-27T02:41:23Z,- JessicaLucindaCheng commented on issue: [3230](https://github.com/hackforla/website/issues/3230#issuecomment-1484399139) at 2023-03-26 07:41 PM PDT -JessicaLucindaCheng,2023-03-27T02:41:47Z,- JessicaLucindaCheng commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1484399335) at 2023-03-26 07:41 PM PDT -JessicaLucindaCheng,2023-03-27T02:42:08Z,- JessicaLucindaCheng commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1484399497) at 2023-03-26 07:42 PM PDT -JessicaLucindaCheng,2023-03-27T02:45:18Z,- JessicaLucindaCheng commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1484401065) at 2023-03-26 07:45 PM PDT -JessicaLucindaCheng,2023-03-27T02:45:38Z,- JessicaLucindaCheng commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1484401209) at 2023-03-26 07:45 PM PDT -JessicaLucindaCheng,2023-03-27T02:45:47Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1484401301) at 2023-03-26 07:45 PM PDT -JessicaLucindaCheng,2023-03-27T19:38:30Z,- JessicaLucindaCheng commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1485757344) at 2023-03-27 12:38 PM PDT -JessicaLucindaCheng,2023-03-27T23:21:30Z,- JessicaLucindaCheng commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1485989197) at 2023-03-27 04:21 PM PDT -JessicaLucindaCheng,2023-03-28T01:17:50Z,- JessicaLucindaCheng assigned to issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1484401065) at 2023-03-27 06:17 PM PDT -JessicaLucindaCheng,2023-03-28T01:17:58Z,- JessicaLucindaCheng assigned to issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1483959603) at 2023-03-27 06:17 PM PDT -JessicaLucindaCheng,2023-03-28T01:18:05Z,- JessicaLucindaCheng assigned to issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1484401209) at 2023-03-27 06:18 PM PDT -JessicaLucindaCheng,2023-03-28T01:18:15Z,- JessicaLucindaCheng assigned to issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1484401301) at 2023-03-27 06:18 PM PDT -JessicaLucindaCheng,2023-03-28T01:18:22Z,- JessicaLucindaCheng assigned to issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1485989197) at 2023-03-27 06:18 PM PDT -JessicaLucindaCheng,2023-03-28T01:18:33Z,- JessicaLucindaCheng assigned to issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1308976799) at 2023-03-27 06:18 PM PDT -JessicaLucindaCheng,2023-03-29T01:56:37Z,- JessicaLucindaCheng commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1487837388) at 2023-03-28 06:56 PM PDT -JessicaLucindaCheng,2023-03-29T01:59:12Z,- JessicaLucindaCheng unassigned from issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1487837388) at 2023-03-28 06:59 PM PDT -JessicaLucindaCheng,2023-03-29T23:27:30Z,- JessicaLucindaCheng commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1489468573) at 2023-03-29 04:27 PM PDT -JessicaLucindaCheng,2023-03-30T01:30:46Z,- JessicaLucindaCheng opened issue: [4343](https://github.com/hackforla/website/issues/4343) at 2023-03-29 06:30 PM PDT -JessicaLucindaCheng,2023-03-30T02:50:22Z,- JessicaLucindaCheng unassigned from issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1486072130) at 2023-03-29 07:50 PM PDT -JessicaLucindaCheng,2023-03-30T03:10:30Z,- JessicaLucindaCheng opened issue: [4344](https://github.com/hackforla/website/issues/4344) at 2023-03-29 08:10 PM PDT -JessicaLucindaCheng,2023-03-30T03:10:31Z,- JessicaLucindaCheng assigned to issue: [4344](https://github.com/hackforla/website/issues/4344) at 2023-03-29 08:10 PM PDT -JessicaLucindaCheng,2023-03-30T03:46:19Z,- JessicaLucindaCheng commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1489641582) at 2023-03-29 08:46 PM PDT -JessicaLucindaCheng,2023-03-30T03:50:48Z,- JessicaLucindaCheng unassigned from issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1489641582) at 2023-03-29 08:50 PM PDT -JessicaLucindaCheng,2023-04-01T23:41:35Z,- JessicaLucindaCheng opened issue: [4362](https://github.com/hackforla/website/issues/4362) at 2023-04-01 04:41 PM PDT -JessicaLucindaCheng,2023-04-01T23:43:43Z,- JessicaLucindaCheng opened issue: [4363](https://github.com/hackforla/website/issues/4363) at 2023-04-01 04:43 PM PDT -JessicaLucindaCheng,2023-04-02T00:01:29Z,- JessicaLucindaCheng commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1493176038) at 2023-04-01 05:01 PM PDT -JessicaLucindaCheng,2023-04-02T00:12:36Z,- JessicaLucindaCheng opened issue: [4364](https://github.com/hackforla/website/issues/4364) at 2023-04-01 05:12 PM PDT -JessicaLucindaCheng,2023-04-02T00:18:32Z,- JessicaLucindaCheng commented on issue: [4364](https://github.com/hackforla/website/issues/4364#issuecomment-1493181197) at 2023-04-01 05:18 PM PDT -JessicaLucindaCheng,2023-04-02T00:25:47Z,- JessicaLucindaCheng assigned to issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1493176038) at 2023-04-01 05:25 PM PDT -JessicaLucindaCheng,2023-04-02T07:36:52Z,- JessicaLucindaCheng unassigned from issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1493182777) at 2023-04-02 12:36 AM PDT -JessicaLucindaCheng,2023-04-02T07:45:29Z,- JessicaLucindaCheng assigned to issue: [4362](https://github.com/hackforla/website/issues/4362) at 2023-04-02 12:45 AM PDT -JessicaLucindaCheng,2023-04-02T07:54:15Z,- JessicaLucindaCheng commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1493258441) at 2023-04-02 12:54 AM PDT -JessicaLucindaCheng,2023-04-02T09:00:04Z,- JessicaLucindaCheng opened issue: [4366](https://github.com/hackforla/website/issues/4366) at 2023-04-02 02:00 AM PDT -JessicaLucindaCheng,2023-04-02T09:06:02Z,- JessicaLucindaCheng commented on issue: [4366](https://github.com/hackforla/website/issues/4366#issuecomment-1493273041) at 2023-04-02 02:06 AM PDT -JessicaLucindaCheng,2023-04-02T10:04:30Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1493285830) at 2023-04-02 03:04 AM PDT -JessicaLucindaCheng,2023-04-02T11:49:46Z,- JessicaLucindaCheng unassigned from issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1486072205) at 2023-04-02 04:49 AM PDT -JessicaLucindaCheng,2023-04-02T11:55:23Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1493311108) at 2023-04-02 04:55 AM PDT -JessicaLucindaCheng,2023-04-02T12:15:35Z,- JessicaLucindaCheng commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493316382) at 2023-04-02 05:15 AM PDT -JessicaLucindaCheng,2023-04-02T12:15:59Z,- JessicaLucindaCheng unassigned from issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493316382) at 2023-04-02 05:15 AM PDT -JessicaLucindaCheng,2023-04-02T12:16:33Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1493316602) at 2023-04-02 05:16 AM PDT -JessicaLucindaCheng,2023-04-02T12:24:10Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1493318147) at 2023-04-02 05:24 AM PDT -JessicaLucindaCheng,2023-04-03T01:09:26Z,- JessicaLucindaCheng commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493498803) at 2023-04-02 06:09 PM PDT -JessicaLucindaCheng,2023-04-03T01:25:44Z,- JessicaLucindaCheng commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1493509263) at 2023-04-02 06:25 PM PDT -JessicaLucindaCheng,2023-04-03T03:10:53Z,- JessicaLucindaCheng opened issue: [4375](https://github.com/hackforla/website/issues/4375) at 2023-04-02 08:10 PM PDT -JessicaLucindaCheng,2023-04-03T03:15:52Z,- JessicaLucindaCheng commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1493585195) at 2023-04-02 08:15 PM PDT -JessicaLucindaCheng,2023-04-03T03:25:50Z,- JessicaLucindaCheng opened issue: [4376](https://github.com/hackforla/website/issues/4376) at 2023-04-02 08:25 PM PDT -JessicaLucindaCheng,2023-04-03T03:28:40Z,- JessicaLucindaCheng opened issue: [4377](https://github.com/hackforla/website/issues/4377) at 2023-04-02 08:28 PM PDT -JessicaLucindaCheng,2023-04-03T03:34:11Z,- JessicaLucindaCheng opened issue: [4378](https://github.com/hackforla/website/issues/4378) at 2023-04-02 08:34 PM PDT -JessicaLucindaCheng,2023-04-03T03:37:50Z,- JessicaLucindaCheng opened issue: [4379](https://github.com/hackforla/website/issues/4379) at 2023-04-02 08:37 PM PDT -JessicaLucindaCheng,2023-04-03T03:45:27Z,- JessicaLucindaCheng opened issue: [4380](https://github.com/hackforla/website/issues/4380) at 2023-04-02 08:45 PM PDT -JessicaLucindaCheng,2023-04-03T03:47:07Z,- JessicaLucindaCheng opened issue: [4381](https://github.com/hackforla/website/issues/4381) at 2023-04-02 08:47 PM PDT -JessicaLucindaCheng,2023-04-03T03:55:12Z,- JessicaLucindaCheng opened issue: [4382](https://github.com/hackforla/website/issues/4382) at 2023-04-02 08:55 PM PDT -JessicaLucindaCheng,2023-04-03T04:00:20Z,- JessicaLucindaCheng opened issue: [4383](https://github.com/hackforla/website/issues/4383) at 2023-04-02 09:00 PM PDT -JessicaLucindaCheng,2023-04-03T21:26:39Z,- JessicaLucindaCheng commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1495003175) at 2023-04-03 02:26 PM PDT -JessicaLucindaCheng,2023-04-03T21:42:17Z,- JessicaLucindaCheng opened issue: [4387](https://github.com/hackforla/website/issues/4387) at 2023-04-03 02:42 PM PDT -JessicaLucindaCheng,2023-04-03T21:55:55Z,- JessicaLucindaCheng opened issue: [4388](https://github.com/hackforla/website/issues/4388) at 2023-04-03 02:55 PM PDT -JessicaLucindaCheng,2023-04-03T22:14:41Z,- JessicaLucindaCheng opened issue: [4390](https://github.com/hackforla/website/issues/4390) at 2023-04-03 03:14 PM PDT -JessicaLucindaCheng,2023-04-03T22:41:13Z,- JessicaLucindaCheng commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1495079557) at 2023-04-03 03:41 PM PDT -JessicaLucindaCheng,2023-04-03T23:24:24Z,- JessicaLucindaCheng opened issue: [4393](https://github.com/hackforla/website/issues/4393) at 2023-04-03 04:24 PM PDT -JessicaLucindaCheng,2023-04-03T23:25:37Z,- JessicaLucindaCheng opened issue: [4394](https://github.com/hackforla/website/issues/4394) at 2023-04-03 04:25 PM PDT -JessicaLucindaCheng,2023-04-03T23:26:45Z,- JessicaLucindaCheng opened issue: [4395](https://github.com/hackforla/website/issues/4395) at 2023-04-03 04:26 PM PDT -JessicaLucindaCheng,2023-04-03T23:29:00Z,- JessicaLucindaCheng opened issue: [4396](https://github.com/hackforla/website/issues/4396) at 2023-04-03 04:29 PM PDT -JessicaLucindaCheng,2023-04-03T23:30:44Z,- JessicaLucindaCheng opened issue: [4397](https://github.com/hackforla/website/issues/4397) at 2023-04-03 04:30 PM PDT -JessicaLucindaCheng,2023-04-03T23:44:23Z,- JessicaLucindaCheng opened issue: [4398](https://github.com/hackforla/website/issues/4398) at 2023-04-03 04:44 PM PDT -JessicaLucindaCheng,2023-04-03T23:45:19Z,- JessicaLucindaCheng opened issue: [4399](https://github.com/hackforla/website/issues/4399) at 2023-04-03 04:45 PM PDT -JessicaLucindaCheng,2023-04-03T23:46:30Z,- JessicaLucindaCheng opened issue: [4400](https://github.com/hackforla/website/issues/4400) at 2023-04-03 04:46 PM PDT -JessicaLucindaCheng,2023-04-03T23:47:34Z,- JessicaLucindaCheng opened issue: [4401](https://github.com/hackforla/website/issues/4401) at 2023-04-03 04:47 PM PDT -JessicaLucindaCheng,2023-04-04T04:38:31Z,- JessicaLucindaCheng commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1495334286) at 2023-04-03 09:38 PM PDT -JessicaLucindaCheng,2023-04-04T05:49:04Z,- JessicaLucindaCheng commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1495385555) at 2023-04-03 10:49 PM PDT -JessicaLucindaCheng,2023-04-04T22:41:27Z,- JessicaLucindaCheng commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1496689406) at 2023-04-04 03:41 PM PDT -JessicaLucindaCheng,2023-04-04T22:47:54Z,- JessicaLucindaCheng commented on issue: [3793](https://github.com/hackforla/website/issues/3793#issuecomment-1496693638) at 2023-04-04 03:47 PM PDT -JessicaLucindaCheng,2023-04-04T22:47:55Z,- JessicaLucindaCheng closed issue as completed: [3793](https://github.com/hackforla/website/issues/3793#event-8929420846) at 2023-04-04 03:47 PM PDT -JessicaLucindaCheng,2023-04-04T22:53:22Z,- JessicaLucindaCheng commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1496697827) at 2023-04-04 03:53 PM PDT -JessicaLucindaCheng,2023-04-05T00:24:14Z,- JessicaLucindaCheng opened issue: [4413](https://github.com/hackforla/website/issues/4413) at 2023-04-04 05:24 PM PDT -JessicaLucindaCheng,2023-04-05T00:25:07Z,- JessicaLucindaCheng opened issue: [4414](https://github.com/hackforla/website/issues/4414) at 2023-04-04 05:25 PM PDT -JessicaLucindaCheng,2023-04-05T00:27:33Z,- JessicaLucindaCheng opened issue: [4415](https://github.com/hackforla/website/issues/4415) at 2023-04-04 05:27 PM PDT -JessicaLucindaCheng,2023-04-05T00:28:52Z,- JessicaLucindaCheng opened issue: [4416](https://github.com/hackforla/website/issues/4416) at 2023-04-04 05:28 PM PDT -JessicaLucindaCheng,2023-04-05T01:04:12Z,- JessicaLucindaCheng opened issue: [4417](https://github.com/hackforla/website/issues/4417) at 2023-04-04 06:04 PM PDT -JessicaLucindaCheng,2023-04-05T01:05:15Z,- JessicaLucindaCheng opened issue: [4418](https://github.com/hackforla/website/issues/4418) at 2023-04-04 06:05 PM PDT -JessicaLucindaCheng,2023-04-05T01:06:37Z,- JessicaLucindaCheng opened issue: [4419](https://github.com/hackforla/website/issues/4419) at 2023-04-04 06:06 PM PDT -JessicaLucindaCheng,2023-04-05T01:10:02Z,- JessicaLucindaCheng opened issue: [4420](https://github.com/hackforla/website/issues/4420) at 2023-04-04 06:10 PM PDT -JessicaLucindaCheng,2023-04-05T01:21:12Z,- JessicaLucindaCheng commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496796523) at 2023-04-04 06:21 PM PDT -JessicaLucindaCheng,2023-04-05T01:43:46Z,- JessicaLucindaCheng commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496808590) at 2023-04-04 06:43 PM PDT -JessicaLucindaCheng,2023-04-05T08:41:07Z,- JessicaLucindaCheng commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1497129548) at 2023-04-05 01:41 AM PDT -JessicaLucindaCheng,2023-04-06T02:09:47Z,- JessicaLucindaCheng commented on issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1498395289) at 2023-04-05 07:09 PM PDT -JessicaLucindaCheng,2023-04-09T02:10:08Z,- JessicaLucindaCheng commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1501020517) at 2023-04-08 07:10 PM PDT -JessicaLucindaCheng,2023-04-09T02:11:47Z,- JessicaLucindaCheng commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1501020818) at 2023-04-08 07:11 PM PDT -JessicaLucindaCheng,2023-04-09T11:04:58Z,- JessicaLucindaCheng commented on issue: [4413](https://github.com/hackforla/website/issues/4413#issuecomment-1501102586) at 2023-04-09 04:04 AM PDT -JessicaLucindaCheng,2023-04-09T11:11:52Z,- JessicaLucindaCheng commented on pull request: [4441](https://github.com/hackforla/website/pull/4441#issuecomment-1501103992) at 2023-04-09 04:11 AM PDT -JessicaLucindaCheng,2023-04-09T11:20:32Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1501105446) at 2023-04-09 04:20 AM PDT -JessicaLucindaCheng,2023-04-09T14:21:02Z,- JessicaLucindaCheng opened issue: [4445](https://github.com/hackforla/website/issues/4445) at 2023-04-09 07:21 AM PDT -JessicaLucindaCheng,2023-04-09T14:49:42Z,- JessicaLucindaCheng unassigned from issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1493311108) at 2023-04-09 07:49 AM PDT -JessicaLucindaCheng,2023-04-09T15:28:25Z,- JessicaLucindaCheng opened issue: [4446](https://github.com/hackforla/website/issues/4446) at 2023-04-09 08:28 AM PDT -JessicaLucindaCheng,2023-04-09T15:34:13Z,- JessicaLucindaCheng opened issue: [4447](https://github.com/hackforla/website/issues/4447) at 2023-04-09 08:34 AM PDT -JessicaLucindaCheng,2023-04-09T15:37:00Z,- JessicaLucindaCheng opened issue: [4448](https://github.com/hackforla/website/issues/4448) at 2023-04-09 08:37 AM PDT -JessicaLucindaCheng,2023-04-09T15:39:48Z,- JessicaLucindaCheng opened issue: [4449](https://github.com/hackforla/website/issues/4449) at 2023-04-09 08:39 AM PDT -JessicaLucindaCheng,2023-04-09T16:40:20Z,- JessicaLucindaCheng opened issue: [4450](https://github.com/hackforla/website/issues/4450) at 2023-04-09 09:40 AM PDT -JessicaLucindaCheng,2023-04-09T16:56:31Z,- JessicaLucindaCheng opened issue: [4451](https://github.com/hackforla/website/issues/4451) at 2023-04-09 09:56 AM PDT -JessicaLucindaCheng,2023-04-09T18:38:02Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1501188855) at 2023-04-09 11:38 AM PDT -JessicaLucindaCheng,2023-04-09T18:50:19Z,- JessicaLucindaCheng assigned to issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1501188855) at 2023-04-09 11:50 AM PDT -JessicaLucindaCheng,2023-04-10T20:36:22Z,- JessicaLucindaCheng opened issue: [4458](https://github.com/hackforla/website/issues/4458) at 2023-04-10 01:36 PM PDT -JessicaLucindaCheng,2023-04-10T20:51:06Z,- JessicaLucindaCheng opened issue: [4459](https://github.com/hackforla/website/issues/4459) at 2023-04-10 01:51 PM PDT -JessicaLucindaCheng,2023-04-10T21:20:36Z,- JessicaLucindaCheng commented on issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1502341294) at 2023-04-10 02:20 PM PDT -JessicaLucindaCheng,2023-04-10T21:25:23Z,- JessicaLucindaCheng opened issue: [4460](https://github.com/hackforla/website/issues/4460) at 2023-04-10 02:25 PM PDT -JessicaLucindaCheng,2023-04-10T21:55:48Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1502377609) at 2023-04-10 02:55 PM PDT -JessicaLucindaCheng,2023-04-10T22:36:49Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1502423847) at 2023-04-10 03:36 PM PDT -JessicaLucindaCheng,2023-04-10T23:02:16Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1502443488) at 2023-04-10 04:02 PM PDT -JessicaLucindaCheng,2023-04-11T00:18:00Z,- JessicaLucindaCheng commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1502502866) at 2023-04-10 05:18 PM PDT -JessicaLucindaCheng,2023-04-11T01:15:50Z,- JessicaLucindaCheng commented on issue: [4460](https://github.com/hackforla/website/issues/4460#issuecomment-1502546719) at 2023-04-10 06:15 PM PDT -JessicaLucindaCheng,2023-04-11T01:15:51Z,- JessicaLucindaCheng closed issue as not planned: [4460](https://github.com/hackforla/website/issues/4460#event-8968406664) at 2023-04-10 06:15 PM PDT -JessicaLucindaCheng,2023-04-11T01:16:02Z,- JessicaLucindaCheng commented on issue: [4459](https://github.com/hackforla/website/issues/4459#issuecomment-1502546843) at 2023-04-10 06:16 PM PDT -JessicaLucindaCheng,2023-04-11T01:16:02Z,- JessicaLucindaCheng closed issue as not planned: [4459](https://github.com/hackforla/website/issues/4459#event-8968407421) at 2023-04-10 06:16 PM PDT -JessicaLucindaCheng,2023-04-11T01:16:11Z,- JessicaLucindaCheng commented on issue: [4458](https://github.com/hackforla/website/issues/4458#issuecomment-1502546918) at 2023-04-10 06:16 PM PDT -JessicaLucindaCheng,2023-04-11T01:16:11Z,- JessicaLucindaCheng closed issue as not planned: [4458](https://github.com/hackforla/website/issues/4458#event-8968407897) at 2023-04-10 06:16 PM PDT -JessicaLucindaCheng,2023-04-12T10:35:47Z,- JessicaLucindaCheng opened pull request: [4494](https://github.com/hackforla/website/pull/4494) at 2023-04-12 03:35 AM PDT -JessicaLucindaCheng,2023-04-12T10:59:14Z,- JessicaLucindaCheng commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1505073791) at 2023-04-12 03:59 AM PDT -JessicaLucindaCheng,2023-04-15T08:05:39Z,- JessicaLucindaCheng commented on issue: [4513](https://github.com/hackforla/website/issues/4513#issuecomment-1509624686) at 2023-04-15 01:05 AM PDT -JessicaLucindaCheng,2023-04-15T08:06:03Z,- JessicaLucindaCheng commented on issue: [4512](https://github.com/hackforla/website/issues/4512#issuecomment-1509624893) at 2023-04-15 01:06 AM PDT -JessicaLucindaCheng,2023-04-16T22:53:55Z,- JessicaLucindaCheng commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1510510029) at 2023-04-16 03:53 PM PDT -JessicaLucindaCheng,2023-04-17T00:12:08Z,- JessicaLucindaCheng opened issue: [4527](https://github.com/hackforla/website/issues/4527) at 2023-04-16 05:12 PM PDT -JessicaLucindaCheng,2023-04-17T09:17:32Z,- JessicaLucindaCheng opened issue: [4530](https://github.com/hackforla/website/issues/4530) at 2023-04-17 02:17 AM PDT -JessicaLucindaCheng,2023-04-17T09:32:21Z,- JessicaLucindaCheng opened issue: [4531](https://github.com/hackforla/website/issues/4531) at 2023-04-17 02:32 AM PDT -JessicaLucindaCheng,2023-04-17T10:43:00Z,- JessicaLucindaCheng opened issue: [4532](https://github.com/hackforla/website/issues/4532) at 2023-04-17 03:43 AM PDT -JessicaLucindaCheng,2023-04-17T11:15:57Z,- JessicaLucindaCheng opened issue: [4533](https://github.com/hackforla/website/issues/4533) at 2023-04-17 04:15 AM PDT -JessicaLucindaCheng,2023-04-17T11:34:48Z,- JessicaLucindaCheng opened issue: [4534](https://github.com/hackforla/website/issues/4534) at 2023-04-17 04:34 AM PDT -JessicaLucindaCheng,2023-04-17T12:25:54Z,- JessicaLucindaCheng opened issue: [4535](https://github.com/hackforla/website/issues/4535) at 2023-04-17 05:25 AM PDT -JessicaLucindaCheng,2023-04-17T12:57:52Z,- JessicaLucindaCheng opened issue: [4536](https://github.com/hackforla/website/issues/4536) at 2023-04-17 05:57 AM PDT -JessicaLucindaCheng,2023-04-17T13:15:03Z,- JessicaLucindaCheng opened issue: [4537](https://github.com/hackforla/website/issues/4537) at 2023-04-17 06:15 AM PDT -JessicaLucindaCheng,2023-04-17T13:23:11Z,- JessicaLucindaCheng opened issue: [4538](https://github.com/hackforla/website/issues/4538) at 2023-04-17 06:23 AM PDT -JessicaLucindaCheng,2023-04-17T21:50:05Z,- JessicaLucindaCheng commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1512127207) at 2023-04-17 02:50 PM PDT -JessicaLucindaCheng,2023-04-17T21:51:11Z,- JessicaLucindaCheng commented on pull request: [4540](https://github.com/hackforla/website/pull/4540#issuecomment-1512128491) at 2023-04-17 02:51 PM PDT -JessicaLucindaCheng,2023-04-17T22:32:19Z,- JessicaLucindaCheng opened issue: [4541](https://github.com/hackforla/website/issues/4541) at 2023-04-17 03:32 PM PDT -JessicaLucindaCheng,2023-04-17T22:41:17Z,- JessicaLucindaCheng opened issue: [4542](https://github.com/hackforla/website/issues/4542) at 2023-04-17 03:41 PM PDT -JessicaLucindaCheng,2023-04-17T22:59:21Z,- JessicaLucindaCheng opened issue: [4543](https://github.com/hackforla/website/issues/4543) at 2023-04-17 03:59 PM PDT -JessicaLucindaCheng,2023-04-18T00:38:27Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1512279602) at 2023-04-17 05:38 PM PDT -JessicaLucindaCheng,2023-04-19T03:04:12Z,- JessicaLucindaCheng commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1514068623) at 2023-04-18 08:04 PM PDT -JessicaLucindaCheng,2023-04-19T21:18:48Z,- JessicaLucindaCheng commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1515394606) at 2023-04-19 02:18 PM PDT -JessicaLucindaCheng,2023-04-19T21:19:32Z,- JessicaLucindaCheng commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1515395323) at 2023-04-19 02:19 PM PDT -JessicaLucindaCheng,2023-04-20T00:26:07Z,- JessicaLucindaCheng commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1515545809) at 2023-04-19 05:26 PM PDT -JessicaLucindaCheng,2023-04-21T00:13:51Z,- JessicaLucindaCheng commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1517085627) at 2023-04-20 05:13 PM PDT -JessicaLucindaCheng,2023-04-21T00:34:05Z,- JessicaLucindaCheng commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1517096764) at 2023-04-20 05:34 PM PDT -JessicaLucindaCheng,2023-04-21T00:46:23Z,- JessicaLucindaCheng commented on issue: [4504](https://github.com/hackforla/website/issues/4504#issuecomment-1517103173) at 2023-04-20 05:46 PM PDT -JessicaLucindaCheng,2023-04-21T06:08:21Z,- JessicaLucindaCheng commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1517311625) at 2023-04-20 11:08 PM PDT -JessicaLucindaCheng,2023-04-21T06:17:33Z,- JessicaLucindaCheng commented on issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1517320880) at 2023-04-20 11:17 PM PDT -JessicaLucindaCheng,2023-04-22T04:49:52Z,- JessicaLucindaCheng commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1518509358) at 2023-04-21 09:49 PM PDT -JessicaLucindaCheng,2023-04-22T04:54:20Z,- JessicaLucindaCheng commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1518510092) at 2023-04-21 09:54 PM PDT -JessicaLucindaCheng,2023-04-22T04:59:11Z,- JessicaLucindaCheng commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1518511032) at 2023-04-21 09:59 PM PDT -JessicaLucindaCheng,2023-04-22T05:07:58Z,- JessicaLucindaCheng commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1518512812) at 2023-04-21 10:07 PM PDT -JessicaLucindaCheng,2023-04-23T00:43:29Z,- JessicaLucindaCheng commented on issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1518906788) at 2023-04-22 05:43 PM PDT -JessicaLucindaCheng,2023-04-23T01:19:44Z,- JessicaLucindaCheng commented on issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1518912153) at 2023-04-22 06:19 PM PDT -JessicaLucindaCheng,2023-04-23T01:27:29Z,- JessicaLucindaCheng commented on issue: [4456](https://github.com/hackforla/website/issues/4456#issuecomment-1518913136) at 2023-04-22 06:27 PM PDT -JessicaLucindaCheng,2023-04-23T01:32:41Z,- JessicaLucindaCheng commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1518914009) at 2023-04-22 06:32 PM PDT -JessicaLucindaCheng,2023-04-23T01:43:41Z,- JessicaLucindaCheng commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1518915536) at 2023-04-22 06:43 PM PDT -JessicaLucindaCheng,2023-04-23T02:56:20Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1518927106) at 2023-04-22 07:56 PM PDT -JessicaLucindaCheng,2023-04-23T03:05:42Z,- JessicaLucindaCheng commented on issue: [4387](https://github.com/hackforla/website/issues/4387#issuecomment-1518928681) at 2023-04-22 08:05 PM PDT -JessicaLucindaCheng,2023-04-23T17:22:55Z,- JessicaLucindaCheng assigned to issue: [3957](https://github.com/hackforla/website/issues/3957#event-8680639303) at 2023-04-23 10:22 AM PDT -JessicaLucindaCheng,2023-04-23T17:32:34Z,- JessicaLucindaCheng assigned to issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1052806897) at 2023-04-23 10:32 AM PDT -JessicaLucindaCheng,2023-04-24T22:41:46Z,- JessicaLucindaCheng commented on issue: [4556](https://github.com/hackforla/website/issues/4556#issuecomment-1520916038) at 2023-04-24 03:41 PM PDT -JessicaLucindaCheng,2023-04-24T22:48:50Z,- JessicaLucindaCheng commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1520920390) at 2023-04-24 03:48 PM PDT -JessicaLucindaCheng,2023-04-24T23:23:13Z,- JessicaLucindaCheng commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1520945636) at 2023-04-24 04:23 PM PDT -JessicaLucindaCheng,2023-04-24T23:47:34Z,- JessicaLucindaCheng opened issue: [4562](https://github.com/hackforla/website/issues/4562) at 2023-04-24 04:47 PM PDT -JessicaLucindaCheng,2023-04-24T23:58:44Z,- JessicaLucindaCheng opened issue: [4563](https://github.com/hackforla/website/issues/4563) at 2023-04-24 04:58 PM PDT -JessicaLucindaCheng,2023-04-25T01:11:18Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1521022664) at 2023-04-24 06:11 PM PDT -JessicaLucindaCheng,2023-04-25T02:09:03Z,- JessicaLucindaCheng commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1521055475) at 2023-04-24 07:09 PM PDT -JessicaLucindaCheng,2023-04-25T02:14:25Z,- JessicaLucindaCheng commented on issue: [4556](https://github.com/hackforla/website/issues/4556#issuecomment-1521058196) at 2023-04-24 07:14 PM PDT -JessicaLucindaCheng,2023-05-01T18:02:53Z,- JessicaLucindaCheng commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1530021507) at 2023-05-01 11:02 AM PDT -JessicaLucindaCheng,2023-05-01T18:25:42Z,- JessicaLucindaCheng opened issue: [4589](https://github.com/hackforla/website/issues/4589) at 2023-05-01 11:25 AM PDT -JessicaLucindaCheng,2023-05-01T22:53:27Z,- JessicaLucindaCheng opened issue: [4591](https://github.com/hackforla/website/issues/4591) at 2023-05-01 03:53 PM PDT -JessicaLucindaCheng,2023-05-03T01:14:09Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1532338835) at 2023-05-02 06:14 PM PDT -JessicaLucindaCheng,2023-05-04T23:13:24Z,- JessicaLucindaCheng commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1535516843) at 2023-05-04 04:13 PM PDT -JessicaLucindaCheng,2023-05-04T23:25:40Z,- JessicaLucindaCheng commented on issue: [4589](https://github.com/hackforla/website/issues/4589#issuecomment-1535523523) at 2023-05-04 04:25 PM PDT -JessicaLucindaCheng,2023-05-04T23:28:45Z,- JessicaLucindaCheng commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1535525103) at 2023-05-04 04:28 PM PDT -JessicaLucindaCheng,2023-05-06T21:55:51Z,- JessicaLucindaCheng commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1537230173) at 2023-05-06 02:55 PM PDT -JessicaLucindaCheng,2023-05-06T22:31:30Z,- JessicaLucindaCheng commented on issue: [4527](https://github.com/hackforla/website/issues/4527#issuecomment-1537235044) at 2023-05-06 03:31 PM PDT -JessicaLucindaCheng,2023-05-06T22:40:28Z,- JessicaLucindaCheng commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1537236282) at 2023-05-06 03:40 PM PDT -JessicaLucindaCheng,2023-05-06T22:47:10Z,- JessicaLucindaCheng commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1537237113) at 2023-05-06 03:47 PM PDT -JessicaLucindaCheng,2023-05-08T00:18:21Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1537580632) at 2023-05-07 05:18 PM PDT -JessicaLucindaCheng,2023-05-08T23:23:44Z,- JessicaLucindaCheng commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1539187359) at 2023-05-08 04:23 PM PDT -JessicaLucindaCheng,2023-05-09T00:14:26Z,- JessicaLucindaCheng commented on issue: [4588](https://github.com/hackforla/website/issues/4588#issuecomment-1539220056) at 2023-05-08 05:14 PM PDT -JessicaLucindaCheng,2023-05-09T00:53:54Z,- JessicaLucindaCheng commented on issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1539241975) at 2023-05-08 05:53 PM PDT -JessicaLucindaCheng,2023-05-10T01:26:03Z,- JessicaLucindaCheng commented on issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1541143884) at 2023-05-09 06:26 PM PDT -JessicaLucindaCheng,2023-05-15T20:34:36Z,- JessicaLucindaCheng opened issue: [4676](https://github.com/hackforla/website/issues/4676) at 2023-05-15 01:34 PM PDT -JessicaLucindaCheng,2023-05-15T20:42:33Z,- JessicaLucindaCheng commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-1548546245) at 2023-05-15 01:42 PM PDT -JessicaLucindaCheng,2023-05-15T22:23:09Z,- JessicaLucindaCheng opened issue: [4678](https://github.com/hackforla/website/issues/4678) at 2023-05-15 03:23 PM PDT -JessicaLucindaCheng,2023-05-15T23:39:01Z,- JessicaLucindaCheng opened issue: [4679](https://github.com/hackforla/website/issues/4679) at 2023-05-15 04:39 PM PDT -JessicaLucindaCheng,2023-05-22T23:55:23Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1558205459) at 2023-05-22 04:55 PM PDT -JessicaLucindaCheng,2023-05-23T01:24:43Z,- JessicaLucindaCheng assigned to issue: [4676](https://github.com/hackforla/website/issues/4676) at 2023-05-22 06:24 PM PDT -JessicaLucindaCheng,2023-05-23T01:25:39Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1558322552) at 2023-05-22 06:25 PM PDT -JessicaLucindaCheng,2023-05-25T23:39:30Z,- JessicaLucindaCheng commented on issue: [4699](https://github.com/hackforla/website/issues/4699#issuecomment-1563633878) at 2023-05-25 04:39 PM PDT -JessicaLucindaCheng,2023-05-28T09:25:03Z,- JessicaLucindaCheng closed issue by PR 8: [4363](https://github.com/hackforla/website/issues/4363#event-9361366427) at 2023-05-28 02:25 AM PDT -JessicaLucindaCheng,2023-05-28T09:27:14Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1566033382) at 2023-05-28 02:27 AM PDT -JessicaLucindaCheng,2023-05-28T10:56:13Z,- JessicaLucindaCheng commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1566085078) at 2023-05-28 03:56 AM PDT -JessicaLucindaCheng,2023-05-29T23:16:04Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1567589812) at 2023-05-29 04:16 PM PDT -JessicaLucindaCheng,2023-05-29T23:57:34Z,- JessicaLucindaCheng opened issue: [4752](https://github.com/hackforla/website/issues/4752) at 2023-05-29 04:57 PM PDT -JessicaLucindaCheng,2023-05-30T02:19:23Z,- JessicaLucindaCheng commented on issue: [4627](https://github.com/hackforla/website/issues/4627#issuecomment-1567675593) at 2023-05-29 07:19 PM PDT -JessicaLucindaCheng,2023-05-30T04:53:47Z,- JessicaLucindaCheng commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1567752162) at 2023-05-29 09:53 PM PDT -JessicaLucindaCheng,2023-06-03T08:29:44Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1574780715) at 2023-06-03 01:29 AM PDT -JessicaLucindaCheng,2023-06-04T15:42:17Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1575615518) at 2023-06-04 08:42 AM PDT -JessicaLucindaCheng,2023-06-04T15:45:03Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1575616393) at 2023-06-04 08:45 AM PDT -JessicaLucindaCheng,2023-06-04T16:34:21Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1575631994) at 2023-06-04 09:34 AM PDT -JessicaLucindaCheng,2023-06-06T02:14:01Z,- JessicaLucindaCheng commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1577789253) at 2023-06-05 07:14 PM PDT -JessicaLucindaCheng,2023-06-09T08:56:59Z,- JessicaLucindaCheng opened issue: [4794](https://github.com/hackforla/website/issues/4794) at 2023-06-09 01:56 AM PDT -JessicaLucindaCheng,2023-06-09T09:50:58Z,- JessicaLucindaCheng commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1584295986) at 2023-06-09 02:50 AM PDT -JessicaLucindaCheng,2023-06-10T11:32:40Z,- JessicaLucindaCheng closed issue as completed: [4563](https://github.com/hackforla/website/issues/4563#event-9490654208) at 2023-06-10 04:32 AM PDT -JessicaLucindaCheng,2023-06-10T11:57:44Z,- JessicaLucindaCheng commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1585633439) at 2023-06-10 04:57 AM PDT -JessicaLucindaCheng,2023-06-13T00:22:17Z,- JessicaLucindaCheng commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1588285094) at 2023-06-12 05:22 PM PDT -JessicaLucindaCheng,2023-06-13T08:42:51Z,- JessicaLucindaCheng commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1588831567) at 2023-06-13 01:42 AM PDT -JessicaLucindaCheng,2023-06-18T09:04:07Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1596045639) at 2023-06-18 02:04 AM PDT -JessicaLucindaCheng,2023-06-20T00:53:01Z,- JessicaLucindaCheng commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1597919148) at 2023-06-19 05:53 PM PDT -JessicaLucindaCheng,2023-06-30T21:34:00Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1615214628) at 2023-06-30 02:34 PM PDT -JessicaLucindaCheng,2023-07-17T02:56:34Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1637309346) at 2023-07-16 07:56 PM PDT -JessicaLucindaCheng,2023-07-17T02:58:03Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1637310131) at 2023-07-16 07:58 PM PDT -JessicaLucindaCheng,2023-07-17T23:37:14Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1639037403) at 2023-07-17 04:37 PM PDT -JessicaLucindaCheng,2023-07-18T00:41:57Z,- JessicaLucindaCheng commented on issue: [4939](https://github.com/hackforla/website/issues/4939#issuecomment-1639105125) at 2023-07-17 05:41 PM PDT -JessicaLucindaCheng,2023-07-18T00:46:51Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1639108051) at 2023-07-17 05:46 PM PDT -JessicaLucindaCheng,2023-07-18T01:48:12Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1639152069) at 2023-07-17 06:48 PM PDT -JessicaLucindaCheng,2023-07-18T05:04:04Z,- JessicaLucindaCheng commented on issue: [4948](https://github.com/hackforla/website/issues/4948#issuecomment-1639479285) at 2023-07-17 10:04 PM PDT -JessicaLucindaCheng,2023-07-18T06:00:07Z,- JessicaLucindaCheng opened issue: [5003](https://github.com/hackforla/website/issues/5003) at 2023-07-17 11:00 PM PDT -JessicaLucindaCheng,2023-07-18T06:33:33Z,- JessicaLucindaCheng commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1639587224) at 2023-07-17 11:33 PM PDT -JessicaLucindaCheng,2023-07-18T07:07:05Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1639624196) at 2023-07-18 12:07 AM PDT -JessicaLucindaCheng,2023-07-20T01:03:37Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1642956632) at 2023-07-19 06:03 PM PDT -JessicaLucindaCheng,2023-07-26T01:40:41Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1650836601) at 2023-07-25 06:40 PM PDT -JessicaLucindaCheng,2023-07-26T07:58:04Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1651176262) at 2023-07-26 12:58 AM PDT -JessicaLucindaCheng,2023-07-30T13:22:15Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1657172643) at 2023-07-30 06:22 AM PDT -JessicaLucindaCheng,2023-07-30T22:25:49Z,- JessicaLucindaCheng commented on issue: [5057](https://github.com/hackforla/website/issues/5057#issuecomment-1657280411) at 2023-07-30 03:25 PM PDT -JessicaLucindaCheng,2023-08-01T02:03:15Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659452787) at 2023-07-31 07:03 PM PDT -JessicaLucindaCheng,2023-08-01T02:08:03Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659455998) at 2023-07-31 07:08 PM PDT -JessicaLucindaCheng,2023-08-01T09:39:56Z,- JessicaLucindaCheng opened issue: [5127](https://github.com/hackforla/website/issues/5127) at 2023-08-01 02:39 AM PDT -JessicaLucindaCheng,2023-08-01T09:41:50Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1659953959) at 2023-08-01 02:41 AM PDT -JessicaLucindaCheng,2023-08-01T09:42:18Z,- JessicaLucindaCheng commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659954725) at 2023-08-01 02:42 AM PDT -JessicaLucindaCheng,2023-08-01T09:54:45Z,- JessicaLucindaCheng assigned to issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1659953959) at 2023-08-01 02:54 AM PDT -JessicaLucindaCheng,2023-08-05T01:09:00Z,- JessicaLucindaCheng commented on issue: [5132](https://github.com/hackforla/website/issues/5132#issuecomment-1666328944) at 2023-08-04 06:09 PM PDT -JessicaLucindaCheng,2023-08-05T01:50:37Z,- JessicaLucindaCheng commented on issue: [5132](https://github.com/hackforla/website/issues/5132#issuecomment-1666345365) at 2023-08-04 06:50 PM PDT -JessicaLucindaCheng,2023-08-06T15:55:37Z,- JessicaLucindaCheng commented on issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666903729) at 2023-08-06 08:55 AM PDT -JessicaLucindaCheng,2023-08-06T16:17:22Z,- JessicaLucindaCheng commented on issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666909608) at 2023-08-06 09:17 AM PDT -JessicaLucindaCheng,2023-08-06T16:36:16Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1666914290) at 2023-08-06 09:36 AM PDT -JessicaLucindaCheng,2023-08-07T23:58:33Z,- JessicaLucindaCheng opened issue: [5160](https://github.com/hackforla/website/issues/5160) at 2023-08-07 04:58 PM PDT -JessicaLucindaCheng,2023-08-07T23:58:43Z,- JessicaLucindaCheng assigned to issue: [5160](https://github.com/hackforla/website/issues/5160) at 2023-08-07 04:58 PM PDT -JessicaLucindaCheng,2023-08-11T09:09:36Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1674431710) at 2023-08-11 02:09 AM PDT -JessicaLucindaCheng,2023-08-15T04:08:54Z,- JessicaLucindaCheng opened issue: [5231](https://github.com/hackforla/website/issues/5231) at 2023-08-14 09:08 PM PDT -JessicaLucindaCheng,2023-08-19T11:13:26Z,- JessicaLucindaCheng commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1684920730) at 2023-08-19 04:13 AM PDT -JessicaLucindaCheng,2023-08-20T13:14:38Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1685283073) at 2023-08-20 06:14 AM PDT -JessicaLucindaCheng,2023-08-21T15:37:22Z,- JessicaLucindaCheng commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1686564354) at 2023-08-21 08:37 AM PDT -JessicaLucindaCheng,2023-08-21T15:38:01Z,- JessicaLucindaCheng commented on issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1686565365) at 2023-08-21 08:38 AM PDT -JessicaLucindaCheng,2023-08-25T17:28:47Z,- JessicaLucindaCheng opened issue: [5309](https://github.com/hackforla/website/issues/5309) at 2023-08-25 10:28 AM PDT -JessicaLucindaCheng,2023-08-27T17:27:41Z,- JessicaLucindaCheng commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1694720498) at 2023-08-27 10:27 AM PDT -JessicaLucindaCheng,2023-08-27T17:28:21Z,- JessicaLucindaCheng unassigned from issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1694720498) at 2023-08-27 10:28 AM PDT -JessicaLucindaCheng,2023-08-27T17:32:33Z,- JessicaLucindaCheng commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1694721521) at 2023-08-27 10:32 AM PDT -JessicaLucindaCheng,2023-08-27T17:54:12Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1694725557) at 2023-08-27 10:54 AM PDT -JessicaLucindaCheng,2023-08-27T18:04:10Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1694727377) at 2023-08-27 11:04 AM PDT -JessicaLucindaCheng,2023-08-27T18:27:56Z,- JessicaLucindaCheng commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694731823) at 2023-08-27 11:27 AM PDT -JessicaLucindaCheng,2023-08-28T18:23:30Z,- JessicaLucindaCheng commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1696143593) at 2023-08-28 11:23 AM PDT -JessicaLucindaCheng,2023-08-28T18:51:20Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1696205864) at 2023-08-28 11:51 AM PDT -JessicaLucindaCheng,2023-08-28T19:29:54Z,- JessicaLucindaCheng commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1696256028) at 2023-08-28 12:29 PM PDT -JessicaLucindaCheng,2023-08-28T20:42:41Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1696383917) at 2023-08-28 01:42 PM PDT -JessicaLucindaCheng,2023-08-28T20:44:41Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1696386340) at 2023-08-28 01:44 PM PDT -JessicaLucindaCheng,2023-08-28T21:23:47Z,- JessicaLucindaCheng opened issue: [5328](https://github.com/hackforla/website/issues/5328) at 2023-08-28 02:23 PM PDT -JessicaLucindaCheng,2023-08-28T21:49:42Z,- JessicaLucindaCheng commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1696475628) at 2023-08-28 02:49 PM PDT -JessicaLucindaCheng,2023-08-28T21:54:42Z,- JessicaLucindaCheng commented on issue: [5132](https://github.com/hackforla/website/issues/5132#issuecomment-1696480564) at 2023-08-28 02:54 PM PDT -JessicaLucindaCheng,2023-08-28T21:54:42Z,- JessicaLucindaCheng closed issue as completed: [5132](https://github.com/hackforla/website/issues/5132#event-10214310447) at 2023-08-28 02:54 PM PDT -JessicaLucindaCheng,2023-08-28T22:45:19Z,- JessicaLucindaCheng opened issue: [5329](https://github.com/hackforla/website/issues/5329) at 2023-08-28 03:45 PM PDT -JessicaLucindaCheng,2023-08-28T22:54:31Z,- JessicaLucindaCheng commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1696534566) at 2023-08-28 03:54 PM PDT -JessicaLucindaCheng,2023-08-31T15:24:55Z,- JessicaLucindaCheng commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1701256957) at 2023-08-31 08:24 AM PDT -JessicaLucindaCheng,2023-08-31T16:09:54Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1701329616) at 2023-08-31 09:09 AM PDT -JessicaLucindaCheng,2023-08-31T16:36:06Z,- JessicaLucindaCheng commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1701389198) at 2023-08-31 09:36 AM PDT -JessicaLucindaCheng,2023-09-11T21:02:16Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1714574247) at 2023-09-11 02:02 PM PDT -JessicaLucindaCheng,2023-09-12T00:07:04Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1714774829) at 2023-09-11 05:07 PM PDT -JessicaLucindaCheng,2023-09-25T22:54:46Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1734572668) at 2023-09-25 03:54 PM PDT -JessicaLucindaCheng,2023-09-25T23:22:19Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1734594664) at 2023-09-25 04:22 PM PDT -JessicaLucindaCheng,2023-09-25T23:36:41Z,- JessicaLucindaCheng opened issue: [5584](https://github.com/hackforla/website/issues/5584) at 2023-09-25 04:36 PM PDT -JessicaLucindaCheng,2023-09-25T23:42:09Z,- JessicaLucindaCheng assigned to issue: [5407](https://github.com/hackforla/website/issues/5407) at 2023-09-25 04:42 PM PDT -JessicaLucindaCheng,2023-09-25T23:43:31Z,- JessicaLucindaCheng commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1734613914) at 2023-09-25 04:43 PM PDT -JessicaLucindaCheng,2023-09-28T09:25:43Z,- JessicaLucindaCheng opened issue: [5622](https://github.com/hackforla/website/issues/5622) at 2023-09-28 02:25 AM PDT -JessicaLucindaCheng,2023-09-28T10:04:13Z,- JessicaLucindaCheng commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1738852984) at 2023-09-28 03:04 AM PDT -JessicaLucindaCheng,2023-09-28T11:39:29Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1738980128) at 2023-09-28 04:39 AM PDT -JessicaLucindaCheng,2023-09-28T14:54:06Z,- JessicaLucindaCheng opened issue: [5623](https://github.com/hackforla/website/issues/5623) at 2023-09-28 07:54 AM PDT -JessicaLucindaCheng,2023-09-28T15:23:29Z,- JessicaLucindaCheng opened issue: [5624](https://github.com/hackforla/website/issues/5624) at 2023-09-28 08:23 AM PDT -JessicaLucindaCheng,2023-09-28T15:35:00Z,- JessicaLucindaCheng commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1739552081) at 2023-09-28 08:35 AM PDT -JessicaLucindaCheng,2023-09-29T02:05:59Z,- JessicaLucindaCheng commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1740217487) at 2023-09-28 07:05 PM PDT -JessicaLucindaCheng,2023-09-29T02:40:40Z,- JessicaLucindaCheng opened issue: [5630](https://github.com/hackforla/website/issues/5630) at 2023-09-28 07:40 PM PDT -JessicaLucindaCheng,2023-09-29T02:51:18Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1740241650) at 2023-09-28 07:51 PM PDT -JessicaLucindaCheng,2023-09-29T02:51:35Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1740241788) at 2023-09-28 07:51 PM PDT -JessicaLucindaCheng,2023-09-29T03:36:44Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1740263532) at 2023-09-28 08:36 PM PDT -JessicaLucindaCheng,2023-10-03T01:45:12Z,- JessicaLucindaCheng commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1744032882) at 2023-10-02 06:45 PM PDT -JessicaLucindaCheng,2023-10-03T01:55:10Z,- JessicaLucindaCheng unassigned from issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1744032882) at 2023-10-02 06:55 PM PDT -JessicaLucindaCheng,2023-10-08T10:15:36Z,- JessicaLucindaCheng commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1751985560) at 2023-10-08 03:15 AM PDT -JessicaLucindaCheng,2023-10-10T00:55:07Z,- JessicaLucindaCheng assigned to issue: [5627](https://github.com/hackforla/website/issues/5627) at 2023-10-09 05:55 PM PDT -JessicaLucindaCheng,2023-10-10T01:01:34Z,- JessicaLucindaCheng assigned to issue: [4778](https://github.com/hackforla/website/issues/4778) at 2023-10-09 06:01 PM PDT -JessicaLucindaCheng,2023-10-10T01:02:18Z,- JessicaLucindaCheng commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1754147380) at 2023-10-09 06:02 PM PDT -JessicaLucindaCheng,2023-10-10T01:22:47Z,- JessicaLucindaCheng commented on issue: [4778](https://github.com/hackforla/website/issues/4778#issuecomment-1754161316) at 2023-10-09 06:22 PM PDT -JessicaLucindaCheng,2023-10-16T12:15:55Z,- JessicaLucindaCheng opened issue: [5716](https://github.com/hackforla/website/issues/5716) at 2023-10-16 05:15 AM PDT -JessicaLucindaCheng,2023-10-16T13:25:35Z,- JessicaLucindaCheng commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1764482427) at 2023-10-16 06:25 AM PDT -JessicaLucindaCheng,2023-10-16T13:55:39Z,- JessicaLucindaCheng opened issue: [5717](https://github.com/hackforla/website/issues/5717) at 2023-10-16 06:55 AM PDT -JessicaLucindaCheng,2023-10-16T23:54:19Z,- JessicaLucindaCheng commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1765444135) at 2023-10-16 04:54 PM PDT -JessicaLucindaCheng,2023-10-16T23:58:25Z,- JessicaLucindaCheng commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1765447140) at 2023-10-16 04:58 PM PDT -JessicaLucindaCheng,2023-10-22T15:00:04Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774117138) at 2023-10-22 08:00 AM PDT -JessicaLucindaCheng,2023-10-22T15:08:20Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119160) at 2023-10-22 08:08 AM PDT -JessicaLucindaCheng,2023-10-22T15:08:36Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119230) at 2023-10-22 08:08 AM PDT -JessicaLucindaCheng,2023-10-22T15:08:51Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119289) at 2023-10-22 08:08 AM PDT -JessicaLucindaCheng,2023-10-22T15:09:06Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119349) at 2023-10-22 08:09 AM PDT -JessicaLucindaCheng,2023-10-22T15:09:19Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119429) at 2023-10-22 08:09 AM PDT -JessicaLucindaCheng,2023-10-22T15:09:43Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119521) at 2023-10-22 08:09 AM PDT -JessicaLucindaCheng,2023-10-22T15:09:56Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119587) at 2023-10-22 08:09 AM PDT -JessicaLucindaCheng,2023-10-22T15:10:11Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119650) at 2023-10-22 08:10 AM PDT -JessicaLucindaCheng,2023-10-22T15:10:26Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119730) at 2023-10-22 08:10 AM PDT -JessicaLucindaCheng,2023-10-22T15:10:34Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774119764) at 2023-10-22 08:10 AM PDT -JessicaLucindaCheng,2023-10-22T15:24:55Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1774122890) at 2023-10-22 08:24 AM PDT -JessicaLucindaCheng,2023-10-22T15:32:56Z,- JessicaLucindaCheng opened issue: [5752](https://github.com/hackforla/website/issues/5752) at 2023-10-22 08:32 AM PDT -JessicaLucindaCheng,2023-10-22T15:54:51Z,- JessicaLucindaCheng opened issue: [5753](https://github.com/hackforla/website/issues/5753) at 2023-10-22 08:54 AM PDT -JessicaLucindaCheng,2023-10-22T15:59:35Z,- JessicaLucindaCheng opened issue: [5754](https://github.com/hackforla/website/issues/5754) at 2023-10-22 08:59 AM PDT -JessicaLucindaCheng,2023-10-22T16:03:11Z,- JessicaLucindaCheng opened issue: [5755](https://github.com/hackforla/website/issues/5755) at 2023-10-22 09:03 AM PDT -JessicaLucindaCheng,2023-10-22T16:25:14Z,- JessicaLucindaCheng opened issue: [5756](https://github.com/hackforla/website/issues/5756) at 2023-10-22 09:25 AM PDT -JessicaLucindaCheng,2023-10-22T17:02:22Z,- JessicaLucindaCheng opened issue: [5757](https://github.com/hackforla/website/issues/5757) at 2023-10-22 10:02 AM PDT -JessicaLucindaCheng,2023-10-22T17:13:30Z,- JessicaLucindaCheng commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1774148704) at 2023-10-22 10:13 AM PDT -JessicaLucindaCheng,2023-10-22T18:27:23Z,- JessicaLucindaCheng opened issue: [5759](https://github.com/hackforla/website/issues/5759) at 2023-10-22 11:27 AM PDT -JessicaLucindaCheng,2023-10-22T18:34:34Z,- JessicaLucindaCheng opened issue: [5760](https://github.com/hackforla/website/issues/5760) at 2023-10-22 11:34 AM PDT -JessicaLucindaCheng,2023-10-22T18:40:34Z,- JessicaLucindaCheng opened issue: [5761](https://github.com/hackforla/website/issues/5761) at 2023-10-22 11:40 AM PDT -JessicaLucindaCheng,2023-10-22T18:46:03Z,- JessicaLucindaCheng opened issue: [5762](https://github.com/hackforla/website/issues/5762) at 2023-10-22 11:46 AM PDT -JessicaLucindaCheng,2023-10-22T18:51:42Z,- JessicaLucindaCheng opened issue: [5763](https://github.com/hackforla/website/issues/5763) at 2023-10-22 11:51 AM PDT -JessicaLucindaCheng,2023-10-22T18:57:24Z,- JessicaLucindaCheng commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1774171638) at 2023-10-22 11:57 AM PDT -JessicaLucindaCheng,2023-10-22T18:59:56Z,- JessicaLucindaCheng commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1774172256) at 2023-10-22 11:59 AM PDT -JessicaLucindaCheng,2023-10-22T19:34:01Z,- JessicaLucindaCheng commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1774180002) at 2023-10-22 12:34 PM PDT -JessicaLucindaCheng,2023-10-23T18:56:16Z,- JessicaLucindaCheng commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1775832429) at 2023-10-23 11:56 AM PDT -JessicaLucindaCheng,2023-10-23T21:13:04Z,- JessicaLucindaCheng commented on issue: [4752](https://github.com/hackforla/website/issues/4752#issuecomment-1776030382) at 2023-10-23 02:13 PM PDT -JessicaLucindaCheng,2023-10-23T21:46:13Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1776072538) at 2023-10-23 02:46 PM PDT -JessicaLucindaCheng,2023-10-23T22:11:36Z,- JessicaLucindaCheng commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1776102512) at 2023-10-23 03:11 PM PDT -JessicaLucindaCheng,2023-10-23T22:21:37Z,- JessicaLucindaCheng commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1776113897) at 2023-10-23 03:21 PM PDT -JessicaLucindaCheng,2023-10-23T22:44:00Z,- JessicaLucindaCheng commented on issue: [4534](https://github.com/hackforla/website/issues/4534#issuecomment-1776137944) at 2023-10-23 03:44 PM PDT -JessicaLucindaCheng,2023-10-23T22:57:41Z,- JessicaLucindaCheng commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-1776153311) at 2023-10-23 03:57 PM PDT -JessicaLucindaCheng,2023-10-23T23:11:51Z,- JessicaLucindaCheng commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1776169369) at 2023-10-23 04:11 PM PDT -JessicaLucindaCheng,2023-10-23T23:22:18Z,- JessicaLucindaCheng commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1776179338) at 2023-10-23 04:22 PM PDT -JessicaLucindaCheng,2023-10-24T00:57:48Z,- JessicaLucindaCheng assigned to issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1724686914) at 2023-10-23 05:57 PM PDT -JessicaLucindaCheng,2023-10-24T01:00:15Z,- JessicaLucindaCheng commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1776289456) at 2023-10-23 06:00 PM PDT -JessicaLucindaCheng,2023-10-24T02:45:54Z,- JessicaLucindaCheng commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1776413049) at 2023-10-23 07:45 PM PDT -JessicaLucindaCheng,2023-10-24T04:54:58Z,- JessicaLucindaCheng commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1776537729) at 2023-10-23 09:54 PM PDT -JessicaLucindaCheng,2023-10-25T03:54:29Z,- JessicaLucindaCheng commented on issue: [5760](https://github.com/hackforla/website/issues/5760#issuecomment-1778465092) at 2023-10-24 08:54 PM PDT -JessicaLucindaCheng,2023-10-27T18:50:01Z,- JessicaLucindaCheng commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1783362912) at 2023-10-27 11:50 AM PDT -JessicaLucindaCheng,2023-10-27T22:15:33Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1783567380) at 2023-10-27 03:15 PM PDT -JessicaLucindaCheng,2023-10-29T16:19:26Z,- JessicaLucindaCheng commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1784157227) at 2023-10-29 09:19 AM PDT -JessicaLucindaCheng,2023-10-29T16:53:38Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1784165800) at 2023-10-29 09:53 AM PDT -JessicaLucindaCheng,2023-10-29T18:26:52Z,- JessicaLucindaCheng opened issue: [5790](https://github.com/hackforla/website/issues/5790) at 2023-10-29 11:26 AM PDT -JessicaLucindaCheng,2023-10-29T18:43:17Z,- JessicaLucindaCheng assigned to issue: [5790](https://github.com/hackforla/website/issues/5790) at 2023-10-29 11:43 AM PDT -JessicaLucindaCheng,2023-10-29T18:49:37Z,- JessicaLucindaCheng unassigned from issue: [5790](https://github.com/hackforla/website/issues/5790#issuecomment-1784194086) at 2023-10-29 11:49 AM PDT -JessicaLucindaCheng,2023-10-29T19:20:11Z,- JessicaLucindaCheng opened issue: [5791](https://github.com/hackforla/website/issues/5791) at 2023-10-29 12:20 PM PDT -JessicaLucindaCheng,2023-10-29T19:30:12Z,- JessicaLucindaCheng commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1784204383) at 2023-10-29 12:30 PM PDT -JessicaLucindaCheng,2023-10-29T19:33:39Z,- JessicaLucindaCheng commented on issue: [5791](https://github.com/hackforla/website/issues/5791#issuecomment-1784205101) at 2023-10-29 12:33 PM PDT -JessicaLucindaCheng,2023-10-29T20:52:26Z,- JessicaLucindaCheng opened issue: [5792](https://github.com/hackforla/website/issues/5792) at 2023-10-29 01:52 PM PDT -JessicaLucindaCheng,2023-10-30T17:45:37Z,- JessicaLucindaCheng assigned to issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1744032882) at 2023-10-30 10:45 AM PDT -JessicaLucindaCheng,2023-10-30T17:57:55Z,- JessicaLucindaCheng commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1785765757) at 2023-10-30 10:57 AM PDT -JessicaLucindaCheng,2023-10-30T18:04:24Z,- JessicaLucindaCheng closed issue as completed: [5407](https://github.com/hackforla/website/issues/5407#event-10811406911) at 2023-10-30 11:04 AM PDT -JessicaLucindaCheng,2023-10-30T18:20:34Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1785800307) at 2023-10-30 11:20 AM PDT -JessicaLucindaCheng,2023-10-30T18:30:21Z,- JessicaLucindaCheng opened issue: [5796](https://github.com/hackforla/website/issues/5796) at 2023-10-30 11:30 AM PDT -JessicaLucindaCheng,2023-10-30T18:35:11Z,- JessicaLucindaCheng opened issue: [5797](https://github.com/hackforla/website/issues/5797) at 2023-10-30 11:35 AM PDT -JessicaLucindaCheng,2023-10-30T18:42:24Z,- JessicaLucindaCheng opened issue: [5798](https://github.com/hackforla/website/issues/5798) at 2023-10-30 11:42 AM PDT -JessicaLucindaCheng,2023-10-30T18:48:02Z,- JessicaLucindaCheng opened issue: [5799](https://github.com/hackforla/website/issues/5799) at 2023-10-30 11:48 AM PDT -JessicaLucindaCheng,2023-10-30T18:51:32Z,- JessicaLucindaCheng opened issue: [5800](https://github.com/hackforla/website/issues/5800) at 2023-10-30 11:51 AM PDT -JessicaLucindaCheng,2023-10-30T19:08:01Z,- JessicaLucindaCheng opened issue: [5801](https://github.com/hackforla/website/issues/5801) at 2023-10-30 12:08 PM PDT -JessicaLucindaCheng,2023-10-30T19:12:25Z,- JessicaLucindaCheng opened issue: [5802](https://github.com/hackforla/website/issues/5802) at 2023-10-30 12:12 PM PDT -JessicaLucindaCheng,2023-10-30T19:18:11Z,- JessicaLucindaCheng opened issue: [5803](https://github.com/hackforla/website/issues/5803) at 2023-10-30 12:18 PM PDT -JessicaLucindaCheng,2023-10-30T19:25:25Z,- JessicaLucindaCheng opened issue: [5804](https://github.com/hackforla/website/issues/5804) at 2023-10-30 12:25 PM PDT -JessicaLucindaCheng,2023-10-30T19:38:14Z,- JessicaLucindaCheng opened issue: [5805](https://github.com/hackforla/website/issues/5805) at 2023-10-30 12:38 PM PDT -JessicaLucindaCheng,2023-10-30T20:07:38Z,- JessicaLucindaCheng opened issue: [5806](https://github.com/hackforla/website/issues/5806) at 2023-10-30 01:07 PM PDT -JessicaLucindaCheng,2023-10-30T20:13:46Z,- JessicaLucindaCheng opened issue: [5807](https://github.com/hackforla/website/issues/5807) at 2023-10-30 01:13 PM PDT -JessicaLucindaCheng,2023-10-30T20:19:44Z,- JessicaLucindaCheng opened issue: [5808](https://github.com/hackforla/website/issues/5808) at 2023-10-30 01:19 PM PDT -JessicaLucindaCheng,2023-10-30T20:32:11Z,- JessicaLucindaCheng opened issue: [5809](https://github.com/hackforla/website/issues/5809) at 2023-10-30 01:32 PM PDT -JessicaLucindaCheng,2023-10-30T20:38:31Z,- JessicaLucindaCheng commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1786000159) at 2023-10-30 01:38 PM PDT -JessicaLucindaCheng,2023-10-30T20:49:44Z,- JessicaLucindaCheng commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-1786017027) at 2023-10-30 01:49 PM PDT -JessicaLucindaCheng,2023-10-30T21:11:36Z,- JessicaLucindaCheng unassigned from issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1774172256) at 2023-10-30 02:11 PM PDT -JessicaLucindaCheng,2023-10-31T00:06:20Z,- JessicaLucindaCheng commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1786233317) at 2023-10-30 05:06 PM PDT -JessicaLucindaCheng,2023-10-31T00:19:34Z,- JessicaLucindaCheng opened issue: [5814](https://github.com/hackforla/website/issues/5814) at 2023-10-30 05:19 PM PDT -JessicaLucindaCheng,2023-11-04T04:43:01Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1793337629) at 2023-11-03 08:43 PM PST -JessicaLucindaCheng,2023-11-04T04:54:48Z,- JessicaLucindaCheng assigned to issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1792805332) at 2023-11-03 08:54 PM PST -JessicaLucindaCheng,2023-11-04T04:54:59Z,- JessicaLucindaCheng assigned to issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1793040656) at 2023-11-03 08:54 PM PST -JessicaLucindaCheng,2023-11-04T04:57:29Z,- JessicaLucindaCheng assigned to issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1792812866) at 2023-11-03 08:57 PM PST -JessicaLucindaCheng,2023-11-05T21:58:06Z,- JessicaLucindaCheng commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1793857954) at 2023-11-05 01:58 PM PST -JessicaLucindaCheng,2023-11-05T21:58:44Z,- JessicaLucindaCheng commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1793858118) at 2023-11-05 01:58 PM PST -JessicaLucindaCheng,2023-11-05T22:00:38Z,- JessicaLucindaCheng commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1793858624) at 2023-11-05 02:00 PM PST -JessicaLucindaCheng,2023-11-05T22:58:38Z,- JessicaLucindaCheng commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1793873398) at 2023-11-05 02:58 PM PST -JessicaLucindaCheng,2023-11-05T22:59:17Z,- JessicaLucindaCheng commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1793873563) at 2023-11-05 02:59 PM PST -JessicaLucindaCheng,2023-11-05T23:18:49Z,- JessicaLucindaCheng unassigned from issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1793873563) at 2023-11-05 03:18 PM PST -JessicaLucindaCheng,2023-11-05T23:48:01Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1793886000) at 2023-11-05 03:48 PM PST -JessicaLucindaCheng,2023-11-06T00:01:38Z,- JessicaLucindaCheng opened issue: [5854](https://github.com/hackforla/website/issues/5854) at 2023-11-05 04:01 PM PST -JessicaLucindaCheng,2023-11-06T00:59:21Z,- JessicaLucindaCheng opened issue: [5855](https://github.com/hackforla/website/issues/5855) at 2023-11-05 04:59 PM PST -JessicaLucindaCheng,2023-11-06T01:41:35Z,- JessicaLucindaCheng opened issue: [5856](https://github.com/hackforla/website/issues/5856) at 2023-11-05 05:41 PM PST -JessicaLucindaCheng,2023-11-07T03:12:05Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1797448350) at 2023-11-06 07:12 PM PST -JessicaLucindaCheng,2023-11-07T03:32:05Z,- JessicaLucindaCheng opened issue: [5860](https://github.com/hackforla/website/issues/5860) at 2023-11-06 07:32 PM PST -JessicaLucindaCheng,2023-11-07T03:53:34Z,- JessicaLucindaCheng commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1797703681) at 2023-11-06 07:53 PM PST -JessicaLucindaCheng,2023-11-07T03:56:26Z,- JessicaLucindaCheng commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1797707262) at 2023-11-06 07:56 PM PST -JessicaLucindaCheng,2023-11-07T03:57:17Z,- JessicaLucindaCheng unassigned from issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1797707262) at 2023-11-06 07:57 PM PST -JessicaLucindaCheng,2023-11-07T04:55:22Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1797822821) at 2023-11-06 08:55 PM PST -JessicaLucindaCheng,2023-11-07T04:56:20Z,- JessicaLucindaCheng opened issue: [5874](https://github.com/hackforla/website/issues/5874) at 2023-11-06 08:56 PM PST -JessicaLucindaCheng,2023-11-07T06:10:14Z,- JessicaLucindaCheng commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1797879562) at 2023-11-06 10:10 PM PST -JessicaLucindaCheng,2023-11-07T06:11:58Z,- JessicaLucindaCheng commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1797880945) at 2023-11-06 10:11 PM PST -JessicaLucindaCheng,2023-11-07T06:26:44Z,- JessicaLucindaCheng opened issue: [5876](https://github.com/hackforla/website/issues/5876) at 2023-11-06 10:26 PM PST -JessicaLucindaCheng,2023-11-07T06:31:42Z,- JessicaLucindaCheng commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1797897527) at 2023-11-06 10:31 PM PST -JessicaLucindaCheng,2023-11-07T06:43:38Z,- JessicaLucindaCheng commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1797907287) at 2023-11-06 10:43 PM PST -JessicaLucindaCheng,2023-11-07T06:48:24Z,- JessicaLucindaCheng unassigned from issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1797880945) at 2023-11-06 10:48 PM PST -JessicaLucindaCheng,2023-11-07T06:48:29Z,- JessicaLucindaCheng unassigned from issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1797907287) at 2023-11-06 10:48 PM PST -JessicaLucindaCheng,2023-11-14T01:05:40Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1809379016) at 2023-11-13 05:05 PM PST -JessicaLucindaCheng,2023-11-16T18:01:49Z,- JessicaLucindaCheng assigned to issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1797880945) at 2023-11-16 10:01 AM PST -JessicaLucindaCheng,2023-11-16T18:04:28Z,- JessicaLucindaCheng commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1814975529) at 2023-11-16 10:04 AM PST -JessicaLucindaCheng,2023-11-16T18:46:21Z,- JessicaLucindaCheng assigned to issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1797907287) at 2023-11-16 10:46 AM PST -JessicaLucindaCheng,2023-11-16T18:57:38Z,- JessicaLucindaCheng commented on issue: [5876](https://github.com/hackforla/website/issues/5876#issuecomment-1815071419) at 2023-11-16 10:57 AM PST -JessicaLucindaCheng,2023-11-16T18:57:38Z,- JessicaLucindaCheng reopened issue: [5876](https://github.com/hackforla/website/issues/5876#issuecomment-1815071419) at 2023-11-16 10:57 AM PST -JessicaLucindaCheng,2023-11-16T19:00:00Z,- JessicaLucindaCheng unassigned from issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1815033695) at 2023-11-16 11:00 AM PST -JessicaLucindaCheng,2023-11-16T19:20:03Z,- JessicaLucindaCheng commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1815166659) at 2023-11-16 11:20 AM PST -JessicaLucindaCheng,2023-11-16T19:28:41Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1815179287) at 2023-11-16 11:28 AM PST -JessicaLucindaCheng,2023-11-21T01:28:58Z,- JessicaLucindaCheng commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1820069027) at 2023-11-20 05:28 PM PST -JessicaLucindaCheng,2023-11-23T00:22:51Z,- JessicaLucindaCheng opened issue: [5934](https://github.com/hackforla/website/issues/5934) at 2023-11-22 04:22 PM PST -JessicaLucindaCheng,2023-11-23T00:38:42Z,- JessicaLucindaCheng commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1823697447) at 2023-11-22 04:38 PM PST -JessicaLucindaCheng,2023-11-23T01:05:45Z,- JessicaLucindaCheng assigned to issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1823697447) at 2023-11-22 05:05 PM PST -JessicaLucindaCheng,2023-11-23T01:14:25Z,- JessicaLucindaCheng commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1823715121) at 2023-11-22 05:14 PM PST -JessicaLucindaCheng,2023-11-26T17:29:17Z,- JessicaLucindaCheng commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1826842099) at 2023-11-26 09:29 AM PST -JessicaLucindaCheng,2023-11-28T01:35:02Z,- JessicaLucindaCheng closed issue as completed: [5824](https://github.com/hackforla/website/issues/5824#event-11077764679) at 2023-11-27 05:35 PM PST -JessicaLucindaCheng,2023-11-28T01:38:33Z,- JessicaLucindaCheng closed issue as completed: [5825](https://github.com/hackforla/website/issues/5825#event-11077781515) at 2023-11-27 05:38 PM PST -JessicaLucindaCheng,2023-11-28T01:40:18Z,- JessicaLucindaCheng commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1828924951) at 2023-11-27 05:40 PM PST -JessicaLucindaCheng,2023-11-28T02:15:11Z,- JessicaLucindaCheng assigned to issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-1548546245) at 2023-11-27 06:15 PM PST -JessicaLucindaCheng,2023-11-28T02:15:59Z,- JessicaLucindaCheng assigned to issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1457214908) at 2023-11-27 06:15 PM PST -JessicaLucindaCheng,2023-11-28T02:19:12Z,- JessicaLucindaCheng assigned to issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1797707262) at 2023-11-27 06:19 PM PST -JessicaLucindaCheng,2023-11-28T02:20:19Z,- JessicaLucindaCheng assigned to issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1597919148) at 2023-11-27 06:20 PM PST -JessicaLucindaCheng,2023-11-28T02:21:09Z,- JessicaLucindaCheng assigned to issue: [4678](https://github.com/hackforla/website/issues/4678) at 2023-11-27 06:21 PM PST -JessicaLucindaCheng,2023-11-28T02:21:28Z,- JessicaLucindaCheng assigned to issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1577789253) at 2023-11-27 06:21 PM PST -JessicaLucindaCheng,2023-11-28T02:21:57Z,- JessicaLucindaCheng assigned to issue: [4543](https://github.com/hackforla/website/issues/4543) at 2023-11-27 06:21 PM PST -JessicaLucindaCheng,2023-11-28T02:22:50Z,- JessicaLucindaCheng assigned to issue: [4542](https://github.com/hackforla/website/issues/4542#issuecomment-1512180236) at 2023-11-27 06:22 PM PST -JessicaLucindaCheng,2023-11-28T02:22:57Z,- JessicaLucindaCheng assigned to issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1786233317) at 2023-11-27 06:22 PM PST -JessicaLucindaCheng,2023-11-28T02:23:30Z,- JessicaLucindaCheng assigned to issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1776169369) at 2023-11-27 06:23 PM PST -JessicaLucindaCheng,2023-11-28T02:25:36Z,- JessicaLucindaCheng assigned to issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1797822821) at 2023-11-27 06:25 PM PST -JessicaLucindaCheng,2023-11-28T02:38:03Z,- JessicaLucindaCheng opened issue: [5938](https://github.com/hackforla/website/issues/5938) at 2023-11-27 06:38 PM PST -JessicaLucindaCheng,2023-11-28T02:38:04Z,- JessicaLucindaCheng assigned to issue: [5938](https://github.com/hackforla/website/issues/5938) at 2023-11-27 06:38 PM PST -JessicaLucindaCheng,2023-11-28T02:47:45Z,- JessicaLucindaCheng commented on issue: [5938](https://github.com/hackforla/website/issues/5938#issuecomment-1828974651) at 2023-11-27 06:47 PM PST -JessicaLucindaCheng,2023-11-28T03:25:46Z,- JessicaLucindaCheng assigned to issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1828924951) at 2023-11-27 07:25 PM PST -JessicaLucindaCheng,2023-11-29T03:37:49Z,- JessicaLucindaCheng commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1831164896) at 2023-11-28 07:37 PM PST -JessicaLucindaCheng,2023-11-29T04:04:07Z,- JessicaLucindaCheng commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1831182516) at 2023-11-28 08:04 PM PST -JessicaLucindaCheng,2023-11-29T04:13:30Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1831188413) at 2023-11-28 08:13 PM PST -JessicaLucindaCheng,2023-11-29T04:36:59Z,- JessicaLucindaCheng closed issue as completed: [5786](https://github.com/hackforla/website/issues/5786#event-11091506593) at 2023-11-28 08:36 PM PST -JessicaLucindaCheng,2023-11-29T04:38:34Z,- JessicaLucindaCheng commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1831204601) at 2023-11-28 08:38 PM PST -JessicaLucindaCheng,2023-11-29T04:40:43Z,- JessicaLucindaCheng reopened issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1831204601) at 2023-11-28 08:40 PM PST -JessicaLucindaCheng,2023-11-29T04:43:38Z,- JessicaLucindaCheng reopened issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1829011355) at 2023-11-28 08:43 PM PST -JessicaLucindaCheng,2023-11-30T04:40:28Z,- JessicaLucindaCheng closed issue as completed: [5825](https://github.com/hackforla/website/issues/5825#event-11104114250) at 2023-11-29 08:40 PM PST -JessicaLucindaCheng,2023-12-06T16:44:55Z,- JessicaLucindaCheng opened issue: [5973](https://github.com/hackforla/website/issues/5973) at 2023-12-06 08:44 AM PST -JessicaLucindaCheng,2023-12-06T16:50:58Z,- JessicaLucindaCheng commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1843281251) at 2023-12-06 08:50 AM PST -JessicaLucindaCheng,2023-12-06T17:24:50Z,- JessicaLucindaCheng commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1843338087) at 2023-12-06 09:24 AM PST -JessicaLucindaCheng,2023-12-07T04:01:44Z,- JessicaLucindaCheng commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1844248212) at 2023-12-06 08:01 PM PST -JessicaLucindaCheng,2023-12-08T01:58:06Z,- JessicaLucindaCheng commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1846438175) at 2023-12-07 05:58 PM PST -JessicaLucindaCheng,2024-01-03T01:18:23Z,- JessicaLucindaCheng unassigned from issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1843281251) at 2024-01-02 05:18 PM PST -JessicaLucindaCheng,2024-01-03T01:25:59Z,- JessicaLucindaCheng commented on issue: [5844](https://github.com/hackforla/website/issues/5844#issuecomment-1874749502) at 2024-01-02 05:25 PM PST -JessicaLucindaCheng,2024-01-03T01:39:16Z,- JessicaLucindaCheng assigned to issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1871759182) at 2024-01-02 05:39 PM PST -JessicaLucindaCheng,2024-01-03T01:43:34Z,- JessicaLucindaCheng commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1874756785) at 2024-01-02 05:43 PM PST -JessicaLucindaCheng,2024-01-03T01:45:29Z,- JessicaLucindaCheng commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1874757655) at 2024-01-02 05:45 PM PST -JessicaLucindaCheng,2024-01-05T01:29:19Z,- JessicaLucindaCheng assigned to issue: [6060](https://github.com/hackforla/website/issues/6060) at 2024-01-04 05:29 PM PST -JessicaLucindaCheng,2024-01-05T01:29:55Z,- JessicaLucindaCheng commented on issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1877987662) at 2024-01-04 05:29 PM PST -JessicaLucindaCheng,2024-01-05T01:46:53Z,- JessicaLucindaCheng commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1877998441) at 2024-01-04 05:46 PM PST -JessicaLucindaCheng,2024-01-05T01:51:33Z,- JessicaLucindaCheng commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1878002250) at 2024-01-04 05:51 PM PST -JessicaLucindaCheng,2024-01-05T02:17:58Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1878031328) at 2024-01-04 06:17 PM PST -JessicaLucindaCheng,2024-01-05T02:43:49Z,- JessicaLucindaCheng opened issue: [6064](https://github.com/hackforla/website/issues/6064) at 2024-01-04 06:43 PM PST -JessicaLucindaCheng,2024-01-05T02:53:24Z,- JessicaLucindaCheng opened issue: [6065](https://github.com/hackforla/website/issues/6065) at 2024-01-04 06:53 PM PST -JessicaLucindaCheng,2024-01-05T02:59:49Z,- JessicaLucindaCheng commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1878056900) at 2024-01-04 06:59 PM PST -JessicaLucindaCheng,2024-01-05T03:08:15Z,- JessicaLucindaCheng unassigned from issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1878056900) at 2024-01-04 07:08 PM PST -JessicaLucindaCheng,2024-01-05T03:08:50Z,- JessicaLucindaCheng commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1878062475) at 2024-01-04 07:08 PM PST -JessicaLucindaCheng,2024-01-07T21:16:47Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1880176133) at 2024-01-07 01:16 PM PST -JessicaLucindaCheng,2024-01-07T21:25:51Z,- JessicaLucindaCheng opened issue: [6074](https://github.com/hackforla/website/issues/6074) at 2024-01-07 01:25 PM PST -JessicaLucindaCheng,2024-01-07T21:32:18Z,- JessicaLucindaCheng commented on issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1880181220) at 2024-01-07 01:32 PM PST -JessicaLucindaCheng,2024-01-07T21:32:54Z,- JessicaLucindaCheng unassigned from issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1880181220) at 2024-01-07 01:32 PM PST -JessicaLucindaCheng,2024-01-07T21:34:18Z,- JessicaLucindaCheng commented on issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1880181757) at 2024-01-07 01:34 PM PST -JessicaLucindaCheng,2024-01-08T07:44:03Z,- JessicaLucindaCheng opened issue: [6078](https://github.com/hackforla/website/issues/6078) at 2024-01-07 11:44 PM PST -JessicaLucindaCheng,2024-01-08T07:44:04Z,- JessicaLucindaCheng assigned to issue: [6078](https://github.com/hackforla/website/issues/6078) at 2024-01-07 11:44 PM PST -JessicaLucindaCheng,2024-01-08T07:49:01Z,- JessicaLucindaCheng commented on issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1880516166) at 2024-01-07 11:49 PM PST -JessicaLucindaCheng,2024-01-08T23:56:34Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1882004263) at 2024-01-08 03:56 PM PST -JessicaLucindaCheng,2024-01-09T00:15:36Z,- JessicaLucindaCheng unassigned from issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1880516166) at 2024-01-08 04:15 PM PST -JessicaLucindaCheng,2024-01-14T15:27:43Z,- JessicaLucindaCheng assigned to issue: [6101](https://github.com/hackforla/website/issues/6101) at 2024-01-14 07:27 AM PST -JessicaLucindaCheng,2024-01-14T15:31:30Z,- JessicaLucindaCheng commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1890983903) at 2024-01-14 07:31 AM PST -JessicaLucindaCheng,2024-01-14T15:38:01Z,- JessicaLucindaCheng commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1890985664) at 2024-01-14 07:38 AM PST -JessicaLucindaCheng,2024-01-14T15:40:46Z,- JessicaLucindaCheng commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1890986311) at 2024-01-14 07:40 AM PST -JessicaLucindaCheng,2024-01-14T15:41:05Z,- JessicaLucindaCheng commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1890986393) at 2024-01-14 07:41 AM PST -JessicaLucindaCheng,2024-01-14T15:41:45Z,- JessicaLucindaCheng closed issue as completed: [5786](https://github.com/hackforla/website/issues/5786#event-11481581046) at 2024-01-14 07:41 AM PST -JessicaLucindaCheng,2024-01-14T16:50:31Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1891002960) at 2024-01-14 08:50 AM PST -JessicaLucindaCheng,2024-01-14T17:19:45Z,- JessicaLucindaCheng opened issue: [6104](https://github.com/hackforla/website/issues/6104) at 2024-01-14 09:19 AM PST -JessicaLucindaCheng,2024-01-14T17:19:47Z,- JessicaLucindaCheng assigned to issue: [6104](https://github.com/hackforla/website/issues/6104) at 2024-01-14 09:19 AM PST -JessicaLucindaCheng,2024-01-14T17:26:18Z,- JessicaLucindaCheng commented on issue: [6104](https://github.com/hackforla/website/issues/6104#issuecomment-1891011989) at 2024-01-14 09:26 AM PST -JessicaLucindaCheng,2024-01-14T17:33:12Z,- JessicaLucindaCheng commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1891013482) at 2024-01-14 09:33 AM PST -JessicaLucindaCheng,2024-01-14T17:36:42Z,- JessicaLucindaCheng commented on issue: [6104](https://github.com/hackforla/website/issues/6104#issuecomment-1891014194) at 2024-01-14 09:36 AM PST -JessicaLucindaCheng,2024-01-14T18:47:34Z,- JessicaLucindaCheng commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1891038519) at 2024-01-14 10:47 AM PST -JessicaLucindaCheng,2024-01-14T20:11:16Z,- JessicaLucindaCheng opened pull request: [6109](https://github.com/hackforla/website/pull/6109) at 2024-01-14 12:11 PM PST -JessicaLucindaCheng,2024-01-14T22:02:20Z,- JessicaLucindaCheng commented on issue: [5938](https://github.com/hackforla/website/issues/5938#issuecomment-1891085074) at 2024-01-14 02:02 PM PST -JessicaLucindaCheng,2024-01-14T23:26:35Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1891109402) at 2024-01-14 03:26 PM PST -JessicaLucindaCheng,2024-01-15T17:45:11Z,- JessicaLucindaCheng assigned to issue: [6114](https://github.com/hackforla/website/issues/6114) at 2024-01-15 09:45 AM PST -JessicaLucindaCheng,2024-01-15T17:45:29Z,- JessicaLucindaCheng unassigned from issue: [6114](https://github.com/hackforla/website/issues/6114) at 2024-01-15 09:45 AM PST -JessicaLucindaCheng,2024-01-15T22:12:17Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1892817770) at 2024-01-15 02:12 PM PST -JessicaLucindaCheng,2024-01-16T03:09:20Z,- JessicaLucindaCheng unassigned from issue: [5938](https://github.com/hackforla/website/issues/5938#issuecomment-1891085074) at 2024-01-15 07:09 PM PST -JessicaLucindaCheng,2024-01-16T03:13:32Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1893008130) at 2024-01-15 07:13 PM PST -JessicaLucindaCheng,2024-01-21T13:00:04Z,- JessicaLucindaCheng assigned to issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1880181757) at 2024-01-21 05:00 AM PST -JessicaLucindaCheng,2024-01-21T13:00:37Z,- JessicaLucindaCheng closed issue as completed: [6060](https://github.com/hackforla/website/issues/6060#event-11549036906) at 2024-01-21 05:00 AM PST -JessicaLucindaCheng,2024-01-21T13:02:45Z,- JessicaLucindaCheng commented on issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1902622538) at 2024-01-21 05:02 AM PST -JessicaLucindaCheng,2024-01-21T13:32:59Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1902631037) at 2024-01-21 05:32 AM PST -JessicaLucindaCheng,2024-01-21T13:50:28Z,- JessicaLucindaCheng unassigned from issue: [6104](https://github.com/hackforla/website/issues/6104#issuecomment-1891014194) at 2024-01-21 05:50 AM PST -JessicaLucindaCheng,2024-01-21T13:51:05Z,- JessicaLucindaCheng unassigned from issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1895394446) at 2024-01-21 05:51 AM PST -JessicaLucindaCheng,2024-01-21T13:57:34Z,- JessicaLucindaCheng commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1902637660) at 2024-01-21 05:57 AM PST -JessicaLucindaCheng,2024-01-21T14:35:58Z,- JessicaLucindaCheng opened issue: [6137](https://github.com/hackforla/website/issues/6137) at 2024-01-21 06:35 AM PST -JessicaLucindaCheng,2024-01-21T15:30:19Z,- JessicaLucindaCheng opened issue: [6138](https://github.com/hackforla/website/issues/6138) at 2024-01-21 07:30 AM PST -JessicaLucindaCheng,2024-01-21T15:30:20Z,- JessicaLucindaCheng assigned to issue: [6138](https://github.com/hackforla/website/issues/6138) at 2024-01-21 07:30 AM PST -JessicaLucindaCheng,2024-01-21T16:05:59Z,- JessicaLucindaCheng opened issue: [6139](https://github.com/hackforla/website/issues/6139) at 2024-01-21 08:05 AM PST -JessicaLucindaCheng,2024-01-21T16:06:00Z,- JessicaLucindaCheng assigned to issue: [6139](https://github.com/hackforla/website/issues/6139) at 2024-01-21 08:06 AM PST -JessicaLucindaCheng,2024-01-21T16:10:03Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1902682183) at 2024-01-21 08:10 AM PST -JessicaLucindaCheng,2024-01-21T16:20:01Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1902684772) at 2024-01-21 08:20 AM PST -JessicaLucindaCheng,2024-01-21T16:21:37Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1902685222) at 2024-01-21 08:21 AM PST -JessicaLucindaCheng,2024-01-21T16:30:04Z,- JessicaLucindaCheng commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-1902687468) at 2024-01-21 08:30 AM PST -JessicaLucindaCheng,2024-01-21T16:32:52Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1902688245) at 2024-01-21 08:32 AM PST -JessicaLucindaCheng,2024-01-21T16:33:26Z,- JessicaLucindaCheng unassigned from issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1902688245) at 2024-01-21 08:33 AM PST -JessicaLucindaCheng,2024-01-21T16:36:48Z,- JessicaLucindaCheng commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1902689468) at 2024-01-21 08:36 AM PST -JessicaLucindaCheng,2024-01-21T17:21:07Z,- JessicaLucindaCheng unassigned from issue: [4678](https://github.com/hackforla/website/issues/4678) at 2024-01-21 09:21 AM PST -JessicaLucindaCheng,2024-01-21T17:30:40Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1902703611) at 2024-01-21 09:30 AM PST -JessicaLucindaCheng,2024-01-21T17:51:26Z,- JessicaLucindaCheng unassigned from issue: [4543](https://github.com/hackforla/website/issues/4543#issuecomment-1828956565) at 2024-01-21 09:51 AM PST -JessicaLucindaCheng,2024-01-22T00:14:35Z,- JessicaLucindaCheng commented on issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1902817887) at 2024-01-21 04:14 PM PST -JessicaLucindaCheng,2024-01-22T01:02:41Z,- JessicaLucindaCheng unassigned from issue: [4542](https://github.com/hackforla/website/issues/4542#issuecomment-1828957262) at 2024-01-21 05:02 PM PST -JessicaLucindaCheng,2024-01-22T01:32:57Z,- JessicaLucindaCheng unassigned from issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1776169369) at 2024-01-21 05:32 PM PST -JessicaLucindaCheng,2024-01-22T01:38:39Z,- JessicaLucindaCheng commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1902867257) at 2024-01-21 05:38 PM PST -JessicaLucindaCheng,2024-01-22T01:59:34Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1902883015) at 2024-01-21 05:59 PM PST -JessicaLucindaCheng,2024-01-23T00:06:49Z,- JessicaLucindaCheng opened issue: [6144](https://github.com/hackforla/website/issues/6144) at 2024-01-22 04:06 PM PST -JessicaLucindaCheng,2024-01-23T00:06:50Z,- JessicaLucindaCheng assigned to issue: [6144](https://github.com/hackforla/website/issues/6144) at 2024-01-22 04:06 PM PST -JessicaLucindaCheng,2024-01-23T00:07:36Z,- JessicaLucindaCheng commented on issue: [6144](https://github.com/hackforla/website/issues/6144#issuecomment-1905056000) at 2024-01-22 04:07 PM PST -JessicaLucindaCheng,2024-01-23T01:41:11Z,- JessicaLucindaCheng commented on issue: [4364](https://github.com/hackforla/website/issues/4364#issuecomment-1905138580) at 2024-01-22 05:41 PM PST -JessicaLucindaCheng,2024-01-23T01:46:09Z,- JessicaLucindaCheng commented on issue: [6142](https://github.com/hackforla/website/issues/6142#issuecomment-1905142473) at 2024-01-22 05:46 PM PST -JessicaLucindaCheng,2024-01-24T04:37:56Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1907363566) at 2024-01-23 08:37 PM PST -JessicaLucindaCheng,2024-01-25T04:15:21Z,- JessicaLucindaCheng reopened issue: [6139](https://github.com/hackforla/website/issues/6139#event-11591373569) at 2024-01-24 08:15 PM PST -JessicaLucindaCheng,2024-01-25T04:16:15Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1909323220) at 2024-01-24 08:16 PM PST -JessicaLucindaCheng,2024-01-25T23:02:56Z,- JessicaLucindaCheng commented on issue: [5850](https://github.com/hackforla/website/issues/5850#issuecomment-1911134639) at 2024-01-25 03:02 PM PST -JessicaLucindaCheng,2024-01-25T23:08:35Z,- JessicaLucindaCheng assigned to issue: [6159](https://github.com/hackforla/website/issues/6159) at 2024-01-25 03:08 PM PST -JessicaLucindaCheng,2024-01-25T23:09:39Z,- JessicaLucindaCheng commented on issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1911141581) at 2024-01-25 03:09 PM PST -JessicaLucindaCheng,2024-01-25T23:10:56Z,- JessicaLucindaCheng assigned to issue: [6160](https://github.com/hackforla/website/issues/6160) at 2024-01-25 03:10 PM PST -JessicaLucindaCheng,2024-01-25T23:11:06Z,- JessicaLucindaCheng commented on issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1911142990) at 2024-01-25 03:11 PM PST -JessicaLucindaCheng,2024-01-26T00:11:54Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1911202042) at 2024-01-25 04:11 PM PST -JessicaLucindaCheng,2024-01-26T00:17:35Z,- JessicaLucindaCheng opened issue: [6165](https://github.com/hackforla/website/issues/6165) at 2024-01-25 04:17 PM PST -JessicaLucindaCheng,2024-01-26T00:17:36Z,- JessicaLucindaCheng assigned to issue: [6165](https://github.com/hackforla/website/issues/6165) at 2024-01-25 04:17 PM PST -JessicaLucindaCheng,2024-01-26T00:33:36Z,- JessicaLucindaCheng unassigned from issue: [6165](https://github.com/hackforla/website/issues/6165#issuecomment-1911207771) at 2024-01-25 04:33 PM PST -JessicaLucindaCheng,2024-01-26T00:45:28Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1911232951) at 2024-01-25 04:45 PM PST -JessicaLucindaCheng,2024-01-26T00:58:20Z,- JessicaLucindaCheng opened issue: [6166](https://github.com/hackforla/website/issues/6166) at 2024-01-25 04:58 PM PST -JessicaLucindaCheng,2024-01-26T01:06:39Z,- JessicaLucindaCheng commented on issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1911248623) at 2024-01-25 05:06 PM PST -JessicaLucindaCheng,2024-01-26T01:09:00Z,- JessicaLucindaCheng commented on issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1911251340) at 2024-01-25 05:09 PM PST -JessicaLucindaCheng,2024-01-26T01:12:39Z,- JessicaLucindaCheng unassigned from issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1911251340) at 2024-01-25 05:12 PM PST -JessicaLucindaCheng,2024-01-26T03:58:50Z,- JessicaLucindaCheng assigned to issue: [6183](https://github.com/hackforla/website/issues/6183) at 2024-01-25 07:58 PM PST -JessicaLucindaCheng,2024-01-26T03:59:37Z,- JessicaLucindaCheng commented on issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1911443571) at 2024-01-25 07:59 PM PST -JessicaLucindaCheng,2024-01-26T04:01:14Z,- JessicaLucindaCheng opened issue: [6184](https://github.com/hackforla/website/issues/6184) at 2024-01-25 08:01 PM PST -JessicaLucindaCheng,2024-01-26T04:01:15Z,- JessicaLucindaCheng assigned to issue: [6184](https://github.com/hackforla/website/issues/6184) at 2024-01-25 08:01 PM PST -JessicaLucindaCheng,2024-01-26T04:44:42Z,- JessicaLucindaCheng commented on issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1911472384) at 2024-01-25 08:44 PM PST -JessicaLucindaCheng,2024-01-28T09:57:51Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1913539013) at 2024-01-28 01:57 AM PST -JessicaLucindaCheng,2024-01-28T10:15:01Z,- JessicaLucindaCheng commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1913543815) at 2024-01-28 02:15 AM PST -JessicaLucindaCheng,2024-01-28T10:56:23Z,- JessicaLucindaCheng commented on issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1913554136) at 2024-01-28 02:56 AM PST -JessicaLucindaCheng,2024-01-28T10:57:42Z,- JessicaLucindaCheng commented on issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1913554425) at 2024-01-28 02:57 AM PST -JessicaLucindaCheng,2024-01-28T11:01:26Z,- JessicaLucindaCheng unassigned from issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1913554425) at 2024-01-28 03:01 AM PST -JessicaLucindaCheng,2024-01-28T11:03:14Z,- JessicaLucindaCheng unassigned from issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1911472384) at 2024-01-28 03:03 AM PST -JessicaLucindaCheng,2024-01-28T11:15:06Z,- JessicaLucindaCheng opened issue: [6189](https://github.com/hackforla/website/issues/6189) at 2024-01-28 03:15 AM PST -JessicaLucindaCheng,2024-01-28T11:22:10Z,- JessicaLucindaCheng commented on issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1913560578) at 2024-01-28 03:22 AM PST -JessicaLucindaCheng,2024-01-28T11:23:05Z,- JessicaLucindaCheng commented on issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1913560800) at 2024-01-28 03:23 AM PST -JessicaLucindaCheng,2024-01-28T11:23:25Z,- JessicaLucindaCheng unassigned from issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1913560800) at 2024-01-28 03:23 AM PST -JessicaLucindaCheng,2024-01-29T18:38:40Z,- JessicaLucindaCheng commented on issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1915338283) at 2024-01-29 10:38 AM PST -JessicaLucindaCheng,2024-01-29T18:38:59Z,- JessicaLucindaCheng assigned to issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1915338283) at 2024-01-29 10:38 AM PST -JessicaLucindaCheng,2024-01-29T18:48:32Z,- JessicaLucindaCheng commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1915352958) at 2024-01-29 10:48 AM PST -JessicaLucindaCheng,2024-01-29T18:52:10Z,- JessicaLucindaCheng commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-1915358591) at 2024-01-29 10:52 AM PST -JessicaLucindaCheng,2024-01-29T19:10:15Z,- JessicaLucindaCheng commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-1915385673) at 2024-01-29 11:10 AM PST -JessicaLucindaCheng,2024-01-29T19:12:10Z,- JessicaLucindaCheng commented on issue: [6144](https://github.com/hackforla/website/issues/6144#issuecomment-1915388469) at 2024-01-29 11:12 AM PST -JessicaLucindaCheng,2024-01-29T19:15:24Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1915393989) at 2024-01-29 11:15 AM PST -JessicaLucindaCheng,2024-01-30T02:50:19Z,- JessicaLucindaCheng assigned to issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1566085078) at 2024-01-29 06:50 PM PST -JessicaLucindaCheng,2024-01-30T03:03:56Z,- JessicaLucindaCheng commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1915990516) at 2024-01-29 07:03 PM PST -JessicaLucindaCheng,2024-01-30T03:17:44Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1916000411) at 2024-01-29 07:17 PM PST -JessicaLucindaCheng,2024-02-04T09:36:36Z,- JessicaLucindaCheng opened issue: [6219](https://github.com/hackforla/website/issues/6219) at 2024-02-04 01:36 AM PST -JessicaLucindaCheng,2024-02-04T09:36:37Z,- JessicaLucindaCheng assigned to issue: [6219](https://github.com/hackforla/website/issues/6219) at 2024-02-04 01:36 AM PST -JessicaLucindaCheng,2024-02-04T09:45:37Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925663465) at 2024-02-04 01:45 AM PST -JessicaLucindaCheng,2024-02-04T09:57:32Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925670289) at 2024-02-04 01:57 AM PST -JessicaLucindaCheng,2024-02-04T13:26:27Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925749497) at 2024-02-04 05:26 AM PST -JessicaLucindaCheng,2024-02-04T14:49:32Z,- JessicaLucindaCheng assigned to issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1913560800) at 2024-02-04 06:49 AM PST -JessicaLucindaCheng,2024-02-04T14:49:52Z,- JessicaLucindaCheng closed issue as completed: [6183](https://github.com/hackforla/website/issues/6183#event-11695694623) at 2024-02-04 06:49 AM PST -JessicaLucindaCheng,2024-02-04T14:50:47Z,- JessicaLucindaCheng commented on issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1925782762) at 2024-02-04 06:50 AM PST -JessicaLucindaCheng,2024-02-04T14:52:46Z,- JessicaLucindaCheng assigned to issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1878062475) at 2024-02-04 06:52 AM PST -JessicaLucindaCheng,2024-02-04T14:53:22Z,- JessicaLucindaCheng closed issue as completed: [6018](https://github.com/hackforla/website/issues/6018#event-11695701519) at 2024-02-04 06:53 AM PST -JessicaLucindaCheng,2024-02-04T14:59:38Z,- JessicaLucindaCheng commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1925785023) at 2024-02-04 06:59 AM PST -JessicaLucindaCheng,2024-02-04T15:08:40Z,- JessicaLucindaCheng commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1925787618) at 2024-02-04 07:08 AM PST -JessicaLucindaCheng,2024-02-04T15:13:29Z,- JessicaLucindaCheng assigned to issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1925787618) at 2024-02-04 07:13 AM PST -JessicaLucindaCheng,2024-02-04T15:15:38Z,- JessicaLucindaCheng assigned to issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1902637660) at 2024-02-04 07:15 AM PST -JessicaLucindaCheng,2024-02-04T15:16:04Z,- JessicaLucindaCheng closed issue as completed: [6101](https://github.com/hackforla/website/issues/6101#event-11695745785) at 2024-02-04 07:16 AM PST -JessicaLucindaCheng,2024-02-04T15:17:18Z,- JessicaLucindaCheng commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1925790624) at 2024-02-04 07:17 AM PST -JessicaLucindaCheng,2024-02-04T15:43:24Z,- JessicaLucindaCheng commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1925799436) at 2024-02-04 07:43 AM PST -JessicaLucindaCheng,2024-02-04T15:45:48Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1925800183) at 2024-02-04 07:45 AM PST -JessicaLucindaCheng,2024-02-04T16:17:59Z,- JessicaLucindaCheng commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1925810548) at 2024-02-04 08:17 AM PST -JessicaLucindaCheng,2024-02-04T16:20:18Z,- JessicaLucindaCheng unassigned from issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1925810548) at 2024-02-04 08:20 AM PST -JessicaLucindaCheng,2024-02-04T16:33:28Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1925822585) at 2024-02-04 08:33 AM PST -JessicaLucindaCheng,2024-02-04T17:02:56Z,- JessicaLucindaCheng opened issue: [6220](https://github.com/hackforla/website/issues/6220) at 2024-02-04 09:02 AM PST -JessicaLucindaCheng,2024-02-04T17:18:51Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1925844555) at 2024-02-04 09:18 AM PST -JessicaLucindaCheng,2024-02-04T17:19:27Z,- JessicaLucindaCheng assigned to issue: [6220](https://github.com/hackforla/website/issues/6220) at 2024-02-04 09:19 AM PST -JessicaLucindaCheng,2024-02-04T17:23:25Z,- JessicaLucindaCheng commented on issue: [6220](https://github.com/hackforla/website/issues/6220#issuecomment-1925847696) at 2024-02-04 09:23 AM PST -JessicaLucindaCheng,2024-02-04T17:32:31Z,- JessicaLucindaCheng opened issue: [6221](https://github.com/hackforla/website/issues/6221) at 2024-02-04 09:32 AM PST -JessicaLucindaCheng,2024-02-04T17:32:32Z,- JessicaLucindaCheng assigned to issue: [6221](https://github.com/hackforla/website/issues/6221) at 2024-02-04 09:32 AM PST -JessicaLucindaCheng,2024-02-04T17:32:42Z,- JessicaLucindaCheng commented on issue: [6221](https://github.com/hackforla/website/issues/6221#issuecomment-1925850029) at 2024-02-04 09:32 AM PST -JessicaLucindaCheng,2024-02-04T17:43:20Z,- JessicaLucindaCheng opened issue: [6222](https://github.com/hackforla/website/issues/6222) at 2024-02-04 09:43 AM PST -JessicaLucindaCheng,2024-02-04T17:43:21Z,- JessicaLucindaCheng assigned to issue: [6222](https://github.com/hackforla/website/issues/6222) at 2024-02-04 09:43 AM PST -JessicaLucindaCheng,2024-02-04T17:43:33Z,- JessicaLucindaCheng commented on issue: [6222](https://github.com/hackforla/website/issues/6222#issuecomment-1925860191) at 2024-02-04 09:43 AM PST -JessicaLucindaCheng,2024-02-04T17:55:06Z,- JessicaLucindaCheng opened issue: [6223](https://github.com/hackforla/website/issues/6223) at 2024-02-04 09:55 AM PST -JessicaLucindaCheng,2024-02-04T17:55:07Z,- JessicaLucindaCheng assigned to issue: [6223](https://github.com/hackforla/website/issues/6223) at 2024-02-04 09:55 AM PST -JessicaLucindaCheng,2024-02-04T17:55:26Z,- JessicaLucindaCheng commented on issue: [6223](https://github.com/hackforla/website/issues/6223#issuecomment-1925864621) at 2024-02-04 09:55 AM PST -JessicaLucindaCheng,2024-02-05T08:13:25Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1926430477) at 2024-02-05 12:13 AM PST -JessicaLucindaCheng,2024-02-05T08:19:46Z,- JessicaLucindaCheng commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1926439102) at 2024-02-05 12:19 AM PST -JessicaLucindaCheng,2024-02-05T08:43:00Z,- JessicaLucindaCheng commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-1926474125) at 2024-02-05 12:43 AM PST -JessicaLucindaCheng,2024-02-05T08:49:18Z,- JessicaLucindaCheng commented on issue: [6233](https://github.com/hackforla/website/issues/6233#issuecomment-1926483951) at 2024-02-05 12:49 AM PST -JessicaLucindaCheng,2024-02-05T23:58:53Z,- JessicaLucindaCheng commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1928530197) at 2024-02-05 03:58 PM PST -JessicaLucindaCheng,2024-02-05T23:59:02Z,- JessicaLucindaCheng closed issue as completed: [5627](https://github.com/hackforla/website/issues/5627#event-11711298373) at 2024-02-05 03:59 PM PST -JessicaLucindaCheng,2024-02-05T23:59:14Z,- JessicaLucindaCheng assigned to issue: [5627](https://github.com/hackforla/website/issues/5627#event-11711298373) at 2024-02-05 03:59 PM PST -JessicaLucindaCheng,2024-02-06T00:28:56Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1928559549) at 2024-02-05 04:28 PM PST -JessicaLucindaCheng,2024-02-06T03:04:03Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1928698923) at 2024-02-05 07:04 PM PST -JessicaLucindaCheng,2024-02-07T23:24:34Z,- JessicaLucindaCheng commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1933105852) at 2024-02-07 03:24 PM PST -JessicaLucindaCheng,2024-02-07T23:56:57Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1933134608) at 2024-02-07 03:56 PM PST -JessicaLucindaCheng,2024-02-08T00:51:38Z,- JessicaLucindaCheng unassigned from issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1828952297) at 2024-02-07 04:51 PM PST -JessicaLucindaCheng,2024-02-10T02:08:35Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1936813240) at 2024-02-09 06:08 PM PST -JessicaLucindaCheng,2024-02-11T17:29:20Z,- JessicaLucindaCheng assigned to issue: [6277](https://github.com/hackforla/website/issues/6277) at 2024-02-11 09:29 AM PST -JessicaLucindaCheng,2024-02-11T20:05:11Z,- JessicaLucindaCheng commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-1937854986) at 2024-02-11 12:05 PM PST -JessicaLucindaCheng,2024-02-11T21:48:51Z,- JessicaLucindaCheng commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1937882508) at 2024-02-11 01:48 PM PST -JessicaLucindaCheng,2024-02-11T21:51:54Z,- JessicaLucindaCheng commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1937883463) at 2024-02-11 01:51 PM PST -JessicaLucindaCheng,2024-02-12T13:18:07Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1938665068) at 2024-02-12 05:18 AM PST -JessicaLucindaCheng,2024-02-17T20:35:03Z,- JessicaLucindaCheng assigned to issue: [6285](https://github.com/hackforla/website/issues/6285) at 2024-02-17 12:35 PM PST -JessicaLucindaCheng,2024-02-17T20:40:38Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950303147) at 2024-02-17 12:40 PM PST -JessicaLucindaCheng,2024-02-17T22:13:26Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1950431373) at 2024-02-17 02:13 PM PST -JessicaLucindaCheng,2024-02-17T22:22:33Z,- JessicaLucindaCheng assigned to issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1913554425) at 2024-02-17 02:22 PM PST -JessicaLucindaCheng,2024-02-17T22:22:49Z,- JessicaLucindaCheng closed issue as completed: [6160](https://github.com/hackforla/website/issues/6160#event-11837346947) at 2024-02-17 02:22 PM PST -JessicaLucindaCheng,2024-02-17T22:26:37Z,- JessicaLucindaCheng commented on issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1950450817) at 2024-02-17 02:26 PM PST -JessicaLucindaCheng,2024-02-17T22:42:31Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1950474352) at 2024-02-17 02:42 PM PST -JessicaLucindaCheng,2024-02-18T01:19:54Z,- JessicaLucindaCheng opened issue: [6310](https://github.com/hackforla/website/issues/6310) at 2024-02-17 05:19 PM PST -JessicaLucindaCheng,2024-02-18T01:33:35Z,- JessicaLucindaCheng assigned to issue: [6310](https://github.com/hackforla/website/issues/6310) at 2024-02-17 05:33 PM PST -JessicaLucindaCheng,2024-02-18T01:39:39Z,- JessicaLucindaCheng commented on issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-17 05:39 PM PST -JessicaLucindaCheng,2024-02-18T01:40:59Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950738229) at 2024-02-17 05:40 PM PST -JessicaLucindaCheng,2024-02-18T02:21:36Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950799590) at 2024-02-17 06:21 PM PST -JessicaLucindaCheng,2024-02-18T02:27:54Z,- JessicaLucindaCheng unassigned from issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-17 06:27 PM PST -JessicaLucindaCheng,2024-02-18T02:46:11Z,- JessicaLucindaCheng opened issue: [6311](https://github.com/hackforla/website/issues/6311) at 2024-02-17 06:46 PM PST -JessicaLucindaCheng,2024-02-18T03:11:58Z,- JessicaLucindaCheng opened issue: [6312](https://github.com/hackforla/website/issues/6312) at 2024-02-17 07:11 PM PST -JessicaLucindaCheng,2024-02-18T03:22:27Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950888376) at 2024-02-17 07:22 PM PST -JessicaLucindaCheng,2024-02-18T03:23:11Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950889403) at 2024-02-17 07:23 PM PST -JessicaLucindaCheng,2024-02-18T03:39:08Z,- JessicaLucindaCheng opened issue: [6313](https://github.com/hackforla/website/issues/6313) at 2024-02-17 07:39 PM PST -JessicaLucindaCheng,2024-02-18T03:44:31Z,- JessicaLucindaCheng assigned to issue: [6313](https://github.com/hackforla/website/issues/6313) at 2024-02-17 07:44 PM PST -JessicaLucindaCheng,2024-02-18T03:55:10Z,- JessicaLucindaCheng commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1950936480) at 2024-02-17 07:55 PM PST -JessicaLucindaCheng,2024-02-18T16:38:34Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1951380218) at 2024-02-18 08:38 AM PST -JessicaLucindaCheng,2024-02-18T17:02:06Z,- JessicaLucindaCheng opened issue: [6317](https://github.com/hackforla/website/issues/6317) at 2024-02-18 09:02 AM PST -JessicaLucindaCheng,2024-02-18T17:35:47Z,- JessicaLucindaCheng unassigned from issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1950936480) at 2024-02-18 09:35 AM PST -JessicaLucindaCheng,2024-02-18T17:41:39Z,- JessicaLucindaCheng commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1951395596) at 2024-02-18 09:41 AM PST -JessicaLucindaCheng,2024-02-19T14:50:41Z,- JessicaLucindaCheng commented on issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1952611315) at 2024-02-19 06:50 AM PST -JessicaLucindaCheng,2024-02-19T14:51:50Z,- JessicaLucindaCheng commented on issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1952613438) at 2024-02-19 06:51 AM PST -JessicaLucindaCheng,2024-02-19T16:25:50Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1952819485) at 2024-02-19 08:25 AM PST -JessicaLucindaCheng,2024-02-20T02:13:03Z,- JessicaLucindaCheng opened issue: [6323](https://github.com/hackforla/website/issues/6323) at 2024-02-19 06:13 PM PST -JessicaLucindaCheng,2024-02-20T02:13:04Z,- JessicaLucindaCheng assigned to issue: [6323](https://github.com/hackforla/website/issues/6323) at 2024-02-19 06:13 PM PST -JessicaLucindaCheng,2024-02-20T02:14:44Z,- JessicaLucindaCheng commented on issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1953378786) at 2024-02-19 06:14 PM PST -JessicaLucindaCheng,2024-02-25T02:11:24Z,- JessicaLucindaCheng commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1962788469) at 2024-02-24 06:11 PM PST -JessicaLucindaCheng,2024-02-25T02:14:08Z,- JessicaLucindaCheng assigned to issue: [6354](https://github.com/hackforla/website/issues/6354) at 2024-02-24 06:14 PM PST -JessicaLucindaCheng,2024-02-25T02:15:58Z,- JessicaLucindaCheng commented on issue: [6354](https://github.com/hackforla/website/issues/6354#issuecomment-1962789298) at 2024-02-24 06:15 PM PST -JessicaLucindaCheng,2024-02-25T02:17:44Z,- JessicaLucindaCheng assigned to issue: [6364](https://github.com/hackforla/website/issues/6364) at 2024-02-24 06:17 PM PST -JessicaLucindaCheng,2024-02-25T02:18:30Z,- JessicaLucindaCheng commented on issue: [6364](https://github.com/hackforla/website/issues/6364#issuecomment-1962789652) at 2024-02-24 06:18 PM PST -JessicaLucindaCheng,2024-02-25T21:35:30Z,- JessicaLucindaCheng opened issue: [6372](https://github.com/hackforla/website/issues/6372) at 2024-02-25 01:35 PM PST -JessicaLucindaCheng,2024-02-25T21:45:31Z,- JessicaLucindaCheng commented on issue: [6354](https://github.com/hackforla/website/issues/6354#issuecomment-1963071508) at 2024-02-25 01:45 PM PST -JessicaLucindaCheng,2024-02-25T21:58:23Z,- JessicaLucindaCheng opened issue: [6373](https://github.com/hackforla/website/issues/6373) at 2024-02-25 01:58 PM PST -JessicaLucindaCheng,2024-02-25T22:06:27Z,- JessicaLucindaCheng commented on issue: [6364](https://github.com/hackforla/website/issues/6364#issuecomment-1963076825) at 2024-02-25 02:06 PM PST -JessicaLucindaCheng,2024-02-25T22:33:16Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1963084560) at 2024-02-25 02:33 PM PST -JessicaLucindaCheng,2024-02-26T21:48:51Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1965354956) at 2024-02-26 01:48 PM PST -JessicaLucindaCheng,2024-02-26T23:02:14Z,- JessicaLucindaCheng opened pull request: [6382](https://github.com/hackforla/website/pull/6382) at 2024-02-26 03:02 PM PST -JessicaLucindaCheng,2024-02-27T00:56:21Z,- JessicaLucindaCheng commented on issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1965600288) at 2024-02-26 04:56 PM PST -JessicaLucindaCheng,2024-02-27T02:55:29Z,- JessicaLucindaCheng unassigned from issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1965600288) at 2024-02-26 06:55 PM PST -JessicaLucindaCheng,2024-02-27T03:30:40Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1965723814) at 2024-02-26 07:30 PM PST -JessicaLucindaCheng,2024-03-02T02:26:16Z,- JessicaLucindaCheng closed issue as completed: [6354](https://github.com/hackforla/website/issues/6354#event-11986107315) at 2024-03-01 06:26 PM PST -JessicaLucindaCheng,2024-03-02T02:27:43Z,- JessicaLucindaCheng commented on issue: [6354](https://github.com/hackforla/website/issues/6354#issuecomment-1974207806) at 2024-03-01 06:27 PM PST -JessicaLucindaCheng,2024-03-03T16:44:15Z,- JessicaLucindaCheng closed issue as completed: [6285](https://github.com/hackforla/website/issues/6285#event-11990608114) at 2024-03-03 08:44 AM PST -JessicaLucindaCheng,2024-03-03T16:45:37Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1975226791) at 2024-03-03 08:45 AM PST -JessicaLucindaCheng,2024-03-03T16:49:57Z,- JessicaLucindaCheng closed issue as completed: [6364](https://github.com/hackforla/website/issues/6364#event-11990624964) at 2024-03-03 08:49 AM PST -JessicaLucindaCheng,2024-03-03T16:52:57Z,- JessicaLucindaCheng commented on issue: [6364](https://github.com/hackforla/website/issues/6364#issuecomment-1975228594) at 2024-03-03 08:52 AM PST -JessicaLucindaCheng,2024-03-03T17:04:09Z,- JessicaLucindaCheng commented on issue: [4542](https://github.com/hackforla/website/issues/4542#issuecomment-1975231334) at 2024-03-03 09:04 AM PST -JessicaLucindaCheng,2024-03-03T17:06:37Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1975232193) at 2024-03-03 09:06 AM PST -JessicaLucindaCheng,2024-03-03T17:08:01Z,- JessicaLucindaCheng commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-1975232526) at 2024-03-03 09:08 AM PST -JessicaLucindaCheng,2024-03-03T17:10:52Z,- JessicaLucindaCheng commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-1975233224) at 2024-03-03 09:10 AM PST -JessicaLucindaCheng,2024-03-03T17:14:27Z,- JessicaLucindaCheng commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1975234038) at 2024-03-03 09:14 AM PST -JessicaLucindaCheng,2024-03-03T17:16:25Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1975234480) at 2024-03-03 09:16 AM PST -JessicaLucindaCheng,2024-03-03T17:17:50Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1975234810) at 2024-03-03 09:17 AM PST -JessicaLucindaCheng,2024-03-03T17:25:33Z,- JessicaLucindaCheng commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1975236724) at 2024-03-03 09:25 AM PST -JessicaLucindaCheng,2024-03-03T17:26:13Z,- JessicaLucindaCheng closed issue as not planned: [5178](https://github.com/hackforla/website/issues/5178#event-11990723649) at 2024-03-03 09:26 AM PST -JessicaLucindaCheng,2024-03-03T17:36:57Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1975240155) at 2024-03-03 09:36 AM PST -JessicaLucindaCheng,2024-03-03T17:38:10Z,- JessicaLucindaCheng assigned to issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1937844888) at 2024-03-03 09:38 AM PST -JessicaLucindaCheng,2024-03-03T17:39:32Z,- JessicaLucindaCheng commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1975240804) at 2024-03-03 09:39 AM PST -JessicaLucindaCheng,2024-03-03T17:46:02Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-1975242374) at 2024-03-03 09:46 AM PST -JessicaLucindaCheng,2024-03-04T00:26:31Z,- JessicaLucindaCheng assigned to issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975455167) at 2024-03-03 04:26 PM PST -JessicaLucindaCheng,2024-03-04T02:07:45Z,- JessicaLucindaCheng unassigned from issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975455434) at 2024-03-03 06:07 PM PST -JessicaLucindaCheng,2024-03-04T02:13:30Z,- JessicaLucindaCheng commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975532955) at 2024-03-03 06:13 PM PST -JessicaLucindaCheng,2024-03-04T23:48:00Z,- JessicaLucindaCheng opened issue: [6416](https://github.com/hackforla/website/issues/6416) at 2024-03-04 03:48 PM PST -JessicaLucindaCheng,2024-03-05T01:29:37Z,- JessicaLucindaCheng commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-1977778528) at 2024-03-04 05:29 PM PST -JessicaLucindaCheng,2024-03-05T02:45:10Z,- JessicaLucindaCheng commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1977848686) at 2024-03-04 06:45 PM PST -JessicaLucindaCheng,2024-03-08T00:55:08Z,- JessicaLucindaCheng commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1984859100) at 2024-03-07 04:55 PM PST -JessicaLucindaCheng,2024-03-08T00:55:08Z,- JessicaLucindaCheng reopened issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1984859100) at 2024-03-07 04:55 PM PST -JessicaLucindaCheng,2024-03-10T02:46:38Z,- JessicaLucindaCheng assigned to issue: [6416](https://github.com/hackforla/website/issues/6416) at 2024-03-09 07:46 PM PDT -JessicaLucindaCheng,2024-03-10T02:48:31Z,- JessicaLucindaCheng commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-1987048931) at 2024-03-09 07:48 PM PDT -JessicaLucindaCheng,2024-03-12T00:35:40Z,- JessicaLucindaCheng commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-1989698218) at 2024-03-11 05:35 PM PDT -JessicaLucindaCheng,2024-03-12T00:54:10Z,- JessicaLucindaCheng commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1989712362) at 2024-03-11 05:54 PM PDT -JessicaLucindaCheng,2024-03-12T01:41:01Z,- JessicaLucindaCheng commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-1989761079) at 2024-03-11 06:41 PM PDT -JessicaLucindaCheng,2024-03-12T01:58:04Z,- JessicaLucindaCheng commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-1989778322) at 2024-03-11 06:58 PM PDT -JessicaLucindaCheng,2024-03-18T08:18:57Z,- JessicaLucindaCheng commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2003171924) at 2024-03-18 01:18 AM PDT -JessicaLucindaCheng,2024-03-18T08:37:16Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2003201929) at 2024-03-18 01:37 AM PDT -JessicaLucindaCheng,2024-03-18T09:27:56Z,- JessicaLucindaCheng commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-2003321164) at 2024-03-18 02:27 AM PDT -JessicaLucindaCheng,2024-03-18T09:55:45Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2003392333) at 2024-03-18 02:55 AM PDT -JessicaLucindaCheng,2024-03-18T10:07:16Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2003436167) at 2024-03-18 03:07 AM PDT -JessicaLucindaCheng,2024-03-18T10:44:37Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2003566185) at 2024-03-18 03:44 AM PDT -JessicaLucindaCheng,2024-03-19T00:05:04Z,- JessicaLucindaCheng assigned to issue: [6475](https://github.com/hackforla/website/issues/6475) at 2024-03-18 05:05 PM PDT -JessicaLucindaCheng,2024-03-19T00:06:45Z,- JessicaLucindaCheng commented on issue: [6475](https://github.com/hackforla/website/issues/6475#issuecomment-2005383425) at 2024-03-18 05:06 PM PDT -JessicaLucindaCheng,2024-03-19T01:04:31Z,- JessicaLucindaCheng assigned to issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2005541155) at 2024-03-18 06:04 PM PDT -JessicaLucindaCheng,2024-03-19T01:08:14Z,- JessicaLucindaCheng commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2005546392) at 2024-03-18 06:08 PM PDT -JessicaLucindaCheng,2024-03-23T04:10:56Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-2016338754) at 2024-03-22 09:10 PM PDT -JessicaLucindaCheng,2024-03-23T04:17:17Z,- JessicaLucindaCheng commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2016340481) at 2024-03-22 09:17 PM PDT -JessicaLucindaCheng,2024-03-23T04:20:38Z,- JessicaLucindaCheng commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2016341262) at 2024-03-22 09:20 PM PDT -JessicaLucindaCheng,2024-03-23T04:52:25Z,- JessicaLucindaCheng commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2016348573) at 2024-03-22 09:52 PM PDT -JessicaLucindaCheng,2024-03-23T04:55:20Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2016349156) at 2024-03-22 09:55 PM PDT -JessicaLucindaCheng,2024-03-23T05:05:05Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2016351643) at 2024-03-22 10:05 PM PDT -JessicaLucindaCheng,2024-03-23T05:15:57Z,- JessicaLucindaCheng commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2016355290) at 2024-03-22 10:15 PM PDT -JessicaLucindaCheng,2024-03-24T07:12:29Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2016717981) at 2024-03-24 12:12 AM PDT -JessicaLucindaCheng,2024-03-24T07:25:50Z,- JessicaLucindaCheng opened issue: [6509](https://github.com/hackforla/website/issues/6509) at 2024-03-24 12:25 AM PDT -JessicaLucindaCheng,2024-03-24T07:43:50Z,- JessicaLucindaCheng commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2016723798) at 2024-03-24 12:43 AM PDT -JessicaLucindaCheng,2024-03-24T08:18:39Z,- JessicaLucindaCheng opened issue: [6510](https://github.com/hackforla/website/issues/6510) at 2024-03-24 01:18 AM PDT -JessicaLucindaCheng,2024-03-24T08:48:23Z,- JessicaLucindaCheng commented on issue: [6475](https://github.com/hackforla/website/issues/6475#issuecomment-2016738431) at 2024-03-24 01:48 AM PDT -JessicaLucindaCheng,2024-03-26T01:38:06Z,- JessicaLucindaCheng commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2019228899) at 2024-03-25 06:38 PM PDT -JessicaLucindaCheng,2024-03-26T01:57:03Z,- JessicaLucindaCheng assigned to issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2019246917) at 2024-03-25 06:57 PM PDT -JessicaLucindaCheng,2024-04-01T23:09:40Z,- JessicaLucindaCheng commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2030763906) at 2024-04-01 04:09 PM PDT -JessicaLucindaCheng,2024-04-01T23:33:42Z,- JessicaLucindaCheng commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2030791071) at 2024-04-01 04:33 PM PDT -JessicaLucindaCheng,2024-04-08T22:55:26Z,- JessicaLucindaCheng assigned to issue: [6558](https://github.com/hackforla/website/issues/6558) at 2024-04-08 03:55 PM PDT -JessicaLucindaCheng,2024-04-08T22:56:26Z,- JessicaLucindaCheng commented on issue: [6558](https://github.com/hackforla/website/issues/6558#issuecomment-2043770952) at 2024-04-08 03:56 PM PDT -JessicaLucindaCheng,2024-04-08T23:02:55Z,- JessicaLucindaCheng assigned to issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2040420011) at 2024-04-08 04:02 PM PDT -JessicaLucindaCheng,2024-04-08T23:09:14Z,- JessicaLucindaCheng unassigned from issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2043777409) at 2024-04-08 04:09 PM PDT -JessicaLucindaCheng,2024-04-08T23:33:44Z,- JessicaLucindaCheng assigned to issue: [6583](https://github.com/hackforla/website/issues/6583) at 2024-04-08 04:33 PM PDT -JessicaLucindaCheng,2024-04-08T23:38:23Z,- JessicaLucindaCheng commented on issue: [6583](https://github.com/hackforla/website/issues/6583#issuecomment-2043858272) at 2024-04-08 04:38 PM PDT -JessicaLucindaCheng,2024-04-08T23:54:19Z,- JessicaLucindaCheng opened issue: [6595](https://github.com/hackforla/website/issues/6595) at 2024-04-08 04:54 PM PDT -JessicaLucindaCheng,2024-04-08T23:54:44Z,- JessicaLucindaCheng commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2043889166) at 2024-04-08 04:54 PM PDT -JessicaLucindaCheng,2024-04-09T00:51:27Z,- JessicaLucindaCheng assigned to issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2043889166) at 2024-04-08 05:51 PM PDT -JessicaLucindaCheng,2024-04-10T12:49:04Z,- JessicaLucindaCheng commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2047453668) at 2024-04-10 05:49 AM PDT -JessicaLucindaCheng,2024-04-10T14:10:19Z,- JessicaLucindaCheng commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2047658384) at 2024-04-10 07:10 AM PDT -JessicaLucindaCheng,2024-04-12T22:23:00Z,- JessicaLucindaCheng commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-2052634907) at 2024-04-12 03:23 PM PDT -JessicaLucindaCheng,2024-04-12T22:24:53Z,- JessicaLucindaCheng commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2052636262) at 2024-04-12 03:24 PM PDT -JessicaLucindaCheng,2024-04-12T22:56:34Z,- JessicaLucindaCheng commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2052661185) at 2024-04-12 03:56 PM PDT -JessicaLucindaCheng,2024-04-12T22:58:57Z,- JessicaLucindaCheng commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2052663599) at 2024-04-12 03:58 PM PDT -JessicaLucindaCheng,2024-04-12T23:00:09Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2052664382) at 2024-04-12 04:00 PM PDT -JessicaLucindaCheng,2024-04-12T23:02:36Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2052667438) at 2024-04-12 04:02 PM PDT -JessicaLucindaCheng,2024-04-12T23:08:15Z,- JessicaLucindaCheng commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2052671884) at 2024-04-12 04:08 PM PDT -JessicaLucindaCheng,2024-04-12T23:13:22Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2052682454) at 2024-04-12 04:13 PM PDT -JessicaLucindaCheng,2024-04-12T23:18:19Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-2052685497) at 2024-04-12 04:18 PM PDT -JessicaLucindaCheng,2024-04-12T23:20:57Z,- JessicaLucindaCheng commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2052686744) at 2024-04-12 04:20 PM PDT -JessicaLucindaCheng,2024-04-12T23:43:54Z,- JessicaLucindaCheng opened issue: [6632](https://github.com/hackforla/website/issues/6632) at 2024-04-12 04:43 PM PDT -JessicaLucindaCheng,2024-04-13T00:10:16Z,- JessicaLucindaCheng commented on issue: [6558](https://github.com/hackforla/website/issues/6558#issuecomment-2052716091) at 2024-04-12 05:10 PM PDT -JessicaLucindaCheng,2024-04-13T00:39:42Z,- JessicaLucindaCheng opened issue: [6636](https://github.com/hackforla/website/issues/6636) at 2024-04-12 05:39 PM PDT -JessicaLucindaCheng,2024-04-13T01:37:33Z,- JessicaLucindaCheng opened issue: [6638](https://github.com/hackforla/website/issues/6638) at 2024-04-12 06:37 PM PDT -JessicaLucindaCheng,2024-04-13T01:56:32Z,- JessicaLucindaCheng commented on issue: [6583](https://github.com/hackforla/website/issues/6583#issuecomment-2052964258) at 2024-04-12 06:56 PM PDT -JessicaLucindaCheng,2024-04-13T19:29:06Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2053738541) at 2024-04-13 12:29 PM PDT -JessicaLucindaCheng,2024-04-13T19:58:15Z,- JessicaLucindaCheng opened issue: [6639](https://github.com/hackforla/website/issues/6639) at 2024-04-13 12:58 PM PDT -JessicaLucindaCheng,2024-04-13T20:21:22Z,- JessicaLucindaCheng opened issue: [6640](https://github.com/hackforla/website/issues/6640) at 2024-04-13 01:21 PM PDT -JessicaLucindaCheng,2024-04-13T20:42:14Z,- JessicaLucindaCheng opened issue: [6641](https://github.com/hackforla/website/issues/6641) at 2024-04-13 01:42 PM PDT -JessicaLucindaCheng,2024-04-13T20:59:33Z,- JessicaLucindaCheng commented on issue: [6583](https://github.com/hackforla/website/issues/6583#issuecomment-2053760074) at 2024-04-13 01:59 PM PDT -JessicaLucindaCheng,2024-04-16T01:37:49Z,- JessicaLucindaCheng unassigned from issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2041685637) at 2024-04-15 06:37 PM PDT -JessicaLucindaCheng,2024-04-29T20:25:14Z,- JessicaLucindaCheng commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2083600462) at 2024-04-29 01:25 PM PDT -JessicaLucindaCheng,2024-04-30T01:29:17Z,- JessicaLucindaCheng commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-2084085492) at 2024-04-29 06:29 PM PDT -JessicaLucindaCheng,2024-05-05T13:07:24Z,- JessicaLucindaCheng commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2094803874) at 2024-05-05 06:07 AM PDT -JessicaLucindaCheng,2024-05-05T13:08:39Z,- JessicaLucindaCheng commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2094804224) at 2024-05-05 06:08 AM PDT -JessicaLucindaCheng,2024-05-05T13:10:45Z,- JessicaLucindaCheng commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2094805004) at 2024-05-05 06:10 AM PDT -JessicaLucindaCheng,2024-05-05T13:11:28Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2094805267) at 2024-05-05 06:11 AM PDT -JessicaLucindaCheng,2024-05-05T13:12:49Z,- JessicaLucindaCheng commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2094805655) at 2024-05-05 06:12 AM PDT -JessicaLucindaCheng,2024-05-05T13:15:50Z,- JessicaLucindaCheng commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2094806596) at 2024-05-05 06:15 AM PDT -JessicaLucindaCheng,2024-05-05T13:16:55Z,- JessicaLucindaCheng commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2094806922) at 2024-05-05 06:16 AM PDT -JessicaLucindaCheng,2024-05-13T23:59:33Z,- JessicaLucindaCheng assigned to issue: [6834](https://github.com/hackforla/website/issues/6834) at 2024-05-13 04:59 PM PDT -JessicaLucindaCheng,2024-05-14T00:00:59Z,- JessicaLucindaCheng commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2109023302) at 2024-05-13 05:00 PM PDT -JessicaLucindaCheng,2024-05-20T23:56:50Z,- JessicaLucindaCheng opened issue: [6866](https://github.com/hackforla/website/issues/6866) at 2024-05-20 04:56 PM PDT -JessicaLucindaCheng,2024-05-20T23:56:51Z,- JessicaLucindaCheng assigned to issue: [6866](https://github.com/hackforla/website/issues/6866) at 2024-05-20 04:56 PM PDT -JessicaLucindaCheng,2024-05-28T14:26:03Z,- JessicaLucindaCheng commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2135353771) at 2024-05-28 07:26 AM PDT -JessicaLucindaCheng,2024-05-28T14:31:01Z,- JessicaLucindaCheng commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2135375271) at 2024-05-28 07:31 AM PDT -JessicaLucindaCheng,2024-05-28T14:31:24Z,- JessicaLucindaCheng commented on issue: [6866](https://github.com/hackforla/website/issues/6866#issuecomment-2135376969) at 2024-05-28 07:31 AM PDT -JessicaLucindaCheng,2024-06-04T17:56:47Z,- JessicaLucindaCheng assigned to issue: [4678](https://github.com/hackforla/website/issues/4678#issuecomment-2148099781) at 2024-06-04 10:56 AM PDT -JessicaLucindaCheng,2024-06-04T18:16:56Z,- JessicaLucindaCheng assigned to issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-1495037881) at 2024-06-04 11:16 AM PDT -JessicaLucindaCheng,2024-06-04T18:22:41Z,- JessicaLucindaCheng assigned to issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792915165) at 2024-06-04 11:22 AM PDT -JessicaLucindaCheng,2024-06-04T18:22:57Z,- JessicaLucindaCheng unassigned from issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792915165) at 2024-06-04 11:22 AM PDT -JessicaLucindaCheng,2024-06-04T18:25:34Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2148147017) at 2024-06-04 11:25 AM PDT -JessicaLucindaCheng,2024-06-04T18:36:21Z,- JessicaLucindaCheng closed issue as completed: [6558](https://github.com/hackforla/website/issues/6558#event-13040457031) at 2024-06-04 11:36 AM PDT -JessicaLucindaCheng,2024-06-04T18:39:16Z,- JessicaLucindaCheng commented on issue: [6558](https://github.com/hackforla/website/issues/6558#issuecomment-2148173280) at 2024-06-04 11:39 AM PDT -JessicaLucindaCheng,2024-06-04T22:25:07Z,- JessicaLucindaCheng unassigned from issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2148133017) at 2024-06-04 03:25 PM PDT -JessicaLucindaCheng,2024-06-06T07:56:36Z,- JessicaLucindaCheng commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-2151645183) at 2024-06-06 12:56 AM PDT -JessicaLucindaCheng,2024-06-06T07:57:44Z,- JessicaLucindaCheng commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2151647231) at 2024-06-06 12:57 AM PDT -JessicaLucindaCheng,2024-06-06T08:03:02Z,- JessicaLucindaCheng commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2151656570) at 2024-06-06 01:03 AM PDT -JessicaLucindaCheng,2024-06-06T08:04:34Z,- JessicaLucindaCheng commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2151659527) at 2024-06-06 01:04 AM PDT -JessicaLucindaCheng,2024-06-06T08:05:48Z,- JessicaLucindaCheng commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2151661837) at 2024-06-06 01:05 AM PDT -JessicaLucindaCheng,2024-06-06T08:07:24Z,- JessicaLucindaCheng commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2151664821) at 2024-06-06 01:07 AM PDT -JessicaLucindaCheng,2024-06-06T08:13:55Z,- JessicaLucindaCheng commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2151677979) at 2024-06-06 01:13 AM PDT -JessicaLucindaCheng,2024-06-06T08:24:29Z,- JessicaLucindaCheng commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2151697638) at 2024-06-06 01:24 AM PDT -JessicaLucindaCheng,2024-06-10T23:42:38Z,- JessicaLucindaCheng unassigned from issue: [6866](https://github.com/hackforla/website/issues/6866#issuecomment-2135376969) at 2024-06-10 04:42 PM PDT -JessicaLucindaCheng,2024-06-10T23:52:03Z,- JessicaLucindaCheng opened issue: [6986](https://github.com/hackforla/website/issues/6986) at 2024-06-10 04:52 PM PDT -JessicaLucindaCheng,2024-06-10T23:55:38Z,- JessicaLucindaCheng assigned to issue: [6986](https://github.com/hackforla/website/issues/6986) at 2024-06-10 04:55 PM PDT -JessicaLucindaCheng,2024-06-10T23:55:55Z,- JessicaLucindaCheng commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2159515453) at 2024-06-10 04:55 PM PDT -JessicaLucindaCheng,2024-06-11T21:29:48Z,- JessicaLucindaCheng commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2161628560) at 2024-06-11 02:29 PM PDT -JessicaLucindaCheng,2024-06-11T21:31:31Z,- JessicaLucindaCheng unassigned from issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2159515453) at 2024-06-11 02:31 PM PDT -JessicaLucindaCheng,2024-06-13T01:43:10Z,- JessicaLucindaCheng commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2164194942) at 2024-06-12 06:43 PM PDT -JessicaLucindaCheng,2024-06-13T03:48:34Z,- JessicaLucindaCheng unassigned from issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2151647231) at 2024-06-12 08:48 PM PDT -JessicaLucindaCheng,2024-06-13T04:07:16Z,- JessicaLucindaCheng commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2164324630) at 2024-06-12 09:07 PM PDT -JessicaLucindaCheng,2024-06-24T09:23:16Z,- JessicaLucindaCheng commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2186024807) at 2024-06-24 02:23 AM PDT -JessicaLucindaCheng,2024-06-24T23:50:06Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2187646705) at 2024-06-24 04:50 PM PDT -JessicaLucindaCheng,2024-07-16T00:02:22Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2229667857) at 2024-07-15 05:02 PM PDT -JessicaLucindaCheng,2024-07-16T00:43:37Z,- JessicaLucindaCheng commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2229753204) at 2024-07-15 05:43 PM PDT -JessicaLucindaCheng,2024-08-06T02:32:25Z,- JessicaLucindaCheng opened pull request: [7199](https://github.com/hackforla/website/pull/7199) at 2024-08-05 07:32 PM PDT -JessicaLucindaCheng,2024-08-06T03:00:15Z,- JessicaLucindaCheng pull request merged: [7199](https://github.com/hackforla/website/pull/7199#event-13772013006) at 2024-08-05 08:00 PM PDT -JessicaLucindaCheng,2024-09-04T01:30:50Z,- JessicaLucindaCheng opened issue: [7383](https://github.com/hackforla/website/issues/7383) at 2024-09-03 06:30 PM PDT -JessicaLucindaCheng,2024-09-04T01:30:51Z,- JessicaLucindaCheng assigned to issue: [7383](https://github.com/hackforla/website/issues/7383) at 2024-09-03 06:30 PM PDT -JessicaLucindaCheng,2024-09-05T23:52:06Z,- JessicaLucindaCheng opened issue: [7404](https://github.com/hackforla/website/issues/7404) at 2024-09-05 04:52 PM PDT -JessicaLucindaCheng,2024-09-05T23:57:21Z,- JessicaLucindaCheng assigned to issue: [7404](https://github.com/hackforla/website/issues/7404) at 2024-09-05 04:57 PM PDT -JessicaLucindaCheng,2024-09-09T20:34:46Z,- JessicaLucindaCheng commented on issue: [7404](https://github.com/hackforla/website/issues/7404#issuecomment-2339037545) at 2024-09-09 01:34 PM PDT -JessicaLucindaCheng,2024-09-09T20:47:17Z,- JessicaLucindaCheng commented on issue: [7404](https://github.com/hackforla/website/issues/7404#issuecomment-2339058831) at 2024-09-09 01:47 PM PDT -JessicaLucindaCheng,2024-09-09T20:48:59Z,- JessicaLucindaCheng commented on issue: [7383](https://github.com/hackforla/website/issues/7383#issuecomment-2339061788) at 2024-09-09 01:48 PM PDT -JessicaLucindaCheng,2024-09-09T20:50:27Z,- JessicaLucindaCheng commented on issue: [7383](https://github.com/hackforla/website/issues/7383#issuecomment-2339064355) at 2024-09-09 01:50 PM PDT -JessicaLucindaCheng,2024-09-09T20:52:24Z,- JessicaLucindaCheng commented on issue: [7404](https://github.com/hackforla/website/issues/7404#issuecomment-2339067637) at 2024-09-09 01:52 PM PDT -JessicaLucindaCheng,2024-09-09T21:06:47Z,- JessicaLucindaCheng opened issue: [7424](https://github.com/hackforla/website/issues/7424) at 2024-09-09 02:06 PM PDT -JessicaLucindaCheng,2024-09-09T22:12:30Z,- JessicaLucindaCheng opened issue: [7425](https://github.com/hackforla/website/issues/7425) at 2024-09-09 03:12 PM PDT -JessicaLucindaCheng,2024-09-09T22:12:41Z,- JessicaLucindaCheng assigned to issue: [7425](https://github.com/hackforla/website/issues/7425) at 2024-09-09 03:12 PM PDT -JessicaLucindaCheng,2024-09-09T22:22:25Z,- JessicaLucindaCheng commented on issue: [7424](https://github.com/hackforla/website/issues/7424#issuecomment-2339256669) at 2024-09-09 03:22 PM PDT -JessicaLucindaCheng,2024-09-09T22:29:55Z,- JessicaLucindaCheng unassigned from issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339245566) at 2024-09-09 03:29 PM PDT -JessicaLucindaCheng,2024-09-09T22:35:04Z,- JessicaLucindaCheng assigned to issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339245566) at 2024-09-09 03:35 PM PDT -JessicaLucindaCheng,2024-09-16T23:44:22Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2354221127) at 2024-09-16 04:44 PM PDT -JessicaLucindaCheng,2024-09-17T00:13:02Z,- JessicaLucindaCheng reopened issue: [6034](https://github.com/hackforla/website/issues/6034#event-12290961850) at 2024-09-16 05:13 PM PDT -JessicaLucindaCheng,2024-09-17T05:51:48Z,- JessicaLucindaCheng commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2354586273) at 2024-09-16 10:51 PM PDT -JessicaLucindaCheng,2024-09-24T00:07:30Z,- JessicaLucindaCheng opened issue: [7510](https://github.com/hackforla/website/issues/7510) at 2024-09-23 05:07 PM PDT -JessicaLucindaCheng,2024-09-24T00:07:31Z,- JessicaLucindaCheng assigned to issue: [7510](https://github.com/hackforla/website/issues/7510) at 2024-09-23 05:07 PM PDT -JessicaLucindaCheng,2024-09-24T02:04:50Z,- JessicaLucindaCheng opened pull request: [7513](https://github.com/hackforla/website/pull/7513) at 2024-09-23 07:04 PM PDT -JessicaLucindaCheng,2024-09-24T02:16:04Z,- JessicaLucindaCheng pull request merged: [7513](https://github.com/hackforla/website/pull/7513#event-14373460592) at 2024-09-23 07:16 PM PDT -JessicaLucindaCheng,2024-09-30T23:50:57Z,- JessicaLucindaCheng commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2384502907) at 2024-09-30 04:50 PM PDT -JessicaLucindaCheng,2024-09-30T23:57:27Z,- JessicaLucindaCheng unassigned from issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2384502907) at 2024-09-30 04:57 PM PDT -JessicaLucindaCheng,2024-10-02T23:31:15Z,- JessicaLucindaCheng assigned to issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2389975235) at 2024-10-02 04:31 PM PDT -JessicaLucindaCheng,2024-10-05T08:22:42Z,- JessicaLucindaCheng commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2394978560) at 2024-10-05 01:22 AM PDT -JessicaLucindaCheng,2024-10-05T08:43:38Z,- JessicaLucindaCheng unassigned from issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2394978560) at 2024-10-05 01:43 AM PDT -JessicaLucindaCheng,2024-10-05T08:44:30Z,- JessicaLucindaCheng assigned to issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2394978560) at 2024-10-05 01:44 AM PDT -JessicaLucindaCheng,2024-10-07T20:17:00Z,- JessicaLucindaCheng commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2397810414) at 2024-10-07 01:17 PM PDT -JessicaLucindaCheng,2024-10-07T20:41:07Z,- JessicaLucindaCheng unassigned from issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2394984031) at 2024-10-07 01:41 PM PDT -JessicaLucindaCheng,2024-10-07T20:41:40Z,- JessicaLucindaCheng assigned to issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2394984031) at 2024-10-07 01:41 PM PDT -JessicaLucindaCheng,2024-10-07T20:57:46Z,- JessicaLucindaCheng closed issue by PR 17: [6219](https://github.com/hackforla/website/issues/6219#event-14546758407) at 2024-10-07 01:57 PM PDT -JessicaLucindaCheng,2024-10-07T21:00:04Z,- JessicaLucindaCheng commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2397885613) at 2024-10-07 02:00 PM PDT -JessicaLucindaCheng,2024-10-07T22:18:42Z,- JessicaLucindaCheng commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2398021264) at 2024-10-07 03:18 PM PDT -JessicaLucindaCheng,2024-10-07T22:21:52Z,- JessicaLucindaCheng commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398025433) at 2024-10-07 03:21 PM PDT -JessicaLucindaCheng,2024-10-07T22:28:56Z,- JessicaLucindaCheng unassigned from issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2397855008) at 2024-10-07 03:28 PM PDT -JessicaLucindaCheng,2024-10-07T23:27:37Z,- JessicaLucindaCheng unassigned from issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1828957304) at 2024-10-07 04:27 PM PDT -JessicaLucindaCheng,2024-10-08T00:25:56Z,- JessicaLucindaCheng assigned to issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1828957304) at 2024-10-07 05:25 PM PDT -JessicaLucindaCheng,2024-10-08T00:35:22Z,- JessicaLucindaCheng unassigned from issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2398279924) at 2024-10-07 05:35 PM PDT -JessicaLucindaCheng,2024-10-08T00:36:47Z,- JessicaLucindaCheng commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2398302822) at 2024-10-07 05:36 PM PDT -JessicaLucindaCheng,2024-10-14T22:02:17Z,- JessicaLucindaCheng commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2412409983) at 2024-10-14 03:02 PM PDT -JessicaLucindaCheng,2024-10-14T22:18:39Z,- JessicaLucindaCheng commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2412429394) at 2024-10-14 03:18 PM PDT -JessicaLucindaCheng,2024-10-28T22:10:34Z,- JessicaLucindaCheng commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2442769639) at 2024-10-28 03:10 PM PDT -JessicaLucindaCheng,2024-10-28T22:27:05Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2442791161) at 2024-10-28 03:27 PM PDT -JessicaLucindaCheng,2024-10-29T00:47:46Z,- JessicaLucindaCheng opened pull request: [7659](https://github.com/hackforla/website/pull/7659) at 2024-10-28 05:47 PM PDT -JessicaLucindaCheng,2024-10-29T01:06:54Z,- JessicaLucindaCheng pull request merged: [7659](https://github.com/hackforla/website/pull/7659#event-14971409435) at 2024-10-28 06:06 PM PDT -JessicaLucindaCheng,2024-10-29T02:56:57Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2443074726) at 2024-10-28 07:56 PM PDT -JessicaLucindaCheng,2024-10-29T02:57:23Z,- JessicaLucindaCheng assigned to issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2442997922) at 2024-10-28 07:57 PM PDT -JessicaLucindaCheng,2024-11-04T22:45:56Z,- JessicaLucindaCheng opened issue: [7689](https://github.com/hackforla/website/issues/7689) at 2024-11-04 02:45 PM PST -JessicaLucindaCheng,2024-11-04T22:45:58Z,- JessicaLucindaCheng assigned to issue: [7689](https://github.com/hackforla/website/issues/7689) at 2024-11-04 02:45 PM PST -JessicaLucindaCheng,2024-11-04T23:55:08Z,- JessicaLucindaCheng unassigned from issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455855588) at 2024-11-04 03:55 PM PST -JessicaLucindaCheng,2024-11-05T00:17:14Z,- JessicaLucindaCheng assigned to issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455855588) at 2024-11-04 04:17 PM PST -JessicaLucindaCheng,2024-11-05T00:35:12Z,- JessicaLucindaCheng unassigned from issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455965752) at 2024-11-04 04:35 PM PST -JessicaLucindaCheng,2024-11-05T00:38:08Z,- JessicaLucindaCheng commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455986278) at 2024-11-04 04:38 PM PST -JessicaLucindaCheng,2024-11-05T01:44:16Z,- JessicaLucindaCheng assigned to issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2443005322) at 2024-11-04 05:44 PM PST -JessicaLucindaCheng,2024-11-11T23:34:42Z,- JessicaLucindaCheng commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2469288559) at 2024-11-11 03:34 PM PST -JessicaLucindaCheng,2024-11-18T22:10:00Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2484237901) at 2024-11-18 02:10 PM PST -JessicaLucindaCheng,2024-11-18T23:34:36Z,- JessicaLucindaCheng commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2484388223) at 2024-11-18 03:34 PM PST -JessicaLucindaCheng,2024-11-20T00:57:39Z,- JessicaLucindaCheng commented on issue: [7294](https://github.com/hackforla/website/issues/7294#issuecomment-2487081092) at 2024-11-19 04:57 PM PST -JessicaLucindaCheng,2024-11-20T00:57:40Z,- JessicaLucindaCheng closed issue as completed: [7294](https://github.com/hackforla/website/issues/7294#event-15357325799) at 2024-11-19 04:57 PM PST -JessicaLucindaCheng,2024-11-20T02:11:57Z,- JessicaLucindaCheng opened pull request: [7738](https://github.com/hackforla/website/pull/7738) at 2024-11-19 06:11 PM PST -JessicaLucindaCheng,2024-11-20T02:14:08Z,- JessicaLucindaCheng pull request merged: [7738](https://github.com/hackforla/website/pull/7738#event-15357827790) at 2024-11-19 06:14 PM PST -JessicaLucindaCheng,2024-11-20T02:19:15Z,- JessicaLucindaCheng opened pull request: [7739](https://github.com/hackforla/website/pull/7739) at 2024-11-19 06:19 PM PST -JessicaLucindaCheng,2024-11-20T02:21:17Z,- JessicaLucindaCheng pull request merged: [7739](https://github.com/hackforla/website/pull/7739#event-15357879048) at 2024-11-19 06:21 PM PST -JessicaLucindaCheng,2024-11-22T01:59:40Z,- JessicaLucindaCheng commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2492717099) at 2024-11-21 05:59 PM PST -JessicaLucindaCheng,2024-11-22T03:01:50Z,- JessicaLucindaCheng opened pull request: [7756](https://github.com/hackforla/website/pull/7756) at 2024-11-21 07:01 PM PST -JessicaLucindaCheng,2024-11-23T23:12:26Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2495683499) at 2024-11-23 03:12 PM PST -JessicaLucindaCheng,2024-11-25T00:16:46Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2496442900) at 2024-11-24 04:16 PM PST -JessicaLucindaCheng,2024-11-26T01:11:38Z,- JessicaLucindaCheng opened issue: [7767](https://github.com/hackforla/website/issues/7767) at 2024-11-25 05:11 PM PST -JessicaLucindaCheng,2024-11-26T01:12:57Z,- JessicaLucindaCheng assigned to issue: [7767](https://github.com/hackforla/website/issues/7767#issuecomment-2499351852) at 2024-11-25 05:12 PM PST -JessicaLucindaCheng,2025-01-05T04:57:07Z,- JessicaLucindaCheng commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2571501689) at 2025-01-04 08:57 PM PST -JessicaLucindaCheng,2025-01-05T04:57:07Z,- JessicaLucindaCheng closed issue as completed: [7689](https://github.com/hackforla/website/issues/7689#event-15816708236) at 2025-01-04 08:57 PM PST -JessicaLucindaCheng,2025-01-05T04:58:50Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2571501964) at 2025-01-04 08:58 PM PST -JessicaLucindaCheng,2025-01-06T23:46:21Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2574125147) at 2025-01-06 03:46 PM PST -JessicaLucindaCheng,2025-01-20T22:18:22Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2603299712) at 2025-01-20 02:18 PM PST -JessicaLucindaCheng,2025-02-03T23:32:32Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2632413680) at 2025-02-03 03:32 PM PST -JessicaLucindaCheng,2025-02-11T00:39:27Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2649568037) at 2025-02-10 04:39 PM PST -JessicaLucindaCheng,2025-02-18T01:01:11Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2664320088) at 2025-02-17 05:01 PM PST -JessicaLucindaCheng,2025-03-03T23:10:54Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2695775851) at 2025-03-03 03:10 PM PST -JessicaLucindaCheng,2025-03-04T01:35:13Z,- JessicaLucindaCheng opened pull request: [7963](https://github.com/hackforla/website/pull/7963) at 2025-03-03 05:35 PM PST -JessicaLucindaCheng,2025-03-04T01:46:48Z,- JessicaLucindaCheng commented on pull request: [7963](https://github.com/hackforla/website/pull/7963#issuecomment-2695973311) at 2025-03-03 05:46 PM PST -JessicaLucindaCheng,2025-03-04T01:46:48Z,- JessicaLucindaCheng pull request closed w/o merging: [7963](https://github.com/hackforla/website/pull/7963#event-16543246671) at 2025-03-03 05:46 PM PST -JessicaLucindaCheng,2025-03-04T01:48:48Z,- JessicaLucindaCheng commented on pull request: [7964](https://github.com/hackforla/website/pull/7964#issuecomment-2695975575) at 2025-03-03 05:48 PM PST -JessicaLucindaCheng,2025-03-04T02:10:52Z,- JessicaLucindaCheng opened pull request: [7965](https://github.com/hackforla/website/pull/7965) at 2025-03-03 06:10 PM PST -JessicaLucindaCheng,2025-03-04T02:22:15Z,- JessicaLucindaCheng pull request merged: [7965](https://github.com/hackforla/website/pull/7965#event-16543490415) at 2025-03-03 06:22 PM PST -JessicaLucindaCheng,2025-03-10T23:49:44Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2712100115) at 2025-03-10 04:49 PM PDT -JessicaLucindaCheng,2025-03-17T22:55:49Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2731134385) at 2025-03-17 03:55 PM PDT -JessicaLucindaCheng,2025-03-18T01:14:57Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2731326212) at 2025-03-17 06:14 PM PDT -JessicaLucindaCheng,2025-04-07T22:28:19Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2784771357) at 2025-04-07 03:28 PM PDT -JessicaLucindaCheng,2025-04-07T22:43:10Z,- JessicaLucindaCheng assigned to issue: [7424](https://github.com/hackforla/website/issues/7424#issuecomment-2339395291) at 2025-04-07 03:43 PM PDT -JessicaLucindaCheng,2025-04-07T22:51:04Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2784804620) at 2025-04-07 03:51 PM PDT -JessicaLucindaCheng,2025-04-07T23:03:25Z,- JessicaLucindaCheng opened issue: [8054](https://github.com/hackforla/website/issues/8054) at 2025-04-07 04:03 PM PDT -JessicaLucindaCheng,2025-04-07T23:03:25Z,- JessicaLucindaCheng opened issue: [8054](https://github.com/hackforla/website/issues/8054) at 2025-04-07 04:03 PM PDT -JessicaLucindaCheng,2025-04-07T23:10:52Z,- JessicaLucindaCheng assigned to issue: [8054](https://github.com/hackforla/website/issues/8054#issuecomment-2784820780) at 2025-04-07 04:10 PM PDT -JessicaLucindaCheng,2025-04-07T23:10:52Z,- JessicaLucindaCheng assigned to issue: [8054](https://github.com/hackforla/website/issues/8054#issuecomment-2784820780) at 2025-04-07 04:10 PM PDT -JessicaLucindaCheng,2025-04-14T20:45:26Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2802944232) at 2025-04-14 01:45 PM PDT -JessicaLucindaCheng,2025-04-21T21:19:41Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2819526809) at 2025-04-21 02:19 PM PDT -JessicaLucindaCheng,2025-04-21T21:30:23Z,- JessicaLucindaCheng assigned to issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792915165) at 2025-04-21 02:30 PM PDT -JessicaLucindaCheng,2025-04-21T21:31:00Z,- JessicaLucindaCheng unassigned from issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792915165) at 2025-04-21 02:31 PM PDT -JessicaLucindaCheng,2025-04-21T21:36:29Z,- JessicaLucindaCheng commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-2819554054) at 2025-04-21 02:36 PM PDT -JessicaLucindaCheng,2025-04-21T21:47:20Z,- JessicaLucindaCheng opened pull request: [8073](https://github.com/hackforla/website/pull/8073) at 2025-04-21 02:47 PM PDT -JessicaLucindaCheng,2025-04-21T22:16:24Z,- JessicaLucindaCheng pull request merged: [8073](https://github.com/hackforla/website/pull/8073#event-17344135089) at 2025-04-21 03:16 PM PDT -JessicaLucindaCheng,2025-04-22T00:44:17Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2819783916) at 2025-04-21 05:44 PM PDT -JessicaLucindaCheng,2025-04-22T00:52:53Z,- JessicaLucindaCheng commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2819792279) at 2025-04-21 05:52 PM PDT -JessicaLucindaCheng,2025-04-22T00:53:44Z,- JessicaLucindaCheng commented on issue: [6558](https://github.com/hackforla/website/issues/6558#issuecomment-2819793059) at 2025-04-21 05:53 PM PDT -JessicaLucindaCheng,2025-04-22T00:54:18Z,- JessicaLucindaCheng commented on issue: [6583](https://github.com/hackforla/website/issues/6583#issuecomment-2819793569) at 2025-04-21 05:54 PM PDT -JessicaLucindaCheng,2025-04-22T00:54:57Z,- JessicaLucindaCheng commented on issue: [6475](https://github.com/hackforla/website/issues/6475#issuecomment-2819794159) at 2025-04-21 05:54 PM PDT -JessicaLucindaCheng,2025-04-22T00:55:41Z,- JessicaLucindaCheng commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2819794810) at 2025-04-21 05:55 PM PDT -JessicaLucindaCheng,2025-04-22T00:55:58Z,- JessicaLucindaCheng commented on issue: [6364](https://github.com/hackforla/website/issues/6364#issuecomment-2819795052) at 2025-04-21 05:55 PM PDT -JessicaLucindaCheng,2025-04-22T00:56:20Z,- JessicaLucindaCheng commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-2819795374) at 2025-04-21 05:56 PM PDT -JessicaLucindaCheng,2025-04-22T00:57:03Z,- JessicaLucindaCheng commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-2819796050) at 2025-04-21 05:57 PM PDT -JessicaLucindaCheng,2025-04-22T01:45:11Z,- JessicaLucindaCheng opened pull request: [8077](https://github.com/hackforla/website/pull/8077) at 2025-04-21 06:45 PM PDT -JessicaLucindaCheng,2025-04-22T02:02:44Z,- JessicaLucindaCheng pull request merged: [8077](https://github.com/hackforla/website/pull/8077#event-17345613898) at 2025-04-21 07:02 PM PDT -JessicaLucindaCheng,2025-04-22T03:02:52Z,- JessicaLucindaCheng closed issue as completed: [7087](https://github.com/hackforla/website/issues/7087#event-17346042446) at 2025-04-21 08:02 PM PDT -JessicaLucindaCheng,2025-05-05T23:06:31Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2852580944) at 2025-05-05 04:06 PM PDT -JessicaLucindaCheng,2025-05-05T23:16:25Z,- JessicaLucindaCheng commented on issue: [7760](https://github.com/hackforla/website/issues/7760#issuecomment-2852629938) at 2025-05-05 04:16 PM PDT -JessicaLucindaCheng,2025-05-05T23:33:22Z,- JessicaLucindaCheng assigned to issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2752351823) at 2025-05-05 04:33 PM PDT -JessicaLucindaCheng,2025-05-12T23:01:46Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2874407583) at 2025-05-12 04:01 PM PDT -JessicaLucindaCheng,2025-05-13T00:12:33Z,- JessicaLucindaCheng commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2874621414) at 2025-05-12 05:12 PM PDT -JessicaLucindaCheng,2025-05-19T19:19:18Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2892039251) at 2025-05-19 12:19 PM PDT -JessicaLucindaCheng,2025-05-19T23:32:18Z,- JessicaLucindaCheng commented on issue: [7424](https://github.com/hackforla/website/issues/7424#issuecomment-2892508395) at 2025-05-19 04:32 PM PDT -JessicaLucindaCheng,2025-06-01T20:28:04Z,- JessicaLucindaCheng opened issue: [8167](https://github.com/hackforla/website/issues/8167) at 2025-06-01 01:28 PM PDT -JessicaLucindaCheng,2025-06-01T21:33:40Z,- JessicaLucindaCheng assigned to issue: [8167](https://github.com/hackforla/website/issues/8167) at 2025-06-01 02:33 PM PDT -JessicaLucindaCheng,2025-06-02T19:22:10Z,- JessicaLucindaCheng unassigned from issue: [8167](https://github.com/hackforla/website/issues/8167#issuecomment-2927931222) at 2025-06-02 12:22 PM PDT -JessicaLucindaCheng,2025-06-02T20:00:13Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2932272757) at 2025-06-02 01:00 PM PDT -JessicaLucindaCheng,2025-06-02T21:46:53Z,- JessicaLucindaCheng unassigned from issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339270739) at 2025-06-02 02:46 PM PDT -JessicaLucindaCheng,2025-06-02T23:23:49Z,- JessicaLucindaCheng assigned to issue: [8167](https://github.com/hackforla/website/issues/8167#issuecomment-2927931222) at 2025-06-02 04:23 PM PDT -JessicaLucindaCheng,2025-06-02T23:25:14Z,- JessicaLucindaCheng commented on issue: [8167](https://github.com/hackforla/website/issues/8167#issuecomment-2932857400) at 2025-06-02 04:25 PM PDT -JessicaLucindaCheng,2025-06-09T23:54:59Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2957314011) at 2025-06-09 04:54 PM PDT -JessicaLucindaCheng,2025-06-16T23:47:12Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2978491163) at 2025-06-16 04:47 PM PDT -JessicaLucindaCheng,2025-06-23T21:35:47Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2998015226) at 2025-06-23 02:35 PM PDT -JessicaLucindaCheng,2025-06-23T23:28:22Z,- JessicaLucindaCheng opened issue: [8202](https://github.com/hackforla/website/issues/8202) at 2025-06-23 04:28 PM PDT -JessicaLucindaCheng,2025-06-23T23:28:23Z,- JessicaLucindaCheng assigned to issue: [8202](https://github.com/hackforla/website/issues/8202) at 2025-06-23 04:28 PM PDT -JessicaLucindaCheng,2025-06-23T23:38:24Z,- JessicaLucindaCheng commented on issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998293493) at 2025-06-23 04:38 PM PDT -JessicaLucindaCheng,2025-06-24T00:09:33Z,- JessicaLucindaCheng unassigned from issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998293493) at 2025-06-23 05:09 PM PDT -JessicaLucindaCheng,2025-08-04T22:35:46Z,- JessicaLucindaCheng commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-3152630340) at 2025-08-04 03:35 PM PDT -jesusmendoza1940,7923,SKILLS ISSUE -jesusmendoza1940,2025-02-19T03:39:49Z,- jesusmendoza1940 opened issue: [7923](https://github.com/hackforla/website/issues/7923) at 2025-02-18 07:39 PM PST -jesusmendoza1940,2025-02-19T03:40:12Z,- jesusmendoza1940 assigned to issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2667433520) at 2025-02-18 07:40 PM PST -jesusmendoza1940,2025-03-03T05:16:26Z,- jesusmendoza1940 commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2693300767) at 2025-03-02 09:16 PM PST -jesusmendoza1940,2025-03-07T03:52:12Z,- jesusmendoza1940 commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2705467211) at 2025-03-06 07:52 PM PST -jesusmendoza1940,2025-03-10T20:45:49Z,- jesusmendoza1940 assigned to issue: [7402](https://github.com/hackforla/website/issues/7402) at 2025-03-10 01:45 PM PDT -jesusmendoza1940,2025-03-10T21:14:47Z,- jesusmendoza1940 commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2711856570) at 2025-03-10 02:14 PM PDT -jesusmendoza1940,2025-03-14T23:33:44Z,- jesusmendoza1940 commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2726005942) at 2025-03-14 04:33 PM PDT -jesusmendoza1940,2025-04-04T22:21:26Z,- jesusmendoza1940 commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2779821050) at 2025-04-04 03:21 PM PDT -jesusmendoza1940,2025-04-04T22:22:24Z,- jesusmendoza1940 commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2779822025) at 2025-04-04 03:22 PM PDT -jesusmendoza1940,2025-06-09T22:15:05Z,- jesusmendoza1940 unassigned from issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2948308860) at 2025-06-09 03:15 PM PDT -Jfong1218,5222,SKILLS ISSUE -Jfong1218,2023-08-15T03:04:43Z,- Jfong1218 opened issue: [5222](https://github.com/hackforla/website/issues/5222) at 2023-08-14 08:04 PM PDT -Jfong1218,2023-08-15T03:04:59Z,- Jfong1218 assigned to issue: [5222](https://github.com/hackforla/website/issues/5222) at 2023-08-14 08:04 PM PDT -Jfong1218,2023-08-22T00:26:55Z,- Jfong1218 assigned to issue: [5253](https://github.com/hackforla/website/issues/5253#issuecomment-1684643579) at 2023-08-21 05:26 PM PDT -Jfong1218,2023-08-22T00:31:19Z,- Jfong1218 commented on issue: [5253](https://github.com/hackforla/website/issues/5253#issuecomment-1687239038) at 2023-08-21 05:31 PM PDT -Jfong1218,2023-08-22T00:56:31Z,- Jfong1218 commented on issue: [5222](https://github.com/hackforla/website/issues/5222#issuecomment-1687255354) at 2023-08-21 05:56 PM PDT -Jfong1218,2023-08-23T23:02:01Z,- Jfong1218 commented on pull request: [5263](https://github.com/hackforla/website/pull/5263#issuecomment-1690753523) at 2023-08-23 04:02 PM PDT -Jfong1218,2023-08-23T23:19:06Z,- Jfong1218 opened pull request: [5296](https://github.com/hackforla/website/pull/5296) at 2023-08-23 04:19 PM PDT -Jfong1218,2023-08-24T23:54:58Z,- Jfong1218 submitted pull request review: [5263](https://github.com/hackforla/website/pull/5263#pullrequestreview-1594618880) at 2023-08-24 04:54 PM PDT -Jfong1218,2023-08-29T00:51:30Z,- Jfong1218 commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1696614621) at 2023-08-28 05:51 PM PDT -Jfong1218,2023-08-29T00:51:30Z,- Jfong1218 pull request merged: [5296](https://github.com/hackforla/website/pull/5296#event-10215166286) at 2023-08-28 05:51 PM PDT -Jfong1218,2023-08-29T23:11:06Z,- Jfong1218 commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1698259734) at 2023-08-29 04:11 PM PDT -Jfong1218,2023-08-29T23:11:06Z,- Jfong1218 reopened pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1698259734) at 2023-08-29 04:11 PM PDT -Jfong1218,2023-08-30T02:16:26Z,- Jfong1218 pull request merged: [5296](https://github.com/hackforla/website/pull/5296#event-10227569539) at 2023-08-29 07:16 PM PDT -Jfong1218,2023-09-09T00:40:59Z,- Jfong1218 closed issue as completed: [5222](https://github.com/hackforla/website/issues/5222#event-10323127794) at 2023-09-08 05:40 PM PDT -Jfong1218,2023-09-20T00:46:25Z,- Jfong1218 assigned to issue: [5529](https://github.com/hackforla/website/issues/5529#issuecomment-1720330828) at 2023-09-19 05:46 PM PDT -Jfong1218,2023-09-20T01:55:17Z,- Jfong1218 commented on issue: [5529](https://github.com/hackforla/website/issues/5529#issuecomment-1726766932) at 2023-09-19 06:55 PM PDT -Jfong1218,2023-09-25T23:26:10Z,- Jfong1218 commented on issue: [5529](https://github.com/hackforla/website/issues/5529#issuecomment-1734597527) at 2023-09-25 04:26 PM PDT -Jfong1218,2023-09-25T23:34:58Z,- Jfong1218 commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1734607534) at 2023-09-25 04:34 PM PDT -Jfong1218,2023-09-25T23:54:37Z,- Jfong1218 submitted pull request review: [5583](https://github.com/hackforla/website/pull/5583#pullrequestreview-1643138524) at 2023-09-25 04:54 PM PDT -Jfong1218,2023-10-10T01:37:42Z,- Jfong1218 submitted pull request review: [5583](https://github.com/hackforla/website/pull/5583#pullrequestreview-1665748633) at 2023-10-09 06:37 PM PDT -Jfong1218,2023-11-06T22:26:27Z,- Jfong1218 assigned to issue: [5333](https://github.com/hackforla/website/issues/5333) at 2023-11-06 02:26 PM PST -Jfong1218,2023-11-06T22:30:00Z,- Jfong1218 commented on issue: [5333](https://github.com/hackforla/website/issues/5333#issuecomment-1796922620) at 2023-11-06 02:30 PM PST -Jfong1218,2023-11-16T01:49:26Z,- Jfong1218 commented on issue: [5333](https://github.com/hackforla/website/issues/5333#issuecomment-1813631450) at 2023-11-15 05:49 PM PST -Jfong1218,2023-11-22T01:06:19Z,- Jfong1218 commented on issue: [5333](https://github.com/hackforla/website/issues/5333#issuecomment-1821931421) at 2023-11-21 05:06 PM PST -Jfong1218,2023-11-29T02:16:24Z,- Jfong1218 opened pull request: [5942](https://github.com/hackforla/website/pull/5942) at 2023-11-28 06:16 PM PST -Jfong1218,2023-11-29T02:17:03Z,- Jfong1218 commented on issue: [5333](https://github.com/hackforla/website/issues/5333#issuecomment-1831098914) at 2023-11-28 06:17 PM PST -Jfong1218,2023-12-05T00:04:32Z,- Jfong1218 commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1839772545) at 2023-12-04 04:04 PM PST -Jfong1218,2023-12-08T01:53:10Z,- Jfong1218 commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1846434574) at 2023-12-07 05:53 PM PST -Jfong1218,2023-12-20T02:47:54Z,- Jfong1218 commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1863767912) at 2023-12-19 06:47 PM PST -Jfong1218,2024-01-02T01:53:30Z,- Jfong1218 commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1873562766) at 2024-01-01 05:53 PM PST -Jfong1218,2024-01-03T14:58:40Z,- Jfong1218 pull request merged: [5942](https://github.com/hackforla/website/pull/5942#event-11380099088) at 2024-01-03 06:58 AM PST -jhong94,7208,SKILLS ISSUE -jhong94,2024-08-06T03:13:27Z,- jhong94 opened issue: [7208](https://github.com/hackforla/website/issues/7208) at 2024-08-05 08:13 PM PDT -jhong94,2024-08-06T03:26:04Z,- jhong94 assigned to issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2270301943) at 2024-08-05 08:26 PM PDT -JijiTheCreator,3712,SKILLS ISSUE -JijiTheCreator,2022-11-09T03:53:57Z,- JijiTheCreator opened issue: [3712](https://github.com/hackforla/website/issues/3712) at 2022-11-08 07:53 PM PST -JijiTheCreator,2022-11-27T07:24:47Z,- JijiTheCreator assigned to issue: [3712](https://github.com/hackforla/website/issues/3712) at 2022-11-26 11:24 PM PST -JijiTheCreator,2022-11-27T16:31:33Z,- JijiTheCreator commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1328286106) at 2022-11-27 08:31 AM PST -JijiTheCreator,2022-12-02T22:45:47Z,- JijiTheCreator commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1335935083) at 2022-12-02 02:45 PM PST -JijiTheCreator,2023-01-12T19:42:48Z,- JijiTheCreator assigned to issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1286576019) at 2023-01-12 11:42 AM PST -JijiTheCreator,2023-01-12T19:55:16Z,- JijiTheCreator commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1380929699) at 2023-01-12 11:55 AM PST -JijiTheCreator,2023-01-13T00:40:18Z,- JijiTheCreator opened pull request: [3812](https://github.com/hackforla/website/pull/3812) at 2023-01-12 04:40 PM PST -JijiTheCreator,2023-01-20T18:02:33Z,- JijiTheCreator commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1398751535) at 2023-01-20 10:02 AM PST -JijiTheCreator,2023-01-22T18:18:20Z,- JijiTheCreator commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1399566258) at 2023-01-22 10:18 AM PST -JijiTheCreator,2023-02-07T02:01:04Z,- JijiTheCreator commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1420059408) at 2023-02-06 06:01 PM PST -JijiTheCreator,2023-02-07T02:03:02Z,- JijiTheCreator commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1420062749) at 2023-02-06 06:03 PM PST -JijiTheCreator,2023-02-11T18:37:52Z,- JijiTheCreator opened pull request: [3964](https://github.com/hackforla/website/pull/3964) at 2023-02-11 10:37 AM PST -JijiTheCreator,2023-02-12T20:04:29Z,- JijiTheCreator pull request closed w/o merging: [3812](https://github.com/hackforla/website/pull/3812#event-8498928690) at 2023-02-12 12:04 PM PST -JijiTheCreator,2023-03-01T23:59:13Z,- JijiTheCreator unassigned from issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1451051775) at 2023-03-01 03:59 PM PST -JijiTheCreator,2023-03-02T00:01:11Z,- JijiTheCreator pull request closed w/o merging: [3964](https://github.com/hackforla/website/pull/3964#event-8643954682) at 2023-03-01 04:01 PM PST -JimGeist,2468,SKILLS ISSUE -JimGeist,2021-11-10T03:57:21Z,- JimGeist opened issue: [2468](https://github.com/hackforla/website/issues/2468) at 2021-11-09 07:57 PM PST -JimGeist,2021-11-10T03:57:55Z,- JimGeist assigned to issue: [2468](https://github.com/hackforla/website/issues/2468) at 2021-11-09 07:57 PM PST -JimGeist,2021-11-13T17:58:20Z,- JimGeist commented on issue: [2468](https://github.com/hackforla/website/issues/2468#issuecomment-968109086) at 2021-11-13 09:58 AM PST -JimGeist,2021-11-15T03:17:35Z,- JimGeist assigned to issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-953524913) at 2021-11-14 07:17 PM PST -JimGeist,2021-11-16T03:45:20Z,- JimGeist opened pull request: [2491](https://github.com/hackforla/website/pull/2491) at 2021-11-15 07:45 PM PST -JimGeist,2021-11-16T03:50:34Z,- JimGeist commented on pull request: [2491](https://github.com/hackforla/website/pull/2491#issuecomment-969831875) at 2021-11-15 07:50 PM PST -JimGeist,2021-11-16T18:33:52Z,- JimGeist pull request merged: [2491](https://github.com/hackforla/website/pull/2491#event-5626988962) at 2021-11-16 10:33 AM PST -JimGeist,2021-11-17T01:03:21Z,- JimGeist closed issue as completed: [2468](https://github.com/hackforla/website/issues/2468#event-5628673101) at 2021-11-16 05:03 PM PST -JimGeist,2021-11-17T04:16:53Z,- JimGeist assigned to issue: [2237](https://github.com/hackforla/website/issues/2237) at 2021-11-16 08:16 PM PST -JimGeist,2021-11-20T02:12:22Z,- JimGeist commented on issue: [2237](https://github.com/hackforla/website/issues/2237#issuecomment-974576026) at 2021-11-19 06:12 PM PST -JimGeist,2021-11-21T23:32:09Z,- JimGeist opened pull request: [2507](https://github.com/hackforla/website/pull/2507) at 2021-11-21 03:32 PM PST -JimGeist,2021-11-22T00:05:03Z,- JimGeist commented on issue: [2237](https://github.com/hackforla/website/issues/2237#issuecomment-974925709) at 2021-11-21 04:05 PM PST -JimGeist,2021-11-22T20:17:50Z,- JimGeist pull request merged: [2507](https://github.com/hackforla/website/pull/2507#event-5656470350) at 2021-11-22 12:17 PM PST -JimGeist,2021-11-30T04:30:58Z,- JimGeist assigned to issue: [2383](https://github.com/hackforla/website/issues/2383#issuecomment-956029832) at 2021-11-29 08:30 PM PST -JimGeist,2021-12-02T03:28:57Z,- JimGeist commented on issue: [2383](https://github.com/hackforla/website/issues/2383#issuecomment-984260240) at 2021-12-01 07:28 PM PST -JimGeist,2021-12-02T05:19:12Z,- JimGeist opened pull request: [2535](https://github.com/hackforla/website/pull/2535) at 2021-12-01 09:19 PM PST -JimGeist,2021-12-07T00:13:01Z,- JimGeist submitted pull request review: [2538](https://github.com/hackforla/website/pull/2538#pullrequestreview-824633883) at 2021-12-06 04:13 PM PST -JimGeist,2021-12-07T03:44:20Z,- JimGeist commented on issue: [2383](https://github.com/hackforla/website/issues/2383#issuecomment-987541249) at 2021-12-06 07:44 PM PST -JimGeist,2021-12-08T02:38:56Z,- JimGeist pull request merged: [2535](https://github.com/hackforla/website/pull/2535#event-5731117988) at 2021-12-07 06:38 PM PST -JimGeist,2021-12-12T04:30:48Z,- JimGeist assigned to issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-955088300) at 2021-12-11 08:30 PM PST -JimGeist,2021-12-14T03:07:52Z,- JimGeist submitted pull request review: [2574](https://github.com/hackforla/website/pull/2574#pullrequestreview-830971085) at 2021-12-13 07:07 PM PST -JimGeist,2021-12-14T03:54:04Z,- JimGeist submitted pull request review: [2566](https://github.com/hackforla/website/pull/2566#pullrequestreview-830990411) at 2021-12-13 07:54 PM PST -JimGeist,2021-12-14T23:50:52Z,- JimGeist submitted pull request review: [2566](https://github.com/hackforla/website/pull/2566#pullrequestreview-832160917) at 2021-12-14 03:50 PM PST -JimGeist,2021-12-17T01:27:36Z,- JimGeist opened pull request: [2594](https://github.com/hackforla/website/pull/2594) at 2021-12-16 05:27 PM PST -JimGeist,2021-12-17T05:10:17Z,- JimGeist commented on issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-996442602) at 2021-12-16 09:10 PM PST -JimGeist,2021-12-18T03:08:29Z,- JimGeist submitted pull request review: [2588](https://github.com/hackforla/website/pull/2588#pullrequestreview-835737901) at 2021-12-17 07:08 PM PST -JimGeist,2021-12-20T14:48:04Z,- JimGeist commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-997989663) at 2021-12-20 06:48 AM PST -JimGeist,2021-12-20T14:58:03Z,- JimGeist assigned to issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-992033003) at 2021-12-20 06:58 AM PST -JimGeist,2021-12-20T15:00:42Z,- JimGeist commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-998000226) at 2021-12-20 07:00 AM PST -JimGeist,2021-12-21T02:17:17Z,- JimGeist unassigned from issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-998155986) at 2021-12-20 06:17 PM PST -JimGeist,2021-12-21T02:55:46Z,- JimGeist opened issue: [2610](https://github.com/hackforla/website/issues/2610) at 2021-12-20 06:55 PM PST -JimGeist,2021-12-21T10:29:27Z,- JimGeist pull request merged: [2594](https://github.com/hackforla/website/pull/2594#event-5798032848) at 2021-12-21 02:29 AM PST -JimGeist,2021-12-21T16:17:18Z,- JimGeist assigned to issue: [2456](https://github.com/hackforla/website/issues/2456#issuecomment-962257808) at 2021-12-21 08:17 AM PST -JimGeist,2021-12-23T03:19:07Z,- JimGeist submitted pull request review: [2603](https://github.com/hackforla/website/pull/2603#pullrequestreview-838977755) at 2021-12-22 07:19 PM PST -JimGeist,2021-12-23T03:22:17Z,- JimGeist submitted pull request review: [2603](https://github.com/hackforla/website/pull/2603#pullrequestreview-838978640) at 2021-12-22 07:22 PM PST -JimGeist,2021-12-23T04:23:16Z,- JimGeist submitted pull request review: [2603](https://github.com/hackforla/website/pull/2603#pullrequestreview-838996508) at 2021-12-22 08:23 PM PST -JimGeist,2021-12-26T18:36:51Z,- JimGeist commented on issue: [2456](https://github.com/hackforla/website/issues/2456#issuecomment-1001225928) at 2021-12-26 10:36 AM PST -JimGeist,2021-12-30T00:19:59Z,- JimGeist commented on issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1002822575) at 2021-12-29 04:19 PM PST -JimGeist,2021-12-30T00:58:12Z,- JimGeist opened pull request: [2644](https://github.com/hackforla/website/pull/2644) at 2021-12-29 04:58 PM PST -JimGeist,2021-12-30T02:29:56Z,- JimGeist commented on issue: [2456](https://github.com/hackforla/website/issues/2456#issuecomment-1002846341) at 2021-12-29 06:29 PM PST -JimGeist,2021-12-31T01:49:59Z,- JimGeist opened pull request: [2647](https://github.com/hackforla/website/pull/2647) at 2021-12-30 05:49 PM PST -JimGeist,2022-01-07T12:43:18Z,- JimGeist pull request merged: [2647](https://github.com/hackforla/website/pull/2647#event-5857669548) at 2022-01-07 04:43 AM PST -JimGeist,2022-01-09T17:35:57Z,- JimGeist commented on pull request: [2644](https://github.com/hackforla/website/pull/2644#issuecomment-1008341780) at 2022-01-09 09:35 AM PST -JimGeist,2022-01-16T19:28:51Z,- JimGeist unassigned from issue: [2408](https://github.com/hackforla/website/issues/2408#event-5900708128) at 2022-01-16 11:28 AM PST -JimGeist,2022-01-23T19:32:03Z,- JimGeist pull request closed w/o merging: [2644](https://github.com/hackforla/website/pull/2644#event-5938638877) at 2022-01-23 11:32 AM PST -Jimmy-Vu,4611,SKILLS ISSUE -Jimmy-Vu,2023-05-09T03:06:34Z,- Jimmy-Vu opened issue: [4611](https://github.com/hackforla/website/issues/4611) at 2023-05-08 08:06 PM PDT -Jimmy-Vu,2023-05-09T03:52:14Z,- Jimmy-Vu assigned to issue: [4611](https://github.com/hackforla/website/issues/4611) at 2023-05-08 08:52 PM PDT -jiyanpatil07,2023-05-02T18:18:54Z,- jiyanpatil07 commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1531938448) at 2023-05-02 11:18 AM PDT -jjandoc,2017-08-23T02:38:08Z,- jjandoc commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-324204793) at 2017-08-22 07:38 PM PDT -jjandoc,2017-08-23T03:28:51Z,- jjandoc commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-324211077) at 2017-08-22 08:28 PM PDT -jjandoc,2017-08-23T22:55:04Z,- jjandoc commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-324485289) at 2017-08-23 03:55 PM PDT -jjandoc,2017-08-23T23:00:03Z,- jjandoc opened issue: [20](https://github.com/hackforla/website/issues/20) at 2017-08-23 04:00 PM PDT -jjandoc,2018-01-17T04:12:23Z,- jjandoc opened issue: [18](https://github.com/hackforla/website/issues/18) at 2018-01-16 08:12 PM PST -jjandoc,2018-06-27T03:16:06Z,- jjandoc opened pull request: [1](https://github.com/hackforla/website/pull/1) at 2018-06-26 08:16 PM PDT -jjandoc,2018-06-27T03:16:13Z,- jjandoc pull request merged: [1](https://github.com/hackforla/website/pull/1#event-1702899961) at 2018-06-26 08:16 PM PDT -jjandoc,2018-07-18T03:33:26Z,- jjandoc commented on pull request: [2](https://github.com/hackforla/website/pull/2#issuecomment-405798168) at 2018-07-17 08:33 PM PDT -jjandoc,2018-07-18T03:50:10Z,- jjandoc opened issue: [3](https://github.com/hackforla/website/issues/3) at 2018-07-17 08:50 PM PDT -jjandoc,2018-07-18T03:51:35Z,- jjandoc opened issue: [4](https://github.com/hackforla/website/issues/4) at 2018-07-17 08:51 PM PDT -jjandoc,2018-07-18T03:52:39Z,- jjandoc opened issue: [5](https://github.com/hackforla/website/issues/5) at 2018-07-17 08:52 PM PDT -jjandoc,2018-07-18T03:53:51Z,- jjandoc opened issue: [6](https://github.com/hackforla/website/issues/6) at 2018-07-17 08:53 PM PDT -jjandoc,2018-07-18T03:58:35Z,- jjandoc assigned to issue: [6](https://github.com/hackforla/website/issues/6) at 2018-07-17 08:58 PM PDT -jjandoc,2018-07-18T03:58:48Z,- jjandoc unassigned from issue: [6](https://github.com/hackforla/website/issues/6) at 2018-07-17 08:58 PM PDT -jjandoc,2018-07-25T04:02:37Z,- jjandoc closed issue as completed: [5](https://github.com/hackforla/website/issues/5#event-1751658546) at 2018-07-24 09:02 PM PDT -jjandoc,2018-07-25T04:02:43Z,- jjandoc closed issue as completed: [3](https://github.com/hackforla/website/issues/3#event-1751658615) at 2018-07-24 09:02 PM PDT -jjandoc,2018-07-31T22:15:48Z,- jjandoc opened issue: [7](https://github.com/hackforla/website/issues/7) at 2018-07-31 03:15 PM PDT -jjandoc,2018-07-31T22:16:53Z,- jjandoc commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-409386195) at 2018-07-31 03:16 PM PDT -jjandoc,2018-08-08T02:54:17Z,- jjandoc commented on issue: [4](https://github.com/hackforla/website/issues/4#issuecomment-411267431) at 2018-08-07 07:54 PM PDT -jjandoc,2018-08-08T02:54:19Z,- jjandoc closed issue as completed: [4](https://github.com/hackforla/website/issues/4#event-1776745963) at 2018-08-07 07:54 PM PDT -jjandoc,2018-08-10T00:02:17Z,- jjandoc opened pull request: [8](https://github.com/hackforla/website/pull/8) at 2018-08-09 05:02 PM PDT -jjandoc,2018-08-28T21:18:18Z,- jjandoc pull request closed w/o merging: [8](https://github.com/hackforla/website/pull/8#event-1814181389) at 2018-08-28 02:18 PM PDT -jjandoc,2019-04-10T16:38:33Z,- jjandoc submitted pull request review: [61](https://github.com/hackforla/website/pull/61#pullrequestreview-225088466) at 2019-04-10 09:38 AM PDT -jjandoc,2019-05-09T00:27:06Z,- jjandoc closed issue as completed: [6](https://github.com/hackforla/website/issues/6#event-2328812175) at 2019-05-08 05:27 PM PDT -jjung99,2021-11-02T19:28:27Z,- jjung99 commented on issue: [2430](https://github.com/hackforla/website/issues/2430#issuecomment-958101718) at 2021-11-02 12:28 PM PDT -jleung7158,5780,SKILLS ISSUE -jleung7158,2023-10-25T02:54:59Z,- jleung7158 opened issue: [5780](https://github.com/hackforla/website/issues/5780) at 2023-10-24 07:54 PM PDT -jleung7158,2023-10-25T02:55:10Z,- jleung7158 assigned to issue: [5780](https://github.com/hackforla/website/issues/5780) at 2023-10-24 07:55 PM PDT -jleung7158,2023-10-30T21:53:07Z,- jleung7158 assigned to issue: [5760](https://github.com/hackforla/website/issues/5760#issuecomment-1778465092) at 2023-10-30 02:53 PM PDT -jleung7158,2023-10-30T21:58:19Z,- jleung7158 commented on issue: [5760](https://github.com/hackforla/website/issues/5760#issuecomment-1786111501) at 2023-10-30 02:58 PM PDT -jleung7158,2023-10-30T21:58:20Z,- jleung7158 closed issue by PR 5835: [5760](https://github.com/hackforla/website/issues/5760#event-10813471125) at 2023-10-30 02:58 PM PDT -jleung7158,2023-10-30T21:58:22Z,- jleung7158 reopened issue: [5760](https://github.com/hackforla/website/issues/5760#event-10813471125) at 2023-10-30 02:58 PM PDT -jleung7158,2023-10-30T22:02:36Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1786116188) at 2023-10-30 03:02 PM PDT -jleung7158,2023-10-30T22:49:07Z,- jleung7158 opened pull request: [5811](https://github.com/hackforla/website/pull/5811) at 2023-10-30 03:49 PM PDT -jleung7158,2023-10-30T22:52:40Z,- jleung7158 commented on issue: [5760](https://github.com/hackforla/website/issues/5760#issuecomment-1786170273) at 2023-10-30 03:52 PM PDT -jleung7158,2023-10-31T20:44:38Z,- jleung7158 commented on pull request: [5811](https://github.com/hackforla/website/pull/5811#issuecomment-1788003609) at 2023-10-31 01:44 PM PDT -jleung7158,2023-10-31T20:51:03Z,- jleung7158 commented on pull request: [5811](https://github.com/hackforla/website/pull/5811#issuecomment-1788016973) at 2023-10-31 01:51 PM PDT -jleung7158,2023-10-31T21:11:30Z,- jleung7158 commented on pull request: [5811](https://github.com/hackforla/website/pull/5811#issuecomment-1788041477) at 2023-10-31 02:11 PM PDT -jleung7158,2023-11-04T04:49:14Z,- jleung7158 pull request closed w/o merging: [5811](https://github.com/hackforla/website/pull/5811#event-10861931227) at 2023-11-03 08:49 PM PST -jleung7158,2023-11-04T05:07:04Z,- jleung7158 commented on pull request: [5811](https://github.com/hackforla/website/pull/5811#issuecomment-1793342566) at 2023-11-03 09:07 PM PST -jleung7158,2023-11-04T05:31:22Z,- jleung7158 opened pull request: [5835](https://github.com/hackforla/website/pull/5835) at 2023-11-03 09:31 PM PST -jleung7158,2023-11-04T05:37:19Z,- jleung7158 commented on pull request: [5835](https://github.com/hackforla/website/pull/5835#issuecomment-1793350186) at 2023-11-03 09:37 PM PST -jleung7158,2023-11-08T06:45:47Z,- jleung7158 commented on pull request: [5835](https://github.com/hackforla/website/pull/5835#issuecomment-1801189623) at 2023-11-07 10:45 PM PST -jleung7158,2023-11-11T06:30:50Z,- jleung7158 commented on pull request: [5835](https://github.com/hackforla/website/pull/5835#issuecomment-1806714612) at 2023-11-10 10:30 PM PST -jleung7158,2023-11-13T21:08:06Z,- jleung7158 pull request merged: [5835](https://github.com/hackforla/website/pull/5835#event-10947109613) at 2023-11-13 01:08 PM PST -jleung7158,2023-11-13T23:53:58Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1809318296) at 2023-11-13 03:53 PM PST -jleung7158,2023-11-13T23:54:16Z,- jleung7158 assigned to issue: [5801](https://github.com/hackforla/website/issues/5801) at 2023-11-13 03:54 PM PST -jleung7158,2023-11-14T01:24:59Z,- jleung7158 opened pull request: [5901](https://github.com/hackforla/website/pull/5901) at 2023-11-13 05:24 PM PST -jleung7158,2023-11-14T01:25:48Z,- jleung7158 commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1809393817) at 2023-11-13 05:25 PM PST -jleung7158,2023-11-14T01:26:03Z,- jleung7158 commented on issue: [5801](https://github.com/hackforla/website/issues/5801#issuecomment-1809393989) at 2023-11-13 05:26 PM PST -jleung7158,2023-11-16T05:03:27Z,- jleung7158 commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1813794545) at 2023-11-15 09:03 PM PST -jleung7158,2023-11-17T06:47:41Z,- jleung7158 commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1815828076) at 2023-11-16 10:47 PM PST -jleung7158,2023-11-21T06:36:00Z,- jleung7158 commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1820321107) at 2023-11-20 10:36 PM PST -jleung7158,2023-11-21T19:05:07Z,- jleung7158 pull request merged: [5901](https://github.com/hackforla/website/pull/5901#event-11028213310) at 2023-11-21 11:05 AM PST -jleung7158,2023-11-27T21:40:17Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1828661515) at 2023-11-27 01:40 PM PST -jleung7158,2023-11-27T21:54:14Z,- jleung7158 assigned to issue: [5694](https://github.com/hackforla/website/issues/5694) at 2023-11-27 01:54 PM PST -jleung7158,2023-12-02T04:40:42Z,- jleung7158 commented on issue: [5694](https://github.com/hackforla/website/issues/5694#issuecomment-1837037577) at 2023-12-01 08:40 PM PST -jleung7158,2023-12-07T04:41:48Z,- jleung7158 opened pull request: [5974](https://github.com/hackforla/website/pull/5974) at 2023-12-06 08:41 PM PST -jleung7158,2023-12-09T05:22:03Z,- jleung7158 commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1848241074) at 2023-12-08 09:22 PM PST -jleung7158,2023-12-15T07:33:08Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1857408389) at 2023-12-14 11:33 PM PST -jleung7158,2023-12-15T07:35:28Z,- jleung7158 commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1857410930) at 2023-12-14 11:35 PM PST -jleung7158,2023-12-26T10:45:58Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1869451492) at 2023-12-26 02:45 AM PST -jleung7158,2024-01-10T02:51:57Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1884108582) at 2024-01-09 06:51 PM PST -jleung7158,2024-01-10T04:43:16Z,- jleung7158 pull request merged: [5974](https://github.com/hackforla/website/pull/5974#event-11438406446) at 2024-01-09 08:43 PM PST -jleung7158,2024-01-17T03:13:22Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1894868645) at 2024-01-16 07:13 PM PST -jleung7158,2024-01-25T08:07:58Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1909603782) at 2024-01-25 12:07 AM PST -jleung7158,2024-02-13T06:52:47Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1940522840) at 2024-02-12 10:52 PM PST -jleung7158,2024-02-22T11:27:38Z,- jleung7158 assigned to issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1801132124) at 2024-02-22 03:27 AM PST -jleung7158,2024-02-22T11:29:18Z,- jleung7158 commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1959257785) at 2024-02-22 03:29 AM PST -jleung7158,2024-02-23T12:23:58Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1961235386) at 2024-02-23 04:23 AM PST -jleung7158,2024-03-08T03:29:54Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1984980635) at 2024-03-07 07:29 PM PST -jleung7158,2024-03-10T02:35:17Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1987046839) at 2024-03-09 07:35 PM PDT -jleung7158,2024-03-18T19:37:37Z,- jleung7158 commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2004771094) at 2024-03-18 12:37 PM PDT -jleung7158,2024-03-18T19:38:00Z,- jleung7158 unassigned from issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1999061307) at 2024-03-18 12:38 PM PDT -jlevot,6029,SKILLS ISSUE -jlevot,2024-01-03T03:43:21Z,- jlevot opened issue: [6029](https://github.com/hackforla/website/issues/6029) at 2024-01-02 07:43 PM PST -jlevot,2024-01-03T03:43:22Z,- jlevot assigned to issue: [6029](https://github.com/hackforla/website/issues/6029) at 2024-01-02 07:43 PM PST -jlevot,2024-01-03T04:28:39Z,- jlevot assigned to issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1843281251) at 2024-01-02 08:28 PM PST -jlevot,2024-01-03T17:17:55Z,- jlevot commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1875707261) at 2024-01-03 09:17 AM PST -jlevot,2024-01-03T22:09:01Z,- jlevot opened pull request: [6056](https://github.com/hackforla/website/pull/6056) at 2024-01-03 02:09 PM PST -jlevot,2024-01-04T15:31:07Z,- jlevot pull request merged: [6056](https://github.com/hackforla/website/pull/6056#event-11391428150) at 2024-01-04 07:31 AM PST -jlevot,2024-01-08T23:15:02Z,- jlevot assigned to issue: [6074](https://github.com/hackforla/website/issues/6074) at 2024-01-08 03:15 PM PST -jlevot,2024-01-08T23:20:30Z,- jlevot unassigned from issue: [6074](https://github.com/hackforla/website/issues/6074) at 2024-01-08 03:20 PM PST -jlevot,2024-01-08T23:28:13Z,- jlevot submitted pull request review: [6077](https://github.com/hackforla/website/pull/6077#pullrequestreview-1810190772) at 2024-01-08 03:28 PM PST -jlevot,2024-01-11T01:10:00Z,- jlevot assigned to issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1772202539) at 2024-01-10 05:10 PM PST -jlevot,2024-01-11T01:11:08Z,- jlevot commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1886028922) at 2024-01-10 05:11 PM PST -jlevot,2024-01-11T01:27:14Z,- jlevot opened pull request: [6099](https://github.com/hackforla/website/pull/6099) at 2024-01-10 05:27 PM PST -jlevot,2024-01-11T02:00:06Z,- jlevot submitted pull request review: [6098](https://github.com/hackforla/website/pull/6098#pullrequestreview-1814522404) at 2024-01-10 06:00 PM PST -jlevot,2024-01-12T01:55:18Z,- jlevot submitted pull request review: [6100](https://github.com/hackforla/website/pull/6100#pullrequestreview-1817226649) at 2024-01-11 05:55 PM PST -jlevot,2024-01-12T18:39:13Z,- jlevot commented on pull request: [6102](https://github.com/hackforla/website/pull/6102#issuecomment-1889779481) at 2024-01-12 10:39 AM PST -jlevot,2024-01-12T19:51:31Z,- jlevot submitted pull request review: [6081](https://github.com/hackforla/website/pull/6081#pullrequestreview-1818947923) at 2024-01-12 11:51 AM PST -jlevot,2024-01-12T23:31:55Z,- jlevot submitted pull request review: [6103](https://github.com/hackforla/website/pull/6103#pullrequestreview-1819336842) at 2024-01-12 03:31 PM PST -jlevot,2024-01-13T19:41:08Z,- jlevot commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1890749658) at 2024-01-13 11:41 AM PST -jlevot,2024-01-17T04:28:51Z,- jlevot pull request merged: [6099](https://github.com/hackforla/website/pull/6099#event-11506307094) at 2024-01-16 08:28 PM PST -jlu9d2,4073,SKILLS ISSUE -jlu9d2,2023-03-01T04:32:36Z,- jlu9d2 opened issue: [4073](https://github.com/hackforla/website/issues/4073) at 2023-02-28 08:32 PM PST -jlu9d2,2023-03-01T04:43:39Z,- jlu9d2 assigned to issue: [4073](https://github.com/hackforla/website/issues/4073) at 2023-02-28 08:43 PM PST -jlu9d2,2023-03-03T03:58:45Z,- jlu9d2 assigned to issue: [4045](https://github.com/hackforla/website/issues/4045) at 2023-03-02 07:58 PM PST -jlu9d2,2023-03-03T05:22:02Z,- jlu9d2 closed issue by PR 1: [4045](https://github.com/hackforla/website/issues/4045#event-8656313348) at 2023-03-02 09:22 PM PST -jlu9d2,2023-03-03T05:45:47Z,- jlu9d2 opened pull request: [4096](https://github.com/hackforla/website/pull/4096) at 2023-03-02 09:45 PM PST -jlu9d2,2023-03-03T05:51:38Z,- jlu9d2 reopened issue: [4045](https://github.com/hackforla/website/issues/4045#event-8656313348) at 2023-03-02 09:51 PM PST -jlu9d2,2023-03-03T06:10:31Z,- jlu9d2 commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1453028109) at 2023-03-02 10:10 PM PST -jlu9d2,2023-03-03T06:13:49Z,- jlu9d2 commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1453033746) at 2023-03-02 10:13 PM PST -jlu9d2,2023-03-03T06:25:09Z,- jlu9d2 commented on pull request: [4096](https://github.com/hackforla/website/pull/4096#issuecomment-1453041826) at 2023-03-02 10:25 PM PST -jlu9d2,2023-03-03T23:16:43Z,- jlu9d2 pull request merged: [4096](https://github.com/hackforla/website/pull/4096#event-8664309450) at 2023-03-03 03:16 PM PST -jlu9d2,2023-03-04T00:48:38Z,- jlu9d2 assigned to issue: [4026](https://github.com/hackforla/website/issues/4026) at 2023-03-03 04:48 PM PST -jlu9d2,2023-03-04T00:54:29Z,- jlu9d2 unassigned from issue: [4026](https://github.com/hackforla/website/issues/4026#issuecomment-1454306318) at 2023-03-03 04:54 PM PST -jlu9d2,2023-03-04T04:17:22Z,- jlu9d2 assigned to issue: [3925](https://github.com/hackforla/website/issues/3925#event-8505706819) at 2023-03-03 08:17 PM PST -jlu9d2,2023-03-04T04:53:01Z,- jlu9d2 opened pull request: [4107](https://github.com/hackforla/website/pull/4107) at 2023-03-03 08:53 PM PST -jlu9d2,2023-03-04T04:56:33Z,- jlu9d2 commented on issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1454434424) at 2023-03-03 08:56 PM PST -jlu9d2,2023-03-05T19:22:02Z,- jlu9d2 commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1455179816) at 2023-03-05 11:22 AM PST -jlu9d2,2023-03-05T19:23:05Z,- jlu9d2 closed issue as completed: [4073](https://github.com/hackforla/website/issues/4073#event-8668529162) at 2023-03-05 11:23 AM PST -jlu9d2,2023-03-05T19:34:34Z,- jlu9d2 commented on pull request: [4107](https://github.com/hackforla/website/pull/4107#issuecomment-1455182701) at 2023-03-05 11:34 AM PST -jlu9d2,2023-03-07T19:30:35Z,- jlu9d2 pull request merged: [4107](https://github.com/hackforla/website/pull/4107#event-8689636439) at 2023-03-07 11:30 AM PST -jmarinit,7217,SKILLS ISSUE -jmarinit,2024-08-06T03:53:09Z,- jmarinit opened issue: [7217](https://github.com/hackforla/website/issues/7217) at 2024-08-05 08:53 PM PDT -jmarinit,2024-08-06T03:54:41Z,- jmarinit assigned to issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2270330873) at 2024-08-05 08:54 PM PDT -jmarinit,2024-08-08T02:42:24Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2274841926) at 2024-08-07 07:42 PM PDT -jmarinit,2024-08-20T20:45:34Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2299733919) at 2024-08-20 01:45 PM PDT -jmarinit,2024-08-20T20:49:28Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2299739826) at 2024-08-20 01:49 PM PDT -jmarinit,2024-08-20T22:00:12Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2299835379) at 2024-08-20 03:00 PM PDT -jmarinit,2024-09-06T04:03:01Z,- jmarinit assigned to issue: [7291](https://github.com/hackforla/website/issues/7291) at 2024-09-05 09:03 PM PDT -jmarinit,2024-09-06T21:31:25Z,- jmarinit commented on issue: [7291](https://github.com/hackforla/website/issues/7291#issuecomment-2334837973) at 2024-09-06 02:31 PM PDT -jmarinit,2024-09-06T21:41:00Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2334847604) at 2024-09-06 02:41 PM PDT -jmarinit,2024-09-10T02:48:17Z,- jmarinit opened pull request: [7428](https://github.com/hackforla/website/pull/7428) at 2024-09-09 07:48 PM PDT -jmarinit,2024-09-13T02:44:21Z,- jmarinit commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2347932295) at 2024-09-12 07:44 PM PDT -jmarinit,2024-09-16T19:53:24Z,- jmarinit pull request merged: [7428](https://github.com/hackforla/website/pull/7428#event-14279096310) at 2024-09-16 12:53 PM PDT -jmarinit,2024-09-26T18:20:50Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2377639833) at 2024-09-26 11:20 AM PDT -jmarinit,2024-12-06T06:58:17Z,- jmarinit commented on issue: [7790](https://github.com/hackforla/website/issues/7790#issuecomment-2522276491) at 2024-12-05 10:58 PM PST -jmarinit,2024-12-06T06:59:10Z,- jmarinit opened issue: [7796](https://github.com/hackforla/website/issues/7796) at 2024-12-05 10:59 PM PST -jmarinit,2024-12-12T05:20:52Z,- jmarinit assigned to issue: [7780](https://github.com/hackforla/website/issues/7780#issuecomment-2515223180) at 2024-12-11 09:20 PM PST -jmarinit,2024-12-12T05:21:07Z,- jmarinit unassigned from issue: [7780](https://github.com/hackforla/website/issues/7780#issuecomment-2515223180) at 2024-12-11 09:21 PM PST -jmarinit,2024-12-12T05:30:49Z,- jmarinit assigned to issue: [7433](https://github.com/hackforla/website/issues/7433) at 2024-12-11 09:30 PM PST -jmarinit,2024-12-12T06:02:59Z,- jmarinit commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2537890206) at 2024-12-11 10:02 PM PST -jmarinit,2024-12-18T03:32:14Z,- jmarinit commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2550240760) at 2024-12-17 07:32 PM PST -jmarinit,2024-12-18T03:33:24Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2550241935) at 2024-12-17 07:33 PM PST -jmarinit,2025-01-09T04:23:05Z,- jmarinit commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2579154094) at 2025-01-08 08:23 PM PST -jmarinit,2025-01-09T05:42:11Z,- jmarinit commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2579223554) at 2025-01-08 09:42 PM PST -jmarinit,2025-01-09T06:36:47Z,- jmarinit commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2579278610) at 2025-01-08 10:36 PM PST -jmarinit,2025-01-10T22:48:56Z,- jmarinit opened pull request: [7822](https://github.com/hackforla/website/pull/7822) at 2025-01-10 02:48 PM PST -jmarinit,2025-01-10T23:06:51Z,- jmarinit commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2584716175) at 2025-01-10 03:06 PM PST -jmarinit,2025-01-16T06:37:55Z,- jmarinit commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2594646925) at 2025-01-15 10:37 PM PST -jmarinit,2025-01-22T05:42:16Z,- jmarinit pull request merged: [7822](https://github.com/hackforla/website/pull/7822#event-16023690511) at 2025-01-21 09:42 PM PST -Jmmcclo2023,4993,SKILLS ISSUE -Jmmcclo2023,2023-07-18T02:23:25Z,- Jmmcclo2023 opened issue: [4993](https://github.com/hackforla/website/issues/4993) at 2023-07-17 07:23 PM PDT -Jmmcclo2023,2023-07-26T02:59:27Z,- Jmmcclo2023 assigned to issue: [4808](https://github.com/hackforla/website/issues/4808) at 2023-07-25 07:59 PM PDT -Jmmcclo2023,2023-07-26T03:32:40Z,- Jmmcclo2023 commented on issue: [4993](https://github.com/hackforla/website/issues/4993#issuecomment-1650924973) at 2023-07-25 08:32 PM PDT -Jmmcclo2023,2023-07-27T20:28:28Z,- Jmmcclo2023 commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1654524332) at 2023-07-27 01:28 PM PDT -Jmmcclo2023,2023-07-31T21:08:45Z,- Jmmcclo2023 commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1659164697) at 2023-07-31 02:08 PM PDT -Jmmcclo2023,2023-08-05T00:36:29Z,- Jmmcclo2023 opened pull request: [5144](https://github.com/hackforla/website/pull/5144) at 2023-08-04 05:36 PM PDT -Jmmcclo2023,2023-08-06T11:38:54Z,- Jmmcclo2023 pull request merged: [5144](https://github.com/hackforla/website/pull/5144#event-10017148601) at 2023-08-06 04:38 AM PDT -Jmmcclo2023,2023-08-16T19:40:14Z,- Jmmcclo2023 closed issue as completed: [4993](https://github.com/hackforla/website/issues/4993#event-10112110513) at 2023-08-16 12:40 PM PDT -Jmmcclo2023,2023-08-20T19:43:48Z,- Jmmcclo2023 assigned to issue: [5199](https://github.com/hackforla/website/issues/5199#event-10111899727) at 2023-08-20 12:43 PM PDT -Jmmcclo2023,2023-08-21T03:10:55Z,- Jmmcclo2023 commented on issue: [5199](https://github.com/hackforla/website/issues/5199#issuecomment-1685559209) at 2023-08-20 08:10 PM PDT -Jmmcclo2023,2023-08-22T16:36:12Z,- Jmmcclo2023 opened pull request: [5283](https://github.com/hackforla/website/pull/5283) at 2023-08-22 09:36 AM PDT -Jmmcclo2023,2023-08-22T23:36:47Z,- Jmmcclo2023 commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1689058198) at 2023-08-22 04:36 PM PDT -Jmmcclo2023,2023-08-27T02:41:22Z,- Jmmcclo2023 pull request merged: [5283](https://github.com/hackforla/website/pull/5283#event-10201023588) at 2023-08-26 07:41 PM PDT -Jmmcclo2023,2023-08-28T19:54:10Z,- Jmmcclo2023 commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1696308869) at 2023-08-28 12:54 PM PDT -Jmmcclo2023,2023-08-28T22:21:54Z,- Jmmcclo2023 submitted pull request review: [5327](https://github.com/hackforla/website/pull/5327#pullrequestreview-1599207604) at 2023-08-28 03:21 PM PDT -Jmmcclo2023,2023-08-30T19:55:13Z,- Jmmcclo2023 commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1699752357) at 2023-08-30 12:55 PM PDT -Jmmcclo2023,2023-08-30T20:16:46Z,- Jmmcclo2023 submitted pull request review: [5354](https://github.com/hackforla/website/pull/5354#pullrequestreview-1603428968) at 2023-08-30 01:16 PM PDT -Jmmcclo2023,2023-09-14T18:33:55Z,- Jmmcclo2023 assigned to issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1717118867) at 2023-09-14 11:33 AM PDT -Jmmcclo2023,2023-09-14T18:44:38Z,- Jmmcclo2023 commented on issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1719963203) at 2023-09-14 11:44 AM PDT -Jmmcclo2023,2023-10-01T12:26:58Z,- Jmmcclo2023 assigned to issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741847713) at 2023-10-01 05:26 AM PDT -Jmmcclo2023,2023-10-01T12:28:56Z,- Jmmcclo2023 unassigned from issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1742065576) at 2023-10-01 05:28 AM PDT -Jmmcclo2023,2024-02-14T06:37:01Z,- Jmmcclo2023 assigned to issue: [4993](https://github.com/hackforla/website/issues/4993#event-10112110513) at 2024-02-13 10:37 PM PST -jmrshll,2019-11-23T04:00:11Z,- jmrshll assigned to issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -jmrshll,2019-11-26T03:24:12Z,- jmrshll assigned to issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:24 PM PST -jmrshll,2020-02-16T19:21:17Z,- jmrshll unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-584990444) at 2020-02-16 11:21 AM PST -jmrshll,2020-03-30T04:37:52Z,- jmrshll unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-03-29 09:37 PM PDT -jnmrles,2496,SKILLS ISSUE -jnmrles,2021-11-17T03:47:04Z,- jnmrles assigned to issue: [2496](https://github.com/hackforla/website/issues/2496) at 2021-11-16 07:47 PM PST -jnmrles,2021-12-04T19:30:35Z,- jnmrles closed issue as completed: [2496](https://github.com/hackforla/website/issues/2496#event-5715981735) at 2021-12-04 11:30 AM PST -jnmrles,2021-12-04T19:32:34Z,- jnmrles assigned to issue: [2425](https://github.com/hackforla/website/issues/2425#issuecomment-964405965) at 2021-12-04 11:32 AM PST -jnmrles,2021-12-04T20:13:33Z,- jnmrles opened pull request: [2543](https://github.com/hackforla/website/pull/2543) at 2021-12-04 12:13 PM PST -jnmrles,2021-12-04T23:45:37Z,- jnmrles pull request merged: [2543](https://github.com/hackforla/website/pull/2543#event-5716188661) at 2021-12-04 03:45 PM PST -jnmrles,2021-12-10T16:44:08Z,- jnmrles assigned to issue: [2382](https://github.com/hackforla/website/issues/2382) at 2021-12-10 08:44 AM PST -jnmrles,2021-12-29T01:33:10Z,- jnmrles commented on issue: [2382](https://github.com/hackforla/website/issues/2382#issuecomment-1002353855) at 2021-12-28 05:33 PM PST -jnmrles,2021-12-29T02:07:49Z,- jnmrles assigned to issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-926945747) at 2021-12-28 06:07 PM PST -jnmrles,2021-12-29T03:20:06Z,- jnmrles opened pull request: [2643](https://github.com/hackforla/website/pull/2643) at 2021-12-28 07:20 PM PST -jnmrles,2022-02-16T02:32:25Z,- jnmrles unassigned from issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-926945747) at 2022-02-15 06:32 PM PST -jnmrles,2022-02-16T02:34:27Z,- jnmrles pull request closed w/o merging: [2643](https://github.com/hackforla/website/pull/2643#event-6079593203) at 2022-02-15 06:34 PM PST -jnmrles,2022-02-24T02:51:51Z,- jnmrles assigned to issue: [2726](https://github.com/hackforla/website/issues/2726#issuecomment-1024995606) at 2022-02-23 06:51 PM PST -jnmrles,2022-02-24T02:58:14Z,- jnmrles commented on issue: [2726](https://github.com/hackforla/website/issues/2726#issuecomment-1049445410) at 2022-02-23 06:58 PM PST -jnmrles,2022-02-24T03:18:17Z,- jnmrles opened pull request: [2881](https://github.com/hackforla/website/pull/2881) at 2022-02-23 07:18 PM PST -jnmrles,2022-02-24T07:00:37Z,- jnmrles assigned to issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1030472118) at 2022-02-23 11:00 PM PST -jnmrles,2022-02-24T07:12:28Z,- jnmrles commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1049558839) at 2022-02-23 11:12 PM PST -jnmrles,2022-02-24T22:16:06Z,- jnmrles unassigned from issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1050317245) at 2022-02-24 02:16 PM PST -jnmrles,2022-02-25T23:05:43Z,- jnmrles pull request merged: [2881](https://github.com/hackforla/website/pull/2881#event-6142369968) at 2022-02-25 03:05 PM PST -jnmrles,2022-02-26T06:52:29Z,- jnmrles assigned to issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1050317245) at 2022-02-25 10:52 PM PST -jnmrles,2022-03-22T21:57:27Z,- jnmrles opened pull request: [3001](https://github.com/hackforla/website/pull/3001) at 2022-03-22 02:57 PM PDT -jnmrles,2022-03-25T04:45:18Z,- jnmrles pull request merged: [3001](https://github.com/hackforla/website/pull/3001#event-6304640309) at 2022-03-24 09:45 PM PDT -jnmrles,2022-04-26T04:25:41Z,- jnmrles assigned to issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1094085497) at 2022-04-25 09:25 PM PDT -jnmrles,2022-07-03T18:23:06Z,- jnmrles unassigned from issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1173148805) at 2022-07-03 11:23 AM PDT -jnomad21,4985,SKILLS ISSUE -jnomad21,2023-07-18T01:59:26Z,- jnomad21 opened issue: [4985](https://github.com/hackforla/website/issues/4985) at 2023-07-17 06:59 PM PDT -jnomad21,2023-07-18T02:55:22Z,- jnomad21 assigned to issue: [4985](https://github.com/hackforla/website/issues/4985) at 2023-07-17 07:55 PM PDT -jnomad21,2023-07-19T00:01:32Z,- jnomad21 assigned to issue: [4954](https://github.com/hackforla/website/issues/4954#issuecomment-1638522327) at 2023-07-18 05:01 PM PDT -jnomad21,2023-07-19T00:24:21Z,- jnomad21 commented on issue: [4954](https://github.com/hackforla/website/issues/4954#issuecomment-1641193827) at 2023-07-18 05:24 PM PDT -jnomad21,2023-07-19T00:35:43Z,- jnomad21 opened pull request: [5006](https://github.com/hackforla/website/pull/5006) at 2023-07-18 05:35 PM PDT -jnomad21,2023-07-20T15:48:13Z,- jnomad21 commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1644168354) at 2023-07-20 08:48 AM PDT -jnomad21,2023-07-20T16:48:04Z,- jnomad21 commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1644258437) at 2023-07-20 09:48 AM PDT -jnomad21,2023-07-20T21:40:12Z,- jnomad21 assigned to issue: [5027](https://github.com/hackforla/website/issues/5027#issuecomment-1641613536) at 2023-07-20 02:40 PM PDT -jnomad21,2023-07-20T22:14:14Z,- jnomad21 commented on issue: [5027](https://github.com/hackforla/website/issues/5027#issuecomment-1644690178) at 2023-07-20 03:14 PM PDT -jnomad21,2023-07-20T22:31:04Z,- jnomad21 opened pull request: [5043](https://github.com/hackforla/website/pull/5043) at 2023-07-20 03:31 PM PDT -jnomad21,2023-07-22T10:37:17Z,- jnomad21 pull request merged: [5006](https://github.com/hackforla/website/pull/5006#event-9890911305) at 2023-07-22 03:37 AM PDT -jnomad21,2023-07-25T15:18:11Z,- jnomad21 commented on pull request: [5043](https://github.com/hackforla/website/pull/5043#issuecomment-1650042821) at 2023-07-25 08:18 AM PDT -jnomad21,2023-07-25T15:20:23Z,- jnomad21 commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1650046830) at 2023-07-25 08:20 AM PDT -jnomad21,2023-07-26T02:28:30Z,- jnomad21 commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1650878299) at 2023-07-25 07:28 PM PDT -jnomad21,2023-07-26T17:23:22Z,- jnomad21 submitted pull request review: [5054](https://github.com/hackforla/website/pull/5054#pullrequestreview-1548248019) at 2023-07-26 10:23 AM PDT -jnomad21,2023-07-27T03:21:48Z,- jnomad21 pull request merged: [5043](https://github.com/hackforla/website/pull/5043#event-9930866161) at 2023-07-26 08:21 PM PDT -jnomad21,2023-07-27T18:37:13Z,- jnomad21 commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1654212941) at 2023-07-27 11:37 AM PDT -jnomad21,2023-07-27T18:57:35Z,- jnomad21 submitted pull request review: [5103](https://github.com/hackforla/website/pull/5103#pullrequestreview-1550553816) at 2023-07-27 11:57 AM PDT -jnomad21,2023-07-31T22:00:30Z,- jnomad21 submitted pull request review: [5118](https://github.com/hackforla/website/pull/5118#pullrequestreview-1555862883) at 2023-07-31 03:00 PM PDT -jnomad21,2023-09-11T17:56:18Z,- jnomad21 closed issue as completed: [4985](https://github.com/hackforla/website/issues/4985#event-10337292763) at 2023-09-11 10:56 AM PDT -jobayer12,2023-04-07T13:29:21Z,- jobayer12 commented on issue: [4413](https://github.com/hackforla/website/issues/4413#issuecomment-1500290058) at 2023-04-07 06:29 AM PDT -jobayer12,2023-04-07T21:20:42Z,- jobayer12 opened pull request: [4441](https://github.com/hackforla/website/pull/4441) at 2023-04-07 02:20 PM PDT -jobayer12,2023-04-07T21:25:57Z,- jobayer12 commented on pull request: [4441](https://github.com/hackforla/website/pull/4441#issuecomment-1500660361) at 2023-04-07 02:25 PM PDT -jobayer12,2023-04-09T11:11:53Z,- jobayer12 pull request closed w/o merging: [4441](https://github.com/hackforla/website/pull/4441#event-8958968014) at 2023-04-09 04:11 AM PDT -joelfuelling,5088,SKILLS ISSUE -joelfuelling,2023-07-26T03:43:27Z,- joelfuelling opened issue: [5088](https://github.com/hackforla/website/issues/5088) at 2023-07-25 08:43 PM PDT -joelfuelling,2023-07-26T03:56:18Z,- joelfuelling assigned to issue: [5088](https://github.com/hackforla/website/issues/5088) at 2023-07-25 08:56 PM PDT -joelfuelling,2023-07-27T16:52:03Z,- joelfuelling assigned to issue: [4810](https://github.com/hackforla/website/issues/4810) at 2023-07-27 09:52 AM PDT -joelfuelling,2023-07-27T17:40:29Z,- joelfuelling opened pull request: [5103](https://github.com/hackforla/website/pull/5103) at 2023-07-27 10:40 AM PDT -joelfuelling,2023-07-27T17:48:35Z,- joelfuelling commented on issue: [4810](https://github.com/hackforla/website/issues/4810#issuecomment-1654110213) at 2023-07-27 10:48 AM PDT -joelfuelling,2023-07-27T19:04:47Z,- joelfuelling commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1654258693) at 2023-07-27 12:04 PM PDT -joelfuelling,2023-07-28T23:13:09Z,- joelfuelling opened pull request: [5110](https://github.com/hackforla/website/pull/5110) at 2023-07-28 04:13 PM PDT -joelfuelling,2023-07-28T23:15:19Z,- joelfuelling pull request closed w/o merging: [5110](https://github.com/hackforla/website/pull/5110#event-9952983450) at 2023-07-28 04:15 PM PDT -joelfuelling,2023-07-28T23:18:51Z,- joelfuelling commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1656431789) at 2023-07-28 04:18 PM PDT -joelfuelling,2023-07-31T15:04:28Z,- joelfuelling opened pull request: [5118](https://github.com/hackforla/website/pull/5118) at 2023-07-31 08:04 AM PDT -joelfuelling,2023-07-31T15:08:53Z,- joelfuelling commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1658564951) at 2023-07-31 08:08 AM PDT -joelfuelling,2023-07-31T23:03:35Z,- joelfuelling commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1659307215) at 2023-07-31 04:03 PM PDT -joelfuelling,2023-08-06T16:04:06Z,- joelfuelling pull request closed w/o merging: [5103](https://github.com/hackforla/website/pull/5103#event-10017557922) at 2023-08-06 09:04 AM PDT -joelfuelling,2023-08-09T18:00:21Z,- joelfuelling commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1671895460) at 2023-08-09 11:00 AM PDT -joelfuelling,2023-08-09T20:34:33Z,- joelfuelling opened pull request: [5169](https://github.com/hackforla/website/pull/5169) at 2023-08-09 01:34 PM PDT -joelfuelling,2023-08-10T18:47:58Z,- joelfuelling pull request closed w/o merging: [5118](https://github.com/hackforla/website/pull/5118#event-10062819959) at 2023-08-10 11:47 AM PDT -joelfuelling,2023-08-10T18:58:51Z,- joelfuelling pull request closed w/o merging: [5169](https://github.com/hackforla/website/pull/5169#event-10062909996) at 2023-08-10 11:58 AM PDT -joelfuelling,2023-08-11T17:27:42Z,- joelfuelling opened pull request: [5183](https://github.com/hackforla/website/pull/5183) at 2023-08-11 10:27 AM PDT -joelfuelling,2023-08-14T19:02:33Z,- joelfuelling pull request merged: [5183](https://github.com/hackforla/website/pull/5183#event-10090297167) at 2023-08-14 12:02 PM PDT -joelfuelling,2023-08-17T19:13:00Z,- joelfuelling commented on pull request: [5183](https://github.com/hackforla/website/pull/5183#issuecomment-1682823770) at 2023-08-17 12:13 PM PDT -joelparkerhenderson,2020-02-07T00:59:36Z,- joelparkerhenderson assigned to issue: [301](https://github.com/hackforla/website/issues/301) at 2020-02-06 04:59 PM PST -joelparkerhenderson,2020-02-07T01:30:20Z,- joelparkerhenderson commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583192337) at 2020-02-06 05:30 PM PST -joelparkerhenderson,2020-02-11T00:32:46Z,- joelparkerhenderson opened pull request: [306](https://github.com/hackforla/website/pull/306) at 2020-02-10 04:32 PM PST -joelparkerhenderson,2020-02-11T00:32:58Z,- joelparkerhenderson pull request merged: [306](https://github.com/hackforla/website/pull/306#event-3024882476) at 2020-02-10 04:32 PM PST -joelparkerhenderson,2020-02-11T00:53:52Z,- joelparkerhenderson commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-584431302) at 2020-02-10 04:53 PM PST -joelparkerhenderson,2020-02-11T23:10:00Z,- joelparkerhenderson commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-584903957) at 2020-02-11 03:10 PM PST -joelparkerhenderson,2020-02-13T07:35:50Z,- joelparkerhenderson commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-585591872) at 2020-02-12 11:35 PM PST -joelparkerhenderson,2020-02-16T18:26:37Z,- joelparkerhenderson commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-586737006) at 2020-02-16 10:26 AM PST -joelparkerhenderson,2020-02-16T21:35:29Z,- joelparkerhenderson commented on issue: [311](https://github.com/hackforla/website/issues/311#issuecomment-586756850) at 2020-02-16 01:35 PM PST -joelparkerhenderson,2020-02-17T21:07:32Z,- joelparkerhenderson opened pull request: [315](https://github.com/hackforla/website/pull/315) at 2020-02-17 01:07 PM PST -joelparkerhenderson,2020-02-17T21:09:32Z,- joelparkerhenderson commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-587160009) at 2020-02-17 01:09 PM PST -joelparkerhenderson,2020-02-23T20:51:22Z,- joelparkerhenderson commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-590114601) at 2020-02-23 12:51 PM PST -joelparkerhenderson,2020-03-03T03:24:51Z,- joelparkerhenderson pull request closed w/o merging: [315](https://github.com/hackforla/website/pull/315#event-3090512864) at 2020-03-02 07:24 PM PST -joelparkerhenderson,2020-03-09T05:24:04Z,- joelparkerhenderson commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-596337260) at 2020-03-08 10:24 PM PDT -joelparkerhenderson,2020-03-09T20:22:08Z,- joelparkerhenderson commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-596760043) at 2020-03-09 01:22 PM PDT -joelparkerhenderson,2020-03-18T23:51:52Z,- joelparkerhenderson commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600913867) at 2020-03-18 04:51 PM PDT -joelparkerhenderson,2020-03-18T23:58:14Z,- joelparkerhenderson commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600915356) at 2020-03-18 04:58 PM PDT -joelparkerhenderson,2020-04-05T20:03:50Z,- joelparkerhenderson commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-609474158) at 2020-04-05 01:03 PM PDT -joelparkerhenderson,2021-09-18T01:55:33Z,- joelparkerhenderson commented on pull request: [2284](https://github.com/hackforla/website/pull/2284#issuecomment-922159686) at 2021-09-17 06:55 PM PDT -joey-ma,2024-02-22T05:51:37Z,- joey-ma opened issue: [6355](https://github.com/hackforla/website/issues/6355) at 2024-02-21 09:51 PM PST -joey-ma,2024-02-22T06:11:46Z,- joey-ma commented on issue: [6355](https://github.com/hackforla/website/issues/6355#issuecomment-1958771755) at 2024-02-21 10:11 PM PST -joey-ma,2024-05-09T02:56:15Z,- joey-ma opened issue: [6840](https://github.com/hackforla/website/issues/6840) at 2024-05-08 07:56 PM PDT -joeytsui1,7624,SKILLS ISSUE -joeytsui1,2024-10-23T02:49:08Z,- joeytsui1 opened issue: [7624](https://github.com/hackforla/website/issues/7624) at 2024-10-22 07:49 PM PDT -joeytsui1,2024-10-23T02:49:47Z,- joeytsui1 assigned to issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2430717473) at 2024-10-22 07:49 PM PDT -joeytsui1,2024-10-29T20:32:53Z,- joeytsui1 commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2445274669) at 2024-10-29 01:32 PM PDT -joeytsui1,2024-10-29T20:36:36Z,- joeytsui1 commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2445280750) at 2024-10-29 01:36 PM PDT -joeytsui1,2024-10-29T20:37:43Z,- joeytsui1 commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2445282569) at 2024-10-29 01:37 PM PDT -joeytsui1,2024-10-29T20:53:11Z,- joeytsui1 assigned to issue: [7583](https://github.com/hackforla/website/issues/7583) at 2024-10-29 01:53 PM PDT -joeytsui1,2024-11-26T00:43:48Z,- joeytsui1 unassigned from issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2499323801) at 2024-11-25 04:43 PM PST -johnApale,6036,SKILLS ISSUE -johnApale,2024-01-03T03:56:23Z,- johnApale opened issue: [6036](https://github.com/hackforla/website/issues/6036) at 2024-01-02 07:56 PM PST -johnApale,2024-01-03T03:56:26Z,- johnApale assigned to issue: [6036](https://github.com/hackforla/website/issues/6036) at 2024-01-02 07:56 PM PST -johnBueno31,6250,SKILLS ISSUE -johnBueno31,2024-02-06T03:41:41Z,- johnBueno31 opened issue: [6250](https://github.com/hackforla/website/issues/6250) at 2024-02-05 07:41 PM PST -johnBueno31,2024-02-06T03:43:40Z,- johnBueno31 assigned to issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1928730067) at 2024-02-05 07:43 PM PST -JohnJBarrett22,3458,SKILLS ISSUE -JohnJBarrett22,2022-08-10T03:04:28Z,- JohnJBarrett22 opened issue: [3458](https://github.com/hackforla/website/issues/3458) at 2022-08-09 08:04 PM PDT -JohnJBarrett22,2022-08-10T03:07:35Z,- JohnJBarrett22 assigned to issue: [3458](https://github.com/hackforla/website/issues/3458#issuecomment-1210095832) at 2022-08-09 08:07 PM PDT -JohnJBarrett22,2022-08-10T03:20:33Z,- JohnJBarrett22 assigned to issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1061336351) at 2022-08-09 08:20 PM PDT -JohnJBarrett22,2022-08-11T02:57:39Z,- JohnJBarrett22 commented on issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1211503813) at 2022-08-10 07:57 PM PDT -JohnJBarrett22,2022-08-11T07:03:29Z,- JohnJBarrett22 opened pull request: [3460](https://github.com/hackforla/website/pull/3460) at 2022-08-11 12:03 AM PDT -JohnJBarrett22,2022-08-11T20:25:28Z,- JohnJBarrett22 pull request merged: [3460](https://github.com/hackforla/website/pull/3460#event-7174749740) at 2022-08-11 01:25 PM PDT -JohnJBarrett22,2022-08-11T20:42:37Z,- JohnJBarrett22 commented on issue: [3458](https://github.com/hackforla/website/issues/3458#issuecomment-1212473637) at 2022-08-11 01:42 PM PDT -JohnJBarrett22,2022-08-11T20:52:04Z,- JohnJBarrett22 assigned to issue: [3404](https://github.com/hackforla/website/issues/3404) at 2022-08-11 01:52 PM PDT -JohnJBarrett22,2022-08-13T16:36:28Z,- JohnJBarrett22 opened pull request: [3467](https://github.com/hackforla/website/pull/3467) at 2022-08-13 09:36 AM PDT -JohnJBarrett22,2022-08-13T16:42:21Z,- JohnJBarrett22 commented on issue: [3404](https://github.com/hackforla/website/issues/3404#issuecomment-1214187293) at 2022-08-13 09:42 AM PDT -JohnJBarrett22,2022-08-13T16:45:20Z,- JohnJBarrett22 commented on issue: [3404](https://github.com/hackforla/website/issues/3404#issuecomment-1214187810) at 2022-08-13 09:45 AM PDT -JohnJBarrett22,2022-08-13T20:18:43Z,- JohnJBarrett22 pull request merged: [3467](https://github.com/hackforla/website/pull/3467#event-7183763904) at 2022-08-13 01:18 PM PDT -JohnJBarrett22,2022-08-14T17:21:37Z,- JohnJBarrett22 assigned to issue: [3355](https://github.com/hackforla/website/issues/3355#issuecomment-1180034399) at 2022-08-14 10:21 AM PDT -JohnJBarrett22,2022-08-16T04:28:02Z,- JohnJBarrett22 closed issue as completed: [3458](https://github.com/hackforla/website/issues/3458#event-7193837091) at 2022-08-15 09:28 PM PDT -JohnJBarrett22,2022-08-16T04:28:49Z,- JohnJBarrett22 commented on issue: [3458](https://github.com/hackforla/website/issues/3458#issuecomment-1216130320) at 2022-08-15 09:28 PM PDT -JohnJBarrett22,2022-08-16T04:55:01Z,- JohnJBarrett22 commented on issue: [3355](https://github.com/hackforla/website/issues/3355#issuecomment-1216145244) at 2022-08-15 09:55 PM PDT -JohnJBarrett22,2022-08-16T05:02:13Z,- JohnJBarrett22 opened pull request: [3470](https://github.com/hackforla/website/pull/3470) at 2022-08-15 10:02 PM PDT -JohnJBarrett22,2022-08-17T16:54:42Z,- JohnJBarrett22 pull request merged: [3470](https://github.com/hackforla/website/pull/3470#event-7207732437) at 2022-08-17 09:54 AM PDT -JohnJBarrett22,2022-08-19T00:41:21Z,- JohnJBarrett22 assigned to issue: [3449](https://github.com/hackforla/website/issues/3449) at 2022-08-18 05:41 PM PDT -JohnJBarrett22,2022-08-19T04:02:23Z,- JohnJBarrett22 submitted pull request review: [3475](https://github.com/hackforla/website/pull/3475#pullrequestreview-1078248874) at 2022-08-18 09:02 PM PDT -JohnJBarrett22,2022-08-24T02:17:02Z,- JohnJBarrett22 commented on pull request: [3482](https://github.com/hackforla/website/pull/3482#issuecomment-1225093018) at 2022-08-23 07:17 PM PDT -JohnJBarrett22,2022-09-23T12:01:44Z,- JohnJBarrett22 unassigned from issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1255890655) at 2022-09-23 05:01 AM PDT -Johnnie007,2524,SKILLS ISSUE -Johnnie007,2021-11-30T03:47:27Z,- Johnnie007 opened issue: [2524](https://github.com/hackforla/website/issues/2524) at 2021-11-29 07:47 PM PST -Johnnie007,2021-11-30T03:50:12Z,- Johnnie007 assigned to issue: [2524](https://github.com/hackforla/website/issues/2524) at 2021-11-29 07:50 PM PST -Johnnie007,2021-12-03T16:49:52Z,- Johnnie007 assigned to issue: [2490](https://github.com/hackforla/website/issues/2490#issuecomment-968561829) at 2021-12-03 08:49 AM PST -Johnnie007,2021-12-03T17:40:24Z,- Johnnie007 opened pull request: [2541](https://github.com/hackforla/website/pull/2541) at 2021-12-03 09:40 AM PST -Johnnie007,2021-12-03T17:44:14Z,- Johnnie007 commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-985709543) at 2021-12-03 09:44 AM PST -Johnnie007,2021-12-04T23:45:00Z,- Johnnie007 pull request merged: [2541](https://github.com/hackforla/website/pull/2541#event-5716186916) at 2021-12-04 03:45 PM PST -Johnnie007,2021-12-05T14:56:59Z,- Johnnie007 assigned to issue: [2094](https://github.com/hackforla/website/issues/2094) at 2021-12-05 06:56 AM PST -Johnnie007,2021-12-07T01:30:56Z,- Johnnie007 commented on issue: [2094](https://github.com/hackforla/website/issues/2094#issuecomment-987485109) at 2021-12-06 05:30 PM PST -Johnnie007,2021-12-07T02:19:55Z,- Johnnie007 opened pull request: [2551](https://github.com/hackforla/website/pull/2551) at 2021-12-06 06:19 PM PST -Johnnie007,2021-12-08T06:34:40Z,- Johnnie007 closed issue as completed: [2524](https://github.com/hackforla/website/issues/2524#event-5731768063) at 2021-12-07 10:34 PM PST -Johnnie007,2021-12-09T02:31:14Z,- Johnnie007 pull request merged: [2551](https://github.com/hackforla/website/pull/2551#event-5737891584) at 2021-12-08 06:31 PM PST -Johnnie007,2021-12-09T13:52:49Z,- Johnnie007 submitted pull request review: [2549](https://github.com/hackforla/website/pull/2549#pullrequestreview-827708829) at 2021-12-09 05:52 AM PST -Johnnie007,2021-12-09T15:16:26Z,- Johnnie007 assigned to issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-920334512) at 2021-12-09 07:16 AM PST -Johnnie007,2021-12-09T16:07:15Z,- Johnnie007 commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-989992949) at 2021-12-09 08:07 AM PST -Johnnie007,2021-12-09T16:08:36Z,- Johnnie007 commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-989994226) at 2021-12-09 08:08 AM PST -Johnnie007,2021-12-13T14:14:00Z,- Johnnie007 commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-992521678) at 2021-12-13 06:14 AM PST -Johnnie007,2021-12-13T14:38:59Z,- Johnnie007 commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-992545237) at 2021-12-13 06:38 AM PST -Johnnie007,2021-12-16T17:10:06Z,- Johnnie007 commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-996012799) at 2021-12-16 09:10 AM PST -Johnnie007,2021-12-22T21:32:10Z,- Johnnie007 opened pull request: [2621](https://github.com/hackforla/website/pull/2621) at 2021-12-22 01:32 PM PST -Johnnie007,2021-12-27T08:06:41Z,- Johnnie007 pull request merged: [2621](https://github.com/hackforla/website/pull/2621#event-5816927113) at 2021-12-27 12:06 AM PST -Johnnie007,2022-02-03T18:47:18Z,- Johnnie007 closed issue as completed: [2524](https://github.com/hackforla/website/issues/2524#event-6004942646) at 2022-02-03 10:47 AM PST -Johnnie007,2022-02-26T01:33:10Z,- Johnnie007 commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1051423649) at 2022-02-25 05:33 PM PST -johnppkyaw,6829,SKILLS ISSUE -johnppkyaw,2024-05-07T03:04:29Z,- johnppkyaw opened issue: [6829](https://github.com/hackforla/website/issues/6829) at 2024-05-06 08:04 PM PDT -johnppkyaw,2024-05-07T03:04:35Z,- johnppkyaw assigned to issue: [6829](https://github.com/hackforla/website/issues/6829) at 2024-05-06 08:04 PM PDT -johnppkyaw,2024-05-29T21:37:02Z,- johnppkyaw commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2138304094) at 2024-05-29 02:37 PM PDT -johnr54321,2020-02-29T08:52:59Z,- johnr54321 opened issue: [326](https://github.com/hackforla/website/issues/326) at 2020-02-29 12:52 AM PST -johnr54321,2020-02-29T08:53:26Z,- johnr54321 closed issue as completed: [326](https://github.com/hackforla/website/issues/326#event-3084569635) at 2020-02-29 12:53 AM PST -johnr54321,2020-02-29T08:53:38Z,- johnr54321 commented on issue: [326](https://github.com/hackforla/website/issues/326#issuecomment-592921636) at 2020-02-29 12:53 AM PST -johnr54321,2020-02-29T08:54:39Z,- johnr54321 commented on issue: [326](https://github.com/hackforla/website/issues/326#issuecomment-592921711) at 2020-02-29 12:54 AM PST -johnr54321,2020-03-04T04:25:01Z,- johnr54321 commented on issue: [285](https://github.com/hackforla/website/issues/285#issuecomment-594319471) at 2020-03-03 08:25 PM PST -johnr54321,2020-03-04T10:00:30Z,- johnr54321 commented on issue: [285](https://github.com/hackforla/website/issues/285#issuecomment-594428843) at 2020-03-04 02:00 AM PST -johnr54321,2020-03-22T20:53:59Z,- johnr54321 opened issue: [387](https://github.com/hackforla/website/issues/387) at 2020-03-22 01:53 PM PDT -johnr54321,2020-04-27T01:32:34Z,- johnr54321 commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619662073) at 2020-04-26 06:32 PM PDT -johnr54321,2020-07-25T01:24:43Z,- johnr54321 assigned to issue: [632](https://github.com/hackforla/website/issues/632) at 2020-07-24 06:24 PM PDT -johnr54321,2020-07-29T05:28:04Z,- johnr54321 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-665439711) at 2020-07-28 10:28 PM PDT -johnr54321,2020-07-29T05:43:33Z,- johnr54321 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-665444585) at 2020-07-28 10:43 PM PDT -johnr54321,2020-07-29T22:36:25Z,- johnr54321 assigned to issue: [658](https://github.com/hackforla/website/issues/658) at 2020-07-29 03:36 PM PDT -johnr54321,2020-07-29T23:01:15Z,- johnr54321 commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-665973441) at 2020-07-29 04:01 PM PDT -johnr54321,2020-07-31T05:05:38Z,- johnr54321 commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666923567) at 2020-07-30 10:05 PM PDT -johnr54321,2020-07-31T05:06:12Z,- johnr54321 commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666923790) at 2020-07-30 10:06 PM PDT -johnr54321,2020-07-31T05:06:40Z,- johnr54321 unassigned from issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666923790) at 2020-07-30 10:06 PM PDT -johnr54321,2020-07-31T05:21:48Z,- johnr54321 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929238) at 2020-07-30 10:21 PM PDT -johnr54321,2020-07-31T05:22:17Z,- johnr54321 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-07-30 10:22 PM PDT -johnr54321,2020-08-05T03:04:36Z,- johnr54321 unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-08-04 08:04 PM PDT -johnr54321,2020-08-07T20:20:35Z,- johnr54321 assigned to issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-670697065) at 2020-08-07 01:20 PM PDT -johnr54321,2020-08-16T18:23:18Z,- johnr54321 commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-674560064) at 2020-08-16 11:23 AM PDT -johnr54321,2020-08-16T20:39:57Z,- johnr54321 commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-674575160) at 2020-08-16 01:39 PM PDT -johnr54321,2020-08-19T22:57:36Z,- johnr54321 closed issue as completed: [387](https://github.com/hackforla/website/issues/387#event-3672885046) at 2020-08-19 03:57 PM PDT -johnr54321,2020-08-24T01:57:43Z,- johnr54321 assigned to issue: [701](https://github.com/hackforla/website/issues/701) at 2020-08-23 06:57 PM PDT -johnr54321,2020-08-24T03:12:19Z,- johnr54321 commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-678880864) at 2020-08-23 08:12 PM PDT -johnr54321,2020-08-24T20:09:47Z,- johnr54321 commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679340217) at 2020-08-24 01:09 PM PDT -johnr54321,2020-08-24T22:11:30Z,- johnr54321 commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679392515) at 2020-08-24 03:11 PM PDT -johnr54321,2020-08-25T01:39:23Z,- johnr54321 unassigned from issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679451846) at 2020-08-24 06:39 PM PDT -johnr54321,2020-08-25T02:03:11Z,- johnr54321 commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679458149) at 2020-08-24 07:03 PM PDT -johnr54321,2020-12-23T05:48:26Z,- johnr54321 commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-749949276) at 2020-12-22 09:48 PM PST -johnr54321,2021-02-03T18:01:22Z,- johnr54321 unassigned from issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-741122929) at 2021-02-03 10:01 AM PST -johnr54321,2021-06-12T10:08:35Z,- johnr54321 closed issue as completed: [387](https://github.com/hackforla/website/issues/387#event-4881095022) at 2021-06-12 03:08 AM PDT -jojochen25,3820,SKILLS ISSUE -jojochen25,2023-01-15T22:05:07Z,- jojochen25 opened issue: [3820](https://github.com/hackforla/website/issues/3820) at 2023-01-15 02:05 PM PST -jojochen25,2023-01-15T22:05:08Z,- jojochen25 assigned to issue: [3820](https://github.com/hackforla/website/issues/3820) at 2023-01-15 02:05 PM PST -jojochen25,2023-02-26T09:00:02Z,- jojochen25 commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1445302638) at 2023-02-26 01:00 AM PST -JolleenI,3434,SKILLS ISSUE -JolleenI,2022-08-10T21:55:27Z,- JolleenI assigned to issue: [3434](https://github.com/hackforla/website/issues/3434) at 2022-08-10 02:55 PM PDT -JolleenI,2022-09-19T22:24:43Z,- JolleenI commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1251632545) at 2022-09-19 03:24 PM PDT -jonarcisse,2021-10-12T01:26:48Z,- jonarcisse opened issue: [2364](https://github.com/hackforla/website/issues/2364) at 2021-10-11 06:26 PM PDT -jonarcisse,2021-10-12T01:26:49Z,- jonarcisse assigned to issue: [2364](https://github.com/hackforla/website/issues/2364) at 2021-10-11 06:26 PM PDT -jonarcisse,2021-10-12T08:26:19Z,- jonarcisse unassigned from issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-940602924) at 2021-10-12 01:26 AM PDT -jonarcisse,2021-10-20T18:07:29Z,- jonarcisse commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-947912865) at 2021-10-20 11:07 AM PDT -jond34,3608,SKILLS ISSUE -jond34,2022-10-11T02:53:51Z,- jond34 opened issue: [3608](https://github.com/hackforla/website/issues/3608) at 2022-10-10 07:53 PM PDT -jond34,2022-10-12T03:07:20Z,- jond34 assigned to issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1048475227) at 2022-10-11 08:07 PM PDT -jond34,2022-10-12T03:08:21Z,- jond34 commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1275523692) at 2022-10-11 08:08 PM PDT -jond34,2022-10-19T13:55:02Z,- jond34 assigned to issue: [3608](https://github.com/hackforla/website/issues/3608) at 2022-10-19 06:55 AM PDT -jond34,2022-12-02T21:11:05Z,- jond34 unassigned from issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1335847822) at 2022-12-02 01:11 PM PST -jonnyoe,6329,SKILLS ISSUE -jonnyoe,2024-02-16T04:00:36Z,- jonnyoe assigned to issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1837064900) at 2024-02-15 08:00 PM PST -jonnyoe,2024-02-16T04:26:55Z,- jonnyoe commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1947737966) at 2024-02-15 08:26 PM PST -jonnyoe,2024-02-16T20:08:53Z,- jonnyoe commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1949258541) at 2024-02-16 12:08 PM PST -jonnyoe,2024-02-17T06:05:05Z,- jonnyoe unassigned from issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1949258541) at 2024-02-16 10:05 PM PST -jonnyoe,2024-02-21T03:22:36Z,- jonnyoe opened issue: [6329](https://github.com/hackforla/website/issues/6329) at 2024-02-20 07:22 PM PST -jonnyoe,2024-02-21T03:22:40Z,- jonnyoe assigned to issue: [6329](https://github.com/hackforla/website/issues/6329) at 2024-02-20 07:22 PM PST -jonnyoe,2024-02-21T03:23:54Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1955810485) at 2024-02-20 07:23 PM PST -jonnyoe,2024-02-28T05:30:34Z,- jonnyoe assigned to issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1929040328) at 2024-02-27 09:30 PM PST -jonnyoe,2024-02-28T05:36:19Z,- jonnyoe commented on issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1968269061) at 2024-02-27 09:36 PM PST -jonnyoe,2024-03-02T07:42:51Z,- jonnyoe opened pull request: [6408](https://github.com/hackforla/website/pull/6408) at 2024-03-01 11:42 PM PST -jonnyoe,2024-03-03T02:51:56Z,- jonnyoe commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1975001201) at 2024-03-02 06:51 PM PST -jonnyoe,2024-03-04T05:47:14Z,- jonnyoe opened pull request: [6414](https://github.com/hackforla/website/pull/6414) at 2024-03-03 09:47 PM PST -jonnyoe,2024-03-04T10:08:12Z,- jonnyoe pull request closed w/o merging: [6408](https://github.com/hackforla/website/pull/6408#event-11996493817) at 2024-03-04 02:08 AM PST -jonnyoe,2024-03-04T21:47:45Z,- jonnyoe pull request merged: [6414](https://github.com/hackforla/website/pull/6414#event-12005226525) at 2024-03-04 01:47 PM PST -jonnyoe,2024-03-04T22:52:09Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1977607864) at 2024-03-04 02:52 PM PST -jonnyoe,2024-03-19T05:12:48Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2005778184) at 2024-03-18 10:12 PM PDT -jonnyoe,2024-03-19T05:12:48Z,- jonnyoe closed issue as completed: [6329](https://github.com/hackforla/website/issues/6329#event-12163684779) at 2024-03-18 10:12 PM PDT -jonnyoe,2024-03-20T05:38:19Z,- jonnyoe commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008690287) at 2024-03-19 10:38 PM PDT -jonnyoe,2024-03-20T05:42:28Z,- jonnyoe commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008693493) at 2024-03-19 10:42 PM PDT -jonnyoe,2024-03-20T05:44:12Z,- jonnyoe submitted pull request review: [6477](https://github.com/hackforla/website/pull/6477#pullrequestreview-1947979317) at 2024-03-19 10:44 PM PDT -jonnyoe,2024-03-22T02:55:25Z,- jonnyoe assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-21 07:55 PM PDT -jonnyoe,2024-03-25T21:42:33Z,- jonnyoe unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-25 02:42 PM PDT -jonnyoe,2024-03-25T21:42:40Z,- jonnyoe assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-25 02:42 PM PDT -jonnyoe,2024-03-26T01:07:18Z,- jonnyoe unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-2018969992) at 2024-03-25 06:07 PM PDT -jonnyoe,2024-03-27T04:11:00Z,- jonnyoe assigned to issue: [6236](https://github.com/hackforla/website/issues/6236) at 2024-03-26 09:11 PM PDT -jonnyoe,2024-03-27T04:20:34Z,- jonnyoe commented on issue: [6236](https://github.com/hackforla/website/issues/6236#issuecomment-2021897437) at 2024-03-26 09:20 PM PDT -jonnyoe,2024-03-27T05:00:28Z,- jonnyoe opened pull request: [6534](https://github.com/hackforla/website/pull/6534) at 2024-03-26 10:00 PM PDT -jonnyoe,2024-03-27T05:01:10Z,- jonnyoe pull request closed w/o merging: [6534](https://github.com/hackforla/website/pull/6534#event-12259784434) at 2024-03-26 10:01 PM PDT -jonnyoe,2024-03-27T05:20:46Z,- jonnyoe opened pull request: [6535](https://github.com/hackforla/website/pull/6535) at 2024-03-26 10:20 PM PDT -jonnyoe,2024-03-27T05:26:06Z,- jonnyoe commented on pull request: [6534](https://github.com/hackforla/website/pull/6534#issuecomment-2021969285) at 2024-03-26 10:26 PM PDT -jonnyoe,2024-03-28T23:57:12Z,- jonnyoe commented on pull request: [6535](https://github.com/hackforla/website/pull/6535#issuecomment-2026338593) at 2024-03-28 04:57 PM PDT -jonnyoe,2024-03-28T23:57:12Z,- jonnyoe pull request closed w/o merging: [6535](https://github.com/hackforla/website/pull/6535#event-12289008321) at 2024-03-28 04:57 PM PDT -jonnyoe,2024-03-29T04:23:01Z,- jonnyoe opened pull request: [6546](https://github.com/hackforla/website/pull/6546) at 2024-03-28 09:23 PM PDT -jonnyoe,2024-03-29T09:14:08Z,- jonnyoe pull request merged: [6546](https://github.com/hackforla/website/pull/6546#event-12293018692) at 2024-03-29 02:14 AM PDT -jonnyoe,2024-03-29T19:18:17Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2027647671) at 2024-03-29 12:18 PM PDT -jonnyoe,2024-03-29T19:18:33Z,- jonnyoe closed issue as completed: [6329](https://github.com/hackforla/website/issues/6329#event-12297793289) at 2024-03-29 12:18 PM PDT -jonnyoe,2024-04-09T01:09:01Z,- jonnyoe assigned to issue: [6492](https://github.com/hackforla/website/issues/6492) at 2024-04-08 06:09 PM PDT -jonnyoe,2024-04-09T01:11:58Z,- jonnyoe commented on issue: [6492](https://github.com/hackforla/website/issues/6492#issuecomment-2043959295) at 2024-04-08 06:11 PM PDT -jonnyoe,2024-04-12T22:26:31Z,- jonnyoe closed issue as completed: [6492](https://github.com/hackforla/website/issues/6492#event-12454755596) at 2024-04-12 03:26 PM PDT -jonnyoe,2024-04-12T22:28:12Z,- jonnyoe commented on issue: [6492](https://github.com/hackforla/website/issues/6492#issuecomment-2052638582) at 2024-04-12 03:28 PM PDT -jonnyoe,2024-04-19T02:43:23Z,- jonnyoe assigned to issue: [6638](https://github.com/hackforla/website/issues/6638) at 2024-04-18 07:43 PM PDT -jonnyoe,2024-04-19T02:47:06Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2065654771) at 2024-04-18 07:47 PM PDT -jonnyoe,2024-04-24T06:57:41Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2074210913) at 2024-04-23 11:57 PM PDT -jonnyoe,2024-04-25T00:08:31Z,- jonnyoe opened pull request: [6748](https://github.com/hackforla/website/pull/6748) at 2024-04-24 05:08 PM PDT -jonnyoe,2024-04-26T01:09:04Z,- jonnyoe commented on pull request: [6748](https://github.com/hackforla/website/pull/6748#issuecomment-2078437529) at 2024-04-25 06:09 PM PDT -jonnyoe,2024-04-26T01:09:04Z,- jonnyoe pull request closed w/o merging: [6748](https://github.com/hackforla/website/pull/6748#event-12617276133) at 2024-04-25 06:09 PM PDT -jonnyoe,2024-04-26T03:00:01Z,- jonnyoe opened pull request: [6764](https://github.com/hackforla/website/pull/6764) at 2024-04-25 08:00 PM PDT -jonnyoe,2024-04-30T22:55:16Z,- jonnyoe pull request closed w/o merging: [6764](https://github.com/hackforla/website/pull/6764#event-12664879858) at 2024-04-30 03:55 PM PDT -jonnyoe,2024-05-01T00:52:19Z,- jonnyoe opened pull request: [6796](https://github.com/hackforla/website/pull/6796) at 2024-04-30 05:52 PM PDT -jonnyoe,2024-05-03T23:45:32Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2093891228) at 2024-05-03 04:45 PM PDT -jonnyoe,2024-05-04T06:12:38Z,- jonnyoe pull request closed w/o merging: [6796](https://github.com/hackforla/website/pull/6796#event-12703395024) at 2024-05-03 11:12 PM PDT -jonnyoe,2024-05-04T06:39:15Z,- jonnyoe opened pull request: [6817](https://github.com/hackforla/website/pull/6817) at 2024-05-03 11:39 PM PDT -jonnyoe,2024-05-04T06:44:32Z,- jonnyoe pull request closed w/o merging: [6817](https://github.com/hackforla/website/pull/6817#event-12703472871) at 2024-05-03 11:44 PM PDT -jonnyoe,2024-05-04T06:53:59Z,- jonnyoe opened pull request: [6818](https://github.com/hackforla/website/pull/6818) at 2024-05-03 11:53 PM PDT -jonnyoe,2024-05-04T17:42:21Z,- jonnyoe pull request merged: [6818](https://github.com/hackforla/website/pull/6818#event-12704937406) at 2024-05-04 10:42 AM PDT -jonnyoe,2024-05-10T03:26:27Z,- jonnyoe assigned to issue: [6571](https://github.com/hackforla/website/issues/6571) at 2024-05-09 08:26 PM PDT -jonnyoe,2024-05-10T03:34:46Z,- jonnyoe commented on issue: [6571](https://github.com/hackforla/website/issues/6571#issuecomment-2103797084) at 2024-05-09 08:34 PM PDT -joooseph2,7225,SKILLS ISSUE -joooseph2,2024-08-06T18:41:39Z,- joooseph2 opened issue: [7225](https://github.com/hackforla/website/issues/7225) at 2024-08-06 11:41 AM PDT -joooseph2,2024-08-06T18:43:44Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2271922731) at 2024-08-06 11:43 AM PDT -joooseph2,2024-08-06T18:48:17Z,- joooseph2 assigned to issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2271922731) at 2024-08-06 11:48 AM PDT -joooseph2,2024-08-06T18:51:35Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2271935594) at 2024-08-06 11:51 AM PDT -joooseph2,2024-08-06T19:01:46Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2271950806) at 2024-08-06 12:01 PM PDT -joooseph2,2024-08-07T02:20:57Z,- joooseph2 assigned to issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1902689468) at 2024-08-06 07:20 PM PDT -joooseph2,2024-08-07T02:21:11Z,- joooseph2 unassigned from issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-2272492214) at 2024-08-06 07:21 PM PDT -joooseph2,2024-08-07T02:26:52Z,- joooseph2 assigned to issue: [7137](https://github.com/hackforla/website/issues/7137) at 2024-08-06 07:26 PM PDT -joooseph2,2024-08-07T02:27:07Z,- joooseph2 unassigned from issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272497239) at 2024-08-06 07:27 PM PDT -joooseph2,2024-08-07T02:29:01Z,- joooseph2 assigned to issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272497239) at 2024-08-06 07:29 PM PDT -joooseph2,2024-08-07T02:29:23Z,- joooseph2 unassigned from issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272497239) at 2024-08-06 07:29 PM PDT -joooseph2,2024-08-07T02:40:36Z,- joooseph2 assigned to issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-2272492214) at 2024-08-06 07:40 PM PDT -joooseph2,2024-08-07T02:45:33Z,- joooseph2 assigned to issue: [7170](https://github.com/hackforla/website/issues/7170) at 2024-08-06 07:45 PM PDT -joooseph2,2024-08-07T02:51:48Z,- joooseph2 commented on issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2272517253) at 2024-08-06 07:51 PM PDT -joooseph2,2024-08-07T03:12:09Z,- joooseph2 opened pull request: [7233](https://github.com/hackforla/website/pull/7233) at 2024-08-06 08:12 PM PDT -joooseph2,2024-08-07T18:52:50Z,- joooseph2 pull request closed w/o merging: [7233](https://github.com/hackforla/website/pull/7233#event-13796557772) at 2024-08-07 11:52 AM PDT -joooseph2,2024-08-10T14:47:49Z,- joooseph2 assigned to issue: [7179](https://github.com/hackforla/website/issues/7179) at 2024-08-10 07:47 AM PDT -joooseph2,2024-08-10T14:48:03Z,- joooseph2 unassigned from issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2282176041) at 2024-08-10 07:48 AM PDT -joooseph2,2024-08-10T14:49:25Z,- joooseph2 unassigned from issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2272766629) at 2024-08-10 07:49 AM PDT -joooseph2,2024-08-10T14:50:12Z,- joooseph2 assigned to issue: [7181](https://github.com/hackforla/website/issues/7181) at 2024-08-10 07:50 AM PDT -joooseph2,2024-08-10T14:50:21Z,- joooseph2 unassigned from issue: [7181](https://github.com/hackforla/website/issues/7181) at 2024-08-10 07:50 AM PDT -joooseph2,2024-08-10T14:50:34Z,- joooseph2 assigned to issue: [7183](https://github.com/hackforla/website/issues/7183) at 2024-08-10 07:50 AM PDT -joooseph2,2024-08-10T14:50:50Z,- joooseph2 unassigned from issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2282176682) at 2024-08-10 07:50 AM PDT -joooseph2,2024-08-10T14:57:18Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2282178298) at 2024-08-10 07:57 AM PDT -joooseph2,2024-08-10T15:01:22Z,- joooseph2 assigned to issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2282178298) at 2024-08-10 08:01 AM PDT -joooseph2,2024-08-10T15:06:31Z,- joooseph2 unassigned from issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2272517253) at 2024-08-10 08:06 AM PDT -joooseph2,2024-08-10T15:07:18Z,- joooseph2 assigned to issue: [7181](https://github.com/hackforla/website/issues/7181#issuecomment-2282176583) at 2024-08-10 08:07 AM PDT -joooseph2,2024-08-10T15:10:25Z,- joooseph2 commented on issue: [7181](https://github.com/hackforla/website/issues/7181#issuecomment-2282182062) at 2024-08-10 08:10 AM PDT -joooseph2,2024-08-10T15:36:32Z,- joooseph2 opened pull request: [7261](https://github.com/hackforla/website/pull/7261) at 2024-08-10 08:36 AM PDT -joooseph2,2024-08-10T15:38:29Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2282188993) at 2024-08-10 08:38 AM PDT -joooseph2,2024-08-10T15:39:06Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2282189114) at 2024-08-10 08:39 AM PDT -joooseph2,2024-08-10T15:40:39Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2282189542) at 2024-08-10 08:40 AM PDT -joooseph2,2024-08-12T03:42:03Z,- joooseph2 commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2283062625) at 2024-08-11 08:42 PM PDT -joooseph2,2024-08-13T00:38:34Z,- joooseph2 commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2285131881) at 2024-08-12 05:38 PM PDT -joooseph2,2024-08-14T20:25:37Z,- joooseph2 commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2289811149) at 2024-08-14 01:25 PM PDT -joooseph2,2024-08-14T20:33:47Z,- joooseph2 pull request merged: [7261](https://github.com/hackforla/website/pull/7261#event-13886941652) at 2024-08-14 01:33 PM PDT -joooseph2,2024-08-17T05:36:19Z,- joooseph2 assigned to issue: [7290](https://github.com/hackforla/website/issues/7290) at 2024-08-16 10:36 PM PDT -joooseph2,2024-08-17T05:43:33Z,- joooseph2 commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2294641596) at 2024-08-16 10:43 PM PDT -joooseph2,2024-08-17T05:58:31Z,- joooseph2 opened pull request: [7310](https://github.com/hackforla/website/pull/7310) at 2024-08-16 10:58 PM PDT -joooseph2,2024-08-18T04:43:49Z,- joooseph2 pull request closed w/o merging: [7310](https://github.com/hackforla/website/pull/7310#event-13921162973) at 2024-08-17 09:43 PM PDT -joooseph2,2024-08-18T04:44:12Z,- joooseph2 unassigned from issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2295111671) at 2024-08-17 09:44 PM PDT -joooseph2,2024-08-18T05:46:19Z,- joooseph2 assigned to issue: [7245](https://github.com/hackforla/website/issues/7245) at 2024-08-17 10:46 PM PDT -joooseph2,2024-08-18T05:56:14Z,- joooseph2 opened pull request: [7312](https://github.com/hackforla/website/pull/7312) at 2024-08-17 10:56 PM PDT -joooseph2,2024-08-20T22:23:44Z,- joooseph2 commented on pull request: [7312](https://github.com/hackforla/website/pull/7312#issuecomment-2299862799) at 2024-08-20 03:23 PM PDT -joooseph2,2024-08-22T06:14:28Z,- joooseph2 pull request merged: [7312](https://github.com/hackforla/website/pull/7312#event-13971829261) at 2024-08-21 11:14 PM PDT -jordynfeldman,2019-12-29T03:04:15Z,- jordynfeldman assigned to issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-28 07:04 PM PST -JoshuaGirgis,5871,SKILLS ISSUE -JoshuaGirgis,2023-11-07T04:24:51Z,- JoshuaGirgis opened issue: [5871](https://github.com/hackforla/website/issues/5871) at 2023-11-06 08:24 PM PST -JoshuaGirgis,2023-11-08T02:58:32Z,- JoshuaGirgis assigned to issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1797897558) at 2023-11-07 06:58 PM PST -joshuazrobins,2018-06-06T16:43:15Z,- joshuazrobins opened issue: [16](https://github.com/hackforla/website/issues/16) at 2018-06-06 09:43 AM PDT -joshuazrobins,2018-06-06T16:43:46Z,- joshuazrobins opened issue: [15](https://github.com/hackforla/website/issues/15) at 2018-06-06 09:43 AM PDT -joshuazrobins,2018-09-13T15:31:29Z,- joshuazrobins opened issue: [9](https://github.com/hackforla/website/issues/9) at 2018-09-13 08:31 AM PDT -joshuazrobins,2018-11-27T22:10:49Z,- joshuazrobins commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-442236957) at 2018-11-27 02:10 PM PST -joshuazrobins,2018-11-27T22:19:08Z,- joshuazrobins commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-442239582) at 2018-11-27 02:19 PM PST -joshuazrobins,2018-12-13T23:19:28Z,- joshuazrobins commented on pull request: [12](https://github.com/hackforla/website/pull/12#issuecomment-447156748) at 2018-12-13 03:19 PM PST -joshuazrobins,2019-06-11T19:43:41Z,- joshuazrobins commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-500994534) at 2019-06-11 12:43 PM PDT -joshuazrobins,2019-06-11T20:03:16Z,- joshuazrobins commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-501001365) at 2019-06-11 01:03 PM PDT -joshuazrobins,2019-08-28T22:54:08Z,- joshuazrobins opened issue: [150](https://github.com/hackforla/website/issues/150) at 2019-08-28 03:54 PM PDT -joshuazrobins,2019-09-11T01:40:54Z,- joshuazrobins opened pull request: [152](https://github.com/hackforla/website/pull/152) at 2019-09-10 06:40 PM PDT -joshuazrobins,2019-09-17T05:19:23Z,- joshuazrobins pull request merged: [152](https://github.com/hackforla/website/pull/152#event-2638568883) at 2019-09-16 10:19 PM PDT -Josiah-O,2023-04-26T23:44:40Z,- Josiah-O commented on issue: [4557](https://github.com/hackforla/website/issues/4557#issuecomment-1524213032) at 2023-04-26 04:44 PM PDT -Josiah-O,2023-04-30T14:57:18Z,- Josiah-O commented on issue: [4557](https://github.com/hackforla/website/issues/4557#issuecomment-1529044010) at 2023-04-30 07:57 AM PDT -Josiah-O,2023-04-30T19:19:03Z,- Josiah-O assigned to issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1529113213) at 2023-04-30 12:19 PM PDT -Josiah-O,2023-05-01T11:11:39Z,- Josiah-O commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1529589359) at 2023-05-01 04:11 AM PDT -Josiah-O,2023-05-14T14:42:07Z,- Josiah-O commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1546915794) at 2023-05-14 07:42 AM PDT -Josiah-O,2023-05-21T14:15:22Z,- Josiah-O commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556190845) at 2023-05-21 07:15 AM PDT -Josiah-O,2023-06-11T18:57:28Z,- Josiah-O commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586293239) at 2023-06-11 11:57 AM PDT -Josiah-O,2023-06-11T19:12:45Z,- Josiah-O commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586302892) at 2023-06-11 12:12 PM PDT -Josiah-O,2023-06-11T19:12:45Z,- Josiah-O closed issue as completed: [2316](https://github.com/hackforla/website/issues/2316#event-9495228054) at 2023-06-11 12:12 PM PDT -Josiah-O,2023-06-18T18:48:45Z,- Josiah-O assigned to issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1545289347) at 2023-06-18 11:48 AM PDT -Josiah-O,2023-06-21T22:57:35Z,- Josiah-O commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1601796460) at 2023-06-21 03:57 PM PDT -Josiah-O,2023-06-25T16:45:35Z,- Josiah-O commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1606154158) at 2023-06-25 09:45 AM PDT -Josiah-O,2023-07-02T17:16:31Z,- Josiah-O commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1616738929) at 2023-07-02 10:16 AM PDT -Josiah-O,2023-07-11T06:47:54Z,- Josiah-O commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1630244243) at 2023-07-10 11:47 PM PDT -Josiah-O,2023-07-23T18:25:26Z,- Josiah-O commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1646923672) at 2023-07-23 11:25 AM PDT -Josiah-O,2023-07-23T19:23:39Z,- Josiah-O commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1646938792) at 2023-07-23 12:23 PM PDT -Josiah-O,2023-07-29T16:58:23Z,- Josiah-O commented on issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1656789462) at 2023-07-29 09:58 AM PDT -Josiah-O,2023-07-29T17:08:35Z,- Josiah-O commented on issue: [5073](https://github.com/hackforla/website/issues/5073#issuecomment-1656791376) at 2023-07-29 10:08 AM PDT -Josiah-O,2023-07-29T17:08:35Z,- Josiah-O closed issue as completed: [5073](https://github.com/hackforla/website/issues/5073#event-9954945903) at 2023-07-29 10:08 AM PDT -Josiah-O,2023-07-29T17:16:58Z,- Josiah-O commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1656792765) at 2023-07-29 10:16 AM PDT -Josiah-O,2023-08-12T18:50:48Z,- Josiah-O commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1676052345) at 2023-08-12 11:50 AM PDT -Josiah-O,2023-08-13T17:14:07Z,- Josiah-O opened issue: [5191](https://github.com/hackforla/website/issues/5191) at 2023-08-13 10:14 AM PDT -Josiah-O,2023-08-13T19:28:31Z,- Josiah-O opened issue: [5192](https://github.com/hackforla/website/issues/5192) at 2023-08-13 12:28 PM PDT -Josiah-O,2023-08-13T19:46:25Z,- Josiah-O opened issue: [5193](https://github.com/hackforla/website/issues/5193) at 2023-08-13 12:46 PM PDT -Josiah-O,2023-08-13T20:00:21Z,- Josiah-O opened issue: [5194](https://github.com/hackforla/website/issues/5194) at 2023-08-13 01:00 PM PDT -Josiah-O,2023-08-17T22:33:49Z,- Josiah-O opened issue: [5246](https://github.com/hackforla/website/issues/5246) at 2023-08-17 03:33 PM PDT -Josiah-O,2023-08-20T17:27:36Z,- Josiah-O opened issue: [5268](https://github.com/hackforla/website/issues/5268) at 2023-08-20 10:27 AM PDT -Josiah-O,2023-08-20T18:42:35Z,- Josiah-O opened issue: [5272](https://github.com/hackforla/website/issues/5272) at 2023-08-20 11:42 AM PDT -Josiah-O,2023-08-20T19:17:39Z,- Josiah-O opened issue: [5273](https://github.com/hackforla/website/issues/5273) at 2023-08-20 12:17 PM PDT -Josiah-O,2023-08-25T14:50:50Z,- Josiah-O commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1693491893) at 2023-08-25 07:50 AM PDT -Josiah-O,2023-08-27T17:19:50Z,- Josiah-O commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1694719063) at 2023-08-27 10:19 AM PDT -Josiah-O,2023-08-27T19:11:08Z,- Josiah-O opened issue: [5320](https://github.com/hackforla/website/issues/5320) at 2023-08-27 12:11 PM PDT -Josiah-O,2023-08-27T19:18:36Z,- Josiah-O commented on issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1694740968) at 2023-08-27 12:18 PM PDT -Josiah-O,2023-09-24T13:05:32Z,- Josiah-O commented on issue: [5325](https://github.com/hackforla/website/issues/5325#issuecomment-1732566463) at 2023-09-24 06:05 AM PDT -Josiah-O,2023-09-24T13:50:15Z,- Josiah-O commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1732574794) at 2023-09-24 06:50 AM PDT -Josiah-O,2023-10-08T18:18:49Z,- Josiah-O commented on issue: [4713](https://github.com/hackforla/website/issues/4713#issuecomment-1752122219) at 2023-10-08 11:18 AM PDT -Josiah-O,2023-10-08T18:18:49Z,- Josiah-O closed issue as completed: [4713](https://github.com/hackforla/website/issues/4713#event-10585009842) at 2023-10-08 11:18 AM PDT -Josiah-O,2023-10-29T17:50:47Z,- Josiah-O commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1784181409) at 2023-10-29 10:50 AM PDT -josiehandeveloper,2021-04-30T03:10:32Z,- josiehandeveloper assigned to issue: [1462](https://github.com/hackforla/website/issues/1462) at 2021-04-29 08:10 PM PDT -josiehandeveloper,2021-04-30T04:02:56Z,- josiehandeveloper opened pull request: [1495](https://github.com/hackforla/website/pull/1495) at 2021-04-29 09:02 PM PDT -josiehandeveloper,2021-04-30T04:05:50Z,- josiehandeveloper commented on issue: [1462](https://github.com/hackforla/website/issues/1462#issuecomment-829789824) at 2021-04-29 09:05 PM PDT -josiehandeveloper,2021-04-30T17:44:08Z,- josiehandeveloper pull request merged: [1495](https://github.com/hackforla/website/pull/1495#event-4670914516) at 2021-04-30 10:44 AM PDT -josiehandeveloper,2021-05-02T17:53:40Z,- josiehandeveloper assigned to issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-829584102) at 2021-05-02 10:53 AM PDT -josiehandeveloper,2021-05-03T01:04:47Z,- josiehandeveloper commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-830976931) at 2021-05-02 06:04 PM PDT -josiehandeveloper,2021-05-04T23:11:22Z,- josiehandeveloper commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-832305878) at 2021-05-04 04:11 PM PDT -josiehandeveloper,2021-05-05T02:20:18Z,- josiehandeveloper closed issue by PR 2969: [1498](https://github.com/hackforla/website/issues/1498#event-4686486634) at 2021-05-04 07:20 PM PDT -josiehandeveloper,2021-05-05T02:20:20Z,- josiehandeveloper reopened issue: [1498](https://github.com/hackforla/website/issues/1498#event-4686486634) at 2021-05-04 07:20 PM PDT -josiehandeveloper,2021-05-05T03:47:14Z,- josiehandeveloper opened pull request: [1514](https://github.com/hackforla/website/pull/1514) at 2021-05-04 08:47 PM PDT -josiehandeveloper,2021-05-05T21:45:19Z,- josiehandeveloper commented on pull request: [1514](https://github.com/hackforla/website/pull/1514#issuecomment-833033962) at 2021-05-05 02:45 PM PDT -josiehandeveloper,2021-05-06T11:16:30Z,- josiehandeveloper pull request merged: [1514](https://github.com/hackforla/website/pull/1514#event-4694520462) at 2021-05-06 04:16 AM PDT -josiehandeveloper,2021-05-06T23:24:13Z,- josiehandeveloper submitted pull request review: [1513](https://github.com/hackforla/website/pull/1513#pullrequestreview-653969373) at 2021-05-06 04:24 PM PDT -josiehandeveloper,2021-05-07T02:01:21Z,- josiehandeveloper commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-834003025) at 2021-05-06 07:01 PM PDT -josiehandeveloper,2021-05-07T02:45:56Z,- josiehandeveloper commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-834019520) at 2021-05-06 07:45 PM PDT -josiehandeveloper,2021-05-12T02:17:16Z,- josiehandeveloper commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-839380439) at 2021-05-11 07:17 PM PDT -josiehandeveloper,2021-05-12T02:29:20Z,- josiehandeveloper commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-839386155) at 2021-05-11 07:29 PM PDT -josiehandeveloper,2021-05-12T03:04:26Z,- josiehandeveloper assigned to issue: [1521](https://github.com/hackforla/website/issues/1521) at 2021-05-11 08:04 PM PDT -josiehandeveloper,2021-05-15T19:19:18Z,- josiehandeveloper commented on issue: [1521](https://github.com/hackforla/website/issues/1521#issuecomment-841711431) at 2021-05-15 12:19 PM PDT -josiehandeveloper,2021-05-15T22:17:00Z,- josiehandeveloper opened pull request: [1547](https://github.com/hackforla/website/pull/1547) at 2021-05-15 03:17 PM PDT -josiehandeveloper,2021-05-16T17:46:26Z,- josiehandeveloper commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-841850997) at 2021-05-16 10:46 AM PDT -josiehandeveloper,2021-05-16T17:46:26Z,- josiehandeveloper closed issue as completed: [1374](https://github.com/hackforla/website/issues/1374#event-4751229873) at 2021-05-16 10:46 AM PDT -josiehandeveloper,2021-05-19T01:19:51Z,- josiehandeveloper commented on pull request: [1547](https://github.com/hackforla/website/pull/1547#issuecomment-843673659) at 2021-05-18 06:19 PM PDT -josiehandeveloper,2021-05-19T02:32:32Z,- josiehandeveloper commented on pull request: [1547](https://github.com/hackforla/website/pull/1547#issuecomment-843697495) at 2021-05-18 07:32 PM PDT -josiehandeveloper,2021-05-20T18:16:28Z,- josiehandeveloper pull request merged: [1547](https://github.com/hackforla/website/pull/1547#event-4775150109) at 2021-05-20 11:16 AM PDT -josiehandeveloper,2021-05-21T19:59:11Z,- josiehandeveloper commented on pull request: [1557](https://github.com/hackforla/website/pull/1557#issuecomment-846221266) at 2021-05-21 12:59 PM PDT -josiehandeveloper,2021-05-21T20:18:42Z,- josiehandeveloper commented on pull request: [1557](https://github.com/hackforla/website/pull/1557#issuecomment-846230461) at 2021-05-21 01:18 PM PDT -josiehandeveloper,2021-05-21T22:09:45Z,- josiehandeveloper submitted pull request review: [1557](https://github.com/hackforla/website/pull/1557#pullrequestreview-665992451) at 2021-05-21 03:09 PM PDT -josiehandeveloper,2021-05-30T18:17:09Z,- josiehandeveloper assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -josiehandeveloper,2021-06-09T02:15:30Z,- josiehandeveloper assigned to issue: [1607](https://github.com/hackforla/website/issues/1607) at 2021-06-08 07:15 PM PDT -josiehandeveloper,2021-06-13T02:11:44Z,- josiehandeveloper unassigned from issue: [1607](https://github.com/hackforla/website/issues/1607#issuecomment-860105598) at 2021-06-12 07:11 PM PDT -josiehandeveloper,2021-06-13T02:12:29Z,- josiehandeveloper assigned to issue: [1607](https://github.com/hackforla/website/issues/1607#issuecomment-860105598) at 2021-06-12 07:12 PM PDT -josiehandeveloper,2021-06-13T03:22:38Z,- josiehandeveloper opened pull request: [1731](https://github.com/hackforla/website/pull/1731) at 2021-06-12 08:22 PM PDT -josiehandeveloper,2021-06-16T06:52:33Z,- josiehandeveloper opened pull request: [1752](https://github.com/hackforla/website/pull/1752) at 2021-06-15 11:52 PM PDT -josiehandeveloper,2021-06-16T20:10:48Z,- josiehandeveloper pull request closed w/o merging: [1752](https://github.com/hackforla/website/pull/1752#event-4900165686) at 2021-06-16 01:10 PM PDT -josiehandeveloper,2021-06-22T00:36:35Z,- josiehandeveloper commented on pull request: [1731](https://github.com/hackforla/website/pull/1731#issuecomment-865436416) at 2021-06-21 05:36 PM PDT -josiehandeveloper,2021-06-22T00:36:35Z,- josiehandeveloper pull request merged: [1731](https://github.com/hackforla/website/pull/1731#event-4919742789) at 2021-06-21 05:36 PM PDT -josiehandeveloper,2021-06-22T00:36:44Z,- josiehandeveloper reopened pull request: [1731](https://github.com/hackforla/website/pull/1731#event-4919742789) at 2021-06-21 05:36 PM PDT -josiehandeveloper,2021-06-23T17:06:50Z,- josiehandeveloper pull request merged: [1731](https://github.com/hackforla/website/pull/1731#event-4930163243) at 2021-06-23 10:06 AM PDT -Joyce750526,4326,SKILLS ISSUE -Joyce750526,2023-03-29T03:49:28Z,- Joyce750526 opened issue: [4326](https://github.com/hackforla/website/issues/4326) at 2023-03-28 08:49 PM PDT -Joyce750526,2023-03-29T04:12:50Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1487920398) at 2023-03-28 09:12 PM PDT -Joyce750526,2023-04-09T19:15:59Z,- Joyce750526 assigned to issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1487920398) at 2023-04-09 12:15 PM PDT -Joyce750526,2023-06-05T06:42:12Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1576136094) at 2023-06-04 11:42 PM PDT -Joyce750526,2023-06-18T06:14:24Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1595977696) at 2023-06-17 11:14 PM PDT -Joyce750526,2024-01-10T03:45:21Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1884146554) at 2024-01-09 07:45 PM PST -joyceguo99,2023-08-18T21:58:46Z,- joyceguo99 assigned to issue: [5252](https://github.com/hackforla/website/issues/5252) at 2023-08-18 02:58 PM PDT -joyceguo99,2023-08-30T01:52:02Z,- joyceguo99 unassigned from issue: [5252](https://github.com/hackforla/website/issues/5252#event-10153487329) at 2023-08-29 06:52 PM PDT -Jp-hmb,2025-07-31T02:53:52Z,- Jp-hmb opened issue: [8252](https://github.com/hackforla/website/issues/8252) at 2025-07-30 07:53 PM PDT -JpadillaCoding,4716,SKILLS ISSUE -JpadillaCoding,2023-05-24T03:13:15Z,- JpadillaCoding opened issue: [4716](https://github.com/hackforla/website/issues/4716) at 2023-05-23 08:13 PM PDT -JpadillaCoding,2023-05-24T03:13:16Z,- JpadillaCoding assigned to issue: [4716](https://github.com/hackforla/website/issues/4716) at 2023-05-23 08:13 PM PDT -JpadillaCoding,2023-05-27T05:38:27Z,- JpadillaCoding assigned to issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1562269099) at 2023-05-26 10:38 PM PDT -JpadillaCoding,2023-05-27T05:44:08Z,- JpadillaCoding unassigned from issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1565219916) at 2023-05-26 10:44 PM PDT -JpadillaCoding,2023-05-27T05:59:32Z,- JpadillaCoding assigned to issue: [4419](https://github.com/hackforla/website/issues/4419) at 2023-05-26 10:59 PM PDT -JpadillaCoding,2023-05-27T06:02:07Z,- JpadillaCoding commented on issue: [4419](https://github.com/hackforla/website/issues/4419#issuecomment-1565225125) at 2023-05-26 11:02 PM PDT -JpadillaCoding,2023-05-27T06:29:28Z,- JpadillaCoding commented on issue: [4716](https://github.com/hackforla/website/issues/4716#issuecomment-1565232379) at 2023-05-26 11:29 PM PDT -JpadillaCoding,2023-05-27T06:46:37Z,- JpadillaCoding opened pull request: [4748](https://github.com/hackforla/website/pull/4748) at 2023-05-26 11:46 PM PDT -JpadillaCoding,2023-05-31T14:49:52Z,- JpadillaCoding pull request merged: [4748](https://github.com/hackforla/website/pull/4748#event-9391637565) at 2023-05-31 07:49 AM PDT -JpadillaCoding,2023-06-03T00:11:04Z,- JpadillaCoding assigned to issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1518914009) at 2023-06-02 05:11 PM PDT -JpadillaCoding,2023-06-03T00:11:31Z,- JpadillaCoding unassigned from issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1574462397) at 2023-06-02 05:11 PM PDT -JpadillaCoding,2023-06-03T00:12:25Z,- JpadillaCoding assigned to issue: [4479](https://github.com/hackforla/website/issues/4479) at 2023-06-02 05:12 PM PDT -JpadillaCoding,2023-06-03T00:19:49Z,- JpadillaCoding commented on issue: [4479](https://github.com/hackforla/website/issues/4479#issuecomment-1574481883) at 2023-06-02 05:19 PM PDT -JpadillaCoding,2023-06-03T00:32:20Z,- JpadillaCoding opened pull request: [4774](https://github.com/hackforla/website/pull/4774) at 2023-06-02 05:32 PM PDT -JpadillaCoding,2023-06-03T00:32:35Z,- JpadillaCoding pull request closed w/o merging: [4774](https://github.com/hackforla/website/pull/4774#event-9419036484) at 2023-06-02 05:32 PM PDT -JpadillaCoding,2023-06-03T00:33:33Z,- JpadillaCoding commented on issue: [4479](https://github.com/hackforla/website/issues/4479#issuecomment-1574489714) at 2023-06-02 05:33 PM PDT -JpadillaCoding,2023-06-03T01:50:30Z,- JpadillaCoding opened pull request: [4775](https://github.com/hackforla/website/pull/4775) at 2023-06-02 06:50 PM PDT -JpadillaCoding,2023-06-03T11:15:39Z,- JpadillaCoding commented on issue: [4479](https://github.com/hackforla/website/issues/4479#issuecomment-1574869556) at 2023-06-03 04:15 AM PDT -JpadillaCoding,2023-06-04T19:55:35Z,- JpadillaCoding commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1575691737) at 2023-06-04 12:55 PM PDT -JpadillaCoding,2023-06-06T06:17:01Z,- JpadillaCoding commented on issue: [4479](https://github.com/hackforla/website/issues/4479#issuecomment-1577980179) at 2023-06-05 11:17 PM PDT -JpadillaCoding,2023-06-06T06:18:56Z,- JpadillaCoding commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1577981754) at 2023-06-05 11:18 PM PDT -JpadillaCoding,2023-06-08T05:07:44Z,- JpadillaCoding commented on pull request: [4773](https://github.com/hackforla/website/pull/4773#issuecomment-1581898242) at 2023-06-07 10:07 PM PDT -JpadillaCoding,2023-06-08T05:20:07Z,- JpadillaCoding commented on pull request: [4773](https://github.com/hackforla/website/pull/4773#issuecomment-1581907296) at 2023-06-07 10:20 PM PDT -JpadillaCoding,2023-06-11T00:14:40Z,- JpadillaCoding commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1585869624) at 2023-06-10 05:14 PM PDT -JpadillaCoding,2023-06-11T00:16:42Z,- JpadillaCoding commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1585869974) at 2023-06-10 05:16 PM PDT -JpadillaCoding,2023-06-12T07:11:27Z,- JpadillaCoding pull request merged: [4775](https://github.com/hackforla/website/pull/4775#event-9498415998) at 2023-06-12 12:11 AM PDT -JpadillaCoding,2023-06-17T13:27:14Z,- JpadillaCoding assigned to issue: [4762](https://github.com/hackforla/website/issues/4762) at 2023-06-17 06:27 AM PDT -JpadillaCoding,2023-06-17T13:29:14Z,- JpadillaCoding commented on issue: [4762](https://github.com/hackforla/website/issues/4762#issuecomment-1595761134) at 2023-06-17 06:29 AM PDT -JpadillaCoding,2023-06-21T01:34:05Z,- JpadillaCoding assigned to issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1598122157) at 2023-06-20 06:34 PM PDT -JpadillaCoding,2023-06-21T01:38:47Z,- JpadillaCoding commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1599942593) at 2023-06-20 06:38 PM PDT -JpadillaCoding,2023-06-22T19:04:51Z,- JpadillaCoding commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1603176402) at 2023-06-22 12:04 PM PDT -JpadillaCoding,2023-06-22T23:28:34Z,- JpadillaCoding opened pull request: [4875](https://github.com/hackforla/website/pull/4875) at 2023-06-22 04:28 PM PDT -JpadillaCoding,2023-06-25T01:56:32Z,- JpadillaCoding commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1605818828) at 2023-06-24 06:56 PM PDT -JpadillaCoding,2023-06-25T04:01:03Z,- JpadillaCoding pull request merged: [4875](https://github.com/hackforla/website/pull/4875#event-9628582908) at 2023-06-24 09:01 PM PDT -JpadillaCoding,2023-07-01T17:02:54Z,- JpadillaCoding assigned to issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1529757507) at 2023-07-01 10:02 AM PDT -JpadillaCoding,2023-07-01T17:04:33Z,- JpadillaCoding commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1615999912) at 2023-07-01 10:04 AM PDT -JpadillaCoding,2023-07-07T02:54:07Z,- JpadillaCoding commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1624577348) at 2023-07-06 07:54 PM PDT -JpadillaCoding,2023-07-07T04:50:57Z,- JpadillaCoding commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1624734208) at 2023-07-06 09:50 PM PDT -JpadillaCoding,2023-07-15T18:32:07Z,- JpadillaCoding commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1636851639) at 2023-07-15 11:32 AM PDT -JpadillaCoding,2023-07-15T18:32:20Z,- JpadillaCoding opened pull request: [4950](https://github.com/hackforla/website/pull/4950) at 2023-07-15 11:32 AM PDT -JpadillaCoding,2023-07-16T21:16:59Z,- JpadillaCoding commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1637192113) at 2023-07-16 02:16 PM PDT -JpadillaCoding,2023-07-18T17:21:30Z,- JpadillaCoding commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1640650790) at 2023-07-18 10:21 AM PDT -JpadillaCoding,2023-07-20T01:50:23Z,- JpadillaCoding submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1538296150) at 2023-07-19 06:50 PM PDT -JpadillaCoding,2023-07-20T10:42:22Z,- JpadillaCoding pull request merged: [4950](https://github.com/hackforla/website/pull/4950#event-9872854633) at 2023-07-20 03:42 AM PDT -JpadillaCoding,2023-07-20T22:22:50Z,- JpadillaCoding commented on pull request: [4950](https://github.com/hackforla/website/pull/4950#issuecomment-1644697377) at 2023-07-20 03:22 PM PDT -JpadillaCoding,2023-07-20T22:23:53Z,- JpadillaCoding closed issue as completed: [4716](https://github.com/hackforla/website/issues/4716#event-9879648136) at 2023-07-20 03:23 PM PDT -JpadillaCoding,2023-07-21T08:32:22Z,- JpadillaCoding assigned to issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1575582340) at 2023-07-21 01:32 AM PDT -JpadillaCoding,2023-07-21T08:44:40Z,- JpadillaCoding commented on issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1645229130) at 2023-07-21 01:44 AM PDT -JpadillaCoding,2023-07-23T05:52:03Z,- JpadillaCoding opened pull request: [5051](https://github.com/hackforla/website/pull/5051) at 2023-07-22 10:52 PM PDT -JpadillaCoding,2023-07-23T22:58:34Z,- JpadillaCoding commented on pull request: [5053](https://github.com/hackforla/website/pull/5053#issuecomment-1646982124) at 2023-07-23 03:58 PM PDT -JpadillaCoding,2023-07-26T19:02:19Z,- JpadillaCoding commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1652338139) at 2023-07-26 12:02 PM PDT -JpadillaCoding,2023-07-29T12:40:13Z,- JpadillaCoding submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1553273613) at 2023-07-29 05:40 AM PDT -JpadillaCoding,2023-07-29T14:02:37Z,- JpadillaCoding commented on pull request: [5051](https://github.com/hackforla/website/pull/5051#issuecomment-1656738011) at 2023-07-29 07:02 AM PDT -JpadillaCoding,2023-07-29T15:03:59Z,- JpadillaCoding commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1656749376) at 2023-07-29 08:03 AM PDT -JpadillaCoding,2023-07-29T15:06:36Z,- JpadillaCoding submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1553293584) at 2023-07-29 08:06 AM PDT -JpadillaCoding,2023-08-02T05:25:31Z,- JpadillaCoding commented on pull request: [5053](https://github.com/hackforla/website/pull/5053#issuecomment-1661515151) at 2023-08-01 10:25 PM PDT -JpadillaCoding,2023-08-02T20:54:15Z,- JpadillaCoding pull request merged: [5051](https://github.com/hackforla/website/pull/5051#event-9992311880) at 2023-08-02 01:54 PM PDT -jpandh,2021-07-11T23:49:50Z,- jpandh assigned to issue: [1583](https://github.com/hackforla/website/issues/1583) at 2021-07-11 04:49 PM PDT -jpandh,2021-07-18T03:29:16Z,- jpandh commented on issue: [1583](https://github.com/hackforla/website/issues/1583#issuecomment-881991515) at 2021-07-17 08:29 PM PDT -jpandh,2021-07-18T17:15:44Z,- jpandh opened pull request: [1967](https://github.com/hackforla/website/pull/1967) at 2021-07-18 10:15 AM PDT -jpandh,2021-07-22T03:46:53Z,- jpandh pull request merged: [1967](https://github.com/hackforla/website/pull/1967#event-5053479694) at 2021-07-21 08:46 PM PDT -jpandh,2021-07-25T16:39:11Z,- jpandh assigned to issue: [1872](https://github.com/hackforla/website/issues/1872) at 2021-07-25 09:39 AM PDT -jpandh,2021-08-01T04:11:04Z,- jpandh opened pull request: [2028](https://github.com/hackforla/website/pull/2028) at 2021-07-31 09:11 PM PDT -jpandh,2021-08-05T02:11:03Z,- jpandh pull request merged: [2028](https://github.com/hackforla/website/pull/2028#event-5114772965) at 2021-08-04 07:11 PM PDT -jpandh,2021-08-13T02:45:27Z,- jpandh assigned to issue: [1934](https://github.com/hackforla/website/issues/1934) at 2021-08-12 07:45 PM PDT -jpandh,2021-08-15T18:48:47Z,- jpandh assigned to issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-894839590) at 2021-08-15 11:48 AM PDT -jpandh,2021-08-17T22:00:41Z,- jpandh unassigned from issue: [1934](https://github.com/hackforla/website/issues/1934) at 2021-08-17 03:00 PM PDT -Jperparas,6430,SKILLS ISSUE -Jperparas,2024-03-05T04:21:04Z,- Jperparas opened issue: [6430](https://github.com/hackforla/website/issues/6430) at 2024-03-04 08:21 PM PST -Jperparas,2024-03-05T04:36:43Z,- Jperparas assigned to issue: [6430](https://github.com/hackforla/website/issues/6430) at 2024-03-04 08:36 PM PST -Jperparas,2024-03-10T23:23:23Z,- Jperparas assigned to issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1985189593) at 2024-03-10 04:23 PM PDT -Jperparas,2024-03-10T23:24:44Z,- Jperparas commented on issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1987408182) at 2024-03-10 04:24 PM PDT -Jperparas,2024-03-10T23:42:07Z,- Jperparas commented on issue: [6430](https://github.com/hackforla/website/issues/6430#issuecomment-1987414524) at 2024-03-10 04:42 PM PDT -Jperparas,2024-03-11T23:43:27Z,- Jperparas opened pull request: [6456](https://github.com/hackforla/website/pull/6456) at 2024-03-11 04:43 PM PDT -Jperparas,2024-03-13T02:14:24Z,- Jperparas pull request closed w/o merging: [6456](https://github.com/hackforla/website/pull/6456#event-12096915816) at 2024-03-12 07:14 PM PDT -Jperparas,2024-03-13T02:21:46Z,- Jperparas opened pull request: [6457](https://github.com/hackforla/website/pull/6457) at 2024-03-12 07:21 PM PDT -Jperparas,2024-03-13T02:28:31Z,- Jperparas commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1993173221) at 2024-03-12 07:28 PM PDT -Jperparas,2024-03-15T10:07:02Z,- Jperparas pull request merged: [6457](https://github.com/hackforla/website/pull/6457#event-12129377570) at 2024-03-15 03:07 AM PDT -Jperparas,2024-03-18T15:51:08Z,- Jperparas assigned to issue: [6157](https://github.com/hackforla/website/issues/6157) at 2024-03-18 08:51 AM PDT -Jperparas,2024-03-18T15:51:44Z,- Jperparas commented on issue: [6157](https://github.com/hackforla/website/issues/6157#issuecomment-2004294061) at 2024-03-18 08:51 AM PDT -Jperparas,2024-03-19T23:22:46Z,- Jperparas opened pull request: [6476](https://github.com/hackforla/website/pull/6476) at 2024-03-19 04:22 PM PDT -Jperparas,2024-03-19T23:34:48Z,- Jperparas pull request closed w/o merging: [6476](https://github.com/hackforla/website/pull/6476#event-12177267493) at 2024-03-19 04:34 PM PDT -Jperparas,2024-03-20T00:43:12Z,- Jperparas opened pull request: [6477](https://github.com/hackforla/website/pull/6477) at 2024-03-19 05:43 PM PDT -Jperparas,2024-03-20T20:56:42Z,- Jperparas pull request merged: [6477](https://github.com/hackforla/website/pull/6477#event-12191253440) at 2024-03-20 01:56 PM PDT -Jperparas,2024-03-21T18:58:00Z,- Jperparas assigned to issue: [6488](https://github.com/hackforla/website/issues/6488) at 2024-03-21 11:58 AM PDT -Jperparas,2024-03-21T18:59:13Z,- Jperparas commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2013340946) at 2024-03-21 11:59 AM PDT -Jperparas,2024-03-26T19:46:57Z,- Jperparas closed issue as completed: [6430](https://github.com/hackforla/website/issues/6430#event-12255742649) at 2024-03-26 12:46 PM PDT -Jperparas,2024-03-27T02:37:06Z,- Jperparas commented on pull request: [6522](https://github.com/hackforla/website/pull/6522#issuecomment-2021811640) at 2024-03-26 07:37 PM PDT -Jperparas,2024-03-28T02:33:40Z,- Jperparas submitted pull request review: [6522](https://github.com/hackforla/website/pull/6522#pullrequestreview-1965065064) at 2024-03-27 07:33 PM PDT -Jperparas,2024-04-09T23:11:19Z,- Jperparas commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2046181644) at 2024-04-09 04:11 PM PDT -Jperparas,2024-04-10T03:31:11Z,- Jperparas commented on pull request: [6613](https://github.com/hackforla/website/pull/6613#issuecomment-2046481252) at 2024-04-09 08:31 PM PDT -Jperparas,2024-04-11T03:13:13Z,- Jperparas submitted pull request review: [6613](https://github.com/hackforla/website/pull/6613#pullrequestreview-1993211499) at 2024-04-10 08:13 PM PDT -Jperparas,2024-04-11T17:33:14Z,- Jperparas submitted pull request review: [6613](https://github.com/hackforla/website/pull/6613#pullrequestreview-1994786746) at 2024-04-11 10:33 AM PDT -Jperparas,2024-04-12T21:18:29Z,- Jperparas commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2052544898) at 2024-04-12 02:18 PM PDT -Jperparas,2024-04-16T16:17:13Z,- Jperparas commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2059467935) at 2024-04-16 09:17 AM PDT -Jperparas,2024-04-17T02:02:47Z,- Jperparas assigned to issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2053984637) at 2024-04-16 07:02 PM PDT -Jperparas,2024-04-17T02:21:20Z,- Jperparas commented on pull request: [6658](https://github.com/hackforla/website/pull/6658#issuecomment-2060219887) at 2024-04-16 07:21 PM PDT -Jperparas,2024-04-17T02:56:30Z,- Jperparas commented on issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2060253756) at 2024-04-16 07:56 PM PDT -Jperparas,2024-04-17T23:05:35Z,- Jperparas commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2062625513) at 2024-04-17 04:05 PM PDT -Jperparas,2024-04-17T23:07:04Z,- Jperparas commented on issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2062627068) at 2024-04-17 04:07 PM PDT -Jperparas,2024-04-18T03:23:52Z,- Jperparas submitted pull request review: [6646](https://github.com/hackforla/website/pull/6646#pullrequestreview-2007757618) at 2024-04-17 08:23 PM PDT -Jperparas,2024-04-18T03:58:55Z,- Jperparas submitted pull request review: [6658](https://github.com/hackforla/website/pull/6658#pullrequestreview-2007779849) at 2024-04-17 08:58 PM PDT -Jperparas,2024-04-20T02:38:39Z,- Jperparas commented on issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2067521027) at 2024-04-19 07:38 PM PDT -Jperparas,2024-04-21T21:15:55Z,- Jperparas opened pull request: [6708](https://github.com/hackforla/website/pull/6708) at 2024-04-21 02:15 PM PDT -Jperparas,2024-04-21T21:24:59Z,- Jperparas commented on pull request: [6707](https://github.com/hackforla/website/pull/6707#issuecomment-2068205249) at 2024-04-21 02:24 PM PDT -Jperparas,2024-04-23T05:24:49Z,- Jperparas pull request merged: [6708](https://github.com/hackforla/website/pull/6708#event-12569366648) at 2024-04-22 10:24 PM PDT -Jperparas,2024-04-23T06:36:47Z,- Jperparas submitted pull request review: [6707](https://github.com/hackforla/website/pull/6707#pullrequestreview-2016354950) at 2024-04-22 11:36 PM PDT -Jperparas,2024-04-23T18:31:57Z,- Jperparas assigned to issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2063154790) at 2024-04-23 11:31 AM PDT -Jperparas,2024-04-23T18:33:17Z,- Jperparas commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2073128016) at 2024-04-23 11:33 AM PDT -Jperparas,2024-04-24T02:20:57Z,- Jperparas commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2073877552) at 2024-04-23 07:20 PM PDT -Jperparas,2024-04-25T17:49:37Z,- Jperparas submitted pull request review: [6690](https://github.com/hackforla/website/pull/6690#pullrequestreview-2023201786) at 2024-04-25 10:49 AM PDT -Jperparas,2024-04-25T18:18:29Z,- Jperparas commented on pull request: [6748](https://github.com/hackforla/website/pull/6748#issuecomment-2077888905) at 2024-04-25 11:18 AM PDT -Jperparas,2024-04-25T18:26:53Z,- Jperparas submitted pull request review: [6748](https://github.com/hackforla/website/pull/6748#pullrequestreview-2023292718) at 2024-04-25 11:26 AM PDT -Jperparas,2024-04-30T19:14:34Z,- Jperparas commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2086713272) at 2024-04-30 12:14 PM PDT -Jperparas,2024-05-01T06:47:12Z,- Jperparas commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2088056344) at 2024-04-30 11:47 PM PDT -Jperparas,2024-05-01T06:48:40Z,- Jperparas commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2088057307) at 2024-04-30 11:48 PM PDT -Jperparas,2024-05-02T02:10:59Z,- Jperparas commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2089411339) at 2024-05-01 07:10 PM PDT -Jperparas,2024-05-07T21:40:33Z,- Jperparas submitted pull request review: [6766](https://github.com/hackforla/website/pull/6766#pullrequestreview-2044247896) at 2024-05-07 02:40 PM PDT -Jperparas,2024-05-09T19:00:50Z,- Jperparas commented on pull request: [6839](https://github.com/hackforla/website/pull/6839#issuecomment-2103245754) at 2024-05-09 12:00 PM PDT -Jperparas,2024-05-09T19:09:58Z,- Jperparas submitted pull request review: [6839](https://github.com/hackforla/website/pull/6839#pullrequestreview-2048637220) at 2024-05-09 12:09 PM PDT -Jperparas,2024-05-11T19:44:31Z,- Jperparas commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2106002747) at 2024-05-11 12:44 PM PDT -Jperparas,2024-05-15T02:30:05Z,- Jperparas commented on pull request: [6855](https://github.com/hackforla/website/pull/6855#issuecomment-2111466906) at 2024-05-14 07:30 PM PDT -Jperparas,2024-05-15T02:30:53Z,- Jperparas commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2111467449) at 2024-05-14 07:30 PM PDT -Jperparas,2024-05-16T06:33:01Z,- Jperparas submitted pull request review: [6766](https://github.com/hackforla/website/pull/6766#pullrequestreview-2059712799) at 2024-05-15 11:33 PM PDT -Jperparas,2024-05-16T06:40:15Z,- Jperparas submitted pull request review: [6855](https://github.com/hackforla/website/pull/6855#pullrequestreview-2059723915) at 2024-05-15 11:40 PM PDT -Jperparas,2024-05-16T07:06:10Z,- Jperparas submitted pull request review: [6806](https://github.com/hackforla/website/pull/6806#pullrequestreview-2059776469) at 2024-05-16 12:06 AM PDT -jphamtv,5873,SKILLS ISSUE -jphamtv,2023-11-07T04:48:32Z,- jphamtv opened issue: [5873](https://github.com/hackforla/website/issues/5873) at 2023-11-06 08:48 PM PST -jphamtv,2023-11-07T04:48:49Z,- jphamtv assigned to issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1797818529) at 2023-11-06 08:48 PM PST -jphamtv,2023-11-12T05:26:46Z,- jphamtv assigned to issue: [5803](https://github.com/hackforla/website/issues/5803) at 2023-11-11 09:26 PM PST -jphamtv,2023-11-12T05:40:47Z,- jphamtv commented on issue: [5803](https://github.com/hackforla/website/issues/5803#issuecomment-1807011208) at 2023-11-11 09:40 PM PST -jphamtv,2023-11-12T05:43:43Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1807011637) at 2023-11-11 09:43 PM PST -jphamtv,2023-11-12T20:14:34Z,- jphamtv opened pull request: [5893](https://github.com/hackforla/website/pull/5893) at 2023-11-12 12:14 PM PST -jphamtv,2023-11-19T07:18:29Z,- jphamtv pull request merged: [5893](https://github.com/hackforla/website/pull/5893#event-11003195010) at 2023-11-18 11:18 PM PST -jphamtv,2023-11-19T22:25:01Z,- jphamtv assigned to issue: [5919](https://github.com/hackforla/website/issues/5919) at 2023-11-19 02:25 PM PST -jphamtv,2023-11-19T22:25:27Z,- jphamtv commented on issue: [5919](https://github.com/hackforla/website/issues/5919#issuecomment-1817997104) at 2023-11-19 02:25 PM PST -jphamtv,2023-11-21T06:21:37Z,- jphamtv opened pull request: [5927](https://github.com/hackforla/website/pull/5927) at 2023-11-20 10:21 PM PST -jphamtv,2023-11-22T21:29:25Z,- jphamtv pull request merged: [5927](https://github.com/hackforla/website/pull/5927#event-11041390588) at 2023-11-22 01:29 PM PST -jphamtv,2023-11-22T21:34:58Z,- jphamtv commented on pull request: [5933](https://github.com/hackforla/website/pull/5933#issuecomment-1823539183) at 2023-11-22 01:34 PM PST -jphamtv,2023-11-22T21:35:50Z,- jphamtv commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1823539866) at 2023-11-22 01:35 PM PST -jphamtv,2023-11-23T07:41:40Z,- jphamtv submitted pull request review: [5931](https://github.com/hackforla/website/pull/5931#pullrequestreview-1745839007) at 2023-11-22 11:41 PM PST -jphamtv,2023-11-23T07:55:12Z,- jphamtv submitted pull request review: [5933](https://github.com/hackforla/website/pull/5933#pullrequestreview-1745855445) at 2023-11-22 11:55 PM PST -jphamtv,2023-11-23T08:03:30Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1823946959) at 2023-11-23 12:03 AM PST -jphamtv,2023-11-24T21:25:32Z,- jphamtv assigned to issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1801323803) at 2023-11-24 01:25 PM PST -jphamtv,2023-11-24T21:27:23Z,- jphamtv commented on issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1826093896) at 2023-11-24 01:27 PM PST -jphamtv,2023-11-25T06:59:34Z,- jphamtv opened pull request: [5936](https://github.com/hackforla/website/pull/5936) at 2023-11-24 10:59 PM PST -jphamtv,2023-11-27T04:14:41Z,- jphamtv pull request merged: [5936](https://github.com/hackforla/website/pull/5936#event-11065705947) at 2023-11-26 08:14 PM PST -jphamtv,2023-11-27T19:20:26Z,- jphamtv commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1828468569) at 2023-11-27 11:20 AM PST -jphamtv,2023-11-27T20:09:19Z,- jphamtv assigned to issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1763500722) at 2023-11-27 12:09 PM PST -jphamtv,2023-11-27T20:09:46Z,- jphamtv commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1828511409) at 2023-11-27 12:09 PM PST -jphamtv,2023-11-28T05:44:28Z,- jphamtv commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1829143149) at 2023-11-27 09:44 PM PST -jphamtv,2023-11-28T07:38:18Z,- jphamtv opened pull request: [5940](https://github.com/hackforla/website/pull/5940) at 2023-11-27 11:38 PM PST -jphamtv,2023-11-28T07:45:02Z,- jphamtv commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1829271599) at 2023-11-27 11:45 PM PST -jphamtv,2023-11-29T05:16:57Z,- jphamtv commented on pull request: [5943](https://github.com/hackforla/website/pull/5943#issuecomment-1831237499) at 2023-11-28 09:16 PM PST -jphamtv,2023-11-29T05:37:42Z,- jphamtv submitted pull request review: [5943](https://github.com/hackforla/website/pull/5943#pullrequestreview-1754487667) at 2023-11-28 09:37 PM PST -jphamtv,2023-11-29T20:50:01Z,- jphamtv commented on pull request: [5945](https://github.com/hackforla/website/pull/5945#issuecomment-1832679842) at 2023-11-29 12:50 PM PST -jphamtv,2023-11-30T07:21:10Z,- jphamtv submitted pull request review: [5945](https://github.com/hackforla/website/pull/5945#pullrequestreview-1756789572) at 2023-11-29 11:21 PM PST -jphamtv,2023-11-30T15:05:58Z,- jphamtv pull request merged: [5940](https://github.com/hackforla/website/pull/5940#event-11110315569) at 2023-11-30 07:05 AM PST -jphamtv,2023-12-01T05:28:55Z,- jphamtv commented on pull request: [5951](https://github.com/hackforla/website/pull/5951#issuecomment-1835487912) at 2023-11-30 09:28 PM PST -jphamtv,2023-12-01T05:47:51Z,- jphamtv submitted pull request review: [5951](https://github.com/hackforla/website/pull/5951#pullrequestreview-1759064650) at 2023-11-30 09:47 PM PST -jphamtv,2023-12-01T19:21:37Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1836648925) at 2023-12-01 11:21 AM PST -jphamtv,2023-12-05T07:12:30Z,- jphamtv assigned to issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1718731156) at 2023-12-04 11:12 PM PST -jphamtv,2023-12-05T07:14:27Z,- jphamtv commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1840134363) at 2023-12-04 11:14 PM PST -jphamtv,2023-12-06T06:22:47Z,- jphamtv commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1842167380) at 2023-12-05 10:22 PM PST -jphamtv,2023-12-06T06:23:14Z,- jphamtv commented on pull request: [5967](https://github.com/hackforla/website/pull/5967#issuecomment-1842167731) at 2023-12-05 10:23 PM PST -jphamtv,2023-12-06T07:31:09Z,- jphamtv submitted pull request review: [5967](https://github.com/hackforla/website/pull/5967#pullrequestreview-1766841448) at 2023-12-05 11:31 PM PST -jphamtv,2023-12-07T05:26:27Z,- jphamtv submitted pull request review: [5961](https://github.com/hackforla/website/pull/5961#pullrequestreview-1769209863) at 2023-12-06 09:26 PM PST -jphamtv,2023-12-08T21:53:20Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1847888919) at 2023-12-08 01:53 PM PST -jphamtv,2023-12-08T21:53:53Z,- jphamtv closed issue as completed: [5873](https://github.com/hackforla/website/issues/5873#event-11198007078) at 2023-12-08 01:53 PM PST -jphamtv,2023-12-09T00:18:29Z,- jphamtv opened pull request: [5978](https://github.com/hackforla/website/pull/5978) at 2023-12-08 04:18 PM PST -jphamtv,2023-12-09T00:27:50Z,- jphamtv commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1848003394) at 2023-12-08 04:27 PM PST -jphamtv,2023-12-09T00:30:42Z,- jphamtv commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1848005697) at 2023-12-08 04:30 PM PST -jphamtv,2023-12-11T01:55:06Z,- jphamtv commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1849205284) at 2023-12-10 05:55 PM PST -jphamtv,2023-12-11T19:53:29Z,- jphamtv submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1776050915) at 2023-12-11 11:53 AM PST -jphamtv,2023-12-12T20:25:51Z,- jphamtv submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1778379813) at 2023-12-12 12:25 PM PST -jphamtv,2023-12-13T06:48:53Z,- jphamtv commented on pull request: [5976](https://github.com/hackforla/website/pull/5976#issuecomment-1853356807) at 2023-12-12 10:48 PM PST -jphamtv,2023-12-17T02:44:02Z,- jphamtv submitted pull request review: [5976](https://github.com/hackforla/website/pull/5976#pullrequestreview-1785329938) at 2023-12-16 06:44 PM PST -jphamtv,2023-12-31T05:18:51Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1872673852) at 2023-12-30 09:18 PM PST -jphamtv,2023-12-31T23:14:56Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1873053171) at 2023-12-31 03:14 PM PST -jphamtv,2024-01-02T02:40:50Z,- jphamtv pull request merged: [5978](https://github.com/hackforla/website/pull/5978#event-11366783011) at 2024-01-01 06:40 PM PST -jphamtv,2024-01-03T07:55:09Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1874970152) at 2024-01-02 11:55 PM PST -jphamtv,2024-01-06T03:10:25Z,- jphamtv opened issue: [6071](https://github.com/hackforla/website/issues/6071) at 2024-01-05 07:10 PM PST -jphamtv,2024-01-09T06:30:46Z,- jphamtv commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1882484562) at 2024-01-08 10:30 PM PST -jphamtv,2024-01-12T19:19:41Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1818892013) at 2024-01-12 11:19 AM PST -jphamtv,2024-01-15T06:40:08Z,- jphamtv assigned to issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1846152440) at 2024-01-14 10:40 PM PST -jphamtv,2024-01-15T06:42:33Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1891395152) at 2024-01-14 10:42 PM PST -jphamtv,2024-01-18T07:20:55Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1897933765) at 2024-01-17 11:20 PM PST -jphamtv,2024-01-19T06:25:38Z,- jphamtv commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1899836670) at 2024-01-18 10:25 PM PST -jphamtv,2024-01-19T07:22:03Z,- jphamtv submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1831753131) at 2024-01-18 11:22 PM PST -jphamtv,2024-01-19T07:40:59Z,- jphamtv submitted pull request review: [6131](https://github.com/hackforla/website/pull/6131#pullrequestreview-1831777475) at 2024-01-18 11:40 PM PST -jphamtv,2024-01-19T08:04:27Z,- jphamtv submitted pull request review: [6132](https://github.com/hackforla/website/pull/6132#pullrequestreview-1831826960) at 2024-01-19 12:04 AM PST -jphamtv,2024-01-19T08:12:10Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1899947725) at 2024-01-19 12:12 AM PST -jphamtv,2024-01-19T18:59:13Z,- jphamtv closed issue by PR 6131: [5715](https://github.com/hackforla/website/issues/5715#event-11541084238) at 2024-01-19 10:59 AM PST -jphamtv,2024-01-21T19:06:45Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1902730311) at 2024-01-21 11:06 AM PST -jphamtv,2024-01-21T19:37:10Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1902738428) at 2024-01-21 11:37 AM PST -jphamtv,2024-01-23T06:01:16Z,- jphamtv submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1837913103) at 2024-01-22 10:01 PM PST -jphamtv,2024-01-23T07:30:44Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1838022856) at 2024-01-22 11:30 PM PST -jphamtv,2024-01-24T01:40:07Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1907207000) at 2024-01-23 05:40 PM PST -jphamtv,2024-01-24T06:46:00Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1840523335) at 2024-01-23 10:46 PM PST -jphamtv,2024-01-26T02:45:13Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1911323032) at 2024-01-25 06:45 PM PST -jphamtv,2024-01-26T03:10:40Z,- jphamtv submitted pull request review: [6147](https://github.com/hackforla/website/pull/6147#pullrequestreview-1845019741) at 2024-01-25 07:10 PM PST -jphamtv,2024-01-26T06:49:24Z,- jphamtv commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1911570461) at 2024-01-25 10:49 PM PST -jphamtv,2024-01-26T06:49:39Z,- jphamtv closed issue by PR 6149: [5960](https://github.com/hackforla/website/issues/5960#event-11605513020) at 2024-01-25 10:49 PM PST -jphamtv,2024-01-26T06:56:10Z,- jphamtv closed issue by PR 6164: [5809](https://github.com/hackforla/website/issues/5809#event-11605549395) at 2024-01-25 10:56 PM PST -jphamtv,2024-01-26T06:59:04Z,- jphamtv commented on pull request: [6164](https://github.com/hackforla/website/pull/6164#issuecomment-1911579468) at 2024-01-25 10:59 PM PST -jphamtv,2024-01-26T07:02:05Z,- jphamtv closed issue by PR 6147: [6112](https://github.com/hackforla/website/issues/6112#event-11605582030) at 2024-01-25 11:02 PM PST -jphamtv,2024-01-26T08:01:40Z,- jphamtv submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1845228504) at 2024-01-26 12:01 AM PST -jphamtv,2024-01-26T08:05:12Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1911636648) at 2024-01-26 12:05 AM PST -jphamtv,2024-01-27T07:05:48Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1913045927) at 2024-01-26 11:05 PM PST -jphamtv,2024-01-29T23:00:06Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1915724210) at 2024-01-29 03:00 PM PST -jphamtv,2024-01-30T06:41:23Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1916175373) at 2024-01-29 10:41 PM PST -jphamtv,2024-01-30T07:05:02Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1916199295) at 2024-01-29 11:05 PM PST -jphamtv,2024-01-30T07:41:40Z,- jphamtv assigned to issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1694721521) at 2024-01-29 11:41 PM PST -jphamtv,2024-01-30T07:46:28Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1916250201) at 2024-01-29 11:46 PM PST -jphamtv,2024-01-31T07:26:39Z,- jphamtv submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1853045502) at 2024-01-30 11:26 PM PST -jphamtv,2024-01-31T07:39:23Z,- jphamtv closed issue by PR 6148: [6104](https://github.com/hackforla/website/issues/6104#event-11651827352) at 2024-01-30 11:39 PM PST -jphamtv,2024-01-31T07:54:01Z,- jphamtv submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1853084638) at 2024-01-30 11:54 PM PST -jphamtv,2024-01-31T07:54:19Z,- jphamtv closed issue by PR 6135: [6065](https://github.com/hackforla/website/issues/6065#event-11651961234) at 2024-01-30 11:54 PM PST -jphamtv,2024-02-02T06:27:25Z,- jphamtv submitted pull request review: [6197](https://github.com/hackforla/website/pull/6197#pullrequestreview-1858425038) at 2024-02-01 10:27 PM PST -jphamtv,2024-02-02T06:27:52Z,- jphamtv closed issue by PR 6197: [6189](https://github.com/hackforla/website/issues/6189#event-11679741967) at 2024-02-01 10:27 PM PST -jphamtv,2024-02-02T06:46:11Z,- jphamtv submitted pull request review: [6198](https://github.com/hackforla/website/pull/6198#pullrequestreview-1858457059) at 2024-02-01 10:46 PM PST -jphamtv,2024-02-02T06:46:41Z,- jphamtv closed issue by PR 6198: [6165](https://github.com/hackforla/website/issues/6165#event-11679900281) at 2024-02-01 10:46 PM PST -jphamtv,2024-02-02T07:13:18Z,- jphamtv commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1923154212) at 2024-02-01 11:13 PM PST -jphamtv,2024-02-02T08:18:01Z,- jphamtv submitted pull request review: [6202](https://github.com/hackforla/website/pull/6202#pullrequestreview-1858636385) at 2024-02-02 12:18 AM PST -jphamtv,2024-02-02T08:21:47Z,- jphamtv closed issue by PR 6202: [5707](https://github.com/hackforla/website/issues/5707#event-11680826152) at 2024-02-02 12:21 AM PST -jphamtv,2024-02-05T18:38:44Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1927777403) at 2024-02-05 10:38 AM PST -jphamtv,2024-02-06T08:13:04Z,- jphamtv opened pull request: [6255](https://github.com/hackforla/website/pull/6255) at 2024-02-06 12:13 AM PST -jphamtv,2024-02-09T06:44:00Z,- jphamtv closed issue by PR 6260: [6050](https://github.com/hackforla/website/issues/6050#event-11754416032) at 2024-02-08 10:44 PM PST -jphamtv,2024-02-09T07:02:20Z,- jphamtv commented on pull request: [6265](https://github.com/hackforla/website/pull/6265#issuecomment-1935426992) at 2024-02-08 11:02 PM PST -jphamtv,2024-02-09T07:18:35Z,- jphamtv closed issue by PR 6241: [6233](https://github.com/hackforla/website/issues/6233#event-11754621221) at 2024-02-08 11:18 PM PST -jphamtv,2024-02-09T07:25:07Z,- jphamtv commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1935448083) at 2024-02-08 11:25 PM PST -jphamtv,2024-02-09T07:52:12Z,- jphamtv submitted pull request review: [6262](https://github.com/hackforla/website/pull/6262#pullrequestreview-1871823448) at 2024-02-08 11:52 PM PST -jphamtv,2024-02-09T07:52:49Z,- jphamtv commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1935474027) at 2024-02-08 11:52 PM PST -jphamtv,2024-02-09T07:54:17Z,- jphamtv closed issue by PR 6262: [6184](https://github.com/hackforla/website/issues/6184#event-11754862147) at 2024-02-08 11:54 PM PST -jphamtv,2024-02-09T08:14:01Z,- jphamtv commented on pull request: [6263](https://github.com/hackforla/website/pull/6263#issuecomment-1935497388) at 2024-02-09 12:14 AM PST -jphamtv,2024-02-09T08:16:59Z,- jphamtv closed issue by PR 6263: [6187](https://github.com/hackforla/website/issues/6187#event-11755041955) at 2024-02-09 12:16 AM PST -jphamtv,2024-02-09T08:22:33Z,- jphamtv commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1935507118) at 2024-02-09 12:22 AM PST -jphamtv,2024-02-10T21:26:25Z,- jphamtv opened issue: [6274](https://github.com/hackforla/website/issues/6274) at 2024-02-10 01:26 PM PST -jphamtv,2024-02-10T21:40:25Z,- jphamtv commented on issue: [6274](https://github.com/hackforla/website/issues/6274#issuecomment-1937196676) at 2024-02-10 01:40 PM PST -jphamtv,2024-02-10T21:43:25Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1937202732) at 2024-02-10 01:43 PM PST -jphamtv,2024-02-13T01:23:33Z,- jphamtv commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1940065275) at 2024-02-12 05:23 PM PST -jphamtv,2024-02-15T03:15:08Z,- jphamtv pull request merged: [6255](https://github.com/hackforla/website/pull/6255#event-11809476894) at 2024-02-14 07:15 PM PST -jphamtv,2024-02-15T06:05:00Z,- jphamtv commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1945425710) at 2024-02-14 10:05 PM PST -jphamtv,2024-02-16T00:29:51Z,- jphamtv submitted pull request review: [6267](https://github.com/hackforla/website/pull/6267#pullrequestreview-1884122415) at 2024-02-15 04:29 PM PST -jphamtv,2024-02-16T00:31:25Z,- jphamtv closed issue by PR 6267: [6051](https://github.com/hackforla/website/issues/6051#event-11822685820) at 2024-02-15 04:31 PM PST -jphamtv,2024-02-16T05:27:07Z,- jphamtv closed issue by PR 6300: [3861](https://github.com/hackforla/website/issues/3861#event-11824529257) at 2024-02-15 09:27 PM PST -jphamtv,2024-02-16T05:45:57Z,- jphamtv submitted pull request review: [6275](https://github.com/hackforla/website/pull/6275#pullrequestreview-1884352127) at 2024-02-15 09:45 PM PST -jphamtv,2024-02-16T05:46:41Z,- jphamtv closed issue by PR 6275: [5714](https://github.com/hackforla/website/issues/5714#event-11824656130) at 2024-02-15 09:46 PM PST -jphamtv,2024-02-16T06:24:56Z,- jphamtv submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1884388619) at 2024-02-15 10:24 PM PST -jphamtv,2024-02-16T07:17:26Z,- jphamtv submitted pull request review: [6293](https://github.com/hackforla/website/pull/6293#pullrequestreview-1884446486) at 2024-02-15 11:17 PM PST -jphamtv,2024-02-16T07:19:00Z,- jphamtv closed issue by PR 6293: [5179](https://github.com/hackforla/website/issues/5179#event-11825240702) at 2024-02-15 11:19 PM PST -jphamtv,2024-02-17T01:13:49Z,- jphamtv submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1886292258) at 2024-02-16 05:13 PM PST -jphamtv,2024-02-21T07:09:15Z,- jphamtv assigned to issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1809381162) at 2024-02-20 11:09 PM PST -jphamtv,2024-02-21T07:12:20Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1956023993) at 2024-02-20 11:12 PM PST -jphamtv,2024-02-23T05:40:28Z,- jphamtv closed issue by PR 6351: [6312](https://github.com/hackforla/website/issues/6312#event-11899562418) at 2024-02-22 09:40 PM PST -jphamtv,2024-02-23T05:47:05Z,- jphamtv closed issue by PR 6352: [5881](https://github.com/hackforla/website/issues/5881#event-11899591694) at 2024-02-22 09:47 PM PST -jphamtv,2024-02-23T06:17:19Z,- jphamtv submitted pull request review: [6358](https://github.com/hackforla/website/pull/6358#pullrequestreview-1897429766) at 2024-02-22 10:17 PM PST -jphamtv,2024-02-23T06:17:53Z,- jphamtv closed issue by PR 6358: [6239](https://github.com/hackforla/website/issues/6239#event-11899743345) at 2024-02-22 10:17 PM PST -jphamtv,2024-02-23T06:30:39Z,- jphamtv submitted pull request review: [6359](https://github.com/hackforla/website/pull/6359#pullrequestreview-1897440836) at 2024-02-22 10:30 PM PST -jphamtv,2024-02-23T06:30:59Z,- jphamtv closed issue by PR 6359: [6107](https://github.com/hackforla/website/issues/6107#event-11899815978) at 2024-02-22 10:30 PM PST -jphamtv,2024-02-23T06:52:38Z,- jphamtv submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1897459535) at 2024-02-22 10:52 PM PST -jphamtv,2024-02-23T07:31:24Z,- jphamtv commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1960850457) at 2024-02-22 11:31 PM PST -jphamtv,2024-02-23T08:02:34Z,- jphamtv closed issue by PR 6328: [6298](https://github.com/hackforla/website/issues/6298#event-11900453171) at 2024-02-23 12:02 AM PST -jphamtv,2024-02-24T18:30:39Z,- jphamtv submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1899551329) at 2024-02-24 10:30 AM PST -jphamtv,2024-02-27T00:47:25Z,- jphamtv commented on issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-1965592264) at 2024-02-26 04:47 PM PST -jphamtv,2024-02-27T00:56:09Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1965600137) at 2024-02-26 04:56 PM PST -jphamtv,2024-02-27T02:55:21Z,- jphamtv assigned to issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-1965592264) at 2024-02-26 06:55 PM PST -jphamtv,2024-03-01T06:12:33Z,- jphamtv closed issue by PR 6371: [6053](https://github.com/hackforla/website/issues/6053#event-11975064582) at 2024-02-29 10:12 PM PST -jphamtv,2024-03-01T06:19:19Z,- jphamtv closed issue by PR 6400: [6049](https://github.com/hackforla/website/issues/6049#event-11975111631) at 2024-02-29 10:19 PM PST -jphamtv,2024-03-01T06:26:49Z,- jphamtv submitted pull request review: [6401](https://github.com/hackforla/website/pull/6401#pullrequestreview-1910398908) at 2024-02-29 10:26 PM PST -jphamtv,2024-03-01T06:27:24Z,- jphamtv closed issue by PR 6401: [6123](https://github.com/hackforla/website/issues/6123#event-11975164387) at 2024-02-29 10:27 PM PST -jphamtv,2024-03-01T06:41:10Z,- jphamtv submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1910412325) at 2024-02-29 10:41 PM PST -jphamtv,2024-03-01T06:46:43Z,- jphamtv submitted pull request review: [6362](https://github.com/hackforla/website/pull/6362#pullrequestreview-1910417677) at 2024-02-29 10:46 PM PST -jphamtv,2024-03-01T07:00:56Z,- jphamtv closed issue by PR 6362: [6044](https://github.com/hackforla/website/issues/6044#event-11975407048) at 2024-02-29 11:00 PM PST -jphamtv,2024-03-01T07:06:14Z,- jphamtv closed issue by PR 6383: [6372](https://github.com/hackforla/website/issues/6372#event-11975447554) at 2024-02-29 11:06 PM PST -jphamtv,2024-03-01T07:24:38Z,- jphamtv submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1910487818) at 2024-02-29 11:24 PM PST -jphamtv,2024-03-01T07:39:43Z,- jphamtv closed issue by PR 6374: [6199](https://github.com/hackforla/website/issues/6199#event-11975791802) at 2024-02-29 11:39 PM PST -jphamtv,2024-03-02T00:23:44Z,- jphamtv submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1912369136) at 2024-03-01 04:23 PM PST -jphamtv,2024-03-02T06:24:05Z,- jphamtv submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1912588418) at 2024-03-01 10:24 PM PST -jphamtv,2024-03-02T06:27:33Z,- jphamtv closed issue by PR 6384: [6373](https://github.com/hackforla/website/issues/6373#event-11986603427) at 2024-03-01 10:27 PM PST -jphamtv,2024-03-06T20:05:10Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1981691773) at 2024-03-06 12:05 PM PST -jphamtv,2024-03-08T06:13:44Z,- jphamtv submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1924095103) at 2024-03-07 10:13 PM PST -jphamtv,2024-03-08T06:14:27Z,- jphamtv closed issue by PR 6432: [5452](https://github.com/hackforla/website/issues/5452#event-12051510422) at 2024-03-07 10:14 PM PST -jphamtv,2024-03-08T06:39:51Z,- jphamtv submitted pull request review: [6439](https://github.com/hackforla/website/pull/6439#pullrequestreview-1924119814) at 2024-03-07 10:39 PM PST -jphamtv,2024-03-08T06:40:16Z,- jphamtv closed issue by PR 6439: [6153](https://github.com/hackforla/website/issues/6153#event-12051665471) at 2024-03-07 10:40 PM PST -jphamtv,2024-03-08T07:03:07Z,- jphamtv submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1924150123) at 2024-03-07 11:03 PM PST -jphamtv,2024-03-08T07:08:28Z,- jphamtv submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1924160503) at 2024-03-07 11:08 PM PST -jphamtv,2024-03-08T07:12:45Z,- jphamtv closed issue by PR 6433: [5842](https://github.com/hackforla/website/issues/5842#event-12051951080) at 2024-03-07 11:12 PM PST -jphamtv,2024-03-08T07:32:41Z,- jphamtv commented on issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1985189593) at 2024-03-07 11:32 PM PST -jphamtv,2024-03-08T07:37:30Z,- jphamtv commented on pull request: [6437](https://github.com/hackforla/website/pull/6437#issuecomment-1985194798) at 2024-03-07 11:37 PM PST -jphamtv,2024-03-08T08:50:57Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1924383110) at 2024-03-08 12:50 AM PST -jphamtv,2024-03-10T00:59:48Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1926354588) at 2024-03-09 05:59 PM PDT -jphamtv,2024-03-11T06:30:01Z,- jphamtv commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1987715194) at 2024-03-10 11:30 PM PDT -jphamtv,2024-03-11T06:52:43Z,- jphamtv commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1987738255) at 2024-03-10 11:52 PM PDT -jphamtv,2024-03-11T20:00:45Z,- jphamtv commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1989327154) at 2024-03-11 01:00 PM PDT -jphamtv,2024-03-11T20:00:45Z,- jphamtv closed issue as completed: [6286](https://github.com/hackforla/website/issues/6286#event-12079352906) at 2024-03-11 01:00 PM PDT -jphamtv,2024-03-14T03:01:24Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1996303850) at 2024-03-13 08:01 PM PDT -jphamtv,2024-03-22T05:25:48Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1953972442) at 2024-03-21 10:25 PM PDT -jphamtv,2024-03-22T06:08:10Z,- jphamtv commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2014421810) at 2024-03-21 11:08 PM PDT -jphamtv,2024-03-22T06:08:56Z,- jphamtv commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2014422527) at 2024-03-21 11:08 PM PDT -jphamtv,2024-03-22T06:27:31Z,- jphamtv commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-2014441115) at 2024-03-21 11:27 PM PDT -jphamtv,2024-03-22T16:37:38Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2015476110) at 2024-03-22 09:37 AM PDT -jphamtv,2024-03-26T05:09:15Z,- jphamtv commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2019401651) at 2024-03-25 10:09 PM PDT -jphamtv,2024-03-26T06:50:46Z,- jphamtv commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-2019515994) at 2024-03-25 11:50 PM PDT -jphamtv,2024-03-26T06:50:46Z,- jphamtv closed issue as completed: [6041](https://github.com/hackforla/website/issues/6041#event-12244897980) at 2024-03-25 11:50 PM PDT -jphamtv,2024-03-26T06:51:05Z,- jphamtv commented on issue: [6452](https://github.com/hackforla/website/issues/6452#issuecomment-2019516295) at 2024-03-25 11:51 PM PDT -jphamtv,2024-03-26T06:51:05Z,- jphamtv closed issue as completed: [6452](https://github.com/hackforla/website/issues/6452#event-12244900242) at 2024-03-25 11:51 PM PDT -jphamtv,2024-03-29T04:53:22Z,- jphamtv submitted pull request review: [6508](https://github.com/hackforla/website/pull/6508#pullrequestreview-1967829229) at 2024-03-28 09:53 PM PDT -jphamtv,2024-03-29T05:03:40Z,- jphamtv submitted pull request review: [6533](https://github.com/hackforla/website/pull/6533#pullrequestreview-1967835395) at 2024-03-28 10:03 PM PDT -jphamtv,2024-03-29T05:23:09Z,- jphamtv submitted pull request review: [6546](https://github.com/hackforla/website/pull/6546#pullrequestreview-1967856683) at 2024-03-28 10:23 PM PDT -jphamtv,2024-03-29T05:52:20Z,- jphamtv submitted pull request review: [6521](https://github.com/hackforla/website/pull/6521#pullrequestreview-1967885979) at 2024-03-28 10:52 PM PDT -jphamtv,2024-03-31T19:15:52Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2028881225) at 2024-03-31 12:15 PM PDT -jphamtv,2024-04-02T04:54:55Z,- jphamtv commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2031082340) at 2024-04-01 09:54 PM PDT -jphamtv,2024-04-02T16:28:04Z,- jphamtv commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032517417) at 2024-04-02 09:28 AM PDT -jphamtv,2024-04-02T17:57:35Z,- jphamtv commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032701430) at 2024-04-02 10:57 AM PDT -jphamtv,2024-04-02T18:20:45Z,- jphamtv submitted pull request review: [6557](https://github.com/hackforla/website/pull/6557#pullrequestreview-1974601798) at 2024-04-02 11:20 AM PDT -jphamtv,2024-04-03T18:24:12Z,- jphamtv commented on issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-2035301264) at 2024-04-03 11:24 AM PDT -jphamtv,2024-04-03T18:24:13Z,- jphamtv closed issue as completed: [6071](https://github.com/hackforla/website/issues/6071#event-12346461960) at 2024-04-03 11:24 AM PDT -jphamtv,2024-04-05T04:33:46Z,- jphamtv submitted pull request review: [6553](https://github.com/hackforla/website/pull/6553#pullrequestreview-1981827066) at 2024-04-04 09:33 PM PDT -jphamtv,2024-04-05T04:41:32Z,- jphamtv closed issue by PR 6553: [6237](https://github.com/hackforla/website/issues/6237#event-12367698559) at 2024-04-04 09:41 PM PDT -jphamtv,2024-04-05T04:45:52Z,- jphamtv submitted pull request review: [6560](https://github.com/hackforla/website/pull/6560#pullrequestreview-1981858877) at 2024-04-04 09:45 PM PDT -jphamtv,2024-04-05T04:46:02Z,- jphamtv closed issue by PR 6560: [6232](https://github.com/hackforla/website/issues/6232#event-12367734042) at 2024-04-04 09:46 PM PDT -jphamtv,2024-04-05T05:23:41Z,- jphamtv submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1981961959) at 2024-04-04 10:23 PM PDT -jphamtv,2024-04-05T05:30:24Z,- jphamtv submitted pull request review: [6564](https://github.com/hackforla/website/pull/6564#pullrequestreview-1981969065) at 2024-04-04 10:30 PM PDT -jphamtv,2024-04-05T05:30:34Z,- jphamtv closed issue by PR 6564: [6235](https://github.com/hackforla/website/issues/6235#event-12368097922) at 2024-04-04 10:30 PM PDT -jphamtv,2024-04-05T05:52:50Z,- jphamtv commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2039001319) at 2024-04-04 10:52 PM PDT -jphamtv,2024-04-05T05:53:01Z,- jphamtv commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2039001514) at 2024-04-04 10:53 PM PDT -jphamtv,2024-04-05T06:34:17Z,- jphamtv submitted pull request review: [6538](https://github.com/hackforla/website/pull/6538#pullrequestreview-1982060075) at 2024-04-04 11:34 PM PDT -jphamtv,2024-04-05T06:34:45Z,- jphamtv closed issue by PR 6538: [6483](https://github.com/hackforla/website/issues/6483#event-12368597824) at 2024-04-04 11:34 PM PDT -jphamtv,2024-04-05T06:38:07Z,- jphamtv closed issue by PR 6540: [6482](https://github.com/hackforla/website/issues/6482#event-12368626892) at 2024-04-04 11:38 PM PDT -jphamtv,2024-04-06T18:23:26Z,- jphamtv submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1984597196) at 2024-04-06 11:23 AM PDT -jphamtv,2024-04-06T18:23:52Z,- jphamtv closed issue by PR 6561: [5844](https://github.com/hackforla/website/issues/5844#event-12382175741) at 2024-04-06 11:23 AM PDT -jphamtv,2024-04-09T03:57:09Z,- jphamtv assigned to issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-08 08:57 PM PDT -jphamtv,2024-04-09T05:31:23Z,- jphamtv unassigned from issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-08 10:31 PM PDT -jphamtv,2024-04-11T23:11:18Z,- jphamtv submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1995616413) at 2024-04-11 04:11 PM PDT -jphamtv,2024-04-11T23:22:06Z,- jphamtv submitted pull request review: [6580](https://github.com/hackforla/website/pull/6580#pullrequestreview-1995624741) at 2024-04-11 04:22 PM PDT -jphamtv,2024-04-11T23:23:11Z,- jphamtv closed issue by PR 6580: [6559](https://github.com/hackforla/website/issues/6559#event-12442674047) at 2024-04-11 04:23 PM PDT -jphamtv,2024-04-11T23:37:12Z,- jphamtv closed issue by PR 6613: [6511](https://github.com/hackforla/website/issues/6511#event-12442743245) at 2024-04-11 04:37 PM PDT -jphamtv,2024-04-11T23:44:09Z,- jphamtv closed issue by PR 6612: [6513](https://github.com/hackforla/website/issues/6513#event-12442778509) at 2024-04-11 04:44 PM PDT -jphamtv,2024-04-11T23:52:39Z,- jphamtv submitted pull request review: [6620](https://github.com/hackforla/website/pull/6620#pullrequestreview-1995647106) at 2024-04-11 04:52 PM PDT -jphamtv,2024-04-11T23:52:51Z,- jphamtv closed issue by PR 6620: [6175](https://github.com/hackforla/website/issues/6175#event-12442818244) at 2024-04-11 04:52 PM PDT -jphamtv,2024-04-12T04:59:01Z,- jphamtv submitted pull request review: [6616](https://github.com/hackforla/website/pull/6616#pullrequestreview-1995873215) at 2024-04-11 09:59 PM PDT -jphamtv,2024-04-12T04:59:12Z,- jphamtv closed issue by PR 6616: [6172](https://github.com/hackforla/website/issues/6172#event-12444434395) at 2024-04-11 09:59 PM PDT -jphamtv,2024-04-12T05:03:48Z,- jphamtv submitted pull request review: [6618](https://github.com/hackforla/website/pull/6618#pullrequestreview-1995876941) at 2024-04-11 10:03 PM PDT -jphamtv,2024-04-12T05:03:58Z,- jphamtv closed issue by PR 6618: [6173](https://github.com/hackforla/website/issues/6173#event-12444464613) at 2024-04-11 10:03 PM PDT -jphamtv,2024-04-12T05:14:10Z,- jphamtv submitted pull request review: [6624](https://github.com/hackforla/website/pull/6624#pullrequestreview-1995885607) at 2024-04-11 10:14 PM PDT -jphamtv,2024-04-12T05:14:33Z,- jphamtv closed issue by PR 6624: [6515](https://github.com/hackforla/website/issues/6515#event-12444525752) at 2024-04-11 10:14 PM PDT -jphamtv,2024-04-16T00:27:20Z,- jphamtv commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2058028465) at 2024-04-15 05:27 PM PDT -jphamtv,2024-04-16T17:19:47Z,- jphamtv commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2059574932) at 2024-04-16 10:19 AM PDT -jphamtv,2024-04-16T17:19:47Z,- jphamtv closed issue as completed: [6162](https://github.com/hackforla/website/issues/6162#event-12493707035) at 2024-04-16 10:19 AM PDT -jphamtv,2024-04-18T21:54:23Z,- jphamtv closed issue by PR 6617: [6514](https://github.com/hackforla/website/issues/6514#event-12529601743) at 2024-04-18 02:54 PM PDT -jphamtv,2024-04-18T21:55:49Z,- jphamtv closed issue by PR 6646: [6512](https://github.com/hackforla/website/issues/6512#event-12529615314) at 2024-04-18 02:55 PM PDT -jphamtv,2024-04-18T22:06:34Z,- jphamtv closed issue by PR 6652: [6156](https://github.com/hackforla/website/issues/6156#event-12529709002) at 2024-04-18 03:06 PM PDT -jphamtv,2024-04-18T22:19:11Z,- jphamtv submitted pull request review: [6657](https://github.com/hackforla/website/pull/6657#pullrequestreview-2010015884) at 2024-04-18 03:19 PM PDT -jphamtv,2024-04-18T22:20:20Z,- jphamtv closed issue by PR 6657: [6124](https://github.com/hackforla/website/issues/6124#event-12529833089) at 2024-04-18 03:20 PM PDT -jphamtv,2024-04-18T22:31:59Z,- jphamtv closed issue by PR 6658: [6648](https://github.com/hackforla/website/issues/6648#event-12529938926) at 2024-04-18 03:31 PM PDT -jphamtv,2024-04-19T00:03:28Z,- jphamtv commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065509422) at 2024-04-18 05:03 PM PDT -jphamtv,2024-04-19T00:13:38Z,- jphamtv commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065518760) at 2024-04-18 05:13 PM PDT -jphamtv,2024-04-19T00:15:26Z,- jphamtv commented on issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2065520425) at 2024-04-18 05:15 PM PDT -jphamtv,2024-04-19T00:16:09Z,- jphamtv commented on issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2065521023) at 2024-04-18 05:16 PM PDT -jphamtv,2024-04-23T00:00:53Z,- jphamtv opened issue: [6709](https://github.com/hackforla/website/issues/6709) at 2024-04-22 05:00 PM PDT -jphamtv,2024-04-23T00:42:51Z,- jphamtv assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2071145939) at 2024-04-22 05:42 PM PDT -jphamtv,2024-04-25T19:07:08Z,- jphamtv closed issue by PR 6711: [6632](https://github.com/hackforla/website/issues/6632#event-12614116955) at 2024-04-25 12:07 PM PDT -jphamtv,2024-04-25T19:25:23Z,- jphamtv commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2078024067) at 2024-04-25 12:25 PM PDT -jphamtv,2024-04-25T19:36:12Z,- jphamtv commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-04-25 12:36 PM PDT -jphamtv,2024-04-25T20:24:53Z,- jphamtv submitted pull request review: [6678](https://github.com/hackforla/website/pull/6678#pullrequestreview-2023509170) at 2024-04-25 01:24 PM PDT -jphamtv,2024-04-25T20:25:10Z,- jphamtv closed issue by PR 6678: [5880](https://github.com/hackforla/website/issues/5880#event-12615092093) at 2024-04-25 01:25 PM PDT -jphamtv,2024-04-25T20:33:53Z,- jphamtv submitted pull request review: [6744](https://github.com/hackforla/website/pull/6744#pullrequestreview-2023525965) at 2024-04-25 01:33 PM PDT -jphamtv,2024-04-25T20:41:58Z,- jphamtv submitted pull request review: [6745](https://github.com/hackforla/website/pull/6745#pullrequestreview-2023542949) at 2024-04-25 01:41 PM PDT -jphamtv,2024-04-25T20:45:09Z,- jphamtv submitted pull request review: [6746](https://github.com/hackforla/website/pull/6746#pullrequestreview-2023547817) at 2024-04-25 01:45 PM PDT -jphamtv,2024-04-25T21:07:26Z,- jphamtv submitted pull request review: [6748](https://github.com/hackforla/website/pull/6748#pullrequestreview-2023582927) at 2024-04-25 02:07 PM PDT -jphamtv,2024-04-26T19:56:25Z,- jphamtv unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-04-26 12:56 PM PDT -jphamtv,2024-04-27T21:48:30Z,- jphamtv submitted pull request review: [6764](https://github.com/hackforla/website/pull/6764#pullrequestreview-2026750606) at 2024-04-27 02:48 PM PDT -jphamtv,2024-04-27T21:51:48Z,- jphamtv submitted pull request review: [6764](https://github.com/hackforla/website/pull/6764#pullrequestreview-2026750977) at 2024-04-27 02:51 PM PDT -jphamtv,2024-04-27T22:08:54Z,- jphamtv commented on pull request: [6764](https://github.com/hackforla/website/pull/6764#issuecomment-2081213834) at 2024-04-27 03:08 PM PDT -jphamtv,2024-05-02T20:02:56Z,- jphamtv commented on pull request: [6781](https://github.com/hackforla/website/pull/6781#issuecomment-2091456458) at 2024-05-02 01:02 PM PDT -jphamtv,2024-05-02T20:03:33Z,- jphamtv closed issue by PR 6781: [6181](https://github.com/hackforla/website/issues/6181#event-12688596190) at 2024-05-02 01:03 PM PDT -jphamtv,2024-05-02T20:05:36Z,- jphamtv closed issue by PR 6791: [6701](https://github.com/hackforla/website/issues/6701#event-12688618866) at 2024-05-02 01:05 PM PDT -jphamtv,2024-05-02T20:07:02Z,- jphamtv closed issue by PR 6792: [6702](https://github.com/hackforla/website/issues/6702#event-12688635525) at 2024-05-02 01:07 PM PDT -jphamtv,2024-05-02T23:22:48Z,- jphamtv commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2091899877) at 2024-05-02 04:22 PM PDT -jphamtv,2024-05-02T23:50:06Z,- jphamtv submitted pull request review: [6801](https://github.com/hackforla/website/pull/6801#pullrequestreview-2037129887) at 2024-05-02 04:50 PM PDT -jphamtv,2024-05-09T19:44:52Z,- jphamtv closed issue by PR 6839: [6240](https://github.com/hackforla/website/issues/6240#event-12761393476) at 2024-05-09 12:44 PM PDT -jphamtv,2024-05-09T23:20:56Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2048990450) at 2024-05-09 04:20 PM PDT -jphamtv,2024-05-09T23:38:29Z,- jphamtv commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2103607266) at 2024-05-09 04:38 PM PDT -jphamtv,2024-05-09T23:50:52Z,- jphamtv commented on issue: [6569](https://github.com/hackforla/website/issues/6569#issuecomment-2103615943) at 2024-05-09 04:50 PM PDT -jphamtv,2024-05-09T23:50:52Z,- jphamtv closed issue as completed: [6569](https://github.com/hackforla/website/issues/6569#event-12763242555) at 2024-05-09 04:50 PM PDT -jphamtv,2024-05-14T00:51:32Z,- jphamtv opened pull request: [6853](https://github.com/hackforla/website/pull/6853) at 2024-05-13 05:51 PM PDT -jphamtv,2024-05-14T20:01:22Z,- jphamtv commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2111043589) at 2024-05-14 01:01 PM PDT -jphamtv,2024-05-16T17:56:17Z,- jphamtv closed issue by PR 6852: [6732](https://github.com/hackforla/website/issues/6732#event-12837798750) at 2024-05-16 10:56 AM PDT -jphamtv,2024-05-16T17:58:41Z,- jphamtv closed issue by PR 6855: [6724](https://github.com/hackforla/website/issues/6724#event-12837823861) at 2024-05-16 10:58 AM PDT -jphamtv,2024-05-16T22:22:03Z,- jphamtv closed issue as completed: [6637](https://github.com/hackforla/website/issues/6637#event-12840593602) at 2024-05-16 03:22 PM PDT -jphamtv,2024-05-23T20:01:10Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2074891522) at 2024-05-23 01:01 PM PDT -jphamtv,2024-05-23T20:11:09Z,- jphamtv commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2127940746) at 2024-05-23 01:11 PM PDT -jphamtv,2024-05-23T20:37:44Z,- jphamtv submitted pull request review: [6886](https://github.com/hackforla/website/pull/6886#pullrequestreview-2074950464) at 2024-05-23 01:37 PM PDT -jphamtv,2024-05-23T20:37:53Z,- jphamtv closed issue by PR 6886: [6718](https://github.com/hackforla/website/issues/6718#event-12914951293) at 2024-05-23 01:37 PM PDT -jphamtv,2024-05-23T20:46:43Z,- jphamtv closed issue by PR 6888: [6837](https://github.com/hackforla/website/issues/6837#event-12915029693) at 2024-05-23 01:46 PM PDT -jphamtv,2024-05-23T22:38:43Z,- jphamtv commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2128149627) at 2024-05-23 03:38 PM PDT -jphamtv,2024-05-23T22:38:43Z,- jphamtv closed issue as completed: [6188](https://github.com/hackforla/website/issues/6188#event-12916066266) at 2024-05-23 03:38 PM PDT -jphamtv,2024-05-24T06:22:48Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2128646963) at 2024-05-23 11:22 PM PDT -jphamtv,2024-05-30T17:49:44Z,- jphamtv closed issue by PR 6897: [6722](https://github.com/hackforla/website/issues/6722#event-12989790941) at 2024-05-30 10:49 AM PDT -jphamtv,2024-05-30T18:01:42Z,- jphamtv commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2140493583) at 2024-05-30 11:01 AM PDT -jphamtv,2024-05-30T18:04:49Z,- jphamtv closed issue by PR 6906: [6760](https://github.com/hackforla/website/issues/6760#event-12989938934) at 2024-05-30 11:04 AM PDT -jphamtv,2024-05-30T18:10:41Z,- jphamtv submitted pull request review: [6912](https://github.com/hackforla/website/pull/6912#pullrequestreview-2089062467) at 2024-05-30 11:10 AM PDT -jphamtv,2024-05-30T18:11:03Z,- jphamtv closed issue by PR 6912: [6729](https://github.com/hackforla/website/issues/6729#event-12989994648) at 2024-05-30 11:11 AM PDT -jphamtv,2024-05-30T18:28:28Z,- jphamtv commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140585301) at 2024-05-30 11:28 AM PDT -jphamtv,2024-05-30T18:31:51Z,- jphamtv commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2140597416) at 2024-05-30 11:31 AM PDT -jphamtv,2024-05-30T18:48:14Z,- jphamtv commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2140662606) at 2024-05-30 11:48 AM PDT -jphamtv,2024-05-30T19:01:19Z,- jphamtv commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2140692619) at 2024-05-30 12:01 PM PDT -jphamtv,2024-05-30T19:41:45Z,- jphamtv submitted pull request review: [6907](https://github.com/hackforla/website/pull/6907#pullrequestreview-2089236412) at 2024-05-30 12:41 PM PDT -jphamtv,2024-05-30T20:07:43Z,- jphamtv commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2140785433) at 2024-05-30 01:07 PM PDT -jphamtv,2024-05-30T20:07:43Z,- jphamtv closed issue as completed: [6585](https://github.com/hackforla/website/issues/6585#event-12991218361) at 2024-05-30 01:07 PM PDT -jphamtv,2024-06-06T16:47:07Z,- jphamtv closed issue by PR 6958: [6798](https://github.com/hackforla/website/issues/6798#event-13069617117) at 2024-06-06 09:47 AM PDT -jphamtv,2024-06-06T16:49:07Z,- jphamtv closed issue as completed: [3859](https://github.com/hackforla/website/issues/3859#event-13069637859) at 2024-06-06 09:49 AM PDT -jphamtv,2024-06-06T16:51:11Z,- jphamtv closed issue by PR 6963: [6908](https://github.com/hackforla/website/issues/6908#event-13069659777) at 2024-06-06 09:51 AM PDT -jphamtv,2024-06-06T17:06:11Z,- jphamtv submitted pull request review: [6961](https://github.com/hackforla/website/pull/6961#pullrequestreview-2102547467) at 2024-06-06 10:06 AM PDT -jphamtv,2024-06-06T17:06:23Z,- jphamtv closed issue by PR 6961: [6451](https://github.com/hackforla/website/issues/6451#event-13069825253) at 2024-06-06 10:06 AM PDT -jphamtv,2024-06-06T18:55:22Z,- jphamtv commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153192499) at 2024-06-06 11:55 AM PDT -jphamtv,2024-06-06T18:58:32Z,- jphamtv commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153206682) at 2024-06-06 11:58 AM PDT -jphamtv,2024-06-06T19:01:16Z,- jphamtv commented on issue: [6719](https://github.com/hackforla/website/issues/6719#issuecomment-2153217834) at 2024-06-06 12:01 PM PDT -jphamtv,2024-06-06T19:49:00Z,- jphamtv commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2153288969) at 2024-06-06 12:49 PM PDT -jphamtv,2024-06-06T19:51:05Z,- jphamtv commented on pull request: [6905](https://github.com/hackforla/website/pull/6905#issuecomment-2153292371) at 2024-06-06 12:51 PM PDT -jphamtv,2024-06-07T00:11:45Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2103401335) at 2024-06-06 05:11 PM PDT -jphamtv,2024-06-13T19:12:43Z,- jphamtv submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2116713426) at 2024-06-13 12:12 PM PDT -jphamtv,2024-06-13T19:14:12Z,- jphamtv closed issue by PR 6916: [6719](https://github.com/hackforla/website/issues/6719#event-13151722367) at 2024-06-13 12:14 PM PDT -jphamtv,2024-06-13T19:17:59Z,- jphamtv closed issue by PR 6980: [6938](https://github.com/hackforla/website/issues/6938#event-13151760454) at 2024-06-13 12:17 PM PDT -jphamtv,2024-06-13T20:44:21Z,- jphamtv closed issue by PR 6973: [6909](https://github.com/hackforla/website/issues/6909#event-13152590623) at 2024-06-13 01:44 PM PDT -jphamtv,2024-06-13T21:02:21Z,- jphamtv commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2166790567) at 2024-06-13 02:02 PM PDT -jphamtv,2024-06-13T23:11:02Z,- jphamtv commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2166933992) at 2024-06-13 04:11 PM PDT -jphamtv,2024-06-13T23:43:48Z,- jphamtv commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2166964609) at 2024-06-13 04:43 PM PDT -jphamtv,2024-06-20T18:43:23Z,- jphamtv closed issue by PR 6976: [6930](https://github.com/hackforla/website/issues/6930#event-13233143655) at 2024-06-20 11:43 AM PDT -jphamtv,2024-06-20T18:44:16Z,- jphamtv closed issue by PR 7016: [6939](https://github.com/hackforla/website/issues/6939#event-13233152124) at 2024-06-20 11:44 AM PDT -jphamtv,2024-06-20T18:47:45Z,- jphamtv closed issue by PR 7017: [6918](https://github.com/hackforla/website/issues/6918#event-13233199529) at 2024-06-20 11:47 AM PDT -jphamtv,2024-06-20T19:19:46Z,- jphamtv commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2181370620) at 2024-06-20 12:19 PM PDT -jphamtv,2024-06-20T19:58:56Z,- jphamtv commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2181443380) at 2024-06-20 12:58 PM PDT -jphamtv,2024-06-20T20:07:44Z,- jphamtv submitted pull request review: [7037](https://github.com/hackforla/website/pull/7037#pullrequestreview-2131262817) at 2024-06-20 01:07 PM PDT -jphamtv,2024-06-20T20:08:01Z,- jphamtv closed issue by PR 7037: [6931](https://github.com/hackforla/website/issues/6931#event-13233990879) at 2024-06-20 01:08 PM PDT -jphamtv,2024-06-27T17:41:38Z,- jphamtv submitted pull request review: [7070](https://github.com/hackforla/website/pull/7070#pullrequestreview-2146091055) at 2024-06-27 10:41 AM PDT -jphamtv,2024-06-27T17:41:48Z,- jphamtv closed issue by PR 7070: [7061](https://github.com/hackforla/website/issues/7061#event-13321058139) at 2024-06-27 10:41 AM PDT -jphamtv,2024-06-27T17:50:41Z,- jphamtv commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195310507) at 2024-06-27 10:50 AM PDT -jphamtv,2024-06-27T18:11:08Z,- jphamtv commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2195377318) at 2024-06-27 11:11 AM PDT -jphamtv,2024-06-27T18:11:43Z,- jphamtv commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2195380392) at 2024-06-27 11:11 AM PDT -jphamtv,2024-06-27T18:16:45Z,- jphamtv commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2195396302) at 2024-06-27 11:16 AM PDT -jphamtv,2024-06-27T18:20:35Z,- jphamtv commented on pull request: [7052](https://github.com/hackforla/website/pull/7052#issuecomment-2195406245) at 2024-06-27 11:20 AM PDT -jphamtv,2024-06-27T18:28:00Z,- jphamtv submitted pull request review: [7068](https://github.com/hackforla/website/pull/7068#pullrequestreview-2146212576) at 2024-06-27 11:28 AM PDT -jphamtv,2024-06-27T18:28:22Z,- jphamtv closed issue by PR 7068: [5146](https://github.com/hackforla/website/issues/5146#event-13321898468) at 2024-06-27 11:28 AM PDT -jphamtv,2024-06-27T18:37:01Z,- jphamtv commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2195438167) at 2024-06-27 11:37 AM PDT -jphamtv,2024-06-27T18:52:17Z,- jphamtv commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195460614) at 2024-06-27 11:52 AM PDT -jphamtv,2024-06-27T18:53:59Z,- jphamtv commented on issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2195463205) at 2024-06-27 11:53 AM PDT -jphamtv,2024-06-27T18:53:59Z,- jphamtv closed issue as not planned: [7047](https://github.com/hackforla/website/issues/7047#event-13322225515) at 2024-06-27 11:53 AM PDT -jphamtv,2024-06-27T22:52:07Z,- jphamtv commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2195793388) at 2024-06-27 03:52 PM PDT -jphamtv,2024-08-08T19:21:18Z,- jphamtv closed issue by PR 7229: [7138](https://github.com/hackforla/website/issues/7138#event-13811281157) at 2024-08-08 12:21 PM PDT -jphamtv,2024-08-08T19:24:42Z,- jphamtv closed issue by PR 7235: [7171](https://github.com/hackforla/website/issues/7171#event-13811311591) at 2024-08-08 12:24 PM PDT -jphamtv,2024-08-08T19:31:48Z,- jphamtv submitted pull request review: [7244](https://github.com/hackforla/website/pull/7244#pullrequestreview-2228697643) at 2024-08-08 12:31 PM PDT -jphamtv,2024-08-08T19:32:02Z,- jphamtv closed issue by PR 7244: [7139](https://github.com/hackforla/website/issues/7139#event-13811378734) at 2024-08-08 12:32 PM PDT -jphamtv,2024-08-08T19:35:21Z,- jphamtv commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2276521751) at 2024-08-08 12:35 PM PDT -jphamtv,2024-08-08T19:45:22Z,- jphamtv commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2276535955) at 2024-08-08 12:45 PM PDT -jphamtv,2024-08-15T20:19:46Z,- jphamtv commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2292161485) at 2024-08-15 01:19 PM PDT -jphamtv,2024-08-16T00:04:45Z,- jphamtv submitted pull request review: [7228](https://github.com/hackforla/website/pull/7228#pullrequestreview-2241542254) at 2024-08-15 05:04 PM PDT -jphamtv,2024-08-16T00:05:05Z,- jphamtv closed issue by PR 7228: [7140](https://github.com/hackforla/website/issues/7140#event-13904240648) at 2024-08-15 05:05 PM PDT -jphamtv,2024-08-16T18:40:19Z,- jphamtv commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2293982605) at 2024-08-16 11:40 AM PDT -jphamtv,2024-08-19T01:40:08Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2295511629) at 2024-08-18 06:40 PM PDT -jphamtv,2024-08-21T20:36:28Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2302969394) at 2024-08-21 01:36 PM PDT -jphamtv,2024-08-22T19:12:20Z,- jphamtv closed issue by PR 7306: [7253](https://github.com/hackforla/website/issues/7253#event-13982945503) at 2024-08-22 12:12 PM PDT -jphamtv,2024-08-22T19:20:26Z,- jphamtv submitted pull request review: [7328](https://github.com/hackforla/website/pull/7328#pullrequestreview-2255465160) at 2024-08-22 12:20 PM PDT -jphamtv,2024-08-22T19:20:37Z,- jphamtv closed issue by PR 7328: [7133](https://github.com/hackforla/website/issues/7133#event-13983023396) at 2024-08-22 12:20 PM PDT -jphamtv,2024-08-22T19:24:27Z,- jphamtv commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2305474522) at 2024-08-22 12:24 PM PDT -jphamtv,2024-08-22T19:26:21Z,- jphamtv commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2305477359) at 2024-08-22 12:26 PM PDT -jphamtv,2024-08-29T22:17:03Z,- jphamtv closed issue by PR 7361: [7282](https://github.com/hackforla/website/issues/7282#event-14071090922) at 2024-08-29 03:17 PM PDT -jphamtv,2024-08-29T23:17:52Z,- jphamtv closed issue by PR 7345: [7189](https://github.com/hackforla/website/issues/7189#event-14072096853) at 2024-08-29 04:17 PM PDT -jphamtv,2024-08-29T23:23:05Z,- jphamtv submitted pull request review: [7365](https://github.com/hackforla/website/pull/7365#pullrequestreview-2270589009) at 2024-08-29 04:23 PM PDT -jphamtv,2024-08-29T23:23:13Z,- jphamtv closed issue by PR 7365: [7292](https://github.com/hackforla/website/issues/7292#event-14072144523) at 2024-08-29 04:23 PM PDT -jphamtv,2024-08-29T23:37:05Z,- jphamtv submitted pull request review: [7364](https://github.com/hackforla/website/pull/7364#pullrequestreview-2270614454) at 2024-08-29 04:37 PM PDT -jphamtv,2024-08-29T23:37:23Z,- jphamtv closed issue by PR 7364: [7242](https://github.com/hackforla/website/issues/7242#event-14072265733) at 2024-08-29 04:37 PM PDT -jphamtv,2024-08-29T23:40:23Z,- jphamtv commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319465599) at 2024-08-29 04:40 PM PDT -jphamtv,2024-09-06T20:42:54Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2334781628) at 2024-09-06 01:42 PM PDT -jphamtv,2024-09-12T19:49:48Z,- jphamtv closed issue by PR 7369: [7248](https://github.com/hackforla/website/issues/7248#event-14238177444) at 2024-09-12 12:49 PM PDT -jphamtv,2024-09-12T20:02:02Z,- jphamtv submitted pull request review: [7437](https://github.com/hackforla/website/pull/7437#pullrequestreview-2301299384) at 2024-09-12 01:02 PM PDT -jphamtv,2024-09-12T20:02:14Z,- jphamtv closed issue by PR 7437: [7176](https://github.com/hackforla/website/issues/7176#event-14238297799) at 2024-09-12 01:02 PM PDT -jphamtv,2024-09-12T20:14:31Z,- jphamtv commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2347155864) at 2024-09-12 01:14 PM PDT -jphamtv,2024-09-12T21:04:56Z,- jphamtv commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2347240892) at 2024-09-12 02:04 PM PDT -jphamtv,2024-09-12T22:02:01Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2347322008) at 2024-09-12 03:02 PM PDT -jphamtv,2024-09-20T00:05:23Z,- jphamtv commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2362442870) at 2024-09-19 05:05 PM PDT -jphamtv,2024-09-20T00:06:13Z,- jphamtv commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2362445003) at 2024-09-19 05:06 PM PDT -jphamtv,2024-09-20T00:09:53Z,- jphamtv commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2362451543) at 2024-09-19 05:09 PM PDT -jphamtv,2024-09-26T20:45:47Z,- jphamtv closed issue by PR 7467: [7304](https://github.com/hackforla/website/issues/7304#event-14422402077) at 2024-09-26 01:45 PM PDT -jphamtv,2024-09-26T21:06:17Z,- jphamtv closed issue by PR 7514: [7194](https://github.com/hackforla/website/issues/7194#event-14422588843) at 2024-09-26 02:06 PM PDT -jphamtv,2024-09-26T21:20:18Z,- jphamtv closed issue by PR 7523: [7494](https://github.com/hackforla/website/issues/7494#event-14422710983) at 2024-09-26 02:20 PM PDT -jphamtv,2024-09-26T22:01:57Z,- jphamtv commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2378014731) at 2024-09-26 03:01 PM PDT -jphamtv,2024-09-26T22:01:57Z,- jphamtv closed issue as completed: [5973](https://github.com/hackforla/website/issues/5973#event-14423023391) at 2024-09-26 03:01 PM PDT -jphamtv,2024-10-03T23:30:27Z,- jphamtv closed issue by PR 7554: [7457](https://github.com/hackforla/website/issues/7457#event-14511322004) at 2024-10-03 04:30 PM PDT -jphamtv,2024-10-03T23:42:32Z,- jphamtv commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2392517371) at 2024-10-03 04:42 PM PDT -jphamtv,2024-10-04T20:46:26Z,- jphamtv closed issue by PR 7501: [7429](https://github.com/hackforla/website/issues/7429#event-14524875783) at 2024-10-04 01:46 PM PDT -jphamtv,2024-10-10T20:30:31Z,- jphamtv commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2405984728) at 2024-10-10 01:30 PM PDT -jphamtv,2024-10-10T20:30:31Z,- jphamtv closed issue as completed: [7392](https://github.com/hackforla/website/issues/7392#event-14597030319) at 2024-10-10 01:30 PM PDT -jphamtv,2024-10-31T22:30:28Z,- jphamtv closed issue by PR 7656: [7600](https://github.com/hackforla/website/issues/7600#event-15049318440) at 2024-10-31 03:30 PM PDT -jphamtv,2024-10-31T22:31:38Z,- jphamtv commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2450958256) at 2024-10-31 03:31 PM PDT -jphamtv,2024-11-15T00:52:03Z,- jphamtv commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2477728215) at 2024-11-14 04:52 PM PST -jphamtv,2024-11-15T00:52:46Z,- jphamtv closed issue by PR 7712: [7623](https://github.com/hackforla/website/issues/7623#event-15305958739) at 2024-11-14 04:52 PM PST -jphamtv,2024-11-15T01:02:27Z,- jphamtv commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2477739789) at 2024-11-14 05:02 PM PST -jphamtv,2024-11-15T01:15:17Z,- jphamtv closed issue by PR 7715: [7416](https://github.com/hackforla/website/issues/7416#event-15306081471) at 2024-11-14 05:15 PM PST -jphamtv,2024-11-15T01:26:17Z,- jphamtv closed issue by PR 7716: [7649](https://github.com/hackforla/website/issues/7649#event-15306139239) at 2024-11-14 05:26 PM PST -jphamtv,2024-11-15T01:26:44Z,- jphamtv commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2477765857) at 2024-11-14 05:26 PM PST -jphamtv,2024-11-15T01:28:53Z,- jphamtv closed issue by PR 7717: [7458](https://github.com/hackforla/website/issues/7458#event-15306152644) at 2024-11-14 05:28 PM PST -jphamtv,2024-11-15T03:21:29Z,- jphamtv commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2477875097) at 2024-11-14 07:21 PM PST -jphamtv,2024-11-15T03:21:29Z,- jphamtv closed issue as completed: [6872](https://github.com/hackforla/website/issues/6872#event-15306733644) at 2024-11-14 07:21 PM PST -jphamtv,2024-11-22T05:41:06Z,- jphamtv closed issue by PR 7733: [7705](https://github.com/hackforla/website/issues/7705#event-15392413873) at 2024-11-21 09:41 PM PST -jphamtv,2024-11-22T05:44:31Z,- jphamtv closed issue by PR 7744: [7701](https://github.com/hackforla/website/issues/7701#event-15392437624) at 2024-11-21 09:44 PM PST -jphamtv,2024-11-22T06:02:59Z,- jphamtv commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2492936224) at 2024-11-21 10:02 PM PST -jphamtv,2025-01-17T00:21:10Z,- jphamtv commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2597173211) at 2025-01-16 04:21 PM PST -jphamtv,2025-01-17T00:21:10Z,- jphamtv closed issue as completed: [7158](https://github.com/hackforla/website/issues/7158#event-15969516903) at 2025-01-16 04:21 PM PST -jphamtv,2025-01-23T22:33:30Z,- jphamtv commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2611152955) at 2025-01-23 02:33 PM PST -jphamtv,2025-01-31T00:41:21Z,- jphamtv closed issue by PR 7856: [7567](https://github.com/hackforla/website/issues/7567#event-16132259970) at 2025-01-30 04:41 PM PST -jphamtv,2025-01-31T00:56:15Z,- jphamtv commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2626045372) at 2025-01-30 04:56 PM PST -jphamtv,2025-01-31T01:18:19Z,- jphamtv commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2626074797) at 2025-01-30 05:18 PM PST -jphamtv,2025-03-07T01:10:19Z,- jphamtv closed issue by PR 7980: [7629](https://github.com/hackforla/website/issues/7629#event-16625251624) at 2025-03-06 05:10 PM PST -jphamtv,2025-03-07T01:27:51Z,- jphamtv closed issue by PR 7950: [7824](https://github.com/hackforla/website/issues/7824#event-16625359163) at 2025-03-06 05:27 PM PST -jphamtv,2025-03-07T02:16:00Z,- jphamtv commented on pull request: [7962](https://github.com/hackforla/website/pull/7962#issuecomment-2705362657) at 2025-03-06 06:16 PM PST -jphamtv,2025-04-04T22:36:15Z,- jphamtv submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2744215615) at 2025-04-04 03:36 PM PDT -jphamtv,2025-04-17T19:11:46Z,- jphamtv closed issue by PR 8061: [7471](https://github.com/hackforla/website/issues/7471#event-17310717080) at 2025-04-17 12:11 PM PDT -jphamtv,2025-04-17T19:47:59Z,- jphamtv opened issue: [8070](https://github.com/hackforla/website/issues/8070) at 2025-04-17 12:47 PM PDT -jphamtv,2025-04-17T19:54:08Z,- jphamtv commented on issue: [7991](https://github.com/hackforla/website/issues/7991#issuecomment-2813884082) at 2025-04-17 12:54 PM PDT -jphamtv,2025-04-17T19:54:09Z,- jphamtv closed issue as completed: [7991](https://github.com/hackforla/website/issues/7991#event-17311129157) at 2025-04-17 12:54 PM PDT -jphamtv,2025-04-18T17:23:18Z,- jphamtv closed issue by PR 8060: [7481](https://github.com/hackforla/website/issues/7481#event-17322904219) at 2025-04-18 10:23 AM PDT -jphamtv,2025-05-02T01:50:46Z,- jphamtv commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2846126919) at 2025-05-01 06:50 PM PDT -jphamtv,2025-05-02T22:10:13Z,- jphamtv opened issue: [8108](https://github.com/hackforla/website/issues/8108) at 2025-05-02 03:10 PM PDT -jphamtv,2025-05-02T22:12:08Z,- jphamtv commented on issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2848202319) at 2025-05-02 03:12 PM PDT -jphamtv,2025-05-02T22:12:08Z,- jphamtv closed issue as completed: [7868](https://github.com/hackforla/website/issues/7868#event-17505341509) at 2025-05-02 03:12 PM PDT -jphamtv,2025-05-02T22:19:31Z,- jphamtv opened issue: [8109](https://github.com/hackforla/website/issues/8109) at 2025-05-02 03:19 PM PDT -jphamtv,2025-05-02T22:20:11Z,- jphamtv commented on issue: [8023](https://github.com/hackforla/website/issues/8023#issuecomment-2848210694) at 2025-05-02 03:20 PM PDT -jphamtv,2025-05-02T22:20:11Z,- jphamtv closed issue as completed: [8023](https://github.com/hackforla/website/issues/8023#event-17505391202) at 2025-05-02 03:20 PM PDT -jphamtv,2025-05-02T22:42:22Z,- jphamtv opened issue: [8110](https://github.com/hackforla/website/issues/8110) at 2025-05-02 03:42 PM PDT -jphamtv,2025-05-02T22:47:55Z,- jphamtv opened issue: [8111](https://github.com/hackforla/website/issues/8111) at 2025-05-02 03:47 PM PDT -jphamtv,2025-05-02T22:51:10Z,- jphamtv opened issue: [8112](https://github.com/hackforla/website/issues/8112) at 2025-05-02 03:51 PM PDT -jphamtv,2025-05-02T22:55:03Z,- jphamtv commented on issue: [7997](https://github.com/hackforla/website/issues/7997#issuecomment-2848241650) at 2025-05-02 03:55 PM PDT -jphamtv,2025-05-02T22:55:03Z,- jphamtv closed issue as not planned: [7997](https://github.com/hackforla/website/issues/7997#event-17505574732) at 2025-05-02 03:55 PM PDT -jphamtv,2025-05-02T22:58:09Z,- jphamtv commented on issue: [8100](https://github.com/hackforla/website/issues/8100#issuecomment-2848244287) at 2025-05-02 03:58 PM PDT -jphamtv,2025-05-02T22:58:09Z,- jphamtv closed issue as completed: [8100](https://github.com/hackforla/website/issues/8100#event-17505589438) at 2025-05-02 03:58 PM PDT -jphamtv,2025-05-02T23:04:45Z,- jphamtv opened issue: [8113](https://github.com/hackforla/website/issues/8113) at 2025-05-02 04:04 PM PDT -jphamtv,2025-05-02T23:05:16Z,- jphamtv commented on issue: [8050](https://github.com/hackforla/website/issues/8050#issuecomment-2848250437) at 2025-05-02 04:05 PM PDT -jphamtv,2025-05-02T23:05:16Z,- jphamtv closed issue as completed: [8050](https://github.com/hackforla/website/issues/8050#event-17505622888) at 2025-05-02 04:05 PM PDT -jphamtv,2025-05-08T19:27:30Z,- jphamtv opened issue: [8119](https://github.com/hackforla/website/issues/8119) at 2025-05-08 12:27 PM PDT -jphamtv,2025-05-08T19:32:53Z,- jphamtv opened issue: [8120](https://github.com/hackforla/website/issues/8120) at 2025-05-08 12:32 PM PDT -jphamtv,2025-05-08T19:35:37Z,- jphamtv commented on issue: [7905](https://github.com/hackforla/website/issues/7905#issuecomment-2864084210) at 2025-05-08 12:35 PM PDT -jphamtv,2025-05-08T19:35:37Z,- jphamtv closed issue as completed: [7905](https://github.com/hackforla/website/issues/7905#event-17579549756) at 2025-05-08 12:35 PM PDT -jphamtv,2025-05-16T23:05:27Z,- jphamtv closed issue by PR 8141: [7926](https://github.com/hackforla/website/issues/7926#event-17695292097) at 2025-05-16 04:05 PM PDT -jphamtv,2025-05-16T23:07:41Z,- jphamtv closed issue by PR 8142: [7953](https://github.com/hackforla/website/issues/7953#event-17695303644) at 2025-05-16 04:07 PM PDT -jpmikesell,2020-02-03T00:12:14Z,- jpmikesell assigned to issue: [308](https://github.com/hackforla/website/issues/308) at 2020-02-02 04:12 PM PST -jpmikesell,2020-02-09T22:04:02Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-583899172) at 2020-02-09 02:04 PM PST -jpmikesell,2020-02-11T19:16:47Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584804103) at 2020-02-11 11:16 AM PST -jpmikesell,2020-02-11T19:18:14Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584804725) at 2020-02-11 11:18 AM PST -jpmikesell,2020-02-16T20:00:46Z,- jpmikesell unassigned from issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584805202) at 2020-02-16 12:00 PM PST -jpmikesell,2020-03-24T20:33:05Z,- jpmikesell commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-603489772) at 2020-03-24 01:33 PM PDT -jqg123,2523,SKILLS ISSUE -jqg123,2021-11-30T03:42:38Z,- jqg123 assigned to issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:42 PM PST -jqg123,2021-11-30T03:43:06Z,- jqg123 unassigned from issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:43 PM PST -jqg123,2021-11-30T03:44:42Z,- jqg123 opened issue: [2523](https://github.com/hackforla/website/issues/2523) at 2021-11-29 07:44 PM PST -jqg123,2021-11-30T03:45:42Z,- jqg123 assigned to issue: [2523](https://github.com/hackforla/website/issues/2523) at 2021-11-29 07:45 PM PST -jqg123,2021-12-01T21:05:31Z,- jqg123 assigned to issue: [2441](https://github.com/hackforla/website/issues/2441#issuecomment-960296427) at 2021-12-01 01:05 PM PST -jqg123,2021-12-01T21:27:10Z,- jqg123 commented on issue: [2441](https://github.com/hackforla/website/issues/2441#issuecomment-984069300) at 2021-12-01 01:27 PM PST -jqg123,2021-12-01T22:32:24Z,- jqg123 opened pull request: [2530](https://github.com/hackforla/website/pull/2530) at 2021-12-01 02:32 PM PST -jqg123,2021-12-02T18:57:47Z,- jqg123 assigned to issue: [2356](https://github.com/hackforla/website/issues/2356#issuecomment-939420187) at 2021-12-02 10:57 AM PST -jqg123,2021-12-02T19:02:34Z,- jqg123 commented on issue: [2356](https://github.com/hackforla/website/issues/2356#issuecomment-984912160) at 2021-12-02 11:02 AM PST -jqg123,2021-12-02T20:21:53Z,- jqg123 opened pull request: [2538](https://github.com/hackforla/website/pull/2538) at 2021-12-02 12:21 PM PST -jqg123,2021-12-04T23:41:32Z,- jqg123 pull request merged: [2530](https://github.com/hackforla/website/pull/2530#event-5716176775) at 2021-12-04 03:41 PM PST -jqg123,2021-12-07T23:34:26Z,- jqg123 closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-5730528853) at 2021-12-07 03:34 PM PST -jqg123,2021-12-07T23:52:44Z,- jqg123 assigned to issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-984062441) at 2021-12-07 03:52 PM PST -jqg123,2021-12-07T23:55:56Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-988353933) at 2021-12-07 03:55 PM PST -jqg123,2021-12-08T01:48:35Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-988420809) at 2021-12-07 05:48 PM PST -jqg123,2021-12-08T02:06:36Z,- jqg123 opened pull request: [2557](https://github.com/hackforla/website/pull/2557) at 2021-12-07 06:06 PM PST -jqg123,2021-12-08T02:38:18Z,- jqg123 pull request merged: [2538](https://github.com/hackforla/website/pull/2538#event-5731116522) at 2021-12-07 06:38 PM PST -jqg123,2022-02-08T23:11:33Z,- jqg123 closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-6030438237) at 2022-02-08 03:11 PM PST -jqg123,2022-02-08T23:11:50Z,- jqg123 commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1033153969) at 2022-02-08 03:11 PM PST -jqg123,2022-02-08T23:19:03Z,- jqg123 commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1033158588) at 2022-02-08 03:19 PM PST -jqg123,2022-02-13T06:05:21Z,- jqg123 opened pull request: [2774](https://github.com/hackforla/website/pull/2774) at 2022-02-12 10:05 PM PST -jqg123,2022-02-13T06:09:47Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1037820304) at 2022-02-12 10:09 PM PST -jqg123,2022-02-16T02:29:56Z,- jqg123 pull request closed w/o merging: [2557](https://github.com/hackforla/website/pull/2557#event-6079579827) at 2022-02-15 06:29 PM PST -jqg123,2022-02-20T20:08:39Z,- jqg123 opened issue: [2810](https://github.com/hackforla/website/issues/2810) at 2022-02-20 12:08 PM PST -jqg123,2022-02-20T20:08:40Z,- jqg123 assigned to issue: [2810](https://github.com/hackforla/website/issues/2810) at 2022-02-20 12:08 PM PST -jqg123,2022-02-26T20:39:21Z,- jqg123 unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-02-26 12:39 PM PST -jqg123,2022-02-26T20:44:38Z,- jqg123 commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1052589264) at 2022-02-26 12:44 PM PST -jqg123,2022-03-12T01:34:26Z,- jqg123 pull request closed w/o merging: [2774](https://github.com/hackforla/website/pull/2774#event-6228962242) at 2022-03-11 06:34 PM PDT -jqg123,2022-03-12T01:39:08Z,- jqg123 unassigned from issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1043829929) at 2022-03-11 06:39 PM PDT -JRHutson,2022-01-24T03:35:23Z,- JRHutson opened issue: [2715](https://github.com/hackforla/website/issues/2715) at 2022-01-23 07:35 PM PST -JRHutson,2022-01-24T03:37:01Z,- JRHutson commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1019685310) at 2022-01-23 07:37 PM PST -JRHutson,2022-01-24T03:37:16Z,- JRHutson commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1019685371) at 2022-01-23 07:37 PM PST -JRHutson,2022-01-24T03:37:30Z,- JRHutson commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1019685450) at 2022-01-23 07:37 PM PST -JRHutson,2022-01-24T03:37:59Z,- JRHutson commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1019685607) at 2022-01-23 07:37 PM PST -JRHutson,2022-01-24T03:38:18Z,- JRHutson commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1019685710) at 2022-01-23 07:38 PM PST -JRHutson,2022-02-08T19:25:46Z,- JRHutson opened issue: [2751](https://github.com/hackforla/website/issues/2751) at 2022-02-08 11:25 AM PST -JRHutson,2022-02-08T19:27:33Z,- JRHutson commented on issue: [2751](https://github.com/hackforla/website/issues/2751#issuecomment-1032980833) at 2022-02-08 11:27 AM PST -JRHutson,2022-04-30T19:53:01Z,- JRHutson opened issue: [3084](https://github.com/hackforla/website/issues/3084) at 2022-04-30 12:53 PM PDT -jsachsman,2020-08-16T22:50:01Z,- jsachsman opened issue: [684](https://github.com/hackforla/website/issues/684) at 2020-08-16 03:50 PM PDT -jsachsman,2020-09-06T21:06:13Z,- jsachsman commented on issue: [684](https://github.com/hackforla/website/issues/684#issuecomment-687901612) at 2020-09-06 02:06 PM PDT -jsnhn,7895,SKILLS ISSUE -jsnhn,2025-02-05T18:18:43Z,- jsnhn opened issue: [7895](https://github.com/hackforla/website/issues/7895) at 2025-02-05 10:18 AM PST -jsnhn,2025-02-05T18:18:57Z,- jsnhn assigned to issue: [7895](https://github.com/hackforla/website/issues/7895) at 2025-02-05 10:18 AM PST -jsnhn,2025-02-20T17:46:16Z,- jsnhn assigned to issue: [7843](https://github.com/hackforla/website/issues/7843) at 2025-02-20 09:46 AM PST -jsnhn,2025-02-21T02:02:45Z,- jsnhn opened pull request: [7932](https://github.com/hackforla/website/pull/7932) at 2025-02-20 06:02 PM PST -jsnhn,2025-02-26T01:01:27Z,- jsnhn pull request merged: [7932](https://github.com/hackforla/website/pull/7932#event-16470950729) at 2025-02-25 05:01 PM PST -jsnhn,2025-03-07T23:23:01Z,- jsnhn commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2707694752) at 2025-03-07 03:23 PM PST -jsnhn,2025-03-14T00:22:46Z,- jsnhn assigned to issue: [7955](https://github.com/hackforla/website/issues/7955) at 2025-03-13 05:22 PM PDT -jsnhn,2025-03-14T00:22:59Z,- jsnhn unassigned from issue: [7955](https://github.com/hackforla/website/issues/7955) at 2025-03-13 05:22 PM PDT -jsnhn,2025-03-14T00:51:30Z,- jsnhn assigned to issue: [7475](https://github.com/hackforla/website/issues/7475) at 2025-03-13 05:51 PM PDT -jsnhn,2025-03-14T01:41:39Z,- jsnhn opened pull request: [7989](https://github.com/hackforla/website/pull/7989) at 2025-03-13 06:41 PM PDT -jsnhn,2025-03-17T19:37:41Z,- jsnhn pull request merged: [7989](https://github.com/hackforla/website/pull/7989#event-16813260732) at 2025-03-17 12:37 PM PDT -jsnhn,2025-04-01T02:18:08Z,- jsnhn assigned to issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2474058622) at 2025-03-31 07:18 PM PDT -jsnhn,2025-04-01T02:21:55Z,- jsnhn commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2767884533) at 2025-03-31 07:21 PM PDT -jsnhn,2025-04-03T03:02:07Z,- jsnhn opened pull request: [8038](https://github.com/hackforla/website/pull/8038) at 2025-04-02 08:02 PM PDT -jsnhn,2025-06-01T16:15:00Z,- jsnhn pull request closed w/o merging: [8038](https://github.com/hackforla/website/pull/8038#event-17915625904) at 2025-06-01 09:15 AM PDT -jsnhn,2025-06-01T16:15:15Z,- jsnhn unassigned from issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2767880222) at 2025-06-01 09:15 AM PDT -JSTUN9,4322,SKILLS ISSUE -JSTUN9,2023-03-29T03:37:40Z,- JSTUN9 opened issue: [4322](https://github.com/hackforla/website/issues/4322) at 2023-03-28 08:37 PM PDT -JSTUN9,2023-03-29T03:37:50Z,- JSTUN9 assigned to issue: [4322](https://github.com/hackforla/website/issues/4322) at 2023-03-28 08:37 PM PDT -jtkabenni,6030,SKILLS ISSUE -jtkabenni,2024-01-03T03:44:06Z,- jtkabenni opened issue: [6030](https://github.com/hackforla/website/issues/6030) at 2024-01-02 07:44 PM PST -jtkabenni,2024-01-03T03:44:11Z,- jtkabenni assigned to issue: [6030](https://github.com/hackforla/website/issues/6030) at 2024-01-02 07:44 PM PST -jtkabenni,2024-01-05T07:24:37Z,- jtkabenni assigned to issue: [6019](https://github.com/hackforla/website/issues/6019) at 2024-01-04 11:24 PM PST -jtkabenni,2024-01-05T08:09:43Z,- jtkabenni opened pull request: [6068](https://github.com/hackforla/website/pull/6068) at 2024-01-05 12:09 AM PST -jtkabenni,2024-01-06T03:35:41Z,- jtkabenni commented on issue: [6019](https://github.com/hackforla/website/issues/6019#issuecomment-1879523318) at 2024-01-05 07:35 PM PST -jtkabenni,2024-01-06T03:37:12Z,- jtkabenni commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1879523593) at 2024-01-05 07:37 PM PST -jtkabenni,2024-01-08T21:50:46Z,- jtkabenni pull request merged: [6068](https://github.com/hackforla/website/pull/6068#event-11422909322) at 2024-01-08 01:50 PM PST -jtkabenni,2024-03-05T22:23:41Z,- jtkabenni closed issue as completed: [6030](https://github.com/hackforla/website/issues/6030#event-12020286460) at 2024-03-05 02:23 PM PST -jtw007,6031,SKILLS ISSUE -jtw007,2024-01-03T03:44:41Z,- jtw007 opened issue: [6031](https://github.com/hackforla/website/issues/6031) at 2024-01-02 07:44 PM PST -jtw007,2024-01-03T03:45:25Z,- jtw007 assigned to issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-1874815367) at 2024-01-02 07:45 PM PST -jtw007,2024-01-09T01:29:13Z,- jtw007 assigned to issue: [6074](https://github.com/hackforla/website/issues/6074) at 2024-01-08 05:29 PM PST -jtw007,2024-01-09T03:36:58Z,- jtw007 opened pull request: [6079](https://github.com/hackforla/website/pull/6079) at 2024-01-08 07:36 PM PST -jtw007,2024-01-09T03:43:30Z,- jtw007 pull request closed w/o merging: [6079](https://github.com/hackforla/website/pull/6079#event-11424795708) at 2024-01-08 07:43 PM PST -jtw007,2024-01-09T03:51:31Z,- jtw007 opened pull request: [6080](https://github.com/hackforla/website/pull/6080) at 2024-01-08 07:51 PM PST -jtw007,2024-01-09T04:01:47Z,- jtw007 pull request closed w/o merging: [6080](https://github.com/hackforla/website/pull/6080#event-11424891566) at 2024-01-08 08:01 PM PST -jtw007,2024-01-09T04:09:42Z,- jtw007 opened pull request: [6081](https://github.com/hackforla/website/pull/6081) at 2024-01-08 08:09 PM PST -jtw007,2024-01-12T22:53:05Z,- jtw007 pull request closed w/o merging: [6081](https://github.com/hackforla/website/pull/6081#event-11474701822) at 2024-01-12 02:53 PM PST -jtw007,2024-01-12T22:56:19Z,- jtw007 opened pull request: [6103](https://github.com/hackforla/website/pull/6103) at 2024-01-12 02:56 PM PST -jtw007,2024-01-12T22:57:49Z,- jtw007 commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1890089390) at 2024-01-12 02:57 PM PST -jtw007,2024-01-17T20:26:36Z,- jtw007 commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1896636766) at 2024-01-17 12:26 PM PST -jtw007,2024-01-18T22:55:43Z,- jtw007 commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1899349396) at 2024-01-18 02:55 PM PST -jtw007,2024-01-19T05:49:27Z,- jtw007 pull request merged: [6103](https://github.com/hackforla/website/pull/6103#event-11533222178) at 2024-01-18 09:49 PM PST -jtw007,2024-01-24T23:30:41Z,- jtw007 closed issue as completed: [6031](https://github.com/hackforla/website/issues/6031#event-11590792736) at 2024-01-24 03:30 PM PST -jtw007,2024-01-24T23:58:11Z,- jtw007 assigned to issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1899881564) at 2024-01-24 03:58 PM PST -jtw007,2024-01-25T01:33:43Z,- jtw007 commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1909200105) at 2024-01-24 05:33 PM PST -jtw007,2024-01-25T22:32:57Z,- jtw007 opened pull request: [6164](https://github.com/hackforla/website/pull/6164) at 2024-01-25 02:32 PM PST -jtw007,2024-01-26T06:56:08Z,- jtw007 pull request merged: [6164](https://github.com/hackforla/website/pull/6164#event-11605549271) at 2024-01-25 10:56 PM PST -jtw007,2024-01-30T23:43:52Z,- jtw007 assigned to issue: [6187](https://github.com/hackforla/website/issues/6187) at 2024-01-30 03:43 PM PST -jtw007,2024-01-30T23:45:23Z,- jtw007 commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1918101638) at 2024-01-30 03:45 PM PST -jtw007,2024-02-01T01:55:27Z,- jtw007 opened pull request: [6203](https://github.com/hackforla/website/pull/6203) at 2024-01-31 05:55 PM PST -jtw007,2024-02-01T06:49:05Z,- jtw007 unassigned from issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1918101638) at 2024-01-31 10:49 PM PST -jtw007,2024-02-01T06:59:19Z,- jtw007 pull request closed w/o merging: [6203](https://github.com/hackforla/website/pull/6203#event-11665365967) at 2024-01-31 10:59 PM PST -jtw007,2024-02-01T20:58:18Z,- jtw007 assigned to issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1875005173) at 2024-02-01 12:58 PM PST -jtw007,2024-02-01T20:58:36Z,- jtw007 unassigned from issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922232023) at 2024-02-01 12:58 PM PST -jtw007,2024-02-01T20:59:08Z,- jtw007 assigned to issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1795855938) at 2024-02-01 12:59 PM PST -jtw007,2024-02-01T21:15:21Z,- jtw007 commented on issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1922257879) at 2024-02-01 01:15 PM PST -jtw007,2024-02-01T22:00:36Z,- jtw007 opened pull request: [6206](https://github.com/hackforla/website/pull/6206) at 2024-02-01 02:00 PM PST -jtw007,2024-02-03T05:33:38Z,- jtw007 pull request merged: [6206](https://github.com/hackforla/website/pull/6206#event-11691680986) at 2024-02-02 09:33 PM PST -jtw007,2024-02-20T00:44:20Z,- jtw007 assigned to issue: [6298](https://github.com/hackforla/website/issues/6298) at 2024-02-19 04:44 PM PST -jtw007,2024-02-20T00:45:30Z,- jtw007 commented on issue: [6298](https://github.com/hackforla/website/issues/6298#issuecomment-1953321229) at 2024-02-19 04:45 PM PST -jtw007,2024-02-21T02:16:24Z,- jtw007 opened pull request: [6328](https://github.com/hackforla/website/pull/6328) at 2024-02-20 06:16 PM PST -jtw007,2024-02-23T01:33:38Z,- jtw007 submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1897262751) at 2024-02-22 05:33 PM PST -jtw007,2024-02-23T08:02:33Z,- jtw007 pull request merged: [6328](https://github.com/hackforla/website/pull/6328#event-11900452861) at 2024-02-23 12:02 AM PST -jtw007,2024-02-25T06:49:47Z,- jtw007 submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1899614726) at 2024-02-24 10:49 PM PST -jtw007,2024-02-29T20:24:09Z,- jtw007 commented on pull request: [6400](https://github.com/hackforla/website/pull/6400#issuecomment-1971897297) at 2024-02-29 12:24 PM PST -jtw007,2024-03-01T02:38:29Z,- jtw007 submitted pull request review: [6400](https://github.com/hackforla/website/pull/6400#pullrequestreview-1910219389) at 2024-02-29 06:38 PM PST -jtw007,2024-06-27T19:35:17Z,- jtw007 commented on issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-2195526353) at 2024-06-27 12:35 PM PDT -juanramirezwebdev,6609,SKILLS ISSUE -juanramirezwebdev,7215,SKILLS ISSUE -juanramirezwebdev,7231,SKILLS ISSUE -juanramirezwebdev,2024-04-09T03:23:56Z,- juanramirezwebdev opened issue: [6609](https://github.com/hackforla/website/issues/6609) at 2024-04-08 08:23 PM PDT -juanramirezwebdev,2024-04-09T03:37:43Z,- juanramirezwebdev assigned to issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2044084776) at 2024-04-08 08:37 PM PDT -juanramirezwebdev,2024-08-06T03:47:14Z,- juanramirezwebdev opened issue: [7215](https://github.com/hackforla/website/issues/7215) at 2024-08-05 08:47 PM PDT -juanramirezwebdev,2024-08-06T03:47:36Z,- juanramirezwebdev assigned to issue: [7215](https://github.com/hackforla/website/issues/7215#issuecomment-2270326646) at 2024-08-05 08:47 PM PDT -juanramirezwebdev,2024-08-07T02:11:38Z,- juanramirezwebdev opened issue: [7231](https://github.com/hackforla/website/issues/7231) at 2024-08-06 07:11 PM PDT -juanramirezwebdev,2024-08-07T02:11:39Z,- juanramirezwebdev assigned to issue: [7231](https://github.com/hackforla/website/issues/7231) at 2024-08-06 07:11 PM PDT -juleanrod,3710,SKILLS ISSUE -juleanrod,2022-11-09T03:47:27Z,- juleanrod opened issue: [3710](https://github.com/hackforla/website/issues/3710) at 2022-11-08 07:47 PM PST -juleanrod,2022-11-09T20:24:20Z,- juleanrod assigned to issue: [3710](https://github.com/hackforla/website/issues/3710) at 2022-11-09 12:24 PM PST -juleanrod,2022-11-29T22:24:18Z,- juleanrod commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1331397905) at 2022-11-29 02:24 PM PST -juleanrod,2022-11-29T22:25:27Z,- juleanrod commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1331398836) at 2022-11-29 02:25 PM PST -juleanrod,2022-11-29T22:28:18Z,- juleanrod commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1331401236) at 2022-11-29 02:28 PM PST -juleanrod,2022-11-29T22:36:36Z,- juleanrod commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1331408055) at 2022-11-29 02:36 PM PST -juleanrod,2022-11-30T01:30:49Z,- juleanrod closed issue as completed: [3710](https://github.com/hackforla/website/issues/3710#event-7917802037) at 2022-11-29 05:30 PM PST -juliagab56,2022-11-03T18:03:02Z,- juliagab56 opened issue: [3694](https://github.com/hackforla/website/issues/3694) at 2022-11-03 11:03 AM PDT -juliagab56,2022-11-03T19:01:46Z,- juliagab56 commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1302545397) at 2022-11-03 12:01 PM PDT -juliagab56,2022-12-01T22:09:13Z,- juliagab56 commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1334511465) at 2022-12-01 02:09 PM PST -julialuongw,5001,SKILLS ISSUE -julialuongw,2023-07-18T03:10:35Z,- julialuongw opened issue: [5001](https://github.com/hackforla/website/issues/5001) at 2023-07-17 08:10 PM PDT -julialuongw,2023-07-24T20:15:12Z,- julialuongw commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1648542483) at 2023-07-24 01:15 PM PDT -julialuongw,2023-07-25T22:15:34Z,- julialuongw commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1650635623) at 2023-07-25 03:15 PM PDT -julialuongw,2023-07-25T22:15:46Z,- julialuongw assigned to issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1650635623) at 2023-07-25 03:15 PM PDT -julialuongw,2023-07-25T22:21:32Z,- julialuongw assigned to issue: [4813](https://github.com/hackforla/website/issues/4813) at 2023-07-25 03:21 PM PDT -julialuongw,2023-07-26T01:38:16Z,- julialuongw opened pull request: [5063](https://github.com/hackforla/website/pull/5063) at 2023-07-25 06:38 PM PDT -julialuongw,2023-07-26T01:44:32Z,- julialuongw commented on issue: [4813](https://github.com/hackforla/website/issues/4813#issuecomment-1650846602) at 2023-07-25 06:44 PM PDT -julialuongw,2023-07-26T01:47:45Z,- julialuongw commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1650848702) at 2023-07-25 06:47 PM PDT -julialuongw,2023-07-29T10:43:09Z,- julialuongw pull request merged: [5063](https://github.com/hackforla/website/pull/5063#event-9954270791) at 2023-07-29 03:43 AM PDT -julialuongw,2023-09-11T20:30:31Z,- julialuongw closed issue as completed: [5001](https://github.com/hackforla/website/issues/5001#event-10338700451) at 2023-09-11 01:30 PM PDT -juliansmith0,3122,SKILLS ISSUE -juliansmith0,2022-05-11T03:21:33Z,- juliansmith0 opened issue: [3122](https://github.com/hackforla/website/issues/3122) at 2022-05-10 08:21 PM PDT -juliansmith0,2022-05-15T18:39:20Z,- juliansmith0 assigned to issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1126973812) at 2022-05-15 11:39 AM PDT -juliansmith0,2022-05-17T22:16:52Z,- juliansmith0 commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1129368758) at 2022-05-17 03:16 PM PDT -juliansmith0,2022-05-18T02:32:55Z,- juliansmith0 commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1129504369) at 2022-05-17 07:32 PM PDT -juliansmith0,2022-05-18T02:37:51Z,- juliansmith0 commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1129506631) at 2022-05-17 07:37 PM PDT -juliansmith0,2022-05-18T03:02:35Z,- juliansmith0 assigned to issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1073045830) at 2022-05-17 08:02 PM PDT -juliansmith0,2022-05-18T03:15:11Z,- juliansmith0 commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1129522307) at 2022-05-17 08:15 PM PDT -juliansmith0,2022-05-18T03:18:51Z,- juliansmith0 commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1129523892) at 2022-05-17 08:18 PM PDT -juliansmith0,2022-05-20T03:17:30Z,- juliansmith0 opened pull request: [3160](https://github.com/hackforla/website/pull/3160) at 2022-05-19 08:17 PM PDT -juliansmith0,2022-05-20T03:39:42Z,- juliansmith0 pull request merged: [3160](https://github.com/hackforla/website/pull/3160#event-6647317066) at 2022-05-19 08:39 PM PDT -juliansmith0,2022-05-24T04:04:59Z,- juliansmith0 closed issue as completed: [3122](https://github.com/hackforla/website/issues/3122#event-6665574886) at 2022-05-23 09:04 PM PDT -juliansmith0,2022-05-24T04:07:55Z,- juliansmith0 assigned to issue: [2921](https://github.com/hackforla/website/issues/2921#issuecomment-1058573652) at 2022-05-23 09:07 PM PDT -juliansmith0,2022-05-24T04:10:55Z,- juliansmith0 commented on issue: [2921](https://github.com/hackforla/website/issues/2921#issuecomment-1135382073) at 2022-05-23 09:10 PM PDT -juliansmith0,2022-05-24T04:22:31Z,- juliansmith0 opened pull request: [3172](https://github.com/hackforla/website/pull/3172) at 2022-05-23 09:22 PM PDT -juliansmith0,2022-05-25T02:34:05Z,- juliansmith0 commented on pull request: [3172](https://github.com/hackforla/website/pull/3172#issuecomment-1136652205) at 2022-05-24 07:34 PM PDT -juliansmith0,2022-05-25T14:40:25Z,- juliansmith0 pull request merged: [3172](https://github.com/hackforla/website/pull/3172#event-6678425890) at 2022-05-25 07:40 AM PDT -juliansmith0,2022-05-26T20:50:39Z,- juliansmith0 assigned to issue: [2930](https://github.com/hackforla/website/issues/2930#issuecomment-1059838228) at 2022-05-26 01:50 PM PDT -juliansmith0,2022-05-26T20:52:29Z,- juliansmith0 commented on issue: [2930](https://github.com/hackforla/website/issues/2930#issuecomment-1139034159) at 2022-05-26 01:52 PM PDT -juliansmith0,2022-05-26T22:01:37Z,- juliansmith0 opened pull request: [3176](https://github.com/hackforla/website/pull/3176) at 2022-05-26 03:01 PM PDT -juliansmith0,2022-06-01T01:47:17Z,- juliansmith0 commented on pull request: [3178](https://github.com/hackforla/website/pull/3178#issuecomment-1143027455) at 2022-05-31 06:47 PM PDT -juliansmith0,2022-06-01T03:03:33Z,- juliansmith0 submitted pull request review: [3178](https://github.com/hackforla/website/pull/3178#pullrequestreview-991344771) at 2022-05-31 08:03 PM PDT -juliansmith0,2022-06-01T03:24:16Z,- juliansmith0 assigned to issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-904871690) at 2022-05-31 08:24 PM PDT -juliansmith0,2022-06-01T03:25:13Z,- juliansmith0 commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1143076519) at 2022-05-31 08:25 PM PDT -juliansmith0,2022-06-05T00:33:40Z,- juliansmith0 pull request merged: [3176](https://github.com/hackforla/website/pull/3176#event-6742589937) at 2022-06-04 05:33 PM PDT -juliansmith0,2022-07-25T21:34:12Z,- juliansmith0 unassigned from issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1194658612) at 2022-07-25 02:34 PM PDT -junadkat32,5090,SKILLS ISSUE -junadkat32,2023-07-26T03:47:48Z,- junadkat32 opened issue: [5090](https://github.com/hackforla/website/issues/5090) at 2023-07-25 08:47 PM PDT -junadkat32,2023-11-15T21:36:58Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813286564) at 2023-11-15 01:36 PM PST -junadkat32,2023-11-15T21:37:04Z,- junadkat32 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813286564) at 2023-11-15 01:37 PM PST -junadkat32,2023-11-15T21:37:36Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813297093) at 2023-11-15 01:37 PM PST -junadkat32,2023-11-15T22:09:42Z,- junadkat32 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813299500) at 2023-11-15 02:09 PM PST -junadkat32,2023-11-16T18:13:11Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813299500) at 2023-11-16 10:13 AM PST -junadkat32,2023-11-16T18:34:25Z,- junadkat32 commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1815016947) at 2023-11-16 10:34 AM PST -junadkat32,2023-11-16T19:20:06Z,- junadkat32 opened pull request: [5914](https://github.com/hackforla/website/pull/5914) at 2023-11-16 11:20 AM PST -junadkat32,2023-11-16T20:14:23Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815246280) at 2023-11-16 12:14 PM PST -junadkat32,2023-11-16T22:11:55Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815395954) at 2023-11-16 02:11 PM PST -junadkat32,2023-11-17T22:56:27Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1817224208) at 2023-11-17 02:56 PM PST -junadkat32,2023-11-22T22:46:17Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1823597692) at 2023-11-22 02:46 PM PST -junadkat32,2023-11-23T16:43:30Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1824713164) at 2023-11-23 08:43 AM PST -junadkat32,2023-11-27T01:55:36Z,- junadkat32 pull request merged: [5914](https://github.com/hackforla/website/pull/5914#event-11065015373) at 2023-11-26 05:55 PM PST -junadkat32,2023-11-30T19:40:53Z,- junadkat32 assigned to issue: [5674](https://github.com/hackforla/website/issues/5674#issuecomment-1751959664) at 2023-11-30 11:40 AM PST -junadkat32,2023-11-30T20:55:47Z,- junadkat32 opened pull request: [5950](https://github.com/hackforla/website/pull/5950) at 2023-11-30 12:55 PM PST -junadkat32,2023-12-08T16:21:04Z,- junadkat32 submitted pull request review: [5950](https://github.com/hackforla/website/pull/5950#pullrequestreview-1772757871) at 2023-12-08 08:21 AM PST -junadkat32,2023-12-09T19:38:31Z,- junadkat32 pull request merged: [5950](https://github.com/hackforla/website/pull/5950#event-11201318335) at 2023-12-09 11:38 AM PST -junadkat32,2024-01-31T07:01:10Z,- junadkat32 assigned to issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1650934855) at 2024-01-30 11:01 PM PST -junadkat32,2024-02-08T22:28:32Z,- junadkat32 assigned to issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1875028964) at 2024-02-08 02:28 PM PST -junadkat32,2024-02-08T22:30:39Z,- junadkat32 commented on issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1935036593) at 2024-02-08 02:30 PM PST -junadkat32,2024-02-08T23:16:15Z,- junadkat32 opened pull request: [6267](https://github.com/hackforla/website/pull/6267) at 2024-02-08 03:16 PM PST -junadkat32,2024-02-09T14:40:41Z,- junadkat32 commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1936052623) at 2024-02-09 06:40 AM PST -junadkat32,2024-02-10T22:32:35Z,- junadkat32 commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1937301260) at 2024-02-10 02:32 PM PST -junadkat32,2024-02-13T16:37:03Z,- junadkat32 assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937335130) at 2024-02-13 08:37 AM PST -junadkat32,2024-02-13T16:38:44Z,- junadkat32 commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1941971834) at 2024-02-13 08:38 AM PST -junadkat32,2024-02-13T16:48:28Z,- junadkat32 opened pull request: [6287](https://github.com/hackforla/website/pull/6287) at 2024-02-13 08:48 AM PST -junadkat32,2024-02-13T21:26:51Z,- junadkat32 commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1942591247) at 2024-02-13 01:26 PM PST -junadkat32,2024-02-14T07:56:58Z,- junadkat32 unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1943244039) at 2024-02-13 11:56 PM PST -junadkat32,2024-02-14T07:57:58Z,- junadkat32 pull request closed w/o merging: [6287](https://github.com/hackforla/website/pull/6287#event-11798048849) at 2024-02-13 11:57 PM PST -junadkat32,2024-02-16T00:31:24Z,- junadkat32 pull request merged: [6267](https://github.com/hackforla/website/pull/6267#event-11822685686) at 2024-02-15 04:31 PM PST -junadkat32,2024-02-20T18:20:09Z,- junadkat32 assigned to issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 10:20 AM PST -junadkat32,2024-02-20T20:36:02Z,- junadkat32 unassigned from issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 12:36 PM PST -junadkat32,2024-02-20T20:36:24Z,- junadkat32 reopened pull request: [6287](https://github.com/hackforla/website/pull/6287#event-11798048849) at 2024-02-20 12:36 PM PST -junadkat32,2024-02-20T20:40:16Z,- junadkat32 commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1955043171) at 2024-02-20 12:40 PM PST -junadkat32,2024-02-21T00:13:33Z,- junadkat32 pull request closed w/o merging: [6287](https://github.com/hackforla/website/pull/6287#event-11868817149) at 2024-02-20 04:13 PM PST -junadkat32,2024-02-21T03:22:29Z,- junadkat32 assigned to issue: [6311](https://github.com/hackforla/website/issues/6311) at 2024-02-20 07:22 PM PST -junadkat32,2024-02-21T03:23:13Z,- junadkat32 commented on issue: [6311](https://github.com/hackforla/website/issues/6311#issuecomment-1955809806) at 2024-02-20 07:23 PM PST -junadkat32,2024-02-29T01:44:07Z,- junadkat32 opened pull request: [6391](https://github.com/hackforla/website/pull/6391) at 2024-02-28 05:44 PM PST -junadkat32,2024-02-29T02:32:13Z,- junadkat32 pull request closed w/o merging: [6391](https://github.com/hackforla/website/pull/6391#event-11959845318) at 2024-02-28 06:32 PM PST -junadkat32,2024-02-29T02:32:41Z,- junadkat32 commented on pull request: [6391](https://github.com/hackforla/website/pull/6391#issuecomment-1970288108) at 2024-02-28 06:32 PM PST -junadkat32,2024-02-29T04:15:50Z,- junadkat32 opened pull request: [6393](https://github.com/hackforla/website/pull/6393) at 2024-02-28 08:15 PM PST -junadkat32,2024-03-01T16:41:07Z,- junadkat32 commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1973516081) at 2024-03-01 08:41 AM PST -junadkat32,2024-03-02T08:03:20Z,- junadkat32 pull request merged: [6393](https://github.com/hackforla/website/pull/6393#event-11986792880) at 2024-03-02 12:03 AM PST -Jung-GunSong,6042,SKILLS ISSUE -Jung-GunSong,2024-01-03T05:07:12Z,- Jung-GunSong opened issue: [6042](https://github.com/hackforla/website/issues/6042) at 2024-01-02 09:07 PM PST -Jung-GunSong,2024-01-03T05:07:12Z,- Jung-GunSong assigned to issue: [6042](https://github.com/hackforla/website/issues/6042) at 2024-01-02 09:07 PM PST -Jung-GunSong,2024-01-04T22:23:09Z,- Jung-GunSong assigned to issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1839980618) at 2024-01-04 02:23 PM PST -Jung-GunSong,2024-01-04T22:29:57Z,- Jung-GunSong commented on issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1877846425) at 2024-01-04 02:29 PM PST -Jung-GunSong,2024-01-05T00:13:27Z,- Jung-GunSong opened pull request: [6063](https://github.com/hackforla/website/pull/6063) at 2024-01-04 04:13 PM PST -Jung-GunSong,2024-01-07T21:20:48Z,- Jung-GunSong pull request merged: [6063](https://github.com/hackforla/website/pull/6063#event-11412001606) at 2024-01-07 01:20 PM PST -Jung-GunSong,2024-01-08T02:31:56Z,- Jung-GunSong commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880309181) at 2024-01-07 06:31 PM PST -Jung-GunSong,2024-01-10T03:32:45Z,- Jung-GunSong commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1884135976) at 2024-01-09 07:32 PM PST -Jung-GunSong,2024-01-11T22:59:53Z,- Jung-GunSong assigned to issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1805006007) at 2024-01-11 02:59 PM PST -Jung-GunSong,2024-01-11T23:02:13Z,- Jung-GunSong commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1888104997) at 2024-01-11 03:02 PM PST -Jung-GunSong,2024-01-11T23:58:55Z,- Jung-GunSong opened pull request: [6100](https://github.com/hackforla/website/pull/6100) at 2024-01-11 03:58 PM PST -Jung-GunSong,2024-01-17T04:25:16Z,- Jung-GunSong pull request merged: [6100](https://github.com/hackforla/website/pull/6100#event-11506289915) at 2024-01-16 08:25 PM PST -Jung-GunSong,2024-01-18T18:20:31Z,- Jung-GunSong assigned to issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1880320764) at 2024-01-18 10:20 AM PST -Jung-GunSong,2024-01-18T18:22:16Z,- Jung-GunSong commented on issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1898992884) at 2024-01-18 10:22 AM PST -Jung-GunSong,2024-01-19T03:34:37Z,- Jung-GunSong assigned to issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1854938752) at 2024-01-18 07:34 PM PST -Jung-GunSong,2024-01-24T19:19:35Z,- Jung-GunSong commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1908769235) at 2024-01-24 11:19 AM PST -Jung-GunSong,2024-02-01T20:37:57Z,- Jung-GunSong opened pull request: [6205](https://github.com/hackforla/website/pull/6205) at 2024-02-01 12:37 PM PST -Jung-GunSong,2024-02-06T16:36:26Z,- Jung-GunSong commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1930284272) at 2024-02-06 08:36 AM PST -Jung-GunSong,2024-02-07T10:49:38Z,- Jung-GunSong pull request merged: [6205](https://github.com/hackforla/website/pull/6205#event-11730618104) at 2024-02-07 02:49 AM PST -Jung-GunSong,2024-02-16T03:00:15Z,- Jung-GunSong assigned to issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1915700185) at 2024-02-15 07:00 PM PST -Jung-GunSong,2024-02-16T03:01:18Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1947684705) at 2024-02-15 07:01 PM PST -Jung-GunSong,2024-02-26T18:25:11Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1964842947) at 2024-02-26 10:25 AM PST -Jung-GunSong,2024-03-05T19:18:17Z,- Jung-GunSong commented on pull request: [6417](https://github.com/hackforla/website/pull/6417#issuecomment-1979471910) at 2024-03-05 11:18 AM PST -Jung-GunSong,2024-03-05T19:48:22Z,- Jung-GunSong submitted pull request review: [6417](https://github.com/hackforla/website/pull/6417#pullrequestreview-1917973499) at 2024-03-05 11:48 AM PST -Jung-GunSong,2024-03-11T23:27:58Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1989633207) at 2024-03-11 04:27 PM PDT -Jung-GunSong,2024-03-21T15:26:32Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2012634083) at 2024-03-21 08:26 AM PDT -Jung-GunSong,2024-03-27T02:46:32Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2021818530) at 2024-03-26 07:46 PM PDT -Jung-GunSong,2024-05-08T03:36:51Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2099677332) at 2024-05-07 08:36 PM PDT -Jung-GunSong,2024-05-08T03:38:50Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2099678880) at 2024-05-07 08:38 PM PDT -junjun107,3512,SKILLS ISSUE -junjun107,2022-08-31T03:09:48Z,- junjun107 opened issue: [3512](https://github.com/hackforla/website/issues/3512) at 2022-08-30 08:09 PM PDT -Justin-Arakaki,5068,SKILLS ISSUE -Justin-Arakaki,2023-07-26T02:59:02Z,- Justin-Arakaki opened issue: [5068](https://github.com/hackforla/website/issues/5068) at 2023-07-25 07:59 PM PDT -Justin-Arakaki,2023-07-26T02:59:18Z,- Justin-Arakaki assigned to issue: [5068](https://github.com/hackforla/website/issues/5068) at 2023-07-25 07:59 PM PDT -Justin-Arakaki,2023-09-21T22:45:30Z,- Justin-Arakaki assigned to issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1716212512) at 2023-09-21 03:45 PM PDT -Justin-Arakaki,2023-10-23T20:15:47Z,- Justin-Arakaki unassigned from issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1772202539) at 2023-10-23 01:15 PM PDT -justinPemberton,3545,SKILLS ISSUE -justinPemberton,2022-09-13T02:56:55Z,- justinPemberton opened issue: [3545](https://github.com/hackforla/website/issues/3545) at 2022-09-12 07:56 PM PDT -justinPemberton,2022-09-19T21:42:19Z,- justinPemberton assigned to issue: [3545](https://github.com/hackforla/website/issues/3545) at 2022-09-19 02:42 PM PDT -justinPemberton,2022-11-13T20:06:36Z,- justinPemberton commented on issue: [3545](https://github.com/hackforla/website/issues/3545#issuecomment-1312810108) at 2022-11-13 12:06 PM PST -jyaymie,3610,SKILLS ISSUE -jyaymie,2022-10-11T02:54:24Z,- jyaymie opened issue: [3610](https://github.com/hackforla/website/issues/3610) at 2022-10-10 07:54 PM PDT -jyaymie,2022-10-12T03:00:34Z,- jyaymie assigned to issue: [3610](https://github.com/hackforla/website/issues/3610) at 2022-10-11 08:00 PM PDT -jyaymie,2022-10-13T21:52:04Z,- jyaymie assigned to issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1048151464) at 2022-10-13 02:52 PM PDT -jyaymie,2022-10-13T21:58:28Z,- jyaymie commented on issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1278219842) at 2022-10-13 02:58 PM PDT -jyaymie,2022-10-13T22:00:39Z,- jyaymie commented on issue: [3610](https://github.com/hackforla/website/issues/3610#issuecomment-1278221387) at 2022-10-13 03:00 PM PDT -jyaymie,2022-10-13T22:34:32Z,- jyaymie opened pull request: [3618](https://github.com/hackforla/website/pull/3618) at 2022-10-13 03:34 PM PDT -jyaymie,2022-10-13T23:07:23Z,- jyaymie commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278268404) at 2022-10-13 04:07 PM PDT -jyaymie,2022-10-13T23:20:47Z,- jyaymie commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278276598) at 2022-10-13 04:20 PM PDT -jyaymie,2022-10-13T23:21:32Z,- jyaymie submitted pull request review: [3617](https://github.com/hackforla/website/pull/3617#pullrequestreview-1141619595) at 2022-10-13 04:21 PM PDT -jyaymie,2022-10-14T02:10:07Z,- jyaymie commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278377636) at 2022-10-13 07:10 PM PDT -jyaymie,2022-10-14T02:26:47Z,- jyaymie pull request merged: [3618](https://github.com/hackforla/website/pull/3618#event-7586420260) at 2022-10-13 07:26 PM PDT -jyaymie,2022-10-14T20:20:08Z,- jyaymie assigned to issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1145812161) at 2022-10-14 01:20 PM PDT -jyaymie,2022-10-14T20:24:46Z,- jyaymie commented on issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1279426828) at 2022-10-14 01:24 PM PDT -jyaymie,2022-10-14T23:02:03Z,- jyaymie opened pull request: [3624](https://github.com/hackforla/website/pull/3624) at 2022-10-14 04:02 PM PDT -jyaymie,2022-10-14T23:07:29Z,- jyaymie commented on pull request: [3621](https://github.com/hackforla/website/pull/3621#issuecomment-1279573540) at 2022-10-14 04:07 PM PDT -jyaymie,2022-10-14T23:10:10Z,- jyaymie submitted pull request review: [3621](https://github.com/hackforla/website/pull/3621#pullrequestreview-1143091937) at 2022-10-14 04:10 PM PDT -jyaymie,2022-10-15T22:05:43Z,- jyaymie pull request merged: [3624](https://github.com/hackforla/website/pull/3624#event-7595562563) at 2022-10-15 03:05 PM PDT -jyaymie,2022-10-16T17:19:36Z,- jyaymie commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1280013456) at 2022-10-16 10:19 AM PDT -jyaymie,2022-10-16T17:42:53Z,- jyaymie submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1143319293) at 2022-10-16 10:42 AM PDT -jyaymie,2022-10-16T17:56:36Z,- jyaymie assigned to issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1264691932) at 2022-10-16 10:56 AM PDT -jyaymie,2022-10-16T17:59:00Z,- jyaymie commented on issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1280020760) at 2022-10-16 10:59 AM PDT -jyaymie,2022-10-16T19:21:58Z,- jyaymie opened pull request: [3629](https://github.com/hackforla/website/pull/3629) at 2022-10-16 12:21 PM PDT -jyaymie,2022-10-17T17:57:45Z,- jyaymie submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1144592029) at 2022-10-17 10:57 AM PDT -jyaymie,2022-10-18T00:07:06Z,- jyaymie commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1281648054) at 2022-10-17 05:07 PM PDT -jyaymie,2022-10-18T00:23:56Z,- jyaymie submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1144947931) at 2022-10-17 05:23 PM PDT -jyaymie,2022-10-18T01:20:38Z,- jyaymie pull request merged: [3629](https://github.com/hackforla/website/pull/3629#event-7606983148) at 2022-10-17 06:20 PM PDT -jyaymie,2022-10-18T18:57:26Z,- jyaymie submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1146361349) at 2022-10-18 11:57 AM PDT -jyaymie,2022-10-19T21:10:20Z,- jyaymie commented on pull request: [3642](https://github.com/hackforla/website/pull/3642#issuecomment-1284577969) at 2022-10-19 02:10 PM PDT -jyaymie,2022-10-19T21:11:52Z,- jyaymie submitted pull request review: [3642](https://github.com/hackforla/website/pull/3642#pullrequestreview-1148280880) at 2022-10-19 02:11 PM PDT -jyaymie,2022-10-23T18:29:02Z,- jyaymie assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1284381184) at 2022-10-23 11:29 AM PDT -jyaymie,2022-10-23T18:35:57Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1288172342) at 2022-10-23 11:35 AM PDT -jyaymie,2022-10-24T06:15:54Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1288471549) at 2022-10-23 11:15 PM PDT -jyaymie,2022-10-24T18:49:51Z,- jyaymie commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1289453367) at 2022-10-24 11:49 AM PDT -jyaymie,2022-10-24T19:08:29Z,- jyaymie submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1153636118) at 2022-10-24 12:08 PM PDT -jyaymie,2022-10-25T00:03:14Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1289797521) at 2022-10-24 05:03 PM PDT -jyaymie,2022-10-25T21:31:19Z,- jyaymie commented on pull request: [3658](https://github.com/hackforla/website/pull/3658#issuecomment-1291166326) at 2022-10-25 02:31 PM PDT -jyaymie,2022-10-25T21:36:44Z,- jyaymie submitted pull request review: [3658](https://github.com/hackforla/website/pull/3658#pullrequestreview-1155528625) at 2022-10-25 02:36 PM PDT -jyaymie,2022-10-25T21:38:59Z,- jyaymie commented on pull request: [3655](https://github.com/hackforla/website/pull/3655#issuecomment-1291172423) at 2022-10-25 02:38 PM PDT -jyaymie,2022-10-25T21:45:41Z,- jyaymie submitted pull request review: [3655](https://github.com/hackforla/website/pull/3655#pullrequestreview-1155543091) at 2022-10-25 02:45 PM PDT -jyaymie,2022-10-25T22:02:22Z,- jyaymie commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291190215) at 2022-10-25 03:02 PM PDT -jyaymie,2022-10-25T22:08:10Z,- jyaymie commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291194542) at 2022-10-25 03:08 PM PDT -jyaymie,2022-10-25T22:09:46Z,- jyaymie commented on pull request: [3659](https://github.com/hackforla/website/pull/3659#issuecomment-1291195673) at 2022-10-25 03:09 PM PDT -jyaymie,2022-10-25T22:14:08Z,- jyaymie submitted pull request review: [3659](https://github.com/hackforla/website/pull/3659#pullrequestreview-1155597047) at 2022-10-25 03:14 PM PDT -jyaymie,2022-10-25T22:21:11Z,- jyaymie submitted pull request review: [3657](https://github.com/hackforla/website/pull/3657#pullrequestreview-1155610296) at 2022-10-25 03:21 PM PDT -jyaymie,2022-10-26T02:27:02Z,- jyaymie commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1291410720) at 2022-10-25 07:27 PM PDT -jyaymie,2022-10-26T02:47:28Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1291423985) at 2022-10-25 07:47 PM PDT -jyaymie,2022-10-26T03:32:56Z,- jyaymie submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1155813718) at 2022-10-25 08:32 PM PDT -jyaymie,2022-10-26T08:06:02Z,- jyaymie opened pull request: [3664](https://github.com/hackforla/website/pull/3664) at 2022-10-26 01:06 AM PDT -jyaymie,2022-10-27T01:22:21Z,- jyaymie commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292845441) at 2022-10-26 06:22 PM PDT -jyaymie,2022-10-27T01:27:13Z,- jyaymie commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292847914) at 2022-10-26 06:27 PM PDT -jyaymie,2022-10-28T20:48:14Z,- jyaymie submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1160704848) at 2022-10-28 01:48 PM PDT -jyaymie,2022-11-01T04:25:58Z,- jyaymie pull request merged: [3664](https://github.com/hackforla/website/pull/3664#event-7710012207) at 2022-10-31 09:25 PM PDT -jyaymie,2022-11-02T01:52:45Z,- jyaymie commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299448044) at 2022-11-01 06:52 PM PDT -jyaymie,2022-11-02T02:09:04Z,- jyaymie submitted pull request review: [3687](https://github.com/hackforla/website/pull/3687#pullrequestreview-1164300472) at 2022-11-01 07:09 PM PDT -jyaymie,2022-11-02T02:11:49Z,- jyaymie commented on pull request: [3686](https://github.com/hackforla/website/pull/3686#issuecomment-1299463822) at 2022-11-01 07:11 PM PDT -jyaymie,2022-11-02T02:15:10Z,- jyaymie submitted pull request review: [3686](https://github.com/hackforla/website/pull/3686#pullrequestreview-1164306571) at 2022-11-01 07:15 PM PDT -jyaymie,2022-11-02T02:19:46Z,- jyaymie commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299469899) at 2022-11-01 07:19 PM PDT -jyaymie,2022-11-02T02:29:54Z,- jyaymie assigned to issue: [2216](https://github.com/hackforla/website/issues/2216) at 2022-11-01 07:29 PM PDT -jyaymie,2022-11-02T02:35:10Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1299481617) at 2022-11-01 07:35 PM PDT -jyaymie,2022-11-02T18:46:32Z,- jyaymie commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301071191) at 2022-11-02 11:46 AM PDT -jyaymie,2022-11-02T18:50:25Z,- jyaymie submitted pull request review: [3689](https://github.com/hackforla/website/pull/3689#pullrequestreview-1165836220) at 2022-11-02 11:50 AM PDT -jyaymie,2022-11-02T19:45:30Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301143213) at 2022-11-02 12:45 PM PDT -jyaymie,2022-11-03T04:17:03Z,- jyaymie unassigned from issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301143213) at 2022-11-02 09:17 PM PDT -jyaymie,2022-11-03T04:41:54Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301633567) at 2022-11-02 09:41 PM PDT -jyaymie,2022-11-07T15:07:25Z,- jyaymie commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1305751430) at 2022-11-07 07:07 AM PST -jyaymie,2022-11-07T15:11:13Z,- jyaymie submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1170576965) at 2022-11-07 07:11 AM PST -jyaymie,2022-11-07T15:17:19Z,- jyaymie commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1305765721) at 2022-11-07 07:17 AM PST -jyaymie,2022-11-07T15:57:52Z,- jyaymie submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1170659650) at 2022-11-07 07:57 AM PST -jyaymie,2022-11-07T20:17:34Z,- jyaymie commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1306138211) at 2022-11-07 12:17 PM PST -jyaymie,2022-11-07T20:18:56Z,- jyaymie submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1171034427) at 2022-11-07 12:18 PM PST -jyaymie,2022-11-07T21:13:57Z,- jyaymie commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306200304) at 2022-11-07 01:13 PM PST -jyaymie,2022-11-07T21:40:56Z,- jyaymie submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1171133019) at 2022-11-07 01:40 PM PST -jyaymie,2022-11-08T20:01:12Z,- jyaymie commented on pull request: [3699](https://github.com/hackforla/website/pull/3699#issuecomment-1307760111) at 2022-11-08 12:01 PM PST -jyaymie,2022-11-08T20:03:47Z,- jyaymie submitted pull request review: [3699](https://github.com/hackforla/website/pull/3699#pullrequestreview-1172764494) at 2022-11-08 12:03 PM PST -jyaymie,2022-11-08T20:04:27Z,- jyaymie commented on pull request: [3700](https://github.com/hackforla/website/pull/3700#issuecomment-1307764162) at 2022-11-08 12:04 PM PST -jyaymie,2022-11-08T20:09:28Z,- jyaymie submitted pull request review: [3700](https://github.com/hackforla/website/pull/3700#pullrequestreview-1172771505) at 2022-11-08 12:09 PM PST -jyaymie,2022-11-08T20:30:26Z,- jyaymie submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1172795564) at 2022-11-08 12:30 PM PST -jyaymie,2022-11-09T02:26:45Z,- jyaymie commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1308114353) at 2022-11-08 06:26 PM PST -jyaymie,2022-11-09T02:32:06Z,- jyaymie submitted pull request review: [3703](https://github.com/hackforla/website/pull/3703#pullrequestreview-1173166793) at 2022-11-08 06:32 PM PST -jyaymie,2022-11-15T05:46:47Z,- jyaymie commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314805315) at 2022-11-14 09:46 PM PST -jyaymie,2022-11-15T06:08:43Z,- jyaymie submitted pull request review: [3717](https://github.com/hackforla/website/pull/3717#pullrequestreview-1180248957) at 2022-11-14 10:08 PM PST -jyaymie,2022-11-15T06:10:45Z,- jyaymie commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314823031) at 2022-11-14 10:10 PM PST -jyaymie,2022-11-15T06:21:30Z,- jyaymie submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1180258922) at 2022-11-14 10:21 PM PST -jyaymie,2022-11-15T23:07:07Z,- jyaymie commented on pull request: [3721](https://github.com/hackforla/website/pull/3721#issuecomment-1315988412) at 2022-11-15 03:07 PM PST -jyaymie,2022-11-15T23:21:53Z,- jyaymie submitted pull request review: [3721](https://github.com/hackforla/website/pull/3721#pullrequestreview-1181679219) at 2022-11-15 03:21 PM PST -jyaymie,2022-11-15T23:26:58Z,- jyaymie commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316012450) at 2022-11-15 03:26 PM PST -jyaymie,2022-11-15T23:42:24Z,- jyaymie submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1181693537) at 2022-11-15 03:42 PM PST -jyaymie,2022-11-23T03:18:15Z,- jyaymie commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1324500264) at 2022-11-22 07:18 PM PST -jyaymie,2022-11-23T19:35:15Z,- jyaymie submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1192185546) at 2022-11-23 11:35 AM PST -jyaymie,2022-11-23T19:52:13Z,- jyaymie submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1192200951) at 2022-11-23 11:52 AM PST -jyaymie,2022-11-27T19:36:47Z,- jyaymie unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-11-27 11:36 AM PST -jyaymie,2022-11-28T04:48:31Z,- jyaymie commented on pull request: [3749](https://github.com/hackforla/website/pull/3749#issuecomment-1328533655) at 2022-11-27 08:48 PM PST -jyaymie,2022-11-28T05:19:40Z,- jyaymie submitted pull request review: [3749](https://github.com/hackforla/website/pull/3749#pullrequestreview-1195219727) at 2022-11-27 09:19 PM PST -jyaymie,2022-11-29T21:14:23Z,- jyaymie commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1331317658) at 2022-11-29 01:14 PM PST -jyaymie,2022-11-29T21:19:15Z,- jyaymie submitted pull request review: [3753](https://github.com/hackforla/website/pull/3753#pullrequestreview-1198369424) at 2022-11-29 01:19 PM PST -jyaymie,2022-11-29T22:59:40Z,- jyaymie assigned to issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1330824787) at 2022-11-29 02:59 PM PST -jyaymie,2022-11-29T23:01:06Z,- jyaymie commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1331426760) at 2022-11-29 03:01 PM PST -jyaymie,2022-11-30T04:10:57Z,- jyaymie commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1331620548) at 2022-11-29 08:10 PM PST -jyaymie,2022-12-16T20:50:19Z,- jyaymie commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1355588828) at 2022-12-16 12:50 PM PST -jyaymie,2023-01-09T22:19:32Z,- jyaymie opened pull request: [3801](https://github.com/hackforla/website/pull/3801) at 2023-01-09 02:19 PM PST -jyaymie,2023-01-09T22:28:36Z,- jyaymie commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1376420554) at 2023-01-09 02:28 PM PST -jyaymie,2023-01-09T22:33:25Z,- jyaymie submitted pull request review: [3799](https://github.com/hackforla/website/pull/3799#pullrequestreview-1241295973) at 2023-01-09 02:33 PM PST -jyaymie,2023-01-09T22:34:50Z,- jyaymie commented on pull request: [3800](https://github.com/hackforla/website/pull/3800#issuecomment-1376427702) at 2023-01-09 02:34 PM PST -jyaymie,2023-01-09T22:41:04Z,- jyaymie submitted pull request review: [3800](https://github.com/hackforla/website/pull/3800#pullrequestreview-1241303019) at 2023-01-09 02:41 PM PST -jyaymie,2023-01-09T22:42:11Z,- jyaymie submitted pull request review: [3800](https://github.com/hackforla/website/pull/3800#pullrequestreview-1241303833) at 2023-01-09 02:42 PM PST -jyaymie,2023-01-11T02:16:26Z,- jyaymie commented on pull request: [3807](https://github.com/hackforla/website/pull/3807#issuecomment-1378156701) at 2023-01-10 06:16 PM PST -jyaymie,2023-01-11T02:18:53Z,- jyaymie submitted pull request review: [3807](https://github.com/hackforla/website/pull/3807#pullrequestreview-1243206471) at 2023-01-10 06:18 PM PST -jyaymie,2023-01-11T02:19:52Z,- jyaymie commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378158756) at 2023-01-10 06:19 PM PST -jyaymie,2023-01-11T02:32:34Z,- jyaymie submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1243213798) at 2023-01-10 06:32 PM PST -jyaymie,2023-01-11T02:49:09Z,- jyaymie commented on pull request: [3806](https://github.com/hackforla/website/pull/3806#issuecomment-1378174618) at 2023-01-10 06:49 PM PST -jyaymie,2023-01-11T03:00:15Z,- jyaymie submitted pull request review: [3806](https://github.com/hackforla/website/pull/3806#pullrequestreview-1243229117) at 2023-01-10 07:00 PM PST -jyaymie,2023-01-11T03:21:57Z,- jyaymie commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378193836) at 2023-01-10 07:21 PM PST -jyaymie,2023-01-11T06:53:03Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378310835) at 2023-01-10 10:53 PM PST -jyaymie,2023-01-11T07:07:23Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378321175) at 2023-01-10 11:07 PM PST -jyaymie,2023-01-11T21:09:13Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379486772) at 2023-01-11 01:09 PM PST -jyaymie,2023-01-11T21:11:37Z,- jyaymie submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1244618743) at 2023-01-11 01:11 PM PST -jyaymie,2023-01-11T22:45:16Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379579390) at 2023-01-11 02:45 PM PST -jyaymie,2023-01-12T02:39:39Z,- jyaymie pull request merged: [3801](https://github.com/hackforla/website/pull/3801#event-8207120218) at 2023-01-11 06:39 PM PST -jyaymie,2023-01-15T10:15:56Z,- jyaymie assigned to issue: [3701](https://github.com/hackforla/website/issues/3701#event-7819340305) at 2023-01-15 02:15 AM PST -jyaymie,2023-01-15T10:19:02Z,- jyaymie commented on issue: [3701](https://github.com/hackforla/website/issues/3701#issuecomment-1383111960) at 2023-01-15 02:19 AM PST -jyaymie,2023-01-17T06:56:51Z,- jyaymie opened pull request: [3833](https://github.com/hackforla/website/pull/3833) at 2023-01-16 10:56 PM PST -jyaymie,2023-01-17T15:52:50Z,- jyaymie commented on pull request: [3832](https://github.com/hackforla/website/pull/3832#issuecomment-1385636670) at 2023-01-17 07:52 AM PST -jyaymie,2023-01-17T15:54:22Z,- jyaymie submitted pull request review: [3832](https://github.com/hackforla/website/pull/3832#pullrequestreview-1251832684) at 2023-01-17 07:54 AM PST -jyaymie,2023-01-17T19:35:32Z,- jyaymie commented on pull request: [3834](https://github.com/hackforla/website/pull/3834#issuecomment-1385947709) at 2023-01-17 11:35 AM PST -jyaymie,2023-01-17T19:39:27Z,- jyaymie submitted pull request review: [3834](https://github.com/hackforla/website/pull/3834#pullrequestreview-1252328150) at 2023-01-17 11:39 AM PST -jyaymie,2023-01-17T19:41:02Z,- jyaymie commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1385953978) at 2023-01-17 11:41 AM PST -jyaymie,2023-01-17T19:43:19Z,- jyaymie submitted pull request review: [3835](https://github.com/hackforla/website/pull/3835#pullrequestreview-1252338829) at 2023-01-17 11:43 AM PST -jyaymie,2023-01-17T19:44:25Z,- jyaymie commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1385957600) at 2023-01-17 11:44 AM PST -jyaymie,2023-01-17T19:51:38Z,- jyaymie submitted pull request review: [3836](https://github.com/hackforla/website/pull/3836#pullrequestreview-1252357529) at 2023-01-17 11:51 AM PST -jyaymie,2023-01-18T01:00:30Z,- jyaymie pull request merged: [3833](https://github.com/hackforla/website/pull/3833#event-8251200847) at 2023-01-17 05:00 PM PST -jyaymie,2023-01-18T03:37:32Z,- jyaymie commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1386438090) at 2023-01-17 07:37 PM PST -jyaymie,2023-01-18T05:51:58Z,- jyaymie submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1252865373) at 2023-01-17 09:51 PM PST -jyaymie,2023-02-07T23:35:41Z,- jyaymie commented on pull request: [3940](https://github.com/hackforla/website/pull/3940#issuecomment-1421643473) at 2023-02-07 03:35 PM PST -jyaymie,2023-02-07T23:44:53Z,- jyaymie submitted pull request review: [3940](https://github.com/hackforla/website/pull/3940#pullrequestreview-1288175562) at 2023-02-07 03:44 PM PST -jyaymie,2023-02-07T23:47:28Z,- jyaymie commented on pull request: [3954](https://github.com/hackforla/website/pull/3954#issuecomment-1421659093) at 2023-02-07 03:47 PM PST -jyaymie,2023-02-07T23:54:50Z,- jyaymie submitted pull request review: [3954](https://github.com/hackforla/website/pull/3954#pullrequestreview-1288197700) at 2023-02-07 03:54 PM PST -jyaymie,2023-02-07T23:56:33Z,- jyaymie assigned to issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-02-07 03:56 PM PST -jyaymie,2023-02-07T23:56:40Z,- jyaymie unassigned from issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-02-07 03:56 PM PST -jyaymie,2023-02-07T23:57:43Z,- jyaymie commented on pull request: [3947](https://github.com/hackforla/website/pull/3947#issuecomment-1421666661) at 2023-02-07 03:57 PM PST -jyaymie,2023-02-08T00:17:15Z,- jyaymie submitted pull request review: [3947](https://github.com/hackforla/website/pull/3947#pullrequestreview-1288237082) at 2023-02-07 04:17 PM PST -k-cardon,7326,SKILLS ISSUE -k-cardon,2024-08-21T02:56:24Z,- k-cardon opened issue: [7326](https://github.com/hackforla/website/issues/7326) at 2024-08-20 07:56 PM PDT -k-cardon,2024-08-21T02:56:29Z,- k-cardon assigned to issue: [7326](https://github.com/hackforla/website/issues/7326) at 2024-08-20 07:56 PM PDT -k-cardon,2024-08-21T04:28:21Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2300867746) at 2024-08-20 09:28 PM PDT -k-cardon,2024-08-21T04:30:54Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2300885439) at 2024-08-20 09:30 PM PDT -k-cardon,2024-08-23T05:29:34Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2306320992) at 2024-08-22 10:29 PM PDT -k-cardon,2024-08-23T05:45:59Z,- k-cardon assigned to issue: [7172](https://github.com/hackforla/website/issues/7172) at 2024-08-22 10:45 PM PDT -k-cardon,2024-08-23T05:52:52Z,- k-cardon commented on issue: [7172](https://github.com/hackforla/website/issues/7172#issuecomment-2306343216) at 2024-08-22 10:52 PM PDT -k-cardon,2024-08-23T05:53:17Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2306343526) at 2024-08-22 10:53 PM PDT -k-cardon,2024-08-24T05:33:28Z,- k-cardon opened pull request: [7348](https://github.com/hackforla/website/pull/7348) at 2024-08-23 10:33 PM PDT -k-cardon,2024-08-25T15:40:34Z,- k-cardon pull request merged: [7348](https://github.com/hackforla/website/pull/7348#event-14004649695) at 2024-08-25 08:40 AM PDT -k-cardon,2024-08-25T17:45:09Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2308938088) at 2024-08-25 10:45 AM PDT -k-cardon,2024-08-26T04:43:44Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2309304171) at 2024-08-25 09:43 PM PDT -k-cardon,2024-08-26T05:08:26Z,- k-cardon commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2309327389) at 2024-08-25 10:08 PM PDT -k-cardon,2024-08-26T05:09:12Z,- k-cardon submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2259751908) at 2024-08-25 10:09 PM PDT -k-cardon,2024-08-26T05:11:20Z,- k-cardon assigned to issue: [7242](https://github.com/hackforla/website/issues/7242) at 2024-08-25 10:11 PM PDT -k-cardon,2024-08-29T04:15:15Z,- k-cardon commented on issue: [7242](https://github.com/hackforla/website/issues/7242#issuecomment-2316680724) at 2024-08-28 09:15 PM PDT -k-cardon,2024-08-29T05:14:18Z,- k-cardon opened pull request: [7364](https://github.com/hackforla/website/pull/7364) at 2024-08-28 10:14 PM PDT -k-cardon,2024-08-29T16:56:24Z,- k-cardon commented on pull request: [7365](https://github.com/hackforla/website/pull/7365#issuecomment-2318374174) at 2024-08-29 09:56 AM PDT -k-cardon,2024-08-29T16:56:48Z,- k-cardon submitted pull request review: [7365](https://github.com/hackforla/website/pull/7365#pullrequestreview-2269525930) at 2024-08-29 09:56 AM PDT -k-cardon,2024-08-29T16:59:18Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318381676) at 2024-08-29 09:59 AM PDT -k-cardon,2024-08-29T17:00:31Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318384557) at 2024-08-29 10:00 AM PDT -k-cardon,2024-08-29T17:01:46Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318387323) at 2024-08-29 10:01 AM PDT -k-cardon,2024-08-29T17:03:02Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318389980) at 2024-08-29 10:03 AM PDT -k-cardon,2024-08-29T23:37:22Z,- k-cardon pull request merged: [7364](https://github.com/hackforla/website/pull/7364#event-14072265556) at 2024-08-29 04:37 PM PDT -k-cardon,2024-08-30T01:03:08Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2319595312) at 2024-08-29 06:03 PM PDT -k-cardon,2024-08-30T02:07:32Z,- k-cardon assigned to issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2264072165) at 2024-08-29 07:07 PM PDT -k-cardon,2024-09-04T19:44:54Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2329842623) at 2024-09-04 12:44 PM PDT -k-cardon,2024-09-04T19:45:29Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2329843557) at 2024-09-04 12:45 PM PDT -k-cardon,2024-09-04T20:44:33Z,- k-cardon submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2281228377) at 2024-09-04 01:44 PM PDT -k-cardon,2024-09-04T20:46:09Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2329967548) at 2024-09-04 01:46 PM PDT -k-cardon,2024-09-04T21:02:11Z,- k-cardon submitted pull request review: [7370](https://github.com/hackforla/website/pull/7370#pullrequestreview-2281346494) at 2024-09-04 02:02 PM PDT -k-cardon,2024-09-04T21:03:27Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330093787) at 2024-09-04 02:03 PM PDT -k-cardon,2024-09-04T21:25:44Z,- k-cardon submitted pull request review: [7371](https://github.com/hackforla/website/pull/7371#pullrequestreview-2281429520) at 2024-09-04 02:25 PM PDT -k-cardon,2024-09-04T21:26:37Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330175888) at 2024-09-04 02:26 PM PDT -k-cardon,2024-09-04T21:38:49Z,- k-cardon opened issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:38 PM PDT -k-cardon,2024-09-04T21:38:49Z,- k-cardon opened issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:38 PM PDT -k-cardon,2024-09-04T21:42:21Z,- k-cardon assigned to issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:42 PM PDT -k-cardon,2024-09-04T21:44:39Z,- k-cardon opened issue: [7387](https://github.com/hackforla/website/issues/7387) at 2024-09-04 02:44 PM PDT -k-cardon,2024-09-04T21:47:08Z,- k-cardon opened issue: [7388](https://github.com/hackforla/website/issues/7388) at 2024-09-04 02:47 PM PDT -k-cardon,2024-09-04T21:49:27Z,- k-cardon opened issue: [7389](https://github.com/hackforla/website/issues/7389) at 2024-09-04 02:49 PM PDT -k-cardon,2024-09-04T21:51:45Z,- k-cardon opened issue: [7390](https://github.com/hackforla/website/issues/7390) at 2024-09-04 02:51 PM PDT -k-cardon,2024-09-04T21:54:05Z,- k-cardon opened issue: [7391](https://github.com/hackforla/website/issues/7391) at 2024-09-04 02:54 PM PDT -k-cardon,2024-09-04T21:56:53Z,- k-cardon opened issue: [7392](https://github.com/hackforla/website/issues/7392) at 2024-09-04 02:56 PM PDT -k-cardon,2024-09-04T21:59:22Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2330216647) at 2024-09-04 02:59 PM PDT -k-cardon,2024-09-04T22:07:04Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2330237272) at 2024-09-04 03:07 PM PDT -k-cardon,2024-09-04T22:11:14Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330242379) at 2024-09-04 03:11 PM PDT -k-cardon,2024-09-10T05:14:51Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2339638400) at 2024-09-09 10:14 PM PDT -k-cardon,2024-09-10T05:16:00Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2339639746) at 2024-09-09 10:16 PM PDT -k-cardon,2024-09-17T20:47:19Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356901885) at 2024-09-17 01:47 PM PDT -k-cardon,2024-09-17T21:01:42Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2356929332) at 2024-09-17 02:01 PM PDT -k-cardon,2024-09-17T21:04:43Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356933998) at 2024-09-17 02:04 PM PDT -k-cardon,2024-09-17T21:25:31Z,- k-cardon submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2311098936) at 2024-09-17 02:25 PM PDT -k-cardon,2024-09-17T21:34:24Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356976525) at 2024-09-17 02:34 PM PDT -k-cardon,2024-09-18T17:50:31Z,- k-cardon submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2313379226) at 2024-09-18 10:50 AM PDT -k-cardon,2024-09-20T02:13:12Z,- k-cardon assigned to issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:17Z,- k-cardon assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2351429241) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:29Z,- k-cardon unassigned from issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:29Z,- k-cardon unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2351429241) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:18:33Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2362574636) at 2024-09-19 07:18 PM PDT -k-cardon,2024-09-20T02:52:24Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362652176) at 2024-09-19 07:52 PM PDT -k-cardon,2024-09-20T02:58:37Z,- k-cardon assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362652176) at 2024-09-19 07:58 PM PDT -k-cardon,2024-09-24T17:17:57Z,- k-cardon submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2325910232) at 2024-09-24 10:17 AM PDT -k-cardon,2024-09-24T17:23:16Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2371885036) at 2024-09-24 10:23 AM PDT -k-cardon,2024-09-24T17:34:30Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371906814) at 2024-09-24 10:34 AM PDT -k-cardon,2024-09-24T17:36:38Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-09-24 10:36 AM PDT -k-cardon,2024-09-24T17:36:46Z,- k-cardon unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-09-24 10:36 AM PDT -k-cardon,2024-09-25T17:37:12Z,- k-cardon submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2329029009) at 2024-09-25 10:37 AM PDT -k-cardon,2024-09-25T17:38:31Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2374749409) at 2024-09-25 10:38 AM PDT -k-cardon,2024-09-25T17:41:03Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2374755285) at 2024-09-25 10:41 AM PDT -k-cardon,2024-09-26T05:46:11Z,- k-cardon submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2330174051) at 2024-09-25 10:46 PM PDT -k-cardon,2024-10-07T21:29:58Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2397934963) at 2024-10-07 02:29 PM PDT -k-cardon,2024-10-11T02:18:10Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2406408474) at 2024-10-10 07:18 PM PDT -k-cardon,2024-10-11T04:54:59Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2361956733) at 2024-10-10 09:54 PM PDT -k-cardon,2024-10-11T05:00:13Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2406557368) at 2024-10-10 10:00 PM PDT -k-cardon,2024-10-16T04:42:01Z,- k-cardon commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2415718571) at 2024-10-15 09:42 PM PDT -k-cardon,2024-10-16T21:36:33Z,- k-cardon submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2373730084) at 2024-10-16 02:36 PM PDT -k-cardon,2024-10-16T21:38:12Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2418011584) at 2024-10-16 02:38 PM PDT -k-cardon,2024-10-16T21:41:00Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2418015768) at 2024-10-16 02:41 PM PDT -k-cardon,2024-10-20T19:32:05Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2425188740) at 2024-10-20 12:32 PM PDT -k-cardon,2024-10-21T04:04:29Z,- k-cardon submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2380876096) at 2024-10-20 09:04 PM PDT -k-cardon,2024-10-23T20:54:03Z,- k-cardon commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2433445438) at 2024-10-23 01:54 PM PDT -k-cardon,2024-10-25T01:48:48Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394000113) at 2024-10-24 06:48 PM PDT -k-cardon,2024-10-25T01:53:10Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394009605) at 2024-10-24 06:53 PM PDT -k-cardon,2024-10-25T01:56:40Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394012095) at 2024-10-24 06:56 PM PDT -k-cardon,2024-10-25T01:59:03Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2436652917) at 2024-10-24 06:59 PM PDT -k-cardon,2024-10-25T02:23:14Z,- k-cardon assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1972279146) at 2024-10-24 07:23 PM PDT -k-cardon,2024-10-25T02:27:52Z,- k-cardon unassigned from issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436684617) at 2024-10-24 07:27 PM PDT -k-cardon,2024-10-25T02:42:56Z,- k-cardon assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436696961) at 2024-10-24 07:42 PM PDT -k-cardon,2024-10-25T02:46:38Z,- k-cardon commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436700371) at 2024-10-24 07:46 PM PDT -k-cardon,2024-10-27T17:55:43Z,- k-cardon commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2440117396) at 2024-10-27 10:55 AM PDT -k-cardon,2024-10-28T17:21:21Z,- k-cardon opened issue: [7642](https://github.com/hackforla/website/issues/7642) at 2024-10-28 10:21 AM PDT -k-cardon,2024-10-28T23:17:37Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2400421230) at 2024-10-28 04:17 PM PDT -k-cardon,2024-10-30T22:20:43Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2448566533) at 2024-10-30 03:20 PM PDT -k-cardon,2024-11-08T17:39:56Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2465408882) at 2024-11-08 09:39 AM PST -k-cardon,2024-11-14T20:09:11Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477315233) at 2024-11-14 12:09 PM PST -k-cardon,2024-11-15T03:16:19Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477870981) at 2024-11-14 07:16 PM PST -k-cardon,2024-11-17T18:12:22Z,- k-cardon assigned to issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2257389832) at 2024-11-17 10:12 AM PST -k-cardon,2024-11-19T19:58:42Z,- k-cardon commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2486630015) at 2024-11-19 11:58 AM PST -k-cardon,2024-11-22T22:31:56Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2494980968) at 2024-11-22 02:31 PM PST -k-cardon,2024-12-01T15:47:14Z,- k-cardon commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2509841867) at 2024-12-01 07:47 AM PST -k-cardon,2025-01-06T05:58:47Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2572337232) at 2025-01-05 09:58 PM PST -k-cardon,2025-01-10T03:10:41Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2541467929) at 2025-01-09 07:10 PM PST -k-cardon,2025-01-19T22:57:09Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2561111279) at 2025-01-19 02:57 PM PST -k-cardon,2025-01-19T22:58:20Z,- k-cardon commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2601055956) at 2025-01-19 02:58 PM PST -k-cardon,2025-01-22T05:20:50Z,- k-cardon submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2566213477) at 2025-01-21 09:20 PM PST -k-cardon,2025-01-22T05:21:47Z,- k-cardon closed issue by PR 7834: [7751](https://github.com/hackforla/website/issues/7751#event-16023554056) at 2025-01-21 09:21 PM PST -k-cardon,2025-01-22T05:42:04Z,- k-cardon submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2566235447) at 2025-01-21 09:42 PM PST -k-cardon,2025-01-22T05:42:18Z,- k-cardon closed issue by PR 7822: [7433](https://github.com/hackforla/website/issues/7433#event-16023690630) at 2025-01-21 09:42 PM PST -k-cardon,2025-01-31T19:42:54Z,- k-cardon closed issue as completed: [6327](https://github.com/hackforla/website/issues/6327#event-16144900751) at 2025-01-31 11:42 AM PST -k-cardon,2025-02-12T05:43:39Z,- k-cardon submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2610873295) at 2025-02-11 09:43 PM PST -k-cardon,2025-02-12T05:45:12Z,- k-cardon closed issue by PR 7897: [7495](https://github.com/hackforla/website/issues/7495#event-16275286375) at 2025-02-11 09:45 PM PST -k-cardon,2025-04-01T15:45:55Z,- k-cardon unassigned from issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2486630015) at 2025-04-01 08:45 AM PDT -k-rewd,4981,SKILLS ISSUE -k-rewd,2023-07-18T01:57:20Z,- k-rewd opened issue: [4981](https://github.com/hackforla/website/issues/4981) at 2023-07-17 06:57 PM PDT -k-rewd,2023-07-18T03:07:59Z,- k-rewd assigned to issue: [4981](https://github.com/hackforla/website/issues/4981) at 2023-07-17 08:07 PM PDT -k-rewd,2023-07-21T20:56:17Z,- k-rewd assigned to issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1645996006) at 2023-07-21 01:56 PM PDT -k-rewd,2023-07-21T21:00:22Z,- k-rewd commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646234553) at 2023-07-21 02:00 PM PDT -k-rewd,2023-07-21T21:49:47Z,- k-rewd opened pull request: [5046](https://github.com/hackforla/website/pull/5046) at 2023-07-21 02:49 PM PDT -k-rewd,2023-07-22T11:58:51Z,- k-rewd unassigned from issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:58 AM PDT -k-rewd,2023-07-22T12:06:34Z,- k-rewd pull request closed w/o merging: [5046](https://github.com/hackforla/website/pull/5046#event-9891016238) at 2023-07-22 05:06 AM PDT -k-rewd,2023-07-24T20:37:08Z,- k-rewd assigned to issue: [5038](https://github.com/hackforla/website/issues/5038) at 2023-07-24 01:37 PM PDT -k-rewd,2023-07-24T20:39:21Z,- k-rewd commented on issue: [5038](https://github.com/hackforla/website/issues/5038#issuecomment-1648572189) at 2023-07-24 01:39 PM PDT -k-rewd,2023-07-24T22:12:27Z,- k-rewd opened pull request: [5058](https://github.com/hackforla/website/pull/5058) at 2023-07-24 03:12 PM PDT -k-rewd,2023-07-29T00:56:31Z,- k-rewd commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1656495612) at 2023-07-28 05:56 PM PDT -k-rewd,2023-07-29T21:04:40Z,- k-rewd commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1656893460) at 2023-07-29 02:04 PM PDT -k-rewd,2023-07-30T02:43:07Z,- k-rewd pull request merged: [5058](https://github.com/hackforla/website/pull/5058#event-9955918991) at 2023-07-29 07:43 PM PDT -k-rewd,2023-08-04T05:27:59Z,- k-rewd assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1644675439) at 2023-08-03 10:27 PM PDT -k-rewd,2023-08-04T05:34:22Z,- k-rewd commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-08-03 10:34 PM PDT -k-rewd,2023-08-08T21:23:54Z,- k-rewd unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-08-08 02:23 PM PDT -k-rewd,2023-08-16T02:32:08Z,- k-rewd submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579710435) at 2023-08-15 07:32 PM PDT -k-rewd,2023-08-21T21:46:53Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1687089268) at 2023-08-21 02:46 PM PDT -k-rewd,2023-08-21T21:47:38Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1687090002) at 2023-08-21 02:47 PM PDT -k-rewd,2023-08-21T21:47:38Z,- k-rewd closed issue as completed: [4981](https://github.com/hackforla/website/issues/4981#event-10150957928) at 2023-08-21 02:47 PM PDT -k-rewd,2023-08-24T06:33:56Z,- k-rewd submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1592870327) at 2023-08-23 11:33 PM PDT -k-rewd,2023-08-24T06:39:12Z,- k-rewd submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1592877029) at 2023-08-23 11:39 PM PDT -k-rewd,2023-09-01T00:55:54Z,- k-rewd assigned to issue: [5316](https://github.com/hackforla/website/issues/5316) at 2023-08-31 05:55 PM PDT -k-rewd,2023-09-01T00:57:52Z,- k-rewd commented on issue: [5316](https://github.com/hackforla/website/issues/5316#issuecomment-1701965570) at 2023-08-31 05:57 PM PDT -k-rewd,2023-09-05T20:39:12Z,- k-rewd opened pull request: [5449](https://github.com/hackforla/website/pull/5449) at 2023-09-05 01:39 PM PDT -k-rewd,2023-09-07T06:26:16Z,- k-rewd pull request merged: [5449](https://github.com/hackforla/website/pull/5449#event-10303249885) at 2023-09-06 11:26 PM PDT -k-rewd,2023-09-07T07:18:38Z,- k-rewd assigned to issue: [5388](https://github.com/hackforla/website/issues/5388) at 2023-09-07 12:18 AM PDT -k-rewd,2023-09-23T05:48:31Z,- k-rewd assigned to issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1709169745) at 2023-09-22 10:48 PM PDT -k-rewd,2023-09-23T05:49:51Z,- k-rewd commented on issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1732223098) at 2023-09-22 10:49 PM PDT -k-rewd,2023-09-24T16:57:39Z,- k-rewd unassigned from issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1730911314) at 2023-09-24 09:57 AM PDT -k-rewd,2023-09-25T05:19:34Z,- k-rewd opened pull request: [5580](https://github.com/hackforla/website/pull/5580) at 2023-09-24 10:19 PM PDT -k-rewd,2023-09-26T02:29:35Z,- k-rewd pull request merged: [5580](https://github.com/hackforla/website/pull/5580#event-10469251401) at 2023-09-25 07:29 PM PDT -k-rewd,2023-09-27T07:21:36Z,- k-rewd submitted pull request review: [5612](https://github.com/hackforla/website/pull/5612#pullrequestreview-1645772913) at 2023-09-27 12:21 AM PDT -k-rewd,2023-10-13T20:39:22Z,- k-rewd submitted pull request review: [5701](https://github.com/hackforla/website/pull/5701#pullrequestreview-1677318709) at 2023-10-13 01:39 PM PDT -k-rewd,2023-10-13T21:03:15Z,- k-rewd submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1677369783) at 2023-10-13 02:03 PM PDT -k-rewd,2023-10-14T19:42:08Z,- k-rewd submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1678418958) at 2023-10-14 12:42 PM PDT -k-rewd,2023-11-17T23:41:50Z,- k-rewd assigned to issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1518912153) at 2023-11-17 03:41 PM PST -k-rewd,2023-11-17T23:43:35Z,- k-rewd commented on issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1817258331) at 2023-11-17 03:43 PM PST -k-rewd,2023-11-25T00:22:21Z,- k-rewd opened pull request: [5935](https://github.com/hackforla/website/pull/5935) at 2023-11-24 04:22 PM PST -k-rewd,2023-11-25T23:25:54Z,- k-rewd commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826441511) at 2023-11-25 03:25 PM PST -k-rewd,2023-11-26T22:55:26Z,- k-rewd pull request merged: [5935](https://github.com/hackforla/website/pull/5935#event-11064360171) at 2023-11-26 02:55 PM PST -k-rewd,2023-11-28T09:56:37Z,- k-rewd assigned to issue: [5739](https://github.com/hackforla/website/issues/5739) at 2023-11-28 01:56 AM PST -k-rewd,2023-11-28T09:57:52Z,- k-rewd commented on issue: [5739](https://github.com/hackforla/website/issues/5739#issuecomment-1829475878) at 2023-11-28 01:57 AM PST -k-rewd,2024-02-06T21:29:00Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1930781281) at 2024-02-06 01:29 PM PST -kabszac,5487,SKILLS ISSUE -kabszac,2023-09-12T03:34:18Z,- kabszac opened issue: [5487](https://github.com/hackforla/website/issues/5487) at 2023-09-11 08:34 PM PDT -kabszac,2023-09-12T03:34:27Z,- kabszac assigned to issue: [5487](https://github.com/hackforla/website/issues/5487) at 2023-09-11 08:34 PM PDT -kabszac,2023-09-16T09:33:01Z,- kabszac assigned to issue: [5426](https://github.com/hackforla/website/issues/5426#issuecomment-1704039097) at 2023-09-16 02:33 AM PDT -kabszac,2023-09-16T10:01:44Z,- kabszac commented on issue: [5426](https://github.com/hackforla/website/issues/5426#issuecomment-1722193743) at 2023-09-16 03:01 AM PDT -kabszac,2023-09-16T10:37:52Z,- kabszac opened pull request: [5543](https://github.com/hackforla/website/pull/5543) at 2023-09-16 03:37 AM PDT -kabszac,2023-09-19T02:59:27Z,- kabszac pull request merged: [5543](https://github.com/hackforla/website/pull/5543#event-10405162334) at 2023-09-18 07:59 PM PDT -kabszac,2023-09-19T08:06:46Z,- kabszac assigned to issue: [5323](https://github.com/hackforla/website/issues/5323) at 2023-09-19 01:06 AM PDT -kabszac,2023-09-20T02:57:56Z,- kabszac commented on issue: [5323](https://github.com/hackforla/website/issues/5323#issuecomment-1726806107) at 2023-09-19 07:57 PM PDT -kabszac,2023-09-20T03:59:57Z,- kabszac opened pull request: [5560](https://github.com/hackforla/website/pull/5560) at 2023-09-19 08:59 PM PDT -kabszac,2023-09-21T18:11:46Z,- kabszac commented on pull request: [5560](https://github.com/hackforla/website/pull/5560#issuecomment-1730070189) at 2023-09-21 11:11 AM PDT -kabszac,2023-09-24T16:01:20Z,- kabszac pull request merged: [5560](https://github.com/hackforla/website/pull/5560#event-10455465233) at 2023-09-24 09:01 AM PDT -kabszac,2023-09-27T04:42:24Z,- kabszac assigned to issue: [5598](https://github.com/hackforla/website/issues/5598) at 2023-09-26 09:42 PM PDT -kabszac,2023-09-27T17:06:25Z,- kabszac submitted pull request review: [5585](https://github.com/hackforla/website/pull/5585#pullrequestreview-1647196670) at 2023-09-27 10:06 AM PDT -kabszac,2023-09-30T05:05:20Z,- kabszac commented on issue: [5598](https://github.com/hackforla/website/issues/5598#issuecomment-1741679777) at 2023-09-29 10:05 PM PDT -kabszac,2023-10-02T06:34:58Z,- kabszac commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1742468809) at 2023-10-01 11:34 PM PDT -kabszac,2023-10-02T06:43:55Z,- kabszac commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1742476659) at 2023-10-01 11:43 PM PDT -kabszac,2023-10-06T04:23:55Z,- kabszac commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1749964332) at 2023-10-05 09:23 PM PDT -kabszac,2023-10-06T04:25:34Z,- kabszac submitted pull request review: [5643](https://github.com/hackforla/website/pull/5643#pullrequestreview-1661094224) at 2023-10-05 09:25 PM PDT -kabszac,2023-10-07T03:06:34Z,- kabszac submitted pull request review: [5643](https://github.com/hackforla/website/pull/5643#pullrequestreview-1662986625) at 2023-10-06 08:06 PM PDT -kabszac,2024-10-25T10:40:21Z,- kabszac submitted pull request review: [7634](https://github.com/hackforla/website/pull/7634#pullrequestreview-2394911351) at 2024-10-25 03:40 AM PDT -kabszac,2024-10-25T11:28:33Z,- kabszac commented on pull request: [7634](https://github.com/hackforla/website/pull/7634#issuecomment-2437542886) at 2024-10-25 04:28 AM PDT -kabszac,2024-10-26T04:22:18Z,- kabszac submitted pull request review: [7634](https://github.com/hackforla/website/pull/7634#pullrequestreview-2397046686) at 2024-10-25 09:22 PM PDT -kadamrahul18,8032,SKILLS ISSUE -kadamrahul18,2025-04-01T03:17:17Z,- kadamrahul18 opened issue: [8032](https://github.com/hackforla/website/issues/8032) at 2025-03-31 08:17 PM PDT -kadamrahul18,2025-04-01T03:20:09Z,- kadamrahul18 assigned to issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2767965891) at 2025-03-31 08:20 PM PDT -KalpanaTA,3245,SKILLS ISSUE -KalpanaTA,2022-06-14T03:44:43Z,- KalpanaTA opened issue: [3245](https://github.com/hackforla/website/issues/3245) at 2022-06-13 08:44 PM PDT -KalpanaTA,2022-06-24T00:28:01Z,- KalpanaTA commented on issue: [3245](https://github.com/hackforla/website/issues/3245#issuecomment-1165041193) at 2022-06-23 05:28 PM PDT -kalyaniraman,2022-03-12T17:22:23Z,- kalyaniraman commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924193) at 2022-03-12 10:22 AM PDT -kalyaniraman,2022-03-12T17:24:15Z,- kalyaniraman commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924636) at 2022-03-12 10:24 AM PDT -kalyaniraman,2022-04-12T18:45:46Z,- kalyaniraman commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1097084236) at 2022-04-12 11:45 AM PDT -kalyaniraman,2022-04-18T19:12:38Z,- kalyaniraman commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1101674531) at 2022-04-18 12:12 PM PDT -kalyaniraman,2022-06-03T19:03:55Z,- kalyaniraman opened issue: [3217](https://github.com/hackforla/website/issues/3217) at 2022-06-03 12:03 PM PDT -kalyaniraman,2022-06-03T19:06:59Z,- kalyaniraman commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1146276918) at 2022-06-03 12:06 PM PDT -kalyaniraman,2022-06-13T20:15:58Z,- kalyaniraman commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1154386071) at 2022-06-13 01:15 PM PDT -KamakshiOjha,2023-09-08T04:57:47Z,- KamakshiOjha commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1711075060) at 2023-09-07 09:57 PM PDT -Kamalaprasaad,6420,SKILLS ISSUE -Kamalaprasaad,2024-03-05T03:34:09Z,- Kamalaprasaad opened issue: [6420](https://github.com/hackforla/website/issues/6420) at 2024-03-04 07:34 PM PST -Kamalaprasaad,2024-03-05T03:52:34Z,- Kamalaprasaad assigned to issue: [6420](https://github.com/hackforla/website/issues/6420) at 2024-03-04 07:52 PM PST -Kamalaprasaad,2024-04-15T16:37:05Z,- Kamalaprasaad closed issue as completed: [6420](https://github.com/hackforla/website/issues/6420#event-12473689208) at 2024-04-15 09:37 AM PDT -kanhadharmikk,2023-03-20T09:48:16Z,- kanhadharmikk opened pull request: [4217](https://github.com/hackforla/website/pull/4217) at 2023-03-20 02:48 AM PDT -kanhadharmikk,2023-03-20T10:14:35Z,- kanhadharmikk opened pull request: [4218](https://github.com/hackforla/website/pull/4218) at 2023-03-20 03:14 AM PDT -kanhadharmikk,2023-03-20T16:58:07Z,- kanhadharmikk pull request closed w/o merging: [4218](https://github.com/hackforla/website/pull/4218#event-8797092661) at 2023-03-20 09:58 AM PDT -kanhadharmikk,2023-03-20T17:03:52Z,- kanhadharmikk pull request closed w/o merging: [4217](https://github.com/hackforla/website/pull/4217#event-8797158334) at 2023-03-20 10:03 AM PDT -karengcecena,4072,SKILLS ISSUE -karengcecena,2023-03-01T04:28:47Z,- karengcecena opened issue: [4072](https://github.com/hackforla/website/issues/4072) at 2023-02-28 08:28 PM PST -karengcecena,2023-03-01T21:43:58Z,- karengcecena assigned to issue: [4072](https://github.com/hackforla/website/issues/4072) at 2023-03-01 01:43 PM PST -karengcecena,2023-03-05T15:50:33Z,- karengcecena assigned to issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1454852886) at 2023-03-05 07:50 AM PST -karengcecena,2023-03-05T16:13:45Z,- karengcecena commented on issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1455134780) at 2023-03-05 08:13 AM PST -karengcecena,2023-03-05T16:32:53Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1455139728) at 2023-03-05 08:32 AM PST -karengcecena,2023-03-05T16:47:06Z,- karengcecena opened pull request: [4114](https://github.com/hackforla/website/pull/4114) at 2023-03-05 08:47 AM PST -karengcecena,2023-03-07T00:33:25Z,- karengcecena pull request merged: [4114](https://github.com/hackforla/website/pull/4114#event-8680283053) at 2023-03-06 04:33 PM PST -karengcecena,2023-03-08T20:03:22Z,- karengcecena closed issue as completed: [4072](https://github.com/hackforla/website/issues/4072#event-8700109350) at 2023-03-08 12:03 PM PST -karengcecena,2023-03-11T21:39:12Z,- karengcecena commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1465027105) at 2023-03-11 02:39 PM PDT -karengcecena,2023-03-11T22:21:46Z,- karengcecena commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1465037212) at 2023-03-11 03:21 PM PDT -karengcecena,2023-03-14T17:01:48Z,- karengcecena assigned to issue: [4000](https://github.com/hackforla/website/issues/4000) at 2023-03-14 10:01 AM PDT -karengcecena,2023-03-14T17:19:03Z,- karengcecena opened pull request: [4179](https://github.com/hackforla/website/pull/4179) at 2023-03-14 10:19 AM PDT -karengcecena,2023-03-14T17:25:48Z,- karengcecena commented on issue: [4000](https://github.com/hackforla/website/issues/4000#issuecomment-1468523050) at 2023-03-14 10:25 AM PDT -karengcecena,2023-03-16T03:20:07Z,- karengcecena commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1471228633) at 2023-03-15 08:20 PM PDT -karengcecena,2023-03-16T03:25:47Z,- karengcecena submitted pull request review: [4176](https://github.com/hackforla/website/pull/4176#pullrequestreview-1342812172) at 2023-03-15 08:25 PM PDT -karengcecena,2023-03-16T04:22:45Z,- karengcecena pull request merged: [4179](https://github.com/hackforla/website/pull/4179#event-8762721366) at 2023-03-15 09:22 PM PDT -karengcecena,2023-03-20T00:42:56Z,- karengcecena commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1475460762) at 2023-03-19 05:42 PM PDT -karengcecena,2023-03-20T00:47:41Z,- karengcecena submitted pull request review: [4214](https://github.com/hackforla/website/pull/4214#pullrequestreview-1347640319) at 2023-03-19 05:47 PM PDT -karengcecena,2023-03-24T16:20:51Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1483073773) at 2023-03-24 09:20 AM PDT -karengcecena,2023-03-26T03:01:43Z,- karengcecena assigned to issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1480413398) at 2023-03-25 08:01 PM PDT -karengcecena,2023-03-26T03:04:51Z,- karengcecena commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1483980811) at 2023-03-25 08:04 PM PDT -karengcecena,2023-03-27T03:25:58Z,- karengcecena unassigned from issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1483980811) at 2023-03-26 08:25 PM PDT -karengcecena,2023-04-01T17:42:54Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1493055270) at 2023-04-01 10:42 AM PDT -karengcecena,2023-04-11T14:26:07Z,- karengcecena assigned to issue: [4258](https://github.com/hackforla/website/issues/4258#issuecomment-1480541719) at 2023-04-11 07:26 AM PDT -karengcecena,2023-04-11T14:27:45Z,- karengcecena commented on issue: [4258](https://github.com/hackforla/website/issues/4258#issuecomment-1503471639) at 2023-04-11 07:27 AM PDT -karengcecena,2023-04-11T17:50:30Z,- karengcecena opened pull request: [4467](https://github.com/hackforla/website/pull/4467) at 2023-04-11 10:50 AM PDT -karengcecena,2023-04-12T14:27:18Z,- karengcecena commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1505376958) at 2023-04-12 07:27 AM PDT -karengcecena,2023-04-12T14:51:00Z,- karengcecena submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1381503472) at 2023-04-12 07:51 AM PDT -karengcecena,2023-04-12T15:05:56Z,- karengcecena commented on pull request: [4472](https://github.com/hackforla/website/pull/4472#issuecomment-1505440317) at 2023-04-12 08:05 AM PDT -karengcecena,2023-04-12T15:14:43Z,- karengcecena submitted pull request review: [4472](https://github.com/hackforla/website/pull/4472#pullrequestreview-1381551389) at 2023-04-12 08:14 AM PDT -karengcecena,2023-04-13T03:12:14Z,- karengcecena pull request merged: [4467](https://github.com/hackforla/website/pull/4467#event-8992048464) at 2023-04-12 08:12 PM PDT -karengcecena,2023-04-13T16:45:45Z,- karengcecena commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1507277981) at 2023-04-13 09:45 AM PDT -karengcecena,2023-04-13T16:49:00Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1507282047) at 2023-04-13 09:49 AM PDT -karengcecena,2023-04-13T16:50:55Z,- karengcecena submitted pull request review: [4497](https://github.com/hackforla/website/pull/4497#pullrequestreview-1383838870) at 2023-04-13 09:50 AM PDT -karengcecena,2023-04-13T16:52:14Z,- karengcecena commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507285882) at 2023-04-13 09:52 AM PDT -karengcecena,2023-04-13T17:00:21Z,- karengcecena commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507300344) at 2023-04-13 10:00 AM PDT -karengcecena,2023-04-13T23:20:16Z,- karengcecena submitted pull request review: [4500](https://github.com/hackforla/website/pull/4500#pullrequestreview-1384373032) at 2023-04-13 04:20 PM PDT -karengcecena,2023-04-13T23:21:12Z,- karengcecena commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507723008) at 2023-04-13 04:21 PM PDT -karengcecena,2023-04-17T21:28:18Z,- karengcecena assigned to issue: [4469](https://github.com/hackforla/website/issues/4469) at 2023-04-17 02:28 PM PDT -karengcecena,2023-04-17T21:30:24Z,- karengcecena commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1512110486) at 2023-04-17 02:30 PM PDT -karengcecena,2023-04-19T02:45:42Z,- karengcecena submitted pull request review: [4497](https://github.com/hackforla/website/pull/4497#pullrequestreview-1391186885) at 2023-04-18 07:45 PM PDT -karengcecena,2023-04-20T21:49:28Z,- karengcecena commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1516986206) at 2023-04-20 02:49 PM PDT -karengcecena,2023-04-20T22:00:58Z,- karengcecena commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1516995724) at 2023-04-20 03:00 PM PDT -karengcecena,2023-04-21T15:35:54Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1518010051) at 2023-04-21 08:35 AM PDT -karengcecena,2023-04-24T16:52:03Z,- karengcecena submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1398445423) at 2023-04-24 09:52 AM PDT -karengcecena,2023-05-04T22:19:50Z,- karengcecena submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1413994864) at 2023-05-04 03:19 PM PDT -karengcecena,2023-05-12T20:08:13Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1546231004) at 2023-05-12 01:08 PM PDT -karengcecena,2023-05-25T14:42:03Z,- karengcecena opened issue: [4728](https://github.com/hackforla/website/issues/4728) at 2023-05-25 07:42 AM PDT -karengcecena,2023-05-25T16:00:36Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1563151767) at 2023-05-25 09:00 AM PDT -karengcecena,2023-06-02T21:03:16Z,- karengcecena commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1574312603) at 2023-06-02 02:03 PM PDT -karengcecena,2023-06-02T21:06:21Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1574315814) at 2023-06-02 02:06 PM PDT -karengcecena,2023-06-08T15:25:05Z,- karengcecena commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1582815815) at 2023-06-08 08:25 AM PDT -karengcecena,2023-06-16T17:09:30Z,- karengcecena commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1594996332) at 2023-06-16 10:09 AM PDT -karengcecena,2023-06-16T17:14:45Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1595001479) at 2023-06-16 10:14 AM PDT -karengcecena,2023-07-06T04:25:20Z,- karengcecena commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1622955849) at 2023-07-05 09:25 PM PDT -karengcecena,2023-07-06T04:27:52Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1622957858) at 2023-07-05 09:27 PM PDT -karengcecena,2023-07-21T22:35:12Z,- karengcecena commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1646308090) at 2023-07-21 03:35 PM PDT -KarinaLopez19,2022-11-03T08:37:21Z,- KarinaLopez19 opened issue: [3693](https://github.com/hackforla/website/issues/3693) at 2022-11-03 01:37 AM PDT -Karll-L,5075,SKILLS ISSUE -Karll-L,2023-07-26T03:01:53Z,- Karll-L opened issue: [5075](https://github.com/hackforla/website/issues/5075) at 2023-07-25 08:01 PM PDT -Karll-L,2023-07-26T03:53:18Z,- Karll-L assigned to issue: [5088](https://github.com/hackforla/website/issues/5088) at 2023-07-25 08:53 PM PDT -Karll-L,2023-07-26T03:53:25Z,- Karll-L unassigned from issue: [5088](https://github.com/hackforla/website/issues/5088) at 2023-07-25 08:53 PM PDT -kartiknesari,7927,SKILLS ISSUE -kartiknesari,2025-02-19T04:12:52Z,- kartiknesari opened issue: [7927](https://github.com/hackforla/website/issues/7927) at 2025-02-18 08:12 PM PST -kartiknesari,2025-02-19T04:12:52Z,- kartiknesari assigned to issue: [7927](https://github.com/hackforla/website/issues/7927) at 2025-02-18 08:12 PM PST -kartiknesari,2025-02-20T06:51:40Z,- kartiknesari commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2670611631) at 2025-02-19 10:51 PM PST -kartiknesari,2025-02-20T06:53:38Z,- kartiknesari commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2670614359) at 2025-02-19 10:53 PM PST -kate-rose,2020-01-26T21:37:12Z,- kate-rose assigned to issue: [252](https://github.com/hackforla/website/issues/252) at 2020-01-26 01:37 PM PST -kate-rose,2020-01-28T03:10:46Z,- kate-rose commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-579059154) at 2020-01-27 07:10 PM PST -kate-rose,2020-03-02T04:04:04Z,- kate-rose unassigned from issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-593208326) at 2020-03-01 08:04 PM PST -kate-rose,2020-03-25T18:08:41Z,- kate-rose commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-603999097) at 2020-03-25 11:08 AM PDT -katherinek123,4619,SKILLS ISSUE -katherinek123,2023-05-09T03:28:00Z,- katherinek123 opened issue: [4619](https://github.com/hackforla/website/issues/4619) at 2023-05-08 08:28 PM PDT -katherinek123,2023-05-09T03:49:44Z,- katherinek123 assigned to issue: [4619](https://github.com/hackforla/website/issues/4619) at 2023-05-08 08:49 PM PDT -katherinek123,2023-05-22T22:05:36Z,- katherinek123 assigned to issue: [4418](https://github.com/hackforla/website/issues/4418) at 2023-05-22 03:05 PM PDT -katherinek123,2023-05-22T22:12:02Z,- katherinek123 commented on issue: [4418](https://github.com/hackforla/website/issues/4418#issuecomment-1558097497) at 2023-05-22 03:12 PM PDT -katherinek123,2023-05-25T22:20:02Z,- katherinek123 commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1563580394) at 2023-05-25 03:20 PM PDT -katherinek123,2023-05-25T23:04:12Z,- katherinek123 opened pull request: [4731](https://github.com/hackforla/website/pull/4731) at 2023-05-25 04:04 PM PDT -katherinek123,2023-05-25T23:27:44Z,- katherinek123 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1563627500) at 2023-05-25 04:27 PM PDT -katherinek123,2023-05-27T00:49:04Z,- katherinek123 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1565118818) at 2023-05-26 05:49 PM PDT -katherinek123,2023-05-28T23:50:18Z,- katherinek123 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1566309184) at 2023-05-28 04:50 PM PDT -katherinek123,2023-06-30T00:34:21Z,- katherinek123 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1613954799) at 2023-06-29 05:34 PM PDT -katherinek123,2023-07-07T19:02:53Z,- katherinek123 commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1625910466) at 2023-07-07 12:02 PM PDT -katherinek123,2023-07-19T03:39:42Z,- katherinek123 pull request merged: [4731](https://github.com/hackforla/website/pull/4731#event-9857518066) at 2023-07-18 08:39 PM PDT -katherinek123,2023-10-28T23:16:46Z,- katherinek123 commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1783940521) at 2023-10-28 04:16 PM PDT -katherinek123,2023-10-28T23:16:46Z,- katherinek123 closed issue as completed: [4619](https://github.com/hackforla/website/issues/4619#event-10798696217) at 2023-10-28 04:16 PM PDT -kathrynsilvaconway,3009,SKILLS ISSUE -kathrynsilvaconway,3275,SKILLS ISSUE -kathrynsilvaconway,2022-03-25T02:16:30Z,- kathrynsilvaconway opened issue: [3009](https://github.com/hackforla/website/issues/3009) at 2022-03-24 07:16 PM PDT -kathrynsilvaconway,2022-03-25T02:16:31Z,- kathrynsilvaconway assigned to issue: [3009](https://github.com/hackforla/website/issues/3009) at 2022-03-24 07:16 PM PDT -kathrynsilvaconway,2022-03-25T14:23:18Z,- kathrynsilvaconway assigned to issue: [2941](https://github.com/hackforla/website/issues/2941#issuecomment-1062066453) at 2022-03-25 07:23 AM PDT -kathrynsilvaconway,2022-03-25T16:25:54Z,- kathrynsilvaconway opened pull request: [3010](https://github.com/hackforla/website/pull/3010) at 2022-03-25 09:25 AM PDT -kathrynsilvaconway,2022-03-26T00:17:01Z,- kathrynsilvaconway assigned to issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1058623125) at 2022-03-25 05:17 PM PDT -kathrynsilvaconway,2022-03-26T00:28:55Z,- kathrynsilvaconway commented on issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1079533163) at 2022-03-25 05:28 PM PDT -kathrynsilvaconway,2022-03-27T01:10:23Z,- kathrynsilvaconway opened pull request: [3017](https://github.com/hackforla/website/pull/3017) at 2022-03-26 06:10 PM PDT -kathrynsilvaconway,2022-03-27T16:19:47Z,- kathrynsilvaconway commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1079963642) at 2022-03-27 09:19 AM PDT -kathrynsilvaconway,2022-03-27T20:27:12Z,- kathrynsilvaconway commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1080012625) at 2022-03-27 01:27 PM PDT -kathrynsilvaconway,2022-03-27T20:41:22Z,- kathrynsilvaconway submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-922494663) at 2022-03-27 01:41 PM PDT -kathrynsilvaconway,2022-03-28T02:14:44Z,- kathrynsilvaconway commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1080108638) at 2022-03-27 07:14 PM PDT -kathrynsilvaconway,2022-03-28T15:41:06Z,- kathrynsilvaconway pull request merged: [3017](https://github.com/hackforla/website/pull/3017#event-6319660038) at 2022-03-28 08:41 AM PDT -kathrynsilvaconway,2022-03-28T21:50:11Z,- kathrynsilvaconway submitted pull request review: [3014](https://github.com/hackforla/website/pull/3014#pullrequestreview-923791763) at 2022-03-28 02:50 PM PDT -kathrynsilvaconway,2022-03-29T01:33:27Z,- kathrynsilvaconway commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1081309535) at 2022-03-28 06:33 PM PDT -kathrynsilvaconway,2022-03-29T07:18:00Z,- kathrynsilvaconway pull request merged: [3010](https://github.com/hackforla/website/pull/3010#event-6324038169) at 2022-03-29 12:18 AM PDT -kathrynsilvaconway,2022-03-29T13:56:38Z,- kathrynsilvaconway commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1081905104) at 2022-03-29 06:56 AM PDT -kathrynsilvaconway,2022-03-29T23:17:16Z,- kathrynsilvaconway submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-925335891) at 2022-03-29 04:17 PM PDT -kathrynsilvaconway,2022-03-31T02:18:27Z,- kathrynsilvaconway assigned to issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924636) at 2022-03-30 07:18 PM PDT -kathrynsilvaconway,2022-03-31T02:19:31Z,- kathrynsilvaconway unassigned from issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924636) at 2022-03-30 07:19 PM PDT -kathrynsilvaconway,2022-03-31T02:30:59Z,- kathrynsilvaconway assigned to issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1023457675) at 2022-03-30 07:30 PM PDT -kathrynsilvaconway,2022-03-31T02:37:30Z,- kathrynsilvaconway commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1084011011) at 2022-03-30 07:37 PM PDT -kathrynsilvaconway,2022-03-31T02:48:58Z,- kathrynsilvaconway commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1084016054) at 2022-03-30 07:48 PM PDT -kathrynsilvaconway,2022-04-01T02:18:16Z,- kathrynsilvaconway commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1085337423) at 2022-03-31 07:18 PM PDT -kathrynsilvaconway,2022-04-02T23:17:54Z,- kathrynsilvaconway opened pull request: [3029](https://github.com/hackforla/website/pull/3029) at 2022-04-02 04:17 PM PDT -kathrynsilvaconway,2022-04-03T02:40:58Z,- kathrynsilvaconway submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-929620590) at 2022-04-02 07:40 PM PDT -kathrynsilvaconway,2022-04-03T02:54:51Z,- kathrynsilvaconway commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1086765465) at 2022-04-02 07:54 PM PDT -kathrynsilvaconway,2022-04-05T02:46:43Z,- kathrynsilvaconway submitted pull request review: [3020](https://github.com/hackforla/website/pull/3020#pullrequestreview-931158020) at 2022-04-04 07:46 PM PDT -kathrynsilvaconway,2022-04-05T17:06:27Z,- kathrynsilvaconway pull request merged: [3029](https://github.com/hackforla/website/pull/3029#event-6373198296) at 2022-04-05 10:06 AM PDT -kathrynsilvaconway,2022-04-05T17:39:47Z,- kathrynsilvaconway submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-932281761) at 2022-04-05 10:39 AM PDT -kathrynsilvaconway,2022-04-06T01:52:41Z,- kathrynsilvaconway assigned to issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1059844313) at 2022-04-05 06:52 PM PDT -kathrynsilvaconway,2022-04-06T01:57:05Z,- kathrynsilvaconway commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1089655823) at 2022-04-05 06:57 PM PDT -kathrynsilvaconway,2022-04-06T02:14:21Z,- kathrynsilvaconway commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1089672749) at 2022-04-05 07:14 PM PDT -kathrynsilvaconway,2022-04-07T01:48:41Z,- kathrynsilvaconway unassigned from issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1090993404) at 2022-04-06 06:48 PM PDT -kathrynsilvaconway,2022-04-07T02:09:59Z,- kathrynsilvaconway assigned to issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924636) at 2022-04-06 07:09 PM PDT -kathrynsilvaconway,2022-04-07T23:03:03Z,- kathrynsilvaconway opened pull request: [3036](https://github.com/hackforla/website/pull/3036) at 2022-04-07 04:03 PM PDT -kathrynsilvaconway,2022-04-08T17:05:49Z,- kathrynsilvaconway submitted pull request review: [2977](https://github.com/hackforla/website/pull/2977#pullrequestreview-936743893) at 2022-04-08 10:05 AM PDT -kathrynsilvaconway,2022-04-09T01:49:36Z,- kathrynsilvaconway commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1093575263) at 2022-04-08 06:49 PM PDT -kathrynsilvaconway,2022-04-09T01:51:28Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1093576447) at 2022-04-08 06:51 PM PDT -kathrynsilvaconway,2022-04-09T15:05:31Z,- kathrynsilvaconway commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1094062424) at 2022-04-09 08:05 AM PDT -kathrynsilvaconway,2022-04-10T02:22:18Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1094161152) at 2022-04-09 07:22 PM PDT -kathrynsilvaconway,2022-04-10T17:29:48Z,- kathrynsilvaconway commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1094333020) at 2022-04-10 10:29 AM PDT -kathrynsilvaconway,2022-04-10T19:24:04Z,- kathrynsilvaconway closed issue as completed: [3009](https://github.com/hackforla/website/issues/3009#event-6404575173) at 2022-04-10 12:24 PM PDT -kathrynsilvaconway,2022-04-11T13:34:03Z,- kathrynsilvaconway commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1095059522) at 2022-04-11 06:34 AM PDT -kathrynsilvaconway,2022-04-11T15:53:02Z,- kathrynsilvaconway commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1095235050) at 2022-04-11 08:53 AM PDT -kathrynsilvaconway,2022-04-11T22:06:37Z,- kathrynsilvaconway commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1095619979) at 2022-04-11 03:06 PM PDT -kathrynsilvaconway,2022-04-11T23:59:22Z,- kathrynsilvaconway submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-938721529) at 2022-04-11 04:59 PM PDT -kathrynsilvaconway,2022-04-12T00:39:12Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1095739468) at 2022-04-11 05:39 PM PDT -kathrynsilvaconway,2022-04-12T03:59:48Z,- kathrynsilvaconway submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-938865348) at 2022-04-11 08:59 PM PDT -kathrynsilvaconway,2022-04-12T15:04:39Z,- kathrynsilvaconway commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096849040) at 2022-04-12 08:04 AM PDT -kathrynsilvaconway,2022-04-13T00:45:35Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1097434156) at 2022-04-12 05:45 PM PDT -kathrynsilvaconway,2022-04-13T01:23:11Z,- kathrynsilvaconway pull request merged: [3036](https://github.com/hackforla/website/pull/3036#event-6423580903) at 2022-04-12 06:23 PM PDT -kathrynsilvaconway,2022-04-13T03:25:06Z,- kathrynsilvaconway submitted pull request review: [3044](https://github.com/hackforla/website/pull/3044#pullrequestreview-940362977) at 2022-04-12 08:25 PM PDT -kathrynsilvaconway,2022-04-13T03:28:00Z,- kathrynsilvaconway submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-940364313) at 2022-04-12 08:28 PM PDT -kathrynsilvaconway,2022-04-13T03:35:43Z,- kathrynsilvaconway commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1097519273) at 2022-04-12 08:35 PM PDT -kathrynsilvaconway,2022-04-13T03:46:59Z,- kathrynsilvaconway assigned to issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078521786) at 2022-04-12 08:46 PM PDT -kathrynsilvaconway,2022-04-13T03:47:54Z,- kathrynsilvaconway commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1097524084) at 2022-04-12 08:47 PM PDT -kathrynsilvaconway,2022-04-13T03:50:34Z,- kathrynsilvaconway commented on pull request: [3046](https://github.com/hackforla/website/pull/3046#issuecomment-1097524972) at 2022-04-12 08:50 PM PDT -kathrynsilvaconway,2022-04-14T01:07:41Z,- kathrynsilvaconway unassigned from issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1098564333) at 2022-04-13 06:07 PM PDT -kathrynsilvaconway,2022-04-14T01:14:41Z,- kathrynsilvaconway assigned to issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1059719546) at 2022-04-13 06:14 PM PDT -kathrynsilvaconway,2022-04-14T01:16:32Z,- kathrynsilvaconway commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1098617316) at 2022-04-13 06:16 PM PDT -kathrynsilvaconway,2022-04-14T01:52:22Z,- kathrynsilvaconway submitted pull request review: [3046](https://github.com/hackforla/website/pull/3046#pullrequestreview-941711049) at 2022-04-13 06:52 PM PDT -kathrynsilvaconway,2022-04-18T04:17:19Z,- kathrynsilvaconway submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-944060131) at 2022-04-17 09:17 PM PDT -kathrynsilvaconway,2022-04-20T01:46:37Z,- kathrynsilvaconway commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1103355813) at 2022-04-19 06:46 PM PDT -kathrynsilvaconway,2022-04-20T15:36:35Z,- kathrynsilvaconway commented on issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1104076691) at 2022-04-20 08:36 AM PDT -kathrynsilvaconway,2022-04-24T17:24:21Z,- kathrynsilvaconway commented on pull request: [3079](https://github.com/hackforla/website/pull/3079#issuecomment-1107883162) at 2022-04-24 10:24 AM PDT -kathrynsilvaconway,2022-04-25T01:23:52Z,- kathrynsilvaconway submitted pull request review: [3079](https://github.com/hackforla/website/pull/3079#pullrequestreview-951273964) at 2022-04-24 06:23 PM PDT -kathrynsilvaconway,2022-04-26T22:41:12Z,- kathrynsilvaconway commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1110318590) at 2022-04-26 03:41 PM PDT -kathrynsilvaconway,2022-04-26T22:55:31Z,- kathrynsilvaconway submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-954087293) at 2022-04-26 03:55 PM PDT -kathrynsilvaconway,2022-05-01T04:05:27Z,- kathrynsilvaconway opened pull request: [3085](https://github.com/hackforla/website/pull/3085) at 2022-04-30 09:05 PM PDT -kathrynsilvaconway,2022-05-01T05:02:14Z,- kathrynsilvaconway pull request merged: [3085](https://github.com/hackforla/website/pull/3085#event-6528926702) at 2022-04-30 10:02 PM PDT -kathrynsilvaconway,2022-05-01T05:02:44Z,- kathrynsilvaconway reopened pull request: [3085](https://github.com/hackforla/website/pull/3085#event-6528926702) at 2022-04-30 10:02 PM PDT -kathrynsilvaconway,2022-05-01T05:36:45Z,- kathrynsilvaconway assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-04-30 10:36 PM PDT -kathrynsilvaconway,2022-05-01T20:14:35Z,- kathrynsilvaconway unassigned from issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-05-01 01:14 PM PDT -kathrynsilvaconway,2022-05-02T15:28:43Z,- kathrynsilvaconway commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1115036098) at 2022-05-02 08:28 AM PDT -kathrynsilvaconway,2022-05-03T03:33:17Z,- kathrynsilvaconway commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1115655126) at 2022-05-02 08:33 PM PDT -kathrynsilvaconway,2022-05-18T03:03:21Z,- kathrynsilvaconway commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1129517125) at 2022-05-17 08:03 PM PDT -kathrynsilvaconway,2022-05-20T02:40:04Z,- kathrynsilvaconway submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-979454158) at 2022-05-19 07:40 PM PDT -kathrynsilvaconway,2022-05-24T00:50:47Z,- kathrynsilvaconway commented on pull request: [3168](https://github.com/hackforla/website/pull/3168#issuecomment-1135281039) at 2022-05-23 05:50 PM PDT -kathrynsilvaconway,2022-05-24T00:51:52Z,- kathrynsilvaconway commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135281684) at 2022-05-23 05:51 PM PDT -kathrynsilvaconway,2022-05-24T01:02:18Z,- kathrynsilvaconway submitted pull request review: [3168](https://github.com/hackforla/website/pull/3168#pullrequestreview-982480456) at 2022-05-23 06:02 PM PDT -kathrynsilvaconway,2022-05-24T01:18:21Z,- kathrynsilvaconway submitted pull request review: [3171](https://github.com/hackforla/website/pull/3171#pullrequestreview-982487761) at 2022-05-23 06:18 PM PDT -kathrynsilvaconway,2022-05-24T02:02:17Z,- kathrynsilvaconway commented on pull request: [3169](https://github.com/hackforla/website/pull/3169#issuecomment-1135318112) at 2022-05-23 07:02 PM PDT -kathrynsilvaconway,2022-05-24T02:14:53Z,- kathrynsilvaconway submitted pull request review: [3169](https://github.com/hackforla/website/pull/3169#pullrequestreview-982514196) at 2022-05-23 07:14 PM PDT -kathrynsilvaconway,2022-05-24T02:30:19Z,- kathrynsilvaconway commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135331438) at 2022-05-23 07:30 PM PDT -kathrynsilvaconway,2022-05-24T02:33:55Z,- kathrynsilvaconway submitted pull request review: [3171](https://github.com/hackforla/website/pull/3171#pullrequestreview-982524204) at 2022-05-23 07:33 PM PDT -kathrynsilvaconway,2022-05-25T06:13:02Z,- kathrynsilvaconway pull request merged: [3085](https://github.com/hackforla/website/pull/3085#event-6674655665) at 2022-05-24 11:13 PM PDT -kathrynsilvaconway,2022-05-25T14:38:40Z,- kathrynsilvaconway commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1137349128) at 2022-05-25 07:38 AM PDT -kathrynsilvaconway,2022-05-25T15:48:00Z,- kathrynsilvaconway assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-05-25 08:48 AM PDT -kathrynsilvaconway,2022-05-25T21:45:35Z,- kathrynsilvaconway unassigned from issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-05-25 02:45 PM PDT -kathrynsilvaconway,2022-05-26T00:33:07Z,- kathrynsilvaconway commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1138014276) at 2022-05-25 05:33 PM PDT -kathrynsilvaconway,2022-05-26T00:40:06Z,- kathrynsilvaconway assigned to issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-881904815) at 2022-05-25 05:40 PM PDT -kathrynsilvaconway,2022-05-26T00:41:45Z,- kathrynsilvaconway commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1138018944) at 2022-05-25 05:41 PM PDT -kathrynsilvaconway,2022-05-26T00:50:04Z,- kathrynsilvaconway submitted pull request review: [3174](https://github.com/hackforla/website/pull/3174#pullrequestreview-985613825) at 2022-05-25 05:50 PM PDT -kathrynsilvaconway,2022-05-29T17:34:50Z,- kathrynsilvaconway commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1140492998) at 2022-05-29 10:34 AM PDT -kathrynsilvaconway,2022-05-29T17:35:16Z,- kathrynsilvaconway commented on pull request: [3178](https://github.com/hackforla/website/pull/3178#issuecomment-1140493056) at 2022-05-29 10:35 AM PDT -kathrynsilvaconway,2022-06-04T04:14:06Z,- kathrynsilvaconway submitted pull request review: [3178](https://github.com/hackforla/website/pull/3178#pullrequestreview-995732861) at 2022-06-03 09:14 PM PDT -kathrynsilvaconway,2022-06-04T04:14:34Z,- kathrynsilvaconway closed issue by PR 3178: [2922](https://github.com/hackforla/website/issues/2922#event-6741072471) at 2022-06-03 09:14 PM PDT -kathrynsilvaconway,2022-06-05T00:08:12Z,- kathrynsilvaconway submitted pull request review: [3218](https://github.com/hackforla/website/pull/3218#pullrequestreview-995962830) at 2022-06-04 05:08 PM PDT -kathrynsilvaconway,2022-06-05T00:08:46Z,- kathrynsilvaconway closed issue by PR 3218: [2877](https://github.com/hackforla/website/issues/2877#event-6742566844) at 2022-06-04 05:08 PM PDT -kathrynsilvaconway,2022-06-05T00:33:21Z,- kathrynsilvaconway submitted pull request review: [3176](https://github.com/hackforla/website/pull/3176#pullrequestreview-995963987) at 2022-06-04 05:33 PM PDT -kathrynsilvaconway,2022-06-05T00:33:40Z,- kathrynsilvaconway closed issue by PR 3176: [2930](https://github.com/hackforla/website/issues/2930#event-6742589935) at 2022-06-04 05:33 PM PDT -kathrynsilvaconway,2022-06-07T01:19:06Z,- kathrynsilvaconway submitted pull request review: [3221](https://github.com/hackforla/website/pull/3221#pullrequestreview-997397434) at 2022-06-06 06:19 PM PDT -kathrynsilvaconway,2022-06-07T01:20:19Z,- kathrynsilvaconway closed issue by PR 3221: [3216](https://github.com/hackforla/website/issues/3216#event-6757146775) at 2022-06-06 06:20 PM PDT -kathrynsilvaconway,2022-06-07T01:30:21Z,- kathrynsilvaconway submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-997402863) at 2022-06-06 06:30 PM PDT -kathrynsilvaconway,2022-06-16T18:17:38Z,- kathrynsilvaconway opened issue: [3256](https://github.com/hackforla/website/issues/3256) at 2022-06-16 11:17 AM PDT -kathrynsilvaconway,2022-06-17T01:02:33Z,- kathrynsilvaconway closed issue by PR 3235: [3018](https://github.com/hackforla/website/issues/3018#event-6825256424) at 2022-06-16 06:02 PM PDT -kathrynsilvaconway,2022-06-19T17:29:34Z,- kathrynsilvaconway commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1159780881) at 2022-06-19 10:29 AM PDT -kathrynsilvaconway,2022-06-21T01:12:40Z,- kathrynsilvaconway closed issue by PR 3258: [2800](https://github.com/hackforla/website/issues/2800#event-6842955195) at 2022-06-20 06:12 PM PDT -kathrynsilvaconway,2022-06-21T01:22:49Z,- kathrynsilvaconway commented on pull request: [3263](https://github.com/hackforla/website/pull/3263#issuecomment-1161042395) at 2022-06-20 06:22 PM PDT -kathrynsilvaconway,2022-06-21T01:44:33Z,- kathrynsilvaconway opened issue: [3275](https://github.com/hackforla/website/issues/3275) at 2022-06-20 06:44 PM PDT -kathrynsilvaconway,2022-06-21T01:47:24Z,- kathrynsilvaconway assigned to issue: [3275](https://github.com/hackforla/website/issues/3275#issuecomment-1161071134) at 2022-06-20 06:47 PM PDT -kathrynsilvaconway,2022-06-21T02:02:23Z,- kathrynsilvaconway closed issue as completed: [3275](https://github.com/hackforla/website/issues/3275#event-6843233559) at 2022-06-20 07:02 PM PDT -kathrynsilvaconway,2022-06-22T01:19:29Z,- kathrynsilvaconway opened issue: [3282](https://github.com/hackforla/website/issues/3282) at 2022-06-21 06:19 PM PDT -kathrynsilvaconway,2022-06-22T04:06:34Z,- kathrynsilvaconway unassigned from issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1158573525) at 2022-06-21 09:06 PM PDT -kathrynsilvaconway,2022-06-22T15:57:02Z,- kathrynsilvaconway opened issue: [3286](https://github.com/hackforla/website/issues/3286) at 2022-06-22 08:57 AM PDT -kathrynsilvaconway,2022-06-23T01:39:41Z,- kathrynsilvaconway closed issue by PR 3224: [3220](https://github.com/hackforla/website/issues/3220#event-6861961639) at 2022-06-22 06:39 PM PDT -kathrynsilvaconway,2022-06-23T01:45:31Z,- kathrynsilvaconway closed issue by PR 3264: [2804](https://github.com/hackforla/website/issues/2804#event-6861983744) at 2022-06-22 06:45 PM PDT -kathrynsilvaconway,2022-06-23T21:34:49Z,- kathrynsilvaconway assigned to issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1162735905) at 2022-06-23 02:34 PM PDT -kathrynsilvaconway,2022-06-24T03:47:13Z,- kathrynsilvaconway closed issue by PR 3291: [2808](https://github.com/hackforla/website/issues/2808#event-6871254384) at 2022-06-23 08:47 PM PDT -kathrynsilvaconway,2022-06-24T03:49:44Z,- kathrynsilvaconway closed issue by PR 3262: [2897](https://github.com/hackforla/website/issues/2897#event-6871260603) at 2022-06-23 08:49 PM PDT -kathrynsilvaconway,2022-06-25T01:32:20Z,- kathrynsilvaconway opened issue: [3300](https://github.com/hackforla/website/issues/3300) at 2022-06-24 06:32 PM PDT -kathrynsilvaconway,2022-06-26T05:05:46Z,- kathrynsilvaconway closed issue by PR 3297: [2811](https://github.com/hackforla/website/issues/2811#event-6879792011) at 2022-06-25 10:05 PM PDT -kathrynsilvaconway,2022-06-26T05:18:10Z,- kathrynsilvaconway submitted pull request review: [3287](https://github.com/hackforla/website/pull/3287#pullrequestreview-1019374926) at 2022-06-25 10:18 PM PDT -kathrynsilvaconway,2022-06-26T05:19:41Z,- kathrynsilvaconway closed issue by PR 3287: [2810](https://github.com/hackforla/website/issues/2810#event-6879802374) at 2022-06-25 10:19 PM PDT -kathrynsilvaconway,2022-06-26T05:28:54Z,- kathrynsilvaconway commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166421504) at 2022-06-25 10:28 PM PDT -kathrynsilvaconway,2022-06-26T18:40:46Z,- kathrynsilvaconway opened issue: [3308](https://github.com/hackforla/website/issues/3308) at 2022-06-26 11:40 AM PDT -kathrynsilvaconway,2022-06-26T19:33:15Z,- kathrynsilvaconway submitted pull request review: [3263](https://github.com/hackforla/website/pull/3263#pullrequestreview-1019470744) at 2022-06-26 12:33 PM PDT -kathrynsilvaconway,2022-06-26T19:33:31Z,- kathrynsilvaconway closed issue by PR 3263: [3082](https://github.com/hackforla/website/issues/3082#event-6880797447) at 2022-06-26 12:33 PM PDT -kathrynsilvaconway,2022-06-26T19:40:53Z,- kathrynsilvaconway closed issue by PR 3303: [2807](https://github.com/hackforla/website/issues/2807#event-6880804806) at 2022-06-26 12:40 PM PDT -kathrynsilvaconway,2022-06-27T15:02:13Z,- kathrynsilvaconway closed issue by PR 3304: [3092](https://github.com/hackforla/website/issues/3092#event-6886148803) at 2022-06-27 08:02 AM PDT -kathrynsilvaconway,2022-06-28T19:07:46Z,- kathrynsilvaconway closed issue by PR 3317: [3096](https://github.com/hackforla/website/issues/3096#event-6896605672) at 2022-06-28 12:07 PM PDT -kathrynsilvaconway,2022-06-28T20:07:34Z,- kathrynsilvaconway commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1169180458) at 2022-06-28 01:07 PM PDT -kathrynsilvaconway,2022-06-28T20:43:28Z,- kathrynsilvaconway closed issue by PR 3320: [3103](https://github.com/hackforla/website/issues/3103#event-6897198847) at 2022-06-28 01:43 PM PDT -kathrynsilvaconway,2022-06-29T02:38:54Z,- kathrynsilvaconway unassigned from issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1165282628) at 2022-06-28 07:38 PM PDT -kathrynsilvaconway,2022-06-29T02:40:50Z,- kathrynsilvaconway assigned to issue: [2210](https://github.com/hackforla/website/issues/2210) at 2022-06-28 07:40 PM PDT -kathrynsilvaconway,2022-06-29T02:47:34Z,- kathrynsilvaconway unassigned from issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1169471810) at 2022-06-28 07:47 PM PDT -kathrynsilvaconway,2022-06-29T15:57:17Z,- kathrynsilvaconway commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1170165938) at 2022-06-29 08:57 AM PDT -kathrynsilvaconway,2022-06-29T16:05:46Z,- kathrynsilvaconway commented on pull request: [3323](https://github.com/hackforla/website/pull/3323#issuecomment-1170177482) at 2022-06-29 09:05 AM PDT -kathrynsilvaconway,2022-06-29T16:57:46Z,- kathrynsilvaconway submitted pull request review: [3323](https://github.com/hackforla/website/pull/3323#pullrequestreview-1023711061) at 2022-06-29 09:57 AM PDT -kathrynsilvaconway,2022-06-29T16:59:02Z,- kathrynsilvaconway closed issue by PR 3323: [3088](https://github.com/hackforla/website/issues/3088#event-6904206079) at 2022-06-29 09:59 AM PDT -kathrynsilvaconway,2022-06-30T23:01:41Z,- kathrynsilvaconway commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1171756128) at 2022-06-30 04:01 PM PDT -kathrynsilvaconway,2022-07-01T00:37:06Z,- kathrynsilvaconway submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-1025609473) at 2022-06-30 05:37 PM PDT -kathrynsilvaconway,2022-07-01T02:59:31Z,- kathrynsilvaconway commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1171874440) at 2022-06-30 07:59 PM PDT -kathrynsilvaconway,2022-07-12T01:11:53Z,- kathrynsilvaconway opened issue: [3361](https://github.com/hackforla/website/issues/3361) at 2022-07-11 06:11 PM PDT -kathrynsilvaconway,2022-07-17T17:19:26Z,- kathrynsilvaconway submitted pull request review: [3301](https://github.com/hackforla/website/pull/3301#pullrequestreview-1041163840) at 2022-07-17 10:19 AM PDT -kathrynsilvaconway,2022-07-17T17:19:50Z,- kathrynsilvaconway closed issue by PR 3301: [2931](https://github.com/hackforla/website/issues/2931#event-7007744080) at 2022-07-17 10:19 AM PDT -kathrynsilvaconway,2022-07-18T15:46:00Z,- kathrynsilvaconway opened issue: [3382](https://github.com/hackforla/website/issues/3382) at 2022-07-18 08:46 AM PDT -kathrynsilvaconway,2022-07-18T16:40:00Z,- kathrynsilvaconway opened issue: [3383](https://github.com/hackforla/website/issues/3383) at 2022-07-18 09:40 AM PDT -kathrynsilvaconway,2022-07-20T03:25:08Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1189771039) at 2022-07-19 08:25 PM PDT -kathrynsilvaconway,2022-07-21T02:20:28Z,- kathrynsilvaconway commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1190962105) at 2022-07-20 07:20 PM PDT -kathrynsilvaconway,2022-07-21T02:21:15Z,- kathrynsilvaconway closed issue by PR 3260: [2805](https://github.com/hackforla/website/issues/2805#event-7034278810) at 2022-07-20 07:21 PM PDT -kathrynsilvaconway,2022-07-21T02:25:29Z,- kathrynsilvaconway commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1190964915) at 2022-07-20 07:25 PM PDT -kathrynsilvaconway,2022-07-24T17:15:04Z,- kathrynsilvaconway commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1193359541) at 2022-07-24 10:15 AM PDT -kathrynsilvaconway,2022-07-25T21:40:32Z,- kathrynsilvaconway commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1194666034) at 2022-07-25 02:40 PM PDT -kathrynsilvaconway,2022-07-25T21:43:04Z,- kathrynsilvaconway commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194668581) at 2022-07-25 02:43 PM PDT -kathrynsilvaconway,2022-07-25T21:43:05Z,- kathrynsilvaconway closed issue as completed: [3123](https://github.com/hackforla/website/issues/3123#event-7059936015) at 2022-07-25 02:43 PM PDT -kathrynsilvaconway,2022-07-31T02:47:14Z,- kathrynsilvaconway closed issue by PR 3432: [2113](https://github.com/hackforla/website/issues/2113#event-7095774800) at 2022-07-30 07:47 PM PDT -kathrynsilvaconway,2022-08-01T12:38:31Z,- kathrynsilvaconway opened issue: [3447](https://github.com/hackforla/website/issues/3447) at 2022-08-01 05:38 AM PDT -kathrynsilvaconway,2022-08-02T01:22:11Z,- kathrynsilvaconway commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1201908988) at 2022-08-01 06:22 PM PDT -kathrynsilvaconway,2022-08-02T23:25:32Z,- kathrynsilvaconway opened issue: [3449](https://github.com/hackforla/website/issues/3449) at 2022-08-02 04:25 PM PDT -kathrynsilvaconway,2022-08-04T17:45:50Z,- kathrynsilvaconway commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1205576686) at 2022-08-04 10:45 AM PDT -kathrynsilvaconway,2022-08-04T21:11:46Z,- kathrynsilvaconway commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1205772099) at 2022-08-04 02:11 PM PDT -kathrynsilvaconway,2022-08-10T01:16:09Z,- kathrynsilvaconway closed issue by PR 3455: [3104](https://github.com/hackforla/website/issues/3104#event-7159747729) at 2022-08-09 06:16 PM PDT -kathrynsilvaconway,2022-08-10T02:26:08Z,- kathrynsilvaconway commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1210076864) at 2022-08-09 07:26 PM PDT -kathrynsilvaconway,2022-08-24T00:43:22Z,- kathrynsilvaconway closed issue by PR 3480: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-08-23 05:43 PM PDT -kathrynsilvaconway,2022-08-26T00:17:27Z,- kathrynsilvaconway commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1227877721) at 2022-08-25 05:17 PM PDT -kathrynsilvaconway,2022-08-26T00:53:27Z,- kathrynsilvaconway commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1227896793) at 2022-08-25 05:53 PM PDT -kathrynsilvaconway,2022-08-26T00:57:06Z,- kathrynsilvaconway submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1086269209) at 2022-08-25 05:57 PM PDT -kathrynsilvaconway,2022-08-26T00:59:27Z,- kathrynsilvaconway closed issue by PR 3452: [2502](https://github.com/hackforla/website/issues/2502#event-7263692177) at 2022-08-25 05:59 PM PDT -kathrynsilvaconway,2022-08-26T03:24:44Z,- kathrynsilvaconway commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1228009331) at 2022-08-25 08:24 PM PDT -kathrynsilvaconway,2022-08-27T20:25:00Z,- kathrynsilvaconway opened pull request: [3491](https://github.com/hackforla/website/pull/3491) at 2022-08-27 01:25 PM PDT -kathrynsilvaconway,2022-08-27T20:32:58Z,- kathrynsilvaconway submitted pull request review: [3483](https://github.com/hackforla/website/pull/3483#pullrequestreview-1087717288) at 2022-08-27 01:32 PM PDT -kathrynsilvaconway,2022-08-27T21:10:25Z,- kathrynsilvaconway opened issue: [3492](https://github.com/hackforla/website/issues/3492) at 2022-08-27 02:10 PM PDT -kathrynsilvaconway,2022-08-28T02:02:49Z,- kathrynsilvaconway opened issue: [3493](https://github.com/hackforla/website/issues/3493) at 2022-08-27 07:02 PM PDT -kathrynsilvaconway,2022-08-28T02:41:50Z,- kathrynsilvaconway opened issue: [3494](https://github.com/hackforla/website/issues/3494) at 2022-08-27 07:41 PM PDT -kathrynsilvaconway,2022-08-28T02:41:51Z,- kathrynsilvaconway assigned to issue: [3494](https://github.com/hackforla/website/issues/3494) at 2022-08-27 07:41 PM PDT -kathrynsilvaconway,2022-08-28T03:27:35Z,- kathrynsilvaconway opened pull request: [3495](https://github.com/hackforla/website/pull/3495) at 2022-08-27 08:27 PM PDT -kathrynsilvaconway,2022-08-28T03:34:53Z,- kathrynsilvaconway pull request closed w/o merging: [3491](https://github.com/hackforla/website/pull/3491#event-7272846727) at 2022-08-27 08:34 PM PDT -kathrynsilvaconway,2022-08-28T03:42:56Z,- kathrynsilvaconway commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1229367452) at 2022-08-27 08:42 PM PDT -kathrynsilvaconway,2022-08-28T17:00:19Z,- kathrynsilvaconway pull request merged: [3495](https://github.com/hackforla/website/pull/3495#event-7273745617) at 2022-08-28 10:00 AM PDT -kathrynsilvaconway,2022-08-29T20:42:01Z,- kathrynsilvaconway closed issue as completed: [3074](https://github.com/hackforla/website/issues/3074#event-7282043125) at 2022-08-29 01:42 PM PDT -kathrynsilvaconway,2022-08-29T20:44:32Z,- kathrynsilvaconway closed issue as completed: [3188](https://github.com/hackforla/website/issues/3188#event-7282058072) at 2022-08-29 01:44 PM PDT -kathrynsilvaconway,2022-08-29T20:58:32Z,- kathrynsilvaconway commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1230854182) at 2022-08-29 01:58 PM PDT -kathrynsilvaconway,2022-08-30T13:02:10Z,- kathrynsilvaconway opened pull request: [3498](https://github.com/hackforla/website/pull/3498) at 2022-08-30 06:02 AM PDT -kathrynsilvaconway,2022-08-30T14:23:06Z,- kathrynsilvaconway opened issue: [3499](https://github.com/hackforla/website/issues/3499) at 2022-08-30 07:23 AM PDT -kathrynsilvaconway,2022-08-30T14:25:28Z,- kathrynsilvaconway closed issue as completed: [3499](https://github.com/hackforla/website/issues/3499#event-7288133685) at 2022-08-30 07:25 AM PDT -kathrynsilvaconway,2022-08-30T15:31:55Z,- kathrynsilvaconway opened issue: [3500](https://github.com/hackforla/website/issues/3500) at 2022-08-30 08:31 AM PDT -kathrynsilvaconway,2022-08-30T15:38:47Z,- kathrynsilvaconway closed issue as completed: [3500](https://github.com/hackforla/website/issues/3500#event-7288795560) at 2022-08-30 08:38 AM PDT -kathrynsilvaconway,2022-08-30T15:39:40Z,- kathrynsilvaconway pull request closed w/o merging: [3498](https://github.com/hackforla/website/pull/3498#event-7288802933) at 2022-08-30 08:39 AM PDT -kathrynsilvaconway,2022-08-30T21:01:00Z,- kathrynsilvaconway submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1090961033) at 2022-08-30 02:01 PM PDT -kathrynsilvaconway,2022-08-30T22:44:22Z,- kathrynsilvaconway reopened issue: [3500](https://github.com/hackforla/website/issues/3500#event-7288795560) at 2022-08-30 03:44 PM PDT -kathrynsilvaconway,2022-08-30T22:50:55Z,- kathrynsilvaconway opened issue: [3501](https://github.com/hackforla/website/issues/3501) at 2022-08-30 03:50 PM PDT -kathrynsilvaconway,2022-08-30T22:57:43Z,- kathrynsilvaconway assigned to issue: [3501](https://github.com/hackforla/website/issues/3501) at 2022-08-30 03:57 PM PDT -kathrynsilvaconway,2022-08-30T22:58:53Z,- kathrynsilvaconway assigned to issue: [3500](https://github.com/hackforla/website/issues/3500#event-7288795560) at 2022-08-30 03:58 PM PDT -kathrynsilvaconway,2022-08-30T23:23:52Z,- kathrynsilvaconway opened pull request: [3502](https://github.com/hackforla/website/pull/3502) at 2022-08-30 04:23 PM PDT -kathrynsilvaconway,2022-08-30T23:25:58Z,- kathrynsilvaconway opened pull request: [3503](https://github.com/hackforla/website/pull/3503) at 2022-08-30 04:25 PM PDT -kathrynsilvaconway,2022-08-30T23:34:08Z,- kathrynsilvaconway opened issue: [3504](https://github.com/hackforla/website/issues/3504) at 2022-08-30 04:34 PM PDT -kathrynsilvaconway,2022-08-30T23:35:41Z,- kathrynsilvaconway opened pull request: [3505](https://github.com/hackforla/website/pull/3505) at 2022-08-30 04:35 PM PDT -kathrynsilvaconway,2022-08-31T03:08:57Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1232403766) at 2022-08-30 08:08 PM PDT -kathrynsilvaconway,2022-09-01T02:28:00Z,- kathrynsilvaconway pull request closed w/o merging: [3505](https://github.com/hackforla/website/pull/3505#event-7301148599) at 2022-08-31 07:28 PM PDT -kathrynsilvaconway,2022-09-01T02:28:18Z,- kathrynsilvaconway pull request closed w/o merging: [3503](https://github.com/hackforla/website/pull/3503#event-7301149745) at 2022-08-31 07:28 PM PDT -kathrynsilvaconway,2022-09-01T02:28:30Z,- kathrynsilvaconway pull request closed w/o merging: [3502](https://github.com/hackforla/website/pull/3502#event-7301150614) at 2022-08-31 07:28 PM PDT -kathrynsilvaconway,2022-09-09T00:40:06Z,- kathrynsilvaconway submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1101562697) at 2022-09-08 05:40 PM PDT -kathrynsilvaconway,2022-09-09T00:50:27Z,- kathrynsilvaconway commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1241377304) at 2022-09-08 05:50 PM PDT -kathrynsilvaconway,2022-09-09T00:51:24Z,- kathrynsilvaconway closed issue by PR 3431: [3357](https://github.com/hackforla/website/issues/3357#event-7352392004) at 2022-09-08 05:51 PM PDT -kathrynsilvaconway,2022-09-09T02:38:55Z,- kathrynsilvaconway submitted pull request review: [3531](https://github.com/hackforla/website/pull/3531#pullrequestreview-1101629771) at 2022-09-08 07:38 PM PDT -kathrynsilvaconway,2022-09-11T01:49:41Z,- kathrynsilvaconway closed issue as completed: [3504](https://github.com/hackforla/website/issues/3504#event-7361672663) at 2022-09-10 06:49 PM PDT -kathrynsilvaconway,2022-09-11T02:44:11Z,- kathrynsilvaconway commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1242854039) at 2022-09-10 07:44 PM PDT -kathrynsilvaconway,2022-09-11T23:25:27Z,- kathrynsilvaconway closed issue as completed: [3063](https://github.com/hackforla/website/issues/3063#event-7363093123) at 2022-09-11 04:25 PM PDT -kathrynsilvaconway,2022-09-11T23:33:32Z,- kathrynsilvaconway commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1243067921) at 2022-09-11 04:33 PM PDT -kathrynsilvaconway,2022-09-11T23:45:18Z,- kathrynsilvaconway commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1243070350) at 2022-09-11 04:45 PM PDT -kathrynsilvaconway,2022-09-12T00:22:40Z,- kathrynsilvaconway opened issue: [3535](https://github.com/hackforla/website/issues/3535) at 2022-09-11 05:22 PM PDT -kathrynsilvaconway,2022-09-12T00:26:17Z,- kathrynsilvaconway assigned to issue: [3535](https://github.com/hackforla/website/issues/3535) at 2022-09-11 05:26 PM PDT -kathrynsilvaconway,2022-09-12T01:26:04Z,- kathrynsilvaconway opened pull request: [3536](https://github.com/hackforla/website/pull/3536) at 2022-09-11 06:26 PM PDT -kathrynsilvaconway,2022-09-12T01:30:21Z,- kathrynsilvaconway pull request closed w/o merging: [3536](https://github.com/hackforla/website/pull/3536#event-7363339927) at 2022-09-11 06:30 PM PDT -kathrynsilvaconway,2022-09-12T01:33:19Z,- kathrynsilvaconway opened pull request: [3537](https://github.com/hackforla/website/pull/3537) at 2022-09-11 06:33 PM PDT -kathrynsilvaconway,2022-09-12T02:29:02Z,- kathrynsilvaconway commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1243143087) at 2022-09-11 07:29 PM PDT -kathrynsilvaconway,2022-09-12T02:55:33Z,- kathrynsilvaconway commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1243155275) at 2022-09-11 07:55 PM PDT -kathrynsilvaconway,2022-09-12T03:02:38Z,- kathrynsilvaconway closed issue as completed: [3535](https://github.com/hackforla/website/issues/3535#event-7363632698) at 2022-09-11 08:02 PM PDT -kathrynsilvaconway,2022-09-13T02:12:13Z,- kathrynsilvaconway commented on issue: [3512](https://github.com/hackforla/website/issues/3512#issuecomment-1244808262) at 2022-09-12 07:12 PM PDT -kathrynsilvaconway,2022-09-13T02:12:47Z,- kathrynsilvaconway commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1244808538) at 2022-09-12 07:12 PM PDT -kathrynsilvaconway,2022-09-13T02:13:22Z,- kathrynsilvaconway commented on issue: [3387](https://github.com/hackforla/website/issues/3387#issuecomment-1244808827) at 2022-09-12 07:13 PM PDT -kathrynsilvaconway,2022-09-13T02:14:19Z,- kathrynsilvaconway commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1244809301) at 2022-09-12 07:14 PM PDT -kathrynsilvaconway,2022-09-13T02:33:56Z,- kathrynsilvaconway commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1244819731) at 2022-09-12 07:33 PM PDT -kathrynsilvaconway,2022-09-13T03:21:35Z,- kathrynsilvaconway opened issue: [3546](https://github.com/hackforla/website/issues/3546) at 2022-09-12 08:21 PM PDT -kathrynsilvaconway,2022-09-13T03:47:01Z,- kathrynsilvaconway opened issue: [3547](https://github.com/hackforla/website/issues/3547) at 2022-09-12 08:47 PM PDT -kathrynsilvaconway,2022-09-13T04:00:46Z,- kathrynsilvaconway commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1244867628) at 2022-09-12 09:00 PM PDT -kathrynsilvaconway,2022-09-13T04:11:01Z,- kathrynsilvaconway commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1244872964) at 2022-09-12 09:11 PM PDT -kathrynsilvaconway,2022-09-13T04:35:21Z,- kathrynsilvaconway commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1244885898) at 2022-09-12 09:35 PM PDT -kathrynsilvaconway,2022-09-13T04:40:46Z,- kathrynsilvaconway commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1244888959) at 2022-09-12 09:40 PM PDT -kathrynsilvaconway,2022-09-13T05:03:20Z,- kathrynsilvaconway commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1244901699) at 2022-09-12 10:03 PM PDT -kathrynsilvaconway,2022-09-13T06:33:41Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1244961996) at 2022-09-12 11:33 PM PDT -kathrynsilvaconway,2022-09-14T00:56:25Z,- kathrynsilvaconway closed issue by PR 3446: [2451](https://github.com/hackforla/website/issues/2451#event-7381083204) at 2022-09-13 05:56 PM PDT -kathrynsilvaconway,2022-09-14T02:52:23Z,- kathrynsilvaconway opened issue: [3552](https://github.com/hackforla/website/issues/3552) at 2022-09-13 07:52 PM PDT -kathrynsilvaconway,2022-09-14T03:27:48Z,- kathrynsilvaconway closed issue as completed: [3552](https://github.com/hackforla/website/issues/3552#event-7381662624) at 2022-09-13 08:27 PM PDT -kathrynsilvaconway,2022-09-16T02:34:52Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1248844950) at 2022-09-15 07:34 PM PDT -kathrynsilvaconway,2022-09-16T04:08:47Z,- kathrynsilvaconway submitted pull request review: [3556](https://github.com/hackforla/website/pull/3556#pullrequestreview-1110069026) at 2022-09-15 09:08 PM PDT -kathrynsilvaconway,2022-09-16T04:08:58Z,- kathrynsilvaconway closed issue by PR 3556: [2826](https://github.com/hackforla/website/issues/2826#event-7399878925) at 2022-09-15 09:08 PM PDT -kathrynsilvaconway,2022-09-19T02:30:31Z,- kathrynsilvaconway commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1250482350) at 2022-09-18 07:30 PM PDT -kathrynsilvaconway,2022-09-19T02:34:30Z,- kathrynsilvaconway commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1250483942) at 2022-09-18 07:34 PM PDT -kathrynsilvaconway,2022-09-19T02:38:42Z,- kathrynsilvaconway commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1250485602) at 2022-09-18 07:38 PM PDT -kathrynsilvaconway,2022-09-19T02:38:42Z,- kathrynsilvaconway closed issue as completed: [3244](https://github.com/hackforla/website/issues/3244#event-7410023774) at 2022-09-18 07:38 PM PDT -kathrynsilvaconway,2022-09-21T02:49:17Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1253140266) at 2022-09-20 07:49 PM PDT -kathrynsilvaconway,2022-09-21T21:26:23Z,- kathrynsilvaconway closed issue by PR 3567: [2829](https://github.com/hackforla/website/issues/2829#event-7434410038) at 2022-09-21 02:26 PM PDT -kathrynsilvaconway,2022-09-21T21:28:46Z,- kathrynsilvaconway closed issue by PR 3568: [2832](https://github.com/hackforla/website/issues/2832#event-7434422798) at 2022-09-21 02:28 PM PDT -kathrynsilvaconway,2022-09-23T01:22:46Z,- kathrynsilvaconway commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1255708321) at 2022-09-22 06:22 PM PDT -kathrynsilvaconway,2022-09-23T01:38:37Z,- kathrynsilvaconway commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1255714565) at 2022-09-22 06:38 PM PDT -kathrynsilvaconway,2022-09-23T01:45:27Z,- kathrynsilvaconway commented on issue: [3545](https://github.com/hackforla/website/issues/3545#issuecomment-1255717778) at 2022-09-22 06:45 PM PDT -kathrynsilvaconway,2022-09-28T01:31:53Z,- kathrynsilvaconway closed issue by PR 3580: [2215](https://github.com/hackforla/website/issues/2215#event-7473449547) at 2022-09-27 06:31 PM PDT -kathrynsilvaconway,2022-09-28T01:41:13Z,- kathrynsilvaconway commented on issue: [3512](https://github.com/hackforla/website/issues/3512#issuecomment-1260282665) at 2022-09-27 06:41 PM PDT -kathrynsilvaconway,2022-09-28T01:41:27Z,- kathrynsilvaconway closed issue as completed: [3512](https://github.com/hackforla/website/issues/3512#event-7473485110) at 2022-09-27 06:41 PM PDT -kathrynsilvaconway,2022-09-28T01:46:56Z,- kathrynsilvaconway commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1260285631) at 2022-09-27 06:46 PM PDT -kathrynsilvaconway,2022-09-28T01:48:18Z,- kathrynsilvaconway commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1260286269) at 2022-09-27 06:48 PM PDT -kathrynsilvaconway,2022-09-28T01:48:18Z,- kathrynsilvaconway closed issue as completed: [3386](https://github.com/hackforla/website/issues/3386#event-7473509844) at 2022-09-27 06:48 PM PDT -kathrynsilvaconway,2022-09-28T01:51:34Z,- kathrynsilvaconway commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1260287783) at 2022-09-27 06:51 PM PDT -kathrynsilvaconway,2022-09-28T01:51:34Z,- kathrynsilvaconway closed issue as completed: [3186](https://github.com/hackforla/website/issues/3186#event-7473521196) at 2022-09-27 06:51 PM PDT -kathrynsilvaconway,2022-09-28T01:55:13Z,- kathrynsilvaconway commented on issue: [3389](https://github.com/hackforla/website/issues/3389#issuecomment-1260289404) at 2022-09-27 06:55 PM PDT -kathrynsilvaconway,2022-09-28T02:51:24Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1260318949) at 2022-09-27 07:51 PM PDT -kathrynsilvaconway,2022-09-30T01:21:13Z,- kathrynsilvaconway submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1126148094) at 2022-09-29 06:21 PM PDT -kathrynsilvaconway,2022-09-30T01:26:20Z,- kathrynsilvaconway submitted pull request review: [3591](https://github.com/hackforla/website/pull/3591#pullrequestreview-1126150348) at 2022-09-29 06:26 PM PDT -kathrynsilvaconway,2022-09-30T01:26:31Z,- kathrynsilvaconway closed issue by PR 3591: [3194](https://github.com/hackforla/website/issues/3194#event-7491406495) at 2022-09-29 06:26 PM PDT -kathrynsilvaconway,2022-09-30T01:33:51Z,- kathrynsilvaconway submitted pull request review: [3589](https://github.com/hackforla/website/pull/3589#pullrequestreview-1126153702) at 2022-09-29 06:33 PM PDT -kathrynsilvaconway,2022-09-30T01:37:08Z,- kathrynsilvaconway submitted pull request review: [3588](https://github.com/hackforla/website/pull/3588#pullrequestreview-1126155149) at 2022-09-29 06:37 PM PDT -kathrynsilvaconway,2022-09-30T01:37:16Z,- kathrynsilvaconway closed issue by PR 3588: [3195](https://github.com/hackforla/website/issues/3195#event-7491440689) at 2022-09-29 06:37 PM PDT -kathrynsilvaconway,2022-10-04T01:36:10Z,- kathrynsilvaconway commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1266287720) at 2022-10-03 06:36 PM PDT -kathrynsilvaconway,2022-10-04T02:11:07Z,- kathrynsilvaconway commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1266303839) at 2022-10-03 07:11 PM PDT -kathrynsilvaconway,2022-10-04T02:13:30Z,- kathrynsilvaconway commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1266305356) at 2022-10-03 07:13 PM PDT -kathrynsilvaconway,2022-10-04T02:16:23Z,- kathrynsilvaconway commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1266307147) at 2022-10-03 07:16 PM PDT -kathrynsilvaconway,2022-10-04T02:17:44Z,- kathrynsilvaconway closed issue as completed: [3389](https://github.com/hackforla/website/issues/3389#event-7512256744) at 2022-10-03 07:17 PM PDT -kathrynsilvaconway,2022-10-04T02:19:43Z,- kathrynsilvaconway commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1266309160) at 2022-10-03 07:19 PM PDT -kathrynsilvaconway,2022-10-05T00:36:34Z,- kathrynsilvaconway commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1267767573) at 2022-10-04 05:36 PM PDT -kathrynsilvaconway,2022-10-05T00:58:42Z,- kathrynsilvaconway commented on issue: [3570](https://github.com/hackforla/website/issues/3570#issuecomment-1267781501) at 2022-10-04 05:58 PM PDT -kathrynsilvaconway,2022-10-05T01:11:18Z,- kathrynsilvaconway commented on issue: [3247](https://github.com/hackforla/website/issues/3247#issuecomment-1267789513) at 2022-10-04 06:11 PM PDT -kathrynsilvaconway,2022-10-05T01:11:18Z,- kathrynsilvaconway closed issue as completed: [3247](https://github.com/hackforla/website/issues/3247#event-7521094825) at 2022-10-04 06:11 PM PDT -kathrynsilvaconway,2022-10-12T02:38:53Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1275507256) at 2022-10-11 07:38 PM PDT -kathrynsilvaconway,2022-10-14T02:26:49Z,- kathrynsilvaconway closed issue by PR 3618: [2847](https://github.com/hackforla/website/issues/2847#event-7586420311) at 2022-10-13 07:26 PM PDT -kathrynsilvaconway,2022-10-19T13:49:33Z,- kathrynsilvaconway commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1284049297) at 2022-10-19 06:49 AM PDT -kathrynsilvaconway,2022-10-19T15:11:52Z,- kathrynsilvaconway commented on issue: [3570](https://github.com/hackforla/website/issues/3570#issuecomment-1284171782) at 2022-10-19 08:11 AM PDT -kathrynsilvaconway,2022-10-19T15:11:53Z,- kathrynsilvaconway closed issue as completed: [3570](https://github.com/hackforla/website/issues/3570#event-7622664394) at 2022-10-19 08:11 AM PDT -kathrynsilvaconway,2022-10-19T15:51:49Z,- kathrynsilvaconway commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1284231116) at 2022-10-19 08:51 AM PDT -kathrynsilvaconway,2022-11-09T02:15:56Z,- kathrynsilvaconway assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -kathrynsilvaconway,2023-02-19T18:41:53Z,- kathrynsilvaconway assigned to issue: [3361](https://github.com/hackforla/website/issues/3361#issuecomment-1181203436) at 2023-02-19 10:41 AM PST -katiehermalik,4333,SKILLS ISSUE -katiehermalik,2023-03-29T04:00:35Z,- katiehermalik opened issue: [4333](https://github.com/hackforla/website/issues/4333) at 2023-03-28 09:00 PM PDT -katiehermalik,2023-03-29T04:00:36Z,- katiehermalik assigned to issue: [4333](https://github.com/hackforla/website/issues/4333) at 2023-03-28 09:00 PM PDT -katiehermalik,2023-04-25T17:45:06Z,- katiehermalik commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1522177206) at 2023-04-25 10:45 AM PDT -katiehermalik,2023-04-27T20:24:01Z,- katiehermalik assigned to issue: [4398](https://github.com/hackforla/website/issues/4398) at 2023-04-27 01:24 PM PDT -katiehermalik,2023-04-27T20:28:41Z,- katiehermalik commented on issue: [4398](https://github.com/hackforla/website/issues/4398#issuecomment-1526385461) at 2023-04-27 01:28 PM PDT -katiehermalik,2023-04-27T20:38:54Z,- katiehermalik commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1526406339) at 2023-04-27 01:38 PM PDT -katiehermalik,2023-04-27T23:19:12Z,- katiehermalik opened pull request: [4576](https://github.com/hackforla/website/pull/4576) at 2023-04-27 04:19 PM PDT -katiehermalik,2023-04-28T00:19:32Z,- katiehermalik commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1526805255) at 2023-04-27 05:19 PM PDT -katiehermalik,2023-05-01T02:14:43Z,- katiehermalik pull request merged: [4576](https://github.com/hackforla/website/pull/4576#event-9133813938) at 2023-04-30 07:14 PM PDT -katiehermalik,2023-05-06T19:45:02Z,- katiehermalik commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1537210659) at 2023-05-06 12:45 PM PDT -katiehermalik,2023-05-28T23:08:44Z,- katiehermalik commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1566296383) at 2023-05-28 04:08 PM PDT -katiejnete,7695,SKILLS ISSUE -katiejnete,2024-11-05T04:06:15Z,- katiejnete opened issue: [7695](https://github.com/hackforla/website/issues/7695) at 2024-11-04 08:06 PM PST -katiejnete,2024-11-05T04:06:48Z,- katiejnete assigned to issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2456188557) at 2024-11-04 08:06 PM PST -katiejnete,2024-11-05T04:44:34Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2456223359) at 2024-11-04 08:44 PM PST -katiejnete,2024-11-05T04:50:06Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2456228382) at 2024-11-04 08:50 PM PST -katiejnete,2024-11-09T09:04:13Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2466137608) at 2024-11-09 01:04 AM PST -katiejnete,2024-11-10T05:19:10Z,- katiejnete assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2369048734) at 2024-11-09 09:19 PM PST -katiejnete,2024-11-10T06:23:13Z,- katiejnete commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2466606712) at 2024-11-09 10:23 PM PST -katiejnete,2024-11-10T06:24:56Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2466607027) at 2024-11-09 10:24 PM PST -katiejnete,2024-11-15T00:13:09Z,- katiejnete opened pull request: [7720](https://github.com/hackforla/website/pull/7720) at 2024-11-14 04:13 PM PST -katiejnete,2024-11-15T00:21:06Z,- katiejnete commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2477680815) at 2024-11-14 04:21 PM PST -katiejnete,2024-11-15T00:22:21Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2477682287) at 2024-11-14 04:22 PM PST -katiejnete,2024-11-15T06:29:12Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2478054311) at 2024-11-14 10:29 PM PST -katiejnete,2024-11-18T02:28:21Z,- katiejnete pull request merged: [7720](https://github.com/hackforla/website/pull/7720#event-15327463780) at 2024-11-17 06:28 PM PST -katiejnete,2024-11-22T07:17:47Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2493036367) at 2024-11-21 11:17 PM PST -katiejnete,2024-11-22T07:29:38Z,- katiejnete assigned to issue: [7703](https://github.com/hackforla/website/issues/7703) at 2024-11-21 11:29 PM PST -katiejnete,2024-11-22T07:33:50Z,- katiejnete commented on issue: [7703](https://github.com/hackforla/website/issues/7703#issuecomment-2493060940) at 2024-11-21 11:33 PM PST -katiejnete,2024-11-22T08:33:51Z,- katiejnete opened pull request: [7757](https://github.com/hackforla/website/pull/7757) at 2024-11-22 12:33 AM PST -katiejnete,2024-11-25T05:45:04Z,- katiejnete pull request merged: [7757](https://github.com/hackforla/website/pull/7757#event-15414493762) at 2024-11-24 09:45 PM PST -katiejnete,2024-11-27T04:23:06Z,- katiejnete pull request merged: [7757](https://github.com/hackforla/website/pull/7757#event-15446434802) at 2024-11-26 08:23 PM PST -katiejnete,2024-12-05T03:55:44Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2519034133) at 2024-12-04 07:55 PM PST -katiejnete,2025-01-11T03:36:10Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2585047180) at 2025-01-10 07:36 PM PST -katiejnete,2025-01-17T23:03:37Z,- katiejnete commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2599348739) at 2025-01-17 03:03 PM PST -katiejnete,2025-01-17T23:52:57Z,- katiejnete commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2599385655) at 2025-01-17 03:52 PM PST -katiejnete,2025-01-22T03:22:47Z,- katiejnete submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2566107960) at 2025-01-21 07:22 PM PST -katiejnete,2025-01-22T03:26:50Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2606207527) at 2025-01-21 07:26 PM PST -katiejnete,2025-01-27T00:13:23Z,- katiejnete commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2614648911) at 2025-01-26 04:13 PM PST -katiejnete,2025-01-27T01:23:05Z,- katiejnete submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2574444774) at 2025-01-26 05:23 PM PST -katiejnete,2025-01-29T06:39:28Z,- katiejnete commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2620830063) at 2025-01-28 10:39 PM PST -katiejnete,2025-01-29T06:42:55Z,- katiejnete submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2580139357) at 2025-01-28 10:42 PM PST -katiejnete,2025-02-07T01:30:44Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2641658072) at 2025-02-06 05:30 PM PST -katiejnete,2025-02-07T01:31:59Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2641667709) at 2025-02-06 05:31 PM PST -katiejnete,2025-02-07T02:53:33Z,- katiejnete commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2641813274) at 2025-02-06 06:53 PM PST -katiejnete,2025-02-07T03:21:33Z,- katiejnete submitted pull request review: [7880](https://github.com/hackforla/website/pull/7880#pullrequestreview-2600714205) at 2025-02-06 07:21 PM PST -katiejnete,2025-02-08T02:35:57Z,- katiejnete commented on pull request: [7898](https://github.com/hackforla/website/pull/7898#issuecomment-2644442530) at 2025-02-07 06:35 PM PST -katiejnete,2025-02-08T02:55:42Z,- katiejnete submitted pull request review: [7898](https://github.com/hackforla/website/pull/7898#pullrequestreview-2603206524) at 2025-02-07 06:55 PM PST -katiejnete,2025-02-08T03:05:45Z,- katiejnete commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2644455401) at 2025-02-07 07:05 PM PST -katiejnete,2025-02-08T05:02:03Z,- katiejnete submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2603294750) at 2025-02-07 09:02 PM PST -katiejnete,2025-02-10T22:57:01Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2649443627) at 2025-02-10 02:57 PM PST -katiejnete,2025-02-10T22:57:50Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2649444851) at 2025-02-10 02:57 PM PST -katiejnete,2025-02-15T03:02:53Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2660682301) at 2025-02-14 07:02 PM PST -katiejnete,2025-02-17T00:08:28Z,- katiejnete submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2619762253) at 2025-02-16 04:08 PM PST -katiejnete,2025-02-17T02:53:17Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2661841220) at 2025-02-16 06:53 PM PST -katiejnete,2025-02-20T03:19:46Z,- katiejnete commented on pull request: [7928](https://github.com/hackforla/website/pull/7928#issuecomment-2670366531) at 2025-02-19 07:19 PM PST -katiejnete,2025-02-20T03:39:40Z,- katiejnete submitted pull request review: [7928](https://github.com/hackforla/website/pull/7928#pullrequestreview-2628639246) at 2025-02-19 07:39 PM PST -katiejnete,2025-02-20T22:07:01Z,- katiejnete assigned to issue: [7387](https://github.com/hackforla/website/issues/7387) at 2025-02-20 02:07 PM PST -katiejnete,2025-02-20T22:32:58Z,- katiejnete commented on issue: [7387](https://github.com/hackforla/website/issues/7387#issuecomment-2672840937) at 2025-02-20 02:32 PM PST -katiejnete,2025-02-26T03:39:04Z,- katiejnete assigned to issue: [7389](https://github.com/hackforla/website/issues/7389) at 2025-02-25 07:39 PM PST -katiejnete,2025-02-26T03:39:22Z,- katiejnete unassigned from issue: [7389](https://github.com/hackforla/website/issues/7389) at 2025-02-25 07:39 PM PST -katiejnete,2025-02-26T03:42:35Z,- katiejnete assigned to issue: [7390](https://github.com/hackforla/website/issues/7390) at 2025-02-25 07:42 PM PST -katiejnete,2025-02-26T03:42:49Z,- katiejnete unassigned from issue: [7390](https://github.com/hackforla/website/issues/7390) at 2025-02-25 07:42 PM PST -katiejnete,2025-02-26T03:43:59Z,- katiejnete assigned to issue: [7439](https://github.com/hackforla/website/issues/7439) at 2025-02-25 07:43 PM PST -katiejnete,2025-02-26T03:44:13Z,- katiejnete unassigned from issue: [7439](https://github.com/hackforla/website/issues/7439) at 2025-02-25 07:44 PM PST -katiejnete,2025-02-26T03:44:42Z,- katiejnete commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2683820015) at 2025-02-25 07:44 PM PST -katiejnete,2025-02-26T03:44:49Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2683820119) at 2025-02-25 07:44 PM PST -katiejnete,2025-02-27T01:37:44Z,- katiejnete commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2686587634) at 2025-02-26 05:37 PM PST -katiejnete,2025-02-27T01:50:41Z,- katiejnete submitted pull request review: [7947](https://github.com/hackforla/website/pull/7947#pullrequestreview-2646349136) at 2025-02-26 05:50 PM PST -katiejnete,2025-02-27T01:55:49Z,- katiejnete commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2686607980) at 2025-02-26 05:55 PM PST -katiejnete,2025-02-27T02:16:32Z,- katiejnete submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2646398583) at 2025-02-26 06:16 PM PST -katiejnete,2025-02-27T07:32:50Z,- katiejnete submitted pull request review: [7947](https://github.com/hackforla/website/pull/7947#pullrequestreview-2646849268) at 2025-02-26 11:32 PM PST -katiejnete,2025-03-06T03:01:49Z,- katiejnete commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2702668808) at 2025-03-05 07:01 PM PST -katiejnete,2025-03-06T03:31:35Z,- katiejnete submitted pull request review: [7980](https://github.com/hackforla/website/pull/7980#pullrequestreview-2663232548) at 2025-03-05 07:31 PM PST -katiejnete,2025-03-06T05:42:53Z,- katiejnete submitted pull request review: [7980](https://github.com/hackforla/website/pull/7980#pullrequestreview-2663389439) at 2025-03-05 09:42 PM PST -katiejnete,2025-03-13T04:15:52Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2719861108) at 2025-03-12 09:15 PM PDT -katiejnete,2025-03-14T20:05:26Z,- katiejnete commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2725641708) at 2025-03-14 01:05 PM PDT -katiejnete,2025-03-14T20:05:41Z,- katiejnete submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2686702962) at 2025-03-14 01:05 PM PDT -katiejnete,2025-03-14T20:09:08Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2725649359) at 2025-03-14 01:09 PM PDT -katiejnete,2025-03-14T20:10:30Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2725651557) at 2025-03-14 01:10 PM PDT -katiejnete,2025-03-27T22:50:12Z,- katiejnete commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2759722181) at 2025-03-27 03:50 PM PDT -katiejnete,2025-03-29T05:25:52Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2763111139) at 2025-03-28 10:25 PM PDT -katiejnete,2025-04-01T03:36:15Z,- katiejnete assigned to issue: [4283](https://github.com/hackforla/website/issues/4283) at 2025-03-31 08:36 PM PDT -katiejnete,2025-04-01T03:41:52Z,- katiejnete unassigned from issue: [4283](https://github.com/hackforla/website/issues/4283) at 2025-03-31 08:41 PM PDT -katiejnete,2025-04-01T03:53:57Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2768026489) at 2025-03-31 08:53 PM PDT -katiejnete,2025-04-04T04:50:13Z,- katiejnete submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2741767343) at 2025-04-03 09:50 PM PDT -katiejnete,2025-04-10T03:00:23Z,- katiejnete commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2791426193) at 2025-04-09 08:00 PM PDT -katiejnete,2025-04-10T03:02:30Z,- katiejnete submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2755204621) at 2025-04-09 08:02 PM PDT -katiejnete,2025-04-10T03:09:32Z,- katiejnete commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2791435682) at 2025-04-09 08:09 PM PDT -katiejnete,2025-04-10T03:09:32Z,- katiejnete commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2791435682) at 2025-04-09 08:09 PM PDT -katiejnete,2025-04-10T03:09:57Z,- katiejnete submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2755210785) at 2025-04-09 08:09 PM PDT -katiejnete,2025-04-10T03:09:57Z,- katiejnete submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2755210785) at 2025-04-09 08:09 PM PDT -katiejnete,2025-04-10T03:51:11Z,- katiejnete commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2791480034) at 2025-04-09 08:51 PM PDT -katiejnete,2025-04-10T05:11:12Z,- katiejnete commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2791577763) at 2025-04-09 10:11 PM PDT -katiejnete,2025-04-12T05:13:41Z,- katiejnete submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2762055004) at 2025-04-11 10:13 PM PDT -katiejnete,2025-04-12T05:15:33Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2798495500) at 2025-04-11 10:15 PM PDT -katiejnete,2025-05-03T01:57:28Z,- katiejnete commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2848360403) at 2025-05-02 06:57 PM PDT -katiejnete,2025-05-04T02:37:04Z,- katiejnete commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2848921504) at 2025-05-03 07:37 PM PDT -katiejnete,2025-05-04T02:54:05Z,- katiejnete submitted pull request review: [8099](https://github.com/hackforla/website/pull/8099#pullrequestreview-2813341498) at 2025-05-03 07:54 PM PDT -katiejnete,2025-05-04T04:31:30Z,- katiejnete commented on pull request: [8114](https://github.com/hackforla/website/pull/8114#issuecomment-2848999658) at 2025-05-03 09:31 PM PDT -katiejnete,2025-05-04T04:33:16Z,- katiejnete submitted pull request review: [8114](https://github.com/hackforla/website/pull/8114#pullrequestreview-2813358688) at 2025-05-03 09:33 PM PDT -katiejnete,2025-05-05T01:51:25Z,- katiejnete submitted pull request review: [8114](https://github.com/hackforla/website/pull/8114#pullrequestreview-2813678136) at 2025-05-04 06:51 PM PDT -katiejnete,2025-05-05T02:20:35Z,- katiejnete submitted pull request review: [8099](https://github.com/hackforla/website/pull/8099#pullrequestreview-2813693648) at 2025-05-04 07:20 PM PDT -katiejnete,2025-05-06T19:47:04Z,- katiejnete commented on pull request: [8115](https://github.com/hackforla/website/pull/8115#issuecomment-2855761026) at 2025-05-06 12:47 PM PDT -katiejnete,2025-05-06T19:52:00Z,- katiejnete submitted pull request review: [8115](https://github.com/hackforla/website/pull/8115#pullrequestreview-2819444619) at 2025-05-06 12:52 PM PDT -katiejnete,2025-05-06T19:58:45Z,- katiejnete commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2855785718) at 2025-05-06 12:58 PM PDT -katiejnete,2025-05-06T19:59:41Z,- katiejnete submitted pull request review: [8116](https://github.com/hackforla/website/pull/8116#pullrequestreview-2819460614) at 2025-05-06 12:59 PM PDT -katiejnete,2025-05-11T17:00:10Z,- katiejnete submitted pull request review: [8116](https://github.com/hackforla/website/pull/8116#pullrequestreview-2831450891) at 2025-05-11 10:00 AM PDT -katiejnete,2025-05-22T19:58:49Z,- katiejnete commented on pull request: [8148](https://github.com/hackforla/website/pull/8148#issuecomment-2902407375) at 2025-05-22 12:58 PM PDT -katiejnete,2025-05-22T19:59:58Z,- katiejnete submitted pull request review: [8148](https://github.com/hackforla/website/pull/8148#pullrequestreview-2862430489) at 2025-05-22 12:59 PM PDT -katiejnete,2025-05-22T20:00:43Z,- katiejnete commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2902411214) at 2025-05-22 01:00 PM PDT -katiejnete,2025-05-22T20:06:14Z,- katiejnete submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2862443265) at 2025-05-22 01:06 PM PDT -katiejnete,2025-05-23T01:44:57Z,- katiejnete commented on pull request: [8153](https://github.com/hackforla/website/pull/8153#issuecomment-2903025331) at 2025-05-22 06:44 PM PDT -katiejnete,2025-05-23T02:03:32Z,- katiejnete submitted pull request review: [8153](https://github.com/hackforla/website/pull/8153#pullrequestreview-2862967261) at 2025-05-22 07:03 PM PDT -katiejnete,2025-05-23T02:23:13Z,- katiejnete assigned to issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892592217) at 2025-05-22 07:23 PM PDT -katiejnete,2025-05-23T02:23:59Z,- katiejnete commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2903072661) at 2025-05-22 07:23 PM PDT -katiejnete,2025-05-23T05:45:19Z,- katiejnete opened pull request: [8155](https://github.com/hackforla/website/pull/8155) at 2025-05-22 10:45 PM PDT -katiejnete,2025-05-23T23:48:30Z,- katiejnete commented on pull request: [8155](https://github.com/hackforla/website/pull/8155#issuecomment-2906039939) at 2025-05-23 04:48 PM PDT -katiejnete,2025-05-23T23:50:04Z,- katiejnete submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2865886192) at 2025-05-23 04:50 PM PDT -katiejnete,2025-05-25T17:45:02Z,- katiejnete pull request merged: [8155](https://github.com/hackforla/website/pull/8155#event-17805048538) at 2025-05-25 10:45 AM PDT -katiejnete,2025-05-28T05:14:18Z,- katiejnete commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2914957702) at 2025-05-27 10:14 PM PDT -katiejnete,2025-05-28T05:22:41Z,- katiejnete submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2873623729) at 2025-05-27 10:22 PM PDT -katiejnete,2025-05-31T02:48:00Z,- katiejnete submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2883165230) at 2025-05-30 07:48 PM PDT -katiejnete,2025-05-31T03:16:00Z,- katiejnete commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2924108077) at 2025-05-30 08:16 PM PDT -katiejnete,2025-05-31T03:17:00Z,- katiejnete submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2883224889) at 2025-05-30 08:17 PM PDT -katiejnete,2025-06-04T02:20:10Z,- katiejnete submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2894687340) at 2025-06-03 07:20 PM PDT -katiejnete,2025-06-04T02:21:36Z,- katiejnete commented on pull request: [8169](https://github.com/hackforla/website/pull/8169#issuecomment-2938101091) at 2025-06-03 07:21 PM PDT -katiejnete,2025-06-04T02:27:22Z,- katiejnete submitted pull request review: [8169](https://github.com/hackforla/website/pull/8169#pullrequestreview-2894703315) at 2025-06-03 07:27 PM PDT -katiejnete,2025-06-14T00:36:53Z,- katiejnete commented on pull request: [8180](https://github.com/hackforla/website/pull/8180#issuecomment-2972038522) at 2025-06-13 05:36 PM PDT -katiejnete,2025-06-18T03:26:16Z,- katiejnete submitted pull request review: [8180](https://github.com/hackforla/website/pull/8180#pullrequestreview-2937620636) at 2025-06-17 08:26 PM PDT -katiejnete,2025-06-25T02:58:56Z,- katiejnete commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-3002644163) at 2025-06-24 07:58 PM PDT -katiejnete,2025-06-25T03:04:14Z,- katiejnete submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2956176869) at 2025-06-24 08:04 PM PDT -katiejnete,2025-06-25T03:05:47Z,- katiejnete commented on pull request: [8204](https://github.com/hackforla/website/pull/8204#issuecomment-3002685585) at 2025-06-24 08:05 PM PDT -katiejnete,2025-06-25T03:12:32Z,- katiejnete submitted pull request review: [8204](https://github.com/hackforla/website/pull/8204#pullrequestreview-2956207515) at 2025-06-24 08:12 PM PDT -katiejnete,2025-06-29T18:19:31Z,- katiejnete submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2969366527) at 2025-06-29 11:19 AM PDT -katiejnete,2025-07-09T04:47:45Z,- katiejnete commented on pull request: [8245](https://github.com/hackforla/website/pull/8245#issuecomment-3051102517) at 2025-07-08 09:47 PM PDT -katiejnete,2025-07-09T04:50:02Z,- katiejnete submitted pull request review: [8245](https://github.com/hackforla/website/pull/8245#pullrequestreview-2999951743) at 2025-07-08 09:50 PM PDT -katiejnete,2025-07-23T03:39:23Z,- katiejnete commented on pull request: [8250](https://github.com/hackforla/website/pull/8250#issuecomment-3105556414) at 2025-07-22 08:39 PM PDT -katiejnete,2025-07-23T03:42:20Z,- katiejnete submitted pull request review: [8250](https://github.com/hackforla/website/pull/8250#pullrequestreview-3045476401) at 2025-07-22 08:42 PM PDT -kaushal1717,2023-10-24T17:13:24Z,- kaushal1717 commented on issue: [5760](https://github.com/hackforla/website/issues/5760#issuecomment-1777676384) at 2023-10-24 10:13 AM PDT -Kaushik080,2023-10-21T15:49:43Z,- Kaushik080 opened issue: [5747](https://github.com/hackforla/website/issues/5747) at 2023-10-21 08:49 AM PDT -Kaushik080,2023-10-21T15:56:50Z,- Kaushik080 commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-1773838572) at 2023-10-21 08:56 AM PDT -Kaushik080,2023-10-21T16:32:24Z,- Kaushik080 opened pull request: [5748](https://github.com/hackforla/website/pull/5748) at 2023-10-21 09:32 AM PDT -Kaushik080,2023-10-22T11:10:05Z,- Kaushik080 pull request closed w/o merging: [5748](https://github.com/hackforla/website/pull/5748#event-10733081742) at 2023-10-22 04:10 AM PDT -Kayala47,2019-11-23T04:00:11Z,- Kayala47 assigned to issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -Kayala47,2020-03-30T04:37:52Z,- Kayala47 unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-03-29 09:37 PM PDT -kayi007,5734,SKILLS ISSUE -kayi007,2023-10-19T02:12:39Z,- kayi007 opened issue: [5734](https://github.com/hackforla/website/issues/5734) at 2023-10-18 07:12 PM PDT -kayi007,2023-10-19T02:12:46Z,- kayi007 assigned to issue: [5734](https://github.com/hackforla/website/issues/5734) at 2023-10-18 07:12 PM PDT -KayodeAlabi,2021-09-08T20:13:13Z,- KayodeAlabi assigned to issue: [1968](https://github.com/hackforla/website/issues/1968) at 2021-09-08 01:13 PM PDT -KayodeAlabi,2021-09-28T12:07:02Z,- KayodeAlabi commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-929126159) at 2021-09-28 05:07 AM PDT -KazushiR,2586,SKILLS ISSUE -KazushiR,3882,SKILLS ISSUE -KazushiR,2021-12-14T03:44:30Z,- KazushiR opened issue: [2586](https://github.com/hackforla/website/issues/2586) at 2021-12-13 07:44 PM PST -KazushiR,2021-12-14T03:45:16Z,- KazushiR assigned to issue: [2586](https://github.com/hackforla/website/issues/2586#issuecomment-993128982) at 2021-12-13 07:45 PM PST -KazushiR,2021-12-14T19:27:39Z,- KazushiR commented on issue: [2586](https://github.com/hackforla/website/issues/2586#issuecomment-993907307) at 2021-12-14 11:27 AM PST -KazushiR,2021-12-17T23:41:07Z,- KazushiR closed issue as completed: [2586](https://github.com/hackforla/website/issues/2586#event-5787324050) at 2021-12-17 03:41 PM PST -KazushiR,2022-01-13T02:47:03Z,- KazushiR assigned to issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-958242332) at 2022-01-12 06:47 PM PST -KazushiR,2022-02-04T01:50:20Z,- KazushiR commented on issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-1029566209) at 2022-02-03 05:50 PM PST -KazushiR,2022-02-08T20:58:12Z,- KazushiR opened pull request: [2752](https://github.com/hackforla/website/pull/2752) at 2022-02-08 12:58 PM PST -KazushiR,2022-02-09T07:40:45Z,- KazushiR pull request closed w/o merging: [2752](https://github.com/hackforla/website/pull/2752#event-6032144939) at 2022-02-08 11:40 PM PST -KazushiR,2022-02-14T18:03:30Z,- KazushiR opened pull request: [2778](https://github.com/hackforla/website/pull/2778) at 2022-02-14 10:03 AM PST -KazushiR,2022-02-15T20:05:07Z,- KazushiR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1040738189) at 2022-02-15 12:05 PM PST -KazushiR,2022-02-16T00:45:45Z,- KazushiR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1040947068) at 2022-02-15 04:45 PM PST -KazushiR,2022-02-17T10:56:49Z,- KazushiR pull request merged: [2778](https://github.com/hackforla/website/pull/2778#event-6089371387) at 2022-02-17 02:56 AM PST -KazushiR,2022-02-17T21:21:52Z,- KazushiR assigned to issue: [2384](https://github.com/hackforla/website/issues/2384) at 2022-02-17 01:21 PM PST -KazushiR,2022-02-18T19:04:58Z,- KazushiR opened pull request: [2790](https://github.com/hackforla/website/pull/2790) at 2022-02-18 11:04 AM PST -KazushiR,2022-02-19T06:14:23Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1045860019) at 2022-02-18 10:14 PM PST -KazushiR,2022-02-19T23:42:38Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1046125358) at 2022-02-19 03:42 PM PST -KazushiR,2022-02-22T17:52:21Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1048059410) at 2022-02-22 09:52 AM PST -KazushiR,2022-02-22T17:52:35Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1048059605) at 2022-02-22 09:52 AM PST -KazushiR,2022-02-22T17:52:35Z,- KazushiR pull request merged: [2790](https://github.com/hackforla/website/pull/2790#event-6119925346) at 2022-02-22 09:52 AM PST -KazushiR,2022-03-05T07:59:03Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1059716431) at 2022-03-04 11:59 PM PST -KazushiR,2022-03-09T18:44:57Z,- KazushiR opened pull request: [2944](https://github.com/hackforla/website/pull/2944) at 2022-03-09 10:44 AM PST -KazushiR,2022-03-16T05:30:13Z,- KazushiR pull request merged: [2790](https://github.com/hackforla/website/pull/2790#event-6248134270) at 2022-03-15 10:30 PM PDT -KazushiR,2022-03-16T05:30:53Z,- KazushiR pull request closed w/o merging: [2944](https://github.com/hackforla/website/pull/2944#event-6248136479) at 2022-03-15 10:30 PM PDT -KazushiR,2022-03-16T05:31:15Z,- KazushiR reopened pull request: [2790](https://github.com/hackforla/website/pull/2790#event-6248134270) at 2022-03-15 10:31 PM PDT -KazushiR,2022-03-18T16:16:28Z,- KazushiR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-914579319) at 2022-03-18 09:16 AM PDT -KazushiR,2022-03-18T17:48:31Z,- KazushiR opened pull request: [2989](https://github.com/hackforla/website/pull/2989) at 2022-03-18 10:48 AM PDT -KazushiR,2022-03-18T17:48:40Z,- KazushiR pull request closed w/o merging: [2989](https://github.com/hackforla/website/pull/2989#event-6267830321) at 2022-03-18 10:48 AM PDT -KazushiR,2022-03-18T17:48:52Z,- KazushiR reopened pull request: [2989](https://github.com/hackforla/website/pull/2989#event-6267830321) at 2022-03-18 10:48 AM PDT -KazushiR,2022-03-18T17:51:05Z,- KazushiR pull request closed w/o merging: [2989](https://github.com/hackforla/website/pull/2989#event-6267842497) at 2022-03-18 10:51 AM PDT -KazushiR,2022-03-18T23:42:34Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1072889481) at 2022-03-18 04:42 PM PDT -KazushiR,2022-03-21T06:46:04Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1073529456) at 2022-03-20 11:46 PM PDT -KazushiR,2022-03-22T23:04:12Z,- KazushiR opened pull request: [3002](https://github.com/hackforla/website/pull/3002) at 2022-03-22 04:04 PM PDT -KazushiR,2022-03-22T23:04:52Z,- KazushiR pull request closed w/o merging: [3002](https://github.com/hackforla/website/pull/3002#event-6287314793) at 2022-03-22 04:04 PM PDT -KazushiR,2022-03-27T06:41:19Z,- KazushiR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1079852108) at 2022-03-26 11:41 PM PDT -KazushiR,2022-04-01T23:56:16Z,- KazushiR pull request merged: [2790](https://github.com/hackforla/website/pull/2790#event-6355881392) at 2022-04-01 04:56 PM PDT -KazushiR,2022-04-03T19:29:18Z,- KazushiR assigned to issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078521786) at 2022-04-03 12:29 PM PDT -KazushiR,2022-04-03T19:30:33Z,- KazushiR unassigned from issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078521786) at 2022-04-03 12:30 PM PDT -KazushiR,2022-04-03T19:31:42Z,- KazushiR assigned to issue: [2930](https://github.com/hackforla/website/issues/2930#issuecomment-1059838228) at 2022-04-03 12:31 PM PDT -KazushiR,2022-04-04T23:04:16Z,- KazushiR unassigned from issue: [2930](https://github.com/hackforla/website/issues/2930#issuecomment-1059838228) at 2022-04-04 04:04 PM PDT -KazushiR,2022-04-04T23:10:47Z,- KazushiR assigned to issue: [3025](https://github.com/hackforla/website/issues/3025#issuecomment-1086562240) at 2022-04-04 04:10 PM PDT -KazushiR,2022-04-04T23:11:20Z,- KazushiR commented on issue: [3025](https://github.com/hackforla/website/issues/3025#issuecomment-1088102933) at 2022-04-04 04:11 PM PDT -KazushiR,2022-04-06T20:19:24Z,- KazushiR commented on issue: [3025](https://github.com/hackforla/website/issues/3025#issuecomment-1090738732) at 2022-04-06 01:19 PM PDT -KazushiR,2022-04-08T02:31:46Z,- KazushiR opened pull request: [3037](https://github.com/hackforla/website/pull/3037) at 2022-04-07 07:31 PM PDT -KazushiR,2022-04-08T02:34:28Z,- KazushiR commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1092384400) at 2022-04-07 07:34 PM PDT -KazushiR,2022-04-08T17:38:45Z,- KazushiR pull request merged: [3037](https://github.com/hackforla/website/pull/3037#event-6398173053) at 2022-04-08 10:38 AM PDT -KazushiR,2022-04-11T22:44:12Z,- KazushiR assigned to issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1085456516) at 2022-04-11 03:44 PM PDT -KazushiR,2022-04-13T03:55:59Z,- KazushiR commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1097526913) at 2022-04-12 08:55 PM PDT -KazushiR,2022-04-15T19:25:45Z,- KazushiR opened pull request: [3057](https://github.com/hackforla/website/pull/3057) at 2022-04-15 12:25 PM PDT -KazushiR,2022-04-15T23:39:14Z,- KazushiR commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1100471674) at 2022-04-15 04:39 PM PDT -KazushiR,2022-05-08T16:02:35Z,- KazushiR pull request closed w/o merging: [3057](https://github.com/hackforla/website/pull/3057#event-6568813545) at 2022-05-08 09:02 AM PDT -KazushiR,2022-05-08T16:06:51Z,- KazushiR unassigned from issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1120444851) at 2022-05-08 09:06 AM PDT -KazushiR,2022-06-03T23:14:26Z,- KazushiR assigned to issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1120023610) at 2022-06-03 04:14 PM PDT -KazushiR,2022-06-08T21:05:25Z,- KazushiR unassigned from issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1120023610) at 2022-06-08 02:05 PM PDT -KazushiR,2023-01-27T03:18:13Z,- KazushiR assigned to issue: [3882](https://github.com/hackforla/website/issues/3882) at 2023-01-26 07:18 PM PST -KazushiR,2023-01-31T00:31:53Z,- KazushiR assigned to issue: [3892](https://github.com/hackforla/website/issues/3892) at 2023-01-30 04:31 PM PST -KazushiR,2023-01-31T00:33:11Z,- KazushiR commented on issue: [3892](https://github.com/hackforla/website/issues/3892#issuecomment-1409572359) at 2023-01-30 04:33 PM PST -KazushiR,2023-01-31T00:34:30Z,- KazushiR commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1409573274) at 2023-01-30 04:34 PM PST -KazushiR,2023-01-31T03:45:27Z,- KazushiR opened pull request: [3905](https://github.com/hackforla/website/pull/3905) at 2023-01-30 07:45 PM PST -KazushiR,2023-01-31T22:03:40Z,- KazushiR commented on pull request: [3905](https://github.com/hackforla/website/pull/3905#issuecomment-1411129167) at 2023-01-31 02:03 PM PST -KazushiR,2023-02-01T04:01:33Z,- KazushiR pull request merged: [3905](https://github.com/hackforla/website/pull/3905#event-8406135362) at 2023-01-31 08:01 PM PST -KazushiR,2023-02-01T04:01:48Z,- KazushiR reopened pull request: [3905](https://github.com/hackforla/website/pull/3905#event-8406135362) at 2023-01-31 08:01 PM PST -KazushiR,2023-02-01T06:23:41Z,- KazushiR pull request merged: [3905](https://github.com/hackforla/website/pull/3905#event-8406815140) at 2023-01-31 10:23 PM PST -KazushiR,2023-02-01T06:46:26Z,- KazushiR assigned to issue: [3255](https://github.com/hackforla/website/issues/3255#issuecomment-1384677733) at 2023-01-31 10:46 PM PST -KazushiR,2023-02-01T06:51:04Z,- KazushiR commented on issue: [3255](https://github.com/hackforla/website/issues/3255#issuecomment-1411547994) at 2023-01-31 10:51 PM PST -KazushiR,2023-02-02T07:23:40Z,- KazushiR opened pull request: [3923](https://github.com/hackforla/website/pull/3923) at 2023-02-01 11:23 PM PST -KazushiR,2023-02-03T03:01:19Z,- KazushiR commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1414751605) at 2023-02-02 07:01 PM PST -KazushiR,2023-02-05T18:07:28Z,- KazushiR commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1418203854) at 2023-02-05 10:07 AM PST -KazushiR,2023-02-05T18:14:58Z,- KazushiR commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1418205551) at 2023-02-05 10:14 AM PST -KazushiR,2023-02-06T06:14:17Z,- KazushiR submitted pull request review: [3930](https://github.com/hackforla/website/pull/3930#pullrequestreview-1284598591) at 2023-02-05 10:14 PM PST -KazushiR,2023-02-07T03:12:24Z,- KazushiR pull request merged: [3923](https://github.com/hackforla/website/pull/3923#event-8453667165) at 2023-02-06 07:12 PM PST -KazushiR,2023-02-07T03:29:59Z,- KazushiR assigned to issue: [3848](https://github.com/hackforla/website/issues/3848) at 2023-02-06 07:29 PM PST -KazushiR,2023-02-07T03:30:57Z,- KazushiR commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1420147935) at 2023-02-06 07:30 PM PST -KazushiR,2023-02-10T05:18:20Z,- KazushiR commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1425187339) at 2023-02-09 09:18 PM PST -KazushiR,2023-02-12T18:15:11Z,- KazushiR closed issue as completed: [3882](https://github.com/hackforla/website/issues/3882#event-8498768656) at 2023-02-12 10:15 AM PST -KazushiR,2023-02-13T01:14:00Z,- KazushiR commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1427194194) at 2023-02-12 05:14 PM PST -KazushiR,2023-02-17T07:41:53Z,- KazushiR commented on pull request: [3995](https://github.com/hackforla/website/pull/3995#issuecomment-1434249681) at 2023-02-16 11:41 PM PST -KazushiR,2023-02-17T23:37:42Z,- KazushiR commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1435396969) at 2023-02-17 03:37 PM PST -KazushiR,2023-02-17T23:37:46Z,- KazushiR closed issue as completed: [3882](https://github.com/hackforla/website/issues/3882#event-8551788611) at 2023-02-17 03:37 PM PST -KazushiR,2023-02-18T01:21:41Z,- KazushiR commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1435439351) at 2023-02-17 05:21 PM PST -KazushiR,2023-02-18T01:45:38Z,- KazushiR submitted pull request review: [3995](https://github.com/hackforla/website/pull/3995#pullrequestreview-1304455194) at 2023-02-17 05:45 PM PST -KazushiR,2023-02-21T06:14:56Z,- KazushiR commented on pull request: [4018](https://github.com/hackforla/website/pull/4018#issuecomment-1437914596) at 2023-02-20 10:14 PM PST -KazushiR,2023-02-22T01:56:27Z,- KazushiR assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1250339398) at 2023-02-21 05:56 PM PST -KazushiR,2023-02-22T01:56:56Z,- KazushiR commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1439328295) at 2023-02-21 05:56 PM PST -KazushiR,2023-02-22T02:44:04Z,- KazushiR submitted pull request review: [4018](https://github.com/hackforla/website/pull/4018#pullrequestreview-1308440419) at 2023-02-21 06:44 PM PST -KazushiR,2023-02-22T03:09:37Z,- KazushiR commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1439376446) at 2023-02-21 07:09 PM PST -KazushiR,2023-02-23T22:18:59Z,- KazushiR commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1442504674) at 2023-02-23 02:18 PM PST -KazushiR,2023-02-23T22:27:04Z,- KazushiR commented on pull request: [4030](https://github.com/hackforla/website/pull/4030#issuecomment-1442512937) at 2023-02-23 02:27 PM PST -KazushiR,2023-02-23T22:28:59Z,- KazushiR commented on pull request: [4030](https://github.com/hackforla/website/pull/4030#issuecomment-1442514714) at 2023-02-23 02:28 PM PST -KazushiR,2023-02-23T22:33:02Z,- KazushiR submitted pull request review: [4021](https://github.com/hackforla/website/pull/4021#pullrequestreview-1312244607) at 2023-02-23 02:33 PM PST -KazushiR,2023-02-26T20:25:58Z,- KazushiR commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1445458787) at 2023-02-26 12:25 PM PST -KazushiR,2023-03-01T00:43:05Z,- KazushiR commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1449140350) at 2023-02-28 04:43 PM PST -KazushiR,2023-03-01T01:45:30Z,- KazushiR commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1449191571) at 2023-02-28 05:45 PM PST -KazushiR,2023-03-01T07:14:49Z,- KazushiR submitted pull request review: [4058](https://github.com/hackforla/website/pull/4058#pullrequestreview-1319154391) at 2023-02-28 11:14 PM PST -KazushiR,2023-03-07T22:03:09Z,- KazushiR commented on pull request: [4123](https://github.com/hackforla/website/pull/4123#issuecomment-1458935014) at 2023-03-07 02:03 PM PST -KazushiR,2023-03-08T23:59:09Z,- KazushiR commented on pull request: [4123](https://github.com/hackforla/website/pull/4123#issuecomment-1461053123) at 2023-03-08 03:59 PM PST -KazushiR,2023-03-09T01:17:53Z,- KazushiR commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1461117277) at 2023-03-08 05:17 PM PST -KazushiR,2023-03-09T22:19:26Z,- KazushiR submitted pull request review: [4123](https://github.com/hackforla/website/pull/4123#pullrequestreview-1333898805) at 2023-03-09 02:19 PM PST -KazushiR,2023-03-13T21:15:44Z,- KazushiR assigned to issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1457327205) at 2023-03-13 02:15 PM PDT -KazushiR,2023-03-13T21:16:20Z,- KazushiR commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1466973740) at 2023-03-13 02:16 PM PDT -KazushiR,2023-03-13T21:16:25Z,- KazushiR unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1466973740) at 2023-03-13 02:16 PM PDT -KazushiR,2023-03-13T21:28:27Z,- KazushiR commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1466988442) at 2023-03-13 02:28 PM PDT -KazushiR,2023-03-13T22:25:19Z,- KazushiR unassigned from issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1466988442) at 2023-03-13 03:25 PM PDT -KazushiR,2023-03-13T22:49:49Z,- KazushiR assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1463378139) at 2023-03-13 03:49 PM PDT -KazushiR,2023-03-13T22:51:09Z,- KazushiR commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1467082947) at 2023-03-13 03:51 PM PDT -KazushiR,2023-03-15T02:40:16Z,- KazushiR commented on pull request: [4178](https://github.com/hackforla/website/pull/4178#issuecomment-1469213366) at 2023-03-14 07:40 PM PDT -KazushiR,2023-03-16T02:20:40Z,- KazushiR submitted pull request review: [4178](https://github.com/hackforla/website/pull/4178#pullrequestreview-1342762968) at 2023-03-15 07:20 PM PDT -KazushiR,2023-03-27T20:52:18Z,- KazushiR commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1485845334) at 2023-03-27 01:52 PM PDT -KazushiR,2023-03-27T20:58:56Z,- KazushiR submitted pull request review: [4278](https://github.com/hackforla/website/pull/4278#pullrequestreview-1359861925) at 2023-03-27 01:58 PM PDT -KazushiR,2023-03-28T20:50:32Z,- KazushiR commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1487574669) at 2023-03-28 01:50 PM PDT -KazushiR,2023-03-29T06:27:57Z,- KazushiR opened pull request: [4339](https://github.com/hackforla/website/pull/4339) at 2023-03-28 11:27 PM PDT -KazushiR,2023-03-29T06:29:35Z,- KazushiR commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1488016700) at 2023-03-28 11:29 PM PDT -KazushiR,2023-03-29T06:58:56Z,- KazushiR submitted pull request review: [4278](https://github.com/hackforla/website/pull/4278#pullrequestreview-1362371368) at 2023-03-28 11:58 PM PDT -KazushiR,2023-03-29T22:48:23Z,- KazushiR commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1489437271) at 2023-03-29 03:48 PM PDT -KazushiR,2023-03-29T22:48:53Z,- KazushiR commented on pull request: [4338](https://github.com/hackforla/website/pull/4338#issuecomment-1489437593) at 2023-03-29 03:48 PM PDT -KazushiR,2023-03-30T07:07:03Z,- KazushiR submitted pull request review: [4338](https://github.com/hackforla/website/pull/4338#pullrequestreview-1364457014) at 2023-03-30 12:07 AM PDT -KazushiR,2023-03-30T19:49:23Z,- KazushiR commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490853946) at 2023-03-30 12:49 PM PDT -KazushiR,2023-03-30T19:59:52Z,- KazushiR submitted pull request review: [4347](https://github.com/hackforla/website/pull/4347#pullrequestreview-1365838399) at 2023-03-30 12:59 PM PDT -KazushiR,2023-04-03T06:38:49Z,- KazushiR commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1493761542) at 2023-04-02 11:38 PM PDT -KazushiR,2023-04-03T06:44:52Z,- KazushiR submitted pull request review: [4384](https://github.com/hackforla/website/pull/4384#pullrequestreview-1368379257) at 2023-04-02 11:44 PM PDT -KazushiR,2023-04-04T22:20:14Z,- KazushiR commented on pull request: [4408](https://github.com/hackforla/website/pull/4408#issuecomment-1496674079) at 2023-04-04 03:20 PM PDT -KazushiR,2023-04-05T18:18:49Z,- KazushiR submitted pull request review: [4408](https://github.com/hackforla/website/pull/4408#pullrequestreview-1373453399) at 2023-04-05 11:18 AM PDT -KazushiR,2023-04-05T20:37:22Z,- KazushiR pull request merged: [4339](https://github.com/hackforla/website/pull/4339#event-8939240258) at 2023-04-05 01:37 PM PDT -KazushiR,2023-04-05T20:37:43Z,- KazushiR reopened pull request: [4339](https://github.com/hackforla/website/pull/4339#event-8939240258) at 2023-04-05 01:37 PM PDT -KazushiR,2023-04-05T20:39:04Z,- KazushiR commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498122973) at 2023-04-05 01:39 PM PDT -KazushiR,2023-04-05T21:15:30Z,- KazushiR commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498172184) at 2023-04-05 02:15 PM PDT -KazushiR,2023-04-05T21:17:16Z,- KazushiR commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498174902) at 2023-04-05 02:17 PM PDT -KazushiR,2023-04-05T22:58:25Z,- KazushiR assigned to issue: [3906](https://github.com/hackforla/website/issues/3906) at 2023-04-05 03:58 PM PDT -KazushiR,2023-04-05T22:59:32Z,- KazushiR commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1498259319) at 2023-04-05 03:59 PM PDT -KazushiR,2023-04-08T05:10:40Z,- KazushiR commented on pull request: [4443](https://github.com/hackforla/website/pull/4443#issuecomment-1500793790) at 2023-04-07 10:10 PM PDT -KazushiR,2023-04-09T08:17:04Z,- KazushiR submitted pull request review: [4443](https://github.com/hackforla/website/pull/4443#pullrequestreview-1376875053) at 2023-04-09 01:17 AM PDT -KazushiR,2023-04-09T08:18:19Z,- KazushiR commented on pull request: [4444](https://github.com/hackforla/website/pull/4444#issuecomment-1501073345) at 2023-04-09 01:18 AM PDT -KazushiR,2023-04-12T02:04:52Z,- KazushiR submitted pull request review: [4472](https://github.com/hackforla/website/pull/4472#pullrequestreview-1380312801) at 2023-04-11 07:04 PM PDT -KazushiR,2023-04-12T02:13:46Z,- KazushiR commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1504439526) at 2023-04-11 07:13 PM PDT -KazushiR,2023-04-12T03:01:37Z,- KazushiR opened issue: [4478](https://github.com/hackforla/website/issues/4478) at 2023-04-11 08:01 PM PDT -KazushiR,2023-04-13T19:59:01Z,- KazushiR submitted pull request review: [4468](https://github.com/hackforla/website/pull/4468#pullrequestreview-1384123425) at 2023-04-13 12:59 PM PDT -KazushiR,2023-04-14T02:14:17Z,- KazushiR commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1507833861) at 2023-04-13 07:14 PM PDT -KazushiR,2023-04-14T02:14:22Z,- KazushiR unassigned from issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1507833861) at 2023-04-13 07:14 PM PDT -KazushiR,2023-04-14T02:18:12Z,- KazushiR assigned to issue: [4296](https://github.com/hackforla/website/issues/4296) at 2023-04-13 07:18 PM PDT -KazushiR,2023-04-14T02:18:43Z,- KazushiR commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1507836289) at 2023-04-13 07:18 PM PDT -KazushiR,2023-04-24T16:40:23Z,- KazushiR submitted pull request review: [4554](https://github.com/hackforla/website/pull/4554#pullrequestreview-1398425637) at 2023-04-24 09:40 AM PDT -KazushiR,2023-04-24T16:41:11Z,- KazushiR commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1520500214) at 2023-04-24 09:41 AM PDT -KazushiR,2023-04-26T00:34:02Z,- KazushiR commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1522594701) at 2023-04-25 05:34 PM PDT -KazushiR,2023-04-26T02:16:00Z,- KazushiR commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1522665101) at 2023-04-25 07:16 PM PDT -KazushiR,2023-04-28T02:22:27Z,- KazushiR commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1526887214) at 2023-04-27 07:22 PM PDT -KazushiR,2023-05-15T06:38:44Z,- KazushiR commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1547272420) at 2023-05-14 11:38 PM PDT -KazushiR,2023-05-15T06:41:04Z,- KazushiR unassigned from issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1547272420) at 2023-05-14 11:41 PM PDT -kb-0311,2022-02-23T01:24:37Z,- kb-0311 opened pull request: [2854](https://github.com/hackforla/website/pull/2854) at 2022-02-22 05:24 PM PST -kb-0311,2022-02-23T22:34:10Z,- kb-0311 pull request closed w/o merging: [2854](https://github.com/hackforla/website/pull/2854#event-6128403947) at 2022-02-23 02:34 PM PST -KBWells77,3147,SKILLS ISSUE -KBWells77,2022-05-17T02:52:04Z,- KBWells77 opened issue: [3147](https://github.com/hackforla/website/issues/3147) at 2022-05-16 07:52 PM PDT -KBWells77,2022-05-18T01:39:31Z,- KBWells77 assigned to issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1128350668) at 2022-05-17 06:39 PM PDT -KBWells77,2022-05-24T02:04:58Z,- KBWells77 commented on pull request: [3168](https://github.com/hackforla/website/pull/3168#issuecomment-1135319328) at 2022-05-23 07:04 PM PDT -KBWells77,2022-05-24T02:36:18Z,- KBWells77 submitted pull request review: [3168](https://github.com/hackforla/website/pull/3168#pullrequestreview-982525257) at 2022-05-23 07:36 PM PDT -KBWells77,2022-05-29T23:32:35Z,- KBWells77 commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1140546396) at 2022-05-29 04:32 PM PDT -KBWells77,2022-05-31T17:16:08Z,- KBWells77 submitted pull request review: [3182](https://github.com/hackforla/website/pull/3182#pullrequestreview-990831669) at 2022-05-31 10:16 AM PDT -KBWells77,2022-06-28T22:19:09Z,- KBWells77 commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1169339763) at 2022-06-28 03:19 PM PDT -KBWells77,2022-07-19T22:30:08Z,- KBWells77 submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1044153364) at 2022-07-19 03:30 PM PDT -KBWells77,2022-07-26T03:21:09Z,- KBWells77 commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194948948) at 2022-07-25 08:21 PM PDT -KBWells77,2022-07-26T03:28:08Z,- KBWells77 submitted pull request review: [3427](https://github.com/hackforla/website/pull/3427#pullrequestreview-1050320622) at 2022-07-25 08:28 PM PDT -KBWells77,2022-07-27T00:47:30Z,- KBWells77 assigned to issue: [3403](https://github.com/hackforla/website/issues/3403) at 2022-07-26 05:47 PM PDT -KBWells77,2022-09-11T23:41:49Z,- KBWells77 unassigned from issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1243067921) at 2022-09-11 04:41 PM PDT -kceddinger,2021-04-18T17:19:02Z,- kceddinger commented on pull request: [1394](https://github.com/hackforla/website/pull/1394#issuecomment-822026790) at 2021-04-18 10:19 AM PDT -kceddinger,2021-04-18T17:21:31Z,- kceddinger commented on issue: [1142](https://github.com/hackforla/website/issues/1142#issuecomment-822027179) at 2021-04-18 10:21 AM PDT -kceddinger,2021-04-18T17:37:07Z,- kceddinger opened issue: [1417](https://github.com/hackforla/website/issues/1417) at 2021-04-18 10:37 AM PDT -kceddinger,2021-04-18T18:59:38Z,- kceddinger assigned to issue: [1022](https://github.com/hackforla/website/issues/1022) at 2021-04-18 11:59 AM PDT -kceddinger,2021-04-25T05:27:30Z,- kceddinger commented on issue: [1022](https://github.com/hackforla/website/issues/1022#issuecomment-826259962) at 2021-04-24 10:27 PM PDT -kceddinger,2021-04-25T05:39:32Z,- kceddinger commented on issue: [1022](https://github.com/hackforla/website/issues/1022#issuecomment-826261451) at 2021-04-24 10:39 PM PDT -kceddinger,2021-04-25T18:57:56Z,- kceddinger opened pull request: [1465](https://github.com/hackforla/website/pull/1465) at 2021-04-25 11:57 AM PDT -kceddinger,2021-04-25T20:18:44Z,- kceddinger pull request merged: [1465](https://github.com/hackforla/website/pull/1465#event-4641597761) at 2021-04-25 01:18 PM PDT -kceddinger,2021-04-26T19:02:02Z,- kceddinger assigned to issue: [1461](https://github.com/hackforla/website/issues/1461) at 2021-04-26 12:02 PM PDT -kceddinger,2021-04-26T21:30:53Z,- kceddinger commented on issue: [1461](https://github.com/hackforla/website/issues/1461#issuecomment-827159265) at 2021-04-26 02:30 PM PDT -kceddinger,2021-04-28T04:16:18Z,- kceddinger opened pull request: [1485](https://github.com/hackforla/website/pull/1485) at 2021-04-27 09:16 PM PDT -kceddinger,2021-04-28T04:18:42Z,- kceddinger pull request merged: [1485](https://github.com/hackforla/website/pull/1485#event-4654327156) at 2021-04-27 09:18 PM PDT -kcoronel,2020-08-19T00:48:36Z,- kcoronel assigned to issue: [703](https://github.com/hackforla/website/issues/703) at 2020-08-18 05:48 PM PDT -kcoronel,2020-08-22T23:40:00Z,- kcoronel unassigned from issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678709173) at 2020-08-22 04:40 PM PDT -kcoronel,2020-08-24T01:40:10Z,- kcoronel commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678861229) at 2020-08-23 06:40 PM PDT -kcoronel,2020-09-10T19:06:38Z,- kcoronel commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-690634958) at 2020-09-10 12:06 PM PDT -kcoronel,2020-11-07T02:38:10Z,- kcoronel commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-723378196) at 2020-11-06 06:38 PM PST -kcoronel,2022-08-24T01:32:11Z,- kcoronel opened issue: [3481](https://github.com/hackforla/website/issues/3481) at 2022-08-23 06:32 PM PDT -kcoronel,2023-03-08T00:50:20Z,- kcoronel opened issue: [4127](https://github.com/hackforla/website/issues/4127) at 2023-03-07 04:50 PM PST -kcoronel,2023-03-08T00:50:39Z,- kcoronel assigned to issue: [4127](https://github.com/hackforla/website/issues/4127) at 2023-03-07 04:50 PM PST -kcoronel,2023-03-15T21:43:48Z,- kcoronel commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1470885665) at 2023-03-15 02:43 PM PDT -kcoronel,2023-03-29T01:40:39Z,- kcoronel unassigned from issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1484239501) at 2023-03-28 06:40 PM PDT -kcoronel,2023-04-04T22:19:18Z,- kcoronel commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496673352) at 2023-04-04 03:19 PM PDT -kcoronel,2023-08-18T21:57:09Z,- kcoronel opened issue: [5252](https://github.com/hackforla/website/issues/5252) at 2023-08-18 02:57 PM PDT -kcoronel,2023-08-22T05:59:17Z,- kcoronel closed issue as completed: [5252](https://github.com/hackforla/website/issues/5252#event-10153487329) at 2023-08-21 10:59 PM PDT -kcoronel,2023-08-30T01:52:36Z,- kcoronel reopened issue: [5252](https://github.com/hackforla/website/issues/5252#event-10153487329) at 2023-08-29 06:52 PM PDT -kcoronel,2023-08-30T01:58:42Z,- kcoronel commented on issue: [5252](https://github.com/hackforla/website/issues/5252#issuecomment-1698378620) at 2023-08-29 06:58 PM PDT -kcoronel,2024-04-06T03:45:38Z,- kcoronel opened issue: [6583](https://github.com/hackforla/website/issues/6583) at 2024-04-05 08:45 PM PDT -kcoronel,2024-08-18T22:07:20Z,- kcoronel opened issue: [7314](https://github.com/hackforla/website/issues/7314) at 2024-08-18 03:07 PM PDT -kcoronel,2024-09-07T03:26:49Z,- kcoronel commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2335021893) at 2024-09-06 08:26 PM PDT -kcoronel,2024-09-20T07:14:40Z,- kcoronel commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2362996065) at 2024-09-20 12:14 AM PDT -kcoronel,2024-09-25T05:35:06Z,- kcoronel opened issue: [7521](https://github.com/hackforla/website/issues/7521) at 2024-09-24 10:35 PM PDT -kcoronel,2024-09-25T05:36:15Z,- kcoronel commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2373064609) at 2024-09-24 10:36 PM PDT -kcoronel,2024-10-14T02:40:53Z,- kcoronel opened issue: [7590](https://github.com/hackforla/website/issues/7590) at 2024-10-13 07:40 PM PDT -kcoronel,2024-12-09T23:44:41Z,- kcoronel commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2529800312) at 2024-12-09 03:44 PM PST -kcoronel,2025-03-02T02:18:16Z,- kcoronel opened issue: [7960](https://github.com/hackforla/website/issues/7960) at 2025-03-01 06:18 PM PST -kcoronel,2025-03-17T18:55:46Z,- kcoronel opened issue: [7993](https://github.com/hackforla/website/issues/7993) at 2025-03-17 11:55 AM PDT -kcoronel,2025-04-30T02:28:08Z,- kcoronel opened issue: [8100](https://github.com/hackforla/website/issues/8100) at 2025-04-29 07:28 PM PDT -kcoronel,2025-04-30T02:28:09Z,- kcoronel assigned to issue: [8100](https://github.com/hackforla/website/issues/8100) at 2025-04-29 07:28 PM PDT -kcoronel,2025-05-12T17:55:40Z,- kcoronel opened issue: [8123](https://github.com/hackforla/website/issues/8123) at 2025-05-12 10:55 AM PDT -kcoronel,2025-06-03T22:37:35Z,- kcoronel commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2937485811) at 2025-06-03 03:37 PM PDT -kdaca19xx,7971,SKILLS ISSUE -kdaca19xx,2025-03-04T04:18:20Z,- kdaca19xx opened issue: [7971](https://github.com/hackforla/website/issues/7971) at 2025-03-03 08:18 PM PST -kdaca19xx,2025-03-04T04:19:02Z,- kdaca19xx assigned to issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2696149985) at 2025-03-03 08:19 PM PST -kdaca19xx,2025-03-07T02:32:15Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2705379360) at 2025-03-06 06:32 PM PST -kdaca19xx,2025-03-14T23:40:49Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2726011510) at 2025-03-14 04:40 PM PDT -kdaca19xx,2025-03-24T21:09:09Z,- kdaca19xx submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2711686489) at 2025-03-24 02:09 PM PDT -kdaca19xx,2025-03-26T21:57:56Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2755834638) at 2025-03-26 02:57 PM PDT -kdaca19xx,2025-03-26T22:00:05Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2755837910) at 2025-03-26 03:00 PM PDT -kdaca19xx,2025-03-26T22:18:09Z,- kdaca19xx assigned to issue: [7472](https://github.com/hackforla/website/issues/7472) at 2025-03-26 03:18 PM PDT -kdaca19xx,2025-03-26T22:20:48Z,- kdaca19xx commented on issue: [7472](https://github.com/hackforla/website/issues/7472#issuecomment-2755870578) at 2025-03-26 03:20 PM PDT -kdaca19xx,2025-03-26T22:27:38Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2755880263) at 2025-03-26 03:27 PM PDT -kdaca19xx,2025-03-29T23:27:25Z,- kdaca19xx opened pull request: [8022](https://github.com/hackforla/website/pull/8022) at 2025-03-29 04:27 PM PDT -kdaca19xx,2025-04-02T21:43:43Z,- kdaca19xx submitted pull request review: [8020](https://github.com/hackforla/website/pull/8020#pullrequestreview-2737666745) at 2025-04-02 02:43 PM PDT -kdaca19xx,2025-04-03T06:28:35Z,- kdaca19xx pull request merged: [8022](https://github.com/hackforla/website/pull/8022#event-17106941294) at 2025-04-02 11:28 PM PDT -kdaca19xx,2025-04-05T01:30:26Z,- kdaca19xx assigned to issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2629862978) at 2025-04-04 06:30 PM PDT -kdaca19xx,2025-04-05T01:42:08Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2780124178) at 2025-04-04 06:42 PM PDT -kdaca19xx,2025-04-06T03:31:31Z,- kdaca19xx submitted pull request review: [8039](https://github.com/hackforla/website/pull/8039#pullrequestreview-2745029745) at 2025-04-05 08:31 PM PDT -kdaca19xx,2025-04-07T22:33:01Z,- kdaca19xx assigned to issue: [7482](https://github.com/hackforla/website/issues/7482) at 2025-04-07 03:33 PM PDT -kdaca19xx,2025-04-07T22:33:13Z,- kdaca19xx unassigned from issue: [7482](https://github.com/hackforla/website/issues/7482) at 2025-04-07 03:33 PM PDT -kdaca19xx,2025-04-07T22:37:07Z,- kdaca19xx assigned to issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2705733409) at 2025-04-07 03:37 PM PDT -kdaca19xx,2025-04-07T22:37:21Z,- kdaca19xx unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2784784449) at 2025-04-07 03:37 PM PDT -kdaca19xx,2025-04-09T02:39:24Z,- kdaca19xx commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2788139388) at 2025-04-08 07:39 PM PDT -kdaca19xx,2025-04-11T01:54:04Z,- kdaca19xx submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2758949392) at 2025-04-10 06:54 PM PDT -kdaca19xx,2025-04-12T20:55:18Z,- kdaca19xx opened pull request: [8060](https://github.com/hackforla/website/pull/8060) at 2025-04-12 01:55 PM PDT -kdaca19xx,2025-04-13T17:30:44Z,- kdaca19xx commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2800044032) at 2025-04-13 10:30 AM PDT -kdaca19xx,2025-04-14T01:55:36Z,- kdaca19xx commented on issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2800284768) at 2025-04-13 06:55 PM PDT -kdaca19xx,2025-04-16T02:13:31Z,- kdaca19xx submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2770453396) at 2025-04-15 07:13 PM PDT -kdaca19xx,2025-04-16T02:20:01Z,- kdaca19xx commented on pull request: [8058](https://github.com/hackforla/website/pull/8058#issuecomment-2808035049) at 2025-04-15 07:20 PM PDT -kdaca19xx,2025-04-16T02:20:47Z,- kdaca19xx commented on pull request: [8059](https://github.com/hackforla/website/pull/8059#issuecomment-2808035931) at 2025-04-15 07:20 PM PDT -kdaca19xx,2025-04-16T02:22:29Z,- kdaca19xx commented on pull request: [8061](https://github.com/hackforla/website/pull/8061#issuecomment-2808039250) at 2025-04-15 07:22 PM PDT -kdaca19xx,2025-04-18T17:23:17Z,- kdaca19xx pull request merged: [8060](https://github.com/hackforla/website/pull/8060#event-17322903470) at 2025-04-18 10:23 AM PDT -kdaca19xx,2025-04-19T01:25:42Z,- kdaca19xx submitted pull request review: [8059](https://github.com/hackforla/website/pull/8059#pullrequestreview-2779732134) at 2025-04-18 06:25 PM PDT -kdaca19xx,2025-04-19T01:42:21Z,- kdaca19xx submitted pull request review: [8058](https://github.com/hackforla/website/pull/8058#pullrequestreview-2779755766) at 2025-04-18 06:42 PM PDT -kdaca19xx,2025-04-19T01:49:04Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2816455013) at 2025-04-18 06:49 PM PDT -kdaca19xx,2025-04-20T19:48:25Z,- kdaca19xx commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2817313463) at 2025-04-20 12:48 PM PDT -kdaca19xx,2025-04-20T19:48:44Z,- kdaca19xx commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2817313754) at 2025-04-20 12:48 PM PDT -kdaca19xx,2025-04-20T19:49:27Z,- kdaca19xx commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2817314033) at 2025-04-20 12:49 PM PDT -kdaca19xx,2025-04-22T17:01:00Z,- kdaca19xx submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2784755487) at 2025-04-22 10:01 AM PDT -kdaca19xx,2025-04-24T21:34:04Z,- kdaca19xx submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2792571312) at 2025-04-24 02:34 PM PDT -kdaca19xx,2025-04-25T22:20:20Z,- kdaca19xx submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2795415506) at 2025-04-25 03:20 PM PDT -kdaca19xx,2025-04-26T17:38:11Z,- kdaca19xx assigned to issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2616494725) at 2025-04-26 10:38 AM PDT -kdaca19xx,2025-04-26T17:50:17Z,- kdaca19xx commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2832481120) at 2025-04-26 10:50 AM PDT -kdaca19xx,2025-04-27T19:30:38Z,- kdaca19xx commented on pull request: [8090](https://github.com/hackforla/website/pull/8090#issuecomment-2833606506) at 2025-04-27 12:30 PM PDT -kdaca19xx,2025-04-27T19:30:50Z,- kdaca19xx commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2833606584) at 2025-04-27 12:30 PM PDT -kdaca19xx,2025-04-28T17:39:42Z,- kdaca19xx submitted pull request review: [8091](https://github.com/hackforla/website/pull/8091#pullrequestreview-2800141776) at 2025-04-28 10:39 AM PDT -kdaca19xx,2025-04-29T17:47:13Z,- kdaca19xx submitted pull request review: [8090](https://github.com/hackforla/website/pull/8090#pullrequestreview-2804498181) at 2025-04-29 10:47 AM PDT -kdaca19xx,2025-05-02T02:10:08Z,- kdaca19xx opened pull request: [8107](https://github.com/hackforla/website/pull/8107) at 2025-05-01 07:10 PM PDT -kdaca19xx,2025-05-02T03:13:23Z,- kdaca19xx commented on pull request: [8101](https://github.com/hackforla/website/pull/8101#issuecomment-2846220791) at 2025-05-01 08:13 PM PDT -kdaca19xx,2025-05-02T03:13:37Z,- kdaca19xx commented on pull request: [8104](https://github.com/hackforla/website/pull/8104#issuecomment-2846220963) at 2025-05-01 08:13 PM PDT -kdaca19xx,2025-05-02T18:07:39Z,- kdaca19xx pull request merged: [8107](https://github.com/hackforla/website/pull/8107#event-17503204151) at 2025-05-02 11:07 AM PDT -kdaca19xx,2025-05-04T03:10:45Z,- kdaca19xx submitted pull request review: [8101](https://github.com/hackforla/website/pull/8101#pullrequestreview-2813350549) at 2025-05-03 08:10 PM PDT -kdaca19xx,2025-05-04T03:20:59Z,- kdaca19xx submitted pull request review: [8104](https://github.com/hackforla/website/pull/8104#pullrequestreview-2813351420) at 2025-05-03 08:20 PM PDT -kdaca19xx,2025-05-04T22:32:10Z,- kdaca19xx assigned to issue: [7449](https://github.com/hackforla/website/issues/7449) at 2025-05-04 03:32 PM PDT -kdaca19xx,2025-05-04T22:32:22Z,- kdaca19xx unassigned from issue: [7449](https://github.com/hackforla/website/issues/7449) at 2025-05-04 03:32 PM PDT -kdaca19xx,2025-05-05T02:16:33Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2849749698) at 2025-05-04 07:16 PM PDT -kdaca19xx,2025-05-05T02:17:45Z,- kdaca19xx commented on pull request: [8114](https://github.com/hackforla/website/pull/8114#issuecomment-2849750715) at 2025-05-04 07:17 PM PDT -kdaca19xx,2025-05-05T02:18:04Z,- kdaca19xx commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2849750959) at 2025-05-04 07:18 PM PDT -kdaca19xx,2025-05-07T00:07:41Z,- kdaca19xx submitted pull request review: [8099](https://github.com/hackforla/website/pull/8099#pullrequestreview-2820013006) at 2025-05-06 05:07 PM PDT -kdaca19xx,2025-05-07T00:18:05Z,- kdaca19xx submitted pull request review: [8114](https://github.com/hackforla/website/pull/8114#pullrequestreview-2820023146) at 2025-05-06 05:18 PM PDT -kdaca19xx,2025-05-07T00:24:32Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2856654510) at 2025-05-06 05:24 PM PDT -kdaca19xx,2025-05-07T00:36:08Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2856681535) at 2025-05-06 05:36 PM PDT -kdaca19xx,2025-05-11T17:45:56Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2870025122) at 2025-05-11 10:45 AM PDT -kdaca19xx,2025-05-13T00:50:36Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2874681795) at 2025-05-12 05:50 PM PDT -kdaca19xx,2025-05-15T14:46:52Z,- kdaca19xx commented on pull request: [8141](https://github.com/hackforla/website/pull/8141#issuecomment-2884099647) at 2025-05-15 07:46 AM PDT -kdaca19xx,2025-05-15T14:47:19Z,- kdaca19xx commented on pull request: [8142](https://github.com/hackforla/website/pull/8142#issuecomment-2884101691) at 2025-05-15 07:47 AM PDT -kdaca19xx,2025-05-15T14:47:28Z,- kdaca19xx commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2884102122) at 2025-05-15 07:47 AM PDT -kdaca19xx,2025-05-15T14:52:57Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2884125566) at 2025-05-15 07:52 AM PDT -kdaca19xx,2025-05-16T21:37:59Z,- kdaca19xx submitted pull request review: [8143](https://github.com/hackforla/website/pull/8143#pullrequestreview-2847661805) at 2025-05-16 02:37 PM PDT -kdaca19xx,2025-05-16T21:57:13Z,- kdaca19xx submitted pull request review: [8142](https://github.com/hackforla/website/pull/8142#pullrequestreview-2847683016) at 2025-05-16 02:57 PM PDT -kdaca19xx,2025-05-16T22:11:22Z,- kdaca19xx submitted pull request review: [8141](https://github.com/hackforla/website/pull/8141#pullrequestreview-2847699693) at 2025-05-16 03:11 PM PDT -kdaca19xx,2025-05-16T22:27:19Z,- kdaca19xx submitted pull request review: [8143](https://github.com/hackforla/website/pull/8143#pullrequestreview-2847716321) at 2025-05-16 03:27 PM PDT -kdaca19xx,2025-05-18T17:20:48Z,- kdaca19xx commented on pull request: [8140](https://github.com/hackforla/website/pull/8140#issuecomment-2889107276) at 2025-05-18 10:20 AM PDT -kdaca19xx,2025-05-18T17:21:03Z,- kdaca19xx commented on pull request: [8146](https://github.com/hackforla/website/pull/8146#issuecomment-2889107361) at 2025-05-18 10:21 AM PDT -kdaca19xx,2025-05-18T17:41:01Z,- kdaca19xx assigned to issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2277292199) at 2025-05-18 10:41 AM PDT -kdaca19xx,2025-05-18T17:42:20Z,- kdaca19xx commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2889117551) at 2025-05-18 10:42 AM PDT -kdaca19xx,2025-05-18T17:47:31Z,- kdaca19xx unassigned from issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2889117551) at 2025-05-18 10:47 AM PDT -kdaca19xx,2025-05-19T02:24:49Z,- kdaca19xx assigned to issue: [7988](https://github.com/hackforla/website/issues/7988) at 2025-05-18 07:24 PM PDT -kdaca19xx,2025-05-19T02:35:44Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2889445718) at 2025-05-18 07:35 PM PDT -kdaca19xx,2025-05-19T02:42:33Z,- kdaca19xx commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2889454654) at 2025-05-18 07:42 PM PDT -kdaca19xx,2025-05-20T22:41:18Z,- kdaca19xx submitted pull request review: [8146](https://github.com/hackforla/website/pull/8146#pullrequestreview-2855743978) at 2025-05-20 03:41 PM PDT -kdaca19xx,2025-05-20T22:58:45Z,- kdaca19xx submitted pull request review: [8140](https://github.com/hackforla/website/pull/8140#pullrequestreview-2855767410) at 2025-05-20 03:58 PM PDT -kdaca19xx,2025-05-20T23:02:28Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2896017780) at 2025-05-20 04:02 PM PDT -kdaca19xx,2025-05-24T02:03:00Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2906299910) at 2025-05-23 07:03 PM PDT -kdaca19xx,2025-05-25T18:40:18Z,- kdaca19xx commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2907997274) at 2025-05-25 11:40 AM PDT -kdaca19xx,2025-05-25T18:46:10Z,- kdaca19xx commented on pull request: [8156](https://github.com/hackforla/website/pull/8156#issuecomment-2908000905) at 2025-05-25 11:46 AM PDT -kdaca19xx,2025-05-25T18:46:18Z,- kdaca19xx commented on pull request: [8159](https://github.com/hackforla/website/pull/8159#issuecomment-2908000966) at 2025-05-25 11:46 AM PDT -kdaca19xx,2025-05-27T03:11:51Z,- kdaca19xx submitted pull request review: [8156](https://github.com/hackforla/website/pull/8156#pullrequestreview-2869449030) at 2025-05-26 08:11 PM PDT -kdaca19xx,2025-05-27T03:20:01Z,- kdaca19xx submitted pull request review: [8159](https://github.com/hackforla/website/pull/8159#pullrequestreview-2869456683) at 2025-05-26 08:20 PM PDT -kdaca19xx,2025-05-31T23:06:25Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2925915934) at 2025-05-31 04:06 PM PDT -kdaca19xx,2025-05-31T23:06:37Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2925916082) at 2025-05-31 04:06 PM PDT -kdaca19xx,2025-05-31T23:06:51Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2925916590) at 2025-05-31 04:06 PM PDT -kdaca19xx,2025-05-31T23:07:24Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2925917514) at 2025-05-31 04:07 PM PDT -kdaca19xx,2025-05-31T23:07:37Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2925917755) at 2025-05-31 04:07 PM PDT -kdaca19xx,2025-05-31T23:20:48Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2925954225) at 2025-05-31 04:20 PM PDT -kdaca19xx,2025-06-07T04:22:45Z,- kdaca19xx commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2951682307) at 2025-06-06 09:22 PM PDT -kdaca19xx,2025-06-09T03:31:34Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2954538405) at 2025-06-08 08:31 PM PDT -kdaca19xx,2025-06-10T00:34:14Z,- kdaca19xx commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2957371572) at 2025-06-09 05:34 PM PDT -kdaca19xx,2025-06-11T02:11:34Z,- kdaca19xx commented on pull request: [8177](https://github.com/hackforla/website/pull/8177#issuecomment-2961017491) at 2025-06-10 07:11 PM PDT -kdaca19xx,2025-06-13T21:29:06Z,- kdaca19xx submitted pull request review: [8177](https://github.com/hackforla/website/pull/8177#pullrequestreview-2926468069) at 2025-06-13 02:29 PM PDT -kdaca19xx,2025-06-16T03:33:31Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2975001209) at 2025-06-15 08:33 PM PDT -kdaca19xx,2025-06-20T21:58:49Z,- kdaca19xx commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2993014663) at 2025-06-20 02:58 PM PDT -kdaca19xx,2025-06-22T17:26:03Z,- kdaca19xx commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-2994335343) at 2025-06-22 10:26 AM PDT -kdaca19xx,2025-06-22T17:34:51Z,- kdaca19xx commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2994339355) at 2025-06-22 10:34 AM PDT -kdaca19xx,2025-06-23T01:45:45Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2994655611) at 2025-06-22 06:45 PM PDT -kdaca19xx,2025-06-23T01:55:41Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2994667924) at 2025-06-22 06:55 PM PDT -kdaca19xx,2025-06-23T01:58:38Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2994671447) at 2025-06-22 06:58 PM PDT -kdaca19xx,2025-06-23T20:20:37Z,- kdaca19xx submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2951424692) at 2025-06-23 01:20 PM PDT -kdaca19xx,2025-06-25T23:42:30Z,- kdaca19xx commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-3006543983) at 2025-06-25 04:42 PM PDT -kdaca19xx,2025-06-26T00:14:41Z,- kdaca19xx submitted pull request review: [8199](https://github.com/hackforla/website/pull/8199#pullrequestreview-2959997732) at 2025-06-25 05:14 PM PDT -kdaca19xx,2025-06-26T21:26:41Z,- kdaca19xx submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2963716547) at 2025-06-26 02:26 PM PDT -kdaca19xx,2025-06-29T17:13:39Z,- kdaca19xx commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-3016876977) at 2025-06-29 10:13 AM PDT -kdaca19xx,2025-06-29T17:13:48Z,- kdaca19xx commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3016877097) at 2025-06-29 10:13 AM PDT -kdaca19xx,2025-06-29T19:00:04Z,- kdaca19xx submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2969377281) at 2025-06-29 12:00 PM PDT -kdaca19xx,2025-06-30T04:59:46Z,- kdaca19xx commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-3017804344) at 2025-06-29 09:59 PM PDT -kdaca19xx,2025-06-30T23:45:17Z,- kdaca19xx submitted pull request review: [8235](https://github.com/hackforla/website/pull/8235#pullrequestreview-2973077487) at 2025-06-30 04:45 PM PDT -kellyc9,6628,SKILLS ISSUE -kellyc9,2024-04-09T20:44:26Z,- kellyc9 assigned to issue: [6614](https://github.com/hackforla/website/issues/6614) at 2024-04-09 01:44 PM PDT -kellyc9,2024-04-12T01:39:45Z,- kellyc9 opened issue: [6628](https://github.com/hackforla/website/issues/6628) at 2024-04-11 06:39 PM PDT -kellyc9,2024-04-12T01:39:45Z,- kellyc9 assigned to issue: [6628](https://github.com/hackforla/website/issues/6628) at 2024-04-11 06:39 PM PDT -kellyc9,2024-04-14T17:34:51Z,- kellyc9 opened issue: [6645](https://github.com/hackforla/website/issues/6645) at 2024-04-14 10:34 AM PDT -kellyc9,2024-05-03T20:28:28Z,- kellyc9 unassigned from issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2092435305) at 2024-05-03 01:28 PM PDT -kellychoe,2021-10-27T13:24:56Z,- kellychoe commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-952926961) at 2021-10-27 06:24 AM PDT -kellydinneen,2021-04-03T18:26:29Z,- kellydinneen commented on issue: [1048](https://github.com/hackforla/website/issues/1048#issuecomment-812906602) at 2021-04-03 11:26 AM PDT -kelseylondon,2023-02-04T00:36:24Z,- kelseylondon opened issue: [3931](https://github.com/hackforla/website/issues/3931) at 2023-02-03 04:36 PM PST -kelseylondon,2023-02-04T00:39:39Z,- kelseylondon commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416561416) at 2023-02-03 04:39 PM PST -kelseylondon,2023-02-12T19:02:46Z,- kelseylondon commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1427107968) at 2023-02-12 11:02 AM PST -kelwilson,8068,SKILLS ISSUE -kelwilson,2025-04-16T19:55:20Z,- kelwilson opened issue: [8068](https://github.com/hackforla/website/issues/8068) at 2025-04-16 12:55 PM PDT -kelwilson,2025-04-17T15:22:03Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2813303461) at 2025-04-17 08:22 AM PDT -kelwilson,2025-04-20T03:35:15Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2816973576) at 2025-04-19 08:35 PM PDT -kelwilson,2025-04-20T19:33:05Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2817308228) at 2025-04-20 12:33 PM PDT -kelwilson,2025-04-20T19:33:34Z,- kelwilson assigned to issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2817308228) at 2025-04-20 12:33 PM PDT -kelwilson,2025-04-21T13:00:22Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2818363446) at 2025-04-21 06:00 AM PDT -kelwilson,2025-04-21T13:11:59Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2818383366) at 2025-04-21 06:11 AM PDT -kelwilson,2025-06-22T19:21:06Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2994389673) at 2025-06-22 12:21 PM PDT -kelwilson,2025-06-23T08:46:10Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2995520232) at 2025-06-23 01:46 AM PDT -kelwilson,2025-06-24T08:32:01Z,- kelwilson assigned to issue: [8012](https://github.com/hackforla/website/issues/8012) at 2025-06-24 01:32 AM PDT -kelwilson,2025-06-24T22:55:59Z,- kelwilson opened pull request: [8204](https://github.com/hackforla/website/pull/8204) at 2025-06-24 03:55 PM PDT -kelwilson,2025-06-24T23:18:45Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-3002134204) at 2025-06-24 04:18 PM PDT -kelwilson,2025-06-27T15:32:16Z,- kelwilson pull request merged: [8204](https://github.com/hackforla/website/pull/8204#event-18360020811) at 2025-06-27 08:32 AM PDT -kelwilson,2025-06-29T19:47:48Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-3017030981) at 2025-06-29 12:47 PM PDT -kelwilson,2025-07-11T14:32:21Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-3062565408) at 2025-07-11 07:32 AM PDT -kelwilson,2025-07-19T10:31:28Z,- kelwilson assigned to issue: [7612](https://github.com/hackforla/website/issues/7612) at 2025-07-19 03:31 AM PDT -kelwilson,2025-07-24T10:28:25Z,- kelwilson commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-3112929437) at 2025-07-24 03:28 AM PDT -KenMan79,2021-01-06T04:32:55Z,- KenMan79 assigned to issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-755056564) at 2021-01-05 08:32 PM PST -KenMan79,2021-01-10T21:44:23Z,- KenMan79 unassigned from issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-757548975) at 2021-01-10 01:44 PM PST -KenMan79,2021-02-08T20:48:06Z,- KenMan79 commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-775449541) at 2021-02-08 12:48 PM PST -kennysghub,6596,SKILLS ISSUE -kennysghub,2024-04-09T02:49:53Z,- kennysghub opened issue: [6596](https://github.com/hackforla/website/issues/6596) at 2024-04-08 07:49 PM PDT -kennysghub,2024-04-09T02:59:26Z,- kennysghub assigned to issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2044059787) at 2024-04-08 07:59 PM PDT -kennytram,5615,SKILLS ISSUE -kennytram,2023-09-27T18:58:26Z,- kennytram opened issue: [5615](https://github.com/hackforla/website/issues/5615) at 2023-09-27 11:58 AM PDT -kennytram,2023-09-27T18:58:27Z,- kennytram assigned to issue: [5615](https://github.com/hackforla/website/issues/5615) at 2023-09-27 11:58 AM PDT -kennytram,2023-09-27T19:02:28Z,- kennytram commented on issue: [5615](https://github.com/hackforla/website/issues/5615#issuecomment-1737929129) at 2023-09-27 12:02 PM PDT -kennytram,2023-09-27T19:02:28Z,- kennytram closed issue as completed: [5615](https://github.com/hackforla/website/issues/5615#event-10491197093) at 2023-09-27 12:02 PM PDT -kerimedeiros,3969,SKILLS ISSUE -kerimedeiros,2023-02-14T04:12:45Z,- kerimedeiros opened issue: [3969](https://github.com/hackforla/website/issues/3969) at 2023-02-13 08:12 PM PST -kerimedeiros,2023-02-14T04:13:20Z,- kerimedeiros assigned to issue: [3969](https://github.com/hackforla/website/issues/3969) at 2023-02-13 08:13 PM PST -kerimedeiros,2023-02-18T15:36:12Z,- kerimedeiros commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1435701538) at 2023-02-18 07:36 AM PST -kerimedeiros,2023-02-18T15:36:12Z,- kerimedeiros closed issue as completed: [3969](https://github.com/hackforla/website/issues/3969#event-8553305238) at 2023-02-18 07:36 AM PST -kerimedeiros,2023-02-18T15:36:18Z,- kerimedeiros reopened issue: [3969](https://github.com/hackforla/website/issues/3969#event-8553305238) at 2023-02-18 07:36 AM PST -kerimedeiros,2023-04-17T14:42:35Z,- kerimedeiros commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1511504700) at 2023-04-17 07:42 AM PDT -kerimedeiros,2023-04-17T14:42:58Z,- kerimedeiros reopened issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1511504700) at 2023-04-17 07:42 AM PDT -kerimedeiros,2023-04-25T15:31:43Z,- kerimedeiros assigned to issue: [4417](https://github.com/hackforla/website/issues/4417) at 2023-04-25 08:31 AM PDT -kerimedeiros,2023-04-25T15:35:59Z,- kerimedeiros commented on issue: [4417](https://github.com/hackforla/website/issues/4417#issuecomment-1522012092) at 2023-04-25 08:35 AM PDT -kerimedeiros,2023-04-28T20:12:41Z,- kerimedeiros opened pull request: [4584](https://github.com/hackforla/website/pull/4584) at 2023-04-28 01:12 PM PDT -kerimedeiros,2023-05-01T02:27:34Z,- kerimedeiros pull request merged: [4584](https://github.com/hackforla/website/pull/4584#event-9133892387) at 2023-04-30 07:27 PM PDT -kerimedeiros,2023-05-01T16:02:02Z,- kerimedeiros commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1529882948) at 2023-05-01 09:02 AM PDT -kerimedeiros,2023-05-12T15:46:14Z,- kerimedeiros commented on pull request: [4656](https://github.com/hackforla/website/pull/4656#issuecomment-1545947008) at 2023-05-12 08:46 AM PDT -kerimedeiros,2023-05-12T15:52:45Z,- kerimedeiros commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1545954246) at 2023-05-12 08:52 AM PDT -kerimedeiros,2023-05-12T20:28:01Z,- kerimedeiros submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1425114865) at 2023-05-12 01:28 PM PDT -kerimedeiros,2023-05-31T00:17:30Z,- kerimedeiros commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1569311599) at 2023-05-30 05:17 PM PDT -kerimedeiros,2023-06-19T16:01:32Z,- kerimedeiros commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1597431004) at 2023-06-19 09:01 AM PDT -kerimedeiros,2023-06-19T16:01:32Z,- kerimedeiros closed issue as completed: [3969](https://github.com/hackforla/website/issues/3969#event-9570176649) at 2023-06-19 09:01 AM PDT -kesang20,4965,SKILLS ISSUE -kesang20,2023-07-18T01:49:32Z,- kesang20 opened issue: [4965](https://github.com/hackforla/website/issues/4965) at 2023-07-17 06:49 PM PDT -kesang20,2023-07-24T18:46:49Z,- kesang20 commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1648429705) at 2023-07-24 11:46 AM PDT -kesang20,2024-02-14T00:22:31Z,- kesang20 assigned to issue: [4965](https://github.com/hackforla/website/issues/4965#event-11636833257) at 2024-02-13 04:22 PM PST -kevin-421,6128,SKILLS ISSUE -kevin-421,2024-01-17T21:05:17Z,- kevin-421 opened issue: [6128](https://github.com/hackforla/website/issues/6128) at 2024-01-17 01:05 PM PST -kevin-421,2024-01-17T21:05:42Z,- kevin-421 assigned to issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1896698462) at 2024-01-17 01:05 PM PST -kevin-421,2024-01-23T23:45:20Z,- kevin-421 assigned to issue: [6104](https://github.com/hackforla/website/issues/6104#issuecomment-1891014194) at 2024-01-23 03:45 PM PST -kevin-421,2024-01-24T01:04:09Z,- kevin-421 opened pull request: [6148](https://github.com/hackforla/website/pull/6148) at 2024-01-23 05:04 PM PST -kevin-421,2024-01-28T19:15:25Z,- kevin-421 commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1913694711) at 2024-01-28 11:15 AM PST -kevin-421,2024-01-29T23:52:24Z,- kevin-421 commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1915781214) at 2024-01-29 03:52 PM PST -kevin-421,2024-01-30T19:44:08Z,- kevin-421 commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1917767429) at 2024-01-30 11:44 AM PST -kevin-421,2024-01-30T21:47:12Z,- kevin-421 commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1917950460) at 2024-01-30 01:47 PM PST -kevin-421,2024-01-31T07:39:21Z,- kevin-421 pull request merged: [6148](https://github.com/hackforla/website/pull/6148#event-11651827069) at 2024-01-30 11:39 PM PST -kevin-421,2024-01-31T18:15:22Z,- kevin-421 assigned to issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1917932724) at 2024-01-31 10:15 AM PST -kevin-421,2024-01-31T23:36:44Z,- kevin-421 opened pull request: [6201](https://github.com/hackforla/website/pull/6201) at 2024-01-31 03:36 PM PST -kevin-421,2024-02-03T05:02:05Z,- kevin-421 pull request merged: [6201](https://github.com/hackforla/website/pull/6201#event-11691603105) at 2024-02-02 09:02 PM PST -kevin-421,2024-02-11T19:11:52Z,- kevin-421 submitted pull request review: [6275](https://github.com/hackforla/website/pull/6275#pullrequestreview-1874418995) at 2024-02-11 11:11 AM PST -kevin31yu,5725,SKILLS ISSUE -kevin31yu,2023-10-17T03:05:17Z,- kevin31yu opened issue: [5725](https://github.com/hackforla/website/issues/5725) at 2023-10-16 08:05 PM PDT -kevin31yu,2023-10-17T03:05:27Z,- kevin31yu assigned to issue: [5725](https://github.com/hackforla/website/issues/5725) at 2023-10-16 08:05 PM PDT -kevin31yu,2023-10-20T03:00:41Z,- kevin31yu commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1772001472) at 2023-10-19 08:00 PM PDT -kevin31yu,2023-10-20T17:41:55Z,- kevin31yu assigned to issue: [5618](https://github.com/hackforla/website/issues/5618#issuecomment-1750752687) at 2023-10-20 10:41 AM PDT -kevin31yu,2023-10-20T18:37:29Z,- kevin31yu commented on issue: [5618](https://github.com/hackforla/website/issues/5618#issuecomment-1773216363) at 2023-10-20 11:37 AM PDT -kevin31yu,2023-10-20T18:39:37Z,- kevin31yu commented on issue: [5725](https://github.com/hackforla/website/issues/5725#issuecomment-1773218957) at 2023-10-20 11:39 AM PDT -kevin31yu,2023-10-20T18:52:28Z,- kevin31yu opened pull request: [5744](https://github.com/hackforla/website/pull/5744) at 2023-10-20 11:52 AM PDT -kevin31yu,2023-10-21T16:39:14Z,- kevin31yu commented on pull request: [5744](https://github.com/hackforla/website/pull/5744#issuecomment-1773853093) at 2023-10-21 09:39 AM PDT -kevin31yu,2023-10-22T15:59:37Z,- kevin31yu pull request merged: [5744](https://github.com/hackforla/website/pull/5744#event-10733550410) at 2023-10-22 08:59 AM PDT -kevin31yu,2023-10-22T17:11:58Z,- kevin31yu submitted pull request review: [5751](https://github.com/hackforla/website/pull/5751#pullrequestreview-1691465318) at 2023-10-22 10:11 AM PDT -kevin31yu,2023-10-22T17:14:34Z,- kevin31yu submitted pull request review: [5751](https://github.com/hackforla/website/pull/5751#pullrequestreview-1691465648) at 2023-10-22 10:14 AM PDT -kevin31yu,2023-10-22T17:25:50Z,- kevin31yu commented on issue: [5725](https://github.com/hackforla/website/issues/5725#issuecomment-1774151422) at 2023-10-22 10:25 AM PDT -kevin31yu,2023-10-22T17:36:05Z,- kevin31yu closed issue as completed: [5725](https://github.com/hackforla/website/issues/5725#event-10733705295) at 2023-10-22 10:36 AM PDT -kevin31yu,2023-10-23T22:29:18Z,- kevin31yu assigned to issue: [5713](https://github.com/hackforla/website/issues/5713#issuecomment-1763813931) at 2023-10-23 03:29 PM PDT -kevin31yu,2023-10-23T22:30:56Z,- kevin31yu commented on issue: [5713](https://github.com/hackforla/website/issues/5713#issuecomment-1776124492) at 2023-10-23 03:30 PM PDT -kevin31yu,2023-10-23T22:51:35Z,- kevin31yu opened pull request: [5768](https://github.com/hackforla/website/pull/5768) at 2023-10-23 03:51 PM PDT -kevin31yu,2023-10-25T02:33:40Z,- kevin31yu pull request merged: [5768](https://github.com/hackforla/website/pull/5768#event-10761421339) at 2023-10-24 07:33 PM PDT -kevin31yu,2023-10-25T17:43:45Z,- kevin31yu assigned to issue: [5738](https://github.com/hackforla/website/issues/5738) at 2023-10-25 10:43 AM PDT -kevin31yu,2023-10-25T17:45:17Z,- kevin31yu commented on issue: [5738](https://github.com/hackforla/website/issues/5738#issuecomment-1779762742) at 2023-10-25 10:45 AM PDT -kevin31yu,2023-11-17T11:22:48Z,- kevin31yu assigned to issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1800686279) at 2023-11-17 03:22 AM PST -kevin31yu,2023-11-17T11:26:16Z,- kevin31yu commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1816204259) at 2023-11-17 03:26 AM PST -kevin31yu,2023-11-22T04:25:38Z,- kevin31yu commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1822095424) at 2023-11-21 08:25 PM PST -kevin31yu,2023-11-30T13:55:49Z,- kevin31yu commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1833829881) at 2023-11-30 05:55 AM PST -kevin31yu,2023-12-01T09:03:25Z,- kevin31yu commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1835723375) at 2023-12-01 01:03 AM PST -kevin31yu,2023-12-01T09:04:07Z,- kevin31yu unassigned from issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1835723375) at 2023-12-01 01:04 AM PST -kevin31yu,2023-12-01T09:04:49Z,- kevin31yu assigned to issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1826089811) at 2023-12-01 01:04 AM PST -kevin31yu,2023-12-01T09:13:05Z,- kevin31yu commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1835737591) at 2023-12-01 01:13 AM PST -kevin31yu,2023-12-06T03:00:48Z,- kevin31yu commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1842007975) at 2023-12-05 07:00 PM PST -kevin31yu,2023-12-06T03:01:52Z,- kevin31yu commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1842008758) at 2023-12-05 07:01 PM PST -kevin31yu,2023-12-08T06:17:41Z,- kevin31yu opened pull request: [5976](https://github.com/hackforla/website/pull/5976) at 2023-12-07 10:17 PM PST -kevin31yu,2023-12-08T06:22:29Z,- kevin31yu commented on pull request: [5976](https://github.com/hackforla/website/pull/5976#issuecomment-1846607832) at 2023-12-07 10:22 PM PST -kevin31yu,2023-12-18T05:32:25Z,- kevin31yu pull request merged: [5976](https://github.com/hackforla/website/pull/5976#event-11271838352) at 2023-12-17 09:32 PM PST -kevin31yu,2025-02-03T13:40:15Z,- kevin31yu unassigned from issue: [5738](https://github.com/hackforla/website/issues/5738#event-10800362583) at 2025-02-03 05:40 AM PST -kevin31yu,2025-02-03T13:40:39Z,- kevin31yu unassigned from issue: [5725](https://github.com/hackforla/website/issues/5725#event-10733705295) at 2025-02-03 05:40 AM PST -kevinashworth,8131,SKILLS ISSUE -kevinashworth,2025-05-14T02:52:15Z,- kevinashworth opened issue: [8131](https://github.com/hackforla/website/issues/8131) at 2025-05-13 07:52 PM PDT -kevinashworth,2025-05-14T02:52:21Z,- kevinashworth assigned to issue: [8131](https://github.com/hackforla/website/issues/8131) at 2025-05-13 07:52 PM PDT -kevinashworth,2025-05-14T03:19:04Z,- kevinashworth commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2878514781) at 2025-05-13 08:19 PM PDT -kevinashworth,2025-05-16T00:07:09Z,- kevinashworth assigned to issue: [7995](https://github.com/hackforla/website/issues/7995) at 2025-05-15 05:07 PM PDT -kevinashworth,2025-05-16T00:56:19Z,- kevinashworth opened pull request: [8146](https://github.com/hackforla/website/pull/8146) at 2025-05-15 05:56 PM PDT -kevinashworth,2025-05-18T17:37:00Z,- kevinashworth commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2889114787) at 2025-05-18 10:37 AM PDT -kevinashworth,2025-05-18T17:57:11Z,- kevinashworth commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2889125833) at 2025-05-18 10:57 AM PDT -kevinashworth,2025-05-18T18:12:48Z,- kevinashworth assigned to issue: [7954](https://github.com/hackforla/website/issues/7954) at 2025-05-18 11:12 AM PDT -kevinashworth,2025-05-18T18:13:04Z,- kevinashworth unassigned from issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889134342) at 2025-05-18 11:13 AM PDT -kevinashworth,2025-05-18T18:14:45Z,- kevinashworth assigned to issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889134342) at 2025-05-18 11:14 AM PDT -kevinashworth,2025-05-18T18:15:01Z,- kevinashworth unassigned from issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889135248) at 2025-05-18 11:15 AM PDT -kevinashworth,2025-05-18T18:18:50Z,- kevinashworth commented on issue: [7995](https://github.com/hackforla/website/issues/7995#issuecomment-2889137438) at 2025-05-18 11:18 AM PDT -kevinashworth,2025-05-18T18:52:07Z,- kevinashworth commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2889151116) at 2025-05-18 11:52 AM PDT -kevinashworth,2025-05-21T02:23:28Z,- kevinashworth pull request merged: [8146](https://github.com/hackforla/website/pull/8146#event-17744364959) at 2025-05-20 07:23 PM PDT -kevinashworth,2025-05-22T16:32:31Z,- kevinashworth commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2901871389) at 2025-05-22 09:32 AM PDT -kevinashworth,2025-05-22T16:44:46Z,- kevinashworth commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2901906023) at 2025-05-22 09:44 AM PDT -kevinashworth,2025-05-23T01:00:07Z,- kevinashworth assigned to issue: [7996](https://github.com/hackforla/website/issues/7996) at 2025-05-22 06:00 PM PDT -kevinashworth,2025-05-23T01:14:37Z,- kevinashworth opened pull request: [8154](https://github.com/hackforla/website/pull/8154) at 2025-05-22 06:14 PM PDT -kevinashworth,2025-05-25T18:46:20Z,- kevinashworth commented on pull request: [8154](https://github.com/hackforla/website/pull/8154#issuecomment-2908000977) at 2025-05-25 11:46 AM PDT -kevinashworth,2025-05-25T18:48:09Z,- kevinashworth pull request merged: [8154](https://github.com/hackforla/website/pull/8154#event-17805199403) at 2025-05-25 11:48 AM PDT -kevinashworth,2025-05-28T02:26:45Z,- kevinashworth commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2914695666) at 2025-05-27 07:26 PM PDT -kevinashworth,2025-06-01T01:32:15Z,- kevinashworth closed issue as completed: [8164](https://github.com/hackforla/website/issues/8164#event-17907808684) at 2025-05-31 06:32 PM PDT -kevinashworth,2025-06-01T01:34:41Z,- kevinashworth closed issue as completed: [8163](https://github.com/hackforla/website/issues/8163#event-17907821576) at 2025-05-31 06:34 PM PDT -kevinashworth,2025-06-08T18:27:36Z,- kevinashworth commented on pull request: [8173](https://github.com/hackforla/website/pull/8173#issuecomment-2954214196) at 2025-06-08 11:27 AM PDT -kevinashworth,2025-06-08T18:28:54Z,- kevinashworth submitted pull request review: [8173](https://github.com/hackforla/website/pull/8173#pullrequestreview-2908601395) at 2025-06-08 11:28 AM PDT -kevindphan,2022-01-31T04:22:23Z,- kevindphan opened issue: [2728](https://github.com/hackforla/website/issues/2728) at 2022-01-30 08:22 PM PST -kevindphan,2022-01-31T04:25:33Z,- kevindphan commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1025368004) at 2022-01-30 08:25 PM PST -kevindphan,2022-01-31T04:33:57Z,- kevindphan commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1025372870) at 2022-01-30 08:33 PM PST -kevindphan,2022-01-31T04:35:52Z,- kevindphan commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1025373590) at 2022-01-30 08:35 PM PST -kevinreber,2021-02-07T20:28:16Z,- kevinreber assigned to issue: [999](https://github.com/hackforla/website/issues/999) at 2021-02-07 12:28 PM PST -kevinreber,2021-02-09T06:17:42Z,- kevinreber opened pull request: [1020](https://github.com/hackforla/website/pull/1020) at 2021-02-08 10:17 PM PST -kevinreber,2021-02-09T23:49:07Z,- kevinreber pull request merged: [1020](https://github.com/hackforla/website/pull/1020#event-4312053106) at 2021-02-09 03:49 PM PST -kevinreber,2021-02-10T03:42:54Z,- kevinreber assigned to issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-766514891) at 2021-02-09 07:42 PM PST -kevinreber,2021-02-10T03:52:15Z,- kevinreber unassigned from issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-766514891) at 2021-02-09 07:52 PM PST -kevinreber,2021-02-10T04:03:25Z,- kevinreber assigned to issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-766514891) at 2021-02-09 08:03 PM PST -kevinreber,2021-02-20T06:50:48Z,- kevinreber commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782574082) at 2021-02-19 10:50 PM PST -kevinreber,2021-02-20T06:55:22Z,- kevinreber commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-782574634) at 2021-02-19 10:55 PM PST -kevinreber,2021-02-21T18:07:23Z,- kevinreber commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-782899327) at 2021-02-21 10:07 AM PST -kevinreber,2021-02-22T20:16:34Z,- kevinreber commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783646496) at 2021-02-22 12:16 PM PST -kevinreber,2021-02-23T03:24:01Z,- kevinreber opened pull request: [1094](https://github.com/hackforla/website/pull/1094) at 2021-02-22 07:24 PM PST -kevinreber,2021-02-23T03:46:26Z,- kevinreber assigned to issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783727450) at 2021-02-22 07:46 PM PST -kevinreber,2021-02-23T04:59:21Z,- kevinreber pull request merged: [1094](https://github.com/hackforla/website/pull/1094#event-4363195927) at 2021-02-22 08:59 PM PST -kevinreber,2021-02-26T03:02:03Z,- kevinreber closed issue by PR 1121: [1065](https://github.com/hackforla/website/issues/1065#event-4379779386) at 2021-02-25 07:02 PM PST -kevinreber,2021-02-26T03:02:46Z,- kevinreber commented on pull request: [1121](https://github.com/hackforla/website/pull/1121#issuecomment-786378047) at 2021-02-25 07:02 PM PST -kevinreber,2021-02-28T17:53:08Z,- kevinreber commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-787491508) at 2021-02-28 09:53 AM PST -kevinreber,2021-02-28T19:22:59Z,- kevinreber commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-787507251) at 2021-02-28 11:22 AM PST -kevinreber,2021-02-28T21:04:22Z,- kevinreber opened pull request: [1140](https://github.com/hackforla/website/pull/1140) at 2021-02-28 01:04 PM PST -kevinreber,2021-02-28T23:30:35Z,- kevinreber commented on pull request: [1140](https://github.com/hackforla/website/pull/1140#issuecomment-787545542) at 2021-02-28 03:30 PM PST -kevinreber,2021-03-01T16:58:34Z,- kevinreber pull request merged: [1140](https://github.com/hackforla/website/pull/1140#event-4390771014) at 2021-03-01 08:58 AM PST -kevinreber,2021-03-02T18:03:18Z,- kevinreber assigned to issue: [1128](https://github.com/hackforla/website/issues/1128) at 2021-03-02 10:03 AM PST -kevinreber,2021-03-03T01:41:56Z,- kevinreber opened pull request: [1153](https://github.com/hackforla/website/pull/1153) at 2021-03-02 05:41 PM PST -kevinreber,2021-03-03T05:20:54Z,- kevinreber pull request merged: [1153](https://github.com/hackforla/website/pull/1153#event-4399608361) at 2021-03-02 09:20 PM PST -kevinreber,2021-03-03T18:34:38Z,- kevinreber assigned to issue: [1107](https://github.com/hackforla/website/issues/1107#issuecomment-788395101) at 2021-03-03 10:34 AM PST -kevinreber,2021-03-03T20:12:05Z,- kevinreber commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-790023603) at 2021-03-03 12:12 PM PST -kevinreber,2021-03-04T00:03:03Z,- kevinreber opened pull request: [1160](https://github.com/hackforla/website/pull/1160) at 2021-03-03 04:03 PM PST -kevinreber,2021-03-04T02:02:03Z,- kevinreber pull request merged: [1160](https://github.com/hackforla/website/pull/1160#event-4405291258) at 2021-03-03 06:02 PM PST -kevinreber,2021-03-04T02:05:34Z,- kevinreber assigned to issue: [1110](https://github.com/hackforla/website/issues/1110) at 2021-03-03 06:05 PM PST -kevinreber,2021-03-04T02:11:50Z,- kevinreber submitted pull request review: [1157](https://github.com/hackforla/website/pull/1157#pullrequestreview-603639502) at 2021-03-03 06:11 PM PST -kevinreber,2021-03-07T04:02:47Z,- kevinreber commented on issue: [1110](https://github.com/hackforla/website/issues/1110#issuecomment-792197160) at 2021-03-06 08:02 PM PST -kevinreber,2021-03-10T04:05:23Z,- kevinreber opened issue: [1192](https://github.com/hackforla/website/issues/1192) at 2021-03-09 08:05 PM PST -kevinreber,2021-03-14T07:56:51Z,- kevinreber commented on issue: [1110](https://github.com/hackforla/website/issues/1110#issuecomment-798856642) at 2021-03-14 12:56 AM PDT -kevinreber,2021-03-17T02:43:23Z,- kevinreber opened pull request: [1213](https://github.com/hackforla/website/pull/1213) at 2021-03-16 07:43 PM PDT -kevinreber,2021-03-19T04:19:31Z,- kevinreber assigned to issue: [1254](https://github.com/hackforla/website/issues/1254) at 2021-03-18 09:19 PM PDT -kevinreber,2021-03-19T04:19:40Z,- kevinreber assigned to issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-784821786) at 2021-03-18 09:19 PM PDT -kevinreber,2021-03-19T06:47:09Z,- kevinreber opened pull request: [1263](https://github.com/hackforla/website/pull/1263) at 2021-03-18 11:47 PM PDT -kevinreber,2021-03-21T02:03:09Z,- kevinreber commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-803499237) at 2021-03-20 07:03 PM PDT -kevinreber,2021-03-21T19:51:48Z,- kevinreber opened pull request: [1288](https://github.com/hackforla/website/pull/1288) at 2021-03-21 12:51 PM PDT -kevinreber,2021-03-21T20:35:44Z,- kevinreber commented on pull request: [1263](https://github.com/hackforla/website/pull/1263#issuecomment-803655652) at 2021-03-21 01:35 PM PDT -kevinreber,2021-03-21T21:05:35Z,- kevinreber commented on pull request: [1213](https://github.com/hackforla/website/pull/1213#issuecomment-803659811) at 2021-03-21 02:05 PM PDT -kevinreber,2021-03-22T20:56:35Z,- kevinreber pull request merged: [1213](https://github.com/hackforla/website/pull/1213#event-4492504057) at 2021-03-22 01:56 PM PDT -kevinreber,2021-03-23T22:34:30Z,- kevinreber commented on pull request: [1263](https://github.com/hackforla/website/pull/1263#issuecomment-805312261) at 2021-03-23 03:34 PM PDT -kevinreber,2021-03-23T22:34:30Z,- kevinreber pull request closed w/o merging: [1263](https://github.com/hackforla/website/pull/1263#event-4498856845) at 2021-03-23 03:34 PM PDT -kevinreber,2021-03-23T22:37:04Z,- kevinreber opened pull request: [1316](https://github.com/hackforla/website/pull/1316) at 2021-03-23 03:37 PM PDT -kevinreber,2021-03-23T22:39:20Z,- kevinreber commented on issue: [1254](https://github.com/hackforla/website/issues/1254#issuecomment-805314375) at 2021-03-23 03:39 PM PDT -kevinreber,2021-03-23T22:39:20Z,- kevinreber closed issue by PR 1316: [1254](https://github.com/hackforla/website/issues/1254#event-4498870230) at 2021-03-23 03:39 PM PDT -kevinreber,2021-03-24T02:34:06Z,- kevinreber commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-805436251) at 2021-03-23 07:34 PM PDT -kevinreber,2021-03-24T04:00:25Z,- kevinreber pull request merged: [1316](https://github.com/hackforla/website/pull/1316#event-4499626291) at 2021-03-23 09:00 PM PDT -kevinreber,2021-04-03T23:38:24Z,- kevinreber commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-812941324) at 2021-04-03 04:38 PM PDT -kevinreber,2021-04-10T14:51:47Z,- kevinreber pull request merged: [1288](https://github.com/hackforla/website/pull/1288#event-4577555118) at 2021-04-10 07:51 AM PDT -kevngaleu,2021-08-08T19:22:57Z,- kevngaleu assigned to issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-886252289) at 2021-08-08 12:22 PM PDT -kevngaleu,2021-08-20T15:56:35Z,- kevngaleu commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-902792301) at 2021-08-20 08:56 AM PDT -kevngaleu,2021-08-25T20:30:56Z,- kevngaleu opened issue: [2180](https://github.com/hackforla/website/issues/2180) at 2021-08-25 01:30 PM PDT -kevngaleu,2021-09-08T19:12:07Z,- kevngaleu opened pull request: [2241](https://github.com/hackforla/website/pull/2241) at 2021-09-08 12:12 PM PDT -kevngaleu,2021-09-08T19:13:03Z,- kevngaleu pull request merged: [2241](https://github.com/hackforla/website/pull/2241#event-5274260382) at 2021-09-08 12:13 PM PDT -kevngaleu,2021-09-08T20:36:20Z,- kevngaleu assigned to issue: [2037](https://github.com/hackforla/website/issues/2037) at 2021-09-08 01:36 PM PDT -kevngaleu,2021-09-13T10:29:54Z,- kevngaleu commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-918058977) at 2021-09-13 03:29 AM PDT -kevngaleu,2021-09-20T20:23:45Z,- kevngaleu commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-923268673) at 2021-09-20 01:23 PM PDT -kevngaleu,2021-10-10T16:40:42Z,- kevngaleu commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-939513363) at 2021-10-10 09:40 AM PDT -kevngaleu,2021-10-13T17:50:48Z,- kevngaleu commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-942568800) at 2021-10-13 10:50 AM PDT -kevngaleu,2021-10-13T17:52:57Z,- kevngaleu commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-942570401) at 2021-10-13 10:52 AM PDT -kevngaleu,2021-10-20T13:13:28Z,- kevngaleu commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-947653989) at 2021-10-20 06:13 AM PDT -kezzaam,5352,SKILLS ISSUE -kezzaam,2023-08-30T03:42:04Z,- kezzaam opened issue: [5352](https://github.com/hackforla/website/issues/5352) at 2023-08-29 08:42 PM PDT -kezzaam,2023-08-30T03:52:13Z,- kezzaam assigned to issue: [5352](https://github.com/hackforla/website/issues/5352#issuecomment-1698441964) at 2023-08-29 08:52 PM PDT -kezzaam,2023-09-02T23:46:39Z,- kezzaam assigned to issue: [5394](https://github.com/hackforla/website/issues/5394) at 2023-09-02 04:46 PM PDT -kezzaam,2023-09-03T00:11:13Z,- kezzaam commented on issue: [5394](https://github.com/hackforla/website/issues/5394#issuecomment-1703969372) at 2023-09-02 05:11 PM PDT -kezzaam,2023-09-03T00:14:06Z,- kezzaam commented on issue: [5352](https://github.com/hackforla/website/issues/5352#issuecomment-1703969949) at 2023-09-02 05:14 PM PDT -kezzaam,2023-09-03T00:37:17Z,- kezzaam commented on issue: [5394](https://github.com/hackforla/website/issues/5394#issuecomment-1703973745) at 2023-09-02 05:37 PM PDT -kezzaam,2023-09-03T00:51:48Z,- kezzaam opened pull request: [5423](https://github.com/hackforla/website/pull/5423) at 2023-09-02 05:51 PM PDT -kezzaam,2023-09-06T23:42:52Z,- kezzaam pull request merged: [5423](https://github.com/hackforla/website/pull/5423#event-10301401300) at 2023-09-06 04:42 PM PDT -kezzaam,2023-09-11T01:28:38Z,- kezzaam commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1713021810) at 2023-09-10 06:28 PM PDT -kezzaam,2023-09-11T02:16:32Z,- kezzaam submitted pull request review: [5468](https://github.com/hackforla/website/pull/5468#pullrequestreview-1619019802) at 2023-09-10 07:16 PM PDT -kezzaam,2023-09-11T02:28:23Z,- kezzaam commented on pull request: [5466](https://github.com/hackforla/website/pull/5466#issuecomment-1713065621) at 2023-09-10 07:28 PM PDT -kezzaam,2023-09-11T02:46:06Z,- kezzaam submitted pull request review: [5466](https://github.com/hackforla/website/pull/5466#pullrequestreview-1619037007) at 2023-09-10 07:46 PM PDT -kezzaam,2023-09-12T04:34:55Z,- kezzaam assigned to issue: [5384](https://github.com/hackforla/website/issues/5384) at 2023-09-11 09:34 PM PDT -kezzaam,2023-09-12T05:01:16Z,- kezzaam opened pull request: [5488](https://github.com/hackforla/website/pull/5488) at 2023-09-11 10:01 PM PDT -kezzaam,2023-09-12T21:46:51Z,- kezzaam pull request merged: [5488](https://github.com/hackforla/website/pull/5488#event-10352038922) at 2023-09-12 02:46 PM PDT -kezzaam,2023-09-12T21:47:37Z,- kezzaam reopened pull request: [5488](https://github.com/hackforla/website/pull/5488#event-10352038922) at 2023-09-12 02:47 PM PDT -kezzaam,2023-09-12T21:49:45Z,- kezzaam commented on pull request: [5488](https://github.com/hackforla/website/pull/5488#issuecomment-1716510774) at 2023-09-12 02:49 PM PDT -kezzaam,2023-09-12T21:55:29Z,- kezzaam commented on pull request: [5488](https://github.com/hackforla/website/pull/5488#issuecomment-1716533955) at 2023-09-12 02:55 PM PDT -kezzaam,2023-09-15T05:25:44Z,- kezzaam pull request merged: [5488](https://github.com/hackforla/website/pull/5488#event-10379171234) at 2023-09-14 10:25 PM PDT -kezzaam,2023-09-15T07:18:07Z,- kezzaam commented on issue: [5352](https://github.com/hackforla/website/issues/5352#issuecomment-1720796102) at 2023-09-15 12:18 AM PDT -kezzaam,2023-09-15T07:19:45Z,- kezzaam closed issue as completed: [5352](https://github.com/hackforla/website/issues/5352#event-10379998473) at 2023-09-15 12:19 AM PDT -kezzaam,2023-09-15T07:46:09Z,- kezzaam assigned to issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1720331966) at 2023-09-15 12:46 AM PDT -kezzaam,2023-09-15T07:49:39Z,- kezzaam commented on issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1720833145) at 2023-09-15 12:49 AM PDT -kezzaam,2023-09-18T07:40:46Z,- kezzaam commented on pull request: [5548](https://github.com/hackforla/website/pull/5548#issuecomment-1722895617) at 2023-09-18 12:40 AM PDT -kezzaam,2023-09-18T07:40:59Z,- kezzaam commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1722895898) at 2023-09-18 12:40 AM PDT -kezzaam,2023-09-18T07:49:30Z,- kezzaam commented on pull request: [5548](https://github.com/hackforla/website/pull/5548#issuecomment-1722906263) at 2023-09-18 12:49 AM PDT -kezzaam,2023-09-20T02:39:10Z,- kezzaam commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1726794597) at 2023-09-19 07:39 PM PDT -kezzaam,2023-09-20T21:55:23Z,- kezzaam submitted pull request review: [5551](https://github.com/hackforla/website/pull/5551#pullrequestreview-1636565909) at 2023-09-20 02:55 PM PDT -kezzaam,2023-09-20T22:03:03Z,- kezzaam commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1728485687) at 2023-09-20 03:03 PM PDT -kezzaam,2023-09-20T22:34:17Z,- kezzaam commented on issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1728512032) at 2023-09-20 03:34 PM PDT -kezzaam,2023-09-21T21:05:49Z,- kezzaam commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1730302063) at 2023-09-21 02:05 PM PDT -kezzaam,2023-09-27T05:50:50Z,- kezzaam submitted pull request review: [5551](https://github.com/hackforla/website/pull/5551#pullrequestreview-1645647168) at 2023-09-26 10:50 PM PDT -kezzaam,2023-09-27T06:03:02Z,- kezzaam commented on pull request: [5613](https://github.com/hackforla/website/pull/5613#issuecomment-1736755571) at 2023-09-26 11:03 PM PDT -kezzaam,2023-10-01T23:18:58Z,- kezzaam commented on issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1742234988) at 2023-10-01 04:18 PM PDT -kezzaam,2023-10-03T05:52:06Z,- kezzaam commented on pull request: [5646](https://github.com/hackforla/website/pull/5646#issuecomment-1744255348) at 2023-10-02 10:52 PM PDT -kezzaam,2023-10-03T05:52:34Z,- kezzaam commented on pull request: [5648](https://github.com/hackforla/website/pull/5648#issuecomment-1744255694) at 2023-10-02 10:52 PM PDT -kezzaam,2023-10-03T06:02:52Z,- kezzaam submitted pull request review: [5648](https://github.com/hackforla/website/pull/5648#pullrequestreview-1654404329) at 2023-10-02 11:02 PM PDT -kezzaam,2023-10-03T06:13:24Z,- kezzaam submitted pull request review: [5646](https://github.com/hackforla/website/pull/5646#pullrequestreview-1654418731) at 2023-10-02 11:13 PM PDT -kezzaam,2023-10-08T17:33:47Z,- kezzaam commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1752113225) at 2023-10-08 10:33 AM PDT -kezzaam,2023-10-10T23:00:28Z,- kezzaam submitted pull request review: [5668](https://github.com/hackforla/website/pull/5668#pullrequestreview-1669279963) at 2023-10-10 04:00 PM PDT -kezzaam,2023-10-13T21:08:58Z,- kezzaam commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1762227490) at 2023-10-13 02:08 PM PDT -kezzaam,2023-10-13T21:12:21Z,- kezzaam assigned to issue: [5703](https://github.com/hackforla/website/issues/5703) at 2023-10-13 02:12 PM PDT -kezzaam,2023-10-13T21:16:09Z,- kezzaam commented on issue: [5703](https://github.com/hackforla/website/issues/5703#issuecomment-1762237436) at 2023-10-13 02:16 PM PDT -kezzaam,2023-10-13T21:38:35Z,- kezzaam opened pull request: [5704](https://github.com/hackforla/website/pull/5704) at 2023-10-13 02:38 PM PDT -kezzaam,2023-10-14T02:30:14Z,- kezzaam submitted pull request review: [5668](https://github.com/hackforla/website/pull/5668#pullrequestreview-1677680032) at 2023-10-13 07:30 PM PDT -kezzaam,2023-10-15T16:03:13Z,- kezzaam pull request merged: [5704](https://github.com/hackforla/website/pull/5704#event-10657962049) at 2023-10-15 09:03 AM PDT -kezzaam,2023-10-28T02:07:45Z,- kezzaam commented on pull request: [5789](https://github.com/hackforla/website/pull/5789#issuecomment-1783664950) at 2023-10-27 07:07 PM PDT -kezzaam,2023-10-28T02:13:54Z,- kezzaam submitted pull request review: [5789](https://github.com/hackforla/website/pull/5789#pullrequestreview-1702679814) at 2023-10-27 07:13 PM PDT -kezzaam,2023-10-28T02:20:40Z,- kezzaam assigned to issue: [5311](https://github.com/hackforla/website/issues/5311#issuecomment-1694113518) at 2023-10-27 07:20 PM PDT -kezzaam,2023-10-28T02:24:13Z,- kezzaam commented on issue: [5311](https://github.com/hackforla/website/issues/5311#issuecomment-1783668939) at 2023-10-27 07:24 PM PDT -kezzaam,2023-10-28T02:41:09Z,- kezzaam commented on issue: [5311](https://github.com/hackforla/website/issues/5311#issuecomment-1783672612) at 2023-10-27 07:41 PM PDT -kgold2018,7232,SKILLS ISSUE -kgold2018,2024-08-07T02:35:06Z,- kgold2018 opened issue: [7232](https://github.com/hackforla/website/issues/7232) at 2024-08-06 07:35 PM PDT -kgold2018,2024-08-07T02:35:07Z,- kgold2018 assigned to issue: [7232](https://github.com/hackforla/website/issues/7232) at 2024-08-06 07:35 PM PDT -kgold2018,2024-08-11T19:10:03Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2282859268) at 2024-08-11 12:10 PM PDT -kgold2018,2024-08-11T19:13:05Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2282860011) at 2024-08-11 12:13 PM PDT -kgold2018,2024-08-11T19:14:26Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2282860342) at 2024-08-11 12:14 PM PDT -kgold2018,2024-08-11T19:38:39Z,- kgold2018 assigned to issue: [7251](https://github.com/hackforla/website/issues/7251) at 2024-08-11 12:38 PM PDT -kgold2018,2024-08-11T22:19:13Z,- kgold2018 opened pull request: [7272](https://github.com/hackforla/website/pull/7272) at 2024-08-11 03:19 PM PDT -kgold2018,2024-08-12T21:10:22Z,- kgold2018 commented on pull request: [7272](https://github.com/hackforla/website/pull/7272#issuecomment-2284912920) at 2024-08-12 02:10 PM PDT -kgold2018,2024-08-13T04:57:52Z,- kgold2018 pull request merged: [7272](https://github.com/hackforla/website/pull/7272#event-13857635519) at 2024-08-12 09:57 PM PDT -kgold2018,2024-08-16T22:35:52Z,- kgold2018 assigned to issue: [7248](https://github.com/hackforla/website/issues/7248) at 2024-08-16 03:35 PM PDT -kgold2018,2024-08-16T22:36:04Z,- kgold2018 unassigned from issue: [7248](https://github.com/hackforla/website/issues/7248) at 2024-08-16 03:36 PM PDT -kgold2018,2024-08-16T23:16:18Z,- kgold2018 assigned to issue: [7173](https://github.com/hackforla/website/issues/7173) at 2024-08-16 04:16 PM PDT -kgold2018,2024-08-17T00:29:55Z,- kgold2018 opened pull request: [7307](https://github.com/hackforla/website/pull/7307) at 2024-08-16 05:29 PM PDT -kgold2018,2024-08-18T04:53:31Z,- kgold2018 commented on pull request: [7307](https://github.com/hackforla/website/pull/7307#issuecomment-2295113554) at 2024-08-17 09:53 PM PDT -kgold2018,2024-08-18T22:39:05Z,- kgold2018 commented on issue: [7173](https://github.com/hackforla/website/issues/7173#issuecomment-2295420331) at 2024-08-18 03:39 PM PDT -kgold2018,2024-08-22T17:33:14Z,- kgold2018 pull request merged: [7307](https://github.com/hackforla/website/pull/7307#event-13981909247) at 2024-08-22 10:33 AM PDT -kgold2018,2024-08-22T23:30:12Z,- kgold2018 commented on issue: [7288](https://github.com/hackforla/website/issues/7288#issuecomment-2305913868) at 2024-08-22 04:30 PM PDT -kgold2018,2024-08-22T23:38:43Z,- kgold2018 submitted pull request review: [7342](https://github.com/hackforla/website/pull/7342#pullrequestreview-2255968743) at 2024-08-22 04:38 PM PDT -kgold2018,2024-08-23T00:06:56Z,- kgold2018 submitted pull request review: [7342](https://github.com/hackforla/website/pull/7342#pullrequestreview-2255988609) at 2024-08-22 05:06 PM PDT -kgold2018,2024-08-24T01:13:30Z,- kgold2018 submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2258278646) at 2024-08-23 06:13 PM PDT -kgold2018,2024-08-25T04:57:34Z,- kgold2018 submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2259089167) at 2024-08-24 09:57 PM PDT -kgold2018,2024-08-25T05:28:55Z,- kgold2018 submitted pull request review: [7348](https://github.com/hackforla/website/pull/7348#pullrequestreview-2259159354) at 2024-08-24 10:28 PM PDT -kgold2018,2024-08-27T15:55:25Z,- kgold2018 submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2263848537) at 2024-08-27 08:55 AM PDT -kgold2018,2024-08-27T16:13:59Z,- kgold2018 submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2263905196) at 2024-08-27 09:13 AM PDT -kgold2018,2024-09-08T03:27:57Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336530285) at 2024-09-07 08:27 PM PDT -kgold2018,2024-09-08T03:30:46Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336530724) at 2024-09-07 08:30 PM PDT -kgold2018,2024-09-08T03:46:53Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336533414) at 2024-09-07 08:46 PM PDT -kgold2018,2024-09-08T03:53:15Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336534661) at 2024-09-07 08:53 PM PDT -kgold2018,2024-09-08T04:03:24Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336536457) at 2024-09-07 09:03 PM PDT -kgold2018,2024-09-08T04:10:54Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336538428) at 2024-09-07 09:10 PM PDT -kgold2018,2024-09-08T04:27:14Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336541636) at 2024-09-07 09:27 PM PDT -kgold2018,2024-09-08T04:29:50Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336542122) at 2024-09-07 09:29 PM PDT -kgold2018,2024-09-08T04:36:11Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336543425) at 2024-09-07 09:36 PM PDT -kgold2018,2024-09-08T04:39:30Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336544060) at 2024-09-07 09:39 PM PDT -kgold2018,2024-09-08T04:42:11Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336544574) at 2024-09-07 09:42 PM PDT -kgold2018,2024-09-08T05:07:32Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336549561) at 2024-09-07 10:07 PM PDT -kgold2018,2024-09-10T03:35:56Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2339541501) at 2024-09-09 08:35 PM PDT -kgold2018,2024-09-15T17:26:16Z,- kgold2018 commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2351688512) at 2024-09-15 10:26 AM PDT -kgold2018,2024-09-15T17:55:04Z,- kgold2018 commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2351701629) at 2024-09-15 10:55 AM PDT -kgold2018,2024-09-15T18:07:09Z,- kgold2018 commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2351707620) at 2024-09-15 11:07 AM PDT -kgold2018,2024-09-15T18:11:54Z,- kgold2018 commented on issue: [7349](https://github.com/hackforla/website/issues/7349#issuecomment-2351709686) at 2024-09-15 11:11 AM PDT -kgold2018,2024-09-29T16:37:47Z,- kgold2018 commented on issue: [7182](https://github.com/hackforla/website/issues/7182#issuecomment-2381420251) at 2024-09-29 09:37 AM PDT -kgold2018,2024-10-12T20:48:09Z,- kgold2018 commented on issue: [7295](https://github.com/hackforla/website/issues/7295#issuecomment-2408696160) at 2024-10-12 01:48 PM PDT -kgold2018,2024-10-12T23:10:14Z,- kgold2018 commented on issue: [6226](https://github.com/hackforla/website/issues/6226#issuecomment-2408740130) at 2024-10-12 04:10 PM PDT -kgold2018,2024-10-12T23:13:07Z,- kgold2018 commented on issue: [6230](https://github.com/hackforla/website/issues/6230#issuecomment-2408740749) at 2024-10-12 04:13 PM PDT -kgold2018,2024-10-12T23:14:47Z,- kgold2018 commented on issue: [6231](https://github.com/hackforla/website/issues/6231#issuecomment-2408741061) at 2024-10-12 04:14 PM PDT -kgold2018,2024-10-13T03:44:24Z,- kgold2018 commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2408807306) at 2024-10-12 08:44 PM PDT -kgold2018,2024-10-13T04:14:33Z,- kgold2018 commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2408814511) at 2024-10-12 09:14 PM PDT -kgold2018,2024-11-05T04:32:26Z,- kgold2018 commented on issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2456211707) at 2024-11-04 08:32 PM PST -kgold2018,2024-11-07T07:02:38Z,- kgold2018 commented on issue: [6934](https://github.com/hackforla/website/issues/6934#issuecomment-2461468180) at 2024-11-06 11:02 PM PST -kgold2018,2024-11-24T19:54:24Z,- kgold2018 closed issue as not planned: [7331](https://github.com/hackforla/website/issues/7331#event-15411351809) at 2024-11-24 11:54 AM PST -Khadijahibidapo,3144,SKILLS ISSUE -Khadijahibidapo,2022-05-15T18:46:25Z,- Khadijahibidapo opened issue: [3144](https://github.com/hackforla/website/issues/3144) at 2022-05-15 11:46 AM PDT -Khadijahibidapo,2022-05-15T18:49:19Z,- Khadijahibidapo assigned to issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1126994871) at 2022-05-15 11:49 AM PDT -Khadijahibidapo,2022-06-12T19:40:01Z,- Khadijahibidapo commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1153272566) at 2022-06-12 12:40 PM PDT -Khinememe-Kyaw,5091,SKILLS ISSUE -Khinememe-Kyaw,7894,SKILLS ISSUE -Khinememe-Kyaw,2023-07-26T03:56:19Z,- Khinememe-Kyaw opened issue: [5091](https://github.com/hackforla/website/issues/5091) at 2023-07-25 08:56 PM PDT -Khinememe-Kyaw,2023-07-28T15:23:17Z,- Khinememe-Kyaw commented on issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1655880817) at 2023-07-28 08:23 AM PDT -Khinememe-Kyaw,2023-07-30T17:54:33Z,- Khinememe-Kyaw opened issue: [5116](https://github.com/hackforla/website/issues/5116) at 2023-07-30 10:54 AM PDT -Khinememe-Kyaw,2023-07-30T17:57:45Z,- Khinememe-Kyaw commented on issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1657231090) at 2023-07-30 10:57 AM PDT -Khinememe-Kyaw,2024-01-31T07:03:12Z,- Khinememe-Kyaw assigned to issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1657231090) at 2024-01-30 11:03 PM PST -Khinememe-Kyaw,2025-02-05T12:22:13Z,- Khinememe-Kyaw opened issue: [7894](https://github.com/hackforla/website/issues/7894) at 2025-02-05 04:22 AM PST -Khinememe-Kyaw,2025-02-05T12:22:14Z,- Khinememe-Kyaw assigned to issue: [7894](https://github.com/hackforla/website/issues/7894) at 2025-02-05 04:22 AM PST -Khinememe-Kyaw,2025-02-05T19:38:27Z,- Khinememe-Kyaw commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2637863840) at 2025-02-05 11:38 AM PST -Khinememe-Kyaw,2025-02-05T20:35:26Z,- Khinememe-Kyaw commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2637968361) at 2025-02-05 12:35 PM PST -Khinememe-Kyaw,2025-02-05T20:42:08Z,- Khinememe-Kyaw commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2637980280) at 2025-02-05 12:42 PM PST -Khinememe-Kyaw,2025-02-06T20:54:21Z,- Khinememe-Kyaw assigned to issue: [7844](https://github.com/hackforla/website/issues/7844) at 2025-02-06 12:54 PM PST -Khinememe-Kyaw,2025-02-06T20:56:46Z,- Khinememe-Kyaw unassigned from issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2640997244) at 2025-02-06 12:56 PM PST -Khinememe-Kyaw,2025-02-06T20:57:13Z,- Khinememe-Kyaw assigned to issue: [7855](https://github.com/hackforla/website/issues/7855#issuecomment-2626294989) at 2025-02-06 12:57 PM PST -Khinememe-Kyaw,2025-02-06T21:00:52Z,- Khinememe-Kyaw commented on issue: [7855](https://github.com/hackforla/website/issues/7855#issuecomment-2641010512) at 2025-02-06 01:00 PM PST -Khinememe-Kyaw,2025-02-06T21:03:44Z,- Khinememe-Kyaw commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2641015945) at 2025-02-06 01:03 PM PST -Khinememe-Kyaw,2025-02-06T22:05:29Z,- Khinememe-Kyaw opened pull request: [7900](https://github.com/hackforla/website/pull/7900) at 2025-02-06 02:05 PM PST -Khinememe-Kyaw,2025-02-07T04:51:40Z,- Khinememe-Kyaw commented on pull request: [7900](https://github.com/hackforla/website/pull/7900#issuecomment-2641942598) at 2025-02-06 08:51 PM PST -Khinememe-Kyaw,2025-02-07T16:11:47Z,- Khinememe-Kyaw commented on pull request: [7900](https://github.com/hackforla/website/pull/7900#issuecomment-2643359010) at 2025-02-07 08:11 AM PST -Khinememe-Kyaw,2025-02-09T21:10:49Z,- Khinememe-Kyaw pull request merged: [7900](https://github.com/hackforla/website/pull/7900#event-16239369077) at 2025-02-09 01:10 PM PST -Khinememe-Kyaw,2025-02-10T05:49:10Z,- Khinememe-Kyaw assigned to issue: [7849](https://github.com/hackforla/website/issues/7849) at 2025-02-09 09:49 PM PST -Khinememe-Kyaw,2025-02-10T05:52:31Z,- Khinememe-Kyaw commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2646981832) at 2025-02-09 09:52 PM PST -Khinememe-Kyaw,2025-02-10T06:25:25Z,- Khinememe-Kyaw opened pull request: [7903](https://github.com/hackforla/website/pull/7903) at 2025-02-09 10:25 PM PST -Khinememe-Kyaw,2025-02-13T12:01:51Z,- Khinememe-Kyaw commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2656387717) at 2025-02-13 04:01 AM PST -Khinememe-Kyaw,2025-02-17T03:06:34Z,- Khinememe-Kyaw commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2661860591) at 2025-02-16 07:06 PM PST -Khinememe-Kyaw,2025-02-19T03:39:23Z,- Khinememe-Kyaw pull request closed w/o merging: [7903](https://github.com/hackforla/website/pull/7903#event-16358593672) at 2025-02-18 07:39 PM PST -Khinememe-Kyaw,2025-02-19T04:04:43Z,- Khinememe-Kyaw unassigned from issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2646981832) at 2025-02-18 08:04 PM PST -Khinememe-Kyaw,2025-02-19T04:05:39Z,- Khinememe-Kyaw assigned to issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2646981832) at 2025-02-18 08:05 PM PST -Khinememe-Kyaw,2025-02-19T04:33:09Z,- Khinememe-Kyaw commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2667485286) at 2025-02-18 08:33 PM PST -Khinememe-Kyaw,2025-02-19T04:44:30Z,- Khinememe-Kyaw unassigned from issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2667485286) at 2025-02-18 08:44 PM PST -Khinememe-Kyaw,2025-02-19T04:53:25Z,- Khinememe-Kyaw closed issue by PR 7947: [7849](https://github.com/hackforla/website/issues/7849#event-16359034010) at 2025-02-18 08:53 PM PST -Khinememe-Kyaw,2025-02-19T04:54:35Z,- Khinememe-Kyaw reopened issue: [7849](https://github.com/hackforla/website/issues/7849#event-16359034010) at 2025-02-18 08:54 PM PST -Khinememe-Kyaw,2025-02-19T04:56:34Z,- Khinememe-Kyaw assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2662269756) at 2025-02-18 08:56 PM PST -Khinememe-Kyaw,2025-02-19T04:57:15Z,- Khinememe-Kyaw unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2667508857) at 2025-02-18 08:57 PM PST -Khinememe-Kyaw,2025-02-19T04:57:52Z,- Khinememe-Kyaw assigned to issue: [7476](https://github.com/hackforla/website/issues/7476) at 2025-02-18 08:57 PM PST -Khinememe-Kyaw,2025-02-19T04:59:52Z,- Khinememe-Kyaw commented on issue: [7476](https://github.com/hackforla/website/issues/7476#issuecomment-2667512005) at 2025-02-18 08:59 PM PST -Khinememe-Kyaw,2025-02-19T05:24:44Z,- Khinememe-Kyaw opened pull request: [7928](https://github.com/hackforla/website/pull/7928) at 2025-02-18 09:24 PM PST -Khinememe-Kyaw,2025-02-20T07:52:01Z,- Khinememe-Kyaw pull request merged: [7928](https://github.com/hackforla/website/pull/7928#event-16377518915) at 2025-02-19 11:52 PM PST -Khinememe-Kyaw,2025-02-20T11:13:34Z,- Khinememe-Kyaw assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2667508857) at 2025-02-20 03:13 AM PST -Khinememe-Kyaw,2025-02-20T11:13:48Z,- Khinememe-Kyaw unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2667508857) at 2025-02-20 03:13 AM PST -Khinememe-Kyaw,2025-02-20T11:14:36Z,- Khinememe-Kyaw assigned to issue: [7877](https://github.com/hackforla/website/issues/7877) at 2025-02-20 03:14 AM PST -Khinememe-Kyaw,2025-02-20T11:14:51Z,- Khinememe-Kyaw unassigned from issue: [7877](https://github.com/hackforla/website/issues/7877) at 2025-02-20 03:14 AM PST -Khinememe-Kyaw,2025-02-20T11:15:48Z,- Khinememe-Kyaw assigned to issue: [7393](https://github.com/hackforla/website/issues/7393) at 2025-02-20 03:15 AM PST -Khinememe-Kyaw,2025-02-20T11:16:41Z,- Khinememe-Kyaw commented on issue: [7393](https://github.com/hackforla/website/issues/7393#issuecomment-2671198265) at 2025-02-20 03:16 AM PST -Khinememe-Kyaw,2025-02-21T05:15:49Z,- Khinememe-Kyaw assigned to issue: [7388](https://github.com/hackforla/website/issues/7388) at 2025-02-20 09:15 PM PST -Khinememe-Kyaw,2025-02-21T05:16:03Z,- Khinememe-Kyaw unassigned from issue: [7388](https://github.com/hackforla/website/issues/7388) at 2025-02-20 09:16 PM PST -Khinememe-Kyaw,2025-02-27T00:20:32Z,- Khinememe-Kyaw assigned to issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2447553070) at 2025-02-26 04:20 PM PST -Khinememe-Kyaw,2025-02-27T00:20:46Z,- Khinememe-Kyaw unassigned from issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2686499942) at 2025-02-26 04:20 PM PST -Khinememe-Kyaw,2025-03-10T07:37:03Z,- Khinememe-Kyaw assigned to issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2661576139) at 2025-03-10 12:37 AM PDT -Khinememe-Kyaw,2025-03-10T07:37:18Z,- Khinememe-Kyaw unassigned from issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2709675335) at 2025-03-10 12:37 AM PDT -Khinememe-Kyaw,2025-03-17T15:05:56Z,- Khinememe-Kyaw assigned to issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2723826147) at 2025-03-17 08:05 AM PDT -Khinememe-Kyaw,2025-03-17T15:06:59Z,- Khinememe-Kyaw commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2729882724) at 2025-03-17 08:06 AM PDT -Khinememe-Kyaw,2025-03-18T06:02:36Z,- Khinememe-Kyaw commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2731769417) at 2025-03-17 11:02 PM PDT -Khinememe-Kyaw,2025-03-18T06:15:02Z,- Khinememe-Kyaw commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2731793767) at 2025-03-17 11:15 PM PDT -Khinememe-Kyaw,2025-03-25T15:25:29Z,- Khinememe-Kyaw commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2751649297) at 2025-03-25 08:25 AM PDT -Khinememe-Kyaw,2025-03-27T04:48:51Z,- Khinememe-Kyaw commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2756669501) at 2025-03-26 09:48 PM PDT -Khinememe-Kyaw,2025-04-07T12:36:47Z,- Khinememe-Kyaw assigned to issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2712293790) at 2025-04-07 05:36 AM PDT -Khinememe-Kyaw,2025-04-07T12:37:57Z,- Khinememe-Kyaw commented on issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2783195542) at 2025-04-07 05:37 AM PDT -Khinememe-Kyaw,2025-04-07T13:08:26Z,- Khinememe-Kyaw opened pull request: [8053](https://github.com/hackforla/website/pull/8053) at 2025-04-07 06:08 AM PDT -Khinememe-Kyaw,2025-04-07T13:08:26Z,- Khinememe-Kyaw opened pull request: [8053](https://github.com/hackforla/website/pull/8053) at 2025-04-07 06:08 AM PDT -Khinememe-Kyaw,2025-04-09T15:14:16Z,- Khinememe-Kyaw commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2790076888) at 2025-04-09 08:14 AM PDT -Khinememe-Kyaw,2025-04-09T15:14:16Z,- Khinememe-Kyaw commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2790076888) at 2025-04-09 08:14 AM PDT -Khinememe-Kyaw,2025-04-11T21:08:06Z,- Khinememe-Kyaw pull request merged: [8053](https://github.com/hackforla/website/pull/8053#event-17230530842) at 2025-04-11 02:08 PM PDT -Khinememe-Kyaw,2025-04-11T21:08:06Z,- Khinememe-Kyaw pull request merged: [8053](https://github.com/hackforla/website/pull/8053#event-17230530842) at 2025-04-11 02:08 PM PDT -Khinememe-Kyaw,2025-04-16T20:55:07Z,- Khinememe-Kyaw assigned to issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2616716640) at 2025-04-16 01:55 PM PDT -Khinememe-Kyaw,2025-04-16T20:55:22Z,- Khinememe-Kyaw unassigned from issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2616716640) at 2025-04-16 01:55 PM PDT -Khwalab3ar,5866,SKILLS ISSUE -Khwalab3ar,2023-11-07T04:02:07Z,- Khwalab3ar opened issue: [5866](https://github.com/hackforla/website/issues/5866) at 2023-11-06 08:02 PM PST -Khwalab3ar,2023-11-07T04:06:55Z,- Khwalab3ar assigned to issue: [5866](https://github.com/hackforla/website/issues/5866) at 2023-11-06 08:06 PM PST -kianaeunice,5216,SKILLS ISSUE -kianaeunice,2023-08-15T03:00:08Z,- kianaeunice opened issue: [5216](https://github.com/hackforla/website/issues/5216) at 2023-08-14 08:00 PM PDT -kianaeunice,2023-08-15T03:00:09Z,- kianaeunice assigned to issue: [5216](https://github.com/hackforla/website/issues/5216) at 2023-08-14 08:00 PM PDT -kianaeunice,2023-12-13T20:09:03Z,- kianaeunice commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1854631588) at 2023-12-13 12:09 PM PST -KianBadie,2019-10-15T03:54:19Z,- KianBadie assigned to issue: [157](https://github.com/hackforla/website/issues/157) at 2019-10-14 08:54 PM PDT -KianBadie,2019-10-29T02:15:33Z,- KianBadie assigned to issue: [160](https://github.com/hackforla/website/issues/160) at 2019-10-28 07:15 PM PDT -KianBadie,2019-11-05T03:14:13Z,- KianBadie opened pull request: [171](https://github.com/hackforla/website/pull/171) at 2019-11-04 07:14 PM PST -KianBadie,2019-11-06T17:37:17Z,- KianBadie pull request closed w/o merging: [171](https://github.com/hackforla/website/pull/171#event-2776244884) at 2019-11-06 09:37 AM PST -KianBadie,2019-11-06T17:38:18Z,- KianBadie reopened pull request: [171](https://github.com/hackforla/website/pull/171#event-2776244884) at 2019-11-06 09:38 AM PST -KianBadie,2019-11-06T17:39:03Z,- KianBadie commented on pull request: [171](https://github.com/hackforla/website/pull/171#issuecomment-550420053) at 2019-11-06 09:39 AM PST -KianBadie,2019-11-06T17:39:04Z,- KianBadie pull request closed w/o merging: [171](https://github.com/hackforla/website/pull/171#event-2776250684) at 2019-11-06 09:39 AM PST -KianBadie,2019-11-07T20:59:22Z,- KianBadie assigned to issue: [177](https://github.com/hackforla/website/issues/177) at 2019-11-07 12:59 PM PST -KianBadie,2019-11-10T08:02:52Z,- KianBadie commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552172387) at 2019-11-10 12:02 AM PST -KianBadie,2019-11-10T22:38:34Z,- KianBadie commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552242613) at 2019-11-10 02:38 PM PST -KianBadie,2019-11-11T00:04:22Z,- KianBadie assigned to issue: [172](https://github.com/hackforla/website/issues/172) at 2019-11-10 04:04 PM PST -KianBadie,2019-11-12T02:35:36Z,- KianBadie assigned to issue: [173](https://github.com/hackforla/website/issues/173) at 2019-11-11 06:35 PM PST -KianBadie,2019-11-12T02:57:42Z,- KianBadie assigned to issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549656130) at 2019-11-11 06:57 PM PST -KianBadie,2019-11-12T03:03:38Z,- KianBadie unassigned from issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552242613) at 2019-11-11 07:03 PM PST -KianBadie,2019-11-12T04:29:20Z,- KianBadie closed issue as completed: [167](https://github.com/hackforla/website/issues/167#event-2790101516) at 2019-11-11 08:29 PM PST -KianBadie,2019-11-16T04:32:01Z,- KianBadie opened pull request: [180](https://github.com/hackforla/website/pull/180) at 2019-11-15 08:32 PM PST -KianBadie,2019-11-16T04:32:45Z,- KianBadie commented on pull request: [180](https://github.com/hackforla/website/pull/180#issuecomment-554603473) at 2019-11-15 08:32 PM PST -KianBadie,2019-11-23T03:46:47Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557763430) at 2019-11-22 07:46 PM PST -KianBadie,2019-11-23T03:49:15Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557763596) at 2019-11-22 07:49 PM PST -KianBadie,2019-11-23T03:53:00Z,- KianBadie commented on issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-22 07:53 PM PST -KianBadie,2019-11-23T03:54:05Z,- KianBadie commented on pull request: [180](https://github.com/hackforla/website/pull/180#issuecomment-557764013) at 2019-11-22 07:54 PM PST -KianBadie,2019-11-23T05:19:29Z,- KianBadie commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-557768423) at 2019-11-22 09:19 PM PST -KianBadie,2019-11-23T06:16:18Z,- KianBadie commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-557771246) at 2019-11-22 10:16 PM PST -KianBadie,2019-11-24T00:43:30Z,- KianBadie commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-557846594) at 2019-11-23 04:43 PM PST -KianBadie,2019-11-25T23:21:41Z,- KianBadie assigned to issue: [187](https://github.com/hackforla/website/issues/187) at 2019-11-25 03:21 PM PST -KianBadie,2019-11-26T02:49:51Z,- KianBadie unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:49 PM PST -KianBadie,2019-11-26T02:50:06Z,- KianBadie assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -KianBadie,2019-11-26T02:50:11Z,- KianBadie unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -KianBadie,2019-11-26T02:50:35Z,- KianBadie assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -KianBadie,2019-11-26T02:53:01Z,- KianBadie assigned to issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-11-25 06:53 PM PST -KianBadie,2019-11-26T03:20:10Z,- KianBadie assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-558026053) at 2019-11-25 07:20 PM PST -KianBadie,2019-11-26T03:23:38Z,- KianBadie unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:23 PM PST -KianBadie,2019-11-26T03:23:38Z,- KianBadie unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:23 PM PST -KianBadie,2019-11-26T04:22:16Z,- KianBadie assigned to issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 08:22 PM PST -KianBadie,2019-11-26T04:22:30Z,- KianBadie unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-558026053) at 2019-11-25 08:22 PM PST -KianBadie,2019-11-28T00:41:11Z,- KianBadie opened pull request: [200](https://github.com/hackforla/website/pull/200) at 2019-11-27 04:41 PM PST -KianBadie,2019-11-28T01:19:48Z,- KianBadie commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-559303751) at 2019-11-27 05:19 PM PST -KianBadie,2019-12-01T22:42:40Z,- KianBadie commented on issue: [187](https://github.com/hackforla/website/issues/187#issuecomment-560169024) at 2019-12-01 02:42 PM PST -KianBadie,2019-12-03T03:56:03Z,- KianBadie commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-560987385) at 2019-12-02 07:56 PM PST -KianBadie,2019-12-03T04:00:19Z,- KianBadie opened pull request: [204](https://github.com/hackforla/website/pull/204) at 2019-12-02 08:00 PM PST -KianBadie,2019-12-03T18:25:11Z,- KianBadie assigned to issue: [205](https://github.com/hackforla/website/issues/205) at 2019-12-03 10:25 AM PST -KianBadie,2019-12-03T18:37:25Z,- KianBadie assigned to issue: [202](https://github.com/hackforla/website/issues/202) at 2019-12-03 10:37 AM PST -KianBadie,2019-12-03T18:47:13Z,- KianBadie assigned to issue: [206](https://github.com/hackforla/website/issues/206) at 2019-12-03 10:47 AM PST -KianBadie,2019-12-03T19:16:49Z,- KianBadie assigned to issue: [210](https://github.com/hackforla/website/issues/210) at 2019-12-03 11:16 AM PST -KianBadie,2019-12-04T21:39:32Z,- KianBadie closed issue by PR 232: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:39 PM PST -KianBadie,2019-12-04T21:50:17Z,- KianBadie unassigned from issue: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:50 PM PST -KianBadie,2019-12-06T00:42:51Z,- KianBadie unassigned from issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-05 04:42 PM PST -KianBadie,2019-12-09T01:37:02Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-563026548) at 2019-12-08 05:37 PM PST -KianBadie,2019-12-10T04:44:48Z,- KianBadie pull request merged: [200](https://github.com/hackforla/website/pull/200#event-2868773627) at 2019-12-09 08:44 PM PST -KianBadie,2019-12-10T04:48:35Z,- KianBadie opened pull request: [214](https://github.com/hackforla/website/pull/214) at 2019-12-09 08:48 PM PST -KianBadie,2019-12-10T04:51:52Z,- KianBadie pull request merged: [180](https://github.com/hackforla/website/pull/180#event-2868784191) at 2019-12-09 08:51 PM PST -KianBadie,2019-12-10T23:48:27Z,- KianBadie assigned to issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-10 03:48 PM PST -KianBadie,2019-12-12T23:14:21Z,- KianBadie commented on issue: [187](https://github.com/hackforla/website/issues/187#issuecomment-565229058) at 2019-12-12 03:14 PM PST -KianBadie,2019-12-17T02:29:37Z,- KianBadie assigned to issue: [193](https://github.com/hackforla/website/issues/193) at 2019-12-16 06:29 PM PST -KianBadie,2019-12-22T06:18:05Z,- KianBadie assigned to issue: [220](https://github.com/hackforla/website/issues/220) at 2019-12-21 10:18 PM PST -KianBadie,2019-12-22T16:45:10Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-568280302) at 2019-12-22 08:45 AM PST -KianBadie,2019-12-25T02:44:48Z,- KianBadie closed issue by PR 204: [173](https://github.com/hackforla/website/issues/173#event-2907480092) at 2019-12-24 06:44 PM PST -KianBadie,2019-12-25T02:44:48Z,- KianBadie pull request merged: [204](https://github.com/hackforla/website/pull/204#event-2907480094) at 2019-12-24 06:44 PM PST -KianBadie,2019-12-29T19:36:34Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569535371) at 2019-12-29 11:36 AM PST -KianBadie,2019-12-29T23:20:33Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569551211) at 2019-12-29 03:20 PM PST -KianBadie,2019-12-30T23:41:57Z,- KianBadie assigned to issue: [201](https://github.com/hackforla/website/issues/201) at 2019-12-30 03:41 PM PST -KianBadie,2019-12-30T23:59:42Z,- KianBadie assigned to issue: [14](https://github.com/hackforla/website/issues/14#event-2735479648) at 2019-12-30 03:59 PM PST -KianBadie,2019-12-31T01:06:55Z,- KianBadie closed issue as completed: [172](https://github.com/hackforla/website/issues/172#event-2914935862) at 2019-12-30 05:06 PM PST -KianBadie,2019-12-31T02:36:33Z,- KianBadie assigned to issue: [226](https://github.com/hackforla/website/issues/226) at 2019-12-30 06:36 PM PST -KianBadie,2019-12-31T03:14:52Z,- KianBadie assigned to issue: [236](https://github.com/hackforla/website/issues/236) at 2019-12-30 07:14 PM PST -KianBadie,2019-12-31T03:40:12Z,- KianBadie assigned to issue: [237](https://github.com/hackforla/website/issues/237) at 2019-12-30 07:40 PM PST -KianBadie,2019-12-31T05:55:34Z,- KianBadie assigned to issue: [239](https://github.com/hackforla/website/issues/239) at 2019-12-30 09:55 PM PST -KianBadie,2019-12-31T18:19:19Z,- KianBadie assigned to issue: [244](https://github.com/hackforla/website/issues/244) at 2019-12-31 10:19 AM PST -KianBadie,2020-01-02T02:46:52Z,- KianBadie opened pull request: [245](https://github.com/hackforla/website/pull/245) at 2020-01-01 06:46 PM PST -KianBadie,2020-01-02T02:48:26Z,- KianBadie commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-570106964) at 2020-01-01 06:48 PM PST -KianBadie,2020-01-02T02:52:03Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-570107258) at 2020-01-01 06:52 PM PST -KianBadie,2020-01-02T03:12:28Z,- KianBadie commented on issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-570109205) at 2020-01-01 07:12 PM PST -KianBadie,2020-01-03T04:49:05Z,- KianBadie commented on issue: [226](https://github.com/hackforla/website/issues/226#issuecomment-570461533) at 2020-01-02 08:49 PM PST -KianBadie,2020-01-03T04:52:01Z,- KianBadie commented on issue: [226](https://github.com/hackforla/website/issues/226#issuecomment-570461895) at 2020-01-02 08:52 PM PST -KianBadie,2020-01-03T09:40:02Z,- KianBadie closed issue by PR 245: [226](https://github.com/hackforla/website/issues/226#event-2919765551) at 2020-01-03 01:40 AM PST -KianBadie,2020-01-03T09:40:02Z,- KianBadie pull request merged: [245](https://github.com/hackforla/website/pull/245#event-2919765559) at 2020-01-03 01:40 AM PST -KianBadie,2020-01-07T02:22:30Z,- KianBadie opened issue: [246](https://github.com/hackforla/website/issues/246) at 2020-01-06 06:22 PM PST -KianBadie,2020-01-07T02:25:07Z,- KianBadie commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-571403621) at 2020-01-06 06:25 PM PST -KianBadie,2020-01-07T02:55:54Z,- KianBadie unassigned from issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-570106964) at 2020-01-06 06:55 PM PST -KianBadie,2020-01-07T03:40:25Z,- KianBadie closed issue as completed: [14](https://github.com/hackforla/website/issues/14#event-2926313200) at 2020-01-06 07:40 PM PST -KianBadie,2020-01-10T02:15:41Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-572842527) at 2020-01-09 06:15 PM PST -KianBadie,2020-01-10T02:16:41Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-572842726) at 2020-01-09 06:16 PM PST -KianBadie,2020-01-11T02:19:58Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573270556) at 2020-01-10 06:19 PM PST -KianBadie,2020-01-18T01:30:58Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-575852901) at 2020-01-17 05:30 PM PST -KianBadie,2020-01-18T01:43:20Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-575854081) at 2020-01-17 05:43 PM PST -KianBadie,2020-01-19T19:29:24Z,- KianBadie unassigned from issue: [210](https://github.com/hackforla/website/issues/210) at 2020-01-19 11:29 AM PST -KianBadie,2020-01-26T00:17:57Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-578456108) at 2020-01-25 04:17 PM PST -KianBadie,2020-01-26T19:08:10Z,- KianBadie assigned to issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-01-26 11:08 AM PST -KianBadie,2020-01-26T22:47:59Z,- KianBadie unassigned from issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-578530739) at 2020-01-26 02:47 PM PST -KianBadie,2020-01-30T23:43:10Z,- KianBadie commented on pull request: [287](https://github.com/hackforla/website/pull/287#issuecomment-580514129) at 2020-01-30 03:43 PM PST -KianBadie,2020-01-31T22:47:44Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-580944680) at 2020-01-31 02:47 PM PST -KianBadie,2020-02-03T21:24:00Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-581624981) at 2020-02-03 01:24 PM PST -KianBadie,2020-02-03T21:41:13Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-581632190) at 2020-02-03 01:41 PM PST -KianBadie,2020-02-03T22:13:32Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-581644497) at 2020-02-03 02:13 PM PST -KianBadie,2020-02-03T22:16:20Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-581645537) at 2020-02-03 02:16 PM PST -KianBadie,2020-02-05T18:47:15Z,- KianBadie opened issue: [291](https://github.com/hackforla/website/issues/291) at 2020-02-05 10:47 AM PST -KianBadie,2020-02-05T21:47:36Z,- KianBadie opened issue: [292](https://github.com/hackforla/website/issues/292) at 2020-02-05 01:47 PM PST -KianBadie,2020-02-05T21:57:58Z,- KianBadie opened issue: [293](https://github.com/hackforla/website/issues/293) at 2020-02-05 01:57 PM PST -KianBadie,2020-02-05T22:11:56Z,- KianBadie opened issue: [295](https://github.com/hackforla/website/issues/295) at 2020-02-05 02:11 PM PST -KianBadie,2020-02-05T22:29:25Z,- KianBadie opened issue: [296](https://github.com/hackforla/website/issues/296) at 2020-02-05 02:29 PM PST -KianBadie,2020-02-06T00:09:21Z,- KianBadie assigned to issue: [291](https://github.com/hackforla/website/issues/291) at 2020-02-05 04:09 PM PST -KianBadie,2020-02-09T01:44:03Z,- KianBadie commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-583795149) at 2020-02-08 05:44 PM PST -KianBadie,2020-02-09T03:40:49Z,- KianBadie commented on issue: [296](https://github.com/hackforla/website/issues/296#issuecomment-583801401) at 2020-02-08 07:40 PM PST -KianBadie,2020-02-09T03:53:12Z,- KianBadie commented on issue: [296](https://github.com/hackforla/website/issues/296#issuecomment-583801966) at 2020-02-08 07:53 PM PST -KianBadie,2020-02-09T06:44:07Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-583810869) at 2020-02-08 10:44 PM PST -KianBadie,2020-02-09T18:39:59Z,- KianBadie assigned to issue: [296](https://github.com/hackforla/website/issues/296#issuecomment-583801966) at 2020-02-09 10:39 AM PST -KianBadie,2020-02-09T19:01:32Z,- KianBadie assigned to issue: [303](https://github.com/hackforla/website/issues/303) at 2020-02-09 11:01 AM PST -KianBadie,2020-02-10T20:34:32Z,- KianBadie commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-584340664) at 2020-02-10 12:34 PM PST -KianBadie,2020-02-10T21:05:24Z,- KianBadie commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-584353673) at 2020-02-10 01:05 PM PST -KianBadie,2020-02-10T22:53:06Z,- KianBadie unassigned from issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-02-10 02:53 PM PST -KianBadie,2020-02-11T02:51:12Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-584458352) at 2020-02-10 06:51 PM PST -KianBadie,2020-02-11T03:16:09Z,- KianBadie commented on issue: [293](https://github.com/hackforla/website/issues/293#issuecomment-584462417) at 2020-02-10 07:16 PM PST -KianBadie,2020-02-11T03:49:33Z,- KianBadie opened pull request: [307](https://github.com/hackforla/website/pull/307) at 2020-02-10 07:49 PM PST -KianBadie,2020-02-12T01:18:09Z,- KianBadie commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-584966734) at 2020-02-11 05:18 PM PST -KianBadie,2020-02-12T01:21:59Z,- KianBadie opened pull request: [310](https://github.com/hackforla/website/pull/310) at 2020-02-11 05:21 PM PST -KianBadie,2020-02-12T01:23:16Z,- KianBadie pull request closed w/o merging: [310](https://github.com/hackforla/website/pull/310#event-3028954963) at 2020-02-11 05:23 PM PST -KianBadie,2020-02-12T01:27:24Z,- KianBadie commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-584970502) at 2020-02-11 05:27 PM PST -KianBadie,2020-02-12T02:38:18Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-584990444) at 2020-02-11 06:38 PM PST -KianBadie,2020-02-14T21:23:53Z,- KianBadie commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-586478313) at 2020-02-14 01:23 PM PST -KianBadie,2020-02-16T18:29:19Z,- KianBadie closed issue by PR 307: [296](https://github.com/hackforla/website/issues/296#event-3041743072) at 2020-02-16 10:29 AM PST -KianBadie,2020-02-16T18:29:19Z,- KianBadie pull request merged: [307](https://github.com/hackforla/website/pull/307#event-3041743073) at 2020-02-16 10:29 AM PST -KianBadie,2020-02-16T18:32:53Z,- KianBadie unassigned from issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-585015065) at 2020-02-16 10:32 AM PST -KianBadie,2020-02-16T19:20:22Z,- KianBadie assigned to issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-585015065) at 2020-02-16 11:20 AM PST -KianBadie,2020-02-17T23:35:10Z,- KianBadie opened pull request: [317](https://github.com/hackforla/website/pull/317) at 2020-02-17 03:35 PM PST -KianBadie,2020-02-19T02:23:57Z,- KianBadie opened issue: [318](https://github.com/hackforla/website/issues/318) at 2020-02-18 06:23 PM PST -KianBadie,2020-02-19T02:25:58Z,- KianBadie commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-588002605) at 2020-02-18 06:25 PM PST -KianBadie,2020-02-19T06:24:36Z,- KianBadie commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-588056812) at 2020-02-18 10:24 PM PST -KianBadie,2020-02-20T01:59:04Z,- KianBadie commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-588570368) at 2020-02-19 05:59 PM PST -KianBadie,2020-03-01T18:43:43Z,- KianBadie unassigned from issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-590114601) at 2020-03-01 10:43 AM PST -KianBadie,2020-03-01T18:49:52Z,- KianBadie opened pull request: [330](https://github.com/hackforla/website/pull/330) at 2020-03-01 10:49 AM PST -KianBadie,2020-03-01T18:58:19Z,- KianBadie opened pull request: [331](https://github.com/hackforla/website/pull/331) at 2020-03-01 10:58 AM PST -KianBadie,2020-03-01T19:40:34Z,- KianBadie unassigned from issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-593136419) at 2020-03-01 11:40 AM PST -KianBadie,2020-03-02T02:38:13Z,- KianBadie pull request merged: [331](https://github.com/hackforla/website/pull/331#event-3086204874) at 2020-03-01 06:38 PM PST -KianBadie,2020-03-02T04:00:35Z,- KianBadie pull request merged: [330](https://github.com/hackforla/website/pull/330#event-3086328618) at 2020-03-01 08:00 PM PST -KianBadie,2020-03-02T05:54:37Z,- KianBadie closed issue by PR 336: [291](https://github.com/hackforla/website/issues/291#event-3086513075) at 2020-03-01 09:54 PM PST -KianBadie,2020-03-02T05:55:32Z,- KianBadie pull request closed w/o merging: [317](https://github.com/hackforla/website/pull/317#event-3086514677) at 2020-03-01 09:55 PM PST -KianBadie,2020-03-03T03:03:28Z,- KianBadie opened pull request: [338](https://github.com/hackforla/website/pull/338) at 2020-03-02 07:03 PM PST -KianBadie,2020-03-03T03:23:19Z,- KianBadie pull request closed w/o merging: [310](https://github.com/hackforla/website/pull/310#event-3090510162) at 2020-03-02 07:23 PM PST -KianBadie,2020-03-03T03:28:06Z,- KianBadie pull request merged: [338](https://github.com/hackforla/website/pull/338#event-3090518722) at 2020-03-02 07:28 PM PST -KianBadie,2020-03-09T23:10:59Z,- KianBadie opened pull request: [357](https://github.com/hackforla/website/pull/357) at 2020-03-09 04:10 PM PDT -KianBadie,2020-03-10T21:23:36Z,- KianBadie pull request merged: [357](https://github.com/hackforla/website/pull/357#event-3116507729) at 2020-03-10 02:23 PM PDT -KianBadie,2020-03-11T07:12:35Z,- KianBadie closed issue as completed: [193](https://github.com/hackforla/website/issues/193#event-3117566564) at 2020-03-11 12:12 AM PDT -KianBadie,2020-03-12T19:11:10Z,- KianBadie closed issue as completed: [201](https://github.com/hackforla/website/issues/201#event-3124166026) at 2020-03-12 12:11 PM PDT -KianBadie,2020-03-12T20:37:40Z,- KianBadie opened pull request: [363](https://github.com/hackforla/website/pull/363) at 2020-03-12 01:37 PM PDT -KianBadie,2020-03-12T20:53:42Z,- KianBadie opened pull request: [364](https://github.com/hackforla/website/pull/364) at 2020-03-12 01:53 PM PDT -KianBadie,2020-03-14T01:19:30Z,- KianBadie opened pull request: [366](https://github.com/hackforla/website/pull/366) at 2020-03-13 06:19 PM PDT -KianBadie,2020-03-15T02:35:24Z,- KianBadie pull request merged: [364](https://github.com/hackforla/website/pull/364#event-3130039736) at 2020-03-14 07:35 PM PDT -KianBadie,2020-03-15T16:57:43Z,- KianBadie commented on pull request: [363](https://github.com/hackforla/website/pull/363#issuecomment-599236550) at 2020-03-15 09:57 AM PDT -KianBadie,2020-03-15T17:11:00Z,- KianBadie pull request merged: [363](https://github.com/hackforla/website/pull/363#event-3130739949) at 2020-03-15 10:11 AM PDT -KianBadie,2020-03-15T17:29:46Z,- KianBadie commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-599240112) at 2020-03-15 10:29 AM PDT -KianBadie,2020-03-15T18:40:47Z,- KianBadie pull request closed w/o merging: [214](https://github.com/hackforla/website/pull/214#event-3130827825) at 2020-03-15 11:40 AM PDT -KianBadie,2020-03-15T18:41:47Z,- KianBadie closed issue as completed: [206](https://github.com/hackforla/website/issues/206#event-3130828742) at 2020-03-15 11:41 AM PDT -KianBadie,2020-03-16T03:49:39Z,- KianBadie assigned to issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 08:49 PM PDT -KianBadie,2020-03-16T07:10:12Z,- KianBadie opened pull request: [370](https://github.com/hackforla/website/pull/370) at 2020-03-16 12:10 AM PDT -KianBadie,2020-03-16T07:11:54Z,- KianBadie opened pull request: [371](https://github.com/hackforla/website/pull/371) at 2020-03-16 12:11 AM PDT -KianBadie,2020-03-16T07:12:57Z,- KianBadie pull request merged: [371](https://github.com/hackforla/website/pull/371#event-3131843308) at 2020-03-16 12:12 AM PDT -KianBadie,2020-03-16T07:26:08Z,- KianBadie pull request merged: [370](https://github.com/hackforla/website/pull/370#event-3131896102) at 2020-03-16 12:26 AM PDT -KianBadie,2020-03-16T07:40:04Z,- KianBadie opened pull request: [373](https://github.com/hackforla/website/pull/373) at 2020-03-16 12:40 AM PDT -KianBadie,2020-03-16T07:40:38Z,- KianBadie pull request merged: [373](https://github.com/hackforla/website/pull/373#event-3131934226) at 2020-03-16 12:40 AM PDT -KianBadie,2020-03-16T08:00:10Z,- KianBadie opened pull request: [374](https://github.com/hackforla/website/pull/374) at 2020-03-16 01:00 AM PDT -KianBadie,2020-03-16T08:01:30Z,- KianBadie pull request merged: [374](https://github.com/hackforla/website/pull/374#event-3131992993) at 2020-03-16 01:01 AM PDT -KianBadie,2020-03-17T00:58:08Z,- KianBadie pull request merged: [366](https://github.com/hackforla/website/pull/366#event-3135439435) at 2020-03-16 05:58 PM PDT -KianBadie,2020-03-17T05:37:41Z,- KianBadie opened pull request: [376](https://github.com/hackforla/website/pull/376) at 2020-03-16 10:37 PM PDT -KianBadie,2020-03-17T07:12:14Z,- KianBadie opened pull request: [377](https://github.com/hackforla/website/pull/377) at 2020-03-17 12:12 AM PDT -KianBadie,2020-03-17T07:21:38Z,- KianBadie pull request merged: [377](https://github.com/hackforla/website/pull/377#event-3136114209) at 2020-03-17 12:21 AM PDT -KianBadie,2020-03-17T08:24:49Z,- KianBadie opened pull request: [378](https://github.com/hackforla/website/pull/378) at 2020-03-17 01:24 AM PDT -KianBadie,2020-03-17T08:25:46Z,- KianBadie pull request merged: [378](https://github.com/hackforla/website/pull/378#event-3136294694) at 2020-03-17 01:25 AM PDT -KianBadie,2020-03-17T08:37:54Z,- KianBadie opened pull request: [379](https://github.com/hackforla/website/pull/379) at 2020-03-17 01:37 AM PDT -KianBadie,2020-03-17T08:38:07Z,- KianBadie pull request merged: [379](https://github.com/hackforla/website/pull/379#event-3136333525) at 2020-03-17 01:38 AM PDT -KianBadie,2020-03-17T08:41:47Z,- KianBadie opened pull request: [380](https://github.com/hackforla/website/pull/380) at 2020-03-17 01:41 AM PDT -KianBadie,2020-03-17T08:41:56Z,- KianBadie pull request merged: [380](https://github.com/hackforla/website/pull/380#event-3136345616) at 2020-03-17 01:41 AM PDT -KianBadie,2020-03-17T16:26:14Z,- KianBadie pull request merged: [376](https://github.com/hackforla/website/pull/376#event-3138085518) at 2020-03-17 09:26 AM PDT -KianBadie,2020-03-20T22:39:45Z,- KianBadie opened pull request: [382](https://github.com/hackforla/website/pull/382) at 2020-03-20 03:39 PM PDT -KianBadie,2020-03-21T21:24:09Z,- KianBadie commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-602106686) at 2020-03-21 02:24 PM PDT -KianBadie,2020-03-22T18:02:52Z,- KianBadie commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-602248280) at 2020-03-22 11:02 AM PDT -KianBadie,2020-03-22T18:26:47Z,- KianBadie pull request merged: [382](https://github.com/hackforla/website/pull/382#event-3152942082) at 2020-03-22 11:26 AM PDT -KianBadie,2020-03-26T03:30:48Z,- KianBadie opened issue: [390](https://github.com/hackforla/website/issues/390) at 2020-03-25 08:30 PM PDT -KianBadie,2020-03-26T03:30:49Z,- KianBadie assigned to issue: [390](https://github.com/hackforla/website/issues/390) at 2020-03-25 08:30 PM PDT -KianBadie,2020-03-26T05:57:03Z,- KianBadie opened pull request: [391](https://github.com/hackforla/website/pull/391) at 2020-03-25 10:57 PM PDT -KianBadie,2020-03-26T06:01:10Z,- KianBadie closed issue by PR 391: [390](https://github.com/hackforla/website/issues/390#event-3166812215) at 2020-03-25 11:01 PM PDT -KianBadie,2020-03-26T06:01:10Z,- KianBadie pull request merged: [391](https://github.com/hackforla/website/pull/391#event-3166812218) at 2020-03-25 11:01 PM PDT -KianBadie,2020-03-26T06:32:10Z,- KianBadie opened pull request: [392](https://github.com/hackforla/website/pull/392) at 2020-03-25 11:32 PM PDT -KianBadie,2020-03-26T06:33:03Z,- KianBadie pull request merged: [392](https://github.com/hackforla/website/pull/392#event-3166876052) at 2020-03-25 11:33 PM PDT -KianBadie,2020-03-26T23:29:09Z,- KianBadie opened pull request: [394](https://github.com/hackforla/website/pull/394) at 2020-03-26 04:29 PM PDT -KianBadie,2020-03-27T01:22:31Z,- KianBadie pull request merged: [394](https://github.com/hackforla/website/pull/394#event-3170629744) at 2020-03-26 06:22 PM PDT -KianBadie,2020-03-29T03:22:09Z,- KianBadie opened pull request: [399](https://github.com/hackforla/website/pull/399) at 2020-03-28 08:22 PM PDT -KianBadie,2020-03-29T17:38:12Z,- KianBadie pull request merged: [399](https://github.com/hackforla/website/pull/399#event-3176132914) at 2020-03-29 10:38 AM PDT -KianBadie,2020-03-30T02:36:20Z,- KianBadie assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-605720161) at 2020-03-29 07:36 PM PDT -KianBadie,2020-03-31T02:35:08Z,- KianBadie opened pull request: [406](https://github.com/hackforla/website/pull/406) at 2020-03-30 07:35 PM PDT -KianBadie,2020-04-01T00:52:52Z,- KianBadie pull request merged: [406](https://github.com/hackforla/website/pull/406#event-3185720655) at 2020-03-31 05:52 PM PDT -KianBadie,2020-04-03T03:00:46Z,- KianBadie commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-608202935) at 2020-04-02 08:00 PM PDT -KianBadie,2020-04-04T02:52:42Z,- KianBadie commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-608961342) at 2020-04-03 07:52 PM PDT -KianBadie,2020-04-04T20:28:05Z,- KianBadie commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-609084787) at 2020-04-04 01:28 PM PDT -KianBadie,2020-04-05T17:37:20Z,- KianBadie assigned to issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-605671736) at 2020-04-05 10:37 AM PDT -KianBadie,2020-04-08T01:29:26Z,- KianBadie assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-605720708) at 2020-04-07 06:29 PM PDT -KianBadie,2020-04-08T01:39:21Z,- KianBadie commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-610703571) at 2020-04-07 06:39 PM PDT -KianBadie,2020-04-12T17:59:10Z,- KianBadie assigned to issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-612653514) at 2020-04-12 10:59 AM PDT -KianBadie,2020-04-13T02:33:56Z,- KianBadie assigned to issue: [435](https://github.com/hackforla/website/issues/435) at 2020-04-12 07:33 PM PDT -KianBadie,2020-04-13T23:01:37Z,- KianBadie commented on pull request: [427](https://github.com/hackforla/website/pull/427#issuecomment-613138192) at 2020-04-13 04:01 PM PDT -KianBadie,2020-04-16T19:26:53Z,- KianBadie commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-614849965) at 2020-04-16 12:26 PM PDT -KianBadie,2020-04-16T19:28:26Z,- KianBadie commented on issue: [435](https://github.com/hackforla/website/issues/435#issuecomment-614850669) at 2020-04-16 12:28 PM PDT -KianBadie,2020-04-16T19:28:26Z,- KianBadie closed issue as completed: [435](https://github.com/hackforla/website/issues/435#event-3241463890) at 2020-04-16 12:28 PM PDT -KianBadie,2020-04-19T00:39:12Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-615993646) at 2020-04-18 05:39 PM PDT -KianBadie,2020-04-19T18:28:53Z,- KianBadie unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616177640) at 2020-04-19 11:28 AM PDT -KianBadie,2020-04-22T01:09:18Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-617488709) at 2020-04-21 06:09 PM PDT -KianBadie,2020-04-22T03:43:38Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-617531160) at 2020-04-21 08:43 PM PDT -KianBadie,2020-04-25T22:37:22Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-619449694) at 2020-04-25 03:37 PM PDT -KianBadie,2020-04-26T00:30:23Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-619459644) at 2020-04-25 05:30 PM PDT -KianBadie,2020-04-26T17:57:48Z,- KianBadie unassigned from issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 10:57 AM PDT -KianBadie,2020-04-26T21:24:42Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-619627288) at 2020-04-26 02:24 PM PDT -KianBadie,2020-04-28T21:05:56Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-620854786) at 2020-04-28 02:05 PM PDT -KianBadie,2020-05-01T22:18:18Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-622590051) at 2020-05-01 03:18 PM PDT -KianBadie,2020-05-02T20:37:18Z,- KianBadie commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-623010067) at 2020-05-02 01:37 PM PDT -KianBadie,2020-05-02T23:38:09Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-623029730) at 2020-05-02 04:38 PM PDT -KianBadie,2020-05-03T18:31:52Z,- KianBadie assigned to issue: [458](https://github.com/hackforla/website/issues/458) at 2020-05-03 11:31 AM PDT -KianBadie,2020-05-05T00:07:17Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-623771639) at 2020-05-04 05:07 PM PDT -KianBadie,2020-05-06T00:58:11Z,- KianBadie commented on pull request: [495](https://github.com/hackforla/website/pull/495#issuecomment-624389737) at 2020-05-05 05:58 PM PDT -KianBadie,2020-05-06T01:03:21Z,- KianBadie commented on pull request: [495](https://github.com/hackforla/website/pull/495#issuecomment-624390963) at 2020-05-05 06:03 PM PDT -KianBadie,2020-05-07T22:06:26Z,- KianBadie commented on pull request: [495](https://github.com/hackforla/website/pull/495#issuecomment-625520911) at 2020-05-07 03:06 PM PDT -KianBadie,2020-05-09T01:18:19Z,- KianBadie commented on pull request: [500](https://github.com/hackforla/website/pull/500#issuecomment-626082078) at 2020-05-08 06:18 PM PDT -KianBadie,2020-05-09T23:59:51Z,- KianBadie commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-626251482) at 2020-05-09 04:59 PM PDT -KianBadie,2020-05-10T17:33:00Z,- KianBadie commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-626362101) at 2020-05-10 10:33 AM PDT -KianBadie,2020-05-11T23:54:20Z,- KianBadie opened issue: [510](https://github.com/hackforla/website/issues/510) at 2020-05-11 04:54 PM PDT -KianBadie,2020-05-11T23:54:21Z,- KianBadie assigned to issue: [510](https://github.com/hackforla/website/issues/510) at 2020-05-11 04:54 PM PDT -KianBadie,2020-05-11T23:54:53Z,- KianBadie commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-627026852) at 2020-05-11 04:54 PM PDT -KianBadie,2020-05-14T05:14:38Z,- KianBadie commented on pull request: [513](https://github.com/hackforla/website/pull/513#issuecomment-628391452) at 2020-05-13 10:14 PM PDT -KianBadie,2020-05-14T05:24:12Z,- KianBadie commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-628394547) at 2020-05-13 10:24 PM PDT -KianBadie,2020-05-14T22:04:19Z,- KianBadie commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-628910209) at 2020-05-14 03:04 PM PDT -KianBadie,2020-05-14T23:38:25Z,- KianBadie commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-628941632) at 2020-05-14 04:38 PM PDT -KianBadie,2020-05-15T03:01:13Z,- KianBadie commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-628998713) at 2020-05-14 08:01 PM PDT -KianBadie,2020-05-15T03:52:02Z,- KianBadie opened pull request: [515](https://github.com/hackforla/website/pull/515) at 2020-05-14 08:52 PM PDT -KianBadie,2020-05-15T03:56:59Z,- KianBadie pull request closed w/o merging: [515](https://github.com/hackforla/website/pull/515#event-3339246487) at 2020-05-14 08:56 PM PDT -KianBadie,2020-05-15T05:05:54Z,- KianBadie opened pull request: [516](https://github.com/hackforla/website/pull/516) at 2020-05-14 10:05 PM PDT -KianBadie,2020-05-17T06:22:20Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-629750042) at 2020-05-16 11:22 PM PDT -KianBadie,2020-05-17T06:48:33Z,- KianBadie commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-629752046) at 2020-05-16 11:48 PM PDT -KianBadie,2020-05-17T07:42:00Z,- KianBadie commented on issue: [510](https://github.com/hackforla/website/issues/510#issuecomment-629757240) at 2020-05-17 12:42 AM PDT -KianBadie,2020-05-18T00:21:06Z,- KianBadie closed issue by PR 516: [458](https://github.com/hackforla/website/issues/458#event-3345092580) at 2020-05-17 05:21 PM PDT -KianBadie,2020-05-18T00:21:06Z,- KianBadie pull request merged: [516](https://github.com/hackforla/website/pull/516#event-3345092581) at 2020-05-17 05:21 PM PDT -KianBadie,2020-05-20T01:46:36Z,- KianBadie commented on pull request: [524](https://github.com/hackforla/website/pull/524#issuecomment-631184189) at 2020-05-19 06:46 PM PDT -KianBadie,2020-05-22T00:56:09Z,- KianBadie opened issue: [532](https://github.com/hackforla/website/issues/532) at 2020-05-21 05:56 PM PDT -KianBadie,2020-05-22T00:56:09Z,- KianBadie assigned to issue: [532](https://github.com/hackforla/website/issues/532) at 2020-05-21 05:56 PM PDT -KianBadie,2020-05-22T01:52:11Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-632434320) at 2020-05-21 06:52 PM PDT -KianBadie,2020-05-22T02:38:15Z,- KianBadie commented on issue: [510](https://github.com/hackforla/website/issues/510#issuecomment-632445704) at 2020-05-21 07:38 PM PDT -KianBadie,2020-05-22T02:50:10Z,- KianBadie commented on issue: [510](https://github.com/hackforla/website/issues/510#issuecomment-632448879) at 2020-05-21 07:50 PM PDT -KianBadie,2020-05-22T02:54:48Z,- KianBadie unassigned from issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-631844548) at 2020-05-21 07:54 PM PDT -KianBadie,2020-05-23T23:06:48Z,- KianBadie commented on issue: [532](https://github.com/hackforla/website/issues/532#issuecomment-633151829) at 2020-05-23 04:06 PM PDT -KianBadie,2020-05-24T16:50:01Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-633259008) at 2020-05-24 09:50 AM PDT -KianBadie,2020-05-27T00:12:49Z,- KianBadie opened pull request: [545](https://github.com/hackforla/website/pull/545) at 2020-05-26 05:12 PM PDT -KianBadie,2020-05-27T00:36:22Z,- KianBadie opened pull request: [546](https://github.com/hackforla/website/pull/546) at 2020-05-26 05:36 PM PDT -KianBadie,2020-05-27T01:34:50Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-634371252) at 2020-05-26 06:34 PM PDT -KianBadie,2020-05-27T06:35:22Z,- KianBadie pull request merged: [546](https://github.com/hackforla/website/pull/546#event-3376604856) at 2020-05-26 11:35 PM PDT -KianBadie,2020-05-27T21:17:07Z,- KianBadie pull request merged: [545](https://github.com/hackforla/website/pull/545#event-3380109438) at 2020-05-27 02:17 PM PDT -KianBadie,2020-06-04T02:43:23Z,- KianBadie commented on pull request: [554](https://github.com/hackforla/website/pull/554#issuecomment-638568389) at 2020-06-03 07:43 PM PDT -KianBadie,2020-06-04T05:36:17Z,- KianBadie commented on pull request: [560](https://github.com/hackforla/website/pull/560#issuecomment-638613163) at 2020-06-03 10:36 PM PDT -KianBadie,2020-06-11T01:00:56Z,- KianBadie commented on pull request: [554](https://github.com/hackforla/website/pull/554#issuecomment-642343640) at 2020-06-10 06:00 PM PDT -KianBadie,2020-06-11T01:58:52Z,- KianBadie commented on pull request: [572](https://github.com/hackforla/website/pull/572#issuecomment-642359320) at 2020-06-10 06:58 PM PDT -KianBadie,2020-06-12T02:02:52Z,- KianBadie opened pull request: [575](https://github.com/hackforla/website/pull/575) at 2020-06-11 07:02 PM PDT -KianBadie,2020-06-12T04:21:41Z,- KianBadie pull request merged: [575](https://github.com/hackforla/website/pull/575#event-3436841442) at 2020-06-11 09:21 PM PDT -KianBadie,2020-06-13T00:36:42Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-643532407) at 2020-06-12 05:36 PM PDT -KianBadie,2020-06-14T17:51:01Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-643799456) at 2020-06-14 10:51 AM PDT -KianBadie,2020-06-16T21:52:09Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-645030696) at 2020-06-16 02:52 PM PDT -KianBadie,2020-06-21T06:41:33Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-647086136) at 2020-06-20 11:41 PM PDT -KianBadie,2020-06-21T18:02:16Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-647161104) at 2020-06-21 11:02 AM PDT -KianBadie,2020-06-21T18:05:08Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-647161431) at 2020-06-21 11:05 AM PDT -KianBadie,2020-06-28T16:21:03Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-650788539) at 2020-06-28 09:21 AM PDT -KianBadie,2020-07-05T16:38:56Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-653910263) at 2020-07-05 09:38 AM PDT -KianBadie,2020-07-10T21:07:30Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-656891208) at 2020-07-10 02:07 PM PDT -KianBadie,2020-07-11T17:19:49Z,- KianBadie commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-657098399) at 2020-07-11 10:19 AM PDT -KianBadie,2020-07-13T03:37:55Z,- KianBadie opened pull request: [608](https://github.com/hackforla/website/pull/608) at 2020-07-12 08:37 PM PDT -KianBadie,2020-07-13T05:23:31Z,- KianBadie pull request merged: [608](https://github.com/hackforla/website/pull/608#event-3538016015) at 2020-07-12 10:23 PM PDT -KianBadie,2020-07-19T19:08:10Z,- KianBadie assigned to issue: [615](https://github.com/hackforla/website/issues/615) at 2020-07-19 12:08 PM PDT -KianBadie,2020-07-21T04:26:10Z,- KianBadie commented on pull request: [611](https://github.com/hackforla/website/pull/611#issuecomment-661625529) at 2020-07-20 09:26 PM PDT -KianBadie,2020-07-21T04:30:26Z,- KianBadie commented on pull request: [620](https://github.com/hackforla/website/pull/620#issuecomment-661626564) at 2020-07-20 09:30 PM PDT -KianBadie,2020-07-21T04:33:12Z,- KianBadie closed issue by PR 620: [588](https://github.com/hackforla/website/issues/588#event-3569044047) at 2020-07-20 09:33 PM PDT -KianBadie,2020-07-21T04:37:27Z,- KianBadie commented on pull request: [621](https://github.com/hackforla/website/pull/621#issuecomment-661628285) at 2020-07-20 09:37 PM PDT -KianBadie,2020-07-21T04:51:13Z,- KianBadie opened pull request: [622](https://github.com/hackforla/website/pull/622) at 2020-07-20 09:51 PM PDT -KianBadie,2020-07-21T04:51:34Z,- KianBadie pull request merged: [622](https://github.com/hackforla/website/pull/622#event-3569098066) at 2020-07-20 09:51 PM PDT -KianBadie,2020-07-22T05:28:27Z,- KianBadie opened issue: [625](https://github.com/hackforla/website/issues/625) at 2020-07-21 10:28 PM PDT -KianBadie,2020-07-23T01:38:11Z,- KianBadie opened pull request: [629](https://github.com/hackforla/website/pull/629) at 2020-07-22 06:38 PM PDT -KianBadie,2020-07-23T04:09:03Z,- KianBadie pull request merged: [629](https://github.com/hackforla/website/pull/629#event-3578357958) at 2020-07-22 09:09 PM PDT -KianBadie,2020-07-23T04:40:56Z,- KianBadie commented on pull request: [613](https://github.com/hackforla/website/pull/613#issuecomment-662815143) at 2020-07-22 09:40 PM PDT -KianBadie,2020-07-24T23:30:18Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-663772717) at 2020-07-24 04:30 PM PDT -KianBadie,2020-07-28T00:15:55Z,- KianBadie commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-664703221) at 2020-07-27 05:15 PM PDT -KianBadie,2020-07-28T00:15:55Z,- KianBadie reopened issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-664703221) at 2020-07-27 05:15 PM PDT -KianBadie,2020-07-28T00:24:00Z,- KianBadie commented on pull request: [636](https://github.com/hackforla/website/pull/636#issuecomment-664705466) at 2020-07-27 05:24 PM PDT -KianBadie,2020-07-28T00:40:15Z,- KianBadie commented on pull request: [639](https://github.com/hackforla/website/pull/639#issuecomment-664709852) at 2020-07-27 05:40 PM PDT -KianBadie,2020-07-28T00:48:28Z,- KianBadie commented on pull request: [634](https://github.com/hackforla/website/pull/634#issuecomment-664711988) at 2020-07-27 05:48 PM PDT -KianBadie,2020-08-01T03:49:06Z,- KianBadie commented on pull request: [662](https://github.com/hackforla/website/pull/662#issuecomment-667463356) at 2020-07-31 08:49 PM PDT -KianBadie,2020-08-02T15:14:36Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-667686471) at 2020-08-02 08:14 AM PDT -KianBadie,2020-08-03T02:14:08Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-667767008) at 2020-08-02 07:14 PM PDT -KianBadie,2020-08-03T20:11:38Z,- KianBadie closed issue by PR 663: [625](https://github.com/hackforla/website/issues/625#event-3617426290) at 2020-08-03 01:11 PM PDT -KianBadie,2020-08-05T02:52:44Z,- KianBadie closed issue by PR 669: [664](https://github.com/hackforla/website/issues/664#event-3622780734) at 2020-08-04 07:52 PM PDT -KianBadie,2020-08-05T02:59:14Z,- KianBadie closed issue by PR 670: [659](https://github.com/hackforla/website/issues/659#event-3622793297) at 2020-08-04 07:59 PM PDT -KianBadie,2020-08-05T03:16:58Z,- KianBadie opened pull request: [671](https://github.com/hackforla/website/pull/671) at 2020-08-04 08:16 PM PDT -KianBadie,2020-08-05T03:17:08Z,- KianBadie pull request merged: [671](https://github.com/hackforla/website/pull/671#event-3622827761) at 2020-08-04 08:17 PM PDT -KianBadie,2020-08-06T21:40:09Z,- KianBadie commented on pull request: [672](https://github.com/hackforla/website/pull/672#issuecomment-670205653) at 2020-08-06 02:40 PM PDT -KianBadie,2020-08-07T00:19:38Z,- KianBadie commented on pull request: [672](https://github.com/hackforla/website/pull/672#issuecomment-670253745) at 2020-08-06 05:19 PM PDT -KianBadie,2020-08-07T00:20:17Z,- KianBadie closed issue by PR 750: [555](https://github.com/hackforla/website/issues/555#event-3631282176) at 2020-08-06 05:20 PM PDT -KianBadie,2020-08-07T20:31:28Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-670701033) at 2020-08-07 01:31 PM PDT -KianBadie,2020-08-07T20:57:28Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-670710024) at 2020-08-07 01:57 PM PDT -KianBadie,2020-08-08T00:09:14Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-670791592) at 2020-08-07 05:09 PM PDT -KianBadie,2020-08-08T00:36:24Z,- KianBadie commented on pull request: [673](https://github.com/hackforla/website/pull/673#issuecomment-670796591) at 2020-08-07 05:36 PM PDT -KianBadie,2020-08-08T22:58:49Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-670982657) at 2020-08-08 03:58 PM PDT -KianBadie,2020-08-11T20:49:38Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-672271815) at 2020-08-11 01:49 PM PDT -KianBadie,2020-08-16T14:53:43Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-674536329) at 2020-08-16 07:53 AM PDT -KianBadie,2020-08-16T17:10:57Z,- KianBadie commented on issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-674552136) at 2020-08-16 10:10 AM PDT -KianBadie,2020-08-16T18:49:57Z,- KianBadie opened pull request: [683](https://github.com/hackforla/website/pull/683) at 2020-08-16 11:49 AM PDT -KianBadie,2020-08-18T18:31:25Z,- KianBadie pull request closed w/o merging: [683](https://github.com/hackforla/website/pull/683#event-3667614075) at 2020-08-18 11:31 AM PDT -KianBadie,2020-08-18T18:53:27Z,- KianBadie commented on pull request: [685](https://github.com/hackforla/website/pull/685#issuecomment-675653600) at 2020-08-18 11:53 AM PDT -KianBadie,2020-08-21T23:55:20Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-678560210) at 2020-08-21 04:55 PM PDT -KianBadie,2020-08-23T15:39:50Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-678789244) at 2020-08-23 08:39 AM PDT -KianBadie,2020-08-24T21:49:25Z,- KianBadie assigned to issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679384177) at 2020-08-24 02:49 PM PDT -KianBadie,2020-08-24T23:29:00Z,- KianBadie commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679416519) at 2020-08-24 04:29 PM PDT -KianBadie,2020-08-26T01:32:02Z,- KianBadie commented on pull request: [685](https://github.com/hackforla/website/pull/685#issuecomment-680407426) at 2020-08-25 06:32 PM PDT -KianBadie,2020-08-26T19:26:30Z,- KianBadie commented on pull request: [685](https://github.com/hackforla/website/pull/685#issuecomment-681077792) at 2020-08-26 12:26 PM PDT -KianBadie,2020-08-29T18:37:23Z,- KianBadie submitted pull request review: [711](https://github.com/hackforla/website/pull/711#pullrequestreview-478147346) at 2020-08-29 11:37 AM PDT -KianBadie,2020-08-29T18:38:26Z,- KianBadie submitted pull request review: [711](https://github.com/hackforla/website/pull/711#pullrequestreview-478147409) at 2020-08-29 11:38 AM PDT -KianBadie,2020-08-29T18:38:53Z,- KianBadie submitted pull request review: [711](https://github.com/hackforla/website/pull/711#pullrequestreview-478147433) at 2020-08-29 11:38 AM PDT -KianBadie,2020-08-30T13:41:13Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-683422135) at 2020-08-30 06:41 AM PDT -KianBadie,2020-08-31T01:02:39Z,- KianBadie commented on pull request: [712](https://github.com/hackforla/website/pull/712#issuecomment-683499278) at 2020-08-30 06:02 PM PDT -KianBadie,2020-09-02T19:59:14Z,- KianBadie commented on issue: [705](https://github.com/hackforla/website/issues/705#issuecomment-685964118) at 2020-09-02 12:59 PM PDT -KianBadie,2020-09-02T23:07:01Z,- KianBadie submitted pull request review: [713](https://github.com/hackforla/website/pull/713#pullrequestreview-481372811) at 2020-09-02 04:07 PM PDT -KianBadie,2020-09-06T16:24:23Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-687833342) at 2020-09-06 09:24 AM PDT -KianBadie,2020-09-06T18:04:56Z,- KianBadie commented on pull request: [712](https://github.com/hackforla/website/pull/712#issuecomment-687857671) at 2020-09-06 11:04 AM PDT -KianBadie,2020-09-07T19:22:06Z,- KianBadie commented on pull request: [713](https://github.com/hackforla/website/pull/713#issuecomment-688482167) at 2020-09-07 12:22 PM PDT -KianBadie,2020-09-08T23:43:18Z,- KianBadie submitted pull request review: [718](https://github.com/hackforla/website/pull/718#pullrequestreview-484564755) at 2020-09-08 04:43 PM PDT -KianBadie,2020-09-09T20:45:23Z,- KianBadie submitted pull request review: [716](https://github.com/hackforla/website/pull/716#pullrequestreview-485390351) at 2020-09-09 01:45 PM PDT -KianBadie,2020-09-09T22:07:59Z,- KianBadie commented on pull request: [713](https://github.com/hackforla/website/pull/713#issuecomment-689847703) at 2020-09-09 03:07 PM PDT -KianBadie,2020-09-09T22:08:11Z,- KianBadie closed issue by PR 713: [684](https://github.com/hackforla/website/issues/684#event-3748024065) at 2020-09-09 03:08 PM PDT -KianBadie,2020-09-11T20:16:02Z,- KianBadie submitted pull request review: [716](https://github.com/hackforla/website/pull/716#pullrequestreview-487097185) at 2020-09-11 01:16 PM PDT -KianBadie,2020-09-11T20:26:36Z,- KianBadie commented on pull request: [712](https://github.com/hackforla/website/pull/712#issuecomment-691296777) at 2020-09-11 01:26 PM PDT -KianBadie,2020-09-11T20:26:41Z,- KianBadie closed issue by PR 673: [651](https://github.com/hackforla/website/issues/651#event-3757915133) at 2020-09-11 01:26 PM PDT -KianBadie,2020-09-12T17:36:19Z,- KianBadie commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691522248) at 2020-09-12 10:36 AM PDT -KianBadie,2020-09-13T01:04:55Z,- KianBadie submitted pull request review: [716](https://github.com/hackforla/website/pull/716#pullrequestreview-487266193) at 2020-09-12 06:04 PM PDT -KianBadie,2020-09-13T15:20:36Z,- KianBadie submitted pull request review: [716](https://github.com/hackforla/website/pull/716#pullrequestreview-487316232) at 2020-09-13 08:20 AM PDT -KianBadie,2020-09-13T15:35:55Z,- KianBadie submitted pull request review: [716](https://github.com/hackforla/website/pull/716#pullrequestreview-487317352) at 2020-09-13 08:35 AM PDT -KianBadie,2020-09-13T15:45:02Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-691687863) at 2020-09-13 08:45 AM PDT -KianBadie,2020-09-13T16:04:39Z,- KianBadie commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-691690256) at 2020-09-13 09:04 AM PDT -KianBadie,2020-09-13T16:06:04Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-691690414) at 2020-09-13 09:06 AM PDT -KianBadie,2020-09-14T18:10:57Z,- KianBadie commented on pull request: [724](https://github.com/hackforla/website/pull/724#issuecomment-692224026) at 2020-09-14 11:10 AM PDT -KianBadie,2020-09-14T20:19:15Z,- KianBadie commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-692290995) at 2020-09-14 01:19 PM PDT -KianBadie,2020-09-14T21:27:08Z,- KianBadie submitted pull request review: [728](https://github.com/hackforla/website/pull/728#pullrequestreview-488153421) at 2020-09-14 02:27 PM PDT -KianBadie,2020-09-15T22:09:37Z,- KianBadie commented on pull request: [724](https://github.com/hackforla/website/pull/724#issuecomment-693006036) at 2020-09-15 03:09 PM PDT -KianBadie,2020-09-16T18:43:02Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-693590056) at 2020-09-16 11:43 AM PDT -KianBadie,2020-09-16T19:01:57Z,- KianBadie submitted pull request review: [732](https://github.com/hackforla/website/pull/732#pullrequestreview-489938638) at 2020-09-16 12:01 PM PDT -KianBadie,2020-09-16T19:20:00Z,- KianBadie commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-693609080) at 2020-09-16 12:20 PM PDT -KianBadie,2020-09-16T19:26:27Z,- KianBadie opened pull request: [734](https://github.com/hackforla/website/pull/734) at 2020-09-16 12:26 PM PDT -KianBadie,2020-09-16T19:38:05Z,- KianBadie opened issue: [735](https://github.com/hackforla/website/issues/735) at 2020-09-16 12:38 PM PDT -KianBadie,2020-09-16T19:38:05Z,- KianBadie assigned to issue: [735](https://github.com/hackforla/website/issues/735) at 2020-09-16 12:38 PM PDT -KianBadie,2020-09-16T20:01:42Z,- KianBadie pull request merged: [734](https://github.com/hackforla/website/pull/734#event-3774854311) at 2020-09-16 01:01 PM PDT -KianBadie,2020-09-16T20:13:37Z,- KianBadie commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-693640480) at 2020-09-16 01:13 PM PDT -KianBadie,2020-09-16T20:45:09Z,- KianBadie commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-693655407) at 2020-09-16 01:45 PM PDT -KianBadie,2020-09-17T22:33:51Z,- KianBadie commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-694535334) at 2020-09-17 03:33 PM PDT -KianBadie,2020-09-17T22:52:49Z,- KianBadie commented on issue: [735](https://github.com/hackforla/website/issues/735#issuecomment-694542112) at 2020-09-17 03:52 PM PDT -KianBadie,2020-09-17T22:52:49Z,- KianBadie closed issue as completed: [735](https://github.com/hackforla/website/issues/735#event-3780209300) at 2020-09-17 03:52 PM PDT -KianBadie,2020-09-17T22:57:08Z,- KianBadie commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694543622) at 2020-09-17 03:57 PM PDT -KianBadie,2020-09-17T23:00:49Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-694544664) at 2020-09-17 04:00 PM PDT -KianBadie,2020-09-17T23:08:47Z,- KianBadie submitted pull request review: [728](https://github.com/hackforla/website/pull/728#pullrequestreview-491047657) at 2020-09-17 04:08 PM PDT -KianBadie,2020-09-17T23:56:06Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-694562073) at 2020-09-17 04:56 PM PDT -KianBadie,2020-09-18T01:00:49Z,- KianBadie commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-694585085) at 2020-09-17 06:00 PM PDT -KianBadie,2020-09-18T01:19:37Z,- KianBadie commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694592232) at 2020-09-17 06:19 PM PDT -KianBadie,2020-09-18T01:49:11Z,- KianBadie commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694600584) at 2020-09-17 06:49 PM PDT -KianBadie,2020-09-18T17:21:37Z,- KianBadie opened pull request: [736](https://github.com/hackforla/website/pull/736) at 2020-09-18 10:21 AM PDT -KianBadie,2020-09-18T17:22:31Z,- KianBadie commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694988982) at 2020-09-18 10:22 AM PDT -KianBadie,2020-09-19T00:03:44Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-695133201) at 2020-09-18 05:03 PM PDT -KianBadie,2020-09-19T01:06:45Z,- KianBadie submitted pull request review: [728](https://github.com/hackforla/website/pull/728#pullrequestreview-491844587) at 2020-09-18 06:06 PM PDT -KianBadie,2020-09-19T20:23:46Z,- KianBadie commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-695352556) at 2020-09-19 01:23 PM PDT -KianBadie,2020-09-19T20:26:45Z,- KianBadie commented on pull request: [736](https://github.com/hackforla/website/pull/736#issuecomment-695352819) at 2020-09-19 01:26 PM PDT -KianBadie,2020-09-19T20:35:00Z,- KianBadie pull request merged: [736](https://github.com/hackforla/website/pull/736#event-3785510800) at 2020-09-19 01:35 PM PDT -KianBadie,2020-09-19T23:01:20Z,- KianBadie commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-695364816) at 2020-09-19 04:01 PM PDT -KianBadie,2020-09-19T23:03:29Z,- KianBadie commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-695364998) at 2020-09-19 04:03 PM PDT -KianBadie,2020-09-19T23:03:58Z,- KianBadie closed issue by PR 716: [526](https://github.com/hackforla/website/issues/526#event-3785585856) at 2020-09-19 04:03 PM PDT -KianBadie,2020-09-19T23:22:55Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-695366480) at 2020-09-19 04:22 PM PDT -KianBadie,2020-09-19T23:23:08Z,- KianBadie commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-695366489) at 2020-09-19 04:23 PM PDT -KianBadie,2020-09-20T16:48:40Z,- KianBadie commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-695808828) at 2020-09-20 09:48 AM PDT -KianBadie,2020-09-20T16:49:27Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-695808914) at 2020-09-20 09:49 AM PDT -KianBadie,2020-09-20T18:17:14Z,- KianBadie commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-695818493) at 2020-09-20 11:17 AM PDT -KianBadie,2020-09-25T20:15:26Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-699133649) at 2020-09-25 01:15 PM PDT -KianBadie,2020-09-27T15:30:39Z,- KianBadie opened pull request: [750](https://github.com/hackforla/website/pull/750) at 2020-09-27 08:30 AM PDT -KianBadie,2020-09-27T15:32:49Z,- KianBadie commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-699649970) at 2020-09-27 08:32 AM PDT -KianBadie,2020-09-27T15:33:07Z,- KianBadie closed issue by PR 750: [555](https://github.com/hackforla/website/issues/555#event-3811760369) at 2020-09-27 08:33 AM PDT -KianBadie,2020-09-27T15:33:07Z,- KianBadie pull request merged: [750](https://github.com/hackforla/website/pull/750#event-3811760375) at 2020-09-27 08:33 AM PDT -KianBadie,2020-09-27T15:33:42Z,- KianBadie commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-699650086) at 2020-09-27 08:33 AM PDT -KianBadie,2020-09-27T15:50:39Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-699652109) at 2020-09-27 08:50 AM PDT -KianBadie,2020-09-27T18:06:12Z,- KianBadie assigned to issue: [751](https://github.com/hackforla/website/issues/751) at 2020-09-27 11:06 AM PDT -KianBadie,2020-09-27T19:41:59Z,- KianBadie opened pull request: [753](https://github.com/hackforla/website/pull/753) at 2020-09-27 12:41 PM PDT -KianBadie,2020-09-28T03:01:57Z,- KianBadie pull request merged: [753](https://github.com/hackforla/website/pull/753#event-3812387950) at 2020-09-27 08:01 PM PDT -KianBadie,2020-09-29T01:01:38Z,- KianBadie assigned to issue: [746](https://github.com/hackforla/website/issues/746#issuecomment-698493761) at 2020-09-28 06:01 PM PDT -KianBadie,2020-09-29T01:06:17Z,- KianBadie opened pull request: [755](https://github.com/hackforla/website/pull/755) at 2020-09-28 06:06 PM PDT -KianBadie,2020-09-29T01:07:02Z,- KianBadie commented on issue: [746](https://github.com/hackforla/website/issues/746#issuecomment-700363872) at 2020-09-28 06:07 PM PDT -KianBadie,2020-09-29T22:42:51Z,- KianBadie commented on issue: [746](https://github.com/hackforla/website/issues/746#issuecomment-701030470) at 2020-09-29 03:42 PM PDT -KianBadie,2020-09-29T22:43:43Z,- KianBadie closed issue by PR 755: [746](https://github.com/hackforla/website/issues/746#event-3821960274) at 2020-09-29 03:43 PM PDT -KianBadie,2020-09-29T22:43:43Z,- KianBadie pull request merged: [755](https://github.com/hackforla/website/pull/755#event-3821960277) at 2020-09-29 03:43 PM PDT -KianBadie,2020-09-30T00:50:39Z,- KianBadie opened pull request: [757](https://github.com/hackforla/website/pull/757) at 2020-09-29 05:50 PM PDT -KianBadie,2020-10-01T00:44:24Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-701720687) at 2020-09-30 05:44 PM PDT -KianBadie,2020-10-01T02:45:15Z,- KianBadie commented on pull request: [758](https://github.com/hackforla/website/pull/758#issuecomment-701783080) at 2020-09-30 07:45 PM PDT -KianBadie,2020-10-01T22:58:54Z,- KianBadie commented on pull request: [757](https://github.com/hackforla/website/pull/757#issuecomment-702439511) at 2020-10-01 03:58 PM PDT -KianBadie,2020-10-03T19:18:32Z,- KianBadie commented on pull request: [757](https://github.com/hackforla/website/pull/757#issuecomment-703152552) at 2020-10-03 12:18 PM PDT -KianBadie,2020-10-04T14:40:51Z,- KianBadie commented on pull request: [757](https://github.com/hackforla/website/pull/757#issuecomment-703265389) at 2020-10-04 07:40 AM PDT -KianBadie,2020-10-04T15:00:19Z,- KianBadie commented on pull request: [757](https://github.com/hackforla/website/pull/757#issuecomment-703267944) at 2020-10-04 08:00 AM PDT -KianBadie,2020-10-04T15:12:53Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-703269760) at 2020-10-04 08:12 AM PDT -KianBadie,2020-10-04T16:11:08Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-703277859) at 2020-10-04 09:11 AM PDT -KianBadie,2020-10-04T16:15:42Z,- KianBadie commented on pull request: [764](https://github.com/hackforla/website/pull/764#issuecomment-703278578) at 2020-10-04 09:15 AM PDT -KianBadie,2020-10-04T18:36:48Z,- KianBadie commented on pull request: [681](https://github.com/hackforla/website/pull/681#issuecomment-703297194) at 2020-10-04 11:36 AM PDT -KianBadie,2020-10-06T00:11:19Z,- KianBadie submitted pull request review: [764](https://github.com/hackforla/website/pull/764#pullrequestreview-502502356) at 2020-10-05 05:11 PM PDT -KianBadie,2020-10-06T01:20:16Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-703973604) at 2020-10-05 06:20 PM PDT -KianBadie,2020-10-06T22:57:15Z,- KianBadie pull request merged: [757](https://github.com/hackforla/website/pull/757#event-3847878943) at 2020-10-06 03:57 PM PDT -KianBadie,2020-10-07T02:13:04Z,- KianBadie commented on pull request: [681](https://github.com/hackforla/website/pull/681#issuecomment-704650492) at 2020-10-06 07:13 PM PDT -KianBadie,2020-10-07T02:24:16Z,- KianBadie commented on pull request: [760](https://github.com/hackforla/website/pull/760#issuecomment-704653446) at 2020-10-06 07:24 PM PDT -KianBadie,2020-10-07T03:16:07Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-704666725) at 2020-10-06 08:16 PM PDT -KianBadie,2020-10-08T01:53:35Z,- KianBadie commented on pull request: [764](https://github.com/hackforla/website/pull/764#issuecomment-705283779) at 2020-10-07 06:53 PM PDT -KianBadie,2020-10-08T03:27:59Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-705307489) at 2020-10-07 08:27 PM PDT -KianBadie,2020-10-08T22:35:44Z,- KianBadie commented on pull request: [764](https://github.com/hackforla/website/pull/764#issuecomment-705858733) at 2020-10-08 03:35 PM PDT -KianBadie,2020-10-09T00:45:04Z,- KianBadie opened pull request: [772](https://github.com/hackforla/website/pull/772) at 2020-10-08 05:45 PM PDT -KianBadie,2020-10-09T00:56:10Z,- KianBadie pull request merged: [772](https://github.com/hackforla/website/pull/772#event-3857953444) at 2020-10-08 05:56 PM PDT -KianBadie,2020-10-09T23:03:39Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-706437030) at 2020-10-09 04:03 PM PDT -KianBadie,2020-10-09T23:16:51Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-706440138) at 2020-10-09 04:16 PM PDT -KianBadie,2020-10-10T00:11:55Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-706451206) at 2020-10-09 05:11 PM PDT -KianBadie,2020-10-11T17:44:29Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-706740681) at 2020-10-11 10:44 AM PDT -KianBadie,2020-10-14T03:18:27Z,- KianBadie commented on pull request: [696](https://github.com/hackforla/website/pull/696#issuecomment-708130452) at 2020-10-13 08:18 PM PDT -KianBadie,2020-10-15T01:43:28Z,- KianBadie opened pull request: [782](https://github.com/hackforla/website/pull/782) at 2020-10-14 06:43 PM PDT -KianBadie,2020-10-15T21:34:35Z,- KianBadie commented on issue: [733](https://github.com/hackforla/website/issues/733#issuecomment-709603183) at 2020-10-15 02:34 PM PDT -KianBadie,2020-10-16T00:24:29Z,- KianBadie commented on pull request: [782](https://github.com/hackforla/website/pull/782#issuecomment-709657826) at 2020-10-15 05:24 PM PDT -KianBadie,2020-10-16T02:05:14Z,- KianBadie pull request merged: [782](https://github.com/hackforla/website/pull/782#event-3884247609) at 2020-10-15 07:05 PM PDT -KianBadie,2020-10-16T21:42:12Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-710666766) at 2020-10-16 02:42 PM PDT -KianBadie,2020-10-16T22:01:37Z,- KianBadie commented on pull request: [784](https://github.com/hackforla/website/pull/784#issuecomment-710672931) at 2020-10-16 03:01 PM PDT -KianBadie,2020-10-16T22:03:21Z,- KianBadie commented on pull request: [783](https://github.com/hackforla/website/pull/783#issuecomment-710673465) at 2020-10-16 03:03 PM PDT -KianBadie,2020-10-16T22:15:26Z,- KianBadie opened pull request: [787](https://github.com/hackforla/website/pull/787) at 2020-10-16 03:15 PM PDT -KianBadie,2020-10-16T22:15:37Z,- KianBadie pull request merged: [787](https://github.com/hackforla/website/pull/787#event-3888415002) at 2020-10-16 03:15 PM PDT -KianBadie,2020-10-16T22:37:58Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-710683178) at 2020-10-16 03:37 PM PDT -KianBadie,2020-10-17T00:59:12Z,- KianBadie opened pull request: [788](https://github.com/hackforla/website/pull/788) at 2020-10-16 05:59 PM PDT -KianBadie,2020-10-17T00:59:24Z,- KianBadie commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-710714932) at 2020-10-16 05:59 PM PDT -KianBadie,2020-10-17T22:16:06Z,- KianBadie commented on pull request: [783](https://github.com/hackforla/website/pull/783#issuecomment-711087013) at 2020-10-17 03:16 PM PDT -KianBadie,2020-10-18T15:33:14Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-711228430) at 2020-10-18 08:33 AM PDT -KianBadie,2020-10-18T15:55:32Z,- KianBadie commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711248983) at 2020-10-18 08:55 AM PDT -KianBadie,2020-10-18T16:44:09Z,- KianBadie commented on pull request: [788](https://github.com/hackforla/website/pull/788#issuecomment-711283739) at 2020-10-18 09:44 AM PDT -KianBadie,2020-10-18T17:10:48Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-711298712) at 2020-10-18 10:10 AM PDT -KianBadie,2020-10-18T17:35:09Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-711319147) at 2020-10-18 10:35 AM PDT -KianBadie,2020-10-18T17:39:40Z,- KianBadie assigned to issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711248983) at 2020-10-18 10:39 AM PDT -KianBadie,2020-10-18T17:44:31Z,- KianBadie commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711327209) at 2020-10-18 10:44 AM PDT -KianBadie,2020-10-20T00:04:05Z,- KianBadie commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-712506735) at 2020-10-19 05:04 PM PDT -KianBadie,2020-10-20T00:16:05Z,- KianBadie commented on pull request: [788](https://github.com/hackforla/website/pull/788#issuecomment-712510943) at 2020-10-19 05:16 PM PDT -KianBadie,2020-10-20T00:18:35Z,- KianBadie closed issue by PR 788: [780](https://github.com/hackforla/website/issues/780#event-3896026992) at 2020-10-19 05:18 PM PDT -KianBadie,2020-10-20T00:18:35Z,- KianBadie pull request merged: [788](https://github.com/hackforla/website/pull/788#event-3896026998) at 2020-10-19 05:18 PM PDT -KianBadie,2020-10-20T03:24:59Z,- KianBadie commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-712564121) at 2020-10-19 08:24 PM PDT -KianBadie,2020-10-21T01:24:40Z,- KianBadie opened pull request: [791](https://github.com/hackforla/website/pull/791) at 2020-10-20 06:24 PM PDT -KianBadie,2020-10-21T02:18:00Z,- KianBadie commented on pull request: [789](https://github.com/hackforla/website/pull/789#issuecomment-713249042) at 2020-10-20 07:18 PM PDT -KianBadie,2020-10-21T02:18:40Z,- KianBadie commented on pull request: [785](https://github.com/hackforla/website/pull/785#issuecomment-713249261) at 2020-10-20 07:18 PM PDT -KianBadie,2020-10-21T02:19:15Z,- KianBadie commented on pull request: [786](https://github.com/hackforla/website/pull/786#issuecomment-713249445) at 2020-10-20 07:19 PM PDT -KianBadie,2020-10-21T02:21:53Z,- KianBadie commented on pull request: [790](https://github.com/hackforla/website/pull/790#issuecomment-713250212) at 2020-10-20 07:21 PM PDT -KianBadie,2020-10-21T23:49:54Z,- KianBadie commented on pull request: [791](https://github.com/hackforla/website/pull/791#issuecomment-714008223) at 2020-10-21 04:49 PM PDT -KianBadie,2020-10-21T23:53:44Z,- KianBadie closed issue by PR 791: [751](https://github.com/hackforla/website/issues/751#event-3906402166) at 2020-10-21 04:53 PM PDT -KianBadie,2020-10-21T23:53:44Z,- KianBadie pull request merged: [791](https://github.com/hackforla/website/pull/791#event-3906402170) at 2020-10-21 04:53 PM PDT -KianBadie,2020-10-22T00:41:15Z,- KianBadie commented on pull request: [792](https://github.com/hackforla/website/pull/792#issuecomment-714073547) at 2020-10-21 05:41 PM PDT -KianBadie,2020-10-22T00:55:33Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-714092615) at 2020-10-21 05:55 PM PDT -KianBadie,2020-10-22T21:29:46Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-714773062) at 2020-10-22 02:29 PM PDT -KianBadie,2020-10-24T17:46:05Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-716030130) at 2020-10-24 10:46 AM PDT -KianBadie,2020-10-28T22:10:26Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-718237719) at 2020-10-28 03:10 PM PDT -KianBadie,2020-11-01T01:55:37Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-720014417) at 2020-10-31 05:55 PM PST -KianBadie,2020-11-04T03:11:00Z,- KianBadie submitted pull request review: [790](https://github.com/hackforla/website/pull/790#pullrequestreview-523016408) at 2020-11-03 07:11 PM PST -KianBadie,2020-11-08T17:47:28Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-723643112) at 2020-11-08 09:47 AM PST -KianBadie,2020-11-15T02:56:22Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-727319991) at 2020-11-14 06:56 PM PST -KianBadie,2020-11-22T00:11:00Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-731656268) at 2020-11-21 04:11 PM PST -KianBadie,2020-12-06T15:49:19Z,- KianBadie commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-739521630) at 2020-12-06 07:49 AM PST -KianBadie,2020-12-06T19:23:49Z,- KianBadie opened pull request: [832](https://github.com/hackforla/website/pull/832) at 2020-12-06 11:23 AM PST -KianBadie,2020-12-06T19:25:26Z,- KianBadie assigned to issue: [831](https://github.com/hackforla/website/issues/831) at 2020-12-06 11:25 AM PST -KianBadie,2020-12-06T19:25:43Z,- KianBadie pull request merged: [832](https://github.com/hackforla/website/pull/832#event-4076919567) at 2020-12-06 11:25 AM PST -KianBadie,2020-12-06T19:36:32Z,- KianBadie commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-739551818) at 2020-12-06 11:36 AM PST -KianBadie,2020-12-18T05:14:37Z,- KianBadie commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-747872665) at 2020-12-17 09:14 PM PST -KianBadie,2020-12-27T18:00:28Z,- KianBadie commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-751497685) at 2020-12-27 10:00 AM PST -KianBadie,2021-01-08T02:11:53Z,- KianBadie commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-756501661) at 2021-01-07 06:11 PM PST -KianBadie,2021-01-13T02:53:02Z,- KianBadie assigned to issue: [934](https://github.com/hackforla/website/issues/934) at 2021-01-12 06:53 PM PST -KianBadie,2021-01-14T22:58:47Z,- KianBadie commented on issue: [934](https://github.com/hackforla/website/issues/934#issuecomment-760529658) at 2021-01-14 02:58 PM PST -kimberlytanyh,4117,SKILLS ISSUE -kimberlytanyh,2023-03-06T06:21:33Z,- kimberlytanyh assigned to issue: [4051](https://github.com/hackforla/website/issues/4051) at 2023-03-05 10:21 PM PST -kimberlytanyh,2023-03-06T06:38:31Z,- kimberlytanyh commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1455537593) at 2023-03-05 10:38 PM PST -kimberlytanyh,2023-03-06T06:39:35Z,- kimberlytanyh opened issue: [4117](https://github.com/hackforla/website/issues/4117) at 2023-03-05 10:39 PM PST -kimberlytanyh,2023-03-06T06:41:02Z,- kimberlytanyh commented on issue: [4117](https://github.com/hackforla/website/issues/4117#issuecomment-1455539434) at 2023-03-05 10:41 PM PST -kimberlytanyh,2023-03-07T00:40:24Z,- kimberlytanyh assigned to issue: [4117](https://github.com/hackforla/website/issues/4117#issuecomment-1455539434) at 2023-03-06 04:40 PM PST -kimberlytanyh,2023-03-07T03:42:16Z,- kimberlytanyh commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1457467480) at 2023-03-06 07:42 PM PST -kimberlytanyh,2023-03-07T03:43:29Z,- kimberlytanyh unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1457467480) at 2023-03-06 07:43 PM PST -kimberlytanyh,2023-03-07T03:53:42Z,- kimberlytanyh assigned to issue: [4046](https://github.com/hackforla/website/issues/4046) at 2023-03-06 07:53 PM PST -kimberlytanyh,2023-03-07T03:58:16Z,- kimberlytanyh commented on issue: [4046](https://github.com/hackforla/website/issues/4046#issuecomment-1457483468) at 2023-03-06 07:58 PM PST -kimberlytanyh,2023-03-08T08:09:56Z,- kimberlytanyh opened pull request: [4133](https://github.com/hackforla/website/pull/4133) at 2023-03-08 12:09 AM PST -kimberlytanyh,2023-03-08T08:18:50Z,- kimberlytanyh commented on issue: [4046](https://github.com/hackforla/website/issues/4046#issuecomment-1459707714) at 2023-03-08 12:18 AM PST -kimberlytanyh,2023-03-08T08:33:22Z,- kimberlytanyh closed issue as completed: [4117](https://github.com/hackforla/website/issues/4117#event-8694211336) at 2023-03-08 12:33 AM PST -kimberlytanyh,2023-03-09T02:23:37Z,- kimberlytanyh commented on pull request: [4133](https://github.com/hackforla/website/pull/4133#issuecomment-1461170899) at 2023-03-08 06:23 PM PST -kimberlytanyh,2023-03-09T03:57:13Z,- kimberlytanyh pull request merged: [4133](https://github.com/hackforla/website/pull/4133#event-8702945305) at 2023-03-08 07:57 PM PST -kimberlytanyh,2023-03-10T20:09:36Z,- kimberlytanyh assigned to issue: [4132](https://github.com/hackforla/website/issues/4132#issuecomment-1461162887) at 2023-03-10 12:09 PM PST -kimberlytanyh,2023-03-10T20:12:38Z,- kimberlytanyh commented on issue: [4132](https://github.com/hackforla/website/issues/4132#issuecomment-1464362440) at 2023-03-10 12:12 PM PST -kimberlytanyh,2023-03-10T23:28:36Z,- kimberlytanyh opened pull request: [4147](https://github.com/hackforla/website/pull/4147) at 2023-03-10 03:28 PM PST -kimberlytanyh,2023-03-10T23:34:46Z,- kimberlytanyh commented on pull request: [4147](https://github.com/hackforla/website/pull/4147#issuecomment-1464642508) at 2023-03-10 03:34 PM PST -kimberlytanyh,2023-03-11T22:56:49Z,- kimberlytanyh pull request merged: [4147](https://github.com/hackforla/website/pull/4147#event-8724766717) at 2023-03-11 03:56 PM PDT -kimberlytanyh,2023-03-12T17:36:12Z,- kimberlytanyh opened issue: [4152](https://github.com/hackforla/website/issues/4152) at 2023-03-12 10:36 AM PDT -kimberlytanyh,2023-03-12T17:41:45Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1465256762) at 2023-03-12 10:41 AM PDT -kimberlytanyh,2023-03-16T01:00:05Z,- kimberlytanyh assigned to issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1471112841) at 2023-03-15 06:00 PM PDT -kimberlytanyh,2023-03-19T17:05:36Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1475323528) at 2023-03-19 10:05 AM PDT -kimberlytanyh,2023-03-31T00:25:59Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1491130922) at 2023-03-30 05:25 PM PDT -kimberlytanyh,2023-04-06T20:43:23Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1499600266) at 2023-04-06 01:43 PM PDT -kimberlytanyh,2023-04-15T17:18:30Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1509898236) at 2023-04-15 10:18 AM PDT -kimberlytanyh,2023-04-16T17:45:38Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1510441113) at 2023-04-16 10:45 AM PDT -kimberlytanyh,2023-04-23T17:22:40Z,- kimberlytanyh assigned to issue: [3957](https://github.com/hackforla/website/issues/3957#event-8680639303) at 2023-04-23 10:22 AM PDT -kimberlytanyh,2023-04-23T17:22:47Z,- kimberlytanyh unassigned from issue: [3957](https://github.com/hackforla/website/issues/3957#event-8680639303) at 2023-04-23 10:22 AM PDT -kimberlytanyh,2023-05-07T15:32:16Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1537470041) at 2023-05-07 08:32 AM PDT -kimberlytanyh,2023-05-14T16:37:37Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1546941319) at 2023-05-14 09:37 AM PDT -kimberlytanyh,2023-05-19T03:33:25Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1553949662) at 2023-05-18 08:33 PM PDT -kimberlytanyh,2023-06-10T21:34:50Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1585821741) at 2023-06-10 02:34 PM PDT -kimberlytanyh,2023-07-02T15:33:15Z,- kimberlytanyh commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1616704010) at 2023-07-02 08:33 AM PDT -kimberlytanyh,2023-07-07T01:18:52Z,- kimberlytanyh opened issue: [4921](https://github.com/hackforla/website/issues/4921) at 2023-07-06 06:18 PM PDT -kimberlytanyh,2023-07-07T01:26:42Z,- kimberlytanyh assigned to issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1624500713) at 2023-07-06 06:26 PM PDT -kimberlytanyh,2023-07-07T01:27:09Z,- kimberlytanyh unassigned from issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1616704010) at 2023-07-06 06:27 PM PDT -kimberlytanyh,2023-07-17T02:58:11Z,- kimberlytanyh commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1637310209) at 2023-07-16 07:58 PM PDT -kimberlytanyh,2023-08-06T15:25:18Z,- kimberlytanyh commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1666895571) at 2023-08-06 08:25 AM PDT -kimberlytanyh,2023-10-30T22:25:18Z,- kimberlytanyh opened issue: [5810](https://github.com/hackforla/website/issues/5810) at 2023-10-30 03:25 PM PDT -kimberlytanyh,2023-10-30T22:51:21Z,- kimberlytanyh opened issue: [5812](https://github.com/hackforla/website/issues/5812) at 2023-10-30 03:51 PM PDT -kimberlytanyh,2023-10-30T23:23:05Z,- kimberlytanyh opened issue: [5813](https://github.com/hackforla/website/issues/5813) at 2023-10-30 04:23 PM PDT -kimberlytanyh,2023-10-31T01:43:00Z,- kimberlytanyh commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786303478) at 2023-10-30 06:43 PM PDT -kimberlytanyh,2023-11-08T20:45:54Z,- kimberlytanyh commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1802649259) at 2023-11-08 12:45 PM PST -kimberlytanyh,2023-11-08T20:55:18Z,- kimberlytanyh commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1802660680) at 2023-11-08 12:55 PM PST -kimberlytanyh,2023-11-21T14:58:52Z,- kimberlytanyh commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1821089558) at 2023-11-21 06:58 AM PST -kimberlytanyh,2023-11-25T18:40:47Z,- kimberlytanyh commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1826395428) at 2023-11-25 10:40 AM PST -kimberlytanyh,2023-11-25T19:42:50Z,- kimberlytanyh commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1826406672) at 2023-11-25 11:42 AM PST -kimberlytanyh,2023-11-26T17:11:30Z,- kimberlytanyh commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1826838223) at 2023-11-26 09:11 AM PST -kimberlytanyh,2024-02-18T00:39:52Z,- kimberlytanyh commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1950648272) at 2024-02-17 04:39 PM PST -kimberlytanyh,2024-02-18T00:41:52Z,- kimberlytanyh commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1950651254) at 2024-02-17 04:41 PM PST -kimberlytanyh,2024-02-28T23:53:23Z,- kimberlytanyh commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1970113307) at 2024-02-28 03:53 PM PST -kimberlytanyh,2024-06-04T00:07:01Z,- kimberlytanyh unassigned from issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1950651254) at 2024-06-03 05:07 PM PDT -kiran98118,5004,SKILLS ISSUE -kiran98118,2023-07-18T17:10:03Z,- kiran98118 opened issue: [5004](https://github.com/hackforla/website/issues/5004) at 2023-07-18 10:10 AM PDT -kiran98118,2023-07-18T17:10:10Z,- kiran98118 assigned to issue: [5004](https://github.com/hackforla/website/issues/5004) at 2023-07-18 10:10 AM PDT -kiran98118,2023-08-17T00:09:09Z,- kiran98118 assigned to issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1675598416) at 2023-08-16 05:09 PM PDT -kiran98118,2023-08-17T03:06:19Z,- kiran98118 commented on issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1681541697) at 2023-08-16 08:06 PM PDT -kiran98118,2023-08-29T02:47:05Z,- kiran98118 commented on issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1696688456) at 2023-08-28 07:47 PM PDT -kiran98118,2023-08-30T17:44:02Z,- kiran98118 unassigned from issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1696688456) at 2023-08-30 10:44 AM PDT -kiran98118,2023-08-30T18:03:54Z,- kiran98118 assigned to issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1698558480) at 2023-08-30 11:03 AM PDT -kiran98118,2023-08-30T18:11:06Z,- kiran98118 commented on issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1699629500) at 2023-08-30 11:11 AM PDT -kiran98118,2023-08-31T17:56:30Z,- kiran98118 opened pull request: [5396](https://github.com/hackforla/website/pull/5396) at 2023-08-31 10:56 AM PDT -kiran98118,2023-09-06T21:27:12Z,- kiran98118 opened pull request: [5453](https://github.com/hackforla/website/pull/5453) at 2023-09-06 02:27 PM PDT -kiran98118,2023-09-06T21:41:25Z,- kiran98118 unassigned from issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1699629500) at 2023-09-06 02:41 PM PDT -kiran98118,2023-09-06T21:43:55Z,- kiran98118 assigned to issue: [5393](https://github.com/hackforla/website/issues/5393) at 2023-09-06 02:43 PM PDT -kiran98118,2023-09-06T23:24:57Z,- kiran98118 pull request closed w/o merging: [5453](https://github.com/hackforla/website/pull/5453#event-10301329572) at 2023-09-06 04:24 PM PDT -kiran98118,2023-09-08T04:08:58Z,- kiran98118 opened pull request: [5457](https://github.com/hackforla/website/pull/5457) at 2023-09-07 09:08 PM PDT -kiran98118,2023-09-08T04:13:31Z,- kiran98118 assigned to issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1709225082) at 2023-09-07 09:13 PM PDT -kiran98118,2023-09-08T04:33:43Z,- kiran98118 opened pull request: [5458](https://github.com/hackforla/website/pull/5458) at 2023-09-07 09:33 PM PDT -kiran98118,2023-09-17T01:30:22Z,- kiran98118 pull request merged: [5457](https://github.com/hackforla/website/pull/5457#event-10390589214) at 2023-09-16 06:30 PM PDT -kiran98118,2023-09-17T15:42:36Z,- kiran98118 pull request closed w/o merging: [5396](https://github.com/hackforla/website/pull/5396#event-10391576960) at 2023-09-17 08:42 AM PDT -kiran98118,2023-09-20T02:48:17Z,- kiran98118 unassigned from issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1709169745) at 2023-09-19 07:48 PM PDT -kiran98118,2023-09-20T02:50:40Z,- kiran98118 assigned to issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1720330668) at 2023-09-19 07:50 PM PDT -kiran98118,2023-09-22T20:37:00Z,- kiran98118 pull request closed w/o merging: [5458](https://github.com/hackforla/website/pull/5458#event-10451182146) at 2023-09-22 01:37 PM PDT -kiran98118,2023-10-09T15:50:22Z,- kiran98118 commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1753261606) at 2023-10-09 08:50 AM PDT -kiran98118,2023-10-20T00:22:31Z,- kiran98118 commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1771879211) at 2023-10-19 05:22 PM PDT -kiran98118,2023-11-20T23:00:03Z,- kiran98118 assigned to issue: [4856](https://github.com/hackforla/website/issues/4856) at 2023-11-20 03:00 PM PST -kiran98118,2023-12-04T17:52:20Z,- kiran98118 commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1839169663) at 2023-12-04 09:52 AM PST -kiran98118,2023-12-06T22:06:54Z,- kiran98118 unassigned from issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1839169663) at 2023-12-06 02:06 PM PST -kiran98118,2023-12-06T22:29:03Z,- kiran98118 assigned to issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1791971858) at 2023-12-06 02:29 PM PST -kiran98118,2024-02-04T01:12:14Z,- kiran98118 assigned to issue: [5180](https://github.com/hackforla/website/issues/5180) at 2024-02-03 05:12 PM PST -kiran98118,2024-02-04T01:15:48Z,- kiran98118 commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1925510232) at 2024-02-03 05:15 PM PST -kiran98118,2024-02-14T03:53:58Z,- kiran98118 commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1943043658) at 2024-02-13 07:53 PM PST -kiran98118,2024-02-26T03:35:36Z,- kiran98118 commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1963260375) at 2024-02-25 07:35 PM PST -kiran98118,2024-03-13T16:24:05Z,- kiran98118 commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1994871211) at 2024-03-13 09:24 AM PDT -kiwookim,4620,SKILLS ISSUE -kiwookim,2023-05-09T03:28:05Z,- kiwookim opened issue: [4620](https://github.com/hackforla/website/issues/4620) at 2023-05-08 08:28 PM PDT -kiwookim,2023-05-09T04:13:20Z,- kiwookim assigned to issue: [4620](https://github.com/hackforla/website/issues/4620) at 2023-05-08 09:13 PM PDT -kiwookim,2023-05-11T00:09:32Z,- kiwookim closed issue by PR 4844: [4477](https://github.com/hackforla/website/issues/4477#event-9216346859) at 2023-05-10 05:09 PM PDT -kiwookim,2023-05-11T00:09:40Z,- kiwookim reopened issue: [4477](https://github.com/hackforla/website/issues/4477#event-9216346859) at 2023-05-10 05:09 PM PDT -kiwookim,2023-05-14T06:30:59Z,- kiwookim commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1546820166) at 2023-05-13 11:30 PM PDT -kiwookim,2023-05-17T18:38:35Z,- kiwookim assigned to issue: [4503](https://github.com/hackforla/website/issues/4503#issuecomment-1547804332) at 2023-05-17 11:38 AM PDT -kiwookim,2023-05-17T21:14:46Z,- kiwookim commented on issue: [4503](https://github.com/hackforla/website/issues/4503#issuecomment-1552095680) at 2023-05-17 02:14 PM PDT -kiwookim,2023-05-17T23:06:43Z,- kiwookim commented on issue: [4503](https://github.com/hackforla/website/issues/4503#issuecomment-1552196334) at 2023-05-17 04:06 PM PDT -kiwookim,2023-05-20T17:49:26Z,- kiwookim commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1555960756) at 2023-05-20 10:49 AM PDT -kiwookim,2023-05-20T18:23:46Z,- kiwookim opened pull request: [4702](https://github.com/hackforla/website/pull/4702) at 2023-05-20 11:23 AM PDT -kiwookim,2023-05-20T18:30:32Z,- kiwookim commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1555967822) at 2023-05-20 11:30 AM PDT -kiwookim,2023-05-23T15:26:23Z,- kiwookim commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1559665429) at 2023-05-23 08:26 AM PDT -kiwookim,2023-05-23T16:27:09Z,- kiwookim commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1559785618) at 2023-05-23 09:27 AM PDT -kiwookim,2023-05-24T02:58:25Z,- kiwookim commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1560390681) at 2023-05-23 07:58 PM PDT -kiwookim,2023-05-25T18:53:22Z,- kiwookim pull request merged: [4702](https://github.com/hackforla/website/pull/4702#event-9343471474) at 2023-05-25 11:53 AM PDT -kiwookim,2023-05-26T18:48:51Z,- kiwookim assigned to issue: [4491](https://github.com/hackforla/website/issues/4491#issuecomment-1547805875) at 2023-05-26 11:48 AM PDT -kiwookim,2023-05-26T19:05:29Z,- kiwookim commented on issue: [4491](https://github.com/hackforla/website/issues/4491#issuecomment-1564811441) at 2023-05-26 12:05 PM PDT -kiwookim,2023-05-26T19:05:37Z,- kiwookim commented on issue: [4491](https://github.com/hackforla/website/issues/4491#issuecomment-1564811720) at 2023-05-26 12:05 PM PDT -kiwookim,2023-05-26T19:29:16Z,- kiwookim opened pull request: [4745](https://github.com/hackforla/website/pull/4745) at 2023-05-26 12:29 PM PDT -kiwookim,2023-05-27T00:43:12Z,- kiwookim commented on pull request: [4745](https://github.com/hackforla/website/pull/4745#issuecomment-1565115334) at 2023-05-26 05:43 PM PDT -kiwookim,2023-05-27T00:47:52Z,- kiwookim commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565118343) at 2023-05-26 05:47 PM PDT -kiwookim,2023-05-29T18:53:54Z,- kiwookim submitted pull request review: [4747](https://github.com/hackforla/website/pull/4747#pullrequestreview-1449792007) at 2023-05-29 11:53 AM PDT -kiwookim,2023-05-31T14:47:25Z,- kiwookim pull request merged: [4745](https://github.com/hackforla/website/pull/4745#event-9391605786) at 2023-05-31 07:47 AM PDT -kiwookim,2023-06-03T03:57:11Z,- kiwookim commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1574624123) at 2023-06-02 08:57 PM PDT -kiwookim,2023-06-04T16:14:13Z,- kiwookim submitted pull request review: [4775](https://github.com/hackforla/website/pull/4775#pullrequestreview-1461268493) at 2023-06-04 09:14 AM PDT -kiwookim,2023-06-06T03:48:12Z,- kiwookim submitted pull request review: [4775](https://github.com/hackforla/website/pull/4775#pullrequestreview-1464208334) at 2023-06-05 08:48 PM PDT -kiwookim,2023-06-17T07:42:55Z,- kiwookim assigned to issue: [4784](https://github.com/hackforla/website/issues/4784) at 2023-06-17 12:42 AM PDT -kiwookim,2023-06-17T07:45:12Z,- kiwookim commented on issue: [4784](https://github.com/hackforla/website/issues/4784#issuecomment-1595660211) at 2023-06-17 12:45 AM PDT -kiwookim,2023-06-17T07:49:36Z,- kiwookim commented on pull request: [4844](https://github.com/hackforla/website/pull/4844#issuecomment-1595660889) at 2023-06-17 12:49 AM PDT -kiwookim,2023-06-23T19:51:46Z,- kiwookim opened pull request: [4877](https://github.com/hackforla/website/pull/4877) at 2023-06-23 12:51 PM PDT -kiwookim,2023-06-23T20:04:43Z,- kiwookim opened pull request: [4878](https://github.com/hackforla/website/pull/4878) at 2023-06-23 01:04 PM PDT -kiwookim,2023-06-23T20:06:35Z,- kiwookim pull request closed w/o merging: [4877](https://github.com/hackforla/website/pull/4877#event-9622039633) at 2023-06-23 01:06 PM PDT -kiwookim,2023-06-23T20:07:09Z,- kiwookim commented on pull request: [4877](https://github.com/hackforla/website/pull/4877#issuecomment-1604883275) at 2023-06-23 01:07 PM PDT -kiwookim,2023-06-23T20:12:30Z,- kiwookim commented on issue: [4784](https://github.com/hackforla/website/issues/4784#issuecomment-1604890307) at 2023-06-23 01:12 PM PDT -kiwookim,2023-06-28T20:30:41Z,- kiwookim pull request merged: [4878](https://github.com/hackforla/website/pull/4878#event-9669440542) at 2023-06-28 01:30 PM PDT -kiwookim,2023-07-08T05:39:33Z,- kiwookim assigned to issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1608575872) at 2023-07-07 10:39 PM PDT -kiwookim,2023-07-08T05:41:09Z,- kiwookim commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1626874025) at 2023-07-07 10:41 PM PDT -kiwookim,2023-07-08T05:42:44Z,- kiwookim commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1626874604) at 2023-07-07 10:42 PM PDT -kiwookim,2023-07-08T05:43:41Z,- kiwookim commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1626874800) at 2023-07-07 10:43 PM PDT -kiwookim,2023-07-10T22:33:59Z,- kiwookim commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1629820573) at 2023-07-10 03:33 PM PDT -kiwookim,2023-07-10T22:52:13Z,- kiwookim opened pull request: [4928](https://github.com/hackforla/website/pull/4928) at 2023-07-10 03:52 PM PDT -kiwookim,2023-07-13T21:51:43Z,- kiwookim commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1634966576) at 2023-07-13 02:51 PM PDT -kiwookim,2023-07-15T22:41:28Z,- kiwookim commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1636904963) at 2023-07-15 03:41 PM PDT -kiwookim,2023-07-16T17:45:25Z,- kiwookim commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1637149796) at 2023-07-16 10:45 AM PDT -kiwookim,2023-07-18T00:26:29Z,- kiwookim submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1533901205) at 2023-07-17 05:26 PM PDT -kiwookim,2023-07-18T19:48:37Z,- kiwookim pull request merged: [4928](https://github.com/hackforla/website/pull/4928#event-9854877299) at 2023-07-18 12:48 PM PDT -kiwookim,2023-07-22T03:30:37Z,- kiwookim commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1646443312) at 2023-07-21 08:30 PM PDT -kiwookim,2023-07-24T23:21:14Z,- kiwookim commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1648750985) at 2023-07-24 04:21 PM PDT -kiwookim,2023-07-25T03:06:05Z,- kiwookim submitted pull request review: [5056](https://github.com/hackforla/website/pull/5056#pullrequestreview-1544563460) at 2023-07-24 08:06 PM PDT -kiwookim,2023-09-11T17:54:26Z,- kiwookim closed issue as completed: [4620](https://github.com/hackforla/website/issues/4620#event-10337276602) at 2023-09-11 10:54 AM PDT -Kle012,6341,SKILLS ISSUE -Kle012,2024-02-21T03:45:17Z,- Kle012 opened issue: [6341](https://github.com/hackforla/website/issues/6341) at 2024-02-20 07:45 PM PST -Kle012,2024-02-21T04:11:09Z,- Kle012 assigned to issue: [6341](https://github.com/hackforla/website/issues/6341) at 2024-02-20 08:11 PM PST -Kle012,2024-04-10T01:11:43Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2046280362) at 2024-04-09 06:11 PM PDT -Kle012,2024-04-10T22:46:03Z,- Kle012 assigned to issue: [6174](https://github.com/hackforla/website/issues/6174) at 2024-04-10 03:46 PM PDT -Kle012,2024-04-10T22:51:01Z,- Kle012 commented on issue: [6174](https://github.com/hackforla/website/issues/6174#issuecomment-2048561599) at 2024-04-10 03:51 PM PDT -Kle012,2024-04-10T22:52:33Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2048562852) at 2024-04-10 03:52 PM PDT -Kle012,2024-04-12T01:42:53Z,- Kle012 opened pull request: [6629](https://github.com/hackforla/website/pull/6629) at 2024-04-11 06:42 PM PDT -Kle012,2024-04-12T01:45:59Z,- Kle012 closed issue as completed: [6341](https://github.com/hackforla/website/issues/6341#event-12443395157) at 2024-04-11 06:45 PM PDT -Kle012,2024-04-12T01:46:11Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2050820621) at 2024-04-11 06:46 PM PDT -Kle012,2024-04-12T23:08:29Z,- Kle012 pull request merged: [6629](https://github.com/hackforla/website/pull/6629#event-12454960625) at 2024-04-12 04:08 PM PDT -Kle012,2024-04-18T00:06:28Z,- Kle012 assigned to issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-2010643588) at 2024-04-17 05:06 PM PDT -Kle012,2024-04-18T00:35:35Z,- Kle012 commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-2062778152) at 2024-04-17 05:35 PM PDT -Kle012,2024-04-18T00:48:27Z,- Kle012 opened pull request: [6678](https://github.com/hackforla/website/pull/6678) at 2024-04-17 05:48 PM PDT -Kle012,2024-04-24T23:47:36Z,- Kle012 commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2076057003) at 2024-04-24 04:47 PM PDT -Kle012,2024-04-25T20:25:09Z,- Kle012 pull request merged: [6678](https://github.com/hackforla/website/pull/6678#event-12615091837) at 2024-04-25 01:25 PM PDT -Kle012,2024-05-01T00:54:56Z,- Kle012 assigned to issue: [6758](https://github.com/hackforla/website/issues/6758) at 2024-04-30 05:54 PM PDT -Kle012,2024-05-01T00:56:19Z,- Kle012 commented on issue: [6758](https://github.com/hackforla/website/issues/6758#issuecomment-2087788637) at 2024-04-30 05:56 PM PDT -Kle012,2024-05-14T20:54:03Z,- Kle012 assigned to issue: [6850](https://github.com/hackforla/website/issues/6850) at 2024-05-14 01:54 PM PDT -Kle012,2024-05-14T20:56:11Z,- Kle012 commented on issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2111124908) at 2024-05-14 01:56 PM PDT -Kle012,2024-05-14T21:30:17Z,- Kle012 unassigned from issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2111135634) at 2024-05-14 02:30 PM PDT -Kle012,2024-05-14T21:30:52Z,- Kle012 commented on issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2111173399) at 2024-05-14 02:30 PM PDT -Kle012,2024-06-26T20:52:13Z,- Kle012 assigned to issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1776537729) at 2024-06-26 01:52 PM PDT -Kle012,2024-06-26T21:38:31Z,- Kle012 opened pull request: [7068](https://github.com/hackforla/website/pull/7068) at 2024-06-26 02:38 PM PDT -Kle012,2024-06-26T21:41:31Z,- Kle012 commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-2192672666) at 2024-06-26 02:41 PM PDT -Kle012,2024-06-26T22:19:42Z,- Kle012 commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192715341) at 2024-06-26 03:19 PM PDT -Kle012,2024-06-26T22:41:54Z,- Kle012 commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192737124) at 2024-06-26 03:41 PM PDT -Kle012,2024-06-27T18:28:21Z,- Kle012 pull request merged: [7068](https://github.com/hackforla/website/pull/7068#event-13321898250) at 2024-06-27 11:28 AM PDT -Kle012,2024-07-23T19:44:01Z,- Kle012 assigned to issue: [7110](https://github.com/hackforla/website/issues/7110#issuecomment-2227641369) at 2024-07-23 12:44 PM PDT -Kle012,2024-07-23T19:46:29Z,- Kle012 commented on issue: [7110](https://github.com/hackforla/website/issues/7110#issuecomment-2246152064) at 2024-07-23 12:46 PM PDT -Kle012,2024-07-25T23:50:48Z,- Kle012 opened pull request: [7141](https://github.com/hackforla/website/pull/7141) at 2024-07-25 04:50 PM PDT -Kle012,2024-07-25T23:56:03Z,- Kle012 commented on issue: [7110](https://github.com/hackforla/website/issues/7110#issuecomment-2251591475) at 2024-07-25 04:56 PM PDT -Kle012,2024-07-30T00:56:21Z,- Kle012 commented on pull request: [7136](https://github.com/hackforla/website/pull/7136#issuecomment-2257261746) at 2024-07-29 05:56 PM PDT -Kle012,2024-07-30T01:24:05Z,- Kle012 submitted pull request review: [7136](https://github.com/hackforla/website/pull/7136#pullrequestreview-2206398629) at 2024-07-29 06:24 PM PDT -Kle012,2024-07-31T00:24:31Z,- Kle012 assigned to issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2229527848) at 2024-07-30 05:24 PM PDT -Kle012,2024-07-31T00:24:45Z,- Kle012 unassigned from issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2259410695) at 2024-07-30 05:24 PM PDT -Kle012,2024-07-31T21:31:36Z,- Kle012 pull request merged: [7141](https://github.com/hackforla/website/pull/7141#event-13716534586) at 2024-07-31 02:31 PM PDT -Kle012,2024-08-06T19:56:38Z,- Kle012 assigned to issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2259410695) at 2024-08-06 12:56 PM PDT -Kle012,2024-08-06T19:57:50Z,- Kle012 commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2272042974) at 2024-08-06 12:57 PM PDT -Kle012,2024-08-07T00:21:02Z,- Kle012 opened pull request: [7230](https://github.com/hackforla/website/pull/7230) at 2024-08-06 05:21 PM PDT -Kle012,2024-08-07T00:23:01Z,- Kle012 commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2272390895) at 2024-08-06 05:23 PM PDT -Kle012,2024-08-10T20:09:42Z,- Kle012 pull request merged: [7230](https://github.com/hackforla/website/pull/7230#event-13828997609) at 2024-08-10 01:09 PM PDT -Kle012,2024-08-16T00:06:54Z,- Kle012 assigned to issue: [7111](https://github.com/hackforla/website/issues/7111#issuecomment-2227718437) at 2024-08-15 05:06 PM PDT -Kle012,2024-08-16T00:08:49Z,- Kle012 commented on issue: [7111](https://github.com/hackforla/website/issues/7111#issuecomment-2292486909) at 2024-08-15 05:08 PM PDT -Kle012,2024-08-17T00:34:16Z,- Kle012 opened pull request: [7308](https://github.com/hackforla/website/pull/7308) at 2024-08-16 05:34 PM PDT -Kle012,2024-08-17T00:37:30Z,- Kle012 commented on issue: [7111](https://github.com/hackforla/website/issues/7111#issuecomment-2294500383) at 2024-08-16 05:37 PM PDT -Kle012,2024-08-21T02:28:47Z,- Kle012 pull request merged: [7308](https://github.com/hackforla/website/pull/7308#event-13953257817) at 2024-08-20 07:28 PM PDT -Kle012,2024-10-01T22:48:45Z,- Kle012 assigned to issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2372800389) at 2024-10-01 03:48 PM PDT -Kle012,2024-10-01T22:49:00Z,- Kle012 unassigned from issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2372800389) at 2024-10-01 03:49 PM PDT -Kle012,2024-10-01T22:56:13Z,- Kle012 assigned to issue: [7397](https://github.com/hackforla/website/issues/7397) at 2024-10-01 03:56 PM PDT -Kle012,2024-10-01T22:56:30Z,- Kle012 unassigned from issue: [7397](https://github.com/hackforla/website/issues/7397) at 2024-10-01 03:56 PM PDT -Kle012,2024-10-01T23:05:04Z,- Kle012 assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2378162993) at 2024-10-01 04:05 PM PDT -Kle012,2024-10-07T22:50:54Z,- Kle012 unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2378162993) at 2024-10-07 03:50 PM PDT -Kle012,2024-10-10T22:39:19Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2406161206) at 2024-10-10 03:39 PM PDT -Kle012,2024-10-10T22:42:35Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2406164427) at 2024-10-10 03:42 PM PDT -Kle012,2024-10-10T22:45:08Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2406166946) at 2024-10-10 03:45 PM PDT -Kle012,2024-10-14T23:48:20Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2412534470) at 2024-10-14 04:48 PM PDT -Kle012,2024-10-22T23:12:37Z,- Kle012 assigned to issue: [7400](https://github.com/hackforla/website/issues/7400) at 2024-10-22 04:12 PM PDT -Kle012,2024-10-22T23:12:55Z,- Kle012 unassigned from issue: [7400](https://github.com/hackforla/website/issues/7400) at 2024-10-22 04:12 PM PDT -Kle012,2024-10-22T23:13:18Z,- Kle012 commented on issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2430486154) at 2024-10-22 04:13 PM PDT -Kle012,2024-10-22T23:13:59Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2430486795) at 2024-10-22 04:13 PM PDT -Kle012,2024-10-30T22:42:36Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2448594709) at 2024-10-30 03:42 PM PDT -Kle012,2024-11-09T00:38:39Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2465944098) at 2024-11-08 04:38 PM PST -Kle012,2024-11-09T00:48:40Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2465949543) at 2024-11-08 04:48 PM PST -Kle012,2024-11-09T00:49:49Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2465950078) at 2024-11-08 04:49 PM PST -Kle012,2024-11-09T00:55:48Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2465953207) at 2024-11-08 04:55 PM PST -Kle012,2024-11-09T00:59:54Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2465955311) at 2024-11-08 04:59 PM PST -Kle012,2024-11-18T23:23:28Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2484367437) at 2024-11-18 03:23 PM PST -Kle012,2024-11-18T23:26:01Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2484377485) at 2024-11-18 03:26 PM PST -Kle012,2024-11-18T23:38:40Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2484393717) at 2024-11-18 03:38 PM PST -Kle012,2024-11-18T23:47:08Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2484404907) at 2024-11-18 03:47 PM PST -Kle012,2024-12-03T00:46:19Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2513291510) at 2024-12-02 04:46 PM PST -Kle012,2024-12-13T00:48:01Z,- Kle012 assigned to issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249761) at 2024-12-12 04:48 PM PST -Kle012,2024-12-13T01:14:38Z,- Kle012 opened issue: [7799](https://github.com/hackforla/website/issues/7799) at 2024-12-12 05:14 PM PST -Kle012,2024-12-13T01:21:49Z,- Kle012 opened issue: [7800](https://github.com/hackforla/website/issues/7800) at 2024-12-12 05:21 PM PST -Kle012,2024-12-13T01:24:48Z,- Kle012 commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2540333693) at 2024-12-12 05:24 PM PST -Kle012,2024-12-13T01:27:56Z,- Kle012 opened issue: [7801](https://github.com/hackforla/website/issues/7801) at 2024-12-12 05:27 PM PST -Kle012,2024-12-13T01:30:09Z,- Kle012 opened issue: [7802](https://github.com/hackforla/website/issues/7802) at 2024-12-12 05:30 PM PST -Kle012,2024-12-13T01:41:15Z,- Kle012 commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2540350704) at 2024-12-12 05:41 PM PST -Kle012,2025-02-08T01:28:24Z,- Kle012 submitted pull request review: [7900](https://github.com/hackforla/website/pull/7900#pullrequestreview-2603176964) at 2025-02-07 05:28 PM PST -Kle012,2025-02-08T01:46:23Z,- Kle012 submitted pull request review: [7901](https://github.com/hackforla/website/pull/7901#pullrequestreview-2603185919) at 2025-02-07 05:46 PM PST -Kle012,2025-02-08T02:19:18Z,- Kle012 commented on pull request: [7898](https://github.com/hackforla/website/pull/7898#issuecomment-2644435229) at 2025-02-07 06:19 PM PST -Kle012,2025-02-08T02:21:42Z,- Kle012 submitted pull request review: [7898](https://github.com/hackforla/website/pull/7898#pullrequestreview-2603198280) at 2025-02-07 06:21 PM PST -Kle012,2025-02-11T01:05:58Z,- Kle012 submitted pull request review: [7901](https://github.com/hackforla/website/pull/7901#pullrequestreview-2607483802) at 2025-02-10 05:05 PM PST -Kle012,2025-02-13T01:00:01Z,- Kle012 submitted pull request review: [7901](https://github.com/hackforla/website/pull/7901#pullrequestreview-2613577078) at 2025-02-12 05:00 PM PST -klei0229,5219,SKILLS ISSUE -klei0229,2023-08-15T03:02:00Z,- klei0229 opened issue: [5219](https://github.com/hackforla/website/issues/5219) at 2023-08-14 08:02 PM PDT -klei0229,2023-08-15T03:46:35Z,- klei0229 assigned to issue: [5219](https://github.com/hackforla/website/issues/5219) at 2023-08-14 08:46 PM PDT -klei0229,2023-08-16T00:32:55Z,- klei0229 commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1679800534) at 2023-08-15 05:32 PM PDT -klei0229,2023-08-23T11:35:52Z,- klei0229 commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1689802156) at 2023-08-23 04:35 AM PDT -klei0229,2023-08-24T09:21:55Z,- klei0229 commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1691325658) at 2023-08-24 02:21 AM PDT -klei0229,2023-08-24T10:28:11Z,- klei0229 commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1691423034) at 2023-08-24 03:28 AM PDT -klei0229,2023-08-27T11:49:36Z,- klei0229 commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1694646963) at 2023-08-27 04:49 AM PDT -klei0229,2023-08-29T03:02:44Z,- klei0229 assigned to issue: [5154](https://github.com/hackforla/website/issues/5154) at 2023-08-28 08:02 PM PDT -klei0229,2023-08-29T03:25:12Z,- klei0229 commented on issue: [5154](https://github.com/hackforla/website/issues/5154#issuecomment-1696711750) at 2023-08-28 08:25 PM PDT -klei0229,2023-08-29T04:08:28Z,- klei0229 opened pull request: [5331](https://github.com/hackforla/website/pull/5331) at 2023-08-28 09:08 PM PDT -klei0229,2023-08-30T02:05:32Z,- klei0229 pull request merged: [5331](https://github.com/hackforla/website/pull/5331#event-10227523028) at 2023-08-29 07:05 PM PDT -klei0229,2023-09-01T09:30:49Z,- klei0229 assigned to issue: [4456](https://github.com/hackforla/website/issues/4456#issuecomment-1518913136) at 2023-09-01 02:30 AM PDT -klei0229,2023-09-01T09:54:22Z,- klei0229 commented on issue: [4456](https://github.com/hackforla/website/issues/4456#issuecomment-1702487837) at 2023-09-01 02:54 AM PDT -klei0229,2023-09-01T20:45:54Z,- klei0229 opened pull request: [5413](https://github.com/hackforla/website/pull/5413) at 2023-09-01 01:45 PM PDT -klei0229,2023-09-14T16:42:17Z,- klei0229 assigned to issue: [5519](https://github.com/hackforla/website/issues/5519#issuecomment-1717172867) at 2023-09-14 09:42 AM PDT -klei0229,2023-09-14T16:43:58Z,- klei0229 commented on issue: [5519](https://github.com/hackforla/website/issues/5519#issuecomment-1719794703) at 2023-09-14 09:43 AM PDT -klei0229,2023-09-19T21:18:58Z,- klei0229 commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1726492160) at 2023-09-19 02:18 PM PDT -klei0229,2023-09-19T21:21:50Z,- klei0229 commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1726503876) at 2023-09-19 02:21 PM PDT -klei0229,2023-09-20T00:49:48Z,- klei0229 commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1726725826) at 2023-09-19 05:49 PM PDT -klei0229,2023-09-20T14:05:09Z,- klei0229 pull request merged: [5413](https://github.com/hackforla/website/pull/5413#event-10423758426) at 2023-09-20 07:05 AM PDT -klei0229,2023-09-21T20:13:43Z,- klei0229 commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1730235678) at 2023-09-21 01:13 PM PDT -klei0229,2023-09-21T21:44:52Z,- klei0229 closed issue as completed: [5219](https://github.com/hackforla/website/issues/5219#event-10440651183) at 2023-09-21 02:44 PM PDT -klei0229,2023-09-22T19:40:48Z,- klei0229 commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1731951722) at 2023-09-22 12:40 PM PDT -klei0229,2023-09-22T19:43:14Z,- klei0229 submitted pull request review: [5551](https://github.com/hackforla/website/pull/5551#pullrequestreview-1640550051) at 2023-09-22 12:43 PM PDT -klei0229,2023-09-26T20:20:26Z,- klei0229 assigned to issue: [5338](https://github.com/hackforla/website/issues/5338) at 2023-09-26 01:20 PM PDT -klei0229,2023-09-26T20:21:38Z,- klei0229 commented on issue: [5338](https://github.com/hackforla/website/issues/5338#issuecomment-1736237111) at 2023-09-26 01:21 PM PDT -klei0229,2023-09-29T02:42:21Z,- klei0229 commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1740237195) at 2023-09-28 07:42 PM PDT -klei0229,2023-09-29T02:43:08Z,- klei0229 submitted pull request review: [5551](https://github.com/hackforla/website/pull/5551#pullrequestreview-1649971484) at 2023-09-28 07:43 PM PDT -klei0229,2023-09-30T01:30:15Z,- klei0229 opened pull request: [5634](https://github.com/hackforla/website/pull/5634) at 2023-09-29 06:30 PM PDT -klei0229,2023-10-03T22:02:14Z,- klei0229 pull request merged: [5634](https://github.com/hackforla/website/pull/5634#event-10543808392) at 2023-10-03 03:02 PM PDT -klfregoso,2020-07-29T03:23:29Z,- klfregoso assigned to issue: [607](https://github.com/hackforla/website/issues/607) at 2020-07-28 08:23 PM PDT -klfregoso,2020-08-03T03:46:20Z,- klfregoso commented on issue: [607](https://github.com/hackforla/website/issues/607#issuecomment-667787690) at 2020-08-02 08:46 PM PDT -klfregoso,2020-08-03T05:21:58Z,- klfregoso opened pull request: [665](https://github.com/hackforla/website/pull/665) at 2020-08-02 10:21 PM PDT -klfregoso,2020-08-03T05:35:11Z,- klfregoso closed issue by PR 665: [607](https://github.com/hackforla/website/issues/607#event-3614295882) at 2020-08-02 10:35 PM PDT -klfregoso,2020-08-03T05:35:11Z,- klfregoso pull request merged: [665](https://github.com/hackforla/website/pull/665#event-3614295888) at 2020-08-02 10:35 PM PDT -klfregoso,2020-08-03T05:38:09Z,- klfregoso opened pull request: [666](https://github.com/hackforla/website/pull/666) at 2020-08-02 10:38 PM PDT -klfregoso,2020-08-03T05:41:29Z,- klfregoso reopened issue: [607](https://github.com/hackforla/website/issues/607#event-3614295882) at 2020-08-02 10:41 PM PDT -klfregoso,2020-08-04T01:07:56Z,- klfregoso pull request merged: [666](https://github.com/hackforla/website/pull/666#event-3618106418) at 2020-08-03 06:07 PM PDT -klfregoso,2020-08-04T04:50:51Z,- klfregoso opened pull request: [667](https://github.com/hackforla/website/pull/667) at 2020-08-03 09:50 PM PDT -klfregoso,2020-08-04T04:54:35Z,- klfregoso pull request merged: [667](https://github.com/hackforla/website/pull/667#event-3618521599) at 2020-08-03 09:54 PM PDT -klfregoso,2020-08-05T03:03:44Z,- klfregoso assigned to issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-667788585) at 2020-08-04 08:03 PM PDT -klfregoso,2020-08-09T04:58:42Z,- klfregoso opened pull request: [677](https://github.com/hackforla/website/pull/677) at 2020-08-08 09:58 PM PDT -klfregoso,2020-08-09T17:02:33Z,- klfregoso closed issue by PR 677: [442](https://github.com/hackforla/website/issues/442#event-3636618043) at 2020-08-09 10:02 AM PDT -klfregoso,2020-08-09T17:02:33Z,- klfregoso pull request merged: [677](https://github.com/hackforla/website/pull/677#event-3636618045) at 2020-08-09 10:02 AM PDT -kmalap05,2023-10-02T17:51:03Z,- kmalap05 commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1743480104) at 2023-10-02 10:51 AM PDT -kmdeakers,6252,SKILLS ISSUE -kmdeakers,2024-02-06T04:12:41Z,- kmdeakers opened issue: [6252](https://github.com/hackforla/website/issues/6252) at 2024-02-05 08:12 PM PST -kmdeakers,2024-02-06T04:22:28Z,- kmdeakers assigned to issue: [6252](https://github.com/hackforla/website/issues/6252) at 2024-02-05 08:22 PM PST -kmdeakers,2024-02-16T03:25:00Z,- kmdeakers closed issue as completed: [3525](https://github.com/hackforla/website/issues/3525#event-11823808208) at 2024-02-15 07:25 PM PST -kmdeakers,2024-02-16T03:25:03Z,- kmdeakers reopened issue: [3525](https://github.com/hackforla/website/issues/3525#event-11823808208) at 2024-02-15 07:25 PM PST -kmdeakers,2024-02-24T23:25:53Z,- kmdeakers assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1943244039) at 2024-02-24 03:25 PM PST -kmdeakers,2024-02-25T02:59:45Z,- kmdeakers opened pull request: [6371](https://github.com/hackforla/website/pull/6371) at 2024-02-24 06:59 PM PST -kmdeakers,2024-03-01T06:12:32Z,- kmdeakers pull request merged: [6371](https://github.com/hackforla/website/pull/6371#event-11975064442) at 2024-02-29 10:12 PM PST -kmdeakers,2024-03-03T00:53:08Z,- kmdeakers assigned to issue: [6376](https://github.com/hackforla/website/issues/6376#issuecomment-1963226143) at 2024-03-02 04:53 PM PST -kmdeakers,2024-03-03T01:13:07Z,- kmdeakers commented on issue: [6376](https://github.com/hackforla/website/issues/6376#issuecomment-1974966205) at 2024-03-02 05:13 PM PST -kmdeakers,2024-03-03T01:24:42Z,- kmdeakers opened pull request: [6410](https://github.com/hackforla/website/pull/6410) at 2024-03-02 05:24 PM PST -kmdeakers,2024-03-08T19:03:46Z,- kmdeakers commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1986248400) at 2024-03-08 11:03 AM PST -kmdeakers,2024-03-08T19:05:59Z,- kmdeakers commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1986251205) at 2024-03-08 11:05 AM PST -kmdeakers,2024-03-11T18:22:51Z,- kmdeakers pull request merged: [6410](https://github.com/hackforla/website/pull/6410#event-12078179430) at 2024-03-11 11:22 AM PDT -kmdeakers,2024-03-20T00:40:45Z,- kmdeakers assigned to issue: [6094](https://github.com/hackforla/website/issues/6094) at 2024-03-19 05:40 PM PDT -kmdeakers,2024-04-11T21:38:07Z,- kmdeakers assigned to issue: [6496](https://github.com/hackforla/website/issues/6496) at 2024-04-11 02:38 PM PDT -kmlhsn,2020-11-08T15:22:37Z,- kmlhsn opened issue: [806](https://github.com/hackforla/website/issues/806) at 2020-11-08 07:22 AM PST -KO1122,7830,SKILLS ISSUE -KO1122,2025-01-14T06:22:25Z,- KO1122 opened issue: [7830](https://github.com/hackforla/website/issues/7830) at 2025-01-13 10:22 PM PST -KO1122,2025-01-14T06:22:46Z,- KO1122 assigned to issue: [7830](https://github.com/hackforla/website/issues/7830#issuecomment-2589126434) at 2025-01-13 10:22 PM PST -KO1122,2025-01-15T03:49:27Z,- KO1122 commented on issue: [7830](https://github.com/hackforla/website/issues/7830#issuecomment-2591585174) at 2025-01-14 07:49 PM PST -KO1122,2025-01-15T03:49:27Z,- KO1122 closed issue as not planned: [7830](https://github.com/hackforla/website/issues/7830#event-15933303249) at 2025-01-14 07:49 PM PST -KO1122,2025-01-15T03:49:33Z,- KO1122 reopened issue: [7830](https://github.com/hackforla/website/issues/7830#event-15933303249) at 2025-01-14 07:49 PM PST -KO1122,2025-01-15T03:52:35Z,- KO1122 commented on issue: [7830](https://github.com/hackforla/website/issues/7830#issuecomment-2591588492) at 2025-01-14 07:52 PM PST -KO1122,2025-01-15T06:59:55Z,- KO1122 commented on issue: [7830](https://github.com/hackforla/website/issues/7830#issuecomment-2591787034) at 2025-01-14 10:59 PM PST -kolhesatish,2023-12-02T06:58:06Z,- kolhesatish commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1837064900) at 2023-12-01 10:58 PM PST -kolhesatish,2023-12-02T09:47:42Z,- kolhesatish opened pull request: [5956](https://github.com/hackforla/website/pull/5956) at 2023-12-02 01:47 AM PST -kolhesatish,2023-12-02T17:38:50Z,- kolhesatish pull request closed w/o merging: [5956](https://github.com/hackforla/website/pull/5956#event-11129462961) at 2023-12-02 09:38 AM PST -kotynskm,3778,SKILLS ISSUE -kotynskm,2023-01-04T04:41:36Z,- kotynskm opened issue: [3778](https://github.com/hackforla/website/issues/3778) at 2023-01-03 08:41 PM PST -kotynskm,2023-01-09T05:47:57Z,- kotynskm commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1375132331) at 2023-01-08 09:47 PM PST -kotynskm,2023-01-10T18:56:13Z,- kotynskm assigned to issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1375132331) at 2023-01-10 10:56 AM PST -kotynskm,2023-01-10T21:25:49Z,- kotynskm assigned to issue: [2861](https://github.com/hackforla/website/issues/2861#issuecomment-1048449600) at 2023-01-10 01:25 PM PST -kotynskm,2023-01-10T21:54:05Z,- kotynskm opened pull request: [3807](https://github.com/hackforla/website/pull/3807) at 2023-01-10 01:54 PM PST -kotynskm,2023-01-10T22:00:23Z,- kotynskm commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1377948407) at 2023-01-10 02:00 PM PST -kotynskm,2023-01-10T22:00:41Z,- kotynskm commented on issue: [2861](https://github.com/hackforla/website/issues/2861#issuecomment-1377948810) at 2023-01-10 02:00 PM PST -kotynskm,2023-01-12T13:25:49Z,- kotynskm pull request merged: [3807](https://github.com/hackforla/website/pull/3807#event-8211335969) at 2023-01-12 05:25 AM PST -kotynskm,2023-01-17T19:02:17Z,- kotynskm assigned to issue: [3402](https://github.com/hackforla/website/issues/3402) at 2023-01-17 11:02 AM PST -kotynskm,2023-01-17T19:17:46Z,- kotynskm opened pull request: [3836](https://github.com/hackforla/website/pull/3836) at 2023-01-17 11:17 AM PST -kotynskm,2023-01-17T19:22:57Z,- kotynskm commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1385932977) at 2023-01-17 11:22 AM PST -kotynskm,2023-01-18T04:30:45Z,- kotynskm commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1386472243) at 2023-01-17 08:30 PM PST -kotynskm,2023-01-20T14:50:19Z,- kotynskm pull request merged: [3836](https://github.com/hackforla/website/pull/3836#event-8322153040) at 2023-01-20 06:50 AM PST -kotynskm,2023-01-31T23:24:01Z,- kotynskm assigned to issue: [3818](https://github.com/hackforla/website/issues/3818) at 2023-01-31 03:24 PM PST -kotynskm,2023-01-31T23:39:22Z,- kotynskm closed issue as completed: [3778](https://github.com/hackforla/website/issues/3778#event-8404744328) at 2023-01-31 03:39 PM PST -kotynskm,2023-01-31T23:41:20Z,- kotynskm commented on issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1411222934) at 2023-01-31 03:41 PM PST -kotynskm,2023-01-31T23:52:26Z,- kotynskm opened pull request: [3907](https://github.com/hackforla/website/pull/3907) at 2023-01-31 03:52 PM PST -kotynskm,2023-02-04T00:40:57Z,- kotynskm pull request merged: [3907](https://github.com/hackforla/website/pull/3907#event-8437364123) at 2023-02-03 04:40 PM PST -kotynskm,2023-02-06T19:44:09Z,- kotynskm assigned to issue: [3849](https://github.com/hackforla/website/issues/3849) at 2023-02-06 11:44 AM PST -kotynskm,2023-02-06T19:47:53Z,- kotynskm commented on issue: [3849](https://github.com/hackforla/website/issues/3849#issuecomment-1419654866) at 2023-02-06 11:47 AM PST -kotynskm,2023-02-17T18:34:58Z,- kotynskm assigned to issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1425981528) at 2023-02-17 10:34 AM PST -kotynskm,2023-02-17T19:30:30Z,- kotynskm commented on issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1435138173) at 2023-02-17 11:30 AM PST -kotynskm,2023-02-17T20:01:46Z,- kotynskm opened pull request: [4003](https://github.com/hackforla/website/pull/4003) at 2023-02-17 12:01 PM PST -kotynskm,2023-02-18T04:04:25Z,- kotynskm pull request closed w/o merging: [4003](https://github.com/hackforla/website/pull/4003#event-8552312177) at 2023-02-17 08:04 PM PST -kotynskm,2023-02-18T04:15:11Z,- kotynskm opened pull request: [4005](https://github.com/hackforla/website/pull/4005) at 2023-02-17 08:15 PM PST -kotynskm,2023-02-18T05:40:23Z,- kotynskm pull request merged: [4005](https://github.com/hackforla/website/pull/4005#event-8552414771) at 2023-02-17 09:40 PM PST -kotynskm,2023-02-26T08:04:15Z,- kotynskm commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1445293011) at 2023-02-26 12:04 AM PST -kotynskm,2023-03-27T21:54:53Z,- kotynskm commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1485909522) at 2023-03-27 02:54 PM PDT -Kphalguni,2024-11-17T19:30:56Z,- Kphalguni assigned to issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2481454157) at 2024-11-17 11:30 AM PST -Kphalguni,2024-11-23T05:52:45Z,- Kphalguni opened issue: [7758](https://github.com/hackforla/website/issues/7758) at 2024-11-22 09:52 PM PST -Kphalguni,2024-12-23T23:11:33Z,- Kphalguni unassigned from issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2557561087) at 2024-12-23 03:11 PM PST -Kphalguni,2024-12-23T23:11:48Z,- Kphalguni assigned to issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2437056686) at 2024-12-23 03:11 PM PST -Kphalguni,2024-12-24T00:08:31Z,- Kphalguni commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2560453948) at 2024-12-23 04:08 PM PST -Kphalguni,2024-12-29T06:37:44Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2564629942) at 2024-12-28 10:37 PM PST -Kphalguni,2025-01-14T07:34:50Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2589214357) at 2025-01-13 11:34 PM PST -Kphalguni,2025-01-20T01:40:59Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2601154366) at 2025-01-19 05:40 PM PST -Kphalguni,2025-02-07T18:39:09Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2643709367) at 2025-02-07 10:39 AM PST -Kphalguni,2025-02-10T20:14:09Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2649134922) at 2025-02-10 12:14 PM PST -Kphalguni,2025-02-16T20:06:37Z,- Kphalguni commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2661594909) at 2025-02-16 12:06 PM PST -Kphalguni,2025-02-22T06:05:23Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2676040925) at 2025-02-21 10:05 PM PST -Kphalguni,2025-03-09T16:48:40Z,- Kphalguni assigned to issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2661594909) at 2025-03-09 09:48 AM PDT -Kphalguni,2025-03-15T06:10:23Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2726261590) at 2025-03-14 11:10 PM PDT -Kphalguni,2025-03-30T05:54:06Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2764400365) at 2025-03-29 10:54 PM PDT -Kphalguni,2025-03-30T17:35:25Z,- Kphalguni commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2764667362) at 2025-03-30 10:35 AM PDT -KPHowley,2020-01-23T00:12:45Z,- KPHowley commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-577446594) at 2020-01-22 04:12 PM PST -KPHowley,2020-02-16T20:07:36Z,- KPHowley assigned to issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-577446594) at 2020-02-16 12:07 PM PST -KPHowley,2020-02-18T21:06:59Z,- KPHowley commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-587849116) at 2020-02-18 01:06 PM PST -KPHowley,2020-02-29T17:42:24Z,- KPHowley commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-592973026) at 2020-02-29 09:42 AM PST -KPHowley,2020-03-16T20:50:40Z,- KPHowley commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-599752403) at 2020-03-16 01:50 PM PDT -KPHowley,2020-03-18T02:30:04Z,- KPHowley commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600392805) at 2020-03-17 07:30 PM PDT -KPHowley,2020-03-19T01:17:33Z,- KPHowley commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600936406) at 2020-03-18 06:17 PM PDT -KPHowley,2022-01-22T02:17:02Z,- KPHowley commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-1019018791) at 2022-01-21 06:17 PM PST -kpmunnelly,3410,SKILLS ISSUE -kpmunnelly,2022-07-20T21:31:15Z,- kpmunnelly opened issue: [3410](https://github.com/hackforla/website/issues/3410) at 2022-07-20 02:31 PM PDT -kpmunnelly,2022-10-09T17:18:03Z,- kpmunnelly assigned to issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1251271207) at 2022-10-09 10:18 AM PDT -kpmunnelly,2022-10-09T18:09:32Z,- kpmunnelly commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1272598192) at 2022-10-09 11:09 AM PDT -kpmunnelly,2022-10-16T18:07:19Z,- kpmunnelly commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1280022355) at 2022-10-16 11:07 AM PDT -kpmunnelly,2022-10-30T15:50:10Z,- kpmunnelly commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1296288918) at 2022-10-30 08:50 AM PDT -kpmunnelly,2022-11-08T17:43:22Z,- kpmunnelly commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1307600094) at 2022-11-08 09:43 AM PST -kpmunnelly,2022-11-09T20:28:45Z,- kpmunnelly assigned to issue: [3410](https://github.com/hackforla/website/issues/3410) at 2022-11-09 12:28 PM PST -kpmunnelly,2022-11-11T20:23:58Z,- kpmunnelly commented on issue: [3410](https://github.com/hackforla/website/issues/3410#issuecomment-1312164632) at 2022-11-11 12:23 PM PST -kpmunnelly,2022-11-13T18:44:25Z,- kpmunnelly closed issue as completed: [3410](https://github.com/hackforla/website/issues/3410#event-7798856531) at 2022-11-13 10:44 AM PST -kpmunnelly,2022-11-19T18:12:34Z,- kpmunnelly commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1320938149) at 2022-11-19 10:12 AM PST -kpmunnelly,2022-11-20T18:41:32Z,- kpmunnelly commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1321210644) at 2022-11-20 10:41 AM PST -kpmunnelly,2022-11-27T15:31:20Z,- kpmunnelly commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1328270483) at 2022-11-27 07:31 AM PST -kristine-eudey,2021-07-06T23:06:03Z,- kristine-eudey assigned to issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-855367804) at 2021-07-06 04:06 PM PDT -kristine-eudey,2021-07-19T22:24:53Z,- kristine-eudey opened issue: [1979](https://github.com/hackforla/website/issues/1979) at 2021-07-19 03:24 PM PDT -kristine-eudey,2021-07-21T16:16:17Z,- kristine-eudey opened issue: [1995](https://github.com/hackforla/website/issues/1995) at 2021-07-21 09:16 AM PDT -kristine-eudey,2021-07-21T16:30:41Z,- kristine-eudey opened issue: [1996](https://github.com/hackforla/website/issues/1996) at 2021-07-21 09:30 AM PDT -kristine-eudey,2021-07-21T16:31:58Z,- kristine-eudey commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-884326655) at 2021-07-21 09:31 AM PDT -kristine-eudey,2021-07-21T16:35:10Z,- kristine-eudey commented on issue: [1987](https://github.com/hackforla/website/issues/1987#issuecomment-884328758) at 2021-07-21 09:35 AM PDT -kristine-eudey,2021-07-21T16:56:16Z,- kristine-eudey opened issue: [1997](https://github.com/hackforla/website/issues/1997) at 2021-07-21 09:56 AM PDT -kristine-eudey,2021-07-25T00:33:35Z,- kristine-eudey commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-886128711) at 2021-07-24 05:33 PM PDT -kristine-eudey,2021-07-27T16:49:31Z,- kristine-eudey commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-887670543) at 2021-07-27 09:49 AM PDT -kristine-eudey,2021-07-28T14:19:29Z,- kristine-eudey opened issue: [2015](https://github.com/hackforla/website/issues/2015) at 2021-07-28 07:19 AM PDT -kristine-eudey,2021-07-28T14:21:59Z,- kristine-eudey assigned to issue: [2015](https://github.com/hackforla/website/issues/2015) at 2021-07-28 07:21 AM PDT -kristine-eudey,2021-07-28T14:25:43Z,- kristine-eudey commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-888353518) at 2021-07-28 07:25 AM PDT -kristine-eudey,2021-07-28T14:57:29Z,- kristine-eudey opened issue: [2016](https://github.com/hackforla/website/issues/2016) at 2021-07-28 07:57 AM PDT -kristine-eudey,2021-07-29T19:26:06Z,- kristine-eudey commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-889400182) at 2021-07-29 12:26 PM PDT -kristine-eudey,2021-07-29T19:38:44Z,- kristine-eudey commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-889407417) at 2021-07-29 12:38 PM PDT -kristine-eudey,2021-07-29T19:44:18Z,- kristine-eudey opened issue: [2020](https://github.com/hackforla/website/issues/2020) at 2021-07-29 12:44 PM PDT -kristine-eudey,2021-07-29T19:50:10Z,- kristine-eudey opened issue: [2021](https://github.com/hackforla/website/issues/2021) at 2021-07-29 12:50 PM PDT -kristine-eudey,2021-07-30T01:00:51Z,- kristine-eudey assigned to issue: [1969](https://github.com/hackforla/website/issues/1969) at 2021-07-29 06:00 PM PDT -kristine-eudey,2021-07-30T01:00:56Z,- kristine-eudey unassigned from issue: [1969](https://github.com/hackforla/website/issues/1969) at 2021-07-29 06:00 PM PDT -kristine-eudey,2021-07-30T18:55:58Z,- kristine-eudey assigned to issue: [1997](https://github.com/hackforla/website/issues/1997) at 2021-07-30 11:55 AM PDT -kristine-eudey,2021-07-30T18:56:39Z,- kristine-eudey commented on issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890090459) at 2021-07-30 11:56 AM PDT -kristine-eudey,2021-07-31T13:24:42Z,- kristine-eudey commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890348475) at 2021-07-31 06:24 AM PDT -kristine-eudey,2021-08-01T15:27:43Z,- kristine-eudey commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-890539702) at 2021-08-01 08:27 AM PDT -kristine-eudey,2021-08-01T15:29:35Z,- kristine-eudey commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-890540019) at 2021-08-01 08:29 AM PDT -kristine-eudey,2021-08-01T15:30:09Z,- kristine-eudey commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-890540114) at 2021-08-01 08:30 AM PDT -kristine-eudey,2021-08-01T16:26:06Z,- kristine-eudey commented on issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 09:26 AM PDT -kristine-eudey,2021-08-01T16:26:19Z,- kristine-eudey unassigned from issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 09:26 AM PDT -kristine-eudey,2021-08-03T18:00:36Z,- kristine-eudey assigned to issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892048780) at 2021-08-03 11:00 AM PDT -kristine-eudey,2021-08-03T18:31:44Z,- kristine-eudey opened issue: [2043](https://github.com/hackforla/website/issues/2043) at 2021-08-03 11:31 AM PDT -kristine-eudey,2021-08-03T18:33:02Z,- kristine-eudey opened issue: [2044](https://github.com/hackforla/website/issues/2044) at 2021-08-03 11:33 AM PDT -kristine-eudey,2021-08-03T18:34:37Z,- kristine-eudey opened issue: [2045](https://github.com/hackforla/website/issues/2045) at 2021-08-03 11:34 AM PDT -kristine-eudey,2021-08-03T18:35:47Z,- kristine-eudey opened issue: [2047](https://github.com/hackforla/website/issues/2047) at 2021-08-03 11:35 AM PDT -kristine-eudey,2021-08-03T18:36:55Z,- kristine-eudey opened issue: [2048](https://github.com/hackforla/website/issues/2048) at 2021-08-03 11:36 AM PDT -kristine-eudey,2021-08-03T18:56:41Z,- kristine-eudey opened issue: [2057](https://github.com/hackforla/website/issues/2057) at 2021-08-03 11:56 AM PDT -kristine-eudey,2021-08-03T18:58:37Z,- kristine-eudey assigned to issue: [2057](https://github.com/hackforla/website/issues/2057) at 2021-08-03 11:58 AM PDT -kristine-eudey,2021-08-03T19:00:54Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-892088799) at 2021-08-03 12:00 PM PDT -kristine-eudey,2021-08-04T18:05:18Z,- kristine-eudey commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-892862397) at 2021-08-04 11:05 AM PDT -kristine-eudey,2021-08-05T15:39:01Z,- kristine-eudey commented on issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-893559681) at 2021-08-05 08:39 AM PDT -kristine-eudey,2021-08-05T17:14:56Z,- kristine-eudey opened issue: [2066](https://github.com/hackforla/website/issues/2066) at 2021-08-05 10:14 AM PDT -kristine-eudey,2021-08-05T18:57:47Z,- kristine-eudey commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-893704283) at 2021-08-05 11:57 AM PDT -kristine-eudey,2021-08-06T01:17:52Z,- kristine-eudey assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-822814496) at 2021-08-05 06:17 PM PDT -kristine-eudey,2021-08-06T01:17:58Z,- kristine-eudey unassigned from issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-822814496) at 2021-08-05 06:17 PM PDT -kristine-eudey,2021-08-06T01:29:05Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-893935647) at 2021-08-05 06:29 PM PDT -kristine-eudey,2021-08-08T00:20:36Z,- kristine-eudey commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-894722298) at 2021-08-07 05:20 PM PDT -kristine-eudey,2021-08-08T00:31:11Z,- kristine-eudey commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-894723131) at 2021-08-07 05:31 PM PDT -kristine-eudey,2021-08-08T17:57:10Z,- kristine-eudey commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-894832579) at 2021-08-08 10:57 AM PDT -kristine-eudey,2021-08-08T18:31:03Z,- kristine-eudey commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894836842) at 2021-08-08 11:31 AM PDT -kristine-eudey,2021-08-09T18:19:23Z,- kristine-eudey commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-895436933) at 2021-08-09 11:19 AM PDT -kristine-eudey,2021-08-09T20:39:26Z,- kristine-eudey commented on issue: [2020](https://github.com/hackforla/website/issues/2020#issuecomment-895525809) at 2021-08-09 01:39 PM PDT -kristine-eudey,2021-08-10T15:18:47Z,- kristine-eudey opened issue: [2078](https://github.com/hackforla/website/issues/2078) at 2021-08-10 08:18 AM PDT -kristine-eudey,2021-08-10T15:20:52Z,- kristine-eudey opened issue: [2079](https://github.com/hackforla/website/issues/2079) at 2021-08-10 08:20 AM PDT -kristine-eudey,2021-08-10T16:46:22Z,- kristine-eudey opened issue: [2080](https://github.com/hackforla/website/issues/2080) at 2021-08-10 09:46 AM PDT -kristine-eudey,2021-08-10T16:49:46Z,- kristine-eudey opened issue: [2081](https://github.com/hackforla/website/issues/2081) at 2021-08-10 09:49 AM PDT -kristine-eudey,2021-08-10T16:51:35Z,- kristine-eudey opened issue: [2082](https://github.com/hackforla/website/issues/2082) at 2021-08-10 09:51 AM PDT -kristine-eudey,2021-08-10T16:53:52Z,- kristine-eudey opened issue: [2083](https://github.com/hackforla/website/issues/2083) at 2021-08-10 09:53 AM PDT -kristine-eudey,2021-08-10T16:55:38Z,- kristine-eudey opened issue: [2084](https://github.com/hackforla/website/issues/2084) at 2021-08-10 09:55 AM PDT -kristine-eudey,2021-08-10T17:13:09Z,- kristine-eudey opened issue: [2085](https://github.com/hackforla/website/issues/2085) at 2021-08-10 10:13 AM PDT -kristine-eudey,2021-08-10T17:14:21Z,- kristine-eudey opened issue: [2086](https://github.com/hackforla/website/issues/2086) at 2021-08-10 10:14 AM PDT -kristine-eudey,2021-08-10T17:15:47Z,- kristine-eudey opened issue: [2087](https://github.com/hackforla/website/issues/2087) at 2021-08-10 10:15 AM PDT -kristine-eudey,2021-08-10T17:17:30Z,- kristine-eudey opened issue: [2088](https://github.com/hackforla/website/issues/2088) at 2021-08-10 10:17 AM PDT -kristine-eudey,2021-08-10T17:18:33Z,- kristine-eudey opened issue: [2089](https://github.com/hackforla/website/issues/2089) at 2021-08-10 10:18 AM PDT -kristine-eudey,2021-08-10T17:19:52Z,- kristine-eudey opened issue: [2090](https://github.com/hackforla/website/issues/2090) at 2021-08-10 10:19 AM PDT -kristine-eudey,2021-08-10T17:24:33Z,- kristine-eudey opened issue: [2091](https://github.com/hackforla/website/issues/2091) at 2021-08-10 10:24 AM PDT -kristine-eudey,2021-08-10T17:25:43Z,- kristine-eudey opened issue: [2092](https://github.com/hackforla/website/issues/2092) at 2021-08-10 10:25 AM PDT -kristine-eudey,2021-08-10T17:26:38Z,- kristine-eudey opened issue: [2093](https://github.com/hackforla/website/issues/2093) at 2021-08-10 10:26 AM PDT -kristine-eudey,2021-08-10T17:27:45Z,- kristine-eudey opened issue: [2094](https://github.com/hackforla/website/issues/2094) at 2021-08-10 10:27 AM PDT -kristine-eudey,2021-08-10T17:28:51Z,- kristine-eudey opened issue: [2095](https://github.com/hackforla/website/issues/2095) at 2021-08-10 10:28 AM PDT -kristine-eudey,2021-08-10T17:30:08Z,- kristine-eudey commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-896176832) at 2021-08-10 10:30 AM PDT -kristine-eudey,2021-08-10T17:54:55Z,- kristine-eudey opened issue: [2096](https://github.com/hackforla/website/issues/2096) at 2021-08-10 10:54 AM PDT -kristine-eudey,2021-08-10T18:45:00Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-896228513) at 2021-08-10 11:45 AM PDT -kristine-eudey,2021-08-12T16:16:44Z,- kristine-eudey commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-897771984) at 2021-08-12 09:16 AM PDT -kristine-eudey,2021-08-12T22:52:03Z,- kristine-eudey opened issue: [2106](https://github.com/hackforla/website/issues/2106) at 2021-08-12 03:52 PM PDT -kristine-eudey,2021-08-12T23:09:07Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-898030721) at 2021-08-12 04:09 PM PDT -kristine-eudey,2021-08-15T17:07:52Z,- kristine-eudey closed issue as completed: [1969](https://github.com/hackforla/website/issues/1969#event-5159944980) at 2021-08-15 10:07 AM PDT -kristine-eudey,2021-08-15T17:13:04Z,- kristine-eudey commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-899083384) at 2021-08-15 10:13 AM PDT -kristine-eudey,2021-08-15T17:17:58Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-899083978) at 2021-08-15 10:17 AM PDT -kristine-eudey,2021-08-15T17:22:08Z,- kristine-eudey commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-899084467) at 2021-08-15 10:22 AM PDT -kristine-eudey,2021-08-15T17:22:53Z,- kristine-eudey reopened issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-899083384) at 2021-08-15 10:22 AM PDT -kristine-eudey,2021-08-15T17:32:40Z,- kristine-eudey commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-899085649) at 2021-08-15 10:32 AM PDT -kristine-eudey,2021-08-17T13:50:08Z,- kristine-eudey commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-900315904) at 2021-08-17 06:50 AM PDT -kristine-eudey,2021-08-17T14:45:15Z,- kristine-eudey commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-900362136) at 2021-08-17 07:45 AM PDT -kristine-eudey,2021-08-17T15:24:58Z,- kristine-eudey commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-900395458) at 2021-08-17 08:24 AM PDT -kristine-eudey,2021-08-17T17:49:26Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-900508307) at 2021-08-17 10:49 AM PDT -kristine-eudey,2021-08-17T20:00:41Z,- kristine-eudey closed issue as completed: [2096](https://github.com/hackforla/website/issues/2096#event-5171019965) at 2021-08-17 01:00 PM PDT -kristine-eudey,2021-08-19T22:59:14Z,- kristine-eudey opened issue: [2129](https://github.com/hackforla/website/issues/2129) at 2021-08-19 03:59 PM PDT -kristine-eudey,2021-08-19T23:12:56Z,- kristine-eudey opened issue: [2130](https://github.com/hackforla/website/issues/2130) at 2021-08-19 04:12 PM PDT -kristine-eudey,2021-08-19T23:18:52Z,- kristine-eudey assigned to issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-815129199) at 2021-08-19 04:18 PM PDT -kristine-eudey,2021-08-22T16:39:50Z,- kristine-eudey commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-903296066) at 2021-08-22 09:39 AM PDT -kristine-eudey,2021-08-22T18:04:45Z,- kristine-eudey commented on issue: [2079](https://github.com/hackforla/website/issues/2079#issuecomment-903307425) at 2021-08-22 11:04 AM PDT -kristine-eudey,2021-08-22T18:32:10Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-903311231) at 2021-08-22 11:32 AM PDT -kristine-eudey,2021-08-22T18:50:53Z,- kristine-eudey commented on issue: [2090](https://github.com/hackforla/website/issues/2090#issuecomment-903313706) at 2021-08-22 11:50 AM PDT -kristine-eudey,2021-08-22T18:51:07Z,- kristine-eudey closed issue as completed: [2090](https://github.com/hackforla/website/issues/2090#event-5191138814) at 2021-08-22 11:51 AM PDT -kristine-eudey,2021-08-22T18:52:41Z,- kristine-eudey commented on issue: [2089](https://github.com/hackforla/website/issues/2089#issuecomment-903313941) at 2021-08-22 11:52 AM PDT -kristine-eudey,2021-08-22T19:05:49Z,- kristine-eudey commented on issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-903315840) at 2021-08-22 12:05 PM PDT -kristine-eudey,2021-08-22T19:41:13Z,- kristine-eudey commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-903320194) at 2021-08-22 12:41 PM PDT -kristine-eudey,2021-08-24T14:09:23Z,- kristine-eudey opened issue: [2171](https://github.com/hackforla/website/issues/2171) at 2021-08-24 07:09 AM PDT -kristine-eudey,2021-08-24T15:27:53Z,- kristine-eudey commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904743622) at 2021-08-24 08:27 AM PDT -kristine-eudey,2021-08-25T18:53:52Z,- kristine-eudey commented on issue: [2169](https://github.com/hackforla/website/issues/2169#issuecomment-905789776) at 2021-08-25 11:53 AM PDT -kristine-eudey,2021-08-25T18:53:52Z,- kristine-eudey closed issue as completed: [2169](https://github.com/hackforla/website/issues/2169#event-5208759327) at 2021-08-25 11:53 AM PDT -kristine-eudey,2021-08-25T19:23:06Z,- kristine-eudey commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-905809727) at 2021-08-25 12:23 PM PDT -kristine-eudey,2021-08-25T19:49:40Z,- kristine-eudey commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-905825653) at 2021-08-25 12:49 PM PDT -kristine-eudey,2021-08-26T23:32:31Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-906811158) at 2021-08-26 04:32 PM PDT -kristine-eudey,2021-08-27T19:53:11Z,- kristine-eudey opened issue: [2190](https://github.com/hackforla/website/issues/2190) at 2021-08-27 12:53 PM PDT -kristine-eudey,2021-08-27T20:21:15Z,- kristine-eudey commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-907455340) at 2021-08-27 01:21 PM PDT -kristine-eudey,2021-08-27T20:21:15Z,- kristine-eudey closed issue as completed: [1979](https://github.com/hackforla/website/issues/1979#event-5220520273) at 2021-08-27 01:21 PM PDT -kristine-eudey,2021-08-28T23:40:09Z,- kristine-eudey unassigned from issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-815129199) at 2021-08-28 04:40 PM PDT -kristine-eudey,2021-08-29T14:50:36Z,- kristine-eudey commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-907804673) at 2021-08-29 07:50 AM PDT -kristine-eudey,2021-08-29T15:11:48Z,- kristine-eudey commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-907808738) at 2021-08-29 08:11 AM PDT -kristine-eudey,2021-08-30T16:38:36Z,- kristine-eudey opened issue: [2207](https://github.com/hackforla/website/issues/2207) at 2021-08-30 09:38 AM PDT -kristine-eudey,2021-08-30T16:38:36Z,- kristine-eudey assigned to issue: [2207](https://github.com/hackforla/website/issues/2207) at 2021-08-30 09:38 AM PDT -kristine-eudey,2021-08-30T16:49:02Z,- kristine-eudey unassigned from issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-908498261) at 2021-08-30 09:49 AM PDT -kristine-eudey,2021-09-01T14:03:27Z,- kristine-eudey commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-910317333) at 2021-09-01 07:03 AM PDT -kristine-eudey,2021-09-01T14:28:59Z,- kristine-eudey opened issue: [2213](https://github.com/hackforla/website/issues/2213) at 2021-09-01 07:28 AM PDT -kristine-eudey,2021-09-02T16:56:45Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-911880621) at 2021-09-02 09:56 AM PDT -kristine-eudey,2021-09-02T17:06:43Z,- kristine-eudey assigned to issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-907808738) at 2021-09-02 10:06 AM PDT -kristine-eudey,2021-09-03T00:56:51Z,- kristine-eudey assigned to issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-907440583) at 2021-09-02 05:56 PM PDT -kristine-eudey,2021-09-03T00:57:20Z,- kristine-eudey unassigned from issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-907440583) at 2021-09-02 05:57 PM PDT -kristine-eudey,2021-09-03T16:52:25Z,- kristine-eudey assigned to issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-912180289) at 2021-09-03 09:52 AM PDT -kristine-eudey,2021-09-03T16:52:45Z,- kristine-eudey commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-912675900) at 2021-09-03 09:52 AM PDT -kristine-eudey,2021-09-03T20:53:00Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-912804122) at 2021-09-03 01:53 PM PDT -kristine-eudey,2021-09-08T23:18:19Z,- kristine-eudey commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-915636094) at 2021-09-08 04:18 PM PDT -kristine-eudey,2021-09-09T23:37:05Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-916511776) at 2021-09-09 04:37 PM PDT -kristine-eudey,2021-09-12T16:51:16Z,- kristine-eudey commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-917670918) at 2021-09-12 09:51 AM PDT -kristine-eudey,2021-09-12T16:58:29Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-917672481) at 2021-09-12 09:58 AM PDT -kristine-eudey,2021-09-16T20:27:19Z,- kristine-eudey commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-921221386) at 2021-09-16 01:27 PM PDT -kristine-eudey,2021-09-16T22:22:23Z,- kristine-eudey commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-921299370) at 2021-09-16 03:22 PM PDT -kristine-eudey,2021-09-16T23:09:27Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-921322845) at 2021-09-16 04:09 PM PDT -kristine-eudey,2021-09-16T23:59:04Z,- kristine-eudey commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-921341756) at 2021-09-16 04:59 PM PDT -kristine-eudey,2021-09-19T16:19:36Z,- kristine-eudey closed issue as completed: [1969](https://github.com/hackforla/website/issues/1969#event-5324881357) at 2021-09-19 09:19 AM PDT -kristine-eudey,2021-09-23T18:48:48Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-926067388) at 2021-09-23 11:48 AM PDT -kristine-eudey,2021-09-26T18:02:34Z,- kristine-eudey assigned to issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-926815579) at 2021-09-26 11:02 AM PDT -kristine-eudey,2021-09-28T15:11:47Z,- kristine-eudey commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-929324091) at 2021-09-28 08:11 AM PDT -kristine-eudey,2021-09-28T15:26:04Z,- kristine-eudey opened issue: [2311](https://github.com/hackforla/website/issues/2311) at 2021-09-28 08:26 AM PDT -kristine-eudey,2021-09-28T15:38:58Z,- kristine-eudey opened issue: [2312](https://github.com/hackforla/website/issues/2312) at 2021-09-28 08:38 AM PDT -kristine-eudey,2021-09-28T19:15:41Z,- kristine-eudey commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-929549837) at 2021-09-28 12:15 PM PDT -kristine-eudey,2021-09-28T19:25:06Z,- kristine-eudey commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-929556480) at 2021-09-28 12:25 PM PDT -kristine-eudey,2021-09-28T19:27:54Z,- kristine-eudey commented on issue: [2169](https://github.com/hackforla/website/issues/2169#issuecomment-929558306) at 2021-09-28 12:27 PM PDT -kristine-eudey,2021-09-30T23:49:39Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-931784180) at 2021-09-30 04:49 PM PDT -kristine-eudey,2021-10-03T16:15:47Z,- kristine-eudey opened issue: [2328](https://github.com/hackforla/website/issues/2328) at 2021-10-03 09:15 AM PDT -kristine-eudey,2021-10-03T16:28:55Z,- kristine-eudey assigned to issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-932981533) at 2021-10-03 09:28 AM PDT -kristine-eudey,2021-10-03T16:49:42Z,- kristine-eudey commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-932986544) at 2021-10-03 09:49 AM PDT -kristine-eudey,2021-10-06T16:26:23Z,- kristine-eudey closed issue as completed: [2069](https://github.com/hackforla/website/issues/2069#event-5421814065) at 2021-10-06 09:26 AM PDT -kristine-eudey,2021-10-06T16:36:00Z,- kristine-eudey commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-936644901) at 2021-10-06 09:36 AM PDT -kristine-eudey,2021-10-06T16:36:00Z,- kristine-eudey closed issue as completed: [2190](https://github.com/hackforla/website/issues/2190#event-5421902558) at 2021-10-06 09:36 AM PDT -kristine-eudey,2021-10-07T19:11:01Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-938078849) at 2021-10-07 12:11 PM PDT -kristine-eudey,2021-10-07T19:43:54Z,- kristine-eudey commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-938101488) at 2021-10-07 12:43 PM PDT -kristine-eudey,2021-10-10T15:50:42Z,- kristine-eudey opened issue: [2360](https://github.com/hackforla/website/issues/2360) at 2021-10-10 08:50 AM PDT -kristine-eudey,2021-10-10T16:18:49Z,- kristine-eudey opened issue: [2361](https://github.com/hackforla/website/issues/2361) at 2021-10-10 09:18 AM PDT -kristine-eudey,2021-10-10T16:26:33Z,- kristine-eudey commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-939511372) at 2021-10-10 09:26 AM PDT -kristine-eudey,2021-10-10T16:55:18Z,- kristine-eudey commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-939515513) at 2021-10-10 09:55 AM PDT -kristine-eudey,2021-10-12T19:31:38Z,- kristine-eudey unassigned from issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-912307926) at 2021-10-12 12:31 PM PDT -kristine-eudey,2021-10-12T22:07:35Z,- kristine-eudey commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-941636640) at 2021-10-12 03:07 PM PDT -kristine-eudey,2021-10-12T22:56:13Z,- kristine-eudey assigned to issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-912307926) at 2021-10-12 03:56 PM PDT -kristine-eudey,2021-10-12T22:56:48Z,- kristine-eudey commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-941713846) at 2021-10-12 03:56 PM PDT -kristine-eudey,2021-10-12T22:58:04Z,- kristine-eudey assigned to issue: [916](https://github.com/hackforla/website/issues/916#event-4881229626) at 2021-10-12 03:58 PM PDT -kristine-eudey,2021-10-12T22:58:45Z,- kristine-eudey commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-941716616) at 2021-10-12 03:58 PM PDT -kristine-eudey,2021-10-12T23:01:08Z,- kristine-eudey commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-941719756) at 2021-10-12 04:01 PM PDT -kristine-eudey,2021-10-12T23:11:17Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-941730371) at 2021-10-12 04:11 PM PDT -kristine-eudey,2021-10-13T14:31:29Z,- kristine-eudey commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-942367408) at 2021-10-13 07:31 AM PDT -kristine-eudey,2021-10-13T15:07:35Z,- kristine-eudey commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-942400846) at 2021-10-13 08:07 AM PDT -kristine-eudey,2021-10-17T15:43:14Z,- kristine-eudey commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-945147412) at 2021-10-17 08:43 AM PDT -kristine-eudey,2021-10-17T15:44:28Z,- kristine-eudey commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-945147623) at 2021-10-17 08:44 AM PDT -kristine-eudey,2021-10-17T15:47:29Z,- kristine-eudey commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-945148176) at 2021-10-17 08:47 AM PDT -kristine-eudey,2021-10-17T17:31:14Z,- kristine-eudey commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-945163873) at 2021-10-17 10:31 AM PDT -kristine-eudey,2021-10-19T17:07:55Z,- kristine-eudey opened issue: [2374](https://github.com/hackforla/website/issues/2374) at 2021-10-19 10:07 AM PDT -kristine-eudey,2021-10-19T18:29:01Z,- kristine-eudey commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-946994267) at 2021-10-19 11:29 AM PDT -kristine-eudey,2021-10-21T20:24:00Z,- kristine-eudey closed issue as completed: [1841](https://github.com/hackforla/website/issues/1841#event-5500982932) at 2021-10-21 01:24 PM PDT -kristine-eudey,2021-10-21T20:41:20Z,- kristine-eudey commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-948987215) at 2021-10-21 01:41 PM PDT -kristine-eudey,2021-10-21T20:47:15Z,- kristine-eudey commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-948990718) at 2021-10-21 01:47 PM PDT -kristine-eudey,2021-10-21T20:47:29Z,- kristine-eudey closed issue as completed: [2171](https://github.com/hackforla/website/issues/2171#event-5501087135) at 2021-10-21 01:47 PM PDT -kristine-eudey,2021-10-21T21:02:46Z,- kristine-eudey commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-949000378) at 2021-10-21 02:02 PM PDT -kristine-eudey,2021-10-21T21:08:54Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-949004713) at 2021-10-21 02:08 PM PDT -kristine-eudey,2021-10-24T16:54:34Z,- kristine-eudey commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-950357587) at 2021-10-24 09:54 AM PDT -kristine-eudey,2021-10-24T16:54:35Z,- kristine-eudey closed issue as completed: [2213](https://github.com/hackforla/website/issues/2213#event-5509754481) at 2021-10-24 09:54 AM PDT -kristine-eudey,2021-10-24T17:09:42Z,- kristine-eudey commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-950359854) at 2021-10-24 10:09 AM PDT -kristine-eudey,2021-10-28T23:34:37Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-954299154) at 2021-10-28 04:34 PM PDT -kristine-eudey,2021-10-28T23:48:12Z,- kristine-eudey commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-954303531) at 2021-10-28 04:48 PM PDT -kristine-eudey,2021-11-01T05:21:22Z,- kristine-eudey assigned to issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-955942070) at 2021-10-31 10:21 PM PDT -kristine-eudey,2021-11-01T19:25:21Z,- kristine-eudey commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-956522194) at 2021-11-01 12:25 PM PDT -kristine-eudey,2021-11-01T19:43:43Z,- kristine-eudey commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-956534113) at 2021-11-01 12:43 PM PDT -kristine-eudey,2021-11-01T20:30:30Z,- kristine-eudey commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-956567151) at 2021-11-01 01:30 PM PDT -kristine-eudey,2021-11-01T20:36:34Z,- kristine-eudey commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-956570844) at 2021-11-01 01:36 PM PDT -kristine-eudey,2021-11-02T18:38:13Z,- kristine-eudey commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-958027611) at 2021-11-02 11:38 AM PDT -kristine-eudey,2021-11-02T18:52:59Z,- kristine-eudey commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-958056156) at 2021-11-02 11:52 AM PDT -kristine-eudey,2021-11-04T21:33:37Z,- kristine-eudey opened issue: [2446](https://github.com/hackforla/website/issues/2446) at 2021-11-04 02:33 PM PDT -kristine-eudey,2021-11-04T21:34:09Z,- kristine-eudey opened issue: [2447](https://github.com/hackforla/website/issues/2447) at 2021-11-04 02:34 PM PDT -kristine-eudey,2021-11-04T21:34:35Z,- kristine-eudey opened issue: [2448](https://github.com/hackforla/website/issues/2448) at 2021-11-04 02:34 PM PDT -kristine-eudey,2021-11-04T21:35:36Z,- kristine-eudey opened issue: [2449](https://github.com/hackforla/website/issues/2449) at 2021-11-04 02:35 PM PDT -kristine-eudey,2021-11-04T22:22:15Z,- kristine-eudey assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-11-04 03:22 PM PDT -kristine-eudey,2021-11-04T22:24:10Z,- kristine-eudey unassigned from issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-11-04 03:24 PM PDT -kristine-eudey,2021-11-04T22:47:25Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-961489840) at 2021-11-04 03:47 PM PDT -kristine-eudey,2021-11-04T22:59:44Z,- kristine-eudey assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-11-04 03:59 PM PDT -kristine-eudey,2021-11-04T23:03:48Z,- kristine-eudey unassigned from issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-11-04 04:03 PM PDT -kristine-eudey,2021-11-07T17:32:36Z,- kristine-eudey commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-962650579) at 2021-11-07 09:32 AM PST -kristine-eudey,2021-11-08T23:12:51Z,- kristine-eudey opened issue: [2464](https://github.com/hackforla/website/issues/2464) at 2021-11-08 03:12 PM PST -kristine-eudey,2021-11-08T23:33:23Z,- kristine-eudey opened issue: [2465](https://github.com/hackforla/website/issues/2465) at 2021-11-08 03:33 PM PST -kristine-eudey,2021-11-08T23:40:23Z,- kristine-eudey commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-963675646) at 2021-11-08 03:40 PM PST -kristine-eudey,2021-11-08T23:40:23Z,- kristine-eudey closed issue as completed: [2129](https://github.com/hackforla/website/issues/2129#event-5586325949) at 2021-11-08 03:40 PM PST -kristine-eudey,2021-11-12T00:31:54Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-966723008) at 2021-11-11 04:31 PM PST -kristine-eudey,2021-11-12T16:24:05Z,- kristine-eudey commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-967243506) at 2021-11-12 08:24 AM PST -kristine-eudey,2021-11-14T17:48:33Z,- kristine-eudey commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-968335564) at 2021-11-14 09:48 AM PST -kristine-eudey,2021-11-14T17:49:26Z,- kristine-eudey commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-968335736) at 2021-11-14 09:49 AM PST -kristine-eudey,2021-11-14T23:35:24Z,- kristine-eudey unassigned from issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-967251091) at 2021-11-14 03:35 PM PST -kristine-eudey,2021-11-16T17:12:52Z,- kristine-eudey commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-970485026) at 2021-11-16 09:12 AM PST -kristine-eudey,2021-11-17T17:42:39Z,- kristine-eudey opened issue: [2497](https://github.com/hackforla/website/issues/2497) at 2021-11-17 09:42 AM PST -kristine-eudey,2021-11-17T19:24:41Z,- kristine-eudey commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-971900878) at 2021-11-17 11:24 AM PST -kristine-eudey,2021-11-17T19:25:22Z,- kristine-eudey commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-971901436) at 2021-11-17 11:25 AM PST -kristine-eudey,2021-11-18T23:21:35Z,- kristine-eudey commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-973411667) at 2021-11-18 03:21 PM PST -kristine-eudey,2021-11-19T00:32:12Z,- kristine-eudey commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-973573466) at 2021-11-18 04:32 PM PST -kristine-eudey,2021-11-19T00:33:44Z,- kristine-eudey commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-973576175) at 2021-11-18 04:33 PM PST -kristine-eudey,2021-11-21T17:00:34Z,- kristine-eudey commented on issue: [2449](https://github.com/hackforla/website/issues/2449#issuecomment-974855022) at 2021-11-21 09:00 AM PST -kristine-eudey,2021-11-21T18:21:27Z,- kristine-eudey commented on issue: [2370](https://github.com/hackforla/website/issues/2370#issuecomment-974868129) at 2021-11-21 10:21 AM PST -kristine-eudey,2021-11-22T18:46:35Z,- kristine-eudey assigned to issue: [2511](https://github.com/hackforla/website/issues/2511) at 2021-11-22 10:46 AM PST -kristine-eudey,2021-11-22T19:10:08Z,- kristine-eudey assigned to issue: [2512](https://github.com/hackforla/website/issues/2512) at 2021-11-22 11:10 AM PST -kristine-eudey,2021-11-22T19:15:10Z,- kristine-eudey assigned to issue: [2513](https://github.com/hackforla/website/issues/2513) at 2021-11-22 11:15 AM PST -kristine-eudey,2021-11-22T19:26:07Z,- kristine-eudey unassigned from issue: [2512](https://github.com/hackforla/website/issues/2512#issuecomment-975836153) at 2021-11-22 11:26 AM PST -kristine-eudey,2021-11-22T19:44:19Z,- kristine-eudey unassigned from issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-975840028) at 2021-11-22 11:44 AM PST -kristine-eudey,2021-11-28T17:50:24Z,- kristine-eudey unassigned from issue: [2511](https://github.com/hackforla/website/issues/2511#issuecomment-975817799) at 2021-11-28 09:50 AM PST -kristine-eudey,2021-12-01T16:50:19Z,- kristine-eudey unassigned from issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-979746665) at 2021-12-01 08:50 AM PST -kristine-eudey,2021-12-01T17:35:55Z,- kristine-eudey commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-983872133) at 2021-12-01 09:35 AM PST -kristine-eudey,2021-12-01T21:16:56Z,- kristine-eudey opened issue: [2528](https://github.com/hackforla/website/issues/2528) at 2021-12-01 01:16 PM PST -kristine-eudey,2021-12-02T19:38:29Z,- kristine-eudey opened issue: [2537](https://github.com/hackforla/website/issues/2537) at 2021-12-02 11:38 AM PST -kristinstockley,5353,SKILLS ISSUE -kristinstockley,2023-08-30T03:49:11Z,- kristinstockley opened issue: [5353](https://github.com/hackforla/website/issues/5353) at 2023-08-29 08:49 PM PDT -kristinstockley,2023-08-30T04:00:58Z,- kristinstockley assigned to issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1698446424) at 2023-08-29 09:00 PM PDT -kristinstockley,2023-08-31T17:17:38Z,- kristinstockley assigned to issue: [5369](https://github.com/hackforla/website/issues/5369#issuecomment-1698558978) at 2023-08-31 10:17 AM PDT -kristinstockley,2023-08-31T17:20:07Z,- kristinstockley commented on issue: [5369](https://github.com/hackforla/website/issues/5369#issuecomment-1701449113) at 2023-08-31 10:20 AM PDT -kristinstockley,2023-08-31T18:31:17Z,- kristinstockley opened pull request: [5397](https://github.com/hackforla/website/pull/5397) at 2023-08-31 11:31 AM PDT -kristinstockley,2023-09-03T00:00:56Z,- kristinstockley pull request merged: [5397](https://github.com/hackforla/website/pull/5397#event-10265025949) at 2023-09-02 05:00 PM PDT -kristinstockley,2023-09-08T15:14:51Z,- kristinstockley assigned to issue: [5379](https://github.com/hackforla/website/issues/5379) at 2023-09-08 08:14 AM PDT -kristinstockley,2023-09-08T15:16:00Z,- kristinstockley commented on issue: [5379](https://github.com/hackforla/website/issues/5379#issuecomment-1711832425) at 2023-09-08 08:16 AM PDT -kristinstockley,2023-09-08T16:03:58Z,- kristinstockley opened pull request: [5464](https://github.com/hackforla/website/pull/5464) at 2023-09-08 09:03 AM PDT -kristinstockley,2023-09-09T05:03:15Z,- kristinstockley pull request merged: [5464](https://github.com/hackforla/website/pull/5464#event-10323487811) at 2023-09-08 10:03 PM PDT -kristinstockley,2023-09-14T16:43:39Z,- kristinstockley assigned to issue: [5518](https://github.com/hackforla/website/issues/5518#issuecomment-1717169776) at 2023-09-14 09:43 AM PDT -kristinstockley,2023-09-14T16:49:05Z,- kristinstockley commented on issue: [5518](https://github.com/hackforla/website/issues/5518#issuecomment-1719801372) at 2023-09-14 09:49 AM PDT -kristinstockley,2023-09-14T18:03:03Z,- kristinstockley commented on issue: [5518](https://github.com/hackforla/website/issues/5518#issuecomment-1719907024) at 2023-09-14 11:03 AM PDT -kristinstockley,2023-09-18T16:04:27Z,- kristinstockley assigned to issue: [5282](https://github.com/hackforla/website/issues/5282) at 2023-09-18 09:04 AM PDT -kristinstockley,2023-09-18T16:06:57Z,- kristinstockley commented on issue: [5282](https://github.com/hackforla/website/issues/5282#issuecomment-1723816319) at 2023-09-18 09:06 AM PDT -kristinstockley,2023-09-18T17:06:08Z,- kristinstockley opened pull request: [5552](https://github.com/hackforla/website/pull/5552) at 2023-09-18 10:06 AM PDT -kristinstockley,2023-09-24T16:15:35Z,- kristinstockley pull request merged: [5552](https://github.com/hackforla/website/pull/5552#event-10455535011) at 2023-09-24 09:15 AM PDT -kristinstockley,2023-10-02T20:48:52Z,- kristinstockley commented on pull request: [5646](https://github.com/hackforla/website/pull/5646#issuecomment-1743743542) at 2023-10-02 01:48 PM PDT -kristinstockley,2023-10-04T01:29:53Z,- kristinstockley submitted pull request review: [5646](https://github.com/hackforla/website/pull/5646#pullrequestreview-1656501909) at 2023-10-03 06:29 PM PDT -krushn-a,2023-09-04T01:51:08Z,- krushn-a commented on issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1704504193) at 2023-09-03 06:51 PM PDT -krushn-a,2023-09-04T02:19:33Z,- krushn-a opened pull request: [5435](https://github.com/hackforla/website/pull/5435) at 2023-09-03 07:19 PM PDT -krushn-a,2023-09-04T03:48:19Z,- krushn-a pull request closed w/o merging: [5435](https://github.com/hackforla/website/pull/5435#event-10269020189) at 2023-09-03 08:48 PM PDT -ktjnyc,2021-01-29T15:14:24Z,- ktjnyc commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-769864506) at 2021-01-29 07:14 AM PST -ktjnyc,2021-01-29T20:57:15Z,- ktjnyc assigned to issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-769864506) at 2021-01-29 12:57 PM PST -ktjnyc,2021-02-02T14:03:23Z,- ktjnyc commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-771655959) at 2021-02-02 06:03 AM PST -ktjnyc,2021-02-04T03:44:51Z,- ktjnyc commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-773005644) at 2021-02-03 07:44 PM PST -ktjnyc,2021-02-05T13:26:41Z,- ktjnyc commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-774032097) at 2021-02-05 05:26 AM PST -ktjnyc,2021-02-09T15:28:44Z,- ktjnyc commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776023681) at 2021-02-09 07:28 AM PST -ktjnyc,2021-02-10T13:59:06Z,- ktjnyc commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776723510) at 2021-02-10 05:59 AM PST -ktjnyc,2021-03-01T18:36:41Z,- ktjnyc unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-03-01 10:36 AM PST -ktjnyc,2021-04-23T14:33:03Z,- ktjnyc opened issue: [1436](https://github.com/hackforla/website/issues/1436) at 2021-04-23 07:33 AM PDT -ktjnyc,2021-04-24T20:54:09Z,- ktjnyc commented on issue: [1436](https://github.com/hackforla/website/issues/1436#issuecomment-826152022) at 2021-04-24 01:54 PM PDT -ktlevesque19,2021-06-18T01:05:29Z,- ktlevesque19 assigned to issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-855369183) at 2021-06-17 06:05 PM PDT -ktlevesque19,2021-06-29T05:55:49Z,- ktlevesque19 commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-870259343) at 2021-06-28 10:55 PM PDT -ktlevesque19,2021-06-30T06:27:12Z,- ktlevesque19 commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-871131939) at 2021-06-29 11:27 PM PDT -ktlevesque19,2021-07-30T00:47:37Z,- ktlevesque19 assigned to issue: [1979](https://github.com/hackforla/website/issues/1979) at 2021-07-29 05:47 PM PDT -ktlevesque19,2021-08-01T18:04:14Z,- ktlevesque19 commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-890562969) at 2021-08-01 11:04 AM PDT -ktlevesque19,2021-08-01T18:29:12Z,- ktlevesque19 commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-890566279) at 2021-08-01 11:29 AM PDT -ktlevesque19,2021-08-07T00:07:16Z,- ktlevesque19 commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-894573313) at 2021-08-06 05:07 PM PDT -ktlevesque19,2021-08-10T06:51:50Z,- ktlevesque19 commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-895774800) at 2021-08-09 11:51 PM PDT -ktlevesque19,2021-08-13T05:58:59Z,- ktlevesque19 commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-898210790) at 2021-08-12 10:58 PM PDT -ktlevesque19,2021-08-26T03:19:41Z,- ktlevesque19 commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-906061354) at 2021-08-25 08:19 PM PDT -ktlevesque19,2021-09-10T00:53:57Z,- ktlevesque19 assigned to issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-908498261) at 2021-09-09 05:53 PM PDT -ktlevesque19,2021-09-11T03:51:25Z,- ktlevesque19 commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-917333149) at 2021-09-10 08:51 PM PDT -ktlevesque19,2021-09-19T16:52:54Z,- ktlevesque19 commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-922503803) at 2021-09-19 09:52 AM PDT -ktlevesque19,2021-09-25T00:25:22Z,- ktlevesque19 commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-926980420) at 2021-09-24 05:25 PM PDT -ktlevesque19,2021-10-01T00:57:56Z,- ktlevesque19 assigned to issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-904676976) at 2021-09-30 05:57 PM PDT -ktlevesque19,2021-10-10T17:01:38Z,- ktlevesque19 commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-939516524) at 2021-10-10 10:01 AM PDT -ktlevesque19,2021-10-17T08:24:51Z,- ktlevesque19 commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-945072229) at 2021-10-17 01:24 AM PDT -ktlevesque19,2021-11-05T00:36:14Z,- ktlevesque19 assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-11-04 05:36 PM PDT -ktlevesque19,2021-11-11T23:36:49Z,- ktlevesque19 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-966701433) at 2021-11-11 03:36 PM PST -ktlevesque19,2021-12-09T00:14:33Z,- ktlevesque19 unassigned from issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-989331647) at 2021-12-08 04:14 PM PST -KuanHsienYEH,6254,SKILLS ISSUE -KuanHsienYEH,2024-02-06T04:19:04Z,- KuanHsienYEH opened issue: [6254](https://github.com/hackforla/website/issues/6254) at 2024-02-05 08:19 PM PST -KuanHsienYEH,2024-02-06T04:21:39Z,- KuanHsienYEH assigned to issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1928758030) at 2024-02-05 08:21 PM PST -KuanHsienYEH,2024-02-10T22:41:57Z,- KuanHsienYEH assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1936706395) at 2024-02-10 02:41 PM PST -KuanHsienYEH,2024-02-10T22:50:12Z,- KuanHsienYEH unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937320455) at 2024-02-10 02:50 PM PST -KuanHsienYEH,2024-02-10T22:54:39Z,- KuanHsienYEH assigned to issue: [5714](https://github.com/hackforla/website/issues/5714#issuecomment-1763829542) at 2024-02-10 02:54 PM PST -KuanHsienYEH,2024-02-10T23:16:54Z,- KuanHsienYEH commented on issue: [5714](https://github.com/hackforla/website/issues/5714#issuecomment-1937348875) at 2024-02-10 03:16 PM PST -KuanHsienYEH,2024-02-11T01:17:31Z,- KuanHsienYEH opened pull request: [6275](https://github.com/hackforla/website/pull/6275) at 2024-02-10 05:17 PM PST -KuanHsienYEH,2024-02-16T05:46:39Z,- KuanHsienYEH pull request merged: [6275](https://github.com/hackforla/website/pull/6275#event-11824656024) at 2024-02-15 09:46 PM PST -KuanHsienYEH,2024-02-16T23:25:05Z,- KuanHsienYEH assigned to issue: [6295](https://github.com/hackforla/website/issues/6295) at 2024-02-16 03:25 PM PST -KuanHsienYEH,2024-02-16T23:30:59Z,- KuanHsienYEH commented on issue: [6295](https://github.com/hackforla/website/issues/6295#issuecomment-1949481559) at 2024-02-16 03:30 PM PST -KuanHsienYEH,2024-02-17T00:55:51Z,- KuanHsienYEH opened pull request: [6306](https://github.com/hackforla/website/pull/6306) at 2024-02-16 04:55 PM PST -KuanHsienYEH,2024-02-17T01:00:52Z,- KuanHsienYEH pull request closed w/o merging: [6306](https://github.com/hackforla/website/pull/6306#event-11835016273) at 2024-02-16 05:00 PM PST -KuanHsienYEH,2024-02-17T02:10:58Z,- KuanHsienYEH opened pull request: [6308](https://github.com/hackforla/website/pull/6308) at 2024-02-16 06:10 PM PST -KuanHsienYEH,2024-02-18T00:22:14Z,- KuanHsienYEH commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1950622010) at 2024-02-17 04:22 PM PST -KuanHsienYEH,2024-02-19T05:48:17Z,- KuanHsienYEH commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1951744726) at 2024-02-18 09:48 PM PST -KuanHsienYEH,2024-02-19T17:09:54Z,- KuanHsienYEH pull request merged: [6308](https://github.com/hackforla/website/pull/6308#event-11852512362) at 2024-02-19 09:09 AM PST -KuanHsienYEH,2024-02-23T18:45:06Z,- KuanHsienYEH commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1961821836) at 2024-02-23 10:45 AM PST -KuanHsienYEH,2024-02-29T19:28:54Z,- KuanHsienYEH commented on pull request: [6400](https://github.com/hackforla/website/pull/6400#issuecomment-1971818492) at 2024-02-29 11:28 AM PST -KuanHsienYEH,2024-02-29T19:55:44Z,- KuanHsienYEH submitted pull request review: [6400](https://github.com/hackforla/website/pull/6400#pullrequestreview-1909758802) at 2024-02-29 11:55 AM PST -KuanHsienYEH,2024-03-14T22:03:37Z,- KuanHsienYEH submitted pull request review: [6461](https://github.com/hackforla/website/pull/6461#pullrequestreview-1937795001) at 2024-03-14 03:03 PM PDT -KuanHsienYEH,2024-03-14T22:28:11Z,- KuanHsienYEH assigned to issue: [6231](https://github.com/hackforla/website/issues/6231#issuecomment-1926365759) at 2024-03-14 03:28 PM PDT -KuanHsienYEH,2024-03-14T23:18:54Z,- KuanHsienYEH opened pull request: [6464](https://github.com/hackforla/website/pull/6464) at 2024-03-14 04:18 PM PDT -KuanHsienYEH,2024-03-14T23:22:38Z,- KuanHsienYEH pull request closed w/o merging: [6464](https://github.com/hackforla/website/pull/6464#event-12124995759) at 2024-03-14 04:22 PM PDT -KuanHsienYEH,2024-03-14T23:23:07Z,- KuanHsienYEH unassigned from issue: [6231](https://github.com/hackforla/website/issues/6231#issuecomment-1998586014) at 2024-03-14 04:23 PM PDT -kurikurichan,3991,SKILLS ISSUE -kurikurichan,3996,SKILLS ISSUE -kurikurichan,2023-02-17T03:09:58Z,- kurikurichan opened issue: [3991](https://github.com/hackforla/website/issues/3991) at 2023-02-16 07:09 PM PST -kurikurichan,2023-02-17T03:11:08Z,- kurikurichan assigned to issue: [3991](https://github.com/hackforla/website/issues/3991) at 2023-02-16 07:11 PM PST -kurikurichan,2023-02-17T08:21:05Z,- kurikurichan opened issue: [3996](https://github.com/hackforla/website/issues/3996) at 2023-02-17 12:21 AM PST -kurikurichan,2023-02-17T08:21:15Z,- kurikurichan assigned to issue: [3996](https://github.com/hackforla/website/issues/3996) at 2023-02-17 12:21 AM PST -kurikurichan,2023-02-22T23:32:45Z,- kurikurichan closed issue as completed: [3996](https://github.com/hackforla/website/issues/3996#event-8586361671) at 2023-02-22 03:32 PM PST -kurikurichan,2023-02-22T23:51:43Z,- kurikurichan assigned to issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1397926952) at 2023-02-22 03:51 PM PST -kurikurichan,2023-02-27T05:16:55Z,- kurikurichan commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1445722474) at 2023-02-26 09:16 PM PST -kurikurichan,2023-03-01T19:43:26Z,- kurikurichan opened pull request: [4080](https://github.com/hackforla/website/pull/4080) at 2023-03-01 11:43 AM PST -kurikurichan,2023-03-01T20:08:29Z,- kurikurichan commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1450782048) at 2023-03-01 12:08 PM PST -kurikurichan,2023-03-02T08:35:26Z,- kurikurichan commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1451488942) at 2023-03-02 12:35 AM PST -kurikurichan,2023-03-02T08:36:06Z,- kurikurichan pull request closed w/o merging: [4080](https://github.com/hackforla/website/pull/4080#event-8646626219) at 2023-03-02 12:36 AM PST -kurikurichan,2023-03-02T09:18:45Z,- kurikurichan opened pull request: [4089](https://github.com/hackforla/website/pull/4089) at 2023-03-02 01:18 AM PST -kurikurichan,2023-03-02T09:21:58Z,- kurikurichan pull request closed w/o merging: [4089](https://github.com/hackforla/website/pull/4089#event-8647073390) at 2023-03-02 01:21 AM PST -kurikurichan,2023-03-03T03:33:51Z,- kurikurichan opened pull request: [4095](https://github.com/hackforla/website/pull/4095) at 2023-03-02 07:33 PM PST -kurikurichan,2023-03-03T18:02:41Z,- kurikurichan opened pull request: [4102](https://github.com/hackforla/website/pull/4102) at 2023-03-03 10:02 AM PST -kurikurichan,2023-03-03T18:03:22Z,- kurikurichan pull request closed w/o merging: [4095](https://github.com/hackforla/website/pull/4095#event-8662235843) at 2023-03-03 10:03 AM PST -kurikurichan,2023-03-06T07:47:11Z,- kurikurichan commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1455626953) at 2023-03-05 11:47 PM PST -kurikurichan,2023-03-07T23:33:01Z,- kurikurichan assigned to issue: [3744](https://github.com/hackforla/website/issues/3744) at 2023-03-07 03:33 PM PST -kurikurichan,2023-03-12T18:19:22Z,- kurikurichan unassigned from issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1463381616) at 2023-03-12 11:19 AM PDT -kurikurichan,2023-03-12T19:56:47Z,- kurikurichan assigned to issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465285478) at 2023-03-12 12:56 PM PDT -kurikurichan,2023-03-19T18:31:18Z,- kurikurichan assigned to issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1461223307) at 2023-03-19 11:31 AM PDT -kurikurichan,2023-03-27T01:29:52Z,- kurikurichan unassigned from issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1475355262) at 2023-03-26 06:29 PM PDT -kurikurichan,2023-03-27T01:34:37Z,- kurikurichan unassigned from issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1482951990) at 2023-03-26 06:34 PM PDT -kurikurichan,2023-03-30T19:51:37Z,- kurikurichan unassigned from issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1490856320) at 2023-03-30 12:51 PM PDT -kurikurichan,2023-03-30T19:52:23Z,- kurikurichan pull request closed w/o merging: [4102](https://github.com/hackforla/website/pull/4102#event-8891313709) at 2023-03-30 12:52 PM PDT -kurikurichan,2023-04-07T20:13:21Z,- kurikurichan assigned to issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1499575444) at 2023-04-07 01:13 PM PDT -kurikurichan,2023-04-14T21:11:29Z,- kurikurichan commented on issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1509277274) at 2023-04-14 02:11 PM PDT -kurikurichan,2023-04-14T21:13:40Z,- kurikurichan commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1509278772) at 2023-04-14 02:13 PM PDT -kurikurichan,2023-04-14T21:17:41Z,- kurikurichan commented on issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1509282062) at 2023-04-14 02:17 PM PDT -kurikurichan,2023-04-14T21:23:44Z,- kurikurichan closed issue as completed: [3991](https://github.com/hackforla/website/issues/3991#event-9011872880) at 2023-04-14 02:23 PM PDT -kurikurichan,2023-04-14T21:57:26Z,- kurikurichan opened pull request: [4518](https://github.com/hackforla/website/pull/4518) at 2023-04-14 02:57 PM PDT -kurikurichan,2023-04-17T03:39:33Z,- kurikurichan commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1510649552) at 2023-04-16 08:39 PM PDT -kurikurichan,2023-04-19T17:09:56Z,- kurikurichan pull request merged: [4518](https://github.com/hackforla/website/pull/4518#event-9049025522) at 2023-04-19 10:09 AM PDT -kurikurichan,2023-04-19T23:32:57Z,- kurikurichan commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1515507865) at 2023-04-19 04:32 PM PDT -kurikurichan,2023-04-20T22:01:01Z,- kurikurichan assigned to issue: [3990](https://github.com/hackforla/website/issues/3990#issuecomment-1434023430) at 2023-04-20 03:01 PM PDT -kurikurichan,2023-04-23T08:44:59Z,- kurikurichan commented on issue: [3990](https://github.com/hackforla/website/issues/3990#issuecomment-1518996799) at 2023-04-23 01:44 AM PDT -kurikurichan,2023-04-28T21:50:02Z,- kurikurichan commented on issue: [3990](https://github.com/hackforla/website/issues/3990#issuecomment-1528127987) at 2023-04-28 02:50 PM PDT -kurikurichan,2023-04-28T22:03:50Z,- kurikurichan commented on issue: [3990](https://github.com/hackforla/website/issues/3990#issuecomment-1528139107) at 2023-04-28 03:03 PM PDT -kurikurichan,2023-05-12T02:12:06Z,- kurikurichan unassigned from issue: [3990](https://github.com/hackforla/website/issues/3990#event-9150542365) at 2023-05-11 07:12 PM PDT -kurikurichan,2023-05-12T02:21:47Z,- kurikurichan assigned to issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1502671608) at 2023-05-11 07:21 PM PDT -kurikurichan,2023-05-12T02:24:33Z,- kurikurichan commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1545014547) at 2023-05-11 07:24 PM PDT -kurikurichan,2023-05-26T20:53:52Z,- kurikurichan commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1564939392) at 2023-05-26 01:53 PM PDT -kurikurichan,2023-05-26T20:54:17Z,- kurikurichan unassigned from issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1564939392) at 2023-05-26 01:54 PM PDT -KwameTaylor,6812,SKILLS ISSUE -KwameTaylor,2024-05-03T21:03:39Z,- KwameTaylor assigned to issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2092435305) at 2024-05-03 02:03 PM PDT -KwameTaylor,2024-05-03T21:39:44Z,- KwameTaylor opened issue: [6812](https://github.com/hackforla/website/issues/6812) at 2024-05-03 02:39 PM PDT -KwameTaylor,2024-05-03T21:39:53Z,- KwameTaylor assigned to issue: [6812](https://github.com/hackforla/website/issues/6812) at 2024-05-03 02:39 PM PDT -KwameTaylor,2024-05-05T19:01:13Z,- KwameTaylor opened issue: [6820](https://github.com/hackforla/website/issues/6820) at 2024-05-05 12:01 PM PDT -KwameTaylor,2024-05-05T19:01:14Z,- KwameTaylor assigned to issue: [6820](https://github.com/hackforla/website/issues/6820) at 2024-05-05 12:01 PM PDT -KwameTaylor,2024-05-07T00:41:24Z,- KwameTaylor unassigned from issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2094913974) at 2024-05-06 05:41 PM PDT -KwameTaylor,2024-06-09T16:29:52Z,- KwameTaylor unassigned from issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2154228115) at 2024-06-09 09:29 AM PDT -kwangric,4169,SKILLS ISSUE -kwangric,2023-03-14T03:09:49Z,- kwangric opened issue: [4169](https://github.com/hackforla/website/issues/4169) at 2023-03-13 08:09 PM PDT -kwangric,2023-03-14T03:32:35Z,- kwangric assigned to issue: [4169](https://github.com/hackforla/website/issues/4169) at 2023-03-13 08:32 PM PDT -kwangric,2023-03-15T20:27:19Z,- kwangric assigned to issue: [3953](https://github.com/hackforla/website/issues/3953) at 2023-03-15 01:27 PM PDT -kwangric,2023-03-15T20:35:23Z,- kwangric commented on issue: [3953](https://github.com/hackforla/website/issues/3953#issuecomment-1470803547) at 2023-03-15 01:35 PM PDT -kwangric,2023-03-16T17:59:04Z,- kwangric opened pull request: [4195](https://github.com/hackforla/website/pull/4195) at 2023-03-16 10:59 AM PDT -kwangric,2023-03-17T02:59:20Z,- kwangric pull request merged: [4195](https://github.com/hackforla/website/pull/4195#event-8773791554) at 2023-03-16 07:59 PM PDT -kwangric,2023-03-17T17:22:14Z,- kwangric assigned to issue: [4145](https://github.com/hackforla/website/issues/4145) at 2023-03-17 10:22 AM PDT -kwangric,2023-03-17T17:24:10Z,- kwangric commented on issue: [4145](https://github.com/hackforla/website/issues/4145#issuecomment-1474168705) at 2023-03-17 10:24 AM PDT -kwangric,2023-03-17T17:44:05Z,- kwangric opened pull request: [4202](https://github.com/hackforla/website/pull/4202) at 2023-03-17 10:44 AM PDT -kwangric,2023-03-18T04:22:49Z,- kwangric commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1474688826) at 2023-03-17 09:22 PM PDT -kwangric,2023-03-20T05:30:57Z,- kwangric pull request merged: [4202](https://github.com/hackforla/website/pull/4202#event-8790364788) at 2023-03-19 10:30 PM PDT -kwangric,2023-03-21T04:34:55Z,- kwangric assigned to issue: [4220](https://github.com/hackforla/website/issues/4220) at 2023-03-20 09:34 PM PDT -kwangric,2023-03-21T04:36:18Z,- kwangric commented on issue: [4220](https://github.com/hackforla/website/issues/4220#issuecomment-1477269527) at 2023-03-20 09:36 PM PDT -kwangric,2023-03-21T17:19:47Z,- kwangric opened pull request: [4224](https://github.com/hackforla/website/pull/4224) at 2023-03-21 10:19 AM PDT -kwangric,2023-03-23T21:26:11Z,- kwangric pull request merged: [4224](https://github.com/hackforla/website/pull/4224#event-8832634684) at 2023-03-23 02:26 PM PDT -kwangric,2023-03-24T04:01:04Z,- kwangric assigned to issue: [4271](https://github.com/hackforla/website/issues/4271) at 2023-03-23 09:01 PM PDT -kwangric,2023-03-24T04:02:27Z,- kwangric commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1482216958) at 2023-03-23 09:02 PM PDT -kwangric,2023-03-27T18:40:25Z,- kwangric commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1485683210) at 2023-03-27 11:40 AM PDT -kwangric,2023-03-27T20:21:41Z,- kwangric submitted pull request review: [4295](https://github.com/hackforla/website/pull/4295#pullrequestreview-1359814667) at 2023-03-27 01:21 PM PDT -kwangric,2023-03-28T00:04:50Z,- kwangric commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1486020824) at 2023-03-27 05:04 PM PDT -kwangric,2023-03-31T15:35:53Z,- kwangric commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1492148223) at 2023-03-31 08:35 AM PDT -kwangric,2023-04-03T06:55:24Z,- kwangric commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1493778096) at 2023-04-02 11:55 PM PDT -kwangric,2023-04-05T02:41:56Z,- kwangric opened pull request: [4425](https://github.com/hackforla/website/pull/4425) at 2023-04-04 07:41 PM PDT -kwangric,2023-04-05T17:56:10Z,- kwangric commented on pull request: [4424](https://github.com/hackforla/website/pull/4424#issuecomment-1497893507) at 2023-04-05 10:56 AM PDT -kwangric,2023-04-07T01:10:07Z,- kwangric submitted pull request review: [4424](https://github.com/hackforla/website/pull/4424#pullrequestreview-1375726456) at 2023-04-06 06:10 PM PDT -kwangric,2023-04-07T04:03:35Z,- kwangric pull request merged: [4425](https://github.com/hackforla/website/pull/4425#event-8951300591) at 2023-04-06 09:03 PM PDT -kwangric,2023-04-14T21:18:41Z,- kwangric commented on pull request: [4516](https://github.com/hackforla/website/pull/4516#issuecomment-1509283774) at 2023-04-14 02:18 PM PDT -kwangric,2023-04-15T19:28:17Z,- kwangric submitted pull request review: [4516](https://github.com/hackforla/website/pull/4516#pullrequestreview-1386607314) at 2023-04-15 12:28 PM PDT -kwangric,2023-04-17T03:18:01Z,- kwangric commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1510636178) at 2023-04-16 08:18 PM PDT -kwangric,2023-04-17T21:38:48Z,- kwangric submitted pull request review: [4524](https://github.com/hackforla/website/pull/4524#pullrequestreview-1388982864) at 2023-04-17 02:38 PM PDT -kwangric,2023-04-20T16:15:42Z,- kwangric commented on pull request: [4549](https://github.com/hackforla/website/pull/4549#issuecomment-1516605936) at 2023-04-20 09:15 AM PDT -kwangric,2023-04-20T16:30:05Z,- kwangric submitted pull request review: [4549](https://github.com/hackforla/website/pull/4549#pullrequestreview-1394375626) at 2023-04-20 09:30 AM PDT -kwangric,2023-04-24T22:15:59Z,- kwangric commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1520898832) at 2023-04-24 03:15 PM PDT -kwangric,2023-04-28T18:46:41Z,- kwangric commented on pull request: [4576](https://github.com/hackforla/website/pull/4576#issuecomment-1527956228) at 2023-04-28 11:46 AM PDT -kwangric,2023-04-28T19:34:00Z,- kwangric submitted pull request review: [4576](https://github.com/hackforla/website/pull/4576#pullrequestreview-1406494769) at 2023-04-28 12:34 PM PDT -kwangric,2023-04-28T21:46:44Z,- kwangric commented on pull request: [4584](https://github.com/hackforla/website/pull/4584#issuecomment-1528125819) at 2023-04-28 02:46 PM PDT -kwangric,2023-04-28T21:50:23Z,- kwangric submitted pull request review: [4584](https://github.com/hackforla/website/pull/4584#pullrequestreview-1406637059) at 2023-04-28 02:50 PM PDT -kwangric,2023-04-30T17:07:04Z,- kwangric assigned to issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1507419944) at 2023-04-30 10:07 AM PDT -kwangric,2023-04-30T17:09:08Z,- kwangric commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1529082307) at 2023-04-30 10:09 AM PDT -kwangric,2023-05-07T17:46:46Z,- kwangric commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1537502753) at 2023-05-07 10:46 AM PDT -kwangric,2023-05-12T17:05:00Z,- kwangric commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1546038752) at 2023-05-12 10:05 AM PDT -kwangric,2023-05-13T16:42:13Z,- kwangric commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1546707415) at 2023-05-13 09:42 AM PDT -kwangric,2023-05-19T23:04:46Z,- kwangric commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1555359253) at 2023-05-19 04:04 PM PDT -kwangric,2023-05-27T03:41:32Z,- kwangric commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1565190328) at 2023-05-26 08:41 PM PDT -kwangric,2023-05-28T23:42:05Z,- kwangric commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1566307300) at 2023-05-28 04:42 PM PDT -kwangric,2023-06-01T02:25:16Z,- kwangric opened pull request: [4764](https://github.com/hackforla/website/pull/4764) at 2023-05-31 07:25 PM PDT -kwangric,2023-06-01T04:17:27Z,- kwangric commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1571311760) at 2023-05-31 09:17 PM PDT -kwangric,2023-06-05T23:56:29Z,- kwangric commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1577700117) at 2023-06-05 04:56 PM PDT -kwangric,2023-06-07T16:15:36Z,- kwangric commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1581143950) at 2023-06-07 09:15 AM PDT -kwangric,2023-06-08T21:45:08Z,- kwangric commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1583430739) at 2023-06-08 02:45 PM PDT -kwangric,2023-06-10T05:36:40Z,- kwangric commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1585495962) at 2023-06-09 10:36 PM PDT -kwangric,2023-06-14T22:49:10Z,- kwangric commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1592092127) at 2023-06-14 03:49 PM PDT -kwangric,2023-06-14T22:54:10Z,- kwangric commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1592097068) at 2023-06-14 03:54 PM PDT -kwangric,2023-06-20T05:02:30Z,- kwangric pull request merged: [4764](https://github.com/hackforla/website/pull/4764#event-9574970542) at 2023-06-19 10:02 PM PDT -kwangric,2023-06-20T15:52:30Z,- kwangric closed issue as completed: [4169](https://github.com/hackforla/website/issues/4169#event-9581427027) at 2023-06-20 08:52 AM PDT -kwangric,2023-07-12T02:14:59Z,- kwangric commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1631747229) at 2023-07-11 07:14 PM PDT -kwangric,2023-07-13T16:42:09Z,- kwangric submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1528856640) at 2023-07-13 09:42 AM PDT -kwangric,2023-07-14T17:23:08Z,- kwangric opened pull request: [4949](https://github.com/hackforla/website/pull/4949) at 2023-07-14 10:23 AM PDT -kwangric,2023-07-14T17:24:31Z,- kwangric pull request closed w/o merging: [4949](https://github.com/hackforla/website/pull/4949#event-9823994832) at 2023-07-14 10:24 AM PDT -kwangric,2023-07-20T20:28:00Z,- kwangric commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1644557748) at 2023-07-20 01:28 PM PDT -kwangric,2023-07-24T22:41:57Z,- kwangric commented on pull request: [5052](https://github.com/hackforla/website/pull/5052#issuecomment-1648721320) at 2023-07-24 03:41 PM PDT -kwangric,2023-07-24T22:53:56Z,- kwangric submitted pull request review: [5052](https://github.com/hackforla/website/pull/5052#pullrequestreview-1544394273) at 2023-07-24 03:53 PM PDT -kwangric,2023-07-25T01:01:38Z,- kwangric commented on pull request: [5052](https://github.com/hackforla/website/pull/5052#issuecomment-1648815868) at 2023-07-24 06:01 PM PDT -kwangric,2023-07-25T22:29:57Z,- kwangric commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1650649617) at 2023-07-25 03:29 PM PDT -kwangric,2023-07-26T00:33:24Z,- kwangric commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1650772540) at 2023-07-25 05:33 PM PDT -kwangric,2023-07-26T01:42:58Z,- kwangric commented on pull request: [5063](https://github.com/hackforla/website/pull/5063#issuecomment-1650841439) at 2023-07-25 06:42 PM PDT -kwangric,2023-07-26T02:23:26Z,- kwangric commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1650874483) at 2023-07-25 07:23 PM PDT -kwangric,2023-07-26T23:45:37Z,- kwangric closed issue by PR 5052: [4919](https://github.com/hackforla/website/issues/4919#event-9929784733) at 2023-07-26 04:45 PM PDT -kwangric,2023-07-27T00:02:07Z,- kwangric submitted pull request review: [5063](https://github.com/hackforla/website/pull/5063#pullrequestreview-1548782131) at 2023-07-26 05:02 PM PDT -kwangric,2023-07-27T00:12:11Z,- kwangric submitted pull request review: [5061](https://github.com/hackforla/website/pull/5061#pullrequestreview-1548795534) at 2023-07-26 05:12 PM PDT -kwangric,2023-07-27T20:53:48Z,- kwangric commented on pull request: [5093](https://github.com/hackforla/website/pull/5093#issuecomment-1654559531) at 2023-07-27 01:53 PM PDT -kwangric,2023-07-28T01:31:55Z,- kwangric submitted pull request review: [5093](https://github.com/hackforla/website/pull/5093#pullrequestreview-1551120738) at 2023-07-27 06:31 PM PDT -kwangric,2023-07-28T03:27:42Z,- kwangric submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1551283151) at 2023-07-27 08:27 PM PDT -kwangric,2023-07-30T19:24:36Z,- kwangric commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1657247017) at 2023-07-30 12:24 PM PDT -kwangric,2023-07-31T13:09:42Z,- kwangric commented on pull request: [5112](https://github.com/hackforla/website/pull/5112#issuecomment-1658343968) at 2023-07-31 06:09 AM PDT -kwangric,2023-07-31T13:27:54Z,- kwangric commented on pull request: [5117](https://github.com/hackforla/website/pull/5117#issuecomment-1658373137) at 2023-07-31 06:27 AM PDT -kwangric,2023-07-31T20:06:41Z,- kwangric commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659057527) at 2023-07-31 01:06 PM PDT -kwangric,2023-07-31T20:43:45Z,- kwangric commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659134864) at 2023-07-31 01:43 PM PDT -kwangric,2023-07-31T22:20:55Z,- kwangric submitted pull request review: [5117](https://github.com/hackforla/website/pull/5117#pullrequestreview-1555884293) at 2023-07-31 03:20 PM PDT -kwangric,2023-07-31T22:34:07Z,- kwangric submitted pull request review: [5120](https://github.com/hackforla/website/pull/5120#pullrequestreview-1555899966) at 2023-07-31 03:34 PM PDT -kwangric,2023-07-31T22:39:29Z,- kwangric closed issue by PR 5117: [5029](https://github.com/hackforla/website/issues/5029#event-9969813673) at 2023-07-31 03:39 PM PDT -kwangric,2023-07-31T23:29:33Z,- kwangric commented on pull request: [5104](https://github.com/hackforla/website/pull/5104#issuecomment-1659344997) at 2023-07-31 04:29 PM PDT -kwangric,2023-08-01T05:00:01Z,- kwangric commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1659569449) at 2023-07-31 10:00 PM PDT -kwangric,2023-08-03T14:32:22Z,- kwangric commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1664098728) at 2023-08-03 07:32 AM PDT -kwangric,2023-08-03T16:40:53Z,- kwangric commented on pull request: [5122](https://github.com/hackforla/website/pull/5122#issuecomment-1664303473) at 2023-08-03 09:40 AM PDT -kwangric,2023-08-04T02:17:42Z,- kwangric submitted pull request review: [5122](https://github.com/hackforla/website/pull/5122#pullrequestreview-1562082694) at 2023-08-03 07:17 PM PDT -kwangric,2023-08-04T02:24:20Z,- kwangric submitted pull request review: [5119](https://github.com/hackforla/website/pull/5119#pullrequestreview-1562086311) at 2023-08-03 07:24 PM PDT -kwangric,2023-08-04T02:26:49Z,- kwangric closed issue by PR 5119: [4812](https://github.com/hackforla/website/issues/4812#event-10004678467) at 2023-08-03 07:26 PM PDT -kwangric,2023-08-04T16:48:05Z,- kwangric commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1665905814) at 2023-08-04 09:48 AM PDT -kwangric,2023-08-04T21:47:07Z,- kwangric commented on pull request: [5141](https://github.com/hackforla/website/pull/5141#issuecomment-1666211361) at 2023-08-04 02:47 PM PDT -kwangric,2023-08-05T14:29:54Z,- kwangric commented on pull request: [5145](https://github.com/hackforla/website/pull/5145#issuecomment-1666521523) at 2023-08-05 07:29 AM PDT -kwangric,2023-08-06T00:05:17Z,- kwangric submitted pull request review: [5120](https://github.com/hackforla/website/pull/5120#pullrequestreview-1564034802) at 2023-08-05 05:05 PM PDT -kwangric,2023-08-06T01:32:22Z,- kwangric submitted pull request review: [5145](https://github.com/hackforla/website/pull/5145#pullrequestreview-1564043577) at 2023-08-05 06:32 PM PDT -kwangric,2023-08-06T16:30:28Z,- kwangric submitted pull request review: [5141](https://github.com/hackforla/website/pull/5141#pullrequestreview-1564175826) at 2023-08-06 09:30 AM PDT -kwangric,2023-08-06T16:30:49Z,- kwangric closed issue by PR 5141: [5136](https://github.com/hackforla/website/issues/5136#event-10017594756) at 2023-08-06 09:30 AM PDT -kwangric,2023-08-07T23:21:26Z,- kwangric submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1566263155) at 2023-08-07 04:21 PM PDT -kwangric,2023-08-11T00:13:10Z,- kwangric submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1572876960) at 2023-08-10 05:13 PM PDT -kwangric,2023-08-14T16:58:20Z,- kwangric closed issue by PR 5170: [5041](https://github.com/hackforla/website/issues/5041#event-10089162113) at 2023-08-14 09:58 AM PDT -kwangric,2023-08-14T19:02:34Z,- kwangric closed issue by PR 5183: [4810](https://github.com/hackforla/website/issues/4810#event-10090297330) at 2023-08-14 12:02 PM PDT -kwangric,2023-08-15T00:46:09Z,- kwangric submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1577836963) at 2023-08-14 05:46 PM PDT -kwangric,2023-08-15T01:07:43Z,- kwangric commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1678286939) at 2023-08-14 06:07 PM PDT -kwangric,2023-08-17T16:57:27Z,- kwangric closed issue by PR 5239: [5200](https://github.com/hackforla/website/issues/5200#event-10121766439) at 2023-08-17 09:57 AM PDT -kwangric,2023-08-17T19:50:21Z,- kwangric closed issue by PR 5203: [4248](https://github.com/hackforla/website/issues/4248#event-10123357028) at 2023-08-17 12:50 PM PDT -kwangric,2023-08-20T21:42:05Z,- kwangric submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1585964802) at 2023-08-20 02:42 PM PDT -kwangric,2023-08-21T03:21:38Z,- kwangric commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1685567493) at 2023-08-20 08:21 PM PDT -kwangric,2023-08-28T19:22:26Z,- kwangric closed issue by PR 5299: [5176](https://github.com/hackforla/website/issues/5176#event-10212828679) at 2023-08-28 12:22 PM PDT -kwangric,2023-08-28T19:24:56Z,- kwangric commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1696249697) at 2023-08-28 12:24 PM PDT -kwangric,2023-08-31T13:44:43Z,- kwangric commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1701068235) at 2023-08-31 06:44 AM PDT -kwangric,2023-09-07T23:28:37Z,- kwangric submitted pull request review: [5298](https://github.com/hackforla/website/pull/5298#pullrequestreview-1616366071) at 2023-09-07 04:28 PM PDT -kwangric,2023-09-15T17:54:50Z,- kwangric closed issue by PR 5522: [5409](https://github.com/hackforla/website/issues/5409#event-10386087885) at 2023-09-15 10:54 AM PDT -kwangric,2023-09-18T14:25:11Z,- kwangric commented on pull request: [5538](https://github.com/hackforla/website/pull/5538#issuecomment-1723534568) at 2023-09-18 07:25 AM PDT -kwangric,2023-09-18T14:25:53Z,- kwangric commented on pull request: [5537](https://github.com/hackforla/website/pull/5537#issuecomment-1723535949) at 2023-09-18 07:25 AM PDT -kwangric,2023-09-18T14:26:23Z,- kwangric commented on pull request: [5550](https://github.com/hackforla/website/pull/5550#issuecomment-1723536894) at 2023-09-18 07:26 AM PDT -kwangric,2023-09-18T14:31:24Z,- kwangric commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1723548640) at 2023-09-18 07:31 AM PDT -kwangric,2023-09-18T14:49:52Z,- kwangric commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1723603259) at 2023-09-18 07:49 AM PDT -kwangric,2023-09-18T16:09:10Z,- kwangric submitted pull request review: [5537](https://github.com/hackforla/website/pull/5537#pullrequestreview-1631451736) at 2023-09-18 09:09 AM PDT -kwangric,2023-09-18T16:11:22Z,- kwangric submitted pull request review: [5538](https://github.com/hackforla/website/pull/5538#pullrequestreview-1631455358) at 2023-09-18 09:11 AM PDT -kwangric,2023-09-18T16:22:08Z,- kwangric submitted pull request review: [5550](https://github.com/hackforla/website/pull/5550#pullrequestreview-1631478015) at 2023-09-18 09:22 AM PDT -kwangric,2023-09-18T19:47:59Z,- kwangric closed issue by PR 5537: [5429](https://github.com/hackforla/website/issues/5429#event-10402269416) at 2023-09-18 12:47 PM PDT -kwangric,2023-09-19T02:59:28Z,- kwangric closed issue by PR 5543: [5426](https://github.com/hackforla/website/issues/5426#event-10405162418) at 2023-09-18 07:59 PM PDT -kwangric,2023-09-19T14:32:58Z,- kwangric submitted pull request review: [5556](https://github.com/hackforla/website/pull/5556#pullrequestreview-1633461002) at 2023-09-19 07:32 AM PDT -kwangric,2023-09-19T15:51:36Z,- kwangric submitted pull request review: [5538](https://github.com/hackforla/website/pull/5538#pullrequestreview-1633642901) at 2023-09-19 08:51 AM PDT -kwangric,2023-09-20T14:03:55Z,- kwangric closed issue by PR 5538: [5341](https://github.com/hackforla/website/issues/5341#event-10423741389) at 2023-09-20 07:03 AM PDT -kwangric,2023-09-20T14:05:11Z,- kwangric closed issue by PR 5413: [4456](https://github.com/hackforla/website/issues/4456#event-10423758775) at 2023-09-20 07:05 AM PDT -kwangric,2023-09-22T00:02:59Z,- kwangric submitted pull request review: [5298](https://github.com/hackforla/website/pull/5298#pullrequestreview-1638888704) at 2023-09-21 05:02 PM PDT -kwangric,2023-09-27T19:21:45Z,- kwangric closed issue by PR 5585: [5388](https://github.com/hackforla/website/issues/5388#event-10491353101) at 2023-09-27 12:21 PM PDT -kwangric,2023-09-29T14:57:57Z,- kwangric closed issue by PR 5576: [5508](https://github.com/hackforla/website/issues/5508#event-10512430685) at 2023-09-29 07:57 AM PDT -kwangric,2023-09-29T15:01:56Z,- kwangric closed issue by PR 5565: [5505](https://github.com/hackforla/website/issues/5505#event-10512470695) at 2023-09-29 08:01 AM PDT -kwangric,2023-09-29T17:42:09Z,- kwangric closed issue by PR 5551: [5342](https://github.com/hackforla/website/issues/5342#event-10513946797) at 2023-09-29 10:42 AM PDT -kwangric,2023-09-29T17:42:52Z,- kwangric commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1741271482) at 2023-09-29 10:42 AM PDT -kwangric,2023-10-02T17:26:34Z,- kwangric commented on issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1743447532) at 2023-10-02 10:26 AM PDT -kwangric,2023-10-04T02:18:27Z,- kwangric commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1746026181) at 2023-10-03 07:18 PM PDT -kwangric,2023-10-04T14:03:05Z,- kwangric commented on pull request: [5648](https://github.com/hackforla/website/pull/5648#issuecomment-1746945446) at 2023-10-04 07:03 AM PDT -kwangric,2023-10-04T14:04:31Z,- kwangric closed issue by PR 5646: [5366](https://github.com/hackforla/website/issues/5366#event-10551611808) at 2023-10-04 07:04 AM PDT -kwangric,2023-10-04T14:20:31Z,- kwangric commented on pull request: [5645](https://github.com/hackforla/website/pull/5645#issuecomment-1746979024) at 2023-10-04 07:20 AM PDT -kwangric,2023-10-04T14:39:15Z,- kwangric submitted pull request review: [5648](https://github.com/hackforla/website/pull/5648#pullrequestreview-1657708072) at 2023-10-04 07:39 AM PDT -kwangric,2023-10-05T00:15:57Z,- kwangric closed issue by PR 5645: [5447](https://github.com/hackforla/website/issues/5447#event-10556854938) at 2023-10-04 05:15 PM PDT -kwangric,2023-10-07T17:30:31Z,- kwangric commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1751777096) at 2023-10-07 10:30 AM PDT -kwangric,2023-10-09T17:21:39Z,- kwangric closed issue by PR 5672: [5624](https://github.com/hackforla/website/issues/5624#event-10593815653) at 2023-10-09 10:21 AM PDT -kwangric,2023-10-09T19:43:18Z,- kwangric commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1753618198) at 2023-10-09 12:43 PM PDT -kwangric,2023-10-16T17:11:26Z,- kwangric commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1764918439) at 2023-10-16 10:11 AM PDT -kwangric,2023-10-16T18:59:45Z,- kwangric commented on pull request: [5718](https://github.com/hackforla/website/pull/5718#issuecomment-1765102874) at 2023-10-16 11:59 AM PDT -kwangric,2023-10-16T19:13:49Z,- kwangric submitted pull request review: [5718](https://github.com/hackforla/website/pull/5718#pullrequestreview-1680793130) at 2023-10-16 12:13 PM PDT -kwangric,2023-10-18T14:19:22Z,- kwangric closed issue by PR 5719: [5675](https://github.com/hackforla/website/issues/5675#event-10693815655) at 2023-10-18 07:19 AM PDT -kwangric,2023-10-20T13:39:06Z,- kwangric commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1772759144) at 2023-10-20 06:39 AM PDT -kwangric,2023-10-20T13:50:56Z,- kwangric submitted pull request review: [5732](https://github.com/hackforla/website/pull/5732#pullrequestreview-1690090587) at 2023-10-20 06:50 AM PDT -kwangric,2023-10-20T13:51:40Z,- kwangric closed issue by PR 5732: [5370](https://github.com/hackforla/website/issues/5370#event-10724811503) at 2023-10-20 06:51 AM PDT -kwangric,2023-10-23T20:23:42Z,- kwangric commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1775962166) at 2023-10-23 01:23 PM PDT -kwangric,2023-10-23T20:38:45Z,- kwangric closed issue by PR 5731: [5371](https://github.com/hackforla/website/issues/5371#event-10746017830) at 2023-10-23 01:38 PM PDT -kwangric,2023-10-25T02:33:41Z,- kwangric closed issue by PR 5768: [5713](https://github.com/hackforla/website/issues/5713#event-10761421514) at 2023-10-24 07:33 PM PDT -kwangric,2023-10-26T16:55:41Z,- kwangric closed issue by PR 5771: [5763](https://github.com/hackforla/website/issues/5763#event-10782519689) at 2023-10-26 09:55 AM PDT -kwangric,2023-10-27T11:08:33Z,- kwangric commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1782727382) at 2023-10-27 04:08 AM PDT -kwangric,2023-10-27T17:30:39Z,- kwangric commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1783270420) at 2023-10-27 10:30 AM PDT -kwangric,2023-10-27T17:30:40Z,- kwangric closed issue as completed: [5528](https://github.com/hackforla/website/issues/5528#event-10794196162) at 2023-10-27 10:30 AM PDT -kwangric,2023-10-30T20:41:18Z,- kwangric commented on pull request: [5795](https://github.com/hackforla/website/pull/5795#issuecomment-1786004274) at 2023-10-30 01:41 PM PDT -kwangric,2023-11-02T13:38:09Z,- kwangric commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1790750304) at 2023-11-02 06:38 AM PDT -kwangric,2023-11-03T02:36:41Z,- kwangric closed issue by PR 5794: [5753](https://github.com/hackforla/website/issues/5753#event-10850945430) at 2023-11-02 07:36 PM PDT -kwangric,2023-11-03T18:17:19Z,- kwangric commented on pull request: [5828](https://github.com/hackforla/website/pull/5828#issuecomment-1792921143) at 2023-11-03 11:17 AM PDT -kwangric,2023-11-06T18:05:38Z,- kwangric closed issue by PR 5853: [5852](https://github.com/hackforla/website/issues/5852#event-10876695636) at 2023-11-06 10:05 AM PST -kwangric,2023-11-06T19:49:58Z,- kwangric commented on pull request: [5859](https://github.com/hackforla/website/pull/5859#issuecomment-1796226395) at 2023-11-06 11:49 AM PST -kwangric,2023-11-08T14:56:29Z,- kwangric commented on pull request: [5835](https://github.com/hackforla/website/pull/5835#issuecomment-1802055302) at 2023-11-08 06:56 AM PST -kwangric,2023-11-09T01:09:23Z,- kwangric closed issue by PR 5877: [5856](https://github.com/hackforla/website/issues/5856#event-10907350038) at 2023-11-08 05:09 PM PST -kwangric,2023-11-10T14:39:33Z,- kwangric submitted pull request review: [5884](https://github.com/hackforla/website/pull/5884#pullrequestreview-1724930913) at 2023-11-10 06:39 AM PST -kwangric,2023-11-10T14:57:41Z,- kwangric submitted pull request review: [5886](https://github.com/hackforla/website/pull/5886#pullrequestreview-1724966251) at 2023-11-10 06:57 AM PST -kwangric,2023-11-10T14:58:01Z,- kwangric closed issue by PR 5886: [5755](https://github.com/hackforla/website/issues/5755#event-10926155191) at 2023-11-10 06:58 AM PST -kwangric,2023-11-10T18:28:16Z,- kwangric commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1806216857) at 2023-11-10 10:28 AM PST -kwangric,2023-11-13T21:06:49Z,- kwangric commented on pull request: [5894](https://github.com/hackforla/website/pull/5894#issuecomment-1809122127) at 2023-11-13 01:06 PM PST -kwangric,2023-11-13T21:08:07Z,- kwangric closed issue by PR 5835: [5760](https://github.com/hackforla/website/issues/5760#event-10947109839) at 2023-11-13 01:08 PM PST -kwangric,2023-11-15T01:36:40Z,- kwangric closed issue by PR 5894: [5752](https://github.com/hackforla/website/issues/5752#event-10961867551) at 2023-11-14 05:36 PM PST -kwangric,2023-11-15T16:39:17Z,- kwangric closed issue by PR 5905: [5652](https://github.com/hackforla/website/issues/5652#event-10969733774) at 2023-11-15 08:39 AM PST -kwangric,2023-11-17T21:56:36Z,- kwangric submitted pull request review: [5911](https://github.com/hackforla/website/pull/5911#pullrequestreview-1738001563) at 2023-11-17 01:56 PM PST -kwangric,2023-11-17T21:56:53Z,- kwangric closed issue by PR 5911: [5855](https://github.com/hackforla/website/issues/5855#event-10999505285) at 2023-11-17 01:56 PM PST -kwangric,2023-11-17T21:57:41Z,- kwangric closed issue by PR 5907: [5712](https://github.com/hackforla/website/issues/5712#event-10999511555) at 2023-11-17 01:57 PM PST -kwangric,2023-11-20T18:40:43Z,- kwangric closed issue by PR 5908: [5770](https://github.com/hackforla/website/issues/5770#event-11015419180) at 2023-11-20 10:40 AM PST -kwangric,2023-11-20T18:57:07Z,- kwangric closed issue by PR 5922: [5921](https://github.com/hackforla/website/issues/5921#event-11015548399) at 2023-11-20 10:57 AM PST -kwangric,2023-11-20T21:22:42Z,- kwangric commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1819823289) at 2023-11-20 01:22 PM PST -kwangric,2023-11-22T21:28:09Z,- kwangric commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1823533431) at 2023-11-22 01:28 PM PST -kwangric,2023-11-22T21:29:27Z,- kwangric closed issue by PR 5927: [5919](https://github.com/hackforla/website/issues/5919#event-11041390735) at 2023-11-22 01:29 PM PST -kwangric,2023-11-22T21:30:16Z,- kwangric closed issue by PR 5925: [5804](https://github.com/hackforla/website/issues/5804#event-11041395869) at 2023-11-22 01:30 PM PST -kwangric,2023-11-22T21:36:40Z,- kwangric closed issue by PR 5918: [5857](https://github.com/hackforla/website/issues/5857#event-11041437878) at 2023-11-22 01:36 PM PST -kwangric,2023-11-22T21:52:00Z,- kwangric closed issue by PR 5915: [5589](https://github.com/hackforla/website/issues/5589#event-11041525158) at 2023-11-22 01:52 PM PST -kwangric,2023-11-22T21:55:23Z,- kwangric commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1823558398) at 2023-11-22 01:55 PM PST -kwangric,2023-11-22T23:32:57Z,- kwangric commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1823626605) at 2023-11-22 03:32 PM PST -kwangric,2023-11-27T01:55:37Z,- kwangric closed issue by PR 5914: [5807](https://github.com/hackforla/website/issues/5807#event-11065015482) at 2023-11-26 05:55 PM PST -kwangric,2023-11-30T00:52:18Z,- kwangric submitted pull request review: [5932](https://github.com/hackforla/website/pull/5932#pullrequestreview-1756456870) at 2023-11-29 04:52 PM PST -kwangric,2023-11-30T14:51:20Z,- kwangric closed issue by PR 5945: [5511](https://github.com/hackforla/website/issues/5511#event-11110124349) at 2023-11-30 06:51 AM PST -kwangric,2023-11-30T15:06:00Z,- kwangric closed issue by PR 5940: [5706](https://github.com/hackforla/website/issues/5706#event-11110315890) at 2023-11-30 07:06 AM PST -kwangric,2023-12-02T05:03:28Z,- kwangric submitted pull request review: [5932](https://github.com/hackforla/website/pull/5932#pullrequestreview-1760780333) at 2023-12-01 09:03 PM PST -kwangric,2023-12-02T15:09:06Z,- kwangric commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837177555) at 2023-12-02 07:09 AM PST -kwangric,2023-12-02T15:11:14Z,- kwangric commented on pull request: [5952](https://github.com/hackforla/website/pull/5952#issuecomment-1837178326) at 2023-12-02 07:11 AM PST -kwangric,2023-12-02T15:12:28Z,- kwangric commented on pull request: [5951](https://github.com/hackforla/website/pull/5951#issuecomment-1837178576) at 2023-12-02 07:12 AM PST -kwangric,2023-12-02T17:05:05Z,- kwangric commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837204088) at 2023-12-02 09:05 AM PST -kwangric,2023-12-02T18:38:02Z,- kwangric submitted pull request review: [5952](https://github.com/hackforla/website/pull/5952#pullrequestreview-1760937319) at 2023-12-02 10:38 AM PST -kwangric,2023-12-02T18:38:12Z,- kwangric closed issue by PR 5952: [5716](https://github.com/hackforla/website/issues/5716#event-11129555357) at 2023-12-02 10:38 AM PST -kwangric,2023-12-02T18:41:37Z,- kwangric submitted pull request review: [5951](https://github.com/hackforla/website/pull/5951#pullrequestreview-1760937640) at 2023-12-02 10:41 AM PST -kwangric,2023-12-02T18:42:03Z,- kwangric closed issue by PR 5951: [5798](https://github.com/hackforla/website/issues/5798#event-11129560787) at 2023-12-02 10:42 AM PST -kwangric,2023-12-05T23:31:08Z,- kwangric submitted pull request review: [5932](https://github.com/hackforla/website/pull/5932#pullrequestreview-1766295798) at 2023-12-05 03:31 PM PST -kwangric,2023-12-09T19:38:32Z,- kwangric closed issue by PR 5950: [5674](https://github.com/hackforla/website/issues/5674#event-11201318363) at 2023-12-09 11:38 AM PST -kwangric,2023-12-13T17:16:29Z,- kwangric commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1854396749) at 2023-12-13 09:16 AM PST -kwangric,2023-12-15T14:42:54Z,- kwangric closed issue by PR 6003: [5819](https://github.com/hackforla/website/issues/5819#event-11260386456) at 2023-12-15 06:42 AM PST -kwangric,2023-12-18T22:36:19Z,- kwangric closed issue by PR 6010: [5684](https://github.com/hackforla/website/issues/5684#event-11282377437) at 2023-12-18 02:36 PM PST -kwangric,2023-12-20T14:59:07Z,- kwangric closed issue by PR 6004: [5848](https://github.com/hackforla/website/issues/5848#event-11303743606) at 2023-12-20 06:59 AM PST -kwangric,2024-01-03T14:58:41Z,- kwangric closed issue by PR 5942: [5333](https://github.com/hackforla/website/issues/5333#event-11380099279) at 2024-01-03 06:58 AM PST -kwangric,2024-01-04T15:30:45Z,- kwangric submitted pull request review: [6056](https://github.com/hackforla/website/pull/6056#pullrequestreview-1804410886) at 2024-01-04 07:30 AM PST -kwangric,2024-01-04T15:31:09Z,- kwangric closed issue by PR 6056: [5934](https://github.com/hackforla/website/issues/5934#event-11391428410) at 2024-01-04 07:31 AM PST -kwangric,2024-01-08T21:33:09Z,- kwangric submitted pull request review: [6076](https://github.com/hackforla/website/pull/6076#pullrequestreview-1810061065) at 2024-01-08 01:33 PM PST -kwangric,2024-01-08T21:35:26Z,- kwangric submitted pull request review: [6077](https://github.com/hackforla/website/pull/6077#pullrequestreview-1810064070) at 2024-01-08 01:35 PM PST -kwangric,2024-01-08T21:40:32Z,- kwangric submitted pull request review: [6075](https://github.com/hackforla/website/pull/6075#pullrequestreview-1810071916) at 2024-01-08 01:40 PM PST -kwangric,2024-01-08T21:44:04Z,- kwangric submitted pull request review: [6073](https://github.com/hackforla/website/pull/6073#pullrequestreview-1810076193) at 2024-01-08 01:44 PM PST -kwangric,2024-01-08T21:45:09Z,- kwangric closed issue by PR 6073: [5958](https://github.com/hackforla/website/issues/5958#event-11422864949) at 2024-01-08 01:45 PM PST -kwangric,2024-01-08T21:50:13Z,- kwangric submitted pull request review: [6068](https://github.com/hackforla/website/pull/6068#pullrequestreview-1810083634) at 2024-01-08 01:50 PM PST -kwangric,2024-01-08T21:50:48Z,- kwangric closed issue by PR 6068: [6019](https://github.com/hackforla/website/issues/6019#event-11422909463) at 2024-01-08 01:50 PM PST -kwangric,2024-01-15T20:23:58Z,- kwangric closed issue by PR 6098: [5830](https://github.com/hackforla/website/issues/5830#event-11491882342) at 2024-01-15 12:23 PM PST -kwangric,2024-01-15T20:42:06Z,- kwangric commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1892743999) at 2024-01-15 12:42 PM PST -kwangric,2024-01-15T20:54:07Z,- kwangric submitted pull request review: [6099](https://github.com/hackforla/website/pull/6099#pullrequestreview-1822245810) at 2024-01-15 12:54 PM PST -kwangric,2024-01-19T14:51:00Z,- kwangric submitted pull request review: [6132](https://github.com/hackforla/website/pull/6132#pullrequestreview-1832915046) at 2024-01-19 06:51 AM PST -kwangric,2024-01-19T14:51:32Z,- kwangric closed issue by PR 6132: [6106](https://github.com/hackforla/website/issues/6106#event-11538531999) at 2024-01-19 06:51 AM PST -kwangric,2024-01-22T21:40:20Z,- kwangric commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1904867655) at 2024-01-22 01:40 PM PST -kwangric,2024-01-22T21:42:52Z,- kwangric commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1904871279) at 2024-01-22 01:42 PM PST -kwangric,2024-01-25T01:39:33Z,- kwangric closed issue by PR 6133: [6064](https://github.com/hackforla/website/issues/6064#event-11591486939) at 2024-01-24 05:39 PM PST -kwangric,2024-02-03T19:10:52Z,- kwangric closed issue by PR 6207: [6046](https://github.com/hackforla/website/issues/6046#event-11693315188) at 2024-02-03 11:10 AM PST -kwangric,2024-02-03T19:23:21Z,- kwangric closed issue by PR 6210: [6047](https://github.com/hackforla/website/issues/6047#event-11693334697) at 2024-02-03 11:23 AM PST -kwangric,2024-02-03T19:25:52Z,- kwangric commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1925435456) at 2024-02-03 11:25 AM PST -kwangric,2024-02-05T19:39:35Z,- kwangric closed issue by PR 6214: [6048](https://github.com/hackforla/website/issues/6048#event-11709057474) at 2024-02-05 11:39 AM PST -kyle-foral,5609,SKILLS ISSUE -kyle-foral,2023-09-27T03:06:46Z,- kyle-foral opened issue: [5609](https://github.com/hackforla/website/issues/5609) at 2023-09-26 08:06 PM PDT -kyle-foral,2023-09-27T03:07:02Z,- kyle-foral assigned to issue: [5609](https://github.com/hackforla/website/issues/5609) at 2023-09-26 08:07 PM PDT -KyleA99,5567,SKILLS ISSUE -KyleA99,2023-09-21T06:15:20Z,- KyleA99 assigned to issue: [5505](https://github.com/hackforla/website/issues/5505#issuecomment-1716258428) at 2023-09-20 11:15 PM PDT -KyleA99,2023-09-21T07:00:35Z,- KyleA99 commented on issue: [5505](https://github.com/hackforla/website/issues/5505#issuecomment-1728968396) at 2023-09-21 12:00 AM PDT -KyleA99,2023-09-21T07:18:30Z,- KyleA99 opened pull request: [5565](https://github.com/hackforla/website/pull/5565) at 2023-09-21 12:18 AM PDT -KyleA99,2023-09-21T07:30:05Z,- KyleA99 opened issue: [5567](https://github.com/hackforla/website/issues/5567) at 2023-09-21 12:30 AM PDT -KyleA99,2023-09-21T07:30:06Z,- KyleA99 assigned to issue: [5567](https://github.com/hackforla/website/issues/5567) at 2023-09-21 12:30 AM PDT -KyleA99,2023-09-21T07:30:20Z,- KyleA99 closed issue as completed: [5567](https://github.com/hackforla/website/issues/5567#event-10431284884) at 2023-09-21 12:30 AM PDT -KyleA99,2023-09-24T04:08:17Z,- KyleA99 commented on pull request: [5563](https://github.com/hackforla/website/pull/5563#issuecomment-1732471452) at 2023-09-23 09:08 PM PDT -KyleA99,2023-09-24T22:30:17Z,- KyleA99 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732684836) at 2023-09-24 03:30 PM PDT -KyleA99,2023-09-24T22:41:01Z,- KyleA99 submitted pull request review: [5563](https://github.com/hackforla/website/pull/5563#pullrequestreview-1641131082) at 2023-09-24 03:41 PM PDT -KyleA99,2023-09-25T01:42:25Z,- KyleA99 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732776891) at 2023-09-24 06:42 PM PDT -KyleA99,2023-09-25T04:57:39Z,- KyleA99 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732909016) at 2023-09-24 09:57 PM PDT -KyleA99,2023-09-25T19:49:09Z,- KyleA99 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1734366168) at 2023-09-25 12:49 PM PDT -KyleA99,2023-09-25T20:08:42Z,- KyleA99 commented on pull request: [5563](https://github.com/hackforla/website/pull/5563#issuecomment-1734391830) at 2023-09-25 01:08 PM PDT -KyleA99,2023-09-28T03:49:54Z,- KyleA99 submitted pull request review: [5563](https://github.com/hackforla/website/pull/5563#pullrequestreview-1647843313) at 2023-09-27 08:49 PM PDT -KyleA99,2023-09-29T15:01:54Z,- KyleA99 pull request merged: [5565](https://github.com/hackforla/website/pull/5565#event-10512470451) at 2023-09-29 08:01 AM PDT -KyleA99,2023-09-30T04:29:28Z,- KyleA99 assigned to issue: [5597](https://github.com/hackforla/website/issues/5597) at 2023-09-29 09:29 PM PDT -KyleA99,2023-09-30T04:34:59Z,- KyleA99 commented on issue: [5597](https://github.com/hackforla/website/issues/5597#issuecomment-1741674885) at 2023-09-29 09:34 PM PDT -KyleA99,2023-10-05T02:51:39Z,- KyleA99 commented on issue: [5597](https://github.com/hackforla/website/issues/5597#issuecomment-1747957428) at 2023-10-04 07:51 PM PDT -KyleA99,2023-10-07T03:32:31Z,- KyleA99 commented on pull request: [5665](https://github.com/hackforla/website/pull/5665#issuecomment-1751584554) at 2023-10-06 08:32 PM PDT -KyleA99,2023-10-07T23:06:28Z,- KyleA99 submitted pull request review: [5665](https://github.com/hackforla/website/pull/5665#pullrequestreview-1663119735) at 2023-10-07 04:06 PM PDT -KyleA99,2023-10-10T08:39:28Z,- KyleA99 commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1754703338) at 2023-10-10 01:39 AM PDT -KyleA99,2023-10-10T18:13:58Z,- KyleA99 submitted pull request review: [5692](https://github.com/hackforla/website/pull/5692#pullrequestreview-1668535607) at 2023-10-10 11:13 AM PDT -KyleA99,2023-10-11T23:37:04Z,- KyleA99 assigned to issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-1240951137) at 2023-10-11 04:37 PM PDT -KyleA99,2023-10-12T02:45:06Z,- KyleA99 unassigned from issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-1758696153) at 2023-10-11 07:45 PM PDT -KyleA99,2023-10-12T02:47:06Z,- KyleA99 commented on issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-1758827760) at 2023-10-11 07:47 PM PDT -KyleA99,2023-10-12T03:32:48Z,- KyleA99 commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1758858395) at 2023-10-11 08:32 PM PDT -KyleA99,2023-10-13T23:36:06Z,- KyleA99 commented on pull request: [5704](https://github.com/hackforla/website/pull/5704#issuecomment-1762377177) at 2023-10-13 04:36 PM PDT -KyleA99,2023-10-15T01:59:29Z,- KyleA99 commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1763234952) at 2023-10-14 06:59 PM PDT -KyleA99,2023-10-15T02:57:15Z,- KyleA99 submitted pull request review: [5704](https://github.com/hackforla/website/pull/5704#pullrequestreview-1678596087) at 2023-10-14 07:57 PM PDT -KyleA99,2023-10-15T17:52:25Z,- KyleA99 assigned to issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1746317971) at 2023-10-15 10:52 AM PDT -KyleA99,2023-10-18T22:09:57Z,- KyleA99 commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1769468243) at 2023-10-18 03:09 PM PDT -KyleA99,2023-10-18T22:45:05Z,- KyleA99 commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1769517358) at 2023-10-18 03:45 PM PDT -KyleA99,2023-10-19T05:47:43Z,- KyleA99 commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1770094958) at 2023-10-18 10:47 PM PDT -KyleA99,2023-10-19T11:34:06Z,- KyleA99 submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1687440210) at 2023-10-19 04:34 AM PDT -KyleA99,2023-10-21T08:11:21Z,- KyleA99 commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1773713669) at 2023-10-21 01:11 AM PDT -KyleA99,2023-10-22T05:06:41Z,- KyleA99 opened issue: [5749](https://github.com/hackforla/website/issues/5749) at 2023-10-21 10:06 PM PDT -KyleA99,2023-10-22T05:06:42Z,- KyleA99 assigned to issue: [5749](https://github.com/hackforla/website/issues/5749) at 2023-10-21 10:06 PM PDT -KyleA99,2023-10-22T06:01:41Z,- KyleA99 opened pull request: [5750](https://github.com/hackforla/website/pull/5750) at 2023-10-21 11:01 PM PDT -KyleA99,2023-10-22T06:06:08Z,- KyleA99 commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1774004984) at 2023-10-21 11:06 PM PDT -KyleA99,2023-10-22T09:25:56Z,- KyleA99 commented on pull request: [5750](https://github.com/hackforla/website/pull/5750#issuecomment-1774043565) at 2023-10-22 02:25 AM PDT -KyleA99,2023-10-22T09:25:56Z,- KyleA99 pull request closed w/o merging: [5750](https://github.com/hackforla/website/pull/5750#event-10732926767) at 2023-10-22 02:25 AM PDT -KyleA99,2023-10-22T09:28:11Z,- KyleA99 closed issue as completed: [5749](https://github.com/hackforla/website/issues/5749#event-10732929922) at 2023-10-22 02:28 AM PDT -KyleA99,2023-10-22T14:42:02Z,- KyleA99 submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1691445943) at 2023-10-22 07:42 AM PDT -KyleA99,2023-10-24T01:21:52Z,- KyleA99 commented on pull request: [5768](https://github.com/hackforla/website/pull/5768#issuecomment-1776314100) at 2023-10-23 06:21 PM PDT -KyleA99,2023-10-24T07:38:41Z,- KyleA99 submitted pull request review: [5768](https://github.com/hackforla/website/pull/5768#pullrequestreview-1694199269) at 2023-10-24 12:38 AM PDT -KyleA99,2023-10-28T00:59:57Z,- KyleA99 commented on pull request: [5789](https://github.com/hackforla/website/pull/5789#issuecomment-1783645620) at 2023-10-27 05:59 PM PDT -KyleA99,2023-10-29T02:14:04Z,- KyleA99 submitted pull request review: [5789](https://github.com/hackforla/website/pull/5789#pullrequestreview-1702887488) at 2023-10-28 07:14 PM PDT -KyleA99,2023-10-29T16:24:03Z,- KyleA99 submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1702990395) at 2023-10-29 09:24 AM PDT -KyleA99,2023-10-29T17:06:32Z,- KyleA99 commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1784169333) at 2023-10-29 10:06 AM PDT -KyleA99,2023-10-29T17:07:54Z,- KyleA99 submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1702996848) at 2023-10-29 10:07 AM PDT -KyleA99,2023-10-30T10:28:28Z,- KyleA99 commented on pull request: [5793](https://github.com/hackforla/website/pull/5793#issuecomment-1784896000) at 2023-10-30 03:28 AM PDT -KyleA99,2023-10-31T04:22:12Z,- KyleA99 submitted pull request review: [5793](https://github.com/hackforla/website/pull/5793#pullrequestreview-1705413832) at 2023-10-30 09:22 PM PDT -KyleA99,2023-11-01T02:19:42Z,- KyleA99 commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1788295880) at 2023-10-31 07:19 PM PDT -KyleA99,2023-11-01T04:31:42Z,- KyleA99 commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1788392380) at 2023-10-31 09:31 PM PDT -KyleA99,2023-11-01T21:02:45Z,- KyleA99 commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789681545) at 2023-11-01 02:02 PM PDT -KyleA99,2023-11-01T21:04:07Z,- KyleA99 submitted pull request review: [5794](https://github.com/hackforla/website/pull/5794#pullrequestreview-1709084524) at 2023-11-01 02:04 PM PDT -KyleA99,2023-11-02T07:56:26Z,- KyleA99 assigned to issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1774148365) at 2023-11-02 12:56 AM PDT -KyleA99,2023-11-02T08:56:27Z,- KyleA99 commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1790315670) at 2023-11-02 01:56 AM PDT -KyleA99,2023-11-02T20:52:35Z,- KyleA99 commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1791522065) at 2023-11-02 01:52 PM PDT -KyleA99,2023-11-02T22:43:29Z,- KyleA99 submitted pull request review: [5794](https://github.com/hackforla/website/pull/5794#pullrequestreview-1711362189) at 2023-11-02 03:43 PM PDT -KyleA99,2023-11-05T06:34:47Z,- KyleA99 commented on pull request: [5828](https://github.com/hackforla/website/pull/5828#issuecomment-1793652373) at 2023-11-04 10:34 PM PST -KyleA99,2023-11-05T13:41:46Z,- KyleA99 commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1793741252) at 2023-11-05 05:41 AM PST -KyleA99,2023-11-05T14:21:38Z,- KyleA99 submitted pull request review: [5828](https://github.com/hackforla/website/pull/5828#pullrequestreview-1713995157) at 2023-11-05 06:21 AM PST -KyleA99,2023-11-12T07:55:08Z,- KyleA99 commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1807047856) at 2023-11-11 11:55 PM PST -KyleA99,2023-11-15T00:52:30Z,- KyleA99 commented on pull request: [5903](https://github.com/hackforla/website/pull/5903#issuecomment-1811627641) at 2023-11-14 04:52 PM PST -KyleA99,2023-11-15T01:47:03Z,- KyleA99 submitted pull request review: [5903](https://github.com/hackforla/website/pull/5903#pullrequestreview-1731098225) at 2023-11-14 05:47 PM PST -KyleA99,2023-11-15T02:29:23Z,- KyleA99 commented on pull request: [5905](https://github.com/hackforla/website/pull/5905#issuecomment-1811705368) at 2023-11-14 06:29 PM PST -KyleA99,2023-11-15T03:07:49Z,- KyleA99 submitted pull request review: [5905](https://github.com/hackforla/website/pull/5905#pullrequestreview-1731163939) at 2023-11-14 07:07 PM PST -KyleA99,2023-11-15T06:57:36Z,- KyleA99 submitted pull request review: [5905](https://github.com/hackforla/website/pull/5905#pullrequestreview-1731347315) at 2023-11-14 10:57 PM PST -KyleA99,2023-11-15T09:28:06Z,- KyleA99 submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1731593684) at 2023-11-15 01:28 AM PST -KyleA99,2023-11-16T00:46:56Z,- KyleA99 commented on pull request: [5907](https://github.com/hackforla/website/pull/5907#issuecomment-1813528965) at 2023-11-15 04:46 PM PST -KyleA99,2023-11-16T01:41:52Z,- KyleA99 commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1813617189) at 2023-11-15 05:41 PM PST -KyleA99,2023-11-16T03:34:31Z,- KyleA99 submitted pull request review: [5907](https://github.com/hackforla/website/pull/5907#pullrequestreview-1733442111) at 2023-11-15 07:34 PM PST -KyleA99,2023-11-17T01:43:43Z,- KyleA99 submitted pull request review: [5908](https://github.com/hackforla/website/pull/5908#pullrequestreview-1735855754) at 2023-11-16 05:43 PM PST -KyleA99,2023-11-18T06:19:54Z,- KyleA99 submitted pull request review: [5910](https://github.com/hackforla/website/pull/5910#pullrequestreview-1738264782) at 2023-11-17 10:19 PM PST -KyleA99,2023-11-18T07:00:26Z,- KyleA99 submitted pull request review: [5912](https://github.com/hackforla/website/pull/5912#pullrequestreview-1738274035) at 2023-11-17 11:00 PM PST -KyleA99,2023-11-18T07:43:02Z,- KyleA99 submitted pull request review: [5915](https://github.com/hackforla/website/pull/5915#pullrequestreview-1738285352) at 2023-11-17 11:43 PM PST -KyleA99,2023-11-19T01:53:57Z,- KyleA99 submitted pull request review: [5908](https://github.com/hackforla/website/pull/5908#pullrequestreview-1738530562) at 2023-11-18 05:53 PM PST -KyleA99,2023-11-19T18:28:32Z,- KyleA99 commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1817939103) at 2023-11-19 10:28 AM PST -KyleA99,2023-11-23T19:50:29Z,- KyleA99 submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1746943458) at 2023-11-23 11:50 AM PST -KyleA99,2023-12-02T21:22:28Z,- KyleA99 unassigned from issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1835580098) at 2023-12-02 01:22 PM PST -KyleA99,2023-12-02T21:23:46Z,- KyleA99 commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1837257078) at 2023-12-02 01:23 PM PST -KyleA99,2023-12-06T11:16:00Z,- KyleA99 submitted pull request review: [5950](https://github.com/hackforla/website/pull/5950#pullrequestreview-1767300662) at 2023-12-06 03:16 AM PST -KyleA99,2023-12-09T07:19:02Z,- KyleA99 submitted pull request review: [5950](https://github.com/hackforla/website/pull/5950#pullrequestreview-1773564593) at 2023-12-08 11:19 PM PST -KyleA99,2024-01-10T03:45:03Z,- KyleA99 submitted pull request review: [6075](https://github.com/hackforla/website/pull/6075#pullrequestreview-1812364216) at 2024-01-09 07:45 PM PST -KyleA99,2024-01-24T03:12:41Z,- KyleA99 commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1907278702) at 2024-01-23 07:12 PM PST -KyleA99,2024-01-24T08:29:01Z,- KyleA99 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1840741272) at 2024-01-24 12:29 AM PST -KyleA99,2024-01-24T08:30:47Z,- KyleA99 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1840744358) at 2024-01-24 12:30 AM PST -KyleA99,2024-01-26T01:14:45Z,- KyleA99 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1844951742) at 2024-01-25 05:14 PM PST -KyleA99,2024-01-28T06:20:16Z,- KyleA99 unassigned from issue: [5749](https://github.com/hackforla/website/issues/5749#event-10732929922) at 2024-01-27 10:20 PM PST -KyleA99,2024-01-30T21:17:44Z,- KyleA99 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1852386023) at 2024-01-30 01:17 PM PST -KyleA99,2024-01-30T22:12:38Z,- KyleA99 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1852475758) at 2024-01-30 02:12 PM PST -KyleA99,2024-02-03T00:01:09Z,- KyleA99 submitted pull request review: [6206](https://github.com/hackforla/website/pull/6206#pullrequestreview-1860646336) at 2024-02-02 04:01 PM PST -kyrakwak,3825,SKILLS ISSUE -kyrakwak,2023-01-17T03:17:17Z,- kyrakwak opened issue: [3825](https://github.com/hackforla/website/issues/3825) at 2023-01-16 07:17 PM PST -kyrakwak,2023-01-17T03:33:15Z,- kyrakwak assigned to issue: [3825](https://github.com/hackforla/website/issues/3825) at 2023-01-16 07:33 PM PST -kyrakwak,2023-01-17T05:50:16Z,- kyrakwak assigned to issue: [2867](https://github.com/hackforla/website/issues/2867#issuecomment-1048469750) at 2023-01-16 09:50 PM PST -kyrakwak,2023-01-17T06:14:23Z,- kyrakwak opened pull request: [3832](https://github.com/hackforla/website/pull/3832) at 2023-01-16 10:14 PM PST -kyrakwak,2023-01-17T06:19:18Z,- kyrakwak commented on issue: [2867](https://github.com/hackforla/website/issues/2867#issuecomment-1384887603) at 2023-01-16 10:19 PM PST -kyrakwak,2023-01-17T06:20:39Z,- kyrakwak commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1384888399) at 2023-01-16 10:20 PM PST -kyrakwak,2023-01-17T16:00:22Z,- kyrakwak pull request merged: [3832](https://github.com/hackforla/website/pull/3832#event-8247207145) at 2023-01-17 08:00 AM PST -kyrakwak,2023-01-17T16:14:38Z,- kyrakwak assigned to issue: [3382](https://github.com/hackforla/website/issues/3382#issuecomment-1187663541) at 2023-01-17 08:14 AM PST -kyrakwak,2023-01-17T16:17:43Z,- kyrakwak commented on issue: [3382](https://github.com/hackforla/website/issues/3382#issuecomment-1385675825) at 2023-01-17 08:17 AM PST -kyrakwak,2023-01-17T16:41:37Z,- kyrakwak opened pull request: [3834](https://github.com/hackforla/website/pull/3834) at 2023-01-17 08:41 AM PST -kyrakwak,2023-01-17T20:04:57Z,- kyrakwak assigned to issue: [3352](https://github.com/hackforla/website/issues/3352#event-8063600927) at 2023-01-17 12:04 PM PST -kyrakwak,2023-01-17T20:05:47Z,- kyrakwak commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1385985821) at 2023-01-17 12:05 PM PST -kyrakwak,2023-01-19T15:41:43Z,- kyrakwak pull request merged: [3834](https://github.com/hackforla/website/pull/3834#event-8313372996) at 2023-01-19 07:41 AM PST -kyrakwak,2023-01-30T18:07:17Z,- kyrakwak opened pull request: [3901](https://github.com/hackforla/website/pull/3901) at 2023-01-30 10:07 AM PST -kyrakwak,2023-01-30T18:09:17Z,- kyrakwak commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1409086018) at 2023-01-30 10:09 AM PST -kyrakwak,2023-02-07T00:27:12Z,- kyrakwak pull request merged: [3901](https://github.com/hackforla/website/pull/3901#event-8453006221) at 2023-02-06 04:27 PM PST -Lalla22,3781,SKILLS ISSUE -Lalla22,2023-01-04T04:45:59Z,- Lalla22 opened issue: [3781](https://github.com/hackforla/website/issues/3781) at 2023-01-03 08:45 PM PST -Lalla22,2023-01-09T05:42:37Z,- Lalla22 commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1375130062) at 2023-01-08 09:42 PM PST -Lalla22,2023-02-21T02:19:45Z,- Lalla22 assigned to issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1427330169) at 2023-02-20 06:19 PM PST -laurenjsandberg,2019-07-24T02:22:24Z,- laurenjsandberg assigned to issue: [137](https://github.com/hackforla/website/issues/137) at 2019-07-23 07:22 PM PDT -laurenjsandberg,2019-07-24T03:03:23Z,- laurenjsandberg commented on issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-514460566) at 2019-07-23 08:03 PM PDT -laurenjsandberg,2019-07-24T03:25:30Z,- laurenjsandberg commented on issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-514464314) at 2019-07-23 08:25 PM PDT -laurenjsandberg,2019-07-24T03:26:37Z,- laurenjsandberg commented on issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-514464523) at 2019-07-23 08:26 PM PDT -laurenjsandberg,2019-07-24T06:29:32Z,- laurenjsandberg unassigned from issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-514464523) at 2019-07-23 11:29 PM PDT -laurenjsandberg,2019-08-19T18:57:32Z,- laurenjsandberg closed issue as completed: [137](https://github.com/hackforla/website/issues/137#event-2567338786) at 2019-08-19 11:57 AM PDT -lc1715,7746,SKILLS ISSUE -lc1715,7833,SKILLS ISSUE -lc1715,2024-11-20T04:20:42Z,- lc1715 opened issue: [7746](https://github.com/hackforla/website/issues/7746) at 2024-11-19 08:20 PM PST -lc1715,2024-11-20T04:26:06Z,- lc1715 assigned to issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2487382191) at 2024-11-19 08:26 PM PST -lc1715,2025-01-17T02:16:47Z,- lc1715 opened issue: [7833](https://github.com/hackforla/website/issues/7833) at 2025-01-16 06:16 PM PST -lc1715,2025-01-17T02:16:48Z,- lc1715 assigned to issue: [7833](https://github.com/hackforla/website/issues/7833) at 2025-01-16 06:16 PM PST -lc1715,2025-01-17T02:42:18Z,- lc1715 closed issue as completed: [7833](https://github.com/hackforla/website/issues/7833#event-15970700502) at 2025-01-16 06:42 PM PST -lc1715,2025-01-17T05:58:02Z,- lc1715 assigned to issue: [7751](https://github.com/hackforla/website/issues/7751) at 2025-01-16 09:58 PM PST -lc1715,2025-01-17T06:54:45Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2597557658) at 2025-01-16 10:54 PM PST -lc1715,2025-01-17T07:30:33Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2597603017) at 2025-01-16 11:30 PM PST -lc1715,2025-01-17T07:47:21Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2597625222) at 2025-01-16 11:47 PM PST -lc1715,2025-01-18T02:37:09Z,- lc1715 opened pull request: [7834](https://github.com/hackforla/website/pull/7834) at 2025-01-17 06:37 PM PST -lc1715,2025-01-18T02:41:20Z,- lc1715 commented on issue: [7751](https://github.com/hackforla/website/issues/7751#issuecomment-2599483419) at 2025-01-17 06:41 PM PST -lc1715,2025-01-18T02:52:09Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2599486649) at 2025-01-17 06:52 PM PST -lc1715,2025-01-21T04:17:33Z,- lc1715 commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2603623598) at 2025-01-20 08:17 PM PST -lc1715,2025-01-21T06:02:31Z,- lc1715 commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2603735082) at 2025-01-20 10:02 PM PST -lc1715,2025-01-22T04:21:26Z,- lc1715 commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2606261912) at 2025-01-21 08:21 PM PST -lc1715,2025-01-22T05:21:46Z,- lc1715 pull request merged: [7834](https://github.com/hackforla/website/pull/7834#event-16023553946) at 2025-01-21 09:21 PM PST -lc1715,2025-01-25T05:23:17Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2613789239) at 2025-01-24 09:23 PM PST -lc1715,2025-01-25T05:26:22Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2613789951) at 2025-01-24 09:26 PM PST -lc1715,2025-01-25T23:02:13Z,- lc1715 assigned to issue: [7356](https://github.com/hackforla/website/issues/7356) at 2025-01-25 03:02 PM PST -lc1715,2025-01-26T00:25:20Z,- lc1715 commented on issue: [7356](https://github.com/hackforla/website/issues/7356#issuecomment-2614149039) at 2025-01-25 04:25 PM PST -lc1715,2025-01-26T00:47:23Z,- lc1715 opened pull request: [7852](https://github.com/hackforla/website/pull/7852) at 2025-01-25 04:47 PM PST -lc1715,2025-02-02T22:35:42Z,- lc1715 pull request merged: [7852](https://github.com/hackforla/website/pull/7852#event-16153919375) at 2025-02-02 02:35 PM PST -lc1715,2025-02-05T06:32:42Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2635812812) at 2025-02-04 10:32 PM PST -lc1715,2025-02-07T05:53:21Z,- lc1715 commented on pull request: [7899](https://github.com/hackforla/website/pull/7899#issuecomment-2642006509) at 2025-02-06 09:53 PM PST -lc1715,2025-02-07T06:31:39Z,- lc1715 submitted pull request review: [7899](https://github.com/hackforla/website/pull/7899#pullrequestreview-2600904624) at 2025-02-06 10:31 PM PST -lc1715,2025-02-20T00:29:36Z,- lc1715 commented on pull request: [7928](https://github.com/hackforla/website/pull/7928#issuecomment-2670087994) at 2025-02-19 04:29 PM PST -lc1715,2025-02-20T01:50:27Z,- lc1715 submitted pull request review: [7928](https://github.com/hackforla/website/pull/7928#pullrequestreview-2628520859) at 2025-02-19 05:50 PM PST -lc1715,2025-02-20T04:35:49Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2670442985) at 2025-02-19 08:35 PM PST -lc1715,2025-02-27T01:53:10Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2686605078) at 2025-02-26 05:53 PM PST -lc1715,2025-02-27T02:30:37Z,- lc1715 assigned to issue: [7440](https://github.com/hackforla/website/issues/7440) at 2025-02-26 06:30 PM PST -lc1715,2025-02-27T02:35:03Z,- lc1715 commented on issue: [7440](https://github.com/hackforla/website/issues/7440#issuecomment-2686703741) at 2025-02-26 06:35 PM PST -lc1715,2025-02-27T07:59:12Z,- lc1715 opened pull request: [7951](https://github.com/hackforla/website/pull/7951) at 2025-02-26 11:59 PM PST -lc1715,2025-03-02T04:59:13Z,- lc1715 pull request merged: [7951](https://github.com/hackforla/website/pull/7951#event-16524113069) at 2025-03-01 08:59 PM PST -lc1715,2025-03-07T00:24:53Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2705236557) at 2025-03-06 04:24 PM PST -lc1715,2025-03-08T00:21:32Z,- lc1715 commented on pull request: [7983](https://github.com/hackforla/website/pull/7983#issuecomment-2707771847) at 2025-03-07 05:21 PM PDT -lc1715,2025-03-08T00:52:37Z,- lc1715 submitted pull request review: [7983](https://github.com/hackforla/website/pull/7983#pullrequestreview-2668697202) at 2025-03-07 05:52 PM PDT -lc1715,2025-03-12T23:42:28Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2719361441) at 2025-03-12 04:42 PM PDT -lc1715,2025-03-15T02:50:56Z,- lc1715 commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2726149396) at 2025-03-14 07:50 PM PDT -lc1715,2025-03-15T03:21:02Z,- lc1715 submitted pull request review: [7989](https://github.com/hackforla/website/pull/7989#pullrequestreview-2687296813) at 2025-03-14 08:21 PM PDT -lc1715,2025-03-20T22:43:35Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2741825347) at 2025-03-20 03:43 PM PDT -lc1715,2025-03-27T22:43:57Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2759709507) at 2025-03-27 03:43 PM PDT -lc1715,2025-04-06T08:37:53Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2781308933) at 2025-04-06 01:37 AM PDT -lc1715,2025-04-06T09:51:42Z,- lc1715 commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2781337413) at 2025-04-06 02:51 AM PDT -lc1715,2025-04-06T10:50:17Z,- lc1715 submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2745106794) at 2025-04-06 03:50 AM PDT -lc1715,2025-04-09T00:06:52Z,- lc1715 submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2751649543) at 2025-04-08 05:06 PM PDT -lc1715,2025-04-09T00:08:55Z,- lc1715 commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2787910543) at 2025-04-08 05:08 PM PDT -lc1715,2025-04-09T23:03:16Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2791160908) at 2025-04-09 04:03 PM PDT -lc1715,2025-04-13T05:58:35Z,- lc1715 commented on pull request: [8061](https://github.com/hackforla/website/pull/8061#issuecomment-2799698177) at 2025-04-12 10:58 PM PDT -lc1715,2025-04-13T06:29:56Z,- lc1715 submitted pull request review: [8061](https://github.com/hackforla/website/pull/8061#pullrequestreview-2762663428) at 2025-04-12 11:29 PM PDT -lc1715,2025-04-13T06:47:04Z,- lc1715 commented on pull request: [8059](https://github.com/hackforla/website/pull/8059#issuecomment-2799806185) at 2025-04-12 11:47 PM PDT -lc1715,2025-04-13T06:59:28Z,- lc1715 submitted pull request review: [8059](https://github.com/hackforla/website/pull/8059#pullrequestreview-2762701330) at 2025-04-12 11:59 PM PDT -lc1715,2025-04-16T11:37:12Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2809304176) at 2025-04-16 04:37 AM PDT -lc1715,2025-04-22T00:56:10Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2819795222) at 2025-04-21 05:56 PM PDT -lc1715,2025-04-23T01:18:48Z,- lc1715 assigned to issue: [7635](https://github.com/hackforla/website/issues/7635) at 2025-04-22 06:18 PM PDT -lc1715,2025-04-23T01:37:21Z,- lc1715 commented on issue: [7635](https://github.com/hackforla/website/issues/7635#issuecomment-2822845293) at 2025-04-22 06:37 PM PDT -lc1715,2025-04-23T08:49:46Z,- lc1715 opened issue: [8086](https://github.com/hackforla/website/issues/8086) at 2025-04-23 01:49 AM PDT -lc1715,2025-04-23T09:22:35Z,- lc1715 commented on issue: [7635](https://github.com/hackforla/website/issues/7635#issuecomment-2823642847) at 2025-04-23 02:22 AM PDT -lc1715,2025-04-23T09:54:55Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2823747217) at 2025-04-23 02:54 AM PDT -lc1715,2025-05-01T05:33:15Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2844139786) at 2025-04-30 10:33 PM PDT -lc1715,2025-05-11T10:56:12Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2869686700) at 2025-05-11 03:56 AM PDT -lc1715,2025-05-18T21:06:43Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2889212100) at 2025-05-18 02:06 PM PDT -lc1715,2025-05-27T06:44:54Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2911313081) at 2025-05-26 11:44 PM PDT -lc1715,2025-06-03T07:29:36Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2933889548) at 2025-06-03 12:29 AM PDT -lc1715,2025-06-05T23:12:31Z,- lc1715 commented on pull request: [8171](https://github.com/hackforla/website/pull/8171#issuecomment-2946824886) at 2025-06-05 04:12 PM PDT -lc1715,2025-06-05T23:39:37Z,- lc1715 submitted pull request review: [8171](https://github.com/hackforla/website/pull/8171#pullrequestreview-2903043969) at 2025-06-05 04:39 PM PDT -lc1715,2025-06-10T22:45:19Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2960750008) at 2025-06-10 03:45 PM PDT -lc1715,2025-06-18T07:39:37Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2983046674) at 2025-06-18 12:39 AM PDT -lc1715,2025-06-27T04:08:51Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-3011565617) at 2025-06-26 09:08 PM PDT -lc1715,2025-08-05T00:44:19Z,- lc1715 commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-3152899487) at 2025-08-04 05:44 PM PDT -ldaws003,3611,SKILLS ISSUE -ldaws003,2022-10-11T02:54:49Z,- ldaws003 opened issue: [3611](https://github.com/hackforla/website/issues/3611) at 2022-10-10 07:54 PM PDT -ldaws003,2022-10-24T22:22:09Z,- ldaws003 assigned to issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1048338245) at 2022-10-24 03:22 PM PDT -ldaws003,2022-10-24T22:26:07Z,- ldaws003 commented on issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1289710056) at 2022-10-24 03:26 PM PDT -ldaws003,2022-10-25T07:40:57Z,- ldaws003 opened pull request: [3658](https://github.com/hackforla/website/pull/3658) at 2022-10-25 12:40 AM PDT -ldaws003,2022-10-25T07:45:46Z,- ldaws003 commented on issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1290131013) at 2022-10-25 12:45 AM PDT -ldaws003,2022-10-26T00:10:42Z,- ldaws003 pull request merged: [3658](https://github.com/hackforla/website/pull/3658#event-7668013587) at 2022-10-25 05:10 PM PDT -ldaws003,2022-10-29T20:01:27Z,- ldaws003 commented on issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1295956662) at 2022-10-29 01:01 PM PDT -ldaws003,2022-10-29T20:01:51Z,- ldaws003 assigned to issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1295956662) at 2022-10-29 01:01 PM PDT -ldaws003,2022-10-30T08:14:29Z,- ldaws003 closed issue as completed: [3611](https://github.com/hackforla/website/issues/3611#event-7698517039) at 2022-10-30 01:14 AM PDT -ldaws003,2022-10-30T08:50:19Z,- ldaws003 opened pull request: [3676](https://github.com/hackforla/website/pull/3676) at 2022-10-30 01:50 AM PDT -ldaws003,2022-10-31T10:58:22Z,- ldaws003 pull request closed w/o merging: [3676](https://github.com/hackforla/website/pull/3676#event-7703173831) at 2022-10-31 03:58 AM PDT -ldaws003,2022-10-31T19:51:37Z,- ldaws003 opened pull request: [3679](https://github.com/hackforla/website/pull/3679) at 2022-10-31 12:51 PM PDT -ldaws003,2022-10-31T20:34:54Z,- ldaws003 unassigned from issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1297644812) at 2022-10-31 01:34 PM PDT -ldaws003,2022-11-01T04:21:26Z,- ldaws003 pull request merged: [3679](https://github.com/hackforla/website/pull/3679#event-7709993235) at 2022-10-31 09:21 PM PDT -ldaws003,2022-11-01T05:00:36Z,- ldaws003 assigned to issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1297644812) at 2022-10-31 10:00 PM PDT -ldaws003,2022-11-01T05:01:21Z,- ldaws003 commented on issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1298030446) at 2022-10-31 10:01 PM PDT -ldaws003,2022-11-01T05:25:51Z,- ldaws003 opened pull request: [3686](https://github.com/hackforla/website/pull/3686) at 2022-10-31 10:25 PM PDT -ldaws003,2022-11-02T04:14:23Z,- ldaws003 pull request merged: [3686](https://github.com/hackforla/website/pull/3686#event-7719210329) at 2022-11-01 09:14 PM PDT -ldaws003,2022-11-08T12:13:09Z,- ldaws003 assigned to issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1304867526) at 2022-11-08 04:13 AM PST -ldaws003,2022-11-08T12:14:45Z,- ldaws003 commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1307116523) at 2022-11-08 04:14 AM PST -ldaws003,2022-11-09T06:16:51Z,- ldaws003 commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1308266365) at 2022-11-08 10:16 PM PST -ldaws003,2022-11-11T08:29:30Z,- ldaws003 commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1311386173) at 2022-11-11 12:29 AM PST -ldaws003,2022-11-12T07:56:02Z,- ldaws003 opened pull request: [3716](https://github.com/hackforla/website/pull/3716) at 2022-11-11 11:56 PM PST -ldaws003,2022-11-13T02:02:11Z,- ldaws003 pull request merged: [3716](https://github.com/hackforla/website/pull/3716#event-7797609429) at 2022-11-12 06:02 PM PST -ldaws003,2022-11-13T04:13:41Z,- ldaws003 assigned to issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1192160542) at 2022-11-12 08:13 PM PST -ldaws003,2022-11-13T04:20:04Z,- ldaws003 commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1312635848) at 2022-11-12 08:20 PM PST -ldaws003,2022-11-20T07:44:26Z,- ldaws003 commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1321062211) at 2022-11-19 11:44 PM PST -ldaws003,2022-11-27T18:32:35Z,- ldaws003 commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1328312763) at 2022-11-27 10:32 AM PST -ldaws003,2022-12-04T21:11:37Z,- ldaws003 commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1336518335) at 2022-12-04 01:11 PM PST -ldaws003,2022-12-12T02:04:31Z,- ldaws003 commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1345762979) at 2022-12-11 06:04 PM PST -ldaws003,2022-12-23T10:25:58Z,- ldaws003 commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1363823785) at 2022-12-23 02:25 AM PST -ldaws003,2023-01-25T22:43:27Z,- ldaws003 assigned to issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1236197698) at 2023-01-25 02:43 PM PST -ldaws003,2023-01-25T22:52:25Z,- ldaws003 commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1404328769) at 2023-01-25 02:52 PM PST -ldaws003,2023-02-04T12:28:11Z,- ldaws003 commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1416739561) at 2023-02-04 04:28 AM PST -ldaws003,2023-02-19T05:38:25Z,- ldaws003 commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1435875548) at 2023-02-18 09:38 PM PST -ldaws003,2023-03-08T22:55:45Z,- ldaws003 unassigned from issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1453087219) at 2023-03-08 02:55 PM PST -ldaws003,2023-03-19T18:15:46Z,- ldaws003 assigned to issue: [3611](https://github.com/hackforla/website/issues/3611#event-8622182252) at 2023-03-19 11:15 AM PDT -ldaws003,2023-03-22T17:40:43Z,- ldaws003 commented on issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1479998733) at 2023-03-22 10:40 AM PDT -ldietz08,4632,SKILLS ISSUE -ldietz08,2023-05-09T03:36:01Z,- ldietz08 opened issue: [4632](https://github.com/hackforla/website/issues/4632) at 2023-05-08 08:36 PM PDT -ldietz08,2023-05-09T03:53:54Z,- ldietz08 assigned to issue: [4632](https://github.com/hackforla/website/issues/4632) at 2023-05-08 08:53 PM PDT -ldietz08,2023-05-15T17:42:54Z,- ldietz08 assigned to issue: [4476](https://github.com/hackforla/website/issues/4476) at 2023-05-15 10:42 AM PDT -ldietz08,2023-05-15T18:12:57Z,- ldietz08 opened pull request: [4674](https://github.com/hackforla/website/pull/4674) at 2023-05-15 11:12 AM PDT -ldietz08,2023-05-15T18:21:22Z,- ldietz08 commented on pull request: [4674](https://github.com/hackforla/website/pull/4674#issuecomment-1548344021) at 2023-05-15 11:21 AM PDT -ldietz08,2023-05-15T18:26:35Z,- ldietz08 commented on issue: [4632](https://github.com/hackforla/website/issues/4632#issuecomment-1548350297) at 2023-05-15 11:26 AM PDT -ldietz08,2023-05-15T18:32:52Z,- ldietz08 closed issue as completed: [4632](https://github.com/hackforla/website/issues/4632#event-9249810825) at 2023-05-15 11:32 AM PDT -ldietz08,2023-05-17T12:41:29Z,- ldietz08 commented on issue: [4476](https://github.com/hackforla/website/issues/4476#issuecomment-1551322291) at 2023-05-17 05:41 AM PDT -ldietz08,2023-05-17T17:58:12Z,- ldietz08 pull request merged: [4674](https://github.com/hackforla/website/pull/4674#event-9272327197) at 2023-05-17 10:58 AM PDT -ldietz08,2023-05-24T18:43:52Z,- ldietz08 assigned to issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1508161791) at 2023-05-24 11:43 AM PDT -ldietz08,2023-05-24T18:49:34Z,- ldietz08 commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1561767423) at 2023-05-24 11:49 AM PDT -ldietz08,2023-05-24T20:00:22Z,- ldietz08 opened pull request: [4725](https://github.com/hackforla/website/pull/4725) at 2023-05-24 01:00 PM PDT -ldietz08,2023-05-25T03:52:27Z,- ldietz08 commented on pull request: [4727](https://github.com/hackforla/website/pull/4727#issuecomment-1562219855) at 2023-05-24 08:52 PM PDT -ldietz08,2023-05-26T04:08:48Z,- ldietz08 commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1563784630) at 2023-05-25 09:08 PM PDT -ldietz08,2023-05-27T23:12:07Z,- ldietz08 commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1565730844) at 2023-05-27 04:12 PM PDT -ldietz08,2023-05-27T23:12:37Z,- ldietz08 submitted pull request review: [4730](https://github.com/hackforla/website/pull/4730#pullrequestreview-1447664089) at 2023-05-27 04:12 PM PDT -ldietz08,2023-05-28T16:42:06Z,- ldietz08 commented on pull request: [4748](https://github.com/hackforla/website/pull/4748#issuecomment-1566195960) at 2023-05-28 09:42 AM PDT -ldietz08,2023-05-28T16:45:25Z,- ldietz08 pull request merged: [4725](https://github.com/hackforla/website/pull/4725#event-9362635838) at 2023-05-28 09:45 AM PDT -ldietz08,2023-05-28T21:38:00Z,- ldietz08 submitted pull request review: [4748](https://github.com/hackforla/website/pull/4748#pullrequestreview-1448436883) at 2023-05-28 02:38 PM PDT -ldietz08,2023-06-02T00:51:14Z,- ldietz08 assigned to issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1501020818) at 2023-06-01 05:51 PM PDT -ldietz08,2023-06-02T01:01:05Z,- ldietz08 commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1572975611) at 2023-06-01 06:01 PM PDT -ldietz08,2023-06-04T03:48:08Z,- ldietz08 commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1575364618) at 2023-06-03 08:48 PM PDT -ldietz08,2023-06-04T04:09:25Z,- ldietz08 commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1575371503) at 2023-06-03 09:09 PM PDT -ldietz08,2023-06-08T14:17:08Z,- ldietz08 submitted pull request review: [4772](https://github.com/hackforla/website/pull/4772#pullrequestreview-1470021732) at 2023-06-08 07:17 AM PDT -ldietz08,2023-06-08T14:26:48Z,- ldietz08 commented on pull request: [4789](https://github.com/hackforla/website/pull/4789#issuecomment-1582684645) at 2023-06-08 07:26 AM PDT -ldietz08,2023-06-12T05:24:23Z,- ldietz08 submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1474051798) at 2023-06-11 10:24 PM PDT -ldietz08,2023-06-14T00:09:37Z,- ldietz08 commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1590234470) at 2023-06-13 05:09 PM PDT -ldietz08,2023-06-27T19:34:44Z,- ldietz08 assigned to issue: [4859](https://github.com/hackforla/website/issues/4859) at 2023-06-27 12:34 PM PDT -ldietz08,2023-06-27T19:37:45Z,- ldietz08 commented on issue: [4859](https://github.com/hackforla/website/issues/4859#issuecomment-1610107819) at 2023-06-27 12:37 PM PDT -ldietz08,2023-06-27T23:56:02Z,- ldietz08 commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1610377953) at 2023-06-27 04:56 PM PDT -ldietz08,2023-06-28T18:43:50Z,- ldietz08 opened pull request: [4897](https://github.com/hackforla/website/pull/4897) at 2023-06-28 11:43 AM PDT -ldietz08,2023-06-29T15:41:12Z,- ldietz08 submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1505602171) at 2023-06-29 08:41 AM PDT -ldietz08,2023-07-02T03:36:29Z,- ldietz08 pull request merged: [4897](https://github.com/hackforla/website/pull/4897#event-9698572243) at 2023-07-01 08:36 PM PDT -ldietz08,2023-07-14T18:50:36Z,- ldietz08 assigned to issue: [3555](https://github.com/hackforla/website/issues/3555) at 2023-07-14 11:50 AM PDT -ldietz08,2023-07-28T05:12:06Z,- ldietz08 unassigned from issue: [3555](https://github.com/hackforla/website/issues/3555#issuecomment-1636271732) at 2023-07-27 10:12 PM PDT -ldietz08,2023-07-31T23:16:55Z,- ldietz08 commented on pull request: [5122](https://github.com/hackforla/website/pull/5122#issuecomment-1659335097) at 2023-07-31 04:16 PM PDT -ldietz08,2023-08-03T01:45:40Z,- ldietz08 submitted pull request review: [5122](https://github.com/hackforla/website/pull/5122#pullrequestreview-1560096216) at 2023-08-02 06:45 PM PDT -ldietz08,2023-08-03T04:08:11Z,- ldietz08 commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1663261213) at 2023-08-02 09:08 PM PDT -ldietz08,2023-08-15T19:27:41Z,- ldietz08 commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1679480256) at 2023-08-15 12:27 PM PDT -ldietz08,2023-08-16T19:52:41Z,- ldietz08 submitted pull request review: [5203](https://github.com/hackforla/website/pull/5203#pullrequestreview-1581318271) at 2023-08-16 12:52 PM PDT -ldietz08,2023-08-18T20:58:02Z,- ldietz08 commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1684429180) at 2023-08-18 01:58 PM PDT -leestella748,2020-04-12T18:05:36Z,- leestella748 assigned to issue: [403](https://github.com/hackforla/website/issues/403) at 2020-04-12 11:05 AM PDT -leestella748,2020-04-15T01:59:05Z,- leestella748 commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-613771465) at 2020-04-14 06:59 PM PDT -leestella748,2020-04-22T04:17:53Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-617539277) at 2020-04-21 09:17 PM PDT -leestella748,2020-04-27T05:50:26Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619739282) at 2020-04-26 10:50 PM PDT -leestella748,2020-05-01T06:54:11Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-622274593) at 2020-04-30 11:54 PM PDT -leestella748,2020-05-03T20:19:27Z,- leestella748 assigned to issue: [487](https://github.com/hackforla/website/issues/487) at 2020-05-03 01:19 PM PDT -leestella748,2020-05-03T21:35:48Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623186109) at 2020-05-03 02:35 PM PDT -leestella748,2020-05-03T22:45:14Z,- leestella748 closed issue as completed: [487](https://github.com/hackforla/website/issues/487#event-3297916094) at 2020-05-03 03:45 PM PDT -leestella748,2020-05-03T22:45:52Z,- leestella748 assigned to issue: [472](https://github.com/hackforla/website/issues/472) at 2020-05-03 03:45 PM PDT -leestella748,2020-05-05T21:41:58Z,- leestella748 unassigned from issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-624321808) at 2020-05-05 02:41 PM PDT -leestella748,2020-05-05T23:48:49Z,- leestella748 commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-624364433) at 2020-05-05 04:48 PM PDT -leestella748,2020-05-06T00:53:15Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-624383944) at 2020-05-05 05:53 PM PDT -leestella748,2020-05-10T23:26:31Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-626406053) at 2020-05-10 04:26 PM PDT -leestella748,2020-05-12T20:33:03Z,- leestella748 unassigned from issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-627577426) at 2020-05-12 01:33 PM PDT -leestella748,2020-05-17T18:41:28Z,- leestella748 assigned to issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-627577426) at 2020-05-17 11:41 AM PDT -leestella748,2020-05-18T22:02:30Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-630458005) at 2020-05-18 03:02 PM PDT -leestella748,2020-05-31T05:22:45Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-636424119) at 2020-05-30 10:22 PM PDT -leestella748,2020-06-03T05:11:07Z,- leestella748 commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-637956800) at 2020-06-02 10:11 PM PDT -leestella748,2020-06-04T06:17:53Z,- leestella748 assigned to issue: [526](https://github.com/hackforla/website/issues/526) at 2020-06-03 11:17 PM PDT -leestella748,2020-06-09T03:16:12Z,- leestella748 commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-641002899) at 2020-06-08 08:16 PM PDT -leestella748,2020-06-14T18:21:43Z,- leestella748 commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-643803108) at 2020-06-14 11:21 AM PDT -leestella748,2020-06-14T18:46:11Z,- leestella748 commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-643806119) at 2020-06-14 11:46 AM PDT -leestella748,2020-06-21T00:56:42Z,- leestella748 reopened issue: [488](https://github.com/hackforla/website/issues/488#event-3465114016) at 2020-06-20 05:56 PM PDT -leestella748,2020-06-21T16:50:18Z,- leestella748 commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-647153128) at 2020-06-21 09:50 AM PDT -leestella748,2020-06-23T01:32:43Z,- leestella748 unassigned from issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-647153128) at 2020-06-22 06:32 PM PDT -leestella748,2020-06-23T01:34:31Z,- leestella748 assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-647166426) at 2020-06-22 06:34 PM PDT -leestella748,2020-06-23T06:22:12Z,- leestella748 commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-647935014) at 2020-06-22 11:22 PM PDT -leestella748,2020-06-28T18:07:21Z,- leestella748 assigned to issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-650801594) at 2020-06-28 11:07 AM PDT -leestella748,2020-07-01T04:58:16Z,- leestella748 commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-06-30 09:58 PM PDT -leestella748,2020-07-05T17:37:31Z,- leestella748 unassigned from issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-07-05 10:37 AM PDT -leestella748,2020-07-05T21:05:08Z,- leestella748 commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-653939120) at 2020-07-05 02:05 PM PDT -leestella748,2020-07-15T22:22:52Z,- leestella748 unassigned from issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659044587) at 2020-07-15 03:22 PM PDT -leestella748,2020-07-15T22:32:44Z,- leestella748 assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659044587) at 2020-07-15 03:32 PM PDT -leestella748,2020-07-19T19:00:20Z,- leestella748 assigned to issue: [614](https://github.com/hackforla/website/issues/614) at 2020-07-19 12:00 PM PDT -leestella748,2020-07-22T06:32:24Z,- leestella748 commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-662270056) at 2020-07-21 11:32 PM PDT -leestella748,2020-07-22T18:35:32Z,- leestella748 unassigned from issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-662616351) at 2020-07-22 11:35 AM PDT -leestella748,2020-07-29T05:04:06Z,- leestella748 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-665432671) at 2020-07-28 10:04 PM PDT -leestella748,2020-08-05T00:49:18Z,- leestella748 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-668905486) at 2020-08-04 05:49 PM PDT -leestella748,2020-08-23T16:30:37Z,- leestella748 unassigned from issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-673130630) at 2020-08-23 09:30 AM PDT -leonelRos,2020-01-26T18:56:56Z,- leonelRos assigned to issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-01-26 10:56 AM PST -leonelRos,2020-01-26T19:00:05Z,- leonelRos assigned to issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-576507476) at 2020-01-26 11:00 AM PST -leonelRos,2020-01-26T19:34:01Z,- leonelRos commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-578534938) at 2020-01-26 11:34 AM PST -leonelRos,2020-01-27T02:30:28Z,- leonelRos commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-578572850) at 2020-01-26 06:30 PM PST -leonelRos,2020-01-27T02:49:00Z,- leonelRos commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-578575138) at 2020-01-26 06:49 PM PST -leonelRos,2020-01-28T19:51:54Z,- leonelRos commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579424739) at 2020-01-28 11:51 AM PST -leonelRos,2020-01-29T07:23:36Z,- leonelRos opened pull request: [287](https://github.com/hackforla/website/pull/287) at 2020-01-28 11:23 PM PST -leonelRos,2020-01-30T07:23:54Z,- leonelRos pull request closed w/o merging: [287](https://github.com/hackforla/website/pull/287#event-2992234856) at 2020-01-29 11:23 PM PST -leonelRos,2020-01-30T23:51:52Z,- leonelRos commented on pull request: [287](https://github.com/hackforla/website/pull/287#issuecomment-580516295) at 2020-01-30 03:51 PM PST -leonelRos,2020-02-02T18:08:48Z,- leonelRos assigned to issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578576529) at 2020-02-02 10:08 AM PST -leonelRos,2020-02-05T06:33:44Z,- leonelRos opened pull request: [289](https://github.com/hackforla/website/pull/289) at 2020-02-04 10:33 PM PST -leonelRos,2020-02-08T19:35:14Z,- leonelRos pull request closed w/o merging: [289](https://github.com/hackforla/website/pull/289#event-3020111852) at 2020-02-08 11:35 AM PST -leonelRos,2020-02-08T19:36:24Z,- leonelRos opened pull request: [299](https://github.com/hackforla/website/pull/299) at 2020-02-08 11:36 AM PST -leonelRos,2020-02-10T02:31:30Z,- leonelRos pull request closed w/o merging: [299](https://github.com/hackforla/website/pull/299#event-3021138753) at 2020-02-09 06:31 PM PST -leonelRos,2020-02-12T03:55:55Z,- leonelRos assigned to issue: [302](https://github.com/hackforla/website/issues/302) at 2020-02-11 07:55 PM PST -leonelRos,2020-02-16T19:06:50Z,- leonelRos assigned to issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583882528) at 2020-02-16 11:06 AM PST -leonelRos,2020-02-16T19:06:53Z,- leonelRos unassigned from issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583882528) at 2020-02-16 11:06 AM PST -leonelRos,2020-02-16T21:36:50Z,- leonelRos unassigned from issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-586756931) at 2020-02-16 01:36 PM PST -leonelRos,2020-02-17T00:20:17Z,- leonelRos opened pull request: [313](https://github.com/hackforla/website/pull/313) at 2020-02-16 04:20 PM PST -leonelRos,2020-02-17T00:47:25Z,- leonelRos opened pull request: [314](https://github.com/hackforla/website/pull/314) at 2020-02-16 04:47 PM PST -leonelRos,2020-02-17T21:23:35Z,- leonelRos assigned to issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583882528) at 2020-02-17 01:23 PM PST -leonelRos,2020-02-19T02:32:04Z,- leonelRos pull request merged: [314](https://github.com/hackforla/website/pull/314#event-3050033477) at 2020-02-18 06:32 PM PST -leonelRos,2020-02-19T02:45:55Z,- leonelRos closed issue as completed: [302](https://github.com/hackforla/website/issues/302#event-3050055257) at 2020-02-18 06:45 PM PST -leonelRos,2020-02-19T02:48:16Z,- leonelRos pull request closed w/o merging: [313](https://github.com/hackforla/website/pull/313#event-3050059023) at 2020-02-18 06:48 PM PST -leonelRos,2020-02-19T02:56:24Z,- leonelRos opened pull request: [319](https://github.com/hackforla/website/pull/319) at 2020-02-18 06:56 PM PST -leonelRos,2020-02-19T02:57:45Z,- leonelRos pull request merged: [319](https://github.com/hackforla/website/pull/319#event-3050073949) at 2020-02-18 06:57 PM PST -leonelRos,2020-02-21T01:01:25Z,- leonelRos commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-589448002) at 2020-02-20 05:01 PM PST -leonelRos,2020-02-25T04:32:49Z,- leonelRos closed issue by PR 324: [244](https://github.com/hackforla/website/issues/244#event-3067929500) at 2020-02-24 08:32 PM PST -leonelRos,2020-02-25T20:53:31Z,- leonelRos assigned to issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-587186656) at 2020-02-25 12:53 PM PST -leonelRos,2020-03-01T19:48:06Z,- leonelRos assigned to issue: [332](https://github.com/hackforla/website/issues/332) at 2020-03-01 11:48 AM PST -leonelRos,2020-03-03T02:21:34Z,- leonelRos commented on issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-593732375) at 2020-03-02 06:21 PM PST -leonelRos,2020-03-03T03:05:59Z,- leonelRos opened pull request: [339](https://github.com/hackforla/website/pull/339) at 2020-03-02 07:05 PM PST -leonelRos,2020-03-03T03:16:04Z,- leonelRos commented on issue: [332](https://github.com/hackforla/website/issues/332#issuecomment-593745658) at 2020-03-02 07:16 PM PST -leonelRos,2020-03-03T03:18:09Z,- leonelRos opened pull request: [342](https://github.com/hackforla/website/pull/342) at 2020-03-02 07:18 PM PST -leonelRos,2020-03-03T21:06:38Z,- leonelRos closed issue by PR 339: [316](https://github.com/hackforla/website/issues/316#event-3093883720) at 2020-03-03 01:06 PM PST -leonelRos,2020-03-03T21:06:38Z,- leonelRos pull request merged: [339](https://github.com/hackforla/website/pull/339#event-3093883728) at 2020-03-03 01:06 PM PST -leonelRos,2020-03-03T21:07:28Z,- leonelRos closed issue by PR 342: [332](https://github.com/hackforla/website/issues/332#event-3093886426) at 2020-03-03 01:07 PM PST -leonelRos,2020-03-03T21:07:28Z,- leonelRos pull request merged: [342](https://github.com/hackforla/website/pull/342#event-3093886431) at 2020-03-03 01:07 PM PST -leonelRos,2020-03-04T04:16:45Z,- leonelRos opened pull request: [347](https://github.com/hackforla/website/pull/347) at 2020-03-03 08:16 PM PST -leonelRos,2020-03-04T04:17:45Z,- leonelRos pull request merged: [347](https://github.com/hackforla/website/pull/347#event-3094916766) at 2020-03-03 08:17 PM PST -leonelRos,2020-03-04T04:50:43Z,- leonelRos opened pull request: [349](https://github.com/hackforla/website/pull/349) at 2020-03-03 08:50 PM PST -leonelRos,2020-03-04T05:35:19Z,- leonelRos pull request merged: [349](https://github.com/hackforla/website/pull/349#event-3095044693) at 2020-03-03 09:35 PM PST -leonelRos,2020-03-08T23:53:41Z,- leonelRos unassigned from issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-03-08 04:53 PM PDT -leonelRos,2020-03-09T06:45:23Z,- leonelRos commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596356343) at 2020-03-08 11:45 PM PDT -leonelRos,2020-03-09T06:49:13Z,- leonelRos opened pull request: [355](https://github.com/hackforla/website/pull/355) at 2020-03-08 11:49 PM PDT -leonelRos,2020-03-09T17:06:55Z,- leonelRos pull request merged: [355](https://github.com/hackforla/website/pull/355#event-3111576161) at 2020-03-09 10:06 AM PDT -leonelRos,2020-03-15T18:03:42Z,- leonelRos assigned to issue: [367](https://github.com/hackforla/website/issues/367) at 2020-03-15 11:03 AM PDT -leonelRos,2020-03-16T03:05:07Z,- leonelRos commented on pull request: [369](https://github.com/hackforla/website/pull/369#issuecomment-599323368) at 2020-03-15 08:05 PM PDT -leonelRos,2020-03-21T05:35:44Z,- leonelRos commented on issue: [367](https://github.com/hackforla/website/issues/367#issuecomment-601998351) at 2020-03-20 10:35 PM PDT -leonelRos,2020-03-21T05:39:15Z,- leonelRos opened pull request: [383](https://github.com/hackforla/website/pull/383) at 2020-03-20 10:39 PM PDT -leonelRos,2020-03-23T03:47:59Z,- leonelRos pull request closed w/o merging: [383](https://github.com/hackforla/website/pull/383#event-3153516178) at 2020-03-22 08:47 PM PDT -leonelRos,2020-03-23T03:51:44Z,- leonelRos opened pull request: [388](https://github.com/hackforla/website/pull/388) at 2020-03-22 08:51 PM PDT -leonelRos,2020-03-26T06:02:47Z,- leonelRos closed issue by PR 388: [367](https://github.com/hackforla/website/issues/367#event-3166815784) at 2020-03-25 11:02 PM PDT -leonelRos,2020-03-26T06:02:48Z,- leonelRos pull request merged: [388](https://github.com/hackforla/website/pull/388#event-3166815792) at 2020-03-25 11:02 PM PDT -leonelRos,2020-03-27T17:48:31Z,- leonelRos assigned to issue: [396](https://github.com/hackforla/website/issues/396) at 2020-03-27 10:48 AM PDT -leonelRos,2020-03-27T18:12:06Z,- leonelRos commented on issue: [396](https://github.com/hackforla/website/issues/396#issuecomment-605182495) at 2020-03-27 11:12 AM PDT -leonelRos,2020-03-27T18:13:48Z,- leonelRos opened pull request: [397](https://github.com/hackforla/website/pull/397) at 2020-03-27 11:13 AM PDT -leonelRos,2020-03-29T17:36:09Z,- leonelRos closed issue by PR 397: [396](https://github.com/hackforla/website/issues/396#event-3176131114) at 2020-03-29 10:36 AM PDT -leonelRos,2020-03-29T17:36:09Z,- leonelRos pull request merged: [397](https://github.com/hackforla/website/pull/397#event-3176131116) at 2020-03-29 10:36 AM PDT -leonelRos,2020-03-29T18:13:47Z,- leonelRos assigned to issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-604641625) at 2020-03-29 11:13 AM PDT -leonelRos,2020-03-29T18:20:35Z,- leonelRos assigned to issue: [384](https://github.com/hackforla/website/issues/384) at 2020-03-29 11:20 AM PDT -leonelRos,2020-03-29T22:44:14Z,- leonelRos opened pull request: [401](https://github.com/hackforla/website/pull/401) at 2020-03-29 03:44 PM PDT -leonelRos,2020-03-30T00:20:28Z,- leonelRos pull request merged: [401](https://github.com/hackforla/website/pull/401#event-3176488866) at 2020-03-29 05:20 PM PDT -leonelRos,2020-03-30T02:28:39Z,- leonelRos unassigned from issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-605689081) at 2020-03-29 07:28 PM PDT -leonelRos,2020-03-30T03:30:29Z,- leonelRos assigned to issue: [393](https://github.com/hackforla/website/issues/393) at 2020-03-29 08:30 PM PDT -leonelRos,2020-04-19T21:31:32Z,- leonelRos commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-616228374) at 2020-04-19 02:31 PM PDT -leonelRos,2020-04-19T23:36:04Z,- leonelRos commented on pull request: [453](https://github.com/hackforla/website/pull/453#issuecomment-616244344) at 2020-04-19 04:36 PM PDT -leonelRos,2020-04-20T17:45:35Z,- leonelRos commented on pull request: [448](https://github.com/hackforla/website/pull/448#issuecomment-616710273) at 2020-04-20 10:45 AM PDT -leonelRos,2020-04-20T17:47:02Z,- leonelRos submitted pull request review: [448](https://github.com/hackforla/website/pull/448#pullrequestreview-396676941) at 2020-04-20 10:47 AM PDT -leonelRos,2020-04-20T17:52:22Z,- leonelRos submitted pull request review: [450](https://github.com/hackforla/website/pull/450#pullrequestreview-396680922) at 2020-04-20 10:52 AM PDT -leonelRos,2020-04-20T17:54:27Z,- leonelRos submitted pull request review: [453](https://github.com/hackforla/website/pull/453#pullrequestreview-396682375) at 2020-04-20 10:54 AM PDT -leonelRos,2020-04-20T18:10:25Z,- leonelRos commented on pull request: [452](https://github.com/hackforla/website/pull/452#issuecomment-616723294) at 2020-04-20 11:10 AM PDT -leonelRos,2020-04-20T18:17:28Z,- leonelRos assigned to issue: [446](https://github.com/hackforla/website/issues/446) at 2020-04-20 11:17 AM PDT -leonelRos,2020-04-20T19:43:51Z,- leonelRos closed issue by PR 448: [446](https://github.com/hackforla/website/issues/446#event-3253300690) at 2020-04-20 12:43 PM PDT -leonelRos,2020-04-22T01:05:31Z,- leonelRos assigned to issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-615993646) at 2020-04-21 06:05 PM PDT -leonelRos,2020-04-22T03:25:25Z,- leonelRos commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-617526427) at 2020-04-21 08:25 PM PDT -leonelRos,2020-04-26T17:08:00Z,- leonelRos assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-619575488) at 2020-04-26 10:08 AM PDT -leonelRos,2020-04-26T17:57:35Z,- leonelRos assigned to issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 10:57 AM PDT -leonelRos,2020-04-26T20:36:19Z,- leonelRos unassigned from issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 01:36 PM PDT -leonelRos,2020-04-26T20:54:25Z,- leonelRos assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:54 PM PDT -leonelRos,2020-04-26T20:55:31Z,- leonelRos unassigned from issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:55 PM PDT -leonelRos,2020-04-26T20:55:44Z,- leonelRos assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:55 PM PDT -leonelRos,2020-04-26T21:01:33Z,- leonelRos closed issue by PR 371: [368](https://github.com/hackforla/website/issues/368#event-3273377028) at 2020-04-26 02:01 PM PDT -leonelRos,2020-04-26T23:51:23Z,- leonelRos commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619644331) at 2020-04-26 04:51 PM PDT -leonelRos,2020-04-27T00:22:10Z,- leonelRos commented on pull request: [467](https://github.com/hackforla/website/pull/467#issuecomment-619648670) at 2020-04-26 05:22 PM PDT -leonelRos,2020-04-27T00:37:29Z,- leonelRos commented on pull request: [468](https://github.com/hackforla/website/pull/468#issuecomment-619651101) at 2020-04-26 05:37 PM PDT -leonelRos,2020-04-27T00:48:00Z,- leonelRos commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619653122) at 2020-04-26 05:48 PM PDT -leonelRos,2020-04-27T00:59:03Z,- leonelRos commented on pull request: [467](https://github.com/hackforla/website/pull/467#issuecomment-619654939) at 2020-04-26 05:59 PM PDT -leonelRos,2020-04-27T01:34:36Z,- leonelRos opened pull request: [470](https://github.com/hackforla/website/pull/470) at 2020-04-26 06:34 PM PDT -leonelRos,2020-05-01T04:41:24Z,- leonelRos pull request merged: [470](https://github.com/hackforla/website/pull/470#event-3292215639) at 2020-04-30 09:41 PM PDT -leonelRos,2020-05-01T05:03:36Z,- leonelRos commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-622249840) at 2020-04-30 10:03 PM PDT -leonelRos,2020-05-02T00:33:06Z,- leonelRos commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-622631447) at 2020-05-01 05:33 PM PDT -leonelRos,2020-05-02T00:34:14Z,- leonelRos opened pull request: [481](https://github.com/hackforla/website/pull/481) at 2020-05-01 05:34 PM PDT -leonelRos,2020-05-02T17:57:40Z,- leonelRos pull request merged: [481](https://github.com/hackforla/website/pull/481#event-3296516336) at 2020-05-02 10:57 AM PDT -leonelRos,2020-05-03T23:45:19Z,- leonelRos unassigned from issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623203351) at 2020-05-03 04:45 PM PDT -leonelRos,2020-05-10T16:50:44Z,- leonelRos commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-626356667) at 2020-05-10 09:50 AM PDT -leonelRos,2020-05-11T04:21:15Z,- leonelRos commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-626461168) at 2020-05-10 09:21 PM PDT -leonelRos,2020-05-11T21:54:48Z,- leonelRos opened pull request: [508](https://github.com/hackforla/website/pull/508) at 2020-05-11 02:54 PM PDT -leonelRos,2020-05-11T23:54:53Z,- leonelRos closed issue as completed: [255](https://github.com/hackforla/website/issues/255#event-3325203583) at 2020-05-11 04:54 PM PDT -leonelRos,2020-05-12T20:14:53Z,- leonelRos pull request merged: [508](https://github.com/hackforla/website/pull/508#event-3329154475) at 2020-05-12 01:14 PM PDT -leonelRos,2020-05-17T18:21:30Z,- leonelRos assigned to issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-624943640) at 2020-05-17 11:21 AM PDT -leonelRos,2020-05-18T04:19:46Z,- leonelRos opened pull request: [527](https://github.com/hackforla/website/pull/527) at 2020-05-17 09:19 PM PDT -leonelRos,2020-05-18T04:19:54Z,- leonelRos pull request merged: [527](https://github.com/hackforla/website/pull/527#event-3345440753) at 2020-05-17 09:19 PM PDT -leonelRos,2020-05-18T04:31:45Z,- leonelRos opened pull request: [528](https://github.com/hackforla/website/pull/528) at 2020-05-17 09:31 PM PDT -leonelRos,2020-05-18T18:09:46Z,- leonelRos closed issue by PR 528: [499](https://github.com/hackforla/website/issues/499#event-3348519810) at 2020-05-18 11:09 AM PDT -leonelRos,2020-05-18T18:09:46Z,- leonelRos pull request merged: [528](https://github.com/hackforla/website/pull/528#event-3348519820) at 2020-05-18 11:09 AM PDT -leonelRos,2020-05-24T18:19:35Z,- leonelRos assigned to issue: [533](https://github.com/hackforla/website/issues/533) at 2020-05-24 11:19 AM PDT -leonelRos,2020-05-24T18:25:08Z,- leonelRos assigned to issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-633255772) at 2020-05-24 11:25 AM PDT -leonelRos,2020-05-26T18:08:45Z,- leonelRos commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-634188434) at 2020-05-26 11:08 AM PDT -leonelRos,2020-05-26T18:32:34Z,- leonelRos commented on issue: [533](https://github.com/hackforla/website/issues/533#issuecomment-634200936) at 2020-05-26 11:32 AM PDT -leonelRos,2020-05-26T21:06:13Z,- leonelRos commented on issue: [533](https://github.com/hackforla/website/issues/533#issuecomment-634279052) at 2020-05-26 02:06 PM PDT -leonelRos,2020-05-26T21:57:29Z,- leonelRos opened pull request: [544](https://github.com/hackforla/website/pull/544) at 2020-05-26 02:57 PM PDT -leonelRos,2020-05-31T18:02:40Z,- leonelRos closed issue by PR 360: [308](https://github.com/hackforla/website/issues/308#event-3390838476) at 2020-05-31 11:02 AM PDT -leonelRos,2020-06-07T01:31:32Z,- leonelRos pull request closed w/o merging: [544](https://github.com/hackforla/website/pull/544#event-3415600807) at 2020-06-06 06:31 PM PDT -leonelRos,2020-06-07T03:30:08Z,- leonelRos commented on issue: [533](https://github.com/hackforla/website/issues/533#issuecomment-640151500) at 2020-06-06 08:30 PM PDT -leonelRos,2020-06-07T03:52:09Z,- leonelRos opened pull request: [563](https://github.com/hackforla/website/pull/563) at 2020-06-06 08:52 PM PDT -leonelRos,2020-06-07T05:11:39Z,- leonelRos pull request closed w/o merging: [563](https://github.com/hackforla/website/pull/563#event-3415839402) at 2020-06-06 10:11 PM PDT -leonelRos,2020-06-07T05:14:01Z,- leonelRos opened pull request: [564](https://github.com/hackforla/website/pull/564) at 2020-06-06 10:14 PM PDT -leonelRos,2020-06-10T02:10:22Z,- leonelRos pull request merged: [564](https://github.com/hackforla/website/pull/564#event-3427499336) at 2020-06-09 07:10 PM PDT -leonelRos,2020-06-21T17:56:18Z,- leonelRos unassigned from issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-647160477) at 2020-06-21 10:56 AM PDT -leonelRos,2020-06-25T05:00:55Z,- leonelRos commented on pull request: [574](https://github.com/hackforla/website/pull/574#issuecomment-649219526) at 2020-06-24 10:00 PM PDT -leonelRos,2020-06-25T05:01:21Z,- leonelRos closed issue by PR 574: [570](https://github.com/hackforla/website/issues/570#event-3480354303) at 2020-06-24 10:01 PM PDT -leonelRos,2020-07-10T20:17:29Z,- leonelRos assigned to issue: [600](https://github.com/hackforla/website/issues/600) at 2020-07-10 01:17 PM PDT -leonelRos,2020-07-11T00:28:22Z,- leonelRos commented on issue: [600](https://github.com/hackforla/website/issues/600#issuecomment-656949250) at 2020-07-10 05:28 PM PDT -leonelRos,2020-07-12T20:05:31Z,- leonelRos commented on pull request: [606](https://github.com/hackforla/website/pull/606#issuecomment-657268753) at 2020-07-12 01:05 PM PDT -leonelRos,2020-07-13T16:17:18Z,- leonelRos closed issue by PR 606: [511](https://github.com/hackforla/website/issues/511#event-3540293450) at 2020-07-13 09:17 AM PDT -leonelRos,2020-07-13T19:10:42Z,- leonelRos commented on issue: [600](https://github.com/hackforla/website/issues/600#issuecomment-657739651) at 2020-07-13 12:10 PM PDT -leonelRos,2020-07-15T02:17:02Z,- leonelRos closed issue by PR 608: [346](https://github.com/hackforla/website/issues/346#event-3546582121) at 2020-07-14 07:17 PM PDT -leonelRos,2020-07-17T17:38:59Z,- leonelRos unassigned from issue: [600](https://github.com/hackforla/website/issues/600#issuecomment-657739651) at 2020-07-17 10:38 AM PDT -leonelRos,2020-07-26T18:35:07Z,- leonelRos opened issue: [643](https://github.com/hackforla/website/issues/643) at 2020-07-26 11:35 AM PDT -leonelRos,2020-08-12T04:08:07Z,- leonelRos commented on pull request: [679](https://github.com/hackforla/website/pull/679#issuecomment-672560607) at 2020-08-11 09:08 PM PDT -leonelRos,2020-08-12T04:08:53Z,- leonelRos closed issue as completed: [674](https://github.com/hackforla/website/issues/674#event-3645887105) at 2020-08-11 09:08 PM PDT -leonelRos,2020-08-12T04:31:58Z,- leonelRos commented on pull request: [675](https://github.com/hackforla/website/pull/675#issuecomment-672566436) at 2020-08-11 09:31 PM PDT -leonelRos,2020-08-12T06:28:38Z,- leonelRos commented on pull request: [675](https://github.com/hackforla/website/pull/675#issuecomment-672636674) at 2020-08-11 11:28 PM PDT -leonelRos,2020-08-16T16:43:32Z,- leonelRos closed issue by PR 675: [645](https://github.com/hackforla/website/issues/645#event-3659450819) at 2020-08-16 09:43 AM PDT -leonelRos,2020-09-03T21:50:25Z,- leonelRos opened pull request: [715](https://github.com/hackforla/website/pull/715) at 2020-09-03 02:50 PM PDT -leonelRos,2020-09-03T23:07:13Z,- leonelRos pull request closed w/o merging: [715](https://github.com/hackforla/website/pull/715#event-3727130353) at 2020-09-03 04:07 PM PDT -leonelRos,2020-09-07T18:16:16Z,- leonelRos opened pull request: [722](https://github.com/hackforla/website/pull/722) at 2020-09-07 11:16 AM PDT -leonelRos,2020-09-09T05:25:24Z,- leonelRos commented on pull request: [722](https://github.com/hackforla/website/pull/722#issuecomment-689311809) at 2020-09-08 10:25 PM PDT -leonelRos,2020-09-20T17:46:47Z,- leonelRos pull request merged: [722](https://github.com/hackforla/website/pull/722#event-3786274992) at 2020-09-20 10:46 AM PDT -lethallynx22,2025-05-28T19:41:50Z,- lethallynx22 opened issue: [8163](https://github.com/hackforla/website/issues/8163) at 2025-05-28 12:41 PM PDT -lethallynx22,2025-05-29T18:13:08Z,- lethallynx22 opened issue: [8164](https://github.com/hackforla/website/issues/8164) at 2025-05-29 11:13 AM PDT -lethallynx22,2025-05-29T18:32:59Z,- lethallynx22 opened issue: [8165](https://github.com/hackforla/website/issues/8165) at 2025-05-29 11:32 AM PDT -lethallynx22,2025-06-01T21:35:12Z,- lethallynx22 opened issue: [8168](https://github.com/hackforla/website/issues/8168) at 2025-06-01 02:35 PM PDT -liamtirney,5065,SKILLS ISSUE -liamtirney,2023-07-26T02:55:50Z,- liamtirney opened issue: [5065](https://github.com/hackforla/website/issues/5065) at 2023-07-25 07:55 PM PDT -liamtirney,2023-07-26T02:56:29Z,- liamtirney assigned to issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1650898228) at 2023-07-25 07:56 PM PDT -liamtirney,2023-09-12T19:08:07Z,- liamtirney assigned to issue: [5377](https://github.com/hackforla/website/issues/5377) at 2023-09-12 12:08 PM PDT -liamtirney,2023-09-12T19:34:49Z,- liamtirney commented on issue: [5377](https://github.com/hackforla/website/issues/5377#issuecomment-1716305550) at 2023-09-12 12:34 PM PDT -liamtirney,2023-09-12T19:55:50Z,- liamtirney commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1716335370) at 2023-09-12 12:55 PM PDT -liamtirney,2023-09-13T00:34:32Z,- liamtirney commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1716764875) at 2023-09-12 05:34 PM PDT -liamtirney,2023-09-13T16:36:22Z,- liamtirney opened pull request: [5521](https://github.com/hackforla/website/pull/5521) at 2023-09-13 09:36 AM PDT -liamtirney,2023-09-15T05:32:13Z,- liamtirney pull request merged: [5521](https://github.com/hackforla/website/pull/5521#event-10379209799) at 2023-09-14 10:32 PM PDT -liamtirney,2023-09-18T17:28:00Z,- liamtirney assigned to issue: [5427](https://github.com/hackforla/website/issues/5427#issuecomment-1706336996) at 2023-09-18 10:28 AM PDT -liamtirney,2023-09-18T17:52:55Z,- liamtirney commented on issue: [5427](https://github.com/hackforla/website/issues/5427#issuecomment-1724097112) at 2023-09-18 10:52 AM PDT -liamtirney,2023-09-18T18:48:42Z,- liamtirney opened pull request: [5553](https://github.com/hackforla/website/pull/5553) at 2023-09-18 11:48 AM PDT -liamtirney,2023-09-19T06:12:56Z,- liamtirney pull request merged: [5553](https://github.com/hackforla/website/pull/5553#event-10406115189) at 2023-09-18 11:12 PM PDT -liamtirney,2023-09-27T03:49:34Z,- liamtirney assigned to issue: [5595](https://github.com/hackforla/website/issues/5595) at 2023-09-26 08:49 PM PDT -liamtirney,2023-09-27T03:55:45Z,- liamtirney commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1736632454) at 2023-09-26 08:55 PM PDT -liamtirney,2023-09-30T04:26:56Z,- liamtirney unassigned from issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1736632454) at 2023-09-29 09:26 PM PDT -liamtirney,2023-10-24T15:24:46Z,- liamtirney assigned to issue: [5763](https://github.com/hackforla/website/issues/5763) at 2023-10-24 08:24 AM PDT -liamtirney,2023-10-24T15:39:53Z,- liamtirney commented on issue: [5763](https://github.com/hackforla/website/issues/5763#issuecomment-1777507995) at 2023-10-24 08:39 AM PDT -liamtirney,2023-10-24T19:12:11Z,- liamtirney opened pull request: [5771](https://github.com/hackforla/website/pull/5771) at 2023-10-24 12:12 PM PDT -liamtirney,2023-10-24T22:31:08Z,- liamtirney pull request merged: [5771](https://github.com/hackforla/website/pull/5771#event-10759931484) at 2023-10-24 03:31 PM PDT -liamtirney,2023-10-25T13:25:14Z,- liamtirney commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1779271814) at 2023-10-25 06:25 AM PDT -liamtirney,2023-10-26T16:55:40Z,- liamtirney pull request merged: [5771](https://github.com/hackforla/website/pull/5771#event-10782519415) at 2023-10-26 09:55 AM PDT -lilyarj,3270,SKILLS ISSUE -lilyarj,2022-06-20T21:41:47Z,- lilyarj opened issue: [3270](https://github.com/hackforla/website/issues/3270) at 2022-06-20 02:41 PM PDT -lilyarj,2022-06-20T21:56:33Z,- lilyarj assigned to issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1160868607) at 2022-06-20 02:56 PM PDT -lilyarj,2022-06-21T04:20:23Z,- lilyarj assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-20 09:20 PM PDT -lilyarj,2022-06-21T04:36:42Z,- lilyarj unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-20 09:36 PM PDT -lilyarj,2022-06-21T04:44:31Z,- lilyarj assigned to issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1048142134) at 2022-06-20 09:44 PM PDT -lilyarj,2022-06-21T04:48:13Z,- lilyarj unassigned from issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1048142134) at 2022-06-20 09:48 PM PDT -lilyarj,2022-06-21T04:53:00Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-20 09:53 PM PDT -lilyarj,2022-06-21T05:17:44Z,- lilyarj unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-20 10:17 PM PDT -lilyarj,2022-06-21T17:46:48Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 10:46 AM PDT -lilyarj,2022-06-21T17:58:14Z,- lilyarj unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 10:58 AM PDT -lilyarj,2022-06-22T02:02:35Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 07:02 PM PDT -lilyarj,2022-06-22T02:04:03Z,- lilyarj unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 07:04 PM PDT -lilyarj,2022-06-22T02:23:21Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 07:23 PM PDT -lilyarj,2022-06-22T02:48:00Z,- lilyarj commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1162571500) at 2022-06-21 07:48 PM PDT -lilyarj,2022-06-22T18:50:42Z,- lilyarj opened pull request: [3287](https://github.com/hackforla/website/pull/3287) at 2022-06-22 11:50 AM PDT -lilyarj,2022-06-22T19:02:53Z,- lilyarj commented on issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1163497773) at 2022-06-22 12:02 PM PDT -lilyarj,2022-06-22T19:03:55Z,- lilyarj commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1163498689) at 2022-06-22 12:03 PM PDT -lilyarj,2022-06-22T19:16:57Z,- lilyarj closed issue as completed: [3270](https://github.com/hackforla/website/issues/3270#event-6859322868) at 2022-06-22 12:16 PM PDT -lilyarj,2022-06-24T17:46:05Z,- lilyarj assigned to issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1116748918) at 2022-06-24 10:46 AM PDT -lilyarj,2022-06-24T17:48:30Z,- lilyarj unassigned from issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1165797936) at 2022-06-24 10:48 AM PDT -lilyarj,2022-06-26T05:19:41Z,- lilyarj pull request merged: [3287](https://github.com/hackforla/website/pull/3287#event-6879802375) at 2022-06-25 10:19 PM PDT -lilyarj,2022-06-26T16:32:28Z,- lilyarj assigned to issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1165797936) at 2022-06-26 09:32 AM PDT -lilyarj,2022-06-26T16:34:31Z,- lilyarj commented on issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1166581636) at 2022-06-26 09:34 AM PDT -lilyarj,2022-06-26T16:41:01Z,- lilyarj opened pull request: [3304](https://github.com/hackforla/website/pull/3304) at 2022-06-26 09:41 AM PDT -lilyarj,2022-06-26T16:48:14Z,- lilyarj commented on pull request: [3303](https://github.com/hackforla/website/pull/3303#issuecomment-1166585093) at 2022-06-26 09:48 AM PDT -lilyarj,2022-06-26T17:04:29Z,- lilyarj submitted pull request review: [3303](https://github.com/hackforla/website/pull/3303#pullrequestreview-1019458134) at 2022-06-26 10:04 AM PDT -lilyarj,2022-06-26T17:08:31Z,- lilyarj commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1166590177) at 2022-06-26 10:08 AM PDT -lilyarj,2022-06-26T17:10:26Z,- lilyarj closed issue as completed: [3270](https://github.com/hackforla/website/issues/3270#event-6880655158) at 2022-06-26 10:10 AM PDT -lilyarj,2022-06-26T17:11:21Z,- lilyarj commented on issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1166590932) at 2022-06-26 10:11 AM PDT -lilyarj,2022-06-27T15:02:13Z,- lilyarj pull request merged: [3304](https://github.com/hackforla/website/pull/3304#event-6886148818) at 2022-06-27 08:02 AM PDT -lilyarj,2022-06-27T17:08:20Z,- lilyarj assigned to issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1149136146) at 2022-06-27 10:08 AM PDT -lilyarj,2022-06-27T17:09:03Z,- lilyarj commented on issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1167626765) at 2022-06-27 10:09 AM PDT -lilyarj,2022-06-27T17:11:39Z,- lilyarj commented on issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1167629697) at 2022-06-27 10:11 AM PDT -lilyarj,2022-06-27T17:28:58Z,- lilyarj opened pull request: [3318](https://github.com/hackforla/website/pull/3318) at 2022-06-27 10:28 AM PDT -lilyarj,2022-06-27T17:29:58Z,- lilyarj commented on pull request: [3317](https://github.com/hackforla/website/pull/3317#issuecomment-1167651488) at 2022-06-27 10:29 AM PDT -lilyarj,2022-06-27T17:40:11Z,- lilyarj submitted pull request review: [3317](https://github.com/hackforla/website/pull/3317#pullrequestreview-1020556339) at 2022-06-27 10:40 AM PDT -lilyarj,2022-06-27T17:50:28Z,- lilyarj commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1167677302) at 2022-06-27 10:50 AM PDT -lilyarj,2022-06-28T02:16:50Z,- lilyarj commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1168137331) at 2022-06-27 07:16 PM PDT -lilyarj,2022-06-28T18:27:15Z,- lilyarj commented on pull request: [3319](https://github.com/hackforla/website/pull/3319#issuecomment-1169076357) at 2022-06-28 11:27 AM PDT -lilyarj,2022-06-28T18:39:33Z,- lilyarj submitted pull request review: [3319](https://github.com/hackforla/website/pull/3319#pullrequestreview-1022229049) at 2022-06-28 11:39 AM PDT -lilyarj,2022-06-28T18:40:42Z,- lilyarj commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1169091615) at 2022-06-28 11:40 AM PDT -lilyarj,2022-06-28T18:49:35Z,- lilyarj submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1022240174) at 2022-06-28 11:49 AM PDT -lilyarj,2022-06-29T02:18:37Z,- lilyarj commented on pull request: [3322](https://github.com/hackforla/website/pull/3322#issuecomment-1169460523) at 2022-06-28 07:18 PM PDT -lilyarj,2022-06-29T18:05:50Z,- lilyarj submitted pull request review: [3322](https://github.com/hackforla/website/pull/3322#pullrequestreview-1023791818) at 2022-06-29 11:05 AM PDT -lilyarj,2022-06-29T18:18:21Z,- lilyarj commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1170335222) at 2022-06-29 11:18 AM PDT -lilyarj,2022-06-29T18:39:14Z,- lilyarj commented on pull request: [3324](https://github.com/hackforla/website/pull/3324#issuecomment-1170358021) at 2022-06-29 11:39 AM PDT -lilyarj,2022-06-29T18:42:11Z,- lilyarj submitted pull request review: [3324](https://github.com/hackforla/website/pull/3324#pullrequestreview-1023832522) at 2022-06-29 11:42 AM PDT -lilyarj,2022-07-01T02:55:24Z,- lilyarj pull request closed w/o merging: [3318](https://github.com/hackforla/website/pull/3318#event-6915209851) at 2022-06-30 07:55 PM PDT -lilyarj,2022-07-01T03:21:11Z,- lilyarj opened pull request: [3327](https://github.com/hackforla/website/pull/3327) at 2022-06-30 08:21 PM PDT -lilyarj,2022-07-04T20:24:41Z,- lilyarj pull request merged: [3327](https://github.com/hackforla/website/pull/3327#event-6930020126) at 2022-07-04 01:24 PM PDT -lilyarj,2022-07-05T05:24:58Z,- lilyarj assigned to issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1090962450) at 2022-07-04 10:24 PM PDT -lilyarj,2022-07-05T16:54:26Z,- lilyarj commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1175284282) at 2022-07-05 09:54 AM PDT -lilyarj,2022-07-10T17:09:41Z,- lilyarj commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1179764952) at 2022-07-10 10:09 AM PDT -lilyarj,2022-07-11T18:13:18Z,- lilyarj unassigned from issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1179764952) at 2022-07-11 11:13 AM PDT -lilyarj,2022-07-11T18:14:08Z,- lilyarj commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1180716761) at 2022-07-11 11:14 AM PDT -lilyarj,2022-07-11T18:50:46Z,- lilyarj commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1180749668) at 2022-07-11 11:50 AM PDT -lilyarj,2022-07-11T19:21:15Z,- lilyarj commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1180775655) at 2022-07-11 12:21 PM PDT -lilyarj,2022-07-12T17:39:18Z,- lilyarj assigned to issue: [2222](https://github.com/hackforla/website/issues/2222#issuecomment-912706743) at 2022-07-12 10:39 AM PDT -lilyarj,2022-07-13T04:09:58Z,- lilyarj submitted pull request review: [3348](https://github.com/hackforla/website/pull/3348#pullrequestreview-1036738596) at 2022-07-12 09:09 PM PDT -lilyarj,2022-07-13T04:10:59Z,- lilyarj commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182743794) at 2022-07-12 09:10 PM PDT -lilyarj,2022-07-13T04:11:45Z,- lilyarj submitted pull request review: [3363](https://github.com/hackforla/website/pull/3363#pullrequestreview-1036739393) at 2022-07-12 09:11 PM PDT -lilyarj,2022-07-13T04:13:02Z,- lilyarj commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1182744779) at 2022-07-12 09:13 PM PDT -lilyarj,2022-07-13T04:13:51Z,- lilyarj commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1182745256) at 2022-07-12 09:13 PM PDT -lilyarj,2022-07-13T17:07:10Z,- lilyarj commented on issue: [2222](https://github.com/hackforla/website/issues/2222#issuecomment-1183473043) at 2022-07-13 10:07 AM PDT -lilyarj,2022-07-13T17:14:33Z,- lilyarj opened pull request: [3367](https://github.com/hackforla/website/pull/3367) at 2022-07-13 10:14 AM PDT -lilyarj,2022-07-13T17:14:59Z,- lilyarj pull request closed w/o merging: [3367](https://github.com/hackforla/website/pull/3367#event-6987816450) at 2022-07-13 10:14 AM PDT -lilyarj,2022-07-13T18:51:34Z,- lilyarj opened pull request: [3368](https://github.com/hackforla/website/pull/3368) at 2022-07-13 11:51 AM PDT -lilyarj,2022-07-13T18:57:41Z,- lilyarj commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1183570557) at 2022-07-13 11:57 AM PDT -lilyarj,2022-07-15T23:14:52Z,- lilyarj submitted pull request review: [3372](https://github.com/hackforla/website/pull/3372#pullrequestreview-1040881605) at 2022-07-15 04:14 PM PDT -lilyarj,2022-07-15T23:19:50Z,- lilyarj commented on pull request: [3371](https://github.com/hackforla/website/pull/3371#issuecomment-1186018127) at 2022-07-15 04:19 PM PDT -lilyarj,2022-07-15T23:20:27Z,- lilyarj submitted pull request review: [3371](https://github.com/hackforla/website/pull/3371#pullrequestreview-1040883281) at 2022-07-15 04:20 PM PDT -lilyarj,2022-07-15T23:21:44Z,- lilyarj commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186018755) at 2022-07-15 04:21 PM PDT -lilyarj,2022-07-18T16:51:32Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1187745105) at 2022-07-18 09:51 AM PDT -lilyarj,2022-07-18T18:18:13Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188039216) at 2022-07-18 11:18 AM PDT -lilyarj,2022-07-18T18:52:41Z,- lilyarj commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1188124723) at 2022-07-18 11:52 AM PDT -lilyarj,2022-07-18T19:19:32Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188164805) at 2022-07-18 12:19 PM PDT -lilyarj,2022-07-19T00:31:57Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188467566) at 2022-07-18 05:31 PM PDT -lilyarj,2022-07-19T00:59:38Z,- lilyarj commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1188481501) at 2022-07-18 05:59 PM PDT -lilyarj,2022-07-19T17:18:59Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1189355017) at 2022-07-19 10:18 AM PDT -lilyarj,2022-07-19T17:19:52Z,- lilyarj commented on pull request: [3390](https://github.com/hackforla/website/pull/3390#issuecomment-1189355879) at 2022-07-19 10:19 AM PDT -lilyarj,2022-07-19T17:23:33Z,- lilyarj submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043827530) at 2022-07-19 10:23 AM PDT -lilyarj,2022-07-19T18:11:19Z,- lilyarj commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189401892) at 2022-07-19 11:11 AM PDT -lilyarj,2022-07-20T01:59:50Z,- lilyarj commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1189720066) at 2022-07-19 06:59 PM PDT -lilyarj,2022-07-20T02:00:58Z,- lilyarj submitted pull request review: [3395](https://github.com/hackforla/website/pull/3395#pullrequestreview-1044287002) at 2022-07-19 07:00 PM PDT -lilyarj,2022-07-20T03:07:32Z,- lilyarj opened issue: [3397](https://github.com/hackforla/website/issues/3397) at 2022-07-19 08:07 PM PDT -lilyarj,2022-07-20T17:26:48Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190554689) at 2022-07-20 10:26 AM PDT -lilyarj,2022-07-20T23:07:48Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190854582) at 2022-07-20 04:07 PM PDT -lilyarj,2022-07-21T00:44:25Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190910552) at 2022-07-20 05:44 PM PDT -lilyarj,2022-07-21T18:02:33Z,- lilyarj opened pull request: [3413](https://github.com/hackforla/website/pull/3413) at 2022-07-21 11:02 AM PDT -lilyarj,2022-07-21T18:02:47Z,- lilyarj pull request closed w/o merging: [3413](https://github.com/hackforla/website/pull/3413#event-7040427830) at 2022-07-21 11:02 AM PDT -lilyarj,2022-07-22T00:42:46Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1192064343) at 2022-07-21 05:42 PM PDT -lilyarj,2022-07-22T00:50:40Z,- lilyarj submitted pull request review: [3393](https://github.com/hackforla/website/pull/3393#pullrequestreview-1047271792) at 2022-07-21 05:50 PM PDT -lilyarj,2022-07-22T03:18:32Z,- lilyarj pull request merged: [3368](https://github.com/hackforla/website/pull/3368#event-7042768250) at 2022-07-21 08:18 PM PDT -lilyarj,2022-07-22T19:31:42Z,- lilyarj assigned to issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1007373563) at 2022-07-22 12:31 PM PDT -lilyarj,2022-07-22T23:03:29Z,- lilyarj commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1192993993) at 2022-07-22 04:03 PM PDT -lilyarj,2022-07-22T23:04:13Z,- lilyarj commented on pull request: [3421](https://github.com/hackforla/website/pull/3421#issuecomment-1192994290) at 2022-07-22 04:04 PM PDT -lilyarj,2022-07-23T21:08:58Z,- lilyarj submitted pull request review: [3421](https://github.com/hackforla/website/pull/3421#pullrequestreview-1048569606) at 2022-07-23 02:08 PM PDT -lilyarj,2022-07-25T15:14:13Z,- lilyarj commented on pull request: [3425](https://github.com/hackforla/website/pull/3425#issuecomment-1194183762) at 2022-07-25 08:14 AM PDT -lilyarj,2022-07-25T15:18:10Z,- lilyarj submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1049646026) at 2022-07-25 08:18 AM PDT -lilyarj,2022-07-25T15:25:34Z,- lilyarj submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1049657630) at 2022-07-25 08:25 AM PDT -lilyarj,2022-08-10T20:38:51Z,- lilyarj commented on pull request: [3457](https://github.com/hackforla/website/pull/3457#issuecomment-1211245347) at 2022-08-10 01:38 PM PDT -lilyarj,2022-08-12T16:50:21Z,- lilyarj unassigned from issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1212807524) at 2022-08-12 09:50 AM PDT -lilyarj,2022-08-12T17:46:28Z,- lilyarj submitted pull request review: [3457](https://github.com/hackforla/website/pull/3457#pullrequestreview-1071434645) at 2022-08-12 10:46 AM PDT -lilyarj,2022-08-17T02:22:45Z,- lilyarj assigned to issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1212807524) at 2022-08-16 07:22 PM PDT -lilyarj,2022-08-17T02:23:21Z,- lilyarj commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1217383164) at 2022-08-16 07:23 PM PDT -lilyarj,2022-08-19T20:56:36Z,- lilyarj submitted pull request review: [3475](https://github.com/hackforla/website/pull/3475#pullrequestreview-1079347405) at 2022-08-19 01:56 PM PDT -lilyarj,2022-08-31T00:55:31Z,- lilyarj unassigned from issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1228152247) at 2022-08-30 05:55 PM PDT -lilyarj,2022-08-31T00:56:27Z,- lilyarj assigned to issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1179823406) at 2022-08-30 05:56 PM PDT -lilyarj,2022-08-31T00:56:52Z,- lilyarj commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1232326148) at 2022-08-30 05:56 PM PDT -lilyarj,2022-08-31T01:10:47Z,- lilyarj opened pull request: [3506](https://github.com/hackforla/website/pull/3506) at 2022-08-30 06:10 PM PDT -lilyarj,2022-08-31T01:12:36Z,- lilyarj commented on pull request: [3506](https://github.com/hackforla/website/pull/3506#issuecomment-1232335518) at 2022-08-30 06:12 PM PDT -lilyarj,2022-08-31T02:33:44Z,- lilyarj pull request closed w/o merging: [3506](https://github.com/hackforla/website/pull/3506#event-7292367508) at 2022-08-30 07:33 PM PDT -lilyarj,2022-08-31T02:35:14Z,- lilyarj unassigned from issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1232326148) at 2022-08-30 07:35 PM PDT -lilyarj,2022-08-31T16:46:22Z,- lilyarj assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1003755937) at 2022-08-31 09:46 AM PDT -lilyarj,2022-08-31T16:56:39Z,- lilyarj commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1233188742) at 2022-08-31 09:56 AM PDT -lilyarj,2022-08-31T16:59:45Z,- lilyarj commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1233191722) at 2022-08-31 09:59 AM PDT -lilyarj,2022-08-31T23:42:19Z,- lilyarj commented on pull request: [3513](https://github.com/hackforla/website/pull/3513#issuecomment-1233558504) at 2022-08-31 04:42 PM PDT -lilyarj,2022-08-31T23:44:09Z,- lilyarj submitted pull request review: [3513](https://github.com/hackforla/website/pull/3513#pullrequestreview-1092621097) at 2022-08-31 04:44 PM PDT -lilyarj,2022-09-02T00:48:48Z,- lilyarj commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1234947433) at 2022-09-01 05:48 PM PDT -lilyarj,2022-09-02T00:48:58Z,- lilyarj commented on pull request: [3514](https://github.com/hackforla/website/pull/3514#issuecomment-1234947506) at 2022-09-01 05:48 PM PDT -lilyarj,2022-09-02T01:31:46Z,- lilyarj submitted pull request review: [3515](https://github.com/hackforla/website/pull/3515#pullrequestreview-1094215702) at 2022-09-01 06:31 PM PDT -lilyarj,2022-09-02T01:35:30Z,- lilyarj submitted pull request review: [3514](https://github.com/hackforla/website/pull/3514#pullrequestreview-1094217339) at 2022-09-01 06:35 PM PDT -lilyarj,2022-09-02T23:00:20Z,- lilyarj commented on pull request: [3516](https://github.com/hackforla/website/pull/3516#issuecomment-1235962716) at 2022-09-02 04:00 PM PDT -lilyarj,2022-09-02T23:02:29Z,- lilyarj submitted pull request review: [3516](https://github.com/hackforla/website/pull/3516#pullrequestreview-1095412007) at 2022-09-02 04:02 PM PDT -lilyarj,2022-09-07T14:45:08Z,- lilyarj commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1239488760) at 2022-09-07 07:45 AM PDT -lilyarj,2022-09-07T23:46:53Z,- lilyarj submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1099939444) at 2022-09-07 04:46 PM PDT -lilyarj,2022-09-12T23:58:01Z,- lilyarj commented on pull request: [3534](https://github.com/hackforla/website/pull/3534#issuecomment-1244724463) at 2022-09-12 04:58 PM PDT -lilyarj,2022-09-18T15:54:23Z,- lilyarj commented on pull request: [3560](https://github.com/hackforla/website/pull/3560#issuecomment-1250336064) at 2022-09-18 08:54 AM PDT -lilyarj,2022-09-18T15:59:35Z,- lilyarj submitted pull request review: [3560](https://github.com/hackforla/website/pull/3560#pullrequestreview-1111561172) at 2022-09-18 08:59 AM PDT -lilyarj,2022-09-18T16:02:16Z,- lilyarj submitted pull request review: [3559](https://github.com/hackforla/website/pull/3559#pullrequestreview-1111561512) at 2022-09-18 09:02 AM PDT -lilyarj,2022-09-18T16:08:51Z,- lilyarj assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1198483596) at 2022-09-18 09:08 AM PDT -lilyarj,2022-09-18T16:09:42Z,- lilyarj commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1250339398) at 2022-09-18 09:09 AM PDT -lilyarj,2022-09-23T22:37:46Z,- lilyarj commented on pull request: [3578](https://github.com/hackforla/website/pull/3578#issuecomment-1256753523) at 2022-09-23 03:37 PM PDT -lilyarj,2022-09-23T22:38:04Z,- lilyarj commented on pull request: [3577](https://github.com/hackforla/website/pull/3577#issuecomment-1256753950) at 2022-09-23 03:38 PM PDT -lilyarj,2022-09-23T22:38:19Z,- lilyarj commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1256754340) at 2022-09-23 03:38 PM PDT -lilyarj,2022-09-23T22:38:59Z,- lilyarj submitted pull request review: [3576](https://github.com/hackforla/website/pull/3576#pullrequestreview-1119096088) at 2022-09-23 03:38 PM PDT -lilyarj,2022-09-23T22:39:47Z,- lilyarj submitted pull request review: [3577](https://github.com/hackforla/website/pull/3577#pullrequestreview-1119096411) at 2022-09-23 03:39 PM PDT -lilyarj,2022-09-23T22:40:41Z,- lilyarj submitted pull request review: [3578](https://github.com/hackforla/website/pull/3578#pullrequestreview-1119096721) at 2022-09-23 03:40 PM PDT -lilyarj,2022-10-04T01:15:59Z,- lilyarj unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1250339398) at 2022-10-03 06:15 PM PDT -lilyarj,2022-10-09T16:31:41Z,- lilyarj commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1272579136) at 2022-10-09 09:31 AM PDT -lilyarj,2022-10-09T16:41:23Z,- lilyarj submitted pull request review: [3600](https://github.com/hackforla/website/pull/3600#pullrequestreview-1135364886) at 2022-10-09 09:41 AM PDT -LilyLuo001,3246,SKILLS ISSUE -LilyLuo001,2022-06-14T04:00:04Z,- LilyLuo001 opened issue: [3246](https://github.com/hackforla/website/issues/3246) at 2022-06-13 09:00 PM PDT -LilyLuo001,2022-06-15T03:17:53Z,- LilyLuo001 assigned to issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1154682469) at 2022-06-14 08:17 PM PDT -LilyLuo001,2022-06-15T03:18:35Z,- LilyLuo001 closed issue as completed: [3246](https://github.com/hackforla/website/issues/3246#event-6809321511) at 2022-06-14 08:18 PM PDT -Limeload,6349,SKILLS ISSUE -Limeload,2024-02-21T05:05:03Z,- Limeload opened issue: [6349](https://github.com/hackforla/website/issues/6349) at 2024-02-20 09:05 PM PST -Limeload,2024-02-21T06:28:12Z,- Limeload commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1955978491) at 2024-02-20 10:28 PM PST -Limeload,2024-02-28T18:59:26Z,- Limeload assigned to issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1955978491) at 2024-02-28 10:59 AM PST -Limeload,2024-03-01T08:26:17Z,- Limeload commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1972733725) at 2024-03-01 12:26 AM PST -Limeload,2024-03-02T21:55:50Z,- Limeload commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1974919044) at 2024-03-02 01:55 PM PST -Limeload,2024-03-03T12:11:24Z,- Limeload assigned to issue: [5840](https://github.com/hackforla/website/issues/5840) at 2024-03-03 04:11 AM PST -Limeload,2024-03-03T12:28:15Z,- Limeload commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-1975144427) at 2024-03-03 04:28 AM PST -Limeload,2024-03-22T17:35:00Z,- Limeload opened pull request: [6506](https://github.com/hackforla/website/pull/6506) at 2024-03-22 10:35 AM PDT -Limeload,2024-03-22T17:42:03Z,- Limeload commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2015599154) at 2024-03-22 10:42 AM PDT -Limeload,2024-03-22T17:46:15Z,- Limeload closed issue as completed: [6349](https://github.com/hackforla/website/issues/6349#event-12219022322) at 2024-03-22 10:46 AM PDT -Limeload,2024-04-09T17:33:43Z,- Limeload commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2045751454) at 2024-04-09 10:33 AM PDT -Limeload,2024-04-11T19:34:44Z,- Limeload commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2050384328) at 2024-04-11 12:34 PM PDT -Limeload,2024-04-12T17:00:17Z,- Limeload pull request merged: [6506](https://github.com/hackforla/website/pull/6506#event-12452039614) at 2024-04-12 10:00 AM PDT -Limeload,2024-05-17T21:48:43Z,- Limeload assigned to issue: [6720](https://github.com/hackforla/website/issues/6720) at 2024-05-17 02:48 PM PDT -Limeload,2024-05-17T22:00:36Z,- Limeload commented on issue: [6720](https://github.com/hackforla/website/issues/6720#issuecomment-2118430589) at 2024-05-17 03:00 PM PDT -Limeload,2024-05-21T20:41:38Z,- Limeload opened pull request: [6874](https://github.com/hackforla/website/pull/6874) at 2024-05-21 01:41 PM PDT -Limeload,2024-05-26T00:40:28Z,- Limeload assigned to issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2119380584) at 2024-05-25 05:40 PM PDT -Limeload,2024-05-26T00:43:37Z,- Limeload commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2131816744) at 2024-05-25 05:43 PM PDT -Limeload,2024-05-26T04:37:32Z,- Limeload pull request merged: [6874](https://github.com/hackforla/website/pull/6874#event-12935000057) at 2024-05-25 09:37 PM PDT -Limeload,2024-07-01T17:35:51Z,- Limeload assigned to issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2195669231) at 2024-07-01 10:35 AM PDT -Limeload,2024-07-01T17:37:50Z,- Limeload commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2200692014) at 2024-07-01 10:37 AM PDT -Limeload,2024-07-23T20:26:14Z,- Limeload unassigned from issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2201524234) at 2024-07-23 01:26 PM PDT -Linda-OC,2021-04-21T03:36:37Z,- Linda-OC assigned to issue: [1026](https://github.com/hackforla/website/issues/1026) at 2021-04-20 08:36 PM PDT -Linda-OC,2021-04-24T01:57:15Z,- Linda-OC opened pull request: [1447](https://github.com/hackforla/website/pull/1447) at 2021-04-23 06:57 PM PDT -Linda-OC,2021-04-24T02:03:31Z,- Linda-OC pull request merged: [1447](https://github.com/hackforla/website/pull/1447#event-4639397862) at 2021-04-23 07:03 PM PDT -Linda-OC,2021-04-24T02:27:40Z,- Linda-OC commented on pull request: [1447](https://github.com/hackforla/website/pull/1447#issuecomment-826020388) at 2021-04-23 07:27 PM PDT -Linda-OC,2021-04-28T03:04:36Z,- Linda-OC assigned to issue: [1452](https://github.com/hackforla/website/issues/1452) at 2021-04-27 08:04 PM PDT -Linda-OC,2021-05-01T06:39:21Z,- Linda-OC assigned to issue: [1497](https://github.com/hackforla/website/issues/1497) at 2021-04-30 11:39 PM PDT -Linda-OC,2021-05-05T03:45:59Z,- Linda-OC opened pull request: [1513](https://github.com/hackforla/website/pull/1513) at 2021-05-04 08:45 PM PDT -Linda-OC,2021-05-06T23:41:18Z,- Linda-OC pull request merged: [1513](https://github.com/hackforla/website/pull/1513#event-4698448249) at 2021-05-06 04:41 PM PDT -Linda-OC,2021-05-11T19:27:30Z,- Linda-OC assigned to issue: [1165](https://github.com/hackforla/website/issues/1165) at 2021-05-11 12:27 PM PDT -Linda-OC,2021-05-18T09:35:02Z,- Linda-OC commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-05-18 02:35 AM PDT -Linda-OC,2021-05-19T02:49:26Z,- Linda-OC unassigned from issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-05-18 07:49 PM PDT -Linda-OC,2021-05-19T02:53:32Z,- Linda-OC assigned to issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-841860177) at 2021-05-18 07:53 PM PDT -Linda-OC,2021-05-24T20:17:23Z,- Linda-OC commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-847307592) at 2021-05-24 01:17 PM PDT -Linda-OC,2021-05-26T04:48:04Z,- Linda-OC commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-848450017) at 2021-05-25 09:48 PM PDT -Linda-OC,2021-05-30T08:16:22Z,- Linda-OC opened pull request: [1670](https://github.com/hackforla/website/pull/1670) at 2021-05-30 01:16 AM PDT -Linda-OC,2021-05-30T18:17:09Z,- Linda-OC assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -Linda-OC,2021-06-11T01:53:16Z,- Linda-OC commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859202653) at 2021-06-10 06:53 PM PDT -Linda-OC,2021-06-11T11:50:24Z,- Linda-OC commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859525914) at 2021-06-11 04:50 AM PDT -Linda-OC,2021-06-12T02:43:59Z,- Linda-OC assigned to issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-859228890) at 2021-06-11 07:43 PM PDT -Linda-OC,2021-06-12T22:27:41Z,- Linda-OC unassigned from issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-859228890) at 2021-06-12 03:27 PM PDT -Linda-OC,2021-06-14T07:18:37Z,- Linda-OC commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-860446151) at 2021-06-14 12:18 AM PDT -Linda-OC,2021-06-14T08:23:50Z,- Linda-OC commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-860491522) at 2021-06-14 01:23 AM PDT -Linda-OC,2021-06-14T08:27:12Z,- Linda-OC assigned to issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-06-14 01:27 AM PDT -Linda-OC,2021-06-14T08:36:27Z,- Linda-OC unassigned from issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-06-14 01:36 AM PDT -Linda-OC,2021-06-16T02:56:40Z,- Linda-OC assigned to issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-859236590) at 2021-06-15 07:56 PM PDT -Linda-OC,2021-06-17T00:35:45Z,- Linda-OC pull request merged: [1670](https://github.com/hackforla/website/pull/1670#event-4901073313) at 2021-06-16 05:35 PM PDT -Linda-OC,2021-06-19T17:01:30Z,- Linda-OC unassigned from issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-860446151) at 2021-06-19 10:01 AM PDT -Linda-OC,2021-06-19T17:28:59Z,- Linda-OC assigned to issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-860446151) at 2021-06-19 10:28 AM PDT -Linda-OC,2021-06-22T16:59:59Z,- Linda-OC pull request merged: [1670](https://github.com/hackforla/website/pull/1670#event-4924089909) at 2021-06-22 09:59 AM PDT -Linda-OC,2021-07-04T17:36:44Z,- Linda-OC unassigned from issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-870074857) at 2021-07-04 10:36 AM PDT -linds-fonnes,2021-09-07T23:33:52Z,- linds-fonnes assigned to issue: [2177](https://github.com/hackforla/website/issues/2177) at 2021-09-07 04:33 PM PDT -linds-fonnes,2021-09-08T00:57:20Z,- linds-fonnes opened pull request: [2230](https://github.com/hackforla/website/pull/2230) at 2021-09-07 05:57 PM PDT -linds-fonnes,2021-09-10T04:34:38Z,- linds-fonnes pull request merged: [2230](https://github.com/hackforla/website/pull/2230#event-5282320063) at 2021-09-09 09:34 PM PDT -linds-fonnes,2021-09-14T01:13:31Z,- linds-fonnes assigned to issue: [2047](https://github.com/hackforla/website/issues/2047) at 2021-09-13 06:13 PM PDT -linds-fonnes,2021-09-14T21:56:30Z,- linds-fonnes opened pull request: [2262](https://github.com/hackforla/website/pull/2262) at 2021-09-14 02:56 PM PDT -linds-fonnes,2021-09-14T22:45:55Z,- linds-fonnes submitted pull request review: [2261](https://github.com/hackforla/website/pull/2261#pullrequestreview-754518353) at 2021-09-14 03:45 PM PDT -linds-fonnes,2021-09-19T03:20:17Z,- linds-fonnes pull request merged: [2262](https://github.com/hackforla/website/pull/2262#event-5324109241) at 2021-09-18 08:20 PM PDT -linds-fonnes,2021-09-20T22:41:30Z,- linds-fonnes assigned to issue: [2116](https://github.com/hackforla/website/issues/2116#issuecomment-900828024) at 2021-09-20 03:41 PM PDT -linds-fonnes,2021-09-26T02:06:44Z,- linds-fonnes commented on issue: [2116](https://github.com/hackforla/website/issues/2116#issuecomment-927214521) at 2021-09-25 07:06 PM PDT -linds-fonnes,2021-09-29T03:25:53Z,- linds-fonnes opened pull request: [2313](https://github.com/hackforla/website/pull/2313) at 2021-09-28 08:25 PM PDT -linds-fonnes,2021-10-10T06:01:08Z,- linds-fonnes commented on issue: [2116](https://github.com/hackforla/website/issues/2116#issuecomment-939412933) at 2021-10-09 11:01 PM PDT -linds-fonnes,2021-10-10T23:48:18Z,- linds-fonnes commented on pull request: [2313](https://github.com/hackforla/website/pull/2313#issuecomment-939575475) at 2021-10-10 04:48 PM PDT -linds-fonnes,2021-10-12T07:16:04Z,- linds-fonnes pull request merged: [2313](https://github.com/hackforla/website/pull/2313#event-5447439054) at 2021-10-12 12:16 AM PDT -lindsay-jin,6944,SKILLS ISSUE -lindsay-jin,2024-06-04T02:48:31Z,- lindsay-jin opened issue: [6944](https://github.com/hackforla/website/issues/6944) at 2024-06-03 07:48 PM PDT -lindsay-jin,2024-06-04T02:51:10Z,- lindsay-jin assigned to issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2146468618) at 2024-06-03 07:51 PM PDT -lindseyindev,2547,SKILLS ISSUE -lindseyindev,2021-12-06T00:17:17Z,- lindseyindev opened issue: [2547](https://github.com/hackforla/website/issues/2547) at 2021-12-05 04:17 PM PST -lindseyindev,2021-12-06T00:17:57Z,- lindseyindev assigned to issue: [2547](https://github.com/hackforla/website/issues/2547#issuecomment-986332714) at 2021-12-05 04:17 PM PST -lindseyindev,2021-12-11T02:04:03Z,- lindseyindev assigned to issue: [2444](https://github.com/hackforla/website/issues/2444#issuecomment-960388898) at 2021-12-10 06:04 PM PST -lindseyindev,2021-12-11T02:06:27Z,- lindseyindev commented on issue: [2444](https://github.com/hackforla/website/issues/2444#issuecomment-991411588) at 2021-12-10 06:06 PM PST -lindseyindev,2021-12-12T20:18:42Z,- lindseyindev closed issue as completed: [2547](https://github.com/hackforla/website/issues/2547#event-5753248670) at 2021-12-12 12:18 PM PST -lindseyindev,2021-12-13T03:17:46Z,- lindseyindev opened pull request: [2583](https://github.com/hackforla/website/pull/2583) at 2021-12-12 07:17 PM PST -lindseyindev,2021-12-13T03:23:43Z,- lindseyindev commented on issue: [2444](https://github.com/hackforla/website/issues/2444#issuecomment-992075397) at 2021-12-12 07:23 PM PST -lindseyindev,2021-12-13T18:30:23Z,- lindseyindev commented on pull request: [2583](https://github.com/hackforla/website/pull/2583#issuecomment-992753611) at 2021-12-13 10:30 AM PST -lindseyindev,2021-12-13T18:33:59Z,- lindseyindev assigned to issue: [2194](https://github.com/hackforla/website/issues/2194#issuecomment-912421166) at 2021-12-13 10:33 AM PST -lindseyindev,2021-12-13T18:39:17Z,- lindseyindev commented on issue: [2194](https://github.com/hackforla/website/issues/2194#issuecomment-992760447) at 2021-12-13 10:39 AM PST -lindseyindev,2021-12-14T01:54:40Z,- lindseyindev pull request merged: [2583](https://github.com/hackforla/website/pull/2583#event-5760940732) at 2021-12-13 05:54 PM PST -lindseyindev,2021-12-14T06:34:59Z,- lindseyindev opened pull request: [2587](https://github.com/hackforla/website/pull/2587) at 2021-12-13 10:34 PM PST -lindseyindev,2021-12-15T23:17:50Z,- lindseyindev pull request merged: [2587](https://github.com/hackforla/website/pull/2587#event-5774867540) at 2021-12-15 03:17 PM PST -lindseyindev,2021-12-16T20:12:24Z,- lindseyindev assigned to issue: [2465](https://github.com/hackforla/website/issues/2465#issuecomment-963672512) at 2021-12-16 12:12 PM PST -lindseyindev,2021-12-16T20:14:03Z,- lindseyindev commented on issue: [2465](https://github.com/hackforla/website/issues/2465#issuecomment-996161974) at 2021-12-16 12:14 PM PST -lindseyindev,2021-12-18T19:22:37Z,- lindseyindev opened pull request: [2599](https://github.com/hackforla/website/pull/2599) at 2021-12-18 11:22 AM PST -lindseyindev,2021-12-18T19:33:53Z,- lindseyindev commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-997274374) at 2021-12-18 11:33 AM PST -lindseyindev,2021-12-20T02:45:47Z,- lindseyindev assigned to issue: [2483](https://github.com/hackforla/website/issues/2483#issuecomment-968431484) at 2021-12-19 06:45 PM PST -lindseyindev,2021-12-20T02:46:43Z,- lindseyindev commented on issue: [2483](https://github.com/hackforla/website/issues/2483#issuecomment-997546226) at 2021-12-19 06:46 PM PST -lindseyindev,2021-12-22T03:12:14Z,- lindseyindev pull request merged: [2599](https://github.com/hackforla/website/pull/2599#event-5802361342) at 2021-12-21 07:12 PM PST -lindseyindev,2021-12-24T01:23:00Z,- lindseyindev opened pull request: [2624](https://github.com/hackforla/website/pull/2624) at 2021-12-23 05:23 PM PST -lindseyindev,2021-12-24T01:26:48Z,- lindseyindev commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1000598735) at 2021-12-23 05:26 PM PST -lindseyindev,2021-12-26T16:38:19Z,- lindseyindev assigned to issue: [2081](https://github.com/hackforla/website/issues/2081) at 2021-12-26 08:38 AM PST -lindseyindev,2021-12-26T16:38:48Z,- lindseyindev commented on issue: [2081](https://github.com/hackforla/website/issues/2081#issuecomment-1001210342) at 2021-12-26 08:38 AM PST -lindseyindev,2021-12-29T22:24:56Z,- lindseyindev commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1002797798) at 2021-12-29 02:24 PM PST -lindseyindev,2021-12-30T00:49:10Z,- lindseyindev pull request merged: [2624](https://github.com/hackforla/website/pull/2624#event-5826413993) at 2021-12-29 04:49 PM PST -lindseyindev,2021-12-30T04:23:40Z,- lindseyindev opened pull request: [2645](https://github.com/hackforla/website/pull/2645) at 2021-12-29 08:23 PM PST -lindseyindev,2021-12-30T04:33:44Z,- lindseyindev commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1002869859) at 2021-12-29 08:33 PM PST -lindseyindev,2022-01-01T18:43:55Z,- lindseyindev commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1003599437) at 2022-01-01 10:43 AM PST -lindseyindev,2022-01-01T19:37:33Z,- lindseyindev commented on pull request: [2648](https://github.com/hackforla/website/pull/2648#issuecomment-1003607060) at 2022-01-01 11:37 AM PST -lindseyindev,2022-01-01T19:51:43Z,- lindseyindev assigned to issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-963658780) at 2022-01-01 11:51 AM PST -lindseyindev,2022-01-01T19:53:22Z,- lindseyindev commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1003608533) at 2022-01-01 11:53 AM PST -lindseyindev,2022-01-03T18:44:54Z,- lindseyindev submitted pull request review: [2648](https://github.com/hackforla/website/pull/2648#pullrequestreview-842959787) at 2022-01-03 10:44 AM PST -lindseyindev,2022-01-05T02:49:19Z,- lindseyindev commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1005336283) at 2022-01-04 06:49 PM PST -lindseyindev,2022-01-05T03:20:37Z,- lindseyindev submitted pull request review: [2648](https://github.com/hackforla/website/pull/2648#pullrequestreview-844184599) at 2022-01-04 07:20 PM PST -lindseyindev,2022-01-05T07:26:18Z,- lindseyindev commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1005443452) at 2022-01-04 11:26 PM PST -lindseyindev,2022-01-07T03:38:29Z,- lindseyindev commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1007115723) at 2022-01-06 07:38 PM PST -lindseyindev,2022-01-10T18:04:26Z,- lindseyindev commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1009187605) at 2022-01-10 10:04 AM PST -lindseyindev,2022-01-10T18:05:16Z,- lindseyindev commented on pull request: [2678](https://github.com/hackforla/website/pull/2678#issuecomment-1009188447) at 2022-01-10 10:05 AM PST -lindseyindev,2022-01-11T03:50:31Z,- lindseyindev submitted pull request review: [2678](https://github.com/hackforla/website/pull/2678#pullrequestreview-848575559) at 2022-01-10 07:50 PM PST -lindseyindev,2022-01-13T00:42:35Z,- lindseyindev commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1011589463) at 2022-01-12 04:42 PM PST -lindseyindev,2022-01-16T04:36:37Z,- lindseyindev commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1013809482) at 2022-01-15 08:36 PM PST -lindseyindev,2022-01-18T03:28:00Z,- lindseyindev opened pull request: [2696](https://github.com/hackforla/website/pull/2696) at 2022-01-17 07:28 PM PST -lindseyindev,2022-01-18T03:47:27Z,- lindseyindev submitted pull request review: [2693](https://github.com/hackforla/website/pull/2693#pullrequestreview-854920691) at 2022-01-17 07:47 PM PST -lindseyindev,2022-01-21T03:17:34Z,- lindseyindev commented on pull request: [2696](https://github.com/hackforla/website/pull/2696#issuecomment-1018129669) at 2022-01-20 07:17 PM PST -lindseyindev,2022-01-21T03:39:48Z,- lindseyindev submitted pull request review: [2700](https://github.com/hackforla/website/pull/2700#pullrequestreview-859080275) at 2022-01-20 07:39 PM PST -lindseyindev,2022-01-23T06:32:26Z,- lindseyindev assigned to issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-907894023) at 2022-01-22 10:32 PM PST -lindseyindev,2022-01-23T06:33:32Z,- lindseyindev commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1019425031) at 2022-01-22 10:33 PM PST -lindseyindev,2022-01-24T21:49:30Z,- lindseyindev pull request merged: [2696](https://github.com/hackforla/website/pull/2696#event-5945711311) at 2022-01-24 01:49 PM PST -lindseyindev,2022-01-26T03:00:50Z,- lindseyindev commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1021816095) at 2022-01-25 07:00 PM PST -lindseyindev,2022-01-26T03:26:37Z,- lindseyindev commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1021827874) at 2022-01-25 07:26 PM PST -lindseyindev,2022-01-26T04:05:29Z,- lindseyindev submitted pull request review: [2718](https://github.com/hackforla/website/pull/2718#pullrequestreview-863096284) at 2022-01-25 08:05 PM PST -lindseyindev,2022-01-28T06:06:34Z,- lindseyindev commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1023915226) at 2022-01-27 10:06 PM PST -lindseyindev,2022-01-31T05:27:17Z,- lindseyindev commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1025394241) at 2022-01-30 09:27 PM PST -lindseyindev,2022-01-31T06:09:05Z,- lindseyindev commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1025410357) at 2022-01-30 10:09 PM PST -lindseyindev,2022-02-06T16:18:12Z,- lindseyindev commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1030864990) at 2022-02-06 08:18 AM PST -lindseyindev,2022-02-06T16:35:39Z,- lindseyindev commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1030867970) at 2022-02-06 08:35 AM PST -lindseyindev,2022-02-07T21:10:23Z,- lindseyindev pull request merged: [2645](https://github.com/hackforla/website/pull/2645#event-6022326978) at 2022-02-07 01:10 PM PST -lindseyindev,2022-02-11T07:15:07Z,- lindseyindev commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1035935745) at 2022-02-10 11:15 PM PST -lindseyindev,2022-02-12T07:18:09Z,- lindseyindev opened pull request: [2767](https://github.com/hackforla/website/pull/2767) at 2022-02-11 11:18 PM PST -lindseyindev,2022-02-21T04:40:07Z,- lindseyindev submitted pull request review: [2819](https://github.com/hackforla/website/pull/2819#pullrequestreview-888192927) at 2022-02-20 08:40 PM PST -lindseyindev,2022-02-21T23:44:51Z,- lindseyindev pull request merged: [2767](https://github.com/hackforla/website/pull/2767#event-6114501571) at 2022-02-21 03:44 PM PST -lindseyindev,2022-02-22T23:00:03Z,- lindseyindev assigned to issue: [2743](https://github.com/hackforla/website/issues/2743#issuecomment-1030950232) at 2022-02-22 03:00 PM PST -lindseyindev,2022-02-22T23:00:26Z,- lindseyindev commented on issue: [2743](https://github.com/hackforla/website/issues/2743#issuecomment-1048292042) at 2022-02-22 03:00 PM PST -lindseyindev,2022-02-27T04:26:44Z,- lindseyindev opened pull request: [2894](https://github.com/hackforla/website/pull/2894) at 2022-02-26 08:26 PM PST -lindseyindev,2022-03-01T20:53:19Z,- lindseyindev pull request merged: [2894](https://github.com/hackforla/website/pull/2894#event-6164828536) at 2022-03-01 12:53 PM PST -lindseyindev,2022-11-06T19:15:41Z,- lindseyindev unassigned from issue: [2204](https://github.com/hackforla/website/issues/2204#event-6114501569) at 2022-11-06 11:15 AM PST -lindseyindev,2022-11-06T19:40:56Z,- lindseyindev assigned to issue: [2204](https://github.com/hackforla/website/issues/2204#event-7747808850) at 2022-11-06 11:40 AM PST -linndaqun,2019-11-23T04:00:11Z,- linndaqun assigned to issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -linndaqun,2019-11-26T03:24:12Z,- linndaqun assigned to issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:24 PM PST -linndaqun,2020-02-16T19:21:17Z,- linndaqun unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-584990444) at 2020-02-16 11:21 AM PST -linndaqun,2020-03-30T04:37:52Z,- linndaqun unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-03-29 09:37 PM PDT -LiQuiD-404,2023-08-21T07:53:30Z,- LiQuiD-404 commented on issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1685831197) at 2023-08-21 12:53 AM PDT -LiQuiD-404,2023-09-02T07:28:50Z,- LiQuiD-404 commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1703751301) at 2023-09-02 12:28 AM PDT -LiQuiD-404,2023-09-03T05:57:49Z,- LiQuiD-404 commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1704015244) at 2023-09-02 10:57 PM PDT -locb65,4972,SKILLS ISSUE -locb65,2023-07-18T01:53:57Z,- locb65 opened issue: [4972](https://github.com/hackforla/website/issues/4972) at 2023-07-17 06:53 PM PDT -locb65,2023-07-18T02:58:39Z,- locb65 assigned to issue: [4972](https://github.com/hackforla/website/issues/4972) at 2023-07-17 07:58 PM PDT -locb65,2023-07-28T11:18:49Z,- locb65 commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1655516097) at 2023-07-28 04:18 AM PDT -locb65,2023-08-01T15:41:20Z,- locb65 assigned to issue: [5041](https://github.com/hackforla/website/issues/5041#issuecomment-1651684925) at 2023-08-01 08:41 AM PDT -locb65,2023-08-09T22:33:36Z,- locb65 opened pull request: [5170](https://github.com/hackforla/website/pull/5170) at 2023-08-09 03:33 PM PDT -locb65,2023-08-09T22:41:48Z,- locb65 commented on issue: [5041](https://github.com/hackforla/website/issues/5041#issuecomment-1672275159) at 2023-08-09 03:41 PM PDT -locb65,2023-08-09T22:42:20Z,- locb65 commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1672275655) at 2023-08-09 03:42 PM PDT -locb65,2023-08-09T22:45:49Z,- locb65 commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1672278517) at 2023-08-09 03:45 PM PDT -locb65,2023-08-14T16:58:19Z,- locb65 pull request merged: [5170](https://github.com/hackforla/website/pull/5170#event-10089161917) at 2023-08-14 09:58 AM PDT -locb65,2023-08-18T11:31:34Z,- locb65 commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1683784081) at 2023-08-18 04:31 AM PDT -locb65,2023-09-05T22:20:28Z,- locb65 commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1707389662) at 2023-09-05 03:20 PM PDT -locb65,2023-09-05T22:26:31Z,- locb65 assigned to issue: [5383](https://github.com/hackforla/website/issues/5383) at 2023-09-05 03:26 PM PDT -locb65,2023-09-05T22:54:10Z,- locb65 opened pull request: [5451](https://github.com/hackforla/website/pull/5451) at 2023-09-05 03:54 PM PDT -locb65,2023-09-05T22:57:13Z,- locb65 commented on issue: [5383](https://github.com/hackforla/website/issues/5383#issuecomment-1707415656) at 2023-09-05 03:57 PM PDT -locb65,2023-09-09T05:27:05Z,- locb65 pull request merged: [5451](https://github.com/hackforla/website/pull/5451#event-10323519255) at 2023-09-08 10:27 PM PDT -locb65,2023-09-15T02:04:28Z,- locb65 assigned to issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1720326012) at 2023-09-14 07:04 PM PDT -locb65,2023-09-15T02:08:54Z,- locb65 commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1720386634) at 2023-09-14 07:08 PM PDT -locb65,2023-09-20T00:39:30Z,- locb65 commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1726720176) at 2023-09-19 05:39 PM PDT -locb65,2023-10-02T03:05:57Z,- locb65 closed issue as completed: [4972](https://github.com/hackforla/website/issues/4972#event-10521506865) at 2023-10-01 08:05 PM PDT -locb65,2023-10-04T20:50:57Z,- locb65 commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1747621610) at 2023-10-04 01:50 PM PDT -Lol-Whut,2021-02-28T19:13:22Z,- Lol-Whut assigned to issue: [896](https://github.com/hackforla/website/issues/896) at 2021-02-28 11:13 AM PST -Lol-Whut,2021-03-02T22:25:02Z,- Lol-Whut opened pull request: [1149](https://github.com/hackforla/website/pull/1149) at 2021-03-02 02:25 PM PST -Lol-Whut,2021-03-03T01:11:05Z,- Lol-Whut pull request merged: [1149](https://github.com/hackforla/website/pull/1149#event-4398909851) at 2021-03-02 05:11 PM PST -Lol-Whut,2021-03-03T03:51:12Z,- Lol-Whut opened issue: [1156](https://github.com/hackforla/website/issues/1156) at 2021-03-02 07:51 PM PST -Lol-Whut,2021-03-03T03:51:13Z,- Lol-Whut assigned to issue: [1156](https://github.com/hackforla/website/issues/1156) at 2021-03-02 07:51 PM PST -Lol-Whut,2021-03-07T17:07:59Z,- Lol-Whut opened pull request: [1170](https://github.com/hackforla/website/pull/1170) at 2021-03-07 09:07 AM PST -Lol-Whut,2021-03-07T18:23:53Z,- Lol-Whut closed issue by PR 1170: [1156](https://github.com/hackforla/website/issues/1156#event-4418322509) at 2021-03-07 10:23 AM PST -Lol-Whut,2021-03-07T18:23:53Z,- Lol-Whut pull request merged: [1170](https://github.com/hackforla/website/pull/1170#event-4418322511) at 2021-03-07 10:23 AM PST -Lol-Whut,2021-03-07T18:33:12Z,- Lol-Whut assigned to issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-792327162) at 2021-03-07 10:33 AM PST -Lol-Whut,2021-03-07T18:35:34Z,- Lol-Whut commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-792330300) at 2021-03-07 10:35 AM PST -Lol-Whut,2021-03-14T15:59:59Z,- Lol-Whut commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-798931770) at 2021-03-14 08:59 AM PDT -Lol-Whut,2021-03-14T19:24:55Z,- Lol-Whut opened pull request: [1205](https://github.com/hackforla/website/pull/1205) at 2021-03-14 12:24 PM PDT -Lol-Whut,2021-03-14T20:43:49Z,- Lol-Whut commented on pull request: [1205](https://github.com/hackforla/website/pull/1205#issuecomment-798976456) at 2021-03-14 01:43 PM PDT -Lol-Whut,2021-03-15T15:14:09Z,- Lol-Whut pull request closed w/o merging: [1205](https://github.com/hackforla/website/pull/1205#event-4459357577) at 2021-03-15 08:14 AM PDT -Lol-Whut,2021-03-15T15:49:26Z,- Lol-Whut opened pull request: [1206](https://github.com/hackforla/website/pull/1206) at 2021-03-15 08:49 AM PDT -Lol-Whut,2021-03-15T16:20:53Z,- Lol-Whut commented on pull request: [1204](https://github.com/hackforla/website/pull/1204#issuecomment-799552134) at 2021-03-15 09:20 AM PDT -Lol-Whut,2021-03-15T16:21:14Z,- Lol-Whut pull request merged: [1206](https://github.com/hackforla/website/pull/1206#event-4459758207) at 2021-03-15 09:21 AM PDT -Lol-Whut,2021-03-15T16:54:25Z,- Lol-Whut assigned to issue: [1164](https://github.com/hackforla/website/issues/1164) at 2021-03-15 09:54 AM PDT -Lol-Whut,2021-03-16T20:23:07Z,- Lol-Whut commented on pull request: [1204](https://github.com/hackforla/website/pull/1204#issuecomment-800578167) at 2021-03-16 01:23 PM PDT -Lol-Whut,2021-03-16T20:25:32Z,- Lol-Whut submitted pull request review: [1204](https://github.com/hackforla/website/pull/1204#pullrequestreview-613691813) at 2021-03-16 01:25 PM PDT -Lol-Whut,2021-03-17T02:26:31Z,- Lol-Whut commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-800743629) at 2021-03-16 07:26 PM PDT -Lol-Whut,2021-03-17T02:35:14Z,- Lol-Whut commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-800746413) at 2021-03-16 07:35 PM PDT -Lol-Whut,2021-03-17T02:44:28Z,- Lol-Whut submitted pull request review: [1204](https://github.com/hackforla/website/pull/1204#pullrequestreview-613876870) at 2021-03-16 07:44 PM PDT -Lol-Whut,2021-03-17T02:59:54Z,- Lol-Whut submitted pull request review: [1215](https://github.com/hackforla/website/pull/1215#pullrequestreview-613882435) at 2021-03-16 07:59 PM PDT -Lol-Whut,2021-03-17T03:00:21Z,- Lol-Whut commented on pull request: [1215](https://github.com/hackforla/website/pull/1215#issuecomment-800754939) at 2021-03-16 08:00 PM PDT -Lol-Whut,2021-03-17T03:00:32Z,- Lol-Whut closed issue by PR 1215: [1103](https://github.com/hackforla/website/issues/1103#event-4467839115) at 2021-03-16 08:00 PM PDT -Lol-Whut,2021-03-17T03:12:51Z,- Lol-Whut commented on pull request: [1204](https://github.com/hackforla/website/pull/1204#issuecomment-800759547) at 2021-03-16 08:12 PM PDT -Lol-Whut,2021-03-17T03:13:16Z,- Lol-Whut closed issue by PR 1204: [1166](https://github.com/hackforla/website/issues/1166#event-4467869452) at 2021-03-16 08:13 PM PDT -Lol-Whut,2021-03-21T16:28:00Z,- Lol-Whut commented on issue: [1164](https://github.com/hackforla/website/issues/1164#issuecomment-803616045) at 2021-03-21 09:28 AM PDT -Lol-Whut,2021-03-24T03:43:14Z,- Lol-Whut opened pull request: [1320](https://github.com/hackforla/website/pull/1320) at 2021-03-23 08:43 PM PDT -Lol-Whut,2021-03-24T03:46:22Z,- Lol-Whut assigned to issue: [1202](https://github.com/hackforla/website/issues/1202) at 2021-03-23 08:46 PM PDT -Lol-Whut,2021-03-24T21:15:42Z,- Lol-Whut pull request merged: [1320](https://github.com/hackforla/website/pull/1320#event-4504506885) at 2021-03-24 02:15 PM PDT -Lol-Whut,2021-03-28T16:04:42Z,- Lol-Whut commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-808917145) at 2021-03-28 09:04 AM PDT -Lol-Whut,2021-03-31T02:31:22Z,- Lol-Whut submitted pull request review: [1340](https://github.com/hackforla/website/pull/1340#pullrequestreview-624844347) at 2021-03-30 07:31 PM PDT -Lol-Whut,2021-03-31T02:50:47Z,- Lol-Whut submitted pull request review: [1339](https://github.com/hackforla/website/pull/1339#pullrequestreview-624850816) at 2021-03-30 07:50 PM PDT -Lol-Whut,2021-04-04T15:36:00Z,- Lol-Whut commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-813053582) at 2021-04-04 08:36 AM PDT -Lol-Whut,2021-04-04T18:51:38Z,- Lol-Whut commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-813082141) at 2021-04-04 11:51 AM PDT -Lol-Whut,2021-04-04T19:19:58Z,- Lol-Whut assigned to issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-04-04 12:19 PM PDT -Lol-Whut,2021-04-07T00:17:24Z,- Lol-Whut opened pull request: [1364](https://github.com/hackforla/website/pull/1364) at 2021-04-06 05:17 PM PDT -Lol-Whut,2021-04-08T16:29:55Z,- Lol-Whut pull request merged: [1364](https://github.com/hackforla/website/pull/1364#event-4569745498) at 2021-04-08 09:29 AM PDT -Lol-Whut,2021-04-21T02:41:10Z,- Lol-Whut closed issue by PR 1422: [1023](https://github.com/hackforla/website/issues/1023#event-4622428990) at 2021-04-20 07:41 PM PDT -Lol-Whut,2021-04-21T02:41:29Z,- Lol-Whut commented on issue: [1023](https://github.com/hackforla/website/issues/1023#issuecomment-823735557) at 2021-04-20 07:41 PM PDT -Lol-Whut,2021-04-21T02:49:47Z,- Lol-Whut commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-823738324) at 2021-04-20 07:49 PM PDT -Lol-Whut,2021-04-21T03:21:31Z,- Lol-Whut commented on issue: [1342](https://github.com/hackforla/website/issues/1342#issuecomment-823748650) at 2021-04-20 08:21 PM PDT -Lol-Whut,2021-04-21T03:22:16Z,- Lol-Whut assigned to issue: [1378](https://github.com/hackforla/website/issues/1378) at 2021-04-20 08:22 PM PDT -Lol-Whut,2021-04-21T03:29:15Z,- Lol-Whut commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823750826) at 2021-04-20 08:29 PM PDT -Lol-Whut,2021-04-21T03:49:37Z,- Lol-Whut opened issue: [1426](https://github.com/hackforla/website/issues/1426) at 2021-04-20 08:49 PM PDT -Lol-Whut,2021-04-21T03:53:35Z,- Lol-Whut opened issue: [1427](https://github.com/hackforla/website/issues/1427) at 2021-04-20 08:53 PM PDT -Lol-Whut,2021-05-05T01:59:19Z,- Lol-Whut commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-832365031) at 2021-05-04 06:59 PM PDT -Lol-Whut,2021-05-05T02:11:31Z,- Lol-Whut opened issue: [1510](https://github.com/hackforla/website/issues/1510) at 2021-05-04 07:11 PM PDT -Lol-Whut,2021-05-05T02:20:00Z,- Lol-Whut opened issue: [1512](https://github.com/hackforla/website/issues/1512) at 2021-05-04 07:20 PM PDT -Lol-Whut,2021-05-05T02:53:31Z,- Lol-Whut submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-651805229) at 2021-05-04 07:53 PM PDT -Lol-Whut,2021-05-05T02:57:11Z,- Lol-Whut submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-651806021) at 2021-05-04 07:57 PM PDT -Lol-Whut,2021-05-26T02:59:57Z,- Lol-Whut unassigned from issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-848316515) at 2021-05-25 07:59 PM PDT -Lol-Whut,2021-06-27T17:48:42Z,- Lol-Whut unassigned from issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-06-27 10:48 AM PDT -lola3736,2024-08-28T06:36:18Z,- lola3736 opened issue: [7362](https://github.com/hackforla/website/issues/7362) at 2024-08-27 11:36 PM PDT -lola3736,2024-08-28T06:36:18Z,- lola3736 assigned to issue: [7362](https://github.com/hackforla/website/issues/7362) at 2024-08-27 11:36 PM PDT -lola3736,2024-09-13T19:18:32Z,- lola3736 unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2314435631) at 2024-09-13 12:18 PM PDT -lopezpedres,2522,SKILLS ISSUE -lopezpedres,2021-11-30T03:43:18Z,- lopezpedres opened issue: [2522](https://github.com/hackforla/website/issues/2522) at 2021-11-29 07:43 PM PST -lopezpedres,2021-11-30T03:44:49Z,- lopezpedres assigned to issue: [2522](https://github.com/hackforla/website/issues/2522) at 2021-11-29 07:44 PM PST -lopezpedres,2021-12-01T02:48:37Z,- lopezpedres commented on issue: [2522](https://github.com/hackforla/website/issues/2522#issuecomment-983233047) at 2021-11-30 06:48 PM PST -lopezpedres,2021-12-01T19:50:26Z,- lopezpedres closed issue as completed: [2522](https://github.com/hackforla/website/issues/2522#event-5701435437) at 2021-12-01 11:50 AM PST -lopezpedres,2021-12-01T19:53:22Z,- lopezpedres assigned to issue: [2433](https://github.com/hackforla/website/issues/2433#issuecomment-958168887) at 2021-12-01 11:53 AM PST -lopezpedres,2021-12-01T23:12:53Z,- lopezpedres opened pull request: [2532](https://github.com/hackforla/website/pull/2532) at 2021-12-01 03:12 PM PST -lopezpedres,2021-12-02T03:30:14Z,- lopezpedres assigned to issue: [2235](https://github.com/hackforla/website/issues/2235) at 2021-12-01 07:30 PM PST -lopezpedres,2021-12-02T03:37:33Z,- lopezpedres commented on issue: [2235](https://github.com/hackforla/website/issues/2235#issuecomment-984263302) at 2021-12-01 07:37 PM PST -lopezpedres,2021-12-03T01:58:38Z,- lopezpedres opened pull request: [2540](https://github.com/hackforla/website/pull/2540) at 2021-12-02 05:58 PM PST -lopezpedres,2021-12-04T23:42:25Z,- lopezpedres pull request merged: [2532](https://github.com/hackforla/website/pull/2532#event-5716179438) at 2021-12-04 03:42 PM PST -lopezpedres,2021-12-04T23:47:13Z,- lopezpedres pull request closed w/o merging: [2540](https://github.com/hackforla/website/pull/2540#event-5716192181) at 2021-12-04 03:47 PM PST -lopezpedres,2021-12-05T06:43:00Z,- lopezpedres opened pull request: [2545](https://github.com/hackforla/website/pull/2545) at 2021-12-04 10:43 PM PST -lopezpedres,2021-12-05T23:09:37Z,- lopezpedres submitted pull request review: [2546](https://github.com/hackforla/website/pull/2546#pullrequestreview-823446113) at 2021-12-05 03:09 PM PST -lopezpedres,2021-12-05T23:42:15Z,- lopezpedres submitted pull request review: [2538](https://github.com/hackforla/website/pull/2538#pullrequestreview-823450053) at 2021-12-05 03:42 PM PST -lopezpedres,2021-12-06T00:09:24Z,- lopezpedres commented on pull request: [2538](https://github.com/hackforla/website/pull/2538#issuecomment-986330465) at 2021-12-05 04:09 PM PST -lopezpedres,2021-12-08T22:24:46Z,- lopezpedres assigned to issue: [2296](https://github.com/hackforla/website/issues/2296#issuecomment-927235170) at 2021-12-08 02:24 PM PST -lopezpedres,2021-12-08T22:28:28Z,- lopezpedres commented on issue: [2296](https://github.com/hackforla/website/issues/2296#issuecomment-989278833) at 2021-12-08 02:28 PM PST -lopezpedres,2021-12-09T04:20:18Z,- lopezpedres pull request merged: [2545](https://github.com/hackforla/website/pull/2545#event-5738204445) at 2021-12-08 08:20 PM PST -lopezpedres,2021-12-09T21:26:50Z,- lopezpedres opened pull request: [2566](https://github.com/hackforla/website/pull/2566) at 2021-12-09 01:26 PM PST -lopezpedres,2021-12-12T20:03:33Z,- lopezpedres submitted pull request review: [2575](https://github.com/hackforla/website/pull/2575#pullrequestreview-829664018) at 2021-12-12 12:03 PM PST -lopezpedres,2021-12-14T21:11:30Z,- lopezpedres commented on pull request: [2566](https://github.com/hackforla/website/pull/2566#issuecomment-994013890) at 2021-12-14 01:11 PM PST -lopezpedres,2021-12-15T02:06:28Z,- lopezpedres pull request merged: [2566](https://github.com/hackforla/website/pull/2566#event-5768294589) at 2021-12-14 06:06 PM PST -lopezpedres,2021-12-15T04:26:03Z,- lopezpedres submitted pull request review: [2587](https://github.com/hackforla/website/pull/2587#pullrequestreview-832284084) at 2021-12-14 08:26 PM PST -lopezpedres,2021-12-15T04:38:46Z,- lopezpedres assigned to issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-948119363) at 2021-12-14 08:38 PM PST -lopezpedres,2021-12-15T04:43:48Z,- lopezpedres commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-994287788) at 2021-12-14 08:43 PM PST -lopezpedres,2021-12-15T23:07:03Z,- lopezpedres opened pull request: [2590](https://github.com/hackforla/website/pull/2590) at 2021-12-15 03:07 PM PST -lopezpedres,2021-12-16T05:07:45Z,- lopezpedres pull request merged: [2590](https://github.com/hackforla/website/pull/2590#event-5775872526) at 2021-12-15 09:07 PM PST -lopezpedres,2021-12-16T22:30:25Z,- lopezpedres submitted pull request review: [2593](https://github.com/hackforla/website/pull/2593#pullrequestreview-834665978) at 2021-12-16 02:30 PM PST -lopezpedres,2021-12-22T02:06:28Z,- lopezpedres submitted pull request review: [2599](https://github.com/hackforla/website/pull/2599#pullrequestreview-838010331) at 2021-12-21 06:06 PM PST -lopezpedres,2021-12-26T02:44:06Z,- lopezpedres commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1001099041) at 2021-12-25 06:44 PM PST -lopezpedres,2021-12-27T19:50:56Z,- lopezpedres submitted pull request review: [2624](https://github.com/hackforla/website/pull/2624#pullrequestreview-840540161) at 2021-12-27 11:50 AM PST -lopezpedres,2021-12-27T20:23:52Z,- lopezpedres opened pull request: [2635](https://github.com/hackforla/website/pull/2635) at 2021-12-27 12:23 PM PST -lopezpedres,2021-12-27T20:25:54Z,- lopezpedres commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1001740229) at 2021-12-27 12:25 PM PST -lopezpedres,2021-12-29T18:03:51Z,- lopezpedres commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1002716701) at 2021-12-29 10:03 AM PST -lopezpedres,2021-12-30T02:20:16Z,- lopezpedres commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1002844681) at 2021-12-29 06:20 PM PST -lopezpedres,2022-01-05T00:33:06Z,- lopezpedres commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1005279212) at 2022-01-04 04:33 PM PST -lopezpedres,2022-01-05T23:29:05Z,- lopezpedres commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1006158312) at 2022-01-05 03:29 PM PST -lopezpedres,2022-01-07T01:15:12Z,- lopezpedres submitted pull request review: [2643](https://github.com/hackforla/website/pull/2643#pullrequestreview-846205058) at 2022-01-06 05:15 PM PST -lopezpedres,2022-01-10T23:04:39Z,- lopezpedres commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009432127) at 2022-01-10 03:04 PM PST -lopezpedres,2022-01-10T23:52:50Z,- lopezpedres commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009465587) at 2022-01-10 03:52 PM PST -lopezpedres,2022-01-10T23:55:36Z,- lopezpedres commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009466776) at 2022-01-10 03:55 PM PST -lopezpedres,2022-01-10T23:59:25Z,- lopezpedres commented on pull request: [2665](https://github.com/hackforla/website/pull/2665#issuecomment-1009468404) at 2022-01-10 03:59 PM PST -lopezpedres,2022-01-11T03:44:15Z,- lopezpedres commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1009572022) at 2022-01-10 07:44 PM PST -lopezpedres,2022-01-11T03:46:07Z,- lopezpedres submitted pull request review: [2672](https://github.com/hackforla/website/pull/2672#pullrequestreview-848573936) at 2022-01-10 07:46 PM PST -lopezpedres,2022-01-11T22:40:17Z,- lopezpedres submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-849803013) at 2022-01-11 02:40 PM PST -lopezpedres,2022-01-11T22:47:49Z,- lopezpedres commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1010436107) at 2022-01-11 02:47 PM PST -lopezpedres,2022-01-11T23:12:23Z,- lopezpedres submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-849823567) at 2022-01-11 03:12 PM PST -lopezpedres,2022-01-13T18:29:44Z,- lopezpedres submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-852096882) at 2022-01-13 10:29 AM PST -lopezpedres,2022-01-18T00:33:30Z,- lopezpedres submitted pull request review: [2672](https://github.com/hackforla/website/pull/2672#pullrequestreview-854853749) at 2022-01-17 04:33 PM PST -lopezpedres,2022-03-02T00:17:55Z,- lopezpedres pull request closed w/o merging: [2635](https://github.com/hackforla/website/pull/2635#event-6165828291) at 2022-03-01 04:17 PM PST -lopezpedres,2022-03-11T20:17:19Z,- lopezpedres unassigned from issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1056024820) at 2022-03-11 12:17 PM PST -lorenzejay,2021-07-14T04:36:16Z,- lorenzejay assigned to issue: [1560](https://github.com/hackforla/website/issues/1560) at 2021-07-13 09:36 PM PDT -lorenzejay,2021-07-14T13:35:22Z,- lorenzejay opened pull request: [1938](https://github.com/hackforla/website/pull/1938) at 2021-07-14 06:35 AM PDT -lorenzejay,2021-07-14T16:37:06Z,- lorenzejay commented on pull request: [1938](https://github.com/hackforla/website/pull/1938#issuecomment-880042206) at 2021-07-14 09:37 AM PDT -lorenzejay,2021-07-14T23:31:49Z,- lorenzejay commented on issue: [1560](https://github.com/hackforla/website/issues/1560#issuecomment-880277024) at 2021-07-14 04:31 PM PDT -lorenzejay,2021-07-16T22:22:02Z,- lorenzejay pull request merged: [1938](https://github.com/hackforla/website/pull/1938#event-5033048364) at 2021-07-16 03:22 PM PDT -lorenzejay,2021-07-17T01:04:01Z,- lorenzejay commented on pull request: [1938](https://github.com/hackforla/website/pull/1938#issuecomment-881789652) at 2021-07-16 06:04 PM PDT -lorenzejay,2021-07-19T01:40:46Z,- lorenzejay assigned to issue: [1875](https://github.com/hackforla/website/issues/1875) at 2021-07-18 06:40 PM PDT -lorenzejay,2021-07-19T12:57:54Z,- lorenzejay opened pull request: [1971](https://github.com/hackforla/website/pull/1971) at 2021-07-19 05:57 AM PDT -lorenzejay,2021-07-19T16:51:01Z,- lorenzejay pull request merged: [1971](https://github.com/hackforla/website/pull/1971#event-5039633129) at 2021-07-19 09:51 AM PDT -lorenzejay,2021-07-21T02:08:47Z,- lorenzejay assigned to issue: [1984](https://github.com/hackforla/website/issues/1984) at 2021-07-20 07:08 PM PDT -lorenzejay,2021-07-21T17:11:20Z,- lorenzejay commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-884351800) at 2021-07-21 10:11 AM PDT -lorenzejay,2021-07-21T17:47:59Z,- lorenzejay commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-884374135) at 2021-07-21 10:47 AM PDT -lorenzejay,2021-07-21T17:52:40Z,- lorenzejay commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-884376849) at 2021-07-21 10:52 AM PDT -lorenzejay,2021-07-24T04:22:30Z,- lorenzejay submitted pull request review: [2004](https://github.com/hackforla/website/pull/2004#pullrequestreview-714204075) at 2021-07-23 09:22 PM PDT -lorenzejay,2021-07-24T14:40:51Z,- lorenzejay submitted pull request review: [2004](https://github.com/hackforla/website/pull/2004#pullrequestreview-714239091) at 2021-07-24 07:40 AM PDT -lorenzejay,2021-07-27T13:08:47Z,- lorenzejay commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-887497777) at 2021-07-27 06:08 AM PDT -lorenzejay,2021-08-19T17:46:56Z,- lorenzejay unassigned from issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-901585713) at 2021-08-19 10:46 AM PDT -LOSjr4,4070,SKILLS ISSUE -LOSjr4,2023-03-01T04:16:11Z,- LOSjr4 opened issue: [4070](https://github.com/hackforla/website/issues/4070) at 2023-02-28 08:16 PM PST -LOSjr4,2023-03-01T04:16:12Z,- LOSjr4 assigned to issue: [4070](https://github.com/hackforla/website/issues/4070) at 2023-02-28 08:16 PM PST -LOSjr4,2023-03-14T18:00:43Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1468577573) at 2023-03-14 11:00 AM PDT -LOSjr4,2023-03-16T20:01:57Z,- LOSjr4 assigned to issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1445356749) at 2023-03-16 01:01 PM PDT -LOSjr4,2023-03-16T20:27:59Z,- LOSjr4 commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1472693332) at 2023-03-16 01:27 PM PDT -LOSjr4,2023-03-16T20:32:42Z,- LOSjr4 closed issue by PR 4199: [3950](https://github.com/hackforla/website/issues/3950#event-8771860945) at 2023-03-16 01:32 PM PDT -LOSjr4,2023-03-16T20:43:36Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1472713610) at 2023-03-16 01:43 PM PDT -LOSjr4,2023-03-17T02:36:49Z,- LOSjr4 unassigned from issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1473024302) at 2023-03-16 07:36 PM PDT -LOSjr4,2023-03-17T03:04:26Z,- LOSjr4 assigned to issue: [3948](https://github.com/hackforla/website/issues/3948) at 2023-03-16 08:04 PM PDT -LOSjr4,2023-03-17T03:08:55Z,- LOSjr4 commented on issue: [3948](https://github.com/hackforla/website/issues/3948#issuecomment-1473052444) at 2023-03-16 08:08 PM PDT -LOSjr4,2023-03-17T21:19:59Z,- LOSjr4 opened pull request: [4203](https://github.com/hackforla/website/pull/4203) at 2023-03-17 02:19 PM PDT -LOSjr4,2023-03-20T03:50:23Z,- LOSjr4 pull request merged: [4203](https://github.com/hackforla/website/pull/4203#event-8789910921) at 2023-03-19 08:50 PM PDT -LOSjr4,2023-03-23T22:30:00Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1481998627) at 2023-03-23 03:30 PM PDT -LOSjr4,2023-03-27T16:47:48Z,- LOSjr4 commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1485478697) at 2023-03-27 09:47 AM PDT -LOSjr4,2023-03-27T23:18:07Z,- LOSjr4 submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1359994177) at 2023-03-27 04:18 PM PDT -LOSjr4,2023-03-27T23:22:34Z,- LOSjr4 assigned to issue: [4284](https://github.com/hackforla/website/issues/4284) at 2023-03-27 04:22 PM PDT -LOSjr4,2023-03-27T23:26:13Z,- LOSjr4 commented on issue: [4284](https://github.com/hackforla/website/issues/4284#issuecomment-1485992444) at 2023-03-27 04:26 PM PDT -LOSjr4,2023-03-28T18:59:27Z,- LOSjr4 submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1361738253) at 2023-03-28 11:59 AM PDT -LOSjr4,2023-03-28T21:32:02Z,- LOSjr4 opened pull request: [4306](https://github.com/hackforla/website/pull/4306) at 2023-03-28 02:32 PM PDT -LOSjr4,2023-03-28T21:52:29Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1487640587) at 2023-03-28 02:52 PM PDT -LOSjr4,2023-03-29T04:09:37Z,- LOSjr4 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1487918298) at 2023-03-28 09:09 PM PDT -LOSjr4,2023-03-30T16:11:04Z,- LOSjr4 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490567816) at 2023-03-30 09:11 AM PDT -LOSjr4,2023-03-30T16:54:34Z,- LOSjr4 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490625528) at 2023-03-30 09:54 AM PDT -LOSjr4,2023-03-30T17:27:07Z,- LOSjr4 commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1490668024) at 2023-03-30 10:27 AM PDT -LOSjr4,2023-03-30T17:44:18Z,- LOSjr4 submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1365622433) at 2023-03-30 10:44 AM PDT -LOSjr4,2023-03-31T01:15:47Z,- LOSjr4 pull request merged: [4306](https://github.com/hackforla/website/pull/4306#event-8893133084) at 2023-03-30 06:15 PM PDT -LOSjr4,2023-04-04T19:02:36Z,- LOSjr4 assigned to issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493716472) at 2023-04-04 12:02 PM PDT -LOSjr4,2023-04-04T19:08:44Z,- LOSjr4 commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1496465607) at 2023-04-04 12:08 PM PDT -LOSjr4,2023-04-04T20:03:23Z,- LOSjr4 opened pull request: [4408](https://github.com/hackforla/website/pull/4408) at 2023-04-04 01:03 PM PDT -LOSjr4,2023-04-04T20:13:45Z,- LOSjr4 commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496545354) at 2023-04-04 01:13 PM PDT -LOSjr4,2023-04-04T22:15:00Z,- LOSjr4 submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1371864623) at 2023-04-04 03:15 PM PDT -LOSjr4,2023-04-04T22:37:38Z,- LOSjr4 commented on pull request: [4404](https://github.com/hackforla/website/pull/4404#issuecomment-1496686653) at 2023-04-04 03:37 PM PDT -LOSjr4,2023-04-04T22:51:26Z,- LOSjr4 submitted pull request review: [4404](https://github.com/hackforla/website/pull/4404#pullrequestreview-1371893404) at 2023-04-04 03:51 PM PDT -LOSjr4,2023-04-04T22:59:45Z,- LOSjr4 submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1371900162) at 2023-04-04 03:59 PM PDT -LOSjr4,2023-04-04T23:07:37Z,- LOSjr4 commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496707676) at 2023-04-04 04:07 PM PDT -LOSjr4,2023-04-06T01:37:59Z,- LOSjr4 pull request merged: [4408](https://github.com/hackforla/website/pull/4408#event-8940852084) at 2023-04-05 06:37 PM PDT -LOSjr4,2023-04-11T14:47:41Z,- LOSjr4 assigned to issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1496212245) at 2023-04-11 07:47 AM PDT -LOSjr4,2023-04-11T14:49:41Z,- LOSjr4 commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1503516381) at 2023-04-11 07:49 AM PDT -LOSjr4,2023-04-12T21:06:03Z,- LOSjr4 commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1505945218) at 2023-04-12 02:06 PM PDT -LOSjr4,2023-04-13T17:18:44Z,- LOSjr4 opened pull request: [4501](https://github.com/hackforla/website/pull/4501) at 2023-04-13 10:18 AM PDT -LOSjr4,2023-04-13T17:23:15Z,- LOSjr4 commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507338951) at 2023-04-13 10:23 AM PDT -LOSjr4,2023-04-13T17:40:09Z,- LOSjr4 submitted pull request review: [4500](https://github.com/hackforla/website/pull/4500#pullrequestreview-1383919972) at 2023-04-13 10:40 AM PDT -LOSjr4,2023-04-13T17:43:00Z,- LOSjr4 commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1507370344) at 2023-04-13 10:43 AM PDT -LOSjr4,2023-04-13T17:54:25Z,- LOSjr4 submitted pull request review: [4497](https://github.com/hackforla/website/pull/4497#pullrequestreview-1383944712) at 2023-04-13 10:54 AM PDT -LOSjr4,2023-04-16T07:16:34Z,- LOSjr4 pull request merged: [4501](https://github.com/hackforla/website/pull/4501#event-9015928417) at 2023-04-16 12:16 AM PDT -LOSjr4,2023-04-17T17:18:22Z,- LOSjr4 assigned to issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1496618836) at 2023-04-17 10:18 AM PDT -LOSjr4,2023-04-17T17:20:55Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1511776805) at 2023-04-17 10:20 AM PDT -LOSjr4,2023-04-18T16:38:25Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1513479912) at 2023-04-18 09:38 AM PDT -LOSjr4,2023-04-18T21:18:44Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1513806791) at 2023-04-18 02:18 PM PDT -LOSjr4,2023-04-19T16:21:26Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515022571) at 2023-04-19 09:21 AM PDT -LOSjr4,2023-04-19T16:34:35Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515041488) at 2023-04-19 09:34 AM PDT -LOSjr4,2023-04-19T16:44:54Z,- LOSjr4 submitted pull request review: [4497](https://github.com/hackforla/website/pull/4497#pullrequestreview-1392486081) at 2023-04-19 09:44 AM PDT -LOSjr4,2023-04-19T23:58:39Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515523785) at 2023-04-19 04:58 PM PDT -LOSjr4,2023-04-20T19:23:34Z,- LOSjr4 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516831169) at 2023-04-20 12:23 PM PDT -LOSjr4,2023-04-20T19:36:20Z,- LOSjr4 submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1394645054) at 2023-04-20 12:36 PM PDT -LOSjr4,2023-04-20T19:42:15Z,- LOSjr4 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516855884) at 2023-04-20 12:42 PM PDT -LOSjr4,2023-04-26T23:00:35Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1524139042) at 2023-04-26 04:00 PM PDT -LOSjr4,2023-04-27T15:47:52Z,- LOSjr4 commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1525933455) at 2023-04-27 08:47 AM PDT -LOSjr4,2023-04-27T16:44:48Z,- LOSjr4 submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1404485724) at 2023-04-27 09:44 AM PDT -LOSjr4,2023-05-01T16:55:41Z,- LOSjr4 assigned to issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1520923262) at 2023-05-01 09:55 AM PDT -LOSjr4,2023-05-01T16:59:42Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1529950977) at 2023-05-01 09:59 AM PDT -LOSjr4,2023-05-01T18:02:54Z,- LOSjr4 submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1407900964) at 2023-05-01 11:02 AM PDT -LOSjr4,2023-05-03T20:58:03Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1533739380) at 2023-05-03 01:58 PM PDT -LOSjr4,2023-05-04T18:13:08Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1535205291) at 2023-05-04 11:13 AM PDT -LOSjr4,2023-05-09T17:28:40Z,- LOSjr4 commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1540582195) at 2023-05-09 10:28 AM PDT -LOSjr4,2023-05-09T19:41:36Z,- LOSjr4 submitted pull request review: [4613](https://github.com/hackforla/website/pull/4613#pullrequestreview-1419347307) at 2023-05-09 12:41 PM PDT -LOSjr4,2023-05-10T02:22:37Z,- LOSjr4 commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1541196567) at 2023-05-09 07:22 PM PDT -LOSjr4,2023-05-11T18:22:41Z,- LOSjr4 submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1423189916) at 2023-05-11 11:22 AM PDT -LOSjr4,2023-05-12T16:53:31Z,- LOSjr4 submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1424859785) at 2023-05-12 09:53 AM PDT -LOSjr4,2023-05-12T16:58:27Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1546030465) at 2023-05-12 09:58 AM PDT -LOSjr4,2023-05-15T20:16:08Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1548515675) at 2023-05-15 01:16 PM PDT -LOSjr4,2023-05-18T19:05:38Z,- LOSjr4 submitted pull request review: [4691](https://github.com/hackforla/website/pull/4691#pullrequestreview-1433294234) at 2023-05-18 12:05 PM PDT -LOSjr4,2023-05-19T21:46:29Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1555289692) at 2023-05-19 02:46 PM PDT -LOSjr4,2023-05-21T17:36:40Z,- LOSjr4 commented on pull request: [4688](https://github.com/hackforla/website/pull/4688#issuecomment-1556235821) at 2023-05-21 10:36 AM PDT -LOSjr4,2023-05-22T20:18:36Z,- LOSjr4 submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1437413199) at 2023-05-22 01:18 PM PDT -LOSjr4,2023-05-23T19:52:56Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1560038875) at 2023-05-23 12:52 PM PDT -LOSjr4,2023-05-25T23:17:51Z,- LOSjr4 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1563622068) at 2023-05-25 04:17 PM PDT -LOSjr4,2023-05-25T23:38:57Z,- LOSjr4 submitted pull request review: [4730](https://github.com/hackforla/website/pull/4730#pullrequestreview-1444778690) at 2023-05-25 04:38 PM PDT -LOSjr4,2023-05-26T16:41:25Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1564652762) at 2023-05-26 09:41 AM PDT -LOSjr4,2023-05-26T16:49:55Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1564661338) at 2023-05-26 09:49 AM PDT -LOSjr4,2023-05-26T17:37:49Z,- LOSjr4 submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1446679462) at 2023-05-26 10:37 AM PDT -LOSjr4,2023-05-28T17:13:18Z,- LOSjr4 commented on pull request: [4745](https://github.com/hackforla/website/pull/4745#issuecomment-1566203053) at 2023-05-28 10:13 AM PDT -LOSjr4,2023-05-28T17:14:43Z,- LOSjr4 commented on pull request: [4748](https://github.com/hackforla/website/pull/4748#issuecomment-1566203487) at 2023-05-28 10:14 AM PDT -LOSjr4,2023-05-28T18:27:26Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1566223041) at 2023-05-28 11:27 AM PDT -LOSjr4,2023-05-30T16:11:16Z,- LOSjr4 submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1451327515) at 2023-05-30 09:11 AM PDT -LOSjr4,2023-05-30T16:20:42Z,- LOSjr4 submitted pull request review: [4745](https://github.com/hackforla/website/pull/4745#pullrequestreview-1451343294) at 2023-05-30 09:20 AM PDT -LOSjr4,2023-05-30T16:33:55Z,- LOSjr4 submitted pull request review: [4748](https://github.com/hackforla/website/pull/4748#pullrequestreview-1451366232) at 2023-05-30 09:33 AM PDT -LOSjr4,2023-05-31T16:58:42Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1570590607) at 2023-05-31 09:58 AM PDT -LOSjr4,2023-06-07T16:07:02Z,- LOSjr4 submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1468083682) at 2023-06-07 09:07 AM PDT -LOSjr4,2023-06-07T17:06:36Z,- LOSjr4 submitted pull request review: [4783](https://github.com/hackforla/website/pull/4783#pullrequestreview-1468199180) at 2023-06-07 10:06 AM PDT -LOSjr4,2023-06-07T18:04:13Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1581281044) at 2023-06-07 11:04 AM PDT -LOSjr4,2023-06-13T16:11:27Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1589620307) at 2023-06-13 09:11 AM PDT -LOSjr4,2023-06-13T16:17:12Z,- LOSjr4 submitted pull request review: [4783](https://github.com/hackforla/website/pull/4783#pullrequestreview-1477596409) at 2023-06-13 09:17 AM PDT -LOSjr4,2023-06-16T01:51:16Z,- LOSjr4 commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1593968455) at 2023-06-15 06:51 PM PDT -LOSjr4,2023-06-16T02:48:21Z,- LOSjr4 submitted pull request review: [4843](https://github.com/hackforla/website/pull/4843#pullrequestreview-1482641586) at 2023-06-15 07:48 PM PDT -LOSjr4,2023-06-16T19:50:47Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1595211639) at 2023-06-16 12:50 PM PDT -LOSjr4,2023-06-22T21:20:37Z,- LOSjr4 commented on pull request: [4837](https://github.com/hackforla/website/pull/4837#issuecomment-1603332729) at 2023-06-22 02:20 PM PDT -LOSjr4,2023-06-24T16:48:59Z,- LOSjr4 opened pull request: [4880](https://github.com/hackforla/website/pull/4880) at 2023-06-24 09:48 AM PDT -LOSjr4,2023-06-24T16:49:08Z,- LOSjr4 pull request closed w/o merging: [4880](https://github.com/hackforla/website/pull/4880#event-9627315869) at 2023-06-24 09:49 AM PDT -LOSjr4,2023-06-24T17:27:29Z,- LOSjr4 submitted pull request review: [4837](https://github.com/hackforla/website/pull/4837#pullrequestreview-1496763662) at 2023-06-24 10:27 AM PDT -LOSjr4,2023-06-24T18:00:47Z,- LOSjr4 submitted pull request review: [4875](https://github.com/hackforla/website/pull/4875#pullrequestreview-1496768234) at 2023-06-24 11:00 AM PDT -LOSjr4,2023-06-29T01:47:03Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1612314738) at 2023-06-28 06:47 PM PDT -LOSjr4,2023-06-29T02:00:38Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1612322551) at 2023-06-28 07:00 PM PDT -LOSjr4,2023-06-29T02:35:23Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1612352861) at 2023-06-28 07:35 PM PDT -LOSjr4,2023-06-29T03:35:59Z,- LOSjr4 submitted pull request review: [4897](https://github.com/hackforla/website/pull/4897#pullrequestreview-1504504939) at 2023-06-28 08:35 PM PDT -LOSjr4,2023-06-29T04:26:14Z,- LOSjr4 submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1504531402) at 2023-06-28 09:26 PM PDT -LOSjr4,2023-06-29T04:51:47Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1612428288) at 2023-06-28 09:51 PM PDT -LOSjr4,2023-07-05T17:55:30Z,- LOSjr4 submitted pull request review: [4911](https://github.com/hackforla/website/pull/4911#pullrequestreview-1515053806) at 2023-07-05 10:55 AM PDT -LOSjr4,2023-07-09T17:15:34Z,- LOSjr4 commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1627776002) at 2023-07-09 10:15 AM PDT -LOSjr4,2023-07-12T17:39:06Z,- LOSjr4 submitted pull request review: [4925](https://github.com/hackforla/website/pull/4925#pullrequestreview-1526877767) at 2023-07-12 10:39 AM PDT -LOSjr4,2023-07-12T17:42:33Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1632950142) at 2023-07-12 10:42 AM PDT -LOSjr4,2023-07-12T18:01:08Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1632979424) at 2023-07-12 11:01 AM PDT -LOSjr4,2023-07-23T02:25:43Z,- LOSjr4 submitted pull request review: [5050](https://github.com/hackforla/website/pull/5050#pullrequestreview-1542176301) at 2023-07-22 07:25 PM PDT -LOSjr4,2023-07-23T02:42:13Z,- LOSjr4 submitted pull request review: [5044](https://github.com/hackforla/website/pull/5044#pullrequestreview-1542177113) at 2023-07-22 07:42 PM PDT -LOSjr4,2023-07-23T02:44:11Z,- LOSjr4 commented on pull request: [5050](https://github.com/hackforla/website/pull/5050#issuecomment-1646730252) at 2023-07-22 07:44 PM PDT -LOSjr4,2023-07-23T02:49:43Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1646731282) at 2023-07-22 07:49 PM PDT -LOSjr4,2023-08-03T17:50:58Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1664393234) at 2023-08-03 10:50 AM PDT -LOSjr4,2023-08-03T17:51:16Z,- LOSjr4 unassigned from issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1664393234) at 2023-08-03 10:51 AM PDT -louiewhitz,4714,SKILLS ISSUE -louiewhitz,4724,SKILLS ISSUE -louiewhitz,4729,SKILLS ISSUE -louiewhitz,2023-05-24T03:09:46Z,- louiewhitz opened issue: [4714](https://github.com/hackforla/website/issues/4714) at 2023-05-23 08:09 PM PDT -louiewhitz,2023-05-24T03:12:04Z,- louiewhitz assigned to issue: [4714](https://github.com/hackforla/website/issues/4714) at 2023-05-23 08:12 PM PDT -louiewhitz,2023-05-24T03:51:31Z,- louiewhitz opened issue: [4724](https://github.com/hackforla/website/issues/4724) at 2023-05-23 08:51 PM PDT -louiewhitz,2023-05-24T03:51:31Z,- louiewhitz assigned to issue: [4724](https://github.com/hackforla/website/issues/4724) at 2023-05-23 08:51 PM PDT -louiewhitz,2023-05-25T18:06:26Z,- louiewhitz opened issue: [4729](https://github.com/hackforla/website/issues/4729) at 2023-05-25 11:06 AM PDT -louiewhitz,2023-05-25T18:06:32Z,- louiewhitz assigned to issue: [4729](https://github.com/hackforla/website/issues/4729) at 2023-05-25 11:06 AM PDT -louiewhitz,2023-05-30T01:39:56Z,- louiewhitz assigned to issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1547063903) at 2023-05-29 06:39 PM PDT -louiewhitz,2023-05-30T03:15:27Z,- louiewhitz opened pull request: [4754](https://github.com/hackforla/website/pull/4754) at 2023-05-29 08:15 PM PDT -louiewhitz,2023-05-31T15:03:54Z,- louiewhitz pull request merged: [4754](https://github.com/hackforla/website/pull/4754#event-9391820285) at 2023-05-31 08:03 AM PDT -loveshah751,3149,SKILLS ISSUE -loveshah751,2022-05-17T02:52:40Z,- loveshah751 opened issue: [3149](https://github.com/hackforla/website/issues/3149) at 2022-05-16 07:52 PM PDT -LRenDO,4719,SKILLS ISSUE -LRenDO,2023-05-24T03:15:34Z,- LRenDO opened issue: [4719](https://github.com/hackforla/website/issues/4719) at 2023-05-23 08:15 PM PDT -LRenDO,2023-05-24T03:15:35Z,- LRenDO assigned to issue: [4719](https://github.com/hackforla/website/issues/4719) at 2023-05-23 08:15 PM PDT -LRenDO,2023-05-25T18:34:31Z,- LRenDO assigned to issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1547805009) at 2023-05-25 11:34 AM PDT -LRenDO,2023-05-25T18:36:30Z,- LRenDO commented on issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1563339690) at 2023-05-25 11:36 AM PDT -LRenDO,2023-05-25T18:37:45Z,- LRenDO commented on issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1563341018) at 2023-05-25 11:37 AM PDT -LRenDO,2023-05-25T20:25:04Z,- LRenDO opened pull request: [4730](https://github.com/hackforla/website/pull/4730) at 2023-05-25 01:25 PM PDT -LRenDO,2023-05-28T16:57:16Z,- LRenDO pull request merged: [4730](https://github.com/hackforla/website/pull/4730#event-9362657350) at 2023-05-28 09:57 AM PDT -LRenDO,2023-05-28T22:29:00Z,- LRenDO commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1566286487) at 2023-05-28 03:29 PM PDT -LRenDO,2023-05-29T20:40:17Z,- LRenDO commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1567498291) at 2023-05-29 01:40 PM PDT -LRenDO,2023-05-29T21:11:42Z,- LRenDO submitted pull request review: [4751](https://github.com/hackforla/website/pull/4751#pullrequestreview-1449862576) at 2023-05-29 02:11 PM PDT -LRenDO,2023-06-01T18:01:45Z,- LRenDO assigned to issue: [4480](https://github.com/hackforla/website/issues/4480) at 2023-06-01 11:01 AM PDT -LRenDO,2023-06-01T18:07:32Z,- LRenDO commented on issue: [4480](https://github.com/hackforla/website/issues/4480#issuecomment-1572551038) at 2023-06-01 11:07 AM PDT -LRenDO,2023-06-01T18:19:44Z,- LRenDO commented on issue: [4480](https://github.com/hackforla/website/issues/4480#issuecomment-1572567440) at 2023-06-01 11:19 AM PDT -LRenDO,2023-06-01T19:20:02Z,- LRenDO opened pull request: [4767](https://github.com/hackforla/website/pull/4767) at 2023-06-01 12:20 PM PDT -LRenDO,2023-06-01T19:47:44Z,- LRenDO submitted pull request review: [4763](https://github.com/hackforla/website/pull/4763#pullrequestreview-1456198888) at 2023-06-01 12:47 PM PDT -LRenDO,2023-06-05T18:53:03Z,- LRenDO commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1577298288) at 2023-06-05 11:53 AM PDT -LRenDO,2023-06-08T08:18:05Z,- LRenDO pull request merged: [4767](https://github.com/hackforla/website/pull/4767#event-9469182673) at 2023-06-08 01:18 AM PDT -LRenDO,2023-06-09T18:18:44Z,- LRenDO assigned to issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1529755527) at 2023-06-09 11:18 AM PDT -LRenDO,2023-06-09T18:20:59Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1584974176) at 2023-06-09 11:20 AM PDT -LRenDO,2023-06-09T20:07:45Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1585074737) at 2023-06-09 01:07 PM PDT -LRenDO,2023-06-09T20:56:44Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1585117756) at 2023-06-09 01:56 PM PDT -LRenDO,2023-06-20T17:25:47Z,- LRenDO commented on pull request: [4846](https://github.com/hackforla/website/pull/4846#issuecomment-1599217167) at 2023-06-20 10:25 AM PDT -LRenDO,2023-06-20T20:51:00Z,- LRenDO submitted pull request review: [4846](https://github.com/hackforla/website/pull/4846#pullrequestreview-1488997450) at 2023-06-20 01:51 PM PDT -LRenDO,2023-06-23T21:10:17Z,- LRenDO submitted pull request review: [4846](https://github.com/hackforla/website/pull/4846#pullrequestreview-1496036433) at 2023-06-23 02:10 PM PDT -LRenDO,2023-06-24T02:18:49Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1605236645) at 2023-06-23 07:18 PM PDT -LRenDO,2023-06-24T04:27:07Z,- LRenDO commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1605260586) at 2023-06-23 09:27 PM PDT -LRenDO,2023-06-24T04:27:17Z,- LRenDO assigned to issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1605260586) at 2023-06-23 09:27 PM PDT -LRenDO,2023-06-25T17:53:25Z,- LRenDO commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1606196668) at 2023-06-25 10:53 AM PDT -LRenDO,2023-06-25T18:08:05Z,- LRenDO commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1606200318) at 2023-06-25 11:08 AM PDT -LRenDO,2023-06-28T12:24:21Z,- LRenDO submitted pull request review: [4878](https://github.com/hackforla/website/pull/4878#pullrequestreview-1502962240) at 2023-06-28 05:24 AM PDT -LRenDO,2023-06-29T21:17:25Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1613821743) at 2023-06-29 02:17 PM PDT -LRenDO,2023-06-29T21:38:48Z,- LRenDO commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1613840407) at 2023-06-29 02:38 PM PDT -LRenDO,2023-06-29T22:20:54Z,- LRenDO commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1613874209) at 2023-06-29 03:20 PM PDT -LRenDO,2023-06-30T04:08:24Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1614091150) at 2023-06-29 09:08 PM PDT -LRenDO,2023-07-02T22:58:30Z,- LRenDO opened pull request: [4908](https://github.com/hackforla/website/pull/4908) at 2023-07-02 03:58 PM PDT -LRenDO,2023-07-06T21:20:04Z,- LRenDO commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1624324281) at 2023-07-06 02:20 PM PDT -LRenDO,2023-07-06T22:36:00Z,- LRenDO opened issue: [4918](https://github.com/hackforla/website/issues/4918) at 2023-07-06 03:36 PM PDT -LRenDO,2023-07-06T22:36:01Z,- LRenDO assigned to issue: [4918](https://github.com/hackforla/website/issues/4918) at 2023-07-06 03:36 PM PDT -LRenDO,2023-07-07T19:53:12Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1625993616) at 2023-07-07 12:53 PM PDT -LRenDO,2023-07-09T17:34:33Z,- LRenDO commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1627779350) at 2023-07-09 10:34 AM PDT -LRenDO,2023-07-09T18:40:46Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1627792627) at 2023-07-09 11:40 AM PDT -LRenDO,2023-07-10T23:53:55Z,- LRenDO opened issue: [4931](https://github.com/hackforla/website/issues/4931) at 2023-07-10 04:53 PM PDT -LRenDO,2023-07-10T23:55:54Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1629891070) at 2023-07-10 04:55 PM PDT -LRenDO,2023-07-11T15:47:14Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1631069495) at 2023-07-11 08:47 AM PDT -LRenDO,2023-07-11T18:51:20Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1631347125) at 2023-07-11 11:51 AM PDT -LRenDO,2023-07-12T07:21:32Z,- LRenDO pull request merged: [4908](https://github.com/hackforla/website/pull/4908#event-9795452547) at 2023-07-12 12:21 AM PDT -LRenDO,2023-07-12T18:56:05Z,- LRenDO commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1633049675) at 2023-07-12 11:56 AM PDT -LRenDO,2023-07-13T01:50:03Z,- LRenDO commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1633417879) at 2023-07-12 06:50 PM PDT -LRenDO,2023-07-13T03:26:53Z,- LRenDO commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1633491598) at 2023-07-12 08:26 PM PDT -LRenDO,2023-07-13T04:15:58Z,- LRenDO commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1633519729) at 2023-07-12 09:15 PM PDT -LRenDO,2023-07-13T04:50:24Z,- LRenDO commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633541228) at 2023-07-12 09:50 PM PDT -LRenDO,2023-07-13T04:55:22Z,- LRenDO commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633544638) at 2023-07-12 09:55 PM PDT -LRenDO,2023-07-13T05:25:11Z,- LRenDO commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633567527) at 2023-07-12 10:25 PM PDT -LRenDO,2023-07-13T21:40:00Z,- LRenDO commented on pull request: [4947](https://github.com/hackforla/website/pull/4947#issuecomment-1634956437) at 2023-07-13 02:40 PM PDT -LRenDO,2023-07-15T13:30:56Z,- LRenDO commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1636770185) at 2023-07-15 06:30 AM PDT -LRenDO,2023-07-16T00:29:56Z,- LRenDO submitted pull request review: [4947](https://github.com/hackforla/website/pull/4947#pullrequestreview-1531642483) at 2023-07-15 05:29 PM PDT -LRenDO,2023-07-20T00:36:00Z,- LRenDO commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1642938977) at 2023-07-19 05:36 PM PDT -LRenDO,2023-07-25T04:08:10Z,- LRenDO commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1649073645) at 2023-07-24 09:08 PM PDT -LRenDO,2023-07-25T04:51:20Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1649121205) at 2023-07-24 09:51 PM PDT -LRenDO,2023-07-27T00:24:53Z,- LRenDO commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1652722256) at 2023-07-26 05:24 PM PDT -LRenDO,2023-07-27T04:45:47Z,- LRenDO closed issue by PR 5054: [4948](https://github.com/hackforla/website/issues/4948#event-9931236256) at 2023-07-26 09:45 PM PDT -LRenDO,2023-07-27T05:09:35Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1652921943) at 2023-07-26 10:09 PM PDT -LRenDO,2023-07-27T05:15:39Z,- LRenDO commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1652925628) at 2023-07-26 10:15 PM PDT -LRenDO,2023-07-27T05:27:09Z,- LRenDO commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1652936092) at 2023-07-26 10:27 PM PDT -LRenDO,2023-07-27T05:29:46Z,- LRenDO commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1652937854) at 2023-07-26 10:29 PM PDT -LRenDO,2023-07-27T05:33:13Z,- LRenDO commented on pull request: [5063](https://github.com/hackforla/website/pull/5063#issuecomment-1652940313) at 2023-07-26 10:33 PM PDT -LRenDO,2023-07-27T05:59:54Z,- LRenDO submitted pull request review: [5093](https://github.com/hackforla/website/pull/5093#pullrequestreview-1549060189) at 2023-07-26 10:59 PM PDT -LRenDO,2023-07-27T06:34:19Z,- LRenDO submitted pull request review: [5097](https://github.com/hackforla/website/pull/5097#pullrequestreview-1549099541) at 2023-07-26 11:34 PM PDT -LRenDO,2023-07-27T06:37:45Z,- LRenDO commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1652996874) at 2023-07-26 11:37 PM PDT -LRenDO,2023-07-27T06:54:07Z,- LRenDO commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1653014128) at 2023-07-26 11:54 PM PDT -LRenDO,2023-07-27T07:51:34Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1653084581) at 2023-07-27 12:51 AM PDT -LRenDO,2023-07-27T22:31:16Z,- LRenDO submitted pull request review: [5093](https://github.com/hackforla/website/pull/5093#pullrequestreview-1550939137) at 2023-07-27 03:31 PM PDT -LRenDO,2023-07-29T01:13:32Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1656504119) at 2023-07-28 06:13 PM PDT -LRenDO,2023-07-30T16:41:23Z,- LRenDO commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1657216595) at 2023-07-30 09:41 AM PDT -LRenDO,2023-07-30T16:50:14Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1657218258) at 2023-07-30 09:50 AM PDT -LRenDO,2023-07-30T17:32:01Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1657226489) at 2023-07-30 10:32 AM PDT -LRenDO,2023-07-30T17:32:01Z,- LRenDO closed issue as completed: [5018](https://github.com/hackforla/website/issues/5018#event-9957125092) at 2023-07-30 10:32 AM PDT -LRenDO,2023-07-31T19:26:01Z,- LRenDO commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1659003171) at 2023-07-31 12:26 PM PDT -LRenDO,2023-07-31T19:57:55Z,- LRenDO submitted pull request review: [5103](https://github.com/hackforla/website/pull/5103#pullrequestreview-1555676765) at 2023-07-31 12:57 PM PDT -LRenDO,2023-07-31T19:59:15Z,- LRenDO commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1659048872) at 2023-07-31 12:59 PM PDT -LRenDO,2023-07-31T20:36:33Z,- LRenDO submitted pull request review: [5118](https://github.com/hackforla/website/pull/5118#pullrequestreview-1555739591) at 2023-07-31 01:36 PM PDT -LRenDO,2023-08-01T00:47:41Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1659401147) at 2023-07-31 05:47 PM PDT -LRenDO,2023-08-01T17:51:51Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1660815884) at 2023-08-01 10:51 AM PDT -LRenDO,2023-08-01T18:31:48Z,- LRenDO commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1660870524) at 2023-08-01 11:31 AM PDT -LRenDO,2023-08-03T18:23:18Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1664435313) at 2023-08-03 11:23 AM PDT -LRenDO,2023-08-03T21:02:34Z,- LRenDO commented on issue: [4957](https://github.com/hackforla/website/issues/4957#issuecomment-1664644683) at 2023-08-03 02:02 PM PDT -LRenDO,2023-08-03T21:02:34Z,- LRenDO closed issue as completed: [4957](https://github.com/hackforla/website/issues/4957#event-10003187543) at 2023-08-03 02:02 PM PDT -LRenDO,2023-08-09T16:04:09Z,- LRenDO submitted pull request review: [5162](https://github.com/hackforla/website/pull/5162#pullrequestreview-1570020200) at 2023-08-09 09:04 AM PDT -LRenDO,2023-08-09T16:18:10Z,- LRenDO commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1671740876) at 2023-08-09 09:18 AM PDT -LRenDO,2023-08-09T16:24:36Z,- LRenDO commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1671751240) at 2023-08-09 09:24 AM PDT -LRenDO,2023-08-09T16:30:47Z,- LRenDO commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1671760034) at 2023-08-09 09:30 AM PDT -LRenDO,2023-08-09T16:54:00Z,- LRenDO commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1671799390) at 2023-08-09 09:54 AM PDT -LRenDO,2023-08-09T17:41:36Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1671870980) at 2023-08-09 10:41 AM PDT -LRenDO,2023-08-09T17:59:08Z,- LRenDO commented on issue: [5020](https://github.com/hackforla/website/issues/5020#issuecomment-1671893795) at 2023-08-09 10:59 AM PDT -LRenDO,2023-08-09T17:59:09Z,- LRenDO closed issue as completed: [5020](https://github.com/hackforla/website/issues/5020#event-10050647004) at 2023-08-09 10:59 AM PDT -LRenDO,2023-08-09T18:13:16Z,- LRenDO commented on issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1671912024) at 2023-08-09 11:13 AM PDT -LRenDO,2023-08-09T18:13:17Z,- LRenDO closed issue as completed: [5015](https://github.com/hackforla/website/issues/5015#event-10050763382) at 2023-08-09 11:13 AM PDT -LRenDO,2023-08-09T18:25:26Z,- LRenDO commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1671926632) at 2023-08-09 11:25 AM PDT -LRenDO,2023-08-09T18:25:26Z,- LRenDO closed issue as completed: [5014](https://github.com/hackforla/website/issues/5014#event-10050865068) at 2023-08-09 11:25 AM PDT -LRenDO,2023-08-09T18:33:18Z,- LRenDO commented on issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1671937375) at 2023-08-09 11:33 AM PDT -LRenDO,2023-08-09T18:33:18Z,- LRenDO closed issue as completed: [5013](https://github.com/hackforla/website/issues/5013#event-10050933653) at 2023-08-09 11:33 AM PDT -LRenDO,2023-08-09T18:39:42Z,- LRenDO commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1671945768) at 2023-08-09 11:39 AM PDT -LRenDO,2023-08-09T18:58:50Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1671973717) at 2023-08-09 11:58 AM PDT -LRenDO,2023-08-09T19:04:10Z,- LRenDO commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1671986192) at 2023-08-09 12:04 PM PDT -LRenDO,2023-08-09T22:44:42Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672277580) at 2023-08-09 03:44 PM PDT -LRenDO,2023-08-10T17:00:57Z,- LRenDO commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1673586143) at 2023-08-10 10:00 AM PDT -LRenDO,2023-08-10T17:00:57Z,- LRenDO closed issue as completed: [4959](https://github.com/hackforla/website/issues/4959#event-10061846967) at 2023-08-10 10:00 AM PDT -LRenDO,2023-08-10T18:02:21Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1673669699) at 2023-08-10 11:02 AM PDT -LRenDO,2023-08-11T01:58:23Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1674130043) at 2023-08-10 06:58 PM PDT -LRenDO,2023-08-11T01:58:23Z,- LRenDO closed issue as completed: [4786](https://github.com/hackforla/website/issues/4786#event-10065255045) at 2023-08-10 06:58 PM PDT -LRenDO,2023-08-11T14:02:56Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1674847125) at 2023-08-11 07:02 AM PDT -LRenDO,2023-08-11T14:02:56Z,- LRenDO closed issue as completed: [4485](https://github.com/hackforla/website/issues/4485#event-10070113724) at 2023-08-11 07:02 AM PDT -LRenDO,2023-08-11T18:17:23Z,- LRenDO submitted pull request review: [5183](https://github.com/hackforla/website/pull/5183#pullrequestreview-1574179737) at 2023-08-11 11:17 AM PDT -LRenDO,2023-08-23T20:15:49Z,- LRenDO commented on issue: [4884](https://github.com/hackforla/website/issues/4884#issuecomment-1690578083) at 2023-08-23 01:15 PM PDT -LRenDO,2023-08-23T20:15:49Z,- LRenDO closed issue as completed: [4884](https://github.com/hackforla/website/issues/4884#event-10174136701) at 2023-08-23 01:15 PM PDT -LRenDO,2023-08-23T20:39:55Z,- LRenDO commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1690607116) at 2023-08-23 01:39 PM PDT -LRenDO,2023-08-23T20:41:53Z,- LRenDO commented on pull request: [5263](https://github.com/hackforla/website/pull/5263#issuecomment-1690609334) at 2023-08-23 01:41 PM PDT -LRenDO,2023-08-23T20:43:26Z,- LRenDO commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1690611073) at 2023-08-23 01:43 PM PDT -LRenDO,2023-08-23T20:49:39Z,- LRenDO commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1690619535) at 2023-08-23 01:49 PM PDT -LRenDO,2023-08-23T20:53:28Z,- LRenDO commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1690623965) at 2023-08-23 01:53 PM PDT -LRenDO,2023-08-23T21:39:24Z,- LRenDO submitted pull request review: [5295](https://github.com/hackforla/website/pull/5295#pullrequestreview-1592453194) at 2023-08-23 02:39 PM PDT -LRenDO,2023-08-23T22:01:31Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1690703121) at 2023-08-23 03:01 PM PDT -LRenDO,2023-08-24T21:20:57Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1692427013) at 2023-08-24 02:20 PM PDT -LRenDO,2023-08-24T21:22:39Z,- LRenDO submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1594482944) at 2023-08-24 02:22 PM PDT -LRenDO,2023-08-24T21:23:29Z,- LRenDO submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1594483841) at 2023-08-24 02:23 PM PDT -LRenDO,2023-08-25T03:47:06Z,- LRenDO submitted pull request review: [5295](https://github.com/hackforla/website/pull/5295#pullrequestreview-1594786903) at 2023-08-24 08:47 PM PDT -LRenDO,2023-08-25T18:21:13Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1693764627) at 2023-08-25 11:21 AM PDT -LRenDO,2023-08-25T20:23:14Z,- LRenDO submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1596456301) at 2023-08-25 01:23 PM PDT -LRenDO,2023-08-25T20:57:02Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1693921258) at 2023-08-25 01:57 PM PDT -LRenDO,2023-09-06T21:42:24Z,- LRenDO commented on issue: [5383](https://github.com/hackforla/website/issues/5383#issuecomment-1709168161) at 2023-09-06 02:42 PM PDT -LRenDO,2023-09-06T21:47:53Z,- LRenDO commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1709173673) at 2023-09-06 02:47 PM PDT -LRenDO,2023-09-06T22:11:01Z,- LRenDO commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1709193887) at 2023-09-06 03:11 PM PDT -LRenDO,2023-09-06T22:14:52Z,- LRenDO commented on pull request: [5416](https://github.com/hackforla/website/pull/5416#issuecomment-1709197083) at 2023-09-06 03:14 PM PDT -LRenDO,2023-09-06T22:48:14Z,- LRenDO commented on issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1709225082) at 2023-09-06 03:48 PM PDT -LRenDO,2023-09-06T22:55:41Z,- LRenDO commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1709230726) at 2023-09-06 03:55 PM PDT -LRenDO,2023-09-06T23:33:26Z,- LRenDO commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1709256971) at 2023-09-06 04:33 PM PDT -LRenDO,2023-09-06T23:38:36Z,- LRenDO commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1709260536) at 2023-09-06 04:38 PM PDT -LRenDO,2023-09-06T23:47:32Z,- LRenDO commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1709266232) at 2023-09-06 04:47 PM PDT -LRenDO,2023-09-07T03:53:32Z,- LRenDO commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1709436928) at 2023-09-06 08:53 PM PDT -LRenDO,2023-09-07T05:58:26Z,- LRenDO submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1614632175) at 2023-09-06 10:58 PM PDT -LRenDO,2023-09-07T06:22:01Z,- LRenDO submitted pull request review: [5449](https://github.com/hackforla/website/pull/5449#pullrequestreview-1614658089) at 2023-09-06 11:22 PM PDT -LRenDO,2023-09-07T06:26:17Z,- LRenDO closed issue by PR 5449: [5316](https://github.com/hackforla/website/issues/5316#event-10303250017) at 2023-09-06 11:26 PM PDT -LRenDO,2023-09-07T06:36:26Z,- LRenDO submitted pull request review: [5451](https://github.com/hackforla/website/pull/5451#pullrequestreview-1614675872) at 2023-09-06 11:36 PM PDT -LRenDO,2023-09-07T06:46:39Z,- LRenDO submitted pull request review: [5415](https://github.com/hackforla/website/pull/5415#pullrequestreview-1614689237) at 2023-09-06 11:46 PM PDT -LRenDO,2023-09-07T06:46:55Z,- LRenDO closed issue by PR 5415: [5315](https://github.com/hackforla/website/issues/5315#event-10303405151) at 2023-09-06 11:46 PM PDT -LRenDO,2023-09-08T05:18:05Z,- LRenDO commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1711088569) at 2023-09-07 10:18 PM PDT -LRenDO,2023-09-08T05:18:05Z,- LRenDO closed issue as completed: [5099](https://github.com/hackforla/website/issues/5099#event-10313818631) at 2023-09-07 10:18 PM PDT -LRenDO,2023-09-18T18:51:39Z,- LRenDO commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1724191564) at 2023-09-18 11:51 AM PDT -LRenDO,2023-09-20T17:15:21Z,- LRenDO commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1728139291) at 2023-09-20 10:15 AM PDT -LRenDO,2023-09-20T17:23:59Z,- LRenDO commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1728150640) at 2023-09-20 10:23 AM PDT -LRenDO,2023-09-20T17:27:38Z,- LRenDO commented on pull request: [5549](https://github.com/hackforla/website/pull/5549#issuecomment-1728156965) at 2023-09-20 10:27 AM PDT -LRenDO,2023-09-20T17:31:32Z,- LRenDO commented on pull request: [5557](https://github.com/hackforla/website/pull/5557#issuecomment-1728164140) at 2023-09-20 10:31 AM PDT -LRenDO,2023-09-20T17:32:58Z,- LRenDO commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1728165899) at 2023-09-20 10:32 AM PDT -LRenDO,2023-09-20T17:52:22Z,- LRenDO submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1636211440) at 2023-09-20 10:52 AM PDT -LRenDO,2023-09-20T18:09:25Z,- LRenDO submitted pull request review: [5560](https://github.com/hackforla/website/pull/5560#pullrequestreview-1636238949) at 2023-09-20 11:09 AM PDT -LRenDO,2023-09-20T18:54:22Z,- LRenDO commented on pull request: [5561](https://github.com/hackforla/website/pull/5561#issuecomment-1728269096) at 2023-09-20 11:54 AM PDT -LRenDO,2023-09-20T21:48:33Z,- LRenDO submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1636559484) at 2023-09-20 02:48 PM PDT -LRenDO,2023-09-21T00:58:32Z,- LRenDO submitted pull request review: [5438](https://github.com/hackforla/website/pull/5438#pullrequestreview-1636717138) at 2023-09-20 05:58 PM PDT -LRenDO,2023-09-21T20:56:34Z,- LRenDO submitted pull request review: [5560](https://github.com/hackforla/website/pull/5560#pullrequestreview-1638694657) at 2023-09-21 01:56 PM PDT -LRenDO,2023-09-23T00:49:46Z,- LRenDO submitted pull request review: [5571](https://github.com/hackforla/website/pull/5571#pullrequestreview-1640756294) at 2023-09-22 05:49 PM PDT -LRenDO,2023-09-23T00:50:44Z,- LRenDO closed issue by PR 5571: [5404](https://github.com/hackforla/website/issues/5404#event-10452192469) at 2023-09-22 05:50 PM PDT -LRenDO,2023-09-23T01:05:42Z,- LRenDO commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1732157463) at 2023-09-22 06:05 PM PDT -LRenDO,2023-09-28T22:14:11Z,- LRenDO commented on pull request: [5438](https://github.com/hackforla/website/pull/5438#issuecomment-1740070757) at 2023-09-28 03:14 PM PDT -LRenDO,2023-10-04T18:42:54Z,- LRenDO commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1747445479) at 2023-10-04 11:42 AM PDT -LRenDO,2023-10-04T19:22:09Z,- LRenDO commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1747499961) at 2023-10-04 12:22 PM PDT -LRenDO,2023-10-04T19:31:08Z,- LRenDO commented on issue: [5596](https://github.com/hackforla/website/issues/5596#issuecomment-1747511720) at 2023-10-04 12:31 PM PDT -LRenDO,2023-10-04T19:31:08Z,- LRenDO closed issue as completed: [5596](https://github.com/hackforla/website/issues/5596#event-10554983678) at 2023-10-04 12:31 PM PDT -LRenDO,2023-10-04T19:37:14Z,- LRenDO commented on issue: [5600](https://github.com/hackforla/website/issues/5600#issuecomment-1747519441) at 2023-10-04 12:37 PM PDT -LRenDO,2023-10-04T19:37:14Z,- LRenDO closed issue as completed: [5600](https://github.com/hackforla/website/issues/5600#event-10555033679) at 2023-10-04 12:37 PM PDT -LRenDO,2023-10-04T19:44:23Z,- LRenDO commented on issue: [5598](https://github.com/hackforla/website/issues/5598#issuecomment-1747528976) at 2023-10-04 12:44 PM PDT -LRenDO,2023-10-04T19:44:23Z,- LRenDO closed issue as completed: [5598](https://github.com/hackforla/website/issues/5598#event-10555093093) at 2023-10-04 12:44 PM PDT -LRenDO,2023-10-04T20:04:56Z,- LRenDO commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1747559150) at 2023-10-04 01:04 PM PDT -LRenDO,2023-10-04T20:04:56Z,- LRenDO reopened issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1747559150) at 2023-10-04 01:04 PM PDT -LRenDO,2023-10-04T20:08:39Z,- LRenDO commented on issue: [5529](https://github.com/hackforla/website/issues/5529#issuecomment-1747565354) at 2023-10-04 01:08 PM PDT -LRenDO,2023-10-04T20:08:39Z,- LRenDO closed issue as completed: [5529](https://github.com/hackforla/website/issues/5529#event-10555306506) at 2023-10-04 01:08 PM PDT -LRenDO,2023-10-04T20:14:31Z,- LRenDO commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1747573614) at 2023-10-04 01:14 PM PDT -LRenDO,2023-10-04T20:16:31Z,- LRenDO commented on issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1747576311) at 2023-10-04 01:16 PM PDT -LRenDO,2023-10-04T20:16:31Z,- LRenDO closed issue as completed: [5530](https://github.com/hackforla/website/issues/5530#event-10555368185) at 2023-10-04 01:16 PM PDT -LRenDO,2023-10-04T20:18:36Z,- LRenDO commented on issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1747579080) at 2023-10-04 01:18 PM PDT -LRenDO,2023-10-04T20:18:36Z,- LRenDO closed issue as completed: [5531](https://github.com/hackforla/website/issues/5531#event-10555384567) at 2023-10-04 01:18 PM PDT -LRenDO,2023-10-04T20:20:06Z,- LRenDO commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1747580890) at 2023-10-04 01:20 PM PDT -LRenDO,2023-10-04T20:20:06Z,- LRenDO closed issue as completed: [5517](https://github.com/hackforla/website/issues/5517#event-10555396403) at 2023-10-04 01:20 PM PDT -LRenDO,2023-10-04T20:33:45Z,- LRenDO commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1747599052) at 2023-10-04 01:33 PM PDT -LRenDO,2023-10-04T20:39:00Z,- LRenDO commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1747605711) at 2023-10-04 01:39 PM PDT -LRenDO,2023-10-04T20:44:02Z,- LRenDO commented on issue: [5594](https://github.com/hackforla/website/issues/5594#issuecomment-1747612231) at 2023-10-04 01:44 PM PDT -LRenDO,2023-10-04T21:16:17Z,- LRenDO commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1747654176) at 2023-10-04 02:16 PM PDT -LRenDO,2023-10-04T21:19:33Z,- LRenDO commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1747658044) at 2023-10-04 02:19 PM PDT -LRenDO,2023-10-04T21:19:33Z,- LRenDO closed issue as completed: [5527](https://github.com/hackforla/website/issues/5527#event-10555864973) at 2023-10-04 02:19 PM PDT -LRenDO,2023-10-04T21:20:59Z,- LRenDO commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1747659544) at 2023-10-04 02:20 PM PDT -LRenDO,2023-10-04T21:20:59Z,- LRenDO closed issue as completed: [5604](https://github.com/hackforla/website/issues/5604#event-10555875241) at 2023-10-04 02:20 PM PDT -LRenDO,2023-10-05T03:44:16Z,- LRenDO commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1747988642) at 2023-10-04 08:44 PM PDT -LRenDO,2023-10-05T03:54:52Z,- LRenDO commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1747994764) at 2023-10-04 08:54 PM PDT -LRenDO,2023-10-05T05:41:02Z,- LRenDO commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1748081175) at 2023-10-04 10:41 PM PDT -LRenDO,2023-10-05T15:53:05Z,- LRenDO commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1749181258) at 2023-10-05 08:53 AM PDT -LRenDO,2023-10-05T15:53:06Z,- LRenDO closed issue as completed: [4867](https://github.com/hackforla/website/issues/4867#event-10565713280) at 2023-10-05 08:53 AM PDT -LRenDO,2023-10-06T17:58:16Z,- LRenDO commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1751195057) at 2023-10-06 10:58 AM PDT -LRenDO,2023-10-06T19:37:15Z,- LRenDO commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1751316995) at 2023-10-06 12:37 PM PDT -LRenDO,2023-10-06T19:37:15Z,- LRenDO closed issue as completed: [5520](https://github.com/hackforla/website/issues/5520#event-10579136747) at 2023-10-06 12:37 PM PDT -LRenDO,2023-10-08T16:11:48Z,- LRenDO commented on issue: [5594](https://github.com/hackforla/website/issues/5594#issuecomment-1752095568) at 2023-10-08 09:11 AM PDT -LRenDO,2023-10-08T16:11:48Z,- LRenDO closed issue as completed: [5594](https://github.com/hackforla/website/issues/5594#event-10584488477) at 2023-10-08 09:11 AM PDT -LRenDO,2023-10-11T19:28:42Z,- LRenDO commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1758395604) at 2023-10-11 12:28 PM PDT -LRenDO,2023-10-11T19:28:42Z,- LRenDO closed issue as completed: [5602](https://github.com/hackforla/website/issues/5602#event-10623211720) at 2023-10-11 12:28 PM PDT -LRenDO,2023-10-11T19:36:59Z,- LRenDO commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1758409046) at 2023-10-11 12:36 PM PDT -LRenDO,2023-10-11T19:40:55Z,- LRenDO commented on issue: [5597](https://github.com/hackforla/website/issues/5597#issuecomment-1758415028) at 2023-10-11 12:40 PM PDT -LRenDO,2023-10-11T19:40:55Z,- LRenDO closed issue as completed: [5597](https://github.com/hackforla/website/issues/5597#event-10623333105) at 2023-10-11 12:40 PM PDT -LRenDO,2023-10-11T19:53:11Z,- LRenDO commented on issue: [5621](https://github.com/hackforla/website/issues/5621#issuecomment-1758432758) at 2023-10-11 12:53 PM PDT -LRenDO,2023-10-12T04:02:42Z,- LRenDO commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1758876249) at 2023-10-11 09:02 PM PDT -LRenDO,2023-10-12T04:02:42Z,- LRenDO closed issue as completed: [5599](https://github.com/hackforla/website/issues/5599#event-10626478584) at 2023-10-11 09:02 PM PDT -LRenDO,2023-10-19T16:25:30Z,- LRenDO commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1771328365) at 2023-10-19 09:25 AM PDT -LRenDO,2023-10-31T21:50:45Z,- LRenDO commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1788086579) at 2023-10-31 02:50 PM PDT -LRenDO,2023-10-31T21:50:46Z,- LRenDO closed issue as completed: [4510](https://github.com/hackforla/website/issues/4510#event-10826307825) at 2023-10-31 02:50 PM PDT -LRenDO,2023-11-01T20:54:48Z,- LRenDO submitted pull request review: [5794](https://github.com/hackforla/website/pull/5794#pullrequestreview-1709071945) at 2023-11-01 01:54 PM PDT -LRenDO,2023-11-01T21:01:09Z,- LRenDO commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789678721) at 2023-11-01 02:01 PM PDT -LRenDO,2023-11-01T21:27:23Z,- LRenDO submitted pull request review: [5811](https://github.com/hackforla/website/pull/5811#pullrequestreview-1709112836) at 2023-11-01 02:27 PM PDT -LRenDO,2023-11-01T21:44:01Z,- LRenDO commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789734167) at 2023-11-01 02:44 PM PDT -LRenDO,2023-11-02T18:46:20Z,- LRenDO submitted pull request review: [5794](https://github.com/hackforla/website/pull/5794#pullrequestreview-1711029265) at 2023-11-02 11:46 AM PDT -LRenDO,2023-11-07T20:10:32Z,- LRenDO submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1718635098) at 2023-11-07 12:10 PM PST -LRenDO,2023-11-08T16:43:43Z,- LRenDO submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1720818160) at 2023-11-08 08:43 AM PST -LRenDO,2023-11-15T23:54:00Z,- LRenDO submitted pull request review: [5901](https://github.com/hackforla/website/pull/5901#pullrequestreview-1733242811) at 2023-11-15 03:54 PM PST -LRenDO,2023-11-16T00:10:54Z,- LRenDO commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1813497847) at 2023-11-15 04:10 PM PST -LRenDO,2023-11-16T05:14:43Z,- LRenDO commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1813801959) at 2023-11-15 09:14 PM PST -LRenDO,2023-11-16T05:35:54Z,- LRenDO commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1813818740) at 2023-11-15 09:35 PM PST -LRenDO,2023-11-16T06:07:26Z,- LRenDO submitted pull request review: [5910](https://github.com/hackforla/website/pull/5910#pullrequestreview-1733570051) at 2023-11-15 10:07 PM PST -LRenDO,2023-11-16T07:12:49Z,- LRenDO submitted pull request review: [5911](https://github.com/hackforla/website/pull/5911#pullrequestreview-1733647434) at 2023-11-15 11:12 PM PST -LRenDO,2023-11-16T07:21:38Z,- LRenDO commented on issue: [5770](https://github.com/hackforla/website/issues/5770#issuecomment-1813910812) at 2023-11-15 11:21 PM PST -LRenDO,2023-11-16T21:01:16Z,- LRenDO commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1815305388) at 2023-11-16 01:01 PM PST -LRenDO,2023-11-16T22:00:00Z,- LRenDO commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1815382151) at 2023-11-16 02:00 PM PST -LRenDO,2023-11-16T23:17:50Z,- LRenDO commented on pull request: [5911](https://github.com/hackforla/website/pull/5911#issuecomment-1815469801) at 2023-11-16 03:17 PM PST -LRenDO,2023-11-17T17:34:12Z,- LRenDO commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1816825176) at 2023-11-17 09:34 AM PST -LRenDO,2023-11-19T18:02:31Z,- LRenDO submitted pull request review: [5910](https://github.com/hackforla/website/pull/5910#pullrequestreview-1738695667) at 2023-11-19 10:02 AM PST -LRenDO,2023-11-21T07:19:41Z,- LRenDO submitted pull request review: [5901](https://github.com/hackforla/website/pull/5901#pullrequestreview-1741259091) at 2023-11-20 11:19 PM PST -LRenDO,2023-11-21T19:05:08Z,- LRenDO closed issue by PR 5901: [5801](https://github.com/hackforla/website/issues/5801#event-11028213573) at 2023-11-21 11:05 AM PST -LRenDO,2023-11-21T21:16:12Z,- LRenDO commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1821699624) at 2023-11-21 01:16 PM PST -LRenDO,2023-11-22T06:24:46Z,- LRenDO commented on pull request: [5929](https://github.com/hackforla/website/pull/5929#issuecomment-1822183235) at 2023-11-21 10:24 PM PST -LRenDO,2023-11-29T22:35:09Z,- LRenDO submitted pull request review: [5943](https://github.com/hackforla/website/pull/5943#pullrequestreview-1756331873) at 2023-11-29 02:35 PM PST -LRenDO,2023-11-29T22:35:48Z,- LRenDO closed issue by PR 5943: [5797](https://github.com/hackforla/website/issues/5797#event-11102198138) at 2023-11-29 02:35 PM PST -LRenDO,2023-11-29T22:54:59Z,- LRenDO submitted pull request review: [5945](https://github.com/hackforla/website/pull/5945#pullrequestreview-1756362161) at 2023-11-29 02:54 PM PST -LRenDO,2023-11-29T23:29:09Z,- LRenDO submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1756393694) at 2023-11-29 03:29 PM PST -LRenDO,2023-11-29T23:56:25Z,- LRenDO commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1832882811) at 2023-11-29 03:56 PM PST -LRenDO,2023-11-30T00:05:51Z,- LRenDO closed issue by PR 5941: [5693](https://github.com/hackforla/website/issues/5693#event-11102718386) at 2023-11-29 04:05 PM PST -LRenDO,2023-11-30T00:14:30Z,- LRenDO commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1832900192) at 2023-11-29 04:14 PM PST -LRenDO,2023-11-30T00:32:29Z,- LRenDO submitted pull request review: [5946](https://github.com/hackforla/website/pull/5946#pullrequestreview-1756442785) at 2023-11-29 04:32 PM PST -LRenDO,2023-11-30T00:35:48Z,- LRenDO closed issue by PR 5946: [5681](https://github.com/hackforla/website/issues/5681#event-11102882719) at 2023-11-29 04:35 PM PST -LRenDO,2023-12-02T01:08:58Z,- LRenDO submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1760743683) at 2023-12-01 05:08 PM PST -LRenDO,2023-12-02T01:16:11Z,- LRenDO closed issue by PR 5883: [5541](https://github.com/hackforla/website/issues/5541#event-11127695702) at 2023-12-01 05:16 PM PST -LRenDO,2024-01-10T16:04:18Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1885143566) at 2024-01-10 08:04 AM PST -LRenDO,2024-01-10T16:08:57Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1885152240) at 2024-01-10 08:08 AM PST -LRenDO,2024-01-10T16:11:20Z,- LRenDO commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1885156516) at 2024-01-10 08:11 AM PST -LRenDO,2024-01-10T16:51:57Z,- LRenDO commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1885228224) at 2024-01-10 08:51 AM PST -LRenDO,2024-01-10T19:33:12Z,- LRenDO commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1885578235) at 2024-01-10 11:33 AM PST -LRenDO,2024-01-10T19:44:30Z,- LRenDO commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1885597127) at 2024-01-10 11:44 AM PST -LRenDO,2024-01-10T19:52:54Z,- LRenDO commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1885613402) at 2024-01-10 11:52 AM PST -LRenDO,2024-01-10T20:08:28Z,- LRenDO commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1885641551) at 2024-01-10 12:08 PM PST -LRenDO,2024-01-10T20:28:07Z,- LRenDO commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1885666957) at 2024-01-10 12:28 PM PST -LRenDO,2024-01-16T20:54:03Z,- LRenDO commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1894496749) at 2024-01-16 12:54 PM PST -LRenDO,2024-01-18T06:41:18Z,- LRenDO submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1828950815) at 2024-01-17 10:41 PM PST -LRenDO,2024-01-24T16:57:05Z,- LRenDO submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1841923038) at 2024-01-24 08:57 AM PST -LRenDO,2024-01-24T17:15:09Z,- LRenDO commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1908578796) at 2024-01-24 09:15 AM PST -LRenDO,2024-01-24T17:15:58Z,- LRenDO closed issue by PR 6130: [6126](https://github.com/hackforla/website/issues/6126#event-11587321591) at 2024-01-24 09:15 AM PST -LRenDO,2024-01-24T17:17:44Z,- LRenDO commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1908583140) at 2024-01-24 09:17 AM PST -LRenDO,2024-01-24T17:33:35Z,- LRenDO commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1908609543) at 2024-01-24 09:33 AM PST -LRenDO,2024-01-24T17:48:50Z,- LRenDO commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1908635413) at 2024-01-24 09:48 AM PST -LRenDO,2024-01-24T17:54:02Z,- LRenDO closed issue by PR 6134: [6078](https://github.com/hackforla/website/issues/6078#event-11587736321) at 2024-01-24 09:54 AM PST -LRenDO,2024-01-24T18:46:47Z,- LRenDO submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1842136527) at 2024-01-24 10:46 AM PST -LRenDO,2024-01-25T03:52:27Z,- LRenDO submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1842791891) at 2024-01-24 07:52 PM PST -LRenDO,2024-01-26T02:40:37Z,- LRenDO commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1911320144) at 2024-01-25 06:40 PM PST -LRenDO,2024-02-07T15:51:57Z,- LRenDO commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1932340232) at 2024-02-07 07:51 AM PST -LRenDO,2024-02-07T16:25:22Z,- LRenDO commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1932413919) at 2024-02-07 08:25 AM PST -LRenDO,2024-02-07T16:34:57Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1932432996) at 2024-02-07 08:34 AM PST -LRenDO,2024-02-07T17:34:19Z,- LRenDO commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1932547749) at 2024-02-07 09:34 AM PST -LRenDO,2024-02-07T18:10:53Z,- LRenDO commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1932607713) at 2024-02-07 10:10 AM PST -LRenDO,2024-02-07T18:28:24Z,- LRenDO commented on pull request: [6261](https://github.com/hackforla/website/pull/6261#issuecomment-1932634398) at 2024-02-07 10:28 AM PST -LRenDO,2024-02-07T18:29:11Z,- LRenDO commented on pull request: [6261](https://github.com/hackforla/website/pull/6261#issuecomment-1932635616) at 2024-02-07 10:29 AM PST -LRenDO,2024-02-07T18:36:38Z,- LRenDO commented on issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1932646772) at 2024-02-07 10:36 AM PST -LRenDO,2024-02-07T18:58:42Z,- LRenDO commented on pull request: [6243](https://github.com/hackforla/website/pull/6243#issuecomment-1932680109) at 2024-02-07 10:58 AM PST -LRenDO,2024-02-07T18:59:45Z,- LRenDO closed issue by PR 6243: [6200](https://github.com/hackforla/website/issues/6200#event-11736569440) at 2024-02-07 10:59 AM PST -LRenDO,2024-02-07T19:23:38Z,- LRenDO commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1932718484) at 2024-02-07 11:23 AM PST -LRenDO,2024-02-07T22:06:00Z,- LRenDO closed issue by PR 6141: [5827](https://github.com/hackforla/website/issues/5827#event-11738398918) at 2024-02-07 02:06 PM PST -LRenDO,2024-02-09T18:37:21Z,- LRenDO commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1936422741) at 2024-02-09 10:37 AM PST -LRenDO,2024-02-21T18:19:57Z,- LRenDO commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1957612929) at 2024-02-21 10:19 AM PST -LRenDO,2024-02-21T18:23:16Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1957623311) at 2024-02-21 10:23 AM PST -LRenDO,2024-02-21T18:40:46Z,- LRenDO commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1957670315) at 2024-02-21 10:40 AM PST -LRenDO,2024-02-21T18:41:30Z,- LRenDO closed issue by PR 6322: [6294](https://github.com/hackforla/website/issues/6294#event-11880638568) at 2024-02-21 10:41 AM PST -LRenDO,2024-02-21T19:15:38Z,- LRenDO commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1957734102) at 2024-02-21 11:15 AM PST -LRenDO,2024-02-21T19:19:19Z,- LRenDO commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1957739745) at 2024-02-21 11:19 AM PST -LRenDO,2024-02-21T19:25:01Z,- LRenDO commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1957748732) at 2024-02-21 11:25 AM PST -LRenDO,2024-02-21T19:38:32Z,- LRenDO commented on issue: [5988](https://github.com/hackforla/website/issues/5988#issuecomment-1957770023) at 2024-02-21 11:38 AM PST -LRenDO,2024-02-21T19:38:32Z,- LRenDO closed issue as completed: [5988](https://github.com/hackforla/website/issues/5988#event-11881262381) at 2024-02-21 11:38 AM PST -LRenDO,2024-02-21T19:43:01Z,- LRenDO commented on issue: [5998](https://github.com/hackforla/website/issues/5998#issuecomment-1957777164) at 2024-02-21 11:43 AM PST -LRenDO,2024-02-21T19:43:01Z,- LRenDO closed issue as completed: [5998](https://github.com/hackforla/website/issues/5998#event-11881308339) at 2024-02-21 11:43 AM PST -LRenDO,2024-02-21T19:50:16Z,- LRenDO commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1957787673) at 2024-02-21 11:50 AM PST -LRenDO,2024-02-21T19:59:50Z,- LRenDO commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1957803390) at 2024-02-21 11:59 AM PST -LRenDO,2024-02-23T19:15:04Z,- LRenDO commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1961857974) at 2024-02-23 11:15 AM PST -LRenDO,2024-03-07T01:06:01Z,- LRenDO closed issue by PR 6431: [6125](https://github.com/hackforla/website/issues/6125#event-12035262650) at 2024-03-06 05:06 PM PST -LRenDO,2024-03-07T01:44:40Z,- LRenDO closed issue by PR 6417: [5843](https://github.com/hackforla/website/issues/5843#event-12035475607) at 2024-03-06 05:44 PM PST -LRenDO,2024-03-07T02:07:42Z,- LRenDO commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1982207316) at 2024-03-06 06:07 PM PST -LRenDO,2024-03-07T02:49:45Z,- LRenDO submitted pull request review: [6435](https://github.com/hackforla/website/pull/6435#pullrequestreview-1921340790) at 2024-03-06 06:49 PM PST -LRenDO,2024-03-07T02:50:07Z,- LRenDO closed issue by PR 6435: [6168](https://github.com/hackforla/website/issues/6168#event-12035829237) at 2024-03-06 06:50 PM PST -LRenDO,2024-03-07T04:14:36Z,- LRenDO commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1982316824) at 2024-03-06 08:14 PM PST -LRenDO,2024-03-07T04:28:15Z,- LRenDO commented on issue: [5993](https://github.com/hackforla/website/issues/5993#issuecomment-1982326150) at 2024-03-06 08:28 PM PST -LRenDO,2024-03-07T04:28:15Z,- LRenDO closed issue as completed: [5993](https://github.com/hackforla/website/issues/5993#event-12036317336) at 2024-03-06 08:28 PM PST -LRenDO,2024-03-07T04:37:39Z,- LRenDO commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1982332833) at 2024-03-06 08:37 PM PST -LRenDO,2024-03-07T04:41:23Z,- LRenDO commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1982335487) at 2024-03-06 08:41 PM PST -LRenDO,2024-03-07T04:41:23Z,- LRenDO closed issue as completed: [5989](https://github.com/hackforla/website/issues/5989#event-12036384668) at 2024-03-06 08:41 PM PST -LRenDO,2024-03-07T04:50:40Z,- LRenDO commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1982342473) at 2024-03-06 08:50 PM PST -LRenDO,2024-03-07T06:21:24Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1982529398) at 2024-03-06 10:21 PM PST -LRenDO,2024-03-07T14:47:35Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983663733) at 2024-03-07 06:47 AM PST -LRenDO,2024-03-08T20:43:13Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1986389987) at 2024-03-08 12:43 PM PST -LRenDO,2024-03-09T16:59:02Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1986917238) at 2024-03-09 09:59 AM PDT -LRenDO,2024-03-09T16:59:02Z,- LRenDO closed issue as completed: [4856](https://github.com/hackforla/website/issues/4856#event-12063543832) at 2024-03-09 09:59 AM PDT -LRenDO,2024-03-20T20:56:43Z,- LRenDO closed issue by PR 6477: [6157](https://github.com/hackforla/website/issues/6157#event-12191253654) at 2024-03-20 01:56 PM PDT -LRenDO,2024-03-20T21:05:38Z,- LRenDO commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-2010637562) at 2024-03-20 02:05 PM PDT -LRenDO,2024-03-20T21:08:50Z,- LRenDO commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-2010643588) at 2024-03-20 02:08 PM PDT -LRenDO,2024-03-20T21:33:40Z,- LRenDO commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2010678427) at 2024-03-20 02:33 PM PDT -LRenDO,2024-03-20T21:36:37Z,- LRenDO commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-2010683013) at 2024-03-20 02:36 PM PDT -LRenDO,2024-03-20T21:48:13Z,- LRenDO commented on issue: [5995](https://github.com/hackforla/website/issues/5995#issuecomment-2010699759) at 2024-03-20 02:48 PM PDT -LRenDO,2024-03-20T21:48:13Z,- LRenDO closed issue as completed: [5995](https://github.com/hackforla/website/issues/5995#event-12191772070) at 2024-03-20 02:48 PM PDT -LRenDO,2024-03-20T21:51:45Z,- LRenDO commented on issue: [5997](https://github.com/hackforla/website/issues/5997#issuecomment-2010704321) at 2024-03-20 02:51 PM PDT -LRenDO,2024-03-20T21:51:45Z,- LRenDO closed issue as completed: [5997](https://github.com/hackforla/website/issues/5997#event-12191807256) at 2024-03-20 02:51 PM PDT -LRenDO,2024-03-20T22:35:26Z,- LRenDO commented on issue: [6090](https://github.com/hackforla/website/issues/6090#issuecomment-2010771835) at 2024-03-20 03:35 PM PDT -LRenDO,2024-03-20T22:35:26Z,- LRenDO closed issue as completed: [6090](https://github.com/hackforla/website/issues/6090#event-12192241774) at 2024-03-20 03:35 PM PDT -LRenDO,2024-03-20T22:38:13Z,- LRenDO commented on issue: [6093](https://github.com/hackforla/website/issues/6093#issuecomment-2010779237) at 2024-03-20 03:38 PM PDT -LRenDO,2024-03-20T22:38:13Z,- LRenDO closed issue as completed: [6093](https://github.com/hackforla/website/issues/6093#event-12192259630) at 2024-03-20 03:38 PM PDT -LRenDO,2024-03-20T22:39:40Z,- LRenDO commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-2010785195) at 2024-03-20 03:39 PM PDT -LRenDO,2024-03-20T22:39:40Z,- LRenDO closed issue as completed: [5981](https://github.com/hackforla/website/issues/5981#event-12192273340) at 2024-03-20 03:39 PM PDT -LRenDO,2024-03-20T22:49:39Z,- LRenDO commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-2010812626) at 2024-03-20 03:49 PM PDT -LRenDO,2024-03-20T23:20:41Z,- LRenDO commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-2010890912) at 2024-03-20 04:20 PM PDT -LRenDO,2024-03-20T23:27:25Z,- LRenDO commented on issue: [6097](https://github.com/hackforla/website/issues/6097#issuecomment-2010897846) at 2024-03-20 04:27 PM PDT -LRenDO,2024-03-20T23:27:25Z,- LRenDO closed issue as completed: [6097](https://github.com/hackforla/website/issues/6097#event-12192696105) at 2024-03-20 04:27 PM PDT -LRenDO,2024-03-20T23:40:00Z,- LRenDO commented on issue: [6094](https://github.com/hackforla/website/issues/6094#issuecomment-2010912784) at 2024-03-20 04:40 PM PDT -LRenDO,2024-03-20T23:40:00Z,- LRenDO closed issue as completed: [6094](https://github.com/hackforla/website/issues/6094#event-12192773801) at 2024-03-20 04:40 PM PDT -LRenDO,2024-03-20T23:41:49Z,- LRenDO commented on issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-2010914520) at 2024-03-20 04:41 PM PDT -LRenDO,2024-03-20T23:41:49Z,- LRenDO closed issue as completed: [5984](https://github.com/hackforla/website/issues/5984#event-12192794152) at 2024-03-20 04:41 PM PDT -LRenDO,2024-03-21T00:17:12Z,- LRenDO commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2010952132) at 2024-03-20 05:17 PM PDT -LRenDO,2024-04-04T01:22:42Z,- LRenDO commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2035916627) at 2024-04-03 06:22 PM PDT -LRenDO,2024-04-04T01:32:01Z,- LRenDO commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2035930816) at 2024-04-03 06:32 PM PDT -LRenDO,2024-04-04T01:32:01Z,- LRenDO closed issue as completed: [6490](https://github.com/hackforla/website/issues/6490#event-12350206284) at 2024-04-03 06:32 PM PDT -LRenDO,2024-04-04T01:34:06Z,- LRenDO commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-2035936126) at 2024-04-03 06:34 PM PDT -LRenDO,2024-04-04T01:34:06Z,- LRenDO closed issue as completed: [6095](https://github.com/hackforla/website/issues/6095#event-12350217691) at 2024-04-03 06:34 PM PDT -LRenDO,2024-04-04T01:35:42Z,- LRenDO commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-2035940725) at 2024-04-03 06:35 PM PDT -LRenDO,2024-04-04T01:35:43Z,- LRenDO closed issue as completed: [6089](https://github.com/hackforla/website/issues/6089#event-12350227886) at 2024-04-03 06:35 PM PDT -LRenDO,2024-04-04T01:45:17Z,- LRenDO commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2035968352) at 2024-04-03 06:45 PM PDT -LRenDO,2024-04-04T01:45:17Z,- LRenDO closed issue as completed: [6466](https://github.com/hackforla/website/issues/6466#event-12350295747) at 2024-04-03 06:45 PM PDT -LRenDO,2024-04-04T01:48:05Z,- LRenDO commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2035976832) at 2024-04-03 06:48 PM PDT -LRenDO,2024-04-04T01:56:23Z,- LRenDO commented on issue: [6475](https://github.com/hackforla/website/issues/6475#issuecomment-2035994599) at 2024-04-03 06:56 PM PDT -LRenDO,2024-04-04T01:56:23Z,- LRenDO closed issue as completed: [6475](https://github.com/hackforla/website/issues/6475#event-12350388522) at 2024-04-03 06:56 PM PDT -LRenDO,2024-04-12T17:51:53Z,- LRenDO commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2052213287) at 2024-04-12 10:51 AM PDT -LRenDO,2024-04-12T22:40:41Z,- LRenDO commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2052646413) at 2024-04-12 03:40 PM PDT -LRenDO,2024-04-12T22:40:41Z,- LRenDO closed issue as completed: [6488](https://github.com/hackforla/website/issues/6488#event-12454816160) at 2024-04-12 03:40 PM PDT -LRenDO,2024-04-17T07:02:25Z,- LRenDO commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2060522618) at 2024-04-17 12:02 AM PDT -LRenDO,2024-04-17T21:53:38Z,- LRenDO commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2062484483) at 2024-04-17 02:53 PM PDT -LRenDO,2024-04-17T21:54:40Z,- LRenDO commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2062487472) at 2024-04-17 02:54 PM PDT -LRenDO,2024-04-17T21:55:51Z,- LRenDO commented on pull request: [6652](https://github.com/hackforla/website/pull/6652#issuecomment-2062491402) at 2024-04-17 02:55 PM PDT -LRenDO,2024-04-17T22:02:26Z,- LRenDO commented on pull request: [6651](https://github.com/hackforla/website/pull/6651#issuecomment-2062510011) at 2024-04-17 03:02 PM PDT -LRenDO,2024-04-17T22:06:16Z,- LRenDO closed issue by PR 6626: [5289](https://github.com/hackforla/website/issues/5289#event-12514923256) at 2024-04-17 03:06 PM PDT -LRenDO,2024-04-22T18:10:53Z,- LRenDO commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2070494115) at 2024-04-22 11:10 AM PDT -LRenDO,2024-05-01T18:55:35Z,- LRenDO submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2034241492) at 2024-05-01 11:55 AM PDT -LRenDO,2024-05-01T18:55:48Z,- LRenDO closed issue by PR 6768: [6706](https://github.com/hackforla/website/issues/6706#event-12673647175) at 2024-05-01 11:55 AM PDT -LRenDO,2024-05-01T19:04:32Z,- LRenDO closed issue by PR 6788: [5845](https://github.com/hackforla/website/issues/5845#event-12673727032) at 2024-05-01 12:04 PM PDT -LRenDO,2024-05-01T19:29:03Z,- LRenDO commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2088978589) at 2024-05-01 12:29 PM PDT -LRenDO,2024-05-01T19:29:40Z,- LRenDO closed issue by PR 6774: [6640](https://github.com/hackforla/website/issues/6640#event-12673990221) at 2024-05-01 12:29 PM PDT -LRenDO,2024-05-01T19:39:29Z,- LRenDO commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2088994135) at 2024-05-01 12:39 PM PDT -LRenDO,2024-05-01T19:44:04Z,- LRenDO commented on pull request: [6802](https://github.com/hackforla/website/pull/6802#issuecomment-2089000252) at 2024-05-01 12:44 PM PDT -LRenDO,2024-05-01T19:49:54Z,- LRenDO commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2089007590) at 2024-05-01 12:49 PM PDT -LRenDO,2024-05-01T20:12:56Z,- LRenDO commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2089061844) at 2024-05-01 01:12 PM PDT -LRenDO,2024-05-01T20:16:38Z,- LRenDO commented on issue: [6758](https://github.com/hackforla/website/issues/6758#issuecomment-2089066672) at 2024-05-01 01:16 PM PDT -LRenDO,2024-05-01T20:16:38Z,- LRenDO closed issue as completed: [6758](https://github.com/hackforla/website/issues/6758#event-12674462531) at 2024-05-01 01:16 PM PDT -LRenDO,2024-05-02T00:51:09Z,- LRenDO submitted pull request review: [6802](https://github.com/hackforla/website/pull/6802#pullrequestreview-2034658032) at 2024-05-01 05:51 PM PDT -LRenDO,2024-05-02T00:51:50Z,- LRenDO closed issue by PR 6802: [6641](https://github.com/hackforla/website/issues/6641#event-12676375195) at 2024-05-01 05:51 PM PDT -LRenDO,2024-05-02T17:31:47Z,- LRenDO commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2091128840) at 2024-05-02 10:31 AM PDT -LRenDO,2024-05-03T14:43:45Z,- LRenDO submitted pull request review: [6801](https://github.com/hackforla/website/pull/6801#pullrequestreview-2038312202) at 2024-05-03 07:43 AM PDT -LRenDO,2024-05-03T14:45:01Z,- LRenDO closed issue by PR 6801: [6639](https://github.com/hackforla/website/issues/6639#event-12697399323) at 2024-05-03 07:45 AM PDT -LRenDO,2024-05-04T17:42:04Z,- LRenDO submitted pull request review: [6818](https://github.com/hackforla/website/pull/6818#pullrequestreview-2039521576) at 2024-05-04 10:42 AM PDT -LRenDO,2024-05-04T17:42:22Z,- LRenDO closed issue by PR 6818: [6638](https://github.com/hackforla/website/issues/6638#event-12704937435) at 2024-05-04 10:42 AM PDT -LRenDO,2024-05-15T17:12:53Z,- LRenDO commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2113057856) at 2024-05-15 10:12 AM PDT -LRenDO,2024-05-15T17:33:48Z,- LRenDO commented on issue: [6583](https://github.com/hackforla/website/issues/6583#issuecomment-2113092501) at 2024-05-15 10:33 AM PDT -LRenDO,2024-05-15T17:33:48Z,- LRenDO closed issue as completed: [6583](https://github.com/hackforla/website/issues/6583#event-12821315398) at 2024-05-15 10:33 AM PDT -LRenDO,2024-05-15T17:49:11Z,- LRenDO commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2113116859) at 2024-05-15 10:49 AM PDT -LRenDO,2024-05-15T17:52:55Z,- LRenDO closed issue by PR 6851: [6761](https://github.com/hackforla/website/issues/6761#event-12821507923) at 2024-05-15 10:52 AM PDT -LRenDO,2024-05-15T17:56:00Z,- LRenDO commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2113127545) at 2024-05-15 10:56 AM PDT -LRenDO,2024-05-15T18:00:30Z,- LRenDO commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2113134876) at 2024-05-15 11:00 AM PDT -LRenDO,2024-05-29T17:25:55Z,- LRenDO commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2137919294) at 2024-05-29 10:25 AM PDT -LRenDO,2024-05-29T17:28:03Z,- LRenDO commented on issue: [6592](https://github.com/hackforla/website/issues/6592#issuecomment-2137922533) at 2024-05-29 10:28 AM PDT -LRenDO,2024-05-29T17:28:03Z,- LRenDO closed issue as completed: [6592](https://github.com/hackforla/website/issues/6592#event-12975114765) at 2024-05-29 10:28 AM PDT -LRenDO,2024-05-29T17:30:31Z,- LRenDO commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2137926448) at 2024-05-29 10:30 AM PDT -LRenDO,2024-05-29T17:30:31Z,- LRenDO closed issue as completed: [6573](https://github.com/hackforla/website/issues/6573#event-12975141864) at 2024-05-29 10:30 AM PDT -LRenDO,2024-05-29T17:32:28Z,- LRenDO closed issue as completed: [6575](https://github.com/hackforla/website/issues/6575#event-12975163112) at 2024-05-29 10:32 AM PDT -LRenDO,2024-05-29T17:33:07Z,- LRenDO reopened issue: [6575](https://github.com/hackforla/website/issues/6575#event-12975163112) at 2024-05-29 10:33 AM PDT -LRenDO,2024-05-29T17:34:46Z,- LRenDO commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2137933420) at 2024-05-29 10:34 AM PDT -LRenDO,2024-05-29T17:34:46Z,- LRenDO closed issue as completed: [6575](https://github.com/hackforla/website/issues/6575#event-12975189573) at 2024-05-29 10:34 AM PDT -LRenDO,2024-05-29T17:37:52Z,- LRenDO commented on issue: [6576](https://github.com/hackforla/website/issues/6576#issuecomment-2137938296) at 2024-05-29 10:37 AM PDT -LRenDO,2024-05-29T17:37:52Z,- LRenDO closed issue as completed: [6576](https://github.com/hackforla/website/issues/6576#event-12975224316) at 2024-05-29 10:37 AM PDT -LRenDO,2024-05-29T17:39:11Z,- LRenDO commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2137940401) at 2024-05-29 10:39 AM PDT -LRenDO,2024-05-29T17:39:11Z,- LRenDO closed issue as completed: [6577](https://github.com/hackforla/website/issues/6577#event-12975237241) at 2024-05-29 10:39 AM PDT -LRenDO,2024-05-29T17:46:34Z,- LRenDO closed issue by PR 6887: [6800](https://github.com/hackforla/website/issues/6800#event-12975310713) at 2024-05-29 10:46 AM PDT -LRenDO,2024-05-29T17:49:43Z,- LRenDO commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2137957183) at 2024-05-29 10:49 AM PDT -LRenDO,2024-05-29T17:51:37Z,- LRenDO commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2137960260) at 2024-05-29 10:51 AM PDT -LRenDO,2024-05-29T17:53:11Z,- LRenDO commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2137962799) at 2024-05-29 10:53 AM PDT -LRenDO,2024-05-29T17:58:29Z,- LRenDO commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2137971634) at 2024-05-29 10:58 AM PDT -LRenDO,2024-05-29T17:58:53Z,- LRenDO commented on pull request: [6906](https://github.com/hackforla/website/pull/6906#issuecomment-2137972292) at 2024-05-29 10:58 AM PDT -LRenDO,2024-05-30T16:20:41Z,- LRenDO commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2140138940) at 2024-05-30 09:20 AM PDT -LRenDO,2024-06-13T05:50:39Z,- LRenDO commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2164475383) at 2024-06-12 10:50 PM PDT -LRenDO,2024-06-13T05:50:39Z,- LRenDO closed issue as completed: [6757](https://github.com/hackforla/website/issues/6757#event-13140690485) at 2024-06-12 10:50 PM PDT -LRenDO,2024-06-13T06:35:51Z,- LRenDO commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2164621702) at 2024-06-12 11:35 PM PDT -LRenDO,2024-06-14T19:34:45Z,- LRenDO commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168642781) at 2024-06-14 12:34 PM PDT -LRenDO,2024-06-26T23:20:10Z,- LRenDO submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2143124189) at 2024-06-26 04:20 PM PDT -LRenDO,2024-06-26T23:33:40Z,- LRenDO submitted pull request review: [7069](https://github.com/hackforla/website/pull/7069#pullrequestreview-2143139089) at 2024-06-26 04:33 PM PDT -LRenDO,2024-06-26T23:33:53Z,- LRenDO closed issue by PR 7069: [6941](https://github.com/hackforla/website/issues/6941#event-13305297780) at 2024-06-26 04:33 PM PDT -LRenDO,2024-06-26T23:40:25Z,- LRenDO commented on pull request: [7057](https://github.com/hackforla/website/pull/7057#issuecomment-2192793644) at 2024-06-26 04:40 PM PDT -LRenDO,2024-06-26T23:43:45Z,- LRenDO commented on issue: [7050](https://github.com/hackforla/website/issues/7050#issuecomment-2192796144) at 2024-06-26 04:43 PM PDT -LRenDO,2024-06-26T23:58:05Z,- LRenDO commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2192811102) at 2024-06-26 04:58 PM PDT -LRenDO,2024-06-27T16:29:02Z,- LRenDO submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2145919795) at 2024-06-27 09:29 AM PDT -LRenDO,2024-06-27T16:36:09Z,- LRenDO closed issue by PR 7065: [7046](https://github.com/hackforla/website/issues/7046#event-13320343166) at 2024-06-27 09:36 AM PDT -LRenDO,2024-07-10T18:01:38Z,- LRenDO commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2221131049) at 2024-07-10 11:01 AM PDT -LRenDO,2024-07-24T16:23:46Z,- LRenDO commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2248434478) at 2024-07-24 09:23 AM PDT -LRenDO,2024-08-15T14:57:26Z,- LRenDO closed issue by PR 7255: [7137](https://github.com/hackforla/website/issues/7137#event-13897226844) at 2024-08-15 07:57 AM PDT -LRenDO,2024-08-15T14:58:25Z,- LRenDO closed issue by PR 7257: [7178](https://github.com/hackforla/website/issues/7178#event-13897244931) at 2024-08-15 07:58 AM PDT -LRenDO,2024-08-15T15:00:49Z,- LRenDO closed issue by PR 7258: [7249](https://github.com/hackforla/website/issues/7249#event-13897282710) at 2024-08-15 08:00 AM PDT -LRenDO,2024-08-15T15:03:27Z,- LRenDO closed issue by PR 7263: [7184](https://github.com/hackforla/website/issues/7184#event-13897318089) at 2024-08-15 08:03 AM PDT -LRenDO,2024-08-15T15:07:31Z,- LRenDO submitted pull request review: [7269](https://github.com/hackforla/website/pull/7269#pullrequestreview-2240609245) at 2024-08-15 08:07 AM PDT -LRenDO,2024-08-15T15:07:48Z,- LRenDO closed issue by PR 7269: [7186](https://github.com/hackforla/website/issues/7186#event-13897371046) at 2024-08-15 08:07 AM PDT -LRenDO,2024-08-15T15:09:59Z,- LRenDO closed issue by PR 7271: [7188](https://github.com/hackforla/website/issues/7188#event-13897396994) at 2024-08-15 08:09 AM PDT -LRenDO,2024-08-15T15:12:13Z,- LRenDO commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2291495525) at 2024-08-15 08:12 AM PDT -LRenDO,2024-08-15T15:17:15Z,- LRenDO submitted pull request review: [7285](https://github.com/hackforla/website/pull/7285#pullrequestreview-2240628618) at 2024-08-15 08:17 AM PDT -LRenDO,2024-08-15T15:18:24Z,- LRenDO closed issue by PR 7285: [7254](https://github.com/hackforla/website/issues/7254#event-13897494079) at 2024-08-15 08:18 AM PDT -LRenDO,2024-08-15T23:08:38Z,- LRenDO commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2292432745) at 2024-08-15 04:08 PM PDT -LRenDO,2024-08-22T06:05:39Z,- LRenDO commented on pull request: [7307](https://github.com/hackforla/website/pull/7307#issuecomment-2303854294) at 2024-08-21 11:05 PM PDT -LRenDO,2024-08-22T06:09:07Z,- LRenDO closed issue by PR 7320: [7185](https://github.com/hackforla/website/issues/7185#event-13971783358) at 2024-08-21 11:09 PM PDT -LRenDO,2024-08-22T06:14:29Z,- LRenDO closed issue by PR 7312: [7245](https://github.com/hackforla/website/issues/7245#event-13971829408) at 2024-08-21 11:14 PM PDT -LRenDO,2024-08-29T15:18:19Z,- LRenDO commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2318067967) at 2024-08-29 08:18 AM PDT -LRenDO,2024-08-29T15:18:20Z,- LRenDO closed issue as completed: [6590](https://github.com/hackforla/website/issues/6590#event-14064696188) at 2024-08-29 08:18 AM PDT -LRenDO,2024-08-29T15:21:07Z,- LRenDO closed issue as completed: [7145](https://github.com/hackforla/website/issues/7145#event-14064928412) at 2024-08-29 08:21 AM PDT -LRenDO,2024-08-29T15:22:21Z,- LRenDO commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2318100506) at 2024-08-29 08:22 AM PDT -LRenDO,2024-09-05T14:20:23Z,- LRenDO commented on issue: [7252](https://github.com/hackforla/website/issues/7252#issuecomment-2331815167) at 2024-09-05 07:20 AM PDT -LRenDO,2024-09-05T14:30:41Z,- LRenDO commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2331844438) at 2024-09-05 07:30 AM PDT -LRenDO,2024-09-05T14:30:41Z,- LRenDO closed issue as completed: [7268](https://github.com/hackforla/website/issues/7268#event-14148442581) at 2024-09-05 07:30 AM PDT -LRenDO,2024-09-11T14:58:04Z,- LRenDO commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2343920516) at 2024-09-11 07:58 AM PDT -LRenDO,2024-09-11T14:58:05Z,- LRenDO closed issue as completed: [7162](https://github.com/hackforla/website/issues/7162#event-14217879014) at 2024-09-11 07:58 AM PDT -LRenDO,2024-09-11T15:04:21Z,- LRenDO commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2343936304) at 2024-09-11 08:04 AM PDT -LRenDO,2024-09-11T15:04:21Z,- LRenDO closed issue as completed: [7143](https://github.com/hackforla/website/issues/7143#event-14217984767) at 2024-09-11 08:04 AM PDT -LRenDO,2024-09-11T15:06:22Z,- LRenDO commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2343941215) at 2024-09-11 08:06 AM PDT -LRenDO,2024-09-11T15:06:22Z,- LRenDO closed issue as completed: [7146](https://github.com/hackforla/website/issues/7146#event-14218018557) at 2024-09-11 08:06 AM PDT -LRenDO,2024-09-18T15:06:15Z,- LRenDO commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2358733038) at 2024-09-18 08:06 AM PDT -LRenDO,2024-09-18T15:06:16Z,- LRenDO closed issue as completed: [7386](https://github.com/hackforla/website/issues/7386#event-14309404298) at 2024-09-18 08:06 AM PDT -LRenDO,2024-09-25T13:49:05Z,- LRenDO closed issue by PR 7511: [7488](https://github.com/hackforla/website/issues/7488#event-14399625346) at 2024-09-25 06:49 AM PDT -LRenDO,2024-10-02T14:58:51Z,- LRenDO commented on pull request: [7557](https://github.com/hackforla/website/pull/7557#issuecomment-2388882842) at 2024-10-02 07:58 AM PDT -LRenDO,2024-10-02T14:59:27Z,- LRenDO closed issue by PR 7557: [7252](https://github.com/hackforla/website/issues/7252#event-14490276837) at 2024-10-02 07:59 AM PDT -LRenDO,2024-10-17T14:50:19Z,- LRenDO commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2419766445) at 2024-10-17 07:50 AM PDT -LRenDO,2024-10-24T05:26:43Z,- LRenDO closed issue by PR 7628: [7489](https://github.com/hackforla/website/issues/7489#event-14841821733) at 2024-10-23 10:26 PM PDT -LRenDO,2024-10-30T15:25:02Z,- LRenDO commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2447539377) at 2024-10-30 08:25 AM PDT -LRenDO,2024-10-30T15:25:03Z,- LRenDO closed issue as completed: [7455](https://github.com/hackforla/website/issues/7455#event-15010188909) at 2024-10-30 08:25 AM PDT -LRenDO,2024-10-30T15:28:55Z,- LRenDO commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2447553070) at 2024-10-30 08:28 AM PDT -LRenDO,2024-11-06T16:35:21Z,- LRenDO closed issue by PR 7700: [7619](https://github.com/hackforla/website/issues/7619#event-15154508794) at 2024-11-06 08:35 AM PST -LRenDO,2024-11-06T16:44:36Z,- LRenDO closed issue by PR 7685: [7585](https://github.com/hackforla/website/issues/7585#event-15154640106) at 2024-11-06 08:44 AM PST -LRenDO,2025-02-06T07:35:26Z,- LRenDO submitted pull request review: [7874](https://github.com/hackforla/website/pull/7874#pullrequestreview-2597874250) at 2025-02-05 11:35 PM PST -LRenDO,2025-02-06T07:36:12Z,- LRenDO closed issue by PR 7874: [7480](https://github.com/hackforla/website/issues/7480#event-16205596703) at 2025-02-05 11:36 PM PST -LRenDO,2025-02-06T07:42:50Z,- LRenDO commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2639056646) at 2025-02-05 11:42 PM PST -LRenDO,2025-02-13T05:49:51Z,- LRenDO submitted pull request review: [7899](https://github.com/hackforla/website/pull/7899#pullrequestreview-2613913130) at 2025-02-12 09:49 PM PST -LRenDO,2025-02-13T05:50:26Z,- LRenDO closed issue by PR 7899: [7774](https://github.com/hackforla/website/issues/7774#event-16290916800) at 2025-02-12 09:50 PM PST -LRenDO,2025-02-13T06:00:30Z,- LRenDO commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2655567456) at 2025-02-12 10:00 PM PST -LRenDO,2025-02-13T06:00:40Z,- LRenDO closed issue by PR 7901: [7878](https://github.com/hackforla/website/issues/7878#event-16291002776) at 2025-02-12 10:00 PM PST -LRenDO,2025-02-13T06:22:44Z,- LRenDO commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2655643250) at 2025-02-12 10:22 PM PST -LRenDO,2025-02-20T07:49:20Z,- LRenDO closed issue by PR 7906: [7766](https://github.com/hackforla/website/issues/7766#event-16377473142) at 2025-02-19 11:49 PM PST -LRenDO,2025-02-20T07:52:03Z,- LRenDO closed issue by PR 7928: [7476](https://github.com/hackforla/website/issues/7476#event-16377519156) at 2025-02-19 11:52 PM PST -LRenDO,2025-03-05T16:06:52Z,- LRenDO commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2701396655) at 2025-03-05 08:06 AM PST -LRenDO,2025-03-05T16:16:14Z,- LRenDO closed issue by PR 7948: [7606](https://github.com/hackforla/website/issues/7606#event-16602508314) at 2025-03-05 08:16 AM PST -LRenDO,2025-03-19T15:59:18Z,- LRenDO closed issue by PR 7992: [7439](https://github.com/hackforla/website/issues/7439#event-16870343726) at 2025-03-19 08:59 AM PDT -LRenDO,2025-04-03T06:26:37Z,- LRenDO submitted pull request review: [8021](https://github.com/hackforla/website/pull/8021#pullrequestreview-2738660141) at 2025-04-02 11:26 PM PDT -LRenDO,2025-04-03T06:27:05Z,- LRenDO closed issue by PR 8021: [7469](https://github.com/hackforla/website/issues/7469#event-17106926462) at 2025-04-02 11:27 PM PDT -LRenDO,2025-04-03T06:28:36Z,- LRenDO closed issue by PR 8022: [7472](https://github.com/hackforla/website/issues/7472#event-17106941440) at 2025-04-02 11:28 PM PDT -LRenDO,2025-04-03T06:32:44Z,- LRenDO commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2774628174) at 2025-04-02 11:32 PM PDT -LRenDO,2025-04-16T14:51:11Z,- LRenDO closed issue by PR 8062: [7939](https://github.com/hackforla/website/issues/7939#event-17290797221) at 2025-04-16 07:51 AM PDT -LRenDO,2025-05-01T14:11:24Z,- LRenDO commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2844918524) at 2025-05-01 07:11 AM PDT -LRenDO,2025-05-07T16:20:00Z,- LRenDO closed issue by PR 8099: [7582](https://github.com/hackforla/website/issues/7582#event-17559687790) at 2025-05-07 09:20 AM PDT -LRenDO,2025-05-07T16:21:39Z,- LRenDO closed issue by PR 8104: [7750](https://github.com/hackforla/website/issues/7750#event-17559708957) at 2025-05-07 09:21 AM PDT -LRenDO,2025-05-07T16:23:07Z,- LRenDO closed issue by PR 8114: [7737](https://github.com/hackforla/website/issues/7737#event-17559727986) at 2025-05-07 09:23 AM PDT -LRenDO,2025-05-21T16:14:00Z,- LRenDO closed issue by PR 8124: [7924](https://github.com/hackforla/website/issues/7924#event-17757060819) at 2025-05-21 09:14 AM PDT -LRenDO,2025-06-18T14:57:11Z,- LRenDO commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2984559696) at 2025-06-18 07:57 AM PDT -LRenDO,2025-07-17T03:09:49Z,- LRenDO commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3082297085) at 2025-07-16 08:09 PM PDT -LRenDO,2025-07-17T03:09:50Z,- LRenDO closed issue as completed: [7610](https://github.com/hackforla/website/issues/7610#event-18671087105) at 2025-07-16 08:09 PM PDT -LRenDO,2025-07-17T03:15:10Z,- LRenDO submitted pull request review: [8246](https://github.com/hackforla/website/pull/8246#pullrequestreview-3027558148) at 2025-07-16 08:15 PM PDT -LRenDO,2025-07-17T03:15:33Z,- LRenDO closed issue by PR 8246: [7239](https://github.com/hackforla/website/issues/7239#event-18671131965) at 2025-07-16 08:15 PM PDT -lrobinson823,2558,SKILLS ISSUE -lrobinson823,2021-12-08T03:57:36Z,- lrobinson823 assigned to issue: [2558](https://github.com/hackforla/website/issues/2558) at 2021-12-07 07:57 PM PST -lrobinson823,2021-12-31T03:39:08Z,- lrobinson823 assigned to issue: [2489](https://github.com/hackforla/website/issues/2489#issuecomment-968559716) at 2021-12-30 07:39 PM PST -lrobinson823,2021-12-31T04:09:51Z,- lrobinson823 commented on issue: [2489](https://github.com/hackforla/website/issues/2489#issuecomment-1003261649) at 2021-12-30 08:09 PM PST -lrobinson823,2021-12-31T08:22:32Z,- lrobinson823 opened pull request: [2648](https://github.com/hackforla/website/pull/2648) at 2021-12-31 12:22 AM PST -lrobinson823,2022-01-05T02:53:34Z,- lrobinson823 closed issue as completed: [2558](https://github.com/hackforla/website/issues/2558#event-5843906573) at 2022-01-04 06:53 PM PST -lrobinson823,2022-01-05T03:03:12Z,- lrobinson823 commented on pull request: [2648](https://github.com/hackforla/website/pull/2648#issuecomment-1005341682) at 2022-01-04 07:03 PM PST -lrobinson823,2022-01-07T00:06:50Z,- lrobinson823 pull request merged: [2648](https://github.com/hackforla/website/pull/2648#event-5855193502) at 2022-01-06 04:06 PM PST -ltung05,2020-12-08T21:55:41Z,- ltung05 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -ltung05,2020-12-13T19:34:56Z,- ltung05 commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-744057015) at 2020-12-13 11:34 AM PST -ltung05,2020-12-13T19:42:10Z,- ltung05 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-744058014) at 2020-12-13 11:42 AM PST -ltung05,2020-12-13T20:03:44Z,- ltung05 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-744060681) at 2020-12-13 12:03 PM PST -ltung05,2020-12-13T20:15:05Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-744062103) at 2020-12-13 12:15 PM PST -ltung05,2020-12-13T20:15:15Z,- ltung05 assigned to issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-744062103) at 2020-12-13 12:15 PM PST -ltung05,2020-12-15T21:28:57Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-745579019) at 2020-12-15 01:28 PM PST -ltung05,2020-12-20T12:09:32Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-748599485) at 2020-12-20 04:09 AM PST -ltung05,2020-12-27T09:47:32Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-751446528) at 2020-12-27 01:47 AM PST -ltung05,2020-12-27T18:26:02Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-751500729) at 2020-12-27 10:26 AM PST -ltung05,2020-12-29T22:24:44Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-752262497) at 2020-12-29 02:24 PM PST -ltung05,2021-01-03T17:33:18Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-753650456) at 2021-01-03 09:33 AM PST -ltung05,2021-01-05T10:18:36Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-754545018) at 2021-01-05 02:18 AM PST -ltung05,2021-01-10T19:55:27Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-757534049) at 2021-01-10 11:55 AM PST -ltung05,2021-01-10T20:39:09Z,- ltung05 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:39 PM PST -ltung05,2021-01-11T23:59:12Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-758300121) at 2021-01-11 03:59 PM PST -ltung05,2021-01-13T17:22:13Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-759597703) at 2021-01-13 09:22 AM PST -ltung05,2021-01-17T17:35:06Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-761849116) at 2021-01-17 09:35 AM PST -ltung05,2021-01-20T18:08:29Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-763833112) at 2021-01-20 10:08 AM PST -ltung05,2021-01-24T18:04:54Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-766404480) at 2021-01-24 10:04 AM PST -ltung05,2021-02-18T04:13:04Z,- ltung05 commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-781036237) at 2021-02-17 08:13 PM PST -lucas-homer,2020-03-19T18:03:23Z,- lucas-homer commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-601331098) at 2020-03-19 11:03 AM PDT -LuccaWang1,6610,SKILLS ISSUE -LuccaWang1,2024-04-09T03:35:14Z,- LuccaWang1 opened issue: [6610](https://github.com/hackforla/website/issues/6610) at 2024-04-08 08:35 PM PDT -LuccaWang1,2024-04-09T03:35:15Z,- LuccaWang1 assigned to issue: [6610](https://github.com/hackforla/website/issues/6610) at 2024-04-08 08:35 PM PDT -LuccaWang1,2024-04-09T04:06:57Z,- LuccaWang1 assigned to issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2016945295) at 2024-04-08 09:06 PM PDT -LuccaWang1,2024-04-12T19:11:38Z,- LuccaWang1 unassigned from issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2016945295) at 2024-04-12 12:11 PM PDT -LuccaWang1,2024-04-20T02:14:58Z,- LuccaWang1 commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2067515493) at 2024-04-19 07:14 PM PDT -LuccaWang1,2024-04-20T03:09:34Z,- LuccaWang1 commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2067528273) at 2024-04-19 08:09 PM PDT -LuccaWang1,2024-06-14T07:11:00Z,- LuccaWang1 closed issue as completed: [6610](https://github.com/hackforla/website/issues/6610#event-13156699319) at 2024-06-14 12:11 AM PDT -luiderek,3682,SKILLS ISSUE -luiderek,2022-11-01T02:11:14Z,- luiderek opened issue: [3682](https://github.com/hackforla/website/issues/3682) at 2022-10-31 07:11 PM PDT -luiderek,2022-11-01T16:36:16Z,- luiderek assigned to issue: [2856](https://github.com/hackforla/website/issues/2856#issuecomment-1048432526) at 2022-11-01 09:36 AM PDT -luiderek,2022-11-01T16:41:18Z,- luiderek commented on issue: [2856](https://github.com/hackforla/website/issues/2856#issuecomment-1298813223) at 2022-11-01 09:41 AM PDT -luiderek,2022-11-01T16:42:43Z,- luiderek commented on issue: [3682](https://github.com/hackforla/website/issues/3682#issuecomment-1298814967) at 2022-11-01 09:42 AM PDT -luiderek,2022-11-01T17:03:33Z,- luiderek opened pull request: [3687](https://github.com/hackforla/website/pull/3687) at 2022-11-01 10:03 AM PDT -luiderek,2022-11-01T18:03:41Z,- luiderek assigned to issue: [3682](https://github.com/hackforla/website/issues/3682#issuecomment-1298814967) at 2022-11-01 11:03 AM PDT -luiderek,2022-11-02T02:11:38Z,- luiderek commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299463682) at 2022-11-01 07:11 PM PDT -luiderek,2022-11-02T04:46:54Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1299562346) at 2022-11-01 09:46 PM PDT -luiderek,2022-11-02T04:47:57Z,- luiderek pull request closed w/o merging: [3687](https://github.com/hackforla/website/pull/3687#event-7719393443) at 2022-11-01 09:47 PM PDT -luiderek,2022-11-02T04:52:06Z,- luiderek commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299567417) at 2022-11-01 09:52 PM PDT -luiderek,2022-11-02T05:05:37Z,- luiderek opened pull request: [3689](https://github.com/hackforla/website/pull/3689) at 2022-11-01 10:05 PM PDT -luiderek,2022-11-02T05:06:30Z,- luiderek commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299577389) at 2022-11-01 10:06 PM PDT -luiderek,2022-11-02T20:11:08Z,- luiderek commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301172839) at 2022-11-02 01:11 PM PDT -luiderek,2022-11-03T01:42:00Z,- luiderek assigned to issue: [3592](https://github.com/hackforla/website/issues/3592) at 2022-11-02 06:42 PM PDT -luiderek,2022-11-03T01:44:32Z,- luiderek commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1301554677) at 2022-11-02 06:44 PM PDT -luiderek,2022-11-03T02:23:52Z,- luiderek pull request merged: [3689](https://github.com/hackforla/website/pull/3689#event-7728460560) at 2022-11-02 07:23 PM PDT -luiderek,2022-11-03T04:02:36Z,- luiderek opened pull request: [3692](https://github.com/hackforla/website/pull/3692) at 2022-11-02 09:02 PM PDT -luiderek,2022-11-04T22:56:55Z,- luiderek pull request merged: [3692](https://github.com/hackforla/website/pull/3692#event-7744393011) at 2022-11-04 03:56 PM PDT -luiderek,2022-11-05T05:34:49Z,- luiderek commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304413283) at 2022-11-04 09:34 PM PST -luiderek,2022-11-05T05:37:51Z,- luiderek commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304413651) at 2022-11-04 09:37 PM PST -luiderek,2022-11-05T05:39:39Z,- luiderek submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1169329550) at 2022-11-04 09:39 PM PST -luiderek,2022-11-05T15:53:35Z,- luiderek commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1304571945) at 2022-11-05 07:53 AM PST -luiderek,2022-11-06T02:22:33Z,- luiderek assigned to issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1299562346) at 2022-11-05 06:22 PM PST -luiderek,2022-11-06T02:26:08Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1304699166) at 2022-11-05 06:26 PM PST -luiderek,2022-11-08T20:07:18Z,- luiderek commented on pull request: [3700](https://github.com/hackforla/website/pull/3700#issuecomment-1307767408) at 2022-11-08 12:07 PM PST -luiderek,2022-11-08T20:10:20Z,- luiderek submitted pull request review: [3700](https://github.com/hackforla/website/pull/3700#pullrequestreview-1172772543) at 2022-11-08 12:10 PM PST -luiderek,2022-11-09T03:39:23Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1308163076) at 2022-11-08 07:39 PM PST -luiderek,2022-11-09T03:41:09Z,- luiderek commented on issue: [3682](https://github.com/hackforla/website/issues/3682#issuecomment-1308164086) at 2022-11-08 07:41 PM PST -luiderek,2022-11-10T20:14:15Z,- luiderek closed issue as completed: [3682](https://github.com/hackforla/website/issues/3682#event-7786730866) at 2022-11-10 12:14 PM PST -luiderek,2022-11-11T04:24:57Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1311214897) at 2022-11-10 08:24 PM PST -luiderek,2022-11-11T04:25:28Z,- luiderek unassigned from issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1311214897) at 2022-11-10 08:25 PM PST -luisitocanlas,6249,SKILLS ISSUE -luisitocanlas,2024-02-06T03:33:53Z,- luisitocanlas opened issue: [6249](https://github.com/hackforla/website/issues/6249) at 2024-02-05 07:33 PM PST -luisitocanlas,2024-02-06T03:33:53Z,- luisitocanlas assigned to issue: [6249](https://github.com/hackforla/website/issues/6249) at 2024-02-05 07:33 PM PST -luisitocanlas,2024-02-13T19:33:55Z,- luisitocanlas assigned to issue: [5148](https://github.com/hackforla/website/issues/5148#issuecomment-1666784833) at 2024-02-13 11:33 AM PST -luisitocanlas,2024-02-13T19:47:50Z,- luisitocanlas commented on issue: [5148](https://github.com/hackforla/website/issues/5148#issuecomment-1942294493) at 2024-02-13 11:47 AM PST -luisitocanlas,2024-02-14T02:13:52Z,- luisitocanlas commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1942982472) at 2024-02-13 06:13 PM PST -luisitocanlas,2024-02-14T02:18:41Z,- luisitocanlas commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1942985644) at 2024-02-13 06:18 PM PST -luisitocanlas,2024-02-16T06:20:26Z,- luisitocanlas opened pull request: [6302](https://github.com/hackforla/website/pull/6302) at 2024-02-15 10:20 PM PST -luisitocanlas,2024-02-19T04:12:33Z,- luisitocanlas pull request merged: [6302](https://github.com/hackforla/website/pull/6302#event-11843895146) at 2024-02-18 08:12 PM PST -luisitocanlas,2024-02-20T18:59:02Z,- luisitocanlas assigned to issue: [6317](https://github.com/hackforla/website/issues/6317#issuecomment-1951386115) at 2024-02-20 10:59 AM PST -luisitocanlas,2024-02-20T19:00:56Z,- luisitocanlas commented on issue: [6317](https://github.com/hackforla/website/issues/6317#issuecomment-1954875358) at 2024-02-20 11:00 AM PST -luisitocanlas,2024-02-20T19:03:24Z,- luisitocanlas commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1954879037) at 2024-02-20 11:03 AM PST -luisitocanlas,2024-02-20T19:28:39Z,- luisitocanlas opened pull request: [6325](https://github.com/hackforla/website/pull/6325) at 2024-02-20 11:28 AM PST -luisitocanlas,2024-02-21T04:46:55Z,- luisitocanlas pull request merged: [6325](https://github.com/hackforla/website/pull/6325#event-11870745560) at 2024-02-20 08:46 PM PST -luisitocanlas,2024-02-21T19:13:32Z,- luisitocanlas closed issue as completed: [6249](https://github.com/hackforla/website/issues/6249#event-11880996224) at 2024-02-21 11:13 AM PST -luisitocanlas,2024-02-21T19:20:24Z,- luisitocanlas assigned to issue: [6312](https://github.com/hackforla/website/issues/6312) at 2024-02-21 11:20 AM PST -luisitocanlas,2024-02-21T19:21:23Z,- luisitocanlas commented on issue: [6312](https://github.com/hackforla/website/issues/6312#issuecomment-1957743115) at 2024-02-21 11:21 AM PST -luisitocanlas,2024-02-21T19:40:06Z,- luisitocanlas opened pull request: [6351](https://github.com/hackforla/website/pull/6351) at 2024-02-21 11:40 AM PST -luisitocanlas,2024-02-23T05:40:26Z,- luisitocanlas pull request merged: [6351](https://github.com/hackforla/website/pull/6351#event-11899562338) at 2024-02-22 09:40 PM PST -luisitocanlas,2024-02-23T19:21:18Z,- luisitocanlas commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1961865766) at 2024-02-23 11:21 AM PST -luisitocanlas,2024-02-23T19:55:02Z,- luisitocanlas submitted pull request review: [6365](https://github.com/hackforla/website/pull/6365#pullrequestreview-1898836023) at 2024-02-23 11:55 AM PST -luisitocanlas,2024-02-27T19:53:56Z,- luisitocanlas commented on pull request: [6383](https://github.com/hackforla/website/pull/6383#issuecomment-1967487138) at 2024-02-27 11:53 AM PST -luisitocanlas,2024-02-27T20:00:32Z,- luisitocanlas submitted pull request review: [6383](https://github.com/hackforla/website/pull/6383#pullrequestreview-1904697688) at 2024-02-27 12:00 PM PST -luisitocanlas,2024-02-27T20:05:32Z,- luisitocanlas assigned to issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1965600288) at 2024-02-27 12:05 PM PST -luisitocanlas,2024-02-27T20:06:45Z,- luisitocanlas commented on issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1967506026) at 2024-02-27 12:06 PM PST -luisitocanlas,2024-02-28T18:18:02Z,- luisitocanlas opened pull request: [6388](https://github.com/hackforla/website/pull/6388) at 2024-02-28 10:18 AM PST -luisitocanlas,2024-02-28T18:24:39Z,- luisitocanlas commented on pull request: [6387](https://github.com/hackforla/website/pull/6387#issuecomment-1969583662) at 2024-02-28 10:24 AM PST -luisitocanlas,2024-02-28T18:39:11Z,- luisitocanlas submitted pull request review: [6387](https://github.com/hackforla/website/pull/6387#pullrequestreview-1907000528) at 2024-02-28 10:39 AM PST -luisitocanlas,2024-03-01T23:05:02Z,- luisitocanlas commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1974050184) at 2024-03-01 03:05 PM PST -luisitocanlas,2024-03-01T23:05:12Z,- luisitocanlas commented on pull request: [6406](https://github.com/hackforla/website/pull/6406#issuecomment-1974050325) at 2024-03-01 03:05 PM PST -luisitocanlas,2024-03-01T23:17:20Z,- luisitocanlas submitted pull request review: [6406](https://github.com/hackforla/website/pull/6406#pullrequestreview-1912231164) at 2024-03-01 03:17 PM PST -luisitocanlas,2024-03-01T23:49:51Z,- luisitocanlas submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1912279169) at 2024-03-01 03:49 PM PST -luisitocanlas,2024-03-02T19:36:35Z,- luisitocanlas submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1912712277) at 2024-03-02 11:36 AM PST -luisitocanlas,2024-03-04T00:23:56Z,- luisitocanlas commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1975450342) at 2024-03-03 04:23 PM PST -luisitocanlas,2024-03-04T01:39:57Z,- luisitocanlas pull request merged: [6388](https://github.com/hackforla/website/pull/6388#event-11992204394) at 2024-03-03 05:39 PM PST -luisitocanlas,2024-03-08T19:28:50Z,- luisitocanlas commented on pull request: [6440](https://github.com/hackforla/website/pull/6440#issuecomment-1986282516) at 2024-03-08 11:28 AM PST -luisitocanlas,2024-03-08T19:31:32Z,- luisitocanlas submitted pull request review: [6440](https://github.com/hackforla/website/pull/6440#pullrequestreview-1925701433) at 2024-03-08 11:31 AM PST -luisitocanlas,2024-03-08T19:36:15Z,- luisitocanlas assigned to issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1963027201) at 2024-03-08 11:36 AM PST -luisitocanlas,2024-03-08T19:37:10Z,- luisitocanlas commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1986300411) at 2024-03-08 11:37 AM PST -luisitocanlas,2024-03-08T22:05:57Z,- luisitocanlas commented on pull request: [6441](https://github.com/hackforla/website/pull/6441#issuecomment-1986486948) at 2024-03-08 02:05 PM PST -luisitocanlas,2024-03-08T22:09:58Z,- luisitocanlas submitted pull request review: [6441](https://github.com/hackforla/website/pull/6441#pullrequestreview-1925934785) at 2024-03-08 02:09 PM PST -luisitocanlas,2024-03-15T23:23:31Z,- luisitocanlas opened pull request: [6467](https://github.com/hackforla/website/pull/6467) at 2024-03-15 04:23 PM PDT -luisitocanlas,2024-03-25T23:40:24Z,- luisitocanlas commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2019110630) at 2024-03-25 04:40 PM PDT -luisitocanlas,2024-03-26T00:48:33Z,- luisitocanlas commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2019191470) at 2024-03-25 05:48 PM PDT -luisitocanlas,2024-03-31T03:08:30Z,- luisitocanlas pull request merged: [6467](https://github.com/hackforla/website/pull/6467#event-12302223441) at 2024-03-30 08:08 PM PDT -luisitocanlas,2024-04-29T21:30:10Z,- luisitocanlas commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2083710586) at 2024-04-29 02:30 PM PDT -luisitocanlas,2024-04-29T21:35:20Z,- luisitocanlas submitted pull request review: [6767](https://github.com/hackforla/website/pull/6767#pullrequestreview-2029692235) at 2024-04-29 02:35 PM PDT -luisitocanlas,2024-04-29T21:40:48Z,- luisitocanlas assigned to issue: [6633](https://github.com/hackforla/website/issues/6633#issuecomment-2052703504) at 2024-04-29 02:40 PM PDT -luisitocanlas,2024-04-29T21:41:58Z,- luisitocanlas commented on issue: [6633](https://github.com/hackforla/website/issues/6633#issuecomment-2083732400) at 2024-04-29 02:41 PM PDT -luisitocanlas,2024-04-29T22:00:24Z,- luisitocanlas opened pull request: [6782](https://github.com/hackforla/website/pull/6782) at 2024-04-29 03:00 PM PDT -luisitocanlas,2024-04-30T18:43:15Z,- luisitocanlas pull request merged: [6782](https://github.com/hackforla/website/pull/6782#event-12662431854) at 2024-04-30 11:43 AM PDT -luisitocanlas,2024-06-28T23:19:01Z,- luisitocanlas opened pull request: [7081](https://github.com/hackforla/website/pull/7081) at 2024-06-28 04:19 PM PDT -luisitocanlas,2024-07-13T18:25:49Z,- luisitocanlas commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2227039648) at 2024-07-13 11:25 AM PDT -luisitocanlas,2024-07-21T23:05:42Z,- luisitocanlas commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2241805904) at 2024-07-21 04:05 PM PDT -luisitocanlas,2024-08-18T20:26:49Z,- luisitocanlas pull request closed w/o merging: [7081](https://github.com/hackforla/website/pull/7081#event-13922869969) at 2024-08-18 01:26 PM PDT -luke-karis,2727,SKILLS ISSUE -luke-karis,2022-01-29T21:08:49Z,- luke-karis assigned to issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-958012986) at 2022-01-29 01:08 PM PST -luke-karis,2022-01-29T21:14:37Z,- luke-karis unassigned from issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-958012986) at 2022-01-29 01:14 PM PST -luke-karis,2022-01-30T18:36:39Z,- luke-karis opened issue: [2727](https://github.com/hackforla/website/issues/2727) at 2022-01-30 10:36 AM PST -luke-karis,2022-01-30T18:36:40Z,- luke-karis assigned to issue: [2727](https://github.com/hackforla/website/issues/2727) at 2022-01-30 10:36 AM PST -luke-karis,2022-02-01T04:22:24Z,- luke-karis assigned to issue: [2427](https://github.com/hackforla/website/issues/2427) at 2022-01-31 08:22 PM PST -luke-karis,2022-02-01T04:24:31Z,- luke-karis commented on issue: [2427](https://github.com/hackforla/website/issues/2427#issuecomment-1026466779) at 2022-01-31 08:24 PM PST -luke-karis,2022-02-01T05:15:58Z,- luke-karis opened pull request: [2730](https://github.com/hackforla/website/pull/2730) at 2022-01-31 09:15 PM PST -luke-karis,2022-02-01T05:18:27Z,- luke-karis commented on pull request: [2730](https://github.com/hackforla/website/pull/2730#issuecomment-1026487643) at 2022-01-31 09:18 PM PST -luke-karis,2022-02-01T09:13:03Z,- luke-karis pull request merged: [2730](https://github.com/hackforla/website/pull/2730#event-5986634247) at 2022-02-01 01:13 AM PST -luke-karis,2022-02-10T03:48:43Z,- luke-karis assigned to issue: [2243](https://github.com/hackforla/website/issues/2243) at 2022-02-09 07:48 PM PST -luke-karis,2022-02-10T06:16:20Z,- luke-karis commented on issue: [2243](https://github.com/hackforla/website/issues/2243#issuecomment-1034536974) at 2022-02-09 10:16 PM PST -luke-karis,2022-02-14T05:05:16Z,- luke-karis commented on issue: [2243](https://github.com/hackforla/website/issues/2243#issuecomment-1038646420) at 2022-02-13 09:05 PM PST -luke-karis,2022-02-16T02:22:31Z,- luke-karis opened pull request: [2780](https://github.com/hackforla/website/pull/2780) at 2022-02-15 06:22 PM PST -luke-karis,2022-02-16T02:52:43Z,- luke-karis closed issue as completed: [2727](https://github.com/hackforla/website/issues/2727#event-6079648389) at 2022-02-15 06:52 PM PST -luke-karis,2022-02-18T00:49:08Z,- luke-karis pull request merged: [2780](https://github.com/hackforla/website/pull/2780#event-6094641775) at 2022-02-17 04:49 PM PST -luke-karis,2022-02-23T07:44:37Z,- luke-karis assigned to issue: [2744](https://github.com/hackforla/website/issues/2744#issuecomment-1031776832) at 2022-02-22 11:44 PM PST -luke-karis,2022-02-27T02:48:45Z,- luke-karis commented on issue: [2744](https://github.com/hackforla/website/issues/2744#issuecomment-1052995629) at 2022-02-26 06:48 PM PST -luke-karis,2022-03-01T05:59:38Z,- luke-karis opened pull request: [2905](https://github.com/hackforla/website/pull/2905) at 2022-02-28 09:59 PM PST -luke-karis,2022-03-02T21:31:23Z,- luke-karis pull request merged: [2905](https://github.com/hackforla/website/pull/2905#event-6174014507) at 2022-03-02 01:31 PM PST -luke-karis,2022-03-09T05:21:30Z,- luke-karis assigned to issue: [2751](https://github.com/hackforla/website/issues/2751#issuecomment-1055777159) at 2022-03-08 09:21 PM PST -luke-karis,2022-03-09T05:24:24Z,- luke-karis commented on issue: [2751](https://github.com/hackforla/website/issues/2751#issuecomment-1062566819) at 2022-03-08 09:24 PM PST -luke-karis,2022-03-11T06:05:05Z,- luke-karis opened pull request: [2963](https://github.com/hackforla/website/pull/2963) at 2022-03-10 10:05 PM PST -luke-karis,2022-03-11T20:21:44Z,- luke-karis commented on pull request: [2963](https://github.com/hackforla/website/pull/2963#issuecomment-1065481787) at 2022-03-11 12:21 PM PST -luke-karis,2022-03-13T19:15:55Z,- luke-karis pull request merged: [2963](https://github.com/hackforla/website/pull/2963#event-6231511236) at 2022-03-13 12:15 PM PDT -luke-karis,2022-03-15T02:38:39Z,- luke-karis commented on pull request: [2982](https://github.com/hackforla/website/pull/2982#issuecomment-1067501658) at 2022-03-14 07:38 PM PDT -luke-karis,2022-03-15T02:59:23Z,- luke-karis submitted pull request review: [2982](https://github.com/hackforla/website/pull/2982#pullrequestreview-909607607) at 2022-03-14 07:59 PM PDT -luke-karis,2022-03-16T01:43:44Z,- luke-karis assigned to issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1053981229) at 2022-03-15 06:43 PM PDT -luke-karis,2022-03-16T01:47:02Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1068646129) at 2022-03-15 06:47 PM PDT -luke-karis,2022-03-16T02:36:45Z,- luke-karis commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1068671145) at 2022-03-15 07:36 PM PDT -luke-karis,2022-03-16T02:37:20Z,- luke-karis commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1068671376) at 2022-03-15 07:37 PM PDT -luke-karis,2022-03-21T05:14:32Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915258492) at 2022-03-20 10:14 PM PDT -luke-karis,2022-03-21T05:15:28Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915258830) at 2022-03-20 10:15 PM PDT -luke-karis,2022-03-21T05:25:24Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915262578) at 2022-03-20 10:25 PM PDT -luke-karis,2022-03-21T05:30:17Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915264549) at 2022-03-20 10:30 PM PDT -luke-karis,2022-03-21T05:32:39Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915265409) at 2022-03-20 10:32 PM PDT -luke-karis,2022-03-22T04:10:21Z,- luke-karis submitted pull request review: [2984](https://github.com/hackforla/website/pull/2984#pullrequestreview-916635440) at 2022-03-21 09:10 PM PDT -luke-karis,2022-03-23T01:46:33Z,- luke-karis commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1075822781) at 2022-03-22 06:46 PM PDT -luke-karis,2022-03-23T02:02:28Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1075830060) at 2022-03-22 07:02 PM PDT -luke-karis,2022-03-24T00:39:01Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-919593757) at 2022-03-23 05:39 PM PDT -luke-karis,2022-03-24T00:43:08Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-919595484) at 2022-03-23 05:43 PM PDT -luke-karis,2022-03-26T03:36:34Z,- luke-karis closed issue as completed: [2727](https://github.com/hackforla/website/issues/2727#event-6311004923) at 2022-03-25 08:36 PM PDT -luke-karis,2022-03-29T23:42:16Z,- luke-karis commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1082472097) at 2022-03-29 04:42 PM PDT -luke-karis,2022-04-03T03:28:22Z,- luke-karis submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-929622569) at 2022-04-02 08:28 PM PDT -luke-karis,2022-04-04T03:41:36Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1087077336) at 2022-04-03 08:41 PM PDT -luke-karis,2022-04-12T05:44:40Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1096099733) at 2022-04-11 10:44 PM PDT -luke-karis,2022-04-21T00:21:54Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1104574860) at 2022-04-20 05:21 PM PDT -luke-karis,2022-04-27T03:15:32Z,- luke-karis commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1110487488) at 2022-04-26 08:15 PM PDT -luke-karis,2022-04-27T03:15:54Z,- luke-karis commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1110487653) at 2022-04-26 08:15 PM PDT -luke-karis,2022-05-03T05:01:26Z,- luke-karis submitted pull request review: [2984](https://github.com/hackforla/website/pull/2984#pullrequestreview-959948824) at 2022-05-02 10:01 PM PDT -luke-karis,2022-05-03T05:24:35Z,- luke-karis submitted pull request review: [3086](https://github.com/hackforla/website/pull/3086#pullrequestreview-959955749) at 2022-05-02 10:24 PM PDT -luke-karis,2022-05-03T05:30:18Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1115752555) at 2022-05-02 10:30 PM PDT -luke-karis,2022-05-17T00:26:55Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1128269253) at 2022-05-16 05:26 PM PDT -luke-karis,2022-06-01T00:34:01Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1142871993) at 2022-05-31 05:34 PM PDT -luke-karis,2022-06-01T04:27:48Z,- luke-karis commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1143104003) at 2022-05-31 09:27 PM PDT -luke-karis,2022-06-07T04:45:29Z,- luke-karis submitted pull request review: [3179](https://github.com/hackforla/website/pull/3179#pullrequestreview-997494989) at 2022-06-06 09:45 PM PDT -luke-karis,2022-06-15T00:32:22Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1155845199) at 2022-06-14 05:32 PM PDT -luke-karis,2022-06-21T02:44:39Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1161148670) at 2022-06-20 07:44 PM PDT -luke-karis,2022-06-28T03:50:49Z,- luke-karis submitted pull request review: [3320](https://github.com/hackforla/website/pull/3320#pullrequestreview-1021060930) at 2022-06-27 08:50 PM PDT -luke-karis,2022-06-29T02:34:29Z,- luke-karis assigned to issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1166619880) at 2022-06-28 07:34 PM PDT -luke-karis,2022-06-29T02:35:12Z,- luke-karis unassigned from issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1166619880) at 2022-06-28 07:35 PM PDT -luke-karis,2022-07-13T01:13:19Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1182652741) at 2022-07-12 06:13 PM PDT -luke-karis,2022-07-15T01:58:36Z,- luke-karis commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1185090794) at 2022-07-14 06:58 PM PDT -luke-karis,2022-07-18T00:54:13Z,- luke-karis commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1186651207) at 2022-07-17 05:54 PM PDT -luke-karis,2022-07-20T02:29:01Z,- luke-karis commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1189737178) at 2022-07-19 07:29 PM PDT -luke-karis,2022-07-20T03:09:22Z,- luke-karis opened issue: [3398](https://github.com/hackforla/website/issues/3398) at 2022-07-19 08:09 PM PDT -luke-karis,2022-07-22T01:44:24Z,- luke-karis opened issue: [3417](https://github.com/hackforla/website/issues/3417) at 2022-07-21 06:44 PM PDT -luke-karis,2022-08-20T22:57:32Z,- luke-karis submitted pull request review: [3471](https://github.com/hackforla/website/pull/3471#pullrequestreview-1079588387) at 2022-08-20 03:57 PM PDT -LukeLowrey2,4994,SKILLS ISSUE -LukeLowrey2,2023-07-18T02:21:09Z,- LukeLowrey2 opened issue: [4992](https://github.com/hackforla/website/issues/4992) at 2023-07-17 07:21 PM PDT -LukeLowrey2,2023-07-18T02:27:58Z,- LukeLowrey2 opened issue: [4994](https://github.com/hackforla/website/issues/4994) at 2023-07-17 07:27 PM PDT -LukeLowrey2,2023-07-18T03:16:37Z,- LukeLowrey2 assigned to issue: [4994](https://github.com/hackforla/website/issues/4994) at 2023-07-17 08:16 PM PDT -LukeLowrey2,2023-07-29T19:29:11Z,- LukeLowrey2 assigned to issue: [5030](https://github.com/hackforla/website/issues/5030) at 2023-07-29 12:29 PM PDT -LukeLowrey2,2023-07-29T20:05:04Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1656865769) at 2023-07-29 01:05 PM PDT -LukeLowrey2,2023-07-29T20:48:42Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1656882953) at 2023-07-29 01:48 PM PDT -LukeLowrey2,2023-08-01T17:46:41Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1660809043) at 2023-08-01 10:46 AM PDT -LukeLowrey2,2023-08-09T00:53:37Z,- LukeLowrey2 commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1670501521) at 2023-08-08 05:53 PM PDT -LukeLowrey2,2023-08-09T01:06:00Z,- LukeLowrey2 commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1670510544) at 2023-08-08 06:06 PM PDT -LukeLowrey2,2023-08-10T18:28:04Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1673705291) at 2023-08-10 11:28 AM PDT -LukeLowrey2,2023-08-16T01:53:51Z,- LukeLowrey2 opened pull request: [5236](https://github.com/hackforla/website/pull/5236) at 2023-08-15 06:53 PM PDT -LukeLowrey2,2023-08-17T18:05:15Z,- LukeLowrey2 submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1583194727) at 2023-08-17 11:05 AM PDT -LukeLowrey2,2023-08-17T18:07:52Z,- LukeLowrey2 submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1583198417) at 2023-08-17 11:07 AM PDT -LukeLowrey2,2023-08-17T18:48:27Z,- LukeLowrey2 assigned to issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1666785047) at 2023-08-17 11:48 AM PDT -LukeLowrey2,2023-08-17T18:53:50Z,- LukeLowrey2 unassigned from issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1682793157) at 2023-08-17 11:53 AM PDT -LukeLowrey2,2023-08-17T18:57:54Z,- LukeLowrey2 closed issue as completed: [4994](https://github.com/hackforla/website/issues/4994#event-10122948817) at 2023-08-17 11:57 AM PDT -LukeLowrey2,2023-08-17T18:58:21Z,- LukeLowrey2 commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1682805387) at 2023-08-17 11:58 AM PDT -LukeLowrey2,2023-08-23T01:03:59Z,- LukeLowrey2 commented on pull request: [5236](https://github.com/hackforla/website/pull/5236#issuecomment-1689113469) at 2023-08-22 06:03 PM PDT -LukeLowrey2,2023-08-23T02:43:34Z,- LukeLowrey2 commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1689176921) at 2023-08-22 07:43 PM PDT -LukeLowrey2,2023-08-24T17:24:45Z,- LukeLowrey2 submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1594108028) at 2023-08-24 10:24 AM PDT -LukeLowrey2,2023-08-24T18:13:51Z,- LukeLowrey2 pull request merged: [5236](https://github.com/hackforla/website/pull/5236#event-10184610283) at 2023-08-24 11:13 AM PDT -LukeLowrey2,2023-08-24T20:54:33Z,- LukeLowrey2 assigned to issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1690871592) at 2023-08-24 01:54 PM PDT -LukeLowrey2,2023-08-24T20:57:14Z,- LukeLowrey2 commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1692396550) at 2023-08-24 01:57 PM PDT -LukeLowrey2,2023-08-25T15:35:13Z,- LukeLowrey2 unassigned from issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1692476876) at 2023-08-25 08:35 AM PDT -LukeLowrey2,2023-09-10T17:15:25Z,- LukeLowrey2 commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712882359) at 2023-09-10 10:15 AM PDT -LukeLowrey2,2023-09-10T17:17:59Z,- LukeLowrey2 commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1712884216) at 2023-09-10 10:17 AM PDT -LukeLowrey2,2023-09-11T18:33:41Z,- LukeLowrey2 submitted pull request review: [5469](https://github.com/hackforla/website/pull/5469#pullrequestreview-1620588907) at 2023-09-11 11:33 AM PDT -LukeLowrey2,2023-09-12T17:46:44Z,- LukeLowrey2 submitted pull request review: [5396](https://github.com/hackforla/website/pull/5396#pullrequestreview-1622823104) at 2023-09-12 10:46 AM PDT -LukeLowrey2,2023-09-20T01:48:56Z,- LukeLowrey2 assigned to issue: [5533](https://github.com/hackforla/website/issues/5533#issuecomment-1720338991) at 2023-09-19 06:48 PM PDT -LukeLowrey2,2023-09-20T01:53:17Z,- LukeLowrey2 commented on issue: [5533](https://github.com/hackforla/website/issues/5533#issuecomment-1726765737) at 2023-09-19 06:53 PM PDT -LukeLowrey2,2023-10-08T17:33:41Z,- LukeLowrey2 commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1752113209) at 2023-10-08 10:33 AM PDT -LukeLowrey2,2023-10-08T17:34:06Z,- LukeLowrey2 commented on pull request: [5649](https://github.com/hackforla/website/pull/5649#issuecomment-1752113299) at 2023-10-08 10:34 AM PDT -LukeLowrey2,2023-10-10T17:21:00Z,- LukeLowrey2 submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1668447829) at 2023-10-10 10:21 AM PDT -LukeLowrey2,2023-10-10T17:29:30Z,- LukeLowrey2 submitted pull request review: [5649](https://github.com/hackforla/website/pull/5649#pullrequestreview-1668462763) at 2023-10-10 10:29 AM PDT -LukeLowrey2,2023-10-24T23:01:18Z,- LukeLowrey2 assigned to issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1763747429) at 2023-10-24 04:01 PM PDT -LukeLowrey2,2023-10-24T23:06:09Z,- LukeLowrey2 commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1778193465) at 2023-10-24 04:06 PM PDT -LukeLowrey2,2023-10-26T18:24:07Z,- LukeLowrey2 opened pull request: [5788](https://github.com/hackforla/website/pull/5788) at 2023-10-26 11:24 AM PDT -LukeLowrey2,2023-10-26T18:29:26Z,- LukeLowrey2 commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1781635317) at 2023-10-26 11:29 AM PDT -LukeLowrey2,2023-11-02T18:31:10Z,- LukeLowrey2 commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1791312016) at 2023-11-02 11:31 AM PDT -LukeLowrey2,2023-11-06T18:11:20Z,- LukeLowrey2 commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1795789315) at 2023-11-06 10:11 AM PST -LukeLowrey2,2023-11-06T18:11:20Z,- LukeLowrey2 pull request closed w/o merging: [5788](https://github.com/hackforla/website/pull/5788#event-10876753176) at 2023-11-06 10:11 AM PST -LukeLowrey2,2023-11-06T19:40:15Z,- LukeLowrey2 commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1796181219) at 2023-11-06 11:40 AM PST -LukeLowrey2,2023-11-15T03:31:35Z,- LukeLowrey2 commented on pull request: [5903](https://github.com/hackforla/website/pull/5903#issuecomment-1811754656) at 2023-11-14 07:31 PM PST -LukeLowrey2,2023-11-15T04:00:28Z,- LukeLowrey2 opened pull request: [5907](https://github.com/hackforla/website/pull/5907) at 2023-11-14 08:00 PM PST -LukeLowrey2,2023-11-15T19:17:14Z,- LukeLowrey2 submitted pull request review: [5903](https://github.com/hackforla/website/pull/5903#pullrequestreview-1732754242) at 2023-11-15 11:17 AM PST -LukeLowrey2,2023-11-17T21:57:40Z,- LukeLowrey2 pull request merged: [5907](https://github.com/hackforla/website/pull/5907#event-10999511384) at 2023-11-17 01:57 PM PST -LukeLowrey2,2024-01-10T02:09:01Z,- LukeLowrey2 assigned to issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1763331597) at 2024-01-09 06:09 PM PST -LukeLowrey2,2024-01-10T02:14:19Z,- LukeLowrey2 commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1884081011) at 2024-01-09 06:14 PM PST -LukeLowrey2,2024-01-18T17:46:47Z,- LukeLowrey2 commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1898942764) at 2024-01-18 09:46 AM PST -LukeLowrey2,2024-01-21T18:14:53Z,- LukeLowrey2 commented on pull request: [6134](https://github.com/hackforla/website/pull/6134#issuecomment-1902716534) at 2024-01-21 10:14 AM PST -LukeLowrey2,2024-01-23T17:21:46Z,- LukeLowrey2 commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1906556729) at 2024-01-23 09:21 AM PST -LukeLowrey2,2024-01-23T17:22:06Z,- LukeLowrey2 unassigned from issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1906556729) at 2024-01-23 09:22 AM PST -LukeLowrey2,2024-01-23T17:34:54Z,- LukeLowrey2 submitted pull request review: [6134](https://github.com/hackforla/website/pull/6134#pullrequestreview-1839464915) at 2024-01-23 09:34 AM PST -lukewangm,6421,SKILLS ISSUE -lukewangm,2024-03-05T03:37:10Z,- lukewangm opened issue: [6421](https://github.com/hackforla/website/issues/6421) at 2024-03-04 07:37 PM PST -lukewangm,2024-03-05T04:01:07Z,- lukewangm assigned to issue: [6421](https://github.com/hackforla/website/issues/6421) at 2024-03-04 08:01 PM PST -lukewangm,2024-03-05T18:53:04Z,- lukewangm assigned to issue: [5842](https://github.com/hackforla/website/issues/5842) at 2024-03-05 10:53 AM PST -lukewangm,2024-03-05T18:56:28Z,- lukewangm commented on issue: [5842](https://github.com/hackforla/website/issues/5842#issuecomment-1979439243) at 2024-03-05 10:56 AM PST -lukewangm,2024-03-05T19:27:15Z,- lukewangm commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-1979485193) at 2024-03-05 11:27 AM PST -lukewangm,2024-03-05T19:36:26Z,- lukewangm opened pull request: [6433](https://github.com/hackforla/website/pull/6433) at 2024-03-05 11:36 AM PST -lukewangm,2024-03-05T22:25:55Z,- lukewangm submitted pull request review: [6434](https://github.com/hackforla/website/pull/6434#pullrequestreview-1918248491) at 2024-03-05 02:25 PM PST -lukewangm,2024-03-05T22:27:08Z,- lukewangm submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1918249982) at 2024-03-05 02:27 PM PST -lukewangm,2024-03-05T22:32:07Z,- lukewangm assigned to issue: [6168](https://github.com/hackforla/website/issues/6168) at 2024-03-05 02:32 PM PST -lukewangm,2024-03-05T22:51:39Z,- lukewangm opened pull request: [6435](https://github.com/hackforla/website/pull/6435) at 2024-03-05 02:51 PM PST -lukewangm,2024-03-06T01:40:11Z,- lukewangm submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1918574534) at 2024-03-05 05:40 PM PST -lukewangm,2024-03-07T02:50:06Z,- lukewangm pull request merged: [6435](https://github.com/hackforla/website/pull/6435#event-12035829088) at 2024-03-06 06:50 PM PST -lukewangm,2024-03-08T07:12:43Z,- lukewangm pull request merged: [6433](https://github.com/hackforla/website/pull/6433#event-12051950802) at 2024-03-07 11:12 PM PST -lukewangm,2024-03-11T22:08:05Z,- lukewangm assigned to issue: [6451](https://github.com/hackforla/website/issues/6451) at 2024-03-11 03:08 PM PDT -lukewangm,2024-03-11T22:23:47Z,- lukewangm unassigned from issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-1989550005) at 2024-03-11 03:23 PM PDT -lukewangm,2024-03-11T22:27:00Z,- lukewangm opened pull request: [6455](https://github.com/hackforla/website/pull/6455) at 2024-03-11 03:27 PM PDT -lukewangm,2024-03-11T22:28:34Z,- lukewangm pull request closed w/o merging: [6455](https://github.com/hackforla/website/pull/6455#event-12080835250) at 2024-03-11 03:28 PM PDT -lukewangm,2024-03-11T22:33:34Z,- lukewangm assigned to issue: [6097](https://github.com/hackforla/website/issues/6097) at 2024-03-11 03:33 PM PDT -lukewangm,2024-03-17T07:30:11Z,- lukewangm commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2002345156) at 2024-03-17 12:30 AM PDT -lukewangm,2024-04-05T17:45:44Z,- lukewangm assigned to issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2019172325) at 2024-04-05 10:45 AM PDT -lukewangm,2024-04-05T17:48:02Z,- lukewangm commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2040329579) at 2024-04-05 10:48 AM PDT -lukewangm,2024-04-05T17:51:26Z,- lukewangm opened issue: [6569](https://github.com/hackforla/website/issues/6569) at 2024-04-05 10:51 AM PDT -lukewangm,2024-04-05T17:58:53Z,- lukewangm opened issue: [6570](https://github.com/hackforla/website/issues/6570) at 2024-04-05 10:58 AM PDT -lukewangm,2024-04-05T18:00:39Z,- lukewangm opened issue: [6571](https://github.com/hackforla/website/issues/6571) at 2024-04-05 11:00 AM PDT -lukewangm,2024-04-05T18:01:25Z,- lukewangm opened issue: [6572](https://github.com/hackforla/website/issues/6572) at 2024-04-05 11:01 AM PDT -lukewangm,2024-04-05T18:02:11Z,- lukewangm opened issue: [6573](https://github.com/hackforla/website/issues/6573) at 2024-04-05 11:02 AM PDT -lukewangm,2024-04-05T18:02:44Z,- lukewangm opened issue: [6574](https://github.com/hackforla/website/issues/6574) at 2024-04-05 11:02 AM PDT -lukewangm,2024-04-05T18:03:09Z,- lukewangm opened issue: [6575](https://github.com/hackforla/website/issues/6575) at 2024-04-05 11:03 AM PDT -lukewangm,2024-04-05T18:03:50Z,- lukewangm opened issue: [6576](https://github.com/hackforla/website/issues/6576) at 2024-04-05 11:03 AM PDT -lukewangm,2024-04-05T18:04:32Z,- lukewangm opened issue: [6577](https://github.com/hackforla/website/issues/6577) at 2024-04-05 11:04 AM PDT -lukewangm,2024-04-05T18:04:56Z,- lukewangm opened issue: [6578](https://github.com/hackforla/website/issues/6578) at 2024-04-05 11:04 AM PDT -lukewangm,2024-06-09T17:20:55Z,- lukewangm assigned to issue: [6930](https://github.com/hackforla/website/issues/6930) at 2024-06-09 10:20 AM PDT -lukewangm,2024-06-09T17:40:49Z,- lukewangm opened pull request: [6976](https://github.com/hackforla/website/pull/6976) at 2024-06-09 10:40 AM PDT -lukewangm,2024-06-09T17:44:24Z,- lukewangm commented on issue: [6930](https://github.com/hackforla/website/issues/6930#issuecomment-2156714852) at 2024-06-09 10:44 AM PDT -lukewangm,2024-06-20T18:43:21Z,- lukewangm pull request merged: [6976](https://github.com/hackforla/website/pull/6976#event-13233143471) at 2024-06-20 11:43 AM PDT -lukewangm,2024-06-24T17:40:57Z,- lukewangm commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2187087402) at 2024-06-24 10:40 AM PDT -lytravis,3684,SKILLS ISSUE -lytravis,2022-11-01T02:26:55Z,- lytravis opened issue: [3684](https://github.com/hackforla/website/issues/3684) at 2022-10-31 07:26 PM PDT -lytravis,2022-11-01T02:34:32Z,- lytravis commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1297940289) at 2022-10-31 07:34 PM PDT -lytravis,2022-11-01T03:10:42Z,- lytravis assigned to issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1297940289) at 2022-10-31 08:10 PM PDT -lytravis,2022-11-27T17:44:59Z,- lytravis commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1328303427) at 2022-11-27 09:44 AM PST -lytravis,2023-01-24T03:21:45Z,- lytravis commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1401346139) at 2023-01-23 07:21 PM PST -lytravis,2023-01-24T03:21:49Z,- lytravis closed issue as completed: [3684](https://github.com/hackforla/website/issues/3684#event-8340279979) at 2023-01-23 07:21 PM PST -m0hith,7025,SKILLS ISSUE -m0hith,2024-06-19T03:03:33Z,- m0hith opened issue: [7025](https://github.com/hackforla/website/issues/7025) at 2024-06-18 08:03 PM PDT -m0hith,2024-06-19T03:03:43Z,- m0hith assigned to issue: [7025](https://github.com/hackforla/website/issues/7025) at 2024-06-18 08:03 PM PDT -m0hith,2024-08-16T17:19:42Z,- m0hith assigned to issue: [7133](https://github.com/hackforla/website/issues/7133) at 2024-08-16 10:19 AM PDT -m0hith,2024-08-16T17:38:37Z,- m0hith unassigned from issue: [7133](https://github.com/hackforla/website/issues/7133#issuecomment-2293876900) at 2024-08-16 10:38 AM PDT -maadeshsivakumar,7203,SKILLS ISSUE -maadeshsivakumar,2024-08-06T02:58:45Z,- maadeshsivakumar opened issue: [7203](https://github.com/hackforla/website/issues/7203) at 2024-08-05 07:58 PM PDT -maadeshsivakumar,2024-08-06T02:58:57Z,- maadeshsivakumar assigned to issue: [7203](https://github.com/hackforla/website/issues/7203) at 2024-08-05 07:58 PM PDT -maadeshsivakumar,2024-08-07T02:32:05Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2272501504) at 2024-08-06 07:32 PM PDT -maadeshsivakumar,2024-08-07T02:34:11Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2272503338) at 2024-08-06 07:34 PM PDT -maadeshsivakumar,2024-08-09T12:47:57Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2277869742) at 2024-08-09 05:47 AM PDT -maadeshsivakumar,2024-08-09T12:55:52Z,- maadeshsivakumar assigned to issue: [7249](https://github.com/hackforla/website/issues/7249) at 2024-08-09 05:55 AM PDT -maadeshsivakumar,2024-08-09T13:06:02Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2277904569) at 2024-08-09 06:06 AM PDT -maadeshsivakumar,2024-08-09T13:20:54Z,- maadeshsivakumar opened pull request: [7258](https://github.com/hackforla/website/pull/7258) at 2024-08-09 06:20 AM PDT -maadeshsivakumar,2024-08-09T13:23:39Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2277938542) at 2024-08-09 06:23 AM PDT -maadeshsivakumar,2024-08-13T15:34:32Z,- maadeshsivakumar assigned to issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2270010360) at 2024-08-13 08:34 AM PDT -maadeshsivakumar,2024-08-13T15:34:48Z,- maadeshsivakumar unassigned from issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2286548491) at 2024-08-13 08:34 AM PDT -maadeshsivakumar,2024-08-15T15:00:48Z,- maadeshsivakumar pull request merged: [7258](https://github.com/hackforla/website/pull/7258#event-13897282160) at 2024-08-15 08:00 AM PDT -maadeshsivakumar,2024-08-27T03:04:25Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2311477539) at 2024-08-26 08:04 PM PDT -maadeshsivakumar,2024-08-27T03:07:53Z,- maadeshsivakumar assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282282343) at 2024-08-26 08:07 PM PDT -maadeshsivakumar,2024-08-27T03:13:49Z,- maadeshsivakumar unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2311480634) at 2024-08-26 08:13 PM PDT -maadeshsivakumar,2024-08-27T03:14:36Z,- maadeshsivakumar assigned to issue: [7092](https://github.com/hackforla/website/issues/7092#issuecomment-2226725169) at 2024-08-26 08:14 PM PDT -maadeshsivakumar,2024-08-27T03:44:38Z,- maadeshsivakumar opened pull request: [7360](https://github.com/hackforla/website/pull/7360) at 2024-08-26 08:44 PM PDT -maadeshsivakumar,2024-08-31T22:02:23Z,- maadeshsivakumar pull request merged: [7360](https://github.com/hackforla/website/pull/7360#event-14092749186) at 2024-08-31 03:02 PM PDT -maadeshsivakumar,2024-09-15T18:13:58Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2351710341) at 2024-09-15 11:13 AM PDT -maadeshsivakumar,2024-09-15T18:17:38Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2351711762) at 2024-09-15 11:17 AM PDT -maadeshsivakumar,2024-09-19T14:04:14Z,- maadeshsivakumar assigned to issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2212600266) at 2024-09-19 07:04 AM PDT -maadeshsivakumar,2024-09-19T14:04:31Z,- maadeshsivakumar unassigned from issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2212600266) at 2024-09-19 07:04 AM PDT -maadeshsivakumar,2024-09-19T14:22:36Z,- maadeshsivakumar opened pull request: [7496](https://github.com/hackforla/website/pull/7496) at 2024-09-19 07:22 AM PDT -maadeshsivakumar,2024-09-21T16:48:09Z,- maadeshsivakumar assigned to issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2361082302) at 2024-09-21 09:48 AM PDT -maadeshsivakumar,2024-09-21T16:48:21Z,- maadeshsivakumar unassigned from issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2361082302) at 2024-09-21 09:48 AM PDT -maadeshsivakumar,2024-09-24T20:10:03Z,- maadeshsivakumar pull request merged: [7496](https://github.com/hackforla/website/pull/7496#event-14387938990) at 2024-09-24 01:10 PM PDT -maadeshsivakumar,2024-10-02T19:36:34Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2389533236) at 2024-10-02 12:36 PM PDT -maadeshsivakumar,2024-10-02T19:37:32Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2389534699) at 2024-10-02 12:37 PM PDT -maadeshsivakumar,2024-10-02T19:38:56Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2389536832) at 2024-10-02 12:38 PM PDT -maadeshsivakumar,2024-10-02T19:41:56Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2389541187) at 2024-10-02 12:41 PM PDT -maadeshsivakumar,2024-10-20T18:51:09Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2425176519) at 2024-10-20 11:51 AM PDT -maadeshsivakumar,2024-10-20T18:55:17Z,- maadeshsivakumar closed issue as completed: [7203](https://github.com/hackforla/website/issues/7203#event-14755095206) at 2024-10-20 11:55 AM PDT -maadeshsivakumar,2024-10-20T18:57:11Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2425178103) at 2024-10-20 11:57 AM PDT -maadeshsivakumar,2024-10-20T18:57:11Z,- maadeshsivakumar reopened issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2425178103) at 2024-10-20 11:57 AM PDT -maadeshsivakumar,2024-11-03T11:37:24Z,- maadeshsivakumar commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453394943) at 2024-11-03 03:37 AM PST -maadeshsivakumar,2024-11-03T11:55:07Z,- maadeshsivakumar submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2411838605) at 2024-11-03 03:55 AM PST -maadeshsivakumar,2024-11-03T11:59:04Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2453400798) at 2024-11-03 03:59 AM PST -maadeshsivakumar,2024-11-03T12:02:36Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2453401991) at 2024-11-03 04:02 AM PST -maadeshsivakumar,2024-11-17T14:19:55Z,- maadeshsivakumar commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481284081) at 2024-11-17 06:19 AM PST -maadeshsivakumar,2024-11-17T14:35:32Z,- maadeshsivakumar submitted pull request review: [7723](https://github.com/hackforla/website/pull/7723#pullrequestreview-2441045721) at 2024-11-17 06:35 AM PST -maadeshsivakumar,2024-11-17T14:39:07Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2481294648) at 2024-11-17 06:39 AM PST -maadeshsivakumar,2024-11-17T14:39:49Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2481295198) at 2024-11-17 06:39 AM PST -maadeshsivakumar,2024-11-27T12:00:14Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2503694344) at 2024-11-27 04:00 AM PST -maadeshsivakumar,2025-01-06T11:13:57Z,- maadeshsivakumar commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2572895213) at 2025-01-06 03:13 AM PST -maadeshsivakumar,2025-01-25T16:59:24Z,- maadeshsivakumar commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2614030550) at 2025-01-25 08:59 AM PST -maadeshsivakumar,2025-01-25T18:18:56Z,- maadeshsivakumar commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2614054536) at 2025-01-25 10:18 AM PST -maadeshsivakumar,2025-01-25T18:19:56Z,- maadeshsivakumar submitted pull request review: [7845](https://github.com/hackforla/website/pull/7845#pullrequestreview-2574065060) at 2025-01-25 10:19 AM PST -maadeshsivakumar,2025-04-01T18:26:09Z,- maadeshsivakumar commented on pull request: [8022](https://github.com/hackforla/website/pull/8022#issuecomment-2770338653) at 2025-04-01 11:26 AM PDT -maadeshsivakumar,2025-04-01T18:34:06Z,- maadeshsivakumar submitted pull request review: [8022](https://github.com/hackforla/website/pull/8022#pullrequestreview-2733720641) at 2025-04-01 11:34 AM PDT -Maarimar,6423,SKILLS ISSUE -Maarimar,8065,SKILLS ISSUE -Maarimar,2024-03-05T03:49:31Z,- Maarimar opened issue: [6423](https://github.com/hackforla/website/issues/6423) at 2024-03-04 07:49 PM PST -Maarimar,2024-03-05T03:52:54Z,- Maarimar assigned to issue: [6423](https://github.com/hackforla/website/issues/6423) at 2024-03-04 07:52 PM PST -Maarimar,2024-03-22T16:39:51Z,- Maarimar assigned to issue: [6170](https://github.com/hackforla/website/issues/6170) at 2024-03-22 09:39 AM PDT -Maarimar,2024-03-27T21:45:30Z,- Maarimar unassigned from issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2015479843) at 2024-03-27 02:45 PM PDT -Maarimar,2024-03-27T21:45:32Z,- Maarimar assigned to issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2015479843) at 2024-03-27 02:45 PM PDT -Maarimar,2024-03-27T22:09:18Z,- Maarimar unassigned from issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2024045843) at 2024-03-27 03:09 PM PDT -Maarimar,2024-03-27T22:23:59Z,- Maarimar assigned to issue: [6237](https://github.com/hackforla/website/issues/6237) at 2024-03-27 03:23 PM PDT -Maarimar,2024-04-01T02:03:54Z,- Maarimar opened pull request: [6553](https://github.com/hackforla/website/pull/6553) at 2024-03-31 07:03 PM PDT -Maarimar,2024-04-01T02:12:59Z,- Maarimar closed issue by PR 6553: [6237](https://github.com/hackforla/website/issues/6237#event-12305668594) at 2024-03-31 07:12 PM PDT -Maarimar,2024-04-01T21:26:07Z,- Maarimar assigned to issue: [5844](https://github.com/hackforla/website/issues/5844#issuecomment-1874749502) at 2024-04-01 02:26 PM PDT -Maarimar,2024-04-03T22:07:38Z,- Maarimar opened pull request: [6561](https://github.com/hackforla/website/pull/6561) at 2024-04-03 03:07 PM PDT -Maarimar,2024-04-03T22:13:19Z,- Maarimar closed issue by PR 6561: [5844](https://github.com/hackforla/website/issues/5844#event-12349025451) at 2024-04-03 03:13 PM PDT -Maarimar,2024-04-03T22:16:39Z,- Maarimar reopened issue: [6237](https://github.com/hackforla/website/issues/6237#event-12305668594) at 2024-04-03 03:16 PM PDT -Maarimar,2024-04-03T22:17:48Z,- Maarimar reopened issue: [5844](https://github.com/hackforla/website/issues/5844#event-12349025451) at 2024-04-03 03:17 PM PDT -Maarimar,2024-04-05T04:41:31Z,- Maarimar pull request merged: [6553](https://github.com/hackforla/website/pull/6553#event-12367698417) at 2024-04-04 09:41 PM PDT -Maarimar,2024-04-05T18:58:15Z,- Maarimar commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2040452575) at 2024-04-05 11:58 AM PDT -Maarimar,2024-04-06T18:23:51Z,- Maarimar pull request merged: [6561](https://github.com/hackforla/website/pull/6561#event-12382175695) at 2024-04-06 11:23 AM PDT -Maarimar,2024-04-09T17:44:22Z,- Maarimar assigned to issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1828913065) at 2024-04-09 10:44 AM PDT -Maarimar,2024-04-09T18:13:20Z,- Maarimar commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-2045815338) at 2024-04-09 11:13 AM PDT -Maarimar,2024-04-11T23:17:43Z,- Maarimar opened pull request: [6626](https://github.com/hackforla/website/pull/6626) at 2024-04-11 04:17 PM PDT -Maarimar,2024-04-12T16:24:17Z,- Maarimar commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2052079065) at 2024-04-12 09:24 AM PDT -Maarimar,2024-04-16T15:37:51Z,- Maarimar assigned to issue: [6641](https://github.com/hackforla/website/issues/6641) at 2024-04-16 08:37 AM PDT -Maarimar,2024-04-16T16:36:17Z,- Maarimar commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059504184) at 2024-04-16 09:36 AM PDT -Maarimar,2024-04-16T16:56:55Z,- Maarimar unassigned from issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059537181) at 2024-04-16 09:56 AM PDT -Maarimar,2024-04-17T22:06:15Z,- Maarimar pull request merged: [6626](https://github.com/hackforla/website/pull/6626#event-12514922992) at 2024-04-17 03:06 PM PDT -Maarimar,2024-04-23T18:07:41Z,- Maarimar assigned to issue: [3859](https://github.com/hackforla/website/issues/3859) at 2024-04-23 11:07 AM PDT -Maarimar,2024-04-25T02:25:00Z,- Maarimar commented on issue: [3859](https://github.com/hackforla/website/issues/3859#issuecomment-2076205011) at 2024-04-24 07:25 PM PDT -Maarimar,2024-04-29T00:34:51Z,- Maarimar submitted pull request review: [6772](https://github.com/hackforla/website/pull/6772#pullrequestreview-2027429081) at 2024-04-28 05:34 PM PDT -Maarimar,2024-04-30T04:03:15Z,- Maarimar commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2084334375) at 2024-04-29 09:03 PM PDT -Maarimar,2024-05-01T16:09:03Z,- Maarimar opened issue: [6798](https://github.com/hackforla/website/issues/6798) at 2024-05-01 09:09 AM PDT -Maarimar,2024-05-01T16:19:18Z,- Maarimar opened issue: [6799](https://github.com/hackforla/website/issues/6799) at 2024-05-01 09:19 AM PDT -Maarimar,2024-05-01T16:30:06Z,- Maarimar opened issue: [6800](https://github.com/hackforla/website/issues/6800) at 2024-05-01 09:30 AM PDT -Maarimar,2024-05-01T16:35:48Z,- Maarimar commented on issue: [3859](https://github.com/hackforla/website/issues/3859#issuecomment-2088736838) at 2024-05-01 09:35 AM PDT -Maarimar,2024-05-01T18:11:31Z,- Maarimar commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2088865648) at 2024-05-01 11:11 AM PDT -Maarimar,2024-05-08T21:55:16Z,- Maarimar assigned to issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2084048732) at 2024-05-08 02:55 PM PDT -Maarimar,2024-05-08T22:08:07Z,- Maarimar commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2101583808) at 2024-05-08 03:08 PM PDT -Maarimar,2024-05-14T01:14:44Z,- Maarimar commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2109089325) at 2024-05-13 06:14 PM PDT -Maarimar,2024-05-24T21:38:49Z,- Maarimar submitted pull request review: [6860](https://github.com/hackforla/website/pull/6860#pullrequestreview-2078094645) at 2024-05-24 02:38 PM PDT -Maarimar,2024-05-24T21:44:14Z,- Maarimar commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2130407889) at 2024-05-24 02:44 PM PDT -Maarimar,2024-07-14T17:28:24Z,- Maarimar assigned to issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2024-07-14 10:28 AM PDT -Maarimar,2024-08-27T22:48:57Z,- Maarimar unassigned from issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2277292199) at 2024-08-27 03:48 PM PDT -Maarimar,2025-04-16T02:45:11Z,- Maarimar opened issue: [8065](https://github.com/hackforla/website/issues/8065) at 2025-04-15 07:45 PM PDT -Maarimar,2025-04-16T02:45:24Z,- Maarimar assigned to issue: [8065](https://github.com/hackforla/website/issues/8065) at 2025-04-15 07:45 PM PDT -Maarimar,2025-04-25T16:36:57Z,- Maarimar commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2830893787) at 2025-04-25 09:36 AM PDT -Maarimar,2025-04-25T16:38:33Z,- Maarimar commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2830897530) at 2025-04-25 09:38 AM PDT -Maarimar,2025-04-25T17:31:45Z,- Maarimar commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2831022469) at 2025-04-25 10:31 AM PDT -Maarimar,2025-05-15T22:48:51Z,- Maarimar assigned to issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2874621414) at 2025-05-15 03:48 PM PDT -Maarimar,2025-05-15T22:52:21Z,- Maarimar commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2885222733) at 2025-05-15 03:52 PM PDT -Maarimar,2025-05-19T19:53:30Z,- Maarimar unassigned from issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2885222733) at 2025-05-19 12:53 PM PDT -Maarimar,2025-05-19T19:55:17Z,- Maarimar assigned to issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2616716640) at 2025-05-19 12:55 PM PDT -Maarimar,2025-05-19T19:55:32Z,- Maarimar unassigned from issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2616716640) at 2025-05-19 12:55 PM PDT -Maarimar,2025-05-19T19:56:04Z,- Maarimar assigned to issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892123866) at 2025-05-19 12:56 PM PDT -Maarimar,2025-05-19T19:56:21Z,- Maarimar unassigned from issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892123866) at 2025-05-19 12:56 PM PDT -Maarimar,2025-05-19T19:56:52Z,- Maarimar assigned to issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832458560) at 2025-05-19 12:56 PM PDT -Maarimar,2025-05-19T19:57:11Z,- Maarimar unassigned from issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832458560) at 2025-05-19 12:57 PM PDT -Maarimar,2025-05-19T20:00:00Z,- Maarimar assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2731586032) at 2025-05-19 01:00 PM PDT -Maarimar,2025-05-20T01:56:24Z,- Maarimar commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2892678244) at 2025-05-19 06:56 PM PDT -Maarimar,2025-06-04T17:29:34Z,- Maarimar commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2940836489) at 2025-06-04 10:29 AM PDT -Maarimar,2025-06-18T22:43:13Z,- Maarimar opened pull request: [8196](https://github.com/hackforla/website/pull/8196) at 2025-06-18 03:43 PM PDT -macho-catt,2021-06-29T17:57:54Z,- macho-catt assigned to issue: [1573](https://github.com/hackforla/website/issues/1573) at 2021-06-29 10:57 AM PDT -macho-catt,2021-06-30T01:37:16Z,- macho-catt opened pull request: [1862](https://github.com/hackforla/website/pull/1862) at 2021-06-29 06:37 PM PDT -macho-catt,2021-07-01T05:08:08Z,- macho-catt pull request merged: [1862](https://github.com/hackforla/website/pull/1862#event-4963491378) at 2021-06-30 10:08 PM PDT -macho-catt,2021-07-02T17:34:35Z,- macho-catt assigned to issue: [1873](https://github.com/hackforla/website/issues/1873) at 2021-07-02 10:34 AM PDT -macho-catt,2021-07-03T00:01:22Z,- macho-catt opened pull request: [1882](https://github.com/hackforla/website/pull/1882) at 2021-07-02 05:01 PM PDT -macho-catt,2021-07-04T20:07:34Z,- macho-catt opened issue: [1890](https://github.com/hackforla/website/issues/1890) at 2021-07-04 01:07 PM PDT -macho-catt,2021-07-05T08:20:43Z,- macho-catt opened issue: [1893](https://github.com/hackforla/website/issues/1893) at 2021-07-05 01:20 AM PDT -macho-catt,2021-07-09T23:24:22Z,- macho-catt pull request merged: [1882](https://github.com/hackforla/website/pull/1882#event-5002561286) at 2021-07-09 04:24 PM PDT -macho-catt,2021-07-09T23:44:39Z,- macho-catt assigned to issue: [1887](https://github.com/hackforla/website/issues/1887) at 2021-07-09 04:44 PM PDT -macho-catt,2021-07-10T02:50:34Z,- macho-catt opened pull request: [1912](https://github.com/hackforla/website/pull/1912) at 2021-07-09 07:50 PM PDT -macho-catt,2021-07-10T16:08:44Z,- macho-catt submitted pull request review: [1913](https://github.com/hackforla/website/pull/1913#pullrequestreview-703511976) at 2021-07-10 09:08 AM PDT -macho-catt,2021-07-10T16:09:14Z,- macho-catt submitted pull request review: [1913](https://github.com/hackforla/website/pull/1913#pullrequestreview-703512027) at 2021-07-10 09:09 AM PDT -macho-catt,2021-07-10T16:12:52Z,- macho-catt submitted pull request review: [1913](https://github.com/hackforla/website/pull/1913#pullrequestreview-703512209) at 2021-07-10 09:12 AM PDT -macho-catt,2021-07-11T16:41:25Z,- macho-catt submitted pull request review: [1913](https://github.com/hackforla/website/pull/1913#pullrequestreview-703605610) at 2021-07-11 09:41 AM PDT -macho-catt,2021-07-11T17:38:28Z,- macho-catt submitted pull request review: [1915](https://github.com/hackforla/website/pull/1915#pullrequestreview-703609595) at 2021-07-11 10:38 AM PDT -macho-catt,2021-07-12T06:39:37Z,- macho-catt submitted pull request review: [1922](https://github.com/hackforla/website/pull/1922#pullrequestreview-703761522) at 2021-07-11 11:39 PM PDT -macho-catt,2021-07-13T21:19:31Z,- macho-catt commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879410554) at 2021-07-13 02:19 PM PDT -macho-catt,2021-07-15T05:47:14Z,- macho-catt commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-880414060) at 2021-07-14 10:47 PM PDT -macho-catt,2021-07-15T21:54:36Z,- macho-catt commented on pull request: [1918](https://github.com/hackforla/website/pull/1918#issuecomment-881036944) at 2021-07-15 02:54 PM PDT -macho-catt,2021-07-15T23:54:59Z,- macho-catt commented on pull request: [1952](https://github.com/hackforla/website/pull/1952#issuecomment-881081052) at 2021-07-15 04:54 PM PDT -macho-catt,2021-07-16T04:15:13Z,- macho-catt submitted pull request review: [1946](https://github.com/hackforla/website/pull/1946#pullrequestreview-707990424) at 2021-07-15 09:15 PM PDT -macho-catt,2021-07-16T04:18:52Z,- macho-catt submitted pull request review: [1938](https://github.com/hackforla/website/pull/1938#pullrequestreview-707991531) at 2021-07-15 09:18 PM PDT -macho-catt,2021-07-16T04:38:39Z,- macho-catt commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-881170701) at 2021-07-15 09:38 PM PDT -macho-catt,2021-07-16T05:04:46Z,- macho-catt submitted pull request review: [1937](https://github.com/hackforla/website/pull/1937#pullrequestreview-708009581) at 2021-07-15 10:04 PM PDT -macho-catt,2021-07-18T18:39:55Z,- macho-catt commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-882100189) at 2021-07-18 11:39 AM PDT -macho-catt,2021-07-19T14:47:03Z,- macho-catt submitted pull request review: [1967](https://github.com/hackforla/website/pull/1967#pullrequestreview-709639763) at 2021-07-19 07:47 AM PDT -macho-catt,2021-07-19T14:52:13Z,- macho-catt submitted pull request review: [1971](https://github.com/hackforla/website/pull/1971#pullrequestreview-709646154) at 2021-07-19 07:52 AM PDT -macho-catt,2021-07-19T22:18:56Z,- macho-catt commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-882898911) at 2021-07-19 03:18 PM PDT -macho-catt,2021-07-20T02:38:10Z,- macho-catt submitted pull request review: [1967](https://github.com/hackforla/website/pull/1967#pullrequestreview-710131634) at 2021-07-19 07:38 PM PDT -macho-catt,2021-07-20T02:39:02Z,- macho-catt commented on pull request: [1967](https://github.com/hackforla/website/pull/1967#issuecomment-883006690) at 2021-07-19 07:39 PM PDT -macho-catt,2021-07-20T15:37:45Z,- macho-catt commented on issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-883492600) at 2021-07-20 08:37 AM PDT -macho-catt,2021-07-20T18:56:58Z,- macho-catt pull request merged: [1912](https://github.com/hackforla/website/pull/1912#event-5046057457) at 2021-07-20 11:56 AM PDT -macho-catt,2021-07-20T19:34:38Z,- macho-catt assigned to issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-883492600) at 2021-07-20 12:34 PM PDT -macho-catt,2021-07-20T23:51:27Z,- macho-catt opened pull request: [1990](https://github.com/hackforla/website/pull/1990) at 2021-07-20 04:51 PM PDT -macho-catt,2021-07-21T06:54:18Z,- macho-catt pull request merged: [1990](https://github.com/hackforla/website/pull/1990#event-5048374352) at 2021-07-20 11:54 PM PDT -macho-catt,2021-07-21T15:28:55Z,- macho-catt assigned to issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-883694809) at 2021-07-21 08:28 AM PDT -macho-catt,2021-07-22T19:58:12Z,- macho-catt opened pull request: [1999](https://github.com/hackforla/website/pull/1999) at 2021-07-22 12:58 PM PDT -macho-catt,2021-07-22T23:04:31Z,- macho-catt submitted pull request review: [1991](https://github.com/hackforla/website/pull/1991#pullrequestreview-713299808) at 2021-07-22 04:04 PM PDT -macho-catt,2021-07-22T23:04:59Z,- macho-catt submitted pull request review: [1991](https://github.com/hackforla/website/pull/1991#pullrequestreview-713299997) at 2021-07-22 04:04 PM PDT -macho-catt,2021-07-30T02:30:44Z,- macho-catt commented on pull request: [1999](https://github.com/hackforla/website/pull/1999#issuecomment-889582876) at 2021-07-29 07:30 PM PDT -macho-catt,2021-07-30T05:18:25Z,- macho-catt commented on pull request: [1999](https://github.com/hackforla/website/pull/1999#issuecomment-889635442) at 2021-07-29 10:18 PM PDT -macho-catt,2021-07-30T06:35:27Z,- macho-catt commented on pull request: [1999](https://github.com/hackforla/website/pull/1999#issuecomment-889665148) at 2021-07-29 11:35 PM PDT -macho-catt,2021-08-01T15:30:47Z,- macho-catt pull request merged: [1999](https://github.com/hackforla/website/pull/1999#event-5095581393) at 2021-08-01 08:30 AM PDT -macho-catt,2021-08-02T05:41:26Z,- macho-catt assigned to issue: [2013](https://github.com/hackforla/website/issues/2013) at 2021-08-01 10:41 PM PDT -macho-catt,2021-08-04T02:04:38Z,- macho-catt opened pull request: [2060](https://github.com/hackforla/website/pull/2060) at 2021-08-03 07:04 PM PDT -macho-catt,2021-08-05T03:31:56Z,- macho-catt submitted pull request review: [2035](https://github.com/hackforla/website/pull/2035#pullrequestreview-722904640) at 2021-08-04 08:31 PM PDT -macho-catt,2021-08-08T04:44:12Z,- macho-catt commented on pull request: [2060](https://github.com/hackforla/website/pull/2060#issuecomment-894742290) at 2021-08-07 09:44 PM PDT -macho-catt,2021-08-08T20:40:34Z,- macho-catt opened issue: [2073](https://github.com/hackforla/website/issues/2073) at 2021-08-08 01:40 PM PDT -macho-catt,2021-08-08T20:41:05Z,- macho-catt assigned to issue: [2073](https://github.com/hackforla/website/issues/2073) at 2021-08-08 01:41 PM PDT -macho-catt,2021-08-08T21:50:26Z,- macho-catt submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-724939361) at 2021-08-08 02:50 PM PDT -macho-catt,2021-08-09T03:37:52Z,- macho-catt commented on pull request: [2060](https://github.com/hackforla/website/pull/2060#issuecomment-894929974) at 2021-08-08 08:37 PM PDT -macho-catt,2021-08-10T05:09:02Z,- macho-catt opened issue: [2077](https://github.com/hackforla/website/issues/2077) at 2021-08-09 10:09 PM PDT -macho-catt,2021-08-10T05:10:35Z,- macho-catt commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-895734012) at 2021-08-09 10:10 PM PDT -macho-catt,2021-08-10T05:10:55Z,- macho-catt submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-726011745) at 2021-08-09 10:10 PM PDT -macho-catt,2021-08-10T05:21:22Z,- macho-catt commented on issue: [2073](https://github.com/hackforla/website/issues/2073#issuecomment-895737960) at 2021-08-09 10:21 PM PDT -macho-catt,2021-08-11T01:56:39Z,- macho-catt commented on pull request: [2060](https://github.com/hackforla/website/pull/2060#issuecomment-896438776) at 2021-08-10 06:56 PM PDT -macho-catt,2021-08-11T03:54:37Z,- macho-catt pull request merged: [2060](https://github.com/hackforla/website/pull/2060#event-5139174946) at 2021-08-10 08:54 PM PDT -macho-catt,2021-08-12T14:31:36Z,- macho-catt submitted pull request review: [2031](https://github.com/hackforla/website/pull/2031#pullrequestreview-728696005) at 2021-08-12 07:31 AM PDT -macho-catt,2021-08-13T04:29:12Z,- macho-catt commented on issue: [2073](https://github.com/hackforla/website/issues/2073#issuecomment-898183527) at 2021-08-12 09:29 PM PDT -macho-catt,2021-08-13T05:02:31Z,- macho-catt submitted pull request review: [2031](https://github.com/hackforla/website/pull/2031#pullrequestreview-729263430) at 2021-08-12 10:02 PM PDT -macho-catt,2021-08-13T06:05:25Z,- macho-catt submitted pull request review: [2011](https://github.com/hackforla/website/pull/2011#pullrequestreview-729288572) at 2021-08-12 11:05 PM PDT -macho-catt,2021-08-13T06:06:13Z,- macho-catt submitted pull request review: [2011](https://github.com/hackforla/website/pull/2011#pullrequestreview-729288977) at 2021-08-12 11:06 PM PDT -macho-catt,2021-08-13T06:33:28Z,- macho-catt submitted pull request review: [2102](https://github.com/hackforla/website/pull/2102#pullrequestreview-729302737) at 2021-08-12 11:33 PM PDT -macho-catt,2021-08-13T18:04:47Z,- macho-catt opened issue: [2109](https://github.com/hackforla/website/issues/2109) at 2021-08-13 11:04 AM PDT -macho-catt,2021-08-13T18:13:30Z,- macho-catt opened issue: [2110](https://github.com/hackforla/website/issues/2110) at 2021-08-13 11:13 AM PDT -macho-catt,2021-08-13T18:19:33Z,- macho-catt opened issue: [2111](https://github.com/hackforla/website/issues/2111) at 2021-08-13 11:19 AM PDT -macho-catt,2021-08-13T18:22:59Z,- macho-catt commented on issue: [2073](https://github.com/hackforla/website/issues/2073#issuecomment-898642099) at 2021-08-13 11:22 AM PDT -macho-catt,2021-08-13T18:28:46Z,- macho-catt closed issue as completed: [2073](https://github.com/hackforla/website/issues/2073#event-5157162383) at 2021-08-13 11:28 AM PDT -macho-catt,2021-08-16T06:35:28Z,- macho-catt assigned to issue: [2110](https://github.com/hackforla/website/issues/2110) at 2021-08-15 11:35 PM PDT -macho-catt,2021-08-16T06:49:17Z,- macho-catt commented on pull request: [2115](https://github.com/hackforla/website/pull/2115#issuecomment-899266024) at 2021-08-15 11:49 PM PDT -macho-catt,2021-08-16T06:49:28Z,- macho-catt submitted pull request review: [2115](https://github.com/hackforla/website/pull/2115#pullrequestreview-730375473) at 2021-08-15 11:49 PM PDT -macho-catt,2021-08-16T06:50:36Z,- macho-catt closed issue by PR 2115: [1577](https://github.com/hackforla/website/issues/1577#event-5161202986) at 2021-08-15 11:50 PM PDT -macho-catt,2021-08-16T07:01:02Z,- macho-catt commented on pull request: [2107](https://github.com/hackforla/website/pull/2107#issuecomment-899271350) at 2021-08-16 12:01 AM PDT -macho-catt,2021-08-16T07:01:13Z,- macho-catt submitted pull request review: [2107](https://github.com/hackforla/website/pull/2107#pullrequestreview-730382718) at 2021-08-16 12:01 AM PDT -macho-catt,2021-08-17T00:48:02Z,- macho-catt opened pull request: [2124](https://github.com/hackforla/website/pull/2124) at 2021-08-16 05:48 PM PDT -macho-catt,2021-08-18T01:03:17Z,- macho-catt submitted pull request review: [2119](https://github.com/hackforla/website/pull/2119#pullrequestreview-732347470) at 2021-08-17 06:03 PM PDT -macho-catt,2021-08-18T01:05:36Z,- macho-catt submitted pull request review: [2119](https://github.com/hackforla/website/pull/2119#pullrequestreview-732348243) at 2021-08-17 06:05 PM PDT -macho-catt,2021-08-18T01:06:28Z,- macho-catt submitted pull request review: [2119](https://github.com/hackforla/website/pull/2119#pullrequestreview-732348561) at 2021-08-17 06:06 PM PDT -macho-catt,2021-08-18T02:16:39Z,- macho-catt commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-900760057) at 2021-08-17 07:16 PM PDT -macho-catt,2021-08-18T02:17:38Z,- macho-catt commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-900760367) at 2021-08-17 07:17 PM PDT -macho-catt,2021-08-18T02:46:00Z,- macho-catt submitted pull request review: [2126](https://github.com/hackforla/website/pull/2126#pullrequestreview-732385576) at 2021-08-17 07:46 PM PDT -macho-catt,2021-08-18T15:53:38Z,- macho-catt commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-901229796) at 2021-08-18 08:53 AM PDT -macho-catt,2021-08-18T16:48:50Z,- macho-catt commented on pull request: [2124](https://github.com/hackforla/website/pull/2124#issuecomment-901269194) at 2021-08-18 09:48 AM PDT -macho-catt,2021-08-19T02:51:44Z,- macho-catt submitted pull request review: [2126](https://github.com/hackforla/website/pull/2126#pullrequestreview-733506758) at 2021-08-18 07:51 PM PDT -macho-catt,2021-08-19T02:55:20Z,- macho-catt submitted pull request review: [2120](https://github.com/hackforla/website/pull/2120#pullrequestreview-733508113) at 2021-08-18 07:55 PM PDT -macho-catt,2021-08-19T02:56:07Z,- macho-catt closed issue by PR 2120: [2044](https://github.com/hackforla/website/issues/2044#event-5178080011) at 2021-08-18 07:56 PM PDT -macho-catt,2021-08-19T02:58:15Z,- macho-catt closed issue by PR 2126: [2043](https://github.com/hackforla/website/issues/2043#event-5178084644) at 2021-08-18 07:58 PM PDT -macho-catt,2021-08-19T03:00:19Z,- macho-catt closed issue by PR 2124: [2110](https://github.com/hackforla/website/issues/2110#event-5178089312) at 2021-08-18 08:00 PM PDT -macho-catt,2021-08-19T03:00:19Z,- macho-catt pull request merged: [2124](https://github.com/hackforla/website/pull/2124#event-5178089315) at 2021-08-18 08:00 PM PDT -macho-catt,2021-08-19T03:08:47Z,- macho-catt submitted pull request review: [2119](https://github.com/hackforla/website/pull/2119#pullrequestreview-733513130) at 2021-08-18 08:08 PM PDT -macho-catt,2021-08-19T03:09:47Z,- macho-catt closed issue by PR 2119: [1975](https://github.com/hackforla/website/issues/1975#event-5178114476) at 2021-08-18 08:09 PM PDT -macho-catt,2021-08-19T03:28:19Z,- macho-catt assigned to issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-897303450) at 2021-08-18 08:28 PM PDT -macho-catt,2021-08-19T03:44:09Z,- macho-catt commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-901585713) at 2021-08-18 08:44 PM PDT -macho-catt,2021-08-19T05:00:08Z,- macho-catt submitted pull request review: [2123](https://github.com/hackforla/website/pull/2123#pullrequestreview-733557526) at 2021-08-18 10:00 PM PDT -macho-catt,2021-08-19T05:10:29Z,- macho-catt submitted pull request review: [2121](https://github.com/hackforla/website/pull/2121#pullrequestreview-733563315) at 2021-08-18 10:10 PM PDT -macho-catt,2021-08-19T19:59:50Z,- macho-catt closed issue by PR 2123: [1948](https://github.com/hackforla/website/issues/1948#event-5183312430) at 2021-08-19 12:59 PM PDT -macho-catt,2021-08-20T04:49:51Z,- macho-catt opened pull request: [2133](https://github.com/hackforla/website/pull/2133) at 2021-08-19 09:49 PM PDT -macho-catt,2021-08-20T05:30:08Z,- macho-catt assigned to issue: [2137](https://github.com/hackforla/website/issues/2137) at 2021-08-19 10:30 PM PDT -macho-catt,2021-08-20T05:32:29Z,- macho-catt pull request merged: [2133](https://github.com/hackforla/website/pull/2133#event-5184881110) at 2021-08-19 10:32 PM PDT -macho-catt,2021-08-20T06:15:01Z,- macho-catt closed issue as completed: [2137](https://github.com/hackforla/website/issues/2137#event-5184996013) at 2021-08-19 11:15 PM PDT -macho-catt,2021-08-20T15:56:02Z,- macho-catt submitted pull request review: [2121](https://github.com/hackforla/website/pull/2121#pullrequestreview-735171836) at 2021-08-20 08:56 AM PDT -macho-catt,2021-08-20T17:19:29Z,- macho-catt assigned to issue: [2029](https://github.com/hackforla/website/issues/2029#issuecomment-890567384) at 2021-08-20 10:19 AM PDT -macho-catt,2021-08-20T17:20:01Z,- macho-catt commented on issue: [2029](https://github.com/hackforla/website/issues/2029#issuecomment-902841210) at 2021-08-20 10:20 AM PDT -macho-catt,2021-08-20T17:25:36Z,- macho-catt opened pull request: [2144](https://github.com/hackforla/website/pull/2144) at 2021-08-20 10:25 AM PDT -macho-catt,2021-08-20T17:29:06Z,- macho-catt commented on issue: [2138](https://github.com/hackforla/website/issues/2138#issuecomment-902846109) at 2021-08-20 10:29 AM PDT -macho-catt,2021-08-21T21:42:37Z,- macho-catt submitted pull request review: [2131](https://github.com/hackforla/website/pull/2131#pullrequestreview-735522918) at 2021-08-21 02:42 PM PDT -macho-catt,2021-08-21T21:42:59Z,- macho-catt closed issue by PR 2131: [2093](https://github.com/hackforla/website/issues/2093#event-5190216232) at 2021-08-21 02:42 PM PDT -macho-catt,2021-08-21T21:58:52Z,- macho-catt submitted pull request review: [2118](https://github.com/hackforla/website/pull/2118#pullrequestreview-735523548) at 2021-08-21 02:58 PM PDT -macho-catt,2021-08-22T16:51:35Z,- macho-catt submitted pull request review: [2118](https://github.com/hackforla/website/pull/2118#pullrequestreview-735593805) at 2021-08-22 09:51 AM PDT -macho-catt,2021-08-22T16:51:43Z,- macho-catt closed issue by PR 2118: [2064](https://github.com/hackforla/website/issues/2064#event-5191037809) at 2021-08-22 09:51 AM PDT -macho-catt,2021-08-22T18:40:31Z,- macho-catt commented on issue: [2077](https://github.com/hackforla/website/issues/2077#issuecomment-903312309) at 2021-08-22 11:40 AM PDT -macho-catt,2021-08-22T20:17:02Z,- macho-catt commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-903324708) at 2021-08-22 01:17 PM PDT -macho-catt,2021-08-23T07:49:52Z,- macho-catt pull request merged: [2144](https://github.com/hackforla/website/pull/2144#event-5192669434) at 2021-08-23 12:49 AM PDT -macho-catt,2021-08-25T04:16:23Z,- macho-catt submitted pull request review: [2152](https://github.com/hackforla/website/pull/2152#pullrequestreview-737878789) at 2021-08-24 09:16 PM PDT -macho-catt,2021-08-25T04:16:34Z,- macho-catt closed issue by PR 2152: [1970](https://github.com/hackforla/website/issues/1970#event-5204214681) at 2021-08-24 09:16 PM PDT -macho-catt,2021-08-25T04:30:33Z,- macho-catt submitted pull request review: [2156](https://github.com/hackforla/website/pull/2156#pullrequestreview-737883912) at 2021-08-24 09:30 PM PDT -macho-catt,2021-08-25T04:31:12Z,- macho-catt submitted pull request review: [2156](https://github.com/hackforla/website/pull/2156#pullrequestreview-737884178) at 2021-08-24 09:31 PM PDT -macho-catt,2021-08-25T05:17:49Z,- macho-catt commented on issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-905191021) at 2021-08-24 10:17 PM PDT -macho-catt,2021-08-25T17:35:06Z,- macho-catt closed issue as completed: [2029](https://github.com/hackforla/website/issues/2029#event-5208393241) at 2021-08-25 10:35 AM PDT -macho-catt,2021-08-25T18:08:24Z,- macho-catt opened issue: [2179](https://github.com/hackforla/website/issues/2179) at 2021-08-25 11:08 AM PDT -macho-catt,2021-08-25T18:51:01Z,- macho-catt commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-905787953) at 2021-08-25 11:51 AM PDT -macho-catt,2021-08-25T18:58:29Z,- macho-catt commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-905792914) at 2021-08-25 11:58 AM PDT -macho-catt,2021-08-25T20:22:49Z,- macho-catt submitted pull request review: [2166](https://github.com/hackforla/website/pull/2166#pullrequestreview-738794713) at 2021-08-25 01:22 PM PDT -macho-catt,2021-08-26T19:09:53Z,- macho-catt assigned to issue: [1816](https://github.com/hackforla/website/issues/1816) at 2021-08-26 12:09 PM PDT -macho-catt,2021-08-27T03:47:03Z,- macho-catt submitted pull request review: [2156](https://github.com/hackforla/website/pull/2156#pullrequestreview-740116765) at 2021-08-26 08:47 PM PDT -macho-catt,2021-08-27T03:54:15Z,- macho-catt submitted pull request review: [2178](https://github.com/hackforla/website/pull/2178#pullrequestreview-740118950) at 2021-08-26 08:54 PM PDT -macho-catt,2021-08-27T04:23:48Z,- macho-catt opened pull request: [2186](https://github.com/hackforla/website/pull/2186) at 2021-08-26 09:23 PM PDT -macho-catt,2021-08-28T02:57:55Z,- macho-catt submitted pull request review: [2189](https://github.com/hackforla/website/pull/2189#pullrequestreview-740971910) at 2021-08-27 07:57 PM PDT -macho-catt,2021-08-28T05:48:28Z,- macho-catt closed issue by PR 2178: [2079](https://github.com/hackforla/website/issues/2079#event-5221347833) at 2021-08-27 10:48 PM PDT -macho-catt,2021-08-28T05:49:38Z,- macho-catt closed issue by PR 2156: [2068](https://github.com/hackforla/website/issues/2068#event-5221348709) at 2021-08-27 10:49 PM PDT -macho-catt,2021-08-29T06:36:31Z,- macho-catt pull request merged: [2186](https://github.com/hackforla/website/pull/2186#event-5222396191) at 2021-08-28 11:36 PM PDT -macho-catt,2021-08-31T03:32:28Z,- macho-catt submitted pull request review: [2195](https://github.com/hackforla/website/pull/2195#pullrequestreview-742245189) at 2021-08-30 08:32 PM PDT -macho-catt,2021-08-31T03:33:15Z,- macho-catt closed issue by PR 2195: [2085](https://github.com/hackforla/website/issues/2085#event-5229810903) at 2021-08-30 08:33 PM PDT -macho-catt,2021-08-31T03:42:01Z,- macho-catt submitted pull request review: [2196](https://github.com/hackforla/website/pull/2196#pullrequestreview-742248472) at 2021-08-30 08:42 PM PDT -macho-catt,2021-08-31T03:42:18Z,- macho-catt closed issue by PR 2196: [2165](https://github.com/hackforla/website/issues/2165#event-5229830747) at 2021-08-30 08:42 PM PDT -macho-catt,2021-08-31T03:55:04Z,- macho-catt submitted pull request review: [2197](https://github.com/hackforla/website/pull/2197#pullrequestreview-742252938) at 2021-08-30 08:55 PM PDT -macho-catt,2021-08-31T03:55:19Z,- macho-catt closed issue by PR 2197: [2164](https://github.com/hackforla/website/issues/2164#event-5229860840) at 2021-08-30 08:55 PM PDT -macho-catt,2021-08-31T04:02:31Z,- macho-catt assigned to issue: [2170](https://github.com/hackforla/website/issues/2170#issuecomment-905056240) at 2021-08-30 09:02 PM PDT -macho-catt,2021-08-31T04:26:58Z,- macho-catt opened pull request: [2209](https://github.com/hackforla/website/pull/2209) at 2021-08-30 09:26 PM PDT -macho-catt,2021-08-31T15:33:44Z,- macho-catt commented on issue: [2111](https://github.com/hackforla/website/issues/2111#issuecomment-909347330) at 2021-08-31 08:33 AM PDT -macho-catt,2021-08-31T15:37:48Z,- macho-catt commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-909350624) at 2021-08-31 08:37 AM PDT -macho-catt,2021-08-31T18:00:54Z,- macho-catt opened issue: [2211](https://github.com/hackforla/website/issues/2211) at 2021-08-31 11:00 AM PDT -macho-catt,2021-09-03T15:45:53Z,- macho-catt closed issue by PR 2209: [2170](https://github.com/hackforla/website/issues/2170#event-5254254308) at 2021-09-03 08:45 AM PDT -macho-catt,2021-09-03T15:45:53Z,- macho-catt pull request merged: [2209](https://github.com/hackforla/website/pull/2209#event-5254254317) at 2021-09-03 08:45 AM PDT -macho-catt,2021-09-03T16:06:52Z,- macho-catt submitted pull request review: [1957](https://github.com/hackforla/website/pull/1957#pullrequestreview-746272362) at 2021-09-03 09:06 AM PDT -macho-catt,2021-09-03T16:07:46Z,- macho-catt submitted pull request review: [1957](https://github.com/hackforla/website/pull/1957#pullrequestreview-746273102) at 2021-09-03 09:07 AM PDT -macho-catt,2021-09-03T16:07:55Z,- macho-catt submitted pull request review: [1957](https://github.com/hackforla/website/pull/1957#pullrequestreview-746273195) at 2021-09-03 09:07 AM PDT -macho-catt,2021-09-03T16:08:18Z,- macho-catt submitted pull request review: [1957](https://github.com/hackforla/website/pull/1957#pullrequestreview-746273526) at 2021-09-03 09:08 AM PDT -macho-catt,2021-09-03T16:21:28Z,- macho-catt commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-912659251) at 2021-09-03 09:21 AM PDT -macho-catt,2021-09-03T17:13:24Z,- macho-catt opened issue: [2220](https://github.com/hackforla/website/issues/2220) at 2021-09-03 10:13 AM PDT -macho-catt,2021-09-03T17:38:53Z,- macho-catt opened issue: [2221](https://github.com/hackforla/website/issues/2221) at 2021-09-03 10:38 AM PDT -macho-catt,2021-09-03T17:48:18Z,- macho-catt opened issue: [2222](https://github.com/hackforla/website/issues/2222) at 2021-09-03 10:48 AM PDT -macho-catt,2021-09-05T17:17:32Z,- macho-catt commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-913193318) at 2021-09-05 10:17 AM PDT -macho-catt,2021-09-05T17:21:23Z,- macho-catt commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-913193807) at 2021-09-05 10:21 AM PDT -macho-catt,2021-09-05T17:24:06Z,- macho-catt commented on pull request: [2208](https://github.com/hackforla/website/pull/2208#issuecomment-913194167) at 2021-09-05 10:24 AM PDT -macho-catt,2021-09-05T19:02:45Z,- macho-catt submitted pull request review: [2214](https://github.com/hackforla/website/pull/2214#pullrequestreview-746675859) at 2021-09-05 12:02 PM PDT -macho-catt,2021-09-05T19:55:57Z,- macho-catt assigned to issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-913191598) at 2021-09-05 12:55 PM PDT -macho-catt,2021-09-06T19:01:42Z,- macho-catt commented on issue: [2203](https://github.com/hackforla/website/issues/2203#issuecomment-913813683) at 2021-09-06 12:01 PM PDT -macho-catt,2021-09-06T19:44:34Z,- macho-catt commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-913827820) at 2021-09-06 12:44 PM PDT -macho-catt,2021-09-07T00:26:36Z,- macho-catt opened issue: [2227](https://github.com/hackforla/website/issues/2227) at 2021-09-06 05:26 PM PDT -macho-catt,2021-09-07T23:24:00Z,- macho-catt assigned to issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-913822847) at 2021-09-07 04:24 PM PDT -macho-catt,2021-09-08T01:37:35Z,- macho-catt submitted pull request review: [2229](https://github.com/hackforla/website/pull/2229#pullrequestreview-748552858) at 2021-09-07 06:37 PM PDT -macho-catt,2021-09-08T05:23:09Z,- macho-catt opened issue: [2233](https://github.com/hackforla/website/issues/2233) at 2021-09-07 10:23 PM PDT -macho-catt,2021-09-08T05:38:14Z,- macho-catt opened issue: [2234](https://github.com/hackforla/website/issues/2234) at 2021-09-07 10:38 PM PDT -macho-catt,2021-09-08T05:44:07Z,- macho-catt opened issue: [2235](https://github.com/hackforla/website/issues/2235) at 2021-09-07 10:44 PM PDT -macho-catt,2021-09-08T05:47:33Z,- macho-catt opened issue: [2236](https://github.com/hackforla/website/issues/2236) at 2021-09-07 10:47 PM PDT -macho-catt,2021-09-08T05:57:30Z,- macho-catt opened issue: [2237](https://github.com/hackforla/website/issues/2237) at 2021-09-07 10:57 PM PDT -macho-catt,2021-09-08T06:01:59Z,- macho-catt opened issue: [2238](https://github.com/hackforla/website/issues/2238) at 2021-09-07 11:01 PM PDT -macho-catt,2021-09-08T06:07:45Z,- macho-catt opened issue: [2239](https://github.com/hackforla/website/issues/2239) at 2021-09-07 11:07 PM PDT -macho-catt,2021-09-08T18:20:31Z,- macho-catt opened issue: [2240](https://github.com/hackforla/website/issues/2240) at 2021-09-08 11:20 AM PDT -macho-catt,2021-09-08T18:51:54Z,- macho-catt commented on issue: [2162](https://github.com/hackforla/website/issues/2162#issuecomment-915486480) at 2021-09-08 11:51 AM PDT -macho-catt,2021-09-08T19:19:15Z,- macho-catt opened issue: [2242](https://github.com/hackforla/website/issues/2242) at 2021-09-08 12:19 PM PDT -macho-catt,2021-09-08T19:22:31Z,- macho-catt opened issue: [2243](https://github.com/hackforla/website/issues/2243) at 2021-09-08 12:22 PM PDT -macho-catt,2021-09-08T20:23:38Z,- macho-catt commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-915544258) at 2021-09-08 01:23 PM PDT -macho-catt,2021-09-08T20:28:35Z,- macho-catt commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915547404) at 2021-09-08 01:28 PM PDT -macho-catt,2021-09-09T15:34:01Z,- macho-catt submitted pull request review: [2214](https://github.com/hackforla/website/pull/2214#pullrequestreview-750514668) at 2021-09-09 08:34 AM PDT -macho-catt,2021-09-09T15:34:42Z,- macho-catt closed issue by PR 2214: [1911](https://github.com/hackforla/website/issues/1911#event-5279407874) at 2021-09-09 08:34 AM PDT -macho-catt,2021-09-09T16:49:29Z,- macho-catt submitted pull request review: [2230](https://github.com/hackforla/website/pull/2230#pullrequestreview-750595373) at 2021-09-09 09:49 AM PDT -macho-catt,2021-09-09T19:32:51Z,- macho-catt commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-916378607) at 2021-09-09 12:32 PM PDT -macho-catt,2021-09-09T21:37:39Z,- macho-catt commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-916455319) at 2021-09-09 02:37 PM PDT -macho-catt,2021-09-11T04:36:50Z,- macho-catt submitted pull request review: [2224](https://github.com/hackforla/website/pull/2224#pullrequestreview-751888864) at 2021-09-10 09:36 PM PDT -macho-catt,2021-09-11T04:38:09Z,- macho-catt closed issue by PR 2224: [2080](https://github.com/hackforla/website/issues/2080#event-5287192906) at 2021-09-10 09:38 PM PDT -macho-catt,2021-09-12T18:01:11Z,- macho-catt commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-917682119) at 2021-09-12 11:01 AM PDT -macho-catt,2021-09-14T02:28:49Z,- macho-catt submitted pull request review: [2250](https://github.com/hackforla/website/pull/2250#pullrequestreview-753412813) at 2021-09-13 07:28 PM PDT -macho-catt,2021-09-14T02:29:17Z,- macho-catt submitted pull request review: [2250](https://github.com/hackforla/website/pull/2250#pullrequestreview-753413006) at 2021-09-13 07:29 PM PDT -macho-catt,2021-09-14T02:49:08Z,- macho-catt submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-753421531) at 2021-09-13 07:49 PM PDT -macho-catt,2021-09-14T03:01:31Z,- macho-catt submitted pull request review: [2253](https://github.com/hackforla/website/pull/2253#pullrequestreview-753426719) at 2021-09-13 08:01 PM PDT -macho-catt,2021-09-14T03:03:01Z,- macho-catt submitted pull request review: [2254](https://github.com/hackforla/website/pull/2254#pullrequestreview-753427364) at 2021-09-13 08:03 PM PDT -macho-catt,2021-09-14T03:04:15Z,- macho-catt commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-918755975) at 2021-09-13 08:04 PM PDT -macho-catt,2021-09-14T03:05:42Z,- macho-catt closed issue by PR 2253: [2203](https://github.com/hackforla/website/issues/2203#event-5296745891) at 2021-09-13 08:05 PM PDT -macho-catt,2021-09-14T03:18:00Z,- macho-catt commented on issue: [2162](https://github.com/hackforla/website/issues/2162#issuecomment-918763090) at 2021-09-13 08:18 PM PDT -macho-catt,2021-09-14T03:44:58Z,- macho-catt opened issue: [2258](https://github.com/hackforla/website/issues/2258) at 2021-09-13 08:44 PM PDT -macho-catt,2021-09-14T04:03:04Z,- macho-catt closed issue by PR 2254: [1585](https://github.com/hackforla/website/issues/1585#event-5296887567) at 2021-09-13 09:03 PM PDT -macho-catt,2021-09-14T04:35:00Z,- macho-catt commented on pull request: [2259](https://github.com/hackforla/website/pull/2259#issuecomment-918793661) at 2021-09-13 09:35 PM PDT -macho-catt,2021-09-15T04:13:18Z,- macho-catt submitted pull request review: [2261](https://github.com/hackforla/website/pull/2261#pullrequestreview-754645559) at 2021-09-14 09:13 PM PDT -macho-catt,2021-09-15T04:13:25Z,- macho-catt closed issue by PR 2261: [2163](https://github.com/hackforla/website/issues/2163#event-5303310572) at 2021-09-14 09:13 PM PDT -macho-catt,2021-09-15T16:15:55Z,- macho-catt submitted pull request review: [2208](https://github.com/hackforla/website/pull/2208#pullrequestreview-755333852) at 2021-09-15 09:15 AM PDT -macho-catt,2021-09-16T03:07:50Z,- macho-catt opened issue: [2282](https://github.com/hackforla/website/issues/2282) at 2021-09-15 08:07 PM PDT -macho-catt,2021-09-16T03:08:41Z,- macho-catt closed issue as completed: [2282](https://github.com/hackforla/website/issues/2282#event-5309726814) at 2021-09-15 08:08 PM PDT -macho-catt,2021-09-16T03:09:03Z,- macho-catt commented on issue: [2282](https://github.com/hackforla/website/issues/2282#issuecomment-920540412) at 2021-09-15 08:09 PM PDT -macho-catt,2021-09-16T18:50:43Z,- macho-catt submitted pull request review: [2260](https://github.com/hackforla/website/pull/2260#pullrequestreview-756661883) at 2021-09-16 11:50 AM PDT -macho-catt,2021-09-16T18:50:58Z,- macho-catt closed issue by PR 2260: [2153](https://github.com/hackforla/website/issues/2153#event-5314481554) at 2021-09-16 11:50 AM PDT -macho-catt,2021-09-16T18:56:29Z,- macho-catt commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-921160892) at 2021-09-16 11:56 AM PDT -macho-catt,2021-09-16T19:06:51Z,- macho-catt commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-921167792) at 2021-09-16 12:06 PM PDT -macho-catt,2021-09-19T03:20:03Z,- macho-catt submitted pull request review: [2262](https://github.com/hackforla/website/pull/2262#pullrequestreview-758107344) at 2021-09-18 08:20 PM PDT -macho-catt,2021-09-19T03:20:17Z,- macho-catt closed issue by PR 2262: [2047](https://github.com/hackforla/website/issues/2047#event-5324109238) at 2021-09-18 08:20 PM PDT -macho-catt,2021-09-21T03:16:04Z,- macho-catt submitted pull request review: [2285](https://github.com/hackforla/website/pull/2285#pullrequestreview-759267542) at 2021-09-20 08:16 PM PDT -macho-catt,2021-09-21T03:16:13Z,- macho-catt closed issue by PR 2285: [2248](https://github.com/hackforla/website/issues/2248#event-5332354543) at 2021-09-20 08:16 PM PDT -macho-catt,2021-09-21T17:01:09Z,- macho-catt commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-924178692) at 2021-09-21 10:01 AM PDT -macho-catt,2021-09-22T19:31:49Z,- macho-catt assigned to issue: [2227](https://github.com/hackforla/website/issues/2227#issuecomment-913910686) at 2021-09-22 12:31 PM PDT -macho-catt,2021-09-22T19:32:58Z,- macho-catt commented on issue: [2301](https://github.com/hackforla/website/issues/2301#issuecomment-925260191) at 2021-09-22 12:32 PM PDT -macho-catt,2021-09-22T19:33:21Z,- macho-catt commented on issue: [2227](https://github.com/hackforla/website/issues/2227#issuecomment-925260680) at 2021-09-22 12:33 PM PDT -macho-catt,2021-09-22T19:49:56Z,- macho-catt opened pull request: [2302](https://github.com/hackforla/website/pull/2302) at 2021-09-22 12:49 PM PDT -macho-catt,2021-09-22T19:51:27Z,- macho-catt commented on pull request: [2302](https://github.com/hackforla/website/pull/2302#issuecomment-925278689) at 2021-09-22 12:51 PM PDT -macho-catt,2021-09-22T23:26:50Z,- macho-catt pull request merged: [2302](https://github.com/hackforla/website/pull/2302#event-5346492437) at 2021-09-22 04:26 PM PDT -macho-catt,2021-09-23T00:40:25Z,- macho-catt commented on issue: [2301](https://github.com/hackforla/website/issues/2301#issuecomment-925430019) at 2021-09-22 05:40 PM PDT -macho-catt,2021-09-23T00:47:46Z,- macho-catt opened issue: [2303](https://github.com/hackforla/website/issues/2303) at 2021-09-22 05:47 PM PDT -macho-catt,2021-09-23T00:48:21Z,- macho-catt commented on issue: [2303](https://github.com/hackforla/website/issues/2303#issuecomment-925432311) at 2021-09-22 05:48 PM PDT -macho-catt,2021-09-23T00:48:21Z,- macho-catt closed issue as completed: [2303](https://github.com/hackforla/website/issues/2303#event-5346720040) at 2021-09-22 05:48 PM PDT -macho-catt,2021-09-23T02:05:24Z,- macho-catt submitted pull request review: [1957](https://github.com/hackforla/website/pull/1957#pullrequestreview-761540247) at 2021-09-22 07:05 PM PDT -macho-catt,2021-09-23T02:53:01Z,- macho-catt submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-761553508) at 2021-09-22 07:53 PM PDT -macho-catt,2021-09-23T02:54:24Z,- macho-catt submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-761553846) at 2021-09-22 07:54 PM PDT -macho-catt,2021-09-23T02:55:33Z,- macho-catt submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-761554220) at 2021-09-22 07:55 PM PDT -macho-catt,2021-09-23T02:59:30Z,- macho-catt submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-761555309) at 2021-09-22 07:59 PM PDT -macho-catt,2021-09-23T03:00:35Z,- macho-catt submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-761555601) at 2021-09-22 08:00 PM PDT -macho-catt,2021-09-23T03:33:42Z,- macho-catt submitted pull request review: [2300](https://github.com/hackforla/website/pull/2300#pullrequestreview-761564983) at 2021-09-22 08:33 PM PDT -macho-catt,2021-09-23T03:34:12Z,- macho-catt submitted pull request review: [2300](https://github.com/hackforla/website/pull/2300#pullrequestreview-761565123) at 2021-09-22 08:34 PM PDT -macho-catt,2021-09-23T03:34:51Z,- macho-catt submitted pull request review: [2300](https://github.com/hackforla/website/pull/2300#pullrequestreview-761565306) at 2021-09-22 08:34 PM PDT -macho-catt,2021-09-23T15:39:36Z,- macho-catt closed issue by PR 1957: [1441](https://github.com/hackforla/website/issues/1441#event-5350790835) at 2021-09-23 08:39 AM PDT -macho-catt,2021-09-24T04:06:40Z,- macho-catt submitted pull request review: [2300](https://github.com/hackforla/website/pull/2300#pullrequestreview-762674793) at 2021-09-23 09:06 PM PDT -macho-catt,2021-09-24T04:06:44Z,- macho-catt closed issue by PR 2300: [2095](https://github.com/hackforla/website/issues/2095#event-5353649372) at 2021-09-23 09:06 PM PDT -macho-catt,2021-09-24T18:00:39Z,- macho-catt commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-926821057) at 2021-09-24 11:00 AM PDT -macho-catt,2021-09-24T18:51:57Z,- macho-catt opened issue: [2306](https://github.com/hackforla/website/issues/2306) at 2021-09-24 11:51 AM PDT -macho-catt,2021-09-24T22:11:11Z,- macho-catt commented on issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-926945747) at 2021-09-24 03:11 PM PDT -macho-catt,2021-09-24T22:13:19Z,- macho-catt commented on issue: [2270](https://github.com/hackforla/website/issues/2270#issuecomment-926946542) at 2021-09-24 03:13 PM PDT -macho-catt,2021-09-24T22:14:28Z,- macho-catt commented on issue: [2272](https://github.com/hackforla/website/issues/2272#issuecomment-926946987) at 2021-09-24 03:14 PM PDT -macho-catt,2021-09-24T22:15:00Z,- macho-catt commented on issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-926947191) at 2021-09-24 03:15 PM PDT -macho-catt,2021-09-24T22:15:52Z,- macho-catt commented on issue: [2274](https://github.com/hackforla/website/issues/2274#issuecomment-926947530) at 2021-09-24 03:15 PM PDT -macho-catt,2021-09-24T22:17:26Z,- macho-catt commented on issue: [2275](https://github.com/hackforla/website/issues/2275#issuecomment-926948061) at 2021-09-24 03:17 PM PDT -macho-catt,2021-09-24T22:17:50Z,- macho-catt commented on issue: [2276](https://github.com/hackforla/website/issues/2276#issuecomment-926948199) at 2021-09-24 03:17 PM PDT -macho-catt,2021-09-24T22:18:15Z,- macho-catt commented on issue: [2277](https://github.com/hackforla/website/issues/2277#issuecomment-926948361) at 2021-09-24 03:18 PM PDT -macho-catt,2021-09-24T22:18:52Z,- macho-catt commented on issue: [2278](https://github.com/hackforla/website/issues/2278#issuecomment-926948584) at 2021-09-24 03:18 PM PDT -macho-catt,2021-09-24T22:19:34Z,- macho-catt commented on issue: [2279](https://github.com/hackforla/website/issues/2279#issuecomment-926948788) at 2021-09-24 03:19 PM PDT -macho-catt,2021-09-24T22:20:11Z,- macho-catt commented on issue: [2280](https://github.com/hackforla/website/issues/2280#issuecomment-926948994) at 2021-09-24 03:20 PM PDT -macho-catt,2021-09-24T22:32:44Z,- macho-catt submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-763514221) at 2021-09-24 03:32 PM PDT -macho-catt,2021-09-24T22:55:29Z,- macho-catt submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-763521398) at 2021-09-24 03:55 PM PDT -macho-catt,2021-09-24T22:55:36Z,- macho-catt submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-763521426) at 2021-09-24 03:55 PM PDT -macho-catt,2021-09-24T22:55:55Z,- macho-catt submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-763521523) at 2021-09-24 03:55 PM PDT -macho-catt,2021-09-24T23:05:16Z,- macho-catt commented on pull request: [2259](https://github.com/hackforla/website/pull/2259#issuecomment-926962132) at 2021-09-24 04:05 PM PDT -macho-catt,2021-09-25T01:24:05Z,- macho-catt submitted pull request review: [2250](https://github.com/hackforla/website/pull/2250#pullrequestreview-763548014) at 2021-09-24 06:24 PM PDT -macho-catt,2021-09-25T01:24:10Z,- macho-catt closed issue by PR 2250: [2117](https://github.com/hackforla/website/issues/2117#event-5358930752) at 2021-09-24 06:24 PM PDT -macho-catt,2021-09-26T16:25:56Z,- macho-catt commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-927332428) at 2021-09-26 09:25 AM PDT -macho-catt,2021-09-26T16:39:41Z,- macho-catt commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-927334298) at 2021-09-26 09:39 AM PDT -macho-catt,2021-09-26T19:38:51Z,- macho-catt commented on issue: [2275](https://github.com/hackforla/website/issues/2275#issuecomment-927359033) at 2021-09-26 12:38 PM PDT -macho-catt,2021-09-26T19:41:23Z,- macho-catt submitted pull request review: [2305](https://github.com/hackforla/website/pull/2305#pullrequestreview-763726416) at 2021-09-26 12:41 PM PDT -macho-catt,2021-09-26T20:57:30Z,- macho-catt submitted pull request review: [2259](https://github.com/hackforla/website/pull/2259#pullrequestreview-763732481) at 2021-09-26 01:57 PM PDT -macho-catt,2021-09-26T21:05:59Z,- macho-catt assigned to issue: [2258](https://github.com/hackforla/website/issues/2258#issuecomment-918773258) at 2021-09-26 02:05 PM PDT -macho-catt,2021-09-26T21:06:25Z,- macho-catt commented on issue: [2258](https://github.com/hackforla/website/issues/2258#issuecomment-927370742) at 2021-09-26 02:06 PM PDT -macho-catt,2021-09-26T21:35:32Z,- macho-catt opened pull request: [2310](https://github.com/hackforla/website/pull/2310) at 2021-09-26 02:35 PM PDT -macho-catt,2021-09-28T05:12:22Z,- macho-catt submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-764974652) at 2021-09-27 10:12 PM PDT -macho-catt,2021-09-28T05:12:49Z,- macho-catt closed issue by PR 2252: [2206](https://github.com/hackforla/website/issues/2206#event-5371033637) at 2021-09-27 10:12 PM PDT -macho-catt,2021-09-28T05:27:39Z,- macho-catt pull request merged: [2310](https://github.com/hackforla/website/pull/2310#event-5371118301) at 2021-09-27 10:27 PM PDT -macho-catt,2021-09-28T15:29:58Z,- macho-catt reopened issue: [2258](https://github.com/hackforla/website/issues/2258#event-5371118280) at 2021-09-28 08:29 AM PDT -macho-catt,2021-09-28T15:30:03Z,- macho-catt closed issue by PR 2310: [2258](https://github.com/hackforla/website/issues/2258#event-5374790721) at 2021-09-28 08:30 AM PDT -macho-catt,2021-09-28T15:31:16Z,- macho-catt reopened issue: [2206](https://github.com/hackforla/website/issues/2206#event-5371033637) at 2021-09-28 08:31 AM PDT -macho-catt,2021-09-28T15:31:19Z,- macho-catt closed issue by PR 2252: [2206](https://github.com/hackforla/website/issues/2206#event-5374798804) at 2021-09-28 08:31 AM PDT -macho-catt,2021-09-29T15:44:21Z,- macho-catt commented on pull request: [2314](https://github.com/hackforla/website/pull/2314#issuecomment-930299899) at 2021-09-29 08:44 AM PDT -macho-catt,2021-09-29T15:47:27Z,- macho-catt closed issue by PR 2259: [2076](https://github.com/hackforla/website/issues/2076#event-5381799878) at 2021-09-29 08:47 AM PDT -macho-catt,2021-09-29T17:11:44Z,- macho-catt submitted pull request review: [2308](https://github.com/hackforla/website/pull/2308#pullrequestreview-766976296) at 2021-09-29 10:11 AM PDT -macho-catt,2021-09-29T17:11:49Z,- macho-catt closed issue by PR 2308: [2268](https://github.com/hackforla/website/issues/2268#event-5382299932) at 2021-09-29 10:11 AM PDT -macho-catt,2021-09-30T04:15:54Z,- macho-catt commented on issue: [2318](https://github.com/hackforla/website/issues/2318#issuecomment-930767519) at 2021-09-29 09:15 PM PDT -macho-catt,2021-09-30T04:15:54Z,- macho-catt closed issue as completed: [2318](https://github.com/hackforla/website/issues/2318#event-5384845132) at 2021-09-29 09:15 PM PDT -macho-catt,2021-09-30T04:28:24Z,- macho-catt commented on issue: [2319](https://github.com/hackforla/website/issues/2319#issuecomment-930772357) at 2021-09-29 09:28 PM PDT -macho-catt,2021-09-30T04:28:24Z,- macho-catt closed issue as completed: [2319](https://github.com/hackforla/website/issues/2319#event-5384880097) at 2021-09-29 09:28 PM PDT -macho-catt,2021-09-30T04:31:14Z,- macho-catt commented on pull request: [2320](https://github.com/hackforla/website/pull/2320#issuecomment-930773400) at 2021-09-29 09:31 PM PDT -macho-catt,2021-09-30T04:56:54Z,- macho-catt commented on pull request: [2321](https://github.com/hackforla/website/pull/2321#issuecomment-930782767) at 2021-09-29 09:56 PM PDT -macho-catt,2021-09-30T05:14:39Z,- macho-catt commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-930790277) at 2021-09-29 10:14 PM PDT -macho-catt,2021-09-30T05:16:06Z,- macho-catt commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-930790966) at 2021-09-29 10:16 PM PDT -macho-catt,2021-10-01T01:46:38Z,- macho-catt commented on pull request: [2322](https://github.com/hackforla/website/pull/2322#issuecomment-931828461) at 2021-09-30 06:46 PM PDT -macho-catt,2021-10-01T21:43:55Z,- macho-catt submitted pull request review: [2305](https://github.com/hackforla/website/pull/2305#pullrequestreview-769395555) at 2021-10-01 02:43 PM PDT -macho-catt,2021-10-01T21:44:09Z,- macho-catt closed issue by PR 2305: [2275](https://github.com/hackforla/website/issues/2275#event-5396933702) at 2021-10-01 02:44 PM PDT -macho-catt,2021-10-03T15:57:10Z,- macho-catt commented on pull request: [2323](https://github.com/hackforla/website/pull/2323#issuecomment-932978091) at 2021-10-03 08:57 AM PDT -macho-catt,2021-10-03T16:00:24Z,- macho-catt commented on issue: [2326](https://github.com/hackforla/website/issues/2326#issuecomment-932978657) at 2021-10-03 09:00 AM PDT -macho-catt,2021-10-03T16:00:24Z,- macho-catt closed issue as completed: [2326](https://github.com/hackforla/website/issues/2326#event-5400001793) at 2021-10-03 09:00 AM PDT -macho-catt,2021-10-03T16:12:20Z,- macho-catt closed issue as completed: [2327](https://github.com/hackforla/website/issues/2327#event-5400018581) at 2021-10-03 09:12 AM PDT -macho-catt,2021-10-03T16:30:45Z,- macho-catt closed issue as completed: [2329](https://github.com/hackforla/website/issues/2329#event-5400043155) at 2021-10-03 09:30 AM PDT -macho-catt,2021-10-03T16:37:08Z,- macho-catt closed issue as completed: [2330](https://github.com/hackforla/website/issues/2330#event-5400051480) at 2021-10-03 09:37 AM PDT -macho-catt,2021-10-03T16:39:57Z,- macho-catt commented on issue: [2331](https://github.com/hackforla/website/issues/2331#issuecomment-932984977) at 2021-10-03 09:39 AM PDT -macho-catt,2021-10-03T16:39:57Z,- macho-catt closed issue as completed: [2331](https://github.com/hackforla/website/issues/2331#event-5400055142) at 2021-10-03 09:39 AM PDT -macho-catt,2021-10-04T04:51:18Z,- macho-catt commented on pull request: [2315](https://github.com/hackforla/website/pull/2315#issuecomment-933141061) at 2021-10-03 09:51 PM PDT -macho-catt,2021-10-04T04:51:25Z,- macho-catt submitted pull request review: [2315](https://github.com/hackforla/website/pull/2315#pullrequestreview-769862573) at 2021-10-03 09:51 PM PDT -macho-catt,2021-10-04T04:51:37Z,- macho-catt closed issue by PR 2315: [2279](https://github.com/hackforla/website/issues/2279#event-5401317563) at 2021-10-03 09:51 PM PDT -macho-catt,2021-10-04T06:59:24Z,- macho-catt opened issue: [2332](https://github.com/hackforla/website/issues/2332) at 2021-10-03 11:59 PM PDT -macho-catt,2021-10-04T07:00:12Z,- macho-catt assigned to issue: [2332](https://github.com/hackforla/website/issues/2332#issuecomment-933199443) at 2021-10-04 12:00 AM PDT -macho-catt,2021-10-04T07:04:46Z,- macho-catt opened pull request: [2333](https://github.com/hackforla/website/pull/2333) at 2021-10-04 12:04 AM PDT -macho-catt,2021-10-04T07:06:08Z,- macho-catt closed issue by PR 2333: [2332](https://github.com/hackforla/website/issues/2332#event-5401772036) at 2021-10-04 12:06 AM PDT -macho-catt,2021-10-04T07:06:08Z,- macho-catt pull request merged: [2333](https://github.com/hackforla/website/pull/2333#event-5401772051) at 2021-10-04 12:06 AM PDT -macho-catt,2021-10-04T07:09:35Z,- macho-catt commented on issue: [2274](https://github.com/hackforla/website/issues/2274#issuecomment-933205863) at 2021-10-04 12:09 AM PDT -macho-catt,2021-10-04T07:09:35Z,- macho-catt closed issue as completed: [2274](https://github.com/hackforla/website/issues/2274#event-5401789871) at 2021-10-04 12:09 AM PDT -macho-catt,2021-10-05T16:03:43Z,- macho-catt assigned to issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-933054519) at 2021-10-05 09:03 AM PDT -macho-catt,2021-10-05T16:54:37Z,- macho-catt commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-934587987) at 2021-10-05 09:54 AM PDT -macho-catt,2021-10-05T18:05:41Z,- macho-catt commented on issue: [2335](https://github.com/hackforla/website/issues/2335#issuecomment-934642831) at 2021-10-05 11:05 AM PDT -macho-catt,2021-10-05T18:05:41Z,- macho-catt closed issue as completed: [2335](https://github.com/hackforla/website/issues/2335#event-5412523223) at 2021-10-05 11:05 AM PDT -macho-catt,2021-10-05T18:07:09Z,- macho-catt commented on issue: [2161](https://github.com/hackforla/website/issues/2161#issuecomment-934643970) at 2021-10-05 11:07 AM PDT -macho-catt,2021-10-05T18:09:01Z,- macho-catt commented on issue: [2160](https://github.com/hackforla/website/issues/2160#issuecomment-934645455) at 2021-10-05 11:09 AM PDT -macho-catt,2021-10-05T18:09:14Z,- macho-catt assigned to issue: [2160](https://github.com/hackforla/website/issues/2160#issuecomment-934645455) at 2021-10-05 11:09 AM PDT -macho-catt,2021-10-05T18:27:45Z,- macho-catt commented on issue: [2337](https://github.com/hackforla/website/issues/2337#issuecomment-934659573) at 2021-10-05 11:27 AM PDT -macho-catt,2021-10-05T18:27:45Z,- macho-catt closed issue as completed: [2337](https://github.com/hackforla/website/issues/2337#event-5412639798) at 2021-10-05 11:27 AM PDT -macho-catt,2021-10-05T18:32:06Z,- macho-catt commented on issue: [2336](https://github.com/hackforla/website/issues/2336#issuecomment-934663002) at 2021-10-05 11:32 AM PDT -macho-catt,2021-10-05T18:35:08Z,- macho-catt commented on pull request: [2325](https://github.com/hackforla/website/pull/2325#issuecomment-934665542) at 2021-10-05 11:35 AM PDT -macho-catt,2021-10-05T20:40:59Z,- macho-catt commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-934799512) at 2021-10-05 01:40 PM PDT -macho-catt,2021-10-05T22:56:42Z,- macho-catt commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-934984109) at 2021-10-05 03:56 PM PDT -macho-catt,2021-10-06T19:57:32Z,- macho-catt commented on issue: [2336](https://github.com/hackforla/website/issues/2336#issuecomment-937018196) at 2021-10-06 12:57 PM PDT -macho-catt,2021-10-06T21:45:38Z,- macho-catt opened issue: [2341](https://github.com/hackforla/website/issues/2341) at 2021-10-06 02:45 PM PDT -macho-catt,2021-10-06T21:54:34Z,- macho-catt opened issue: [2342](https://github.com/hackforla/website/issues/2342) at 2021-10-06 02:54 PM PDT -macho-catt,2021-10-07T03:22:42Z,- macho-catt submitted pull request review: [2343](https://github.com/hackforla/website/pull/2343#pullrequestreview-773403731) at 2021-10-06 08:22 PM PDT -macho-catt,2021-10-07T23:11:50Z,- macho-catt opened issue: [2344](https://github.com/hackforla/website/issues/2344) at 2021-10-07 04:11 PM PDT -macho-catt,2021-10-07T23:17:37Z,- macho-catt opened issue: [2345](https://github.com/hackforla/website/issues/2345) at 2021-10-07 04:17 PM PDT -macho-catt,2021-10-07T23:20:33Z,- macho-catt opened issue: [2346](https://github.com/hackforla/website/issues/2346) at 2021-10-07 04:20 PM PDT -macho-catt,2021-10-07T23:35:44Z,- macho-catt opened issue: [2347](https://github.com/hackforla/website/issues/2347) at 2021-10-07 04:35 PM PDT -macho-catt,2021-10-07T23:37:21Z,- macho-catt opened issue: [2348](https://github.com/hackforla/website/issues/2348) at 2021-10-07 04:37 PM PDT -macho-catt,2021-10-07T23:48:25Z,- macho-catt opened issue: [2349](https://github.com/hackforla/website/issues/2349) at 2021-10-07 04:48 PM PDT -macho-catt,2021-10-08T16:45:12Z,- macho-catt commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-938829539) at 2021-10-08 09:45 AM PDT -macho-catt,2021-10-08T16:45:36Z,- macho-catt closed issue as completed: [1980](https://github.com/hackforla/website/issues/1980#event-5435844364) at 2021-10-08 09:45 AM PDT -macho-catt,2021-10-08T16:46:33Z,- macho-catt commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-938832432) at 2021-10-08 09:46 AM PDT -macho-catt,2021-10-08T16:46:33Z,- macho-catt closed issue as completed: [2145](https://github.com/hackforla/website/issues/2145#event-5435848521) at 2021-10-08 09:46 AM PDT -macho-catt,2021-10-08T16:47:01Z,- macho-catt assigned to issue: [2146](https://github.com/hackforla/website/issues/2146#issuecomment-902859968) at 2021-10-08 09:47 AM PDT -macho-catt,2021-10-09T18:02:58Z,- macho-catt commented on issue: [2345](https://github.com/hackforla/website/issues/2345#issuecomment-939337477) at 2021-10-09 11:02 AM PDT -macho-catt,2021-10-09T18:04:48Z,- macho-catt commented on pull request: [2351](https://github.com/hackforla/website/pull/2351#issuecomment-939337775) at 2021-10-09 11:04 AM PDT -macho-catt,2021-10-09T18:27:43Z,- macho-catt commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-939341444) at 2021-10-09 11:27 AM PDT -macho-catt,2021-10-09T18:34:25Z,- macho-catt commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-939342366) at 2021-10-09 11:34 AM PDT -macho-catt,2021-10-10T04:58:06Z,- macho-catt opened issue: [2353](https://github.com/hackforla/website/issues/2353) at 2021-10-09 09:58 PM PDT -macho-catt,2021-10-10T05:15:53Z,- macho-catt opened issue: [2354](https://github.com/hackforla/website/issues/2354) at 2021-10-09 10:15 PM PDT -macho-catt,2021-10-10T21:53:06Z,- macho-catt commented on issue: [2160](https://github.com/hackforla/website/issues/2160#issuecomment-939558715) at 2021-10-10 02:53 PM PDT -macho-catt,2021-10-10T21:53:06Z,- macho-catt closed issue as completed: [2160](https://github.com/hackforla/website/issues/2160#event-5439913546) at 2021-10-10 02:53 PM PDT -macho-catt,2021-10-10T21:55:47Z,- macho-catt commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-939559026) at 2021-10-10 02:55 PM PDT -macho-catt,2021-10-12T15:36:01Z,- macho-catt submitted pull request review: [2365](https://github.com/hackforla/website/pull/2365#pullrequestreview-777552320) at 2021-10-12 08:36 AM PDT -macho-catt,2021-10-12T23:00:58Z,- macho-catt assigned to issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-940370994) at 2021-10-12 04:00 PM PDT -macho-catt,2021-10-13T01:55:45Z,- macho-catt assigned to issue: [2161](https://github.com/hackforla/website/issues/2161#issuecomment-934643970) at 2021-10-12 06:55 PM PDT -macho-catt,2021-10-13T01:56:08Z,- macho-catt commented on issue: [2161](https://github.com/hackforla/website/issues/2161#issuecomment-941838340) at 2021-10-12 06:56 PM PDT -macho-catt,2021-10-13T01:56:08Z,- macho-catt closed issue as completed: [2161](https://github.com/hackforla/website/issues/2161#event-5453874361) at 2021-10-12 06:56 PM PDT -macho-catt,2021-10-13T02:17:52Z,- macho-catt commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941852665) at 2021-10-12 07:17 PM PDT -macho-catt,2021-10-14T03:09:54Z,- macho-catt submitted pull request review: [2365](https://github.com/hackforla/website/pull/2365#pullrequestreview-779269169) at 2021-10-13 08:09 PM PDT -macho-catt,2021-10-14T03:10:00Z,- macho-catt closed issue by PR 2365: [2255](https://github.com/hackforla/website/issues/2255#event-5460976927) at 2021-10-13 08:10 PM PDT -macho-catt,2021-10-14T03:13:06Z,- macho-catt submitted pull request review: [2324](https://github.com/hackforla/website/pull/2324#pullrequestreview-779270359) at 2021-10-13 08:13 PM PDT -macho-catt,2021-10-14T03:13:12Z,- macho-catt closed issue by PR 2324: [2180](https://github.com/hackforla/website/issues/2180#event-5460985854) at 2021-10-13 08:13 PM PDT -macho-catt,2021-10-14T03:21:08Z,- macho-catt opened pull request: [2367](https://github.com/hackforla/website/pull/2367) at 2021-10-13 08:21 PM PDT -macho-catt,2021-10-14T03:21:23Z,- macho-catt commented on pull request: [2367](https://github.com/hackforla/website/pull/2367#issuecomment-942910796) at 2021-10-13 08:21 PM PDT -macho-catt,2021-10-14T03:21:28Z,- macho-catt pull request merged: [2367](https://github.com/hackforla/website/pull/2367#event-5461007917) at 2021-10-13 08:21 PM PDT -macho-catt,2021-10-14T03:22:13Z,- macho-catt reopened issue: [2180](https://github.com/hackforla/website/issues/2180#event-5460985854) at 2021-10-13 08:22 PM PDT -macho-catt,2021-10-14T03:39:03Z,- macho-catt commented on pull request: [2324](https://github.com/hackforla/website/pull/2324#issuecomment-942916988) at 2021-10-13 08:39 PM PDT -macho-catt,2021-10-17T22:23:24Z,- macho-catt commented on issue: [2146](https://github.com/hackforla/website/issues/2146#issuecomment-945205241) at 2021-10-17 03:23 PM PDT -macho-catt,2021-10-17T22:24:51Z,- macho-catt commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-945205461) at 2021-10-17 03:24 PM PDT -macho-catt,2021-10-17T22:25:14Z,- macho-catt commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-945205531) at 2021-10-17 03:25 PM PDT -macho-catt,2021-10-17T22:27:01Z,- macho-catt commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-945205826) at 2021-10-17 03:27 PM PDT -macho-catt,2021-10-17T23:15:34Z,- macho-catt commented on issue: [2368](https://github.com/hackforla/website/issues/2368#issuecomment-945213013) at 2021-10-17 04:15 PM PDT -macho-catt,2021-10-19T22:10:31Z,- macho-catt commented on issue: [2368](https://github.com/hackforla/website/issues/2368#issuecomment-947143862) at 2021-10-19 03:10 PM PDT -macho-catt,2021-10-19T23:02:46Z,- macho-catt commented on pull request: [2350](https://github.com/hackforla/website/pull/2350#issuecomment-947168358) at 2021-10-19 04:02 PM PDT -macho-catt,2021-10-20T05:54:10Z,- macho-catt submitted pull request review: [2377](https://github.com/hackforla/website/pull/2377#pullrequestreview-784025965) at 2021-10-19 10:54 PM PDT -macho-catt,2021-10-20T05:54:19Z,- macho-catt closed issue by PR 2377: [2162](https://github.com/hackforla/website/issues/2162#event-5489448860) at 2021-10-19 10:54 PM PDT -macho-catt,2021-10-20T06:17:37Z,- macho-catt opened pull request: [2380](https://github.com/hackforla/website/pull/2380) at 2021-10-19 11:17 PM PDT -macho-catt,2021-10-20T06:18:57Z,- macho-catt commented on pull request: [2380](https://github.com/hackforla/website/pull/2380#issuecomment-947362981) at 2021-10-19 11:18 PM PDT -macho-catt,2021-10-20T06:20:44Z,- macho-catt commented on pull request: [2379](https://github.com/hackforla/website/pull/2379#issuecomment-947363985) at 2021-10-19 11:20 PM PDT -macho-catt,2021-10-20T15:31:54Z,- macho-catt assigned to issue: [2345](https://github.com/hackforla/website/issues/2345#issuecomment-939337477) at 2021-10-20 08:31 AM PDT -macho-catt,2021-10-20T15:33:57Z,- macho-catt submitted pull request review: [2378](https://github.com/hackforla/website/pull/2378#pullrequestreview-784664935) at 2021-10-20 08:33 AM PDT -macho-catt,2021-10-20T15:34:55Z,- macho-catt closed issue by PR 2378: [2345](https://github.com/hackforla/website/issues/2345#event-5492833180) at 2021-10-20 08:34 AM PDT -macho-catt,2021-10-20T15:49:11Z,- macho-catt assigned to issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-945205826) at 2021-10-20 08:49 AM PDT -macho-catt,2021-10-20T23:52:21Z,- macho-catt opened issue: [2385](https://github.com/hackforla/website/issues/2385) at 2021-10-20 04:52 PM PDT -macho-catt,2021-10-21T15:26:38Z,- macho-catt commented on pull request: [2388](https://github.com/hackforla/website/pull/2388#issuecomment-948727925) at 2021-10-21 08:26 AM PDT -macho-catt,2021-10-21T15:30:53Z,- macho-catt commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-948731158) at 2021-10-21 08:30 AM PDT -macho-catt,2021-10-22T23:08:22Z,- macho-catt submitted pull request review: [2387](https://github.com/hackforla/website/pull/2387#pullrequestreview-787322105) at 2021-10-22 04:08 PM PDT -macho-catt,2021-10-22T23:08:27Z,- macho-catt closed issue by PR 2387: [1565](https://github.com/hackforla/website/issues/1565#event-5507466890) at 2021-10-22 04:08 PM PDT -macho-catt,2021-10-22T23:17:43Z,- macho-catt commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-950009565) at 2021-10-22 04:17 PM PDT -macho-catt,2021-10-23T01:01:42Z,- macho-catt commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-950031476) at 2021-10-22 06:01 PM PDT -macho-catt,2021-10-23T01:01:43Z,- macho-catt reopened pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-950031476) at 2021-10-22 06:01 PM PDT -macho-catt,2021-10-23T04:01:32Z,- macho-catt submitted pull request review: [2381](https://github.com/hackforla/website/pull/2381#pullrequestreview-787356503) at 2021-10-22 09:01 PM PDT -macho-catt,2021-10-23T04:01:42Z,- macho-catt closed issue by PR 2381: [2347](https://github.com/hackforla/website/issues/2347#event-5507790616) at 2021-10-22 09:01 PM PDT -macho-catt,2021-10-25T02:22:17Z,- macho-catt opened issue: [2395](https://github.com/hackforla/website/issues/2395) at 2021-10-24 07:22 PM PDT -macho-catt,2021-10-25T22:19:19Z,- macho-catt submitted pull request review: [2375](https://github.com/hackforla/website/pull/2375#pullrequestreview-788671608) at 2021-10-25 03:19 PM PDT -macho-catt,2021-10-26T16:48:13Z,- macho-catt opened issue: [2400](https://github.com/hackforla/website/issues/2400) at 2021-10-26 09:48 AM PDT -macho-catt,2021-10-26T22:56:38Z,- macho-catt commented on pull request: [2380](https://github.com/hackforla/website/pull/2380#issuecomment-952389874) at 2021-10-26 03:56 PM PDT -macho-catt,2021-10-26T22:56:47Z,- macho-catt closed issue by PR 2380: [2146](https://github.com/hackforla/website/issues/2146#event-5523797185) at 2021-10-26 03:56 PM PDT -macho-catt,2021-10-26T22:56:47Z,- macho-catt pull request merged: [2380](https://github.com/hackforla/website/pull/2380#event-5523797186) at 2021-10-26 03:56 PM PDT -macho-catt,2021-10-27T02:33:10Z,- macho-catt submitted pull request review: [2394](https://github.com/hackforla/website/pull/2394#pullrequestreview-790088968) at 2021-10-26 07:33 PM PDT -macho-catt,2021-10-27T02:33:45Z,- macho-catt closed issue by PR 2394: [2048](https://github.com/hackforla/website/issues/2048#event-5524395734) at 2021-10-26 07:33 PM PDT -macho-catt,2021-10-27T03:42:35Z,- macho-catt commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-952510403) at 2021-10-26 08:42 PM PDT -macho-catt,2021-10-29T17:36:12Z,- macho-catt assigned to issue: [2407](https://github.com/hackforla/website/issues/2407) at 2021-10-29 10:36 AM PDT -macho-catt,2021-10-29T22:28:11Z,- macho-catt commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-955082104) at 2021-10-29 03:28 PM PDT -macho-catt,2021-10-29T22:47:33Z,- macho-catt opened issue: [2408](https://github.com/hackforla/website/issues/2408) at 2021-10-29 03:47 PM PDT -macho-catt,2021-10-29T23:39:28Z,- macho-catt opened issue: [2409](https://github.com/hackforla/website/issues/2409) at 2021-10-29 04:39 PM PDT -macho-catt,2021-11-01T16:33:02Z,- macho-catt assigned to issue: [1987](https://github.com/hackforla/website/issues/1987#event-5549987249) at 2021-11-01 09:33 AM PDT -macho-catt,2021-11-01T16:47:09Z,- macho-catt assigned to issue: [2289](https://github.com/hackforla/website/issues/2289#event-5550134069) at 2021-11-01 09:47 AM PDT -macho-catt,2021-11-01T17:31:05Z,- macho-catt assigned to issue: [2364](https://github.com/hackforla/website/issues/2364#event-5550396977) at 2021-11-01 10:31 AM PDT -macho-catt,2021-11-01T18:01:50Z,- macho-catt assigned to issue: [2386](https://github.com/hackforla/website/issues/2386#event-5550564018) at 2021-11-01 11:01 AM PDT -macho-catt,2021-11-01T19:41:44Z,- macho-catt assigned to issue: [2232](https://github.com/hackforla/website/issues/2232#event-5551058529) at 2021-11-01 12:41 PM PDT -macho-catt,2021-11-02T15:40:25Z,- macho-catt commented on issue: [2422](https://github.com/hackforla/website/issues/2422#issuecomment-957849494) at 2021-11-02 08:40 AM PDT -macho-catt,2021-11-02T15:41:22Z,- macho-catt assigned to issue: [2353](https://github.com/hackforla/website/issues/2353#issuecomment-939407233) at 2021-11-02 08:41 AM PDT -macho-catt,2021-11-02T15:41:29Z,- macho-catt commented on issue: [2353](https://github.com/hackforla/website/issues/2353#issuecomment-957851664) at 2021-11-02 08:41 AM PDT -macho-catt,2021-11-02T15:41:29Z,- macho-catt closed issue as completed: [2353](https://github.com/hackforla/website/issues/2353#event-5556245831) at 2021-11-02 08:41 AM PDT -macho-catt,2021-11-02T17:16:26Z,- macho-catt commented on issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-957960907) at 2021-11-02 10:16 AM PDT -macho-catt,2021-11-02T17:50:39Z,- macho-catt opened issue: [2423](https://github.com/hackforla/website/issues/2423) at 2021-11-02 10:50 AM PDT -macho-catt,2021-11-02T17:55:02Z,- macho-catt opened issue: [2424](https://github.com/hackforla/website/issues/2424) at 2021-11-02 10:55 AM PDT -macho-catt,2021-11-02T17:58:23Z,- macho-catt opened issue: [2425](https://github.com/hackforla/website/issues/2425) at 2021-11-02 10:58 AM PDT -macho-catt,2021-11-02T18:21:30Z,- macho-catt opened issue: [2426](https://github.com/hackforla/website/issues/2426) at 2021-11-02 11:21 AM PDT -macho-catt,2021-11-02T18:23:26Z,- macho-catt opened issue: [2427](https://github.com/hackforla/website/issues/2427) at 2021-11-02 11:23 AM PDT -macho-catt,2021-11-02T18:24:44Z,- macho-catt opened issue: [2428](https://github.com/hackforla/website/issues/2428) at 2021-11-02 11:24 AM PDT -macho-catt,2021-11-02T18:25:53Z,- macho-catt opened issue: [2429](https://github.com/hackforla/website/issues/2429) at 2021-11-02 11:25 AM PDT -macho-catt,2021-11-02T18:26:46Z,- macho-catt opened issue: [2430](https://github.com/hackforla/website/issues/2430) at 2021-11-02 11:26 AM PDT -macho-catt,2021-11-02T18:44:05Z,- macho-catt opened issue: [2431](https://github.com/hackforla/website/issues/2431) at 2021-11-02 11:44 AM PDT -macho-catt,2021-11-02T19:50:50Z,- macho-catt commented on issue: [2430](https://github.com/hackforla/website/issues/2430#issuecomment-958116834) at 2021-11-02 12:50 PM PDT -macho-catt,2021-11-02T19:51:13Z,- macho-catt commented on issue: [2422](https://github.com/hackforla/website/issues/2422#issuecomment-958117076) at 2021-11-02 12:51 PM PDT -macho-catt,2021-11-02T21:09:49Z,- macho-catt opened issue: [2433](https://github.com/hackforla/website/issues/2433) at 2021-11-02 02:09 PM PDT -macho-catt,2021-11-02T21:41:09Z,- macho-catt opened issue: [2434](https://github.com/hackforla/website/issues/2434) at 2021-11-02 02:41 PM PDT -macho-catt,2021-11-02T22:01:39Z,- macho-catt opened issue: [2435](https://github.com/hackforla/website/issues/2435) at 2021-11-02 03:01 PM PDT -macho-catt,2021-11-02T22:07:37Z,- macho-catt opened issue: [2437](https://github.com/hackforla/website/issues/2437) at 2021-11-02 03:07 PM PDT -macho-catt,2021-11-02T22:20:06Z,- macho-catt commented on pull request: [2436](https://github.com/hackforla/website/pull/2436#issuecomment-958268657) at 2021-11-02 03:20 PM PDT -macho-catt,2021-11-03T15:32:46Z,- macho-catt commented on pull request: [2440](https://github.com/hackforla/website/pull/2440#issuecomment-959461655) at 2021-11-03 08:32 AM PDT -macho-catt,2021-11-03T22:23:26Z,- macho-catt commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-960241207) at 2021-11-03 03:23 PM PDT -macho-catt,2021-11-03T23:38:08Z,- macho-catt opened issue: [2441](https://github.com/hackforla/website/issues/2441) at 2021-11-03 04:38 PM PDT -macho-catt,2021-11-03T23:49:54Z,- macho-catt opened issue: [2442](https://github.com/hackforla/website/issues/2442) at 2021-11-03 04:49 PM PDT -macho-catt,2021-11-04T02:27:07Z,- macho-catt opened issue: [2443](https://github.com/hackforla/website/issues/2443) at 2021-11-03 07:27 PM PDT -macho-catt,2021-11-04T02:32:53Z,- macho-catt opened issue: [2444](https://github.com/hackforla/website/issues/2444) at 2021-11-03 07:32 PM PDT -macho-catt,2021-11-04T02:38:43Z,- macho-catt opened issue: [2445](https://github.com/hackforla/website/issues/2445) at 2021-11-03 07:38 PM PDT -macho-catt,2021-11-04T02:39:06Z,- macho-catt commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-960394791) at 2021-11-03 07:39 PM PDT -macho-catt,2021-11-04T02:39:06Z,- macho-catt closed issue as completed: [2363](https://github.com/hackforla/website/issues/2363#event-5565839243) at 2021-11-03 07:39 PM PDT -macho-catt,2021-11-04T15:31:44Z,- macho-catt commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-961158401) at 2021-11-04 08:31 AM PDT -macho-catt,2021-11-04T16:23:04Z,- macho-catt submitted pull request review: [2432](https://github.com/hackforla/website/pull/2432#pullrequestreview-797972499) at 2021-11-04 09:23 AM PDT -macho-catt,2021-11-04T16:23:20Z,- macho-catt closed issue by PR 2432: [2344](https://github.com/hackforla/website/issues/2344#event-5569466699) at 2021-11-04 09:23 AM PDT -macho-catt,2021-11-04T16:25:16Z,- macho-catt submitted pull request review: [2420](https://github.com/hackforla/website/pull/2420#pullrequestreview-797975240) at 2021-11-04 09:25 AM PDT -macho-catt,2021-11-04T16:25:27Z,- macho-catt closed issue by PR 2420: [2091](https://github.com/hackforla/website/issues/2091#event-5569481886) at 2021-11-04 09:25 AM PDT -macho-catt,2021-11-04T17:31:02Z,- macho-catt commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-961263819) at 2021-11-04 10:31 AM PDT -macho-catt,2021-11-05T17:00:52Z,- macho-catt submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-799130629) at 2021-11-05 10:00 AM PDT -macho-catt,2021-11-05T17:03:41Z,- macho-catt submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-799133398) at 2021-11-05 10:03 AM PDT -macho-catt,2021-11-05T17:06:16Z,- macho-catt submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-799135922) at 2021-11-05 10:06 AM PDT -macho-catt,2021-11-05T20:20:08Z,- macho-catt opened issue: [2455](https://github.com/hackforla/website/issues/2455) at 2021-11-05 01:20 PM PDT -macho-catt,2021-11-05T21:20:30Z,- macho-catt commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-962228032) at 2021-11-05 02:20 PM PDT -macho-catt,2021-11-05T22:27:49Z,- macho-catt opened issue: [2456](https://github.com/hackforla/website/issues/2456) at 2021-11-05 03:27 PM PDT -macho-catt,2021-11-06T00:05:45Z,- macho-catt opened issue: [2457](https://github.com/hackforla/website/issues/2457) at 2021-11-05 04:05 PM PST -macho-catt,2021-11-06T00:12:56Z,- macho-catt opened issue: [2458](https://github.com/hackforla/website/issues/2458) at 2021-11-05 04:12 PM PST -macho-catt,2021-11-06T04:01:40Z,- macho-catt opened issue: [2459](https://github.com/hackforla/website/issues/2459) at 2021-11-05 08:01 PM PST -macho-catt,2021-11-06T04:03:04Z,- macho-catt commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-962390141) at 2021-11-05 08:03 PM PST -macho-catt,2021-11-06T05:46:47Z,- macho-catt opened issue: [2460](https://github.com/hackforla/website/issues/2460) at 2021-11-05 09:46 PM PST -macho-catt,2021-11-07T13:40:05Z,- macho-catt submitted pull request review: [2412](https://github.com/hackforla/website/pull/2412#pullrequestreview-799541182) at 2021-11-07 05:40 AM PST -macho-catt,2021-11-08T17:03:22Z,- macho-catt closed issue by PR 2412: [2357](https://github.com/hackforla/website/issues/2357#event-5584370692) at 2021-11-08 09:03 AM PST -macho-catt,2021-11-09T18:10:24Z,- macho-catt commented on issue: [2425](https://github.com/hackforla/website/issues/2425#issuecomment-964405965) at 2021-11-09 10:10 AM PST -macho-catt,2021-11-09T18:10:35Z,- macho-catt commented on issue: [2424](https://github.com/hackforla/website/issues/2424#issuecomment-964406114) at 2021-11-09 10:10 AM PST -macho-catt,2021-11-10T00:18:47Z,- macho-catt commented on pull request: [2467](https://github.com/hackforla/website/pull/2467#issuecomment-964662408) at 2021-11-09 04:18 PM PST -macho-catt,2021-11-10T00:21:30Z,- macho-catt commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-964663752) at 2021-11-09 04:21 PM PST -macho-catt,2021-11-10T03:27:13Z,- macho-catt closed issue by PR 2452: [2270](https://github.com/hackforla/website/issues/2270#event-5594322467) at 2021-11-09 07:27 PM PST -macho-catt,2021-11-10T19:10:24Z,- macho-catt commented on pull request: [2467](https://github.com/hackforla/website/pull/2467#issuecomment-965655658) at 2021-11-10 11:10 AM PST -macho-catt,2021-11-10T21:42:33Z,- macho-catt submitted pull request review: [2469](https://github.com/hackforla/website/pull/2469#pullrequestreview-803175590) at 2021-11-10 01:42 PM PST -macho-catt,2021-11-10T21:42:47Z,- macho-catt closed issue by PR 2469: [2341](https://github.com/hackforla/website/issues/2341#event-5600169805) at 2021-11-10 01:42 PM PST -macho-catt,2021-11-10T21:43:43Z,- macho-catt commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-965773375) at 2021-11-10 01:43 PM PST -macho-catt,2021-11-11T02:36:35Z,- macho-catt opened issue: [2474](https://github.com/hackforla/website/issues/2474) at 2021-11-10 06:36 PM PST -macho-catt,2021-11-11T02:47:19Z,- macho-catt opened issue: [2475](https://github.com/hackforla/website/issues/2475) at 2021-11-10 06:47 PM PST -macho-catt,2021-11-11T07:09:02Z,- macho-catt commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-966045142) at 2021-11-10 11:09 PM PST -macho-catt,2021-11-11T19:39:19Z,- macho-catt commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-966573256) at 2021-11-11 11:39 AM PST -macho-catt,2021-11-11T20:23:10Z,- macho-catt commented on pull request: [2375](https://github.com/hackforla/website/pull/2375#issuecomment-966599988) at 2021-11-11 12:23 PM PST -macho-catt,2021-11-11T22:45:59Z,- macho-catt commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-966678785) at 2021-11-11 02:45 PM PST -macho-catt,2021-11-12T16:35:01Z,- macho-catt commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-967251091) at 2021-11-12 08:35 AM PST -macho-catt,2021-11-12T16:47:44Z,- macho-catt opened issue: [2476](https://github.com/hackforla/website/issues/2476) at 2021-11-12 08:47 AM PST -macho-catt,2021-11-12T16:48:14Z,- macho-catt closed issue as completed: [2476](https://github.com/hackforla/website/issues/2476#event-5610849222) at 2021-11-12 08:48 AM PST -macho-catt,2021-11-12T17:07:38Z,- macho-catt commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-967274906) at 2021-11-12 09:07 AM PST -macho-catt,2021-11-13T04:55:17Z,- macho-catt submitted pull request review: [2453](https://github.com/hackforla/website/pull/2453#pullrequestreview-805338998) at 2021-11-12 08:55 PM PST -macho-catt,2021-11-13T04:55:45Z,- macho-catt submitted pull request review: [2453](https://github.com/hackforla/website/pull/2453#pullrequestreview-805339018) at 2021-11-12 08:55 PM PST -macho-catt,2021-11-13T04:58:23Z,- macho-catt submitted pull request review: [2453](https://github.com/hackforla/website/pull/2453#pullrequestreview-805339165) at 2021-11-12 08:58 PM PST -macho-catt,2021-11-13T05:00:55Z,- macho-catt submitted pull request review: [2453](https://github.com/hackforla/website/pull/2453#pullrequestreview-805339312) at 2021-11-12 09:00 PM PST -macho-catt,2021-11-13T05:05:58Z,- macho-catt submitted pull request review: [2453](https://github.com/hackforla/website/pull/2453#pullrequestreview-805339635) at 2021-11-12 09:05 PM PST -macho-catt,2021-11-14T16:07:36Z,- macho-catt closed issue as completed: [2454](https://github.com/hackforla/website/issues/2454#event-5614445645) at 2021-11-14 08:07 AM PST -macho-catt,2021-11-14T16:30:48Z,- macho-catt submitted pull request review: [2478](https://github.com/hackforla/website/pull/2478#pullrequestreview-805491715) at 2021-11-14 08:30 AM PST -macho-catt,2021-11-14T16:42:09Z,- macho-catt opened issue: [2479](https://github.com/hackforla/website/issues/2479) at 2021-11-14 08:42 AM PST -macho-catt,2021-11-14T16:47:31Z,- macho-catt commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-968325769) at 2021-11-14 08:47 AM PST -macho-catt,2021-11-14T17:16:37Z,- macho-catt commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-968330558) at 2021-11-14 09:16 AM PST -macho-catt,2021-11-14T17:17:39Z,- macho-catt commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-968330714) at 2021-11-14 09:17 AM PST -macho-catt,2021-11-14T23:35:35Z,- macho-catt assigned to issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-967251091) at 2021-11-14 03:35 PM PST -macho-catt,2021-11-15T01:33:34Z,- macho-catt opened issue: [2483](https://github.com/hackforla/website/issues/2483) at 2021-11-14 05:33 PM PST -macho-catt,2021-11-15T02:08:39Z,- macho-catt opened issue: [2484](https://github.com/hackforla/website/issues/2484) at 2021-11-14 06:08 PM PST -macho-catt,2021-11-15T03:00:04Z,- macho-catt opened issue: [2485](https://github.com/hackforla/website/issues/2485) at 2021-11-14 07:00 PM PST -macho-catt,2021-11-15T03:14:02Z,- macho-catt opened issue: [2486](https://github.com/hackforla/website/issues/2486) at 2021-11-14 07:14 PM PST -macho-catt,2021-11-15T03:17:32Z,- macho-catt commented on issue: [2357](https://github.com/hackforla/website/issues/2357#issuecomment-968500905) at 2021-11-14 07:17 PM PST -macho-catt,2021-11-15T04:46:41Z,- macho-catt opened issue: [2487](https://github.com/hackforla/website/issues/2487) at 2021-11-14 08:46 PM PST -macho-catt,2021-11-15T05:25:39Z,- macho-catt opened issue: [2488](https://github.com/hackforla/website/issues/2488) at 2021-11-14 09:25 PM PST -macho-catt,2021-11-16T04:24:45Z,- macho-catt submitted pull request review: [2453](https://github.com/hackforla/website/pull/2453#pullrequestreview-806800433) at 2021-11-15 08:24 PM PST -macho-catt,2021-11-16T04:42:06Z,- macho-catt opened pull request: [2492](https://github.com/hackforla/website/pull/2492) at 2021-11-15 08:42 PM PST -macho-catt,2021-11-16T04:45:08Z,- macho-catt closed issue by PR 2492: [2407](https://github.com/hackforla/website/issues/2407#event-5622351393) at 2021-11-15 08:45 PM PST -macho-catt,2021-11-16T04:45:09Z,- macho-catt pull request merged: [2492](https://github.com/hackforla/website/pull/2492#event-5622351401) at 2021-11-15 08:45 PM PST -macho-catt,2021-11-16T04:53:52Z,- macho-catt assigned to issue: [2111](https://github.com/hackforla/website/issues/2111#issuecomment-909347330) at 2021-11-15 08:53 PM PST -macho-catt,2021-11-16T04:58:42Z,- macho-catt commented on issue: [2231](https://github.com/hackforla/website/issues/2231#issuecomment-969860427) at 2021-11-15 08:58 PM PST -macho-catt,2021-11-16T04:58:43Z,- macho-catt closed issue as completed: [2231](https://github.com/hackforla/website/issues/2231#event-5622386308) at 2021-11-15 08:58 PM PST -macho-catt,2021-11-16T05:05:20Z,- macho-catt opened pull request: [2493](https://github.com/hackforla/website/pull/2493) at 2021-11-15 09:05 PM PST -macho-catt,2021-11-16T05:08:26Z,- macho-catt pull request merged: [2493](https://github.com/hackforla/website/pull/2493#event-5622416700) at 2021-11-15 09:08 PM PST -macho-catt,2021-11-16T05:10:12Z,- macho-catt closed issue by PR 2418: [2232](https://github.com/hackforla/website/issues/2232#event-5622422394) at 2021-11-15 09:10 PM PST -macho-catt,2021-11-16T05:29:15Z,- macho-catt commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-969876146) at 2021-11-15 09:29 PM PST -macho-catt,2021-11-16T05:32:06Z,- macho-catt commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-969877248) at 2021-11-15 09:32 PM PST -macho-catt,2021-11-16T17:21:44Z,- macho-catt assigned to issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-960241207) at 2021-11-16 09:21 AM PST -macho-catt,2021-11-16T18:33:46Z,- macho-catt submitted pull request review: [2491](https://github.com/hackforla/website/pull/2491#pullrequestreview-807691031) at 2021-11-16 10:33 AM PST -macho-catt,2021-11-16T18:33:51Z,- macho-catt closed issue by PR 2491: [2342](https://github.com/hackforla/website/issues/2342#event-5626988939) at 2021-11-16 10:33 AM PST -macho-catt,2021-11-16T18:58:16Z,- macho-catt commented on pull request: [2482](https://github.com/hackforla/website/pull/2482#issuecomment-970576171) at 2021-11-16 10:58 AM PST -macho-catt,2021-11-16T23:31:48Z,- macho-catt submitted pull request review: [2482](https://github.com/hackforla/website/pull/2482#pullrequestreview-807969705) at 2021-11-16 03:31 PM PST -macho-catt,2021-11-16T23:31:54Z,- macho-catt closed issue by PR 2482: [2175](https://github.com/hackforla/website/issues/2175#event-5628396309) at 2021-11-16 03:31 PM PST -macho-catt,2021-11-17T16:37:14Z,- macho-catt submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-808841621) at 2021-11-17 08:37 AM PST -macho-catt,2021-11-17T16:37:19Z,- macho-catt closed issue by PR 2470: [2362](https://github.com/hackforla/website/issues/2362#event-5633178129) at 2021-11-17 08:37 AM PST -macho-catt,2021-11-19T04:31:59Z,- macho-catt submitted pull request review: [2495](https://github.com/hackforla/website/pull/2495#pullrequestreview-810751860) at 2021-11-18 08:31 PM PST -macho-catt,2021-11-19T04:44:10Z,- macho-catt submitted pull request review: [2495](https://github.com/hackforla/website/pull/2495#pullrequestreview-810756131) at 2021-11-18 08:44 PM PST -macho-catt,2021-11-19T04:49:01Z,- macho-catt submitted pull request review: [2495](https://github.com/hackforla/website/pull/2495#pullrequestreview-810757871) at 2021-11-18 08:49 PM PST -macho-catt,2021-11-19T04:55:04Z,- macho-catt submitted pull request review: [2495](https://github.com/hackforla/website/pull/2495#pullrequestreview-810759948) at 2021-11-18 08:55 PM PST -macho-catt,2021-11-21T13:07:17Z,- macho-catt commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-974814560) at 2021-11-21 05:07 AM PST -macho-catt,2021-11-21T13:07:17Z,- macho-catt closed issue by PR 2506: [2202](https://github.com/hackforla/website/issues/2202#event-5649998312) at 2021-11-21 05:07 AM PST -macho-catt,2021-11-21T14:57:37Z,- macho-catt assigned to issue: [2182](https://github.com/hackforla/website/issues/2182) at 2021-11-21 06:57 AM PST -macho-catt,2021-11-21T14:58:10Z,- macho-catt commented on issue: [2182](https://github.com/hackforla/website/issues/2182#issuecomment-974831905) at 2021-11-21 06:58 AM PST -macho-catt,2021-11-21T15:05:18Z,- macho-catt opened issue: [2502](https://github.com/hackforla/website/issues/2502) at 2021-11-21 07:05 AM PST -macho-catt,2021-11-21T16:15:34Z,- macho-catt commented on issue: [2503](https://github.com/hackforla/website/issues/2503#issuecomment-974847114) at 2021-11-21 08:15 AM PST -macho-catt,2021-11-21T16:15:35Z,- macho-catt closed issue as completed: [2503](https://github.com/hackforla/website/issues/2503#event-5650201162) at 2021-11-21 08:15 AM PST -macho-catt,2021-11-21T16:43:56Z,- macho-catt opened issue: [2505](https://github.com/hackforla/website/issues/2505) at 2021-11-21 08:43 AM PST -macho-catt,2021-11-21T22:35:23Z,- macho-catt assigned to issue: [2477](https://github.com/hackforla/website/issues/2477#issuecomment-967330027) at 2021-11-21 02:35 PM PST -macho-catt,2021-11-21T22:55:07Z,- macho-catt opened pull request: [2506](https://github.com/hackforla/website/pull/2506) at 2021-11-21 02:55 PM PST -macho-catt,2021-11-21T22:55:57Z,- macho-catt closed issue by PR 2506: [2477](https://github.com/hackforla/website/issues/2477#event-5650617702) at 2021-11-21 02:55 PM PST -macho-catt,2021-11-21T22:55:57Z,- macho-catt pull request merged: [2506](https://github.com/hackforla/website/pull/2506#event-5650617706) at 2021-11-21 02:55 PM PST -macho-catt,2021-11-22T00:46:15Z,- macho-catt submitted pull request review: [2510](https://github.com/hackforla/website/pull/2510#pullrequestreview-811995572) at 2021-11-21 04:46 PM PST -macho-catt,2021-11-22T00:54:07Z,- macho-catt assigned to issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-946927317) at 2021-11-21 04:54 PM PST -macho-catt,2021-11-22T17:06:43Z,- macho-catt commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-975736997) at 2021-11-22 09:06 AM PST -macho-catt,2021-11-22T19:53:27Z,- macho-catt opened pull request: [2514](https://github.com/hackforla/website/pull/2514) at 2021-11-22 11:53 AM PST -macho-catt,2021-11-22T19:54:06Z,- macho-catt closed issue by PR 2514: [2182](https://github.com/hackforla/website/issues/2182#event-5656356769) at 2021-11-22 11:54 AM PST -macho-catt,2021-11-22T19:54:06Z,- macho-catt pull request merged: [2514](https://github.com/hackforla/website/pull/2514#event-5656356779) at 2021-11-22 11:54 AM PST -macho-catt,2021-11-22T20:05:43Z,- macho-catt reopened issue: [2182](https://github.com/hackforla/website/issues/2182#event-5656356769) at 2021-11-22 12:05 PM PST -macho-catt,2021-11-22T20:05:54Z,- macho-catt closed issue by PR 2514: [2182](https://github.com/hackforla/website/issues/2182#event-5656412365) at 2021-11-22 12:05 PM PST -macho-catt,2021-11-22T20:17:45Z,- macho-catt submitted pull request review: [2507](https://github.com/hackforla/website/pull/2507#pullrequestreview-812979496) at 2021-11-22 12:17 PM PST -macho-catt,2021-11-22T20:17:50Z,- macho-catt closed issue by PR 2507: [2237](https://github.com/hackforla/website/issues/2237#event-5656470331) at 2021-11-22 12:17 PM PST -macho-catt,2021-11-24T11:42:35Z,- macho-catt commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-977798433) at 2021-11-24 03:42 AM PST -macho-catt,2021-11-24T11:42:36Z,- macho-catt closed issue by PR 2492: [2407](https://github.com/hackforla/website/issues/2407#event-5666334298) at 2021-11-24 03:42 AM PST -macho-catt,2021-11-29T20:34:55Z,- macho-catt commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-981999233) at 2021-11-29 12:34 PM PST -macho-catt,2021-12-01T03:24:45Z,- macho-catt submitted pull request review: [2525](https://github.com/hackforla/website/pull/2525#pullrequestreview-819769601) at 2021-11-30 07:24 PM PST -macho-catt,2021-12-01T03:24:57Z,- macho-catt closed issue by PR 2525: [2445](https://github.com/hackforla/website/issues/2445#event-5696107364) at 2021-11-30 07:24 PM PST -macho-catt,2021-12-03T00:10:34Z,- macho-catt submitted pull request review: [2504](https://github.com/hackforla/website/pull/2504#pullrequestreview-822140763) at 2021-12-02 04:10 PM PST -macho-catt,2021-12-04T23:33:55Z,- macho-catt submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-823336182) at 2021-12-04 03:33 PM PST -macho-catt,2021-12-04T23:40:21Z,- macho-catt submitted pull request review: [2526](https://github.com/hackforla/website/pull/2526#pullrequestreview-823336519) at 2021-12-04 03:40 PM PST -macho-catt,2021-12-04T23:40:27Z,- macho-catt closed issue by PR 2526: [2443](https://github.com/hackforla/website/issues/2443#event-5716173629) at 2021-12-04 03:40 PM PST -macho-catt,2021-12-04T23:41:26Z,- macho-catt submitted pull request review: [2530](https://github.com/hackforla/website/pull/2530#pullrequestreview-823336572) at 2021-12-04 03:41 PM PST -macho-catt,2021-12-04T23:41:32Z,- macho-catt closed issue by PR 2530: [2441](https://github.com/hackforla/website/issues/2441#event-5716176767) at 2021-12-04 03:41 PM PST -macho-catt,2021-12-04T23:42:18Z,- macho-catt submitted pull request review: [2532](https://github.com/hackforla/website/pull/2532#pullrequestreview-823336625) at 2021-12-04 03:42 PM PST -macho-catt,2021-12-04T23:42:24Z,- macho-catt closed issue by PR 2532: [2433](https://github.com/hackforla/website/issues/2433#event-5716179429) at 2021-12-04 03:42 PM PST -macho-catt,2021-12-04T23:43:57Z,- macho-catt submitted pull request review: [2534](https://github.com/hackforla/website/pull/2534#pullrequestreview-823336706) at 2021-12-04 03:43 PM PST -macho-catt,2021-12-04T23:44:02Z,- macho-catt closed issue by PR 2534: [2434](https://github.com/hackforla/website/issues/2434#event-5716184132) at 2021-12-04 03:44 PM PST -macho-catt,2021-12-04T23:44:55Z,- macho-catt submitted pull request review: [2541](https://github.com/hackforla/website/pull/2541#pullrequestreview-823336749) at 2021-12-04 03:44 PM PST -macho-catt,2021-12-04T23:45:00Z,- macho-catt closed issue by PR 2541: [2490](https://github.com/hackforla/website/issues/2490#event-5716186909) at 2021-12-04 03:45 PM PST -macho-catt,2021-12-04T23:45:32Z,- macho-catt submitted pull request review: [2543](https://github.com/hackforla/website/pull/2543#pullrequestreview-823336791) at 2021-12-04 03:45 PM PST -macho-catt,2021-12-04T23:45:37Z,- macho-catt closed issue by PR 2543: [2425](https://github.com/hackforla/website/issues/2425#event-5716188651) at 2021-12-04 03:45 PM PST -macho-catt,2021-12-04T23:55:23Z,- macho-catt closed issue as completed: [2179](https://github.com/hackforla/website/issues/2179#event-5716196822) at 2021-12-04 03:55 PM PST -macho-catt,2021-12-05T16:44:10Z,- macho-catt submitted pull request review: [2535](https://github.com/hackforla/website/pull/2535#pullrequestreview-823411532) at 2021-12-05 08:44 AM PST -macho-catt,2021-12-05T16:45:56Z,- macho-catt submitted pull request review: [2535](https://github.com/hackforla/website/pull/2535#pullrequestreview-823411728) at 2021-12-05 08:45 AM PST -macho-catt,2021-12-05T16:52:48Z,- macho-catt commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-986264308) at 2021-12-05 08:52 AM PST -macho-catt,2021-12-05T17:08:29Z,- macho-catt commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-986266562) at 2021-12-05 09:08 AM PST -macho-catt,2021-12-05T19:42:50Z,- macho-catt commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-986288466) at 2021-12-05 11:42 AM PST -macho-catt,2021-12-05T23:57:30Z,- macho-catt commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-986327338) at 2021-12-05 03:57 PM PST -macho-catt,2021-12-05T23:59:20Z,- macho-catt unassigned from issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-985274870) at 2021-12-05 03:59 PM PST -macho-catt,2021-12-06T00:06:42Z,- macho-catt unassigned from issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-986327338) at 2021-12-05 04:06 PM PST -macho-catt,2021-12-08T01:33:16Z,- macho-catt submitted pull request review: [2546](https://github.com/hackforla/website/pull/2546#pullrequestreview-825927777) at 2021-12-07 05:33 PM PST -macho-catt,2021-12-08T01:33:21Z,- macho-catt closed issue by PR 2546: [2484](https://github.com/hackforla/website/issues/2484#event-5730922312) at 2021-12-07 05:33 PM PST -macho-catt,2021-12-08T02:36:00Z,- macho-catt commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-988442890) at 2021-12-07 06:36 PM PST -macho-catt,2021-12-08T02:38:12Z,- macho-catt submitted pull request review: [2538](https://github.com/hackforla/website/pull/2538#pullrequestreview-825955982) at 2021-12-07 06:38 PM PST -macho-catt,2021-12-08T02:38:18Z,- macho-catt closed issue by PR 2538: [2356](https://github.com/hackforla/website/issues/2356#event-5731116510) at 2021-12-07 06:38 PM PST -macho-catt,2021-12-08T02:38:50Z,- macho-catt submitted pull request review: [2535](https://github.com/hackforla/website/pull/2535#pullrequestreview-825956267) at 2021-12-07 06:38 PM PST -macho-catt,2021-12-08T02:38:56Z,- macho-catt closed issue by PR 2535: [2383](https://github.com/hackforla/website/issues/2383#event-5731117980) at 2021-12-07 06:38 PM PST -macho-catt,2021-12-09T02:31:10Z,- macho-catt submitted pull request review: [2551](https://github.com/hackforla/website/pull/2551#pullrequestreview-827145160) at 2021-12-08 06:31 PM PST -macho-catt,2021-12-09T02:31:14Z,- macho-catt closed issue by PR 2551: [2094](https://github.com/hackforla/website/issues/2094#event-5737891575) at 2021-12-08 06:31 PM PST -macho-catt,2021-12-10T00:18:23Z,- macho-catt submitted pull request review: [2549](https://github.com/hackforla/website/pull/2549#pullrequestreview-828328284) at 2021-12-09 04:18 PM PST -macho-catt,2021-12-10T00:18:27Z,- macho-catt closed issue by PR 2549: [2234](https://github.com/hackforla/website/issues/2234#event-5744517870) at 2021-12-09 04:18 PM PST -macho-catt,2021-12-10T00:20:08Z,- macho-catt submitted pull request review: [2556](https://github.com/hackforla/website/pull/2556#pullrequestreview-828328995) at 2021-12-09 04:20 PM PST -macho-catt,2021-12-10T00:20:12Z,- macho-catt closed issue by PR 2556: [2419](https://github.com/hackforla/website/issues/2419#event-5744525479) at 2021-12-09 04:20 PM PST -macho-catt,2021-12-10T01:54:40Z,- macho-catt submitted pull request review: [2390](https://github.com/hackforla/website/pull/2390#pullrequestreview-828370231) at 2021-12-09 05:54 PM PST -macho-catt,2021-12-10T01:55:02Z,- macho-catt closed issue by PR 2390: [2125](https://github.com/hackforla/website/issues/2125#event-5744927648) at 2021-12-09 05:55 PM PST -macho-catt,2021-12-10T02:10:19Z,- macho-catt opened pull request: [2573](https://github.com/hackforla/website/pull/2573) at 2021-12-09 06:10 PM PST -macho-catt,2021-12-10T02:10:43Z,- macho-catt pull request merged: [2573](https://github.com/hackforla/website/pull/2573#event-5744977964) at 2021-12-09 06:10 PM PST -macho-catt,2021-12-10T04:09:04Z,- macho-catt submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-828419638) at 2021-12-09 08:09 PM PST -macho-catt,2021-12-10T04:09:23Z,- macho-catt submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-828419752) at 2021-12-09 08:09 PM PST -macho-catt,2021-12-10T18:47:35Z,- macho-catt commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-991211453) at 2021-12-10 10:47 AM PST -macho-catt,2021-12-10T18:48:15Z,- macho-catt commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-991211848) at 2021-12-10 10:48 AM PST -macho-catt,2021-12-12T17:51:14Z,- macho-catt commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-991941531) at 2021-12-12 09:51 AM PST -macho-catt,2021-12-12T22:21:14Z,- macho-catt commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-991981385) at 2021-12-12 02:21 PM PST -macho-catt,2021-12-12T22:22:43Z,- macho-catt commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-991981598) at 2021-12-12 02:22 PM PST -macho-catt,2021-12-12T22:31:09Z,- macho-catt opened pull request: [2578](https://github.com/hackforla/website/pull/2578) at 2021-12-12 02:31 PM PST -macho-catt,2021-12-12T22:31:16Z,- macho-catt closed issue by PR 2578: [2127](https://github.com/hackforla/website/issues/2127#event-5753382030) at 2021-12-12 02:31 PM PST -macho-catt,2021-12-12T22:31:16Z,- macho-catt pull request merged: [2578](https://github.com/hackforla/website/pull/2578#event-5753382032) at 2021-12-12 02:31 PM PST -macho-catt,2021-12-12T22:32:49Z,- macho-catt opened issue: [2579](https://github.com/hackforla/website/issues/2579) at 2021-12-12 02:32 PM PST -macho-catt,2021-12-12T22:33:24Z,- macho-catt commented on issue: [2579](https://github.com/hackforla/website/issues/2579#issuecomment-991983411) at 2021-12-12 02:33 PM PST -macho-catt,2021-12-12T22:33:24Z,- macho-catt closed issue as completed: [2579](https://github.com/hackforla/website/issues/2579#event-5753384184) at 2021-12-12 02:33 PM PST -macho-catt,2021-12-12T22:34:12Z,- macho-catt opened issue: [2580](https://github.com/hackforla/website/issues/2580) at 2021-12-12 02:34 PM PST -macho-catt,2021-12-12T22:34:38Z,- macho-catt commented on issue: [2580](https://github.com/hackforla/website/issues/2580#issuecomment-991983586) at 2021-12-12 02:34 PM PST -macho-catt,2021-12-12T22:34:38Z,- macho-catt closed issue as completed: [2580](https://github.com/hackforla/website/issues/2580#event-5753385510) at 2021-12-12 02:34 PM PST -macho-catt,2021-12-12T22:35:20Z,- macho-catt opened issue: [2581](https://github.com/hackforla/website/issues/2581) at 2021-12-12 02:35 PM PST -macho-catt,2021-12-12T22:35:47Z,- macho-catt commented on issue: [2581](https://github.com/hackforla/website/issues/2581#issuecomment-991983767) at 2021-12-12 02:35 PM PST -macho-catt,2021-12-12T22:35:47Z,- macho-catt closed issue as completed: [2581](https://github.com/hackforla/website/issues/2581#event-5753386657) at 2021-12-12 02:35 PM PST -macho-catt,2021-12-12T23:36:59Z,- macho-catt commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-991993857) at 2021-12-12 03:36 PM PST -macho-catt,2021-12-13T00:03:30Z,- macho-catt commented on pull request: [2582](https://github.com/hackforla/website/pull/2582#issuecomment-991998030) at 2021-12-12 04:03 PM PST -macho-catt,2021-12-14T01:53:41Z,- macho-catt submitted pull request review: [2582](https://github.com/hackforla/website/pull/2582#pullrequestreview-830938159) at 2021-12-13 05:53 PM PST -macho-catt,2021-12-14T01:53:45Z,- macho-catt closed issue by PR 2582: [2348](https://github.com/hackforla/website/issues/2348#event-5760937835) at 2021-12-13 05:53 PM PST -macho-catt,2021-12-14T01:54:33Z,- macho-catt submitted pull request review: [2583](https://github.com/hackforla/website/pull/2583#pullrequestreview-830938567) at 2021-12-13 05:54 PM PST -macho-catt,2021-12-14T01:54:40Z,- macho-catt closed issue by PR 2583: [2444](https://github.com/hackforla/website/issues/2444#event-5760940724) at 2021-12-13 05:54 PM PST -macho-catt,2021-12-15T02:06:22Z,- macho-catt submitted pull request review: [2566](https://github.com/hackforla/website/pull/2566#pullrequestreview-832227585) at 2021-12-14 06:06 PM PST -macho-catt,2021-12-15T02:06:28Z,- macho-catt closed issue by PR 2566: [2296](https://github.com/hackforla/website/issues/2296#event-5768294578) at 2021-12-14 06:06 PM PST -macho-catt,2021-12-15T02:12:36Z,- macho-catt submitted pull request review: [2574](https://github.com/hackforla/website/pull/2574#pullrequestreview-832230316) at 2021-12-14 06:12 PM PST -macho-catt,2021-12-15T02:12:41Z,- macho-catt closed issue by PR 2574: [2396](https://github.com/hackforla/website/issues/2396#event-5768315047) at 2021-12-14 06:12 PM PST -macho-catt,2021-12-15T02:13:16Z,- macho-catt submitted pull request review: [2575](https://github.com/hackforla/website/pull/2575#pullrequestreview-832230622) at 2021-12-14 06:13 PM PST -macho-catt,2021-12-15T02:13:21Z,- macho-catt closed issue by PR 2575: [2487](https://github.com/hackforla/website/issues/2487#event-5768317084) at 2021-12-14 06:13 PM PST -macho-catt,2021-12-15T02:14:17Z,- macho-catt submitted pull request review: [2577](https://github.com/hackforla/website/pull/2577#pullrequestreview-832231101) at 2021-12-14 06:14 PM PST -macho-catt,2021-12-15T02:14:21Z,- macho-catt closed issue by PR 2577: [2417](https://github.com/hackforla/website/issues/2417#event-5768320323) at 2021-12-14 06:14 PM PST -macho-catt,2021-12-15T02:25:11Z,- macho-catt commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-994230582) at 2021-12-14 06:25 PM PST -macho-catt,2021-12-15T02:42:33Z,- macho-catt commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-994237757) at 2021-12-14 06:42 PM PST -macho-catt,2021-12-15T03:49:40Z,- macho-catt submitted pull request review: [2495](https://github.com/hackforla/website/pull/2495#pullrequestreview-832270398) at 2021-12-14 07:49 PM PST -macho-catt,2021-12-15T05:06:44Z,- macho-catt submitted pull request review: [2373](https://github.com/hackforla/website/pull/2373#pullrequestreview-832300601) at 2021-12-14 09:06 PM PST -macho-catt,2021-12-15T23:13:29Z,- macho-catt reopened issue: [2296](https://github.com/hackforla/website/issues/2296#event-5768294578) at 2021-12-15 03:13 PM PST -macho-catt,2021-12-15T23:17:46Z,- macho-catt submitted pull request review: [2587](https://github.com/hackforla/website/pull/2587#pullrequestreview-833501686) at 2021-12-15 03:17 PM PST -macho-catt,2021-12-15T23:17:50Z,- macho-catt closed issue by PR 2587: [2194](https://github.com/hackforla/website/issues/2194#event-5774867526) at 2021-12-15 03:17 PM PST -macho-catt,2021-12-15T23:22:39Z,- macho-catt commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-995293080) at 2021-12-15 03:22 PM PST -macho-catt,2021-12-16T05:07:39Z,- macho-catt submitted pull request review: [2590](https://github.com/hackforla/website/pull/2590#pullrequestreview-833650829) at 2021-12-15 09:07 PM PST -macho-catt,2021-12-16T05:07:45Z,- macho-catt closed issue by PR 2566: [2296](https://github.com/hackforla/website/issues/2296#event-5775872515) at 2021-12-15 09:07 PM PST -macho-catt,2021-12-16T05:55:44Z,- macho-catt commented on pull request: [2217](https://github.com/hackforla/website/pull/2217#issuecomment-995462480) at 2021-12-15 09:55 PM PST -macho-catt,2021-12-16T05:58:36Z,- macho-catt submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-833673391) at 2021-12-15 09:58 PM PST -macho-catt,2021-12-16T18:42:26Z,- macho-catt commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996080967) at 2021-12-16 10:42 AM PST -macho-catt,2021-12-17T03:11:34Z,- macho-catt submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-834801575) at 2021-12-16 07:11 PM PST -macho-catt,2021-12-17T03:27:59Z,- macho-catt commented on issue: [2595](https://github.com/hackforla/website/issues/2595#issuecomment-996407887) at 2021-12-16 07:27 PM PST -macho-catt,2021-12-17T03:28:05Z,- macho-catt closed issue as completed: [2595](https://github.com/hackforla/website/issues/2595#event-5782226608) at 2021-12-16 07:28 PM PST -macho-catt,2021-12-17T17:58:10Z,- macho-catt commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-996913257) at 2021-12-17 09:58 AM PST -macho-catt,2021-12-17T17:58:47Z,- macho-catt commented on issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-996913659) at 2021-12-17 09:58 AM PST -macho-catt,2021-12-17T17:59:14Z,- macho-catt commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-996913938) at 2021-12-17 09:59 AM PST -macho-catt,2021-12-17T18:12:41Z,- macho-catt submitted pull request review: [2584](https://github.com/hackforla/website/pull/2584#pullrequestreview-835515085) at 2021-12-17 10:12 AM PST -macho-catt,2021-12-17T18:12:45Z,- macho-catt closed issue by PR 2584: [2087](https://github.com/hackforla/website/issues/2087#event-5786162516) at 2021-12-17 10:12 AM PST -macho-catt,2022-03-19T06:23:41Z,- macho-catt opened issue: [2990](https://github.com/hackforla/website/issues/2990) at 2022-03-18 11:23 PM PDT -macho-catt,2022-03-19T06:23:41Z,- macho-catt assigned to issue: [2990](https://github.com/hackforla/website/issues/2990) at 2022-03-18 11:23 PM PDT -macho-catt,2022-03-19T06:34:32Z,- macho-catt opened pull request: [2991](https://github.com/hackforla/website/pull/2991) at 2022-03-18 11:34 PM PDT -macho-catt,2022-03-22T00:45:29Z,- macho-catt pull request merged: [2991](https://github.com/hackforla/website/pull/2991#event-6279742101) at 2022-03-21 05:45 PM PDT -macho-catt,2022-05-10T03:30:07Z,- macho-catt assigned to issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1118079027) at 2022-05-09 08:30 PM PDT -macho-catt,2022-05-10T03:32:06Z,- macho-catt commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1121847989) at 2022-05-09 08:32 PM PDT -macho-catt,2022-05-17T00:28:21Z,- macho-catt opened pull request: [3146](https://github.com/hackforla/website/pull/3146) at 2022-05-16 05:28 PM PDT -macho-catt,2022-05-17T00:29:05Z,- macho-catt commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1128270687) at 2022-05-16 05:29 PM PDT -macho-catt,2022-05-22T18:55:00Z,- macho-catt commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1133953521) at 2022-05-22 11:55 AM PDT -macho-catt,2022-05-22T18:55:11Z,- macho-catt commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1133953554) at 2022-05-22 11:55 AM PDT -macho-catt,2022-05-29T19:15:14Z,- macho-catt commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1140508067) at 2022-05-29 12:15 PM PDT -macho-catt,2022-05-29T19:15:32Z,- macho-catt commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1140508114) at 2022-05-29 12:15 PM PDT -macho-catt,2022-06-02T18:50:59Z,- macho-catt commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1145201407) at 2022-06-02 11:50 AM PDT -macho-catt,2022-08-11T20:37:53Z,- macho-catt unassigned from issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1190940215) at 2022-08-11 01:37 PM PDT -macho-catt,2022-08-11T20:38:28Z,- macho-catt pull request closed w/o merging: [3146](https://github.com/hackforla/website/pull/3146#event-7174818737) at 2022-08-11 01:38 PM PDT -MacTirney,5066,SKILLS ISSUE -MacTirney,2023-07-26T02:55:51Z,- MacTirney opened issue: [5066](https://github.com/hackforla/website/issues/5066) at 2023-07-25 07:55 PM PDT -MacTirney,2023-07-26T02:56:16Z,- MacTirney assigned to issue: [5066](https://github.com/hackforla/website/issues/5066#issuecomment-1650898288) at 2023-07-25 07:56 PM PDT -mademarc,3780,SKILLS ISSUE -mademarc,2023-01-04T04:44:16Z,- mademarc opened issue: [3780](https://github.com/hackforla/website/issues/3780) at 2023-01-03 08:44 PM PST -mademarc,2023-01-18T20:07:02Z,- mademarc assigned to issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1375121122) at 2023-01-18 12:07 PM PST -mademarc,2023-01-24T20:05:46Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1402552569) at 2023-01-24 12:05 PM PST -mademarc,2023-02-08T00:16:46Z,- mademarc assigned to issue: [3952](https://github.com/hackforla/website/issues/3952) at 2023-02-07 04:16 PM PST -mademarc,2023-02-08T01:54:04Z,- mademarc submitted pull request review: [3954](https://github.com/hackforla/website/pull/3954#pullrequestreview-1288355390) at 2023-02-07 05:54 PM PST -mademarc,2023-02-08T01:59:02Z,- mademarc unassigned from issue: [3952](https://github.com/hackforla/website/issues/3952#issuecomment-1421840677) at 2023-02-07 05:59 PM PST -mademarc,2023-02-09T00:07:49Z,- mademarc assigned to issue: [3955](https://github.com/hackforla/website/issues/3955) at 2023-02-08 04:07 PM PST -mademarc,2023-02-09T00:10:55Z,- mademarc opened pull request: [3956](https://github.com/hackforla/website/pull/3956) at 2023-02-08 04:10 PM PST -mademarc,2023-02-09T00:15:47Z,- mademarc commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423408143) at 2023-02-08 04:15 PM PST -mademarc,2023-02-09T02:33:53Z,- mademarc unassigned from issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423531322) at 2023-02-08 06:33 PM PST -mademarc,2023-02-09T02:41:10Z,- mademarc commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423535962) at 2023-02-08 06:41 PM PST -mademarc,2023-02-09T08:57:47Z,- mademarc pull request closed w/o merging: [3956](https://github.com/hackforla/website/pull/3956#event-8476942367) at 2023-02-09 12:57 AM PST -mademarc,2023-02-10T03:39:41Z,- mademarc assigned to issue: [3875](https://github.com/hackforla/website/issues/3875) at 2023-02-09 07:39 PM PST -mademarc,2023-02-11T01:29:36Z,- mademarc commented on issue: [3875](https://github.com/hackforla/website/issues/3875#issuecomment-1426558189) at 2023-02-10 05:29 PM PST -mademarc,2023-02-11T02:02:47Z,- mademarc opened pull request: [3962](https://github.com/hackforla/website/pull/3962) at 2023-02-10 06:02 PM PST -mademarc,2023-02-13T22:57:54Z,- mademarc commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1428818666) at 2023-02-13 02:57 PM PST -mademarc,2023-02-17T03:02:52Z,- mademarc commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1434030783) at 2023-02-16 07:02 PM PST -mademarc,2023-02-21T02:29:48Z,- mademarc commented on issue: [3875](https://github.com/hackforla/website/issues/3875#issuecomment-1437775385) at 2023-02-20 06:29 PM PST -mademarc,2023-02-21T02:31:47Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1437776367) at 2023-02-20 06:31 PM PST -mademarc,2023-02-24T03:05:22Z,- mademarc commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1442734516) at 2023-02-23 07:05 PM PST -mademarc,2023-02-24T03:23:15Z,- mademarc commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1442752155) at 2023-02-23 07:23 PM PST -mademarc,2023-02-24T03:23:49Z,- mademarc submitted pull request review: [3964](https://github.com/hackforla/website/pull/3964#pullrequestreview-1312456820) at 2023-02-23 07:23 PM PST -mademarc,2023-02-24T03:49:36Z,- mademarc commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442769561) at 2023-02-23 07:49 PM PST -mademarc,2023-02-24T03:50:18Z,- mademarc submitted pull request review: [4032](https://github.com/hackforla/website/pull/4032#pullrequestreview-1312469791) at 2023-02-23 07:50 PM PST -mademarc,2023-02-26T22:55:49Z,- mademarc pull request merged: [3962](https://github.com/hackforla/website/pull/3962#event-8610340266) at 2023-02-26 02:55 PM PST -mademarc,2023-03-01T03:25:09Z,- mademarc submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1318985028) at 2023-02-28 07:25 PM PST -mademarc,2023-03-01T03:29:00Z,- mademarc commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1449279089) at 2023-02-28 07:29 PM PST -mademarc,2023-03-01T03:30:25Z,- mademarc commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1449279904) at 2023-02-28 07:30 PM PST -mademarc,2023-03-01T03:32:31Z,- mademarc submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1318988832) at 2023-02-28 07:32 PM PST -mademarc,2023-03-01T03:38:11Z,- mademarc commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1449283859) at 2023-02-28 07:38 PM PST -mademarc,2023-03-01T03:38:52Z,- mademarc submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1318992107) at 2023-02-28 07:38 PM PST -mademarc,2023-03-01T03:44:00Z,- mademarc commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1449286880) at 2023-02-28 07:44 PM PST -mademarc,2023-03-01T03:47:15Z,- mademarc submitted pull request review: [4058](https://github.com/hackforla/website/pull/4058#pullrequestreview-1318996343) at 2023-02-28 07:47 PM PST -mademarc,2023-03-01T04:03:53Z,- mademarc commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1449301580) at 2023-02-28 08:03 PM PST -mademarc,2023-03-01T19:20:27Z,- mademarc commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1450724779) at 2023-03-01 11:20 AM PST -mademarc,2023-03-01T19:42:18Z,- mademarc submitted pull request review: [4076](https://github.com/hackforla/website/pull/4076#pullrequestreview-1320507025) at 2023-03-01 11:42 AM PST -mademarc,2023-03-01T22:49:33Z,- mademarc assigned to issue: [4042](https://github.com/hackforla/website/issues/4042#issuecomment-1450711502) at 2023-03-01 02:49 PM PST -mademarc,2023-03-01T22:54:24Z,- mademarc commented on issue: [4042](https://github.com/hackforla/website/issues/4042#issuecomment-1450975079) at 2023-03-01 02:54 PM PST -mademarc,2023-03-04T04:02:46Z,- mademarc submitted pull request review: [4076](https://github.com/hackforla/website/pull/4076#pullrequestreview-1324920802) at 2023-03-03 08:02 PM PST -mademarc,2023-03-04T05:25:13Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1454468241) at 2023-03-03 09:25 PM PST -mademarc,2023-03-09T03:32:30Z,- mademarc opened pull request: [4137](https://github.com/hackforla/website/pull/4137) at 2023-03-08 07:32 PM PST -mademarc,2023-03-10T04:42:56Z,- mademarc opened pull request: [4144](https://github.com/hackforla/website/pull/4144) at 2023-03-09 08:42 PM PST -mademarc,2023-03-10T04:52:18Z,- mademarc pull request closed w/o merging: [4137](https://github.com/hackforla/website/pull/4137#event-8714683868) at 2023-03-09 08:52 PM PST -mademarc,2023-03-12T23:11:46Z,- mademarc commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1465325740) at 2023-03-12 04:11 PM PDT -mademarc,2023-03-12T23:57:52Z,- mademarc pull request merged: [4144](https://github.com/hackforla/website/pull/4144#event-8726533104) at 2023-03-12 04:57 PM PDT -mademarc,2023-03-15T02:01:29Z,- mademarc assigned to issue: [3115](https://github.com/hackforla/website/issues/3115#event-8485622225) at 2023-03-14 07:01 PM PDT -mademarc,2023-03-15T02:25:17Z,- mademarc unassigned from issue: [3115](https://github.com/hackforla/website/issues/3115#issuecomment-1469180943) at 2023-03-14 07:25 PM PDT -mademarc,2023-03-15T02:27:17Z,- mademarc assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1457467480) at 2023-03-14 07:27 PM PDT -mademarc,2023-03-15T03:01:03Z,- mademarc assigned to issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1449429516) at 2023-03-14 08:01 PM PDT -mademarc,2023-03-15T03:02:15Z,- mademarc assigned to issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1468096796) at 2023-03-14 08:02 PM PDT -mademarc,2023-03-16T01:21:53Z,- mademarc commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1471134653) at 2023-03-15 06:21 PM PDT -mademarc,2023-03-16T01:24:49Z,- mademarc commented on issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1471136579) at 2023-03-15 06:24 PM PDT -mademarc,2023-03-16T01:26:17Z,- mademarc commented on issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1471137585) at 2023-03-15 06:26 PM PDT -mademarc,2023-03-16T01:32:01Z,- mademarc submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1342727208) at 2023-03-15 06:32 PM PDT -mademarc,2023-03-16T01:34:18Z,- mademarc commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1471144842) at 2023-03-15 06:34 PM PDT -mademarc,2023-03-16T01:36:17Z,- mademarc submitted pull request review: [4191](https://github.com/hackforla/website/pull/4191#pullrequestreview-1342729786) at 2023-03-15 06:36 PM PDT -mademarc,2023-03-16T01:36:55Z,- mademarc commented on pull request: [4191](https://github.com/hackforla/website/pull/4191#issuecomment-1471146467) at 2023-03-15 06:36 PM PDT -mademarc,2023-03-16T01:39:43Z,- mademarc submitted pull request review: [4179](https://github.com/hackforla/website/pull/4179#pullrequestreview-1342731958) at 2023-03-15 06:39 PM PDT -mademarc,2023-03-16T01:40:24Z,- mademarc commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1471149099) at 2023-03-15 06:40 PM PDT -mademarc,2023-03-16T01:41:44Z,- mademarc commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1471149902) at 2023-03-15 06:41 PM PDT -mademarc,2023-03-16T01:43:04Z,- mademarc submitted pull request review: [4181](https://github.com/hackforla/website/pull/4181#pullrequestreview-1342733981) at 2023-03-15 06:43 PM PDT -mademarc,2023-03-16T01:44:26Z,- mademarc commented on pull request: [4178](https://github.com/hackforla/website/pull/4178#issuecomment-1471151715) at 2023-03-15 06:44 PM PDT -mademarc,2023-03-16T01:46:58Z,- mademarc submitted pull request review: [4178](https://github.com/hackforla/website/pull/4178#pullrequestreview-1342736462) at 2023-03-15 06:46 PM PDT -mademarc,2023-03-16T01:47:53Z,- mademarc commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1471154007) at 2023-03-15 06:47 PM PDT -mademarc,2023-03-16T01:49:00Z,- mademarc submitted pull request review: [4176](https://github.com/hackforla/website/pull/4176#pullrequestreview-1342737665) at 2023-03-15 06:49 PM PDT -mademarc,2023-03-17T02:25:44Z,- mademarc commented on issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1473021045) at 2023-03-16 07:25 PM PDT -mademarc,2023-03-17T02:52:31Z,- mademarc unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1471134653) at 2023-03-16 07:52 PM PDT -mademarc,2023-03-17T17:46:09Z,- mademarc submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1346424904) at 2023-03-17 10:46 AM PDT -mademarc,2023-03-21T20:14:07Z,- mademarc commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1478523394) at 2023-03-21 01:14 PM PDT -mademarc,2023-03-21T20:15:30Z,- mademarc commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478524929) at 2023-03-21 01:15 PM PDT -mademarc,2023-03-22T02:10:30Z,- mademarc submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1351621764) at 2023-03-21 07:10 PM PDT -mademarc,2023-03-22T02:13:48Z,- mademarc submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1351624679) at 2023-03-21 07:13 PM PDT -mademarc,2023-03-22T03:06:56Z,- mademarc assigned to issue: [4226](https://github.com/hackforla/website/issues/4226) at 2023-03-21 08:06 PM PDT -mademarc,2023-03-22T23:28:37Z,- mademarc commented on pull request: [4228](https://github.com/hackforla/website/pull/4228#issuecomment-1480383304) at 2023-03-22 04:28 PM PDT -mademarc,2023-03-22T23:30:16Z,- mademarc submitted pull request review: [4228](https://github.com/hackforla/website/pull/4228#pullrequestreview-1353630996) at 2023-03-22 04:30 PM PDT -mademarc,2023-03-22T23:57:48Z,- mademarc assigned to issue: [4251](https://github.com/hackforla/website/issues/4251) at 2023-03-22 04:57 PM PDT -mademarc,2023-03-23T00:01:15Z,- mademarc commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480404238) at 2023-03-22 05:01 PM PDT -mademarc,2023-03-23T00:02:53Z,- mademarc unassigned from issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480404238) at 2023-03-22 05:02 PM PDT -mademarc,2023-03-24T02:02:26Z,- mademarc commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1482147766) at 2023-03-23 07:02 PM PDT -mademarc,2023-03-24T02:07:12Z,- mademarc submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1355906165) at 2023-03-23 07:07 PM PDT -mademarc,2023-03-24T02:08:22Z,- mademarc commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1482152138) at 2023-03-23 07:08 PM PDT -mademarc,2023-03-24T02:10:36Z,- mademarc submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1355908174) at 2023-03-23 07:10 PM PDT -mademarc,2023-03-24T02:21:55Z,- mademarc commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1482160585) at 2023-03-23 07:21 PM PDT -mademarc,2023-03-24T02:55:28Z,- mademarc commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482179605) at 2023-03-23 07:55 PM PDT -mademarc,2023-03-24T02:57:35Z,- mademarc submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1355934781) at 2023-03-23 07:57 PM PDT -mademarc,2023-03-25T23:06:12Z,- mademarc submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1357913666) at 2023-03-25 04:06 PM PDT -mademarc,2023-03-26T23:32:27Z,- mademarc unassigned from issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1484271417) at 2023-03-26 04:32 PM PDT -mademarc,2023-03-29T02:09:04Z,- mademarc assigned to issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487350360) at 2023-03-28 07:09 PM PDT -mademarc,2023-03-29T02:09:21Z,- mademarc commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847383) at 2023-03-28 07:09 PM PDT -mademarc,2023-03-29T02:14:33Z,- mademarc commented on pull request: [4304](https://github.com/hackforla/website/pull/4304#issuecomment-1487850736) at 2023-03-28 07:14 PM PDT -mademarc,2023-03-29T02:16:44Z,- mademarc submitted pull request review: [4304](https://github.com/hackforla/website/pull/4304#pullrequestreview-1362155509) at 2023-03-28 07:16 PM PDT -mademarc,2023-03-29T02:28:53Z,- mademarc closed issue by PR 6300: [3861](https://github.com/hackforla/website/issues/3861#event-8871295890) at 2023-03-28 07:28 PM PDT -mademarc,2023-03-29T08:17:54Z,- mademarc assigned to issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1421904264) at 2023-03-29 01:17 AM PDT -mademarc,2023-03-29T08:18:31Z,- mademarc commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1488143343) at 2023-03-29 01:18 AM PDT -mademarc,2023-03-29T08:18:51Z,- mademarc assigned to issue: [3852](https://github.com/hackforla/website/issues/3852) at 2023-03-29 01:18 AM PDT -mademarc,2023-03-29T08:19:30Z,- mademarc commented on issue: [3852](https://github.com/hackforla/website/issues/3852#issuecomment-1488144605) at 2023-03-29 01:19 AM PDT -mademarc,2023-03-29T08:19:48Z,- mademarc assigned to issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1487919594) at 2023-03-29 01:19 AM PDT -mademarc,2023-03-29T08:20:29Z,- mademarc commented on issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1488145925) at 2023-03-29 01:20 AM PDT -mademarc,2023-03-29T08:20:42Z,- mademarc assigned to issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1477039974) at 2023-03-29 01:20 AM PDT -mademarc,2023-03-29T08:21:11Z,- mademarc commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1488146932) at 2023-03-29 01:21 AM PDT -mademarc,2023-03-29T21:28:35Z,- mademarc unassigned from issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-29 02:28 PM PDT -mademarc,2023-03-29T21:29:32Z,- mademarc unassigned from issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1489160564) at 2023-03-29 02:29 PM PDT -mademarc,2023-03-29T21:31:43Z,- mademarc unassigned from issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1488145925) at 2023-03-29 02:31 PM PDT -mademarc,2023-03-29T21:31:50Z,- mademarc unassigned from issue: [3852](https://github.com/hackforla/website/issues/3852#issuecomment-1488144605) at 2023-03-29 02:31 PM PDT -mademarc,2023-03-29T21:32:25Z,- mademarc unassigned from issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1488143343) at 2023-03-29 02:32 PM PDT -mademarc,2023-03-31T02:09:54Z,- mademarc assigned to issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-30 07:09 PM PDT -mademarc,2023-03-31T02:10:16Z,- mademarc unassigned from issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-30 07:10 PM PDT -mademarc,2023-03-31T02:11:43Z,- mademarc assigned to issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1486531673) at 2023-03-30 07:11 PM PDT -mademarc,2023-03-31T02:35:35Z,- mademarc unassigned from issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1491189654) at 2023-03-30 07:35 PM PDT -mademarc,2023-04-12T03:04:14Z,- mademarc commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1504499012) at 2023-04-11 08:04 PM PDT -mademarc,2023-04-12T03:04:48Z,- mademarc commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1504499608) at 2023-04-11 08:04 PM PDT -mademarc,2023-04-14T01:02:55Z,- mademarc submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1384452108) at 2023-04-13 06:02 PM PDT -mademarc,2023-04-14T01:59:52Z,- mademarc commented on pull request: [4511](https://github.com/hackforla/website/pull/4511#issuecomment-1507821587) at 2023-04-13 06:59 PM PDT -mademarc,2023-04-14T02:04:16Z,- mademarc submitted pull request review: [4511](https://github.com/hackforla/website/pull/4511#pullrequestreview-1384499078) at 2023-04-13 07:04 PM PDT -mademarc,2023-04-19T02:18:08Z,- mademarc commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1514039038) at 2023-04-18 07:18 PM PDT -mademarc,2023-04-19T02:30:52Z,- mademarc submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1391178213) at 2023-04-18 07:30 PM PDT -mademarc,2023-04-19T02:36:10Z,- mademarc commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1514050436) at 2023-04-18 07:36 PM PDT -mademarc,2023-04-19T02:39:37Z,- mademarc submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1391183272) at 2023-04-18 07:39 PM PDT -mademarc,2023-04-21T02:05:56Z,- mademarc commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517154693) at 2023-04-20 07:05 PM PDT -mademarc,2023-04-21T02:07:49Z,- mademarc submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1394961101) at 2023-04-20 07:07 PM PDT -mademarc,2023-05-12T01:58:51Z,- mademarc commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1544995016) at 2023-05-11 06:58 PM PDT -mademarc,2023-05-12T02:04:14Z,- mademarc submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1423669556) at 2023-05-11 07:04 PM PDT -mademarc,2023-05-12T02:05:46Z,- mademarc commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1545001546) at 2023-05-11 07:05 PM PDT -mademarc,2023-05-12T02:12:16Z,- mademarc submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1423673965) at 2023-05-11 07:12 PM PDT -mademarc,2023-05-12T02:14:30Z,- mademarc commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1545007202) at 2023-05-11 07:14 PM PDT -mademarc,2023-05-12T02:17:48Z,- mademarc submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1423677022) at 2023-05-11 07:17 PM PDT -mademarc,2023-05-13T02:37:57Z,- mademarc commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1546502398) at 2023-05-12 07:37 PM PDT -mademarc,2023-05-13T02:40:45Z,- mademarc submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1425310391) at 2023-05-12 07:40 PM PDT -mademarc,2023-05-13T02:43:59Z,- mademarc commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1546503581) at 2023-05-12 07:43 PM PDT -mademarc,2023-05-13T02:48:24Z,- mademarc submitted pull request review: [4646](https://github.com/hackforla/website/pull/4646#pullrequestreview-1425311515) at 2023-05-12 07:48 PM PDT -mademarc,2023-05-19T02:06:10Z,- mademarc commented on pull request: [4694](https://github.com/hackforla/website/pull/4694#issuecomment-1553906538) at 2023-05-18 07:06 PM PDT -mademarc,2023-05-19T02:06:43Z,- mademarc submitted pull request review: [4694](https://github.com/hackforla/website/pull/4694#pullrequestreview-1433681724) at 2023-05-18 07:06 PM PDT -mademarc,2023-05-19T02:08:42Z,- mademarc commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1553907865) at 2023-05-18 07:08 PM PDT -mademarc,2023-05-30T00:05:06Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1567608788) at 2023-05-29 05:05 PM PDT -mademarc,2023-05-30T00:05:29Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1567609029) at 2023-05-29 05:05 PM PDT -mademarc,2023-06-03T02:07:02Z,- mademarc commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1574562269) at 2023-06-02 07:07 PM PDT -mademarc,2023-06-03T02:11:14Z,- mademarc submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1458785193) at 2023-06-02 07:11 PM PDT -mademarc,2023-06-03T02:11:53Z,- mademarc commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1574569857) at 2023-06-02 07:11 PM PDT -mademarc,2023-06-03T02:14:51Z,- mademarc submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1458787289) at 2023-06-02 07:14 PM PDT -mademarc,2023-06-03T02:15:28Z,- mademarc commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1574571102) at 2023-06-02 07:15 PM PDT -mademarc,2023-06-03T02:19:11Z,- mademarc submitted pull request review: [4757](https://github.com/hackforla/website/pull/4757#pullrequestreview-1458787825) at 2023-06-02 07:19 PM PDT -mademarc,2023-06-16T01:59:11Z,- mademarc commented on pull request: [4833](https://github.com/hackforla/website/pull/4833#issuecomment-1593974799) at 2023-06-15 06:59 PM PDT -mademarc,2023-06-16T02:10:07Z,- mademarc submitted pull request review: [4833](https://github.com/hackforla/website/pull/4833#pullrequestreview-1482618195) at 2023-06-15 07:10 PM PDT -mademarc,2023-06-16T02:10:42Z,- mademarc commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1593983241) at 2023-06-15 07:10 PM PDT -mademarc,2023-06-16T02:12:51Z,- mademarc commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1593984382) at 2023-06-15 07:12 PM PDT -mademarc,2023-06-16T02:17:11Z,- mademarc submitted pull request review: [4796](https://github.com/hackforla/website/pull/4796#pullrequestreview-1482624213) at 2023-06-15 07:17 PM PDT -mademarc,2023-06-16T02:22:29Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1594001144) at 2023-06-15 07:22 PM PDT -mademarc,2023-06-23T02:15:06Z,- mademarc commented on pull request: [4836](https://github.com/hackforla/website/pull/4836#issuecomment-1603596994) at 2023-06-22 07:15 PM PDT -mademarc,2023-06-23T02:16:25Z,- mademarc submitted pull request review: [4836](https://github.com/hackforla/website/pull/4836#pullrequestreview-1494297324) at 2023-06-22 07:16 PM PDT -mademarc,2023-06-23T02:16:59Z,- mademarc commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1603597897) at 2023-06-22 07:16 PM PDT -mademarc,2023-06-23T02:20:00Z,- mademarc submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1494299045) at 2023-06-22 07:20 PM PDT -mademarc,2023-06-23T02:21:53Z,- mademarc submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1494299886) at 2023-06-22 07:21 PM PDT -mademarc,2023-06-30T02:13:25Z,- mademarc commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1614018816) at 2023-06-29 07:13 PM PDT -mademarc,2023-06-30T02:14:06Z,- mademarc submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1506363161) at 2023-06-29 07:14 PM PDT -mademarc,2023-07-12T01:58:02Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1631734968) at 2023-07-11 06:58 PM PDT -mademarc,2023-07-14T02:00:45Z,- mademarc commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1635155967) at 2023-07-13 07:00 PM PDT -mademarc,2023-07-14T02:03:59Z,- mademarc submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1529480119) at 2023-07-13 07:03 PM PDT -mademarc,2023-07-14T02:04:55Z,- mademarc commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1635159322) at 2023-07-13 07:04 PM PDT -mademarc,2023-07-14T02:07:56Z,- mademarc submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1529482442) at 2023-07-13 07:07 PM PDT -mademarc,2023-07-14T02:08:53Z,- mademarc commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1635162370) at 2023-07-13 07:08 PM PDT -mademarc,2023-07-14T02:12:12Z,- mademarc submitted pull request review: [4927](https://github.com/hackforla/website/pull/4927#pullrequestreview-1529484908) at 2023-07-13 07:12 PM PDT -mademarc,2023-07-14T02:13:22Z,- mademarc commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1635165783) at 2023-07-13 07:13 PM PDT -mademarc,2023-07-14T02:19:19Z,- mademarc submitted pull request review: [4937](https://github.com/hackforla/website/pull/4937#pullrequestreview-1529489224) at 2023-07-13 07:19 PM PDT -mademarc,2023-07-14T02:20:38Z,- mademarc commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1635170445) at 2023-07-13 07:20 PM PDT -mademarc,2023-07-14T02:27:14Z,- mademarc submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1529494743) at 2023-07-13 07:27 PM PDT -mademarc,2023-07-14T02:35:05Z,- mademarc commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1635179590) at 2023-07-13 07:35 PM PDT -mademarc,2023-07-14T02:38:08Z,- mademarc submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1529504190) at 2023-07-13 07:38 PM PDT -mademarc,2023-07-21T02:19:40Z,- mademarc commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1644894826) at 2023-07-20 07:19 PM PDT -mademarc,2023-07-21T02:24:10Z,- mademarc submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1540375174) at 2023-07-20 07:24 PM PDT -mademarc,2023-07-28T02:08:08Z,- mademarc commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1654870857) at 2023-07-27 07:08 PM PDT -mademarc,2023-07-28T02:12:57Z,- mademarc submitted pull request review: [5056](https://github.com/hackforla/website/pull/5056#pullrequestreview-1551192414) at 2023-07-27 07:12 PM PDT -mademarc,2023-07-28T02:13:35Z,- mademarc commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1654874832) at 2023-07-27 07:13 PM PDT -mademarc,2023-07-28T02:15:44Z,- mademarc submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1551197261) at 2023-07-27 07:15 PM PDT -mademarc,2023-07-28T02:16:21Z,- mademarc commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1654876737) at 2023-07-27 07:16 PM PDT -mademarc,2023-07-28T02:20:51Z,- mademarc submitted pull request review: [5061](https://github.com/hackforla/website/pull/5061#pullrequestreview-1551205228) at 2023-07-27 07:20 PM PDT -mademarc,2023-07-28T02:22:49Z,- mademarc commented on pull request: [5063](https://github.com/hackforla/website/pull/5063#issuecomment-1654881064) at 2023-07-27 07:22 PM PDT -mademarc,2023-07-28T02:24:48Z,- mademarc submitted pull request review: [5063](https://github.com/hackforla/website/pull/5063#pullrequestreview-1551210979) at 2023-07-27 07:24 PM PDT -mademarc,2023-07-28T02:25:19Z,- mademarc commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1654882598) at 2023-07-27 07:25 PM PDT -mademarc,2023-07-28T02:29:11Z,- mademarc submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1551217578) at 2023-07-27 07:29 PM PDT -mademarc,2023-07-28T03:06:20Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1654909316) at 2023-07-27 08:06 PM PDT -mademarc,2023-08-12T00:11:57Z,- mademarc commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1675554847) at 2023-08-11 05:11 PM PDT -mademarc,2023-08-12T00:15:37Z,- mademarc submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1574567729) at 2023-08-11 05:15 PM PDT -mademarc,2023-08-12T00:16:56Z,- mademarc commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1675558465) at 2023-08-11 05:16 PM PDT -mademarc,2023-08-12T00:22:33Z,- mademarc submitted pull request review: [5124](https://github.com/hackforla/website/pull/5124#pullrequestreview-1574569482) at 2023-08-11 05:22 PM PDT -mademarc,2023-08-12T00:24:30Z,- mademarc commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1675562617) at 2023-08-11 05:24 PM PDT -mademarc,2023-08-12T00:29:49Z,- mademarc submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1574576830) at 2023-08-11 05:29 PM PDT -mademarc,2023-08-12T00:32:13Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1675567551) at 2023-08-11 05:32 PM PDT -mademarc,2023-08-19T02:06:46Z,- mademarc commented on pull request: [5236](https://github.com/hackforla/website/pull/5236#issuecomment-1684679037) at 2023-08-18 07:06 PM PDT -mademarc,2023-08-19T02:08:40Z,- mademarc submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1585417762) at 2023-08-18 07:08 PM PDT -mademarc,2023-08-19T02:11:08Z,- mademarc commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1684687636) at 2023-08-18 07:11 PM PDT -mademarc,2023-08-19T02:13:33Z,- mademarc submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1585426794) at 2023-08-18 07:13 PM PDT -mademarc,2023-08-25T01:56:54Z,- mademarc commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1692645294) at 2023-08-24 06:56 PM PDT -mademarc,2023-08-25T02:07:26Z,- mademarc submitted pull request review: [5258](https://github.com/hackforla/website/pull/5258#pullrequestreview-1594709298) at 2023-08-24 07:07 PM PDT -mademarc,2023-08-25T02:08:02Z,- mademarc commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1692653319) at 2023-08-24 07:08 PM PDT -mademarc,2023-08-25T02:11:23Z,- mademarc submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1594712129) at 2023-08-24 07:11 PM PDT -mademarc,2023-08-25T02:11:55Z,- mademarc commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1692655924) at 2023-08-24 07:11 PM PDT -mademarc,2023-08-25T02:13:50Z,- mademarc submitted pull request review: [5262](https://github.com/hackforla/website/pull/5262#pullrequestreview-1594713544) at 2023-08-24 07:13 PM PDT -mademarc,2023-08-25T02:14:27Z,- mademarc commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1692657615) at 2023-08-24 07:14 PM PDT -mademarc,2023-08-25T02:16:34Z,- mademarc submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1594716631) at 2023-08-24 07:16 PM PDT -mademarc,2023-08-25T02:19:19Z,- mademarc commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1692661753) at 2023-08-24 07:19 PM PDT -mademarc,2023-08-25T02:21:11Z,- mademarc submitted pull request review: [5251](https://github.com/hackforla/website/pull/5251#pullrequestreview-1594722122) at 2023-08-24 07:21 PM PDT -mademarc,2023-09-01T02:02:09Z,- mademarc commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1702008957) at 2023-08-31 07:02 PM PDT -mademarc,2023-09-01T02:06:00Z,- mademarc submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1606025634) at 2023-08-31 07:06 PM PDT -mademarc,2023-09-01T02:08:50Z,- mademarc commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1702013626) at 2023-08-31 07:08 PM PDT -mademarc,2023-09-01T02:28:32Z,- mademarc submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1606069235) at 2023-08-31 07:28 PM PDT -mademarc,2023-09-01T02:37:44Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1702035155) at 2023-08-31 07:37 PM PDT -mademarc,2023-09-15T02:07:39Z,- mademarc commented on pull request: [5488](https://github.com/hackforla/website/pull/5488#issuecomment-1720385862) at 2023-09-14 07:07 PM PDT -mademarc,2023-09-15T02:10:42Z,- mademarc submitted pull request review: [5488](https://github.com/hackforla/website/pull/5488#pullrequestreview-1628092957) at 2023-09-14 07:10 PM PDT -mademarc,2023-09-29T01:56:42Z,- mademarc commented on pull request: [5575](https://github.com/hackforla/website/pull/5575#issuecomment-1740211251) at 2023-09-28 06:56 PM PDT -mademarc,2023-09-29T02:03:28Z,- mademarc submitted pull request review: [5575](https://github.com/hackforla/website/pull/5575#pullrequestreview-1649946218) at 2023-09-28 07:03 PM PDT -mademarc,2023-09-29T02:04:11Z,- mademarc commented on pull request: [5574](https://github.com/hackforla/website/pull/5574#issuecomment-1740216285) at 2023-09-28 07:04 PM PDT -mademarc,2023-09-29T02:11:03Z,- mademarc submitted pull request review: [5574](https://github.com/hackforla/website/pull/5574#pullrequestreview-1649950451) at 2023-09-28 07:11 PM PDT -mademarc,2023-10-13T02:13:21Z,- mademarc commented on pull request: [5699](https://github.com/hackforla/website/pull/5699#issuecomment-1760661619) at 2023-10-12 07:13 PM PDT -mademarc,2023-10-13T02:17:26Z,- mademarc submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1675585756) at 2023-10-12 07:17 PM PDT -mademarc,2023-10-13T02:18:42Z,- mademarc commented on pull request: [5688](https://github.com/hackforla/website/pull/5688#issuecomment-1760664764) at 2023-10-12 07:18 PM PDT -mademarc,2023-10-13T02:21:50Z,- mademarc submitted pull request review: [5688](https://github.com/hackforla/website/pull/5688#pullrequestreview-1675588288) at 2023-10-12 07:21 PM PDT -mademarc,2023-10-13T02:22:24Z,- mademarc commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1760666909) at 2023-10-12 07:22 PM PDT -mademarc,2023-10-13T02:24:45Z,- mademarc submitted pull request review: [5690](https://github.com/hackforla/website/pull/5690#pullrequestreview-1675590099) at 2023-10-12 07:24 PM PDT -mademarc,2023-10-20T02:45:23Z,- mademarc commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1771991092) at 2023-10-19 07:45 PM PDT -mademarc,2023-10-20T02:48:29Z,- mademarc submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1689096581) at 2023-10-19 07:48 PM PDT -mademarc,2023-10-20T02:49:24Z,- mademarc commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1771993830) at 2023-10-19 07:49 PM PDT -mademarc,2023-10-20T02:51:55Z,- mademarc submitted pull request review: [5732](https://github.com/hackforla/website/pull/5732#pullrequestreview-1689099299) at 2023-10-19 07:51 PM PDT -mademarc,2023-10-27T01:58:26Z,- mademarc commented on pull request: [5438](https://github.com/hackforla/website/pull/5438#issuecomment-1782171340) at 2023-10-26 06:58 PM PDT -mademarc,2023-10-27T02:04:09Z,- mademarc submitted pull request review: [5438](https://github.com/hackforla/website/pull/5438#pullrequestreview-1700889809) at 2023-10-26 07:04 PM PDT -mademarc,2023-11-17T02:55:47Z,- mademarc commented on pull request: [5898](https://github.com/hackforla/website/pull/5898#issuecomment-1815670412) at 2023-11-16 06:55 PM PST -mademarc,2023-11-17T03:00:13Z,- mademarc submitted pull request review: [5898](https://github.com/hackforla/website/pull/5898#pullrequestreview-1735942343) at 2023-11-16 07:00 PM PST -mademarc,2023-11-17T03:10:52Z,- mademarc commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1815680407) at 2023-11-16 07:10 PM PST -mademarc,2023-11-17T03:18:05Z,- mademarc submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1735955783) at 2023-11-16 07:18 PM PST -mademarc,2023-11-17T03:18:45Z,- mademarc commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1815685347) at 2023-11-16 07:18 PM PST -mademarc,2023-11-17T03:26:05Z,- mademarc submitted pull request review: [5906](https://github.com/hackforla/website/pull/5906#pullrequestreview-1735976020) at 2023-11-16 07:26 PM PST -mademarc,2023-11-23T03:40:24Z,- mademarc commented on pull request: [5928](https://github.com/hackforla/website/pull/5928#issuecomment-1823785718) at 2023-11-22 07:40 PM PST -mademarc,2023-11-23T03:42:55Z,- mademarc submitted pull request review: [5928](https://github.com/hackforla/website/pull/5928#pullrequestreview-1745665412) at 2023-11-22 07:42 PM PST -mademarc,2023-11-23T03:43:39Z,- mademarc commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1823787159) at 2023-11-22 07:43 PM PST -mademarc,2023-11-23T03:45:55Z,- mademarc submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1745666974) at 2023-11-22 07:45 PM PST -mademarc,2023-12-01T03:08:52Z,- mademarc commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1835384158) at 2023-11-30 07:08 PM PST -mademarc,2023-12-01T03:30:01Z,- mademarc submitted pull request review: [5932](https://github.com/hackforla/website/pull/5932#pullrequestreview-1758943777) at 2023-11-30 07:30 PM PST -mademarc,2024-01-12T21:38:26Z,- mademarc commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1889982778) at 2024-01-12 01:38 PM PST -mademarc,2024-01-12T21:42:39Z,- mademarc submitted pull request review: [6055](https://github.com/hackforla/website/pull/6055#pullrequestreview-1819101441) at 2024-01-12 01:42 PM PST -mademarc,2024-01-12T21:43:33Z,- mademarc commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1889987679) at 2024-01-12 01:43 PM PST -mademarc,2024-01-12T21:46:28Z,- mademarc submitted pull request review: [6081](https://github.com/hackforla/website/pull/6081#pullrequestreview-1819108899) at 2024-01-12 01:46 PM PST -mademarc,2024-01-26T03:14:51Z,- mademarc commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1911347915) at 2024-01-25 07:14 PM PST -mademarc,2024-01-26T03:16:56Z,- mademarc submitted pull request review: [6147](https://github.com/hackforla/website/pull/6147#pullrequestreview-1845023341) at 2024-01-25 07:16 PM PST -mademarc,2024-03-01T03:13:17Z,- mademarc assigned to issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1968089171) at 2024-02-29 07:13 PM PST -mademarc,2024-03-13T02:12:28Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1993133985) at 2024-03-12 07:12 PM PDT -mademarc,2024-03-27T01:59:26Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2021782876) at 2024-03-26 06:59 PM PDT -mademarc,2024-04-05T18:23:47Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2040387996) at 2024-04-05 11:23 AM PDT -mademarc,2024-04-05T18:24:58Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2040391742) at 2024-04-05 11:24 AM PDT -mademarc,2024-04-07T18:46:47Z,- mademarc unassigned from issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2041559199) at 2024-04-07 11:46 AM PDT -mademarc,2024-04-10T02:12:24Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2046334308) at 2024-04-09 07:12 PM PDT -mademarc,2024-11-13T04:24:57Z,- mademarc assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2356704529) at 2024-11-12 08:24 PM PST -mademarc,2025-01-24T03:07:29Z,- mademarc commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2611448955) at 2025-01-23 07:07 PM PST -mademarc,2025-01-24T04:13:03Z,- mademarc opened issue: [7848](https://github.com/hackforla/website/issues/7848) at 2025-01-23 08:13 PM PST -mademarc,2025-02-14T03:08:36Z,- mademarc assigned to issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2444825642) at 2025-02-13 07:08 PM PST -mademarc,2025-02-14T03:08:50Z,- mademarc unassigned from issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:08 PM PST -mademarc,2025-02-14T03:09:19Z,- mademarc assigned to issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:09:33Z,- mademarc unassigned from issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:09:44Z,- mademarc assigned to issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165098) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:09:58Z,- mademarc unassigned from issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165556) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:22:47Z,- mademarc assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2657932692) at 2025-02-13 07:22 PM PST -mademarc,2025-02-14T03:23:00Z,- mademarc unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658178106) at 2025-02-13 07:23 PM PST -mademarc,2025-02-14T03:30:37Z,- mademarc assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658178106) at 2025-02-13 07:30 PM PST -mademarc,2025-02-14T03:30:51Z,- mademarc unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658185774) at 2025-02-13 07:30 PM PST -mademarc,2025-02-14T03:31:31Z,- mademarc assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658185774) at 2025-02-13 07:31 PM PST -mademarc,2025-02-14T03:31:45Z,- mademarc unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658186571) at 2025-02-13 07:31 PM PST -mademarc,2025-02-14T03:59:05Z,- mademarc opened issue: [7909](https://github.com/hackforla/website/issues/7909) at 2025-02-13 07:59 PM PST -mademarc,2025-02-14T03:59:06Z,- mademarc assigned to issue: [7909](https://github.com/hackforla/website/issues/7909) at 2025-02-13 07:59 PM PST -mademarc,2025-02-19T03:14:12Z,- mademarc opened issue: [7921](https://github.com/hackforla/website/issues/7921) at 2025-02-18 07:14 PM PST -mademarc,2025-02-19T03:32:38Z,- mademarc opened issue: [7922](https://github.com/hackforla/website/issues/7922) at 2025-02-18 07:32 PM PST -mademarc,2025-02-19T03:32:39Z,- mademarc assigned to issue: [7922](https://github.com/hackforla/website/issues/7922) at 2025-02-18 07:32 PM PST -mademarc,2025-02-19T03:42:13Z,- mademarc opened issue: [7924](https://github.com/hackforla/website/issues/7924) at 2025-02-18 07:42 PM PST -mademarc,2025-02-19T03:42:14Z,- mademarc assigned to issue: [7924](https://github.com/hackforla/website/issues/7924) at 2025-02-18 07:42 PM PST -mademarc,2025-02-19T03:54:45Z,- mademarc opened issue: [7926](https://github.com/hackforla/website/issues/7926) at 2025-02-18 07:54 PM PST -mademarc,2025-02-19T03:54:46Z,- mademarc assigned to issue: [7926](https://github.com/hackforla/website/issues/7926) at 2025-02-18 07:54 PM PST -mademarc,2025-02-25T01:31:10Z,- mademarc unassigned from issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2667448949) at 2025-02-24 05:31 PM PST -mademarc,2025-02-25T01:32:03Z,- mademarc unassigned from issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2667436272) at 2025-02-24 05:32 PM PST -mademarc,2025-02-25T01:32:54Z,- mademarc unassigned from issue: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-02-24 05:32 PM PST -mademarc,2025-02-25T01:33:37Z,- mademarc unassigned from issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2658210594) at 2025-02-24 05:33 PM PST -Madhavdua,2024-01-12T09:07:04Z,- Madhavdua opened pull request: [6102](https://github.com/hackforla/website/pull/6102) at 2024-01-12 01:07 AM PST -Madhavdua,2024-01-12T18:39:13Z,- Madhavdua pull request closed w/o merging: [6102](https://github.com/hackforla/website/pull/6102#event-11472600179) at 2024-01-12 10:39 AM PST -Madhavdua,2024-01-13T19:00:13Z,- Madhavdua commented on pull request: [6102](https://github.com/hackforla/website/pull/6102#issuecomment-1890715463) at 2024-01-13 11:00 AM PST -Maia-Cochran,4332,SKILLS ISSUE -Maia-Cochran,2023-03-29T03:59:33Z,- Maia-Cochran opened issue: [4332](https://github.com/hackforla/website/issues/4332) at 2023-03-28 08:59 PM PDT -Maia-Cochran,2023-03-29T03:59:39Z,- Maia-Cochran assigned to issue: [4332](https://github.com/hackforla/website/issues/4332) at 2023-03-28 08:59 PM PDT -Maia-Cochran,2023-03-31T21:57:57Z,- Maia-Cochran commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1492657330) at 2023-03-31 02:57 PM PDT -Maia-Cochran,2023-04-24T19:13:58Z,- Maia-Cochran commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1520695682) at 2023-04-24 12:13 PM PDT -Maia-Cochran,2023-04-24T19:16:25Z,- Maia-Cochran assigned to issue: [4414](https://github.com/hackforla/website/issues/4414) at 2023-04-24 12:16 PM PDT -Maia-Cochran,2023-04-24T19:33:35Z,- Maia-Cochran commented on issue: [4414](https://github.com/hackforla/website/issues/4414#issuecomment-1520718633) at 2023-04-24 12:33 PM PDT -Maia-Cochran,2023-04-24T19:34:28Z,- Maia-Cochran commented on issue: [4414](https://github.com/hackforla/website/issues/4414#issuecomment-1520719637) at 2023-04-24 12:34 PM PDT -Maia-Cochran,2023-04-24T20:05:08Z,- Maia-Cochran opened pull request: [4561](https://github.com/hackforla/website/pull/4561) at 2023-04-24 01:05 PM PDT -Maia-Cochran,2023-04-26T20:51:05Z,- Maia-Cochran pull request merged: [4561](https://github.com/hackforla/website/pull/4561#event-9107826025) at 2023-04-26 01:51 PM PDT -Maia-Cochran,2023-05-16T00:33:29Z,- Maia-Cochran commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1548797325) at 2023-05-15 05:33 PM PDT -Maia-Cochran,2023-05-16T00:41:34Z,- Maia-Cochran assigned to issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1547140586) at 2023-05-15 05:41 PM PDT -Maia-Cochran,2023-05-16T00:53:51Z,- Maia-Cochran commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1548810501) at 2023-05-15 05:53 PM PDT -Maia-Cochran,2023-05-16T00:58:07Z,- Maia-Cochran opened pull request: [4680](https://github.com/hackforla/website/pull/4680) at 2023-05-15 05:58 PM PDT -Maia-Cochran,2023-05-22T22:07:49Z,- Maia-Cochran commented on pull request: [4680](https://github.com/hackforla/website/pull/4680#issuecomment-1558092894) at 2023-05-22 03:07 PM PDT -Maia-Cochran,2023-05-24T16:15:13Z,- Maia-Cochran pull request merged: [4680](https://github.com/hackforla/website/pull/4680#event-9330015040) at 2023-05-24 09:15 AM PDT -mailemalin,2019-12-06T00:13:13Z,- mailemalin assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-560940316) at 2019-12-05 04:13 PM PST -mailemalin,2019-12-10T02:29:22Z,- mailemalin unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-560940316) at 2019-12-09 06:29 PM PST -mamypoco,7626,SKILLS ISSUE -mamypoco,2024-10-23T03:17:37Z,- mamypoco opened issue: [7626](https://github.com/hackforla/website/issues/7626) at 2024-10-22 08:17 PM PDT -mamypoco,2024-10-23T03:18:19Z,- mamypoco assigned to issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2430760163) at 2024-10-22 08:18 PM PDT -mamypoco,2024-10-29T18:20:29Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2445025043) at 2024-10-29 11:20 AM PDT -mamypoco,2024-10-29T19:28:52Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2445149162) at 2024-10-29 12:28 PM PDT -mamypoco,2024-10-29T21:41:53Z,- mamypoco assigned to issue: [7584](https://github.com/hackforla/website/issues/7584) at 2024-10-29 02:41 PM PDT -mamypoco,2024-10-29T22:38:02Z,- mamypoco opened pull request: [7665](https://github.com/hackforla/website/pull/7665) at 2024-10-29 03:38 PM PDT -mamypoco,2024-10-29T23:03:50Z,- mamypoco commented on issue: [7584](https://github.com/hackforla/website/issues/7584#issuecomment-2445481329) at 2024-10-29 04:03 PM PDT -mamypoco,2024-10-29T23:15:34Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2445494315) at 2024-10-29 04:15 PM PDT -mamypoco,2024-10-29T23:47:44Z,- mamypoco commented on issue: [7584](https://github.com/hackforla/website/issues/7584#issuecomment-2445525499) at 2024-10-29 04:47 PM PDT -mamypoco,2024-10-29T23:51:53Z,- mamypoco commented on pull request: [7665](https://github.com/hackforla/website/pull/7665#issuecomment-2445529134) at 2024-10-29 04:51 PM PDT -mamypoco,2024-10-30T15:47:38Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2447603768) at 2024-10-30 08:47 AM PDT -mamypoco,2024-10-30T16:32:17Z,- mamypoco commented on issue: [7584](https://github.com/hackforla/website/issues/7584#issuecomment-2447741187) at 2024-10-30 09:32 AM PDT -mamypoco,2024-10-30T16:34:08Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2447745567) at 2024-10-30 09:34 AM PDT -mamypoco,2024-10-30T16:40:21Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2447761324) at 2024-10-30 09:40 AM PDT -mamypoco,2024-11-04T04:18:24Z,- mamypoco pull request merged: [7665](https://github.com/hackforla/website/pull/7665#event-15097890230) at 2024-11-03 08:18 PM PST -mamypoco,2024-11-04T21:45:25Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2455764848) at 2024-11-04 01:45 PM PST -mamypoco,2024-11-04T21:48:22Z,- mamypoco assigned to issue: [7619](https://github.com/hackforla/website/issues/7619) at 2024-11-04 01:48 PM PST -mamypoco,2024-11-05T01:01:07Z,- mamypoco commented on issue: [7619](https://github.com/hackforla/website/issues/7619#issuecomment-2456007531) at 2024-11-04 05:01 PM PST -mamypoco,2024-11-05T05:23:25Z,- mamypoco opened pull request: [7700](https://github.com/hackforla/website/pull/7700) at 2024-11-04 09:23 PM PST -mamypoco,2024-11-05T05:26:41Z,- mamypoco commented on issue: [7619](https://github.com/hackforla/website/issues/7619#issuecomment-2456264807) at 2024-11-04 09:26 PM PST -mamypoco,2024-11-05T16:47:09Z,- mamypoco pull request merged: [7700](https://github.com/hackforla/website/pull/7700#event-15123614955) at 2024-11-05 08:47 AM PST -mamypoco,2024-11-05T17:24:44Z,- mamypoco commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2457766259) at 2024-11-05 09:24 AM PST -mamypoco,2024-11-05T19:33:46Z,- mamypoco commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458002330) at 2024-11-05 11:33 AM PST -mamypoco,2024-11-05T20:49:02Z,- mamypoco reopened pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458111465) at 2024-11-05 12:49 PM PST -mamypoco,2024-11-05T20:51:47Z,- mamypoco commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458128922) at 2024-11-05 12:51 PM PST -mamypoco,2024-11-05T22:45:43Z,- mamypoco commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458290641) at 2024-11-05 02:45 PM PST -mamypoco,2024-11-06T16:35:19Z,- mamypoco pull request merged: [7700](https://github.com/hackforla/website/pull/7700#event-15154508487) at 2024-11-06 08:35 AM PST -mamypoco,2024-11-06T18:17:21Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2460469920) at 2024-11-06 10:17 AM PST -mamypoco,2024-11-15T03:15:39Z,- mamypoco commented on pull request: [7721](https://github.com/hackforla/website/pull/7721#issuecomment-2477870442) at 2024-11-14 07:15 PM PST -mamypoco,2024-11-15T18:34:21Z,- mamypoco submitted pull request review: [7721](https://github.com/hackforla/website/pull/7721#pullrequestreview-2439365513) at 2024-11-15 10:34 AM PST -mamypoco,2024-11-15T18:41:53Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2479697737) at 2024-11-15 10:41 AM PST -mamypoco,2024-11-15T18:44:05Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2479701545) at 2024-11-15 10:44 AM PST -mamypoco,2024-11-19T22:06:17Z,- mamypoco commented on pull request: [7728](https://github.com/hackforla/website/pull/7728#issuecomment-2486849321) at 2024-11-19 02:06 PM PST -mamypoco,2024-11-19T22:41:56Z,- mamypoco submitted pull request review: [7728](https://github.com/hackforla/website/pull/7728#pullrequestreview-2446798395) at 2024-11-19 02:41 PM PST -mamypoco,2024-11-19T22:48:49Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2486908146) at 2024-11-19 02:48 PM PST -mamypoco,2025-01-10T17:05:19Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2583278889) at 2025-01-10 09:05 AM PST -mamypoco,2025-01-13T20:44:19Z,- mamypoco submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2547842224) at 2025-01-13 12:44 PM PST -mamypoco,2025-01-13T21:01:24Z,- mamypoco commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2588190615) at 2025-01-13 01:01 PM PST -mamypoco,2025-01-21T18:06:07Z,- mamypoco submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2565367973) at 2025-01-21 10:06 AM PST -manaswita3303,7893,SKILLS ISSUE -manaswita3303,2025-02-05T04:42:07Z,- manaswita3303 opened issue: [7892](https://github.com/hackforla/website/issues/7892) at 2025-02-04 08:42 PM PST -manaswita3303,2025-02-05T09:10:35Z,- manaswita3303 closed issue as completed: [7892](https://github.com/hackforla/website/issues/7892#event-16191270187) at 2025-02-05 01:10 AM PST -manaswita3303,2025-02-05T09:18:52Z,- manaswita3303 opened issue: [7893](https://github.com/hackforla/website/issues/7893) at 2025-02-05 01:18 AM PST -manaswita3303,2025-02-05T09:18:53Z,- manaswita3303 assigned to issue: [7893](https://github.com/hackforla/website/issues/7893) at 2025-02-05 01:18 AM PST -manaswita3303,2025-02-05T12:41:01Z,- manaswita3303 commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2636685835) at 2025-02-05 04:41 AM PST -manaswita3303,2025-02-24T21:06:15Z,- manaswita3303 commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2679648346) at 2025-02-24 01:06 PM PST -manaswita3303,2025-02-24T22:09:40Z,- manaswita3303 commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2679771227) at 2025-02-24 02:09 PM PST -marcobarrera,2021-06-09T01:36:40Z,- marcobarrera assigned to issue: [1532](https://github.com/hackforla/website/issues/1532) at 2021-06-08 06:36 PM PDT -marcobarrera,2021-06-09T02:01:16Z,- marcobarrera opened pull request: [1702](https://github.com/hackforla/website/pull/1702) at 2021-06-08 07:01 PM PDT -marcobarrera,2021-06-09T02:58:24Z,- marcobarrera commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-857333175) at 2021-06-08 07:58 PM PDT -marcobarrera,2021-06-10T14:37:29Z,- marcobarrera pull request merged: [1702](https://github.com/hackforla/website/pull/1702#event-4871867617) at 2021-06-10 07:37 AM PDT -marcobarrera,2021-06-11T01:47:57Z,- marcobarrera assigned to issue: [1606](https://github.com/hackforla/website/issues/1606) at 2021-06-10 06:47 PM PDT -marcobarrera,2021-06-12T19:20:14Z,- marcobarrera opened pull request: [1726](https://github.com/hackforla/website/pull/1726) at 2021-06-12 12:20 PM PDT -marcobarrera,2021-06-12T20:02:00Z,- marcobarrera closed issue by PR 1972: [1482](https://github.com/hackforla/website/issues/1482#event-4881619223) at 2021-06-12 01:02 PM PDT -marcobarrera,2021-06-12T20:02:05Z,- marcobarrera reopened issue: [1482](https://github.com/hackforla/website/issues/1482#event-4881619223) at 2021-06-12 01:02 PM PDT -marcobarrera,2021-06-12T20:10:35Z,- marcobarrera assigned to issue: [1482](https://github.com/hackforla/website/issues/1482#event-4881619223) at 2021-06-12 01:10 PM PDT -marcobarrera,2021-06-13T06:54:22Z,- marcobarrera assigned to issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-859228890) at 2021-06-12 11:54 PM PDT -marcobarrera,2021-06-13T06:55:03Z,- marcobarrera unassigned from issue: [1482](https://github.com/hackforla/website/issues/1482#event-4881619223) at 2021-06-12 11:55 PM PDT -marcobarrera,2021-06-13T16:01:31Z,- marcobarrera pull request merged: [1726](https://github.com/hackforla/website/pull/1726#event-4882426618) at 2021-06-13 09:01 AM PDT -marcobarrera,2021-06-18T07:04:25Z,- marcobarrera opened pull request: [1775](https://github.com/hackforla/website/pull/1775) at 2021-06-18 12:04 AM PDT -marcobarrera,2021-06-18T19:24:38Z,- marcobarrera assigned to issue: [1718](https://github.com/hackforla/website/issues/1718#issuecomment-860001323) at 2021-06-18 12:24 PM PDT -marcobarrera,2021-06-18T23:14:58Z,- marcobarrera opened pull request: [1785](https://github.com/hackforla/website/pull/1785) at 2021-06-18 04:14 PM PDT -marcobarrera,2021-06-19T02:13:28Z,- marcobarrera pull request merged: [1785](https://github.com/hackforla/website/pull/1785#event-4912026472) at 2021-06-18 07:13 PM PDT -marcobarrera,2021-06-19T02:29:45Z,- marcobarrera assigned to issue: [1717](https://github.com/hackforla/website/issues/1717) at 2021-06-18 07:29 PM PDT -marcobarrera,2021-06-28T22:07:33Z,- marcobarrera unassigned from issue: [1717](https://github.com/hackforla/website/issues/1717#issuecomment-870075300) at 2021-06-28 03:07 PM PDT -marcobarrera,2021-06-30T00:18:50Z,- marcobarrera commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-871004439) at 2021-06-29 05:18 PM PDT -marcobarrera,2021-06-30T00:20:49Z,- marcobarrera commented on issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-871005263) at 2021-06-29 05:20 PM PDT -marcobarrera,2021-06-30T02:19:07Z,- marcobarrera pull request merged: [1775](https://github.com/hackforla/website/pull/1775#event-4956897859) at 2021-06-29 07:19 PM PDT -marcobarrera,2021-06-30T02:38:13Z,- marcobarrera assigned to issue: [1717](https://github.com/hackforla/website/issues/1717#issuecomment-870075300) at 2021-06-29 07:38 PM PDT -marcobarrera,2021-07-02T07:40:13Z,- marcobarrera assigned to issue: [1871](https://github.com/hackforla/website/issues/1871) at 2021-07-02 12:40 AM PDT -marcobarrera,2021-07-02T07:49:23Z,- marcobarrera opened pull request: [1880](https://github.com/hackforla/website/pull/1880) at 2021-07-02 12:49 AM PDT -marcobarrera,2021-07-06T23:53:11Z,- marcobarrera unassigned from issue: [1717](https://github.com/hackforla/website/issues/1717#issuecomment-870075300) at 2021-07-06 04:53 PM PDT -marcobarrera,2021-07-06T23:54:14Z,- marcobarrera assigned to issue: [1598](https://github.com/hackforla/website/issues/1598#issuecomment-873640715) at 2021-07-06 04:54 PM PDT -marcobarrera,2021-07-07T00:43:39Z,- marcobarrera opened pull request: [1896](https://github.com/hackforla/website/pull/1896) at 2021-07-06 05:43 PM PDT -marcobarrera,2021-07-07T04:19:37Z,- marcobarrera assigned to issue: [1717](https://github.com/hackforla/website/issues/1717#issuecomment-870075300) at 2021-07-06 09:19 PM PDT -marcobarrera,2021-07-07T04:25:15Z,- marcobarrera opened pull request: [1897](https://github.com/hackforla/website/pull/1897) at 2021-07-06 09:25 PM PDT -marcobarrera,2021-07-07T04:31:51Z,- marcobarrera commented on pull request: [1896](https://github.com/hackforla/website/pull/1896#issuecomment-875268748) at 2021-07-06 09:31 PM PDT -marcobarrera,2021-07-08T03:14:23Z,- marcobarrera submitted pull request review: [1902](https://github.com/hackforla/website/pull/1902#pullrequestreview-701604212) at 2021-07-07 08:14 PM PDT -marcobarrera,2021-07-09T01:56:51Z,- marcobarrera submitted pull request review: [1903](https://github.com/hackforla/website/pull/1903#pullrequestreview-702622992) at 2021-07-08 06:56 PM PDT -marcobarrera,2021-07-09T02:00:42Z,- marcobarrera submitted pull request review: [1906](https://github.com/hackforla/website/pull/1906#pullrequestreview-702624326) at 2021-07-08 07:00 PM PDT -marcobarrera,2021-07-09T03:48:59Z,- marcobarrera pull request merged: [1896](https://github.com/hackforla/website/pull/1896#event-4998176098) at 2021-07-08 08:48 PM PDT -marcobarrera,2021-07-09T23:22:16Z,- marcobarrera pull request merged: [1880](https://github.com/hackforla/website/pull/1880#event-5002557986) at 2021-07-09 04:22 PM PDT -marcobarrera,2021-07-11T22:37:41Z,- marcobarrera pull request merged: [1897](https://github.com/hackforla/website/pull/1897#event-5004583247) at 2021-07-11 03:37 PM PDT -marcobarrera,2021-07-17T02:42:08Z,- marcobarrera assigned to issue: [1948](https://github.com/hackforla/website/issues/1948) at 2021-07-16 07:42 PM PDT -marcobarrera,2021-07-19T23:58:25Z,- marcobarrera submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-710073813) at 2021-07-19 04:58 PM PDT -marcobarrera,2021-08-09T22:33:08Z,- marcobarrera unassigned from issue: [1948](https://github.com/hackforla/website/issues/1948#issuecomment-894316896) at 2021-08-09 03:33 PM PDT -MarcosG119,6330,SKILLS ISSUE -MarcosG119,2024-02-21T03:24:56Z,- MarcosG119 opened issue: [6330](https://github.com/hackforla/website/issues/6330) at 2024-02-20 07:24 PM PST -MarcosG119,2024-02-21T04:10:49Z,- MarcosG119 assigned to issue: [6330](https://github.com/hackforla/website/issues/6330) at 2024-02-20 08:10 PM PST -MarcosG119,2024-02-25T01:19:19Z,- MarcosG119 assigned to issue: [5839](https://github.com/hackforla/website/issues/5839) at 2024-02-24 05:19 PM PST -MarcosG119,2024-02-25T03:06:43Z,- MarcosG119 commented on issue: [5839](https://github.com/hackforla/website/issues/5839#issuecomment-1962796895) at 2024-02-24 07:06 PM PST -MarcosG119,2024-02-26T22:29:40Z,- MarcosG119 opened pull request: [6381](https://github.com/hackforla/website/pull/6381) at 2024-02-26 02:29 PM PST -MarcosG119,2024-02-27T04:14:42Z,- MarcosG119 assigned to issue: [6257](https://github.com/hackforla/website/issues/6257#issuecomment-1929035661) at 2024-02-26 08:14 PM PST -MarcosG119,2024-02-27T04:17:11Z,- MarcosG119 commented on issue: [6257](https://github.com/hackforla/website/issues/6257#issuecomment-1965757481) at 2024-02-26 08:17 PM PST -MarcosG119,2024-02-27T23:26:18Z,- MarcosG119 opened pull request: [6385](https://github.com/hackforla/website/pull/6385) at 2024-02-27 03:26 PM PST -MarcosG119,2024-02-28T06:05:34Z,- MarcosG119 pull request merged: [6381](https://github.com/hackforla/website/pull/6381#event-11946818506) at 2024-02-27 10:05 PM PST -MarcosG119,2024-02-28T23:56:40Z,- MarcosG119 commented on issue: [6330](https://github.com/hackforla/website/issues/6330#issuecomment-1970127361) at 2024-02-28 03:56 PM PST -MarcosG119,2024-02-28T23:57:03Z,- MarcosG119 closed issue as completed: [6330](https://github.com/hackforla/website/issues/6330#event-11958891201) at 2024-02-28 03:57 PM PST -MarcosG119,2024-02-29T00:01:12Z,- MarcosG119 assigned to issue: [5994](https://github.com/hackforla/website/issues/5994) at 2024-02-28 04:01 PM PST -MarcosG119,2024-02-29T00:03:33Z,- MarcosG119 commented on issue: [5994](https://github.com/hackforla/website/issues/5994#issuecomment-1970136400) at 2024-02-28 04:03 PM PST -MarcosG119,2024-02-29T00:53:12Z,- MarcosG119 commented on issue: [5994](https://github.com/hackforla/website/issues/5994#issuecomment-1970183418) at 2024-02-28 04:53 PM PST -MarcosG119,2024-03-01T03:18:08Z,- MarcosG119 pull request merged: [6385](https://github.com/hackforla/website/pull/6385#event-11974037040) at 2024-02-29 07:18 PM PST -MarcosG119,2024-03-01T03:26:11Z,- MarcosG119 assigned to issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1597628550) at 2024-02-29 07:26 PM PST -MarcosG119,2024-03-01T03:51:59Z,- MarcosG119 commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1972460170) at 2024-02-29 07:51 PM PST -MarcosG119,2024-03-02T02:10:57Z,- MarcosG119 commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1974196995) at 2024-03-01 06:10 PM PST -MarcosG119,2024-03-15T00:24:47Z,- MarcosG119 commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1998688672) at 2024-03-14 05:24 PM PDT -MarcosG119,2024-03-21T02:10:16Z,- MarcosG119 assigned to issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1963072600) at 2024-03-20 07:10 PM PDT -MarcosG119,2024-03-21T02:26:21Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2011075005) at 2024-03-20 07:26 PM PDT -MarcosG119,2024-03-27T01:59:42Z,- MarcosG119 unassigned from issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2011075005) at 2024-03-26 06:59 PM PDT -MarcosG119,2024-03-27T02:00:35Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2021783658) at 2024-03-26 07:00 PM PDT -MarcosG119,2024-04-16T18:34:55Z,- MarcosG119 assigned to issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2021783658) at 2024-04-16 11:34 AM PDT -MarcosG119,2024-04-16T18:36:30Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2059710743) at 2024-04-16 11:36 AM PDT -MarcosG119,2024-04-17T01:44:49Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2060189195) at 2024-04-16 06:44 PM PDT -MarcosG119,2024-04-19T02:38:26Z,- MarcosG119 assigned to issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2046173895) at 2024-04-18 07:38 PM PDT -MarcosG119,2024-04-23T16:26:55Z,- MarcosG119 unassigned from issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2071220826) at 2024-04-23 09:26 AM PDT -Margotaro,8033,SKILLS ISSUE -Margotaro,2025-04-01T03:17:57Z,- Margotaro opened issue: [8033](https://github.com/hackforla/website/issues/8033) at 2025-03-31 08:17 PM PDT -Margotaro,2025-04-01T03:17:58Z,- Margotaro assigned to issue: [8033](https://github.com/hackforla/website/issues/8033) at 2025-03-31 08:17 PM PDT -Margotaro,2025-04-09T22:02:15Z,- Margotaro commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2791085403) at 2025-04-09 03:02 PM PDT -Margotaro,2025-04-10T02:38:16Z,- Margotaro commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2791403489) at 2025-04-09 07:38 PM PDT -Margotaro,2025-04-10T02:54:54Z,- Margotaro commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2791420153) at 2025-04-09 07:54 PM PDT -Margotaro,2025-04-10T21:43:23Z,- Margotaro assigned to issue: [7547](https://github.com/hackforla/website/issues/7547) at 2025-04-10 02:43 PM PDT -Margotaro,2025-04-12T03:06:00Z,- Margotaro opened pull request: [8058](https://github.com/hackforla/website/pull/8058) at 2025-04-11 08:06 PM PDT -Margotaro,2025-04-18T21:57:24Z,- Margotaro commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2816256983) at 2025-04-18 02:57 PM PDT -Margotaro,2025-04-19T22:05:07Z,- Margotaro pull request merged: [8058](https://github.com/hackforla/website/pull/8058#event-17329759039) at 2025-04-19 03:05 PM PDT -Margotaro,2025-04-23T01:34:41Z,- Margotaro assigned to issue: [7582](https://github.com/hackforla/website/issues/7582) at 2025-04-22 06:34 PM PDT -Margotaro,2025-04-23T01:36:20Z,- Margotaro commented on issue: [7582](https://github.com/hackforla/website/issues/7582#issuecomment-2822844222) at 2025-04-22 06:36 PM PDT -Margotaro,2025-04-23T01:39:04Z,- Margotaro commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2822847179) at 2025-04-22 06:39 PM PDT -Margotaro,2025-04-23T01:50:35Z,- Margotaro commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2822861455) at 2025-04-22 06:50 PM PDT -Margotaro,2025-04-29T09:04:18Z,- Margotaro opened pull request: [8099](https://github.com/hackforla/website/pull/8099) at 2025-04-29 02:04 AM PDT -Margotaro,2025-05-05T02:31:30Z,- Margotaro commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2849763098) at 2025-05-04 07:31 PM PDT -Margotaro,2025-05-07T16:19:58Z,- Margotaro pull request merged: [8099](https://github.com/hackforla/website/pull/8099#event-17559687498) at 2025-05-07 09:19 AM PDT -Margotaro,2025-05-27T23:31:20Z,- Margotaro commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2914433082) at 2025-05-27 04:31 PM PDT -MariannaAskova,2021-06-16T02:59:44Z,- MariannaAskova assigned to issue: [1575](https://github.com/hackforla/website/issues/1575) at 2021-06-15 07:59 PM PDT -MariannaAskova,2021-06-22T02:35:03Z,- MariannaAskova opened pull request: [1804](https://github.com/hackforla/website/pull/1804) at 2021-06-21 07:35 PM PDT -MariannaAskova,2021-06-23T02:41:41Z,- MariannaAskova assigned to issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-22 07:41 PM PDT -MariannaAskova,2021-06-23T02:48:35Z,- MariannaAskova unassigned from issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-22 07:48 PM PDT -MariannaAskova,2021-06-23T02:50:10Z,- MariannaAskova assigned to issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-22 07:50 PM PDT -MariannaAskova,2021-06-23T16:48:27Z,- MariannaAskova pull request merged: [1804](https://github.com/hackforla/website/pull/1804#event-4930073240) at 2021-06-23 09:48 AM PDT -MariannaAskova,2021-06-29T22:54:39Z,- MariannaAskova commented on issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-870970803) at 2021-06-29 03:54 PM PDT -MariannaAskova,2021-06-30T02:44:57Z,- MariannaAskova unassigned from issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-870970803) at 2021-06-29 07:44 PM PDT -MariannaAskova,2021-06-30T02:44:57Z,- MariannaAskova unassigned from issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-870970803) at 2021-06-29 07:44 PM PDT -MariannaAskova,2021-06-30T03:56:39Z,- MariannaAskova assigned to issue: [1856](https://github.com/hackforla/website/issues/1856) at 2021-06-29 08:56 PM PDT -MariannaAskova,2021-07-08T02:31:36Z,- MariannaAskova opened pull request: [1902](https://github.com/hackforla/website/pull/1902) at 2021-07-07 07:31 PM PDT -MariannaAskova,2021-07-08T02:37:25Z,- MariannaAskova assigned to issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-870074857) at 2021-07-07 07:37 PM PDT -MariannaAskova,2021-07-09T23:27:44Z,- MariannaAskova pull request merged: [1902](https://github.com/hackforla/website/pull/1902#event-5002566246) at 2021-07-09 04:27 PM PDT -MariannaAskova,2021-07-12T20:19:23Z,- MariannaAskova opened pull request: [1929](https://github.com/hackforla/website/pull/1929) at 2021-07-12 01:19 PM PDT -MariannaAskova,2021-07-13T23:42:47Z,- MariannaAskova opened pull request: [1936](https://github.com/hackforla/website/pull/1936) at 2021-07-13 04:42 PM PDT -MariannaAskova,2021-07-14T17:49:46Z,- MariannaAskova pull request merged: [1936](https://github.com/hackforla/website/pull/1936#event-5021171742) at 2021-07-14 10:49 AM PDT -MariannaAskova,2021-07-15T16:00:33Z,- MariannaAskova assigned to issue: [1920](https://github.com/hackforla/website/issues/1920) at 2021-07-15 09:00 AM PDT -MariannaAskova,2021-08-18T02:16:06Z,- MariannaAskova unassigned from issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-898972110) at 2021-08-17 07:16 PM PDT -mariareeves,3507,SKILLS ISSUE -mariareeves,5924,SKILLS ISSUE -mariareeves,2022-08-31T02:48:22Z,- mariareeves opened issue: [3507](https://github.com/hackforla/website/issues/3507) at 2022-08-30 07:48 PM PDT -mariareeves,2022-08-31T03:47:09Z,- mariareeves assigned to issue: [3507](https://github.com/hackforla/website/issues/3507) at 2022-08-30 08:47 PM PDT -mariareeves,2022-08-31T03:51:48Z,- mariareeves assigned to issue: [2824](https://github.com/hackforla/website/issues/2824#issuecomment-1046380875) at 2022-08-30 08:51 PM PDT -mariareeves,2022-08-31T22:52:31Z,- mariareeves commented on issue: [2824](https://github.com/hackforla/website/issues/2824#issuecomment-1233512940) at 2022-08-31 03:52 PM PDT -mariareeves,2022-09-06T01:28:00Z,- mariareeves commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1237566037) at 2022-09-05 06:28 PM PDT -mariareeves,2022-09-13T21:59:59Z,- mariareeves opened pull request: [3551](https://github.com/hackforla/website/pull/3551) at 2022-09-13 02:59 PM PDT -mariareeves,2022-09-13T22:07:48Z,- mariareeves commented on issue: [2824](https://github.com/hackforla/website/issues/2824#issuecomment-1245999575) at 2022-09-13 03:07 PM PDT -mariareeves,2022-09-14T17:55:46Z,- mariareeves assigned to issue: [2924](https://github.com/hackforla/website/issues/2924#issuecomment-1058608959) at 2022-09-14 10:55 AM PDT -mariareeves,2022-09-14T18:06:38Z,- mariareeves commented on issue: [2924](https://github.com/hackforla/website/issues/2924#issuecomment-1247128608) at 2022-09-14 11:06 AM PDT -mariareeves,2022-09-16T03:58:07Z,- mariareeves pull request merged: [3551](https://github.com/hackforla/website/pull/3551#event-7399843177) at 2022-09-15 08:58 PM PDT -mariareeves,2022-09-16T18:25:30Z,- mariareeves opened pull request: [3560](https://github.com/hackforla/website/pull/3560) at 2022-09-16 11:25 AM PDT -mariareeves,2022-09-19T03:56:45Z,- mariareeves pull request merged: [3560](https://github.com/hackforla/website/pull/3560#event-7410235255) at 2022-09-18 08:56 PM PDT -mariareeves,2022-09-20T18:24:29Z,- mariareeves assigned to issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1244537560) at 2022-09-20 11:24 AM PDT -mariareeves,2022-09-20T18:31:19Z,- mariareeves commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1252754738) at 2022-09-20 11:31 AM PDT -mariareeves,2022-09-21T02:32:31Z,- mariareeves commented on pull request: [3566](https://github.com/hackforla/website/pull/3566#issuecomment-1253130796) at 2022-09-20 07:32 PM PDT -mariareeves,2022-09-26T17:07:40Z,- mariareeves commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1258354958) at 2022-09-26 10:07 AM PDT -mariareeves,2022-09-27T18:38:33Z,- mariareeves opened pull request: [3586](https://github.com/hackforla/website/pull/3586) at 2022-09-27 11:38 AM PDT -mariareeves,2022-09-28T18:19:59Z,- mariareeves commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1261302226) at 2022-09-28 11:19 AM PDT -mariareeves,2022-10-02T00:48:58Z,- mariareeves pull request merged: [3586](https://github.com/hackforla/website/pull/3586#event-7501262214) at 2022-10-01 05:48 PM PDT -mariareeves,2022-10-09T18:43:11Z,- mariareeves unassigned from issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272603882) at 2022-10-09 11:43 AM PDT -mariareeves,2022-10-17T19:09:10Z,- mariareeves commented on pull request: [3632](https://github.com/hackforla/website/pull/3632#issuecomment-1281345206) at 2022-10-17 12:09 PM PDT -mariareeves,2022-10-17T19:12:17Z,- mariareeves submitted pull request review: [3632](https://github.com/hackforla/website/pull/3632#pullrequestreview-1144680065) at 2022-10-17 12:12 PM PDT -mariareeves,2023-11-20T19:29:04Z,- mariareeves opened issue: [5924](https://github.com/hackforla/website/issues/5924) at 2023-11-20 11:29 AM PST -mariareeves,2023-11-20T19:30:08Z,- mariareeves assigned to issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1819672696) at 2023-11-20 11:30 AM PST -mariastudnicka,2021-01-29T00:59:52Z,- mariastudnicka opened issue: [973](https://github.com/hackforla/website/issues/973) at 2021-01-28 04:59 PM PST -mariastudnicka,2021-01-29T01:16:17Z,- mariastudnicka closed issue as completed: [973](https://github.com/hackforla/website/issues/973#event-4263936956) at 2021-01-28 05:16 PM PST -mariastudnicka,2021-01-29T01:16:55Z,- mariastudnicka commented on issue: [973](https://github.com/hackforla/website/issues/973#issuecomment-769506409) at 2021-01-28 05:16 PM PST -mariaweissman,2024-05-08T00:32:13Z,- mariaweissman opened issue: [6834](https://github.com/hackforla/website/issues/6834) at 2024-05-07 05:32 PM PDT -mariaweissman,2024-05-29T17:35:50Z,- mariaweissman commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2137935106) at 2024-05-29 10:35 AM PDT -mariaweissman,2024-10-10T18:34:10Z,- mariaweissman opened issue: [7580](https://github.com/hackforla/website/issues/7580) at 2024-10-10 11:34 AM PDT -mariaweissman,2025-05-12T23:42:10Z,- mariaweissman opened issue: [8125](https://github.com/hackforla/website/issues/8125) at 2025-05-12 04:42 PM PDT -marioantonini,6427,SKILLS ISSUE -marioantonini,2024-03-05T04:03:34Z,- marioantonini opened issue: [6427](https://github.com/hackforla/website/issues/6427) at 2024-03-04 08:03 PM PST -marioantonini,2024-03-05T04:10:28Z,- marioantonini assigned to issue: [6427](https://github.com/hackforla/website/issues/6427) at 2024-03-04 08:10 PM PST -marioantonini,2024-03-07T16:42:34Z,- marioantonini assigned to issue: [6153](https://github.com/hackforla/website/issues/6153) at 2024-03-07 08:42 AM PST -marioantonini,2024-03-07T16:54:29Z,- marioantonini commented on issue: [6153](https://github.com/hackforla/website/issues/6153#issuecomment-1983997941) at 2024-03-07 08:54 AM PST -marioantonini,2024-03-08T03:59:38Z,- marioantonini opened pull request: [6439](https://github.com/hackforla/website/pull/6439) at 2024-03-07 07:59 PM PST -marioantonini,2024-03-08T04:24:04Z,- marioantonini commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-1985017791) at 2024-03-07 08:24 PM PST -marioantonini,2024-03-08T06:40:14Z,- marioantonini pull request merged: [6439](https://github.com/hackforla/website/pull/6439#event-12051665358) at 2024-03-07 10:40 PM PST -marioantonini,2024-03-08T20:06:44Z,- marioantonini assigned to issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1984859100) at 2024-03-08 12:06 PM PST -marioantonini,2024-03-08T20:08:34Z,- marioantonini commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1986349900) at 2024-03-08 12:08 PM PST -marioantonini,2024-03-08T20:44:42Z,- marioantonini opened pull request: [6441](https://github.com/hackforla/website/pull/6441) at 2024-03-08 12:44 PM PST -marioantonini,2024-03-10T19:46:05Z,- marioantonini submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1926686715) at 2024-03-10 12:46 PM PDT -marioantonini,2024-03-10T20:35:52Z,- marioantonini commented on pull request: [6440](https://github.com/hackforla/website/pull/6440#issuecomment-1987354643) at 2024-03-10 01:35 PM PDT -marioantonini,2024-03-10T21:16:54Z,- marioantonini submitted pull request review: [6440](https://github.com/hackforla/website/pull/6440#pullrequestreview-1926704832) at 2024-03-10 02:16 PM PDT -marioantonini,2024-03-11T20:33:12Z,- marioantonini pull request merged: [6441](https://github.com/hackforla/website/pull/6441#event-12079804190) at 2024-03-11 01:33 PM PDT -marioantonini,2024-03-11T21:29:15Z,- marioantonini commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-1989478502) at 2024-03-11 02:29 PM PDT -marioantonini,2024-03-12T01:16:53Z,- marioantonini assigned to issue: [6096](https://github.com/hackforla/website/issues/6096) at 2024-03-11 06:16 PM PDT -marioantonini,2024-03-12T01:18:25Z,- marioantonini commented on issue: [6096](https://github.com/hackforla/website/issues/6096#issuecomment-1989732777) at 2024-03-11 06:18 PM PDT -marioantonini,2024-03-15T15:16:55Z,- marioantonini assigned to issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1977550201) at 2024-03-15 08:16 AM PDT -marioantonini,2024-03-15T15:18:48Z,- marioantonini commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1999890799) at 2024-03-15 08:18 AM PDT -marioantonini,2024-03-15T22:27:31Z,- marioantonini commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-2000583287) at 2024-03-15 03:27 PM PDT -marioantonini,2024-03-15T23:39:35Z,- marioantonini opened pull request: [6468](https://github.com/hackforla/website/pull/6468) at 2024-03-15 04:39 PM PDT -marioantonini,2024-03-18T04:27:18Z,- marioantonini pull request merged: [6468](https://github.com/hackforla/website/pull/6468#event-12145712975) at 2024-03-17 09:27 PM PDT -marioantonini,2024-03-19T17:51:49Z,- marioantonini commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-2007798969) at 2024-03-19 10:51 AM PDT -marioantonini,2024-03-19T18:01:57Z,- marioantonini assigned to issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1999127995) at 2024-03-19 11:01 AM PDT -marioantonini,2024-03-19T18:03:45Z,- marioantonini commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-2007820078) at 2024-03-19 11:03 AM PDT -marioantonini,2024-03-21T16:25:35Z,- marioantonini commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-2012882652) at 2024-03-21 09:25 AM PDT -marioantonini,2024-03-21T22:49:15Z,- marioantonini opened pull request: [6502](https://github.com/hackforla/website/pull/6502) at 2024-03-21 03:49 PM PDT -marioantonini,2024-03-24T17:56:03Z,- marioantonini closed issue as completed: [6427](https://github.com/hackforla/website/issues/6427#event-12227192452) at 2024-03-24 10:56 AM PDT -marioantonini,2024-03-24T18:31:29Z,- marioantonini commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016895756) at 2024-03-24 11:31 AM PDT -marioantonini,2024-03-24T19:01:05Z,- marioantonini commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016908353) at 2024-03-24 12:01 PM PDT -marioantonini,2024-03-24T20:55:03Z,- marioantonini opened issue: [6511](https://github.com/hackforla/website/issues/6511) at 2024-03-24 01:55 PM PDT -marioantonini,2024-03-24T21:14:35Z,- marioantonini opened issue: [6512](https://github.com/hackforla/website/issues/6512) at 2024-03-24 02:14 PM PDT -marioantonini,2024-03-24T21:23:30Z,- marioantonini opened issue: [6513](https://github.com/hackforla/website/issues/6513) at 2024-03-24 02:23 PM PDT -marioantonini,2024-03-24T21:29:13Z,- marioantonini opened issue: [6514](https://github.com/hackforla/website/issues/6514) at 2024-03-24 02:29 PM PDT -marioantonini,2024-03-24T21:42:03Z,- marioantonini opened issue: [6515](https://github.com/hackforla/website/issues/6515) at 2024-03-24 02:42 PM PDT -marioantonini,2024-03-24T21:54:24Z,- marioantonini commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016957585) at 2024-03-24 02:54 PM PDT -marioantonini,2024-03-24T22:33:33Z,- marioantonini pull request merged: [6502](https://github.com/hackforla/website/pull/6502#event-12227761721) at 2024-03-24 03:33 PM PDT -marioantonini,2024-03-25T00:12:36Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017004503) at 2024-03-24 05:12 PM PDT -marioantonini,2024-03-25T00:23:35Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017010108) at 2024-03-24 05:23 PM PDT -marioantonini,2024-03-25T00:36:27Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017020447) at 2024-03-24 05:36 PM PDT -marioantonini,2024-03-25T01:35:05Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017056255) at 2024-03-24 06:35 PM PDT -marioantonini,2024-04-18T19:06:03Z,- marioantonini assigned to issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064982041) at 2024-04-18 12:06 PM PDT -marioantonini,2024-04-18T19:07:35Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064987612) at 2024-04-18 12:07 PM PDT -marioantonini,2024-04-20T03:04:51Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2067527103) at 2024-04-19 08:04 PM PDT -marioantonini,2024-04-25T22:44:46Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078291866) at 2024-04-25 03:44 PM PDT -marioantonini,2024-04-26T00:36:29Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078395211) at 2024-04-25 05:36 PM PDT -marioantonini,2024-05-03T16:39:54Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2093374242) at 2024-05-03 09:39 AM PDT -marioantonini,2024-05-03T20:13:59Z,- marioantonini opened pull request: [6811](https://github.com/hackforla/website/pull/6811) at 2024-05-03 01:13 PM PDT -marioantonini,2024-05-03T22:16:03Z,- marioantonini pull request merged: [6811](https://github.com/hackforla/website/pull/6811#event-12701670566) at 2024-05-03 03:16 PM PDT -marioantonini,2024-05-07T23:29:35Z,- marioantonini commented on pull request: [6816](https://github.com/hackforla/website/pull/6816#issuecomment-2099471527) at 2024-05-07 04:29 PM PDT -marioantonini,2024-05-08T21:33:22Z,- marioantonini commented on pull request: [6839](https://github.com/hackforla/website/pull/6839#issuecomment-2101517419) at 2024-05-08 02:33 PM PDT -marioantonini,2024-05-08T21:38:21Z,- marioantonini submitted pull request review: [6839](https://github.com/hackforla/website/pull/6839#pullrequestreview-2046773366) at 2024-05-08 02:38 PM PDT -marioantonini,2024-05-10T02:06:56Z,- marioantonini assigned to issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2005059827) at 2024-05-09 07:06 PM PDT -marioantonini,2024-05-10T02:10:01Z,- marioantonini commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2103721294) at 2024-05-09 07:10 PM PDT -marioantonini,2024-05-10T17:25:33Z,- marioantonini commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2104994527) at 2024-05-10 10:25 AM PDT -marioantonini,2024-05-10T17:25:33Z,- marioantonini closed issue as completed: [5098](https://github.com/hackforla/website/issues/5098#event-12772263635) at 2024-05-10 10:25 AM PDT -marioantonini,2024-05-10T17:32:58Z,- marioantonini assigned to issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2030924477) at 2024-05-10 10:32 AM PDT -marioantonini,2024-05-10T17:33:37Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2105005219) at 2024-05-10 10:33 AM PDT -marioantonini,2024-05-10T18:13:16Z,- marioantonini opened issue: [6847](https://github.com/hackforla/website/issues/6847) at 2024-05-10 11:13 AM PDT -marioantonini,2024-05-10T18:49:12Z,- marioantonini opened issue: [6848](https://github.com/hackforla/website/issues/6848) at 2024-05-10 11:49 AM PDT -marioantonini,2024-05-10T18:52:47Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2105113473) at 2024-05-10 11:52 AM PDT -marioantonini,2024-05-15T04:25:12Z,- marioantonini assigned to issue: [6847](https://github.com/hackforla/website/issues/6847) at 2024-05-14 09:25 PM PDT -marioantonini,2024-05-15T17:53:40Z,- marioantonini assigned to issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2111473424) at 2024-05-15 10:53 AM PDT -marioantonini,2024-05-15T17:59:23Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2113133097) at 2024-05-15 10:59 AM PDT -marioantonini,2024-05-15T18:50:44Z,- marioantonini commented on issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2113237729) at 2024-05-15 11:50 AM PDT -marioantonini,2024-05-15T18:51:01Z,- marioantonini unassigned from issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2113237729) at 2024-05-15 11:51 AM PDT -marioantonini,2024-05-17T22:51:49Z,- marioantonini opened issue: [6858](https://github.com/hackforla/website/issues/6858) at 2024-05-17 03:51 PM PDT -marioantonini,2024-05-17T22:54:26Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2118466945) at 2024-05-17 03:54 PM PDT -marioantonini,2024-05-17T22:55:43Z,- marioantonini unassigned from issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2113124181) at 2024-05-17 03:55 PM PDT -marioantonini,2024-05-18T01:23:46Z,- marioantonini submitted pull request review: [6854](https://github.com/hackforla/website/pull/6854#pullrequestreview-2064524686) at 2024-05-17 06:23 PM PDT -marioantonini,2024-05-19T19:28:33Z,- marioantonini assigned to issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2113124181) at 2024-05-19 12:28 PM PDT -marioantonini,2024-05-19T19:34:28Z,- marioantonini unassigned from issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2119336517) at 2024-05-19 12:34 PM PDT -marioantonini,2024-05-19T19:39:24Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119339203) at 2024-05-19 12:39 PM PDT -marioantonini,2024-05-19T19:39:35Z,- marioantonini closed issue as completed: [6224](https://github.com/hackforla/website/issues/6224#event-12859098378) at 2024-05-19 12:39 PM PDT -marioantonini,2024-05-19T19:46:56Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2119340959) at 2024-05-19 12:46 PM PDT -marioantonini,2024-05-19T20:03:22Z,- marioantonini assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-05-19 01:03 PM PDT -marioantonini,2024-05-19T20:05:25Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2119345324) at 2024-05-19 01:05 PM PDT -marioantonini,2024-05-22T00:03:08Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2123615448) at 2024-05-21 05:03 PM PDT -marioantonini,2024-06-05T23:01:40Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2151098327) at 2024-06-05 04:01 PM PDT -marioantonini,2024-06-07T23:25:35Z,- marioantonini submitted pull request review: [6854](https://github.com/hackforla/website/pull/6854#pullrequestreview-2105496454) at 2024-06-07 04:25 PM PDT -marioantonini,2024-06-07T23:31:30Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2155693871) at 2024-06-07 04:31 PM PDT -marioantonini,2024-06-07T23:43:06Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2155699786) at 2024-06-07 04:43 PM PDT -marioantonini,2024-06-10T19:12:17Z,- marioantonini commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2159109541) at 2024-06-10 12:12 PM PDT -marioantonini,2024-06-23T00:08:01Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2184258005) at 2024-06-22 05:08 PM PDT -marioantonini,2024-09-09T08:35:31Z,- marioantonini unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2184258005) at 2024-09-09 01:35 AM PDT -mariorecinos,4172,SKILLS ISSUE -mariorecinos,2023-03-14T03:09:24Z,- mariorecinos opened issue: [4168](https://github.com/hackforla/website/issues/4168) at 2023-03-13 08:09 PM PDT -mariorecinos,2023-03-14T03:22:29Z,- mariorecinos assigned to issue: [4168](https://github.com/hackforla/website/issues/4168) at 2023-03-13 08:22 PM PDT -mariorecinos,2023-03-14T03:28:23Z,- mariorecinos unassigned from issue: [4168](https://github.com/hackforla/website/issues/4168) at 2023-03-13 08:28 PM PDT -mariorecinos,2023-03-14T03:37:27Z,- mariorecinos opened issue: [4172](https://github.com/hackforla/website/issues/4172) at 2023-03-13 08:37 PM PDT -mariorecinos,2023-03-14T03:37:28Z,- mariorecinos assigned to issue: [4172](https://github.com/hackforla/website/issues/4172) at 2023-03-13 08:37 PM PDT -mariorecinos,2023-03-21T04:57:02Z,- mariorecinos closed issue as completed: [4172](https://github.com/hackforla/website/issues/4172#event-8801345008) at 2023-03-20 09:57 PM PDT -mariorecinos,2023-03-21T05:16:25Z,- mariorecinos commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1477297156) at 2023-03-20 10:16 PM PDT -mariorecinos,2023-03-21T05:26:32Z,- mariorecinos reopened issue: [4172](https://github.com/hackforla/website/issues/4172#event-8801345008) at 2023-03-20 10:26 PM PDT -mariorecinos,2023-03-21T05:27:01Z,- mariorecinos commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1477304529) at 2023-03-20 10:27 PM PDT -mariorecinos,2023-03-21T05:55:55Z,- mariorecinos submitted pull request review: [4222](https://github.com/hackforla/website/pull/4222#pullrequestreview-1349749015) at 2023-03-20 10:55 PM PDT -mariorecinos,2023-03-21T06:03:21Z,- mariorecinos submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1349754039) at 2023-03-20 11:03 PM PDT -mariorecinos,2023-03-21T17:13:53Z,- mariorecinos commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1478288591) at 2023-03-21 10:13 AM PDT -mariorecinos,2023-03-21T18:34:00Z,- mariorecinos submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1351167824) at 2023-03-21 11:34 AM PDT -mariorecinos,2023-03-22T02:04:11Z,- mariorecinos commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1478820849) at 2023-03-21 07:04 PM PDT -mariorecinos,2023-03-22T02:28:16Z,- mariorecinos submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1351633623) at 2023-03-21 07:28 PM PDT -mariorecinos,2023-03-22T02:35:53Z,- mariorecinos commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1478840183) at 2023-03-21 07:35 PM PDT -mariorecinos,2023-03-25T02:07:38Z,- mariorecinos submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1357707034) at 2023-03-24 07:07 PM PDT -mariorecinos,2023-04-07T20:03:31Z,- mariorecinos commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1500600616) at 2023-04-07 01:03 PM PDT -MarkWiltberger,3915,SKILLS ISSUE -MarkWiltberger,2023-02-01T04:58:30Z,- MarkWiltberger opened issue: [3915](https://github.com/hackforla/website/issues/3915) at 2023-01-31 08:58 PM PST -MarkWiltberger,2023-02-01T04:58:36Z,- MarkWiltberger assigned to issue: [3915](https://github.com/hackforla/website/issues/3915) at 2023-01-31 08:58 PM PST -MarkWiltberger,2023-02-04T18:02:41Z,- MarkWiltberger assigned to issue: [3853](https://github.com/hackforla/website/issues/3853) at 2023-02-04 10:02 AM PST -MarkWiltberger,2023-02-04T20:49:53Z,- MarkWiltberger commented on issue: [3853](https://github.com/hackforla/website/issues/3853#issuecomment-1416847107) at 2023-02-04 12:49 PM PST -MarkWiltberger,2023-02-05T01:50:18Z,- MarkWiltberger opened pull request: [3935](https://github.com/hackforla/website/pull/3935) at 2023-02-04 05:50 PM PST -MarkWiltberger,2023-02-05T02:14:05Z,- MarkWiltberger commented on issue: [3915](https://github.com/hackforla/website/issues/3915#issuecomment-1416902411) at 2023-02-04 06:14 PM PST -MarkWiltberger,2023-02-06T21:01:11Z,- MarkWiltberger commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1419745344) at 2023-02-06 01:01 PM PST -MarkWiltberger,2023-02-06T22:30:47Z,- MarkWiltberger commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1419873682) at 2023-02-06 02:30 PM PST -MarkWiltberger,2023-02-06T23:16:13Z,- MarkWiltberger assigned to issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416910718) at 2023-02-06 03:16 PM PST -MarkWiltberger,2023-02-06T23:23:00Z,- MarkWiltberger commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1419929525) at 2023-02-06 03:23 PM PST -MarkWiltberger,2023-02-07T01:54:17Z,- MarkWiltberger pull request merged: [3935](https://github.com/hackforla/website/pull/3935#event-8453346930) at 2023-02-06 05:54 PM PST -MarkWiltberger,2023-02-07T23:32:23Z,- MarkWiltberger commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1421637583) at 2023-02-07 03:32 PM PST -MarkWiltberger,2023-02-08T02:17:58Z,- MarkWiltberger unassigned from issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1421882034) at 2023-02-07 06:17 PM PST -MarkWiltberger,2023-02-10T22:13:35Z,- MarkWiltberger commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1426407903) at 2023-02-10 02:13 PM PST -MarkWiltberger,2023-02-11T21:56:23Z,- MarkWiltberger submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1294629952) at 2023-02-11 01:56 PM PST -MarkWiltberger,2023-02-12T16:28:59Z,- MarkWiltberger commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1427073683) at 2023-02-12 08:28 AM PST -MarkWiltberger,2023-02-14T21:42:14Z,- MarkWiltberger assigned to issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416871780) at 2023-02-14 01:42 PM PST -MarkWiltberger,2023-02-14T21:45:45Z,- MarkWiltberger commented on issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1430418099) at 2023-02-14 01:45 PM PST -MarkWiltberger,2023-02-14T22:07:57Z,- MarkWiltberger commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1430439557) at 2023-02-14 02:07 PM PST -MarkWiltberger,2023-02-15T02:59:37Z,- MarkWiltberger opened pull request: [3980](https://github.com/hackforla/website/pull/3980) at 2023-02-14 06:59 PM PST -MarkWiltberger,2023-02-15T04:40:12Z,- MarkWiltberger submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1298790191) at 2023-02-14 08:40 PM PST -MarkWiltberger,2023-02-15T21:05:05Z,- MarkWiltberger commented on pull request: [3982](https://github.com/hackforla/website/pull/3982#issuecomment-1432031275) at 2023-02-15 01:05 PM PST -MarkWiltberger,2023-02-17T02:21:03Z,- MarkWiltberger pull request merged: [3980](https://github.com/hackforla/website/pull/3980#event-8542914618) at 2023-02-16 06:21 PM PST -MarkWiltberger,2023-02-26T17:37:21Z,- MarkWiltberger assigned to issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1244901699) at 2023-02-26 09:37 AM PST -MarkWiltberger,2023-02-26T17:47:21Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1445418599) at 2023-02-26 09:47 AM PST -MarkWiltberger,2023-02-26T17:54:04Z,- MarkWiltberger commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1445419822) at 2023-02-26 09:54 AM PST -MarkWiltberger,2023-02-27T19:40:17Z,- MarkWiltberger submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1316312329) at 2023-02-27 11:40 AM PST -MarkWiltberger,2023-03-01T22:38:10Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1450952750) at 2023-03-01 02:38 PM PST -MarkWiltberger,2023-03-02T22:28:27Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1452644949) at 2023-03-02 02:28 PM PST -MarkWiltberger,2023-03-04T22:59:29Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1454914306) at 2023-03-04 02:59 PM PST -MarkWiltberger,2023-03-04T23:21:17Z,- MarkWiltberger commented on issue: [3915](https://github.com/hackforla/website/issues/3915#issuecomment-1454919560) at 2023-03-04 03:21 PM PST -MarkWiltberger,2023-03-04T23:21:18Z,- MarkWiltberger closed issue as completed: [3915](https://github.com/hackforla/website/issues/3915#event-8667002196) at 2023-03-04 03:21 PM PST -MarkWiltberger,2023-03-06T22:53:57Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1457171378) at 2023-03-06 02:53 PM PST -MarkWiltberger,2023-03-07T22:39:01Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1458973886) at 2023-03-07 02:39 PM PST -MarkWiltberger,2023-03-08T21:20:26Z,- MarkWiltberger commented on pull request: [4119](https://github.com/hackforla/website/pull/4119#issuecomment-1460891787) at 2023-03-08 01:20 PM PST -MarkWiltberger,2023-03-08T21:42:49Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1460915684) at 2023-03-08 01:42 PM PST -MarkWiltberger,2023-03-09T22:54:50Z,- MarkWiltberger submitted pull request review: [4119](https://github.com/hackforla/website/pull/4119#pullrequestreview-1333932405) at 2023-03-09 02:54 PM PST -MarkWiltberger,2023-03-10T22:23:50Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1464555219) at 2023-03-10 02:23 PM PST -MarkWiltberger,2023-03-11T22:51:09Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1465043663) at 2023-03-11 03:51 PM PDT -MarkWiltberger,2023-03-12T16:28:29Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1465241638) at 2023-03-12 09:28 AM PDT -MarkWiltberger,2023-03-13T20:55:42Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1466943659) at 2023-03-13 01:55 PM PDT -MarkWiltberger,2023-03-15T21:14:24Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1470853096) at 2023-03-15 02:14 PM PDT -MarkWiltberger,2023-03-17T21:34:01Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1474423528) at 2023-03-17 02:34 PM PDT -MarkWiltberger,2023-03-19T16:27:32Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1475311738) at 2023-03-19 09:27 AM PDT -MarkWiltberger,2023-03-20T21:48:37Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1476980386) at 2023-03-20 02:48 PM PDT -MarkWiltberger,2023-03-21T21:35:14Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1478614001) at 2023-03-21 02:35 PM PDT -MarkWiltberger,2023-03-25T20:39:45Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1483917272) at 2023-03-25 01:39 PM PDT -MarkWiltberger,2023-03-27T21:58:31Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1485912940) at 2023-03-27 02:58 PM PDT -MarkWiltberger,2023-03-29T22:09:05Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1489392846) at 2023-03-29 03:09 PM PDT -MarkWiltberger,2023-04-09T14:30:06Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1501142297) at 2023-04-09 07:30 AM PDT -MarkWiltberger,2023-04-13T22:51:37Z,- MarkWiltberger opened issue: [4503](https://github.com/hackforla/website/issues/4503) at 2023-04-13 03:51 PM PDT -MarkWiltberger,2023-04-16T16:28:04Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1510425921) at 2023-04-16 09:28 AM PDT -MarkWiltberger,2023-04-23T16:53:22Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1519109317) at 2023-04-23 09:53 AM PDT -MarkWiltberger,2023-04-30T17:03:58Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1529080095) at 2023-04-30 10:03 AM PDT -MarkWiltberger,2023-05-07T16:51:37Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1537491093) at 2023-05-07 09:51 AM PDT -MarkWiltberger,2023-05-14T16:51:12Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1546944759) at 2023-05-14 09:51 AM PDT -MarkWiltberger,2023-05-21T17:06:11Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1556226809) at 2023-05-21 10:06 AM PDT -MarkWiltberger,2023-05-28T16:13:56Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1566186927) at 2023-05-28 09:13 AM PDT -MarkWiltberger,2023-06-04T16:12:08Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1575626092) at 2023-06-04 09:12 AM PDT -MarkWiltberger,2023-08-03T13:57:54Z,- MarkWiltberger commented on pull request: [5112](https://github.com/hackforla/website/pull/5112#issuecomment-1664034190) at 2023-08-03 06:57 AM PDT -MarkWiltberger,2023-08-04T21:55:02Z,- MarkWiltberger submitted pull request review: [5112](https://github.com/hackforla/website/pull/5112#pullrequestreview-1563602086) at 2023-08-04 02:55 PM PDT -Martyna-S,2019-07-03T18:49:07Z,- Martyna-S assigned to issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508213798) at 2019-07-03 11:49 AM PDT -Martyna-S,2019-07-07T00:50:52Z,- Martyna-S commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508963180) at 2019-07-06 05:50 PM PDT -Martyna-S,2019-07-07T00:51:04Z,- Martyna-S commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508963187) at 2019-07-06 05:51 PM PDT -Martyna-S,2019-07-07T00:52:47Z,- Martyna-S commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508963247) at 2019-07-06 05:52 PM PDT -Martyna-S,2019-07-07T00:56:14Z,- Martyna-S commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508963377) at 2019-07-06 05:56 PM PDT -Martyna-S,2019-07-13T08:54:47Z,- Martyna-S unassigned from issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-509857544) at 2019-07-13 01:54 AM PDT -maryjng,3788,SKILLS ISSUE -maryjng,2023-01-04T04:48:07Z,- maryjng opened issue: [3788](https://github.com/hackforla/website/issues/3788) at 2023-01-03 08:48 PM PST -maryjng,2023-01-10T15:30:22Z,- maryjng assigned to issue: [2870](https://github.com/hackforla/website/issues/2870#issuecomment-1048473948) at 2023-01-10 07:30 AM PST -maryjng,2023-01-10T16:04:11Z,- maryjng opened pull request: [3804](https://github.com/hackforla/website/pull/3804) at 2023-01-10 08:04 AM PST -maryjng,2023-01-11T00:31:09Z,- maryjng assigned to issue: [3310](https://github.com/hackforla/website/issues/3310#issuecomment-1166615231) at 2023-01-10 04:31 PM PST -maryjng,2023-01-11T00:36:30Z,- maryjng unassigned from issue: [3310](https://github.com/hackforla/website/issues/3310#issuecomment-1378077210) at 2023-01-10 04:36 PM PST -maryjng,2023-01-11T01:08:31Z,- maryjng opened pull request: [3808](https://github.com/hackforla/website/pull/3808) at 2023-01-10 05:08 PM PST -maryjng,2023-01-12T12:39:33Z,- maryjng pull request merged: [3804](https://github.com/hackforla/website/pull/3804#event-8210939648) at 2023-01-12 04:39 AM PST -maryjng,2023-01-13T05:07:52Z,- maryjng assigned to issue: [3401](https://github.com/hackforla/website/issues/3401) at 2023-01-12 09:07 PM PST -maryjng,2023-01-13T05:10:51Z,- maryjng commented on issue: [3401](https://github.com/hackforla/website/issues/3401#issuecomment-1381323610) at 2023-01-12 09:10 PM PST -maryjng,2023-01-13T12:29:42Z,- maryjng pull request merged: [3808](https://github.com/hackforla/website/pull/3808#event-8220398342) at 2023-01-13 04:29 AM PST -maryjng,2023-01-18T02:20:44Z,- maryjng assigned to issue: [3415](https://github.com/hackforla/website/issues/3415#issuecomment-1333559213) at 2023-01-17 06:20 PM PST -maryjng,2023-01-18T02:28:15Z,- maryjng commented on issue: [3415](https://github.com/hackforla/website/issues/3415#issuecomment-1386382541) at 2023-01-17 06:28 PM PST -maryjng,2023-01-18T02:44:55Z,- maryjng opened pull request: [3838](https://github.com/hackforla/website/pull/3838) at 2023-01-17 06:44 PM PST -maryjng,2023-01-19T03:16:58Z,- maryjng commented on pull request: [3834](https://github.com/hackforla/website/pull/3834#issuecomment-1396388365) at 2023-01-18 07:16 PM PST -maryjng,2023-01-19T03:28:09Z,- maryjng submitted pull request review: [3834](https://github.com/hackforla/website/pull/3834#pullrequestreview-1261070805) at 2023-01-18 07:28 PM PST -maryjng,2023-01-19T04:12:35Z,- maryjng assigned to issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1374899107) at 2023-01-18 08:12 PM PST -maryjng,2023-01-19T04:18:37Z,- maryjng commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1396419935) at 2023-01-18 08:18 PM PST -maryjng,2023-01-20T14:48:03Z,- maryjng pull request merged: [3838](https://github.com/hackforla/website/pull/3838#event-8322133983) at 2023-01-20 06:48 AM PST -maryjng,2023-01-28T05:36:55Z,- maryjng commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1407299488) at 2023-01-27 09:36 PM PST -maryjng,2023-01-29T23:41:51Z,- maryjng commented on pull request: [3888](https://github.com/hackforla/website/pull/3888#issuecomment-1407805321) at 2023-01-29 03:41 PM PST -maryjng,2023-01-29T23:44:33Z,- maryjng submitted pull request review: [3888](https://github.com/hackforla/website/pull/3888#pullrequestreview-1274333900) at 2023-01-29 03:44 PM PST -maryjng,2023-01-30T00:20:12Z,- maryjng commented on pull request: [3886](https://github.com/hackforla/website/pull/3886#issuecomment-1407817490) at 2023-01-29 04:20 PM PST -maryjng,2023-01-30T00:40:04Z,- maryjng submitted pull request review: [3886](https://github.com/hackforla/website/pull/3886#pullrequestreview-1274351225) at 2023-01-29 04:40 PM PST -maryjng,2023-02-01T23:42:48Z,- maryjng unassigned from issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1407299488) at 2023-02-01 03:42 PM PST -maryjng,2023-02-21T02:17:38Z,- maryjng assigned to issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1375121804) at 2023-02-20 06:17 PM PST -maryjng,2023-02-21T05:47:22Z,- maryjng assigned to issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1426400372) at 2023-02-20 09:47 PM PST -maryjng,2023-02-21T05:48:39Z,- maryjng commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1437894425) at 2023-02-20 09:48 PM PST -maryjng,2023-02-27T04:22:26Z,- maryjng submitted pull request review: [4048](https://github.com/hackforla/website/pull/4048#pullrequestreview-1314881228) at 2023-02-26 08:22 PM PST -maryjng,2023-02-27T05:58:17Z,- maryjng assigned to issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1195152097) at 2023-02-26 09:58 PM PST -maryjng,2023-02-27T05:59:52Z,- maryjng commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1445753165) at 2023-02-26 09:59 PM PST -maryjng,2023-03-11T04:52:17Z,- maryjng commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1464825907) at 2023-03-10 09:52 PM PDT -maryjng,2023-03-19T03:58:15Z,- maryjng unassigned from issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1473284770) at 2023-03-18 08:58 PM PDT -masautt,6604,SKILLS ISSUE -masautt,2024-04-09T02:58:16Z,- masautt opened issue: [6604](https://github.com/hackforla/website/issues/6604) at 2024-04-08 07:58 PM PDT -masautt,2024-04-09T03:21:06Z,- masautt assigned to issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2044065510) at 2024-04-08 08:21 PM PDT -MasSamH,2020-08-22T19:35:05Z,- MasSamH opened issue: [695](https://github.com/hackforla/website/issues/695) at 2020-08-22 12:35 PM PDT -MasSamH,2020-09-24T16:24:41Z,- MasSamH opened issue: [746](https://github.com/hackforla/website/issues/746) at 2020-09-24 09:24 AM PDT -MasSamH,2020-09-24T16:34:16Z,- MasSamH commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-698454897) at 2020-09-24 09:34 AM PDT -MasSamH,2020-09-29T17:22:45Z,- MasSamH commented on issue: [746](https://github.com/hackforla/website/issues/746#issuecomment-700861399) at 2020-09-29 10:22 AM PDT -matikin9,2017-08-15T20:41:38Z,- matikin9 opened issue: [19](https://github.com/hackforla/website/issues/19) at 2017-08-15 01:41 PM PDT -matikin9,2017-08-23T02:52:38Z,- matikin9 commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-324206674) at 2017-08-22 07:52 PM PDT -matikin9,2018-04-04T17:44:25Z,- matikin9 opened issue: [17](https://github.com/hackforla/website/issues/17) at 2018-04-04 10:44 AM PDT -matikin9,2018-11-14T04:32:48Z,- matikin9 opened issue: [10](https://github.com/hackforla/website/issues/10) at 2018-11-13 08:32 PM PST -matikin9,2018-11-14T16:01:21Z,- matikin9 closed issue as completed: [10](https://github.com/hackforla/website/issues/10#event-1966279233) at 2018-11-14 08:01 AM PST -matikin9,2018-11-14T16:03:25Z,- matikin9 commented on pull request: [11](https://github.com/hackforla/website/pull/11#issuecomment-438716132) at 2018-11-14 08:03 AM PST -matikin9,2018-11-14T16:41:17Z,- matikin9 commented on pull request: [11](https://github.com/hackforla/website/pull/11#issuecomment-438730386) at 2018-11-14 08:41 AM PST -matikin9,2018-11-15T21:05:20Z,- matikin9 commented on pull request: [11](https://github.com/hackforla/website/pull/11#issuecomment-439189752) at 2018-11-15 01:05 PM PST -matikin9,2018-11-17T21:34:49Z,- matikin9 commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-439649280) at 2018-11-17 01:34 PM PST -matikin9,2018-12-12T04:05:51Z,- matikin9 commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-446454761) at 2018-12-11 08:05 PM PST -matikin9,2018-12-12T08:27:13Z,- matikin9 commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-446502884) at 2018-12-12 12:27 AM PST -matikin9,2019-04-30T16:12:50Z,- matikin9 commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-488015518) at 2019-04-30 09:12 AM PDT -matikin9,2019-05-01T00:57:16Z,- matikin9 commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-488166163) at 2019-04-30 05:57 PM PDT -matikin9,2019-05-12T05:24:50Z,- matikin9 assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -matikin9,2019-05-27T21:15:51Z,- matikin9 assigned to issue: [116](https://github.com/hackforla/website/issues/116) at 2019-05-27 02:15 PM PDT -matikin9,2019-06-10T22:38:02Z,- matikin9 assigned to issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-498506119) at 2019-06-10 03:38 PM PDT -matikin9,2019-08-01T05:01:09Z,- matikin9 assigned to issue: [134](https://github.com/hackforla/website/issues/134) at 2019-07-31 10:01 PM PDT -matikin9,2019-08-12T21:14:31Z,- matikin9 commented on issue: [134](https://github.com/hackforla/website/issues/134#issuecomment-520598144) at 2019-08-12 02:14 PM PDT -matikin9,2019-08-14T23:23:20Z,- matikin9 commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-521455617) at 2019-08-14 04:23 PM PDT -matikin9,2019-08-23T22:30:48Z,- matikin9 commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524482005) at 2019-08-23 03:30 PM PDT -matikin9,2019-08-28T20:23:16Z,- matikin9 commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-525907466) at 2019-08-28 01:23 PM PDT -matikin9,2019-08-28T20:29:35Z,- matikin9 commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-525909783) at 2019-08-28 01:29 PM PDT -matikin9,2019-08-28T20:29:35Z,- matikin9 closed issue as completed: [17](https://github.com/hackforla/website/issues/17#event-2591844241) at 2019-08-28 01:29 PM PDT -matikin9,2020-06-01T02:33:13Z,- matikin9 assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -matikin9,2020-06-01T02:40:07Z,- matikin9 unassigned from issue: [116](https://github.com/hackforla/website/issues/116) at 2020-05-31 07:40 PM PDT -matikin9,2020-07-15T22:59:48Z,- matikin9 unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-659057369) at 2020-07-15 03:59 PM PDT -matt-arofin,3063,SKILLS ISSUE -matt-arofin,2022-04-19T02:51:05Z,- matt-arofin opened issue: [3063](https://github.com/hackforla/website/issues/3063) at 2022-04-18 07:51 PM PDT -matt-arofin,2022-04-19T02:52:14Z,- matt-arofin assigned to issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1101940486) at 2022-04-18 07:52 PM PDT -matt-arofin,2022-04-23T22:37:27Z,- matt-arofin assigned to issue: [2793](https://github.com/hackforla/website/issues/2793#issuecomment-1045507195) at 2022-04-23 03:37 PM PDT -matt-arofin,2022-04-24T13:19:35Z,- matt-arofin opened pull request: [3079](https://github.com/hackforla/website/pull/3079) at 2022-04-24 06:19 AM PDT -matt-arofin,2022-04-24T16:40:10Z,- matt-arofin commented on issue: [2793](https://github.com/hackforla/website/issues/2793#issuecomment-1107875899) at 2022-04-24 09:40 AM PDT -matt-arofin,2022-04-26T13:56:39Z,- matt-arofin pull request merged: [3079](https://github.com/hackforla/website/pull/3079#event-6499098163) at 2022-04-26 06:56 AM PDT -matt-arofin,2022-05-01T19:43:18Z,- matt-arofin commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114319079) at 2022-05-01 12:43 PM PDT -matt-arofin,2022-05-01T23:14:28Z,- matt-arofin submitted pull request review: [3086](https://github.com/hackforla/website/pull/3086#pullrequestreview-958643514) at 2022-05-01 04:14 PM PDT -matt-arofin,2022-05-01T23:41:05Z,- matt-arofin commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1114368795) at 2022-05-01 04:41 PM PDT -matt-arofin,2022-05-02T18:34:39Z,- matt-arofin closed issue as completed: [3063](https://github.com/hackforla/website/issues/3063#event-6535445392) at 2022-05-02 11:34 AM PDT -matt-arofin,2022-06-04T16:17:52Z,- matt-arofin commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1146643665) at 2022-06-04 09:17 AM PDT -matt-arofin,2022-06-06T21:52:31Z,- matt-arofin assigned to issue: [3215](https://github.com/hackforla/website/issues/3215#issuecomment-1145859151) at 2022-06-06 02:52 PM PDT -matt-arofin,2022-06-06T21:55:57Z,- matt-arofin commented on issue: [3215](https://github.com/hackforla/website/issues/3215#issuecomment-1147972816) at 2022-06-06 02:55 PM PDT -matt-arofin,2022-06-06T21:56:31Z,- matt-arofin closed issue as completed: [3063](https://github.com/hackforla/website/issues/3063#event-6756420303) at 2022-06-06 02:56 PM PDT -matt-arofin,2022-06-07T18:01:08Z,- matt-arofin opened pull request: [3231](https://github.com/hackforla/website/pull/3231) at 2022-06-07 11:01 AM PDT -matt-arofin,2022-06-07T18:06:54Z,- matt-arofin pull request merged: [3231](https://github.com/hackforla/website/pull/3231#event-6763645239) at 2022-06-07 11:06 AM PDT -matt-arofin,2022-06-07T18:17:46Z,- matt-arofin commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1149013889) at 2022-06-07 11:17 AM PDT -matt-arofin,2022-06-07T18:17:46Z,- matt-arofin reopened pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1149013889) at 2022-06-07 11:17 AM PDT -matt-arofin,2022-06-08T20:08:26Z,- matt-arofin assigned to issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1146276918) at 2022-06-08 01:08 PM PDT -matt-arofin,2022-06-08T20:10:32Z,- matt-arofin commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1150356512) at 2022-06-08 01:10 PM PDT -matt-arofin,2022-06-09T00:34:21Z,- matt-arofin commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1150546791) at 2022-06-08 05:34 PM PDT -matt-arofin,2022-06-09T00:42:04Z,- matt-arofin pull request merged: [3231](https://github.com/hackforla/website/pull/3231#event-6773929907) at 2022-06-08 05:42 PM PDT -matt-arofin,2022-06-13T01:27:02Z,- matt-arofin unassigned from issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1153359796) at 2022-06-12 06:27 PM PDT -matt-arofin,2022-06-16T19:25:23Z,- matt-arofin assigned to issue: [2931](https://github.com/hackforla/website/issues/2931#issuecomment-1059838534) at 2022-06-16 12:25 PM PDT -matt-arofin,2022-06-16T19:32:04Z,- matt-arofin commented on issue: [2931](https://github.com/hackforla/website/issues/2931#issuecomment-1158058333) at 2022-06-16 12:32 PM PDT -matt-arofin,2022-06-25T15:15:05Z,- matt-arofin opened pull request: [3301](https://github.com/hackforla/website/pull/3301) at 2022-06-25 08:15 AM PDT -matt-arofin,2022-06-25T15:18:25Z,- matt-arofin commented on issue: [2931](https://github.com/hackforla/website/issues/2931#issuecomment-1166308764) at 2022-06-25 08:18 AM PDT -matt-arofin,2022-06-25T21:32:03Z,- matt-arofin commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166364774) at 2022-06-25 02:32 PM PDT -matt-arofin,2022-07-17T15:48:00Z,- matt-arofin commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1186550699) at 2022-07-17 08:48 AM PDT -matt-arofin,2022-07-17T17:19:50Z,- matt-arofin pull request merged: [3301](https://github.com/hackforla/website/pull/3301#event-7007744085) at 2022-07-17 10:19 AM PDT -matt-arofin,2022-09-01T19:32:21Z,- matt-arofin commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1234696977) at 2022-09-01 12:32 PM PDT -MattChau01,4973,SKILLS ISSUE -MattChau01,2023-07-18T01:54:06Z,- MattChau01 opened issue: [4973](https://github.com/hackforla/website/issues/4973) at 2023-07-17 06:54 PM PDT -MattChau01,2023-07-18T02:31:50Z,- MattChau01 assigned to issue: [4973](https://github.com/hackforla/website/issues/4973) at 2023-07-17 07:31 PM PDT -MattChau01,2023-07-20T22:06:05Z,- MattChau01 assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1484017168) at 2023-07-20 03:06 PM PDT -MattChau01,2023-07-20T22:29:30Z,- MattChau01 unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1644675439) at 2023-07-20 03:29 PM PDT -MattChau01,2023-07-23T17:01:32Z,- MattChau01 assigned to issue: [4948](https://github.com/hackforla/website/issues/4948#issuecomment-1639479285) at 2023-07-23 10:01 AM PDT -MattChau01,2023-07-23T19:29:53Z,- MattChau01 opened pull request: [5054](https://github.com/hackforla/website/pull/5054) at 2023-07-23 12:29 PM PDT -MattChau01,2023-07-23T19:34:15Z,- MattChau01 commented on issue: [4948](https://github.com/hackforla/website/issues/4948#issuecomment-1646941787) at 2023-07-23 12:34 PM PDT -MattChau01,2023-07-25T19:06:45Z,- MattChau01 commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1650383266) at 2023-07-25 12:06 PM PDT -MattChau01,2023-07-27T03:55:17Z,- MattChau01 commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1652871477) at 2023-07-26 08:55 PM PDT -MattChau01,2023-07-27T04:45:45Z,- MattChau01 pull request merged: [5054](https://github.com/hackforla/website/pull/5054#event-9931236163) at 2023-07-26 09:45 PM PDT -MattChau01,2023-07-27T20:35:57Z,- MattChau01 assigned to issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1639541664) at 2023-07-27 01:35 PM PDT -MattChau01,2023-07-27T20:37:54Z,- MattChau01 commented on issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1654535514) at 2023-07-27 01:37 PM PDT -MattChau01,2023-07-29T06:00:53Z,- MattChau01 opened pull request: [5112](https://github.com/hackforla/website/pull/5112) at 2023-07-28 11:00 PM PDT -MattChau01,2023-07-29T06:04:47Z,- MattChau01 commented on issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1656569154) at 2023-07-28 11:04 PM PDT -MattChau01,2023-08-03T17:40:55Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1664380607) at 2023-08-03 10:40 AM PDT -MattChau01,2023-08-03T17:45:56Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1664386861) at 2023-08-03 10:45 AM PDT -MattChau01,2023-08-05T06:44:25Z,- MattChau01 pull request merged: [5112](https://github.com/hackforla/website/pull/5112#event-10014600205) at 2023-08-04 11:44 PM PDT -MattChau01,2023-08-08T17:06:53Z,- MattChau01 assigned to issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1641387210) at 2023-08-08 10:06 AM PDT -MattChau01,2023-08-08T17:20:50Z,- MattChau01 commented on issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1670015075) at 2023-08-08 10:20 AM PDT -MattChau01,2023-08-10T19:52:50Z,- MattChau01 commented on issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1673821223) at 2023-08-10 12:52 PM PDT -MattChau01,2023-08-11T16:06:55Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1675027556) at 2023-08-11 09:06 AM PDT -MattChau01,2023-08-16T03:12:12Z,- MattChau01 submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579732478) at 2023-08-15 08:12 PM PDT -MattChau01,2023-08-23T16:07:52Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1690237879) at 2023-08-23 09:07 AM PDT -MattChau01,2023-08-23T17:44:36Z,- MattChau01 commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1690379091) at 2023-08-23 10:44 AM PDT -MattChau01,2023-08-23T17:44:45Z,- MattChau01 commented on pull request: [5263](https://github.com/hackforla/website/pull/5263#issuecomment-1690379274) at 2023-08-23 10:44 AM PDT -MattChau01,2023-08-24T04:48:01Z,- MattChau01 submitted pull request review: [5263](https://github.com/hackforla/website/pull/5263#pullrequestreview-1592771584) at 2023-08-23 09:48 PM PDT -MattChau01,2023-08-25T05:56:05Z,- MattChau01 submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1594925941) at 2023-08-24 10:56 PM PDT -MattChau01,2023-08-30T02:25:40Z,- MattChau01 commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698395120) at 2023-08-29 07:25 PM PDT -MattChau01,2023-09-01T05:20:54Z,- MattChau01 submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1606241778) at 2023-08-31 10:20 PM PDT -MattChau01,2023-09-05T04:58:14Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1705944660) at 2023-09-04 09:58 PM PDT -MattChau01,2023-09-19T04:38:56Z,- MattChau01 assigned to issue: [4961](https://github.com/hackforla/website/issues/4961) at 2023-09-18 09:38 PM PDT -MattChau01,2023-09-19T04:41:11Z,- MattChau01 commented on issue: [4961](https://github.com/hackforla/website/issues/4961#issuecomment-1724821853) at 2023-09-18 09:41 PM PDT -MattChau01,2023-09-20T02:58:10Z,- MattChau01 commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1726806267) at 2023-09-19 07:58 PM PDT -MattChau01,2023-09-23T01:20:45Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1732168921) at 2023-09-22 06:20 PM PDT -MattChau01,2023-09-23T03:52:52Z,- MattChau01 submitted pull request review: [5558](https://github.com/hackforla/website/pull/5558#pullrequestreview-1640776429) at 2023-09-22 08:52 PM PDT -MattChau01,2023-09-23T04:23:36Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732206569) at 2023-09-22 09:23 PM PDT -MattChau01,2023-09-24T21:46:23Z,- MattChau01 submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1641125206) at 2023-09-24 02:46 PM PDT -MattChau01,2023-09-25T01:28:34Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732767012) at 2023-09-24 06:28 PM PDT -MattChau01,2023-09-25T04:28:35Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732888527) at 2023-09-24 09:28 PM PDT -MattChau01,2023-09-25T05:46:55Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732960373) at 2023-09-24 10:46 PM PDT -MattChau01,2023-09-26T06:48:32Z,- MattChau01 opened pull request: [5586](https://github.com/hackforla/website/pull/5586) at 2023-09-25 11:48 PM PDT -MattChau01,2023-09-27T01:36:15Z,- MattChau01 pull request merged: [5586](https://github.com/hackforla/website/pull/5586#event-10481543146) at 2023-09-26 06:36 PM PDT -MattChau01,2023-09-28T04:57:41Z,- MattChau01 submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1647888143) at 2023-09-27 09:57 PM PDT -MattChau01,2023-09-28T05:02:08Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1738434526) at 2023-09-27 10:02 PM PDT -MattChau01,2023-09-30T06:30:14Z,- MattChau01 submitted pull request review: [5616](https://github.com/hackforla/website/pull/5616#pullrequestreview-1651647437) at 2023-09-29 11:30 PM PDT -MattChau01,2023-10-06T04:40:28Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1749973776) at 2023-10-05 09:40 PM PDT -MattChau01,2023-10-06T04:43:34Z,- MattChau01 commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1749975708) at 2023-10-05 09:43 PM PDT -MattChau01,2023-10-06T04:50:36Z,- MattChau01 commented on pull request: [5661](https://github.com/hackforla/website/pull/5661#issuecomment-1749980160) at 2023-10-05 09:50 PM PDT -MattChau01,2023-10-07T04:30:17Z,- MattChau01 commented on pull request: [5665](https://github.com/hackforla/website/pull/5665#issuecomment-1751596327) at 2023-10-06 09:30 PM PDT -MattChau01,2023-10-07T04:58:57Z,- MattChau01 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1662997759) at 2023-10-06 09:58 PM PDT -MattChau01,2023-10-09T03:27:00Z,- MattChau01 submitted pull request review: [5661](https://github.com/hackforla/website/pull/5661#pullrequestreview-1663686993) at 2023-10-08 08:27 PM PDT -MattChau01,2023-10-09T03:33:48Z,- MattChau01 submitted pull request review: [5665](https://github.com/hackforla/website/pull/5665#pullrequestreview-1663689302) at 2023-10-08 08:33 PM PDT -MattChau01,2023-10-13T05:48:01Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1760914416) at 2023-10-12 10:48 PM PDT -MattChau01,2023-10-16T19:26:01Z,- MattChau01 commented on pull request: [5718](https://github.com/hackforla/website/pull/5718#issuecomment-1765137364) at 2023-10-16 12:26 PM PDT -MattChau01,2023-10-17T18:22:50Z,- MattChau01 submitted pull request review: [5718](https://github.com/hackforla/website/pull/5718#pullrequestreview-1683085550) at 2023-10-17 11:22 AM PDT -MattChau01,2023-10-18T03:08:53Z,- MattChau01 commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1767550971) at 2023-10-17 08:08 PM PDT -MattChau01,2023-10-20T17:05:10Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1773091872) at 2023-10-20 10:05 AM PDT -MattChau01,2023-10-20T17:09:44Z,- MattChau01 submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1690576715) at 2023-10-20 10:09 AM PDT -MattChau01,2023-10-26T04:36:15Z,- MattChau01 commented on pull request: [5785](https://github.com/hackforla/website/pull/5785#issuecomment-1780401294) at 2023-10-25 09:36 PM PDT -MattChau01,2023-10-26T04:37:18Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1780401996) at 2023-10-25 09:37 PM PDT -MattChau01,2023-10-27T06:38:10Z,- MattChau01 submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1701086670) at 2023-10-26 11:38 PM PDT -MattChau01,2023-10-27T06:40:56Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1782381232) at 2023-10-26 11:40 PM PDT -MattChau01,2023-10-29T20:53:39Z,- MattChau01 submitted pull request review: [5788](https://github.com/hackforla/website/pull/5788#pullrequestreview-1703034891) at 2023-10-29 01:53 PM PDT -MattChau01,2023-11-03T20:06:23Z,- MattChau01 closed issue as completed: [4973](https://github.com/hackforla/website/issues/4973#event-10860132254) at 2023-11-03 01:06 PM PDT -MattChau01,2023-11-04T23:50:11Z,- MattChau01 commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1793583259) at 2023-11-04 03:50 PM PST -MattChau01,2023-11-05T00:07:10Z,- MattChau01 submitted pull request review: [5828](https://github.com/hackforla/website/pull/5828#pullrequestreview-1713890059) at 2023-11-04 04:07 PM PST -MattChau01,2023-11-13T01:55:52Z,- MattChau01 commented on pull request: [5893](https://github.com/hackforla/website/pull/5893#issuecomment-1807363046) at 2023-11-12 05:55 PM PST -MattChau01,2023-11-16T04:48:05Z,- MattChau01 submitted pull request review: [5893](https://github.com/hackforla/website/pull/5893#pullrequestreview-1733500030) at 2023-11-15 08:48 PM PST -MattChau01,2023-11-19T22:52:39Z,- MattChau01 commented on pull request: [5922](https://github.com/hackforla/website/pull/5922#issuecomment-1818004090) at 2023-11-19 02:52 PM PST -MattChau01,2023-11-22T04:54:25Z,- MattChau01 submitted pull request review: [5922](https://github.com/hackforla/website/pull/5922#pullrequestreview-1743565845) at 2023-11-21 08:54 PM PST -MattChau01,2023-12-13T06:23:48Z,- MattChau01 commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1853336221) at 2023-12-12 10:23 PM PST -MattChau01,2023-12-15T01:39:09Z,- MattChau01 submitted pull request review: [6003](https://github.com/hackforla/website/pull/6003#pullrequestreview-1783004868) at 2023-12-14 05:39 PM PST -MattChau01,2024-01-02T05:02:38Z,- MattChau01 commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1873622405) at 2024-01-01 09:02 PM PST -MattChau01,2024-01-04T03:43:48Z,- MattChau01 submitted pull request review: [6025](https://github.com/hackforla/website/pull/6025#pullrequestreview-1803388403) at 2024-01-03 07:43 PM PST -MattChau01,2024-01-19T05:44:13Z,- MattChau01 commented on pull request: [6131](https://github.com/hackforla/website/pull/6131#issuecomment-1899805999) at 2024-01-18 09:44 PM PST -MattChau01,2024-01-28T03:26:25Z,- MattChau01 commented on pull request: [6186](https://github.com/hackforla/website/pull/6186#issuecomment-1913432540) at 2024-01-27 07:26 PM PST -MattChau01,2024-01-28T03:30:17Z,- MattChau01 submitted pull request review: [6186](https://github.com/hackforla/website/pull/6186#pullrequestreview-1847376465) at 2024-01-27 07:30 PM PST -MattChau01,2024-02-09T05:26:04Z,- MattChau01 commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1935355358) at 2024-02-08 09:26 PM PST -MattChau01,2024-02-10T06:03:58Z,- MattChau01 submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1873483072) at 2024-02-09 10:03 PM PST -matteores,6361,SKILLS ISSUE -matteores,2024-02-23T03:45:13Z,- matteores opened issue: [6361](https://github.com/hackforla/website/issues/6361) at 2024-02-22 07:45 PM PST -matteores,2024-02-28T18:56:53Z,- matteores assigned to issue: [6361](https://github.com/hackforla/website/issues/6361) at 2024-02-28 10:56 AM PST -matteores,2024-03-20T13:07:47Z,- matteores commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-2009528189) at 2024-03-20 06:07 AM PDT -MatthewBozin,3638,SKILLS ISSUE -MatthewBozin,2022-10-19T02:32:59Z,- MatthewBozin opened issue: [3638](https://github.com/hackforla/website/issues/3638) at 2022-10-18 07:32 PM PDT -MatthewBozin,2022-10-19T02:51:29Z,- MatthewBozin assigned to issue: [3638](https://github.com/hackforla/website/issues/3638) at 2022-10-18 07:51 PM PDT -MatthewBozin,2022-10-22T01:16:28Z,- MatthewBozin assigned to issue: [2851](https://github.com/hackforla/website/issues/2851#issuecomment-1048322029) at 2022-10-21 06:16 PM PDT -MatthewBozin,2022-10-22T01:21:08Z,- MatthewBozin commented on issue: [2851](https://github.com/hackforla/website/issues/2851#issuecomment-1287571290) at 2022-10-21 06:21 PM PDT -MatthewBozin,2022-10-22T01:22:38Z,- MatthewBozin commented on issue: [3638](https://github.com/hackforla/website/issues/3638#issuecomment-1287571570) at 2022-10-21 06:22 PM PDT -MatthewBozin,2022-10-22T01:42:39Z,- MatthewBozin opened pull request: [3648](https://github.com/hackforla/website/pull/3648) at 2022-10-21 06:42 PM PDT -MatthewBozin,2022-10-22T02:09:57Z,- MatthewBozin commented on pull request: [3647](https://github.com/hackforla/website/pull/3647#issuecomment-1287581113) at 2022-10-21 07:09 PM PDT -MatthewBozin,2022-10-22T02:13:13Z,- MatthewBozin submitted pull request review: [3647](https://github.com/hackforla/website/pull/3647#pullrequestreview-1151724251) at 2022-10-21 07:13 PM PDT -MatthewBozin,2022-10-23T06:34:59Z,- MatthewBozin pull request merged: [3648](https://github.com/hackforla/website/pull/3648#event-7647771570) at 2022-10-22 11:34 PM PDT -MatthewBozin,2022-10-25T01:05:03Z,- MatthewBozin assigned to issue: [3284](https://github.com/hackforla/website/issues/3284#issuecomment-1162519663) at 2022-10-24 06:05 PM PDT -MatthewBozin,2022-10-25T01:05:52Z,- MatthewBozin commented on issue: [3284](https://github.com/hackforla/website/issues/3284#issuecomment-1289843939) at 2022-10-24 06:05 PM PDT -MatthewBozin,2022-10-25T01:20:02Z,- MatthewBozin opened pull request: [3655](https://github.com/hackforla/website/pull/3655) at 2022-10-24 06:20 PM PDT -MatthewBozin,2022-10-26T00:06:57Z,- MatthewBozin pull request merged: [3655](https://github.com/hackforla/website/pull/3655#event-7667999890) at 2022-10-25 05:06 PM PDT -MatthewBozin,2022-11-04T21:46:44Z,- MatthewBozin commented on issue: [3638](https://github.com/hackforla/website/issues/3638#issuecomment-1304285986) at 2022-11-04 02:46 PM PDT -MatthewBozin,2022-11-04T21:48:13Z,- MatthewBozin closed issue as completed: [3638](https://github.com/hackforla/website/issues/3638#event-7744178967) at 2022-11-04 02:48 PM PDT -MatthewBozin,2022-11-05T05:16:09Z,- MatthewBozin assigned to issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1292442374) at 2022-11-04 09:16 PM PST -MatthewBozin,2022-11-05T05:19:03Z,- MatthewBozin commented on issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1304411025) at 2022-11-04 09:19 PM PST -MatthewBozin,2022-11-08T23:30:21Z,- MatthewBozin opened pull request: [3702](https://github.com/hackforla/website/pull/3702) at 2022-11-08 03:30 PM PST -MatthewBozin,2022-11-09T20:49:43Z,- MatthewBozin commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1309358858) at 2022-11-09 12:49 PM PST -MatthewBozin,2022-11-11T15:58:18Z,- MatthewBozin pull request merged: [3702](https://github.com/hackforla/website/pull/3702#event-7793222809) at 2022-11-11 07:58 AM PST -matthewlee626,2021-01-29T07:39:38Z,- matthewlee626 assigned to issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-759705521) at 2021-01-28 11:39 PM PST -matthewlee626,2021-01-31T08:50:53Z,- matthewlee626 unassigned from issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-759705521) at 2021-01-31 12:50 AM PST -matthewlee626,2021-01-31T08:56:16Z,- matthewlee626 assigned to issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-759705521) at 2021-01-31 12:56 AM PST -matthewlee626,2021-01-31T17:56:30Z,- matthewlee626 opened pull request: [980](https://github.com/hackforla/website/pull/980) at 2021-01-31 09:56 AM PST -matthewlee626,2021-01-31T17:59:30Z,- matthewlee626 commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-770422474) at 2021-01-31 09:59 AM PST -matthewlee626,2021-01-31T20:08:44Z,- matthewlee626 commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-770442578) at 2021-01-31 12:08 PM PST -matthewlee626,2021-01-31T20:10:15Z,- matthewlee626 assigned to issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-766430442) at 2021-01-31 12:10 PM PST -matthewlee626,2021-01-31T20:25:55Z,- matthewlee626 pull request merged: [980](https://github.com/hackforla/website/pull/980#event-4270727952) at 2021-01-31 12:25 PM PST -matthewlee626,2021-02-07T12:29:51Z,- matthewlee626 opened pull request: [1007](https://github.com/hackforla/website/pull/1007) at 2021-02-07 04:29 AM PST -matthewlee626,2021-02-07T12:32:48Z,- matthewlee626 commented on issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-774667045) at 2021-02-07 04:32 AM PST -matthewlee626,2021-02-07T23:11:15Z,- matthewlee626 commented on pull request: [1007](https://github.com/hackforla/website/pull/1007#issuecomment-774785650) at 2021-02-07 03:11 PM PST -matthewlee626,2021-02-10T03:15:36Z,- matthewlee626 commented on issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-776408862) at 2021-02-09 07:15 PM PST -matthewlee626,2021-02-10T03:16:58Z,- matthewlee626 commented on pull request: [1007](https://github.com/hackforla/website/pull/1007#issuecomment-776409304) at 2021-02-09 07:16 PM PST -matthewlee626,2021-02-10T03:57:14Z,- matthewlee626 assigned to issue: [962](https://github.com/hackforla/website/issues/962) at 2021-02-09 07:57 PM PST -matthewlee626,2021-02-14T03:37:39Z,- matthewlee626 pull request merged: [1007](https://github.com/hackforla/website/pull/1007#event-4328367334) at 2021-02-13 07:37 PM PST -matthewlee626,2021-02-14T04:08:03Z,- matthewlee626 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-778720550) at 2021-02-13 08:08 PM PST -matthewlee626,2021-02-21T10:21:26Z,- matthewlee626 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782833602) at 2021-02-21 02:21 AM PST -matthewlee626,2021-02-21T19:15:36Z,- matthewlee626 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782909920) at 2021-02-21 11:15 AM PST -matthewlee626,2021-02-21T19:16:27Z,- matthewlee626 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782910051) at 2021-02-21 11:16 AM PST -matthewlee626,2021-02-21T19:26:00Z,- matthewlee626 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782911393) at 2021-02-21 11:26 AM PST -matthewlee626,2021-02-21T20:02:15Z,- matthewlee626 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782916759) at 2021-02-21 12:02 PM PST -matthewlee626,2021-02-21T20:02:43Z,- matthewlee626 opened pull request: [1083](https://github.com/hackforla/website/pull/1083) at 2021-02-21 12:02 PM PST -matthewlee626,2021-02-21T20:19:57Z,- matthewlee626 pull request closed w/o merging: [1083](https://github.com/hackforla/website/pull/1083#event-4356743239) at 2021-02-21 12:19 PM PST -matthewlee626,2021-02-21T20:20:36Z,- matthewlee626 opened pull request: [1084](https://github.com/hackforla/website/pull/1084) at 2021-02-21 12:20 PM PST -matthewlee626,2021-02-21T20:53:48Z,- matthewlee626 assigned to issue: [1080](https://github.com/hackforla/website/issues/1080) at 2021-02-21 12:53 PM PST -matthewlee626,2021-02-21T21:51:08Z,- matthewlee626 closed issue by PR 1084: [962](https://github.com/hackforla/website/issues/962#event-4356830499) at 2021-02-21 01:51 PM PST -matthewlee626,2021-02-21T21:51:08Z,- matthewlee626 pull request merged: [1084](https://github.com/hackforla/website/pull/1084#event-4356830503) at 2021-02-21 01:51 PM PST -matthewlee626,2021-02-22T01:33:01Z,- matthewlee626 opened pull request: [1091](https://github.com/hackforla/website/pull/1091) at 2021-02-21 05:33 PM PST -matthewlee626,2021-02-22T01:38:11Z,- matthewlee626 assigned to issue: [1076](https://github.com/hackforla/website/issues/1076) at 2021-02-21 05:38 PM PST -matthewlee626,2021-02-22T06:28:33Z,- matthewlee626 commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783123236) at 2021-02-21 10:28 PM PST -matthewlee626,2021-02-22T17:41:44Z,- matthewlee626 commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783548063) at 2021-02-22 09:41 AM PST -matthewlee626,2021-02-22T18:08:28Z,- matthewlee626 pull request merged: [1091](https://github.com/hackforla/website/pull/1091#event-4361167224) at 2021-02-22 10:08 AM PST -matthewlee626,2021-02-28T07:21:54Z,- matthewlee626 commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-787409780) at 2021-02-27 11:21 PM PST -matthewlee626,2021-03-27T20:18:38Z,- matthewlee626 unassigned from issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-806227703) at 2021-03-27 01:18 PM PDT -matthewmpan,4614,SKILLS ISSUE -matthewmpan,2023-05-09T03:22:07Z,- matthewmpan opened issue: [4614](https://github.com/hackforla/website/issues/4614) at 2023-05-08 08:22 PM PDT -matthewmpan,2023-05-09T03:54:23Z,- matthewmpan assigned to issue: [4614](https://github.com/hackforla/website/issues/4614) at 2023-05-08 08:54 PM PDT -matthewmpan,2023-05-09T05:53:39Z,- matthewmpan assigned to issue: [4512](https://github.com/hackforla/website/issues/4512#issuecomment-1509624893) at 2023-05-08 10:53 PM PDT -matthewmpan,2023-05-09T07:01:35Z,- matthewmpan opened pull request: [4639](https://github.com/hackforla/website/pull/4639) at 2023-05-09 12:01 AM PDT -matthewmpan,2023-05-10T02:41:19Z,- matthewmpan commented on pull request: [4640](https://github.com/hackforla/website/pull/4640#issuecomment-1541215348) at 2023-05-09 07:41 PM PDT -matthewmpan,2023-05-10T03:26:17Z,- matthewmpan submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1419725131) at 2023-05-09 08:26 PM PDT -matthewmpan,2023-05-10T19:28:06Z,- matthewmpan commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1542696121) at 2023-05-10 12:28 PM PDT -matthewmpan,2023-05-10T20:02:54Z,- matthewmpan submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1421301234) at 2023-05-10 01:02 PM PDT -matthewmpan,2023-05-12T02:34:00Z,- matthewmpan commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1545020912) at 2023-05-11 07:34 PM PDT -matthewmpan,2023-05-15T04:21:38Z,- matthewmpan pull request merged: [4639](https://github.com/hackforla/website/pull/4639#event-9241901508) at 2023-05-14 09:21 PM PDT -matthewmpan,2023-05-15T05:46:41Z,- matthewmpan commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1547225878) at 2023-05-14 10:46 PM PDT -matthewmpan,2023-05-15T06:12:52Z,- matthewmpan commented on pull request: [4666](https://github.com/hackforla/website/pull/4666#issuecomment-1547247433) at 2023-05-14 11:12 PM PDT -matthewmpan,2023-05-15T06:19:27Z,- matthewmpan submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1425831358) at 2023-05-14 11:19 PM PDT -matthewmpan,2023-05-15T06:24:12Z,- matthewmpan commented on pull request: [4667](https://github.com/hackforla/website/pull/4667#issuecomment-1547256368) at 2023-05-14 11:24 PM PDT -matthewmpan,2023-05-15T06:34:17Z,- matthewmpan submitted pull request review: [4667](https://github.com/hackforla/website/pull/4667#pullrequestreview-1425848115) at 2023-05-14 11:34 PM PDT -matthewmpan,2023-05-15T07:09:26Z,- matthewmpan assigned to issue: [4486](https://github.com/hackforla/website/issues/4486) at 2023-05-15 12:09 AM PDT -matthewmpan,2023-05-15T07:12:36Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1547309695) at 2023-05-15 12:12 AM PDT -matthewmpan,2023-05-16T17:16:33Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1550067070) at 2023-05-16 10:16 AM PDT -matthewmpan,2023-05-16T19:27:33Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1550238055) at 2023-05-16 12:27 PM PDT -matthewmpan,2023-05-18T06:02:42Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1552473234) at 2023-05-17 11:02 PM PDT -matthewmpan,2023-05-18T06:49:40Z,- matthewmpan opened pull request: [4689](https://github.com/hackforla/website/pull/4689) at 2023-05-17 11:49 PM PDT -matthewmpan,2023-05-18T07:18:24Z,- matthewmpan submitted pull request review: [4686](https://github.com/hackforla/website/pull/4686#pullrequestreview-1432184114) at 2023-05-18 12:18 AM PDT -matthewmpan,2023-05-18T07:47:19Z,- matthewmpan submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1432219933) at 2023-05-18 12:47 AM PDT -matthewmpan,2023-05-19T08:05:43Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1554201301) at 2023-05-19 01:05 AM PDT -matthewmpan,2023-05-20T19:59:16Z,- matthewmpan commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1555983265) at 2023-05-20 12:59 PM PDT -matthewmpan,2023-05-20T20:27:20Z,- matthewmpan submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1435444157) at 2023-05-20 01:27 PM PDT -matthewmpan,2023-05-21T15:32:36Z,- matthewmpan pull request merged: [4689](https://github.com/hackforla/website/pull/4689#event-9296177993) at 2023-05-21 08:32 AM PDT -matthewmpan,2023-05-21T17:53:10Z,- matthewmpan commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1556240470) at 2023-05-21 10:53 AM PDT -matthewmpan,2023-05-21T18:14:40Z,- matthewmpan commented on issue: [4614](https://github.com/hackforla/website/issues/4614#issuecomment-1556246937) at 2023-05-21 11:14 AM PDT -matthewmpan,2023-05-21T18:15:06Z,- matthewmpan closed issue as completed: [4614](https://github.com/hackforla/website/issues/4614#event-9296386459) at 2023-05-21 11:15 AM PDT -matthewmpan,2023-05-22T22:03:24Z,- matthewmpan submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1437757178) at 2023-05-22 03:03 PM PDT -matthewmpan,2023-05-23T18:52:33Z,- matthewmpan commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1559969642) at 2023-05-23 11:52 AM PDT -matthewmpan,2023-05-24T19:08:11Z,- matthewmpan submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1442580565) at 2023-05-24 12:08 PM PDT -matthewmpan,2023-05-26T01:17:07Z,- matthewmpan submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1444840186) at 2023-05-25 06:17 PM PDT -matthewmpan,2023-06-13T05:21:15Z,- matthewmpan assigned to issue: [4782](https://github.com/hackforla/website/issues/4782) at 2023-06-12 10:21 PM PDT -matthewmpan,2023-06-13T05:23:57Z,- matthewmpan commented on issue: [4782](https://github.com/hackforla/website/issues/4782#issuecomment-1588568006) at 2023-06-12 10:23 PM PDT -matthewmpan,2023-06-14T19:37:23Z,- matthewmpan submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1480169629) at 2023-06-14 12:37 PM PDT -matthewmpan,2023-06-16T01:43:27Z,- matthewmpan opened pull request: [4843](https://github.com/hackforla/website/pull/4843) at 2023-06-15 06:43 PM PDT -matthewmpan,2023-06-18T16:44:37Z,- matthewmpan pull request merged: [4843](https://github.com/hackforla/website/pull/4843#event-9561559492) at 2023-06-18 09:44 AM PDT -matthewmpan,2023-06-19T02:34:08Z,- matthewmpan commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1596399119) at 2023-06-18 07:34 PM PDT -matthewmpan,2023-06-28T02:58:03Z,- matthewmpan commented on pull request: [4836](https://github.com/hackforla/website/pull/4836#issuecomment-1610602128) at 2023-06-27 07:58 PM PDT -matthewmpan,2023-06-30T05:19:47Z,- matthewmpan submitted pull request review: [4836](https://github.com/hackforla/website/pull/4836#pullrequestreview-1506526974) at 2023-06-29 10:19 PM PDT -mattmalane,4067,SKILLS ISSUE -mattmalane,2023-03-01T04:09:28Z,- mattmalane opened issue: [4067](https://github.com/hackforla/website/issues/4067) at 2023-02-28 08:09 PM PST -mattmalane,2023-03-01T04:09:29Z,- mattmalane assigned to issue: [4067](https://github.com/hackforla/website/issues/4067) at 2023-02-28 08:09 PM PST -mattmalane,2023-03-02T23:30:02Z,- mattmalane assigned to issue: [4044](https://github.com/hackforla/website/issues/4044) at 2023-03-02 03:30 PM PST -mattmalane,2023-03-02T23:33:53Z,- mattmalane commented on issue: [4044](https://github.com/hackforla/website/issues/4044#issuecomment-1452723054) at 2023-03-02 03:33 PM PST -mattmalane,2023-03-03T00:12:01Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1452754788) at 2023-03-02 04:12 PM PST -mattmalane,2023-03-03T01:33:02Z,- mattmalane opened pull request: [4092](https://github.com/hackforla/website/pull/4092) at 2023-03-02 05:33 PM PST -mattmalane,2023-03-03T23:02:01Z,- mattmalane pull request merged: [4092](https://github.com/hackforla/website/pull/4092#event-8664214031) at 2023-03-03 03:02 PM PST -mattmalane,2023-03-06T22:56:37Z,- mattmalane assigned to issue: [4082](https://github.com/hackforla/website/issues/4082) at 2023-03-06 02:56 PM PST -mattmalane,2023-03-06T23:18:49Z,- mattmalane commented on issue: [4082](https://github.com/hackforla/website/issues/4082#issuecomment-1457198405) at 2023-03-06 03:18 PM PST -mattmalane,2023-03-07T00:10:21Z,- mattmalane opened pull request: [4121](https://github.com/hackforla/website/pull/4121) at 2023-03-06 04:10 PM PST -mattmalane,2023-03-08T23:35:57Z,- mattmalane commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1461035076) at 2023-03-08 03:35 PM PST -mattmalane,2023-03-08T23:37:25Z,- mattmalane commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1461037196) at 2023-03-08 03:37 PM PST -mattmalane,2023-03-09T06:37:30Z,- mattmalane pull request merged: [4121](https://github.com/hackforla/website/pull/4121#event-8703824045) at 2023-03-08 10:37 PM PST -mattmalane,2023-03-14T21:16:21Z,- mattmalane assigned to issue: [4083](https://github.com/hackforla/website/issues/4083) at 2023-03-14 02:16 PM PDT -mattmalane,2023-03-14T21:18:36Z,- mattmalane commented on issue: [4083](https://github.com/hackforla/website/issues/4083#issuecomment-1468858982) at 2023-03-14 02:18 PM PDT -mattmalane,2023-03-14T22:13:12Z,- mattmalane opened pull request: [4184](https://github.com/hackforla/website/pull/4184) at 2023-03-14 03:13 PM PDT -mattmalane,2023-03-15T03:03:00Z,- mattmalane commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1469239109) at 2023-03-14 08:03 PM PDT -mattmalane,2023-03-15T03:46:01Z,- mattmalane submitted pull request review: [4181](https://github.com/hackforla/website/pull/4181#pullrequestreview-1340604183) at 2023-03-14 08:46 PM PDT -mattmalane,2023-03-19T04:00:39Z,- mattmalane pull request merged: [4184](https://github.com/hackforla/website/pull/4184#event-8786870877) at 2023-03-18 09:00 PM PDT -mattmalane,2023-03-27T16:11:27Z,- mattmalane assigned to issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1484494520) at 2023-03-27 09:11 AM PDT -mattmalane,2023-03-27T16:12:44Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1485424951) at 2023-03-27 09:12 AM PDT -mattmalane,2023-03-27T16:15:17Z,- mattmalane commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1485428735) at 2023-03-27 09:15 AM PDT -mattmalane,2023-03-28T03:15:18Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1486143570) at 2023-03-27 08:15 PM PDT -mattmalane,2023-03-28T17:23:46Z,- mattmalane commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1487322687) at 2023-03-28 10:23 AM PDT -mattmalane,2023-03-29T21:16:21Z,- mattmalane commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1489336278) at 2023-03-29 02:16 PM PDT -mattmalane,2023-03-29T22:32:05Z,- mattmalane opened pull request: [4341](https://github.com/hackforla/website/pull/4341) at 2023-03-29 03:32 PM PDT -mattmalane,2023-03-30T07:02:04Z,- mattmalane pull request merged: [4341](https://github.com/hackforla/website/pull/4341#event-8883853505) at 2023-03-30 12:02 AM PDT -mattmalane,2023-03-30T17:10:00Z,- mattmalane commented on pull request: [4341](https://github.com/hackforla/website/pull/4341#issuecomment-1490647229) at 2023-03-30 10:10 AM PDT -mattmalane,2023-03-30T23:00:06Z,- mattmalane assigned to issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482224065) at 2023-03-30 04:00 PM PDT -mattmalane,2023-03-30T23:02:08Z,- mattmalane commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1491075003) at 2023-03-30 04:02 PM PDT -mattmalane,2023-04-06T20:00:04Z,- mattmalane commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1499547844) at 2023-04-06 01:00 PM PDT -mattmalane,2023-04-10T23:06:27Z,- mattmalane commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1502449217) at 2023-04-10 04:06 PM PDT -mattmalane,2023-04-10T23:09:07Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1502451816) at 2023-04-10 04:09 PM PDT -mattmalane,2023-04-18T22:53:50Z,- mattmalane opened pull request: [4545](https://github.com/hackforla/website/pull/4545) at 2023-04-18 03:53 PM PDT -mattmalane,2023-04-25T00:01:51Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1520970611) at 2023-04-24 05:01 PM PDT -mattmalane,2023-04-27T16:35:22Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526007505) at 2023-04-27 09:35 AM PDT -mattmalane,2023-04-27T16:37:32Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526010089) at 2023-04-27 09:37 AM PDT -mattmalane,2023-04-28T19:55:59Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1528021926) at 2023-04-28 12:55 PM PDT -mattmalane,2023-04-28T20:39:54Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1528069671) at 2023-04-28 01:39 PM PDT -mattmalane,2023-04-28T21:15:12Z,- mattmalane pull request merged: [4545](https://github.com/hackforla/website/pull/4545#event-9128474995) at 2023-04-28 02:15 PM PDT -MattPereira,3602,SKILLS ISSUE -MattPereira,2022-10-11T02:41:22Z,- MattPereira opened issue: [3602](https://github.com/hackforla/website/issues/3602) at 2022-10-10 07:41 PM PDT -MattPereira,2022-10-12T03:01:13Z,- MattPereira assigned to issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1048146239) at 2022-10-11 08:01 PM PDT -MattPereira,2022-10-12T03:01:32Z,- MattPereira assigned to issue: [3602](https://github.com/hackforla/website/issues/3602) at 2022-10-11 08:01 PM PDT -MattPereira,2022-10-12T03:07:15Z,- MattPereira commented on issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1275523189) at 2022-10-11 08:07 PM PDT -MattPereira,2022-10-12T04:05:44Z,- MattPereira commented on issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1275556981) at 2022-10-11 09:05 PM PDT -MattPereira,2022-10-12T04:24:20Z,- MattPereira opened pull request: [3615](https://github.com/hackforla/website/pull/3615) at 2022-10-11 09:24 PM PDT -MattPereira,2022-10-13T17:12:24Z,- MattPereira commented on pull request: [3616](https://github.com/hackforla/website/pull/3616#issuecomment-1277930112) at 2022-10-13 10:12 AM PDT -MattPereira,2022-10-13T17:35:10Z,- MattPereira submitted pull request review: [3616](https://github.com/hackforla/website/pull/3616#pullrequestreview-1141232404) at 2022-10-13 10:35 AM PDT -MattPereira,2022-10-13T22:30:45Z,- MattPereira commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278246221) at 2022-10-13 03:30 PM PDT -MattPereira,2022-10-13T22:51:29Z,- MattPereira submitted pull request review: [3617](https://github.com/hackforla/website/pull/3617#pullrequestreview-1141597861) at 2022-10-13 03:51 PM PDT -MattPereira,2022-10-14T03:26:11Z,- MattPereira pull request merged: [3615](https://github.com/hackforla/website/pull/3615#event-7586643290) at 2022-10-13 08:26 PM PDT -MattPereira,2022-10-14T17:00:46Z,- MattPereira assigned to issue: [3199](https://github.com/hackforla/website/issues/3199#issuecomment-1145809380) at 2022-10-14 10:00 AM PDT -MattPereira,2022-10-14T17:04:24Z,- MattPereira commented on issue: [3199](https://github.com/hackforla/website/issues/3199#issuecomment-1279254932) at 2022-10-14 10:04 AM PDT -MattPereira,2022-10-14T18:28:58Z,- MattPereira opened pull request: [3621](https://github.com/hackforla/website/pull/3621) at 2022-10-14 11:28 AM PDT -MattPereira,2022-10-14T18:50:38Z,- MattPereira commented on issue: [3602](https://github.com/hackforla/website/issues/3602#issuecomment-1279349271) at 2022-10-14 11:50 AM PDT -MattPereira,2022-10-15T17:07:45Z,- MattPereira commented on pull request: [3620](https://github.com/hackforla/website/pull/3620#issuecomment-1279784727) at 2022-10-15 10:07 AM PDT -MattPereira,2022-10-15T17:15:57Z,- MattPereira submitted pull request review: [3620](https://github.com/hackforla/website/pull/3620#pullrequestreview-1143209654) at 2022-10-15 10:15 AM PDT -MattPereira,2022-10-15T20:35:25Z,- MattPereira pull request merged: [3621](https://github.com/hackforla/website/pull/3621#event-7595484535) at 2022-10-15 01:35 PM PDT -MattPereira,2022-10-15T21:09:30Z,- MattPereira submitted pull request review: [3623](https://github.com/hackforla/website/pull/3623#pullrequestreview-1143228082) at 2022-10-15 02:09 PM PDT -MattPereira,2022-10-15T21:12:23Z,- MattPereira commented on pull request: [3623](https://github.com/hackforla/website/pull/3623#issuecomment-1279833146) at 2022-10-15 02:12 PM PDT -MattPereira,2022-10-17T19:56:52Z,- MattPereira assigned to issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1253988018) at 2022-10-17 12:56 PM PDT -MattPereira,2022-10-17T20:20:54Z,- MattPereira commented on issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1281444514) at 2022-10-17 01:20 PM PDT -MattPereira,2022-10-17T23:02:23Z,- MattPereira opened pull request: [3633](https://github.com/hackforla/website/pull/3633) at 2022-10-17 04:02 PM PDT -MattPereira,2022-10-17T23:15:27Z,- MattPereira commented on pull request: [3629](https://github.com/hackforla/website/pull/3629#issuecomment-1281616663) at 2022-10-17 04:15 PM PDT -MattPereira,2022-10-17T23:29:45Z,- MattPereira submitted pull request review: [3629](https://github.com/hackforla/website/pull/3629#pullrequestreview-1144917021) at 2022-10-17 04:29 PM PDT -MattPereira,2022-10-18T18:11:21Z,- MattPereira commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1282812121) at 2022-10-18 11:11 AM PDT -MattPereira,2022-10-19T18:49:53Z,- MattPereira commented on pull request: [3642](https://github.com/hackforla/website/pull/3642#issuecomment-1284435580) at 2022-10-19 11:49 AM PDT -MattPereira,2022-10-19T19:00:57Z,- MattPereira submitted pull request review: [3642](https://github.com/hackforla/website/pull/3642#pullrequestreview-1148129534) at 2022-10-19 12:00 PM PDT -MattPereira,2022-10-20T00:51:44Z,- MattPereira pull request merged: [3633](https://github.com/hackforla/website/pull/3633#event-7626235179) at 2022-10-19 05:51 PM PDT -MattPereira,2022-10-20T18:22:39Z,- MattPereira assigned to issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-923623422) at 2022-10-20 11:22 AM PDT -MattPereira,2022-10-20T18:24:20Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1285967312) at 2022-10-20 11:24 AM PDT -MattPereira,2022-10-20T18:28:53Z,- MattPereira commented on pull request: [3643](https://github.com/hackforla/website/pull/3643#issuecomment-1285972086) at 2022-10-20 11:28 AM PDT -MattPereira,2022-10-20T19:03:10Z,- MattPereira submitted pull request review: [3643](https://github.com/hackforla/website/pull/3643#pullrequestreview-1149819056) at 2022-10-20 12:03 PM PDT -MattPereira,2022-10-20T21:14:58Z,- MattPereira closed issue as completed: [3602](https://github.com/hackforla/website/issues/3602#event-7635047472) at 2022-10-20 02:14 PM PDT -MattPereira,2022-10-20T22:53:10Z,- MattPereira commented on pull request: [3645](https://github.com/hackforla/website/pull/3645#issuecomment-1286247244) at 2022-10-20 03:53 PM PDT -MattPereira,2022-10-20T22:57:57Z,- MattPereira submitted pull request review: [3645](https://github.com/hackforla/website/pull/3645#pullrequestreview-1150104581) at 2022-10-20 03:57 PM PDT -MattPereira,2022-10-21T21:59:54Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1287477116) at 2022-10-21 02:59 PM PDT -MattPereira,2022-10-22T19:31:04Z,- MattPereira commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287891883) at 2022-10-22 12:31 PM PDT -MattPereira,2022-10-22T19:43:55Z,- MattPereira submitted pull request review: [3648](https://github.com/hackforla/website/pull/3648#pullrequestreview-1152118791) at 2022-10-22 12:43 PM PDT -MattPereira,2022-10-23T23:59:32Z,- MattPereira commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288236475) at 2022-10-23 04:59 PM PDT -MattPereira,2022-10-24T03:11:22Z,- MattPereira commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288354696) at 2022-10-23 08:11 PM PDT -MattPereira,2022-10-24T17:02:14Z,- MattPereira submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1153486474) at 2022-10-24 10:02 AM PDT -MattPereira,2022-10-24T18:29:02Z,- MattPereira commented on pull request: [3650](https://github.com/hackforla/website/pull/3650#issuecomment-1289425225) at 2022-10-24 11:29 AM PDT -MattPereira,2022-10-24T18:32:35Z,- MattPereira submitted pull request review: [3650](https://github.com/hackforla/website/pull/3650#pullrequestreview-1153594592) at 2022-10-24 11:32 AM PDT -MattPereira,2022-10-24T20:16:41Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1289558836) at 2022-10-24 01:16 PM PDT -MattPereira,2022-10-24T22:51:02Z,- MattPereira opened pull request: [3653](https://github.com/hackforla/website/pull/3653) at 2022-10-24 03:51 PM PDT -MattPereira,2022-10-25T21:56:47Z,- MattPereira pull request closed w/o merging: [3653](https://github.com/hackforla/website/pull/3653#event-7667493274) at 2022-10-25 02:56 PM PDT -MattPereira,2022-10-25T22:08:44Z,- MattPereira commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1291194981) at 2022-10-25 03:08 PM PDT -MattPereira,2022-10-26T00:00:31Z,- MattPereira commented on pull request: [3659](https://github.com/hackforla/website/pull/3659#issuecomment-1291263502) at 2022-10-25 05:00 PM PDT -MattPereira,2022-10-26T00:09:08Z,- MattPereira submitted pull request review: [3659](https://github.com/hackforla/website/pull/3659#pullrequestreview-1155694201) at 2022-10-25 05:09 PM PDT -MattPereira,2022-10-26T00:11:27Z,- MattPereira commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1291269729) at 2022-10-25 05:11 PM PDT -MattPereira,2022-10-27T21:40:04Z,- MattPereira commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1294098005) at 2022-10-27 02:40 PM PDT -MattPereira,2022-10-27T23:17:27Z,- MattPereira commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1294223661) at 2022-10-27 04:17 PM PDT -MattPereira,2022-10-27T23:34:11Z,- MattPereira submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1159153613) at 2022-10-27 04:34 PM PDT -MattPereira,2022-10-28T00:07:36Z,- MattPereira submitted pull request review: [3664](https://github.com/hackforla/website/pull/3664#pullrequestreview-1159169420) at 2022-10-27 05:07 PM PDT -MattPereira,2022-10-28T19:26:56Z,- MattPereira opened pull request: [3672](https://github.com/hackforla/website/pull/3672) at 2022-10-28 12:26 PM PDT -MattPereira,2022-10-28T19:44:19Z,- MattPereira commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1295394616) at 2022-10-28 12:44 PM PDT -MattPereira,2022-10-28T19:53:15Z,- MattPereira submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1160629616) at 2022-10-28 12:53 PM PDT -MattPereira,2022-10-29T18:33:22Z,- MattPereira commented on pull request: [3673](https://github.com/hackforla/website/pull/3673#issuecomment-1295930052) at 2022-10-29 11:33 AM PDT -MattPereira,2022-10-29T18:45:16Z,- MattPereira submitted pull request review: [3673](https://github.com/hackforla/website/pull/3673#pullrequestreview-1161028138) at 2022-10-29 11:45 AM PDT -MattPereira,2022-10-31T17:58:20Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1297463689) at 2022-10-31 10:58 AM PDT -MattPereira,2022-10-31T18:11:49Z,- MattPereira commented on pull request: [3677](https://github.com/hackforla/website/pull/3677#issuecomment-1297478751) at 2022-10-31 11:11 AM PDT -MattPereira,2022-10-31T18:16:08Z,- MattPereira submitted pull request review: [3677](https://github.com/hackforla/website/pull/3677#pullrequestreview-1162334755) at 2022-10-31 11:16 AM PDT -MattPereira,2022-10-31T19:10:46Z,- MattPereira submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1162406561) at 2022-10-31 12:10 PM PDT -MattPereira,2022-11-03T16:58:54Z,- MattPereira commented on pull request: [3692](https://github.com/hackforla/website/pull/3692#issuecomment-1302405492) at 2022-11-03 09:58 AM PDT -MattPereira,2022-11-03T21:01:26Z,- MattPereira submitted pull request review: [3692](https://github.com/hackforla/website/pull/3692#pullrequestreview-1167658563) at 2022-11-03 02:01 PM PDT -MattPereira,2022-11-05T17:40:37Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1304598171) at 2022-11-05 09:40 AM PST -MattPereira,2022-11-05T21:02:41Z,- MattPereira commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304641075) at 2022-11-05 01:02 PM PST -MattPereira,2022-11-05T21:03:19Z,- MattPereira commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304641187) at 2022-11-05 01:03 PM PST -MattPereira,2022-11-06T20:21:06Z,- MattPereira submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1169647219) at 2022-11-06 12:21 PM PST -MattPereira,2022-11-07T03:48:24Z,- MattPereira submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1169761594) at 2022-11-06 07:48 PM PST -MattPereira,2022-11-07T19:36:28Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1306094209) at 2022-11-07 11:36 AM PST -MattPereira,2022-11-08T16:35:02Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1307500170) at 2022-11-08 08:35 AM PST -MattPereira,2022-11-08T23:30:36Z,- MattPereira commented on pull request: [3699](https://github.com/hackforla/website/pull/3699#issuecomment-1307975824) at 2022-11-08 03:30 PM PST -MattPereira,2022-11-08T23:32:25Z,- MattPereira submitted pull request review: [3699](https://github.com/hackforla/website/pull/3699#pullrequestreview-1172990889) at 2022-11-08 03:32 PM PST -MattPereira,2022-11-09T02:06:25Z,- MattPereira commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1308098746) at 2022-11-08 06:06 PM PST -MattPereira,2022-11-09T20:14:13Z,- MattPereira submitted pull request review: [3702](https://github.com/hackforla/website/pull/3702#pullrequestreview-1174689018) at 2022-11-09 12:14 PM PST -MattPereira,2022-11-10T19:03:19Z,- MattPereira commented on pull request: [3705](https://github.com/hackforla/website/pull/3705#issuecomment-1310766741) at 2022-11-10 11:03 AM PST -MattPereira,2022-11-14T01:48:28Z,- MattPereira pull request merged: [3672](https://github.com/hackforla/website/pull/3672#event-7799696505) at 2022-11-13 05:48 PM PST -MattPereira,2022-11-14T02:06:36Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1312941872) at 2022-11-13 06:06 PM PST -MattPereira,2022-11-14T02:20:01Z,- MattPereira assigned to issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1176466870) at 2022-11-13 06:20 PM PST -MattPereira,2022-11-14T02:24:21Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1312953666) at 2022-11-13 06:24 PM PST -MattPereira,2022-11-14T21:39:44Z,- MattPereira commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314440859) at 2022-11-14 01:39 PM PST -MattPereira,2022-11-15T06:13:02Z,- MattPereira submitted pull request review: [3717](https://github.com/hackforla/website/pull/3717#pullrequestreview-1180252349) at 2022-11-14 10:13 PM PST -MattPereira,2022-11-15T19:43:24Z,- MattPereira commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1315784715) at 2022-11-15 11:43 AM PST -MattPereira,2022-11-16T04:44:02Z,- MattPereira opened issue: [3723](https://github.com/hackforla/website/issues/3723) at 2022-11-15 08:44 PM PST -MattPereira,2022-11-16T05:26:15Z,- MattPereira commented on issue: [3723](https://github.com/hackforla/website/issues/3723#issuecomment-1316378690) at 2022-11-15 09:26 PM PST -MattPereira,2022-11-16T05:26:15Z,- MattPereira closed issue as not planned: [3723](https://github.com/hackforla/website/issues/3723#event-7820092920) at 2022-11-15 09:26 PM PST -MattPereira,2022-11-16T19:03:28Z,- MattPereira submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1183172161) at 2022-11-16 11:03 AM PST -MattPereira,2022-11-18T20:46:48Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186760073) at 2022-11-18 12:46 PM PST -MattPereira,2022-11-18T22:02:47Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186862833) at 2022-11-18 02:02 PM PST -MattPereira,2022-11-18T22:25:52Z,- MattPereira submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186888639) at 2022-11-18 02:25 PM PST -MattPereira,2022-11-18T22:26:23Z,- MattPereira closed issue by PR 3729: [3211](https://github.com/hackforla/website/issues/3211#event-7847907387) at 2022-11-18 02:26 PM PST -MattPereira,2022-11-19T04:31:02Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1187018138) at 2022-11-18 08:31 PM PST -MattPereira,2022-11-19T23:05:21Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1187136969) at 2022-11-19 03:05 PM PST -MattPereira,2022-11-19T23:14:15Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1187138018) at 2022-11-19 03:14 PM PST -MattPereira,2022-11-21T23:15:19Z,- MattPereira commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1322783295) at 2022-11-21 03:15 PM PST -MattPereira,2022-11-21T23:18:00Z,- MattPereira closed issue by PR 3733: [3212](https://github.com/hackforla/website/issues/3212#event-7861975227) at 2022-11-21 03:18 PM PST -MattPereira,2022-11-23T03:41:13Z,- MattPereira opened issue: [3742](https://github.com/hackforla/website/issues/3742) at 2022-11-22 07:41 PM PST -MattPereira,2022-11-23T03:49:56Z,- MattPereira closed issue as completed: [3742](https://github.com/hackforla/website/issues/3742#event-7873348662) at 2022-11-22 07:49 PM PST -MattPereira,2022-11-23T04:01:08Z,- MattPereira commented on issue: [3742](https://github.com/hackforla/website/issues/3742#issuecomment-1324519314) at 2022-11-22 08:01 PM PST -MattPereira,2022-11-25T03:10:31Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1193781092) at 2022-11-24 07:10 PM PST -MattPereira,2022-11-25T03:18:13Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1193784139) at 2022-11-24 07:18 PM PST -MattPereira,2022-11-25T21:13:09Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1194768854) at 2022-11-25 01:13 PM PST -MattPereira,2022-11-25T21:26:17Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1194775046) at 2022-11-25 01:26 PM PST -MattPereira,2022-11-25T22:18:28Z,- MattPereira submitted pull request review: [3745](https://github.com/hackforla/website/pull/3745#pullrequestreview-1194786747) at 2022-11-25 02:18 PM PST -MattPereira,2022-11-25T22:19:07Z,- MattPereira closed issue by PR 3745: [3213](https://github.com/hackforla/website/issues/3213#event-7895318937) at 2022-11-25 02:19 PM PST -MattPereira,2022-11-26T18:43:11Z,- MattPereira closed issue by PR 3726: [2929](https://github.com/hackforla/website/issues/2929#event-7896601944) at 2022-11-26 10:43 AM PST -MattPereira,2022-11-27T02:13:45Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1328154344) at 2022-11-26 06:13 PM PST -MattPereira,2022-11-27T03:21:35Z,- MattPereira commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1328161705) at 2022-11-26 07:21 PM PST -MattPereira,2022-11-27T03:41:41Z,- MattPereira opened issue: [3747](https://github.com/hackforla/website/issues/3747) at 2022-11-26 07:41 PM PST -MattPereira,2022-11-27T17:39:53Z,- MattPereira closed issue as completed: [3747](https://github.com/hackforla/website/issues/3747#event-7897927808) at 2022-11-27 09:39 AM PST -MattPereira,2022-11-27T20:29:26Z,- MattPereira assigned to issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333414) at 2022-11-27 12:29 PM PST -MattPereira,2022-11-28T01:58:54Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1195113977) at 2022-11-27 05:58 PM PST -MattPereira,2022-11-28T21:49:11Z,- MattPereira submitted pull request review: [3741](https://github.com/hackforla/website/pull/3741#pullrequestreview-1196599436) at 2022-11-28 01:49 PM PST -MattPereira,2022-12-01T17:57:29Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1201445840) at 2022-12-01 09:57 AM PST -MattPereira,2022-12-01T20:15:35Z,- MattPereira commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1334379811) at 2022-12-01 12:15 PM PST -MattPereira,2022-12-01T21:51:01Z,- MattPereira commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1334491718) at 2022-12-01 01:51 PM PST -MattPereira,2022-12-01T22:48:07Z,- MattPereira commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1334543419) at 2022-12-01 02:48 PM PST -MattPereira,2022-12-02T22:18:20Z,- MattPereira opened issue: [3765](https://github.com/hackforla/website/issues/3765) at 2022-12-02 02:18 PM PST -MattPereira,2022-12-02T22:19:11Z,- MattPereira commented on issue: [3765](https://github.com/hackforla/website/issues/3765#issuecomment-1335919447) at 2022-12-02 02:19 PM PST -MattPereira,2022-12-02T22:19:11Z,- MattPereira closed issue as completed: [3765](https://github.com/hackforla/website/issues/3765#event-7944266823) at 2022-12-02 02:19 PM PST -MattPereira,2022-12-03T02:16:18Z,- MattPereira commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1336015108) at 2022-12-02 06:16 PM PST -MattPereira,2022-12-03T02:43:59Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1336020289) at 2022-12-02 06:43 PM PST -MattPereira,2022-12-03T17:22:02Z,- MattPereira commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1336202088) at 2022-12-03 09:22 AM PST -MattPereira,2022-12-10T02:50:07Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1212398142) at 2022-12-09 06:50 PM PST -MattPereira,2022-12-10T03:18:15Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1212402098) at 2022-12-09 07:18 PM PST -MattPereira,2022-12-10T03:24:00Z,- MattPereira closed issue by PR 3329: [2112](https://github.com/hackforla/website/issues/2112#event-8003276962) at 2022-12-09 07:24 PM PST -MattPereira,2022-12-10T04:21:13Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1212436001) at 2022-12-09 08:21 PM PST -MattPereira,2022-12-12T02:56:17Z,- MattPereira commented on pull request: [3768](https://github.com/hackforla/website/pull/3768#issuecomment-1345792133) at 2022-12-11 06:56 PM PST -MattPereira,2022-12-12T03:13:19Z,- MattPereira submitted pull request review: [3768](https://github.com/hackforla/website/pull/3768#pullrequestreview-1212851314) at 2022-12-11 07:13 PM PST -MattPereira,2022-12-15T20:36:51Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1219911327) at 2022-12-15 12:36 PM PST -MattPereira,2022-12-16T00:38:29Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1220132101) at 2022-12-15 04:38 PM PST -MattPereira,2022-12-16T22:44:51Z,- MattPereira closed issue by PR 3725: [3027](https://github.com/hackforla/website/issues/3027#event-8060326721) at 2022-12-16 02:44 PM PST -MattPereira,2023-01-02T18:59:59Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1369148007) at 2023-01-02 10:59 AM PST -MattPereira,2023-01-09T21:56:22Z,- MattPereira commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1376381660) at 2023-01-09 01:56 PM PST -MattPereira,2023-01-09T23:03:13Z,- MattPereira submitted pull request review: [3774](https://github.com/hackforla/website/pull/3774#pullrequestreview-1241321331) at 2023-01-09 03:03 PM PST -MattPereira,2023-01-09T23:17:20Z,- MattPereira commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1376475414) at 2023-01-09 03:17 PM PST -MattPereira,2023-01-10T05:59:47Z,- MattPereira opened issue: [3803](https://github.com/hackforla/website/issues/3803) at 2023-01-09 09:59 PM PST -MattPereira,2023-01-10T19:10:30Z,- MattPereira opened issue: [3805](https://github.com/hackforla/website/issues/3805) at 2023-01-10 11:10 AM PST -MattPereira,2023-01-10T19:11:39Z,- MattPereira commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1377725724) at 2023-01-10 11:11 AM PST -MattPereira,2023-01-10T22:57:16Z,- MattPereira assigned to issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1332402495) at 2023-01-10 02:57 PM PST -MattPereira,2023-01-11T02:31:29Z,- MattPereira commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378165402) at 2023-01-10 06:31 PM PST -MattPereira,2023-01-11T02:45:18Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1243220438) at 2023-01-10 06:45 PM PST -MattPereira,2023-01-11T21:03:06Z,- MattPereira submitted pull request review: [3801](https://github.com/hackforla/website/pull/3801#pullrequestreview-1244609568) at 2023-01-11 01:03 PM PST -MattPereira,2023-01-11T21:25:21Z,- MattPereira commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1379503228) at 2023-01-11 01:25 PM PST -MattPereira,2023-01-12T02:37:00Z,- MattPereira submitted pull request review: [3801](https://github.com/hackforla/website/pull/3801#pullrequestreview-1244880696) at 2023-01-11 06:37 PM PST -MattPereira,2023-01-15T05:54:11Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1383064108) at 2023-01-14 09:54 PM PST -MattPereira,2023-01-17T21:01:19Z,- MattPereira commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1386045443) at 2023-01-17 01:01 PM PST -MattPereira,2023-01-17T22:18:31Z,- MattPereira submitted pull request review: [3833](https://github.com/hackforla/website/pull/3833#pullrequestreview-1252538952) at 2023-01-17 02:18 PM PST -MattPereira,2023-01-18T00:48:51Z,- MattPereira commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1386299765) at 2023-01-17 04:48 PM PST -MattPereira,2023-01-18T00:58:08Z,- MattPereira submitted pull request review: [3833](https://github.com/hackforla/website/pull/3833#pullrequestreview-1252674146) at 2023-01-17 04:58 PM PST -MattPereira,2023-01-18T01:00:31Z,- MattPereira closed issue by PR 3833: [3701](https://github.com/hackforla/website/issues/3701#event-8251200944) at 2023-01-17 05:00 PM PST -MattPereira,2023-01-18T17:53:43Z,- MattPereira closed issue by PR 3835: [3398](https://github.com/hackforla/website/issues/3398#event-8258310343) at 2023-01-18 09:53 AM PST -MattPereira,2023-01-19T00:44:16Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1260982126) at 2023-01-18 04:44 PM PST -MattPereira,2023-01-20T00:21:13Z,- MattPereira closed issue by PR 3811: [2864](https://github.com/hackforla/website/issues/2864#event-8317320951) at 2023-01-19 04:21 PM PST -MattPereira,2023-01-22T21:29:15Z,- MattPereira assigned to issue: [3858](https://github.com/hackforla/website/issues/3858) at 2023-01-22 01:29 PM PST -MattPereira,2023-01-22T22:57:12Z,- MattPereira commented on issue: [3858](https://github.com/hackforla/website/issues/3858#issuecomment-1399632022) at 2023-01-22 02:57 PM PST -MattPereira,2023-01-23T00:20:46Z,- MattPereira opened issue: [3860](https://github.com/hackforla/website/issues/3860) at 2023-01-22 04:20 PM PST -MattPereira,2023-01-23T00:21:45Z,- MattPereira commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1399654470) at 2023-01-22 04:21 PM PST -MattPereira,2023-01-23T01:21:30Z,- MattPereira opened issue: [3861](https://github.com/hackforla/website/issues/3861) at 2023-01-22 05:21 PM PST -MattPereira,2023-01-23T22:23:52Z,- MattPereira commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1401088681) at 2023-01-23 02:23 PM PST -MattPereira,2023-01-24T02:40:13Z,- MattPereira commented on issue: [3857](https://github.com/hackforla/website/issues/3857#issuecomment-1401324523) at 2023-01-23 06:40 PM PST -MattPereira,2023-01-24T02:40:22Z,- MattPereira closed issue as completed: [3857](https://github.com/hackforla/website/issues/3857#event-8340130168) at 2023-01-23 06:40 PM PST -MattPereira,2023-01-24T17:31:55Z,- MattPereira submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1267949544) at 2023-01-24 09:31 AM PST -MattPereira,2023-01-24T17:32:49Z,- MattPereira commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1402328559) at 2023-01-24 09:32 AM PST -MattPereira,2023-01-24T17:34:37Z,- MattPereira closed issue by PR 3649: [2626](https://github.com/hackforla/website/issues/2626#event-8346688096) at 2023-01-24 09:34 AM PST -MattPereira,2023-01-24T19:21:38Z,- MattPereira opened issue: [3866](https://github.com/hackforla/website/issues/3866) at 2023-01-24 11:21 AM PST -MattPereira,2023-01-24T19:21:39Z,- MattPereira assigned to issue: [3866](https://github.com/hackforla/website/issues/3866) at 2023-01-24 11:21 AM PST -MattPereira,2023-01-24T23:04:54Z,- MattPereira opened issue: [3868](https://github.com/hackforla/website/issues/3868) at 2023-01-24 03:04 PM PST -MattPereira,2023-01-24T23:35:18Z,- MattPereira opened issue: [3869](https://github.com/hackforla/website/issues/3869) at 2023-01-24 03:35 PM PST -MattPereira,2023-01-24T23:45:46Z,- MattPereira opened issue: [3870](https://github.com/hackforla/website/issues/3870) at 2023-01-24 03:45 PM PST -MattPereira,2023-01-25T04:50:35Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1268704907) at 2023-01-24 08:50 PM PST -MattPereira,2023-01-25T18:32:57Z,- MattPereira assigned to issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1401293557) at 2023-01-25 10:32 AM PST -MattPereira,2023-01-25T18:46:01Z,- MattPereira opened issue: [3872](https://github.com/hackforla/website/issues/3872) at 2023-01-25 10:46 AM PST -MattPereira,2023-01-25T18:46:40Z,- MattPereira commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1404069663) at 2023-01-25 10:46 AM PST -MattPereira,2023-01-26T18:41:53Z,- MattPereira opened issue: [3873](https://github.com/hackforla/website/issues/3873) at 2023-01-26 10:41 AM PST -MattPereira,2023-01-26T18:51:13Z,- MattPereira opened issue: [3874](https://github.com/hackforla/website/issues/3874) at 2023-01-26 10:51 AM PST -MattPereira,2023-01-26T18:54:52Z,- MattPereira assigned to issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1401316234) at 2023-01-26 10:54 AM PST -MattPereira,2023-01-26T19:00:52Z,- MattPereira opened issue: [3875](https://github.com/hackforla/website/issues/3875) at 2023-01-26 11:00 AM PST -MattPereira,2023-01-26T19:03:47Z,- MattPereira opened issue: [3876](https://github.com/hackforla/website/issues/3876) at 2023-01-26 11:03 AM PST -MattPereira,2023-01-26T19:22:17Z,- MattPereira opened issue: [3877](https://github.com/hackforla/website/issues/3877) at 2023-01-26 11:22 AM PST -MattPereira,2023-01-26T19:24:20Z,- MattPereira opened issue: [3878](https://github.com/hackforla/website/issues/3878) at 2023-01-26 11:24 AM PST -MattPereira,2023-01-26T19:28:10Z,- MattPereira commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1405497283) at 2023-01-26 11:28 AM PST -MattPereira,2023-01-29T03:57:13Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1407554247) at 2023-01-28 07:57 PM PST -MattPereira,2023-01-30T01:16:18Z,- MattPereira assigned to issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407805861) at 2023-01-29 05:16 PM PST -MattPereira,2023-01-30T01:51:17Z,- MattPereira unassigned from issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407846561) at 2023-01-29 05:51 PM PST -MattPereira,2023-01-31T00:53:27Z,- MattPereira opened issue: [3904](https://github.com/hackforla/website/issues/3904) at 2023-01-30 04:53 PM PST -MattPereira,2023-01-31T23:06:54Z,- MattPereira opened issue: [3906](https://github.com/hackforla/website/issues/3906) at 2023-01-31 03:06 PM PST -MattPereira,2023-02-01T02:05:01Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1278316720) at 2023-01-31 06:05 PM PST -MattPereira,2023-02-01T02:05:30Z,- MattPereira closed issue by PR 3767: [3547](https://github.com/hackforla/website/issues/3547#event-8405489160) at 2023-01-31 06:05 PM PST -MattPereira,2023-02-01T02:44:49Z,- MattPereira commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1411375413) at 2023-01-31 06:44 PM PST -MattPereira,2023-02-01T03:24:36Z,- MattPereira commented on pull request: [3905](https://github.com/hackforla/website/pull/3905#issuecomment-1411409088) at 2023-01-31 07:24 PM PST -MattPereira,2023-02-01T03:33:00Z,- MattPereira submitted pull request review: [3905](https://github.com/hackforla/website/pull/3905#pullrequestreview-1278385929) at 2023-01-31 07:33 PM PST -MattPereira,2023-02-01T04:19:37Z,- MattPereira commented on pull request: [3888](https://github.com/hackforla/website/pull/3888#issuecomment-1411443736) at 2023-01-31 08:19 PM PST -MattPereira,2023-02-01T04:23:54Z,- MattPereira submitted pull request review: [3888](https://github.com/hackforla/website/pull/3888#pullrequestreview-1278412529) at 2023-01-31 08:23 PM PST -MattPereira,2023-02-01T05:23:00Z,- MattPereira commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1411486289) at 2023-01-31 09:23 PM PST -MattPereira,2023-02-01T05:25:16Z,- MattPereira submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1278449929) at 2023-01-31 09:25 PM PST -MattPereira,2023-02-01T05:32:19Z,- MattPereira commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1411491689) at 2023-01-31 09:32 PM PST -MattPereira,2023-02-01T05:32:25Z,- MattPereira closed issue as completed: [3792](https://github.com/hackforla/website/issues/3792#event-8406555552) at 2023-01-31 09:32 PM PST -MattPereira,2023-02-01T06:23:43Z,- MattPereira closed issue by PR 3905: [3892](https://github.com/hackforla/website/issues/3892#event-8406815329) at 2023-01-31 10:23 PM PST -MattPereira,2023-02-01T18:52:25Z,- MattPereira commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1412554951) at 2023-02-01 10:52 AM PST -MattPereira,2023-02-01T21:05:38Z,- MattPereira submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1279861602) at 2023-02-01 01:05 PM PST -MattPereira,2023-02-01T21:06:31Z,- MattPereira closed issue by PR 3839: [3109](https://github.com/hackforla/website/issues/3109#event-8414651640) at 2023-02-01 01:06 PM PST -MattPereira,2023-02-01T21:09:43Z,- MattPereira opened issue: [3921](https://github.com/hackforla/website/issues/3921) at 2023-02-01 01:09 PM PST -MattPereira,2023-02-01T21:17:06Z,- MattPereira closed issue as completed: [3921](https://github.com/hackforla/website/issues/3921#event-8414728502) at 2023-02-01 01:17 PM PST -MattPereira,2023-02-01T21:33:56Z,- MattPereira commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1412760899) at 2023-02-01 01:33 PM PST -MattPereira,2023-02-01T21:35:07Z,- MattPereira commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1412762555) at 2023-02-01 01:35 PM PST -MattPereira,2023-02-02T18:49:02Z,- MattPereira commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1414205664) at 2023-02-02 10:49 AM PST -MattPereira,2023-02-02T18:59:57Z,- MattPereira submitted pull request review: [3907](https://github.com/hackforla/website/pull/3907#pullrequestreview-1281706473) at 2023-02-02 10:59 AM PST -MattPereira,2023-02-02T19:10:58Z,- MattPereira commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1414232571) at 2023-02-02 11:10 AM PST -MattPereira,2023-02-03T01:51:21Z,- MattPereira commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1414613821) at 2023-02-02 05:51 PM PST -MattPereira,2023-02-03T05:43:46Z,- MattPereira commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1415037836) at 2023-02-02 09:43 PM PST -MattPereira,2023-02-03T05:45:53Z,- MattPereira commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1415041258) at 2023-02-02 09:45 PM PST -MattPereira,2023-02-04T00:19:14Z,- MattPereira commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1416551657) at 2023-02-03 04:19 PM PST -MattPereira,2023-02-04T00:30:40Z,- MattPereira submitted pull request review: [3888](https://github.com/hackforla/website/pull/3888#pullrequestreview-1283955272) at 2023-02-03 04:30 PM PST -MattPereira,2023-02-04T00:31:33Z,- MattPereira closed issue by PR 3888: [3383](https://github.com/hackforla/website/issues/3383#event-8437337856) at 2023-02-03 04:31 PM PST -MattPereira,2023-02-04T00:40:16Z,- MattPereira submitted pull request review: [3907](https://github.com/hackforla/website/pull/3907#pullrequestreview-1283967967) at 2023-02-03 04:40 PM PST -MattPereira,2023-02-04T00:40:59Z,- MattPereira closed issue by PR 3907: [3818](https://github.com/hackforla/website/issues/3818#event-8437364215) at 2023-02-03 04:40 PM PST -MattPereira,2023-02-04T01:20:03Z,- MattPereira opened issue: [3933](https://github.com/hackforla/website/issues/3933) at 2023-02-03 05:20 PM PST -MattPereira,2023-02-04T22:50:25Z,- MattPereira commented on pull request: [3924](https://github.com/hackforla/website/pull/3924#issuecomment-1416868407) at 2023-02-04 02:50 PM PST -MattPereira,2023-02-04T22:56:32Z,- MattPereira submitted pull request review: [3924](https://github.com/hackforla/website/pull/3924#pullrequestreview-1284123582) at 2023-02-04 02:56 PM PST -MattPereira,2023-02-04T22:57:15Z,- MattPereira closed issue by PR 3924: [3893](https://github.com/hackforla/website/issues/3893#event-8439314361) at 2023-02-04 02:57 PM PST -MattPereira,2023-02-04T23:05:31Z,- MattPereira assigned to issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416265727) at 2023-02-04 03:05 PM PST -MattPereira,2023-02-04T23:50:44Z,- MattPereira assigned to issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416262079) at 2023-02-04 03:50 PM PST -MattPereira,2023-02-05T00:01:45Z,- MattPereira commented on issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416879946) at 2023-02-04 04:01 PM PST -MattPereira,2023-02-05T00:02:14Z,- MattPereira unassigned from issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416879946) at 2023-02-04 04:02 PM PST -MattPereira,2023-02-05T00:03:22Z,- MattPereira unassigned from issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416871780) at 2023-02-04 04:03 PM PST -MattPereira,2023-02-05T02:52:35Z,- MattPereira assigned to issue: [3903](https://github.com/hackforla/website/issues/3903) at 2023-02-04 06:52 PM PST -MattPereira,2023-02-05T03:11:13Z,- MattPereira assigned to issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416798094) at 2023-02-04 07:11 PM PST -MattPereira,2023-02-05T03:28:25Z,- MattPereira opened issue: [3936](https://github.com/hackforla/website/issues/3936) at 2023-02-04 07:28 PM PST -MattPereira,2023-02-05T03:29:24Z,- MattPereira commented on issue: [3903](https://github.com/hackforla/website/issues/3903#issuecomment-1416912814) at 2023-02-04 07:29 PM PST -MattPereira,2023-02-05T03:29:44Z,- MattPereira closed issue as completed: [3903](https://github.com/hackforla/website/issues/3903#event-8439571511) at 2023-02-04 07:29 PM PST -MattPereira,2023-02-05T03:30:21Z,- MattPereira commented on issue: [3903](https://github.com/hackforla/website/issues/3903#issuecomment-1416912927) at 2023-02-04 07:30 PM PST -MattPereira,2023-02-05T19:12:13Z,- MattPereira assigned to issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1407747225) at 2023-02-05 11:12 AM PST -MattPereira,2023-02-05T19:14:39Z,- MattPereira unassigned from issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416910718) at 2023-02-05 11:14 AM PST -MattPereira,2023-02-05T20:04:58Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418252187) at 2023-02-05 12:04 PM PST -MattPereira,2023-02-05T21:49:12Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418273561) at 2023-02-05 01:49 PM PST -MattPereira,2023-02-05T22:39:03Z,- MattPereira opened pull request: [3939](https://github.com/hackforla/website/pull/3939) at 2023-02-05 02:39 PM PST -MattPereira,2023-02-05T22:57:01Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418288144) at 2023-02-05 02:57 PM PST -MattPereira,2023-02-05T23:47:01Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418299816) at 2023-02-05 03:47 PM PST -MattPereira,2023-02-06T00:36:05Z,- MattPereira pull request merged: [3939](https://github.com/hackforla/website/pull/3939#event-8442317708) at 2023-02-05 04:36 PM PST -MattPereira,2023-02-06T20:54:01Z,- MattPereira assigned to issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419568110) at 2023-02-06 12:54 PM PST -MattPereira,2023-02-06T21:08:39Z,- MattPereira unassigned from issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419735155) at 2023-02-06 01:08 PM PST -MattPereira,2023-02-07T00:26:49Z,- MattPereira submitted pull request review: [3901](https://github.com/hackforla/website/pull/3901#pullrequestreview-1286214112) at 2023-02-06 04:26 PM PST -MattPereira,2023-02-07T00:37:24Z,- MattPereira closed issue by PR 3932: [3837](https://github.com/hackforla/website/issues/3837#event-8453047120) at 2023-02-06 04:37 PM PST -MattPereira,2023-02-07T02:15:31Z,- MattPereira closed issue as completed: [3352](https://github.com/hackforla/website/issues/3352#event-8453440362) at 2023-02-06 06:15 PM PST -MattPereira,2023-02-07T22:40:57Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1288113515) at 2023-02-07 02:40 PM PST -MattPereira,2023-02-07T23:32:06Z,- MattPereira commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1421637085) at 2023-02-07 03:32 PM PST -MattPereira,2023-02-09T01:09:30Z,- MattPereira unassigned from issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1332402495) at 2023-02-08 05:09 PM PST -MattPereira,2023-02-09T02:18:24Z,- MattPereira commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1423521294) at 2023-02-08 06:18 PM PST -MattPereira,2023-02-09T19:13:51Z,- MattPereira commented on issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1424688881) at 2023-02-09 11:13 AM PST -MattPereira,2023-02-10T15:36:08Z,- MattPereira assigned to issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1425064469) at 2023-02-10 07:36 AM PST -MattPereira,2023-02-10T23:03:07Z,- MattPereira commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1426458346) at 2023-02-10 03:03 PM PST -MattPereira,2023-02-10T23:03:08Z,- MattPereira closed issue as completed: [3283](https://github.com/hackforla/website/issues/3283#event-8494438317) at 2023-02-10 03:03 PM PST -MattPereira,2023-02-10T23:38:27Z,- MattPereira unassigned from issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1425981528) at 2023-02-10 03:38 PM PST -MattPereira,2023-02-12T17:08:34Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1427083158) at 2023-02-12 09:08 AM PST -MattPereira,2023-02-12T17:08:47Z,- MattPereira unassigned from issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1427083158) at 2023-02-12 09:08 AM PST -MattPereira,2023-02-12T18:22:03Z,- MattPereira commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1427098854) at 2023-02-12 10:22 AM PST -MattPereira,2023-02-12T19:02:13Z,- MattPereira commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1427107847) at 2023-02-12 11:02 AM PST -MattPereira,2023-02-12T20:04:29Z,- MattPereira commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1427120341) at 2023-02-12 12:04 PM PST -MattPereira,2023-02-12T22:15:06Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1294792656) at 2023-02-12 02:15 PM PST -MattPereira,2023-02-12T22:26:16Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1294794444) at 2023-02-12 02:26 PM PST -MattPereira,2023-02-14T15:38:51Z,- MattPereira submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1297861959) at 2023-02-14 07:38 AM PST -MattPereira,2023-02-14T15:41:50Z,- MattPereira closed issue by PR 3965: [3851](https://github.com/hackforla/website/issues/3851#event-8516921860) at 2023-02-14 07:41 AM PST -MattPereira,2023-02-14T18:49:44Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1298220600) at 2023-02-14 10:49 AM PST -MattPereira,2023-02-14T23:19:39Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1298567546) at 2023-02-14 03:19 PM PST -MattPereira,2023-02-15T00:19:11Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1298624861) at 2023-02-14 04:19 PM PST -MattPereira,2023-02-15T00:20:07Z,- MattPereira closed issue by PR 3887: [3256](https://github.com/hackforla/website/issues/3256#event-8520892793) at 2023-02-14 04:20 PM PST -MattPereira,2023-02-15T16:36:08Z,- MattPereira commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1431653701) at 2023-02-15 08:36 AM PST -MattPereira,2023-02-15T16:59:34Z,- MattPereira commented on pull request: [3977](https://github.com/hackforla/website/pull/3977#issuecomment-1431687209) at 2023-02-15 08:59 AM PST -MattPereira,2023-02-15T17:02:55Z,- MattPereira submitted pull request review: [3977](https://github.com/hackforla/website/pull/3977#pullrequestreview-1299932946) at 2023-02-15 09:02 AM PST -MattPereira,2023-02-15T17:03:43Z,- MattPereira closed issue by PR 3977: [3694](https://github.com/hackforla/website/issues/3694#event-8528298147) at 2023-02-15 09:03 AM PST -MattPereira,2023-02-15T21:53:38Z,- MattPereira commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1432089101) at 2023-02-15 01:53 PM PST -MattPereira,2023-02-17T02:06:16Z,- MattPereira submitted pull request review: [3978](https://github.com/hackforla/website/pull/3978#pullrequestreview-1302603317) at 2023-02-16 06:06 PM PST -MattPereira,2023-02-17T02:07:14Z,- MattPereira closed issue by PR 3978: [3110](https://github.com/hackforla/website/issues/3110#event-8542861641) at 2023-02-16 06:07 PM PST -MattPereira,2023-02-18T00:19:16Z,- MattPereira submitted pull request review: [4003](https://github.com/hackforla/website/pull/4003#pullrequestreview-1304331571) at 2023-02-17 04:19 PM PST -MattPereira,2023-02-18T00:23:02Z,- MattPereira submitted pull request review: [4003](https://github.com/hackforla/website/pull/4003#pullrequestreview-1304336237) at 2023-02-17 04:23 PM PST -MattPereira,2023-02-18T00:28:41Z,- MattPereira closed issue by PR 3989: [3873](https://github.com/hackforla/website/issues/3873#event-8551942183) at 2023-02-17 04:28 PM PST -MattPereira,2023-02-18T01:54:05Z,- MattPereira closed issue by PR 3993: [3944](https://github.com/hackforla/website/issues/3944#event-8552105307) at 2023-02-17 05:54 PM PST -MattPereira,2023-02-18T05:24:47Z,- MattPereira closed issue by PR 3995: [3822](https://github.com/hackforla/website/issues/3822#event-8552395409) at 2023-02-17 09:24 PM PST -MattPereira,2023-02-18T05:27:38Z,- MattPereira closed issue by PR 4004: [3955](https://github.com/hackforla/website/issues/3955#event-8552398803) at 2023-02-17 09:27 PM PST -MattPereira,2023-02-18T05:37:00Z,- MattPereira submitted pull request review: [4005](https://github.com/hackforla/website/pull/4005#pullrequestreview-1304481034) at 2023-02-17 09:37 PM PST -MattPereira,2023-02-18T05:40:25Z,- MattPereira closed issue by PR 4005: [3936](https://github.com/hackforla/website/issues/3936#event-8552414795) at 2023-02-17 09:40 PM PST -MattPereira,2023-02-19T18:42:15Z,- MattPereira closed issue as completed: [3361](https://github.com/hackforla/website/issues/3361#event-8555767033) at 2023-02-19 10:42 AM PST -MattPereira,2023-02-22T15:37:02Z,- MattPereira opened issue: [4023](https://github.com/hackforla/website/issues/4023) at 2023-02-22 07:37 AM PST -MattPereira,2023-02-23T03:42:19Z,- MattPereira opened issue: [4026](https://github.com/hackforla/website/issues/4026) at 2023-02-22 07:42 PM PST -MattPereira,2023-02-23T16:27:02Z,- MattPereira opened issue: [4031](https://github.com/hackforla/website/issues/4031) at 2023-02-23 08:27 AM PST -MattPereira,2023-02-24T22:49:48Z,- MattPereira commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1444613308) at 2023-02-24 02:49 PM PST -MattPereira,2023-02-24T22:58:38Z,- MattPereira submitted pull request review: [4027](https://github.com/hackforla/website/pull/4027#pullrequestreview-1314355750) at 2023-02-24 02:58 PM PST -MattPereira,2023-02-24T22:59:08Z,- MattPereira closed issue by PR 4027: [3802](https://github.com/hackforla/website/issues/3802#event-8606329940) at 2023-02-24 02:59 PM PST -MattPereira,2023-02-24T23:41:39Z,- MattPereira commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1444723224) at 2023-02-24 03:41 PM PST -MattPereira,2023-02-25T00:08:02Z,- MattPereira opened issue: [4036](https://github.com/hackforla/website/issues/4036) at 2023-02-24 04:08 PM PST -MattPereira,2023-02-25T00:10:47Z,- MattPereira opened issue: [4037](https://github.com/hackforla/website/issues/4037) at 2023-02-24 04:10 PM PST -MattPereira,2023-02-25T07:23:52Z,- MattPereira assigned to issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-24 11:23 PM PST -MattPereira,2023-02-25T17:04:10Z,- MattPereira unassigned from issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-25 09:04 AM PST -MattPereira,2023-02-25T17:08:09Z,- MattPereira commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1445160795) at 2023-02-25 09:08 AM PST -MattPereira,2023-02-25T17:08:09Z,- MattPereira closed issue as completed: [3879](https://github.com/hackforla/website/issues/3879#event-8608196447) at 2023-02-25 09:08 AM PST -MattPereira,2023-02-25T17:32:02Z,- MattPereira opened issue: [4040](https://github.com/hackforla/website/issues/4040) at 2023-02-25 09:32 AM PST -MattPereira,2023-02-25T17:40:56Z,- MattPereira opened issue: [4041](https://github.com/hackforla/website/issues/4041) at 2023-02-25 09:40 AM PST -MattPereira,2023-02-25T18:21:59Z,- MattPereira opened issue: [4042](https://github.com/hackforla/website/issues/4042) at 2023-02-25 10:21 AM PST -MattPereira,2023-02-25T18:30:05Z,- MattPereira opened issue: [4043](https://github.com/hackforla/website/issues/4043) at 2023-02-25 10:30 AM PST -MattPereira,2023-02-25T18:34:38Z,- MattPereira opened issue: [4044](https://github.com/hackforla/website/issues/4044) at 2023-02-25 10:34 AM PST -MattPereira,2023-02-25T22:33:59Z,- MattPereira opened issue: [4049](https://github.com/hackforla/website/issues/4049) at 2023-02-25 02:33 PM PST -MattPereira,2023-02-26T20:15:21Z,- MattPereira submitted pull request review: [4034](https://github.com/hackforla/website/pull/4034#pullrequestreview-1314723281) at 2023-02-26 12:15 PM PST -MattPereira,2023-02-26T20:16:32Z,- MattPereira closed issue by PR 4034: [3931](https://github.com/hackforla/website/issues/3931#event-8610114477) at 2023-02-26 12:16 PM PST -MattPereira,2023-02-28T16:29:23Z,- MattPereira opened issue: [4054](https://github.com/hackforla/website/issues/4054) at 2023-02-28 08:29 AM PST -MattPereira,2023-02-28T16:31:41Z,- MattPereira assigned to issue: [4054](https://github.com/hackforla/website/issues/4054) at 2023-02-28 08:31 AM PST -MattPereira,2023-02-28T17:48:42Z,- MattPereira opened issue: [4055](https://github.com/hackforla/website/issues/4055) at 2023-02-28 09:48 AM PST -MattPereira,2023-02-28T18:08:27Z,- MattPereira commented on issue: [4055](https://github.com/hackforla/website/issues/4055#issuecomment-1448641396) at 2023-02-28 10:08 AM PST -MattPereira,2023-02-28T18:08:35Z,- MattPereira assigned to issue: [4055](https://github.com/hackforla/website/issues/4055#issuecomment-1448641396) at 2023-02-28 10:08 AM PST -MattPereira,2023-02-28T18:21:42Z,- MattPereira opened pull request: [4057](https://github.com/hackforla/website/pull/4057) at 2023-02-28 10:21 AM PST -MattPereira,2023-02-28T18:37:23Z,- MattPereira pull request merged: [4057](https://github.com/hackforla/website/pull/4057#event-8630188194) at 2023-02-28 10:37 AM PST -MattPereira,2023-03-03T23:00:39Z,- MattPereira closed issue by PR 4091: [3963](https://github.com/hackforla/website/issues/3963#event-8664207250) at 2023-03-03 03:00 PM PST -MattPereira,2023-03-03T23:02:03Z,- MattPereira closed issue by PR 4092: [4044](https://github.com/hackforla/website/issues/4044#event-8664214172) at 2023-03-03 03:02 PM PST -MattPereira,2023-03-03T23:10:45Z,- MattPereira commented on pull request: [4096](https://github.com/hackforla/website/pull/4096#issuecomment-1454247401) at 2023-03-03 03:10 PM PST -MattPereira,2023-03-03T23:12:38Z,- MattPereira commented on pull request: [4096](https://github.com/hackforla/website/pull/4096#issuecomment-1454248854) at 2023-03-03 03:12 PM PST -MattPereira,2023-03-03T23:16:14Z,- MattPereira submitted pull request review: [4096](https://github.com/hackforla/website/pull/4096#pullrequestreview-1324738672) at 2023-03-03 03:16 PM PST -MattPereira,2023-03-03T23:16:44Z,- MattPereira closed issue by PR 1: [4045](https://github.com/hackforla/website/issues/4045#event-8664309573) at 2023-03-03 03:16 PM PST -MattPereira,2023-03-04T00:47:18Z,- MattPereira opened pull request: [4105](https://github.com/hackforla/website/pull/4105) at 2023-03-03 04:47 PM PST -MattPereira,2023-03-04T02:25:14Z,- MattPereira commented on pull request: [4078](https://github.com/hackforla/website/pull/4078#issuecomment-1454339986) at 2023-03-03 06:25 PM PST -MattPereira,2023-03-04T16:32:32Z,- MattPereira closed issue by PR 4093: [4037](https://github.com/hackforla/website/issues/4037#event-8666407035) at 2023-03-04 08:32 AM PST -MattPereira,2023-03-04T22:39:05Z,- MattPereira commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454909603) at 2023-03-04 02:39 PM PST -MattPereira,2023-03-05T01:42:13Z,- MattPereira submitted pull request review: [4078](https://github.com/hackforla/website/pull/4078#pullrequestreview-1325143610) at 2023-03-04 05:42 PM PST -MattPereira,2023-03-05T20:38:14Z,- MattPereira commented on pull request: [4100](https://github.com/hackforla/website/pull/4100#issuecomment-1455198898) at 2023-03-05 12:38 PM PST -MattPereira,2023-03-05T20:45:11Z,- MattPereira submitted pull request review: [4100](https://github.com/hackforla/website/pull/4100#pullrequestreview-1325276337) at 2023-03-05 12:45 PM PST -MattPereira,2023-03-06T17:27:57Z,- MattPereira commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1456584292) at 2023-03-06 09:27 AM PST -MattPereira,2023-03-10T07:10:38Z,- MattPereira opened issue: [4145](https://github.com/hackforla/website/issues/4145) at 2023-03-09 11:10 PM PST -MattPereira,2023-03-14T21:47:47Z,- MattPereira commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1468887288) at 2023-03-14 02:47 PM PDT -MattPereira,2023-03-18T23:45:12Z,- MattPereira submitted pull request review: [4110](https://github.com/hackforla/website/pull/4110#pullrequestreview-1347315313) at 2023-03-18 04:45 PM PDT -MattPereira,2023-03-18T23:47:42Z,- MattPereira closed issue by PR 4110: [3341](https://github.com/hackforla/website/issues/3341#event-8786487020) at 2023-03-18 04:47 PM PDT -MattPereira,2023-03-20T16:08:43Z,- MattPereira opened issue: [4219](https://github.com/hackforla/website/issues/4219) at 2023-03-20 09:08 AM PDT -MattPereira,2023-03-21T03:53:40Z,- MattPereira pull request merged: [4105](https://github.com/hackforla/website/pull/4105#event-8801094135) at 2023-03-20 08:53 PM PDT -MattPereira,2023-03-21T12:08:39Z,- MattPereira commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1477727345) at 2023-03-21 05:08 AM PDT -MattPereira,2023-03-21T21:37:18Z,- MattPereira commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1478615764) at 2023-03-21 02:37 PM PDT -MattPereira,2023-03-21T21:39:00Z,- MattPereira commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1478617255) at 2023-03-21 02:39 PM PDT -MattPereira,2023-03-22T17:42:22Z,- MattPereira commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1480000963) at 2023-03-22 10:42 AM PDT -MattPereira,2023-03-22T18:10:09Z,- MattPereira commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1480038829) at 2023-03-22 11:10 AM PDT -MattPereira,2023-04-02T04:26:14Z,- MattPereira submitted pull request review: [4361](https://github.com/hackforla/website/pull/4361#pullrequestreview-1368017916) at 2023-04-01 09:26 PM PDT -MattPereira,2023-04-02T04:28:18Z,- MattPereira closed issue by PR 4361: [2220](https://github.com/hackforla/website/issues/2220#event-8905724379) at 2023-04-01 09:28 PM PDT -MattPereira,2023-04-02T17:17:24Z,- MattPereira opened issue: [4370](https://github.com/hackforla/website/issues/4370) at 2023-04-02 10:17 AM PDT -MattPereira,2023-04-02T17:34:51Z,- MattPereira unassigned from issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1405497283) at 2023-04-02 10:34 AM PDT -MattPereira,2023-04-02T17:35:18Z,- MattPereira unassigned from issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1404069663) at 2023-04-02 10:35 AM PDT -MattPereira,2023-04-03T22:55:43Z,- MattPereira opened issue: [4392](https://github.com/hackforla/website/issues/4392) at 2023-04-03 03:55 PM PDT -MattPereira,2023-04-04T15:48:06Z,- MattPereira commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1496212245) at 2023-04-04 08:48 AM PDT -MattPereira,2023-04-05T20:25:25Z,- MattPereira commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498097880) at 2023-04-05 01:25 PM PDT -MattPereira,2023-04-05T20:54:59Z,- MattPereira commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498141687) at 2023-04-05 01:54 PM PDT -MattPereira,2023-04-06T22:50:00Z,- MattPereira closed issue as completed: [3858](https://github.com/hackforla/website/issues/3858#event-8950278639) at 2023-04-06 03:50 PM PDT -MattPereira,2023-04-12T21:54:25Z,- MattPereira commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1506010357) at 2023-04-12 02:54 PM PDT -MattPereira,2023-05-05T15:46:43Z,- MattPereira commented on pull request: [4602](https://github.com/hackforla/website/pull/4602#issuecomment-1536448081) at 2023-05-05 08:46 AM PDT -MattPereira,2023-05-05T15:53:49Z,- MattPereira submitted pull request review: [4602](https://github.com/hackforla/website/pull/4602#pullrequestreview-1415049097) at 2023-05-05 08:53 AM PDT -MattPereira,2023-05-15T02:15:59Z,- MattPereira unassigned from issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1547100517) at 2023-05-14 07:15 PM PDT -MattPereira,2023-06-24T19:00:35Z,- MattPereira commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1605688180) at 2023-06-24 12:00 PM PDT -MattPereira,2023-06-24T21:01:27Z,- MattPereira commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1605730685) at 2023-06-24 02:01 PM PDT -MattPereira,2023-06-29T14:57:49Z,- MattPereira submitted pull request review: [4899](https://github.com/hackforla/website/pull/4899#pullrequestreview-1505489961) at 2023-06-29 07:57 AM PDT -MattPereira,2023-07-20T16:56:38Z,- MattPereira submitted pull request review: [5037](https://github.com/hackforla/website/pull/5037#pullrequestreview-1539706873) at 2023-07-20 09:56 AM PDT -MattPereira,2023-07-25T15:42:50Z,- MattPereira commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1650085006) at 2023-07-25 08:42 AM PDT -MattPereira,2023-07-26T16:05:21Z,- MattPereira submitted pull request review: [5037](https://github.com/hackforla/website/pull/5037#pullrequestreview-1548114288) at 2023-07-26 09:05 AM PDT -MattPereira,2023-07-29T18:26:37Z,- MattPereira commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1656819128) at 2023-07-29 11:26 AM PDT -MattPereira,2023-07-29T18:38:19Z,- MattPereira commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656825623) at 2023-07-29 11:38 AM PDT -MattPereira,2023-08-23T19:13:39Z,- MattPereira commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1690504120) at 2023-08-23 12:13 PM PDT -Mattre7,3243,SKILLS ISSUE -Mattre7,2022-06-14T02:31:15Z,- Mattre7 opened issue: [3243](https://github.com/hackforla/website/issues/3243) at 2022-06-13 07:31 PM PDT -Mattre7,2022-06-14T03:32:53Z,- Mattre7 assigned to issue: [3243](https://github.com/hackforla/website/issues/3243#issuecomment-1154641396) at 2022-06-13 08:32 PM PDT -Mattre7,2022-06-25T20:39:21Z,- Mattre7 commented on issue: [3243](https://github.com/hackforla/website/issues/3243#issuecomment-1166358052) at 2022-06-25 01:39 PM PDT -Mattre7,2022-06-25T22:23:04Z,- Mattre7 assigned to issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1046317017) at 2022-06-25 03:23 PM PDT -Mattre7,2022-06-25T22:55:49Z,- Mattre7 commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1166374674) at 2022-06-25 03:55 PM PDT -Mattre7,2022-06-25T23:00:59Z,- Mattre7 commented on issue: [3243](https://github.com/hackforla/website/issues/3243#issuecomment-1166375244) at 2022-06-25 04:00 PM PDT -Mattre7,2022-07-26T06:17:06Z,- Mattre7 opened pull request: [3429](https://github.com/hackforla/website/pull/3429) at 2022-07-25 11:17 PM PDT -Mattre7,2022-07-26T06:19:57Z,- Mattre7 commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1195053536) at 2022-07-25 11:19 PM PDT -Mattre7,2022-07-27T00:26:15Z,- Mattre7 commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1196137304) at 2022-07-26 05:26 PM PDT -Mattre7,2022-07-27T22:10:22Z,- Mattre7 commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197424661) at 2022-07-27 03:10 PM PDT -Mattre7,2022-07-28T01:00:48Z,- Mattre7 commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197533027) at 2022-07-27 06:00 PM PDT -Mattre7,2022-07-28T01:00:48Z,- Mattre7 pull request closed w/o merging: [3429](https://github.com/hackforla/website/pull/3429#event-7077391255) at 2022-07-27 06:00 PM PDT -Mattre7,2022-07-28T20:11:25Z,- Mattre7 opened pull request: [3439](https://github.com/hackforla/website/pull/3439) at 2022-07-28 01:11 PM PDT -Mattre7,2022-07-29T01:30:16Z,- Mattre7 commented on pull request: [3439](https://github.com/hackforla/website/pull/3439#issuecomment-1198791784) at 2022-07-28 06:30 PM PDT -Mattre7,2022-07-29T01:35:29Z,- Mattre7 commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1198793952) at 2022-07-28 06:35 PM PDT -Mattre7,2022-07-29T01:35:44Z,- Mattre7 pull request merged: [3439](https://github.com/hackforla/website/pull/3439#event-7085994921) at 2022-07-28 06:35 PM PDT -Mattre7,2022-07-29T01:37:50Z,- Mattre7 closed issue as completed: [3243](https://github.com/hackforla/website/issues/3243#event-7086001142) at 2022-07-28 06:37 PM PDT -Mattre7,2022-07-29T02:01:54Z,- Mattre7 assigned to issue: [3400](https://github.com/hackforla/website/issues/3400) at 2022-07-28 07:01 PM PDT -Mattre7,2022-07-29T02:22:57Z,- Mattre7 commented on issue: [3400](https://github.com/hackforla/website/issues/3400#issuecomment-1198814297) at 2022-07-28 07:22 PM PDT -Mattre7,2022-07-29T02:38:21Z,- Mattre7 opened pull request: [3442](https://github.com/hackforla/website/pull/3442) at 2022-07-28 07:38 PM PDT -Mattre7,2022-07-29T02:39:42Z,- Mattre7 commented on issue: [3400](https://github.com/hackforla/website/issues/3400#issuecomment-1198821552) at 2022-07-28 07:39 PM PDT -Mattre7,2022-07-29T04:21:07Z,- Mattre7 commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1198864773) at 2022-07-28 09:21 PM PDT -Mattre7,2022-07-29T14:40:28Z,- Mattre7 pull request merged: [3442](https://github.com/hackforla/website/pull/3442#event-7089999633) at 2022-07-29 07:40 AM PDT -Mattre7,2022-07-30T05:13:45Z,- Mattre7 assigned to issue: [3358](https://github.com/hackforla/website/issues/3358#issuecomment-1180866276) at 2022-07-29 10:13 PM PDT -Mattre7,2022-07-30T05:33:24Z,- Mattre7 opened pull request: [3444](https://github.com/hackforla/website/pull/3444) at 2022-07-29 10:33 PM PDT -Mattre7,2022-07-30T06:07:43Z,- Mattre7 commented on issue: [3358](https://github.com/hackforla/website/issues/3358#issuecomment-1200099050) at 2022-07-29 11:07 PM PDT -Mattre7,2022-07-30T20:56:18Z,- Mattre7 commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200292352) at 2022-07-30 01:56 PM PDT -Mattre7,2022-07-30T22:46:01Z,- Mattre7 commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200307045) at 2022-07-30 03:46 PM PDT -Mattre7,2022-07-31T05:55:47Z,- Mattre7 pull request merged: [3444](https://github.com/hackforla/website/pull/3444#event-7095882969) at 2022-07-30 10:55 PM PDT -Mattre7,2022-07-31T23:31:21Z,- Mattre7 assigned to issue: [2451](https://github.com/hackforla/website/issues/2451#issuecomment-961536900) at 2022-07-31 04:31 PM PDT -Mattre7,2022-08-01T09:05:41Z,- Mattre7 opened pull request: [3446](https://github.com/hackforla/website/pull/3446) at 2022-08-01 02:05 AM PDT -Mattre7,2022-08-01T09:06:43Z,- Mattre7 commented on issue: [2451](https://github.com/hackforla/website/issues/2451#issuecomment-1200926342) at 2022-08-01 02:06 AM PDT -Mattre7,2022-08-02T17:30:35Z,- Mattre7 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1203019153) at 2022-08-02 10:30 AM PDT -Mattre7,2022-08-03T01:19:01Z,- Mattre7 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1203375666) at 2022-08-02 06:19 PM PDT -Mattre7,2022-08-04T00:26:27Z,- Mattre7 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1204621024) at 2022-08-03 05:26 PM PDT -Mattre7,2022-08-24T17:43:31Z,- Mattre7 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1226041600) at 2022-08-24 10:43 AM PDT -Mattre7,2022-09-02T01:06:02Z,- Mattre7 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1234954453) at 2022-09-01 06:06 PM PDT -Mattre7,2022-09-12T19:29:35Z,- Mattre7 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1244235982) at 2022-09-12 12:29 PM PDT -Mattre7,2022-09-14T00:56:20Z,- Mattre7 pull request merged: [3446](https://github.com/hackforla/website/pull/3446#event-7381082948) at 2022-09-13 05:56 PM PDT -Mattre7,2022-09-20T05:23:25Z,- Mattre7 assigned to issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1236396829) at 2022-09-19 10:23 PM PDT -Mattre7,2022-09-20T05:41:38Z,- Mattre7 commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1251866319) at 2022-09-19 10:41 PM PDT -Mattre7,2022-09-26T05:25:53Z,- Mattre7 opened pull request: [3581](https://github.com/hackforla/website/pull/3581) at 2022-09-25 10:25 PM PDT -Mattre7,2022-09-26T15:18:00Z,- Mattre7 commented on pull request: [3581](https://github.com/hackforla/website/pull/3581#issuecomment-1258202069) at 2022-09-26 08:18 AM PDT -Mattre7,2022-09-28T01:06:48Z,- Mattre7 pull request merged: [3581](https://github.com/hackforla/website/pull/3581#event-7473359028) at 2022-09-27 06:06 PM PDT -Mattre7,2022-09-28T01:09:42Z,- Mattre7 commented on pull request: [3581](https://github.com/hackforla/website/pull/3581#issuecomment-1260265132) at 2022-09-27 06:09 PM PDT -max1million101,6039,SKILLS ISSUE -max1million101,2024-01-03T04:14:25Z,- max1million101 opened issue: [6039](https://github.com/hackforla/website/issues/6039) at 2024-01-02 08:14 PM PST -max1million101,2024-02-20T03:36:00Z,- max1million101 assigned to issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1953434363) at 2024-02-19 07:36 PM PST -Mayank2808sharma,4629,SKILLS ISSUE -Mayank2808sharma,2023-05-09T03:35:03Z,- Mayank2808sharma opened issue: [4629](https://github.com/hackforla/website/issues/4629) at 2023-05-08 08:35 PM PDT -Mayank2808sharma,2023-05-09T04:06:36Z,- Mayank2808sharma assigned to issue: [4629](https://github.com/hackforla/website/issues/4629) at 2023-05-08 09:06 PM PDT -Mayank2808sharma,2023-05-14T10:44:49Z,- Mayank2808sharma assigned to issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1533491825) at 2023-05-14 03:44 AM PDT -Mayank2808sharma,2023-05-14T10:46:31Z,- Mayank2808sharma unassigned from issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1546868325) at 2023-05-14 03:46 AM PDT -Mayank2808sharma,2023-05-14T10:50:22Z,- Mayank2808sharma assigned to issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1546868325) at 2023-05-14 03:50 AM PDT -Mayank2808sharma,2023-05-14T10:53:51Z,- Mayank2808sharma commented on issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1546869881) at 2023-05-14 03:53 AM PDT -Mayank2808sharma,2023-05-14T11:02:57Z,- Mayank2808sharma opened pull request: [4663](https://github.com/hackforla/website/pull/4663) at 2023-05-14 04:02 AM PDT -Mayank2808sharma,2023-05-14T14:53:10Z,- Mayank2808sharma pull request closed w/o merging: [4663](https://github.com/hackforla/website/pull/4663#event-9240290192) at 2023-05-14 07:53 AM PDT -Mayank2808sharma,2023-05-14T14:59:43Z,- Mayank2808sharma opened pull request: [4665](https://github.com/hackforla/website/pull/4665) at 2023-05-14 07:59 AM PDT -Mayank2808sharma,2023-05-14T17:57:20Z,- Mayank2808sharma submitted pull request review: [4657](https://github.com/hackforla/website/pull/4657#pullrequestreview-1425583573) at 2023-05-14 10:57 AM PDT -Mayank2808sharma,2023-05-14T17:58:32Z,- Mayank2808sharma commented on pull request: [4657](https://github.com/hackforla/website/pull/4657#issuecomment-1546961467) at 2023-05-14 10:58 AM PDT -Mayank2808sharma,2023-05-17T16:42:55Z,- Mayank2808sharma pull request merged: [4665](https://github.com/hackforla/website/pull/4665#event-9271701871) at 2023-05-17 09:42 AM PDT -Mayank2808sharma,2023-05-19T08:22:53Z,- Mayank2808sharma commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1554220607) at 2023-05-19 01:22 AM PDT -Mayank2808sharma,2023-05-25T02:12:42Z,- Mayank2808sharma assigned to issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1548754969) at 2023-05-24 07:12 PM PDT -Mayank2808sharma,2023-05-25T02:20:36Z,- Mayank2808sharma opened pull request: [4727](https://github.com/hackforla/website/pull/4727) at 2023-05-24 07:20 PM PDT -Mayank2808sharma,2023-05-25T04:42:07Z,- Mayank2808sharma commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1562257607) at 2023-05-24 09:42 PM PDT -Mayank2808sharma,2023-05-25T04:58:06Z,- Mayank2808sharma pull request closed w/o merging: [4727](https://github.com/hackforla/website/pull/4727#event-9335297452) at 2023-05-24 09:58 PM PDT -Mayank2808sharma,2023-05-25T05:00:17Z,- Mayank2808sharma unassigned from issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1562269099) at 2023-05-24 10:00 PM PDT -Mayank2808sharma,2023-05-29T02:01:17Z,- Mayank2808sharma assigned to issue: [4669](https://github.com/hackforla/website/issues/4669#issuecomment-1564348020) at 2023-05-28 07:01 PM PDT -Mayank2808sharma,2023-05-29T02:02:32Z,- Mayank2808sharma commented on issue: [4669](https://github.com/hackforla/website/issues/4669#issuecomment-1566386247) at 2023-05-28 07:02 PM PDT -Mayank2808sharma,2023-05-29T02:09:01Z,- Mayank2808sharma opened pull request: [4751](https://github.com/hackforla/website/pull/4751) at 2023-05-28 07:09 PM PDT -Mayank2808sharma,2023-05-29T02:15:48Z,- Mayank2808sharma submitted pull request review: [4748](https://github.com/hackforla/website/pull/4748#pullrequestreview-1448641033) at 2023-05-28 07:15 PM PDT -Mayank2808sharma,2023-05-29T02:18:36Z,- Mayank2808sharma submitted pull request review: [4750](https://github.com/hackforla/website/pull/4750#pullrequestreview-1448645024) at 2023-05-28 07:18 PM PDT -Mayank2808sharma,2023-06-04T02:15:23Z,- Mayank2808sharma pull request merged: [4751](https://github.com/hackforla/website/pull/4751#event-9423432696) at 2023-06-03 07:15 PM PDT -Mayank2808sharma,2024-09-15T18:39:47Z,- Mayank2808sharma assigned to issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739573) at 2024-09-15 11:39 AM PDT -Mayank2808sharma,2024-10-25T23:43:11Z,- Mayank2808sharma unassigned from issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2437056686) at 2024-10-25 04:43 PM PDT -mayanknoldus,2022-01-27T06:40:43Z,- mayanknoldus commented on issue: [2721](https://github.com/hackforla/website/issues/2721#issuecomment-1022895082) at 2022-01-26 10:40 PM PST -mayankt153,2024-08-19T20:13:54Z,- mayankt153 opened issue: [7317](https://github.com/hackforla/website/issues/7317) at 2024-08-19 01:13 PM PDT -mayankt153,2024-08-19T20:58:22Z,- mayankt153 opened issue: [7319](https://github.com/hackforla/website/issues/7319) at 2024-08-19 01:58 PM PDT -mayankt153,2024-08-25T17:51:55Z,- mayankt153 commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2308940043) at 2024-08-25 10:51 AM PDT -mayankt153,2024-09-22T05:35:59Z,- mayankt153 commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2365479300) at 2024-09-21 10:35 PM PDT -mayankt153,2024-09-22T06:02:13Z,- mayankt153 commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-2365484816) at 2024-09-21 11:02 PM PDT -mayankt153,2024-09-29T08:10:40Z,- mayankt153 commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2381254595) at 2024-09-29 01:10 AM PDT -mayankt153,2024-09-29T08:23:05Z,- mayankt153 opened issue: [7539](https://github.com/hackforla/website/issues/7539) at 2024-09-29 01:23 AM PDT -mayankt153,2024-10-06T16:53:25Z,- mayankt153 assigned to issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2391922726) at 2024-10-06 09:53 AM PDT -mayankt153,2024-10-29T17:04:43Z,- mayankt153 unassigned from issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2437050930) at 2024-10-29 10:04 AM PDT -maybleMyers,2940,SKILLS ISSUE -maybleMyers,2022-03-08T12:15:15Z,- maybleMyers opened issue: [2940](https://github.com/hackforla/website/issues/2940) at 2022-03-08 04:15 AM PST -maybleMyers,2022-03-09T02:12:34Z,- maybleMyers assigned to issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1061715812) at 2022-03-08 06:12 PM PST -maybleMyers,2022-03-11T08:41:08Z,- maybleMyers assigned to issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1051349764) at 2022-03-11 12:41 AM PST -maybleMyers,2022-03-11T08:44:08Z,- maybleMyers commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1064897011) at 2022-03-11 12:44 AM PST -maybleMyers,2022-03-11T09:48:59Z,- maybleMyers opened pull request: [2965](https://github.com/hackforla/website/pull/2965) at 2022-03-11 01:48 AM PST -maybleMyers,2022-03-11T09:56:06Z,- maybleMyers commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1064954291) at 2022-03-11 01:56 AM PST -maybleMyers,2022-03-12T13:19:37Z,- maybleMyers pull request closed w/o merging: [2965](https://github.com/hackforla/website/pull/2965#event-6229720616) at 2022-03-12 06:19 AM PDT -maybleMyers,2022-03-12T14:37:46Z,- maybleMyers opened pull request: [2971](https://github.com/hackforla/website/pull/2971) at 2022-03-12 07:37 AM PDT -maybleMyers,2022-03-13T16:56:39Z,- maybleMyers pull request merged: [2971](https://github.com/hackforla/website/pull/2971#event-6231362760) at 2022-03-13 09:56 AM PDT -maybleMyers,2022-03-14T16:54:34Z,- maybleMyers assigned to issue: [2891](https://github.com/hackforla/website/issues/2891#issuecomment-1051621260) at 2022-03-14 09:54 AM PDT -maybleMyers,2022-03-14T17:19:19Z,- maybleMyers opened pull request: [2980](https://github.com/hackforla/website/pull/2980) at 2022-03-14 10:19 AM PDT -maybleMyers,2022-03-15T14:34:04Z,- maybleMyers pull request merged: [2980](https://github.com/hackforla/website/pull/2980#event-6243754064) at 2022-03-15 07:34 AM PDT -maybleMyers,2022-03-19T17:04:52Z,- maybleMyers commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1073045268) at 2022-03-19 10:04 AM PDT -maybleMyers,2022-03-19T17:23:58Z,- maybleMyers assigned to issue: [2895](https://github.com/hackforla/website/issues/2895#issuecomment-1053129439) at 2022-03-19 10:23 AM PDT -maybleMyers,2022-03-19T18:03:19Z,- maybleMyers opened pull request: [2992](https://github.com/hackforla/website/pull/2992) at 2022-03-19 11:03 AM PDT -maybleMyers,2022-03-20T18:38:03Z,- maybleMyers pull request merged: [2992](https://github.com/hackforla/website/pull/2992#event-6271594182) at 2022-03-20 11:38 AM PDT -maybleMyers,2022-03-20T19:16:25Z,- maybleMyers assigned to issue: [2987](https://github.com/hackforla/website/issues/2987#issuecomment-1071942949) at 2022-03-20 12:16 PM PDT -maybleMyers,2022-03-20T20:18:28Z,- maybleMyers opened pull request: [2994](https://github.com/hackforla/website/pull/2994) at 2022-03-20 01:18 PM PDT -maybleMyers,2022-03-20T20:19:13Z,- maybleMyers commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1073341540) at 2022-03-20 01:19 PM PDT -maybleMyers,2022-03-21T02:39:21Z,- maybleMyers submitted pull request review: [2996](https://github.com/hackforla/website/pull/2996#pullrequestreview-915202515) at 2022-03-20 07:39 PM PDT -maybleMyers,2022-03-22T02:23:18Z,- maybleMyers pull request merged: [2994](https://github.com/hackforla/website/pull/2994#event-6280143251) at 2022-03-21 07:23 PM PDT -maybleMyers,2022-03-24T09:13:05Z,- maybleMyers assigned to issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-974833271) at 2022-03-24 02:13 AM PDT -maybleMyers,2022-03-24T09:14:39Z,- maybleMyers commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1077403488) at 2022-03-24 02:14 AM PDT -maybleMyers,2022-04-09T18:00:38Z,- maybleMyers unassigned from issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1094085497) at 2022-04-09 11:00 AM PDT -mccormackstudio,2692,SKILLS ISSUE -mccormackstudio,2022-01-17T18:18:28Z,- mccormackstudio opened issue: [2692](https://github.com/hackforla/website/issues/2692) at 2022-01-17 10:18 AM PST -mccormackstudio,2022-01-17T18:24:57Z,- mccormackstudio assigned to issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1014795325) at 2022-01-17 10:24 AM PST -mccormackstudio,2022-01-17T18:42:16Z,- mccormackstudio assigned to issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-999098775) at 2022-01-17 10:42 AM PST -mccormackstudio,2022-01-17T18:45:39Z,- mccormackstudio commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1014810295) at 2022-01-17 10:45 AM PST -mccormackstudio,2022-01-22T19:32:31Z,- mccormackstudio commented on issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1019344561) at 2022-01-22 11:32 AM PST -mccormackstudio,2022-01-23T20:50:11Z,- mccormackstudio commented on issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1019564455) at 2022-01-23 12:50 PM PST -mccormackstudio,2022-01-23T20:50:18Z,- mccormackstudio closed issue as completed: [2692](https://github.com/hackforla/website/issues/2692#event-5938718735) at 2022-01-23 12:50 PM PST -mccormackstudio,2022-01-28T00:38:26Z,- mccormackstudio commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1023772003) at 2022-01-27 04:38 PM PST -mccormackstudio,2022-02-09T20:16:09Z,- mccormackstudio commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1034154243) at 2022-02-09 12:16 PM PST -mccormackstudio,2023-01-22T21:33:07Z,- mccormackstudio unassigned from issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399614108) at 2023-01-22 01:33 PM PST -mchait18,7696,SKILLS ISSUE -mchait18,2024-11-05T04:07:45Z,- mchait18 opened issue: [7696](https://github.com/hackforla/website/issues/7696) at 2024-11-04 08:07 PM PST -mchait18,2024-11-05T04:08:41Z,- mchait18 assigned to issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2456189999) at 2024-11-04 08:08 PM PST -mchait18,2024-11-05T17:46:03Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2457810413) at 2024-11-05 09:46 AM PST -mchait18,2024-11-05T17:47:33Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2457813416) at 2024-11-05 09:47 AM PST -mchait18,2024-11-05T19:21:29Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2457977998) at 2024-11-05 11:21 AM PST -mchait18,2024-11-05T19:56:06Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2458039713) at 2024-11-05 11:56 AM PST -mchait18,2024-11-06T17:20:34Z,- mchait18 opened issue: [7701](https://github.com/hackforla/website/issues/7701) at 2024-11-06 09:20 AM PST -mchait18,2024-11-06T17:24:26Z,- mchait18 commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460367681) at 2024-11-06 09:24 AM PST -mchait18,2024-11-06T17:30:18Z,- mchait18 opened issue: [7702](https://github.com/hackforla/website/issues/7702) at 2024-11-06 09:30 AM PST -mchait18,2024-11-06T17:34:44Z,- mchait18 opened issue: [7703](https://github.com/hackforla/website/issues/7703) at 2024-11-06 09:34 AM PST -mchait18,2024-11-06T17:42:48Z,- mchait18 opened issue: [7704](https://github.com/hackforla/website/issues/7704) at 2024-11-06 09:42 AM PST -mchait18,2024-11-06T17:44:31Z,- mchait18 commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460407201) at 2024-11-06 09:44 AM PST -mchait18,2024-11-06T17:47:21Z,- mchait18 opened issue: [7705](https://github.com/hackforla/website/issues/7705) at 2024-11-06 09:47 AM PST -mchait18,2024-11-06T17:50:19Z,- mchait18 assigned to issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460407201) at 2024-11-06 09:50 AM PST -mchait18,2024-11-07T16:57:20Z,- mchait18 assigned to issue: [7705](https://github.com/hackforla/website/issues/7705) at 2024-11-07 08:57 AM PST -mchait18,2024-11-07T17:06:20Z,- mchait18 unassigned from issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2462764818) at 2024-11-07 09:06 AM PST -mchait18,2024-11-07T17:08:11Z,- mchait18 assigned to issue: [7652](https://github.com/hackforla/website/issues/7652) at 2024-11-07 09:08 AM PST -mchait18,2024-11-07T17:08:27Z,- mchait18 unassigned from issue: [7652](https://github.com/hackforla/website/issues/7652) at 2024-11-07 09:08 AM PST -mchait18,2024-11-07T17:14:48Z,- mchait18 assigned to issue: [7645](https://github.com/hackforla/website/issues/7645) at 2024-11-07 09:14 AM PST -mchait18,2024-11-07T17:15:08Z,- mchait18 unassigned from issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2462802842) at 2024-11-07 09:15 AM PST -mchait18,2024-11-07T17:18:15Z,- mchait18 unassigned from issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460418975) at 2024-11-07 09:18 AM PST -mchait18,2024-11-07T17:19:02Z,- mchait18 assigned to issue: [7646](https://github.com/hackforla/website/issues/7646) at 2024-11-07 09:19 AM PST -mchait18,2024-11-08T15:21:49Z,- mchait18 opened pull request: [7711](https://github.com/hackforla/website/pull/7711) at 2024-11-08 07:21 AM PST -mchait18,2024-11-08T15:42:49Z,- mchait18 commented on issue: [7646](https://github.com/hackforla/website/issues/7646#issuecomment-2465075284) at 2024-11-08 07:42 AM PST -mchait18,2024-11-08T15:54:08Z,- mchait18 assigned to issue: [7647](https://github.com/hackforla/website/issues/7647) at 2024-11-08 07:54 AM PST -mchait18,2024-11-08T15:54:26Z,- mchait18 unassigned from issue: [7647](https://github.com/hackforla/website/issues/7647#issuecomment-2465101317) at 2024-11-08 07:54 AM PST -mchait18,2024-11-10T03:28:28Z,- mchait18 pull request merged: [7711](https://github.com/hackforla/website/pull/7711#event-15240019154) at 2024-11-09 07:28 PM PST -mchait18,2024-11-10T20:21:57Z,- mchait18 assigned to issue: [7649](https://github.com/hackforla/website/issues/7649) at 2024-11-10 12:21 PM PST -mchait18,2024-11-10T20:56:39Z,- mchait18 opened pull request: [7716](https://github.com/hackforla/website/pull/7716) at 2024-11-10 12:56 PM PST -mchait18,2024-11-11T17:09:38Z,- mchait18 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2463238412) at 2024-11-11 09:09 AM PST -mchait18,2024-11-11T17:09:55Z,- mchait18 unassigned from issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-11 09:09 AM PST -mchait18,2024-11-11T19:59:49Z,- mchait18 commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2468928770) at 2024-11-11 11:59 AM PST -mchait18,2024-11-12T00:45:46Z,- mchait18 assigned to issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460418975) at 2024-11-11 04:45 PM PST -mchait18,2024-11-12T00:46:01Z,- mchait18 unassigned from issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2469362050) at 2024-11-11 04:46 PM PST -mchait18,2024-11-12T17:30:43Z,- mchait18 commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2471157113) at 2024-11-12 09:30 AM PST -mchait18,2024-11-12T20:19:13Z,- mchait18 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-12 12:19 PM PST -mchait18,2024-11-12T20:19:44Z,- mchait18 unassigned from issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-12 12:19 PM PST -mchait18,2024-11-13T05:20:11Z,- mchait18 commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2472417348) at 2024-11-12 09:20 PM PST -mchait18,2024-11-13T16:09:05Z,- mchait18 assigned to issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2463259089) at 2024-11-13 08:09 AM PST -mchait18,2024-11-13T16:09:23Z,- mchait18 unassigned from issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2474058622) at 2024-11-13 08:09 AM PST -mchait18,2024-11-15T01:26:16Z,- mchait18 pull request merged: [7716](https://github.com/hackforla/website/pull/7716#event-15306139126) at 2024-11-14 05:26 PM PST -mchait18,2024-11-15T03:37:52Z,- mchait18 assigned to issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2430486154) at 2024-11-14 07:37 PM PST -mchait18,2024-11-19T00:06:21Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2484427547) at 2024-11-18 04:06 PM PST -mchait18,2024-11-19T14:55:41Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2485943751) at 2024-11-19 06:55 AM PST -mchait18,2024-11-19T16:29:36Z,- mchait18 assigned to issue: [7603](https://github.com/hackforla/website/issues/7603) at 2024-11-19 08:29 AM PST -mchait18,2024-11-19T16:41:03Z,- mchait18 commented on issue: [7603](https://github.com/hackforla/website/issues/7603#issuecomment-2486218261) at 2024-11-19 08:41 AM PST -mchait18,2024-11-20T16:16:15Z,- mchait18 opened pull request: [7748](https://github.com/hackforla/website/pull/7748) at 2024-11-20 08:16 AM PST -mchait18,2024-11-20T16:34:35Z,- mchait18 commented on pull request: [7733](https://github.com/hackforla/website/pull/7733#issuecomment-2489061620) at 2024-11-20 08:34 AM PST -mchait18,2024-11-20T16:55:54Z,- mchait18 submitted pull request review: [7733](https://github.com/hackforla/website/pull/7733#pullrequestreview-2449212948) at 2024-11-20 08:55 AM PST -mchait18,2024-11-20T17:00:18Z,- mchait18 commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489119832) at 2024-11-20 09:00 AM PST -mchait18,2024-11-20T17:40:00Z,- mchait18 submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2449308276) at 2024-11-20 09:40 AM PST -mchait18,2024-11-20T17:42:31Z,- mchait18 commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489201607) at 2024-11-20 09:42 AM PST -mchait18,2024-11-22T03:48:17Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2492820772) at 2024-11-21 07:48 PM PST -mchait18,2024-11-25T15:41:50Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2498367046) at 2024-11-25 07:41 AM PST -mchait18,2024-11-25T16:18:06Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498462872) at 2024-11-25 08:18 AM PST -mchait18,2024-11-25T16:23:14Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498474599) at 2024-11-25 08:23 AM PST -mchait18,2024-11-25T16:25:55Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498481235) at 2024-11-25 08:25 AM PST -mchait18,2024-11-25T19:37:35Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498877616) at 2024-11-25 11:37 AM PST -mchait18,2024-11-25T19:40:04Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498882035) at 2024-11-25 11:40 AM PST -mchait18,2024-11-25T19:42:24Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498886311) at 2024-11-25 11:42 AM PST -mchait18,2024-11-25T19:47:38Z,- mchait18 commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2498895576) at 2024-11-25 11:47 AM PST -mchait18,2024-11-26T15:00:26Z,- mchait18 submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2461816198) at 2024-11-26 07:00 AM PST -mchait18,2024-11-26T15:03:43Z,- mchait18 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501055463) at 2024-11-26 07:03 AM PST -mchait18,2024-11-26T15:06:27Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2501062552) at 2024-11-26 07:06 AM PST -mchait18,2024-11-26T16:41:00Z,- mchait18 submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462112429) at 2024-11-26 08:41 AM PST -mchait18,2024-11-26T16:42:31Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2501369219) at 2024-11-26 08:42 AM PST -mchait18,2024-11-26T16:43:14Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2501370815) at 2024-11-26 08:43 AM PST -mchait18,2024-11-26T17:46:19Z,- mchait18 submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462300442) at 2024-11-26 09:46 AM PST -mchait18,2024-11-27T14:27:39Z,- mchait18 commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504019532) at 2024-11-27 06:27 AM PST -mchait18,2024-11-27T16:07:15Z,- mchait18 submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465455308) at 2024-11-27 08:07 AM PST -mchait18,2024-11-27T16:08:37Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2504262070) at 2024-11-27 08:08 AM PST -mchait18,2024-11-27T16:11:22Z,- mchait18 assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2501255362) at 2024-11-27 08:11 AM PST -mchait18,2024-11-27T16:11:44Z,- mchait18 unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2504268912) at 2024-11-27 08:11 AM PST -mchait18,2024-11-27T16:14:29Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2504274869) at 2024-11-27 08:14 AM PST -mchait18,2024-11-27T22:08:03Z,- mchait18 pull request merged: [7748](https://github.com/hackforla/website/pull/7748#event-15458032636) at 2024-11-27 02:08 PM PST -mchait18,2024-11-28T01:53:23Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2505112371) at 2024-11-27 05:53 PM PST -mchait18,2024-11-28T01:55:26Z,- mchait18 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2505114004) at 2024-11-27 05:55 PM PST -mchait18,2024-11-28T01:56:59Z,- mchait18 assigned to issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2339580789) at 2024-11-27 05:56 PM PST -mchait18,2024-11-28T02:45:08Z,- mchait18 submitted pull request review: [7776](https://github.com/hackforla/website/pull/7776#pullrequestreview-2466229109) at 2024-11-27 06:45 PM PST -mchait18,2024-11-28T02:46:20Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2505161134) at 2024-11-27 06:46 PM PST -mchait18,2024-11-29T16:31:26Z,- mchait18 opened issue: [7781](https://github.com/hackforla/website/issues/7781) at 2024-11-29 08:31 AM PST -mchait18,2024-11-29T16:38:09Z,- mchait18 commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2508128590) at 2024-11-29 08:38 AM PST -mchait18,2024-11-29T16:38:50Z,- mchait18 opened issue: [7782](https://github.com/hackforla/website/issues/7782) at 2024-11-29 08:38 AM PST -mchait18,2024-11-29T17:03:52Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2508163086) at 2024-11-29 09:03 AM PST -mchait18,2024-12-03T02:41:06Z,- mchait18 commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2513422622) at 2024-12-02 06:41 PM PST -mchait18,2024-12-09T03:44:32Z,- mchait18 commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2526796233) at 2024-12-08 07:44 PM PST -mchait18,2024-12-10T16:23:34Z,- mchait18 commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2532206534) at 2024-12-10 08:23 AM PST -mchait18,2024-12-10T16:47:35Z,- mchait18 submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2492951343) at 2024-12-10 08:47 AM PST -mchait18,2024-12-10T16:48:16Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2532265751) at 2024-12-10 08:48 AM PST -mchait18,2024-12-10T16:53:23Z,- mchait18 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2532277116) at 2024-12-10 08:53 AM PST -mchait18,2024-12-10T20:00:01Z,- mchait18 submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2493449160) at 2024-12-10 12:00 PM PST -mchait18,2024-12-10T20:01:07Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2532747047) at 2024-12-10 12:01 PM PST -mchait18,2024-12-10T20:03:04Z,- mchait18 commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2532750457) at 2024-12-10 12:03 PM PST -mchait18,2024-12-17T16:34:36Z,- mchait18 commented on pull request: [7803](https://github.com/hackforla/website/pull/7803#issuecomment-2548970453) at 2024-12-17 08:34 AM PST -mchait18,2024-12-17T16:53:58Z,- mchait18 submitted pull request review: [7803](https://github.com/hackforla/website/pull/7803#pullrequestreview-2509500205) at 2024-12-17 08:53 AM PST -mchait18,2024-12-17T16:55:14Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2549029174) at 2024-12-17 08:55 AM PST -mchait18,2025-01-08T02:17:20Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2576571209) at 2025-01-07 06:17 PM PST -mchavezm,3124,SKILLS ISSUE -mchavezm,2022-05-11T03:21:40Z,- mchavezm opened issue: [3124](https://github.com/hackforla/website/issues/3124) at 2022-05-10 08:21 PM PDT -mchavezm,2022-05-15T18:40:57Z,- mchavezm assigned to issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1126974601) at 2022-05-15 11:40 AM PDT -mchavezm,2022-05-28T20:48:07Z,- mchavezm assigned to issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1045553249) at 2022-05-28 01:48 PM PDT -mchavezm,2022-05-28T21:03:30Z,- mchavezm commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1140329348) at 2022-05-28 02:03 PM PDT -mchavezm,2022-05-28T21:06:07Z,- mchavezm commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1140329672) at 2022-05-28 02:06 PM PDT -mchavezm,2022-06-02T06:19:25Z,- mchavezm opened pull request: [3193](https://github.com/hackforla/website/pull/3193) at 2022-06-01 11:19 PM PDT -mchavezm,2022-06-03T02:06:53Z,- mchavezm commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1145516584) at 2022-06-02 07:06 PM PDT -mchavezm,2022-06-03T21:24:08Z,- mchavezm pull request merged: [3193](https://github.com/hackforla/website/pull/3193#event-6739950360) at 2022-06-03 02:24 PM PDT -mchavezm,2022-06-05T22:29:50Z,- mchavezm closed issue as completed: [3124](https://github.com/hackforla/website/issues/3124#event-6749322766) at 2022-06-05 03:29 PM PDT -mchavezm,2022-06-08T00:43:33Z,- mchavezm assigned to issue: [3090](https://github.com/hackforla/website/issues/3090#issuecomment-1116531834) at 2022-06-07 05:43 PM PDT -mchavezm,2022-06-13T22:17:32Z,- mchavezm commented on issue: [3090](https://github.com/hackforla/website/issues/3090#issuecomment-1154497272) at 2022-06-13 03:17 PM PDT -mchavezm,2022-06-14T02:16:03Z,- mchavezm opened pull request: [3241](https://github.com/hackforla/website/pull/3241) at 2022-06-13 07:16 PM PDT -mchavezm,2022-06-16T01:21:10Z,- mchavezm pull request merged: [3241](https://github.com/hackforla/website/pull/3241#event-6817326598) at 2022-06-15 06:21 PM PDT -mclotta,8030,SKILLS ISSUE -mclotta,2025-04-01T02:55:44Z,- mclotta opened issue: [8030](https://github.com/hackforla/website/issues/8030) at 2025-03-31 07:55 PM PDT -mclotta,2025-04-01T02:55:52Z,- mclotta assigned to issue: [8030](https://github.com/hackforla/website/issues/8030) at 2025-03-31 07:55 PM PDT -MCoding1,3272,SKILLS ISSUE -MCoding1,2022-06-20T21:41:56Z,- MCoding1 opened issue: [3272](https://github.com/hackforla/website/issues/3272) at 2022-06-20 02:41 PM PDT -MCoding1,2022-06-20T21:56:25Z,- MCoding1 assigned to issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1160868725) at 2022-06-20 02:56 PM PDT -MCoding1,2022-06-21T16:21:21Z,- MCoding1 commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1161975912) at 2022-06-21 09:21 AM PDT -MCoding1,2022-06-24T02:40:19Z,- MCoding1 unassigned from issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1161975912) at 2022-06-23 07:40 PM PDT -MCoding1,2022-06-24T02:54:11Z,- MCoding1 commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1165140886) at 2022-06-23 07:54 PM PDT -MCoding1,2022-06-24T02:54:31Z,- MCoding1 closed issue as completed: [3272](https://github.com/hackforla/website/issues/3272#event-6871108654) at 2022-06-23 07:54 PM PDT -MCoding1,2022-06-27T20:32:41Z,- MCoding1 assigned to issue: [3272](https://github.com/hackforla/website/issues/3272#event-6871108654) at 2022-06-27 01:32 PM PDT -McRawly,2019-10-02T02:09:32Z,- McRawly opened pull request: [153](https://github.com/hackforla/website/pull/153) at 2019-10-01 07:09 PM PDT -McRawly,2019-10-08T02:11:02Z,- McRawly pull request merged: [153](https://github.com/hackforla/website/pull/153#event-2693847223) at 2019-10-07 07:11 PM PDT -McRawly,2019-10-22T23:55:25Z,- McRawly opened issue: [158](https://github.com/hackforla/website/issues/158) at 2019-10-22 04:55 PM PDT -McRawly,2019-10-23T00:56:31Z,- McRawly opened issue: [159](https://github.com/hackforla/website/issues/159) at 2019-10-22 05:56 PM PDT -McRawly,2019-10-23T01:14:09Z,- McRawly opened issue: [160](https://github.com/hackforla/website/issues/160) at 2019-10-22 06:14 PM PDT -McRawly,2019-10-23T01:23:15Z,- McRawly opened issue: [161](https://github.com/hackforla/website/issues/161) at 2019-10-22 06:23 PM PDT -McRawly,2019-10-23T02:49:35Z,- McRawly commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-545240588) at 2019-10-22 07:49 PM PDT -McRawly,2019-10-23T03:19:24Z,- McRawly closed issue as completed: [14](https://github.com/hackforla/website/issues/14#event-2735479648) at 2019-10-22 08:19 PM PDT -McRawly,2019-10-23T03:19:26Z,- McRawly reopened issue: [14](https://github.com/hackforla/website/issues/14#event-2735479648) at 2019-10-22 08:19 PM PDT -McRawly,2019-10-28T01:42:09Z,- McRawly commented on issue: [161](https://github.com/hackforla/website/issues/161#issuecomment-546760315) at 2019-10-27 06:42 PM PDT -McRawly,2019-10-30T02:27:43Z,- McRawly opened pull request: [165](https://github.com/hackforla/website/pull/165) at 2019-10-29 07:27 PM PDT -McRawly,2019-10-30T03:53:34Z,- McRawly opened issue: [499](https://github.com/hackforla/website/issues/499) at 2019-10-29 08:53 PM PDT -McRawly,2019-11-02T04:27:20Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549009509) at 2019-11-01 08:27 PM PST -McRawly,2019-11-02T04:31:27Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549009748) at 2019-11-01 08:31 PM PST -McRawly,2019-11-02T04:34:42Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549009893) at 2019-11-01 08:34 PM PST -McRawly,2019-11-02T04:37:17Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549010013) at 2019-11-01 08:37 PM PST -McRawly,2019-11-02T04:44:27Z,- McRawly commented on pull request: [154](https://github.com/hackforla/website/pull/154#issuecomment-549010363) at 2019-11-01 08:44 PM PST -McRawly,2019-11-03T20:21:26Z,- McRawly assigned to issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174544) at 2019-11-03 12:21 PM PST -McRawly,2019-11-04T03:30:44Z,- McRawly assigned to issue: [168](https://github.com/hackforla/website/issues/168) at 2019-11-03 07:30 PM PST -McRawly,2019-11-04T05:32:32Z,- McRawly pull request merged: [165](https://github.com/hackforla/website/pull/165#event-2766594702) at 2019-11-03 09:32 PM PST -McRawly,2019-11-26T02:58:21Z,- McRawly assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:58 PM PST -McRawly,2019-12-10T04:51:51Z,- McRawly closed issue by PR 180: [160](https://github.com/hackforla/website/issues/160#event-2868784190) at 2019-12-09 08:51 PM PST -mcspach,2021-01-14T16:58:19Z,- mcspach assigned to issue: [905](https://github.com/hackforla/website/issues/905) at 2021-01-14 08:58 AM PST -mcspach,2021-01-14T18:11:10Z,- mcspach commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-760369575) at 2021-01-14 10:11 AM PST -mcspach,2021-01-27T18:01:48Z,- mcspach opened pull request: [971](https://github.com/hackforla/website/pull/971) at 2021-01-27 10:01 AM PST -mcspach,2021-02-03T03:18:13Z,- mcspach pull request merged: [971](https://github.com/hackforla/website/pull/971#event-4282940218) at 2021-02-02 07:18 PM PST -mcspach,2021-02-03T04:56:12Z,- mcspach assigned to issue: [959](https://github.com/hackforla/website/issues/959) at 2021-02-02 08:56 PM PST -mcspach,2021-02-04T02:35:06Z,- mcspach opened pull request: [1001](https://github.com/hackforla/website/pull/1001) at 2021-02-03 06:35 PM PST -mcspach,2021-02-04T17:07:38Z,- mcspach commented on pull request: [1001](https://github.com/hackforla/website/pull/1001#issuecomment-773464161) at 2021-02-04 09:07 AM PST -mcspach,2021-02-07T02:46:29Z,- mcspach pull request merged: [1001](https://github.com/hackforla/website/pull/1001#event-4299745098) at 2021-02-06 06:46 PM PST -mcspach,2021-02-07T18:19:13Z,- mcspach commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-774725706) at 2021-02-07 10:19 AM PST -mcspach,2021-02-07T18:57:41Z,- mcspach commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-774733454) at 2021-02-07 10:57 AM PST -mcspach,2021-02-07T19:12:29Z,- mcspach commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774740059) at 2021-02-07 11:12 AM PST -mcspach,2021-02-07T19:15:18Z,- mcspach commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-774740669) at 2021-02-07 11:15 AM PST -mcspach,2021-02-09T18:51:43Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-776160606) at 2021-02-09 10:51 AM PST -mcspach,2021-02-09T23:14:55Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-776308495) at 2021-02-09 03:14 PM PST -mcspach,2021-02-12T23:42:09Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-778515059) at 2021-02-12 03:42 PM PST -mcspach,2021-02-17T03:16:04Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-780268218) at 2021-02-16 07:16 PM PST -mcspach,2021-02-21T17:06:25Z,- mcspach opened pull request: [1078](https://github.com/hackforla/website/pull/1078) at 2021-02-21 09:06 AM PST -mcspach,2021-02-21T17:14:48Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-782891255) at 2021-02-21 09:14 AM PST -mcspach,2021-02-24T02:47:49Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-784709148) at 2021-02-23 06:47 PM PST -mcspach,2021-02-24T02:55:34Z,- mcspach commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-784711678) at 2021-02-23 06:55 PM PST -mcspach,2021-03-02T00:06:53Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-788416534) at 2021-03-01 04:06 PM PST -mcspach,2021-03-08T17:37:42Z,- mcspach commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-792938050) at 2021-03-08 09:37 AM PST -mcspach,2021-03-09T19:15:46Z,- mcspach commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-794329714) at 2021-03-09 11:15 AM PST -mcspach,2021-03-09T19:35:49Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-794352694) at 2021-03-09 11:35 AM PST -mcspach,2021-03-10T04:16:02Z,- mcspach pull request closed w/o merging: [1078](https://github.com/hackforla/website/pull/1078#event-4433281974) at 2021-03-09 08:16 PM PST -mcspach,2021-03-10T04:16:28Z,- mcspach unassigned from issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-794352694) at 2021-03-09 08:16 PM PST -mcspach,2021-04-23T17:02:38Z,- mcspach unassigned from issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-774580390) at 2021-04-23 10:02 AM PDT -mdhailwood1,2021-09-06T16:22:20Z,- mdhailwood1 closed issue by PR 2506: [2202](https://github.com/hackforla/website/issues/2202#event-5261957769) at 2021-09-06 09:22 AM PDT -mdhailwood1,2021-09-06T16:22:23Z,- mdhailwood1 reopened issue: [2202](https://github.com/hackforla/website/issues/2202#event-5261957769) at 2021-09-06 09:22 AM PDT -mdhailwood1,2021-09-12T15:26:53Z,- mdhailwood1 assigned to issue: [2244](https://github.com/hackforla/website/issues/2244) at 2021-09-12 08:26 AM PDT -mdhailwood1,2021-09-17T02:38:25Z,- mdhailwood1 opened pull request: [2284](https://github.com/hackforla/website/pull/2284) at 2021-09-16 07:38 PM PDT -mdhailwood1,2021-09-20T00:16:07Z,- mdhailwood1 assigned to issue: [2279](https://github.com/hackforla/website/issues/2279) at 2021-09-19 05:16 PM PDT -mdhailwood1,2021-09-21T04:39:43Z,- mdhailwood1 pull request merged: [2284](https://github.com/hackforla/website/pull/2284#event-5332670508) at 2021-09-20 09:39 PM PDT -mdhailwood1,2021-09-26T19:15:58Z,- mdhailwood1 commented on issue: [2279](https://github.com/hackforla/website/issues/2279#issuecomment-927355987) at 2021-09-26 12:15 PM PDT -mdhailwood1,2021-09-28T05:23:08Z,- mdhailwood1 submitted pull request review: [2308](https://github.com/hackforla/website/pull/2308#pullrequestreview-764979809) at 2021-09-27 10:23 PM PDT -mdhailwood1,2021-09-29T07:24:26Z,- mdhailwood1 opened pull request: [2315](https://github.com/hackforla/website/pull/2315) at 2021-09-29 12:24 AM PDT -mdhailwood1,2021-10-04T04:51:37Z,- mdhailwood1 pull request merged: [2315](https://github.com/hackforla/website/pull/2315#event-5401317568) at 2021-10-03 09:51 PM PDT -mdhailwood1,2021-10-13T02:37:19Z,- mdhailwood1 commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941860991) at 2021-10-12 07:37 PM PDT -MDivyaPrakash,4986,SKILLS ISSUE -MDivyaPrakash,2023-07-18T02:00:33Z,- MDivyaPrakash opened issue: [4986](https://github.com/hackforla/website/issues/4986) at 2023-07-17 07:00 PM PDT -MDivyaPrakash,2023-07-18T02:49:54Z,- MDivyaPrakash assigned to issue: [4986](https://github.com/hackforla/website/issues/4986) at 2023-07-17 07:49 PM PDT -mdothman,2020-12-27T00:30:51Z,- mdothman opened pull request: [870](https://github.com/hackforla/website/pull/870) at 2020-12-26 04:30 PM PST -mdothman,2020-12-27T01:02:45Z,- mdothman pull request merged: [870](https://github.com/hackforla/website/pull/870#event-4149947046) at 2020-12-26 05:02 PM PST -mdothman,2020-12-27T01:06:33Z,- mdothman opened pull request: [871](https://github.com/hackforla/website/pull/871) at 2020-12-26 05:06 PM PST -mdothman,2020-12-27T01:06:43Z,- mdothman pull request merged: [871](https://github.com/hackforla/website/pull/871#event-4149948637) at 2020-12-26 05:06 PM PST -mdothman,2020-12-27T18:54:46Z,- mdothman opened pull request: [878](https://github.com/hackforla/website/pull/878) at 2020-12-27 10:54 AM PST -mdothman,2020-12-28T01:34:11Z,- mdothman pull request merged: [878](https://github.com/hackforla/website/pull/878#event-4150753855) at 2020-12-27 05:34 PM PST -mdothman,2021-01-17T20:19:14Z,- mdothman opened issue: [947](https://github.com/hackforla/website/issues/947) at 2021-01-17 12:19 PM PST -mdothman,2021-03-03T21:46:06Z,- mdothman commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-790083020) at 2021-03-03 01:46 PM PST -mdothman,2021-03-24T23:54:31Z,- mdothman commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-806257539) at 2021-03-24 04:54 PM PDT -mdothman,2021-04-14T04:22:26Z,- mdothman assigned to issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819217282) at 2021-04-13 09:22 PM PDT -mdothman,2021-04-18T04:13:46Z,- mdothman unassigned from issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819217282) at 2021-04-17 09:13 PM PDT -mehmehmehlol,2021-08-09T15:27:40Z,- mehmehmehlol assigned to issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-08-09 08:27 AM PDT -mehmehmehlol,2021-08-12T05:00:39Z,- mehmehmehlol opened pull request: [2103](https://github.com/hackforla/website/pull/2103) at 2021-08-11 10:00 PM PDT -mehmehmehlol,2021-08-14T18:21:15Z,- mehmehmehlol pull request merged: [2103](https://github.com/hackforla/website/pull/2103#event-5158987132) at 2021-08-14 11:21 AM PDT -mehmehmehlol,2021-08-15T19:01:07Z,- mehmehmehlol assigned to issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-898022997) at 2021-08-15 12:01 PM PDT -mehmehmehlol,2021-08-17T22:10:25Z,- mehmehmehlol unassigned from issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-898022997) at 2021-08-17 03:10 PM PDT -mehmehmehlol,2021-08-20T04:45:35Z,- mehmehmehlol assigned to issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-898022997) at 2021-08-19 09:45 PM PDT -mehmehmehlol,2021-08-20T05:18:02Z,- mehmehmehlol opened pull request: [2136](https://github.com/hackforla/website/pull/2136) at 2021-08-19 10:18 PM PDT -mehmehmehlol,2021-08-20T05:21:20Z,- mehmehmehlol pull request merged: [2136](https://github.com/hackforla/website/pull/2136#event-5184846690) at 2021-08-19 10:21 PM PDT -mehmehmehlol,2021-08-20T05:22:00Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902439409) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:22:00Z,- mehmehmehlol reopened pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902439409) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:22:34Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902439592) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:22:34Z,- mehmehmehlol pull request merged: [2136](https://github.com/hackforla/website/pull/2136#event-5184849647) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:26:20Z,- mehmehmehlol reopened pull request: [2136](https://github.com/hackforla/website/pull/2136#event-5184849647) at 2021-08-19 10:26 PM PDT -mehmehmehlol,2021-08-20T05:28:58Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902442262) at 2021-08-19 10:28 PM PDT -mehmehmehlol,2021-08-23T22:31:41Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-904178528) at 2021-08-23 03:31 PM PDT -mehmehmehlol,2021-08-24T03:08:42Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-904286743) at 2021-08-23 08:08 PM PDT -mehmehmehlol,2021-08-24T15:55:53Z,- mehmehmehlol pull request merged: [2136](https://github.com/hackforla/website/pull/2136#event-5201586267) at 2021-08-24 08:55 AM PDT -mehmehmehlol,2021-08-24T18:57:35Z,- mehmehmehlol assigned to issue: [2165](https://github.com/hackforla/website/issues/2165#issuecomment-903475840) at 2021-08-24 11:57 AM PDT -mehmehmehlol,2021-08-28T19:50:25Z,- mehmehmehlol opened pull request: [2196](https://github.com/hackforla/website/pull/2196) at 2021-08-28 12:50 PM PDT -mehmehmehlol,2021-08-28T20:03:53Z,- mehmehmehlol commented on issue: [2165](https://github.com/hackforla/website/issues/2165#issuecomment-907682735) at 2021-08-28 01:03 PM PDT -mehmehmehlol,2021-08-31T03:42:19Z,- mehmehmehlol pull request merged: [2196](https://github.com/hackforla/website/pull/2196#event-5229830751) at 2021-08-30 08:42 PM PDT -mehmehmehlol,2021-08-31T03:55:02Z,- mehmehmehlol assigned to issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-905191021) at 2021-08-30 08:55 PM PDT -mehmehmehlol,2021-09-05T06:49:48Z,- mehmehmehlol opened pull request: [2224](https://github.com/hackforla/website/pull/2224) at 2021-09-04 11:49 PM PDT -mehmehmehlol,2021-09-05T06:54:57Z,- mehmehmehlol commented on pull request: [2224](https://github.com/hackforla/website/pull/2224#issuecomment-913097124) at 2021-09-04 11:54 PM PDT -mehmehmehlol,2021-09-05T07:02:24Z,- mehmehmehlol opened pull request: [2225](https://github.com/hackforla/website/pull/2225) at 2021-09-05 12:02 AM PDT -mehmehmehlol,2021-09-05T07:02:28Z,- mehmehmehlol pull request closed w/o merging: [2225](https://github.com/hackforla/website/pull/2225#event-5257170496) at 2021-09-05 12:02 AM PDT -mehmehmehlol,2021-09-05T17:09:57Z,- mehmehmehlol commented on issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-913192241) at 2021-09-05 10:09 AM PDT -mehmehmehlol,2021-09-11T04:38:09Z,- mehmehmehlol pull request merged: [2224](https://github.com/hackforla/website/pull/2224#event-5287192908) at 2021-09-10 09:38 PM PDT -mehmehmehlol,2021-09-16T02:05:21Z,- mehmehmehlol assigned to issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-903298279) at 2021-09-15 07:05 PM PDT -mehmehmehlol,2021-10-04T06:40:03Z,- mehmehmehlol unassigned from issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-931964234) at 2021-10-03 11:40 PM PDT -Melissa-Vasquez,2020-12-30T05:13:45Z,- Melissa-Vasquez assigned to issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-12-29 09:13 PM PST -Melissa-Vasquez,2020-12-30T05:17:21Z,- Melissa-Vasquez unassigned from issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-12-29 09:17 PM PST -Melissa-Vasquez,2020-12-30T05:17:36Z,- Melissa-Vasquez assigned to issue: [891](https://github.com/hackforla/website/issues/891) at 2020-12-29 09:17 PM PST -Melissa-Vasquez,2020-12-30T06:58:05Z,- Melissa-Vasquez opened pull request: [898](https://github.com/hackforla/website/pull/898) at 2020-12-29 10:58 PM PST -Melissa-Vasquez,2020-12-30T07:04:30Z,- Melissa-Vasquez assigned to issue: [894](https://github.com/hackforla/website/issues/894) at 2020-12-29 11:04 PM PST -Melissa-Vasquez,2021-01-03T18:16:56Z,- Melissa-Vasquez pull request merged: [898](https://github.com/hackforla/website/pull/898#event-4162685813) at 2021-01-03 10:16 AM PST -Melissa-Vasquez,2021-01-10T18:14:02Z,- Melissa-Vasquez unassigned from issue: [894](https://github.com/hackforla/website/issues/894) at 2021-01-10 10:14 AM PST -melissaluc,8008,SKILLS ISSUE -melissaluc,2025-03-19T03:46:11Z,- melissaluc opened issue: [8008](https://github.com/hackforla/website/issues/8008) at 2025-03-18 08:46 PM PDT -melissaluc,2025-03-19T03:46:12Z,- melissaluc assigned to issue: [8008](https://github.com/hackforla/website/issues/8008) at 2025-03-18 08:46 PM PDT -melissaluc,2025-03-25T14:08:51Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2751392081) at 2025-03-25 07:08 AM PDT -melissaluc,2025-03-25T15:29:30Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2751662249) at 2025-03-25 08:29 AM PDT -melissaluc,2025-03-28T20:53:14Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2762481527) at 2025-03-28 01:53 PM PDT -melissaluc,2025-03-28T20:53:49Z,- melissaluc assigned to issue: [7470](https://github.com/hackforla/website/issues/7470) at 2025-03-28 01:53 PM PDT -melissaluc,2025-03-28T21:00:42Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2762499807) at 2025-03-28 02:00 PM PDT -melissaluc,2025-03-28T21:01:52Z,- melissaluc commented on issue: [7470](https://github.com/hackforla/website/issues/7470#issuecomment-2762503448) at 2025-03-28 02:01 PM PDT -melissaluc,2025-03-29T12:59:06Z,- melissaluc opened pull request: [8020](https://github.com/hackforla/website/pull/8020) at 2025-03-29 05:59 AM PDT -melissaluc,2025-04-01T23:20:34Z,- melissaluc commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2770891713) at 2025-04-01 04:20 PM PDT -melissaluc,2025-04-01T23:37:52Z,- melissaluc commented on pull request: [8022](https://github.com/hackforla/website/pull/8022#issuecomment-2770912077) at 2025-04-01 04:37 PM PDT -melissaluc,2025-04-02T21:56:05Z,- melissaluc submitted pull request review: [8022](https://github.com/hackforla/website/pull/8022#pullrequestreview-2737684169) at 2025-04-02 02:56 PM PDT -melissaluc,2025-04-02T22:01:14Z,- melissaluc submitted pull request review: [8021](https://github.com/hackforla/website/pull/8021#pullrequestreview-2737693495) at 2025-04-02 03:01 PM PDT -melissaluc,2025-04-03T02:47:21Z,- melissaluc pull request merged: [8020](https://github.com/hackforla/website/pull/8020#event-17104306211) at 2025-04-02 07:47 PM PDT -melissaluc,2025-04-03T12:33:51Z,- melissaluc assigned to issue: [7485](https://github.com/hackforla/website/issues/7485) at 2025-04-03 05:33 AM PDT -melissaluc,2025-04-03T12:36:04Z,- melissaluc commented on issue: [7485](https://github.com/hackforla/website/issues/7485#issuecomment-2775650952) at 2025-04-03 05:36 AM PDT -melissaluc,2025-04-03T14:46:23Z,- melissaluc opened pull request: [8041](https://github.com/hackforla/website/pull/8041) at 2025-04-03 07:46 AM PDT -melissaluc,2025-04-07T15:31:36Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2783742717) at 2025-04-07 08:31 AM PDT -melissaluc,2025-04-11T15:32:38Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2797246947) at 2025-04-11 08:32 AM PDT -melissaluc,2025-04-11T15:34:39Z,- melissaluc assigned to issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2683818162) at 2025-04-11 08:34 AM PDT -melissaluc,2025-04-11T15:34:56Z,- melissaluc unassigned from issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2797253710) at 2025-04-11 08:34 AM PDT -melissaluc,2025-04-12T00:27:58Z,- melissaluc pull request merged: [8041](https://github.com/hackforla/website/pull/8041#event-17232015305) at 2025-04-11 05:27 PM PDT -melissaluc,2025-04-12T01:14:13Z,- melissaluc assigned to issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2629871636) at 2025-04-11 06:14 PM PDT -melissaluc,2025-04-13T22:57:18Z,- melissaluc commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2800165898) at 2025-04-13 03:57 PM PDT -melissaluc,2025-04-25T16:48:29Z,- melissaluc commented on pull request: [8088](https://github.com/hackforla/website/pull/8088#issuecomment-2830915751) at 2025-04-25 09:48 AM PDT -melissaluc,2025-04-25T17:51:30Z,- melissaluc submitted pull request review: [8088](https://github.com/hackforla/website/pull/8088#pullrequestreview-2794878352) at 2025-04-25 10:51 AM PDT -melissaluc,2025-04-25T17:55:36Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831067230) at 2025-04-25 10:55 AM PDT -melissaluc,2025-04-25T17:56:25Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831068873) at 2025-04-25 10:56 AM PDT -melissaluc,2025-04-25T17:56:35Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831069160) at 2025-04-25 10:56 AM PDT -melissaluc,2025-04-25T18:04:25Z,- melissaluc assigned to issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-04-25 11:04 AM PDT -melissaluc,2025-04-25T18:04:40Z,- melissaluc unassigned from issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-04-25 11:04 AM PDT -melissaluc,2025-04-25T18:09:03Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831092489) at 2025-04-25 11:09 AM PDT -melissaluc,2025-04-25T18:11:24Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831096750) at 2025-04-25 11:11 AM PDT -melissaluc,2025-04-25T18:12:24Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831098584) at 2025-04-25 11:12 AM PDT -melissaluc,2025-04-30T14:20:18Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2842150338) at 2025-04-30 07:20 AM PDT -melissaluc,2025-05-16T17:42:15Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2887329366) at 2025-05-16 10:42 AM PDT -melissaluc,2025-05-23T17:40:35Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2905289440) at 2025-05-23 10:40 AM PDT -melissaluc,2025-05-31T16:28:49Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2925407816) at 2025-05-31 09:28 AM PDT -melissam640,7029,SKILLS ISSUE -melissam640,2024-06-19T03:13:44Z,- melissam640 opened issue: [7029](https://github.com/hackforla/website/issues/7029) at 2024-06-18 08:13 PM PDT -melissam640,2024-06-19T03:14:38Z,- melissam640 assigned to issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2177463997) at 2024-06-18 08:14 PM PDT -melissam640,2024-06-24T17:31:52Z,- melissam640 assigned to issue: [7060](https://github.com/hackforla/website/issues/7060#issuecomment-2185905586) at 2024-06-24 10:31 AM PDT -melissam640,2024-06-24T17:41:46Z,- melissam640 commented on issue: [7060](https://github.com/hackforla/website/issues/7060#issuecomment-2187088761) at 2024-06-24 10:41 AM PDT -melissam640,2024-06-24T17:52:40Z,- melissam640 commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2187106044) at 2024-06-24 10:52 AM PDT -melissam640,2024-06-24T19:13:21Z,- melissam640 opened pull request: [7063](https://github.com/hackforla/website/pull/7063) at 2024-06-24 12:13 PM PDT -melissam640,2024-06-25T20:21:56Z,- melissam640 pull request merged: [7063](https://github.com/hackforla/website/pull/7063#event-13287463120) at 2024-06-25 01:21 PM PDT -melissam640,2024-06-26T21:06:31Z,- melissam640 assigned to issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2159590792) at 2024-06-26 02:06 PM PDT -melissam640,2024-06-26T21:15:20Z,- melissam640 commented on issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2192638783) at 2024-06-26 02:15 PM PDT -melissam640,2024-06-26T21:46:44Z,- melissam640 opened pull request: [7069](https://github.com/hackforla/website/pull/7069) at 2024-06-26 02:46 PM PDT -melissam640,2024-06-26T23:33:51Z,- melissam640 pull request merged: [7069](https://github.com/hackforla/website/pull/7069#event-13305297698) at 2024-06-26 04:33 PM PDT -melissam640,2024-07-05T18:32:28Z,- melissam640 commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2211267832) at 2024-07-05 11:32 AM PDT -melissam640,2024-07-15T21:45:58Z,- melissam640 assigned to issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229153557) at 2024-07-15 02:45 PM PDT -melissam640,2024-07-15T21:49:57Z,- melissam640 commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229498774) at 2024-07-15 02:49 PM PDT -melissam640,2024-07-15T22:20:26Z,- melissam640 opened pull request: [7121](https://github.com/hackforla/website/pull/7121) at 2024-07-15 03:20 PM PDT -melissam640,2024-07-16T02:49:16Z,- melissam640 pull request merged: [7121](https://github.com/hackforla/website/pull/7121#event-13514035922) at 2024-07-15 07:49 PM PDT -melissam640,2024-07-18T19:14:38Z,- melissam640 assigned to issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2195377318) at 2024-07-18 12:14 PM PDT -melissam640,2024-07-18T19:17:22Z,- melissam640 commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2237357456) at 2024-07-18 12:17 PM PDT -melissam640,2024-07-18T22:31:16Z,- melissam640 opened pull request: [7128](https://github.com/hackforla/website/pull/7128) at 2024-07-18 03:31 PM PDT -melissam640,2024-07-22T04:23:50Z,- melissam640 commented on pull request: [7128](https://github.com/hackforla/website/pull/7128#issuecomment-2242058875) at 2024-07-21 09:23 PM PDT -melissam640,2024-07-22T17:14:25Z,- melissam640 pull request merged: [7128](https://github.com/hackforla/website/pull/7128#event-13604438318) at 2024-07-22 10:14 AM PDT -melissam640,2024-08-05T22:53:25Z,- melissam640 commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2270053378) at 2024-08-05 03:53 PM PDT -melodylaishram,2020-01-30T02:36:02Z,- melodylaishram assigned to issue: [240](https://github.com/hackforla/website/issues/240) at 2020-01-29 06:36 PM PST -melodylaishram,2020-01-30T05:53:01Z,- melodylaishram commented on issue: [240](https://github.com/hackforla/website/issues/240#issuecomment-580094928) at 2020-01-29 09:53 PM PST -melodylaishram,2020-02-16T18:42:36Z,- melodylaishram unassigned from issue: [240](https://github.com/hackforla/website/issues/240#issuecomment-580094928) at 2020-02-16 10:42 AM PST -melodylaishram,2020-02-17T21:41:14Z,- melodylaishram closed issue as completed: [240](https://github.com/hackforla/website/issues/240#event-3045075519) at 2020-02-17 01:41 PM PST -merlinsmagic,2023-08-14T21:44:20Z,- merlinsmagic commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1678115710) at 2023-08-14 02:44 PM PDT -merlinsmagic,2023-08-22T17:08:00Z,- merlinsmagic commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1688598407) at 2023-08-22 10:08 AM PDT -meru-a,5215,SKILLS ISSUE -meru-a,2023-08-15T02:58:10Z,- meru-a opened issue: [5215](https://github.com/hackforla/website/issues/5215) at 2023-08-14 07:58 PM PDT -meru-a,2023-08-15T03:45:36Z,- meru-a assigned to issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1678358674) at 2023-08-14 08:45 PM PDT -meru-a,2023-08-17T03:47:53Z,- meru-a assigned to issue: [5184](https://github.com/hackforla/website/issues/5184#issuecomment-1675513783) at 2023-08-16 08:47 PM PDT -meru-a,2023-08-17T03:52:40Z,- meru-a commented on issue: [5184](https://github.com/hackforla/website/issues/5184#issuecomment-1681570763) at 2023-08-16 08:52 PM PDT -meru-a,2023-08-20T04:27:15Z,- meru-a opened pull request: [5263](https://github.com/hackforla/website/pull/5263) at 2023-08-19 09:27 PM PDT -meru-a,2023-08-24T01:30:37Z,- meru-a commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1690853790) at 2023-08-23 06:30 PM PDT -meru-a,2023-08-24T01:36:08Z,- meru-a assigned to issue: [5176](https://github.com/hackforla/website/issues/5176#issuecomment-1672311176) at 2023-08-23 06:36 PM PDT -meru-a,2023-08-24T01:36:59Z,- meru-a commented on issue: [5176](https://github.com/hackforla/website/issues/5176#issuecomment-1690857756) at 2023-08-23 06:36 PM PDT -meru-a,2023-08-24T17:54:57Z,- meru-a commented on issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1692167583) at 2023-08-24 10:54 AM PDT -meru-a,2023-08-24T17:57:03Z,- meru-a commented on issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1692170373) at 2023-08-24 10:57 AM PDT -meru-a,2023-08-24T17:57:04Z,- meru-a closed issue as completed: [5215](https://github.com/hackforla/website/issues/5215#event-10184466810) at 2023-08-24 10:57 AM PDT -meru-a,2023-08-24T18:22:46Z,- meru-a submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1594201885) at 2023-08-24 11:22 AM PDT -meru-a,2023-08-24T18:23:03Z,- meru-a submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1594202288) at 2023-08-24 11:23 AM PDT -meru-a,2023-08-24T18:51:42Z,- meru-a opened pull request: [5299](https://github.com/hackforla/website/pull/5299) at 2023-08-24 11:51 AM PDT -meru-a,2023-08-27T02:18:02Z,- meru-a pull request merged: [5263](https://github.com/hackforla/website/pull/5263#event-10201003635) at 2023-08-26 07:18 PM PDT -meru-a,2023-08-27T23:16:17Z,- meru-a submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1597208062) at 2023-08-27 04:16 PM PDT -meru-a,2023-08-28T19:22:25Z,- meru-a pull request merged: [5299](https://github.com/hackforla/website/pull/5299#event-10212828508) at 2023-08-28 12:22 PM PDT -meru-a,2023-08-29T15:20:48Z,- meru-a assigned to issue: [5315](https://github.com/hackforla/website/issues/5315) at 2023-08-29 08:20 AM PDT -meru-a,2023-08-29T15:22:15Z,- meru-a commented on issue: [5315](https://github.com/hackforla/website/issues/5315#issuecomment-1697659646) at 2023-08-29 08:22 AM PDT -meru-a,2023-09-01T00:40:20Z,- meru-a commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1701954124) at 2023-08-31 05:40 PM PDT -meru-a,2023-09-01T00:40:52Z,- meru-a commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1701954452) at 2023-08-31 05:40 PM PDT -meru-a,2023-09-01T00:41:21Z,- meru-a commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701954775) at 2023-08-31 05:41 PM PDT -meru-a,2023-09-01T22:05:06Z,- meru-a submitted pull request review: [5400](https://github.com/hackforla/website/pull/5400#pullrequestreview-1607709367) at 2023-09-01 03:05 PM PDT -meru-a,2023-09-01T22:09:54Z,- meru-a submitted pull request review: [5399](https://github.com/hackforla/website/pull/5399#pullrequestreview-1607713243) at 2023-09-01 03:09 PM PDT -meru-a,2023-09-01T22:27:06Z,- meru-a submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1607721977) at 2023-09-01 03:27 PM PDT -meru-a,2023-09-01T23:17:27Z,- meru-a opened pull request: [5415](https://github.com/hackforla/website/pull/5415) at 2023-09-01 04:17 PM PDT -meru-a,2023-09-05T01:36:45Z,- meru-a submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1610058179) at 2023-09-04 06:36 PM PDT -meru-a,2023-09-07T06:46:54Z,- meru-a pull request merged: [5415](https://github.com/hackforla/website/pull/5415#event-10303404993) at 2023-09-06 11:46 PM PDT -meru-a,2023-09-20T02:29:04Z,- meru-a assigned to issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1720785377) at 2023-09-19 07:29 PM PDT -meru-a,2023-09-20T02:33:40Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1726791032) at 2023-09-19 07:33 PM PDT -meru-a,2023-09-23T03:37:51Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1732198461) at 2023-09-22 08:37 PM PDT -meru-a,2023-10-05T02:59:45Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1747962378) at 2023-10-04 07:59 PM PDT -meru-a,2023-10-05T15:25:53Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1749131737) at 2023-10-05 08:25 AM PDT -meru-a,2023-10-14T15:29:35Z,- meru-a assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762099537) at 2023-10-14 08:29 AM PDT -meru-a,2023-10-14T15:31:12Z,- meru-a commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762970367) at 2023-10-14 08:31 AM PDT -meru-a,2023-10-14T16:08:12Z,- meru-a commented on pull request: [5704](https://github.com/hackforla/website/pull/5704#issuecomment-1763015352) at 2023-10-14 09:08 AM PDT -meru-a,2023-10-15T14:09:15Z,- meru-a commented on pull request: [5704](https://github.com/hackforla/website/pull/5704#issuecomment-1763400829) at 2023-10-15 07:09 AM PDT -meru-a,2023-10-15T14:09:28Z,- meru-a submitted pull request review: [5704](https://github.com/hackforla/website/pull/5704#pullrequestreview-1678801203) at 2023-10-15 07:09 AM PDT -meru-a,2023-10-17T05:29:43Z,- meru-a commented on pull request: [5718](https://github.com/hackforla/website/pull/5718#issuecomment-1765695282) at 2023-10-16 10:29 PM PDT -meru-a,2023-10-17T05:34:36Z,- meru-a submitted pull request review: [5718](https://github.com/hackforla/website/pull/5718#pullrequestreview-1681395413) at 2023-10-16 10:34 PM PDT -meru-a,2023-10-27T19:14:59Z,- meru-a commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1783389977) at 2023-10-27 12:14 PM PDT -meru-a,2023-10-28T15:46:15Z,- meru-a commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1783853655) at 2023-10-28 08:46 AM PDT -meru-a,2023-10-30T05:15:12Z,- meru-a submitted pull request review: [5788](https://github.com/hackforla/website/pull/5788#pullrequestreview-1703278605) at 2023-10-29 10:15 PM PDT -meru-a,2023-11-22T04:07:07Z,- meru-a unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1815845017) at 2023-11-21 08:07 PM PST -meru-a,2023-11-22T04:07:23Z,- meru-a commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1822065293) at 2023-11-21 08:07 PM PST -mgodoy2023,2021-06-18T16:20:14Z,- mgodoy2023 assigned to issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-06-18 09:20 AM PDT -mgodoy2023,2021-06-18T18:13:52Z,- mgodoy2023 opened pull request: [1780](https://github.com/hackforla/website/pull/1780) at 2021-06-18 11:13 AM PDT -mgodoy2023,2021-06-20T14:01:25Z,- mgodoy2023 pull request merged: [1780](https://github.com/hackforla/website/pull/1780#event-4913441372) at 2021-06-20 07:01 AM PDT -mgodoy2023,2021-06-21T16:45:36Z,- mgodoy2023 assigned to issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-21 09:45 AM PDT -mgodoy2023,2021-06-21T16:46:41Z,- mgodoy2023 unassigned from issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-21 09:46 AM PDT -mgodoy2023,2021-06-21T16:49:44Z,- mgodoy2023 assigned to issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-06-21 09:49 AM PDT -mgodoy2023,2021-06-21T18:29:02Z,- mgodoy2023 commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-865252790) at 2021-06-21 11:29 AM PDT -mgodoy2023,2021-06-21T18:44:35Z,- mgodoy2023 opened pull request: [1798](https://github.com/hackforla/website/pull/1798) at 2021-06-21 11:44 AM PDT -mgodoy2023,2021-06-21T20:09:45Z,- mgodoy2023 commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-865311883) at 2021-06-21 01:09 PM PDT -mgodoy2023,2021-06-21T21:33:51Z,- mgodoy2023 pull request closed w/o merging: [1798](https://github.com/hackforla/website/pull/1798#event-4919233698) at 2021-06-21 02:33 PM PDT -mgodoy2023,2021-06-21T22:21:20Z,- mgodoy2023 reopened pull request: [1798](https://github.com/hackforla/website/pull/1798#event-4919233698) at 2021-06-21 03:21 PM PDT -mgodoy2023,2021-06-21T22:22:57Z,- mgodoy2023 pull request closed w/o merging: [1798](https://github.com/hackforla/website/pull/1798#event-4919391064) at 2021-06-21 03:22 PM PDT -mgodoy2023,2021-06-21T23:16:47Z,- mgodoy2023 opened pull request: [1802](https://github.com/hackforla/website/pull/1802) at 2021-06-21 04:16 PM PDT -mgodoy2023,2021-06-21T23:20:33Z,- mgodoy2023 commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-865407352) at 2021-06-21 04:20 PM PDT -mgodoy2023,2021-06-23T19:55:35Z,- mgodoy2023 pull request closed w/o merging: [1802](https://github.com/hackforla/website/pull/1802#event-4930892275) at 2021-06-23 12:55 PM PDT -mgodoy2023,2021-06-23T20:28:07Z,- mgodoy2023 opened pull request: [1819](https://github.com/hackforla/website/pull/1819) at 2021-06-23 01:28 PM PDT -mgodoy2023,2021-06-28T16:26:18Z,- mgodoy2023 assigned to issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-841860135) at 2021-06-28 09:26 AM PDT -mgodoy2023,2021-06-28T16:41:18Z,- mgodoy2023 pull request merged: [1819](https://github.com/hackforla/website/pull/1819#event-4948586095) at 2021-06-28 09:41 AM PDT -mgodoy2023,2021-06-28T22:56:08Z,- mgodoy2023 unassigned from issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-870084891) at 2021-06-28 03:56 PM PDT -mgodoy2023,2021-06-30T16:28:31Z,- mgodoy2023 assigned to issue: [1739](https://github.com/hackforla/website/issues/1739) at 2021-06-30 09:28 AM PDT -mgodoy2023,2021-06-30T21:15:53Z,- mgodoy2023 reopened pull request: [1819](https://github.com/hackforla/website/pull/1819#event-4948586095) at 2021-06-30 02:15 PM PDT -mgodoy2023,2021-06-30T22:38:50Z,- mgodoy2023 commented on pull request: [1819](https://github.com/hackforla/website/pull/1819#issuecomment-871772068) at 2021-06-30 03:38 PM PDT -mgodoy2023,2021-07-01T02:04:14Z,- mgodoy2023 submitted pull request review: [1862](https://github.com/hackforla/website/pull/1862#pullrequestreview-696749090) at 2021-06-30 07:04 PM PDT -mgodoy2023,2021-07-01T02:14:14Z,- mgodoy2023 submitted pull request review: [1860](https://github.com/hackforla/website/pull/1860#pullrequestreview-696752591) at 2021-06-30 07:14 PM PDT -mgodoy2023,2021-07-02T16:58:42Z,- mgodoy2023 pull request merged: [1819](https://github.com/hackforla/website/pull/1819#event-4972490058) at 2021-07-02 09:58 AM PDT -mgodoy2023,2021-07-11T05:52:39Z,- mgodoy2023 commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-877745959) at 2021-07-10 10:52 PM PDT -mgodoy2023,2021-07-13T18:35:11Z,- mgodoy2023 commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-879311270) at 2021-07-13 11:35 AM PDT -mgodoy2023,2021-07-15T18:48:44Z,- mgodoy2023 opened pull request: [1949](https://github.com/hackforla/website/pull/1949) at 2021-07-15 11:48 AM PDT -mgodoy2023,2021-07-16T18:08:21Z,- mgodoy2023 submitted pull request review: [1952](https://github.com/hackforla/website/pull/1952#pullrequestreview-708636941) at 2021-07-16 11:08 AM PDT -mgodoy2023,2021-07-16T18:22:01Z,- mgodoy2023 submitted pull request review: [1946](https://github.com/hackforla/website/pull/1946#pullrequestreview-708646388) at 2021-07-16 11:22 AM PDT -mgodoy2023,2021-07-17T18:44:34Z,- mgodoy2023 commented on pull request: [1949](https://github.com/hackforla/website/pull/1949#issuecomment-881942285) at 2021-07-17 11:44 AM PDT -mgodoy2023,2021-07-19T16:27:07Z,- mgodoy2023 submitted pull request review: [1946](https://github.com/hackforla/website/pull/1946#pullrequestreview-709750686) at 2021-07-19 09:27 AM PDT -mgodoy2023,2021-07-19T16:39:28Z,- mgodoy2023 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-882694329) at 2021-07-19 09:39 AM PDT -mgodoy2023,2021-07-19T18:34:57Z,- mgodoy2023 commented on pull request: [1949](https://github.com/hackforla/website/pull/1949#issuecomment-882769248) at 2021-07-19 11:34 AM PDT -mgodoy2023,2021-07-19T19:52:44Z,- mgodoy2023 pull request merged: [1949](https://github.com/hackforla/website/pull/1949#event-5040452919) at 2021-07-19 12:52 PM PDT -mgodoy2023,2021-07-20T19:40:11Z,- mgodoy2023 assigned to issue: [1977](https://github.com/hackforla/website/issues/1977) at 2021-07-20 12:40 PM PDT -mgodoy2023,2021-07-25T20:41:58Z,- mgodoy2023 unassigned from issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255133) at 2021-07-25 01:41 PM PDT -mgodoy2023,2021-07-26T16:11:10Z,- mgodoy2023 assigned to issue: [1974](https://github.com/hackforla/website/issues/1974) at 2021-07-26 09:11 AM PDT -mgodoy2023,2021-08-02T18:26:40Z,- mgodoy2023 opened pull request: [2035](https://github.com/hackforla/website/pull/2035) at 2021-08-02 11:26 AM PDT -mgodoy2023,2021-08-04T06:49:15Z,- mgodoy2023 submitted pull request review: [2028](https://github.com/hackforla/website/pull/2028#pullrequestreview-721918874) at 2021-08-03 11:49 PM PDT -mgodoy2023,2021-08-05T15:08:09Z,- mgodoy2023 pull request merged: [2035](https://github.com/hackforla/website/pull/2035#event-5118110001) at 2021-08-05 08:08 AM PDT -mgodoy2023,2021-08-29T20:49:36Z,- mgodoy2023 opened issue: [2203](https://github.com/hackforla/website/issues/2203) at 2021-08-29 01:49 PM PDT -MHamza-Aslam,2023-11-25T17:04:20Z,- MHamza-Aslam commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1826378127) at 2023-11-25 09:04 AM PST -MHamza-Aslam,2023-11-26T21:03:16Z,- MHamza-Aslam commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1826895845) at 2023-11-26 01:03 PM PST -MicahBear,3992,SKILLS ISSUE -MicahBear,2023-02-17T03:19:14Z,- MicahBear opened issue: [3992](https://github.com/hackforla/website/issues/3992) at 2023-02-16 07:19 PM PST -MicahBear,2023-02-17T03:19:21Z,- MicahBear assigned to issue: [3992](https://github.com/hackforla/website/issues/3992) at 2023-02-16 07:19 PM PST -MicahBear,2023-02-21T23:31:48Z,- MicahBear assigned to issue: [3986](https://github.com/hackforla/website/issues/3986) at 2023-02-21 03:31 PM PST -MicahBear,2023-02-21T23:35:28Z,- MicahBear commented on issue: [3986](https://github.com/hackforla/website/issues/3986#issuecomment-1439229049) at 2023-02-21 03:35 PM PST -MicahBear,2023-02-22T01:01:27Z,- MicahBear opened pull request: [4021](https://github.com/hackforla/website/pull/4021) at 2023-02-21 05:01 PM PST -MicahBear,2023-02-22T01:41:02Z,- MicahBear commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1439317664) at 2023-02-21 05:41 PM PST -MicahBear,2023-02-22T01:41:25Z,- MicahBear closed issue as completed: [3992](https://github.com/hackforla/website/issues/3992#event-8576332931) at 2023-02-21 05:41 PM PST -MicahBear,2023-02-23T01:46:55Z,- MicahBear commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1441120467) at 2023-02-22 05:46 PM PST -MicahBear,2023-02-23T02:52:43Z,- MicahBear opened issue: [4024](https://github.com/hackforla/website/issues/4024) at 2023-02-22 06:52 PM PST -MicahBear,2023-02-23T02:59:50Z,- MicahBear opened issue: [4025](https://github.com/hackforla/website/issues/4025) at 2023-02-22 06:59 PM PST -MicahBear,2023-02-23T03:10:55Z,- MicahBear commented on issue: [4024](https://github.com/hackforla/website/issues/4024#issuecomment-1441162142) at 2023-02-22 07:10 PM PST -MicahBear,2023-02-23T03:10:55Z,- MicahBear closed issue as not planned: [4024](https://github.com/hackforla/website/issues/4024#event-8587288233) at 2023-02-22 07:10 PM PST -MicahBear,2023-02-23T22:31:17Z,- MicahBear commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1442516748) at 2023-02-23 02:31 PM PST -MicahBear,2023-02-23T23:47:19Z,- MicahBear pull request merged: [4021](https://github.com/hackforla/website/pull/4021#event-8596893446) at 2023-02-23 03:47 PM PST -MicahBear,2023-02-28T23:27:50Z,- MicahBear assigned to issue: [4041](https://github.com/hackforla/website/issues/4041) at 2023-02-28 03:27 PM PST -MicahBear,2023-03-01T01:11:17Z,- MicahBear opened issue: [4059](https://github.com/hackforla/website/issues/4059) at 2023-02-28 05:11 PM PST -MicahBear,2023-03-02T22:50:03Z,- MicahBear commented on issue: [4041](https://github.com/hackforla/website/issues/4041#issuecomment-1452672311) at 2023-03-02 02:50 PM PST -MicahBear,2023-03-06T17:17:32Z,- MicahBear commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1456562819) at 2023-03-06 09:17 AM PST -MicahBear,2023-03-06T17:54:29Z,- MicahBear opened pull request: [4119](https://github.com/hackforla/website/pull/4119) at 2023-03-06 09:54 AM PST -MicahBear,2023-03-09T23:35:15Z,- MicahBear pull request merged: [4119](https://github.com/hackforla/website/pull/4119#event-8713373795) at 2023-03-09 03:35 PM PST -MicahBear,2023-03-31T12:56:31Z,- MicahBear commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1491885748) at 2023-03-31 05:56 AM PDT -MicahBear,2023-03-31T12:56:31Z,- MicahBear closed issue as completed: [3992](https://github.com/hackforla/website/issues/3992#event-8897778045) at 2023-03-31 05:56 AM PDT -MicahBear,2023-11-02T06:10:55Z,- MicahBear opened issue: [5825](https://github.com/hackforla/website/issues/5825) at 2023-11-01 11:10 PM PDT -MicahBear,2023-11-29T05:05:52Z,- MicahBear commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1831229745) at 2023-11-28 09:05 PM PST -MicahBear,2024-01-04T19:24:41Z,- MicahBear opened issue: [6060](https://github.com/hackforla/website/issues/6060) at 2024-01-04 11:24 AM PST -MicahBear,2024-01-21T15:21:50Z,- MicahBear commented on issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1902669287) at 2024-01-21 07:21 AM PST -michael-4,8006,SKILLS ISSUE -michael-4,2025-03-19T03:24:03Z,- michael-4 opened issue: [8006](https://github.com/hackforla/website/issues/8006) at 2025-03-18 08:24 PM PDT -michael-4,2025-03-19T03:24:17Z,- michael-4 assigned to issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2735225679) at 2025-03-18 08:24 PM PDT -michael-4,2025-03-28T20:59:48Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2762498414) at 2025-03-28 01:59 PM PDT -michael-4,2025-03-29T00:50:29Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2762950208) at 2025-03-28 05:50 PM PDT -michael-4,2025-04-03T22:53:16Z,- michael-4 assigned to issue: [7483](https://github.com/hackforla/website/issues/7483) at 2025-04-03 03:53 PM PDT -michael-4,2025-04-07T01:00:46Z,- michael-4 commented on issue: [7483](https://github.com/hackforla/website/issues/7483#issuecomment-2781787175) at 2025-04-06 06:00 PM PDT -michael-4,2025-04-07T01:01:58Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2781788230) at 2025-04-06 06:01 PM PDT -michael-4,2025-04-07T01:02:47Z,- michael-4 commented on issue: [7483](https://github.com/hackforla/website/issues/7483#issuecomment-2781788933) at 2025-04-06 06:02 PM PDT -michael-4,2025-04-07T01:03:22Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2781789443) at 2025-04-06 06:03 PM PDT -michael-4,2025-04-17T23:56:15Z,- michael-4 opened pull request: [8071](https://github.com/hackforla/website/pull/8071) at 2025-04-17 04:56 PM PDT -michael-4,2025-04-22T20:33:39Z,- michael-4 commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2822422575) at 2025-04-22 01:33 PM PDT -michael-4,2025-04-22T20:36:35Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2822428588) at 2025-04-22 01:36 PM PDT -michael-4,2025-04-22T20:41:35Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2822438606) at 2025-04-22 01:41 PM PDT -michael-4,2025-05-04T23:09:26Z,- michael-4 commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2849488557) at 2025-05-04 04:09 PM PDT -michael-4,2025-05-09T20:36:33Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2867823065) at 2025-05-09 01:36 PM PDT -michael-4,2025-05-13T23:40:06Z,- michael-4 opened pull request: [8127](https://github.com/hackforla/website/pull/8127) at 2025-05-13 04:40 PM PDT -michael-4,2025-05-13T23:41:40Z,- michael-4 pull request closed w/o merging: [8071](https://github.com/hackforla/website/pull/8071#event-17643987953) at 2025-05-13 04:41 PM PDT -michael-4,2025-05-13T23:43:57Z,- michael-4 commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2878195746) at 2025-05-13 04:43 PM PDT -michael-4,2025-05-15T18:23:32Z,- michael-4 commented on pull request: [8127](https://github.com/hackforla/website/pull/8127#issuecomment-2884708770) at 2025-05-15 11:23 AM PDT -michael-4,2025-05-15T18:26:19Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2884715599) at 2025-05-15 11:26 AM PDT -michael-4,2025-05-15T23:12:49Z,- michael-4 pull request merged: [8127](https://github.com/hackforla/website/pull/8127#event-17680329310) at 2025-05-15 04:12 PM PDT -michael-4,2025-05-20T19:29:20Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2895622049) at 2025-05-20 12:29 PM PDT -michael-4,2025-05-20T20:39:43Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2895777847) at 2025-05-20 01:39 PM PDT -michael-4,2025-05-20T20:45:02Z,- michael-4 assigned to issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895372016) at 2025-05-20 01:45 PM PDT -michael-4,2025-05-20T22:54:33Z,- michael-4 opened pull request: [8149](https://github.com/hackforla/website/pull/8149) at 2025-05-20 03:54 PM PDT -michael-4,2025-05-23T19:34:20Z,- michael-4 commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2905593325) at 2025-05-23 12:34 PM PDT -michael-4,2025-05-23T21:05:26Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2905818008) at 2025-05-23 02:05 PM PDT -michael-4,2025-05-30T22:45:45Z,- michael-4 commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2923671526) at 2025-05-30 03:45 PM PDT -michael-4,2025-05-30T23:52:50Z,- michael-4 commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2923747761) at 2025-05-30 04:52 PM PDT -michael-4,2025-06-01T16:19:17Z,- michael-4 pull request merged: [8149](https://github.com/hackforla/website/pull/8149#event-17915651239) at 2025-06-01 09:19 AM PDT -michael-4,2025-06-06T18:10:04Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2950052083) at 2025-06-06 11:10 AM PDT -michael-4,2025-06-06T18:11:17Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2950054694) at 2025-06-06 11:11 AM PDT -michael-4,2025-06-12T21:54:35Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2968257688) at 2025-06-12 02:54 PM PDT -michael-4,2025-06-12T22:16:54Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2968306965) at 2025-06-12 03:16 PM PDT -michael-4,2025-06-18T00:48:50Z,- michael-4 assigned to issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2953376564) at 2025-06-17 05:48 PM PDT -michaelmagen,3569,SKILLS ISSUE -michaelmagen,2022-09-21T03:10:42Z,- michaelmagen opened issue: [3569](https://github.com/hackforla/website/issues/3569) at 2022-09-20 08:10 PM PDT -michaelmagen,2022-09-21T03:13:44Z,- michaelmagen assigned to issue: [3569](https://github.com/hackforla/website/issues/3569) at 2022-09-20 08:13 PM PDT -michaelmagen,2022-09-21T03:26:23Z,- michaelmagen assigned to issue: [2842](https://github.com/hackforla/website/issues/2842#issuecomment-1048140042) at 2022-09-20 08:26 PM PDT -michaelmagen,2022-09-21T03:27:37Z,- michaelmagen commented on issue: [2842](https://github.com/hackforla/website/issues/2842#issuecomment-1253159247) at 2022-09-20 08:27 PM PDT -michaelmagen,2022-09-23T02:40:09Z,- michaelmagen commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1255743483) at 2022-09-22 07:40 PM PDT -michaelmagen,2022-09-23T02:57:48Z,- michaelmagen opened pull request: [3576](https://github.com/hackforla/website/pull/3576) at 2022-09-22 07:57 PM PDT -michaelmagen,2022-09-24T00:34:34Z,- michaelmagen pull request merged: [3576](https://github.com/hackforla/website/pull/3576#event-7451027780) at 2022-09-23 05:34 PM PDT -michaelmagen,2022-09-28T19:56:41Z,- michaelmagen assigned to issue: [3195](https://github.com/hackforla/website/issues/3195#issuecomment-1145795512) at 2022-09-28 12:56 PM PDT -michaelmagen,2022-09-28T19:58:04Z,- michaelmagen commented on issue: [3195](https://github.com/hackforla/website/issues/3195#issuecomment-1261402303) at 2022-09-28 12:58 PM PDT -michaelmagen,2022-09-28T20:18:50Z,- michaelmagen opened pull request: [3588](https://github.com/hackforla/website/pull/3588) at 2022-09-28 01:18 PM PDT -michaelmagen,2022-09-30T01:37:15Z,- michaelmagen pull request merged: [3588](https://github.com/hackforla/website/pull/3588#event-7491440660) at 2022-09-29 06:37 PM PDT -michaelmagen,2022-10-02T16:59:07Z,- michaelmagen assigned to issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1236222938) at 2022-10-02 09:59 AM PDT -michaelmagen,2022-10-02T17:01:39Z,- michaelmagen commented on issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1264688439) at 2022-10-02 10:01 AM PDT -michaelmagen,2022-10-04T01:40:35Z,- michaelmagen opened pull request: [3599](https://github.com/hackforla/website/pull/3599) at 2022-10-03 06:40 PM PDT -michaelmagen,2022-10-07T21:37:36Z,- michaelmagen pull request merged: [3599](https://github.com/hackforla/website/pull/3599#event-7546732083) at 2022-10-07 02:37 PM PDT -michaelmagen,2022-10-13T17:27:11Z,- michaelmagen assigned to issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1019554588) at 2022-10-13 10:27 AM PDT -michaelmagen,2022-10-13T17:28:33Z,- michaelmagen commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1277948023) at 2022-10-13 10:28 AM PDT -michaelmagen,2022-10-20T23:47:36Z,- michaelmagen commented on pull request: [3645](https://github.com/hackforla/website/pull/3645#issuecomment-1286282499) at 2022-10-20 04:47 PM PDT -michaelmagen,2022-10-20T23:59:00Z,- michaelmagen submitted pull request review: [3645](https://github.com/hackforla/website/pull/3645#pullrequestreview-1150143398) at 2022-10-20 04:59 PM PDT -michaelmagen,2022-10-24T23:44:44Z,- michaelmagen commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1289786682) at 2022-10-24 04:44 PM PDT -michaelmagen,2022-10-25T02:05:18Z,- michaelmagen opened pull request: [3656](https://github.com/hackforla/website/pull/3656) at 2022-10-24 07:05 PM PDT -michaelmagen,2022-10-25T21:36:00Z,- michaelmagen commented on pull request: [3655](https://github.com/hackforla/website/pull/3655#issuecomment-1291169924) at 2022-10-25 02:36 PM PDT -michaelmagen,2022-10-25T21:41:50Z,- michaelmagen submitted pull request review: [3655](https://github.com/hackforla/website/pull/3655#pullrequestreview-1155534887) at 2022-10-25 02:41 PM PDT -michaelmagen,2022-10-26T03:02:08Z,- michaelmagen pull request merged: [3656](https://github.com/hackforla/website/pull/3656#event-7668727046) at 2022-10-25 08:02 PM PDT -michaelmagen,2022-11-01T02:29:08Z,- michaelmagen assigned to issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1280000156) at 2022-10-31 07:29 PM PDT -michaelmagen,2022-11-01T02:30:12Z,- michaelmagen commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1297937887) at 2022-10-31 07:30 PM PDT -michaelmagen,2022-11-11T20:54:35Z,- michaelmagen commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1312184178) at 2022-11-11 12:54 PM PST -michaelmagen,2022-11-11T20:55:34Z,- michaelmagen commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1312184859) at 2022-11-11 12:55 PM PST -michaelmagen,2022-11-16T03:55:25Z,- michaelmagen commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1316290366) at 2022-11-15 07:55 PM PST -michaelmagen,2022-11-16T19:38:09Z,- michaelmagen opened pull request: [3726](https://github.com/hackforla/website/pull/3726) at 2022-11-16 11:38 AM PST -michaelmagen,2022-11-17T23:34:59Z,- michaelmagen commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1319349730) at 2022-11-17 03:34 PM PST -michaelmagen,2022-11-26T18:43:10Z,- michaelmagen pull request merged: [3726](https://github.com/hackforla/website/pull/3726#event-7896601931) at 2022-11-26 10:43 AM PST -michaelmagen,2022-11-28T21:56:46Z,- michaelmagen commented on pull request: [3752](https://github.com/hackforla/website/pull/3752#issuecomment-1329807214) at 2022-11-28 01:56 PM PST -michaelmagen,2022-11-28T23:03:40Z,- michaelmagen submitted pull request review: [3752](https://github.com/hackforla/website/pull/3752#pullrequestreview-1196670161) at 2022-11-28 03:03 PM PST -michelle-jx,5861,SKILLS ISSUE -michelle-jx,2023-11-07T03:40:21Z,- michelle-jx opened issue: [5861](https://github.com/hackforla/website/issues/5861) at 2023-11-06 07:40 PM PST -michelle-jx,2023-11-07T03:45:23Z,- michelle-jx assigned to issue: [5861](https://github.com/hackforla/website/issues/5861) at 2023-11-06 07:45 PM PST -midsane,2024-02-18T14:33:52Z,- midsane opened pull request: [6316](https://github.com/hackforla/website/pull/6316) at 2024-02-18 06:33 AM PST -midsane,2024-02-19T05:02:24Z,- midsane pull request closed w/o merging: [6316](https://github.com/hackforla/website/pull/6316#event-11844235513) at 2024-02-18 09:02 PM PST -MihirRajChowdhury,2024-08-16T13:07:16Z,- MihirRajChowdhury opened pull request: [7303](https://github.com/hackforla/website/pull/7303) at 2024-08-16 06:07 AM PDT -MihirRajChowdhury,2024-08-16T16:29:06Z,- MihirRajChowdhury pull request closed w/o merging: [7303](https://github.com/hackforla/website/pull/7303#event-13912894838) at 2024-08-16 09:29 AM PDT -miikaran,2021-11-03T12:29:00Z,- miikaran opened pull request: [2440](https://github.com/hackforla/website/pull/2440) at 2021-11-03 05:29 AM PDT -miikaran,2021-11-03T15:32:46Z,- miikaran pull request closed w/o merging: [2440](https://github.com/hackforla/website/pull/2440#event-5562863250) at 2021-11-03 08:32 AM PDT -mimiwrp,7028,SKILLS ISSUE -mimiwrp,2024-06-19T03:10:25Z,- mimiwrp opened issue: [7028](https://github.com/hackforla/website/issues/7028) at 2024-06-18 08:10 PM PDT -mimiwrp,2024-06-19T03:10:37Z,- mimiwrp assigned to issue: [7028](https://github.com/hackforla/website/issues/7028) at 2024-06-18 08:10 PM PDT -mimiwrp,2024-06-20T22:34:43Z,- mimiwrp assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2177248348) at 2024-06-20 03:34 PM PDT -mimiwrp,2024-06-21T18:25:28Z,- mimiwrp unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2181660349) at 2024-06-21 11:25 AM PDT -mimiwrp,2024-06-22T03:58:26Z,- mimiwrp assigned to issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183288173) at 2024-06-21 08:58 PM PDT -mimiwrp,2024-06-22T04:04:25Z,- mimiwrp commented on issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183768921) at 2024-06-21 09:04 PM PDT -mimiwrp,2024-07-02T00:51:28Z,- mimiwrp unassigned from issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183768921) at 2024-07-01 05:51 PM PDT -mimiwrp,2024-07-08T22:51:57Z,- mimiwrp commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2215481768) at 2024-07-08 03:51 PM PDT -mimiwrp,2024-07-08T22:55:10Z,- mimiwrp assigned to issue: [7048](https://github.com/hackforla/website/issues/7048#event-13358067050) at 2024-07-08 03:55 PM PDT -mimiwrp,2024-07-08T22:55:59Z,- mimiwrp unassigned from issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2215484913) at 2024-07-08 03:55 PM PDT -mimiwrp,2024-08-09T21:02:09Z,- mimiwrp commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2278752236) at 2024-08-09 02:02 PM PDT -mimiwrp,2024-08-09T21:03:47Z,- mimiwrp assigned to issue: [7241](https://github.com/hackforla/website/issues/7241) at 2024-08-09 02:03 PM PDT -mimiwrp,2024-08-09T21:07:05Z,- mimiwrp commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2278757779) at 2024-08-09 02:07 PM PDT -mimiwrp,2024-08-30T09:13:16Z,- mimiwrp opened pull request: [7368](https://github.com/hackforla/website/pull/7368) at 2024-08-30 02:13 AM PDT -mimiwrp,2024-08-30T09:17:38Z,- mimiwrp commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2320611679) at 2024-08-30 02:17 AM PDT -mimiwrp,2024-08-30T09:21:32Z,- mimiwrp commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2320620939) at 2024-08-30 02:21 AM PDT -mimiwrp,2024-09-05T06:46:11Z,- mimiwrp commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2330729643) at 2024-09-04 11:46 PM PDT -mimiwrp,2024-09-05T18:14:14Z,- mimiwrp commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2332361386) at 2024-09-05 11:14 AM PDT -mimiwrp,2024-09-09T03:28:07Z,- mimiwrp pull request merged: [7368](https://github.com/hackforla/website/pull/7368#event-14176402027) at 2024-09-08 08:28 PM PDT -minar68,2021-08-10T20:09:47Z,- minar68 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-896285828) at 2021-08-10 01:09 PM PDT -minkang3,7216,SKILLS ISSUE -minkang3,2024-08-06T03:47:33Z,- minkang3 opened issue: [7216](https://github.com/hackforla/website/issues/7216) at 2024-08-05 08:47 PM PDT -minkang3,2024-08-06T03:47:39Z,- minkang3 assigned to issue: [7216](https://github.com/hackforla/website/issues/7216) at 2024-08-05 08:47 PM PDT -minkang3,2024-08-06T05:05:41Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2270391263) at 2024-08-05 10:05 PM PDT -minkang3,2024-08-07T02:54:50Z,- minkang3 assigned to issue: [7174](https://github.com/hackforla/website/issues/7174) at 2024-08-06 07:54 PM PDT -minkang3,2024-08-07T02:59:18Z,- minkang3 commented on issue: [7174](https://github.com/hackforla/website/issues/7174#issuecomment-2272522820) at 2024-08-06 07:59 PM PDT -minkang3,2024-08-07T03:24:40Z,- minkang3 opened pull request: [7234](https://github.com/hackforla/website/pull/7234) at 2024-08-06 08:24 PM PDT -minkang3,2024-08-08T02:56:32Z,- minkang3 commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2274857776) at 2024-08-07 07:56 PM PDT -minkang3,2024-08-08T03:01:25Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274861468) at 2024-08-07 08:01 PM PDT -minkang3,2024-08-08T03:02:03Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274862003) at 2024-08-07 08:02 PM PDT -minkang3,2024-08-08T03:03:23Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274863059) at 2024-08-07 08:03 PM PDT -minkang3,2024-08-08T03:05:15Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274864615) at 2024-08-07 08:05 PM PDT -minkang3,2024-08-08T03:06:17Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274865457) at 2024-08-07 08:06 PM PDT -minkang3,2024-08-08T03:13:14Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274871205) at 2024-08-07 08:13 PM PDT -minkang3,2024-08-08T03:17:01Z,- minkang3 assigned to issue: [7177](https://github.com/hackforla/website/issues/7177) at 2024-08-07 08:17 PM PDT -minkang3,2024-08-08T03:17:18Z,- minkang3 unassigned from issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2274874337) at 2024-08-07 08:17 PM PDT -minkang3,2024-08-14T02:35:20Z,- minkang3 pull request merged: [7234](https://github.com/hackforla/website/pull/7234#event-13873523194) at 2024-08-13 07:35 PM PDT -minkang3,2024-08-14T02:45:41Z,- minkang3 commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2287730102) at 2024-08-13 07:45 PM PDT -minkang3,2024-08-14T02:49:12Z,- minkang3 submitted pull request review: [7271](https://github.com/hackforla/website/pull/7271#pullrequestreview-2237062048) at 2024-08-13 07:49 PM PDT -minkang3,2024-08-15T19:56:11Z,- minkang3 assigned to issue: [7250](https://github.com/hackforla/website/issues/7250) at 2024-08-15 12:56 PM PDT -minkang3,2024-08-15T20:00:15Z,- minkang3 commented on issue: [7250](https://github.com/hackforla/website/issues/7250#issuecomment-2292102482) at 2024-08-15 01:00 PM PDT -minkang3,2024-08-15T20:17:07Z,- minkang3 opened pull request: [7297](https://github.com/hackforla/website/pull/7297) at 2024-08-15 01:17 PM PDT -minkang3,2024-08-15T20:25:49Z,- minkang3 pull request closed w/o merging: [7297](https://github.com/hackforla/website/pull/7297#event-13902137526) at 2024-08-15 01:25 PM PDT -minkang3,2024-08-15T20:47:04Z,- minkang3 opened pull request: [7299](https://github.com/hackforla/website/pull/7299) at 2024-08-15 01:47 PM PDT -minkang3,2024-08-18T04:25:58Z,- minkang3 pull request merged: [7299](https://github.com/hackforla/website/pull/7299#event-13921141785) at 2024-08-17 09:25 PM PDT -minkang3,2024-08-18T18:30:42Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2295350699) at 2024-08-18 11:30 AM PDT -minkang3,2024-08-18T18:35:48Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2295351931) at 2024-08-18 11:35 AM PDT -minkang3,2024-08-21T18:40:55Z,- minkang3 commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2302728814) at 2024-08-21 11:40 AM PDT -minkang3,2024-08-21T18:52:39Z,- minkang3 submitted pull request review: [7298](https://github.com/hackforla/website/pull/7298#pullrequestreview-2251641398) at 2024-08-21 11:52 AM PDT -minkang3,2024-08-21T18:54:45Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302751791) at 2024-08-21 11:54 AM PDT -minkang3,2024-08-21T19:02:06Z,- minkang3 submitted pull request review: [7309](https://github.com/hackforla/website/pull/7309#pullrequestreview-2251691270) at 2024-08-21 12:02 PM PDT -minkang3,2024-08-21T19:03:03Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302780698) at 2024-08-21 12:03 PM PDT -minkang3,2024-08-21T19:06:09Z,- minkang3 commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2302792499) at 2024-08-21 12:06 PM PDT -minkang3,2024-08-21T19:09:36Z,- minkang3 submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2251725464) at 2024-08-21 12:09 PM PDT -minkang3,2024-08-21T19:10:29Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302809429) at 2024-08-21 12:10 PM PDT -minkang3,2024-08-21T19:13:58Z,- minkang3 commented on pull request: [7306](https://github.com/hackforla/website/pull/7306#issuecomment-2302824083) at 2024-08-21 12:13 PM PDT -minkang3,2024-08-21T19:17:14Z,- minkang3 submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2251753849) at 2024-08-21 12:17 PM PDT -minkang3,2024-08-21T19:18:20Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302840505) at 2024-08-21 12:18 PM PDT -minkang3,2024-08-21T19:22:24Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302850698) at 2024-08-21 12:22 PM PDT -minkang3,2024-08-21T20:32:01Z,- minkang3 submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2251892719) at 2024-08-21 01:32 PM PDT -minkang3,2024-09-02T02:41:29Z,- minkang3 submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2274591354) at 2024-09-01 07:41 PM PDT -minkang3,2024-10-01T14:48:29Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2386215095) at 2024-10-01 07:48 AM PDT -minkang3,2024-10-01T14:51:51Z,- minkang3 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386185462) at 2024-10-01 07:51 AM PDT -minkang3,2024-10-01T14:55:13Z,- minkang3 commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386232363) at 2024-10-01 07:55 AM PDT -minkang3,2024-10-01T15:20:19Z,- minkang3 opened pull request: [7554](https://github.com/hackforla/website/pull/7554) at 2024-10-01 08:20 AM PDT -minkang3,2024-10-03T23:30:25Z,- minkang3 pull request merged: [7554](https://github.com/hackforla/website/pull/7554#event-14511321865) at 2024-10-03 04:30 PM PDT -minkang3,2024-10-10T15:18:30Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2405415509) at 2024-10-10 08:18 AM PDT -minkang3,2024-10-24T19:20:07Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2436168832) at 2024-10-24 12:20 PM PDT -minkang3,2024-11-13T18:36:16Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2474438238) at 2024-11-13 10:36 AM PST -minkang3,2024-11-26T18:38:20Z,- minkang3 submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462414921) at 2024-11-26 10:38 AM PST -minkang3,2024-12-09T21:16:13Z,- minkang3 commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2529497259) at 2024-12-09 01:16 PM PST -minkang3,2024-12-09T21:19:08Z,- minkang3 submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2490112675) at 2024-12-09 01:19 PM PST -mioriimai,5348,SKILLS ISSUE -mioriimai,2023-08-30T03:36:54Z,- mioriimai opened issue: [5348](https://github.com/hackforla/website/issues/5348) at 2023-08-29 08:36 PM PDT -mioriimai,2023-08-30T03:57:47Z,- mioriimai assigned to issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1698438924) at 2023-08-29 08:57 PM PDT -mioriimai,2023-09-12T20:54:40Z,- mioriimai commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1716418012) at 2023-09-12 01:54 PM PDT -MitchellMaliglig,4615,SKILLS ISSUE -MitchellMaliglig,2023-05-09T03:24:11Z,- MitchellMaliglig opened issue: [4615](https://github.com/hackforla/website/issues/4615) at 2023-05-08 08:24 PM PDT -MitchellMaliglig,2023-05-09T03:46:30Z,- MitchellMaliglig assigned to issue: [4615](https://github.com/hackforla/website/issues/4615) at 2023-05-08 08:46 PM PDT -mjh-projects,3911,SKILLS ISSUE -mjh-projects,2023-02-01T04:58:21Z,- mjh-projects opened issue: [3911](https://github.com/hackforla/website/issues/3911) at 2023-01-31 08:58 PM PST -mjh-projects,2023-02-01T04:58:32Z,- mjh-projects assigned to issue: [3911](https://github.com/hackforla/website/issues/3911) at 2023-01-31 08:58 PM PST -mjh-projects,2023-02-02T07:27:41Z,- mjh-projects assigned to issue: [3893](https://github.com/hackforla/website/issues/3893#issuecomment-1411478803) at 2023-02-01 11:27 PM PST -mjh-projects,2023-02-02T07:32:50Z,- mjh-projects commented on issue: [3893](https://github.com/hackforla/website/issues/3893#issuecomment-1413272766) at 2023-02-01 11:32 PM PST -mjh-projects,2023-02-02T09:47:07Z,- mjh-projects opened pull request: [3924](https://github.com/hackforla/website/pull/3924) at 2023-02-02 01:47 AM PST -mjh-projects,2023-02-02T10:00:00Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1413458093) at 2023-02-02 02:00 AM PST -mjh-projects,2023-02-02T10:33:01Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1413517723) at 2023-02-02 02:33 AM PST -mjh-projects,2023-02-04T22:57:14Z,- mjh-projects pull request merged: [3924](https://github.com/hackforla/website/pull/3924#event-8439314337) at 2023-02-04 02:57 PM PST -mjh-projects,2023-02-08T02:17:00Z,- mjh-projects commented on pull request: [3940](https://github.com/hackforla/website/pull/3940#issuecomment-1421881393) at 2023-02-07 06:17 PM PST -mjh-projects,2023-02-08T04:20:58Z,- mjh-projects submitted pull request review: [3940](https://github.com/hackforla/website/pull/3940#pullrequestreview-1288439918) at 2023-02-07 08:20 PM PST -mjh-projects,2023-02-10T03:02:51Z,- mjh-projects closed issue as completed: [3115](https://github.com/hackforla/website/issues/3115#event-8485622225) at 2023-02-09 07:02 PM PST -mjh-projects,2023-02-10T03:03:14Z,- mjh-projects reopened issue: [3115](https://github.com/hackforla/website/issues/3115#event-8485622225) at 2023-02-09 07:03 PM PST -mjh-projects,2023-02-13T20:27:19Z,- mjh-projects closed issue as completed: [3911](https://github.com/hackforla/website/issues/3911#event-8508606990) at 2023-02-13 12:27 PM PST -mjh-projects,2023-02-13T20:34:58Z,- mjh-projects assigned to issue: [3950](https://github.com/hackforla/website/issues/3950) at 2023-02-13 12:34 PM PST -mjh-projects,2023-02-13T20:38:15Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1428648244) at 2023-02-13 12:38 PM PST -mjh-projects,2023-02-19T20:30:53Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1436085969) at 2023-02-19 12:30 PM PST -mjh-projects,2023-02-26T12:55:35Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1445354624) at 2023-02-26 04:55 AM PST -mjh-projects,2023-02-26T13:03:53Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1445356749) at 2023-02-26 05:03 AM PST -mjh-projects,2023-02-26T13:14:33Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1445359370) at 2023-02-26 05:14 AM PST -mjh-projects,2023-02-26T13:14:34Z,- mjh-projects closed issue as completed: [3911](https://github.com/hackforla/website/issues/3911#event-8609503758) at 2023-02-26 05:14 AM PST -mjh-projects,2023-03-17T02:30:20Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1473024302) at 2023-03-16 07:30 PM PDT -mjh-projects,2023-03-17T02:50:54Z,- mjh-projects opened pull request: [4199](https://github.com/hackforla/website/pull/4199) at 2023-03-16 07:50 PM PDT -mjh-projects,2023-03-19T04:02:40Z,- mjh-projects pull request merged: [4199](https://github.com/hackforla/website/pull/4199#event-8786874986) at 2023-03-18 09:02 PM PDT -mjh-projects,2023-03-22T17:36:08Z,- mjh-projects commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1479992756) at 2023-03-22 10:36 AM PDT -mjh-projects,2023-03-22T17:37:08Z,- mjh-projects submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1353157117) at 2023-03-22 10:37 AM PDT -mjh-projects,2023-03-27T17:11:55Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1485528349) at 2023-03-27 10:11 AM PDT -mjh-projects,2023-03-27T17:16:26Z,- mjh-projects assigned to issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1483980811) at 2023-03-27 10:16 AM PDT -mjh-projects,2023-03-27T17:16:54Z,- mjh-projects commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1485534817) at 2023-03-27 10:16 AM PDT -mjh-projects,2023-03-29T09:48:50Z,- mjh-projects opened pull request: [4340](https://github.com/hackforla/website/pull/4340) at 2023-03-29 02:48 AM PDT -mjh-projects,2023-03-29T17:58:04Z,- mjh-projects commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1489056432) at 2023-03-29 10:58 AM PDT -mjh-projects,2023-03-29T19:31:13Z,- mjh-projects commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1489185352) at 2023-03-29 12:31 PM PDT -mjh-projects,2023-03-29T19:35:49Z,- mjh-projects submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1363818930) at 2023-03-29 12:35 PM PDT -mjh-projects,2023-03-29T23:08:12Z,- mjh-projects closed issue as completed: [3229](https://github.com/hackforla/website/issues/3229#event-8881565996) at 2023-03-29 04:08 PM PDT -mjh-projects,2023-03-29T23:26:14Z,- mjh-projects reopened issue: [3229](https://github.com/hackforla/website/issues/3229#event-8881565996) at 2023-03-29 04:26 PM PDT -mjh-projects,2023-04-03T02:24:48Z,- mjh-projects pull request merged: [4340](https://github.com/hackforla/website/pull/4340#event-8907819991) at 2023-04-02 07:24 PM PDT -mjh-projects,2023-04-03T22:49:29Z,- mjh-projects commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1495085332) at 2023-04-03 03:49 PM PDT -mjh-projects,2023-04-05T16:28:38Z,- mjh-projects commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1497784958) at 2023-04-05 09:28 AM PDT -mjh-projects,2023-04-05T16:29:57Z,- mjh-projects submitted pull request review: [4386](https://github.com/hackforla/website/pull/4386#pullrequestreview-1373290464) at 2023-04-05 09:29 AM PDT -mjh-projects,2023-04-05T22:06:52Z,- mjh-projects commented on pull request: [4412](https://github.com/hackforla/website/pull/4412#issuecomment-1498217649) at 2023-04-05 03:06 PM PDT -mjh-projects,2023-04-07T19:13:21Z,- mjh-projects assigned to issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1493490600) at 2023-04-07 12:13 PM PDT -mjh-projects,2023-04-07T19:14:56Z,- mjh-projects commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1500565112) at 2023-04-07 12:14 PM PDT -mjh-projects,2023-04-12T03:19:46Z,- mjh-projects opened issue: [4489](https://github.com/hackforla/website/issues/4489) at 2023-04-11 08:19 PM PDT -mjh-projects,2023-04-19T01:10:41Z,- mjh-projects commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1513993276) at 2023-04-18 06:10 PM PDT -mjh-projects,2023-04-19T01:13:05Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1513995172) at 2023-04-18 06:13 PM PDT -mjh-projects,2023-04-25T19:04:21Z,- mjh-projects commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1522277064) at 2023-04-25 12:04 PM PDT -mjh-projects,2023-05-15T03:24:23Z,- mjh-projects unassigned from issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1547138979) at 2023-05-14 08:24 PM PDT -mjshelton12,4163,SKILLS ISSUE -mjshelton12,2023-03-14T03:04:51Z,- mjshelton12 opened issue: [4163](https://github.com/hackforla/website/issues/4163) at 2023-03-13 08:04 PM PDT -mjshelton12,2023-03-14T03:10:45Z,- mjshelton12 assigned to issue: [4163](https://github.com/hackforla/website/issues/4163) at 2023-03-13 08:10 PM PDT -mjshelton12,2023-03-18T03:20:55Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1474659029) at 2023-03-17 08:20 PM PDT -mjshelton12,2023-03-18T23:38:43Z,- mjshelton12 assigned to issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1425070509) at 2023-03-18 04:38 PM PDT -mjshelton12,2023-03-19T00:14:52Z,- mjshelton12 commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1475042456) at 2023-03-18 05:14 PM PDT -mjshelton12,2023-03-19T01:45:30Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1475064805) at 2023-03-18 06:45 PM PDT -mjshelton12,2023-03-19T02:00:40Z,- mjshelton12 opened pull request: [4210](https://github.com/hackforla/website/pull/4210) at 2023-03-18 07:00 PM PDT -mjshelton12,2023-03-19T19:48:22Z,- mjshelton12 commented on pull request: [4203](https://github.com/hackforla/website/pull/4203#issuecomment-1475378919) at 2023-03-19 12:48 PM PDT -mjshelton12,2023-03-19T22:33:57Z,- mjshelton12 submitted pull request review: [4203](https://github.com/hackforla/website/pull/4203#pullrequestreview-1347594009) at 2023-03-19 03:33 PM PDT -mjshelton12,2023-03-20T00:28:24Z,- mjshelton12 commented on pull request: [4213](https://github.com/hackforla/website/pull/4213#issuecomment-1475455415) at 2023-03-19 05:28 PM PDT -mjshelton12,2023-03-20T01:36:38Z,- mjshelton12 submitted pull request review: [4213](https://github.com/hackforla/website/pull/4213#pullrequestreview-1347678236) at 2023-03-19 06:36 PM PDT -mjshelton12,2023-03-20T05:59:01Z,- mjshelton12 pull request merged: [4210](https://github.com/hackforla/website/pull/4210#event-8790513238) at 2023-03-19 10:59 PM PDT -mjshelton12,2023-03-22T02:08:19Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1478823844) at 2023-03-21 07:08 PM PDT -mjshelton12,2023-03-22T03:15:46Z,- mjshelton12 assigned to issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1476525042) at 2023-03-21 08:15 PM PDT -mjshelton12,2023-03-22T03:18:02Z,- mjshelton12 commented on issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1478865242) at 2023-03-21 08:18 PM PDT -mjshelton12,2023-03-22T04:55:22Z,- mjshelton12 opened pull request: [4234](https://github.com/hackforla/website/pull/4234) at 2023-03-21 09:55 PM PDT -mjshelton12,2023-03-22T04:58:49Z,- mjshelton12 commented on issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1478918514) at 2023-03-21 09:58 PM PDT -mjshelton12,2023-03-23T20:40:25Z,- mjshelton12 commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1481866658) at 2023-03-23 01:40 PM PDT -mjshelton12,2023-03-23T23:55:28Z,- mjshelton12 submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1355819113) at 2023-03-23 04:55 PM PDT -mjshelton12,2023-03-24T00:30:01Z,- mjshelton12 commented on pull request: [4265](https://github.com/hackforla/website/pull/4265#issuecomment-1482086992) at 2023-03-23 05:30 PM PDT -mjshelton12,2023-03-24T00:33:31Z,- mjshelton12 submitted pull request review: [4265](https://github.com/hackforla/website/pull/4265#pullrequestreview-1355847745) at 2023-03-23 05:33 PM PDT -mjshelton12,2023-03-24T00:35:34Z,- mjshelton12 assigned to issue: [4238](https://github.com/hackforla/website/issues/4238) at 2023-03-23 05:35 PM PDT -mjshelton12,2023-03-24T00:36:50Z,- mjshelton12 commented on issue: [4238](https://github.com/hackforla/website/issues/4238#issuecomment-1482092458) at 2023-03-23 05:36 PM PDT -mjshelton12,2023-03-24T01:03:05Z,- mjshelton12 opened pull request: [4267](https://github.com/hackforla/website/pull/4267) at 2023-03-23 06:03 PM PDT -mjshelton12,2023-03-24T01:05:42Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1482109733) at 2023-03-23 06:05 PM PDT -mjshelton12,2023-03-24T02:09:42Z,- mjshelton12 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482153074) at 2023-03-23 07:09 PM PDT -mjshelton12,2023-03-24T20:24:27Z,- mjshelton12 pull request merged: [4234](https://github.com/hackforla/website/pull/4234#event-8842483275) at 2023-03-24 01:24 PM PDT -mjshelton12,2023-03-25T00:33:20Z,- mjshelton12 submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1357614619) at 2023-03-24 05:33 PM PDT -mjshelton12,2023-03-25T00:34:18Z,- mjshelton12 commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1483635567) at 2023-03-24 05:34 PM PDT -mjshelton12,2023-03-25T04:17:17Z,- mjshelton12 commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1483715096) at 2023-03-24 09:17 PM PDT -mjshelton12,2023-03-25T04:34:57Z,- mjshelton12 submitted pull request review: [4275](https://github.com/hackforla/website/pull/4275#pullrequestreview-1357773011) at 2023-03-24 09:34 PM PDT -mjshelton12,2023-03-26T16:47:35Z,- mjshelton12 pull request merged: [4267](https://github.com/hackforla/website/pull/4267#event-8847606258) at 2023-03-26 09:47 AM PDT -mjshelton12,2023-03-27T05:07:24Z,- mjshelton12 commented on pull request: [4292](https://github.com/hackforla/website/pull/4292#issuecomment-1484502299) at 2023-03-26 10:07 PM PDT -mjshelton12,2023-03-27T05:14:55Z,- mjshelton12 submitted pull request review: [4292](https://github.com/hackforla/website/pull/4292#pullrequestreview-1358339382) at 2023-03-26 10:14 PM PDT -mjshelton12,2023-03-27T05:18:08Z,- mjshelton12 commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1484512421) at 2023-03-26 10:18 PM PDT -mjshelton12,2023-03-27T23:09:58Z,- mjshelton12 submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1359987552) at 2023-03-27 04:09 PM PDT -mjshelton12,2023-03-28T21:55:03Z,- mjshelton12 submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1361960981) at 2023-03-28 02:55 PM PDT -mjshelton12,2023-03-29T02:39:33Z,- mjshelton12 commented on pull request: [4308](https://github.com/hackforla/website/pull/4308#issuecomment-1487866400) at 2023-03-28 07:39 PM PDT -mjshelton12,2023-03-29T17:57:46Z,- mjshelton12 submitted pull request review: [4308](https://github.com/hackforla/website/pull/4308#pullrequestreview-1363677262) at 2023-03-29 10:57 AM PDT -mjshelton12,2023-03-31T22:32:50Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1492681645) at 2023-03-31 03:32 PM PDT -mjshelton12,2023-04-01T00:34:33Z,- mjshelton12 commented on pull request: [4353](https://github.com/hackforla/website/pull/4353#issuecomment-1492758913) at 2023-03-31 05:34 PM PDT -mjshelton12,2023-04-01T03:47:11Z,- mjshelton12 submitted pull request review: [4353](https://github.com/hackforla/website/pull/4353#pullrequestreview-1367804328) at 2023-03-31 08:47 PM PDT -mjshelton12,2023-04-06T04:53:12Z,- mjshelton12 commented on pull request: [4412](https://github.com/hackforla/website/pull/4412#issuecomment-1498489603) at 2023-04-05 09:53 PM PDT -mjshelton12,2023-04-06T05:00:58Z,- mjshelton12 submitted pull request review: [4412](https://github.com/hackforla/website/pull/4412#pullrequestreview-1374052267) at 2023-04-05 10:00 PM PDT -mjshelton12,2023-04-06T05:03:54Z,- mjshelton12 commented on pull request: [4425](https://github.com/hackforla/website/pull/4425#issuecomment-1498496171) at 2023-04-05 10:03 PM PDT -mjshelton12,2023-04-07T01:00:24Z,- mjshelton12 submitted pull request review: [4425](https://github.com/hackforla/website/pull/4425#pullrequestreview-1375721275) at 2023-04-06 06:00 PM PDT -mjshelton12,2023-04-07T01:17:11Z,- mjshelton12 commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1499816144) at 2023-04-06 06:17 PM PDT -mjshelton12,2023-04-16T21:09:19Z,- mjshelton12 commented on pull request: [4520](https://github.com/hackforla/website/pull/4520#issuecomment-1510488683) at 2023-04-16 02:09 PM PDT -mjshelton12,2023-04-16T21:21:01Z,- mjshelton12 submitted pull request review: [4520](https://github.com/hackforla/website/pull/4520#pullrequestreview-1387055077) at 2023-04-16 02:21 PM PDT -mjshelton12,2023-04-16T21:47:08Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1510497075) at 2023-04-16 02:47 PM PDT -mjshelton12,2023-04-19T21:48:07Z,- mjshelton12 commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515428491) at 2023-04-19 02:48 PM PDT -mjshelton12,2023-04-19T22:09:11Z,- mjshelton12 submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1392950044) at 2023-04-19 03:09 PM PDT -mjshelton12,2023-04-20T18:15:24Z,- mjshelton12 commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1516752937) at 2023-04-20 11:15 AM PDT -mjshelton12,2023-04-20T18:51:55Z,- mjshelton12 submitted pull request review: [4546](https://github.com/hackforla/website/pull/4546#pullrequestreview-1394582955) at 2023-04-20 11:51 AM PDT -mjshelton12,2023-04-22T04:03:33Z,- mjshelton12 commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1518500084) at 2023-04-21 09:03 PM PDT -mjshelton12,2023-04-22T04:15:30Z,- mjshelton12 submitted pull request review: [4554](https://github.com/hackforla/website/pull/4554#pullrequestreview-1396556909) at 2023-04-21 09:15 PM PDT -mjshelton12,2023-04-23T17:15:20Z,- mjshelton12 commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1519113740) at 2023-04-23 10:15 AM PDT -mjshelton12,2023-04-24T23:25:12Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1520946670) at 2023-04-24 04:25 PM PDT -mjshelton12,2023-05-01T04:31:22Z,- mjshelton12 commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1529337695) at 2023-04-30 09:31 PM PDT -mjshelton12,2023-05-09T01:44:18Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1539272353) at 2023-05-08 06:44 PM PDT -mjshelton12,2023-05-09T01:50:10Z,- mjshelton12 commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1539275243) at 2023-05-08 06:50 PM PDT -mjshelton12,2023-05-09T03:02:30Z,- mjshelton12 commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1539319983) at 2023-05-08 08:02 PM PDT -mjshelton12,2023-05-12T02:13:36Z,- mjshelton12 submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1423674704) at 2023-05-11 07:13 PM PDT -mjshelton12,2023-05-16T23:17:22Z,- mjshelton12 commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1550476762) at 2023-05-16 04:17 PM PDT -mjshelton12,2023-05-16T23:45:54Z,- mjshelton12 submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1429586912) at 2023-05-16 04:45 PM PDT -mjshelton12,2023-05-16T23:55:28Z,- mjshelton12 commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1550499028) at 2023-05-16 04:55 PM PDT -mjshelton12,2023-05-18T00:35:18Z,- mjshelton12 submitted pull request review: [4668](https://github.com/hackforla/website/pull/4668#pullrequestreview-1431852217) at 2023-05-17 05:35 PM PDT -mjshelton12,2023-05-21T16:28:37Z,- mjshelton12 commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1556219556) at 2023-05-21 09:28 AM PDT -mjshelton12,2023-05-24T19:48:52Z,- mjshelton12 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1442638791) at 2023-05-24 12:48 PM PDT -mktr4n,7573,SKILLS ISSUE -mktr4n,2024-10-08T03:31:39Z,- mktr4n opened issue: [7573](https://github.com/hackforla/website/issues/7573) at 2024-10-07 08:31 PM PDT -mktr4n,2024-11-26T21:56:58Z,- mktr4n assigned to issue: [7573](https://github.com/hackforla/website/issues/7573) at 2024-11-26 01:56 PM PST -mlkara,4715,SKILLS ISSUE -mlkara,2023-05-24T03:12:19Z,- mlkara opened issue: [4715](https://github.com/hackforla/website/issues/4715) at 2023-05-23 08:12 PM PDT -mlkara,2023-05-24T03:14:13Z,- mlkara assigned to issue: [4715](https://github.com/hackforla/website/issues/4715) at 2023-05-23 08:14 PM PDT -mlkara,2023-05-27T00:24:32Z,- mlkara assigned to issue: [4489](https://github.com/hackforla/website/issues/4489) at 2023-05-26 05:24 PM PDT -mlkara,2023-05-27T20:14:25Z,- mlkara commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565664486) at 2023-05-27 01:14 PM PDT -mlkara,2023-06-02T22:49:08Z,- mlkara opened pull request: [4773](https://github.com/hackforla/website/pull/4773) at 2023-06-02 03:49 PM PDT -mlkara,2023-06-08T08:04:40Z,- mlkara pull request merged: [4773](https://github.com/hackforla/website/pull/4773#event-9469029819) at 2023-06-08 01:04 AM PDT -mmcclanahan,7207,SKILLS ISSUE -mmcclanahan,2024-08-06T03:12:10Z,- mmcclanahan opened issue: [7207](https://github.com/hackforla/website/issues/7207) at 2024-08-05 08:12 PM PDT -mmcclanahan,2024-08-06T03:12:35Z,- mmcclanahan assigned to issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2270300929) at 2024-08-05 08:12 PM PDT -mmcclanahan,2024-08-06T03:50:06Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2270328427) at 2024-08-05 08:50 PM PDT -mmcclanahan,2024-08-07T01:33:09Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2272451617) at 2024-08-06 06:33 PM PDT -mmcclanahan,2024-08-07T02:06:40Z,- mmcclanahan assigned to issue: [7139](https://github.com/hackforla/website/issues/7139) at 2024-08-06 07:06 PM PDT -mmcclanahan,2024-08-07T02:24:46Z,- mmcclanahan commented on issue: [7139](https://github.com/hackforla/website/issues/7139#issuecomment-2272495281) at 2024-08-06 07:24 PM PDT -mmcclanahan,2024-08-08T02:02:30Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2274797942) at 2024-08-07 07:02 PM PDT -mmcclanahan,2024-08-08T02:38:32Z,- mmcclanahan opened pull request: [7244](https://github.com/hackforla/website/pull/7244) at 2024-08-07 07:38 PM PDT -mmcclanahan,2024-08-08T06:15:24Z,- mmcclanahan commented on pull request: [7244](https://github.com/hackforla/website/pull/7244#issuecomment-2275032625) at 2024-08-07 11:15 PM PDT -mmcclanahan,2024-08-08T19:32:01Z,- mmcclanahan pull request merged: [7244](https://github.com/hackforla/website/pull/7244#event-13811378578) at 2024-08-08 12:32 PM PDT -mmcclanahan,2024-08-09T05:16:54Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2277168830) at 2024-08-08 10:16 PM PDT -mmcclanahan,2024-08-09T05:30:44Z,- mmcclanahan assigned to issue: [7178](https://github.com/hackforla/website/issues/7178) at 2024-08-08 10:30 PM PDT -mmcclanahan,2024-08-09T05:35:39Z,- mmcclanahan commented on issue: [7178](https://github.com/hackforla/website/issues/7178#issuecomment-2277185149) at 2024-08-08 10:35 PM PDT -mmcclanahan,2024-08-09T06:21:26Z,- mmcclanahan opened pull request: [7257](https://github.com/hackforla/website/pull/7257) at 2024-08-08 11:21 PM PDT -mmcclanahan,2024-08-09T19:20:35Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2278596553) at 2024-08-09 12:20 PM PDT -mmcclanahan,2024-08-11T17:03:31Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2282825849) at 2024-08-11 10:03 AM PDT -mmcclanahan,2024-08-15T14:58:23Z,- mmcclanahan pull request merged: [7257](https://github.com/hackforla/website/pull/7257#event-13897244558) at 2024-08-15 07:58 AM PDT -mmcclanahan,2024-08-18T03:36:50Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2295097727) at 2024-08-17 08:36 PM PDT -mmcclanahan,2024-08-18T03:57:17Z,- mmcclanahan commented on pull request: [7302](https://github.com/hackforla/website/pull/7302#issuecomment-2295100524) at 2024-08-17 08:57 PM PDT -mmcclanahan,2024-08-18T03:58:17Z,- mmcclanahan submitted pull request review: [7302](https://github.com/hackforla/website/pull/7302#pullrequestreview-2244208601) at 2024-08-17 08:58 PM PDT -mmcclanahan,2024-08-18T03:59:19Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2295100783) at 2024-08-17 08:59 PM PDT -mmcclanahan,2024-08-18T04:07:12Z,- mmcclanahan commented on pull request: [7299](https://github.com/hackforla/website/pull/7299#issuecomment-2295102304) at 2024-08-17 09:07 PM PDT -mmcclanahan,2024-08-18T04:09:59Z,- mmcclanahan submitted pull request review: [7299](https://github.com/hackforla/website/pull/7299#pullrequestreview-2244209566) at 2024-08-17 09:09 PM PDT -mmcclanahan,2024-08-18T04:10:52Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2295103204) at 2024-08-17 09:10 PM PDT -mmcclanahan,2024-08-20T21:09:58Z,- mmcclanahan commented on pull request: [7312](https://github.com/hackforla/website/pull/7312#issuecomment-2299771959) at 2024-08-20 02:09 PM PDT -mmcclanahan,2024-08-20T21:26:55Z,- mmcclanahan submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2249124060) at 2024-08-20 02:26 PM PDT -mmcclanahan,2024-08-20T21:28:07Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2299796754) at 2024-08-20 02:28 PM PDT -mmcclanahan,2024-08-20T21:45:47Z,- mmcclanahan submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2249148927) at 2024-08-20 02:45 PM PDT -mmcclanahan,2024-08-20T21:57:50Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2299832635) at 2024-08-20 02:57 PM PDT -mmcclanahan,2024-08-20T22:49:28Z,- mmcclanahan submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2249236498) at 2024-08-20 03:49 PM PDT -mmcclanahan,2024-08-20T22:49:59Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2299890948) at 2024-08-20 03:49 PM PDT -mmcclanahan,2024-08-21T22:27:56Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2303152794) at 2024-08-21 03:27 PM PDT -mmcclanahan,2024-08-21T22:32:30Z,- mmcclanahan assigned to issue: [7145](https://github.com/hackforla/website/issues/7145) at 2024-08-21 03:32 PM PDT -mmcclanahan,2024-08-21T22:33:56Z,- mmcclanahan commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2303185753) at 2024-08-21 03:33 PM PDT -mmcclanahan,2024-08-21T22:55:29Z,- mmcclanahan assigned to issue: [7281](https://github.com/hackforla/website/issues/7281) at 2024-08-21 03:55 PM PDT -mmcclanahan,2024-08-21T22:55:42Z,- mmcclanahan unassigned from issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303251610) at 2024-08-21 03:55 PM PDT -mmcclanahan,2024-08-21T22:57:54Z,- mmcclanahan unassigned from issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2303185753) at 2024-08-21 03:57 PM PDT -mmcclanahan,2024-08-21T22:58:09Z,- mmcclanahan assigned to issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303251610) at 2024-08-21 03:58 PM PDT -mmcclanahan,2024-08-21T23:09:05Z,- mmcclanahan commented on issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303263755) at 2024-08-21 04:09 PM PDT -mmcclanahan,2024-08-21T23:52:54Z,- mmcclanahan opened pull request: [7340](https://github.com/hackforla/website/pull/7340) at 2024-08-21 04:52 PM PDT -mmcclanahan,2024-08-22T18:11:26Z,- mmcclanahan submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2255339168) at 2024-08-22 11:11 AM PDT -mmcclanahan,2024-08-27T16:53:46Z,- mmcclanahan pull request merged: [7340](https://github.com/hackforla/website/pull/7340#event-14032147942) at 2024-08-27 09:53 AM PDT -mmcclanahan,2024-08-28T04:08:38Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2314190442) at 2024-08-27 09:08 PM PDT -mmcclanahan,2024-09-02T21:07:05Z,- mmcclanahan submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2276152267) at 2024-09-02 02:07 PM PDT -mmcclanahan,2024-09-13T07:45:38Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2348261782) at 2024-09-13 12:45 AM PDT -mmcclanahan,2024-09-17T22:36:59Z,- mmcclanahan commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2357051611) at 2024-09-17 03:36 PM PDT -mmcclanahan,2024-09-17T23:36:43Z,- mmcclanahan submitted pull request review: [7447](https://github.com/hackforla/website/pull/7447#pullrequestreview-2311351898) at 2024-09-17 04:36 PM PDT -mmcclanahan,2024-09-17T23:37:19Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2357205111) at 2024-09-17 04:37 PM PDT -mmcclanahan,2024-09-18T00:00:24Z,- mmcclanahan submitted pull request review: [7462](https://github.com/hackforla/website/pull/7462#pullrequestreview-2311368142) at 2024-09-17 05:00 PM PDT -mmcclanahan,2024-09-18T00:00:43Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2357224387) at 2024-09-17 05:00 PM PDT -mmcclanahan,2024-09-18T03:03:49Z,- mmcclanahan commented on pull request: [7466](https://github.com/hackforla/website/pull/7466#issuecomment-2357399580) at 2024-09-17 08:03 PM PDT -mmcclanahan,2024-09-18T06:29:04Z,- mmcclanahan submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2311748685) at 2024-09-17 11:29 PM PDT -mmcclanahan,2024-09-18T06:30:42Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2357613454) at 2024-09-17 11:30 PM PDT -mmcclanahan,2024-09-27T07:15:42Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2378569017) at 2024-09-27 12:15 AM PDT -mmcclanahan,2024-09-29T18:41:19Z,- mmcclanahan assigned to issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2295303122) at 2024-09-29 11:41 AM PDT -mmcclanahan,2024-09-29T18:43:10Z,- mmcclanahan commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381458251) at 2024-09-29 11:43 AM PDT -mmcclanahan,2024-09-29T20:02:48Z,- mmcclanahan commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381584814) at 2024-09-29 01:02 PM PDT -mmcclanahan,2024-09-29T20:03:29Z,- mmcclanahan opened issue: [7541](https://github.com/hackforla/website/issues/7541) at 2024-09-29 01:03 PM PDT -mmcclanahan,2024-09-29T20:09:44Z,- mmcclanahan opened issue: [7542](https://github.com/hackforla/website/issues/7542) at 2024-09-29 01:09 PM PDT -mmcclanahan,2024-09-29T20:11:11Z,- mmcclanahan commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381587437) at 2024-09-29 01:11 PM PDT -mmcclanahan,2024-09-30T22:56:06Z,- mmcclanahan opened issue: [7547](https://github.com/hackforla/website/issues/7547) at 2024-09-30 03:56 PM PDT -mmcclanahan,2024-09-30T22:59:46Z,- mmcclanahan opened issue: [7548](https://github.com/hackforla/website/issues/7548) at 2024-09-30 03:59 PM PDT -mmcclanahan,2024-09-30T23:02:35Z,- mmcclanahan opened issue: [7549](https://github.com/hackforla/website/issues/7549) at 2024-09-30 04:02 PM PDT -mmcclanahan,2024-09-30T23:09:20Z,- mmcclanahan opened issue: [7550](https://github.com/hackforla/website/issues/7550) at 2024-09-30 04:09 PM PDT -mmcclanahan,2024-10-03T08:07:25Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2390783634) at 2024-10-03 01:07 AM PDT -mmcclanahan,2024-10-03T23:36:50Z,- mmcclanahan assigned to issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2365292643) at 2024-10-03 04:36 PM PDT -mmcclanahan,2024-10-03T23:38:30Z,- mmcclanahan commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392514174) at 2024-10-03 04:38 PM PDT -mmcclanahan,2024-10-05T06:37:34Z,- mmcclanahan opened pull request: [7564](https://github.com/hackforla/website/pull/7564) at 2024-10-04 11:37 PM PDT -mmcclanahan,2024-10-05T06:38:40Z,- mmcclanahan unassigned from issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392514174) at 2024-10-04 11:38 PM PDT -mmcclanahan,2024-10-08T03:32:31Z,- mmcclanahan commented on pull request: [7564](https://github.com/hackforla/website/pull/7564#issuecomment-2398712011) at 2024-10-07 08:32 PM PDT -mmcclanahan,2024-10-10T02:24:54Z,- mmcclanahan pull request merged: [7564](https://github.com/hackforla/website/pull/7564#event-14581913636) at 2024-10-09 07:24 PM PDT -mmcclanahan,2024-10-12T04:12:01Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2408345546) at 2024-10-11 09:12 PM PDT -mmcclanahan,2024-10-12T04:18:49Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2408360513) at 2024-10-11 09:18 PM PDT -mmcclanahan,2024-10-26T00:01:44Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2439059600) at 2024-10-25 05:01 PM PDT -mmcclanahan,2024-10-26T00:16:05Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2439071754) at 2024-10-25 05:16 PM PDT -mmcclanahan,2024-11-14T07:24:30Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2475601891) at 2024-11-13 11:24 PM PST -mmcclanahan,2024-11-16T02:44:52Z,- mmcclanahan commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2480348351) at 2024-11-15 06:44 PM PST -mmcclanahan,2024-11-16T02:45:05Z,- mmcclanahan submitted pull request review: [7718](https://github.com/hackforla/website/pull/7718#pullrequestreview-2440267942) at 2024-11-15 06:45 PM PST -mmcclanahan,2024-12-27T22:32:33Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2564070484) at 2024-12-27 02:32 PM PST -mmcclanahan,2025-01-11T19:53:19Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2585389967) at 2025-01-11 11:53 AM PST -mmcclanahan,2025-01-13T23:18:31Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2588430450) at 2025-01-13 03:18 PM PST -mmogri,3150,SKILLS ISSUE -mmogri,2022-05-17T02:57:06Z,- mmogri opened issue: [3150](https://github.com/hackforla/website/issues/3150) at 2022-05-16 07:57 PM PDT -mmogri,2022-05-21T07:47:27Z,- mmogri assigned to issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1128352706) at 2022-05-21 12:47 AM PDT -mmogri,2022-05-23T05:55:47Z,- mmogri assigned to issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1045544360) at 2022-05-22 10:55 PM PDT -mmogri,2022-05-23T05:57:56Z,- mmogri unassigned from issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1045544360) at 2022-05-22 10:57 PM PDT -mmogri,2022-05-23T05:58:00Z,- mmogri assigned to issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1045544360) at 2022-05-22 10:58 PM PDT -mmogri,2022-05-23T06:39:40Z,- mmogri opened pull request: [3168](https://github.com/hackforla/website/pull/3168) at 2022-05-22 11:39 PM PDT -mmogri,2022-05-23T06:55:42Z,- mmogri commented on issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1134256000) at 2022-05-22 11:55 PM PDT -mmogri,2022-05-23T20:49:09Z,- mmogri assigned to issue: [2923](https://github.com/hackforla/website/issues/2923#issuecomment-1058593878) at 2022-05-23 01:49 PM PDT -mmogri,2022-05-23T20:53:56Z,- mmogri commented on issue: [2923](https://github.com/hackforla/website/issues/2923#issuecomment-1135128342) at 2022-05-23 01:53 PM PDT -mmogri,2022-05-24T02:03:00Z,- mmogri pull request merged: [3168](https://github.com/hackforla/website/pull/3168#event-6665193511) at 2022-05-23 07:03 PM PDT -mmogri,2022-05-24T08:57:15Z,- mmogri opened pull request: [3173](https://github.com/hackforla/website/pull/3173) at 2022-05-24 01:57 AM PDT -mmogri,2022-05-30T21:45:16Z,- mmogri commented on pull request: [3173](https://github.com/hackforla/website/pull/3173#issuecomment-1141494126) at 2022-05-30 02:45 PM PDT -mmogri,2022-05-30T21:49:23Z,- mmogri commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1141495738) at 2022-05-30 02:49 PM PDT -mmogri,2022-05-30T21:51:54Z,- mmogri commented on issue: [2923](https://github.com/hackforla/website/issues/2923#issuecomment-1141496769) at 2022-05-30 02:51 PM PDT -mmogri,2022-06-01T01:55:27Z,- mmogri pull request merged: [3173](https://github.com/hackforla/website/pull/3173#event-6714300628) at 2022-05-31 06:55 PM PDT -mmogri,2022-06-01T21:58:03Z,- mmogri assigned to issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1038008422) at 2022-06-01 02:58 PM PDT -mmogri,2022-06-01T22:00:22Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1144183570) at 2022-06-01 03:00 PM PDT -mmogri,2022-06-19T15:59:36Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1159764233) at 2022-06-19 08:59 AM PDT -mmogri,2022-06-19T18:10:23Z,- mmogri commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1159786462) at 2022-06-19 11:10 AM PDT -mmogri,2022-06-19T18:33:44Z,- mmogri commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159789734) at 2022-06-19 11:33 AM PDT -mmogri,2022-06-19T19:07:42Z,- mmogri submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1011558840) at 2022-06-19 12:07 PM PDT -mmogri,2022-06-29T02:13:24Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1169457631) at 2022-06-28 07:13 PM PDT -mmogri,2022-07-10T17:16:48Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1179766069) at 2022-07-10 10:16 AM PDT -mmogri,2022-09-19T02:34:44Z,- mmogri unassigned from issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1250483942) at 2022-09-18 07:34 PM PDT -moazDev1,6602,SKILLS ISSUE -moazDev1,2024-04-09T02:56:36Z,- moazDev1 opened issue: [6602](https://github.com/hackforla/website/issues/6602) at 2024-04-08 07:56 PM PDT -moazDev1,2024-04-09T03:12:00Z,- moazDev1 commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044076828) at 2024-04-08 08:12 PM PDT -moazDev1,2024-04-09T03:15:33Z,- moazDev1 commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044079283) at 2024-04-08 08:15 PM PDT -moazDev1,2024-04-09T03:40:01Z,- moazDev1 assigned to issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044079283) at 2024-04-08 08:40 PM PDT -moazDev1,2024-04-14T23:41:25Z,- moazDev1 assigned to issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2024045843) at 2024-04-14 04:41 PM PDT -moazDev1,2024-04-15T00:27:00Z,- moazDev1 opened pull request: [6647](https://github.com/hackforla/website/pull/6647) at 2024-04-14 05:27 PM PDT -moazDev1,2024-04-15T06:13:27Z,- moazDev1 pull request merged: [6647](https://github.com/hackforla/website/pull/6647#event-12463560986) at 2024-04-14 11:13 PM PDT -moazDev1,2024-04-15T06:17:05Z,- moazDev1 reopened pull request: [6647](https://github.com/hackforla/website/pull/6647#event-12463560986) at 2024-04-14 11:17 PM PDT -moazDev1,2024-04-15T06:17:23Z,- moazDev1 pull request merged: [6647](https://github.com/hackforla/website/pull/6647#event-12463596120) at 2024-04-14 11:17 PM PDT -moazDev1,2024-04-15T06:24:47Z,- moazDev1 reopened pull request: [6647](https://github.com/hackforla/website/pull/6647#event-12463596120) at 2024-04-14 11:24 PM PDT -moazDev1,2024-04-15T09:30:08Z,- moazDev1 pull request merged: [6647](https://github.com/hackforla/website/pull/6647#event-12466179835) at 2024-04-15 02:30 AM PDT -moazDev1,2024-04-16T00:02:59Z,- moazDev1 unassigned from issue: [6170](https://github.com/hackforla/website/issues/6170#event-12466180134) at 2024-04-15 05:02 PM PDT -moazDev1,2024-04-16T00:10:42Z,- moazDev1 assigned to issue: [6170](https://github.com/hackforla/website/issues/6170#event-12466180134) at 2024-04-15 05:10 PM PDT -moazDev1,2024-04-20T01:53:05Z,- moazDev1 commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2067509829) at 2024-04-19 06:53 PM PDT -moazDev1,2024-04-20T02:23:57Z,- moazDev1 assigned to issue: [6582](https://github.com/hackforla/website/issues/6582#issuecomment-2040833387) at 2024-04-19 07:23 PM PDT -moazDev1,2024-04-20T02:26:09Z,- moazDev1 commented on issue: [6582](https://github.com/hackforla/website/issues/6582#issuecomment-2067518179) at 2024-04-19 07:26 PM PDT -moazDev1,2024-04-20T09:17:32Z,- moazDev1 closed issue by PR 1: [6582](https://github.com/hackforla/website/issues/6582#event-12547370175) at 2024-04-20 02:17 AM PDT -moazDev1,2024-04-20T09:45:42Z,- moazDev1 opened pull request: [6690](https://github.com/hackforla/website/pull/6690) at 2024-04-20 02:45 AM PDT -moazDev1,2024-04-22T07:35:19Z,- moazDev1 commented on pull request: [6707](https://github.com/hackforla/website/pull/6707#issuecomment-2068690142) at 2024-04-22 12:35 AM PDT -moazDev1,2024-04-22T07:57:35Z,- moazDev1 submitted pull request review: [6707](https://github.com/hackforla/website/pull/6707#pullrequestreview-2014043139) at 2024-04-22 12:57 AM PDT -moazDev1,2024-04-24T20:26:19Z,- moazDev1 commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2075783526) at 2024-04-24 01:26 PM PDT -moazDev1,2024-04-25T19:03:44Z,- moazDev1 pull request merged: [6690](https://github.com/hackforla/website/pull/6690#event-12614067053) at 2024-04-25 12:03 PM PDT -moazDev1,2024-04-28T01:29:25Z,- moazDev1 assigned to issue: [6640](https://github.com/hackforla/website/issues/6640) at 2024-04-27 06:29 PM PDT -moazDev1,2024-04-28T01:31:42Z,- moazDev1 commented on issue: [6640](https://github.com/hackforla/website/issues/6640#issuecomment-2081280579) at 2024-04-27 06:31 PM PDT -moazDev1,2024-04-28T02:25:56Z,- moazDev1 opened pull request: [6774](https://github.com/hackforla/website/pull/6774) at 2024-04-27 07:25 PM PDT -moazDev1,2024-04-28T05:49:57Z,- moazDev1 commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2081342957) at 2024-04-27 10:49 PM PDT -moazDev1,2024-04-28T06:00:03Z,- moazDev1 submitted pull request review: [6770](https://github.com/hackforla/website/pull/6770#pullrequestreview-2026903066) at 2024-04-27 11:00 PM PDT -moazDev1,2024-04-28T18:57:15Z,- moazDev1 closed issue as completed: [6602](https://github.com/hackforla/website/issues/6602#event-12635573195) at 2024-04-28 11:57 AM PDT -moazDev1,2024-04-30T03:45:51Z,- moazDev1 commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2084323086) at 2024-04-29 08:45 PM PDT -moazDev1,2024-05-01T04:07:41Z,- moazDev1 assigned to issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2053923988) at 2024-04-30 09:07 PM PDT -moazDev1,2024-05-01T04:09:33Z,- moazDev1 commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2087946466) at 2024-04-30 09:09 PM PDT -moazDev1,2024-05-01T19:29:39Z,- moazDev1 pull request merged: [6774](https://github.com/hackforla/website/pull/6774#event-12673990013) at 2024-05-01 12:29 PM PDT -moazDev1,2024-05-02T07:13:48Z,- moazDev1 opened pull request: [6806](https://github.com/hackforla/website/pull/6806) at 2024-05-02 12:13 AM PDT -moazDev1,2024-05-03T10:21:34Z,- moazDev1 commented on pull request: [6808](https://github.com/hackforla/website/pull/6808#issuecomment-2092720617) at 2024-05-03 03:21 AM PDT -moazDev1,2024-05-03T10:28:44Z,- moazDev1 submitted pull request review: [6808](https://github.com/hackforla/website/pull/6808#pullrequestreview-2037858349) at 2024-05-03 03:28 AM PDT -moazDev1,2024-05-10T01:18:56Z,- moazDev1 commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2103680305) at 2024-05-09 06:18 PM PDT -moazDev1,2024-05-10T01:20:59Z,- moazDev1 commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2103681915) at 2024-05-09 06:20 PM PDT -moazDev1,2024-05-15T00:27:57Z,- moazDev1 commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2111372461) at 2024-05-14 05:27 PM PDT -moazDev1,2024-05-16T22:21:12Z,- moazDev1 pull request merged: [6806](https://github.com/hackforla/website/pull/6806#event-12840586265) at 2024-05-16 03:21 PM PDT -moazDev1,2024-05-23T00:06:20Z,- moazDev1 assigned to issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2103571357) at 2024-05-22 05:06 PM PDT -moazDev1,2024-05-23T00:08:43Z,- moazDev1 commented on issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2125970071) at 2024-05-22 05:08 PM PDT -moazDev1,2024-05-23T00:35:08Z,- moazDev1 opened pull request: [6888](https://github.com/hackforla/website/pull/6888) at 2024-05-22 05:35 PM PDT -moazDev1,2024-05-23T20:46:41Z,- moazDev1 pull request merged: [6888](https://github.com/hackforla/website/pull/6888#event-12915029503) at 2024-05-23 01:46 PM PDT -moazDev1,2024-06-06T22:33:28Z,- moazDev1 opened pull request: [6969](https://github.com/hackforla/website/pull/6969) at 2024-06-06 03:33 PM PDT -moazDev1,2024-06-12T02:20:50Z,- moazDev1 commented on pull request: [6989](https://github.com/hackforla/website/pull/6989#issuecomment-2161978792) at 2024-06-11 07:20 PM PDT -moazDev1,2024-06-12T08:52:20Z,- moazDev1 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2162465274) at 2024-06-12 01:52 AM PDT -moazDev1,2024-06-13T00:55:39Z,- moazDev1 submitted pull request review: [6989](https://github.com/hackforla/website/pull/6989#pullrequestreview-2114474782) at 2024-06-12 05:55 PM PDT -moazDev1,2024-06-24T04:19:22Z,- moazDev1 opened pull request: [7058](https://github.com/hackforla/website/pull/7058) at 2024-06-23 09:19 PM PDT -moazDev1,2024-06-24T04:19:53Z,- moazDev1 pull request closed w/o merging: [7058](https://github.com/hackforla/website/pull/7058#event-13259785224) at 2024-06-23 09:19 PM PDT -moazDev1,2024-07-25T08:17:10Z,- moazDev1 commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2249737425) at 2024-07-25 01:17 AM PDT -moazDev1,2024-07-31T09:42:42Z,- moazDev1 submitted pull request review: [7132](https://github.com/hackforla/website/pull/7132#pullrequestreview-2209689512) at 2024-07-31 02:42 AM PDT -moazDev1,2024-08-02T09:36:51Z,- moazDev1 submitted pull request review: [7132](https://github.com/hackforla/website/pull/7132#pullrequestreview-2215168919) at 2024-08-02 02:36 AM PDT -MohamadAlsyouf,2022-06-01T03:13:34Z,- MohamadAlsyouf opened issue: [3186](https://github.com/hackforla/website/issues/3186) at 2022-05-31 08:13 PM PDT -MohamadAlsyouf,2022-06-02T03:29:11Z,- MohamadAlsyouf closed issue as completed: [3186](https://github.com/hackforla/website/issues/3186#event-6725048905) at 2022-06-01 08:29 PM PDT -MohamadAlsyouf,2022-06-02T03:29:14Z,- MohamadAlsyouf reopened issue: [3186](https://github.com/hackforla/website/issues/3186#event-6725048905) at 2022-06-01 08:29 PM PDT -MohamadAlsyouf,2022-07-14T00:39:30Z,- MohamadAlsyouf commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1183819195) at 2022-07-13 05:39 PM PDT -MohamedAlsyouf,3186,SKILLS ISSUE -MohamedMafaz,2023-06-09T16:38:20Z,- MohamedMafaz opened issue: [4795](https://github.com/hackforla/website/issues/4795) at 2023-06-09 09:38 AM PDT -mohassan99,7841,SKILLS ISSUE -mohassan99,2025-01-21T07:19:44Z,- mohassan99 opened issue: [7841](https://github.com/hackforla/website/issues/7841) at 2025-01-20 11:19 PM PST -monaecurbeam98,6876,SKILLS ISSUE -monaecurbeam98,2024-05-22T02:55:19Z,- monaecurbeam98 opened issue: [6876](https://github.com/hackforla/website/issues/6876) at 2024-05-21 07:55 PM PDT -monaecurbeam98,2024-05-22T03:03:26Z,- monaecurbeam98 closed issue as completed: [6876](https://github.com/hackforla/website/issues/6876#event-12887643508) at 2024-05-21 08:03 PM PDT -Monomer9,8187,SKILLS ISSUE -Monomer9,2025-06-17T03:09:41Z,- Monomer9 opened issue: [8187](https://github.com/hackforla/website/issues/8187) at 2025-06-16 08:09 PM PDT -Monomer9,2025-06-17T03:16:27Z,- Monomer9 assigned to issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2978780293) at 2025-06-16 08:16 PM PDT -Monomer9,2025-06-17T03:45:16Z,- Monomer9 commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2978826330) at 2025-06-16 08:45 PM PDT -Monomer9,2025-06-21T02:38:57Z,- Monomer9 commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2993266060) at 2025-06-20 07:38 PM PDT -Monomer9,2025-06-21T05:22:29Z,- Monomer9 commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2993340190) at 2025-06-20 10:22 PM PDT -Monomer9,2025-06-21T16:52:53Z,- Monomer9 assigned to issue: [8004](https://github.com/hackforla/website/issues/8004) at 2025-06-21 09:52 AM PDT -Monomer9,2025-06-21T18:21:24Z,- Monomer9 opened pull request: [8199](https://github.com/hackforla/website/pull/8199) at 2025-06-21 11:21 AM PDT -mrodz,6884,SKILLS ISSUE -mrodz,2024-05-22T03:46:56Z,- mrodz opened issue: [6884](https://github.com/hackforla/website/issues/6884) at 2024-05-21 08:46 PM PDT -mrodz,2024-05-22T03:47:00Z,- mrodz assigned to issue: [6884](https://github.com/hackforla/website/issues/6884) at 2024-05-21 08:47 PM PDT -mrodz,2024-05-26T17:25:56Z,- mrodz submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2079759623) at 2024-05-26 10:25 AM PDT -mrodz,2024-05-26T17:30:59Z,- mrodz assigned to issue: [6736](https://github.com/hackforla/website/issues/6736) at 2024-05-26 10:30 AM PDT -mrodz,2024-05-26T17:46:12Z,- mrodz commented on issue: [6736](https://github.com/hackforla/website/issues/6736#issuecomment-2132297469) at 2024-05-26 10:46 AM PDT -mrodz,2024-05-26T17:56:00Z,- mrodz opened pull request: [6899](https://github.com/hackforla/website/pull/6899) at 2024-05-26 10:56 AM PDT -mrodz,2024-05-27T04:51:33Z,- mrodz pull request merged: [6899](https://github.com/hackforla/website/pull/6899#event-12940373225) at 2024-05-26 09:51 PM PDT -mrodz,2024-05-27T22:31:58Z,- mrodz commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2134107974) at 2024-05-27 03:31 PM PDT -mrodz,2024-05-28T01:16:35Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2134195412) at 2024-05-27 06:16 PM PDT -mrodz,2024-05-28T01:32:59Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2134206959) at 2024-05-27 06:32 PM PDT -mrodz,2024-05-28T01:32:59Z,- mrodz closed issue as completed: [6884](https://github.com/hackforla/website/issues/6884#event-12950654379) at 2024-05-27 06:32 PM PDT -mrodz,2024-05-29T18:05:01Z,- mrodz commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2137982780) at 2024-05-29 11:05 AM PDT -mrodz,2024-05-29T18:11:12Z,- mrodz submitted pull request review: [6891](https://github.com/hackforla/website/pull/6891#pullrequestreview-2086090698) at 2024-05-29 11:11 AM PDT -mrodz,2024-05-30T15:05:53Z,- mrodz submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2088542723) at 2024-05-30 08:05 AM PDT -mrodz,2024-06-05T23:05:23Z,- mrodz assigned to issue: [6861](https://github.com/hackforla/website/issues/6861) at 2024-06-05 04:05 PM PDT -mrodz,2024-06-05T23:07:06Z,- mrodz commented on issue: [6861](https://github.com/hackforla/website/issues/6861#issuecomment-2151103355) at 2024-06-05 04:07 PM PDT -mrodz,2024-06-05T23:30:15Z,- mrodz opened pull request: [6965](https://github.com/hackforla/website/pull/6965) at 2024-06-05 04:30 PM PDT -mrodz,2024-06-06T16:35:36Z,- mrodz commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2152953305) at 2024-06-06 09:35 AM PDT -mrodz,2024-06-06T16:39:13Z,- mrodz commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2152961028) at 2024-06-06 09:39 AM PDT -mrodz,2024-06-06T16:39:50Z,- mrodz submitted pull request review: [6963](https://github.com/hackforla/website/pull/6963#pullrequestreview-2102489775) at 2024-06-06 09:39 AM PDT -mrodz,2024-06-09T22:23:28Z,- mrodz submitted pull request review: [6975](https://github.com/hackforla/website/pull/6975#pullrequestreview-2106379614) at 2024-06-09 03:23 PM PDT -mrodz,2024-06-10T03:17:15Z,- mrodz pull request merged: [6965](https://github.com/hackforla/website/pull/6965#event-13094260106) at 2024-06-09 08:17 PM PDT -mrodz,2024-06-23T17:14:10Z,- mrodz assigned to issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2174656396) at 2024-06-23 10:14 AM PDT -mrodz,2024-06-23T17:16:35Z,- mrodz commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2185168242) at 2024-06-23 10:16 AM PDT -mrodz,2024-06-23T22:52:23Z,- mrodz closed issue by PR 7062: [6786](https://github.com/hackforla/website/issues/6786#event-13258395421) at 2024-06-23 03:52 PM PDT -mrodz,2024-06-23T22:56:50Z,- mrodz reopened issue: [6786](https://github.com/hackforla/website/issues/6786#event-13258395421) at 2024-06-23 03:56 PM PDT -mrodz,2024-06-23T22:57:39Z,- mrodz commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2185349312) at 2024-06-23 03:57 PM PDT -mrodz,2024-06-24T17:55:22Z,- mrodz opened pull request: [7062](https://github.com/hackforla/website/pull/7062) at 2024-06-24 10:55 AM PDT -mrodz,2024-06-26T02:33:21Z,- mrodz commented on pull request: [7057](https://github.com/hackforla/website/pull/7057#issuecomment-2190424952) at 2024-06-25 07:33 PM PDT -mrodz,2024-06-26T02:37:12Z,- mrodz submitted pull request review: [7057](https://github.com/hackforla/website/pull/7057#pullrequestreview-2140316429) at 2024-06-25 07:37 PM PDT -mrodz,2024-06-27T18:25:42Z,- mrodz commented on pull request: [7062](https://github.com/hackforla/website/pull/7062#issuecomment-2195417301) at 2024-06-27 11:25 AM PDT -mrodz,2024-06-30T22:10:39Z,- mrodz commented on pull request: [7062](https://github.com/hackforla/website/pull/7062#issuecomment-2198773389) at 2024-06-30 03:10 PM PDT -mrodz,2024-06-30T22:33:41Z,- mrodz pull request merged: [7062](https://github.com/hackforla/website/pull/7062#event-13343195165) at 2024-06-30 03:33 PM PDT -mrodz,2024-07-01T05:04:31Z,- mrodz commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2199242718) at 2024-06-30 10:04 PM PDT -mrodz,2024-07-02T21:55:23Z,- mrodz submitted pull request review: [7073](https://github.com/hackforla/website/pull/7073#pullrequestreview-2154942030) at 2024-07-02 02:55 PM PDT -mrodz,2024-07-15T17:56:24Z,- mrodz assigned to issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2227814446) at 2024-07-15 10:56 AM PDT -mrodz,2024-07-15T22:14:17Z,- mrodz commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2229527848) at 2024-07-15 03:14 PM PDT -mrodz,2024-07-15T22:25:16Z,- mrodz opened pull request: [7122](https://github.com/hackforla/website/pull/7122) at 2024-07-15 03:25 PM PDT -mrodz,2024-07-15T22:27:46Z,- mrodz assigned to issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2200830039) at 2024-07-15 03:27 PM PDT -mrodz,2024-07-15T22:27:53Z,- mrodz unassigned from issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2200830039) at 2024-07-15 03:27 PM PDT -mrodz,2024-07-15T22:29:16Z,- mrodz commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229543227) at 2024-07-15 03:29 PM PDT -mrodz,2024-07-16T00:33:28Z,- mrodz assigned to issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229543227) at 2024-07-15 05:33 PM PDT -mrodz,2024-07-16T00:33:44Z,- mrodz unassigned from issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229736172) at 2024-07-15 05:33 PM PDT -mrodz,2024-07-16T21:54:25Z,- mrodz unassigned from issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2229527848) at 2024-07-16 02:54 PM PDT -mrodz,2024-07-16T21:58:32Z,- mrodz commented on pull request: [7122](https://github.com/hackforla/website/pull/7122#issuecomment-2231893037) at 2024-07-16 02:58 PM PDT -mrodz,2024-07-16T21:58:32Z,- mrodz pull request closed w/o merging: [7122](https://github.com/hackforla/website/pull/7122#event-13527501215) at 2024-07-16 02:58 PM PDT -mrodz,2024-07-16T22:24:44Z,- mrodz assigned to issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229736172) at 2024-07-16 03:24 PM PDT -mrodz,2024-07-16T22:25:55Z,- mrodz commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2231922439) at 2024-07-16 03:25 PM PDT -mrodz,2024-07-17T00:46:29Z,- mrodz opened pull request: [7126](https://github.com/hackforla/website/pull/7126) at 2024-07-16 05:46 PM PDT -mrodz,2024-07-19T06:52:17Z,- mrodz commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2238485694) at 2024-07-18 11:52 PM PDT -mrodz,2024-07-19T19:44:01Z,- mrodz commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2240010432) at 2024-07-19 12:44 PM PDT -mrodz,2024-07-19T20:50:16Z,- mrodz pull request merged: [7126](https://github.com/hackforla/website/pull/7126#event-13581001828) at 2024-07-19 01:50 PM PDT -mrodz,2024-08-09T05:18:36Z,- mrodz assigned to issue: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-08-08 10:18 PM PDT -mrodz,2024-08-09T05:20:22Z,- mrodz commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2277172058) at 2024-08-08 10:20 PM PDT -mrodz,2024-08-09T07:13:23Z,- mrodz commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2277297683) at 2024-08-09 12:13 AM PDT -mrodz,2024-08-09T23:19:05Z,- mrodz opened pull request: [7260](https://github.com/hackforla/website/pull/7260) at 2024-08-09 04:19 PM PDT -mrodz,2024-08-11T17:36:21Z,- mrodz commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2282834273) at 2024-08-11 10:36 AM PDT -mrodz,2024-08-11T17:40:16Z,- mrodz commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2282835369) at 2024-08-11 10:40 AM PDT -mrodz,2024-08-13T03:01:32Z,- mrodz submitted pull request review: [7264](https://github.com/hackforla/website/pull/7264#pullrequestreview-2234401778) at 2024-08-12 08:01 PM PDT -mrodz,2024-08-13T07:31:42Z,- mrodz submitted pull request review: [7262](https://github.com/hackforla/website/pull/7262#pullrequestreview-2234744160) at 2024-08-13 12:31 AM PDT -mrodz,2024-08-14T00:05:31Z,- mrodz submitted pull request review: [7262](https://github.com/hackforla/website/pull/7262#pullrequestreview-2236883841) at 2024-08-13 05:05 PM PDT -mrodz,2024-08-15T21:37:22Z,- mrodz submitted pull request review: [7299](https://github.com/hackforla/website/pull/7299#pullrequestreview-2241392277) at 2024-08-15 02:37 PM PDT -mrodz,2024-08-16T05:04:44Z,- mrodz pull request merged: [7260](https://github.com/hackforla/website/pull/7260#event-13906038490) at 2024-08-15 10:04 PM PDT -mrodz,2024-08-17T19:40:06Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294956510) at 2024-08-17 12:40 PM PDT -mrodz,2024-08-17T19:41:21Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294956764) at 2024-08-17 12:41 PM PDT -mrodz,2024-08-17T19:41:51Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294956868) at 2024-08-17 12:41 PM PDT -mrodz,2024-08-17T19:42:28Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957006) at 2024-08-17 12:42 PM PDT -mrodz,2024-08-17T19:42:54Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957088) at 2024-08-17 12:42 PM PDT -mrodz,2024-08-17T19:44:30Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957434) at 2024-08-17 12:44 PM PDT -mrodz,2024-08-17T19:46:14Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957893) at 2024-08-17 12:46 PM PDT -mrodz,2024-08-17T19:50:59Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294959121) at 2024-08-17 12:50 PM PDT -mrodz,2024-08-17T19:53:19Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294959587) at 2024-08-17 12:53 PM PDT -mrodz,2024-08-17T19:54:35Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294959849) at 2024-08-17 12:54 PM PDT -mrodz,2024-08-17T19:56:20Z,- mrodz commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2294960220) at 2024-08-17 12:56 PM PDT -mrodz,2024-08-17T20:17:35Z,- mrodz submitted pull request review: [7296](https://github.com/hackforla/website/pull/7296#pullrequestreview-2244146984) at 2024-08-17 01:17 PM PDT -mrodz,2024-08-17T20:18:53Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294974554) at 2024-08-17 01:18 PM PDT -mrodz,2024-08-18T23:20:12Z,- mrodz commented on pull request: [7306](https://github.com/hackforla/website/pull/7306#issuecomment-2295430975) at 2024-08-18 04:20 PM PDT -mrodz,2024-08-18T23:20:28Z,- mrodz commented on pull request: [7311](https://github.com/hackforla/website/pull/7311#issuecomment-2295431040) at 2024-08-18 04:20 PM PDT -mrodz,2024-08-20T00:49:32Z,- mrodz submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2246774251) at 2024-08-19 05:49 PM PDT -mrodz,2024-08-20T01:04:27Z,- mrodz submitted pull request review: [7311](https://github.com/hackforla/website/pull/7311#pullrequestreview-2246784527) at 2024-08-19 06:04 PM PDT -mrodz,2024-08-20T01:18:11Z,- mrodz submitted pull request review: [7296](https://github.com/hackforla/website/pull/7296#pullrequestreview-2246795154) at 2024-08-19 06:18 PM PDT -mrodz,2024-08-27T07:00:07Z,- mrodz commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2311721644) at 2024-08-27 12:00 AM PDT -mrodz,2024-08-28T04:12:16Z,- mrodz submitted pull request review: [7323](https://github.com/hackforla/website/pull/7323#pullrequestreview-2265091700) at 2024-08-27 09:12 PM PDT -mrodz,2024-08-28T23:54:43Z,- mrodz submitted pull request review: [7323](https://github.com/hackforla/website/pull/7323#pullrequestreview-2267445613) at 2024-08-28 04:54 PM PDT -mrodz,2024-10-01T14:44:11Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2386198687) at 2024-10-01 07:44 AM PDT -mrodz,2024-10-01T16:21:13Z,- mrodz commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2386449816) at 2024-10-01 09:21 AM PDT -mrodz,2024-10-01T16:23:12Z,- mrodz commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2386453827) at 2024-10-01 09:23 AM PDT -mrodz,2024-10-01T18:01:48Z,- mrodz submitted pull request review: [7554](https://github.com/hackforla/website/pull/7554#pullrequestreview-2341046768) at 2024-10-01 11:01 AM PDT -mrodz,2024-10-01T18:37:24Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2386703984) at 2024-10-01 11:37 AM PDT -mrodz,2024-10-01T18:41:23Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2386710956) at 2024-10-01 11:41 AM PDT -mrodz,2024-10-01T18:52:14Z,- mrodz assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2356793436) at 2024-10-01 11:52 AM PDT -mrodz,2024-10-01T23:51:18Z,- mrodz commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2387278976) at 2024-10-01 04:51 PM PDT -mrodz,2024-10-02T00:02:28Z,- mrodz commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2387289101) at 2024-10-01 05:02 PM PDT -mrodz,2024-10-02T00:02:36Z,- mrodz unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2387289101) at 2024-10-01 05:02 PM PDT -mrodz,2024-10-12T03:05:06Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2408323378) at 2024-10-11 08:05 PM PDT -mrodz,2024-10-12T03:49:50Z,- mrodz submitted pull request review: [7538](https://github.com/hackforla/website/pull/7538#pullrequestreview-2363731308) at 2024-10-11 08:49 PM PDT -mrodz,2024-11-19T07:53:58Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2484954929) at 2024-11-18 11:53 PM PST -mrodz,2024-12-11T17:30:16Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2536642796) at 2024-12-11 09:30 AM PST -mrodz,2025-01-15T23:56:38Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2594172005) at 2025-01-15 03:56 PM PST -mSharifHub,6953,SKILLS ISSUE -mSharifHub,2024-06-04T03:13:42Z,- mSharifHub opened issue: [6953](https://github.com/hackforla/website/issues/6953) at 2024-06-03 08:13 PM PDT -mSharifHub,2024-06-04T03:14:35Z,- mSharifHub assigned to issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2146488567) at 2024-06-03 08:14 PM PDT -mSharifHub,2024-06-10T19:18:07Z,- mSharifHub assigned to issue: [6934](https://github.com/hackforla/website/issues/6934) at 2024-06-10 12:18 PM PDT -mSharifHub,2024-06-10T19:20:50Z,- mSharifHub commented on issue: [6934](https://github.com/hackforla/website/issues/6934#issuecomment-2159122402) at 2024-06-10 12:20 PM PDT -mSharifHub,2024-06-10T20:02:15Z,- mSharifHub opened pull request: [6982](https://github.com/hackforla/website/pull/6982) at 2024-06-10 01:02 PM PDT -mSharifHub,2024-06-10T20:39:30Z,- mSharifHub submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2108711267) at 2024-06-10 01:39 PM PDT -mSharifHub,2024-06-10T20:52:08Z,- mSharifHub submitted pull request review: [6972](https://github.com/hackforla/website/pull/6972#pullrequestreview-2108730746) at 2024-06-10 01:52 PM PDT -mSharifHub,2024-06-10T20:52:51Z,- mSharifHub submitted pull request review: [6972](https://github.com/hackforla/website/pull/6972#pullrequestreview-2108731690) at 2024-06-10 01:52 PM PDT -mSharifHub,2024-06-11T20:39:15Z,- mSharifHub opened pull request: [6988](https://github.com/hackforla/website/pull/6988) at 2024-06-11 01:39 PM PDT -mSharifHub,2024-06-11T20:49:13Z,- mSharifHub pull request closed w/o merging: [6988](https://github.com/hackforla/website/pull/6988#event-13122650801) at 2024-06-11 01:49 PM PDT -mSharifHub,2024-06-13T19:32:38Z,- mSharifHub assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2159147641) at 2024-06-13 12:32 PM PDT -mSharifHub,2024-06-13T19:32:49Z,- mSharifHub unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2159147641) at 2024-06-13 12:32 PM PDT -mSharifHub,2024-06-13T19:54:15Z,- mSharifHub assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166623518) at 2024-06-13 12:54 PM PDT -mSharifHub,2024-06-13T19:56:51Z,- mSharifHub opened pull request: [7002](https://github.com/hackforla/website/pull/7002) at 2024-06-13 12:56 PM PDT -mSharifHub,2024-06-13T20:12:03Z,- mSharifHub submitted pull request review: [7001](https://github.com/hackforla/website/pull/7001#pullrequestreview-2116816598) at 2024-06-13 01:12 PM PDT -mSharifHub,2024-06-13T20:14:37Z,- mSharifHub submitted pull request review: [6973](https://github.com/hackforla/website/pull/6973#pullrequestreview-2116820795) at 2024-06-13 01:14 PM PDT -mSharifHub,2024-06-13T22:02:30Z,- mSharifHub pull request closed w/o merging: [7002](https://github.com/hackforla/website/pull/7002#event-13153280387) at 2024-06-13 03:02 PM PDT -mSharifHub,2024-06-13T22:08:53Z,- mSharifHub unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166656325) at 2024-06-13 03:08 PM PDT -mSharifHub,2024-06-13T22:54:54Z,- mSharifHub commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166921103) at 2024-06-13 03:54 PM PDT -mSharifHub,2024-06-17T19:41:18Z,- mSharifHub commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2174284708) at 2024-06-17 12:41 PM PDT -mSharifHub,2024-06-17T19:42:08Z,- mSharifHub submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2123773558) at 2024-06-17 12:42 PM PDT -mSharifHub,2024-06-27T21:08:43Z,- mSharifHub assigned to issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1752105078) at 2024-06-27 02:08 PM PDT -mSharifHub,2024-06-27T21:26:35Z,- mSharifHub unassigned from issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2195669231) at 2024-06-27 02:26 PM PDT -mSharifHub,2024-06-27T21:38:45Z,- mSharifHub submitted pull request review: [7074](https://github.com/hackforla/website/pull/7074#pullrequestreview-2146559040) at 2024-06-27 02:38 PM PDT -mSharifHub,2024-06-27T22:21:33Z,- mSharifHub submitted pull request review: [7073](https://github.com/hackforla/website/pull/7073#pullrequestreview-2146616800) at 2024-06-27 03:21 PM PDT -mSharifHub,2024-06-27T22:38:48Z,- mSharifHub submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2146639932) at 2024-06-27 03:38 PM PDT -mSharifHub,2024-07-02T05:25:37Z,- mSharifHub pull request closed w/o merging: [6982](https://github.com/hackforla/website/pull/6982#event-13359810145) at 2024-07-01 10:25 PM PDT -mSharifHub,2024-07-09T00:10:11Z,- mSharifHub commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2215643793) at 2024-07-08 05:10 PM PDT -mSharifHub,2024-07-10T02:01:34Z,- mSharifHub commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2219333014) at 2024-07-09 07:01 PM PDT -mSharifHub,2024-07-15T01:41:04Z,- mSharifHub assigned to issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2199242303) at 2024-07-14 06:41 PM PDT -mSharifHub,2024-07-15T02:18:09Z,- mSharifHub opened pull request: [7109](https://github.com/hackforla/website/pull/7109) at 2024-07-14 07:18 PM PDT -mSharifHub,2024-07-15T18:43:13Z,- mSharifHub pull request closed w/o merging: [7109](https://github.com/hackforla/website/pull/7109#event-13509657104) at 2024-07-15 11:43 AM PDT -mSharifHub,2024-07-15T18:43:26Z,- mSharifHub unassigned from issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229153557) at 2024-07-15 11:43 AM PDT -mSharifHub,2024-07-15T23:24:26Z,- mSharifHub assigned to issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229415606) at 2024-07-15 04:24 PM PDT -mSharifHub,2024-07-15T23:25:48Z,- mSharifHub commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229611772) at 2024-07-15 04:25 PM PDT -mSharifHub,2024-07-15T23:34:16Z,- mSharifHub opened pull request: [7124](https://github.com/hackforla/website/pull/7124) at 2024-07-15 04:34 PM PDT -mSharifHub,2024-07-16T03:23:54Z,- mSharifHub commented on pull request: [7124](https://github.com/hackforla/website/pull/7124#issuecomment-2229929047) at 2024-07-15 08:23 PM PDT -mSharifHub,2024-07-16T05:27:08Z,- mSharifHub pull request closed w/o merging: [7124](https://github.com/hackforla/website/pull/7124#event-13515226595) at 2024-07-15 10:27 PM PDT -mSharifHub,2024-07-16T05:43:09Z,- mSharifHub opened pull request: [7125](https://github.com/hackforla/website/pull/7125) at 2024-07-15 10:43 PM PDT -mSharifHub,2024-07-19T00:14:05Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2237800533) at 2024-07-18 05:14 PM PDT -mSharifHub,2024-07-19T18:03:56Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239823945) at 2024-07-19 11:03 AM PDT -mSharifHub,2024-07-19T19:12:34Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239959473) at 2024-07-19 12:12 PM PDT -mSharifHub,2024-07-20T02:31:34Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2240873517) at 2024-07-19 07:31 PM PDT -mSharifHub,2024-08-18T04:10:42Z,- mSharifHub pull request closed w/o merging: [7125](https://github.com/hackforla/website/pull/7125#event-13921123586) at 2024-08-17 09:10 PM PDT -mSharifHub,2024-08-18T04:10:49Z,- mSharifHub unassigned from issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-08-17 09:10 PM PDT -mSharifHub,2024-08-18T04:21:07Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2295105157) at 2024-08-17 09:21 PM PDT -mSharifHub,2024-08-19T15:58:37Z,- mSharifHub assigned to issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2282833231) at 2024-08-19 08:58 AM PDT -mSharifHub,2024-08-19T16:40:04Z,- mSharifHub opened pull request: [7315](https://github.com/hackforla/website/pull/7315) at 2024-08-19 09:40 AM PDT -mSharifHub,2024-08-23T15:43:06Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2307347717) at 2024-08-23 08:43 AM PDT -mSharifHub,2024-08-28T18:51:39Z,- mSharifHub submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2267031244) at 2024-08-28 11:51 AM PDT -mSharifHub,2024-09-02T01:31:30Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323608320) at 2024-09-01 06:31 PM PDT -mSharifHub,2024-09-02T01:33:34Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323609809) at 2024-09-01 06:33 PM PDT -mSharifHub,2024-09-02T02:42:32Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323683625) at 2024-09-01 07:42 PM PDT -mSharifHub,2024-09-12T02:18:34Z,- mSharifHub pull request merged: [7315](https://github.com/hackforla/website/pull/7315#event-14225611150) at 2024-09-11 07:18 PM PDT -mSharifHub,2024-09-15T19:43:02Z,- mSharifHub assigned to issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283227775) at 2024-09-15 12:43 PM PDT -mSharifHub,2024-09-15T19:52:18Z,- mSharifHub commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2351770540) at 2024-09-15 12:52 PM PDT -mSharifHub,2024-09-25T06:20:13Z,- mSharifHub opened pull request: [7522](https://github.com/hackforla/website/pull/7522) at 2024-09-24 11:20 PM PDT -mSharifHub,2024-09-26T05:37:56Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2375981132) at 2024-09-25 10:37 PM PDT -mSharifHub,2024-09-26T05:53:02Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2375997576) at 2024-09-25 10:53 PM PDT -mSharifHub,2024-09-26T05:56:05Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2376000980) at 2024-09-25 10:56 PM PDT -mSharifHub,2024-09-26T06:12:00Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2376021997) at 2024-09-25 11:12 PM PDT -mSharifHub,2024-09-26T22:43:17Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2378070952) at 2024-09-26 03:43 PM PDT -mSharifHub,2024-09-27T07:26:29Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2378592704) at 2024-09-27 12:26 AM PDT -mSharifHub,2024-10-01T01:03:12Z,- mSharifHub pull request merged: [7522](https://github.com/hackforla/website/pull/7522#event-14464460941) at 2024-09-30 06:03 PM PDT -mSharifHub,2024-10-16T10:34:36Z,- mSharifHub assigned to issue: [7391](https://github.com/hackforla/website/issues/7391) at 2024-10-16 03:34 AM PDT -mSharifHub,2024-10-16T10:34:51Z,- mSharifHub unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391) at 2024-10-16 03:34 AM PDT -mSharifHub,2025-04-01T02:11:07Z,- mSharifHub opened issue: [8027](https://github.com/hackforla/website/issues/8027) at 2025-03-31 07:11 PM PDT -mshirk2,4983,SKILLS ISSUE -mshirk2,2023-07-18T01:57:41Z,- mshirk2 opened issue: [4983](https://github.com/hackforla/website/issues/4983) at 2023-07-17 06:57 PM PDT -mshirk2,2023-07-18T03:15:39Z,- mshirk2 assigned to issue: [4983](https://github.com/hackforla/website/issues/4983) at 2023-07-17 08:15 PM PDT -mshirk2,2023-07-25T19:54:54Z,- mshirk2 assigned to issue: [4809](https://github.com/hackforla/website/issues/4809) at 2023-07-25 12:54 PM PDT -mshirk2,2023-07-25T19:58:02Z,- mshirk2 commented on issue: [4809](https://github.com/hackforla/website/issues/4809#issuecomment-1650458646) at 2023-07-25 12:58 PM PDT -mshirk2,2023-07-25T20:00:27Z,- mshirk2 commented on issue: [4983](https://github.com/hackforla/website/issues/4983#issuecomment-1650466303) at 2023-07-25 01:00 PM PDT -mshirk2,2023-07-25T21:48:47Z,- mshirk2 opened pull request: [5061](https://github.com/hackforla/website/pull/5061) at 2023-07-25 02:48 PM PDT -mshirk2,2023-07-26T02:37:59Z,- mshirk2 commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1650885106) at 2023-07-25 07:37 PM PDT -mshirk2,2023-07-26T17:59:07Z,- mshirk2 submitted pull request review: [5056](https://github.com/hackforla/website/pull/5056#pullrequestreview-1548312151) at 2023-07-26 10:59 AM PDT -mshirk2,2023-07-29T06:04:56Z,- mshirk2 pull request merged: [5061](https://github.com/hackforla/website/pull/5061#event-9953848376) at 2023-07-28 11:04 PM PDT -mshirk2,2023-08-01T19:27:24Z,- mshirk2 closed issue as completed: [4983](https://github.com/hackforla/website/issues/4983#event-9980377384) at 2023-08-01 12:27 PM PDT -mshirk2,2023-08-16T19:14:43Z,- mshirk2 assigned to issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1666933084) at 2023-08-16 12:14 PM PDT -mshirk2,2023-08-16T19:17:50Z,- mshirk2 commented on issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1681147516) at 2023-08-16 12:17 PM PDT -mshirk2,2023-08-17T22:56:29Z,- mshirk2 opened pull request: [5247](https://github.com/hackforla/website/pull/5247) at 2023-08-17 03:56 PM PDT -mshirk2,2023-08-19T20:55:03Z,- mshirk2 commented on pull request: [5247](https://github.com/hackforla/website/pull/5247#issuecomment-1685110789) at 2023-08-19 01:55 PM PDT -mshirk2,2023-08-20T02:58:53Z,- mshirk2 pull request merged: [5247](https://github.com/hackforla/website/pull/5247#event-10137355016) at 2023-08-19 07:58 PM PDT -mshirk2,2023-08-30T02:24:39Z,- mshirk2 commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698394521) at 2023-08-29 07:24 PM PDT -mshirk2,2023-08-30T22:21:37Z,- mshirk2 submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1603578220) at 2023-08-30 03:21 PM PDT -mshirk2,2023-09-14T19:46:59Z,- mshirk2 assigned to issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1717151055) at 2023-09-14 12:46 PM PDT -mshirk2,2023-09-14T19:50:35Z,- mshirk2 commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1720050432) at 2023-09-14 12:50 PM PDT -mshirk2,2023-09-20T18:49:52Z,- mshirk2 commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1728263460) at 2023-09-20 11:49 AM PDT -mshirk2,2023-09-27T02:32:22Z,- mshirk2 commented on pull request: [5575](https://github.com/hackforla/website/pull/5575#issuecomment-1736578426) at 2023-09-26 07:32 PM PDT -mshirk2,2023-09-29T21:08:33Z,- mshirk2 submitted pull request review: [5575](https://github.com/hackforla/website/pull/5575#pullrequestreview-1651478979) at 2023-09-29 02:08 PM PDT -mshirk2,2023-10-24T20:56:53Z,- mshirk2 commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1778025366) at 2023-10-24 01:56 PM PDT -mshirk2,2023-10-24T22:27:04Z,- mshirk2 submitted pull request review: [5771](https://github.com/hackforla/website/pull/5771#pullrequestreview-1695987328) at 2023-10-24 03:27 PM PDT -mshirk2,2023-11-09T01:18:16Z,- mshirk2 assigned to issue: [5345](https://github.com/hackforla/website/issues/5345) at 2023-11-08 05:18 PM PST -mshirk2,2023-11-09T01:20:07Z,- mshirk2 commented on issue: [5345](https://github.com/hackforla/website/issues/5345#issuecomment-1803014067) at 2023-11-08 05:20 PM PST -mshirk2,2023-11-14T22:56:00Z,- mshirk2 opened pull request: [5906](https://github.com/hackforla/website/pull/5906) at 2023-11-14 02:56 PM PST -mshirk2,2023-11-15T03:40:52Z,- mshirk2 commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1811760585) at 2023-11-14 07:40 PM PST -mshirk2,2023-11-15T04:00:32Z,- mshirk2 commented on pull request: [5902](https://github.com/hackforla/website/pull/5902#issuecomment-1811772484) at 2023-11-14 08:00 PM PST -mshirk2,2023-11-15T19:19:23Z,- mshirk2 submitted pull request review: [5902](https://github.com/hackforla/website/pull/5902#pullrequestreview-1732757297) at 2023-11-15 11:19 AM PST -mshirk2,2023-11-16T20:17:05Z,- mshirk2 submitted pull request review: [5900](https://github.com/hackforla/website/pull/5900#pullrequestreview-1735382196) at 2023-11-16 12:17 PM PST -mshirk2,2023-11-19T21:09:34Z,- mshirk2 pull request merged: [5906](https://github.com/hackforla/website/pull/5906#event-11004605521) at 2023-11-19 01:09 PM PST -mshirk2,2024-02-02T20:17:27Z,- mshirk2 commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1924632735) at 2024-02-02 12:17 PM PST -mshirk2,2024-02-02T21:11:57Z,- mshirk2 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1860398726) at 2024-02-02 01:11 PM PST -mshirk2,2024-02-02T21:12:05Z,- mshirk2 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1860398981) at 2024-02-02 01:12 PM PST -mshirk2,2024-02-05T17:54:43Z,- mshirk2 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1863448485) at 2024-02-05 09:54 AM PST -msiller455,5723,SKILLS ISSUE -msiller455,2023-10-17T02:39:14Z,- msiller455 opened issue: [5723](https://github.com/hackforla/website/issues/5723) at 2023-10-16 07:39 PM PDT -msiller455,2023-10-17T02:40:15Z,- msiller455 assigned to issue: [5723](https://github.com/hackforla/website/issues/5723#issuecomment-1765564335) at 2023-10-16 07:40 PM PDT -muditchoudhary,2021-12-02T13:06:22Z,- muditchoudhary commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-984610975) at 2021-12-02 05:06 AM PST -muditchoudhary,2021-12-14T13:38:51Z,- muditchoudhary commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-993552757) at 2021-12-14 05:38 AM PST -mugdhchauhan,7698,SKILLS ISSUE -mugdhchauhan,2024-11-05T04:22:34Z,- mugdhchauhan opened issue: [7698](https://github.com/hackforla/website/issues/7698) at 2024-11-04 08:22 PM PST -mugdhchauhan,2024-11-05T13:34:13Z,- mugdhchauhan assigned to issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2456203262) at 2024-11-05 05:34 AM PST -mugdhchauhan,2024-11-05T14:56:13Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2457394152) at 2024-11-05 06:56 AM PST -mugdhchauhan,2024-11-09T19:31:36Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466421102) at 2024-11-09 11:31 AM PST -mugdhchauhan,2024-11-09T19:51:50Z,- mugdhchauhan assigned to issue: [7623](https://github.com/hackforla/website/issues/7623) at 2024-11-09 11:51 AM PST -mugdhchauhan,2024-11-09T19:57:45Z,- mugdhchauhan commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2466436962) at 2024-11-09 11:57 AM PST -mugdhchauhan,2024-11-09T21:03:14Z,- mugdhchauhan commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2466459153) at 2024-11-09 01:03 PM PST -mugdhchauhan,2024-11-09T21:34:38Z,- mugdhchauhan opened pull request: [7712](https://github.com/hackforla/website/pull/7712) at 2024-11-09 01:34 PM PST -mugdhchauhan,2024-11-10T00:45:23Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466527827) at 2024-11-09 04:45 PM PST -mugdhchauhan,2024-11-10T02:35:43Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466554845) at 2024-11-09 06:35 PM PST -mugdhchauhan,2024-11-10T18:03:39Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466829438) at 2024-11-10 10:03 AM PST -mugdhchauhan,2024-11-12T19:19:57Z,- mugdhchauhan commented on pull request: [7712](https://github.com/hackforla/website/pull/7712#issuecomment-2471368605) at 2024-11-12 11:19 AM PST -mugdhchauhan,2024-11-15T00:52:45Z,- mugdhchauhan pull request merged: [7712](https://github.com/hackforla/website/pull/7712#event-15305958637) at 2024-11-14 04:52 PM PST -mugdhchauhan,2024-11-16T20:11:47Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2480771206) at 2024-11-16 12:11 PM PST -mugdhchauhan,2024-11-17T17:32:12Z,- mugdhchauhan assigned to issue: [7650](https://github.com/hackforla/website/issues/7650) at 2024-11-17 09:32 AM PST -mugdhchauhan,2024-11-17T17:38:32Z,- mugdhchauhan commented on issue: [7650](https://github.com/hackforla/website/issues/7650#issuecomment-2481396423) at 2024-11-17 09:38 AM PST -mugdhchauhan,2024-11-19T00:58:18Z,- mugdhchauhan commented on issue: [7650](https://github.com/hackforla/website/issues/7650#issuecomment-2484486962) at 2024-11-18 04:58 PM PST -mugdhchauhan,2024-11-19T01:14:39Z,- mugdhchauhan opened pull request: [7728](https://github.com/hackforla/website/pull/7728) at 2024-11-18 05:14 PM PST -mugdhchauhan,2024-11-20T00:25:05Z,- mugdhchauhan commented on pull request: [7728](https://github.com/hackforla/website/pull/7728#issuecomment-2487037655) at 2024-11-19 04:25 PM PST -mugdhchauhan,2024-11-20T02:50:54Z,- mugdhchauhan pull request merged: [7728](https://github.com/hackforla/website/pull/7728#event-15358056034) at 2024-11-19 06:50 PM PST -mugdhchauhan,2024-11-20T03:22:44Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2487266975) at 2024-11-19 07:22 PM PST -mugdhchauhan,2024-11-20T03:23:19Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2487267483) at 2024-11-19 07:23 PM PST -mugdhchauhan,2024-11-20T03:24:40Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2487268696) at 2024-11-19 07:24 PM PST -mugdhchauhan,2024-11-22T14:50:23Z,- mugdhchauhan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2493934955) at 2024-11-22 06:50 AM PST -mugdhchauhan,2024-11-22T17:53:42Z,- mugdhchauhan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2455248045) at 2024-11-22 09:53 AM PST -mugdhchauhan,2024-11-22T19:44:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2494659545) at 2024-11-22 11:44 AM PST -mugdhchauhan,2024-11-23T08:32:47Z,- mugdhchauhan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2495400097) at 2024-11-23 12:32 AM PST -mugdhchauhan,2024-11-23T08:34:00Z,- mugdhchauhan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2456370424) at 2024-11-23 12:34 AM PST -mugdhchauhan,2024-11-23T08:36:14Z,- mugdhchauhan commented on issue: [7703](https://github.com/hackforla/website/issues/7703#issuecomment-2495400950) at 2024-11-23 12:36 AM PST -mugdhchauhan,2024-11-23T09:20:05Z,- mugdhchauhan assigned to issue: [7398](https://github.com/hackforla/website/issues/7398) at 2024-11-23 01:20 AM PST -mugdhchauhan,2024-11-23T09:20:35Z,- mugdhchauhan commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2495413148) at 2024-11-23 01:20 AM PST -mugdhchauhan,2024-11-24T18:40:12Z,- mugdhchauhan commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2496163850) at 2024-11-24 10:40 AM PST -mugdhchauhan,2024-11-25T00:11:12Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2496439294) at 2024-11-24 04:11 PM PST -mugdhchauhan,2024-11-25T00:11:48Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2496439671) at 2024-11-24 04:11 PM PST -mugdhchauhan,2024-11-25T00:56:43Z,- mugdhchauhan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2496470298) at 2024-11-24 04:56 PM PST -mugdhchauhan,2024-11-27T14:42:33Z,- mugdhchauhan commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504053782) at 2024-11-27 06:42 AM PST -mugdhchauhan,2024-11-27T14:45:44Z,- mugdhchauhan submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465238543) at 2024-11-27 06:45 AM PST -mugdhchauhan,2024-11-27T15:00:32Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2504096587) at 2024-11-27 07:00 AM PST -mugdhchauhan,2024-11-28T06:38:45Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2505364779) at 2024-11-27 10:38 PM PST -mugdhchauhan,2024-11-28T06:40:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2505366204) at 2024-11-27 10:40 PM PST -mugdhchauhan,2024-11-29T08:54:41Z,- mugdhchauhan opened issue: [7778](https://github.com/hackforla/website/issues/7778) at 2024-11-29 12:54 AM PST -mugdhchauhan,2024-11-29T08:54:42Z,- mugdhchauhan assigned to issue: [7778](https://github.com/hackforla/website/issues/7778) at 2024-11-29 12:54 AM PST -mugdhchauhan,2024-11-29T09:08:19Z,- mugdhchauhan opened issue: [7779](https://github.com/hackforla/website/issues/7779) at 2024-11-29 01:08 AM PST -mugdhchauhan,2024-11-29T09:17:13Z,- mugdhchauhan opened issue: [7780](https://github.com/hackforla/website/issues/7780) at 2024-11-29 01:17 AM PST -mugdhchauhan,2024-11-29T09:27:32Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2507409015) at 2024-11-29 01:27 AM PST -mugdhchauhan,2024-11-30T19:25:59Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2509154981) at 2024-11-30 11:25 AM PST -mugdhchauhan,2024-11-30T19:26:46Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2509158974) at 2024-11-30 11:26 AM PST -mugdhchauhan,2024-12-03T18:01:33Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2515246392) at 2024-12-03 10:01 AM PST -mugdhchauhan,2024-12-03T23:55:50Z,- mugdhchauhan assigned to issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2260008110) at 2024-12-03 03:55 PM PST -mugdhchauhan,2024-12-03T23:58:42Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2515828361) at 2024-12-03 03:58 PM PST -mugdhchauhan,2024-12-04T19:15:10Z,- mugdhchauhan opened issue: [7792](https://github.com/hackforla/website/issues/7792) at 2024-12-04 11:15 AM PST -mugdhchauhan,2024-12-04T19:17:21Z,- mugdhchauhan opened issue: [7794](https://github.com/hackforla/website/issues/7794) at 2024-12-04 11:17 AM PST -mugdhchauhan,2024-12-04T19:19:17Z,- mugdhchauhan opened issue: [7795](https://github.com/hackforla/website/issues/7795) at 2024-12-04 11:19 AM PST -mugdhchauhan,2024-12-04T19:29:18Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2518385859) at 2024-12-04 11:29 AM PST -mugdhchauhan,2024-12-04T19:39:42Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2518404417) at 2024-12-04 11:39 AM PST -mugdhchauhan,2024-12-04T19:56:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2518436811) at 2024-12-04 11:56 AM PST -mugdhchauhan,2024-12-09T04:12:14Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2526847535) at 2024-12-08 08:12 PM PST -mugdhchauhan,2024-12-10T00:19:33Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2529899648) at 2024-12-09 04:19 PM PST -mugdhchauhan,2024-12-16T14:06:12Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2545721379) at 2024-12-16 06:06 AM PST -mugdhchauhan,2025-01-01T14:38:22Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2567033811) at 2025-01-01 06:38 AM PST -mugdhchauhan,2025-01-10T08:09:18Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2582013850) at 2025-01-10 12:09 AM PST -mugdhchauhan,2025-01-10T08:32:15Z,- mugdhchauhan commented on pull request: [7816](https://github.com/hackforla/website/pull/7816#issuecomment-2582053306) at 2025-01-10 12:32 AM PST -mugdhchauhan,2025-01-10T09:02:18Z,- mugdhchauhan submitted pull request review: [7816](https://github.com/hackforla/website/pull/7816#pullrequestreview-2541871145) at 2025-01-10 01:02 AM PST -mugdhchauhan,2025-01-10T09:05:49Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2582117566) at 2025-01-10 01:05 AM PST -mugdhchauhan,2025-01-10T12:03:08Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2582548700) at 2025-01-10 04:03 AM PST -mugdhchauhan,2025-01-15T00:57:37Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2591411997) at 2025-01-14 04:57 PM PST -mugdhchauhan,2025-01-15T01:00:03Z,- mugdhchauhan submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2551355806) at 2025-01-14 05:00 PM PST -mugdhchauhan,2025-01-15T01:02:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2591416567) at 2025-01-14 05:02 PM PST -mugdhchauhan,2025-01-16T17:42:39Z,- mugdhchauhan commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2596338301) at 2025-01-16 09:42 AM PST -mugdhchauhan,2025-01-16T17:44:36Z,- mugdhchauhan submitted pull request review: [7832](https://github.com/hackforla/website/pull/7832#pullrequestreview-2556835931) at 2025-01-16 09:44 AM PST -mugdhchauhan,2025-01-16T17:57:35Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2596365053) at 2025-01-16 09:57 AM PST -mugdhchauhan,2025-01-16T18:00:32Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2596370385) at 2025-01-16 10:00 AM PST -mugdhchauhan,2025-01-17T00:47:20Z,- mugdhchauhan commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2597201045) at 2025-01-16 04:47 PM PST -mugdhchauhan,2025-01-17T00:48:29Z,- mugdhchauhan commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2597202272) at 2025-01-16 04:48 PM PST -mugdhchauhan,2025-01-19T15:46:48Z,- mugdhchauhan commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2600918077) at 2025-01-19 07:46 AM PST -mugdhchauhan,2025-01-19T15:47:36Z,- mugdhchauhan submitted pull request review: [7832](https://github.com/hackforla/website/pull/7832#pullrequestreview-2561038210) at 2025-01-19 07:47 AM PST -mugdhchauhan,2025-01-19T16:13:00Z,- mugdhchauhan commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2600926861) at 2025-01-19 08:13 AM PST -mugdhchauhan,2025-01-19T16:15:28Z,- mugdhchauhan submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2561043124) at 2025-01-19 08:15 AM PST -mugdhchauhan,2025-01-19T16:18:44Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2600928795) at 2025-01-19 08:18 AM PST -mugdhchauhan,2025-01-21T05:09:33Z,- mugdhchauhan commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2603669442) at 2025-01-20 09:09 PM PST -mugdhchauhan,2025-01-21T05:11:13Z,- mugdhchauhan submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2563491154) at 2025-01-20 09:11 PM PST -mugdhchauhan,2025-01-21T07:13:32Z,- mugdhchauhan submitted pull request review: [7817](https://github.com/hackforla/website/pull/7817#pullrequestreview-2563647121) at 2025-01-20 11:13 PM PST -mugdhchauhan,2025-01-21T08:02:30Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2603903481) at 2025-01-21 12:02 AM PST -mugdhchauhan,2025-01-21T16:49:48Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2605251976) at 2025-01-21 08:49 AM PST -mugdhchauhan,2025-01-21T16:50:26Z,- mugdhchauhan submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2565200541) at 2025-01-21 08:50 AM PST -mugdhchauhan,2025-01-21T17:51:52Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2605388161) at 2025-01-21 09:51 AM PST -mugdhchauhan,2025-01-28T17:46:47Z,- mugdhchauhan commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2619678744) at 2025-01-28 09:46 AM PST -mugdhchauhan,2025-01-28T17:47:38Z,- mugdhchauhan submitted pull request review: [7817](https://github.com/hackforla/website/pull/7817#pullrequestreview-2579018459) at 2025-01-28 09:47 AM PST -mugdhchauhan,2025-01-28T18:35:42Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2619781493) at 2025-01-28 10:35 AM PST -mugdhchauhan,2025-01-29T04:53:54Z,- mugdhchauhan commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2620719452) at 2025-01-28 08:53 PM PST -mugdhchauhan,2025-01-29T05:02:18Z,- mugdhchauhan submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2579998830) at 2025-01-28 09:02 PM PST -mugdhchauhan,2025-01-29T05:04:39Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2620729047) at 2025-01-28 09:04 PM PST -mugdhchauhan,2025-02-05T18:56:44Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2637767232) at 2025-02-05 10:56 AM PST -mugdhchauhan,2025-02-09T15:19:01Z,- mugdhchauhan commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2646353349) at 2025-02-09 07:19 AM PST -mugdhchauhan,2025-02-09T15:31:20Z,- mugdhchauhan submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2604293682) at 2025-02-09 07:31 AM PST -mugdhchauhan,2025-02-09T15:35:19Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2646360174) at 2025-02-09 07:35 AM PST -mugdhchauhan,2025-02-11T00:33:01Z,- mugdhchauhan commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2649561411) at 2025-02-10 04:33 PM PST -mugdhchauhan,2025-02-11T02:51:17Z,- mugdhchauhan commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2649695592) at 2025-02-10 06:51 PM PST -mugdhchauhan,2025-02-11T02:51:51Z,- mugdhchauhan submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2607588473) at 2025-02-10 06:51 PM PST -mugdhchauhan,2025-02-11T17:53:03Z,- mugdhchauhan commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2651592399) at 2025-02-11 09:53 AM PST -mugdhchauhan,2025-02-11T17:55:06Z,- mugdhchauhan submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2609563142) at 2025-02-11 09:55 AM PST -mugdhchauhan,2025-02-11T18:00:37Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2651608337) at 2025-02-11 10:00 AM PST -mugdhchauhan,2025-02-12T03:52:20Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2652598029) at 2025-02-11 07:52 PM PST -mugdhchauhan,2025-02-12T03:56:38Z,- mugdhchauhan submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2610756756) at 2025-02-11 07:56 PM PST -mugdhchauhan,2025-02-12T03:59:10Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2652604548) at 2025-02-11 07:59 PM PST -mugdhchauhan,2025-02-12T18:48:35Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654571433) at 2025-02-12 10:48 AM PST -mugdhchauhan,2025-02-12T18:52:58Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654579953) at 2025-02-12 10:52 AM PST -mugdhchauhan,2025-02-12T19:07:03Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654613296) at 2025-02-12 11:07 AM PST -mugdhchauhan,2025-02-12T19:07:56Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654614951) at 2025-02-12 11:07 AM PST -mugdhchauhan,2025-02-13T03:39:19Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2655388873) at 2025-02-12 07:39 PM PST -mugdhchauhan,2025-02-17T13:14:40Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2663105513) at 2025-02-17 05:14 AM PST -mugdhchauhan,2025-02-17T13:19:10Z,- mugdhchauhan submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2621055600) at 2025-02-17 05:19 AM PST -mugdhchauhan,2025-02-17T23:19:21Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2664216472) at 2025-02-17 03:19 PM PST -mugdhchauhan,2025-02-18T18:36:02Z,- mugdhchauhan assigned to issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2603457201) at 2025-02-18 10:36 AM PST -mugdhchauhan,2025-02-18T18:38:52Z,- mugdhchauhan commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2666577659) at 2025-02-18 10:38 AM PST -mugdhchauhan,2025-02-18T19:07:59Z,- mugdhchauhan opened issue: [7919](https://github.com/hackforla/website/issues/7919) at 2025-02-18 11:07 AM PST -mugdhchauhan,2025-02-20T04:42:56Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2670450571) at 2025-02-19 08:42 PM PST -mugdhchauhan,2025-02-21T01:28:29Z,- mugdhchauhan commented on issue: [7919](https://github.com/hackforla/website/issues/7919#issuecomment-2673128997) at 2025-02-20 05:28 PM PST -mugdhchauhan,2025-02-21T01:32:40Z,- mugdhchauhan commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2673134952) at 2025-02-20 05:32 PM PST -mugdhchauhan,2025-02-24T02:02:59Z,- mugdhchauhan opened issue: [7937](https://github.com/hackforla/website/issues/7937) at 2025-02-23 06:02 PM PST -mugdhchauhan,2025-02-27T17:09:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2688590611) at 2025-02-27 09:09 AM PST -mugdhchauhan,2025-02-28T18:37:29Z,- mugdhchauhan commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2691310511) at 2025-02-28 10:37 AM PST -mugdhchauhan,2025-02-28T18:37:40Z,- mugdhchauhan closed issue by PR 7947: [7849](https://github.com/hackforla/website/issues/7849#event-16516532475) at 2025-02-28 10:37 AM PST -mugdhchauhan,2025-02-28T19:16:42Z,- mugdhchauhan commented on pull request: [7945](https://github.com/hackforla/website/pull/7945#issuecomment-2691378321) at 2025-02-28 11:16 AM PST -mugdhchauhan,2025-02-28T19:17:01Z,- mugdhchauhan closed issue by PR 7945: [7605](https://github.com/hackforla/website/issues/7605#event-16516913094) at 2025-02-28 11:17 AM PST -mugdhchauhan,2025-02-28T19:43:17Z,- mugdhchauhan commented on issue: [7919](https://github.com/hackforla/website/issues/7919#issuecomment-2691421460) at 2025-02-28 11:43 AM PST -mugdhchauhan,2025-02-28T19:43:17Z,- mugdhchauhan closed issue as duplicate: [7919](https://github.com/hackforla/website/issues/7919#event-16517158286) at 2025-02-28 11:43 AM PST -mugdhchauhan,2025-02-28T19:48:03Z,- mugdhchauhan commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2691428904) at 2025-02-28 11:48 AM PST -mugdhchauhan,2025-03-04T13:25:08Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2697580403) at 2025-03-04 05:25 AM PST -mugdhchauhan,2025-03-04T13:25:51Z,- mugdhchauhan closed issue by PR 7873: [6059](https://github.com/hackforla/website/issues/6059#event-16558563654) at 2025-03-04 05:25 AM PST -mugdhchauhan,2025-03-06T15:07:40Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2704119308) at 2025-03-06 07:07 AM PST -mugdhchauhan,2025-03-06T19:50:34Z,- mugdhchauhan assigned to issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-1240323716) at 2025-03-06 11:50 AM PST -mugdhchauhan,2025-03-06T19:51:20Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2704801190) at 2025-03-06 11:51 AM PST -mugdhchauhan,2025-03-10T19:54:36Z,- mugdhchauhan commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2711674787) at 2025-03-10 12:54 PM PDT -mugdhchauhan,2025-03-10T19:59:15Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2711684239) at 2025-03-10 12:59 PM PDT -mugdhchauhan,2025-03-11T01:14:02Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2712209768) at 2025-03-10 06:14 PM PDT -mugdhchauhan,2025-03-13T15:54:28Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2721754263) at 2025-03-13 08:54 AM PDT -mugdhchauhan,2025-03-14T22:06:46Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2725868033) at 2025-03-14 03:06 PM PDT -mugdhchauhan,2025-03-15T03:34:46Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2726176163) at 2025-03-14 08:34 PM PDT -mugdhchauhan,2025-03-18T03:08:58Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2731490586) at 2025-03-17 08:08 PM PDT -mugdhchauhan,2025-03-18T03:38:45Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2731526774) at 2025-03-17 08:38 PM PDT -mugdhchauhan,2025-03-18T03:38:45Z,- mugdhchauhan closed issue as completed: [3228](https://github.com/hackforla/website/issues/3228#event-16818768368) at 2025-03-17 08:38 PM PDT -mugdhchauhan,2025-03-20T16:18:05Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2741007315) at 2025-03-20 09:18 AM PDT -mugdhchauhan,2025-03-26T19:33:13Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2755551967) at 2025-03-26 12:33 PM PDT -mugdhchauhan,2025-04-02T21:36:50Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2773795832) at 2025-04-02 02:36 PM PDT -mugdhchauhan,2025-04-03T02:43:49Z,- mugdhchauhan commented on pull request: [8020](https://github.com/hackforla/website/pull/8020#issuecomment-2774237456) at 2025-04-02 07:43 PM PDT -mugdhchauhan,2025-04-03T02:47:23Z,- mugdhchauhan closed issue by PR 8020: [7470](https://github.com/hackforla/website/issues/7470#event-17104306364) at 2025-04-02 07:47 PM PDT -mugdhchauhan,2025-04-10T04:45:43Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2791537988) at 2025-04-09 09:45 PM PDT -mugdhchauhan,2025-04-10T04:54:32Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2791548456) at 2025-04-09 09:54 PM PDT -mugdhchauhan,2025-04-11T19:35:07Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2797864711) at 2025-04-11 12:35 PM PDT -mugdhchauhan,2025-04-11T19:35:07Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2797864711) at 2025-04-11 12:35 PM PDT -mugdhchauhan,2025-04-11T21:06:35Z,- mugdhchauhan commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2798011521) at 2025-04-11 02:06 PM PDT -mugdhchauhan,2025-04-11T21:06:35Z,- mugdhchauhan commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2798011521) at 2025-04-11 02:06 PM PDT -mugdhchauhan,2025-04-11T21:08:08Z,- mugdhchauhan closed issue by PR 8053: [7941](https://github.com/hackforla/website/issues/7941#event-17230531042) at 2025-04-11 02:08 PM PDT -mugdhchauhan,2025-04-11T21:18:10Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2798027768) at 2025-04-11 02:18 PM PDT -mugdhchauhan,2025-04-11T21:18:10Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2798027768) at 2025-04-11 02:18 PM PDT -mugdhchauhan,2025-04-11T21:19:12Z,- mugdhchauhan closed issue by PR 8056: [7482](https://github.com/hackforla/website/issues/7482#event-17230623171) at 2025-04-11 02:19 PM PDT -mugdhchauhan,2025-04-11T21:50:20Z,- mugdhchauhan commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2798070219) at 2025-04-11 02:50 PM PDT -mugdhchauhan,2025-04-11T22:38:01Z,- mugdhchauhan commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2798125348) at 2025-04-11 03:38 PM PDT -mugdhchauhan,2025-04-11T22:39:38Z,- mugdhchauhan submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2761711421) at 2025-04-11 03:39 PM PDT -mugdhchauhan,2025-04-12T00:27:45Z,- mugdhchauhan commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2798254458) at 2025-04-11 05:27 PM PDT -mugdhchauhan,2025-04-12T00:27:59Z,- mugdhchauhan closed issue by PR 8041: [7485](https://github.com/hackforla/website/issues/7485#event-17232015356) at 2025-04-11 05:27 PM PDT -mugdhchauhan,2025-04-13T23:41:14Z,- mugdhchauhan commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2800183658) at 2025-04-13 04:41 PM PDT -mugdhchauhan,2025-04-13T23:52:43Z,- mugdhchauhan commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2800188327) at 2025-04-13 04:52 PM PDT -mugdhchauhan,2025-04-16T19:36:20Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2810572527) at 2025-04-16 12:36 PM PDT -mugdhchauhan,2025-04-23T16:01:37Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2824799728) at 2025-04-23 09:01 AM PDT -mugdhchauhan,2025-04-30T14:59:25Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2842280581) at 2025-04-30 07:59 AM PDT -mugdhchauhan,2025-05-07T03:28:15Z,- mugdhchauhan commented on pull request: [8115](https://github.com/hackforla/website/pull/8115#issuecomment-2856912751) at 2025-05-06 08:28 PM PDT -mugdhchauhan,2025-05-07T03:28:39Z,- mugdhchauhan closed issue by PR 8115: [8064](https://github.com/hackforla/website/issues/8064#event-17548244574) at 2025-05-06 08:28 PM PDT -mugdhchauhan,2025-05-07T03:30:39Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2856916153) at 2025-05-06 08:30 PM PDT -mugdhchauhan,2025-05-13T21:10:50Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2877958623) at 2025-05-13 02:10 PM PDT -mugdhchauhan,2025-05-19T01:26:50Z,- mugdhchauhan commented on pull request: [8126](https://github.com/hackforla/website/pull/8126#issuecomment-2889369113) at 2025-05-18 06:26 PM PDT -mugdhchauhan,2025-05-19T01:28:44Z,- mugdhchauhan submitted pull request review: [8126](https://github.com/hackforla/website/pull/8126#pullrequestreview-2849190333) at 2025-05-18 06:28 PM PDT -mugdhchauhan,2025-05-19T23:25:19Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2892500764) at 2025-05-19 04:25 PM PDT -mugdhchauhan,2025-05-20T16:27:42Z,- mugdhchauhan commented on pull request: [8124](https://github.com/hackforla/website/pull/8124#issuecomment-2895111466) at 2025-05-20 09:27 AM PDT -mugdhchauhan,2025-05-20T16:29:54Z,- mugdhchauhan submitted pull request review: [8124](https://github.com/hackforla/website/pull/8124#pullrequestreview-2854881934) at 2025-05-20 09:29 AM PDT -mugdhchauhan,2025-05-24T06:35:57Z,- mugdhchauhan commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2906507439) at 2025-05-23 11:35 PM PDT -mugdhchauhan,2025-05-24T06:36:34Z,- mugdhchauhan closed issue by PR 8150: [7957](https://github.com/hackforla/website/issues/7957#event-17799188743) at 2025-05-23 11:36 PM PDT -mugdhchauhan,2025-05-27T17:46:10Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2913422912) at 2025-05-27 10:46 AM PDT -mugdhchauhan,2025-06-03T22:30:03Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2937459983) at 2025-06-03 03:30 PM PDT -mugdhchauhan,2025-06-06T18:45:12Z,- mugdhchauhan commented on pull request: [8169](https://github.com/hackforla/website/pull/8169#issuecomment-2950169560) at 2025-06-06 11:45 AM PDT -mugdhchauhan,2025-06-06T18:45:28Z,- mugdhchauhan closed issue by PR 8169: [7548](https://github.com/hackforla/website/issues/7548#event-18027319104) at 2025-06-06 11:45 AM PDT -mugdhchauhan,2025-06-06T19:05:55Z,- mugdhchauhan commented on pull request: [8171](https://github.com/hackforla/website/pull/8171#issuecomment-2950286206) at 2025-06-06 12:05 PM PDT -mugdhchauhan,2025-06-06T19:06:15Z,- mugdhchauhan closed issue by PR 8171: [7425](https://github.com/hackforla/website/issues/7425#event-18027595759) at 2025-06-06 12:06 PM PDT -mugdhchauhan,2025-06-10T18:14:33Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2960202892) at 2025-06-10 11:14 AM PDT -mugdhchauhan,2025-06-17T20:13:24Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2981704314) at 2025-06-17 01:13 PM PDT -mugdhchauhan,2025-06-25T01:30:01Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3002309601) at 2025-06-24 06:30 PM PDT -mugdhchauhan,2025-06-27T15:22:43Z,- mugdhchauhan commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3013445786) at 2025-06-27 08:22 AM PDT -mugdhchauhan,2025-06-27T15:22:54Z,- mugdhchauhan closed issue by PR 8197: [8010](https://github.com/hackforla/website/issues/8010#event-18359872175) at 2025-06-27 08:22 AM PDT -mugdhchauhan,2025-06-27T15:32:02Z,- mugdhchauhan commented on pull request: [8204](https://github.com/hackforla/website/pull/8204#issuecomment-3013471669) at 2025-06-27 08:32 AM PDT -mugdhchauhan,2025-06-27T15:32:17Z,- mugdhchauhan closed issue by PR 8204: [8012](https://github.com/hackforla/website/issues/8012#event-18360021124) at 2025-06-27 08:32 AM PDT -mugdhchauhan,2025-06-27T15:41:44Z,- mugdhchauhan commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3013496136) at 2025-06-27 08:41 AM PDT -mugdhchauhan,2025-06-27T15:42:02Z,- mugdhchauhan closed issue by PR 8206: [8011](https://github.com/hackforla/website/issues/8011#event-18360177138) at 2025-06-27 08:42 AM PDT -mugdhchauhan,2025-07-02T02:36:57Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3026148643) at 2025-07-01 07:36 PM PDT -mugdhchauhan,2025-07-06T10:32:21Z,- mugdhchauhan commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3041299446) at 2025-07-06 03:32 AM PDT -mugdhchauhan,2025-07-06T10:46:00Z,- mugdhchauhan commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3041306923) at 2025-07-06 03:46 AM PDT -mugdhchauhan,2025-07-06T10:46:18Z,- mugdhchauhan closed issue by PR 8231: [8015](https://github.com/hackforla/website/issues/8015#event-18490987567) at 2025-07-06 03:46 AM PDT -mugdhchauhan,2025-07-06T10:55:54Z,- mugdhchauhan commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3041316035) at 2025-07-06 03:55 AM PDT -mugdhchauhan,2025-07-06T11:00:39Z,- mugdhchauhan closed issue by PR 8241: [8122](https://github.com/hackforla/website/issues/8122#event-18491029563) at 2025-07-06 04:00 AM PDT -mugdhchauhan,2025-07-08T18:20:38Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3049889310) at 2025-07-08 11:20 AM PDT -mugdhchauhan,2025-07-11T17:16:31Z,- mugdhchauhan commented on pull request: [8245](https://github.com/hackforla/website/pull/8245#issuecomment-3063115187) at 2025-07-11 10:16 AM PDT -mugdhchauhan,2025-07-11T17:16:42Z,- mugdhchauhan closed issue by PR 8245: [8070](https://github.com/hackforla/website/issues/8070#event-18591000382) at 2025-07-11 10:16 AM PDT -mugdhchauhan,2025-07-15T23:04:43Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3076004568) at 2025-07-15 04:04 PM PDT -mugdhchauhan,2025-07-22T12:35:08Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3102529139) at 2025-07-22 05:35 AM PDT -mugdhchauhan,2025-07-25T19:47:45Z,- mugdhchauhan commented on pull request: [8250](https://github.com/hackforla/website/pull/8250#issuecomment-3120138022) at 2025-07-25 12:47 PM PDT -mugdhchauhan,2025-07-25T19:48:07Z,- mugdhchauhan closed issue by PR 8250: [7417](https://github.com/hackforla/website/issues/7417#event-18820532931) at 2025-07-25 12:48 PM PDT -mugdhchauhan,2025-07-29T08:17:36Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3131219076) at 2025-07-29 01:17 AM PDT -mugdhchauhan,2025-08-07T07:28:16Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3162871221) at 2025-08-07 12:28 AM PDT -MukulKolpe,2022-01-08T15:47:12Z,- MukulKolpe commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1008033508) at 2022-01-08 07:47 AM PST -munaz77,2020-12-06T19:19:22Z,- munaz77 commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739549570) at 2020-12-06 11:19 AM PST -munaz77,2020-12-06T19:33:28Z,- munaz77 opened issue: [833](https://github.com/hackforla/website/issues/833) at 2020-12-06 11:33 AM PST -munaz77,2020-12-08T21:55:00Z,- munaz77 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -munaz77,2020-12-15T21:22:12Z,- munaz77 assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:22 PM PST -munaz77,2020-12-16T09:23:49Z,- munaz77 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-16 01:23 AM PST -munaz77,2020-12-20T20:48:40Z,- munaz77 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -munaz77,2020-12-20T20:48:40Z,- munaz77 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -munaz77,2021-01-10T20:38:35Z,- munaz77 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -mxajPrice,2022-05-17T20:15:10Z,- mxajPrice opened issue: [3153](https://github.com/hackforla/website/issues/3153) at 2022-05-17 01:15 PM PDT -mxajPrice,2022-05-17T20:28:52Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1129288007) at 2022-05-17 01:28 PM PDT -mxajPrice,2022-05-26T11:45:51Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1138445664) at 2022-05-26 04:45 AM PDT -mxajPrice,2022-06-02T19:26:29Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1145244386) at 2022-06-02 12:26 PM PDT -mxajPrice,2022-06-03T13:25:10Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1145962816) at 2022-06-03 06:25 AM PDT -mxajPrice,2022-06-03T19:36:34Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1146298473) at 2022-06-03 12:36 PM PDT -mxajPrice,2022-06-14T01:06:00Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1154602027) at 2022-06-13 06:06 PM PDT -mxajPrice,2022-07-05T22:00:36Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1175543185) at 2022-07-05 03:00 PM PDT -mxajPrice,2022-09-22T19:48:59Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1255477800) at 2022-09-22 12:48 PM PDT -mxajPrice,2023-01-27T21:47:47Z,- mxajPrice opened issue: [3885](https://github.com/hackforla/website/issues/3885) at 2023-01-27 01:47 PM PST -mxajPrice,2023-01-27T21:48:48Z,- mxajPrice commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1407110238) at 2023-01-27 01:48 PM PST -mxajPrice,2023-02-14T22:42:29Z,- mxajPrice commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1430487481) at 2023-02-14 02:42 PM PST -mxajPrice,2023-02-14T22:47:14Z,- mxajPrice commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1430492783) at 2023-02-14 02:47 PM PST -mxajPrice,2023-04-25T21:10:45Z,- mxajPrice opened issue: [4566](https://github.com/hackforla/website/issues/4566) at 2023-04-25 02:10 PM PDT -mxajPrice,2023-05-04T02:41:43Z,- mxajPrice commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1534003608) at 2023-05-03 07:41 PM PDT -mxajPrice,2023-05-06T19:57:08Z,- mxajPrice opened issue: [4605](https://github.com/hackforla/website/issues/4605) at 2023-05-06 12:57 PM PDT -mxajPrice,2023-06-12T19:00:56Z,- mxajPrice opened issue: [4818](https://github.com/hackforla/website/issues/4818) at 2023-06-12 12:00 PM PDT -mxajPrice,2023-06-12T19:04:19Z,- mxajPrice commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1587913884) at 2023-06-12 12:04 PM PDT -mxajPrice,2023-07-11T17:55:56Z,- mxajPrice opened issue: [4938](https://github.com/hackforla/website/issues/4938) at 2023-07-11 10:55 AM PDT -mxajPrice,2023-07-11T17:55:56Z,- mxajPrice opened issue: [4939](https://github.com/hackforla/website/issues/4939) at 2023-07-11 10:55 AM PDT -mxajPrice,2023-07-14T01:38:55Z,- mxajPrice opened issue: [4948](https://github.com/hackforla/website/issues/4948) at 2023-07-13 06:38 PM PDT -mxajPrice,2023-07-18T17:32:53Z,- mxajPrice commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1640667396) at 2023-07-18 10:32 AM PDT -mxajPrice,2023-07-25T21:16:37Z,- mxajPrice commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1650571446) at 2023-07-25 02:16 PM PDT -mxajPrice,2023-07-28T17:19:27Z,- mxajPrice commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1656040002) at 2023-07-28 10:19 AM PDT -mxajPrice,2023-08-03T02:19:03Z,- mxajPrice opened issue: [5132](https://github.com/hackforla/website/issues/5132) at 2023-08-02 07:19 PM PDT -mxajPrice,2023-08-03T02:20:15Z,- mxajPrice commented on issue: [5132](https://github.com/hackforla/website/issues/5132#issuecomment-1663200063) at 2023-08-02 07:20 PM PDT -mxajPrice,2023-08-16T18:44:53Z,- mxajPrice opened issue: [5238](https://github.com/hackforla/website/issues/5238) at 2023-08-16 11:44 AM PDT -mxajPrice,2023-08-29T19:35:38Z,- mxajPrice opened issue: [5337](https://github.com/hackforla/website/issues/5337) at 2023-08-29 12:35 PM PDT -mxajPrice,2023-08-29T19:36:29Z,- mxajPrice commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1698021361) at 2023-08-29 12:36 PM PDT -mxajPrice,2023-08-30T23:42:04Z,- mxajPrice commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1699992453) at 2023-08-30 04:42 PM PDT -mxajPrice,2023-09-01T02:24:05Z,- mxajPrice opened issue: [5404](https://github.com/hackforla/website/issues/5404) at 2023-08-31 07:24 PM PDT -mxajPrice,2023-09-07T00:38:16Z,- mxajPrice commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1709300236) at 2023-09-06 05:38 PM PDT -mxajPrice,2023-10-11T23:17:40Z,- mxajPrice commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1758676316) at 2023-10-11 04:17 PM PDT -mxajPrice,2023-10-11T23:22:22Z,- mxajPrice commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1758681203) at 2023-10-11 04:22 PM PDT -mxajPrice,2023-11-03T17:48:33Z,- mxajPrice commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792881002) at 2023-11-03 10:48 AM PDT -mxajPrice,2023-12-27T21:26:55Z,- mxajPrice opened issue: [6018](https://github.com/hackforla/website/issues/6018) at 2023-12-27 01:26 PM PST -mxajPrice,2024-01-25T01:17:15Z,- mxajPrice closed issue by PR 296: [6139](https://github.com/hackforla/website/issues/6139#event-11591373569) at 2024-01-24 05:17 PM PST -myastark,2019-08-20T02:58:27Z,- myastark assigned to issue: [145](https://github.com/hackforla/website/issues/145) at 2019-08-19 07:58 PM PDT -myastark,2019-08-27T21:38:45Z,- myastark commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525493715) at 2019-08-27 02:38 PM PDT -myastark,2019-11-20T18:17:45Z,- myastark assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 10:17 AM PST -myastark,2019-11-25T23:16:14Z,- myastark assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -myastark,2019-12-03T19:12:07Z,- myastark assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-03 11:12 AM PST -myastark,2019-12-03T19:38:46Z,- myastark assigned to issue: [179](https://github.com/hackforla/website/issues/179) at 2019-12-03 11:38 AM PST -myastark,2019-12-04T22:59:08Z,- myastark assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 02:59 PM PST -myastark,2019-12-04T23:07:40Z,- myastark unassigned from issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 03:07 PM PST -myastark,2019-12-31T00:00:51Z,- myastark unassigned from issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-12-30 04:00 PM PST -myastark,2019-12-31T01:05:02Z,- myastark closed issue as completed: [179](https://github.com/hackforla/website/issues/179#event-2914934638) at 2019-12-30 05:05 PM PST -myastark,2020-03-27T07:17:32Z,- myastark opened issue: [396](https://github.com/hackforla/website/issues/396) at 2020-03-27 12:17 AM PDT -myastark,2020-04-27T01:38:11Z,- myastark assigned to issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619451315) at 2020-04-26 06:38 PM PDT -myastark,2020-05-03T17:47:26Z,- myastark unassigned from issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623151315) at 2020-05-03 10:47 AM PDT -myastark,2020-05-03T22:10:25Z,- myastark unassigned from issue: [191](https://github.com/hackforla/website/issues/191) at 2020-05-03 03:10 PM PDT -myastark,2020-08-19T00:48:37Z,- myastark assigned to issue: [703](https://github.com/hackforla/website/issues/703) at 2020-08-18 05:48 PM PDT -myastark,2020-08-25T01:49:24Z,- myastark unassigned from issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-24 06:49 PM PDT -myastark,2020-09-17T22:20:26Z,- myastark commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694530144) at 2020-09-17 03:20 PM PDT -myastark,2020-09-17T23:32:53Z,- myastark commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694555077) at 2020-09-17 04:32 PM PDT -myastark,2020-09-19T03:12:39Z,- myastark commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-695156324) at 2020-09-18 08:12 PM PDT -n2020h,2023-10-24T03:09:34Z,- n2020h assigned to issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1776102512) at 2023-10-23 08:09 PM PDT -n2020h,2024-06-17T03:42:44Z,- n2020h commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2172125478) at 2024-06-16 08:42 PM PDT -nafisreza,2024-10-28T21:33:10Z,- nafisreza opened pull request: [7653](https://github.com/hackforla/website/pull/7653) at 2024-10-28 02:33 PM PDT -nafisreza,2024-10-28T21:33:26Z,- nafisreza pull request closed w/o merging: [7653](https://github.com/hackforla/website/pull/7653#event-14969852080) at 2024-10-28 02:33 PM PDT -nafisreza,2024-10-28T21:42:54Z,- nafisreza commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2442689088) at 2024-10-28 02:42 PM PDT -NaincyKumariKnoldus,2022-03-02T06:18:34Z,- NaincyKumariKnoldus opened pull request: [2915](https://github.com/hackforla/website/pull/2915) at 2022-03-01 10:18 PM PST -NaincyKumariKnoldus,2022-03-02T21:04:08Z,- NaincyKumariKnoldus pull request closed w/o merging: [2915](https://github.com/hackforla/website/pull/2915#event-6173881296) at 2022-03-02 01:04 PM PST -NaincyKumariKnoldus,2022-03-03T04:26:59Z,- NaincyKumariKnoldus commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057654726) at 2022-03-02 08:26 PM PST -NaincyKumariKnoldus,2022-03-03T05:13:11Z,- NaincyKumariKnoldus commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057673512) at 2022-03-02 09:13 PM PST -NaincyKumariKnoldus,2022-03-03T08:25:00Z,- NaincyKumariKnoldus commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057794720) at 2022-03-03 12:25 AM PST -NamanhTran,2702,SKILLS ISSUE -NamanhTran,2021-02-09T09:04:03Z,- NamanhTran opened pull request: [1025](https://github.com/hackforla/website/pull/1025) at 2021-02-09 01:04 AM PST -NamanhTran,2021-02-09T23:45:55Z,- NamanhTran pull request merged: [1025](https://github.com/hackforla/website/pull/1025#event-4312045226) at 2021-02-09 03:45 PM PST -NamanhTran,2022-01-19T04:07:31Z,- NamanhTran opened issue: [2702](https://github.com/hackforla/website/issues/2702) at 2022-01-18 08:07 PM PST -NamanhTran,2022-01-19T04:07:32Z,- NamanhTran assigned to issue: [2702](https://github.com/hackforla/website/issues/2702) at 2022-01-18 08:07 PM PST -nancy-luu,4068,SKILLS ISSUE -nancy-luu,2023-03-01T04:11:48Z,- nancy-luu opened issue: [4068](https://github.com/hackforla/website/issues/4068) at 2023-02-28 08:11 PM PST -nancy-luu,2023-03-01T04:11:48Z,- nancy-luu assigned to issue: [4068](https://github.com/hackforla/website/issues/4068) at 2023-02-28 08:11 PM PST -nasimbiglari,2022-02-07T21:26:25Z,- nasimbiglari opened issue: [2745](https://github.com/hackforla/website/issues/2745) at 2022-02-07 01:26 PM PST -nasimbiglari,2022-02-07T21:34:58Z,- nasimbiglari commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1031949713) at 2022-02-07 01:34 PM PST -nasimbiglari,2022-02-07T21:41:41Z,- nasimbiglari commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1031958186) at 2022-02-07 01:41 PM PST -natenateo,2021-06-09T02:19:37Z,- natenateo commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857319241) at 2021-06-08 07:19 PM PDT -natenateo,2021-07-16T16:21:31Z,- natenateo commented on issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-881566992) at 2021-07-16 09:21 AM PDT -nathan944,3066,SKILLS ISSUE -nathan944,2022-04-19T03:50:00Z,- nathan944 opened issue: [3066](https://github.com/hackforla/website/issues/3066) at 2022-04-18 08:50 PM PDT -nathan944,2022-04-19T03:51:24Z,- nathan944 assigned to issue: [3066](https://github.com/hackforla/website/issues/3066#issuecomment-1101965181) at 2022-04-18 08:51 PM PDT -nathan944,2022-04-20T22:49:32Z,- nathan944 assigned to issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1089607678) at 2022-04-20 03:49 PM PDT -nathan944,2022-04-22T21:08:58Z,- nathan944 commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1106865428) at 2022-04-22 02:08 PM PDT -nathan944,2022-04-24T17:56:42Z,- nathan944 assigned to issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-04-24 10:56 AM PDT -nathan944,2022-05-01T16:16:39Z,- nathan944 assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-05-01 09:16 AM PDT -nathan944,2022-05-04T20:45:26Z,- nathan944 unassigned from issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-05-04 01:45 PM PDT -nathan944,2022-05-04T20:45:40Z,- nathan944 unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-05-04 01:45 PM PDT -nathan944,2022-05-22T01:57:56Z,- nathan944 assigned to issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1122945325) at 2022-05-21 06:57 PM PDT -nathan944,2022-05-29T18:53:32Z,- nathan944 commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1140504917) at 2022-05-29 11:53 AM PDT -nathan944,2022-06-01T23:30:54Z,- nathan944 commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1144245027) at 2022-06-01 04:30 PM PDT -nathan944,2022-06-12T18:48:24Z,- nathan944 unassigned from issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1152055030) at 2022-06-12 11:48 AM PDT -nathan944,2022-06-12T19:06:04Z,- nathan944 assigned to issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-979746665) at 2022-06-12 12:06 PM PDT -nathan944,2022-06-13T01:41:18Z,- nathan944 commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1153369689) at 2022-06-12 06:41 PM PDT -nathan944,2022-06-25T23:39:46Z,- nathan944 opened issue: [3302](https://github.com/hackforla/website/issues/3302) at 2022-06-25 04:39 PM PDT -nathan944,2022-06-25T23:39:46Z,- nathan944 assigned to issue: [3302](https://github.com/hackforla/website/issues/3302) at 2022-06-25 04:39 PM PDT -nathan944,2022-06-26T02:18:38Z,- nathan944 commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1166400249) at 2022-06-25 07:18 PM PDT -nathan944,2022-07-14T01:17:40Z,- nathan944 opened issue: [3370](https://github.com/hackforla/website/issues/3370) at 2022-07-13 06:17 PM PDT -nathan944,2022-07-27T22:06:13Z,- nathan944 commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1197421194) at 2022-07-27 03:06 PM PDT -nathan944,2022-08-28T16:24:00Z,- nathan944 commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1229500151) at 2022-08-28 09:24 AM PDT -nathan944,2022-09-10T21:57:40Z,- nathan944 opened issue: [3532](https://github.com/hackforla/website/issues/3532) at 2022-09-10 02:57 PM PDT -nathan944,2022-09-10T23:36:08Z,- nathan944 closed issue as not planned: [3532](https://github.com/hackforla/website/issues/3532#event-7361528345) at 2022-09-10 04:36 PM PDT -nathan944,2022-09-10T23:36:31Z,- nathan944 closed issue as completed: [3532](https://github.com/hackforla/website/issues/3532#event-7361528532) at 2022-09-10 04:36 PM PDT -nathan944,2022-09-10T23:51:39Z,- nathan944 opened issue: [3533](https://github.com/hackforla/website/issues/3533) at 2022-09-10 04:51 PM PDT -nathan944,2022-11-16T17:41:07Z,- nathan944 unassigned from issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1166379335) at 2022-11-16 09:41 AM PST -nathan944,2022-11-20T18:44:54Z,- nathan944 unassigned from issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1319638102) at 2022-11-20 10:44 AM PST -naveenmallemala5,5361,SKILLS ISSUE -naveenmallemala5,2023-08-30T04:10:45Z,- naveenmallemala5 opened issue: [5361](https://github.com/hackforla/website/issues/5361) at 2023-08-29 09:10 PM PDT -naveenmallemala5,2023-08-30T04:10:46Z,- naveenmallemala5 assigned to issue: [5361](https://github.com/hackforla/website/issues/5361) at 2023-08-29 09:10 PM PDT -naveenmallemala5,2023-09-22T16:54:34Z,- naveenmallemala5 commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-1731741376) at 2023-09-22 09:54 AM PDT -naveenmallemala5,2023-10-04T15:25:52Z,- naveenmallemala5 assigned to issue: [5621](https://github.com/hackforla/website/issues/5621) at 2023-10-04 08:25 AM PDT -naveenmallemala5,2023-10-04T15:33:44Z,- naveenmallemala5 commented on issue: [5621](https://github.com/hackforla/website/issues/5621#issuecomment-1747139671) at 2023-10-04 08:33 AM PDT -naveenmallemala5,2023-10-11T01:52:19Z,- naveenmallemala5 opened pull request: [5701](https://github.com/hackforla/website/pull/5701) at 2023-10-10 06:52 PM PDT -naveenmallemala5,2023-10-15T18:00:12Z,- naveenmallemala5 pull request merged: [5701](https://github.com/hackforla/website/pull/5701#event-10658165688) at 2023-10-15 11:00 AM PDT -naveenmallemala5,2023-10-26T17:22:02Z,- naveenmallemala5 assigned to issue: [5736](https://github.com/hackforla/website/issues/5736) at 2023-10-26 10:22 AM PDT -naveenmallemala5,2023-10-26T17:29:09Z,- naveenmallemala5 commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1781542991) at 2023-10-26 10:29 AM PDT -naveenmallemala5,2023-11-03T23:23:55Z,- naveenmallemala5 commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1793234164) at 2023-11-03 04:23 PM PDT -naveenmallemala5,2023-11-21T22:22:54Z,- naveenmallemala5 commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1821795673) at 2023-11-21 02:22 PM PST -naveenmallemala5,2023-12-07T19:46:25Z,- naveenmallemala5 assigned to issue: [5848](https://github.com/hackforla/website/issues/5848) at 2023-12-07 11:46 AM PST -naveenmallemala5,2023-12-07T19:47:49Z,- naveenmallemala5 commented on issue: [5848](https://github.com/hackforla/website/issues/5848#issuecomment-1846000261) at 2023-12-07 11:47 AM PST -naveenmallemala5,2023-12-13T02:31:32Z,- naveenmallemala5 opened pull request: [6004](https://github.com/hackforla/website/pull/6004) at 2023-12-12 06:31 PM PST -naveenmallemala5,2023-12-15T17:52:22Z,- naveenmallemala5 commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1858263601) at 2023-12-15 09:52 AM PST -naveenmallemala5,2023-12-20T14:59:05Z,- naveenmallemala5 pull request merged: [6004](https://github.com/hackforla/website/pull/6004#event-11303743267) at 2023-12-20 06:59 AM PST -naveenmallemala5,2024-01-08T19:59:30Z,- naveenmallemala5 assigned to issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1851306705) at 2024-01-08 11:59 AM PST -naveenmallemala5,2024-01-08T20:01:22Z,- naveenmallemala5 commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1881738299) at 2024-01-08 12:01 PM PST -naveenmallemala5,2024-01-28T03:51:02Z,- naveenmallemala5 commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1913437884) at 2024-01-27 07:51 PM PST -naveenmallemala5,2024-01-29T01:03:41Z,- naveenmallemala5 opened issue: [6191](https://github.com/hackforla/website/issues/6191) at 2024-01-28 05:03 PM PST -naveenmallemala5,2024-01-29T01:15:30Z,- naveenmallemala5 opened issue: [6192](https://github.com/hackforla/website/issues/6192) at 2024-01-28 05:15 PM PST -naveenmallemala5,2024-01-29T01:23:58Z,- naveenmallemala5 unassigned from issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1913437884) at 2024-01-28 05:23 PM PST -naveenmallemala5,2024-02-01T19:13:19Z,- naveenmallemala5 assigned to issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1913437884) at 2024-02-01 11:13 AM PST -naveenmallemala5,2024-02-01T19:13:36Z,- naveenmallemala5 unassigned from issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1922045092) at 2024-02-01 11:13 AM PST -naveenmallemala5,2024-05-17T20:51:52Z,- naveenmallemala5 assigned to issue: [6576](https://github.com/hackforla/website/issues/6576) at 2024-05-17 01:51 PM PDT -naveenmallemala5,2024-05-17T20:53:23Z,- naveenmallemala5 commented on issue: [6576](https://github.com/hackforla/website/issues/6576#issuecomment-2118370599) at 2024-05-17 01:53 PM PDT -naveentata,6947,SKILLS ISSUE -naveentata,2024-06-04T02:55:26Z,- naveentata opened issue: [6947](https://github.com/hackforla/website/issues/6947) at 2024-06-03 07:55 PM PDT -naveentata,2024-06-04T02:55:43Z,- naveentata assigned to issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2146474029) at 2024-06-03 07:55 PM PDT -naveentata,2024-06-18T22:50:31Z,- naveentata assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166921103) at 2024-06-18 03:50 PM PDT -naveentata,2024-06-18T22:54:45Z,- naveentata commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2177218113) at 2024-06-18 03:54 PM PDT -naveentata,2024-08-09T14:31:45Z,- naveentata unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2277285129) at 2024-08-09 07:31 AM PDT -nayangoyal,2023-08-25T16:39:02Z,- nayangoyal opened pull request: [5308](https://github.com/hackforla/website/pull/5308) at 2023-08-25 09:39 AM PDT -nayangoyal,2023-08-26T21:02:43Z,- nayangoyal pull request closed w/o merging: [5308](https://github.com/hackforla/website/pull/5308#event-10200703382) at 2023-08-26 02:02 PM PDT -nchanyal,7978,SKILLS ISSUE -nchanyal,2025-03-04T04:40:22Z,- nchanyal opened issue: [7978](https://github.com/hackforla/website/issues/7978) at 2025-03-03 08:40 PM PST -nchanyal,2025-03-04T04:41:29Z,- nchanyal assigned to issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2696176477) at 2025-03-03 08:41 PM PST -nchanyal,2025-03-05T16:20:41Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2701434067) at 2025-03-05 08:20 AM PST -nchanyal,2025-03-05T16:33:08Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2701468794) at 2025-03-05 08:33 AM PST -nchanyal,2025-03-05T18:10:05Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2701706160) at 2025-03-05 10:10 AM PST -nchanyal,2025-03-06T15:16:27Z,- nchanyal assigned to issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661363589) at 2025-03-06 07:16 AM PST -nchanyal,2025-03-06T15:39:58Z,- nchanyal commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2704211498) at 2025-03-06 07:39 AM PST -nchanyal,2025-03-06T17:26:30Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2704490251) at 2025-03-06 09:26 AM PST -nchanyal,2025-03-06T17:27:24Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2704493631) at 2025-03-06 09:27 AM PST -nchanyal,2025-03-07T16:22:35Z,- nchanyal opened pull request: [7983](https://github.com/hackforla/website/pull/7983) at 2025-03-07 08:22 AM PST -nchanyal,2025-03-09T17:36:32Z,- nchanyal pull request merged: [7983](https://github.com/hackforla/website/pull/7983#event-16645518570) at 2025-03-09 10:36 AM PDT -nchanyal,2025-03-10T15:33:41Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2711000985) at 2025-03-10 08:33 AM PDT -nchanyal,2025-03-10T16:08:39Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2711106304) at 2025-03-10 09:08 AM PDT -nchanyal,2025-03-10T16:17:51Z,- nchanyal assigned to issue: [7938](https://github.com/hackforla/website/issues/7938) at 2025-03-10 09:17 AM PDT -nchanyal,2025-03-10T16:20:14Z,- nchanyal commented on issue: [7938](https://github.com/hackforla/website/issues/7938#issuecomment-2711139445) at 2025-03-10 09:20 AM PDT -nchanyal,2025-03-10T17:54:55Z,- nchanyal opened pull request: [7986](https://github.com/hackforla/website/pull/7986) at 2025-03-10 10:54 AM PDT -nchanyal,2025-03-13T20:26:02Z,- nchanyal pull request merged: [7986](https://github.com/hackforla/website/pull/7986#event-16749152738) at 2025-03-13 01:26 PM PDT -nchanyal,2025-03-15T15:02:24Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2726713837) at 2025-03-15 08:02 AM PDT -nchanyal,2025-03-15T16:40:32Z,- nchanyal commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2726775402) at 2025-03-15 09:40 AM PDT -nchanyal,2025-03-15T17:24:27Z,- nchanyal submitted pull request review: [7989](https://github.com/hackforla/website/pull/7989#pullrequestreview-2688085394) at 2025-03-15 10:24 AM PDT -nchanyal,2025-03-15T17:28:34Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2726808114) at 2025-03-15 10:28 AM PDT -nchanyal,2025-03-16T15:45:54Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2727508877) at 2025-03-16 08:45 AM PDT -nchanyal,2025-03-16T15:54:25Z,- nchanyal assigned to issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2692541785) at 2025-03-16 08:54 AM PDT -nchanyal,2025-03-16T15:57:02Z,- nchanyal commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2727513974) at 2025-03-16 08:57 AM PDT -nchanyal,2025-03-17T15:52:42Z,- nchanyal opened pull request: [7992](https://github.com/hackforla/website/pull/7992) at 2025-03-17 08:52 AM PDT -nchanyal,2025-03-18T15:31:54Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2733692245) at 2025-03-18 08:31 AM PDT -nchanyal,2025-03-19T15:59:17Z,- nchanyal pull request merged: [7992](https://github.com/hackforla/website/pull/7992#event-16870343073) at 2025-03-19 08:59 AM PDT -nchanyal,2025-03-20T14:25:35Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2740638889) at 2025-03-20 07:25 AM PDT -nchanyal,2025-03-20T14:42:45Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2740708360) at 2025-03-20 07:42 AM PDT -nchanyal,2025-03-21T18:55:01Z,- nchanyal assigned to issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2692542233) at 2025-03-21 11:55 AM PDT -nchanyal,2025-03-21T19:02:00Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2744221854) at 2025-03-21 12:02 PM PDT -nchanyal,2025-03-22T15:02:38Z,- nchanyal opened issue: [8011](https://github.com/hackforla/website/issues/8011) at 2025-03-22 08:02 AM PDT -nchanyal,2025-03-22T15:14:16Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2745315687) at 2025-03-22 08:14 AM PDT -nchanyal,2025-03-22T15:22:41Z,- nchanyal opened issue: [8012](https://github.com/hackforla/website/issues/8012) at 2025-03-22 08:22 AM PDT -nchanyal,2025-03-22T16:17:19Z,- nchanyal opened issue: [8014](https://github.com/hackforla/website/issues/8014) at 2025-03-22 09:17 AM PDT -nchanyal,2025-03-22T16:34:19Z,- nchanyal opened issue: [8015](https://github.com/hackforla/website/issues/8015) at 2025-03-22 09:34 AM PDT -nchanyal,2025-03-22T16:36:02Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2745347089) at 2025-03-22 09:36 AM PDT -nchanyal,2025-03-22T16:43:37Z,- nchanyal opened issue: [8016](https://github.com/hackforla/website/issues/8016) at 2025-03-22 09:43 AM PDT -nchanyal,2025-03-23T14:50:27Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2746255414) at 2025-03-23 07:50 AM PDT -nchanyal,2025-03-25T18:03:50Z,- nchanyal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2752114165) at 2025-03-25 11:03 AM PDT -nchanyal,2025-03-26T16:41:51Z,- nchanyal submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2717936504) at 2025-03-26 09:41 AM PDT -nchanyal,2025-03-28T22:58:10Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2762785112) at 2025-03-28 03:58 PM PDT -nchanyal,2025-04-11T14:14:37Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2797040276) at 2025-04-11 07:14 AM PDT -ndmoc,5208,SKILLS ISSUE -ndmoc,2023-08-15T02:38:27Z,- ndmoc opened issue: [5208](https://github.com/hackforla/website/issues/5208) at 2023-08-14 07:38 PM PDT -ndmoc,2023-08-15T02:38:28Z,- ndmoc assigned to issue: [5208](https://github.com/hackforla/website/issues/5208) at 2023-08-14 07:38 PM PDT -ndmoc,2023-08-17T02:04:23Z,- ndmoc assigned to issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681403833) at 2023-08-16 07:04 PM PDT -ndmoc,2023-08-17T02:34:15Z,- ndmoc unassigned from issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681520779) at 2023-08-16 07:34 PM PDT -ndmoc,2023-08-22T21:40:29Z,- ndmoc commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1688968171) at 2023-08-22 02:40 PM PDT -ndmoc,2023-08-22T21:40:38Z,- ndmoc assigned to issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1688968171) at 2023-08-22 02:40 PM PDT -ndmoc,2023-08-23T00:34:43Z,- ndmoc commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1689094959) at 2023-08-22 05:34 PM PDT -ndmoc,2023-08-31T19:38:24Z,- ndmoc opened pull request: [5398](https://github.com/hackforla/website/pull/5398) at 2023-08-31 12:38 PM PDT -ndmoc,2023-08-31T19:52:43Z,- ndmoc assigned to issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1694740968) at 2023-08-31 12:52 PM PDT -ndmoc,2023-08-31T20:08:21Z,- ndmoc opened pull request: [5400](https://github.com/hackforla/website/pull/5400) at 2023-08-31 01:08 PM PDT -ndmoc,2023-08-31T20:09:05Z,- ndmoc commented on issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1701713696) at 2023-08-31 01:09 PM PDT -ndmoc,2023-08-31T21:34:43Z,- ndmoc commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701815763) at 2023-08-31 02:34 PM PDT -ndmoc,2023-09-01T22:14:59Z,- ndmoc commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1703379128) at 2023-09-01 03:14 PM PDT -ndmoc,2023-09-03T18:03:12Z,- ndmoc pull request closed w/o merging: [5400](https://github.com/hackforla/website/pull/5400#event-10266907439) at 2023-09-03 11:03 AM PDT -ndmoc,2023-09-03T18:03:24Z,- ndmoc unassigned from issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1701713696) at 2023-09-03 11:03 AM PDT -ndmoc,2023-09-03T19:28:41Z,- ndmoc commented on pull request: [5398](https://github.com/hackforla/website/pull/5398#issuecomment-1704382680) at 2023-09-03 12:28 PM PDT -ndmoc,2023-09-04T10:34:52Z,- ndmoc pull request merged: [5398](https://github.com/hackforla/website/pull/5398#event-10272381662) at 2023-09-04 03:34 AM PDT -ndmoc,2023-12-12T22:59:21Z,- ndmoc assigned to issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1755568912) at 2023-12-12 02:59 PM PST -ndmoc,2023-12-12T23:01:04Z,- ndmoc commented on issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1852946889) at 2023-12-12 03:01 PM PST -ndmoc,2023-12-19T08:15:55Z,- ndmoc opened pull request: [6012](https://github.com/hackforla/website/pull/6012) at 2023-12-19 12:15 AM PST -ndmoc,2023-12-19T23:22:46Z,- ndmoc opened pull request: [6013](https://github.com/hackforla/website/pull/6013) at 2023-12-19 03:22 PM PST -ndmoc,2023-12-19T23:23:25Z,- ndmoc commented on pull request: [6012](https://github.com/hackforla/website/pull/6012#issuecomment-1863608447) at 2023-12-19 03:23 PM PST -ndmoc,2023-12-20T00:05:37Z,- ndmoc pull request closed w/o merging: [6012](https://github.com/hackforla/website/pull/6012#event-11295876654) at 2023-12-19 04:05 PM PST -ndmoc,2023-12-20T17:56:35Z,- ndmoc commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1864899660) at 2023-12-20 09:56 AM PST -ndmoc,2023-12-28T05:44:25Z,- ndmoc pull request merged: [6013](https://github.com/hackforla/website/pull/6013#event-11348627530) at 2023-12-27 09:44 PM PST -neevliberman,3366,SKILLS ISSUE -neevliberman,2022-07-13T03:17:25Z,- neevliberman opened issue: [3366](https://github.com/hackforla/website/issues/3366) at 2022-07-12 08:17 PM PDT -neevliberman,2022-07-13T20:21:24Z,- neevliberman assigned to issue: [3366](https://github.com/hackforla/website/issues/3366#issuecomment-1182717979) at 2022-07-13 01:21 PM PDT -neevliberman,2022-07-19T23:32:20Z,- neevliberman assigned to issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1046315574) at 2022-07-19 04:32 PM PDT -neevliberman,2022-07-19T23:41:23Z,- neevliberman commented on issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1189653124) at 2022-07-19 04:41 PM PDT -neevliberman,2022-07-19T23:44:16Z,- neevliberman commented on issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1189654476) at 2022-07-19 04:44 PM PDT -neevliberman,2022-07-20T01:48:31Z,- neevliberman opened pull request: [3395](https://github.com/hackforla/website/pull/3395) at 2022-07-19 06:48 PM PDT -neevliberman,2022-07-20T03:15:54Z,- neevliberman opened issue: [3401](https://github.com/hackforla/website/issues/3401) at 2022-07-19 08:15 PM PDT -neevliberman,2022-07-22T19:21:18Z,- neevliberman opened pull request: [3420](https://github.com/hackforla/website/pull/3420) at 2022-07-22 12:21 PM PDT -neevliberman,2022-07-22T19:35:57Z,- neevliberman pull request closed w/o merging: [3395](https://github.com/hackforla/website/pull/3395#event-7048687383) at 2022-07-22 12:35 PM PDT -neevliberman,2022-07-22T19:37:53Z,- neevliberman pull request closed w/o merging: [3420](https://github.com/hackforla/website/pull/3420#event-7048697791) at 2022-07-22 12:37 PM PDT -neevliberman,2022-07-22T20:25:44Z,- neevliberman opened pull request: [3421](https://github.com/hackforla/website/pull/3421) at 2022-07-22 01:25 PM PDT -neevliberman,2022-07-22T21:06:01Z,- neevliberman commented on issue: [3366](https://github.com/hackforla/website/issues/3366#issuecomment-1192934733) at 2022-07-22 02:06 PM PDT -neevliberman,2022-07-22T21:12:11Z,- neevliberman commented on pull request: [3421](https://github.com/hackforla/website/pull/3421#issuecomment-1192938428) at 2022-07-22 02:12 PM PDT -neevliberman,2022-07-24T13:49:38Z,- neevliberman pull request merged: [3421](https://github.com/hackforla/website/pull/3421#event-7051448308) at 2022-07-24 06:49 AM PDT -neevliberman,2022-07-24T22:31:09Z,- neevliberman assigned to issue: [3095](https://github.com/hackforla/website/issues/3095#issuecomment-1116769834) at 2022-07-24 03:31 PM PDT -neevliberman,2022-07-24T22:51:46Z,- neevliberman commented on issue: [3095](https://github.com/hackforla/website/issues/3095#issuecomment-1193409619) at 2022-07-24 03:51 PM PDT -neevliberman,2022-07-24T23:05:19Z,- neevliberman opened pull request: [3425](https://github.com/hackforla/website/pull/3425) at 2022-07-24 04:05 PM PDT -neevliberman,2022-07-25T20:01:15Z,- neevliberman pull request merged: [3425](https://github.com/hackforla/website/pull/3425#event-7059359751) at 2022-07-25 01:01 PM PDT -neevliberman,2022-07-29T15:27:16Z,- neevliberman assigned to issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-968324929) at 2022-07-29 08:27 AM PDT -neevliberman,2022-07-31T16:35:54Z,- neevliberman unassigned from issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-968324929) at 2022-07-31 09:35 AM PDT -neevliberman,2022-07-31T16:36:45Z,- neevliberman assigned to issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1164984691) at 2022-07-31 09:36 AM PDT -neevliberman,2022-07-31T16:44:36Z,- neevliberman closed issue as completed: [3366](https://github.com/hackforla/website/issues/3366#event-7096577804) at 2022-07-31 09:44 AM PDT -neevliberman,2022-08-09T04:37:28Z,- neevliberman commented on pull request: [3455](https://github.com/hackforla/website/pull/3455#issuecomment-1208903268) at 2022-08-08 09:37 PM PDT -neevliberman,2022-08-09T04:51:20Z,- neevliberman submitted pull request review: [3455](https://github.com/hackforla/website/pull/3455#pullrequestreview-1066098685) at 2022-08-08 09:51 PM PDT -neevliberman,2022-08-14T01:05:14Z,- neevliberman commented on issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1214260233) at 2022-08-13 06:05 PM PDT -neevliberman,2022-08-14T18:12:45Z,- neevliberman opened pull request: [3468](https://github.com/hackforla/website/pull/3468) at 2022-08-14 11:12 AM PDT -neevliberman,2022-08-15T04:58:14Z,- neevliberman commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214618803) at 2022-08-14 09:58 PM PDT -neevliberman,2022-08-18T02:32:43Z,- neevliberman pull request merged: [3468](https://github.com/hackforla/website/pull/3468#event-7210331226) at 2022-08-17 07:32 PM PDT -neevliberman,2022-08-26T20:14:08Z,- neevliberman assigned to issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-907894622) at 2022-08-26 01:14 PM PDT -neevliberman,2022-08-26T20:44:30Z,- neevliberman opened pull request: [3490](https://github.com/hackforla/website/pull/3490) at 2022-08-26 01:44 PM PDT -neevliberman,2022-08-26T20:47:32Z,- neevliberman commented on issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-1228934384) at 2022-08-26 01:47 PM PDT -neevliberman,2022-08-27T17:45:08Z,- neevliberman commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229234916) at 2022-08-27 10:45 AM PDT -neevliberman,2022-08-27T17:55:38Z,- neevliberman commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229236529) at 2022-08-27 10:55 AM PDT -neevliberman,2022-08-27T23:06:22Z,- neevliberman commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229295311) at 2022-08-27 04:06 PM PDT -neevliberman,2022-08-28T21:12:58Z,- neevliberman pull request merged: [3490](https://github.com/hackforla/website/pull/3490#event-7274007582) at 2022-08-28 02:12 PM PDT -neevliberman,2022-09-05T21:10:07Z,- neevliberman commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1237458327) at 2022-09-05 02:10 PM PDT -neevliberman,2022-09-05T21:13:47Z,- neevliberman submitted pull request review: [3519](https://github.com/hackforla/website/pull/3519#pullrequestreview-1096771342) at 2022-09-05 02:13 PM PDT -neevliberman,2022-09-18T00:00:21Z,- neevliberman submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1111478325) at 2022-09-17 05:00 PM PDT -neevliberman,2022-09-18T00:08:38Z,- neevliberman commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250159309) at 2022-09-17 05:08 PM PDT -neevliberman,2022-09-18T00:15:16Z,- neevliberman submitted pull request review: [3558](https://github.com/hackforla/website/pull/3558#pullrequestreview-1111479149) at 2022-09-17 05:15 PM PDT -neevliberman,2022-09-18T00:54:28Z,- neevliberman commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250165174) at 2022-09-17 05:54 PM PDT -neevliberman,2022-09-19T01:42:29Z,- neevliberman submitted pull request review: [3560](https://github.com/hackforla/website/pull/3560#pullrequestreview-1111632006) at 2022-09-18 06:42 PM PDT -neevliberman,2022-09-25T20:58:53Z,- neevliberman commented on pull request: [3579](https://github.com/hackforla/website/pull/3579#issuecomment-1257278515) at 2022-09-25 01:58 PM PDT -neevliberman,2022-09-25T21:01:51Z,- neevliberman submitted pull request review: [3579](https://github.com/hackforla/website/pull/3579#pullrequestreview-1119455168) at 2022-09-25 02:01 PM PDT -neevliberman,2022-09-25T21:47:13Z,- neevliberman assigned to issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1115357054) at 2022-09-25 02:47 PM PDT -neevliberman,2022-09-25T21:47:52Z,- neevliberman commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1257286385) at 2022-09-25 02:47 PM PDT -neevliberman,2022-09-28T05:26:18Z,- neevliberman commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1260405424) at 2022-09-27 10:26 PM PDT -neevliberman,2022-10-09T00:44:30Z,- neevliberman unassigned from issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1272422869) at 2022-10-08 05:44 PM PDT -neevliberman,2022-11-06T19:15:48Z,- neevliberman unassigned from issue: [2205](https://github.com/hackforla/website/issues/2205#event-7274007592) at 2022-11-06 11:15 AM PST -neevliberman,2022-11-06T19:28:40Z,- neevliberman assigned to issue: [2205](https://github.com/hackforla/website/issues/2205#event-7747792572) at 2022-11-06 11:28 AM PST -nehasyed97,3411,SKILLS ISSUE -nehasyed97,2022-07-20T21:31:18Z,- nehasyed97 opened issue: [3411](https://github.com/hackforla/website/issues/3411) at 2022-07-20 02:31 PM PDT -nehasyed97,2022-07-20T21:31:18Z,- nehasyed97 assigned to issue: [3411](https://github.com/hackforla/website/issues/3411) at 2022-07-20 02:31 PM PDT -nehasyed97,2022-08-10T21:18:31Z,- nehasyed97 assigned to issue: [3448](https://github.com/hackforla/website/issues/3448) at 2022-08-10 02:18 PM PDT -nehasyed97,2022-08-14T22:32:34Z,- nehasyed97 commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1214461783) at 2022-08-14 03:32 PM PDT -nehasyed97,2022-08-21T16:49:15Z,- nehasyed97 closed issue as completed: [3411](https://github.com/hackforla/website/issues/3411#event-7227939542) at 2022-08-21 09:49 AM PDT -nehasyed97,2022-08-21T16:49:21Z,- nehasyed97 reopened issue: [3411](https://github.com/hackforla/website/issues/3411#event-7227939542) at 2022-08-21 09:49 AM PDT -nehasyed97,2022-08-21T16:49:24Z,- nehasyed97 closed issue as completed: [3411](https://github.com/hackforla/website/issues/3411#event-7227939660) at 2022-08-21 09:49 AM PDT -nehasyed97,2022-08-26T19:08:27Z,- nehasyed97 commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1228826023) at 2022-08-26 12:08 PM PDT -nehasyed97,2022-09-16T14:39:41Z,- nehasyed97 closed issue as completed: [3448](https://github.com/hackforla/website/issues/3448#event-7403799547) at 2022-09-16 07:39 AM PDT -nehasyed97,2022-10-01T19:59:08Z,- nehasyed97 assigned to issue: [3563](https://github.com/hackforla/website/issues/3563#issuecomment-1257248783) at 2022-10-01 12:59 PM PDT -nehasyed97,2022-10-01T20:02:27Z,- nehasyed97 closed issue as completed: [3563](https://github.com/hackforla/website/issues/3563#event-7500978918) at 2022-10-01 01:02 PM PDT -nehasyed97,2022-11-26T19:53:30Z,- nehasyed97 unassigned from issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1328104511) at 2022-11-26 11:53 AM PST -nekobox,2019-08-28T01:51:37Z,- nekobox assigned to issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-524588222) at 2019-08-27 06:51 PM PDT -nekobox,2019-08-28T03:24:27Z,- nekobox commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525568250) at 2019-08-27 08:24 PM PDT -nekobox,2019-08-28T05:12:15Z,- nekobox commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525587110) at 2019-08-27 10:12 PM PDT -nelsonuprety1,6035,SKILLS ISSUE -nelsonuprety1,2023-11-30T05:00:20Z,- nelsonuprety1 opened issue: [5949](https://github.com/hackforla/website/issues/5949) at 2023-11-29 09:00 PM PST -nelsonuprety1,2023-12-06T22:56:45Z,- nelsonuprety1 commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1843821360) at 2023-12-06 02:56 PM PST -nelsonuprety1,2023-12-07T04:04:15Z,- nelsonuprety1 commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1844254035) at 2023-12-06 08:04 PM PST -nelsonuprety1,2024-01-03T03:53:59Z,- nelsonuprety1 opened issue: [6035](https://github.com/hackforla/website/issues/6035) at 2024-01-02 07:53 PM PST -nelsonuprety1,2024-01-03T03:53:59Z,- nelsonuprety1 assigned to issue: [6035](https://github.com/hackforla/website/issues/6035) at 2024-01-02 07:53 PM PST -nelsonuprety1,2024-01-05T22:42:36Z,- nelsonuprety1 opened pull request: [6069](https://github.com/hackforla/website/pull/6069) at 2024-01-05 02:42 PM PST -nelsonuprety1,2024-01-05T22:49:11Z,- nelsonuprety1 commented on issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1879350816) at 2024-01-05 02:49 PM PST -nelsonuprety1,2024-01-05T23:05:30Z,- nelsonuprety1 pull request closed w/o merging: [6069](https://github.com/hackforla/website/pull/6069#event-11405906854) at 2024-01-05 03:05 PM PST -nelsonuprety1,2024-01-05T23:09:55Z,- nelsonuprety1 opened pull request: [6070](https://github.com/hackforla/website/pull/6070) at 2024-01-05 03:09 PM PST -nelsonuprety1,2024-01-06T05:43:39Z,- nelsonuprety1 commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879562596) at 2024-01-05 09:43 PM PST -nelsonuprety1,2024-01-06T16:51:39Z,- nelsonuprety1 opened pull request: [6072](https://github.com/hackforla/website/pull/6072) at 2024-01-06 08:51 AM PST -nelsonuprety1,2024-01-06T19:20:07Z,- nelsonuprety1 pull request merged: [6072](https://github.com/hackforla/website/pull/6072#event-11409350955) at 2024-01-06 11:20 AM PST -nelsonuprety1,2024-01-06T21:33:29Z,- nelsonuprety1 assigned to issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1879350816) at 2024-01-06 01:33 PM PST -nelsonuprety1,2024-01-06T21:42:01Z,- nelsonuprety1 commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879836896) at 2024-01-06 01:42 PM PST -nelsonuprety1,2024-01-06T21:50:28Z,- nelsonuprety1 pull request merged: [6070](https://github.com/hackforla/website/pull/6070#event-11409669234) at 2024-01-06 01:50 PM PST -nelsonuprety1,2024-01-06T21:58:48Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879841303) at 2024-01-06 01:58 PM PST -nelsonuprety1,2024-01-06T21:58:48Z,- nelsonuprety1 reopened pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879841303) at 2024-01-06 01:58 PM PST -nelsonuprety1,2024-01-06T21:59:08Z,- nelsonuprety1 assigned to issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382720) at 2024-01-06 01:59 PM PST -nelsonuprety1,2024-01-07T03:02:52Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879922535) at 2024-01-06 07:02 PM PST -nelsonuprety1,2024-01-07T20:12:32Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1880159206) at 2024-01-07 12:12 PM PST -nelsonuprety1,2024-01-07T20:23:59Z,- nelsonuprety1 pull request merged: [6072](https://github.com/hackforla/website/pull/6072#event-11411920791) at 2024-01-07 12:23 PM PST -nelsonuprety1,2024-01-08T03:09:23Z,- nelsonuprety1 assigned to issue: [5708](https://github.com/hackforla/website/issues/5708#issuecomment-1763721188) at 2024-01-07 07:09 PM PST -nelsonuprety1,2024-01-08T03:10:05Z,- nelsonuprety1 opened pull request: [6077](https://github.com/hackforla/website/pull/6077) at 2024-01-07 07:10 PM PST -nelsonuprety1,2024-01-10T05:41:03Z,- nelsonuprety1 pull request merged: [6077](https://github.com/hackforla/website/pull/6077#event-11438726703) at 2024-01-09 09:41 PM PST -nelsonuprety1,2024-01-23T21:59:26Z,- nelsonuprety1 assigned to issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1904820250) at 2024-01-23 01:59 PM PST -nelsonuprety1,2024-01-23T22:06:09Z,- nelsonuprety1 opened pull request: [6146](https://github.com/hackforla/website/pull/6146) at 2024-01-23 02:06 PM PST -nelsonuprety1,2024-01-23T22:07:34Z,- nelsonuprety1 commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907000710) at 2024-01-23 02:07 PM PST -nelsonuprety1,2024-01-24T05:51:30Z,- nelsonuprety1 pull request closed w/o merging: [6146](https://github.com/hackforla/website/pull/6146#event-11579435963) at 2024-01-23 09:51 PM PST -nelsonuprety1,2024-01-24T05:52:54Z,- nelsonuprety1 unassigned from issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907422247) at 2024-01-23 09:52 PM PST -nelsonuprety1,2024-01-25T01:10:49Z,- nelsonuprety1 assigned to issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1904926390) at 2024-01-24 05:10 PM PST -nelsonuprety1,2024-01-25T01:13:48Z,- nelsonuprety1 commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1909184842) at 2024-01-24 05:13 PM PST -nelsonuprety1,2024-01-25T01:24:19Z,- nelsonuprety1 opened pull request: [6152](https://github.com/hackforla/website/pull/6152) at 2024-01-24 05:24 PM PST -nelsonuprety1,2024-01-25T01:24:47Z,- nelsonuprety1 commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1909193150) at 2024-01-24 05:24 PM PST -nelsonuprety1,2024-01-26T17:16:51Z,- nelsonuprety1 closed issue as completed: [6035](https://github.com/hackforla/website/issues/6035#event-11611205433) at 2024-01-26 09:16 AM PST -nelsonuprety1,2024-01-28T04:21:08Z,- nelsonuprety1 commented on pull request: [6152](https://github.com/hackforla/website/pull/6152#issuecomment-1913443472) at 2024-01-27 08:21 PM PST -nelsonuprety1,2024-01-28T17:03:17Z,- nelsonuprety1 pull request merged: [6152](https://github.com/hackforla/website/pull/6152#event-11620454389) at 2024-01-28 09:03 AM PST -nelsonuprety1,2024-01-28T21:47:47Z,- nelsonuprety1 assigned to issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1874955868) at 2024-01-28 01:47 PM PST -nelsonuprety1,2024-01-29T00:26:10Z,- nelsonuprety1 commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1913779732) at 2024-01-28 04:26 PM PST -nelsonuprety1,2024-01-29T00:30:33Z,- nelsonuprety1 opened pull request: [6190](https://github.com/hackforla/website/pull/6190) at 2024-01-28 04:30 PM PST -nelsonuprety1,2024-01-29T00:31:03Z,- nelsonuprety1 commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1913781652) at 2024-01-28 04:31 PM PST -nelsonuprety1,2024-01-29T18:07:47Z,- nelsonuprety1 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915290190) at 2024-01-29 10:07 AM PST -nelsonuprety1,2024-02-01T07:05:45Z,- nelsonuprety1 pull request merged: [6190](https://github.com/hackforla/website/pull/6190#event-11665426602) at 2024-01-31 11:05 PM PST -nelsonuprety1,2024-03-03T00:00:12Z,- nelsonuprety1 assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-03-02 04:00 PM PST -nelsonuprety1,2024-03-03T00:06:14Z,- nelsonuprety1 opened pull request: [6409](https://github.com/hackforla/website/pull/6409) at 2024-03-02 04:06 PM PST -nelsonuprety1,2024-03-03T00:08:22Z,- nelsonuprety1 commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974949059) at 2024-03-02 04:08 PM PST -nelsonuprety1,2024-03-04T03:15:34Z,- nelsonuprety1 pull request closed w/o merging: [6409](https://github.com/hackforla/website/pull/6409#event-11992712430) at 2024-03-03 07:15 PM PST -nelsonuprety1,2024-03-04T03:16:30Z,- nelsonuprety1 unassigned from issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974949059) at 2024-03-03 07:16 PM PST -nelsonuprety1,2024-03-04T05:07:36Z,- nelsonuprety1 assigned to issue: [5996](https://github.com/hackforla/website/issues/5996) at 2024-03-03 09:07 PM PST -nelsonuprety1,2024-03-04T05:14:04Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1975747133) at 2024-03-03 09:14 PM PST -nelsonuprety1,2024-03-04T05:16:38Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1975749278) at 2024-03-03 09:16 PM PST -nelsonuprety1,2024-03-10T17:30:16Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1987302934) at 2024-03-10 10:30 AM PDT -nelsonuprety1,2024-03-10T20:17:36Z,- nelsonuprety1 commented on issue: [6088](https://github.com/hackforla/website/issues/6088#issuecomment-1987350416) at 2024-03-10 01:17 PM PDT -nelsonuprety1,2024-03-11T02:42:05Z,- nelsonuprety1 assigned to issue: [6088](https://github.com/hackforla/website/issues/6088#event-12067450634) at 2024-03-10 07:42 PM PDT -nelsonuprety1,2024-03-19T22:43:52Z,- nelsonuprety1 assigned to issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-1865349657) at 2024-03-19 03:43 PM PDT -nelsonuprety1,2024-03-19T22:47:42Z,- nelsonuprety1 commented on issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-2008291962) at 2024-03-19 03:47 PM PDT -nelsonuprety1,2024-04-04T20:30:19Z,- nelsonuprety1 assigned to issue: [6491](https://github.com/hackforla/website/issues/6491) at 2024-04-04 01:30 PM PDT -nelsonuprety1,2024-04-04T20:41:01Z,- nelsonuprety1 assigned to issue: [6309](https://github.com/hackforla/website/issues/6309) at 2024-04-04 01:41 PM PDT -nelsonuprety1,2024-04-04T20:48:55Z,- nelsonuprety1 opened pull request: [6566](https://github.com/hackforla/website/pull/6566) at 2024-04-04 01:48 PM PDT -nelsonuprety1,2024-04-04T20:49:36Z,- nelsonuprety1 commented on issue: [6309](https://github.com/hackforla/website/issues/6309#issuecomment-2038191213) at 2024-04-04 01:49 PM PDT -nelsonuprety1,2024-04-09T00:36:37Z,- nelsonuprety1 commented on pull request: [6566](https://github.com/hackforla/website/pull/6566#issuecomment-2043935807) at 2024-04-08 05:36 PM PDT -nelsonuprety1,2024-04-10T05:14:37Z,- nelsonuprety1 pull request merged: [6566](https://github.com/hackforla/website/pull/6566#event-12416460011) at 2024-04-09 10:14 PM PDT -nelsonuprety1,2024-06-12T03:35:14Z,- nelsonuprety1 assigned to issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140616903) at 2024-06-11 08:35 PM PDT -neonPurple,3972,SKILLS ISSUE -neonPurple,2023-02-14T04:27:56Z,- neonPurple opened issue: [3972](https://github.com/hackforla/website/issues/3972) at 2023-02-13 08:27 PM PST -neonPurple,2023-02-14T04:27:57Z,- neonPurple assigned to issue: [3972](https://github.com/hackforla/website/issues/3972) at 2023-02-13 08:27 PM PST -neonPurple,2023-03-09T17:53:53Z,- neonPurple assigned to issue: [4015](https://github.com/hackforla/website/issues/4015) at 2023-03-09 09:53 AM PST -neonPurple,2023-03-09T21:29:31Z,- neonPurple commented on issue: [4015](https://github.com/hackforla/website/issues/4015#issuecomment-1462849787) at 2023-03-09 01:29 PM PST -neonPurple,2023-03-09T23:38:10Z,- neonPurple opened pull request: [4143](https://github.com/hackforla/website/pull/4143) at 2023-03-09 03:38 PM PST -neonPurple,2023-03-12T06:48:54Z,- neonPurple pull request merged: [4143](https://github.com/hackforla/website/pull/4143#event-8725151536) at 2023-03-11 11:48 PM PDT -neonPurple,2023-03-17T18:54:24Z,- neonPurple commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1474274095) at 2023-03-17 11:54 AM PDT -neshacascia,4628,SKILLS ISSUE -neshacascia,2023-05-09T03:34:31Z,- neshacascia opened issue: [4628](https://github.com/hackforla/website/issues/4628) at 2023-05-08 08:34 PM PDT -neshacascia,2023-05-09T03:57:56Z,- neshacascia assigned to issue: [4628](https://github.com/hackforla/website/issues/4628) at 2023-05-08 08:57 PM PDT -newdra24,2019-11-20T17:58:28Z,- newdra24 assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 09:58 AM PST -newdra24,2019-11-25T23:16:14Z,- newdra24 assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -newdra24,2019-11-26T00:11:22Z,- newdra24 assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -newdra24,2019-12-03T18:47:13Z,- newdra24 assigned to issue: [206](https://github.com/hackforla/website/issues/206) at 2019-12-03 10:47 AM PST -newdra24,2019-12-04T22:58:08Z,- newdra24 closed issue as completed: [185](https://github.com/hackforla/website/issues/185#event-2855845665) at 2019-12-04 02:58 PM PST -newdra24,2019-12-04T23:07:36Z,- newdra24 assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 03:07 PM PST -newdra24,2019-12-04T23:09:13Z,- newdra24 unassigned from issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-04 03:09 PM PST -newdra24,2019-12-06T00:47:39Z,- newdra24 assigned to issue: [186](https://github.com/hackforla/website/issues/186) at 2019-12-05 04:47 PM PST -newdra24,2019-12-10T23:48:26Z,- newdra24 unassigned from issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-10 03:48 PM PST -newdra24,2019-12-16T04:27:01Z,- newdra24 unassigned from issue: [186](https://github.com/hackforla/website/issues/186) at 2019-12-15 08:27 PM PST -newdra24,2019-12-16T05:23:58Z,- newdra24 assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:23 PM PST -newdra24,2019-12-22T16:25:43Z,- newdra24 unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-22 08:25 AM PST -newdra24,2019-12-22T16:33:40Z,- newdra24 assigned to issue: [221](https://github.com/hackforla/website/issues/221) at 2019-12-22 08:33 AM PST -newdra24,2020-01-06T01:18:43Z,- newdra24 assigned to issue: [242](https://github.com/hackforla/website/issues/242) at 2020-01-05 05:18 PM PST -newdra24,2020-01-20T03:19:15Z,- newdra24 assigned to issue: [270](https://github.com/hackforla/website/issues/270) at 2020-01-19 07:19 PM PST -newdra24,2020-01-26T19:01:56Z,- newdra24 assigned to issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-576507476) at 2020-01-26 11:01 AM PST -newdra24,2020-02-16T18:41:02Z,- newdra24 closed issue as completed: [239](https://github.com/hackforla/website/issues/239#event-3041750597) at 2020-02-16 10:41 AM PST -newdra24,2020-02-16T19:37:24Z,- newdra24 unassigned from issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586744103) at 2020-02-16 11:37 AM PST -newdra24,2020-04-11T21:21:04Z,- newdra24 closed issue as completed: [242](https://github.com/hackforla/website/issues/242#event-3224504595) at 2020-04-11 02:21 PM PDT -newdra24,2020-05-24T19:31:10Z,- newdra24 unassigned from issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -newdra24,2020-05-24T19:53:40Z,- newdra24 unassigned from issue: [221](https://github.com/hackforla/website/issues/221) at 2020-05-24 12:53 PM PDT -newdra24,2021-11-10T21:06:47Z,- newdra24 closed issue as completed: [221](https://github.com/hackforla/website/issues/221#event-5599983814) at 2021-11-10 01:06 PM PST -Nick-McCarthy,4635,SKILLS ISSUE -Nick-McCarthy,2023-05-09T04:13:01Z,- Nick-McCarthy opened issue: [4635](https://github.com/hackforla/website/issues/4635) at 2023-05-08 09:13 PM PDT -Nick-McCarthy,2023-05-09T04:13:17Z,- Nick-McCarthy assigned to issue: [4635](https://github.com/hackforla/website/issues/4635) at 2023-05-08 09:13 PM PDT -nickgieschen,2020-07-27T22:59:56Z,- nickgieschen commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-664680604) at 2020-07-27 03:59 PM PDT -nicolettedmabeza,3968,SKILLS ISSUE -nicolettedmabeza,2023-02-14T00:53:36Z,- nicolettedmabeza opened issue: [3968](https://github.com/hackforla/website/issues/3968) at 2023-02-13 04:53 PM PST -nicolettedmabeza,2023-02-14T00:53:57Z,- nicolettedmabeza assigned to issue: [3968](https://github.com/hackforla/website/issues/3968) at 2023-02-13 04:53 PM PST -nicolettedmabeza,2023-02-17T00:16:23Z,- nicolettedmabeza assigned to issue: [3873](https://github.com/hackforla/website/issues/3873) at 2023-02-16 04:16 PM PST -nicolettedmabeza,2023-02-17T01:04:55Z,- nicolettedmabeza commented on issue: [3873](https://github.com/hackforla/website/issues/3873#issuecomment-1433949416) at 2023-02-16 05:04 PM PST -nicolettedmabeza,2023-02-17T01:23:41Z,- nicolettedmabeza opened pull request: [3989](https://github.com/hackforla/website/pull/3989) at 2023-02-16 05:23 PM PST -nicolettedmabeza,2023-02-18T00:28:39Z,- nicolettedmabeza pull request merged: [3989](https://github.com/hackforla/website/pull/3989#event-8551942121) at 2023-02-17 04:28 PM PST -nicolettedmabeza,2023-02-22T03:40:02Z,- nicolettedmabeza commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1439395471) at 2023-02-21 07:40 PM PST -nicolettedmabeza,2023-02-22T21:14:41Z,- nicolettedmabeza closed issue as completed: [3968](https://github.com/hackforla/website/issues/3968#event-8585485526) at 2023-02-22 01:14 PM PST -nicolettedmabeza,2023-02-23T23:28:23Z,- nicolettedmabeza submitted pull request review: [4021](https://github.com/hackforla/website/pull/4021#pullrequestreview-1312293248) at 2023-02-23 03:28 PM PST -nicolettedmabeza,2023-03-03T01:39:28Z,- nicolettedmabeza assigned to issue: [4081](https://github.com/hackforla/website/issues/4081) at 2023-03-02 05:39 PM PST -nicolettedmabeza,2023-03-03T01:42:09Z,- nicolettedmabeza commented on issue: [4081](https://github.com/hackforla/website/issues/4081#issuecomment-1452813426) at 2023-03-02 05:42 PM PST -nicolettedmabeza,2023-03-03T01:44:35Z,- nicolettedmabeza commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1452815397) at 2023-03-02 05:44 PM PST -nicolettedmabeza,2023-03-03T01:48:03Z,- nicolettedmabeza commented on pull request: [4092](https://github.com/hackforla/website/pull/4092#issuecomment-1452818069) at 2023-03-02 05:48 PM PST -nicolettedmabeza,2023-03-03T02:00:42Z,- nicolettedmabeza submitted pull request review: [4092](https://github.com/hackforla/website/pull/4092#pullrequestreview-1322999522) at 2023-03-02 06:00 PM PST -nicolettedmabeza,2023-03-03T02:39:54Z,- nicolettedmabeza opened pull request: [4094](https://github.com/hackforla/website/pull/4094) at 2023-03-02 06:39 PM PST -nicolettedmabeza,2023-03-05T21:00:44Z,- nicolettedmabeza pull request merged: [4094](https://github.com/hackforla/website/pull/4094#event-8668677518) at 2023-03-05 01:00 PM PST -nicolettedmabeza,2023-04-12T21:13:38Z,- nicolettedmabeza assigned to issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1480493155) at 2023-04-12 02:13 PM PDT -nicolettedmabeza,2023-04-12T21:14:53Z,- nicolettedmabeza commented on issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1505958191) at 2023-04-12 02:14 PM PDT -nicolettedmabeza,2023-04-14T18:43:54Z,- nicolettedmabeza commented on issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1509073912) at 2023-04-14 11:43 AM PDT -nicolettedmabeza,2023-04-14T18:59:58Z,- nicolettedmabeza opened pull request: [4516](https://github.com/hackforla/website/pull/4516) at 2023-04-14 11:59 AM PDT -nicolettedmabeza,2023-04-16T07:07:31Z,- nicolettedmabeza pull request merged: [4516](https://github.com/hackforla/website/pull/4516#event-9015904861) at 2023-04-16 12:07 AM PDT -nielseny,2020-12-08T21:10:59Z,- nielseny assigned to issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-643688618) at 2020-12-08 01:10 PM PST -nielseny,2020-12-08T21:53:55Z,- nielseny assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:53 PM PST -nielseny,2020-12-08T21:54:12Z,- nielseny unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -nielseny,2020-12-08T21:54:35Z,- nielseny assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -nielseny,2020-12-08T22:16:34Z,- nielseny commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-741122929) at 2020-12-08 02:16 PM PST -nielseny,2020-12-15T05:54:11Z,- nielseny commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-745070501) at 2020-12-14 09:54 PM PST -nielseny,2020-12-21T22:54:39Z,- nielseny unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2020-12-21 02:54 PM PST -nielseny,2021-01-10T20:38:35Z,- nielseny unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -nikunjgupta609,2023-10-06T14:13:56Z,- nikunjgupta609 commented on issue: [5618](https://github.com/hackforla/website/issues/5618#issuecomment-1750752687) at 2023-10-06 07:13 AM PDT -nikunjgupta609,2023-10-06T14:31:52Z,- nikunjgupta609 opened pull request: [5667](https://github.com/hackforla/website/pull/5667) at 2023-10-06 07:31 AM PDT -nikunjgupta609,2023-10-06T17:29:46Z,- nikunjgupta609 commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1751160869) at 2023-10-06 10:29 AM PDT -nikunjgupta609,2023-10-06T17:36:43Z,- nikunjgupta609 commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1751170926) at 2023-10-06 10:36 AM PDT -nikunjgupta609,2023-10-07T12:40:24Z,- nikunjgupta609 commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1751702777) at 2023-10-07 05:40 AM PDT -nikunjgupta609,2023-10-08T10:36:17Z,- nikunjgupta609 pull request closed w/o merging: [5667](https://github.com/hackforla/website/pull/5667#event-10583793974) at 2023-10-08 03:36 AM PDT -nirbhaykr87,2023-09-07T07:28:23Z,- nirbhaykr87 commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1709619549) at 2023-09-07 12:28 AM PDT -nitin-pandita,2023-08-13T06:41:56Z,- nitin-pandita commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1676252479) at 2023-08-12 11:41 PM PDT -nitin-pandita,2023-08-13T06:54:50Z,- nitin-pandita opened pull request: [5190](https://github.com/hackforla/website/pull/5190) at 2023-08-12 11:54 PM PDT -nitin-pandita,2023-08-13T10:49:19Z,- nitin-pandita commented on pull request: [5190](https://github.com/hackforla/website/pull/5190#issuecomment-1676317387) at 2023-08-13 03:49 AM PDT -nitin-pandita,2023-08-13T17:18:17Z,- nitin-pandita pull request closed w/o merging: [5190](https://github.com/hackforla/website/pull/5190#event-10080262571) at 2023-08-13 10:18 AM PDT -nitin-pandita,2023-08-14T00:11:36Z,- nitin-pandita commented on pull request: [5190](https://github.com/hackforla/website/pull/5190#issuecomment-1676505304) at 2023-08-13 05:11 PM PDT -nitin-pandita,2023-08-14T00:19:53Z,- nitin-pandita commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1676508519) at 2023-08-13 05:19 PM PDT -nitin-pandita,2023-08-14T00:22:00Z,- nitin-pandita commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1676509284) at 2023-08-13 05:22 PM PDT -NivenPrasad,2020-08-13T01:05:53Z,- NivenPrasad opened issue: [680](https://github.com/hackforla/website/issues/680) at 2020-08-12 06:05 PM PDT -NivenPrasad,2020-09-05T22:13:07Z,- NivenPrasad commented on pull request: [714](https://github.com/hackforla/website/pull/714#issuecomment-687669704) at 2020-09-05 03:13 PM PDT -njackman-2344,5223,SKILLS ISSUE -njackman-2344,2023-08-15T03:15:08Z,- njackman-2344 opened issue: [5223](https://github.com/hackforla/website/issues/5223) at 2023-08-14 08:15 PM PDT -njackman-2344,2023-08-15T03:15:08Z,- njackman-2344 assigned to issue: [5223](https://github.com/hackforla/website/issues/5223) at 2023-08-14 08:15 PM PDT -njackman-2344,2023-08-18T18:47:47Z,- njackman-2344 commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1684307576) at 2023-08-18 11:47 AM PDT -njackman-2344,2023-08-20T18:02:49Z,- njackman-2344 assigned to issue: [5266](https://github.com/hackforla/website/issues/5266) at 2023-08-20 11:02 AM PDT -njackman-2344,2023-08-20T18:05:33Z,- njackman-2344 commented on issue: [5266](https://github.com/hackforla/website/issues/5266#issuecomment-1685355616) at 2023-08-20 11:05 AM PDT -njackman-2344,2023-08-20T22:46:42Z,- njackman-2344 opened pull request: [5275](https://github.com/hackforla/website/pull/5275) at 2023-08-20 03:46 PM PDT -njackman-2344,2023-08-22T05:09:21Z,- njackman-2344 commented on pull request: [5275](https://github.com/hackforla/website/pull/5275#issuecomment-1687437799) at 2023-08-21 10:09 PM PDT -njackman-2344,2023-08-22T21:55:56Z,- njackman-2344 pull request merged: [5275](https://github.com/hackforla/website/pull/5275#event-10163488667) at 2023-08-22 02:55 PM PDT -njackman-2344,2023-08-23T21:46:34Z,- njackman-2344 commented on issue: [5223](https://github.com/hackforla/website/issues/5223#issuecomment-1690688460) at 2023-08-23 02:46 PM PDT -njackman-2344,2023-08-23T21:47:02Z,- njackman-2344 closed issue as completed: [5223](https://github.com/hackforla/website/issues/5223#event-10174806286) at 2023-08-23 02:47 PM PDT -njackman-2344,2023-08-24T04:20:55Z,- njackman-2344 assigned to issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1683454901) at 2023-08-23 09:20 PM PDT -njackman-2344,2023-08-24T04:22:23Z,- njackman-2344 commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1690975426) at 2023-08-23 09:22 PM PDT -njackman-2344,2023-08-24T09:40:24Z,- njackman-2344 commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1691354838) at 2023-08-24 02:40 AM PDT -njackman-2344,2023-08-27T20:37:11Z,- njackman-2344 submitted pull request review: [5299](https://github.com/hackforla/website/pull/5299#pullrequestreview-1597186938) at 2023-08-27 01:37 PM PDT -njackman-2344,2023-08-28T00:25:38Z,- njackman-2344 assigned to issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1132213910) at 2023-08-27 05:25 PM PDT -njackman-2344,2023-08-28T00:27:50Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1694815473) at 2023-08-27 05:27 PM PDT -njackman-2344,2023-09-01T22:16:29Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1703380174) at 2023-09-01 03:16 PM PDT -njackman-2344,2023-09-10T18:58:15Z,- njackman-2344 commented on pull request: [5466](https://github.com/hackforla/website/pull/5466#issuecomment-1712911494) at 2023-09-10 11:58 AM PDT -njackman-2344,2023-09-10T19:02:38Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1712912350) at 2023-09-10 12:02 PM PDT -njackman-2344,2023-09-11T02:40:00Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1713073077) at 2023-09-10 07:40 PM PDT -njackman-2344,2023-09-15T04:22:03Z,- njackman-2344 submitted pull request review: [5466](https://github.com/hackforla/website/pull/5466#pullrequestreview-1628170215) at 2023-09-14 09:22 PM PDT -njackman-2344,2023-09-15T05:57:16Z,- njackman-2344 assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-09-14 10:57 PM PDT -njackman-2344,2023-09-15T05:58:45Z,- njackman-2344 unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-09-14 10:58 PM PDT -njackman-2344,2023-09-17T18:13:55Z,- njackman-2344 commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722534041) at 2023-09-17 11:13 AM PDT -njackman-2344,2023-09-18T07:16:36Z,- njackman-2344 commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722866942) at 2023-09-18 12:16 AM PDT -njackman-2344,2023-09-18T22:57:32Z,- njackman-2344 submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1632094239) at 2023-09-18 03:57 PM PDT -njackman-2344,2023-09-19T02:39:17Z,- njackman-2344 closed issue as completed: [5525](https://github.com/hackforla/website/issues/5525#event-10405063320) at 2023-09-18 07:39 PM PDT -njackman-2344,2023-09-27T03:24:04Z,- njackman-2344 assigned to issue: [5604](https://github.com/hackforla/website/issues/5604) at 2023-09-26 08:24 PM PDT -njackman-2344,2023-09-27T03:27:22Z,- njackman-2344 commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1736615987) at 2023-09-26 08:27 PM PDT -njackman-2344,2023-10-01T04:22:05Z,- njackman-2344 commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1741952389) at 2023-09-30 09:22 PM PDT -njackman-2344,2023-10-01T04:40:10Z,- njackman-2344 submitted pull request review: [5636](https://github.com/hackforla/website/pull/5636#pullrequestreview-1651831739) at 2023-09-30 09:40 PM PDT -njackman-2344,2023-10-04T20:53:40Z,- njackman-2344 commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1747625351) at 2023-10-04 01:53 PM PDT -njackman-2344,2023-10-05T06:08:38Z,- njackman-2344 assigned to issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1742065576) at 2023-10-04 11:08 PM PDT -njackman-2344,2023-10-05T06:10:06Z,- njackman-2344 commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1748149061) at 2023-10-04 11:10 PM PDT -njackman-2344,2023-10-05T21:13:12Z,- njackman-2344 commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1749652628) at 2023-10-05 02:13 PM PDT -njackman-2344,2023-10-27T07:32:47Z,- njackman-2344 assigned to issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1772919665) at 2023-10-27 12:32 AM PDT -njackman-2344,2023-10-27T07:36:58Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1782444367) at 2023-10-27 12:36 AM PDT -njackman-2344,2023-11-10T07:43:24Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1805243537) at 2023-11-09 11:43 PM PST -njackman-2344,2023-11-17T04:05:56Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1815716518) at 2023-11-16 08:05 PM PST -njackman-2344,2023-12-07T21:39:53Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1846152440) at 2023-12-07 01:39 PM PST -njackman-2344,2023-12-13T06:25:26Z,- njackman-2344 unassigned from issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1846152440) at 2023-12-12 10:25 PM PST -njackman-2344,2024-01-17T03:42:18Z,- njackman-2344 assigned to issue: [5990](https://github.com/hackforla/website/issues/5990) at 2024-01-16 07:42 PM PST -njackman-2344,2024-01-17T03:44:23Z,- njackman-2344 commented on issue: [5990](https://github.com/hackforla/website/issues/5990#issuecomment-1894889535) at 2024-01-16 07:44 PM PST -njackman-2344,2024-01-19T02:06:00Z,- njackman-2344 commented on issue: [5990](https://github.com/hackforla/website/issues/5990#issuecomment-1899524546) at 2024-01-18 06:06 PM PST -njackman-2344,2024-01-24T02:39:13Z,- njackman-2344 commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1907253848) at 2024-01-23 06:39 PM PST -njackman-2344,2024-01-24T02:44:02Z,- njackman-2344 commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1907257485) at 2024-01-23 06:44 PM PST -njackman-2344,2024-01-26T06:28:22Z,- njackman-2344 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1845128835) at 2024-01-25 10:28 PM PST -njackman-2344,2024-01-26T06:34:43Z,- njackman-2344 submitted pull request review: [6147](https://github.com/hackforla/website/pull/6147#pullrequestreview-1845135262) at 2024-01-25 10:34 PM PST -njackman-2344,2024-01-26T07:04:28Z,- njackman-2344 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1911583813) at 2024-01-25 11:04 PM PST -njackman-2344,2024-01-29T20:39:40Z,- njackman-2344 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915523849) at 2024-01-29 12:39 PM PST -njackman-2344,2024-01-30T03:23:12Z,- njackman-2344 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1850159908) at 2024-01-29 07:23 PM PST -njackman-2344,2024-01-31T06:34:17Z,- njackman-2344 submitted pull request review: [6158](https://github.com/hackforla/website/pull/6158#pullrequestreview-1852983411) at 2024-01-30 10:34 PM PST -njackman-2344,2024-01-31T07:19:32Z,- njackman-2344 assigned to issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1875690198) at 2024-01-30 11:19 PM PST -njackman-2344,2024-01-31T07:25:40Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1918532660) at 2024-01-30 11:25 PM PST -njackman-2344,2024-01-31T07:34:13Z,- njackman-2344 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1853056154) at 2024-01-30 11:34 PM PST -njackman-2344,2024-02-02T07:22:15Z,- njackman-2344 submitted pull request review: [6210](https://github.com/hackforla/website/pull/6210#pullrequestreview-1858545255) at 2024-02-01 11:22 PM PST -njackman-2344,2024-02-02T07:25:12Z,- njackman-2344 submitted pull request review: [6207](https://github.com/hackforla/website/pull/6207#pullrequestreview-1858549812) at 2024-02-01 11:25 PM PST -njackman-2344,2024-02-02T23:35:17Z,- njackman-2344 commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1924905462) at 2024-02-02 03:35 PM PST -njackman-2344,2024-02-03T02:28:40Z,- njackman-2344 commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1925026196) at 2024-02-02 06:28 PM PST -njackman-2344,2024-02-03T02:41:00Z,- njackman-2344 commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1925029131) at 2024-02-02 06:41 PM PST -njackman-2344,2024-02-03T18:51:26Z,- njackman-2344 submitted pull request review: [6215](https://github.com/hackforla/website/pull/6215#pullrequestreview-1861111103) at 2024-02-03 10:51 AM PST -njackman-2344,2024-02-03T19:01:46Z,- njackman-2344 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1861111995) at 2024-02-03 11:01 AM PST -njackman-2344,2024-02-06T07:23:33Z,- njackman-2344 commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1928920868) at 2024-02-05 11:23 PM PST -njackman-2344,2024-02-09T05:04:43Z,- njackman-2344 submitted pull request review: [6241](https://github.com/hackforla/website/pull/6241#pullrequestreview-1871659334) at 2024-02-08 09:04 PM PST -njackman-2344,2024-02-10T07:17:20Z,- njackman-2344 commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1936911271) at 2024-02-09 11:17 PM PST -njackman-2344,2024-02-10T07:26:33Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1936914339) at 2024-02-09 11:26 PM PST -njackman-2344,2024-02-13T07:04:11Z,- njackman-2344 commented on pull request: [6283](https://github.com/hackforla/website/pull/6283#issuecomment-1940533804) at 2024-02-12 11:04 PM PST -njackman-2344,2024-02-13T15:04:57Z,- njackman-2344 submitted pull request review: [6283](https://github.com/hackforla/website/pull/6283#pullrequestreview-1878199211) at 2024-02-13 07:04 AM PST -njackman-2344,2024-02-17T03:02:03Z,- njackman-2344 commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949620109) at 2024-02-16 07:02 PM PST -njackman-2344,2024-02-17T03:34:58Z,- njackman-2344 submitted pull request review: [6307](https://github.com/hackforla/website/pull/6307#pullrequestreview-1886375742) at 2024-02-16 07:34 PM PST -njackman-2344,2024-02-18T06:40:37Z,- njackman-2344 submitted pull request review: [6307](https://github.com/hackforla/website/pull/6307#pullrequestreview-1887097810) at 2024-02-17 10:40 PM PST -njackman-2344,2024-03-01T07:47:25Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1972685346) at 2024-02-29 11:47 PM PST -njackman-2344,2024-03-19T20:30:29Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2008075470) at 2024-03-19 01:30 PM PDT -njackman-2344,2024-03-25T00:47:12Z,- njackman-2344 opened pull request: [6516](https://github.com/hackforla/website/pull/6516) at 2024-03-24 05:47 PM PDT -njackman-2344,2024-03-27T17:55:39Z,- njackman-2344 commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2023433259) at 2024-03-27 10:55 AM PDT -njackman-2344,2024-03-28T21:12:07Z,- njackman-2344 pull request closed w/o merging: [6516](https://github.com/hackforla/website/pull/6516#event-12287649839) at 2024-03-28 02:12 PM PDT -njackman-2344,2024-03-28T21:13:30Z,- njackman-2344 unassigned from issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2008075470) at 2024-03-28 02:13 PM PDT -nlee806,5229,SKILLS ISSUE -nlee806,2023-08-15T03:49:44Z,- nlee806 opened issue: [5229](https://github.com/hackforla/website/issues/5229) at 2023-08-14 08:49 PM PDT -nlee806,2023-08-15T03:50:18Z,- nlee806 assigned to issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1678389556) at 2023-08-14 08:50 PM PDT -nmotamedi,7741,SKILLS ISSUE -nmotamedi,2024-11-20T03:26:33Z,- nmotamedi opened issue: [7741](https://github.com/hackforla/website/issues/7741) at 2024-11-19 07:26 PM PST -nmotamedi,2024-11-20T03:27:02Z,- nmotamedi assigned to issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487270919) at 2024-11-19 07:27 PM PST -nmotamedi,2024-11-20T03:39:23Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487283403) at 2024-11-19 07:39 PM PST -nmotamedi,2024-11-20T04:28:24Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487395461) at 2024-11-19 08:28 PM PST -nmotamedi,2024-11-20T05:42:39Z,- nmotamedi assigned to issue: [7702](https://github.com/hackforla/website/issues/7702) at 2024-11-19 09:42 PM PST -nmotamedi,2024-11-20T05:53:16Z,- nmotamedi commented on issue: [7702](https://github.com/hackforla/website/issues/7702#issuecomment-2487533361) at 2024-11-19 09:53 PM PST -nmotamedi,2024-11-20T06:05:16Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487569883) at 2024-11-19 10:05 PM PST -nmotamedi,2024-11-20T06:20:11Z,- nmotamedi opened pull request: [7747](https://github.com/hackforla/website/pull/7747) at 2024-11-19 10:20 PM PST -nmotamedi,2024-11-21T17:17:02Z,- nmotamedi commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2491828491) at 2024-11-21 09:17 AM PST -nmotamedi,2024-11-27T22:03:40Z,- nmotamedi pull request merged: [7747](https://github.com/hackforla/website/pull/7747#event-15458006885) at 2024-11-27 02:03 PM PST -nmotamedi,2024-12-02T18:05:33Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2512314209) at 2024-12-02 10:05 AM PST -nnr-nnr,4063,SKILLS ISSUE -nnr-nnr,2023-03-01T04:03:35Z,- nnr-nnr opened issue: [4063](https://github.com/hackforla/website/issues/4063) at 2023-02-28 08:03 PM PST -nnr-nnr,2023-03-01T04:08:45Z,- nnr-nnr assigned to issue: [4063](https://github.com/hackforla/website/issues/4063) at 2023-02-28 08:08 PM PST -nnr-nnr,2023-03-15T01:11:51Z,- nnr-nnr assigned to issue: [3997](https://github.com/hackforla/website/issues/3997) at 2023-03-14 06:11 PM PDT -nnr-nnr,2023-03-15T07:38:25Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1469497271) at 2023-03-15 12:38 AM PDT -nnr-nnr,2023-03-15T07:41:17Z,- nnr-nnr commented on issue: [3997](https://github.com/hackforla/website/issues/3997#issuecomment-1469500011) at 2023-03-15 12:41 AM PDT -nnr-nnr,2023-03-17T08:11:37Z,- nnr-nnr opened pull request: [4201](https://github.com/hackforla/website/pull/4201) at 2023-03-17 01:11 AM PDT -nnr-nnr,2023-03-17T08:24:52Z,- nnr-nnr commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1473378161) at 2023-03-17 01:24 AM PDT -nnr-nnr,2023-03-17T23:44:44Z,- nnr-nnr submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1346835489) at 2023-03-17 04:44 PM PDT -nnr-nnr,2023-03-19T04:04:03Z,- nnr-nnr pull request merged: [4201](https://github.com/hackforla/website/pull/4201#event-8786877846) at 2023-03-18 09:04 PM PDT -nnr-nnr,2023-03-21T20:12:13Z,- nnr-nnr commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478521037) at 2023-03-21 01:12 PM PDT -nnr-nnr,2023-03-21T21:10:33Z,- nnr-nnr submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1351388369) at 2023-03-21 02:10 PM PDT -nnr-nnr,2023-03-21T21:15:19Z,- nnr-nnr assigned to issue: [3878](https://github.com/hackforla/website/issues/3878) at 2023-03-21 02:15 PM PDT -nnr-nnr,2023-03-21T21:25:03Z,- nnr-nnr commented on issue: [3878](https://github.com/hackforla/website/issues/3878#issuecomment-1478599795) at 2023-03-21 02:25 PM PDT -nnr-nnr,2023-03-21T23:32:56Z,- nnr-nnr opened pull request: [4228](https://github.com/hackforla/website/pull/4228) at 2023-03-21 04:32 PM PDT -nnr-nnr,2023-03-21T23:38:29Z,- nnr-nnr commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1478729403) at 2023-03-21 04:38 PM PDT -nnr-nnr,2023-03-22T01:07:31Z,- nnr-nnr submitted pull request review: [4222](https://github.com/hackforla/website/pull/4222#pullrequestreview-1351580167) at 2023-03-21 06:07 PM PDT -nnr-nnr,2023-03-22T01:18:07Z,- nnr-nnr commented on pull request: [4223](https://github.com/hackforla/website/pull/4223#issuecomment-1478790895) at 2023-03-21 06:18 PM PDT -nnr-nnr,2023-03-22T04:51:40Z,- nnr-nnr submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1351713337) at 2023-03-21 09:51 PM PDT -nnr-nnr,2023-03-22T05:06:08Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1478923014) at 2023-03-21 10:06 PM PDT -nnr-nnr,2023-03-22T05:12:14Z,- nnr-nnr commented on pull request: [4234](https://github.com/hackforla/website/pull/4234#issuecomment-1478927131) at 2023-03-21 10:12 PM PDT -nnr-nnr,2023-03-22T20:51:27Z,- nnr-nnr submitted pull request review: [4234](https://github.com/hackforla/website/pull/4234#pullrequestreview-1353457902) at 2023-03-22 01:51 PM PDT -nnr-nnr,2023-03-23T02:16:10Z,- nnr-nnr submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1353731944) at 2023-03-22 07:16 PM PDT -nnr-nnr,2023-03-23T21:03:17Z,- nnr-nnr pull request merged: [4228](https://github.com/hackforla/website/pull/4228#event-8832447458) at 2023-03-23 02:03 PM PDT -nnr-nnr,2023-03-23T21:26:08Z,- nnr-nnr assigned to issue: [4235](https://github.com/hackforla/website/issues/4235#issuecomment-1480440319) at 2023-03-23 02:26 PM PDT -nnr-nnr,2023-03-23T21:36:44Z,- nnr-nnr commented on issue: [4235](https://github.com/hackforla/website/issues/4235#issuecomment-1481945824) at 2023-03-23 02:36 PM PDT -nnr-nnr,2023-03-23T23:01:59Z,- nnr-nnr opened pull request: [4265](https://github.com/hackforla/website/pull/4265) at 2023-03-23 04:01 PM PDT -nnr-nnr,2023-03-24T20:28:37Z,- nnr-nnr pull request merged: [4265](https://github.com/hackforla/website/pull/4265#event-8842509391) at 2023-03-24 01:28 PM PDT -nnr-nnr,2023-03-26T01:19:37Z,- nnr-nnr submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1357923934) at 2023-03-25 06:19 PM PDT -nnr-nnr,2023-03-26T01:32:54Z,- nnr-nnr commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1483966636) at 2023-03-25 06:32 PM PDT -nnr-nnr,2023-03-26T17:23:28Z,- nnr-nnr commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1484163925) at 2023-03-26 10:23 AM PDT -nnr-nnr,2023-03-26T18:18:27Z,- nnr-nnr assigned to issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1482219221) at 2023-03-26 11:18 AM PDT -nnr-nnr,2023-03-26T19:17:23Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1484196141) at 2023-03-26 12:17 PM PDT -nnr-nnr,2023-03-26T20:30:18Z,- nnr-nnr submitted pull request review: [4270](https://github.com/hackforla/website/pull/4270#pullrequestreview-1358111274) at 2023-03-26 01:30 PM PDT -nnr-nnr,2023-03-27T00:06:17Z,- nnr-nnr submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1358164665) at 2023-03-26 05:06 PM PDT -nnr-nnr,2023-03-27T00:10:29Z,- nnr-nnr commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1484285589) at 2023-03-26 05:10 PM PDT -nnr-nnr,2023-03-31T00:36:47Z,- nnr-nnr commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1491136438) at 2023-03-30 05:36 PM PDT -nnr-nnr,2023-03-31T18:59:11Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1492453676) at 2023-03-31 11:59 AM PDT -nnr-nnr,2023-03-31T19:44:53Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1492508865) at 2023-03-31 12:44 PM PDT -nnr-nnr,2023-04-03T22:01:02Z,- nnr-nnr opened issue: [4389](https://github.com/hackforla/website/issues/4389) at 2023-04-03 03:01 PM PDT -nnr-nnr,2023-04-07T18:47:00Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1500543036) at 2023-04-07 11:47 AM PDT -nnr-nnr,2023-04-07T19:06:44Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1500558240) at 2023-04-07 12:06 PM PDT -nnr-nnr,2023-04-09T17:21:54Z,- nnr-nnr commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1501174883) at 2023-04-09 10:21 AM PDT -nnr-nnr,2023-04-09T17:22:49Z,- nnr-nnr commented on pull request: [4444](https://github.com/hackforla/website/pull/4444#issuecomment-1501175092) at 2023-04-09 10:22 AM PDT -nnr-nnr,2023-04-11T19:27:26Z,- nnr-nnr submitted pull request review: [4444](https://github.com/hackforla/website/pull/4444#pullrequestreview-1379936221) at 2023-04-11 12:27 PM PDT -nnr-nnr,2023-04-12T03:05:24Z,- nnr-nnr opened issue: [4484](https://github.com/hackforla/website/issues/4484) at 2023-04-11 08:05 PM PDT -nnr-nnr,2023-04-12T18:01:37Z,- nnr-nnr submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1381841679) at 2023-04-12 11:01 AM PDT -nnr-nnr,2023-04-25T21:08:13Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1522419157) at 2023-04-25 02:08 PM PDT -nnr-nnr,2023-04-26T02:14:28Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1522664094) at 2023-04-25 07:14 PM PDT -nnr-nnr,2023-05-18T23:22:47Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1553775073) at 2023-05-18 04:22 PM PDT -nnr-nnr,2023-05-23T23:15:44Z,- nnr-nnr commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1560246073) at 2023-05-23 04:15 PM PDT -nnr-nnr,2023-05-24T19:49:10Z,- nnr-nnr commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1561839627) at 2023-05-24 12:49 PM PDT -nnr-nnr,2023-06-23T14:04:44Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1604333206) at 2023-06-23 07:04 AM PDT -nnr-nnr,2023-07-26T01:07:17Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1650813088) at 2023-07-25 06:07 PM PDT -nnr-nnr,2023-07-26T01:07:26Z,- nnr-nnr unassigned from issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1650813088) at 2023-07-25 06:07 PM PDT -nnr-nnr,2023-07-26T02:22:18Z,- nnr-nnr assigned to issue: [4867](https://github.com/hackforla/website/issues/4867) at 2023-07-25 07:22 PM PDT -nnr-nnr,2023-07-26T02:28:53Z,- nnr-nnr commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1650878591) at 2023-07-25 07:28 PM PDT -nnr-nnr,2023-07-26T02:30:23Z,- nnr-nnr commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1650879675) at 2023-07-25 07:30 PM PDT -nnr-nnr,2023-07-27T01:49:14Z,- nnr-nnr submitted pull request review: [5054](https://github.com/hackforla/website/pull/5054#pullrequestreview-1548861931) at 2023-07-26 06:49 PM PDT -nnr-nnr,2023-07-27T02:01:12Z,- nnr-nnr submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1548873368) at 2023-07-26 07:01 PM PDT -nnr-nnr,2023-07-27T02:03:33Z,- nnr-nnr commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1652805044) at 2023-07-26 07:03 PM PDT -nnr-nnr,2023-08-04T18:28:07Z,- nnr-nnr commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1666019015) at 2023-08-04 11:28 AM PDT -nnr-nnr,2023-08-04T18:31:12Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1666023526) at 2023-08-04 11:31 AM PDT -nnr-nnr,2023-09-20T02:08:21Z,- nnr-nnr unassigned from issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1720785377) at 2023-09-19 07:08 PM PDT -NolaDodd,7221,SKILLS ISSUE -NolaDodd,2024-08-06T04:09:35Z,- NolaDodd opened issue: [7221](https://github.com/hackforla/website/issues/7221) at 2024-08-05 09:09 PM PDT -NolaDodd,2024-08-06T04:10:28Z,- NolaDodd assigned to issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2270343592) at 2024-08-05 09:10 PM PDT -NolaDodd,2024-08-10T19:31:04Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2282254758) at 2024-08-10 12:31 PM PDT -NolaDodd,2024-08-10T19:33:11Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2282255402) at 2024-08-10 12:33 PM PDT -NolaDodd,2024-08-17T22:47:20Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2295017704) at 2024-08-17 03:47 PM PDT -NolaDodd,2024-08-28T01:15:51Z,- NolaDodd assigned to issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2294406124) at 2024-08-27 06:15 PM PDT -NolaDodd,2024-08-28T21:16:54Z,- NolaDodd commented on issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2316267161) at 2024-08-28 02:16 PM PDT -NolaDodd,2024-08-30T20:36:28Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2322299610) at 2024-08-30 01:36 PM PDT -NolaDodd,2024-08-30T21:35:23Z,- NolaDodd opened pull request: [7369](https://github.com/hackforla/website/pull/7369) at 2024-08-30 02:35 PM PDT -NolaDodd,2024-08-30T21:39:39Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2322373585) at 2024-08-30 02:39 PM PDT -NolaDodd,2024-08-30T21:42:27Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2322376005) at 2024-08-30 02:42 PM PDT -NolaDodd,2024-08-30T22:54:19Z,- NolaDodd commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2322525003) at 2024-08-30 03:54 PM PDT -NolaDodd,2024-09-12T19:49:47Z,- NolaDodd pull request merged: [7369](https://github.com/hackforla/website/pull/7369#event-14238177253) at 2024-09-12 12:49 PM PDT -NolaDodd,2024-09-12T22:49:28Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2347372733) at 2024-09-12 03:49 PM PDT -NolaDodd,2024-09-19T20:09:19Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2362085181) at 2024-09-19 01:09 PM PDT -NolaDodd,2024-09-19T20:29:09Z,- NolaDodd assigned to issue: [7497](https://github.com/hackforla/website/issues/7497) at 2024-09-19 01:29 PM PDT -NolaDodd,2024-09-19T20:33:49Z,- NolaDodd commented on issue: [7497](https://github.com/hackforla/website/issues/7497#issuecomment-2362123808) at 2024-09-19 01:33 PM PDT -NolaDodd,2024-09-19T21:31:06Z,- NolaDodd opened pull request: [7498](https://github.com/hackforla/website/pull/7498) at 2024-09-19 02:31 PM PDT -NolaDodd,2024-09-21T19:02:10Z,- NolaDodd commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2365289487) at 2024-09-21 12:02 PM PDT -NolaDodd,2024-09-21T19:02:10Z,- NolaDodd pull request closed w/o merging: [7498](https://github.com/hackforla/website/pull/7498#event-14350325522) at 2024-09-21 12:02 PM PDT -NolaDodd,2024-09-21T19:24:33Z,- NolaDodd opened pull request: [7504](https://github.com/hackforla/website/pull/7504) at 2024-09-21 12:24 PM PDT -NolaDodd,2024-09-23T02:21:57Z,- NolaDodd pull request merged: [7504](https://github.com/hackforla/website/pull/7504#event-14356490794) at 2024-09-22 07:21 PM PDT -NolaDodd,2024-09-23T03:04:41Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2367154238) at 2024-09-22 08:04 PM PDT -NolaDodd,2024-10-02T23:20:04Z,- NolaDodd assigned to issue: [7556](https://github.com/hackforla/website/issues/7556) at 2024-10-02 04:20 PM PDT -NolaDodd,2024-10-02T23:20:20Z,- NolaDodd unassigned from issue: [7556](https://github.com/hackforla/website/issues/7556) at 2024-10-02 04:20 PM PDT -NolaDodd,2024-10-11T18:10:23Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2407905787) at 2024-10-11 11:10 AM PDT -NolaDodd,2024-10-15T03:45:53Z,- NolaDodd commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2412834875) at 2024-10-14 08:45 PM PDT -NolaDodd,2024-10-15T03:48:18Z,- NolaDodd submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2368097005) at 2024-10-14 08:48 PM PDT -NolaDodd,2024-10-15T03:52:13Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2412840277) at 2024-10-14 08:52 PM PDT -NolaDodd,2024-10-30T23:08:34Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2448638859) at 2024-10-30 04:08 PM PDT -NolaDodd,2024-11-17T21:34:07Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2481604753) at 2024-11-17 01:34 PM PST -NolaDodd,2024-11-17T22:01:22Z,- NolaDodd commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481613685) at 2024-11-17 02:01 PM PST -NolaDodd,2024-11-17T22:18:50Z,- NolaDodd submitted pull request review: [7723](https://github.com/hackforla/website/pull/7723#pullrequestreview-2441246125) at 2024-11-17 02:18 PM PST -NolaDodd,2024-11-17T22:20:23Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2481631194) at 2024-11-17 02:20 PM PST -NolaDodd,2024-12-04T02:50:46Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2516054992) at 2024-12-03 06:50 PM PST -NolaDodd,2024-12-04T02:51:20Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2516055509) at 2024-12-03 06:51 PM PST -NolaDodd,2025-01-04T00:28:51Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2569962346) at 2025-01-03 04:28 PM PST -NolaDodd,2025-02-05T00:41:55Z,- NolaDodd commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2635451659) at 2025-02-04 04:41 PM PST -NolaDodd,2025-02-05T00:56:46Z,- NolaDodd submitted pull request review: [7874](https://github.com/hackforla/website/pull/7874#pullrequestreview-2594397849) at 2025-02-04 04:56 PM PST -nooriaali9,2024-12-09T23:46:31Z,- nooriaali9 commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2529811363) at 2024-12-09 03:46 PM PST -notSayam,7338,SKILLS ISSUE -notSayam,2024-08-21T03:48:13Z,- notSayam opened issue: [7338](https://github.com/hackforla/website/issues/7338) at 2024-08-20 08:48 PM PDT -notSayam,2024-08-21T03:50:10Z,- notSayam assigned to issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2300642848) at 2024-08-20 08:50 PM PDT -notSayam,2024-08-21T04:05:10Z,- notSayam commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2300726192) at 2024-08-20 09:05 PM PDT -notSayam,2024-08-23T02:24:20Z,- notSayam commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2306065748) at 2024-08-22 07:24 PM PDT -npkeerthi,2021-10-21T06:02:13Z,- npkeerthi opened pull request: [2388](https://github.com/hackforla/website/pull/2388) at 2021-10-20 11:02 PM PDT -npkeerthi,2021-10-21T06:04:20Z,- npkeerthi commented on pull request: [2388](https://github.com/hackforla/website/pull/2388#issuecomment-948285395) at 2021-10-20 11:04 PM PDT -npkeerthi,2021-10-21T16:37:54Z,- npkeerthi pull request closed w/o merging: [2388](https://github.com/hackforla/website/pull/2388#event-5499829304) at 2021-10-21 09:37 AM PDT -npkeerthi,2021-12-21T06:27:56Z,- npkeerthi opened pull request: [2611](https://github.com/hackforla/website/pull/2611) at 2021-12-20 10:27 PM PST -npkeerthi,2022-01-01T11:09:02Z,- npkeerthi commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003542682) at 2022-01-01 03:09 AM PST -npkeerthi,2022-01-02T11:03:02Z,- npkeerthi commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003698061) at 2022-01-02 03:03 AM PST -npkeerthi,2022-01-24T19:35:13Z,- npkeerthi pull request closed w/o merging: [2611](https://github.com/hackforla/website/pull/2611#event-5945014974) at 2022-01-24 11:35 AM PST -NPriyaK,7224,SKILLS ISSUE -NPriyaK,2024-08-06T12:24:16Z,- NPriyaK opened issue: [7224](https://github.com/hackforla/website/issues/7224) at 2024-08-06 05:24 AM PDT -NPriyaK,2024-08-06T16:08:23Z,- NPriyaK assigned to issue: [7224](https://github.com/hackforla/website/issues/7224) at 2024-08-06 09:08 AM PDT -NPriyaK,2024-08-07T10:33:58Z,- NPriyaK unassigned from issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2272770959) at 2024-08-07 03:33 AM PDT -NPriyaK,2024-08-07T10:37:02Z,- NPriyaK commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2273160837) at 2024-08-07 03:37 AM PDT -NPriyaK,2024-08-13T00:39:52Z,- NPriyaK assigned to issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2273160837) at 2024-08-12 05:39 PM PDT -NPriyaK,2024-08-13T12:54:54Z,- NPriyaK commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2286196926) at 2024-08-13 05:54 AM PDT -nssensalo,6528,SKILLS ISSUE -nssensalo,2024-03-27T03:15:30Z,- nssensalo opened issue: [6528](https://github.com/hackforla/website/issues/6528) at 2024-03-26 08:15 PM PDT -nssensalo,2024-04-01T23:13:30Z,- nssensalo assigned to issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2021848026) at 2024-04-01 04:13 PM PDT -nssensalo,2024-04-02T03:10:37Z,- nssensalo commented on issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2030995290) at 2024-04-01 08:10 PM PDT -nssensalo,2024-04-08T01:12:57Z,- nssensalo closed issue as completed: [6528](https://github.com/hackforla/website/issues/6528#event-12385720101) at 2024-04-07 06:12 PM PDT -nssensalo,2024-04-17T01:13:02Z,- nssensalo assigned to issue: [5845](https://github.com/hackforla/website/issues/5845) at 2024-04-16 06:13 PM PDT -nssensalo,2024-04-19T00:03:24Z,- nssensalo unassigned from issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2060162903) at 2024-04-18 05:03 PM PDT -nssensalo,2024-04-19T00:58:11Z,- nssensalo commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065560110) at 2024-04-18 05:58 PM PDT -nssensalo,2024-04-26T14:31:12Z,- nssensalo assigned to issue: [6763](https://github.com/hackforla/website/issues/6763) at 2024-04-26 07:31 AM PDT -nssensalo,2024-04-26T14:41:13Z,- nssensalo commented on issue: [6763](https://github.com/hackforla/website/issues/6763#issuecomment-2079530809) at 2024-04-26 07:41 AM PDT -nssensalo,2024-04-26T19:05:31Z,- nssensalo commented on issue: [6763](https://github.com/hackforla/website/issues/6763#issuecomment-2079972350) at 2024-04-26 12:05 PM PDT -nssensalo,2024-04-27T00:30:04Z,- nssensalo opened pull request: [6770](https://github.com/hackforla/website/pull/6770) at 2024-04-26 05:30 PM PDT -nssensalo,2024-04-29T21:26:50Z,- nssensalo pull request merged: [6770](https://github.com/hackforla/website/pull/6770#event-12649345077) at 2024-04-29 02:26 PM PDT -nssensalo,2024-05-06T00:15:34Z,- nssensalo assigned to issue: [6759](https://github.com/hackforla/website/issues/6759) at 2024-05-05 05:15 PM PDT -nssensalo,2024-05-06T00:16:43Z,- nssensalo commented on issue: [6759](https://github.com/hackforla/website/issues/6759#issuecomment-2095013113) at 2024-05-05 05:16 PM PDT -nssensalo,2024-05-06T00:51:50Z,- nssensalo opened pull request: [6821](https://github.com/hackforla/website/pull/6821) at 2024-05-05 05:51 PM PDT -nssensalo,2024-05-07T14:39:50Z,- nssensalo commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2098567723) at 2024-05-07 07:39 AM PDT -nssensalo,2024-05-09T21:04:50Z,- nssensalo commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2103418292) at 2024-05-09 02:04 PM PDT -nssensalo,2024-05-10T14:31:58Z,- nssensalo pull request merged: [6821](https://github.com/hackforla/website/pull/6821#event-12770555020) at 2024-05-10 07:31 AM PDT -nssensalo,2024-05-22T21:01:16Z,- nssensalo assigned to issue: [6591](https://github.com/hackforla/website/issues/6591) at 2024-05-22 02:01 PM PDT -nssensalo,2024-05-22T21:04:22Z,- nssensalo commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2125740544) at 2024-05-22 02:04 PM PDT -nssensalo,2024-06-01T01:34:19Z,- nssensalo commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2143202310) at 2024-05-31 06:34 PM PDT -nssensalo,2024-06-05T23:06:49Z,- nssensalo commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2151103104) at 2024-06-05 04:06 PM PDT -nssensalo,2024-06-25T01:37:10Z,- nssensalo assigned to issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-1636924714) at 2024-06-24 06:37 PM PDT -nssensalo,2024-08-05T17:40:53Z,- nssensalo commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2269581785) at 2024-08-05 10:40 AM PDT -nssensalo,2024-08-12T20:14:42Z,- nssensalo commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2284829378) at 2024-08-12 01:14 PM PDT -nssensalo,2024-08-27T02:27:00Z,- nssensalo commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2311446544) at 2024-08-26 07:27 PM PDT -nssensalo,2024-08-27T02:27:21Z,- nssensalo unassigned from issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2311446544) at 2024-08-26 07:27 PM PDT -nubilaxl,8191,SKILLS ISSUE -nubilaxl,2025-06-17T03:46:13Z,- nubilaxl opened issue: [8191](https://github.com/hackforla/website/issues/8191) at 2025-06-16 08:46 PM PDT -nubilaxl,2025-06-17T03:46:20Z,- nubilaxl assigned to issue: [8191](https://github.com/hackforla/website/issues/8191) at 2025-06-16 08:46 PM PDT -nubilaxl,2025-06-20T00:09:01Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-2989446832) at 2025-06-19 05:09 PM PDT -nubilaxl,2025-06-20T02:36:22Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-2989634371) at 2025-06-19 07:36 PM PDT -nubilaxl,2025-06-22T19:14:00Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-2994385946) at 2025-06-22 12:14 PM PDT -nubilaxl,2025-06-25T17:04:28Z,- nubilaxl commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3005513969) at 2025-06-25 10:04 AM PDT -nubilaxl,2025-06-26T16:58:10Z,- nubilaxl submitted pull request review: [8197](https://github.com/hackforla/website/pull/8197#pullrequestreview-2962801543) at 2025-06-26 09:58 AM PDT -nubilaxl,2025-06-26T23:43:36Z,- nubilaxl assigned to issue: [8014](https://github.com/hackforla/website/issues/8014) at 2025-06-26 04:43 PM PDT -nubilaxl,2025-06-27T00:02:48Z,- nubilaxl commented on issue: [8014](https://github.com/hackforla/website/issues/8014#issuecomment-3010753041) at 2025-06-26 05:02 PM PDT -nubilaxl,2025-06-27T00:06:47Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-3010762278) at 2025-06-26 05:06 PM PDT -nubilaxl,2025-07-04T18:25:03Z,- nubilaxl opened pull request: [8243](https://github.com/hackforla/website/pull/8243) at 2025-07-04 11:25 AM PDT -nung22,4324,SKILLS ISSUE -nung22,2023-03-29T03:41:03Z,- nung22 opened issue: [4324](https://github.com/hackforla/website/issues/4324) at 2023-03-28 08:41 PM PDT -nung22,2023-03-29T03:58:25Z,- nung22 assigned to issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1487901669) at 2023-03-28 08:58 PM PDT -nung22,2023-04-04T18:35:51Z,- nung22 assigned to issue: [4399](https://github.com/hackforla/website/issues/4399) at 2023-04-04 11:35 AM PDT -nung22,2023-04-17T20:49:27Z,- nung22 commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1512066340) at 2023-04-17 01:49 PM PDT -nung22,2023-05-15T03:18:03Z,- nung22 unassigned from issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547135751) at 2023-05-14 08:18 PM PDT -nung22,2023-05-15T03:37:51Z,- nung22 commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547146250) at 2023-05-14 08:37 PM PDT -nung22,2023-06-11T16:32:09Z,- nung22 closed issue as not planned: [4324](https://github.com/hackforla/website/issues/4324#event-9494745101) at 2023-06-11 09:32 AM PDT -o-anakin,2020-11-08T06:21:58Z,- o-anakin opened pull request: [805](https://github.com/hackforla/website/pull/805) at 2020-11-07 10:21 PM PST -o-anakin,2020-11-08T06:22:43Z,- o-anakin pull request closed w/o merging: [805](https://github.com/hackforla/website/pull/805#event-3970483620) at 2020-11-07 10:22 PM PST -oiseeurmt,7827,SKILLS ISSUE -oiseeurmt,2025-01-14T04:19:46Z,- oiseeurmt opened issue: [7827](https://github.com/hackforla/website/issues/7827) at 2025-01-13 08:19 PM PST -oiseeurmt,2025-01-14T04:22:10Z,- oiseeurmt assigned to issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2588914075) at 2025-01-13 08:22 PM PST -oiseeurmt,2025-01-14T04:56:59Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2588985980) at 2025-01-13 08:56 PM PST -oiseeurmt,2025-01-15T03:12:06Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2591550382) at 2025-01-14 07:12 PM PST -oiseeurmt,2025-01-15T03:50:55Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2591586962) at 2025-01-14 07:50 PM PST -oiseeurmt,2025-01-15T03:54:18Z,- oiseeurmt assigned to issue: [7742](https://github.com/hackforla/website/issues/7742) at 2025-01-14 07:54 PM PST -oiseeurmt,2025-01-15T04:55:38Z,- oiseeurmt opened pull request: [7832](https://github.com/hackforla/website/pull/7832) at 2025-01-14 08:55 PM PST -oiseeurmt,2025-01-15T05:01:25Z,- oiseeurmt commented on issue: [7742](https://github.com/hackforla/website/issues/7742#issuecomment-2591656728) at 2025-01-14 09:01 PM PST -oiseeurmt,2025-01-15T05:04:46Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2591659995) at 2025-01-14 09:04 PM PST -oiseeurmt,2025-01-18T06:02:36Z,- oiseeurmt commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2599569947) at 2025-01-17 10:02 PM PST -oiseeurmt,2025-01-20T22:15:33Z,- oiseeurmt pull request merged: [7832](https://github.com/hackforla/website/pull/7832#event-16004941557) at 2025-01-20 02:15 PM PST -oiseeurmt,2025-01-21T03:11:58Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2603534833) at 2025-01-20 07:11 PM PST -oiseeurmt,2025-01-21T03:20:18Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2603546462) at 2025-01-20 07:20 PM PST -oiseeurmt,2025-01-21T03:23:08Z,- oiseeurmt assigned to issue: [7752](https://github.com/hackforla/website/issues/7752) at 2025-01-20 07:23 PM PST -oiseeurmt,2025-01-21T03:24:41Z,- oiseeurmt commented on issue: [7752](https://github.com/hackforla/website/issues/7752#issuecomment-2603556039) at 2025-01-20 07:24 PM PST -oiseeurmt,2025-01-21T04:35:54Z,- oiseeurmt opened pull request: [7840](https://github.com/hackforla/website/pull/7840) at 2025-01-20 08:35 PM PST -oiseeurmt,2025-01-25T00:07:33Z,- oiseeurmt commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2613630375) at 2025-01-24 04:07 PM PST -oiseeurmt,2025-01-28T15:40:26Z,- oiseeurmt commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2619361791) at 2025-01-28 07:40 AM PST -oiseeurmt,2025-01-29T10:39:18Z,- oiseeurmt pull request merged: [7840](https://github.com/hackforla/website/pull/7840#event-16105868872) at 2025-01-29 02:39 AM PST -oiseeurmt,2025-02-03T19:20:57Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2631871150) at 2025-02-03 11:20 AM PST -ojafero,2021-11-30T18:24:51Z,- ojafero assigned to issue: [2445](https://github.com/hackforla/website/issues/2445#issuecomment-960394746) at 2021-11-30 10:24 AM PST -ojafero,2021-11-30T18:53:40Z,- ojafero opened pull request: [2525](https://github.com/hackforla/website/pull/2525) at 2021-11-30 10:53 AM PST -ojafero,2021-12-01T03:24:57Z,- ojafero pull request merged: [2525](https://github.com/hackforla/website/pull/2525#event-5696107373) at 2021-11-30 07:24 PM PST -Olanrewaju-Ak,3065,SKILLS ISSUE -Olanrewaju-Ak,2022-04-19T03:28:26Z,- Olanrewaju-Ak opened issue: [3065](https://github.com/hackforla/website/issues/3065) at 2022-04-18 08:28 PM PDT -Olanrewaju-Ak,2022-04-19T03:29:57Z,- Olanrewaju-Ak assigned to issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1101956564) at 2022-04-18 08:29 PM PDT -Olanrewaju-Ak,2022-04-28T18:31:06Z,- Olanrewaju-Ak closed issue as completed: [3065](https://github.com/hackforla/website/issues/3065#event-6517416439) at 2022-04-28 11:31 AM PDT -Olanrewaju-Ak,2022-04-28T18:36:19Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1112536529) at 2022-04-28 11:36 AM PDT -Olanrewaju-Ak,2022-05-08T16:09:28Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1120445308) at 2022-05-08 09:09 AM PDT -Olanrewaju-Ak,2022-05-08T16:35:14Z,- Olanrewaju-Ak assigned to issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-05-08 09:35 AM PDT -Olanrewaju-Ak,2022-05-08T16:37:12Z,- Olanrewaju-Ak unassigned from issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-05-08 09:37 AM PDT -Olanrewaju-Ak,2022-05-08T16:42:40Z,- Olanrewaju-Ak assigned to issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-08 09:42 AM PDT -Olanrewaju-Ak,2022-05-08T16:44:47Z,- Olanrewaju-Ak unassigned from issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-08 09:44 AM PDT -Olanrewaju-Ak,2022-05-08T16:44:54Z,- Olanrewaju-Ak assigned to issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-08 09:44 AM PDT -Olanrewaju-Ak,2022-05-09T20:55:15Z,- Olanrewaju-Ak opened pull request: [3116](https://github.com/hackforla/website/pull/3116) at 2022-05-09 01:55 PM PDT -Olanrewaju-Ak,2022-05-14T01:40:04Z,- Olanrewaju-Ak pull request closed w/o merging: [3116](https://github.com/hackforla/website/pull/3116#event-6609335425) at 2022-05-13 06:40 PM PDT -Olanrewaju-Ak,2022-05-14T19:46:50Z,- Olanrewaju-Ak commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1126801518) at 2022-05-14 12:46 PM PDT -Olanrewaju-Ak,2022-05-20T21:14:46Z,- Olanrewaju-Ak unassigned from issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-20 02:14 PM PDT -Olanrewaju-Ak,2022-05-22T16:59:34Z,- Olanrewaju-Ak assigned to issue: [2794](https://github.com/hackforla/website/issues/2794#issuecomment-1045512593) at 2022-05-22 09:59 AM PDT -Olanrewaju-Ak,2022-05-22T17:06:53Z,- Olanrewaju-Ak commented on issue: [2794](https://github.com/hackforla/website/issues/2794#issuecomment-1133935986) at 2022-05-22 10:06 AM PDT -Olanrewaju-Ak,2022-05-23T22:28:15Z,- Olanrewaju-Ak opened pull request: [3171](https://github.com/hackforla/website/pull/3171) at 2022-05-23 03:28 PM PDT -Olanrewaju-Ak,2022-05-24T02:37:31Z,- Olanrewaju-Ak pull request merged: [3171](https://github.com/hackforla/website/pull/3171#event-6665303527) at 2022-05-23 07:37 PM PDT -Olanrewaju-Ak,2022-05-29T09:50:46Z,- Olanrewaju-Ak assigned to issue: [2922](https://github.com/hackforla/website/issues/2922#issuecomment-1058577349) at 2022-05-29 02:50 AM PDT -Olanrewaju-Ak,2022-05-29T09:51:53Z,- Olanrewaju-Ak commented on issue: [2922](https://github.com/hackforla/website/issues/2922#issuecomment-1140414571) at 2022-05-29 02:51 AM PDT -Olanrewaju-Ak,2022-05-29T11:29:16Z,- Olanrewaju-Ak opened pull request: [3178](https://github.com/hackforla/website/pull/3178) at 2022-05-29 04:29 AM PDT -Olanrewaju-Ak,2022-05-29T11:35:27Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1140429916) at 2022-05-29 04:35 AM PDT -Olanrewaju-Ak,2022-06-04T04:14:34Z,- Olanrewaju-Ak pull request merged: [3178](https://github.com/hackforla/website/pull/3178#event-6741072476) at 2022-06-03 09:14 PM PDT -Olanrewaju-Ak,2022-06-08T18:19:42Z,- Olanrewaju-Ak unassigned from issue: [2922](https://github.com/hackforla/website/issues/2922#event-6741072471) at 2022-06-08 11:19 AM PDT -Olanrewaju-Ak,2022-06-08T18:47:41Z,- Olanrewaju-Ak assigned to issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1120046677) at 2022-06-08 11:47 AM PDT -Olanrewaju-Ak,2022-06-08T18:48:48Z,- Olanrewaju-Ak unassigned from issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1120046677) at 2022-06-08 11:48 AM PDT -Olanrewaju-Ak,2022-06-08T19:03:07Z,- Olanrewaju-Ak assigned to issue: [3018](https://github.com/hackforla/website/issues/3018#issuecomment-1089447945) at 2022-06-08 12:03 PM PDT -Olanrewaju-Ak,2022-06-08T19:04:57Z,- Olanrewaju-Ak commented on issue: [3018](https://github.com/hackforla/website/issues/3018#issuecomment-1150289563) at 2022-06-08 12:04 PM PDT -Olanrewaju-Ak,2022-06-08T19:38:24Z,- Olanrewaju-Ak opened pull request: [3235](https://github.com/hackforla/website/pull/3235) at 2022-06-08 12:38 PM PDT -Olanrewaju-Ak,2022-06-08T20:22:57Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1150370448) at 2022-06-08 01:22 PM PDT -Olanrewaju-Ak,2022-06-17T01:02:33Z,- Olanrewaju-Ak pull request merged: [3235](https://github.com/hackforla/website/pull/3235#event-6825256434) at 2022-06-16 06:02 PM PDT -Olanrewaju-Ak,2022-06-19T17:33:59Z,- Olanrewaju-Ak commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159781502) at 2022-06-19 10:33 AM PDT -Olanrewaju-Ak,2022-06-20T17:26:51Z,- Olanrewaju-Ak submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1012582182) at 2022-06-20 10:26 AM PDT -Olanrewaju-Ak,2022-06-23T01:48:06Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1163833673) at 2022-06-22 06:48 PM PDT -OlgaBilogurova,2020-11-23T21:49:36Z,- OlgaBilogurova opened pull request: [812](https://github.com/hackforla/website/pull/812) at 2020-11-23 01:49 PM PST -OlgaBilogurova,2020-11-29T10:02:16Z,- OlgaBilogurova pull request merged: [812](https://github.com/hackforla/website/pull/812#event-4048874696) at 2020-11-29 02:02 AM PST -Olivia-Chiong,2020-12-08T21:48:52Z,- Olivia-Chiong opened issue: [838](https://github.com/hackforla/website/issues/838) at 2020-12-08 01:48 PM PST -Olivia-Chiong,2020-12-08T21:48:52Z,- Olivia-Chiong assigned to issue: [838](https://github.com/hackforla/website/issues/838) at 2020-12-08 01:48 PM PST -Olivia-Chiong,2020-12-08T21:51:26Z,- Olivia-Chiong assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -Olivia-Chiong,2020-12-08T21:54:12Z,- Olivia-Chiong unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -Olivia-Chiong,2020-12-08T21:54:35Z,- Olivia-Chiong assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -Olivia-Chiong,2020-12-08T22:04:55Z,- Olivia-Chiong commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741107920) at 2020-12-08 02:04 PM PST -Olivia-Chiong,2020-12-08T22:23:23Z,- Olivia-Chiong opened pull request: [839](https://github.com/hackforla/website/pull/839) at 2020-12-08 02:23 PM PST -Olivia-Chiong,2020-12-08T22:35:36Z,- Olivia-Chiong pull request merged: [839](https://github.com/hackforla/website/pull/839#event-4087070296) at 2020-12-08 02:35 PM PST -Olivia-Chiong,2020-12-09T00:12:37Z,- Olivia-Chiong opened pull request: [840](https://github.com/hackforla/website/pull/840) at 2020-12-08 04:12 PM PST -Olivia-Chiong,2020-12-09T00:24:06Z,- Olivia-Chiong commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2020-12-08 04:24 PM PST -Olivia-Chiong,2020-12-16T03:29:55Z,- Olivia-Chiong pull request merged: [840](https://github.com/hackforla/website/pull/840#event-4117657082) at 2020-12-15 07:29 PM PST -Olivia-Chiong,2020-12-20T00:56:57Z,- Olivia-Chiong opened issue: [852](https://github.com/hackforla/website/issues/852) at 2020-12-19 04:56 PM PST -Olivia-Chiong,2020-12-20T01:01:58Z,- Olivia-Chiong commented on issue: [852](https://github.com/hackforla/website/issues/852#issuecomment-748547116) at 2020-12-19 05:01 PM PST -Olivia-Chiong,2020-12-20T01:13:07Z,- Olivia-Chiong opened issue: [853](https://github.com/hackforla/website/issues/853) at 2020-12-19 05:13 PM PST -Olivia-Chiong,2020-12-20T01:18:42Z,- Olivia-Chiong unassigned from issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2020-12-19 05:18 PM PST -Olivia-Chiong,2020-12-27T00:35:16Z,- Olivia-Chiong submitted pull request review: [870](https://github.com/hackforla/website/pull/870#pullrequestreview-558897414) at 2020-12-26 04:35 PM PST -Olivia-Chiong,2020-12-28T01:34:10Z,- Olivia-Chiong closed issue as completed: [632](https://github.com/hackforla/website/issues/632#event-4150753854) at 2020-12-27 05:34 PM PST -Olivia-Chiong,2020-12-28T01:36:21Z,- Olivia-Chiong commented on issue: [852](https://github.com/hackforla/website/issues/852#issuecomment-751544329) at 2020-12-27 05:36 PM PST -Olivia-Chiong,2020-12-28T01:36:21Z,- Olivia-Chiong closed issue by PR 878: [852](https://github.com/hackforla/website/issues/852#event-4150756200) at 2020-12-27 05:36 PM PST -Olivia-Chiong,2021-01-05T21:22:23Z,- Olivia-Chiong assigned to issue: [915](https://github.com/hackforla/website/issues/915) at 2021-01-05 01:22 PM PST -Olivia-Chiong,2021-01-05T21:45:58Z,- Olivia-Chiong unassigned from issue: [915](https://github.com/hackforla/website/issues/915) at 2021-01-05 01:45 PM PST -Olivia-Chiong,2021-01-05T22:37:53Z,- Olivia-Chiong assigned to issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 02:37 PM PST -Olivia-Chiong,2021-01-08T00:39:34Z,- Olivia-Chiong commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-756473615) at 2021-01-07 04:39 PM PST -Olivia-Chiong,2021-01-10T20:38:35Z,- Olivia-Chiong unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -Olivia-Chiong,2021-01-13T19:59:12Z,- Olivia-Chiong unassigned from issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-756473615) at 2021-01-13 11:59 AM PST -Olivia-Chiong,2021-01-13T19:59:18Z,- Olivia-Chiong commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-759705521) at 2021-01-13 11:59 AM PST -Olivia-Chiong,2021-01-31T20:16:33Z,- Olivia-Chiong commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-770443642) at 2021-01-31 12:16 PM PST -Olivia-Chiong,2021-02-05T07:49:31Z,- Olivia-Chiong opened issue: [1003](https://github.com/hackforla/website/issues/1003) at 2021-02-04 11:49 PM PST -Olivia-Chiong,2021-02-05T07:59:47Z,- Olivia-Chiong opened issue: [1004](https://github.com/hackforla/website/issues/1004) at 2021-02-04 11:59 PM PST -Olivia-Chiong,2021-02-09T06:29:46Z,- Olivia-Chiong opened issue: [1021](https://github.com/hackforla/website/issues/1021) at 2021-02-08 10:29 PM PST -Olivia-Chiong,2021-02-09T06:35:18Z,- Olivia-Chiong opened issue: [1022](https://github.com/hackforla/website/issues/1022) at 2021-02-08 10:35 PM PST -Olivia-Chiong,2021-02-09T06:38:30Z,- Olivia-Chiong opened issue: [1023](https://github.com/hackforla/website/issues/1023) at 2021-02-08 10:38 PM PST -Olivia-Chiong,2021-02-09T06:51:48Z,- Olivia-Chiong commented on issue: [1021](https://github.com/hackforla/website/issues/1021#issuecomment-775714913) at 2021-02-08 10:51 PM PST -Olivia-Chiong,2021-02-10T03:09:41Z,- Olivia-Chiong opened issue: [1031](https://github.com/hackforla/website/issues/1031) at 2021-02-09 07:09 PM PST -Olivia-Chiong,2021-02-19T07:08:53Z,- Olivia-Chiong commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-781879814) at 2021-02-18 11:08 PM PST -Olivia-Chiong,2021-04-21T03:18:38Z,- Olivia-Chiong commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823747808) at 2021-04-20 08:18 PM PDT -Olivia-Chiong,2021-06-11T17:09:16Z,- Olivia-Chiong commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859722792) at 2021-06-11 10:09 AM PDT -Olivia-Chiong,2021-06-11T17:09:16Z,- Olivia-Chiong commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859722792) at 2021-06-11 10:09 AM PDT -oliviaywangn,3126,SKILLS ISSUE -oliviaywangn,2022-05-11T03:26:04Z,- oliviaywangn opened issue: [3126](https://github.com/hackforla/website/issues/3126) at 2022-05-10 08:26 PM PDT -oliviaywangn,2022-05-18T00:54:08Z,- oliviaywangn assigned to issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1126974754) at 2022-05-17 05:54 PM PDT -oliviaywangn,2022-05-29T17:11:51Z,- oliviaywangn commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1140489205) at 2022-05-29 10:11 AM PDT -oliviaywangn,2022-06-01T04:16:21Z,- oliviaywangn assigned to issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1046095089) at 2022-05-31 09:16 PM PDT -oliviaywangn,2022-06-01T04:17:48Z,- oliviaywangn commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1143099637) at 2022-05-31 09:17 PM PDT -oliviaywangn,2022-06-11T06:10:35Z,- oliviaywangn commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1152864879) at 2022-06-10 11:10 PM PDT -oliviaywangn,2022-06-11T06:12:46Z,- oliviaywangn commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1152865135) at 2022-06-10 11:12 PM PDT -oliviaywangn,2022-06-17T03:03:39Z,- oliviaywangn opened pull request: [3258](https://github.com/hackforla/website/pull/3258) at 2022-06-16 08:03 PM PDT -oliviaywangn,2022-06-17T03:07:29Z,- oliviaywangn commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1158441490) at 2022-06-16 08:07 PM PDT -oliviaywangn,2022-06-20T06:08:21Z,- oliviaywangn assigned to issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1053530633) at 2022-06-19 11:08 PM PDT -oliviaywangn,2022-06-20T06:13:35Z,- oliviaywangn unassigned from issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1053530633) at 2022-06-19 11:13 PM PDT -oliviaywangn,2022-06-20T06:16:47Z,- oliviaywangn assigned to issue: [2897](https://github.com/hackforla/website/issues/2897#issuecomment-1053494402) at 2022-06-19 11:16 PM PDT -oliviaywangn,2022-06-20T06:28:05Z,- oliviaywangn opened pull request: [3262](https://github.com/hackforla/website/pull/3262) at 2022-06-19 11:28 PM PDT -oliviaywangn,2022-06-21T01:12:40Z,- oliviaywangn pull request merged: [3258](https://github.com/hackforla/website/pull/3258#event-6842955215) at 2022-06-20 06:12 PM PDT -oliviaywangn,2022-06-24T03:49:44Z,- oliviaywangn pull request merged: [3262](https://github.com/hackforla/website/pull/3262#event-6871260609) at 2022-06-23 08:49 PM PDT -oliviaywangn,2022-06-25T03:15:32Z,- oliviaywangn commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1166180017) at 2022-06-24 08:15 PM PDT -oliviaywangn,2022-06-30T04:57:42Z,- oliviaywangn closed issue as completed: [3126](https://github.com/hackforla/website/issues/3126#event-6907471555) at 2022-06-29 09:57 PM PDT -oliviaywangn,2022-06-30T04:58:50Z,- oliviaywangn assigned to issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1164877942) at 2022-06-29 09:58 PM PDT -oliviaywangn,2022-06-30T05:00:19Z,- oliviaywangn commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1170764870) at 2022-06-29 10:00 PM PDT -oliviaywangn,2022-07-03T04:20:51Z,- oliviaywangn unassigned from issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1170764870) at 2022-07-02 09:20 PM PDT -oliviaywangn,2022-07-03T04:23:05Z,- oliviaywangn assigned to issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1053530633) at 2022-07-02 09:23 PM PDT -oliviaywangn,2022-07-03T04:23:20Z,- oliviaywangn unassigned from issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1173009227) at 2022-07-02 09:23 PM PDT -oliviazhai,4177,SKILLS ISSUE -oliviazhai,2023-03-14T14:57:41Z,- oliviazhai opened issue: [4177](https://github.com/hackforla/website/issues/4177) at 2023-03-14 07:57 AM PDT -oliviazhai,2023-03-14T14:57:57Z,- oliviazhai assigned to issue: [4177](https://github.com/hackforla/website/issues/4177) at 2023-03-14 07:57 AM PDT -oliviazhai,2023-03-16T16:42:57Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1472327968) at 2023-03-16 09:42 AM PDT -oliviazhai,2023-03-20T02:51:39Z,- oliviazhai submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347716577) at 2023-03-19 07:51 PM PDT -oliviazhai,2023-03-20T02:59:34Z,- oliviazhai assigned to issue: [4211](https://github.com/hackforla/website/issues/4211) at 2023-03-19 07:59 PM PDT -oliviazhai,2023-03-20T03:01:36Z,- oliviazhai commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1475539829) at 2023-03-19 08:01 PM PDT -oliviazhai,2023-03-22T20:29:45Z,- oliviazhai commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1480220339) at 2023-03-22 01:29 PM PDT -oliviazhai,2023-03-24T02:03:01Z,- oliviazhai opened pull request: [4272](https://github.com/hackforla/website/pull/4272) at 2023-03-23 07:03 PM PDT -oliviazhai,2023-03-24T16:55:00Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1483118306) at 2023-03-24 09:55 AM PDT -oliviazhai,2023-03-25T13:50:47Z,- oliviazhai opened pull request: [4288](https://github.com/hackforla/website/pull/4288) at 2023-03-25 06:50 AM PDT -oliviazhai,2023-03-25T13:52:29Z,- oliviazhai commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483830727) at 2023-03-25 06:52 AM PDT -oliviazhai,2023-03-25T19:06:33Z,- oliviazhai pull request closed w/o merging: [4288](https://github.com/hackforla/website/pull/4288#event-8845865519) at 2023-03-25 12:06 PM PDT -oliviazhai,2023-03-25T21:04:12Z,- oliviazhai opened pull request: [4289](https://github.com/hackforla/website/pull/4289) at 2023-03-25 02:04 PM PDT -oliviazhai,2023-03-25T21:07:26Z,- oliviazhai commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483922352) at 2023-03-25 02:07 PM PDT -oliviazhai,2023-03-25T21:34:43Z,- oliviazhai pull request closed w/o merging: [4272](https://github.com/hackforla/website/pull/4272#event-8846057378) at 2023-03-25 02:34 PM PDT -oliviazhai,2023-03-25T22:04:24Z,- oliviazhai pull request closed w/o merging: [4289](https://github.com/hackforla/website/pull/4289#event-8846098388) at 2023-03-25 03:04 PM PDT -oliviazhai,2023-03-25T22:04:51Z,- oliviazhai unassigned from issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1480413398) at 2023-03-25 03:04 PM PDT -oliviazhai,2023-03-28T15:34:52Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1487135338) at 2023-03-28 08:34 AM PDT -oliviazhai,2023-03-29T02:30:44Z,- oliviazhai assigned to issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1332419118) at 2023-03-28 07:30 PM PDT -oliviazhai,2023-03-29T02:54:12Z,- oliviazhai commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1487874747) at 2023-03-28 07:54 PM PDT -oliviazhai,2023-04-12T00:56:25Z,- oliviazhai unassigned from issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1487874747) at 2023-04-11 05:56 PM PDT -oliviazhai,2023-04-12T01:00:10Z,- oliviazhai assigned to issue: [4449](https://github.com/hackforla/website/issues/4449) at 2023-04-11 06:00 PM PDT -oliviazhai,2023-04-12T02:03:39Z,- oliviazhai commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1504427970) at 2023-04-11 07:03 PM PDT -oliviazhai,2023-04-24T23:44:32Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1520956914) at 2023-04-24 04:44 PM PDT -oliviazhai,2023-04-24T23:45:27Z,- oliviazhai closed issue as completed: [4177](https://github.com/hackforla/website/issues/4177#event-9086692580) at 2023-04-24 04:45 PM PDT -oliviazhai,2023-04-28T01:38:54Z,- oliviazhai opened pull request: [4580](https://github.com/hackforla/website/pull/4580) at 2023-04-27 06:38 PM PDT -oliviazhai,2023-04-28T02:19:37Z,- oliviazhai pull request closed w/o merging: [4580](https://github.com/hackforla/website/pull/4580#event-9120338318) at 2023-04-27 07:19 PM PDT -oliviazhai,2023-04-28T02:26:49Z,- oliviazhai opened pull request: [4581](https://github.com/hackforla/website/pull/4581) at 2023-04-27 07:26 PM PDT -oliviazhai,2023-04-28T02:27:23Z,- oliviazhai commented on pull request: [4580](https://github.com/hackforla/website/pull/4580#issuecomment-1526890179) at 2023-04-27 07:27 PM PDT -oliviazhai,2023-04-28T02:43:57Z,- oliviazhai pull request closed w/o merging: [4581](https://github.com/hackforla/website/pull/4581#event-9120450185) at 2023-04-27 07:43 PM PDT -oliviazhai,2023-04-28T02:49:01Z,- oliviazhai opened pull request: [4582](https://github.com/hackforla/website/pull/4582) at 2023-04-27 07:49 PM PDT -oliviazhai,2023-04-28T02:52:23Z,- oliviazhai pull request closed w/o merging: [4582](https://github.com/hackforla/website/pull/4582#event-9120487013) at 2023-04-27 07:52 PM PDT -oliviazhai,2023-05-09T15:54:59Z,- oliviazhai commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1540450117) at 2023-05-09 08:54 AM PDT -oliviazhai,2023-05-26T00:27:40Z,- oliviazhai opened pull request: [4732](https://github.com/hackforla/website/pull/4732) at 2023-05-25 05:27 PM PDT -oliviazhai,2023-05-30T13:12:30Z,- oliviazhai commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1568413430) at 2023-05-30 06:12 AM PDT -oliviazhai,2023-05-30T13:14:32Z,- oliviazhai commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1568416528) at 2023-05-30 06:14 AM PDT -oliviazhai,2023-06-05T00:41:55Z,- oliviazhai commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1575879619) at 2023-06-04 05:41 PM PDT -oliviazhai,2023-06-08T08:58:49Z,- oliviazhai pull request merged: [4732](https://github.com/hackforla/website/pull/4732#event-9469614683) at 2023-06-08 01:58 AM PDT -oliviazhai,2023-06-08T15:09:52Z,- oliviazhai commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1582774419) at 2023-06-08 08:09 AM PDT -oliviazhai,2023-06-30T21:39:17Z,- oliviazhai opened pull request: [4902](https://github.com/hackforla/website/pull/4902) at 2023-06-30 02:39 PM PDT -oliviazhai,2023-06-30T21:44:35Z,- oliviazhai commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1615221744) at 2023-06-30 02:44 PM PDT -oliviazhai,2023-07-03T19:28:50Z,- oliviazhai commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1619046573) at 2023-07-03 12:28 PM PDT -oliviazhai,2023-07-15T15:33:12Z,- oliviazhai pull request closed w/o merging: [4902](https://github.com/hackforla/website/pull/4902#event-9828961424) at 2023-07-15 08:33 AM PDT -olivioso,3251,SKILLS ISSUE -olivioso,2022-06-15T21:10:47Z,- olivioso opened issue: [3251](https://github.com/hackforla/website/issues/3251) at 2022-06-15 02:10 PM PDT -olivioso,2022-06-15T21:25:21Z,- olivioso assigned to issue: [3251](https://github.com/hackforla/website/issues/3251#issuecomment-1156947332) at 2022-06-15 02:25 PM PDT -olivioso,2022-06-26T18:30:47Z,- olivioso closed issue as completed: [3251](https://github.com/hackforla/website/issues/3251#event-6880738150) at 2022-06-26 11:30 AM PDT -Oluwafemi-Jegede,2021-03-07T18:07:28Z,- Oluwafemi-Jegede commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-792325779) at 2021-03-07 10:07 AM PST -Oluwafemi-Jegede,2021-03-07T18:16:00Z,- Oluwafemi-Jegede commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-792327162) at 2021-03-07 10:16 AM PST -Oluwafemi-Jegede,2021-03-07T19:23:46Z,- Oluwafemi-Jegede assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -Oluwafemi-Jegede,2021-03-07T19:24:34Z,- Oluwafemi-Jegede assigned to issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -Oluwafemi-Jegede,2021-03-14T16:56:51Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-798940812) at 2021-03-14 09:56 AM PDT -Oluwafemi-Jegede,2021-03-17T18:23:05Z,- Oluwafemi-Jegede opened issue: [1219](https://github.com/hackforla/website/issues/1219) at 2021-03-17 11:23 AM PDT -Oluwafemi-Jegede,2021-03-17T18:33:26Z,- Oluwafemi-Jegede commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-801317267) at 2021-03-17 11:33 AM PDT -Oluwafemi-Jegede,2021-03-18T18:52:00Z,- Oluwafemi-Jegede opened issue: [1259](https://github.com/hackforla/website/issues/1259) at 2021-03-18 11:52 AM PDT -Oluwafemi-Jegede,2021-03-18T18:52:15Z,- Oluwafemi-Jegede assigned to issue: [1259](https://github.com/hackforla/website/issues/1259) at 2021-03-18 11:52 AM PDT -Oluwafemi-Jegede,2021-03-18T18:54:06Z,- Oluwafemi-Jegede commented on issue: [1259](https://github.com/hackforla/website/issues/1259#issuecomment-802206128) at 2021-03-18 11:54 AM PDT -Oluwafemi-Jegede,2021-03-31T18:30:26Z,- Oluwafemi-Jegede assigned to issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811310035) at 2021-03-31 11:30 AM PDT -Oluwafemi-Jegede,2021-04-04T16:54:48Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-813064478) at 2021-04-04 09:54 AM PDT -Oluwafemi-Jegede,2021-04-06T14:14:30Z,- Oluwafemi-Jegede commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-814155581) at 2021-04-06 07:14 AM PDT -Oluwafemi-Jegede,2021-04-06T14:14:45Z,- Oluwafemi-Jegede closed issue as completed: [1286](https://github.com/hackforla/website/issues/1286#event-4557078488) at 2021-04-06 07:14 AM PDT -Oluwafemi-Jegede,2021-04-07T09:05:06Z,- Oluwafemi-Jegede reopened issue: [1286](https://github.com/hackforla/website/issues/1286#event-4557078488) at 2021-04-07 02:05 AM PDT -Oluwafemi-Jegede,2021-04-07T17:05:27Z,- Oluwafemi-Jegede commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-815077040) at 2021-04-07 10:05 AM PDT -Oluwafemi-Jegede,2021-04-07T17:06:30Z,- Oluwafemi-Jegede commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-815077704) at 2021-04-07 10:06 AM PDT -Oluwafemi-Jegede,2021-04-11T16:21:12Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-817333207) at 2021-04-11 09:21 AM PDT -Oluwafemi-Jegede,2021-04-11T16:28:17Z,- Oluwafemi-Jegede commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-817334172) at 2021-04-11 09:28 AM PDT -Oluwafemi-Jegede,2021-04-14T17:21:38Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-819686541) at 2021-04-14 10:21 AM PDT -Oluwafemi-Jegede,2021-04-18T15:59:18Z,- Oluwafemi-Jegede commented on issue: [1259](https://github.com/hackforla/website/issues/1259#issuecomment-822014755) at 2021-04-18 08:59 AM PDT -Oluwafemi-Jegede,2021-04-18T16:55:36Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-822023219) at 2021-04-18 09:55 AM PDT -Oluwafemi-Jegede,2021-04-27T01:55:11Z,- Oluwafemi-Jegede assigned to issue: [1469](https://github.com/hackforla/website/issues/1469) at 2021-04-26 06:55 PM PDT -Oluwafemi-Jegede,2021-06-06T16:15:11Z,- Oluwafemi-Jegede unassigned from issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-855422617) at 2021-06-06 09:15 AM PDT -Oluwafemi-Jegede,2021-06-20T20:56:26Z,- Oluwafemi-Jegede assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -Oluwafemi-Jegede,2021-06-20T22:15:50Z,- Oluwafemi-Jegede assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -Oluwafemi-Jegede,2021-08-12T20:05:00Z,- Oluwafemi-Jegede unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -ombhagwani,2023-08-23T06:55:27Z,- ombhagwani commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689384864) at 2023-08-22 11:55 PM PDT -ombhagwani,2023-08-23T13:48:25Z,- ombhagwani commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1690000020) at 2023-08-23 06:48 AM PDT -one2code,4335,SKILLS ISSUE -one2code,2023-03-29T04:19:33Z,- one2code opened issue: [4335](https://github.com/hackforla/website/issues/4335) at 2023-03-28 09:19 PM PDT -one2code,2023-04-06T20:57:05Z,- one2code assigned to issue: [4335](https://github.com/hackforla/website/issues/4335) at 2023-04-06 01:57 PM PDT -one2code,2023-04-14T04:08:27Z,- one2code assigned to issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1493389723) at 2023-04-13 09:08 PM PDT -one2code,2023-04-14T06:59:20Z,- one2code unassigned from issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1507898629) at 2023-04-13 11:59 PM PDT -one2code,2023-04-14T07:08:10Z,- one2code assigned to issue: [4380](https://github.com/hackforla/website/issues/4380) at 2023-04-14 12:08 AM PDT -one2code,2023-04-14T18:57:43Z,- one2code assigned to issue: [3524](https://github.com/hackforla/website/issues/3524#issuecomment-1240946700) at 2023-04-14 11:57 AM PDT -one2code,2023-04-14T18:57:54Z,- one2code unassigned from issue: [3524](https://github.com/hackforla/website/issues/3524#issuecomment-1240946700) at 2023-04-14 11:57 AM PDT -one2code,2023-04-14T18:58:33Z,- one2code assigned to issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1497129548) at 2023-04-14 11:58 AM PDT -one2code,2023-04-15T17:56:11Z,- one2code commented on issue: [4380](https://github.com/hackforla/website/issues/4380#issuecomment-1509915110) at 2023-04-15 10:56 AM PDT -one2code,2023-04-15T19:51:51Z,- one2code opened pull request: [4520](https://github.com/hackforla/website/pull/4520) at 2023-04-15 12:51 PM PDT -one2code,2023-04-15T19:59:06Z,- one2code unassigned from issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1509090621) at 2023-04-15 12:59 PM PDT -one2code,2023-04-16T18:03:28Z,- one2code commented on pull request: [4520](https://github.com/hackforla/website/pull/4520#issuecomment-1510445913) at 2023-04-16 11:03 AM PDT -one2code,2023-04-16T21:34:37Z,- one2code pull request merged: [4520](https://github.com/hackforla/website/pull/4520#event-9018434056) at 2023-04-16 02:34 PM PDT -one2code,2023-04-17T02:05:28Z,- one2code assigned to issue: [4400](https://github.com/hackforla/website/issues/4400) at 2023-04-16 07:05 PM PDT -one2code,2023-04-17T02:07:58Z,- one2code commented on issue: [4400](https://github.com/hackforla/website/issues/4400#issuecomment-1510589969) at 2023-04-16 07:07 PM PDT -one2code,2023-04-17T04:30:23Z,- one2code opened pull request: [4528](https://github.com/hackforla/website/pull/4528) at 2023-04-16 09:30 PM PDT -one2code,2023-04-18T04:08:24Z,- one2code pull request merged: [4528](https://github.com/hackforla/website/pull/4528#event-9031100177) at 2023-04-17 09:08 PM PDT -one2code,2023-04-20T02:09:37Z,- one2code commented on issue: [4335](https://github.com/hackforla/website/issues/4335#issuecomment-1515612317) at 2023-04-19 07:09 PM PDT -one2code,2023-04-20T13:25:29Z,- one2code assigned to issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1499866166) at 2023-04-20 06:25 AM PDT -one2code,2023-04-20T13:31:46Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1516337227) at 2023-04-20 06:31 AM PDT -one2code,2023-04-28T02:47:09Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1526904211) at 2023-04-27 07:47 PM PDT -one2code,2023-04-28T02:49:14Z,- one2code closed issue as completed: [4335](https://github.com/hackforla/website/issues/4335#event-9120475701) at 2023-04-27 07:49 PM PDT -one2code,2023-05-05T20:52:53Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1536768291) at 2023-05-05 01:52 PM PDT -one2code,2023-05-10T15:32:22Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1542414695) at 2023-05-10 08:32 AM PDT -one2code,2023-05-13T01:55:39Z,- one2code opened pull request: [4661](https://github.com/hackforla/website/pull/4661) at 2023-05-12 06:55 PM PDT -one2code,2023-05-17T02:30:32Z,- one2code commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1550598025) at 2023-05-16 07:30 PM PDT -one2code,2023-05-18T00:57:39Z,- one2code opened pull request: [4688](https://github.com/hackforla/website/pull/4688) at 2023-05-17 05:57 PM PDT -one2code,2023-05-18T00:58:05Z,- one2code pull request closed w/o merging: [4661](https://github.com/hackforla/website/pull/4661#event-9274744149) at 2023-05-17 05:58 PM PDT -one2code,2023-05-18T18:58:22Z,- one2code reopened pull request: [4661](https://github.com/hackforla/website/pull/4661#event-9274744149) at 2023-05-18 11:58 AM PDT -one2code,2023-05-18T18:59:43Z,- one2code pull request closed w/o merging: [4661](https://github.com/hackforla/website/pull/4661#event-9282894173) at 2023-05-18 11:59 AM PDT -one2code,2023-05-19T04:56:46Z,- one2code submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1433774626) at 2023-05-18 09:56 PM PDT -one2code,2023-05-20T17:51:56Z,- one2code commented on pull request: [4698](https://github.com/hackforla/website/pull/4698#issuecomment-1555961148) at 2023-05-20 10:51 AM PDT -one2code,2023-05-21T07:02:36Z,- one2code submitted pull request review: [4698](https://github.com/hackforla/website/pull/4698#pullrequestreview-1435482769) at 2023-05-21 12:02 AM PDT -one2code,2023-05-23T05:49:40Z,- one2code submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1438593723) at 2023-05-22 10:49 PM PDT -one2code,2023-05-23T13:51:04Z,- one2code commented on pull request: [4688](https://github.com/hackforla/website/pull/4688#issuecomment-1559420378) at 2023-05-23 06:51 AM PDT -one2code,2023-05-23T20:10:56Z,- one2code commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1560059549) at 2023-05-23 01:10 PM PDT -one2code,2023-05-24T03:36:46Z,- one2code submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1440884350) at 2023-05-23 08:36 PM PDT -one2code,2023-05-24T20:42:46Z,- one2code submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1442719782) at 2023-05-24 01:42 PM PDT -one2code,2023-05-25T02:02:03Z,- one2code submitted pull request review: [4725](https://github.com/hackforla/website/pull/4725#pullrequestreview-1442970195) at 2023-05-24 07:02 PM PDT -one2code,2023-05-25T05:41:22Z,- one2code commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562307936) at 2023-05-24 10:41 PM PDT -one2code,2023-05-25T18:57:49Z,- one2code pull request merged: [4688](https://github.com/hackforla/website/pull/4688#event-9343513105) at 2023-05-25 11:57 AM PDT -one2code,2023-05-26T02:46:23Z,- one2code opened pull request: [4733](https://github.com/hackforla/website/pull/4733) at 2023-05-25 07:46 PM PDT -one2code,2023-05-26T02:57:39Z,- one2code pull request merged: [4733](https://github.com/hackforla/website/pull/4733#event-9346034481) at 2023-05-25 07:57 PM PDT -one2code,2023-05-27T02:57:17Z,- one2code commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565176270) at 2023-05-26 07:57 PM PDT -one2code,2023-05-27T03:27:28Z,- one2code submitted pull request review: [4747](https://github.com/hackforla/website/pull/4747#pullrequestreview-1447134137) at 2023-05-26 08:27 PM PDT -one2code,2023-05-28T01:03:37Z,- one2code submitted pull request review: [4747](https://github.com/hackforla/website/pull/4747#pullrequestreview-1447728590) at 2023-05-27 06:03 PM PDT -one2code,2023-05-28T02:16:51Z,- one2code commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1565804611) at 2023-05-27 07:16 PM PDT -one2code,2023-05-28T02:46:10Z,- one2code submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1447805971) at 2023-05-27 07:46 PM PDT -one2code,2023-05-28T03:26:40Z,- one2code assigned to issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565195706) at 2023-05-27 08:26 PM PDT -one2code,2023-05-28T03:33:48Z,- one2code commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565841497) at 2023-05-27 08:33 PM PDT -one2code,2023-05-28T03:52:20Z,- one2code submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1447849700) at 2023-05-27 08:52 PM PDT -one2code,2023-05-30T07:29:14Z,- one2code commented on pull request: [4754](https://github.com/hackforla/website/pull/4754#issuecomment-1567910077) at 2023-05-30 12:29 AM PDT -one2code,2023-05-30T09:50:29Z,- one2code submitted pull request review: [4754](https://github.com/hackforla/website/pull/4754#pullrequestreview-1450553645) at 2023-05-30 02:50 AM PDT -one2code,2023-06-02T02:12:23Z,- one2code commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1573037525) at 2023-06-01 07:12 PM PDT -one2code,2023-06-02T21:15:00Z,- one2code commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1574323760) at 2023-06-02 02:15 PM PDT -one2code,2023-06-06T02:50:27Z,- one2code submitted pull request review: [4767](https://github.com/hackforla/website/pull/4767#pullrequestreview-1464139771) at 2023-06-05 07:50 PM PDT -one2code,2023-06-10T20:53:39Z,- one2code opened pull request: [4796](https://github.com/hackforla/website/pull/4796) at 2023-06-10 01:53 PM PDT -one2code,2023-06-12T21:16:24Z,- one2code commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1588116510) at 2023-06-12 02:16 PM PDT -one2code,2023-06-12T22:52:13Z,- one2code submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1475931981) at 2023-06-12 03:52 PM PDT -one2code,2023-06-13T04:03:45Z,- one2code submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1476202063) at 2023-06-12 09:03 PM PDT -one2code,2023-06-14T02:38:22Z,- one2code commented on pull request: [4833](https://github.com/hackforla/website/pull/4833#issuecomment-1590356151) at 2023-06-13 07:38 PM PDT -one2code,2023-06-14T02:38:49Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1590356456) at 2023-06-13 07:38 PM PDT -one2code,2023-06-18T03:18:50Z,- one2code pull request merged: [4796](https://github.com/hackforla/website/pull/4796#event-9560042415) at 2023-06-17 08:18 PM PDT -one2code,2023-06-18T04:36:07Z,- one2code submitted pull request review: [4833](https://github.com/hackforla/website/pull/4833#pullrequestreview-1484964312) at 2023-06-17 09:36 PM PDT -one2code,2023-06-19T05:23:03Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1596525663) at 2023-06-18 10:23 PM PDT -one2code,2023-06-20T03:18:56Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1598052022) at 2023-06-19 08:18 PM PDT -one2code,2023-06-21T00:49:30Z,- one2code submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1489332130) at 2023-06-20 05:49 PM PDT -one2code,2023-06-24T17:57:16Z,- one2code commented on pull request: [4875](https://github.com/hackforla/website/pull/4875#issuecomment-1605670075) at 2023-06-24 10:57 AM PDT -one2code,2023-06-24T18:37:59Z,- one2code submitted pull request review: [4875](https://github.com/hackforla/website/pull/4875#pullrequestreview-1496772952) at 2023-06-24 11:37 AM PDT -one2code,2023-06-24T23:06:48Z,- one2code commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1605768079) at 2023-06-24 04:06 PM PDT -one2code,2023-06-25T03:12:46Z,- one2code commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1605839876) at 2023-06-24 08:12 PM PDT -one2code,2023-06-25T14:02:01Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1497088682) at 2023-06-25 07:02 AM PDT -one2code,2023-06-25T14:28:44Z,- one2code submitted pull request review: [4878](https://github.com/hackforla/website/pull/4878#pullrequestreview-1497098445) at 2023-06-25 07:28 AM PDT -one2code,2023-06-26T14:54:24Z,- one2code commented on pull request: [4882](https://github.com/hackforla/website/pull/4882#issuecomment-1607657503) at 2023-06-26 07:54 AM PDT -one2code,2023-06-26T20:38:10Z,- one2code commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1608209327) at 2023-06-26 01:38 PM PDT -one2code,2023-06-27T04:22:25Z,- one2code submitted pull request review: [4882](https://github.com/hackforla/website/pull/4882#pullrequestreview-1499914638) at 2023-06-26 09:22 PM PDT -one2code,2023-06-27T04:29:49Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1499921835) at 2023-06-26 09:29 PM PDT -one2code,2023-06-27T09:14:49Z,- one2code assigned to issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1608566987) at 2023-06-27 02:14 AM PDT -one2code,2023-06-27T09:18:21Z,- one2code commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1609113855) at 2023-06-27 02:18 AM PDT -one2code,2023-06-28T04:17:14Z,- one2code commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1610674971) at 2023-06-27 09:17 PM PDT -one2code,2023-06-28T07:21:08Z,- one2code opened pull request: [4896](https://github.com/hackforla/website/pull/4896) at 2023-06-28 12:21 AM PDT -one2code,2023-06-29T14:07:08Z,- one2code submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1505380205) at 2023-06-29 07:07 AM PDT -one2code,2023-06-29T14:19:24Z,- one2code commented on pull request: [4899](https://github.com/hackforla/website/pull/4899#issuecomment-1613266890) at 2023-06-29 07:19 AM PDT -one2code,2023-06-29T14:30:14Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1613286514) at 2023-06-29 07:30 AM PDT -one2code,2023-07-01T01:59:09Z,- one2code commented on pull request: [4902](https://github.com/hackforla/website/pull/4902#issuecomment-1615352610) at 2023-06-30 06:59 PM PDT -one2code,2023-07-02T17:50:35Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1509648034) at 2023-07-02 10:50 AM PDT -one2code,2023-07-04T21:59:02Z,- one2code commented on pull request: [4905](https://github.com/hackforla/website/pull/4905#issuecomment-1620784724) at 2023-07-04 02:59 PM PDT -one2code,2023-07-05T03:16:08Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1620955932) at 2023-07-04 08:16 PM PDT -one2code,2023-07-06T04:17:20Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1622949664) at 2023-07-05 09:17 PM PDT -one2code,2023-07-07T23:22:22Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1626355160) at 2023-07-07 04:22 PM PDT -one2code,2023-07-09T02:22:45Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1627576891) at 2023-07-08 07:22 PM PDT -one2code,2023-07-09T19:00:04Z,- one2code submitted pull request review: [4905](https://github.com/hackforla/website/pull/4905#pullrequestreview-1520946179) at 2023-07-09 12:00 PM PDT -one2code,2023-07-11T00:00:37Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1629894651) at 2023-07-10 05:00 PM PDT -one2code,2023-07-12T02:12:00Z,- one2code commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1631745229) at 2023-07-11 07:12 PM PDT -one2code,2023-07-12T08:03:46Z,- one2code pull request merged: [4896](https://github.com/hackforla/website/pull/4896#event-9795862162) at 2023-07-12 01:03 AM PDT -one2code,2023-07-14T03:24:06Z,- one2code commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1635212536) at 2023-07-13 08:24 PM PDT -one2code,2023-07-14T03:59:05Z,- one2code submitted pull request review: [4927](https://github.com/hackforla/website/pull/4927#pullrequestreview-1529557337) at 2023-07-13 08:59 PM PDT -one2code,2023-07-15T06:39:12Z,- one2code submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1531302726) at 2023-07-14 11:39 PM PDT -one2code,2023-07-17T04:05:39Z,- one2code commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1637346041) at 2023-07-16 09:05 PM PDT -one2code,2023-07-17T04:08:03Z,- one2code submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1531905918) at 2023-07-16 09:08 PM PDT -one2code,2023-07-18T19:38:41Z,- one2code commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1640893749) at 2023-07-18 12:38 PM PDT -one2code,2023-07-19T03:55:21Z,- one2code submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1536212764) at 2023-07-18 08:55 PM PDT -one2code,2023-07-20T03:41:20Z,- one2code commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1643056606) at 2023-07-19 08:41 PM PDT -one2code,2023-07-20T03:50:19Z,- one2code submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1538379206) at 2023-07-19 08:50 PM PDT -one2code,2023-07-20T21:35:02Z,- one2code submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1540125617) at 2023-07-20 02:35 PM PDT -one2code,2023-07-28T03:52:00Z,- one2code submitted pull request review: [5105](https://github.com/hackforla/website/pull/5105#pullrequestreview-1551301245) at 2023-07-27 08:52 PM PDT -one2code,2023-08-01T13:35:01Z,- one2code submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1557024399) at 2023-08-01 06:35 AM PDT -one2code,2023-08-06T05:42:09Z,- one2code submitted pull request review: [5144](https://github.com/hackforla/website/pull/5144#pullrequestreview-1564070057) at 2023-08-05 10:42 PM PDT -one2code,2023-08-10T03:42:27Z,- one2code submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1570962630) at 2023-08-09 08:42 PM PDT -one2code,2023-08-12T03:26:14Z,- one2code commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1675654606) at 2023-08-11 08:26 PM PDT -one2code,2023-08-12T03:27:03Z,- one2code commented on pull request: [5183](https://github.com/hackforla/website/pull/5183#issuecomment-1675654725) at 2023-08-11 08:27 PM PDT -one2code,2023-08-14T03:25:49Z,- one2code submitted pull request review: [5183](https://github.com/hackforla/website/pull/5183#pullrequestreview-1576007852) at 2023-08-13 08:25 PM PDT -one2code,2023-08-14T04:17:28Z,- one2code submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1576046778) at 2023-08-13 09:17 PM PDT -one2code,2023-08-16T21:58:29Z,- one2code submitted pull request review: [5239](https://github.com/hackforla/website/pull/5239#pullrequestreview-1581487358) at 2023-08-16 02:58 PM PDT -one2code,2023-08-17T01:46:39Z,- one2code commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1681487627) at 2023-08-16 06:46 PM PDT -one2code,2023-08-31T03:47:07Z,- one2code commented on pull request: [5392](https://github.com/hackforla/website/pull/5392#issuecomment-1700326637) at 2023-08-30 08:47 PM PDT -one2code,2023-08-31T03:47:37Z,- one2code commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1700326905) at 2023-08-30 08:47 PM PDT -one2code,2023-08-31T03:54:45Z,- one2code submitted pull request review: [5392](https://github.com/hackforla/website/pull/5392#pullrequestreview-1603891782) at 2023-08-30 08:54 PM PDT -one2code,2023-08-31T04:07:38Z,- one2code submitted pull request review: [5382](https://github.com/hackforla/website/pull/5382#pullrequestreview-1603913574) at 2023-08-30 09:07 PM PDT -one2code,2023-08-31T04:13:52Z,- one2code assigned to issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597992124) at 2023-08-30 09:13 PM PDT -one2code,2023-08-31T04:14:44Z,- one2code commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1700342026) at 2023-08-30 09:14 PM PDT -one2code,2023-09-14T02:41:11Z,- one2code commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1718664451) at 2023-09-13 07:41 PM PDT -one2code,2023-09-14T02:58:31Z,- one2code submitted pull request review: [5522](https://github.com/hackforla/website/pull/5522#pullrequestreview-1625750126) at 2023-09-13 07:58 PM PDT -one2code,2023-09-14T03:21:00Z,- one2code submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1625763782) at 2023-09-13 08:21 PM PDT -one2code,2023-09-21T03:58:48Z,- one2code submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1636840258) at 2023-09-20 08:58 PM PDT -one2code,2023-09-21T03:59:12Z,- one2code submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1636840495) at 2023-09-20 08:59 PM PDT -one2code,2024-02-03T19:06:21Z,- one2code commented on pull request: [6216](https://github.com/hackforla/website/pull/6216#issuecomment-1925431149) at 2024-02-03 11:06 AM PST -one2code,2024-02-04T16:27:58Z,- one2code submitted pull request review: [6216](https://github.com/hackforla/website/pull/6216#pullrequestreview-1861481163) at 2024-02-04 08:27 AM PST -one2code,2024-02-05T03:47:18Z,- one2code assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1822065293) at 2024-02-04 07:47 PM PST -one2code,2024-02-05T03:50:30Z,- one2code commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1926183878) at 2024-02-04 07:50 PM PST -one2code,2024-02-09T22:27:45Z,- one2code commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1936686524) at 2024-02-09 02:27 PM PST -one2code,2024-03-20T21:36:05Z,- one2code unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2010678427) at 2024-03-20 02:36 PM PDT -ortegaa32,5212,SKILLS ISSUE -ortegaa32,2023-08-15T02:44:33Z,- ortegaa32 opened issue: [5212](https://github.com/hackforla/website/issues/5212) at 2023-08-14 07:44 PM PDT -ortegaa32,2023-08-16T23:27:52Z,- ortegaa32 assigned to issue: [5197](https://github.com/hackforla/website/issues/5197#issuecomment-1677898874) at 2023-08-16 04:27 PM PDT -ortegaa32,2023-08-17T00:03:53Z,- ortegaa32 commented on issue: [5197](https://github.com/hackforla/website/issues/5197#issuecomment-1681416809) at 2023-08-16 05:03 PM PDT -ortegaa32,2023-08-17T00:42:23Z,- ortegaa32 opened pull request: [5241](https://github.com/hackforla/website/pull/5241) at 2023-08-16 05:42 PM PDT -ortegaa32,2023-08-19T23:59:02Z,- ortegaa32 pull request merged: [5241](https://github.com/hackforla/website/pull/5241#event-10137198065) at 2023-08-19 04:59 PM PDT -ortegaa32,2023-08-27T23:29:37Z,- ortegaa32 assigned to issue: [5285](https://github.com/hackforla/website/issues/5285#issuecomment-1689190221) at 2023-08-27 04:29 PM PDT -ortegaa32,2023-08-28T20:03:45Z,- ortegaa32 commented on issue: [5285](https://github.com/hackforla/website/issues/5285#issuecomment-1696326775) at 2023-08-28 01:03 PM PDT -ortegaa32,2023-08-29T21:12:37Z,- ortegaa32 opened pull request: [5343](https://github.com/hackforla/website/pull/5343) at 2023-08-29 02:12 PM PDT -ortegaa32,2023-08-30T20:58:17Z,- ortegaa32 commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1699832081) at 2023-08-30 01:58 PM PDT -ortegaa32,2023-08-30T21:15:14Z,- ortegaa32 commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1699853023) at 2023-08-30 02:15 PM PDT -ortegaa32,2023-08-30T21:16:28Z,- ortegaa32 submitted pull request review: [5354](https://github.com/hackforla/website/pull/5354#pullrequestreview-1603511514) at 2023-08-30 02:16 PM PDT -ortegaa32,2023-08-30T21:45:59Z,- ortegaa32 commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1699891652) at 2023-08-30 02:45 PM PDT -ortegaa32,2023-08-31T21:00:13Z,- ortegaa32 commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1701774257) at 2023-08-31 02:00 PM PDT -ortegaa32,2023-08-31T21:00:24Z,- ortegaa32 submitted pull request review: [5382](https://github.com/hackforla/website/pull/5382#pullrequestreview-1605712741) at 2023-08-31 02:00 PM PDT -ortegaa32,2023-08-31T21:20:38Z,- ortegaa32 commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701802449) at 2023-08-31 02:20 PM PDT -ortegaa32,2023-08-31T21:30:56Z,- ortegaa32 commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701812181) at 2023-08-31 02:30 PM PDT -ortegaa32,2023-08-31T21:32:44Z,- ortegaa32 commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1701813934) at 2023-08-31 02:32 PM PDT -ortegaa32,2023-09-01T16:08:58Z,- ortegaa32 pull request merged: [5343](https://github.com/hackforla/website/pull/5343#event-10258944320) at 2023-09-01 09:08 AM PDT -ortegaa32,2023-09-01T21:32:30Z,- ortegaa32 commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1703340154) at 2023-09-01 02:32 PM PDT -ortegaa32,2023-09-01T21:32:52Z,- ortegaa32 submitted pull request review: [5399](https://github.com/hackforla/website/pull/5399#pullrequestreview-1607685834) at 2023-09-01 02:32 PM PDT -ortegaa32,2023-09-01T21:54:01Z,- ortegaa32 commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1703355683) at 2023-09-01 02:54 PM PDT -ortegaa32,2023-09-01T22:14:55Z,- ortegaa32 submitted pull request review: [5400](https://github.com/hackforla/website/pull/5400#pullrequestreview-1607715632) at 2023-09-01 03:14 PM PDT -ortegaa32,2023-09-01T22:22:25Z,- ortegaa32 submitted pull request review: [5405](https://github.com/hackforla/website/pull/5405#pullrequestreview-1607719738) at 2023-09-01 03:22 PM PDT -ortegaa32,2023-09-03T22:30:04Z,- ortegaa32 commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1704422192) at 2023-09-03 03:30 PM PDT -ortegaa32,2023-09-03T22:30:19Z,- ortegaa32 submitted pull request review: [5405](https://github.com/hackforla/website/pull/5405#pullrequestreview-1608587235) at 2023-09-03 03:30 PM PDT -ortegaa32,2023-09-03T22:56:05Z,- ortegaa32 commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1704427119) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-03T22:56:14Z,- ortegaa32 commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1704427139) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-03T22:56:45Z,- ortegaa32 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1704427224) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-03T22:56:56Z,- ortegaa32 commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1704427253) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-05T20:08:09Z,- ortegaa32 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1707242596) at 2023-09-05 01:08 PM PDT -ortegaa32,2023-09-05T20:08:20Z,- ortegaa32 submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1611841913) at 2023-09-05 01:08 PM PDT -ortegaa32,2023-09-05T20:24:57Z,- ortegaa32 assigned to issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1706517458) at 2023-09-05 01:24 PM PDT -ortegaa32,2023-09-05T20:29:54Z,- ortegaa32 commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1707269046) at 2023-09-05 01:29 PM PDT -ortegaa32,2023-09-05T20:30:03Z,- ortegaa32 submitted pull request review: [5419](https://github.com/hackforla/website/pull/5419#pullrequestreview-1611884353) at 2023-09-05 01:30 PM PDT -ortegaa32,2023-09-05T20:31:48Z,- ortegaa32 commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1707271289) at 2023-09-05 01:31 PM PDT -ortegaa32,2023-09-06T20:35:00Z,- ortegaa32 commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1709068824) at 2023-09-06 01:35 PM PDT -ortegaa32,2023-09-06T20:35:09Z,- ortegaa32 submitted pull request review: [5422](https://github.com/hackforla/website/pull/5422#pullrequestreview-1614172967) at 2023-09-06 01:35 PM PDT -ortegaa32,2023-09-06T20:46:48Z,- ortegaa32 commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1709093693) at 2023-09-06 01:46 PM PDT -ortegaa32,2023-09-06T20:46:58Z,- ortegaa32 submitted pull request review: [5423](https://github.com/hackforla/website/pull/5423#pullrequestreview-1614191145) at 2023-09-06 01:46 PM PDT -ortegaa32,2023-09-08T22:24:01Z,- ortegaa32 commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1712290150) at 2023-09-08 03:24 PM PDT -ortegaa32,2023-09-13T21:14:37Z,- ortegaa32 opened pull request: [5522](https://github.com/hackforla/website/pull/5522) at 2023-09-13 02:14 PM PDT -ortegaa32,2023-09-13T21:35:15Z,- ortegaa32 commented on pull request: [5521](https://github.com/hackforla/website/pull/5521#issuecomment-1718347615) at 2023-09-13 02:35 PM PDT -ortegaa32,2023-09-14T20:57:23Z,- ortegaa32 commented on pull request: [5521](https://github.com/hackforla/website/pull/5521#issuecomment-1720142605) at 2023-09-14 01:57 PM PDT -ortegaa32,2023-09-14T20:57:32Z,- ortegaa32 submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1627740978) at 2023-09-14 01:57 PM PDT -ortegaa32,2023-09-15T17:54:49Z,- ortegaa32 pull request merged: [5522](https://github.com/hackforla/website/pull/5522#event-10386087695) at 2023-09-15 10:54 AM PDT -ortegaa32,2023-09-18T23:27:25Z,- ortegaa32 commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1724613986) at 2023-09-18 04:27 PM PDT -ortegaa32,2023-09-18T23:30:41Z,- ortegaa32 commented on pull request: [5550](https://github.com/hackforla/website/pull/5550#issuecomment-1724616935) at 2023-09-18 04:30 PM PDT -ortegaa32,2023-09-18T23:35:20Z,- ortegaa32 commented on pull request: [5552](https://github.com/hackforla/website/pull/5552#issuecomment-1724620734) at 2023-09-18 04:35 PM PDT -ortegaa32,2023-09-19T21:33:48Z,- ortegaa32 commented on pull request: [5550](https://github.com/hackforla/website/pull/5550#issuecomment-1726532772) at 2023-09-19 02:33 PM PDT -ortegaa32,2023-09-19T21:33:58Z,- ortegaa32 submitted pull request review: [5550](https://github.com/hackforla/website/pull/5550#pullrequestreview-1634237868) at 2023-09-19 02:33 PM PDT -ortegaa32,2023-09-27T00:34:25Z,- ortegaa32 commented on pull request: [5593](https://github.com/hackforla/website/pull/5593#issuecomment-1736482288) at 2023-09-26 05:34 PM PDT -ortegaa32,2023-09-27T00:39:06Z,- ortegaa32 submitted pull request review: [5593](https://github.com/hackforla/website/pull/5593#pullrequestreview-1645386660) at 2023-09-26 05:39 PM PDT -ortegaa32,2024-01-31T07:08:44Z,- ortegaa32 assigned to issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1678351933) at 2024-01-30 11:08 PM PST -Oskar-Potratz-Zloch,2021-01-19T13:21:52Z,- Oskar-Potratz-Zloch submitted pull request review: [944](https://github.com/hackforla/website/pull/944#pullrequestreview-571235010) at 2021-01-19 05:21 AM PST -Ovando21,6121,SKILLS ISSUE -Ovando21,2024-01-17T04:46:31Z,- Ovando21 opened issue: [6121](https://github.com/hackforla/website/issues/6121) at 2024-01-16 08:46 PM PST -Ovando21,2024-01-17T04:51:46Z,- Ovando21 assigned to issue: [6121](https://github.com/hackforla/website/issues/6121#issuecomment-1894932930) at 2024-01-16 08:51 PM PST -Ovando21,2024-02-01T04:39:54Z,- Ovando21 closed issue as completed: [6121](https://github.com/hackforla/website/issues/6121#event-11664433513) at 2024-01-31 08:39 PM PST -Ovando21,2024-02-01T05:32:21Z,- Ovando21 assigned to issue: [5843](https://github.com/hackforla/website/issues/5843) at 2024-01-31 09:32 PM PST -Ovando21,2024-02-01T07:26:34Z,- Ovando21 unassigned from issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1920547949) at 2024-01-31 11:26 PM PST -owaisjunedi,7973,SKILLS ISSUE -owaisjunedi,2025-03-04T04:19:58Z,- owaisjunedi opened issue: [7973](https://github.com/hackforla/website/issues/7973) at 2025-03-03 08:19 PM PST -owaisjunedi,2025-03-04T04:20:46Z,- owaisjunedi assigned to issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2696151628) at 2025-03-03 08:20 PM PST -owaisjunedi,2025-03-16T06:30:26Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2727222871) at 2025-03-15 11:30 PM PDT -owaisjunedi,2025-03-16T06:35:13Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2727224121) at 2025-03-15 11:35 PM PDT -owaisjunedi,2025-03-16T06:44:22Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2727226488) at 2025-03-15 11:44 PM PDT -owaisjunedi,2025-04-01T01:33:40Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2767809114) at 2025-03-31 06:33 PM PDT -owaisjunedi,2025-04-02T23:14:23Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2773931389) at 2025-04-02 04:14 PM PDT -owaisjunedi,2025-04-02T23:48:28Z,- owaisjunedi assigned to issue: [7487](https://github.com/hackforla/website/issues/7487) at 2025-04-02 04:48 PM PDT -owaisjunedi,2025-04-02T23:58:08Z,- owaisjunedi commented on issue: [7487](https://github.com/hackforla/website/issues/7487#issuecomment-2774002994) at 2025-04-02 04:58 PM PDT -owaisjunedi,2025-04-03T03:30:13Z,- owaisjunedi opened pull request: [8039](https://github.com/hackforla/website/pull/8039) at 2025-04-02 08:30 PM PDT -owaisjunedi,2025-04-03T03:33:53Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2774386950) at 2025-04-02 08:33 PM PDT -owaisjunedi,2025-04-03T16:19:36Z,- owaisjunedi commented on issue: [7487](https://github.com/hackforla/website/issues/7487#issuecomment-2776321291) at 2025-04-03 09:19 AM PDT -owaisjunedi,2025-04-06T16:20:20Z,- owaisjunedi pull request merged: [8039](https://github.com/hackforla/website/pull/8039#event-17143639164) at 2025-04-06 09:20 AM PDT -owaisjunedi,2025-04-07T02:01:11Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2781841867) at 2025-04-06 07:01 PM PDT -owaisjunedi,2025-04-07T02:02:33Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2781843170) at 2025-04-06 07:02 PM PDT -owaisjunedi,2025-04-09T03:23:09Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2788183521) at 2025-04-08 08:23 PM PDT -owaisjunedi,2025-04-16T02:35:57Z,- owaisjunedi submitted pull request review: [8062](https://github.com/hackforla/website/pull/8062#pullrequestreview-2770485355) at 2025-04-15 07:35 PM PDT -owaisjunedi,2025-04-16T02:41:38Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2808075195) at 2025-04-15 07:41 PM PDT -owaisjunedi,2025-04-21T19:08:59Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2819286148) at 2025-04-21 12:08 PM PDT -owaisjunedi,2025-04-21T19:30:22Z,- owaisjunedi assigned to issue: [7755](https://github.com/hackforla/website/issues/7755) at 2025-04-21 12:30 PM PDT -owaisjunedi,2025-04-21T19:38:11Z,- owaisjunedi commented on issue: [7755](https://github.com/hackforla/website/issues/7755#issuecomment-2819344096) at 2025-04-21 12:38 PM PDT -owaisjunedi,2025-04-21T19:53:32Z,- owaisjunedi opened pull request: [8072](https://github.com/hackforla/website/pull/8072) at 2025-04-21 12:53 PM PDT -owaisjunedi,2025-04-21T19:56:11Z,- owaisjunedi commented on issue: [7755](https://github.com/hackforla/website/issues/7755#issuecomment-2819377175) at 2025-04-21 12:56 PM PDT -owaisjunedi,2025-04-28T01:03:21Z,- owaisjunedi pull request merged: [8072](https://github.com/hackforla/website/pull/8072#event-17425621263) at 2025-04-27 06:03 PM PDT -owaisjunedi,2025-04-28T01:13:13Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2833763080) at 2025-04-27 06:13 PM PDT -owaisjunedi,2025-05-21T00:17:22Z,- owaisjunedi submitted pull request review: [8148](https://github.com/hackforla/website/pull/8148#pullrequestreview-2855869323) at 2025-05-20 05:17 PM PDT -owaisjunedi,2025-05-21T00:19:32Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2896115768) at 2025-05-20 05:19 PM PDT -owaisjunedi,2025-06-02T02:37:28Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2928482260) at 2025-06-01 07:37 PM PDT -owaisjunedi,2025-06-18T09:16:30Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2983368086) at 2025-06-18 02:16 AM PDT -owaisjunedi,2025-06-27T22:15:39Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3014481713) at 2025-06-27 03:15 PM PDT -owaisjunedi,2025-07-13T23:16:19Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3067377666) at 2025-07-13 04:16 PM PDT -owaisjunedi,2025-08-01T18:53:12Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3145471430) at 2025-08-01 11:53 AM PDT -owenjoseph,2019-07-03T00:39:53Z,- owenjoseph opened issue: [132](https://github.com/hackforla/website/issues/132) at 2019-07-02 05:39 PM PDT -owenjoseph,2019-07-03T00:39:59Z,- owenjoseph assigned to issue: [132](https://github.com/hackforla/website/issues/132) at 2019-07-02 05:39 PM PDT -owenjoseph,2019-07-03T18:48:57Z,- owenjoseph commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508213798) at 2019-07-03 11:48 AM PDT -owenjoseph,2019-07-03T18:49:07Z,- owenjoseph unassigned from issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508213798) at 2019-07-03 11:49 AM PDT -owenjoseph,2019-07-07T00:52:11Z,- owenjoseph assigned to issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508963187) at 2019-07-06 05:52 PM PDT -owenjoseph,2019-07-13T08:54:47Z,- owenjoseph unassigned from issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-509857544) at 2019-07-13 01:54 AM PDT -owenjoseph,2019-08-19T18:59:27Z,- owenjoseph closed issue as completed: [132](https://github.com/hackforla/website/issues/132#event-2567344562) at 2019-08-19 11:59 AM PDT -palakkeni5,2024-08-24T20:44:13Z,- palakkeni5 commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308532192) at 2024-08-24 01:44 PM PDT -palakkeni5,2024-08-24T21:04:26Z,- palakkeni5 commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308537047) at 2024-08-24 02:04 PM PDT -palomasoltys,3542,SKILLS ISSUE -palomasoltys,2022-09-13T02:41:24Z,- palomasoltys opened issue: [3542](https://github.com/hackforla/website/issues/3542) at 2022-09-12 07:41 PM PDT -palomasoltys,2022-09-16T02:57:23Z,- palomasoltys assigned to issue: [3542](https://github.com/hackforla/website/issues/3542) at 2022-09-15 07:57 PM PDT -palomasoltys,2022-09-16T03:08:38Z,- palomasoltys assigned to issue: [2827](https://github.com/hackforla/website/issues/2827#issuecomment-1046967053) at 2022-09-15 08:08 PM PDT -palomasoltys,2022-09-16T03:16:55Z,- palomasoltys commented on issue: [2827](https://github.com/hackforla/website/issues/2827#issuecomment-1248872109) at 2022-09-15 08:16 PM PDT -palomasoltys,2022-09-16T17:35:56Z,- palomasoltys opened pull request: [3559](https://github.com/hackforla/website/pull/3559) at 2022-09-16 10:35 AM PDT -palomasoltys,2022-09-18T19:59:25Z,- palomasoltys pull request merged: [3559](https://github.com/hackforla/website/pull/3559#event-7409382665) at 2022-09-18 12:59 PM PDT -palomasoltys,2022-09-21T22:07:19Z,- palomasoltys commented on pull request: [3573](https://github.com/hackforla/website/pull/3573#issuecomment-1254277852) at 2022-09-21 03:07 PM PDT -palomasoltys,2022-09-21T22:12:53Z,- palomasoltys submitted pull request review: [3573](https://github.com/hackforla/website/pull/3573#pullrequestreview-1116149981) at 2022-09-21 03:12 PM PDT -palomasoltys,2022-09-26T19:02:56Z,- palomasoltys assigned to issue: [2925](https://github.com/hackforla/website/issues/2925#issuecomment-1058615949) at 2022-09-26 12:02 PM PDT -palomasoltys,2022-09-26T19:06:11Z,- palomasoltys commented on issue: [2925](https://github.com/hackforla/website/issues/2925#issuecomment-1258481334) at 2022-09-26 12:06 PM PDT -palomasoltys,2022-09-26T20:18:50Z,- palomasoltys opened pull request: [3585](https://github.com/hackforla/website/pull/3585) at 2022-09-26 01:18 PM PDT -palomasoltys,2022-09-28T01:05:10Z,- palomasoltys pull request merged: [3585](https://github.com/hackforla/website/pull/3585#event-7473353495) at 2022-09-27 06:05 PM PDT -PamelaLi36,2021-08-01T18:34:56Z,- PamelaLi36 assigned to issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-880226081) at 2021-08-01 11:34 AM PDT -PamelaLi36,2021-08-08T18:39:45Z,- PamelaLi36 commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894837925) at 2021-08-08 11:39 AM PDT -PamelaLi36,2021-08-10T16:14:07Z,- PamelaLi36 commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-896126198) at 2021-08-10 09:14 AM PDT -PamelaLi36,2021-08-10T16:34:34Z,- PamelaLi36 commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-896133763) at 2021-08-10 09:34 AM PDT -PamelaLi36,2021-08-16T20:04:37Z,- PamelaLi36 commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899783475) at 2021-08-16 01:04 PM PDT -PamelaLi36,2021-08-22T21:52:02Z,- PamelaLi36 opened issue: [2164](https://github.com/hackforla/website/issues/2164) at 2021-08-22 02:52 PM PDT -pandanista,2023-10-26T18:16:24Z,- pandanista commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739567) at 2023-10-26 11:16 AM PDT -Panipopomango,6524,SKILLS ISSUE -Panipopomango,6527,SKILLS ISSUE -Panipopomango,2024-03-27T03:07:57Z,- Panipopomango opened issue: [6524](https://github.com/hackforla/website/issues/6524) at 2024-03-26 08:07 PM PDT -Panipopomango,2024-03-27T03:12:39Z,- Panipopomango assigned to issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2021842268) at 2024-03-26 08:12 PM PDT -Panipopomango,2024-03-27T03:14:05Z,- Panipopomango opened issue: [6527](https://github.com/hackforla/website/issues/6527) at 2024-03-26 08:14 PM PDT -Panipopomango,2024-03-27T03:14:17Z,- Panipopomango assigned to issue: [6527](https://github.com/hackforla/website/issues/6527) at 2024-03-26 08:14 PM PDT -Panipopomango,2024-03-27T20:29:25Z,- Panipopomango commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2023922616) at 2024-03-27 01:29 PM PDT -Panipopomango,2024-05-06T20:58:21Z,- Panipopomango assigned to issue: [6800](https://github.com/hackforla/website/issues/6800) at 2024-05-06 01:58 PM PDT -Panipopomango,2024-05-06T20:58:34Z,- Panipopomango unassigned from issue: [6800](https://github.com/hackforla/website/issues/6800) at 2024-05-06 01:58 PM PDT -Panipopomango,2024-05-07T04:11:44Z,- Panipopomango assigned to issue: [6737](https://github.com/hackforla/website/issues/6737) at 2024-05-06 09:11 PM PDT -Panipopomango,2024-05-07T04:11:54Z,- Panipopomango unassigned from issue: [6737](https://github.com/hackforla/website/issues/6737) at 2024-05-06 09:11 PM PDT -Panipopomango,2024-05-08T21:09:22Z,- Panipopomango assigned to issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2097410115) at 2024-05-08 02:09 PM PDT -Panipopomango,2024-05-08T21:15:44Z,- Panipopomango commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2101495427) at 2024-05-08 02:15 PM PDT -Panipopomango,2024-06-09T16:55:45Z,- Panipopomango unassigned from issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2156697479) at 2024-06-09 09:55 AM PDT -parag477,2023-12-29T06:15:15Z,- parag477 commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1871759182) at 2023-12-28 10:15 PM PST -ParigiSaiTeja,7023,SKILLS ISSUE -ParigiSaiTeja,2024-06-19T02:53:34Z,- ParigiSaiTeja opened issue: [7023](https://github.com/hackforla/website/issues/7023) at 2024-06-18 07:53 PM PDT -ParigiSaiTeja,2024-06-19T02:53:45Z,- ParigiSaiTeja assigned to issue: [7023](https://github.com/hackforla/website/issues/7023) at 2024-06-18 07:53 PM PDT -Parisajf,2024-04-26T03:22:33Z,- Parisajf opened issue: [6765](https://github.com/hackforla/website/issues/6765) at 2024-04-25 08:22 PM PDT -Parisajf,2024-08-16T20:24:04Z,- Parisajf opened issue: [7305](https://github.com/hackforla/website/issues/7305) at 2024-08-16 01:24 PM PDT -Parisajf,2024-09-04T16:29:01Z,- Parisajf commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2329512359) at 2024-09-04 09:29 AM PDT -parkderick,2020-04-03T03:31:55Z,- parkderick opened pull request: [410](https://github.com/hackforla/website/pull/410) at 2020-04-02 08:31 PM PDT -parkderick,2020-04-03T03:32:58Z,- parkderick commented on issue: [393](https://github.com/hackforla/website/issues/393#issuecomment-608210585) at 2020-04-02 08:32 PM PDT -parkderick,2020-04-03T03:57:51Z,- parkderick assigned to issue: [393](https://github.com/hackforla/website/issues/393#issuecomment-608210585) at 2020-04-02 08:57 PM PDT -parkderick,2020-04-05T23:14:28Z,- parkderick pull request merged: [410](https://github.com/hackforla/website/pull/410#event-3203148962) at 2020-04-05 04:14 PM PDT -parkderick,2020-04-07T23:42:19Z,- parkderick opened pull request: [418](https://github.com/hackforla/website/pull/418) at 2020-04-07 04:42 PM PDT -parkderick,2020-04-07T23:42:57Z,- parkderick commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-610673163) at 2020-04-07 04:42 PM PDT -parkderick,2020-04-07T23:48:32Z,- parkderick assigned to issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-610673163) at 2020-04-07 04:48 PM PDT -parkderick,2020-04-07T23:48:55Z,- parkderick assigned to issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-605721300) at 2020-04-07 04:48 PM PDT -parkderick,2020-04-07T23:49:53Z,- parkderick assigned to issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610639330) at 2020-04-07 04:49 PM PDT -parkderick,2020-04-08T00:02:52Z,- parkderick opened pull request: [419](https://github.com/hackforla/website/pull/419) at 2020-04-07 05:02 PM PDT -parkderick,2020-04-08T00:03:56Z,- parkderick commented on issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610678971) at 2020-04-07 05:03 PM PDT -parkderick,2020-04-10T01:50:26Z,- parkderick opened pull request: [421](https://github.com/hackforla/website/pull/421) at 2020-04-09 06:50 PM PDT -parkderick,2020-04-10T01:51:00Z,- parkderick commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611836313) at 2020-04-09 06:51 PM PDT -parkderick,2020-04-10T05:19:58Z,- parkderick pull request merged: [418](https://github.com/hackforla/website/pull/418#event-3220810200) at 2020-04-09 10:19 PM PDT -parkderick,2020-04-10T05:21:59Z,- parkderick pull request merged: [419](https://github.com/hackforla/website/pull/419#event-3220812940) at 2020-04-09 10:21 PM PDT -parkderick,2020-04-10T05:35:59Z,- parkderick pull request merged: [421](https://github.com/hackforla/website/pull/421#event-3220833029) at 2020-04-09 10:35 PM PDT -parkderick,2020-04-10T05:44:06Z,- parkderick closed issue as completed: [327](https://github.com/hackforla/website/issues/327#event-3220844884) at 2020-04-09 10:44 PM PDT -parkderick,2020-04-12T17:09:42Z,- parkderick unassigned from issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-12 10:09 AM PDT -parkderick,2020-04-12T17:37:44Z,- parkderick closed issue as completed: [393](https://github.com/hackforla/website/issues/393#event-3225298996) at 2020-04-12 10:37 AM PDT -partapparam,6333,SKILLS ISSUE -partapparam,2024-02-21T03:29:26Z,- partapparam opened issue: [6333](https://github.com/hackforla/website/issues/6333) at 2024-02-20 07:29 PM PST -partapparam,2024-02-21T04:25:37Z,- partapparam assigned to issue: [6333](https://github.com/hackforla/website/issues/6333) at 2024-02-20 08:25 PM PST -partapparam,2024-02-22T17:46:32Z,- partapparam assigned to issue: [6239](https://github.com/hackforla/website/issues/6239) at 2024-02-22 09:46 AM PST -partapparam,2024-02-22T17:50:13Z,- partapparam commented on issue: [6239](https://github.com/hackforla/website/issues/6239#issuecomment-1959961126) at 2024-02-22 09:50 AM PST -partapparam,2024-02-22T18:28:20Z,- partapparam opened pull request: [6358](https://github.com/hackforla/website/pull/6358) at 2024-02-22 10:28 AM PST -partapparam,2024-02-22T18:32:12Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-1960029268) at 2024-02-22 10:32 AM PST -partapparam,2024-02-23T03:59:47Z,- partapparam closed issue as completed: [5171](https://github.com/hackforla/website/issues/5171#event-11899134463) at 2024-02-22 07:59 PM PST -partapparam,2024-02-23T06:17:52Z,- partapparam pull request merged: [6358](https://github.com/hackforla/website/pull/6358#event-11899743258) at 2024-02-22 10:17 PM PST -partapparam,2024-02-23T16:27:14Z,- partapparam assigned to issue: [6111](https://github.com/hackforla/website/issues/6111) at 2024-02-23 08:27 AM PST -partapparam,2024-02-23T16:33:24Z,- partapparam commented on issue: [6111](https://github.com/hackforla/website/issues/6111#issuecomment-1961639500) at 2024-02-23 08:33 AM PST -partapparam,2024-02-23T16:55:31Z,- partapparam opened pull request: [6365](https://github.com/hackforla/website/pull/6365) at 2024-02-23 08:55 AM PST -partapparam,2024-02-26T04:19:43Z,- partapparam pull request merged: [6365](https://github.com/hackforla/website/pull/6365#event-11915441822) at 2024-02-25 08:19 PM PST -partapparam,2024-03-05T23:12:36Z,- partapparam assigned to issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1947738161) at 2024-03-05 03:12 PM PST -partapparam,2024-03-05T23:15:16Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-1979798103) at 2024-03-05 03:15 PM PST -partapparam,2024-03-05T23:19:08Z,- partapparam commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1979801586) at 2024-03-05 03:19 PM PST -partapparam,2024-03-05T23:28:27Z,- partapparam commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1979809788) at 2024-03-05 03:28 PM PST -partapparam,2024-03-15T23:44:26Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-2000669994) at 2024-03-15 04:44 PM PDT -partapparam,2024-03-18T10:00:33Z,- partapparam commented on pull request: [6471](https://github.com/hackforla/website/pull/6471#issuecomment-2003409335) at 2024-03-18 03:00 AM PDT -partapparam,2024-03-18T10:10:52Z,- partapparam submitted pull request review: [6471](https://github.com/hackforla/website/pull/6471#pullrequestreview-1942515489) at 2024-03-18 03:10 AM PDT -partapparam,2024-03-18T10:20:37Z,- partapparam closed issue as completed: [6333](https://github.com/hackforla/website/issues/6333#event-12149450980) at 2024-03-18 03:20 AM PDT -partapparam,2024-03-18T10:20:59Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-2003484697) at 2024-03-18 03:20 AM PDT -partapparam,2024-03-19T04:01:06Z,- partapparam assigned to issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-1758827760) at 2024-03-18 09:01 PM PDT -partapparam,2024-03-20T02:34:06Z,- partapparam submitted pull request review: [6477](https://github.com/hackforla/website/pull/6477#pullrequestreview-1947859578) at 2024-03-19 07:34 PM PDT -partapparam,2024-03-20T02:35:06Z,- partapparam commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008579370) at 2024-03-19 07:35 PM PDT -partapparam,2024-03-20T02:37:14Z,- partapparam unassigned from issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-2005711751) at 2024-03-19 07:37 PM PDT -partapparam,2024-03-24T16:39:16Z,- partapparam assigned to issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1957787673) at 2024-03-24 09:39 AM PDT -partapparam,2024-03-24T16:40:59Z,- partapparam commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-2016864485) at 2024-03-24 09:40 AM PDT -partapparam,2024-03-29T03:53:02Z,- partapparam commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-2026593427) at 2024-03-28 08:53 PM PDT -partapparam,2024-03-30T00:34:48Z,- partapparam opened pull request: [6549](https://github.com/hackforla/website/pull/6549) at 2024-03-29 05:34 PM PDT -partapparam,2024-04-02T17:06:53Z,- partapparam submitted pull request review: [6549](https://github.com/hackforla/website/pull/6549#pullrequestreview-1974441754) at 2024-04-02 10:06 AM PDT -partapparam,2024-04-08T01:24:38Z,- partapparam commented on pull request: [6549](https://github.com/hackforla/website/pull/6549#issuecomment-2041703354) at 2024-04-07 06:24 PM PDT -partapparam,2024-04-12T17:05:43Z,- partapparam pull request merged: [6549](https://github.com/hackforla/website/pull/6549#event-12452091697) at 2024-04-12 10:05 AM PDT -partapparam,2024-04-17T02:25:26Z,- partapparam submitted pull request review: [6656](https://github.com/hackforla/website/pull/6656#pullrequestreview-2004875867) at 2024-04-16 07:25 PM PDT -partapparam,2024-04-19T18:04:23Z,- partapparam submitted pull request review: [6682](https://github.com/hackforla/website/pull/6682#pullrequestreview-2012052509) at 2024-04-19 11:04 AM PDT -partapparam,2024-04-28T02:16:56Z,- partapparam opened pull request: [6773](https://github.com/hackforla/website/pull/6773) at 2024-04-27 07:16 PM PDT -partapparam,2024-04-30T04:12:55Z,- partapparam submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2030165595) at 2024-04-29 09:12 PM PDT -partapparam,2024-04-30T04:22:17Z,- partapparam commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2084350279) at 2024-04-29 09:22 PM PDT -partapparam,2024-05-04T01:22:15Z,- partapparam submitted pull request review: [6814](https://github.com/hackforla/website/pull/6814#pullrequestreview-2039187153) at 2024-05-03 06:22 PM PDT -partapparam,2024-05-07T22:52:50Z,- partapparam commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2099439138) at 2024-05-07 03:52 PM PDT -partapparam,2024-05-08T19:23:48Z,- partapparam pull request merged: [6773](https://github.com/hackforla/website/pull/6773#event-12748351003) at 2024-05-08 12:23 PM PDT -partapparam,2024-05-08T19:48:28Z,- partapparam assigned to issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-1796454453) at 2024-05-08 12:48 PM PDT -partapparam,2024-05-08T19:57:22Z,- partapparam commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2101324607) at 2024-05-08 12:57 PM PDT -partapparam,2024-05-12T06:08:59Z,- partapparam submitted pull request review: [6851](https://github.com/hackforla/website/pull/6851#pullrequestreview-2051296690) at 2024-05-11 11:08 PM PDT -partapparam,2024-05-17T17:22:28Z,- partapparam commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2118057125) at 2024-05-17 10:22 AM PDT -partapparam,2024-05-21T18:24:04Z,- partapparam opened pull request: [6873](https://github.com/hackforla/website/pull/6873) at 2024-05-21 11:24 AM PDT -partapparam,2024-06-10T19:09:14Z,- partapparam commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2159105059) at 2024-06-10 12:09 PM PDT -partapparam,2024-06-11T00:59:50Z,- partapparam submitted pull request review: [6983](https://github.com/hackforla/website/pull/6983#pullrequestreview-2109018091) at 2024-06-10 05:59 PM PDT -partapparam,2024-08-19T01:09:32Z,- partapparam commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2295489968) at 2024-08-18 06:09 PM PDT -partapparam,2024-09-12T00:49:34Z,- partapparam commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2345040896) at 2024-09-11 05:49 PM PDT -partapparam,2024-09-30T02:33:23Z,- partapparam commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2381887331) at 2024-09-29 07:33 PM PDT -partapparam,2024-09-30T02:33:30Z,- partapparam unassigned from issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2381887331) at 2024-09-29 07:33 PM PDT -partapparam,2024-10-10T02:34:13Z,- partapparam pull request closed w/o merging: [6873](https://github.com/hackforla/website/pull/6873#event-14582052881) at 2024-10-09 07:34 PM PDT -pascuas,2021-04-13T03:52:33Z,- pascuas assigned to issue: [1031](https://github.com/hackforla/website/issues/1031) at 2021-04-12 08:52 PM PDT -pascuas,2021-04-16T23:21:50Z,- pascuas unassigned from issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-821720101) at 2021-04-16 04:21 PM PDT -pascuas,2021-04-16T23:23:30Z,- pascuas assigned to issue: [1023](https://github.com/hackforla/website/issues/1023) at 2021-04-16 04:23 PM PDT -pascuas,2021-04-20T17:19:10Z,- pascuas commented on issue: [1023](https://github.com/hackforla/website/issues/1023#issuecomment-823460908) at 2021-04-20 10:19 AM PDT -pascuas,2021-04-20T17:24:36Z,- pascuas opened pull request: [1422](https://github.com/hackforla/website/pull/1422) at 2021-04-20 10:24 AM PDT -pascuas,2021-04-21T00:37:53Z,- pascuas pull request merged: [1422](https://github.com/hackforla/website/pull/1422#event-4622169984) at 2021-04-20 05:37 PM PDT -pascuas,2021-04-21T03:41:26Z,- pascuas assigned to issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-814302412) at 2021-04-20 08:41 PM PDT -pascuas,2021-04-28T18:08:06Z,- pascuas commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-828667699) at 2021-04-28 11:08 AM PDT -pascuas,2021-04-29T20:59:19Z,- pascuas opened pull request: [1493](https://github.com/hackforla/website/pull/1493) at 2021-04-29 01:59 PM PDT -pascuas,2021-05-02T16:17:39Z,- pascuas pull request merged: [1493](https://github.com/hackforla/website/pull/1493#event-4674975714) at 2021-05-02 09:17 AM PDT -pascuas,2021-05-12T02:57:34Z,- pascuas assigned to issue: [1456](https://github.com/hackforla/website/issues/1456) at 2021-05-11 07:57 PM PDT -pascuas,2021-05-31T20:29:14Z,- pascuas commented on issue: [1456](https://github.com/hackforla/website/issues/1456#issuecomment-851672162) at 2021-05-31 01:29 PM PDT -pascuas,2021-05-31T20:34:26Z,- pascuas opened pull request: [1676](https://github.com/hackforla/website/pull/1676) at 2021-05-31 01:34 PM PDT -pascuas,2021-06-01T03:34:33Z,- pascuas pull request merged: [1676](https://github.com/hackforla/website/pull/1676#event-4822759435) at 2021-05-31 08:34 PM PDT -pascuas,2021-06-02T03:08:48Z,- pascuas assigned to issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-848316515) at 2021-06-01 08:08 PM PDT -pascuas,2021-06-19T22:26:23Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-864471240) at 2021-06-19 03:26 PM PDT -pascuas,2021-06-21T17:14:19Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-865206369) at 2021-06-21 10:14 AM PDT -pascuas,2021-06-28T23:54:39Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-870123191) at 2021-06-28 04:54 PM PDT -pascuas,2021-07-10T23:09:10Z,- pascuas opened pull request: [1917](https://github.com/hackforla/website/pull/1917) at 2021-07-10 04:09 PM PDT -pascuas,2021-07-10T23:10:28Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-877715318) at 2021-07-10 04:10 PM PDT -pascuas,2021-08-01T21:06:38Z,- pascuas pull request merged: [1917](https://github.com/hackforla/website/pull/1917#event-5095873156) at 2021-08-01 02:06 PM PDT -pascuas,2021-08-01T21:07:38Z,- pascuas unassigned from issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-889491236) at 2021-08-01 02:07 PM PDT -Patdabaker,8186,SKILLS ISSUE -Patdabaker,2025-06-17T03:03:19Z,- Patdabaker opened issue: [8186](https://github.com/hackforla/website/issues/8186) at 2025-06-16 08:03 PM PDT -Patdabaker,2025-06-17T03:03:28Z,- Patdabaker assigned to issue: [8186](https://github.com/hackforla/website/issues/8186) at 2025-06-16 08:03 PM PDT -Patdabaker,2025-06-17T03:31:51Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-2978809056) at 2025-06-16 08:31 PM PDT -Patdabaker,2025-06-17T03:33:21Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-2978810932) at 2025-06-16 08:33 PM PDT -Patdabaker,2025-06-24T01:56:09Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-2998504167) at 2025-06-23 06:56 PM PDT -Patdabaker,2025-07-01T03:59:32Z,- Patdabaker assigned to issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-2780124517) at 2025-06-30 08:59 PM PDT -Patdabaker,2025-07-01T04:22:22Z,- Patdabaker commented on issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-3021702868) at 2025-06-30 09:22 PM PDT -Patdabaker,2025-07-01T05:39:41Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3021864860) at 2025-06-30 10:39 PM PDT -Patdabaker,2025-07-01T06:03:23Z,- Patdabaker opened pull request: [8236](https://github.com/hackforla/website/pull/8236) at 2025-06-30 11:03 PM PDT -Patdabaker,2025-07-06T15:55:16Z,- Patdabaker pull request merged: [8236](https://github.com/hackforla/website/pull/8236#event-18492459151) at 2025-07-06 08:55 AM PDT -Patdabaker,2025-07-10T04:22:53Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3055370631) at 2025-07-09 09:22 PM PDT -Patdabaker,2025-07-10T04:51:19Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3055480481) at 2025-07-09 09:51 PM PDT -Patdabaker,2025-07-10T05:09:26Z,- Patdabaker assigned to issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308865084) at 2025-07-09 10:09 PM PDT -Patdabaker,2025-07-10T05:10:09Z,- Patdabaker unassigned from issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055576826) at 2025-07-09 10:10 PM PDT -Patdabaker,2025-07-10T05:11:56Z,- Patdabaker assigned to issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055576826) at 2025-07-09 10:11 PM PDT -Patdabaker,2025-07-10T05:13:24Z,- Patdabaker commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055584590) at 2025-07-09 10:13 PM PDT -Patdabaker,2025-07-10T05:55:09Z,- Patdabaker opened pull request: [8246](https://github.com/hackforla/website/pull/8246) at 2025-07-09 10:55 PM PDT -Patdabaker,2025-07-17T03:15:32Z,- Patdabaker pull request merged: [8246](https://github.com/hackforla/website/pull/8246#event-18671131843) at 2025-07-16 08:15 PM PDT -Patdabaker,2025-08-05T03:20:32Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3153133398) at 2025-08-04 08:20 PM PDT -patelbansi3009,6419,SKILLS ISSUE -patelbansi3009,2024-03-05T03:33:29Z,- patelbansi3009 opened issue: [6419](https://github.com/hackforla/website/issues/6419) at 2024-03-04 07:33 PM PST -patelbansi3009,2024-03-05T03:49:33Z,- patelbansi3009 assigned to issue: [6419](https://github.com/hackforla/website/issues/6419) at 2024-03-04 07:49 PM PST -patelbansi3009,2024-04-26T00:08:47Z,- patelbansi3009 assigned to issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2065520425) at 2024-04-25 05:08 PM PDT -patelbansi3009,2024-04-26T15:22:18Z,- patelbansi3009 commented on issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2079607384) at 2024-04-26 08:22 AM PDT -patelbansi3009,2024-04-26T15:57:08Z,- patelbansi3009 opened pull request: [6767](https://github.com/hackforla/website/pull/6767) at 2024-04-26 08:57 AM PDT -patelbansi3009,2024-04-29T15:42:07Z,- patelbansi3009 commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2083071374) at 2024-04-29 08:42 AM PDT -patelbansi3009,2024-04-29T16:11:24Z,- patelbansi3009 commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2083137299) at 2024-04-29 09:11 AM PDT -patelbansi3009,2024-04-29T16:12:57Z,- patelbansi3009 submitted pull request review: [6770](https://github.com/hackforla/website/pull/6770#pullrequestreview-2028960241) at 2024-04-29 09:12 AM PDT -patelbansi3009,2024-04-29T16:32:47Z,- patelbansi3009 commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2083178617) at 2024-04-29 09:32 AM PDT -patelbansi3009,2024-04-29T17:20:11Z,- patelbansi3009 commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2083258458) at 2024-04-29 10:20 AM PDT -patelbansi3009,2024-04-29T17:20:24Z,- patelbansi3009 submitted pull request review: [6772](https://github.com/hackforla/website/pull/6772#pullrequestreview-2029103861) at 2024-04-29 10:20 AM PDT -patelbansi3009,2024-04-30T03:05:28Z,- patelbansi3009 pull request merged: [6767](https://github.com/hackforla/website/pull/6767#event-12651639399) at 2024-04-29 08:05 PM PDT -patelbansi3009,2024-04-30T17:31:35Z,- patelbansi3009 assigned to issue: [6701](https://github.com/hackforla/website/issues/6701) at 2024-04-30 10:31 AM PDT -patelbansi3009,2024-04-30T17:33:16Z,- patelbansi3009 commented on issue: [6701](https://github.com/hackforla/website/issues/6701#issuecomment-2086160967) at 2024-04-30 10:33 AM PDT -patelbansi3009,2024-04-30T19:59:45Z,- patelbansi3009 opened pull request: [6791](https://github.com/hackforla/website/pull/6791) at 2024-04-30 12:59 PM PDT -patelbansi3009,2024-05-01T14:46:59Z,- patelbansi3009 commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2088573424) at 2024-05-01 07:46 AM PDT -patelbansi3009,2024-05-01T14:48:29Z,- patelbansi3009 submitted pull request review: [6788](https://github.com/hackforla/website/pull/6788#pullrequestreview-2033760513) at 2024-05-01 07:48 AM PDT -patelbansi3009,2024-05-01T14:49:15Z,- patelbansi3009 commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2088576585) at 2024-05-01 07:49 AM PDT -patelbansi3009,2024-05-01T14:56:14Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2088586691) at 2024-05-01 07:56 AM PDT -patelbansi3009,2024-05-01T14:58:09Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-12671406714) at 2024-05-01 07:58 AM PDT -patelbansi3009,2024-05-01T15:02:11Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2088597236) at 2024-05-01 08:02 AM PDT -patelbansi3009,2024-05-02T20:05:35Z,- patelbansi3009 pull request merged: [6791](https://github.com/hackforla/website/pull/6791#event-12688618613) at 2024-05-02 01:05 PM PDT -patelbansi3009,2024-05-03T19:39:02Z,- patelbansi3009 assigned to issue: [6762](https://github.com/hackforla/website/issues/6762) at 2024-05-03 12:39 PM PDT -patelbansi3009,2024-05-03T19:41:39Z,- patelbansi3009 commented on issue: [6762](https://github.com/hackforla/website/issues/6762#issuecomment-2093658268) at 2024-05-03 12:41 PM PDT -patelbansi3009,2024-05-03T19:46:00Z,- patelbansi3009 opened pull request: [6810](https://github.com/hackforla/website/pull/6810) at 2024-05-03 12:46 PM PDT -patelbansi3009,2024-05-07T19:21:23Z,- patelbansi3009 pull request merged: [6810](https://github.com/hackforla/website/pull/6810#event-12734293606) at 2024-05-07 12:21 PM PDT -patelbansi3009,2024-05-14T22:16:24Z,- patelbansi3009 assigned to issue: [6572](https://github.com/hackforla/website/issues/6572) at 2024-05-14 03:16 PM PDT -patelbansi3009,2024-05-14T22:17:49Z,- patelbansi3009 commented on issue: [6572](https://github.com/hackforla/website/issues/6572#issuecomment-2111229498) at 2024-05-14 03:17 PM PDT -patelbansi3009,2024-05-23T16:03:27Z,- patelbansi3009 assigned to issue: [6592](https://github.com/hackforla/website/issues/6592) at 2024-05-23 09:03 AM PDT -patelbansi3009,2024-05-23T16:04:33Z,- patelbansi3009 commented on issue: [6592](https://github.com/hackforla/website/issues/6592#issuecomment-2127519323) at 2024-05-23 09:04 AM PDT -patelbansi3009,2024-05-23T19:12:35Z,- patelbansi3009 commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2127857578) at 2024-05-23 12:12 PM PDT -patelbansi3009,2024-05-23T19:16:40Z,- patelbansi3009 commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2127863151) at 2024-05-23 12:16 PM PDT -patelbansi3009,2024-05-23T19:17:49Z,- patelbansi3009 submitted pull request review: [6888](https://github.com/hackforla/website/pull/6888#pullrequestreview-2074816363) at 2024-05-23 12:17 PM PDT -patelbansi3009,2024-06-12T17:38:14Z,- patelbansi3009 assigned to issue: [6858](https://github.com/hackforla/website/issues/6858) at 2024-06-12 10:38 AM PDT -patelbansi3009,2024-06-12T17:39:07Z,- patelbansi3009 commented on issue: [6858](https://github.com/hackforla/website/issues/6858#issuecomment-2163582138) at 2024-06-12 10:39 AM PDT -patelbansi3009,2024-06-12T17:57:03Z,- patelbansi3009 opened pull request: [6992](https://github.com/hackforla/website/pull/6992) at 2024-06-12 10:57 AM PDT -patelbansi3009,2024-06-13T00:07:36Z,- patelbansi3009 pull request merged: [6992](https://github.com/hackforla/website/pull/6992#event-13138634815) at 2024-06-12 05:07 PM PDT -patelbansi3009,2024-06-26T19:46:54Z,- patelbansi3009 assigned to issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2181899671) at 2024-06-26 12:46 PM PDT -patelbansi3009,2024-06-26T20:05:08Z,- patelbansi3009 opened pull request: [7067](https://github.com/hackforla/website/pull/7067) at 2024-06-26 01:05 PM PDT -patelbansi3009,2024-06-26T20:06:02Z,- patelbansi3009 commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2192534917) at 2024-06-26 01:06 PM PDT -patelbansi3009,2024-06-27T18:11:43Z,- patelbansi3009 pull request closed w/o merging: [7067](https://github.com/hackforla/website/pull/7067#event-13321600924) at 2024-06-27 11:11 AM PDT -patelbansi3009,2024-06-27T18:12:00Z,- patelbansi3009 unassigned from issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2195377318) at 2024-06-27 11:12 AM PDT -patelbansi3009,2024-08-13T15:14:23Z,- patelbansi3009 assigned to issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2244165598) at 2024-08-13 08:14 AM PDT -patelbansi3009,2024-08-13T15:33:14Z,- patelbansi3009 commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2286545189) at 2024-08-13 08:33 AM PDT -patelbansi3009,2024-08-13T17:17:17Z,- patelbansi3009 opened pull request: [7279](https://github.com/hackforla/website/pull/7279) at 2024-08-13 10:17 AM PDT -patelbansi3009,2024-08-21T01:53:46Z,- patelbansi3009 commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2300135713) at 2024-08-20 06:53 PM PDT -patelbansi3009,2024-08-21T01:58:48Z,- patelbansi3009 assigned to issue: [7142](https://github.com/hackforla/website/issues/7142) at 2024-08-20 06:58 PM PDT -patelbansi3009,2024-08-21T01:59:02Z,- patelbansi3009 unassigned from issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2300157054) at 2024-08-20 06:59 PM PDT -patelbansi3009,2024-08-23T21:58:54Z,- patelbansi3009 pull request merged: [7279](https://github.com/hackforla/website/pull/7279#event-13998269414) at 2024-08-23 02:58 PM PDT -patelbansi3009,2024-08-27T15:22:05Z,- patelbansi3009 assigned to issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311588429) at 2024-08-27 08:22 AM PDT -patelbansi3009,2024-08-27T15:31:37Z,- patelbansi3009 commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2312887737) at 2024-08-27 08:31 AM PDT -patelbansi3009,2024-10-01T13:53:18Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2377253709) at 2024-10-01 06:53 AM PDT -patelbansi3009,2024-10-01T13:53:33Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2377253709) at 2024-10-01 06:53 AM PDT -patelbansi3009,2024-10-01T13:56:07Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-14473533870) at 2024-10-01 06:56 AM PDT -patelbansi3009,2024-10-01T13:57:07Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386022875) at 2024-10-01 06:57 AM PDT -patelbansi3009,2024-10-01T13:57:21Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 06:57 AM PDT -patelbansi3009,2024-10-01T14:00:07Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 07:00 AM PDT -patelbansi3009,2024-10-01T14:00:21Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 07:00 AM PDT -patelbansi3009,2024-10-01T14:12:14Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386087043) at 2024-10-01 07:12 AM PDT -patelbansi3009,2024-10-01T14:12:18Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-14473843734) at 2024-10-01 07:12 AM PDT -patelbansi3009,2024-10-01T14:40:55Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386057061) at 2024-10-01 07:40 AM PDT -patelbansi3009,2024-10-01T14:41:11Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386057061) at 2024-10-01 07:41 AM PDT -patelbansi3009,2024-10-01T14:42:46Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-14474386532) at 2024-10-01 07:42 AM PDT -patelbansi3009,2024-10-02T14:49:03Z,- patelbansi3009 submitted pull request review: [7557](https://github.com/hackforla/website/pull/7557#pullrequestreview-2343188701) at 2024-10-02 07:49 AM PDT -patelbansi3009,2024-10-03T19:04:03Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2392125171) at 2024-10-03 12:04 PM PDT -patelbansi3009,2024-10-05T22:35:57Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2395215866) at 2024-10-05 03:35 PM PDT -patelbansi3009,2024-10-05T22:40:58Z,- patelbansi3009 commented on pull request: [7560](https://github.com/hackforla/website/pull/7560#issuecomment-2395216724) at 2024-10-05 03:40 PM PDT -patelbansi3009,2024-10-05T22:48:09Z,- patelbansi3009 submitted pull request review: [7560](https://github.com/hackforla/website/pull/7560#pullrequestreview-2350416061) at 2024-10-05 03:48 PM PDT -patelbansi3009,2024-10-09T15:31:32Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402664680) at 2024-10-09 08:31 AM PDT -patelbansi3009,2024-10-09T15:35:55Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402674689) at 2024-10-09 08:35 AM PDT -patelbansi3009,2024-10-09T17:18:51Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402881634) at 2024-10-09 10:18 AM PDT -patelbansi3009,2024-10-09T18:07:29Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402966203) at 2024-10-09 11:07 AM PDT -patelbansi3009,2024-10-09T18:12:04Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402974226) at 2024-10-09 11:12 AM PDT -patelbansi3009,2024-11-08T07:18:32Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2463936554) at 2024-11-07 11:18 PM PST -patelbansi3009,2024-11-08T07:22:34Z,- patelbansi3009 commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2463942087) at 2024-11-07 11:22 PM PST -patelbansi3009,2024-11-08T07:36:46Z,- patelbansi3009 submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2422905468) at 2024-11-07 11:36 PM PST -patrickm-tan,2021-04-15T23:36:55Z,- patrickm-tan commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820804086) at 2021-04-15 04:36 PM PDT -patrickohh,3639,SKILLS ISSUE -patrickohh,2022-10-19T02:54:11Z,- patrickohh opened issue: [3639](https://github.com/hackforla/website/issues/3639) at 2022-10-18 07:54 PM PDT -patrickohh,2022-10-19T19:01:41Z,- patrickohh assigned to issue: [3639](https://github.com/hackforla/website/issues/3639) at 2022-10-19 12:01 PM PDT -patrickohh,2022-10-20T19:38:24Z,- patrickohh assigned to issue: [2849](https://github.com/hackforla/website/issues/2849#issuecomment-1048315743) at 2022-10-20 12:38 PM PDT -patrickohh,2022-10-20T20:12:52Z,- patrickohh opened pull request: [3645](https://github.com/hackforla/website/pull/3645) at 2022-10-20 01:12 PM PDT -patrickohh,2022-10-20T20:18:32Z,- patrickohh commented on issue: [2849](https://github.com/hackforla/website/issues/2849#issuecomment-1286094003) at 2022-10-20 01:18 PM PDT -patrickohh,2022-10-20T20:19:54Z,- patrickohh commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1286095724) at 2022-10-20 01:19 PM PDT -patrickohh,2022-10-21T02:04:01Z,- patrickohh pull request merged: [3645](https://github.com/hackforla/website/pull/3645#event-7636454084) at 2022-10-20 07:04 PM PDT -patrickohh,2022-10-25T02:28:46Z,- patrickohh assigned to issue: [3205](https://github.com/hackforla/website/issues/3205#issuecomment-1145818938) at 2022-10-24 07:28 PM PDT -patrickohh,2022-10-25T02:30:08Z,- patrickohh commented on issue: [3205](https://github.com/hackforla/website/issues/3205#issuecomment-1289893555) at 2022-10-24 07:30 PM PDT -patrickohh,2022-10-25T02:45:45Z,- patrickohh opened pull request: [3657](https://github.com/hackforla/website/pull/3657) at 2022-10-24 07:45 PM PDT -patrickohh,2022-10-25T18:19:15Z,- patrickohh commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1290966398) at 2022-10-25 11:19 AM PDT -patrickohh,2022-10-25T22:09:17Z,- patrickohh commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291195308) at 2022-10-25 03:09 PM PDT -patrickohh,2022-10-26T00:08:54Z,- patrickohh pull request merged: [3657](https://github.com/hackforla/website/pull/3657#event-7668007375) at 2022-10-25 05:08 PM PDT -patrickohh,2022-11-04T00:47:10Z,- patrickohh assigned to issue: [3651](https://github.com/hackforla/website/issues/3651) at 2022-11-03 05:47 PM PDT -patrickohh,2022-11-04T00:49:16Z,- patrickohh commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1302831070) at 2022-11-03 05:49 PM PDT -patrickohh,2022-11-05T07:04:54Z,- patrickohh opened pull request: [3696](https://github.com/hackforla/website/pull/3696) at 2022-11-04 11:04 PM PST -patrickohh,2022-11-05T18:46:55Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304609632) at 2022-11-05 10:46 AM PST -patrickohh,2022-11-07T20:41:46Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306161884) at 2022-11-07 12:41 PM PST -patrickohh,2022-11-07T20:46:03Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306167692) at 2022-11-07 12:46 PM PST -patrickohh,2022-11-07T23:10:43Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306347312) at 2022-11-07 03:10 PM PST -patrickohh,2022-11-08T00:09:14Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306398610) at 2022-11-07 04:09 PM PST -patrickohh,2022-11-08T18:54:48Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1307683565) at 2022-11-08 10:54 AM PST -patrickohh,2022-11-11T15:57:19Z,- patrickohh pull request merged: [3696](https://github.com/hackforla/website/pull/3696#event-7793206822) at 2022-11-11 07:57 AM PST -patrickohh,2022-11-15T06:07:51Z,- patrickohh assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-11-14 10:07 PM PST -patrickohh,2022-11-15T06:08:52Z,- patrickohh commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1314821768) at 2022-11-14 10:08 PM PST -patrickohh,2022-11-15T06:44:21Z,- patrickohh opened pull request: [3719](https://github.com/hackforla/website/pull/3719) at 2022-11-14 10:44 PM PST -patrickohh,2022-11-16T03:58:40Z,- patrickohh commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316293060) at 2022-11-15 07:58 PM PST -patrickohh,2022-11-20T23:29:15Z,- patrickohh commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321275378) at 2022-11-20 03:29 PM PST -patrickohh,2022-11-20T23:33:55Z,- patrickohh submitted pull request review: [3733](https://github.com/hackforla/website/pull/3733#pullrequestreview-1187342583) at 2022-11-20 03:33 PM PST -patrickohh,2022-11-26T19:35:21Z,- patrickohh commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328102346) at 2022-11-26 11:35 AM PST -patrickohh,2022-11-27T06:34:52Z,- patrickohh commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328181689) at 2022-11-26 10:34 PM PST -patrickohh,2022-11-27T08:43:22Z,- patrickohh pull request merged: [3719](https://github.com/hackforla/website/pull/3719#event-7897232352) at 2022-11-27 12:43 AM PST -patrickohh,2022-11-28T23:57:25Z,- patrickohh assigned to issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1314477129) at 2022-11-28 03:57 PM PST -patrickohh,2022-11-28T23:58:44Z,- patrickohh commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1329899455) at 2022-11-28 03:58 PM PST -patrickohh,2022-12-04T04:27:25Z,- patrickohh commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1336317909) at 2022-12-03 08:27 PM PST -patrickohh,2022-12-06T01:13:00Z,- patrickohh opened pull request: [3767](https://github.com/hackforla/website/pull/3767) at 2022-12-05 05:13 PM PST -patrickohh,2022-12-10T04:25:34Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1345110075) at 2022-12-09 08:25 PM PST -patrickohh,2022-12-19T17:24:20Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1357996957) at 2022-12-19 09:24 AM PST -patrickohh,2022-12-23T21:54:31Z,- patrickohh commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1364356593) at 2022-12-23 01:54 PM PST -patrickohh,2023-01-09T22:27:58Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1376419584) at 2023-01-09 02:27 PM PST -patrickohh,2023-01-19T23:27:58Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1397740607) at 2023-01-19 03:27 PM PST -patrickohh,2023-01-19T23:28:55Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1397741154) at 2023-01-19 03:28 PM PST -patrickohh,2023-02-01T02:05:29Z,- patrickohh pull request merged: [3767](https://github.com/hackforla/website/pull/3767#event-8405489016) at 2023-01-31 06:05 PM PST -patrickohh,2023-02-02T17:08:16Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1414080391) at 2023-02-02 09:08 AM PST -patrickohh,2023-03-28T01:12:34Z,- patrickohh unassigned from issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328320992) at 2023-03-27 06:12 PM PDT -pattshreds,2636,SKILLS ISSUE -pattshreds,2021-12-28T03:38:06Z,- pattshreds opened issue: [2636](https://github.com/hackforla/website/issues/2636) at 2021-12-27 07:38 PM PST -pattshreds,2022-01-17T04:44:05Z,- pattshreds assigned to issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1001466319) at 2022-01-16 08:44 PM PST -pattshreds,2022-01-17T17:40:49Z,- pattshreds unassigned from issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1001466319) at 2022-01-17 09:40 AM PST -pattshreds,2022-01-17T18:11:29Z,- pattshreds assigned to issue: [2627](https://github.com/hackforla/website/issues/2627#issuecomment-1013828431) at 2022-01-17 10:11 AM PST -pattshreds,2022-01-17T18:12:32Z,- pattshreds commented on issue: [2627](https://github.com/hackforla/website/issues/2627#issuecomment-1014791079) at 2022-01-17 10:12 AM PST -pattshreds,2022-01-17T19:00:38Z,- pattshreds opened pull request: [2693](https://github.com/hackforla/website/pull/2693) at 2022-01-17 11:00 AM PST -pattshreds,2022-01-17T19:03:03Z,- pattshreds closed issue by PR 2693: [2627](https://github.com/hackforla/website/issues/2627#event-5906340621) at 2022-01-17 11:03 AM PST -pattshreds,2022-01-17T19:04:08Z,- pattshreds reopened issue: [2627](https://github.com/hackforla/website/issues/2627#event-5906340621) at 2022-01-17 11:04 AM PST -pattshreds,2022-01-17T19:05:10Z,- pattshreds closed issue as completed: [2636](https://github.com/hackforla/website/issues/2636#event-5906348988) at 2022-01-17 11:05 AM PST -pattshreds,2022-01-19T05:22:33Z,- pattshreds pull request merged: [2693](https://github.com/hackforla/website/pull/2693#event-5915140467) at 2022-01-18 09:22 PM PST -pattshreds,2022-01-22T18:12:14Z,- pattshreds assigned to issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1017059806) at 2022-01-22 10:12 AM PST -pattshreds,2022-01-22T18:39:42Z,- pattshreds assigned to issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1005324750) at 2022-01-22 10:39 AM PST -pattshreds,2022-01-22T18:52:48Z,- pattshreds unassigned from issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1019337301) at 2022-01-22 10:52 AM PST -pattshreds,2022-01-22T18:58:13Z,- pattshreds assigned to issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1003752150) at 2022-01-22 10:58 AM PST -pattshreds,2022-01-22T21:23:45Z,- pattshreds commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1019360401) at 2022-01-22 01:23 PM PST -pattshreds,2022-01-23T06:15:14Z,- pattshreds assigned to issue: [2084](https://github.com/hackforla/website/issues/2084) at 2022-01-22 10:15 PM PST -pattshreds,2022-01-23T06:18:19Z,- pattshreds commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1019423681) at 2022-01-22 10:18 PM PST -pattshreds,2022-01-24T15:37:17Z,- pattshreds commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1020230645) at 2022-01-24 07:37 AM PST -pattshreds,2022-01-26T14:49:00Z,- pattshreds commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1022268701) at 2022-01-26 06:49 AM PST -pattshreds,2022-01-28T14:39:32Z,- pattshreds opened pull request: [2723](https://github.com/hackforla/website/pull/2723) at 2022-01-28 06:39 AM PST -pattshreds,2022-01-29T20:24:31Z,- pattshreds closed issue as completed: [2636](https://github.com/hackforla/website/issues/2636#event-5975493081) at 2022-01-29 12:24 PM PST -pattshreds,2022-03-24T01:30:17Z,- pattshreds commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1076978032) at 2022-03-23 06:30 PM PDT -pattshreds,2022-04-05T14:26:26Z,- pattshreds pull request merged: [2723](https://github.com/hackforla/website/pull/2723#event-6371752163) at 2022-04-05 07:26 AM PDT -pattshreds,2022-04-05T14:26:36Z,- pattshreds reopened pull request: [2723](https://github.com/hackforla/website/pull/2723#event-6371752163) at 2022-04-05 07:26 AM PDT -pattshreds,2022-04-05T14:28:59Z,- pattshreds commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1088780795) at 2022-04-05 07:28 AM PDT -pattshreds,2022-04-20T14:27:56Z,- pattshreds commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1104000058) at 2022-04-20 07:27 AM PDT -paulbmun,5067,SKILLS ISSUE -paulbmun,2023-07-26T02:58:09Z,- paulbmun opened issue: [5067](https://github.com/hackforla/website/issues/5067) at 2023-07-25 07:58 PM PDT -paulbmun,2023-07-26T02:58:24Z,- paulbmun assigned to issue: [5067](https://github.com/hackforla/website/issues/5067#issuecomment-1650900048) at 2023-07-25 07:58 PM PDT -Pauljsyi,2716,SKILLS ISSUE -Pauljsyi,2022-01-25T03:59:19Z,- Pauljsyi opened issue: [2716](https://github.com/hackforla/website/issues/2716) at 2022-01-24 07:59 PM PST -Pauljsyi,2022-01-25T04:01:23Z,- Pauljsyi assigned to issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1020786534) at 2022-01-24 08:01 PM PST -Pauljsyi,2022-01-28T19:17:09Z,- Pauljsyi assigned to issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023535713) at 2022-01-28 11:17 AM PST -Pauljsyi,2022-01-28T19:20:46Z,- Pauljsyi commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1024532888) at 2022-01-28 11:20 AM PST -Pauljsyi,2022-01-29T01:20:29Z,- Pauljsyi commented on issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1024797340) at 2022-01-28 05:20 PM PST -Pauljsyi,2022-01-29T02:33:52Z,- Pauljsyi closed issue as completed: [2716](https://github.com/hackforla/website/issues/2716#event-5974343663) at 2022-01-28 06:33 PM PST -Pauljsyi,2022-01-29T19:53:19Z,- Pauljsyi unassigned from issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1024532888) at 2022-01-29 11:53 AM PST -Pauljsyi,2022-01-29T20:24:30Z,- Pauljsyi opened pull request: [2725](https://github.com/hackforla/website/pull/2725) at 2022-01-29 12:24 PM PST -Pauljsyi,2022-01-31T06:52:53Z,- Pauljsyi pull request merged: [2725](https://github.com/hackforla/website/pull/2725#event-5978462596) at 2022-01-30 10:52 PM PST -Pauljsyi,2022-02-02T01:17:21Z,- Pauljsyi assigned to issue: [2240](https://github.com/hackforla/website/issues/2240) at 2022-02-01 05:17 PM PST -Pauljsyi,2022-02-02T01:52:21Z,- Pauljsyi commented on issue: [2240](https://github.com/hackforla/website/issues/2240#issuecomment-1027500462) at 2022-02-01 05:52 PM PST -Pauljsyi,2022-02-02T19:58:36Z,- Pauljsyi opened pull request: [2732](https://github.com/hackforla/website/pull/2732) at 2022-02-02 11:58 AM PST -Pauljsyi,2022-02-02T20:03:43Z,- Pauljsyi assigned to issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1007374781) at 2022-02-02 12:03 PM PST -Pauljsyi,2022-02-04T01:45:36Z,- Pauljsyi commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1029563962) at 2022-02-03 05:45 PM PST -Pauljsyi,2022-02-04T02:33:42Z,- Pauljsyi opened pull request: [2736](https://github.com/hackforla/website/pull/2736) at 2022-02-03 06:33 PM PST -Pauljsyi,2022-02-04T06:09:58Z,- Pauljsyi pull request merged: [2732](https://github.com/hackforla/website/pull/2732#event-6007374336) at 2022-02-03 10:09 PM PST -Pauljsyi,2022-02-07T21:17:22Z,- Pauljsyi commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1031933975) at 2022-02-07 01:17 PM PST -Pauljsyi,2022-03-12T01:49:25Z,- Pauljsyi pull request closed w/o merging: [2736](https://github.com/hackforla/website/pull/2736#event-6228985234) at 2022-03-11 06:49 PM PDT -Pauljsyi,2022-03-12T01:56:10Z,- Pauljsyi unassigned from issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1065786460) at 2022-03-11 06:56 PM PDT -Pauljsyi,2022-05-17T23:31:03Z,- Pauljsyi assigned to issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-05-17 04:31 PM PDT -Pauljsyi,2022-06-26T16:44:04Z,- Pauljsyi unassigned from issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1166584104) at 2022-06-26 09:44 AM PDT -paulsvh,2021-05-05T02:15:17Z,- paulsvh assigned to issue: [1511](https://github.com/hackforla/website/issues/1511) at 2021-05-04 07:15 PM PDT -paulsvh,2021-05-07T18:01:50Z,- paulsvh opened pull request: [1528](https://github.com/hackforla/website/pull/1528) at 2021-05-07 11:01 AM PDT -paulsvh,2021-05-07T19:36:31Z,- paulsvh pull request merged: [1528](https://github.com/hackforla/website/pull/1528#event-4704241124) at 2021-05-07 12:36 PM PDT -paulsvh,2021-05-12T02:35:26Z,- paulsvh assigned to issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-831768425) at 2021-05-11 07:35 PM PDT -paulsvh,2021-05-15T18:14:46Z,- paulsvh commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-841703549) at 2021-05-15 11:14 AM PDT -paulsvh,2021-05-19T03:34:01Z,- paulsvh opened pull request: [1591](https://github.com/hackforla/website/pull/1591) at 2021-05-18 08:34 PM PDT -paulsvh,2021-05-19T18:06:04Z,- paulsvh assigned to issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:04Z,- paulsvh assigned to issue: [1566](https://github.com/hackforla/website/issues/1566) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:04Z,- paulsvh assigned to issue: [1567](https://github.com/hackforla/website/issues/1567) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:05Z,- paulsvh assigned to issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:05Z,- paulsvh assigned to issue: [1569](https://github.com/hackforla/website/issues/1569) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:05Z,- paulsvh assigned to issue: [1570](https://github.com/hackforla/website/issues/1570) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:06Z,- paulsvh assigned to issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:06Z,- paulsvh assigned to issue: [1572](https://github.com/hackforla/website/issues/1572) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:06Z,- paulsvh assigned to issue: [1573](https://github.com/hackforla/website/issues/1573) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:07Z,- paulsvh assigned to issue: [1574](https://github.com/hackforla/website/issues/1574) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:07Z,- paulsvh assigned to issue: [1575](https://github.com/hackforla/website/issues/1575) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:07Z,- paulsvh assigned to issue: [1576](https://github.com/hackforla/website/issues/1576) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:08Z,- paulsvh assigned to issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:08Z,- paulsvh assigned to issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:08Z,- paulsvh assigned to issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:09Z,- paulsvh assigned to issue: [1580](https://github.com/hackforla/website/issues/1580) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:09Z,- paulsvh assigned to issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:09Z,- paulsvh assigned to issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:10Z,- paulsvh assigned to issue: [1583](https://github.com/hackforla/website/issues/1583) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:10Z,- paulsvh assigned to issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:10Z,- paulsvh assigned to issue: [1585](https://github.com/hackforla/website/issues/1585) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:11Z,- paulsvh assigned to issue: [1586](https://github.com/hackforla/website/issues/1586) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:11Z,- paulsvh assigned to issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:11Z,- paulsvh assigned to issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:46Z,- paulsvh assigned to issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:47Z,- paulsvh assigned to issue: [1559](https://github.com/hackforla/website/issues/1559) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:47Z,- paulsvh assigned to issue: [1560](https://github.com/hackforla/website/issues/1560) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:47Z,- paulsvh assigned to issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:48Z,- paulsvh assigned to issue: [1562](https://github.com/hackforla/website/issues/1562) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:48Z,- paulsvh assigned to issue: [1563](https://github.com/hackforla/website/issues/1563) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:48Z,- paulsvh assigned to issue: [1564](https://github.com/hackforla/website/issues/1564) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1564](https://github.com/hackforla/website/issues/1564) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1566](https://github.com/hackforla/website/issues/1566) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1567](https://github.com/hackforla/website/issues/1567) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:49Z,- paulsvh unassigned from issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:49Z,- paulsvh unassigned from issue: [1569](https://github.com/hackforla/website/issues/1569) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:49Z,- paulsvh unassigned from issue: [1570](https://github.com/hackforla/website/issues/1570) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:50Z,- paulsvh unassigned from issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:50Z,- paulsvh unassigned from issue: [1572](https://github.com/hackforla/website/issues/1572) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:50Z,- paulsvh unassigned from issue: [1573](https://github.com/hackforla/website/issues/1573) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:51Z,- paulsvh unassigned from issue: [1574](https://github.com/hackforla/website/issues/1574) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:51Z,- paulsvh unassigned from issue: [1575](https://github.com/hackforla/website/issues/1575) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:51Z,- paulsvh unassigned from issue: [1576](https://github.com/hackforla/website/issues/1576) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:52Z,- paulsvh unassigned from issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:52Z,- paulsvh unassigned from issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:52Z,- paulsvh unassigned from issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:53Z,- paulsvh unassigned from issue: [1580](https://github.com/hackforla/website/issues/1580) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:53Z,- paulsvh unassigned from issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:53Z,- paulsvh unassigned from issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1583](https://github.com/hackforla/website/issues/1583) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1585](https://github.com/hackforla/website/issues/1585) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1586](https://github.com/hackforla/website/issues/1586) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:55Z,- paulsvh unassigned from issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:55Z,- paulsvh unassigned from issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:38:07Z,- paulsvh unassigned from issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:07Z,- paulsvh unassigned from issue: [1559](https://github.com/hackforla/website/issues/1559) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1560](https://github.com/hackforla/website/issues/1560) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1562](https://github.com/hackforla/website/issues/1562) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1563](https://github.com/hackforla/website/issues/1563) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-23T01:10:26Z,- paulsvh pull request merged: [1591](https://github.com/hackforla/website/pull/1591#event-4782842912) at 2021-05-22 06:10 PM PDT -paulsvh,2021-06-02T02:29:47Z,- paulsvh assigned to issue: [1599](https://github.com/hackforla/website/issues/1599) at 2021-06-01 07:29 PM PDT -paulsvh,2021-06-04T03:24:46Z,- paulsvh assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -paulsvh,2021-06-04T17:39:28Z,- paulsvh commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-854896631) at 2021-06-04 10:39 AM PDT -paulsvh,2021-06-11T01:52:42Z,- paulsvh opened pull request: [1706](https://github.com/hackforla/website/pull/1706) at 2021-06-10 06:52 PM PDT -paulsvh,2021-06-11T02:00:23Z,- paulsvh pull request merged: [1706](https://github.com/hackforla/website/pull/1706#event-4875198642) at 2021-06-10 07:00 PM PDT -paulsvh,2021-06-12T16:32:03Z,- paulsvh unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -pawan92,2020-12-08T21:55:13Z,- pawan92 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -pawan92,2020-12-13T19:56:28Z,- pawan92 assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-744054964) at 2020-12-13 11:56 AM PST -pawan92,2020-12-15T21:21:59Z,- pawan92 assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:21 PM PST -pawan92,2020-12-15T21:38:15Z,- pawan92 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745583716) at 2020-12-15 01:38 PM PST -pawan92,2020-12-16T00:09:13Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-745652783) at 2020-12-15 04:09 PM PST -pawan92,2020-12-20T18:11:37Z,- pawan92 commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-748641396) at 2020-12-20 10:11 AM PST -pawan92,2020-12-20T18:15:24Z,- pawan92 commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-748641824) at 2020-12-20 10:15 AM PST -pawan92,2020-12-20T18:22:39Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-748642658) at 2020-12-20 10:22 AM PST -pawan92,2020-12-20T18:27:25Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-748643283) at 2020-12-20 10:27 AM PST -pawan92,2020-12-20T18:34:17Z,- pawan92 commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-748644098) at 2020-12-20 10:34 AM PST -pawan92,2020-12-20T20:48:40Z,- pawan92 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -pawan92,2020-12-20T20:48:40Z,- pawan92 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -pawan92,2020-12-24T17:41:11Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-750933797) at 2020-12-24 09:41 AM PST -pawan92,2020-12-27T18:14:07Z,- pawan92 commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-751499367) at 2020-12-27 10:14 AM PST -pawan92,2020-12-27T18:22:54Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-751500426) at 2020-12-27 10:22 AM PST -pawan92,2020-12-29T21:39:54Z,- pawan92 assigned to issue: [937](https://github.com/hackforla/website/issues/937) at 2020-12-29 01:39 PM PST -pawan92,2020-12-29T21:41:01Z,- pawan92 assigned to issue: [938](https://github.com/hackforla/website/issues/938) at 2020-12-29 01:41 PM PST -pawan92,2020-12-29T21:52:22Z,- pawan92 assigned to issue: [885](https://github.com/hackforla/website/issues/885) at 2020-12-29 01:52 PM PST -pawan92,2021-01-05T22:05:23Z,- pawan92 opened issue: [916](https://github.com/hackforla/website/issues/916) at 2021-01-05 02:05 PM PST -pawan92,2021-01-06T14:18:06Z,- pawan92 unassigned from issue: [937](https://github.com/hackforla/website/issues/937) at 2021-01-06 06:18 AM PST -pawan92,2021-01-06T14:18:45Z,- pawan92 unassigned from issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-06 06:18 AM PST -pawan92,2021-01-06T14:18:58Z,- pawan92 assigned to issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-06 06:18 AM PST -pawan92,2021-01-06T14:19:02Z,- pawan92 unassigned from issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-06 06:19 AM PST -pawan92,2021-01-10T18:18:14Z,- pawan92 commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-757519970) at 2021-01-10 10:18 AM PST -pawan92,2021-01-10T18:21:58Z,- pawan92 commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-757520578) at 2021-01-10 10:21 AM PST -pawan92,2021-01-10T18:26:03Z,- pawan92 commented on issue: [911](https://github.com/hackforla/website/issues/911#issuecomment-757521312) at 2021-01-10 10:26 AM PST -pawan92,2021-01-10T18:29:26Z,- pawan92 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757521765) at 2021-01-10 10:29 AM PST -pawan92,2021-01-10T18:32:04Z,- pawan92 closed issue by PR 834: [756](https://github.com/hackforla/website/issues/756#event-4188300818) at 2021-01-10 10:32 AM PST -pawan92,2021-01-10T18:32:47Z,- pawan92 commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-757522221) at 2021-01-10 10:32 AM PST -pawan92,2021-01-10T18:35:48Z,- pawan92 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-757522562) at 2021-01-10 10:35 AM PST -pawan92,2021-01-10T18:48:57Z,- pawan92 commented on issue: [921](https://github.com/hackforla/website/issues/921#issuecomment-757524396) at 2021-01-10 10:48 AM PST -pawan92,2021-01-10T20:52:57Z,- pawan92 assigned to issue: [937](https://github.com/hackforla/website/issues/937) at 2021-01-10 12:52 PM PST -pawan92,2021-01-10T20:57:48Z,- pawan92 assigned to issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-10 12:57 PM PST -pawan92,2021-01-10T21:01:21Z,- pawan92 assigned to issue: [869](https://github.com/hackforla/website/issues/869) at 2021-01-10 01:01 PM PST -pawan92,2021-01-10T21:04:07Z,- pawan92 closed issue as completed: [869](https://github.com/hackforla/website/issues/869#event-4188431960) at 2021-01-10 01:04 PM PST -pawan92,2021-01-10T21:04:23Z,- pawan92 commented on issue: [869](https://github.com/hackforla/website/issues/869#issuecomment-757543826) at 2021-01-10 01:04 PM PST -pawan92,2021-01-10T21:42:18Z,- pawan92 unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-753667535) at 2021-01-10 01:42 PM PST -pawan92,2021-01-12T15:05:09Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-758716062) at 2021-01-12 07:05 AM PST -pawan92,2021-01-13T18:55:28Z,- pawan92 commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759649939) at 2021-01-13 10:55 AM PST -pawan92,2021-01-13T19:22:26Z,- pawan92 unassigned from issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-13 11:22 AM PST -pawan92,2021-01-13T19:25:20Z,- pawan92 unassigned from issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665527) at 2021-01-13 11:25 AM PST -pawan92,2021-01-20T18:07:58Z,- pawan92 commented on issue: [889](https://github.com/hackforla/website/issues/889#issuecomment-763832822) at 2021-01-20 10:07 AM PST -pawan92,2021-01-20T18:11:27Z,- pawan92 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-763834787) at 2021-01-20 10:11 AM PST -pawan92,2021-01-20T18:15:48Z,- pawan92 commented on issue: [885](https://github.com/hackforla/website/issues/885#issuecomment-763837373) at 2021-01-20 10:15 AM PST -pawan92,2021-01-22T20:19:01Z,- pawan92 opened issue: [955](https://github.com/hackforla/website/issues/955) at 2021-01-22 12:19 PM PST -pawan92,2021-01-24T17:20:28Z,- pawan92 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-766397700) at 2021-01-24 09:20 AM PST -pawan92,2021-01-24T17:23:58Z,- pawan92 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766398175) at 2021-01-24 09:23 AM PST -pawan92,2021-01-24T17:26:05Z,- pawan92 commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-766398460) at 2021-01-24 09:26 AM PST -pawan92,2021-01-24T17:27:16Z,- pawan92 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-766398637) at 2021-01-24 09:27 AM PST -pawan92,2021-01-24T17:32:19Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-766399384) at 2021-01-24 09:32 AM PST -pawan92,2021-01-24T17:33:24Z,- pawan92 commented on issue: [830](https://github.com/hackforla/website/issues/830#issuecomment-766399534) at 2021-01-24 09:33 AM PST -pawan92,2021-01-24T17:37:30Z,- pawan92 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-766400108) at 2021-01-24 09:37 AM PST -pawan92,2021-01-24T17:38:31Z,- pawan92 commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-766400292) at 2021-01-24 09:38 AM PST -pawan92,2021-01-24T17:40:21Z,- pawan92 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-766400581) at 2021-01-24 09:40 AM PST -pawan92,2021-01-24T18:21:02Z,- pawan92 opened issue: [962](https://github.com/hackforla/website/issues/962) at 2021-01-24 10:21 AM PST -pawan92,2021-01-24T20:27:00Z,- pawan92 assigned to issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-764847719) at 2021-01-24 12:27 PM PST -pawan92,2021-01-27T16:34:24Z,- pawan92 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-768409424) at 2021-01-27 08:34 AM PST -pawan92,2021-01-31T15:29:23Z,- pawan92 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-770399937) at 2021-01-31 07:29 AM PST -pawan92,2021-01-31T15:31:39Z,- pawan92 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-770400258) at 2021-01-31 07:31 AM PST -pawan92,2021-01-31T15:32:52Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-770400420) at 2021-01-31 07:32 AM PST -pawan92,2021-01-31T15:33:26Z,- pawan92 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-770400497) at 2021-01-31 07:33 AM PST -pawan92,2021-01-31T15:34:25Z,- pawan92 commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-770400633) at 2021-01-31 07:34 AM PST -pawan92,2021-01-31T15:35:19Z,- pawan92 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-770400765) at 2021-01-31 07:35 AM PST -pawan92,2021-01-31T15:37:08Z,- pawan92 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-770401002) at 2021-01-31 07:37 AM PST -pawan92,2021-01-31T15:38:03Z,- pawan92 commented on issue: [960](https://github.com/hackforla/website/issues/960#issuecomment-770401125) at 2021-01-31 07:38 AM PST -pawan92,2021-01-31T15:41:15Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-770401587) at 2021-01-31 07:41 AM PST -pawan92,2021-01-31T15:45:21Z,- pawan92 commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-770402140) at 2021-01-31 07:45 AM PST -pawan92,2021-01-31T15:48:57Z,- pawan92 commented on issue: [885](https://github.com/hackforla/website/issues/885#issuecomment-770402647) at 2021-01-31 07:48 AM PST -pawan92,2021-01-31T15:56:09Z,- pawan92 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-770403638) at 2021-01-31 07:56 AM PST -pawan92,2021-02-03T16:58:17Z,- pawan92 assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-02-03 08:58 AM PST -pawan92,2021-02-03T20:14:49Z,- pawan92 closed issue as completed: [885](https://github.com/hackforla/website/issues/885#event-4287339442) at 2021-02-03 12:14 PM PST -pawan92,2021-02-03T20:16:29Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-772793453) at 2021-02-03 12:16 PM PST -pawan92,2021-02-06T16:29:40Z,- pawan92 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-774503030) at 2021-02-06 08:29 AM PST -pawan92,2021-02-14T18:08:26Z,- pawan92 commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-778816291) at 2021-02-14 10:08 AM PST -pawan92,2021-02-14T18:09:08Z,- pawan92 commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-778816384) at 2021-02-14 10:09 AM PST -pawan92,2021-02-14T18:47:57Z,- pawan92 assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -pawan92,2021-02-21T17:49:25Z,- pawan92 commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-782896427) at 2021-02-21 09:49 AM PST -pawan92,2021-02-21T17:50:51Z,- pawan92 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782896668) at 2021-02-21 09:50 AM PST -pawan92,2021-02-21T17:51:21Z,- pawan92 commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-782896741) at 2021-02-21 09:51 AM PST -pawan92,2021-02-21T17:51:41Z,- pawan92 commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-782896797) at 2021-02-21 09:51 AM PST -pawan92,2021-02-21T17:52:11Z,- pawan92 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-782896869) at 2021-02-21 09:52 AM PST -pawan92,2021-02-21T17:52:54Z,- pawan92 commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782896960) at 2021-02-21 09:52 AM PST -pawan92,2021-02-21T17:54:28Z,- pawan92 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-782897222) at 2021-02-21 09:54 AM PST -pawan92,2021-02-28T15:52:38Z,- pawan92 commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-787473375) at 2021-02-28 07:52 AM PST -pawan92,2021-02-28T15:54:05Z,- pawan92 commented on issue: [1109](https://github.com/hackforla/website/issues/1109#issuecomment-787473599) at 2021-02-28 07:54 AM PST -pawan92,2021-03-07T18:57:12Z,- pawan92 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-781771017) at 2021-03-07 10:57 AM PST -pawan92,2021-03-07T19:23:46Z,- pawan92 unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -pawan92,2021-03-07T19:24:33Z,- pawan92 unassigned from issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -pawan92,2021-04-11T16:26:26Z,- pawan92 commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-817333918) at 2021-04-11 09:26 AM PDT -pawan92,2021-06-02T01:50:59Z,- pawan92 assigned to issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820805369) at 2021-06-01 06:50 PM PDT -pdimaano,4327,SKILLS ISSUE -pdimaano,2023-03-29T03:52:29Z,- pdimaano opened issue: [4327](https://github.com/hackforla/website/issues/4327) at 2023-03-28 08:52 PM PDT -pdimaano,2023-03-29T03:52:30Z,- pdimaano assigned to issue: [4327](https://github.com/hackforla/website/issues/4327) at 2023-03-28 08:52 PM PDT -pdimaano,2023-04-03T18:17:28Z,- pdimaano assigned to issue: [4378](https://github.com/hackforla/website/issues/4378) at 2023-04-03 11:17 AM PDT -pdimaano,2023-04-03T23:34:30Z,- pdimaano commented on issue: [4378](https://github.com/hackforla/website/issues/4378#issuecomment-1495124345) at 2023-04-03 04:34 PM PDT -pdimaano,2023-04-04T23:22:41Z,- pdimaano opened pull request: [4411](https://github.com/hackforla/website/pull/4411) at 2023-04-04 04:22 PM PDT -pdimaano,2023-04-06T18:32:45Z,- pdimaano pull request merged: [4411](https://github.com/hackforla/website/pull/4411#event-8948718508) at 2023-04-06 11:32 AM PDT -pdimaano,2023-04-12T17:57:26Z,- pdimaano commented on issue: [4327](https://github.com/hackforla/website/issues/4327#issuecomment-1505701008) at 2023-04-12 10:57 AM PDT -pdimaano,2023-04-12T18:01:54Z,- pdimaano assigned to issue: [4448](https://github.com/hackforla/website/issues/4448) at 2023-04-12 11:01 AM PDT -pdimaano,2023-04-12T18:06:50Z,- pdimaano commented on issue: [4448](https://github.com/hackforla/website/issues/4448#issuecomment-1505713005) at 2023-04-12 11:06 AM PDT -pdimaano,2023-04-14T21:16:22Z,- pdimaano opened pull request: [4517](https://github.com/hackforla/website/pull/4517) at 2023-04-14 02:16 PM PDT -pdimaano,2023-04-19T16:46:21Z,- pdimaano pull request merged: [4517](https://github.com/hackforla/website/pull/4517#event-9048817043) at 2023-04-19 09:46 AM PDT -pdimaano,2023-04-19T20:06:44Z,- pdimaano closed issue as completed: [4327](https://github.com/hackforla/website/issues/4327#event-9050476209) at 2023-04-19 01:06 PM PDT -pdimaano,2023-04-24T17:00:26Z,- pdimaano commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1520525379) at 2023-04-24 10:00 AM PDT -pdimaano,2023-04-24T17:23:36Z,- pdimaano submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1398492702) at 2023-04-24 10:23 AM PDT -pdimaano,2023-04-25T20:47:20Z,- pdimaano submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1400727288) at 2023-04-25 01:47 PM PDT -pdimaano,2023-05-08T03:35:08Z,- pdimaano assigned to issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1529480340) at 2023-05-07 08:35 PM PDT -pdimaano,2023-05-08T03:39:42Z,- pdimaano commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1537693099) at 2023-05-07 08:39 PM PDT -pdimaano,2023-05-11T21:39:39Z,- pdimaano opened pull request: [4657](https://github.com/hackforla/website/pull/4657) at 2023-05-11 02:39 PM PDT -pdimaano,2023-05-15T05:37:10Z,- pdimaano pull request merged: [4657](https://github.com/hackforla/website/pull/4657#event-9242242314) at 2023-05-14 10:37 PM PDT -pdimaano,2023-05-15T23:33:58Z,- pdimaano assigned to issue: [4592](https://github.com/hackforla/website/issues/4592#issuecomment-1539590262) at 2023-05-15 04:33 PM PDT -pdimaano,2023-05-15T23:37:47Z,- pdimaano commented on issue: [4592](https://github.com/hackforla/website/issues/4592#issuecomment-1548755927) at 2023-05-15 04:37 PM PDT -pdimaano,2023-05-19T18:48:16Z,- pdimaano opened pull request: [4701](https://github.com/hackforla/website/pull/4701) at 2023-05-19 11:48 AM PDT -pdimaano,2023-06-23T17:27:28Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1604598102) at 2023-06-23 10:27 AM PDT -pdimaano,2023-06-29T02:31:53Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1612350943) at 2023-06-28 07:31 PM PDT -pdimaano,2023-07-06T18:59:32Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1624171782) at 2023-07-06 11:59 AM PDT -pdimaano,2023-07-09T23:32:41Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1627861268) at 2023-07-09 04:32 PM PDT -pdimaano,2023-07-18T06:20:52Z,- pdimaano pull request merged: [4701](https://github.com/hackforla/website/pull/4701#event-9846077295) at 2023-07-17 11:20 PM PDT -pdimaano,2023-07-24T19:37:31Z,- pdimaano commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1648499083) at 2023-07-24 12:37 PM PDT -pdimaano,2023-07-25T02:16:33Z,- pdimaano submitted pull request review: [5054](https://github.com/hackforla/website/pull/5054#pullrequestreview-1544522123) at 2023-07-24 07:16 PM PDT -pdimaano,2023-08-07T22:20:57Z,- pdimaano commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1668650527) at 2023-08-07 03:20 PM PDT -pdimaano,2023-08-08T20:01:37Z,- pdimaano submitted pull request review: [5152](https://github.com/hackforla/website/pull/5152#pullrequestreview-1568095418) at 2023-08-08 01:01 PM PDT -pdimaano,2023-08-15T19:16:25Z,- pdimaano commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1679464552) at 2023-08-15 12:16 PM PDT -pdimaano,2023-08-17T02:53:23Z,- pdimaano submitted pull request review: [5203](https://github.com/hackforla/website/pull/5203#pullrequestreview-1581682010) at 2023-08-16 07:53 PM PDT -pdimaano,2023-08-21T19:34:02Z,- pdimaano commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1686923194) at 2023-08-21 12:34 PM PDT -pdimaano,2023-08-23T22:41:16Z,- pdimaano submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1592513939) at 2023-08-23 03:41 PM PDT -pdimaano,2023-08-29T20:31:02Z,- pdimaano assigned to issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1512269056) at 2023-08-29 01:31 PM PDT -pdimaano,2023-08-29T20:42:43Z,- pdimaano commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1698101176) at 2023-08-29 01:42 PM PDT -pdimaano,2023-09-04T20:58:23Z,- pdimaano commented on pull request: [5415](https://github.com/hackforla/website/pull/5415#issuecomment-1705695074) at 2023-09-04 01:58 PM PDT -pdimaano,2023-09-05T02:30:07Z,- pdimaano opened pull request: [5444](https://github.com/hackforla/website/pull/5444) at 2023-09-04 07:30 PM PDT -pdimaano,2023-09-06T01:31:36Z,- pdimaano submitted pull request review: [5415](https://github.com/hackforla/website/pull/5415#pullrequestreview-1612181731) at 2023-09-05 06:31 PM PDT -pdimaano,2023-09-11T17:50:17Z,- pdimaano commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714330932) at 2023-09-11 10:50 AM PDT -pdimaano,2023-09-14T03:47:04Z,- pdimaano pull request merged: [5444](https://github.com/hackforla/website/pull/5444#event-10366797393) at 2023-09-13 08:47 PM PDT -pdimaano,2023-09-19T20:51:23Z,- pdimaano commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1726449003) at 2023-09-19 01:51 PM PDT -pdimaano,2023-09-20T01:38:31Z,- pdimaano submitted pull request review: [5554](https://github.com/hackforla/website/pull/5554#pullrequestreview-1634420872) at 2023-09-19 06:38 PM PDT -pdimaano,2023-09-25T18:37:24Z,- pdimaano commented on pull request: [5580](https://github.com/hackforla/website/pull/5580#issuecomment-1734272626) at 2023-09-25 11:37 AM PDT -pdimaano,2023-09-25T22:29:14Z,- pdimaano submitted pull request review: [5580](https://github.com/hackforla/website/pull/5580#pullrequestreview-1643071842) at 2023-09-25 03:29 PM PDT -pdimaano,2023-10-02T18:29:56Z,- pdimaano commented on pull request: [5645](https://github.com/hackforla/website/pull/5645#issuecomment-1743536037) at 2023-10-02 11:29 AM PDT -pdimaano,2023-10-02T22:17:58Z,- pdimaano submitted pull request review: [5645](https://github.com/hackforla/website/pull/5645#pullrequestreview-1653598487) at 2023-10-02 03:17 PM PDT -pdimaano,2023-10-10T17:34:52Z,- pdimaano commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1755925541) at 2023-10-10 10:34 AM PDT -pdimaano,2023-10-11T22:47:23Z,- pdimaano submitted pull request review: [5690](https://github.com/hackforla/website/pull/5690#pullrequestreview-1672706023) at 2023-10-11 03:47 PM PDT -pdimaano,2023-10-16T22:37:10Z,- pdimaano commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1765378845) at 2023-10-16 03:37 PM PDT -pdimaano,2023-10-18T03:15:12Z,- pdimaano submitted pull request review: [5719](https://github.com/hackforla/website/pull/5719#pullrequestreview-1683865904) at 2023-10-17 08:15 PM PDT -pdimaano,2023-10-24T03:31:33Z,- pdimaano commented on pull request: [5768](https://github.com/hackforla/website/pull/5768#issuecomment-1776465349) at 2023-10-23 08:31 PM PDT -pdimaano,2023-10-25T00:48:41Z,- pdimaano submitted pull request review: [5768](https://github.com/hackforla/website/pull/5768#pullrequestreview-1696137129) at 2023-10-24 05:48 PM PDT -pdimaano,2023-10-30T16:59:29Z,- pdimaano commented on pull request: [5793](https://github.com/hackforla/website/pull/5793#issuecomment-1785666715) at 2023-10-30 09:59 AM PDT -pdimaano,2023-10-31T03:26:42Z,- pdimaano submitted pull request review: [5793](https://github.com/hackforla/website/pull/5793#pullrequestreview-1705378654) at 2023-10-30 08:26 PM PDT -pdimaano,2023-11-08T00:23:19Z,- pdimaano commented on pull request: [5877](https://github.com/hackforla/website/pull/5877#issuecomment-1800715805) at 2023-11-07 04:23 PM PST -pdimaano,2023-11-09T01:01:36Z,- pdimaano submitted pull request review: [5877](https://github.com/hackforla/website/pull/5877#pullrequestreview-1721520225) at 2023-11-08 05:01 PM PST -pdimaano,2023-11-13T19:30:55Z,- pdimaano commented on pull request: [5894](https://github.com/hackforla/website/pull/5894#issuecomment-1808891600) at 2023-11-13 11:30 AM PST -pdimaano,2023-11-15T01:06:48Z,- pdimaano submitted pull request review: [5894](https://github.com/hackforla/website/pull/5894#pullrequestreview-1731069518) at 2023-11-14 05:06 PM PST -pdimaano,2023-11-21T00:31:00Z,- pdimaano commented on pull request: [5925](https://github.com/hackforla/website/pull/5925#issuecomment-1820025326) at 2023-11-20 04:31 PM PST -pdimaano,2023-11-22T00:17:09Z,- pdimaano submitted pull request review: [5925](https://github.com/hackforla/website/pull/5925#pullrequestreview-1743360722) at 2023-11-21 04:17 PM PST -pdimaano,2023-11-27T18:21:59Z,- pdimaano commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1828382357) at 2023-11-27 10:21 AM PST -pdimaano,2023-11-28T00:50:42Z,- pdimaano submitted pull request review: [5937](https://github.com/hackforla/website/pull/5937#pullrequestreview-1751691017) at 2023-11-27 04:50 PM PST -pdimaano,2023-12-04T17:17:38Z,- pdimaano commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1839111266) at 2023-12-04 09:17 AM PST -pdimaano,2023-12-21T18:51:52Z,- pdimaano commented on pull request: [6014](https://github.com/hackforla/website/pull/6014#issuecomment-1866787266) at 2023-12-21 10:51 AM PST -pdimaano,2023-12-22T04:38:31Z,- pdimaano submitted pull request review: [6014](https://github.com/hackforla/website/pull/6014#pullrequestreview-1793962157) at 2023-12-21 08:38 PM PST -pdimaano,2024-01-02T18:32:13Z,- pdimaano commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1874394929) at 2024-01-02 10:32 AM PST -pdimaano,2024-01-05T06:06:44Z,- pdimaano submitted pull request review: [6025](https://github.com/hackforla/website/pull/6025#pullrequestreview-1805389889) at 2024-01-04 10:06 PM PST -pdimaano,2024-01-09T05:19:11Z,- pdimaano submitted pull request review: [6025](https://github.com/hackforla/website/pull/6025#pullrequestreview-1810418647) at 2024-01-08 09:19 PM PST -pdimaano,2024-01-24T18:43:04Z,- pdimaano commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1908717465) at 2024-01-24 10:43 AM PST -pdimaano,2024-01-26T01:24:18Z,- pdimaano submitted pull request review: [6149](https://github.com/hackforla/website/pull/6149#pullrequestreview-1844957728) at 2024-01-25 05:24 PM PST -pdimaano,2024-01-29T18:42:34Z,- pdimaano commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1915344223) at 2024-01-29 10:42 AM PST -pdimaano,2024-01-31T01:38:00Z,- pdimaano submitted pull request review: [6190](https://github.com/hackforla/website/pull/6190#pullrequestreview-1852741683) at 2024-01-30 05:38 PM PST -pdimaano,2024-02-06T04:09:39Z,- pdimaano commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1928751372) at 2024-02-05 08:09 PM PST -pdimaano,2024-02-09T04:45:26Z,- pdimaano submitted pull request review: [6241](https://github.com/hackforla/website/pull/6241#pullrequestreview-1871646696) at 2024-02-08 08:45 PM PST -pdimaano,2024-02-20T03:29:16Z,- pdimaano commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1953430149) at 2024-02-19 07:29 PM PST -pdimaano,2024-02-26T23:09:16Z,- pdimaano commented on pull request: [6374](https://github.com/hackforla/website/pull/6374#issuecomment-1965492442) at 2024-02-26 03:09 PM PST -pdimaano,2024-02-29T01:53:35Z,- pdimaano submitted pull request review: [6374](https://github.com/hackforla/website/pull/6374#pullrequestreview-1907790234) at 2024-02-28 05:53 PM PST -pdimaano,2024-03-11T17:15:44Z,- pdimaano commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1989001049) at 2024-03-11 10:15 AM PDT -pdimaano,2024-03-14T00:13:48Z,- pdimaano submitted pull request review: [6443](https://github.com/hackforla/website/pull/6443#pullrequestreview-1935426406) at 2024-03-13 05:13 PM PDT -pdimaano,2024-03-25T16:51:11Z,- pdimaano commented on pull request: [6518](https://github.com/hackforla/website/pull/6518#issuecomment-2018459262) at 2024-03-25 09:51 AM PDT -pdimaano,2024-03-27T03:59:33Z,- pdimaano submitted pull request review: [6518](https://github.com/hackforla/website/pull/6518#pullrequestreview-1962234893) at 2024-03-26 08:59 PM PDT -pdimaano,2024-04-08T21:17:11Z,- pdimaano commented on pull request: [6580](https://github.com/hackforla/website/pull/6580#issuecomment-2043657104) at 2024-04-08 02:17 PM PDT -pdimaano,2024-04-10T23:29:45Z,- pdimaano submitted pull request review: [6580](https://github.com/hackforla/website/pull/6580#pullrequestreview-1992846830) at 2024-04-10 04:29 PM PDT -pdimaano,2024-04-23T16:43:44Z,- pdimaano commented on pull request: [6711](https://github.com/hackforla/website/pull/6711#issuecomment-2072901101) at 2024-04-23 09:43 AM PDT -pdimaano,2024-04-25T02:48:01Z,- pdimaano submitted pull request review: [6711](https://github.com/hackforla/website/pull/6711#pullrequestreview-2021389592) at 2024-04-24 07:48 PM PDT -pdimaano,2024-05-06T19:17:30Z,- pdimaano commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2096734037) at 2024-05-06 12:17 PM PDT -pdimaano,2024-05-07T05:12:56Z,- pdimaano submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2042075914) at 2024-05-06 10:12 PM PDT -pdimaano,2024-05-09T23:25:59Z,- pdimaano submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2048997375) at 2024-05-09 04:25 PM PDT -pdimaano,2024-05-20T23:44:21Z,- pdimaano commented on pull request: [6865](https://github.com/hackforla/website/pull/6865#issuecomment-2121441947) at 2024-05-20 04:44 PM PDT -pdimaano,2024-05-28T17:54:52Z,- pdimaano commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2135819211) at 2024-05-28 10:54 AM PDT -pdimaano,2024-05-30T00:25:48Z,- pdimaano submitted pull request review: [6897](https://github.com/hackforla/website/pull/6897#pullrequestreview-2086882354) at 2024-05-29 05:25 PM PDT -pdimaano,2024-06-10T18:22:01Z,- pdimaano commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2159017038) at 2024-06-10 11:22 AM PDT -pdimaano,2024-06-13T18:39:42Z,- pdimaano submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2116650811) at 2024-06-13 11:39 AM PDT -perlaroyerc,3776,SKILLS ISSUE -perlaroyerc,2023-01-04T04:41:03Z,- perlaroyerc opened issue: [3776](https://github.com/hackforla/website/issues/3776) at 2023-01-03 08:41 PM PST -perlaroyerc,2023-01-25T04:01:19Z,- perlaroyerc assigned to issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1375118859) at 2023-01-24 08:01 PM PST -perlaroyerc,2023-02-02T18:00:27Z,- perlaroyerc assigned to issue: [3840](https://github.com/hackforla/website/issues/3840) at 2023-02-02 10:00 AM PST -perlaroyerc,2023-02-02T18:19:18Z,- perlaroyerc commented on issue: [3840](https://github.com/hackforla/website/issues/3840#issuecomment-1414171675) at 2023-02-02 10:19 AM PST -perlaroyerc,2023-02-03T21:32:58Z,- perlaroyerc opened pull request: [3930](https://github.com/hackforla/website/pull/3930) at 2023-02-03 01:32 PM PST -perlaroyerc,2023-02-06T20:40:27Z,- perlaroyerc pull request merged: [3930](https://github.com/hackforla/website/pull/3930#event-8451617413) at 2023-02-06 12:40 PM PST -perlaroyerc,2023-02-14T22:25:28Z,- perlaroyerc assigned to issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419735155) at 2023-02-14 02:25 PM PST -perlaroyerc,2023-02-14T22:28:38Z,- perlaroyerc commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1430465620) at 2023-02-14 02:28 PM PST -perlaroyerc,2023-02-17T19:54:53Z,- perlaroyerc opened pull request: [4002](https://github.com/hackforla/website/pull/4002) at 2023-02-17 11:54 AM PST -perlaroyerc,2023-02-20T22:21:47Z,- perlaroyerc pull request closed w/o merging: [4002](https://github.com/hackforla/website/pull/4002#event-8565308810) at 2023-02-20 02:21 PM PST -perlaroyerc,2023-02-20T22:22:34Z,- perlaroyerc opened pull request: [4016](https://github.com/hackforla/website/pull/4016) at 2023-02-20 02:22 PM PST -perlaroyerc,2023-02-20T22:23:22Z,- perlaroyerc pull request closed w/o merging: [4016](https://github.com/hackforla/website/pull/4016#event-8565316471) at 2023-02-20 02:23 PM PST -perlaroyerc,2023-02-22T01:17:15Z,- perlaroyerc opened pull request: [4022](https://github.com/hackforla/website/pull/4022) at 2023-02-21 05:17 PM PST -perlaroyerc,2023-02-23T08:21:57Z,- perlaroyerc pull request merged: [4022](https://github.com/hackforla/website/pull/4022#event-8588903008) at 2023-02-23 12:21 AM PST -perlaroyerc,2023-02-27T21:23:00Z,- perlaroyerc closed issue as completed: [3776](https://github.com/hackforla/website/issues/3776#event-8620461324) at 2023-02-27 01:23 PM PST -perlaroyerc,2023-03-01T19:02:02Z,- perlaroyerc assigned to issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428964280) at 2023-03-01 11:02 AM PST -perlaroyerc,2023-03-01T19:06:51Z,- perlaroyerc commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1450708743) at 2023-03-01 11:06 AM PST -perlaroyerc,2023-03-02T18:25:49Z,- perlaroyerc opened pull request: [4091](https://github.com/hackforla/website/pull/4091) at 2023-03-02 10:25 AM PST -perlaroyerc,2023-03-03T23:00:37Z,- perlaroyerc pull request merged: [4091](https://github.com/hackforla/website/pull/4091#event-8664206956) at 2023-03-03 03:00 PM PST -perlaroyerc,2023-03-09T19:36:38Z,- perlaroyerc commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1462664752) at 2023-03-09 11:36 AM PST -perlaroyerc,2023-03-09T21:25:55Z,- perlaroyerc submitted pull request review: [4140](https://github.com/hackforla/website/pull/4140#pullrequestreview-1333837931) at 2023-03-09 01:25 PM PST -perlaroyerc,2023-03-09T23:45:03Z,- perlaroyerc commented on pull request: [4143](https://github.com/hackforla/website/pull/4143#issuecomment-1463001449) at 2023-03-09 03:45 PM PST -perlaroyerc,2023-03-09T23:56:02Z,- perlaroyerc submitted pull request review: [4143](https://github.com/hackforla/website/pull/4143#pullrequestreview-1333984401) at 2023-03-09 03:56 PM PST -perlaroyerc,2023-03-10T00:02:25Z,- perlaroyerc assigned to issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1461220936) at 2023-03-09 04:02 PM PST -perlaroyerc,2023-03-10T00:06:08Z,- perlaroyerc commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1463016424) at 2023-03-09 04:06 PM PST -perlaroyerc,2023-03-11T01:59:23Z,- perlaroyerc commented on pull request: [4147](https://github.com/hackforla/website/pull/4147#issuecomment-1464784042) at 2023-03-10 06:59 PM PDT -perlaroyerc,2023-03-11T04:59:49Z,- perlaroyerc submitted pull request review: [4147](https://github.com/hackforla/website/pull/4147#pullrequestreview-1335820688) at 2023-03-10 09:59 PM PDT -perlaroyerc,2023-03-11T06:26:08Z,- perlaroyerc opened pull request: [4148](https://github.com/hackforla/website/pull/4148) at 2023-03-10 11:26 PM PDT -perlaroyerc,2023-03-11T06:27:59Z,- perlaroyerc commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1464841271) at 2023-03-10 11:27 PM PDT -perlaroyerc,2023-03-14T22:22:16Z,- perlaroyerc commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1468919695) at 2023-03-14 03:22 PM PDT -perlaroyerc,2023-03-14T22:27:34Z,- perlaroyerc commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1468924457) at 2023-03-14 03:27 PM PDT -perlaroyerc,2023-03-14T22:54:13Z,- perlaroyerc submitted pull request review: [4181](https://github.com/hackforla/website/pull/4181#pullrequestreview-1340403162) at 2023-03-14 03:54 PM PDT -perlaroyerc,2023-03-14T22:56:47Z,- perlaroyerc commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1468976078) at 2023-03-14 03:56 PM PDT -perlaroyerc,2023-03-14T23:18:02Z,- perlaroyerc submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1340421405) at 2023-03-14 04:18 PM PDT -perlaroyerc,2023-03-15T02:35:50Z,- perlaroyerc commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1469208921) at 2023-03-14 07:35 PM PDT -perlaroyerc,2023-03-15T03:10:45Z,- perlaroyerc submitted pull request review: [4179](https://github.com/hackforla/website/pull/4179#pullrequestreview-1340578649) at 2023-03-14 08:10 PM PDT -perlaroyerc,2023-03-16T19:20:20Z,- perlaroyerc pull request merged: [4148](https://github.com/hackforla/website/pull/4148#event-8771258188) at 2023-03-16 12:20 PM PDT -perlaroyerc,2023-03-16T21:21:34Z,- perlaroyerc commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472759301) at 2023-03-16 02:21 PM PDT -perlaroyerc,2023-03-17T15:17:34Z,- perlaroyerc commented on pull request: [4201](https://github.com/hackforla/website/pull/4201#issuecomment-1473999810) at 2023-03-17 08:17 AM PDT -perlaroyerc,2023-03-17T15:36:01Z,- perlaroyerc submitted pull request review: [4196](https://github.com/hackforla/website/pull/4196#pullrequestreview-1346187013) at 2023-03-17 08:36 AM PDT -perlaroyerc,2023-03-17T16:08:33Z,- perlaroyerc commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1474068606) at 2023-03-17 09:08 AM PDT -perlaroyerc,2023-03-17T16:19:53Z,- perlaroyerc submitted pull request review: [4201](https://github.com/hackforla/website/pull/4201#pullrequestreview-1346267404) at 2023-03-17 09:19 AM PDT -perlaroyerc,2023-03-17T16:48:30Z,- perlaroyerc submitted pull request review: [4199](https://github.com/hackforla/website/pull/4199#pullrequestreview-1346320062) at 2023-03-17 09:48 AM PDT -perlaroyerc,2023-03-20T17:40:46Z,- perlaroyerc commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1476669716) at 2023-03-20 10:40 AM PDT -perlaroyerc,2023-03-20T17:42:11Z,- perlaroyerc commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1476671567) at 2023-03-20 10:42 AM PDT -perlaroyerc,2023-03-21T01:25:25Z,- perlaroyerc submitted pull request review: [4215](https://github.com/hackforla/website/pull/4215#pullrequestreview-1349593506) at 2023-03-20 06:25 PM PDT -perlaroyerc,2023-03-21T01:43:04Z,- perlaroyerc submitted pull request review: [4214](https://github.com/hackforla/website/pull/4214#pullrequestreview-1349600866) at 2023-03-20 06:43 PM PDT -perlaroyerc,2023-03-28T17:10:41Z,- perlaroyerc assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1485992783) at 2023-03-28 10:10 AM PDT -perlaroyerc,2023-03-28T17:13:04Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1487307869) at 2023-03-28 10:13 AM PDT -perlaroyerc,2023-03-29T20:33:53Z,- perlaroyerc commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1489271296) at 2023-03-29 01:33 PM PDT -perlaroyerc,2023-03-30T15:56:26Z,- perlaroyerc commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1490546855) at 2023-03-30 08:56 AM PDT -perlaroyerc,2023-03-30T16:34:02Z,- perlaroyerc submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1365511194) at 2023-03-30 09:34 AM PDT -perlaroyerc,2023-03-30T21:52:49Z,- perlaroyerc submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1365988138) at 2023-03-30 02:52 PM PDT -perlaroyerc,2023-03-31T15:57:29Z,- perlaroyerc submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1367206186) at 2023-03-31 08:57 AM PDT -perlaroyerc,2023-04-03T17:51:52Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1494736853) at 2023-04-03 10:51 AM PDT -perlaroyerc,2023-04-18T20:44:59Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1513773289) at 2023-04-18 01:44 PM PDT -perlaroyerc,2023-05-23T15:42:25Z,- perlaroyerc unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1554142329) at 2023-05-23 08:42 AM PDT -peteplass,2020-03-31T00:41:22Z,- peteplass commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-606327830) at 2020-03-30 05:41 PM PDT -PeterSYoo,3637,SKILLS ISSUE -PeterSYoo,2022-10-19T02:19:29Z,- PeterSYoo opened issue: [3637](https://github.com/hackforla/website/issues/3637) at 2022-10-18 07:19 PM PDT -PeterSYoo,2022-10-19T02:51:28Z,- PeterSYoo assigned to issue: [3637](https://github.com/hackforla/website/issues/3637) at 2022-10-18 07:51 PM PDT -PeterSYoo,2022-10-24T03:22:28Z,- PeterSYoo assigned to issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1048429020) at 2022-10-23 08:22 PM PDT -PeterSYoo,2022-10-25T22:58:36Z,- PeterSYoo commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1291226431) at 2022-10-25 03:58 PM PDT -PeterSYoo,2022-10-25T23:36:42Z,- PeterSYoo opened pull request: [3660](https://github.com/hackforla/website/pull/3660) at 2022-10-25 04:36 PM PDT -PeterSYoo,2022-10-27T03:00:34Z,- PeterSYoo commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1292902980) at 2022-10-26 08:00 PM PDT -PeterSYoo,2022-10-27T03:01:52Z,- PeterSYoo commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1292903704) at 2022-10-26 08:01 PM PDT -PeterSYoo,2022-10-27T19:22:40Z,- PeterSYoo commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1293964181) at 2022-10-27 12:22 PM PDT -PeterSYoo,2022-10-27T21:48:43Z,- PeterSYoo commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1294113805) at 2022-10-27 02:48 PM PDT -PeterSYoo,2022-10-28T03:37:24Z,- PeterSYoo pull request merged: [3660](https://github.com/hackforla/website/pull/3660#event-7687749653) at 2022-10-27 08:37 PM PDT -PeterSYoo,2022-10-29T00:35:44Z,- PeterSYoo assigned to issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-10-28 05:35 PM PDT -PeterSYoo,2022-10-29T00:35:52Z,- PeterSYoo unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-10-28 05:35 PM PDT -PeterSYoo,2022-10-29T00:38:05Z,- PeterSYoo assigned to issue: [3206](https://github.com/hackforla/website/issues/3206#issuecomment-1145820493) at 2022-10-28 05:38 PM PDT -PeterSYoo,2022-10-29T00:48:27Z,- PeterSYoo commented on issue: [3206](https://github.com/hackforla/website/issues/3206#issuecomment-1295666514) at 2022-10-28 05:48 PM PDT -PeterSYoo,2022-10-29T01:32:53Z,- PeterSYoo opened pull request: [3673](https://github.com/hackforla/website/pull/3673) at 2022-10-28 06:32 PM PDT -PeterSYoo,2022-10-30T03:14:27Z,- PeterSYoo pull request merged: [3673](https://github.com/hackforla/website/pull/3673#event-7698169080) at 2022-10-29 08:14 PM PDT -PeterSYoo,2022-11-01T00:00:41Z,- PeterSYoo assigned to issue: [3619](https://github.com/hackforla/website/issues/3619) at 2022-10-31 05:00 PM PDT -PeterSYoo,2022-11-01T00:02:05Z,- PeterSYoo commented on issue: [3619](https://github.com/hackforla/website/issues/3619#issuecomment-1297832709) at 2022-10-31 05:02 PM PDT -PeterSYoo,2022-11-01T01:01:43Z,- PeterSYoo opened pull request: [3681](https://github.com/hackforla/website/pull/3681) at 2022-10-31 06:01 PM PDT -PeterSYoo,2022-11-01T01:12:59Z,- PeterSYoo commented on pull request: [3679](https://github.com/hackforla/website/pull/3679#issuecomment-1297879765) at 2022-10-31 06:12 PM PDT -PeterSYoo,2022-11-01T01:39:22Z,- PeterSYoo submitted pull request review: [3679](https://github.com/hackforla/website/pull/3679#pullrequestreview-1162731668) at 2022-10-31 06:39 PM PDT -PeterSYoo,2022-11-01T01:43:00Z,- PeterSYoo pull request merged: [3681](https://github.com/hackforla/website/pull/3681#event-7709349554) at 2022-10-31 06:43 PM PDT -PeterSYoo,2022-11-01T02:23:13Z,- PeterSYoo reopened pull request: [3681](https://github.com/hackforla/website/pull/3681#event-7709349554) at 2022-10-31 07:23 PM PDT -PeterSYoo,2022-11-01T02:23:58Z,- PeterSYoo commented on pull request: [3681](https://github.com/hackforla/website/pull/3681#issuecomment-1297934344) at 2022-10-31 07:23 PM PDT -PeterSYoo,2022-11-01T05:13:25Z,- PeterSYoo pull request merged: [3681](https://github.com/hackforla/website/pull/3681#event-7710191838) at 2022-10-31 10:13 PM PDT -PeterSYoo,2022-11-01T22:57:22Z,- PeterSYoo assigned to issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1292228745) at 2022-11-01 03:57 PM PDT -PeterSYoo,2022-11-01T22:58:52Z,- PeterSYoo commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1299329569) at 2022-11-01 03:58 PM PDT -PeterSYoo,2022-11-16T03:15:47Z,- PeterSYoo commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1316251336) at 2022-11-15 07:15 PM PST -PeterSYoo,2022-11-26T01:40:18Z,- PeterSYoo unassigned from issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1327102635) at 2022-11-25 05:40 PM PST -PeterSYoo,2022-11-27T19:25:00Z,- PeterSYoo commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1328321911) at 2022-11-27 11:25 AM PST -Pfulcher26,5772,SKILLS ISSUE -Pfulcher26,2023-10-25T02:35:05Z,- Pfulcher26 opened issue: [5772](https://github.com/hackforla/website/issues/5772) at 2023-10-24 07:35 PM PDT -Pfulcher26,2023-10-25T02:35:11Z,- Pfulcher26 assigned to issue: [5772](https://github.com/hackforla/website/issues/5772) at 2023-10-24 07:35 PM PDT -Pfulcher26,2023-11-03T02:35:33Z,- Pfulcher26 assigned to issue: [5805](https://github.com/hackforla/website/issues/5805) at 2023-11-02 07:35 PM PDT -Pfulcher26,2023-11-03T02:38:38Z,- Pfulcher26 commented on issue: [5805](https://github.com/hackforla/website/issues/5805#issuecomment-1791827793) at 2023-11-02 07:38 PM PDT -Pfulcher26,2023-11-03T03:28:17Z,- Pfulcher26 opened pull request: [5828](https://github.com/hackforla/website/pull/5828) at 2023-11-02 08:28 PM PDT -Pfulcher26,2023-11-03T19:12:24Z,- Pfulcher26 commented on pull request: [5828](https://github.com/hackforla/website/pull/5828#issuecomment-1792967661) at 2023-11-03 12:12 PM PDT -Pfulcher26,2023-11-05T18:36:53Z,- Pfulcher26 pull request merged: [5828](https://github.com/hackforla/website/pull/5828#event-10865571052) at 2023-11-05 10:36 AM PST -Pfulcher26,2023-11-16T02:45:43Z,- Pfulcher26 assigned to issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1800836971) at 2023-11-15 06:45 PM PST -Pfulcher26,2023-11-16T02:48:39Z,- Pfulcher26 commented on issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1813706491) at 2023-11-15 06:48 PM PST -Pfulcher26,2023-11-16T03:27:12Z,- Pfulcher26 opened pull request: [5910](https://github.com/hackforla/website/pull/5910) at 2023-11-15 07:27 PM PST -Pfulcher26,2023-11-16T03:29:42Z,- Pfulcher26 commented on issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1813735041) at 2023-11-15 07:29 PM PST -Pfulcher26,2023-11-19T22:19:23Z,- Pfulcher26 pull request merged: [5910](https://github.com/hackforla/website/pull/5910#event-11004735955) at 2023-11-19 02:19 PM PST -phunguyen1195,7839,SKILLS ISSUE -phunguyen1195,2025-01-21T04:21:11Z,- phunguyen1195 opened issue: [7839](https://github.com/hackforla/website/issues/7839) at 2025-01-20 08:21 PM PST -phunguyen1195,2025-01-21T04:21:33Z,- phunguyen1195 assigned to issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603626688) at 2025-01-20 08:21 PM PST -phunguyen1195,2025-01-21T04:21:52Z,- phunguyen1195 unassigned from issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603626688) at 2025-01-20 08:21 PM PST -phunguyen1195,2025-01-21T04:23:48Z,- phunguyen1195 assigned to issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603626688) at 2025-01-20 08:23 PM PST -phunguyen1195,2025-01-21T05:10:09Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603670042) at 2025-01-20 09:10 PM PST -phunguyen1195,2025-01-22T03:50:17Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2606228388) at 2025-01-21 07:50 PM PST -phunguyen1195,2025-01-22T05:18:50Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2606319661) at 2025-01-21 09:18 PM PST -phunguyen1195,2025-01-23T00:38:57Z,- phunguyen1195 assigned to issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2499323801) at 2025-01-22 04:38 PM PST -phunguyen1195,2025-01-23T01:16:09Z,- phunguyen1195 commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2608637994) at 2025-01-22 05:16 PM PST -phunguyen1195,2025-01-23T01:29:12Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2608650649) at 2025-01-22 05:29 PM PST -phunguyen1195,2025-01-23T01:44:09Z,- phunguyen1195 opened pull request: [7846](https://github.com/hackforla/website/pull/7846) at 2025-01-22 05:44 PM PST -phunguyen1195,2025-01-26T18:51:55Z,- phunguyen1195 pull request merged: [7846](https://github.com/hackforla/website/pull/7846#event-16070813679) at 2025-01-26 10:51 AM PST -phunguyen1195,2025-01-27T00:48:34Z,- phunguyen1195 assigned to issue: [7567](https://github.com/hackforla/website/issues/7567) at 2025-01-26 04:48 PM PST -phunguyen1195,2025-01-27T00:53:40Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2614674591) at 2025-01-26 04:53 PM PST -phunguyen1195,2025-01-27T00:57:44Z,- phunguyen1195 commented on issue: [7567](https://github.com/hackforla/website/issues/7567#issuecomment-2614677060) at 2025-01-26 04:57 PM PST -phunguyen1195,2025-01-27T01:06:54Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2614683131) at 2025-01-26 05:06 PM PST -phunguyen1195,2025-01-27T01:47:58Z,- phunguyen1195 opened pull request: [7856](https://github.com/hackforla/website/pull/7856) at 2025-01-26 05:47 PM PST -phunguyen1195,2025-01-27T01:52:26Z,- phunguyen1195 commented on issue: [7567](https://github.com/hackforla/website/issues/7567#issuecomment-2614714495) at 2025-01-26 05:52 PM PST -phunguyen1195,2025-01-27T01:53:20Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2614715111) at 2025-01-26 05:53 PM PST -phunguyen1195,2025-01-31T00:41:20Z,- phunguyen1195 pull request merged: [7856](https://github.com/hackforla/website/pull/7856#event-16132259741) at 2025-01-30 04:41 PM PST -phunguyen1195,2025-01-31T01:00:24Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2626049740) at 2025-01-30 05:00 PM PST -phunguyen1195,2025-02-04T01:44:25Z,- phunguyen1195 commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2632570929) at 2025-02-03 05:44 PM PST -phunguyen1195,2025-02-07T00:35:51Z,- phunguyen1195 submitted pull request review: [7880](https://github.com/hackforla/website/pull/7880#pullrequestreview-2600473581) at 2025-02-06 04:35 PM PST -phunguyen1195,2025-02-07T00:42:53Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2641527618) at 2025-02-06 04:42 PM PST -phunguyen1195,2025-02-07T01:10:36Z,- phunguyen1195 submitted pull request review: [7900](https://github.com/hackforla/website/pull/7900#pullrequestreview-2600526158) at 2025-02-06 05:10 PM PST -phunguyen1195,2025-02-07T01:16:34Z,- phunguyen1195 commented on pull request: [7899](https://github.com/hackforla/website/pull/7899#issuecomment-2641589691) at 2025-02-06 05:16 PM PST -phunguyen1195,2025-02-07T01:16:55Z,- phunguyen1195 commented on pull request: [7898](https://github.com/hackforla/website/pull/7898#issuecomment-2641591133) at 2025-02-06 05:16 PM PST -phunguyen1195,2025-02-07T14:36:23Z,- phunguyen1195 submitted pull request review: [7900](https://github.com/hackforla/website/pull/7900#pullrequestreview-2601907423) at 2025-02-07 06:36 AM PST -phunguyen1195,2025-03-01T15:56:08Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2692294015) at 2025-03-01 07:56 AM PST -phunguyen1195,2025-04-18T07:19:37Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2814761188) at 2025-04-18 12:19 AM PDT -phuonguvan,2993,SKILLS ISSUE -phuonguvan,2022-03-20T17:07:48Z,- phuonguvan opened issue: [2993](https://github.com/hackforla/website/issues/2993) at 2022-03-20 10:07 AM PDT -phuonguvan,2022-03-24T09:33:02Z,- phuonguvan commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077420926) at 2022-03-24 02:33 AM PDT -phuonguvan,2022-03-24T10:03:42Z,- phuonguvan commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-1077450405) at 2022-03-24 03:03 AM PDT -phuonguvan,2022-03-24T10:09:58Z,- phuonguvan commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1077456402) at 2022-03-24 03:09 AM PDT -phuonguvan,2022-03-24T10:19:05Z,- phuonguvan commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1077464694) at 2022-03-24 03:19 AM PDT -phuonguvan,2022-03-24T10:20:04Z,- phuonguvan commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1077465560) at 2022-03-24 03:20 AM PDT -phuonguvan,2022-03-24T10:25:44Z,- phuonguvan commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1077470719) at 2022-03-24 03:25 AM PDT -phuonguvan,2022-03-24T10:29:08Z,- phuonguvan commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1077473845) at 2022-03-24 03:29 AM PDT -phuonguvan,2022-03-24T10:31:01Z,- phuonguvan commented on issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-1077475652) at 2022-03-24 03:31 AM PDT -phuonguvan,2022-03-24T10:38:42Z,- phuonguvan commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1077482451) at 2022-03-24 03:38 AM PDT -phuonguvan,2022-03-24T10:51:08Z,- phuonguvan commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1077493208) at 2022-03-24 03:51 AM PDT -phuonguvan,2022-03-24T19:31:21Z,- phuonguvan assigned to issue: [2993](https://github.com/hackforla/website/issues/2993#issuecomment-1073293085) at 2022-03-24 12:31 PM PDT -phuonguvan,2022-03-26T17:26:41Z,- phuonguvan assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-26 10:26 AM PDT -phuonguvan,2022-03-27T08:32:44Z,- phuonguvan assigned to issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-999090470) at 2022-03-27 01:32 AM PDT -phuonguvan,2022-03-27T09:49:10Z,- phuonguvan commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1079894210) at 2022-03-27 02:49 AM PDT -phuonguvan,2022-03-30T02:39:56Z,- phuonguvan unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-29 07:39 PM PDT -phuonguvan,2022-03-31T18:46:41Z,- phuonguvan commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1084978279) at 2022-03-31 11:46 AM PDT -phuonguvan,2022-03-31T18:51:41Z,- phuonguvan assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 11:51 AM PDT -phuonguvan,2022-03-31T19:39:55Z,- phuonguvan commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1085024712) at 2022-03-31 12:39 PM PDT -phuonguvan,2022-03-31T19:39:55Z,- phuonguvan closed issue as completed: [2936](https://github.com/hackforla/website/issues/2936#event-6346738332) at 2022-03-31 12:39 PM PDT -phuonguvan,2022-03-31T19:48:56Z,- phuonguvan unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 12:48 PM PDT -phuonguvan,2022-03-31T19:49:05Z,- phuonguvan assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 12:49 PM PDT -phuonguvan,2022-04-02T01:14:52Z,- phuonguvan unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1085525076) at 2022-04-01 06:14 PM PDT -phuonguvan,2022-04-03T17:17:26Z,- phuonguvan closed issue as completed: [2993](https://github.com/hackforla/website/issues/2993#event-6358546518) at 2022-04-03 10:17 AM PDT -phuonguvan,2022-04-07T09:12:06Z,- phuonguvan opened issue: [3034](https://github.com/hackforla/website/issues/3034) at 2022-04-07 02:12 AM PDT -phuonguvan,2022-04-07T10:17:22Z,- phuonguvan opened issue: [3035](https://github.com/hackforla/website/issues/3035) at 2022-04-07 03:17 AM PDT -phuonguvan,2022-04-10T17:23:34Z,- phuonguvan assigned to issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094331934) at 2022-04-10 10:23 AM PDT -phuonguvan,2022-04-14T19:50:27Z,- phuonguvan assigned to issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1035681718) at 2022-04-14 12:50 PM PDT -phuonguvan,2022-04-14T20:03:08Z,- phuonguvan commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1099576584) at 2022-04-14 01:03 PM PDT -phuonguvan,2022-04-14T20:29:36Z,- phuonguvan commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1099594508) at 2022-04-14 01:29 PM PDT -phuonguvan,2022-04-24T17:50:26Z,- phuonguvan closed issue as completed: [3066](https://github.com/hackforla/website/issues/3066#event-6486152874) at 2022-04-24 10:50 AM PDT -phuonguvan,2022-04-24T17:54:11Z,- phuonguvan assigned to issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-04-24 10:54 AM PDT -phuonguvan,2022-04-24T17:56:42Z,- phuonguvan unassigned from issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-04-24 10:56 AM PDT -phuonguvan,2022-05-04T07:11:58Z,- phuonguvan commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1116995046) at 2022-05-04 12:11 AM PDT -phuonguvan,2022-05-10T11:13:12Z,- phuonguvan opened issue: [3117](https://github.com/hackforla/website/issues/3117) at 2022-05-10 04:13 AM PDT -phuonguvan,2022-05-10T21:28:50Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1122888424) at 2022-05-10 02:28 PM PDT -phuonguvan,2022-05-15T16:53:53Z,- phuonguvan opened issue: [3141](https://github.com/hackforla/website/issues/3141) at 2022-05-15 09:53 AM PDT -phuonguvan,2022-05-18T08:18:05Z,- phuonguvan assigned to issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1029717143) at 2022-05-18 01:18 AM PDT -phuonguvan,2022-05-31T08:40:05Z,- phuonguvan opened pull request: [3184](https://github.com/hackforla/website/pull/3184) at 2022-05-31 01:40 AM PDT -phuonguvan,2022-06-01T08:06:48Z,- phuonguvan opened issue: [3191](https://github.com/hackforla/website/issues/3191) at 2022-06-01 01:06 AM PDT -phuonguvan,2022-06-01T23:13:50Z,- phuonguvan pull request merged: [3184](https://github.com/hackforla/website/pull/3184#event-6723786346) at 2022-06-01 04:13 PM PDT -phuonguvan,2022-06-08T22:33:35Z,- phuonguvan closed issue as completed: [3141](https://github.com/hackforla/website/issues/3141#event-6773500519) at 2022-06-08 03:33 PM PDT -phuonguvan,2022-06-08T23:15:28Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1150505946) at 2022-06-08 04:15 PM PDT -phuonguvan,2022-06-22T23:12:29Z,- phuonguvan opened issue: [3289](https://github.com/hackforla/website/issues/3289) at 2022-06-22 04:12 PM PDT -phuonguvan,2022-06-30T04:13:45Z,- phuonguvan commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1170734961) at 2022-06-29 09:13 PM PDT -phuonguvan,2022-06-30T04:17:57Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1170737265) at 2022-06-29 09:17 PM PDT -phuonguvan,2022-06-30T07:01:14Z,- phuonguvan commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1170843586) at 2022-06-30 12:01 AM PDT -phuonguvan,2022-07-07T19:35:27Z,- phuonguvan commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1178130768) at 2022-07-07 12:35 PM PDT -phuonguvan,2022-07-27T21:35:08Z,- phuonguvan opened issue: [3434](https://github.com/hackforla/website/issues/3434) at 2022-07-27 02:35 PM PDT -phuonguvan,2022-08-03T21:47:09Z,- phuonguvan commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1204518870) at 2022-08-03 02:47 PM PDT -phuonguvan,2022-08-03T23:03:56Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1204566847) at 2022-08-03 04:03 PM PDT -phuonguvan,2022-08-11T04:39:10Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1211546976) at 2022-08-10 09:39 PM PDT -phuonguvan,2022-08-11T07:06:09Z,- phuonguvan opened issue: [3461](https://github.com/hackforla/website/issues/3461) at 2022-08-11 12:06 AM PDT -phuonguvan,2022-09-01T19:46:20Z,- phuonguvan assigned to issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1211624237) at 2022-09-01 12:46 PM PDT -phuonguvan,2022-09-08T05:23:27Z,- phuonguvan commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1240234765) at 2022-09-07 10:23 PM PDT -phuonguvan,2022-09-08T06:09:08Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240262898) at 2022-09-07 11:09 PM PDT -phuonguvan,2022-09-08T06:19:06Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2022-09-07 11:19 PM PDT -phuonguvan,2022-09-08T06:24:42Z,- phuonguvan opened issue: [3522](https://github.com/hackforla/website/issues/3522) at 2022-09-07 11:24 PM PDT -phuonguvan,2022-09-08T06:26:52Z,- phuonguvan opened issue: [3523](https://github.com/hackforla/website/issues/3523) at 2022-09-07 11:26 PM PDT -phuonguvan,2022-09-08T06:31:28Z,- phuonguvan opened issue: [3524](https://github.com/hackforla/website/issues/3524) at 2022-09-07 11:31 PM PDT -phuonguvan,2022-09-08T06:34:54Z,- phuonguvan opened issue: [3525](https://github.com/hackforla/website/issues/3525) at 2022-09-07 11:34 PM PDT -phuonguvan,2022-09-08T06:37:29Z,- phuonguvan opened issue: [3526](https://github.com/hackforla/website/issues/3526) at 2022-09-07 11:37 PM PDT -phuonguvan,2022-09-08T06:40:20Z,- phuonguvan opened issue: [3527](https://github.com/hackforla/website/issues/3527) at 2022-09-07 11:40 PM PDT -phuonguvan,2022-09-08T06:41:43Z,- phuonguvan opened issue: [3528](https://github.com/hackforla/website/issues/3528) at 2022-09-07 11:41 PM PDT -phuonguvan,2022-09-08T06:42:52Z,- phuonguvan opened issue: [3529](https://github.com/hackforla/website/issues/3529) at 2022-09-07 11:42 PM PDT -phuonguvan,2022-09-14T04:29:34Z,- phuonguvan opened issue: [3555](https://github.com/hackforla/website/issues/3555) at 2022-09-13 09:29 PM PDT -phuonguvan,2022-10-12T16:55:52Z,- phuonguvan unassigned from issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1276470868) at 2022-10-12 09:55 AM PDT -phuonguvan,2022-11-16T17:39:03Z,- phuonguvan unassigned from issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1029717143) at 2022-11-16 09:39 AM PST -phuonguvan,2022-11-20T18:44:20Z,- phuonguvan unassigned from issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1319637015) at 2022-11-20 10:44 AM PST -phuonguvan,2023-01-09T03:43:32Z,- phuonguvan unassigned from issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2023-01-08 07:43 PM PST -phuongv8,3917,SKILLS ISSUE -phuongv8,2023-02-01T05:00:07Z,- phuongv8 opened issue: [3917](https://github.com/hackforla/website/issues/3917) at 2023-01-31 09:00 PM PST -phuongv8,2023-02-01T05:00:08Z,- phuongv8 assigned to issue: [3917](https://github.com/hackforla/website/issues/3917) at 2023-01-31 09:00 PM PST -phuongv8,2023-02-04T01:04:20Z,- phuongv8 commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1416572221) at 2023-02-03 05:04 PM PST -phuongv8,2023-03-17T02:23:24Z,- phuongv8 commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1473019539) at 2023-03-16 07:23 PM PDT -phuongv8,2023-03-18T21:30:11Z,- phuongv8 assigned to issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1473089388) at 2023-03-18 02:30 PM PDT -phuongv8,2023-03-18T21:35:14Z,- phuongv8 commented on issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1475000440) at 2023-03-18 02:35 PM PDT -phuongv8,2023-03-18T21:46:57Z,- phuongv8 opened pull request: [4208](https://github.com/hackforla/website/pull/4208) at 2023-03-18 02:46 PM PDT -phuongv8,2023-03-18T21:48:59Z,- phuongv8 commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1475003674) at 2023-03-18 02:48 PM PDT -phuongv8,2023-03-18T23:02:49Z,- phuongv8 closed issue as completed: [3917](https://github.com/hackforla/website/issues/3917#event-8786355309) at 2023-03-18 04:02 PM PDT -phuongv8,2023-03-21T17:50:11Z,- phuongv8 commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1478341528) at 2023-03-21 10:50 AM PDT -phuongv8,2023-03-23T21:48:49Z,- phuongv8 pull request merged: [4208](https://github.com/hackforla/website/pull/4208#event-8832793036) at 2023-03-23 02:48 PM PDT -piecanoe,5775,SKILLS ISSUE -piecanoe,2023-10-25T02:48:07Z,- piecanoe opened issue: [5775](https://github.com/hackforla/website/issues/5775) at 2023-10-24 07:48 PM PDT -piecanoe,2023-10-25T03:15:30Z,- piecanoe assigned to issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1778417484) at 2023-10-24 08:15 PM PDT -piecanoe,2023-12-12T08:09:15Z,- piecanoe assigned to issue: [5819](https://github.com/hackforla/website/issues/5819#issuecomment-1788512688) at 2023-12-12 12:09 AM PST -piecanoe,2023-12-12T08:59:14Z,- piecanoe opened pull request: [6003](https://github.com/hackforla/website/pull/6003) at 2023-12-12 12:59 AM PST -piecanoe,2023-12-14T17:20:47Z,- piecanoe commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1856261333) at 2023-12-14 09:20 AM PST -piecanoe,2023-12-14T17:29:11Z,- piecanoe commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1856273077) at 2023-12-14 09:29 AM PST -piecanoe,2023-12-15T14:42:53Z,- piecanoe pull request merged: [6003](https://github.com/hackforla/website/pull/6003#event-11260386234) at 2023-12-15 06:42 AM PST -piecanoe,2024-01-18T19:45:57Z,- piecanoe closed issue as completed: [5775](https://github.com/hackforla/website/issues/5775#event-11529435333) at 2024-01-18 11:45 AM PST -piecanoe,2024-01-18T20:23:54Z,- piecanoe assigned to issue: [6126](https://github.com/hackforla/website/issues/6126) at 2024-01-18 12:23 PM PST -piecanoe,2024-01-18T20:43:16Z,- piecanoe opened pull request: [6130](https://github.com/hackforla/website/pull/6130) at 2024-01-18 12:43 PM PST -piecanoe,2024-01-18T20:48:09Z,- piecanoe commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1899181415) at 2024-01-18 12:48 PM PST -piecanoe,2024-01-21T21:35:42Z,- piecanoe commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1902773611) at 2024-01-21 01:35 PM PST -piecanoe,2024-01-24T17:15:57Z,- piecanoe pull request merged: [6130](https://github.com/hackforla/website/pull/6130#event-11587321370) at 2024-01-24 09:15 AM PST -piecanoe,2024-01-25T23:20:24Z,- piecanoe commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1911153723) at 2024-01-25 03:20 PM PST -piecanoe,2024-02-14T21:50:33Z,- piecanoe assigned to issue: [5987](https://github.com/hackforla/website/issues/5987) at 2024-02-14 01:50 PM PST -piecanoe,2024-02-14T22:30:32Z,- piecanoe commented on issue: [5987](https://github.com/hackforla/website/issues/5987#issuecomment-1944841193) at 2024-02-14 02:30 PM PST -piecanoe,2024-02-27T20:02:23Z,- piecanoe assigned to issue: [6373](https://github.com/hackforla/website/issues/6373) at 2024-02-27 12:02 PM PST -piecanoe,2024-02-27T20:38:45Z,- piecanoe opened pull request: [6384](https://github.com/hackforla/website/pull/6384) at 2024-02-27 12:38 PM PST -piecanoe,2024-02-27T20:41:01Z,- piecanoe commented on issue: [6373](https://github.com/hackforla/website/issues/6373#issuecomment-1967553393) at 2024-02-27 12:41 PM PST -piecanoe,2024-03-02T03:02:48Z,- piecanoe commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1974238882) at 2024-03-01 07:02 PM PST -piecanoe,2024-03-02T06:27:32Z,- piecanoe pull request merged: [6384](https://github.com/hackforla/website/pull/6384#event-11986603399) at 2024-03-01 10:27 PM PST -piecanoe,2024-05-08T21:13:26Z,- piecanoe assigned to issue: [6570](https://github.com/hackforla/website/issues/6570) at 2024-05-08 02:13 PM PDT -piecanoe,2024-05-15T23:35:09Z,- piecanoe commented on issue: [6570](https://github.com/hackforla/website/issues/6570#issuecomment-2113652556) at 2024-05-15 04:35 PM PDT -piecanoe,2024-07-05T16:11:05Z,- piecanoe assigned to issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1974983198) at 2024-07-05 09:11 AM PDT -piecanoe,2024-07-26T17:26:36Z,- piecanoe unassigned from issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-2211125026) at 2024-07-26 10:26 AM PDT -piecanoe,2024-08-23T18:21:02Z,- piecanoe assigned to issue: [7143](https://github.com/hackforla/website/issues/7143) at 2024-08-23 11:21 AM PDT -piecanoe,2024-08-27T16:26:10Z,- piecanoe commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2313017457) at 2024-08-27 09:26 AM PDT -piecanoe,2024-09-03T20:06:24Z,- piecanoe commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2327341457) at 2024-09-03 01:06 PM PDT -pjpatel021,2708,SKILLS ISSUE -pjpatel021,2022-01-20T21:23:50Z,- pjpatel021 opened issue: [2708](https://github.com/hackforla/website/issues/2708) at 2022-01-20 01:23 PM PST -pjpatel021,2022-01-20T21:24:41Z,- pjpatel021 assigned to issue: [2708](https://github.com/hackforla/website/issues/2708#issuecomment-1017940306) at 2022-01-20 01:24 PM PST -pjpatel021,2022-01-20T21:37:49Z,- pjpatel021 assigned to issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1016465371) at 2022-01-20 01:37 PM PST -pjpatel021,2022-01-20T21:45:41Z,- pjpatel021 commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1017955130) at 2022-01-20 01:45 PM PST -pjpatel021,2022-01-20T21:46:46Z,- pjpatel021 closed issue as completed: [2708](https://github.com/hackforla/website/issues/2708#event-5928229047) at 2022-01-20 01:46 PM PST -pjpatel021,2022-01-29T06:51:28Z,- pjpatel021 commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1024850958) at 2022-01-28 10:51 PM PST -pjpatel021,2022-02-09T20:12:37Z,- pjpatel021 unassigned from issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1024850958) at 2022-02-09 12:12 PM PST -plang-psm,3511,SKILLS ISSUE -plang-psm,2022-08-31T03:09:34Z,- plang-psm opened issue: [3511](https://github.com/hackforla/website/issues/3511) at 2022-08-30 08:09 PM PDT -plang-psm,2022-08-31T03:47:51Z,- plang-psm assigned to issue: [3511](https://github.com/hackforla/website/issues/3511) at 2022-08-30 08:47 PM PDT -plang-psm,2022-08-31T04:08:35Z,- plang-psm assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-08-30 09:08 PM PDT -plang-psm,2022-08-31T04:22:21Z,- plang-psm unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1232437217) at 2022-08-30 09:22 PM PDT -plang-psm,2022-08-31T04:24:10Z,- plang-psm assigned to issue: [2831](https://github.com/hackforla/website/issues/2831#issuecomment-1047131306) at 2022-08-30 09:24 PM PDT -plang-psm,2022-08-31T04:26:30Z,- plang-psm commented on issue: [2831](https://github.com/hackforla/website/issues/2831#issuecomment-1232446729) at 2022-08-30 09:26 PM PDT -plang-psm,2022-09-01T23:43:26Z,- plang-psm opened pull request: [3515](https://github.com/hackforla/website/pull/3515) at 2022-09-01 04:43 PM PDT -plang-psm,2022-09-02T00:11:27Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1234930621) at 2022-09-01 05:11 PM PDT -plang-psm,2022-09-03T15:27:20Z,- plang-psm pull request merged: [3515](https://github.com/hackforla/website/pull/3515#event-7317225546) at 2022-09-03 08:27 AM PDT -plang-psm,2022-09-05T01:21:25Z,- plang-psm assigned to issue: [3097](https://github.com/hackforla/website/issues/3097#issuecomment-1116785375) at 2022-09-04 06:21 PM PDT -plang-psm,2022-09-05T01:23:32Z,- plang-psm commented on issue: [3097](https://github.com/hackforla/website/issues/3097#issuecomment-1236461319) at 2022-09-04 06:23 PM PDT -plang-psm,2022-09-05T01:45:36Z,- plang-psm opened pull request: [3519](https://github.com/hackforla/website/pull/3519) at 2022-09-04 06:45 PM PDT -plang-psm,2022-09-06T02:22:26Z,- plang-psm pull request merged: [3519](https://github.com/hackforla/website/pull/3519#event-7326375702) at 2022-09-05 07:22 PM PDT -plang-psm,2022-09-06T23:02:36Z,- plang-psm commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1238733867) at 2022-09-06 04:02 PM PDT -plang-psm,2022-09-06T23:05:53Z,- plang-psm commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1238735678) at 2022-09-06 04:05 PM PDT -plang-psm,2022-09-06T23:59:46Z,- plang-psm assigned to issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1237381656) at 2022-09-06 04:59 PM PDT -plang-psm,2022-09-07T00:08:29Z,- plang-psm commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1238766999) at 2022-09-06 05:08 PM PDT -plang-psm,2022-09-07T02:46:43Z,- plang-psm opened pull request: [3521](https://github.com/hackforla/website/pull/3521) at 2022-09-06 07:46 PM PDT -plang-psm,2022-09-08T20:57:34Z,- plang-psm commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1241225802) at 2022-09-08 01:57 PM PDT -plang-psm,2022-09-09T01:05:47Z,- plang-psm pull request merged: [3521](https://github.com/hackforla/website/pull/3521#event-7352440576) at 2022-09-08 06:05 PM PDT -plang-psm,2022-09-16T00:54:36Z,- plang-psm assigned to issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1163664110) at 2022-09-15 05:54 PM PDT -plang-psm,2022-09-16T00:55:38Z,- plang-psm commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1248797467) at 2022-09-15 05:55 PM PDT -plang-psm,2022-09-16T04:48:49Z,- plang-psm opened pull request: [3558](https://github.com/hackforla/website/pull/3558) at 2022-09-15 09:48 PM PDT -plang-psm,2022-09-16T04:55:26Z,- plang-psm commented on pull request: [3557](https://github.com/hackforla/website/pull/3557#issuecomment-1248918466) at 2022-09-15 09:55 PM PDT -plang-psm,2022-09-16T05:42:08Z,- plang-psm submitted pull request review: [3557](https://github.com/hackforla/website/pull/3557#pullrequestreview-1110117397) at 2022-09-15 10:42 PM PDT -plang-psm,2022-09-17T00:29:41Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1249958390) at 2022-09-16 05:29 PM PDT -plang-psm,2022-09-18T00:27:43Z,- plang-psm commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250162288) at 2022-09-17 05:27 PM PDT -plang-psm,2022-09-19T20:15:48Z,- plang-psm opened pull request: [3564](https://github.com/hackforla/website/pull/3564) at 2022-09-19 01:15 PM PDT -plang-psm,2022-09-19T20:19:57Z,- plang-psm pull request closed w/o merging: [3558](https://github.com/hackforla/website/pull/3558#event-7416718374) at 2022-09-19 01:19 PM PDT -plang-psm,2022-09-19T20:20:32Z,- plang-psm commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1251508451) at 2022-09-19 01:20 PM PDT -plang-psm,2022-09-21T02:57:32Z,- plang-psm closed issue as completed: [3511](https://github.com/hackforla/website/issues/3511#event-7426987232) at 2022-09-20 07:57 PM PDT -plang-psm,2022-09-23T17:52:52Z,- plang-psm pull request merged: [3564](https://github.com/hackforla/website/pull/3564#event-7449346733) at 2022-09-23 10:52 AM PDT -plang-psm,2022-09-30T02:07:49Z,- plang-psm assigned to issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-920303375) at 2022-09-29 07:07 PM PDT -plang-psm,2022-09-30T02:08:57Z,- plang-psm commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1263020286) at 2022-09-29 07:08 PM PDT -plang-psm,2022-09-30T02:36:22Z,- plang-psm commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1263034556) at 2022-09-29 07:36 PM PDT -plang-psm,2022-09-30T02:36:41Z,- plang-psm commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1263034717) at 2022-09-29 07:36 PM PDT -plang-psm,2022-09-30T03:06:28Z,- plang-psm submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1126196828) at 2022-09-29 08:06 PM PDT -plang-psm,2022-10-02T18:32:02Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1264705918) at 2022-10-02 11:32 AM PDT -plang-psm,2022-10-02T18:43:32Z,- plang-psm unassigned from issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1263020286) at 2022-10-02 11:43 AM PDT -plang-psm,2022-10-06T20:04:14Z,- plang-psm assigned to issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1255890741) at 2022-10-06 01:04 PM PDT -plang-psm,2022-10-06T20:07:08Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1270620171) at 2022-10-06 01:07 PM PDT -plang-psm,2022-10-06T20:23:03Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1270635660) at 2022-10-06 01:23 PM PDT -plang-psm,2022-10-06T20:40:53Z,- plang-psm commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1270653032) at 2022-10-06 01:40 PM PDT -plang-psm,2022-10-06T20:51:38Z,- plang-psm submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1133624080) at 2022-10-06 01:51 PM PDT -plang-psm,2022-10-06T20:52:29Z,- plang-psm submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1133624989) at 2022-10-06 01:52 PM PDT -plang-psm,2022-10-06T20:55:12Z,- plang-psm commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1270686250) at 2022-10-06 01:55 PM PDT -plang-psm,2022-10-09T18:32:40Z,- plang-psm commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1272602670) at 2022-10-09 11:32 AM PDT -plang-psm,2022-10-12T07:21:38Z,- plang-psm submitted pull request review: [3597](https://github.com/hackforla/website/pull/3597#pullrequestreview-1138564400) at 2022-10-12 12:21 AM PDT -plang-psm,2022-10-14T05:24:25Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1278500180) at 2022-10-13 10:24 PM PDT -plang-psm,2022-10-14T15:25:49Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1279152657) at 2022-10-14 08:25 AM PDT -plang-psm,2022-10-17T20:59:27Z,- plang-psm submitted pull request review: [3597](https://github.com/hackforla/website/pull/3597#pullrequestreview-1144804249) at 2022-10-17 01:59 PM PDT -plang-psm,2022-10-20T18:43:15Z,- plang-psm commented on pull request: [3643](https://github.com/hackforla/website/pull/3643#issuecomment-1285986923) at 2022-10-20 11:43 AM PDT -plang-psm,2022-10-20T18:45:10Z,- plang-psm submitted pull request review: [3643](https://github.com/hackforla/website/pull/3643#pullrequestreview-1149797296) at 2022-10-20 11:45 AM PDT -plang-psm,2022-11-01T22:22:37Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1299304102) at 2022-11-01 03:22 PM PDT -plang-psm,2022-11-01T23:19:03Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1299347037) at 2022-11-01 04:19 PM PDT -plang-psm,2022-11-01T23:29:52Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1299354106) at 2022-11-01 04:29 PM PDT -plang-psm,2022-11-01T23:31:45Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1299355237) at 2022-11-01 04:31 PM PDT -plang-psm,2022-11-09T02:53:23Z,- plang-psm commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1308131406) at 2022-11-08 06:53 PM PST -plang-psm,2022-11-13T01:35:17Z,- plang-psm commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312612831) at 2022-11-12 05:35 PM PST -plang-psm,2022-11-13T01:41:58Z,- plang-psm submitted pull request review: [3716](https://github.com/hackforla/website/pull/3716#pullrequestreview-1178178756) at 2022-11-12 05:41 PM PST -plang-psm,2022-11-16T00:20:53Z,- plang-psm commented on pull request: [3721](https://github.com/hackforla/website/pull/3721#issuecomment-1316072587) at 2022-11-15 04:20 PM PST -plang-psm,2022-11-16T00:21:27Z,- plang-psm commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316073087) at 2022-11-15 04:21 PM PST -plang-psm,2022-11-16T01:17:10Z,- plang-psm submitted pull request review: [3721](https://github.com/hackforla/website/pull/3721#pullrequestreview-1181753401) at 2022-11-15 05:17 PM PST -plang-psm,2022-11-16T01:49:04Z,- plang-psm submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1181772095) at 2022-11-15 05:49 PM PST -plang-psm,2022-11-17T22:43:33Z,- plang-psm commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1319304229) at 2022-11-17 02:43 PM PST -plang-psm,2022-11-27T20:30:31Z,- plang-psm assigned to issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333526) at 2022-11-27 12:30 PM PST -plang-psm,2022-11-27T20:53:17Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1328337458) at 2022-11-27 12:53 PM PST -plang-psm,2022-12-06T00:29:41Z,- plang-psm commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1338485243) at 2022-12-05 04:29 PM PST -plang-psm,2022-12-06T00:29:41Z,- plang-psm closed issue as completed: [3254](https://github.com/hackforla/website/issues/3254#event-7960554244) at 2022-12-05 04:29 PM PST -plang-psm,2022-12-06T02:40:56Z,- plang-psm commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1338648923) at 2022-12-05 06:40 PM PST -plang-psm,2023-01-19T17:54:57Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1397385007) at 2023-01-19 09:54 AM PST -plang-psm,2023-01-19T17:54:58Z,- plang-psm closed issue as completed: [3511](https://github.com/hackforla/website/issues/3511#event-8314691019) at 2023-01-19 09:54 AM PST -plang-psm,2023-01-21T22:57:23Z,- plang-psm opened issue: [3848](https://github.com/hackforla/website/issues/3848) at 2023-01-21 02:57 PM PST -plang-psm,2023-01-24T15:17:46Z,- plang-psm commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1402115633) at 2023-01-24 07:17 AM PST -plang-psm,2023-01-24T15:18:04Z,- plang-psm reopened pull request: [3850](https://github.com/hackforla/website/pull/3850#event-8345380637) at 2023-01-24 07:18 AM PST -plang-psm,2023-01-24T15:18:32Z,- plang-psm closed issue by PR 3850: [3396](https://github.com/hackforla/website/issues/3396#event-8345388931) at 2023-01-24 07:18 AM PST -plang-psm,2023-01-27T03:16:41Z,- plang-psm opened issue: [3882](https://github.com/hackforla/website/issues/3882) at 2023-01-26 07:16 PM PST -plang-psm,2023-02-06T20:40:29Z,- plang-psm closed issue by PR 3930: [3840](https://github.com/hackforla/website/issues/3840#event-8451617741) at 2023-02-06 12:40 PM PST -plang-psm,2023-02-07T18:41:07Z,- plang-psm opened issue: [3948](https://github.com/hackforla/website/issues/3948) at 2023-02-07 10:41 AM PST -plang-psm,2023-02-07T22:11:38Z,- plang-psm opened issue: [3950](https://github.com/hackforla/website/issues/3950) at 2023-02-07 02:11 PM PST -plang-psm,2023-02-07T22:19:03Z,- plang-psm opened issue: [3951](https://github.com/hackforla/website/issues/3951) at 2023-02-07 02:19 PM PST -plang-psm,2023-02-07T22:35:05Z,- plang-psm opened issue: [3952](https://github.com/hackforla/website/issues/3952) at 2023-02-07 02:35 PM PST -plang-psm,2023-02-07T22:48:27Z,- plang-psm opened issue: [3953](https://github.com/hackforla/website/issues/3953) at 2023-02-07 02:48 PM PST -plang-psm,2023-02-14T00:30:09Z,- plang-psm commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1428916537) at 2023-02-13 04:30 PM PST -plang-psm,2023-02-14T03:40:56Z,- plang-psm commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1429066289) at 2023-02-13 07:40 PM PST -plang-psm,2023-02-15T23:42:59Z,- plang-psm commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1432235972) at 2023-02-15 03:42 PM PST -plang-psm,2023-02-15T23:59:02Z,- plang-psm opened issue: [3986](https://github.com/hackforla/website/issues/3986) at 2023-02-15 03:59 PM PST -plang-psm,2023-02-16T00:09:00Z,- plang-psm opened issue: [3987](https://github.com/hackforla/website/issues/3987) at 2023-02-15 04:09 PM PST -plang-psm,2023-02-17T17:54:47Z,- plang-psm opened issue: [3997](https://github.com/hackforla/website/issues/3997) at 2023-02-17 09:54 AM PST -plang-psm,2023-02-17T18:00:54Z,- plang-psm opened issue: [3998](https://github.com/hackforla/website/issues/3998) at 2023-02-17 10:00 AM PST -plang-psm,2023-02-17T18:06:57Z,- plang-psm opened issue: [3999](https://github.com/hackforla/website/issues/3999) at 2023-02-17 10:06 AM PST -plang-psm,2023-02-17T18:32:21Z,- plang-psm opened issue: [4000](https://github.com/hackforla/website/issues/4000) at 2023-02-17 10:32 AM PST -plang-psm,2023-02-18T01:16:31Z,- plang-psm assigned to issue: [3959](https://github.com/hackforla/website/issues/3959) at 2023-02-17 05:16 PM PST -plang-psm,2023-02-18T01:18:31Z,- plang-psm commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1435438501) at 2023-02-17 05:18 PM PST -plang-psm,2023-02-19T05:05:21Z,- plang-psm opened issue: [4006](https://github.com/hackforla/website/issues/4006) at 2023-02-18 09:05 PM PST -plang-psm,2023-02-19T05:08:59Z,- plang-psm opened issue: [4007](https://github.com/hackforla/website/issues/4007) at 2023-02-18 09:08 PM PST -plang-psm,2023-02-19T05:13:05Z,- plang-psm opened issue: [4008](https://github.com/hackforla/website/issues/4008) at 2023-02-18 09:13 PM PST -plang-psm,2023-02-20T04:33:30Z,- plang-psm opened issue: [4012](https://github.com/hackforla/website/issues/4012) at 2023-02-19 08:33 PM PST -plang-psm,2023-02-20T04:37:28Z,- plang-psm opened issue: [4013](https://github.com/hackforla/website/issues/4013) at 2023-02-19 08:37 PM PST -plang-psm,2023-02-20T15:27:15Z,- plang-psm opened issue: [4014](https://github.com/hackforla/website/issues/4014) at 2023-02-20 07:27 AM PST -plang-psm,2023-02-20T15:40:55Z,- plang-psm opened issue: [4015](https://github.com/hackforla/website/issues/4015) at 2023-02-20 07:40 AM PST -plang-psm,2023-02-22T01:30:50Z,- plang-psm commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1439311227) at 2023-02-21 05:30 PM PST -plang-psm,2023-02-22T01:30:51Z,- plang-psm closed issue as completed: [3848](https://github.com/hackforla/website/issues/3848#event-8576290487) at 2023-02-21 05:30 PM PST -plang-psm,2023-02-22T04:32:03Z,- plang-psm commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1439424868) at 2023-02-21 08:32 PM PST -plang-psm,2023-02-23T06:11:20Z,- plang-psm commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1441256838) at 2023-02-22 10:11 PM PST -plang-psm,2023-02-23T06:11:20Z,- plang-psm closed issue as completed: [3274](https://github.com/hackforla/website/issues/3274#event-8588122186) at 2023-02-22 10:11 PM PST -plang-psm,2023-02-23T06:49:30Z,- plang-psm opened issue: [4028](https://github.com/hackforla/website/issues/4028) at 2023-02-22 10:49 PM PST -plang-psm,2023-02-25T19:10:13Z,- plang-psm opened issue: [4045](https://github.com/hackforla/website/issues/4045) at 2023-02-25 11:10 AM PST -plang-psm,2023-02-25T19:14:10Z,- plang-psm opened issue: [4046](https://github.com/hackforla/website/issues/4046) at 2023-02-25 11:14 AM PST -plang-psm,2023-02-25T19:18:51Z,- plang-psm opened issue: [4047](https://github.com/hackforla/website/issues/4047) at 2023-02-25 11:18 AM PST -plang-psm,2023-02-25T22:48:18Z,- plang-psm commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1445221249) at 2023-02-25 02:48 PM PST -plang-psm,2023-02-27T05:09:54Z,- plang-psm commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1445715829) at 2023-02-26 09:09 PM PST -plang-psm,2023-02-28T05:56:27Z,- plang-psm unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1445715829) at 2023-02-27 09:56 PM PST -plang-psm,2023-03-07T19:30:21Z,- plang-psm submitted pull request review: [4107](https://github.com/hackforla/website/pull/4107#pullrequestreview-1329367123) at 2023-03-07 11:30 AM PST -plang-psm,2023-03-07T19:30:37Z,- plang-psm closed issue by PR 4107: [3925](https://github.com/hackforla/website/issues/3925#event-8689636706) at 2023-03-07 11:30 AM PST -plang-psm,2023-03-11T22:56:38Z,- plang-psm submitted pull request review: [4147](https://github.com/hackforla/website/pull/4147#pullrequestreview-1335942893) at 2023-03-11 03:56 PM PDT -plang-psm,2023-03-11T22:56:50Z,- plang-psm closed issue by PR 4147: [4132](https://github.com/hackforla/website/issues/4132#event-8724766741) at 2023-03-11 03:56 PM PDT -plang-psm,2023-03-11T23:00:06Z,- plang-psm commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1465044989) at 2023-03-11 04:00 PM PDT -plang-psm,2023-03-11T23:11:01Z,- plang-psm submitted pull request review: [4144](https://github.com/hackforla/website/pull/4144#pullrequestreview-1335943858) at 2023-03-11 04:11 PM PDT -plang-psm,2023-03-28T22:14:10Z,- plang-psm submitted pull request review: [4295](https://github.com/hackforla/website/pull/4295#pullrequestreview-1361982290) at 2023-03-28 03:14 PM PDT -plang-psm,2023-03-28T22:14:18Z,- plang-psm closed issue by PR 4295: [4286](https://github.com/hackforla/website/issues/4286#event-8870068784) at 2023-03-28 03:14 PM PDT -plang-psm,2023-03-28T22:20:37Z,- plang-psm submitted pull request review: [4292](https://github.com/hackforla/website/pull/4292#pullrequestreview-1361989389) at 2023-03-28 03:20 PM PDT -plang-psm,2023-03-28T22:21:14Z,- plang-psm closed issue by PR 4292: [4287](https://github.com/hackforla/website/issues/4287#event-8870107831) at 2023-03-28 03:21 PM PDT -plang-psm,2023-03-28T22:51:40Z,- plang-psm submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1362016526) at 2023-03-28 03:51 PM PDT -plang-psm,2023-03-28T22:51:53Z,- plang-psm closed issue by PR 4290: [4268](https://github.com/hackforla/website/issues/4268#event-8870290202) at 2023-03-28 03:51 PM PDT -PLoiya,2021-08-12T02:32:08Z,- PLoiya commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-897300219) at 2021-08-11 07:32 PM PDT -PLoiya,2021-08-12T02:34:52Z,- PLoiya commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-897301136) at 2021-08-11 07:34 PM PDT -pluto-bell,7200,SKILLS ISSUE -pluto-bell,2024-08-06T02:46:41Z,- pluto-bell opened issue: [7200](https://github.com/hackforla/website/issues/7200) at 2024-08-05 07:46 PM PDT -pluto-bell,2024-08-06T02:49:09Z,- pluto-bell assigned to issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270267390) at 2024-08-05 07:49 PM PDT -pluto-bell,2024-08-06T03:08:52Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270298357) at 2024-08-05 08:08 PM PDT -pluto-bell,2024-08-06T03:10:49Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270299753) at 2024-08-05 08:10 PM PDT -pluto-bell,2024-08-06T03:32:39Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270315721) at 2024-08-05 08:32 PM PDT -pluto-bell,2024-08-06T03:39:12Z,- pluto-bell assigned to issue: [7191](https://github.com/hackforla/website/issues/7191) at 2024-08-05 08:39 PM PDT -pluto-bell,2024-08-06T03:44:26Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270324351) at 2024-08-05 08:44 PM PDT -pluto-bell,2024-08-06T19:06:06Z,- pluto-bell commented on issue: [7191](https://github.com/hackforla/website/issues/7191#issuecomment-2271958497) at 2024-08-06 12:06 PM PDT -pluto-bell,2024-08-06T19:07:48Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2271961375) at 2024-08-06 12:07 PM PDT -pluto-bell,2024-08-06T19:08:52Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2271963026) at 2024-08-06 12:08 PM PDT -pluto-bell,2024-08-06T19:14:23Z,- pluto-bell opened pull request: [7227](https://github.com/hackforla/website/pull/7227) at 2024-08-06 12:14 PM PDT -pluto-bell,2024-08-06T19:25:56Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2271991045) at 2024-08-06 12:25 PM PDT -pluto-bell,2024-08-09T02:00:40Z,- pluto-bell commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2277009978) at 2024-08-08 07:00 PM PDT -pluto-bell,2024-08-13T16:31:03Z,- pluto-bell commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2286659957) at 2024-08-13 09:31 AM PDT -pluto-bell,2024-08-14T01:31:08Z,- pluto-bell commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2287661476) at 2024-08-13 06:31 PM PDT -pluto-bell,2024-08-14T16:27:58Z,- pluto-bell pull request merged: [7227](https://github.com/hackforla/website/pull/7227#event-13883425869) at 2024-08-14 09:27 AM PDT -pluto-bell,2024-08-14T17:22:10Z,- pluto-bell opened issue: [7284](https://github.com/hackforla/website/issues/7284) at 2024-08-14 10:22 AM PDT -pluto-bell,2024-08-14T17:22:41Z,- pluto-bell closed issue as completed: [7284](https://github.com/hackforla/website/issues/7284#event-13884265772) at 2024-08-14 10:22 AM PDT -pluto-bell,2024-08-14T17:24:18Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2289397781) at 2024-08-14 10:24 AM PDT -pluto-bell,2024-08-14T17:35:01Z,- pluto-bell assigned to issue: [7254](https://github.com/hackforla/website/issues/7254) at 2024-08-14 10:35 AM PDT -pluto-bell,2024-08-14T17:56:39Z,- pluto-bell opened pull request: [7285](https://github.com/hackforla/website/pull/7285) at 2024-08-14 10:56 AM PDT -pluto-bell,2024-08-14T17:57:38Z,- pluto-bell commented on issue: [7254](https://github.com/hackforla/website/issues/7254#issuecomment-2289483214) at 2024-08-14 10:57 AM PDT -pluto-bell,2024-08-14T18:09:17Z,- pluto-bell submitted pull request review: [7255](https://github.com/hackforla/website/pull/7255#pullrequestreview-2238879293) at 2024-08-14 11:09 AM PDT -pluto-bell,2024-08-14T18:14:18Z,- pluto-bell submitted pull request review: [7257](https://github.com/hackforla/website/pull/7257#pullrequestreview-2238888030) at 2024-08-14 11:14 AM PDT -pluto-bell,2024-08-14T18:16:27Z,- pluto-bell submitted pull request review: [7258](https://github.com/hackforla/website/pull/7258#pullrequestreview-2238892317) at 2024-08-14 11:16 AM PDT -pluto-bell,2024-08-14T18:21:02Z,- pluto-bell submitted pull request review: [7261](https://github.com/hackforla/website/pull/7261#pullrequestreview-2238902809) at 2024-08-14 11:21 AM PDT -pluto-bell,2024-08-14T18:24:39Z,- pluto-bell submitted pull request review: [7263](https://github.com/hackforla/website/pull/7263#pullrequestreview-2238909928) at 2024-08-14 11:24 AM PDT -pluto-bell,2024-08-14T18:26:05Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2289551665) at 2024-08-14 11:26 AM PDT -pluto-bell,2024-08-14T20:45:16Z,- pluto-bell commented on pull request: [7285](https://github.com/hackforla/website/pull/7285#issuecomment-2289846142) at 2024-08-14 01:45 PM PDT -pluto-bell,2024-08-15T15:18:22Z,- pluto-bell pull request merged: [7285](https://github.com/hackforla/website/pull/7285#event-13897493715) at 2024-08-15 08:18 AM PDT -pluto-bell,2024-08-15T17:44:06Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2291841263) at 2024-08-15 10:44 AM PDT -pluto-bell,2024-08-15T17:45:32Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2291843311) at 2024-08-15 10:45 AM PDT -pluto-bell,2024-08-15T17:56:15Z,- pluto-bell assigned to issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2290397697) at 2024-08-15 10:56 AM PDT -pluto-bell,2024-08-15T18:03:08Z,- pluto-bell commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2291870332) at 2024-08-15 11:03 AM PDT -pluto-bell,2024-08-15T18:40:52Z,- pluto-bell opened issue: [7295](https://github.com/hackforla/website/issues/7295) at 2024-08-15 11:40 AM PDT -pluto-bell,2024-08-15T18:40:56Z,- pluto-bell assigned to issue: [7295](https://github.com/hackforla/website/issues/7295) at 2024-08-15 11:40 AM PDT -pluto-bell,2024-08-15T18:48:39Z,- pluto-bell opened pull request: [7296](https://github.com/hackforla/website/pull/7296) at 2024-08-15 11:48 AM PDT -pluto-bell,2024-08-15T18:57:06Z,- pluto-bell submitted pull request review: [7280](https://github.com/hackforla/website/pull/7280#pullrequestreview-2241120164) at 2024-08-15 11:57 AM PDT -pluto-bell,2024-08-15T18:58:40Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2292000060) at 2024-08-15 11:58 AM PDT -pluto-bell,2024-08-18T04:41:09Z,- pluto-bell closed issue as completed: [7295](https://github.com/hackforla/website/issues/7295#event-13921159974) at 2024-08-17 09:41 PM PDT -pluto-bell,2024-08-18T04:42:45Z,- pluto-bell closed issue as not planned: [7295](https://github.com/hackforla/website/issues/7295#event-13921161854) at 2024-08-17 09:42 PM PDT -pluto-bell,2024-08-18T04:43:46Z,- pluto-bell commented on issue: [7295](https://github.com/hackforla/website/issues/7295#issuecomment-2295111612) at 2024-08-17 09:43 PM PDT -pluto-bell,2024-08-18T04:52:02Z,- pluto-bell commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2295113296) at 2024-08-17 09:52 PM PDT -pluto-bell,2024-08-25T15:14:35Z,- pluto-bell pull request merged: [7296](https://github.com/hackforla/website/pull/7296#event-14004588470) at 2024-08-25 08:14 AM PDT -pluto-bell,2024-08-26T20:53:10Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2311074585) at 2024-08-26 01:53 PM PDT -pluto-bell,2024-08-26T21:32:24Z,- pluto-bell submitted pull request review: [7343](https://github.com/hackforla/website/pull/7343#pullrequestreview-2261688007) at 2024-08-26 02:32 PM PDT -pluto-bell,2024-08-26T21:35:44Z,- pluto-bell submitted pull request review: [7340](https://github.com/hackforla/website/pull/7340#pullrequestreview-2261692196) at 2024-08-26 02:35 PM PDT -pluto-bell,2024-08-26T21:46:05Z,- pluto-bell opened issue: [7351](https://github.com/hackforla/website/issues/7351) at 2024-08-26 02:46 PM PDT -pluto-bell,2024-08-26T21:47:20Z,- pluto-bell assigned to issue: [7266](https://github.com/hackforla/website/issues/7266#issuecomment-2282834886) at 2024-08-26 02:47 PM PDT -pluto-bell,2024-08-26T21:50:32Z,- pluto-bell opened issue: [7352](https://github.com/hackforla/website/issues/7352) at 2024-08-26 02:50 PM PDT -pluto-bell,2024-08-26T21:51:42Z,- pluto-bell opened issue: [7353](https://github.com/hackforla/website/issues/7353) at 2024-08-26 02:51 PM PDT -pluto-bell,2024-08-26T21:53:21Z,- pluto-bell opened issue: [7354](https://github.com/hackforla/website/issues/7354) at 2024-08-26 02:53 PM PDT -pluto-bell,2024-08-26T21:54:17Z,- pluto-bell opened issue: [7355](https://github.com/hackforla/website/issues/7355) at 2024-08-26 02:54 PM PDT -pluto-bell,2024-08-26T21:55:35Z,- pluto-bell opened issue: [7356](https://github.com/hackforla/website/issues/7356) at 2024-08-26 02:55 PM PDT -pluto-bell,2024-08-26T21:56:24Z,- pluto-bell opened issue: [7357](https://github.com/hackforla/website/issues/7357) at 2024-08-26 02:56 PM PDT -pluto-bell,2024-08-26T21:58:56Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2311174260) at 2024-08-26 02:58 PM PDT -pluto-bell,2024-08-26T22:05:20Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2311183597) at 2024-08-26 03:05 PM PDT -pluto-bell,2024-08-30T18:35:57Z,- pluto-bell assigned to issue: [7304](https://github.com/hackforla/website/issues/7304) at 2024-08-30 11:35 AM PDT -pluto-bell,2024-08-30T18:36:13Z,- pluto-bell unassigned from issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2322125583) at 2024-08-30 11:36 AM PDT -pluto-bell,2024-09-07T19:57:47Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2336424656) at 2024-09-07 12:57 PM PDT -pluto-bell,2024-09-16T17:17:47Z,- pluto-bell assigned to issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2345176234) at 2024-09-16 10:17 AM PDT -pluto-bell,2024-09-16T17:30:49Z,- pluto-bell commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2353509713) at 2024-09-16 10:30 AM PDT -pluto-bell,2024-10-13T23:53:32Z,- pluto-bell commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2409375762) at 2024-10-13 04:53 PM PDT -pluto-bell,2024-10-14T00:33:18Z,- pluto-bell opened pull request: [7589](https://github.com/hackforla/website/pull/7589) at 2024-10-13 05:33 PM PDT -pluto-bell,2024-10-14T00:34:41Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2409489675) at 2024-10-13 05:34 PM PDT -pluto-bell,2024-10-14T22:40:33Z,- pluto-bell assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-10-14 03:40 PM PDT -pluto-bell,2024-10-14T22:40:51Z,- pluto-bell unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2412459670) at 2024-10-14 03:40 PM PDT -pluto-bell,2024-10-14T22:54:37Z,- pluto-bell submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2367774828) at 2024-10-14 03:54 PM PDT -pluto-bell,2024-10-14T23:12:57Z,- pluto-bell submitted pull request review: [7591](https://github.com/hackforla/website/pull/7591#pullrequestreview-2367794157) at 2024-10-14 04:12 PM PDT -pluto-bell,2024-10-16T04:42:52Z,- pluto-bell commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2415719306) at 2024-10-15 09:42 PM PDT -pluto-bell,2024-10-19T18:27:08Z,- pluto-bell pull request merged: [7589](https://github.com/hackforla/website/pull/7589#event-14737376695) at 2024-10-19 11:27 AM PDT -pluto-bell,2024-10-21T19:15:01Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2427519119) at 2024-10-21 12:15 PM PDT -pluto-bell,2024-10-21T19:38:49Z,- pluto-bell submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2383155757) at 2024-10-21 12:38 PM PDT -pluto-bell,2024-10-21T19:39:39Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2427565941) at 2024-10-21 12:39 PM PDT -pluto-bell,2024-10-24T18:25:54Z,- pluto-bell submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2393433147) at 2024-10-24 11:25 AM PDT -pluto-bell,2024-10-24T21:20:42Z,- pluto-bell commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2436358224) at 2024-10-24 02:20 PM PDT -pluto-bell,2024-11-01T18:47:17Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2452409910) at 2024-11-01 11:47 AM PDT -pluto-bell,2024-11-19T00:45:04Z,- pluto-bell closed issue as completed: [7200](https://github.com/hackforla/website/issues/7200#event-15342212886) at 2024-11-18 04:45 PM PST -pm-daniel7,2025-05-18T22:17:51Z,- pm-daniel7 assigned to issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-05-18 03:17 PM PDT -PMKnight,3004,SKILLS ISSUE -PMKnight,2022-03-23T03:03:14Z,- PMKnight opened issue: [3004](https://github.com/hackforla/website/issues/3004) at 2022-03-22 08:03 PM PDT -PMKnight,2022-03-23T03:13:02Z,- PMKnight assigned to issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1075866062) at 2022-03-22 08:13 PM PDT -PMKnight,2022-04-10T17:56:50Z,- PMKnight assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1055941481) at 2022-04-10 10:56 AM PDT -PMKnight,2022-04-10T18:06:14Z,- PMKnight commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1094338621) at 2022-04-10 11:06 AM PDT -PMKnight,2022-04-10T18:07:59Z,- PMKnight commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1094338869) at 2022-04-10 11:07 AM PDT -PMKnight,2022-04-11T22:41:09Z,- PMKnight opened pull request: [3044](https://github.com/hackforla/website/pull/3044) at 2022-04-11 03:41 PM PDT -PMKnight,2022-04-12T16:27:13Z,- PMKnight commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096941513) at 2022-04-12 09:27 AM PDT -PMKnight,2022-05-28T07:28:33Z,- PMKnight pull request closed w/o merging: [3044](https://github.com/hackforla/website/pull/3044#event-6696585107) at 2022-05-28 12:28 AM PDT -PMKnight,2022-05-28T07:30:59Z,- PMKnight unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1119142364) at 2022-05-28 12:30 AM PDT -pogwon,2025-07-23T03:02:54Z,- pogwon opened issue: [8251](https://github.com/hackforla/website/issues/8251) at 2025-07-22 08:02 PM PDT -Pooja1672,2023-11-08T05:46:14Z,- Pooja1672 commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1801132124) at 2023-11-07 09:46 PM PST -poornaraob,2020-03-17T03:05:16Z,- poornaraob commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599853611) at 2020-03-16 08:05 PM PDT -poorvi4,2964,SKILLS ISSUE -poorvi4,2022-03-11T06:45:05Z,- poorvi4 opened issue: [2964](https://github.com/hackforla/website/issues/2964) at 2022-03-10 10:45 PM PST -poorvi4,2022-03-11T06:50:48Z,- poorvi4 assigned to issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1064822725) at 2022-03-10 10:50 PM PST -poorvi4,2022-03-15T04:57:16Z,- poorvi4 assigned to issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049454355) at 2022-03-14 09:57 PM PDT -poorvi4,2022-03-15T04:59:23Z,- poorvi4 unassigned from issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049454355) at 2022-03-14 09:59 PM PDT -poorvi4,2022-03-15T05:10:33Z,- poorvi4 assigned to issue: [2795](https://github.com/hackforla/website/issues/2795#issuecomment-1045520603) at 2022-03-14 10:10 PM PDT -poorvi4,2022-03-15T05:53:21Z,- poorvi4 opened pull request: [2983](https://github.com/hackforla/website/pull/2983) at 2022-03-14 10:53 PM PDT -poorvi4,2022-03-15T05:56:43Z,- poorvi4 commented on issue: [2795](https://github.com/hackforla/website/issues/2795#issuecomment-1067592181) at 2022-03-14 10:56 PM PDT -poorvi4,2022-03-18T15:10:54Z,- poorvi4 pull request merged: [2983](https://github.com/hackforla/website/pull/2983#event-6266877772) at 2022-03-18 08:10 AM PDT -poorvi4,2022-03-22T05:34:20Z,- poorvi4 submitted pull request review: [2979](https://github.com/hackforla/website/pull/2979#pullrequestreview-916680169) at 2022-03-21 10:34 PM PDT -poorvi4,2022-03-22T05:40:19Z,- poorvi4 assigned to issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1058629344) at 2022-03-21 10:40 PM PDT -poorvi4,2022-03-22T05:42:23Z,- poorvi4 commented on issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1074748323) at 2022-03-21 10:42 PM PDT -poorvi4,2022-03-22T06:01:46Z,- poorvi4 opened pull request: [3000](https://github.com/hackforla/website/pull/3000) at 2022-03-21 11:01 PM PDT -poorvi4,2022-03-22T18:24:22Z,- poorvi4 pull request merged: [3000](https://github.com/hackforla/website/pull/3000#event-6285813739) at 2022-03-22 11:24 AM PDT -poorvi4,2022-03-28T06:09:21Z,- poorvi4 assigned to issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1079776078) at 2022-03-27 11:09 PM PDT -poorvi4,2022-03-28T06:14:54Z,- poorvi4 commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1080242422) at 2022-03-27 11:14 PM PDT -poorvi4,2022-03-28T06:27:32Z,- poorvi4 unassigned from issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1080250796) at 2022-03-27 11:27 PM PDT -poorvi4,2022-03-28T06:34:51Z,- poorvi4 commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1080255931) at 2022-03-27 11:34 PM PDT -poorvi4,2022-03-28T06:36:42Z,- poorvi4 assigned to issue: [2764](https://github.com/hackforla/website/issues/2764#issuecomment-1035854914) at 2022-03-27 11:36 PM PDT -poorvi4,2022-03-28T06:37:53Z,- poorvi4 unassigned from issue: [2764](https://github.com/hackforla/website/issues/2764#issuecomment-1035854914) at 2022-03-27 11:37 PM PDT -poorvi4,2022-03-28T06:51:06Z,- poorvi4 assigned to issue: [2939](https://github.com/hackforla/website/issues/2939#issuecomment-1061530603) at 2022-03-27 11:51 PM PDT -poorvi4,2022-03-28T06:52:30Z,- poorvi4 commented on issue: [2939](https://github.com/hackforla/website/issues/2939#issuecomment-1080265999) at 2022-03-27 11:52 PM PDT -poorvi4,2022-04-07T06:36:19Z,- poorvi4 commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1091133534) at 2022-04-06 11:36 PM PDT -poorvi4,2022-04-10T23:41:53Z,- poorvi4 opened pull request: [3042](https://github.com/hackforla/website/pull/3042) at 2022-04-10 04:41 PM PDT -poorvi4,2022-04-13T02:39:20Z,- poorvi4 assigned to issue: [2221](https://github.com/hackforla/website/issues/2221) at 2022-04-12 07:39 PM PDT -poorvi4,2022-04-13T02:44:12Z,- poorvi4 commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1097493632) at 2022-04-12 07:44 PM PDT -poorvi4,2022-04-18T15:30:46Z,- poorvi4 pull request merged: [3042](https://github.com/hackforla/website/pull/3042#event-6448677544) at 2022-04-18 08:30 AM PDT -poorvi4,2022-04-24T00:41:32Z,- poorvi4 commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1107674235) at 2022-04-23 05:41 PM PDT -poorvi4,2022-04-24T00:48:28Z,- poorvi4 assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1003769340) at 2022-04-23 05:48 PM PDT -poorvi4,2022-04-24T00:54:48Z,- poorvi4 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1107675648) at 2022-04-23 05:54 PM PDT -poorvi4,2022-05-07T20:40:15Z,- poorvi4 unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1120285387) at 2022-05-07 01:40 PM PDT -poorvi4,2022-05-07T20:58:13Z,- poorvi4 unassigned from issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1120289117) at 2022-05-07 01:58 PM PDT -poorvi4,2022-05-28T23:15:25Z,- poorvi4 commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1140342150) at 2022-05-28 04:15 PM PDT -poorvi4,2022-07-18T01:13:18Z,- poorvi4 assigned to issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-912687694) at 2022-07-17 06:13 PM PDT -poorvi4,2022-07-18T01:15:55Z,- poorvi4 commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1186661978) at 2022-07-17 06:15 PM PDT -poorvi4,2022-07-20T03:34:52Z,- poorvi4 opened pull request: [3405](https://github.com/hackforla/website/pull/3405) at 2022-07-19 08:34 PM PDT -poorvi4,2022-07-20T03:38:45Z,- poorvi4 pull request closed w/o merging: [3405](https://github.com/hackforla/website/pull/3405#event-7025671766) at 2022-07-19 08:38 PM PDT -poorvi4,2022-07-20T03:39:21Z,- poorvi4 commented on pull request: [3405](https://github.com/hackforla/website/pull/3405#issuecomment-1189781531) at 2022-07-19 08:39 PM PDT -poorvi4,2022-07-22T07:43:03Z,- poorvi4 commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1192282401) at 2022-07-22 12:43 AM PDT -poorvi4,2022-07-25T04:44:46Z,- poorvi4 commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1193572858) at 2022-07-24 09:44 PM PDT -poorvi4,2022-07-25T05:24:58Z,- poorvi4 opened pull request: [3426](https://github.com/hackforla/website/pull/3426) at 2022-07-24 10:24 PM PDT -poorvi4,2022-07-27T02:40:39Z,- poorvi4 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1196202059) at 2022-07-26 07:40 PM PDT -poorvi4,2022-07-31T20:20:38Z,- poorvi4 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1200493184) at 2022-07-31 01:20 PM PDT -poorvi4,2022-07-31T21:02:01Z,- poorvi4 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1200499660) at 2022-07-31 02:02 PM PDT -poorvi4,2022-08-26T06:24:46Z,- poorvi4 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1228104084) at 2022-08-25 11:24 PM PDT -poorvi4,2022-08-30T03:27:19Z,- poorvi4 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1231096691) at 2022-08-29 08:27 PM PDT -poorvi4,2022-11-20T17:53:06Z,- poorvi4 pull request closed w/o merging: [3426](https://github.com/hackforla/website/pull/3426#event-7851917166) at 2022-11-20 09:53 AM PST -poorvi4,2023-03-28T00:23:02Z,- poorvi4 unassigned from issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1485584784) at 2023-03-27 05:23 PM PDT -PoppaRainmaker,5082,SKILLS ISSUE -PoppaRainmaker,2023-07-26T03:08:53Z,- PoppaRainmaker opened issue: [5082](https://github.com/hackforla/website/issues/5082) at 2023-07-25 08:08 PM PDT -PoppaRainmaker,2023-07-26T03:08:53Z,- PoppaRainmaker assigned to issue: [5082](https://github.com/hackforla/website/issues/5082) at 2023-07-25 08:08 PM PDT -PoppaRainmaker,2023-07-28T00:55:50Z,- PoppaRainmaker assigned to issue: [4799](https://github.com/hackforla/website/issues/4799) at 2023-07-27 05:55 PM PDT -PoppaRainmaker,2023-08-01T04:06:36Z,- PoppaRainmaker opened pull request: [5124](https://github.com/hackforla/website/pull/5124) at 2023-07-31 09:06 PM PDT -PoppaRainmaker,2023-08-12T02:00:09Z,- PoppaRainmaker commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1675615671) at 2023-08-11 07:00 PM PDT -PoppaRainmaker,2023-08-12T02:04:39Z,- PoppaRainmaker commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1675617739) at 2023-08-11 07:04 PM PDT -PoppaRainmaker,2023-08-16T06:05:37Z,- PoppaRainmaker pull request merged: [5124](https://github.com/hackforla/website/pull/5124#event-10104100392) at 2023-08-15 11:05 PM PDT -pradeeptosarkar,2023-09-05T12:19:54Z,- pradeeptosarkar opened pull request: [5446](https://github.com/hackforla/website/pull/5446) at 2023-09-05 05:19 AM PDT -pradeeptosarkar,2023-09-05T12:20:58Z,- pradeeptosarkar commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1706517458) at 2023-09-05 05:20 AM PDT -pradeeptosarkar,2023-09-05T15:59:53Z,- pradeeptosarkar pull request closed w/o merging: [5446](https://github.com/hackforla/website/pull/5446#event-10285554037) at 2023-09-05 08:59 AM PDT -pranit-yawalkar,2023-04-05T12:08:46Z,- pranit-yawalkar commented on issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1497382137) at 2023-04-05 05:08 AM PDT -pranit-yawalkar,2023-04-05T12:31:31Z,- pranit-yawalkar commented on issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1497410897) at 2023-04-05 05:31 AM PDT -pranjaliseth,6118,SKILLS ISSUE -pranjaliseth,2024-01-17T04:04:18Z,- pranjaliseth opened issue: [6118](https://github.com/hackforla/website/issues/6118) at 2024-01-16 08:04 PM PST -pranjaliseth,2024-01-17T04:06:37Z,- pranjaliseth assigned to issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1894902675) at 2024-01-16 08:06 PM PST -pranjaliseth,2024-03-01T05:30:14Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1972538124) at 2024-02-29 09:30 PM PST -pranjaliseth,2024-03-18T22:40:39Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2005173922) at 2024-03-18 03:40 PM PDT -pranjaliseth,2024-04-10T04:57:43Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2046539873) at 2024-04-09 09:57 PM PDT -pranjaliseth,2024-04-29T00:37:22Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2081723583) at 2024-04-28 05:37 PM PDT -pranjaliseth,2024-05-12T01:51:11Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2106086838) at 2024-05-11 06:51 PM PDT -pranjaliseth,2024-06-02T16:37:41Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2143933850) at 2024-06-02 09:37 AM PDT -pras4u,2020-12-23T05:48:09Z,- pras4u assigned to issue: [957](https://github.com/hackforla/website/issues/957) at 2020-12-22 09:48 PM PST -pras4u,2021-01-06T02:55:58Z,- pras4u commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-755043611) at 2021-01-05 06:55 PM PST -pras4u,2021-01-08T04:15:30Z,- pras4u commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-756535668) at 2021-01-07 08:15 PM PST -pras4u,2021-01-15T03:09:35Z,- pras4u commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-760615970) at 2021-01-14 07:09 PM PST -pras4u,2021-01-24T07:53:55Z,- pras4u unassigned from issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-766306063) at 2021-01-23 11:53 PM PST -pravintargaryen,2024-01-03T17:05:06Z,- pravintargaryen commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1875690198) at 2024-01-03 09:05 AM PST -praytoo,8190,SKILLS ISSUE -praytoo,2025-06-17T03:43:03Z,- praytoo opened issue: [8190](https://github.com/hackforla/website/issues/8190) at 2025-06-16 08:43 PM PDT -praytoo,2025-06-17T03:43:26Z,- praytoo assigned to issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2978823498) at 2025-06-16 08:43 PM PDT -praytoo,2025-06-19T02:26:03Z,- praytoo assigned to issue: [8010](https://github.com/hackforla/website/issues/8010) at 2025-06-18 07:26 PM PDT -praytoo,2025-06-19T03:17:37Z,- praytoo opened pull request: [8197](https://github.com/hackforla/website/pull/8197) at 2025-06-18 08:17 PM PDT -praytoo,2025-06-19T03:19:51Z,- praytoo closed issue by PR 8197: [8010](https://github.com/hackforla/website/issues/8010#event-18221732673) at 2025-06-18 08:19 PM PDT -praytoo,2025-06-19T16:26:08Z,- praytoo commented on issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2988639219) at 2025-06-19 09:26 AM PDT -praytoo,2025-06-19T16:49:27Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988685297) at 2025-06-19 09:49 AM PDT -praytoo,2025-06-19T16:52:18Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988690290) at 2025-06-19 09:52 AM PDT -praytoo,2025-06-19T17:00:26Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988704084) at 2025-06-19 10:00 AM PDT -praytoo,2025-06-19T17:25:59Z,- praytoo opened pull request: [8198](https://github.com/hackforla/website/pull/8198) at 2025-06-19 10:25 AM PDT -praytoo,2025-06-19T17:31:20Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2988772550) at 2025-06-19 10:31 AM PDT -praytoo,2025-06-20T16:41:30Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2992226511) at 2025-06-20 09:41 AM PDT -praytoo,2025-06-20T16:55:40Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992259410) at 2025-06-20 09:55 AM PDT -praytoo,2025-06-20T18:05:34Z,- praytoo pull request closed w/o merging: [8198](https://github.com/hackforla/website/pull/8198#event-18251840346) at 2025-06-20 11:05 AM PDT -praytoo,2025-06-20T18:06:30Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992419093) at 2025-06-20 11:06 AM PDT -praytoo,2025-06-21T17:03:28Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993675781) at 2025-06-21 10:03 AM PDT -praytoo,2025-06-21T18:37:55Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993715971) at 2025-06-21 11:37 AM PDT -praytoo,2025-06-22T01:40:30Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993866836) at 2025-06-21 06:40 PM PDT -praytoo,2025-06-22T17:18:39Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2994332057) at 2025-06-22 10:18 AM PDT -praytoo,2025-06-24T22:00:52Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002008932) at 2025-06-24 03:00 PM PDT -praytoo,2025-06-25T03:14:19Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002735289) at 2025-06-24 08:14 PM PDT -praytoo,2025-06-25T03:14:42Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002736108) at 2025-06-24 08:14 PM PDT -praytoo,2025-06-26T16:59:26Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3009140601) at 2025-06-26 09:59 AM PDT -praytoo,2025-06-27T15:22:53Z,- praytoo pull request merged: [8197](https://github.com/hackforla/website/pull/8197#event-18359871783) at 2025-06-27 08:22 AM PDT -praytoo,2025-06-28T18:43:10Z,- praytoo assigned to issue: [7380](https://github.com/hackforla/website/issues/7380) at 2025-06-28 11:43 AM PDT -praytoo,2025-06-28T20:21:42Z,- praytoo commented on issue: [7380](https://github.com/hackforla/website/issues/7380#issuecomment-3016014870) at 2025-06-28 01:21 PM PDT -praytoo,2025-06-28T20:32:09Z,- praytoo opened pull request: [8235](https://github.com/hackforla/website/pull/8235) at 2025-06-28 01:32 PM PDT -praytoo,2025-06-28T20:41:53Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-3016022495) at 2025-06-28 01:41 PM PDT -praytoo,2025-06-29T23:46:37Z,- praytoo commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3017284051) at 2025-06-29 04:46 PM PDT -praytoo,2025-07-01T01:10:51Z,- praytoo commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3021341054) at 2025-06-30 06:10 PM PDT -praytoo,2025-07-02T16:17:52Z,- praytoo pull request merged: [8235](https://github.com/hackforla/website/pull/8235#event-18435495217) at 2025-07-02 09:17 AM PDT -praytoo,2025-07-04T18:57:09Z,- praytoo assigned to issue: [7610](https://github.com/hackforla/website/issues/7610) at 2025-07-04 11:57 AM PDT -praytoo,2025-07-04T18:58:23Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037070572) at 2025-07-04 11:58 AM PDT -praytoo,2025-07-04T19:22:09Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037105300) at 2025-07-04 12:22 PM PDT -praytoo,2025-07-17T03:39:07Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3082341995) at 2025-07-16 08:39 PM PDT -priyanka02art,2024-10-29T22:04:21Z,- priyanka02art opened issue: [7662](https://github.com/hackforla/website/issues/7662) at 2024-10-29 03:04 PM PDT -priyanka02art,2024-10-29T22:17:00Z,- priyanka02art opened issue: [7663](https://github.com/hackforla/website/issues/7663) at 2024-10-29 03:17 PM PDT -priyanka02art,2024-10-29T22:27:23Z,- priyanka02art commented on issue: [7663](https://github.com/hackforla/website/issues/7663#issuecomment-2445441597) at 2024-10-29 03:27 PM PDT -priyanka02art,2024-10-29T22:28:56Z,- priyanka02art opened issue: [7664](https://github.com/hackforla/website/issues/7664) at 2024-10-29 03:28 PM PDT -priyanka02art,2024-10-29T22:36:40Z,- priyanka02art commented on issue: [7664](https://github.com/hackforla/website/issues/7664#issuecomment-2445452188) at 2024-10-29 03:36 PM PDT -priyanka02art,2024-10-29T22:54:55Z,- priyanka02art opened issue: [7666](https://github.com/hackforla/website/issues/7666) at 2024-10-29 03:54 PM PDT -priyanka02art,2024-10-29T23:09:30Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2445487004) at 2024-10-29 04:09 PM PDT -priyanka02art,2024-10-29T23:26:48Z,- priyanka02art opened issue: [7667](https://github.com/hackforla/website/issues/7667) at 2024-10-29 04:26 PM PDT -priyanka02art,2024-10-31T01:44:05Z,- priyanka02art opened issue: [7670](https://github.com/hackforla/website/issues/7670) at 2024-10-30 06:44 PM PDT -priyanka02art,2024-10-31T01:51:36Z,- priyanka02art commented on issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2448855690) at 2024-10-30 06:51 PM PDT -priyanka02art,2024-10-31T01:53:51Z,- priyanka02art opened issue: [7671](https://github.com/hackforla/website/issues/7671) at 2024-10-30 06:53 PM PDT -priyanka02art,2024-10-31T01:57:09Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2448860836) at 2024-10-30 06:57 PM PDT -priyanka02art,2024-10-31T01:59:19Z,- priyanka02art opened issue: [7672](https://github.com/hackforla/website/issues/7672) at 2024-10-30 06:59 PM PDT -priyanka02art,2024-10-31T02:13:02Z,- priyanka02art commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2448880563) at 2024-10-30 07:13 PM PDT -priyanka02art,2024-10-31T02:15:17Z,- priyanka02art opened issue: [7673](https://github.com/hackforla/website/issues/7673) at 2024-10-30 07:15 PM PDT -priyanka02art,2024-10-31T02:17:37Z,- priyanka02art opened issue: [7674](https://github.com/hackforla/website/issues/7674) at 2024-10-30 07:17 PM PDT -priyanka02art,2024-10-31T02:22:08Z,- priyanka02art commented on issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2448889060) at 2024-10-30 07:22 PM PDT -priyanka02art,2024-10-31T02:24:11Z,- priyanka02art opened issue: [7675](https://github.com/hackforla/website/issues/7675) at 2024-10-30 07:24 PM PDT -priyanka02art,2024-10-31T02:27:55Z,- priyanka02art commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2448894264) at 2024-10-30 07:27 PM PDT -priyanka02art,2024-10-31T02:52:24Z,- priyanka02art opened issue: [7676](https://github.com/hackforla/website/issues/7676) at 2024-10-30 07:52 PM PDT -priyanka02art,2024-10-31T02:55:12Z,- priyanka02art commented on issue: [7676](https://github.com/hackforla/website/issues/7676#issuecomment-2448918073) at 2024-10-30 07:55 PM PDT -priyanka02art,2024-10-31T02:55:40Z,- priyanka02art opened issue: [7677](https://github.com/hackforla/website/issues/7677) at 2024-10-30 07:55 PM PDT -priyanka02art,2024-10-31T03:05:51Z,- priyanka02art commented on issue: [7677](https://github.com/hackforla/website/issues/7677#issuecomment-2448926875) at 2024-10-30 08:05 PM PDT -priyanka02art,2024-10-31T03:11:54Z,- priyanka02art opened issue: [7678](https://github.com/hackforla/website/issues/7678) at 2024-10-30 08:11 PM PDT -priyanka02art,2024-10-31T07:45:06Z,- priyanka02art opened issue: [7679](https://github.com/hackforla/website/issues/7679) at 2024-10-31 12:45 AM PDT -priyanka02art,2024-10-31T07:50:21Z,- priyanka02art commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2449248779) at 2024-10-31 12:50 AM PDT -priyanka02art,2024-10-31T07:51:10Z,- priyanka02art opened issue: [7680](https://github.com/hackforla/website/issues/7680) at 2024-10-31 12:51 AM PDT -priyanka02art,2024-10-31T08:15:33Z,- priyanka02art commented on issue: [7680](https://github.com/hackforla/website/issues/7680#issuecomment-2449285602) at 2024-10-31 01:15 AM PDT -priyanka02art,2024-11-12T20:17:34Z,- priyanka02art commented on issue: [7664](https://github.com/hackforla/website/issues/7664#issuecomment-2471496092) at 2024-11-12 12:17 PM PST -priyanka02art,2024-11-12T20:23:38Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2471511005) at 2024-11-12 12:23 PM PST -priyanka02art,2025-02-11T22:05:20Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2652170176) at 2025-02-11 02:05 PM PST -priyanka02art,2025-02-12T19:45:14Z,- priyanka02art assigned to issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2652170176) at 2025-02-12 11:45 AM PST -priyanka02art,2025-03-05T21:18:45Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2702101760) at 2025-03-05 01:18 PM PST -priyanka02art,2025-03-11T03:26:27Z,- priyanka02art commented on issue: [7667](https://github.com/hackforla/website/issues/7667#issuecomment-2712475094) at 2025-03-10 08:26 PM PDT -priyanka02art,2025-03-11T08:46:35Z,- priyanka02art commented on issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2713184744) at 2025-03-11 01:46 AM PDT -priyanka02art,2025-03-11T17:24:02Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2715144631) at 2025-03-11 10:24 AM PDT -priyanka02art,2025-03-11T20:28:49Z,- priyanka02art commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2715632987) at 2025-03-11 01:28 PM PDT -priyanka02art,2025-03-11T20:44:36Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2715663713) at 2025-03-11 01:44 PM PDT -priyanka02art,2025-03-11T20:46:48Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2715668050) at 2025-03-11 01:46 PM PDT -priyanka02art,2025-03-11T20:50:16Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2715674674) at 2025-03-11 01:50 PM PDT -priyanka02art,2025-03-11T21:02:29Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2715701442) at 2025-03-11 02:02 PM PDT -priyanka02art,2025-03-24T19:52:09Z,- priyanka02art commented on issue: [7673](https://github.com/hackforla/website/issues/7673#issuecomment-2749239177) at 2025-03-24 12:52 PM PDT -priyanka02art,2025-03-24T21:28:49Z,- priyanka02art commented on issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2749442492) at 2025-03-24 02:28 PM PDT -priyanka02art,2025-03-28T09:14:43Z,- priyanka02art commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2760637960) at 2025-03-28 02:14 AM PDT -priyanka02art,2025-03-28T09:46:00Z,- priyanka02art commented on issue: [7663](https://github.com/hackforla/website/issues/7663#issuecomment-2760741196) at 2025-03-28 02:46 AM PDT -priyanka02art,2025-03-28T09:51:12Z,- priyanka02art commented on issue: [7676](https://github.com/hackforla/website/issues/7676#issuecomment-2760760771) at 2025-03-28 02:51 AM PDT -priyanka02art,2025-03-28T10:05:13Z,- priyanka02art commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-03-28 03:05 AM PDT -priyanka02art,2025-04-01T20:15:14Z,- priyanka02art commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2770580154) at 2025-04-01 01:15 PM PDT -priyanka02art,2025-04-07T01:12:14Z,- priyanka02art commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2781796949) at 2025-04-06 06:12 PM PDT -priyanka02art,2025-04-07T07:07:18Z,- priyanka02art commented on issue: [7678](https://github.com/hackforla/website/issues/7678#issuecomment-2782238591) at 2025-04-07 12:07 AM PDT -priyanka02art,2025-04-23T19:01:11Z,- priyanka02art commented on issue: [7680](https://github.com/hackforla/website/issues/7680#issuecomment-2825257767) at 2025-04-23 12:01 PM PDT -priyanka02art,2025-04-29T20:12:50Z,- priyanka02art commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2840129258) at 2025-04-29 01:12 PM PDT -priyanka02art,2025-05-14T21:02:14Z,- priyanka02art assigned to issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-05-14 02:02 PM PDT -priyanka02art,2025-05-14T21:05:25Z,- priyanka02art unassigned from issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-05-14 02:05 PM PDT -priyanka02art,2025-06-11T20:20:50Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2964042676) at 2025-06-11 01:20 PM PDT -priyanka02art,2025-06-11T20:20:50Z,- priyanka02art closed issue as completed: [7671](https://github.com/hackforla/website/issues/7671#event-18101301838) at 2025-06-11 01:20 PM PDT -priyanka02art,2025-06-11T20:24:52Z,- priyanka02art reopened issue: [7671](https://github.com/hackforla/website/issues/7671#event-18101301838) at 2025-06-11 01:24 PM PDT -priyanka02art,2025-06-11T20:31:56Z,- priyanka02art commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2964070445) at 2025-06-11 01:31 PM PDT -priyanka02art,2025-06-11T20:35:22Z,- priyanka02art assigned to issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-06-11 01:35 PM PDT -Priyanshu-2005,2024-09-11T19:46:25Z,- Priyanshu-2005 commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2344571133) at 2024-09-11 12:46 PM PDT -Priyanshu-2005,2024-09-11T19:47:08Z,- Priyanshu-2005 commented on issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2344572270) at 2024-09-11 12:47 PM PDT -priyatalwar,2022-02-09T06:40:58Z,- priyatalwar opened issue: [2758](https://github.com/hackforla/website/issues/2758) at 2022-02-08 10:40 PM PST -priyatalwar,2022-02-09T17:22:12Z,- priyatalwar commented on issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1034008129) at 2022-02-09 09:22 AM PST -priyatalwar,2023-07-03T17:41:41Z,- priyatalwar commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1618933923) at 2023-07-03 10:41 AM PDT -Providence-o,2022-01-11T04:18:40Z,- Providence-o assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -Providence-o,2022-01-11T04:19:47Z,- Providence-o assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1007193548) at 2022-01-10 08:19 PM PST -Providence-o,2022-01-11T04:20:32Z,- Providence-o assigned to issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2022-01-10 08:20 PM PST -Providence-o,2022-01-18T20:02:31Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1015789115) at 2022-01-18 12:02 PM PST -Providence-o,2022-01-23T20:01:16Z,- Providence-o assigned to issue: [2688](https://github.com/hackforla/website/issues/2688) at 2022-01-23 12:01 PM PST -Providence-o,2022-01-25T18:01:24Z,- Providence-o commented on issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021461806) at 2022-01-25 10:01 AM PST -Providence-o,2022-01-25T18:28:19Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1021484821) at 2022-01-25 10:28 AM PST -Providence-o,2022-01-25T18:51:40Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1021503063) at 2022-01-25 10:51 AM PST -Providence-o,2022-01-27T04:17:34Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1022833547) at 2022-01-26 08:17 PM PST -Providence-o,2022-01-27T04:27:03Z,- Providence-o commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1022837320) at 2022-01-26 08:27 PM PST -Providence-o,2022-01-29T19:46:26Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1024975090) at 2022-01-29 11:46 AM PST -Providence-o,2022-02-01T17:38:10Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1027110714) at 2022-02-01 09:38 AM PST -Providence-o,2022-02-01T17:50:44Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1027121664) at 2022-02-01 09:50 AM PST -Providence-o,2022-02-02T20:04:34Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1028311360) at 2022-02-02 12:04 PM PST -Providence-o,2022-02-05T20:14:35Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1030691903) at 2022-02-05 12:14 PM PST -Providence-o,2022-02-05T20:34:17Z,- Providence-o opened issue: [2739](https://github.com/hackforla/website/issues/2739) at 2022-02-05 12:34 PM PST -Providence-o,2022-02-05T20:34:17Z,- Providence-o assigned to issue: [2739](https://github.com/hackforla/website/issues/2739) at 2022-02-05 12:34 PM PST -Providence-o,2022-02-05T20:43:47Z,- Providence-o opened issue: [2740](https://github.com/hackforla/website/issues/2740) at 2022-02-05 12:43 PM PST -Providence-o,2022-02-05T20:43:48Z,- Providence-o assigned to issue: [2740](https://github.com/hackforla/website/issues/2740) at 2022-02-05 12:43 PM PST -Providence-o,2022-02-05T21:19:57Z,- Providence-o commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1030700685) at 2022-02-05 01:19 PM PST -Providence-o,2022-02-06T20:16:07Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1030906027) at 2022-02-06 12:16 PM PST -Providence-o,2022-02-08T18:06:02Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1032909244) at 2022-02-08 10:06 AM PST -Providence-o,2022-02-08T19:13:33Z,- Providence-o commented on issue: [2747](https://github.com/hackforla/website/issues/2747#issuecomment-1032968237) at 2022-02-08 11:13 AM PST -Providence-o,2022-02-08T19:18:46Z,- Providence-o commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1032972780) at 2022-02-08 11:18 AM PST -Providence-o,2022-02-08T19:20:30Z,- Providence-o commented on issue: [2749](https://github.com/hackforla/website/issues/2749#issuecomment-1032974330) at 2022-02-08 11:20 AM PST -Providence-o,2022-02-08T19:22:11Z,- Providence-o commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1032975812) at 2022-02-08 11:22 AM PST -Providence-o,2022-02-12T14:52:12Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1037246996) at 2022-02-12 06:52 AM PST -Providence-o,2022-02-12T15:04:11Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1037250415) at 2022-02-12 07:04 AM PST -Providence-o,2022-02-12T17:31:17Z,- Providence-o commented on issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1037333994) at 2022-02-12 09:31 AM PST -Providence-o,2022-02-13T01:48:00Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1037660748) at 2022-02-12 05:48 PM PST -Providence-o,2022-02-19T20:33:07Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1046097914) at 2022-02-19 12:33 PM PST -Providence-o,2022-02-19T21:14:17Z,- Providence-o commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1046104161) at 2022-02-19 01:14 PM PST -Providence-o,2022-03-01T18:32:06Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1055736270) at 2022-03-01 10:32 AM PST -Providence-o,2022-03-01T18:33:33Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1055737389) at 2022-03-01 10:33 AM PST -Providence-o,2022-03-01T18:55:10Z,- Providence-o opened issue: [2908](https://github.com/hackforla/website/issues/2908) at 2022-03-01 10:55 AM PST -Providence-o,2022-03-01T19:10:45Z,- Providence-o commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1055768853) at 2022-03-01 11:10 AM PST -Providence-o,2022-03-01T19:21:02Z,- Providence-o commented on issue: [2751](https://github.com/hackforla/website/issues/2751#issuecomment-1055777159) at 2022-03-01 11:21 AM PST -Providence-o,2022-03-02T11:57:41Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1056848089) at 2022-03-02 03:57 AM PST -Providence-o,2022-03-03T18:12:32Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1058340319) at 2022-03-03 10:12 AM PST -Providence-o,2022-03-03T21:39:45Z,- Providence-o assigned to issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1055753742) at 2022-03-03 01:39 PM PST -Providence-o,2022-03-03T22:58:40Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1058608382) at 2022-03-03 02:58 PM PST -Providence-o,2022-03-05T16:26:40Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1059791807) at 2022-03-05 08:26 AM PST -Providence-o,2022-03-08T17:25:26Z,- Providence-o commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1062021273) at 2022-03-08 09:25 AM PST -Providence-o,2022-03-08T17:37:21Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1062031897) at 2022-03-08 09:37 AM PST -Providence-o,2022-03-08T18:39:57Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1062087453) at 2022-03-08 10:39 AM PST -Providence-o,2022-03-10T20:34:16Z,- Providence-o opened issue: [2958](https://github.com/hackforla/website/issues/2958) at 2022-03-10 12:34 PM PST -Providence-o,2022-03-10T21:55:16Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064540705) at 2022-03-10 01:55 PM PST -Providence-o,2022-03-10T22:33:47Z,- Providence-o opened issue: [2960](https://github.com/hackforla/website/issues/2960) at 2022-03-10 02:33 PM PST -Providence-o,2022-03-10T22:49:47Z,- Providence-o commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1064587702) at 2022-03-10 02:49 PM PST -Providence-o,2022-03-12T20:12:52Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1065955282) at 2022-03-12 01:12 PM PDT -Providence-o,2022-03-12T20:30:24Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1065957763) at 2022-03-12 01:30 PM PDT -Providence-o,2022-03-12T21:42:54Z,- Providence-o commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1065969546) at 2022-03-12 02:42 PM PDT -Providence-o,2022-03-12T21:49:23Z,- Providence-o unassigned from issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1037333994) at 2022-03-12 02:49 PM PDT -Providence-o,2022-03-12T21:55:17Z,- Providence-o assigned to issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1037333994) at 2022-03-12 02:55 PM PDT -Providence-o,2022-03-12T21:55:45Z,- Providence-o commented on issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1065971571) at 2022-03-12 02:55 PM PDT -Providence-o,2022-03-12T21:55:46Z,- Providence-o closed issue as completed: [2739](https://github.com/hackforla/website/issues/2739#event-6230329259) at 2022-03-12 02:55 PM PDT -Providence-o,2022-03-12T21:56:32Z,- Providence-o unassigned from issue: [2740](https://github.com/hackforla/website/issues/2740#issuecomment-1030695848) at 2022-03-12 02:56 PM PDT -Providence-o,2022-03-12T23:43:42Z,- Providence-o commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1065985494) at 2022-03-12 04:43 PM PDT -Providence-o,2022-03-13T18:09:03Z,- Providence-o opened issue: [2976](https://github.com/hackforla/website/issues/2976) at 2022-03-13 11:09 AM PDT -Providence-o,2022-03-15T17:25:07Z,- Providence-o commented on issue: [2976](https://github.com/hackforla/website/issues/2976#issuecomment-1068252142) at 2022-03-15 10:25 AM PDT -Providence-o,2022-03-15T17:27:15Z,- Providence-o commented on issue: [2976](https://github.com/hackforla/website/issues/2976#issuecomment-1068254173) at 2022-03-15 10:27 AM PDT -Providence-o,2022-03-15T17:30:05Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1068256761) at 2022-03-15 10:30 AM PDT -Providence-o,2022-03-15T17:41:26Z,- Providence-o commented on issue: [2976](https://github.com/hackforla/website/issues/2976#issuecomment-1068268572) at 2022-03-15 10:41 AM PDT -Providence-o,2022-03-15T19:11:16Z,- Providence-o commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1068362994) at 2022-03-15 12:11 PM PDT -Providence-o,2022-03-16T20:01:20Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1069561783) at 2022-03-16 01:01 PM PDT -Providence-o,2022-03-19T23:39:46Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1073130599) at 2022-03-19 04:39 PM PDT -Providence-o,2022-03-20T14:35:57Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1073264319) at 2022-03-20 07:35 AM PDT -Providence-o,2022-03-20T14:42:34Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1073265428) at 2022-03-20 07:42 AM PDT -Providence-o,2022-03-23T20:05:38Z,- Providence-o commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1076770029) at 2022-03-23 01:05 PM PDT -Providence-o,2022-03-24T18:44:45Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1077935416) at 2022-03-24 11:44 AM PDT -Providence-o,2022-03-24T19:45:38Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1078055515) at 2022-03-24 12:45 PM PDT -Providence-o,2022-03-24T20:13:45Z,- Providence-o commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1078144976) at 2022-03-24 01:13 PM PDT -Providence-o,2022-04-05T17:37:39Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1089097585) at 2022-04-05 10:37 AM PDT -Providence-o,2022-04-05T17:42:40Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1089103761) at 2022-04-05 10:42 AM PDT -Providence-o,2022-04-10T17:22:30Z,- Providence-o opened issue: [3040](https://github.com/hackforla/website/issues/3040) at 2022-04-10 10:22 AM PDT -Providence-o,2022-04-10T17:23:42Z,- Providence-o assigned to issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094331934) at 2022-04-10 10:23 AM PDT -Providence-o,2022-04-10T17:28:09Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1094332784) at 2022-04-10 10:28 AM PDT -Providence-o,2022-04-10T17:32:46Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094333447) at 2022-04-10 10:32 AM PDT -Providence-o,2022-04-12T17:14:58Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1096987254) at 2022-04-12 10:14 AM PDT -Providence-o,2022-04-12T17:18:59Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1096990651) at 2022-04-12 10:18 AM PDT -Providence-o,2022-04-12T17:19:55Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1096991424) at 2022-04-12 10:19 AM PDT -Providence-o,2022-04-12T17:34:02Z,- Providence-o commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1097002788) at 2022-04-12 10:34 AM PDT -Providence-o,2022-04-12T17:37:44Z,- Providence-o commented on issue: [2950](https://github.com/hackforla/website/issues/2950#issuecomment-1097006074) at 2022-04-12 10:37 AM PDT -Providence-o,2022-04-12T17:39:29Z,- Providence-o commented on issue: [2917](https://github.com/hackforla/website/issues/2917#issuecomment-1097007798) at 2022-04-12 10:39 AM PDT -Providence-o,2022-04-12T18:07:09Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1097033906) at 2022-04-12 11:07 AM PDT -Providence-o,2022-04-12T18:30:29Z,- Providence-o commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1097054763) at 2022-04-12 11:30 AM PDT -Providence-o,2022-04-14T19:42:01Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1099562751) at 2022-04-14 12:42 PM PDT -Providence-o,2022-04-14T20:30:34Z,- Providence-o commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1099595194) at 2022-04-14 01:30 PM PDT -Providence-o,2022-04-14T21:39:23Z,- Providence-o commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1099651495) at 2022-04-14 02:39 PM PDT -Providence-o,2022-04-19T17:31:17Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1102909248) at 2022-04-19 10:31 AM PDT -Providence-o,2022-04-19T17:33:41Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1102911493) at 2022-04-19 10:33 AM PDT -Providence-o,2022-05-17T17:53:34Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1129154338) at 2022-05-17 10:53 AM PDT -Providence-o,2022-05-17T18:00:50Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1129160438) at 2022-05-17 11:00 AM PDT -Providence-o,2022-05-17T19:00:41Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1129214526) at 2022-05-17 12:00 PM PDT -Providence-o,2022-05-19T20:15:46Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1132163370) at 2022-05-19 01:15 PM PDT -Providence-o,2022-05-25T19:21:41Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1137761646) at 2022-05-25 12:21 PM PDT -Providence-o,2022-05-28T20:35:24Z,- Providence-o commented on issue: [2938](https://github.com/hackforla/website/issues/2938#issuecomment-1140326153) at 2022-05-28 01:35 PM PDT -Providence-o,2022-05-28T20:47:35Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1140327516) at 2022-05-28 01:47 PM PDT -Providence-o,2022-09-04T16:08:45Z,- Providence-o unassigned from issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021562766) at 2022-09-04 09:08 AM PDT -Providence-o,2022-11-09T18:08:18Z,- Providence-o unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1304856941) at 2022-11-09 10:08 AM PST -Providence-o,2022-11-16T17:39:21Z,- Providence-o unassigned from issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1065985494) at 2022-11-16 09:39 AM PST -Providence-o,2023-01-09T03:43:32Z,- Providence-o unassigned from issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2023-01-08 07:43 PM PST -Providence-o,2023-06-04T18:58:24Z,- Providence-o unassigned from issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2023-06-04 11:58 AM PDT -Punkin18,2023-07-31T00:17:27Z,- Punkin18 commented on pull request: [2102](https://github.com/hackforla/website/pull/2102#issuecomment-1657306729) at 2023-07-30 05:17 PM PDT -purna-madala,7018,SKILLS ISSUE -purna-madala,2024-06-19T02:43:34Z,- purna-madala opened issue: [7018](https://github.com/hackforla/website/issues/7018) at 2024-06-18 07:43 PM PDT -purna-madala,2024-06-19T02:44:13Z,- purna-madala assigned to issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2177434840) at 2024-06-18 07:44 PM PDT -purna-madala,2024-09-10T18:38:24Z,- purna-madala assigned to issue: [7180](https://github.com/hackforla/website/issues/7180) at 2024-09-10 11:38 AM PDT -purna-madala,2024-09-10T19:08:46Z,- purna-madala opened pull request: [7436](https://github.com/hackforla/website/pull/7436) at 2024-09-10 12:08 PM PDT -purna-madala,2024-09-10T19:34:39Z,- purna-madala commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2341865226) at 2024-09-10 12:34 PM PDT -purna-madala,2024-09-12T19:42:56Z,- purna-madala commented on issue: [7180](https://github.com/hackforla/website/issues/7180#issuecomment-2347103730) at 2024-09-12 12:42 PM PDT -purna-madala,2024-09-12T19:48:36Z,- purna-madala commented on pull request: [7436](https://github.com/hackforla/website/pull/7436#issuecomment-2347112640) at 2024-09-12 12:48 PM PDT -purna-madala,2024-09-15T02:28:03Z,- purna-madala pull request merged: [7436](https://github.com/hackforla/website/pull/7436#event-14262062662) at 2024-09-14 07:28 PM PDT -purna-madala,2024-11-11T17:37:33Z,- purna-madala assigned to issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442592500) at 2024-11-11 09:37 AM PST -purna-madala,2025-01-06T19:46:46Z,- purna-madala closed issue as completed: [7018](https://github.com/hackforla/website/issues/7018#event-15830232824) at 2025-01-06 11:46 AM PST -purna-madala,2025-01-06T19:57:32Z,- purna-madala commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2573817244) at 2025-01-06 11:57 AM PST -purna-madala,2025-01-06T19:58:08Z,- purna-madala opened pull request: [7816](https://github.com/hackforla/website/pull/7816) at 2025-01-06 11:58 AM PST -purna-madala,2025-01-12T17:51:07Z,- purna-madala pull request merged: [7816](https://github.com/hackforla/website/pull/7816#event-15896474434) at 2025-01-12 09:51 AM PST -purna-madala,2025-03-07T07:33:00Z,- purna-madala assigned to issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-06 11:33 PM PST -purna-madala,2025-03-07T07:33:13Z,- purna-madala unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-06 11:33 PM PST -purna-madala,2025-03-07T07:54:33Z,- purna-madala assigned to issue: [7443](https://github.com/hackforla/website/issues/7443) at 2025-03-06 11:54 PM PST -purna-madala,2025-03-07T07:54:47Z,- purna-madala unassigned from issue: [7443](https://github.com/hackforla/website/issues/7443) at 2025-03-06 11:54 PM PST -pushkar-2804,2023-05-26T12:51:45Z,- pushkar-2804 commented on issue: [4669](https://github.com/hackforla/website/issues/4669#issuecomment-1564348020) at 2023-05-26 05:51 AM PDT -qaz6209031,2021-04-26T06:42:03Z,- qaz6209031 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-826551309) at 2021-04-25 11:42 PM PDT -qaz6209031,2021-04-26T07:14:28Z,- qaz6209031 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-826572137) at 2021-04-26 12:14 AM PDT -qaz6209031,2021-04-26T07:40:58Z,- qaz6209031 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-826590354) at 2021-04-26 12:40 AM PDT -qaz6209031,2021-04-26T09:09:17Z,- qaz6209031 opened pull request: [1467](https://github.com/hackforla/website/pull/1467) at 2021-04-26 02:09 AM PDT -qaz6209031,2021-04-27T00:47:19Z,- qaz6209031 commented on issue: [1460](https://github.com/hackforla/website/issues/1460#issuecomment-827230673) at 2021-04-26 05:47 PM PDT -qaz6209031,2021-04-27T03:01:14Z,- qaz6209031 opened pull request: [1470](https://github.com/hackforla/website/pull/1470) at 2021-04-26 08:01 PM PDT -qaz6209031,2021-04-27T05:54:33Z,- qaz6209031 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-827333099) at 2021-04-26 10:54 PM PDT -qaz6209031,2021-04-27T06:27:18Z,- qaz6209031 opened pull request: [1472](https://github.com/hackforla/website/pull/1472) at 2021-04-26 11:27 PM PDT -qaz6209031,2021-04-27T06:31:50Z,- qaz6209031 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-827350115) at 2021-04-26 11:31 PM PDT -qaz6209031,2021-04-27T18:55:09Z,- qaz6209031 pull request merged: [1470](https://github.com/hackforla/website/pull/1470#event-4652617942) at 2021-04-27 11:55 AM PDT -qaz6209031,2021-04-27T22:57:09Z,- qaz6209031 commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-828001076) at 2021-04-27 03:57 PM PDT -qaz6209031,2021-04-27T22:59:41Z,- qaz6209031 commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-828001953) at 2021-04-27 03:59 PM PDT -qaz6209031,2021-04-27T23:10:46Z,- qaz6209031 commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-828006072) at 2021-04-27 04:10 PM PDT -qaz6209031,2021-04-28T00:47:28Z,- qaz6209031 assigned to issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-828057168) at 2021-04-27 05:47 PM PDT -qaz6209031,2021-04-28T00:55:16Z,- qaz6209031 assigned to issue: [1460](https://github.com/hackforla/website/issues/1460#event-4652617931) at 2021-04-27 05:55 PM PDT -qaz6209031,2021-04-28T02:42:14Z,- qaz6209031 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-828098869) at 2021-04-27 07:42 PM PDT -qaz6209031,2021-04-28T02:54:58Z,- qaz6209031 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828103175) at 2021-04-27 07:54 PM PDT -qaz6209031,2021-04-28T03:09:14Z,- qaz6209031 assigned to issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-828098869) at 2021-04-27 08:09 PM PDT -qaz6209031,2021-04-28T03:15:39Z,- qaz6209031 opened issue: [1482](https://github.com/hackforla/website/issues/1482) at 2021-04-27 08:15 PM PDT -qaz6209031,2021-04-28T04:12:46Z,- qaz6209031 pull request merged: [1472](https://github.com/hackforla/website/pull/1472#event-4654313356) at 2021-04-27 09:12 PM PDT -qaz6209031,2021-04-28T16:34:56Z,- qaz6209031 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828600617) at 2021-04-28 09:34 AM PDT -qaz6209031,2021-04-28T21:23:10Z,- qaz6209031 pull request merged: [1467](https://github.com/hackforla/website/pull/1467#event-4659299896) at 2021-04-28 02:23 PM PDT -qaz6209031,2021-04-29T00:32:50Z,- qaz6209031 assigned to issue: [1479](https://github.com/hackforla/website/issues/1479) at 2021-04-28 05:32 PM PDT -qaz6209031,2021-04-29T01:35:42Z,- qaz6209031 opened pull request: [1491](https://github.com/hackforla/website/pull/1491) at 2021-04-28 06:35 PM PDT -qaz6209031,2021-04-29T01:39:32Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-828886989) at 2021-04-28 06:39 PM PDT -qaz6209031,2021-04-29T02:08:39Z,- qaz6209031 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-828894965) at 2021-04-28 07:08 PM PDT -qaz6209031,2021-04-30T17:42:06Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-830254569) at 2021-04-30 10:42 AM PDT -qaz6209031,2021-05-09T05:13:14Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-835687738) at 2021-05-08 10:13 PM PDT -qaz6209031,2021-05-11T01:22:15Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837597621) at 2021-05-10 06:22 PM PDT -qaz6209031,2021-05-11T02:33:39Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837670385) at 2021-05-10 07:33 PM PDT -qaz6209031,2021-05-11T05:20:26Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837837251) at 2021-05-10 10:20 PM PDT -qaz6209031,2021-05-26T02:35:34Z,- qaz6209031 pull request closed w/o merging: [1491](https://github.com/hackforla/website/pull/1491#event-4796342243) at 2021-05-25 07:35 PM PDT -qaz6209031,2021-05-26T02:39:29Z,- qaz6209031 unassigned from issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-848411456) at 2021-05-25 07:39 PM PDT -qiqicodes,2021-02-07T20:19:49Z,- qiqicodes assigned to issue: [1004](https://github.com/hackforla/website/issues/1004) at 2021-02-07 12:19 PM PST -qiqicodes,2021-02-07T23:42:55Z,- qiqicodes opened pull request: [1014](https://github.com/hackforla/website/pull/1014) at 2021-02-07 03:42 PM PST -qiqicodes,2021-02-08T00:50:46Z,- qiqicodes opened pull request: [1015](https://github.com/hackforla/website/pull/1015) at 2021-02-07 04:50 PM PST -qiqicodes,2021-02-08T00:54:20Z,- qiqicodes commented on pull request: [1014](https://github.com/hackforla/website/pull/1014#issuecomment-774803827) at 2021-02-07 04:54 PM PST -qiqicodes,2021-02-08T00:54:20Z,- qiqicodes pull request closed w/o merging: [1014](https://github.com/hackforla/website/pull/1014#event-4300909012) at 2021-02-07 04:54 PM PST -qiqicodes,2021-02-08T00:58:56Z,- qiqicodes assigned to issue: [1003](https://github.com/hackforla/website/issues/1003) at 2021-02-07 04:58 PM PST -qiqicodes,2021-02-08T01:16:21Z,- qiqicodes opened pull request: [1016](https://github.com/hackforla/website/pull/1016) at 2021-02-07 05:16 PM PST -qiqicodes,2021-02-08T18:07:41Z,- qiqicodes pull request merged: [1015](https://github.com/hackforla/website/pull/1015#event-4304902107) at 2021-02-08 10:07 AM PST -qiqicodes,2021-02-08T18:11:05Z,- qiqicodes pull request merged: [1016](https://github.com/hackforla/website/pull/1016#event-4304917639) at 2021-02-08 10:11 AM PST -qiqicodes,2021-02-08T18:40:32Z,- qiqicodes assigned to issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-773741939) at 2021-02-08 10:40 AM PST -qiqicodes,2021-02-08T19:12:26Z,- qiqicodes opened pull request: [1017](https://github.com/hackforla/website/pull/1017) at 2021-02-08 11:12 AM PST -qiqicodes,2021-02-10T02:34:35Z,- qiqicodes pull request merged: [1017](https://github.com/hackforla/website/pull/1017#event-4312501670) at 2021-02-09 06:34 PM PST -qiqicodes,2021-02-10T03:51:45Z,- qiqicodes assigned to issue: [967](https://github.com/hackforla/website/issues/967) at 2021-02-09 07:51 PM PST -qiqicodes,2021-02-10T04:17:49Z,- qiqicodes closed issue as completed: [1003](https://github.com/hackforla/website/issues/1003#event-4312718019) at 2021-02-09 08:17 PM PST -qiqicodes,2021-02-15T02:48:48Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-778904857) at 2021-02-14 06:48 PM PST -qiqicodes,2021-02-15T07:34:42Z,- qiqicodes opened issue: [1055](https://github.com/hackforla/website/issues/1055) at 2021-02-14 11:34 PM PST -qiqicodes,2021-02-17T01:58:23Z,- qiqicodes commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780242104) at 2021-02-16 05:58 PM PST -qiqicodes,2021-02-21T09:27:44Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782826594) at 2021-02-21 01:27 AM PST -qiqicodes,2021-02-21T18:14:35Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782900538) at 2021-02-21 10:14 AM PST -qiqicodes,2021-02-21T18:23:09Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782902095) at 2021-02-21 10:23 AM PST -qiqicodes,2021-02-21T23:34:43Z,- qiqicodes opened pull request: [1088](https://github.com/hackforla/website/pull/1088) at 2021-02-21 03:34 PM PST -qiqicodes,2021-02-21T23:49:59Z,- qiqicodes opened issue: [1089](https://github.com/hackforla/website/issues/1089) at 2021-02-21 03:49 PM PST -qiqicodes,2021-02-21T23:50:00Z,- qiqicodes assigned to issue: [1089](https://github.com/hackforla/website/issues/1089) at 2021-02-21 03:50 PM PST -qiqicodes,2021-02-21T23:52:16Z,- qiqicodes commented on issue: [1089](https://github.com/hackforla/website/issues/1089#issuecomment-782953743) at 2021-02-21 03:52 PM PST -qiqicodes,2021-02-22T00:40:45Z,- qiqicodes closed issue by PR 1088: [967](https://github.com/hackforla/website/issues/967#event-4357021820) at 2021-02-21 04:40 PM PST -qiqicodes,2021-02-22T00:40:45Z,- qiqicodes pull request merged: [1088](https://github.com/hackforla/website/pull/1088#event-4357021826) at 2021-02-21 04:40 PM PST -qiqicodes,2021-02-28T18:03:17Z,- qiqicodes commented on issue: [1089](https://github.com/hackforla/website/issues/1089#issuecomment-787493844) at 2021-02-28 10:03 AM PST -qiqicodes,2021-03-02T05:27:24Z,- qiqicodes commented on pull request: [1129](https://github.com/hackforla/website/pull/1129#issuecomment-788606948) at 2021-03-01 09:27 PM PST -qiqicodes,2021-03-02T05:28:54Z,- qiqicodes submitted pull request review: [1129](https://github.com/hackforla/website/pull/1129#pullrequestreview-601433522) at 2021-03-01 09:28 PM PST -qiqicodes,2021-03-02T05:30:17Z,- qiqicodes closed issue by PR 1129: [1081](https://github.com/hackforla/website/issues/1081#event-4393726384) at 2021-03-01 09:30 PM PST -qiqicodes,2021-03-02T06:17:10Z,- qiqicodes submitted pull request review: [1148](https://github.com/hackforla/website/pull/1148#pullrequestreview-601459338) at 2021-03-01 10:17 PM PST -qiqicodes,2021-03-03T18:20:04Z,- qiqicodes commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789952792) at 2021-03-03 10:20 AM PST -qiqicodes,2021-03-03T19:18:50Z,- qiqicodes commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789990698) at 2021-03-03 11:18 AM PST -qiqicodes,2021-03-07T12:17:42Z,- qiqicodes commented on issue: [1089](https://github.com/hackforla/website/issues/1089#issuecomment-792269547) at 2021-03-07 04:17 AM PST -qiqicodes,2021-03-09T08:03:43Z,- qiqicodes opened pull request: [1181](https://github.com/hackforla/website/pull/1181) at 2021-03-09 12:03 AM PST -qiqicodes,2021-03-09T08:10:52Z,- qiqicodes assigned to issue: [1131](https://github.com/hackforla/website/issues/1131#issuecomment-787535979) at 2021-03-09 12:10 AM PST -qiqicodes,2021-03-09T08:20:29Z,- qiqicodes opened pull request: [1182](https://github.com/hackforla/website/pull/1182) at 2021-03-09 12:20 AM PST -qiqicodes,2021-03-10T02:24:28Z,- qiqicodes opened pull request: [1188](https://github.com/hackforla/website/pull/1188) at 2021-03-09 06:24 PM PST -qiqicodes,2021-03-10T02:25:13Z,- qiqicodes pull request closed w/o merging: [1181](https://github.com/hackforla/website/pull/1181#event-4432860261) at 2021-03-09 06:25 PM PST -qiqicodes,2021-03-10T02:25:28Z,- qiqicodes reopened pull request: [1181](https://github.com/hackforla/website/pull/1181#event-4432860261) at 2021-03-09 06:25 PM PST -qiqicodes,2021-03-10T02:26:26Z,- qiqicodes commented on pull request: [1181](https://github.com/hackforla/website/pull/1181#issuecomment-794757163) at 2021-03-09 06:26 PM PST -qiqicodes,2021-03-10T02:26:26Z,- qiqicodes pull request closed w/o merging: [1181](https://github.com/hackforla/website/pull/1181#event-4432865148) at 2021-03-09 06:26 PM PST -qiqicodes,2021-03-10T03:21:10Z,- qiqicodes pull request closed w/o merging: [1182](https://github.com/hackforla/website/pull/1182#event-4433078167) at 2021-03-09 07:21 PM PST -qiqicodes,2021-03-10T03:38:40Z,- qiqicodes pull request merged: [1188](https://github.com/hackforla/website/pull/1188#event-4433144805) at 2021-03-09 07:38 PM PST -qiqicodes,2021-03-10T05:10:44Z,- qiqicodes opened pull request: [1194](https://github.com/hackforla/website/pull/1194) at 2021-03-09 09:10 PM PST -qiqicodes,2021-03-10T06:16:51Z,- qiqicodes pull request merged: [1194](https://github.com/hackforla/website/pull/1194#event-4433769847) at 2021-03-09 10:16 PM PST -qiqicodes,2021-03-14T18:32:20Z,- qiqicodes assigned to issue: [1168](https://github.com/hackforla/website/issues/1168) at 2021-03-14 11:32 AM PDT -qiqicodes,2021-03-15T21:08:47Z,- qiqicodes opened pull request: [1208](https://github.com/hackforla/website/pull/1208) at 2021-03-15 02:08 PM PDT -qiqicodes,2021-03-15T21:21:53Z,- qiqicodes pull request merged: [1208](https://github.com/hackforla/website/pull/1208#event-4461137592) at 2021-03-15 02:21 PM PDT -qiqicodes,2021-03-16T20:27:28Z,- qiqicodes assigned to issue: [1126](https://github.com/hackforla/website/issues/1126) at 2021-03-16 01:27 PM PDT -qiqicodes,2021-03-17T02:12:21Z,- qiqicodes assigned to issue: [1192](https://github.com/hackforla/website/issues/1192) at 2021-03-16 07:12 PM PDT -qiqicodes,2021-03-17T02:46:42Z,- qiqicodes opened pull request: [1214](https://github.com/hackforla/website/pull/1214) at 2021-03-16 07:46 PM PDT -qiqicodes,2021-03-17T03:47:08Z,- qiqicodes pull request merged: [1214](https://github.com/hackforla/website/pull/1214#event-4467943438) at 2021-03-16 08:47 PM PDT -qiqicodes,2021-03-17T03:47:08Z,- qiqicodes opened issue: [1216](https://github.com/hackforla/website/issues/1216) at 2021-03-16 08:47 PM PDT -qiqicodes,2021-03-21T08:58:51Z,- qiqicodes commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-803536215) at 2021-03-21 01:58 AM PDT -qiqicodes,2021-03-21T17:57:53Z,- qiqicodes commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-803632388) at 2021-03-21 10:57 AM PDT -qiqicodes,2021-03-21T18:17:33Z,- qiqicodes commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-803635491) at 2021-03-21 11:17 AM PDT -qiqicodes,2021-03-21T21:14:04Z,- qiqicodes opened issue: [1290](https://github.com/hackforla/website/issues/1290) at 2021-03-21 02:14 PM PDT -qiqicodes,2021-03-23T04:19:02Z,- qiqicodes opened pull request: [1307](https://github.com/hackforla/website/pull/1307) at 2021-03-22 09:19 PM PDT -qiqicodes,2021-03-23T04:37:15Z,- qiqicodes opened pull request: [1308](https://github.com/hackforla/website/pull/1308) at 2021-03-22 09:37 PM PDT -qiqicodes,2021-03-23T04:37:53Z,- qiqicodes pull request closed w/o merging: [1307](https://github.com/hackforla/website/pull/1307#event-4493893799) at 2021-03-22 09:37 PM PDT -qiqicodes,2021-03-23T04:38:35Z,- qiqicodes commented on pull request: [1307](https://github.com/hackforla/website/pull/1307#issuecomment-804611171) at 2021-03-22 09:38 PM PDT -qiqicodes,2021-03-24T03:15:54Z,- qiqicodes submitted pull request review: [1316](https://github.com/hackforla/website/pull/1316#pullrequestreview-619275124) at 2021-03-23 08:15 PM PDT -qiqicodes,2021-03-24T03:39:14Z,- qiqicodes pull request merged: [1308](https://github.com/hackforla/website/pull/1308#event-4499582143) at 2021-03-23 08:39 PM PDT -qiqicodes,2021-03-28T17:34:00Z,- qiqicodes commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-808929449) at 2021-03-28 10:34 AM PDT -qiqicodes,2021-04-01T19:55:27Z,- qiqicodes commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-812136347) at 2021-04-01 12:55 PM PDT -qiqicodes,2021-04-01T20:04:55Z,- qiqicodes opened issue: [1347](https://github.com/hackforla/website/issues/1347) at 2021-04-01 01:04 PM PDT -qiqicodes,2021-04-04T20:14:30Z,- qiqicodes commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-813093156) at 2021-04-04 01:14 PM PDT -qiqicodes,2021-04-04T21:01:22Z,- qiqicodes opened pull request: [1355](https://github.com/hackforla/website/pull/1355) at 2021-04-04 02:01 PM PDT -qiqicodes,2021-04-07T21:32:34Z,- qiqicodes assigned to issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-813411114) at 2021-04-07 02:32 PM PDT -qiqicodes,2021-04-08T16:42:30Z,- qiqicodes commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-815975209) at 2021-04-08 09:42 AM PDT -qiqicodes,2021-04-11T17:24:10Z,- qiqicodes commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-817342030) at 2021-04-11 10:24 AM PDT -qiqicodes,2021-04-13T20:50:23Z,- qiqicodes pull request merged: [1355](https://github.com/hackforla/website/pull/1355#event-4590217231) at 2021-04-13 01:50 PM PDT -qiqicodes,2021-04-14T00:02:36Z,- qiqicodes commented on pull request: [1404](https://github.com/hackforla/website/pull/1404#issuecomment-819126348) at 2021-04-13 05:02 PM PDT -qiqicodes,2021-04-14T02:24:58Z,- qiqicodes assigned to issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-04-13 07:24 PM PDT -qiqicodes,2021-04-14T02:25:34Z,- qiqicodes unassigned from issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-817342030) at 2021-04-13 07:25 PM PDT -qiqicodes,2021-04-14T03:51:56Z,- qiqicodes assigned to issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:51 PM PDT -qiqicodes,2021-04-14T03:52:00Z,- qiqicodes unassigned from issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:52 PM PDT -qiqicodes,2021-04-15T06:29:34Z,- qiqicodes opened pull request: [1408](https://github.com/hackforla/website/pull/1408) at 2021-04-14 11:29 PM PDT -qiqicodes,2021-04-15T20:32:57Z,- qiqicodes submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-637103533) at 2021-04-15 01:32 PM PDT -qiqicodes,2021-04-16T02:08:12Z,- qiqicodes pull request merged: [1408](https://github.com/hackforla/website/pull/1408#event-4602438843) at 2021-04-15 07:08 PM PDT -qiqicodes,2021-04-18T17:25:06Z,- qiqicodes assigned to issue: [1415](https://github.com/hackforla/website/issues/1415) at 2021-04-18 10:25 AM PDT -qiqicodes,2021-04-21T04:34:17Z,- qiqicodes opened pull request: [1428](https://github.com/hackforla/website/pull/1428) at 2021-04-20 09:34 PM PDT -qiqicodes,2021-04-22T06:06:31Z,- qiqicodes commented on pull request: [1428](https://github.com/hackforla/website/pull/1428#issuecomment-824565525) at 2021-04-21 11:06 PM PDT -qiqicodes,2021-04-25T17:15:52Z,- qiqicodes commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-826357672) at 2021-04-25 10:15 AM PDT -qiqicodes,2021-04-25T17:18:41Z,- qiqicodes commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-826358050) at 2021-04-25 10:18 AM PDT -qiqicodes,2021-04-25T17:31:08Z,- qiqicodes commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-25 10:31 AM PDT -qiqicodes,2021-04-25T17:34:48Z,- qiqicodes commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-826360231) at 2021-04-25 10:34 AM PDT -qiqicodes,2021-04-25T17:34:48Z,- qiqicodes closed issue as completed: [1375](https://github.com/hackforla/website/issues/1375#event-4641432143) at 2021-04-25 10:34 AM PDT -qiqicodes,2021-04-25T17:46:30Z,- qiqicodes commented on issue: [1393](https://github.com/hackforla/website/issues/1393#issuecomment-826361831) at 2021-04-25 10:46 AM PDT -qiqicodes,2021-04-25T17:52:42Z,- qiqicodes commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-826362707) at 2021-04-25 10:52 AM PDT -qiqicodes,2021-04-25T17:54:10Z,- qiqicodes commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-826362908) at 2021-04-25 10:54 AM PDT -qiqicodes,2021-04-25T18:33:04Z,- qiqicodes commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826369185) at 2021-04-25 11:33 AM PDT -qiqicodes,2021-04-25T18:45:48Z,- qiqicodes commented on issue: [1315](https://github.com/hackforla/website/issues/1315#issuecomment-826370949) at 2021-04-25 11:45 AM PDT -qiqicodes,2021-04-28T02:43:40Z,- qiqicodes commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-828099342) at 2021-04-27 07:43 PM PDT -qiqicodes,2021-04-28T03:32:18Z,- qiqicodes opened issue: [1483](https://github.com/hackforla/website/issues/1483) at 2021-04-27 08:32 PM PDT -qiqicodes,2021-04-28T03:59:29Z,- qiqicodes assigned to issue: [1483](https://github.com/hackforla/website/issues/1483) at 2021-04-27 08:59 PM PDT -qiqicodes,2021-04-28T04:38:27Z,- qiqicodes pull request merged: [1428](https://github.com/hackforla/website/pull/1428#event-4654371834) at 2021-04-27 09:38 PM PDT -qiqicodes,2021-04-28T18:12:22Z,- qiqicodes commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-828670790) at 2021-04-28 11:12 AM PDT -qiqicodes,2021-04-28T20:45:26Z,- qiqicodes commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-828765656) at 2021-04-28 01:45 PM PDT -qiqicodes,2021-05-02T04:54:44Z,- qiqicodes commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-830740676) at 2021-05-01 09:54 PM PDT -qiqicodes,2021-05-03T21:20:40Z,- qiqicodes commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-831543499) at 2021-05-03 02:20 PM PDT -qiqicodes,2021-05-03T21:31:42Z,- qiqicodes commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-831548814) at 2021-05-03 02:31 PM PDT -qiqicodes,2021-05-03T21:34:06Z,- qiqicodes commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-831549938) at 2021-05-03 02:34 PM PDT -qiqicodes,2021-05-03T21:37:31Z,- qiqicodes commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-831551629) at 2021-05-03 02:37 PM PDT -qiqicodes,2021-05-03T21:41:16Z,- qiqicodes commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831553433) at 2021-05-03 02:41 PM PDT -qiqicodes,2021-05-03T21:46:54Z,- qiqicodes commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-05-03 02:46 PM PDT -qiqicodes,2021-05-03T21:50:36Z,- qiqicodes commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-831557778) at 2021-05-03 02:50 PM PDT -qiqicodes,2021-05-03T21:57:19Z,- qiqicodes assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-822023219) at 2021-05-03 02:57 PM PDT -qiqicodes,2021-05-04T21:10:04Z,- qiqicodes submitted pull request review: [1503](https://github.com/hackforla/website/pull/1503#pullrequestreview-651671264) at 2021-05-04 02:10 PM PDT -qiqicodes,2021-05-04T21:10:24Z,- qiqicodes closed issue by PR 1503: [1499](https://github.com/hackforla/website/issues/1499#event-4685708316) at 2021-05-04 02:10 PM PDT -qiqicodes,2021-05-07T07:22:11Z,- qiqicodes submitted pull request review: [1523](https://github.com/hackforla/website/pull/1523#pullrequestreview-654157091) at 2021-05-07 12:22 AM PDT -qiqicodes,2021-05-07T07:22:44Z,- qiqicodes submitted pull request review: [1523](https://github.com/hackforla/website/pull/1523#pullrequestreview-654157492) at 2021-05-07 12:22 AM PDT -qiqicodes,2021-05-07T07:36:26Z,- qiqicodes opened issue: [1526](https://github.com/hackforla/website/issues/1526) at 2021-05-07 12:36 AM PDT -qiqicodes,2021-05-07T07:40:58Z,- qiqicodes opened issue: [1527](https://github.com/hackforla/website/issues/1527) at 2021-05-07 12:40 AM PDT -qiqicodes,2021-05-07T17:49:40Z,- qiqicodes commented on pull request: [1523](https://github.com/hackforla/website/pull/1523#issuecomment-834652378) at 2021-05-07 10:49 AM PDT -qiqicodes,2021-05-07T19:34:02Z,- qiqicodes submitted pull request review: [1528](https://github.com/hackforla/website/pull/1528#pullrequestreview-654808286) at 2021-05-07 12:34 PM PDT -qiqicodes,2021-05-07T19:41:08Z,- qiqicodes commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-834726437) at 2021-05-07 12:41 PM PDT -qiqicodes,2021-05-07T19:58:32Z,- qiqicodes submitted pull request review: [1516](https://github.com/hackforla/website/pull/1516#pullrequestreview-654823683) at 2021-05-07 12:58 PM PDT -qiqicodes,2021-05-07T20:05:33Z,- qiqicodes submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-654828150) at 2021-05-07 01:05 PM PDT -qiqicodes,2021-05-07T20:13:44Z,- qiqicodes commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-834745985) at 2021-05-07 01:13 PM PDT -qiqicodes,2021-05-07T20:13:44Z,- qiqicodes closed issue as completed: [1413](https://github.com/hackforla/website/issues/1413#event-4704431549) at 2021-05-07 01:13 PM PDT -qiqicodes,2021-05-07T20:14:59Z,- qiqicodes closed issue by PR 1492: [1426](https://github.com/hackforla/website/issues/1426#event-4704437220) at 2021-05-07 01:14 PM PDT -qiqicodes,2021-05-07T20:23:17Z,- qiqicodes commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-834750860) at 2021-05-07 01:23 PM PDT -qiqicodes,2021-05-07T20:32:26Z,- qiqicodes opened issue: [1531](https://github.com/hackforla/website/issues/1531) at 2021-05-07 01:32 PM PDT -qiqicodes,2021-05-09T01:16:55Z,- qiqicodes commented on issue: [1510](https://github.com/hackforla/website/issues/1510#issuecomment-835611382) at 2021-05-08 06:16 PM PDT -qiqicodes,2021-05-09T01:19:24Z,- qiqicodes commented on issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-835612280) at 2021-05-08 06:19 PM PDT -qiqicodes,2021-05-09T01:40:13Z,- qiqicodes commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-835619813) at 2021-05-08 06:40 PM PDT -qiqicodes,2021-05-09T01:48:14Z,- qiqicodes submitted pull request review: [1522](https://github.com/hackforla/website/pull/1522#pullrequestreview-655033528) at 2021-05-08 06:48 PM PDT -qiqicodes,2021-05-09T02:00:11Z,- qiqicodes commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-835626657) at 2021-05-08 07:00 PM PDT -qiqicodes,2021-05-09T02:03:42Z,- qiqicodes commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-835627791) at 2021-05-08 07:03 PM PDT -qiqicodes,2021-05-09T02:05:01Z,- qiqicodes commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-835628256) at 2021-05-08 07:05 PM PDT -qiqicodes,2021-05-09T02:07:37Z,- qiqicodes commented on issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-835629158) at 2021-05-08 07:07 PM PDT -qiqicodes,2021-05-09T02:10:30Z,- qiqicodes commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-835630221) at 2021-05-08 07:10 PM PDT -qiqicodes,2021-05-09T02:15:43Z,- qiqicodes commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-835631945) at 2021-05-08 07:15 PM PDT -qiqicodes,2021-05-09T02:17:51Z,- qiqicodes commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-835632636) at 2021-05-08 07:17 PM PDT -qiqicodes,2021-05-09T02:19:37Z,- qiqicodes commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-835633196) at 2021-05-08 07:19 PM PDT -qiqicodes,2021-05-09T07:10:56Z,- qiqicodes opened pull request: [1533](https://github.com/hackforla/website/pull/1533) at 2021-05-09 12:10 AM PDT -qiqicodes,2021-05-09T18:58:21Z,- qiqicodes opened issue: [1534](https://github.com/hackforla/website/issues/1534) at 2021-05-09 11:58 AM PDT -qiqicodes,2021-05-09T23:47:44Z,- qiqicodes pull request merged: [1533](https://github.com/hackforla/website/pull/1533#event-4712268667) at 2021-05-09 04:47 PM PDT -qiqicodes,2021-05-10T00:33:58Z,- qiqicodes submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-655140617) at 2021-05-09 05:33 PM PDT -qiqicodes,2021-05-10T17:25:44Z,- qiqicodes commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837004839) at 2021-05-10 10:25 AM PDT -qiqicodes,2021-05-10T19:46:47Z,- qiqicodes commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837225442) at 2021-05-10 12:46 PM PDT -qiqicodes,2021-05-10T19:52:28Z,- qiqicodes commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-837234017) at 2021-05-10 12:52 PM PDT -qiqicodes,2021-05-10T20:01:53Z,- qiqicodes commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-837247525) at 2021-05-10 01:01 PM PDT -qiqicodes,2021-05-10T23:50:11Z,- qiqicodes commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837512672) at 2021-05-10 04:50 PM PDT -qiqicodes,2021-05-11T05:41:18Z,- qiqicodes opened pull request: [1539](https://github.com/hackforla/website/pull/1539) at 2021-05-10 10:41 PM PDT -qiqicodes,2021-05-11T16:55:32Z,- qiqicodes assigned to issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-835094843) at 2021-05-11 09:55 AM PDT -qiqicodes,2021-05-11T20:43:22Z,- qiqicodes pull request merged: [1539](https://github.com/hackforla/website/pull/1539#event-4731362494) at 2021-05-11 01:43 PM PDT -qiqicodes,2021-05-12T02:53:46Z,- qiqicodes assigned to issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-05-11 07:53 PM PDT -qiqicodes,2021-05-12T02:54:09Z,- qiqicodes unassigned from issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-05-11 07:54 PM PDT -qiqicodes,2021-05-12T02:59:06Z,- qiqicodes commented on issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-839395226) at 2021-05-11 07:59 PM PDT -qiqicodes,2021-05-15T08:03:22Z,- qiqicodes commented on issue: [1521](https://github.com/hackforla/website/issues/1521#issuecomment-841619312) at 2021-05-15 01:03 AM PDT -qiqicodes,2021-05-15T08:04:04Z,- qiqicodes commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-841619390) at 2021-05-15 01:04 AM PDT -qiqicodes,2021-05-15T08:09:37Z,- qiqicodes commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-841620159) at 2021-05-15 01:09 AM PDT -qiqicodes,2021-05-15T08:14:49Z,- qiqicodes commented on issue: [1439](https://github.com/hackforla/website/issues/1439#issuecomment-841620824) at 2021-05-15 01:14 AM PDT -qiqicodes,2021-05-15T08:18:39Z,- qiqicodes commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-841621245) at 2021-05-15 01:18 AM PDT -qiqicodes,2021-05-15T08:19:46Z,- qiqicodes commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-841621377) at 2021-05-15 01:19 AM PDT -qiqicodes,2021-05-15T08:21:30Z,- qiqicodes commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-841621562) at 2021-05-15 01:21 AM PDT -qiqicodes,2021-05-15T08:23:35Z,- qiqicodes commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-841621769) at 2021-05-15 01:23 AM PDT -qiqicodes,2021-05-15T08:24:42Z,- qiqicodes commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-841621895) at 2021-05-15 01:24 AM PDT -qiqicodes,2021-05-15T08:26:16Z,- qiqicodes commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-841622094) at 2021-05-15 01:26 AM PDT -qiqicodes,2021-05-15T08:27:48Z,- qiqicodes commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-841622266) at 2021-05-15 01:27 AM PDT -qiqicodes,2021-05-15T08:28:39Z,- qiqicodes commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-841622375) at 2021-05-15 01:28 AM PDT -qiqicodes,2021-05-15T08:29:41Z,- qiqicodes commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-841622494) at 2021-05-15 01:29 AM PDT -qiqicodes,2021-05-15T08:31:50Z,- qiqicodes commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-841622724) at 2021-05-15 01:31 AM PDT -qiqicodes,2021-05-15T08:35:01Z,- qiqicodes submitted pull request review: [1541](https://github.com/hackforla/website/pull/1541#pullrequestreview-660320140) at 2021-05-15 01:35 AM PDT -qiqicodes,2021-05-15T08:35:15Z,- qiqicodes closed issue by PR 1541: [1346](https://github.com/hackforla/website/issues/1346#event-4749731143) at 2021-05-15 01:35 AM PDT -qiqicodes,2021-05-16T09:53:49Z,- qiqicodes commented on issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-841794111) at 2021-05-16 02:53 AM PDT -qiqicodes,2021-05-17T08:09:19Z,- qiqicodes opened issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-05-17 01:09 AM PDT -qiqicodes,2021-05-17T08:10:07Z,- qiqicodes opened issue: [1559](https://github.com/hackforla/website/issues/1559) at 2021-05-17 01:10 AM PDT -qiqicodes,2021-05-17T08:12:46Z,- qiqicodes opened issue: [1560](https://github.com/hackforla/website/issues/1560) at 2021-05-17 01:12 AM PDT -qiqicodes,2021-05-17T08:16:48Z,- qiqicodes opened issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-05-17 01:16 AM PDT -qiqicodes,2021-05-17T08:19:17Z,- qiqicodes opened issue: [1562](https://github.com/hackforla/website/issues/1562) at 2021-05-17 01:19 AM PDT -qiqicodes,2021-05-17T08:23:24Z,- qiqicodes opened issue: [1563](https://github.com/hackforla/website/issues/1563) at 2021-05-17 01:23 AM PDT -qiqicodes,2021-05-17T08:26:17Z,- qiqicodes opened issue: [1564](https://github.com/hackforla/website/issues/1564) at 2021-05-17 01:26 AM PDT -qiqicodes,2021-05-17T08:37:08Z,- qiqicodes opened issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-05-17 01:37 AM PDT -qiqicodes,2021-05-17T08:39:03Z,- qiqicodes opened issue: [1566](https://github.com/hackforla/website/issues/1566) at 2021-05-17 01:39 AM PDT -qiqicodes,2021-05-17T08:40:44Z,- qiqicodes opened issue: [1567](https://github.com/hackforla/website/issues/1567) at 2021-05-17 01:40 AM PDT -qiqicodes,2021-05-17T08:45:14Z,- qiqicodes opened issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-05-17 01:45 AM PDT -qiqicodes,2021-05-17T08:47:15Z,- qiqicodes opened issue: [1569](https://github.com/hackforla/website/issues/1569) at 2021-05-17 01:47 AM PDT -qiqicodes,2021-05-17T08:55:21Z,- qiqicodes opened issue: [1570](https://github.com/hackforla/website/issues/1570) at 2021-05-17 01:55 AM PDT -qiqicodes,2021-05-17T09:02:08Z,- qiqicodes opened issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-05-17 02:02 AM PDT -qiqicodes,2021-05-17T09:06:58Z,- qiqicodes opened issue: [1572](https://github.com/hackforla/website/issues/1572) at 2021-05-17 02:06 AM PDT -qiqicodes,2021-05-17T09:13:41Z,- qiqicodes opened issue: [1573](https://github.com/hackforla/website/issues/1573) at 2021-05-17 02:13 AM PDT -qiqicodes,2021-05-17T09:15:22Z,- qiqicodes opened issue: [1574](https://github.com/hackforla/website/issues/1574) at 2021-05-17 02:15 AM PDT -qiqicodes,2021-05-17T09:17:41Z,- qiqicodes opened issue: [1575](https://github.com/hackforla/website/issues/1575) at 2021-05-17 02:17 AM PDT -qiqicodes,2021-05-17T09:19:33Z,- qiqicodes opened issue: [1576](https://github.com/hackforla/website/issues/1576) at 2021-05-17 02:19 AM PDT -qiqicodes,2021-05-17T09:21:58Z,- qiqicodes opened issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-05-17 02:21 AM PDT -qiqicodes,2021-05-17T09:24:08Z,- qiqicodes opened issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-05-17 02:24 AM PDT -qiqicodes,2021-05-17T09:27:19Z,- qiqicodes opened issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-05-17 02:27 AM PDT -qiqicodes,2021-05-17T09:29:05Z,- qiqicodes opened issue: [1580](https://github.com/hackforla/website/issues/1580) at 2021-05-17 02:29 AM PDT -qiqicodes,2021-05-17T09:35:49Z,- qiqicodes opened issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-05-17 02:35 AM PDT -qiqicodes,2021-05-17T09:38:49Z,- qiqicodes opened issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-05-17 02:38 AM PDT -qiqicodes,2021-05-17T09:41:09Z,- qiqicodes opened issue: [1583](https://github.com/hackforla/website/issues/1583) at 2021-05-17 02:41 AM PDT -qiqicodes,2021-05-17T09:43:35Z,- qiqicodes opened issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-05-17 02:43 AM PDT -qiqicodes,2021-05-17T09:45:48Z,- qiqicodes opened issue: [1585](https://github.com/hackforla/website/issues/1585) at 2021-05-17 02:45 AM PDT -qiqicodes,2021-05-17T09:48:21Z,- qiqicodes opened issue: [1586](https://github.com/hackforla/website/issues/1586) at 2021-05-17 02:48 AM PDT -qiqicodes,2021-05-17T09:51:14Z,- qiqicodes opened issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-05-17 02:51 AM PDT -qiqicodes,2021-05-17T09:53:17Z,- qiqicodes opened issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-17 02:53 AM PDT -qiqicodes,2021-05-17T09:56:19Z,- qiqicodes commented on issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-842190049) at 2021-05-17 02:56 AM PDT -qiqicodes,2021-05-17T09:56:19Z,- qiqicodes closed issue as completed: [1526](https://github.com/hackforla/website/issues/1526#event-4753565410) at 2021-05-17 02:56 AM PDT -qiqicodes,2021-05-18T19:21:43Z,- qiqicodes commented on pull request: [1589](https://github.com/hackforla/website/pull/1589#issuecomment-843467876) at 2021-05-18 12:21 PM PDT -qiqicodes,2021-05-18T19:55:18Z,- qiqicodes submitted pull request review: [1557](https://github.com/hackforla/website/pull/1557#pullrequestreview-662515647) at 2021-05-18 12:55 PM PDT -qiqicodes,2021-05-19T02:45:05Z,- qiqicodes commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-843701578) at 2021-05-18 07:45 PM PDT -qiqicodes,2021-05-19T02:50:30Z,- qiqicodes commented on pull request: [1557](https://github.com/hackforla/website/pull/1557#issuecomment-843703303) at 2021-05-18 07:50 PM PDT -qiqicodes,2021-05-19T02:55:01Z,- qiqicodes assigned to issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-841860254) at 2021-05-18 07:55 PM PDT -qiqicodes,2021-05-21T19:58:37Z,- qiqicodes submitted pull request review: [1591](https://github.com/hackforla/website/pull/1591#pullrequestreview-665841321) at 2021-05-21 12:58 PM PDT -qiqicodes,2021-05-21T22:22:56Z,- qiqicodes closed issue by PR 1557: [1554](https://github.com/hackforla/website/issues/1554#event-4781553620) at 2021-05-21 03:22 PM PDT -qiqicodes,2021-05-22T21:07:32Z,- qiqicodes submitted pull request review: [1604](https://github.com/hackforla/website/pull/1604#pullrequestreview-666211102) at 2021-05-22 02:07 PM PDT -qiqicodes,2021-05-22T21:07:49Z,- qiqicodes closed issue by PR 1604: [1588](https://github.com/hackforla/website/issues/1588#event-4782712330) at 2021-05-22 02:07 PM PDT -qiqicodes,2021-05-23T01:10:26Z,- qiqicodes closed issue by PR 1591: [1506](https://github.com/hackforla/website/issues/1506#event-4782842911) at 2021-05-22 06:10 PM PDT -qiqicodes,2021-05-23T01:20:54Z,- qiqicodes submitted pull request review: [1603](https://github.com/hackforla/website/pull/1603#pullrequestreview-666221101) at 2021-05-22 06:20 PM PDT -qiqicodes,2021-05-23T01:22:06Z,- qiqicodes submitted pull request review: [1603](https://github.com/hackforla/website/pull/1603#pullrequestreview-666221155) at 2021-05-22 06:22 PM PDT -qiqicodes,2021-05-23T01:23:57Z,- qiqicodes submitted pull request review: [1603](https://github.com/hackforla/website/pull/1603#pullrequestreview-666221229) at 2021-05-22 06:23 PM PDT -qiqicodes,2021-05-23T10:35:26Z,- qiqicodes unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-822023219) at 2021-05-23 03:35 AM PDT -qiqicodes,2021-05-23T11:14:57Z,- qiqicodes commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-846545768) at 2021-05-23 04:14 AM PDT -qiqicodes,2021-05-23T18:34:35Z,- qiqicodes commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846605916) at 2021-05-23 11:34 AM PDT -qiqicodes,2021-05-25T23:49:42Z,- qiqicodes commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-848348370) at 2021-05-25 04:49 PM PDT -qiqicodes,2021-05-30T04:55:56Z,- qiqicodes commented on issue: [1456](https://github.com/hackforla/website/issues/1456#issuecomment-850939892) at 2021-05-29 09:55 PM PDT -qiqicodes,2021-05-30T05:00:08Z,- qiqicodes commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-850940206) at 2021-05-29 10:00 PM PDT -qiqicodes,2021-05-30T05:03:43Z,- qiqicodes commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-850940481) at 2021-05-29 10:03 PM PDT -qiqicodes,2021-05-30T05:04:19Z,- qiqicodes commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-850940533) at 2021-05-29 10:04 PM PDT -qiqicodes,2021-06-10T20:14:29Z,- qiqicodes commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-859013854) at 2021-06-10 01:14 PM PDT -qiqicodes,2021-06-11T02:12:32Z,- qiqicodes commented on pull request: [1706](https://github.com/hackforla/website/pull/1706#issuecomment-859210445) at 2021-06-10 07:12 PM PDT -qiqicodes,2021-06-13T11:37:41Z,- qiqicodes opened pull request: [1732](https://github.com/hackforla/website/pull/1732) at 2021-06-13 04:37 AM PDT -qiqicodes,2021-06-13T11:40:40Z,- qiqicodes commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-860196902) at 2021-06-13 04:40 AM PDT -qiqicodes,2021-06-13T11:59:08Z,- qiqicodes submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-682402624) at 2021-06-13 04:59 AM PDT -qiqicodes,2021-06-13T21:30:32Z,- qiqicodes commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-860272868) at 2021-06-13 02:30 PM PDT -qiqicodes,2021-06-17T00:35:45Z,- qiqicodes pull request closed w/o merging: [1732](https://github.com/hackforla/website/pull/1732#event-4901073326) at 2021-06-16 05:35 PM PDT -qiqicodes,2021-06-17T04:24:01Z,- qiqicodes commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-862912418) at 2021-06-16 09:24 PM PDT -qiqicodes,2021-06-18T04:18:08Z,- qiqicodes submitted pull request review: [1771](https://github.com/hackforla/website/pull/1771#pullrequestreview-687016935) at 2021-06-17 09:18 PM PDT -qiqicodes,2021-06-25T17:07:22Z,- qiqicodes unassigned from issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-860121310) at 2021-06-25 10:07 AM PDT -qiqicodes,2021-07-12T04:08:08Z,- qiqicodes pull request closed w/o merging: [1732](https://github.com/hackforla/website/pull/1732#event-5005115490) at 2021-07-11 09:08 PM PDT -qiqicodes,2021-07-12T09:03:46Z,- qiqicodes submitted pull request review: [1924](https://github.com/hackforla/website/pull/1924#pullrequestreview-703881865) at 2021-07-12 02:03 AM PDT -qiqicodes,2024-02-13T03:56:45Z,- qiqicodes opened issue: [6285](https://github.com/hackforla/website/issues/6285) at 2024-02-12 07:56 PM PST -qiqicodes,2024-02-18T01:42:21Z,- qiqicodes commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950740219) at 2024-02-17 05:42 PM PST -qiqicodes,2024-02-18T01:44:33Z,- qiqicodes commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950743449) at 2024-02-17 05:44 PM PST -qiqicodes,2024-02-18T02:23:23Z,- qiqicodes commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950802158) at 2024-02-17 06:23 PM PST -qngyn,4162,SKILLS ISSUE -qngyn,2023-03-14T03:04:46Z,- qngyn opened issue: [4162](https://github.com/hackforla/website/issues/4162) at 2023-03-13 08:04 PM PDT -qngyn,2023-03-14T03:06:37Z,- qngyn opened issue: [4167](https://github.com/hackforla/website/issues/4167) at 2023-03-13 08:06 PM PDT -qngyn,2023-03-14T03:26:11Z,- qngyn assigned to issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1467281723) at 2023-03-13 08:26 PM PDT -qngyn,2023-03-29T19:12:15Z,- qngyn assigned to issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1488146932) at 2023-03-29 12:12 PM PDT -qngyn,2023-04-01T06:40:01Z,- qngyn commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1492852567) at 2023-03-31 11:40 PM PDT -qngyn,2023-04-01T06:45:51Z,- qngyn commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1492853555) at 2023-03-31 11:45 PM PDT -qngyn,2023-04-08T15:16:17Z,- qngyn assigned to issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1489641582) at 2023-04-08 08:16 AM PDT -qngyn,2023-04-08T15:32:04Z,- qngyn commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1500915557) at 2023-04-08 08:32 AM PDT -qngyn,2023-04-15T02:11:07Z,- qngyn unassigned from issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1509468696) at 2023-04-14 07:11 PM PDT -qngyn,2023-05-15T01:19:33Z,- qngyn unassigned from issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1547063903) at 2023-05-14 06:19 PM PDT -quyenvhle,2021-01-13T15:15:26Z,- quyenvhle assigned to issue: [953](https://github.com/hackforla/website/issues/953) at 2021-01-13 07:15 AM PST -quyenvhle,2021-01-15T23:21:02Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-761248700) at 2021-01-15 03:21 PM PST -quyenvhle,2021-01-20T07:36:36Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-763401544) at 2021-01-19 11:36 PM PST -quyenvhle,2021-01-21T03:45:42Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764215827) at 2021-01-20 07:45 PM PST -quyenvhle,2021-01-21T18:12:38Z,- quyenvhle unassigned from issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764833019) at 2021-01-21 10:12 AM PST -quyenvhle,2021-02-08T02:11:23Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774821388) at 2021-02-07 06:11 PM PST -quyson,6335,SKILLS ISSUE -quyson,2024-02-21T03:35:46Z,- quyson opened issue: [6335](https://github.com/hackforla/website/issues/6335) at 2024-02-20 07:35 PM PST -quyson,2024-02-21T04:16:42Z,- quyson assigned to issue: [6335](https://github.com/hackforla/website/issues/6335) at 2024-02-20 08:16 PM PST -R-Tomas-Gonzalez,2021-09-13T00:00:16Z,- R-Tomas-Gonzalez assigned to issue: [1585](https://github.com/hackforla/website/issues/1585#issuecomment-871646164) at 2021-09-12 05:00 PM PDT -R-Tomas-Gonzalez,2021-09-13T03:55:21Z,- R-Tomas-Gonzalez opened pull request: [2254](https://github.com/hackforla/website/pull/2254) at 2021-09-12 08:55 PM PDT -R-Tomas-Gonzalez,2021-09-13T21:04:35Z,- R-Tomas-Gonzalez assigned to issue: [2048](https://github.com/hackforla/website/issues/2048) at 2021-09-13 02:04 PM PDT -R-Tomas-Gonzalez,2021-09-13T22:03:11Z,- R-Tomas-Gonzalez opened pull request: [2256](https://github.com/hackforla/website/pull/2256) at 2021-09-13 03:03 PM PDT -R-Tomas-Gonzalez,2021-09-14T02:47:17Z,- R-Tomas-Gonzalez pull request closed w/o merging: [2256](https://github.com/hackforla/website/pull/2256#event-5296697309) at 2021-09-13 07:47 PM PDT -R-Tomas-Gonzalez,2021-09-14T02:48:55Z,- R-Tomas-Gonzalez unassigned from issue: [2048](https://github.com/hackforla/website/issues/2048) at 2021-09-13 07:48 PM PDT -R-Tomas-Gonzalez,2021-09-14T03:09:21Z,- R-Tomas-Gonzalez commented on pull request: [2254](https://github.com/hackforla/website/pull/2254#issuecomment-918758611) at 2021-09-13 08:09 PM PDT -R-Tomas-Gonzalez,2021-09-14T04:02:38Z,- R-Tomas-Gonzalez commented on pull request: [2254](https://github.com/hackforla/website/pull/2254#issuecomment-918779503) at 2021-09-13 09:02 PM PDT -R-Tomas-Gonzalez,2021-09-14T04:03:04Z,- R-Tomas-Gonzalez pull request merged: [2254](https://github.com/hackforla/website/pull/2254#event-5296887577) at 2021-09-13 09:03 PM PDT -R-Tomas-Gonzalez,2021-09-15T03:42:34Z,- R-Tomas-Gonzalez assigned to issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-901434667) at 2021-09-14 08:42 PM PDT -R-Tomas-Gonzalez,2021-09-17T22:28:44Z,- R-Tomas-Gonzalez assigned to issue: [2180](https://github.com/hackforla/website/issues/2180) at 2021-09-17 03:28 PM PDT -R-Tomas-Gonzalez,2021-09-17T22:33:44Z,- R-Tomas-Gonzalez unassigned from issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-921551162) at 2021-09-17 03:33 PM PDT -R-Tomas-Gonzalez,2021-09-23T15:24:26Z,- R-Tomas-Gonzalez commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-925918251) at 2021-09-23 08:24 AM PDT -R-Tomas-Gonzalez,2021-10-01T19:49:14Z,- R-Tomas-Gonzalez submitted pull request review: [2305](https://github.com/hackforla/website/pull/2305#pullrequestreview-769325274) at 2021-10-01 12:49 PM PDT -R-Tomas-Gonzalez,2021-10-01T22:05:06Z,- R-Tomas-Gonzalez opened pull request: [2324](https://github.com/hackforla/website/pull/2324) at 2021-10-01 03:05 PM PDT -R-Tomas-Gonzalez,2021-10-01T22:14:51Z,- R-Tomas-Gonzalez commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-932607933) at 2021-10-01 03:14 PM PDT -R-Tomas-Gonzalez,2021-10-05T23:33:15Z,- R-Tomas-Gonzalez commented on pull request: [2324](https://github.com/hackforla/website/pull/2324#issuecomment-935075332) at 2021-10-05 04:33 PM PDT -R-Tomas-Gonzalez,2021-10-14T03:13:12Z,- R-Tomas-Gonzalez pull request merged: [2324](https://github.com/hackforla/website/pull/2324#event-5460985862) at 2021-10-13 08:13 PM PDT -R-Tomas-Gonzalez,2021-10-19T19:49:08Z,- R-Tomas-Gonzalez opened pull request: [2375](https://github.com/hackforla/website/pull/2375) at 2021-10-19 12:49 PM PDT -R-Tomas-Gonzalez,2021-10-20T03:05:12Z,- R-Tomas-Gonzalez assigned to issue: [2289](https://github.com/hackforla/website/issues/2289) at 2021-10-19 08:05 PM PDT -R-Tomas-Gonzalez,2021-10-20T22:38:27Z,- R-Tomas-Gonzalez commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-948089208) at 2021-10-20 03:38 PM PDT -R-Tomas-Gonzalez,2021-10-25T20:31:57Z,- R-Tomas-Gonzalez unassigned from issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-949347959) at 2021-10-25 01:31 PM PDT -R-Tomas-Gonzalez,2021-10-26T16:53:26Z,- R-Tomas-Gonzalez commented on pull request: [2375](https://github.com/hackforla/website/pull/2375#issuecomment-952128612) at 2021-10-26 09:53 AM PDT -R-Tomas-Gonzalez,2021-10-28T05:49:35Z,- R-Tomas-Gonzalez pull request merged: [2375](https://github.com/hackforla/website/pull/2375#event-5531628710) at 2021-10-27 10:49 PM PDT -R-Tomas-Gonzalez,2021-11-14T17:55:49Z,- R-Tomas-Gonzalez opened issue: [2480](https://github.com/hackforla/website/issues/2480) at 2021-11-14 09:55 AM PST -R-Tomas-Gonzalez,2021-12-05T22:22:03Z,- R-Tomas-Gonzalez commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-986311298) at 2021-12-05 02:22 PM PST -R-Tomas-Gonzalez,2021-12-07T05:05:45Z,- R-Tomas-Gonzalez opened issue: [2554](https://github.com/hackforla/website/issues/2554) at 2021-12-06 09:05 PM PST -R-Tomas-Gonzalez,2021-12-07T06:14:56Z,- R-Tomas-Gonzalez opened issue: [2555](https://github.com/hackforla/website/issues/2555) at 2021-12-06 10:14 PM PST -R-Tomas-Gonzalez,2021-12-09T04:06:58Z,- R-Tomas-Gonzalez submitted pull request review: [2373](https://github.com/hackforla/website/pull/2373#pullrequestreview-827182694) at 2021-12-08 08:06 PM PST -R-Tomas-Gonzalez,2021-12-09T04:16:03Z,- R-Tomas-Gonzalez submitted pull request review: [2545](https://github.com/hackforla/website/pull/2545#pullrequestreview-827185991) at 2021-12-08 08:16 PM PST -R-Tomas-Gonzalez,2021-12-09T04:20:18Z,- R-Tomas-Gonzalez closed issue by PR 2545: [2235](https://github.com/hackforla/website/issues/2235#event-5738204430) at 2021-12-08 08:20 PM PST -R-Tomas-Gonzalez,2021-12-09T20:10:48Z,- R-Tomas-Gonzalez submitted pull request review: [2564](https://github.com/hackforla/website/pull/2564#pullrequestreview-828147439) at 2021-12-09 12:10 PM PST -R-Tomas-Gonzalez,2021-12-09T20:21:45Z,- R-Tomas-Gonzalez assigned to issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-971901436) at 2021-12-09 12:21 PM PST -R-Tomas-Gonzalez,2021-12-09T22:53:11Z,- R-Tomas-Gonzalez submitted pull request review: [2564](https://github.com/hackforla/website/pull/2564#pullrequestreview-828278791) at 2021-12-09 02:53 PM PST -R-Tomas-Gonzalez,2021-12-09T22:54:03Z,- R-Tomas-Gonzalez submitted pull request review: [2564](https://github.com/hackforla/website/pull/2564#pullrequestreview-828279354) at 2021-12-09 02:54 PM PST -R-Tomas-Gonzalez,2021-12-09T22:54:23Z,- R-Tomas-Gonzalez closed issue by PR 2564: [2236](https://github.com/hackforla/website/issues/2236#event-5744200743) at 2021-12-09 02:54 PM PST -R-Tomas-Gonzalez,2021-12-12T19:38:39Z,- R-Tomas-Gonzalez submitted pull request review: [2373](https://github.com/hackforla/website/pull/2373#pullrequestreview-829661919) at 2021-12-12 11:38 AM PST -R-Tomas-Gonzalez,2021-12-12T19:39:42Z,- R-Tomas-Gonzalez commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-991957887) at 2021-12-12 11:39 AM PST -R-Tomas-Gonzalez,2021-12-19T02:29:28Z,- R-Tomas-Gonzalez opened issue: [2604](https://github.com/hackforla/website/issues/2604) at 2021-12-18 06:29 PM PST -R-Tomas-Gonzalez,2021-12-19T03:22:13Z,- R-Tomas-Gonzalez opened issue: [2605](https://github.com/hackforla/website/issues/2605) at 2021-12-18 07:22 PM PST -R-Tomas-Gonzalez,2021-12-19T03:51:56Z,- R-Tomas-Gonzalez opened issue: [2606](https://github.com/hackforla/website/issues/2606) at 2021-12-18 07:51 PM PST -R-Tomas-Gonzalez,2021-12-19T04:17:52Z,- R-Tomas-Gonzalez commented on pull request: [2588](https://github.com/hackforla/website/pull/2588#issuecomment-997326985) at 2021-12-18 08:17 PM PST -R-Tomas-Gonzalez,2021-12-19T04:18:08Z,- R-Tomas-Gonzalez closed issue by PR 2588: [2457](https://github.com/hackforla/website/issues/2457#event-5788721319) at 2021-12-18 08:18 PM PST -R-Tomas-Gonzalez,2021-12-19T18:43:53Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-997441145) at 2021-12-19 10:43 AM PST -R-Tomas-Gonzalez,2021-12-20T01:28:55Z,- R-Tomas-Gonzalez assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 05:28 PM PST -R-Tomas-Gonzalez,2021-12-20T04:14:38Z,- R-Tomas-Gonzalez commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-997579783) at 2021-12-19 08:14 PM PST -R-Tomas-Gonzalez,2021-12-20T18:07:56Z,- R-Tomas-Gonzalez commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-998155986) at 2021-12-20 10:07 AM PST -R-Tomas-Gonzalez,2021-12-21T02:37:54Z,- R-Tomas-Gonzalez commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-998421260) at 2021-12-20 06:37 PM PST -R-Tomas-Gonzalez,2021-12-21T03:16:18Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-998436388) at 2021-12-20 07:16 PM PST -R-Tomas-Gonzalez,2021-12-22T03:12:14Z,- R-Tomas-Gonzalez closed issue by PR 2599: [2465](https://github.com/hackforla/website/issues/2465#event-5802361334) at 2021-12-21 07:12 PM PST -R-Tomas-Gonzalez,2021-12-23T16:36:01Z,- R-Tomas-Gonzalez submitted pull request review: [2603](https://github.com/hackforla/website/pull/2603#pullrequestreview-839490860) at 2021-12-23 08:36 AM PST -R-Tomas-Gonzalez,2021-12-23T16:38:57Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1000415388) at 2021-12-23 08:38 AM PST -R-Tomas-Gonzalez,2021-12-23T16:57:26Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1000424312) at 2021-12-23 08:57 AM PST -R-Tomas-Gonzalez,2021-12-23T17:02:17Z,- R-Tomas-Gonzalez commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1000426663) at 2021-12-23 09:02 AM PST -R-Tomas-Gonzalez,2022-01-06T21:46:54Z,- R-Tomas-Gonzalez assigned to issue: [2663](https://github.com/hackforla/website/issues/2663) at 2022-01-06 01:46 PM PST -R-Tomas-Gonzalez,2022-01-08T23:14:58Z,- R-Tomas-Gonzalez submitted pull request review: [2646](https://github.com/hackforla/website/pull/2646#pullrequestreview-847201640) at 2022-01-08 03:14 PM PST -R-Tomas-Gonzalez,2022-01-08T23:18:42Z,- R-Tomas-Gonzalez closed issue by PR 2646: [2488](https://github.com/hackforla/website/issues/2488#event-5861725851) at 2022-01-08 03:18 PM PST -R-Tomas-Gonzalez,2022-01-08T23:49:10Z,- R-Tomas-Gonzalez submitted pull request review: [2644](https://github.com/hackforla/website/pull/2644#pullrequestreview-847202955) at 2022-01-08 03:49 PM PST -R-Tomas-Gonzalez,2022-01-09T16:39:03Z,- R-Tomas-Gonzalez commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1008332704) at 2022-01-09 08:39 AM PST -R-Tomas-Gonzalez,2022-01-10T21:31:29Z,- R-Tomas-Gonzalez submitted pull request review: [2644](https://github.com/hackforla/website/pull/2644#pullrequestreview-848378832) at 2022-01-10 01:31 PM PST -R-Tomas-Gonzalez,2022-01-16T19:31:32Z,- R-Tomas-Gonzalez assigned to issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1013937251) at 2022-01-16 11:31 AM PST -R-Tomas-Gonzalez,2022-01-16T20:08:35Z,- R-Tomas-Gonzalez unassigned from issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1006958269) at 2022-01-16 12:08 PM PST -R-Tomas-Gonzalez,2022-01-16T20:11:35Z,- R-Tomas-Gonzalez unassigned from issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-971901436) at 2022-01-16 12:11 PM PST -R-Tomas-Gonzalez,2022-01-23T19:32:03Z,- R-Tomas-Gonzalez commented on pull request: [2644](https://github.com/hackforla/website/pull/2644#issuecomment-1019551981) at 2022-01-23 11:32 AM PST -R-Tomas-Gonzalez,2022-01-23T20:22:38Z,- R-Tomas-Gonzalez opened pull request: [2713](https://github.com/hackforla/website/pull/2713) at 2022-01-23 12:22 PM PST -R-Tomas-Gonzalez,2022-01-27T00:44:10Z,- R-Tomas-Gonzalez assigned to issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1006958269) at 2022-01-26 04:44 PM PST -R-Tomas-Gonzalez,2022-01-27T01:22:06Z,- R-Tomas-Gonzalez commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1022756785) at 2022-01-26 05:22 PM PST -R-Tomas-Gonzalez,2022-01-27T01:22:12Z,- R-Tomas-Gonzalez unassigned from issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1022756785) at 2022-01-26 05:22 PM PST -R-Tomas-Gonzalez,2022-01-27T01:25:35Z,- R-Tomas-Gonzalez commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1022758617) at 2022-01-26 05:25 PM PST -R-Tomas-Gonzalez,2022-02-07T00:50:04Z,- R-Tomas-Gonzalez commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1030962019) at 2022-02-06 04:50 PM PST -R-Tomas-Gonzalez,2022-02-07T01:04:00Z,- R-Tomas-Gonzalez pull request merged: [2713](https://github.com/hackforla/website/pull/2713#event-6015852979) at 2022-02-06 05:04 PM PST -R-Tomas-Gonzalez,2022-02-13T00:08:16Z,- R-Tomas-Gonzalez unassigned from issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1036841950) at 2022-02-12 04:08 PM PST -Rabia2219,2022-12-02T21:19:08Z,- Rabia2219 opened issue: [3763](https://github.com/hackforla/website/issues/3763) at 2022-12-02 01:19 PM PST -Rabia2219,2022-12-02T22:15:28Z,- Rabia2219 commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1335917092) at 2022-12-02 02:15 PM PST -Rabia2219,2022-12-02T22:20:13Z,- Rabia2219 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1335920117) at 2022-12-02 02:20 PM PST -Rabia2219,2022-12-02T22:23:53Z,- Rabia2219 commented on issue: [3706](https://github.com/hackforla/website/issues/3706#issuecomment-1335922507) at 2022-12-02 02:23 PM PST -Rabia2219,2022-12-05T15:16:30Z,- Rabia2219 commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1337556984) at 2022-12-05 07:16 AM PST -Rabia2219,2023-01-06T14:51:25Z,- Rabia2219 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1373732221) at 2023-01-06 06:51 AM PST -Rabia2219,2023-02-07T18:55:01Z,- Rabia2219 opened issue: [3949](https://github.com/hackforla/website/issues/3949) at 2023-02-07 10:55 AM PST -Rabia2219,2023-12-01T16:03:44Z,- Rabia2219 opened issue: [5953](https://github.com/hackforla/website/issues/5953) at 2023-12-01 08:03 AM PST -Rabia2219,2024-06-14T06:32:47Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167320968) at 2024-06-13 11:32 PM PDT -Rabia2219,2024-06-14T08:20:12Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167508054) at 2024-06-14 01:20 AM PDT -Rabia2219,2024-06-14T09:17:23Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167609820) at 2024-06-14 02:17 AM PDT -Rabia2219,2024-06-14T09:23:15Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167620070) at 2024-06-14 02:23 AM PDT -Rabia2219,2024-06-14T09:26:54Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167627291) at 2024-06-14 02:26 AM PDT -Rabia2219,2024-06-14T09:30:05Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167633387) at 2024-06-14 02:30 AM PDT -Rabia2219,2024-06-14T09:32:05Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167636942) at 2024-06-14 02:32 AM PDT -Rabia2219,2024-06-20T10:02:37Z,- Rabia2219 commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2180295120) at 2024-06-20 03:02 AM PDT -Rabia2219,2024-08-15T17:07:39Z,- Rabia2219 commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2291734482) at 2024-08-15 10:07 AM PDT -Rabia2219,2024-09-17T18:39:57Z,- Rabia2219 assigned to issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:39 AM PDT -Rabia2219,2024-09-17T19:19:09Z,- Rabia2219 opened issue: [7486](https://github.com/hackforla/website/issues/7486) at 2024-09-17 12:19 PM PDT -Rabia2219,2024-10-03T16:55:41Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2391891032) at 2024-10-03 09:55 AM PDT -Rabia2219,2024-10-10T17:43:47Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2405702651) at 2024-10-10 10:43 AM PDT -Rabia2219,2024-10-10T17:50:31Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2405713973) at 2024-10-10 10:50 AM PDT -Rabia2219,2024-10-10T18:12:48Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2405752116) at 2024-10-10 11:12 AM PDT -Rabia2219,2024-10-20T12:04:07Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2424887496) at 2024-10-20 05:04 AM PDT -Rabia2219,2024-10-29T19:39:45Z,- Rabia2219 commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2445177219) at 2024-10-29 12:39 PM PDT -Rabia2219,2024-11-07T17:42:25Z,- Rabia2219 opened issue: [7710](https://github.com/hackforla/website/issues/7710) at 2024-11-07 09:42 AM PST -Rabia2219,2024-11-07T19:23:20Z,- Rabia2219 commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2463039430) at 2024-11-07 11:23 AM PST -Rabia2219,2024-11-07T19:31:39Z,- Rabia2219 assigned to issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2463039430) at 2024-11-07 11:31 AM PST -Rabia2219,2024-11-11T19:53:42Z,- Rabia2219 commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2468920141) at 2024-11-11 11:53 AM PST -Rabia2219,2024-11-17T18:33:12Z,- Rabia2219 unassigned from issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2468920141) at 2024-11-17 10:33 AM PST -Rabia2219,2025-01-06T19:40:53Z,- Rabia2219 opened issue: [7815](https://github.com/hackforla/website/issues/7815) at 2025-01-06 11:40 AM PST -Rabia2219,2025-02-17T17:32:22Z,- Rabia2219 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2663737127) at 2025-02-17 09:32 AM PST -Rabia2219,2025-02-25T01:08:43Z,- Rabia2219 assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -Rabia2219,2025-02-27T20:39:59Z,- Rabia2219 commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2689064412) at 2025-02-27 12:39 PM PST -Rabia2219,2025-02-27T20:41:36Z,- Rabia2219 opened issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-02-27 12:41 PM PST -Rabia2219,2025-02-28T21:07:57Z,- Rabia2219 commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2691547905) at 2025-02-28 01:07 PM PST -Rabia2219,2025-03-03T20:16:26Z,- Rabia2219 assigned to issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-03-03 12:16 PM PST -Rabia2219,2025-03-06T20:34:28Z,- Rabia2219 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2704881821) at 2025-03-06 12:34 PM PST -Rabia2219,2025-03-10T16:23:00Z,- Rabia2219 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2711147481) at 2025-03-10 09:23 AM PDT -Rabia2219,2025-03-19T18:25:41Z,- Rabia2219 commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2737635421) at 2025-03-19 11:25 AM PDT -Rabia2219,2025-06-05T17:03:56Z,- Rabia2219 opened issue: [8170](https://github.com/hackforla/website/issues/8170) at 2025-06-05 10:03 AM PDT -Rabia2219,2025-06-11T20:35:22Z,- Rabia2219 unassigned from issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-06-11 01:35 PM PDT -Rabia2219,2025-08-07T18:46:02Z,- Rabia2219 opened issue: [8256](https://github.com/hackforla/website/issues/8256) at 2025-08-07 11:46 AM PDT -Rabia2219,2025-08-07T18:46:20Z,- Rabia2219 commented on issue: [8256](https://github.com/hackforla/website/issues/8256#issuecomment-3165351215) at 2025-08-07 11:46 AM PDT -rachelcorawood,7278,SKILLS ISSUE -rachelcorawood,2024-08-13T14:56:25Z,- rachelcorawood opened issue: [7278](https://github.com/hackforla/website/issues/7278) at 2024-08-13 07:56 AM PDT -rachelcorawood,2024-08-13T18:26:20Z,- rachelcorawood assigned to issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2286464260) at 2024-08-13 11:26 AM PDT -rachelcorawood,2024-08-13T18:57:55Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2286926483) at 2024-08-13 11:57 AM PDT -rachelcorawood,2024-08-14T21:42:46Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2289967367) at 2024-08-14 02:42 PM PDT -rachelcorawood,2024-08-14T22:10:27Z,- rachelcorawood assigned to issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2282836847) at 2024-08-14 03:10 PM PDT -rachelcorawood,2024-08-14T22:10:40Z,- rachelcorawood unassigned from issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2282836847) at 2024-08-14 03:10 PM PDT -rachelcorawood,2024-08-14T22:17:13Z,- rachelcorawood assigned to issue: [7252](https://github.com/hackforla/website/issues/7252) at 2024-08-14 03:17 PM PDT -rachelcorawood,2024-08-15T18:27:26Z,- rachelcorawood commented on issue: [7252](https://github.com/hackforla/website/issues/7252#issuecomment-2291914433) at 2024-08-15 11:27 AM PDT -rachelcorawood,2024-08-15T20:41:37Z,- rachelcorawood opened pull request: [7298](https://github.com/hackforla/website/pull/7298) at 2024-08-15 01:41 PM PDT -rachelcorawood,2024-09-06T00:42:46Z,- rachelcorawood opened pull request: [7405](https://github.com/hackforla/website/pull/7405) at 2024-09-05 05:42 PM PDT -rachelcorawood,2024-09-06T19:45:06Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2334708224) at 2024-09-06 12:45 PM PDT -rachelcorawood,2024-09-06T19:53:18Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2334718567) at 2024-09-06 12:53 PM PDT -rachelcorawood,2024-09-06T19:57:36Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2334724395) at 2024-09-06 12:57 PM PDT -rachelcorawood,2024-09-12T20:14:46Z,- rachelcorawood pull request closed w/o merging: [7298](https://github.com/hackforla/website/pull/7298#event-14238448428) at 2024-09-12 01:14 PM PDT -rachelcorawood,2024-09-17T16:55:35Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2356444829) at 2024-09-17 09:55 AM PDT -rachelcorawood,2024-09-17T17:19:32Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2356488871) at 2024-09-17 10:19 AM PDT -rachelcorawood,2024-09-24T19:52:00Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2372243905) at 2024-09-24 12:52 PM PDT -rachelcorawood,2024-10-01T22:24:08Z,- rachelcorawood opened pull request: [7557](https://github.com/hackforla/website/pull/7557) at 2024-10-01 03:24 PM PDT -rachelcorawood,2024-10-01T22:25:23Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2387192366) at 2024-10-01 03:25 PM PDT -rachelcorawood,2024-10-01T22:25:23Z,- rachelcorawood pull request closed w/o merging: [7405](https://github.com/hackforla/website/pull/7405#event-14480250836) at 2024-10-01 03:25 PM PDT -rachelcorawood,2024-10-01T22:31:16Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2387199286) at 2024-10-01 03:31 PM PDT -rachelcorawood,2024-10-02T14:59:26Z,- rachelcorawood pull request merged: [7557](https://github.com/hackforla/website/pull/7557#event-14490276560) at 2024-10-02 07:59 AM PDT -rachelcorawood,2024-10-12T20:41:48Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2408694808) at 2024-10-12 01:41 PM PDT -rachelcorawood,2024-10-23T01:22:04Z,- rachelcorawood assigned to issue: [7541](https://github.com/hackforla/website/issues/7541) at 2024-10-22 06:22 PM PDT -rachelcorawood,2024-10-23T01:27:41Z,- rachelcorawood commented on issue: [7541](https://github.com/hackforla/website/issues/7541#issuecomment-2430611460) at 2024-10-22 06:27 PM PDT -rachelcorawood,2024-10-25T23:40:18Z,- rachelcorawood opened pull request: [7637](https://github.com/hackforla/website/pull/7637) at 2024-10-25 04:40 PM PDT -rachelcorawood,2024-10-28T23:47:08Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2442881723) at 2024-10-28 04:47 PM PDT -rachelcorawood,2024-11-04T20:24:23Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2455631432) at 2024-11-04 12:24 PM PST -rachelcorawood,2024-11-08T19:50:05Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2465637966) at 2024-11-08 11:50 AM PST -rachelcorawood,2024-11-08T19:57:50Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2465652304) at 2024-11-08 11:57 AM PST -rachelcorawood,2024-11-10T21:49:12Z,- rachelcorawood pull request merged: [7637](https://github.com/hackforla/website/pull/7637#event-15242132849) at 2024-11-10 01:49 PM PST -rachelcorawood,2024-11-20T22:02:25Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2489627777) at 2024-11-20 02:02 PM PST -rachelcorawood,2024-11-22T00:15:27Z,- rachelcorawood commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2492611589) at 2024-11-21 04:15 PM PST -rachelcorawood,2024-11-22T01:09:17Z,- rachelcorawood submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2453115486) at 2024-11-21 05:09 PM PST -rachelcorawood,2024-11-22T20:21:10Z,- rachelcorawood submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2455565673) at 2024-11-22 12:21 PM PST -rachelcorawood,2024-11-26T00:21:29Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2499300356) at 2024-11-25 04:21 PM PST -rachelcorawood,2024-11-26T00:42:58Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2499323170) at 2024-11-25 04:42 PM PST -rachelcorawood,2024-11-26T20:33:09Z,- rachelcorawood commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501870145) at 2024-11-26 12:33 PM PST -rachelcorawood,2024-11-26T20:54:00Z,- rachelcorawood submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462653708) at 2024-11-26 12:54 PM PST -rachelcorawood,2024-11-26T21:05:03Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2501933211) at 2024-11-26 01:05 PM PST -rachelcorawood,2024-11-27T19:29:52Z,- rachelcorawood commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504640132) at 2024-11-27 11:29 AM PST -rachelcorawood,2024-11-27T19:52:03Z,- rachelcorawood submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465855559) at 2024-11-27 11:52 AM PST -rachelcorawood,2024-11-27T20:01:52Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2504684357) at 2024-11-27 12:01 PM PST -rachelcorawood,2024-12-02T22:20:09Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2513073359) at 2024-12-02 02:20 PM PST -rachelcorawood,2024-12-02T22:54:52Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2513149307) at 2024-12-02 02:54 PM PST -rachelcorawood,2024-12-03T21:17:53Z,- rachelcorawood assigned to issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2436691275) at 2024-12-03 01:17 PM PST -rachelcorawood,2024-12-04T02:03:57Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2515999014) at 2024-12-03 06:03 PM PST -rachelcorawood,2024-12-10T22:54:03Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2533139086) at 2024-12-10 02:54 PM PST -rachelcorawood,2025-01-21T01:34:07Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2603452378) at 2025-01-20 05:34 PM PST -rachelcorawood,2025-01-27T17:44:36Z,- rachelcorawood unassigned from issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2614617347) at 2025-01-27 09:44 AM PST -rachelcorawood,2025-01-27T17:46:12Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2616494725) at 2025-01-27 09:46 AM PST -rachelcorawood,2025-03-19T22:22:25Z,- rachelcorawood assigned to issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2683814657) at 2025-03-19 03:22 PM PDT -rachelcorawood,2025-03-19T22:25:19Z,- rachelcorawood commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2738313424) at 2025-03-19 03:25 PM PDT -rachelcorawood,2025-03-24T16:53:43Z,- rachelcorawood commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2748794937) at 2025-03-24 09:53 AM PDT -rachitsgh,2023-09-20T07:50:28Z,- rachitsgh opened pull request: [5561](https://github.com/hackforla/website/pull/5561) at 2023-09-20 12:50 AM PDT -rachitsgh,2023-09-20T18:54:22Z,- rachitsgh pull request closed w/o merging: [5561](https://github.com/hackforla/website/pull/5561#event-10426726122) at 2023-09-20 11:54 AM PDT -raeraeicky,2025-01-31T01:12:31Z,- raeraeicky opened issue: [7863](https://github.com/hackforla/website/issues/7863) at 2025-01-30 05:12 PM PST -raeraeicky,2025-04-24T20:40:40Z,- raeraeicky opened issue: [8087](https://github.com/hackforla/website/issues/8087) at 2025-04-24 01:40 PM PDT -raeraeicky,2025-06-27T19:28:05Z,- raeraeicky opened issue: [8234](https://github.com/hackforla/website/issues/8234) at 2025-06-27 12:28 PM PDT -rafaelferreiranvr,7979,SKILLS ISSUE -rafaelferreiranvr,2025-03-04T05:01:00Z,- rafaelferreiranvr opened issue: [7979](https://github.com/hackforla/website/issues/7979) at 2025-03-03 09:01 PM PST -rafaelferreiranvr,2025-03-04T05:02:12Z,- rafaelferreiranvr assigned to issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2696209082) at 2025-03-03 09:02 PM PST -rafaelirangel,5227,SKILLS ISSUE -rafaelirangel,2023-08-15T03:45:23Z,- rafaelirangel opened issue: [5227](https://github.com/hackforla/website/issues/5227) at 2023-08-14 08:45 PM PDT -rafaelirangel,2023-08-15T03:51:02Z,- rafaelirangel assigned to issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1678386798) at 2023-08-14 08:51 PM PDT -rafaelirangel,2023-09-07T12:48:28Z,- rafaelirangel commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1710094221) at 2023-09-07 05:48 AM PDT -rafaelirangel,2023-09-07T13:38:00Z,- rafaelirangel assigned to issue: [5391](https://github.com/hackforla/website/issues/5391) at 2023-09-07 06:38 AM PDT -rafaelirangel,2023-10-03T18:25:15Z,- rafaelirangel unassigned from issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1743447532) at 2023-10-03 11:25 AM PDT -rajanarahul93,2025-03-22T16:11:07Z,- rajanarahul93 opened pull request: [8013](https://github.com/hackforla/website/pull/8013) at 2025-03-22 09:11 AM PDT -rajanarahul93,2025-03-22T16:11:20Z,- rajanarahul93 pull request closed w/o merging: [8013](https://github.com/hackforla/website/pull/8013#event-16940743527) at 2025-03-22 09:11 AM PDT -Rajwinder35,7220,SKILLS ISSUE -Rajwinder35,7222,SKILLS ISSUE -Rajwinder35,2024-08-06T04:06:56Z,- Rajwinder35 opened issue: [7220](https://github.com/hackforla/website/issues/7220) at 2024-08-05 09:06 PM PDT -Rajwinder35,2024-08-06T04:27:36Z,- Rajwinder35 opened issue: [7222](https://github.com/hackforla/website/issues/7222) at 2024-08-05 09:27 PM PDT -Rajwinder35,2024-08-06T11:25:51Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271059611) at 2024-08-06 04:25 AM PDT -Rajwinder35,2024-08-06T11:35:03Z,- Rajwinder35 closed issue as completed: [7222](https://github.com/hackforla/website/issues/7222#event-13777262138) at 2024-08-06 04:35 AM PDT -Rajwinder35,2024-08-06T16:08:09Z,- Rajwinder35 assigned to issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271059611) at 2024-08-06 09:08 AM PDT -Rajwinder35,2024-08-20T06:25:33Z,- Rajwinder35 assigned to issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-08-19 11:25 PM PDT -Rajwinder35,2024-08-20T06:39:36Z,- Rajwinder35 commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2298081043) at 2024-08-19 11:39 PM PDT -Rajwinder35,2024-08-20T06:47:31Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298092216) at 2024-08-19 11:47 PM PDT -Rajwinder35,2024-08-20T10:20:01Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298504858) at 2024-08-20 03:20 AM PDT -Rajwinder35,2024-08-20T11:09:48Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298594731) at 2024-08-20 04:09 AM PDT -Rajwinder35,2024-08-20T11:37:09Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298643007) at 2024-08-20 04:37 AM PDT -Rajwinder35,2024-08-20T12:02:10Z,- Rajwinder35 assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2277285129) at 2024-08-20 05:02 AM PDT -Rajwinder35,2024-08-20T12:02:26Z,- Rajwinder35 unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-08-20 05:02 AM PDT -Rajwinder35,2024-09-14T01:15:47Z,- Rajwinder35 unassigned from issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2348189403) at 2024-09-13 06:15 PM PDT -Rajwinder35,2024-10-20T17:45:24Z,- Rajwinder35 assigned to issue: [7222](https://github.com/hackforla/website/issues/7222#event-13777262138) at 2024-10-20 10:45 AM PDT -rakeshbabu23,2023-05-11T10:17:50Z,- rakeshbabu23 opened pull request: [4652](https://github.com/hackforla/website/pull/4652) at 2023-05-11 03:17 AM PDT -rakeshbabu23,2023-05-11T10:36:08Z,- rakeshbabu23 commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1543751720) at 2023-05-11 03:36 AM PDT -rakeshbabu23,2023-05-11T11:07:59Z,- rakeshbabu23 opened pull request: [4653](https://github.com/hackforla/website/pull/4653) at 2023-05-11 04:07 AM PDT -rakeshbabu23,2023-05-11T11:08:40Z,- rakeshbabu23 pull request closed w/o merging: [4653](https://github.com/hackforla/website/pull/4653#event-9221113544) at 2023-05-11 04:08 AM PDT -rakeshbabu23,2023-05-11T11:23:49Z,- rakeshbabu23 opened pull request: [4654](https://github.com/hackforla/website/pull/4654) at 2023-05-11 04:23 AM PDT -rakeshbabu23,2023-05-11T16:04:43Z,- rakeshbabu23 opened pull request: [4655](https://github.com/hackforla/website/pull/4655) at 2023-05-11 09:04 AM PDT -rakeshbabu23,2023-05-11T17:37:51Z,- rakeshbabu23 pull request closed w/o merging: [4652](https://github.com/hackforla/website/pull/4652#event-9225130041) at 2023-05-11 10:37 AM PDT -rakeshbabu23,2023-05-11T17:53:18Z,- rakeshbabu23 pull request closed w/o merging: [4654](https://github.com/hackforla/website/pull/4654#event-9225248133) at 2023-05-11 10:53 AM PDT -rakeshbabu23,2023-05-15T05:01:03Z,- rakeshbabu23 pull request closed w/o merging: [4655](https://github.com/hackforla/website/pull/4655#event-9242052228) at 2023-05-14 10:01 PM PDT -RamchandraReddy07,7976,SKILLS ISSUE -RamchandraReddy07,2025-03-04T04:28:04Z,- RamchandraReddy07 opened issue: [7976](https://github.com/hackforla/website/issues/7976) at 2025-03-03 08:28 PM PST -RamchandraReddy07,2025-03-04T04:28:07Z,- RamchandraReddy07 assigned to issue: [7976](https://github.com/hackforla/website/issues/7976) at 2025-03-03 08:28 PM PST -ramitaarora,6248,SKILLS ISSUE -ramitaarora,2024-02-06T03:32:21Z,- ramitaarora opened issue: [6248](https://github.com/hackforla/website/issues/6248) at 2024-02-05 07:32 PM PST -ramitaarora,2024-02-06T03:32:22Z,- ramitaarora assigned to issue: [6248](https://github.com/hackforla/website/issues/6248) at 2024-02-05 07:32 PM PST -ramitaarora,2024-02-13T17:54:20Z,- ramitaarora assigned to issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1686565365) at 2024-02-13 09:54 AM PST -ramitaarora,2024-02-13T18:01:00Z,- ramitaarora commented on issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1942112221) at 2024-02-13 10:01 AM PST -ramitaarora,2024-02-14T03:53:52Z,- ramitaarora opened pull request: [6293](https://github.com/hackforla/website/pull/6293) at 2024-02-13 07:53 PM PST -ramitaarora,2024-02-14T03:59:45Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-1943046760) at 2024-02-13 07:59 PM PST -ramitaarora,2024-02-15T05:36:43Z,- ramitaarora assigned to issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1776423981) at 2024-02-14 09:36 PM PST -ramitaarora,2024-02-15T05:37:47Z,- ramitaarora commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1945403892) at 2024-02-14 09:37 PM PST -ramitaarora,2024-02-16T00:04:07Z,- ramitaarora opened pull request: [6301](https://github.com/hackforla/website/pull/6301) at 2024-02-15 04:04 PM PST -ramitaarora,2024-02-16T04:27:02Z,- ramitaarora assigned to issue: [5989](https://github.com/hackforla/website/issues/5989) at 2024-02-15 08:27 PM PST -ramitaarora,2024-02-16T05:39:18Z,- ramitaarora pull request closed w/o merging: [6301](https://github.com/hackforla/website/pull/6301#event-11824609230) at 2024-02-15 09:39 PM PST -ramitaarora,2024-02-16T05:40:17Z,- ramitaarora unassigned from issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1945403892) at 2024-02-15 09:40 PM PST -ramitaarora,2024-02-16T05:45:40Z,- ramitaarora unassigned from issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1947738161) at 2024-02-15 09:45 PM PST -ramitaarora,2024-02-16T07:18:59Z,- ramitaarora pull request merged: [6293](https://github.com/hackforla/website/pull/6293#event-11825240537) at 2024-02-15 11:18 PM PST -ramitaarora,2024-02-16T16:20:45Z,- ramitaarora assigned to issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1800817242) at 2024-02-16 08:20 AM PST -ramitaarora,2024-02-16T16:21:39Z,- ramitaarora commented on issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1948794266) at 2024-02-16 08:21 AM PST -ramitaarora,2024-02-16T18:17:04Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-1949038443) at 2024-02-16 10:17 AM PST -ramitaarora,2024-02-16T18:28:30Z,- ramitaarora opened pull request: [6305](https://github.com/hackforla/website/pull/6305) at 2024-02-16 10:28 AM PST -ramitaarora,2024-02-19T04:22:11Z,- ramitaarora pull request merged: [6305](https://github.com/hackforla/website/pull/6305#event-11843961161) at 2024-02-18 08:22 PM PST -ramitaarora,2024-02-21T03:01:03Z,- ramitaarora assigned to issue: [5992](https://github.com/hackforla/website/issues/5992) at 2024-02-20 07:01 PM PST -ramitaarora,2024-02-21T03:21:59Z,- ramitaarora commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1955806682) at 2024-02-20 07:21 PM PST -ramitaarora,2024-02-22T17:46:16Z,- ramitaarora commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1959954087) at 2024-02-22 09:46 AM PST -ramitaarora,2024-02-22T17:48:54Z,- ramitaarora closed issue as completed: [6248](https://github.com/hackforla/website/issues/6248#event-11894622710) at 2024-02-22 09:48 AM PST -ramitaarora,2024-02-22T18:23:21Z,- ramitaarora commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1960016524) at 2024-02-22 10:23 AM PST -ramitaarora,2024-02-27T05:38:23Z,- ramitaarora assigned to issue: [6286](https://github.com/hackforla/website/issues/6286) at 2024-02-26 09:38 PM PST -ramitaarora,2024-02-27T05:39:09Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1965825829) at 2024-02-26 09:39 PM PST -ramitaarora,2024-02-28T17:26:49Z,- ramitaarora commented on pull request: [6385](https://github.com/hackforla/website/pull/6385#issuecomment-1969487339) at 2024-02-28 09:26 AM PST -ramitaarora,2024-02-28T17:56:56Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969538499) at 2024-02-28 09:56 AM PST -ramitaarora,2024-02-28T20:51:00Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969896391) at 2024-02-28 12:51 PM PST -ramitaarora,2024-02-28T21:33:27Z,- ramitaarora opened pull request: [6390](https://github.com/hackforla/website/pull/6390) at 2024-02-28 01:33 PM PST -ramitaarora,2024-02-28T21:55:08Z,- ramitaarora submitted pull request review: [6385](https://github.com/hackforla/website/pull/6385#pullrequestreview-1907503612) at 2024-02-28 01:55 PM PST -ramitaarora,2024-02-29T08:52:28Z,- ramitaarora pull request merged: [6390](https://github.com/hackforla/website/pull/6390#event-11962736898) at 2024-02-29 12:52 AM PST -ramitaarora,2024-02-29T23:27:30Z,- ramitaarora commented on pull request: [6393](https://github.com/hackforla/website/pull/6393#issuecomment-1972143274) at 2024-02-29 03:27 PM PST -ramitaarora,2024-03-01T19:37:34Z,- ramitaarora submitted pull request review: [6393](https://github.com/hackforla/website/pull/6393#pullrequestreview-1911882554) at 2024-03-01 11:37 AM PST -ramitaarora,2024-03-04T18:28:47Z,- ramitaarora closed issue by PR 6441: [5187](https://github.com/hackforla/website/issues/5187#event-12003140402) at 2024-03-04 10:28 AM PST -ramitaarora,2024-03-04T21:30:54Z,- ramitaarora commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1977493776) at 2024-03-04 01:30 PM PST -ramitaarora,2024-03-05T21:36:32Z,- ramitaarora submitted pull request review: [6410](https://github.com/hackforla/website/pull/6410#pullrequestreview-1918179889) at 2024-03-05 01:36 PM PST -ramitaarora,2024-03-08T17:32:47Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1986119633) at 2024-03-08 09:32 AM PST -ramitaarora,2024-03-09T17:49:51Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1986929586) at 2024-03-09 10:49 AM PDT -ramitaarora,2024-03-11T16:20:42Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1988843020) at 2024-03-11 09:20 AM PDT -ramitaarora,2024-03-11T19:46:18Z,- ramitaarora commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1989303709) at 2024-03-11 12:46 PM PDT -ramitaarora,2024-03-12T16:53:46Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1992123763) at 2024-03-12 09:53 AM PDT -ramitaarora,2024-03-14T16:26:25Z,- ramitaarora submitted pull request review: [6443](https://github.com/hackforla/website/pull/6443#pullrequestreview-1937196763) at 2024-03-14 09:26 AM PDT -ramitaarora,2024-03-24T17:24:54Z,- ramitaarora assigned to issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2008695048) at 2024-03-24 10:24 AM PDT -ramitaarora,2024-03-24T17:25:43Z,- ramitaarora commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2016878619) at 2024-03-24 10:25 AM PDT -ramitaarora,2024-03-27T22:34:35Z,- ramitaarora commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2024100427) at 2024-03-27 03:34 PM PDT -ramitaarora,2024-03-28T16:56:03Z,- ramitaarora commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2025686980) at 2024-03-28 09:56 AM PDT -ramitaarora,2024-03-28T17:03:36Z,- ramitaarora submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1966787068) at 2024-03-28 10:03 AM PDT -ramitaarora,2024-03-28T17:05:18Z,- ramitaarora opened pull request: [6542](https://github.com/hackforla/website/pull/6542) at 2024-03-28 10:05 AM PDT -ramitaarora,2024-04-01T09:24:14Z,- ramitaarora pull request merged: [6542](https://github.com/hackforla/website/pull/6542#event-12308711697) at 2024-04-01 02:24 AM PDT -ramitaarora,2024-04-11T04:33:54Z,- ramitaarora commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2048910278) at 2024-04-10 09:33 PM PDT -ramitaarora,2024-04-12T16:17:44Z,- ramitaarora submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1997856321) at 2024-04-12 09:17 AM PDT -ramitaarora,2024-04-23T15:56:46Z,- ramitaarora assigned to issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1696256028) at 2024-04-23 08:56 AM PDT -ramitaarora,2024-04-23T15:58:27Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2072811888) at 2024-04-23 08:58 AM PDT -ramitaarora,2024-04-24T02:11:32Z,- ramitaarora commented on pull request: [6712](https://github.com/hackforla/website/pull/6712#issuecomment-2073868164) at 2024-04-23 07:11 PM PDT -ramitaarora,2024-04-26T18:17:02Z,- ramitaarora submitted pull request review: [6712](https://github.com/hackforla/website/pull/6712#pullrequestreview-2025620291) at 2024-04-26 11:17 AM PDT -ramitaarora,2024-04-30T18:03:15Z,- ramitaarora commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086318389) at 2024-04-30 11:03 AM PDT -ramitaarora,2024-04-30T18:06:51Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2086337197) at 2024-04-30 11:06 AM PDT -ramitaarora,2024-04-30T18:22:59Z,- ramitaarora submitted pull request review: [6782](https://github.com/hackforla/website/pull/6782#pullrequestreview-2032182505) at 2024-04-30 11:22 AM PDT -ramitaarora,2024-05-01T02:20:04Z,- ramitaarora commented on pull request: [6792](https://github.com/hackforla/website/pull/6792#issuecomment-2087879357) at 2024-04-30 07:20 PM PDT -ramitaarora,2024-05-01T07:04:03Z,- ramitaarora unassigned from issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2088067889) at 2024-05-01 12:04 AM PDT -ramitaarora,2024-05-01T16:38:48Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2088740594) at 2024-05-01 09:38 AM PDT -ramitaarora,2024-05-01T19:09:52Z,- ramitaarora submitted pull request review: [6792](https://github.com/hackforla/website/pull/6792#pullrequestreview-2034269792) at 2024-05-01 12:09 PM PDT -ramitaarora,2024-05-01T19:19:15Z,- ramitaarora submitted pull request review: [6791](https://github.com/hackforla/website/pull/6791#pullrequestreview-2034289530) at 2024-05-01 12:19 PM PDT -ramitaarora,2024-05-14T19:40:54Z,- ramitaarora opened pull request: [6854](https://github.com/hackforla/website/pull/6854) at 2024-05-14 12:40 PM PDT -ramitaarora,2024-05-15T02:14:08Z,- ramitaarora commented on pull request: [6851](https://github.com/hackforla/website/pull/6851#issuecomment-2111454997) at 2024-05-14 07:14 PM PDT -ramitaarora,2024-05-15T17:13:55Z,- ramitaarora submitted pull request review: [6851](https://github.com/hackforla/website/pull/6851#pullrequestreview-2058591066) at 2024-05-15 10:13 AM PDT -ramitaarora,2024-05-24T14:44:48Z,- ramitaarora commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2129712985) at 2024-05-24 07:44 AM PDT -ramitaarora,2024-05-31T20:17:52Z,- ramitaarora opened issue: [6919](https://github.com/hackforla/website/issues/6919) at 2024-05-31 01:17 PM PDT -ramitaarora,2024-05-31T20:33:04Z,- ramitaarora commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2142940975) at 2024-05-31 01:33 PM PDT -ramitaarora,2024-06-19T07:52:29Z,- ramitaarora pull request merged: [6854](https://github.com/hackforla/website/pull/6854#event-13211829817) at 2024-06-19 12:52 AM PDT -ramitaarora,2024-06-23T00:52:48Z,- ramitaarora commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2184276557) at 2024-06-22 05:52 PM PDT -ramitaarora,2024-06-25T15:59:16Z,- ramitaarora submitted pull request review: [7040](https://github.com/hackforla/website/pull/7040#pullrequestreview-2139139686) at 2024-06-25 08:59 AM PDT -ramitaarora,2024-06-26T02:10:11Z,- ramitaarora assigned to issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2092033370) at 2024-06-25 07:10 PM PDT -ramitaarora,2024-06-26T04:20:37Z,- ramitaarora commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2190555266) at 2024-06-25 09:20 PM PDT -ramitaarora,2024-07-10T19:59:54Z,- ramitaarora opened issue: [7102](https://github.com/hackforla/website/issues/7102) at 2024-07-10 12:59 PM PDT -ramitaarora,2024-07-10T20:01:41Z,- ramitaarora opened issue: [7103](https://github.com/hackforla/website/issues/7103) at 2024-07-10 01:01 PM PDT -ramitaarora,2024-07-22T17:05:06Z,- ramitaarora assigned to issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2132343262) at 2024-07-22 10:05 AM PDT -ramitaarora,2024-07-22T17:41:43Z,- ramitaarora commented on pull request: [7131](https://github.com/hackforla/website/pull/7131#issuecomment-2243485348) at 2024-07-22 10:41 AM PDT -ramitaarora,2024-07-22T17:42:01Z,- ramitaarora commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2243485844) at 2024-07-22 10:42 AM PDT -ramitaarora,2024-07-23T16:34:59Z,- ramitaarora submitted pull request review: [7131](https://github.com/hackforla/website/pull/7131#pullrequestreview-2194495868) at 2024-07-23 09:34 AM PDT -ramitaarora,2024-07-26T16:56:55Z,- ramitaarora opened issue: [7142](https://github.com/hackforla/website/issues/7142) at 2024-07-26 09:56 AM PDT -ramitaarora,2024-07-26T16:57:48Z,- ramitaarora opened issue: [7143](https://github.com/hackforla/website/issues/7143) at 2024-07-26 09:57 AM PDT -ramitaarora,2024-07-26T16:58:25Z,- ramitaarora opened issue: [7144](https://github.com/hackforla/website/issues/7144) at 2024-07-26 09:58 AM PDT -ramitaarora,2024-07-26T16:59:00Z,- ramitaarora opened issue: [7145](https://github.com/hackforla/website/issues/7145) at 2024-07-26 09:59 AM PDT -ramitaarora,2024-07-26T16:59:37Z,- ramitaarora opened issue: [7146](https://github.com/hackforla/website/issues/7146) at 2024-07-26 09:59 AM PDT -ramitaarora,2024-07-26T17:00:07Z,- ramitaarora opened issue: [7147](https://github.com/hackforla/website/issues/7147) at 2024-07-26 10:00 AM PDT -ramitaarora,2024-07-26T17:00:35Z,- ramitaarora opened issue: [7148](https://github.com/hackforla/website/issues/7148) at 2024-07-26 10:00 AM PDT -ramitaarora,2024-07-26T17:01:06Z,- ramitaarora opened issue: [7149](https://github.com/hackforla/website/issues/7149) at 2024-07-26 10:01 AM PDT -ramitaarora,2024-08-14T02:03:08Z,- ramitaarora assigned to issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2164324630) at 2024-08-13 07:03 PM PDT -ramitaarora,2024-08-14T02:07:29Z,- ramitaarora commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2287696623) at 2024-08-13 07:07 PM PDT -ramitaarora,2024-08-14T02:08:04Z,- ramitaarora commented on pull request: [7276](https://github.com/hackforla/website/pull/7276#issuecomment-2287697154) at 2024-08-13 07:08 PM PDT -ramitaarora,2024-08-16T17:13:39Z,- ramitaarora submitted pull request review: [7276](https://github.com/hackforla/website/pull/7276#pullrequestreview-2243155566) at 2024-08-16 10:13 AM PDT -ramitaarora,2024-08-16T17:44:22Z,- ramitaarora opened issue: [7304](https://github.com/hackforla/website/issues/7304) at 2024-08-16 10:44 AM PDT -ramitaarora,2024-08-30T03:47:35Z,- ramitaarora commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319949049) at 2024-08-29 08:47 PM PDT -ramitaarora,2024-08-30T17:38:16Z,- ramitaarora submitted pull request review: [7360](https://github.com/hackforla/website/pull/7360#pullrequestreview-2273161068) at 2024-08-30 10:38 AM PDT -ramitaarora,2024-08-30T17:41:26Z,- ramitaarora assigned to issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2264115990) at 2024-08-30 10:41 AM PDT -ramitaarora,2024-08-30T17:41:40Z,- ramitaarora unassigned from issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2322046458) at 2024-08-30 10:41 AM PDT -ramitaarora,2024-08-30T17:42:10Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2322047077) at 2024-08-30 10:42 AM PDT -ramitaarora,2024-09-11T02:18:07Z,- ramitaarora commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2342481155) at 2024-09-10 07:18 PM PDT -ramitaarora,2024-09-13T01:58:33Z,- ramitaarora submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2301993852) at 2024-09-12 06:58 PM PDT -ramitaarora,2024-09-16T16:00:06Z,- ramitaarora commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2353319430) at 2024-09-16 09:00 AM PDT -ramitaarora,2024-09-16T16:01:57Z,- ramitaarora submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2307094744) at 2024-09-16 09:01 AM PDT -ramitaarora,2024-09-18T02:13:00Z,- ramitaarora commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2357351632) at 2024-09-17 07:13 PM PDT -ramitaarora,2024-09-19T17:23:53Z,- ramitaarora commented on pull request: [7468](https://github.com/hackforla/website/pull/7468#issuecomment-2361781372) at 2024-09-19 10:23 AM PDT -ramitaarora,2024-09-20T20:28:32Z,- ramitaarora submitted pull request review: [7468](https://github.com/hackforla/website/pull/7468#pullrequestreview-2319283106) at 2024-09-20 01:28 PM PDT -ramitaarora,2024-09-27T02:25:40Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2378282327) at 2024-09-26 07:25 PM PDT -ramitaarora,2024-09-27T02:39:56Z,- ramitaarora closed issue as completed: [6248](https://github.com/hackforla/website/issues/6248#event-14424680677) at 2024-09-26 07:39 PM PDT -ramitaarora,2024-09-27T04:01:05Z,- ramitaarora commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2378355674) at 2024-09-26 09:01 PM PDT -ramitaarora,2024-10-01T17:52:54Z,- ramitaarora commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2386613841) at 2024-10-01 10:52 AM PDT -ramitaarora,2024-10-02T04:04:14Z,- ramitaarora submitted pull request review: [7554](https://github.com/hackforla/website/pull/7554#pullrequestreview-2341866537) at 2024-10-01 09:04 PM PDT -ramitaarora,2024-10-10T04:15:06Z,- ramitaarora commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2403932933) at 2024-10-09 09:15 PM PDT -ramitaarora,2024-10-10T04:18:27Z,- ramitaarora assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2378162993) at 2024-10-09 09:18 PM PDT -ramitaarora,2024-10-10T04:19:17Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2403936663) at 2024-10-09 09:19 PM PDT -ramitaarora,2024-10-10T18:24:51Z,- ramitaarora submitted pull request review: [7579](https://github.com/hackforla/website/pull/7579#pullrequestreview-2361107576) at 2024-10-10 11:24 AM PDT -ramitaarora,2024-10-18T15:51:40Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2422774703) at 2024-10-18 08:51 AM PDT -ramitaarora,2024-10-25T19:57:42Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-10-25 12:57 PM PDT -ramitaarora,2024-10-30T02:15:56Z,- ramitaarora commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2445678557) at 2024-10-29 07:15 PM PDT -ramitaarora,2024-10-31T03:30:32Z,- ramitaarora submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2406876794) at 2024-10-30 08:30 PM PDT -ramitaarora,2024-10-31T18:10:53Z,- ramitaarora submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2408756248) at 2024-10-31 11:10 AM PDT -ramitaarora,2024-11-05T17:09:32Z,- ramitaarora unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-11-05 09:09 AM PST -ramitaarora,2024-11-18T19:12:06Z,- ramitaarora assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-11-18 11:12 AM PST -ramitaarora,2024-11-18T19:12:49Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2483895265) at 2024-11-18 11:12 AM PST -ramitaarora,2024-11-20T03:21:45Z,- ramitaarora commented on pull request: [7729](https://github.com/hackforla/website/pull/7729#issuecomment-2487265912) at 2024-11-19 07:21 PM PST -ramitaarora,2024-12-09T17:30:58Z,- ramitaarora unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2507206922) at 2024-12-09 09:30 AM PST -randelbrot,2022-12-20T21:46:34Z,- randelbrot opened issue: [3773](https://github.com/hackforla/website/issues/3773) at 2022-12-20 01:46 PM PST -randelbrot,2022-12-20T21:48:23Z,- randelbrot commented on issue: [3772](https://github.com/hackforla/website/issues/3772#issuecomment-1360368508) at 2022-12-20 01:48 PM PST -randelbrot,2023-02-03T21:21:20Z,- randelbrot opened issue: [3929](https://github.com/hackforla/website/issues/3929) at 2023-02-03 01:21 PM PST -randelbrot,2023-02-13T18:02:28Z,- randelbrot commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1428411900) at 2023-02-13 10:02 AM PST -randelbrot,2023-02-17T21:15:17Z,- randelbrot commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435275753) at 2023-02-17 01:15 PM PST -randelbrot,2023-02-28T03:42:35Z,- randelbrot commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1447527233) at 2023-02-27 07:42 PM PST -Rankazze,2019-05-21T03:10:38Z,- Rankazze opened issue: [109](https://github.com/hackforla/website/issues/109) at 2019-05-20 08:10 PM PDT -Rankazze,2019-05-21T05:31:52Z,- Rankazze assigned to issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494245577) at 2019-05-20 10:31 PM PDT -Rankazze,2019-05-21T05:59:51Z,- Rankazze commented on issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494251095) at 2019-05-20 10:59 PM PDT -Rankazze,2019-11-03T04:45:12Z,- Rankazze opened issue: [167](https://github.com/hackforla/website/issues/167) at 2019-11-02 08:45 PM PST -Rankazze,2019-11-03T04:45:13Z,- Rankazze assigned to issue: [167](https://github.com/hackforla/website/issues/167) at 2019-11-02 08:45 PM PST -Rankazze,2019-12-03T18:57:29Z,- Rankazze opened issue: [207](https://github.com/hackforla/website/issues/207) at 2019-12-03 10:57 AM PST -Rankazze,2019-12-03T19:02:33Z,- Rankazze opened issue: [208](https://github.com/hackforla/website/issues/208) at 2019-12-03 11:02 AM PST -Rankazze,2019-12-17T07:47:40Z,- Rankazze opened issue: [217](https://github.com/hackforla/website/issues/217) at 2019-12-16 11:47 PM PST -Rankazze,2020-01-16T23:03:07Z,- Rankazze commented on issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-575387954) at 2020-01-16 03:03 PM PST -Rankazze,2020-06-08T05:26:33Z,- Rankazze assigned to issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 10:26 PM PDT -Rankazze,2020-12-08T21:31:18Z,- Rankazze unassigned from issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-657116227) at 2020-12-08 01:31 PM PST -Rankazze,2021-01-10T05:33:44Z,- Rankazze commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757420518) at 2021-01-09 09:33 PM PST -Rankazze,2021-04-07T17:52:54Z,- Rankazze closed issue as completed: [178](https://github.com/hackforla/website/issues/178#event-4563963807) at 2021-04-07 10:52 AM PDT -Rankazze,2021-11-01T04:34:10Z,- Rankazze assigned to issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-929757388) at 2021-10-31 09:34 PM PDT -Rankazze,2021-11-01T04:45:30Z,- Rankazze assigned to issue: [2105](https://github.com/hackforla/website/issues/2105) at 2021-10-31 09:45 PM PDT -Rankazze,2021-11-03T03:04:46Z,- Rankazze commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-958616009) at 2021-11-02 08:04 PM PDT -Rankazze,2021-11-03T03:15:41Z,- Rankazze commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-958625057) at 2021-11-02 08:15 PM PDT -Rankazze,2022-02-11T14:18:27Z,- Rankazze commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1036258902) at 2022-02-11 06:18 AM PST -Rankazze,2022-02-11T14:21:35Z,- Rankazze commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1036261890) at 2022-02-11 06:21 AM PST -rankdjr,4978,SKILLS ISSUE -rankdjr,2023-07-18T01:56:07Z,- rankdjr opened issue: [4978](https://github.com/hackforla/website/issues/4978) at 2023-07-17 06:56 PM PDT -rankdjr,2023-07-18T03:15:50Z,- rankdjr assigned to issue: [4978](https://github.com/hackforla/website/issues/4978) at 2023-07-17 08:15 PM PDT -rankdjr,2023-09-12T04:32:40Z,- rankdjr commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1714947601) at 2023-09-11 09:32 PM PDT -rankdjr,2023-10-24T07:08:18Z,- rankdjr assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-10-24 12:08 AM PDT -rankdjr,2023-10-24T07:10:11Z,- rankdjr commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1776647857) at 2023-10-24 12:10 AM PDT -rankdjr,2023-10-25T03:07:15Z,- rankdjr unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1776647857) at 2023-10-24 08:07 PM PDT -rankdjr,2023-10-25T03:08:14Z,- rankdjr commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1778433474) at 2023-10-24 08:08 PM PDT -rankdjr,2023-11-29T03:56:50Z,- rankdjr assigned to issue: [5797](https://github.com/hackforla/website/issues/5797) at 2023-11-28 07:56 PM PST -rankdjr,2023-11-29T04:25:40Z,- rankdjr commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1831196232) at 2023-11-28 08:25 PM PST -rankdjr,2023-11-29T05:03:53Z,- rankdjr opened pull request: [5943](https://github.com/hackforla/website/pull/5943) at 2023-11-28 09:03 PM PST -rankdjr,2023-11-29T05:07:55Z,- rankdjr commented on issue: [5797](https://github.com/hackforla/website/issues/5797#issuecomment-1831231208) at 2023-11-28 09:07 PM PST -rankdjr,2023-11-29T22:35:47Z,- rankdjr pull request merged: [5943](https://github.com/hackforla/website/pull/5943#event-11102197954) at 2023-11-29 02:35 PM PST -rankdjr,2023-11-30T02:36:59Z,- rankdjr commented on issue: [5798](https://github.com/hackforla/website/issues/5798#issuecomment-1833013182) at 2023-11-29 06:36 PM PST -rankdjr,2023-12-06T03:32:43Z,- rankdjr assigned to issue: [5695](https://github.com/hackforla/website/issues/5695) at 2023-12-05 07:32 PM PST -rankdjr,2023-12-06T03:35:34Z,- rankdjr commented on issue: [5695](https://github.com/hackforla/website/issues/5695#issuecomment-1842030584) at 2023-12-05 07:35 PM PST -rankdjr,2023-12-08T07:21:57Z,- rankdjr opened pull request: [5977](https://github.com/hackforla/website/pull/5977) at 2023-12-07 11:21 PM PST -rankdjr,2023-12-08T07:57:36Z,- rankdjr commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1846723804) at 2023-12-07 11:57 PM PST -rankdjr,2023-12-08T08:21:51Z,- rankdjr commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1846749992) at 2023-12-08 12:21 AM PST -rankdjr,2023-12-08T21:49:39Z,- rankdjr commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1847885416) at 2023-12-08 01:49 PM PST -rankdjr,2023-12-12T06:33:27Z,- rankdjr commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1851384049) at 2023-12-11 10:33 PM PST -rankdjr,2023-12-12T06:53:48Z,- rankdjr closed issue as completed: [4978](https://github.com/hackforla/website/issues/4978#event-11219305771) at 2023-12-11 10:53 PM PST -rankdjr,2023-12-12T23:53:53Z,- rankdjr pull request merged: [5977](https://github.com/hackforla/website/pull/5977#event-11229729330) at 2023-12-12 03:53 PM PST -rashmeesinha,2021-10-20T06:11:43Z,- rashmeesinha opened pull request: [2379](https://github.com/hackforla/website/pull/2379) at 2021-10-19 11:11 PM PDT -rashmeesinha,2021-10-27T21:30:30Z,- rashmeesinha pull request closed w/o merging: [2379](https://github.com/hackforla/website/pull/2379#event-5530260833) at 2021-10-27 02:30 PM PDT -raswani2023,3273,SKILLS ISSUE -raswani2023,2022-06-20T22:46:21Z,- raswani2023 opened issue: [3273](https://github.com/hackforla/website/issues/3273) at 2022-06-20 03:46 PM PDT -raswani2023,2022-06-20T22:46:29Z,- raswani2023 assigned to issue: [3273](https://github.com/hackforla/website/issues/3273) at 2022-06-20 03:46 PM PDT -raswani2023,2022-06-23T05:30:29Z,- raswani2023 assigned to issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-06-22 10:30 PM PDT -raswani2023,2022-06-23T22:07:00Z,- raswani2023 unassigned from issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-06-23 03:07 PM PDT -raswani2023,2022-06-24T01:30:24Z,- raswani2023 commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1165077499) at 2022-06-23 06:30 PM PDT -raswani2023,2022-06-24T01:32:34Z,- raswani2023 commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1165078708) at 2022-06-23 06:32 PM PDT -raswani2023,2022-06-24T02:05:47Z,- raswani2023 assigned to issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1165077499) at 2022-06-23 07:05 PM PDT -raswani2023,2022-06-26T07:25:36Z,- raswani2023 opened pull request: [3303](https://github.com/hackforla/website/pull/3303) at 2022-06-26 12:25 AM PDT -raswani2023,2022-06-26T18:56:42Z,- raswani2023 opened issue: [3315](https://github.com/hackforla/website/issues/3315) at 2022-06-26 11:56 AM PDT -raswani2023,2022-06-26T19:40:53Z,- raswani2023 pull request merged: [3303](https://github.com/hackforla/website/pull/3303#event-6880804807) at 2022-06-26 12:40 PM PDT -raswani2023,2022-06-27T04:11:54Z,- raswani2023 assigned to issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1115465887) at 2022-06-26 09:11 PM PDT -raswani2023,2022-06-27T23:14:08Z,- raswani2023 commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1168024158) at 2022-06-27 04:14 PM PDT -raswani2023,2022-06-29T02:37:22Z,- raswani2023 opened pull request: [3323](https://github.com/hackforla/website/pull/3323) at 2022-06-28 07:37 PM PDT -raswani2023,2022-06-29T02:50:54Z,- raswani2023 commented on issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1169476535) at 2022-06-28 07:50 PM PDT -raswani2023,2022-06-29T16:59:02Z,- raswani2023 pull request merged: [3323](https://github.com/hackforla/website/pull/3323#event-6904206103) at 2022-06-29 09:59 AM PDT -raswani2023,2022-07-03T09:22:41Z,- raswani2023 assigned to issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1173009227) at 2022-07-03 02:22 AM PDT -raswani2023,2022-07-10T18:32:45Z,- raswani2023 opened pull request: [3348](https://github.com/hackforla/website/pull/3348) at 2022-07-10 11:32 AM PDT -raswani2023,2022-07-10T18:34:40Z,- raswani2023 commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1179777610) at 2022-07-10 11:34 AM PDT -raswani2023,2022-07-13T02:47:33Z,- raswani2023 commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182703513) at 2022-07-12 07:47 PM PDT -raswani2023,2022-07-13T04:58:04Z,- raswani2023 submitted pull request review: [3363](https://github.com/hackforla/website/pull/3363#pullrequestreview-1036763187) at 2022-07-12 09:58 PM PDT -raswani2023,2022-07-15T02:34:03Z,- raswani2023 pull request merged: [3348](https://github.com/hackforla/website/pull/3348#event-6998715675) at 2022-07-14 07:34 PM PDT -raswani2023,2022-07-18T17:26:49Z,- raswani2023 assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1120285387) at 2022-07-18 10:26 AM PDT -raswani2023,2022-07-19T18:12:26Z,- raswani2023 submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043885499) at 2022-07-19 11:12 AM PDT -raswani2023,2022-07-19T18:15:54Z,- raswani2023 submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043889320) at 2022-07-19 11:15 AM PDT -raswani2023,2022-07-21T17:57:12Z,- raswani2023 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1191777426) at 2022-07-21 10:57 AM PDT -raswani2023,2022-07-24T17:55:33Z,- raswani2023 unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1191777426) at 2022-07-24 10:55 AM PDT -raswani2023,2022-07-24T17:59:00Z,- raswani2023 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1193366245) at 2022-07-24 10:59 AM PDT -raswani2023,2022-07-26T00:12:22Z,- raswani2023 assigned to issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-907899822) at 2022-07-25 05:12 PM PDT -raswani2023,2022-07-26T17:47:57Z,- raswani2023 commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1195793864) at 2022-07-26 10:47 AM PDT -raswani2023,2022-07-27T04:24:20Z,- raswani2023 opened pull request: [3432](https://github.com/hackforla/website/pull/3432) at 2022-07-26 09:24 PM PDT -raswani2023,2022-07-27T04:53:42Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1196264902) at 2022-07-26 09:53 PM PDT -raswani2023,2022-07-27T22:46:22Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197453898) at 2022-07-27 03:46 PM PDT -raswani2023,2022-07-27T22:49:16Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197455666) at 2022-07-27 03:49 PM PDT -raswani2023,2022-07-28T01:58:45Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197563290) at 2022-07-27 06:58 PM PDT -raswani2023,2022-07-28T17:47:01Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198451739) at 2022-07-28 10:47 AM PDT -raswani2023,2022-07-29T02:00:31Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198804054) at 2022-07-28 07:00 PM PDT -raswani2023,2022-07-31T02:47:13Z,- raswani2023 pull request merged: [3432](https://github.com/hackforla/website/pull/3432#event-7095774789) at 2022-07-30 07:47 PM PDT -raswani2023,2022-11-06T19:14:39Z,- raswani2023 unassigned from issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1304867526) at 2022-11-06 11:14 AM PST -raswani2023,2022-11-27T04:49:05Z,- raswani2023 unassigned from issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1328170999) at 2022-11-26 08:49 PM PST -ratishjain12,2023-08-30T17:07:08Z,- ratishjain12 opened issue: [5375](https://github.com/hackforla/website/issues/5375) at 2023-08-30 10:07 AM PDT -ratishjain12,2023-10-09T00:00:16Z,- ratishjain12 commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1752198192) at 2023-10-08 05:00 PM PDT -ratishjain12,2023-10-18T07:10:54Z,- ratishjain12 commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1767809625) at 2023-10-18 12:10 AM PDT -raviteja4117,4999,SKILLS ISSUE -raviteja4117,2023-07-18T03:02:55Z,- raviteja4117 opened issue: [4999](https://github.com/hackforla/website/issues/4999) at 2023-07-17 08:02 PM PDT -raviteja4117,2023-07-18T03:55:37Z,- raviteja4117 assigned to issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1639237381) at 2023-07-17 08:55 PM PDT -raviteja4117,2023-08-16T23:38:59Z,- raviteja4117 assigned to issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1677898989) at 2023-08-16 04:38 PM PDT -raviteja4117,2023-08-16T23:44:23Z,- raviteja4117 commented on issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681403833) at 2023-08-16 04:44 PM PDT -raviteja4117,2023-08-20T02:58:59Z,- raviteja4117 opened pull request: [5261](https://github.com/hackforla/website/pull/5261) at 2023-08-19 07:58 PM PDT -raviteja4117,2023-08-22T22:00:54Z,- raviteja4117 pull request merged: [5261](https://github.com/hackforla/website/pull/5261#event-10163516063) at 2023-08-22 03:00 PM PDT -raviteja4117,2023-08-25T23:41:19Z,- raviteja4117 assigned to issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 04:41 PM PDT -raviteja4117,2023-08-25T23:45:25Z,- raviteja4117 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1694038007) at 2023-08-25 04:45 PM PDT -raviteja4117,2023-09-02T01:57:33Z,- raviteja4117 opened pull request: [5416](https://github.com/hackforla/website/pull/5416) at 2023-09-01 06:57 PM PDT -raviteja4117,2023-09-06T22:14:52Z,- raviteja4117 pull request closed w/o merging: [5416](https://github.com/hackforla/website/pull/5416#event-10301004445) at 2023-09-06 03:14 PM PDT -raviteja4117,2023-09-07T23:04:51Z,- raviteja4117 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1710869534) at 2023-09-07 04:04 PM PDT -raviteja4117,2023-09-16T16:38:34Z,- raviteja4117 assigned to issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1717174626) at 2023-09-16 09:38 AM PDT -raviteja4117,2023-09-16T16:40:11Z,- raviteja4117 commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1722267252) at 2023-09-16 09:40 AM PDT -raviteja4117,2023-09-27T16:28:57Z,- raviteja4117 assigned to issue: [5600](https://github.com/hackforla/website/issues/5600) at 2023-09-27 09:28 AM PDT -raviteja4117,2023-09-27T16:30:22Z,- raviteja4117 commented on issue: [5600](https://github.com/hackforla/website/issues/5600#issuecomment-1737726015) at 2023-09-27 09:30 AM PDT -raviteja4117,2023-09-30T20:03:59Z,- raviteja4117 assigned to issue: [5336](https://github.com/hackforla/website/issues/5336) at 2023-09-30 01:03 PM PDT -raviteja4117,2023-09-30T20:05:19Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741849169) at 2023-09-30 01:05 PM PDT -raviteja4117,2023-09-30T20:16:36Z,- raviteja4117 unassigned from issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741849169) at 2023-09-30 01:16 PM PDT -raviteja4117,2023-09-30T21:25:04Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741862656) at 2023-09-30 02:25 PM PDT -raviteja4117,2023-09-30T21:26:11Z,- raviteja4117 assigned to issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741862656) at 2023-09-30 02:26 PM PDT -raviteja4117,2023-10-01T01:21:37Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741913748) at 2023-09-30 06:21 PM PDT -raviteja4117,2023-10-06T18:44:34Z,- raviteja4117 commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1751246516) at 2023-10-06 11:44 AM PDT -raviteja4117,2023-10-09T01:49:10Z,- raviteja4117 opened pull request: [5683](https://github.com/hackforla/website/pull/5683) at 2023-10-08 06:49 PM PDT -raviteja4117,2023-10-14T23:06:48Z,- raviteja4117 pull request merged: [5683](https://github.com/hackforla/website/pull/5683#event-10656088559) at 2023-10-14 04:06 PM PDT -raviteja4117,2023-11-10T00:37:02Z,- raviteja4117 assigned to issue: [5770](https://github.com/hackforla/website/issues/5770) at 2023-11-09 04:37 PM PST -raviteja4117,2023-11-10T00:46:07Z,- raviteja4117 commented on issue: [5770](https://github.com/hackforla/website/issues/5770#issuecomment-1804900465) at 2023-11-09 04:46 PM PST -raviteja4117,2023-11-15T19:24:26Z,- raviteja4117 opened pull request: [5908](https://github.com/hackforla/website/pull/5908) at 2023-11-15 11:24 AM PST -raviteja4117,2023-11-18T22:28:07Z,- raviteja4117 commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1817665199) at 2023-11-18 02:28 PM PST -raviteja4117,2023-11-20T18:40:41Z,- raviteja4117 pull request merged: [5908](https://github.com/hackforla/website/pull/5908#event-11015418984) at 2023-11-20 10:40 AM PST -raviteja4117,2023-12-17T02:09:52Z,- raviteja4117 commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1859015080) at 2023-12-16 06:09 PM PST -raviteja4117,2023-12-18T22:19:32Z,- raviteja4117 submitted pull request review: [6010](https://github.com/hackforla/website/pull/6010#pullrequestreview-1787802104) at 2023-12-18 02:19 PM PST -raviteja4117,2024-01-13T22:21:56Z,- raviteja4117 assigned to issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1851267392) at 2024-01-13 02:21 PM PST -raviteja4117,2024-01-13T22:24:44Z,- raviteja4117 commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1890782997) at 2024-01-13 02:24 PM PST -raviteja4117,2024-01-21T18:50:59Z,- raviteja4117 commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1902726321) at 2024-01-21 10:50 AM PST -raviteja4117,2024-01-25T02:51:33Z,- raviteja4117 opened issue: [6153](https://github.com/hackforla/website/issues/6153) at 2024-01-24 06:51 PM PST -raviteja4117,2024-01-25T03:13:13Z,- raviteja4117 opened issue: [6154](https://github.com/hackforla/website/issues/6154) at 2024-01-24 07:13 PM PST -raviteja4117,2024-01-25T03:15:28Z,- raviteja4117 opened issue: [6155](https://github.com/hackforla/website/issues/6155) at 2024-01-24 07:15 PM PST -raviteja4117,2024-01-25T03:17:46Z,- raviteja4117 opened issue: [6156](https://github.com/hackforla/website/issues/6156) at 2024-01-24 07:17 PM PST -raviteja4117,2024-01-25T03:20:25Z,- raviteja4117 opened issue: [6157](https://github.com/hackforla/website/issues/6157) at 2024-01-24 07:20 PM PST -raviteja4117,2024-02-17T16:43:08Z,- raviteja4117 assigned to issue: [6299](https://github.com/hackforla/website/issues/6299) at 2024-02-17 08:43 AM PST -raviteja4117,2024-02-17T16:47:19Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1950253727) at 2024-02-17 08:47 AM PST -raviteja4117,2024-02-27T18:07:15Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1967319077) at 2024-02-27 10:07 AM PST -raviteja4117,2024-03-03T19:22:52Z,- raviteja4117 opened pull request: [6411](https://github.com/hackforla/website/pull/6411) at 2024-03-03 11:22 AM PST -raviteja4117,2024-03-07T03:20:04Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1982277496) at 2024-03-06 07:20 PM PST -raviteja4117,2024-03-07T03:24:51Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1982281119) at 2024-03-06 07:24 PM PST -raviteja4117,2024-03-07T14:33:47Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1983634045) at 2024-03-07 06:33 AM PST -raviteja4117,2024-03-09T01:08:15Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1986669069) at 2024-03-08 06:08 PM PDT -raviteja4117,2024-03-10T02:19:38Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1987044456) at 2024-03-09 07:19 PM PDT -raviteja4117,2024-03-31T01:17:58Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2028518551) at 2024-03-30 06:17 PM PDT -raviteja4117,2024-03-31T03:05:42Z,- raviteja4117 pull request merged: [6411](https://github.com/hackforla/website/pull/6411#event-12302220558) at 2024-03-30 08:05 PM PDT -raviteja4117,2024-04-16T00:21:30Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2058023966) at 2024-04-15 05:21 PM PDT -raviteja4117,2024-04-16T00:24:03Z,- raviteja4117 assigned to issue: [6494](https://github.com/hackforla/website/issues/6494) at 2024-04-15 05:24 PM PDT -raviteja4117,2024-04-16T00:25:27Z,- raviteja4117 commented on issue: [6494](https://github.com/hackforla/website/issues/6494#issuecomment-2058026997) at 2024-04-15 05:25 PM PDT -rblaz001,2020-07-26T18:45:22Z,- rblaz001 assigned to issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664025382) at 2020-07-26 11:45 AM PDT -rblaz001,2020-07-27T06:21:09Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664143908) at 2020-07-26 11:21 PM PDT -rblaz001,2020-07-27T17:20:29Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664528437) at 2020-07-27 10:20 AM PDT -rblaz001,2020-07-27T18:41:27Z,- rblaz001 opened pull request: [647](https://github.com/hackforla/website/pull/647) at 2020-07-27 11:41 AM PDT -rblaz001,2020-07-28T03:13:22Z,- rblaz001 commented on pull request: [647](https://github.com/hackforla/website/pull/647#issuecomment-664750829) at 2020-07-27 08:13 PM PDT -rblaz001,2020-07-28T03:14:30Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664751108) at 2020-07-27 08:14 PM PDT -rblaz001,2020-07-29T02:24:07Z,- rblaz001 pull request merged: [647](https://github.com/hackforla/website/pull/647#event-3596980425) at 2020-07-28 07:24 PM PDT -rblaz001,2020-07-29T02:35:37Z,- rblaz001 commented on pull request: [652](https://github.com/hackforla/website/pull/652#issuecomment-665395728) at 2020-07-28 07:35 PM PDT -rblaz001,2020-07-29T02:52:06Z,- rblaz001 submitted pull request review: [653](https://github.com/hackforla/website/pull/653#pullrequestreview-457159259) at 2020-07-28 07:52 PM PDT -rblaz001,2020-07-29T03:33:03Z,- rblaz001 assigned to issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-07-28 08:33 PM PDT -rblaz001,2020-07-29T03:39:06Z,- rblaz001 assigned to issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-606293101) at 2020-07-28 08:39 PM PDT -rblaz001,2020-07-29T03:40:10Z,- rblaz001 unassigned from issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-07-28 08:40 PM PDT -rblaz001,2020-08-01T21:48:03Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-667591154) at 2020-08-01 02:48 PM PDT -rblaz001,2020-08-09T17:06:54Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-671076829) at 2020-08-09 10:06 AM PDT -rblaz001,2020-08-09T19:07:42Z,- rblaz001 commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671089551) at 2020-08-09 12:07 PM PDT -rblaz001,2020-08-11T02:56:59Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-671695112) at 2020-08-10 07:56 PM PDT -rblaz001,2020-08-16T16:49:34Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674549815) at 2020-08-16 09:49 AM PDT -rblaz001,2020-08-16T17:25:19Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674553724) at 2020-08-16 10:25 AM PDT -rblaz001,2020-08-20T01:57:08Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-676850408) at 2020-08-19 06:57 PM PDT -rblaz001,2020-08-20T07:40:21Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-677429689) at 2020-08-20 12:40 AM PDT -rblaz001,2020-08-23T10:34:23Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-678757388) at 2020-08-23 03:34 AM PDT -rblaz001,2020-08-30T16:11:19Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-683439125) at 2020-08-30 09:11 AM PDT -rblaz001,2020-09-12T20:25:51Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691542075) at 2020-09-12 01:25 PM PDT -rblaz001,2020-09-13T17:23:05Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691699213) at 2020-09-13 10:23 AM PDT -rblaz001,2020-09-13T17:36:55Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691700842) at 2020-09-13 10:36 AM PDT -rblaz001,2020-09-20T16:56:45Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-695809704) at 2020-09-20 09:56 AM PDT -rblaz001,2020-09-26T18:47:38Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-699533582) at 2020-09-26 11:47 AM PDT -rblaz001,2020-10-11T17:19:35Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-706737530) at 2020-10-11 10:19 AM PDT -rblaz001,2020-10-11T18:36:27Z,- rblaz001 commented on pull request: [775](https://github.com/hackforla/website/pull/775#issuecomment-706748293) at 2020-10-11 11:36 AM PDT -rblaz001,2020-10-18T16:27:07Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-711275229) at 2020-10-18 09:27 AM PDT -rblaz001,2020-10-22T23:14:53Z,- rblaz001 commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-714812475) at 2020-10-22 04:14 PM PDT -rblaz001,2020-10-24T11:49:07Z,- rblaz001 commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-715903712) at 2020-10-24 04:49 AM PDT -rblaz001,2021-02-24T22:31:04Z,- rblaz001 unassigned from issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-785427876) at 2021-02-24 02:31 PM PST -rcpeng34,2025-05-13T03:17:39Z,- rcpeng34 commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2874942128) at 2025-05-12 08:17 PM PDT -rcurtis2,2021-07-21T22:36:36Z,- rcurtis2 commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884542564) at 2021-07-21 03:36 PM PDT -rdhmdhl,4623,SKILLS ISSUE -rdhmdhl,2023-05-09T03:30:57Z,- rdhmdhl opened issue: [4623](https://github.com/hackforla/website/issues/4623) at 2023-05-08 08:30 PM PDT -rdhmdhl,2023-05-09T03:31:06Z,- rdhmdhl assigned to issue: [4623](https://github.com/hackforla/website/issues/4623) at 2023-05-08 08:31 PM PDT -rdhmdhl,2023-05-10T04:34:48Z,- rdhmdhl assigned to issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1529055394) at 2023-05-09 09:34 PM PDT -rdhmdhl,2023-05-10T04:50:03Z,- rdhmdhl opened pull request: [4645](https://github.com/hackforla/website/pull/4645) at 2023-05-09 09:50 PM PDT -rdhmdhl,2023-05-11T03:52:28Z,- rdhmdhl assigned to issue: [4485](https://github.com/hackforla/website/issues/4485) at 2023-05-10 08:52 PM PDT -rdhmdhl,2023-05-11T04:14:34Z,- rdhmdhl pull request closed w/o merging: [4645](https://github.com/hackforla/website/pull/4645#event-9217702576) at 2023-05-10 09:14 PM PDT -rdhmdhl,2023-05-11T05:00:15Z,- rdhmdhl closed issue as completed: [4485](https://github.com/hackforla/website/issues/4485#event-9217884689) at 2023-05-10 10:00 PM PDT -rdhmdhl,2023-05-11T05:07:41Z,- rdhmdhl opened pull request: [4651](https://github.com/hackforla/website/pull/4651) at 2023-05-10 10:07 PM PDT -rdhmdhl,2023-05-14T19:46:36Z,- rdhmdhl submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1425594000) at 2023-05-14 12:46 PM PDT -rdhmdhl,2023-05-14T20:09:14Z,- rdhmdhl submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1425595989) at 2023-05-14 01:09 PM PDT -rdhmdhl,2023-05-14T22:53:10Z,- rdhmdhl assigned to issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1544464154) at 2023-05-14 03:53 PM PDT -rdhmdhl,2023-05-14T23:20:08Z,- rdhmdhl opened pull request: [4667](https://github.com/hackforla/website/pull/4667) at 2023-05-14 04:20 PM PDT -rdhmdhl,2023-05-14T23:27:32Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1547026761) at 2023-05-14 04:27 PM PDT -rdhmdhl,2023-05-14T23:31:18Z,- rdhmdhl commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1547027773) at 2023-05-14 04:31 PM PDT -rdhmdhl,2023-05-16T16:30:50Z,- rdhmdhl unassigned from issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1549999356) at 2023-05-16 09:30 AM PDT -rdhmdhl,2023-05-17T01:47:07Z,- rdhmdhl pull request merged: [4667](https://github.com/hackforla/website/pull/4667#event-9263819062) at 2023-05-16 06:47 PM PDT -rdhmdhl,2023-05-17T01:50:32Z,- rdhmdhl pull request closed w/o merging: [4651](https://github.com/hackforla/website/pull/4651#event-9263833874) at 2023-05-16 06:50 PM PDT -rdhmdhl,2023-05-17T04:06:55Z,- rdhmdhl commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1550668976) at 2023-05-16 09:06 PM PDT -rdhmdhl,2023-05-17T17:14:50Z,- rdhmdhl commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1551781555) at 2023-05-17 10:14 AM PDT -rdhmdhl,2023-05-19T00:48:50Z,- rdhmdhl opened pull request: [4695](https://github.com/hackforla/website/pull/4695) at 2023-05-18 05:48 PM PDT -rdhmdhl,2023-05-19T00:53:52Z,- rdhmdhl opened pull request: [4696](https://github.com/hackforla/website/pull/4696) at 2023-05-18 05:53 PM PDT -rdhmdhl,2023-05-19T00:54:16Z,- rdhmdhl pull request closed w/o merging: [4696](https://github.com/hackforla/website/pull/4696#event-9284802954) at 2023-05-18 05:54 PM PDT -rdhmdhl,2023-05-19T01:23:19Z,- rdhmdhl opened pull request: [4697](https://github.com/hackforla/website/pull/4697) at 2023-05-18 06:23 PM PDT -rdhmdhl,2023-05-19T01:24:28Z,- rdhmdhl commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1553883870) at 2023-05-18 06:24 PM PDT -rdhmdhl,2023-05-21T15:44:08Z,- rdhmdhl pull request merged: [4697](https://github.com/hackforla/website/pull/4697#event-9296192877) at 2023-05-21 08:44 AM PDT -rdhmdhl,2023-05-21T17:37:55Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1556236134) at 2023-05-21 10:37 AM PDT -rdhmdhl,2023-05-24T01:33:45Z,- rdhmdhl assigned to issue: [4706](https://github.com/hackforla/website/issues/4706) at 2023-05-23 06:33 PM PDT -rdhmdhl,2023-05-24T01:34:42Z,- rdhmdhl commented on issue: [4706](https://github.com/hackforla/website/issues/4706#issuecomment-1560337842) at 2023-05-23 06:34 PM PDT -rdhmdhl,2023-05-24T02:14:56Z,- rdhmdhl opened pull request: [4710](https://github.com/hackforla/website/pull/4710) at 2023-05-23 07:14 PM PDT -rdhmdhl,2023-05-24T03:02:54Z,- rdhmdhl commented on pull request: [4710](https://github.com/hackforla/website/pull/4710#issuecomment-1560394505) at 2023-05-23 08:02 PM PDT -rdhmdhl,2023-05-25T04:17:19Z,- rdhmdhl commented on pull request: [4710](https://github.com/hackforla/website/pull/4710#issuecomment-1562239299) at 2023-05-24 09:17 PM PDT -rdhmdhl,2023-05-25T18:34:28Z,- rdhmdhl pull request merged: [4710](https://github.com/hackforla/website/pull/4710#event-9343295884) at 2023-05-25 11:34 AM PDT -rdhmdhl,2023-05-26T04:26:46Z,- rdhmdhl assigned to issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1547138979) at 2023-05-25 09:26 PM PDT -rdhmdhl,2023-05-26T04:29:31Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1563794590) at 2023-05-25 09:29 PM PDT -rdhmdhl,2023-05-29T18:55:38Z,- rdhmdhl commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1567426090) at 2023-05-29 11:55 AM PDT -rdhmdhl,2023-05-29T18:56:53Z,- rdhmdhl commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1567426809) at 2023-05-29 11:56 AM PDT -rdhmdhl,2023-05-29T21:36:26Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1567533798) at 2023-05-29 02:36 PM PDT -rdhmdhl,2023-05-29T21:48:09Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1567539390) at 2023-05-29 02:48 PM PDT -rdhmdhl,2023-05-30T23:59:16Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1569296229) at 2023-05-30 04:59 PM PDT -rdhmdhl,2023-05-31T01:35:04Z,- rdhmdhl commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1569362340) at 2023-05-30 06:35 PM PDT -rdhmdhl,2023-06-01T08:22:55Z,- rdhmdhl opened issue: [4766](https://github.com/hackforla/website/issues/4766) at 2023-06-01 01:22 AM PDT -rdhmdhl,2023-06-11T17:26:48Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1586255961) at 2023-06-11 10:26 AM PDT -rdhmdhl,2023-06-14T00:51:27Z,- rdhmdhl commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1590262840) at 2023-06-13 05:51 PM PDT -rdhmdhl,2023-06-27T03:37:32Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1608729725) at 2023-06-26 08:37 PM PDT -rdhmdhl,2023-06-28T02:43:29Z,- rdhmdhl submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1502160893) at 2023-06-27 07:43 PM PDT -rdhmdhl,2023-07-09T18:29:59Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1627790646) at 2023-07-09 11:29 AM PDT -rdhmdhl,2023-07-12T02:26:01Z,- rdhmdhl commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1631753931) at 2023-07-11 07:26 PM PDT -rdhmdhl,2023-07-12T22:42:27Z,- rdhmdhl submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1527330233) at 2023-07-12 03:42 PM PDT -rdhmdhl,2023-07-13T01:17:27Z,- rdhmdhl submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1527428808) at 2023-07-12 06:17 PM PDT -rdhmdhl,2023-07-19T00:38:36Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1641202769) at 2023-07-18 05:38 PM PDT -rdhmdhl,2023-07-21T22:08:24Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1646282976) at 2023-07-21 03:08 PM PDT -rdhmdhl,2023-07-26T03:40:29Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1650930065) at 2023-07-25 08:40 PM PDT -rdhmdhl,2023-08-03T22:52:58Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1664736096) at 2023-08-03 03:52 PM PDT -rdhmdhl,2023-08-03T22:55:16Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1664737655) at 2023-08-03 03:55 PM PDT -rdhmdhl,2023-08-15T02:01:29Z,- rdhmdhl opened issue: [5205](https://github.com/hackforla/website/issues/5205) at 2023-08-14 07:01 PM PDT -rdhmdhl,2023-08-15T02:01:29Z,- rdhmdhl assigned to issue: [5205](https://github.com/hackforla/website/issues/5205) at 2023-08-14 07:01 PM PDT -rdhmdhl,2024-01-26T21:35:09Z,- rdhmdhl unassigned from issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1912726743) at 2024-01-26 01:35 PM PST -rdpfeifle,3789,SKILLS ISSUE -rdpfeifle,2023-01-04T04:49:22Z,- rdpfeifle opened issue: [3789](https://github.com/hackforla/website/issues/3789) at 2023-01-03 08:49 PM PST -rdpfeifle,2023-01-09T14:54:04Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1375742194) at 2023-01-09 06:54 AM PST -rdpfeifle,2023-01-09T16:56:19Z,- rdpfeifle assigned to issue: [2865](https://github.com/hackforla/website/issues/2865#issuecomment-1048467439) at 2023-01-09 08:56 AM PST -rdpfeifle,2023-01-09T17:37:04Z,- rdpfeifle opened pull request: [3799](https://github.com/hackforla/website/pull/3799) at 2023-01-09 09:37 AM PST -rdpfeifle,2023-01-09T23:28:40Z,- rdpfeifle commented on issue: [2865](https://github.com/hackforla/website/issues/2865#issuecomment-1376487631) at 2023-01-09 03:28 PM PST -rdpfeifle,2023-01-09T23:28:40Z,- rdpfeifle closed issue by PR 3799: [2865](https://github.com/hackforla/website/issues/2865#event-8186803167) at 2023-01-09 03:28 PM PST -rdpfeifle,2023-01-09T23:34:56Z,- rdpfeifle reopened issue: [2865](https://github.com/hackforla/website/issues/2865#event-8186803167) at 2023-01-09 03:34 PM PST -rdpfeifle,2023-01-09T23:36:25Z,- rdpfeifle closed issue by PR 3799: [2865](https://github.com/hackforla/website/issues/2865#event-8186836537) at 2023-01-09 03:36 PM PST -rdpfeifle,2023-01-10T00:10:39Z,- rdpfeifle pull request merged: [3799](https://github.com/hackforla/website/pull/3799#event-8186985915) at 2023-01-09 04:10 PM PST -rdpfeifle,2023-01-10T15:36:21Z,- rdpfeifle commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1377455501) at 2023-01-10 07:36 AM PST -rdpfeifle,2023-01-10T15:46:04Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1377468948) at 2023-01-10 07:46 AM PST -rdpfeifle,2023-01-10T15:48:08Z,- rdpfeifle commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1377471827) at 2023-01-10 07:48 AM PST -rdpfeifle,2023-01-10T16:24:14Z,- rdpfeifle closed issue as completed: [3789](https://github.com/hackforla/website/issues/3789#event-8193713336) at 2023-01-10 08:24 AM PST -rdpfeifle,2023-01-10T16:25:21Z,- rdpfeifle assigned to issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1166614411) at 2023-01-10 08:25 AM PST -rdpfeifle,2023-01-13T17:29:50Z,- rdpfeifle commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1382169766) at 2023-01-13 09:29 AM PST -rdpfeifle,2023-01-15T16:52:37Z,- rdpfeifle commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1383198934) at 2023-01-15 08:52 AM PST -rdpfeifle,2023-01-15T16:53:38Z,- rdpfeifle unassigned from issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1383198934) at 2023-01-15 08:53 AM PST -rdpfeifle,2023-01-15T16:59:33Z,- rdpfeifle assigned to issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1116721538) at 2023-01-15 08:59 AM PST -rdpfeifle,2023-01-15T17:11:39Z,- rdpfeifle commented on issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1383203306) at 2023-01-15 09:11 AM PST -rdpfeifle,2023-01-15T17:24:25Z,- rdpfeifle opened pull request: [3817](https://github.com/hackforla/website/pull/3817) at 2023-01-15 09:24 AM PST -rdpfeifle,2023-01-15T17:26:30Z,- rdpfeifle commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1383206580) at 2023-01-15 09:26 AM PST -rdpfeifle,2023-01-15T17:29:50Z,- rdpfeifle assigned to issue: [3789](https://github.com/hackforla/website/issues/3789#event-8193713336) at 2023-01-15 09:29 AM PST -rdpfeifle,2023-01-15T17:34:27Z,- rdpfeifle commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1383208062) at 2023-01-15 09:34 AM PST -rdpfeifle,2023-01-15T17:43:27Z,- rdpfeifle commented on issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1383210011) at 2023-01-15 09:43 AM PST -rdpfeifle,2023-01-17T15:57:08Z,- rdpfeifle pull request merged: [3817](https://github.com/hackforla/website/pull/3817#event-8247174568) at 2023-01-17 07:57 AM PST -rdpfeifle,2023-01-20T02:22:17Z,- rdpfeifle commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1397847550) at 2023-01-19 06:22 PM PST -rdpfeifle,2023-01-20T16:18:05Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1398619628) at 2023-01-20 08:18 AM PST -rdpfeifle,2023-02-07T22:03:24Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1421520391) at 2023-02-07 02:03 PM PST -regular-polygon,6605,SKILLS ISSUE -regular-polygon,2024-04-09T03:05:09Z,- regular-polygon opened issue: [6605](https://github.com/hackforla/website/issues/6605) at 2024-04-08 08:05 PM PDT -regular-polygon,2024-04-09T03:05:15Z,- regular-polygon assigned to issue: [6605](https://github.com/hackforla/website/issues/6605) at 2024-04-08 08:05 PM PDT -regular-polygon,2024-04-14T23:48:45Z,- regular-polygon assigned to issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2020597060) at 2024-04-14 04:48 PM PDT -regular-polygon,2024-04-15T22:24:03Z,- regular-polygon commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2057911975) at 2024-04-15 03:24 PM PDT -regular-polygon,2024-04-15T22:25:10Z,- regular-polygon commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2057913122) at 2024-04-15 03:25 PM PDT -regular-polygon,2024-04-15T23:24:34Z,- regular-polygon opened pull request: [6652](https://github.com/hackforla/website/pull/6652) at 2024-04-15 04:24 PM PDT -regular-polygon,2024-04-18T22:06:33Z,- regular-polygon pull request merged: [6652](https://github.com/hackforla/website/pull/6652#event-12529708762) at 2024-04-18 03:06 PM PDT -regular-polygon,2024-04-24T03:00:20Z,- regular-polygon assigned to issue: [6684](https://github.com/hackforla/website/issues/6684) at 2024-04-23 08:00 PM PDT -regular-polygon,2024-04-24T03:02:11Z,- regular-polygon commented on issue: [6684](https://github.com/hackforla/website/issues/6684#issuecomment-2073920099) at 2024-04-23 08:02 PM PDT -regular-polygon,2024-04-24T20:02:03Z,- regular-polygon opened pull request: [6745](https://github.com/hackforla/website/pull/6745) at 2024-04-24 01:02 PM PDT -regular-polygon,2024-04-28T16:54:18Z,- regular-polygon pull request merged: [6745](https://github.com/hackforla/website/pull/6745#event-12635310121) at 2024-04-28 09:54 AM PDT -render,2021-06-22T06:08:00Z,- render commented on pull request: [1808](https://github.com/hackforla/website/pull/1808#issuecomment-865625207) at 2021-06-21 11:08 PM PDT -Retr0-XD,2023-06-13T00:26:05Z,- Retr0-XD commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588287349) at 2023-06-12 05:26 PM PDT -rfambro2,2020-06-24T16:31:04Z,- rfambro2 opened issue: [588](https://github.com/hackforla/website/issues/588) at 2020-06-24 09:31 AM PDT -rfambro2,2020-06-24T16:31:28Z,- rfambro2 assigned to issue: [588](https://github.com/hackforla/website/issues/588) at 2020-06-24 09:31 AM PDT -rfambro2,2020-06-28T16:41:34Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650791465) at 2020-06-28 09:41 AM PDT -rfambro2,2020-06-28T19:11:38Z,- rfambro2 unassigned from issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650808846) at 2020-06-28 12:11 PM PDT -rfambro2,2020-07-09T16:03:54Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656213886) at 2020-07-09 09:03 AM PDT -rfambro2,2020-07-15T23:45:18Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-659071776) at 2020-07-15 04:45 PM PDT -rfambro2,2021-01-10T20:58:31Z,- rfambro2 assigned to issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 12:58 PM PST -rfambro2,2021-01-10T21:09:14Z,- rfambro2 unassigned from issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 01:09 PM PST -rfambro2,2021-01-17T16:33:55Z,- rfambro2 commented on issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-761840267) at 2021-01-17 08:33 AM PST -rh5140,2020-12-30T04:59:53Z,- rh5140 assigned to issue: [897](https://github.com/hackforla/website/issues/897) at 2020-12-29 08:59 PM PST -rh5140,2021-01-03T19:52:18Z,- rh5140 assigned to issue: [902](https://github.com/hackforla/website/issues/902#issuecomment-753657049) at 2021-01-03 11:52 AM PST -rh5140,2021-01-03T21:09:08Z,- rh5140 assigned to issue: [909](https://github.com/hackforla/website/issues/909) at 2021-01-03 01:09 PM PST -rh5140,2021-01-04T06:10:53Z,- rh5140 opened pull request: [914](https://github.com/hackforla/website/pull/914) at 2021-01-03 10:10 PM PST -rh5140,2021-01-04T06:11:05Z,- rh5140 pull request merged: [914](https://github.com/hackforla/website/pull/914#event-4163467949) at 2021-01-03 10:11 PM PST -rh5140,2021-01-04T08:01:25Z,- rh5140 commented on issue: [909](https://github.com/hackforla/website/issues/909#issuecomment-753821262) at 2021-01-04 12:01 AM PST -rh5140,2021-01-04T19:08:33Z,- rh5140 commented on issue: [909](https://github.com/hackforla/website/issues/909#issuecomment-754159529) at 2021-01-04 11:08 AM PST -rh5140,2021-01-04T19:08:33Z,- rh5140 closed issue as completed: [909](https://github.com/hackforla/website/issues/909#event-4166308727) at 2021-01-04 11:08 AM PST -rh5140,2021-01-06T03:30:33Z,- rh5140 commented on issue: [897](https://github.com/hackforla/website/issues/897#issuecomment-755054790) at 2021-01-05 07:30 PM PST -rh5140,2021-01-06T03:30:33Z,- rh5140 closed issue as completed: [897](https://github.com/hackforla/website/issues/897#event-4173194387) at 2021-01-05 07:30 PM PST -rh5140,2021-01-06T04:11:28Z,- rh5140 assigned to issue: [908](https://github.com/hackforla/website/issues/908) at 2021-01-05 08:11 PM PST -rh5140,2021-01-06T04:12:27Z,- rh5140 assigned to issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:12 PM PST -rh5140,2021-01-06T04:28:38Z,- rh5140 unassigned from issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:28 PM PST -rh5140,2021-01-10T20:11:46Z,- rh5140 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757536164) at 2021-01-10 12:11 PM PST -rh5140,2021-01-10T21:00:57Z,- rh5140 opened pull request: [926](https://github.com/hackforla/website/pull/926) at 2021-01-10 01:00 PM PST -rh5140,2021-01-10T21:01:47Z,- rh5140 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757543474) at 2021-01-10 01:01 PM PST -rh5140,2021-01-12T04:31:57Z,- rh5140 pull request merged: [926](https://github.com/hackforla/website/pull/926#event-4193938849) at 2021-01-11 08:31 PM PST -rh5140,2021-01-13T05:22:56Z,- rh5140 assigned to issue: [936](https://github.com/hackforla/website/issues/936) at 2021-01-12 09:22 PM PST -rh5140,2021-01-17T00:49:46Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-761707019) at 2021-01-16 04:49 PM PST -rh5140,2021-01-18T09:46:02Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-762125159) at 2021-01-18 01:46 AM PST -rh5140,2021-01-31T23:30:38Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-770471464) at 2021-01-31 03:30 PM PST -rh5140,2021-02-06T20:29:09Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-06 12:29 PM PST -rh5140,2021-02-07T18:50:36Z,- rh5140 unassigned from issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-07 10:50 AM PST -rhiannab,2703,SKILLS ISSUE -rhiannab,2022-01-19T13:09:40Z,- rhiannab opened issue: [2703](https://github.com/hackforla/website/issues/2703) at 2022-01-19 05:09 AM PST -rhiannab,2022-01-21T21:06:26Z,- rhiannab closed issue as completed: [2703](https://github.com/hackforla/website/issues/2703#event-5934750758) at 2022-01-21 01:06 PM PST -rhoneriver,7842,SKILLS ISSUE -rhoneriver,2025-01-21T19:10:15Z,- rhoneriver opened issue: [7842](https://github.com/hackforla/website/issues/7842) at 2025-01-21 11:10 AM PST -rhoneriver,2025-01-21T19:11:50Z,- rhoneriver assigned to issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2605535134) at 2025-01-21 11:11 AM PST -rhoneriver,2025-01-21T19:17:29Z,- rhoneriver commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2605547434) at 2025-01-21 11:17 AM PST -rhoneriver,2025-01-21T19:19:56Z,- rhoneriver commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2605551907) at 2025-01-21 11:19 AM PST -richardmundyiii,4170,SKILLS ISSUE -richardmundyiii,2023-03-14T03:23:11Z,- richardmundyiii opened issue: [4170](https://github.com/hackforla/website/issues/4170) at 2023-03-13 08:23 PM PDT -richardmundyiii,2023-03-14T03:31:19Z,- richardmundyiii assigned to issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1467293481) at 2023-03-13 08:31 PM PDT -richardmundyiii,2023-03-14T04:35:17Z,- richardmundyiii assigned to issue: [4014](https://github.com/hackforla/website/issues/4014) at 2023-03-13 09:35 PM PDT -richardmundyiii,2023-03-14T04:36:28Z,- richardmundyiii commented on issue: [4014](https://github.com/hackforla/website/issues/4014#issuecomment-1467342600) at 2023-03-13 09:36 PM PDT -richardmundyiii,2023-03-14T05:24:02Z,- richardmundyiii opened pull request: [4175](https://github.com/hackforla/website/pull/4175) at 2023-03-13 10:24 PM PDT -richardmundyiii,2023-03-14T05:29:26Z,- richardmundyiii commented on issue: [4014](https://github.com/hackforla/website/issues/4014#issuecomment-1467390477) at 2023-03-13 10:29 PM PDT -richardmundyiii,2023-03-14T13:21:23Z,- richardmundyiii assigned to issue: [4013](https://github.com/hackforla/website/issues/4013) at 2023-03-14 06:21 AM PDT -richardmundyiii,2023-03-14T13:23:23Z,- richardmundyiii commented on issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1468096796) at 2023-03-14 06:23 AM PDT -richardmundyiii,2023-03-14T13:36:39Z,- richardmundyiii opened pull request: [4176](https://github.com/hackforla/website/pull/4176) at 2023-03-14 06:36 AM PDT -richardmundyiii,2023-03-15T05:27:05Z,- richardmundyiii pull request merged: [4175](https://github.com/hackforla/website/pull/4175#event-8751179922) at 2023-03-14 10:27 PM PDT -richardmundyiii,2023-03-17T00:45:08Z,- richardmundyiii pull request merged: [4176](https://github.com/hackforla/website/pull/4176#event-8773226893) at 2023-03-16 05:45 PM PDT -richardmundyiii,2023-03-17T03:45:32Z,- richardmundyiii assigned to issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1442319971) at 2023-03-16 08:45 PM PDT -richardmundyiii,2023-03-17T03:48:45Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1473083483) at 2023-03-16 08:48 PM PDT -richardmundyiii,2023-03-17T04:50:34Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1473125989) at 2023-03-16 09:50 PM PDT -richardmundyiii,2023-03-17T05:10:47Z,- richardmundyiii commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1473140576) at 2023-03-16 10:10 PM PDT -richardmundyiii,2023-03-17T05:41:24Z,- richardmundyiii submitted pull request review: [4199](https://github.com/hackforla/website/pull/4199#pullrequestreview-1345305659) at 2023-03-16 10:41 PM PDT -richardmundyiii,2023-03-17T05:46:16Z,- richardmundyiii commented on pull request: [4198](https://github.com/hackforla/website/pull/4198#issuecomment-1473166894) at 2023-03-16 10:46 PM PDT -richardmundyiii,2023-03-17T06:06:27Z,- richardmundyiii submitted pull request review: [4198](https://github.com/hackforla/website/pull/4198#pullrequestreview-1345328735) at 2023-03-16 11:06 PM PDT -richardmundyiii,2023-03-18T23:24:23Z,- richardmundyiii commented on pull request: [3631](https://github.com/hackforla/website/pull/3631#issuecomment-1475029296) at 2023-03-18 04:24 PM PDT -richardmundyiii,2023-03-18T23:39:47Z,- richardmundyiii submitted pull request review: [3631](https://github.com/hackforla/website/pull/3631#pullrequestreview-1347313443) at 2023-03-18 04:39 PM PDT -richardmundyiii,2023-03-18T23:48:23Z,- richardmundyiii submitted pull request review: [3807](https://github.com/hackforla/website/pull/3807#pullrequestreview-1347316113) at 2023-03-18 04:48 PM PDT -richardmundyiii,2023-03-18T23:52:29Z,- richardmundyiii commented on pull request: [4209](https://github.com/hackforla/website/pull/4209#issuecomment-1475035901) at 2023-03-18 04:52 PM PDT -richardmundyiii,2023-03-18T23:58:45Z,- richardmundyiii submitted pull request review: [4209](https://github.com/hackforla/website/pull/4209#pullrequestreview-1347322450) at 2023-03-18 04:58 PM PDT -richardmundyiii,2023-03-19T00:01:37Z,- richardmundyiii commented on pull request: [4207](https://github.com/hackforla/website/pull/4207#issuecomment-1475038306) at 2023-03-18 05:01 PM PDT -richardmundyiii,2023-03-19T00:04:48Z,- richardmundyiii submitted pull request review: [4207](https://github.com/hackforla/website/pull/4207#pullrequestreview-1347323810) at 2023-03-18 05:04 PM PDT -richardmundyiii,2023-03-19T18:42:04Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1475357421) at 2023-03-19 11:42 AM PDT -richardmundyiii,2023-03-19T18:42:04Z,- richardmundyiii closed issue as completed: [4033](https://github.com/hackforla/website/issues/4033#event-8788437005) at 2023-03-19 11:42 AM PDT -richardmundyiii,2023-03-19T19:04:41Z,- richardmundyiii assigned to issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1457317410) at 2023-03-19 12:04 PM PDT -richardmundyiii,2023-03-19T19:05:07Z,- richardmundyiii commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475363859) at 2023-03-19 12:05 PM PDT -richardmundyiii,2023-03-20T00:01:33Z,- richardmundyiii commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475443596) at 2023-03-19 05:01 PM PDT -richardmundyiii,2023-03-23T07:43:28Z,- richardmundyiii opened pull request: [4259](https://github.com/hackforla/website/pull/4259) at 2023-03-23 12:43 AM PDT -richardmundyiii,2023-03-25T19:43:00Z,- richardmundyiii commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1483906498) at 2023-03-25 12:43 PM PDT -richardmundyiii,2023-03-26T18:18:24Z,- richardmundyiii commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1484177895) at 2023-03-26 11:18 AM PDT -richardmundyiii,2023-03-26T21:14:52Z,- richardmundyiii pull request merged: [4259](https://github.com/hackforla/website/pull/4259#event-8848133863) at 2023-03-26 02:14 PM PDT -richardmundyiii,2023-03-28T20:20:07Z,- richardmundyiii assigned to issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1482089887) at 2023-03-28 01:20 PM PDT -richardmundyiii,2023-03-28T20:21:13Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1487543430) at 2023-03-28 01:21 PM PDT -richardmundyiii,2023-04-08T20:18:42Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1500970376) at 2023-04-08 01:18 PM PDT -richardmundyiii,2023-04-08T20:20:41Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1500970711) at 2023-04-08 01:20 PM PDT -richardmundyiii,2023-04-12T05:53:18Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1504696228) at 2023-04-11 10:53 PM PDT -richardmundyiii,2023-05-15T03:10:48Z,- richardmundyiii unassigned from issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1547131193) at 2023-05-14 08:10 PM PDT -Richey24,3121,SKILLS ISSUE -Richey24,2022-05-11T03:16:49Z,- Richey24 opened issue: [3121](https://github.com/hackforla/website/issues/3121) at 2022-05-10 08:16 PM PDT -Richey24,2022-05-11T03:20:00Z,- Richey24 assigned to issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1123135963) at 2022-05-10 08:20 PM PDT -riddle015,2701,SKILLS ISSUE -riddle015,2022-01-19T03:56:10Z,- riddle015 opened issue: [2701](https://github.com/hackforla/website/issues/2701) at 2022-01-18 07:56 PM PST -riddle015,2022-01-19T04:03:24Z,- riddle015 assigned to issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1016056363) at 2022-01-18 08:03 PM PST -riddle015,2022-01-19T07:05:11Z,- riddle015 assigned to issue: [1564](https://github.com/hackforla/website/issues/1564) at 2022-01-18 11:05 PM PST -riddle015,2022-01-19T07:10:17Z,- riddle015 commented on issue: [1564](https://github.com/hackforla/website/issues/1564#issuecomment-1016146546) at 2022-01-18 11:10 PM PST -riddle015,2022-01-24T01:05:05Z,- riddle015 opened pull request: [2714](https://github.com/hackforla/website/pull/2714) at 2022-01-23 05:05 PM PST -riddle015,2022-01-24T01:23:02Z,- riddle015 assigned to issue: [2238](https://github.com/hackforla/website/issues/2238) at 2022-01-23 05:23 PM PST -riddle015,2022-01-27T23:23:21Z,- riddle015 pull request merged: [2714](https://github.com/hackforla/website/pull/2714#event-5967346978) at 2022-01-27 03:23 PM PST -riddle015,2022-02-02T15:01:31Z,- riddle015 commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1028028791) at 2022-02-02 07:01 AM PST -riddle015,2022-02-02T15:08:05Z,- riddle015 commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1028035551) at 2022-02-02 07:08 AM PST -riddle015,2022-02-20T20:00:31Z,- riddle015 opened issue: [2806](https://github.com/hackforla/website/issues/2806) at 2022-02-20 12:00 PM PST -riddle015,2022-03-13T17:22:49Z,- riddle015 commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1066145718) at 2022-03-13 10:22 AM PDT -riddle015,2022-03-13T17:23:40Z,- riddle015 commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1066145835) at 2022-03-13 10:23 AM PDT -riddle015,2022-03-13T17:30:09Z,- riddle015 commented on pull request: [2973](https://github.com/hackforla/website/pull/2973#issuecomment-1066146856) at 2022-03-13 10:30 AM PDT -riddle015,2022-03-20T22:26:19Z,- riddle015 opened pull request: [2995](https://github.com/hackforla/website/pull/2995) at 2022-03-20 03:26 PM PDT -riddle015,2022-03-21T07:48:14Z,- riddle015 pull request merged: [2995](https://github.com/hackforla/website/pull/2995#event-6273326509) at 2022-03-21 12:48 AM PDT -riddle015,2022-03-27T17:19:44Z,- riddle015 closed issue by PR 3961: [2806](https://github.com/hackforla/website/issues/2806#event-6313998924) at 2022-03-27 10:19 AM PDT -riddle015,2022-04-17T20:33:18Z,- riddle015 assigned to issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1100208451) at 2022-04-17 01:33 PM PDT -riddle015,2022-04-20T19:46:54Z,- riddle015 unassigned from issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104392914) at 2022-04-20 12:46 PM PDT -riddle015,2022-05-13T05:16:04Z,- riddle015 assigned to issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1075792069) at 2022-05-12 10:16 PM PDT -riddle015,2022-05-29T17:28:48Z,- riddle015 commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1140492052) at 2022-05-29 10:28 AM PDT -riddle015,2022-06-12T05:58:11Z,- riddle015 opened pull request: [3237](https://github.com/hackforla/website/pull/3237) at 2022-06-11 10:58 PM PDT -riddle015,2022-06-12T06:06:07Z,- riddle015 commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1153080649) at 2022-06-11 11:06 PM PDT -riddle015,2022-06-15T20:37:44Z,- riddle015 pull request merged: [3237](https://github.com/hackforla/website/pull/3237#event-6815991591) at 2022-06-15 01:37 PM PDT -riddle015,2022-06-26T17:28:29Z,- riddle015 commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166595198) at 2022-06-26 10:28 AM PDT -riddle015,2022-06-26T17:58:45Z,- riddle015 opened issue: [3305](https://github.com/hackforla/website/issues/3305) at 2022-06-26 10:58 AM PDT -riddle015,2022-06-26T18:53:54Z,- riddle015 opened issue: [3311](https://github.com/hackforla/website/issues/3311) at 2022-06-26 11:53 AM PDT -riddle015,2022-08-21T17:13:03Z,- riddle015 assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-997282293) at 2022-08-21 10:13 AM PDT -riddle015,2022-10-02T18:47:22Z,- riddle015 unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1261125508) at 2022-10-02 11:47 AM PDT -Ris345,4997,SKILLS ISSUE -Ris345,2023-07-18T02:34:04Z,- Ris345 opened issue: [4997](https://github.com/hackforla/website/issues/4997) at 2023-07-17 07:34 PM PDT -Ris345,2023-07-18T02:34:30Z,- Ris345 assigned to issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1639188615) at 2023-07-17 07:34 PM PDT -Ris345,2023-07-21T16:58:41Z,- Ris345 assigned to issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1643691982) at 2023-07-21 09:58 AM PDT -Ris345,2023-07-21T17:00:11Z,- Ris345 commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1645996006) at 2023-07-21 10:00 AM PDT -Ris345,2023-07-22T00:12:33Z,- Ris345 opened pull request: [5047](https://github.com/hackforla/website/pull/5047) at 2023-07-21 05:12 PM PDT -Ris345,2023-07-22T11:58:51Z,- Ris345 unassigned from issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:58 AM PDT -Ris345,2023-07-22T12:19:14Z,- Ris345 pull request closed w/o merging: [5047](https://github.com/hackforla/website/pull/5047#event-9891035205) at 2023-07-22 05:19 AM PDT -Ris345,2023-07-22T15:11:15Z,- Ris345 commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646604195) at 2023-07-22 08:11 AM PDT -Ris345,2023-07-22T16:05:54Z,- Ris345 assigned to issue: [5036](https://github.com/hackforla/website/issues/5036) at 2023-07-22 09:05 AM PDT -Ris345,2023-07-22T16:06:46Z,- Ris345 commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-22 09:06 AM PDT -Ris345,2023-07-22T19:00:52Z,- Ris345 opened pull request: [5050](https://github.com/hackforla/website/pull/5050) at 2023-07-22 12:00 PM PDT -Ris345,2023-07-23T17:10:56Z,- Ris345 pull request closed w/o merging: [5050](https://github.com/hackforla/website/pull/5050#event-9893137292) at 2023-07-23 10:10 AM PDT -Ris345,2023-07-23T17:16:15Z,- Ris345 unassigned from issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-23 10:16 AM PDT -Ris345,2023-07-26T12:06:53Z,- Ris345 assigned to issue: [4917](https://github.com/hackforla/website/issues/4917) at 2023-07-26 05:06 AM PDT -Ris345,2023-07-26T12:09:04Z,- Ris345 commented on issue: [4917](https://github.com/hackforla/website/issues/4917#issuecomment-1651680153) at 2023-07-26 05:09 AM PDT -Ris345,2023-07-26T13:11:16Z,- Ris345 opened pull request: [5095](https://github.com/hackforla/website/pull/5095) at 2023-07-26 06:11 AM PDT -Ris345,2023-07-27T02:08:52Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1652808632) at 2023-07-26 07:08 PM PDT -Ris345,2023-07-28T22:56:27Z,- Ris345 assigned to issue: [4812](https://github.com/hackforla/website/issues/4812) at 2023-07-28 03:56 PM PDT -Ris345,2023-07-28T23:46:04Z,- Ris345 unassigned from issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1656418240) at 2023-07-28 04:46 PM PDT -Ris345,2023-07-30T12:20:25Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657125657) at 2023-07-30 05:20 AM PDT -Ris345,2023-07-31T00:22:40Z,- Ris345 pull request merged: [5095](https://github.com/hackforla/website/pull/5095#event-9957754558) at 2023-07-30 05:22 PM PDT -Ris345,2023-07-31T00:56:47Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657339471) at 2023-07-30 05:56 PM PDT -Ris345,2023-07-31T01:31:09Z,- Ris345 assigned to issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1656418240) at 2023-07-30 06:31 PM PDT -Ris345,2023-07-31T01:36:31Z,- Ris345 commented on issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1657368117) at 2023-07-30 06:36 PM PDT -Ris345,2023-07-31T16:15:35Z,- Ris345 opened pull request: [5119](https://github.com/hackforla/website/pull/5119) at 2023-07-31 09:15 AM PDT -Ris345,2023-07-31T20:50:21Z,- Ris345 commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659142534) at 2023-07-31 01:50 PM PDT -Ris345,2023-08-01T21:04:26Z,- Ris345 commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1661091341) at 2023-08-01 02:04 PM PDT -Ris345,2023-08-04T02:26:48Z,- Ris345 pull request merged: [5119](https://github.com/hackforla/website/pull/5119#event-10004678373) at 2023-08-03 07:26 PM PDT -Ris345,2023-08-04T02:36:46Z,- Ris345 commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1664890835) at 2023-08-03 07:36 PM PDT -Ris345,2023-08-06T04:19:41Z,- Ris345 assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-08-05 09:19 PM PDT -Ris345,2023-08-06T04:20:11Z,- Ris345 unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-08-05 09:20 PM PDT -Ris345,2023-08-06T04:25:06Z,- Ris345 assigned to issue: [4786](https://github.com/hackforla/website/issues/4786) at 2023-08-05 09:25 PM PDT -Ris345,2023-08-06T04:28:12Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1666709619) at 2023-08-05 09:28 PM PDT -Ris345,2023-08-09T01:53:22Z,- Ris345 commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1670539995) at 2023-08-08 06:53 PM PDT -Ris345,2023-08-09T03:03:24Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1670584024) at 2023-08-08 08:03 PM PDT -Ris345,2023-08-09T21:27:10Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672174421) at 2023-08-09 02:27 PM PDT -Ris345,2023-08-10T02:47:48Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672470973) at 2023-08-09 07:47 PM PDT -Ris345,2023-08-10T22:52:05Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1674024288) at 2023-08-10 03:52 PM PDT -Ris345,2023-08-13T19:56:41Z,- Ris345 assigned to issue: [1838](https://github.com/hackforla/website/issues/1838) at 2023-08-13 12:56 PM PDT -Ris345,2023-08-13T20:10:01Z,- Ris345 unassigned from issue: [1838](https://github.com/hackforla/website/issues/1838) at 2023-08-13 01:10 PM PDT -Ris345,2023-08-22T00:22:40Z,- Ris345 assigned to issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1652978683) at 2023-08-21 05:22 PM PDT -Ris345,2023-08-22T00:23:57Z,- Ris345 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1687234213) at 2023-08-21 05:23 PM PDT -Ris345,2023-08-25T18:50:02Z,- Ris345 unassigned from issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 11:50 AM PDT -Ris345,2023-08-26T22:50:48Z,- Ris345 assigned to issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1240328862) at 2023-08-26 03:50 PM PDT -Ris345,2023-08-26T22:56:52Z,- Ris345 commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2023-08-26 03:56 PM PDT -Ris345,2023-09-07T00:07:56Z,- Ris345 unassigned from issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2023-09-06 05:07 PM PDT -rleeoriginal,8095,SKILLS ISSUE -rleeoriginal,2025-04-29T02:59:27Z,- rleeoriginal opened issue: [8095](https://github.com/hackforla/website/issues/8095) at 2025-04-28 07:59 PM PDT -rleeoriginal,2025-04-29T02:59:54Z,- rleeoriginal assigned to issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2837310557) at 2025-04-28 07:59 PM PDT -rleeoriginal,2025-04-29T03:51:53Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2837373761) at 2025-04-28 08:51 PM PDT -rleeoriginal,2025-04-30T01:20:28Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2840578793) at 2025-04-29 06:20 PM PDT -rleeoriginal,2025-05-02T20:38:01Z,- rleeoriginal assigned to issue: [8086](https://github.com/hackforla/website/issues/8086) at 2025-05-02 01:38 PM PDT -rleeoriginal,2025-05-02T20:38:16Z,- rleeoriginal unassigned from issue: [8086](https://github.com/hackforla/website/issues/8086) at 2025-05-02 01:38 PM PDT -rleeoriginal,2025-05-02T20:41:31Z,- rleeoriginal assigned to issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848078749) at 2025-05-02 01:41 PM PDT -rleeoriginal,2025-05-02T20:41:45Z,- rleeoriginal unassigned from issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848078749) at 2025-05-02 01:41 PM PDT -rleeoriginal,2025-05-02T20:43:33Z,- rleeoriginal assigned to issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848084742) at 2025-05-02 01:43 PM PDT -rleeoriginal,2025-05-02T20:43:49Z,- rleeoriginal unassigned from issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848084742) at 2025-05-02 01:43 PM PDT -rleeoriginal,2025-05-02T20:52:27Z,- rleeoriginal assigned to issue: [7737](https://github.com/hackforla/website/issues/7737) at 2025-05-02 01:52 PM PDT -rleeoriginal,2025-05-02T21:10:22Z,- rleeoriginal commented on issue: [7737](https://github.com/hackforla/website/issues/7737#issuecomment-2848126476) at 2025-05-02 02:10 PM PDT -rleeoriginal,2025-05-03T01:09:46Z,- rleeoriginal opened pull request: [8114](https://github.com/hackforla/website/pull/8114) at 2025-05-02 06:09 PM PDT -rleeoriginal,2025-05-03T01:16:44Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2848341298) at 2025-05-02 06:16 PM PDT -rleeoriginal,2025-05-06T22:33:41Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2856291036) at 2025-05-06 03:33 PM PDT -rleeoriginal,2025-05-07T16:23:05Z,- rleeoriginal pull request merged: [8114](https://github.com/hackforla/website/pull/8114#event-17559727746) at 2025-05-07 09:23 AM PDT -rleeoriginal,2025-05-13T03:54:46Z,- rleeoriginal assigned to issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2667448949) at 2025-05-12 08:54 PM PDT -rleeoriginal,2025-05-13T04:02:04Z,- rleeoriginal commented on issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2874989937) at 2025-05-12 09:02 PM PDT -rleeoriginal,2025-05-15T04:05:50Z,- rleeoriginal opened pull request: [8141](https://github.com/hackforla/website/pull/8141) at 2025-05-14 09:05 PM PDT -rleeoriginal,2025-05-16T23:05:26Z,- rleeoriginal pull request merged: [8141](https://github.com/hackforla/website/pull/8141#event-17695292012) at 2025-05-16 04:05 PM PDT -rmayott,2021-07-15T18:28:59Z,- rmayott commented on issue: [1923](https://github.com/hackforla/website/issues/1923#issuecomment-880920680) at 2021-07-15 11:28 AM PDT -RobenusW,3190,SKILLS ISSUE -RobenusW,2022-06-01T03:58:34Z,- RobenusW opened issue: [3190](https://github.com/hackforla/website/issues/3190) at 2022-05-31 08:58 PM PDT -RobenusW,2022-06-01T04:22:05Z,- RobenusW assigned to issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1143090157) at 2022-05-31 09:22 PM PDT -RobenusW,2022-06-20T20:13:32Z,- RobenusW commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1160812716) at 2022-06-20 01:13 PM PDT -RobenusW,2022-06-23T21:06:20Z,- RobenusW commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1164873047) at 2022-06-23 02:06 PM PDT -RobenusW,2022-06-26T17:11:44Z,- RobenusW assigned to issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1047129584) at 2022-06-26 10:11 AM PDT -RobenusW,2022-06-26T17:30:29Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1166595665) at 2022-06-26 10:30 AM PDT -RobenusW,2022-06-26T17:45:12Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1166599006) at 2022-06-26 10:45 AM PDT -RobenusW,2022-06-26T18:54:07Z,- RobenusW opened issue: [3313](https://github.com/hackforla/website/issues/3313) at 2022-06-26 11:54 AM PDT -RobenusW,2022-07-11T23:09:39Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1181034076) at 2022-07-11 04:09 PM PDT -RobenusW,2022-07-11T23:11:45Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1181038010) at 2022-07-11 04:11 PM PDT -RobenusW,2022-07-13T01:03:56Z,- RobenusW opened pull request: [3362](https://github.com/hackforla/website/pull/3362) at 2022-07-12 06:03 PM PDT -RobenusW,2022-07-13T01:08:57Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1182650589) at 2022-07-12 06:08 PM PDT -RobenusW,2022-07-14T02:06:36Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1183881996) at 2022-07-13 07:06 PM PDT -RobenusW,2022-07-14T02:07:01Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1183883816) at 2022-07-13 07:07 PM PDT -RobenusW,2022-07-16T05:21:50Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186093061) at 2022-07-15 10:21 PM PDT -RobenusW,2022-07-16T05:39:40Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186095013) at 2022-07-15 10:39 PM PDT -RobenusW,2022-07-18T04:43:52Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186763938) at 2022-07-17 09:43 PM PDT -RobenusW,2022-07-20T02:49:54Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1189747172) at 2022-07-19 07:49 PM PDT -RobenusW,2022-07-23T04:26:48Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193057018) at 2022-07-22 09:26 PM PDT -RobenusW,2022-07-24T08:20:56Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193270693) at 2022-07-24 01:20 AM PDT -RobenusW,2022-07-25T04:33:21Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193566251) at 2022-07-24 09:33 PM PDT -RobenusW,2022-07-25T23:49:33Z,- RobenusW pull request closed w/o merging: [3362](https://github.com/hackforla/website/pull/3362#event-7060533483) at 2022-07-25 04:49 PM PDT -RobenusW,2022-07-26T00:52:56Z,- RobenusW opened pull request: [3428](https://github.com/hackforla/website/pull/3428) at 2022-07-25 05:52 PM PDT -RobenusW,2022-08-01T04:25:23Z,- RobenusW closed issue as completed: [3190](https://github.com/hackforla/website/issues/3190#event-7097910342) at 2022-07-31 09:25 PM PDT -RobenusW,2022-08-19T18:47:03Z,- RobenusW pull request closed w/o merging: [3428](https://github.com/hackforla/website/pull/3428#event-7224364319) at 2022-08-19 11:47 AM PDT -RobenusW,2023-03-23T01:08:24Z,- RobenusW unassigned from issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1421904264) at 2023-03-22 06:08 PM PDT -robert-f-ruff,6952,SKILLS ISSUE -robert-f-ruff,2024-06-04T03:10:39Z,- robert-f-ruff opened issue: [6952](https://github.com/hackforla/website/issues/6952) at 2024-06-03 08:10 PM PDT -robert-f-ruff,2024-06-04T03:10:54Z,- robert-f-ruff assigned to issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2146486201) at 2024-06-03 08:10 PM PDT -robert-g-rodriguez,5214,SKILLS ISSUE -robert-g-rodriguez,2023-08-15T02:58:06Z,- robert-g-rodriguez opened issue: [5214](https://github.com/hackforla/website/issues/5214) at 2023-08-14 07:58 PM PDT -robert-g-rodriguez,2023-08-15T02:58:07Z,- robert-g-rodriguez assigned to issue: [5214](https://github.com/hackforla/website/issues/5214) at 2023-08-14 07:58 PM PDT -robert-loo,4164,SKILLS ISSUE -robert-loo,2023-03-14T03:05:02Z,- robert-loo opened issue: [4164](https://github.com/hackforla/website/issues/4164) at 2023-03-13 08:05 PM PDT -robert-loo,2023-03-14T03:19:04Z,- robert-loo assigned to issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1467281966) at 2023-03-13 08:19 PM PDT -robert-loo,2023-03-27T05:06:18Z,- robert-loo commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1484500883) at 2023-03-26 10:06 PM PDT -RobertaFricker,2021-03-24T03:13:02Z,- RobertaFricker assigned to issue: [1049](https://github.com/hackforla/website/issues/1049) at 2021-03-23 08:13 PM PDT -RobertaFricker,2021-04-07T01:33:11Z,- RobertaFricker opened pull request: [1365](https://github.com/hackforla/website/pull/1365) at 2021-04-06 06:33 PM PDT -RobertaFricker,2021-04-07T19:23:19Z,- RobertaFricker assigned to issue: [1048](https://github.com/hackforla/website/issues/1048#issuecomment-812906602) at 2021-04-07 12:23 PM PDT -RobertaFricker,2021-04-07T22:42:43Z,- RobertaFricker assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:42 PM PDT -RobertaFricker,2021-04-07T22:43:04Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-07T22:43:04Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-07T22:43:27Z,- RobertaFricker assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-08T03:55:29Z,- RobertaFricker pull request merged: [1365](https://github.com/hackforla/website/pull/1365#event-4566181941) at 2021-04-07 08:55 PM PDT -RobertaFricker,2021-04-08T23:59:28Z,- RobertaFricker assigned to issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-08 04:59 PM PDT -RobertaFricker,2021-04-09T03:25:24Z,- RobertaFricker assigned to issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-815405373) at 2021-04-08 08:25 PM PDT -RobertaFricker,2021-04-09T03:26:54Z,- RobertaFricker commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-816374832) at 2021-04-08 08:26 PM PDT -RobertaFricker,2021-04-09T03:58:13Z,- RobertaFricker opened issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-08 08:58 PM PDT -RobertaFricker,2021-04-10T21:08:23Z,- RobertaFricker opened issue: [1390](https://github.com/hackforla/website/issues/1390) at 2021-04-10 02:08 PM PDT -RobertaFricker,2021-04-11T17:57:38Z,- RobertaFricker assigned to issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-11 10:57 AM PDT -RobertaFricker,2021-04-11T18:24:27Z,- RobertaFricker unassigned from issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-11 11:24 AM PDT -RobertaFricker,2021-04-11T18:24:54Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-11 11:24 AM PDT -RobertaFricker,2021-04-11T18:55:11Z,- RobertaFricker opened pull request: [1396](https://github.com/hackforla/website/pull/1396) at 2021-04-11 11:55 AM PDT -RobertaFricker,2021-04-12T19:06:12Z,- RobertaFricker commented on pull request: [1396](https://github.com/hackforla/website/pull/1396#issuecomment-818061508) at 2021-04-12 12:06 PM PDT -RobertaFricker,2021-04-12T19:09:10Z,- RobertaFricker commented on issue: [1345](https://github.com/hackforla/website/issues/1345#issuecomment-818063282) at 2021-04-12 12:09 PM PDT -RobertaFricker,2021-04-12T19:11:09Z,- RobertaFricker commented on pull request: [1396](https://github.com/hackforla/website/pull/1396#issuecomment-818064471) at 2021-04-12 12:11 PM PDT -RobertaFricker,2021-04-12T20:22:08Z,- RobertaFricker commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818165420) at 2021-04-12 01:22 PM PDT -RobertaFricker,2021-04-12T20:23:39Z,- RobertaFricker commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-818168454) at 2021-04-12 01:23 PM PDT -RobertaFricker,2021-04-12T20:25:17Z,- RobertaFricker unassigned from issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-12 01:25 PM PDT -RobertaFricker,2021-04-12T20:26:36Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818165420) at 2021-04-12 01:26 PM PDT -RobertaFricker,2021-04-12T20:27:06Z,- RobertaFricker assigned to issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-12 01:27 PM PDT -RobertaFricker,2021-04-12T22:25:15Z,- RobertaFricker closed issue by PR 1400: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:25 PM PDT -RobertaFricker,2021-04-12T22:25:18Z,- RobertaFricker reopened issue: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:25 PM PDT -RobertaFricker,2021-04-12T22:26:11Z,- RobertaFricker assigned to issue: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:26 PM PDT -RobertaFricker,2021-04-13T00:27:01Z,- RobertaFricker opened pull request: [1400](https://github.com/hackforla/website/pull/1400) at 2021-04-12 05:27 PM PDT -RobertaFricker,2021-04-13T02:21:11Z,- RobertaFricker pull request merged: [1396](https://github.com/hackforla/website/pull/1396#event-4585419383) at 2021-04-12 07:21 PM PDT -RobertaFricker,2021-04-13T18:04:01Z,- RobertaFricker pull request merged: [1400](https://github.com/hackforla/website/pull/1400#event-4589549467) at 2021-04-13 11:04 AM PDT -RobertaFricker,2021-04-13T19:07:25Z,- RobertaFricker assigned to issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-817250461) at 2021-04-13 12:07 PM PDT -RobertaFricker,2021-04-13T19:36:37Z,- RobertaFricker commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-819001504) at 2021-04-13 12:36 PM PDT -RobertaFricker,2021-04-13T19:41:32Z,- RobertaFricker commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-819004256) at 2021-04-13 12:41 PM PDT -RobertaFricker,2021-04-13T19:43:20Z,- RobertaFricker commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-819005341) at 2021-04-13 12:43 PM PDT -RobertaFricker,2021-04-13T19:51:17Z,- RobertaFricker opened pull request: [1403](https://github.com/hackforla/website/pull/1403) at 2021-04-13 12:51 PM PDT -RobertaFricker,2021-04-13T20:07:32Z,- RobertaFricker closed issue by PR 1541: [1346](https://github.com/hackforla/website/issues/1346#event-4590048717) at 2021-04-13 01:07 PM PDT -RobertaFricker,2021-04-13T20:08:55Z,- RobertaFricker closed issue by PR 1406: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:08 PM PDT -RobertaFricker,2021-04-13T20:10:51Z,- RobertaFricker closed issue as completed: [1196](https://github.com/hackforla/website/issues/1196#event-4590061962) at 2021-04-13 01:10 PM PDT -RobertaFricker,2021-04-13T20:13:57Z,- RobertaFricker assigned to issue: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:13 PM PDT -RobertaFricker,2021-04-14T00:19:18Z,- RobertaFricker commented on pull request: [1400](https://github.com/hackforla/website/pull/1400#issuecomment-819132146) at 2021-04-13 05:19 PM PDT -RobertaFricker,2021-04-14T18:48:35Z,- RobertaFricker commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819751471) at 2021-04-14 11:48 AM PDT -RobertaFricker,2021-04-14T21:57:15Z,- RobertaFricker pull request merged: [1403](https://github.com/hackforla/website/pull/1403#event-4596031309) at 2021-04-14 02:57 PM PDT -RobertaFricker,2021-04-14T22:43:42Z,- RobertaFricker commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819896428) at 2021-04-14 03:43 PM PDT -RobertaFricker,2021-04-15T02:00:38Z,- RobertaFricker opened pull request: [1406](https://github.com/hackforla/website/pull/1406) at 2021-04-14 07:00 PM PDT -RobertaFricker,2021-04-15T04:14:18Z,- RobertaFricker opened issue: [1407](https://github.com/hackforla/website/issues/1407) at 2021-04-14 09:14 PM PDT -RobertaFricker,2021-04-18T15:59:36Z,- RobertaFricker pull request merged: [1406](https://github.com/hackforla/website/pull/1406#event-4609232940) at 2021-04-18 08:59 AM PDT -RobertaFricker,2021-04-18T18:12:00Z,- RobertaFricker assigned to issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818381680) at 2021-04-18 11:12 AM PDT -RobertaFricker,2021-04-20T23:55:37Z,- RobertaFricker assigned to issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816128653) at 2021-04-20 04:55 PM PDT -RobertaFricker,2021-04-21T00:22:45Z,- RobertaFricker commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-823686133) at 2021-04-20 05:22 PM PDT -RobertaFricker,2021-04-21T20:30:02Z,- RobertaFricker opened pull request: [1429](https://github.com/hackforla/website/pull/1429) at 2021-04-21 01:30 PM PDT -RobertaFricker,2021-04-22T01:23:49Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-21 06:23 PM PDT -RobertaFricker,2021-04-22T01:23:49Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-21 06:23 PM PDT -RobertaFricker,2021-04-22T05:33:33Z,- RobertaFricker commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-824551336) at 2021-04-21 10:33 PM PDT -RobertaFricker,2021-04-22T05:41:36Z,- RobertaFricker assigned to issue: [1414](https://github.com/hackforla/website/issues/1414) at 2021-04-21 10:41 PM PDT -RobertaFricker,2021-04-22T16:13:47Z,- RobertaFricker pull request merged: [1429](https://github.com/hackforla/website/pull/1429#event-4631885608) at 2021-04-22 09:13 AM PDT -RobertaFricker,2021-04-22T18:26:44Z,- RobertaFricker commented on issue: [1414](https://github.com/hackforla/website/issues/1414#issuecomment-825084794) at 2021-04-22 11:26 AM PDT -RobertaFricker,2021-04-22T18:35:14Z,- RobertaFricker opened pull request: [1433](https://github.com/hackforla/website/pull/1433) at 2021-04-22 11:35 AM PDT -RobertaFricker,2021-04-22T19:35:44Z,- RobertaFricker opened issue: [1434](https://github.com/hackforla/website/issues/1434) at 2021-04-22 12:35 PM PDT -RobertaFricker,2021-04-22T19:36:03Z,- RobertaFricker assigned to issue: [1434](https://github.com/hackforla/website/issues/1434) at 2021-04-22 12:36 PM PDT -RobertaFricker,2021-04-22T19:55:54Z,- RobertaFricker opened pull request: [1435](https://github.com/hackforla/website/pull/1435) at 2021-04-22 12:55 PM PDT -RobertaFricker,2021-04-23T03:26:14Z,- RobertaFricker assigned to issue: [1427](https://github.com/hackforla/website/issues/1427) at 2021-04-22 08:26 PM PDT -RobertaFricker,2021-04-23T16:49:57Z,- RobertaFricker pull request merged: [1435](https://github.com/hackforla/website/pull/1435#event-4637920350) at 2021-04-23 09:49 AM PDT -RobertaFricker,2021-04-23T17:49:15Z,- RobertaFricker commented on pull request: [1435](https://github.com/hackforla/website/pull/1435#issuecomment-825819154) at 2021-04-23 10:49 AM PDT -RobertaFricker,2021-04-23T23:30:38Z,- RobertaFricker assigned to issue: [1413](https://github.com/hackforla/website/issues/1413) at 2021-04-23 04:30 PM PDT -RobertaFricker,2021-04-24T01:01:41Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826009106) at 2021-04-23 06:01 PM PDT -RobertaFricker,2021-04-24T02:31:46Z,- RobertaFricker unassigned from issue: [1427](https://github.com/hackforla/website/issues/1427) at 2021-04-23 07:31 PM PDT -RobertaFricker,2021-04-24T02:58:01Z,- RobertaFricker opened issue: [1450](https://github.com/hackforla/website/issues/1450) at 2021-04-23 07:58 PM PDT -RobertaFricker,2021-04-24T02:58:01Z,- RobertaFricker assigned to issue: [1450](https://github.com/hackforla/website/issues/1450) at 2021-04-23 07:58 PM PDT -RobertaFricker,2021-04-24T03:41:39Z,- RobertaFricker opened pull request: [1451](https://github.com/hackforla/website/pull/1451) at 2021-04-23 08:41 PM PDT -RobertaFricker,2021-04-24T18:15:09Z,- RobertaFricker opened issue: [1453](https://github.com/hackforla/website/issues/1453) at 2021-04-24 11:15 AM PDT -RobertaFricker,2021-04-24T18:15:16Z,- RobertaFricker assigned to issue: [1453](https://github.com/hackforla/website/issues/1453) at 2021-04-24 11:15 AM PDT -RobertaFricker,2021-04-24T18:23:24Z,- RobertaFricker opened pull request: [1454](https://github.com/hackforla/website/pull/1454) at 2021-04-24 11:23 AM PDT -RobertaFricker,2021-04-24T19:12:23Z,- RobertaFricker pull request closed w/o merging: [1454](https://github.com/hackforla/website/pull/1454#event-4640280461) at 2021-04-24 12:12 PM PDT -RobertaFricker,2021-04-24T23:30:59Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826166760) at 2021-04-24 04:30 PM PDT -RobertaFricker,2021-04-24T23:45:37Z,- RobertaFricker pull request merged: [1451](https://github.com/hackforla/website/pull/1451#event-4640474106) at 2021-04-24 04:45 PM PDT -RobertaFricker,2021-04-25T00:18:39Z,- RobertaFricker commented on issue: [1450](https://github.com/hackforla/website/issues/1450#issuecomment-826171613) at 2021-04-24 05:18 PM PDT -RobertaFricker,2021-04-25T03:53:13Z,- RobertaFricker commented on pull request: [1454](https://github.com/hackforla/website/pull/1454#issuecomment-826248276) at 2021-04-24 08:53 PM PDT -RobertaFricker,2021-04-27T03:56:42Z,- RobertaFricker assigned to issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-26 08:56 PM PDT -RobertaFricker,2021-04-27T05:53:38Z,- RobertaFricker pull request merged: [1433](https://github.com/hackforla/website/pull/1433#event-4648730051) at 2021-04-26 10:53 PM PDT -RobertaFricker,2021-04-27T19:41:06Z,- RobertaFricker commented on pull request: [1433](https://github.com/hackforla/website/pull/1433#issuecomment-827871145) at 2021-04-27 12:41 PM PDT -RobertaFricker,2021-04-28T02:09:01Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-828086968) at 2021-04-27 07:09 PM PDT -RobertaFricker,2021-04-28T18:44:16Z,- RobertaFricker opened issue: [1489](https://github.com/hackforla/website/issues/1489) at 2021-04-28 11:44 AM PDT -RobertaFricker,2021-04-28T18:44:16Z,- RobertaFricker assigned to issue: [1489](https://github.com/hackforla/website/issues/1489) at 2021-04-28 11:44 AM PDT -RobertaFricker,2021-04-28T19:14:49Z,- RobertaFricker opened pull request: [1490](https://github.com/hackforla/website/pull/1490) at 2021-04-28 12:14 PM PDT -RobertaFricker,2021-04-29T00:15:23Z,- RobertaFricker commented on pull request: [1490](https://github.com/hackforla/website/pull/1490#issuecomment-828860382) at 2021-04-28 05:15 PM PDT -RobertaFricker,2021-04-29T00:17:42Z,- RobertaFricker commented on pull request: [1490](https://github.com/hackforla/website/pull/1490#issuecomment-828861257) at 2021-04-28 05:17 PM PDT -RobertaFricker,2021-04-29T00:33:13Z,- RobertaFricker pull request merged: [1490](https://github.com/hackforla/website/pull/1490#event-4659862324) at 2021-04-28 05:33 PM PDT -RobertaFricker,2021-04-30T01:22:22Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-829732724) at 2021-04-29 06:22 PM PDT -RobertaFricker,2021-04-30T04:39:16Z,- RobertaFricker unassigned from issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-827295185) at 2021-04-29 09:39 PM PDT -RobertaFricker,2021-05-01T00:08:05Z,- RobertaFricker opened pull request: [1496](https://github.com/hackforla/website/pull/1496) at 2021-04-30 05:08 PM PDT -RobertaFricker,2021-05-01T01:42:09Z,- RobertaFricker commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830485310) at 2021-04-30 06:42 PM PDT -RobertaFricker,2021-05-02T16:35:15Z,- RobertaFricker commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830835918) at 2021-05-02 09:35 AM PDT -RobertaFricker,2021-05-04T00:23:13Z,- RobertaFricker commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-831615091) at 2021-05-03 05:23 PM PDT -RobertaFricker,2021-05-04T21:03:03Z,- RobertaFricker pull request merged: [1496](https://github.com/hackforla/website/pull/1496#event-4685676989) at 2021-05-04 02:03 PM PDT -robertestrada,2021-09-23T01:56:28Z,- robertestrada assigned to issue: [2268](https://github.com/hackforla/website/issues/2268) at 2021-09-22 06:56 PM PDT -robertestrada,2021-09-23T17:53:38Z,- robertestrada commented on issue: [2268](https://github.com/hackforla/website/issues/2268#issuecomment-926030357) at 2021-09-23 10:53 AM PDT -robertestrada,2021-09-25T05:25:11Z,- robertestrada opened pull request: [2308](https://github.com/hackforla/website/pull/2308) at 2021-09-24 10:25 PM PDT -robertestrada,2021-09-28T16:49:09Z,- robertestrada commented on pull request: [2308](https://github.com/hackforla/website/pull/2308#issuecomment-929402338) at 2021-09-28 09:49 AM PDT -robertestrada,2021-09-29T17:11:50Z,- robertestrada pull request merged: [2308](https://github.com/hackforla/website/pull/2308#event-5382299953) at 2021-09-29 10:11 AM PDT -robertnjenga,5485,SKILLS ISSUE -robertnjenga,2023-09-12T03:28:55Z,- robertnjenga opened issue: [5485](https://github.com/hackforla/website/issues/5485) at 2023-09-11 08:28 PM PDT -robertnjenga,2023-09-12T03:28:56Z,- robertnjenga assigned to issue: [5485](https://github.com/hackforla/website/issues/5485) at 2023-09-11 08:28 PM PDT -robertnjenga,2023-09-12T17:28:27Z,- robertnjenga assigned to issue: [5378](https://github.com/hackforla/website/issues/5378) at 2023-09-12 10:28 AM PDT -robertnjenga,2023-09-12T18:09:19Z,- robertnjenga commented on issue: [5378](https://github.com/hackforla/website/issues/5378#issuecomment-1716197539) at 2023-09-12 11:09 AM PDT -robertnjenga,2023-09-12T19:14:57Z,- robertnjenga opened pull request: [5510](https://github.com/hackforla/website/pull/5510) at 2023-09-12 12:14 PM PDT -robertnjenga,2023-09-14T15:24:22Z,- robertnjenga commented on issue: [5485](https://github.com/hackforla/website/issues/5485#issuecomment-1719669464) at 2023-09-14 08:24 AM PDT -robertnjenga,2023-09-17T16:01:09Z,- robertnjenga pull request merged: [5510](https://github.com/hackforla/website/pull/5510#event-10391601639) at 2023-09-17 09:01 AM PDT -robertnjenga,2023-09-19T16:35:55Z,- robertnjenga assigned to issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704384569) at 2023-09-19 09:35 AM PDT -robertnjenga,2023-09-19T16:38:29Z,- robertnjenga commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1726056897) at 2023-09-19 09:38 AM PDT -robertnjenga,2023-09-19T19:33:57Z,- robertnjenga opened pull request: [5557](https://github.com/hackforla/website/pull/5557) at 2023-09-19 12:33 PM PDT -robertnjenga,2023-09-19T20:26:46Z,- robertnjenga closed issue as completed: [5485](https://github.com/hackforla/website/issues/5485#event-10415039269) at 2023-09-19 01:26 PM PDT -robertnjenga,2023-09-22T04:45:47Z,- robertnjenga pull request merged: [5557](https://github.com/hackforla/website/pull/5557#event-10442991417) at 2023-09-21 09:45 PM PDT -robertnjenga,2023-09-22T14:55:23Z,- robertnjenga commented on pull request: [5569](https://github.com/hackforla/website/pull/5569#issuecomment-1731563217) at 2023-09-22 07:55 AM PDT -robertnjenga,2023-09-22T15:27:05Z,- robertnjenga submitted pull request review: [5569](https://github.com/hackforla/website/pull/5569#pullrequestreview-1640195643) at 2023-09-22 08:27 AM PDT -robertnjenga,2023-09-22T16:37:27Z,- robertnjenga commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1731720113) at 2023-09-22 09:37 AM PDT -robertnjenga,2023-09-22T16:51:57Z,- robertnjenga submitted pull request review: [5558](https://github.com/hackforla/website/pull/5558#pullrequestreview-1640334833) at 2023-09-22 09:51 AM PDT -robertnjenga,2023-09-24T20:08:18Z,- robertnjenga submitted pull request review: [5569](https://github.com/hackforla/website/pull/5569#pullrequestreview-1641114913) at 2023-09-24 01:08 PM PDT -robertnjenga,2023-09-26T17:49:12Z,- robertnjenga commented on pull request: [5585](https://github.com/hackforla/website/pull/5585#issuecomment-1736010812) at 2023-09-26 10:49 AM PDT -robertnjenga,2023-09-26T18:06:47Z,- robertnjenga submitted pull request review: [5585](https://github.com/hackforla/website/pull/5585#pullrequestreview-1644903232) at 2023-09-26 11:06 AM PDT -robertnjenga,2023-09-26T19:33:16Z,- robertnjenga assigned to issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1701256957) at 2023-09-26 12:33 PM PDT -robertnjenga,2023-09-26T19:33:46Z,- robertnjenga commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1736169022) at 2023-09-26 12:33 PM PDT -robertnjenga,2023-09-26T20:33:42Z,- robertnjenga opened pull request: [5593](https://github.com/hackforla/website/pull/5593) at 2023-09-26 01:33 PM PDT -robertnjenga,2023-09-27T01:27:49Z,- robertnjenga pull request merged: [5593](https://github.com/hackforla/website/pull/5593#event-10481500243) at 2023-09-26 06:27 PM PDT -robertnjenga,2023-09-27T14:05:09Z,- robertnjenga submitted pull request review: [5585](https://github.com/hackforla/website/pull/5585#pullrequestreview-1646677968) at 2023-09-27 07:05 AM PDT -robertnjenga,2023-10-03T17:15:27Z,- robertnjenga commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1745400470) at 2023-10-03 10:15 AM PDT -robertnjenga,2023-10-03T17:43:52Z,- robertnjenga submitted pull request review: [5643](https://github.com/hackforla/website/pull/5643#pullrequestreview-1655793021) at 2023-10-03 10:43 AM PDT -robertnjenga,2023-10-03T18:29:18Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745507273) at 2023-10-03 11:29 AM PDT -robertnjenga,2023-10-03T18:51:48Z,- robertnjenga submitted pull request review: [5640](https://github.com/hackforla/website/pull/5640#pullrequestreview-1655898773) at 2023-10-03 11:51 AM PDT -robertnjenga,2023-10-03T19:24:57Z,- robertnjenga assigned to issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1735043248) at 2023-10-03 12:24 PM PDT -robertnjenga,2023-10-03T19:25:10Z,- robertnjenga commented on issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1745586235) at 2023-10-03 12:25 PM PDT -robertnjenga,2023-10-03T19:57:46Z,- robertnjenga opened pull request: [5658](https://github.com/hackforla/website/pull/5658) at 2023-10-03 12:57 PM PDT -robertnjenga,2023-10-03T23:50:38Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745901452) at 2023-10-03 04:50 PM PDT -robertnjenga,2023-10-04T15:14:25Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1747100095) at 2023-10-04 08:14 AM PDT -robertnjenga,2023-10-07T16:19:20Z,- robertnjenga submitted pull request review: [5672](https://github.com/hackforla/website/pull/5672#pullrequestreview-1663073074) at 2023-10-07 09:19 AM PDT -robertnjenga,2023-10-10T16:10:45Z,- robertnjenga commented on pull request: [5682](https://github.com/hackforla/website/pull/5682#issuecomment-1755769105) at 2023-10-10 09:10 AM PDT -robertnjenga,2023-10-10T16:19:56Z,- robertnjenga submitted pull request review: [5682](https://github.com/hackforla/website/pull/5682#pullrequestreview-1668221499) at 2023-10-10 09:19 AM PDT -robertnjenga,2023-10-11T01:35:34Z,- robertnjenga pull request merged: [5658](https://github.com/hackforla/website/pull/5658#event-10611988446) at 2023-10-10 06:35 PM PDT -robertnjenga,2023-10-12T16:41:25Z,- robertnjenga assigned to issue: [5601](https://github.com/hackforla/website/issues/5601) at 2023-10-12 09:41 AM PDT -robertnjenga,2023-10-12T16:42:43Z,- robertnjenga commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1759981882) at 2023-10-12 09:42 AM PDT -robertnjenga,2023-10-15T17:57:09Z,- robertnjenga commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1763461108) at 2023-10-15 10:57 AM PDT -robertnjenga,2023-10-20T16:44:03Z,- robertnjenga commented on pull request: [5740](https://github.com/hackforla/website/pull/5740#issuecomment-1773063295) at 2023-10-20 09:44 AM PDT -robertnjenga,2023-10-20T16:57:33Z,- robertnjenga submitted pull request review: [5740](https://github.com/hackforla/website/pull/5740#pullrequestreview-1690553064) at 2023-10-20 09:57 AM PDT -robertnjenga,2023-10-29T15:41:19Z,- robertnjenga commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1784147574) at 2023-10-29 08:41 AM PDT -robertnjenga,2023-10-29T15:47:00Z,- robertnjenga submitted pull request review: [5788](https://github.com/hackforla/website/pull/5788#pullrequestreview-1702984798) at 2023-10-29 08:47 AM PDT -robertnjenga,2023-11-09T16:07:25Z,- robertnjenga commented on pull request: [5886](https://github.com/hackforla/website/pull/5886#issuecomment-1804119297) at 2023-11-09 08:07 AM PST -robertnjenga,2023-11-09T16:24:59Z,- robertnjenga submitted pull request review: [5886](https://github.com/hackforla/website/pull/5886#pullrequestreview-1722978792) at 2023-11-09 08:24 AM PST -robertnjenga,2023-11-12T18:40:41Z,- robertnjenga commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1807207059) at 2023-11-12 10:40 AM PST -robertnjenga,2023-11-12T18:58:35Z,- robertnjenga submitted pull request review: [5887](https://github.com/hackforla/website/pull/5887#pullrequestreview-1726307455) at 2023-11-12 10:58 AM PST -robertnjenga,2023-11-14T21:49:13Z,- robertnjenga assigned to issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1806969073) at 2023-11-14 01:49 PM PST -robertnjenga,2023-11-14T21:49:34Z,- robertnjenga commented on issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1811378655) at 2023-11-14 01:49 PM PST -robertnjenga,2023-11-14T22:34:36Z,- robertnjenga opened pull request: [5905](https://github.com/hackforla/website/pull/5905) at 2023-11-14 02:34 PM PST -robertnjenga,2023-11-15T16:12:02Z,- robertnjenga commented on pull request: [5905](https://github.com/hackforla/website/pull/5905#issuecomment-1812832190) at 2023-11-15 08:12 AM PST -robertnjenga,2023-11-15T16:39:15Z,- robertnjenga pull request merged: [5905](https://github.com/hackforla/website/pull/5905#event-10969733425) at 2023-11-15 08:39 AM PST -robertnjenga,2023-11-25T16:53:32Z,- robertnjenga commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1826376141) at 2023-11-25 08:53 AM PST -robertnjenga,2023-11-25T17:22:06Z,- robertnjenga submitted pull request review: [5936](https://github.com/hackforla/website/pull/5936#pullrequestreview-1749219099) at 2023-11-25 09:22 AM PST -robertnjenga,2023-11-25T17:42:06Z,- robertnjenga commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826384937) at 2023-11-25 09:42 AM PST -robertnjenga,2023-11-25T18:18:31Z,- robertnjenga submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749224084) at 2023-11-25 10:18 AM PST -robertnjenga,2023-11-26T00:49:47Z,- robertnjenga submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749249434) at 2023-11-25 04:49 PM PST -robertnjenga,2023-11-29T03:15:17Z,- robertnjenga commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1831146891) at 2023-11-28 07:15 PM PST -robertnjenga,2023-11-29T15:37:05Z,- robertnjenga submitted pull request review: [5941](https://github.com/hackforla/website/pull/5941#pullrequestreview-1755579081) at 2023-11-29 07:37 AM PST -robertnjenga,2024-01-07T19:30:38Z,- robertnjenga commented on pull request: [6073](https://github.com/hackforla/website/pull/6073#issuecomment-1880149475) at 2024-01-07 11:30 AM PST -robertnjenga,2024-01-07T19:45:39Z,- robertnjenga submitted pull request review: [6073](https://github.com/hackforla/website/pull/6073#pullrequestreview-1807861196) at 2024-01-07 11:45 AM PST -robertnjenga,2024-01-07T19:58:19Z,- robertnjenga commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1880155994) at 2024-01-07 11:58 AM PST -robertnjenga,2024-01-07T20:09:47Z,- robertnjenga submitted pull request review: [6072](https://github.com/hackforla/website/pull/6072#pullrequestreview-1807864259) at 2024-01-07 12:09 PM PST -robertnjenga,2024-01-07T20:22:57Z,- robertnjenga commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880161381) at 2024-01-07 12:22 PM PST -robertnjenga,2024-01-07T20:33:45Z,- robertnjenga submitted pull request review: [6063](https://github.com/hackforla/website/pull/6063#pullrequestreview-1807866877) at 2024-01-07 12:33 PM PST -robertnjenga,2024-01-07T20:55:34Z,- robertnjenga commented on pull request: [6061](https://github.com/hackforla/website/pull/6061#issuecomment-1880168607) at 2024-01-07 12:55 PM PST -robertnjenga,2024-01-07T21:05:09Z,- robertnjenga submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1807870874) at 2024-01-07 01:05 PM PST -robertnjenga,2024-01-07T21:40:15Z,- robertnjenga submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1807881127) at 2024-01-07 01:40 PM PST -robertnjenga,2024-01-21T17:44:23Z,- robertnjenga commented on pull request: [6136](https://github.com/hackforla/website/pull/6136#issuecomment-1902707170) at 2024-01-21 09:44 AM PST -robertnjenga,2024-01-21T17:57:40Z,- robertnjenga submitted pull request review: [6136](https://github.com/hackforla/website/pull/6136#pullrequestreview-1835388427) at 2024-01-21 09:57 AM PST -robertnjenga,2024-01-21T18:13:59Z,- robertnjenga commented on pull request: [6134](https://github.com/hackforla/website/pull/6134#issuecomment-1902716261) at 2024-01-21 10:13 AM PST -robertnjenga,2024-01-21T19:49:55Z,- robertnjenga submitted pull request review: [6134](https://github.com/hackforla/website/pull/6134#pullrequestreview-1835421545) at 2024-01-21 11:49 AM PST -robertnjenga,2024-01-24T19:10:27Z,- robertnjenga assigned to issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1885597127) at 2024-01-24 11:10 AM PST -robertnjenga,2024-01-24T19:11:32Z,- robertnjenga commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1908758226) at 2024-01-24 11:11 AM PST -robertnjenga,2024-01-24T23:40:15Z,- robertnjenga opened pull request: [6151](https://github.com/hackforla/website/pull/6151) at 2024-01-24 03:40 PM PST -robertnjenga,2024-01-28T17:06:40Z,- robertnjenga pull request merged: [6151](https://github.com/hackforla/website/pull/6151#event-11620461889) at 2024-01-28 09:06 AM PST -robertnjenga,2024-02-17T20:38:49Z,- robertnjenga commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1950302804) at 2024-02-17 12:38 PM PST -robertnjenga,2024-02-17T21:05:36Z,- robertnjenga submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887024272) at 2024-02-17 01:05 PM PST -robertnjenga,2024-02-17T21:16:12Z,- robertnjenga commented on pull request: [6305](https://github.com/hackforla/website/pull/6305#issuecomment-1950345253) at 2024-02-17 01:16 PM PST -robertnjenga,2024-02-17T21:28:12Z,- robertnjenga submitted pull request review: [6305](https://github.com/hackforla/website/pull/6305#pullrequestreview-1887030727) at 2024-02-17 01:28 PM PST -robertnjenga,2024-02-18T15:19:30Z,- robertnjenga submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887261519) at 2024-02-18 07:19 AM PST -robertnjenga,2024-03-02T19:02:16Z,- robertnjenga commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1974879806) at 2024-03-02 11:02 AM PST -robertnjenga,2024-03-02T19:46:29Z,- robertnjenga submitted pull request review: [6408](https://github.com/hackforla/website/pull/6408#pullrequestreview-1912713553) at 2024-03-02 11:46 AM PST -robertnjenga,2024-03-02T20:23:41Z,- robertnjenga submitted pull request review: [6408](https://github.com/hackforla/website/pull/6408#pullrequestreview-1912718817) at 2024-03-02 12:23 PM PST -robertnjenga,2024-03-02T20:38:02Z,- robertnjenga commented on pull request: [6407](https://github.com/hackforla/website/pull/6407#issuecomment-1974903432) at 2024-03-02 12:38 PM PST -robertnjenga,2024-03-02T20:46:52Z,- robertnjenga submitted pull request review: [6407](https://github.com/hackforla/website/pull/6407#pullrequestreview-1912740666) at 2024-03-02 12:46 PM PST -robertnjenga,2024-03-03T15:25:35Z,- robertnjenga commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1975196639) at 2024-03-03 07:25 AM PST -robertnjenga,2024-03-04T17:59:45Z,- robertnjenga commented on pull request: [6414](https://github.com/hackforla/website/pull/6414#issuecomment-1977158779) at 2024-03-04 09:59 AM PST -robertnjenga,2024-03-04T18:01:25Z,- robertnjenga submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1914962190) at 2024-03-04 10:01 AM PST -robertnjenga,2024-03-04T19:01:15Z,- robertnjenga submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1915107967) at 2024-03-04 11:01 AM PST -robertnjenga,2024-04-12T19:46:14Z,- robertnjenga commented on pull request: [6629](https://github.com/hackforla/website/pull/6629#issuecomment-2052428151) at 2024-04-12 12:46 PM PDT -robertnjenga,2024-04-12T20:04:25Z,- robertnjenga submitted pull request review: [6629](https://github.com/hackforla/website/pull/6629#pullrequestreview-1998340163) at 2024-04-12 01:04 PM PDT -robertnjenga,2024-04-13T19:46:20Z,- robertnjenga commented on pull request: [6631](https://github.com/hackforla/website/pull/6631#issuecomment-2053741973) at 2024-04-13 12:46 PM PDT -robertnjenga,2024-04-13T20:01:05Z,- robertnjenga submitted pull request review: [6631](https://github.com/hackforla/website/pull/6631#pullrequestreview-1999341748) at 2024-04-13 01:01 PM PDT -robertnjenga,2024-04-13T20:02:31Z,- robertnjenga commented on pull request: [6630](https://github.com/hackforla/website/pull/6630#issuecomment-2053745003) at 2024-04-13 01:02 PM PDT -robertnjenga,2024-04-13T20:16:03Z,- robertnjenga submitted pull request review: [6630](https://github.com/hackforla/website/pull/6630#pullrequestreview-1999345080) at 2024-04-13 01:16 PM PDT -robertnjenga,2024-04-13T20:48:32Z,- robertnjenga commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2053758177) at 2024-04-13 01:48 PM PDT -robertnjenga,2024-04-13T21:06:53Z,- robertnjenga submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-1999362568) at 2024-04-13 02:06 PM PDT -robertnjenga,2024-04-15T16:18:09Z,- robertnjenga submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-2001548031) at 2024-04-15 09:18 AM PDT -robertnjenga,2024-06-03T17:04:37Z,- robertnjenga commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2145714893) at 2024-06-03 10:04 AM PDT -robertnjenga,2024-06-03T17:16:18Z,- robertnjenga submitted pull request review: [6925](https://github.com/hackforla/website/pull/6925#pullrequestreview-2094459464) at 2024-06-03 10:16 AM PDT -robertnjenga,2024-06-03T18:03:41Z,- robertnjenga commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2145817194) at 2024-06-03 11:03 AM PDT -robertnjenga,2024-06-03T18:16:15Z,- robertnjenga submitted pull request review: [6924](https://github.com/hackforla/website/pull/6924#pullrequestreview-2094564077) at 2024-06-03 11:16 AM PDT -robertnjenga,2024-06-05T15:34:27Z,- robertnjenga submitted pull request review: [6924](https://github.com/hackforla/website/pull/6924#pullrequestreview-2099567794) at 2024-06-05 08:34 AM PDT -robertnjenga,2024-07-21T14:45:45Z,- robertnjenga commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2241635423) at 2024-07-21 07:45 AM PDT -robertnjenga,2024-07-21T14:52:46Z,- robertnjenga submitted pull request review: [7125](https://github.com/hackforla/website/pull/7125#pullrequestreview-2190349079) at 2024-07-21 07:52 AM PDT -RobinElayn,2023-06-01T17:50:06Z,- RobinElayn commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1572526132) at 2023-06-01 10:50 AM PDT -RodgerLugo,7949,SKILLS ISSUE -RodgerLugo,2025-02-26T21:18:16Z,- RodgerLugo opened issue: [7949](https://github.com/hackforla/website/issues/7949) at 2025-02-26 01:18 PM PST -RodgerLugo,2025-02-26T21:22:22Z,- RodgerLugo assigned to issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2686220062) at 2025-02-26 01:22 PM PST -RodgerLugo,2025-04-09T00:37:46Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2787943613) at 2025-04-08 05:37 PM PDT -RodgerLugo,2025-04-09T01:52:11Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2788076435) at 2025-04-08 06:52 PM PDT -RodgerLugo,2025-04-10T03:50:28Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2791479303) at 2025-04-09 08:50 PM PDT -RodgerLugo,2025-04-11T01:40:13Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2795605087) at 2025-04-10 06:40 PM PDT -RodgerLugo,2025-04-16T07:35:02Z,- RodgerLugo submitted pull request review: [8062](https://github.com/hackforla/website/pull/8062#pullrequestreview-2771478597) at 2025-04-16 12:35 AM PDT -RodgerLugo,2025-04-17T23:06:58Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2814178784) at 2025-04-17 04:06 PM PDT -RodgerLugo,2025-04-18T18:35:23Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2815994792) at 2025-04-18 11:35 AM PDT -RodgerLugo,2025-04-26T21:38:18Z,- RodgerLugo assigned to issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2658210594) at 2025-04-26 02:38 PM PDT -RodgerLugo,2025-04-26T21:54:14Z,- RodgerLugo commented on issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2832642592) at 2025-04-26 02:54 PM PDT -RodgerLugo,2025-04-26T23:13:06Z,- RodgerLugo opened pull request: [8091](https://github.com/hackforla/website/pull/8091) at 2025-04-26 04:13 PM PDT -RodgerLugo,2025-04-26T23:20:21Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2832738889) at 2025-04-26 04:20 PM PDT -RodgerLugo,2025-04-28T01:54:52Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2833799156) at 2025-04-27 06:54 PM PDT -RodgerLugo,2025-04-28T02:09:08Z,- RodgerLugo assigned to issue: [7736](https://github.com/hackforla/website/issues/7736) at 2025-04-27 07:09 PM PDT -RodgerLugo,2025-04-28T02:09:29Z,- RodgerLugo unassigned from issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2833812934) at 2025-04-27 07:09 PM PDT -RodgerLugo,2025-04-29T05:12:10Z,- RodgerLugo commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2837471773) at 2025-04-28 10:12 PM PDT -RodgerLugo,2025-04-29T20:10:28Z,- RodgerLugo commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2840123536) at 2025-04-29 01:10 PM PDT -RodgerLugo,2025-04-30T01:57:35Z,- RodgerLugo pull request merged: [8091](https://github.com/hackforla/website/pull/8091#event-17465105258) at 2025-04-29 06:57 PM PDT -RodgerLugo,2025-04-30T02:15:08Z,- RodgerLugo assigned to issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2692153370) at 2025-04-29 07:15 PM PDT -RodgerLugo,2025-04-30T02:19:07Z,- RodgerLugo commented on issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2840637853) at 2025-04-29 07:19 PM PDT -RodgerLugo,2025-04-30T04:45:51Z,- RodgerLugo submitted pull request review: [8092](https://github.com/hackforla/website/pull/8092#pullrequestreview-2805740594) at 2025-04-29 09:45 PM PDT -RodgerLugo,2025-05-01T05:14:02Z,- RodgerLugo opened pull request: [8104](https://github.com/hackforla/website/pull/8104) at 2025-04-30 10:14 PM PDT -RodgerLugo,2025-05-07T16:21:37Z,- RodgerLugo pull request merged: [8104](https://github.com/hackforla/website/pull/8104#event-17559708714) at 2025-05-07 09:21 AM PDT -RodgerLugo,2025-05-11T08:21:20Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2869625667) at 2025-05-11 01:21 AM PDT -RodgerLugo,2025-05-11T08:23:28Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2869626516) at 2025-05-11 01:23 AM PDT -RodgerLugo,2025-05-27T08:38:39Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2911671323) at 2025-05-27 01:38 AM PDT -RodgerLugo,2025-06-03T09:16:25Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2934297250) at 2025-06-03 02:16 AM PDT -RodgerLugo,2025-06-03T09:27:26Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2934343853) at 2025-06-03 02:27 AM PDT -RodgerLugo,2025-06-04T03:30:31Z,- RodgerLugo assigned to issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2423160800) at 2025-06-03 08:30 PM PDT -RodgerLugo,2025-06-04T03:33:12Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2938286030) at 2025-06-03 08:33 PM PDT -RodgerLugo,2025-06-14T00:39:37Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2972041205) at 2025-06-13 05:39 PM PDT -RodgerLugo,2025-06-23T23:15:21Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2998252729) at 2025-06-23 04:15 PM PDT -RodgerLugo,2025-07-16T22:11:49Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-3081361043) at 2025-07-16 03:11 PM PDT -rogerioduenas,7884,SKILLS ISSUE -rogerioduenas,2025-02-03T04:15:09Z,- rogerioduenas assigned to issue: [7480](https://github.com/hackforla/website/issues/7480) at 2025-02-02 08:15 PM PST -rogerioduenas,2025-02-03T05:48:39Z,- rogerioduenas opened pull request: [7874](https://github.com/hackforla/website/pull/7874) at 2025-02-02 09:48 PM PST -rogerioduenas,2025-02-05T03:18:59Z,- rogerioduenas opened issue: [7884](https://github.com/hackforla/website/issues/7884) at 2025-02-04 07:18 PM PST -rogerioduenas,2025-02-05T03:19:25Z,- rogerioduenas assigned to issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2635613383) at 2025-02-04 07:19 PM PST -rogerioduenas,2025-02-05T04:24:34Z,- rogerioduenas commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2635672699) at 2025-02-04 08:24 PM PST -rogerioduenas,2025-02-06T07:36:10Z,- rogerioduenas pull request merged: [7874](https://github.com/hackforla/website/pull/7874#event-16205596492) at 2025-02-05 11:36 PM PST -rogerioduenas,2025-02-07T12:46:45Z,- rogerioduenas assigned to issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2640997244) at 2025-02-07 04:46 AM PST -rogerioduenas,2025-02-08T10:17:50Z,- rogerioduenas opened pull request: [7902](https://github.com/hackforla/website/pull/7902) at 2025-02-08 02:17 AM PST -rogerioduenas,2025-02-10T22:55:24Z,- rogerioduenas commented on pull request: [7902](https://github.com/hackforla/website/pull/7902#issuecomment-2649441319) at 2025-02-10 02:55 PM PST -rogerioduenas,2025-02-11T02:10:58Z,- rogerioduenas pull request merged: [7902](https://github.com/hackforla/website/pull/7902#event-16257648670) at 2025-02-10 06:10 PM PST -rogerioduenas,2025-02-11T07:00:25Z,- rogerioduenas commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2649971915) at 2025-02-10 11:00 PM PST -rogerioduenas,2025-02-13T11:58:16Z,- rogerioduenas assigned to issue: [7395](https://github.com/hackforla/website/issues/7395) at 2025-02-13 03:58 AM PST -rogerioduenas,2025-02-16T09:55:27Z,- rogerioduenas assigned to issue: [7875](https://github.com/hackforla/website/issues/7875) at 2025-02-16 01:55 AM PST -rogerioduenas,2025-02-16T09:55:40Z,- rogerioduenas unassigned from issue: [7875](https://github.com/hackforla/website/issues/7875) at 2025-02-16 01:55 AM PST -rogerioduenas,2025-02-16T10:17:03Z,- rogerioduenas opened pull request: [7912](https://github.com/hackforla/website/pull/7912) at 2025-02-16 02:17 AM PST -rogerioduenas,2025-02-16T10:18:07Z,- rogerioduenas assigned to issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661351382) at 2025-02-16 02:18 AM PST -rogerioduenas,2025-02-16T10:18:23Z,- rogerioduenas unassigned from issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661351382) at 2025-02-16 02:18 AM PST -rogerioduenas,2025-02-16T10:20:42Z,- rogerioduenas assigned to issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661362678) at 2025-02-16 02:20 AM PST -rogerioduenas,2025-02-16T10:20:55Z,- rogerioduenas unassigned from issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661362678) at 2025-02-16 02:20 AM PST -rogerioduenas,2025-02-16T10:23:01Z,- rogerioduenas pull request closed w/o merging: [7912](https://github.com/hackforla/website/pull/7912#event-16323860242) at 2025-02-16 02:23 AM PST -rogerioduenas,2025-02-19T05:02:06Z,- rogerioduenas closed issue as completed: [7884](https://github.com/hackforla/website/issues/7884#event-16359088811) at 2025-02-18 09:02 PM PST -rogerioduenas,2025-02-19T05:02:22Z,- rogerioduenas reopened issue: [7884](https://github.com/hackforla/website/issues/7884#event-16359088811) at 2025-02-18 09:02 PM PST -rogerioduenas,2025-02-19T05:10:16Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667523980) at 2025-02-18 09:10 PM PST -rogerioduenas,2025-02-19T05:16:10Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667529911) at 2025-02-18 09:16 PM PST -rogerioduenas,2025-02-19T05:20:05Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667534830) at 2025-02-18 09:20 PM PST -rogerioduenas,2025-02-19T05:24:49Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667540408) at 2025-02-18 09:24 PM PST -rogerioduenas,2025-02-19T05:33:57Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667551555) at 2025-02-18 09:33 PM PST -rogerioduenas,2025-02-19T05:41:50Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667560654) at 2025-02-18 09:41 PM PST -rogerioduenas,2025-02-19T05:53:54Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667574179) at 2025-02-18 09:53 PM PST -rogerioduenas,2025-02-19T06:06:00Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667588909) at 2025-02-18 10:06 PM PST -rogerioduenas,2025-02-19T06:09:43Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667593674) at 2025-02-18 10:09 PM PST -rogerioduenas,2025-02-19T06:19:17Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667605976) at 2025-02-18 10:19 PM PST -rogerioduenas,2025-02-25T04:40:10Z,- rogerioduenas assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605972760) at 2025-02-24 08:40 PM PST -rogerioduenas,2025-02-25T06:03:22Z,- rogerioduenas opened pull request: [7945](https://github.com/hackforla/website/pull/7945) at 2025-02-24 10:03 PM PST -rogerioduenas,2025-02-27T05:22:07Z,- rogerioduenas commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2686942989) at 2025-02-26 09:22 PM PST -rogerioduenas,2025-02-27T05:23:08Z,- rogerioduenas commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2686944121) at 2025-02-26 09:23 PM PST -rogerioduenas,2025-02-28T05:19:41Z,- rogerioduenas reopened pull request: [7936](https://github.com/hackforla/website/pull/7936#event-16506998057) at 2025-02-27 09:19 PM PST -rogerioduenas,2025-02-28T05:24:44Z,- rogerioduenas commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2689755112) at 2025-02-27 09:24 PM PST -rogerioduenas,2025-02-28T19:17:00Z,- rogerioduenas pull request merged: [7945](https://github.com/hackforla/website/pull/7945#event-16516912862) at 2025-02-28 11:17 AM PST -rogerioduenas,2025-03-03T06:21:15Z,- rogerioduenas commented on pull request: [7962](https://github.com/hackforla/website/pull/7962#issuecomment-2693387330) at 2025-03-02 10:21 PM PST -rogerioduenas,2025-03-03T06:34:50Z,- rogerioduenas submitted pull request review: [7962](https://github.com/hackforla/website/pull/7962#pullrequestreview-2653176330) at 2025-03-02 10:34 PM PST -rogerioduenas,2025-03-03T06:47:16Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2693430773) at 2025-03-02 10:47 PM PST -rogerioduenas,2025-03-05T06:00:50Z,- rogerioduenas commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2699953111) at 2025-03-04 10:00 PM PST -rogerioduenas,2025-03-05T06:48:37Z,- rogerioduenas submitted pull request review: [7980](https://github.com/hackforla/website/pull/7980#pullrequestreview-2660121345) at 2025-03-04 10:48 PM PST -rogerioduenas,2025-03-06T06:39:31Z,- rogerioduenas submitted pull request review: [7980](https://github.com/hackforla/website/pull/7980#pullrequestreview-2663472954) at 2025-03-05 10:39 PM PST -rogerioduenas,2025-03-06T06:43:20Z,- rogerioduenas commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2702952867) at 2025-03-05 10:43 PM PST -rogerioduenas,2025-03-06T06:55:27Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2702976175) at 2025-03-05 10:55 PM PST -rogerioduenas,2025-03-08T01:58:10Z,- rogerioduenas commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2707891450) at 2025-03-07 06:58 PM PDT -rogerioduenas,2025-03-08T02:01:59Z,- rogerioduenas submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668765165) at 2025-03-07 07:01 PM PDT -rogerioduenas,2025-03-08T02:05:18Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2707896076) at 2025-03-07 07:05 PM PDT -rogerioduenas,2025-03-11T06:24:31Z,- rogerioduenas commented on pull request: [7986](https://github.com/hackforla/website/pull/7986#issuecomment-2712812171) at 2025-03-10 11:24 PM PDT -rogerioduenas,2025-03-11T06:32:54Z,- rogerioduenas submitted pull request review: [7986](https://github.com/hackforla/website/pull/7986#pullrequestreview-2673009235) at 2025-03-10 11:32 PM PDT -rogerioduenas,2025-03-11T06:35:50Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2712833923) at 2025-03-10 11:35 PM PDT -rogerioduenas,2025-03-12T05:31:25Z,- rogerioduenas commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2716525617) at 2025-03-11 10:31 PM PDT -rogerioduenas,2025-03-14T05:45:09Z,- rogerioduenas commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2723659528) at 2025-03-13 10:45 PM PDT -rogerioduenas,2025-03-14T06:07:29Z,- rogerioduenas submitted pull request review: [7989](https://github.com/hackforla/website/pull/7989#pullrequestreview-2684403269) at 2025-03-13 11:07 PM PDT -rogerioduenas,2025-03-14T06:10:04Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2723712876) at 2025-03-13 11:10 PM PDT -rogerioduenas,2025-03-18T04:23:43Z,- rogerioduenas assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2652128063) at 2025-03-17 09:23 PM PDT -rogerioduenas,2025-03-27T05:09:48Z,- rogerioduenas unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2731586032) at 2025-03-26 10:09 PM PDT -rogerioduenas,2025-05-22T07:03:28Z,- rogerioduenas submitted pull request review: [8150](https://github.com/hackforla/website/pull/8150#pullrequestreview-2860033159) at 2025-05-22 12:03 AM PDT -rogerioduenas,2025-05-22T07:12:52Z,- rogerioduenas commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2900161841) at 2025-05-22 12:12 AM PDT -rogerioduenas,2025-06-03T06:34:22Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2933716112) at 2025-06-02 11:34 PM PDT -rogerioduenas,2025-06-03T06:49:28Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2933756477) at 2025-06-02 11:49 PM PDT -rogerioduenas,2025-06-03T07:07:06Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2933808542) at 2025-06-03 12:07 AM PDT -rogerioduenas,2025-06-06T06:32:36Z,- rogerioduenas commented on pull request: [8172](https://github.com/hackforla/website/pull/8172#issuecomment-2948244298) at 2025-06-05 11:32 PM PDT -rogerioduenas,2025-06-06T06:45:03Z,- rogerioduenas submitted pull request review: [8172](https://github.com/hackforla/website/pull/8172#pullrequestreview-2903952876) at 2025-06-05 11:45 PM PDT -rogerioduenas,2025-06-06T06:49:18Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2948274465) at 2025-06-05 11:49 PM PDT -rogerioduenas,2025-06-11T07:01:56Z,- rogerioduenas submitted pull request review: [8180](https://github.com/hackforla/website/pull/8180#pullrequestreview-2915894891) at 2025-06-11 12:01 AM PDT -rogerioduenas,2025-06-20T04:53:10Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2989790820) at 2025-06-19 09:53 PM PDT -rolzar,3571,SKILLS ISSUE -rolzar,2022-09-21T03:12:44Z,- rolzar opened issue: [3571](https://github.com/hackforla/website/issues/3571) at 2022-09-20 08:12 PM PDT -rolzar,2022-09-21T03:13:46Z,- rolzar assigned to issue: [3571](https://github.com/hackforla/website/issues/3571) at 2022-09-20 08:13 PM PDT -rolzar,2022-09-27T09:11:36Z,- rolzar assigned to issue: [3562](https://github.com/hackforla/website/issues/3562) at 2022-09-27 02:11 AM PDT -rolzar,2022-09-27T23:44:45Z,- rolzar commented on issue: [3562](https://github.com/hackforla/website/issues/3562#issuecomment-1260186740) at 2022-09-27 04:44 PM PDT -rolzar,2022-09-30T04:24:40Z,- rolzar commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1263086891) at 2022-09-29 09:24 PM PDT -rolzar,2022-10-01T07:36:04Z,- rolzar opened pull request: [3595](https://github.com/hackforla/website/pull/3595) at 2022-10-01 12:36 AM PDT -rolzar,2022-10-02T00:43:09Z,- rolzar pull request merged: [3595](https://github.com/hackforla/website/pull/3595#event-7501258135) at 2022-10-01 05:43 PM PDT -rolzar,2022-10-03T04:19:55Z,- rolzar assigned to issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1145799340) at 2022-10-02 09:19 PM PDT -rolzar,2022-10-04T06:47:31Z,- rolzar commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1266476672) at 2022-10-03 11:47 PM PDT -rolzar,2022-10-23T16:08:27Z,- rolzar unassigned from issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1288145343) at 2022-10-23 09:08 AM PDT -romainyvernes,5608,SKILLS ISSUE -romainyvernes,2023-09-27T02:47:52Z,- romainyvernes opened issue: [5608](https://github.com/hackforla/website/issues/5608) at 2023-09-26 07:47 PM PDT -romainyvernes,2023-09-27T02:47:53Z,- romainyvernes assigned to issue: [5608](https://github.com/hackforla/website/issues/5608) at 2023-09-26 07:47 PM PDT -romainyvernes,2023-09-27T03:33:34Z,- romainyvernes assigned to issue: [5372](https://github.com/hackforla/website/issues/5372#issuecomment-1698562825) at 2023-09-26 08:33 PM PDT -romainyvernes,2023-09-27T21:42:06Z,- romainyvernes commented on issue: [5372](https://github.com/hackforla/website/issues/5372#issuecomment-1738116636) at 2023-09-27 02:42 PM PDT -romainyvernes,2023-09-27T21:46:48Z,- romainyvernes commented on issue: [5608](https://github.com/hackforla/website/issues/5608#issuecomment-1738121831) at 2023-09-27 02:46 PM PDT -romainyvernes,2023-09-27T23:06:48Z,- romainyvernes opened pull request: [5616](https://github.com/hackforla/website/pull/5616) at 2023-09-27 04:06 PM PDT -romainyvernes,2023-09-29T02:46:33Z,- romainyvernes commented on pull request: [5625](https://github.com/hackforla/website/pull/5625#issuecomment-1740239232) at 2023-09-28 07:46 PM PDT -romainyvernes,2023-09-29T03:36:05Z,- romainyvernes submitted pull request review: [5625](https://github.com/hackforla/website/pull/5625#pullrequestreview-1649994667) at 2023-09-28 08:36 PM PDT -romainyvernes,2023-09-29T03:40:34Z,- romainyvernes commented on pull request: [5626](https://github.com/hackforla/website/pull/5626#issuecomment-1740265374) at 2023-09-28 08:40 PM PDT -romainyvernes,2023-09-29T04:25:08Z,- romainyvernes submitted pull request review: [5626](https://github.com/hackforla/website/pull/5626#pullrequestreview-1650019771) at 2023-09-28 09:25 PM PDT -romainyvernes,2023-10-01T17:00:51Z,- romainyvernes pull request merged: [5616](https://github.com/hackforla/website/pull/5616#event-10520048984) at 2023-10-01 10:00 AM PDT -romainyvernes,2023-10-02T18:32:37Z,- romainyvernes assigned to issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1739856247) at 2023-10-02 11:32 AM PDT -romainyvernes,2023-10-02T18:33:18Z,- romainyvernes commented on issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1743546067) at 2023-10-02 11:33 AM PDT -romainyvernes,2023-10-02T19:26:50Z,- romainyvernes opened pull request: [5646](https://github.com/hackforla/website/pull/5646) at 2023-10-02 12:26 PM PDT -romainyvernes,2023-10-04T14:04:26Z,- romainyvernes pull request merged: [5646](https://github.com/hackforla/website/pull/5646#event-10551610815) at 2023-10-04 07:04 AM PDT -romainyvernes,2023-10-04T18:31:03Z,- romainyvernes assigned to issue: [5590](https://github.com/hackforla/website/issues/5590#issuecomment-1735126389) at 2023-10-04 11:31 AM PDT -romainyvernes,2023-10-04T18:33:01Z,- romainyvernes commented on issue: [5590](https://github.com/hackforla/website/issues/5590#issuecomment-1747432489) at 2023-10-04 11:33 AM PDT -romainyvernes,2023-10-04T19:00:35Z,- romainyvernes opened pull request: [5661](https://github.com/hackforla/website/pull/5661) at 2023-10-04 12:00 PM PDT -romainyvernes,2023-10-06T20:40:46Z,- romainyvernes commented on issue: [5608](https://github.com/hackforla/website/issues/5608#issuecomment-1751379609) at 2023-10-06 01:40 PM PDT -romainyvernes,2023-10-09T04:08:01Z,- romainyvernes pull request merged: [5661](https://github.com/hackforla/website/pull/5661#event-10586478193) at 2023-10-08 09:08 PM PDT -romainyvernes,2023-10-09T19:06:03Z,- romainyvernes closed issue as completed: [5608](https://github.com/hackforla/website/issues/5608#event-10594643663) at 2023-10-09 12:06 PM PDT -romainyvernes,2023-10-09T21:23:42Z,- romainyvernes commented on pull request: [5683](https://github.com/hackforla/website/pull/5683#issuecomment-1753899009) at 2023-10-09 02:23 PM PDT -romainyvernes,2023-10-10T23:50:20Z,- romainyvernes submitted pull request review: [5683](https://github.com/hackforla/website/pull/5683#pullrequestreview-1669389166) at 2023-10-10 04:50 PM PDT -romainyvernes,2023-10-15T17:38:30Z,- romainyvernes assigned to issue: [4785](https://github.com/hackforla/website/issues/4785#issuecomment-1577737413) at 2023-10-15 10:38 AM PDT -romainyvernes,2023-10-15T17:39:10Z,- romainyvernes commented on issue: [4785](https://github.com/hackforla/website/issues/4785#issuecomment-1763456867) at 2023-10-15 10:39 AM PDT -romainyvernes,2023-10-16T18:05:01Z,- romainyvernes opened pull request: [5718](https://github.com/hackforla/website/pull/5718) at 2023-10-16 11:05 AM PDT -romainyvernes,2023-10-18T02:38:45Z,- romainyvernes pull request merged: [5718](https://github.com/hackforla/website/pull/5718#event-10686208480) at 2023-10-17 07:38 PM PDT -romainyvernes,2023-10-22T17:11:38Z,- romainyvernes assigned to issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1558292332) at 2023-10-22 10:11 AM PDT -romainyvernes,2023-10-28T18:10:45Z,- romainyvernes unassigned from issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1774148365) at 2023-10-28 11:10 AM PDT -ronaldpaek,4074,SKILLS ISSUE -ronaldpaek,2023-03-01T04:34:09Z,- ronaldpaek opened issue: [4074](https://github.com/hackforla/website/issues/4074) at 2023-02-28 08:34 PM PST -ronaldpaek,2023-03-01T21:44:20Z,- ronaldpaek assigned to issue: [4074](https://github.com/hackforla/website/issues/4074) at 2023-03-01 01:44 PM PST -ronaldpaek,2023-03-03T00:34:52Z,- ronaldpaek assigned to issue: [4037](https://github.com/hackforla/website/issues/4037) at 2023-03-02 04:34 PM PST -ronaldpaek,2023-03-03T02:31:34Z,- ronaldpaek opened pull request: [4093](https://github.com/hackforla/website/pull/4093) at 2023-03-02 06:31 PM PST -ronaldpaek,2023-03-03T02:42:12Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1452873712) at 2023-03-02 06:42 PM PST -ronaldpaek,2023-03-03T02:42:51Z,- ronaldpaek commented on issue: [4037](https://github.com/hackforla/website/issues/4037#issuecomment-1452874654) at 2023-03-02 06:42 PM PST -ronaldpaek,2023-03-03T02:57:30Z,- ronaldpaek commented on issue: [4037](https://github.com/hackforla/website/issues/4037#issuecomment-1452884354) at 2023-03-02 06:57 PM PST -ronaldpaek,2023-03-03T06:33:36Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1453047813) at 2023-03-02 10:33 PM PST -ronaldpaek,2023-03-03T06:34:16Z,- ronaldpaek closed issue as completed: [4074](https://github.com/hackforla/website/issues/4074#event-8656637866) at 2023-03-02 10:34 PM PST -ronaldpaek,2023-03-04T00:51:20Z,- ronaldpaek commented on pull request: [4093](https://github.com/hackforla/website/pull/4093#issuecomment-1454307201) at 2023-03-03 04:51 PM PST -ronaldpaek,2023-03-04T04:59:41Z,- ronaldpaek assigned to issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1429299384) at 2023-03-03 08:59 PM PST -ronaldpaek,2023-03-04T05:43:26Z,- ronaldpaek commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1454489257) at 2023-03-03 09:43 PM PST -ronaldpaek,2023-03-04T05:53:46Z,- ronaldpaek opened pull request: [4108](https://github.com/hackforla/website/pull/4108) at 2023-03-03 09:53 PM PST -ronaldpaek,2023-03-04T16:32:30Z,- ronaldpaek pull request merged: [4093](https://github.com/hackforla/website/pull/4093#event-8666406999) at 2023-03-04 08:32 AM PST -ronaldpaek,2023-03-05T19:31:09Z,- ronaldpaek commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1455181961) at 2023-03-05 11:31 AM PST -ronaldpaek,2023-03-06T12:11:06Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1456021488) at 2023-03-06 04:11 AM PST -ronaldpaek,2023-03-06T12:19:53Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1456034809) at 2023-03-06 04:19 AM PST -ronaldpaek,2023-03-11T01:55:23Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1464777957) at 2023-03-10 06:55 PM PDT -ronaldpaek,2023-03-12T10:30:03Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1465153235) at 2023-03-12 03:30 AM PDT -ronaldpaek,2023-03-13T21:21:38Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1466980667) at 2023-03-13 02:21 PM PDT -ronaldpaek,2023-03-15T02:04:42Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1469183770) at 2023-03-14 07:04 PM PDT -ronaldpaek,2023-03-16T19:00:13Z,- ronaldpaek pull request merged: [4108](https://github.com/hackforla/website/pull/4108#event-8771055227) at 2023-03-16 12:00 PM PDT -ronaldpaek,2023-03-25T16:22:19Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1483862269) at 2023-03-25 09:22 AM PDT -ronaldpaek,2023-03-27T06:08:11Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1484550015) at 2023-03-26 11:08 PM PDT -ronaldpaek,2023-04-05T22:04:31Z,- ronaldpaek assigned to issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1496896565) at 2023-04-05 03:04 PM PDT -ronaldpaek,2023-04-05T22:06:50Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1498217625) at 2023-04-05 03:06 PM PDT -ronaldpaek,2023-04-05T22:08:49Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1498220397) at 2023-04-05 03:08 PM PDT -ronaldpaek,2023-04-18T20:27:52Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1513755920) at 2023-04-18 01:27 PM PDT -ronaldpaek,2023-04-18T20:30:16Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1513758500) at 2023-04-18 01:30 PM PDT -ronaldpaek,2023-05-15T02:23:11Z,- ronaldpaek unassigned from issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1547104482) at 2023-05-14 07:23 PM PDT -ronaldpaek,2023-05-30T03:38:24Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1567714844) at 2023-05-29 08:38 PM PDT -ronaldpaek,2023-06-08T07:06:59Z,- ronaldpaek commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1582004382) at 2023-06-08 12:06 AM PDT -ronaldpaek,2023-06-08T07:07:10Z,- ronaldpaek assigned to issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1582004382) at 2023-06-08 12:07 AM PDT -ronaldpaek,2023-06-13T16:04:38Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1589608689) at 2023-06-13 09:04 AM PDT -ronaldpaek,2023-06-13T23:36:42Z,- ronaldpaek commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590195813) at 2023-06-13 04:36 PM PDT -ronaldpaek,2023-06-14T02:49:49Z,- ronaldpaek commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590363829) at 2023-06-13 07:49 PM PDT -ronaldpaek,2023-06-14T20:38:15Z,- ronaldpaek assigned to issue: [4776](https://github.com/hackforla/website/issues/4776) at 2023-06-14 01:38 PM PDT -ronaldpaek,2023-06-14T20:41:38Z,- ronaldpaek commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1591950748) at 2023-06-14 01:41 PM PDT -ronaldpaek,2023-06-15T22:54:31Z,- ronaldpaek commented on pull request: [4842](https://github.com/hackforla/website/pull/4842#issuecomment-1593819759) at 2023-06-15 03:54 PM PDT -ronaldpaek,2023-06-19T21:03:00Z,- ronaldpaek opened issue: [4859](https://github.com/hackforla/website/issues/4859) at 2023-06-19 02:03 PM PDT -ronaldpaek,2023-06-19T22:39:38Z,- ronaldpaek opened issue: [4860](https://github.com/hackforla/website/issues/4860) at 2023-06-19 03:39 PM PDT -ronaldpaek,2023-06-19T22:43:01Z,- ronaldpaek opened issue: [4861](https://github.com/hackforla/website/issues/4861) at 2023-06-19 03:43 PM PDT -ronaldpaek,2023-06-19T22:46:09Z,- ronaldpaek commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1597848001) at 2023-06-19 03:46 PM PDT -ronaldpaek,2023-06-20T03:08:40Z,- ronaldpaek closed issue as completed: [4074](https://github.com/hackforla/website/issues/4074#event-9574384182) at 2023-06-19 08:08 PM PDT -ronaldpaek,2023-06-21T01:01:30Z,- ronaldpaek submitted pull request review: [4842](https://github.com/hackforla/website/pull/4842#pullrequestreview-1489427291) at 2023-06-20 06:01 PM PDT -ronaldpaek,2023-06-21T01:11:20Z,- ronaldpaek commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1599919946) at 2023-06-20 06:11 PM PDT -ronaldpaek,2023-06-21T01:23:10Z,- ronaldpaek submitted pull request review: [4866](https://github.com/hackforla/website/pull/4866#pullrequestreview-1489473873) at 2023-06-20 06:23 PM PDT -ronaldpaek,2023-06-21T07:53:52Z,- ronaldpaek commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1600363727) at 2023-06-21 12:53 AM PDT -ronaldpaek,2023-06-21T11:43:53Z,- ronaldpaek assigned to issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1574621978) at 2023-06-21 04:43 AM PDT -ronaldpaek,2023-06-21T11:44:46Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1600685798) at 2023-06-21 04:44 AM PDT -ronaldpaek,2023-06-21T11:52:54Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1600695743) at 2023-06-21 04:52 AM PDT -ronaldpaek,2023-06-27T23:03:06Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1610332304) at 2023-06-27 04:03 PM PDT -ronaldpaek,2023-06-28T03:41:47Z,- ronaldpaek submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1502200677) at 2023-06-27 08:41 PM PDT -ronaldpaek,2023-06-28T04:53:35Z,- ronaldpaek opened issue: [4891](https://github.com/hackforla/website/issues/4891) at 2023-06-27 09:53 PM PDT -ronaldpaek,2023-06-28T05:00:31Z,- ronaldpaek opened issue: [4892](https://github.com/hackforla/website/issues/4892) at 2023-06-27 10:00 PM PDT -ronaldpaek,2023-06-28T05:27:26Z,- ronaldpaek opened issue: [4893](https://github.com/hackforla/website/issues/4893) at 2023-06-27 10:27 PM PDT -ronaldpaek,2023-06-28T05:30:48Z,- ronaldpaek opened issue: [4894](https://github.com/hackforla/website/issues/4894) at 2023-06-27 10:30 PM PDT -ronaldpaek,2023-06-28T05:32:17Z,- ronaldpaek opened issue: [4895](https://github.com/hackforla/website/issues/4895) at 2023-06-27 10:32 PM PDT -ronaldpaek,2023-06-30T23:23:43Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1615271710) at 2023-06-30 04:23 PM PDT -ronaldpaek,2023-06-30T23:26:04Z,- ronaldpaek commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1615272817) at 2023-06-30 04:26 PM PDT -ronaldpaek,2023-07-03T20:29:45Z,- ronaldpaek unassigned from issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1615271710) at 2023-07-03 01:29 PM PDT -ronaldpaek,2023-07-03T20:31:32Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1619121258) at 2023-07-03 01:31 PM PDT -ronaldpaek,2023-07-04T07:04:06Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1619634504) at 2023-07-04 12:04 AM PDT -ronaldpaek,2023-07-04T07:05:07Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1619635733) at 2023-07-04 12:05 AM PDT -ronaldpaek,2023-07-04T07:06:26Z,- ronaldpaek commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1619637377) at 2023-07-04 12:06 AM PDT -ronaldpaek,2023-07-07T11:23:04Z,- ronaldpaek assigned to issue: [4887](https://github.com/hackforla/website/issues/4887) at 2023-07-07 04:23 AM PDT -ronaldpaek,2023-07-07T11:25:29Z,- ronaldpaek commented on issue: [4887](https://github.com/hackforla/website/issues/4887#issuecomment-1625269223) at 2023-07-07 04:25 AM PDT -ronaldpaek,2023-07-10T04:33:31Z,- ronaldpaek commented on issue: [4887](https://github.com/hackforla/website/issues/4887#issuecomment-1628143807) at 2023-07-09 09:33 PM PDT -ronaldpaek,2023-07-10T06:12:08Z,- ronaldpaek opened pull request: [4927](https://github.com/hackforla/website/pull/4927) at 2023-07-09 11:12 PM PDT -ronaldpaek,2023-07-10T18:55:05Z,- ronaldpaek commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1629531137) at 2023-07-10 11:55 AM PDT -ronaldpaek,2023-07-12T17:33:43Z,- ronaldpaek submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1526869514) at 2023-07-12 10:33 AM PDT -ronaldpaek,2023-07-12T17:34:32Z,- ronaldpaek submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1526870688) at 2023-07-12 10:34 AM PDT -ronaldpaek,2023-07-13T02:46:37Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633466380) at 2023-07-12 07:46 PM PDT -ronaldpaek,2023-07-13T02:51:06Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633470305) at 2023-07-12 07:51 PM PDT -ronaldpaek,2023-07-13T05:26:35Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633568597) at 2023-07-12 10:26 PM PDT -ronaldpaek,2023-07-13T06:41:26Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633649218) at 2023-07-12 11:41 PM PDT -ronaldpaek,2023-07-13T06:42:31Z,- ronaldpaek submitted pull request review: [4937](https://github.com/hackforla/website/pull/4937#pullrequestreview-1527710722) at 2023-07-12 11:42 PM PDT -ronaldpaek,2023-07-14T02:40:54Z,- ronaldpaek submitted pull request review: [4937](https://github.com/hackforla/website/pull/4937#pullrequestreview-1529505668) at 2023-07-13 07:40 PM PDT -ronaldpaek,2023-07-14T07:35:49Z,- ronaldpaek pull request merged: [4927](https://github.com/hackforla/website/pull/4927#event-9818979423) at 2023-07-14 12:35 AM PDT -ronaldpaek,2023-07-16T00:12:52Z,- ronaldpaek commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-1636924714) at 2023-07-15 05:12 PM PDT -ronaldpaek,2023-07-19T05:24:25Z,- ronaldpaek opened pull request: [5023](https://github.com/hackforla/website/pull/5023) at 2023-07-18 10:24 PM PDT -ronaldpaek,2023-07-19T05:26:24Z,- ronaldpaek commented on pull request: [5023](https://github.com/hackforla/website/pull/5023#issuecomment-1641435680) at 2023-07-18 10:26 PM PDT -ronaldpaek,2023-07-19T05:53:43Z,- ronaldpaek opened pull request: [5024](https://github.com/hackforla/website/pull/5024) at 2023-07-18 10:53 PM PDT -ronaldpaek,2023-07-19T06:04:06Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641468053) at 2023-07-18 11:04 PM PDT -ronaldpaek,2023-07-19T06:05:16Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641469084) at 2023-07-18 11:05 PM PDT -ronaldpaek,2023-07-19T06:11:02Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1641475094) at 2023-07-18 11:11 PM PDT -ronaldpaek,2023-07-19T06:14:21Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641479355) at 2023-07-18 11:14 PM PDT -ronaldpaek,2023-07-19T06:35:59Z,- ronaldpaek commented on pull request: [5025](https://github.com/hackforla/website/pull/5025#issuecomment-1641500001) at 2023-07-18 11:35 PM PDT -ronaldpaek,2023-07-19T06:37:22Z,- ronaldpaek submitted pull request review: [5025](https://github.com/hackforla/website/pull/5025#pullrequestreview-1536352491) at 2023-07-18 11:37 PM PDT -ronaldpaek,2023-07-19T06:51:02Z,- ronaldpaek submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1536369876) at 2023-07-18 11:51 PM PDT -ronaldpaek,2023-07-19T07:02:28Z,- ronaldpaek commented on pull request: [5023](https://github.com/hackforla/website/pull/5023#issuecomment-1641528530) at 2023-07-19 12:02 AM PDT -ronaldpaek,2023-07-19T09:23:47Z,- ronaldpaek commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1641740154) at 2023-07-19 02:23 AM PDT -ronaldpaek,2023-07-19T14:52:52Z,- ronaldpaek submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1537293770) at 2023-07-19 07:52 AM PDT -ronaldpaek,2023-07-19T15:22:54Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642295715) at 2023-07-19 08:22 AM PDT -ronaldpaek,2023-07-19T15:27:17Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642303851) at 2023-07-19 08:27 AM PDT -ronaldpaek,2023-07-19T15:38:39Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642322603) at 2023-07-19 08:38 AM PDT -ronaldpaek,2023-07-19T15:39:27Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642324980) at 2023-07-19 08:39 AM PDT -ronaldpaek,2023-07-19T16:09:26Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642371972) at 2023-07-19 09:09 AM PDT -ronaldpaek,2023-07-19T18:29:03Z,- ronaldpaek opened pull request: [5035](https://github.com/hackforla/website/pull/5035) at 2023-07-19 11:29 AM PDT -ronaldpaek,2023-07-19T18:29:52Z,- ronaldpaek pull request closed w/o merging: [5035](https://github.com/hackforla/website/pull/5035#event-9866009475) at 2023-07-19 11:29 AM PDT -ronaldpaek,2023-07-20T14:21:54Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1644018574) at 2023-07-20 07:21 AM PDT -ronaldpaek,2023-07-20T14:29:46Z,- ronaldpaek submitted pull request review: [5034](https://github.com/hackforla/website/pull/5034#pullrequestreview-1539407604) at 2023-07-20 07:29 AM PDT -ronaldpaek,2023-07-20T14:44:38Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1644057299) at 2023-07-20 07:44 AM PDT -ronaldpaek,2023-07-20T14:45:42Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1644059158) at 2023-07-20 07:45 AM PDT -ronaldpaek,2023-07-20T18:57:20Z,- ronaldpaek submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1539900294) at 2023-07-20 11:57 AM PDT -ronaldpaek,2023-07-23T17:51:36Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1646905168) at 2023-07-23 10:51 AM PDT -ronaldpaek,2023-07-24T23:03:34Z,- ronaldpaek submitted pull request review: [5049](https://github.com/hackforla/website/pull/5049#pullrequestreview-1544402721) at 2023-07-24 04:03 PM PDT -ronaldpaek,2023-07-24T23:04:00Z,- ronaldpaek commented on pull request: [5049](https://github.com/hackforla/website/pull/5049#issuecomment-1648738323) at 2023-07-24 04:04 PM PDT -ronaldpaek,2023-07-24T23:16:31Z,- ronaldpaek submitted pull request review: [5052](https://github.com/hackforla/website/pull/5052#pullrequestreview-1544411008) at 2023-07-24 04:16 PM PDT -ronaldpaek,2023-07-25T08:12:48Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1649341150) at 2023-07-25 01:12 AM PDT -ronaldpaek,2023-08-01T08:01:24Z,- ronaldpaek opened issue: [5126](https://github.com/hackforla/website/issues/5126) at 2023-08-01 01:01 AM PDT -ronaldpaek,2023-08-04T16:39:12Z,- ronaldpaek commented on issue: [5126](https://github.com/hackforla/website/issues/5126#issuecomment-1665896614) at 2023-08-04 09:39 AM PDT -ronaldpaek,2023-08-04T16:39:19Z,- ronaldpaek closed issue as completed: [5126](https://github.com/hackforla/website/issues/5126#event-10011329850) at 2023-08-04 09:39 AM PDT -ronaldpaek,2023-08-10T00:25:58Z,- ronaldpaek commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1672356996) at 2023-08-09 05:25 PM PDT -ronaldpaek,2023-08-11T19:05:19Z,- ronaldpaek submitted pull request review: [5124](https://github.com/hackforla/website/pull/5124#pullrequestreview-1574240003) at 2023-08-11 12:05 PM PDT -ronaldpaek,2023-08-17T04:43:33Z,- ronaldpaek commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1681604512) at 2023-08-16 09:43 PM PDT -ronaldpaek,2023-08-18T11:24:48Z,- ronaldpaek submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1584394280) at 2023-08-18 04:24 AM PDT -ronaldpaek,2023-08-19T04:45:46Z,- ronaldpaek commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1684804851) at 2023-08-18 09:45 PM PDT -ronaldpaek,2023-08-19T04:47:31Z,- ronaldpaek submitted pull request review: [5249](https://github.com/hackforla/website/pull/5249#pullrequestreview-1585531524) at 2023-08-18 09:47 PM PDT -ronaldpaek,2023-08-19T09:34:20Z,- ronaldpaek opened pull request: [5258](https://github.com/hackforla/website/pull/5258) at 2023-08-19 02:34 AM PDT -ronaldpaek,2023-08-19T10:08:46Z,- ronaldpaek commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1684910689) at 2023-08-19 03:08 AM PDT -ronaldpaek,2023-08-24T10:59:39Z,- ronaldpaek submitted pull request review: [5263](https://github.com/hackforla/website/pull/5263#pullrequestreview-1593327572) at 2023-08-24 03:59 AM PDT -ronaldpaek,2023-08-25T05:42:29Z,- ronaldpaek commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1692792060) at 2023-08-24 10:42 PM PDT -ronaldpaek,2023-08-31T09:52:45Z,- ronaldpaek submitted pull request review: [5339](https://github.com/hackforla/website/pull/5339#pullrequestreview-1604381237) at 2023-08-31 02:52 AM PDT -ronaldpaek,2023-09-04T13:20:57Z,- ronaldpaek commented on pull request: [5434](https://github.com/hackforla/website/pull/5434#issuecomment-1705265530) at 2023-09-04 06:20 AM PDT -ronaldpaek,2023-09-04T13:22:32Z,- ronaldpaek commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1705268041) at 2023-09-04 06:22 AM PDT -ronaldpaek,2023-09-04T13:23:20Z,- ronaldpaek commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1705269236) at 2023-09-04 06:23 AM PDT -ronaldpaek,2023-09-09T06:22:56Z,- ronaldpaek submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1618569616) at 2023-09-08 11:22 PM PDT -ronaldpaek,2023-09-13T00:23:49Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1716758313) at 2023-09-12 05:23 PM PDT -ronaldpaek,2023-09-13T05:25:35Z,- ronaldpaek submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1623712985) at 2023-09-12 10:25 PM PDT -ronaldpaek,2023-09-13T21:33:13Z,- ronaldpaek submitted pull request review: [5512](https://github.com/hackforla/website/pull/5512#pullrequestreview-1625486494) at 2023-09-13 02:33 PM PDT -ronaldpaek,2023-10-16T11:36:03Z,- ronaldpaek submitted pull request review: [5702](https://github.com/hackforla/website/pull/5702#pullrequestreview-1679754125) at 2023-10-16 04:36 AM PDT -ronaldpaek,2023-11-08T01:29:34Z,- ronaldpaek commented on pull request: [5877](https://github.com/hackforla/website/pull/5877#issuecomment-1800857938) at 2023-11-07 05:29 PM PST -ronaldpaek,2023-11-08T01:50:34Z,- ronaldpaek submitted pull request review: [5877](https://github.com/hackforla/website/pull/5877#pullrequestreview-1719173090) at 2023-11-07 05:50 PM PST -ronaldpaek,2023-11-08T20:51:51Z,- ronaldpaek submitted pull request review: [5877](https://github.com/hackforla/website/pull/5877#pullrequestreview-1721253234) at 2023-11-08 12:51 PM PST -Rosalyn-broddie,2021-03-28T08:37:30Z,- Rosalyn-broddie assigned to issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-28 01:37 AM PDT -Rosalyn-broddie,2021-05-04T08:36:37Z,- Rosalyn-broddie assigned to issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-829904063) at 2021-05-04 01:36 AM PDT -Rosalyn-broddie,2021-05-14T17:22:26Z,- Rosalyn-broddie commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-841390250) at 2021-05-14 10:22 AM PDT -Rosalyn-broddie,2021-05-16T17:17:51Z,- Rosalyn-broddie commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-841847199) at 2021-05-16 10:17 AM PDT -Rosalyn-broddie,2021-05-23T17:20:23Z,- Rosalyn-broddie commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-846596388) at 2021-05-23 10:20 AM PDT -Rosalyn-broddie,2021-05-30T17:04:43Z,- Rosalyn-broddie commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-851030694) at 2021-05-30 10:04 AM PDT -Rosalyn-broddie,2021-05-30T17:47:00Z,- Rosalyn-broddie commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-851036110) at 2021-05-30 10:47 AM PDT -Rosalyn-broddie,2021-06-11T03:49:21Z,- Rosalyn-broddie unassigned from issue: [1289](https://github.com/hackforla/website/issues/1289#event-4875399700) at 2021-06-10 08:49 PM PDT -Rosalyn-broddie,2021-06-12T19:43:45Z,- Rosalyn-broddie unassigned from issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860097793) at 2021-06-12 12:43 PM PDT -Rosalyn-broddie,2021-06-24T21:45:10Z,- Rosalyn-broddie assigned to issue: [1733](https://github.com/hackforla/website/issues/1733) at 2021-06-24 02:45 PM PDT -Rosalyn-broddie,2021-07-11T16:07:15Z,- Rosalyn-broddie commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-877825946) at 2021-07-11 09:07 AM PDT -Rosalyn-broddie,2021-07-29T19:26:19Z,- Rosalyn-broddie unassigned from issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-889400182) at 2021-07-29 12:26 PM PDT -roslynwythe,3640,SKILLS ISSUE -roslynwythe,2022-10-19T03:17:42Z,- roslynwythe opened issue: [3640](https://github.com/hackforla/website/issues/3640) at 2022-10-18 08:17 PM PDT -roslynwythe,2022-10-23T17:22:30Z,- roslynwythe assigned to issue: [3640](https://github.com/hackforla/website/issues/3640) at 2022-10-23 10:22 AM PDT -roslynwythe,2022-10-25T00:42:44Z,- roslynwythe assigned to issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1243067921) at 2022-10-24 05:42 PM PDT -roslynwythe,2022-10-25T04:44:44Z,- roslynwythe commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1289972922) at 2022-10-24 09:44 PM PDT -roslynwythe,2022-10-25T08:58:30Z,- roslynwythe commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1290219552) at 2022-10-25 01:58 AM PDT -roslynwythe,2022-10-26T08:58:44Z,- roslynwythe commented on issue: [3640](https://github.com/hackforla/website/issues/3640#issuecomment-1291719836) at 2022-10-26 01:58 AM PDT -roslynwythe,2022-10-27T06:41:59Z,- roslynwythe opened pull request: [3668](https://github.com/hackforla/website/pull/3668) at 2022-10-26 11:41 PM PDT -roslynwythe,2022-10-27T07:00:56Z,- roslynwythe assigned to issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1288145343) at 2022-10-27 12:00 AM PDT -roslynwythe,2022-10-27T19:00:31Z,- roslynwythe commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1293942607) at 2022-10-27 12:00 PM PDT -roslynwythe,2022-10-27T21:04:52Z,- roslynwythe unassigned from issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1293942607) at 2022-10-27 02:04 PM PDT -roslynwythe,2022-10-27T21:23:25Z,- roslynwythe commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1294078690) at 2022-10-27 02:23 PM PDT -roslynwythe,2022-10-28T02:58:04Z,- roslynwythe pull request merged: [3668](https://github.com/hackforla/website/pull/3668#event-7687605369) at 2022-10-27 07:58 PM PDT -roslynwythe,2022-10-28T18:33:37Z,- roslynwythe assigned to issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1294078690) at 2022-10-28 11:33 AM PDT -roslynwythe,2022-10-28T20:10:03Z,- roslynwythe commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1295417877) at 2022-10-28 01:10 PM PDT -roslynwythe,2022-10-30T08:01:26Z,- roslynwythe closed issue as completed: [3640](https://github.com/hackforla/website/issues/3640#event-7698497632) at 2022-10-30 01:01 AM PDT -roslynwythe,2022-10-31T03:18:58Z,- roslynwythe opened pull request: [3677](https://github.com/hackforla/website/pull/3677) at 2022-10-30 08:18 PM PDT -roslynwythe,2022-10-31T18:38:14Z,- roslynwythe pull request merged: [3677](https://github.com/hackforla/website/pull/3677#event-7707028521) at 2022-10-31 11:38 AM PDT -roslynwythe,2022-11-01T08:11:43Z,- roslynwythe commented on pull request: [3686](https://github.com/hackforla/website/pull/3686#issuecomment-1298191982) at 2022-11-01 01:11 AM PDT -roslynwythe,2022-11-01T08:33:07Z,- roslynwythe submitted pull request review: [3686](https://github.com/hackforla/website/pull/3686#pullrequestreview-1163001134) at 2022-11-01 01:33 AM PDT -roslynwythe,2022-11-02T06:08:36Z,- roslynwythe assigned to issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1291458963) at 2022-11-01 11:08 PM PDT -roslynwythe,2022-11-02T06:13:40Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1299629196) at 2022-11-01 11:13 PM PDT -roslynwythe,2022-11-02T07:28:28Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1299691374) at 2022-11-02 12:28 AM PDT -roslynwythe,2022-11-02T18:53:53Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1301078729) at 2022-11-02 11:53 AM PDT -roslynwythe,2022-11-03T01:03:16Z,- roslynwythe unassigned from issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1301078729) at 2022-11-02 06:03 PM PDT -roslynwythe,2022-11-03T01:04:46Z,- roslynwythe assigned to issue: [2147](https://github.com/hackforla/website/issues/2147) at 2022-11-02 06:04 PM PDT -roslynwythe,2022-11-03T01:13:01Z,- roslynwythe commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-1301539348) at 2022-11-02 06:13 PM PDT -roslynwythe,2022-11-03T01:13:55Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1301539713) at 2022-11-02 06:13 PM PDT -roslynwythe,2022-11-04T16:59:39Z,- roslynwythe unassigned from issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-1301539348) at 2022-11-04 09:59 AM PDT -roslynwythe,2022-11-04T17:04:53Z,- roslynwythe commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-1303890743) at 2022-11-04 10:04 AM PDT -roslynwythe,2022-11-04T17:05:46Z,- roslynwythe assigned to issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1301539713) at 2022-11-04 10:05 AM PDT -roslynwythe,2022-11-04T19:27:04Z,- roslynwythe unassigned from issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304061730) at 2022-11-04 12:27 PM PDT -roslynwythe,2022-11-04T20:37:03Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304205345) at 2022-11-04 01:37 PM PDT -roslynwythe,2022-11-08T21:30:44Z,- roslynwythe assigned to issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-11-08 01:30 PM PST -roslynwythe,2022-11-09T03:47:08Z,- roslynwythe unassigned from issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-11-08 07:47 PM PST -roslynwythe,2022-11-09T05:10:42Z,- roslynwythe assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1302649451) at 2022-11-08 09:10 PM PST -roslynwythe,2022-11-09T11:40:31Z,- roslynwythe commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1308623932) at 2022-11-09 03:40 AM PST -roslynwythe,2022-11-13T11:05:03Z,- roslynwythe commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1312703404) at 2022-11-13 03:05 AM PST -roslynwythe,2022-11-16T08:49:52Z,- roslynwythe opened pull request: [3725](https://github.com/hackforla/website/pull/3725) at 2022-11-16 12:49 AM PST -roslynwythe,2022-11-17T19:29:21Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1319103260) at 2022-11-17 11:29 AM PST -roslynwythe,2022-11-20T20:23:39Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1321234071) at 2022-11-20 12:23 PM PST -roslynwythe,2022-11-20T20:50:45Z,- roslynwythe commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321239863) at 2022-11-20 12:50 PM PST -roslynwythe,2022-11-20T21:10:15Z,- roslynwythe commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321243813) at 2022-11-20 01:10 PM PST -roslynwythe,2022-11-20T21:14:48Z,- roslynwythe submitted pull request review: [3733](https://github.com/hackforla/website/pull/3733#pullrequestreview-1187322651) at 2022-11-20 01:14 PM PST -roslynwythe,2022-11-20T21:14:57Z,- roslynwythe reopened pull request: [3733](https://github.com/hackforla/website/pull/3733#pullrequestreview-1187322651) at 2022-11-20 01:14 PM PST -roslynwythe,2022-11-20T21:16:02Z,- roslynwythe commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321244967) at 2022-11-20 01:16 PM PST -roslynwythe,2022-11-21T01:09:31Z,- roslynwythe submitted pull request review: [3733](https://github.com/hackforla/website/pull/3733#pullrequestreview-1187364661) at 2022-11-20 05:09 PM PST -roslynwythe,2022-11-21T23:37:51Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1322802292) at 2022-11-21 03:37 PM PST -roslynwythe,2022-11-23T10:13:54Z,- roslynwythe submitted pull request review: [3741](https://github.com/hackforla/website/pull/3741#pullrequestreview-1191368123) at 2022-11-23 02:13 AM PST -roslynwythe,2022-11-27T04:46:02Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1328170743) at 2022-11-26 08:46 PM PST -roslynwythe,2022-11-27T17:46:30Z,- roslynwythe commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1328303701) at 2022-11-27 09:46 AM PST -roslynwythe,2022-11-28T01:10:31Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1328401313) at 2022-11-27 05:10 PM PST -roslynwythe,2022-11-30T02:03:20Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1331550542) at 2022-11-29 06:03 PM PST -roslynwythe,2022-11-30T02:15:31Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1331559106) at 2022-11-29 06:15 PM PST -roslynwythe,2022-11-30T04:20:21Z,- roslynwythe commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1331626016) at 2022-11-29 08:20 PM PST -roslynwythe,2022-11-30T10:19:24Z,- roslynwythe submitted pull request review: [3754](https://github.com/hackforla/website/pull/3754#pullrequestreview-1199053744) at 2022-11-30 02:19 AM PST -roslynwythe,2022-11-30T10:25:52Z,- roslynwythe commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1331936063) at 2022-11-30 02:25 AM PST -roslynwythe,2022-11-30T18:48:11Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1332590207) at 2022-11-30 10:48 AM PST -roslynwythe,2022-11-30T18:49:47Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1332592598) at 2022-11-30 10:49 AM PST -roslynwythe,2022-12-08T00:35:17Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1341804543) at 2022-12-07 04:35 PM PST -roslynwythe,2022-12-08T01:34:11Z,- roslynwythe commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1341848620) at 2022-12-07 05:34 PM PST -roslynwythe,2022-12-14T01:24:33Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1350216403) at 2022-12-13 05:24 PM PST -roslynwythe,2022-12-14T21:59:20Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1352266697) at 2022-12-14 01:59 PM PST -roslynwythe,2022-12-16T00:23:34Z,- roslynwythe commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1353938740) at 2022-12-15 04:23 PM PST -roslynwythe,2022-12-16T03:00:42Z,- roslynwythe commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1354115656) at 2022-12-15 07:00 PM PST -roslynwythe,2022-12-16T19:36:27Z,- roslynwythe commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1355493689) at 2022-12-16 11:36 AM PST -roslynwythe,2022-12-16T22:44:50Z,- roslynwythe pull request merged: [3725](https://github.com/hackforla/website/pull/3725#event-8060326656) at 2022-12-16 02:44 PM PST -roslynwythe,2022-12-18T09:09:22Z,- roslynwythe closed issue as completed: [3352](https://github.com/hackforla/website/issues/3352#event-8063600927) at 2022-12-18 01:09 AM PST -roslynwythe,2022-12-18T09:09:28Z,- roslynwythe reopened issue: [3352](https://github.com/hackforla/website/issues/3352#event-8063600927) at 2022-12-18 01:09 AM PST -roslynwythe,2022-12-18T09:52:12Z,- roslynwythe assigned to issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1059635376) at 2022-12-18 01:52 AM PST -roslynwythe,2022-12-18T10:32:18Z,- roslynwythe commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1356768601) at 2022-12-18 02:32 AM PST -roslynwythe,2022-12-18T19:59:19Z,- roslynwythe commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1356864409) at 2022-12-18 11:59 AM PST -roslynwythe,2022-12-27T23:20:33Z,- roslynwythe commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1366256749) at 2022-12-27 03:20 PM PST -roslynwythe,2022-12-28T04:29:59Z,- roslynwythe submitted pull request review: [3774](https://github.com/hackforla/website/pull/3774#pullrequestreview-1231205251) at 2022-12-27 08:29 PM PST -roslynwythe,2022-12-30T23:52:11Z,- roslynwythe submitted pull request review: [3774](https://github.com/hackforla/website/pull/3774#pullrequestreview-1233313845) at 2022-12-30 03:52 PM PST -roslynwythe,2023-01-09T23:49:19Z,- roslynwythe commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1376504207) at 2023-01-09 03:49 PM PST -roslynwythe,2023-01-11T04:50:51Z,- roslynwythe commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378237366) at 2023-01-10 08:50 PM PST -roslynwythe,2023-01-11T04:52:55Z,- roslynwythe commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378238340) at 2023-01-10 08:52 PM PST -roslynwythe,2023-01-11T20:53:22Z,- roslynwythe commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379471452) at 2023-01-11 12:53 PM PST -roslynwythe,2023-01-12T01:44:44Z,- roslynwythe commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379705278) at 2023-01-11 05:44 PM PST -roslynwythe,2023-01-12T01:45:15Z,- roslynwythe submitted pull request review: [3801](https://github.com/hackforla/website/pull/3801#pullrequestreview-1244852356) at 2023-01-11 05:45 PM PST -roslynwythe,2023-01-12T23:47:25Z,- roslynwythe commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1381113713) at 2023-01-12 03:47 PM PST -roslynwythe,2023-01-15T10:47:53Z,- roslynwythe commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1383117641) at 2023-01-15 02:47 AM PST -roslynwythe,2023-01-15T22:35:35Z,- roslynwythe unassigned from issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1383117641) at 2023-01-15 02:35 PM PST -roslynwythe,2023-01-15T22:37:24Z,- roslynwythe commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1383271839) at 2023-01-15 02:37 PM PST -roslynwythe,2023-01-19T07:08:28Z,- roslynwythe commented on pull request: [3842](https://github.com/hackforla/website/pull/3842#issuecomment-1396531870) at 2023-01-18 11:08 PM PST -roslynwythe,2023-01-19T07:11:47Z,- roslynwythe submitted pull request review: [3842](https://github.com/hackforla/website/pull/3842#pullrequestreview-1261220905) at 2023-01-18 11:11 PM PST -roslynwythe,2023-01-23T20:34:43Z,- roslynwythe commented on issue: [3862](https://github.com/hackforla/website/issues/3862#issuecomment-1400944503) at 2023-01-23 12:34 PM PST -roslynwythe,2023-01-24T05:43:45Z,- roslynwythe commented on issue: [3862](https://github.com/hackforla/website/issues/3862#issuecomment-1401424028) at 2023-01-23 09:43 PM PST -roslynwythe,2023-01-24T05:43:46Z,- roslynwythe closed issue as completed: [3862](https://github.com/hackforla/website/issues/3862#event-8340797723) at 2023-01-23 09:43 PM PST -roslynwythe,2023-01-25T04:57:54Z,- roslynwythe commented on pull request: [3865](https://github.com/hackforla/website/pull/3865#issuecomment-1403097393) at 2023-01-24 08:57 PM PST -roslynwythe,2023-01-25T17:43:42Z,- roslynwythe submitted pull request review: [3865](https://github.com/hackforla/website/pull/3865#pullrequestreview-1269833600) at 2023-01-25 09:43 AM PST -roslynwythe,2023-01-26T07:33:17Z,- roslynwythe submitted pull request review: [3864](https://github.com/hackforla/website/pull/3864#pullrequestreview-1270567429) at 2023-01-25 11:33 PM PST -roslynwythe,2023-01-27T01:18:00Z,- roslynwythe opened issue: [3881](https://github.com/hackforla/website/issues/3881) at 2023-01-26 05:18 PM PST -roslynwythe,2023-02-05T20:48:17Z,- roslynwythe commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1418260856) at 2023-02-05 12:48 PM PST -roslynwythe,2023-02-06T09:17:53Z,- roslynwythe commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1418757661) at 2023-02-06 01:17 AM PST -roslynwythe,2023-02-06T18:34:44Z,- roslynwythe assigned to issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1416547323) at 2023-02-06 10:34 AM PST -roslynwythe,2023-02-06T18:35:18Z,- roslynwythe unassigned from issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419564563) at 2023-02-06 10:35 AM PST -roslynwythe,2023-02-06T18:38:21Z,- roslynwythe commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419568110) at 2023-02-06 10:38 AM PST -roslynwythe,2023-02-06T19:15:19Z,- roslynwythe commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1419612321) at 2023-02-06 11:15 AM PST -roslynwythe,2023-02-06T19:18:24Z,- roslynwythe assigned to issue: [3722](https://github.com/hackforla/website/issues/3722) at 2023-02-06 11:18 AM PST -roslynwythe,2023-02-07T00:01:29Z,- roslynwythe commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1419965651) at 2023-02-06 04:01 PM PST -roslynwythe,2023-02-07T05:35:29Z,- roslynwythe commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420226287) at 2023-02-06 09:35 PM PST -roslynwythe,2023-02-08T07:53:19Z,- roslynwythe submitted pull request review: [3928](https://github.com/hackforla/website/pull/3928#pullrequestreview-1288636243) at 2023-02-07 11:53 PM PST -roslynwythe,2023-02-08T07:53:46Z,- roslynwythe closed issue by PR 3928: [3572](https://github.com/hackforla/website/issues/3572#event-8465775584) at 2023-02-07 11:53 PM PST -roslynwythe,2023-02-08T08:30:11Z,- roslynwythe opened issue: [3955](https://github.com/hackforla/website/issues/3955) at 2023-02-08 12:30 AM PST -roslynwythe,2023-02-08T08:32:00Z,- roslynwythe commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1422220461) at 2023-02-08 12:32 AM PST -roslynwythe,2023-02-08T08:32:09Z,- roslynwythe commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1422220630) at 2023-02-08 12:32 AM PST -roslynwythe,2023-02-08T08:36:14Z,- roslynwythe commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1422225487) at 2023-02-08 12:36 AM PST -roslynwythe,2023-02-09T02:33:47Z,- roslynwythe commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423531322) at 2023-02-08 06:33 PM PST -roslynwythe,2023-02-09T04:35:04Z,- roslynwythe commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1423621913) at 2023-02-08 08:35 PM PST -roslynwythe,2023-02-09T06:10:49Z,- roslynwythe opened issue: [3960](https://github.com/hackforla/website/issues/3960) at 2023-02-08 10:10 PM PST -roslynwythe,2023-02-09T08:57:47Z,- roslynwythe commented on pull request: [3956](https://github.com/hackforla/website/pull/3956#issuecomment-1423842378) at 2023-02-09 12:57 AM PST -roslynwythe,2023-02-13T06:27:29Z,- roslynwythe commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1427417300) at 2023-02-12 10:27 PM PST -roslynwythe,2023-02-13T06:36:44Z,- roslynwythe assigned to issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1427417300) at 2023-02-12 10:36 PM PST -roslynwythe,2023-02-15T06:54:41Z,- roslynwythe commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1430845670) at 2023-02-14 10:54 PM PST -roslynwythe,2023-02-15T08:11:52Z,- roslynwythe closed issue by PR 3961: [2806](https://github.com/hackforla/website/issues/2806#event-8523215455) at 2023-02-15 12:11 AM PST -roslynwythe,2023-02-15T09:17:56Z,- roslynwythe opened issue: [3983](https://github.com/hackforla/website/issues/3983) at 2023-02-15 01:17 AM PST -roslynwythe,2023-02-15T09:17:57Z,- roslynwythe assigned to issue: [3983](https://github.com/hackforla/website/issues/3983) at 2023-02-15 01:17 AM PST -roslynwythe,2023-02-15T10:04:22Z,- roslynwythe commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1431056289) at 2023-02-15 02:04 AM PST -roslynwythe,2023-02-15T10:11:40Z,- roslynwythe commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1431068905) at 2023-02-15 02:11 AM PST -roslynwythe,2023-02-15T21:31:04Z,- roslynwythe commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1432060731) at 2023-02-15 01:31 PM PST -roslynwythe,2023-02-16T08:03:23Z,- roslynwythe commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1432674041) at 2023-02-16 12:03 AM PST -roslynwythe,2023-02-16T08:15:12Z,- roslynwythe commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1432687188) at 2023-02-16 12:15 AM PST -roslynwythe,2023-02-16T08:42:03Z,- roslynwythe unassigned from issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1432648106) at 2023-02-16 12:42 AM PST -roslynwythe,2023-02-16T08:55:50Z,- roslynwythe closed issue by PR 3982: [3958](https://github.com/hackforla/website/issues/3958#event-8534502397) at 2023-02-16 12:55 AM PST -roslynwythe,2023-02-16T08:57:46Z,- roslynwythe commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1432735904) at 2023-02-16 12:57 AM PST -roslynwythe,2023-02-16T18:31:12Z,- roslynwythe submitted pull request review: [3978](https://github.com/hackforla/website/pull/3978#pullrequestreview-1302056570) at 2023-02-16 10:31 AM PST -roslynwythe,2023-02-17T03:09:45Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1434035451) at 2023-02-16 07:09 PM PST -roslynwythe,2023-02-17T07:57:35Z,- roslynwythe unassigned from issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1427424609) at 2023-02-16 11:57 PM PST -roslynwythe,2023-02-17T08:03:17Z,- roslynwythe commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1434268193) at 2023-02-17 12:03 AM PST -roslynwythe,2023-02-18T02:47:00Z,- roslynwythe commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1435465776) at 2023-02-17 06:47 PM PST -roslynwythe,2023-02-19T23:41:11Z,- roslynwythe opened issue: [4010](https://github.com/hackforla/website/issues/4010) at 2023-02-19 03:41 PM PST -roslynwythe,2023-02-19T23:41:12Z,- roslynwythe assigned to issue: [4010](https://github.com/hackforla/website/issues/4010) at 2023-02-19 03:41 PM PST -roslynwythe,2023-02-20T02:09:40Z,- roslynwythe commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1436199120) at 2023-02-19 06:09 PM PST -roslynwythe,2023-02-22T10:27:48Z,- roslynwythe commented on pull request: [4019](https://github.com/hackforla/website/pull/4019#issuecomment-1439777695) at 2023-02-22 02:27 AM PST -roslynwythe,2023-02-22T22:18:00Z,- roslynwythe submitted pull request review: [4019](https://github.com/hackforla/website/pull/4019#pullrequestreview-1310359132) at 2023-02-22 02:18 PM PST -roslynwythe,2023-02-23T08:21:58Z,- roslynwythe closed issue by PR 4022: [3929](https://github.com/hackforla/website/issues/3929#event-8588903254) at 2023-02-23 12:21 AM PST -roslynwythe,2023-02-23T09:08:43Z,- roslynwythe commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1441412887) at 2023-02-23 01:08 AM PST -roslynwythe,2023-02-23T09:11:53Z,- roslynwythe commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1441416614) at 2023-02-23 01:11 AM PST -roslynwythe,2023-02-24T17:47:38Z,- roslynwythe commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1444126301) at 2023-02-24 09:47 AM PST -roslynwythe,2023-02-24T18:56:07Z,- roslynwythe opened issue: [4035](https://github.com/hackforla/website/issues/4035) at 2023-02-24 10:56 AM PST -roslynwythe,2023-02-24T19:42:25Z,- roslynwythe submitted pull request review: [4027](https://github.com/hackforla/website/pull/4027#pullrequestreview-1314155861) at 2023-02-24 11:42 AM PST -roslynwythe,2023-02-24T20:48:43Z,- roslynwythe commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1444458687) at 2023-02-24 12:48 PM PST -roslynwythe,2023-02-27T23:08:16Z,- roslynwythe commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1447253718) at 2023-02-27 03:08 PM PST -roslynwythe,2023-02-28T03:41:29Z,- roslynwythe commented on pull request: [4039](https://github.com/hackforla/website/pull/4039#issuecomment-1447526586) at 2023-02-27 07:41 PM PST -roslynwythe,2023-02-28T08:01:00Z,- roslynwythe submitted pull request review: [4039](https://github.com/hackforla/website/pull/4039#pullrequestreview-1316971334) at 2023-02-28 12:01 AM PST -roslynwythe,2023-03-01T21:12:04Z,- roslynwythe commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1450854509) at 2023-03-01 01:12 PM PST -roslynwythe,2023-03-02T04:05:17Z,- roslynwythe submitted pull request review: [4076](https://github.com/hackforla/website/pull/4076#pullrequestreview-1321003039) at 2023-03-01 08:05 PM PST -roslynwythe,2023-03-02T04:19:37Z,- roslynwythe commented on pull request: [4086](https://github.com/hackforla/website/pull/4086#issuecomment-1451278907) at 2023-03-01 08:19 PM PST -roslynwythe,2023-03-02T04:50:27Z,- roslynwythe submitted pull request review: [4086](https://github.com/hackforla/website/pull/4086#pullrequestreview-1321028824) at 2023-03-01 08:50 PM PST -roslynwythe,2023-03-02T05:34:02Z,- roslynwythe submitted pull request review: [4079](https://github.com/hackforla/website/pull/4079#pullrequestreview-1321059700) at 2023-03-01 09:34 PM PST -roslynwythe,2023-03-02T05:43:22Z,- roslynwythe commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1451331120) at 2023-03-01 09:43 PM PST -roslynwythe,2023-03-02T06:08:57Z,- roslynwythe commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1451350863) at 2023-03-01 10:08 PM PST -roslynwythe,2023-03-02T06:45:14Z,- roslynwythe commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1451377431) at 2023-03-01 10:45 PM PST -roslynwythe,2023-03-02T06:53:05Z,- roslynwythe commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1451383057) at 2023-03-01 10:53 PM PST -roslynwythe,2023-03-02T07:02:20Z,- roslynwythe submitted pull request review: [4058](https://github.com/hackforla/website/pull/4058#pullrequestreview-1321135389) at 2023-03-01 11:02 PM PST -roslynwythe,2023-03-02T07:22:18Z,- roslynwythe commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1451406549) at 2023-03-01 11:22 PM PST -roslynwythe,2023-03-02T07:22:37Z,- roslynwythe closed issue by PR 4058: [4025](https://github.com/hackforla/website/issues/4025#event-8646042572) at 2023-03-01 11:22 PM PST -roslynwythe,2023-03-02T08:15:00Z,- roslynwythe unassigned from issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1447443213) at 2023-03-02 12:15 AM PST -roslynwythe,2023-03-02T08:23:42Z,- roslynwythe opened issue: [4088](https://github.com/hackforla/website/issues/4088) at 2023-03-02 12:23 AM PST -roslynwythe,2023-03-02T08:23:43Z,- roslynwythe assigned to issue: [4088](https://github.com/hackforla/website/issues/4088) at 2023-03-02 12:23 AM PST -roslynwythe,2023-03-03T08:23:18Z,- roslynwythe submitted pull request review: [4076](https://github.com/hackforla/website/pull/4076#pullrequestreview-1323284442) at 2023-03-03 12:23 AM PST -roslynwythe,2023-03-04T01:08:44Z,- roslynwythe commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1454313732) at 2023-03-03 05:08 PM PST -roslynwythe,2023-03-05T06:07:12Z,- roslynwythe closed issue by PR 4076: [3960](https://github.com/hackforla/website/issues/3960#event-8667392052) at 2023-03-04 10:07 PM PST -roslynwythe,2023-03-05T06:41:07Z,- roslynwythe opened issue: [4112](https://github.com/hackforla/website/issues/4112) at 2023-03-04 10:41 PM PST -roslynwythe,2023-03-05T07:18:20Z,- roslynwythe opened issue: [4113](https://github.com/hackforla/website/issues/4113) at 2023-03-04 11:18 PM PST -roslynwythe,2023-03-05T21:26:25Z,- roslynwythe unassigned from issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1451475201) at 2023-03-05 01:26 PM PST -roslynwythe,2023-03-06T01:48:31Z,- roslynwythe commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1455306310) at 2023-03-05 05:48 PM PST -roslynwythe,2023-03-06T01:53:11Z,- roslynwythe commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1455308944) at 2023-03-05 05:53 PM PST -roslynwythe,2023-03-06T03:17:10Z,- roslynwythe commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-1455378297) at 2023-03-05 07:17 PM PST -roslynwythe,2023-03-08T07:03:14Z,- roslynwythe opened issue: [4132](https://github.com/hackforla/website/issues/4132) at 2023-03-07 11:03 PM PST -roslynwythe,2023-03-08T09:33:17Z,- roslynwythe opened issue: [4134](https://github.com/hackforla/website/issues/4134) at 2023-03-08 01:33 AM PST -roslynwythe,2023-03-08T09:37:29Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1459870066) at 2023-03-08 01:37 AM PST -roslynwythe,2023-03-09T05:48:03Z,- roslynwythe commented on pull request: [4137](https://github.com/hackforla/website/pull/4137#issuecomment-1461325238) at 2023-03-08 09:48 PM PST -roslynwythe,2023-03-09T06:20:15Z,- roslynwythe submitted pull request review: [4137](https://github.com/hackforla/website/pull/4137#pullrequestreview-1332078556) at 2023-03-08 10:20 PM PST -roslynwythe,2023-03-09T08:54:58Z,- roslynwythe commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1461594455) at 2023-03-09 12:54 AM PST -roslynwythe,2023-03-09T09:05:09Z,- roslynwythe submitted pull request review: [4140](https://github.com/hackforla/website/pull/4140#pullrequestreview-1332296212) at 2023-03-09 01:05 AM PST -roslynwythe,2023-03-09T09:34:00Z,- roslynwythe submitted pull request review: [4123](https://github.com/hackforla/website/pull/4123#pullrequestreview-1332348145) at 2023-03-09 01:34 AM PST -roslynwythe,2023-03-12T05:31:01Z,- roslynwythe commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1465096935) at 2023-03-11 10:31 PM PDT -roslynwythe,2023-03-12T05:39:52Z,- roslynwythe submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1335967225) at 2023-03-11 10:39 PM PDT -roslynwythe,2023-03-12T05:41:19Z,- roslynwythe commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1465098108) at 2023-03-11 10:41 PM PDT -roslynwythe,2023-03-12T10:08:40Z,- roslynwythe submitted pull request review: [4108](https://github.com/hackforla/website/pull/4108#pullrequestreview-1335996666) at 2023-03-12 03:08 AM PDT -roslynwythe,2023-03-12T17:00:03Z,- roslynwythe commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1465248028) at 2023-03-12 10:00 AM PDT -roslynwythe,2023-03-12T17:31:07Z,- roslynwythe commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1465254649) at 2023-03-12 10:31 AM PDT -roslynwythe,2023-03-12T17:33:17Z,- roslynwythe submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1336060157) at 2023-03-12 10:33 AM PDT -roslynwythe,2023-03-12T23:57:58Z,- roslynwythe opened issue: [4154](https://github.com/hackforla/website/issues/4154) at 2023-03-12 04:57 PM PDT -roslynwythe,2023-03-13T00:39:19Z,- roslynwythe submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1336117417) at 2023-03-12 05:39 PM PDT -roslynwythe,2023-03-13T17:14:33Z,- roslynwythe submitted pull request review: [4148](https://github.com/hackforla/website/pull/4148#pullrequestreview-1337568818) at 2023-03-13 10:14 AM PDT -roslynwythe,2023-03-14T01:55:40Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1467225261) at 2023-03-13 06:55 PM PDT -roslynwythe,2023-03-14T03:23:19Z,- roslynwythe assigned to issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1467281723) at 2023-03-13 08:23 PM PDT -roslynwythe,2023-03-14T03:25:56Z,- roslynwythe unassigned from issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1467281723) at 2023-03-13 08:25 PM PDT -roslynwythe,2023-03-14T09:14:31Z,- roslynwythe commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-1467696946) at 2023-03-14 02:14 AM PDT -roslynwythe,2023-03-14T19:48:37Z,- roslynwythe commented on issue: [3974](https://github.com/hackforla/website/issues/3974#issuecomment-1468728128) at 2023-03-14 12:48 PM PDT -roslynwythe,2023-03-14T19:48:37Z,- roslynwythe closed issue as completed: [3974](https://github.com/hackforla/website/issues/3974#event-8747895209) at 2023-03-14 12:48 PM PDT -roslynwythe,2023-03-14T23:02:31Z,- roslynwythe submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1340409407) at 2023-03-14 04:02 PM PDT -roslynwythe,2023-03-14T23:03:33Z,- roslynwythe closed issue by PR 4131: [3720](https://github.com/hackforla/website/issues/3720#event-8749269118) at 2023-03-14 04:03 PM PDT -roslynwythe,2023-03-15T01:35:17Z,- roslynwythe commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1469138928) at 2023-03-14 06:35 PM PDT -roslynwythe,2023-03-16T04:10:33Z,- roslynwythe commented on pull request: [4194](https://github.com/hackforla/website/pull/4194#issuecomment-1471276828) at 2023-03-15 09:10 PM PDT -roslynwythe,2023-03-16T04:13:18Z,- roslynwythe commented on pull request: [4194](https://github.com/hackforla/website/pull/4194#issuecomment-1471278830) at 2023-03-15 09:13 PM PDT -roslynwythe,2023-03-16T04:16:04Z,- roslynwythe commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1471280435) at 2023-03-15 09:16 PM PDT -roslynwythe,2023-03-16T04:20:59Z,- roslynwythe commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1471283643) at 2023-03-15 09:20 PM PDT -roslynwythe,2023-03-16T04:22:46Z,- roslynwythe closed issue by PR 4179: [4000](https://github.com/hackforla/website/issues/4000#event-8762721485) at 2023-03-15 09:22 PM PDT -roslynwythe,2023-03-16T05:14:09Z,- roslynwythe commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1471330424) at 2023-03-15 10:14 PM PDT -roslynwythe,2023-03-16T18:59:43Z,- roslynwythe submitted pull request review: [4108](https://github.com/hackforla/website/pull/4108#pullrequestreview-1344532477) at 2023-03-16 11:59 AM PDT -roslynwythe,2023-03-16T19:00:16Z,- roslynwythe closed issue by PR 4108: [3973](https://github.com/hackforla/website/issues/3973#event-8771055561) at 2023-03-16 12:00 PM PDT -roslynwythe,2023-03-16T19:19:36Z,- roslynwythe submitted pull request review: [4148](https://github.com/hackforla/website/pull/4148#pullrequestreview-1344562214) at 2023-03-16 12:19 PM PDT -roslynwythe,2023-03-16T19:20:22Z,- roslynwythe closed issue by PR 4148: [4138](https://github.com/hackforla/website/issues/4138#event-8771258512) at 2023-03-16 12:20 PM PDT -roslynwythe,2023-03-16T19:25:16Z,- roslynwythe commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1472620238) at 2023-03-16 12:25 PM PDT -roslynwythe,2023-03-19T05:03:02Z,- roslynwythe commented on pull request: [4210](https://github.com/hackforla/website/pull/4210#issuecomment-1475105797) at 2023-03-18 10:03 PM PDT -roslynwythe,2023-03-19T09:03:24Z,- roslynwythe submitted pull request review: [4210](https://github.com/hackforla/website/pull/4210#pullrequestreview-1347405570) at 2023-03-19 02:03 AM PDT -roslynwythe,2023-03-19T09:19:12Z,- roslynwythe commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1475165398) at 2023-03-19 02:19 AM PDT -roslynwythe,2023-03-19T17:00:58Z,- roslynwythe commented on pull request: [4198](https://github.com/hackforla/website/pull/4198#issuecomment-1475321875) at 2023-03-19 10:00 AM PDT -roslynwythe,2023-03-19T23:14:45Z,- roslynwythe submitted pull request review: [4198](https://github.com/hackforla/website/pull/4198#pullrequestreview-1347600895) at 2023-03-19 04:14 PM PDT -roslynwythe,2023-03-19T23:15:10Z,- roslynwythe closed issue by PR 4198: [4112](https://github.com/hackforla/website/issues/4112#event-8788931315) at 2023-03-19 04:15 PM PDT -roslynwythe,2023-03-19T23:21:00Z,- roslynwythe assigned to issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1457325557) at 2023-03-19 04:21 PM PDT -roslynwythe,2023-03-19T23:21:49Z,- roslynwythe commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1475432128) at 2023-03-19 04:21 PM PDT -roslynwythe,2023-03-19T23:41:19Z,- roslynwythe commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475436863) at 2023-03-19 04:41 PM PDT -roslynwythe,2023-03-20T06:57:07Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1347894516) at 2023-03-19 11:57 PM PDT -roslynwythe,2023-03-21T07:29:44Z,- roslynwythe commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1477383848) at 2023-03-21 12:29 AM PDT -roslynwythe,2023-03-21T08:39:33Z,- roslynwythe opened pull request: [4223](https://github.com/hackforla/website/pull/4223) at 2023-03-21 01:39 AM PDT -roslynwythe,2023-03-21T23:22:58Z,- roslynwythe opened issue: [4227](https://github.com/hackforla/website/issues/4227) at 2023-03-21 04:22 PM PDT -roslynwythe,2023-03-22T07:20:44Z,- roslynwythe commented on pull request: [4223](https://github.com/hackforla/website/pull/4223#issuecomment-1479028904) at 2023-03-22 12:20 AM PDT -roslynwythe,2023-03-22T08:46:38Z,- roslynwythe opened issue: [4238](https://github.com/hackforla/website/issues/4238) at 2023-03-22 01:46 AM PDT -roslynwythe,2023-03-22T09:06:26Z,- roslynwythe opened issue: [4239](https://github.com/hackforla/website/issues/4239) at 2023-03-22 02:06 AM PDT -roslynwythe,2023-03-22T09:08:47Z,- roslynwythe commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1479158412) at 2023-03-22 02:08 AM PDT -roslynwythe,2023-03-22T19:54:30Z,- roslynwythe commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1480177003) at 2023-03-22 12:54 PM PDT -roslynwythe,2023-03-22T20:13:30Z,- roslynwythe commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1480202423) at 2023-03-22 01:13 PM PDT -roslynwythe,2023-03-22T21:01:05Z,- roslynwythe commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1480253972) at 2023-03-22 02:01 PM PDT -roslynwythe,2023-03-23T06:40:42Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1353939028) at 2023-03-22 11:40 PM PDT -roslynwythe,2023-03-23T06:47:55Z,- roslynwythe commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1480680832) at 2023-03-22 11:47 PM PDT -roslynwythe,2023-03-23T18:29:20Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1355309540) at 2023-03-23 11:29 AM PDT -roslynwythe,2023-03-23T18:52:53Z,- roslynwythe opened issue: [4263](https://github.com/hackforla/website/issues/4263) at 2023-03-23 11:52 AM PDT -roslynwythe,2023-03-23T19:08:21Z,- roslynwythe commented on issue: [4241](https://github.com/hackforla/website/issues/4241#issuecomment-1481750442) at 2023-03-23 12:08 PM PDT -roslynwythe,2023-03-24T08:29:57Z,- roslynwythe commented on pull request: [4223](https://github.com/hackforla/website/pull/4223#issuecomment-1482429561) at 2023-03-24 01:29 AM PDT -roslynwythe,2023-03-24T18:21:51Z,- roslynwythe commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1483233799) at 2023-03-24 11:21 AM PDT -roslynwythe,2023-03-25T00:17:25Z,- roslynwythe commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1483623384) at 2023-03-24 05:17 PM PDT -roslynwythe,2023-03-26T09:32:43Z,- roslynwythe opened issue: [4291](https://github.com/hackforla/website/issues/4291) at 2023-03-26 02:32 AM PDT -roslynwythe,2023-03-26T09:50:10Z,- roslynwythe commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1484047026) at 2023-03-26 02:50 AM PDT -roslynwythe,2023-03-26T19:13:51Z,- roslynwythe pull request merged: [4223](https://github.com/hackforla/website/pull/4223#event-8847903739) at 2023-03-26 12:13 PM PDT -roslynwythe,2023-03-27T00:12:33Z,- roslynwythe commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1484286638) at 2023-03-26 05:12 PM PDT -roslynwythe,2023-03-27T08:32:45Z,- roslynwythe commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1484728372) at 2023-03-27 01:32 AM PDT -roslynwythe,2023-03-27T08:37:22Z,- roslynwythe commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1484735415) at 2023-03-27 01:37 AM PDT -roslynwythe,2023-03-27T17:01:20Z,- roslynwythe commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1485512594) at 2023-03-27 10:01 AM PDT -roslynwythe,2023-03-27T18:50:16Z,- roslynwythe submitted pull request review: [4270](https://github.com/hackforla/website/pull/4270#pullrequestreview-1359690344) at 2023-03-27 11:50 AM PDT -roslynwythe,2023-03-27T19:24:32Z,- roslynwythe closed issue by PR 4270: [4120](https://github.com/hackforla/website/issues/4120#event-8857679214) at 2023-03-27 12:24 PM PDT -roslynwythe,2023-03-28T01:43:30Z,- roslynwythe submitted pull request review: [4280](https://github.com/hackforla/website/pull/4280#pullrequestreview-1360083201) at 2023-03-27 06:43 PM PDT -roslynwythe,2023-03-28T08:37:01Z,- roslynwythe opened issue: [4299](https://github.com/hackforla/website/issues/4299) at 2023-03-28 01:37 AM PDT -roslynwythe,2023-03-28T08:37:02Z,- roslynwythe assigned to issue: [4299](https://github.com/hackforla/website/issues/4299) at 2023-03-28 01:37 AM PDT -roslynwythe,2023-03-28T08:54:22Z,- roslynwythe opened issue: [4300](https://github.com/hackforla/website/issues/4300) at 2023-03-28 01:54 AM PDT -roslynwythe,2023-03-28T08:54:23Z,- roslynwythe assigned to issue: [4300](https://github.com/hackforla/website/issues/4300) at 2023-03-28 01:54 AM PDT -roslynwythe,2023-03-28T09:04:02Z,- roslynwythe opened issue: [4301](https://github.com/hackforla/website/issues/4301) at 2023-03-28 02:04 AM PDT -roslynwythe,2023-03-28T09:04:54Z,- roslynwythe assigned to issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1486483469) at 2023-03-28 02:04 AM PDT -roslynwythe,2023-03-28T09:37:13Z,- roslynwythe opened issue: [4302](https://github.com/hackforla/website/issues/4302) at 2023-03-28 02:37 AM PDT -roslynwythe,2023-03-28T09:37:15Z,- roslynwythe assigned to issue: [4302](https://github.com/hackforla/website/issues/4302) at 2023-03-28 02:37 AM PDT -roslynwythe,2023-03-28T16:56:57Z,- roslynwythe unassigned from issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1486531673) at 2023-03-28 09:56 AM PDT -roslynwythe,2023-03-28T17:42:09Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1487348082) at 2023-03-28 10:42 AM PDT -roslynwythe,2023-03-28T17:43:41Z,- roslynwythe opened issue: [4303](https://github.com/hackforla/website/issues/4303) at 2023-03-28 10:43 AM PDT -roslynwythe,2023-03-29T01:45:16Z,- roslynwythe commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1487830927) at 2023-03-28 06:45 PM PDT -roslynwythe,2023-03-29T01:54:32Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1487836102) at 2023-03-28 06:54 PM PDT -roslynwythe,2023-03-29T19:48:58Z,- roslynwythe commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1489206221) at 2023-03-29 12:48 PM PDT -roslynwythe,2023-03-30T05:27:19Z,- roslynwythe commented on pull request: [4341](https://github.com/hackforla/website/pull/4341#issuecomment-1489721642) at 2023-03-29 10:27 PM PDT -roslynwythe,2023-03-30T07:01:54Z,- roslynwythe submitted pull request review: [4341](https://github.com/hackforla/website/pull/4341#pullrequestreview-1364449853) at 2023-03-30 12:01 AM PDT -roslynwythe,2023-03-30T07:02:07Z,- roslynwythe closed issue by PR 4341: [4291](https://github.com/hackforla/website/issues/4291#event-8883853871) at 2023-03-30 12:02 AM PDT -roslynwythe,2023-03-30T07:08:36Z,- roslynwythe commented on pull request: [4308](https://github.com/hackforla/website/pull/4308#issuecomment-1489803889) at 2023-03-30 12:08 AM PDT -roslynwythe,2023-03-30T09:20:11Z,- roslynwythe submitted pull request review: [4280](https://github.com/hackforla/website/pull/4280#pullrequestreview-1364690730) at 2023-03-30 02:20 AM PDT -roslynwythe,2023-03-30T23:20:24Z,- roslynwythe commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1491087459) at 2023-03-30 04:20 PM PDT -roslynwythe,2023-03-31T08:40:26Z,- roslynwythe opened issue: [4354](https://github.com/hackforla/website/issues/4354) at 2023-03-31 01:40 AM PDT -roslynwythe,2023-04-01T00:06:17Z,- roslynwythe assigned to issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1480409416) at 2023-03-31 05:06 PM PDT -roslynwythe,2023-04-02T05:38:25Z,- roslynwythe commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1493229249) at 2023-04-01 10:38 PM PDT -roslynwythe,2023-04-02T05:41:26Z,- roslynwythe assigned to issue: [4282](https://github.com/hackforla/website/issues/4282) at 2023-04-01 10:41 PM PDT -roslynwythe,2023-04-02T06:55:15Z,- roslynwythe commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1493248406) at 2023-04-01 11:55 PM PDT -roslynwythe,2023-04-02T07:34:52Z,- roslynwythe commented on pull request: [4365](https://github.com/hackforla/website/pull/4365#issuecomment-1493255256) at 2023-04-02 12:34 AM PDT -roslynwythe,2023-04-02T07:36:02Z,- roslynwythe commented on pull request: [4359](https://github.com/hackforla/website/pull/4359#issuecomment-1493255412) at 2023-04-02 12:36 AM PDT -roslynwythe,2023-04-03T03:46:15Z,- roslynwythe commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1493599418) at 2023-04-02 08:46 PM PDT -roslynwythe,2023-04-03T05:24:34Z,- roslynwythe commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1493683729) at 2023-04-02 10:24 PM PDT -roslynwythe,2023-04-03T07:34:36Z,- roslynwythe submitted pull request review: [4365](https://github.com/hackforla/website/pull/4365#pullrequestreview-1368446504) at 2023-04-03 12:34 AM PDT -roslynwythe,2023-04-03T08:45:28Z,- roslynwythe assigned to issue: [4368](https://github.com/hackforla/website/issues/4368) at 2023-04-03 01:45 AM PDT -roslynwythe,2023-04-04T06:39:56Z,- roslynwythe commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1495429444) at 2023-04-03 11:39 PM PDT -roslynwythe,2023-04-04T08:00:29Z,- roslynwythe opened issue: [4405](https://github.com/hackforla/website/issues/4405) at 2023-04-04 01:00 AM PDT -roslynwythe,2023-04-04T08:00:30Z,- roslynwythe assigned to issue: [4405](https://github.com/hackforla/website/issues/4405) at 2023-04-04 01:00 AM PDT -roslynwythe,2023-04-04T18:24:41Z,- roslynwythe commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1496411104) at 2023-04-04 11:24 AM PDT -roslynwythe,2023-04-04T18:29:20Z,- roslynwythe commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1496417316) at 2023-04-04 11:29 AM PDT -roslynwythe,2023-04-04T19:55:13Z,- roslynwythe commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1496515340) at 2023-04-04 12:55 PM PDT -roslynwythe,2023-04-04T19:55:14Z,- roslynwythe closed issue as completed: [4185](https://github.com/hackforla/website/issues/4185#event-8928258374) at 2023-04-04 12:55 PM PDT -roslynwythe,2023-04-04T20:12:48Z,- roslynwythe commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1496543242) at 2023-04-04 01:12 PM PDT -roslynwythe,2023-04-04T20:12:48Z,- roslynwythe closed issue as completed: [3830](https://github.com/hackforla/website/issues/3830#event-8928409357) at 2023-04-04 01:12 PM PDT -roslynwythe,2023-04-04T20:13:28Z,- roslynwythe commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1496544824) at 2023-04-04 01:13 PM PDT -roslynwythe,2023-04-04T20:13:28Z,- roslynwythe closed issue as completed: [3910](https://github.com/hackforla/website/issues/3910#event-8928414319) at 2023-04-04 01:13 PM PDT -roslynwythe,2023-04-04T20:14:14Z,- roslynwythe commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1496546286) at 2023-04-04 01:14 PM PDT -roslynwythe,2023-04-04T20:14:14Z,- roslynwythe closed issue as completed: [3981](https://github.com/hackforla/website/issues/3981#event-8928419685) at 2023-04-04 01:14 PM PDT -roslynwythe,2023-04-04T20:14:47Z,- roslynwythe commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1496547466) at 2023-04-04 01:14 PM PDT -roslynwythe,2023-04-04T20:14:47Z,- roslynwythe closed issue as completed: [4060](https://github.com/hackforla/website/issues/4060#event-8928424107) at 2023-04-04 01:14 PM PDT -roslynwythe,2023-04-04T20:17:54Z,- roslynwythe commented on issue: [4160](https://github.com/hackforla/website/issues/4160#issuecomment-1496551046) at 2023-04-04 01:17 PM PDT -roslynwythe,2023-04-04T20:17:54Z,- roslynwythe closed issue as completed: [4160](https://github.com/hackforla/website/issues/4160#event-8928448804) at 2023-04-04 01:17 PM PDT -roslynwythe,2023-04-04T20:18:50Z,- roslynwythe commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1496552048) at 2023-04-04 01:18 PM PDT -roslynwythe,2023-04-04T20:22:43Z,- roslynwythe commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1496556211) at 2023-04-04 01:22 PM PDT -roslynwythe,2023-04-04T20:25:19Z,- roslynwythe commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1496558930) at 2023-04-04 01:25 PM PDT -roslynwythe,2023-04-04T21:18:07Z,- roslynwythe opened issue: [4409](https://github.com/hackforla/website/issues/4409) at 2023-04-04 02:18 PM PDT -roslynwythe,2023-04-04T21:18:15Z,- roslynwythe assigned to issue: [4409](https://github.com/hackforla/website/issues/4409) at 2023-04-04 02:18 PM PDT -roslynwythe,2023-04-04T22:24:27Z,- roslynwythe commented on issue: [3746](https://github.com/hackforla/website/issues/3746#issuecomment-1496677517) at 2023-04-04 03:24 PM PDT -roslynwythe,2023-04-04T22:37:52Z,- roslynwythe opened issue: [4410](https://github.com/hackforla/website/issues/4410) at 2023-04-04 03:37 PM PDT -roslynwythe,2023-04-04T22:37:53Z,- roslynwythe assigned to issue: [4410](https://github.com/hackforla/website/issues/4410) at 2023-04-04 03:37 PM PDT -roslynwythe,2023-04-05T06:21:57Z,- roslynwythe commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1496978626) at 2023-04-04 11:21 PM PDT -roslynwythe,2023-04-05T08:30:46Z,- roslynwythe submitted pull request review: [4359](https://github.com/hackforla/website/pull/4359#pullrequestreview-1372416637) at 2023-04-05 01:30 AM PDT -roslynwythe,2023-04-05T08:32:01Z,- roslynwythe closed issue by PR 4359: [4113](https://github.com/hackforla/website/issues/4113#event-8932458677) at 2023-04-05 01:32 AM PDT -roslynwythe,2023-04-05T08:53:33Z,- roslynwythe commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1497144298) at 2023-04-05 01:53 AM PDT -roslynwythe,2023-04-06T16:00:27Z,- roslynwythe assigned to issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1499293575) at 2023-04-06 09:00 AM PDT -roslynwythe,2023-04-06T16:20:52Z,- roslynwythe submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1375203633) at 2023-04-06 09:20 AM PDT -roslynwythe,2023-04-06T17:38:07Z,- roslynwythe submitted pull request review: [4280](https://github.com/hackforla/website/pull/4280#pullrequestreview-1375311046) at 2023-04-06 10:38 AM PDT -roslynwythe,2023-04-06T17:41:35Z,- roslynwythe commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1499409868) at 2023-04-06 10:41 AM PDT -roslynwythe,2023-04-06T21:28:45Z,- roslynwythe commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499650978) at 2023-04-06 02:28 PM PDT -roslynwythe,2023-04-07T07:42:40Z,- roslynwythe opened issue: [4439](https://github.com/hackforla/website/issues/4439) at 2023-04-07 12:42 AM PDT -roslynwythe,2023-04-07T07:42:47Z,- roslynwythe assigned to issue: [4439](https://github.com/hackforla/website/issues/4439) at 2023-04-07 12:42 AM PDT -roslynwythe,2023-04-07T08:08:09Z,- roslynwythe assigned to issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1496461466) at 2023-04-07 01:08 AM PDT -roslynwythe,2023-04-07T08:16:23Z,- roslynwythe commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1500059143) at 2023-04-07 01:16 AM PDT -roslynwythe,2023-04-07T09:11:35Z,- roslynwythe opened issue: [4440](https://github.com/hackforla/website/issues/4440) at 2023-04-07 02:11 AM PDT -roslynwythe,2023-04-07T09:11:36Z,- roslynwythe assigned to issue: [4440](https://github.com/hackforla/website/issues/4440) at 2023-04-07 02:11 AM PDT -roslynwythe,2023-04-07T23:39:49Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1376666115) at 2023-04-07 04:39 PM PDT -roslynwythe,2023-04-07T23:44:32Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1376667279) at 2023-04-07 04:44 PM PDT -roslynwythe,2023-04-08T00:20:50Z,- roslynwythe closed issue by PR 4280: [3744](https://github.com/hackforla/website/issues/3744#event-8956718228) at 2023-04-07 05:20 PM PDT -roslynwythe,2023-04-10T16:53:52Z,- roslynwythe opened issue: [4454](https://github.com/hackforla/website/issues/4454) at 2023-04-10 09:53 AM PDT -roslynwythe,2023-04-10T16:53:53Z,- roslynwythe assigned to issue: [4454](https://github.com/hackforla/website/issues/4454) at 2023-04-10 09:53 AM PDT -roslynwythe,2023-04-10T16:59:27Z,- roslynwythe opened issue: [4455](https://github.com/hackforla/website/issues/4455) at 2023-04-10 09:59 AM PDT -roslynwythe,2023-04-10T17:06:23Z,- roslynwythe assigned to issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1502058701) at 2023-04-10 10:06 AM PDT -roslynwythe,2023-04-10T17:14:35Z,- roslynwythe opened issue: [4456](https://github.com/hackforla/website/issues/4456) at 2023-04-10 10:14 AM PDT -roslynwythe,2023-04-10T17:14:36Z,- roslynwythe assigned to issue: [4456](https://github.com/hackforla/website/issues/4456) at 2023-04-10 10:14 AM PDT -roslynwythe,2023-04-10T17:58:02Z,- roslynwythe opened issue: [4457](https://github.com/hackforla/website/issues/4457) at 2023-04-10 10:58 AM PDT -roslynwythe,2023-04-10T17:58:03Z,- roslynwythe assigned to issue: [4457](https://github.com/hackforla/website/issues/4457) at 2023-04-10 10:58 AM PDT -roslynwythe,2023-04-11T06:35:29Z,- roslynwythe unassigned from issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1496618836) at 2023-04-10 11:35 PM PDT -roslynwythe,2023-04-11T07:16:29Z,- roslynwythe submitted pull request review: [4465](https://github.com/hackforla/website/pull/4465#pullrequestreview-1378589529) at 2023-04-11 12:16 AM PDT -roslynwythe,2023-04-11T08:05:07Z,- roslynwythe closed issue by PR 4443: [4254](https://github.com/hackforla/website/issues/4254#event-8970541010) at 2023-04-11 01:05 AM PDT -roslynwythe,2023-04-11T17:01:49Z,- roslynwythe opened issue: [4466](https://github.com/hackforla/website/issues/4466) at 2023-04-11 10:01 AM PDT -roslynwythe,2023-04-11T17:01:49Z,- roslynwythe assigned to issue: [4466](https://github.com/hackforla/website/issues/4466) at 2023-04-11 10:01 AM PDT -roslynwythe,2023-04-11T17:15:22Z,- roslynwythe assigned to issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1496697827) at 2023-04-11 10:15 AM PDT -roslynwythe,2023-04-11T17:17:12Z,- roslynwythe commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1503800511) at 2023-04-11 10:17 AM PDT -roslynwythe,2023-04-11T18:54:21Z,- roslynwythe submitted pull request review: [4465](https://github.com/hackforla/website/pull/4465#pullrequestreview-1379890381) at 2023-04-11 11:54 AM PDT -roslynwythe,2023-04-12T01:12:52Z,- roslynwythe closed issue by PR 4444: [4351](https://github.com/hackforla/website/issues/4351#event-8979551029) at 2023-04-11 06:12 PM PDT -roslynwythe,2023-04-12T02:26:59Z,- roslynwythe submitted pull request review: [4464](https://github.com/hackforla/website/pull/4464#pullrequestreview-1380336337) at 2023-04-11 07:26 PM PDT -roslynwythe,2023-04-12T02:27:28Z,- roslynwythe submitted pull request review: [4463](https://github.com/hackforla/website/pull/4463#pullrequestreview-1380336693) at 2023-04-11 07:27 PM PDT -roslynwythe,2023-04-12T02:28:10Z,- roslynwythe submitted pull request review: [4463](https://github.com/hackforla/website/pull/4463#pullrequestreview-1380337191) at 2023-04-11 07:28 PM PDT -roslynwythe,2023-04-12T03:25:32Z,- roslynwythe opened issue: [4491](https://github.com/hackforla/website/issues/4491) at 2023-04-11 08:25 PM PDT -roslynwythe,2023-04-12T03:38:24Z,- roslynwythe submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1380406004) at 2023-04-11 08:38 PM PDT -roslynwythe,2023-04-12T03:50:46Z,- roslynwythe closed issue by PR 4309: [4239](https://github.com/hackforla/website/issues/4239#event-8980569586) at 2023-04-11 08:50 PM PDT -roslynwythe,2023-04-12T06:58:04Z,- roslynwythe opened issue: [4492](https://github.com/hackforla/website/issues/4492) at 2023-04-11 11:58 PM PDT -roslynwythe,2023-04-12T06:58:05Z,- roslynwythe assigned to issue: [4492](https://github.com/hackforla/website/issues/4492) at 2023-04-11 11:58 PM PDT -roslynwythe,2023-04-13T10:02:00Z,- roslynwythe commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1506692984) at 2023-04-13 03:02 AM PDT -roslynwythe,2023-04-13T18:09:19Z,- roslynwythe commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1507408317) at 2023-04-13 11:09 AM PDT -roslynwythe,2023-04-13T23:06:47Z,- roslynwythe submitted pull request review: [4462](https://github.com/hackforla/website/pull/4462#pullrequestreview-1384360322) at 2023-04-13 04:06 PM PDT -roslynwythe,2023-04-13T23:12:08Z,- roslynwythe opened issue: [4504](https://github.com/hackforla/website/issues/4504) at 2023-04-13 04:12 PM PDT -roslynwythe,2023-04-14T00:31:09Z,- roslynwythe opened issue: [4507](https://github.com/hackforla/website/issues/4507) at 2023-04-13 05:31 PM PDT -roslynwythe,2023-04-14T02:43:42Z,- roslynwythe opened issue: [4512](https://github.com/hackforla/website/issues/4512) at 2023-04-13 07:43 PM PDT -roslynwythe,2023-04-14T02:44:01Z,- roslynwythe assigned to issue: [4512](https://github.com/hackforla/website/issues/4512#issuecomment-1507852068) at 2023-04-13 07:44 PM PDT -roslynwythe,2023-04-14T05:25:25Z,- roslynwythe opened issue: [4513](https://github.com/hackforla/website/issues/4513) at 2023-04-13 10:25 PM PDT -roslynwythe,2023-04-14T07:43:09Z,- roslynwythe opened issue: [4514](https://github.com/hackforla/website/issues/4514) at 2023-04-14 12:43 AM PDT -roslynwythe,2023-04-14T08:39:42Z,- roslynwythe assigned to issue: [4514](https://github.com/hackforla/website/issues/4514) at 2023-04-14 01:39 AM PDT -roslynwythe,2023-04-14T08:41:55Z,- roslynwythe commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1508151951) at 2023-04-14 01:41 AM PDT -roslynwythe,2023-04-14T08:48:32Z,- roslynwythe assigned to issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1507898629) at 2023-04-14 01:48 AM PDT -roslynwythe,2023-04-14T08:48:39Z,- roslynwythe commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1508161430) at 2023-04-14 01:48 AM PDT -roslynwythe,2023-04-14T18:56:16Z,- roslynwythe commented on issue: [4394](https://github.com/hackforla/website/issues/4394#issuecomment-1509086296) at 2023-04-14 11:56 AM PDT -roslynwythe,2023-04-14T23:36:11Z,- roslynwythe assigned to issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1507766809) at 2023-04-14 04:36 PM PDT -roslynwythe,2023-04-16T06:41:51Z,- roslynwythe submitted pull request review: [4521](https://github.com/hackforla/website/pull/4521#pullrequestreview-1386707966) at 2023-04-15 11:41 PM PDT -roslynwythe,2023-04-16T06:47:23Z,- roslynwythe commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1510118667) at 2023-04-15 11:47 PM PDT -roslynwythe,2023-04-16T07:07:33Z,- roslynwythe closed issue by PR 4516: [4257](https://github.com/hackforla/website/issues/4257#event-9015904898) at 2023-04-16 12:07 AM PDT -roslynwythe,2023-04-16T07:14:40Z,- roslynwythe commented on pull request: [4515](https://github.com/hackforla/website/pull/4515#issuecomment-1510136264) at 2023-04-16 12:14 AM PDT -roslynwythe,2023-04-16T07:16:36Z,- roslynwythe closed issue by PR 4501: [4392](https://github.com/hackforla/website/issues/4392#event-9015928462) at 2023-04-16 12:16 AM PDT -roslynwythe,2023-04-16T07:58:09Z,- roslynwythe submitted pull request review: [4520](https://github.com/hackforla/website/pull/4520#pullrequestreview-1386735460) at 2023-04-16 12:58 AM PDT -roslynwythe,2023-04-16T19:06:39Z,- roslynwythe commented on issue: [4445](https://github.com/hackforla/website/issues/4445#issuecomment-1510461111) at 2023-04-16 12:06 PM PDT -roslynwythe,2023-04-16T19:07:58Z,- roslynwythe commented on issue: [4382](https://github.com/hackforla/website/issues/4382#issuecomment-1510461421) at 2023-04-16 12:07 PM PDT -roslynwythe,2023-04-16T20:15:02Z,- roslynwythe submitted pull request review: [4520](https://github.com/hackforla/website/pull/4520#pullrequestreview-1387038107) at 2023-04-16 01:15 PM PDT -roslynwythe,2023-04-16T21:34:38Z,- roslynwythe closed issue by PR 4520: [4380](https://github.com/hackforla/website/issues/4380#event-9018434749) at 2023-04-16 02:34 PM PDT -roslynwythe,2023-04-17T21:46:33Z,- roslynwythe closed issue by PR 4519: [4382](https://github.com/hackforla/website/issues/4382#event-9029423241) at 2023-04-17 02:46 PM PDT -roslynwythe,2023-04-17T22:04:36Z,- roslynwythe commented on pull request: [4528](https://github.com/hackforla/website/pull/4528#issuecomment-1512142315) at 2023-04-17 03:04 PM PDT -roslynwythe,2023-04-17T23:21:58Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1389065170) at 2023-04-17 04:21 PM PDT -roslynwythe,2023-04-18T03:40:33Z,- roslynwythe unassigned from issue: [4512](https://github.com/hackforla/website/issues/4512#issuecomment-1509624893) at 2023-04-17 08:40 PM PDT -roslynwythe,2023-04-18T04:08:12Z,- roslynwythe submitted pull request review: [4528](https://github.com/hackforla/website/pull/4528#pullrequestreview-1389255634) at 2023-04-17 09:08 PM PDT -roslynwythe,2023-04-18T04:08:25Z,- roslynwythe closed issue by PR 4528: [4400](https://github.com/hackforla/website/issues/4400#event-9031100259) at 2023-04-17 09:08 PM PDT -roslynwythe,2023-04-18T05:55:57Z,- roslynwythe opened issue: [4544](https://github.com/hackforla/website/issues/4544) at 2023-04-17 10:55 PM PDT -roslynwythe,2023-04-18T06:58:28Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1389415210) at 2023-04-17 11:58 PM PDT -roslynwythe,2023-04-18T23:12:14Z,- roslynwythe commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1513897404) at 2023-04-18 04:12 PM PDT -roslynwythe,2023-04-18T23:21:50Z,- roslynwythe commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1513904471) at 2023-04-18 04:21 PM PDT -roslynwythe,2023-04-19T01:52:27Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1391151885) at 2023-04-18 06:52 PM PDT -roslynwythe,2023-04-19T05:23:24Z,- roslynwythe commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1514149122) at 2023-04-18 10:23 PM PDT -roslynwythe,2023-04-19T18:26:36Z,- roslynwythe submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1392658166) at 2023-04-19 11:26 AM PDT -roslynwythe,2023-04-19T22:03:49Z,- roslynwythe commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515442681) at 2023-04-19 03:03 PM PDT -roslynwythe,2023-04-19T22:29:46Z,- roslynwythe commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1515464138) at 2023-04-19 03:29 PM PDT -roslynwythe,2023-04-19T23:00:04Z,- roslynwythe commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1515487035) at 2023-04-19 04:00 PM PDT -roslynwythe,2023-04-20T04:03:59Z,- roslynwythe commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515681922) at 2023-04-19 09:03 PM PDT -roslynwythe,2023-04-20T04:20:34Z,- roslynwythe commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1515691530) at 2023-04-19 09:20 PM PDT -roslynwythe,2023-04-21T07:46:36Z,- roslynwythe commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1517415338) at 2023-04-21 12:46 AM PDT -roslynwythe,2023-04-21T07:53:27Z,- roslynwythe commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1517422968) at 2023-04-21 12:53 AM PDT -roslynwythe,2023-04-23T04:00:30Z,- roslynwythe unassigned from issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1518511032) at 2023-04-22 09:00 PM PDT -roslynwythe,2023-04-23T09:26:06Z,- roslynwythe opened issue: [4556](https://github.com/hackforla/website/issues/4556) at 2023-04-23 02:26 AM PDT -roslynwythe,2023-04-23T09:26:12Z,- roslynwythe assigned to issue: [4556](https://github.com/hackforla/website/issues/4556) at 2023-04-23 02:26 AM PDT -roslynwythe,2023-04-23T16:05:02Z,- roslynwythe opened issue: [4557](https://github.com/hackforla/website/issues/4557) at 2023-04-23 09:05 AM PDT -roslynwythe,2023-04-23T17:21:48Z,- roslynwythe commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1519115037) at 2023-04-23 10:21 AM PDT -roslynwythe,2023-04-24T01:18:00Z,- roslynwythe unassigned from issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1518914009) at 2023-04-23 06:18 PM PDT -roslynwythe,2023-04-24T04:09:23Z,- roslynwythe unassigned from issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1518906788) at 2023-04-23 09:09 PM PDT -roslynwythe,2023-04-24T07:38:10Z,- roslynwythe commented on issue: [4387](https://github.com/hackforla/website/issues/4387#issuecomment-1519544483) at 2023-04-24 12:38 AM PDT -roslynwythe,2023-04-24T23:56:05Z,- roslynwythe commented on issue: [4556](https://github.com/hackforla/website/issues/4556#issuecomment-1520966027) at 2023-04-24 04:56 PM PDT -roslynwythe,2023-04-25T07:48:16Z,- roslynwythe opened issue: [4565](https://github.com/hackforla/website/issues/4565) at 2023-04-25 12:48 AM PDT -roslynwythe,2023-04-25T07:48:25Z,- roslynwythe assigned to issue: [4565](https://github.com/hackforla/website/issues/4565) at 2023-04-25 12:48 AM PDT -roslynwythe,2023-04-27T08:04:42Z,- roslynwythe commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1525052831) at 2023-04-27 01:04 AM PDT -roslynwythe,2023-04-27T08:05:04Z,- roslynwythe closed issue by PR 4495: [4253](https://github.com/hackforla/website/issues/4253#event-9111355052) at 2023-04-27 01:05 AM PDT -roslynwythe,2023-04-27T08:32:52Z,- roslynwythe opened issue: [4572](https://github.com/hackforla/website/issues/4572) at 2023-04-27 01:32 AM PDT -roslynwythe,2023-04-27T08:37:08Z,- roslynwythe assigned to issue: [4572](https://github.com/hackforla/website/issues/4572#issuecomment-1525120856) at 2023-04-27 01:37 AM PDT -roslynwythe,2023-04-27T08:57:45Z,- roslynwythe opened issue: [4574](https://github.com/hackforla/website/issues/4574) at 2023-04-27 01:57 AM PDT -roslynwythe,2023-04-27T09:25:58Z,- roslynwythe commented on issue: [4572](https://github.com/hackforla/website/issues/4572#issuecomment-1525251324) at 2023-04-27 02:25 AM PDT -roslynwythe,2023-04-27T23:20:26Z,- roslynwythe opened issue: [4577](https://github.com/hackforla/website/issues/4577) at 2023-04-27 04:20 PM PDT -roslynwythe,2023-05-01T08:22:00Z,- roslynwythe unassigned from issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1529040949) at 2023-05-01 01:22 AM PDT -roslynwythe,2023-05-01T08:26:39Z,- roslynwythe commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1529480340) at 2023-05-01 01:26 AM PDT -roslynwythe,2023-05-01T17:32:27Z,- roslynwythe opened issue: [4588](https://github.com/hackforla/website/issues/4588) at 2023-05-01 10:32 AM PDT -roslynwythe,2023-05-01T17:32:27Z,- roslynwythe assigned to issue: [4588](https://github.com/hackforla/website/issues/4588) at 2023-05-01 10:32 AM PDT -roslynwythe,2023-05-02T07:27:37Z,- roslynwythe opened issue: [4592](https://github.com/hackforla/website/issues/4592) at 2023-05-02 12:27 AM PDT -roslynwythe,2023-05-03T09:28:40Z,- roslynwythe assigned to issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1492715657) at 2023-05-03 02:28 AM PDT -roslynwythe,2023-05-03T09:28:46Z,- roslynwythe commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1532713719) at 2023-05-03 02:28 AM PDT -roslynwythe,2023-05-03T10:01:33Z,- roslynwythe commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1532758489) at 2023-05-03 03:01 AM PDT -roslynwythe,2023-05-03T19:48:57Z,- roslynwythe opened issue: [4595](https://github.com/hackforla/website/issues/4595) at 2023-05-03 12:48 PM PDT -roslynwythe,2023-05-03T19:49:50Z,- roslynwythe commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1533642737) at 2023-05-03 12:49 PM PDT -roslynwythe,2023-05-03T20:09:06Z,- roslynwythe commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1533667559) at 2023-05-03 01:09 PM PDT -roslynwythe,2023-05-03T23:59:03Z,- roslynwythe commented on issue: [4588](https://github.com/hackforla/website/issues/4588#issuecomment-1533894993) at 2023-05-03 04:59 PM PDT -roslynwythe,2023-05-04T00:22:24Z,- roslynwythe commented on issue: [4577](https://github.com/hackforla/website/issues/4577#issuecomment-1533909481) at 2023-05-03 05:22 PM PDT -roslynwythe,2023-05-04T00:27:20Z,- roslynwythe commented on issue: [4577](https://github.com/hackforla/website/issues/4577#issuecomment-1533911683) at 2023-05-03 05:27 PM PDT -roslynwythe,2023-05-04T00:30:34Z,- roslynwythe commented on issue: [4572](https://github.com/hackforla/website/issues/4572#issuecomment-1533913234) at 2023-05-03 05:30 PM PDT -roslynwythe,2023-05-04T00:30:34Z,- roslynwythe closed issue as completed: [4572](https://github.com/hackforla/website/issues/4572#event-9161384364) at 2023-05-03 05:30 PM PDT -roslynwythe,2023-05-04T00:32:57Z,- roslynwythe commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1533914348) at 2023-05-03 05:32 PM PDT -roslynwythe,2023-05-04T00:42:48Z,- roslynwythe commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1533918819) at 2023-05-03 05:42 PM PDT -roslynwythe,2023-05-04T01:18:52Z,- roslynwythe closed issue by PR 4586: [4566](https://github.com/hackforla/website/issues/4566#event-9161646466) at 2023-05-03 06:18 PM PDT -roslynwythe,2023-05-04T01:50:03Z,- roslynwythe submitted pull request review: [4575](https://github.com/hackforla/website/pull/4575#pullrequestreview-1412155992) at 2023-05-03 06:50 PM PDT -roslynwythe,2023-05-04T01:52:39Z,- roslynwythe commented on pull request: [4550](https://github.com/hackforla/website/pull/4550#issuecomment-1533975127) at 2023-05-03 06:52 PM PDT -roslynwythe,2023-05-04T01:59:50Z,- roslynwythe commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1533979093) at 2023-05-03 06:59 PM PDT -roslynwythe,2023-05-04T02:20:32Z,- roslynwythe commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1533991056) at 2023-05-03 07:20 PM PDT -roslynwythe,2023-05-04T07:17:09Z,- roslynwythe commented on issue: [4410](https://github.com/hackforla/website/issues/4410#issuecomment-1534206329) at 2023-05-04 12:17 AM PDT -roslynwythe,2023-05-04T07:17:09Z,- roslynwythe closed issue as not planned: [4410](https://github.com/hackforla/website/issues/4410#event-9163687071) at 2023-05-04 12:17 AM PDT -roslynwythe,2023-05-08T06:37:19Z,- roslynwythe commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1537831913) at 2023-05-07 11:37 PM PDT -roslynwythe,2023-05-08T17:00:12Z,- roslynwythe commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1538728019) at 2023-05-08 10:00 AM PDT -roslynwythe,2023-05-08T17:22:56Z,- roslynwythe commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1538755072) at 2023-05-08 10:22 AM PDT -roslynwythe,2023-05-08T17:30:26Z,- roslynwythe commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1538764607) at 2023-05-08 10:30 AM PDT -roslynwythe,2023-05-08T17:35:39Z,- roslynwythe commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1538770438) at 2023-05-08 10:35 AM PDT -roslynwythe,2023-05-08T17:45:39Z,- roslynwythe commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1538781361) at 2023-05-08 10:45 AM PDT -roslynwythe,2023-05-08T17:52:46Z,- roslynwythe commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1538789845) at 2023-05-08 10:52 AM PDT -roslynwythe,2023-05-08T18:04:58Z,- roslynwythe commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1538810097) at 2023-05-08 11:04 AM PDT -roslynwythe,2023-05-08T18:16:40Z,- roslynwythe commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1538828129) at 2023-05-08 11:16 AM PDT -roslynwythe,2023-05-08T18:25:07Z,- roslynwythe commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1538839330) at 2023-05-08 11:25 AM PDT -roslynwythe,2023-05-08T18:27:25Z,- roslynwythe commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1538841795) at 2023-05-08 11:27 AM PDT -roslynwythe,2023-05-08T18:31:30Z,- roslynwythe commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1538846777) at 2023-05-08 11:31 AM PDT -roslynwythe,2023-05-08T18:40:33Z,- roslynwythe commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1538857782) at 2023-05-08 11:40 AM PDT -roslynwythe,2023-05-08T18:47:31Z,- roslynwythe submitted pull request review: [4575](https://github.com/hackforla/website/pull/4575#pullrequestreview-1417324816) at 2023-05-08 11:47 AM PDT -roslynwythe,2023-05-08T19:19:59Z,- roslynwythe commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1538915338) at 2023-05-08 12:19 PM PDT -roslynwythe,2023-05-08T19:25:39Z,- roslynwythe commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1538923022) at 2023-05-08 12:25 PM PDT -roslynwythe,2023-05-08T22:15:07Z,- roslynwythe commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1539134846) at 2023-05-08 03:15 PM PDT -roslynwythe,2023-05-08T22:20:04Z,- roslynwythe commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1539139010) at 2023-05-08 03:20 PM PDT -roslynwythe,2023-05-08T22:29:08Z,- roslynwythe commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1539146579) at 2023-05-08 03:29 PM PDT -roslynwythe,2023-05-08T22:36:20Z,- roslynwythe commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1539151961) at 2023-05-08 03:36 PM PDT -roslynwythe,2023-05-08T22:40:20Z,- roslynwythe commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1539154647) at 2023-05-08 03:40 PM PDT -roslynwythe,2023-05-08T22:52:02Z,- roslynwythe commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1539162350) at 2023-05-08 03:52 PM PDT -roslynwythe,2023-05-08T23:18:14Z,- roslynwythe commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1539184388) at 2023-05-08 04:18 PM PDT -roslynwythe,2023-05-09T01:54:27Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1539279470) at 2023-05-08 06:54 PM PDT -roslynwythe,2023-05-09T07:17:05Z,- roslynwythe commented on issue: [4592](https://github.com/hackforla/website/issues/4592#issuecomment-1539590262) at 2023-05-09 12:17 AM PDT -roslynwythe,2023-05-09T07:35:35Z,- roslynwythe opened issue: [4642](https://github.com/hackforla/website/issues/4642) at 2023-05-09 12:35 AM PDT -roslynwythe,2023-05-09T08:51:20Z,- roslynwythe commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1539714565) at 2023-05-09 01:51 AM PDT -roslynwythe,2023-05-09T09:08:49Z,- roslynwythe commented on issue: [4588](https://github.com/hackforla/website/issues/4588#issuecomment-1539746783) at 2023-05-09 02:08 AM PDT -roslynwythe,2023-05-10T07:06:59Z,- roslynwythe commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1541462725) at 2023-05-10 12:06 AM PDT -roslynwythe,2023-05-11T01:30:31Z,- roslynwythe commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1543045929) at 2023-05-10 06:30 PM PDT -roslynwythe,2023-05-11T08:25:49Z,- roslynwythe commented on issue: [4588](https://github.com/hackforla/website/issues/4588#issuecomment-1543560276) at 2023-05-11 01:25 AM PDT -roslynwythe,2023-05-11T08:40:28Z,- roslynwythe commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1543582823) at 2023-05-11 01:40 AM PDT -roslynwythe,2023-05-11T08:53:16Z,- roslynwythe commented on issue: [4577](https://github.com/hackforla/website/issues/4577#issuecomment-1543601736) at 2023-05-11 01:53 AM PDT -roslynwythe,2023-05-11T08:53:16Z,- roslynwythe closed issue as not planned: [4577](https://github.com/hackforla/website/issues/4577#event-9219738844) at 2023-05-11 01:53 AM PDT -roslynwythe,2023-05-11T17:37:51Z,- roslynwythe commented on pull request: [4652](https://github.com/hackforla/website/pull/4652#issuecomment-1544417226) at 2023-05-11 10:37 AM PDT -roslynwythe,2023-05-11T17:48:15Z,- roslynwythe commented on pull request: [4655](https://github.com/hackforla/website/pull/4655#issuecomment-1544431992) at 2023-05-11 10:48 AM PDT -roslynwythe,2023-05-11T17:53:18Z,- roslynwythe commented on pull request: [4654](https://github.com/hackforla/website/pull/4654#issuecomment-1544438404) at 2023-05-11 10:53 AM PDT -roslynwythe,2023-05-11T18:02:21Z,- roslynwythe commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1544450714) at 2023-05-11 11:02 AM PDT -roslynwythe,2023-05-11T18:02:21Z,- roslynwythe reopened issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1544450714) at 2023-05-11 11:02 AM PDT -roslynwythe,2023-05-11T18:04:07Z,- roslynwythe commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1544452920) at 2023-05-11 11:04 AM PDT -roslynwythe,2023-05-11T18:07:23Z,- roslynwythe commented on issue: [4473](https://github.com/hackforla/website/issues/4473#issuecomment-1544457307) at 2023-05-11 11:07 AM PDT -roslynwythe,2023-05-12T07:32:33Z,- roslynwythe opened issue: [4659](https://github.com/hackforla/website/issues/4659) at 2023-05-12 12:32 AM PDT -roslynwythe,2023-05-12T17:33:58Z,- roslynwythe opened issue: [4660](https://github.com/hackforla/website/issues/4660) at 2023-05-12 10:33 AM PDT -roslynwythe,2023-05-12T17:33:59Z,- roslynwythe assigned to issue: [4660](https://github.com/hackforla/website/issues/4660) at 2023-05-12 10:33 AM PDT -roslynwythe,2023-05-14T17:24:58Z,- roslynwythe commented on pull request: [4651](https://github.com/hackforla/website/pull/4651#issuecomment-1546953246) at 2023-05-14 10:24 AM PDT -roslynwythe,2023-05-15T03:53:48Z,- roslynwythe opened issue: [4669](https://github.com/hackforla/website/issues/4669) at 2023-05-14 08:53 PM PDT -roslynwythe,2023-05-15T04:20:45Z,- roslynwythe commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1547172284) at 2023-05-14 09:20 PM PDT -roslynwythe,2023-05-15T07:59:40Z,- roslynwythe commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1547372234) at 2023-05-15 12:59 AM PDT -roslynwythe,2023-05-15T08:12:05Z,- roslynwythe opened issue: [4670](https://github.com/hackforla/website/issues/4670) at 2023-05-15 01:12 AM PDT -roslynwythe,2023-05-15T09:48:33Z,- roslynwythe opened issue: [4671](https://github.com/hackforla/website/issues/4671) at 2023-05-15 02:48 AM PDT -roslynwythe,2023-05-15T09:49:55Z,- roslynwythe assigned to issue: [4671](https://github.com/hackforla/website/issues/4671) at 2023-05-15 02:49 AM PDT -roslynwythe,2023-05-15T17:53:15Z,- roslynwythe commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1548291796) at 2023-05-15 10:53 AM PDT -roslynwythe,2023-05-15T19:08:54Z,- roslynwythe submitted pull request review: [4650](https://github.com/hackforla/website/pull/4650#pullrequestreview-1427204869) at 2023-05-15 12:08 PM PDT -roslynwythe,2023-05-15T19:47:46Z,- roslynwythe submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1427267055) at 2023-05-15 12:47 PM PDT -roslynwythe,2023-05-15T22:31:19Z,- roslynwythe commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1548702008) at 2023-05-15 03:31 PM PDT -roslynwythe,2023-05-15T22:40:37Z,- roslynwythe commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1548710081) at 2023-05-15 03:40 PM PDT -roslynwythe,2023-05-15T22:45:55Z,- roslynwythe commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1548714475) at 2023-05-15 03:45 PM PDT -roslynwythe,2023-05-15T22:50:47Z,- roslynwythe commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1548718097) at 2023-05-15 03:50 PM PDT -roslynwythe,2023-05-15T23:36:14Z,- roslynwythe commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1548754969) at 2023-05-15 04:36 PM PDT -roslynwythe,2023-05-16T04:40:59Z,- roslynwythe commented on pull request: [4656](https://github.com/hackforla/website/pull/4656#issuecomment-1548980470) at 2023-05-15 09:40 PM PDT -roslynwythe,2023-05-16T15:24:28Z,- roslynwythe commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1549888931) at 2023-05-16 08:24 AM PDT -roslynwythe,2023-05-16T15:36:09Z,- roslynwythe commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1549909052) at 2023-05-16 08:36 AM PDT -roslynwythe,2023-05-16T15:39:02Z,- roslynwythe commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1549914436) at 2023-05-16 08:39 AM PDT -roslynwythe,2023-05-16T15:41:06Z,- roslynwythe commented on issue: [4476](https://github.com/hackforla/website/issues/4476#issuecomment-1549918272) at 2023-05-16 08:41 AM PDT -roslynwythe,2023-05-16T16:30:39Z,- roslynwythe commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1549999356) at 2023-05-16 09:30 AM PDT -roslynwythe,2023-05-16T16:42:56Z,- roslynwythe commented on issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1550016553) at 2023-05-16 09:42 AM PDT -roslynwythe,2023-05-16T16:46:38Z,- roslynwythe commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1550021865) at 2023-05-16 09:46 AM PDT -roslynwythe,2023-05-17T01:43:45Z,- roslynwythe closed issue by PR 4677: [4642](https://github.com/hackforla/website/issues/4642#event-9263804602) at 2023-05-16 06:43 PM PDT -roslynwythe,2023-05-17T01:47:09Z,- roslynwythe closed issue by PR 4667: [4605](https://github.com/hackforla/website/issues/4605#event-9263819154) at 2023-05-16 06:47 PM PDT -roslynwythe,2023-05-17T01:50:32Z,- roslynwythe commented on pull request: [4651](https://github.com/hackforla/website/pull/4651#issuecomment-1550571605) at 2023-05-16 06:50 PM PDT -roslynwythe,2023-05-17T05:31:44Z,- roslynwythe commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1550764263) at 2023-05-16 10:31 PM PDT -roslynwythe,2023-05-17T05:35:35Z,- roslynwythe commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1550766745) at 2023-05-16 10:35 PM PDT -roslynwythe,2023-05-17T07:34:02Z,- roslynwythe opened issue: [4685](https://github.com/hackforla/website/issues/4685) at 2023-05-17 12:34 AM PDT -roslynwythe,2023-05-17T07:34:02Z,- roslynwythe assigned to issue: [4685](https://github.com/hackforla/website/issues/4685) at 2023-05-17 12:34 AM PDT -roslynwythe,2023-05-17T09:46:44Z,- roslynwythe commented on issue: [4476](https://github.com/hackforla/website/issues/4476#issuecomment-1551085010) at 2023-05-17 02:46 AM PDT -roslynwythe,2023-05-17T09:58:29Z,- roslynwythe commented on pull request: [4656](https://github.com/hackforla/website/pull/4656#issuecomment-1551100975) at 2023-05-17 02:58 AM PDT -roslynwythe,2023-05-17T09:58:39Z,- roslynwythe closed issue by PR 4656: [4484](https://github.com/hackforla/website/issues/4484#event-9267254204) at 2023-05-17 02:58 AM PDT -roslynwythe,2023-05-17T10:02:55Z,- roslynwythe commented on issue: [4490](https://github.com/hackforla/website/issues/4490#issuecomment-1551107521) at 2023-05-17 03:02 AM PDT -roslynwythe,2023-05-17T10:04:55Z,- roslynwythe commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1551110323) at 2023-05-17 03:04 AM PDT -roslynwythe,2023-05-17T17:57:53Z,- roslynwythe submitted pull request review: [4674](https://github.com/hackforla/website/pull/4674#pullrequestreview-1431272529) at 2023-05-17 10:57 AM PDT -roslynwythe,2023-05-17T17:58:13Z,- roslynwythe closed issue by PR 4674: [4476](https://github.com/hackforla/website/issues/4476#event-9272327459) at 2023-05-17 10:58 AM PDT -roslynwythe,2023-05-17T18:25:21Z,- roslynwythe commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1551867881) at 2023-05-17 11:25 AM PDT -roslynwythe,2023-05-17T22:40:48Z,- roslynwythe commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1552176689) at 2023-05-17 03:40 PM PDT -roslynwythe,2023-05-18T04:54:56Z,- roslynwythe submitted pull request review: [4686](https://github.com/hackforla/website/pull/4686#pullrequestreview-1432000981) at 2023-05-17 09:54 PM PDT -roslynwythe,2023-05-18T05:09:34Z,- roslynwythe submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1432011103) at 2023-05-17 10:09 PM PDT -roslynwythe,2023-05-18T06:48:55Z,- roslynwythe commented on pull request: [4680](https://github.com/hackforla/website/pull/4680#issuecomment-1552566212) at 2023-05-17 11:48 PM PDT -roslynwythe,2023-05-19T08:36:16Z,- roslynwythe submitted pull request review: [4697](https://github.com/hackforla/website/pull/4697#pullrequestreview-1434015798) at 2023-05-19 01:36 AM PDT -roslynwythe,2023-05-19T23:26:40Z,- roslynwythe commented on issue: [4588](https://github.com/hackforla/website/issues/4588#issuecomment-1555369401) at 2023-05-19 04:26 PM PDT -roslynwythe,2023-05-21T06:08:02Z,- roslynwythe submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1435477423) at 2023-05-20 11:08 PM PDT -roslynwythe,2023-05-21T09:08:24Z,- roslynwythe submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1435499658) at 2023-05-21 02:08 AM PDT -roslynwythe,2023-05-21T16:47:55Z,- roslynwythe commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1556223077) at 2023-05-21 09:47 AM PDT -roslynwythe,2023-05-21T16:59:36Z,- roslynwythe submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1435567255) at 2023-05-21 09:59 AM PDT -roslynwythe,2023-05-22T23:54:44Z,- roslynwythe unassigned from issue: [4685](https://github.com/hackforla/website/issues/4685) at 2023-05-22 04:54 PM PDT -roslynwythe,2023-05-23T00:02:50Z,- roslynwythe unassigned from issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1546961942) at 2023-05-22 05:02 PM PDT -roslynwythe,2023-05-23T00:03:34Z,- roslynwythe unassigned from issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1508161791) at 2023-05-22 05:03 PM PDT -roslynwythe,2023-05-23T23:54:24Z,- roslynwythe submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1440747001) at 2023-05-23 04:54 PM PDT -roslynwythe,2023-05-23T23:57:03Z,- roslynwythe closed issue by PR 4683: [4420](https://github.com/hackforla/website/issues/4420#event-9321647749) at 2023-05-23 04:57 PM PDT -roslynwythe,2023-05-24T00:23:08Z,- roslynwythe submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1440765140) at 2023-05-23 05:23 PM PDT -roslynwythe,2023-05-24T00:26:46Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1560291015) at 2023-05-23 05:26 PM PDT -roslynwythe,2023-05-24T21:15:27Z,- roslynwythe commented on pull request: [4709](https://github.com/hackforla/website/pull/4709#issuecomment-1561936687) at 2023-05-24 02:15 PM PDT -roslynwythe,2023-05-24T21:22:21Z,- roslynwythe commented on pull request: [4709](https://github.com/hackforla/website/pull/4709#issuecomment-1561943697) at 2023-05-24 02:22 PM PDT -roslynwythe,2023-05-24T21:56:16Z,- roslynwythe submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1442803987) at 2023-05-24 02:56 PM PDT -roslynwythe,2023-05-24T22:42:34Z,- roslynwythe submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1442841798) at 2023-05-24 03:42 PM PDT -roslynwythe,2023-05-25T07:53:50Z,- roslynwythe commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562448248) at 2023-05-25 12:53 AM PDT -roslynwythe,2023-05-25T09:15:10Z,- roslynwythe submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1443445521) at 2023-05-25 02:15 AM PDT -roslynwythe,2023-05-25T23:03:25Z,- roslynwythe commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1563612703) at 2023-05-25 04:03 PM PDT -roslynwythe,2023-05-26T16:09:34Z,- roslynwythe commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1564617662) at 2023-05-26 09:09 AM PDT -roslynwythe,2023-05-26T17:42:41Z,- roslynwythe commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1564718528) at 2023-05-26 10:42 AM PDT -roslynwythe,2023-05-26T20:37:17Z,- roslynwythe commented on pull request: [4745](https://github.com/hackforla/website/pull/4745#issuecomment-1564919357) at 2023-05-26 01:37 PM PDT -roslynwythe,2023-05-26T20:50:46Z,- roslynwythe submitted pull request review: [4745](https://github.com/hackforla/website/pull/4745#pullrequestreview-1446941452) at 2023-05-26 01:50 PM PDT -roslynwythe,2023-05-28T16:33:55Z,- roslynwythe commented on issue: [4713](https://github.com/hackforla/website/issues/4713#issuecomment-1566193593) at 2023-05-28 09:33 AM PDT -roslynwythe,2023-05-28T20:45:02Z,- roslynwythe commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1566256644) at 2023-05-28 01:45 PM PDT -roslynwythe,2023-05-29T04:52:17Z,- roslynwythe submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1448823248) at 2023-05-28 09:52 PM PDT -roslynwythe,2023-05-29T05:03:32Z,- roslynwythe submitted pull request review: [4745](https://github.com/hackforla/website/pull/4745#pullrequestreview-1448840738) at 2023-05-28 10:03 PM PDT -roslynwythe,2023-05-29T05:17:31Z,- roslynwythe submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1448852082) at 2023-05-28 10:17 PM PDT -roslynwythe,2023-05-29T22:54:52Z,- roslynwythe submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1449894888) at 2023-05-29 03:54 PM PDT -roslynwythe,2023-05-29T23:24:58Z,- roslynwythe commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1567593010) at 2023-05-29 04:24 PM PDT -roslynwythe,2023-05-29T23:43:31Z,- roslynwythe commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1567598700) at 2023-05-29 04:43 PM PDT -roslynwythe,2023-05-29T23:48:10Z,- roslynwythe commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1567600010) at 2023-05-29 04:48 PM PDT -roslynwythe,2023-05-29T23:50:28Z,- roslynwythe commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1567600730) at 2023-05-29 04:50 PM PDT -roslynwythe,2023-05-30T19:53:50Z,- roslynwythe commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1569002302) at 2023-05-30 12:53 PM PDT -roslynwythe,2023-05-30T22:54:07Z,- roslynwythe commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1569238245) at 2023-05-30 03:54 PM PDT -roslynwythe,2023-05-30T22:54:07Z,- roslynwythe closed issue as completed: [4066](https://github.com/hackforla/website/issues/4066#event-9383710397) at 2023-05-30 03:54 PM PDT -roslynwythe,2023-05-30T23:47:11Z,- roslynwythe opened issue: [4758](https://github.com/hackforla/website/issues/4758) at 2023-05-30 04:47 PM PDT -roslynwythe,2023-05-31T06:18:47Z,- roslynwythe commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1569562184) at 2023-05-30 11:18 PM PDT -roslynwythe,2023-05-31T06:31:06Z,- roslynwythe commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1569573309) at 2023-05-30 11:31 PM PDT -roslynwythe,2023-05-31T06:31:06Z,- roslynwythe reopened issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1569573309) at 2023-05-30 11:31 PM PDT -roslynwythe,2023-05-31T06:52:23Z,- roslynwythe commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1569594845) at 2023-05-30 11:52 PM PDT -roslynwythe,2023-05-31T08:27:35Z,- roslynwythe opened issue: [4762](https://github.com/hackforla/website/issues/4762) at 2023-05-31 01:27 AM PDT -roslynwythe,2023-06-01T02:02:47Z,- roslynwythe commented on pull request: [4763](https://github.com/hackforla/website/pull/4763#issuecomment-1571213778) at 2023-05-31 07:02 PM PDT -roslynwythe,2023-06-01T02:12:19Z,- roslynwythe submitted pull request review: [4763](https://github.com/hackforla/website/pull/4763#pullrequestreview-1454434911) at 2023-05-31 07:12 PM PDT -roslynwythe,2023-06-01T02:30:57Z,- roslynwythe commented on pull request: [4760](https://github.com/hackforla/website/pull/4760#issuecomment-1571231292) at 2023-05-31 07:30 PM PDT -roslynwythe,2023-06-01T02:34:01Z,- roslynwythe commented on pull request: [4759](https://github.com/hackforla/website/pull/4759#issuecomment-1571233039) at 2023-05-31 07:34 PM PDT -roslynwythe,2023-06-01T02:35:28Z,- roslynwythe commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1571233773) at 2023-05-31 07:35 PM PDT -roslynwythe,2023-06-01T02:38:30Z,- roslynwythe commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1571235503) at 2023-05-31 07:38 PM PDT -roslynwythe,2023-06-01T02:49:17Z,- roslynwythe submitted pull request review: [4750](https://github.com/hackforla/website/pull/4750#pullrequestreview-1454458658) at 2023-05-31 07:49 PM PDT -roslynwythe,2023-06-01T05:27:16Z,- roslynwythe submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1454586332) at 2023-05-31 10:27 PM PDT -roslynwythe,2023-06-01T05:51:38Z,- roslynwythe submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1454619942) at 2023-05-31 10:51 PM PDT -roslynwythe,2023-06-01T05:53:53Z,- roslynwythe closed issue by PR 4726: [4544](https://github.com/hackforla/website/issues/4544#event-9398540773) at 2023-05-31 10:53 PM PDT -roslynwythe,2023-06-01T07:53:02Z,- roslynwythe submitted pull request review: [4760](https://github.com/hackforla/website/pull/4760#pullrequestreview-1454823740) at 2023-06-01 12:53 AM PDT -roslynwythe,2023-06-01T17:40:58Z,- roslynwythe commented on pull request: [4760](https://github.com/hackforla/website/pull/4760#issuecomment-1572516132) at 2023-06-01 10:40 AM PDT -roslynwythe,2023-06-01T17:55:23Z,- roslynwythe unassigned from issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1521318133) at 2023-06-01 10:55 AM PDT -roslynwythe,2023-06-01T17:57:16Z,- roslynwythe assigned to issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1521318133) at 2023-06-01 10:57 AM PDT -roslynwythe,2023-06-01T18:06:09Z,- roslynwythe unassigned from issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1572535026) at 2023-06-01 11:06 AM PDT -roslynwythe,2023-06-01T18:13:27Z,- roslynwythe submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1456044619) at 2023-06-01 11:13 AM PDT -roslynwythe,2023-06-01T19:39:16Z,- roslynwythe submitted pull request review: [4760](https://github.com/hackforla/website/pull/4760#pullrequestreview-1456186825) at 2023-06-01 12:39 PM PDT -roslynwythe,2023-06-01T19:40:12Z,- roslynwythe closed issue by PR 4760: [4753](https://github.com/hackforla/website/issues/4753#event-9407248120) at 2023-06-01 12:40 PM PDT -roslynwythe,2023-06-02T07:39:06Z,- roslynwythe closed issue as not planned: [4390](https://github.com/hackforla/website/issues/4390#event-9411230620) at 2023-06-02 12:39 AM PDT -roslynwythe,2023-06-02T07:40:46Z,- roslynwythe commented on issue: [2246](https://github.com/hackforla/website/issues/2246#issuecomment-1573297137) at 2023-06-02 12:40 AM PDT -roslynwythe,2023-06-02T07:40:46Z,- roslynwythe closed issue as not planned: [2246](https://github.com/hackforla/website/issues/2246#event-9411243314) at 2023-06-02 12:40 AM PDT -roslynwythe,2023-06-02T07:43:10Z,- roslynwythe commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1573299834) at 2023-06-02 12:43 AM PDT -roslynwythe,2023-06-02T07:43:10Z,- roslynwythe closed issue as not planned: [2021](https://github.com/hackforla/website/issues/2021#event-9411261794) at 2023-06-02 12:43 AM PDT -roslynwythe,2023-06-02T07:44:23Z,- roslynwythe commented on issue: [4387](https://github.com/hackforla/website/issues/4387#issuecomment-1573301045) at 2023-06-02 12:44 AM PDT -roslynwythe,2023-06-02T07:44:23Z,- roslynwythe closed issue as not planned: [4387](https://github.com/hackforla/website/issues/4387#event-9411271047) at 2023-06-02 12:44 AM PDT -roslynwythe,2023-06-02T07:45:32Z,- roslynwythe closed issue as completed: [4588](https://github.com/hackforla/website/issues/4588#event-9411279947) at 2023-06-02 12:45 AM PDT -roslynwythe,2023-06-02T16:41:45Z,- roslynwythe submitted pull request review: [4763](https://github.com/hackforla/website/pull/4763#pullrequestreview-1457997753) at 2023-06-02 09:41 AM PDT -roslynwythe,2023-06-02T16:42:15Z,- roslynwythe closed issue by PR 4763: [4481](https://github.com/hackforla/website/issues/4481#event-9416252436) at 2023-06-02 09:42 AM PDT -roslynwythe,2023-06-04T16:31:13Z,- roslynwythe commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1575631050) at 2023-06-04 09:31 AM PDT -roslynwythe,2023-06-04T16:32:49Z,- roslynwythe commented on pull request: [4773](https://github.com/hackforla/website/pull/4773#issuecomment-1575631704) at 2023-06-04 09:32 AM PDT -roslynwythe,2023-06-04T18:47:09Z,- roslynwythe closed issue as completed: [4409](https://github.com/hackforla/website/issues/4409#event-9425575069) at 2023-06-04 11:47 AM PDT -roslynwythe,2023-06-04T19:10:10Z,- roslynwythe submitted pull request review: [4773](https://github.com/hackforla/website/pull/4773#pullrequestreview-1461330805) at 2023-06-04 12:10 PM PDT -roslynwythe,2023-06-04T19:16:23Z,- roslynwythe submitted pull request review: [4767](https://github.com/hackforla/website/pull/4767#pullrequestreview-1461332825) at 2023-06-04 12:16 PM PDT -roslynwythe,2023-06-04T20:13:50Z,- roslynwythe submitted pull request review: [4759](https://github.com/hackforla/website/pull/4759#pullrequestreview-1461351624) at 2023-06-04 01:13 PM PDT -roslynwythe,2023-06-05T00:15:52Z,- roslynwythe commented on issue: [4556](https://github.com/hackforla/website/issues/4556#issuecomment-1575845584) at 2023-06-04 05:15 PM PDT -roslynwythe,2023-06-05T08:57:10Z,- roslynwythe opened issue: [4781](https://github.com/hackforla/website/issues/4781) at 2023-06-05 01:57 AM PDT -roslynwythe,2023-06-05T08:57:11Z,- roslynwythe assigned to issue: [4781](https://github.com/hackforla/website/issues/4781) at 2023-06-05 01:57 AM PDT -roslynwythe,2023-06-05T09:07:20Z,- roslynwythe assigned to issue: [4770](https://github.com/hackforla/website/issues/4770#issuecomment-1575659941) at 2023-06-05 02:07 AM PDT -roslynwythe,2023-06-05T09:16:32Z,- roslynwythe opened issue: [4782](https://github.com/hackforla/website/issues/4782) at 2023-06-05 02:16 AM PDT -roslynwythe,2023-06-05T16:06:15Z,- roslynwythe submitted pull request review: [4773](https://github.com/hackforla/website/pull/4773#pullrequestreview-1462901414) at 2023-06-05 09:06 AM PDT -roslynwythe,2023-06-05T16:50:25Z,- roslynwythe opened issue: [4784](https://github.com/hackforla/website/issues/4784) at 2023-06-05 09:50 AM PDT -roslynwythe,2023-06-05T16:53:11Z,- roslynwythe commented on issue: [4770](https://github.com/hackforla/website/issues/4770#issuecomment-1577143058) at 2023-06-05 09:53 AM PDT -roslynwythe,2023-06-05T18:58:34Z,- roslynwythe submitted pull request review: [4773](https://github.com/hackforla/website/pull/4773#pullrequestreview-1463197545) at 2023-06-05 11:58 AM PDT -roslynwythe,2023-06-05T19:21:22Z,- roslynwythe opened issue: [4785](https://github.com/hackforla/website/issues/4785) at 2023-06-05 12:21 PM PDT -roslynwythe,2023-06-05T19:32:05Z,- roslynwythe opened issue: [4786](https://github.com/hackforla/website/issues/4786) at 2023-06-05 12:32 PM PDT -roslynwythe,2023-06-06T07:10:23Z,- roslynwythe opened issue: [4787](https://github.com/hackforla/website/issues/4787) at 2023-06-06 12:10 AM PDT -roslynwythe,2023-06-06T07:27:21Z,- roslynwythe commented on issue: [4781](https://github.com/hackforla/website/issues/4781#issuecomment-1578074352) at 2023-06-06 12:27 AM PDT -roslynwythe,2023-06-08T08:01:58Z,- roslynwythe submitted pull request review: [4775](https://github.com/hackforla/website/pull/4775#pullrequestreview-1469257822) at 2023-06-08 01:01 AM PDT -roslynwythe,2023-06-08T08:04:42Z,- roslynwythe closed issue by PR 4773: [4489](https://github.com/hackforla/website/issues/4489#event-9469030083) at 2023-06-08 01:04 AM PDT -roslynwythe,2023-06-08T08:09:10Z,- roslynwythe commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1582103486) at 2023-06-08 01:09 AM PDT -roslynwythe,2023-06-08T08:17:12Z,- roslynwythe submitted pull request review: [4767](https://github.com/hackforla/website/pull/4767#pullrequestreview-1469284992) at 2023-06-08 01:17 AM PDT -roslynwythe,2023-06-08T08:18:06Z,- roslynwythe closed issue by PR 4767: [4480](https://github.com/hackforla/website/issues/4480#event-9469182969) at 2023-06-08 01:18 AM PDT -roslynwythe,2023-06-08T08:34:57Z,- roslynwythe submitted pull request review: [4759](https://github.com/hackforla/website/pull/4759#pullrequestreview-1469317732) at 2023-06-08 01:34 AM PDT -roslynwythe,2023-06-08T08:35:43Z,- roslynwythe closed issue by PR 4759: [4552](https://github.com/hackforla/website/issues/4552#event-9469363639) at 2023-06-08 01:35 AM PDT -roslynwythe,2023-06-08T08:58:38Z,- roslynwythe submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1469358982) at 2023-06-08 01:58 AM PDT -roslynwythe,2023-06-08T08:58:50Z,- roslynwythe closed issue by PR 4732: [4449](https://github.com/hackforla/website/issues/4449#event-9469614997) at 2023-06-08 01:58 AM PDT -roslynwythe,2023-06-08T09:06:11Z,- roslynwythe closed issue by PR 4650: [4439](https://github.com/hackforla/website/issues/4439#event-9469714549) at 2023-06-08 02:06 AM PDT -roslynwythe,2023-06-09T07:33:52Z,- roslynwythe opened issue: [4793](https://github.com/hackforla/website/issues/4793) at 2023-06-09 12:33 AM PDT -roslynwythe,2023-06-12T06:47:49Z,- roslynwythe commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1586687347) at 2023-06-11 11:47 PM PDT -roslynwythe,2023-06-12T07:10:23Z,- roslynwythe submitted pull request review: [4775](https://github.com/hackforla/website/pull/4775#pullrequestreview-1474182819) at 2023-06-12 12:10 AM PDT -roslynwythe,2023-06-12T07:11:28Z,- roslynwythe closed issue by PR 4775: [4479](https://github.com/hackforla/website/issues/4479#event-9498416350) at 2023-06-12 12:11 AM PDT -roslynwythe,2023-06-12T21:33:46Z,- roslynwythe commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1588138227) at 2023-06-12 02:33 PM PDT -roslynwythe,2023-06-12T21:35:05Z,- roslynwythe commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1588139423) at 2023-06-12 02:35 PM PDT -roslynwythe,2023-06-12T21:59:11Z,- roslynwythe commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1588161974) at 2023-06-12 02:59 PM PDT -roslynwythe,2023-06-12T22:03:49Z,- roslynwythe commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1588167627) at 2023-06-12 03:03 PM PDT -roslynwythe,2023-06-12T22:10:46Z,- roslynwythe commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1588177221) at 2023-06-12 03:10 PM PDT -roslynwythe,2023-06-12T22:27:39Z,- roslynwythe commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1588193546) at 2023-06-12 03:27 PM PDT -roslynwythe,2023-06-12T22:32:52Z,- roslynwythe commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1588197082) at 2023-06-12 03:32 PM PDT -roslynwythe,2023-06-12T22:48:14Z,- roslynwythe opened issue: [4819](https://github.com/hackforla/website/issues/4819) at 2023-06-12 03:48 PM PDT -roslynwythe,2023-06-12T23:23:19Z,- roslynwythe commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1588241440) at 2023-06-12 04:23 PM PDT -roslynwythe,2023-06-12T23:36:59Z,- roslynwythe opened issue: [4820](https://github.com/hackforla/website/issues/4820) at 2023-06-12 04:36 PM PDT -roslynwythe,2023-06-13T04:39:03Z,- roslynwythe commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1588532738) at 2023-06-12 09:39 PM PDT -roslynwythe,2023-06-13T04:48:03Z,- roslynwythe commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1588539984) at 2023-06-12 09:48 PM PDT -roslynwythe,2023-06-13T05:22:34Z,- roslynwythe commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1588566539) at 2023-06-12 10:22 PM PDT -roslynwythe,2023-06-13T05:28:56Z,- roslynwythe commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1588572318) at 2023-06-12 10:28 PM PDT -roslynwythe,2023-06-13T05:32:45Z,- roslynwythe commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1588574926) at 2023-06-12 10:32 PM PDT -roslynwythe,2023-06-13T05:36:19Z,- roslynwythe commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1588577323) at 2023-06-12 10:36 PM PDT -roslynwythe,2023-06-13T05:41:50Z,- roslynwythe commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1588581628) at 2023-06-12 10:41 PM PDT -roslynwythe,2023-06-13T06:23:40Z,- roslynwythe opened issue: [4821](https://github.com/hackforla/website/issues/4821) at 2023-06-12 11:23 PM PDT -roslynwythe,2023-06-13T07:04:33Z,- roslynwythe assigned to issue: [4728](https://github.com/hackforla/website/issues/4728) at 2023-06-13 12:04 AM PDT -roslynwythe,2023-06-13T23:33:25Z,- roslynwythe submitted pull request review: [4750](https://github.com/hackforla/website/pull/4750#pullrequestreview-1478210138) at 2023-06-13 04:33 PM PDT -roslynwythe,2023-06-14T06:07:06Z,- roslynwythe opened issue: [4834](https://github.com/hackforla/website/issues/4834) at 2023-06-13 11:07 PM PDT -roslynwythe,2023-06-14T18:00:01Z,- roslynwythe closed issue by PR 4783: [2114](https://github.com/hackforla/website/issues/2114#event-9531782399) at 2023-06-14 11:00 AM PDT -roslynwythe,2023-06-15T09:19:51Z,- roslynwythe commented on issue: [4728](https://github.com/hackforla/website/issues/4728#issuecomment-1592684256) at 2023-06-15 02:19 AM PDT -roslynwythe,2023-06-15T18:51:30Z,- roslynwythe opened issue: [4841](https://github.com/hackforla/website/issues/4841) at 2023-06-15 11:51 AM PDT -roslynwythe,2023-06-18T04:55:32Z,- roslynwythe submitted pull request review: [4750](https://github.com/hackforla/website/pull/4750#pullrequestreview-1484965926) at 2023-06-17 09:55 PM PDT -roslynwythe,2023-06-18T04:55:43Z,- roslynwythe closed issue by PR 4750: [4482](https://github.com/hackforla/website/issues/4482#event-9560139983) at 2023-06-17 09:55 PM PDT -roslynwythe,2023-06-18T06:14:11Z,- roslynwythe submitted pull request review: [4844](https://github.com/hackforla/website/pull/4844#pullrequestreview-1484979302) at 2023-06-17 11:14 PM PDT -roslynwythe,2023-06-18T07:08:18Z,- roslynwythe assigned to issue: [4834](https://github.com/hackforla/website/issues/4834) at 2023-06-18 12:08 AM PDT -roslynwythe,2023-06-18T07:14:57Z,- roslynwythe opened issue: [4850](https://github.com/hackforla/website/issues/4850) at 2023-06-18 12:14 AM PDT -roslynwythe,2023-06-18T07:48:54Z,- roslynwythe commented on issue: [4834](https://github.com/hackforla/website/issues/4834#issuecomment-1596013127) at 2023-06-18 12:48 AM PDT -roslynwythe,2023-06-18T23:43:50Z,- roslynwythe submitted pull request review: [4844](https://github.com/hackforla/website/pull/4844#pullrequestreview-1485228553) at 2023-06-18 04:43 PM PDT -roslynwythe,2023-06-18T23:44:09Z,- roslynwythe closed issue by PR 4844: [4477](https://github.com/hackforla/website/issues/4477#event-9562282786) at 2023-06-18 04:44 PM PDT -roslynwythe,2023-06-18T23:48:51Z,- roslynwythe commented on pull request: [4848](https://github.com/hackforla/website/pull/4848#issuecomment-1596309651) at 2023-06-18 04:48 PM PDT -roslynwythe,2023-06-19T05:54:37Z,- roslynwythe commented on issue: [4762](https://github.com/hackforla/website/issues/4762#issuecomment-1596546560) at 2023-06-18 10:54 PM PDT -roslynwythe,2023-06-19T05:54:37Z,- roslynwythe closed issue as completed: [4762](https://github.com/hackforla/website/issues/4762#event-9563856678) at 2023-06-18 10:54 PM PDT -roslynwythe,2023-06-19T07:52:41Z,- roslynwythe opened pull request: [4855](https://github.com/hackforla/website/pull/4855) at 2023-06-19 12:52 AM PDT -roslynwythe,2023-06-19T18:49:27Z,- roslynwythe commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597616546) at 2023-06-19 11:49 AM PDT -roslynwythe,2023-06-19T19:01:12Z,- roslynwythe opened issue: [4856](https://github.com/hackforla/website/issues/4856) at 2023-06-19 12:01 PM PDT -roslynwythe,2023-06-19T19:02:27Z,- roslynwythe assigned to issue: [4819](https://github.com/hackforla/website/issues/4819) at 2023-06-19 12:02 PM PDT -roslynwythe,2023-06-19T20:34:28Z,- roslynwythe opened issue: [4857](https://github.com/hackforla/website/issues/4857) at 2023-06-19 01:34 PM PDT -roslynwythe,2023-06-19T20:34:50Z,- roslynwythe assigned to issue: [4857](https://github.com/hackforla/website/issues/4857) at 2023-06-19 01:34 PM PDT -roslynwythe,2023-06-19T20:48:01Z,- roslynwythe opened issue: [4858](https://github.com/hackforla/website/issues/4858) at 2023-06-19 01:48 PM PDT -roslynwythe,2023-06-19T23:46:08Z,- roslynwythe opened issue: [4862](https://github.com/hackforla/website/issues/4862) at 2023-06-19 04:46 PM PDT -roslynwythe,2023-06-20T05:09:01Z,- roslynwythe commented on issue: [4841](https://github.com/hackforla/website/issues/4841#issuecomment-1598125251) at 2023-06-19 10:09 PM PDT -roslynwythe,2023-06-20T06:57:02Z,- roslynwythe submitted pull request review: [4848](https://github.com/hackforla/website/pull/4848#pullrequestreview-1487439332) at 2023-06-19 11:57 PM PDT -roslynwythe,2023-06-20T06:57:12Z,- roslynwythe closed issue by PR 4848: [4831](https://github.com/hackforla/website/issues/4831#event-9575736658) at 2023-06-19 11:57 PM PDT -roslynwythe,2023-06-20T07:53:01Z,- roslynwythe submitted pull request review: [4863](https://github.com/hackforla/website/pull/4863#pullrequestreview-1487539390) at 2023-06-20 12:53 AM PDT -roslynwythe,2023-06-20T07:57:39Z,- roslynwythe commented on pull request: [4846](https://github.com/hackforla/website/pull/4846#issuecomment-1598298079) at 2023-06-20 12:57 AM PDT -roslynwythe,2023-06-20T23:16:28Z,- roslynwythe commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1599710701) at 2023-06-20 04:16 PM PDT -roslynwythe,2023-06-21T00:16:34Z,- roslynwythe opened issue: [4867](https://github.com/hackforla/website/issues/4867) at 2023-06-20 05:16 PM PDT -roslynwythe,2023-06-21T00:48:12Z,- roslynwythe commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1599798322) at 2023-06-20 05:48 PM PDT -roslynwythe,2023-06-21T00:48:12Z,- roslynwythe closed issue as completed: [4426](https://github.com/hackforla/website/issues/4426#event-9585935791) at 2023-06-20 05:48 PM PDT -roslynwythe,2023-06-21T05:55:31Z,- roslynwythe opened issue: [4869](https://github.com/hackforla/website/issues/4869) at 2023-06-20 10:55 PM PDT -roslynwythe,2023-06-21T06:01:31Z,- roslynwythe assigned to issue: [4869](https://github.com/hackforla/website/issues/4869) at 2023-06-20 11:01 PM PDT -roslynwythe,2023-06-21T06:20:09Z,- roslynwythe unassigned from issue: [4869](https://github.com/hackforla/website/issues/4869#issuecomment-1600233899) at 2023-06-20 11:20 PM PDT -roslynwythe,2023-06-21T06:48:07Z,- roslynwythe opened issue: [4870](https://github.com/hackforla/website/issues/4870) at 2023-06-20 11:48 PM PDT -roslynwythe,2023-06-21T08:06:50Z,- roslynwythe submitted pull request review: [4866](https://github.com/hackforla/website/pull/4866#pullrequestreview-1490067694) at 2023-06-21 01:06 AM PDT -roslynwythe,2023-06-22T00:59:40Z,- roslynwythe submitted pull request review: [4846](https://github.com/hackforla/website/pull/4846#pullrequestreview-1492146875) at 2023-06-21 05:59 PM PDT -roslynwythe,2023-06-22T17:13:59Z,- roslynwythe opened issue: [4874](https://github.com/hackforla/website/issues/4874) at 2023-06-22 10:13 AM PDT -roslynwythe,2023-06-23T17:19:50Z,- roslynwythe commented on issue: [4858](https://github.com/hackforla/website/issues/4858#issuecomment-1604584968) at 2023-06-23 10:19 AM PDT -roslynwythe,2023-06-23T17:19:50Z,- roslynwythe closed issue as not planned: [4858](https://github.com/hackforla/website/issues/4858#event-9620014372) at 2023-06-23 10:19 AM PDT -roslynwythe,2023-06-23T18:57:34Z,- roslynwythe opened issue: [4876](https://github.com/hackforla/website/issues/4876) at 2023-06-23 11:57 AM PDT -roslynwythe,2023-06-23T18:57:43Z,- roslynwythe assigned to issue: [4876](https://github.com/hackforla/website/issues/4876) at 2023-06-23 11:57 AM PDT -roslynwythe,2023-06-25T18:34:53Z,- roslynwythe commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1606212846) at 2023-06-25 11:34 AM PDT -roslynwythe,2023-06-26T18:25:16Z,- roslynwythe closed issue by PR 4842: [4226](https://github.com/hackforla/website/issues/4226#event-9642372668) at 2023-06-26 11:25 AM PDT -roslynwythe,2023-06-26T18:33:15Z,- roslynwythe opened issue: [4883](https://github.com/hackforla/website/issues/4883) at 2023-06-26 11:33 AM PDT -roslynwythe,2023-06-26T19:23:53Z,- roslynwythe commented on issue: [4874](https://github.com/hackforla/website/issues/4874#issuecomment-1608099568) at 2023-06-26 12:23 PM PDT -roslynwythe,2023-06-26T22:51:26Z,- roslynwythe opened issue: [4884](https://github.com/hackforla/website/issues/4884) at 2023-06-26 03:51 PM PDT -roslynwythe,2023-06-26T22:53:43Z,- roslynwythe opened issue: [4885](https://github.com/hackforla/website/issues/4885) at 2023-06-26 03:53 PM PDT -roslynwythe,2023-06-27T06:42:55Z,- roslynwythe opened issue: [4887](https://github.com/hackforla/website/issues/4887) at 2023-06-26 11:42 PM PDT -roslynwythe,2023-06-27T07:54:54Z,- roslynwythe opened issue: [4888](https://github.com/hackforla/website/issues/4888) at 2023-06-27 12:54 AM PDT -roslynwythe,2023-06-27T07:54:55Z,- roslynwythe assigned to issue: [4888](https://github.com/hackforla/website/issues/4888) at 2023-06-27 12:54 AM PDT -roslynwythe,2023-06-27T08:07:41Z,- roslynwythe opened issue: [4889](https://github.com/hackforla/website/issues/4889) at 2023-06-27 01:07 AM PDT -roslynwythe,2023-06-27T08:10:02Z,- roslynwythe commented on issue: [4889](https://github.com/hackforla/website/issues/4889#issuecomment-1609009641) at 2023-06-27 01:10 AM PDT -roslynwythe,2023-06-27T18:07:13Z,- roslynwythe commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1609993537) at 2023-06-27 11:07 AM PDT -roslynwythe,2023-06-27T22:06:21Z,- roslynwythe commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1610282430) at 2023-06-27 03:06 PM PDT -roslynwythe,2023-06-28T17:19:21Z,- roslynwythe commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1611804406) at 2023-06-28 10:19 AM PDT -roslynwythe,2023-06-28T19:06:32Z,- roslynwythe submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1503794474) at 2023-06-28 12:06 PM PDT -roslynwythe,2023-06-28T20:26:40Z,- roslynwythe submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1503939945) at 2023-06-28 01:26 PM PDT -roslynwythe,2023-06-28T20:30:43Z,- roslynwythe closed issue by PR 4878: [4784](https://github.com/hackforla/website/issues/4784#event-9669440866) at 2023-06-28 01:30 PM PDT -roslynwythe,2023-06-28T20:36:03Z,- roslynwythe submitted pull request review: [4846](https://github.com/hackforla/website/pull/4846#pullrequestreview-1503971301) at 2023-06-28 01:36 PM PDT -roslynwythe,2023-06-29T23:59:47Z,- roslynwythe commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1613934372) at 2023-06-29 04:59 PM PDT -roslynwythe,2023-07-02T18:17:34Z,- roslynwythe unassigned from issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1517320880) at 2023-07-02 11:17 AM PDT -roslynwythe,2023-07-02T23:35:46Z,- roslynwythe commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1616995867) at 2023-07-02 04:35 PM PDT -roslynwythe,2023-07-02T23:37:48Z,- roslynwythe commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1616996431) at 2023-07-02 04:37 PM PDT -roslynwythe,2023-07-02T23:44:20Z,- roslynwythe commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1616999781) at 2023-07-02 04:44 PM PDT -roslynwythe,2023-07-02T23:51:28Z,- roslynwythe commented on issue: [4714](https://github.com/hackforla/website/issues/4714#issuecomment-1617005072) at 2023-07-02 04:51 PM PDT -roslynwythe,2023-07-02T23:51:29Z,- roslynwythe closed issue as not planned: [4714](https://github.com/hackforla/website/issues/4714#event-9701806228) at 2023-07-02 04:51 PM PDT -roslynwythe,2023-07-02T23:55:02Z,- roslynwythe commented on issue: [4712](https://github.com/hackforla/website/issues/4712#issuecomment-1617007793) at 2023-07-02 04:55 PM PDT -roslynwythe,2023-07-02T23:57:05Z,- roslynwythe commented on issue: [4711](https://github.com/hackforla/website/issues/4711#issuecomment-1617010200) at 2023-07-02 04:57 PM PDT -roslynwythe,2023-07-02T23:59:46Z,- roslynwythe commented on issue: [4649](https://github.com/hackforla/website/issues/4649#issuecomment-1617015492) at 2023-07-02 04:59 PM PDT -roslynwythe,2023-07-03T00:01:28Z,- roslynwythe commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1617017166) at 2023-07-02 05:01 PM PDT -roslynwythe,2023-07-03T00:03:37Z,- roslynwythe commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1617018123) at 2023-07-02 05:03 PM PDT -roslynwythe,2023-07-03T00:05:17Z,- roslynwythe commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1617019141) at 2023-07-02 05:05 PM PDT -roslynwythe,2023-07-03T00:07:01Z,- roslynwythe commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1617019925) at 2023-07-02 05:07 PM PDT -roslynwythe,2023-07-03T00:12:00Z,- roslynwythe commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1617023707) at 2023-07-02 05:12 PM PDT -roslynwythe,2023-07-03T00:13:35Z,- roslynwythe commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1617024433) at 2023-07-02 05:13 PM PDT -roslynwythe,2023-07-03T00:14:26Z,- roslynwythe commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1617025082) at 2023-07-02 05:14 PM PDT -roslynwythe,2023-07-03T00:20:00Z,- roslynwythe commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1617028320) at 2023-07-02 05:20 PM PDT -roslynwythe,2023-07-03T00:26:54Z,- roslynwythe commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1617035036) at 2023-07-02 05:26 PM PDT -roslynwythe,2023-07-03T00:29:34Z,- roslynwythe commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1617040789) at 2023-07-02 05:29 PM PDT -roslynwythe,2023-07-03T00:31:15Z,- roslynwythe commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1617044789) at 2023-07-02 05:31 PM PDT -roslynwythe,2023-07-03T00:34:05Z,- roslynwythe commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1617048727) at 2023-07-02 05:34 PM PDT -roslynwythe,2023-07-03T00:35:33Z,- roslynwythe commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1617049497) at 2023-07-02 05:35 PM PDT -roslynwythe,2023-07-03T00:36:39Z,- roslynwythe commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1617050135) at 2023-07-02 05:36 PM PDT -roslynwythe,2023-07-03T07:45:17Z,- roslynwythe commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1617552474) at 2023-07-03 12:45 AM PDT -roslynwythe,2023-07-03T07:46:24Z,- roslynwythe commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1617553959) at 2023-07-03 12:46 AM PDT -roslynwythe,2023-07-03T07:47:06Z,- roslynwythe commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1617554960) at 2023-07-03 12:47 AM PDT -roslynwythe,2023-07-03T07:47:51Z,- roslynwythe commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1617555995) at 2023-07-03 12:47 AM PDT -roslynwythe,2023-07-03T07:54:57Z,- roslynwythe commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1617565527) at 2023-07-03 12:54 AM PDT -roslynwythe,2023-07-03T07:55:58Z,- roslynwythe commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1617566910) at 2023-07-03 12:55 AM PDT -roslynwythe,2023-07-03T07:57:47Z,- roslynwythe commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1617569718) at 2023-07-03 12:57 AM PDT -roslynwythe,2023-07-03T07:58:44Z,- roslynwythe commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1617571310) at 2023-07-03 12:58 AM PDT -roslynwythe,2023-07-03T08:01:39Z,- roslynwythe commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1617576145) at 2023-07-03 01:01 AM PDT -roslynwythe,2023-07-03T08:01:39Z,- roslynwythe closed issue as not planned: [4331](https://github.com/hackforla/website/issues/4331#event-9705470010) at 2023-07-03 01:01 AM PDT -roslynwythe,2023-07-03T08:04:57Z,- roslynwythe commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1617580994) at 2023-07-03 01:04 AM PDT -roslynwythe,2023-07-03T08:15:34Z,- roslynwythe commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1617598083) at 2023-07-03 01:15 AM PDT -roslynwythe,2023-07-03T08:16:35Z,- roslynwythe commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1617599602) at 2023-07-03 01:16 AM PDT -roslynwythe,2023-07-03T08:22:17Z,- roslynwythe commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1617607655) at 2023-07-03 01:22 AM PDT -roslynwythe,2023-07-03T08:24:02Z,- roslynwythe commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1617610054) at 2023-07-03 01:24 AM PDT -roslynwythe,2023-07-03T08:25:30Z,- roslynwythe commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1617612265) at 2023-07-03 01:25 AM PDT -roslynwythe,2023-07-03T08:36:25Z,- roslynwythe commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1617631856) at 2023-07-03 01:36 AM PDT -roslynwythe,2023-07-03T08:49:45Z,- roslynwythe commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1617653145) at 2023-07-03 01:49 AM PDT -roslynwythe,2023-07-03T08:52:12Z,- roslynwythe commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1617657348) at 2023-07-03 01:52 AM PDT -roslynwythe,2023-07-03T09:03:10Z,- roslynwythe commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1617675029) at 2023-07-03 02:03 AM PDT -roslynwythe,2023-07-03T09:12:47Z,- roslynwythe commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1617690092) at 2023-07-03 02:12 AM PDT -roslynwythe,2023-07-03T09:15:46Z,- roslynwythe commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1617695501) at 2023-07-03 02:15 AM PDT -roslynwythe,2023-07-03T09:16:34Z,- roslynwythe commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1617696659) at 2023-07-03 02:16 AM PDT -roslynwythe,2023-07-03T09:21:38Z,- roslynwythe commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1617704786) at 2023-07-03 02:21 AM PDT -roslynwythe,2023-07-03T09:22:50Z,- roslynwythe commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1617706400) at 2023-07-03 02:22 AM PDT -roslynwythe,2023-07-03T09:27:25Z,- roslynwythe commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1617713281) at 2023-07-03 02:27 AM PDT -roslynwythe,2023-07-03T09:27:25Z,- roslynwythe closed issue as not planned: [4172](https://github.com/hackforla/website/issues/4172#event-9706521692) at 2023-07-03 02:27 AM PDT -roslynwythe,2023-07-03T09:28:43Z,- roslynwythe commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1617715317) at 2023-07-03 02:28 AM PDT -roslynwythe,2023-07-03T09:31:05Z,- roslynwythe commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1617718872) at 2023-07-03 02:31 AM PDT -roslynwythe,2023-07-03T09:31:05Z,- roslynwythe closed issue as not planned: [4164](https://github.com/hackforla/website/issues/4164#event-9706562819) at 2023-07-03 02:31 AM PDT -roslynwythe,2023-07-03T09:35:50Z,- roslynwythe commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1617726051) at 2023-07-03 02:35 AM PDT -roslynwythe,2023-07-03T09:38:21Z,- roslynwythe commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1617730218) at 2023-07-03 02:38 AM PDT -roslynwythe,2023-07-03T09:38:21Z,- roslynwythe closed issue as not planned: [4162](https://github.com/hackforla/website/issues/4162#event-9706647802) at 2023-07-03 02:38 AM PDT -roslynwythe,2023-07-03T09:39:46Z,- roslynwythe commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1617732632) at 2023-07-03 02:39 AM PDT -roslynwythe,2023-07-03T09:48:19Z,- roslynwythe commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1617748694) at 2023-07-03 02:48 AM PDT -roslynwythe,2023-07-03T09:51:02Z,- roslynwythe commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1617753322) at 2023-07-03 02:51 AM PDT -roslynwythe,2023-07-03T09:53:16Z,- roslynwythe commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1617757071) at 2023-07-03 02:53 AM PDT -roslynwythe,2023-07-03T16:57:35Z,- roslynwythe commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1618888384) at 2023-07-03 09:57 AM PDT -roslynwythe,2023-07-03T16:57:36Z,- roslynwythe closed issue as not planned: [4062](https://github.com/hackforla/website/issues/4062#event-9711649457) at 2023-07-03 09:57 AM PDT -roslynwythe,2023-07-03T17:06:53Z,- roslynwythe commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1618898213) at 2023-07-03 10:06 AM PDT -roslynwythe,2023-07-03T17:10:54Z,- roslynwythe commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1618903090) at 2023-07-03 10:10 AM PDT -roslynwythe,2023-07-03T17:13:53Z,- roslynwythe commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1618905833) at 2023-07-03 10:13 AM PDT -roslynwythe,2023-07-03T17:13:54Z,- roslynwythe closed issue as not planned: [3913](https://github.com/hackforla/website/issues/3913#event-9711812743) at 2023-07-03 10:13 AM PDT -roslynwythe,2023-07-03T17:16:50Z,- roslynwythe commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1618908889) at 2023-07-03 10:16 AM PDT -roslynwythe,2023-07-03T17:20:45Z,- roslynwythe commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1618912351) at 2023-07-03 10:20 AM PDT -roslynwythe,2023-07-03T17:24:19Z,- roslynwythe commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1618915629) at 2023-07-03 10:24 AM PDT -roslynwythe,2023-07-03T17:25:54Z,- roslynwythe commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1618917067) at 2023-07-03 10:25 AM PDT -roslynwythe,2023-07-03T17:28:55Z,- roslynwythe commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1618920459) at 2023-07-03 10:28 AM PDT -roslynwythe,2023-07-03T17:35:37Z,- roslynwythe commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1618927773) at 2023-07-03 10:35 AM PDT -roslynwythe,2023-07-03T17:37:48Z,- roslynwythe commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1618929813) at 2023-07-03 10:37 AM PDT -roslynwythe,2023-07-03T17:40:11Z,- roslynwythe commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1618932338) at 2023-07-03 10:40 AM PDT -roslynwythe,2023-07-03T17:42:34Z,- roslynwythe commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1618934841) at 2023-07-03 10:42 AM PDT -roslynwythe,2023-07-03T17:42:34Z,- roslynwythe closed issue as not planned: [3380](https://github.com/hackforla/website/issues/3380#event-9712079827) at 2023-07-03 10:42 AM PDT -roslynwythe,2023-07-03T17:44:25Z,- roslynwythe commented on issue: [3253](https://github.com/hackforla/website/issues/3253#issuecomment-1618936669) at 2023-07-03 10:44 AM PDT -roslynwythe,2023-07-03T17:44:25Z,- roslynwythe closed issue as not planned: [3253](https://github.com/hackforla/website/issues/3253#event-9712095398) at 2023-07-03 10:44 AM PDT -roslynwythe,2023-07-03T17:49:17Z,- roslynwythe commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1618942184) at 2023-07-03 10:49 AM PDT -roslynwythe,2023-07-04T09:07:35Z,- roslynwythe commented on issue: [4440](https://github.com/hackforla/website/issues/4440#issuecomment-1619851511) at 2023-07-04 02:07 AM PDT -roslynwythe,2023-07-04T09:07:35Z,- roslynwythe closed issue as not planned: [4440](https://github.com/hackforla/website/issues/4440#event-9719287991) at 2023-07-04 02:07 AM PDT -roslynwythe,2023-07-04T23:23:47Z,- roslynwythe opened issue: [4910](https://github.com/hackforla/website/issues/4910) at 2023-07-04 04:23 PM PDT -roslynwythe,2023-07-06T02:58:04Z,- roslynwythe submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1515660539) at 2023-07-05 07:58 PM PDT -roslynwythe,2023-07-06T05:49:36Z,- roslynwythe commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1623031150) at 2023-07-05 10:49 PM PDT -roslynwythe,2023-07-06T06:00:44Z,- roslynwythe submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1515815634) at 2023-07-05 11:00 PM PDT -roslynwythe,2023-07-06T06:00:54Z,- roslynwythe closed issue by PR 4879: [4478](https://github.com/hackforla/website/issues/4478#event-9739711684) at 2023-07-05 11:00 PM PDT -roslynwythe,2023-07-06T06:09:23Z,- roslynwythe commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1623050655) at 2023-07-05 11:09 PM PDT -roslynwythe,2023-07-06T06:33:51Z,- roslynwythe commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1623072580) at 2023-07-05 11:33 PM PDT -roslynwythe,2023-07-06T08:03:39Z,- roslynwythe opened issue: [4916](https://github.com/hackforla/website/issues/4916) at 2023-07-06 01:03 AM PDT -roslynwythe,2023-07-06T08:34:01Z,- roslynwythe commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1623223460) at 2023-07-06 01:34 AM PDT -roslynwythe,2023-07-06T08:43:16Z,- roslynwythe commented on issue: [4910](https://github.com/hackforla/website/issues/4910#issuecomment-1623235646) at 2023-07-06 01:43 AM PDT -roslynwythe,2023-07-06T19:42:45Z,- roslynwythe opened issue: [4917](https://github.com/hackforla/website/issues/4917) at 2023-07-06 12:42 PM PDT -roslynwythe,2023-07-06T23:47:06Z,- roslynwythe opened issue: [4919](https://github.com/hackforla/website/issues/4919) at 2023-07-06 04:47 PM PDT -roslynwythe,2023-07-06T23:50:35Z,- roslynwythe opened issue: [4920](https://github.com/hackforla/website/issues/4920) at 2023-07-06 04:50 PM PDT -roslynwythe,2023-07-07T07:41:36Z,- roslynwythe opened issue: [4922](https://github.com/hackforla/website/issues/4922) at 2023-07-07 12:41 AM PDT -roslynwythe,2023-07-07T08:04:24Z,- roslynwythe submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1518250468) at 2023-07-07 01:04 AM PDT -roslynwythe,2023-07-07T08:12:24Z,- roslynwythe assigned to issue: [4922](https://github.com/hackforla/website/issues/4922) at 2023-07-07 01:12 AM PDT -roslynwythe,2023-07-07T08:23:39Z,- roslynwythe unassigned from issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1624989568) at 2023-07-07 01:23 AM PDT -roslynwythe,2023-07-08T02:12:46Z,- roslynwythe commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1626475482) at 2023-07-07 07:12 PM PDT -roslynwythe,2023-07-08T02:34:32Z,- roslynwythe commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1626517184) at 2023-07-07 07:34 PM PDT -roslynwythe,2023-07-09T08:16:42Z,- roslynwythe commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1627644166) at 2023-07-09 01:16 AM PDT -roslynwythe,2023-07-09T09:35:02Z,- roslynwythe commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1627660845) at 2023-07-09 02:35 AM PDT -roslynwythe,2023-07-09T23:37:44Z,- roslynwythe commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1627862425) at 2023-07-09 04:37 PM PDT -roslynwythe,2023-07-09T23:43:22Z,- roslynwythe commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1627863669) at 2023-07-09 04:43 PM PDT -roslynwythe,2023-07-09T23:43:22Z,- roslynwythe closed issue as completed: [4793](https://github.com/hackforla/website/issues/4793#event-9768190965) at 2023-07-09 04:43 PM PDT -roslynwythe,2023-07-10T16:04:22Z,- roslynwythe commented on issue: [4887](https://github.com/hackforla/website/issues/4887#issuecomment-1629255396) at 2023-07-10 09:04 AM PDT -roslynwythe,2023-07-10T16:24:38Z,- roslynwythe commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1629298118) at 2023-07-10 09:24 AM PDT -roslynwythe,2023-07-10T20:33:21Z,- roslynwythe commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1629690901) at 2023-07-10 01:33 PM PDT -roslynwythe,2023-07-11T01:19:26Z,- roslynwythe commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1629950436) at 2023-07-10 06:19 PM PDT -roslynwythe,2023-07-11T07:22:20Z,- roslynwythe commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1630287150) at 2023-07-11 12:22 AM PDT -roslynwythe,2023-07-11T07:22:21Z,- roslynwythe closed issue as completed: [4075](https://github.com/hackforla/website/issues/4075#event-9783574879) at 2023-07-11 12:22 AM PDT -roslynwythe,2023-07-11T07:30:21Z,- roslynwythe commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1630298021) at 2023-07-11 12:30 AM PDT -roslynwythe,2023-07-11T07:30:21Z,- roslynwythe closed issue as completed: [4061](https://github.com/hackforla/website/issues/4061#event-9783653566) at 2023-07-11 12:30 AM PDT -roslynwythe,2023-07-11T07:35:46Z,- roslynwythe commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1630305518) at 2023-07-11 12:35 AM PDT -roslynwythe,2023-07-11T07:56:29Z,- roslynwythe commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1630335196) at 2023-07-11 12:56 AM PDT -roslynwythe,2023-07-11T08:02:18Z,- roslynwythe commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1630343328) at 2023-07-11 01:02 AM PDT -roslynwythe,2023-07-11T08:02:18Z,- roslynwythe closed issue as completed: [4170](https://github.com/hackforla/website/issues/4170#event-9783971841) at 2023-07-11 01:02 AM PDT -roslynwythe,2023-07-11T08:04:30Z,- roslynwythe commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1630347447) at 2023-07-11 01:04 AM PDT -roslynwythe,2023-07-11T08:04:30Z,- roslynwythe closed issue as completed: [4173](https://github.com/hackforla/website/issues/4173#event-9783995500) at 2023-07-11 01:04 AM PDT -roslynwythe,2023-07-11T08:07:36Z,- roslynwythe commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1630351646) at 2023-07-11 01:07 AM PDT -roslynwythe,2023-07-11T08:07:36Z,- roslynwythe closed issue as completed: [3911](https://github.com/hackforla/website/issues/3911#event-9784028829) at 2023-07-11 01:07 AM PDT -roslynwythe,2023-07-11T08:13:50Z,- roslynwythe commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1630360922) at 2023-07-11 01:13 AM PDT -roslynwythe,2023-07-11T08:13:51Z,- roslynwythe closed issue as completed: [4325](https://github.com/hackforla/website/issues/4325#event-9784095409) at 2023-07-11 01:13 AM PDT -roslynwythe,2023-07-11T08:26:36Z,- roslynwythe commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1630380185) at 2023-07-11 01:26 AM PDT -roslynwythe,2023-07-11T08:26:36Z,- roslynwythe closed issue as completed: [4311](https://github.com/hackforla/website/issues/4311#event-9784237300) at 2023-07-11 01:26 AM PDT -roslynwythe,2023-07-11T08:29:11Z,- roslynwythe commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1630383906) at 2023-07-11 01:29 AM PDT -roslynwythe,2023-07-11T08:29:12Z,- roslynwythe closed issue as completed: [4316](https://github.com/hackforla/website/issues/4316#event-9784265831) at 2023-07-11 01:29 AM PDT -roslynwythe,2023-07-11T08:34:48Z,- roslynwythe commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1630392007) at 2023-07-11 01:34 AM PDT -roslynwythe,2023-07-11T08:34:48Z,- roslynwythe closed issue as completed: [4333](https://github.com/hackforla/website/issues/4333#event-9784327480) at 2023-07-11 01:34 AM PDT -roslynwythe,2023-07-11T08:37:35Z,- roslynwythe commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1630396184) at 2023-07-11 01:37 AM PDT -roslynwythe,2023-07-11T08:37:35Z,- roslynwythe closed issue as completed: [4322](https://github.com/hackforla/website/issues/4322#event-9784358278) at 2023-07-11 01:37 AM PDT -roslynwythe,2023-07-11T08:39:53Z,- roslynwythe commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1630399644) at 2023-07-11 01:39 AM PDT -roslynwythe,2023-07-11T08:39:53Z,- roslynwythe closed issue as completed: [4334](https://github.com/hackforla/website/issues/4334#event-9784382961) at 2023-07-11 01:39 AM PDT -roslynwythe,2023-07-11T08:43:47Z,- roslynwythe commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1630405206) at 2023-07-11 01:43 AM PDT -roslynwythe,2023-07-11T08:43:47Z,- roslynwythe closed issue as completed: [4320](https://github.com/hackforla/website/issues/4320#event-9784425681) at 2023-07-11 01:43 AM PDT -roslynwythe,2023-07-11T08:53:22Z,- roslynwythe commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1630421133) at 2023-07-11 01:53 AM PDT -roslynwythe,2023-07-11T08:53:22Z,- roslynwythe closed issue as completed: [4310](https://github.com/hackforla/website/issues/4310#event-9784530706) at 2023-07-11 01:53 AM PDT -roslynwythe,2023-07-11T08:55:26Z,- roslynwythe commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1630425801) at 2023-07-11 01:55 AM PDT -roslynwythe,2023-07-11T08:55:26Z,- roslynwythe closed issue as completed: [4637](https://github.com/hackforla/website/issues/4637#event-9784552857) at 2023-07-11 01:55 AM PDT -roslynwythe,2023-07-11T08:58:16Z,- roslynwythe commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1630432124) at 2023-07-11 01:58 AM PDT -roslynwythe,2023-07-11T08:58:16Z,- roslynwythe closed issue as completed: [4635](https://github.com/hackforla/website/issues/4635#event-9784584373) at 2023-07-11 01:58 AM PDT -roslynwythe,2023-07-11T09:00:34Z,- roslynwythe commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1630436924) at 2023-07-11 02:00 AM PDT -roslynwythe,2023-07-11T09:00:34Z,- roslynwythe closed issue as completed: [4332](https://github.com/hackforla/website/issues/4332#event-9784611397) at 2023-07-11 02:00 AM PDT -roslynwythe,2023-07-11T09:03:25Z,- roslynwythe commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1630441408) at 2023-07-11 02:03 AM PDT -roslynwythe,2023-07-11T09:03:25Z,- roslynwythe closed issue as completed: [4630](https://github.com/hackforla/website/issues/4630#event-9784645468) at 2023-07-11 02:03 AM PDT -roslynwythe,2023-07-11T09:04:23Z,- roslynwythe closed issue as completed: [4629](https://github.com/hackforla/website/issues/4629#event-9784657568) at 2023-07-11 02:04 AM PDT -roslynwythe,2023-07-11T09:07:40Z,- roslynwythe commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1630447735) at 2023-07-11 02:07 AM PDT -roslynwythe,2023-07-11T09:07:40Z,- roslynwythe closed issue as completed: [4628](https://github.com/hackforla/website/issues/4628#event-9784696342) at 2023-07-11 02:07 AM PDT -roslynwythe,2023-07-11T09:25:01Z,- roslynwythe commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1630472856) at 2023-07-11 02:25 AM PDT -roslynwythe,2023-07-11T09:25:02Z,- roslynwythe closed issue as completed: [4618](https://github.com/hackforla/website/issues/4618#event-9784903623) at 2023-07-11 02:25 AM PDT -roslynwythe,2023-07-11T09:27:00Z,- roslynwythe commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1630475527) at 2023-07-11 02:27 AM PDT -roslynwythe,2023-07-11T09:27:01Z,- roslynwythe closed issue as completed: [4617](https://github.com/hackforla/website/issues/4617#event-9784926943) at 2023-07-11 02:27 AM PDT -roslynwythe,2023-07-11T09:30:09Z,- roslynwythe commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1630479681) at 2023-07-11 02:30 AM PDT -roslynwythe,2023-07-11T09:31:55Z,- roslynwythe commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1630482084) at 2023-07-11 02:31 AM PDT -roslynwythe,2023-07-11T09:34:00Z,- roslynwythe commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1630485149) at 2023-07-11 02:34 AM PDT -roslynwythe,2023-07-11T09:34:00Z,- roslynwythe closed issue as completed: [4611](https://github.com/hackforla/website/issues/4611#event-9785008945) at 2023-07-11 02:34 AM PDT -roslynwythe,2023-07-11T09:36:22Z,- roslynwythe commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1630488722) at 2023-07-11 02:36 AM PDT -roslynwythe,2023-07-11T09:36:22Z,- roslynwythe closed issue as completed: [4610](https://github.com/hackforla/website/issues/4610#event-9785036268) at 2023-07-11 02:36 AM PDT -roslynwythe,2023-07-11T09:44:39Z,- roslynwythe commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1630506322) at 2023-07-11 02:44 AM PDT -roslynwythe,2023-07-11T09:48:29Z,- roslynwythe commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1630514104) at 2023-07-11 02:48 AM PDT -roslynwythe,2023-07-11T09:48:29Z,- roslynwythe closed issue as completed: [4609](https://github.com/hackforla/website/issues/4609#event-9785180415) at 2023-07-11 02:48 AM PDT -roslynwythe,2023-07-11T09:52:18Z,- roslynwythe commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1630519810) at 2023-07-11 02:52 AM PDT -roslynwythe,2023-07-11T09:52:18Z,- roslynwythe closed issue as completed: [4729](https://github.com/hackforla/website/issues/4729#event-9785228369) at 2023-07-11 02:52 AM PDT -roslynwythe,2023-07-11T09:56:04Z,- roslynwythe commented on issue: [4712](https://github.com/hackforla/website/issues/4712#issuecomment-1630525548) at 2023-07-11 02:56 AM PDT -roslynwythe,2023-07-11T09:56:05Z,- roslynwythe closed issue as completed: [4712](https://github.com/hackforla/website/issues/4712#event-9785275688) at 2023-07-11 02:56 AM PDT -roslynwythe,2023-07-11T09:58:08Z,- roslynwythe commented on issue: [4711](https://github.com/hackforla/website/issues/4711#issuecomment-1630528854) at 2023-07-11 02:58 AM PDT -roslynwythe,2023-07-11T09:58:09Z,- roslynwythe closed issue as completed: [4711](https://github.com/hackforla/website/issues/4711#event-9785301150) at 2023-07-11 02:58 AM PDT -roslynwythe,2023-07-11T18:40:49Z,- roslynwythe commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1631324336) at 2023-07-11 11:40 AM PDT -roslynwythe,2023-07-12T02:52:13Z,- roslynwythe commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1631772883) at 2023-07-11 07:52 PM PDT -roslynwythe,2023-07-12T07:21:15Z,- roslynwythe submitted pull request review: [4908](https://github.com/hackforla/website/pull/4908#pullrequestreview-1525683079) at 2023-07-12 12:21 AM PDT -roslynwythe,2023-07-12T07:21:34Z,- roslynwythe closed issue by PR 4908: [4839](https://github.com/hackforla/website/issues/4839#event-9795452868) at 2023-07-12 12:21 AM PDT -roslynwythe,2023-07-12T07:40:51Z,- roslynwythe submitted pull request review: [4927](https://github.com/hackforla/website/pull/4927#pullrequestreview-1525715487) at 2023-07-12 12:40 AM PDT -roslynwythe,2023-07-12T08:02:59Z,- roslynwythe submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1525753854) at 2023-07-12 01:02 AM PDT -roslynwythe,2023-07-12T08:03:48Z,- roslynwythe closed issue by PR 4896: [4475](https://github.com/hackforla/website/issues/4475#event-9795862474) at 2023-07-12 01:03 AM PDT -roslynwythe,2023-07-13T00:42:34Z,- roslynwythe submitted pull request review: [4886](https://github.com/hackforla/website/pull/4886#pullrequestreview-1527408055) at 2023-07-12 05:42 PM PDT -roslynwythe,2023-07-13T02:13:30Z,- roslynwythe commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1633433840) at 2023-07-12 07:13 PM PDT -roslynwythe,2023-07-13T02:25:55Z,- roslynwythe assigned to issue: [4889](https://github.com/hackforla/website/issues/4889#issuecomment-1609009641) at 2023-07-12 07:25 PM PDT -roslynwythe,2023-07-13T02:48:15Z,- roslynwythe opened issue: [4943](https://github.com/hackforla/website/issues/4943) at 2023-07-12 07:48 PM PDT -roslynwythe,2023-07-13T02:48:16Z,- roslynwythe assigned to issue: [4943](https://github.com/hackforla/website/issues/4943) at 2023-07-12 07:48 PM PDT -roslynwythe,2023-07-13T02:53:00Z,- roslynwythe opened issue: [4944](https://github.com/hackforla/website/issues/4944) at 2023-07-12 07:53 PM PDT -roslynwythe,2023-07-13T04:28:20Z,- roslynwythe commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-1633526921) at 2023-07-12 09:28 PM PDT -roslynwythe,2023-07-14T07:35:51Z,- roslynwythe closed issue by PR 4927: [4887](https://github.com/hackforla/website/issues/4887#event-9818979667) at 2023-07-14 12:35 AM PDT -roslynwythe,2023-07-14T07:40:03Z,- roslynwythe commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1635438195) at 2023-07-14 12:40 AM PDT -roslynwythe,2023-07-15T00:16:14Z,- roslynwythe commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1636578542) at 2023-07-14 05:16 PM PDT -roslynwythe,2023-07-16T08:43:42Z,- roslynwythe commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1637026166) at 2023-07-16 01:43 AM PDT -roslynwythe,2023-07-16T09:05:16Z,- roslynwythe commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1637030371) at 2023-07-16 02:05 AM PDT -roslynwythe,2023-07-16T09:25:40Z,- roslynwythe opened issue: [4951](https://github.com/hackforla/website/issues/4951) at 2023-07-16 02:25 AM PDT -roslynwythe,2023-07-16T11:40:06Z,- roslynwythe assigned to issue: [4951](https://github.com/hackforla/website/issues/4951) at 2023-07-16 04:40 AM PDT -roslynwythe,2023-07-16T16:50:06Z,- roslynwythe commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1637136730) at 2023-07-16 09:50 AM PDT -roslynwythe,2023-07-16T19:34:27Z,- roslynwythe commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1637172477) at 2023-07-16 12:34 PM PDT -roslynwythe,2023-07-16T20:20:26Z,- roslynwythe opened issue: [4954](https://github.com/hackforla/website/issues/4954) at 2023-07-16 01:20 PM PDT -roslynwythe,2023-07-16T20:25:07Z,- roslynwythe commented on issue: [4954](https://github.com/hackforla/website/issues/4954#issuecomment-1637182752) at 2023-07-16 01:25 PM PDT -roslynwythe,2023-07-17T01:32:02Z,- roslynwythe opened issue: [4955](https://github.com/hackforla/website/issues/4955) at 2023-07-16 06:32 PM PDT -roslynwythe,2023-07-17T01:52:33Z,- roslynwythe opened issue: [4956](https://github.com/hackforla/website/issues/4956) at 2023-07-16 06:52 PM PDT -roslynwythe,2023-07-17T02:13:56Z,- roslynwythe opened issue: [4957](https://github.com/hackforla/website/issues/4957) at 2023-07-16 07:13 PM PDT -roslynwythe,2023-07-17T02:24:37Z,- roslynwythe opened issue: [4958](https://github.com/hackforla/website/issues/4958) at 2023-07-16 07:24 PM PDT -roslynwythe,2023-07-17T02:30:24Z,- roslynwythe opened issue: [4959](https://github.com/hackforla/website/issues/4959) at 2023-07-16 07:30 PM PDT -roslynwythe,2023-07-17T04:15:26Z,- roslynwythe opened issue: [4960](https://github.com/hackforla/website/issues/4960) at 2023-07-16 09:15 PM PDT -roslynwythe,2023-07-17T16:57:17Z,- roslynwythe commented on issue: [4954](https://github.com/hackforla/website/issues/4954#issuecomment-1638522327) at 2023-07-17 09:57 AM PDT -roslynwythe,2023-07-17T22:21:26Z,- roslynwythe opened issue: [4963](https://github.com/hackforla/website/issues/4963) at 2023-07-17 03:21 PM PDT -roslynwythe,2023-07-17T23:12:39Z,- roslynwythe assigned to issue: [4963](https://github.com/hackforla/website/issues/4963#issuecomment-1638967935) at 2023-07-17 04:12 PM PDT -roslynwythe,2023-07-17T23:46:36Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1639045890) at 2023-07-17 04:46 PM PDT -roslynwythe,2023-07-18T01:19:43Z,- roslynwythe commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1639131839) at 2023-07-17 06:19 PM PDT -roslynwythe,2023-07-18T05:39:41Z,- roslynwythe commented on issue: [4951](https://github.com/hackforla/website/issues/4951#issuecomment-1639518950) at 2023-07-17 10:39 PM PDT -roslynwythe,2023-07-18T05:39:42Z,- roslynwythe closed issue as not planned: [4951](https://github.com/hackforla/website/issues/4951#event-9845772547) at 2023-07-17 10:39 PM PDT -roslynwythe,2023-07-18T06:23:54Z,- roslynwythe assigned to issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1637172477) at 2023-07-17 11:23 PM PDT -roslynwythe,2023-07-18T06:46:17Z,- roslynwythe assigned to issue: [4955](https://github.com/hackforla/website/issues/4955) at 2023-07-17 11:46 PM PDT -roslynwythe,2023-07-18T07:58:07Z,- roslynwythe commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1639710108) at 2023-07-18 12:58 AM PDT -roslynwythe,2023-07-18T19:23:16Z,- roslynwythe commented on issue: [4992](https://github.com/hackforla/website/issues/4992#issuecomment-1640865212) at 2023-07-18 12:23 PM PDT -roslynwythe,2023-07-18T19:23:16Z,- roslynwythe closed issue as not planned: [4992](https://github.com/hackforla/website/issues/4992#event-9854614462) at 2023-07-18 12:23 PM PDT -roslynwythe,2023-07-18T19:25:47Z,- roslynwythe commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1640871582) at 2023-07-18 12:25 PM PDT -roslynwythe,2023-07-18T19:40:55Z,- roslynwythe commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1640896713) at 2023-07-18 12:40 PM PDT -roslynwythe,2023-07-18T19:43:50Z,- roslynwythe commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1640899920) at 2023-07-18 12:43 PM PDT -roslynwythe,2023-07-18T20:27:15Z,- roslynwythe commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1640948466) at 2023-07-18 01:27 PM PDT -roslynwythe,2023-07-18T20:28:58Z,- roslynwythe commented on pull request: [4950](https://github.com/hackforla/website/pull/4950#issuecomment-1640950411) at 2023-07-18 01:28 PM PDT -roslynwythe,2023-07-18T20:35:14Z,- roslynwythe commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1640957144) at 2023-07-18 01:35 PM PDT -roslynwythe,2023-07-19T00:18:52Z,- roslynwythe opened issue: [5005](https://github.com/hackforla/website/issues/5005) at 2023-07-18 05:18 PM PDT -roslynwythe,2023-07-19T00:20:41Z,- roslynwythe commented on issue: [4963](https://github.com/hackforla/website/issues/4963#issuecomment-1641191289) at 2023-07-18 05:20 PM PDT -roslynwythe,2023-07-19T00:46:17Z,- roslynwythe opened issue: [5007](https://github.com/hackforla/website/issues/5007) at 2023-07-18 05:46 PM PDT -roslynwythe,2023-07-19T04:11:42Z,- roslynwythe opened issue: [5008](https://github.com/hackforla/website/issues/5008) at 2023-07-18 09:11 PM PDT -roslynwythe,2023-07-19T04:15:36Z,- roslynwythe opened issue: [5009](https://github.com/hackforla/website/issues/5009) at 2023-07-18 09:15 PM PDT -roslynwythe,2023-07-19T04:18:40Z,- roslynwythe opened issue: [5010](https://github.com/hackforla/website/issues/5010) at 2023-07-18 09:18 PM PDT -roslynwythe,2023-07-19T04:21:20Z,- roslynwythe opened issue: [5011](https://github.com/hackforla/website/issues/5011) at 2023-07-18 09:21 PM PDT -roslynwythe,2023-07-19T04:23:38Z,- roslynwythe opened issue: [5012](https://github.com/hackforla/website/issues/5012) at 2023-07-18 09:23 PM PDT -roslynwythe,2023-07-19T04:25:19Z,- roslynwythe opened issue: [5013](https://github.com/hackforla/website/issues/5013) at 2023-07-18 09:25 PM PDT -roslynwythe,2023-07-19T04:26:53Z,- roslynwythe opened issue: [5014](https://github.com/hackforla/website/issues/5014) at 2023-07-18 09:26 PM PDT -roslynwythe,2023-07-19T04:28:18Z,- roslynwythe opened issue: [5015](https://github.com/hackforla/website/issues/5015) at 2023-07-18 09:28 PM PDT -roslynwythe,2023-07-19T04:30:14Z,- roslynwythe opened issue: [5016](https://github.com/hackforla/website/issues/5016) at 2023-07-18 09:30 PM PDT -roslynwythe,2023-07-19T04:31:50Z,- roslynwythe opened issue: [5017](https://github.com/hackforla/website/issues/5017) at 2023-07-18 09:31 PM PDT -roslynwythe,2023-07-19T05:05:56Z,- roslynwythe opened issue: [5018](https://github.com/hackforla/website/issues/5018) at 2023-07-18 10:05 PM PDT -roslynwythe,2023-07-19T05:08:11Z,- roslynwythe opened issue: [5019](https://github.com/hackforla/website/issues/5019) at 2023-07-18 10:08 PM PDT -roslynwythe,2023-07-19T05:14:46Z,- roslynwythe opened issue: [5020](https://github.com/hackforla/website/issues/5020) at 2023-07-18 10:14 PM PDT -roslynwythe,2023-07-19T05:16:56Z,- roslynwythe opened issue: [5021](https://github.com/hackforla/website/issues/5021) at 2023-07-18 10:16 PM PDT -roslynwythe,2023-07-19T05:18:17Z,- roslynwythe opened issue: [5022](https://github.com/hackforla/website/issues/5022) at 2023-07-18 10:18 PM PDT -roslynwythe,2023-07-19T05:28:43Z,- roslynwythe assigned to issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1627545054) at 2023-07-18 10:28 PM PDT -roslynwythe,2023-07-19T06:13:52Z,- roslynwythe opened pull request: [5025](https://github.com/hackforla/website/pull/5025) at 2023-07-18 11:13 PM PDT -roslynwythe,2023-07-19T06:49:54Z,- roslynwythe assigned to issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1641426376) at 2023-07-18 11:49 PM PDT -roslynwythe,2023-07-19T07:38:11Z,- roslynwythe assigned to issue: [5021](https://github.com/hackforla/website/issues/5021#issuecomment-1641424613) at 2023-07-19 12:38 AM PDT -roslynwythe,2023-07-19T07:40:08Z,- roslynwythe commented on issue: [5021](https://github.com/hackforla/website/issues/5021#issuecomment-1641580774) at 2023-07-19 12:40 AM PDT -roslynwythe,2023-07-19T07:40:08Z,- roslynwythe closed issue as completed: [5021](https://github.com/hackforla/website/issues/5021#event-9859023884) at 2023-07-19 12:40 AM PDT -roslynwythe,2023-07-19T07:45:17Z,- roslynwythe opened issue: [5027](https://github.com/hackforla/website/issues/5027) at 2023-07-19 12:45 AM PDT -roslynwythe,2023-07-19T07:55:27Z,- roslynwythe opened issue: [5028](https://github.com/hackforla/website/issues/5028) at 2023-07-19 12:55 AM PDT -roslynwythe,2023-07-19T08:02:02Z,- roslynwythe commented on issue: [5027](https://github.com/hackforla/website/issues/5027#issuecomment-1641613536) at 2023-07-19 01:02 AM PDT -roslynwythe,2023-07-19T08:17:44Z,- roslynwythe opened issue: [5029](https://github.com/hackforla/website/issues/5029) at 2023-07-19 01:17 AM PDT -roslynwythe,2023-07-19T08:20:52Z,- roslynwythe opened issue: [5030](https://github.com/hackforla/website/issues/5030) at 2023-07-19 01:20 AM PDT -roslynwythe,2023-07-19T08:23:13Z,- roslynwythe opened issue: [5031](https://github.com/hackforla/website/issues/5031) at 2023-07-19 01:23 AM PDT -roslynwythe,2023-07-19T08:26:57Z,- roslynwythe opened issue: [5032](https://github.com/hackforla/website/issues/5032) at 2023-07-19 01:26 AM PDT -roslynwythe,2023-07-19T18:28:54Z,- roslynwythe pull request merged: [5025](https://github.com/hackforla/website/pull/5025#event-9865998506) at 2023-07-19 11:28 AM PDT -roslynwythe,2023-07-19T22:58:20Z,- roslynwythe commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1642871052) at 2023-07-19 03:58 PM PDT -roslynwythe,2023-07-19T23:01:51Z,- roslynwythe commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1642873627) at 2023-07-19 04:01 PM PDT -roslynwythe,2023-07-19T23:03:24Z,- roslynwythe commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1642874682) at 2023-07-19 04:03 PM PDT -roslynwythe,2023-07-19T23:04:59Z,- roslynwythe commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1642875808) at 2023-07-19 04:04 PM PDT -roslynwythe,2023-07-19T23:05:27Z,- roslynwythe closed issue as completed: [4330](https://github.com/hackforla/website/issues/4330#event-9868110609) at 2023-07-19 04:05 PM PDT -roslynwythe,2023-07-19T23:09:20Z,- roslynwythe commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1642879472) at 2023-07-19 04:09 PM PDT -roslynwythe,2023-07-19T23:09:20Z,- roslynwythe closed issue as completed: [4624](https://github.com/hackforla/website/issues/4624#event-9868140371) at 2023-07-19 04:09 PM PDT -roslynwythe,2023-07-19T23:10:47Z,- roslynwythe commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1642880401) at 2023-07-19 04:10 PM PDT -roslynwythe,2023-07-19T23:10:47Z,- roslynwythe closed issue as completed: [4615](https://github.com/hackforla/website/issues/4615#event-9868150227) at 2023-07-19 04:10 PM PDT -roslynwythe,2023-07-19T23:32:57Z,- roslynwythe submitted pull request review: [5034](https://github.com/hackforla/website/pull/5034#pullrequestreview-1538190998) at 2023-07-19 04:32 PM PDT -roslynwythe,2023-07-19T23:36:10Z,- roslynwythe commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1642896786) at 2023-07-19 04:36 PM PDT -roslynwythe,2023-07-19T23:48:10Z,- roslynwythe submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1538204095) at 2023-07-19 04:48 PM PDT -roslynwythe,2023-07-20T02:56:42Z,- roslynwythe opened issue: [5036](https://github.com/hackforla/website/issues/5036) at 2023-07-19 07:56 PM PDT -roslynwythe,2023-07-20T05:17:41Z,- roslynwythe opened issue: [5038](https://github.com/hackforla/website/issues/5038) at 2023-07-19 10:17 PM PDT -roslynwythe,2023-07-20T06:02:00Z,- roslynwythe commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1643298706) at 2023-07-19 11:02 PM PDT -roslynwythe,2023-07-20T07:32:28Z,- roslynwythe submitted pull request review: [4950](https://github.com/hackforla/website/pull/4950#pullrequestreview-1538619863) at 2023-07-20 12:32 AM PDT -roslynwythe,2023-07-20T07:55:06Z,- roslynwythe opened issue: [5040](https://github.com/hackforla/website/issues/5040) at 2023-07-20 12:55 AM PDT -roslynwythe,2023-07-20T08:10:13Z,- roslynwythe commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1643475170) at 2023-07-20 01:10 AM PDT -roslynwythe,2023-07-20T08:28:02Z,- roslynwythe assigned to issue: [5010](https://github.com/hackforla/website/issues/5010#issuecomment-1641388707) at 2023-07-20 01:28 AM PDT -roslynwythe,2023-07-20T08:36:45Z,- roslynwythe opened issue: [5041](https://github.com/hackforla/website/issues/5041) at 2023-07-20 01:36 AM PDT -roslynwythe,2023-07-20T08:40:36Z,- roslynwythe opened issue: [5042](https://github.com/hackforla/website/issues/5042) at 2023-07-20 01:40 AM PDT -roslynwythe,2023-07-20T08:44:28Z,- roslynwythe commented on issue: [5010](https://github.com/hackforla/website/issues/5010#issuecomment-1643522818) at 2023-07-20 01:44 AM PDT -roslynwythe,2023-07-20T08:44:28Z,- roslynwythe closed issue as completed: [5010](https://github.com/hackforla/website/issues/5010#event-9871658768) at 2023-07-20 01:44 AM PDT -roslynwythe,2023-07-20T20:13:32Z,- roslynwythe commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1644538949) at 2023-07-20 01:13 PM PDT -roslynwythe,2023-07-23T07:31:20Z,- roslynwythe commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1646768933) at 2023-07-23 12:31 AM PDT -roslynwythe,2023-07-23T07:45:01Z,- roslynwythe commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1646771332) at 2023-07-23 12:45 AM PDT -roslynwythe,2023-07-23T07:57:31Z,- roslynwythe closed issue as completed: [4471](https://github.com/hackforla/website/issues/4471#event-9892314024) at 2023-07-23 12:57 AM PDT -roslynwythe,2023-07-23T09:03:41Z,- roslynwythe commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1646786951) at 2023-07-23 02:03 AM PDT -roslynwythe,2023-07-23T09:23:55Z,- roslynwythe assigned to issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1499303662) at 2023-07-23 02:23 AM PDT -roslynwythe,2023-07-23T16:55:16Z,- roslynwythe opened pull request: [5053](https://github.com/hackforla/website/pull/5053) at 2023-07-23 09:55 AM PDT -roslynwythe,2023-07-23T17:10:55Z,- roslynwythe unassigned from issue: [4955](https://github.com/hackforla/website/issues/4955#issuecomment-1639600080) at 2023-07-23 10:10 AM PDT -roslynwythe,2023-07-23T18:03:38Z,- roslynwythe pull request merged: [5053](https://github.com/hackforla/website/pull/5053#event-9893283790) at 2023-07-23 11:03 AM PDT -roslynwythe,2023-07-24T16:35:58Z,- roslynwythe opened issue: [5057](https://github.com/hackforla/website/issues/5057) at 2023-07-24 09:35 AM PDT -roslynwythe,2023-07-24T21:44:21Z,- roslynwythe assigned to issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1641190379) at 2023-07-24 02:44 PM PDT -roslynwythe,2023-07-24T21:44:32Z,- roslynwythe unassigned from issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1641190379) at 2023-07-24 02:44 PM PDT -roslynwythe,2023-07-24T22:32:54Z,- roslynwythe opened issue: [5059](https://github.com/hackforla/website/issues/5059) at 2023-07-24 03:32 PM PDT -roslynwythe,2023-07-24T23:36:09Z,- roslynwythe commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1648761354) at 2023-07-24 04:36 PM PDT -roslynwythe,2023-07-25T01:10:43Z,- roslynwythe commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1648821176) at 2023-07-24 06:10 PM PDT -roslynwythe,2023-07-25T01:35:51Z,- roslynwythe unassigned from issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1486445205) at 2023-07-24 06:35 PM PDT -roslynwythe,2023-07-25T08:30:57Z,- roslynwythe assigned to issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1643475170) at 2023-07-25 01:30 AM PDT -roslynwythe,2023-07-25T08:33:09Z,- roslynwythe commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1649376869) at 2023-07-25 01:33 AM PDT -roslynwythe,2023-07-25T19:21:37Z,- roslynwythe commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1650403084) at 2023-07-25 12:21 PM PDT -roslynwythe,2023-07-25T19:21:37Z,- roslynwythe closed issue as completed: [4067](https://github.com/hackforla/website/issues/4067#event-9915553412) at 2023-07-25 12:21 PM PDT -roslynwythe,2023-07-25T19:28:40Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1650412120) at 2023-07-25 12:28 PM PDT -roslynwythe,2023-07-25T20:49:34Z,- roslynwythe opened issue: [5060](https://github.com/hackforla/website/issues/5060) at 2023-07-25 01:49 PM PDT -roslynwythe,2023-07-25T21:15:52Z,- roslynwythe commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1650570533) at 2023-07-25 02:15 PM PDT -roslynwythe,2023-07-25T22:58:55Z,- roslynwythe opened issue: [5062](https://github.com/hackforla/website/issues/5062) at 2023-07-25 03:58 PM PDT -roslynwythe,2023-07-26T01:51:24Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1650851253) at 2023-07-25 06:51 PM PDT -roslynwythe,2023-07-26T01:53:03Z,- roslynwythe commented on issue: [4987](https://github.com/hackforla/website/issues/4987#issuecomment-1650852350) at 2023-07-25 06:53 PM PDT -roslynwythe,2023-07-26T01:53:04Z,- roslynwythe closed issue as completed: [4987](https://github.com/hackforla/website/issues/4987#event-9918387713) at 2023-07-25 06:53 PM PDT -roslynwythe,2023-07-26T06:49:04Z,- roslynwythe commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1651079669) at 2023-07-25 11:49 PM PDT -roslynwythe,2023-07-26T06:52:42Z,- roslynwythe submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1546949318) at 2023-07-25 11:52 PM PDT -roslynwythe,2023-07-27T05:46:17Z,- roslynwythe assigned to issue: [4869](https://github.com/hackforla/website/issues/4869#issuecomment-1600945942) at 2023-07-26 10:46 PM PDT -roslynwythe,2023-07-27T05:55:03Z,- roslynwythe commented on issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1652955401) at 2023-07-26 10:55 PM PDT -roslynwythe,2023-07-27T06:04:13Z,- roslynwythe commented on issue: [5073](https://github.com/hackforla/website/issues/5073#issuecomment-1652963974) at 2023-07-26 11:04 PM PDT -roslynwythe,2023-07-27T06:19:45Z,- roslynwythe opened issue: [5099](https://github.com/hackforla/website/issues/5099) at 2023-07-26 11:19 PM PDT -roslynwythe,2023-07-27T06:23:08Z,- roslynwythe opened issue: [5100](https://github.com/hackforla/website/issues/5100) at 2023-07-26 11:23 PM PDT -roslynwythe,2023-07-27T06:44:10Z,- roslynwythe opened issue: [5101](https://github.com/hackforla/website/issues/5101) at 2023-07-26 11:44 PM PDT -roslynwythe,2023-07-27T07:24:27Z,- roslynwythe opened issue: [5102](https://github.com/hackforla/website/issues/5102) at 2023-07-27 12:24 AM PDT -roslynwythe,2023-07-27T17:38:32Z,- roslynwythe commented on issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1654094739) at 2023-07-27 10:38 AM PDT -roslynwythe,2023-07-30T09:23:22Z,- roslynwythe assigned to issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1650976056) at 2023-07-30 02:23 AM PDT -roslynwythe,2023-07-30T09:23:25Z,- roslynwythe unassigned from issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1650976056) at 2023-07-30 02:23 AM PDT -roslynwythe,2023-07-30T09:57:44Z,- roslynwythe assigned to issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1657089438) at 2023-07-30 02:57 AM PDT -roslynwythe,2023-07-30T18:21:48Z,- roslynwythe commented on issue: [3555](https://github.com/hackforla/website/issues/3555#issuecomment-1657235853) at 2023-07-30 11:21 AM PDT -roslynwythe,2023-07-31T05:12:39Z,- roslynwythe commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1657615891) at 2023-07-30 10:12 PM PDT -roslynwythe,2023-07-31T06:39:51Z,- roslynwythe submitted pull request review: [5117](https://github.com/hackforla/website/pull/5117#pullrequestreview-1554051307) at 2023-07-30 11:39 PM PDT -roslynwythe,2023-07-31T08:21:19Z,- roslynwythe submitted pull request review: [5117](https://github.com/hackforla/website/pull/5117#pullrequestreview-1554209763) at 2023-07-31 01:21 AM PDT -roslynwythe,2023-07-31T08:28:27Z,- roslynwythe submitted pull request review: [5114](https://github.com/hackforla/website/pull/5114#pullrequestreview-1554222989) at 2023-07-31 01:28 AM PDT -roslynwythe,2023-07-31T08:34:38Z,- roslynwythe submitted pull request review: [5112](https://github.com/hackforla/website/pull/5112#pullrequestreview-1554233690) at 2023-07-31 01:34 AM PDT -roslynwythe,2023-07-31T10:43:29Z,- roslynwythe commented on issue: [5057](https://github.com/hackforla/website/issues/5057#issuecomment-1658118238) at 2023-07-31 03:43 AM PDT -roslynwythe,2023-07-31T23:44:59Z,- roslynwythe commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1659356003) at 2023-07-31 04:44 PM PDT -roslynwythe,2023-08-01T07:32:07Z,- roslynwythe commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1659731828) at 2023-08-01 12:32 AM PDT -roslynwythe,2023-08-01T08:31:13Z,- roslynwythe commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1659828419) at 2023-08-01 01:31 AM PDT -roslynwythe,2023-08-01T08:31:13Z,- roslynwythe closed issue as completed: [4050](https://github.com/hackforla/website/issues/4050#event-9973475211) at 2023-08-01 01:31 AM PDT -roslynwythe,2023-08-02T01:48:30Z,- roslynwythe opened issue: [5129](https://github.com/hackforla/website/issues/5129) at 2023-08-01 06:48 PM PDT -roslynwythe,2023-08-02T18:54:57Z,- roslynwythe commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1662791925) at 2023-08-02 11:54 AM PDT -roslynwythe,2023-08-02T18:54:57Z,- roslynwythe closed issue as completed: [4070](https://github.com/hackforla/website/issues/4070#event-9991372030) at 2023-08-02 11:54 AM PDT -roslynwythe,2023-08-02T19:22:25Z,- roslynwythe commented on pull request: [5130](https://github.com/hackforla/website/pull/5130#issuecomment-1662849299) at 2023-08-02 12:22 PM PDT -roslynwythe,2023-08-02T19:29:21Z,- roslynwythe commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1662857695) at 2023-08-02 12:29 PM PDT -roslynwythe,2023-08-02T19:29:25Z,- roslynwythe assigned to issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1662857695) at 2023-08-02 12:29 PM PDT -roslynwythe,2023-08-02T19:41:00Z,- roslynwythe submitted pull request review: [5124](https://github.com/hackforla/website/pull/5124#pullrequestreview-1559727526) at 2023-08-02 12:41 PM PDT -roslynwythe,2023-08-02T20:53:07Z,- roslynwythe submitted pull request review: [5051](https://github.com/hackforla/website/pull/5051#pullrequestreview-1559826383) at 2023-08-02 01:53 PM PDT -roslynwythe,2023-08-02T20:54:17Z,- roslynwythe closed issue by PR 5051: [4565](https://github.com/hackforla/website/issues/4565#event-9992311989) at 2023-08-02 01:54 PM PDT -roslynwythe,2023-08-02T21:14:24Z,- roslynwythe commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1662973020) at 2023-08-02 02:14 PM PDT -roslynwythe,2023-08-02T21:41:27Z,- roslynwythe submitted pull request review: [5130](https://github.com/hackforla/website/pull/5130#pullrequestreview-1559885120) at 2023-08-02 02:41 PM PDT -roslynwythe,2023-08-02T23:56:40Z,- roslynwythe closed issue by PR 5114: [4800](https://github.com/hackforla/website/issues/4800#event-9993230539) at 2023-08-02 04:56 PM PDT -roslynwythe,2023-08-03T06:47:55Z,- roslynwythe commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1663387211) at 2023-08-02 11:47 PM PDT -roslynwythe,2023-08-04T01:52:44Z,- roslynwythe commented on issue: [5041](https://github.com/hackforla/website/issues/5041#issuecomment-1664862103) at 2023-08-03 06:52 PM PDT -roslynwythe,2023-08-04T09:35:17Z,- roslynwythe opened issue: [5136](https://github.com/hackforla/website/issues/5136) at 2023-08-04 02:35 AM PDT -roslynwythe,2023-08-04T09:38:18Z,- roslynwythe opened issue: [5137](https://github.com/hackforla/website/issues/5137) at 2023-08-04 02:38 AM PDT -roslynwythe,2023-08-04T09:44:29Z,- roslynwythe opened issue: [5138](https://github.com/hackforla/website/issues/5138) at 2023-08-04 02:44 AM PDT -roslynwythe,2023-08-04T09:46:46Z,- roslynwythe opened issue: [5139](https://github.com/hackforla/website/issues/5139) at 2023-08-04 02:46 AM PDT -roslynwythe,2023-08-04T09:48:46Z,- roslynwythe opened issue: [5140](https://github.com/hackforla/website/issues/5140) at 2023-08-04 02:48 AM PDT -roslynwythe,2023-08-06T06:31:35Z,- roslynwythe assigned to issue: [4955](https://github.com/hackforla/website/issues/4955#issuecomment-1639600080) at 2023-08-05 11:31 PM PDT -roslynwythe,2023-08-06T06:46:27Z,- roslynwythe commented on issue: [4955](https://github.com/hackforla/website/issues/4955#issuecomment-1666744413) at 2023-08-05 11:46 PM PDT -roslynwythe,2023-08-06T06:46:27Z,- roslynwythe closed issue as completed: [4955](https://github.com/hackforla/website/issues/4955#event-10016705560) at 2023-08-05 11:46 PM PDT -roslynwythe,2023-08-06T06:47:27Z,- roslynwythe assigned to issue: [4956](https://github.com/hackforla/website/issues/4956) at 2023-08-05 11:47 PM PDT -roslynwythe,2023-08-06T06:48:19Z,- roslynwythe commented on issue: [4956](https://github.com/hackforla/website/issues/4956#issuecomment-1666744863) at 2023-08-05 11:48 PM PDT -roslynwythe,2023-08-06T06:48:19Z,- roslynwythe closed issue as completed: [4956](https://github.com/hackforla/website/issues/4956#event-10016707582) at 2023-08-05 11:48 PM PDT -roslynwythe,2023-08-06T07:03:25Z,- roslynwythe assigned to issue: [5102](https://github.com/hackforla/website/issues/5102#issuecomment-1653049187) at 2023-08-06 12:03 AM PDT -roslynwythe,2023-08-06T07:05:10Z,- roslynwythe commented on issue: [5102](https://github.com/hackforla/website/issues/5102#issuecomment-1666749509) at 2023-08-06 12:05 AM PDT -roslynwythe,2023-08-06T07:05:11Z,- roslynwythe closed issue as completed: [5102](https://github.com/hackforla/website/issues/5102#event-10016729880) at 2023-08-06 12:05 AM PDT -roslynwythe,2023-08-06T08:36:28Z,- roslynwythe opened issue: [5146](https://github.com/hackforla/website/issues/5146) at 2023-08-06 01:36 AM PDT -roslynwythe,2023-08-06T08:53:10Z,- roslynwythe commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1666779604) at 2023-08-06 01:53 AM PDT -roslynwythe,2023-08-06T09:09:29Z,- roslynwythe opened issue: [5147](https://github.com/hackforla/website/issues/5147) at 2023-08-06 02:09 AM PDT -roslynwythe,2023-08-06T09:10:34Z,- roslynwythe opened issue: [5148](https://github.com/hackforla/website/issues/5148) at 2023-08-06 02:10 AM PDT -roslynwythe,2023-08-06T09:11:17Z,- roslynwythe opened issue: [5149](https://github.com/hackforla/website/issues/5149) at 2023-08-06 02:11 AM PDT -roslynwythe,2023-08-06T09:11:51Z,- roslynwythe opened issue: [5150](https://github.com/hackforla/website/issues/5150) at 2023-08-06 02:11 AM PDT -roslynwythe,2023-08-06T18:51:17Z,- roslynwythe commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1666943499) at 2023-08-06 11:51 AM PDT -roslynwythe,2023-08-06T23:09:00Z,- roslynwythe commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1666999476) at 2023-08-06 04:09 PM PDT -roslynwythe,2023-08-07T03:20:01Z,- roslynwythe commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1667126083) at 2023-08-06 08:20 PM PDT -roslynwythe,2023-08-07T03:33:13Z,- roslynwythe opened issue: [5153](https://github.com/hackforla/website/issues/5153) at 2023-08-06 08:33 PM PDT -roslynwythe,2023-08-07T03:37:02Z,- roslynwythe opened issue: [5154](https://github.com/hackforla/website/issues/5154) at 2023-08-06 08:37 PM PDT -roslynwythe,2023-08-07T06:01:37Z,- roslynwythe commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1667235885) at 2023-08-06 11:01 PM PDT -roslynwythe,2023-08-07T07:06:46Z,- roslynwythe commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1667304186) at 2023-08-07 12:06 AM PDT -roslynwythe,2023-08-07T07:54:08Z,- roslynwythe opened pull request: [5156](https://github.com/hackforla/website/pull/5156) at 2023-08-07 12:54 AM PDT -roslynwythe,2023-08-07T08:13:35Z,- roslynwythe commented on pull request: [5156](https://github.com/hackforla/website/pull/5156#issuecomment-1667402382) at 2023-08-07 01:13 AM PDT -roslynwythe,2023-08-07T08:13:35Z,- roslynwythe pull request closed w/o merging: [5156](https://github.com/hackforla/website/pull/5156#event-10020899220) at 2023-08-07 01:13 AM PDT -roslynwythe,2023-08-07T20:09:38Z,- roslynwythe commented on issue: [4869](https://github.com/hackforla/website/issues/4869#issuecomment-1668503971) at 2023-08-07 01:09 PM PDT -roslynwythe,2023-08-07T20:09:39Z,- roslynwythe closed issue as not planned: [4869](https://github.com/hackforla/website/issues/4869#event-10028312877) at 2023-08-07 01:09 PM PDT -roslynwythe,2023-08-07T23:31:13Z,- roslynwythe opened issue: [5159](https://github.com/hackforla/website/issues/5159) at 2023-08-07 04:31 PM PDT -roslynwythe,2023-08-08T07:06:33Z,- roslynwythe commented on issue: [4885](https://github.com/hackforla/website/issues/4885#issuecomment-1669027624) at 2023-08-08 12:06 AM PDT -roslynwythe,2023-08-08T07:06:34Z,- roslynwythe closed issue as completed: [4885](https://github.com/hackforla/website/issues/4885#event-10031706984) at 2023-08-08 12:06 AM PDT -roslynwythe,2023-08-08T08:18:51Z,- roslynwythe opened issue: [5165](https://github.com/hackforla/website/issues/5165) at 2023-08-08 01:18 AM PDT -roslynwythe,2023-08-09T02:33:14Z,- roslynwythe commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1670565674) at 2023-08-08 07:33 PM PDT -roslynwythe,2023-08-09T04:39:16Z,- roslynwythe opened issue: [5166](https://github.com/hackforla/website/issues/5166) at 2023-08-08 09:39 PM PDT -roslynwythe,2023-08-09T23:23:04Z,- roslynwythe opened issue: [5171](https://github.com/hackforla/website/issues/5171) at 2023-08-09 04:23 PM PDT -roslynwythe,2023-08-09T23:23:44Z,- roslynwythe opened issue: [5172](https://github.com/hackforla/website/issues/5172) at 2023-08-09 04:23 PM PDT -roslynwythe,2023-08-09T23:24:18Z,- roslynwythe opened issue: [5173](https://github.com/hackforla/website/issues/5173) at 2023-08-09 04:24 PM PDT -roslynwythe,2023-08-09T23:24:41Z,- roslynwythe opened issue: [5174](https://github.com/hackforla/website/issues/5174) at 2023-08-09 04:24 PM PDT -roslynwythe,2023-08-09T23:25:02Z,- roslynwythe opened issue: [5175](https://github.com/hackforla/website/issues/5175) at 2023-08-09 04:25 PM PDT -roslynwythe,2023-08-09T23:25:21Z,- roslynwythe opened issue: [5176](https://github.com/hackforla/website/issues/5176) at 2023-08-09 04:25 PM PDT -roslynwythe,2023-08-09T23:25:35Z,- roslynwythe opened issue: [5177](https://github.com/hackforla/website/issues/5177) at 2023-08-09 04:25 PM PDT -roslynwythe,2023-08-09T23:26:03Z,- roslynwythe opened issue: [5178](https://github.com/hackforla/website/issues/5178) at 2023-08-09 04:26 PM PDT -roslynwythe,2023-08-09T23:26:23Z,- roslynwythe opened issue: [5179](https://github.com/hackforla/website/issues/5179) at 2023-08-09 04:26 PM PDT -roslynwythe,2023-08-10T04:11:44Z,- roslynwythe submitted pull request review: [5168](https://github.com/hackforla/website/pull/5168#pullrequestreview-1570984714) at 2023-08-09 09:11 PM PDT -roslynwythe,2023-08-10T04:13:09Z,- roslynwythe commented on pull request: [5168](https://github.com/hackforla/website/pull/5168#issuecomment-1672526731) at 2023-08-09 09:13 PM PDT -roslynwythe,2023-08-10T04:19:54Z,- roslynwythe commented on issue: [5011](https://github.com/hackforla/website/issues/5011#issuecomment-1672530923) at 2023-08-09 09:19 PM PDT -roslynwythe,2023-08-10T04:19:54Z,- roslynwythe closed issue as completed: [5011](https://github.com/hackforla/website/issues/5011#event-10054462476) at 2023-08-09 09:19 PM PDT -roslynwythe,2023-08-10T04:41:51Z,- roslynwythe commented on issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1672544244) at 2023-08-09 09:41 PM PDT -roslynwythe,2023-08-10T04:41:51Z,- roslynwythe closed issue as completed: [5019](https://github.com/hackforla/website/issues/5019#event-10054559299) at 2023-08-09 09:41 PM PDT -roslynwythe,2023-08-10T07:18:31Z,- roslynwythe commented on issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1672689584) at 2023-08-10 12:18 AM PDT -roslynwythe,2023-08-10T07:18:31Z,- roslynwythe closed issue as completed: [5016](https://github.com/hackforla/website/issues/5016#event-10055586008) at 2023-08-10 12:18 AM PDT -roslynwythe,2023-08-10T08:43:42Z,- roslynwythe opened issue: [5180](https://github.com/hackforla/website/issues/5180) at 2023-08-10 01:43 AM PDT -roslynwythe,2023-08-10T08:55:35Z,- roslynwythe opened issue: [5181](https://github.com/hackforla/website/issues/5181) at 2023-08-10 01:55 AM PDT -roslynwythe,2023-08-10T19:28:26Z,- roslynwythe opened issue: [5182](https://github.com/hackforla/website/issues/5182) at 2023-08-10 12:28 PM PDT -roslynwythe,2023-08-10T19:28:27Z,- roslynwythe assigned to issue: [5182](https://github.com/hackforla/website/issues/5182) at 2023-08-10 12:28 PM PDT -roslynwythe,2023-08-11T23:25:18Z,- roslynwythe opened issue: [5184](https://github.com/hackforla/website/issues/5184) at 2023-08-11 04:25 PM PDT -roslynwythe,2023-08-11T23:25:57Z,- roslynwythe opened issue: [5185](https://github.com/hackforla/website/issues/5185) at 2023-08-11 04:25 PM PDT -roslynwythe,2023-08-11T23:40:41Z,- roslynwythe opened issue: [5186](https://github.com/hackforla/website/issues/5186) at 2023-08-11 04:40 PM PDT -roslynwythe,2023-08-11T23:41:11Z,- roslynwythe opened issue: [5187](https://github.com/hackforla/website/issues/5187) at 2023-08-11 04:41 PM PDT -roslynwythe,2023-08-12T01:28:08Z,- roslynwythe opened issue: [5188](https://github.com/hackforla/website/issues/5188) at 2023-08-11 06:28 PM PDT -roslynwythe,2023-08-12T01:28:59Z,- roslynwythe opened issue: [5189](https://github.com/hackforla/website/issues/5189) at 2023-08-11 06:28 PM PDT -roslynwythe,2023-08-13T08:32:16Z,- roslynwythe commented on issue: [4884](https://github.com/hackforla/website/issues/4884#issuecomment-1676281000) at 2023-08-13 01:32 AM PDT -roslynwythe,2023-08-13T09:27:17Z,- roslynwythe commented on issue: [5017](https://github.com/hackforla/website/issues/5017#issuecomment-1676295936) at 2023-08-13 02:27 AM PDT -roslynwythe,2023-08-13T09:27:18Z,- roslynwythe closed issue as completed: [5017](https://github.com/hackforla/website/issues/5017#event-10079472005) at 2023-08-13 02:27 AM PDT -roslynwythe,2023-08-13T09:31:09Z,- roslynwythe commented on issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1676297226) at 2023-08-13 02:31 AM PDT -roslynwythe,2023-08-13T09:31:10Z,- roslynwythe closed issue as completed: [5009](https://github.com/hackforla/website/issues/5009#event-10079478735) at 2023-08-13 02:31 AM PDT -roslynwythe,2023-08-13T09:35:07Z,- roslynwythe commented on issue: [5012](https://github.com/hackforla/website/issues/5012#issuecomment-1676298405) at 2023-08-13 02:35 AM PDT -roslynwythe,2023-08-13T09:35:07Z,- roslynwythe closed issue as completed: [5012](https://github.com/hackforla/website/issues/5012#event-10079486726) at 2023-08-13 02:35 AM PDT -roslynwythe,2023-08-13T09:38:10Z,- roslynwythe commented on issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1676299187) at 2023-08-13 02:38 AM PDT -roslynwythe,2023-08-13T09:38:10Z,- roslynwythe closed issue as completed: [5008](https://github.com/hackforla/website/issues/5008#event-10079492339) at 2023-08-13 02:38 AM PDT -roslynwythe,2023-08-13T09:45:21Z,- roslynwythe commented on issue: [5100](https://github.com/hackforla/website/issues/5100#issuecomment-1676300819) at 2023-08-13 02:45 AM PDT -roslynwythe,2023-08-13T09:45:21Z,- roslynwythe closed issue as completed: [5100](https://github.com/hackforla/website/issues/5100#event-10079504451) at 2023-08-13 02:45 AM PDT -roslynwythe,2023-08-13T17:18:17Z,- roslynwythe commented on pull request: [5190](https://github.com/hackforla/website/pull/5190#issuecomment-1676416754) at 2023-08-13 10:18 AM PDT -roslynwythe,2023-08-13T22:19:06Z,- roslynwythe commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1676478228) at 2023-08-13 03:19 PM PDT -roslynwythe,2023-08-13T23:16:19Z,- roslynwythe commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1676490798) at 2023-08-13 04:16 PM PDT -roslynwythe,2023-08-14T08:51:20Z,- roslynwythe opened issue: [5196](https://github.com/hackforla/website/issues/5196) at 2023-08-14 01:51 AM PDT -roslynwythe,2023-08-14T18:57:20Z,- roslynwythe opened issue: [5197](https://github.com/hackforla/website/issues/5197) at 2023-08-14 11:57 AM PDT -roslynwythe,2023-08-14T18:57:23Z,- roslynwythe opened issue: [5198](https://github.com/hackforla/website/issues/5198) at 2023-08-14 11:57 AM PDT -roslynwythe,2023-08-14T19:09:46Z,- roslynwythe opened issue: [5199](https://github.com/hackforla/website/issues/5199) at 2023-08-14 12:09 PM PDT -roslynwythe,2023-08-14T19:09:50Z,- roslynwythe opened issue: [5200](https://github.com/hackforla/website/issues/5200) at 2023-08-14 12:09 PM PDT -roslynwythe,2023-08-14T19:19:11Z,- roslynwythe opened issue: [5201](https://github.com/hackforla/website/issues/5201) at 2023-08-14 12:19 PM PDT -roslynwythe,2023-08-14T23:48:37Z,- roslynwythe opened issue: [5202](https://github.com/hackforla/website/issues/5202) at 2023-08-14 04:48 PM PDT -roslynwythe,2023-08-15T01:43:47Z,- roslynwythe opened pull request: [5204](https://github.com/hackforla/website/pull/5204) at 2023-08-14 06:43 PM PDT -roslynwythe,2023-08-15T01:57:03Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1678320243) at 2023-08-14 06:57 PM PDT -roslynwythe,2023-08-15T07:18:40Z,- roslynwythe opened issue: [5234](https://github.com/hackforla/website/issues/5234) at 2023-08-15 12:18 AM PDT -roslynwythe,2023-08-15T21:13:27Z,- roslynwythe commented on issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1679623123) at 2023-08-15 02:13 PM PDT -roslynwythe,2023-08-15T21:28:35Z,- roslynwythe commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-1679640456) at 2023-08-15 02:28 PM PDT -roslynwythe,2023-08-15T21:30:13Z,- roslynwythe commented on issue: [5230](https://github.com/hackforla/website/issues/5230#issuecomment-1679642544) at 2023-08-15 02:30 PM PDT -roslynwythe,2023-08-15T21:44:49Z,- roslynwythe commented on issue: [5224](https://github.com/hackforla/website/issues/5224#issuecomment-1679659865) at 2023-08-15 02:44 PM PDT -roslynwythe,2023-08-15T23:22:29Z,- roslynwythe commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1679752622) at 2023-08-15 04:22 PM PDT -roslynwythe,2023-08-15T23:26:53Z,- roslynwythe commented on issue: [5217](https://github.com/hackforla/website/issues/5217#issuecomment-1679755505) at 2023-08-15 04:26 PM PDT -roslynwythe,2023-08-16T04:37:47Z,- roslynwythe submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579785397) at 2023-08-15 09:37 PM PDT -roslynwythe,2023-08-16T06:05:22Z,- roslynwythe submitted pull request review: [5124](https://github.com/hackforla/website/pull/5124#pullrequestreview-1579858106) at 2023-08-15 11:05 PM PDT -roslynwythe,2023-08-16T06:05:38Z,- roslynwythe closed issue by PR 5124: [4799](https://github.com/hackforla/website/issues/4799#event-10104100542) at 2023-08-15 11:05 PM PDT -roslynwythe,2023-08-16T06:14:25Z,- roslynwythe submitted pull request review: [4904](https://github.com/hackforla/website/pull/4904#pullrequestreview-1579867402) at 2023-08-15 11:14 PM PDT -roslynwythe,2023-08-16T06:14:33Z,- roslynwythe closed issue by PR 4904: [3863](https://github.com/hackforla/website/issues/3863#event-10104156997) at 2023-08-15 11:14 PM PDT -roslynwythe,2023-08-16T07:06:25Z,- roslynwythe closed issue as completed: [3376](https://github.com/hackforla/website/issues/3376#event-10104548550) at 2023-08-16 12:06 AM PDT -roslynwythe,2023-08-16T07:07:10Z,- roslynwythe commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1680076842) at 2023-08-16 12:07 AM PDT -roslynwythe,2023-08-16T07:07:10Z,- roslynwythe reopened issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1680076842) at 2023-08-16 12:07 AM PDT -roslynwythe,2023-08-16T08:05:41Z,- roslynwythe assigned to issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1505531408) at 2023-08-16 01:05 AM PDT -roslynwythe,2023-08-16T08:16:33Z,- roslynwythe commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1680166300) at 2023-08-16 01:16 AM PDT -roslynwythe,2023-08-17T02:21:42Z,- roslynwythe commented on issue: [3376](https://github.com/hackforla/website/issues/3376#issuecomment-1681512481) at 2023-08-16 07:21 PM PDT -roslynwythe,2023-08-17T02:34:05Z,- roslynwythe commented on issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681520779) at 2023-08-16 07:34 PM PDT -roslynwythe,2023-08-17T02:38:52Z,- roslynwythe opened issue: [5242](https://github.com/hackforla/website/issues/5242) at 2023-08-16 07:38 PM PDT -roslynwythe,2023-08-17T16:16:22Z,- roslynwythe opened issue: [5244](https://github.com/hackforla/website/issues/5244) at 2023-08-17 09:16 AM PDT -roslynwythe,2023-08-17T23:00:32Z,- roslynwythe opened issue: [5248](https://github.com/hackforla/website/issues/5248) at 2023-08-17 04:00 PM PDT -roslynwythe,2023-08-19T01:29:47Z,- roslynwythe opened issue: [5253](https://github.com/hackforla/website/issues/5253) at 2023-08-18 06:29 PM PDT -roslynwythe,2023-08-19T01:40:42Z,- roslynwythe opened issue: [5254](https://github.com/hackforla/website/issues/5254) at 2023-08-18 06:40 PM PDT -roslynwythe,2023-08-19T01:59:54Z,- roslynwythe opened issue: [5255](https://github.com/hackforla/website/issues/5255) at 2023-08-18 06:59 PM PDT -roslynwythe,2023-08-19T02:01:54Z,- roslynwythe opened issue: [5256](https://github.com/hackforla/website/issues/5256) at 2023-08-18 07:01 PM PDT -roslynwythe,2023-08-20T08:37:54Z,- roslynwythe opened issue: [5265](https://github.com/hackforla/website/issues/5265) at 2023-08-20 01:37 AM PDT -roslynwythe,2023-08-20T08:44:45Z,- roslynwythe opened issue: [5266](https://github.com/hackforla/website/issues/5266) at 2023-08-20 01:44 AM PDT -roslynwythe,2023-08-20T08:45:44Z,- roslynwythe opened issue: [5267](https://github.com/hackforla/website/issues/5267) at 2023-08-20 01:45 AM PDT -roslynwythe,2023-08-20T10:12:54Z,- roslynwythe commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1685245585) at 2023-08-20 03:12 AM PDT -roslynwythe,2023-08-20T10:22:42Z,- roslynwythe commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1685247438) at 2023-08-20 03:22 AM PDT -roslynwythe,2023-08-20T17:32:39Z,- roslynwythe commented on pull request: [5250](https://github.com/hackforla/website/pull/5250#issuecomment-1685348512) at 2023-08-20 10:32 AM PDT -roslynwythe,2023-08-21T02:32:10Z,- roslynwythe opened issue: [5277](https://github.com/hackforla/website/issues/5277) at 2023-08-20 07:32 PM PDT -roslynwythe,2023-08-21T08:17:26Z,- roslynwythe submitted pull request review: [5261](https://github.com/hackforla/website/pull/5261#pullrequestreview-1586462977) at 2023-08-21 01:17 AM PDT -roslynwythe,2023-08-21T08:36:02Z,- roslynwythe submitted pull request review: [5262](https://github.com/hackforla/website/pull/5262#pullrequestreview-1586495447) at 2023-08-21 01:36 AM PDT -roslynwythe,2023-08-21T08:41:38Z,- roslynwythe commented on pull request: [5259](https://github.com/hackforla/website/pull/5259#issuecomment-1685904023) at 2023-08-21 01:41 AM PDT -roslynwythe,2023-08-21T08:54:14Z,- roslynwythe submitted pull request review: [5257](https://github.com/hackforla/website/pull/5257#pullrequestreview-1586528897) at 2023-08-21 01:54 AM PDT -roslynwythe,2023-08-21T08:54:22Z,- roslynwythe closed issue by PR 5257: [5254](https://github.com/hackforla/website/issues/5254#event-10142723403) at 2023-08-21 01:54 AM PDT -roslynwythe,2023-08-21T09:16:13Z,- roslynwythe opened issue: [5279](https://github.com/hackforla/website/issues/5279) at 2023-08-21 02:16 AM PDT -roslynwythe,2023-08-21T09:26:52Z,- roslynwythe assigned to issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1685956321) at 2023-08-21 02:26 AM PDT -roslynwythe,2023-08-21T09:28:17Z,- roslynwythe commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1685974632) at 2023-08-21 02:28 AM PDT -roslynwythe,2023-08-21T20:51:03Z,- roslynwythe opened issue: [5281](https://github.com/hackforla/website/issues/5281) at 2023-08-21 01:51 PM PDT -roslynwythe,2023-08-23T02:53:14Z,- roslynwythe opened issue: [5285](https://github.com/hackforla/website/issues/5285) at 2023-08-22 07:53 PM PDT -roslynwythe,2023-08-23T02:56:58Z,- roslynwythe opened issue: [5286](https://github.com/hackforla/website/issues/5286) at 2023-08-22 07:56 PM PDT -roslynwythe,2023-08-23T02:58:39Z,- roslynwythe opened issue: [5287](https://github.com/hackforla/website/issues/5287) at 2023-08-22 07:58 PM PDT -roslynwythe,2023-08-23T03:01:52Z,- roslynwythe opened issue: [5288](https://github.com/hackforla/website/issues/5288) at 2023-08-22 08:01 PM PDT -roslynwythe,2023-08-23T06:52:51Z,- roslynwythe commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1689381968) at 2023-08-22 11:52 PM PDT -roslynwythe,2023-08-23T06:52:51Z,- roslynwythe closed issue as completed: [5129](https://github.com/hackforla/website/issues/5129#event-10166203890) at 2023-08-22 11:52 PM PDT -roslynwythe,2023-08-24T02:42:26Z,- roslynwythe unassigned from issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1683454901) at 2023-08-23 07:42 PM PDT -roslynwythe,2023-08-24T03:16:47Z,- roslynwythe opened issue: [5297](https://github.com/hackforla/website/issues/5297) at 2023-08-23 08:16 PM PDT -roslynwythe,2023-08-24T06:12:58Z,- roslynwythe assigned to issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1685247438) at 2023-08-23 11:12 PM PDT -roslynwythe,2023-08-24T17:34:57Z,- roslynwythe commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1692141669) at 2023-08-24 10:34 AM PDT -roslynwythe,2023-08-24T18:13:44Z,- roslynwythe submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1594188814) at 2023-08-24 11:13 AM PDT -roslynwythe,2023-08-24T18:13:52Z,- roslynwythe closed issue by PR 5236: [5030](https://github.com/hackforla/website/issues/5030#event-10184610473) at 2023-08-24 11:13 AM PDT -roslynwythe,2023-08-26T01:23:33Z,- roslynwythe unassigned from issue: [4456](https://github.com/hackforla/website/issues/4456#issuecomment-1518913136) at 2023-08-25 06:23 PM PDT -roslynwythe,2023-08-26T01:44:48Z,- roslynwythe opened issue: [5311](https://github.com/hackforla/website/issues/5311) at 2023-08-25 06:44 PM PDT -roslynwythe,2023-08-26T01:59:09Z,- roslynwythe commented on issue: [5311](https://github.com/hackforla/website/issues/5311#issuecomment-1694113518) at 2023-08-25 06:59 PM PDT -roslynwythe,2023-08-26T02:28:42Z,- roslynwythe opened issue: [5312](https://github.com/hackforla/website/issues/5312) at 2023-08-25 07:28 PM PDT -roslynwythe,2023-08-27T09:15:51Z,- roslynwythe opened issue: [5313](https://github.com/hackforla/website/issues/5313) at 2023-08-27 02:15 AM PDT -roslynwythe,2023-08-27T10:14:21Z,- roslynwythe commented on issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1694627286) at 2023-08-27 03:14 AM PDT -roslynwythe,2023-08-27T16:35:04Z,- roslynwythe commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1694709594) at 2023-08-27 09:35 AM PDT -roslynwythe,2023-08-27T16:57:54Z,- roslynwythe commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1694714168) at 2023-08-27 09:57 AM PDT -roslynwythe,2023-08-27T16:58:00Z,- roslynwythe reopened issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1694714168) at 2023-08-27 09:58 AM PDT -roslynwythe,2023-08-27T17:25:07Z,- roslynwythe commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1694720021) at 2023-08-27 10:25 AM PDT -roslynwythe,2023-08-27T17:25:07Z,- roslynwythe closed issue as completed: [5022](https://github.com/hackforla/website/issues/5022#event-10202193935) at 2023-08-27 10:25 AM PDT -roslynwythe,2023-08-27T18:27:32Z,- roslynwythe opened issue: [5317](https://github.com/hackforla/website/issues/5317) at 2023-08-27 11:27 AM PDT -roslynwythe,2023-08-27T18:56:04Z,- roslynwythe opened issue: [5318](https://github.com/hackforla/website/issues/5318) at 2023-08-27 11:56 AM PDT -roslynwythe,2023-08-27T19:00:17Z,- roslynwythe opened issue: [5319](https://github.com/hackforla/website/issues/5319) at 2023-08-27 12:00 PM PDT -roslynwythe,2023-08-28T09:26:49Z,- roslynwythe commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1695353649) at 2023-08-28 02:26 AM PDT -roslynwythe,2023-08-28T18:36:44Z,- roslynwythe commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1696160372) at 2023-08-28 11:36 AM PDT -roslynwythe,2023-08-28T21:49:34Z,- roslynwythe commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1696475490) at 2023-08-28 02:49 PM PDT -roslynwythe,2023-08-28T22:15:30Z,- roslynwythe commented on issue: [3763](https://github.com/hackforla/website/issues/3763#issuecomment-1696499947) at 2023-08-28 03:15 PM PDT -roslynwythe,2023-08-28T22:30:21Z,- roslynwythe assigned to issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1513873050) at 2023-08-28 03:30 PM PDT -roslynwythe,2023-08-28T22:39:39Z,- roslynwythe commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1696522410) at 2023-08-28 03:39 PM PDT -roslynwythe,2023-08-28T22:40:20Z,- roslynwythe commented on issue: [4431](https://github.com/hackforla/website/issues/4431#issuecomment-1696523046) at 2023-08-28 03:40 PM PDT -roslynwythe,2023-08-28T22:40:20Z,- roslynwythe closed issue as not planned: [4431](https://github.com/hackforla/website/issues/4431#event-10214566837) at 2023-08-28 03:40 PM PDT -roslynwythe,2023-08-28T22:48:28Z,- roslynwythe commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1696529800) at 2023-08-28 03:48 PM PDT -roslynwythe,2023-08-29T08:14:54Z,- roslynwythe commented on issue: [5326](https://github.com/hackforla/website/issues/5326#issuecomment-1696977777) at 2023-08-29 01:14 AM PDT -roslynwythe,2023-08-29T08:14:54Z,- roslynwythe closed issue as not planned: [5326](https://github.com/hackforla/website/issues/5326#event-10217861884) at 2023-08-29 01:14 AM PDT -roslynwythe,2023-08-29T08:15:53Z,- roslynwythe commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1696979169) at 2023-08-29 01:15 AM PDT -roslynwythe,2023-08-29T08:15:53Z,- roslynwythe closed issue as not planned: [5290](https://github.com/hackforla/website/issues/5290#event-10217872413) at 2023-08-29 01:15 AM PDT -roslynwythe,2023-08-29T08:56:56Z,- roslynwythe commented on issue: [5165](https://github.com/hackforla/website/issues/5165#issuecomment-1697038612) at 2023-08-29 01:56 AM PDT -roslynwythe,2023-08-29T09:05:51Z,- roslynwythe opened issue: [5334](https://github.com/hackforla/website/issues/5334) at 2023-08-29 02:05 AM PDT -roslynwythe,2023-08-30T06:04:00Z,- roslynwythe opened issue: [5365](https://github.com/hackforla/website/issues/5365) at 2023-08-29 11:04 PM PDT -roslynwythe,2023-08-30T06:07:36Z,- roslynwythe opened issue: [5366](https://github.com/hackforla/website/issues/5366) at 2023-08-29 11:07 PM PDT -roslynwythe,2023-08-30T06:19:06Z,- roslynwythe opened issue: [5367](https://github.com/hackforla/website/issues/5367) at 2023-08-29 11:19 PM PDT -roslynwythe,2023-08-30T06:19:21Z,- roslynwythe opened issue: [5368](https://github.com/hackforla/website/issues/5368) at 2023-08-29 11:19 PM PDT -roslynwythe,2023-08-30T06:19:52Z,- roslynwythe opened issue: [5369](https://github.com/hackforla/website/issues/5369) at 2023-08-29 11:19 PM PDT -roslynwythe,2023-08-30T06:20:33Z,- roslynwythe opened issue: [5370](https://github.com/hackforla/website/issues/5370) at 2023-08-29 11:20 PM PDT -roslynwythe,2023-08-30T06:21:46Z,- roslynwythe opened issue: [5371](https://github.com/hackforla/website/issues/5371) at 2023-08-29 11:21 PM PDT -roslynwythe,2023-08-30T06:23:07Z,- roslynwythe opened issue: [5372](https://github.com/hackforla/website/issues/5372) at 2023-08-29 11:23 PM PDT -roslynwythe,2023-08-30T06:24:15Z,- roslynwythe opened issue: [5373](https://github.com/hackforla/website/issues/5373) at 2023-08-29 11:24 PM PDT -roslynwythe,2023-08-31T02:22:55Z,- roslynwythe assigned to issue: [5165](https://github.com/hackforla/website/issues/5165#issuecomment-1697038612) at 2023-08-30 07:22 PM PDT -roslynwythe,2023-08-31T06:14:27Z,- roslynwythe submitted pull request review: [5380](https://github.com/hackforla/website/pull/5380#pullrequestreview-1604012950) at 2023-08-30 11:14 PM PDT -roslynwythe,2023-08-31T06:16:21Z,- roslynwythe closed issue by PR 5354: [5181](https://github.com/hackforla/website/issues/5181#event-10240300580) at 2023-08-30 11:16 PM PDT -roslynwythe,2023-08-31T22:20:42Z,- roslynwythe commented on issue: [5165](https://github.com/hackforla/website/issues/5165#issuecomment-1701856558) at 2023-08-31 03:20 PM PDT -roslynwythe,2023-08-31T22:20:42Z,- roslynwythe closed issue by PR 5438: [5165](https://github.com/hackforla/website/issues/5165#event-10250831517) at 2023-08-31 03:20 PM PDT -roslynwythe,2023-08-31T22:24:09Z,- roslynwythe opened pull request: [5402](https://github.com/hackforla/website/pull/5402) at 2023-08-31 03:24 PM PDT -roslynwythe,2023-08-31T22:25:59Z,- roslynwythe commented on pull request: [5402](https://github.com/hackforla/website/pull/5402#issuecomment-1701861794) at 2023-08-31 03:25 PM PDT -roslynwythe,2023-08-31T22:25:59Z,- roslynwythe pull request closed w/o merging: [5402](https://github.com/hackforla/website/pull/5402#event-10250879158) at 2023-08-31 03:25 PM PDT -roslynwythe,2023-09-01T02:16:42Z,- roslynwythe opened issue: [5403](https://github.com/hackforla/website/issues/5403) at 2023-08-31 07:16 PM PDT -roslynwythe,2023-09-01T14:06:55Z,- roslynwythe opened issue: [5408](https://github.com/hackforla/website/issues/5408) at 2023-09-01 07:06 AM PDT -roslynwythe,2023-09-01T14:15:39Z,- roslynwythe assigned to issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1702019128) at 2023-09-01 07:15 AM PDT -roslynwythe,2023-09-01T14:24:28Z,- roslynwythe opened issue: [5409](https://github.com/hackforla/website/issues/5409) at 2023-09-01 07:24 AM PDT -roslynwythe,2023-09-01T15:17:49Z,- roslynwythe opened issue: [5410](https://github.com/hackforla/website/issues/5410) at 2023-09-01 08:17 AM PDT -roslynwythe,2023-09-01T15:33:03Z,- roslynwythe opened issue: [5411](https://github.com/hackforla/website/issues/5411) at 2023-09-01 08:33 AM PDT -roslynwythe,2023-09-01T15:49:25Z,- roslynwythe commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1702961723) at 2023-09-01 08:49 AM PDT -roslynwythe,2023-09-03T07:47:07Z,- roslynwythe opened issue: [5426](https://github.com/hackforla/website/issues/5426) at 2023-09-03 12:47 AM PDT -roslynwythe,2023-09-03T08:26:52Z,- roslynwythe opened issue: [5427](https://github.com/hackforla/website/issues/5427) at 2023-09-03 01:26 AM PDT -roslynwythe,2023-09-03T08:36:06Z,- roslynwythe commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1704049807) at 2023-09-03 01:36 AM PDT -roslynwythe,2023-09-03T08:37:55Z,- roslynwythe commented on pull request: [5424](https://github.com/hackforla/website/pull/5424#issuecomment-1704050221) at 2023-09-03 01:37 AM PDT -roslynwythe,2023-09-03T08:53:23Z,- roslynwythe opened issue: [5428](https://github.com/hackforla/website/issues/5428) at 2023-09-03 01:53 AM PDT -roslynwythe,2023-09-03T09:03:02Z,- roslynwythe opened issue: [5429](https://github.com/hackforla/website/issues/5429) at 2023-09-03 02:03 AM PDT -roslynwythe,2023-09-03T10:11:57Z,- roslynwythe opened pull request: [5430](https://github.com/hackforla/website/pull/5430) at 2023-09-03 03:11 AM PDT -roslynwythe,2023-09-03T10:13:54Z,- roslynwythe pull request closed w/o merging: [5430](https://github.com/hackforla/website/pull/5430#event-10265772588) at 2023-09-03 03:13 AM PDT -roslynwythe,2023-09-03T19:36:52Z,- roslynwythe commented on pull request: [5431](https://github.com/hackforla/website/pull/5431#issuecomment-1704384446) at 2023-09-03 12:36 PM PDT -roslynwythe,2023-09-03T19:37:42Z,- roslynwythe commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704384569) at 2023-09-03 12:37 PM PDT -roslynwythe,2023-09-03T23:26:15Z,- roslynwythe opened pull request: [5432](https://github.com/hackforla/website/pull/5432) at 2023-09-03 04:26 PM PDT -roslynwythe,2023-09-04T00:08:42Z,- roslynwythe pull request closed w/o merging: [5432](https://github.com/hackforla/website/pull/5432#event-10267824463) at 2023-09-03 05:08 PM PDT -roslynwythe,2023-09-04T00:09:40Z,- roslynwythe opened pull request: [5433](https://github.com/hackforla/website/pull/5433) at 2023-09-03 05:09 PM PDT -roslynwythe,2023-09-04T04:13:30Z,- roslynwythe pull request closed w/o merging: [5433](https://github.com/hackforla/website/pull/5433#event-10269149705) at 2023-09-03 09:13 PM PDT -roslynwythe,2023-09-04T04:17:53Z,- roslynwythe opened pull request: [5436](https://github.com/hackforla/website/pull/5436) at 2023-09-03 09:17 PM PDT -roslynwythe,2023-09-04T05:20:57Z,- roslynwythe pull request closed w/o merging: [5436](https://github.com/hackforla/website/pull/5436#event-10269506298) at 2023-09-03 10:20 PM PDT -roslynwythe,2023-09-04T05:25:28Z,- roslynwythe opened pull request: [5437](https://github.com/hackforla/website/pull/5437) at 2023-09-03 10:25 PM PDT -roslynwythe,2023-09-04T06:39:14Z,- roslynwythe pull request closed w/o merging: [5437](https://github.com/hackforla/website/pull/5437#event-10270010209) at 2023-09-03 11:39 PM PDT -roslynwythe,2023-09-04T06:43:18Z,- roslynwythe reopened issue: [5165](https://github.com/hackforla/website/issues/5165#event-10250831517) at 2023-09-03 11:43 PM PDT -roslynwythe,2023-09-04T07:21:06Z,- roslynwythe opened pull request: [5438](https://github.com/hackforla/website/pull/5438) at 2023-09-04 12:21 AM PDT -roslynwythe,2023-09-04T08:01:00Z,- roslynwythe commented on issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1704796289) at 2023-09-04 01:01 AM PDT -roslynwythe,2023-09-04T08:01:00Z,- roslynwythe closed issue as not planned: [5188](https://github.com/hackforla/website/issues/5188#event-10270771029) at 2023-09-04 01:01 AM PDT -roslynwythe,2023-09-04T08:13:21Z,- roslynwythe opened issue: [5439](https://github.com/hackforla/website/issues/5439) at 2023-09-04 01:13 AM PDT -roslynwythe,2023-09-04T09:22:28Z,- roslynwythe opened issue: [5440](https://github.com/hackforla/website/issues/5440) at 2023-09-04 02:22 AM PDT -roslynwythe,2023-09-04T09:49:34Z,- roslynwythe opened issue: [5441](https://github.com/hackforla/website/issues/5441) at 2023-09-04 02:49 AM PDT -roslynwythe,2023-09-05T19:05:59Z,- roslynwythe opened issue: [5447](https://github.com/hackforla/website/issues/5447) at 2023-09-05 12:05 PM PDT -roslynwythe,2023-09-05T19:15:35Z,- roslynwythe opened issue: [5448](https://github.com/hackforla/website/issues/5448) at 2023-09-05 12:15 PM PDT -roslynwythe,2023-09-05T19:16:39Z,- roslynwythe commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1707183845) at 2023-09-05 12:16 PM PDT -roslynwythe,2023-09-05T22:05:33Z,- roslynwythe opened issue: [5450](https://github.com/hackforla/website/issues/5450) at 2023-09-05 03:05 PM PDT -roslynwythe,2023-09-05T22:18:27Z,- roslynwythe commented on issue: [5450](https://github.com/hackforla/website/issues/5450#issuecomment-1707386797) at 2023-09-05 03:18 PM PDT -roslynwythe,2023-09-06T06:59:35Z,- roslynwythe assigned to issue: [5450](https://github.com/hackforla/website/issues/5450#issuecomment-1707386797) at 2023-09-05 11:59 PM PDT -roslynwythe,2023-09-06T07:13:39Z,- roslynwythe opened issue: [5452](https://github.com/hackforla/website/issues/5452) at 2023-09-06 12:13 AM PDT -roslynwythe,2023-09-06T23:24:57Z,- roslynwythe commented on pull request: [5453](https://github.com/hackforla/website/pull/5453#issuecomment-1709251326) at 2023-09-06 04:24 PM PDT -roslynwythe,2023-09-06T23:27:51Z,- roslynwythe closed issue by PR 5442: [5265](https://github.com/hackforla/website/issues/5265#event-10301341857) at 2023-09-06 04:27 PM PDT -roslynwythe,2023-09-06T23:42:53Z,- roslynwythe closed issue by PR 5423: [5394](https://github.com/hackforla/website/issues/5394#event-10301401361) at 2023-09-06 04:42 PM PDT -roslynwythe,2023-09-07T08:47:17Z,- roslynwythe submitted pull request review: [5413](https://github.com/hackforla/website/pull/5413#pullrequestreview-1614908360) at 2023-09-07 01:47 AM PDT -roslynwythe,2023-09-07T20:29:01Z,- roslynwythe commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1710731381) at 2023-09-07 01:29 PM PDT -roslynwythe,2023-09-07T22:50:07Z,- roslynwythe submitted pull request review: [5456](https://github.com/hackforla/website/pull/5456#pullrequestreview-1616337736) at 2023-09-07 03:50 PM PDT -roslynwythe,2023-09-08T07:57:27Z,- roslynwythe opened issue: [5459](https://github.com/hackforla/website/issues/5459) at 2023-09-08 12:57 AM PDT -roslynwythe,2023-09-10T08:37:14Z,- roslynwythe commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1712752903) at 2023-09-10 01:37 AM PDT -roslynwythe,2023-09-10T08:40:09Z,- roslynwythe commented on issue: [4405](https://github.com/hackforla/website/issues/4405#issuecomment-1712753536) at 2023-09-10 01:40 AM PDT -roslynwythe,2023-09-10T08:40:09Z,- roslynwythe closed issue as not planned: [4405](https://github.com/hackforla/website/issues/4405#event-10325897677) at 2023-09-10 01:40 AM PDT -roslynwythe,2023-09-10T10:07:27Z,- roslynwythe opened issue: [5470](https://github.com/hackforla/website/issues/5470) at 2023-09-10 03:07 AM PDT -roslynwythe,2023-09-10T10:28:03Z,- roslynwythe opened issue: [5472](https://github.com/hackforla/website/issues/5472) at 2023-09-10 03:28 AM PDT -roslynwythe,2023-09-10T11:16:46Z,- roslynwythe opened issue: [5473](https://github.com/hackforla/website/issues/5473) at 2023-09-10 04:16 AM PDT -roslynwythe,2023-09-10T22:24:10Z,- roslynwythe commented on issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1712956598) at 2023-09-10 03:24 PM PDT -roslynwythe,2023-09-11T05:43:04Z,- roslynwythe opened issue: [5474](https://github.com/hackforla/website/issues/5474) at 2023-09-10 10:43 PM PDT -roslynwythe,2023-09-11T08:34:48Z,- roslynwythe commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1713422814) at 2023-09-11 01:34 AM PDT -roslynwythe,2023-09-11T08:35:35Z,- roslynwythe commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1713425075) at 2023-09-11 01:35 AM PDT -roslynwythe,2023-09-11T19:51:53Z,- roslynwythe opened issue: [5476](https://github.com/hackforla/website/issues/5476) at 2023-09-11 12:51 PM PDT -roslynwythe,2023-09-11T19:58:42Z,- roslynwythe opened issue: [5477](https://github.com/hackforla/website/issues/5477) at 2023-09-11 12:58 PM PDT -roslynwythe,2023-09-11T22:36:48Z,- roslynwythe commented on pull request: [5475](https://github.com/hackforla/website/pull/5475#issuecomment-1714676532) at 2023-09-11 03:36 PM PDT -roslynwythe,2023-09-11T22:53:47Z,- roslynwythe commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1714693872) at 2023-09-11 03:53 PM PDT -roslynwythe,2023-09-11T22:55:58Z,- roslynwythe commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1714695456) at 2023-09-11 03:55 PM PDT -roslynwythe,2023-09-11T23:55:23Z,- roslynwythe commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1714759630) at 2023-09-11 04:55 PM PDT -roslynwythe,2023-09-12T01:33:18Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1714833748) at 2023-09-11 06:33 PM PDT -roslynwythe,2023-09-12T02:26:43Z,- roslynwythe commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1714869895) at 2023-09-11 07:26 PM PDT -roslynwythe,2023-09-12T03:31:59Z,- roslynwythe commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1714910172) at 2023-09-11 08:31 PM PDT -roslynwythe,2023-09-12T08:27:57Z,- roslynwythe opened issue: [5501](https://github.com/hackforla/website/issues/5501) at 2023-09-12 01:27 AM PDT -roslynwythe,2023-09-12T09:21:53Z,- roslynwythe commented on issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-1715341667) at 2023-09-12 02:21 AM PDT -roslynwythe,2023-09-12T18:09:59Z,- roslynwythe commented on issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-1716198393) at 2023-09-12 11:09 AM PDT -roslynwythe,2023-09-12T18:20:29Z,- roslynwythe opened issue: [5504](https://github.com/hackforla/website/issues/5504) at 2023-09-12 11:20 AM PDT -roslynwythe,2023-09-12T18:39:01Z,- roslynwythe assigned to issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-1716198393) at 2023-09-12 11:39 AM PDT -roslynwythe,2023-09-12T18:44:10Z,- roslynwythe commented on issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-1716242151) at 2023-09-12 11:44 AM PDT -roslynwythe,2023-09-12T18:57:05Z,- roslynwythe opened issue: [5505](https://github.com/hackforla/website/issues/5505) at 2023-09-12 11:57 AM PDT -roslynwythe,2023-09-12T18:57:37Z,- roslynwythe opened issue: [5506](https://github.com/hackforla/website/issues/5506) at 2023-09-12 11:57 AM PDT -roslynwythe,2023-09-12T18:58:14Z,- roslynwythe opened issue: [5507](https://github.com/hackforla/website/issues/5507) at 2023-09-12 11:58 AM PDT -roslynwythe,2023-09-12T18:59:08Z,- roslynwythe opened issue: [5508](https://github.com/hackforla/website/issues/5508) at 2023-09-12 11:59 AM PDT -roslynwythe,2023-09-12T18:59:24Z,- roslynwythe opened issue: [5509](https://github.com/hackforla/website/issues/5509) at 2023-09-12 11:59 AM PDT -roslynwythe,2023-09-12T19:45:22Z,- roslynwythe commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1716318558) at 2023-09-12 12:45 PM PDT -roslynwythe,2023-09-13T01:58:52Z,- roslynwythe commented on pull request: [5503](https://github.com/hackforla/website/pull/5503#issuecomment-1716818942) at 2023-09-12 06:58 PM PDT -roslynwythe,2023-09-13T03:17:09Z,- roslynwythe opened issue: [5511](https://github.com/hackforla/website/issues/5511) at 2023-09-12 08:17 PM PDT -roslynwythe,2023-09-13T05:20:27Z,- roslynwythe submitted pull request review: [5468](https://github.com/hackforla/website/pull/5468#pullrequestreview-1623708632) at 2023-09-12 10:20 PM PDT -roslynwythe,2023-09-13T05:20:43Z,- roslynwythe closed issue by PR 5468: [5320](https://github.com/hackforla/website/issues/5320#event-10354938821) at 2023-09-12 10:20 PM PDT -roslynwythe,2023-09-13T06:53:05Z,- roslynwythe submitted pull request review: [5512](https://github.com/hackforla/website/pull/5512#pullrequestreview-1623819074) at 2023-09-12 11:53 PM PDT -roslynwythe,2023-09-13T07:31:29Z,- roslynwythe commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1717097058) at 2023-09-13 12:31 AM PDT -roslynwythe,2023-09-13T07:46:38Z,- roslynwythe opened issue: [5514](https://github.com/hackforla/website/issues/5514) at 2023-09-13 12:46 AM PDT -roslynwythe,2023-09-13T07:47:11Z,- roslynwythe opened issue: [5515](https://github.com/hackforla/website/issues/5515) at 2023-09-13 12:47 AM PDT -roslynwythe,2023-09-13T07:50:36Z,- roslynwythe opened issue: [5516](https://github.com/hackforla/website/issues/5516) at 2023-09-13 12:50 AM PDT -roslynwythe,2023-09-13T08:09:53Z,- roslynwythe opened issue: [5517](https://github.com/hackforla/website/issues/5517) at 2023-09-13 01:09 AM PDT -roslynwythe,2023-09-13T08:22:32Z,- roslynwythe opened issue: [5518](https://github.com/hackforla/website/issues/5518) at 2023-09-13 01:22 AM PDT -roslynwythe,2023-09-13T08:24:34Z,- roslynwythe opened issue: [5519](https://github.com/hackforla/website/issues/5519) at 2023-09-13 01:24 AM PDT -roslynwythe,2023-09-13T08:25:32Z,- roslynwythe opened issue: [5520](https://github.com/hackforla/website/issues/5520) at 2023-09-13 01:25 AM PDT -roslynwythe,2023-09-14T01:41:37Z,- roslynwythe closed issue by PR 5512: [5313](https://github.com/hackforla/website/issues/5313#event-10366025996) at 2023-09-13 06:41 PM PDT -roslynwythe,2023-09-14T01:58:03Z,- roslynwythe submitted pull request review: [5522](https://github.com/hackforla/website/pull/5522#pullrequestreview-1625696878) at 2023-09-13 06:58 PM PDT -roslynwythe,2023-09-15T00:30:21Z,- roslynwythe opened issue: [5524](https://github.com/hackforla/website/issues/5524) at 2023-09-14 05:30 PM PDT -roslynwythe,2023-09-15T00:31:25Z,- roslynwythe opened issue: [5525](https://github.com/hackforla/website/issues/5525) at 2023-09-14 05:31 PM PDT -roslynwythe,2023-09-15T00:33:30Z,- roslynwythe opened issue: [5526](https://github.com/hackforla/website/issues/5526) at 2023-09-14 05:33 PM PDT -roslynwythe,2023-09-15T00:34:16Z,- roslynwythe opened issue: [5527](https://github.com/hackforla/website/issues/5527) at 2023-09-14 05:34 PM PDT -roslynwythe,2023-09-15T00:41:41Z,- roslynwythe opened issue: [5528](https://github.com/hackforla/website/issues/5528) at 2023-09-14 05:41 PM PDT -roslynwythe,2023-09-15T00:41:56Z,- roslynwythe opened issue: [5529](https://github.com/hackforla/website/issues/5529) at 2023-09-14 05:41 PM PDT -roslynwythe,2023-09-15T00:43:48Z,- roslynwythe opened issue: [5530](https://github.com/hackforla/website/issues/5530) at 2023-09-14 05:43 PM PDT -roslynwythe,2023-09-15T00:43:57Z,- roslynwythe opened issue: [5531](https://github.com/hackforla/website/issues/5531) at 2023-09-14 05:43 PM PDT -roslynwythe,2023-09-15T00:51:02Z,- roslynwythe opened issue: [5532](https://github.com/hackforla/website/issues/5532) at 2023-09-14 05:51 PM PDT -roslynwythe,2023-09-15T00:55:01Z,- roslynwythe opened issue: [5533](https://github.com/hackforla/website/issues/5533) at 2023-09-14 05:55 PM PDT -roslynwythe,2023-09-15T00:59:22Z,- roslynwythe commented on issue: [5514](https://github.com/hackforla/website/issues/5514#issuecomment-1720341383) at 2023-09-14 05:59 PM PDT -roslynwythe,2023-09-15T00:59:22Z,- roslynwythe closed issue as completed: [5514](https://github.com/hackforla/website/issues/5514#event-10378014472) at 2023-09-14 05:59 PM PDT -roslynwythe,2023-09-15T01:27:20Z,- roslynwythe commented on issue: [5519](https://github.com/hackforla/website/issues/5519#issuecomment-1720360238) at 2023-09-14 06:27 PM PDT -roslynwythe,2023-09-15T01:27:20Z,- roslynwythe closed issue as completed: [5519](https://github.com/hackforla/website/issues/5519#event-10378124565) at 2023-09-14 06:27 PM PDT -roslynwythe,2023-09-15T01:29:55Z,- roslynwythe commented on issue: [5518](https://github.com/hackforla/website/issues/5518#issuecomment-1720361837) at 2023-09-14 06:29 PM PDT -roslynwythe,2023-09-15T01:29:55Z,- roslynwythe closed issue as completed: [5518](https://github.com/hackforla/website/issues/5518#event-10378134908) at 2023-09-14 06:29 PM PDT -roslynwythe,2023-09-15T01:49:09Z,- roslynwythe commented on issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1720373899) at 2023-09-14 06:49 PM PDT -roslynwythe,2023-09-15T02:02:14Z,- roslynwythe commented on issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1720381925) at 2023-09-14 07:02 PM PDT -roslynwythe,2023-09-15T06:29:20Z,- roslynwythe opened issue: [5539](https://github.com/hackforla/website/issues/5539) at 2023-09-14 11:29 PM PDT -roslynwythe,2023-09-15T06:56:53Z,- roslynwythe opened issue: [5540](https://github.com/hackforla/website/issues/5540) at 2023-09-14 11:56 PM PDT -roslynwythe,2023-09-15T07:07:40Z,- roslynwythe commented on issue: [5539](https://github.com/hackforla/website/issues/5539#issuecomment-1720783983) at 2023-09-15 12:07 AM PDT -roslynwythe,2023-09-15T07:07:40Z,- roslynwythe closed issue as not planned: [5539](https://github.com/hackforla/website/issues/5539#event-10379896765) at 2023-09-15 12:07 AM PDT -roslynwythe,2023-09-15T07:43:21Z,- roslynwythe opened issue: [5541](https://github.com/hackforla/website/issues/5541) at 2023-09-15 12:43 AM PDT -roslynwythe,2023-09-15T08:33:19Z,- roslynwythe commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1720890386) at 2023-09-15 01:33 AM PDT -roslynwythe,2023-09-15T23:25:31Z,- roslynwythe submitted pull request review: [5542](https://github.com/hackforla/website/pull/5542#pullrequestreview-1629833958) at 2023-09-15 04:25 PM PDT -roslynwythe,2023-09-17T08:00:01Z,- roslynwythe commented on issue: [5062](https://github.com/hackforla/website/issues/5062#issuecomment-1722418714) at 2023-09-17 01:00 AM PDT -roslynwythe,2023-09-17T08:16:23Z,- roslynwythe opened issue: [5547](https://github.com/hackforla/website/issues/5547) at 2023-09-17 01:16 AM PDT -roslynwythe,2023-09-17T08:33:18Z,- roslynwythe commented on issue: [5547](https://github.com/hackforla/website/issues/5547#issuecomment-1722424996) at 2023-09-17 01:33 AM PDT -roslynwythe,2023-09-17T09:35:11Z,- roslynwythe commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1722436498) at 2023-09-17 02:35 AM PDT -roslynwythe,2023-09-18T23:58:19Z,- roslynwythe commented on issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1724637748) at 2023-09-18 04:58 PM PDT -roslynwythe,2023-09-18T23:58:19Z,- roslynwythe closed issue as completed: [5516](https://github.com/hackforla/website/issues/5516#event-10404056466) at 2023-09-18 04:58 PM PDT -roslynwythe,2023-09-18T23:59:26Z,- roslynwythe commented on issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1724638460) at 2023-09-18 04:59 PM PDT -roslynwythe,2023-09-18T23:59:26Z,- roslynwythe closed issue as completed: [5515](https://github.com/hackforla/website/issues/5515#event-10404065743) at 2023-09-18 04:59 PM PDT -roslynwythe,2023-09-20T02:27:57Z,- roslynwythe closed issue by PR 5550: [5408](https://github.com/hackforla/website/issues/5408#event-10416953930) at 2023-09-19 07:27 PM PDT -roslynwythe,2023-09-20T07:42:22Z,- roslynwythe commented on issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1727146262) at 2023-09-20 12:42 AM PDT -roslynwythe,2023-09-20T07:42:22Z,- roslynwythe closed issue as completed: [5532](https://github.com/hackforla/website/issues/5532#event-10419285610) at 2023-09-20 12:42 AM PDT -roslynwythe,2023-09-20T07:45:37Z,- roslynwythe commented on issue: [5524](https://github.com/hackforla/website/issues/5524#issuecomment-1727150963) at 2023-09-20 12:45 AM PDT -roslynwythe,2023-09-20T07:45:38Z,- roslynwythe closed issue as completed: [5524](https://github.com/hackforla/website/issues/5524#event-10419321351) at 2023-09-20 12:45 AM PDT -roslynwythe,2023-09-20T07:48:03Z,- roslynwythe commented on issue: [5526](https://github.com/hackforla/website/issues/5526#issuecomment-1727156331) at 2023-09-20 12:48 AM PDT -roslynwythe,2023-09-20T07:48:03Z,- roslynwythe closed issue as completed: [5526](https://github.com/hackforla/website/issues/5526#event-10419361511) at 2023-09-20 12:48 AM PDT -roslynwythe,2023-09-20T07:52:09Z,- roslynwythe commented on issue: [5533](https://github.com/hackforla/website/issues/5533#issuecomment-1727164760) at 2023-09-20 12:52 AM PDT -roslynwythe,2023-09-20T07:52:09Z,- roslynwythe closed issue as completed: [5533](https://github.com/hackforla/website/issues/5533#event-10419422984) at 2023-09-20 12:52 AM PDT -roslynwythe,2023-09-21T06:30:57Z,- roslynwythe submitted pull request review: [5556](https://github.com/hackforla/website/pull/5556#pullrequestreview-1637014075) at 2023-09-20 11:30 PM PDT -roslynwythe,2023-09-21T06:35:53Z,- roslynwythe closed issue by PR 5556: [5477](https://github.com/hackforla/website/issues/5477#event-10430747903) at 2023-09-20 11:35 PM PDT -roslynwythe,2023-09-21T07:01:44Z,- roslynwythe commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1728969799) at 2023-09-21 12:01 AM PDT -roslynwythe,2023-09-23T01:56:07Z,- roslynwythe commented on issue: [5440](https://github.com/hackforla/website/issues/5440#issuecomment-1732178084) at 2023-09-22 06:56 PM PDT -roslynwythe,2023-09-24T09:19:55Z,- roslynwythe opened pull request: [5577](https://github.com/hackforla/website/pull/5577) at 2023-09-24 02:19 AM PDT -roslynwythe,2023-09-24T10:18:27Z,- roslynwythe commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1732538639) at 2023-09-24 03:18 AM PDT -roslynwythe,2023-09-24T20:11:12Z,- roslynwythe opened issue: [5578](https://github.com/hackforla/website/issues/5578) at 2023-09-24 01:11 PM PDT -roslynwythe,2023-09-24T20:16:24Z,- roslynwythe opened issue: [5579](https://github.com/hackforla/website/issues/5579) at 2023-09-24 01:16 PM PDT -roslynwythe,2023-09-26T02:45:49Z,- roslynwythe unassigned from issue: [4888](https://github.com/hackforla/website/issues/4888#issuecomment-1608983904) at 2023-09-25 07:45 PM PDT -roslynwythe,2023-09-26T07:57:23Z,- roslynwythe opened issue: [5587](https://github.com/hackforla/website/issues/5587) at 2023-09-26 12:57 AM PDT -roslynwythe,2023-09-26T08:10:22Z,- roslynwythe opened issue: [5588](https://github.com/hackforla/website/issues/5588) at 2023-09-26 01:10 AM PDT -roslynwythe,2023-09-26T08:23:56Z,- roslynwythe submitted pull request review: [5570](https://github.com/hackforla/website/pull/5570#pullrequestreview-1643659313) at 2023-09-26 01:23 AM PDT -roslynwythe,2023-09-26T08:49:57Z,- roslynwythe opened issue: [5589](https://github.com/hackforla/website/issues/5589) at 2023-09-26 01:49 AM PDT -roslynwythe,2023-09-26T09:02:30Z,- roslynwythe opened issue: [5590](https://github.com/hackforla/website/issues/5590) at 2023-09-26 02:02 AM PDT -roslynwythe,2023-09-26T09:10:46Z,- roslynwythe assigned to issue: [4506](https://github.com/hackforla/website/issues/4506) at 2023-09-26 02:10 AM PDT -roslynwythe,2023-09-26T09:19:23Z,- roslynwythe opened issue: [5591](https://github.com/hackforla/website/issues/5591) at 2023-09-26 02:19 AM PDT -roslynwythe,2023-09-26T15:56:19Z,- roslynwythe assigned to issue: [5592](https://github.com/hackforla/website/issues/5592) at 2023-09-26 08:56 AM PDT -roslynwythe,2023-09-26T17:23:31Z,- roslynwythe commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1735973538) at 2023-09-26 10:23 AM PDT -roslynwythe,2023-09-26T18:44:40Z,- roslynwythe commented on issue: [4506](https://github.com/hackforla/website/issues/4506#issuecomment-1736090948) at 2023-09-26 11:44 AM PDT -roslynwythe,2023-09-26T20:24:20Z,- roslynwythe commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1736240358) at 2023-09-26 01:24 PM PDT -roslynwythe,2023-09-26T22:21:08Z,- roslynwythe commented on issue: [4508](https://github.com/hackforla/website/issues/4508#issuecomment-1736382664) at 2023-09-26 03:21 PM PDT -roslynwythe,2023-09-26T22:21:08Z,- roslynwythe closed issue as not planned: [4508](https://github.com/hackforla/website/issues/4508#event-10480568593) at 2023-09-26 03:21 PM PDT -roslynwythe,2023-09-26T22:31:36Z,- roslynwythe commented on issue: [4509](https://github.com/hackforla/website/issues/4509#issuecomment-1736392322) at 2023-09-26 03:31 PM PDT -roslynwythe,2023-09-26T22:31:36Z,- roslynwythe closed issue as not planned: [4509](https://github.com/hackforla/website/issues/4509#event-10480628382) at 2023-09-26 03:31 PM PDT -roslynwythe,2023-09-26T22:49:54Z,- roslynwythe opened issue: [5594](https://github.com/hackforla/website/issues/5594) at 2023-09-26 03:49 PM PDT -roslynwythe,2023-09-26T22:50:48Z,- roslynwythe opened issue: [5595](https://github.com/hackforla/website/issues/5595) at 2023-09-26 03:50 PM PDT -roslynwythe,2023-09-26T22:53:42Z,- roslynwythe opened issue: [5596](https://github.com/hackforla/website/issues/5596) at 2023-09-26 03:53 PM PDT -roslynwythe,2023-09-26T22:59:29Z,- roslynwythe opened issue: [5597](https://github.com/hackforla/website/issues/5597) at 2023-09-26 03:59 PM PDT -roslynwythe,2023-09-26T23:01:23Z,- roslynwythe opened issue: [5598](https://github.com/hackforla/website/issues/5598) at 2023-09-26 04:01 PM PDT -roslynwythe,2023-09-26T23:04:42Z,- roslynwythe opened issue: [5599](https://github.com/hackforla/website/issues/5599) at 2023-09-26 04:04 PM PDT -roslynwythe,2023-09-26T23:05:40Z,- roslynwythe opened issue: [5600](https://github.com/hackforla/website/issues/5600) at 2023-09-26 04:05 PM PDT -roslynwythe,2023-09-26T23:06:51Z,- roslynwythe opened issue: [5601](https://github.com/hackforla/website/issues/5601) at 2023-09-26 04:06 PM PDT -roslynwythe,2023-09-26T23:07:54Z,- roslynwythe opened issue: [5602](https://github.com/hackforla/website/issues/5602) at 2023-09-26 04:07 PM PDT -roslynwythe,2023-09-26T23:09:16Z,- roslynwythe opened issue: [5603](https://github.com/hackforla/website/issues/5603) at 2023-09-26 04:09 PM PDT -roslynwythe,2023-09-26T23:11:26Z,- roslynwythe opened issue: [5604](https://github.com/hackforla/website/issues/5604) at 2023-09-26 04:11 PM PDT -roslynwythe,2023-09-26T23:22:29Z,- roslynwythe commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1736433566) at 2023-09-26 04:22 PM PDT -roslynwythe,2023-09-26T23:31:43Z,- roslynwythe commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1736440177) at 2023-09-26 04:31 PM PDT -roslynwythe,2023-09-26T23:32:13Z,- roslynwythe assigned to issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1736440177) at 2023-09-26 04:32 PM PDT -roslynwythe,2023-09-27T02:28:26Z,- roslynwythe commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1736573039) at 2023-09-26 07:28 PM PDT -roslynwythe,2023-09-27T02:29:42Z,- roslynwythe commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1736574000) at 2023-09-26 07:29 PM PDT -roslynwythe,2023-09-27T02:31:40Z,- roslynwythe commented on pull request: [5563](https://github.com/hackforla/website/pull/5563#issuecomment-1736577937) at 2023-09-26 07:31 PM PDT -roslynwythe,2023-09-27T02:33:13Z,- roslynwythe commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1736578952) at 2023-09-26 07:33 PM PDT -roslynwythe,2023-09-27T06:14:55Z,- roslynwythe commented on issue: [5505](https://github.com/hackforla/website/issues/5505#issuecomment-1736766641) at 2023-09-26 11:14 PM PDT -roslynwythe,2023-09-27T06:16:28Z,- roslynwythe commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1736768201) at 2023-09-26 11:16 PM PDT -roslynwythe,2023-09-27T06:19:48Z,- roslynwythe commented on issue: [5506](https://github.com/hackforla/website/issues/5506#issuecomment-1736771423) at 2023-09-26 11:19 PM PDT -roslynwythe,2023-09-27T06:21:39Z,- roslynwythe submitted pull request review: [5583](https://github.com/hackforla/website/pull/5583#pullrequestreview-1645680319) at 2023-09-26 11:21 PM PDT -roslynwythe,2023-09-27T06:26:08Z,- roslynwythe submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1645685800) at 2023-09-26 11:26 PM PDT -roslynwythe,2023-09-27T06:32:36Z,- roslynwythe commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1736784099) at 2023-09-26 11:32 PM PDT -roslynwythe,2023-09-27T06:36:13Z,- roslynwythe submitted pull request review: [5576](https://github.com/hackforla/website/pull/5576#pullrequestreview-1645698775) at 2023-09-26 11:36 PM PDT -roslynwythe,2023-09-27T06:39:56Z,- roslynwythe commented on issue: [5509](https://github.com/hackforla/website/issues/5509#issuecomment-1736791620) at 2023-09-26 11:39 PM PDT -roslynwythe,2023-09-27T06:51:06Z,- roslynwythe submitted pull request review: [5563](https://github.com/hackforla/website/pull/5563#pullrequestreview-1645724417) at 2023-09-26 11:51 PM PDT -roslynwythe,2023-09-27T07:06:46Z,- roslynwythe commented on issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-1736824314) at 2023-09-27 12:06 AM PDT -roslynwythe,2023-09-27T09:20:40Z,- roslynwythe commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1737027998) at 2023-09-27 02:20 AM PDT -roslynwythe,2023-09-28T03:00:32Z,- roslynwythe commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1738367332) at 2023-09-27 08:00 PM PDT -roslynwythe,2023-09-28T03:01:33Z,- roslynwythe commented on pull request: [5610](https://github.com/hackforla/website/pull/5610#issuecomment-1738367912) at 2023-09-27 08:01 PM PDT -roslynwythe,2023-09-28T03:19:30Z,- roslynwythe submitted pull request review: [5570](https://github.com/hackforla/website/pull/5570#pullrequestreview-1647828022) at 2023-09-27 08:19 PM PDT -roslynwythe,2023-09-28T03:19:43Z,- roslynwythe closed issue by PR 5570: [5547](https://github.com/hackforla/website/issues/5547#event-10494010093) at 2023-09-27 08:19 PM PDT -roslynwythe,2023-09-28T04:19:08Z,- roslynwythe submitted pull request review: [5563](https://github.com/hackforla/website/pull/5563#pullrequestreview-1647861044) at 2023-09-27 09:19 PM PDT -roslynwythe,2023-09-28T04:19:17Z,- roslynwythe closed issue by PR 5563: [5509](https://github.com/hackforla/website/issues/5509#event-10494235131) at 2023-09-27 09:19 PM PDT -roslynwythe,2023-09-28T04:30:47Z,- roslynwythe submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1647870225) at 2023-09-27 09:30 PM PDT -roslynwythe,2023-09-28T04:31:42Z,- roslynwythe commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1738416412) at 2023-09-27 09:31 PM PDT -roslynwythe,2023-09-28T04:50:41Z,- roslynwythe opened issue: [5617](https://github.com/hackforla/website/issues/5617) at 2023-09-27 09:50 PM PDT -roslynwythe,2023-09-28T05:34:13Z,- roslynwythe opened issue: [5618](https://github.com/hackforla/website/issues/5618) at 2023-09-27 10:34 PM PDT -roslynwythe,2023-09-28T05:38:06Z,- roslynwythe commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1738499055) at 2023-09-27 10:38 PM PDT -roslynwythe,2023-09-28T06:00:35Z,- roslynwythe commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1738520985) at 2023-09-27 11:00 PM PDT -roslynwythe,2023-09-28T07:01:40Z,- roslynwythe commented on pull request: [5438](https://github.com/hackforla/website/pull/5438#issuecomment-1738590965) at 2023-09-28 12:01 AM PDT -roslynwythe,2023-09-28T08:08:24Z,- roslynwythe commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1738677032) at 2023-09-28 01:08 AM PDT -roslynwythe,2023-09-28T08:16:26Z,- roslynwythe commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1738688114) at 2023-09-28 01:16 AM PDT -roslynwythe,2023-09-28T08:32:53Z,- roslynwythe opened issue: [5619](https://github.com/hackforla/website/issues/5619) at 2023-09-28 01:32 AM PDT -roslynwythe,2023-09-28T08:38:16Z,- roslynwythe opened issue: [5620](https://github.com/hackforla/website/issues/5620) at 2023-09-28 01:38 AM PDT -roslynwythe,2023-09-28T08:48:39Z,- roslynwythe opened issue: [5621](https://github.com/hackforla/website/issues/5621) at 2023-09-28 01:48 AM PDT -roslynwythe,2023-09-29T00:13:30Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1740147176) at 2023-09-28 05:13 PM PDT -roslynwythe,2023-09-29T00:35:11Z,- roslynwythe opened issue: [5628](https://github.com/hackforla/website/issues/5628) at 2023-09-28 05:35 PM PDT -roslynwythe,2023-09-29T00:42:03Z,- roslynwythe opened issue: [5629](https://github.com/hackforla/website/issues/5629) at 2023-09-28 05:42 PM PDT -roslynwythe,2023-09-29T09:48:07Z,- roslynwythe commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-1740614687) at 2023-09-29 02:48 AM PDT -roslynwythe,2023-09-29T09:58:23Z,- roslynwythe opened issue: [5631](https://github.com/hackforla/website/issues/5631) at 2023-09-29 02:58 AM PDT -roslynwythe,2023-09-29T10:03:21Z,- roslynwythe opened issue: [5632](https://github.com/hackforla/website/issues/5632) at 2023-09-29 03:03 AM PDT -roslynwythe,2023-09-29T10:07:34Z,- roslynwythe opened issue: [5633](https://github.com/hackforla/website/issues/5633) at 2023-09-29 03:07 AM PDT -roslynwythe,2023-09-29T17:46:10Z,- roslynwythe commented on issue: [4888](https://github.com/hackforla/website/issues/4888#issuecomment-1741275046) at 2023-09-29 10:46 AM PDT -roslynwythe,2023-09-29T17:46:10Z,- roslynwythe closed issue as completed: [4888](https://github.com/hackforla/website/issues/4888#event-10513985652) at 2023-09-29 10:46 AM PDT -roslynwythe,2023-10-01T10:25:14Z,- roslynwythe commented on issue: [5603](https://github.com/hackforla/website/issues/5603#issuecomment-1742034466) at 2023-10-01 03:25 AM PDT -roslynwythe,2023-10-01T10:25:14Z,- roslynwythe closed issue as completed: [5603](https://github.com/hackforla/website/issues/5603#event-10519290181) at 2023-10-01 03:25 AM PDT -roslynwythe,2023-10-01T20:14:43Z,- roslynwythe commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1742188867) at 2023-10-01 01:14 PM PDT -roslynwythe,2023-10-02T03:34:30Z,- roslynwythe opened issue: [5642](https://github.com/hackforla/website/issues/5642) at 2023-10-01 08:34 PM PDT -roslynwythe,2023-10-02T05:31:39Z,- roslynwythe reopened issue: [4912](https://github.com/hackforla/website/issues/4912#issuecomment-1629900573) at 2023-10-01 10:31 PM PDT -roslynwythe,2023-10-02T06:15:59Z,- roslynwythe opened issue: [5644](https://github.com/hackforla/website/issues/5644) at 2023-10-01 11:15 PM PDT -roslynwythe,2023-10-02T06:38:03Z,- roslynwythe closed issue as completed: [4770](https://github.com/hackforla/website/issues/4770#event-10522417456) at 2023-10-01 11:38 PM PDT -roslynwythe,2023-10-02T19:37:23Z,- roslynwythe opened issue: [5647](https://github.com/hackforla/website/issues/5647) at 2023-10-02 12:37 PM PDT -roslynwythe,2023-10-02T19:37:48Z,- roslynwythe assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1743641509) at 2023-10-02 12:37 PM PDT -roslynwythe,2023-10-03T07:54:02Z,- roslynwythe commented on issue: [5318](https://github.com/hackforla/website/issues/5318#issuecomment-1744400233) at 2023-10-03 12:54 AM PDT -roslynwythe,2023-10-03T15:34:41Z,- roslynwythe unassigned from issue: [5450](https://github.com/hackforla/website/issues/5450#issuecomment-1707780506) at 2023-10-03 08:34 AM PDT -roslynwythe,2023-10-03T17:11:28Z,- roslynwythe opened issue: [5652](https://github.com/hackforla/website/issues/5652) at 2023-10-03 10:11 AM PDT -roslynwythe,2023-10-03T18:19:38Z,- roslynwythe opened issue: [5653](https://github.com/hackforla/website/issues/5653) at 2023-10-03 11:19 AM PDT -roslynwythe,2023-10-03T18:24:29Z,- roslynwythe commented on issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-1745499863) at 2023-10-03 11:24 AM PDT -roslynwythe,2023-10-03T18:49:01Z,- roslynwythe opened issue: [5655](https://github.com/hackforla/website/issues/5655) at 2023-10-03 11:49 AM PDT -roslynwythe,2023-10-03T18:49:08Z,- roslynwythe commented on issue: [5655](https://github.com/hackforla/website/issues/5655#issuecomment-1745535055) at 2023-10-03 11:49 AM PDT -roslynwythe,2023-10-04T01:14:45Z,- roslynwythe assigned to issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1744764821) at 2023-10-03 06:14 PM PDT -roslynwythe,2023-10-04T01:14:56Z,- roslynwythe unassigned from issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1744764821) at 2023-10-03 06:14 PM PDT -roslynwythe,2023-10-04T01:15:09Z,- roslynwythe assigned to issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-1745499863) at 2023-10-03 06:15 PM PDT -roslynwythe,2023-10-04T06:26:16Z,- roslynwythe commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1746215156) at 2023-10-03 11:26 PM PDT -roslynwythe,2023-10-04T07:44:12Z,- roslynwythe commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1746317971) at 2023-10-04 12:44 AM PDT -roslynwythe,2023-10-04T07:55:25Z,- roslynwythe reopened issue: [5129](https://github.com/hackforla/website/issues/5129#event-10166203890) at 2023-10-04 12:55 AM PDT -roslynwythe,2023-10-04T07:58:05Z,- roslynwythe commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1746339359) at 2023-10-04 12:58 AM PDT -roslynwythe,2023-10-04T08:31:48Z,- roslynwythe opened issue: [5660](https://github.com/hackforla/website/issues/5660) at 2023-10-04 01:31 AM PDT -roslynwythe,2023-10-05T09:23:41Z,- roslynwythe commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1748468699) at 2023-10-05 02:23 AM PDT -roslynwythe,2023-10-05T23:54:04Z,- roslynwythe commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1749806450) at 2023-10-05 04:54 PM PDT -roslynwythe,2023-10-06T00:43:20Z,- roslynwythe opened issue: [5666](https://github.com/hackforla/website/issues/5666) at 2023-10-05 05:43 PM PDT -roslynwythe,2023-10-06T06:58:28Z,- roslynwythe commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1750080059) at 2023-10-05 11:58 PM PDT -roslynwythe,2023-10-06T23:27:23Z,- roslynwythe commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1751497965) at 2023-10-06 04:27 PM PDT -roslynwythe,2023-10-08T07:11:51Z,- roslynwythe commented on issue: [5655](https://github.com/hackforla/website/issues/5655#issuecomment-1751944394) at 2023-10-08 12:11 AM PDT -roslynwythe,2023-10-08T07:25:57Z,- roslynwythe commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1751947212) at 2023-10-08 12:25 AM PDT -roslynwythe,2023-10-08T07:47:54Z,- roslynwythe commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1751951517) at 2023-10-08 12:47 AM PDT -roslynwythe,2023-10-08T08:04:20Z,- roslynwythe opened issue: [5673](https://github.com/hackforla/website/issues/5673) at 2023-10-08 01:04 AM PDT -roslynwythe,2023-10-08T08:21:50Z,- roslynwythe opened issue: [5674](https://github.com/hackforla/website/issues/5674) at 2023-10-08 01:21 AM PDT -roslynwythe,2023-10-08T09:26:35Z,- roslynwythe opened issue: [5675](https://github.com/hackforla/website/issues/5675) at 2023-10-08 02:26 AM PDT -roslynwythe,2023-10-08T09:36:05Z,- roslynwythe opened issue: [5676](https://github.com/hackforla/website/issues/5676) at 2023-10-08 02:36 AM PDT -roslynwythe,2023-10-08T18:34:29Z,- roslynwythe assigned to issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1486042925) at 2023-10-08 11:34 AM PDT -roslynwythe,2023-10-08T18:39:51Z,- roslynwythe opened issue: [5678](https://github.com/hackforla/website/issues/5678) at 2023-10-08 11:39 AM PDT -roslynwythe,2023-10-08T19:01:17Z,- roslynwythe opened issue: [5679](https://github.com/hackforla/website/issues/5679) at 2023-10-08 12:01 PM PDT -roslynwythe,2023-10-08T19:03:35Z,- roslynwythe opened issue: [5680](https://github.com/hackforla/website/issues/5680) at 2023-10-08 12:03 PM PDT -roslynwythe,2023-10-08T19:09:48Z,- roslynwythe opened issue: [5681](https://github.com/hackforla/website/issues/5681) at 2023-10-08 12:09 PM PDT -roslynwythe,2023-10-08T19:13:23Z,- roslynwythe commented on issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1752136462) at 2023-10-08 12:13 PM PDT -roslynwythe,2023-10-08T19:14:04Z,- roslynwythe assigned to issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1752136462) at 2023-10-08 12:14 PM PDT -roslynwythe,2023-10-08T22:00:10Z,- roslynwythe commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1752172505) at 2023-10-08 03:00 PM PDT -roslynwythe,2023-10-09T06:18:10Z,- roslynwythe opened issue: [5684](https://github.com/hackforla/website/issues/5684) at 2023-10-08 11:18 PM PDT -roslynwythe,2023-10-09T06:23:28Z,- roslynwythe opened issue: [5685](https://github.com/hackforla/website/issues/5685) at 2023-10-08 11:23 PM PDT -roslynwythe,2023-10-09T06:26:46Z,- roslynwythe opened issue: [5686](https://github.com/hackforla/website/issues/5686) at 2023-10-08 11:26 PM PDT -roslynwythe,2023-10-09T06:30:50Z,- roslynwythe opened issue: [5687](https://github.com/hackforla/website/issues/5687) at 2023-10-08 11:30 PM PDT -roslynwythe,2023-10-09T22:58:59Z,- roslynwythe submitted pull request review: [5583](https://github.com/hackforla/website/pull/5583#pullrequestreview-1665502586) at 2023-10-09 03:58 PM PDT -roslynwythe,2023-10-10T01:39:43Z,- roslynwythe commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1754171348) at 2023-10-09 06:39 PM PDT -roslynwythe,2023-10-10T09:29:21Z,- roslynwythe assigned to issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1639587224) at 2023-10-10 02:29 AM PDT -roslynwythe,2023-10-10T09:29:25Z,- roslynwythe commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1754811616) at 2023-10-10 02:29 AM PDT -roslynwythe,2023-10-10T19:12:59Z,- roslynwythe opened issue: [5693](https://github.com/hackforla/website/issues/5693) at 2023-10-10 12:12 PM PDT -roslynwythe,2023-10-10T19:19:14Z,- roslynwythe opened issue: [5694](https://github.com/hackforla/website/issues/5694) at 2023-10-10 12:19 PM PDT -roslynwythe,2023-10-10T19:34:42Z,- roslynwythe opened issue: [5695](https://github.com/hackforla/website/issues/5695) at 2023-10-10 12:34 PM PDT -roslynwythe,2023-10-10T20:03:54Z,- roslynwythe opened issue: [5696](https://github.com/hackforla/website/issues/5696) at 2023-10-10 01:03 PM PDT -roslynwythe,2023-10-10T20:08:26Z,- roslynwythe commented on issue: [5696](https://github.com/hackforla/website/issues/5696#issuecomment-1756148084) at 2023-10-10 01:08 PM PDT -roslynwythe,2023-10-10T20:20:27Z,- roslynwythe opened issue: [5697](https://github.com/hackforla/website/issues/5697) at 2023-10-10 01:20 PM PDT -roslynwythe,2023-10-10T20:28:10Z,- roslynwythe commented on issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1756174354) at 2023-10-10 01:28 PM PDT -roslynwythe,2023-10-10T21:35:42Z,- roslynwythe opened issue: [5698](https://github.com/hackforla/website/issues/5698) at 2023-10-10 02:35 PM PDT -roslynwythe,2023-10-10T21:38:24Z,- roslynwythe commented on issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1756305735) at 2023-10-10 02:38 PM PDT -roslynwythe,2023-10-10T22:33:00Z,- roslynwythe commented on issue: [5002](https://github.com/hackforla/website/issues/5002#issuecomment-1756358804) at 2023-10-10 03:33 PM PDT -roslynwythe,2023-10-10T22:33:00Z,- roslynwythe closed issue as not planned: [5002](https://github.com/hackforla/website/issues/5002#event-10610672025) at 2023-10-10 03:33 PM PDT -roslynwythe,2023-10-10T22:35:25Z,- roslynwythe commented on issue: [5033](https://github.com/hackforla/website/issues/5033#issuecomment-1756361677) at 2023-10-10 03:35 PM PDT -roslynwythe,2023-10-10T22:35:25Z,- roslynwythe closed issue as not planned: [5033](https://github.com/hackforla/website/issues/5033#event-10610685431) at 2023-10-10 03:35 PM PDT -roslynwythe,2023-10-11T06:06:47Z,- roslynwythe commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1756863520) at 2023-10-10 11:06 PM PDT -roslynwythe,2023-10-11T06:32:52Z,- roslynwythe commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1756914546) at 2023-10-10 11:32 PM PDT -roslynwythe,2023-10-11T06:32:53Z,- roslynwythe closed issue by PR 7068: [5146](https://github.com/hackforla/website/issues/5146#event-10613676974) at 2023-10-10 11:32 PM PDT -roslynwythe,2023-10-11T06:51:43Z,- roslynwythe opened issue: [5703](https://github.com/hackforla/website/issues/5703) at 2023-10-10 11:51 PM PDT -roslynwythe,2023-10-12T07:37:37Z,- roslynwythe commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1759091791) at 2023-10-12 12:37 AM PDT -roslynwythe,2023-10-12T23:01:35Z,- roslynwythe commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1760484878) at 2023-10-12 04:01 PM PDT -roslynwythe,2023-10-12T23:20:53Z,- roslynwythe commented on issue: [4728](https://github.com/hackforla/website/issues/4728#issuecomment-1760522077) at 2023-10-12 04:20 PM PDT -roslynwythe,2023-10-12T23:20:53Z,- roslynwythe closed issue as completed: [4728](https://github.com/hackforla/website/issues/4728#event-10637922519) at 2023-10-12 04:20 PM PDT -roslynwythe,2023-10-13T02:41:45Z,- roslynwythe closed issue as completed: [4889](https://github.com/hackforla/website/issues/4889#event-10639140523) at 2023-10-12 07:41 PM PDT -roslynwythe,2023-10-13T04:07:01Z,- roslynwythe closed issue as completed: [5271](https://github.com/hackforla/website/issues/5271#event-10639540232) at 2023-10-12 09:07 PM PDT -roslynwythe,2023-10-13T04:16:07Z,- roslynwythe closed issue as completed: [4834](https://github.com/hackforla/website/issues/4834#event-10639605258) at 2023-10-12 09:16 PM PDT -roslynwythe,2023-10-13T05:07:39Z,- roslynwythe commented on issue: [4368](https://github.com/hackforla/website/issues/4368#issuecomment-1760832253) at 2023-10-12 10:07 PM PDT -roslynwythe,2023-10-15T05:16:24Z,- roslynwythe commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1763276288) at 2023-10-14 10:16 PM PDT -roslynwythe,2023-10-15T05:19:02Z,- roslynwythe closed issue as not planned: [4556](https://github.com/hackforla/website/issues/4556#event-10656794539) at 2023-10-14 10:19 PM PDT -roslynwythe,2023-10-15T06:04:29Z,- roslynwythe commented on issue: [3143](https://github.com/hackforla/website/issues/3143#issuecomment-1763285763) at 2023-10-14 11:04 PM PDT -roslynwythe,2023-10-15T06:19:42Z,- roslynwythe commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1763288906) at 2023-10-14 11:19 PM PDT -roslynwythe,2023-10-15T08:03:31Z,- roslynwythe commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1763312525) at 2023-10-15 01:03 AM PDT -roslynwythe,2023-10-15T09:01:32Z,- roslynwythe assigned to issue: [5677](https://github.com/hackforla/website/issues/5677) at 2023-10-15 02:01 AM PDT -roslynwythe,2023-10-15T09:04:00Z,- roslynwythe commented on issue: [5677](https://github.com/hackforla/website/issues/5677#issuecomment-1763327879) at 2023-10-15 02:04 AM PDT -roslynwythe,2023-10-15T09:18:45Z,- roslynwythe commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1763331597) at 2023-10-15 02:18 AM PDT -roslynwythe,2023-10-15T17:02:43Z,- roslynwythe unassigned from issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1732618558) at 2023-10-15 10:02 AM PDT -roslynwythe,2023-10-15T19:30:05Z,- roslynwythe commented on issue: [5060](https://github.com/hackforla/website/issues/5060#issuecomment-1763482900) at 2023-10-15 12:30 PM PDT -roslynwythe,2023-10-15T19:41:04Z,- roslynwythe commented on issue: [5060](https://github.com/hackforla/website/issues/5060#issuecomment-1763485424) at 2023-10-15 12:41 PM PDT -roslynwythe,2023-10-15T19:41:04Z,- roslynwythe closed issue as not planned: [5060](https://github.com/hackforla/website/issues/5060#event-10658332710) at 2023-10-15 12:41 PM PDT -roslynwythe,2023-10-15T19:51:22Z,- roslynwythe opened issue: [5705](https://github.com/hackforla/website/issues/5705) at 2023-10-15 12:51 PM PDT -roslynwythe,2023-10-15T20:08:51Z,- roslynwythe commented on issue: [5666](https://github.com/hackforla/website/issues/5666#issuecomment-1763492024) at 2023-10-15 01:08 PM PDT -roslynwythe,2023-10-15T20:50:08Z,- roslynwythe opened issue: [5706](https://github.com/hackforla/website/issues/5706) at 2023-10-15 01:50 PM PDT -roslynwythe,2023-10-15T21:09:00Z,- roslynwythe commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1763504493) at 2023-10-15 02:09 PM PDT -roslynwythe,2023-10-16T03:59:19Z,- roslynwythe commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1763688074) at 2023-10-15 08:59 PM PDT -roslynwythe,2023-10-16T04:17:02Z,- roslynwythe opened issue: [5707](https://github.com/hackforla/website/issues/5707) at 2023-10-15 09:17 PM PDT -roslynwythe,2023-10-16T04:49:41Z,- roslynwythe opened issue: [5708](https://github.com/hackforla/website/issues/5708) at 2023-10-15 09:49 PM PDT -roslynwythe,2023-10-16T04:52:53Z,- roslynwythe opened issue: [5709](https://github.com/hackforla/website/issues/5709) at 2023-10-15 09:52 PM PDT -roslynwythe,2023-10-16T04:56:17Z,- roslynwythe opened issue: [5710](https://github.com/hackforla/website/issues/5710) at 2023-10-15 09:56 PM PDT -roslynwythe,2023-10-16T04:59:46Z,- roslynwythe opened issue: [5711](https://github.com/hackforla/website/issues/5711) at 2023-10-15 09:59 PM PDT -roslynwythe,2023-10-16T05:24:57Z,- roslynwythe opened issue: [5712](https://github.com/hackforla/website/issues/5712) at 2023-10-15 10:24 PM PDT -roslynwythe,2023-10-16T06:22:55Z,- roslynwythe commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1763805759) at 2023-10-15 11:22 PM PDT -roslynwythe,2023-10-16T06:30:25Z,- roslynwythe opened issue: [5713](https://github.com/hackforla/website/issues/5713) at 2023-10-15 11:30 PM PDT -roslynwythe,2023-10-16T06:36:59Z,- roslynwythe commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1763820591) at 2023-10-15 11:36 PM PDT -roslynwythe,2023-10-16T06:42:34Z,- roslynwythe opened issue: [5714](https://github.com/hackforla/website/issues/5714) at 2023-10-15 11:42 PM PDT -roslynwythe,2023-10-16T06:45:46Z,- roslynwythe opened issue: [5715](https://github.com/hackforla/website/issues/5715) at 2023-10-15 11:45 PM PDT -roslynwythe,2023-10-17T02:53:12Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1765574969) at 2023-10-16 07:53 PM PDT -roslynwythe,2023-10-17T03:43:16Z,- roslynwythe commented on issue: [5729](https://github.com/hackforla/website/issues/5729#issuecomment-1765615184) at 2023-10-16 08:43 PM PDT -roslynwythe,2023-10-17T03:49:25Z,- roslynwythe commented on issue: [5726](https://github.com/hackforla/website/issues/5726#issuecomment-1765619070) at 2023-10-16 08:49 PM PDT -roslynwythe,2023-10-17T03:51:53Z,- roslynwythe commented on issue: [5723](https://github.com/hackforla/website/issues/5723#issuecomment-1765620570) at 2023-10-16 08:51 PM PDT -roslynwythe,2023-10-17T07:16:13Z,- roslynwythe commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1765809228) at 2023-10-17 12:16 AM PDT -roslynwythe,2023-10-19T06:32:12Z,- roslynwythe commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1770149032) at 2023-10-18 11:32 PM PDT -roslynwythe,2023-10-19T06:37:42Z,- roslynwythe commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1770155049) at 2023-10-18 11:37 PM PDT -roslynwythe,2023-10-19T06:37:42Z,- roslynwythe closed issue as completed: [5525](https://github.com/hackforla/website/issues/5525#event-10705749619) at 2023-10-18 11:37 PM PDT -roslynwythe,2023-10-19T07:00:45Z,- roslynwythe opened issue: [5735](https://github.com/hackforla/website/issues/5735) at 2023-10-19 12:00 AM PDT -roslynwythe,2023-10-19T07:05:55Z,- roslynwythe opened issue: [5736](https://github.com/hackforla/website/issues/5736) at 2023-10-19 12:05 AM PDT -roslynwythe,2023-10-19T07:32:54Z,- roslynwythe opened issue: [5737](https://github.com/hackforla/website/issues/5737) at 2023-10-19 12:32 AM PDT -roslynwythe,2023-10-19T07:35:17Z,- roslynwythe opened issue: [5738](https://github.com/hackforla/website/issues/5738) at 2023-10-19 12:35 AM PDT -roslynwythe,2023-10-19T07:36:52Z,- roslynwythe opened issue: [5739](https://github.com/hackforla/website/issues/5739) at 2023-10-19 12:36 AM PDT -roslynwythe,2023-10-19T07:48:06Z,- roslynwythe commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1770252398) at 2023-10-19 12:48 AM PDT -roslynwythe,2023-10-21T00:43:34Z,- roslynwythe commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1773563149) at 2023-10-20 05:43 PM PDT -roslynwythe,2023-10-21T00:43:44Z,- roslynwythe closed issue as completed: [4134](https://github.com/hackforla/website/issues/4134#event-10729671783) at 2023-10-20 05:43 PM PDT -roslynwythe,2023-10-21T01:04:52Z,- roslynwythe opened issue: [5746](https://github.com/hackforla/website/issues/5746) at 2023-10-20 06:04 PM PDT -roslynwythe,2023-10-22T06:25:31Z,- roslynwythe commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1774008194) at 2023-10-21 11:25 PM PDT -roslynwythe,2023-10-22T08:34:57Z,- roslynwythe commented on issue: [5749](https://github.com/hackforla/website/issues/5749#issuecomment-1774032408) at 2023-10-22 01:34 AM PDT -roslynwythe,2023-10-22T08:39:43Z,- roslynwythe submitted pull request review: [5750](https://github.com/hackforla/website/pull/5750#pullrequestreview-1691394570) at 2023-10-22 01:39 AM PDT -roslynwythe,2023-10-22T17:20:04Z,- roslynwythe commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1774150056) at 2023-10-22 10:20 AM PDT -roslynwythe,2023-10-22T17:20:04Z,- roslynwythe closed issue as completed: [5642](https://github.com/hackforla/website/issues/5642#event-10733680405) at 2023-10-22 10:20 AM PDT -roslynwythe,2023-10-23T03:27:09Z,- roslynwythe closed issue by PR 5765: [5620](https://github.com/hackforla/website/issues/5620#event-10735298807) at 2023-10-22 08:27 PM PDT -roslynwythe,2023-10-23T04:44:53Z,- roslynwythe closed issue by PR 5751: [4101](https://github.com/hackforla/website/issues/4101#event-10735643174) at 2023-10-22 09:44 PM PDT -roslynwythe,2023-10-23T06:01:46Z,- roslynwythe commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1774488245) at 2023-10-22 11:01 PM PDT -roslynwythe,2023-10-23T06:01:47Z,- roslynwythe closed issue as completed: [4595](https://github.com/hackforla/website/issues/4595#event-10736049544) at 2023-10-22 11:01 PM PDT -roslynwythe,2023-10-23T06:52:35Z,- roslynwythe commented on issue: [5766](https://github.com/hackforla/website/issues/5766#issuecomment-1774539964) at 2023-10-22 11:52 PM PDT -roslynwythe,2023-10-23T06:52:36Z,- roslynwythe closed issue as not planned: [5766](https://github.com/hackforla/website/issues/5766#event-10736422985) at 2023-10-22 11:52 PM PDT -roslynwythe,2023-10-23T22:54:28Z,- roslynwythe commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-1776149877) at 2023-10-23 03:54 PM PDT -roslynwythe,2023-10-24T03:01:44Z,- roslynwythe commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1776423981) at 2023-10-23 08:01 PM PDT -roslynwythe,2023-10-24T08:06:40Z,- roslynwythe commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1776723574) at 2023-10-24 01:06 AM PDT -roslynwythe,2023-10-24T22:38:14Z,- roslynwythe submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1696008873) at 2023-10-24 03:38 PM PDT -roslynwythe,2023-10-25T02:02:53Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1778360387) at 2023-10-24 07:02 PM PDT -roslynwythe,2023-10-29T18:20:13Z,- roslynwythe commented on issue: [5738](https://github.com/hackforla/website/issues/5738#issuecomment-1784188683) at 2023-10-29 11:20 AM PDT -roslynwythe,2023-10-29T18:20:14Z,- roslynwythe closed issue as completed: [5738](https://github.com/hackforla/website/issues/5738#event-10800362583) at 2023-10-29 11:20 AM PDT -roslynwythe,2023-10-29T18:23:09Z,- roslynwythe commented on issue: [5311](https://github.com/hackforla/website/issues/5311#issuecomment-1784189235) at 2023-10-29 11:23 AM PDT -roslynwythe,2023-10-29T18:23:10Z,- roslynwythe closed issue as completed: [5311](https://github.com/hackforla/website/issues/5311#event-10800369654) at 2023-10-29 11:23 AM PDT -roslynwythe,2023-10-29T18:58:42Z,- roslynwythe commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1784197584) at 2023-10-29 11:58 AM PDT -roslynwythe,2023-10-30T17:59:03Z,- roslynwythe commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1785767478) at 2023-10-30 10:59 AM PDT -roslynwythe,2023-10-30T17:59:23Z,- roslynwythe commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1785768009) at 2023-10-30 10:59 AM PDT -roslynwythe,2023-11-01T06:13:34Z,- roslynwythe commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1788467393) at 2023-10-31 11:13 PM PDT -roslynwythe,2023-11-01T07:08:41Z,- roslynwythe opened issue: [5819](https://github.com/hackforla/website/issues/5819) at 2023-11-01 12:08 AM PDT -roslynwythe,2023-11-02T00:19:20Z,- roslynwythe commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1789866630) at 2023-11-01 05:19 PM PDT -roslynwythe,2023-11-02T07:43:28Z,- roslynwythe opened issue: [5826](https://github.com/hackforla/website/issues/5826) at 2023-11-02 12:43 AM PDT -roslynwythe,2023-11-02T08:19:03Z,- roslynwythe opened issue: [5827](https://github.com/hackforla/website/issues/5827) at 2023-11-02 01:19 AM PDT -roslynwythe,2023-11-03T05:23:11Z,- roslynwythe opened issue: [5829](https://github.com/hackforla/website/issues/5829) at 2023-11-02 10:23 PM PDT -roslynwythe,2023-11-03T05:54:41Z,- roslynwythe opened issue: [5830](https://github.com/hackforla/website/issues/5830) at 2023-11-02 10:54 PM PDT -roslynwythe,2023-11-03T06:01:10Z,- roslynwythe assigned to issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1789866630) at 2023-11-02 11:01 PM PDT -roslynwythe,2023-11-03T06:07:38Z,- roslynwythe pull request merged: [5438](https://github.com/hackforla/website/pull/5438#event-10851767706) at 2023-11-02 11:07 PM PDT -roslynwythe,2023-11-03T06:07:39Z,- roslynwythe closed issue by PR 5438: [5165](https://github.com/hackforla/website/issues/5165#event-10851767805) at 2023-11-02 11:07 PM PDT -roslynwythe,2023-11-03T07:35:06Z,- roslynwythe opened issue: [5831](https://github.com/hackforla/website/issues/5831) at 2023-11-03 12:35 AM PDT -roslynwythe,2023-11-03T07:59:53Z,- roslynwythe opened issue: [5832](https://github.com/hackforla/website/issues/5832) at 2023-11-03 12:59 AM PDT -roslynwythe,2023-11-03T08:07:33Z,- roslynwythe opened pull request: [5833](https://github.com/hackforla/website/pull/5833) at 2023-11-03 01:07 AM PDT -roslynwythe,2023-11-03T08:21:04Z,- roslynwythe commented on pull request: [5833](https://github.com/hackforla/website/pull/5833#issuecomment-1792031611) at 2023-11-03 01:21 AM PDT -roslynwythe,2023-11-03T08:21:04Z,- roslynwythe pull request closed w/o merging: [5833](https://github.com/hackforla/website/pull/5833#event-10852600120) at 2023-11-03 01:21 AM PDT -roslynwythe,2023-11-03T08:21:12Z,- roslynwythe reopened pull request: [5833](https://github.com/hackforla/website/pull/5833#event-10852600120) at 2023-11-03 01:21 AM PDT -roslynwythe,2023-11-03T08:24:57Z,- roslynwythe pull request closed w/o merging: [5833](https://github.com/hackforla/website/pull/5833#event-10852638801) at 2023-11-03 01:24 AM PDT -roslynwythe,2023-11-03T08:25:22Z,- roslynwythe closed issue as completed: [5832](https://github.com/hackforla/website/issues/5832#event-10852644188) at 2023-11-03 01:25 AM PDT -roslynwythe,2023-11-03T08:25:27Z,- roslynwythe reopened issue: [5832](https://github.com/hackforla/website/issues/5832#event-10852644188) at 2023-11-03 01:25 AM PDT -roslynwythe,2023-11-03T08:25:35Z,- roslynwythe closed issue as not planned: [5832](https://github.com/hackforla/website/issues/5832#event-10852646651) at 2023-11-03 01:25 AM PDT -roslynwythe,2023-11-05T09:26:21Z,- roslynwythe opened pull request: [5836](https://github.com/hackforla/website/pull/5836) at 2023-11-05 01:26 AM PST -roslynwythe,2023-11-06T23:10:10Z,- roslynwythe commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1797008165) at 2023-11-06 03:10 PM PST -roslynwythe,2023-11-06T23:34:39Z,- roslynwythe commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1797033119) at 2023-11-06 03:34 PM PST -roslynwythe,2023-11-06T23:38:59Z,- roslynwythe commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1797036806) at 2023-11-06 03:38 PM PST -roslynwythe,2023-11-07T02:10:48Z,- roslynwythe closed issue as completed: [5403](https://github.com/hackforla/website/issues/5403#event-10880924052) at 2023-11-06 06:10 PM PST -roslynwythe,2023-11-07T03:26:14Z,- roslynwythe commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1797619845) at 2023-11-06 07:26 PM PST -roslynwythe,2023-11-07T03:52:50Z,- roslynwythe commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1797702785) at 2023-11-06 07:52 PM PST -roslynwythe,2023-11-07T06:12:13Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1797881143) at 2023-11-06 10:12 PM PST -roslynwythe,2023-11-07T06:27:25Z,- roslynwythe commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1797893971) at 2023-11-06 10:27 PM PST -roslynwythe,2023-11-07T06:28:41Z,- roslynwythe commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1797895073) at 2023-11-06 10:28 PM PST -roslynwythe,2023-11-07T06:29:32Z,- roslynwythe commented on issue: [5872](https://github.com/hackforla/website/issues/5872#issuecomment-1797895771) at 2023-11-06 10:29 PM PST -roslynwythe,2023-11-07T06:31:44Z,- roslynwythe commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1797897558) at 2023-11-06 10:31 PM PST -roslynwythe,2023-11-07T06:37:48Z,- roslynwythe commented on issue: [5869](https://github.com/hackforla/website/issues/5869#issuecomment-1797902301) at 2023-11-06 10:37 PM PST -roslynwythe,2023-11-07T21:23:36Z,- roslynwythe commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1800167298) at 2023-11-07 01:23 PM PST -roslynwythe,2023-11-08T00:43:02Z,- roslynwythe opened issue: [5878](https://github.com/hackforla/website/issues/5878) at 2023-11-07 04:43 PM PST -roslynwythe,2023-11-08T00:51:50Z,- roslynwythe opened issue: [5879](https://github.com/hackforla/website/issues/5879) at 2023-11-07 04:51 PM PST -roslynwythe,2023-11-08T00:55:21Z,- roslynwythe opened issue: [5880](https://github.com/hackforla/website/issues/5880) at 2023-11-07 04:55 PM PST -roslynwythe,2023-11-08T00:59:55Z,- roslynwythe opened issue: [5881](https://github.com/hackforla/website/issues/5881) at 2023-11-07 04:59 PM PST -roslynwythe,2023-11-08T01:03:53Z,- roslynwythe opened issue: [5882](https://github.com/hackforla/website/issues/5882) at 2023-11-07 05:03 PM PST -roslynwythe,2023-11-08T07:06:23Z,- roslynwythe commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1801210269) at 2023-11-07 11:06 PM PST -roslynwythe,2023-11-08T08:37:12Z,- roslynwythe commented on issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1801323803) at 2023-11-08 12:37 AM PST -roslynwythe,2023-11-08T08:47:48Z,- roslynwythe opened issue: [5885](https://github.com/hackforla/website/issues/5885) at 2023-11-08 12:47 AM PST -roslynwythe,2023-11-08T08:59:13Z,- roslynwythe commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1801356254) at 2023-11-08 12:59 AM PST -roslynwythe,2023-11-08T09:14:09Z,- roslynwythe commented on issue: [5737](https://github.com/hackforla/website/issues/5737#issuecomment-1801382389) at 2023-11-08 01:14 AM PST -roslynwythe,2023-11-08T09:14:09Z,- roslynwythe closed issue as completed: [5737](https://github.com/hackforla/website/issues/5737#event-10897768127) at 2023-11-08 01:14 AM PST -roslynwythe,2023-11-08T19:22:06Z,- roslynwythe commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1802508469) at 2023-11-08 11:22 AM PST -roslynwythe,2023-11-08T19:22:06Z,- roslynwythe closed issue as completed: [5501](https://github.com/hackforla/website/issues/5501#event-10904925750) at 2023-11-08 11:22 AM PST -roslynwythe,2023-11-12T10:09:39Z,- roslynwythe commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1807079497) at 2023-11-12 02:09 AM PST -roslynwythe,2023-11-12T10:34:24Z,- roslynwythe commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1807086090) at 2023-11-12 02:34 AM PST -roslynwythe,2023-11-12T18:26:30Z,- roslynwythe commented on pull request: [5888](https://github.com/hackforla/website/pull/5888#issuecomment-1807203761) at 2023-11-12 10:26 AM PST -roslynwythe,2023-11-13T06:47:12Z,- roslynwythe commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1807558454) at 2023-11-12 10:47 PM PST -roslynwythe,2023-11-13T07:10:42Z,- roslynwythe commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1807577969) at 2023-11-12 11:10 PM PST -roslynwythe,2023-11-13T07:51:06Z,- roslynwythe commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1807619006) at 2023-11-12 11:51 PM PST -roslynwythe,2023-11-13T08:10:20Z,- roslynwythe commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1807642392) at 2023-11-13 12:10 AM PST -roslynwythe,2023-11-13T08:39:12Z,- roslynwythe opened issue: [5895](https://github.com/hackforla/website/issues/5895) at 2023-11-13 12:39 AM PST -roslynwythe,2023-11-13T08:58:52Z,- roslynwythe commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1807708980) at 2023-11-13 12:58 AM PST -roslynwythe,2023-11-13T09:14:40Z,- roslynwythe opened issue: [5897](https://github.com/hackforla/website/issues/5897) at 2023-11-13 01:14 AM PST -roslynwythe,2023-11-13T09:24:41Z,- roslynwythe commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1807752887) at 2023-11-13 01:24 AM PST -roslynwythe,2023-11-13T23:16:35Z,- roslynwythe commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809285454) at 2023-11-13 03:16 PM PST -roslynwythe,2023-11-14T00:40:53Z,- roslynwythe commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1809357889) at 2023-11-13 04:40 PM PST -roslynwythe,2023-11-14T00:47:02Z,- roslynwythe commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1809364689) at 2023-11-13 04:47 PM PST -roslynwythe,2023-11-14T00:47:02Z,- roslynwythe closed issue as completed: [5166](https://github.com/hackforla/website/issues/5166#event-10948543061) at 2023-11-13 04:47 PM PST -roslynwythe,2023-11-14T00:49:20Z,- roslynwythe commented on issue: [4368](https://github.com/hackforla/website/issues/4368#issuecomment-1809366463) at 2023-11-13 04:49 PM PST -roslynwythe,2023-11-14T00:49:20Z,- roslynwythe closed issue as completed: [4368](https://github.com/hackforla/website/issues/4368#event-10948553833) at 2023-11-13 04:49 PM PST -roslynwythe,2023-11-14T18:38:38Z,- roslynwythe commented on issue: [5808](https://github.com/hackforla/website/issues/5808#issuecomment-1810920494) at 2023-11-14 10:38 AM PST -roslynwythe,2023-11-14T18:43:08Z,- roslynwythe commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1810929161) at 2023-11-14 10:43 AM PST -roslynwythe,2023-11-14T20:16:30Z,- roslynwythe submitted pull request review: [5896](https://github.com/hackforla/website/pull/5896#pullrequestreview-1730695807) at 2023-11-14 12:16 PM PST -roslynwythe,2023-11-15T01:12:18Z,- roslynwythe submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1731073460) at 2023-11-14 05:12 PM PST -roslynwythe,2023-11-15T01:31:48Z,- roslynwythe submitted pull request review: [5905](https://github.com/hackforla/website/pull/5905#pullrequestreview-1731087630) at 2023-11-14 05:31 PM PST -roslynwythe,2023-11-15T02:06:42Z,- roslynwythe unassigned from issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1800404637) at 2023-11-14 06:06 PM PST -roslynwythe,2023-11-15T06:45:00Z,- roslynwythe commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1811892268) at 2023-11-14 10:45 PM PST -roslynwythe,2023-11-15T06:53:57Z,- roslynwythe submitted pull request review: [5905](https://github.com/hackforla/website/pull/5905#pullrequestreview-1731343273) at 2023-11-14 10:53 PM PST -roslynwythe,2023-11-15T07:20:49Z,- roslynwythe submitted pull request review: [5902](https://github.com/hackforla/website/pull/5902#pullrequestreview-1731384117) at 2023-11-14 11:20 PM PST -roslynwythe,2023-11-15T07:38:04Z,- roslynwythe submitted pull request review: [5896](https://github.com/hackforla/website/pull/5896#pullrequestreview-1731406190) at 2023-11-14 11:38 PM PST -roslynwythe,2023-11-15T08:11:27Z,- roslynwythe submitted pull request review: [5900](https://github.com/hackforla/website/pull/5900#pullrequestreview-1731453373) at 2023-11-15 12:11 AM PST -roslynwythe,2023-11-15T08:44:29Z,- roslynwythe submitted pull request review: [5898](https://github.com/hackforla/website/pull/5898#pullrequestreview-1731507722) at 2023-11-15 12:44 AM PST -roslynwythe,2023-11-15T21:47:14Z,- roslynwythe pull request closed w/o merging: [5836](https://github.com/hackforla/website/pull/5836#event-10972610423) at 2023-11-15 01:47 PM PST -roslynwythe,2023-11-15T22:26:05Z,- roslynwythe commented on pull request: [5903](https://github.com/hackforla/website/pull/5903#issuecomment-1813360210) at 2023-11-15 02:26 PM PST -roslynwythe,2023-11-15T22:26:33Z,- roslynwythe closed issue by PR 5902: [5802](https://github.com/hackforla/website/issues/5802#event-10972963621) at 2023-11-15 02:26 PM PST -roslynwythe,2023-11-15T22:33:34Z,- roslynwythe closed issue by PR 5903: [5874](https://github.com/hackforla/website/issues/5874#event-10973046048) at 2023-11-15 02:33 PM PST -roslynwythe,2023-11-17T01:59:02Z,- roslynwythe commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1815627030) at 2023-11-16 05:59 PM PST -roslynwythe,2023-11-17T02:00:33Z,- roslynwythe unassigned from issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1811744864) at 2023-11-16 06:00 PM PST -roslynwythe,2023-11-19T19:05:09Z,- roslynwythe commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1817947754) at 2023-11-19 11:05 AM PST -roslynwythe,2023-11-19T19:06:02Z,- roslynwythe commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1817947950) at 2023-11-19 11:06 AM PST -roslynwythe,2023-11-19T19:52:34Z,- roslynwythe commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1817960024) at 2023-11-19 11:52 AM PST -roslynwythe,2023-11-19T21:05:02Z,- roslynwythe commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1817977070) at 2023-11-19 01:05 PM PST -roslynwythe,2023-11-19T21:05:02Z,- roslynwythe closed issue as completed: [5297](https://github.com/hackforla/website/issues/5297#event-11004598377) at 2023-11-19 01:05 PM PST -roslynwythe,2023-11-19T23:20:25Z,- roslynwythe submitted pull request review: [5913](https://github.com/hackforla/website/pull/5913#pullrequestreview-1738750830) at 2023-11-19 03:20 PM PST -roslynwythe,2023-11-19T23:48:26Z,- roslynwythe submitted pull request review: [5898](https://github.com/hackforla/website/pull/5898#pullrequestreview-1738756815) at 2023-11-19 03:48 PM PST -roslynwythe,2023-11-20T06:04:05Z,- roslynwythe submitted pull request review: [5898](https://github.com/hackforla/website/pull/5898#pullrequestreview-1739011749) at 2023-11-19 10:04 PM PST -roslynwythe,2023-11-20T23:03:28Z,- roslynwythe commented on pull request: [5898](https://github.com/hackforla/website/pull/5898#issuecomment-1819945072) at 2023-11-20 03:03 PM PST -roslynwythe,2023-11-21T00:08:49Z,- roslynwythe opened issue: [5926](https://github.com/hackforla/website/issues/5926) at 2023-11-20 04:08 PM PST -roslynwythe,2023-11-21T00:42:42Z,- roslynwythe commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1820034287) at 2023-11-20 04:42 PM PST -roslynwythe,2023-11-21T00:54:20Z,- roslynwythe commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1820043000) at 2023-11-20 04:54 PM PST -roslynwythe,2023-11-22T10:21:10Z,- roslynwythe opened issue: [5930](https://github.com/hackforla/website/issues/5930) at 2023-11-22 02:21 AM PST -roslynwythe,2023-11-22T10:30:00Z,- roslynwythe assigned to issue: [5930](https://github.com/hackforla/website/issues/5930#issuecomment-1822487493) at 2023-11-22 02:30 AM PST -roslynwythe,2023-11-22T10:35:44Z,- roslynwythe commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1822510891) at 2023-11-22 02:35 AM PST -roslynwythe,2023-11-24T21:23:25Z,- roslynwythe closed issue as completed: [5758](https://github.com/hackforla/website/issues/5758#event-11059385400) at 2023-11-24 01:23 PM PST -roslynwythe,2023-11-24T21:46:00Z,- roslynwythe commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1826101141) at 2023-11-24 01:46 PM PST -roslynwythe,2023-11-26T18:58:00Z,- roslynwythe commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1826868756) at 2023-11-26 10:58 AM PST -roslynwythe,2023-11-26T20:18:17Z,- roslynwythe commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1826886232) at 2023-11-26 12:18 PM PST -roslynwythe,2023-11-26T20:33:56Z,- roslynwythe commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1826889467) at 2023-11-26 12:33 PM PST -roslynwythe,2023-11-26T23:45:31Z,- roslynwythe commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1826941865) at 2023-11-26 03:45 PM PST -roslynwythe,2023-11-27T02:17:13Z,- roslynwythe closed issue as completed: [5264](https://github.com/hackforla/website/issues/5264#event-11065121388) at 2023-11-26 06:17 PM PST -roslynwythe,2023-11-27T02:19:36Z,- roslynwythe commented on issue: [5930](https://github.com/hackforla/website/issues/5930#issuecomment-1827026481) at 2023-11-26 06:19 PM PST -roslynwythe,2023-11-27T02:19:36Z,- roslynwythe closed issue as not planned: [5930](https://github.com/hackforla/website/issues/5930#event-11065132860) at 2023-11-26 06:19 PM PST -roslynwythe,2023-11-27T03:46:05Z,- roslynwythe commented on issue: [5007](https://github.com/hackforla/website/issues/5007#issuecomment-1827081766) at 2023-11-26 07:46 PM PST -roslynwythe,2023-11-27T04:19:07Z,- roslynwythe closed issue as not planned: [4963](https://github.com/hackforla/website/issues/4963#event-11065738839) at 2023-11-26 08:19 PM PST -roslynwythe,2023-11-27T19:27:43Z,- roslynwythe commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1828474692) at 2023-11-27 11:27 AM PST -roslynwythe,2023-11-28T00:51:06Z,- roslynwythe assigned to issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-1688877945) at 2023-11-27 04:51 PM PST -roslynwythe,2023-11-28T02:29:16Z,- roslynwythe commented on issue: [4958](https://github.com/hackforla/website/issues/4958#issuecomment-1828961732) at 2023-11-27 06:29 PM PST -roslynwythe,2023-11-28T02:29:16Z,- roslynwythe closed issue as not planned: [4958](https://github.com/hackforla/website/issues/4958#event-11078037259) at 2023-11-27 06:29 PM PST -roslynwythe,2023-11-28T08:30:13Z,- roslynwythe commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1829329546) at 2023-11-28 12:30 AM PST -roslynwythe,2023-11-28T08:41:21Z,- roslynwythe commented on pull request: [4950](https://github.com/hackforla/website/pull/4950#issuecomment-1829345685) at 2023-11-28 12:41 AM PST -roslynwythe,2023-11-28T08:58:33Z,- roslynwythe commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1829372081) at 2023-11-28 12:58 AM PST -roslynwythe,2023-11-28T09:38:22Z,- roslynwythe commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1829440312) at 2023-11-28 01:38 AM PST -roslynwythe,2023-11-29T03:03:57Z,- roslynwythe commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1831139335) at 2023-11-28 07:03 PM PST -roslynwythe,2023-11-29T07:19:27Z,- roslynwythe commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1831344222) at 2023-11-28 11:19 PM PST -roslynwythe,2023-11-29T08:58:35Z,- roslynwythe commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1831481033) at 2023-11-29 12:58 AM PST -roslynwythe,2023-12-01T20:22:50Z,- roslynwythe assigned to issue: [5953](https://github.com/hackforla/website/issues/5953) at 2023-12-01 12:22 PM PST -roslynwythe,2023-12-01T23:14:54Z,- roslynwythe commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1836907048) at 2023-12-01 03:14 PM PST -roslynwythe,2023-12-01T23:14:54Z,- roslynwythe closed issue as completed: [5736](https://github.com/hackforla/website/issues/5736#event-11127271187) at 2023-12-01 03:14 PM PST -roslynwythe,2023-12-04T23:44:51Z,- roslynwythe commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1839740454) at 2023-12-04 03:44 PM PST -roslynwythe,2023-12-04T23:52:19Z,- roslynwythe opened issue: [5958](https://github.com/hackforla/website/issues/5958) at 2023-12-04 03:52 PM PST -roslynwythe,2023-12-05T00:12:20Z,- roslynwythe opened issue: [5959](https://github.com/hackforla/website/issues/5959) at 2023-12-04 04:12 PM PST -roslynwythe,2023-12-05T00:39:09Z,- roslynwythe opened issue: [5960](https://github.com/hackforla/website/issues/5960) at 2023-12-04 04:39 PM PST -roslynwythe,2023-12-05T01:34:18Z,- roslynwythe opened issue: [5963](https://github.com/hackforla/website/issues/5963) at 2023-12-04 05:34 PM PST -roslynwythe,2023-12-05T02:12:55Z,- roslynwythe closed issue by PR 5467: [4788](https://github.com/hackforla/website/issues/4788#event-11146913470) at 2023-12-04 06:12 PM PST -roslynwythe,2023-12-05T02:28:08Z,- roslynwythe opened issue: [5965](https://github.com/hackforla/website/issues/5965) at 2023-12-04 06:28 PM PST -roslynwythe,2023-12-05T02:32:11Z,- roslynwythe commented on issue: [5965](https://github.com/hackforla/website/issues/5965#issuecomment-1839896661) at 2023-12-04 06:32 PM PST -roslynwythe,2023-12-05T04:21:58Z,- roslynwythe opened issue: [5968](https://github.com/hackforla/website/issues/5968) at 2023-12-04 08:21 PM PST -roslynwythe,2023-12-05T08:28:59Z,- roslynwythe opened issue: [5972](https://github.com/hackforla/website/issues/5972) at 2023-12-05 12:28 AM PST -roslynwythe,2023-12-05T08:53:09Z,- roslynwythe commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1840290833) at 2023-12-05 12:53 AM PST -roslynwythe,2023-12-05T10:09:14Z,- roslynwythe commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1840435376) at 2023-12-05 02:09 AM PST -roslynwythe,2023-12-05T10:30:18Z,- roslynwythe assigned to issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1840435376) at 2023-12-05 02:30 AM PST -roslynwythe,2023-12-07T09:41:44Z,- roslynwythe opened issue: [5975](https://github.com/hackforla/website/issues/5975) at 2023-12-07 01:41 AM PST -roslynwythe,2023-12-07T09:46:02Z,- roslynwythe commented on issue: [5975](https://github.com/hackforla/website/issues/5975#issuecomment-1845016908) at 2023-12-07 01:46 AM PST -roslynwythe,2023-12-07T09:46:02Z,- roslynwythe closed issue as not planned: [5975](https://github.com/hackforla/website/issues/5975#event-11179555170) at 2023-12-07 01:46 AM PST -roslynwythe,2023-12-08T03:02:50Z,- roslynwythe commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1846480449) at 2023-12-07 07:02 PM PST -roslynwythe,2023-12-08T04:59:31Z,- roslynwythe commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1846549069) at 2023-12-07 08:59 PM PST -roslynwythe,2023-12-08T08:07:58Z,- roslynwythe commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1846734791) at 2023-12-08 12:07 AM PST -roslynwythe,2023-12-08T08:16:01Z,- roslynwythe commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1846743619) at 2023-12-08 12:16 AM PST -roslynwythe,2023-12-08T08:18:10Z,- roslynwythe commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1846745981) at 2023-12-08 12:18 AM PST -roslynwythe,2023-12-08T09:01:29Z,- roslynwythe commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1846798808) at 2023-12-08 01:01 AM PST -roslynwythe,2023-12-08T21:37:29Z,- roslynwythe commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1847872554) at 2023-12-08 01:37 PM PST -roslynwythe,2023-12-08T22:17:08Z,- roslynwythe submitted pull request review: [5950](https://github.com/hackforla/website/pull/5950#pullrequestreview-1773240614) at 2023-12-08 02:17 PM PST -roslynwythe,2023-12-10T02:52:12Z,- roslynwythe commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1848840780) at 2023-12-09 06:52 PM PST -roslynwythe,2023-12-10T03:12:17Z,- roslynwythe commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1848843916) at 2023-12-09 07:12 PM PST -roslynwythe,2023-12-10T03:22:03Z,- roslynwythe commented on issue: [5739](https://github.com/hackforla/website/issues/5739#issuecomment-1848845283) at 2023-12-09 07:22 PM PST -roslynwythe,2023-12-10T03:22:03Z,- roslynwythe closed issue as completed: [5739](https://github.com/hackforla/website/issues/5739#event-11202013940) at 2023-12-09 07:22 PM PST -roslynwythe,2023-12-10T03:25:09Z,- roslynwythe commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1848845672) at 2023-12-09 07:25 PM PST -roslynwythe,2023-12-10T03:25:09Z,- roslynwythe closed issue as completed: [5595](https://github.com/hackforla/website/issues/5595#event-11202017713) at 2023-12-09 07:25 PM PST -roslynwythe,2023-12-10T04:44:02Z,- roslynwythe commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1848857194) at 2023-12-09 08:44 PM PST -roslynwythe,2023-12-10T04:57:12Z,- roslynwythe commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1848858837) at 2023-12-09 08:57 PM PST -roslynwythe,2023-12-10T10:05:57Z,- roslynwythe commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1848917244) at 2023-12-10 02:05 AM PST -roslynwythe,2023-12-11T22:58:49Z,- roslynwythe assigned to issue: [5666](https://github.com/hackforla/website/issues/5666#issuecomment-1763492024) at 2023-12-11 02:58 PM PST -roslynwythe,2023-12-12T00:05:18Z,- roslynwythe commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1851091814) at 2023-12-11 04:05 PM PST -roslynwythe,2023-12-12T00:25:27Z,- roslynwythe opened issue: [5981](https://github.com/hackforla/website/issues/5981) at 2023-12-11 04:25 PM PST -roslynwythe,2023-12-12T00:41:14Z,- roslynwythe opened issue: [5982](https://github.com/hackforla/website/issues/5982) at 2023-12-11 04:41 PM PST -roslynwythe,2023-12-12T00:57:22Z,- roslynwythe opened issue: [5983](https://github.com/hackforla/website/issues/5983) at 2023-12-11 04:57 PM PST -roslynwythe,2023-12-12T01:23:49Z,- roslynwythe opened issue: [5984](https://github.com/hackforla/website/issues/5984) at 2023-12-11 05:23 PM PST -roslynwythe,2023-12-12T01:30:19Z,- roslynwythe opened issue: [5985](https://github.com/hackforla/website/issues/5985) at 2023-12-11 05:30 PM PST -roslynwythe,2023-12-12T01:42:41Z,- roslynwythe opened issue: [5986](https://github.com/hackforla/website/issues/5986) at 2023-12-11 05:42 PM PST -roslynwythe,2023-12-12T01:44:42Z,- roslynwythe opened issue: [5987](https://github.com/hackforla/website/issues/5987) at 2023-12-11 05:44 PM PST -roslynwythe,2023-12-12T01:47:02Z,- roslynwythe opened issue: [5988](https://github.com/hackforla/website/issues/5988) at 2023-12-11 05:47 PM PST -roslynwythe,2023-12-12T01:49:17Z,- roslynwythe opened issue: [5989](https://github.com/hackforla/website/issues/5989) at 2023-12-11 05:49 PM PST -roslynwythe,2023-12-12T01:51:35Z,- roslynwythe opened issue: [5990](https://github.com/hackforla/website/issues/5990) at 2023-12-11 05:51 PM PST -roslynwythe,2023-12-12T01:53:40Z,- roslynwythe opened issue: [5991](https://github.com/hackforla/website/issues/5991) at 2023-12-11 05:53 PM PST -roslynwythe,2023-12-12T02:05:23Z,- roslynwythe opened issue: [5992](https://github.com/hackforla/website/issues/5992) at 2023-12-11 06:05 PM PST -roslynwythe,2023-12-12T02:07:25Z,- roslynwythe opened issue: [5993](https://github.com/hackforla/website/issues/5993) at 2023-12-11 06:07 PM PST -roslynwythe,2023-12-12T02:10:04Z,- roslynwythe opened issue: [5994](https://github.com/hackforla/website/issues/5994) at 2023-12-11 06:10 PM PST -roslynwythe,2023-12-12T02:12:27Z,- roslynwythe opened issue: [5995](https://github.com/hackforla/website/issues/5995) at 2023-12-11 06:12 PM PST -roslynwythe,2023-12-12T02:15:38Z,- roslynwythe opened issue: [5996](https://github.com/hackforla/website/issues/5996) at 2023-12-11 06:15 PM PST -roslynwythe,2023-12-12T02:18:40Z,- roslynwythe opened issue: [5997](https://github.com/hackforla/website/issues/5997) at 2023-12-11 06:18 PM PST -roslynwythe,2023-12-12T02:20:53Z,- roslynwythe opened issue: [5998](https://github.com/hackforla/website/issues/5998) at 2023-12-11 06:20 PM PST -roslynwythe,2023-12-12T02:56:39Z,- roslynwythe opened issue: [5999](https://github.com/hackforla/website/issues/5999) at 2023-12-11 06:56 PM PST -roslynwythe,2023-12-12T04:08:03Z,- roslynwythe opened issue: [6000](https://github.com/hackforla/website/issues/6000) at 2023-12-11 08:08 PM PST -roslynwythe,2023-12-12T05:03:48Z,- roslynwythe opened issue: [6001](https://github.com/hackforla/website/issues/6001) at 2023-12-11 09:03 PM PST -roslynwythe,2023-12-12T05:34:07Z,- roslynwythe opened issue: [6002](https://github.com/hackforla/website/issues/6002) at 2023-12-11 09:34 PM PST -roslynwythe,2023-12-12T06:03:48Z,- roslynwythe submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1776712026) at 2023-12-11 10:03 PM PST -roslynwythe,2023-12-12T23:53:43Z,- roslynwythe submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1778616297) at 2023-12-12 03:53 PM PST -roslynwythe,2023-12-12T23:53:54Z,- roslynwythe closed issue by PR 5977: [5695](https://github.com/hackforla/website/issues/5695#event-11229729451) at 2023-12-12 03:53 PM PST -roslynwythe,2023-12-14T01:07:15Z,- roslynwythe commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1854938752) at 2023-12-13 05:07 PM PST -roslynwythe,2023-12-14T03:05:59Z,- roslynwythe commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-1855050910) at 2023-12-13 07:05 PM PST -roslynwythe,2023-12-14T06:25:27Z,- roslynwythe commented on issue: [4282](https://github.com/hackforla/website/issues/4282#issuecomment-1855215174) at 2023-12-13 10:25 PM PST -roslynwythe,2023-12-15T04:24:22Z,- roslynwythe commented on issue: [5849](https://github.com/hackforla/website/issues/5849#issuecomment-1857255375) at 2023-12-14 08:24 PM PST -roslynwythe,2023-12-15T10:50:29Z,- roslynwythe commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1857673609) at 2023-12-15 02:50 AM PST -roslynwythe,2023-12-18T08:53:42Z,- roslynwythe commented on pull request: [6007](https://github.com/hackforla/website/pull/6007#issuecomment-1859830556) at 2023-12-18 12:53 AM PST -roslynwythe,2023-12-18T08:56:04Z,- roslynwythe commented on issue: [5831](https://github.com/hackforla/website/issues/5831#issuecomment-1859834310) at 2023-12-18 12:56 AM PST -roslynwythe,2023-12-18T08:56:05Z,- roslynwythe closed issue as not planned: [5831](https://github.com/hackforla/website/issues/5831#event-11273522579) at 2023-12-18 12:56 AM PST -roslynwythe,2023-12-27T10:18:41Z,- roslynwythe opened issue: [6017](https://github.com/hackforla/website/issues/6017) at 2023-12-27 02:18 AM PST -roslynwythe,2023-12-28T02:10:55Z,- roslynwythe commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1870758204) at 2023-12-27 06:10 PM PST -roslynwythe,2023-12-31T10:13:53Z,- roslynwythe commented on issue: [6017](https://github.com/hackforla/website/issues/6017#issuecomment-1872912169) at 2023-12-31 02:13 AM PST -roslynwythe,2024-01-02T00:43:33Z,- roslynwythe opened issue: [6023](https://github.com/hackforla/website/issues/6023) at 2024-01-01 04:43 PM PST -roslynwythe,2024-01-02T01:13:21Z,- roslynwythe opened issue: [6024](https://github.com/hackforla/website/issues/6024) at 2024-01-01 05:13 PM PST -roslynwythe,2024-01-03T03:10:56Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1874797630) at 2024-01-02 07:10 PM PST -roslynwythe,2024-01-03T04:59:52Z,- roslynwythe commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1874850140) at 2024-01-02 08:59 PM PST -roslynwythe,2024-01-03T06:56:28Z,- roslynwythe commented on issue: [5735](https://github.com/hackforla/website/issues/5735#issuecomment-1874925254) at 2024-01-02 10:56 PM PST -roslynwythe,2024-01-03T06:56:28Z,- roslynwythe closed issue as completed: [5735](https://github.com/hackforla/website/issues/5735#event-11376090693) at 2024-01-02 10:56 PM PST -roslynwythe,2024-01-03T07:37:20Z,- roslynwythe opened issue: [6043](https://github.com/hackforla/website/issues/6043) at 2024-01-02 11:37 PM PST -roslynwythe,2024-01-03T08:08:49Z,- roslynwythe opened issue: [6044](https://github.com/hackforla/website/issues/6044) at 2024-01-03 12:08 AM PST -roslynwythe,2024-01-03T08:17:44Z,- roslynwythe opened issue: [6045](https://github.com/hackforla/website/issues/6045) at 2024-01-03 12:17 AM PST -roslynwythe,2024-01-03T08:25:10Z,- roslynwythe opened issue: [6046](https://github.com/hackforla/website/issues/6046) at 2024-01-03 12:25 AM PST -roslynwythe,2024-01-03T08:31:54Z,- roslynwythe opened issue: [6047](https://github.com/hackforla/website/issues/6047) at 2024-01-03 12:31 AM PST -roslynwythe,2024-01-03T08:35:42Z,- roslynwythe opened issue: [6048](https://github.com/hackforla/website/issues/6048) at 2024-01-03 12:35 AM PST -roslynwythe,2024-01-03T08:42:36Z,- roslynwythe opened issue: [6049](https://github.com/hackforla/website/issues/6049) at 2024-01-03 12:42 AM PST -roslynwythe,2024-01-03T08:50:05Z,- roslynwythe opened issue: [6050](https://github.com/hackforla/website/issues/6050) at 2024-01-03 12:50 AM PST -roslynwythe,2024-01-03T08:55:21Z,- roslynwythe opened issue: [6051](https://github.com/hackforla/website/issues/6051) at 2024-01-03 12:55 AM PST -roslynwythe,2024-01-03T09:00:25Z,- roslynwythe opened issue: [6052](https://github.com/hackforla/website/issues/6052) at 2024-01-03 01:00 AM PST -roslynwythe,2024-01-03T09:05:53Z,- roslynwythe opened issue: [6053](https://github.com/hackforla/website/issues/6053) at 2024-01-03 01:05 AM PST -roslynwythe,2024-01-03T09:11:04Z,- roslynwythe opened issue: [6054](https://github.com/hackforla/website/issues/6054) at 2024-01-03 01:11 AM PST -roslynwythe,2024-01-04T04:39:11Z,- roslynwythe commented on issue: [5666](https://github.com/hackforla/website/issues/5666#issuecomment-1876301546) at 2024-01-03 08:39 PM PST -roslynwythe,2024-01-04T04:39:12Z,- roslynwythe closed issue as not planned: [5666](https://github.com/hackforla/website/issues/5666#event-11385309589) at 2024-01-03 08:39 PM PST -roslynwythe,2024-01-04T09:41:26Z,- roslynwythe opened issue: [6059](https://github.com/hackforla/website/issues/6059) at 2024-01-04 01:41 AM PST -roslynwythe,2024-01-04T20:15:34Z,- roslynwythe commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1877704262) at 2024-01-04 12:15 PM PST -roslynwythe,2024-01-04T20:24:08Z,- roslynwythe commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1877714031) at 2024-01-04 12:24 PM PST -roslynwythe,2024-01-04T20:24:08Z,- roslynwythe closed issue as completed: [5897](https://github.com/hackforla/website/issues/5897#event-11394559228) at 2024-01-04 12:24 PM PST -roslynwythe,2024-01-05T18:22:42Z,- roslynwythe commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1879088221) at 2024-01-05 10:22 AM PST -roslynwythe,2024-01-09T08:39:30Z,- roslynwythe commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1882623113) at 2024-01-09 12:39 AM PST -roslynwythe,2024-01-09T09:24:07Z,- roslynwythe assigned to issue: [6024](https://github.com/hackforla/website/issues/6024#issuecomment-1882148859) at 2024-01-09 01:24 AM PST -roslynwythe,2024-01-09T09:29:32Z,- roslynwythe opened issue: [6082](https://github.com/hackforla/website/issues/6082) at 2024-01-09 01:29 AM PST -roslynwythe,2024-01-10T02:52:16Z,- roslynwythe commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1884108851) at 2024-01-09 06:52 PM PST -roslynwythe,2024-01-10T03:29:15Z,- roslynwythe commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1884133862) at 2024-01-09 07:29 PM PST -roslynwythe,2024-01-10T03:56:16Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1884152985) at 2024-01-09 07:56 PM PST -roslynwythe,2024-01-10T17:43:47Z,- roslynwythe opened issue: [6086](https://github.com/hackforla/website/issues/6086) at 2024-01-10 09:43 AM PST -roslynwythe,2024-01-10T17:47:21Z,- roslynwythe opened issue: [6087](https://github.com/hackforla/website/issues/6087) at 2024-01-10 09:47 AM PST -roslynwythe,2024-01-10T17:49:46Z,- roslynwythe opened issue: [6088](https://github.com/hackforla/website/issues/6088) at 2024-01-10 09:49 AM PST -roslynwythe,2024-01-10T17:51:43Z,- roslynwythe opened issue: [6089](https://github.com/hackforla/website/issues/6089) at 2024-01-10 09:51 AM PST -roslynwythe,2024-01-10T17:54:29Z,- roslynwythe opened issue: [6090](https://github.com/hackforla/website/issues/6090) at 2024-01-10 09:54 AM PST -roslynwythe,2024-01-10T17:56:37Z,- roslynwythe opened issue: [6091](https://github.com/hackforla/website/issues/6091) at 2024-01-10 09:56 AM PST -roslynwythe,2024-01-10T17:57:22Z,- roslynwythe opened issue: [6092](https://github.com/hackforla/website/issues/6092) at 2024-01-10 09:57 AM PST -roslynwythe,2024-01-10T18:00:31Z,- roslynwythe opened issue: [6093](https://github.com/hackforla/website/issues/6093) at 2024-01-10 10:00 AM PST -roslynwythe,2024-01-10T18:02:18Z,- roslynwythe opened issue: [6094](https://github.com/hackforla/website/issues/6094) at 2024-01-10 10:02 AM PST -roslynwythe,2024-01-10T18:03:32Z,- roslynwythe opened issue: [6095](https://github.com/hackforla/website/issues/6095) at 2024-01-10 10:03 AM PST -roslynwythe,2024-01-10T18:07:08Z,- roslynwythe opened issue: [6096](https://github.com/hackforla/website/issues/6096) at 2024-01-10 10:07 AM PST -roslynwythe,2024-01-10T18:09:18Z,- roslynwythe opened issue: [6097](https://github.com/hackforla/website/issues/6097) at 2024-01-10 10:09 AM PST -roslynwythe,2024-01-12T00:15:35Z,- roslynwythe commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1888182338) at 2024-01-11 04:15 PM PST -roslynwythe,2024-01-12T02:57:25Z,- roslynwythe commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1888355944) at 2024-01-11 06:57 PM PST -roslynwythe,2024-01-14T18:37:07Z,- roslynwythe commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1891035970) at 2024-01-14 10:37 AM PST -roslynwythe,2024-01-14T18:37:07Z,- roslynwythe closed issue as completed: [5678](https://github.com/hackforla/website/issues/5678#event-11481903621) at 2024-01-14 10:37 AM PST -roslynwythe,2024-01-14T19:33:18Z,- roslynwythe commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1891050195) at 2024-01-14 11:33 AM PST -roslynwythe,2024-01-14T19:41:55Z,- roslynwythe opened issue: [6105](https://github.com/hackforla/website/issues/6105) at 2024-01-14 11:41 AM PST -roslynwythe,2024-01-14T19:45:13Z,- roslynwythe opened issue: [6106](https://github.com/hackforla/website/issues/6106) at 2024-01-14 11:45 AM PST -roslynwythe,2024-01-14T19:50:35Z,- roslynwythe opened issue: [6107](https://github.com/hackforla/website/issues/6107) at 2024-01-14 11:50 AM PST -roslynwythe,2024-01-14T20:09:44Z,- roslynwythe opened issue: [6108](https://github.com/hackforla/website/issues/6108) at 2024-01-14 12:09 PM PST -roslynwythe,2024-01-14T20:11:34Z,- roslynwythe opened issue: [6110](https://github.com/hackforla/website/issues/6110) at 2024-01-14 12:11 PM PST -roslynwythe,2024-01-14T20:13:12Z,- roslynwythe opened issue: [6111](https://github.com/hackforla/website/issues/6111) at 2024-01-14 12:13 PM PST -roslynwythe,2024-01-14T21:16:43Z,- roslynwythe opened issue: [6112](https://github.com/hackforla/website/issues/6112) at 2024-01-14 01:16 PM PST -roslynwythe,2024-01-14T21:28:28Z,- roslynwythe opened issue: [6113](https://github.com/hackforla/website/issues/6113) at 2024-01-14 01:28 PM PST -roslynwythe,2024-01-15T22:10:09Z,- roslynwythe commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1892816196) at 2024-01-15 02:10 PM PST -roslynwythe,2024-01-17T03:11:12Z,- roslynwythe commented on issue: [6105](https://github.com/hackforla/website/issues/6105#issuecomment-1894867207) at 2024-01-16 07:11 PM PST -roslynwythe,2024-01-17T03:11:12Z,- roslynwythe closed issue as not planned: [6105](https://github.com/hackforla/website/issues/6105#event-11505956586) at 2024-01-16 07:11 PM PST -roslynwythe,2024-01-17T03:13:16Z,- roslynwythe commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1894868570) at 2024-01-16 07:13 PM PST -roslynwythe,2024-01-17T06:15:24Z,- roslynwythe commented on issue: [6106](https://github.com/hackforla/website/issues/6106#issuecomment-1895005758) at 2024-01-16 10:15 PM PST -roslynwythe,2024-01-17T06:57:13Z,- roslynwythe opened issue: [6123](https://github.com/hackforla/website/issues/6123) at 2024-01-16 10:57 PM PST -roslynwythe,2024-01-17T07:01:02Z,- roslynwythe opened issue: [6124](https://github.com/hackforla/website/issues/6124) at 2024-01-16 11:01 PM PST -roslynwythe,2024-01-17T07:03:35Z,- roslynwythe opened issue: [6125](https://github.com/hackforla/website/issues/6125) at 2024-01-16 11:03 PM PST -roslynwythe,2024-01-17T07:06:07Z,- roslynwythe opened issue: [6126](https://github.com/hackforla/website/issues/6126) at 2024-01-16 11:06 PM PST -roslynwythe,2024-01-17T09:10:27Z,- roslynwythe reopened issue: [5895](https://github.com/hackforla/website/issues/5895#event-10984924341) at 2024-01-17 01:10 AM PST -roslynwythe,2024-01-18T09:05:47Z,- roslynwythe submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1829185232) at 2024-01-18 01:05 AM PST -roslynwythe,2024-01-18T09:15:56Z,- roslynwythe commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1898085715) at 2024-01-18 01:15 AM PST -roslynwythe,2024-01-18T10:13:05Z,- roslynwythe commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1898181719) at 2024-01-18 02:13 AM PST -roslynwythe,2024-01-19T03:11:30Z,- roslynwythe commented on issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1899596187) at 2024-01-18 07:11 PM PST -roslynwythe,2024-01-19T03:11:30Z,- roslynwythe closed issue as completed: [5982](https://github.com/hackforla/website/issues/5982#event-11532281215) at 2024-01-18 07:11 PM PST -roslynwythe,2024-01-21T08:14:11Z,- roslynwythe submitted pull request review: [6055](https://github.com/hackforla/website/pull/6055#pullrequestreview-1835285290) at 2024-01-21 12:14 AM PST -roslynwythe,2024-01-21T18:31:30Z,- roslynwythe commented on issue: [5990](https://github.com/hackforla/website/issues/5990#issuecomment-1902721513) at 2024-01-21 10:31 AM PST -roslynwythe,2024-01-21T18:31:31Z,- roslynwythe closed issue as completed: [5990](https://github.com/hackforla/website/issues/5990#event-11549668517) at 2024-01-21 10:31 AM PST -roslynwythe,2024-01-21T19:16:53Z,- roslynwythe commented on pull request: [6136](https://github.com/hackforla/website/pull/6136#issuecomment-1902733102) at 2024-01-21 11:16 AM PST -roslynwythe,2024-01-21T19:25:20Z,- roslynwythe commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1902735327) at 2024-01-21 11:25 AM PST -roslynwythe,2024-01-21T19:29:37Z,- roslynwythe commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1902736389) at 2024-01-21 11:29 AM PST -roslynwythe,2024-01-21T20:29:30Z,- roslynwythe commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1902753075) at 2024-01-21 12:29 PM PST -roslynwythe,2024-01-22T07:27:41Z,- roslynwythe commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1903403174) at 2024-01-21 11:27 PM PST -roslynwythe,2024-01-22T08:54:07Z,- roslynwythe commented on issue: [6092](https://github.com/hackforla/website/issues/6092#issuecomment-1903522674) at 2024-01-22 12:54 AM PST -roslynwythe,2024-01-22T08:54:07Z,- roslynwythe closed issue as completed: [6092](https://github.com/hackforla/website/issues/6092#event-11553586356) at 2024-01-22 12:54 AM PST -roslynwythe,2024-01-22T08:55:30Z,- roslynwythe commented on issue: [5986](https://github.com/hackforla/website/issues/5986#issuecomment-1903524819) at 2024-01-22 12:55 AM PST -roslynwythe,2024-01-22T08:55:31Z,- roslynwythe closed issue as completed: [5986](https://github.com/hackforla/website/issues/5986#event-11553602860) at 2024-01-22 12:55 AM PST -roslynwythe,2024-01-22T10:30:37Z,- roslynwythe opened issue: [6142](https://github.com/hackforla/website/issues/6142) at 2024-01-22 02:30 AM PST -roslynwythe,2024-01-22T10:31:03Z,- roslynwythe assigned to issue: [6142](https://github.com/hackforla/website/issues/6142) at 2024-01-22 02:31 AM PST -roslynwythe,2024-01-22T10:46:43Z,- roslynwythe commented on issue: [6142](https://github.com/hackforla/website/issues/6142#issuecomment-1903726144) at 2024-01-22 02:46 AM PST -roslynwythe,2024-01-22T22:19:37Z,- roslynwythe commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1904926390) at 2024-01-22 02:19 PM PST -roslynwythe,2024-01-22T22:50:14Z,- roslynwythe commented on issue: [6024](https://github.com/hackforla/website/issues/6024#issuecomment-1904967372) at 2024-01-22 02:50 PM PST -roslynwythe,2024-01-22T22:50:14Z,- roslynwythe closed issue as completed: [6024](https://github.com/hackforla/website/issues/6024#event-11562894641) at 2024-01-22 02:50 PM PST -roslynwythe,2024-01-22T22:55:50Z,- roslynwythe opened issue: [6143](https://github.com/hackforla/website/issues/6143) at 2024-01-22 02:55 PM PST -roslynwythe,2024-01-22T22:57:48Z,- roslynwythe assigned to issue: [6143](https://github.com/hackforla/website/issues/6143#issuecomment-1904974293) at 2024-01-22 02:57 PM PST -roslynwythe,2024-01-24T03:59:33Z,- roslynwythe commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1907314132) at 2024-01-23 07:59 PM PST -roslynwythe,2024-01-24T03:59:33Z,- roslynwythe closed issue as completed: [5743](https://github.com/hackforla/website/issues/5743#event-11578667731) at 2024-01-23 07:59 PM PST -roslynwythe,2024-01-24T05:19:02Z,- roslynwythe commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907396023) at 2024-01-23 09:19 PM PST -roslynwythe,2024-01-24T05:51:30Z,- roslynwythe commented on pull request: [6146](https://github.com/hackforla/website/pull/6146#issuecomment-1907421336) at 2024-01-23 09:51 PM PST -roslynwythe,2024-01-24T05:52:47Z,- roslynwythe commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907422247) at 2024-01-23 09:52 PM PST -roslynwythe,2024-01-24T08:32:12Z,- roslynwythe commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1907634884) at 2024-01-24 12:32 AM PST -roslynwythe,2024-01-25T02:48:28Z,- roslynwythe commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1909256394) at 2024-01-24 06:48 PM PST -roslynwythe,2024-01-25T08:46:38Z,- roslynwythe commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1909673703) at 2024-01-25 12:46 AM PST -roslynwythe,2024-01-25T08:46:38Z,- roslynwythe closed issue as completed: [6000](https://github.com/hackforla/website/issues/6000#event-11594219364) at 2024-01-25 12:46 AM PST -roslynwythe,2024-01-25T08:55:38Z,- roslynwythe commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1909687346) at 2024-01-25 12:55 AM PST -roslynwythe,2024-01-26T10:11:38Z,- roslynwythe commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1911796137) at 2024-01-26 02:11 AM PST -roslynwythe,2024-01-26T10:26:04Z,- roslynwythe commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1911814941) at 2024-01-26 02:26 AM PST -roslynwythe,2024-01-26T10:55:36Z,- roslynwythe commented on issue: [4850](https://github.com/hackforla/website/issues/4850#issuecomment-1911876454) at 2024-01-26 02:55 AM PST -roslynwythe,2024-01-28T08:23:14Z,- roslynwythe assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1912793042) at 2024-01-28 12:23 AM PST -roslynwythe,2024-01-28T08:33:03Z,- roslynwythe commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1913515515) at 2024-01-28 12:33 AM PST -roslynwythe,2024-01-28T09:07:41Z,- roslynwythe commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1913524877) at 2024-01-28 01:07 AM PST -roslynwythe,2024-01-28T09:07:41Z,- roslynwythe closed issue as completed: [6002](https://github.com/hackforla/website/issues/6002#event-11619371571) at 2024-01-28 01:07 AM PST -roslynwythe,2024-01-28T09:15:13Z,- roslynwythe commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1913527378) at 2024-01-28 01:15 AM PST -roslynwythe,2024-01-28T10:42:05Z,- roslynwythe submitted pull request review: [6152](https://github.com/hackforla/website/pull/6152#pullrequestreview-1847486205) at 2024-01-28 02:42 AM PST -roslynwythe,2024-01-28T11:29:04Z,- roslynwythe submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1847496936) at 2024-01-28 03:29 AM PST -roslynwythe,2024-01-28T18:15:42Z,- roslynwythe commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1913680078) at 2024-01-28 10:15 AM PST -roslynwythe,2024-01-28T19:50:16Z,- roslynwythe closed issue as completed: [4909](https://github.com/hackforla/website/issues/4909#event-11620775379) at 2024-01-28 11:50 AM PST -roslynwythe,2024-01-28T19:56:18Z,- roslynwythe commented on issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1913704638) at 2024-01-28 11:56 AM PST -roslynwythe,2024-01-28T19:56:53Z,- roslynwythe closed issue as completed: [6159](https://github.com/hackforla/website/issues/6159#event-11620787091) at 2024-01-28 11:56 AM PST -roslynwythe,2024-01-28T20:17:37Z,- roslynwythe commented on issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1913710103) at 2024-01-28 12:17 PM PST -roslynwythe,2024-01-29T22:39:54Z,- roslynwythe assigned to issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1907179035) at 2024-01-29 02:39 PM PST -roslynwythe,2024-01-29T23:20:21Z,- roslynwythe commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1915746990) at 2024-01-29 03:20 PM PST -roslynwythe,2024-01-30T01:23:24Z,- roslynwythe assigned to issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1915825035) at 2024-01-29 05:23 PM PST -roslynwythe,2024-01-30T02:05:07Z,- roslynwythe commented on issue: [5749](https://github.com/hackforla/website/issues/5749#issuecomment-1915929880) at 2024-01-29 06:05 PM PST -roslynwythe,2024-01-30T02:06:00Z,- roslynwythe closed issue as not planned: [5749](https://github.com/hackforla/website/issues/5749#event-11635486874) at 2024-01-29 06:06 PM PST -roslynwythe,2024-01-30T09:19:54Z,- roslynwythe opened issue: [6196](https://github.com/hackforla/website/issues/6196) at 2024-01-30 01:19 AM PST -roslynwythe,2024-01-30T09:40:39Z,- roslynwythe commented on issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1916440958) at 2024-01-30 01:40 AM PST -roslynwythe,2024-01-31T07:06:28Z,- roslynwythe commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1918509909) at 2024-01-30 11:06 PM PST -roslynwythe,2024-01-31T08:05:14Z,- roslynwythe opened issue: [6199](https://github.com/hackforla/website/issues/6199) at 2024-01-31 12:05 AM PST -roslynwythe,2024-01-31T08:12:58Z,- roslynwythe commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1918595015) at 2024-01-31 12:12 AM PST -roslynwythe,2024-01-31T08:21:28Z,- roslynwythe opened issue: [6200](https://github.com/hackforla/website/issues/6200) at 2024-01-31 12:21 AM PST -roslynwythe,2024-02-01T06:49:10Z,- roslynwythe commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1920622409) at 2024-01-31 10:49 PM PST -roslynwythe,2024-02-01T06:57:01Z,- roslynwythe commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1920630340) at 2024-01-31 10:57 PM PST -roslynwythe,2024-02-01T06:59:19Z,- roslynwythe commented on pull request: [6203](https://github.com/hackforla/website/pull/6203#issuecomment-1920633041) at 2024-01-31 10:59 PM PST -roslynwythe,2024-02-01T07:05:46Z,- roslynwythe closed issue by PR 6190: [6043](https://github.com/hackforla/website/issues/6043#event-11665426745) at 2024-01-31 11:05 PM PST -roslynwythe,2024-02-01T07:58:52Z,- roslynwythe submitted pull request review: [6158](https://github.com/hackforla/website/pull/6158#pullrequestreview-1855768408) at 2024-01-31 11:58 PM PST -roslynwythe,2024-02-01T07:59:18Z,- roslynwythe closed issue by PR 6158: [6082](https://github.com/hackforla/website/issues/6082#event-11665938461) at 2024-01-31 11:59 PM PST -roslynwythe,2024-02-01T08:22:27Z,- roslynwythe submitted pull request review: [6204](https://github.com/hackforla/website/pull/6204#pullrequestreview-1855811465) at 2024-02-01 12:22 AM PST -roslynwythe,2024-02-01T09:16:28Z,- roslynwythe commented on pull request: [6197](https://github.com/hackforla/website/pull/6197#issuecomment-1920858091) at 2024-02-01 01:16 AM PST -roslynwythe,2024-02-01T19:20:40Z,- roslynwythe commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1922059015) at 2024-02-01 11:20 AM PST -roslynwythe,2024-02-01T19:20:40Z,- roslynwythe closed issue as completed: [6001](https://github.com/hackforla/website/issues/6001#event-11674756625) at 2024-02-01 11:20 AM PST -roslynwythe,2024-02-03T01:12:36Z,- roslynwythe commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1924993301) at 2024-02-02 05:12 PM PST -roslynwythe,2024-02-04T13:26:46Z,- roslynwythe assigned to issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925749497) at 2024-02-04 05:26 AM PST -roslynwythe,2024-02-04T20:08:48Z,- roslynwythe opened issue: [6225](https://github.com/hackforla/website/issues/6225) at 2024-02-04 12:08 PM PST -roslynwythe,2024-02-04T20:56:10Z,- roslynwythe opened issue: [6226](https://github.com/hackforla/website/issues/6226) at 2024-02-04 12:56 PM PST -roslynwythe,2024-02-04T22:16:14Z,- roslynwythe opened issue: [6227](https://github.com/hackforla/website/issues/6227) at 2024-02-04 02:16 PM PST -roslynwythe,2024-02-04T23:02:02Z,- roslynwythe opened issue: [6228](https://github.com/hackforla/website/issues/6228) at 2024-02-04 03:02 PM PST -roslynwythe,2024-02-05T06:58:02Z,- roslynwythe commented on issue: [6228](https://github.com/hackforla/website/issues/6228#issuecomment-1926339928) at 2024-02-04 10:58 PM PST -roslynwythe,2024-02-05T06:58:02Z,- roslynwythe closed issue as not planned: [6228](https://github.com/hackforla/website/issues/6228#event-11699465210) at 2024-02-04 10:58 PM PST -roslynwythe,2024-02-05T07:17:44Z,- roslynwythe opened issue: [6230](https://github.com/hackforla/website/issues/6230) at 2024-02-04 11:17 PM PST -roslynwythe,2024-02-05T07:21:30Z,- roslynwythe opened issue: [6231](https://github.com/hackforla/website/issues/6231) at 2024-02-04 11:21 PM PST -roslynwythe,2024-02-05T07:41:08Z,- roslynwythe commented on issue: [5983](https://github.com/hackforla/website/issues/5983#issuecomment-1926388609) at 2024-02-04 11:41 PM PST -roslynwythe,2024-02-05T07:41:08Z,- roslynwythe closed issue as completed: [5983](https://github.com/hackforla/website/issues/5983#event-11699836094) at 2024-02-04 11:41 PM PST -roslynwythe,2024-02-05T07:52:16Z,- roslynwythe opened issue: [6232](https://github.com/hackforla/website/issues/6232) at 2024-02-04 11:52 PM PST -roslynwythe,2024-02-05T08:17:33Z,- roslynwythe opened issue: [6233](https://github.com/hackforla/website/issues/6233) at 2024-02-05 12:17 AM PST -roslynwythe,2024-02-05T09:02:22Z,- roslynwythe commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1926508301) at 2024-02-05 01:02 AM PST -roslynwythe,2024-02-05T09:41:20Z,- roslynwythe commented on issue: [6233](https://github.com/hackforla/website/issues/6233#issuecomment-1926575952) at 2024-02-05 01:41 AM PST -roslynwythe,2024-02-06T00:01:28Z,- roslynwythe opened issue: [6240](https://github.com/hackforla/website/issues/6240) at 2024-02-05 04:01 PM PST -roslynwythe,2024-02-06T00:06:55Z,- roslynwythe closed issue as completed: [4559](https://github.com/hackforla/website/issues/4559#event-11711354225) at 2024-02-05 04:06 PM PST -roslynwythe,2024-02-06T00:13:39Z,- roslynwythe commented on issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1928545100) at 2024-02-05 04:13 PM PST -roslynwythe,2024-02-06T00:13:39Z,- roslynwythe closed issue as completed: [5999](https://github.com/hackforla/website/issues/5999#event-11711399192) at 2024-02-05 04:13 PM PST -roslynwythe,2024-02-06T02:56:53Z,- roslynwythe opened issue: [6242](https://github.com/hackforla/website/issues/6242) at 2024-02-05 06:56 PM PST -roslynwythe,2024-02-06T03:06:54Z,- roslynwythe commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1928701160) at 2024-02-05 07:06 PM PST -roslynwythe,2024-02-06T04:14:42Z,- roslynwythe commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1928754968) at 2024-02-05 08:14 PM PST -roslynwythe,2024-02-06T04:48:22Z,- roslynwythe closed issue as completed: [6150](https://github.com/hackforla/website/issues/6150#event-11712895541) at 2024-02-05 08:48 PM PST -roslynwythe,2024-02-06T05:06:41Z,- roslynwythe commented on issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1928792912) at 2024-02-05 09:06 PM PST -roslynwythe,2024-02-06T05:06:42Z,- roslynwythe closed issue as not planned: [5679](https://github.com/hackforla/website/issues/5679#event-11712993153) at 2024-02-05 09:06 PM PST -roslynwythe,2024-02-06T05:31:20Z,- roslynwythe submitted pull request review: [6205](https://github.com/hackforla/website/pull/6205#pullrequestreview-1864306702) at 2024-02-05 09:31 PM PST -roslynwythe,2024-02-06T08:45:03Z,- roslynwythe opened issue: [6256](https://github.com/hackforla/website/issues/6256) at 2024-02-06 12:45 AM PST -roslynwythe,2024-02-06T08:46:43Z,- roslynwythe opened issue: [6257](https://github.com/hackforla/website/issues/6257) at 2024-02-06 12:46 AM PST -roslynwythe,2024-02-06T08:49:33Z,- roslynwythe opened issue: [6258](https://github.com/hackforla/website/issues/6258) at 2024-02-06 12:49 AM PST -roslynwythe,2024-02-06T08:51:35Z,- roslynwythe opened issue: [6259](https://github.com/hackforla/website/issues/6259) at 2024-02-06 12:51 AM PST -roslynwythe,2024-02-06T20:52:37Z,- roslynwythe assigned to issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1776621003) at 2024-02-06 12:52 PM PST -roslynwythe,2024-02-06T20:54:11Z,- roslynwythe commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1930734176) at 2024-02-06 12:54 PM PST -roslynwythe,2024-02-07T09:08:21Z,- roslynwythe commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1931586866) at 2024-02-07 01:08 AM PST -roslynwythe,2024-02-07T10:49:28Z,- roslynwythe submitted pull request review: [6205](https://github.com/hackforla/website/pull/6205#pullrequestreview-1867498925) at 2024-02-07 02:49 AM PST -roslynwythe,2024-02-07T10:49:39Z,- roslynwythe closed issue by PR 6205: [4035](https://github.com/hackforla/website/issues/4035#event-11730618340) at 2024-02-07 02:49 AM PST -roslynwythe,2024-02-08T07:29:07Z,- roslynwythe commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1933497463) at 2024-02-07 11:29 PM PST -roslynwythe,2024-02-08T07:37:34Z,- roslynwythe commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1933506370) at 2024-02-07 11:37 PM PST -roslynwythe,2024-02-08T07:37:34Z,- roslynwythe closed issue as completed: [5979](https://github.com/hackforla/website/issues/5979#event-11741770270) at 2024-02-07 11:37 PM PST -roslynwythe,2024-02-08T23:11:31Z,- roslynwythe opened issue: [6266](https://github.com/hackforla/website/issues/6266) at 2024-02-08 03:11 PM PST -roslynwythe,2024-02-08T23:50:08Z,- roslynwythe commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1935109066) at 2024-02-08 03:50 PM PST -roslynwythe,2024-02-09T00:36:26Z,- roslynwythe assigned to issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1828906348) at 2024-02-08 04:36 PM PST -roslynwythe,2024-02-09T00:38:02Z,- roslynwythe commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1935149661) at 2024-02-08 04:38 PM PST -roslynwythe,2024-02-09T00:46:32Z,- roslynwythe opened issue: [6269](https://github.com/hackforla/website/issues/6269) at 2024-02-08 04:46 PM PST -roslynwythe,2024-02-09T01:04:26Z,- roslynwythe commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1935172073) at 2024-02-08 05:04 PM PST -roslynwythe,2024-02-11T09:09:00Z,- roslynwythe commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1937484099) at 2024-02-11 01:09 AM PST -roslynwythe,2024-02-11T19:48:26Z,- roslynwythe unassigned from issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1915700185) at 2024-02-11 11:48 AM PST -roslynwythe,2024-02-11T20:38:08Z,- roslynwythe commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1937863059) at 2024-02-11 12:38 PM PST -roslynwythe,2024-02-13T03:43:22Z,- roslynwythe commented on issue: [6284](https://github.com/hackforla/website/issues/6284#issuecomment-1940375379) at 2024-02-12 07:43 PM PST -roslynwythe,2024-02-13T03:43:22Z,- roslynwythe closed issue as not planned: [6284](https://github.com/hackforla/website/issues/6284#event-11782910273) at 2024-02-12 07:43 PM PST -roslynwythe,2024-02-13T09:24:12Z,- roslynwythe opened issue: [6286](https://github.com/hackforla/website/issues/6286) at 2024-02-13 01:24 AM PST -roslynwythe,2024-02-14T03:12:53Z,- roslynwythe commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1943020087) at 2024-02-13 07:12 PM PST -roslynwythe,2024-02-14T03:38:07Z,- roslynwythe commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1943035100) at 2024-02-13 07:38 PM PST -roslynwythe,2024-02-14T03:38:07Z,- roslynwythe closed issue as completed: [5895](https://github.com/hackforla/website/issues/5895#event-11796390426) at 2024-02-13 07:38 PM PST -roslynwythe,2024-02-14T07:56:52Z,- roslynwythe commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1943244039) at 2024-02-13 11:56 PM PST -roslynwythe,2024-02-14T07:57:58Z,- roslynwythe commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1943245290) at 2024-02-13 11:57 PM PST -roslynwythe,2024-02-14T09:03:41Z,- roslynwythe opened issue: [6294](https://github.com/hackforla/website/issues/6294) at 2024-02-14 01:03 AM PST -roslynwythe,2024-02-14T09:06:29Z,- roslynwythe opened issue: [6295](https://github.com/hackforla/website/issues/6295) at 2024-02-14 01:06 AM PST -roslynwythe,2024-02-15T00:20:52Z,- roslynwythe commented on issue: [5985](https://github.com/hackforla/website/issues/5985#issuecomment-1945140004) at 2024-02-14 04:20 PM PST -roslynwythe,2024-02-15T00:20:53Z,- roslynwythe closed issue as completed: [5985](https://github.com/hackforla/website/issues/5985#event-11808402233) at 2024-02-14 04:20 PM PST -roslynwythe,2024-02-15T00:22:23Z,- roslynwythe commented on issue: [5987](https://github.com/hackforla/website/issues/5987#issuecomment-1945144040) at 2024-02-14 04:22 PM PST -roslynwythe,2024-02-15T00:22:23Z,- roslynwythe closed issue as completed: [5987](https://github.com/hackforla/website/issues/5987#event-11808410589) at 2024-02-14 04:22 PM PST -roslynwythe,2024-02-15T03:29:20Z,- roslynwythe opened issue: [6296](https://github.com/hackforla/website/issues/6296) at 2024-02-14 07:29 PM PST -roslynwythe,2024-02-15T08:38:47Z,- roslynwythe commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1945599877) at 2024-02-15 12:38 AM PST -roslynwythe,2024-02-15T08:39:18Z,- roslynwythe closed issue by PR 6279: [5841](https://github.com/hackforla/website/issues/5841#event-11812103523) at 2024-02-15 12:39 AM PST -roslynwythe,2024-02-15T08:42:17Z,- roslynwythe commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1945612294) at 2024-02-15 12:42 AM PST -roslynwythe,2024-02-16T02:08:05Z,- roslynwythe submitted pull request review: [6300](https://github.com/hackforla/website/pull/6300#pullrequestreview-1884202358) at 2024-02-15 06:08 PM PST -roslynwythe,2024-02-16T09:07:02Z,- roslynwythe commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1948003371) at 2024-02-16 01:07 AM PST -roslynwythe,2024-02-16T17:27:43Z,- roslynwythe commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1948949038) at 2024-02-16 09:27 AM PST -roslynwythe,2024-02-18T06:03:10Z,- roslynwythe commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1950973275) at 2024-02-17 10:03 PM PST -roslynwythe,2024-02-18T06:03:10Z,- roslynwythe closed issue as completed: [5234](https://github.com/hackforla/website/issues/5234#event-11838137871) at 2024-02-17 10:03 PM PST -roslynwythe,2024-02-20T06:49:15Z,- roslynwythe commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1953583231) at 2024-02-19 10:49 PM PST -roslynwythe,2024-02-21T03:22:28Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1955807095) at 2024-02-20 07:22 PM PST -roslynwythe,2024-02-21T04:29:34Z,- roslynwythe commented on issue: [6334](https://github.com/hackforla/website/issues/6334#issuecomment-1955870562) at 2024-02-20 08:29 PM PST -roslynwythe,2024-02-21T04:29:34Z,- roslynwythe closed issue as not planned: [6334](https://github.com/hackforla/website/issues/6334#event-11870626382) at 2024-02-20 08:29 PM PST -roslynwythe,2024-02-21T04:59:14Z,- roslynwythe commented on issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1955897451) at 2024-02-20 08:59 PM PST -roslynwythe,2024-02-21T06:02:07Z,- roslynwythe commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1955952077) at 2024-02-20 10:02 PM PST -roslynwythe,2024-02-21T06:12:35Z,- roslynwythe commented on issue: [6336](https://github.com/hackforla/website/issues/6336#issuecomment-1955962532) at 2024-02-20 10:12 PM PST -roslynwythe,2024-02-21T06:12:35Z,- roslynwythe closed issue as not planned: [6336](https://github.com/hackforla/website/issues/6336#event-11871396888) at 2024-02-20 10:12 PM PST -roslynwythe,2024-02-21T07:46:43Z,- roslynwythe commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1956064666) at 2024-02-20 11:46 PM PST -roslynwythe,2024-02-21T07:58:45Z,- roslynwythe commented on issue: [5991](https://github.com/hackforla/website/issues/5991#issuecomment-1956080144) at 2024-02-20 11:58 PM PST -roslynwythe,2024-02-21T07:58:45Z,- roslynwythe closed issue as completed: [5991](https://github.com/hackforla/website/issues/5991#event-11872298828) at 2024-02-20 11:58 PM PST -roslynwythe,2024-02-21T23:08:25Z,- roslynwythe commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1958269109) at 2024-02-21 03:08 PM PST -roslynwythe,2024-02-21T23:13:03Z,- roslynwythe assigned to issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1958269109) at 2024-02-21 03:13 PM PST -roslynwythe,2024-02-21T23:25:23Z,- roslynwythe opened issue: [6353](https://github.com/hackforla/website/issues/6353) at 2024-02-21 03:25 PM PST -roslynwythe,2024-02-21T23:29:04Z,- roslynwythe commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1958326993) at 2024-02-21 03:29 PM PST -roslynwythe,2024-02-22T06:55:03Z,- roslynwythe opened issue: [6356](https://github.com/hackforla/website/issues/6356) at 2024-02-21 10:55 PM PST -roslynwythe,2024-02-22T07:36:43Z,- roslynwythe reopened issue: [4508](https://github.com/hackforla/website/issues/4508#event-10480568593) at 2024-02-21 11:36 PM PST -roslynwythe,2024-02-22T07:51:40Z,- roslynwythe commented on issue: [6356](https://github.com/hackforla/website/issues/6356#issuecomment-1958883657) at 2024-02-21 11:51 PM PST -roslynwythe,2024-02-22T07:51:40Z,- roslynwythe closed issue as not planned: [6356](https://github.com/hackforla/website/issues/6356#event-11887220954) at 2024-02-21 11:51 PM PST -roslynwythe,2024-02-22T07:54:32Z,- roslynwythe commented on issue: [4508](https://github.com/hackforla/website/issues/4508#issuecomment-1958887269) at 2024-02-21 11:54 PM PST -roslynwythe,2024-02-22T07:54:32Z,- roslynwythe closed issue as completed: [4508](https://github.com/hackforla/website/issues/4508#event-11887248797) at 2024-02-21 11:54 PM PST -roslynwythe,2024-02-22T23:25:01Z,- roslynwythe commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1960504319) at 2024-02-22 03:25 PM PST -roslynwythe,2024-02-23T01:03:49Z,- roslynwythe commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1960595575) at 2024-02-22 05:03 PM PST -roslynwythe,2024-02-23T03:40:27Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1960691661) at 2024-02-22 07:40 PM PST -roslynwythe,2024-02-23T09:15:19Z,- roslynwythe commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1960971954) at 2024-02-23 01:15 AM PST -roslynwythe,2024-02-23T09:15:20Z,- roslynwythe closed issue as completed: [5992](https://github.com/hackforla/website/issues/5992#event-11901168490) at 2024-02-23 01:15 AM PST -roslynwythe,2024-02-23T22:45:14Z,- roslynwythe opened issue: [6367](https://github.com/hackforla/website/issues/6367) at 2024-02-23 02:45 PM PST -roslynwythe,2024-02-23T23:49:41Z,- roslynwythe commented on issue: [6367](https://github.com/hackforla/website/issues/6367#issuecomment-1962145026) at 2024-02-23 03:49 PM PST -roslynwythe,2024-02-25T08:16:12Z,- roslynwythe commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1962852553) at 2024-02-25 12:16 AM PST -roslynwythe,2024-02-25T09:29:32Z,- roslynwythe commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1962870563) at 2024-02-25 01:29 AM PST -roslynwythe,2024-02-25T09:40:36Z,- roslynwythe commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1962873658) at 2024-02-25 01:40 AM PST -roslynwythe,2024-02-25T18:14:09Z,- roslynwythe commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1963018378) at 2024-02-25 10:14 AM PST -roslynwythe,2024-02-25T18:18:15Z,- roslynwythe commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1963019503) at 2024-02-25 10:18 AM PST -roslynwythe,2024-02-25T18:29:16Z,- roslynwythe unassigned from issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1953496179) at 2024-02-25 10:29 AM PST -roslynwythe,2024-02-25T18:32:08Z,- roslynwythe closed issue by PR 6368: [6310](https://github.com/hackforla/website/issues/6310#event-11913592589) at 2024-02-25 10:32 AM PST -roslynwythe,2024-02-25T21:39:42Z,- roslynwythe commented on issue: [6274](https://github.com/hackforla/website/issues/6274#issuecomment-1963070030) at 2024-02-25 01:39 PM PST -roslynwythe,2024-02-25T21:39:42Z,- roslynwythe closed issue as completed: [6274](https://github.com/hackforla/website/issues/6274#event-11913923855) at 2024-02-25 01:39 PM PST -roslynwythe,2024-02-25T21:50:05Z,- roslynwythe commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1963072600) at 2024-02-25 01:50 PM PST -roslynwythe,2024-02-26T00:34:32Z,- roslynwythe opened issue: [6375](https://github.com/hackforla/website/issues/6375) at 2024-02-25 04:34 PM PST -roslynwythe,2024-02-26T02:27:09Z,- roslynwythe submitted pull request review: [6363](https://github.com/hackforla/website/pull/6363#pullrequestreview-1899862745) at 2024-02-25 06:27 PM PST -roslynwythe,2024-02-26T02:28:37Z,- roslynwythe commented on pull request: [6363](https://github.com/hackforla/website/pull/6363#issuecomment-1963212018) at 2024-02-25 06:28 PM PST -roslynwythe,2024-02-26T02:36:31Z,- roslynwythe commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1963217418) at 2024-02-25 06:36 PM PST -roslynwythe,2024-02-26T02:48:10Z,- roslynwythe opened issue: [6376](https://github.com/hackforla/website/issues/6376) at 2024-02-25 06:48 PM PST -roslynwythe,2024-02-26T02:52:00Z,- roslynwythe opened issue: [6377](https://github.com/hackforla/website/issues/6377) at 2024-02-25 06:52 PM PST -roslynwythe,2024-02-26T04:38:01Z,- roslynwythe opened issue: [6378](https://github.com/hackforla/website/issues/6378) at 2024-02-25 08:38 PM PST -roslynwythe,2024-02-26T04:39:27Z,- roslynwythe commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1963305799) at 2024-02-25 08:39 PM PST -roslynwythe,2024-02-26T05:58:30Z,- roslynwythe commented on issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-1963374607) at 2024-02-25 09:58 PM PST -roslynwythe,2024-02-26T21:25:52Z,- roslynwythe opened issue: [6380](https://github.com/hackforla/website/issues/6380) at 2024-02-26 01:25 PM PST -roslynwythe,2024-02-27T02:25:46Z,- roslynwythe commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1965673758) at 2024-02-26 06:25 PM PST -roslynwythe,2024-02-28T00:50:49Z,- roslynwythe commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1967985507) at 2024-02-27 04:50 PM PST -roslynwythe,2024-02-29T06:49:58Z,- roslynwythe commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1970516096) at 2024-02-28 10:49 PM PST -roslynwythe,2024-02-29T17:52:39Z,- roslynwythe commented on issue: [5994](https://github.com/hackforla/website/issues/5994#issuecomment-1971658321) at 2024-02-29 09:52 AM PST -roslynwythe,2024-02-29T17:52:39Z,- roslynwythe closed issue as completed: [5994](https://github.com/hackforla/website/issues/5994#event-11969547309) at 2024-02-29 09:52 AM PST -roslynwythe,2024-02-29T18:03:10Z,- roslynwythe commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1971674836) at 2024-02-29 10:03 AM PST -roslynwythe,2024-02-29T19:12:27Z,- roslynwythe opened issue: [6398](https://github.com/hackforla/website/issues/6398) at 2024-02-29 11:12 AM PST -roslynwythe,2024-02-29T19:20:20Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1971806294) at 2024-02-29 11:20 AM PST -roslynwythe,2024-02-29T19:25:30Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1971813740) at 2024-02-29 11:25 AM PST -roslynwythe,2024-02-29T19:36:13Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1971829122) at 2024-02-29 11:36 AM PST -roslynwythe,2024-02-29T19:52:59Z,- roslynwythe closed issue as completed: [6398](https://github.com/hackforla/website/issues/6398#event-11970796817) at 2024-02-29 11:52 AM PST -roslynwythe,2024-02-29T20:04:52Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1971869830) at 2024-02-29 12:04 PM PST -roslynwythe,2024-02-29T20:09:21Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1971876022) at 2024-02-29 12:09 PM PST -roslynwythe,2024-02-29T23:44:48Z,- roslynwythe unassigned from issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1972160104) at 2024-02-29 03:44 PM PST -roslynwythe,2024-03-01T00:46:50Z,- roslynwythe unassigned from issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1597628550) at 2024-02-29 04:46 PM PST -roslynwythe,2024-03-01T01:17:20Z,- roslynwythe unassigned from issue: [4943](https://github.com/hackforla/website/issues/4943#issuecomment-1633468284) at 2024-02-29 05:17 PM PST -roslynwythe,2024-03-01T01:31:03Z,- roslynwythe unassigned from issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1972279146) at 2024-02-29 05:31 PM PST -roslynwythe,2024-03-01T02:18:47Z,- roslynwythe assigned to issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1965350895) at 2024-02-29 06:18 PM PST -roslynwythe,2024-03-01T10:46:27Z,- roslynwythe commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1972957644) at 2024-03-01 02:46 AM PST -roslynwythe,2024-03-03T18:45:47Z,- roslynwythe commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1975258390) at 2024-03-03 10:45 AM PST -roslynwythe,2024-03-03T18:50:29Z,- roslynwythe unassigned from issue: [4671](https://github.com/hackforla/website/issues/4671#issuecomment-1547535499) at 2024-03-03 10:50 AM PST -roslynwythe,2024-03-03T18:51:45Z,- roslynwythe unassigned from issue: [6143](https://github.com/hackforla/website/issues/6143#issuecomment-1904976745) at 2024-03-03 10:51 AM PST -roslynwythe,2024-03-03T18:55:19Z,- roslynwythe unassigned from issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1972957644) at 2024-03-03 10:55 AM PST -roslynwythe,2024-03-03T19:13:40Z,- roslynwythe assigned to issue: [6367](https://github.com/hackforla/website/issues/6367#issuecomment-1962145026) at 2024-03-03 11:13 AM PST -roslynwythe,2024-03-03T19:19:46Z,- roslynwythe assigned to issue: [6017](https://github.com/hackforla/website/issues/6017#issuecomment-1972336348) at 2024-03-03 11:19 AM PST -roslynwythe,2024-03-04T00:08:29Z,- roslynwythe assigned to issue: [4821](https://github.com/hackforla/website/issues/4821) at 2024-03-03 04:08 PM PST -roslynwythe,2024-03-04T02:07:45Z,- roslynwythe unassigned from issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975455434) at 2024-03-03 06:07 PM PST -roslynwythe,2024-03-04T04:24:52Z,- roslynwythe unassigned from issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1975412495) at 2024-03-03 08:24 PM PST -roslynwythe,2024-03-05T00:01:29Z,- roslynwythe commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1977697195) at 2024-03-04 04:01 PM PST -roslynwythe,2024-03-05T00:37:31Z,- roslynwythe commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1977734072) at 2024-03-04 04:37 PM PST -roslynwythe,2024-03-05T00:37:44Z,- roslynwythe closed issue as completed: [5746](https://github.com/hackforla/website/issues/5746#event-12006534160) at 2024-03-04 04:37 PM PST -roslynwythe,2024-03-05T01:13:46Z,- roslynwythe assigned to issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1912726743) at 2024-03-04 05:13 PM PST -roslynwythe,2024-03-05T01:23:20Z,- roslynwythe commented on issue: [4862](https://github.com/hackforla/website/issues/4862#issuecomment-1977772895) at 2024-03-04 05:23 PM PST -roslynwythe,2024-03-05T01:26:30Z,- roslynwythe assigned to issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1977775515) at 2024-03-04 05:26 PM PST -roslynwythe,2024-03-06T04:20:18Z,- roslynwythe commented on issue: [6380](https://github.com/hackforla/website/issues/6380#issuecomment-1980062226) at 2024-03-05 08:20 PM PST -roslynwythe,2024-03-08T06:04:22Z,- roslynwythe unassigned from issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1981904417) at 2024-03-07 10:04 PM PST -roslynwythe,2024-03-08T19:50:49Z,- roslynwythe commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1986327200) at 2024-03-08 11:50 AM PST -roslynwythe,2024-03-09T00:02:30Z,- roslynwythe commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1986582600) at 2024-03-08 05:02 PM PDT -roslynwythe,2024-03-10T19:08:55Z,- roslynwythe opened pull request: [6445](https://github.com/hackforla/website/pull/6445) at 2024-03-10 12:08 PM PDT -roslynwythe,2024-03-10T19:09:56Z,- roslynwythe commented on pull request: [6445](https://github.com/hackforla/website/pull/6445#issuecomment-1987334485) at 2024-03-10 12:09 PM PDT -roslynwythe,2024-03-10T19:09:56Z,- roslynwythe pull request closed w/o merging: [6445](https://github.com/hackforla/website/pull/6445#event-12066176124) at 2024-03-10 12:09 PM PDT -roslynwythe,2024-03-10T20:11:58Z,- roslynwythe opened issue: [6446](https://github.com/hackforla/website/issues/6446) at 2024-03-10 01:11 PM PDT -roslynwythe,2024-03-10T20:17:21Z,- roslynwythe assigned to issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-1987349107) at 2024-03-10 01:17 PM PDT -roslynwythe,2024-03-11T01:48:39Z,- roslynwythe commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-1987488022) at 2024-03-10 06:48 PM PDT -roslynwythe,2024-03-11T03:22:29Z,- roslynwythe commented on issue: [5202](https://github.com/hackforla/website/issues/5202#issuecomment-1987562222) at 2024-03-10 08:22 PM PDT -roslynwythe,2024-03-11T05:02:14Z,- roslynwythe opened issue: [6453](https://github.com/hackforla/website/issues/6453) at 2024-03-10 10:02 PM PDT -roslynwythe,2024-03-11T05:44:40Z,- roslynwythe reopened issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1776537729) at 2024-03-10 10:44 PM PDT -roslynwythe,2024-03-11T16:15:50Z,- roslynwythe commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1988828224) at 2024-03-11 09:15 AM PDT -roslynwythe,2024-03-11T16:39:19Z,- roslynwythe commented on issue: [6380](https://github.com/hackforla/website/issues/6380#issuecomment-1988889897) at 2024-03-11 09:39 AM PDT -roslynwythe,2024-03-11T16:39:19Z,- roslynwythe closed issue as completed: [6380](https://github.com/hackforla/website/issues/6380#event-12076605906) at 2024-03-11 09:39 AM PDT -roslynwythe,2024-03-11T17:06:58Z,- roslynwythe commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1988977318) at 2024-03-11 10:06 AM PDT -roslynwythe,2024-03-11T17:41:14Z,- roslynwythe commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1989054075) at 2024-03-11 10:41 AM PDT -roslynwythe,2024-03-11T17:48:22Z,- roslynwythe commented on issue: [5655](https://github.com/hackforla/website/issues/5655#issuecomment-1989068349) at 2024-03-11 10:48 AM PDT -roslynwythe,2024-03-11T17:48:22Z,- roslynwythe closed issue as not planned: [5655](https://github.com/hackforla/website/issues/5655#event-12077665271) at 2024-03-11 10:48 AM PDT -roslynwythe,2024-03-11T17:57:09Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1989097526) at 2024-03-11 10:57 AM PDT -roslynwythe,2024-03-11T17:57:09Z,- roslynwythe reopened issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1989097526) at 2024-03-11 10:57 AM PDT -roslynwythe,2024-03-13T07:46:41Z,- roslynwythe commented on issue: [6096](https://github.com/hackforla/website/issues/6096#issuecomment-1993747195) at 2024-03-13 12:46 AM PDT -roslynwythe,2024-03-13T07:46:41Z,- roslynwythe closed issue as completed: [6096](https://github.com/hackforla/website/issues/6096#event-12099185362) at 2024-03-13 12:46 AM PDT -roslynwythe,2024-03-13T07:48:37Z,- roslynwythe commented on issue: [6087](https://github.com/hackforla/website/issues/6087#issuecomment-1993749720) at 2024-03-13 12:48 AM PDT -roslynwythe,2024-03-13T07:48:37Z,- roslynwythe closed issue as completed: [6087](https://github.com/hackforla/website/issues/6087#event-12099208217) at 2024-03-13 12:48 AM PDT -roslynwythe,2024-03-13T07:52:38Z,- roslynwythe commented on issue: [6086](https://github.com/hackforla/website/issues/6086#issuecomment-1993754951) at 2024-03-13 12:52 AM PDT -roslynwythe,2024-03-13T07:52:38Z,- roslynwythe closed issue as completed: [6086](https://github.com/hackforla/website/issues/6086#event-12099253406) at 2024-03-13 12:52 AM PDT -roslynwythe,2024-03-13T21:57:49Z,- roslynwythe commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1995940948) at 2024-03-13 02:57 PM PDT -roslynwythe,2024-03-14T05:54:39Z,- roslynwythe commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1996580829) at 2024-03-13 10:54 PM PDT -roslynwythe,2024-03-14T06:40:50Z,- roslynwythe commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1996625553) at 2024-03-13 11:40 PM PDT -roslynwythe,2024-03-14T08:29:54Z,- roslynwythe opened issue: [6463](https://github.com/hackforla/website/issues/6463) at 2024-03-14 01:29 AM PDT -roslynwythe,2024-03-14T08:33:34Z,- roslynwythe commented on issue: [5159](https://github.com/hackforla/website/issues/5159#issuecomment-1996856071) at 2024-03-14 01:33 AM PDT -roslynwythe,2024-03-15T00:49:29Z,- roslynwythe commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1998707686) at 2024-03-14 05:49 PM PDT -roslynwythe,2024-03-15T06:50:51Z,- roslynwythe unassigned from issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1986582600) at 2024-03-14 11:50 PM PDT -roslynwythe,2024-03-17T18:29:17Z,- roslynwythe assigned to issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-1996846271) at 2024-03-17 11:29 AM PDT -roslynwythe,2024-03-17T18:38:42Z,- roslynwythe commented on issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-2002573270) at 2024-03-17 11:38 AM PDT -roslynwythe,2024-03-18T22:13:10Z,- roslynwythe commented on issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-2005137589) at 2024-03-18 03:13 PM PDT -roslynwythe,2024-03-19T01:20:00Z,- roslynwythe commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2005558631) at 2024-03-18 06:20 PM PDT -roslynwythe,2024-03-20T05:05:16Z,- roslynwythe opened issue: [6479](https://github.com/hackforla/website/issues/6479) at 2024-03-19 10:05 PM PDT -roslynwythe,2024-03-20T05:16:18Z,- roslynwythe commented on issue: [5660](https://github.com/hackforla/website/issues/5660#issuecomment-2008673028) at 2024-03-19 10:16 PM PDT -roslynwythe,2024-03-20T05:16:18Z,- roslynwythe closed issue as not planned: [5660](https://github.com/hackforla/website/issues/5660#event-12179691622) at 2024-03-19 10:16 PM PDT -roslynwythe,2024-03-20T05:21:56Z,- roslynwythe opened issue: [6480](https://github.com/hackforla/website/issues/6480) at 2024-03-19 10:21 PM PDT -roslynwythe,2024-03-20T05:44:35Z,- roslynwythe opened issue: [6481](https://github.com/hackforla/website/issues/6481) at 2024-03-19 10:44 PM PDT -roslynwythe,2024-03-20T05:48:42Z,- roslynwythe opened issue: [6482](https://github.com/hackforla/website/issues/6482) at 2024-03-19 10:48 PM PDT -roslynwythe,2024-03-20T06:12:13Z,- roslynwythe opened issue: [6483](https://github.com/hackforla/website/issues/6483) at 2024-03-19 11:12 PM PDT -roslynwythe,2024-03-20T07:26:34Z,- roslynwythe opened issue: [6484](https://github.com/hackforla/website/issues/6484) at 2024-03-20 12:26 AM PDT -roslynwythe,2024-03-20T07:50:25Z,- roslynwythe commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-2008970471) at 2024-03-20 12:50 AM PDT -roslynwythe,2024-03-20T08:03:27Z,- roslynwythe opened issue: [6485](https://github.com/hackforla/website/issues/6485) at 2024-03-20 01:03 AM PDT -roslynwythe,2024-03-20T08:13:09Z,- roslynwythe commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-2008999829) at 2024-03-20 01:13 AM PDT -roslynwythe,2024-03-20T08:13:09Z,- roslynwythe closed issue as completed: [4819](https://github.com/hackforla/website/issues/4819#event-12181010959) at 2024-03-20 01:13 AM PDT -roslynwythe,2024-03-21T06:13:43Z,- roslynwythe opened issue: [6487](https://github.com/hackforla/website/issues/6487) at 2024-03-20 11:13 PM PDT -roslynwythe,2024-03-21T06:17:57Z,- roslynwythe opened issue: [6488](https://github.com/hackforla/website/issues/6488) at 2024-03-20 11:17 PM PDT -roslynwythe,2024-03-21T06:20:24Z,- roslynwythe opened issue: [6489](https://github.com/hackforla/website/issues/6489) at 2024-03-20 11:20 PM PDT -roslynwythe,2024-03-21T06:23:49Z,- roslynwythe opened issue: [6490](https://github.com/hackforla/website/issues/6490) at 2024-03-20 11:23 PM PDT -roslynwythe,2024-03-21T06:25:25Z,- roslynwythe opened issue: [6491](https://github.com/hackforla/website/issues/6491) at 2024-03-20 11:25 PM PDT -roslynwythe,2024-03-21T06:26:44Z,- roslynwythe opened issue: [6492](https://github.com/hackforla/website/issues/6492) at 2024-03-20 11:26 PM PDT -roslynwythe,2024-03-21T06:32:38Z,- roslynwythe opened issue: [6493](https://github.com/hackforla/website/issues/6493) at 2024-03-20 11:32 PM PDT -roslynwythe,2024-03-21T06:33:55Z,- roslynwythe opened issue: [6494](https://github.com/hackforla/website/issues/6494) at 2024-03-20 11:33 PM PDT -roslynwythe,2024-03-21T06:35:06Z,- roslynwythe opened issue: [6495](https://github.com/hackforla/website/issues/6495) at 2024-03-20 11:35 PM PDT -roslynwythe,2024-03-21T06:36:18Z,- roslynwythe opened issue: [6496](https://github.com/hackforla/website/issues/6496) at 2024-03-20 11:36 PM PDT -roslynwythe,2024-03-21T06:38:07Z,- roslynwythe opened issue: [6497](https://github.com/hackforla/website/issues/6497) at 2024-03-20 11:38 PM PDT -roslynwythe,2024-03-21T06:39:25Z,- roslynwythe opened issue: [6498](https://github.com/hackforla/website/issues/6498) at 2024-03-20 11:39 PM PDT -roslynwythe,2024-03-21T07:10:57Z,- roslynwythe opened issue: [6499](https://github.com/hackforla/website/issues/6499) at 2024-03-21 12:10 AM PDT -roslynwythe,2024-03-21T07:38:38Z,- roslynwythe commented on issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2011387497) at 2024-03-21 12:38 AM PDT -roslynwythe,2024-03-21T07:55:45Z,- roslynwythe commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2011433675) at 2024-03-21 12:55 AM PDT -roslynwythe,2024-03-21T08:23:32Z,- roslynwythe commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2011617297) at 2024-03-21 01:23 AM PDT -roslynwythe,2024-03-21T08:33:25Z,- roslynwythe commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-2011633384) at 2024-03-21 01:33 AM PDT -roslynwythe,2024-03-21T08:33:25Z,- roslynwythe closed issue as completed: [5180](https://github.com/hackforla/website/issues/5180#event-12196581731) at 2024-03-21 01:33 AM PDT -roslynwythe,2024-03-21T23:01:23Z,- roslynwythe commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2013996585) at 2024-03-21 04:01 PM PDT -roslynwythe,2024-03-25T23:40:37Z,- roslynwythe commented on issue: [5244](https://github.com/hackforla/website/issues/5244#issuecomment-2019110811) at 2024-03-25 04:40 PM PDT -roslynwythe,2024-03-26T00:32:44Z,- roslynwythe assigned to issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2011387497) at 2024-03-25 05:32 PM PDT -roslynwythe,2024-03-26T18:11:53Z,- roslynwythe opened issue: [6519](https://github.com/hackforla/website/issues/6519) at 2024-03-26 11:11 AM PDT -roslynwythe,2024-03-26T19:06:34Z,- roslynwythe assigned to issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021156294) at 2024-03-26 12:06 PM PDT -roslynwythe,2024-03-26T19:06:46Z,- roslynwythe unassigned from issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021263767) at 2024-03-26 12:06 PM PDT -roslynwythe,2024-03-26T19:15:38Z,- roslynwythe commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021279777) at 2024-03-26 12:15 PM PDT -roslynwythe,2024-03-26T19:56:54Z,- roslynwythe assigned to issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021279777) at 2024-03-26 12:56 PM PDT -roslynwythe,2024-03-26T19:57:07Z,- roslynwythe unassigned from issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021349561) at 2024-03-26 12:57 PM PDT -roslynwythe,2024-03-26T19:57:43Z,- roslynwythe assigned to issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021349561) at 2024-03-26 12:57 PM PDT -roslynwythe,2024-03-26T21:43:48Z,- roslynwythe commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021525589) at 2024-03-26 02:43 PM PDT -roslynwythe,2024-03-26T22:01:49Z,- roslynwythe commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-2021546673) at 2024-03-26 03:01 PM PDT -roslynwythe,2024-03-26T22:43:58Z,- roslynwythe assigned to issue: [6485](https://github.com/hackforla/website/issues/6485#issuecomment-2008986595) at 2024-03-26 03:43 PM PDT -roslynwythe,2024-03-27T02:34:39Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2021809911) at 2024-03-26 07:34 PM PDT -roslynwythe,2024-03-27T04:15:08Z,- roslynwythe commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2021892620) at 2024-03-26 09:15 PM PDT -roslynwythe,2024-03-28T05:52:59Z,- roslynwythe opened issue: [6541](https://github.com/hackforla/website/issues/6541) at 2024-03-27 10:52 PM PDT -roslynwythe,2024-03-28T08:29:22Z,- roslynwythe commented on issue: [6487](https://github.com/hackforla/website/issues/6487#issuecomment-2024661738) at 2024-03-28 01:29 AM PDT -roslynwythe,2024-03-28T08:29:22Z,- roslynwythe closed issue as completed: [6487](https://github.com/hackforla/website/issues/6487#event-12277794713) at 2024-03-28 01:29 AM PDT -roslynwythe,2024-03-28T09:29:40Z,- roslynwythe commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2024758752) at 2024-03-28 02:29 AM PDT -roslynwythe,2024-03-28T18:16:12Z,- roslynwythe commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-2025834087) at 2024-03-28 11:16 AM PDT -roslynwythe,2024-03-29T01:51:47Z,- roslynwythe commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2026461167) at 2024-03-28 06:51 PM PDT -roslynwythe,2024-03-29T09:13:31Z,- roslynwythe submitted pull request review: [6547](https://github.com/hackforla/website/pull/6547#pullrequestreview-1968161889) at 2024-03-29 02:13 AM PDT -roslynwythe,2024-03-29T09:14:09Z,- roslynwythe closed issue by PR 6546: [6236](https://github.com/hackforla/website/issues/6236#event-12293018861) at 2024-03-29 02:14 AM PDT -roslynwythe,2024-03-29T09:40:46Z,- roslynwythe commented on pull request: [6542](https://github.com/hackforla/website/pull/6542#issuecomment-2026954567) at 2024-03-29 02:40 AM PDT -roslynwythe,2024-03-29T09:43:59Z,- roslynwythe commented on pull request: [6540](https://github.com/hackforla/website/pull/6540#issuecomment-2026957736) at 2024-03-29 02:43 AM PDT -roslynwythe,2024-03-29T09:44:51Z,- roslynwythe commented on pull request: [6538](https://github.com/hackforla/website/pull/6538#issuecomment-2026958915) at 2024-03-29 02:44 AM PDT -roslynwythe,2024-03-30T01:15:37Z,- roslynwythe commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2027858041) at 2024-03-29 06:15 PM PDT -roslynwythe,2024-03-30T01:34:11Z,- roslynwythe commented on issue: [6544](https://github.com/hackforla/website/issues/6544#issuecomment-2027862901) at 2024-03-29 06:34 PM PDT -roslynwythe,2024-03-30T01:38:50Z,- roslynwythe commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2027864125) at 2024-03-29 06:38 PM PDT -roslynwythe,2024-03-31T04:59:46Z,- roslynwythe commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2028555131) at 2024-03-30 09:59 PM PDT -roslynwythe,2024-03-31T07:39:06Z,- roslynwythe commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2028587894) at 2024-03-31 12:39 AM PDT -roslynwythe,2024-03-31T08:10:00Z,- roslynwythe commented on pull request: [6550](https://github.com/hackforla/website/pull/6550#issuecomment-2028595623) at 2024-03-31 01:10 AM PDT -roslynwythe,2024-03-31T08:44:06Z,- roslynwythe commented on pull request: [6542](https://github.com/hackforla/website/pull/6542#issuecomment-2028604042) at 2024-03-31 01:44 AM PDT -roslynwythe,2024-03-31T10:23:37Z,- roslynwythe commented on pull request: [6550](https://github.com/hackforla/website/pull/6550#issuecomment-2028628499) at 2024-03-31 03:23 AM PDT -roslynwythe,2024-04-01T06:46:16Z,- roslynwythe commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2029259812) at 2024-03-31 11:46 PM PDT -roslynwythe,2024-04-01T06:47:04Z,- roslynwythe commented on issue: [6527](https://github.com/hackforla/website/issues/6527#issuecomment-2029260746) at 2024-03-31 11:47 PM PDT -roslynwythe,2024-04-01T06:47:04Z,- roslynwythe closed issue as not planned: [6527](https://github.com/hackforla/website/issues/6527#event-12307281633) at 2024-03-31 11:47 PM PDT -roslynwythe,2024-04-01T09:24:04Z,- roslynwythe submitted pull request review: [6542](https://github.com/hackforla/website/pull/6542#pullrequestreview-1970970981) at 2024-04-01 02:24 AM PDT -roslynwythe,2024-04-01T09:24:15Z,- roslynwythe closed issue by PR 6542: [6481](https://github.com/hackforla/website/issues/6481#event-12308711874) at 2024-04-01 02:24 AM PDT -roslynwythe,2024-04-01T09:45:59Z,- roslynwythe submitted pull request review: [6517](https://github.com/hackforla/website/pull/6517#pullrequestreview-1970996220) at 2024-04-01 02:45 AM PDT -roslynwythe,2024-04-01T09:46:19Z,- roslynwythe closed issue by PR 6517: [6480](https://github.com/hackforla/website/issues/6480#event-12308897971) at 2024-04-01 02:46 AM PDT -roslynwythe,2024-04-01T22:56:56Z,- roslynwythe assigned to issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-1685525528) at 2024-04-01 03:56 PM PDT -roslynwythe,2024-04-01T22:57:12Z,- roslynwythe unassigned from issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-1685525528) at 2024-04-01 03:57 PM PDT -roslynwythe,2024-04-01T23:24:05Z,- roslynwythe commented on issue: [5007](https://github.com/hackforla/website/issues/5007#issuecomment-2030780318) at 2024-04-01 04:24 PM PDT -roslynwythe,2024-04-01T23:26:22Z,- roslynwythe closed issue as completed: [5007](https://github.com/hackforla/website/issues/5007#event-12317104363) at 2024-04-01 04:26 PM PDT -roslynwythe,2024-04-01T23:42:52Z,- roslynwythe commented on issue: [6539](https://github.com/hackforla/website/issues/6539#issuecomment-2030800060) at 2024-04-01 04:42 PM PDT -roslynwythe,2024-04-01T23:57:46Z,- roslynwythe unassigned from issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2019172325) at 2024-04-01 04:57 PM PDT -roslynwythe,2024-04-02T09:35:17Z,- roslynwythe assigned to issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2030580196) at 2024-04-02 02:35 AM PDT -roslynwythe,2024-04-03T07:00:22Z,- roslynwythe commented on pull request: [6550](https://github.com/hackforla/website/pull/6550#issuecomment-2033705588) at 2024-04-03 12:00 AM PDT -roslynwythe,2024-04-03T18:44:40Z,- roslynwythe opened issue: [6559](https://github.com/hackforla/website/issues/6559) at 2024-04-03 11:44 AM PDT -roslynwythe,2024-04-03T19:09:55Z,- roslynwythe assigned to issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1989097526) at 2024-04-03 12:09 PM PDT -roslynwythe,2024-04-03T23:28:03Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2035803006) at 2024-04-03 04:28 PM PDT -roslynwythe,2024-04-04T08:09:39Z,- roslynwythe commented on pull request: [6550](https://github.com/hackforla/website/pull/6550#issuecomment-2036476413) at 2024-04-04 01:09 AM PDT -roslynwythe,2024-04-04T21:57:10Z,- roslynwythe submitted pull request review: [6540](https://github.com/hackforla/website/pull/6540#pullrequestreview-1981265948) at 2024-04-04 02:57 PM PDT -roslynwythe,2024-04-05T16:47:16Z,- roslynwythe commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2040249781) at 2024-04-05 09:47 AM PDT -roslynwythe,2024-04-05T19:50:18Z,- roslynwythe commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2040529751) at 2024-04-05 12:50 PM PDT -roslynwythe,2024-04-05T19:54:38Z,- roslynwythe assigned to issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2027777765) at 2024-04-05 12:54 PM PDT -roslynwythe,2024-04-07T06:34:35Z,- roslynwythe commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2041336555) at 2024-04-06 11:34 PM PDT -roslynwythe,2024-04-07T09:41:48Z,- roslynwythe commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2041393563) at 2024-04-07 02:41 AM PDT -roslynwythe,2024-04-07T16:59:18Z,- roslynwythe commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2041530059) at 2024-04-07 09:59 AM PDT -roslynwythe,2024-04-09T01:40:15Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2043991000) at 2024-04-08 06:40 PM PDT -roslynwythe,2024-04-09T19:43:26Z,- roslynwythe commented on issue: [6607](https://github.com/hackforla/website/issues/6607#issuecomment-2045935660) at 2024-04-09 12:43 PM PDT -roslynwythe,2024-04-10T01:38:41Z,- roslynwythe assigned to issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2046304370) at 2024-04-09 06:38 PM PDT -roslynwythe,2024-04-10T03:32:51Z,- roslynwythe commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2046482434) at 2024-04-09 08:32 PM PDT -roslynwythe,2024-04-10T04:38:49Z,- roslynwythe commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2046526100) at 2024-04-09 09:38 PM PDT -roslynwythe,2024-04-10T04:46:54Z,- roslynwythe commented on issue: [6544](https://github.com/hackforla/website/issues/6544#issuecomment-2046532083) at 2024-04-09 09:46 PM PDT -roslynwythe,2024-04-10T04:46:54Z,- roslynwythe closed issue as not planned: [6544](https://github.com/hackforla/website/issues/6544#event-12416261412) at 2024-04-09 09:46 PM PDT -roslynwythe,2024-04-10T08:24:48Z,- roslynwythe commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2046890429) at 2024-04-10 01:24 AM PDT -roslynwythe,2024-04-11T05:31:09Z,- roslynwythe commented on issue: [5242](https://github.com/hackforla/website/issues/5242#issuecomment-2048954319) at 2024-04-10 10:31 PM PDT -roslynwythe,2024-04-11T06:41:13Z,- roslynwythe opened issue: [6621](https://github.com/hackforla/website/issues/6621) at 2024-04-10 11:41 PM PDT -roslynwythe,2024-04-11T06:59:29Z,- roslynwythe opened issue: [6622](https://github.com/hackforla/website/issues/6622) at 2024-04-10 11:59 PM PDT -roslynwythe,2024-04-11T07:13:49Z,- roslynwythe opened issue: [6623](https://github.com/hackforla/website/issues/6623) at 2024-04-11 12:13 AM PDT -roslynwythe,2024-04-13T02:08:28Z,- roslynwythe commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2052991437) at 2024-04-12 07:08 PM PDT -roslynwythe,2024-04-14T06:07:38Z,- roslynwythe commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2053923988) at 2024-04-13 11:07 PM PDT -roslynwythe,2024-04-14T09:36:12Z,- roslynwythe opened issue: [6642](https://github.com/hackforla/website/issues/6642) at 2024-04-14 02:36 AM PDT -roslynwythe,2024-04-14T09:56:35Z,- roslynwythe opened issue: [6643](https://github.com/hackforla/website/issues/6643) at 2024-04-14 02:56 AM PDT -roslynwythe,2024-04-14T10:02:00Z,- roslynwythe opened issue: [6644](https://github.com/hackforla/website/issues/6644) at 2024-04-14 03:02 AM PDT -roslynwythe,2024-04-15T07:39:10Z,- roslynwythe opened issue: [6648](https://github.com/hackforla/website/issues/6648) at 2024-04-15 12:39 AM PDT -roslynwythe,2024-04-15T07:40:10Z,- roslynwythe commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-2055912626) at 2024-04-15 12:40 AM PDT -roslynwythe,2024-04-15T23:31:19Z,- roslynwythe opened issue: [6653](https://github.com/hackforla/website/issues/6653) at 2024-04-15 04:31 PM PDT -roslynwythe,2024-04-15T23:33:31Z,- roslynwythe opened issue: [6654](https://github.com/hackforla/website/issues/6654) at 2024-04-15 04:33 PM PDT -roslynwythe,2024-04-15T23:45:47Z,- roslynwythe commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-2057994266) at 2024-04-15 04:45 PM PDT -roslynwythe,2024-04-15T23:47:40Z,- roslynwythe opened issue: [6655](https://github.com/hackforla/website/issues/6655) at 2024-04-15 04:47 PM PDT -roslynwythe,2024-04-15T23:58:19Z,- roslynwythe commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2058004517) at 2024-04-15 04:58 PM PDT -roslynwythe,2024-04-16T00:05:01Z,- roslynwythe assigned to issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2058004517) at 2024-04-15 05:05 PM PDT -roslynwythe,2024-04-17T04:45:21Z,- roslynwythe commented on issue: [6498](https://github.com/hackforla/website/issues/6498#issuecomment-2060334231) at 2024-04-16 09:45 PM PDT -roslynwythe,2024-04-17T04:45:21Z,- roslynwythe closed issue as completed: [6498](https://github.com/hackforla/website/issues/6498#event-12500988211) at 2024-04-16 09:45 PM PDT -roslynwythe,2024-04-17T05:09:50Z,- roslynwythe commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2060363238) at 2024-04-16 10:09 PM PDT -roslynwythe,2024-04-17T07:11:36Z,- roslynwythe commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2060538430) at 2024-04-17 12:11 AM PDT -roslynwythe,2024-04-17T07:26:42Z,- roslynwythe commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2060564748) at 2024-04-17 12:26 AM PDT -roslynwythe,2024-04-17T08:19:57Z,- roslynwythe commented on issue: [6491](https://github.com/hackforla/website/issues/6491#issuecomment-2060680139) at 2024-04-17 01:19 AM PDT -roslynwythe,2024-04-17T08:19:57Z,- roslynwythe closed issue as completed: [6491](https://github.com/hackforla/website/issues/6491#event-12503673117) at 2024-04-17 01:19 AM PDT -roslynwythe,2024-04-17T08:33:50Z,- roslynwythe commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2060706391) at 2024-04-17 01:33 AM PDT -roslynwythe,2024-04-17T08:37:06Z,- roslynwythe commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2060712631) at 2024-04-17 01:37 AM PDT -roslynwythe,2024-04-17T08:37:06Z,- roslynwythe closed issue as completed: [6493](https://github.com/hackforla/website/issues/6493#event-12503938121) at 2024-04-17 01:37 AM PDT -roslynwythe,2024-04-17T08:43:27Z,- roslynwythe commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2060724382) at 2024-04-17 01:43 AM PDT -roslynwythe,2024-04-17T08:50:58Z,- roslynwythe commented on issue: [6496](https://github.com/hackforla/website/issues/6496#issuecomment-2060739014) at 2024-04-17 01:50 AM PDT -roslynwythe,2024-04-17T08:50:59Z,- roslynwythe closed issue as completed: [6496](https://github.com/hackforla/website/issues/6496#event-12504150208) at 2024-04-17 01:50 AM PDT -roslynwythe,2024-04-17T08:52:53Z,- roslynwythe commented on issue: [6497](https://github.com/hackforla/website/issues/6497#issuecomment-2060742517) at 2024-04-17 01:52 AM PDT -roslynwythe,2024-04-17T08:52:53Z,- roslynwythe closed issue as completed: [6497](https://github.com/hackforla/website/issues/6497#event-12504180369) at 2024-04-17 01:52 AM PDT -roslynwythe,2024-04-18T06:56:37Z,- roslynwythe assigned to issue: [6653](https://github.com/hackforla/website/issues/6653) at 2024-04-17 11:56 PM PDT -roslynwythe,2024-04-18T07:25:47Z,- roslynwythe unassigned from issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2063154790) at 2024-04-18 12:25 AM PDT -roslynwythe,2024-04-18T08:45:33Z,- roslynwythe commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2063348771) at 2024-04-18 01:45 AM PDT -roslynwythe,2024-04-18T08:53:23Z,- roslynwythe opened issue: [6679](https://github.com/hackforla/website/issues/6679) at 2024-04-18 01:53 AM PDT -roslynwythe,2024-04-18T09:19:45Z,- roslynwythe opened issue: [6680](https://github.com/hackforla/website/issues/6680) at 2024-04-18 02:19 AM PDT -roslynwythe,2024-04-18T09:41:42Z,- roslynwythe assigned to issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2063415629) at 2024-04-18 02:41 AM PDT -roslynwythe,2024-04-18T09:43:13Z,- roslynwythe unassigned from issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2063457193) at 2024-04-18 02:43 AM PDT -roslynwythe,2024-04-19T22:37:21Z,- roslynwythe commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2067360468) at 2024-04-19 03:37 PM PDT -roslynwythe,2024-04-19T23:44:20Z,- roslynwythe commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2067398324) at 2024-04-19 04:44 PM PDT -roslynwythe,2024-04-21T06:58:02Z,- roslynwythe commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2067931770) at 2024-04-20 11:58 PM PDT -roslynwythe,2024-04-21T06:59:28Z,- roslynwythe commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2067932120) at 2024-04-20 11:59 PM PDT -roslynwythe,2024-04-21T07:01:36Z,- roslynwythe commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2067932662) at 2024-04-21 12:01 AM PDT -roslynwythe,2024-04-21T07:38:30Z,- roslynwythe opened issue: [6695](https://github.com/hackforla/website/issues/6695) at 2024-04-21 12:38 AM PDT -roslynwythe,2024-04-21T07:48:58Z,- roslynwythe opened issue: [6696](https://github.com/hackforla/website/issues/6696) at 2024-04-21 12:48 AM PDT -roslynwythe,2024-04-21T07:59:41Z,- roslynwythe opened issue: [6697](https://github.com/hackforla/website/issues/6697) at 2024-04-21 12:59 AM PDT -roslynwythe,2024-04-21T08:06:03Z,- roslynwythe opened issue: [6698](https://github.com/hackforla/website/issues/6698) at 2024-04-21 01:06 AM PDT -roslynwythe,2024-04-21T08:11:53Z,- roslynwythe opened issue: [6699](https://github.com/hackforla/website/issues/6699) at 2024-04-21 01:11 AM PDT -roslynwythe,2024-04-21T08:44:54Z,- roslynwythe opened issue: [6700](https://github.com/hackforla/website/issues/6700) at 2024-04-21 01:44 AM PDT -roslynwythe,2024-04-21T08:48:03Z,- roslynwythe opened issue: [6701](https://github.com/hackforla/website/issues/6701) at 2024-04-21 01:48 AM PDT -roslynwythe,2024-04-21T08:49:50Z,- roslynwythe opened issue: [6702](https://github.com/hackforla/website/issues/6702) at 2024-04-21 01:49 AM PDT -roslynwythe,2024-04-21T08:51:06Z,- roslynwythe opened issue: [6703](https://github.com/hackforla/website/issues/6703) at 2024-04-21 01:51 AM PDT -roslynwythe,2024-04-21T08:52:52Z,- roslynwythe opened issue: [6704](https://github.com/hackforla/website/issues/6704) at 2024-04-21 01:52 AM PDT -roslynwythe,2024-04-21T08:54:02Z,- roslynwythe opened issue: [6705](https://github.com/hackforla/website/issues/6705) at 2024-04-21 01:54 AM PDT -roslynwythe,2024-04-21T08:56:42Z,- roslynwythe opened issue: [6706](https://github.com/hackforla/website/issues/6706) at 2024-04-21 01:56 AM PDT -roslynwythe,2024-04-21T09:31:04Z,- roslynwythe commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2067977223) at 2024-04-21 02:31 AM PDT -roslynwythe,2024-04-21T18:07:43Z,- roslynwythe submitted pull request review: [6694](https://github.com/hackforla/website/pull/6694#pullrequestreview-2013491177) at 2024-04-21 11:07 AM PDT -roslynwythe,2024-04-21T18:13:18Z,- roslynwythe submitted pull request review: [6693](https://github.com/hackforla/website/pull/6693#pullrequestreview-2013492042) at 2024-04-21 11:13 AM PDT -roslynwythe,2024-04-21T18:19:02Z,- roslynwythe submitted pull request review: [6690](https://github.com/hackforla/website/pull/6690#pullrequestreview-2013493043) at 2024-04-21 11:19 AM PDT -roslynwythe,2024-04-21T18:32:18Z,- roslynwythe submitted pull request review: [6688](https://github.com/hackforla/website/pull/6688#pullrequestreview-2013495009) at 2024-04-21 11:32 AM PDT -roslynwythe,2024-04-21T18:33:35Z,- roslynwythe closed issue by PR 6688: [6636](https://github.com/hackforla/website/issues/6636#event-12551670744) at 2024-04-21 11:33 AM PDT -roslynwythe,2024-04-21T18:49:56Z,- roslynwythe submitted pull request review: [6686](https://github.com/hackforla/website/pull/6686#pullrequestreview-2013499059) at 2024-04-21 11:49 AM PDT -roslynwythe,2024-04-21T19:13:12Z,- roslynwythe commented on pull request: [6660](https://github.com/hackforla/website/pull/6660#issuecomment-2068170169) at 2024-04-21 12:13 PM PDT -roslynwythe,2024-04-22T18:57:02Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2070656498) at 2024-04-22 11:57 AM PDT -roslynwythe,2024-04-22T19:12:59Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2070710224) at 2024-04-22 12:12 PM PDT -roslynwythe,2024-04-22T19:20:27Z,- roslynwythe commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2070733543) at 2024-04-22 12:20 PM PDT -roslynwythe,2024-04-23T17:50:06Z,- roslynwythe submitted pull request review: [6660](https://github.com/hackforla/website/pull/6660#pullrequestreview-2017911544) at 2024-04-23 10:50 AM PDT -roslynwythe,2024-04-23T17:50:20Z,- roslynwythe closed issue by PR 6660: [6621](https://github.com/hackforla/website/issues/6621#event-12579436733) at 2024-04-23 10:50 AM PDT -roslynwythe,2024-04-25T01:37:18Z,- roslynwythe commented on issue: [6742](https://github.com/hackforla/website/issues/6742#issuecomment-2076166452) at 2024-04-24 06:37 PM PDT -roslynwythe,2024-04-25T01:37:18Z,- roslynwythe closed issue as not planned: [6742](https://github.com/hackforla/website/issues/6742#event-12599982856) at 2024-04-24 06:37 PM PDT -roslynwythe,2024-04-25T01:37:40Z,- roslynwythe commented on issue: [6743](https://github.com/hackforla/website/issues/6743#issuecomment-2076167881) at 2024-04-24 06:37 PM PDT -roslynwythe,2024-04-25T01:37:41Z,- roslynwythe closed issue as not planned: [6743](https://github.com/hackforla/website/issues/6743#event-12599986368) at 2024-04-24 06:37 PM PDT -roslynwythe,2024-04-25T01:37:53Z,- roslynwythe commented on issue: [6741](https://github.com/hackforla/website/issues/6741#issuecomment-2076168253) at 2024-04-24 06:37 PM PDT -roslynwythe,2024-04-25T01:37:53Z,- roslynwythe closed issue as not planned: [6741](https://github.com/hackforla/website/issues/6741#event-12599988103) at 2024-04-24 06:37 PM PDT -roslynwythe,2024-04-25T01:38:10Z,- roslynwythe commented on issue: [6740](https://github.com/hackforla/website/issues/6740#issuecomment-2076168698) at 2024-04-24 06:38 PM PDT -roslynwythe,2024-04-25T01:38:10Z,- roslynwythe closed issue as not planned: [6740](https://github.com/hackforla/website/issues/6740#event-12599990414) at 2024-04-24 06:38 PM PDT -roslynwythe,2024-04-25T01:46:12Z,- roslynwythe commented on issue: [6699](https://github.com/hackforla/website/issues/6699#issuecomment-2076177274) at 2024-04-24 06:46 PM PDT -roslynwythe,2024-04-25T01:51:04Z,- roslynwythe commented on issue: [6738](https://github.com/hackforla/website/issues/6738#issuecomment-2076181827) at 2024-04-24 06:51 PM PDT -roslynwythe,2024-04-25T01:51:04Z,- roslynwythe closed issue as not planned: [6738](https://github.com/hackforla/website/issues/6738#event-12600098433) at 2024-04-24 06:51 PM PDT -roslynwythe,2024-04-25T03:21:51Z,- roslynwythe commented on issue: [6739](https://github.com/hackforla/website/issues/6739#issuecomment-2076279830) at 2024-04-24 08:21 PM PDT -roslynwythe,2024-04-25T03:21:51Z,- roslynwythe closed issue as not planned: [6739](https://github.com/hackforla/website/issues/6739#event-12600798167) at 2024-04-24 08:21 PM PDT -roslynwythe,2024-04-25T03:40:24Z,- roslynwythe commented on issue: [6699](https://github.com/hackforla/website/issues/6699#issuecomment-2076290667) at 2024-04-24 08:40 PM PDT -roslynwythe,2024-04-25T03:40:25Z,- roslynwythe closed issue as completed: [6699](https://github.com/hackforla/website/issues/6699#event-12600920857) at 2024-04-24 08:40 PM PDT -roslynwythe,2024-04-25T05:51:48Z,- roslynwythe commented on issue: [6698](https://github.com/hackforla/website/issues/6698#issuecomment-2076420615) at 2024-04-24 10:51 PM PDT -roslynwythe,2024-04-25T05:51:48Z,- roslynwythe closed issue as completed: [6698](https://github.com/hackforla/website/issues/6698#event-12602066723) at 2024-04-24 10:51 PM PDT -roslynwythe,2024-04-25T06:56:23Z,- roslynwythe commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2076498448) at 2024-04-24 11:56 PM PDT -roslynwythe,2024-04-25T07:17:36Z,- roslynwythe opened issue: [6749](https://github.com/hackforla/website/issues/6749) at 2024-04-25 12:17 AM PDT -roslynwythe,2024-04-25T07:21:24Z,- roslynwythe commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2076535991) at 2024-04-25 12:21 AM PDT -roslynwythe,2024-04-25T07:21:24Z,- roslynwythe closed issue as completed: [6353](https://github.com/hackforla/website/issues/6353#event-12603175069) at 2024-04-25 12:21 AM PDT -roslynwythe,2024-04-25T07:45:12Z,- roslynwythe commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2076574231) at 2024-04-25 12:45 AM PDT -roslynwythe,2024-04-25T07:52:53Z,- roslynwythe commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2076586967) at 2024-04-25 12:52 AM PDT -roslynwythe,2024-04-25T07:52:53Z,- roslynwythe closed issue as completed: [5885](https://github.com/hackforla/website/issues/5885#event-12603622949) at 2024-04-25 12:52 AM PDT -roslynwythe,2024-04-25T07:57:00Z,- roslynwythe commented on issue: [6495](https://github.com/hackforla/website/issues/6495#issuecomment-2076594032) at 2024-04-25 12:57 AM PDT -roslynwythe,2024-04-25T07:57:00Z,- roslynwythe closed issue as completed: [6495](https://github.com/hackforla/website/issues/6495#event-12603684139) at 2024-04-25 12:57 AM PDT -roslynwythe,2024-04-25T07:58:34Z,- roslynwythe commented on issue: [6494](https://github.com/hackforla/website/issues/6494#issuecomment-2076596737) at 2024-04-25 12:58 AM PDT -roslynwythe,2024-04-25T07:58:34Z,- roslynwythe closed issue as completed: [6494](https://github.com/hackforla/website/issues/6494#event-12603706466) at 2024-04-25 12:58 AM PDT -roslynwythe,2024-04-25T08:09:30Z,- roslynwythe commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2076615619) at 2024-04-25 01:09 AM PDT -roslynwythe,2024-04-25T08:09:31Z,- roslynwythe closed issue as completed: [6680](https://github.com/hackforla/website/issues/6680#event-12603866143) at 2024-04-25 01:09 AM PDT -roslynwythe,2024-04-25T08:11:11Z,- roslynwythe commented on issue: [6697](https://github.com/hackforla/website/issues/6697#issuecomment-2076618552) at 2024-04-25 01:11 AM PDT -roslynwythe,2024-04-25T08:11:11Z,- roslynwythe closed issue as completed: [6697](https://github.com/hackforla/website/issues/6697#event-12603891053) at 2024-04-25 01:11 AM PDT -roslynwythe,2024-04-25T08:13:16Z,- roslynwythe commented on issue: [6091](https://github.com/hackforla/website/issues/6091#issuecomment-2076622150) at 2024-04-25 01:13 AM PDT -roslynwythe,2024-04-25T08:13:16Z,- roslynwythe closed issue as completed: [6091](https://github.com/hackforla/website/issues/6091#event-12603922159) at 2024-04-25 01:13 AM PDT -roslynwythe,2024-04-25T21:36:22Z,- roslynwythe commented on issue: [6679](https://github.com/hackforla/website/issues/6679#issuecomment-2078215109) at 2024-04-25 02:36 PM PDT -roslynwythe,2024-04-25T21:36:22Z,- roslynwythe closed issue as completed: [6679](https://github.com/hackforla/website/issues/6679#event-12615822290) at 2024-04-25 02:36 PM PDT -roslynwythe,2024-04-26T08:32:51Z,- roslynwythe commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2078905090) at 2024-04-26 01:32 AM PDT -roslynwythe,2024-04-26T09:24:01Z,- roslynwythe commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2078993313) at 2024-04-26 02:24 AM PDT -roslynwythe,2024-04-26T09:32:05Z,- roslynwythe commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2079006235) at 2024-04-26 02:32 AM PDT -roslynwythe,2024-04-26T09:32:05Z,- roslynwythe closed issue as completed: [6695](https://github.com/hackforla/website/issues/6695#event-12621168780) at 2024-04-26 02:32 AM PDT -roslynwythe,2024-04-26T09:39:52Z,- roslynwythe commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2079018809) at 2024-04-26 02:39 AM PDT -roslynwythe,2024-04-26T16:09:38Z,- roslynwythe assigned to issue: [6677](https://github.com/hackforla/website/issues/6677) at 2024-04-26 09:09 AM PDT -roslynwythe,2024-04-28T05:23:41Z,- roslynwythe commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081335938) at 2024-04-27 10:23 PM PDT -roslynwythe,2024-04-28T05:48:51Z,- roslynwythe commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081342674) at 2024-04-27 10:48 PM PDT -roslynwythe,2024-04-28T06:59:59Z,- roslynwythe commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2081363109) at 2024-04-27 11:59 PM PDT -roslynwythe,2024-04-28T07:18:26Z,- roslynwythe assigned to issue: [6669](https://github.com/hackforla/website/issues/6669) at 2024-04-28 12:18 AM PDT -roslynwythe,2024-04-28T07:26:21Z,- roslynwythe assigned to issue: [6665](https://github.com/hackforla/website/issues/6665) at 2024-04-28 12:26 AM PDT -roslynwythe,2024-04-28T07:53:56Z,- roslynwythe commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2081379071) at 2024-04-28 12:53 AM PDT -roslynwythe,2024-04-28T09:13:43Z,- roslynwythe commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081404524) at 2024-04-28 02:13 AM PDT -roslynwythe,2024-04-29T04:25:18Z,- roslynwythe opened pull request: [6779](https://github.com/hackforla/website/pull/6779) at 2024-04-28 09:25 PM PDT -roslynwythe,2024-04-29T04:29:11Z,- roslynwythe pull request merged: [6779](https://github.com/hackforla/website/pull/6779#event-12637393040) at 2024-04-28 09:29 PM PDT -roslynwythe,2024-04-29T05:25:32Z,- roslynwythe commented on pull request: [6779](https://github.com/hackforla/website/pull/6779#issuecomment-2081912224) at 2024-04-28 10:25 PM PDT -roslynwythe,2024-04-29T08:08:15Z,- roslynwythe submitted pull request review: [6766](https://github.com/hackforla/website/pull/6766#pullrequestreview-2027806672) at 2024-04-29 01:08 AM PDT -roslynwythe,2024-04-29T08:17:20Z,- roslynwythe opened pull request: [6780](https://github.com/hackforla/website/pull/6780) at 2024-04-29 01:17 AM PDT -roslynwythe,2024-04-29T08:19:37Z,- roslynwythe commented on pull request: [6780](https://github.com/hackforla/website/pull/6780#issuecomment-2082133631) at 2024-04-29 01:19 AM PDT -roslynwythe,2024-04-29T08:19:37Z,- roslynwythe pull request closed w/o merging: [6780](https://github.com/hackforla/website/pull/6780#event-12639277914) at 2024-04-29 01:19 AM PDT -roslynwythe,2024-04-29T18:59:38Z,- roslynwythe commented on pull request: [6776](https://github.com/hackforla/website/pull/6776#issuecomment-2083451852) at 2024-04-29 11:59 AM PDT -roslynwythe,2024-04-30T01:13:31Z,- roslynwythe assigned to issue: [6654](https://github.com/hackforla/website/issues/6654) at 2024-04-29 06:13 PM PDT -roslynwythe,2024-04-30T01:18:32Z,- roslynwythe commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-2084059883) at 2024-04-29 06:18 PM PDT -roslynwythe,2024-04-30T01:18:32Z,- roslynwythe closed issue as completed: [4242](https://github.com/hackforla/website/issues/4242#event-12650969882) at 2024-04-29 06:18 PM PDT -roslynwythe,2024-04-30T01:30:29Z,- roslynwythe assigned to issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2084087409) at 2024-04-29 06:30 PM PDT -roslynwythe,2024-04-30T04:03:18Z,- roslynwythe commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2084334420) at 2024-04-29 09:03 PM PDT -roslynwythe,2024-04-30T04:24:58Z,- roslynwythe opened issue: [6786](https://github.com/hackforla/website/issues/6786) at 2024-04-29 09:24 PM PDT -roslynwythe,2024-04-30T04:29:26Z,- roslynwythe commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-2084356507) at 2024-04-29 09:29 PM PDT -roslynwythe,2024-04-30T04:29:26Z,- roslynwythe closed issue as completed: [5953](https://github.com/hackforla/website/issues/5953#event-12652062974) at 2024-04-29 09:29 PM PDT -roslynwythe,2024-04-30T04:42:28Z,- roslynwythe opened issue: [6787](https://github.com/hackforla/website/issues/6787) at 2024-04-29 09:42 PM PDT -roslynwythe,2024-04-30T05:16:45Z,- roslynwythe commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2084398294) at 2024-04-29 10:16 PM PDT -roslynwythe,2024-04-30T05:25:24Z,- roslynwythe commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-2084406831) at 2024-04-29 10:25 PM PDT -roslynwythe,2024-04-30T05:25:24Z,- roslynwythe closed issue as completed: [5233](https://github.com/hackforla/website/issues/5233#event-12652398521) at 2024-04-29 10:25 PM PDT -roslynwythe,2024-04-30T05:44:43Z,- roslynwythe submitted pull request review: [6776](https://github.com/hackforla/website/pull/6776#pullrequestreview-2030252256) at 2024-04-29 10:44 PM PDT -roslynwythe,2024-04-30T05:45:39Z,- roslynwythe commented on pull request: [6776](https://github.com/hackforla/website/pull/6776#issuecomment-2084426053) at 2024-04-29 10:45 PM PDT -roslynwythe,2024-04-30T05:47:01Z,- roslynwythe closed issue by PR 6776: [6704](https://github.com/hackforla/website/issues/6704#event-12652540694) at 2024-04-29 10:47 PM PDT -roslynwythe,2024-04-30T06:46:17Z,- roslynwythe commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-2084500705) at 2024-04-29 11:46 PM PDT -roslynwythe,2024-04-30T06:57:17Z,- roslynwythe assigned to issue: [4910](https://github.com/hackforla/website/issues/4910#issuecomment-1623235646) at 2024-04-29 11:57 PM PDT -roslynwythe,2024-05-01T07:02:45Z,- roslynwythe commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2088067889) at 2024-05-01 12:02 AM PDT -roslynwythe,2024-05-01T07:28:59Z,- roslynwythe commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2088091079) at 2024-05-01 12:28 AM PDT -roslynwythe,2024-05-02T04:20:57Z,- roslynwythe commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2089523677) at 2024-05-01 09:20 PM PDT -roslynwythe,2024-05-02T07:08:58Z,- roslynwythe opened issue: [6805](https://github.com/hackforla/website/issues/6805) at 2024-05-02 12:08 AM PDT -roslynwythe,2024-05-03T02:27:30Z,- roslynwythe opened issue: [6809](https://github.com/hackforla/website/issues/6809) at 2024-05-02 07:27 PM PDT -roslynwythe,2024-05-03T02:29:05Z,- roslynwythe assigned to issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2092032706) at 2024-05-02 07:29 PM PDT -roslynwythe,2024-05-03T02:50:54Z,- roslynwythe commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2092043627) at 2024-05-02 07:50 PM PDT -roslynwythe,2024-05-03T21:45:32Z,- roslynwythe commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2093803618) at 2024-05-03 02:45 PM PDT -roslynwythe,2024-05-03T21:54:08Z,- roslynwythe commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2093811421) at 2024-05-03 02:54 PM PDT -roslynwythe,2024-05-03T22:56:57Z,- roslynwythe unassigned from issue: [6665](https://github.com/hackforla/website/issues/6665) at 2024-05-03 03:56 PM PDT -roslynwythe,2024-05-03T23:03:26Z,- roslynwythe unassigned from issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2084048732) at 2024-05-03 04:03 PM PDT -roslynwythe,2024-05-03T23:31:12Z,- roslynwythe assigned to issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2093883924) at 2024-05-03 04:31 PM PDT -roslynwythe,2024-05-03T23:33:09Z,- roslynwythe unassigned from issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2081379071) at 2024-05-03 04:33 PM PDT -roslynwythe,2024-05-04T01:11:40Z,- roslynwythe commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2093936957) at 2024-05-03 06:11 PM PDT -roslynwythe,2024-05-04T01:46:26Z,- roslynwythe commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2093951102) at 2024-05-03 06:46 PM PDT -roslynwythe,2024-05-05T16:29:15Z,- roslynwythe commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2094868886) at 2024-05-05 09:29 AM PDT -roslynwythe,2024-05-05T18:59:04Z,- roslynwythe unassigned from issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2094868886) at 2024-05-05 11:59 AM PDT -roslynwythe,2024-05-06T02:00:36Z,- roslynwythe commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2095074342) at 2024-05-05 07:00 PM PDT -roslynwythe,2024-05-06T02:41:26Z,- roslynwythe commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2095102343) at 2024-05-05 07:41 PM PDT -roslynwythe,2024-05-06T06:36:54Z,- roslynwythe commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2095287276) at 2024-05-05 11:36 PM PDT -roslynwythe,2024-05-06T07:27:10Z,- roslynwythe commented on issue: [6807](https://github.com/hackforla/website/issues/6807#issuecomment-2095351944) at 2024-05-06 12:27 AM PDT -roslynwythe,2024-05-06T07:35:54Z,- roslynwythe commented on issue: [6807](https://github.com/hackforla/website/issues/6807#issuecomment-2095364561) at 2024-05-06 12:35 AM PDT -roslynwythe,2024-05-07T00:24:32Z,- roslynwythe assigned to issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2093861444) at 2024-05-06 05:24 PM PDT -roslynwythe,2024-05-07T01:19:19Z,- roslynwythe opened issue: [6828](https://github.com/hackforla/website/issues/6828) at 2024-05-06 06:19 PM PDT -roslynwythe,2024-05-07T01:19:20Z,- roslynwythe assigned to issue: [6828](https://github.com/hackforla/website/issues/6828) at 2024-05-06 06:19 PM PDT -roslynwythe,2024-05-07T23:10:38Z,- roslynwythe closed issue as not planned: [3881](https://github.com/hackforla/website/issues/3881#event-12736371978) at 2024-05-07 04:10 PM PDT -roslynwythe,2024-05-07T23:32:13Z,- roslynwythe commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2099473721) at 2024-05-07 04:32 PM PDT -roslynwythe,2024-05-08T03:34:24Z,- roslynwythe submitted pull request review: [6836](https://github.com/hackforla/website/pull/6836#pullrequestreview-2044562660) at 2024-05-07 08:34 PM PDT -roslynwythe,2024-05-08T03:34:32Z,- roslynwythe closed issue by PR 6836: [6835](https://github.com/hackforla/website/issues/6835#event-12737754539) at 2024-05-07 08:34 PM PDT -roslynwythe,2024-05-08T06:56:33Z,- roslynwythe opened issue: [6838](https://github.com/hackforla/website/issues/6838) at 2024-05-07 11:56 PM PDT -roslynwythe,2024-05-08T06:58:33Z,- roslynwythe submitted pull request review: [6815](https://github.com/hackforla/website/pull/6815#pullrequestreview-2044792380) at 2024-05-07 11:58 PM PDT -roslynwythe,2024-05-08T07:17:37Z,- roslynwythe assigned to issue: [6838](https://github.com/hackforla/website/issues/6838#issuecomment-2099873728) at 2024-05-08 12:17 AM PDT -roslynwythe,2024-05-08T07:45:51Z,- roslynwythe commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2099957525) at 2024-05-08 12:45 AM PDT -roslynwythe,2024-05-09T03:34:49Z,- roslynwythe submitted pull request review: [6766](https://github.com/hackforla/website/pull/6766#pullrequestreview-2047089010) at 2024-05-08 08:34 PM PDT -roslynwythe,2024-05-09T07:11:05Z,- roslynwythe commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2102086737) at 2024-05-09 12:11 AM PDT -roslynwythe,2024-05-09T22:17:32Z,- roslynwythe commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2103500621) at 2024-05-09 03:17 PM PDT -roslynwythe,2024-05-10T08:06:12Z,- roslynwythe commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2104141878) at 2024-05-10 01:06 AM PDT -roslynwythe,2024-05-10T08:14:18Z,- roslynwythe commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2104155654) at 2024-05-10 01:14 AM PDT -roslynwythe,2024-05-11T01:32:53Z,- roslynwythe unassigned from issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2099797074) at 2024-05-10 06:32 PM PDT -roslynwythe,2024-05-13T18:53:45Z,- roslynwythe commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2108576813) at 2024-05-13 11:53 AM PDT -roslynwythe,2024-05-14T07:37:11Z,- roslynwythe commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2109490945) at 2024-05-14 12:37 AM PDT -roslynwythe,2024-05-14T21:57:47Z,- roslynwythe commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2111204718) at 2024-05-14 02:57 PM PDT -roslynwythe,2024-05-15T02:12:26Z,- roslynwythe commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2111453765) at 2024-05-14 07:12 PM PDT -roslynwythe,2024-05-15T02:38:20Z,- roslynwythe commented on issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2111473424) at 2024-05-14 07:38 PM PDT -roslynwythe,2024-05-15T02:47:51Z,- roslynwythe commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2111480098) at 2024-05-14 07:47 PM PDT -roslynwythe,2024-05-15T03:12:50Z,- roslynwythe commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2111500460) at 2024-05-14 08:12 PM PDT -roslynwythe,2024-05-15T03:12:50Z,- roslynwythe closed issue as completed: [6653](https://github.com/hackforla/website/issues/6653#event-12810499974) at 2024-05-14 08:12 PM PDT -roslynwythe,2024-05-15T04:02:55Z,- roslynwythe submitted pull request review: [6766](https://github.com/hackforla/website/pull/6766#pullrequestreview-2056843464) at 2024-05-14 09:02 PM PDT -roslynwythe,2024-05-15T05:52:31Z,- roslynwythe commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2111638248) at 2024-05-14 10:52 PM PDT -roslynwythe,2024-05-15T05:52:31Z,- roslynwythe closed issue as completed: [6208](https://github.com/hackforla/website/issues/6208#event-12811443754) at 2024-05-14 10:52 PM PDT -roslynwythe,2024-05-15T07:52:29Z,- roslynwythe commented on issue: [6571](https://github.com/hackforla/website/issues/6571#issuecomment-2111820917) at 2024-05-15 12:52 AM PDT -roslynwythe,2024-05-15T07:52:29Z,- roslynwythe closed issue as completed: [6571](https://github.com/hackforla/website/issues/6571#event-12812850391) at 2024-05-15 12:52 AM PDT -roslynwythe,2024-05-15T07:54:36Z,- roslynwythe commented on issue: [6572](https://github.com/hackforla/website/issues/6572#issuecomment-2111824445) at 2024-05-15 12:54 AM PDT -roslynwythe,2024-05-15T07:54:36Z,- roslynwythe closed issue as completed: [6572](https://github.com/hackforla/website/issues/6572#event-12812875455) at 2024-05-15 12:54 AM PDT -roslynwythe,2024-05-16T18:13:59Z,- roslynwythe commented on issue: [6570](https://github.com/hackforla/website/issues/6570#issuecomment-2115903734) at 2024-05-16 11:13 AM PDT -roslynwythe,2024-05-16T18:13:59Z,- roslynwythe closed issue as completed: [6570](https://github.com/hackforla/website/issues/6570#event-12838041686) at 2024-05-16 11:13 AM PDT -roslynwythe,2024-05-17T02:51:41Z,- roslynwythe commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2116535660) at 2024-05-16 07:51 PM PDT -roslynwythe,2024-05-17T02:51:42Z,- roslynwythe closed issue as completed: [6783](https://github.com/hackforla/website/issues/6783#event-12842145534) at 2024-05-16 07:51 PM PDT -roslynwythe,2024-05-19T03:40:44Z,- roslynwythe commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2119086555) at 2024-05-18 08:40 PM PDT -roslynwythe,2024-05-19T03:44:22Z,- roslynwythe commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2119087144) at 2024-05-18 08:44 PM PDT -roslynwythe,2024-05-19T03:44:22Z,- roslynwythe closed issue as completed: [6615](https://github.com/hackforla/website/issues/6615#event-12857462935) at 2024-05-18 08:44 PM PDT -roslynwythe,2024-05-19T07:28:54Z,- roslynwythe commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2119133999) at 2024-05-19 12:28 AM PDT -roslynwythe,2024-05-20T20:08:51Z,- roslynwythe opened issue: [6864](https://github.com/hackforla/website/issues/6864) at 2024-05-20 01:08 PM PDT -roslynwythe,2024-05-21T06:47:07Z,- roslynwythe commented on issue: [5244](https://github.com/hackforla/website/issues/5244#issuecomment-2121870501) at 2024-05-20 11:47 PM PDT -roslynwythe,2024-05-21T06:58:07Z,- roslynwythe opened issue: [6871](https://github.com/hackforla/website/issues/6871) at 2024-05-20 11:58 PM PDT -roslynwythe,2024-05-21T07:03:29Z,- roslynwythe opened issue: [6872](https://github.com/hackforla/website/issues/6872) at 2024-05-21 12:03 AM PDT -roslynwythe,2024-05-23T19:29:32Z,- roslynwythe submitted pull request review: [6854](https://github.com/hackforla/website/pull/6854#pullrequestreview-2074836434) at 2024-05-23 12:29 PM PDT -roslynwythe,2024-05-25T02:25:49Z,- roslynwythe commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2130673351) at 2024-05-24 07:25 PM PDT -roslynwythe,2024-05-27T07:45:20Z,- roslynwythe commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2132853210) at 2024-05-27 12:45 AM PDT -roslynwythe,2024-05-27T22:30:07Z,- roslynwythe closed issue by PR 6550: [1976](https://github.com/hackforla/website/issues/1976#event-12949950979) at 2024-05-27 03:30 PM PDT -roslynwythe,2024-05-28T00:45:07Z,- roslynwythe assigned to issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1975749118) at 2024-05-27 05:45 PM PDT -roslynwythe,2024-05-28T09:27:39Z,- roslynwythe opened issue: [6903](https://github.com/hackforla/website/issues/6903) at 2024-05-28 02:27 AM PDT -roslynwythe,2024-05-28T09:27:51Z,- roslynwythe assigned to issue: [6903](https://github.com/hackforla/website/issues/6903) at 2024-05-28 02:27 AM PDT -roslynwythe,2024-05-29T06:47:02Z,- roslynwythe commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2136659874) at 2024-05-28 11:47 PM PDT -roslynwythe,2024-05-29T08:11:37Z,- roslynwythe opened issue: [6908](https://github.com/hackforla/website/issues/6908) at 2024-05-29 01:11 AM PDT -roslynwythe,2024-05-29T08:13:22Z,- roslynwythe commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2136811051) at 2024-05-29 01:13 AM PDT -roslynwythe,2024-05-29T08:26:46Z,- roslynwythe opened issue: [6909](https://github.com/hackforla/website/issues/6909) at 2024-05-29 01:26 AM PDT -roslynwythe,2024-05-29T08:46:01Z,- roslynwythe opened issue: [6910](https://github.com/hackforla/website/issues/6910) at 2024-05-29 01:46 AM PDT -roslynwythe,2024-05-29T09:04:53Z,- roslynwythe opened issue: [6911](https://github.com/hackforla/website/issues/6911) at 2024-05-29 02:04 AM PDT -roslynwythe,2024-05-29T09:08:30Z,- roslynwythe commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2136921927) at 2024-05-29 02:08 AM PDT -roslynwythe,2024-05-29T23:00:16Z,- roslynwythe commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138389042) at 2024-05-29 04:00 PM PDT -roslynwythe,2024-05-31T02:54:18Z,- roslynwythe commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2141145938) at 2024-05-30 07:54 PM PDT -roslynwythe,2024-05-31T03:38:45Z,- roslynwythe commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2141176616) at 2024-05-30 08:38 PM PDT -roslynwythe,2024-06-03T07:32:40Z,- roslynwythe assigned to issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2144476129) at 2024-06-03 12:32 AM PDT -roslynwythe,2024-06-03T22:06:38Z,- roslynwythe commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2146207634) at 2024-06-03 03:06 PM PDT -roslynwythe,2024-06-03T22:16:45Z,- roslynwythe opened issue: [6933](https://github.com/hackforla/website/issues/6933) at 2024-06-03 03:16 PM PDT -roslynwythe,2024-06-04T00:11:25Z,- roslynwythe opened issue: [6934](https://github.com/hackforla/website/issues/6934) at 2024-06-03 05:11 PM PDT -roslynwythe,2024-06-04T00:13:43Z,- roslynwythe opened issue: [6935](https://github.com/hackforla/website/issues/6935) at 2024-06-03 05:13 PM PDT -roslynwythe,2024-06-04T00:15:11Z,- roslynwythe opened issue: [6936](https://github.com/hackforla/website/issues/6936) at 2024-06-03 05:15 PM PDT -roslynwythe,2024-06-04T00:17:19Z,- roslynwythe opened issue: [6937](https://github.com/hackforla/website/issues/6937) at 2024-06-03 05:17 PM PDT -roslynwythe,2024-06-04T00:18:42Z,- roslynwythe opened issue: [6938](https://github.com/hackforla/website/issues/6938) at 2024-06-03 05:18 PM PDT -roslynwythe,2024-06-04T00:21:03Z,- roslynwythe opened issue: [6939](https://github.com/hackforla/website/issues/6939) at 2024-06-03 05:21 PM PDT -roslynwythe,2024-06-04T00:23:07Z,- roslynwythe opened issue: [6940](https://github.com/hackforla/website/issues/6940) at 2024-06-03 05:23 PM PDT -roslynwythe,2024-06-04T00:25:15Z,- roslynwythe opened issue: [6941](https://github.com/hackforla/website/issues/6941) at 2024-06-03 05:25 PM PDT -roslynwythe,2024-06-04T00:32:37Z,- roslynwythe commented on issue: [6754](https://github.com/hackforla/website/issues/6754#issuecomment-2146350008) at 2024-06-03 05:32 PM PDT -roslynwythe,2024-06-04T00:32:38Z,- roslynwythe closed issue as completed: [6754](https://github.com/hackforla/website/issues/6754#event-13028450477) at 2024-06-03 05:32 PM PDT -roslynwythe,2024-06-04T00:35:09Z,- roslynwythe commented on issue: [6756](https://github.com/hackforla/website/issues/6756#issuecomment-2146351930) at 2024-06-03 05:35 PM PDT -roslynwythe,2024-06-04T00:35:09Z,- roslynwythe closed issue as completed: [6756](https://github.com/hackforla/website/issues/6756#event-13028462976) at 2024-06-03 05:35 PM PDT -roslynwythe,2024-06-04T16:08:44Z,- roslynwythe assigned to issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1666916314) at 2024-06-04 09:08 AM PDT -roslynwythe,2024-06-06T10:11:38Z,- roslynwythe opened issue: [6967](https://github.com/hackforla/website/issues/6967) at 2024-06-06 03:11 AM PDT -roslynwythe,2024-06-06T10:15:20Z,- roslynwythe assigned to issue: [6967](https://github.com/hackforla/website/issues/6967#issuecomment-2151910733) at 2024-06-06 03:15 AM PDT -roslynwythe,2024-06-07T01:04:40Z,- roslynwythe opened issue: [6970](https://github.com/hackforla/website/issues/6970) at 2024-06-06 06:04 PM PDT -roslynwythe,2024-06-07T01:05:33Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153668476) at 2024-06-06 06:05 PM PDT -roslynwythe,2024-06-07T01:07:12Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153674180) at 2024-06-06 06:07 PM PDT -roslynwythe,2024-06-07T01:07:23Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153674932) at 2024-06-06 06:07 PM PDT -roslynwythe,2024-06-07T01:09:54Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153679733) at 2024-06-06 06:09 PM PDT -roslynwythe,2024-06-07T01:10:12Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153679915) at 2024-06-06 06:10 PM PDT -roslynwythe,2024-06-07T01:12:20Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153681196) at 2024-06-06 06:12 PM PDT -roslynwythe,2024-06-07T01:15:08Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153683304) at 2024-06-06 06:15 PM PDT -roslynwythe,2024-06-07T01:16:00Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153683862) at 2024-06-06 06:16 PM PDT -roslynwythe,2024-06-07T01:20:13Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153686692) at 2024-06-06 06:20 PM PDT -roslynwythe,2024-06-07T01:23:45Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153689302) at 2024-06-06 06:23 PM PDT -roslynwythe,2024-06-07T07:46:37Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2154282891) at 2024-06-07 12:46 AM PDT -roslynwythe,2024-06-07T07:57:03Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2154298824) at 2024-06-07 12:57 AM PDT -roslynwythe,2024-06-07T08:00:15Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2154303629) at 2024-06-07 01:00 AM PDT -roslynwythe,2024-06-07T19:35:12Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2155417712) at 2024-06-07 12:35 PM PDT -roslynwythe,2024-06-07T19:37:06Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2155423194) at 2024-06-07 12:37 PM PDT -roslynwythe,2024-06-07T19:38:22Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2155426919) at 2024-06-07 12:38 PM PDT -roslynwythe,2024-06-07T19:41:23Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2155435567) at 2024-06-07 12:41 PM PDT -roslynwythe,2024-06-07T19:44:07Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2155443335) at 2024-06-07 12:44 PM PDT -roslynwythe,2024-06-07T19:56:39Z,- roslynwythe commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2155464740) at 2024-06-07 12:56 PM PDT -roslynwythe,2024-06-09T00:49:38Z,- roslynwythe unassigned from issue: [6967](https://github.com/hackforla/website/issues/6967#issuecomment-2151917111) at 2024-06-08 05:49 PM PDT -roslynwythe,2024-06-09T09:12:20Z,- roslynwythe submitted pull request review: [6975](https://github.com/hackforla/website/pull/6975#pullrequestreview-2106121399) at 2024-06-09 02:12 AM PDT -roslynwythe,2024-06-09T21:58:10Z,- roslynwythe submitted pull request review: [6975](https://github.com/hackforla/website/pull/6975#pullrequestreview-2106374333) at 2024-06-09 02:58 PM PDT -roslynwythe,2024-06-10T06:08:20Z,- roslynwythe opened issue: [6979](https://github.com/hackforla/website/issues/6979) at 2024-06-09 11:08 PM PDT -roslynwythe,2024-06-10T09:36:34Z,- roslynwythe commented on issue: [6967](https://github.com/hackforla/website/issues/6967#issuecomment-2157848908) at 2024-06-10 02:36 AM PDT -roslynwythe,2024-06-10T19:36:50Z,- roslynwythe opened issue: [6981](https://github.com/hackforla/website/issues/6981) at 2024-06-10 12:36 PM PDT -roslynwythe,2024-06-11T00:56:53Z,- roslynwythe assigned to issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2136039266) at 2024-06-10 05:56 PM PDT -roslynwythe,2024-06-11T00:57:05Z,- roslynwythe unassigned from issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2136039266) at 2024-06-10 05:57 PM PDT -roslynwythe,2024-06-11T01:02:59Z,- roslynwythe assigned to issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2159571458) at 2024-06-10 06:02 PM PDT -roslynwythe,2024-06-11T01:03:14Z,- roslynwythe unassigned from issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2159571458) at 2024-06-10 06:03 PM PDT -roslynwythe,2024-06-11T01:05:08Z,- roslynwythe assigned to issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-2030727332) at 2024-06-10 06:05 PM PDT -roslynwythe,2024-06-11T01:06:58Z,- roslynwythe unassigned from issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-2159577711) at 2024-06-10 06:06 PM PDT -roslynwythe,2024-06-13T06:02:23Z,- roslynwythe commented on issue: [6903](https://github.com/hackforla/website/issues/6903#issuecomment-2164509427) at 2024-06-12 11:02 PM PDT -roslynwythe,2024-06-13T06:02:23Z,- roslynwythe closed issue as completed: [6903](https://github.com/hackforla/website/issues/6903#event-13140777773) at 2024-06-12 11:02 PM PDT -roslynwythe,2024-06-14T18:30:15Z,- roslynwythe assigned to issue: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-14 11:30 AM PDT -roslynwythe,2024-06-14T18:31:28Z,- roslynwythe opened issue: [7004](https://github.com/hackforla/website/issues/7004) at 2024-06-14 11:31 AM PDT -roslynwythe,2024-06-14T18:49:04Z,- roslynwythe assigned to issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2168576181) at 2024-06-14 11:49 AM PDT -roslynwythe,2024-06-14T19:02:54Z,- roslynwythe assigned to issue: [7004](https://github.com/hackforla/website/issues/7004#issuecomment-2168557654) at 2024-06-14 12:02 PM PDT -roslynwythe,2024-06-14T19:09:18Z,- roslynwythe commented on issue: [6753](https://github.com/hackforla/website/issues/6753#issuecomment-2168606201) at 2024-06-14 12:09 PM PDT -roslynwythe,2024-06-14T19:09:18Z,- roslynwythe closed issue as completed: [6753](https://github.com/hackforla/website/issues/6753#event-13164695671) at 2024-06-14 12:09 PM PDT -roslynwythe,2024-06-14T19:11:59Z,- roslynwythe commented on issue: [6752](https://github.com/hackforla/website/issues/6752#issuecomment-2168610187) at 2024-06-14 12:11 PM PDT -roslynwythe,2024-06-14T19:11:59Z,- roslynwythe closed issue as completed: [6752](https://github.com/hackforla/website/issues/6752#event-13164716750) at 2024-06-14 12:11 PM PDT -roslynwythe,2024-06-14T19:24:08Z,- roslynwythe commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2168629547) at 2024-06-14 12:24 PM PDT -roslynwythe,2024-06-14T19:24:08Z,- roslynwythe closed issue as completed: [6654](https://github.com/hackforla/website/issues/6654#event-13164811436) at 2024-06-14 12:24 PM PDT -roslynwythe,2024-06-14T19:43:34Z,- roslynwythe commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2168653706) at 2024-06-14 12:43 PM PDT -roslynwythe,2024-06-14T19:43:34Z,- roslynwythe closed issue as completed: [6578](https://github.com/hackforla/website/issues/6578#event-13164964864) at 2024-06-14 12:43 PM PDT -roslynwythe,2024-06-14T19:47:21Z,- roslynwythe commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2168659808) at 2024-06-14 12:47 PM PDT -roslynwythe,2024-06-14T20:16:15Z,- roslynwythe commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2168703970) at 2024-06-14 01:16 PM PDT -roslynwythe,2024-06-14T20:33:09Z,- roslynwythe commented on issue: [6838](https://github.com/hackforla/website/issues/6838#issuecomment-2168725208) at 2024-06-14 01:33 PM PDT -roslynwythe,2024-06-14T20:33:09Z,- roslynwythe closed issue as not planned: [6838](https://github.com/hackforla/website/issues/6838#event-13165372053) at 2024-06-14 01:33 PM PDT -roslynwythe,2024-06-14T22:24:55Z,- roslynwythe commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2168837535) at 2024-06-14 03:24 PM PDT -roslynwythe,2024-06-15T19:06:49Z,- roslynwythe unassigned from issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2168837535) at 2024-06-15 12:06 PM PDT -roslynwythe,2024-06-16T07:00:53Z,- roslynwythe commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-2171117546) at 2024-06-16 12:00 AM PDT -roslynwythe,2024-06-16T07:07:40Z,- roslynwythe opened issue: [7010](https://github.com/hackforla/website/issues/7010) at 2024-06-16 12:07 AM PDT -roslynwythe,2024-06-16T19:54:33Z,- roslynwythe opened issue: [7011](https://github.com/hackforla/website/issues/7011) at 2024-06-16 12:54 PM PDT -roslynwythe,2024-06-16T20:16:57Z,- roslynwythe commented on issue: [7004](https://github.com/hackforla/website/issues/7004#issuecomment-2171864618) at 2024-06-16 01:16 PM PDT -roslynwythe,2024-06-16T20:16:57Z,- roslynwythe closed issue as completed: [7004](https://github.com/hackforla/website/issues/7004#event-13176930855) at 2024-06-16 01:16 PM PDT -roslynwythe,2024-06-16T20:43:44Z,- roslynwythe commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2171872339) at 2024-06-16 01:43 PM PDT -roslynwythe,2024-06-17T00:51:27Z,- roslynwythe commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2171977198) at 2024-06-16 05:51 PM PDT -roslynwythe,2024-06-17T04:54:34Z,- roslynwythe commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-2172236972) at 2024-06-16 09:54 PM PDT -roslynwythe,2024-06-17T04:56:33Z,- roslynwythe commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-2172238652) at 2024-06-16 09:56 PM PDT -roslynwythe,2024-06-17T05:46:54Z,- roslynwythe commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2172337604) at 2024-06-16 10:46 PM PDT -roslynwythe,2024-06-17T18:10:22Z,- roslynwythe submitted pull request review: [6854](https://github.com/hackforla/website/pull/6854#pullrequestreview-2123548922) at 2024-06-17 11:10 AM PDT -roslynwythe,2024-06-18T00:04:23Z,- roslynwythe assigned to issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2174655794) at 2024-06-17 05:04 PM PDT -roslynwythe,2024-06-19T03:11:12Z,- roslynwythe commented on issue: [7026](https://github.com/hackforla/website/issues/7026#issuecomment-2177461882) at 2024-06-18 08:11 PM PDT -roslynwythe,2024-06-19T03:11:13Z,- roslynwythe closed issue as not planned: [7026](https://github.com/hackforla/website/issues/7026#event-13209221051) at 2024-06-18 08:11 PM PDT -roslynwythe,2024-06-19T05:57:59Z,- roslynwythe commented on issue: [7034](https://github.com/hackforla/website/issues/7034#issuecomment-2177812049) at 2024-06-18 10:57 PM PDT -roslynwythe,2024-06-19T06:36:32Z,- roslynwythe commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2177860435) at 2024-06-18 11:36 PM PDT -roslynwythe,2024-06-19T07:37:30Z,- roslynwythe submitted pull request review: [6766](https://github.com/hackforla/website/pull/6766#pullrequestreview-2127338484) at 2024-06-19 12:37 AM PDT -roslynwythe,2024-06-19T07:37:48Z,- roslynwythe closed issue by PR 6766: [6272](https://github.com/hackforla/website/issues/6272#event-13211615533) at 2024-06-19 12:37 AM PDT -roslynwythe,2024-06-19T07:50:00Z,- roslynwythe submitted pull request review: [6854](https://github.com/hackforla/website/pull/6854#pullrequestreview-2127367469) at 2024-06-19 12:50 AM PDT -roslynwythe,2024-06-21T18:42:31Z,- roslynwythe opened issue: [7044](https://github.com/hackforla/website/issues/7044) at 2024-06-21 11:42 AM PDT -roslynwythe,2024-06-21T18:47:44Z,- roslynwythe opened issue: [7045](https://github.com/hackforla/website/issues/7045) at 2024-06-21 11:47 AM PDT -roslynwythe,2024-06-21T18:48:36Z,- roslynwythe opened issue: [7046](https://github.com/hackforla/website/issues/7046) at 2024-06-21 11:48 AM PDT -roslynwythe,2024-06-21T18:51:06Z,- roslynwythe opened issue: [7047](https://github.com/hackforla/website/issues/7047) at 2024-06-21 11:51 AM PDT -roslynwythe,2024-06-21T18:51:42Z,- roslynwythe opened issue: [7048](https://github.com/hackforla/website/issues/7048) at 2024-06-21 11:51 AM PDT -roslynwythe,2024-06-21T18:52:19Z,- roslynwythe opened issue: [7049](https://github.com/hackforla/website/issues/7049) at 2024-06-21 11:52 AM PDT -roslynwythe,2024-06-21T18:57:23Z,- roslynwythe opened issue: [7050](https://github.com/hackforla/website/issues/7050) at 2024-06-21 11:57 AM PDT -roslynwythe,2024-06-22T22:03:39Z,- roslynwythe unassigned from issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2174656396) at 2024-06-22 03:03 PM PDT -roslynwythe,2024-06-24T08:24:18Z,- roslynwythe opened issue: [7060](https://github.com/hackforla/website/issues/7060) at 2024-06-24 01:24 AM PDT -roslynwythe,2024-06-24T08:28:15Z,- roslynwythe opened issue: [7061](https://github.com/hackforla/website/issues/7061) at 2024-06-24 01:28 AM PDT -roslynwythe,2024-06-24T22:34:28Z,- roslynwythe commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2187535008) at 2024-06-24 03:34 PM PDT -roslynwythe,2024-06-24T22:38:11Z,- roslynwythe unassigned from issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2097188674) at 2024-06-24 03:38 PM PDT -roslynwythe,2024-06-25T20:15:04Z,- roslynwythe unassigned from issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2092033370) at 2024-06-25 01:15 PM PDT -roslynwythe,2024-06-27T08:19:05Z,- roslynwythe submitted pull request review: [7062](https://github.com/hackforla/website/pull/7062#pullrequestreview-2144619517) at 2024-06-27 01:19 AM PDT -roslynwythe,2024-06-27T08:40:00Z,- roslynwythe commented on pull request: [7062](https://github.com/hackforla/website/pull/7062#issuecomment-2194119417) at 2024-06-27 01:40 AM PDT -roslynwythe,2024-06-29T08:40:53Z,- roslynwythe closed issue by PR 7074: [7045](https://github.com/hackforla/website/issues/7045#event-13338755996) at 2024-06-29 01:40 AM PDT -roslynwythe,2024-06-30T17:16:40Z,- roslynwythe submitted pull request review: [7077](https://github.com/hackforla/website/pull/7077#pullrequestreview-2150087917) at 2024-06-30 10:16 AM PDT -roslynwythe,2024-06-30T17:56:59Z,- roslynwythe commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2198635959) at 2024-06-30 10:56 AM PDT -roslynwythe,2024-07-01T05:57:17Z,- roslynwythe commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2199299236) at 2024-06-30 10:57 PM PDT -roslynwythe,2024-07-01T06:27:45Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2199339386) at 2024-06-30 11:27 PM PDT -roslynwythe,2024-07-01T06:36:18Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2199350704) at 2024-06-30 11:36 PM PDT -roslynwythe,2024-07-01T23:49:37Z,- roslynwythe commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2201450071) at 2024-07-01 04:49 PM PDT -roslynwythe,2024-07-01T23:50:37Z,- roslynwythe commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2201450961) at 2024-07-01 04:50 PM PDT -roslynwythe,2024-07-07T19:13:52Z,- roslynwythe opened issue: [7091](https://github.com/hackforla/website/issues/7091) at 2024-07-07 12:13 PM PDT -roslynwythe,2024-07-07T19:16:48Z,- roslynwythe opened issue: [7092](https://github.com/hackforla/website/issues/7092) at 2024-07-07 12:16 PM PDT -roslynwythe,2024-07-07T19:20:17Z,- roslynwythe commented on issue: [7092](https://github.com/hackforla/website/issues/7092#issuecomment-2212544081) at 2024-07-07 12:20 PM PDT -roslynwythe,2024-07-07T19:23:33Z,- roslynwythe commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2212544831) at 2024-07-07 12:23 PM PDT -roslynwythe,2024-07-07T19:27:11Z,- roslynwythe unassigned from issue: [6677](https://github.com/hackforla/website/issues/6677) at 2024-07-07 12:27 PM PDT -roslynwythe,2024-07-07T22:09:35Z,- roslynwythe unassigned from issue: [6485](https://github.com/hackforla/website/issues/6485#issuecomment-2077328219) at 2024-07-07 03:09 PM PDT -roslynwythe,2024-07-07T22:40:24Z,- roslynwythe opened issue: [7093](https://github.com/hackforla/website/issues/7093) at 2024-07-07 03:40 PM PDT -roslynwythe,2024-07-07T22:42:54Z,- roslynwythe opened issue: [7094](https://github.com/hackforla/website/issues/7094) at 2024-07-07 03:42 PM PDT -roslynwythe,2024-07-08T00:06:55Z,- roslynwythe opened issue: [7095](https://github.com/hackforla/website/issues/7095) at 2024-07-07 05:06 PM PDT -roslynwythe,2024-07-08T00:16:09Z,- roslynwythe opened issue: [7096](https://github.com/hackforla/website/issues/7096) at 2024-07-07 05:16 PM PDT -roslynwythe,2024-07-08T00:19:42Z,- roslynwythe opened issue: [7097](https://github.com/hackforla/website/issues/7097) at 2024-07-07 05:19 PM PDT -roslynwythe,2024-07-08T00:23:12Z,- roslynwythe opened issue: [7098](https://github.com/hackforla/website/issues/7098) at 2024-07-07 05:23 PM PDT -roslynwythe,2024-07-08T00:42:55Z,- roslynwythe commented on issue: [6367](https://github.com/hackforla/website/issues/6367#issuecomment-2212684488) at 2024-07-07 05:42 PM PDT -roslynwythe,2024-07-08T00:42:56Z,- roslynwythe closed issue as not planned: [6367](https://github.com/hackforla/website/issues/6367#event-13415771954) at 2024-07-07 05:42 PM PDT -roslynwythe,2024-07-08T00:46:23Z,- roslynwythe commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2212686854) at 2024-07-07 05:46 PM PDT -roslynwythe,2024-07-08T17:41:34Z,- roslynwythe commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2214802077) at 2024-07-08 10:41 AM PDT -roslynwythe,2024-07-08T17:56:36Z,- roslynwythe commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2214833174) at 2024-07-08 10:56 AM PDT -roslynwythe,2024-07-08T18:03:32Z,- roslynwythe commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2214847809) at 2024-07-08 11:03 AM PDT -roslynwythe,2024-07-08T19:35:19Z,- roslynwythe commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2215019520) at 2024-07-08 12:35 PM PDT -roslynwythe,2024-07-08T23:49:46Z,- roslynwythe commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2215555856) at 2024-07-08 04:49 PM PDT -roslynwythe,2024-07-15T03:25:12Z,- roslynwythe opened issue: [7110](https://github.com/hackforla/website/issues/7110) at 2024-07-14 08:25 PM PDT -roslynwythe,2024-07-15T05:19:49Z,- roslynwythe opened issue: [7111](https://github.com/hackforla/website/issues/7111) at 2024-07-14 10:19 PM PDT -roslynwythe,2024-07-15T05:41:33Z,- roslynwythe opened issue: [7112](https://github.com/hackforla/website/issues/7112) at 2024-07-14 10:41 PM PDT -roslynwythe,2024-07-15T06:06:27Z,- roslynwythe opened issue: [7113](https://github.com/hackforla/website/issues/7113) at 2024-07-14 11:06 PM PDT -roslynwythe,2024-07-15T06:33:10Z,- roslynwythe opened issue: [7115](https://github.com/hackforla/website/issues/7115) at 2024-07-14 11:33 PM PDT -roslynwythe,2024-07-15T06:38:08Z,- roslynwythe commented on pull request: [7114](https://github.com/hackforla/website/pull/7114#issuecomment-2227791287) at 2024-07-14 11:38 PM PDT -roslynwythe,2024-07-15T06:46:59Z,- roslynwythe opened issue: [7117](https://github.com/hackforla/website/issues/7117) at 2024-07-14 11:46 PM PDT -roslynwythe,2024-07-15T06:49:46Z,- roslynwythe commented on pull request: [7116](https://github.com/hackforla/website/pull/7116#issuecomment-2227804806) at 2024-07-14 11:49 PM PDT -roslynwythe,2024-07-15T06:56:53Z,- roslynwythe opened issue: [7118](https://github.com/hackforla/website/issues/7118) at 2024-07-14 11:56 PM PDT -roslynwythe,2024-07-28T18:02:01Z,- roslynwythe opened issue: [7151](https://github.com/hackforla/website/issues/7151) at 2024-07-28 11:02 AM PDT -roslynwythe,2024-07-28T19:01:30Z,- roslynwythe opened issue: [7152](https://github.com/hackforla/website/issues/7152) at 2024-07-28 12:01 PM PDT -roslynwythe,2024-07-28T19:11:30Z,- roslynwythe commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2254616230) at 2024-07-28 12:11 PM PDT -roslynwythe,2024-07-29T20:24:17Z,- roslynwythe assigned to issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2254616230) at 2024-07-29 01:24 PM PDT -roslynwythe,2024-07-29T23:56:07Z,- roslynwythe assigned to issue: [7152](https://github.com/hackforla/website/issues/7152) at 2024-07-29 04:56 PM PDT -roslynwythe,2024-07-31T08:16:31Z,- roslynwythe opened issue: [7156](https://github.com/hackforla/website/issues/7156) at 2024-07-31 01:16 AM PDT -roslynwythe,2024-07-31T08:35:19Z,- roslynwythe opened issue: [7157](https://github.com/hackforla/website/issues/7157) at 2024-07-31 01:35 AM PDT -roslynwythe,2024-07-31T08:39:13Z,- roslynwythe opened issue: [7158](https://github.com/hackforla/website/issues/7158) at 2024-07-31 01:39 AM PDT -roslynwythe,2024-07-31T08:45:30Z,- roslynwythe opened issue: [7159](https://github.com/hackforla/website/issues/7159) at 2024-07-31 01:45 AM PDT -roslynwythe,2024-07-31T08:47:34Z,- roslynwythe opened issue: [7160](https://github.com/hackforla/website/issues/7160) at 2024-07-31 01:47 AM PDT -roslynwythe,2024-07-31T08:52:17Z,- roslynwythe opened issue: [7161](https://github.com/hackforla/website/issues/7161) at 2024-07-31 01:52 AM PDT -roslynwythe,2024-07-31T08:56:36Z,- roslynwythe opened issue: [7162](https://github.com/hackforla/website/issues/7162) at 2024-07-31 01:56 AM PDT -roslynwythe,2024-07-31T08:59:06Z,- roslynwythe opened issue: [7163](https://github.com/hackforla/website/issues/7163) at 2024-07-31 01:59 AM PDT -roslynwythe,2024-07-31T09:02:50Z,- roslynwythe opened issue: [7164](https://github.com/hackforla/website/issues/7164) at 2024-07-31 02:02 AM PDT -roslynwythe,2024-08-01T21:44:58Z,- roslynwythe commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2264065634) at 2024-08-01 02:44 PM PDT -roslynwythe,2024-08-01T21:44:58Z,- roslynwythe closed issue as completed: [6871](https://github.com/hackforla/website/issues/6871#event-13732716718) at 2024-08-01 02:44 PM PDT -roslynwythe,2024-08-01T21:50:29Z,- roslynwythe opened issue: [7165](https://github.com/hackforla/website/issues/7165) at 2024-08-01 02:50 PM PDT -roslynwythe,2024-08-01T21:59:18Z,- roslynwythe opened issue: [7166](https://github.com/hackforla/website/issues/7166) at 2024-08-01 02:59 PM PDT -roslynwythe,2024-08-01T22:19:53Z,- roslynwythe opened issue: [7167](https://github.com/hackforla/website/issues/7167) at 2024-08-01 03:19 PM PDT -roslynwythe,2024-08-01T22:23:03Z,- roslynwythe opened issue: [7168](https://github.com/hackforla/website/issues/7168) at 2024-08-01 03:23 PM PDT -roslynwythe,2024-08-05T07:17:20Z,- roslynwythe assigned to issue: [7164](https://github.com/hackforla/website/issues/7164#issuecomment-2260015852) at 2024-08-05 12:17 AM PDT -roslynwythe,2024-08-05T07:22:08Z,- roslynwythe opened issue: [7170](https://github.com/hackforla/website/issues/7170) at 2024-08-05 12:22 AM PDT -roslynwythe,2024-08-05T07:23:47Z,- roslynwythe opened issue: [7171](https://github.com/hackforla/website/issues/7171) at 2024-08-05 12:23 AM PDT -roslynwythe,2024-08-05T07:25:29Z,- roslynwythe opened issue: [7172](https://github.com/hackforla/website/issues/7172) at 2024-08-05 12:25 AM PDT -roslynwythe,2024-08-05T07:26:19Z,- roslynwythe opened issue: [7173](https://github.com/hackforla/website/issues/7173) at 2024-08-05 12:26 AM PDT -roslynwythe,2024-08-05T07:27:37Z,- roslynwythe opened issue: [7174](https://github.com/hackforla/website/issues/7174) at 2024-08-05 12:27 AM PDT -roslynwythe,2024-08-05T08:57:23Z,- roslynwythe commented on issue: [7164](https://github.com/hackforla/website/issues/7164#issuecomment-2268533687) at 2024-08-05 01:57 AM PDT -roslynwythe,2024-08-05T09:00:14Z,- roslynwythe assigned to issue: [7157](https://github.com/hackforla/website/issues/7157#issuecomment-2259966062) at 2024-08-05 02:00 AM PDT -roslynwythe,2024-08-05T09:15:27Z,- roslynwythe opened issue: [7175](https://github.com/hackforla/website/issues/7175) at 2024-08-05 02:15 AM PDT -roslynwythe,2024-08-05T09:15:52Z,- roslynwythe opened issue: [7176](https://github.com/hackforla/website/issues/7176) at 2024-08-05 02:15 AM PDT -roslynwythe,2024-08-05T09:19:39Z,- roslynwythe opened issue: [7177](https://github.com/hackforla/website/issues/7177) at 2024-08-05 02:19 AM PDT -roslynwythe,2024-08-05T09:19:49Z,- roslynwythe opened issue: [7178](https://github.com/hackforla/website/issues/7178) at 2024-08-05 02:19 AM PDT -roslynwythe,2024-08-05T09:20:00Z,- roslynwythe opened issue: [7179](https://github.com/hackforla/website/issues/7179) at 2024-08-05 02:20 AM PDT -roslynwythe,2024-08-05T09:20:10Z,- roslynwythe opened issue: [7180](https://github.com/hackforla/website/issues/7180) at 2024-08-05 02:20 AM PDT -roslynwythe,2024-08-05T09:20:20Z,- roslynwythe opened issue: [7181](https://github.com/hackforla/website/issues/7181) at 2024-08-05 02:20 AM PDT -roslynwythe,2024-08-05T09:20:29Z,- roslynwythe opened issue: [7182](https://github.com/hackforla/website/issues/7182) at 2024-08-05 02:20 AM PDT -roslynwythe,2024-08-05T09:20:38Z,- roslynwythe opened issue: [7183](https://github.com/hackforla/website/issues/7183) at 2024-08-05 02:20 AM PDT -roslynwythe,2024-08-05T09:35:06Z,- roslynwythe opened issue: [7184](https://github.com/hackforla/website/issues/7184) at 2024-08-05 02:35 AM PDT -roslynwythe,2024-08-05T09:37:35Z,- roslynwythe opened issue: [7185](https://github.com/hackforla/website/issues/7185) at 2024-08-05 02:37 AM PDT -roslynwythe,2024-08-05T09:39:21Z,- roslynwythe opened issue: [7186](https://github.com/hackforla/website/issues/7186) at 2024-08-05 02:39 AM PDT -roslynwythe,2024-08-05T09:41:06Z,- roslynwythe opened issue: [7187](https://github.com/hackforla/website/issues/7187) at 2024-08-05 02:41 AM PDT -roslynwythe,2024-08-05T09:42:36Z,- roslynwythe opened issue: [7188](https://github.com/hackforla/website/issues/7188) at 2024-08-05 02:42 AM PDT -roslynwythe,2024-08-05T09:44:04Z,- roslynwythe opened issue: [7189](https://github.com/hackforla/website/issues/7189) at 2024-08-05 02:44 AM PDT -roslynwythe,2024-08-05T09:46:40Z,- roslynwythe opened issue: [7190](https://github.com/hackforla/website/issues/7190) at 2024-08-05 02:46 AM PDT -roslynwythe,2024-08-05T09:48:13Z,- roslynwythe opened issue: [7191](https://github.com/hackforla/website/issues/7191) at 2024-08-05 02:48 AM PDT -roslynwythe,2024-08-05T10:01:28Z,- roslynwythe commented on issue: [7157](https://github.com/hackforla/website/issues/7157#issuecomment-2268684313) at 2024-08-05 03:01 AM PDT -roslynwythe,2024-08-05T22:13:15Z,- roslynwythe assigned to issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2141176616) at 2024-08-05 03:13 PM PDT -roslynwythe,2024-08-05T22:14:02Z,- roslynwythe opened issue: [7192](https://github.com/hackforla/website/issues/7192) at 2024-08-05 03:14 PM PDT -roslynwythe,2024-08-05T22:14:08Z,- roslynwythe opened issue: [7193](https://github.com/hackforla/website/issues/7193) at 2024-08-05 03:14 PM PDT -roslynwythe,2024-08-05T22:14:11Z,- roslynwythe opened issue: [7194](https://github.com/hackforla/website/issues/7194) at 2024-08-05 03:14 PM PDT -roslynwythe,2024-08-05T22:14:15Z,- roslynwythe opened issue: [7195](https://github.com/hackforla/website/issues/7195) at 2024-08-05 03:14 PM PDT -roslynwythe,2024-08-05T23:53:04Z,- roslynwythe commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2270113150) at 2024-08-05 04:53 PM PDT -roslynwythe,2024-08-07T03:59:56Z,- roslynwythe opened issue: [7236](https://github.com/hackforla/website/issues/7236) at 2024-08-06 08:59 PM PDT -roslynwythe,2024-08-07T05:21:19Z,- roslynwythe assigned to issue: [7236](https://github.com/hackforla/website/issues/7236#issuecomment-2272568603) at 2024-08-06 10:21 PM PDT -roslynwythe,2024-08-07T05:26:51Z,- roslynwythe opened issue: [7237](https://github.com/hackforla/website/issues/7237) at 2024-08-06 10:26 PM PDT -roslynwythe,2024-08-07T05:27:10Z,- roslynwythe assigned to issue: [7237](https://github.com/hackforla/website/issues/7237) at 2024-08-06 10:27 PM PDT -roslynwythe,2024-08-07T06:48:39Z,- roslynwythe opened pull request: [7238](https://github.com/hackforla/website/pull/7238) at 2024-08-06 11:48 PM PDT -roslynwythe,2024-08-07T06:57:53Z,- roslynwythe pull request merged: [7238](https://github.com/hackforla/website/pull/7238#event-13787642249) at 2024-08-06 11:57 PM PDT -roslynwythe,2024-08-07T06:57:54Z,- roslynwythe closed issue by PR 7238: [7237](https://github.com/hackforla/website/issues/7237#event-13787642408) at 2024-08-06 11:57 PM PDT -roslynwythe,2024-08-07T07:02:47Z,- roslynwythe commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2272764967) at 2024-08-07 12:02 AM PDT -roslynwythe,2024-08-07T07:03:10Z,- roslynwythe commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2272765512) at 2024-08-07 12:03 AM PDT -roslynwythe,2024-08-07T07:03:56Z,- roslynwythe commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2272766629) at 2024-08-07 12:03 AM PDT -roslynwythe,2024-08-07T07:06:32Z,- roslynwythe commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2272770959) at 2024-08-07 12:06 AM PDT -roslynwythe,2024-08-07T07:08:04Z,- roslynwythe commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2272773461) at 2024-08-07 12:08 AM PDT -roslynwythe,2024-08-07T07:08:39Z,- roslynwythe commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2272774432) at 2024-08-07 12:08 AM PDT -roslynwythe,2024-08-07T07:09:14Z,- roslynwythe commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2272775396) at 2024-08-07 12:09 AM PDT -roslynwythe,2024-08-07T07:10:02Z,- roslynwythe commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2272776629) at 2024-08-07 12:10 AM PDT -roslynwythe,2024-08-07T07:11:31Z,- roslynwythe commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2272778926) at 2024-08-07 12:11 AM PDT -roslynwythe,2024-08-07T07:18:02Z,- roslynwythe commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2272789391) at 2024-08-07 12:18 AM PDT -roslynwythe,2024-08-07T07:19:29Z,- roslynwythe commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2272791610) at 2024-08-07 12:19 AM PDT -roslynwythe,2024-08-07T07:20:34Z,- roslynwythe commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2272793342) at 2024-08-07 12:20 AM PDT -roslynwythe,2024-08-07T07:21:07Z,- roslynwythe commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2272794201) at 2024-08-07 12:21 AM PDT -roslynwythe,2024-08-07T07:21:40Z,- roslynwythe commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2272795023) at 2024-08-07 12:21 AM PDT -roslynwythe,2024-08-07T07:22:34Z,- roslynwythe commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2272796255) at 2024-08-07 12:22 AM PDT -roslynwythe,2024-08-07T07:23:13Z,- roslynwythe commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2272797235) at 2024-08-07 12:23 AM PDT -roslynwythe,2024-08-07T07:23:54Z,- roslynwythe commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2272798283) at 2024-08-07 12:23 AM PDT -roslynwythe,2024-08-07T07:25:08Z,- roslynwythe commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2272800370) at 2024-08-07 12:25 AM PDT -roslynwythe,2024-08-07T07:26:00Z,- roslynwythe commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2272801797) at 2024-08-07 12:26 AM PDT -roslynwythe,2024-08-07T07:31:36Z,- roslynwythe commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2272810680) at 2024-08-07 12:31 AM PDT -roslynwythe,2024-08-07T08:26:45Z,- roslynwythe commented on issue: [7157](https://github.com/hackforla/website/issues/7157#issuecomment-2272911644) at 2024-08-07 01:26 AM PDT -roslynwythe,2024-08-07T08:26:46Z,- roslynwythe closed issue as completed: [7157](https://github.com/hackforla/website/issues/7157#event-13788703149) at 2024-08-07 01:26 AM PDT -roslynwythe,2024-08-07T08:31:55Z,- roslynwythe assigned to issue: [7160](https://github.com/hackforla/website/issues/7160#issuecomment-2259987068) at 2024-08-07 01:31 AM PDT -roslynwythe,2024-08-07T08:39:39Z,- roslynwythe commented on issue: [7164](https://github.com/hackforla/website/issues/7164#issuecomment-2272936147) at 2024-08-07 01:39 AM PDT -roslynwythe,2024-08-07T08:39:39Z,- roslynwythe closed issue as completed: [7164](https://github.com/hackforla/website/issues/7164#event-13788867735) at 2024-08-07 01:39 AM PDT -roslynwythe,2024-08-07T08:45:39Z,- roslynwythe opened issue: [7239](https://github.com/hackforla/website/issues/7239) at 2024-08-07 01:45 AM PDT -roslynwythe,2024-08-07T08:49:30Z,- roslynwythe opened issue: [7240](https://github.com/hackforla/website/issues/7240) at 2024-08-07 01:49 AM PDT -roslynwythe,2024-08-07T08:51:53Z,- roslynwythe opened issue: [7241](https://github.com/hackforla/website/issues/7241) at 2024-08-07 01:51 AM PDT -roslynwythe,2024-08-07T08:53:29Z,- roslynwythe opened issue: [7242](https://github.com/hackforla/website/issues/7242) at 2024-08-07 01:53 AM PDT -roslynwythe,2024-08-07T08:54:46Z,- roslynwythe commented on issue: [7160](https://github.com/hackforla/website/issues/7160#issuecomment-2272965143) at 2024-08-07 01:54 AM PDT -roslynwythe,2024-08-08T06:44:04Z,- roslynwythe opened issue: [7245](https://github.com/hackforla/website/issues/7245) at 2024-08-07 11:44 PM PDT -roslynwythe,2024-08-08T06:46:20Z,- roslynwythe opened issue: [7246](https://github.com/hackforla/website/issues/7246) at 2024-08-07 11:46 PM PDT -roslynwythe,2024-08-08T06:49:07Z,- roslynwythe opened issue: [7247](https://github.com/hackforla/website/issues/7247) at 2024-08-07 11:49 PM PDT -roslynwythe,2024-08-08T06:50:12Z,- roslynwythe opened issue: [7248](https://github.com/hackforla/website/issues/7248) at 2024-08-07 11:50 PM PDT -roslynwythe,2024-08-08T07:19:45Z,- roslynwythe opened issue: [7249](https://github.com/hackforla/website/issues/7249) at 2024-08-08 12:19 AM PDT -roslynwythe,2024-08-08T07:27:32Z,- roslynwythe opened issue: [7250](https://github.com/hackforla/website/issues/7250) at 2024-08-08 12:27 AM PDT -roslynwythe,2024-08-08T07:29:00Z,- roslynwythe opened issue: [7251](https://github.com/hackforla/website/issues/7251) at 2024-08-08 12:29 AM PDT -roslynwythe,2024-08-08T07:32:31Z,- roslynwythe opened issue: [7252](https://github.com/hackforla/website/issues/7252) at 2024-08-08 12:32 AM PDT -roslynwythe,2024-08-08T07:36:04Z,- roslynwythe opened issue: [7253](https://github.com/hackforla/website/issues/7253) at 2024-08-08 12:36 AM PDT -roslynwythe,2024-08-08T07:39:26Z,- roslynwythe opened issue: [7254](https://github.com/hackforla/website/issues/7254) at 2024-08-08 12:39 AM PDT -roslynwythe,2024-08-08T07:52:21Z,- roslynwythe commented on issue: [7182](https://github.com/hackforla/website/issues/7182#issuecomment-2275179903) at 2024-08-08 12:52 AM PDT -roslynwythe,2024-08-08T07:52:22Z,- roslynwythe closed issue as not planned: [7182](https://github.com/hackforla/website/issues/7182#event-13802669796) at 2024-08-08 12:52 AM PDT -roslynwythe,2024-08-08T08:50:04Z,- roslynwythe submitted pull request review: [7169](https://github.com/hackforla/website/pull/7169#pullrequestreview-2227250342) at 2024-08-08 01:50 AM PDT -roslynwythe,2024-08-09T00:30:34Z,- roslynwythe submitted pull request review: [7169](https://github.com/hackforla/website/pull/7169#pullrequestreview-2229090016) at 2024-08-08 05:30 PM PDT -roslynwythe,2024-08-11T17:13:31Z,- roslynwythe commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2282828276) at 2024-08-11 10:13 AM PDT -roslynwythe,2024-08-11T17:16:37Z,- roslynwythe commented on issue: [7160](https://github.com/hackforla/website/issues/7160#issuecomment-2282829090) at 2024-08-11 10:16 AM PDT -roslynwythe,2024-08-11T17:16:37Z,- roslynwythe closed issue as completed: [7160](https://github.com/hackforla/website/issues/7160#event-13836453691) at 2024-08-11 10:16 AM PDT -roslynwythe,2024-08-11T17:24:14Z,- roslynwythe opened issue: [7265](https://github.com/hackforla/website/issues/7265) at 2024-08-11 10:24 AM PDT -roslynwythe,2024-08-11T17:38:13Z,- roslynwythe opened issue: [7266](https://github.com/hackforla/website/issues/7266) at 2024-08-11 10:38 AM PDT -roslynwythe,2024-08-11T17:41:21Z,- roslynwythe opened issue: [7267](https://github.com/hackforla/website/issues/7267) at 2024-08-11 10:41 AM PDT -roslynwythe,2024-08-11T17:46:03Z,- roslynwythe opened issue: [7268](https://github.com/hackforla/website/issues/7268) at 2024-08-11 10:46 AM PDT -roslynwythe,2024-08-11T18:30:29Z,- roslynwythe unassigned from issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2277285082) at 2024-08-11 11:30 AM PDT -roslynwythe,2024-08-13T09:01:26Z,- roslynwythe opened issue: [7277](https://github.com/hackforla/website/issues/7277) at 2024-08-13 02:01 AM PDT -roslynwythe,2024-08-13T09:19:50Z,- roslynwythe commented on issue: [7277](https://github.com/hackforla/website/issues/7277#issuecomment-2285773727) at 2024-08-13 02:19 AM PDT -roslynwythe,2024-08-13T09:19:50Z,- roslynwythe closed issue as not planned: [7277](https://github.com/hackforla/website/issues/7277#event-13860383836) at 2024-08-13 02:19 AM PDT -roslynwythe,2024-08-14T01:32:33Z,- roslynwythe opened issue: [7281](https://github.com/hackforla/website/issues/7281) at 2024-08-13 06:32 PM PDT -roslynwythe,2024-08-14T01:39:49Z,- roslynwythe opened issue: [7282](https://github.com/hackforla/website/issues/7282) at 2024-08-13 06:39 PM PDT -roslynwythe,2024-08-14T02:33:14Z,- roslynwythe commented on pull request: [7258](https://github.com/hackforla/website/pull/7258#issuecomment-2287720394) at 2024-08-13 07:33 PM PDT -roslynwythe,2024-08-14T02:34:42Z,- roslynwythe commented on pull request: [7255](https://github.com/hackforla/website/pull/7255#issuecomment-2287721492) at 2024-08-13 07:34 PM PDT -roslynwythe,2024-08-14T02:35:21Z,- roslynwythe closed issue by PR 7234: [7174](https://github.com/hackforla/website/issues/7174#event-13873523286) at 2024-08-13 07:35 PM PDT -roslynwythe,2024-08-14T02:37:04Z,- roslynwythe commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2287723278) at 2024-08-13 07:37 PM PDT -roslynwythe,2024-08-14T03:07:08Z,- roslynwythe opened issue: [7283](https://github.com/hackforla/website/issues/7283) at 2024-08-13 08:07 PM PDT -roslynwythe,2024-08-14T04:42:40Z,- roslynwythe commented on issue: [7014](https://github.com/hackforla/website/issues/7014#issuecomment-2287843571) at 2024-08-13 09:42 PM PDT -roslynwythe,2024-08-14T04:42:40Z,- roslynwythe closed issue as not planned: [7014](https://github.com/hackforla/website/issues/7014#event-13874195431) at 2024-08-13 09:42 PM PDT -roslynwythe,2024-08-14T05:10:52Z,- roslynwythe commented on issue: [6825](https://github.com/hackforla/website/issues/6825#issuecomment-2287868609) at 2024-08-13 10:10 PM PDT -roslynwythe,2024-08-14T05:10:52Z,- roslynwythe closed issue as not planned: [6825](https://github.com/hackforla/website/issues/6825#event-13874358110) at 2024-08-13 10:10 PM PDT -roslynwythe,2024-08-14T07:28:47Z,- roslynwythe commented on issue: [6979](https://github.com/hackforla/website/issues/6979#issuecomment-2288041546) at 2024-08-14 12:28 AM PDT -roslynwythe,2024-08-14T07:28:47Z,- roslynwythe closed issue as completed: [6979](https://github.com/hackforla/website/issues/6979#event-13875530126) at 2024-08-14 12:28 AM PDT -roslynwythe,2024-08-19T18:45:44Z,- roslynwythe commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2297213514) at 2024-08-19 11:45 AM PDT -roslynwythe,2024-08-19T18:45:44Z,- roslynwythe closed issue as completed: [6842](https://github.com/hackforla/website/issues/6842#event-13934452538) at 2024-08-19 11:45 AM PDT -roslynwythe,2024-08-19T18:52:23Z,- roslynwythe submitted pull request review: [7276](https://github.com/hackforla/website/pull/7276#pullrequestreview-2246242298) at 2024-08-19 11:52 AM PDT -roslynwythe,2024-08-19T18:52:30Z,- roslynwythe closed issue by PR 7276: [7192](https://github.com/hackforla/website/issues/7192#event-13934523596) at 2024-08-19 11:52 AM PDT -roslynwythe,2024-08-19T19:17:22Z,- roslynwythe submitted pull request review: [6915](https://github.com/hackforla/website/pull/6915#pullrequestreview-2246284589) at 2024-08-19 12:17 PM PDT -roslynwythe,2024-08-19T19:17:30Z,- roslynwythe closed issue by PR 6915: [6749](https://github.com/hackforla/website/issues/6749#event-13934777477) at 2024-08-19 12:17 PM PDT -roslynwythe,2024-08-20T00:58:01Z,- roslynwythe commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2297767193) at 2024-08-19 05:58 PM PDT -roslynwythe,2024-08-21T02:28:19Z,- roslynwythe closed issue by PR 7311: [7193](https://github.com/hackforla/website/issues/7193#event-13953252554) at 2024-08-20 07:28 PM PDT -roslynwythe,2024-08-21T02:28:48Z,- roslynwythe closed issue by PR 7308: [7111](https://github.com/hackforla/website/issues/7111#event-13953258046) at 2024-08-20 07:28 PM PDT -roslynwythe,2024-08-21T02:29:19Z,- roslynwythe closed issue by PR 7302: [7247](https://github.com/hackforla/website/issues/7247#event-13953263303) at 2024-08-20 07:29 PM PDT -roslynwythe,2024-08-21T02:29:56Z,- roslynwythe closed issue by PR 7293: [7246](https://github.com/hackforla/website/issues/7246#event-13953269985) at 2024-08-20 07:29 PM PDT -roslynwythe,2024-08-21T02:49:18Z,- roslynwythe commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2300399629) at 2024-08-20 07:49 PM PDT -roslynwythe,2024-08-21T02:52:13Z,- roslynwythe reopened issue: [6878](https://github.com/hackforla/website/issues/6878#event-13010827137) at 2024-08-20 07:52 PM PDT -roslynwythe,2024-08-21T05:00:45Z,- roslynwythe reopened issue: [6248](https://github.com/hackforla/website/issues/6248#event-11894622710) at 2024-08-20 10:00 PM PDT -roslynwythe,2024-08-21T05:01:14Z,- roslynwythe commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2301084926) at 2024-08-20 10:01 PM PDT -roslynwythe,2024-08-21T05:01:53Z,- roslynwythe reopened issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2197699785) at 2024-08-20 10:01 PM PDT -roslynwythe,2024-08-21T05:02:14Z,- roslynwythe commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2301092352) at 2024-08-20 10:02 PM PDT -roslynwythe,2024-08-21T05:02:47Z,- roslynwythe commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2301096253) at 2024-08-20 10:02 PM PDT -roslynwythe,2024-08-21T05:03:39Z,- roslynwythe commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2301102020) at 2024-08-20 10:03 PM PDT -roslynwythe,2024-08-21T07:56:40Z,- roslynwythe commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2301392763) at 2024-08-21 12:56 AM PDT -roslynwythe,2024-08-23T02:10:20Z,- roslynwythe reopened issue: [6598](https://github.com/hackforla/website/issues/6598#event-12531987438) at 2024-08-22 07:10 PM PDT -roslynwythe,2024-08-23T02:12:01Z,- roslynwythe commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2306056310) at 2024-08-22 07:12 PM PDT -roslynwythe,2024-08-25T08:30:37Z,- roslynwythe closed issue by PR 7347: [7170](https://github.com/hackforla/website/issues/7170#event-14003609912) at 2024-08-25 01:30 AM PDT -roslynwythe,2024-08-26T06:56:44Z,- roslynwythe commented on issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2309472330) at 2024-08-25 11:56 PM PDT -roslynwythe,2024-08-26T06:56:44Z,- roslynwythe closed issue as completed: [7265](https://github.com/hackforla/website/issues/7265#event-14008720467) at 2024-08-25 11:56 PM PDT -roslynwythe,2024-08-26T07:03:07Z,- roslynwythe commented on issue: [7149](https://github.com/hackforla/website/issues/7149#issuecomment-2309483911) at 2024-08-26 12:03 AM PDT -roslynwythe,2024-08-26T07:03:07Z,- roslynwythe closed issue as completed: [7149](https://github.com/hackforla/website/issues/7149#event-14008797735) at 2024-08-26 12:03 AM PDT -roslynwythe,2024-08-26T22:50:39Z,- roslynwythe opened issue: [7358](https://github.com/hackforla/website/issues/7358) at 2024-08-26 03:50 PM PDT -roslynwythe,2024-08-26T22:54:25Z,- roslynwythe assigned to issue: [7358](https://github.com/hackforla/website/issues/7358#issuecomment-2311243285) at 2024-08-26 03:54 PM PDT -roslynwythe,2024-08-26T23:25:49Z,- roslynwythe opened pull request: [7359](https://github.com/hackforla/website/pull/7359) at 2024-08-26 04:25 PM PDT -roslynwythe,2024-09-02T18:05:35Z,- roslynwythe commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2325162986) at 2024-09-02 11:05 AM PDT -roslynwythe,2024-09-02T18:37:55Z,- roslynwythe opened issue: [7377](https://github.com/hackforla/website/issues/7377) at 2024-09-02 11:37 AM PDT -roslynwythe,2024-09-02T19:15:08Z,- roslynwythe unassigned from issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2058010447) at 2024-09-02 12:15 PM PDT -roslynwythe,2024-09-02T20:34:29Z,- roslynwythe commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-2325280130) at 2024-09-02 01:34 PM PDT -roslynwythe,2024-09-08T19:09:26Z,- roslynwythe unassigned from issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2215746206) at 2024-09-08 12:09 PM PDT -roslynwythe,2024-09-09T08:18:12Z,- roslynwythe submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2289168515) at 2024-09-09 01:18 AM PDT -roslynwythe,2024-09-10T00:02:16Z,- roslynwythe commented on issue: [7156](https://github.com/hackforla/website/issues/7156#issuecomment-2339356910) at 2024-09-09 05:02 PM PDT -roslynwythe,2024-09-10T00:02:16Z,- roslynwythe closed issue as completed: [7156](https://github.com/hackforla/website/issues/7156#event-14190770876) at 2024-09-09 05:02 PM PDT -roslynwythe,2024-09-10T00:55:49Z,- roslynwythe commented on issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2339404732) at 2024-09-09 05:55 PM PDT -roslynwythe,2024-09-10T00:55:49Z,- roslynwythe closed issue as completed: [7166](https://github.com/hackforla/website/issues/7166#event-14191078646) at 2024-09-09 05:55 PM PDT -roslynwythe,2024-09-13T02:19:39Z,- roslynwythe commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2347912438) at 2024-09-12 07:19 PM PDT -roslynwythe,2024-09-13T02:19:39Z,- roslynwythe closed issue as completed: [7165](https://github.com/hackforla/website/issues/7165#event-14242101898) at 2024-09-12 07:19 PM PDT -roslynwythe,2024-09-15T05:46:12Z,- roslynwythe commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2351387673) at 2024-09-14 10:46 PM PDT -roslynwythe,2024-09-15T05:46:12Z,- roslynwythe closed issue as completed: [7142](https://github.com/hackforla/website/issues/7142#event-14262300692) at 2024-09-14 10:46 PM PDT -roslynwythe,2024-09-15T07:20:34Z,- roslynwythe opened issue: [7457](https://github.com/hackforla/website/issues/7457) at 2024-09-15 12:20 AM PDT -roslynwythe,2024-09-15T07:30:58Z,- roslynwythe opened issue: [7458](https://github.com/hackforla/website/issues/7458) at 2024-09-15 12:30 AM PDT -roslynwythe,2024-09-15T07:34:55Z,- roslynwythe opened issue: [7459](https://github.com/hackforla/website/issues/7459) at 2024-09-15 12:34 AM PDT -roslynwythe,2024-09-16T04:25:02Z,- roslynwythe assigned to issue: [7011](https://github.com/hackforla/website/issues/7011#event-13494215535) at 2024-09-15 09:25 PM PDT -roslynwythe,2024-09-16T05:11:52Z,- roslynwythe commented on issue: [6677](https://github.com/hackforla/website/issues/6677#issuecomment-2352031027) at 2024-09-15 10:11 PM PDT -roslynwythe,2024-09-16T05:11:52Z,- roslynwythe closed issue as not planned: [6677](https://github.com/hackforla/website/issues/6677#event-14266644401) at 2024-09-15 10:11 PM PDT -roslynwythe,2024-09-16T18:39:18Z,- roslynwythe commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2353646596) at 2024-09-16 11:39 AM PDT -roslynwythe,2024-09-16T20:02:14Z,- roslynwythe commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2353806080) at 2024-09-16 01:02 PM PDT -roslynwythe,2024-09-16T20:16:23Z,- roslynwythe commented on issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-2353867713) at 2024-09-16 01:16 PM PDT -roslynwythe,2024-09-16T20:16:23Z,- roslynwythe closed issue as not planned: [3229](https://github.com/hackforla/website/issues/3229#event-14279709497) at 2024-09-16 01:16 PM PDT -roslynwythe,2024-09-17T00:23:20Z,- roslynwythe unassigned from issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2270113150) at 2024-09-16 05:23 PM PDT -roslynwythe,2024-09-17T00:47:19Z,- roslynwythe assigned to issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2354277475) at 2024-09-16 05:47 PM PDT -roslynwythe,2024-09-17T00:57:17Z,- roslynwythe assigned to issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2144199281) at 2024-09-16 05:57 PM PDT -roslynwythe,2024-09-17T00:57:39Z,- roslynwythe unassigned from issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2144199281) at 2024-09-16 05:57 PM PDT -roslynwythe,2024-09-17T01:02:21Z,- roslynwythe assigned to issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-1855050910) at 2024-09-16 06:02 PM PDT -roslynwythe,2024-09-18T03:32:36Z,- roslynwythe unassigned from issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2257211841) at 2024-09-17 08:32 PM PDT -roslynwythe,2024-09-21T10:44:17Z,- roslynwythe submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2319710169) at 2024-09-21 03:44 AM PDT -roslynwythe,2024-09-21T22:38:21Z,- roslynwythe commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-2365343902) at 2024-09-21 03:38 PM PDT -roslynwythe,2024-09-22T04:18:57Z,- roslynwythe submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2319965767) at 2024-09-21 09:18 PM PDT -roslynwythe,2024-09-22T04:20:18Z,- roslynwythe submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2319965869) at 2024-09-21 09:20 PM PDT -roslynwythe,2024-09-27T08:30:05Z,- roslynwythe opened issue: [7528](https://github.com/hackforla/website/issues/7528) at 2024-09-27 01:30 AM PDT -roslynwythe,2024-09-27T09:02:21Z,- roslynwythe commented on issue: [7528](https://github.com/hackforla/website/issues/7528#issuecomment-2378801955) at 2024-09-27 02:02 AM PDT -roslynwythe,2024-10-08T09:19:01Z,- roslynwythe opened issue: [7576](https://github.com/hackforla/website/issues/7576) at 2024-10-08 02:19 AM PDT -roslynwythe,2024-10-08T09:19:53Z,- roslynwythe assigned to issue: [7576](https://github.com/hackforla/website/issues/7576) at 2024-10-08 02:19 AM PDT -roslynwythe,2024-10-08T20:42:14Z,- roslynwythe unassigned from issue: [7576](https://github.com/hackforla/website/issues/7576#issuecomment-2399317571) at 2024-10-08 01:42 PM PDT -roslynwythe,2024-10-09T07:45:44Z,- roslynwythe assigned to issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2384590549) at 2024-10-09 12:45 AM PDT -roslynwythe,2024-10-10T16:54:49Z,- roslynwythe unassigned from issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-2277288129) at 2024-10-10 09:54 AM PDT -roslynwythe,2024-10-13T00:29:08Z,- roslynwythe unassigned from issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2401584474) at 2024-10-12 05:29 PM PDT -roslynwythe,2024-10-13T03:13:43Z,- roslynwythe commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2408801132) at 2024-10-12 08:13 PM PDT -roslynwythe,2024-10-13T03:27:06Z,- roslynwythe opened issue: [7587](https://github.com/hackforla/website/issues/7587) at 2024-10-12 08:27 PM PDT -roslynwythe,2024-10-15T08:49:35Z,- roslynwythe opened issue: [7594](https://github.com/hackforla/website/issues/7594) at 2024-10-15 01:49 AM PDT -roslynwythe,2024-10-15T08:54:22Z,- roslynwythe assigned to issue: [7594](https://github.com/hackforla/website/issues/7594#issuecomment-2413277466) at 2024-10-15 01:54 AM PDT -roslynwythe,2024-10-15T18:53:34Z,- roslynwythe unassigned from issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2414672007) at 2024-10-15 11:53 AM PDT -roslynwythe,2024-10-18T23:08:17Z,- roslynwythe submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2379067804) at 2024-10-18 04:08 PM PDT -roslynwythe,2024-10-18T23:34:56Z,- roslynwythe closed issue by PR 7409: [4154](https://github.com/hackforla/website/issues/4154#event-14728330041) at 2024-10-18 04:34 PM PDT -roslynwythe,2024-10-21T19:55:08Z,- roslynwythe submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2383184688) at 2024-10-21 12:55 PM PDT -roslynwythe,2024-10-21T21:38:49Z,- roslynwythe opened issue: [7617](https://github.com/hackforla/website/issues/7617) at 2024-10-21 02:38 PM PDT -roslynwythe,2024-10-21T21:45:04Z,- roslynwythe opened issue: [7618](https://github.com/hackforla/website/issues/7618) at 2024-10-21 02:45 PM PDT -roslynwythe,2024-10-21T21:45:44Z,- roslynwythe commented on issue: [7617](https://github.com/hackforla/website/issues/7617#issuecomment-2427799600) at 2024-10-21 02:45 PM PDT -roslynwythe,2024-10-21T23:07:24Z,- roslynwythe commented on issue: [7236](https://github.com/hackforla/website/issues/7236#issuecomment-2427896982) at 2024-10-21 04:07 PM PDT -roslynwythe,2024-10-21T23:26:41Z,- roslynwythe commented on issue: [6143](https://github.com/hackforla/website/issues/6143#issuecomment-2427916419) at 2024-10-21 04:26 PM PDT -roslynwythe,2024-10-22T19:41:40Z,- roslynwythe submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2386133056) at 2024-10-22 12:41 PM PDT -roslynwythe,2024-10-25T02:38:00Z,- roslynwythe commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2436693475) at 2024-10-24 07:38 PM PDT -roslynwythe,2024-10-25T02:38:01Z,- roslynwythe closed issue as completed: [7317](https://github.com/hackforla/website/issues/7317#event-14860897348) at 2024-10-24 07:38 PM PDT -roslynwythe,2024-10-25T02:42:17Z,- roslynwythe commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436696961) at 2024-10-24 07:42 PM PDT -roslynwythe,2024-11-05T00:44:07Z,- roslynwythe opened issue: [7690](https://github.com/hackforla/website/issues/7690) at 2024-11-04 04:44 PM PST -roslynwythe,2024-11-05T00:44:17Z,- roslynwythe assigned to issue: [7690](https://github.com/hackforla/website/issues/7690) at 2024-11-04 04:44 PM PST -roslynwythe,2024-11-06T19:02:14Z,- roslynwythe unassigned from issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2460552255) at 2024-11-06 11:02 AM PST -roslynwythe,2024-11-11T23:51:57Z,- roslynwythe submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2428337532) at 2024-11-11 03:51 PM PST -roslynwythe,2024-11-15T21:16:38Z,- roslynwythe closed issue by PR 7721: [7474](https://github.com/hackforla/website/issues/7474#event-15317616087) at 2024-11-15 01:16 PM PST -roslynwythe,2024-11-18T23:42:11Z,- roslynwythe opened issue: [7727](https://github.com/hackforla/website/issues/7727) at 2024-11-18 03:42 PM PST -roslynwythe,2024-11-18T23:52:56Z,- roslynwythe commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2484411631) at 2024-11-18 03:52 PM PST -roslynwythe,2024-11-18T23:57:34Z,- roslynwythe commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2484416803) at 2024-11-18 03:57 PM PST -roslynwythe,2024-11-23T17:37:02Z,- roslynwythe commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2495553207) at 2024-11-23 09:37 AM PST -roslynwythe,2024-11-23T19:36:42Z,- roslynwythe commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2495632057) at 2024-11-23 11:36 AM PST -roslynwythe,2024-11-23T19:44:41Z,- roslynwythe commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2495634063) at 2024-11-23 11:44 AM PST -roslynwythe,2024-11-24T19:57:18Z,- roslynwythe commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2496203291) at 2024-11-24 11:57 AM PST -roslynwythe,2024-11-27T00:29:19Z,- roslynwythe opened issue: [7772](https://github.com/hackforla/website/issues/7772) at 2024-11-26 04:29 PM PST -roslynwythe,2025-01-19T17:18:54Z,- roslynwythe unassigned from issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2277284985) at 2025-01-19 09:18 AM PST -roslynwythe,2025-01-21T01:24:28Z,- roslynwythe unassigned from issue: [7690](https://github.com/hackforla/website/issues/7690#issuecomment-2455991864) at 2025-01-20 05:24 PM PST -roslynwythe,2025-03-25T00:06:44Z,- roslynwythe pull request closed w/o merging: [5204](https://github.com/hackforla/website/pull/5204#event-16964822567) at 2025-03-24 05:06 PM PDT -roslynwythe,2025-03-25T00:08:11Z,- roslynwythe pull request closed w/o merging: [5577](https://github.com/hackforla/website/pull/5577#event-16964837961) at 2025-03-24 05:08 PM PDT -roslynwythe,2025-06-10T00:13:08Z,- roslynwythe unassigned from issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-2802454584) at 2025-06-09 05:13 PM PDT -roslynwythe,2025-06-10T00:13:19Z,- roslynwythe unassigned from issue: [4282](https://github.com/hackforla/website/issues/4282#issuecomment-1855215174) at 2025-06-09 05:13 PM PDT -roslynwythe,2025-06-10T00:14:58Z,- roslynwythe unassigned from issue: [4910](https://github.com/hackforla/website/issues/4910#issuecomment-1623235646) at 2025-06-09 05:14 PM PDT -roslynwythe,2025-06-10T00:14:58Z,- roslynwythe unassigned from issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-2148041144) at 2025-06-09 05:14 PM PDT -roslynwythe,2025-06-10T00:14:59Z,- roslynwythe unassigned from issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-2106039937) at 2025-06-09 05:14 PM PDT -roslynwythe,2025-06-10T00:15:00Z,- roslynwythe unassigned from issue: [6017](https://github.com/hackforla/website/issues/6017#issuecomment-1975270291) at 2025-06-09 05:15 PM PDT -roslynwythe,2025-06-10T00:15:01Z,- roslynwythe unassigned from issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2073687635) at 2025-06-09 05:15 PM PDT -roslynwythe,2025-06-10T00:15:02Z,- roslynwythe unassigned from issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2184186293) at 2025-06-09 05:15 PM PDT -roslynwythe,2025-06-10T00:15:02Z,- roslynwythe unassigned from issue: [7236](https://github.com/hackforla/website/issues/7236#issuecomment-2427896982) at 2025-06-09 05:15 PM PDT -roslynwythe,2025-06-10T00:15:02Z,- roslynwythe unassigned from issue: [7358](https://github.com/hackforla/website/issues/7358#issuecomment-2311247592) at 2025-06-09 05:15 PM PDT -roslynwythe,2025-06-10T00:15:03Z,- roslynwythe unassigned from issue: [7594](https://github.com/hackforla/website/issues/7594#issuecomment-2413289520) at 2025-06-09 05:15 PM PDT -roychan1,5781,SKILLS ISSUE -roychan1,2023-10-25T03:00:25Z,- roychan1 opened issue: [5781](https://github.com/hackforla/website/issues/5781) at 2023-10-24 08:00 PM PDT -roychan1,2023-10-25T03:00:26Z,- roychan1 assigned to issue: [5781](https://github.com/hackforla/website/issues/5781) at 2023-10-24 08:00 PM PDT -roychan1,2023-10-27T05:30:04Z,- roychan1 assigned to issue: [5754](https://github.com/hackforla/website/issues/5754) at 2023-10-26 10:30 PM PDT -roychan1,2023-10-27T05:49:02Z,- roychan1 closed issue by PR 5793: [5754](https://github.com/hackforla/website/issues/5754#event-10787516151) at 2023-10-26 10:49 PM PDT -roychan1,2023-10-27T05:49:25Z,- roychan1 commented on issue: [5754](https://github.com/hackforla/website/issues/5754#issuecomment-1782334585) at 2023-10-26 10:49 PM PDT -roychan1,2023-10-27T05:49:25Z,- roychan1 reopened issue: [5754](https://github.com/hackforla/website/issues/5754#issuecomment-1782334585) at 2023-10-26 10:49 PM PDT -roychan1,2023-10-27T06:05:40Z,- roychan1 commented on issue: [5754](https://github.com/hackforla/website/issues/5754#issuecomment-1782348400) at 2023-10-26 11:05 PM PDT -roychan1,2023-10-29T08:09:07Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1784029308) at 2023-10-29 01:09 AM PDT -roychan1,2023-10-29T21:55:08Z,- roychan1 opened pull request: [5793](https://github.com/hackforla/website/pull/5793) at 2023-10-29 02:55 PM PDT -roychan1,2023-10-31T06:00:18Z,- roychan1 pull request merged: [5793](https://github.com/hackforla/website/pull/5793#event-10816023533) at 2023-10-30 11:00 PM PDT -roychan1,2023-11-03T07:57:59Z,- roychan1 assigned to issue: [5792](https://github.com/hackforla/website/issues/5792) at 2023-11-03 12:57 AM PDT -roychan1,2023-11-03T08:00:08Z,- roychan1 commented on issue: [5792](https://github.com/hackforla/website/issues/5792#issuecomment-1792010981) at 2023-11-03 01:00 AM PDT -roychan1,2023-11-05T09:55:28Z,- roychan1 opened pull request: [5837](https://github.com/hackforla/website/pull/5837) at 2023-11-05 01:55 AM PST -roychan1,2023-11-05T21:42:35Z,- roychan1 pull request merged: [5837](https://github.com/hackforla/website/pull/5837#event-10865936602) at 2023-11-05 01:42 PM PST -roychan1,2023-11-10T07:24:45Z,- roychan1 assigned to issue: [5857](https://github.com/hackforla/website/issues/5857) at 2023-11-09 11:24 PM PST -roychan1,2023-11-10T07:26:49Z,- roychan1 commented on issue: [5857](https://github.com/hackforla/website/issues/5857#issuecomment-1805227216) at 2023-11-09 11:26 PM PST -roychan1,2023-11-10T07:30:48Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1805231209) at 2023-11-09 11:30 PM PST -roychan1,2023-11-17T08:10:38Z,- roychan1 opened pull request: [5918](https://github.com/hackforla/website/pull/5918) at 2023-11-17 12:10 AM PST -roychan1,2023-11-17T08:15:31Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1815916493) at 2023-11-17 12:15 AM PST -roychan1,2023-11-22T21:36:38Z,- roychan1 pull request merged: [5918](https://github.com/hackforla/website/pull/5918#event-11041437759) at 2023-11-22 01:36 PM PST -roychan1,2023-11-25T07:35:21Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1826241286) at 2023-11-24 11:35 PM PST -roychan1,2023-11-25T07:43:18Z,- roychan1 assigned to issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1807738053) at 2023-11-24 11:43 PM PST -roychan1,2023-11-25T07:45:06Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1826246011) at 2023-11-24 11:45 PM PST -roychan1,2023-12-06T03:21:09Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1842020951) at 2023-12-05 07:21 PM PST -roychan1,2023-12-09T10:55:08Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1848370200) at 2023-12-09 02:55 AM PST -roychan1,2023-12-15T07:12:56Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1857386422) at 2023-12-14 11:12 PM PST -roychan1,2023-12-16T08:42:50Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1858763484) at 2023-12-16 12:42 AM PST -roychan1,2024-01-01T06:37:51Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1873185786) at 2023-12-31 10:37 PM PST -roychan1,2024-01-01T06:40:24Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1873186500) at 2023-12-31 10:40 PM PST -roychan1,2024-01-13T05:06:26Z,- roychan1 assigned to issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1876123987) at 2024-01-12 09:06 PM PST -roychan1,2024-01-13T05:08:48Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1890313160) at 2024-01-12 09:08 PM PST -roychan1,2024-01-13T05:11:12Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1890313648) at 2024-01-12 09:11 PM PST -roychan1,2024-02-06T06:27:49Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1928864984) at 2024-02-05 10:27 PM PST -roychan1,2024-02-29T02:09:32Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1970269545) at 2024-02-28 06:09 PM PST -roychan1,2024-02-29T02:15:20Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1970273951) at 2024-02-28 06:15 PM PST -roychan1,2024-02-29T02:16:47Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1970275080) at 2024-02-28 06:16 PM PST -roychan1,2024-03-09T09:13:25Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1986803007) at 2024-03-09 02:13 AM PDT -roychan1,2024-03-09T09:14:34Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1986803286) at 2024-03-09 02:14 AM PDT -roychan1,2024-04-04T06:55:54Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-2036333091) at 2024-04-03 11:55 PM PDT -rpbracker,2021-10-20T03:40:03Z,- rpbracker commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-947297764) at 2021-10-19 08:40 PM PDT -ruben1s,2020-04-12T17:56:12Z,- ruben1s assigned to issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-12 10:56 AM PDT -ruben1s,2020-04-12T23:13:38Z,- ruben1s opened pull request: [433](https://github.com/hackforla/website/pull/433) at 2020-04-12 04:13 PM PDT -ruben1s,2020-04-13T00:42:07Z,- ruben1s pull request closed w/o merging: [433](https://github.com/hackforla/website/pull/433#event-3225608624) at 2020-04-12 05:42 PM PDT -ruben1s,2020-04-13T01:05:59Z,- ruben1s opened pull request: [434](https://github.com/hackforla/website/pull/434) at 2020-04-12 06:05 PM PDT -ruben1s,2020-04-13T01:06:34Z,- ruben1s closed issue by PR 434: [414](https://github.com/hackforla/website/issues/414#event-3225631662) at 2020-04-12 06:06 PM PDT -ruben1s,2020-04-13T01:06:34Z,- ruben1s pull request merged: [434](https://github.com/hackforla/website/pull/434#event-3225631666) at 2020-04-12 06:06 PM PDT -ruben1s,2020-04-13T16:08:26Z,- ruben1s assigned to issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -ruben1s,2020-04-19T18:18:16Z,- ruben1s opened pull request: [443](https://github.com/hackforla/website/pull/443) at 2020-04-19 11:18 AM PDT -ruben1s,2020-04-19T18:20:23Z,- ruben1s pull request merged: [443](https://github.com/hackforla/website/pull/443#event-3249336554) at 2020-04-19 11:20 AM PDT -ruben1s,2020-04-19T18:28:53Z,- ruben1s assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616177640) at 2020-04-19 11:28 AM PDT -ruben1s,2020-04-19T18:32:55Z,- ruben1s assigned to issue: [444](https://github.com/hackforla/website/issues/444) at 2020-04-19 11:32 AM PDT -ruben1s,2020-04-19T18:39:26Z,- ruben1s assigned to issue: [445](https://github.com/hackforla/website/issues/445) at 2020-04-19 11:39 AM PDT -ruben1s,2020-04-19T18:48:18Z,- ruben1s assigned to issue: [446](https://github.com/hackforla/website/issues/446) at 2020-04-19 11:48 AM PDT -ruben1s,2020-04-19T21:49:15Z,- ruben1s opened pull request: [448](https://github.com/hackforla/website/pull/448) at 2020-04-19 02:49 PM PDT -ruben1s,2020-04-19T22:05:15Z,- ruben1s opened pull request: [449](https://github.com/hackforla/website/pull/449) at 2020-04-19 03:05 PM PDT -ruben1s,2020-04-19T22:22:13Z,- ruben1s opened pull request: [450](https://github.com/hackforla/website/pull/450) at 2020-04-19 03:22 PM PDT -ruben1s,2020-04-19T22:32:57Z,- ruben1s closed issue by PR 449: [444](https://github.com/hackforla/website/issues/444#event-3249556633) at 2020-04-19 03:32 PM PDT -ruben1s,2020-04-19T22:32:58Z,- ruben1s pull request merged: [449](https://github.com/hackforla/website/pull/449#event-3249556634) at 2020-04-19 03:32 PM PDT -ruben1s,2020-04-19T23:13:10Z,- ruben1s opened pull request: [452](https://github.com/hackforla/website/pull/452) at 2020-04-19 04:13 PM PDT -ruben1s,2020-04-19T23:30:02Z,- ruben1s opened pull request: [453](https://github.com/hackforla/website/pull/453) at 2020-04-19 04:30 PM PDT -ruben1s,2020-04-20T18:16:23Z,- ruben1s commented on pull request: [452](https://github.com/hackforla/website/pull/452#issuecomment-616726098) at 2020-04-20 11:16 AM PDT -ruben1s,2020-04-20T19:13:21Z,- ruben1s closed issue by PR 453: [251](https://github.com/hackforla/website/issues/251#event-3253191817) at 2020-04-20 12:13 PM PDT -ruben1s,2020-04-20T19:13:22Z,- ruben1s pull request merged: [453](https://github.com/hackforla/website/pull/453#event-3253191822) at 2020-04-20 12:13 PM PDT -ruben1s,2020-04-20T19:31:06Z,- ruben1s pull request merged: [452](https://github.com/hackforla/website/pull/452#event-3253253756) at 2020-04-20 12:31 PM PDT -ruben1s,2020-04-20T19:42:01Z,- ruben1s pull request merged: [450](https://github.com/hackforla/website/pull/450#event-3253294370) at 2020-04-20 12:42 PM PDT -ruben1s,2020-04-20T19:43:51Z,- ruben1s pull request merged: [448](https://github.com/hackforla/website/pull/448#event-3253300696) at 2020-04-20 12:43 PM PDT -ruben1s,2020-04-20T21:34:43Z,- ruben1s unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616757000) at 2020-04-20 02:34 PM PDT -ruben1s,2020-04-20T23:57:43Z,- ruben1s closed issue by PR 453: [251](https://github.com/hackforla/website/issues/251#event-3253996262) at 2020-04-20 04:57 PM PDT -ruben1s,2020-04-26T18:00:10Z,- ruben1s closed issue as completed: [445](https://github.com/hackforla/website/issues/445#event-3273203580) at 2020-04-26 11:00 AM PDT -ruben1s,2020-04-26T18:01:53Z,- ruben1s assigned to issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-619446280) at 2020-04-26 11:01 AM PDT -ruben1s,2020-04-26T18:32:49Z,- ruben1s opened pull request: [467](https://github.com/hackforla/website/pull/467) at 2020-04-26 11:32 AM PDT -ruben1s,2020-04-26T20:47:50Z,- ruben1s assigned to issue: [460](https://github.com/hackforla/website/issues/460) at 2020-04-26 01:47 PM PDT -ruben1s,2020-04-26T22:59:20Z,- ruben1s opened pull request: [468](https://github.com/hackforla/website/pull/468) at 2020-04-26 03:59 PM PDT -ruben1s,2020-04-27T03:26:17Z,- ruben1s opened pull request: [471](https://github.com/hackforla/website/pull/471) at 2020-04-26 08:26 PM PDT -ruben1s,2020-04-27T21:15:44Z,- ruben1s pull request closed w/o merging: [468](https://github.com/hackforla/website/pull/468#event-3277642240) at 2020-04-27 02:15 PM PDT -ruben1s,2020-04-27T21:19:07Z,- ruben1s pull request merged: [467](https://github.com/hackforla/website/pull/467#event-3277652647) at 2020-04-27 02:19 PM PDT -ruben1s,2020-04-27T21:19:08Z,- ruben1s closed issue as completed: [432](https://github.com/hackforla/website/issues/432#event-3277652726) at 2020-04-27 02:19 PM PDT -ruben1s,2020-04-28T20:32:15Z,- ruben1s pull request closed w/o merging: [471](https://github.com/hackforla/website/pull/471#event-3282019791) at 2020-04-28 01:32 PM PDT -ruben1s,2020-05-01T19:27:32Z,- ruben1s opened pull request: [480](https://github.com/hackforla/website/pull/480) at 2020-05-01 12:27 PM PDT -ruben1s,2020-05-03T16:46:17Z,- ruben1s opened pull request: [483](https://github.com/hackforla/website/pull/483) at 2020-05-03 09:46 AM PDT -ruben1s,2020-05-03T20:16:40Z,- ruben1s pull request closed w/o merging: [483](https://github.com/hackforla/website/pull/483#event-3297794303) at 2020-05-03 01:16 PM PDT -ruben1s,2020-05-03T20:18:00Z,- ruben1s commented on pull request: [480](https://github.com/hackforla/website/pull/480#issuecomment-623174554) at 2020-05-03 01:18 PM PDT -ruben1s,2020-05-03T22:21:55Z,- ruben1s pull request closed w/o merging: [480](https://github.com/hackforla/website/pull/480#event-3297899131) at 2020-05-03 03:21 PM PDT -ruben1s,2020-05-11T18:54:43Z,- ruben1s assigned to issue: [497](https://github.com/hackforla/website/issues/497) at 2020-05-11 11:54 AM PDT -ruben1s,2020-05-11T18:59:59Z,- ruben1s assigned to issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-615547710) at 2020-05-11 11:59 AM PDT -ruben1s,2020-05-11T19:02:12Z,- ruben1s assigned to issue: [387](https://github.com/hackforla/website/issues/387) at 2020-05-11 12:02 PM PDT -ruben1s,2020-05-11T20:17:28Z,- ruben1s commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-626936022) at 2020-05-11 01:17 PM PDT -ruben1s,2020-05-12T20:43:07Z,- ruben1s commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-627582958) at 2020-05-12 01:43 PM PDT -ruben1s,2020-05-12T20:44:43Z,- ruben1s assigned to issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-627582958) at 2020-05-12 01:44 PM PDT -ruben1s,2020-05-15T17:25:05Z,- ruben1s assigned to issue: [405](https://github.com/hackforla/website/issues/405) at 2020-05-15 10:25 AM PDT -ruben1s,2020-05-15T17:28:58Z,- ruben1s opened pull request: [517](https://github.com/hackforla/website/pull/517) at 2020-05-15 10:28 AM PDT -ruben1s,2020-05-15T19:07:08Z,- ruben1s pull request closed w/o merging: [517](https://github.com/hackforla/website/pull/517#event-3342202304) at 2020-05-15 12:07 PM PDT -ruben1s,2020-05-15T19:18:53Z,- ruben1s opened pull request: [518](https://github.com/hackforla/website/pull/518) at 2020-05-15 12:18 PM PDT -ruben1s,2020-05-15T19:19:29Z,- ruben1s pull request closed w/o merging: [518](https://github.com/hackforla/website/pull/518#event-3342246863) at 2020-05-15 12:19 PM PDT -ruben1s,2020-05-15T19:20:27Z,- ruben1s reopened pull request: [518](https://github.com/hackforla/website/pull/518#event-3342246863) at 2020-05-15 12:20 PM PDT -ruben1s,2020-05-15T19:23:09Z,- ruben1s pull request closed w/o merging: [518](https://github.com/hackforla/website/pull/518#event-3342257632) at 2020-05-15 12:23 PM PDT -ruben1s,2020-05-15T19:44:16Z,- ruben1s opened pull request: [519](https://github.com/hackforla/website/pull/519) at 2020-05-15 12:44 PM PDT -ruben1s,2020-05-15T19:44:41Z,- ruben1s pull request merged: [519](https://github.com/hackforla/website/pull/519#event-3342323880) at 2020-05-15 12:44 PM PDT -ruben1s,2020-05-15T19:46:35Z,- ruben1s reopened pull request: [519](https://github.com/hackforla/website/pull/519#event-3342323880) at 2020-05-15 12:46 PM PDT -ruben1s,2020-05-15T20:16:43Z,- ruben1s closed issue by PR 519: [405](https://github.com/hackforla/website/issues/405#event-3342418206) at 2020-05-15 01:16 PM PDT -ruben1s,2020-05-15T20:16:43Z,- ruben1s pull request merged: [519](https://github.com/hackforla/website/pull/519#event-3342418214) at 2020-05-15 01:16 PM PDT -ruben1s,2020-05-15T20:28:22Z,- ruben1s opened issue: [521](https://github.com/hackforla/website/issues/521) at 2020-05-15 01:28 PM PDT -ruben1s,2020-05-15T20:28:30Z,- ruben1s assigned to issue: [521](https://github.com/hackforla/website/issues/521) at 2020-05-15 01:28 PM PDT -ruben1s,2020-05-17T01:19:40Z,- ruben1s opened pull request: [522](https://github.com/hackforla/website/pull/522) at 2020-05-16 06:19 PM PDT -ruben1s,2020-05-17T01:58:28Z,- ruben1s closed issue by PR 522: [497](https://github.com/hackforla/website/issues/497#event-3344104681) at 2020-05-16 06:58 PM PDT -ruben1s,2020-05-17T01:58:28Z,- ruben1s pull request merged: [522](https://github.com/hackforla/website/pull/522#event-3344104685) at 2020-05-16 06:58 PM PDT -ruben1s,2020-05-17T02:48:30Z,- ruben1s opened pull request: [523](https://github.com/hackforla/website/pull/523) at 2020-05-16 07:48 PM PDT -ruben1s,2020-05-17T16:53:36Z,- ruben1s pull request merged: [523](https://github.com/hackforla/website/pull/523#event-3344736259) at 2020-05-17 09:53 AM PDT -ruben1s,2020-05-20T19:19:21Z,- ruben1s opened pull request: [530](https://github.com/hackforla/website/pull/530) at 2020-05-20 12:19 PM PDT -ruben1s,2020-05-21T02:35:56Z,- ruben1s pull request merged: [530](https://github.com/hackforla/website/pull/530#event-3359011803) at 2020-05-20 07:35 PM PDT -ruben1s,2020-05-25T02:37:34Z,- ruben1s opened pull request: [539](https://github.com/hackforla/website/pull/539) at 2020-05-24 07:37 PM PDT -ruben1s,2020-05-25T15:32:32Z,- ruben1s closed issue by PR 539: [385](https://github.com/hackforla/website/issues/385#event-3370646674) at 2020-05-25 08:32 AM PDT -ruben1s,2020-05-25T15:32:32Z,- ruben1s pull request merged: [539](https://github.com/hackforla/website/pull/539#event-3370646691) at 2020-05-25 08:32 AM PDT -ruben1s,2020-05-25T15:34:35Z,- ruben1s assigned to issue: [541](https://github.com/hackforla/website/issues/541) at 2020-05-25 08:34 AM PDT -ruben1s,2020-05-26T20:10:56Z,- ruben1s opened pull request: [543](https://github.com/hackforla/website/pull/543) at 2020-05-26 01:10 PM PDT -ruben1s,2020-05-26T20:14:36Z,- ruben1s commented on pull request: [543](https://github.com/hackforla/website/pull/543#issuecomment-634254705) at 2020-05-26 01:14 PM PDT -ruben1s,2020-05-30T20:03:45Z,- ruben1s pull request merged: [543](https://github.com/hackforla/website/pull/543#event-3390018166) at 2020-05-30 01:03 PM PDT -ruben1s,2020-05-30T23:06:46Z,- ruben1s submitted pull request review: [548](https://github.com/hackforla/website/pull/548#pullrequestreview-421449493) at 2020-05-30 04:06 PM PDT -ruben1s,2020-05-31T17:48:51Z,- ruben1s assigned to issue: [550](https://github.com/hackforla/website/issues/550) at 2020-05-31 10:48 AM PDT -ruben1s,2020-06-07T18:26:43Z,- ruben1s assigned to issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636991537) at 2020-06-07 11:26 AM PDT -ruben1s,2020-06-08T00:48:21Z,- ruben1s opened pull request: [572](https://github.com/hackforla/website/pull/572) at 2020-06-07 05:48 PM PDT -ruben1s,2020-06-12T04:37:06Z,- ruben1s pull request merged: [572](https://github.com/hackforla/website/pull/572#event-3436866867) at 2020-06-11 09:37 PM PDT -ruben1s,2020-06-24T02:51:30Z,- ruben1s assigned to issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-647153128) at 2020-06-23 07:51 PM PDT -ruben1s,2020-06-24T03:15:40Z,- ruben1s assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647152171) at 2020-06-23 08:15 PM PDT -ruben1s,2020-06-24T17:07:51Z,- ruben1s submitted pull request review: [584](https://github.com/hackforla/website/pull/584#pullrequestreview-436843553) at 2020-06-24 10:07 AM PDT -ruben1s,2020-06-24T18:33:06Z,- ruben1s commented on pull request: [584](https://github.com/hackforla/website/pull/584#issuecomment-648993158) at 2020-06-24 11:33 AM PDT -ruben1s,2020-06-24T18:36:52Z,- ruben1s opened pull request: [585](https://github.com/hackforla/website/pull/585) at 2020-06-24 11:36 AM PDT -ruben1s,2020-06-24T18:37:01Z,- ruben1s pull request merged: [585](https://github.com/hackforla/website/pull/585#event-3478801274) at 2020-06-24 11:37 AM PDT -ruben1s,2020-06-24T19:59:45Z,- ruben1s submitted pull request review: [586](https://github.com/hackforla/website/pull/586#pullrequestreview-436963359) at 2020-06-24 12:59 PM PDT -ruben1s,2020-06-28T17:21:44Z,- ruben1s commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-650796461) at 2020-06-28 10:21 AM PDT -ruben1s,2020-06-28T18:07:21Z,- ruben1s unassigned from issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-650801594) at 2020-06-28 11:07 AM PDT -ruben1s,2020-06-28T18:18:10Z,- ruben1s assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647158781) at 2020-06-28 11:18 AM PDT -ruben1s,2020-07-05T17:01:33Z,- ruben1s commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-653912741) at 2020-07-05 10:01 AM PDT -ruben1s,2020-07-12T17:21:27Z,- ruben1s commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-657251718) at 2020-07-12 10:21 AM PDT -ruben1s,2020-07-12T18:46:08Z,- ruben1s commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-657260253) at 2020-07-12 11:46 AM PDT -ruben1s,2020-07-12T19:15:44Z,- ruben1s opened pull request: [606](https://github.com/hackforla/website/pull/606) at 2020-07-12 12:15 PM PDT -ruben1s,2020-07-12T20:45:37Z,- ruben1s commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-657272899) at 2020-07-12 01:45 PM PDT -ruben1s,2020-07-13T16:17:18Z,- ruben1s pull request merged: [606](https://github.com/hackforla/website/pull/606#event-3540293457) at 2020-07-13 09:17 AM PDT -ruben1s,2020-07-19T16:27:25Z,- ruben1s unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653918886) at 2020-07-19 09:27 AM PDT -ruben1s,2020-07-19T17:53:47Z,- ruben1s assigned to issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-653928416) at 2020-07-19 10:53 AM PDT -ruben1s,2020-07-26T02:40:19Z,- ruben1s commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-663928174) at 2020-07-25 07:40 PM PDT -ruben1s,2020-07-26T19:43:56Z,- ruben1s unassigned from issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-626936022) at 2020-07-26 12:43 PM PDT -ruben1s,2020-07-26T19:48:59Z,- ruben1s unassigned from issue: [387](https://github.com/hackforla/website/issues/387) at 2020-07-26 12:48 PM PDT -ruben1s,2020-08-02T16:45:00Z,- ruben1s commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-667697062) at 2020-08-02 09:45 AM PDT -ruben1s,2020-08-05T04:08:17Z,- ruben1s opened pull request: [672](https://github.com/hackforla/website/pull/672) at 2020-08-04 09:08 PM PDT -ruben1s,2020-08-07T00:20:15Z,- ruben1s pull request merged: [672](https://github.com/hackforla/website/pull/672#event-3631282123) at 2020-08-06 05:20 PM PDT -ruben1s,2020-08-07T21:16:21Z,- ruben1s assigned to issue: [674](https://github.com/hackforla/website/issues/674) at 2020-08-07 02:16 PM PDT -ruben1s,2020-08-09T01:11:19Z,- ruben1s opened pull request: [676](https://github.com/hackforla/website/pull/676) at 2020-08-08 06:11 PM PDT -ruben1s,2020-08-09T01:12:50Z,- ruben1s submitted pull request review: [673](https://github.com/hackforla/website/pull/673#pullrequestreview-463835813) at 2020-08-08 06:12 PM PDT -ruben1s,2020-08-09T17:02:25Z,- ruben1s submitted pull request review: [677](https://github.com/hackforla/website/pull/677#pullrequestreview-463888973) at 2020-08-09 10:02 AM PDT -ruben1s,2020-08-09T19:52:32Z,- ruben1s opened pull request: [679](https://github.com/hackforla/website/pull/679) at 2020-08-09 12:52 PM PDT -ruben1s,2020-08-09T19:55:27Z,- ruben1s commented on issue: [674](https://github.com/hackforla/website/issues/674#issuecomment-671094080) at 2020-08-09 12:55 PM PDT -ruben1s,2020-08-12T02:32:05Z,- ruben1s pull request closed w/o merging: [676](https://github.com/hackforla/website/pull/676#event-3645717988) at 2020-08-11 07:32 PM PDT -ruben1s,2020-08-12T04:08:52Z,- ruben1s pull request merged: [679](https://github.com/hackforla/website/pull/679#event-3645887052) at 2020-08-11 09:08 PM PDT -ruben1s,2020-08-23T05:19:48Z,- ruben1s commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-678730983) at 2020-08-22 10:19 PM PDT -ruben1s,2020-09-03T01:18:49Z,- ruben1s commented on pull request: [714](https://github.com/hackforla/website/pull/714#issuecomment-686174669) at 2020-09-02 06:18 PM PDT -ruben1s,2020-09-04T17:46:16Z,- ruben1s submitted pull request review: [714](https://github.com/hackforla/website/pull/714#pullrequestreview-482843618) at 2020-09-04 10:46 AM PDT -ruben1s,2020-09-05T22:55:46Z,- ruben1s commented on pull request: [714](https://github.com/hackforla/website/pull/714#issuecomment-687673349) at 2020-09-05 03:55 PM PDT -ruben1s,2020-09-06T04:55:32Z,- ruben1s opened pull request: [718](https://github.com/hackforla/website/pull/718) at 2020-09-05 09:55 PM PDT -ruben1s,2020-09-06T04:59:35Z,- ruben1s commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-687701218) at 2020-09-05 09:59 PM PDT -ruben1s,2020-09-06T18:30:09Z,- ruben1s opened pull request: [719](https://github.com/hackforla/website/pull/719) at 2020-09-06 11:30 AM PDT -ruben1s,2020-09-06T18:33:54Z,- ruben1s pull request closed w/o merging: [719](https://github.com/hackforla/website/pull/719#event-3734339647) at 2020-09-06 11:33 AM PDT -ruben1s,2020-09-06T18:36:26Z,- ruben1s commented on pull request: [718](https://github.com/hackforla/website/pull/718#issuecomment-687865207) at 2020-09-06 11:36 AM PDT -ruben1s,2020-09-12T23:48:40Z,- ruben1s commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-691574650) at 2020-09-12 04:48 PM PDT -ruben1s,2020-09-12T23:50:01Z,- ruben1s submitted pull request review: [726](https://github.com/hackforla/website/pull/726#pullrequestreview-487263368) at 2020-09-12 04:50 PM PDT -ruben1s,2020-09-13T04:45:11Z,- ruben1s opened pull request: [728](https://github.com/hackforla/website/pull/728) at 2020-09-12 09:45 PM PDT -ruben1s,2020-09-13T04:50:04Z,- ruben1s commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-691612343) at 2020-09-12 09:50 PM PDT -ruben1s,2020-09-13T17:41:59Z,- ruben1s commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-691701385) at 2020-09-13 10:41 AM PDT -ruben1s,2020-09-14T00:57:20Z,- ruben1s pull request closed w/o merging: [718](https://github.com/hackforla/website/pull/718#event-3760987267) at 2020-09-13 05:57 PM PDT -ruben1s,2020-09-14T01:53:53Z,- ruben1s commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-691767694) at 2020-09-13 06:53 PM PDT -ruben1s,2020-09-16T19:38:05Z,- ruben1s assigned to issue: [735](https://github.com/hackforla/website/issues/735) at 2020-09-16 12:38 PM PDT -ruben1s,2020-09-16T23:36:08Z,- ruben1s commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-693721627) at 2020-09-16 04:36 PM PDT -ruben1s,2020-09-18T20:55:31Z,- ruben1s commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-695081937) at 2020-09-18 01:55 PM PDT -ruben1s,2020-09-19T03:36:55Z,- ruben1s commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-695158243) at 2020-09-18 08:36 PM PDT -ruben1s,2020-09-25T00:41:24Z,- ruben1s submitted pull request review: [741](https://github.com/hackforla/website/pull/741#pullrequestreview-496039530) at 2020-09-24 05:41 PM PDT -ruben1s,2020-09-26T23:23:45Z,- ruben1s commented on pull request: [728](https://github.com/hackforla/website/pull/728#issuecomment-699560198) at 2020-09-26 04:23 PM PDT -ruben1s,2020-09-27T15:33:42Z,- ruben1s pull request closed w/o merging: [728](https://github.com/hackforla/website/pull/728#event-3811760852) at 2020-09-27 08:33 AM PDT -ruben1s,2020-09-27T18:12:43Z,- ruben1s assigned to issue: [705](https://github.com/hackforla/website/issues/705#issuecomment-685964118) at 2020-09-27 11:12 AM PDT -ruben1s,2020-10-03T23:04:01Z,- ruben1s submitted pull request review: [757](https://github.com/hackforla/website/pull/757#pullrequestreview-501579166) at 2020-10-03 04:04 PM PDT -ruben1s,2020-10-09T19:01:07Z,- ruben1s commented on issue: [705](https://github.com/hackforla/website/issues/705#issuecomment-706352327) at 2020-10-09 12:01 PM PDT -ruben1s,2020-10-09T19:01:47Z,- ruben1s commented on issue: [705](https://github.com/hackforla/website/issues/705#issuecomment-706352627) at 2020-10-09 12:01 PM PDT -ruben1s,2020-10-11T17:50:19Z,- ruben1s assigned to issue: [733](https://github.com/hackforla/website/issues/733) at 2020-10-11 10:50 AM PDT -ruben1s,2020-10-11T20:58:33Z,- ruben1s opened pull request: [776](https://github.com/hackforla/website/pull/776) at 2020-10-11 01:58 PM PDT -ruben1s,2020-10-11T21:03:55Z,- ruben1s pull request closed w/o merging: [776](https://github.com/hackforla/website/pull/776#event-3864086015) at 2020-10-11 02:03 PM PDT -ruben1s,2020-10-11T21:20:06Z,- ruben1s opened pull request: [777](https://github.com/hackforla/website/pull/777) at 2020-10-11 02:20 PM PDT -ruben1s,2020-10-11T21:20:44Z,- ruben1s pull request closed w/o merging: [777](https://github.com/hackforla/website/pull/777#event-3864098611) at 2020-10-11 02:20 PM PDT -ruben1s,2020-10-11T21:51:44Z,- ruben1s opened pull request: [778](https://github.com/hackforla/website/pull/778) at 2020-10-11 02:51 PM PDT -ruben1s,2020-10-14T02:39:19Z,- ruben1s pull request closed w/o merging: [778](https://github.com/hackforla/website/pull/778#event-3874424339) at 2020-10-13 07:39 PM PDT -ruben1s,2020-10-15T01:34:02Z,- ruben1s opened pull request: [781](https://github.com/hackforla/website/pull/781) at 2020-10-14 06:34 PM PDT -ruben1s,2020-10-15T23:07:07Z,- ruben1s commented on issue: [733](https://github.com/hackforla/website/issues/733#issuecomment-709635630) at 2020-10-15 04:07 PM PDT -ruben1s,2020-10-16T01:07:51Z,- ruben1s pull request merged: [781](https://github.com/hackforla/website/pull/781#event-3884144929) at 2020-10-15 06:07 PM PDT -ruben1s,2020-10-18T17:38:40Z,- ruben1s assigned to issue: [725](https://github.com/hackforla/website/issues/725) at 2020-10-18 10:38 AM PDT -ruben1s,2020-10-21T01:32:43Z,- ruben1s opened pull request: [792](https://github.com/hackforla/website/pull/792) at 2020-10-20 06:32 PM PDT -ruben1s,2020-10-22T21:19:41Z,- ruben1s pull request merged: [792](https://github.com/hackforla/website/pull/792#event-3911190688) at 2020-10-22 02:19 PM PDT -ruben1s,2020-11-12T23:36:40Z,- ruben1s closed issue as completed: [460](https://github.com/hackforla/website/issues/460#event-3991128126) at 2020-11-12 03:36 PM PST -ruben1s,2021-01-01T00:59:59Z,- ruben1s submitted pull request review: [900](https://github.com/hackforla/website/pull/900#pullrequestreview-560563706) at 2020-12-31 04:59 PM PST -ruben1s,2021-01-01T01:52:28Z,- ruben1s submitted pull request review: [899](https://github.com/hackforla/website/pull/899#pullrequestreview-560565399) at 2020-12-31 05:52 PM PST -ruben1s,2021-01-01T01:53:01Z,- ruben1s commented on pull request: [899](https://github.com/hackforla/website/pull/899#issuecomment-753239907) at 2020-12-31 05:53 PM PST -ruben1s,2021-01-01T01:53:05Z,- ruben1s closed issue by PR 899: [892](https://github.com/hackforla/website/issues/892#event-4160540233) at 2020-12-31 05:53 PM PST -RuchiUp,7974,SKILLS ISSUE -RuchiUp,2025-03-04T04:23:27Z,- RuchiUp opened issue: [7974](https://github.com/hackforla/website/issues/7974) at 2025-03-03 08:23 PM PST -RuchiUp,2025-03-04T04:23:28Z,- RuchiUp assigned to issue: [7974](https://github.com/hackforla/website/issues/7974) at 2025-03-03 08:23 PM PST -Ruizmichael,6529,SKILLS ISSUE -Ruizmichael,2024-03-27T03:23:05Z,- Ruizmichael opened issue: [6529](https://github.com/hackforla/website/issues/6529) at 2024-03-26 08:23 PM PDT -Ruizmichael,2024-03-27T03:23:06Z,- Ruizmichael assigned to issue: [6529](https://github.com/hackforla/website/issues/6529) at 2024-03-26 08:23 PM PDT -Ruizmichael,2024-03-27T03:23:17Z,- Ruizmichael unassigned from issue: [6529](https://github.com/hackforla/website/issues/6529) at 2024-03-26 08:23 PM PDT -Ruizmichael,2024-03-28T05:46:52Z,- Ruizmichael assigned to issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2021853434) at 2024-03-27 10:46 PM PDT -Ruizmichael,2024-04-05T21:34:05Z,- Ruizmichael assigned to issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2035339916) at 2024-04-05 02:34 PM PDT -Ruizmichael,2024-04-05T21:57:57Z,- Ruizmichael commented on issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2040682142) at 2024-04-05 02:57 PM PDT -Ruizmichael,2024-04-05T22:01:39Z,- Ruizmichael commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2040685269) at 2024-04-05 03:01 PM PDT -Ruizmichael,2024-04-05T22:12:32Z,- Ruizmichael opened pull request: [6580](https://github.com/hackforla/website/pull/6580) at 2024-04-05 03:12 PM PDT -Ruizmichael,2024-04-11T23:23:10Z,- Ruizmichael pull request merged: [6580](https://github.com/hackforla/website/pull/6580#event-12442673955) at 2024-04-11 04:23 PM PDT -Ruizmichael,2024-04-16T23:21:00Z,- Ruizmichael assigned to issue: [6182](https://github.com/hackforla/website/issues/6182) at 2024-04-16 04:21 PM PDT -Ruizmichael,2024-04-17T21:45:09Z,- Ruizmichael commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2062460052) at 2024-04-17 02:45 PM PDT -Ruizmichael,2024-04-19T23:40:46Z,- Ruizmichael commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2067396363) at 2024-04-19 04:40 PM PDT -Ruizmichael,2024-04-21T00:39:25Z,- Ruizmichael opened pull request: [6694](https://github.com/hackforla/website/pull/6694) at 2024-04-20 05:39 PM PDT -Ruizmichael,2024-04-21T00:45:31Z,- Ruizmichael commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2067828217) at 2024-04-20 05:45 PM PDT -Ruizmichael,2024-04-22T01:46:19Z,- Ruizmichael pull request merged: [6694](https://github.com/hackforla/website/pull/6694#event-12552820920) at 2024-04-21 06:46 PM PDT -Ruizmichael,2024-05-06T16:40:46Z,- Ruizmichael closed issue as completed: [6529](https://github.com/hackforla/website/issues/6529#event-12717524420) at 2024-05-06 09:40 AM PDT -Ruizmichael,2024-06-02T22:20:56Z,- Ruizmichael assigned to issue: [6581](https://github.com/hackforla/website/issues/6581) at 2024-06-02 03:20 PM PDT -Ruizmichael,2024-06-02T22:28:04Z,- Ruizmichael commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2144041554) at 2024-06-02 03:28 PM PDT -Ruizmichael,2024-06-06T14:51:33Z,- Ruizmichael commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2152738651) at 2024-06-06 07:51 AM PDT -Ruizmichael,2024-06-28T16:13:12Z,- Ruizmichael unassigned from issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2195396302) at 2024-06-28 09:13 AM PDT -RunshengSarinaLiu,2024-10-14T01:17:52Z,- RunshengSarinaLiu commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2409583597) at 2024-10-13 06:17 PM PDT -RunshengSarinaLiu,2024-11-07T17:33:07Z,- RunshengSarinaLiu opened issue: [7709](https://github.com/hackforla/website/issues/7709) at 2024-11-07 09:33 AM PST -RyanCahela,2999,SKILLS ISSUE -RyanCahela,2019-10-08T02:04:40Z,- RyanCahela assigned to issue: [150](https://github.com/hackforla/website/issues/150) at 2019-10-07 07:04 PM PDT -RyanCahela,2019-10-09T02:14:13Z,- RyanCahela opened pull request: [154](https://github.com/hackforla/website/pull/154) at 2019-10-08 07:14 PM PDT -RyanCahela,2019-11-12T03:18:34Z,- RyanCahela unassigned from issue: [150](https://github.com/hackforla/website/issues/150) at 2019-11-11 07:18 PM PST -RyanCahela,2019-12-25T02:59:51Z,- RyanCahela closed issue by PR 154: [150](https://github.com/hackforla/website/issues/150#event-2907491093) at 2019-12-24 06:59 PM PST -RyanCahela,2019-12-25T02:59:51Z,- RyanCahela pull request merged: [154](https://github.com/hackforla/website/pull/154#event-2907491097) at 2019-12-24 06:59 PM PST -RyanCahela,2022-03-22T04:24:56Z,- RyanCahela opened issue: [2999](https://github.com/hackforla/website/issues/2999) at 2022-03-21 09:24 PM PDT -RyanCahela,2022-03-23T03:04:01Z,- RyanCahela assigned to issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1074712112) at 2022-03-22 08:04 PM PDT -RyanCahela,2022-03-23T17:48:26Z,- RyanCahela assigned to issue: [2911](https://github.com/hackforla/website/issues/2911#issuecomment-1055957771) at 2022-03-23 10:48 AM PDT -RyanCahela,2022-03-23T17:53:00Z,- RyanCahela commented on issue: [2911](https://github.com/hackforla/website/issues/2911#issuecomment-1076641449) at 2022-03-23 10:53 AM PDT -RyanCahela,2022-03-23T21:05:38Z,- RyanCahela opened pull request: [3006](https://github.com/hackforla/website/pull/3006) at 2022-03-23 02:05 PM PDT -RyanCahela,2022-03-23T21:28:50Z,- RyanCahela commented on pull request: [3006](https://github.com/hackforla/website/pull/3006#issuecomment-1076838416) at 2022-03-23 02:28 PM PDT -RyanCahela,2022-03-24T02:59:51Z,- RyanCahela pull request merged: [3006](https://github.com/hackforla/website/pull/3006#event-6296102900) at 2022-03-23 07:59 PM PDT -RyanCahela,2022-03-24T18:07:46Z,- RyanCahela assigned to issue: [2089](https://github.com/hackforla/website/issues/2089#issuecomment-903313941) at 2022-03-24 11:07 AM PDT -RyanCahela,2022-03-24T18:12:04Z,- RyanCahela commented on issue: [2089](https://github.com/hackforla/website/issues/2089#issuecomment-1077905402) at 2022-03-24 11:12 AM PDT -RyanCahela,2022-03-24T19:37:21Z,- RyanCahela opened pull request: [3008](https://github.com/hackforla/website/pull/3008) at 2022-03-24 12:37 PM PDT -RyanCahela,2022-03-27T19:22:53Z,- RyanCahela commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1080002742) at 2022-03-27 12:22 PM PDT -RyanCahela,2022-03-30T22:29:35Z,- RyanCahela commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1083697968) at 2022-03-30 03:29 PM PDT -RyanCahela,2022-03-31T02:05:58Z,- RyanCahela pull request merged: [3008](https://github.com/hackforla/website/pull/3008#event-6340106138) at 2022-03-30 07:05 PM PDT -RyanCahela,2022-04-12T20:14:14Z,- RyanCahela assigned to issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1086560598) at 2022-04-12 01:14 PM PDT -RyanCahela,2022-04-12T20:14:41Z,- RyanCahela unassigned from issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1086560598) at 2022-04-12 01:14 PM PDT -RyanCahela,2022-04-12T20:16:47Z,- RyanCahela assigned to issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1086560598) at 2022-04-12 01:16 PM PDT -RyanCahela,2022-04-12T20:18:11Z,- RyanCahela commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1097175379) at 2022-04-12 01:18 PM PDT -RyanCahela,2022-04-12T21:41:58Z,- RyanCahela opened pull request: [3046](https://github.com/hackforla/website/pull/3046) at 2022-04-12 02:41 PM PDT -RyanCahela,2022-04-14T04:02:04Z,- RyanCahela pull request merged: [3046](https://github.com/hackforla/website/pull/3046#event-6431659012) at 2022-04-13 09:02 PM PDT -RyanCahela,2022-04-20T21:59:54Z,- RyanCahela commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1104493989) at 2022-04-20 02:59 PM PDT -RyanCahela,2022-04-20T22:04:14Z,- RyanCahela assigned to issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086903359) at 2022-04-20 03:04 PM PDT -RyanCahela,2022-04-20T22:05:38Z,- RyanCahela commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104497608) at 2022-04-20 03:05 PM PDT -RyanCahela,2022-04-20T22:18:00Z,- RyanCahela commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104513498) at 2022-04-20 03:18 PM PDT -RyanCahela,2022-04-20T22:19:34Z,- RyanCahela unassigned from issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104513498) at 2022-04-20 03:19 PM PDT -RyanCahela,2022-04-20T22:27:07Z,- RyanCahela assigned to issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1090993404) at 2022-04-20 03:27 PM PDT -RyanCahela,2022-04-20T22:27:51Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1104518831) at 2022-04-20 03:27 PM PDT -RyanCahela,2022-04-22T20:56:20Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1106854869) at 2022-04-22 01:56 PM PDT -RyanCahela,2022-04-28T17:41:21Z,- RyanCahela commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1112489348) at 2022-04-28 10:41 AM PDT -RyanCahela,2022-04-28T20:05:40Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1112607370) at 2022-04-28 01:05 PM PDT -RyanCahela,2022-05-01T16:33:13Z,- RyanCahela submitted pull request review: [3083](https://github.com/hackforla/website/pull/3083#pullrequestreview-958609137) at 2022-05-01 09:33 AM PDT -RyanCahela,2022-05-05T17:45:19Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1118875181) at 2022-05-05 10:45 AM PDT -RyanCahela,2022-05-12T20:01:11Z,- RyanCahela opened pull request: [3134](https://github.com/hackforla/website/pull/3134) at 2022-05-12 01:01 PM PDT -RyanCahela,2022-05-13T23:41:56Z,- RyanCahela commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126580728) at 2022-05-13 04:41 PM PDT -RyanCahela,2022-05-14T16:09:23Z,- RyanCahela pull request merged: [3134](https://github.com/hackforla/website/pull/3134#event-6610193603) at 2022-05-14 09:09 AM PDT -RyanCahela,2022-06-30T19:02:49Z,- RyanCahela commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1171572229) at 2022-06-30 12:02 PM PDT -RyanCahela,2022-07-02T23:00:37Z,- RyanCahela closed issue as completed: [2999](https://github.com/hackforla/website/issues/2999#event-6922628162) at 2022-07-02 04:00 PM PDT -RyanCahela,2022-07-02T23:14:17Z,- RyanCahela assigned to issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1154386071) at 2022-07-02 04:14 PM PDT -RyanCahela,2022-07-02T23:17:41Z,- RyanCahela commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1172977044) at 2022-07-02 04:17 PM PDT -RyanCahela,2022-07-05T20:03:32Z,- RyanCahela opened pull request: [3330](https://github.com/hackforla/website/pull/3330) at 2022-07-05 01:03 PM PDT -RyanCahela,2022-07-09T01:09:02Z,- RyanCahela pull request merged: [3330](https://github.com/hackforla/website/pull/3330#event-6963248410) at 2022-07-08 06:09 PM PDT -ryanfchase,2023-10-26T07:50:01Z,- ryanfchase opened issue: [5786](https://github.com/hackforla/website/issues/5786) at 2023-10-26 12:50 AM PDT -ryanfchase,2024-01-09T00:26:55Z,- ryanfchase commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1882047104) at 2024-01-08 04:26 PM PST -ryanfchase,2025-01-15T03:35:25Z,- ryanfchase opened issue: [7831](https://github.com/hackforla/website/issues/7831) at 2025-01-14 07:35 PM PST -ryanfkeller,8136,SKILLS ISSUE -ryanfkeller,2025-05-14T03:10:09Z,- ryanfkeller opened issue: [8136](https://github.com/hackforla/website/issues/8136) at 2025-05-13 08:10 PM PDT -ryanfkeller,2025-05-14T03:16:20Z,- ryanfkeller assigned to issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2878505946) at 2025-05-13 08:16 PM PDT -ryanfkeller,2025-05-14T03:29:00Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2878524986) at 2025-05-13 08:29 PM PDT -ryanfkeller,2025-05-14T21:07:12Z,- ryanfkeller assigned to issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-05-14 02:07 PM PDT -ryanfkeller,2025-05-14T21:26:59Z,- ryanfkeller commented on issue: [7782](https://github.com/hackforla/website/issues/7782#issuecomment-2881622161) at 2025-05-14 02:26 PM PDT -ryanfkeller,2025-05-14T21:48:44Z,- ryanfkeller opened pull request: [8140](https://github.com/hackforla/website/pull/8140) at 2025-05-14 02:48 PM PDT -ryanfkeller,2025-05-14T21:54:43Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2881675311) at 2025-05-14 02:54 PM PDT -ryanfkeller,2025-05-15T00:22:56Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2881883839) at 2025-05-14 05:22 PM PDT -ryanfkeller,2025-05-16T02:49:18Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2885497498) at 2025-05-15 07:49 PM PDT -ryanfkeller,2025-05-20T23:47:30Z,- ryanfkeller commented on issue: [7782](https://github.com/hackforla/website/issues/7782#issuecomment-2896076566) at 2025-05-20 04:47 PM PDT -ryanfkeller,2025-05-20T23:48:00Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2896077056) at 2025-05-20 04:48 PM PDT -ryanfkeller,2025-05-21T02:24:19Z,- ryanfkeller pull request merged: [8140](https://github.com/hackforla/website/pull/8140#event-17744370904) at 2025-05-20 07:24 PM PDT -ryanfkeller,2025-05-21T16:53:20Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2898622720) at 2025-05-21 09:53 AM PDT -ryanfkeller,2025-05-21T16:55:50Z,- ryanfkeller assigned to issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889135248) at 2025-05-21 09:55 AM PDT -ryanfkeller,2025-05-21T16:59:23Z,- ryanfkeller commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2898636590) at 2025-05-21 09:59 AM PDT -ryanfkeller,2025-05-21T17:04:24Z,- ryanfkeller commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2898648449) at 2025-05-21 10:04 AM PDT -ryanfkeller,2025-05-23T04:19:48Z,- ryanfkeller submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2863108426) at 2025-05-22 09:19 PM PDT -ryanfkeller,2025-05-24T22:11:14Z,- ryanfkeller submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2866529776) at 2025-05-24 03:11 PM PDT -ryanfkeller,2025-05-25T17:06:46Z,- ryanfkeller opened pull request: [8159](https://github.com/hackforla/website/pull/8159) at 2025-05-25 10:06 AM PDT -ryanfkeller,2025-05-27T20:21:43Z,- ryanfkeller commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2913920054) at 2025-05-27 01:21 PM PDT -ryanfkeller,2025-05-27T20:33:02Z,- ryanfkeller submitted pull request review: [8160](https://github.com/hackforla/website/pull/8160#pullrequestreview-2872550440) at 2025-05-27 01:33 PM PDT -ryanfkeller,2025-05-27T21:10:08Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2914057462) at 2025-05-27 02:10 PM PDT -ryanfkeller,2025-05-28T01:55:29Z,- ryanfkeller pull request merged: [8159](https://github.com/hackforla/website/pull/8159#event-17841462430) at 2025-05-27 06:55 PM PDT -ryanfkeller,2025-05-28T16:12:26Z,- ryanfkeller commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2916895799) at 2025-05-28 09:12 AM PDT -ryanfkeller,2025-05-28T21:31:56Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2917665884) at 2025-05-28 02:31 PM PDT -ryanfkeller,2025-05-28T21:37:39Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2917676593) at 2025-05-28 02:37 PM PDT -ryanfkeller,2025-05-30T22:59:29Z,- ryanfkeller commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2923685656) at 2025-05-30 03:59 PM PDT -ryanfkeller,2025-05-30T23:19:51Z,- ryanfkeller submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2882860391) at 2025-05-30 04:19 PM PDT -ryanfkeller,2025-05-31T00:46:17Z,- ryanfkeller submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2882966380) at 2025-05-30 05:46 PM PDT -ryanfkeller,2025-06-04T17:23:40Z,- ryanfkeller submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2897534279) at 2025-06-04 10:23 AM PDT -ryanfkeller,2025-06-04T17:25:32Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940826138) at 2025-06-04 10:25 AM PDT -ryanfkeller,2025-06-04T17:42:56Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940868251) at 2025-06-04 10:42 AM PDT -ryanfkeller,2025-06-04T17:44:07Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940870990) at 2025-06-04 10:44 AM PDT -ryanfkeller,2025-06-04T17:44:51Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940872762) at 2025-06-04 10:44 AM PDT -ryanfkeller,2025-06-04T17:46:01Z,- ryanfkeller assigned to issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2767880222) at 2025-06-04 10:46 AM PDT -ryanfkeller,2025-06-04T17:48:20Z,- ryanfkeller commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2940881628) at 2025-06-04 10:48 AM PDT -ryanfkeller,2025-06-05T23:27:35Z,- ryanfkeller opened pull request: [8172](https://github.com/hackforla/website/pull/8172) at 2025-06-05 04:27 PM PDT -ryanfkeller,2025-06-08T16:44:36Z,- ryanfkeller pull request merged: [8172](https://github.com/hackforla/website/pull/8172#event-18045546490) at 2025-06-08 09:44 AM PDT -ryanfkeller,2025-06-10T22:04:24Z,- ryanfkeller submitted pull request review: [8177](https://github.com/hackforla/website/pull/8177#pullrequestreview-2915145767) at 2025-06-10 03:04 PM PDT -ryanfkeller,2025-06-10T22:12:41Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2960699383) at 2025-06-10 03:12 PM PDT -ryanfkeller,2025-06-12T15:53:49Z,- ryanfkeller opened issue: [8183](https://github.com/hackforla/website/issues/8183) at 2025-06-12 08:53 AM PDT -ryanfkeller,2025-06-13T02:17:19Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2968777986) at 2025-06-12 07:17 PM PDT -ryanfkeller,2025-06-13T19:28:19Z,- ryanfkeller assigned to issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2767603092) at 2025-06-13 12:28 PM PDT -ryanfkeller,2025-06-13T19:30:35Z,- ryanfkeller commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2971427756) at 2025-06-13 12:30 PM PDT -ryanfkeller,2025-06-17T01:33:39Z,- ryanfkeller opened issue: [8185](https://github.com/hackforla/website/issues/8185) at 2025-06-16 06:33 PM PDT -ryanfkeller,2025-06-17T01:38:00Z,- ryanfkeller commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2978649177) at 2025-06-16 06:38 PM PDT -ryanfkeller,2025-06-20T16:50:29Z,- ryanfkeller commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992248429) at 2025-06-20 09:50 AM PDT -ryanfkeller,2025-06-20T17:04:51Z,- ryanfkeller submitted pull request review: [8173](https://github.com/hackforla/website/pull/8173#pullrequestreview-2946836009) at 2025-06-20 10:04 AM PDT -ryanfkeller,2025-06-20T17:27:14Z,- ryanfkeller commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2992340204) at 2025-06-20 10:27 AM PDT -ryanfkeller,2025-06-20T17:32:38Z,- ryanfkeller commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992349614) at 2025-06-20 10:32 AM PDT -ryanfkeller,2025-06-21T18:12:53Z,- ryanfkeller commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993705291) at 2025-06-21 11:12 AM PDT -ryanfkeller,2025-06-24T15:37:42Z,- ryanfkeller commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3000995735) at 2025-06-24 08:37 AM PDT -ryanfkeller,2025-06-27T19:21:11Z,- ryanfkeller opened issue: [8233](https://github.com/hackforla/website/issues/8233) at 2025-06-27 12:21 PM PDT -ryanfkeller,2025-06-30T22:40:35Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021052578) at 2025-06-30 03:40 PM PDT -ryanfkeller,2025-06-30T22:41:40Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021055171) at 2025-06-30 03:41 PM PDT -ryanfkeller,2025-06-30T22:43:36Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021058851) at 2025-06-30 03:43 PM PDT -ryanfkeller,2025-06-30T22:49:41Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021074961) at 2025-06-30 03:49 PM PDT -ryanfkeller,2025-07-03T17:52:27Z,- ryanfkeller commented on issue: [8185](https://github.com/hackforla/website/issues/8185#issuecomment-3033086602) at 2025-07-03 10:52 AM PDT -ryanfkeller,2025-07-04T00:33:22Z,- ryanfkeller submitted pull request review: [8241](https://github.com/hackforla/website/pull/8241#pullrequestreview-2985008573) at 2025-07-03 05:33 PM PDT -ryanfkeller,2025-07-29T17:36:19Z,- ryanfkeller commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3133441556) at 2025-07-29 10:36 AM PDT -ryanfkeller,2025-08-04T16:12:11Z,- ryanfkeller submitted pull request review: [8253](https://github.com/hackforla/website/pull/8253#pullrequestreview-3084892392) at 2025-08-04 09:12 AM PDT -ryanfkeller,2025-08-06T17:26:18Z,- ryanfkeller submitted pull request review: [8253](https://github.com/hackforla/website/pull/8253#pullrequestreview-3093579318) at 2025-08-06 10:26 AM PDT -ryanfkeller,2025-08-07T23:29:07Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3166123625) at 2025-08-07 04:29 PM PDT -RyanGehris,3913,SKILLS ISSUE -RyanGehris,2023-02-01T04:58:25Z,- RyanGehris opened issue: [3913](https://github.com/hackforla/website/issues/3913) at 2023-01-31 08:58 PM PST -RyanGehris,2023-02-01T04:58:31Z,- RyanGehris assigned to issue: [3913](https://github.com/hackforla/website/issues/3913) at 2023-01-31 08:58 PM PST -RyanGehris,2023-02-02T20:24:08Z,- RyanGehris assigned to issue: [3895](https://github.com/hackforla/website/issues/3895) at 2023-02-02 12:24 PM PST -RyanGehris,2023-02-02T20:30:01Z,- RyanGehris commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1414335076) at 2023-02-02 12:30 PM PST -RyanGehris,2023-02-03T00:19:29Z,- RyanGehris commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1414542647) at 2023-02-02 04:19 PM PST -RyanGehris,2023-02-03T01:14:30Z,- RyanGehris opened pull request: [3927](https://github.com/hackforla/website/pull/3927) at 2023-02-02 05:14 PM PST -RyanGehris,2023-02-03T01:22:40Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1414584986) at 2023-02-02 05:22 PM PST -RyanGehris,2023-02-07T04:15:44Z,- RyanGehris commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1420176104) at 2023-02-06 08:15 PM PST -RyanGehris,2023-02-10T01:57:47Z,- RyanGehris assigned to issue: [3856](https://github.com/hackforla/website/issues/3856) at 2023-02-09 05:57 PM PST -RyanGehris,2023-02-10T01:59:40Z,- RyanGehris unassigned from issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1425070509) at 2023-02-09 05:59 PM PST -RyanGehris,2023-02-12T00:51:23Z,- RyanGehris commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1426910791) at 2023-02-11 04:51 PM PST -RyanGehris,2023-02-12T02:12:13Z,- RyanGehris submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1294645220) at 2023-02-11 06:12 PM PST -RyanGehris,2023-02-14T04:40:19Z,- RyanGehris assigned to issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1410597638) at 2023-02-13 08:40 PM PST -RyanGehris,2023-02-14T04:42:27Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429105870) at 2023-02-13 08:42 PM PST -RyanGehris,2023-02-14T05:36:23Z,- RyanGehris unassigned from issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429105870) at 2023-02-13 09:36 PM PST -RyanGehris,2023-02-14T05:36:56Z,- RyanGehris assigned to issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429105870) at 2023-02-13 09:36 PM PST -RyanGehris,2023-02-14T05:38:25Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429150085) at 2023-02-13 09:38 PM PST -RyanGehris,2023-02-14T05:48:20Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429156003) at 2023-02-13 09:48 PM PST -RyanGehris,2023-02-15T00:15:29Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1430565588) at 2023-02-14 04:15 PM PST -RyanGehris,2023-02-15T00:27:38Z,- RyanGehris opened pull request: [3977](https://github.com/hackforla/website/pull/3977) at 2023-02-14 04:27 PM PST -RyanGehris,2023-02-15T17:03:41Z,- RyanGehris pull request merged: [3977](https://github.com/hackforla/website/pull/3977#event-8528297780) at 2023-02-15 09:03 AM PST -RyanGehris,2023-02-15T23:58:11Z,- RyanGehris commented on pull request: [3982](https://github.com/hackforla/website/pull/3982#issuecomment-1432249581) at 2023-02-15 03:58 PM PST -RyanGehris,2023-02-15T23:58:41Z,- RyanGehris commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1432250445) at 2023-02-15 03:58 PM PST -RyanGehris,2023-02-16T00:15:47Z,- RyanGehris submitted pull request review: [3982](https://github.com/hackforla/website/pull/3982#pullrequestreview-1300568535) at 2023-02-15 04:15 PM PST -RyanGehris,2023-02-16T00:30:19Z,- RyanGehris submitted pull request review: [3980](https://github.com/hackforla/website/pull/3980#pullrequestreview-1300578653) at 2023-02-15 04:30 PM PST -RyanGehris,2023-02-16T00:35:35Z,- RyanGehris commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1432290004) at 2023-02-15 04:35 PM PST -RyanGehris,2023-02-22T04:15:52Z,- RyanGehris commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1439414693) at 2023-02-21 08:15 PM PST -RyanGehris,2023-02-22T04:48:25Z,- RyanGehris commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1439434677) at 2023-02-21 08:48 PM PST -RyanGehris,2023-02-22T04:51:05Z,- RyanGehris submitted pull request review: [4020](https://github.com/hackforla/website/pull/4020#pullrequestreview-1308522996) at 2023-02-21 08:51 PM PST -RyanGehris,2023-02-22T22:27:17Z,- RyanGehris submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1310372942) at 2023-02-22 02:27 PM PST -RyanGehris,2023-02-22T22:45:09Z,- RyanGehris commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1440937929) at 2023-02-22 02:45 PM PST -RyanGehris,2023-02-24T06:32:20Z,- RyanGehris assigned to issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1427262247) at 2023-02-23 10:32 PM PST -RyanGehris,2023-02-24T06:33:28Z,- RyanGehris commented on issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1442869482) at 2023-02-23 10:33 PM PST -RyanGehris,2023-02-24T22:50:39Z,- RyanGehris submitted pull request review: [4034](https://github.com/hackforla/website/pull/4034#pullrequestreview-1314350541) at 2023-02-24 02:50 PM PST -RyanGehris,2023-03-01T00:30:50Z,- RyanGehris commented on issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1449132437) at 2023-02-28 04:30 PM PST -RyanGehris,2023-03-01T05:55:19Z,- RyanGehris opened pull request: [4076](https://github.com/hackforla/website/pull/4076) at 2023-02-28 09:55 PM PST -RyanGehris,2023-03-01T17:40:55Z,- RyanGehris commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1450572158) at 2023-03-01 09:40 AM PST -RyanGehris,2023-03-01T17:59:09Z,- RyanGehris submitted pull request review: [4053](https://github.com/hackforla/website/pull/4053#pullrequestreview-1320359604) at 2023-03-01 09:59 AM PST -RyanGehris,2023-03-02T22:12:31Z,- RyanGehris commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1452620496) at 2023-03-02 02:12 PM PST -RyanGehris,2023-03-03T18:12:44Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1453911810) at 2023-03-03 10:12 AM PST -RyanGehris,2023-03-05T06:07:10Z,- RyanGehris pull request merged: [4076](https://github.com/hackforla/website/pull/4076#event-8667392041) at 2023-03-04 10:07 PM PST -RyanGehris,2023-03-09T00:25:31Z,- RyanGehris commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1461076588) at 2023-03-08 04:25 PM PST -RyanGehris,2023-03-09T00:27:27Z,- RyanGehris commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1461078290) at 2023-03-08 04:27 PM PST -RyanGehris,2023-03-09T00:29:39Z,- RyanGehris commented on pull request: [4126](https://github.com/hackforla/website/pull/4126#issuecomment-1461080052) at 2023-03-08 04:29 PM PST -RyanGehris,2023-03-09T00:30:31Z,- RyanGehris commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1461080716) at 2023-03-08 04:30 PM PST -RyanGehris,2023-03-09T00:31:07Z,- RyanGehris commented on pull request: [4133](https://github.com/hackforla/website/pull/4133#issuecomment-1461081236) at 2023-03-08 04:31 PM PST -RyanGehris,2023-03-09T00:52:50Z,- RyanGehris submitted pull request review: [4106](https://github.com/hackforla/website/pull/4106#pullrequestreview-1331831688) at 2023-03-08 04:52 PM PST -RyanGehris,2023-03-09T02:08:18Z,- RyanGehris submitted pull request review: [4126](https://github.com/hackforla/website/pull/4126#pullrequestreview-1331879774) at 2023-03-08 06:08 PM PST -RyanGehris,2023-03-09T02:16:57Z,- RyanGehris submitted pull request review: [4133](https://github.com/hackforla/website/pull/4133#pullrequestreview-1331885187) at 2023-03-08 06:16 PM PST -RyanGehris,2023-03-09T02:50:14Z,- RyanGehris submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1331906694) at 2023-03-08 06:50 PM PST -RyanGehris,2023-03-09T05:00:13Z,- RyanGehris commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1461281145) at 2023-03-08 09:00 PM PST -RyanGehris,2023-03-14T21:04:39Z,- RyanGehris opened pull request: [4182](https://github.com/hackforla/website/pull/4182) at 2023-03-14 02:04 PM PDT -RyanGehris,2023-03-14T21:04:57Z,- RyanGehris pull request closed w/o merging: [4182](https://github.com/hackforla/website/pull/4182#event-8748508028) at 2023-03-14 02:04 PM PDT -RyanGehris,2023-03-14T21:32:59Z,- RyanGehris submitted pull request review: [4108](https://github.com/hackforla/website/pull/4108#pullrequestreview-1340311328) at 2023-03-14 02:32 PM PDT -RyanGehris,2023-03-17T01:48:33Z,- RyanGehris submitted pull request review: [4194](https://github.com/hackforla/website/pull/4194#pullrequestreview-1345157411) at 2023-03-16 06:48 PM PDT -RyanGehris,2023-03-22T00:26:56Z,- RyanGehris commented on pull request: [4228](https://github.com/hackforla/website/pull/4228#issuecomment-1478759727) at 2023-03-21 05:26 PM PDT -RyanGehris,2023-03-22T00:31:26Z,- RyanGehris assigned to issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1476672283) at 2023-03-21 05:31 PM PDT -RyanGehris,2023-03-22T00:35:09Z,- RyanGehris commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1478764850) at 2023-03-21 05:35 PM PDT -RyanGehris,2023-03-22T02:06:00Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1478822194) at 2023-03-21 07:06 PM PDT -RyanGehris,2023-03-22T03:42:12Z,- RyanGehris submitted pull request review: [4228](https://github.com/hackforla/website/pull/4228#pullrequestreview-1351675090) at 2023-03-21 08:42 PM PDT -RyanGehris,2023-03-24T23:07:11Z,- RyanGehris commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1483559227) at 2023-03-24 04:07 PM PDT -RyanGehris,2023-03-27T00:36:31Z,- RyanGehris unassigned from issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1483559227) at 2023-03-26 05:36 PM PDT -RyanGehris,2023-03-28T21:30:40Z,- RyanGehris assigned to issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1449413433) at 2023-03-28 02:30 PM PDT -RyanGehris,2023-03-28T21:32:24Z,- RyanGehris commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1487622064) at 2023-03-28 02:32 PM PDT -RyanGehris,2023-03-28T21:48:21Z,- RyanGehris submitted pull request review: [4304](https://github.com/hackforla/website/pull/4304#pullrequestreview-1361954762) at 2023-03-28 02:48 PM PDT -RyanGehris,2023-03-29T00:01:17Z,- RyanGehris submitted pull request review: [4305](https://github.com/hackforla/website/pull/4305#pullrequestreview-1362077374) at 2023-03-28 05:01 PM PDT -RyanGehris,2023-03-29T00:43:53Z,- RyanGehris commented on pull request: [4305](https://github.com/hackforla/website/pull/4305#issuecomment-1487787352) at 2023-03-28 05:43 PM PDT -RyanGehris,2023-03-29T02:20:35Z,- RyanGehris commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1487854119) at 2023-03-28 07:20 PM PDT -RyanGehris,2023-03-30T00:33:07Z,- RyanGehris submitted pull request review: [4297](https://github.com/hackforla/website/pull/4297#pullrequestreview-1364165656) at 2023-03-29 05:33 PM PDT -RyanGehris,2023-03-30T00:44:45Z,- RyanGehris commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1489526844) at 2023-03-29 05:44 PM PDT -RyanGehris,2023-03-30T04:17:54Z,- RyanGehris commented on pull request: [4340](https://github.com/hackforla/website/pull/4340#issuecomment-1489666953) at 2023-03-29 09:17 PM PDT -RyanGehris,2023-03-30T04:18:57Z,- RyanGehris commented on pull request: [4341](https://github.com/hackforla/website/pull/4341#issuecomment-1489667515) at 2023-03-29 09:18 PM PDT -RyanGehris,2023-03-30T04:31:17Z,- RyanGehris submitted pull request review: [4340](https://github.com/hackforla/website/pull/4340#pullrequestreview-1364308376) at 2023-03-29 09:31 PM PDT -RyanGehris,2023-03-30T04:44:21Z,- RyanGehris submitted pull request review: [4341](https://github.com/hackforla/website/pull/4341#pullrequestreview-1364318395) at 2023-03-29 09:44 PM PDT -RyanGehris,2023-03-30T23:21:44Z,- RyanGehris commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1491088247) at 2023-03-30 04:21 PM PDT -RyanGehris,2023-04-06T00:14:52Z,- RyanGehris submitted pull request review: [4391](https://github.com/hackforla/website/pull/4391#pullrequestreview-1373889832) at 2023-04-05 05:14 PM PDT -RyanGehris,2023-04-06T00:19:17Z,- RyanGehris commented on pull request: [4391](https://github.com/hackforla/website/pull/4391#issuecomment-1498323396) at 2023-04-05 05:19 PM PDT -RyanGehris,2023-04-06T00:25:56Z,- RyanGehris submitted pull request review: [4421](https://github.com/hackforla/website/pull/4421#pullrequestreview-1373900076) at 2023-04-05 05:25 PM PDT -RyanGehris,2023-04-06T00:38:24Z,- RyanGehris submitted pull request review: [4425](https://github.com/hackforla/website/pull/4425#pullrequestreview-1373907697) at 2023-04-05 05:38 PM PDT -RyanGehris,2023-04-08T22:57:12Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1500993032) at 2023-04-08 03:57 PM PDT -RyanGehris,2023-04-09T05:16:55Z,- RyanGehris submitted pull request review: [4444](https://github.com/hackforla/website/pull/4444#pullrequestreview-1376858919) at 2023-04-08 10:16 PM PDT -RyanGehris,2023-04-11T17:51:15Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1503841954) at 2023-04-11 10:51 AM PDT -RyanGehris,2023-04-11T17:54:42Z,- RyanGehris commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1503846178) at 2023-04-11 10:54 AM PDT -RyanGehris,2023-04-11T17:54:58Z,- RyanGehris unassigned from issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1503846178) at 2023-04-11 10:54 AM PDT -RyanGehris,2023-04-11T18:36:30Z,- RyanGehris submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1379866766) at 2023-04-11 11:36 AM PDT -RyanGehris,2023-04-12T00:15:57Z,- RyanGehris submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1380245597) at 2023-04-11 05:15 PM PDT -RyanGehris,2023-04-13T04:56:33Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1382629097) at 2023-04-12 09:56 PM PDT -RyanGehris,2023-04-14T00:19:32Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1384423884) at 2023-04-13 05:19 PM PDT -RyanGehris,2023-04-14T02:21:55Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1384509213) at 2023-04-13 07:21 PM PDT -RyanGehris,2023-04-20T20:45:13Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1394737618) at 2023-04-20 01:45 PM PDT -RyanGehris,2023-04-20T20:46:25Z,- RyanGehris commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516923984) at 2023-04-20 01:46 PM PDT -RyanGehris,2023-04-21T04:14:06Z,- RyanGehris commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517233684) at 2023-04-20 09:14 PM PDT -RyanGehris,2023-04-28T01:13:10Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1526843178) at 2023-04-27 06:13 PM PDT -RyanGehris,2023-05-19T05:06:13Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1553999422) at 2023-05-18 10:06 PM PDT -RyanGehris,2023-06-28T02:39:12Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1610572811) at 2023-06-27 07:39 PM PDT -ryantpham,2749,SKILLS ISSUE -ryantpham,2022-02-08T03:52:37Z,- ryantpham opened issue: [2749](https://github.com/hackforla/website/issues/2749) at 2022-02-07 07:52 PM PST -s-sanger,2022-07-10T18:16:34Z,- s-sanger opened issue: [3344](https://github.com/hackforla/website/issues/3344) at 2022-07-10 11:16 AM PDT -s-sanger,2022-07-10T18:31:19Z,- s-sanger opened issue: [3346](https://github.com/hackforla/website/issues/3346) at 2022-07-10 11:31 AM PDT -s-sanger,2022-07-10T18:38:41Z,- s-sanger opened issue: [3350](https://github.com/hackforla/website/issues/3350) at 2022-07-10 11:38 AM PDT -s-sanger,2023-01-30T20:06:17Z,- s-sanger opened pull request: [3902](https://github.com/hackforla/website/pull/3902) at 2023-01-30 12:06 PM PST -s-sanger,2023-01-31T03:20:53Z,- s-sanger pull request closed w/o merging: [3902](https://github.com/hackforla/website/pull/3902#event-8394828780) at 2023-01-30 07:20 PM PST -s-sanger,2023-05-18T18:06:24Z,- s-sanger opened issue: [4692](https://github.com/hackforla/website/issues/4692) at 2023-05-18 11:06 AM PDT -S-Vairon,2019-05-22T03:47:22Z,- S-Vairon opened issue: [116](https://github.com/hackforla/website/issues/116) at 2019-05-21 08:47 PM PDT -S-Vairon,2019-05-23T03:36:19Z,- S-Vairon assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -S-Vairon,2019-05-27T20:44:40Z,- S-Vairon assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-27 01:44 PM PDT -S-Vairon,2019-05-27T21:15:51Z,- S-Vairon assigned to issue: [116](https://github.com/hackforla/website/issues/116) at 2019-05-27 02:15 PM PDT -S-Vairon,2020-06-01T02:33:13Z,- S-Vairon unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -S-Vairon,2020-06-01T02:40:07Z,- S-Vairon unassigned from issue: [116](https://github.com/hackforla/website/issues/116) at 2020-05-31 07:40 PM PDT -SaashaG,2021-05-07T17:50:13Z,- SaashaG assigned to issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-830556217) at 2021-05-07 10:50 AM PDT -SaashaG,2021-05-10T13:30:05Z,- SaashaG commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-836701974) at 2021-05-10 06:30 AM PDT -SaashaG,2021-05-10T17:33:08Z,- SaashaG commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-837015481) at 2021-05-10 10:33 AM PDT -SaashaG,2021-05-13T18:32:57Z,- SaashaG commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-840749837) at 2021-05-13 11:32 AM PDT -SaashaG,2021-05-19T23:25:41Z,- SaashaG commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-844563618) at 2021-05-19 04:25 PM PDT -SaashaG,2021-05-20T06:02:39Z,- SaashaG unassigned from issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-844726515) at 2021-05-19 11:02 PM PDT -SaashaG,2021-05-20T06:30:32Z,- SaashaG assigned to issue: [1593](https://github.com/hackforla/website/issues/1593#issuecomment-844747990) at 2021-05-19 11:30 PM PDT -SaashaG,2021-05-26T02:32:34Z,- SaashaG commented on issue: [1593](https://github.com/hackforla/website/issues/1593#issuecomment-848409567) at 2021-05-25 07:32 PM PDT -SaashaG,2021-06-04T13:04:12Z,- SaashaG assigned to issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-06-04 06:04 AM PDT -SaashaG,2021-06-04T13:17:11Z,- SaashaG commented on issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-854717056) at 2021-06-04 06:17 AM PDT -SaashaG,2021-06-10T00:46:43Z,- SaashaG unassigned from issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-854717056) at 2021-06-09 05:46 PM PDT -SaashaG,2021-06-11T20:43:40Z,- SaashaG assigned to issue: [1708](https://github.com/hackforla/website/issues/1708) at 2021-06-11 01:43 PM PDT -SaashaG,2021-06-13T12:52:09Z,- SaashaG commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-860206217) at 2021-06-13 05:52 AM PDT -SaashaG,2021-06-17T03:12:28Z,- SaashaG commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-862883797) at 2021-06-16 08:12 PM PDT -SaashaG,2021-06-18T14:00:23Z,- SaashaG commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-864060148) at 2021-06-18 07:00 AM PDT -SaashaG,2021-06-24T21:45:11Z,- SaashaG assigned to issue: [1733](https://github.com/hackforla/website/issues/1733) at 2021-06-24 02:45 PM PDT -SaashaG,2021-06-24T21:46:07Z,- SaashaG unassigned from issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-862883797) at 2021-06-24 02:46 PM PDT -SaashaG,2021-07-05T22:32:59Z,- SaashaG commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-874354532) at 2021-07-05 03:32 PM PDT -SaashaG,2021-07-06T02:23:48Z,- SaashaG commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-874413356) at 2021-07-05 07:23 PM PDT -SaashaG,2021-07-29T19:26:19Z,- SaashaG unassigned from issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-889400182) at 2021-07-29 12:26 PM PDT -SaashaG,2021-07-30T01:01:06Z,- SaashaG assigned to issue: [1969](https://github.com/hackforla/website/issues/1969) at 2021-07-29 06:01 PM PDT -SaashaG,2021-08-02T17:35:58Z,- SaashaG commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-891207733) at 2021-08-02 10:35 AM PDT -SaashaG,2021-08-08T15:53:49Z,- SaashaG commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-894817135) at 2021-08-08 08:53 AM PDT -SaashaG,2021-08-11T19:20:47Z,- SaashaG commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-897087623) at 2021-08-11 12:20 PM PDT -SaashaG,2021-08-28T18:09:32Z,- SaashaG commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-907666602) at 2021-08-28 11:09 AM PDT -sacamp,3250,SKILLS ISSUE -sacamp,2021-07-30T01:06:41Z,- sacamp assigned to issue: [2015](https://github.com/hackforla/website/issues/2015) at 2021-07-29 06:06 PM PDT -sacamp,2021-07-30T01:11:57Z,- sacamp closed issue as completed: [2015](https://github.com/hackforla/website/issues/2015#event-5088969790) at 2021-07-29 06:11 PM PDT -sacamp,2021-07-30T01:11:59Z,- sacamp reopened issue: [2015](https://github.com/hackforla/website/issues/2015#event-5088969790) at 2021-07-29 06:11 PM PDT -sacamp,2021-08-09T14:25:40Z,- sacamp commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-895269472) at 2021-08-09 07:25 AM PDT -sacamp,2021-08-16T20:05:20Z,- sacamp commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899783988) at 2021-08-16 01:05 PM PDT -sacamp,2021-09-10T14:22:15Z,- sacamp assigned to issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-916679703) at 2021-09-10 07:22 AM PDT -sacamp,2021-10-04T18:39:49Z,- sacamp assigned to issue: [2334](https://github.com/hackforla/website/issues/2334) at 2021-10-04 11:39 AM PDT -sacamp,2021-10-06T19:19:41Z,- sacamp unassigned from issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-929126159) at 2021-10-06 12:19 PM PDT -sacamp,2021-10-08T19:09:14Z,- sacamp commented on issue: [2334](https://github.com/hackforla/website/issues/2334#issuecomment-939058398) at 2021-10-08 12:09 PM PDT -sacamp,2021-10-22T00:43:29Z,- sacamp commented on issue: [2334](https://github.com/hackforla/website/issues/2334#issuecomment-949119965) at 2021-10-21 05:43 PM PDT -sacamp,2021-10-22T00:43:29Z,- sacamp closed issue as completed: [2334](https://github.com/hackforla/website/issues/2334#event-5501869967) at 2021-10-21 05:43 PM PDT -sacamp,2021-10-22T14:57:11Z,- sacamp assigned to issue: [2389](https://github.com/hackforla/website/issues/2389) at 2021-10-22 07:57 AM PDT -sacamp,2021-11-08T19:06:04Z,- sacamp assigned to issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-954482249) at 2021-11-08 11:06 AM PST -sacamp,2021-11-10T20:41:04Z,- sacamp submitted pull request review: [2472](https://github.com/hackforla/website/pull/2472#pullrequestreview-803122851) at 2021-11-10 12:41 PM PST -sacamp,2021-11-17T18:18:35Z,- sacamp opened issue: [2498](https://github.com/hackforla/website/issues/2498) at 2021-11-17 10:18 AM PST -sacamp,2021-11-17T18:27:39Z,- sacamp commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-971848539) at 2021-11-17 10:27 AM PST -sacamp,2021-11-17T21:57:54Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-972113138) at 2021-11-17 01:57 PM PST -sacamp,2021-11-18T03:32:28Z,- sacamp assigned to issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-913695460) at 2021-11-17 07:32 PM PST -sacamp,2021-11-18T03:36:12Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-972488954) at 2021-11-17 07:36 PM PST -sacamp,2021-12-01T19:26:35Z,- sacamp commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-983983554) at 2021-12-01 11:26 AM PST -sacamp,2021-12-01T19:38:54Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-983992284) at 2021-12-01 11:38 AM PST -sacamp,2021-12-01T20:46:17Z,- sacamp opened issue: [2527](https://github.com/hackforla/website/issues/2527) at 2021-12-01 12:46 PM PST -sacamp,2021-12-01T21:58:03Z,- sacamp opened issue: [2529](https://github.com/hackforla/website/issues/2529) at 2021-12-01 01:58 PM PST -sacamp,2021-12-08T19:30:09Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-989130551) at 2021-12-08 11:30 AM PST -sacamp,2021-12-08T19:51:00Z,- sacamp opened issue: [2561](https://github.com/hackforla/website/issues/2561) at 2021-12-08 11:51 AM PST -sacamp,2021-12-10T01:51:14Z,- sacamp reopened issue: [2498](https://github.com/hackforla/website/issues/2498#event-5744650688) at 2021-12-09 05:51 PM PST -sacamp,2021-12-12T17:54:43Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-991941960) at 2021-12-12 09:54 AM PST -sacamp,2021-12-12T17:58:33Z,- sacamp commented on issue: [2527](https://github.com/hackforla/website/issues/2527#issuecomment-991942645) at 2021-12-12 09:58 AM PST -sacamp,2021-12-12T18:06:50Z,- sacamp commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-991944071) at 2021-12-12 10:06 AM PST -sacamp,2021-12-14T17:08:45Z,- sacamp reopened issue: [2527](https://github.com/hackforla/website/issues/2527#event-5765525442) at 2021-12-14 09:08 AM PST -sacamp,2021-12-15T20:16:22Z,- sacamp opened issue: [2589](https://github.com/hackforla/website/issues/2589) at 2021-12-15 12:16 PM PST -sacamp,2021-12-15T21:06:57Z,- sacamp closed issue as completed: [2527](https://github.com/hackforla/website/issues/2527#event-5774335716) at 2021-12-15 01:06 PM PST -sacamp,2021-12-15T21:18:55Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-995221407) at 2021-12-15 01:18 PM PST -sacamp,2022-01-05T01:33:18Z,- sacamp assigned to issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-995221407) at 2022-01-04 05:33 PM PST -sacamp,2022-01-05T19:58:42Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1006034360) at 2022-01-05 11:58 AM PST -sacamp,2022-01-05T21:21:59Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1006087156) at 2022-01-05 01:21 PM PST -sacamp,2022-01-09T17:53:19Z,- sacamp opened issue: [2679](https://github.com/hackforla/website/issues/2679) at 2022-01-09 09:53 AM PST -sacamp,2022-01-09T17:53:19Z,- sacamp assigned to issue: [2679](https://github.com/hackforla/website/issues/2679) at 2022-01-09 09:53 AM PST -sacamp,2022-01-09T18:03:25Z,- sacamp opened issue: [2680](https://github.com/hackforla/website/issues/2680) at 2022-01-09 10:03 AM PST -sacamp,2022-01-09T18:03:25Z,- sacamp assigned to issue: [2680](https://github.com/hackforla/website/issues/2680) at 2022-01-09 10:03 AM PST -sacamp,2022-01-09T18:14:23Z,- sacamp unassigned from issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1008344746) at 2022-01-09 10:14 AM PST -sacamp,2022-01-12T13:50:04Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1011065631) at 2022-01-12 05:50 AM PST -sacamp,2022-01-16T16:02:22Z,- sacamp commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1013902531) at 2022-01-16 08:02 AM PST -sacamp,2022-01-19T13:02:48Z,- sacamp unassigned from issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1012839202) at 2022-01-19 05:02 AM PST -sacamp,2022-01-19T13:05:18Z,- sacamp commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1016446658) at 2022-01-19 05:05 AM PST -sacamp,2022-01-19T13:18:14Z,- sacamp opened issue: [2704](https://github.com/hackforla/website/issues/2704) at 2022-01-19 05:18 AM PST -sacamp,2022-01-19T13:25:16Z,- sacamp opened issue: [2705](https://github.com/hackforla/website/issues/2705) at 2022-01-19 05:25 AM PST -sacamp,2022-01-19T13:27:02Z,- sacamp opened issue: [2706](https://github.com/hackforla/website/issues/2706) at 2022-01-19 05:27 AM PST -sacamp,2022-01-19T13:54:15Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1016487740) at 2022-01-19 05:54 AM PST -sacamp,2022-01-19T20:47:14Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1016854817) at 2022-01-19 12:47 PM PST -sacamp,2022-01-20T20:42:28Z,- sacamp closed issue as completed: [2499](https://github.com/hackforla/website/issues/2499#event-5927926277) at 2022-01-20 12:42 PM PST -sacamp,2022-01-20T20:42:38Z,- sacamp closed issue as completed: [2500](https://github.com/hackforla/website/issues/2500#event-5927927110) at 2022-01-20 12:42 PM PST -sacamp,2022-01-26T19:47:19Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1022543950) at 2022-01-26 11:47 AM PST -sacamp,2022-01-26T20:55:02Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1022593730) at 2022-01-26 12:55 PM PST -sacamp,2022-02-02T17:55:38Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1028203239) at 2022-02-02 09:55 AM PST -sacamp,2022-02-06T19:31:51Z,- sacamp commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-02-06 11:31 AM PST -sacamp,2022-02-09T19:58:50Z,- sacamp closed issue as completed: [2680](https://github.com/hackforla/website/issues/2680#event-6036993824) at 2022-02-09 11:58 AM PST -sacamp,2022-02-09T19:59:13Z,- sacamp assigned to issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1008344746) at 2022-02-09 11:59 AM PST -sacamp,2022-02-09T21:15:29Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1034199395) at 2022-02-09 01:15 PM PST -sacamp,2022-02-09T23:15:19Z,- sacamp commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1034298009) at 2022-02-09 03:15 PM PST -sacamp,2022-02-09T23:15:19Z,- sacamp closed issue as completed: [2561](https://github.com/hackforla/website/issues/2561#event-6038010530) at 2022-02-09 03:15 PM PST -sacamp,2022-02-16T19:02:57Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1042044003) at 2022-02-16 11:02 AM PST -sacamp,2022-02-16T20:56:02Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1042302744) at 2022-02-16 12:56 PM PST -sacamp,2022-02-22T18:39:20Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048098607) at 2022-02-22 10:39 AM PST -sacamp,2022-02-23T19:58:34Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1049159890) at 2022-02-23 11:58 AM PST -sacamp,2022-02-23T21:30:28Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1049233807) at 2022-02-23 01:30 PM PST -sacamp,2022-03-09T19:01:40Z,- sacamp opened issue: [2945](https://github.com/hackforla/website/issues/2945) at 2022-03-09 11:01 AM PST -sacamp,2022-03-09T19:04:43Z,- sacamp opened issue: [2946](https://github.com/hackforla/website/issues/2946) at 2022-03-09 11:04 AM PST -sacamp,2022-03-09T19:08:47Z,- sacamp opened issue: [2947](https://github.com/hackforla/website/issues/2947) at 2022-03-09 11:08 AM PST -sacamp,2022-03-09T19:12:26Z,- sacamp opened issue: [2948](https://github.com/hackforla/website/issues/2948) at 2022-03-09 11:12 AM PST -sacamp,2022-03-09T19:16:58Z,- sacamp opened issue: [2949](https://github.com/hackforla/website/issues/2949) at 2022-03-09 11:16 AM PST -sacamp,2022-03-09T19:25:00Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1063277621) at 2022-03-09 11:25 AM PST -sacamp,2022-03-09T21:03:07Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1063368383) at 2022-03-09 01:03 PM PST -sacamp,2022-03-09T21:54:16Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1063410953) at 2022-03-09 01:54 PM PST -sacamp,2022-03-13T16:05:42Z,- sacamp opened issue: [2974](https://github.com/hackforla/website/issues/2974) at 2022-03-13 09:05 AM PDT -sacamp,2022-03-13T16:31:38Z,- sacamp commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1066136709) at 2022-03-13 09:31 AM PDT -sacamp,2022-03-16T19:36:37Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069541474) at 2022-03-16 12:36 PM PDT -sacamp,2022-03-16T20:00:47Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1069561318) at 2022-03-16 01:00 PM PDT -sacamp,2022-03-23T19:48:45Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1076755574) at 2022-03-23 12:48 PM PDT -sacamp,2022-03-24T15:14:45Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077740975) at 2022-03-24 08:14 AM PDT -sacamp,2022-03-30T19:18:55Z,- sacamp commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1083531557) at 2022-03-30 12:18 PM PDT -sacamp,2022-03-30T19:30:23Z,- sacamp commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1083542980) at 2022-03-30 12:30 PM PDT -sacamp,2022-03-30T20:46:55Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1083610048) at 2022-03-30 01:46 PM PDT -sacamp,2022-03-30T20:58:14Z,- sacamp unassigned from issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077740975) at 2022-03-30 01:58 PM PDT -sacamp,2022-04-11T20:36:15Z,- sacamp commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1095541544) at 2022-04-11 01:36 PM PDT -sacamp,2022-04-13T18:59:57Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1098382537) at 2022-04-13 11:59 AM PDT -sacamp,2022-04-13T20:06:30Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1098436733) at 2022-04-13 01:06 PM PDT -sacamp,2022-04-13T20:16:42Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1098446474) at 2022-04-13 01:16 PM PDT -sacamp,2022-04-17T16:23:07Z,- sacamp closed issue as completed: [2917](https://github.com/hackforla/website/issues/2917#event-6444756418) at 2022-04-17 09:23 AM PDT -sacamp,2022-04-17T16:23:23Z,- sacamp closed issue as completed: [2938](https://github.com/hackforla/website/issues/2938#event-6444756698) at 2022-04-17 09:23 AM PDT -sacamp,2022-04-17T16:35:08Z,- sacamp commented on issue: [2536](https://github.com/hackforla/website/issues/2536#issuecomment-1100911812) at 2022-04-17 09:35 AM PDT -sacamp,2022-04-17T16:35:08Z,- sacamp closed issue as completed: [2536](https://github.com/hackforla/website/issues/2536#event-6444767136) at 2022-04-17 09:35 AM PDT -sacamp,2022-04-17T16:37:45Z,- sacamp commented on issue: [2900](https://github.com/hackforla/website/issues/2900#issuecomment-1100912163) at 2022-04-17 09:37 AM PDT -sacamp,2022-04-20T19:56:32Z,- sacamp commented on issue: [2900](https://github.com/hackforla/website/issues/2900#issuecomment-1104401309) at 2022-04-20 12:56 PM PDT -sacamp,2022-04-20T19:56:32Z,- sacamp closed issue as completed: [2900](https://github.com/hackforla/website/issues/2900#event-6465894625) at 2022-04-20 12:56 PM PDT -sacamp,2022-04-20T20:28:36Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1104427996) at 2022-04-20 01:28 PM PDT -sacamp,2022-04-27T20:07:48Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1111432225) at 2022-04-27 01:07 PM PDT -sacamp,2022-05-01T17:08:10Z,- sacamp commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1114287128) at 2022-05-01 10:08 AM PDT -sacamp,2022-05-01T17:08:10Z,- sacamp closed issue as completed: [2733](https://github.com/hackforla/website/issues/2733#event-6529807094) at 2022-05-01 10:08 AM PDT -sacamp,2022-05-11T17:38:03Z,- sacamp assigned to issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077740975) at 2022-05-11 10:38 AM PDT -sacamp,2022-05-11T17:38:36Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1124065880) at 2022-05-11 10:38 AM PDT -sacamp,2022-05-11T20:05:40Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1124238470) at 2022-05-11 01:05 PM PDT -sacamp,2022-05-18T18:14:00Z,- sacamp unassigned from issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1124065880) at 2022-05-18 11:14 AM PDT -sacamp,2022-05-18T18:19:40Z,- sacamp commented on issue: [3145](https://github.com/hackforla/website/issues/3145#issuecomment-1130353603) at 2022-05-18 11:19 AM PDT -sacamp,2022-06-08T18:51:33Z,- sacamp closed issue as completed: [2945](https://github.com/hackforla/website/issues/2945#event-6772354262) at 2022-06-08 11:51 AM PDT -sacamp,2022-06-08T20:09:27Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1150355526) at 2022-06-08 01:09 PM PDT -sacamp,2022-06-15T21:10:31Z,- sacamp opened issue: [3250](https://github.com/hackforla/website/issues/3250) at 2022-06-15 02:10 PM PDT -sacamp,2022-06-15T21:29:55Z,- sacamp assigned to issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1155400747) at 2022-06-15 02:29 PM PDT -sacamp,2022-06-15T21:33:16Z,- sacamp closed issue as completed: [3250](https://github.com/hackforla/website/issues/3250#event-6816311406) at 2022-06-15 02:33 PM PDT -sacamp,2022-06-15T21:34:29Z,- sacamp unassigned from issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1155400747) at 2022-06-15 02:34 PM PDT -sacamp,2023-02-23T19:32:38Z,- sacamp assigned to issue: [4033](https://github.com/hackforla/website/issues/4033) at 2023-02-23 11:32 AM PST -sacamp,2023-02-23T19:33:24Z,- sacamp unassigned from issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1442319971) at 2023-02-23 11:33 AM PST -sacamp,2023-03-19T18:16:34Z,- sacamp assigned to issue: [3250](https://github.com/hackforla/website/issues/3250#event-6816311406) at 2023-03-19 11:16 AM PDT -sacamp,2023-06-04T18:58:49Z,- sacamp unassigned from issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1211222296) at 2023-06-04 11:58 AM PDT -sacamp,2024-10-20T17:30:51Z,- sacamp assigned to issue: [2900](https://github.com/hackforla/website/issues/2900#event-6465894625) at 2024-10-20 10:30 AM PDT -Sah11-0,7887,SKILLS ISSUE -Sah11-0,2025-02-05T04:15:24Z,- Sah11-0 opened issue: [7887](https://github.com/hackforla/website/issues/7887) at 2025-02-04 08:15 PM PST -Sah11-0,2025-02-05T04:15:41Z,- Sah11-0 assigned to issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2635664412) at 2025-02-04 08:15 PM PST -Sah11-0,2025-02-18T23:44:15Z,- Sah11-0 commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2667172657) at 2025-02-18 03:44 PM PST -Sah11-0,2025-02-19T03:23:43Z,- Sah11-0 commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2667418043) at 2025-02-18 07:23 PM PST -Sah11-0,2025-03-14T16:19:13Z,- Sah11-0 commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2725163951) at 2025-03-14 09:19 AM PDT -sahithm06,7033,SKILLS ISSUE -sahithm06,2024-06-19T03:41:52Z,- sahithm06 opened issue: [7033](https://github.com/hackforla/website/issues/7033) at 2024-06-18 08:41 PM PDT -sahithm06,2024-06-19T03:42:22Z,- sahithm06 assigned to issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2177527787) at 2024-06-18 08:42 PM PDT -SahityaRoy,2023-09-02T13:43:33Z,- SahityaRoy opened pull request: [5420](https://github.com/hackforla/website/pull/5420) at 2023-09-02 06:43 AM PDT -SahityaRoy,2023-09-02T14:55:39Z,- SahityaRoy pull request closed w/o merging: [5420](https://github.com/hackforla/website/pull/5420#event-10264252459) at 2023-09-02 07:55 AM PDT -sainarasimhav37,6951,SKILLS ISSUE -sainarasimhav37,2024-06-04T03:02:21Z,- sainarasimhav37 opened issue: [6951](https://github.com/hackforla/website/issues/6951) at 2024-06-03 08:02 PM PDT -sainarasimhav37,2024-06-04T03:02:47Z,- sainarasimhav37 assigned to issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2146479342) at 2024-06-03 08:02 PM PDT -sainarasimhav37,2024-06-18T22:59:45Z,- sainarasimhav37 assigned to issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2149206458) at 2024-06-18 03:59 PM PDT -sainarasimhav37,2024-06-18T23:07:07Z,- sainarasimhav37 commented on issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2177229741) at 2024-06-18 04:07 PM PDT -sainarasimhav37,2024-07-02T01:10:15Z,- sainarasimhav37 unassigned from issue: [6935](https://github.com/hackforla/website/issues/6935#event-13358227472) at 2024-07-01 06:10 PM PDT -saintach,2018-12-20T12:24:26Z,- saintach opened issue: [26](https://github.com/hackforla/website/issues/26) at 2018-12-20 04:24 AM PST -saiteja-siddana,7218,SKILLS ISSUE -saiteja-siddana,2024-08-06T03:54:22Z,- saiteja-siddana opened issue: [7218](https://github.com/hackforla/website/issues/7218) at 2024-08-05 08:54 PM PDT -saiteja-siddana,2024-08-06T03:56:52Z,- saiteja-siddana assigned to issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2270331857) at 2024-08-05 08:56 PM PDT -saiteja-siddana,2024-08-13T02:32:56Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2285230090) at 2024-08-12 07:32 PM PDT -saiteja-siddana,2024-08-13T22:10:09Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2287226591) at 2024-08-13 03:10 PM PDT -saiteja-siddana,2024-08-13T22:22:36Z,- saiteja-siddana assigned to issue: [7246](https://github.com/hackforla/website/issues/7246) at 2024-08-13 03:22 PM PDT -saiteja-siddana,2024-08-13T22:26:24Z,- saiteja-siddana commented on issue: [7246](https://github.com/hackforla/website/issues/7246#issuecomment-2287249532) at 2024-08-13 03:26 PM PDT -saiteja-siddana,2024-08-13T22:26:59Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2287251879) at 2024-08-13 03:26 PM PDT -saiteja-siddana,2024-08-15T01:57:45Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2290352465) at 2024-08-14 06:57 PM PDT -saiteja-siddana,2024-08-15T02:37:10Z,- saiteja-siddana opened pull request: [7293](https://github.com/hackforla/website/pull/7293) at 2024-08-14 07:37 PM PDT -saiteja-siddana,2024-08-16T23:48:36Z,- saiteja-siddana commented on pull request: [7270](https://github.com/hackforla/website/pull/7270#issuecomment-2294456233) at 2024-08-16 04:48 PM PDT -saiteja-siddana,2024-08-17T03:09:29Z,- saiteja-siddana submitted pull request review: [7270](https://github.com/hackforla/website/pull/7270#pullrequestreview-2243901809) at 2024-08-16 08:09 PM PDT -saiteja-siddana,2024-08-21T02:29:55Z,- saiteja-siddana pull request merged: [7293](https://github.com/hackforla/website/pull/7293#event-13953269828) at 2024-08-20 07:29 PM PDT -saiteja-siddana,2024-08-26T16:09:02Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2310564823) at 2024-08-26 09:09 AM PDT -saiteja-siddana,2024-08-26T16:19:06Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2310584424) at 2024-08-26 09:19 AM PDT -saiteja-siddana,2024-08-26T16:21:09Z,- saiteja-siddana assigned to issue: [7292](https://github.com/hackforla/website/issues/7292) at 2024-08-26 09:21 AM PDT -saiteja-siddana,2024-08-26T16:24:00Z,- saiteja-siddana commented on issue: [7292](https://github.com/hackforla/website/issues/7292#issuecomment-2310593554) at 2024-08-26 09:24 AM PDT -saiteja-siddana,2024-08-26T16:32:32Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2310609019) at 2024-08-26 09:32 AM PDT -saiteja-siddana,2024-08-29T15:50:03Z,- saiteja-siddana opened pull request: [7365](https://github.com/hackforla/website/pull/7365) at 2024-08-29 08:50 AM PDT -saiteja-siddana,2024-08-29T23:23:11Z,- saiteja-siddana pull request merged: [7365](https://github.com/hackforla/website/pull/7365#event-14072144401) at 2024-08-29 04:23 PM PDT -SakethMylavarapu2602,7032,SKILLS ISSUE -SakethMylavarapu2602,2024-06-19T03:41:48Z,- SakethMylavarapu2602 opened issue: [7032](https://github.com/hackforla/website/issues/7032) at 2024-06-18 08:41 PM PDT -SakethMylavarapu2602,2024-06-19T03:42:09Z,- SakethMylavarapu2602 assigned to issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2177527548) at 2024-06-18 08:42 PM PDT -sakibian,5483,SKILLS ISSUE -sakibian,2023-09-03T16:48:26Z,- sakibian commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1704350973) at 2023-09-03 09:48 AM PDT -sakibian,2023-09-12T03:20:42Z,- sakibian opened issue: [5483](https://github.com/hackforla/website/issues/5483) at 2023-09-11 08:20 PM PDT -sakibian,2023-09-12T03:25:30Z,- sakibian assigned to issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1714904023) at 2023-09-11 08:25 PM PDT -sakibian,2023-09-16T17:13:08Z,- sakibian assigned to issue: [5342](https://github.com/hackforla/website/issues/5342#issuecomment-1715919380) at 2023-09-16 10:13 AM PDT -sakibian,2023-09-16T17:16:07Z,- sakibian commented on issue: [5342](https://github.com/hackforla/website/issues/5342#issuecomment-1722274331) at 2023-09-16 10:16 AM PDT -sakibian,2023-09-17T15:05:28Z,- sakibian opened pull request: [5548](https://github.com/hackforla/website/pull/5548) at 2023-09-17 08:05 AM PDT -sakibian,2023-09-17T15:16:48Z,- sakibian commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1722499483) at 2023-09-17 08:16 AM PDT -sakibian,2023-09-18T12:27:08Z,- sakibian opened pull request: [5551](https://github.com/hackforla/website/pull/5551) at 2023-09-18 05:27 AM PDT -sakibian,2023-09-18T12:29:16Z,- sakibian commented on pull request: [5548](https://github.com/hackforla/website/pull/5548#issuecomment-1723309460) at 2023-09-18 05:29 AM PDT -sakibian,2023-09-18T14:40:22Z,- sakibian pull request closed w/o merging: [5548](https://github.com/hackforla/website/pull/5548#event-10398967606) at 2023-09-18 07:40 AM PDT -sakibian,2023-09-21T18:46:37Z,- sakibian commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1730119414) at 2023-09-21 11:46 AM PDT -sakibian,2023-09-22T17:57:01Z,- sakibian commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1731829645) at 2023-09-22 10:57 AM PDT -sakibian,2023-09-27T04:46:32Z,- sakibian opened pull request: [5613](https://github.com/hackforla/website/pull/5613) at 2023-09-26 09:46 PM PDT -sakibian,2023-09-27T08:30:48Z,- sakibian pull request closed w/o merging: [5613](https://github.com/hackforla/website/pull/5613#event-10484315769) at 2023-09-27 01:30 AM PDT -sakibian,2023-09-29T17:42:08Z,- sakibian pull request merged: [5551](https://github.com/hackforla/website/pull/5551#event-10513946605) at 2023-09-29 10:42 AM PDT -sakibian,2023-10-06T17:10:45Z,- sakibian assigned to issue: [5623](https://github.com/hackforla/website/issues/5623) at 2023-10-06 10:10 AM PDT -sakibian,2023-10-06T17:12:37Z,- sakibian commented on issue: [5623](https://github.com/hackforla/website/issues/5623#issuecomment-1751130167) at 2023-10-06 10:12 AM PDT -sakibian,2023-10-10T06:11:16Z,- sakibian opened pull request: [5692](https://github.com/hackforla/website/pull/5692) at 2023-10-09 11:11 PM PDT -sakibian,2023-10-12T03:17:57Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1758849021) at 2023-10-11 08:17 PM PDT -sakibian,2023-10-12T16:03:54Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1759922581) at 2023-10-12 09:03 AM PDT -sakibian,2023-10-14T14:50:11Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1762958546) at 2023-10-14 07:50 AM PDT -sakibian,2023-10-15T02:45:53Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1763245697) at 2023-10-14 07:45 PM PDT -sakibian,2023-10-18T03:04:13Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1767544820) at 2023-10-17 08:04 PM PDT -sakibian,2023-10-18T03:31:25Z,- sakibian opened pull request: [5733](https://github.com/hackforla/website/pull/5733) at 2023-10-17 08:31 PM PDT -sakibian,2023-10-18T03:41:04Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1767578605) at 2023-10-17 08:41 PM PDT -sakibian,2023-10-18T05:34:29Z,- sakibian pull request closed w/o merging: [5692](https://github.com/hackforla/website/pull/5692#event-10687472548) at 2023-10-17 10:34 PM PDT -sakibian,2023-10-18T05:42:41Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1767682519) at 2023-10-17 10:42 PM PDT -sakibian,2023-10-18T18:44:34Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1769123173) at 2023-10-18 11:44 AM PDT -sakibian,2023-10-21T07:00:31Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1773698552) at 2023-10-21 12:00 AM PDT -sakibian,2023-10-29T05:39:36Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1784005194) at 2023-10-28 10:39 PM PDT -sakibian,2023-10-30T03:56:06Z,- sakibian pull request merged: [5733](https://github.com/hackforla/website/pull/5733#event-10802205690) at 2023-10-29 08:56 PM PDT -sakibian,2023-11-03T15:16:57Z,- sakibian commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1792628358) at 2023-11-03 08:16 AM PDT -sakibian,2024-02-14T17:07:17Z,- sakibian commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1944251087) at 2024-02-14 09:07 AM PST -sakibian,2024-04-18T10:24:56Z,- sakibian assigned to issue: [6636](https://github.com/hackforla/website/issues/6636) at 2024-04-18 03:24 AM PDT -sakibian,2024-04-18T10:36:51Z,- sakibian commented on issue: [6636](https://github.com/hackforla/website/issues/6636#issuecomment-2063555143) at 2024-04-18 03:36 AM PDT -sakibian,2024-04-19T10:14:52Z,- sakibian opened pull request: [6688](https://github.com/hackforla/website/pull/6688) at 2024-04-19 03:14 AM PDT -sakibian,2024-04-21T06:09:40Z,- sakibian commented on pull request: [6688](https://github.com/hackforla/website/pull/6688#issuecomment-2067920309) at 2024-04-20 11:09 PM PDT -sakibian,2024-04-21T18:33:34Z,- sakibian pull request merged: [6688](https://github.com/hackforla/website/pull/6688#event-12551670688) at 2024-04-21 11:33 AM PDT -sakibian,2024-04-24T07:06:54Z,- sakibian assigned to issue: [6698](https://github.com/hackforla/website/issues/6698#issuecomment-2067951084) at 2024-04-24 12:06 AM PDT -sakibian,2024-04-24T07:08:48Z,- sakibian opened issue: [6729](https://github.com/hackforla/website/issues/6729) at 2024-04-24 12:08 AM PDT -sakibian,2024-04-24T07:12:03Z,- sakibian opened issue: [6730](https://github.com/hackforla/website/issues/6730) at 2024-04-24 12:12 AM PDT -sakibian,2024-04-24T07:13:26Z,- sakibian opened issue: [6731](https://github.com/hackforla/website/issues/6731) at 2024-04-24 12:13 AM PDT -sakibian,2024-04-24T07:24:02Z,- sakibian opened issue: [6732](https://github.com/hackforla/website/issues/6732) at 2024-04-24 12:24 AM PDT -sakibian,2024-04-24T07:38:14Z,- sakibian opened issue: [6733](https://github.com/hackforla/website/issues/6733) at 2024-04-24 12:38 AM PDT -sakibian,2024-04-24T07:48:21Z,- sakibian assigned to issue: [6699](https://github.com/hackforla/website/issues/6699#issuecomment-2067952981) at 2024-04-24 12:48 AM PDT -sakibian,2024-04-24T07:51:34Z,- sakibian opened issue: [6734](https://github.com/hackforla/website/issues/6734) at 2024-04-24 12:51 AM PDT -sakibian,2024-04-24T07:57:42Z,- sakibian opened issue: [6735](https://github.com/hackforla/website/issues/6735) at 2024-04-24 12:57 AM PDT -sakibian,2024-04-24T07:59:48Z,- sakibian opened issue: [6736](https://github.com/hackforla/website/issues/6736) at 2024-04-24 12:59 AM PDT -sakibian,2024-04-24T08:02:55Z,- sakibian opened issue: [6737](https://github.com/hackforla/website/issues/6737) at 2024-04-24 01:02 AM PDT -sakibian,2024-04-24T08:05:30Z,- sakibian opened issue: [6738](https://github.com/hackforla/website/issues/6738) at 2024-04-24 01:05 AM PDT -sakibian,2024-04-24T08:10:22Z,- sakibian opened issue: [6739](https://github.com/hackforla/website/issues/6739) at 2024-04-24 01:10 AM PDT -sakibian,2024-04-24T08:12:05Z,- sakibian opened issue: [6740](https://github.com/hackforla/website/issues/6740) at 2024-04-24 01:12 AM PDT -sakibian,2024-04-24T08:14:51Z,- sakibian opened issue: [6741](https://github.com/hackforla/website/issues/6741) at 2024-04-24 01:14 AM PDT -sakibian,2024-04-24T08:18:06Z,- sakibian opened issue: [6742](https://github.com/hackforla/website/issues/6742) at 2024-04-24 01:18 AM PDT -sakibian,2024-04-24T08:20:17Z,- sakibian opened issue: [6743](https://github.com/hackforla/website/issues/6743) at 2024-04-24 01:20 AM PDT -sakibian,2024-07-30T07:07:26Z,- sakibian opened issue: [7154](https://github.com/hackforla/website/issues/7154) at 2024-07-30 12:07 AM PDT -sakibian,2024-07-30T07:24:42Z,- sakibian closed issue as completed: [7154](https://github.com/hackforla/website/issues/7154#event-13691270750) at 2024-07-30 12:24 AM PDT -sakibian,2024-07-30T07:31:08Z,- sakibian opened issue: [7155](https://github.com/hackforla/website/issues/7155) at 2024-07-30 12:31 AM PDT -salice,2020-03-30T05:04:45Z,- salice commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-605784131) at 2020-03-29 10:04 PM PDT -salice,2023-08-03T01:16:38Z,- salice opened issue: [5131](https://github.com/hackforla/website/issues/5131) at 2023-08-02 06:16 PM PDT -salimays,2023-03-08T00:50:44Z,- salimays assigned to issue: [4127](https://github.com/hackforla/website/issues/4127) at 2023-03-07 04:50 PM PST -salimays,2023-03-29T01:40:39Z,- salimays unassigned from issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1484239501) at 2023-03-28 06:40 PM PDT -SamantaTarun,2023-01-30T15:41:42Z,- SamantaTarun opened pull request: [3898](https://github.com/hackforla/website/pull/3898) at 2023-01-30 07:41 AM PST -SamantaTarun,2023-01-30T15:46:10Z,- SamantaTarun opened pull request: [3899](https://github.com/hackforla/website/pull/3899) at 2023-01-30 07:46 AM PST -SamantaTarun,2023-01-30T19:47:23Z,- SamantaTarun pull request closed w/o merging: [3898](https://github.com/hackforla/website/pull/3898#event-8391900219) at 2023-01-30 11:47 AM PST -SamantaTarun,2023-01-30T19:48:15Z,- SamantaTarun pull request closed w/o merging: [3899](https://github.com/hackforla/website/pull/3899#event-8391906456) at 2023-01-30 11:48 AM PST -SamantaTarun,2023-04-10T00:09:54Z,- SamantaTarun commented on issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1501248341) at 2023-04-09 05:09 PM PDT -samantha-yee11,2021-01-24T19:56:02Z,- samantha-yee11 assigned to issue: [963](https://github.com/hackforla/website/issues/963) at 2021-01-24 11:56 AM PST -samantha-yee11,2021-01-31T01:33:46Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770310056) at 2021-01-30 05:33 PM PST -samantha-yee11,2021-01-31T01:39:03Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770310537) at 2021-01-30 05:39 PM PST -samantha-yee11,2021-01-31T01:39:56Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770310618) at 2021-01-30 05:39 PM PST -samantha-yee11,2021-01-31T18:39:30Z,- samantha-yee11 assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770427972) at 2021-01-31 10:39 AM PST -samantha-yee11,2021-01-31T19:47:52Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770439459) at 2021-01-31 11:47 AM PST -samantha-yee11,2021-02-04T01:27:12Z,- samantha-yee11 assigned to issue: [642](https://github.com/hackforla/website/issues/642) at 2021-02-03 05:27 PM PST -samantha-yee11,2021-02-04T01:52:42Z,- samantha-yee11 commented on issue: [642](https://github.com/hackforla/website/issues/642#issuecomment-772964000) at 2021-02-03 05:52 PM PST -samantha-yee11,2021-02-07T18:30:40Z,- samantha-yee11 unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-772784187) at 2021-02-07 10:30 AM PST -samantha-yee11,2021-02-07T21:26:11Z,- samantha-yee11 unassigned from issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770439459) at 2021-02-07 01:26 PM PST -samantha-yee11,2021-02-14T10:31:54Z,- samantha-yee11 unassigned from issue: [642](https://github.com/hackforla/website/issues/642#issuecomment-772964000) at 2021-02-14 02:31 AM PST -SameerM01,2024-02-08T15:23:52Z,- SameerM01 opened pull request: [6265](https://github.com/hackforla/website/pull/6265) at 2024-02-08 07:23 AM PST -SameerM01,2024-02-09T07:02:20Z,- SameerM01 pull request closed w/o merging: [6265](https://github.com/hackforla/website/pull/6265#event-11754520190) at 2024-02-08 11:02 PM PST -Samhitha444,2024-08-19T20:57:00Z,- Samhitha444 opened issue: [7318](https://github.com/hackforla/website/issues/7318) at 2024-08-19 01:57 PM PDT -Samhitha444,2024-09-01T08:06:08Z,- Samhitha444 reopened issue: [4276](https://github.com/hackforla/website/issues/4276#event-12257435552) at 2024-09-01 01:06 AM PDT -Samhitha444,2024-09-01T08:07:44Z,- Samhitha444 closed issue as completed: [4276](https://github.com/hackforla/website/issues/4276#event-14093784214) at 2024-09-01 01:07 AM PDT -Samhitha444,2024-09-12T19:24:33Z,- Samhitha444 commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-2347072671) at 2024-09-12 12:24 PM PDT -Samhitha444,2024-09-12T19:29:11Z,- Samhitha444 commented on issue: [4276](https://github.com/hackforla/website/issues/4276#issuecomment-2347080438) at 2024-09-12 12:29 PM PDT -Samhitha444,2024-09-12T19:36:09Z,- Samhitha444 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-2347092520) at 2024-09-12 12:36 PM PDT -Samhitha444,2024-09-22T18:38:39Z,- Samhitha444 opened issue: [7505](https://github.com/hackforla/website/issues/7505) at 2024-09-22 11:38 AM PDT -Samhitha444,2024-09-22T18:41:28Z,- Samhitha444 assigned to issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2366911260) at 2024-09-22 11:41 AM PDT -Samhitha444,2024-09-29T16:52:48Z,- Samhitha444 commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-2381424879) at 2024-09-29 09:52 AM PDT -Samhitha444,2024-09-29T16:59:10Z,- Samhitha444 commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-2381426532) at 2024-09-29 09:59 AM PDT -Samhitha444,2024-09-29T17:03:03Z,- Samhitha444 commented on issue: [5812](https://github.com/hackforla/website/issues/5812#issuecomment-2381427827) at 2024-09-29 10:03 AM PDT -Samhitha444,2024-10-06T17:13:05Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2395512767) at 2024-10-06 10:13 AM PDT -Samhitha444,2024-10-20T16:58:48Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2425120260) at 2024-10-20 09:58 AM PDT -Samhitha444,2024-10-27T08:23:55Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2439905052) at 2024-10-27 01:23 AM PDT -Samhitha444,2024-11-10T18:51:18Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2466844456) at 2024-11-10 10:51 AM PST -Samhitha444,2024-11-27T21:49:35Z,- Samhitha444 unassigned from issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2493016389) at 2024-11-27 01:49 PM PST -samuelkhong,6083,SKILLS ISSUE -samuelkhong,2024-01-09T22:20:36Z,- samuelkhong opened issue: [6083](https://github.com/hackforla/website/issues/6083) at 2024-01-09 02:20 PM PST -samuelkhong,2024-01-09T22:27:11Z,- samuelkhong assigned to issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1883894317) at 2024-01-09 02:27 PM PST -samuelkhong,2024-01-16T18:28:56Z,- samuelkhong assigned to issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1846438175) at 2024-01-16 10:28 AM PST -samuelkhong,2024-01-16T18:29:20Z,- samuelkhong commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1894299366) at 2024-01-16 10:29 AM PST -samuelkhong,2024-01-16T18:29:37Z,- samuelkhong closed issue as not planned: [5949](https://github.com/hackforla/website/issues/5949#event-11502471830) at 2024-01-16 10:29 AM PST -samuelusc,6122,SKILLS ISSUE -samuelusc,2024-01-17T04:55:45Z,- samuelusc opened issue: [6122](https://github.com/hackforla/website/issues/6122) at 2024-01-16 08:55 PM PST -samuelusc,2024-01-17T05:12:26Z,- samuelusc assigned to issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1894940503) at 2024-01-16 09:12 PM PST -samuelusc,2024-02-09T00:51:08Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1935161036) at 2024-02-08 04:51 PM PST -samuelusc,2024-02-09T03:21:09Z,- samuelusc assigned to issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1875034717) at 2024-02-08 07:21 PM PST -samuelusc,2024-02-09T03:32:50Z,- samuelusc commented on issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1935284591) at 2024-02-08 07:32 PM PST -samuelusc,2024-02-17T02:07:06Z,- samuelusc opened pull request: [6307](https://github.com/hackforla/website/pull/6307) at 2024-02-16 06:07 PM PST -samuelusc,2024-02-17T02:13:44Z,- samuelusc commented on issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1949606259) at 2024-02-16 06:13 PM PST -samuelusc,2024-02-17T02:16:30Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1949607085) at 2024-02-16 06:16 PM PST -samuelusc,2024-02-17T03:21:34Z,- samuelusc commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949625061) at 2024-02-16 07:21 PM PST -samuelusc,2024-02-18T00:04:49Z,- samuelusc commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950594667) at 2024-02-17 04:04 PM PST -samuelusc,2024-02-18T03:46:15Z,- samuelusc commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950923523) at 2024-02-17 07:46 PM PST -samuelusc,2024-02-18T06:45:19Z,- samuelusc pull request merged: [6307](https://github.com/hackforla/website/pull/6307#event-11838274117) at 2024-02-17 10:45 PM PST -samuelusc,2024-02-23T04:05:43Z,- samuelusc assigned to issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1869735855) at 2024-02-22 08:05 PM PST -samuelusc,2024-02-29T22:40:59Z,- samuelusc commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1972094367) at 2024-02-29 02:40 PM PST -samuelusc,2024-02-29T22:44:33Z,- samuelusc commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1972098712) at 2024-02-29 02:44 PM PST -samuelusc,2024-03-02T01:30:40Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1974171792) at 2024-03-01 05:30 PM PST -samuelusc,2024-03-10T03:16:52Z,- samuelusc opened pull request: [6443](https://github.com/hackforla/website/pull/6443) at 2024-03-09 08:16 PM PDT -samuelusc,2024-03-10T03:27:07Z,- samuelusc commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1987055631) at 2024-03-09 08:27 PM PDT -samuelusc,2024-03-14T00:46:59Z,- samuelusc commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1996195756) at 2024-03-13 05:46 PM PDT -samuelusc,2024-03-15T06:05:39Z,- samuelusc pull request merged: [6443](https://github.com/hackforla/website/pull/6443#event-12127086924) at 2024-03-14 11:05 PM PDT -samuelusc,2024-03-30T12:20:40Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2028033033) at 2024-03-30 05:20 AM PDT -samuelusc,2024-04-25T21:06:02Z,- samuelusc assigned to issue: [6639](https://github.com/hackforla/website/issues/6639) at 2024-04-25 02:06 PM PDT -samuelusc,2024-04-25T21:10:02Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2078180593) at 2024-04-25 02:10 PM PDT -samuelusc,2024-04-28T23:23:18Z,- samuelusc commented on issue: [6639](https://github.com/hackforla/website/issues/6639#issuecomment-2081695735) at 2024-04-28 04:23 PM PDT -samuelusc,2024-04-28T23:29:41Z,- samuelusc commented on issue: [6639](https://github.com/hackforla/website/issues/6639#issuecomment-2081697560) at 2024-04-28 04:29 PM PDT -samuelusc,2024-05-01T18:55:40Z,- samuelusc opened pull request: [6801](https://github.com/hackforla/website/pull/6801) at 2024-05-01 11:55 AM PDT -samuelusc,2024-05-02T04:23:23Z,- samuelusc commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2089530251) at 2024-05-01 09:23 PM PDT -samuelusc,2024-05-02T20:20:37Z,- samuelusc commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2091488288) at 2024-05-02 01:20 PM PDT -samuelusc,2024-05-03T00:47:12Z,- samuelusc commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2091963959) at 2024-05-02 05:47 PM PDT -samuelusc,2024-05-03T14:45:00Z,- samuelusc pull request merged: [6801](https://github.com/hackforla/website/pull/6801#event-12697399083) at 2024-05-03 07:45 AM PDT -samuelusc,2024-05-08T03:48:08Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2099685982) at 2024-05-07 08:48 PM PDT -samuelusc,2024-05-29T21:45:42Z,- samuelusc assigned to issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2136921927) at 2024-05-29 02:45 PM PDT -samuelusc,2024-05-29T21:52:36Z,- samuelusc commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138321754) at 2024-05-29 02:52 PM PDT -samuelusc,2024-05-29T21:55:01Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2138324538) at 2024-05-29 02:55 PM PDT -samuelusc,2024-05-29T23:00:25Z,- samuelusc unassigned from issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138389042) at 2024-05-29 04:00 PM PDT -samuelusc,2024-05-29T23:35:30Z,- samuelusc commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138418428) at 2024-05-29 04:35 PM PDT -samuelusc,2024-06-21T03:54:53Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2181953847) at 2024-06-20 08:54 PM PDT -sanchece,2021-03-10T03:43:41Z,- sanchece assigned to issue: [1103](https://github.com/hackforla/website/issues/1103#issuecomment-784811971) at 2021-03-09 07:43 PM PST -sanchece,2021-03-17T02:48:23Z,- sanchece opened pull request: [1215](https://github.com/hackforla/website/pull/1215) at 2021-03-16 07:48 PM PDT -sanchece,2021-03-17T03:00:32Z,- sanchece pull request merged: [1215](https://github.com/hackforla/website/pull/1215#event-4467839121) at 2021-03-16 08:00 PM PDT -sanchece,2021-03-17T03:02:13Z,- sanchece assigned to issue: [1046](https://github.com/hackforla/website/issues/1046) at 2021-03-16 08:02 PM PDT -sanchece,2021-03-17T03:46:15Z,- sanchece submitted pull request review: [1214](https://github.com/hackforla/website/pull/1214#pullrequestreview-613898223) at 2021-03-16 08:46 PM PDT -sanchece,2021-03-17T03:47:08Z,- sanchece closed issue by PR 1214: [1126](https://github.com/hackforla/website/issues/1126#event-4467943435) at 2021-03-16 08:47 PM PDT -sanchece,2021-03-24T00:02:34Z,- sanchece opened pull request: [1317](https://github.com/hackforla/website/pull/1317) at 2021-03-23 05:02 PM PDT -sanchece,2021-03-24T03:17:45Z,- sanchece assigned to issue: [1142](https://github.com/hackforla/website/issues/1142) at 2021-03-23 08:17 PM PDT -sanchece,2021-03-24T03:31:19Z,- sanchece pull request merged: [1317](https://github.com/hackforla/website/pull/1317#event-4499564789) at 2021-03-23 08:31 PM PDT -sanchece,2021-04-04T02:11:32Z,- sanchece opened pull request: [1350](https://github.com/hackforla/website/pull/1350) at 2021-04-03 07:11 PM PDT -sanchece,2021-04-06T06:20:20Z,- sanchece opened pull request: [1361](https://github.com/hackforla/website/pull/1361) at 2021-04-05 11:20 PM PDT -sanchece,2021-04-08T01:18:14Z,- sanchece pull request closed w/o merging: [1350](https://github.com/hackforla/website/pull/1350#event-4565824516) at 2021-04-07 06:18 PM PDT -sanchece,2021-04-11T14:27:26Z,- sanchece pull request closed w/o merging: [1361](https://github.com/hackforla/website/pull/1361#event-4578605042) at 2021-04-11 07:27 AM PDT -sanchece,2021-04-11T14:40:33Z,- sanchece opened pull request: [1394](https://github.com/hackforla/website/pull/1394) at 2021-04-11 07:40 AM PDT -sanchece,2021-04-14T02:41:28Z,- sanchece commented on pull request: [1394](https://github.com/hackforla/website/pull/1394#issuecomment-819179592) at 2021-04-13 07:41 PM PDT -sanchece,2021-04-14T03:31:28Z,- sanchece assigned to issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:31 PM PDT -sanchece,2021-04-14T03:51:44Z,- sanchece unassigned from issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:51 PM PDT -sanchece,2021-04-14T03:52:04Z,- sanchece assigned to issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:52 PM PDT -sanchece,2021-04-21T17:17:11Z,- sanchece pull request merged: [1394](https://github.com/hackforla/website/pull/1394#event-4626304000) at 2021-04-21 10:17 AM PDT -sanchece,2021-04-26T18:56:59Z,- sanchece opened pull request: [1468](https://github.com/hackforla/website/pull/1468) at 2021-04-26 11:56 AM PDT -sanchece,2021-04-28T03:06:07Z,- sanchece assigned to issue: [1462](https://github.com/hackforla/website/issues/1462) at 2021-04-27 08:06 PM PDT -sanchece,2021-04-28T03:06:33Z,- sanchece unassigned from issue: [1462](https://github.com/hackforla/website/issues/1462) at 2021-04-27 08:06 PM PDT -sanchece,2021-04-30T20:37:59Z,- sanchece commented on pull request: [1468](https://github.com/hackforla/website/pull/1468#issuecomment-830369384) at 2021-04-30 01:37 PM PDT -sanchece,2021-05-01T00:16:15Z,- sanchece pull request merged: [1468](https://github.com/hackforla/website/pull/1468#event-4672539079) at 2021-04-30 05:16 PM PDT -sanchece,2021-05-05T02:11:42Z,- sanchece assigned to issue: [1510](https://github.com/hackforla/website/issues/1510) at 2021-05-04 07:11 PM PDT -sanchece,2021-05-10T00:26:24Z,- sanchece opened pull request: [1535](https://github.com/hackforla/website/pull/1535) at 2021-05-09 05:26 PM PDT -sanchece,2021-05-10T21:42:35Z,- sanchece commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837392112) at 2021-05-10 02:42 PM PDT -sanchece,2021-05-11T01:08:20Z,- sanchece pull request merged: [1535](https://github.com/hackforla/website/pull/1535#event-4722052521) at 2021-05-10 06:08 PM PDT -sanchece,2021-05-18T00:34:41Z,- sanchece assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-842734306) at 2021-05-17 05:34 PM PDT -sanchece,2021-06-30T19:36:52Z,- sanchece unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-871649405) at 2021-06-30 12:36 PM PDT -sandarshp,3253,SKILLS ISSUE -sandarshp,2022-06-15T21:19:20Z,- sandarshp opened issue: [3253](https://github.com/hackforla/website/issues/3253) at 2022-06-15 02:19 PM PDT -sandarshp,2022-06-15T21:25:00Z,- sandarshp assigned to issue: [3253](https://github.com/hackforla/website/issues/3253#issuecomment-1156957293) at 2022-06-15 02:25 PM PDT -sandarshp,2022-06-22T20:04:28Z,- sandarshp assigned to issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-06-22 01:04 PM PDT -sandarshp,2022-06-29T19:14:56Z,- sandarshp unassigned from issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-06-29 12:14 PM PDT -sandarshp,2022-06-29T19:15:11Z,- sandarshp assigned to issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1158573419) at 2022-06-29 12:15 PM PDT -sandarshp,2022-07-22T16:59:37Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1192768837) at 2022-07-22 09:59 AM PDT -sandarshp,2022-07-31T16:28:42Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1200456922) at 2022-07-31 09:28 AM PDT -sandarshp,2022-08-12T13:26:21Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1213108455) at 2022-08-12 06:26 AM PDT -sandarshp,2022-08-17T20:54:54Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1218481287) at 2022-08-17 01:54 PM PDT -sandarshp,2022-09-21T19:37:41Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1254144713) at 2022-09-21 12:37 PM PDT -sandarshp,2022-09-21T19:41:24Z,- sandarshp unassigned from issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1254144713) at 2022-09-21 12:41 PM PDT -sandavid11,8096,SKILLS ISSUE -sandavid11,2025-04-29T02:59:33Z,- sandavid11 opened issue: [8096](https://github.com/hackforla/website/issues/8096) at 2025-04-28 07:59 PM PDT -sandavid11,2025-04-29T02:59:44Z,- sandavid11 assigned to issue: [8096](https://github.com/hackforla/website/issues/8096) at 2025-04-28 07:59 PM PDT -sandavid11,2025-04-29T03:18:48Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2837329511) at 2025-04-28 08:18 PM PDT -sandavid11,2025-04-30T00:40:20Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2840537342) at 2025-04-29 05:40 PM PDT -sandavid11,2025-04-30T00:41:05Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2840538097) at 2025-04-29 05:41 PM PDT -sandavid11,2025-04-30T00:58:33Z,- sandavid11 assigned to issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2833812934) at 2025-04-29 05:58 PM PDT -sandavid11,2025-04-30T02:36:55Z,- sandavid11 commented on issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2840657006) at 2025-04-29 07:36 PM PDT -sandavid11,2025-04-30T05:24:28Z,- sandavid11 opened pull request: [8101](https://github.com/hackforla/website/pull/8101) at 2025-04-29 10:24 PM PDT -sandavid11,2025-04-30T05:39:30Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2840862121) at 2025-04-29 10:39 PM PDT -sandavid11,2025-05-01T17:15:41Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2845290153) at 2025-05-01 10:15 AM PDT -sandavid11,2025-05-05T17:33:03Z,- sandavid11 pull request merged: [8101](https://github.com/hackforla/website/pull/8101#event-17523433010) at 2025-05-05 10:33 AM PDT -sandavid11,2025-05-12T21:31:02Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2874195804) at 2025-05-12 02:31 PM PDT -sandavid11,2025-05-12T21:34:01Z,- sandavid11 assigned to issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2667436272) at 2025-05-12 02:34 PM PDT -sandavid11,2025-05-12T21:36:39Z,- sandavid11 commented on issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2874221587) at 2025-05-12 02:36 PM PDT -sandavid11,2025-05-12T22:09:52Z,- sandavid11 opened pull request: [8124](https://github.com/hackforla/website/pull/8124) at 2025-05-12 03:09 PM PDT -sandavid11,2025-05-21T16:13:59Z,- sandavid11 pull request merged: [8124](https://github.com/hackforla/website/pull/8124#event-17757060484) at 2025-05-21 09:13 AM PDT -sandavid11,2025-05-22T03:14:10Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2899774380) at 2025-05-21 08:14 PM PDT -sandavid11,2025-05-22T03:35:43Z,- sandavid11 commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2899800097) at 2025-05-21 08:35 PM PDT -sandavid11,2025-05-22T04:01:08Z,- sandavid11 submitted pull request review: [8150](https://github.com/hackforla/website/pull/8150#pullrequestreview-2859696498) at 2025-05-21 09:01 PM PDT -sandavid11,2025-05-22T17:21:51Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2902011934) at 2025-05-22 10:21 AM PDT -sandavid11,2025-05-23T01:29:43Z,- sandavid11 commented on pull request: [8154](https://github.com/hackforla/website/pull/8154#issuecomment-2903008680) at 2025-05-22 06:29 PM PDT -sandavid11,2025-05-23T04:23:48Z,- sandavid11 submitted pull request review: [8154](https://github.com/hackforla/website/pull/8154#pullrequestreview-2863112943) at 2025-05-22 09:23 PM PDT -sandavid11,2025-05-24T03:54:34Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2906366268) at 2025-05-23 08:54 PM PDT -sandavid11,2025-05-24T04:02:05Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2906368911) at 2025-05-23 09:02 PM PDT -sandavid11,2025-05-25T04:44:28Z,- sandavid11 assigned to issue: [7451](https://github.com/hackforla/website/issues/7451) at 2025-05-24 09:44 PM PDT -sandavid11,2025-05-25T04:45:59Z,- sandavid11 commented on issue: [7451](https://github.com/hackforla/website/issues/7451#issuecomment-2907607021) at 2025-05-24 09:45 PM PDT -sandavid11,2025-05-26T04:06:35Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2908457944) at 2025-05-25 09:06 PM PDT -sandavid11,2025-05-26T04:20:13Z,- sandavid11 commented on pull request: [8159](https://github.com/hackforla/website/pull/8159#issuecomment-2908475392) at 2025-05-25 09:20 PM PDT -sandavid11,2025-05-27T04:17:42Z,- sandavid11 submitted pull request review: [8159](https://github.com/hackforla/website/pull/8159#pullrequestreview-2869517320) at 2025-05-26 09:17 PM PDT -sandavid11,2025-05-27T04:19:44Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2911049538) at 2025-05-26 09:19 PM PDT -sandavid11,2025-05-27T04:23:45Z,- sandavid11 commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2911054097) at 2025-05-26 09:23 PM PDT -sandavid11,2025-05-27T18:45:30Z,- sandavid11 submitted pull request review: [8160](https://github.com/hackforla/website/pull/8160#pullrequestreview-2872181088) at 2025-05-27 11:45 AM PDT -sandavid11,2025-05-27T23:47:29Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2914453440) at 2025-05-27 04:47 PM PDT -sandavid11,2025-06-13T04:22:23Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2968982287) at 2025-06-12 09:22 PM PDT -sanjay-0423,2024-03-07T18:11:33Z,- sanjay-0423 assigned to issue: [6156](https://github.com/hackforla/website/issues/6156) at 2024-03-07 10:11 AM PST -sanjay-0423,2024-03-07T18:15:26Z,- sanjay-0423 commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-1984154113) at 2024-03-07 10:15 AM PST -sanjay-0423,2024-03-26T14:29:57Z,- sanjay-0423 unassigned from issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2014484054) at 2024-03-26 07:29 AM PDT -sanjay-0423,2024-03-26T14:32:31Z,- sanjay-0423 commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2020597060) at 2024-03-26 07:32 AM PDT -santi-jose,8189,SKILLS ISSUE -santi-jose,2025-06-17T03:42:24Z,- santi-jose opened issue: [8189](https://github.com/hackforla/website/issues/8189) at 2025-06-16 08:42 PM PDT -santi-jose,2025-06-17T03:42:32Z,- santi-jose assigned to issue: [8189](https://github.com/hackforla/website/issues/8189) at 2025-06-16 08:42 PM PDT -santi-jose,2025-06-20T03:25:01Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-2989690222) at 2025-06-19 08:25 PM PDT -santi-jose,2025-06-23T20:59:38Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-2997926701) at 2025-06-23 01:59 PM PDT -santi-jose,2025-06-24T00:16:14Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-2998351434) at 2025-06-23 05:16 PM PDT -santi-jose,2025-06-24T06:34:33Z,- santi-jose assigned to issue: [8011](https://github.com/hackforla/website/issues/8011) at 2025-06-23 11:34 PM PDT -santi-jose,2025-06-24T06:43:51Z,- santi-jose commented on issue: [8011](https://github.com/hackforla/website/issues/8011#issuecomment-2999023001) at 2025-06-23 11:43 PM PDT -santi-jose,2025-06-25T07:51:23Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3003746366) at 2025-06-25 12:51 AM PDT -santi-jose,2025-06-25T07:51:53Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3003747716) at 2025-06-25 12:51 AM PDT -santi-jose,2025-06-25T08:15:12Z,- santi-jose opened pull request: [8206](https://github.com/hackforla/website/pull/8206) at 2025-06-25 01:15 AM PDT -santi-jose,2025-06-26T06:44:10Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3007340378) at 2025-06-25 11:44 PM PDT -santi-jose,2025-06-27T15:42:01Z,- santi-jose pull request merged: [8206](https://github.com/hackforla/website/pull/8206#event-18360176767) at 2025-06-27 08:42 AM PDT -santi-jose,2025-07-02T01:48:08Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3026072486) at 2025-07-01 06:48 PM PDT -santi-jose,2025-07-02T07:15:26Z,- santi-jose assigned to issue: [8122](https://github.com/hackforla/website/issues/8122) at 2025-07-02 12:15 AM PDT -santi-jose,2025-07-02T09:11:45Z,- santi-jose commented on issue: [8122](https://github.com/hackforla/website/issues/8122#issuecomment-3027081657) at 2025-07-02 02:11 AM PDT -santi-jose,2025-07-02T09:28:12Z,- santi-jose opened pull request: [8241](https://github.com/hackforla/website/pull/8241) at 2025-07-02 02:28 AM PDT -santi-jose,2025-07-03T03:25:07Z,- santi-jose commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3030501083) at 2025-07-02 08:25 PM PDT -santi-jose,2025-07-06T11:00:38Z,- santi-jose pull request merged: [8241](https://github.com/hackforla/website/pull/8241#event-18491029528) at 2025-07-06 04:00 AM PDT -santi-jose,2025-07-08T23:48:20Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3050601133) at 2025-07-08 04:48 PM PDT -santi-jose,2025-07-09T01:53:20Z,- santi-jose commented on pull request: [8243](https://github.com/hackforla/website/pull/8243#issuecomment-3050800873) at 2025-07-08 06:53 PM PDT -santi-jose,2025-07-18T03:16:01Z,- santi-jose submitted pull request review: [8243](https://github.com/hackforla/website/pull/8243#pullrequestreview-3031658568) at 2025-07-17 08:16 PM PDT -santi-jose,2025-07-25T05:11:12Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3116414710) at 2025-07-24 10:11 PM PDT -santi-jose,2025-07-25T05:26:58Z,- santi-jose commented on pull request: [8250](https://github.com/hackforla/website/pull/8250#issuecomment-3116444543) at 2025-07-24 10:26 PM PDT -santi-jose,2025-07-25T06:24:59Z,- santi-jose submitted pull request review: [8250](https://github.com/hackforla/website/pull/8250#pullrequestreview-3054244922) at 2025-07-24 11:24 PM PDT -santi-jose,2025-07-25T06:26:55Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3116563307) at 2025-07-24 11:26 PM PDT -santi-jose,2025-08-01T03:19:06Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3142029586) at 2025-07-31 08:19 PM PDT -santi-jose,2025-08-01T03:47:43Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3142076012) at 2025-07-31 08:47 PM PDT -santi-jose,2025-08-01T06:04:38Z,- santi-jose assigned to issue: [7613](https://github.com/hackforla/website/issues/7613) at 2025-07-31 11:04 PM PDT -santi-jose,2025-08-01T06:35:20Z,- santi-jose commented on issue: [7613](https://github.com/hackforla/website/issues/7613#issuecomment-3142824390) at 2025-07-31 11:35 PM PDT -santiseccovidal,6426,SKILLS ISSUE -santiseccovidal,2024-03-05T04:01:05Z,- santiseccovidal opened issue: [6426](https://github.com/hackforla/website/issues/6426) at 2024-03-04 08:01 PM PST -santiseccovidal,2024-03-15T12:33:38Z,- santiseccovidal assigned to issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-1998109832) at 2024-03-15 05:33 AM PDT -santiseccovidal,2024-05-08T19:20:20Z,- santiseccovidal assigned to issue: [6732](https://github.com/hackforla/website/issues/6732) at 2024-05-08 12:20 PM PDT -santiseccovidal,2024-05-10T15:45:41Z,- santiseccovidal commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2104833349) at 2024-05-10 08:45 AM PDT -santiseccovidal,2024-05-13T15:42:01Z,- santiseccovidal commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2108056818) at 2024-05-13 08:42 AM PDT -santiseccovidal,2024-05-13T17:09:39Z,- santiseccovidal opened pull request: [6852](https://github.com/hackforla/website/pull/6852) at 2024-05-13 10:09 AM PDT -santiseccovidal,2024-05-14T01:35:57Z,- santiseccovidal commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2109112860) at 2024-05-13 06:35 PM PDT -santiseccovidal,2024-05-16T17:56:16Z,- santiseccovidal pull request merged: [6852](https://github.com/hackforla/website/pull/6852#event-12837798576) at 2024-05-16 10:56 AM PDT -santiseccovidal,2024-05-20T12:56:45Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2120410287) at 2024-05-20 05:56 AM PDT -santiseccovidal,2024-05-20T12:57:03Z,- santiseccovidal closed issue as completed: [6426](https://github.com/hackforla/website/issues/6426#event-12865964727) at 2024-05-20 05:57 AM PDT -santiseccovidal,2024-05-23T15:14:20Z,- santiseccovidal assigned to issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2113237729) at 2024-05-23 08:14 AM PDT -santiseccovidal,2024-05-23T20:04:46Z,- santiseccovidal opened pull request: [6890](https://github.com/hackforla/website/pull/6890) at 2024-05-23 01:04 PM PDT -santiseccovidal,2024-05-26T04:29:17Z,- santiseccovidal pull request merged: [6890](https://github.com/hackforla/website/pull/6890#event-12934975962) at 2024-05-25 09:29 PM PDT -santiseccovidal,2024-05-29T12:35:05Z,- santiseccovidal assigned to issue: [6593](https://github.com/hackforla/website/issues/6593) at 2024-05-29 05:35 AM PDT -santiseccovidal,2024-06-02T20:41:42Z,- santiseccovidal assigned to issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2119086555) at 2024-06-02 01:41 PM PDT -santiseccovidal,2024-06-09T23:06:28Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2156849893) at 2024-06-09 04:06 PM PDT -santiseccovidal,2024-06-10T16:10:36Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2158781205) at 2024-06-10 09:10 AM PDT -santiseccovidal,2024-06-12T14:14:07Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2163125668) at 2024-06-12 07:14 AM PDT -santiseccovidal,2024-06-14T15:32:48Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2168281684) at 2024-06-14 08:32 AM PDT -santiseccovidal,2024-06-19T15:19:54Z,- santiseccovidal opened pull request: [7036](https://github.com/hackforla/website/pull/7036) at 2024-06-19 08:19 AM PDT -santiseccovidal,2024-06-23T16:18:12Z,- santiseccovidal pull request merged: [7036](https://github.com/hackforla/website/pull/7036#event-13256490861) at 2024-06-23 09:18 AM PDT -santiseccovidal,2024-06-26T17:40:12Z,- santiseccovidal commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2192282295) at 2024-06-26 10:40 AM PDT -santiseccovidal,2024-06-26T19:31:25Z,- santiseccovidal submitted pull request review: [7043](https://github.com/hackforla/website/pull/7043#pullrequestreview-2142780972) at 2024-06-26 12:31 PM PDT -santiseccovidal,2024-06-27T16:15:21Z,- santiseccovidal commented on pull request: [7070](https://github.com/hackforla/website/pull/7070#issuecomment-2195127230) at 2024-06-27 09:15 AM PDT -santiseccovidal,2024-06-27T16:28:16Z,- santiseccovidal submitted pull request review: [7070](https://github.com/hackforla/website/pull/7070#pullrequestreview-2145918401) at 2024-06-27 09:28 AM PDT -santiseccovidal,2024-06-29T13:34:14Z,- santiseccovidal submitted pull request review: [7043](https://github.com/hackforla/website/pull/7043#pullrequestreview-2149619503) at 2024-06-29 06:34 AM PDT -santiseccovidal,2024-06-30T21:08:07Z,- santiseccovidal submitted pull request review: [7082](https://github.com/hackforla/website/pull/7082#pullrequestreview-2150196069) at 2024-06-30 02:08 PM PDT -santiseccovidal,2024-07-12T17:30:39Z,- santiseccovidal assigned to issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2212664191) at 2024-07-12 10:30 AM PDT -santiseccovidal,2024-07-12T17:33:25Z,- santiseccovidal unassigned from issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2226018114) at 2024-07-12 10:33 AM PDT -santiseccovidal,2024-07-12T17:38:22Z,- santiseccovidal assigned to issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2226018114) at 2024-07-12 10:38 AM PDT -santiseccovidal,2024-07-14T19:36:23Z,- santiseccovidal submitted pull request review: [7106](https://github.com/hackforla/website/pull/7106#pullrequestreview-2176706279) at 2024-07-14 12:36 PM PDT -santiseccovidal,2024-07-17T16:03:01Z,- santiseccovidal commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2233672187) at 2024-07-17 09:03 AM PDT -santiseccovidal,2024-07-17T22:47:15Z,- santiseccovidal commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2234513296) at 2024-07-17 03:47 PM PDT -santiseccovidal,2024-07-22T17:26:00Z,- santiseccovidal commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2243459196) at 2024-07-22 10:26 AM PDT -santiseccovidal,2024-07-22T17:32:08Z,- santiseccovidal submitted pull request review: [7104](https://github.com/hackforla/website/pull/7104#pullrequestreview-2192154020) at 2024-07-22 10:32 AM PDT -santiseccovidal,2024-07-23T18:57:58Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2246022695) at 2024-07-23 11:57 AM PDT -santiseccovidal,2024-07-23T19:35:31Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2246134810) at 2024-07-23 12:35 PM PDT -santiseccovidal,2024-08-08T21:34:39Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2276691127) at 2024-08-08 02:34 PM PDT -santiseccovidal,2024-08-12T18:03:07Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2284616820) at 2024-08-12 11:03 AM PDT -santiseccovidal,2024-08-13T19:44:35Z,- santiseccovidal opened pull request: [7280](https://github.com/hackforla/website/pull/7280) at 2024-08-13 12:44 PM PDT -santiseccovidal,2024-08-18T04:23:52Z,- santiseccovidal pull request merged: [7280](https://github.com/hackforla/website/pull/7280#event-13921139222) at 2024-08-17 09:23 PM PDT -santiseccovidal,2024-08-19T12:13:01Z,- santiseccovidal submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2245390227) at 2024-08-19 05:13 AM PDT -santiseccovidal,2024-08-19T12:18:15Z,- santiseccovidal commented on pull request: [7312](https://github.com/hackforla/website/pull/7312#issuecomment-2296437816) at 2024-08-19 05:18 AM PDT -santiseccovidal,2024-08-20T14:34:09Z,- santiseccovidal commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299016448) at 2024-08-20 07:34 AM PDT -santiseccovidal,2024-08-20T16:50:24Z,- santiseccovidal submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2248550405) at 2024-08-20 09:50 AM PDT -santiseccovidal,2024-08-20T19:30:31Z,- santiseccovidal commented on issue: [7185](https://github.com/hackforla/website/issues/7185#issuecomment-2299613802) at 2024-08-20 12:30 PM PDT -santiseccovidal,2024-08-20T21:41:41Z,- santiseccovidal submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2249143330) at 2024-08-20 02:41 PM PDT -santiseccovidal,2024-08-20T21:48:03Z,- santiseccovidal submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2249152090) at 2024-08-20 02:48 PM PDT -santiseccovidal,2024-08-21T12:42:14Z,- santiseccovidal submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2250695609) at 2024-08-21 05:42 AM PDT -santiseccovidal,2024-08-21T12:53:37Z,- santiseccovidal submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2250721900) at 2024-08-21 05:53 AM PDT -santiseccovidal,2024-08-25T14:38:13Z,- santiseccovidal assigned to issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2173957256) at 2024-08-25 07:38 AM PDT -santiseccovidal,2024-08-26T13:41:41Z,- santiseccovidal commented on issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2310248903) at 2024-08-26 06:41 AM PDT -santiseccovidal,2024-08-26T13:46:17Z,- santiseccovidal commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2310259160) at 2024-08-26 06:46 AM PDT -santiseccovidal,2024-08-31T00:22:14Z,- santiseccovidal commented on issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2322629526) at 2024-08-30 05:22 PM PDT -santiseccovidal,2024-09-01T17:51:04Z,- santiseccovidal opened pull request: [7375](https://github.com/hackforla/website/pull/7375) at 2024-09-01 10:51 AM PDT -santiseccovidal,2024-09-04T13:15:13Z,- santiseccovidal commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2329013031) at 2024-09-04 06:15 AM PDT -santiseccovidal,2024-09-07T17:43:46Z,- santiseccovidal pull request merged: [7375](https://github.com/hackforla/website/pull/7375#event-14172118547) at 2024-09-07 10:43 AM PDT -santiseccovidal,2024-09-11T12:15:49Z,- santiseccovidal submitted pull request review: [6442](https://github.com/hackforla/website/pull/6442#pullrequestreview-2296732242) at 2024-09-11 05:15 AM PDT -santiseccovidal,2024-09-14T14:26:33Z,- santiseccovidal assigned to issue: [7167](https://github.com/hackforla/website/issues/7167#issuecomment-2264112332) at 2024-09-14 07:26 AM PDT -santiseccovidal,2024-09-14T15:22:34Z,- santiseccovidal opened issue: [7448](https://github.com/hackforla/website/issues/7448) at 2024-09-14 08:22 AM PDT -santiseccovidal,2024-09-14T15:26:56Z,- santiseccovidal opened issue: [7449](https://github.com/hackforla/website/issues/7449) at 2024-09-14 08:26 AM PDT -santiseccovidal,2024-09-14T15:28:20Z,- santiseccovidal opened issue: [7450](https://github.com/hackforla/website/issues/7450) at 2024-09-14 08:28 AM PDT -santiseccovidal,2024-09-14T15:36:16Z,- santiseccovidal opened issue: [7451](https://github.com/hackforla/website/issues/7451) at 2024-09-14 08:36 AM PDT -santiseccovidal,2024-09-14T15:38:23Z,- santiseccovidal opened issue: [7452](https://github.com/hackforla/website/issues/7452) at 2024-09-14 08:38 AM PDT -santiseccovidal,2024-09-14T15:41:25Z,- santiseccovidal opened issue: [7453](https://github.com/hackforla/website/issues/7453) at 2024-09-14 08:41 AM PDT -santiseccovidal,2024-09-14T15:42:50Z,- santiseccovidal opened issue: [7454](https://github.com/hackforla/website/issues/7454) at 2024-09-14 08:42 AM PDT -santiseccovidal,2024-09-14T15:46:33Z,- santiseccovidal opened issue: [7455](https://github.com/hackforla/website/issues/7455) at 2024-09-14 08:46 AM PDT -santiseccovidal,2024-09-14T15:48:51Z,- santiseccovidal opened issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-14 08:48 AM PDT -santiseccovidal,2024-09-18T19:13:47Z,- santiseccovidal opened issue: [7492](https://github.com/hackforla/website/issues/7492) at 2024-09-18 12:13 PM PDT -santiseccovidal,2024-09-22T16:16:34Z,- santiseccovidal commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2366857927) at 2024-09-22 09:16 AM PDT -santiseccovidal,2024-09-22T17:47:08Z,- santiseccovidal commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2366891222) at 2024-09-22 10:47 AM PDT -santiseccovidal,2024-09-22T20:00:37Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2366940134) at 2024-09-22 01:00 PM PDT -santiseccovidal,2024-09-23T18:24:55Z,- santiseccovidal assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-09-23 11:24 AM PDT -santiseccovidal,2024-09-23T18:25:14Z,- santiseccovidal unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-09-23 11:25 AM PDT -santiseccovidal,2024-09-23T20:32:33Z,- santiseccovidal submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2323252445) at 2024-09-23 01:32 PM PDT -santiseccovidal,2024-09-24T15:33:43Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2371649403) at 2024-09-24 08:33 AM PDT -santiseccovidal,2024-09-24T16:22:41Z,- santiseccovidal submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2325788786) at 2024-09-24 09:22 AM PDT -santiseccovidal,2024-09-25T18:39:07Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2374885223) at 2024-09-25 11:39 AM PDT -santiseccovidal,2024-09-25T19:41:46Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2375104355) at 2024-09-25 12:41 PM PDT -santiseccovidal,2024-09-27T14:30:55Z,- santiseccovidal assigned to issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2372798413) at 2024-09-27 07:30 AM PDT -santiseccovidal,2024-09-27T14:34:34Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2379428693) at 2024-09-27 07:34 AM PDT -santiseccovidal,2024-09-27T14:35:09Z,- santiseccovidal closed issue as completed: [6426](https://github.com/hackforla/website/issues/6426#event-14432206906) at 2024-09-27 07:35 AM PDT -santiseccovidal,2024-09-27T14:36:21Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2379432143) at 2024-09-27 07:36 AM PDT -santiseccovidal,2024-09-27T15:44:46Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2379579077) at 2024-09-27 08:44 AM PDT -santiseccovidal,2024-09-27T15:57:21Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2379603291) at 2024-09-27 08:57 AM PDT -santiseccovidal,2024-09-28T21:21:59Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2380906299) at 2024-09-28 02:21 PM PDT -santiseccovidal,2024-09-30T19:54:42Z,- santiseccovidal opened pull request: [7546](https://github.com/hackforla/website/pull/7546) at 2024-09-30 12:54 PM PDT -santiseccovidal,2024-10-01T14:20:00Z,- santiseccovidal commented on pull request: [7546](https://github.com/hackforla/website/pull/7546#issuecomment-2386106849) at 2024-10-01 07:20 AM PDT -santiseccovidal,2024-10-01T14:23:02Z,- santiseccovidal pull request closed w/o merging: [7546](https://github.com/hackforla/website/pull/7546#event-14474021338) at 2024-10-01 07:23 AM PDT -santiseccovidal,2024-10-01T18:22:39Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2386677854) at 2024-10-01 11:22 AM PDT -santiseccovidal,2024-10-07T14:01:01Z,- santiseccovidal submitted pull request review: [7559](https://github.com/hackforla/website/pull/7559#pullrequestreview-2352047447) at 2024-10-07 07:01 AM PDT -santiseccovidal,2024-10-10T16:31:39Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2405568465) at 2024-10-10 09:31 AM PDT -santiseccovidal,2024-10-12T23:51:59Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2408748186) at 2024-10-12 04:51 PM PDT -santiseccovidal,2024-10-13T22:04:01Z,- santiseccovidal reopened pull request: [7546](https://github.com/hackforla/website/pull/7546#event-14474021338) at 2024-10-13 03:04 PM PDT -santiseccovidal,2024-10-13T22:04:24Z,- santiseccovidal pull request closed w/o merging: [7546](https://github.com/hackforla/website/pull/7546#event-14620705172) at 2024-10-13 03:04 PM PDT -santiseccovidal,2024-10-15T15:42:34Z,- santiseccovidal opened pull request: [7595](https://github.com/hackforla/website/pull/7595) at 2024-10-15 08:42 AM PDT -santiseccovidal,2024-10-15T18:38:36Z,- santiseccovidal pull request closed w/o merging: [7595](https://github.com/hackforla/website/pull/7595#event-14662498766) at 2024-10-15 11:38 AM PDT -santiseccovidal,2024-10-15T18:40:12Z,- santiseccovidal reopened pull request: [7595](https://github.com/hackforla/website/pull/7595#event-14662498766) at 2024-10-15 11:40 AM PDT -santiseccovidal,2024-10-15T18:55:19Z,- santiseccovidal pull request closed w/o merging: [7595](https://github.com/hackforla/website/pull/7595#event-14662710396) at 2024-10-15 11:55 AM PDT -santiseccovidal,2024-10-15T19:21:57Z,- santiseccovidal commented on pull request: [7546](https://github.com/hackforla/website/pull/7546#issuecomment-2414827930) at 2024-10-15 12:21 PM PDT -santiseccovidal,2024-10-18T16:32:13Z,- santiseccovidal assigned to issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2378306304) at 2024-10-18 09:32 AM PDT -santiseccovidal,2024-10-18T16:32:29Z,- santiseccovidal unassigned from issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2422845169) at 2024-10-18 09:32 AM PDT -santiseccovidal,2024-10-20T17:37:35Z,- santiseccovidal reopened pull request: [7595](https://github.com/hackforla/website/pull/7595#event-14662710396) at 2024-10-20 10:37 AM PDT -santiseccovidal,2024-10-21T17:55:21Z,- santiseccovidal opened pull request: [7616](https://github.com/hackforla/website/pull/7616) at 2024-10-21 10:55 AM PDT -santiseccovidal,2024-10-21T18:28:57Z,- santiseccovidal commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2427429768) at 2024-10-21 11:28 AM PDT -santiseccovidal,2024-10-22T21:08:18Z,- santiseccovidal commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2430292366) at 2024-10-22 02:08 PM PDT -santiseccovidal,2024-10-25T22:28:40Z,- santiseccovidal commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2438966586) at 2024-10-25 03:28 PM PDT -santiseccovidal,2024-10-26T19:46:04Z,- santiseccovidal commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2439716696) at 2024-10-26 12:46 PM PDT -santiseccovidal,2024-10-26T19:47:43Z,- santiseccovidal submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2397348303) at 2024-10-26 12:47 PM PDT -santiseccovidal,2024-10-27T17:03:11Z,- santiseccovidal commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2440100465) at 2024-10-27 10:03 AM PDT -santiseccovidal,2024-10-27T20:39:07Z,- santiseccovidal commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2440167364) at 2024-10-27 01:39 PM PDT -santiseccovidal,2024-10-28T19:01:16Z,- santiseccovidal commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2442394114) at 2024-10-28 12:01 PM PDT -santiseccovidal,2024-10-29T02:25:54Z,- santiseccovidal pull request merged: [7616](https://github.com/hackforla/website/pull/7616#event-14971886358) at 2024-10-28 07:25 PM PDT -santiseccovidal,2024-10-29T12:41:51Z,- santiseccovidal pull request closed w/o merging: [7595](https://github.com/hackforla/website/pull/7595#event-14983648531) at 2024-10-29 05:41 AM PDT -santiseccovidal,2024-10-29T12:51:55Z,- santiseccovidal commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2444127714) at 2024-10-29 05:51 AM PDT -santiseccovidal,2024-11-01T15:29:07Z,- santiseccovidal submitted pull request review: [7638](https://github.com/hackforla/website/pull/7638#pullrequestreview-2410302309) at 2024-11-01 08:29 AM PDT -santiseccovidal,2024-11-03T20:39:39Z,- santiseccovidal commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2453569952) at 2024-11-03 12:39 PM PST -santiseccovidal,2024-11-10T17:39:01Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2466821192) at 2024-11-10 09:39 AM PST -santiseccovidal,2024-11-14T18:57:51Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2477188692) at 2024-11-14 10:57 AM PST -santiseccovidal,2024-11-15T16:02:14Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479309743) at 2024-11-15 08:02 AM PST -santiseccovidal,2024-11-15T16:09:39Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479324427) at 2024-11-15 08:09 AM PST -santiseccovidal,2024-11-15T16:12:09Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479328886) at 2024-11-15 08:12 AM PST -santiseccovidal,2024-11-15T16:14:05Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479332563) at 2024-11-15 08:14 AM PST -santiseccovidal,2024-11-15T16:19:53Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479343144) at 2024-11-15 08:19 AM PST -santiseccovidal,2024-11-15T16:22:31Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479347917) at 2024-11-15 08:22 AM PST -santiseccovidal,2024-11-15T16:25:48Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479361786) at 2024-11-15 08:25 AM PST -santiseccovidal,2024-11-15T16:49:42Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479419552) at 2024-11-15 08:49 AM PST -santiseccovidal,2024-11-15T16:50:26Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479420738) at 2024-11-15 08:50 AM PST -santiseccovidal,2024-11-15T17:46:58Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479588883) at 2024-11-15 09:46 AM PST -santiseccovidal,2024-11-15T19:37:07Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479791536) at 2024-11-15 11:37 AM PST -santiseccovidal,2024-11-17T22:18:43Z,- santiseccovidal commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481629204) at 2024-11-17 02:18 PM PST -santiseccovidal,2024-11-18T01:44:55Z,- santiseccovidal submitted pull request review: [7723](https://github.com/hackforla/website/pull/7723#pullrequestreview-2441324908) at 2024-11-17 05:44 PM PST -santiseccovidal,2024-11-18T02:08:23Z,- santiseccovidal submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2441339214) at 2024-11-17 06:08 PM PST -santiseccovidal,2024-11-21T19:04:04Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2492040823) at 2024-11-21 11:04 AM PST -santiseccovidal,2024-11-21T19:09:24Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2492050740) at 2024-11-21 11:09 AM PST -santiseccovidal,2024-11-21T20:21:38Z,- santiseccovidal submitted pull request review: [7733](https://github.com/hackforla/website/pull/7733#pullrequestreview-2452588715) at 2024-11-21 12:21 PM PST -santiseccovidal,2024-11-22T18:19:19Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2494480611) at 2024-11-22 10:19 AM PST -santiseccovidal,2024-11-22T18:19:31Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2494480979) at 2024-11-22 10:19 AM PST -santiseccovidal,2024-11-22T18:19:35Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2494481088) at 2024-11-22 10:19 AM PST -santiseccovidal,2024-11-22T21:02:12Z,- santiseccovidal assigned to issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2059588039) at 2024-11-22 01:02 PM PST -santiseccovidal,2024-11-24T05:32:26Z,- santiseccovidal commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2495823724) at 2024-11-23 09:32 PM PST -santiseccovidal,2024-11-24T21:17:25Z,- santiseccovidal opened issue: [7762](https://github.com/hackforla/website/issues/7762) at 2024-11-24 01:17 PM PST -santiseccovidal,2024-12-03T19:35:19Z,- santiseccovidal assigned to issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2515419820) at 2024-12-03 11:35 AM PST -santiseccovidal,2024-12-05T18:30:16Z,- santiseccovidal commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2521127214) at 2024-12-05 10:30 AM PST -santiseccovidal,2024-12-05T18:43:46Z,- santiseccovidal commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2521153234) at 2024-12-05 10:43 AM PST -santiseccovidal,2024-12-05T20:44:36Z,- santiseccovidal commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2521360969) at 2024-12-05 12:44 PM PST -santiseccovidal,2025-01-14T19:44:32Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2590966433) at 2025-01-14 11:44 AM PST -santiseccovidal,2025-01-14T22:35:34Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2591248152) at 2025-01-14 02:35 PM PST -santiseccovidal,2025-01-14T22:54:17Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2591272310) at 2025-01-14 02:54 PM PST -santiseccovidal,2025-01-27T04:19:44Z,- santiseccovidal commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2614820055) at 2025-01-26 08:19 PM PST -santiseccovidal,2025-02-03T15:35:43Z,- santiseccovidal commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2631349855) at 2025-02-03 07:35 AM PST -santiseccovidal,2025-02-05T18:26:55Z,- santiseccovidal submitted pull request review: [7777](https://github.com/hackforla/website/pull/7777#pullrequestreview-2596637961) at 2025-02-05 10:26 AM PST -santiseccovidal,2025-02-16T17:47:52Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2661544320) at 2025-02-16 09:47 AM PST -santiseccovidal,2025-02-16T17:59:00Z,- santiseccovidal commented on pull request: [7908](https://github.com/hackforla/website/pull/7908#issuecomment-2661548235) at 2025-02-16 09:59 AM PST -santiseccovidal,2025-02-16T19:14:06Z,- santiseccovidal assigned to issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2381010652) at 2025-02-16 11:14 AM PST -santiseccovidal,2025-02-16T19:14:23Z,- santiseccovidal unassigned from issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2661576139) at 2025-02-16 11:14 AM PST -santiseccovidal,2025-02-16T19:19:45Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2381010607) at 2025-02-16 11:19 AM PST -santiseccovidal,2025-02-16T19:20:04Z,- santiseccovidal unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 11:20 AM PST -santiseccovidal,2025-02-16T20:00:42Z,- santiseccovidal unassigned from issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2631349855) at 2025-02-16 12:00 PM PST -santiseccovidal,2025-02-16T20:21:25Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 12:21 PM PST -santiseccovidal,2025-02-16T20:21:38Z,- santiseccovidal unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 12:21 PM PST -santiseccovidal,2025-02-16T20:24:29Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661600532) at 2025-02-16 12:24 PM PST -santiseccovidal,2025-02-16T20:24:44Z,- santiseccovidal unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661601504) at 2025-02-16 12:24 PM PST -santiseccovidal,2025-02-17T01:15:51Z,- santiseccovidal submitted pull request review: [7908](https://github.com/hackforla/website/pull/7908#pullrequestreview-2619795969) at 2025-02-16 05:15 PM PST -santiseccovidal,2025-02-17T01:16:34Z,- santiseccovidal submitted pull request review: [7908](https://github.com/hackforla/website/pull/7908#pullrequestreview-2619796377) at 2025-02-16 05:16 PM PST -santiseccovidal,2025-02-22T20:32:56Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2676383123) at 2025-02-22 12:32 PM PST -santiseccovidal,2025-02-23T19:13:20Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661601504) at 2025-02-23 11:13 AM PST -santiseccovidal,2025-02-28T19:47:39Z,- santiseccovidal commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2691428272) at 2025-02-28 11:47 AM PST -santiseccovidal,2025-03-10T18:48:45Z,- santiseccovidal opened pull request: [7987](https://github.com/hackforla/website/pull/7987) at 2025-03-10 11:48 AM PDT -santiseccovidal,2025-03-11T15:27:09Z,- santiseccovidal commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2714761547) at 2025-03-11 08:27 AM PDT -santiseccovidal,2025-03-13T13:46:05Z,- santiseccovidal commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2721318610) at 2025-03-13 06:46 AM PDT -santiseccovidal,2025-03-15T18:45:27Z,- santiseccovidal commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2726928766) at 2025-03-15 11:45 AM PDT -santiseccovidal,2025-03-23T16:21:27Z,- santiseccovidal assigned to issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2381010610) at 2025-03-23 09:21 AM PDT -santiseccovidal,2025-03-23T16:21:40Z,- santiseccovidal unassigned from issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2746296623) at 2025-03-23 09:21 AM PDT -santiseccovidal,2025-03-24T15:15:16Z,- santiseccovidal commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2748489838) at 2025-03-24 08:15 AM PDT -santiseccovidal,2025-03-24T20:49:28Z,- santiseccovidal pull request merged: [7987](https://github.com/hackforla/website/pull/7987#event-16962955789) at 2025-03-24 01:49 PM PDT -santiseccovidal,2025-03-31T13:26:36Z,- santiseccovidal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2766235810) at 2025-03-31 06:26 AM PDT -santiseccovidal,2025-03-31T18:15:59Z,- santiseccovidal submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2730163906) at 2025-03-31 11:15 AM PDT -santiseccovidal,2025-04-09T20:21:04Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2790914511) at 2025-04-09 01:21 PM PDT -santiseccovidal,2025-04-09T20:34:57Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2790939098) at 2025-04-09 01:34 PM PDT -santiseccovidal,2025-04-10T17:07:37Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2794577321) at 2025-04-10 10:07 AM PDT -santiseccovidal,2025-04-13T21:39:54Z,- santiseccovidal submitted pull request review: [8062](https://github.com/hackforla/website/pull/8062#pullrequestreview-2762849535) at 2025-04-13 02:39 PM PDT -santiseccovidal,2025-04-16T03:31:15Z,- santiseccovidal submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2770552507) at 2025-04-15 08:31 PM PDT -santiseccovidal,2025-04-16T03:33:19Z,- santiseccovidal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2808138838) at 2025-04-15 08:33 PM PDT -santiseccovidal,2025-04-16T19:53:35Z,- santiseccovidal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2810610160) at 2025-04-16 12:53 PM PDT -santiseccovidal,2025-04-21T23:56:20Z,- santiseccovidal commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2819731155) at 2025-04-21 04:56 PM PDT -santiseccovidal,2025-04-22T00:09:32Z,- santiseccovidal submitted pull request review: [8069](https://github.com/hackforla/website/pull/8069#pullrequestreview-2782452513) at 2025-04-21 05:09 PM PDT -santiseccovidal,2025-04-28T01:03:22Z,- santiseccovidal closed issue by PR 8072: [7755](https://github.com/hackforla/website/issues/7755#event-17425621350) at 2025-04-27 06:03 PM PDT -santiseccovidal,2025-04-28T01:11:39Z,- santiseccovidal submitted pull request review: [8090](https://github.com/hackforla/website/pull/8090#pullrequestreview-2797812273) at 2025-04-27 06:11 PM PDT -santiseccovidal,2025-04-28T18:04:20Z,- santiseccovidal submitted pull request review: [8088](https://github.com/hackforla/website/pull/8088#pullrequestreview-2800212144) at 2025-04-28 11:04 AM PDT -santiseccovidal,2025-04-28T18:04:55Z,- santiseccovidal closed issue by PR 8088: [7734](https://github.com/hackforla/website/issues/7734#event-17439422409) at 2025-04-28 11:04 AM PDT -santiseccovidal,2025-05-02T18:07:40Z,- santiseccovidal closed issue by PR 8107: [7441](https://github.com/hackforla/website/issues/7441#event-17503204372) at 2025-05-02 11:07 AM PDT -santiseccovidal,2025-05-06T20:07:38Z,- santiseccovidal assigned to issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392752116) at 2025-05-06 01:07 PM PDT -santiseccovidal,2025-05-06T20:11:31Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2855833823) at 2025-05-06 01:11 PM PDT -santiseccovidal,2025-05-16T19:55:22Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2887564351) at 2025-05-16 12:55 PM PDT -santiseccovidal,2025-05-19T02:58:37Z,- santiseccovidal closed issue by PR 8126: [7943](https://github.com/hackforla/website/issues/7943#event-17706200425) at 2025-05-18 07:58 PM PDT -santiseccovidal,2025-05-22T22:19:31Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2902730491) at 2025-05-22 03:19 PM PDT -santiseccovidal,2025-05-23T18:27:59Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2905416765) at 2025-05-23 11:27 AM PDT -santiseccovidal,2025-05-28T19:17:32Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917364988) at 2025-05-28 12:17 PM PDT -santiseccovidal,2025-05-28T19:25:58Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917386097) at 2025-05-28 12:25 PM PDT -santiseccovidal,2025-05-28T19:29:45Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917394470) at 2025-05-28 12:29 PM PDT -santiseccovidal,2025-05-28T19:33:51Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917403332) at 2025-05-28 12:33 PM PDT -santiseccovidal,2025-05-28T19:41:01Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917418613) at 2025-05-28 12:41 PM PDT -santiseccovidal,2025-05-28T19:54:45Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917453101) at 2025-05-28 12:54 PM PDT -santiseccovidal,2025-06-06T17:36:57Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2949975892) at 2025-06-06 10:36 AM PDT -santiseccovidal,2025-06-15T18:09:20Z,- santiseccovidal closed issue by PR 8177: [8176](https://github.com/hackforla/website/issues/8176#event-18158447423) at 2025-06-15 11:09 AM PDT -santiseccovidal,2025-06-16T18:15:06Z,- santiseccovidal submitted pull request review: [8181](https://github.com/hackforla/website/pull/8181#pullrequestreview-2933062232) at 2025-06-16 11:15 AM PDT -santiseccovidal,2025-06-25T17:27:25Z,- santiseccovidal submitted pull request review: [8175](https://github.com/hackforla/website/pull/8175#pullrequestreview-2959067589) at 2025-06-25 10:27 AM PDT -santiseccovidal,2025-06-29T17:12:48Z,- santiseccovidal commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3016876291) at 2025-06-29 10:12 AM PDT -santiseccovidal,2025-06-29T23:38:53Z,- santiseccovidal submitted pull request review: [8235](https://github.com/hackforla/website/pull/8235#pullrequestreview-2969587363) at 2025-06-29 04:38 PM PDT -santiseccovidal,2025-06-30T14:05:25Z,- santiseccovidal submitted pull request review: [8235](https://github.com/hackforla/website/pull/8235#pullrequestreview-2971378313) at 2025-06-30 07:05 AM PDT -santiseccovidal,2025-06-30T14:08:21Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3019311376) at 2025-06-30 07:08 AM PDT -santiseccovidal,2025-07-16T15:12:40Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3079084636) at 2025-07-16 08:12 AM PDT -santiseccovidal,2025-08-02T14:00:48Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3146516880) at 2025-08-02 07:00 AM PDT -sanya301,2022-04-16T01:32:44Z,- sanya301 opened issue: [3059](https://github.com/hackforla/website/issues/3059) at 2022-04-15 06:32 PM PDT -sanya301,2022-04-16T02:09:36Z,- sanya301 commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1100508870) at 2022-04-15 07:09 PM PDT -sanya301,2022-04-21T04:31:26Z,- sanya301 commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1104696934) at 2022-04-20 09:31 PM PDT -sarahgraup,8129,SKILLS ISSUE -sarahgraup,2025-05-14T02:47:23Z,- sarahgraup opened issue: [8129](https://github.com/hackforla/website/issues/8129) at 2025-05-13 07:47 PM PDT -sarahgraup,2025-05-14T02:47:34Z,- sarahgraup assigned to issue: [8129](https://github.com/hackforla/website/issues/8129) at 2025-05-13 07:47 PM PDT -sarahgraup,2025-05-14T02:56:46Z,- sarahgraup commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2878489216) at 2025-05-13 07:56 PM PDT -sarahgraup,2025-05-23T15:44:14Z,- sarahgraup commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2904886375) at 2025-05-23 08:44 AM PDT -sarahgraup,2025-05-27T19:39:29Z,- sarahgraup assigned to issue: [8000](https://github.com/hackforla/website/issues/8000) at 2025-05-27 12:39 PM PDT -sarahgraup,2025-05-27T19:51:29Z,- sarahgraup commented on issue: [8000](https://github.com/hackforla/website/issues/8000#issuecomment-2913818195) at 2025-05-27 12:51 PM PDT -sarahgraup,2025-05-27T21:48:22Z,- sarahgraup opened pull request: [8162](https://github.com/hackforla/website/pull/8162) at 2025-05-27 02:48 PM PDT -sarahgraup,2025-06-04T17:29:03Z,- sarahgraup pull request merged: [8162](https://github.com/hackforla/website/pull/8162#event-17986163150) at 2025-06-04 10:29 AM PDT -Saranjen,5079,SKILLS ISSUE -Saranjen,2023-07-26T03:05:30Z,- Saranjen opened issue: [5079](https://github.com/hackforla/website/issues/5079) at 2023-07-25 08:05 PM PDT -Saranjen,2023-07-26T03:05:42Z,- Saranjen assigned to issue: [5079](https://github.com/hackforla/website/issues/5079) at 2023-07-25 08:05 PM PDT -sarans-h,2024-10-30T10:08:37Z,- sarans-h commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2446428278) at 2024-10-30 03:08 AM PDT -sarL3y,2019-10-23T04:00:04Z,- sarL3y commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-545255117) at 2019-10-22 09:00 PM PDT -sarL3y,2019-10-23T09:06:47Z,- sarL3y commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-545346609) at 2019-10-23 02:06 AM PDT -sarL3y,2019-10-29T03:44:26Z,- sarL3y opened pull request: [164](https://github.com/hackforla/website/pull/164) at 2019-10-28 08:44 PM PDT -sarL3y,2019-10-30T02:43:34Z,- sarL3y pull request merged: [164](https://github.com/hackforla/website/pull/164#event-2754444202) at 2019-10-29 07:43 PM PDT -sarL3y,2019-10-30T03:18:26Z,- sarL3y commented on issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-547721864) at 2019-10-29 08:18 PM PDT -sarL3y,2019-11-05T03:12:18Z,- sarL3y commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-549644539) at 2019-11-04 07:12 PM PST -sarL3y,2019-11-30T00:26:59Z,- sarL3y opened issue: [201](https://github.com/hackforla/website/issues/201) at 2019-11-29 04:26 PM PST -sarL3y,2020-01-22T02:55:28Z,- sarL3y assigned to issue: [288](https://github.com/hackforla/website/issues/288) at 2020-01-21 06:55 PM PST -sarL3y,2020-01-27T17:34:50Z,- sarL3y commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578863018) at 2020-01-27 09:34 AM PST -sarL3y,2020-01-27T17:37:17Z,- sarL3y commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578864077) at 2020-01-27 09:37 AM PST -sarL3y,2020-01-27T22:43:35Z,- sarL3y assigned to issue: [286](https://github.com/hackforla/website/issues/286) at 2020-01-27 02:43 PM PST -sarL3y,2020-03-02T03:47:54Z,- sarL3y closed issue as completed: [286](https://github.com/hackforla/website/issues/286#event-3086310049) at 2020-03-01 07:47 PM PST -sarL3y,2020-03-02T23:32:29Z,- sarL3y commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-593677710) at 2020-03-02 03:32 PM PST -sarL3y,2020-05-10T17:54:33Z,- sarL3y commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-626364864) at 2020-05-10 10:54 AM PDT -sarthkdobriyal,2023-02-23T13:50:05Z,- sarthkdobriyal opened pull request: [4030](https://github.com/hackforla/website/pull/4030) at 2023-02-23 05:50 AM PST -sarthkdobriyal,2023-02-24T04:14:05Z,- sarthkdobriyal pull request closed w/o merging: [4030](https://github.com/hackforla/website/pull/4030#event-8597984506) at 2023-02-23 08:14 PM PST -Satenik-Ba,3707,SKILLS ISSUE -Satenik-Ba,2022-11-09T03:31:38Z,- Satenik-Ba opened issue: [3707](https://github.com/hackforla/website/issues/3707) at 2022-11-08 07:31 PM PST -Satenik-Ba,2022-11-20T19:33:45Z,- Satenik-Ba assigned to issue: [3707](https://github.com/hackforla/website/issues/3707) at 2022-11-20 11:33 AM PST -Satenik-Ba,2022-11-20T19:38:40Z,- Satenik-Ba assigned to issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1312622234) at 2022-11-20 11:38 AM PST -Satenik-Ba,2022-11-20T19:40:02Z,- Satenik-Ba commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1321224279) at 2022-11-20 11:40 AM PST -Satenik-Ba,2022-11-21T22:22:33Z,- Satenik-Ba opened pull request: [3737](https://github.com/hackforla/website/pull/3737) at 2022-11-21 02:22 PM PST -Satenik-Ba,2022-11-22T18:23:15Z,- Satenik-Ba pull request merged: [3737](https://github.com/hackforla/website/pull/3737#event-7870584176) at 2022-11-22 10:23 AM PST -Satenik-Ba,2022-11-22T18:23:27Z,- Satenik-Ba reopened pull request: [3737](https://github.com/hackforla/website/pull/3737#event-7870584176) at 2022-11-22 10:23 AM PST -Satenik-Ba,2022-11-22T18:24:12Z,- Satenik-Ba closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-7870590371) at 2022-11-22 10:24 AM PST -Satenik-Ba,2022-11-23T02:19:58Z,- Satenik-Ba assigned to issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1145856056) at 2022-11-22 06:19 PM PST -Satenik-Ba,2022-11-24T03:16:50Z,- Satenik-Ba unassigned from issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1324465225) at 2022-11-23 07:16 PM PST -Satenik-Ba,2022-11-24T03:17:35Z,- Satenik-Ba assigned to issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1324465225) at 2022-11-23 07:17 PM PST -Satenik-Ba,2022-11-24T03:18:25Z,- Satenik-Ba commented on issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1325898298) at 2022-11-23 07:18 PM PST -Satenik-Ba,2022-11-24T18:54:22Z,- Satenik-Ba pull request merged: [3737](https://github.com/hackforla/website/pull/3737#event-7888190486) at 2022-11-24 10:54 AM PST -Satenik-Ba,2022-11-25T03:56:46Z,- Satenik-Ba opened pull request: [3745](https://github.com/hackforla/website/pull/3745) at 2022-11-24 07:56 PM PST -Satenik-Ba,2022-11-25T22:19:06Z,- Satenik-Ba pull request merged: [3745](https://github.com/hackforla/website/pull/3745#event-7895318895) at 2022-11-25 02:19 PM PST -Satenik-Ba,2022-11-28T00:18:52Z,- Satenik-Ba assigned to issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1314443053) at 2022-11-27 04:18 PM PST -Satenik-Ba,2022-11-28T00:20:10Z,- Satenik-Ba commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1328381527) at 2022-11-27 04:20 PM PST -Satenik-Ba,2022-11-28T18:29:44Z,- Satenik-Ba opened pull request: [3752](https://github.com/hackforla/website/pull/3752) at 2022-11-28 10:29 AM PST -Satenik-Ba,2022-11-29T02:00:56Z,- Satenik-Ba commented on issue: [3707](https://github.com/hackforla/website/issues/3707#issuecomment-1329975447) at 2022-11-28 06:00 PM PST -Satenik-Ba,2022-11-29T02:04:50Z,- Satenik-Ba closed issue as completed: [3707](https://github.com/hackforla/website/issues/3707#event-7908271956) at 2022-11-28 06:04 PM PST -Satenik-Ba,2022-11-29T03:12:22Z,- Satenik-Ba pull request merged: [3752](https://github.com/hackforla/website/pull/3752#event-7908536320) at 2022-11-28 07:12 PM PST -Satenik-Ba,2023-01-11T17:46:28Z,- Satenik-Ba assigned to issue: [3773](https://github.com/hackforla/website/issues/3773) at 2023-01-11 09:46 AM PST -Satenik-Ba,2023-01-11T17:48:31Z,- Satenik-Ba commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1379263015) at 2023-01-11 09:48 AM PST -Satenik-Ba,2023-01-11T22:45:38Z,- Satenik-Ba opened pull request: [3810](https://github.com/hackforla/website/pull/3810) at 2023-01-11 02:45 PM PST -Satenik-Ba,2023-01-15T03:43:00Z,- Satenik-Ba commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1383047610) at 2023-01-14 07:43 PM PST -Satenik-Ba,2023-01-15T18:21:03Z,- Satenik-Ba opened pull request: [3819](https://github.com/hackforla/website/pull/3819) at 2023-01-15 10:21 AM PST -Satenik-Ba,2023-01-15T18:35:56Z,- Satenik-Ba pull request closed w/o merging: [3819](https://github.com/hackforla/website/pull/3819#event-8230163626) at 2023-01-15 10:35 AM PST -Satenik-Ba,2023-01-16T19:05:59Z,- Satenik-Ba commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1384450037) at 2023-01-16 11:05 AM PST -Satenik-Ba,2023-01-17T15:59:36Z,- Satenik-Ba pull request merged: [3810](https://github.com/hackforla/website/pull/3810#event-8247198768) at 2023-01-17 07:59 AM PST -Satenik-Ba,2023-01-20T05:54:24Z,- Satenik-Ba assigned to issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1375868506) at 2023-01-19 09:54 PM PST -Satenik-Ba,2023-01-20T05:55:32Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1397953096) at 2023-01-19 09:55 PM PST -Satenik-Ba,2023-01-23T21:12:23Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1400985766) at 2023-01-23 01:12 PM PST -Satenik-Ba,2023-01-23T21:22:49Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1400999243) at 2023-01-23 01:22 PM PST -Satenik-Ba,2023-01-30T17:29:38Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1409030230) at 2023-01-30 09:29 AM PST -Satenik-Ba,2023-02-13T01:02:01Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1427189678) at 2023-02-12 05:02 PM PST -Satenik-Ba,2023-02-15T01:59:59Z,- Satenik-Ba opened pull request: [3979](https://github.com/hackforla/website/pull/3979) at 2023-02-14 05:59 PM PST -Satenik-Ba,2023-02-15T02:09:44Z,- Satenik-Ba commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1430652258) at 2023-02-14 06:09 PM PST -Satenik-Ba,2023-02-16T18:30:11Z,- Satenik-Ba commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1433531435) at 2023-02-16 10:30 AM PST -Satenik-Ba,2023-02-16T22:30:07Z,- Satenik-Ba submitted pull request review: [3980](https://github.com/hackforla/website/pull/3980#pullrequestreview-1302382115) at 2023-02-16 02:30 PM PST -Satenik-Ba,2023-02-21T17:46:23Z,- Satenik-Ba commented on pull request: [4018](https://github.com/hackforla/website/pull/4018#issuecomment-1438874814) at 2023-02-21 09:46 AM PST -Satenik-Ba,2023-02-24T01:55:13Z,- Satenik-Ba submitted pull request review: [4018](https://github.com/hackforla/website/pull/4018#pullrequestreview-1312387251) at 2023-02-23 05:55 PM PST -Satenik-Ba,2023-02-25T22:41:58Z,- Satenik-Ba pull request merged: [3979](https://github.com/hackforla/website/pull/3979#event-8608621769) at 2023-02-25 02:41 PM PST -Satenik-Ba,2023-02-27T22:53:06Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1447235493) at 2023-02-27 02:53 PM PST -Satenik-Ba,2023-02-28T02:21:20Z,- Satenik-Ba opened pull request: [4053](https://github.com/hackforla/website/pull/4053) at 2023-02-27 06:21 PM PST -Satenik-Ba,2023-03-02T19:04:41Z,- Satenik-Ba commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1452411126) at 2023-03-02 11:04 AM PST -Satenik-Ba,2023-03-02T19:04:41Z,- Satenik-Ba pull request merged: [4053](https://github.com/hackforla/website/pull/4053#event-8652773697) at 2023-03-02 11:04 AM PST -Satenik-Ba,2023-03-02T19:04:46Z,- Satenik-Ba reopened pull request: [4053](https://github.com/hackforla/website/pull/4053#event-8652773697) at 2023-03-02 11:04 AM PST -Satenik-Ba,2023-03-02T19:05:17Z,- Satenik-Ba commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1452411881) at 2023-03-02 11:05 AM PST -Satenik-Ba,2023-03-02T20:25:31Z,- Satenik-Ba pull request merged: [4053](https://github.com/hackforla/website/pull/4053#event-8653404197) at 2023-03-02 12:25 PM PST -SAUMILDHANKAR,2021-08-11T02:19:43Z,- SAUMILDHANKAR assigned to issue: [1975](https://github.com/hackforla/website/issues/1975) at 2021-08-10 07:19 PM PDT -SAUMILDHANKAR,2021-08-15T05:45:52Z,- SAUMILDHANKAR opened pull request: [2119](https://github.com/hackforla/website/pull/2119) at 2021-08-14 10:45 PM PDT -SAUMILDHANKAR,2021-08-15T06:34:32Z,- SAUMILDHANKAR commented on issue: [1975](https://github.com/hackforla/website/issues/1975#issuecomment-899003758) at 2021-08-14 11:34 PM PDT -SAUMILDHANKAR,2021-08-19T00:13:37Z,- SAUMILDHANKAR commented on pull request: [2119](https://github.com/hackforla/website/pull/2119#issuecomment-901512502) at 2021-08-18 05:13 PM PDT -SAUMILDHANKAR,2021-08-19T03:09:47Z,- SAUMILDHANKAR pull request merged: [2119](https://github.com/hackforla/website/pull/2119#event-5178114489) at 2021-08-18 08:09 PM PDT -SAUMILDHANKAR,2021-08-19T19:18:38Z,- SAUMILDHANKAR commented on pull request: [2119](https://github.com/hackforla/website/pull/2119#issuecomment-902175985) at 2021-08-19 12:18 PM PDT -SAUMILDHANKAR,2021-08-20T02:30:02Z,- SAUMILDHANKAR commented on issue: [2093](https://github.com/hackforla/website/issues/2093#issuecomment-902383412) at 2021-08-19 07:30 PM PDT -SAUMILDHANKAR,2021-08-20T02:30:38Z,- SAUMILDHANKAR assigned to issue: [2092](https://github.com/hackforla/website/issues/2092) at 2021-08-19 07:30 PM PDT -SAUMILDHANKAR,2021-08-21T23:01:54Z,- SAUMILDHANKAR opened pull request: [2157](https://github.com/hackforla/website/pull/2157) at 2021-08-21 04:01 PM PDT -SAUMILDHANKAR,2021-08-21T23:15:00Z,- SAUMILDHANKAR commented on issue: [2092](https://github.com/hackforla/website/issues/2092#issuecomment-903187333) at 2021-08-21 04:15 PM PDT -SAUMILDHANKAR,2021-08-22T19:16:41Z,- SAUMILDHANKAR commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-903317220) at 2021-08-22 12:16 PM PDT -SAUMILDHANKAR,2021-08-23T22:27:02Z,- SAUMILDHANKAR submitted pull request review: [2136](https://github.com/hackforla/website/pull/2136#pullrequestreview-736618305) at 2021-08-23 03:27 PM PDT -SAUMILDHANKAR,2021-08-24T07:50:55Z,- SAUMILDHANKAR submitted pull request review: [2136](https://github.com/hackforla/website/pull/2136#pullrequestreview-736906171) at 2021-08-24 12:50 AM PDT -SAUMILDHANKAR,2021-08-26T23:11:46Z,- SAUMILDHANKAR commented on pull request: [2157](https://github.com/hackforla/website/pull/2157#issuecomment-906803299) at 2021-08-26 04:11 PM PDT -SAUMILDHANKAR,2021-08-28T01:39:13Z,- SAUMILDHANKAR pull request merged: [2157](https://github.com/hackforla/website/pull/2157#event-5221154746) at 2021-08-27 06:39 PM PDT -SAUMILDHANKAR,2021-08-29T20:17:08Z,- SAUMILDHANKAR commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-907865068) at 2021-08-29 01:17 PM PDT -SAUMILDHANKAR,2021-08-31T19:38:03Z,- SAUMILDHANKAR assigned to issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255180) at 2021-08-31 12:38 PM PDT -SAUMILDHANKAR,2021-09-03T06:31:31Z,- SAUMILDHANKAR opened pull request: [2217](https://github.com/hackforla/website/pull/2217) at 2021-09-02 11:31 PM PDT -SAUMILDHANKAR,2021-09-08T02:35:08Z,- SAUMILDHANKAR opened issue: [2232](https://github.com/hackforla/website/issues/2232) at 2021-09-07 07:35 PM PDT -SAUMILDHANKAR,2021-09-12T17:13:37Z,- SAUMILDHANKAR commented on issue: [1901](https://github.com/hackforla/website/issues/1901#issuecomment-917675083) at 2021-09-12 10:13 AM PDT -SAUMILDHANKAR,2021-09-20T06:53:39Z,- SAUMILDHANKAR submitted pull request review: [2284](https://github.com/hackforla/website/pull/2284#pullrequestreview-758295111) at 2021-09-19 11:53 PM PDT -SAUMILDHANKAR,2021-09-30T21:30:18Z,- SAUMILDHANKAR submitted pull request review: [2308](https://github.com/hackforla/website/pull/2308#pullrequestreview-768364367) at 2021-09-30 02:30 PM PDT -SAUMILDHANKAR,2021-09-30T22:07:49Z,- SAUMILDHANKAR submitted pull request review: [2305](https://github.com/hackforla/website/pull/2305#pullrequestreview-768387574) at 2021-09-30 03:07 PM PDT -SAUMILDHANKAR,2021-10-03T06:09:43Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-932870657) at 2021-10-02 11:09 PM PDT -SAUMILDHANKAR,2021-10-05T07:27:18Z,- SAUMILDHANKAR submitted pull request review: [2314](https://github.com/hackforla/website/pull/2314#pullrequestreview-771071229) at 2021-10-05 12:27 AM PDT -SAUMILDHANKAR,2021-10-06T00:26:20Z,- SAUMILDHANKAR submitted pull request review: [2313](https://github.com/hackforla/website/pull/2313#pullrequestreview-772094819) at 2021-10-05 05:26 PM PDT -SAUMILDHANKAR,2021-10-10T17:02:10Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-939516613) at 2021-10-10 10:02 AM PDT -SAUMILDHANKAR,2021-10-13T02:25:15Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941855908) at 2021-10-12 07:25 PM PDT -SAUMILDHANKAR,2021-10-13T02:34:20Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941859570) at 2021-10-12 07:34 PM PDT -SAUMILDHANKAR,2021-10-13T02:39:08Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941861710) at 2021-10-12 07:39 PM PDT -SAUMILDHANKAR,2021-10-13T02:42:54Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941863264) at 2021-10-12 07:42 PM PDT -SAUMILDHANKAR,2021-10-13T02:46:51Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941864702) at 2021-10-12 07:46 PM PDT -SAUMILDHANKAR,2021-10-13T02:48:32Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941865335) at 2021-10-12 07:48 PM PDT -SAUMILDHANKAR,2021-10-17T16:56:05Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-945158489) at 2021-10-17 09:56 AM PDT -SAUMILDHANKAR,2021-10-24T16:35:24Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-950354981) at 2021-10-24 09:35 AM PDT -SAUMILDHANKAR,2021-10-26T23:03:39Z,- SAUMILDHANKAR submitted pull request review: [2394](https://github.com/hackforla/website/pull/2394#pullrequestreview-790002246) at 2021-10-26 04:03 PM PDT -SAUMILDHANKAR,2021-11-02T22:17:22Z,- SAUMILDHANKAR opened issue: [2438](https://github.com/hackforla/website/issues/2438) at 2021-11-02 03:17 PM PDT -SAUMILDHANKAR,2021-11-05T00:31:14Z,- SAUMILDHANKAR opened issue: [2451](https://github.com/hackforla/website/issues/2451) at 2021-11-04 05:31 PM PDT -SAUMILDHANKAR,2021-11-07T17:44:26Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-962652341) at 2021-11-07 09:44 AM PST -SAUMILDHANKAR,2021-11-09T00:48:00Z,- SAUMILDHANKAR submitted pull request review: [2452](https://github.com/hackforla/website/pull/2452#pullrequestreview-800745004) at 2021-11-08 04:48 PM PST -SAUMILDHANKAR,2021-11-10T00:52:16Z,- SAUMILDHANKAR submitted pull request review: [2452](https://github.com/hackforla/website/pull/2452#pullrequestreview-802039124) at 2021-11-09 04:52 PM PST -SAUMILDHANKAR,2021-11-14T17:44:02Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-968334971) at 2021-11-14 09:44 AM PST -SAUMILDHANKAR,2021-11-17T03:47:03Z,- SAUMILDHANKAR opened issue: [2496](https://github.com/hackforla/website/issues/2496) at 2021-11-16 07:47 PM PST -SAUMILDHANKAR,2021-11-21T17:47:01Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-974862932) at 2021-11-21 09:47 AM PST -SAUMILDHANKAR,2021-11-21T19:07:33Z,- SAUMILDHANKAR commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-974875195) at 2021-11-21 11:07 AM PST -SAUMILDHANKAR,2021-11-28T09:58:24Z,- SAUMILDHANKAR opened pull request: [2516](https://github.com/hackforla/website/pull/2516) at 2021-11-28 01:58 AM PST -SAUMILDHANKAR,2021-11-28T10:14:03Z,- SAUMILDHANKAR pull request closed w/o merging: [2516](https://github.com/hackforla/website/pull/2516#event-5680957218) at 2021-11-28 02:14 AM PST -SAUMILDHANKAR,2021-11-28T10:28:25Z,- SAUMILDHANKAR commented on pull request: [2516](https://github.com/hackforla/website/pull/2516#issuecomment-981060023) at 2021-11-28 02:28 AM PST -SAUMILDHANKAR,2021-11-28T10:28:49Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-981060068) at 2021-11-28 02:28 AM PST -SAUMILDHANKAR,2021-12-05T04:34:12Z,- SAUMILDHANKAR opened issue: [2544](https://github.com/hackforla/website/issues/2544) at 2021-12-04 08:34 PM PST -SAUMILDHANKAR,2021-12-08T03:37:06Z,- SAUMILDHANKAR opened issue: [2558](https://github.com/hackforla/website/issues/2558) at 2021-12-07 07:37 PM PST -SAUMILDHANKAR,2021-12-08T03:58:55Z,- SAUMILDHANKAR opened issue: [2559](https://github.com/hackforla/website/issues/2559) at 2021-12-07 07:58 PM PST -SAUMILDHANKAR,2021-12-08T04:02:30Z,- SAUMILDHANKAR opened issue: [2560](https://github.com/hackforla/website/issues/2560) at 2021-12-07 08:02 PM PST -SAUMILDHANKAR,2021-12-09T07:10:18Z,- SAUMILDHANKAR commented on issue: [2544](https://github.com/hackforla/website/issues/2544#issuecomment-989575961) at 2021-12-08 11:10 PM PST -SAUMILDHANKAR,2021-12-16T03:11:28Z,- SAUMILDHANKAR opened issue: [2592](https://github.com/hackforla/website/issues/2592) at 2021-12-15 07:11 PM PST -SAUMILDHANKAR,2021-12-17T00:59:35Z,- SAUMILDHANKAR commented on pull request: [2217](https://github.com/hackforla/website/pull/2217#issuecomment-996330262) at 2021-12-16 04:59 PM PST -SAUMILDHANKAR,2021-12-17T03:11:38Z,- SAUMILDHANKAR pull request merged: [2217](https://github.com/hackforla/website/pull/2217#event-5782183157) at 2021-12-16 07:11 PM PST -SAUMILDHANKAR,2021-12-17T08:05:58Z,- SAUMILDHANKAR opened issue: [2596](https://github.com/hackforla/website/issues/2596) at 2021-12-17 12:05 AM PST -SAUMILDHANKAR,2021-12-18T20:44:28Z,- SAUMILDHANKAR opened issue: [2600](https://github.com/hackforla/website/issues/2600) at 2021-12-18 12:44 PM PST -SAUMILDHANKAR,2021-12-18T23:34:14Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-997299775) at 2021-12-18 03:34 PM PST -SAUMILDHANKAR,2021-12-19T09:52:17Z,- SAUMILDHANKAR commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-997360066) at 2021-12-19 01:52 AM PST -SAUMILDHANKAR,2021-12-19T09:58:19Z,- SAUMILDHANKAR commented on issue: [2586](https://github.com/hackforla/website/issues/2586#issuecomment-997361230) at 2021-12-19 01:58 AM PST -SAUMILDHANKAR,2021-12-19T10:01:55Z,- SAUMILDHANKAR commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-997361990) at 2021-12-19 02:01 AM PST -SAUMILDHANKAR,2021-12-19T11:23:14Z,- SAUMILDHANKAR commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-997374795) at 2021-12-19 03:23 AM PST -SAUMILDHANKAR,2021-12-20T01:28:49Z,- SAUMILDHANKAR assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 05:28 PM PST -SAUMILDHANKAR,2021-12-21T00:09:31Z,- SAUMILDHANKAR opened pull request: [2609](https://github.com/hackforla/website/pull/2609) at 2021-12-20 04:09 PM PST -SAUMILDHANKAR,2021-12-21T00:15:44Z,- SAUMILDHANKAR pull request merged: [2609](https://github.com/hackforla/website/pull/2609#event-5795861785) at 2021-12-20 04:15 PM PST -SAUMILDHANKAR,2021-12-21T00:55:09Z,- SAUMILDHANKAR commented on issue: [2483](https://github.com/hackforla/website/issues/2483#issuecomment-998380781) at 2021-12-20 04:55 PM PST -SAUMILDHANKAR,2021-12-21T01:00:47Z,- SAUMILDHANKAR commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-998382887) at 2021-12-20 05:00 PM PST -SAUMILDHANKAR,2021-12-21T01:03:40Z,- SAUMILDHANKAR commented on issue: [2382](https://github.com/hackforla/website/issues/2382#issuecomment-998384408) at 2021-12-20 05:03 PM PST -SAUMILDHANKAR,2021-12-21T01:06:19Z,- SAUMILDHANKAR commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-998385542) at 2021-12-20 05:06 PM PST -SAUMILDHANKAR,2021-12-21T01:13:14Z,- SAUMILDHANKAR commented on issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-998388755) at 2021-12-20 05:13 PM PST -SAUMILDHANKAR,2021-12-21T08:47:24Z,- SAUMILDHANKAR commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-998583814) at 2021-12-21 12:47 AM PST -SAUMILDHANKAR,2021-12-21T08:57:45Z,- SAUMILDHANKAR closed issue by PR 2593: [2552](https://github.com/hackforla/website/issues/2552#event-5797501253) at 2021-12-21 12:57 AM PST -SAUMILDHANKAR,2021-12-21T10:26:09Z,- SAUMILDHANKAR commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-998659412) at 2021-12-21 02:26 AM PST -SAUMILDHANKAR,2021-12-21T10:29:27Z,- SAUMILDHANKAR closed issue by PR 2594: [2408](https://github.com/hackforla/website/issues/2408#event-5798032834) at 2021-12-21 02:29 AM PST -SAUMILDHANKAR,2021-12-24T08:53:19Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1000731301) at 2021-12-24 12:53 AM PST -SAUMILDHANKAR,2021-12-25T04:18:04Z,- SAUMILDHANKAR commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1000970488) at 2021-12-24 08:18 PM PST -SAUMILDHANKAR,2021-12-25T10:13:27Z,- SAUMILDHANKAR opened issue: [2625](https://github.com/hackforla/website/issues/2625) at 2021-12-25 02:13 AM PST -SAUMILDHANKAR,2021-12-26T09:11:36Z,- SAUMILDHANKAR commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1001135539) at 2021-12-26 01:11 AM PST -SAUMILDHANKAR,2021-12-26T09:33:03Z,- SAUMILDHANKAR assigned to issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-974852333) at 2021-12-26 01:33 AM PST -SAUMILDHANKAR,2021-12-26T09:37:21Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1001138578) at 2021-12-26 01:37 AM PST -SAUMILDHANKAR,2021-12-26T09:53:14Z,- SAUMILDHANKAR opened pull request: [2630](https://github.com/hackforla/website/pull/2630) at 2021-12-26 01:53 AM PST -SAUMILDHANKAR,2021-12-26T09:58:45Z,- SAUMILDHANKAR pull request merged: [2630](https://github.com/hackforla/website/pull/2630#event-5815425312) at 2021-12-26 01:58 AM PST -SAUMILDHANKAR,2021-12-26T10:02:02Z,- SAUMILDHANKAR commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-1001142832) at 2021-12-26 02:02 AM PST -SAUMILDHANKAR,2021-12-26T10:04:42Z,- SAUMILDHANKAR reopened issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1001143486) at 2021-12-26 02:04 AM PST -SAUMILDHANKAR,2021-12-27T06:25:51Z,- SAUMILDHANKAR submitted pull request review: [2620](https://github.com/hackforla/website/pull/2620#pullrequestreview-840186193) at 2021-12-26 10:25 PM PST -SAUMILDHANKAR,2021-12-27T06:27:35Z,- SAUMILDHANKAR closed issue by PR 2620: [2544](https://github.com/hackforla/website/issues/2544#event-5816672764) at 2021-12-26 10:27 PM PST -SAUMILDHANKAR,2021-12-27T08:03:28Z,- SAUMILDHANKAR submitted pull request review: [2621](https://github.com/hackforla/website/pull/2621#pullrequestreview-840221086) at 2021-12-27 12:03 AM PST -SAUMILDHANKAR,2021-12-27T08:06:41Z,- SAUMILDHANKAR closed issue by PR 2621: [2267](https://github.com/hackforla/website/issues/2267#event-5816927091) at 2021-12-27 12:06 AM PST -SAUMILDHANKAR,2021-12-27T09:23:42Z,- SAUMILDHANKAR opened issue: [2633](https://github.com/hackforla/website/issues/2633) at 2021-12-27 01:23 AM PST -SAUMILDHANKAR,2021-12-27T09:52:58Z,- SAUMILDHANKAR opened issue: [2634](https://github.com/hackforla/website/issues/2634) at 2021-12-27 01:52 AM PST -SAUMILDHANKAR,2021-12-29T00:04:53Z,- SAUMILDHANKAR commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1002329204) at 2021-12-28 04:04 PM PST -SAUMILDHANKAR,2021-12-29T00:06:45Z,- SAUMILDHANKAR submitted pull request review: [2624](https://github.com/hackforla/website/pull/2624#pullrequestreview-841138182) at 2021-12-28 04:06 PM PST -SAUMILDHANKAR,2021-12-29T00:24:15Z,- SAUMILDHANKAR commented on issue: [2629](https://github.com/hackforla/website/issues/2629#issuecomment-1002334995) at 2021-12-28 04:24 PM PST -SAUMILDHANKAR,2021-12-29T04:26:16Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1002391888) at 2021-12-28 08:26 PM PST -SAUMILDHANKAR,2021-12-29T04:29:07Z,- SAUMILDHANKAR submitted pull request review: [2635](https://github.com/hackforla/website/pull/2635#pullrequestreview-841179976) at 2021-12-28 08:29 PM PST -SAUMILDHANKAR,2021-12-30T00:25:35Z,- SAUMILDHANKAR commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1002823703) at 2021-12-29 04:25 PM PST -SAUMILDHANKAR,2021-12-30T00:40:29Z,- SAUMILDHANKAR submitted pull request review: [2624](https://github.com/hackforla/website/pull/2624#pullrequestreview-841666625) at 2021-12-29 04:40 PM PST -SAUMILDHANKAR,2021-12-30T00:46:24Z,- SAUMILDHANKAR commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1002827442) at 2021-12-29 04:46 PM PST -SAUMILDHANKAR,2021-12-30T00:49:10Z,- SAUMILDHANKAR closed issue by PR 2624: [2483](https://github.com/hackforla/website/issues/2483#event-5826413985) at 2021-12-29 04:49 PM PST -SAUMILDHANKAR,2021-12-30T01:33:43Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1002836242) at 2021-12-29 05:33 PM PST -SAUMILDHANKAR,2021-12-30T02:50:48Z,- SAUMILDHANKAR commented on issue: [2382](https://github.com/hackforla/website/issues/2382#issuecomment-1002849832) at 2021-12-29 06:50 PM PST -SAUMILDHANKAR,2021-12-30T02:50:49Z,- SAUMILDHANKAR closed issue as completed: [2382](https://github.com/hackforla/website/issues/2382#event-5826560711) at 2021-12-29 06:50 PM PST -SAUMILDHANKAR,2021-12-30T08:31:44Z,- SAUMILDHANKAR closed issue by PR 2603: [2474](https://github.com/hackforla/website/issues/2474#event-5827135211) at 2021-12-30 12:31 AM PST -SAUMILDHANKAR,2021-12-30T09:21:34Z,- SAUMILDHANKAR commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1002941219) at 2021-12-30 01:21 AM PST -SAUMILDHANKAR,2021-12-30T10:29:37Z,- SAUMILDHANKAR commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1002966660) at 2021-12-30 02:29 AM PST -SAUMILDHANKAR,2021-12-31T08:37:47Z,- SAUMILDHANKAR commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003309756) at 2021-12-31 12:37 AM PST -SAUMILDHANKAR,2022-01-01T09:40:34Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1003533184) at 2022-01-01 01:40 AM PST -SAUMILDHANKAR,2022-01-01T09:42:32Z,- SAUMILDHANKAR commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1003533345) at 2022-01-01 01:42 AM PST -SAUMILDHANKAR,2022-01-01T10:28:36Z,- SAUMILDHANKAR commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1003538406) at 2022-01-01 02:28 AM PST -SAUMILDHANKAR,2022-01-01T10:38:33Z,- SAUMILDHANKAR commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003539210) at 2022-01-01 02:38 AM PST -SAUMILDHANKAR,2022-01-01T20:57:51Z,- SAUMILDHANKAR commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1003616614) at 2022-01-01 12:57 PM PST -SAUMILDHANKAR,2022-01-01T23:52:52Z,- SAUMILDHANKAR commented on issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-01 03:52 PM PST -SAUMILDHANKAR,2022-01-02T10:23:14Z,- SAUMILDHANKAR opened issue: [2649](https://github.com/hackforla/website/issues/2649) at 2022-01-02 02:23 AM PST -SAUMILDHANKAR,2022-01-02T10:28:18Z,- SAUMILDHANKAR opened issue: [2650](https://github.com/hackforla/website/issues/2650) at 2022-01-02 02:28 AM PST -SAUMILDHANKAR,2022-01-02T10:30:02Z,- SAUMILDHANKAR opened issue: [2651](https://github.com/hackforla/website/issues/2651) at 2022-01-02 02:30 AM PST -SAUMILDHANKAR,2022-01-02T10:32:47Z,- SAUMILDHANKAR opened issue: [2652](https://github.com/hackforla/website/issues/2652) at 2022-01-02 02:32 AM PST -SAUMILDHANKAR,2022-01-02T10:35:07Z,- SAUMILDHANKAR opened issue: [2653](https://github.com/hackforla/website/issues/2653) at 2022-01-02 02:35 AM PST -SAUMILDHANKAR,2022-01-04T10:10:44Z,- SAUMILDHANKAR opened issue: [2656](https://github.com/hackforla/website/issues/2656) at 2022-01-04 02:10 AM PST -SAUMILDHANKAR,2022-01-04T10:59:15Z,- SAUMILDHANKAR commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1004711640) at 2022-01-04 02:59 AM PST -SAUMILDHANKAR,2022-01-04T11:37:25Z,- SAUMILDHANKAR commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1004735854) at 2022-01-04 03:37 AM PST -SAUMILDHANKAR,2022-01-04T12:14:04Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1004757576) at 2022-01-04 04:14 AM PST -SAUMILDHANKAR,2022-01-05T01:23:53Z,- SAUMILDHANKAR submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-844142181) at 2022-01-04 05:23 PM PST -SAUMILDHANKAR,2022-01-05T22:43:33Z,- SAUMILDHANKAR commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1006135997) at 2022-01-05 02:43 PM PST -SAUMILDHANKAR,2022-01-05T23:28:11Z,- SAUMILDHANKAR commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1006157916) at 2022-01-05 03:28 PM PST -SAUMILDHANKAR,2022-01-06T07:47:30Z,- SAUMILDHANKAR commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1006350764) at 2022-01-05 11:47 PM PST -SAUMILDHANKAR,2022-01-06T10:23:49Z,- SAUMILDHANKAR submitted pull request review: [2646](https://github.com/hackforla/website/pull/2646#pullrequestreview-845484201) at 2022-01-06 02:23 AM PST -SAUMILDHANKAR,2022-01-06T10:59:30Z,- SAUMILDHANKAR commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1006477747) at 2022-01-06 02:59 AM PST -SAUMILDHANKAR,2022-01-07T00:06:50Z,- SAUMILDHANKAR closed issue by PR 2648: [2489](https://github.com/hackforla/website/issues/2489#event-5855193496) at 2022-01-06 04:06 PM PST -SAUMILDHANKAR,2022-01-07T00:34:16Z,- SAUMILDHANKAR opened issue: [2664](https://github.com/hackforla/website/issues/2664) at 2022-01-06 04:34 PM PST -SAUMILDHANKAR,2022-01-07T02:49:14Z,- SAUMILDHANKAR commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1007098161) at 2022-01-06 06:49 PM PST -SAUMILDHANKAR,2022-01-07T11:40:56Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1007342836) at 2022-01-07 03:40 AM PST -SAUMILDHANKAR,2022-01-07T12:17:46Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1007363169) at 2022-01-07 04:17 AM PST -SAUMILDHANKAR,2022-01-07T12:32:06Z,- SAUMILDHANKAR opened issue: [2667](https://github.com/hackforla/website/issues/2667) at 2022-01-07 04:32 AM PST -SAUMILDHANKAR,2022-01-07T12:34:19Z,- SAUMILDHANKAR opened issue: [2668](https://github.com/hackforla/website/issues/2668) at 2022-01-07 04:34 AM PST -SAUMILDHANKAR,2022-01-07T12:36:25Z,- SAUMILDHANKAR opened issue: [2669](https://github.com/hackforla/website/issues/2669) at 2022-01-07 04:36 AM PST -SAUMILDHANKAR,2022-01-07T12:43:18Z,- SAUMILDHANKAR closed issue by PR 2647: [2456](https://github.com/hackforla/website/issues/2456#event-5857669539) at 2022-01-07 04:43 AM PST -SAUMILDHANKAR,2022-01-09T03:59:54Z,- SAUMILDHANKAR opened issue: [2676](https://github.com/hackforla/website/issues/2676) at 2022-01-08 07:59 PM PST -SAUMILDHANKAR,2022-01-09T04:09:25Z,- SAUMILDHANKAR assigned to issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1008224954) at 2022-01-08 08:09 PM PST -SAUMILDHANKAR,2022-01-09T04:36:40Z,- SAUMILDHANKAR opened issue: [2677](https://github.com/hackforla/website/issues/2677) at 2022-01-08 08:36 PM PST -SAUMILDHANKAR,2022-01-10T09:46:44Z,- SAUMILDHANKAR commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1008698533) at 2022-01-10 01:46 AM PST -SAUMILDHANKAR,2022-01-10T10:46:25Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1008747498) at 2022-01-10 02:46 AM PST -SAUMILDHANKAR,2022-01-11T12:06:52Z,- SAUMILDHANKAR submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-849078084) at 2022-01-11 04:06 AM PST -SAUMILDHANKAR,2022-01-11T12:13:25Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1009906580) at 2022-01-11 04:13 AM PST -SAUMILDHANKAR,2022-01-13T02:53:46Z,- SAUMILDHANKAR commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1011719464) at 2022-01-12 06:53 PM PST -SAUMILDHANKAR,2022-01-13T03:18:17Z,- SAUMILDHANKAR closed issue by PR 2678: [2462](https://github.com/hackforla/website/issues/2462#event-5884592526) at 2022-01-12 07:18 PM PST -SAUMILDHANKAR,2022-01-13T09:50:37Z,- SAUMILDHANKAR submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-851481036) at 2022-01-13 01:50 AM PST -SAUMILDHANKAR,2022-01-18T02:44:55Z,- SAUMILDHANKAR opened issue: [2695](https://github.com/hackforla/website/issues/2695) at 2022-01-17 06:44 PM PST -SAUMILDHANKAR,2022-01-18T02:53:29Z,- SAUMILDHANKAR commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1015025481) at 2022-01-17 06:53 PM PST -SAUMILDHANKAR,2022-01-18T02:53:30Z,- SAUMILDHANKAR closed issue as completed: [2628](https://github.com/hackforla/website/issues/2628#event-5907655575) at 2022-01-17 06:53 PM PST -SAUMILDHANKAR,2022-01-20T02:16:44Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1017052541) at 2022-01-19 06:16 PM PST -SAUMILDHANKAR,2022-01-20T02:31:53Z,- SAUMILDHANKAR commented on issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1017059806) at 2022-01-19 06:31 PM PST -SAUMILDHANKAR,2022-01-20T02:31:53Z,- SAUMILDHANKAR reopened issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1017059806) at 2022-01-19 06:31 PM PST -SAUMILDHANKAR,2022-01-20T02:40:43Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1017063673) at 2022-01-19 06:40 PM PST -SAUMILDHANKAR,2022-01-20T02:40:43Z,- SAUMILDHANKAR reopened issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1017063673) at 2022-01-19 06:40 PM PST -SAUMILDHANKAR,2022-01-20T03:01:48Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1017072467) at 2022-01-19 07:01 PM PST -SAUMILDHANKAR,2022-01-20T03:01:48Z,- SAUMILDHANKAR reopened issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1017072467) at 2022-01-19 07:01 PM PST -SAUMILDHANKAR,2022-01-20T03:11:30Z,- SAUMILDHANKAR commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1017076873) at 2022-01-19 07:11 PM PST -SAUMILDHANKAR,2022-01-20T03:11:30Z,- SAUMILDHANKAR reopened issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1017076873) at 2022-01-19 07:11 PM PST -SAUMILDHANKAR,2022-01-20T03:20:14Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1017080702) at 2022-01-19 07:20 PM PST -SAUMILDHANKAR,2022-01-20T03:20:14Z,- SAUMILDHANKAR reopened issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1017080702) at 2022-01-19 07:20 PM PST -SAUMILDHANKAR,2022-01-20T06:16:31Z,- SAUMILDHANKAR commented on issue: [2409](https://github.com/hackforla/website/issues/2409#issuecomment-1017154221) at 2022-01-19 10:16 PM PST -SAUMILDHANKAR,2022-01-20T06:16:32Z,- SAUMILDHANKAR closed issue as completed: [2409](https://github.com/hackforla/website/issues/2409#event-5922429145) at 2022-01-19 10:16 PM PST -SAUMILDHANKAR,2022-01-20T07:26:15Z,- SAUMILDHANKAR commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1017189433) at 2022-01-19 11:26 PM PST -SAUMILDHANKAR,2022-01-20T07:36:49Z,- SAUMILDHANKAR submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-857861807) at 2022-01-19 11:36 PM PST -SAUMILDHANKAR,2022-01-20T23:52:57Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1018028718) at 2022-01-20 03:52 PM PST -SAUMILDHANKAR,2022-01-20T23:54:32Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1018029432) at 2022-01-20 03:54 PM PST -SAUMILDHANKAR,2022-01-20T23:55:24Z,- SAUMILDHANKAR commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1018029808) at 2022-01-20 03:55 PM PST -SAUMILDHANKAR,2022-01-23T00:06:01Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1019380750) at 2022-01-22 04:06 PM PST -SAUMILDHANKAR,2022-01-23T00:06:01Z,- SAUMILDHANKAR reopened issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1019380750) at 2022-01-22 04:06 PM PST -SAUMILDHANKAR,2022-01-23T07:04:02Z,- SAUMILDHANKAR submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-860283887) at 2022-01-22 11:04 PM PST -SAUMILDHANKAR,2022-01-23T07:06:10Z,- SAUMILDHANKAR commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1019428328) at 2022-01-22 11:06 PM PST -SAUMILDHANKAR,2022-01-23T07:06:49Z,- SAUMILDHANKAR closed issue by PR 2682: [2629](https://github.com/hackforla/website/issues/2629#event-5937857065) at 2022-01-22 11:06 PM PST -SAUMILDHANKAR,2022-01-26T01:35:05Z,- SAUMILDHANKAR commented on issue: [1564](https://github.com/hackforla/website/issues/1564#issuecomment-1021772141) at 2022-01-25 05:35 PM PST -SAUMILDHANKAR,2022-01-26T01:37:26Z,- SAUMILDHANKAR commented on issue: [1566](https://github.com/hackforla/website/issues/1566#issuecomment-1021773121) at 2022-01-25 05:37 PM PST -SAUMILDHANKAR,2022-01-26T01:39:23Z,- SAUMILDHANKAR commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-1021773902) at 2022-01-25 05:39 PM PST -SAUMILDHANKAR,2022-01-26T01:40:16Z,- SAUMILDHANKAR commented on issue: [1562](https://github.com/hackforla/website/issues/1562#issuecomment-1021774220) at 2022-01-25 05:40 PM PST -SAUMILDHANKAR,2022-01-26T03:27:38Z,- SAUMILDHANKAR commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1021828262) at 2022-01-25 07:27 PM PST -SAUMILDHANKAR,2022-01-26T21:16:27Z,- SAUMILDHANKAR commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1022609940) at 2022-01-26 01:16 PM PST -SAUMILDHANKAR,2022-01-26T21:18:34Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1022611526) at 2022-01-26 01:18 PM PST -SAUMILDHANKAR,2022-01-26T21:19:20Z,- SAUMILDHANKAR commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1022612109) at 2022-01-26 01:19 PM PST -SAUMILDHANKAR,2022-01-27T03:52:53Z,- SAUMILDHANKAR commented on issue: [2610](https://github.com/hackforla/website/issues/2610#issuecomment-1022822454) at 2022-01-26 07:52 PM PST -SAUMILDHANKAR,2022-01-27T08:29:48Z,- SAUMILDHANKAR commented on issue: [2717](https://github.com/hackforla/website/issues/2717#issuecomment-1022964529) at 2022-01-27 12:29 AM PST -SAUMILDHANKAR,2022-01-27T08:29:48Z,- SAUMILDHANKAR reopened issue: [2717](https://github.com/hackforla/website/issues/2717#issuecomment-1022964529) at 2022-01-27 12:29 AM PST -SAUMILDHANKAR,2022-01-28T02:33:48Z,- SAUMILDHANKAR commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1023829299) at 2022-01-27 06:33 PM PST -SAUMILDHANKAR,2022-01-28T22:53:48Z,- SAUMILDHANKAR commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1024724315) at 2022-01-28 02:53 PM PST -SAUMILDHANKAR,2022-01-28T22:57:20Z,- SAUMILDHANKAR commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1024725823) at 2022-01-28 02:57 PM PST -SAUMILDHANKAR,2022-01-28T23:40:21Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1024744927) at 2022-01-28 03:40 PM PST -SAUMILDHANKAR,2022-01-29T02:32:17Z,- SAUMILDHANKAR commented on issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1024812746) at 2022-01-28 06:32 PM PST -SAUMILDHANKAR,2022-01-29T02:50:13Z,- SAUMILDHANKAR commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1024815778) at 2022-01-28 06:50 PM PST -SAUMILDHANKAR,2022-01-29T02:59:52Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1024817315) at 2022-01-28 06:59 PM PST -SAUMILDHANKAR,2022-01-29T03:04:32Z,- SAUMILDHANKAR commented on issue: [2702](https://github.com/hackforla/website/issues/2702#issuecomment-1024818223) at 2022-01-28 07:04 PM PST -SAUMILDHANKAR,2022-01-29T03:09:39Z,- SAUMILDHANKAR commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1024819176) at 2022-01-28 07:09 PM PST -SAUMILDHANKAR,2022-01-29T08:46:33Z,- SAUMILDHANKAR submitted pull request review: [2713](https://github.com/hackforla/website/pull/2713#pullrequestreview-866905497) at 2022-01-29 12:46 AM PST -SAUMILDHANKAR,2022-01-29T22:12:23Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867014015) at 2022-01-29 02:12 PM PST -SAUMILDHANKAR,2022-01-29T22:14:19Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867014122) at 2022-01-29 02:14 PM PST -SAUMILDHANKAR,2022-01-29T22:16:11Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867014233) at 2022-01-29 02:16 PM PST -SAUMILDHANKAR,2022-01-29T22:43:02Z,- SAUMILDHANKAR commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025000484) at 2022-01-29 02:43 PM PST -SAUMILDHANKAR,2022-01-30T16:21:04Z,- SAUMILDHANKAR submitted pull request review: [2725](https://github.com/hackforla/website/pull/2725#pullrequestreview-867141478) at 2022-01-30 08:21 AM PST -SAUMILDHANKAR,2022-01-30T20:55:46Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867203704) at 2022-01-30 12:55 PM PST -SAUMILDHANKAR,2022-01-31T03:45:40Z,- SAUMILDHANKAR commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025350132) at 2022-01-30 07:45 PM PST -SAUMILDHANKAR,2022-01-31T03:50:20Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867359531) at 2022-01-30 07:50 PM PST -SAUMILDHANKAR,2022-01-31T03:50:48Z,- SAUMILDHANKAR closed issue by PR 2719: [2287](https://github.com/hackforla/website/issues/2287#event-5977917804) at 2022-01-30 07:50 PM PST -SAUMILDHANKAR,2022-01-31T06:51:22Z,- SAUMILDHANKAR submitted pull request review: [2725](https://github.com/hackforla/website/pull/2725#pullrequestreview-867440260) at 2022-01-30 10:51 PM PST -SAUMILDHANKAR,2022-01-31T06:52:53Z,- SAUMILDHANKAR closed issue by PR 2725: [2553](https://github.com/hackforla/website/issues/2553#event-5978462578) at 2022-01-30 10:52 PM PST -SAUMILDHANKAR,2022-01-31T07:24:25Z,- SAUMILDHANKAR commented on issue: [2610](https://github.com/hackforla/website/issues/2610#issuecomment-1025448976) at 2022-01-30 11:24 PM PST -SAUMILDHANKAR,2022-01-31T07:24:25Z,- SAUMILDHANKAR closed issue as completed: [2610](https://github.com/hackforla/website/issues/2610#event-5978581349) at 2022-01-30 11:24 PM PST -SAUMILDHANKAR,2022-01-31T07:31:12Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1025452628) at 2022-01-30 11:31 PM PST -SAUMILDHANKAR,2022-02-01T09:09:40Z,- SAUMILDHANKAR submitted pull request review: [2730](https://github.com/hackforla/website/pull/2730#pullrequestreview-868841276) at 2022-02-01 01:09 AM PST -SAUMILDHANKAR,2022-02-01T09:13:03Z,- SAUMILDHANKAR closed issue by PR 2730: [2427](https://github.com/hackforla/website/issues/2427#event-5986634224) at 2022-02-01 01:13 AM PST -SAUMILDHANKAR,2022-02-01T09:57:05Z,- SAUMILDHANKAR submitted pull request review: [2729](https://github.com/hackforla/website/pull/2729#pullrequestreview-868895329) at 2022-02-01 01:57 AM PST -SAUMILDHANKAR,2022-02-01T10:02:50Z,- SAUMILDHANKAR closed issue by PR 2729: [2657](https://github.com/hackforla/website/issues/2657#event-5986943014) at 2022-02-01 02:02 AM PST -SAUMILDHANKAR,2022-02-03T03:12:29Z,- SAUMILDHANKAR submitted pull request review: [2724](https://github.com/hackforla/website/pull/2724#pullrequestreview-871326134) at 2022-02-02 07:12 PM PST -SAUMILDHANKAR,2022-02-03T07:41:23Z,- SAUMILDHANKAR submitted pull request review: [2724](https://github.com/hackforla/website/pull/2724#pullrequestreview-871461865) at 2022-02-02 11:41 PM PST -SAUMILDHANKAR,2022-02-03T07:51:09Z,- SAUMILDHANKAR commented on pull request: [2724](https://github.com/hackforla/website/pull/2724#issuecomment-1028694441) at 2022-02-02 11:51 PM PST -SAUMILDHANKAR,2022-02-03T11:01:09Z,- SAUMILDHANKAR commented on pull request: [2735](https://github.com/hackforla/website/pull/2735#issuecomment-1028867665) at 2022-02-03 03:01 AM PST -SAUMILDHANKAR,2022-02-04T01:21:10Z,- SAUMILDHANKAR submitted pull request review: [2735](https://github.com/hackforla/website/pull/2735#pullrequestreview-872584528) at 2022-02-03 05:21 PM PST -SAUMILDHANKAR,2022-02-04T01:21:43Z,- SAUMILDHANKAR closed issue by PR 2735: [2731](https://github.com/hackforla/website/issues/2731#event-6006637774) at 2022-02-03 05:21 PM PST -SAUMILDHANKAR,2022-02-04T01:37:09Z,- SAUMILDHANKAR commented on issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-1029560541) at 2022-02-03 05:37 PM PST -SAUMILDHANKAR,2022-02-04T01:57:05Z,- SAUMILDHANKAR commented on issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-1029568778) at 2022-02-03 05:57 PM PST -SAUMILDHANKAR,2022-02-05T02:29:48Z,- SAUMILDHANKAR commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1030503495) at 2022-02-04 06:29 PM PST -SAUMILDHANKAR,2022-02-05T06:47:03Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1030556015) at 2022-02-04 10:47 PM PST -SAUMILDHANKAR,2022-02-05T07:23:29Z,- SAUMILDHANKAR commented on issue: [2702](https://github.com/hackforla/website/issues/2702#issuecomment-1030568603) at 2022-02-04 11:23 PM PST -SAUMILDHANKAR,2022-02-05T07:23:29Z,- SAUMILDHANKAR closed issue as completed: [2702](https://github.com/hackforla/website/issues/2702#event-6013169022) at 2022-02-04 11:23 PM PST -SAUMILDHANKAR,2022-02-05T07:27:04Z,- SAUMILDHANKAR commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1030568981) at 2022-02-04 11:27 PM PST -SAUMILDHANKAR,2022-02-05T07:27:05Z,- SAUMILDHANKAR closed issue as completed: [2637](https://github.com/hackforla/website/issues/2637#event-6013179559) at 2022-02-04 11:27 PM PST -SAUMILDHANKAR,2022-02-05T07:30:05Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1030569260) at 2022-02-04 11:30 PM PST -SAUMILDHANKAR,2022-02-05T07:33:44Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1030569727) at 2022-02-04 11:33 PM PST -SAUMILDHANKAR,2022-02-05T07:36:12Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1030569984) at 2022-02-04 11:36 PM PST -SAUMILDHANKAR,2022-02-05T07:38:31Z,- SAUMILDHANKAR commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1030570265) at 2022-02-04 11:38 PM PST -SAUMILDHANKAR,2022-02-05T07:38:31Z,- SAUMILDHANKAR closed issue as completed: [2560](https://github.com/hackforla/website/issues/2560#event-6013212644) at 2022-02-04 11:38 PM PST -SAUMILDHANKAR,2022-02-05T07:39:53Z,- SAUMILDHANKAR commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1030570424) at 2022-02-04 11:39 PM PST -SAUMILDHANKAR,2022-02-05T07:39:53Z,- SAUMILDHANKAR closed issue as completed: [2596](https://github.com/hackforla/website/issues/2596#event-6013216717) at 2022-02-04 11:39 PM PST -SAUMILDHANKAR,2022-02-06T08:11:28Z,- SAUMILDHANKAR submitted pull request review: [2736](https://github.com/hackforla/website/pull/2736#pullrequestreview-874007228) at 2022-02-06 12:11 AM PST -SAUMILDHANKAR,2022-02-06T09:06:17Z,- SAUMILDHANKAR commented on pull request: [2738](https://github.com/hackforla/website/pull/2738#issuecomment-1030781516) at 2022-02-06 01:06 AM PST -SAUMILDHANKAR,2022-02-06T09:08:50Z,- SAUMILDHANKAR submitted pull request review: [2738](https://github.com/hackforla/website/pull/2738#pullrequestreview-874012415) at 2022-02-06 01:08 AM PST -SAUMILDHANKAR,2022-02-06T09:10:03Z,- SAUMILDHANKAR closed issue by PR 2672: [2397](https://github.com/hackforla/website/issues/2397#event-6014781725) at 2022-02-06 01:10 AM PST -SAUMILDHANKAR,2022-02-06T10:43:45Z,- SAUMILDHANKAR commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1030805730) at 2022-02-06 02:43 AM PST -SAUMILDHANKAR,2022-02-06T18:16:41Z,- SAUMILDHANKAR commented on issue: [2409](https://github.com/hackforla/website/issues/2409#issuecomment-1030885811) at 2022-02-06 10:16 AM PST -SAUMILDHANKAR,2022-02-06T20:53:18Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1030912162) at 2022-02-06 12:53 PM PST -SAUMILDHANKAR,2022-02-06T23:31:52Z,- SAUMILDHANKAR assigned to issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1030939882) at 2022-02-06 03:31 PM PST -SAUMILDHANKAR,2022-02-07T05:22:17Z,- SAUMILDHANKAR commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1031086924) at 2022-02-06 09:22 PM PST -SAUMILDHANKAR,2022-02-07T05:22:17Z,- SAUMILDHANKAR reopened issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1031086924) at 2022-02-06 09:22 PM PST -SAUMILDHANKAR,2022-02-07T05:26:53Z,- SAUMILDHANKAR commented on pull request: [2741](https://github.com/hackforla/website/pull/2741#issuecomment-1031088966) at 2022-02-06 09:26 PM PST -SAUMILDHANKAR,2022-02-07T05:40:06Z,- SAUMILDHANKAR submitted pull request review: [2741](https://github.com/hackforla/website/pull/2741#pullrequestreview-874204817) at 2022-02-06 09:40 PM PST -SAUMILDHANKAR,2022-02-07T05:40:46Z,- SAUMILDHANKAR closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-6016628531) at 2022-02-06 09:40 PM PST -SAUMILDHANKAR,2022-02-07T05:55:29Z,- SAUMILDHANKAR commented on issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-1031099872) at 2022-02-06 09:55 PM PST -SAUMILDHANKAR,2022-02-07T05:55:29Z,- SAUMILDHANKAR reopened issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-1031099872) at 2022-02-06 09:55 PM PST -SAUMILDHANKAR,2022-02-07T06:18:04Z,- SAUMILDHANKAR commented on pull request: [2742](https://github.com/hackforla/website/pull/2742#issuecomment-1031112637) at 2022-02-06 10:18 PM PST -SAUMILDHANKAR,2022-02-07T07:18:26Z,- SAUMILDHANKAR submitted pull request review: [2742](https://github.com/hackforla/website/pull/2742#pullrequestreview-874264370) at 2022-02-06 11:18 PM PST -SAUMILDHANKAR,2022-02-07T07:18:41Z,- SAUMILDHANKAR closed issue by PR 2742: [2591](https://github.com/hackforla/website/issues/2591#event-6016992433) at 2022-02-06 11:18 PM PST -SAUMILDHANKAR,2022-02-07T07:21:29Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1031148862) at 2022-02-06 11:21 PM PST -SAUMILDHANKAR,2022-02-07T07:21:30Z,- SAUMILDHANKAR reopened issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1031148862) at 2022-02-06 11:21 PM PST -SAUMILDHANKAR,2022-02-07T07:30:52Z,- SAUMILDHANKAR commented on issue: [2409](https://github.com/hackforla/website/issues/2409#issuecomment-1031154746) at 2022-02-06 11:30 PM PST -SAUMILDHANKAR,2022-02-07T22:20:01Z,- SAUMILDHANKAR assigned to issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1031993012) at 2022-02-07 02:20 PM PST -SAUMILDHANKAR,2022-02-08T04:09:18Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1032194052) at 2022-02-07 08:09 PM PST -SAUMILDHANKAR,2022-02-08T04:09:38Z,- SAUMILDHANKAR commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1032194197) at 2022-02-07 08:09 PM PST -SAUMILDHANKAR,2022-02-08T04:19:20Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1032198807) at 2022-02-07 08:19 PM PST -SAUMILDHANKAR,2022-02-09T00:25:04Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1033197120) at 2022-02-08 04:25 PM PST -SAUMILDHANKAR,2022-02-09T07:18:20Z,- SAUMILDHANKAR commented on pull request: [2752](https://github.com/hackforla/website/pull/2752#issuecomment-1033424411) at 2022-02-08 11:18 PM PST -SAUMILDHANKAR,2022-02-09T07:40:45Z,- SAUMILDHANKAR commented on pull request: [2752](https://github.com/hackforla/website/pull/2752#issuecomment-1033437987) at 2022-02-08 11:40 PM PST -SAUMILDHANKAR,2022-02-09T09:35:15Z,- SAUMILDHANKAR submitted pull request review: [2757](https://github.com/hackforla/website/pull/2757#pullrequestreview-877170964) at 2022-02-09 01:35 AM PST -SAUMILDHANKAR,2022-02-09T09:36:25Z,- SAUMILDHANKAR closed issue by PR 2757: [2754](https://github.com/hackforla/website/issues/2754#event-6032851780) at 2022-02-09 01:36 AM PST -SAUMILDHANKAR,2022-02-09T10:01:40Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1033580157) at 2022-02-09 02:01 AM PST -SAUMILDHANKAR,2022-02-10T08:33:44Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1034629040) at 2022-02-10 12:33 AM PST -SAUMILDHANKAR,2022-02-10T09:21:43Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1034681644) at 2022-02-10 01:21 AM PST -SAUMILDHANKAR,2022-02-11T00:49:55Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1035686880) at 2022-02-10 04:49 PM PST -SAUMILDHANKAR,2022-02-11T22:56:21Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1036717027) at 2022-02-11 02:56 PM PST -SAUMILDHANKAR,2022-02-11T23:41:16Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1036774288) at 2022-02-11 03:41 PM PST -SAUMILDHANKAR,2022-02-12T04:27:47Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1036986972) at 2022-02-11 08:27 PM PST -SAUMILDHANKAR,2022-02-12T04:27:47Z,- SAUMILDHANKAR reopened issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1036986972) at 2022-02-11 08:27 PM PST -SAUMILDHANKAR,2022-02-12T09:11:18Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1037079234) at 2022-02-12 01:11 AM PST -SAUMILDHANKAR,2022-02-12T20:29:29Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1037456121) at 2022-02-12 12:29 PM PST -SAUMILDHANKAR,2022-02-12T23:25:34Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1037570421) at 2022-02-12 03:25 PM PST -SAUMILDHANKAR,2022-02-13T01:58:12Z,- SAUMILDHANKAR opened issue: [2771](https://github.com/hackforla/website/issues/2771) at 2022-02-12 05:58 PM PST -SAUMILDHANKAR,2022-02-13T02:21:21Z,- SAUMILDHANKAR assigned to issue: [2642](https://github.com/hackforla/website/issues/2642#issuecomment-1002327131) at 2022-02-12 06:21 PM PST -SAUMILDHANKAR,2022-02-13T08:45:05Z,- SAUMILDHANKAR opened issue: [2775](https://github.com/hackforla/website/issues/2775) at 2022-02-13 12:45 AM PST -SAUMILDHANKAR,2022-02-13T09:52:32Z,- SAUMILDHANKAR commented on pull request: [2769](https://github.com/hackforla/website/pull/2769#issuecomment-1037973787) at 2022-02-13 01:52 AM PST -SAUMILDHANKAR,2022-02-13T10:01:44Z,- SAUMILDHANKAR submitted pull request review: [2769](https://github.com/hackforla/website/pull/2769#pullrequestreview-880960548) at 2022-02-13 02:01 AM PST -SAUMILDHANKAR,2022-02-13T10:02:59Z,- SAUMILDHANKAR closed issue by PR 2769: [2661](https://github.com/hackforla/website/issues/2661#event-6060553744) at 2022-02-13 02:02 AM PST -SAUMILDHANKAR,2022-02-13T10:42:33Z,- SAUMILDHANKAR opened issue: [2776](https://github.com/hackforla/website/issues/2776) at 2022-02-13 02:42 AM PST -SAUMILDHANKAR,2022-02-13T10:49:00Z,- SAUMILDHANKAR opened issue: [2777](https://github.com/hackforla/website/issues/2777) at 2022-02-13 02:49 AM PST -SAUMILDHANKAR,2022-02-13T18:21:11Z,- SAUMILDHANKAR commented on pull request: [2767](https://github.com/hackforla/website/pull/2767#issuecomment-1038317649) at 2022-02-13 10:21 AM PST -SAUMILDHANKAR,2022-02-13T18:55:48Z,- SAUMILDHANKAR commented on issue: [2773](https://github.com/hackforla/website/issues/2773#issuecomment-1038344103) at 2022-02-13 10:55 AM PST -SAUMILDHANKAR,2022-02-13T19:44:24Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1038381276) at 2022-02-13 11:44 AM PST -SAUMILDHANKAR,2022-02-14T02:22:04Z,- SAUMILDHANKAR assigned to issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-13 06:22 PM PST -SAUMILDHANKAR,2022-02-15T00:18:15Z,- SAUMILDHANKAR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1039709865) at 2022-02-14 04:18 PM PST -SAUMILDHANKAR,2022-02-15T00:25:22Z,- SAUMILDHANKAR submitted pull request review: [2778](https://github.com/hackforla/website/pull/2778#pullrequestreview-882335382) at 2022-02-14 04:25 PM PST -SAUMILDHANKAR,2022-02-15T22:19:08Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1040853957) at 2022-02-15 02:19 PM PST -SAUMILDHANKAR,2022-02-15T23:03:00Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1040884224) at 2022-02-15 03:03 PM PST -SAUMILDHANKAR,2022-02-16T00:31:25Z,- SAUMILDHANKAR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1040938045) at 2022-02-15 04:31 PM PST -SAUMILDHANKAR,2022-02-16T00:41:11Z,- SAUMILDHANKAR closed issue as completed: [2558](https://github.com/hackforla/website/issues/2558#event-6079139271) at 2022-02-15 04:41 PM PST -SAUMILDHANKAR,2022-02-16T03:32:25Z,- SAUMILDHANKAR commented on pull request: [2780](https://github.com/hackforla/website/pull/2780#issuecomment-1041061441) at 2022-02-15 07:32 PM PST -SAUMILDHANKAR,2022-02-16T04:14:27Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1041086142) at 2022-02-15 08:14 PM PST -SAUMILDHANKAR,2022-02-17T01:40:38Z,- SAUMILDHANKAR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1042482912) at 2022-02-16 05:40 PM PST -SAUMILDHANKAR,2022-02-17T10:07:50Z,- SAUMILDHANKAR submitted pull request review: [2767](https://github.com/hackforla/website/pull/2767#pullrequestreview-885719941) at 2022-02-17 02:07 AM PST -SAUMILDHANKAR,2022-02-17T10:55:55Z,- SAUMILDHANKAR submitted pull request review: [2778](https://github.com/hackforla/website/pull/2778#pullrequestreview-885782281) at 2022-02-17 02:55 AM PST -SAUMILDHANKAR,2022-02-17T10:56:49Z,- SAUMILDHANKAR closed issue by PR 2778: [2437](https://github.com/hackforla/website/issues/2437#event-6089371358) at 2022-02-17 02:56 AM PST -SAUMILDHANKAR,2022-02-17T11:10:12Z,- SAUMILDHANKAR commented on pull request: [2787](https://github.com/hackforla/website/pull/2787#issuecomment-1042837011) at 2022-02-17 03:10 AM PST -SAUMILDHANKAR,2022-02-17T11:17:49Z,- SAUMILDHANKAR submitted pull request review: [2787](https://github.com/hackforla/website/pull/2787#pullrequestreview-885808793) at 2022-02-17 03:17 AM PST -SAUMILDHANKAR,2022-02-17T11:57:46Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1042874020) at 2022-02-17 03:57 AM PST -SAUMILDHANKAR,2022-02-18T03:39:24Z,- SAUMILDHANKAR commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1043829929) at 2022-02-17 07:39 PM PST -SAUMILDHANKAR,2022-02-19T05:37:05Z,- SAUMILDHANKAR submitted pull request review: [2787](https://github.com/hackforla/website/pull/2787#pullrequestreview-887892292) at 2022-02-18 09:37 PM PST -SAUMILDHANKAR,2022-02-19T05:37:54Z,- SAUMILDHANKAR closed issue by PR 2787: [2429](https://github.com/hackforla/website/issues/2429#event-6104981377) at 2022-02-18 09:37 PM PST -SAUMILDHANKAR,2022-02-19T05:45:39Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1045825999) at 2022-02-18 09:45 PM PST -SAUMILDHANKAR,2022-02-19T06:01:22Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-887893747) at 2022-02-18 10:01 PM PST -SAUMILDHANKAR,2022-02-19T06:43:01Z,- SAUMILDHANKAR commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1045892399) at 2022-02-18 10:43 PM PST -SAUMILDHANKAR,2022-02-19T06:50:14Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1045900531) at 2022-02-18 10:50 PM PST -SAUMILDHANKAR,2022-02-19T06:58:17Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1045909596) at 2022-02-18 10:58 PM PST -SAUMILDHANKAR,2022-02-19T07:03:27Z,- SAUMILDHANKAR commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1045915445) at 2022-02-18 11:03 PM PST -SAUMILDHANKAR,2022-02-19T07:57:08Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1045961918) at 2022-02-18 11:57 PM PST -SAUMILDHANKAR,2022-02-19T08:04:34Z,- SAUMILDHANKAR commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1045963283) at 2022-02-19 12:04 AM PST -SAUMILDHANKAR,2022-02-19T08:04:34Z,- SAUMILDHANKAR reopened issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1045963283) at 2022-02-19 12:04 AM PST -SAUMILDHANKAR,2022-02-20T00:27:53Z,- SAUMILDHANKAR reopened issue: [2560](https://github.com/hackforla/website/issues/2560#event-6013212644) at 2022-02-19 04:27 PM PST -SAUMILDHANKAR,2022-02-20T00:37:43Z,- SAUMILDHANKAR commented on issue: [2610](https://github.com/hackforla/website/issues/2610#issuecomment-1046132742) at 2022-02-19 04:37 PM PST -SAUMILDHANKAR,2022-02-20T09:36:20Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1046198834) at 2022-02-20 01:36 AM PST -SAUMILDHANKAR,2022-02-20T09:49:02Z,- SAUMILDHANKAR submitted pull request review: [2801](https://github.com/hackforla/website/pull/2801#pullrequestreview-888012220) at 2022-02-20 01:49 AM PST -SAUMILDHANKAR,2022-02-20T10:51:37Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1046210595) at 2022-02-20 02:51 AM PST -SAUMILDHANKAR,2022-02-20T18:26:03Z,- SAUMILDHANKAR commented on pull request: [2803](https://github.com/hackforla/website/pull/2803#issuecomment-1046294599) at 2022-02-20 10:26 AM PST -SAUMILDHANKAR,2022-02-20T19:35:01Z,- SAUMILDHANKAR opened issue: [2804](https://github.com/hackforla/website/issues/2804) at 2022-02-20 11:35 AM PST -SAUMILDHANKAR,2022-02-20T20:37:35Z,- SAUMILDHANKAR commented on issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-02-20 12:37 PM PST -SAUMILDHANKAR,2022-02-21T18:27:09Z,- SAUMILDHANKAR commented on pull request: [2819](https://github.com/hackforla/website/pull/2819#issuecomment-1047138688) at 2022-02-21 10:27 AM PST -SAUMILDHANKAR,2022-02-21T18:32:56Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1047142130) at 2022-02-21 10:32 AM PST -SAUMILDHANKAR,2022-02-21T18:39:16Z,- SAUMILDHANKAR commented on pull request: [2767](https://github.com/hackforla/website/pull/2767#issuecomment-1047145392) at 2022-02-21 10:39 AM PST -SAUMILDHANKAR,2022-02-21T19:04:45Z,- SAUMILDHANKAR commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1047158947) at 2022-02-21 11:04 AM PST -SAUMILDHANKAR,2022-02-21T19:04:45Z,- SAUMILDHANKAR reopened issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1047158947) at 2022-02-21 11:04 AM PST -SAUMILDHANKAR,2022-02-21T23:44:21Z,- SAUMILDHANKAR submitted pull request review: [2767](https://github.com/hackforla/website/pull/2767#pullrequestreview-889166886) at 2022-02-21 03:44 PM PST -SAUMILDHANKAR,2022-02-21T23:44:51Z,- SAUMILDHANKAR closed issue by PR 2767: [2204](https://github.com/hackforla/website/issues/2204#event-6114501569) at 2022-02-21 03:44 PM PST -SAUMILDHANKAR,2022-02-22T02:12:15Z,- SAUMILDHANKAR submitted pull request review: [2803](https://github.com/hackforla/website/pull/2803#pullrequestreview-889220818) at 2022-02-21 06:12 PM PST -SAUMILDHANKAR,2022-02-22T02:12:42Z,- SAUMILDHANKAR closed issue by PR 2803: [2086](https://github.com/hackforla/website/issues/2086#event-6114861756) at 2022-02-21 06:12 PM PST -SAUMILDHANKAR,2022-02-22T03:28:11Z,- SAUMILDHANKAR submitted pull request review: [2819](https://github.com/hackforla/website/pull/2819#pullrequestreview-889251949) at 2022-02-21 07:28 PM PST -SAUMILDHANKAR,2022-02-22T03:28:56Z,- SAUMILDHANKAR closed issue by PR 2819: [2277](https://github.com/hackforla/website/issues/2277#event-6115070932) at 2022-02-21 07:28 PM PST -SAUMILDHANKAR,2022-02-23T08:27:29Z,- SAUMILDHANKAR submitted pull request review: [2761](https://github.com/hackforla/website/pull/2761#pullrequestreview-890742925) at 2022-02-23 12:27 AM PST -SAUMILDHANKAR,2022-02-23T08:30:02Z,- SAUMILDHANKAR submitted pull request review: [2761](https://github.com/hackforla/website/pull/2761#pullrequestreview-890745526) at 2022-02-23 12:30 AM PST -SAUMILDHANKAR,2022-02-23T08:58:01Z,- SAUMILDHANKAR submitted pull request review: [2854](https://github.com/hackforla/website/pull/2854#pullrequestreview-890774995) at 2022-02-23 12:58 AM PST -SAUMILDHANKAR,2022-02-23T23:59:19Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891837048) at 2022-02-23 03:59 PM PST -SAUMILDHANKAR,2022-02-24T00:02:19Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891838861) at 2022-02-23 04:02 PM PST -SAUMILDHANKAR,2022-02-24T00:23:56Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891850866) at 2022-02-23 04:23 PM PST -SAUMILDHANKAR,2022-02-24T00:34:43Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891856716) at 2022-02-23 04:34 PM PST -SAUMILDHANKAR,2022-02-24T01:50:51Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891897683) at 2022-02-23 05:50 PM PST -SAUMILDHANKAR,2022-02-24T01:53:15Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891898846) at 2022-02-23 05:53 PM PST -SAUMILDHANKAR,2022-02-24T02:06:56Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891905368) at 2022-02-23 06:06 PM PST -SAUMILDHANKAR,2022-02-24T02:17:15Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891910366) at 2022-02-23 06:17 PM PST -SAUMILDHANKAR,2022-02-24T23:07:14Z,- SAUMILDHANKAR commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1050349130) at 2022-02-24 03:07 PM PST -SAUMILDHANKAR,2022-02-25T02:06:39Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1050444297) at 2022-02-24 06:06 PM PST -SAUMILDHANKAR,2022-02-25T20:38:25Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-894212140) at 2022-02-25 12:38 PM PST -SAUMILDHANKAR,2022-02-26T08:25:07Z,- SAUMILDHANKAR commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1051820901) at 2022-02-26 12:25 AM PST -SAUMILDHANKAR,2022-02-27T01:43:32Z,- SAUMILDHANKAR commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1052925187) at 2022-02-26 05:43 PM PST -SAUMILDHANKAR,2022-02-27T07:32:43Z,- SAUMILDHANKAR commented on pull request: [2893](https://github.com/hackforla/website/pull/2893#issuecomment-1053298532) at 2022-02-26 11:32 PM PST -SAUMILDHANKAR,2022-02-27T07:49:03Z,- SAUMILDHANKAR submitted pull request review: [2893](https://github.com/hackforla/website/pull/2893#pullrequestreview-894471967) at 2022-02-26 11:49 PM PST -SAUMILDHANKAR,2022-02-27T07:49:28Z,- SAUMILDHANKAR closed issue by PR 2893: [2659](https://github.com/hackforla/website/issues/2659#event-6149415202) at 2022-02-26 11:49 PM PST -SAUMILDHANKAR,2022-02-27T08:49:53Z,- SAUMILDHANKAR opened issue: [2896](https://github.com/hackforla/website/issues/2896) at 2022-02-27 12:49 AM PST -SAUMILDHANKAR,2022-02-27T09:34:55Z,- SAUMILDHANKAR commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-1053426920) at 2022-02-27 01:34 AM PST -SAUMILDHANKAR,2022-02-27T10:06:19Z,- SAUMILDHANKAR commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1053454110) at 2022-02-27 02:06 AM PST -SAUMILDHANKAR,2022-02-27T10:06:19Z,- SAUMILDHANKAR closed issue as completed: [2667](https://github.com/hackforla/website/issues/2667#event-6149901900) at 2022-02-27 02:06 AM PST -SAUMILDHANKAR,2022-02-27T10:54:37Z,- SAUMILDHANKAR opened issue: [2897](https://github.com/hackforla/website/issues/2897) at 2022-02-27 02:54 AM PST -SAUMILDHANKAR,2022-02-27T11:52:17Z,- SAUMILDHANKAR opened issue: [2898](https://github.com/hackforla/website/issues/2898) at 2022-02-27 03:52 AM PST -SAUMILDHANKAR,2022-02-27T18:26:30Z,- SAUMILDHANKAR commented on pull request: [2880](https://github.com/hackforla/website/pull/2880#issuecomment-1053638835) at 2022-02-27 10:26 AM PST -SAUMILDHANKAR,2022-02-28T07:52:30Z,- SAUMILDHANKAR opened issue: [2901](https://github.com/hackforla/website/issues/2901) at 2022-02-27 11:52 PM PST -SAUMILDHANKAR,2022-02-28T08:15:33Z,- SAUMILDHANKAR opened issue: [2902](https://github.com/hackforla/website/issues/2902) at 2022-02-28 12:15 AM PST -SAUMILDHANKAR,2022-02-28T09:07:19Z,- SAUMILDHANKAR commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1054038040) at 2022-02-28 01:07 AM PST -SAUMILDHANKAR,2022-02-28T09:27:20Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1054057020) at 2022-02-28 01:27 AM PST -SAUMILDHANKAR,2022-02-28T09:34:30Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1054063311) at 2022-02-28 01:34 AM PST -SAUMILDHANKAR,2022-02-28T09:37:21Z,- SAUMILDHANKAR commented on issue: [2744](https://github.com/hackforla/website/issues/2744#issuecomment-1054065755) at 2022-02-28 01:37 AM PST -SAUMILDHANKAR,2022-02-28T09:40:26Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1054068342) at 2022-02-28 01:40 AM PST -SAUMILDHANKAR,2022-02-28T09:43:09Z,- SAUMILDHANKAR commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1054070395) at 2022-02-28 01:43 AM PST -SAUMILDHANKAR,2022-02-28T09:47:14Z,- SAUMILDHANKAR commented on pull request: [2894](https://github.com/hackforla/website/pull/2894#issuecomment-1054073779) at 2022-02-28 01:47 AM PST -SAUMILDHANKAR,2022-02-28T09:59:55Z,- SAUMILDHANKAR commented on issue: [2743](https://github.com/hackforla/website/issues/2743#issuecomment-1054084203) at 2022-02-28 01:59 AM PST -SAUMILDHANKAR,2022-02-28T10:03:56Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1054087812) at 2022-02-28 02:03 AM PST -SAUMILDHANKAR,2022-03-01T07:13:55Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1055100067) at 2022-02-28 11:13 PM PST -SAUMILDHANKAR,2022-03-01T09:48:42Z,- SAUMILDHANKAR submitted pull request review: [2903](https://github.com/hackforla/website/pull/2903#pullrequestreview-896079192) at 2022-03-01 01:48 AM PST -SAUMILDHANKAR,2022-03-01T09:49:36Z,- SAUMILDHANKAR commented on pull request: [2903](https://github.com/hackforla/website/pull/2903#issuecomment-1055230265) at 2022-03-01 01:49 AM PST -SAUMILDHANKAR,2022-03-01T09:50:45Z,- SAUMILDHANKAR closed issue by PR 2903: [2890](https://github.com/hackforla/website/issues/2890#event-6160740503) at 2022-03-01 01:50 AM PST -SAUMILDHANKAR,2022-03-01T10:10:31Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1055258819) at 2022-03-01 02:10 AM PST -SAUMILDHANKAR,2022-03-02T00:17:54Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1055999920) at 2022-03-01 04:17 PM PST -SAUMILDHANKAR,2022-03-02T00:44:42Z,- SAUMILDHANKAR commented on pull request: [2765](https://github.com/hackforla/website/pull/2765#issuecomment-1056015977) at 2022-03-01 04:44 PM PST -SAUMILDHANKAR,2022-03-02T01:01:12Z,- SAUMILDHANKAR commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1056024820) at 2022-03-01 05:01 PM PST -SAUMILDHANKAR,2022-03-03T02:15:42Z,- SAUMILDHANKAR submitted pull request review: [2880](https://github.com/hackforla/website/pull/2880#pullrequestreview-898377492) at 2022-03-02 06:15 PM PST -SAUMILDHANKAR,2022-03-03T02:16:04Z,- SAUMILDHANKAR closed issue by PR 2880: [2690](https://github.com/hackforla/website/issues/2690#event-6175046734) at 2022-03-02 06:16 PM PST -SAUMILDHANKAR,2022-03-03T10:48:39Z,- SAUMILDHANKAR commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1057917632) at 2022-03-03 02:48 AM PST -SAUMILDHANKAR,2022-03-04T02:37:17Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1058768426) at 2022-03-03 06:37 PM PST -SAUMILDHANKAR,2022-03-04T06:54:07Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1058886740) at 2022-03-03 10:54 PM PST -SAUMILDHANKAR,2022-03-05T01:08:57Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1059635376) at 2022-03-04 05:08 PM PST -SAUMILDHANKAR,2022-03-05T01:24:07Z,- SAUMILDHANKAR unassigned from issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1059635376) at 2022-03-04 05:24 PM PST -SAUMILDHANKAR,2022-03-05T07:36:54Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1059713728) at 2022-03-04 11:36 PM PST -SAUMILDHANKAR,2022-03-05T07:57:41Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1059716166) at 2022-03-04 11:57 PM PST -SAUMILDHANKAR,2022-03-05T08:19:06Z,- SAUMILDHANKAR commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1059719546) at 2022-03-05 12:19 AM PST -SAUMILDHANKAR,2022-03-05T08:23:12Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1059720018) at 2022-03-05 12:23 AM PST -SAUMILDHANKAR,2022-03-05T08:23:12Z,- SAUMILDHANKAR closed issue as completed: [2559](https://github.com/hackforla/website/issues/2559#event-6189072353) at 2022-03-05 12:23 AM PST -SAUMILDHANKAR,2022-03-05T08:34:12Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1059721441) at 2022-03-05 12:34 AM PST -SAUMILDHANKAR,2022-03-05T08:52:11Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1059723901) at 2022-03-05 12:52 AM PST -SAUMILDHANKAR,2022-03-05T22:13:53Z,- SAUMILDHANKAR opened issue: [2932](https://github.com/hackforla/website/issues/2932) at 2022-03-05 02:13 PM PST -SAUMILDHANKAR,2022-03-05T22:31:00Z,- SAUMILDHANKAR opened issue: [2933](https://github.com/hackforla/website/issues/2933) at 2022-03-05 02:31 PM PST -SAUMILDHANKAR,2022-03-05T22:42:57Z,- SAUMILDHANKAR opened issue: [2934](https://github.com/hackforla/website/issues/2934) at 2022-03-05 02:42 PM PST -SAUMILDHANKAR,2022-03-06T02:36:34Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1059881835) at 2022-03-05 06:36 PM PST -SAUMILDHANKAR,2022-03-06T02:45:37Z,- SAUMILDHANKAR commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1059882684) at 2022-03-05 06:45 PM PST -SAUMILDHANKAR,2022-03-07T14:07:36Z,- SAUMILDHANKAR commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1060724655) at 2022-03-07 06:07 AM PST -SAUMILDHANKAR,2022-03-07T22:14:05Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1061191897) at 2022-03-07 02:14 PM PST -SAUMILDHANKAR,2022-03-08T02:16:28Z,- SAUMILDHANKAR commented on issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1061336351) at 2022-03-07 06:16 PM PST -SAUMILDHANKAR,2022-03-08T08:32:50Z,- SAUMILDHANKAR opened issue: [2939](https://github.com/hackforla/website/issues/2939) at 2022-03-08 12:32 AM PST -SAUMILDHANKAR,2022-03-08T09:58:29Z,- SAUMILDHANKAR commented on issue: [2749](https://github.com/hackforla/website/issues/2749#issuecomment-1061600990) at 2022-03-08 01:58 AM PST -SAUMILDHANKAR,2022-03-09T10:18:09Z,- SAUMILDHANKAR assigned to issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1023531237) at 2022-03-09 02:18 AM PST -SAUMILDHANKAR,2022-03-10T00:04:33Z,- SAUMILDHANKAR opened issue: [2952](https://github.com/hackforla/website/issues/2952) at 2022-03-09 04:04 PM PST -SAUMILDHANKAR,2022-03-10T06:46:10Z,- SAUMILDHANKAR opened issue: [2953](https://github.com/hackforla/website/issues/2953) at 2022-03-09 10:46 PM PST -SAUMILDHANKAR,2022-03-10T07:33:23Z,- SAUMILDHANKAR opened issue: [2954](https://github.com/hackforla/website/issues/2954) at 2022-03-09 11:33 PM PST -SAUMILDHANKAR,2022-03-10T08:27:04Z,- SAUMILDHANKAR submitted pull request review: [2944](https://github.com/hackforla/website/pull/2944#pullrequestreview-905472409) at 2022-03-10 12:27 AM PST -SAUMILDHANKAR,2022-03-10T08:43:48Z,- SAUMILDHANKAR commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1063806135) at 2022-03-10 12:43 AM PST -SAUMILDHANKAR,2022-03-10T09:58:52Z,- SAUMILDHANKAR opened issue: [2955](https://github.com/hackforla/website/issues/2955) at 2022-03-10 01:58 AM PST -SAUMILDHANKAR,2022-03-10T10:17:32Z,- SAUMILDHANKAR opened issue: [2956](https://github.com/hackforla/website/issues/2956) at 2022-03-10 02:17 AM PST -SAUMILDHANKAR,2022-03-11T02:14:12Z,- SAUMILDHANKAR opened issue: [2961](https://github.com/hackforla/website/issues/2961) at 2022-03-10 06:14 PM PST -SAUMILDHANKAR,2022-03-11T21:44:07Z,- SAUMILDHANKAR commented on pull request: [2944](https://github.com/hackforla/website/pull/2944#issuecomment-1065558476) at 2022-03-11 01:44 PM PST -SAUMILDHANKAR,2022-03-11T21:46:52Z,- SAUMILDHANKAR commented on pull request: [2957](https://github.com/hackforla/website/pull/2957#issuecomment-1065559999) at 2022-03-11 01:46 PM PST -SAUMILDHANKAR,2022-03-11T21:51:38Z,- SAUMILDHANKAR commented on pull request: [2965](https://github.com/hackforla/website/pull/2965#issuecomment-1065564363) at 2022-03-11 01:51 PM PST -SAUMILDHANKAR,2022-03-11T22:24:52Z,- SAUMILDHANKAR commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1065593449) at 2022-03-11 02:24 PM PST -SAUMILDHANKAR,2022-03-12T01:31:36Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1065780781) at 2022-03-11 06:31 PM PDT -SAUMILDHANKAR,2022-03-12T01:39:58Z,- SAUMILDHANKAR commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1065782689) at 2022-03-11 06:39 PM PDT -SAUMILDHANKAR,2022-03-12T01:49:25Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1065784724) at 2022-03-11 06:49 PM PDT -SAUMILDHANKAR,2022-03-12T01:55:59Z,- SAUMILDHANKAR commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1065786460) at 2022-03-11 06:55 PM PDT -SAUMILDHANKAR,2022-03-12T06:58:22Z,- SAUMILDHANKAR commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1065829321) at 2022-03-11 11:58 PM PDT -SAUMILDHANKAR,2022-03-12T07:18:20Z,- SAUMILDHANKAR commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1065831801) at 2022-03-12 12:18 AM PDT -SAUMILDHANKAR,2022-03-12T08:52:45Z,- SAUMILDHANKAR submitted pull request review: [2957](https://github.com/hackforla/website/pull/2957#pullrequestreview-907973334) at 2022-03-12 01:52 AM PDT -SAUMILDHANKAR,2022-03-12T08:56:20Z,- SAUMILDHANKAR closed issue by PR 2957: [2280](https://github.com/hackforla/website/issues/2280#event-6229430400) at 2022-03-12 01:56 AM PDT -SAUMILDHANKAR,2022-03-12T09:01:38Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1065845694) at 2022-03-12 02:01 AM PDT -SAUMILDHANKAR,2022-03-12T09:31:28Z,- SAUMILDHANKAR submitted pull request review: [2965](https://github.com/hackforla/website/pull/2965#pullrequestreview-907978321) at 2022-03-12 02:31 AM PDT -SAUMILDHANKAR,2022-03-12T09:50:44Z,- SAUMILDHANKAR submitted pull request review: [2966](https://github.com/hackforla/website/pull/2966#pullrequestreview-907980643) at 2022-03-12 02:50 AM PDT -SAUMILDHANKAR,2022-03-12T09:52:05Z,- SAUMILDHANKAR closed issue by PR 2966: [2907](https://github.com/hackforla/website/issues/2907#event-6229496781) at 2022-03-12 02:52 AM PDT -SAUMILDHANKAR,2022-03-12T10:29:02Z,- SAUMILDHANKAR commented on issue: [2907](https://github.com/hackforla/website/issues/2907#issuecomment-1065858173) at 2022-03-12 03:29 AM PDT -SAUMILDHANKAR,2022-03-12T10:50:53Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1065861133) at 2022-03-12 03:50 AM PDT -SAUMILDHANKAR,2022-03-12T10:54:47Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1065861726) at 2022-03-12 03:54 AM PDT -SAUMILDHANKAR,2022-03-12T10:58:43Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1065862210) at 2022-03-12 03:58 AM PDT -SAUMILDHANKAR,2022-03-12T11:01:00Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1065862527) at 2022-03-12 04:01 AM PDT -SAUMILDHANKAR,2022-03-12T11:01:00Z,- SAUMILDHANKAR closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-6229567739) at 2022-03-12 04:01 AM PDT -SAUMILDHANKAR,2022-03-12T11:07:38Z,- SAUMILDHANKAR commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1065863489) at 2022-03-12 04:07 AM PDT -SAUMILDHANKAR,2022-03-12T11:09:55Z,- SAUMILDHANKAR commented on issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-1065863810) at 2022-03-12 04:09 AM PDT -SAUMILDHANKAR,2022-03-12T11:13:09Z,- SAUMILDHANKAR commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1065864234) at 2022-03-12 04:13 AM PDT -SAUMILDHANKAR,2022-03-12T11:21:33Z,- SAUMILDHANKAR commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1065865220) at 2022-03-12 04:21 AM PDT -SAUMILDHANKAR,2022-03-12T11:30:01Z,- SAUMILDHANKAR commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1065866402) at 2022-03-12 04:30 AM PDT -SAUMILDHANKAR,2022-03-12T11:47:44Z,- SAUMILDHANKAR commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1065868677) at 2022-03-12 04:47 AM PDT -SAUMILDHANKAR,2022-03-12T11:53:31Z,- SAUMILDHANKAR commented on issue: [2838](https://github.com/hackforla/website/issues/2838#issuecomment-1065869631) at 2022-03-12 04:53 AM PDT -SAUMILDHANKAR,2022-03-12T12:16:35Z,- SAUMILDHANKAR commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1065873279) at 2022-03-12 05:16 AM PDT -SAUMILDHANKAR,2022-03-12T22:24:59Z,- SAUMILDHANKAR commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1065975734) at 2022-03-12 03:24 PM PDT -SAUMILDHANKAR,2022-03-13T22:25:42Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1066194570) at 2022-03-13 03:25 PM PDT -SAUMILDHANKAR,2022-03-14T06:20:20Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-908333027) at 2022-03-13 11:20 PM PDT -SAUMILDHANKAR,2022-03-14T07:19:47Z,- SAUMILDHANKAR commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1066455714) at 2022-03-14 12:19 AM PDT -SAUMILDHANKAR,2022-03-14T07:26:09Z,- SAUMILDHANKAR commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1066460218) at 2022-03-14 12:26 AM PDT -SAUMILDHANKAR,2022-03-14T07:28:45Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1066462026) at 2022-03-14 12:28 AM PDT -SAUMILDHANKAR,2022-03-17T21:38:48Z,- SAUMILDHANKAR commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1071536152) at 2022-03-17 02:38 PM PDT -SAUMILDHANKAR,2022-03-18T23:39:59Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1072888758) at 2022-03-18 04:39 PM PDT -SAUMILDHANKAR,2022-03-19T16:33:57Z,- SAUMILDHANKAR commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1073040060) at 2022-03-19 09:33 AM PDT -SAUMILDHANKAR,2022-03-19T16:36:12Z,- SAUMILDHANKAR commented on issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-1073040430) at 2022-03-19 09:36 AM PDT -SAUMILDHANKAR,2022-03-19T16:40:43Z,- SAUMILDHANKAR commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1073041135) at 2022-03-19 09:40 AM PDT -SAUMILDHANKAR,2022-03-19T16:49:02Z,- SAUMILDHANKAR commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1073042335) at 2022-03-19 09:49 AM PDT -SAUMILDHANKAR,2022-03-19T17:07:22Z,- SAUMILDHANKAR commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1073045752) at 2022-03-19 10:07 AM PDT -SAUMILDHANKAR,2022-03-19T17:07:48Z,- SAUMILDHANKAR commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1073045830) at 2022-03-19 10:07 AM PDT -SAUMILDHANKAR,2022-03-19T17:08:43Z,- SAUMILDHANKAR commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1073045995) at 2022-03-19 10:08 AM PDT -SAUMILDHANKAR,2022-03-19T20:09:34Z,- SAUMILDHANKAR commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1073073942) at 2022-03-19 01:09 PM PDT -SAUMILDHANKAR,2022-03-20T16:48:53Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073289084) at 2022-03-20 09:48 AM PDT -SAUMILDHANKAR,2022-03-20T17:17:37Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073294941) at 2022-03-20 10:17 AM PDT -SAUMILDHANKAR,2022-03-21T02:47:45Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915204827) at 2022-03-20 07:47 PM PDT -SAUMILDHANKAR,2022-03-21T06:44:25Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1073528856) at 2022-03-20 11:44 PM PDT -SAUMILDHANKAR,2022-03-21T07:43:53Z,- SAUMILDHANKAR commented on pull request: [2995](https://github.com/hackforla/website/pull/2995#issuecomment-1073562097) at 2022-03-21 12:43 AM PDT -SAUMILDHANKAR,2022-03-21T07:46:45Z,- SAUMILDHANKAR submitted pull request review: [2995](https://github.com/hackforla/website/pull/2995#pullrequestreview-915347694) at 2022-03-21 12:46 AM PDT -SAUMILDHANKAR,2022-03-21T07:48:14Z,- SAUMILDHANKAR closed issue by PR 2995: [2238](https://github.com/hackforla/website/issues/2238#event-6273326484) at 2022-03-21 12:48 AM PDT -SAUMILDHANKAR,2022-03-21T08:16:28Z,- SAUMILDHANKAR closed issue by PR 2982: [2886](https://github.com/hackforla/website/issues/2886#event-6273479719) at 2022-03-21 01:16 AM PDT -SAUMILDHANKAR,2022-03-22T00:45:29Z,- SAUMILDHANKAR closed issue by PR 2991: [2990](https://github.com/hackforla/website/issues/2990#event-6279742092) at 2022-03-21 05:45 PM PDT -SAUMILDHANKAR,2022-03-22T00:52:16Z,- SAUMILDHANKAR commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1074566463) at 2022-03-21 05:52 PM PDT -SAUMILDHANKAR,2022-03-22T02:05:33Z,- SAUMILDHANKAR commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1074630466) at 2022-03-21 07:05 PM PDT -SAUMILDHANKAR,2022-03-22T02:22:51Z,- SAUMILDHANKAR submitted pull request review: [2994](https://github.com/hackforla/website/pull/2994#pullrequestreview-916585055) at 2022-03-21 07:22 PM PDT -SAUMILDHANKAR,2022-03-22T02:23:18Z,- SAUMILDHANKAR closed issue by PR 2994: [2987](https://github.com/hackforla/website/issues/2987#event-6280143233) at 2022-03-21 07:23 PM PDT -SAUMILDHANKAR,2022-03-23T00:28:04Z,- SAUMILDHANKAR submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-918039418) at 2022-03-22 05:28 PM PDT -SAUMILDHANKAR,2022-03-23T21:43:55Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1076849672) at 2022-03-23 02:43 PM PDT -SAUMILDHANKAR,2022-03-23T21:47:47Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1076852646) at 2022-03-23 02:47 PM PDT -SAUMILDHANKAR,2022-03-25T00:10:53Z,- SAUMILDHANKAR commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078521786) at 2022-03-24 05:10 PM PDT -SAUMILDHANKAR,2022-03-25T21:36:19Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1079453313) at 2022-03-25 02:36 PM PDT -SAUMILDHANKAR,2022-03-25T21:41:24Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1079456407) at 2022-03-25 02:41 PM PDT -SAUMILDHANKAR,2022-03-26T06:49:17Z,- SAUMILDHANKAR submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-922282182) at 2022-03-25 11:49 PM PDT -SAUMILDHANKAR,2022-03-26T07:13:00Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-922289422) at 2022-03-26 12:13 AM PDT -SAUMILDHANKAR,2022-03-26T07:31:06Z,- SAUMILDHANKAR submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-922291246) at 2022-03-26 12:31 AM PDT -SAUMILDHANKAR,2022-03-26T07:56:41Z,- SAUMILDHANKAR submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-922293023) at 2022-03-26 12:56 AM PDT -SAUMILDHANKAR,2022-03-26T09:07:48Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-922298195) at 2022-03-26 02:07 AM PDT -SAUMILDHANKAR,2022-03-26T20:07:46Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1079766190) at 2022-03-26 01:07 PM PDT -SAUMILDHANKAR,2022-03-26T20:24:53Z,- SAUMILDHANKAR commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1079768685) at 2022-03-26 01:24 PM PDT -SAUMILDHANKAR,2022-03-26T20:29:46Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1079769394) at 2022-03-26 01:29 PM PDT -SAUMILDHANKAR,2022-03-26T21:01:59Z,- SAUMILDHANKAR commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1079774147) at 2022-03-26 02:01 PM PDT -SAUMILDHANKAR,2022-03-26T21:20:01Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1079776751) at 2022-03-26 02:20 PM PDT -SAUMILDHANKAR,2022-03-26T21:32:27Z,- SAUMILDHANKAR closed issue as completed: [2837](https://github.com/hackforla/website/issues/2837#event-6312589247) at 2022-03-26 02:32 PM PDT -SAUMILDHANKAR,2022-03-27T06:51:27Z,- SAUMILDHANKAR commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1079853503) at 2022-03-26 11:51 PM PDT -SAUMILDHANKAR,2022-03-27T08:43:00Z,- SAUMILDHANKAR submitted pull request review: [3012](https://github.com/hackforla/website/pull/3012#pullrequestreview-922421835) at 2022-03-27 01:43 AM PDT -SAUMILDHANKAR,2022-03-27T08:44:34Z,- SAUMILDHANKAR closed issue by PR 3012: [2745](https://github.com/hackforla/website/issues/2745#event-6313395712) at 2022-03-27 01:44 AM PDT -SAUMILDHANKAR,2022-03-28T23:56:04Z,- SAUMILDHANKAR commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1081262348) at 2022-03-28 04:56 PM PDT -SAUMILDHANKAR,2022-03-29T02:56:34Z,- SAUMILDHANKAR commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1081347594) at 2022-03-28 07:56 PM PDT -SAUMILDHANKAR,2022-03-29T07:01:16Z,- SAUMILDHANKAR submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-924116388) at 2022-03-29 12:01 AM PDT -SAUMILDHANKAR,2022-03-29T07:17:10Z,- SAUMILDHANKAR submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-924135797) at 2022-03-29 12:17 AM PDT -SAUMILDHANKAR,2022-03-29T07:18:00Z,- SAUMILDHANKAR closed issue by PR 3010: [2941](https://github.com/hackforla/website/issues/2941#event-6324038138) at 2022-03-29 12:18 AM PDT -SAUMILDHANKAR,2022-03-29T21:45:12Z,- SAUMILDHANKAR submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-925272396) at 2022-03-29 02:45 PM PDT -SAUMILDHANKAR,2022-03-29T22:57:21Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1082448809) at 2022-03-29 03:57 PM PDT -SAUMILDHANKAR,2022-03-29T23:22:20Z,- SAUMILDHANKAR closed issue by PR 2988: [2656](https://github.com/hackforla/website/issues/2656#event-6330580575) at 2022-03-29 04:22 PM PDT -SAUMILDHANKAR,2022-03-30T00:29:42Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1082495688) at 2022-03-29 05:29 PM PDT -SAUMILDHANKAR,2022-03-31T00:29:42Z,- SAUMILDHANKAR assigned to issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1058768426) at 2022-03-30 05:29 PM PDT -SAUMILDHANKAR,2022-03-31T23:33:32Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1085230693) at 2022-03-31 04:33 PM PDT -SAUMILDHANKAR,2022-04-01T23:54:49Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-929490868) at 2022-04-01 04:54 PM PDT -SAUMILDHANKAR,2022-04-01T23:56:15Z,- SAUMILDHANKAR closed issue by PR 2790: [2384](https://github.com/hackforla/website/issues/2384#event-6355881381) at 2022-04-01 04:56 PM PDT -SAUMILDHANKAR,2022-04-02T17:01:17Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-929587523) at 2022-04-02 10:01 AM PDT -SAUMILDHANKAR,2022-04-02T20:30:34Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1086717380) at 2022-04-02 01:30 PM PDT -SAUMILDHANKAR,2022-04-02T20:39:16Z,- SAUMILDHANKAR commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1086718673) at 2022-04-02 01:39 PM PDT -SAUMILDHANKAR,2022-04-02T20:51:48Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1086720533) at 2022-04-02 01:51 PM PDT -SAUMILDHANKAR,2022-04-02T20:53:26Z,- SAUMILDHANKAR commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1086720967) at 2022-04-02 01:53 PM PDT -SAUMILDHANKAR,2022-04-02T21:03:50Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1086723765) at 2022-04-02 02:03 PM PDT -SAUMILDHANKAR,2022-04-02T21:38:51Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1086728798) at 2022-04-02 02:38 PM PDT -SAUMILDHANKAR,2022-04-03T16:20:25Z,- SAUMILDHANKAR opened issue: [3031](https://github.com/hackforla/website/issues/3031) at 2022-04-03 09:20 AM PDT -SAUMILDHANKAR,2022-04-04T23:12:04Z,- SAUMILDHANKAR commented on pull request: [3033](https://github.com/hackforla/website/pull/3033#issuecomment-1088103509) at 2022-04-04 04:12 PM PDT -SAUMILDHANKAR,2022-04-04T23:52:52Z,- SAUMILDHANKAR submitted pull request review: [3033](https://github.com/hackforla/website/pull/3033#pullrequestreview-931072417) at 2022-04-04 04:52 PM PDT -SAUMILDHANKAR,2022-04-05T15:24:00Z,- SAUMILDHANKAR closed issue by PR 3030: [2669](https://github.com/hackforla/website/issues/2669#event-6372241803) at 2022-04-05 08:24 AM PDT -SAUMILDHANKAR,2022-04-05T17:06:27Z,- SAUMILDHANKAR closed issue by PR 3029: [2641](https://github.com/hackforla/website/issues/2641#event-6373198259) at 2022-04-05 10:06 AM PDT -SAUMILDHANKAR,2022-04-05T22:29:37Z,- SAUMILDHANKAR commented on issue: [3018](https://github.com/hackforla/website/issues/3018#issuecomment-1089447945) at 2022-04-05 03:29 PM PDT -SAUMILDHANKAR,2022-04-07T04:29:43Z,- SAUMILDHANKAR commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1091067966) at 2022-04-06 09:29 PM PDT -SAUMILDHANKAR,2022-04-08T09:12:26Z,- SAUMILDHANKAR commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1092633955) at 2022-04-08 02:12 AM PDT -SAUMILDHANKAR,2022-04-09T16:22:48Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1094078446) at 2022-04-09 09:22 AM PDT -SAUMILDHANKAR,2022-04-09T16:27:42Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1094079329) at 2022-04-09 09:27 AM PDT -SAUMILDHANKAR,2022-04-09T16:33:57Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1094080345) at 2022-04-09 09:33 AM PDT -SAUMILDHANKAR,2022-04-09T16:39:20Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1094081230) at 2022-04-09 09:39 AM PDT -SAUMILDHANKAR,2022-04-09T16:45:38Z,- SAUMILDHANKAR commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1094082402) at 2022-04-09 09:45 AM PDT -SAUMILDHANKAR,2022-04-09T17:00:59Z,- SAUMILDHANKAR commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1094085497) at 2022-04-09 10:00 AM PDT -SAUMILDHANKAR,2022-04-09T17:04:19Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1094086159) at 2022-04-09 10:04 AM PDT -SAUMILDHANKAR,2022-04-09T19:08:55Z,- SAUMILDHANKAR assigned to issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090728357) at 2022-04-09 12:08 PM PDT -SAUMILDHANKAR,2022-04-09T21:44:26Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1094128935) at 2022-04-09 02:44 PM PDT -SAUMILDHANKAR,2022-04-10T00:53:27Z,- SAUMILDHANKAR commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1094150389) at 2022-04-09 05:53 PM PDT -SAUMILDHANKAR,2022-04-10T01:57:57Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1094157625) at 2022-04-09 06:57 PM PDT -SAUMILDHANKAR,2022-04-10T03:26:45Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1094167387) at 2022-04-09 08:26 PM PDT -SAUMILDHANKAR,2022-04-10T20:17:56Z,- SAUMILDHANKAR commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1094361275) at 2022-04-10 01:17 PM PDT -SAUMILDHANKAR,2022-04-11T22:43:53Z,- SAUMILDHANKAR commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1095662309) at 2022-04-11 03:43 PM PDT -SAUMILDHANKAR,2022-04-11T23:52:13Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-938718175) at 2022-04-11 04:52 PM PDT -SAUMILDHANKAR,2022-04-12T01:21:45Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-938758566) at 2022-04-11 06:21 PM PDT -SAUMILDHANKAR,2022-04-12T01:39:27Z,- SAUMILDHANKAR commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1095791689) at 2022-04-11 06:39 PM PDT -SAUMILDHANKAR,2022-04-12T01:51:35Z,- SAUMILDHANKAR commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1095806899) at 2022-04-11 06:51 PM PDT -SAUMILDHANKAR,2022-04-12T17:23:39Z,- SAUMILDHANKAR commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1096994570) at 2022-04-12 10:23 AM PDT -SAUMILDHANKAR,2022-04-12T17:33:06Z,- SAUMILDHANKAR commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1097001998) at 2022-04-12 10:33 AM PDT -SAUMILDHANKAR,2022-04-12T19:44:47Z,- SAUMILDHANKAR commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1097144871) at 2022-04-12 12:44 PM PDT -SAUMILDHANKAR,2022-04-12T19:53:14Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-940072268) at 2022-04-12 12:53 PM PDT -SAUMILDHANKAR,2022-04-12T19:55:22Z,- SAUMILDHANKAR commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1097154191) at 2022-04-12 12:55 PM PDT -SAUMILDHANKAR,2022-04-13T01:21:06Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-940301924) at 2022-04-12 06:21 PM PDT -SAUMILDHANKAR,2022-04-13T01:23:11Z,- SAUMILDHANKAR closed issue by PR 3036: [2711](https://github.com/hackforla/website/issues/2711#event-6423580890) at 2022-04-12 06:23 PM PDT -SAUMILDHANKAR,2022-04-14T21:35:38Z,- SAUMILDHANKAR commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1099649122) at 2022-04-14 02:35 PM PDT -SAUMILDHANKAR,2022-04-15T01:16:44Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1099766894) at 2022-04-14 06:16 PM PDT -SAUMILDHANKAR,2022-04-16T01:41:49Z,- SAUMILDHANKAR commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1100501917) at 2022-04-15 06:41 PM PDT -SAUMILDHANKAR,2022-04-16T04:06:36Z,- SAUMILDHANKAR commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1100561675) at 2022-04-15 09:06 PM PDT -SAUMILDHANKAR,2022-04-16T08:20:58Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1100605057) at 2022-04-16 01:20 AM PDT -SAUMILDHANKAR,2022-04-16T08:47:18Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1100610368) at 2022-04-16 01:47 AM PDT -SAUMILDHANKAR,2022-04-16T19:29:09Z,- SAUMILDHANKAR commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1100738578) at 2022-04-16 12:29 PM PDT -SAUMILDHANKAR,2022-04-16T19:42:23Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1100741810) at 2022-04-16 12:42 PM PDT -SAUMILDHANKAR,2022-04-16T19:53:59Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1100743800) at 2022-04-16 12:53 PM PDT -SAUMILDHANKAR,2022-04-16T19:58:08Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1100744857) at 2022-04-16 12:58 PM PDT -SAUMILDHANKAR,2022-04-16T20:09:18Z,- SAUMILDHANKAR commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1100747716) at 2022-04-16 01:09 PM PDT -SAUMILDHANKAR,2022-04-16T20:16:42Z,- SAUMILDHANKAR commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1100748506) at 2022-04-16 01:16 PM PDT -SAUMILDHANKAR,2022-04-16T20:26:12Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1100749722) at 2022-04-16 01:26 PM PDT -SAUMILDHANKAR,2022-04-16T20:32:44Z,- SAUMILDHANKAR commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1100750505) at 2022-04-16 01:32 PM PDT -SAUMILDHANKAR,2022-04-16T21:35:33Z,- SAUMILDHANKAR commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1100758330) at 2022-04-16 02:35 PM PDT -SAUMILDHANKAR,2022-04-16T21:42:56Z,- SAUMILDHANKAR commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1100759283) at 2022-04-16 02:42 PM PDT -SAUMILDHANKAR,2022-04-16T22:33:54Z,- SAUMILDHANKAR commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1100764836) at 2022-04-16 03:33 PM PDT -SAUMILDHANKAR,2022-04-17T00:15:06Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1100775310) at 2022-04-16 05:15 PM PDT -SAUMILDHANKAR,2022-04-17T08:06:23Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1100827967) at 2022-04-17 01:06 AM PDT -SAUMILDHANKAR,2022-04-19T00:41:32Z,- SAUMILDHANKAR commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1101884636) at 2022-04-18 05:41 PM PDT -SAUMILDHANKAR,2022-04-19T01:12:47Z,- SAUMILDHANKAR commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1101897759) at 2022-04-18 06:12 PM PDT -SAUMILDHANKAR,2022-04-19T01:38:25Z,- SAUMILDHANKAR commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1101908974) at 2022-04-18 06:38 PM PDT -SAUMILDHANKAR,2022-04-21T00:53:43Z,- SAUMILDHANKAR commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1104596725) at 2022-04-20 05:53 PM PDT -SAUMILDHANKAR,2022-04-21T01:00:12Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1104603537) at 2022-04-20 06:00 PM PDT -SAUMILDHANKAR,2022-04-21T23:17:14Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1105847267) at 2022-04-21 04:17 PM PDT -SAUMILDHANKAR,2022-04-23T06:36:55Z,- SAUMILDHANKAR commented on issue: [3052](https://github.com/hackforla/website/issues/3052#issuecomment-1107395212) at 2022-04-22 11:36 PM PDT -SAUMILDHANKAR,2022-04-23T06:36:55Z,- SAUMILDHANKAR closed issue as completed: [3052](https://github.com/hackforla/website/issues/3052#event-6483708413) at 2022-04-22 11:36 PM PDT -SAUMILDHANKAR,2022-04-23T21:03:35Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1107649160) at 2022-04-23 02:03 PM PDT -SAUMILDHANKAR,2022-04-23T21:07:48Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1107649688) at 2022-04-23 02:07 PM PDT -SAUMILDHANKAR,2022-04-23T21:24:21Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1107651591) at 2022-04-23 02:24 PM PDT -SAUMILDHANKAR,2022-04-26T02:15:48Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1109226663) at 2022-04-25 07:15 PM PDT -SAUMILDHANKAR,2022-04-27T00:54:30Z,- SAUMILDHANKAR commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1110400916) at 2022-04-26 05:54 PM PDT -SAUMILDHANKAR,2022-04-27T00:59:21Z,- SAUMILDHANKAR commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1110410573) at 2022-04-26 05:59 PM PDT -SAUMILDHANKAR,2022-04-27T01:04:21Z,- SAUMILDHANKAR commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1110419089) at 2022-04-26 06:04 PM PDT -SAUMILDHANKAR,2022-04-27T01:07:26Z,- SAUMILDHANKAR commented on issue: [3055](https://github.com/hackforla/website/issues/3055#issuecomment-1110423183) at 2022-04-26 06:07 PM PDT -SAUMILDHANKAR,2022-04-27T01:14:14Z,- SAUMILDHANKAR commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1110426378) at 2022-04-26 06:14 PM PDT -SAUMILDHANKAR,2022-04-27T01:18:14Z,- SAUMILDHANKAR commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1110428347) at 2022-04-26 06:18 PM PDT -SAUMILDHANKAR,2022-04-28T23:33:58Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1112747257) at 2022-04-28 04:33 PM PDT -SAUMILDHANKAR,2022-04-30T19:20:23Z,- SAUMILDHANKAR commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1114040313) at 2022-04-30 12:20 PM PDT -SAUMILDHANKAR,2022-04-30T20:07:15Z,- SAUMILDHANKAR commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1114046531) at 2022-04-30 01:07 PM PDT -SAUMILDHANKAR,2022-05-02T00:10:06Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1114375181) at 2022-05-01 05:10 PM PDT -SAUMILDHANKAR,2022-05-02T03:01:24Z,- SAUMILDHANKAR commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1114448176) at 2022-05-01 08:01 PM PDT -SAUMILDHANKAR,2022-05-02T23:30:43Z,- SAUMILDHANKAR opened issue: [3088](https://github.com/hackforla/website/issues/3088) at 2022-05-02 04:30 PM PDT -SAUMILDHANKAR,2022-05-03T00:18:49Z,- SAUMILDHANKAR opened issue: [3089](https://github.com/hackforla/website/issues/3089) at 2022-05-02 05:18 PM PDT -SAUMILDHANKAR,2022-05-03T20:05:46Z,- SAUMILDHANKAR opened issue: [3090](https://github.com/hackforla/website/issues/3090) at 2022-05-03 01:05 PM PDT -SAUMILDHANKAR,2022-05-03T22:29:38Z,- SAUMILDHANKAR opened issue: [3091](https://github.com/hackforla/website/issues/3091) at 2022-05-03 03:29 PM PDT -SAUMILDHANKAR,2022-05-03T23:20:29Z,- SAUMILDHANKAR opened issue: [3092](https://github.com/hackforla/website/issues/3092) at 2022-05-03 04:20 PM PDT -SAUMILDHANKAR,2022-05-03T23:36:05Z,- SAUMILDHANKAR opened issue: [3093](https://github.com/hackforla/website/issues/3093) at 2022-05-03 04:36 PM PDT -SAUMILDHANKAR,2022-05-03T23:48:46Z,- SAUMILDHANKAR opened issue: [3094](https://github.com/hackforla/website/issues/3094) at 2022-05-03 04:48 PM PDT -SAUMILDHANKAR,2022-05-03T23:55:07Z,- SAUMILDHANKAR opened issue: [3095](https://github.com/hackforla/website/issues/3095) at 2022-05-03 04:55 PM PDT -SAUMILDHANKAR,2022-05-04T00:05:38Z,- SAUMILDHANKAR opened issue: [3096](https://github.com/hackforla/website/issues/3096) at 2022-05-03 05:05 PM PDT -SAUMILDHANKAR,2022-05-04T00:12:16Z,- SAUMILDHANKAR opened issue: [3097](https://github.com/hackforla/website/issues/3097) at 2022-05-03 05:12 PM PDT -SAUMILDHANKAR,2022-05-04T00:22:47Z,- SAUMILDHANKAR opened issue: [3098](https://github.com/hackforla/website/issues/3098) at 2022-05-03 05:22 PM PDT -SAUMILDHANKAR,2022-05-04T00:31:04Z,- SAUMILDHANKAR opened issue: [3099](https://github.com/hackforla/website/issues/3099) at 2022-05-03 05:31 PM PDT -SAUMILDHANKAR,2022-05-04T00:44:59Z,- SAUMILDHANKAR opened issue: [3100](https://github.com/hackforla/website/issues/3100) at 2022-05-03 05:44 PM PDT -SAUMILDHANKAR,2022-05-04T01:21:40Z,- SAUMILDHANKAR opened issue: [3101](https://github.com/hackforla/website/issues/3101) at 2022-05-03 06:21 PM PDT -SAUMILDHANKAR,2022-05-04T01:29:03Z,- SAUMILDHANKAR opened issue: [3102](https://github.com/hackforla/website/issues/3102) at 2022-05-03 06:29 PM PDT -SAUMILDHANKAR,2022-05-04T01:34:45Z,- SAUMILDHANKAR opened issue: [3103](https://github.com/hackforla/website/issues/3103) at 2022-05-03 06:34 PM PDT -SAUMILDHANKAR,2022-05-04T01:40:42Z,- SAUMILDHANKAR opened issue: [3104](https://github.com/hackforla/website/issues/3104) at 2022-05-03 06:40 PM PDT -SAUMILDHANKAR,2022-05-04T01:46:47Z,- SAUMILDHANKAR opened issue: [3105](https://github.com/hackforla/website/issues/3105) at 2022-05-03 06:46 PM PDT -SAUMILDHANKAR,2022-05-04T01:53:29Z,- SAUMILDHANKAR opened issue: [3106](https://github.com/hackforla/website/issues/3106) at 2022-05-03 06:53 PM PDT -SAUMILDHANKAR,2022-05-04T01:58:33Z,- SAUMILDHANKAR opened issue: [3107](https://github.com/hackforla/website/issues/3107) at 2022-05-03 06:58 PM PDT -SAUMILDHANKAR,2022-05-04T06:37:18Z,- SAUMILDHANKAR commented on issue: [2570](https://github.com/hackforla/website/issues/2570#issuecomment-1116975337) at 2022-05-03 11:37 PM PDT -SAUMILDHANKAR,2022-05-06T21:33:32Z,- SAUMILDHANKAR opened issue: [3109](https://github.com/hackforla/website/issues/3109) at 2022-05-06 02:33 PM PDT -SAUMILDHANKAR,2022-05-06T22:12:03Z,- SAUMILDHANKAR opened issue: [3110](https://github.com/hackforla/website/issues/3110) at 2022-05-06 03:12 PM PDT -SAUMILDHANKAR,2022-05-07T01:25:21Z,- SAUMILDHANKAR opened issue: [3111](https://github.com/hackforla/website/issues/3111) at 2022-05-06 06:25 PM PDT -SAUMILDHANKAR,2022-05-07T01:51:33Z,- SAUMILDHANKAR opened issue: [3112](https://github.com/hackforla/website/issues/3112) at 2022-05-06 06:51 PM PDT -SAUMILDHANKAR,2022-05-07T02:07:05Z,- SAUMILDHANKAR commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1120110380) at 2022-05-06 07:07 PM PDT -SAUMILDHANKAR,2022-05-07T02:16:28Z,- SAUMILDHANKAR commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1120112205) at 2022-05-06 07:16 PM PDT -SAUMILDHANKAR,2022-05-07T15:51:24Z,- SAUMILDHANKAR closed issue as completed: [2940](https://github.com/hackforla/website/issues/2940#event-6567633238) at 2022-05-07 08:51 AM PDT -SAUMILDHANKAR,2022-05-07T15:58:40Z,- SAUMILDHANKAR commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1120232514) at 2022-05-07 08:58 AM PDT -SAUMILDHANKAR,2022-05-07T16:11:50Z,- SAUMILDHANKAR commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1120234602) at 2022-05-07 09:11 AM PDT -SAUMILDHANKAR,2022-05-07T16:20:24Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1120235756) at 2022-05-07 09:20 AM PDT -SAUMILDHANKAR,2022-05-07T17:04:58Z,- SAUMILDHANKAR commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1120241974) at 2022-05-07 10:04 AM PDT -SAUMILDHANKAR,2022-05-07T17:12:56Z,- SAUMILDHANKAR commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1120243260) at 2022-05-07 10:12 AM PDT -SAUMILDHANKAR,2022-05-07T19:54:30Z,- SAUMILDHANKAR commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1120276911) at 2022-05-07 12:54 PM PDT -SAUMILDHANKAR,2022-05-07T20:16:03Z,- SAUMILDHANKAR commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1120281518) at 2022-05-07 01:16 PM PDT -SAUMILDHANKAR,2022-05-07T20:22:01Z,- SAUMILDHANKAR closed issue as completed: [2985](https://github.com/hackforla/website/issues/2985#event-6567864771) at 2022-05-07 01:22 PM PDT -SAUMILDHANKAR,2022-05-07T20:36:38Z,- SAUMILDHANKAR commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1120285387) at 2022-05-07 01:36 PM PDT -SAUMILDHANKAR,2022-05-07T20:57:46Z,- SAUMILDHANKAR commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1120289117) at 2022-05-07 01:57 PM PDT -SAUMILDHANKAR,2022-05-08T03:39:33Z,- SAUMILDHANKAR closed issue by PR 3108: [2892](https://github.com/hackforla/website/issues/2892#event-6568169460) at 2022-05-07 08:39 PM PDT -SAUMILDHANKAR,2022-05-08T16:02:35Z,- SAUMILDHANKAR commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1120444143) at 2022-05-08 09:02 AM PDT -SAUMILDHANKAR,2022-05-08T16:06:39Z,- SAUMILDHANKAR commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1120444851) at 2022-05-08 09:06 AM PDT -SAUMILDHANKAR,2022-05-09T23:53:47Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1121694635) at 2022-05-09 04:53 PM PDT -SAUMILDHANKAR,2022-05-11T00:27:51Z,- SAUMILDHANKAR assigned to issue: [2400](https://github.com/hackforla/website/issues/2400#event-6207066669) at 2022-05-10 05:27 PM PDT -SAUMILDHANKAR,2022-05-11T00:29:00Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1123044665) at 2022-05-10 05:29 PM PDT -SAUMILDHANKAR,2022-05-11T00:48:39Z,- SAUMILDHANKAR commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1123056706) at 2022-05-10 05:48 PM PDT -SAUMILDHANKAR,2022-05-11T21:25:31Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1124309530) at 2022-05-11 02:25 PM PDT -SAUMILDHANKAR,2022-05-12T02:35:10Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1124469403) at 2022-05-11 07:35 PM PDT -SAUMILDHANKAR,2022-05-12T15:28:22Z,- SAUMILDHANKAR opened issue: [3132](https://github.com/hackforla/website/issues/3132) at 2022-05-12 08:28 AM PDT -SAUMILDHANKAR,2022-05-13T23:01:30Z,- SAUMILDHANKAR commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1126565335) at 2022-05-13 04:01 PM PDT -SAUMILDHANKAR,2022-05-14T03:12:48Z,- SAUMILDHANKAR opened pull request: [3138](https://github.com/hackforla/website/pull/3138) at 2022-05-13 08:12 PM PDT -SAUMILDHANKAR,2022-05-14T16:02:57Z,- SAUMILDHANKAR commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126743679) at 2022-05-14 09:02 AM PDT -SAUMILDHANKAR,2022-05-14T16:09:23Z,- SAUMILDHANKAR closed issue by PR 3134: [2934](https://github.com/hackforla/website/issues/2934#event-6610193588) at 2022-05-14 09:09 AM PDT -SAUMILDHANKAR,2022-05-14T16:26:07Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1126770762) at 2022-05-14 09:26 AM PDT -SAUMILDHANKAR,2022-05-14T16:26:07Z,- SAUMILDHANKAR reopened issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1126770762) at 2022-05-14 09:26 AM PDT -SAUMILDHANKAR,2022-05-15T16:13:28Z,- SAUMILDHANKAR commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1126971906) at 2022-05-15 09:13 AM PDT -SAUMILDHANKAR,2022-05-15T16:13:29Z,- SAUMILDHANKAR reopened issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1126971906) at 2022-05-15 09:13 AM PDT -SAUMILDHANKAR,2022-05-15T16:22:14Z,- SAUMILDHANKAR commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1126973282) at 2022-05-15 09:22 AM PDT -SAUMILDHANKAR,2022-05-15T16:25:46Z,- SAUMILDHANKAR commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1126973812) at 2022-05-15 09:25 AM PDT -SAUMILDHANKAR,2022-05-15T16:29:13Z,- SAUMILDHANKAR commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1126974285) at 2022-05-15 09:29 AM PDT -SAUMILDHANKAR,2022-05-15T16:31:40Z,- SAUMILDHANKAR commented on issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1126974601) at 2022-05-15 09:31 AM PDT -SAUMILDHANKAR,2022-05-15T16:32:29Z,- SAUMILDHANKAR commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1126974754) at 2022-05-15 09:32 AM PDT -SAUMILDHANKAR,2022-05-15T16:33:27Z,- SAUMILDHANKAR commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1126974892) at 2022-05-15 09:33 AM PDT -SAUMILDHANKAR,2022-05-16T22:26:34Z,- SAUMILDHANKAR commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1128197909) at 2022-05-16 03:26 PM PDT -SAUMILDHANKAR,2022-05-16T22:38:21Z,- SAUMILDHANKAR commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1128205581) at 2022-05-16 03:38 PM PDT -SAUMILDHANKAR,2022-05-20T02:23:53Z,- SAUMILDHANKAR commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1132386706) at 2022-05-19 07:23 PM PDT -SAUMILDHANKAR,2022-05-20T20:49:07Z,- SAUMILDHANKAR commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1133358538) at 2022-05-20 01:49 PM PDT -SAUMILDHANKAR,2022-05-20T21:50:25Z,- SAUMILDHANKAR commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1133414539) at 2022-05-20 02:50 PM PDT -SAUMILDHANKAR,2022-05-20T22:16:45Z,- SAUMILDHANKAR commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1133428186) at 2022-05-20 03:16 PM PDT -SAUMILDHANKAR,2022-05-20T22:36:07Z,- SAUMILDHANKAR commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1133438295) at 2022-05-20 03:36 PM PDT -SAUMILDHANKAR,2022-05-20T22:42:36Z,- SAUMILDHANKAR commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1133441180) at 2022-05-20 03:42 PM PDT -SAUMILDHANKAR,2022-05-20T22:57:26Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1133447451) at 2022-05-20 03:57 PM PDT -SAUMILDHANKAR,2022-05-21T00:27:44Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1133481342) at 2022-05-20 05:27 PM PDT -SAUMILDHANKAR,2022-05-23T21:36:03Z,- SAUMILDHANKAR commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1135159397) at 2022-05-23 02:36 PM PDT -SAUMILDHANKAR,2022-05-23T21:44:31Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1135165387) at 2022-05-23 02:44 PM PDT -SAUMILDHANKAR,2022-05-23T22:11:26Z,- SAUMILDHANKAR commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1135187288) at 2022-05-23 03:11 PM PDT -SAUMILDHANKAR,2022-05-24T02:08:06Z,- SAUMILDHANKAR commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1135320797) at 2022-05-23 07:08 PM PDT -SAUMILDHANKAR,2022-05-24T02:27:23Z,- SAUMILDHANKAR commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1135330178) at 2022-05-23 07:27 PM PDT -SAUMILDHANKAR,2022-05-24T03:05:03Z,- SAUMILDHANKAR commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1135349654) at 2022-05-23 08:05 PM PDT -SAUMILDHANKAR,2022-05-24T03:13:10Z,- SAUMILDHANKAR commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1135354190) at 2022-05-23 08:13 PM PDT -SAUMILDHANKAR,2022-05-28T07:05:03Z,- SAUMILDHANKAR commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140190488) at 2022-05-28 12:05 AM PDT -SAUMILDHANKAR,2022-05-28T07:09:08Z,- SAUMILDHANKAR commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1140191244) at 2022-05-28 12:09 AM PDT -SAUMILDHANKAR,2022-05-28T07:25:32Z,- SAUMILDHANKAR commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1140193735) at 2022-05-28 12:25 AM PDT -SAUMILDHANKAR,2022-05-28T07:37:35Z,- SAUMILDHANKAR closed issue as completed: [3004](https://github.com/hackforla/website/issues/3004#event-6696600415) at 2022-05-28 12:37 AM PDT -SAUMILDHANKAR,2022-05-28T07:42:50Z,- SAUMILDHANKAR closed issue as completed: [3054](https://github.com/hackforla/website/issues/3054#event-6696620009) at 2022-05-28 12:42 AM PDT -SAUMILDHANKAR,2022-05-28T07:49:08Z,- SAUMILDHANKAR commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1140199058) at 2022-05-28 12:49 AM PDT -SAUMILDHANKAR,2022-05-28T07:55:24Z,- SAUMILDHANKAR commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1140200635) at 2022-05-28 12:55 AM PDT -SAUMILDHANKAR,2022-05-28T07:57:58Z,- SAUMILDHANKAR commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1140201050) at 2022-05-28 12:57 AM PDT -SAUMILDHANKAR,2022-05-28T08:04:13Z,- SAUMILDHANKAR commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1140202330) at 2022-05-28 01:04 AM PDT -SAUMILDHANKAR,2022-05-28T08:07:25Z,- SAUMILDHANKAR commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1140203060) at 2022-05-28 01:07 AM PDT -SAUMILDHANKAR,2022-05-28T08:10:12Z,- SAUMILDHANKAR commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1140203721) at 2022-05-28 01:10 AM PDT -SAUMILDHANKAR,2022-05-28T08:15:27Z,- SAUMILDHANKAR commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1140205408) at 2022-05-28 01:15 AM PDT -SAUMILDHANKAR,2022-05-28T08:39:06Z,- SAUMILDHANKAR commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1140212850) at 2022-05-28 01:39 AM PDT -SAUMILDHANKAR,2022-05-28T08:39:06Z,- SAUMILDHANKAR reopened issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1140212850) at 2022-05-28 01:39 AM PDT -SAUMILDHANKAR,2022-05-28T08:45:25Z,- SAUMILDHANKAR commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1140214110) at 2022-05-28 01:45 AM PDT -SAUMILDHANKAR,2022-05-28T08:45:26Z,- SAUMILDHANKAR reopened issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1140214110) at 2022-05-28 01:45 AM PDT -SAUMILDHANKAR,2022-05-28T08:51:46Z,- SAUMILDHANKAR commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1140215046) at 2022-05-28 01:51 AM PDT -SAUMILDHANKAR,2022-05-28T08:59:32Z,- SAUMILDHANKAR commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1140216254) at 2022-05-28 01:59 AM PDT -SAUMILDHANKAR,2022-05-28T09:02:13Z,- SAUMILDHANKAR commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1140216719) at 2022-05-28 02:02 AM PDT -SAUMILDHANKAR,2022-05-28T09:03:28Z,- SAUMILDHANKAR commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1140217016) at 2022-05-28 02:03 AM PDT -SAUMILDHANKAR,2022-05-28T20:12:56Z,- SAUMILDHANKAR commented on issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1140323762) at 2022-05-28 01:12 PM PDT -SAUMILDHANKAR,2022-05-28T20:16:22Z,- SAUMILDHANKAR commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1140324138) at 2022-05-28 01:16 PM PDT -SAUMILDHANKAR,2022-05-28T20:23:36Z,- SAUMILDHANKAR commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1140324851) at 2022-05-28 01:23 PM PDT -SAUMILDHANKAR,2022-05-29T17:46:10Z,- SAUMILDHANKAR commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1140494806) at 2022-05-29 10:46 AM PDT -SAUMILDHANKAR,2022-05-30T00:39:19Z,- SAUMILDHANKAR commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1140561961) at 2022-05-29 05:39 PM PDT -SAUMILDHANKAR,2022-05-30T00:56:44Z,- SAUMILDHANKAR commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140567867) at 2022-05-29 05:56 PM PDT -SAUMILDHANKAR,2022-05-31T22:29:31Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1142698364) at 2022-05-31 03:29 PM PDT -SAUMILDHANKAR,2022-06-04T22:10:25Z,- SAUMILDHANKAR submitted pull request review: [3219](https://github.com/hackforla/website/pull/3219#pullrequestreview-995958035) at 2022-06-04 03:10 PM PDT -SAUMILDHANKAR,2022-06-04T22:20:07Z,- SAUMILDHANKAR commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1146694050) at 2022-06-04 03:20 PM PDT -SAUMILDHANKAR,2022-06-04T22:20:08Z,- SAUMILDHANKAR reopened issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1146694050) at 2022-06-04 03:20 PM PDT -SAUMILDHANKAR,2022-06-04T23:46:07Z,- SAUMILDHANKAR commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1146704236) at 2022-06-04 04:46 PM PDT -SAUMILDHANKAR,2022-06-04T23:58:37Z,- SAUMILDHANKAR reopened issue: [2246](https://github.com/hackforla/website/issues/2246#event-5287108669) at 2022-06-04 04:58 PM PDT -SAUMILDHANKAR,2022-06-07T07:47:22Z,- SAUMILDHANKAR opened issue: [3227](https://github.com/hackforla/website/issues/3227) at 2022-06-07 12:47 AM PDT -SAUMILDHANKAR,2022-06-07T07:58:44Z,- SAUMILDHANKAR opened issue: [3228](https://github.com/hackforla/website/issues/3228) at 2022-06-07 12:58 AM PDT -SAUMILDHANKAR,2022-06-07T08:09:31Z,- SAUMILDHANKAR opened issue: [3229](https://github.com/hackforla/website/issues/3229) at 2022-06-07 01:09 AM PDT -SAUMILDHANKAR,2022-06-07T08:18:29Z,- SAUMILDHANKAR opened issue: [3230](https://github.com/hackforla/website/issues/3230) at 2022-06-07 01:18 AM PDT -SAUMILDHANKAR,2022-06-11T00:16:43Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1152812079) at 2022-06-10 05:16 PM PDT -SAUMILDHANKAR,2022-06-11T00:34:29Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1152816623) at 2022-06-10 05:34 PM PDT -SAUMILDHANKAR,2022-06-12T19:29:33Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1153269912) at 2022-06-12 12:29 PM PDT -SAUMILDHANKAR,2022-06-14T23:27:45Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1155804132) at 2022-06-14 04:27 PM PDT -SAUMILDHANKAR,2022-06-16T05:53:03Z,- SAUMILDHANKAR commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-1157261207) at 2022-06-15 10:53 PM PDT -SAUMILDHANKAR,2022-06-16T05:57:08Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1157263371) at 2022-06-15 10:57 PM PDT -SAUMILDHANKAR,2022-06-16T07:07:19Z,- SAUMILDHANKAR opened issue: [3255](https://github.com/hackforla/website/issues/3255) at 2022-06-16 12:07 AM PDT -SAUMILDHANKAR,2022-06-20T22:58:46Z,- SAUMILDHANKAR opened issue: [3274](https://github.com/hackforla/website/issues/3274) at 2022-06-20 03:58 PM PDT -SAUMILDHANKAR,2022-06-21T08:24:33Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1161425468) at 2022-06-21 01:24 AM PDT -SAUMILDHANKAR,2022-06-21T08:24:33Z,- SAUMILDHANKAR closed issue as completed: [3031](https://github.com/hackforla/website/issues/3031#event-6845243564) at 2022-06-21 01:24 AM PDT -SAUMILDHANKAR,2022-06-22T23:22:32Z,- SAUMILDHANKAR opened issue: [3290](https://github.com/hackforla/website/issues/3290) at 2022-06-22 04:22 PM PDT -SAUMILDHANKAR,2022-06-25T09:02:45Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1166233864) at 2022-06-25 02:02 AM PDT -SAUMILDHANKAR,2022-06-26T21:54:30Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1166655678) at 2022-06-26 02:54 PM PDT -SAUMILDHANKAR,2022-06-26T23:15:32Z,- SAUMILDHANKAR commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1166674326) at 2022-06-26 04:15 PM PDT -SAUMILDHANKAR,2022-06-26T23:58:47Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1166685375) at 2022-06-26 04:58 PM PDT -SAUMILDHANKAR,2022-07-02T00:11:43Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1172793008) at 2022-07-01 05:11 PM PDT -SAUMILDHANKAR,2022-07-06T02:01:44Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1175692919) at 2022-07-05 07:01 PM PDT -SAUMILDHANKAR,2022-07-06T02:57:49Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1175723620) at 2022-07-05 07:57 PM PDT -SAUMILDHANKAR,2022-07-10T19:55:02Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1179788501) at 2022-07-10 12:55 PM PDT -SAUMILDHANKAR,2022-07-17T09:04:54Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1186452373) at 2022-07-17 02:04 AM PDT -SAUMILDHANKAR,2022-08-01T17:08:48Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1201479063) at 2022-08-01 10:08 AM PDT -SAUMILDHANKAR,2022-08-21T17:21:11Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1221587086) at 2022-08-21 10:21 AM PDT -SAUMILDHANKAR,2022-08-28T20:11:01Z,- SAUMILDHANKAR commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1229544511) at 2022-08-28 01:11 PM PDT -SAUMILDHANKAR,2022-10-25T09:22:05Z,- SAUMILDHANKAR commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1290249941) at 2022-10-25 02:22 AM PDT -SAUMILDHANKAR,2023-04-23T17:31:02Z,- SAUMILDHANKAR assigned to issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1420153843) at 2023-04-23 10:31 AM PDT -SAUMILDHANKAR,2023-06-27T01:27:18Z,- SAUMILDHANKAR opened pull request: [4886](https://github.com/hackforla/website/pull/4886) at 2023-06-26 06:27 PM PDT -SAUMILDHANKAR,2023-06-28T10:21:32Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1611149980) at 2023-06-28 03:21 AM PDT -SAUMILDHANKAR,2023-06-29T09:06:29Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1612675084) at 2023-06-29 02:06 AM PDT -SAUMILDHANKAR,2023-07-07T11:22:31Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1625265838) at 2023-07-07 04:22 AM PDT -SAUMILDHANKAR,2023-07-08T04:34:23Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1626837286) at 2023-07-07 09:34 PM PDT -SAUMILDHANKAR,2023-07-10T23:43:48Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1629879972) at 2023-07-10 04:43 PM PDT -SAUMILDHANKAR,2023-07-13T00:43:23Z,- SAUMILDHANKAR pull request merged: [4886](https://github.com/hackforla/website/pull/4886#event-9805091305) at 2023-07-12 05:43 PM PDT -SAUMILDHANKAR,2023-07-14T10:23:16Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1635648731) at 2023-07-14 03:23 AM PDT -SAUMILDHANKAR,2023-07-18T01:10:32Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1639123274) at 2023-07-17 06:10 PM PDT -SAUMILDHANKAR,2023-07-18T03:29:31Z,- SAUMILDHANKAR opened issue: [5002](https://github.com/hackforla/website/issues/5002) at 2023-07-17 08:29 PM PDT -SAUMILDHANKAR,2023-07-18T09:49:16Z,- SAUMILDHANKAR commented on issue: [5002](https://github.com/hackforla/website/issues/5002#issuecomment-1639900980) at 2023-07-18 02:49 AM PDT -SAUMILDHANKAR,2023-07-19T12:02:41Z,- SAUMILDHANKAR opened issue: [5033](https://github.com/hackforla/website/issues/5033) at 2023-07-19 05:02 AM PDT -SAUMILDHANKAR,2023-07-20T12:01:50Z,- SAUMILDHANKAR commented on issue: [5033](https://github.com/hackforla/website/issues/5033#issuecomment-1643798299) at 2023-07-20 05:01 AM PDT -saumyashh,2020-12-06T19:17:25Z,- saumyashh commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739549322) at 2020-12-06 11:17 AM PST -sayalikotkar,2021-05-30T17:17:07Z,- sayalikotkar commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-851032307) at 2021-05-30 10:17 AM PDT -sayalikotkar,2021-05-30T17:18:35Z,- sayalikotkar commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-851032524) at 2021-05-30 10:18 AM PDT -sayalikotkar,2021-05-30T17:21:48Z,- sayalikotkar commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:21 AM PDT -sayalikotkar,2021-05-30T17:21:55Z,- sayalikotkar assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:21 AM PDT -sayalikotkar,2021-05-30T17:25:40Z,- sayalikotkar commented on issue: [1608](https://github.com/hackforla/website/issues/1608#issuecomment-851033363) at 2021-05-30 10:25 AM PDT -sayalikotkar,2021-05-30T17:27:31Z,- sayalikotkar closed issue as completed: [1028](https://github.com/hackforla/website/issues/1028#event-4817387295) at 2021-05-30 10:27 AM PDT -sayalikotkar,2021-06-06T17:35:51Z,- sayalikotkar assigned to issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-06-06 10:35 AM PDT -sayalikotkar,2021-06-06T17:35:55Z,- sayalikotkar unassigned from issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-06-06 10:35 AM PDT -sayalikotkar,2021-06-06T17:36:37Z,- sayalikotkar commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-855434271) at 2021-06-06 10:36 AM PDT -sayalikotkar,2021-06-06T17:44:22Z,- sayalikotkar commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855435299) at 2021-06-06 10:44 AM PDT -sayalikotkar,2021-06-06T17:50:24Z,- sayalikotkar closed issue as completed: [1687](https://github.com/hackforla/website/issues/1687#event-4848435243) at 2021-06-06 10:50 AM PDT -sayalikotkar,2021-06-06T17:53:19Z,- sayalikotkar commented on issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855436590) at 2021-06-06 10:53 AM PDT -sayalikotkar,2021-06-15T19:12:55Z,- sayalikotkar opened issue: [1742](https://github.com/hackforla/website/issues/1742) at 2021-06-15 12:12 PM PDT -sayalikotkar,2021-06-15T19:13:00Z,- sayalikotkar assigned to issue: [1742](https://github.com/hackforla/website/issues/1742) at 2021-06-15 12:13 PM PDT -sayalikotkar,2021-06-20T17:19:04Z,- sayalikotkar commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-864585663) at 2021-06-20 10:19 AM PDT -sayalikotkar,2021-06-20T20:56:26Z,- sayalikotkar assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -sayalikotkar,2021-06-20T22:15:50Z,- sayalikotkar assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -sayalikotkar,2021-06-23T19:33:25Z,- sayalikotkar commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867103750) at 2021-06-23 12:33 PM PDT -sayalikotkar,2021-06-27T17:46:10Z,- sayalikotkar commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-869201144) at 2021-06-27 10:46 AM PDT -sayalikotkar,2021-07-26T02:50:51Z,- sayalikotkar unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-07-25 07:50 PM PDT -sayalikotkar,2021-08-09T23:58:25Z,- sayalikotkar unassigned from issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-895628543) at 2021-08-09 04:58 PM PDT -sayalikotkar,2021-08-12T20:05:00Z,- sayalikotkar unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -sayeedkhannabil,5481,SKILLS ISSUE -sayeedkhannabil,2023-09-12T03:03:40Z,- sayeedkhannabil opened issue: [5481](https://github.com/hackforla/website/issues/5481) at 2023-09-11 08:03 PM PDT -sayeedkhannabil,2023-09-12T03:03:43Z,- sayeedkhannabil assigned to issue: [5481](https://github.com/hackforla/website/issues/5481) at 2023-09-11 08:03 PM PDT -sayeedkhannabil,2023-09-16T23:28:00Z,- sayeedkhannabil assigned to issue: [5324](https://github.com/hackforla/website/issues/5324) at 2023-09-16 04:28 PM PDT -sayeedkhannabil,2023-09-17T05:21:57Z,- sayeedkhannabil commented on issue: [5324](https://github.com/hackforla/website/issues/5324#issuecomment-1722395157) at 2023-09-16 10:21 PM PDT -sayeedkhannabil,2023-09-17T05:31:03Z,- sayeedkhannabil opened pull request: [5545](https://github.com/hackforla/website/pull/5545) at 2023-09-16 10:31 PM PDT -sayeedkhannabil,2023-09-17T06:11:03Z,- sayeedkhannabil pull request closed w/o merging: [5545](https://github.com/hackforla/website/pull/5545#event-10390839981) at 2023-09-16 11:11 PM PDT -sayeedkhannabil,2023-09-17T06:13:14Z,- sayeedkhannabil opened pull request: [5546](https://github.com/hackforla/website/pull/5546) at 2023-09-16 11:13 PM PDT -sayeedkhannabil,2023-09-17T19:20:22Z,- sayeedkhannabil commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722547114) at 2023-09-17 12:20 PM PDT -sayeedkhannabil,2023-09-18T20:40:12Z,- sayeedkhannabil commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1724338959) at 2023-09-18 01:40 PM PDT -sayeedkhannabil,2023-09-19T06:45:02Z,- sayeedkhannabil commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1724919688) at 2023-09-18 11:45 PM PDT -sayeedkhannabil,2023-09-26T04:39:20Z,- sayeedkhannabil pull request merged: [5546](https://github.com/hackforla/website/pull/5546#event-10469846670) at 2023-09-25 09:39 PM PDT -sayeedkhannabil,2023-10-08T17:19:32Z,- sayeedkhannabil closed issue as completed: [5481](https://github.com/hackforla/website/issues/5481#event-10584740660) at 2023-10-08 10:19 AM PDT -scarter31191,2937,SKILLS ISSUE -scarter31191,2022-03-08T03:59:09Z,- scarter31191 opened issue: [2937](https://github.com/hackforla/website/issues/2937) at 2022-03-07 07:59 PM PST -scarter31191,2022-03-09T04:06:50Z,- scarter31191 assigned to issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1061380867) at 2022-03-08 08:06 PM PST -scarter31191,2022-03-10T05:24:22Z,- scarter31191 assigned to issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1059946186) at 2022-03-09 09:24 PM PST -scarter31191,2022-03-11T03:38:00Z,- scarter31191 commented on issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1064740927) at 2022-03-10 07:38 PM PST -scarter31191,2022-03-13T03:53:12Z,- scarter31191 opened pull request: [2973](https://github.com/hackforla/website/pull/2973) at 2022-03-12 08:53 PM PDT -scarter31191,2022-03-13T17:31:02Z,- scarter31191 commented on pull request: [2970](https://github.com/hackforla/website/pull/2970#issuecomment-1066146997) at 2022-03-13 10:31 AM PDT -scarter31191,2022-03-14T04:07:33Z,- scarter31191 submitted pull request review: [2970](https://github.com/hackforla/website/pull/2970#pullrequestreview-908275985) at 2022-03-13 09:07 PM PDT -scarter31191,2022-03-14T04:20:14Z,- scarter31191 closed issue as completed: [2272](https://github.com/hackforla/website/issues/2272#event-6232468901) at 2022-03-13 09:20 PM PDT -scarter31191,2022-03-14T04:20:23Z,- scarter31191 reopened issue: [2272](https://github.com/hackforla/website/issues/2272#event-6232468901) at 2022-03-13 09:20 PM PDT -scarter31191,2022-03-14T04:26:55Z,- scarter31191 assigned to issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-926945747) at 2022-03-13 09:26 PM PDT -scarter31191,2022-03-14T04:33:22Z,- scarter31191 commented on issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-1066331268) at 2022-03-13 09:33 PM PDT -scarter31191,2022-03-15T02:45:38Z,- scarter31191 commented on issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-1067505091) at 2022-03-14 07:45 PM PDT -scarter31191,2022-03-15T21:17:16Z,- scarter31191 pull request merged: [2973](https://github.com/hackforla/website/pull/2973#event-6246521304) at 2022-03-15 02:17 PM PDT -scarter31191,2022-03-16T03:53:14Z,- scarter31191 opened pull request: [2986](https://github.com/hackforla/website/pull/2986) at 2022-03-15 08:53 PM PDT -scarter31191,2022-03-17T02:38:25Z,- scarter31191 commented on pull request: [2986](https://github.com/hackforla/website/pull/2986#issuecomment-1069938719) at 2022-03-16 07:38 PM PDT -scarter31191,2022-03-18T15:24:16Z,- scarter31191 pull request merged: [2986](https://github.com/hackforla/website/pull/2986#event-6266965171) at 2022-03-18 08:24 AM PDT -scarter31191,2022-03-25T01:14:32Z,- scarter31191 assigned to issue: [2942](https://github.com/hackforla/website/issues/2942#issuecomment-1062079991) at 2022-03-24 06:14 PM PDT -scarter31191,2022-03-25T01:15:12Z,- scarter31191 commented on issue: [2942](https://github.com/hackforla/website/issues/2942#issuecomment-1078559721) at 2022-03-24 06:15 PM PDT -scarter31191,2022-03-26T02:01:56Z,- scarter31191 opened pull request: [3013](https://github.com/hackforla/website/pull/3013) at 2022-03-25 07:01 PM PDT -scarter31191,2022-03-26T15:12:55Z,- scarter31191 pull request merged: [3013](https://github.com/hackforla/website/pull/3013#event-6311976079) at 2022-03-26 08:12 AM PDT -scarter31191,2022-03-26T15:48:31Z,- scarter31191 commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079719954) at 2022-03-26 08:48 AM PDT -scarter31191,2022-03-26T16:22:33Z,- scarter31191 assigned to issue: [2902](https://github.com/hackforla/website/issues/2902#issuecomment-1053998283) at 2022-03-26 09:22 AM PDT -scarter31191,2022-03-26T16:54:36Z,- scarter31191 opened pull request: [3015](https://github.com/hackforla/website/pull/3015) at 2022-03-26 09:54 AM PDT -scarter31191,2022-03-26T21:28:19Z,- scarter31191 commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1079777951) at 2022-03-26 02:28 PM PDT -scarter31191,2022-03-27T02:14:09Z,- scarter31191 commented on pull request: [3012](https://github.com/hackforla/website/pull/3012#issuecomment-1079817233) at 2022-03-26 07:14 PM PDT -scarter31191,2022-03-27T02:17:27Z,- scarter31191 submitted pull request review: [3012](https://github.com/hackforla/website/pull/3012#pullrequestreview-922389396) at 2022-03-26 07:17 PM PDT -scarter31191,2022-03-27T23:40:16Z,- scarter31191 commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080045464) at 2022-03-27 04:40 PM PDT -scarter31191,2022-03-28T00:00:17Z,- scarter31191 commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080048730) at 2022-03-27 05:00 PM PDT -scarter31191,2022-03-28T01:30:25Z,- scarter31191 commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1080089094) at 2022-03-27 06:30 PM PDT -scarter31191,2022-03-28T02:29:11Z,- scarter31191 submitted pull request review: [3017](https://github.com/hackforla/website/pull/3017#pullrequestreview-922558097) at 2022-03-27 07:29 PM PDT -scarter31191,2022-03-29T01:42:33Z,- scarter31191 pull request merged: [3015](https://github.com/hackforla/website/pull/3015#event-6322778666) at 2022-03-28 06:42 PM PDT -scarter31191,2022-03-30T02:40:05Z,- scarter31191 commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1082560210) at 2022-03-29 07:40 PM PDT -scarter31191,2022-04-01T02:02:19Z,- scarter31191 assigned to issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1001218168) at 2022-03-31 07:02 PM PDT -scarter31191,2022-04-01T02:05:44Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1085328985) at 2022-03-31 07:05 PM PDT -scarter31191,2022-04-09T03:47:55Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1093650832) at 2022-04-08 08:47 PM PDT -scarter31191,2022-04-14T02:46:45Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1098655834) at 2022-04-13 07:46 PM PDT -scarter31191,2022-04-17T17:54:29Z,- scarter31191 closed issue as completed: [2937](https://github.com/hackforla/website/issues/2937#event-6444851170) at 2022-04-17 10:54 AM PDT -scarter31191,2022-06-14T03:13:07Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1154661785) at 2022-06-13 08:13 PM PDT -scarter31191,2023-01-08T18:34:07Z,- scarter31191 unassigned from issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1166596854) at 2023-01-08 10:34 AM PST -scorbz9,3148,SKILLS ISSUE -scorbz9,2022-05-17T02:52:13Z,- scorbz9 opened issue: [3148](https://github.com/hackforla/website/issues/3148) at 2022-05-16 07:52 PM PDT -scorbz9,2022-05-18T01:38:38Z,- scorbz9 assigned to issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1128350763) at 2022-05-17 06:38 PM PDT -scorbz9,2022-05-18T20:49:30Z,- scorbz9 assigned to issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1001466319) at 2022-05-18 01:49 PM PDT -scorbz9,2022-05-18T22:15:53Z,- scorbz9 opened pull request: [3158](https://github.com/hackforla/website/pull/3158) at 2022-05-18 03:15 PM PDT -scorbz9,2022-05-18T22:19:33Z,- scorbz9 commented on issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1130620460) at 2022-05-18 03:19 PM PDT -scorbz9,2022-05-20T02:48:09Z,- scorbz9 pull request merged: [3158](https://github.com/hackforla/website/pull/3158#event-6647159830) at 2022-05-19 07:48 PM PDT -scorbz9,2022-05-23T18:06:14Z,- scorbz9 commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1134980519) at 2022-05-23 11:06 AM PDT -scorbz9,2022-05-23T18:32:43Z,- scorbz9 assigned to issue: [2920](https://github.com/hackforla/website/issues/2920#issuecomment-1058569011) at 2022-05-23 11:32 AM PDT -scorbz9,2022-05-23T18:45:52Z,- scorbz9 opened pull request: [3169](https://github.com/hackforla/website/pull/3169) at 2022-05-23 11:45 AM PDT -scorbz9,2022-05-24T02:23:37Z,- scorbz9 pull request merged: [3169](https://github.com/hackforla/website/pull/3169#event-6665257586) at 2022-05-23 07:23 PM PDT -scorbz9,2022-05-24T02:35:21Z,- scorbz9 commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1135333855) at 2022-05-23 07:35 PM PDT -scorbz9,2022-05-24T19:36:25Z,- scorbz9 assigned to issue: [2928](https://github.com/hackforla/website/issues/2928#issuecomment-1059822554) at 2022-05-24 12:36 PM PDT -scorbz9,2022-05-24T19:58:50Z,- scorbz9 opened pull request: [3174](https://github.com/hackforla/website/pull/3174) at 2022-05-24 12:58 PM PDT -scorbz9,2022-05-27T12:52:01Z,- scorbz9 pull request merged: [3174](https://github.com/hackforla/website/pull/3174#event-6692379500) at 2022-05-27 05:52 AM PDT -scorbz9,2022-06-04T22:57:53Z,- scorbz9 assigned to issue: [2097](https://github.com/hackforla/website/issues/2097) at 2022-06-04 03:57 PM PDT -scorbz9,2022-06-04T22:59:13Z,- scorbz9 commented on issue: [2097](https://github.com/hackforla/website/issues/2097#issuecomment-1146697890) at 2022-06-04 03:59 PM PDT -scorbz9,2022-06-06T20:34:57Z,- scorbz9 opened pull request: [3225](https://github.com/hackforla/website/pull/3225) at 2022-06-06 01:34 PM PDT -scorbz9,2022-06-20T18:58:57Z,- scorbz9 commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1160756101) at 2022-06-20 11:58 AM PDT -scorbz9,2022-06-24T22:36:11Z,- scorbz9 closed issue as completed: [3148](https://github.com/hackforla/website/issues/3148#event-6877132649) at 2022-06-24 03:36 PM PDT -scorbz9,2022-06-30T00:53:30Z,- scorbz9 commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1170634526) at 2022-06-29 05:53 PM PDT -scorbz9,2022-06-30T00:56:19Z,- scorbz9 commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1170636164) at 2022-06-29 05:56 PM PDT -scorbz9,2022-06-30T00:56:38Z,- scorbz9 closed issue as completed: [3148](https://github.com/hackforla/website/issues/3148#event-6906702534) at 2022-06-29 05:56 PM PDT -scorbz9,2022-07-02T00:22:47Z,- scorbz9 pull request merged: [3225](https://github.com/hackforla/website/pull/3225#event-6921512923) at 2022-07-01 05:22 PM PDT -sdimran,2022-07-07T21:09:26Z,- sdimran opened issue: [3339](https://github.com/hackforla/website/issues/3339) at 2022-07-07 02:09 PM PDT -sdimran,2022-07-07T21:15:33Z,- sdimran commented on issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1178240374) at 2022-07-07 02:15 PM PDT -se7en-illa,4314,SKILLS ISSUE -se7en-illa,2023-03-29T03:17:08Z,- se7en-illa opened issue: [4314](https://github.com/hackforla/website/issues/4314) at 2023-03-28 08:17 PM PDT -se7en-illa,2023-03-29T03:18:43Z,- se7en-illa assigned to issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1487889017) at 2023-03-28 08:18 PM PDT -se7en-illa,2023-04-01T02:30:02Z,- se7en-illa assigned to issue: [4354](https://github.com/hackforla/website/issues/4354) at 2023-03-31 07:30 PM PDT -se7en-illa,2023-04-01T02:30:16Z,- se7en-illa unassigned from issue: [4354](https://github.com/hackforla/website/issues/4354) at 2023-03-31 07:30 PM PDT -se7en-illa,2023-04-05T16:43:49Z,- se7en-illa assigned to issue: [4395](https://github.com/hackforla/website/issues/4395) at 2023-04-05 09:43 AM PDT -se7en-illa,2023-04-06T03:20:31Z,- se7en-illa commented on issue: [4395](https://github.com/hackforla/website/issues/4395#issuecomment-1498437570) at 2023-04-05 08:20 PM PDT -se7en-illa,2023-04-06T16:46:48Z,- se7en-illa opened pull request: [4430](https://github.com/hackforla/website/pull/4430) at 2023-04-06 09:46 AM PDT -se7en-illa,2023-04-06T16:49:55Z,- se7en-illa commented on issue: [4395](https://github.com/hackforla/website/issues/4395#issuecomment-1499349926) at 2023-04-06 09:49 AM PDT -se7en-illa,2023-04-06T16:54:05Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1499354277) at 2023-04-06 09:54 AM PDT -se7en-illa,2023-04-06T17:00:46Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1499361690) at 2023-04-06 10:00 AM PDT -se7en-illa,2023-04-06T17:06:29Z,- se7en-illa commented on pull request: [4411](https://github.com/hackforla/website/pull/4411#issuecomment-1499368671) at 2023-04-06 10:06 AM PDT -se7en-illa,2023-04-06T17:14:36Z,- se7en-illa submitted pull request review: [4411](https://github.com/hackforla/website/pull/4411#pullrequestreview-1375278124) at 2023-04-06 10:14 AM PDT -se7en-illa,2023-04-07T04:05:11Z,- se7en-illa pull request merged: [4430](https://github.com/hackforla/website/pull/4430#event-8951306264) at 2023-04-06 09:05 PM PDT -se7en-illa,2023-04-07T16:38:44Z,- se7en-illa assigned to issue: [4352](https://github.com/hackforla/website/issues/4352) at 2023-04-07 09:38 AM PDT -se7en-illa,2023-04-07T16:40:52Z,- se7en-illa commented on issue: [4352](https://github.com/hackforla/website/issues/4352#issuecomment-1500449393) at 2023-04-07 09:40 AM PDT -se7en-illa,2023-04-17T16:58:56Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1511746275) at 2023-04-17 09:58 AM PDT -se7en-illa,2023-04-17T17:14:09Z,- se7en-illa opened pull request: [4539](https://github.com/hackforla/website/pull/4539) at 2023-04-17 10:14 AM PDT -se7en-illa,2023-04-17T17:17:44Z,- se7en-illa commented on issue: [4352](https://github.com/hackforla/website/issues/4352#issuecomment-1511773163) at 2023-04-17 10:17 AM PDT -se7en-illa,2023-04-18T22:04:16Z,- se7en-illa commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1513845679) at 2023-04-18 03:04 PM PDT -se7en-illa,2023-04-19T03:26:06Z,- se7en-illa pull request merged: [4539](https://github.com/hackforla/website/pull/4539#event-9041883127) at 2023-04-18 08:26 PM PDT -se7en-illa,2023-04-19T06:58:26Z,- se7en-illa assigned to issue: [4451](https://github.com/hackforla/website/issues/4451) at 2023-04-18 11:58 PM PDT -se7en-illa,2023-04-19T06:59:42Z,- se7en-illa commented on issue: [4451](https://github.com/hackforla/website/issues/4451#issuecomment-1514225930) at 2023-04-18 11:59 PM PDT -se7en-illa,2023-04-20T02:53:27Z,- se7en-illa opened pull request: [4549](https://github.com/hackforla/website/pull/4549) at 2023-04-19 07:53 PM PDT -se7en-illa,2023-04-20T19:06:53Z,- se7en-illa pull request merged: [4549](https://github.com/hackforla/website/pull/4549#event-9060662153) at 2023-04-20 12:06 PM PDT -se7en-illa,2023-04-23T17:44:16Z,- se7en-illa commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519119037) at 2023-04-23 10:44 AM PDT -se7en-illa,2023-04-23T18:07:29Z,- se7en-illa commented on pull request: [4550](https://github.com/hackforla/website/pull/4550#issuecomment-1519123489) at 2023-04-23 11:07 AM PDT -se7en-illa,2023-04-26T02:38:59Z,- se7en-illa submitted pull request review: [4558](https://github.com/hackforla/website/pull/4558#pullrequestreview-1401066940) at 2023-04-25 07:38 PM PDT -se7en-illa,2023-04-26T02:47:51Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1522691067) at 2023-04-25 07:47 PM PDT -se7en-illa,2023-04-26T02:47:51Z,- se7en-illa closed issue as completed: [4314](https://github.com/hackforla/website/issues/4314#event-9098356951) at 2023-04-25 07:47 PM PDT -se7en-illa,2023-04-26T02:51:58Z,- se7en-illa assigned to issue: [4551](https://github.com/hackforla/website/issues/4551) at 2023-04-25 07:51 PM PDT -se7en-illa,2023-04-26T02:53:23Z,- se7en-illa commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1522694801) at 2023-04-25 07:53 PM PDT -se7en-illa,2023-05-11T23:17:15Z,- se7en-illa commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1544815110) at 2023-05-11 04:17 PM PDT -se7en-illa,2023-06-20T05:05:23Z,- se7en-illa unassigned from issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1598122157) at 2023-06-19 10:05 PM PDT -seanholahan,2019-05-01T04:00:21Z,- seanholahan opened pull request: [77](https://github.com/hackforla/website/pull/77) at 2019-04-30 09:00 PM PDT -seanholahan,2019-05-07T02:28:44Z,- seanholahan opened pull request: [92](https://github.com/hackforla/website/pull/92) at 2019-05-06 07:28 PM PDT -seanholahan,2019-05-07T02:45:14Z,- seanholahan opened pull request: [93](https://github.com/hackforla/website/pull/93) at 2019-05-06 07:45 PM PDT -seanholahan,2019-05-07T06:25:13Z,- seanholahan pull request merged: [92](https://github.com/hackforla/website/pull/92#event-2323073847) at 2019-05-06 11:25 PM PDT -seanholahan,2019-05-08T03:28:00Z,- seanholahan pull request closed w/o merging: [77](https://github.com/hackforla/website/pull/77#event-2326050067) at 2019-05-07 08:28 PM PDT -seanholahan,2019-05-08T03:38:36Z,- seanholahan opened pull request: [96](https://github.com/hackforla/website/pull/96) at 2019-05-07 08:38 PM PDT -seanholahan,2019-05-08T23:41:40Z,- seanholahan assigned to issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-488484918) at 2019-05-08 04:41 PM PDT -seanholahan,2019-05-09T05:29:12Z,- seanholahan pull request merged: [93](https://github.com/hackforla/website/pull/93#event-2329170647) at 2019-05-08 10:29 PM PDT -seanholahan,2019-05-09T05:32:52Z,- seanholahan pull request merged: [96](https://github.com/hackforla/website/pull/96#event-2329175172) at 2019-05-08 10:32 PM PDT -seanholahan,2019-05-12T03:52:41Z,- seanholahan closed issue as completed: [65](https://github.com/hackforla/website/issues/65#event-2335056926) at 2019-05-11 08:52 PM PDT -seanholahan,2019-05-23T03:36:18Z,- seanholahan assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -seanholahan,2019-06-03T04:43:30Z,- seanholahan commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-02 09:43 PM PDT -seanholahan,2019-06-04T01:21:06Z,- seanholahan assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -seanholahan,2019-06-12T00:36:17Z,- seanholahan commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501075016) at 2019-06-11 05:36 PM PDT -seanholahan,2019-06-12T17:42:42Z,- seanholahan unassigned from issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501075016) at 2019-06-12 10:42 AM PDT -seanholahan,2020-06-01T02:33:13Z,- seanholahan unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -seantokuzo,3242,SKILLS ISSUE -seantokuzo,2022-06-14T02:30:23Z,- seantokuzo opened issue: [3242](https://github.com/hackforla/website/issues/3242) at 2022-06-13 07:30 PM PDT -seantokuzo,2022-06-23T22:31:30Z,- seantokuzo assigned to issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1164839579) at 2022-06-23 03:31 PM PDT -seantokuzo,2022-07-13T23:54:12Z,- seantokuzo assigned to issue: [2875](https://github.com/hackforla/website/issues/2875#issuecomment-1049010963) at 2022-07-13 04:54 PM PDT -seantokuzo,2022-07-14T00:19:22Z,- seantokuzo commented on issue: [2875](https://github.com/hackforla/website/issues/2875#issuecomment-1183805798) at 2022-07-13 05:19 PM PDT -seantokuzo,2022-07-14T00:21:17Z,- seantokuzo commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1183806976) at 2022-07-13 05:21 PM PDT -seantokuzo,2022-07-14T00:42:21Z,- seantokuzo opened pull request: [3369](https://github.com/hackforla/website/pull/3369) at 2022-07-13 05:42 PM PDT -seantokuzo,2022-07-14T00:45:22Z,- seantokuzo closed issue as completed: [3242](https://github.com/hackforla/website/issues/3242#event-6990059370) at 2022-07-13 05:45 PM PDT -seantokuzo,2022-07-14T17:03:34Z,- seantokuzo commented on pull request: [3369](https://github.com/hackforla/website/pull/3369#issuecomment-1184680200) at 2022-07-14 10:03 AM PDT -seantokuzo,2022-07-14T20:23:42Z,- seantokuzo pull request merged: [3369](https://github.com/hackforla/website/pull/3369#event-6997164893) at 2022-07-14 01:23 PM PDT -Sebster3,4166,SKILLS ISSUE -Sebster3,2023-03-14T03:06:15Z,- Sebster3 opened issue: [4166](https://github.com/hackforla/website/issues/4166) at 2023-03-13 08:06 PM PDT -Sebster3,2023-03-14T03:34:14Z,- Sebster3 assigned to issue: [4166](https://github.com/hackforla/website/issues/4166) at 2023-03-13 08:34 PM PDT -Sebster3,2023-03-14T19:50:35Z,- Sebster3 assigned to issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1452918340) at 2023-03-14 12:50 PM PDT -Sebster3,2023-03-14T20:05:12Z,- Sebster3 commented on issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1468753193) at 2023-03-14 01:05 PM PDT -Sebster3,2023-03-14T20:06:10Z,- Sebster3 commented on issue: [4166](https://github.com/hackforla/website/issues/4166#issuecomment-1468755026) at 2023-03-14 01:06 PM PDT -Sebster3,2023-03-14T20:31:14Z,- Sebster3 opened pull request: [4181](https://github.com/hackforla/website/pull/4181) at 2023-03-14 01:31 PM PDT -Sebster3,2023-03-14T23:08:51Z,- Sebster3 commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1468987083) at 2023-03-14 04:08 PM PDT -Sebster3,2023-03-17T00:43:26Z,- Sebster3 commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1472945777) at 2023-03-16 05:43 PM PDT -Sebster3,2023-03-17T05:27:10Z,- Sebster3 pull request merged: [4181](https://github.com/hackforla/website/pull/4181#event-8774506131) at 2023-03-16 10:27 PM PDT -Sebster3,2023-03-17T19:53:30Z,- Sebster3 assigned to issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1472436357) at 2023-03-17 12:53 PM PDT -Sebster3,2023-03-17T22:18:54Z,- Sebster3 commented on issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1474460342) at 2023-03-17 03:18 PM PDT -Sebster3,2023-03-18T00:27:50Z,- Sebster3 opened pull request: [4204](https://github.com/hackforla/website/pull/4204) at 2023-03-17 05:27 PM PDT -Sebster3,2023-03-19T04:05:46Z,- Sebster3 pull request merged: [4204](https://github.com/hackforla/website/pull/4204#event-8786881162) at 2023-03-18 09:05 PM PDT -Sebster3,2023-03-20T21:22:29Z,- Sebster3 commented on pull request: [4213](https://github.com/hackforla/website/pull/4213#issuecomment-1476952660) at 2023-03-20 02:22 PM PDT -Sebster3,2023-03-20T21:44:09Z,- Sebster3 submitted pull request review: [4213](https://github.com/hackforla/website/pull/4213#pullrequestreview-1349444596) at 2023-03-20 02:44 PM PDT -Sebster3,2023-03-21T01:52:49Z,- Sebster3 assigned to issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1472443742) at 2023-03-20 06:52 PM PDT -Sebster3,2023-03-21T01:56:06Z,- Sebster3 commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1477175306) at 2023-03-20 06:56 PM PDT -Sebster3,2023-03-21T02:40:07Z,- Sebster3 opened pull request: [4222](https://github.com/hackforla/website/pull/4222) at 2023-03-20 07:40 PM PDT -Sebster3,2023-03-22T19:15:32Z,- Sebster3 commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1480124609) at 2023-03-22 12:15 PM PDT -Sebster3,2023-03-23T21:34:33Z,- Sebster3 pull request merged: [4222](https://github.com/hackforla/website/pull/4222#event-8832697940) at 2023-03-23 02:34 PM PDT -Sebster3,2023-03-24T05:26:49Z,- Sebster3 assigned to issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1479960242) at 2023-03-23 10:26 PM PDT -Sebster3,2023-03-24T05:32:31Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1482274596) at 2023-03-23 10:32 PM PDT -Sebster3,2023-03-27T23:32:45Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1485996818) at 2023-03-27 04:32 PM PDT -Sebster3,2023-03-27T23:40:48Z,- Sebster3 commented on issue: [4166](https://github.com/hackforla/website/issues/4166#issuecomment-1486002193) at 2023-03-27 04:40 PM PDT -Sebster3,2023-03-29T18:41:11Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1489115921) at 2023-03-29 11:41 AM PDT -Sebster3,2023-04-01T19:52:26Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1493093058) at 2023-04-01 12:52 PM PDT -Sebster3,2023-04-02T04:03:03Z,- Sebster3 opened pull request: [4365](https://github.com/hackforla/website/pull/4365) at 2023-04-01 09:03 PM PDT -Sebster3,2023-04-02T04:04:52Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1493217469) at 2023-04-01 09:04 PM PDT -Sebster3,2023-04-04T23:10:40Z,- Sebster3 pull request merged: [4365](https://github.com/hackforla/website/pull/4365#event-8929530809) at 2023-04-04 04:10 PM PDT -Sebster3,2023-04-06T21:18:08Z,- Sebster3 closed issue as completed: [4166](https://github.com/hackforla/website/issues/4166#event-8949837995) at 2023-04-06 02:18 PM PDT -Sebster3,2023-04-06T21:36:41Z,- Sebster3 assigned to issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1499508041) at 2023-04-06 02:36 PM PDT -Sebster3,2023-04-06T21:39:00Z,- Sebster3 commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1499659582) at 2023-04-06 02:39 PM PDT -Sebster3,2023-04-12T03:00:55Z,- Sebster3 opened issue: [4476](https://github.com/hackforla/website/issues/4476) at 2023-04-11 08:00 PM PDT -Sebster3,2023-04-16T17:08:16Z,- Sebster3 commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1510434053) at 2023-04-16 10:08 AM PDT -Sebster3,2023-04-16T18:19:46Z,- Sebster3 opened issue: [4523](https://github.com/hackforla/website/issues/4523) at 2023-04-16 11:19 AM PDT -Sebster3,2023-04-16T18:59:25Z,- Sebster3 unassigned from issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1510434053) at 2023-04-16 11:59 AM PDT -Sebster3,2023-04-16T18:59:40Z,- Sebster3 assigned to issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1510450338) at 2023-04-16 11:59 AM PDT -Sebster3,2023-04-16T21:23:40Z,- Sebster3 opened issue: [4525](https://github.com/hackforla/website/issues/4525) at 2023-04-16 02:23 PM PDT -Sebster3,2023-04-18T00:19:18Z,- Sebster3 commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1512269056) at 2023-04-17 05:19 PM PDT -Sebster3,2023-05-02T21:46:01Z,- Sebster3 commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1532196135) at 2023-05-02 02:46 PM PDT -Sebster3,2023-05-11T17:58:35Z,- Sebster3 commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1544445626) at 2023-05-11 10:58 AM PDT -Sebster3,2023-05-11T19:05:58Z,- Sebster3 submitted pull request review: [4613](https://github.com/hackforla/website/pull/4613#pullrequestreview-1423262551) at 2023-05-11 12:05 PM PDT -Sebster3,2023-05-11T20:10:58Z,- Sebster3 commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1544611762) at 2023-05-11 01:10 PM PDT -Sebster3,2023-05-18T19:59:45Z,- Sebster3 submitted pull request review: [4691](https://github.com/hackforla/website/pull/4691#pullrequestreview-1433368927) at 2023-05-18 12:59 PM PDT -Sebster3,2023-05-18T20:41:36Z,- Sebster3 submitted pull request review: [4691](https://github.com/hackforla/website/pull/4691#pullrequestreview-1433422219) at 2023-05-18 01:41 PM PDT -Sebster3,2023-05-20T01:34:31Z,- Sebster3 commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1555415394) at 2023-05-19 06:34 PM PDT -Sebster3,2023-05-20T01:42:40Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1435292249) at 2023-05-19 06:42 PM PDT -Sebster3,2023-05-20T01:47:05Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1435292743) at 2023-05-19 06:47 PM PDT -Sebster3,2023-05-21T17:05:35Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1435567903) at 2023-05-21 10:05 AM PDT -Sebster3,2023-05-24T15:50:32Z,- Sebster3 commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1561433221) at 2023-05-24 08:50 AM PDT -Sebster3,2023-06-18T16:19:20Z,- Sebster3 commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1596195873) at 2023-06-18 09:19 AM PDT -Sebster3,2023-06-18T16:23:44Z,- Sebster3 submitted pull request review: [4843](https://github.com/hackforla/website/pull/4843#pullrequestreview-1485145220) at 2023-06-18 09:23 AM PDT -Sebster3,2023-06-18T16:51:47Z,- Sebster3 submitted pull request review: [4844](https://github.com/hackforla/website/pull/4844#pullrequestreview-1485149881) at 2023-06-18 09:51 AM PDT -Sebster3,2023-07-13T22:29:19Z,- Sebster3 commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1634997576) at 2023-07-13 03:29 PM PDT -Sebster3,2023-07-16T05:24:06Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1531658349) at 2023-07-15 10:24 PM PDT -segbuniwe,5358,SKILLS ISSUE -segbuniwe,2023-08-30T04:01:51Z,- segbuniwe opened issue: [5358](https://github.com/hackforla/website/issues/5358) at 2023-08-29 09:01 PM PDT -segbuniwe,2023-08-30T04:02:23Z,- segbuniwe assigned to issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1698453521) at 2023-08-29 09:02 PM PDT -segbuniwe,2023-09-05T16:56:26Z,- segbuniwe commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1706977954) at 2023-09-05 09:56 AM PDT -segbuniwe,2023-09-15T17:07:00Z,- segbuniwe assigned to issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1715916103) at 2023-09-15 10:07 AM PDT -segbuniwe,2023-09-15T17:15:11Z,- segbuniwe commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1721602023) at 2023-09-15 10:15 AM PDT -segbuniwe,2023-09-15T17:19:08Z,- segbuniwe commented on issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1721606239) at 2023-09-15 10:19 AM PDT -segbuniwe,2023-09-21T18:59:44Z,- segbuniwe opened pull request: [5569](https://github.com/hackforla/website/pull/5569) at 2023-09-21 11:59 AM PDT -segbuniwe,2023-09-21T19:08:52Z,- segbuniwe commented on issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1730148515) at 2023-09-21 12:08 PM PDT -segbuniwe,2023-09-25T02:00:12Z,- segbuniwe pull request merged: [5569](https://github.com/hackforla/website/pull/5569#event-10456700505) at 2023-09-24 07:00 PM PDT -segbuniwe,2023-09-29T16:17:14Z,- segbuniwe commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1741160332) at 2023-09-29 09:17 AM PDT -segbuniwe,2023-10-04T21:32:05Z,- segbuniwe assigned to issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1735154927) at 2023-10-04 02:32 PM PDT -segbuniwe,2023-10-04T21:35:50Z,- segbuniwe commented on issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1747676118) at 2023-10-04 02:35 PM PDT -segbuniwe,2023-10-08T23:07:51Z,- segbuniwe commented on issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1752186935) at 2023-10-08 04:07 PM PDT -segbuniwe,2023-10-10T22:37:44Z,- segbuniwe opened pull request: [5699](https://github.com/hackforla/website/pull/5699) at 2023-10-10 03:37 PM PDT -segbuniwe,2023-10-14T04:18:53Z,- segbuniwe closed issue as completed: [5358](https://github.com/hackforla/website/issues/5358#event-10651244011) at 2023-10-13 09:18 PM PDT -segbuniwe,2023-10-15T16:33:58Z,- segbuniwe pull request merged: [5699](https://github.com/hackforla/website/pull/5699#event-10658020371) at 2023-10-15 09:33 AM PDT -segbuniwe,2023-10-20T19:27:00Z,- segbuniwe assigned to issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1735973538) at 2023-10-20 12:27 PM PDT -segbuniwe,2023-10-20T19:30:05Z,- segbuniwe commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1773290677) at 2023-10-20 12:30 PM PDT -segbuniwe,2023-10-28T23:03:43Z,- segbuniwe commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1783938649) at 2023-10-28 04:03 PM PDT -segbuniwe,2023-10-31T19:18:39Z,- segbuniwe commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1787872239) at 2023-10-31 12:18 PM PDT -sei1122,2022-06-07T20:30:34Z,- sei1122 opened issue: [3232](https://github.com/hackforla/website/issues/3232) at 2022-06-07 01:30 PM PDT -sei1122,2022-06-13T16:02:55Z,- sei1122 opened issue: [3240](https://github.com/hackforla/website/issues/3240) at 2022-06-13 09:02 AM PDT -sei1122,2022-07-01T16:05:47Z,- sei1122 commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172493813) at 2022-07-01 09:05 AM PDT -sei1122,2022-07-02T04:18:05Z,- sei1122 commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172830695) at 2022-07-01 09:18 PM PDT -sei1122,2022-09-21T17:20:11Z,- sei1122 commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1254004428) at 2022-09-21 10:20 AM PDT -sena-ji,2020-10-04T18:47:07Z,- sena-ji assigned to issue: [738](https://github.com/hackforla/website/issues/738) at 2020-10-04 11:47 AM PDT -sena-ji,2020-10-06T01:12:00Z,- sena-ji opened pull request: [766](https://github.com/hackforla/website/pull/766) at 2020-10-05 06:12 PM PDT -sena-ji,2020-10-06T01:12:55Z,- sena-ji pull request merged: [766](https://github.com/hackforla/website/pull/766#event-3843020748) at 2020-10-05 06:12 PM PDT -sena-ji,2020-10-07T02:14:07Z,- sena-ji assigned to issue: [739](https://github.com/hackforla/website/issues/739) at 2020-10-06 07:14 PM PDT -sena-ji,2020-10-07T02:19:49Z,- sena-ji commented on issue: [738](https://github.com/hackforla/website/issues/738#issuecomment-704652302) at 2020-10-06 07:19 PM PDT -sena-ji,2020-10-07T02:19:49Z,- sena-ji closed issue as completed: [738](https://github.com/hackforla/website/issues/738#event-3848260569) at 2020-10-06 07:19 PM PDT -sena-ji,2020-10-08T22:35:42Z,- sena-ji commented on issue: [739](https://github.com/hackforla/website/issues/739#issuecomment-705858721) at 2020-10-08 03:35 PM PDT -sena-ji,2020-10-09T00:08:14Z,- sena-ji opened pull request: [771](https://github.com/hackforla/website/pull/771) at 2020-10-08 05:08 PM PDT -sena-ji,2020-10-09T00:26:22Z,- sena-ji pull request closed w/o merging: [771](https://github.com/hackforla/website/pull/771#event-3857903521) at 2020-10-08 05:26 PM PDT -sena-ji,2020-10-09T01:56:40Z,- sena-ji opened pull request: [773](https://github.com/hackforla/website/pull/773) at 2020-10-08 06:56 PM PDT -sena-ji,2020-10-09T02:02:52Z,- sena-ji pull request closed w/o merging: [773](https://github.com/hackforla/website/pull/773#event-3858094840) at 2020-10-08 07:02 PM PDT -sena-ji,2020-10-09T02:18:49Z,- sena-ji opened pull request: [774](https://github.com/hackforla/website/pull/774) at 2020-10-08 07:18 PM PDT -sena-ji,2020-10-09T02:20:10Z,- sena-ji closed issue by PR 774: [739](https://github.com/hackforla/website/issues/739#event-3858124017) at 2020-10-08 07:20 PM PDT -sena-ji,2020-10-09T02:20:10Z,- sena-ji pull request merged: [774](https://github.com/hackforla/website/pull/774#event-3858124019) at 2020-10-08 07:20 PM PDT -sena-ji,2020-10-13T20:26:49Z,- sena-ji assigned to issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-13 01:26 PM PDT -sena-ji,2020-10-16T01:12:49Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-709671235) at 2020-10-15 06:12 PM PDT -sena-ji,2020-10-19T23:31:10Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-712497392) at 2020-10-19 04:31 PM PDT -sena-ji,2020-10-20T00:34:21Z,- sena-ji opened pull request: [790](https://github.com/hackforla/website/pull/790) at 2020-10-19 05:34 PM PDT -sena-ji,2020-10-21T03:28:22Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-713273489) at 2020-10-20 08:28 PM PDT -sena-ji,2020-10-27T20:44:20Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-717527747) at 2020-10-27 01:44 PM PDT -sena-ji,2020-11-07T01:53:13Z,- sena-ji commented on pull request: [790](https://github.com/hackforla/website/pull/790#issuecomment-723372371) at 2020-11-06 05:53 PM PST -sena-ji,2020-11-09T01:42:23Z,- sena-ji pull request merged: [790](https://github.com/hackforla/website/pull/790#event-3971451865) at 2020-11-08 05:42 PM PST -sena-ji,2020-11-11T01:22:18Z,- sena-ji assigned to issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-683454932) at 2020-11-10 05:22 PM PST -sena-ji,2020-11-29T17:43:44Z,- sena-ji commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-735430050) at 2020-11-29 09:43 AM PST -sena-ji,2020-11-30T19:20:58Z,- sena-ji opened pull request: [820](https://github.com/hackforla/website/pull/820) at 2020-11-30 11:20 AM PST -sena-ji,2020-12-09T03:50:18Z,- sena-ji commented on pull request: [820](https://github.com/hackforla/website/pull/820#issuecomment-741508621) at 2020-12-08 07:50 PM PST -sena-ji,2020-12-09T18:51:31Z,- sena-ji pull request merged: [820](https://github.com/hackforla/website/pull/820#event-4091468306) at 2020-12-09 10:51 AM PST -sena-ji,2020-12-22T02:35:26Z,- sena-ji assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 06:35 PM PST -sena-ji,2020-12-22T02:38:41Z,- sena-ji unassigned from issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 06:38 PM PST -sena-ji,2020-12-22T03:12:48Z,- sena-ji assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 07:12 PM PST -sena-ji,2020-12-23T01:10:04Z,- sena-ji unassigned from issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-749830181) at 2020-12-22 05:10 PM PST -sena-ji,2021-03-18T20:10:15Z,- sena-ji assigned to issue: [1258](https://github.com/hackforla/website/issues/1258) at 2021-03-18 01:10 PM PDT -sena-ji,2021-03-29T21:11:23Z,- sena-ji commented on issue: [1258](https://github.com/hackforla/website/issues/1258#issuecomment-809717215) at 2021-03-29 02:11 PM PDT -sena-ji,2021-03-31T13:11:10Z,- sena-ji assigned to issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-792193174) at 2021-03-31 06:11 AM PDT -sena-ji,2021-03-31T19:32:21Z,- sena-ji opened pull request: [1344](https://github.com/hackforla/website/pull/1344) at 2021-03-31 12:32 PM PDT -sena-ji,2021-04-01T18:01:34Z,- sena-ji commented on pull request: [1344](https://github.com/hackforla/website/pull/1344#issuecomment-812076224) at 2021-04-01 11:01 AM PDT -sena-ji,2021-04-02T17:33:21Z,- sena-ji pull request merged: [1344](https://github.com/hackforla/website/pull/1344#event-4546475811) at 2021-04-02 10:33 AM PDT -sena-ji,2021-04-07T03:14:57Z,- sena-ji opened pull request: [1368](https://github.com/hackforla/website/pull/1368) at 2021-04-06 08:14 PM PDT -sena-ji,2021-04-08T17:38:41Z,- sena-ji commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816012406) at 2021-04-08 10:38 AM PDT -sena-ji,2021-04-08T20:59:09Z,- sena-ji commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816192538) at 2021-04-08 01:59 PM PDT -sena-ji,2021-04-09T21:13:48Z,- sena-ji pull request merged: [1368](https://github.com/hackforla/website/pull/1368#event-4576428848) at 2021-04-09 02:13 PM PDT -sena-ji,2021-04-20T20:04:28Z,- sena-ji commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-823564927) at 2021-04-20 01:04 PM PDT -sena-ji,2021-04-20T20:11:33Z,- sena-ji commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-823569118) at 2021-04-20 01:11 PM PDT -sena-ji,2021-04-20T20:12:51Z,- sena-ji opened pull request: [1423](https://github.com/hackforla/website/pull/1423) at 2021-04-20 01:12 PM PDT -sena-ji,2021-04-20T23:08:19Z,- sena-ji commented on pull request: [1423](https://github.com/hackforla/website/pull/1423#issuecomment-823658663) at 2021-04-20 04:08 PM PDT -sena-ji,2021-04-23T14:04:42Z,- sena-ji pull request merged: [1423](https://github.com/hackforla/website/pull/1423#event-4637108833) at 2021-04-23 07:04 AM PDT -sena-ji,2021-04-23T14:15:16Z,- sena-ji assigned to issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-817359862) at 2021-04-23 07:15 AM PDT -sena-ji,2021-04-26T00:31:08Z,- sena-ji commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-826426402) at 2021-04-25 05:31 PM PDT -sena-ji,2021-05-05T00:16:03Z,- sena-ji commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-832336377) at 2021-05-04 05:16 PM PDT -sena-ji,2021-05-05T00:23:08Z,- sena-ji opened pull request: [1509](https://github.com/hackforla/website/pull/1509) at 2021-05-04 05:23 PM PDT -sena-ji,2021-05-07T01:22:45Z,- sena-ji commented on pull request: [1509](https://github.com/hackforla/website/pull/1509#issuecomment-833990161) at 2021-05-06 06:22 PM PDT -sena-ji,2021-05-07T23:26:10Z,- sena-ji pull request merged: [1509](https://github.com/hackforla/website/pull/1509#event-4705185969) at 2021-05-07 04:26 PM PDT -sena-ji,2021-05-17T21:25:02Z,- sena-ji assigned to issue: [1553](https://github.com/hackforla/website/issues/1553) at 2021-05-17 02:25 PM PDT -sena-ji,2021-06-02T00:04:40Z,- sena-ji commented on issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-852578941) at 2021-06-01 05:04 PM PDT -sena-ji,2021-06-08T21:16:20Z,- sena-ji opened pull request: [1701](https://github.com/hackforla/website/pull/1701) at 2021-06-08 02:16 PM PDT -sena-ji,2021-06-08T21:16:54Z,- sena-ji commented on issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-857158746) at 2021-06-08 02:16 PM PDT -sena-ji,2021-06-11T13:33:13Z,- sena-ji pull request merged: [1701](https://github.com/hackforla/website/pull/1701#event-4878030226) at 2021-06-11 06:33 AM PDT -sena-ji,2021-06-22T04:46:16Z,- sena-ji assigned to issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860883797) at 2021-06-21 09:46 PM PDT -sena-ji,2021-06-29T18:50:22Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-870833515) at 2021-06-29 11:50 AM PDT -sena-ji,2021-07-05T19:06:29Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-874286522) at 2021-07-05 12:06 PM PDT -sena-ji,2021-07-07T23:30:59Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-876001645) at 2021-07-07 04:30 PM PDT -sena-ji,2021-07-13T17:36:24Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-879274037) at 2021-07-13 10:36 AM PDT -sena-ji,2021-07-19T18:37:43Z,- sena-ji opened pull request: [1972](https://github.com/hackforla/website/pull/1972) at 2021-07-19 11:37 AM PDT -sena-ji,2021-07-20T03:51:00Z,- sena-ji commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-883029798) at 2021-07-19 08:51 PM PDT -sena-ji,2021-07-21T22:07:07Z,- sena-ji commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-884530492) at 2021-07-21 03:07 PM PDT -sena-ji,2021-08-11T00:48:24Z,- sena-ji pull request merged: [1972](https://github.com/hackforla/website/pull/1972#event-5138576852) at 2021-08-10 05:48 PM PDT -SeyiAkinwale,4624,SKILLS ISSUE -SeyiAkinwale,2023-05-09T03:31:04Z,- SeyiAkinwale opened issue: [4624](https://github.com/hackforla/website/issues/4624) at 2023-05-08 08:31 PM PDT -SeyiAkinwale,2023-05-09T03:35:12Z,- SeyiAkinwale assigned to issue: [4624](https://github.com/hackforla/website/issues/4624) at 2023-05-08 08:35 PM PDT -SeyiAkinwale,2023-06-02T02:56:44Z,- SeyiAkinwale commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1573066128) at 2023-06-01 07:56 PM PDT -SeyiAkinwale,2023-06-13T07:32:27Z,- SeyiAkinwale assigned to issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1582774419) at 2023-06-13 12:32 AM PDT -SeyiAkinwale,2023-06-13T07:46:31Z,- SeyiAkinwale commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1588733110) at 2023-06-13 12:46 AM PDT -SeyiAkinwale,2023-06-13T07:48:09Z,- SeyiAkinwale commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1588735981) at 2023-06-13 12:48 AM PDT -SeyiAkinwale,2023-06-13T07:48:58Z,- SeyiAkinwale commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1588737189) at 2023-06-13 12:48 AM PDT -SeyiAkinwale,2023-06-14T06:17:22Z,- SeyiAkinwale commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1590540801) at 2023-06-13 11:17 PM PDT -SeyiAkinwale,2023-07-15T15:37:37Z,- SeyiAkinwale unassigned from issue: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-15 08:37 AM PDT -SeyiAkinwale,2023-07-21T02:35:51Z,- SeyiAkinwale assigned to issue: [5042](https://github.com/hackforla/website/issues/5042) at 2023-07-20 07:35 PM PDT -SeyiAkinwale,2023-07-21T03:07:28Z,- SeyiAkinwale commented on issue: [5042](https://github.com/hackforla/website/issues/5042#issuecomment-1644922399) at 2023-07-20 08:07 PM PDT -SeyiAkinwale,2023-08-18T18:08:45Z,- SeyiAkinwale opened pull request: [5251](https://github.com/hackforla/website/pull/5251) at 2023-08-18 11:08 AM PDT -SeyiAkinwale,2023-08-18T18:47:47Z,- SeyiAkinwale pull request merged: [5251](https://github.com/hackforla/website/pull/5251#event-10132715407) at 2023-08-18 11:47 AM PDT -SeyiAkinwale,2023-08-27T05:09:13Z,- SeyiAkinwale pull request merged: [5251](https://github.com/hackforla/website/pull/5251#event-10201145885) at 2023-08-26 10:09 PM PDT -ShamaaTabassum,6726,SKILLS ISSUE -ShamaaTabassum,6728,SKILLS ISSUE -ShamaaTabassum,2024-04-24T03:53:36Z,- ShamaaTabassum opened issue: [6726](https://github.com/hackforla/website/issues/6726) at 2024-04-23 08:53 PM PDT -ShamaaTabassum,2024-04-24T04:04:53Z,- ShamaaTabassum opened issue: [6728](https://github.com/hackforla/website/issues/6728) at 2024-04-23 09:04 PM PDT -ShamaaTabassum,2024-04-24T04:30:26Z,- ShamaaTabassum assigned to issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2073983496) at 2024-04-23 09:30 PM PDT -ShamaaTabassum,2024-04-24T04:31:22Z,- ShamaaTabassum assigned to issue: [6726](https://github.com/hackforla/website/issues/6726#issuecomment-2073974558) at 2024-04-23 09:31 PM PDT -ShamaaTabassum,2024-04-24T04:51:27Z,- ShamaaTabassum assigned to issue: [6706](https://github.com/hackforla/website/issues/6706) at 2024-04-23 09:51 PM PDT -ShamaaTabassum,2024-04-24T04:53:42Z,- ShamaaTabassum unassigned from issue: [6706](https://github.com/hackforla/website/issues/6706#issuecomment-2074023803) at 2024-04-23 09:53 PM PDT -ShamaaTabassum,2024-04-27T05:54:22Z,- ShamaaTabassum assigned to issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2065521023) at 2024-04-26 10:54 PM PDT -ShamaaTabassum,2024-04-27T08:32:52Z,- ShamaaTabassum commented on issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2080416739) at 2024-04-27 01:32 AM PDT -ShamaaTabassum,2024-04-27T10:44:46Z,- ShamaaTabassum opened pull request: [6772](https://github.com/hackforla/website/pull/6772) at 2024-04-27 03:44 AM PDT -ShamaaTabassum,2024-04-29T18:25:36Z,- ShamaaTabassum pull request merged: [6772](https://github.com/hackforla/website/pull/6772#event-12647330691) at 2024-04-29 11:25 AM PDT -ShambhavII-Singh,2023-08-22T14:07:08Z,- ShambhavII-Singh commented on issue: [5269](https://github.com/hackforla/website/issues/5269#issuecomment-1688259115) at 2023-08-22 07:07 AM PDT -shantanushende,2560,SKILLS ISSUE -shantanushende,2021-12-08T04:02:30Z,- shantanushende assigned to issue: [2560](https://github.com/hackforla/website/issues/2560) at 2021-12-07 08:02 PM PST -shantanushende,2021-12-10T03:08:00Z,- shantanushende closed issue as completed: [2560](https://github.com/hackforla/website/issues/2560#event-5745135278) at 2021-12-09 07:08 PM PST -shantanushende,2022-01-04T04:44:52Z,- shantanushende commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1004525707) at 2022-01-03 08:44 PM PST -sharadgaurav7,2021-06-15T16:26:51Z,- sharadgaurav7 assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-15 09:26 AM PDT -shaswa,2021-02-24T18:46:13Z,- shaswa opened issue: [1105](https://github.com/hackforla/website/issues/1105) at 2021-02-24 10:46 AM PST -shaswa,2021-02-24T18:57:35Z,- shaswa assigned to issue: [1105](https://github.com/hackforla/website/issues/1105) at 2021-02-24 10:57 AM PST -shaswa,2021-02-26T10:52:55Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-786571819) at 2021-02-26 02:52 AM PST -shaswa,2021-03-02T23:36:00Z,- shaswa opened issue: [1150](https://github.com/hackforla/website/issues/1150) at 2021-03-02 03:36 PM PST -shaswa,2021-03-02T23:38:45Z,- shaswa opened issue: [1151](https://github.com/hackforla/website/issues/1151) at 2021-03-02 03:38 PM PST -shaswa,2021-03-02T23:41:57Z,- shaswa opened issue: [1152](https://github.com/hackforla/website/issues/1152) at 2021-03-02 03:41 PM PST -shaswa,2021-03-03T00:02:57Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-789313158) at 2021-03-02 04:02 PM PST -shaswa,2021-03-07T08:36:44Z,- shaswa assigned to issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-782905054) at 2021-03-07 12:36 AM PST -shaswa,2021-03-07T17:47:23Z,- shaswa commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-792322465) at 2021-03-07 09:47 AM PST -shaswa,2021-03-07T19:23:46Z,- shaswa assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -shaswa,2021-03-07T19:24:33Z,- shaswa assigned to issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -shaswa,2021-03-10T17:25:29Z,- shaswa commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-795777498) at 2021-03-10 09:25 AM PST -shaswa,2021-03-10T17:32:57Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-795788560) at 2021-03-10 09:32 AM PST -shaswa,2021-03-17T01:02:16Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-800715433) at 2021-03-16 06:02 PM PDT -shaswa,2021-03-17T17:43:23Z,- shaswa commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-801280941) at 2021-03-17 10:43 AM PDT -shaswa,2021-03-17T17:47:13Z,- shaswa commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-801284148) at 2021-03-17 10:47 AM PDT -shaswa,2021-03-17T17:47:42Z,- shaswa closed issue as completed: [1054](https://github.com/hackforla/website/issues/1054#event-4471727909) at 2021-03-17 10:47 AM PDT -shaswa,2021-03-17T18:03:23Z,- shaswa commented on issue: [1041](https://github.com/hackforla/website/issues/1041#issuecomment-801295697) at 2021-03-17 11:03 AM PDT -shaswa,2021-03-17T18:06:22Z,- shaswa commented on issue: [1041](https://github.com/hackforla/website/issues/1041#issuecomment-801297659) at 2021-03-17 11:06 AM PDT -shaswa,2021-03-17T18:24:05Z,- shaswa commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-801309326) at 2021-03-17 11:24 AM PDT -shaswa,2021-03-17T18:28:07Z,- shaswa commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-801313660) at 2021-03-17 11:28 AM PDT -shaswa,2021-03-18T22:31:32Z,- shaswa commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-802352872) at 2021-03-18 03:31 PM PDT -shaswa,2021-03-21T09:05:21Z,- shaswa commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-803537281) at 2021-03-21 02:05 AM PDT -shaswa,2021-03-24T15:11:50Z,- shaswa commented on issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-805907166) at 2021-03-24 08:11 AM PDT -shaswa,2021-03-24T15:12:41Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-805908475) at 2021-03-24 08:12 AM PDT -shaswa,2021-03-31T18:18:47Z,- shaswa unassigned from issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811287661) at 2021-03-31 11:18 AM PDT -shaswa,2021-03-31T18:31:23Z,- shaswa unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-806018314) at 2021-03-31 11:31 AM PDT -ShatteredArrow,5064,SKILLS ISSUE -ShatteredArrow,2023-07-26T02:55:46Z,- ShatteredArrow opened issue: [5064](https://github.com/hackforla/website/issues/5064) at 2023-07-25 07:55 PM PDT -ShatteredArrow,2023-07-26T02:56:00Z,- ShatteredArrow assigned to issue: [5064](https://github.com/hackforla/website/issues/5064) at 2023-07-25 07:56 PM PDT -ShattsIllia,5228,SKILLS ISSUE -ShattsIllia,2023-08-15T03:49:37Z,- ShattsIllia opened issue: [5228](https://github.com/hackforla/website/issues/5228) at 2023-08-14 08:49 PM PDT -ShattsIllia,2023-08-15T03:59:22Z,- ShattsIllia assigned to issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1678389508) at 2023-08-14 08:59 PM PDT -shavinski,5220,SKILLS ISSUE -shavinski,2023-08-15T03:02:51Z,- shavinski opened issue: [5220](https://github.com/hackforla/website/issues/5220) at 2023-08-14 08:02 PM PDT -shavinski,2023-08-15T03:02:52Z,- shavinski assigned to issue: [5220](https://github.com/hackforla/website/issues/5220) at 2023-08-14 08:02 PM PDT -shavinski,2023-08-15T22:36:00Z,- shavinski assigned to issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1679623123) at 2023-08-15 03:36 PM PDT -shavinski,2023-08-15T22:51:39Z,- shavinski opened pull request: [5235](https://github.com/hackforla/website/pull/5235) at 2023-08-15 03:51 PM PDT -shavinski,2023-08-19T23:04:30Z,- shavinski pull request merged: [5235](https://github.com/hackforla/website/pull/5235#event-10137159601) at 2023-08-19 04:04 PM PDT -shavinski,2023-08-21T20:40:26Z,- shavinski commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1687013134) at 2023-08-21 01:40 PM PDT -shavinski,2023-08-21T20:42:05Z,- shavinski commented on issue: [5220](https://github.com/hackforla/website/issues/5220#issuecomment-1687015226) at 2023-08-21 01:42 PM PDT -shavinski,2023-08-23T14:18:29Z,- shavinski assigned to issue: [5173](https://github.com/hackforla/website/issues/5173#issuecomment-1672309620) at 2023-08-23 07:18 AM PDT -shavinski,2023-08-23T14:20:20Z,- shavinski commented on issue: [5173](https://github.com/hackforla/website/issues/5173#issuecomment-1690054990) at 2023-08-23 07:20 AM PDT -shavinski,2023-08-23T14:44:14Z,- shavinski opened pull request: [5294](https://github.com/hackforla/website/pull/5294) at 2023-08-23 07:44 AM PDT -shavinski,2023-08-23T22:59:50Z,- shavinski closed issue as completed: [5220](https://github.com/hackforla/website/issues/5220#event-10175194292) at 2023-08-23 03:59 PM PDT -shavinski,2023-08-27T03:33:00Z,- shavinski pull request merged: [5294](https://github.com/hackforla/website/pull/5294#event-10201065578) at 2023-08-26 08:33 PM PDT -shavinski,2023-09-15T03:37:02Z,- shavinski assigned to issue: [5532](https://github.com/hackforla/website/issues/5532) at 2023-09-14 08:37 PM PDT -shavinski,2023-09-15T03:37:34Z,- shavinski unassigned from issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720436955) at 2023-09-14 08:37 PM PDT -shavinski,2023-09-15T03:37:56Z,- shavinski assigned to issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720436955) at 2023-09-14 08:37 PM PDT -shavinski,2023-09-15T03:40:21Z,- shavinski commented on issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720438495) at 2023-09-14 08:40 PM PDT -shavinski,2023-09-26T21:16:21Z,- shavinski assigned to issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1484399497) at 2023-09-26 02:16 PM PDT -shavinski,2023-09-26T21:18:05Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1736315071) at 2023-09-26 02:18 PM PDT -shavinski,2023-09-26T21:52:01Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1736351683) at 2023-09-26 02:52 PM PDT -shavinski,2023-09-27T18:54:11Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1737919357) at 2023-09-27 11:54 AM PDT -shavinski,2023-09-28T18:38:43Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1739828392) at 2023-09-28 11:38 AM PDT -shavinski,2023-09-30T20:20:52Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1741851926) at 2023-09-30 01:20 PM PDT -shavinski,2023-09-30T20:47:19Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1741856208) at 2023-09-30 01:47 PM PDT -shavinski,2023-10-06T00:05:53Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1749814441) at 2023-10-05 05:05 PM PDT -sheehanrobb,5356,SKILLS ISSUE -sheehanrobb,2023-08-30T03:49:37Z,- sheehanrobb opened issue: [5356](https://github.com/hackforla/website/issues/5356) at 2023-08-29 08:49 PM PDT -sheehanrobb,2023-08-30T04:01:40Z,- sheehanrobb assigned to issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1698446579) at 2023-08-29 09:01 PM PDT -sheehanrobb,2023-09-09T03:01:59Z,- sheehanrobb commented on issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1712395892) at 2023-09-08 08:01 PM PDT -sheehanrobb,2023-09-09T03:06:46Z,- sheehanrobb assigned to issue: [5386](https://github.com/hackforla/website/issues/5386) at 2023-09-08 08:06 PM PDT -sheehanrobb,2023-09-09T03:44:02Z,- sheehanrobb commented on issue: [5386](https://github.com/hackforla/website/issues/5386#issuecomment-1712403442) at 2023-09-08 08:44 PM PDT -sheehanrobb,2023-09-10T02:57:57Z,- sheehanrobb opened pull request: [5469](https://github.com/hackforla/website/pull/5469) at 2023-09-09 07:57 PM PDT -sheehanrobb,2023-09-10T21:30:50Z,- sheehanrobb commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712944488) at 2023-09-10 02:30 PM PDT -sheehanrobb,2023-09-14T05:29:49Z,- sheehanrobb commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1718787023) at 2023-09-13 10:29 PM PDT -sheehanrobb,2023-09-17T20:48:34Z,- sheehanrobb pull request closed w/o merging: [5469](https://github.com/hackforla/website/pull/5469#event-10391987409) at 2023-09-17 01:48 PM PDT -sheehanrobb,2023-09-17T20:50:57Z,- sheehanrobb commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1722565959) at 2023-09-17 01:50 PM PDT -sheehanrobb,2023-09-17T20:54:13Z,- sheehanrobb commented on issue: [5386](https://github.com/hackforla/website/issues/5386#issuecomment-1722566532) at 2023-09-17 01:54 PM PDT -sheehanrobb,2023-09-18T19:50:26Z,- sheehanrobb opened pull request: [5555](https://github.com/hackforla/website/pull/5555) at 2023-09-18 12:50 PM PDT -sheehanrobb,2023-09-18T20:05:23Z,- sheehanrobb commented on pull request: [5555](https://github.com/hackforla/website/pull/5555#issuecomment-1724291184) at 2023-09-18 01:05 PM PDT -sheehanrobb,2023-09-18T20:10:05Z,- sheehanrobb pull request merged: [5555](https://github.com/hackforla/website/pull/5555#event-10402451737) at 2023-09-18 01:10 PM PDT -sheehanrobb,2023-09-18T21:17:04Z,- sheehanrobb commented on pull request: [5555](https://github.com/hackforla/website/pull/5555#issuecomment-1724459523) at 2023-09-18 02:17 PM PDT -sheehanrobb,2023-09-18T21:18:49Z,- sheehanrobb closed issue as completed: [5356](https://github.com/hackforla/website/issues/5356#event-10403052471) at 2023-09-18 02:18 PM PDT -sheehanrobb,2023-09-27T03:02:29Z,- sheehanrobb commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1736600650) at 2023-09-26 08:02 PM PDT -sheehanrobb,2023-09-30T22:05:45Z,- sheehanrobb commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1741869411) at 2023-09-30 03:05 PM PDT -sheehanrobb,2023-09-30T22:12:10Z,- sheehanrobb assigned to issue: [5439](https://github.com/hackforla/website/issues/5439#issuecomment-1704814133) at 2023-09-30 03:12 PM PDT -sheehanrobb,2023-09-30T22:48:01Z,- sheehanrobb opened pull request: [5636](https://github.com/hackforla/website/pull/5636) at 2023-09-30 03:48 PM PDT -sheehanrobb,2023-10-01T08:19:05Z,- sheehanrobb commented on pull request: [5636](https://github.com/hackforla/website/pull/5636#issuecomment-1742001867) at 2023-10-01 01:19 AM PDT -sheehanrobb,2023-10-01T17:38:39Z,- sheehanrobb pull request merged: [5636](https://github.com/hackforla/website/pull/5636#event-10520111737) at 2023-10-01 10:38 AM PDT -Sheikh-JamirAlam,2023-01-28T17:07:20Z,- Sheikh-JamirAlam opened pull request: [3886](https://github.com/hackforla/website/pull/3886) at 2023-01-28 09:07 AM PST -Sheikh-JamirAlam,2023-01-30T14:54:45Z,- Sheikh-JamirAlam commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1408768254) at 2023-01-30 06:54 AM PST -Sheikh-JamirAlam,2023-01-30T23:46:26Z,- Sheikh-JamirAlam pull request closed w/o merging: [3886](https://github.com/hackforla/website/pull/3886#event-8393614382) at 2023-01-30 03:46 PM PST -SheIsBukki,2022-02-25T13:41:31Z,- SheIsBukki opened issue: [2888](https://github.com/hackforla/website/issues/2888) at 2022-02-25 05:41 AM PST -SheIsBukki,2022-02-28T16:53:59Z,- SheIsBukki commented on issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1054458322) at 2022-02-28 08:53 AM PST -sheltoG,2021-08-12T20:05:20Z,- sheltoG assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -sheltoG,2021-08-13T16:37:56Z,- sheltoG opened issue: [2108](https://github.com/hackforla/website/issues/2108) at 2021-08-13 09:37 AM PDT -sheltoG,2021-08-18T19:37:49Z,- sheltoG commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-901378279) at 2021-08-18 12:37 PM PDT -sheltoG,2021-08-18T19:41:00Z,- sheltoG commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-901380154) at 2021-08-18 12:41 PM PDT -sheltoG,2021-08-18T19:48:16Z,- sheltoG commented on issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-901384357) at 2021-08-18 12:48 PM PDT -sheltoG,2021-08-18T19:59:56Z,- sheltoG commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-901391271) at 2021-08-18 12:59 PM PDT -sheltoG,2021-08-18T20:00:26Z,- sheltoG commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-901391534) at 2021-08-18 01:00 PM PDT -sheltoG,2021-08-18T20:02:51Z,- sheltoG commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-901393174) at 2021-08-18 01:02 PM PDT -sheltoG,2021-08-18T20:29:21Z,- sheltoG assigned to issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-08-18 01:29 PM PDT -sheltoG,2021-08-19T18:07:02Z,- sheltoG commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-902129697) at 2021-08-19 11:07 AM PDT -sheltoG,2021-08-22T19:21:02Z,- sheltoG opened issue: [2161](https://github.com/hackforla/website/issues/2161) at 2021-08-22 12:21 PM PDT -sheltoG,2021-08-22T20:03:39Z,- sheltoG opened issue: [2163](https://github.com/hackforla/website/issues/2163) at 2021-08-22 01:03 PM PDT -sheltoG,2021-08-23T17:08:51Z,- sheltoG commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-903956192) at 2021-08-23 10:08 AM PDT -sheltoG,2021-08-25T02:24:18Z,- sheltoG assigned to issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-902480195) at 2021-08-24 07:24 PM PDT -sheltoG,2021-08-31T20:35:06Z,- sheltoG opened issue: [2212](https://github.com/hackforla/website/issues/2212) at 2021-08-31 01:35 PM PDT -sheltoG,2021-08-31T20:49:12Z,- sheltoG commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-909624981) at 2021-08-31 01:49 PM PDT -sheltoG,2021-09-14T22:01:32Z,- sheltoG commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-919543539) at 2021-09-14 03:01 PM PDT -sheltoG,2021-09-15T21:15:32Z,- sheltoG opened issue: [2268](https://github.com/hackforla/website/issues/2268) at 2021-09-15 02:15 PM PDT -sheltoG,2021-09-20T21:07:06Z,- sheltoG closed issue as completed: [950](https://github.com/hackforla/website/issues/950#event-5331008455) at 2021-09-20 02:07 PM PDT -sheltoG,2021-09-20T21:07:15Z,- sheltoG reopened issue: [950](https://github.com/hackforla/website/issues/950#event-5331008455) at 2021-09-20 02:07 PM PDT -sheltoG,2021-09-21T19:18:26Z,- sheltoG opened issue: [2296](https://github.com/hackforla/website/issues/2296) at 2021-09-21 12:18 PM PDT -sheltoG,2021-09-29T15:02:56Z,- sheltoG commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-930262528) at 2021-09-29 08:02 AM PDT -sheltoG,2021-10-17T16:26:37Z,- sheltoG opened issue: [2368](https://github.com/hackforla/website/issues/2368) at 2021-10-17 09:26 AM PDT -sheltoG,2022-01-11T04:18:31Z,- sheltoG unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -sherririllingux,2950,SKILLS ISSUE -sherririllingux,2022-03-08T04:45:01Z,- sherririllingux opened issue: [2938](https://github.com/hackforla/website/issues/2938) at 2022-03-07 08:45 PM PST -sherririllingux,2022-03-09T22:38:13Z,- sherririllingux opened issue: [2950](https://github.com/hackforla/website/issues/2950) at 2022-03-09 02:38 PM PST -sherririllingux,2022-03-09T22:39:12Z,- sherririllingux assigned to issue: [2950](https://github.com/hackforla/website/issues/2950#issuecomment-1063450465) at 2022-03-09 02:39 PM PST -sherririllingux,2022-03-18T19:09:32Z,- sherririllingux assigned to issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1066132147) at 2022-03-18 12:09 PM PDT -sherririllingux,2022-03-23T01:24:10Z,- sherririllingux opened issue: [3003](https://github.com/hackforla/website/issues/3003) at 2022-03-22 06:24 PM PDT -sherririllingux,2022-03-23T18:22:17Z,- sherririllingux opened issue: [3005](https://github.com/hackforla/website/issues/3005) at 2022-03-23 11:22 AM PDT -sherririllingux,2022-03-25T21:16:27Z,- sherririllingux commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1079440137) at 2022-03-25 02:16 PM PDT -sherririllingux,2022-03-25T21:18:49Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1079441763) at 2022-03-25 02:18 PM PDT -sherririllingux,2022-03-26T00:05:49Z,- sherririllingux opened issue: [3011](https://github.com/hackforla/website/issues/3011) at 2022-03-25 05:05 PM PDT -sherririllingux,2022-03-28T00:35:52Z,- sherririllingux opened issue: [3019](https://github.com/hackforla/website/issues/3019) at 2022-03-27 05:35 PM PDT -sherririllingux,2022-04-10T02:45:00Z,- sherririllingux commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1094163394) at 2022-04-09 07:45 PM PDT -sherririllingux,2022-04-10T02:58:56Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1094164658) at 2022-04-09 07:58 PM PDT -sherririllingux,2022-04-10T03:09:49Z,- sherririllingux commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1094165729) at 2022-04-09 08:09 PM PDT -sherririllingux,2022-04-12T20:45:30Z,- sherririllingux closed issue as completed: [2950](https://github.com/hackforla/website/issues/2950#event-6422284503) at 2022-04-12 01:45 PM PDT -sherririllingux,2022-04-29T17:01:35Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1113530941) at 2022-04-29 10:01 AM PDT -sherririllingux,2022-05-18T18:30:01Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1130369574) at 2022-05-18 11:30 AM PDT -sherririllingux,2022-05-29T00:38:16Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1140350331) at 2022-05-28 05:38 PM PDT -sherririllingux,2022-06-07T00:00:33Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1148049214) at 2022-06-06 05:00 PM PDT -sherririllingux,2022-07-13T19:46:11Z,- sherririllingux unassigned from issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1178645021) at 2022-07-13 12:46 PM PDT -shi-kuang,6344,SKILLS ISSUE -shi-kuang,2024-02-21T03:52:01Z,- shi-kuang opened issue: [6344](https://github.com/hackforla/website/issues/6344) at 2024-02-20 07:52 PM PST -shi-kuang,2024-02-21T03:52:02Z,- shi-kuang assigned to issue: [6344](https://github.com/hackforla/website/issues/6344) at 2024-02-20 07:52 PM PST -Shienny1,2024-11-18T20:06:36Z,- Shienny1 commented on issue: [7726](https://github.com/hackforla/website/issues/7726#issuecomment-2484007054) at 2024-11-18 12:06 PM PST -Shienny1,2024-11-18T20:19:25Z,- Shienny1 commented on issue: [7726](https://github.com/hackforla/website/issues/7726#issuecomment-2484047688) at 2024-11-18 12:19 PM PST -Shikha0428,5909,SKILLS ISSUE -Shikha0428,2023-11-16T01:37:10Z,- Shikha0428 opened issue: [5909](https://github.com/hackforla/website/issues/5909) at 2023-11-15 05:37 PM PST -Shikha0428,2023-11-16T01:55:54Z,- Shikha0428 assigned to issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1813609300) at 2023-11-15 05:55 PM PST -Shikha0428,2024-02-16T06:19:13Z,- Shikha0428 assigned to issue: [5878](https://github.com/hackforla/website/issues/5878#issuecomment-1800787717) at 2024-02-15 10:19 PM PST -Shikha0428,2024-02-23T06:13:06Z,- Shikha0428 opened pull request: [6363](https://github.com/hackforla/website/pull/6363) at 2024-02-22 10:13 PM PST -Shikha0428,2024-02-23T06:35:16Z,- Shikha0428 commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1960801310) at 2024-02-22 10:35 PM PST -Shikha0428,2024-02-28T06:25:27Z,- Shikha0428 pull request merged: [6363](https://github.com/hackforla/website/pull/6363#event-11946953793) at 2024-02-27 10:25 PM PST -Shikha0428,2024-02-28T16:13:10Z,- Shikha0428 commented on pull request: [6363](https://github.com/hackforla/website/pull/6363#issuecomment-1969327417) at 2024-02-28 08:13 AM PST -shimahoush,3412,SKILLS ISSUE -shimahoush,2022-07-20T21:33:26Z,- shimahoush opened issue: [3412](https://github.com/hackforla/website/issues/3412) at 2022-07-20 02:33 PM PDT -shimahoush,2022-07-20T21:33:27Z,- shimahoush assigned to issue: [3412](https://github.com/hackforla/website/issues/3412) at 2022-07-20 02:33 PM PDT -shinhope,2021-03-26T17:49:23Z,- shinhope assigned to issue: [1329](https://github.com/hackforla/website/issues/1329) at 2021-03-26 10:49 AM PDT -shinhope,2021-03-29T23:36:13Z,- shinhope commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-809794915) at 2021-03-29 04:36 PM PDT -shinhope,2021-03-29T23:36:56Z,- shinhope commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-809795162) at 2021-03-29 04:36 PM PDT -shinhope,2021-03-31T23:14:14Z,- shinhope assigned to issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-801331285) at 2021-03-31 04:14 PM PDT -shinhope,2021-04-01T01:50:36Z,- shinhope commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-811579331) at 2021-03-31 06:50 PM PDT -shinhope,2021-04-08T17:57:12Z,- shinhope commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816023698) at 2021-04-08 10:57 AM PDT -shinhope,2021-04-08T20:01:33Z,- shinhope unassigned from issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816128653) at 2021-04-08 01:01 PM PDT -shinhope,2021-04-27T02:59:04Z,- shinhope assigned to issue: [1051](https://github.com/hackforla/website/issues/1051) at 2021-04-26 07:59 PM PDT -shinhope,2021-04-27T16:12:58Z,- shinhope unassigned from issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-813555999) at 2021-04-27 09:12 AM PDT -shinhope,2021-05-01T05:55:25Z,- shinhope commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-830556217) at 2021-04-30 10:55 PM PDT -shinhope,2021-05-07T16:25:29Z,- shinhope unassigned from issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-830556217) at 2021-05-07 09:25 AM PDT -shinhope,2021-05-20T22:36:02Z,- shinhope assigned to issue: [1555](https://github.com/hackforla/website/issues/1555) at 2021-05-20 03:36 PM PDT -shinhope,2021-05-23T23:48:32Z,- shinhope assigned to issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-23 04:48 PM PDT -shinhope,2021-05-30T15:52:19Z,- shinhope unassigned from issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-30 08:52 AM PDT -Shiv10122003,2023-09-28T19:01:12Z,- Shiv10122003 commented on issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1739856247) at 2023-09-28 12:01 PM PDT -ShivaNagachander,2023-10-03T14:05:03Z,- ShivaNagachander opened pull request: [5651](https://github.com/hackforla/website/pull/5651) at 2023-10-03 07:05 AM PDT -ShivaNagachander,2023-10-03T18:43:42Z,- ShivaNagachander pull request closed w/o merging: [5651](https://github.com/hackforla/website/pull/5651#event-10542076991) at 2023-10-03 11:43 AM PDT -ShivangRawat30,2023-05-15T12:46:15Z,- ShivangRawat30 commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1547795783) at 2023-05-15 05:46 AM PDT -ShivangRawat30,2023-05-15T12:52:48Z,- ShivangRawat30 commented on issue: [4503](https://github.com/hackforla/website/issues/4503#issuecomment-1547804332) at 2023-05-15 05:52 AM PDT -ShivangRawat30,2023-05-15T12:53:18Z,- ShivangRawat30 commented on issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1547805009) at 2023-05-15 05:53 AM PDT -ShivangRawat30,2023-05-15T12:53:46Z,- ShivangRawat30 commented on issue: [4491](https://github.com/hackforla/website/issues/4491#issuecomment-1547805875) at 2023-05-15 05:53 AM PDT -ShivangRawat30,2023-05-15T17:26:17Z,- ShivangRawat30 opened pull request: [4672](https://github.com/hackforla/website/pull/4672) at 2023-05-15 10:26 AM PDT -ShivangRawat30,2023-05-15T17:27:27Z,- ShivangRawat30 pull request closed w/o merging: [4672](https://github.com/hackforla/website/pull/4672#event-9249216323) at 2023-05-15 10:27 AM PDT -ShivangRawat30,2023-05-15T17:28:34Z,- ShivangRawat30 commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1548263439) at 2023-05-15 10:28 AM PDT -ShivangRawat30,2023-05-15T17:57:10Z,- ShivangRawat30 opened pull request: [4673](https://github.com/hackforla/website/pull/4673) at 2023-05-15 10:57 AM PDT -ShivangRawat30,2023-05-16T06:03:37Z,- ShivangRawat30 pull request closed w/o merging: [4673](https://github.com/hackforla/website/pull/4673#event-9253733630) at 2023-05-15 11:03 PM PDT -ShivaniDesai1012,7975,SKILLS ISSUE -ShivaniDesai1012,7977,SKILLS ISSUE -ShivaniDesai1012,2025-03-04T04:27:37Z,- ShivaniDesai1012 opened issue: [7975](https://github.com/hackforla/website/issues/7975) at 2025-03-03 08:27 PM PST -ShivaniDesai1012,2025-03-04T04:29:06Z,- ShivaniDesai1012 assigned to issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2696159640) at 2025-03-03 08:29 PM PST -ShivaniDesai1012,2025-03-04T04:39:09Z,- ShivaniDesai1012 opened issue: [7977](https://github.com/hackforla/website/issues/7977) at 2025-03-03 08:39 PM PST -ShivaniDesai1012,2025-03-04T04:39:09Z,- ShivaniDesai1012 assigned to issue: [7977](https://github.com/hackforla/website/issues/7977) at 2025-03-03 08:39 PM PST -ShivaniDesai1012,2025-04-11T02:49:03Z,- ShivaniDesai1012 unassigned from issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2777733579) at 2025-04-10 07:49 PM PDT -ShivaniDesai1012,2025-04-11T02:55:57Z,- ShivaniDesai1012 unassigned from issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2777733454) at 2025-04-10 07:55 PM PDT -ShivaniDesai1012,2025-04-16T03:27:24Z,- ShivaniDesai1012 assigned to issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2777733579) at 2025-04-15 08:27 PM PDT -ShivaniDesai1012,2025-04-16T23:39:09Z,- ShivaniDesai1012 assigned to issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2777733454) at 2025-04-16 04:39 PM PDT -shrinjayshresth1,2024-03-19T18:05:32Z,- shrinjayshresth1 commented on issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-2007823099) at 2024-03-19 11:05 AM PDT -shrinjayshresth1,2024-03-19T18:20:58Z,- shrinjayshresth1 commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007851060) at 2024-03-19 11:20 AM PDT -shrinjayshresth1,2024-04-03T19:31:19Z,- shrinjayshresth1 commented on issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2035422466) at 2024-04-03 12:31 PM PDT -Shubh504,2020-10-16T03:07:12Z,- Shubh504 opened pull request: [785](https://github.com/hackforla/website/pull/785) at 2020-10-15 08:07 PM PDT -Shubh504,2020-10-22T21:32:40Z,- Shubh504 pull request closed w/o merging: [785](https://github.com/hackforla/website/pull/785#event-3911231413) at 2020-10-22 02:32 PM PDT -siddhanthiyer-99,4968,SKILLS ISSUE -siddhanthiyer-99,2023-07-18T01:51:46Z,- siddhanthiyer-99 opened issue: [4968](https://github.com/hackforla/website/issues/4968) at 2023-07-17 06:51 PM PDT -siddhanthiyer-99,2023-07-18T02:31:47Z,- siddhanthiyer-99 assigned to issue: [4968](https://github.com/hackforla/website/issues/4968) at 2023-07-17 07:31 PM PDT -siddhanthiyer-99,2023-09-07T19:34:14Z,- siddhanthiyer-99 assigned to issue: [5385](https://github.com/hackforla/website/issues/5385) at 2023-09-07 12:34 PM PDT -siddhanthiyer-99,2023-09-07T20:22:13Z,- siddhanthiyer-99 opened pull request: [5456](https://github.com/hackforla/website/pull/5456) at 2023-09-07 01:22 PM PDT -siddhanthiyer-99,2023-09-07T23:02:43Z,- siddhanthiyer-99 commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1710868074) at 2023-09-07 04:02 PM PDT -siddhanthiyer-99,2023-09-11T17:18:14Z,- siddhanthiyer-99 commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1714287038) at 2023-09-11 10:18 AM PDT -siddhanthiyer-99,2023-09-11T18:25:46Z,- siddhanthiyer-99 commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1714377047) at 2023-09-11 11:25 AM PDT -siddhanthiyer-99,2023-09-11T19:27:37Z,- siddhanthiyer-99 pull request merged: [5456](https://github.com/hackforla/website/pull/5456#event-10338169925) at 2023-09-11 12:27 PM PDT -siddhanthiyer-99,2023-10-15T15:21:02Z,- siddhanthiyer-99 commented on issue: [4968](https://github.com/hackforla/website/issues/4968#issuecomment-1763422417) at 2023-10-15 08:21 AM PDT -siddhanthiyer-99,2023-10-15T15:27:19Z,- siddhanthiyer-99 assigned to issue: [5675](https://github.com/hackforla/website/issues/5675#issuecomment-1752028095) at 2023-10-15 08:27 AM PDT -siddhanthiyer-99,2023-10-16T19:49:46Z,- siddhanthiyer-99 opened pull request: [5719](https://github.com/hackforla/website/pull/5719) at 2023-10-16 12:49 PM PDT -siddhanthiyer-99,2023-10-17T18:58:23Z,- siddhanthiyer-99 commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1766989907) at 2023-10-17 11:58 AM PDT -siddhanthiyer-99,2023-10-18T14:19:20Z,- siddhanthiyer-99 pull request merged: [5719](https://github.com/hackforla/website/pull/5719#event-10693815348) at 2023-10-18 07:19 AM PDT -siddhanthiyer-99,2023-10-18T14:58:22Z,- siddhanthiyer-99 commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1768650037) at 2023-10-18 07:58 AM PDT -siddhanthiyer-99,2024-01-03T16:32:26Z,- siddhanthiyer-99 assigned to issue: [5972](https://github.com/hackforla/website/issues/5972#issuecomment-1840254376) at 2024-01-03 08:32 AM PST -siddhanthiyer-99,2024-01-04T20:07:44Z,- siddhanthiyer-99 opened pull request: [6061](https://github.com/hackforla/website/pull/6061) at 2024-01-04 12:07 PM PST -siddhanthiyer-99,2024-01-07T21:37:28Z,- siddhanthiyer-99 commented on pull request: [6061](https://github.com/hackforla/website/pull/6061#issuecomment-1880183367) at 2024-01-07 01:37 PM PST -siddhanthiyer-99,2024-01-08T01:24:06Z,- siddhanthiyer-99 pull request merged: [6061](https://github.com/hackforla/website/pull/6061#event-11412496362) at 2024-01-07 05:24 PM PST -siddhanthiyer-99,2024-02-14T16:14:14Z,- siddhanthiyer-99 assigned to issue: [5985](https://github.com/hackforla/website/issues/5985) at 2024-02-14 08:14 AM PST -siddhanthiyer-99,2024-02-14T16:15:46Z,- siddhanthiyer-99 commented on issue: [4968](https://github.com/hackforla/website/issues/4968#issuecomment-1944156589) at 2024-02-14 08:15 AM PST -siddhanthiyer-99,2024-02-14T16:22:03Z,- siddhanthiyer-99 commented on issue: [5985](https://github.com/hackforla/website/issues/5985#issuecomment-1944168480) at 2024-02-14 08:22 AM PST -siddhanthiyer-99,2024-02-27T17:07:49Z,- siddhanthiyer-99 assigned to issue: [5993](https://github.com/hackforla/website/issues/5993) at 2024-02-27 09:07 AM PST -siddhanthiyer-99,2024-02-27T17:09:13Z,- siddhanthiyer-99 commented on issue: [5993](https://github.com/hackforla/website/issues/5993#issuecomment-1967183206) at 2024-02-27 09:09 AM PST -siddhanthiyer-99,2024-02-27T20:22:21Z,- siddhanthiyer-99 commented on issue: [5993](https://github.com/hackforla/website/issues/5993#issuecomment-1967528238) at 2024-02-27 12:22 PM PST -siddhanthiyer-99,2024-04-02T21:19:40Z,- siddhanthiyer-99 assigned to issue: [6489](https://github.com/hackforla/website/issues/6489) at 2024-04-02 02:19 PM PDT -siddhanthiyer-99,2024-04-02T21:23:28Z,- siddhanthiyer-99 commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2033123891) at 2024-04-02 02:23 PM PDT -siddhanthiyer-99,2024-04-04T03:38:42Z,- siddhanthiyer-99 commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2036114108) at 2024-04-03 08:38 PM PDT -siddharthpvaghela,7066,SKILLS ISSUE -siddharthpvaghela,2024-06-26T19:26:42Z,- siddharthpvaghela opened issue: [7066](https://github.com/hackforla/website/issues/7066) at 2024-06-26 12:26 PM PDT -siddharthpvaghela,2024-06-26T19:26:43Z,- siddharthpvaghela assigned to issue: [7066](https://github.com/hackforla/website/issues/7066) at 2024-06-26 12:26 PM PDT -siddharthpvaghela,2024-07-02T04:02:43Z,- siddharthpvaghela commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2201849159) at 2024-07-01 09:02 PM PDT -Sihemgourou,2021-05-23T17:37:35Z,- Sihemgourou commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-846598663) at 2021-05-23 10:37 AM PDT -Sihemgourou,2021-05-23T17:49:03Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-846600031) at 2021-05-23 10:49 AM PDT -Sihemgourou,2021-05-23T17:51:31Z,- Sihemgourou commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-846600374) at 2021-05-23 10:51 AM PDT -Sihemgourou,2021-05-23T18:01:16Z,- Sihemgourou commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-846601599) at 2021-05-23 11:01 AM PDT -Sihemgourou,2021-05-30T17:22:08Z,- Sihemgourou assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:22 AM PDT -Sihemgourou,2021-06-06T15:30:45Z,- Sihemgourou commented on issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855417180) at 2021-06-06 08:30 AM PDT -Sihemgourou,2021-06-06T17:49:00Z,- Sihemgourou assigned to issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855435299) at 2021-06-06 10:49 AM PDT -Sihemgourou,2021-06-06T18:58:55Z,- Sihemgourou unassigned from issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855435299) at 2021-06-06 11:58 AM PDT -Sihemgourou,2021-06-06T19:54:08Z,- Sihemgourou assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855452951) at 2021-06-06 12:54 PM PDT -Sihemgourou,2021-06-06T21:14:59Z,- Sihemgourou assigned to issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2021-06-06 02:14 PM PDT -Sihemgourou,2021-06-09T19:58:15Z,- Sihemgourou closed issue as completed: [838](https://github.com/hackforla/website/issues/838#event-4867397453) at 2021-06-09 12:58 PM PDT -Sihemgourou,2021-06-09T20:13:59Z,- Sihemgourou commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-858070260) at 2021-06-09 01:13 PM PDT -Sihemgourou,2021-06-09T20:16:19Z,- Sihemgourou commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-858071608) at 2021-06-09 01:16 PM PDT -Sihemgourou,2021-06-09T20:30:39Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-858079946) at 2021-06-09 01:30 PM PDT -Sihemgourou,2021-06-09T20:31:35Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-858080453) at 2021-06-09 01:31 PM PDT -Sihemgourou,2021-06-09T20:36:46Z,- Sihemgourou commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-858083305) at 2021-06-09 01:36 PM PDT -Sihemgourou,2021-06-09T20:48:15Z,- Sihemgourou commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-858089811) at 2021-06-09 01:48 PM PDT -Sihemgourou,2021-06-09T20:51:34Z,- Sihemgourou commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-858091832) at 2021-06-09 01:51 PM PDT -Sihemgourou,2021-06-09T20:55:30Z,- Sihemgourou commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-858094338) at 2021-06-09 01:55 PM PDT -Sihemgourou,2021-06-09T20:59:48Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-858096967) at 2021-06-09 01:59 PM PDT -Sihemgourou,2021-06-09T21:01:08Z,- Sihemgourou commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-858097827) at 2021-06-09 02:01 PM PDT -Sihemgourou,2021-06-09T21:04:05Z,- Sihemgourou commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-858099678) at 2021-06-09 02:04 PM PDT -Sihemgourou,2021-06-09T21:16:50Z,- Sihemgourou commented on issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-858108265) at 2021-06-09 02:16 PM PDT -Sihemgourou,2021-06-10T19:37:16Z,- Sihemgourou commented on issue: [1548](https://github.com/hackforla/website/issues/1548#issuecomment-858969216) at 2021-06-10 12:37 PM PDT -Sihemgourou,2021-06-11T17:17:23Z,- Sihemgourou assigned to issue: [1709](https://github.com/hackforla/website/issues/1709) at 2021-06-11 10:17 AM PDT -Sihemgourou,2021-06-11T17:48:53Z,- Sihemgourou opened issue: [1712](https://github.com/hackforla/website/issues/1712) at 2021-06-11 10:48 AM PDT -Sihemgourou,2021-06-11T19:34:16Z,- Sihemgourou opened pull request: [1713](https://github.com/hackforla/website/pull/1713) at 2021-06-11 12:34 PM PDT -Sihemgourou,2021-06-11T19:36:51Z,- Sihemgourou closed issue by PR 1713: [1629](https://github.com/hackforla/website/issues/1629#event-4879806192) at 2021-06-11 12:36 PM PDT -Sihemgourou,2021-06-11T19:36:51Z,- Sihemgourou pull request merged: [1713](https://github.com/hackforla/website/pull/1713#event-4879806196) at 2021-06-11 12:36 PM PDT -Sihemgourou,2021-06-11T21:41:45Z,- Sihemgourou opened pull request: [1715](https://github.com/hackforla/website/pull/1715) at 2021-06-11 02:41 PM PDT -Sihemgourou,2021-06-11T21:42:17Z,- Sihemgourou pull request merged: [1715](https://github.com/hackforla/website/pull/1715#event-4880237039) at 2021-06-11 02:42 PM PDT -Sihemgourou,2021-06-11T22:27:38Z,- Sihemgourou opened issue: [2450](https://github.com/hackforla/website/issues/2450) at 2021-06-11 03:27 PM PDT -Sihemgourou,2021-06-11T23:22:32Z,- Sihemgourou assigned to issue: [2450](https://github.com/hackforla/website/issues/2450) at 2021-06-11 04:22 PM PDT -Sihemgourou,2021-06-11T23:33:12Z,- Sihemgourou closed issue as completed: [1680](https://github.com/hackforla/website/issues/1680#event-4880481238) at 2021-06-11 04:33 PM PDT -Sihemgourou,2021-06-12T00:06:46Z,- Sihemgourou commented on issue: [1690](https://github.com/hackforla/website/issues/1690#issuecomment-859964392) at 2021-06-11 05:06 PM PDT -Sihemgourou,2021-06-12T00:07:28Z,- Sihemgourou closed issue as completed: [1686](https://github.com/hackforla/website/issues/1686#event-4880538743) at 2021-06-11 05:07 PM PDT -Sihemgourou,2021-06-12T00:08:01Z,- Sihemgourou commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859964683) at 2021-06-11 05:08 PM PDT -Sihemgourou,2021-06-12T00:08:01Z,- Sihemgourou commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859964683) at 2021-06-11 05:08 PM PDT -Sihemgourou,2021-06-12T00:12:49Z,- Sihemgourou closed issue by PR 1705: [1590](https://github.com/hackforla/website/issues/1590#event-4880547379) at 2021-06-11 05:12 PM PDT -Sihemgourou,2021-06-12T00:24:29Z,- Sihemgourou closed issue as completed: [1061](https://github.com/hackforla/website/issues/1061#event-4880565981) at 2021-06-11 05:24 PM PDT -Sihemgourou,2021-06-12T00:28:15Z,- Sihemgourou closed issue as completed: [1285](https://github.com/hackforla/website/issues/1285#event-4880570645) at 2021-06-11 05:28 PM PDT -Sihemgourou,2021-06-12T00:28:51Z,- Sihemgourou closed issue as completed: [1070](https://github.com/hackforla/website/issues/1070#event-4880571396) at 2021-06-11 05:28 PM PDT -Sihemgourou,2021-06-12T00:48:40Z,- Sihemgourou commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859971862) at 2021-06-11 05:48 PM PDT -Sihemgourou,2021-06-12T00:54:35Z,- Sihemgourou closed issue as completed: [799](https://github.com/hackforla/website/issues/799#event-4880603563) at 2021-06-11 05:54 PM PDT -Sihemgourou,2021-06-12T01:03:54Z,- Sihemgourou commented on issue: [1690](https://github.com/hackforla/website/issues/1690#issuecomment-859974142) at 2021-06-11 06:03 PM PDT -Sihemgourou,2021-06-12T01:21:23Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-859976548) at 2021-06-11 06:21 PM PDT -Sihemgourou,2021-06-12T01:24:50Z,- Sihemgourou commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-859976977) at 2021-06-11 06:24 PM PDT -Sihemgourou,2021-06-12T01:36:41Z,- Sihemgourou commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-859978475) at 2021-06-11 06:36 PM PDT -Sihemgourou,2021-06-12T02:03:12Z,- Sihemgourou closed issue as completed: [994](https://github.com/hackforla/website/issues/994#event-4880676129) at 2021-06-11 07:03 PM PDT -Sihemgourou,2021-06-12T03:11:05Z,- Sihemgourou commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859989006) at 2021-06-11 08:11 PM PDT -Sihemgourou,2021-06-12T10:02:24Z,- Sihemgourou assigned to issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-06-12 03:02 AM PDT -Sihemgourou,2021-06-12T10:06:39Z,- Sihemgourou closed issue by PR 1001: [905](https://github.com/hackforla/website/issues/905#event-4881093193) at 2021-06-12 03:06 AM PDT -Sihemgourou,2021-06-12T10:07:33Z,- Sihemgourou closed issue as completed: [906](https://github.com/hackforla/website/issues/906#event-4881094068) at 2021-06-12 03:07 AM PDT -Sihemgourou,2021-06-12T10:10:38Z,- Sihemgourou commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-860032300) at 2021-06-12 03:10 AM PDT -Sihemgourou,2021-06-12T10:15:03Z,- Sihemgourou closed issue as completed: [1119](https://github.com/hackforla/website/issues/1119#event-4881100657) at 2021-06-12 03:15 AM PDT -Sihemgourou,2021-06-12T10:20:33Z,- Sihemgourou closed issue as completed: [1219](https://github.com/hackforla/website/issues/1219#event-4881104744) at 2021-06-12 03:20 AM PDT -Sihemgourou,2021-06-12T10:21:23Z,- Sihemgourou closed issue as completed: [1395](https://github.com/hackforla/website/issues/1395#event-4881105287) at 2021-06-12 03:21 AM PDT -Sihemgourou,2021-06-12T10:26:03Z,- Sihemgourou closed issue as completed: [689](https://github.com/hackforla/website/issues/689#event-4881108886) at 2021-06-12 03:26 AM PDT -Sihemgourou,2021-06-12T10:47:12Z,- Sihemgourou closed issue as completed: [807](https://github.com/hackforla/website/issues/807#event-4881127088) at 2021-06-12 03:47 AM PDT -Sihemgourou,2021-06-12T10:48:39Z,- Sihemgourou closed issue as completed: [701](https://github.com/hackforla/website/issues/701#event-4881128291) at 2021-06-12 03:48 AM PDT -Sihemgourou,2021-06-12T10:49:40Z,- Sihemgourou assigned to issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-780044558) at 2021-06-12 03:49 AM PDT -Sihemgourou,2021-06-12T10:51:38Z,- Sihemgourou closed issue by PR 1999: [1479](https://github.com/hackforla/website/issues/1479#event-4881130569) at 2021-06-12 03:51 AM PDT -Sihemgourou,2021-06-12T10:54:05Z,- Sihemgourou closed issue as completed: [688](https://github.com/hackforla/website/issues/688#event-4881132375) at 2021-06-12 03:54 AM PDT -Sihemgourou,2021-06-12T10:57:15Z,- Sihemgourou closed issue as completed: [794](https://github.com/hackforla/website/issues/794#event-4881134771) at 2021-06-12 03:57 AM PDT -Sihemgourou,2021-06-12T10:57:51Z,- Sihemgourou closed issue as completed: [918](https://github.com/hackforla/website/issues/918#event-4881135273) at 2021-06-12 03:57 AM PDT -Sihemgourou,2021-06-12T11:16:43Z,- Sihemgourou opened issue: [1723](https://github.com/hackforla/website/issues/1723) at 2021-06-12 04:16 AM PDT -Sihemgourou,2021-06-12T12:11:54Z,- Sihemgourou closed issue as completed: [1259](https://github.com/hackforla/website/issues/1259#event-4881204597) at 2021-06-12 05:11 AM PDT -Sihemgourou,2021-06-12T12:12:29Z,- Sihemgourou closed issue as completed: [969](https://github.com/hackforla/website/issues/969#event-4881205012) at 2021-06-12 05:12 AM PDT -Sihemgourou,2021-06-12T12:14:02Z,- Sihemgourou assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 05:14 AM PDT -Sihemgourou,2021-06-12T12:28:05Z,- Sihemgourou closed issue as completed: [1105](https://github.com/hackforla/website/issues/1105#event-4881217878) at 2021-06-12 05:28 AM PDT -Sihemgourou,2021-06-12T12:31:53Z,- Sihemgourou closed issue as completed: [1621](https://github.com/hackforla/website/issues/1621#event-4881221067) at 2021-06-12 05:31 AM PDT -Sihemgourou,2021-06-12T12:42:13Z,- Sihemgourou closed issue as completed: [916](https://github.com/hackforla/website/issues/916#event-4881229626) at 2021-06-12 05:42 AM PDT -Sihemgourou,2021-06-12T12:54:46Z,- Sihemgourou closed issue as completed: [1057](https://github.com/hackforla/website/issues/1057#event-4881239733) at 2021-06-12 05:54 AM PDT -Sihemgourou,2021-06-12T12:59:36Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860050343) at 2021-06-12 05:59 AM PDT -Sihemgourou,2021-06-12T13:01:39Z,- Sihemgourou assigned to issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860050343) at 2021-06-12 06:01 AM PDT -Sihemgourou,2021-06-12T13:04:15Z,- Sihemgourou closed issue as completed: [1691](https://github.com/hackforla/website/issues/1691#event-4881248358) at 2021-06-12 06:04 AM PDT -Sihemgourou,2021-06-12T13:09:34Z,- Sihemgourou closed issue as completed: [587](https://github.com/hackforla/website/issues/587#event-4881253017) at 2021-06-12 06:09 AM PDT -Sihemgourou,2021-06-12T13:09:40Z,- Sihemgourou commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-860051447) at 2021-06-12 06:09 AM PDT -Sihemgourou,2021-06-12T13:11:00Z,- Sihemgourou closed issue as completed: [765](https://github.com/hackforla/website/issues/765#event-4881254313) at 2021-06-12 06:11 AM PDT -Sihemgourou,2021-06-12T13:12:39Z,- Sihemgourou closed issue as completed: [529](https://github.com/hackforla/website/issues/529#event-4881255820) at 2021-06-12 06:12 AM PDT -Sihemgourou,2021-06-12T13:16:02Z,- Sihemgourou commented on issue: [1712](https://github.com/hackforla/website/issues/1712#issuecomment-860052312) at 2021-06-12 06:16 AM PDT -Sihemgourou,2021-06-12T13:17:03Z,- Sihemgourou opened issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Sihemgourou,2021-06-12T13:17:12Z,- Sihemgourou assigned to issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Sihemgourou,2021-06-12T13:17:21Z,- Sihemgourou unassigned from issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Sihemgourou,2021-06-12T13:23:11Z,- Sihemgourou opened pull request: [1725](https://github.com/hackforla/website/pull/1725) at 2021-06-12 06:23 AM PDT -Sihemgourou,2021-06-12T13:23:24Z,- Sihemgourou pull request merged: [1725](https://github.com/hackforla/website/pull/1725#event-4881265427) at 2021-06-12 06:23 AM PDT -Sihemgourou,2021-06-12T13:25:29Z,- Sihemgourou closed issue as completed: [1690](https://github.com/hackforla/website/issues/1690#event-4881267285) at 2021-06-12 06:25 AM PDT -Sihemgourou,2021-06-12T13:30:50Z,- Sihemgourou assigned to issue: [1619](https://github.com/hackforla/website/issues/1619) at 2021-06-12 06:30 AM PDT -Sihemgourou,2021-06-12T13:31:48Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-860053946) at 2021-06-12 06:31 AM PDT -Sihemgourou,2021-06-12T13:35:00Z,- Sihemgourou closed issue as completed: [1287](https://github.com/hackforla/website/issues/1287#event-4881275618) at 2021-06-12 06:35 AM PDT -Sihemgourou,2021-06-12T14:26:36Z,- Sihemgourou closed issue as completed: [1548](https://github.com/hackforla/website/issues/1548#event-4881324557) at 2021-06-12 07:26 AM PDT -Sihemgourou,2021-06-12T16:32:03Z,- Sihemgourou unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -Sihemgourou,2021-06-12T17:04:26Z,- Sihemgourou closed issue as completed: [1692](https://github.com/hackforla/website/issues/1692#event-4881473812) at 2021-06-12 10:04 AM PDT -Sihemgourou,2021-06-12T17:10:28Z,- Sihemgourou unassigned from issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2021-06-12 10:10 AM PDT -Sihemgourou,2021-06-12T17:10:47Z,- Sihemgourou unassigned from issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-06-12 10:10 AM PDT -Sihemgourou,2021-06-12T17:14:33Z,- Sihemgourou closed issue as completed: [610](https://github.com/hackforla/website/issues/610#event-4881483461) at 2021-06-12 10:14 AM PDT -Sihemgourou,2021-06-12T19:23:52Z,- Sihemgourou commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860097793) at 2021-06-12 12:23 PM PDT -Sihemgourou,2021-06-12T19:51:12Z,- Sihemgourou closed issue by PR 1719: [1712](https://github.com/hackforla/website/issues/1712#event-4881611268) at 2021-06-12 12:51 PM PDT -Sihemgourou,2021-06-12T20:00:11Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-860101799) at 2021-06-12 01:00 PM PDT -Sihemgourou,2021-06-12T20:07:33Z,- Sihemgourou reopened issue: [1479](https://github.com/hackforla/website/issues/1479#event-4881130569) at 2021-06-12 01:07 PM PDT -Sihemgourou,2021-06-12T22:09:34Z,- Sihemgourou opened issue: [1728](https://github.com/hackforla/website/issues/1728) at 2021-06-12 03:09 PM PDT -Sihemgourou,2021-06-12T22:19:30Z,- Sihemgourou commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-860120503) at 2021-06-12 03:19 PM PDT -Sihemgourou,2021-06-12T22:20:36Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860120558) at 2021-06-12 03:20 PM PDT -Sihemgourou,2021-06-12T22:59:59Z,- Sihemgourou assigned to issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2021-06-12 03:59 PM PDT -Sihemgourou,2021-06-12T23:09:40Z,- Sihemgourou closed issue as completed: [767](https://github.com/hackforla/website/issues/767#event-4881731845) at 2021-06-12 04:09 PM PDT -Sihemgourou,2021-06-12T23:10:01Z,- Sihemgourou opened issue: [1730](https://github.com/hackforla/website/issues/1730) at 2021-06-12 04:10 PM PDT -Sihemgourou,2021-06-12T23:10:02Z,- Sihemgourou assigned to issue: [1730](https://github.com/hackforla/website/issues/1730) at 2021-06-12 04:10 PM PDT -Sihemgourou,2021-06-13T19:00:59Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-860255585) at 2021-06-13 12:00 PM PDT -Sihemgourou,2021-06-13T19:33:19Z,- Sihemgourou commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-860259483) at 2021-06-13 12:33 PM PDT -Sihemgourou,2021-06-13T19:40:21Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-860260265) at 2021-06-13 12:40 PM PDT -Sihemgourou,2021-06-13T19:46:12Z,- Sihemgourou unassigned from issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860258322) at 2021-06-13 12:46 PM PDT -Sihemgourou,2021-06-13T19:46:54Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860260989) at 2021-06-13 12:46 PM PDT -Sihemgourou,2021-06-13T19:50:43Z,- Sihemgourou opened issue: [1734](https://github.com/hackforla/website/issues/1734) at 2021-06-13 12:50 PM PDT -Sihemgourou,2021-06-13T22:18:14Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860277696) at 2021-06-13 03:18 PM PDT -Sihemgourou,2021-06-13T22:27:28Z,- Sihemgourou commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-860278715) at 2021-06-13 03:27 PM PDT -Sihemgourou,2021-06-13T22:29:13Z,- Sihemgourou commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-860278939) at 2021-06-13 03:29 PM PDT -Sihemgourou,2021-06-13T22:33:04Z,- Sihemgourou commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-860279384) at 2021-06-13 03:33 PM PDT -Sihemgourou,2021-06-14T18:26:53Z,- Sihemgourou closed issue as completed: [963](https://github.com/hackforla/website/issues/963#event-4887307691) at 2021-06-14 11:26 AM PDT -Sihemgourou,2021-06-14T19:26:44Z,- Sihemgourou closed issue as completed: [618](https://github.com/hackforla/website/issues/618#event-4887561824) at 2021-06-14 12:26 PM PDT -Sihemgourou,2021-06-14T19:48:12Z,- Sihemgourou commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-860947231) at 2021-06-14 12:48 PM PDT -Sihemgourou,2021-06-14T19:53:38Z,- Sihemgourou commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-860950529) at 2021-06-14 12:53 PM PDT -Sihemgourou,2021-06-15T21:31:54Z,- Sihemgourou commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-861847837) at 2021-06-15 02:31 PM PDT -Sihemgourou,2021-06-15T21:35:05Z,- Sihemgourou opened issue: [1743](https://github.com/hackforla/website/issues/1743) at 2021-06-15 02:35 PM PDT -Sihemgourou,2021-06-15T21:39:55Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-861851854) at 2021-06-15 02:39 PM PDT -Sihemgourou,2021-06-15T21:40:23Z,- Sihemgourou assigned to issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-861851854) at 2021-06-15 02:40 PM PDT -Sihemgourou,2021-06-15T21:42:38Z,- Sihemgourou commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-861853095) at 2021-06-15 02:42 PM PDT -Sihemgourou,2021-06-16T19:15:10Z,- Sihemgourou commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-862645998) at 2021-06-16 12:15 PM PDT -Sihemgourou,2021-06-16T19:55:22Z,- Sihemgourou commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862670305) at 2021-06-16 12:55 PM PDT -Sihemgourou,2021-06-17T07:40:19Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-863008300) at 2021-06-17 12:40 AM PDT -Sihemgourou,2021-06-17T20:36:03Z,- Sihemgourou assigned to issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-860120503) at 2021-06-17 01:36 PM PDT -Sihemgourou,2021-06-17T20:36:24Z,- Sihemgourou commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863547326) at 2021-06-17 01:36 PM PDT -Sihemgourou,2021-06-18T07:26:46Z,- Sihemgourou commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863822411) at 2021-06-18 12:26 AM PDT -Sihemgourou,2021-06-18T07:29:21Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-863823783) at 2021-06-18 12:29 AM PDT -Sihemgourou,2021-06-19T16:16:35Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864426220) at 2021-06-19 09:16 AM PDT -Sihemgourou,2021-06-19T16:17:02Z,- Sihemgourou closed issue as completed: [1786](https://github.com/hackforla/website/issues/1786#event-4912619440) at 2021-06-19 09:17 AM PDT -Sihemgourou,2021-06-19T16:30:49Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864427886) at 2021-06-19 09:30 AM PDT -Sihemgourou,2021-06-19T21:42:07Z,- Sihemgourou opened issue: [1789](https://github.com/hackforla/website/issues/1789) at 2021-06-19 02:42 PM PDT -Sihemgourou,2021-06-19T22:18:32Z,- Sihemgourou commented on issue: [1709](https://github.com/hackforla/website/issues/1709#issuecomment-864470626) at 2021-06-19 03:18 PM PDT -Sihemgourou,2021-06-19T22:18:36Z,- Sihemgourou closed issue as completed: [1709](https://github.com/hackforla/website/issues/1709#event-4912859232) at 2021-06-19 03:18 PM PDT -Sihemgourou,2021-06-19T22:37:02Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-864471995) at 2021-06-19 03:37 PM PDT -Sihemgourou,2021-06-19T22:47:27Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-864472800) at 2021-06-19 03:47 PM PDT -Sihemgourou,2021-06-19T22:48:22Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-864472848) at 2021-06-19 03:48 PM PDT -Sihemgourou,2021-06-19T22:49:01Z,- Sihemgourou commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-864472906) at 2021-06-19 03:49 PM PDT -Sihemgourou,2021-06-19T22:51:03Z,- Sihemgourou commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-864473066) at 2021-06-19 03:51 PM PDT -Sihemgourou,2021-06-20T16:56:03Z,- Sihemgourou assigned to issue: [1734](https://github.com/hackforla/website/issues/1734) at 2021-06-20 09:56 AM PDT -Sihemgourou,2021-06-20T17:16:15Z,- Sihemgourou commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-864585306) at 2021-06-20 10:16 AM PDT -Sihemgourou,2021-06-20T17:16:18Z,- Sihemgourou closed issue as completed: [1623](https://github.com/hackforla/website/issues/1623#event-4913608667) at 2021-06-20 10:16 AM PDT -Sihemgourou,2021-06-20T18:04:18Z,- Sihemgourou commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-864590949) at 2021-06-20 11:04 AM PDT -Sihemgourou,2021-06-20T20:27:26Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864607554) at 2021-06-20 01:27 PM PDT -Sihemgourou,2021-06-20T20:33:33Z,- Sihemgourou opened issue: [1796](https://github.com/hackforla/website/issues/1796) at 2021-06-20 01:33 PM PDT -Sihemgourou,2021-06-20T20:44:49Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:44 PM PDT -Sihemgourou,2021-06-20T21:05:44Z,- Sihemgourou opened issue: [1797](https://github.com/hackforla/website/issues/1797) at 2021-06-20 02:05 PM PDT -Sihemgourou,2021-06-20T22:08:53Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:08 PM PDT -Sihemgourou,2021-06-20T22:15:14Z,- Sihemgourou assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -Sihemgourou,2021-06-21T18:39:18Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-865258556) at 2021-06-21 11:39 AM PDT -Sihemgourou,2021-06-22T20:12:54Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-866300894) at 2021-06-22 01:12 PM PDT -Sihemgourou,2021-06-23T12:13:53Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-866783710) at 2021-06-23 05:13 AM PDT -Sihemgourou,2021-06-23T20:03:02Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-867120718) at 2021-06-23 01:03 PM PDT -Sihemgourou,2021-06-23T20:53:44Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-867150478) at 2021-06-23 01:53 PM PDT -Sihemgourou,2021-06-24T20:29:58Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-867931648) at 2021-06-24 01:29 PM PDT -Sihemgourou,2021-06-24T20:35:08Z,- Sihemgourou commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-867934225) at 2021-06-24 01:35 PM PDT -Sihemgourou,2021-06-24T20:36:21Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-867934846) at 2021-06-24 01:36 PM PDT -Sihemgourou,2021-06-24T21:28:48Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-867963819) at 2021-06-24 02:28 PM PDT -Sihemgourou,2021-06-24T21:30:14Z,- Sihemgourou commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-867964547) at 2021-06-24 02:30 PM PDT -Sihemgourou,2021-06-24T21:31:09Z,- Sihemgourou opened issue: [1829](https://github.com/hackforla/website/issues/1829) at 2021-06-24 02:31 PM PDT -Sihemgourou,2021-06-24T21:37:35Z,- Sihemgourou opened issue: [1830](https://github.com/hackforla/website/issues/1830) at 2021-06-24 02:37 PM PDT -Sihemgourou,2021-06-27T17:43:54Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-869200854) at 2021-06-27 10:43 AM PDT -Sihemgourou,2021-06-27T17:46:00Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-869201114) at 2021-06-27 10:46 AM PDT -Sihemgourou,2021-06-27T18:02:31Z,- Sihemgourou commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-869203181) at 2021-06-27 11:02 AM PDT -Sihemgourou,2021-06-27T20:21:31Z,- Sihemgourou opened issue: [1840](https://github.com/hackforla/website/issues/1840) at 2021-06-27 01:21 PM PDT -Sihemgourou,2021-06-27T20:22:26Z,- Sihemgourou opened issue: [1841](https://github.com/hackforla/website/issues/1841) at 2021-06-27 01:22 PM PDT -Sihemgourou,2021-06-27T20:23:38Z,- Sihemgourou opened issue: [1842](https://github.com/hackforla/website/issues/1842) at 2021-06-27 01:23 PM PDT -Sihemgourou,2021-06-27T20:24:58Z,- Sihemgourou opened issue: [1843](https://github.com/hackforla/website/issues/1843) at 2021-06-27 01:24 PM PDT -Sihemgourou,2021-06-27T20:25:52Z,- Sihemgourou opened issue: [1844](https://github.com/hackforla/website/issues/1844) at 2021-06-27 01:25 PM PDT -Sihemgourou,2021-06-27T20:33:12Z,- Sihemgourou opened issue: [1845](https://github.com/hackforla/website/issues/1845) at 2021-06-27 01:33 PM PDT -Sihemgourou,2021-06-27T20:38:14Z,- Sihemgourou opened issue: [1846](https://github.com/hackforla/website/issues/1846) at 2021-06-27 01:38 PM PDT -Sihemgourou,2021-06-27T20:51:56Z,- Sihemgourou opened issue: [1848](https://github.com/hackforla/website/issues/1848) at 2021-06-27 01:51 PM PDT -Sihemgourou,2021-06-27T20:53:36Z,- Sihemgourou opened issue: [1849](https://github.com/hackforla/website/issues/1849) at 2021-06-27 01:53 PM PDT -Sihemgourou,2021-06-27T23:44:01Z,- Sihemgourou commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-06-27 04:44 PM PDT -Sihemgourou,2021-06-27T23:44:54Z,- Sihemgourou unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-06-27 04:44 PM PDT -Sihemgourou,2021-06-27T23:45:02Z,- Sihemgourou assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-06-27 04:45 PM PDT -Sihemgourou,2021-06-28T20:42:03Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-870026744) at 2021-06-28 01:42 PM PDT -Sihemgourou,2021-06-28T20:44:33Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-870028308) at 2021-06-28 01:44 PM PDT -Sihemgourou,2021-06-28T21:56:39Z,- Sihemgourou commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-870071426) at 2021-06-28 02:56 PM PDT -Sihemgourou,2021-06-28T22:26:21Z,- Sihemgourou commented on pull request: [1832](https://github.com/hackforla/website/pull/1832#issuecomment-870087463) at 2021-06-28 03:26 PM PDT -Sihemgourou,2021-06-28T22:38:28Z,- Sihemgourou commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-870092678) at 2021-06-28 03:38 PM PDT -Sihemgourou,2021-06-28T22:41:13Z,- Sihemgourou commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-870093784) at 2021-06-28 03:41 PM PDT -Sihemgourou,2021-06-28T22:51:19Z,- Sihemgourou commented on issue: [1743](https://github.com/hackforla/website/issues/1743#issuecomment-870097430) at 2021-06-28 03:51 PM PDT -Sihemgourou,2021-06-28T22:52:36Z,- Sihemgourou commented on pull request: [1831](https://github.com/hackforla/website/pull/1831#issuecomment-870097887) at 2021-06-28 03:52 PM PDT -Sihemgourou,2021-06-28T22:55:36Z,- Sihemgourou commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-870098922) at 2021-06-28 03:55 PM PDT -Sihemgourou,2021-06-28T22:58:50Z,- Sihemgourou unassigned from issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863822411) at 2021-06-28 03:58 PM PDT -Sihemgourou,2021-06-28T23:07:19Z,- Sihemgourou commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870104079) at 2021-06-28 04:07 PM PDT -Sihemgourou,2021-06-28T23:07:37Z,- Sihemgourou assigned to issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870104079) at 2021-06-28 04:07 PM PDT -Sihemgourou,2021-06-28T23:08:59Z,- Sihemgourou assigned to issue: [1846](https://github.com/hackforla/website/issues/1846) at 2021-06-28 04:08 PM PDT -Sihemgourou,2021-06-28T23:09:10Z,- Sihemgourou commented on issue: [1846](https://github.com/hackforla/website/issues/1846#issuecomment-870105040) at 2021-06-28 04:09 PM PDT -Sihemgourou,2021-06-28T23:09:13Z,- Sihemgourou closed issue as completed: [1846](https://github.com/hackforla/website/issues/1846#event-4950261422) at 2021-06-28 04:09 PM PDT -Sihemgourou,2021-06-28T23:10:01Z,- Sihemgourou assigned to issue: [1844](https://github.com/hackforla/website/issues/1844) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:10:09Z,- Sihemgourou commented on issue: [1844](https://github.com/hackforla/website/issues/1844#issuecomment-870105537) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:10:12Z,- Sihemgourou closed issue as completed: [1844](https://github.com/hackforla/website/issues/1844#event-4950264334) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:10:49Z,- Sihemgourou commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-870105825) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:12:19Z,- Sihemgourou commented on issue: [1840](https://github.com/hackforla/website/issues/1840#issuecomment-870106473) at 2021-06-28 04:12 PM PDT -Sihemgourou,2021-06-28T23:12:26Z,- Sihemgourou assigned to issue: [1840](https://github.com/hackforla/website/issues/1840#issuecomment-870106473) at 2021-06-28 04:12 PM PDT -Sihemgourou,2021-06-28T23:12:27Z,- Sihemgourou closed issue as completed: [1840](https://github.com/hackforla/website/issues/1840#event-4950270122) at 2021-06-28 04:12 PM PDT -Sihemgourou,2021-06-28T23:34:00Z,- Sihemgourou unassigned from issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-869904741) at 2021-06-28 04:34 PM PDT -Sihemgourou,2021-06-28T23:46:25Z,- Sihemgourou commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-870120662) at 2021-06-28 04:46 PM PDT -Sihemgourou,2021-06-28T23:47:39Z,- Sihemgourou commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-870121041) at 2021-06-28 04:47 PM PDT -Sihemgourou,2021-06-29T00:16:58Z,- Sihemgourou commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870132274) at 2021-06-28 05:16 PM PDT -Sihemgourou,2021-06-29T19:36:59Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-870862101) at 2021-06-29 12:36 PM PDT -Sihemgourou,2021-06-30T18:23:21Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-871629919) at 2021-06-30 11:23 AM PDT -Sihemgourou,2021-06-30T18:49:31Z,- Sihemgourou commented on issue: [1585](https://github.com/hackforla/website/issues/1585#issuecomment-871646164) at 2021-06-30 11:49 AM PDT -Sihemgourou,2021-06-30T18:52:33Z,- Sihemgourou opened issue: [1865](https://github.com/hackforla/website/issues/1865) at 2021-06-30 11:52 AM PDT -Sihemgourou,2021-06-30T18:52:34Z,- Sihemgourou assigned to issue: [1865](https://github.com/hackforla/website/issues/1865) at 2021-06-30 11:52 AM PDT -Sihemgourou,2021-06-30T18:56:29Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-871650352) at 2021-06-30 11:56 AM PDT -Sihemgourou,2021-06-30T20:59:47Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-871723496) at 2021-06-30 01:59 PM PDT -Sihemgourou,2021-06-30T21:16:43Z,- Sihemgourou opened issue: [1866](https://github.com/hackforla/website/issues/1866) at 2021-06-30 02:16 PM PDT -Sihemgourou,2021-06-30T21:18:23Z,- Sihemgourou opened issue: [1867](https://github.com/hackforla/website/issues/1867) at 2021-06-30 02:18 PM PDT -Sihemgourou,2021-06-30T21:22:46Z,- Sihemgourou opened issue: [1868](https://github.com/hackforla/website/issues/1868) at 2021-06-30 02:22 PM PDT -Sihemgourou,2021-07-04T16:30:51Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-873621849) at 2021-07-04 09:30 AM PDT -Sihemgourou,2021-07-04T17:18:10Z,- Sihemgourou commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-873628516) at 2021-07-04 10:18 AM PDT -Sihemgourou,2021-07-04T17:21:23Z,- Sihemgourou commented on issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-873629019) at 2021-07-04 10:21 AM PDT -Sihemgourou,2021-07-04T17:28:55Z,- Sihemgourou commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873630008) at 2021-07-04 10:28 AM PDT -Sihemgourou,2021-07-04T18:08:39Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-873635417) at 2021-07-04 11:08 AM PDT -Sihemgourou,2021-07-04T18:13:53Z,- Sihemgourou commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-873636081) at 2021-07-04 11:13 AM PDT -Sihemgourou,2021-07-06T19:49:48Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-875036846) at 2021-07-06 12:49 PM PDT -Sihemgourou,2021-07-07T18:23:06Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-875828795) at 2021-07-07 11:23 AM PDT -Sihemgourou,2021-07-09T16:46:54Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-877318374) at 2021-07-09 09:46 AM PDT -Sihemgourou,2021-07-10T10:19:31Z,- Sihemgourou commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877612854) at 2021-07-10 03:19 AM PDT -Sihemgourou,2021-07-10T10:27:22Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-877613982) at 2021-07-10 03:27 AM PDT -Sihemgourou,2021-07-10T10:36:40Z,- Sihemgourou commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-877615346) at 2021-07-10 03:36 AM PDT -Sihemgourou,2021-07-10T10:40:12Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-877615738) at 2021-07-10 03:40 AM PDT -Sihemgourou,2021-07-13T19:44:03Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-879352414) at 2021-07-13 12:44 PM PDT -Sihemgourou,2021-07-14T19:42:31Z,- Sihemgourou opened issue: [1942](https://github.com/hackforla/website/issues/1942) at 2021-07-14 12:42 PM PDT -Sihemgourou,2021-07-14T19:42:44Z,- Sihemgourou assigned to issue: [1942](https://github.com/hackforla/website/issues/1942) at 2021-07-14 12:42 PM PDT -Sihemgourou,2021-07-14T21:15:24Z,- Sihemgourou opened issue: [1943](https://github.com/hackforla/website/issues/1943) at 2021-07-14 02:15 PM PDT -Sihemgourou,2021-07-14T21:17:19Z,- Sihemgourou commented on issue: [1560](https://github.com/hackforla/website/issues/1560#issuecomment-880216205) at 2021-07-14 02:17 PM PDT -Sihemgourou,2021-07-14T21:23:03Z,- Sihemgourou opened issue: [1944](https://github.com/hackforla/website/issues/1944) at 2021-07-14 02:23 PM PDT -Sihemgourou,2021-07-14T21:27:28Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-880222090) at 2021-07-14 02:27 PM PDT -Sihemgourou,2021-07-14T21:27:31Z,- Sihemgourou closed issue as completed: [1500](https://github.com/hackforla/website/issues/1500#event-5022080645) at 2021-07-14 02:27 PM PDT -Sihemgourou,2021-07-14T21:35:13Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-880226081) at 2021-07-14 02:35 PM PDT -Sihemgourou,2021-07-15T11:02:21Z,- Sihemgourou commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-880602740) at 2021-07-15 04:02 AM PDT -Sihemgourou,2021-07-17T10:43:23Z,- Sihemgourou commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-881875023) at 2021-07-17 03:43 AM PDT -Sihemgourou,2021-07-17T10:44:24Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-881875135) at 2021-07-17 03:44 AM PDT -Sihemgourou,2021-07-17T10:45:51Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-881875270) at 2021-07-17 03:45 AM PDT -Sihemgourou,2021-07-17T15:49:14Z,- Sihemgourou commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-881917878) at 2021-07-17 08:49 AM PDT -Sihemgourou,2021-07-18T17:33:21Z,- Sihemgourou commented on issue: [1338](https://github.com/hackforla/website/issues/1338#issuecomment-882092008) at 2021-07-18 10:33 AM PDT -Sihemgourou,2021-07-18T18:46:38Z,- Sihemgourou opened issue: [1968](https://github.com/hackforla/website/issues/1968) at 2021-07-18 11:46 AM PDT -Sihemgourou,2021-07-18T18:54:05Z,- Sihemgourou commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-882101756) at 2021-07-18 11:54 AM PDT -Sihemgourou,2021-07-18T18:59:52Z,- Sihemgourou closed issue as completed: [1849](https://github.com/hackforla/website/issues/1849#event-5035318285) at 2021-07-18 11:59 AM PDT -Sihemgourou,2021-07-18T19:02:29Z,- Sihemgourou commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-882102822) at 2021-07-18 12:02 PM PDT -Sihemgourou,2021-07-18T19:09:42Z,- Sihemgourou opened issue: [1969](https://github.com/hackforla/website/issues/1969) at 2021-07-18 12:09 PM PDT -Sihemgourou,2021-07-18T19:11:38Z,- Sihemgourou commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-882104081) at 2021-07-18 12:11 PM PDT -Sihemgourou,2021-07-19T20:24:11Z,- Sihemgourou opened issue: [1973](https://github.com/hackforla/website/issues/1973) at 2021-07-19 01:24 PM PDT -Sihemgourou,2021-07-19T20:33:32Z,- Sihemgourou opened issue: [1974](https://github.com/hackforla/website/issues/1974) at 2021-07-19 01:33 PM PDT -Sihemgourou,2021-07-19T21:19:13Z,- Sihemgourou opened issue: [1978](https://github.com/hackforla/website/issues/1978) at 2021-07-19 02:19 PM PDT -Sihemgourou,2021-07-20T19:51:18Z,- Sihemgourou commented on issue: [1985](https://github.com/hackforla/website/issues/1985#issuecomment-883651783) at 2021-07-20 12:51 PM PDT -Sihemgourou,2021-07-20T19:56:17Z,- Sihemgourou opened issue: [1988](https://github.com/hackforla/website/issues/1988) at 2021-07-20 12:56 PM PDT -Sihemgourou,2021-07-20T20:16:41Z,- Sihemgourou commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-883666714) at 2021-07-20 01:16 PM PDT -Sihemgourou,2021-07-20T20:22:09Z,- Sihemgourou opened issue: [1989](https://github.com/hackforla/website/issues/1989) at 2021-07-20 01:22 PM PDT -Sihemgourou,2021-07-21T19:41:05Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-07-21 12:41 PM PDT -Sihemgourou,2021-07-25T17:08:52Z,- Sihemgourou assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-884254547) at 2021-07-25 10:08 AM PDT -Sihemgourou,2021-07-26T02:50:51Z,- Sihemgourou unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-07-25 07:50 PM PDT -Sihemgourou,2021-08-01T17:11:18Z,- Sihemgourou commented on issue: [1973](https://github.com/hackforla/website/issues/1973#issuecomment-890556169) at 2021-08-01 10:11 AM PDT -Sihemgourou,2021-08-02T01:31:00Z,- Sihemgourou commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-890645883) at 2021-08-01 06:31 PM PDT -Sihemgourou,2021-08-02T20:40:22Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-891318027) at 2021-08-02 01:40 PM PDT -Sihemgourou,2021-08-03T17:59:40Z,- Sihemgourou closed issue as completed: [1942](https://github.com/hackforla/website/issues/1942#event-5106332042) at 2021-08-03 10:59 AM PDT -Sihemgourou,2021-08-03T18:00:27Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892048780) at 2021-08-03 11:00 AM PDT -Sihemgourou,2021-08-03T18:00:32Z,- Sihemgourou unassigned from issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892048780) at 2021-08-03 11:00 AM PDT -Sihemgourou,2021-08-03T18:08:23Z,- Sihemgourou opened issue: [2040](https://github.com/hackforla/website/issues/2040) at 2021-08-03 11:08 AM PDT -Sihemgourou,2021-08-03T18:08:23Z,- Sihemgourou assigned to issue: [2040](https://github.com/hackforla/website/issues/2040) at 2021-08-03 11:08 AM PDT -Sihemgourou,2021-08-03T18:09:58Z,- Sihemgourou commented on issue: [2026](https://github.com/hackforla/website/issues/2026#issuecomment-892055633) at 2021-08-03 11:09 AM PDT -Sihemgourou,2021-08-05T20:36:38Z,- Sihemgourou reopened issue: [1989](https://github.com/hackforla/website/issues/1989#event-5046484780) at 2021-08-05 01:36 PM PDT -Sihemgourou,2021-08-08T17:17:14Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-894827997) at 2021-08-08 10:17 AM PDT -Sihemgourou,2021-08-08T18:09:29Z,- Sihemgourou commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-894834293) at 2021-08-08 11:09 AM PDT -Sihemgourou,2021-08-08T18:17:06Z,- Sihemgourou commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-894835204) at 2021-08-08 11:17 AM PDT -Sihemgourou,2021-08-08T18:41:05Z,- Sihemgourou closed issue as completed: [2017](https://github.com/hackforla/website/issues/2017#event-5126926772) at 2021-08-08 11:41 AM PDT -Sihemgourou,2021-08-08T19:22:40Z,- Sihemgourou reopened issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-860051447) at 2021-08-08 12:22 PM PDT -Sihemgourou,2021-08-08T19:28:55Z,- Sihemgourou commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-894844098) at 2021-08-08 12:28 PM PDT -Sihemgourou,2021-08-09T21:58:08Z,- Sihemgourou opened issue: [2075](https://github.com/hackforla/website/issues/2075) at 2021-08-09 02:58 PM PDT -Sihemgourou,2021-08-09T22:26:12Z,- Sihemgourou commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-895592398) at 2021-08-09 03:26 PM PDT -Sihemgourou,2021-08-09T22:27:17Z,- Sihemgourou commented on issue: [2000](https://github.com/hackforla/website/issues/2000#issuecomment-895592861) at 2021-08-09 03:27 PM PDT -Sihemgourou,2021-08-09T22:27:31Z,- Sihemgourou closed issue as completed: [2000](https://github.com/hackforla/website/issues/2000#event-5132361847) at 2021-08-09 03:27 PM PDT -Sihemgourou,2021-08-09T22:33:39Z,- Sihemgourou commented on issue: [1948](https://github.com/hackforla/website/issues/1948#issuecomment-895595474) at 2021-08-09 03:33 PM PDT -Sihemgourou,2021-08-09T23:25:31Z,- Sihemgourou opened issue: [2076](https://github.com/hackforla/website/issues/2076) at 2021-08-09 04:25 PM PDT -Sihemgourou,2021-08-09T23:58:20Z,- Sihemgourou commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-895628543) at 2021-08-09 04:58 PM PDT -Sihemgourou,2021-08-10T00:03:17Z,- Sihemgourou commented on issue: [2040](https://github.com/hackforla/website/issues/2040#issuecomment-895630630) at 2021-08-09 05:03 PM PDT -Sihemgourou,2021-08-10T00:06:19Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-895631846) at 2021-08-09 05:06 PM PDT -Sihemgourou,2021-08-10T00:22:38Z,- Sihemgourou commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-895637991) at 2021-08-09 05:22 PM PDT -Sihemgourou,2021-08-10T18:44:46Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-896228404) at 2021-08-10 11:44 AM PDT -Sihemgourou,2021-08-10T18:44:53Z,- Sihemgourou closed issue as completed: [1865](https://github.com/hackforla/website/issues/1865#event-5137135812) at 2021-08-10 11:44 AM PDT -Sihemgourou,2021-08-11T19:43:07Z,- Sihemgourou commented on issue: [2063](https://github.com/hackforla/website/issues/2063#issuecomment-897101452) at 2021-08-11 12:43 PM PDT -Sihemgourou,2021-08-12T20:05:00Z,- Sihemgourou unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -Sihemgourou,2021-08-12T20:48:14Z,- Sihemgourou unassigned from issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-896133763) at 2021-08-12 01:48 PM PDT -Sihemgourou,2021-08-12T20:52:31Z,- Sihemgourou unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-894844098) at 2021-08-12 01:52 PM PDT -Sihemgourou,2021-08-12T20:55:57Z,- Sihemgourou unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-884254547) at 2021-08-12 01:55 PM PDT -Sihemgourou,2021-08-12T21:24:03Z,- Sihemgourou unassigned from issue: [2040](https://github.com/hackforla/website/issues/2040#issuecomment-895630630) at 2021-08-12 02:24 PM PDT -Sihemgourou,2021-08-12T21:38:19Z,- Sihemgourou closed issue as completed: [1916](https://github.com/hackforla/website/issues/1916#event-5152333392) at 2021-08-12 02:38 PM PDT -Sihemgourou,2021-08-12T21:38:29Z,- Sihemgourou closed issue as completed: [1881](https://github.com/hackforla/website/issues/1881#event-5152334004) at 2021-08-12 02:38 PM PDT -Sihemgourou,2021-08-16T18:53:34Z,- Sihemgourou assigned to issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-08-16 11:53 AM PDT -Sihemgourou,2021-09-07T00:11:34Z,- Sihemgourou unassigned from issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-09-06 05:11 PM PDT -Sihemgourou,2021-11-04T23:23:13Z,- Sihemgourou unassigned from issue: [2450](https://github.com/hackforla/website/issues/2450) at 2021-11-04 04:23 PM PDT -sijiapitts,3071,SKILLS ISSUE -sijiapitts,2022-04-20T22:41:30Z,- sijiapitts opened issue: [3071](https://github.com/hackforla/website/issues/3071) at 2022-04-20 03:41 PM PDT -sijiapitts,2022-04-20T22:44:39Z,- sijiapitts assigned to issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1091504315) at 2022-04-20 03:44 PM PDT -sijiapitts,2022-04-20T23:57:51Z,- sijiapitts assigned to issue: [3071](https://github.com/hackforla/website/issues/3071#issuecomment-1104525746) at 2022-04-20 04:57 PM PDT -sijiapitts,2022-04-27T21:58:42Z,- sijiapitts closed issue as completed: [3071](https://github.com/hackforla/website/issues/3071#event-6510424064) at 2022-04-27 02:58 PM PDT -sijiapitts,2022-04-27T22:28:10Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1111541509) at 2022-04-27 03:28 PM PDT -sijiapitts,2022-05-22T17:43:32Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1133941717) at 2022-05-22 10:43 AM PDT -sijiapitts,2022-06-03T17:09:19Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1146187593) at 2022-06-03 10:09 AM PDT -sijiapitts,2022-06-08T22:49:14Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1150489730) at 2022-06-08 03:49 PM PDT -sijiapitts,2022-06-15T22:27:23Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1157012295) at 2022-06-15 03:27 PM PDT -sijiapitts,2022-06-21T22:40:56Z,- sijiapitts opened issue: [3277](https://github.com/hackforla/website/issues/3277) at 2022-06-21 03:40 PM PDT -sijiapitts,2022-06-21T22:40:56Z,- sijiapitts assigned to issue: [3277](https://github.com/hackforla/website/issues/3277) at 2022-06-21 03:40 PM PDT -sijiapitts,2022-06-21T22:45:09Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1162435721) at 2022-06-21 03:45 PM PDT -sijiapitts,2022-06-30T18:11:43Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1171528664) at 2022-06-30 11:11 AM PDT -sijiapitts,2022-07-06T23:13:29Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1176845071) at 2022-07-06 04:13 PM PDT -sijiapitts,2022-07-10T17:51:39Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1179771250) at 2022-07-10 10:51 AM PDT -sijiapitts,2022-07-10T18:06:47Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1179773403) at 2022-07-10 11:06 AM PDT -sijiapitts,2022-08-03T22:38:57Z,- sijiapitts assigned to issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1143258113) at 2022-08-03 03:38 PM PDT -sijiapitts,2022-08-09T22:15:45Z,- sijiapitts commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1209946185) at 2022-08-09 03:15 PM PDT -sijiapitts,2022-09-14T20:51:20Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1247289194) at 2022-09-14 01:51 PM PDT -sijiapitts,2022-10-16T06:54:38Z,- sijiapitts opened issue: [3626](https://github.com/hackforla/website/issues/3626) at 2022-10-15 11:54 PM PDT -sijiapitts,2022-10-16T06:54:54Z,- sijiapitts assigned to issue: [3626](https://github.com/hackforla/website/issues/3626) at 2022-10-15 11:54 PM PDT -sijiapitts,2022-10-16T07:06:40Z,- sijiapitts opened issue: [3627](https://github.com/hackforla/website/issues/3627) at 2022-10-16 12:06 AM PDT -sijiapitts,2022-10-16T07:13:45Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1279909420) at 2022-10-16 12:13 AM PDT -sijiapitts,2022-10-16T07:14:43Z,- sijiapitts closed issue as completed: [3277](https://github.com/hackforla/website/issues/3277#event-7595975450) at 2022-10-16 12:14 AM PDT -sijiapitts,2022-10-26T00:59:17Z,- sijiapitts opened issue: [3661](https://github.com/hackforla/website/issues/3661) at 2022-10-25 05:59 PM PDT -sijiapitts,2022-10-26T00:59:58Z,- sijiapitts assigned to issue: [3661](https://github.com/hackforla/website/issues/3661) at 2022-10-25 05:59 PM PDT -sijiapitts,2022-10-26T06:12:57Z,- sijiapitts commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1291551411) at 2022-10-25 11:12 PM PDT -sijiapitts,2022-10-28T18:42:34Z,- sijiapitts commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1295335458) at 2022-10-28 11:42 AM PDT -sijiapitts,2022-10-30T21:44:50Z,- sijiapitts commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1296357545) at 2022-10-30 02:44 PM PDT -sijiapitts,2022-10-30T21:45:41Z,- sijiapitts closed issue as completed: [3626](https://github.com/hackforla/website/issues/3626#event-7699817026) at 2022-10-30 02:45 PM PDT -sijiapitts,2022-11-10T17:22:22Z,- sijiapitts commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1310632591) at 2022-11-10 09:22 AM PST -sijiapitts,2022-11-10T17:24:17Z,- sijiapitts commented on issue: [1878](https://github.com/hackforla/website/issues/1878#issuecomment-1310635547) at 2022-11-10 09:24 AM PST -sijiapitts,2022-11-17T00:37:46Z,- sijiapitts commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1317879586) at 2022-11-16 04:37 PM PST -sijiapitts,2022-11-17T00:37:51Z,- sijiapitts unassigned from issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1317879586) at 2022-11-16 04:37 PM PST -sijiapitts,2023-01-24T05:47:10Z,- sijiapitts assigned to issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1321212365) at 2023-01-23 09:47 PM PST -sijiapitts,2023-02-16T07:37:31Z,- sijiapitts commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1432648106) at 2023-02-15 11:37 PM PST -sijiapitts,2023-06-27T01:42:20Z,- sijiapitts unassigned from issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1495143197) at 2023-06-26 06:42 PM PDT -sisi-in-tech,4982,SKILLS ISSUE -sisi-in-tech,2023-07-18T01:57:32Z,- sisi-in-tech opened issue: [4982](https://github.com/hackforla/website/issues/4982) at 2023-07-17 06:57 PM PDT -sisi-in-tech,2023-07-18T03:02:17Z,- sisi-in-tech assigned to issue: [4982](https://github.com/hackforla/website/issues/4982) at 2023-07-17 08:02 PM PDT -sisi-in-tech,2023-07-28T18:18:40Z,- sisi-in-tech assigned to issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-28 11:18 AM PDT -sisi-in-tech,2023-07-28T23:47:40Z,- sisi-in-tech commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1656470347) at 2023-07-28 04:47 PM PDT -sisi-in-tech,2023-07-31T19:41:48Z,- sisi-in-tech opened pull request: [5120](https://github.com/hackforla/website/pull/5120) at 2023-07-31 12:41 PM PDT -sisi-in-tech,2023-07-31T20:08:09Z,- sisi-in-tech commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659059194) at 2023-07-31 01:08 PM PDT -sisi-in-tech,2023-07-31T20:56:21Z,- sisi-in-tech commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659149384) at 2023-07-31 01:56 PM PDT -sisi-in-tech,2023-07-31T21:08:48Z,- sisi-in-tech commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659164761) at 2023-07-31 02:08 PM PDT -sisi-in-tech,2023-08-04T17:07:34Z,- sisi-in-tech commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1665932334) at 2023-08-04 10:07 AM PDT -sisi-in-tech,2023-08-05T05:38:52Z,- sisi-in-tech commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1666398937) at 2023-08-04 10:38 PM PDT -sisi-in-tech,2023-08-06T15:15:28Z,- sisi-in-tech pull request merged: [5120](https://github.com/hackforla/website/pull/5120#event-10017488858) at 2023-08-06 08:15 AM PDT -Six5pAdes,7925,SKILLS ISSUE -Six5pAdes,2025-02-19T03:47:41Z,- Six5pAdes opened issue: [7925](https://github.com/hackforla/website/issues/7925) at 2025-02-18 07:47 PM PST -Six5pAdes,2025-02-19T03:47:47Z,- Six5pAdes assigned to issue: [7925](https://github.com/hackforla/website/issues/7925) at 2025-02-18 07:47 PM PST -Six5pAdes,2025-02-24T22:45:24Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2679843957) at 2025-02-24 02:45 PM PST -Six5pAdes,2025-02-24T22:46:55Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2679848964) at 2025-02-24 02:46 PM PST -Six5pAdes,2025-02-25T17:55:37Z,- Six5pAdes assigned to issue: [7848](https://github.com/hackforla/website/issues/7848) at 2025-02-25 09:55 AM PST -Six5pAdes,2025-02-25T18:15:17Z,- Six5pAdes unassigned from issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2682859582) at 2025-02-25 10:15 AM PST -Six5pAdes,2025-02-25T18:17:34Z,- Six5pAdes assigned to issue: [7849](https://github.com/hackforla/website/issues/7849#event-16359034010) at 2025-02-25 10:17 AM PST -Six5pAdes,2025-02-25T18:30:15Z,- Six5pAdes commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2682935770) at 2025-02-25 10:30 AM PST -Six5pAdes,2025-02-25T18:44:34Z,- Six5pAdes opened pull request: [7947](https://github.com/hackforla/website/pull/7947) at 2025-02-25 10:44 AM PST -Six5pAdes,2025-02-25T18:45:03Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2682966183) at 2025-02-25 10:45 AM PST -Six5pAdes,2025-02-25T18:46:15Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2682968540) at 2025-02-25 10:46 AM PST -Six5pAdes,2025-02-28T18:37:38Z,- Six5pAdes pull request merged: [7947](https://github.com/hackforla/website/pull/7947#event-16516532210) at 2025-02-28 10:37 AM PST -Six5pAdes,2025-02-28T20:20:14Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2691479870) at 2025-02-28 12:20 PM PST -Six5pAdes,2025-03-04T22:19:39Z,- Six5pAdes assigned to issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2446428278) at 2025-03-04 02:19 PM PST -Six5pAdes,2025-03-04T22:43:38Z,- Six5pAdes commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2699146132) at 2025-03-04 02:43 PM PST -Six5pAdes,2025-03-04T22:52:48Z,- Six5pAdes opened pull request: [7980](https://github.com/hackforla/website/pull/7980) at 2025-03-04 02:52 PM PST -Six5pAdes,2025-03-06T23:40:30Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2705180281) at 2025-03-06 03:40 PM PST -Six5pAdes,2025-03-07T01:10:18Z,- Six5pAdes pull request merged: [7980](https://github.com/hackforla/website/pull/7980#event-16625251513) at 2025-03-06 05:10 PM PST -Six5pAdes,2025-03-11T18:45:54Z,- Six5pAdes commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2715388276) at 2025-03-11 11:45 AM PDT -Six5pAdes,2025-03-11T19:40:54Z,- Six5pAdes submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2675905847) at 2025-03-11 12:40 PM PDT -Six5pAdes,2025-03-11T23:25:35Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2715946909) at 2025-03-11 04:25 PM PDT -Six5pAdes,2025-03-11T23:26:38Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2715948048) at 2025-03-11 04:26 PM PDT -Six5pAdes,2025-03-12T20:05:50Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2718976215) at 2025-03-12 01:05 PM PDT -Six5pAdes,2025-03-16T19:37:40Z,- Six5pAdes submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2688777824) at 2025-03-16 12:37 PM PDT -Six5pAdes,2025-03-16T21:45:32Z,- Six5pAdes submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2688818692) at 2025-03-16 02:45 PM PDT -Six5pAdes,2025-03-19T22:25:05Z,- Six5pAdes assigned to issue: [7450](https://github.com/hackforla/website/issues/7450) at 2025-03-19 03:25 PM PDT -Six5pAdes,2025-03-24T20:26:31Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2749314508) at 2025-03-24 01:26 PM PDT -Six5pAdes,2025-03-24T22:30:11Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2749543112) at 2025-03-24 03:30 PM PDT -Six5pAdes,2025-03-24T22:35:44Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2749550511) at 2025-03-24 03:35 PM PDT -Six5pAdes,2025-04-08T21:51:49Z,- Six5pAdes commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2787743238) at 2025-04-08 02:51 PM PDT -Six5pAdes,2025-04-08T21:51:49Z,- Six5pAdes commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2787743238) at 2025-04-08 02:51 PM PDT -Six5pAdes,2025-04-08T22:29:28Z,- Six5pAdes submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751543504) at 2025-04-08 03:29 PM PDT -Six5pAdes,2025-04-08T22:29:28Z,- Six5pAdes submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751543504) at 2025-04-08 03:29 PM PDT -Six5pAdes,2025-04-08T22:32:56Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2787798919) at 2025-04-08 03:32 PM PDT -Six5pAdes,2025-04-11T16:59:09Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2797493128) at 2025-04-11 09:59 AM PDT -Six5pAdes,2025-04-22T23:43:45Z,- Six5pAdes assigned to issue: [7590](https://github.com/hackforla/website/issues/7590) at 2025-04-22 04:43 PM PDT -Six5pAdes,2025-04-22T23:59:58Z,- Six5pAdes opened issue: [8084](https://github.com/hackforla/website/issues/8084) at 2025-04-22 04:59 PM PDT -Six5pAdes,2025-04-23T00:06:50Z,- Six5pAdes commented on issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822748832) at 2025-04-22 05:06 PM PDT -Six5pAdes,2025-04-23T00:10:25Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2822753121) at 2025-04-22 05:10 PM PDT -Six5pAdes,2025-04-24T18:11:28Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2828487300) at 2025-04-24 11:11 AM PDT -Six5pAdes,2025-05-02T15:46:30Z,- Six5pAdes commented on pull request: [8107](https://github.com/hackforla/website/pull/8107#issuecomment-2847552111) at 2025-05-02 08:46 AM PDT -Six5pAdes,2025-05-02T16:30:45Z,- Six5pAdes commented on pull request: [8107](https://github.com/hackforla/website/pull/8107#issuecomment-2847638427) at 2025-05-02 09:30 AM PDT -Six5pAdes,2025-05-02T16:31:16Z,- Six5pAdes submitted pull request review: [8107](https://github.com/hackforla/website/pull/8107#pullrequestreview-2812439890) at 2025-05-02 09:31 AM PDT -Six5pAdes,2025-05-02T16:31:38Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2847639964) at 2025-05-02 09:31 AM PDT -Six5pAdes,2025-05-21T23:18:10Z,- Six5pAdes assigned to issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2695964353) at 2025-05-21 04:18 PM PDT -Six5pAdes,2025-05-21T23:18:27Z,- Six5pAdes unassigned from issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2899482311) at 2025-05-21 04:18 PM PDT -Six5pAdes,2025-05-21T23:29:45Z,- Six5pAdes unassigned from issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822748832) at 2025-05-21 04:29 PM PDT -Six5pAdes,2025-05-21T23:31:24Z,- Six5pAdes assigned to issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822748832) at 2025-05-21 04:31 PM PDT -Six5pAdes,2025-05-21T23:37:17Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2899506240) at 2025-05-21 04:37 PM PDT -siyunfeng,7575,SKILLS ISSUE -siyunfeng,2024-10-08T03:43:19Z,- siyunfeng opened issue: [7575](https://github.com/hackforla/website/issues/7575) at 2024-10-07 08:43 PM PDT -siyunfeng,2024-10-08T03:45:01Z,- siyunfeng assigned to issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2398735813) at 2024-10-07 08:45 PM PDT -siyunfeng,2024-10-08T20:38:22Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2400777153) at 2024-10-08 01:38 PM PDT -siyunfeng,2024-10-09T02:08:40Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2401129990) at 2024-10-08 07:08 PM PDT -siyunfeng,2024-10-09T21:04:32Z,- siyunfeng assigned to issue: [7555](https://github.com/hackforla/website/issues/7555) at 2024-10-09 02:04 PM PDT -siyunfeng,2024-10-10T01:06:01Z,- siyunfeng opened pull request: [7579](https://github.com/hackforla/website/pull/7579) at 2024-10-09 06:06 PM PDT -siyunfeng,2024-10-10T01:08:33Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2403697240) at 2024-10-09 06:08 PM PDT -siyunfeng,2024-10-10T21:19:28Z,- siyunfeng commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2406057019) at 2024-10-10 02:19 PM PDT -siyunfeng,2024-10-10T21:52:51Z,- siyunfeng commented on issue: [7555](https://github.com/hackforla/website/issues/7555#issuecomment-2406105420) at 2024-10-10 02:52 PM PDT -siyunfeng,2024-10-10T21:54:58Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2406108065) at 2024-10-10 02:54 PM PDT -siyunfeng,2024-10-11T02:18:08Z,- siyunfeng commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2406408457) at 2024-10-10 07:18 PM PDT -siyunfeng,2024-10-12T23:18:13Z,- siyunfeng commented on issue: [7555](https://github.com/hackforla/website/issues/7555#issuecomment-2408741842) at 2024-10-12 04:18 PM PDT -siyunfeng,2024-10-12T23:18:29Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2408741910) at 2024-10-12 04:18 PM PDT -siyunfeng,2024-10-13T18:24:16Z,- siyunfeng pull request merged: [7579](https://github.com/hackforla/website/pull/7579#event-14620289930) at 2024-10-13 11:24 AM PDT -siyunfeng,2024-10-13T20:47:30Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2409119710) at 2024-10-13 01:47 PM PDT -siyunfeng,2024-10-13T21:12:14Z,- siyunfeng assigned to issue: [7477](https://github.com/hackforla/website/issues/7477) at 2024-10-13 02:12 PM PDT -siyunfeng,2024-10-13T21:27:54Z,- siyunfeng commented on issue: [7477](https://github.com/hackforla/website/issues/7477#issuecomment-2409137949) at 2024-10-13 02:27 PM PDT -siyunfeng,2024-10-13T21:40:15Z,- siyunfeng opened pull request: [7588](https://github.com/hackforla/website/pull/7588) at 2024-10-13 02:40 PM PDT -siyunfeng,2024-10-15T02:00:56Z,- siyunfeng pull request merged: [7588](https://github.com/hackforla/website/pull/7588#event-14649328378) at 2024-10-14 07:00 PM PDT -siyunfeng,2024-10-15T18:31:33Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2414732653) at 2024-10-15 11:31 AM PDT -siyunfeng,2024-10-15T21:47:05Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2415224175) at 2024-10-15 02:47 PM PDT -siyunfeng,2024-10-16T03:09:13Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2415633321) at 2024-10-15 08:09 PM PDT -siyunfeng,2024-10-16T20:49:54Z,- siyunfeng commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2417936608) at 2024-10-16 01:49 PM PDT -siyunfeng,2024-10-16T22:55:02Z,- siyunfeng commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2418103887) at 2024-10-16 03:55 PM PDT -siyunfeng,2024-10-17T06:16:43Z,- siyunfeng submitted pull request review: [7598](https://github.com/hackforla/website/pull/7598#pullrequestreview-2374252419) at 2024-10-16 11:16 PM PDT -siyunfeng,2024-10-17T06:20:28Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2418624607) at 2024-10-16 11:20 PM PDT -siyunfeng,2024-10-17T20:11:56Z,- siyunfeng assigned to issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2362570168) at 2024-10-17 01:11 PM PDT -siyunfeng,2024-10-17T20:14:49Z,- siyunfeng commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2420469974) at 2024-10-17 01:14 PM PDT -siyunfeng,2024-10-18T23:42:27Z,- siyunfeng commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2423376770) at 2024-10-18 04:42 PM PDT -siyunfeng,2024-10-21T18:48:52Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2427469793) at 2024-10-21 11:48 AM PDT -siyunfeng,2024-10-21T19:34:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2427557269) at 2024-10-21 12:34 PM PDT -siyunfeng,2024-10-21T20:08:41Z,- siyunfeng commented on pull request: [7599](https://github.com/hackforla/website/pull/7599#issuecomment-2427620470) at 2024-10-21 01:08 PM PDT -siyunfeng,2024-10-21T20:43:50Z,- siyunfeng submitted pull request review: [7599](https://github.com/hackforla/website/pull/7599#pullrequestreview-2383271432) at 2024-10-21 01:43 PM PDT -siyunfeng,2024-10-21T20:46:10Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2427685817) at 2024-10-21 01:46 PM PDT -siyunfeng,2024-10-21T21:00:49Z,- siyunfeng assigned to issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2297386212) at 2024-10-21 02:00 PM PDT -siyunfeng,2024-10-21T21:04:54Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2427716479) at 2024-10-21 02:04 PM PDT -siyunfeng,2024-10-22T03:59:25Z,- siyunfeng opened issue: [7619](https://github.com/hackforla/website/issues/7619) at 2024-10-21 08:59 PM PDT -siyunfeng,2024-10-22T04:04:23Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2428182592) at 2024-10-21 09:04 PM PDT -siyunfeng,2024-10-22T04:13:39Z,- siyunfeng opened issue: [7620](https://github.com/hackforla/website/issues/7620) at 2024-10-21 09:13 PM PDT -siyunfeng,2024-10-22T04:20:00Z,- siyunfeng opened issue: [7621](https://github.com/hackforla/website/issues/7621) at 2024-10-21 09:20 PM PDT -siyunfeng,2024-10-22T22:21:15Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2430425129) at 2024-10-22 03:21 PM PDT -siyunfeng,2024-10-23T06:03:41Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2430987452) at 2024-10-22 11:03 PM PDT -siyunfeng,2024-10-23T18:47:20Z,- siyunfeng commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2433163019) at 2024-10-23 11:47 AM PDT -siyunfeng,2024-10-23T19:38:16Z,- siyunfeng submitted pull request review: [7628](https://github.com/hackforla/website/pull/7628#pullrequestreview-2390003335) at 2024-10-23 12:38 PM PDT -siyunfeng,2024-10-24T06:27:13Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2434405242) at 2024-10-23 11:27 PM PDT -siyunfeng,2024-10-24T06:44:28Z,- siyunfeng assigned to issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-23 11:44 PM PDT -siyunfeng,2024-10-24T06:44:41Z,- siyunfeng unassigned from issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2434430602) at 2024-10-23 11:44 PM PDT -siyunfeng,2024-10-25T18:23:05Z,- siyunfeng commented on pull request: [7634](https://github.com/hackforla/website/pull/7634#issuecomment-2438543672) at 2024-10-25 11:23 AM PDT -siyunfeng,2024-10-25T18:35:32Z,- siyunfeng submitted pull request review: [7634](https://github.com/hackforla/website/pull/7634#pullrequestreview-2396153888) at 2024-10-25 11:35 AM PDT -siyunfeng,2024-10-26T19:47:27Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2439717039) at 2024-10-26 12:47 PM PDT -siyunfeng,2024-10-26T21:17:19Z,- siyunfeng commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2439739187) at 2024-10-26 02:17 PM PDT -siyunfeng,2024-10-26T21:42:51Z,- siyunfeng submitted pull request review: [7639](https://github.com/hackforla/website/pull/7639#pullrequestreview-2397364227) at 2024-10-26 02:42 PM PDT -siyunfeng,2024-10-28T21:32:40Z,- siyunfeng commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442673348) at 2024-10-28 02:32 PM PDT -siyunfeng,2024-10-28T21:34:41Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2442676319) at 2024-10-28 02:34 PM PDT -siyunfeng,2024-10-28T21:39:28Z,- siyunfeng assigned to issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2434430602) at 2024-10-28 02:39 PM PDT -siyunfeng,2024-10-28T21:41:27Z,- siyunfeng commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2442686715) at 2024-10-28 02:41 PM PDT -siyunfeng,2024-10-28T23:02:44Z,- siyunfeng opened pull request: [7656](https://github.com/hackforla/website/pull/7656) at 2024-10-28 04:02 PM PDT -siyunfeng,2024-10-29T03:34:01Z,- siyunfeng commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2443129929) at 2024-10-28 08:34 PM PDT -siyunfeng,2024-10-29T04:53:53Z,- siyunfeng submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2400713907) at 2024-10-28 09:53 PM PDT -siyunfeng,2024-10-29T06:59:39Z,- siyunfeng commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2443361166) at 2024-10-28 11:59 PM PDT -siyunfeng,2024-10-30T20:38:26Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2448328245) at 2024-10-30 01:38 PM PDT -siyunfeng,2024-10-31T06:04:34Z,- siyunfeng commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2449065099) at 2024-10-30 11:04 PM PDT -siyunfeng,2024-10-31T22:30:27Z,- siyunfeng pull request merged: [7656](https://github.com/hackforla/website/pull/7656#event-15049318273) at 2024-10-31 03:30 PM PDT -siyunfeng,2024-10-31T23:12:32Z,- siyunfeng commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2451001475) at 2024-10-31 04:12 PM PDT -siyunfeng,2024-10-31T23:15:10Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2451003862) at 2024-10-31 04:15 PM PDT -siyunfeng,2024-11-01T04:34:55Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2451278204) at 2024-10-31 09:34 PM PDT -siyunfeng,2024-11-01T05:15:42Z,- siyunfeng submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2409480214) at 2024-10-31 10:15 PM PDT -siyunfeng,2024-11-01T05:25:50Z,- siyunfeng commented on pull request: [7665](https://github.com/hackforla/website/pull/7665#issuecomment-2451316409) at 2024-10-31 10:25 PM PDT -siyunfeng,2024-11-01T05:48:26Z,- siyunfeng submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2409503586) at 2024-10-31 10:48 PM PDT -siyunfeng,2024-11-03T07:55:42Z,- siyunfeng commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453333185) at 2024-11-02 11:55 PM PST -siyunfeng,2024-11-03T09:25:25Z,- siyunfeng submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2411803041) at 2024-11-03 01:25 AM PST -siyunfeng,2024-11-04T00:50:07Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2453658945) at 2024-11-03 04:50 PM PST -siyunfeng,2024-11-04T00:51:47Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2453659989) at 2024-11-03 04:51 PM PST -siyunfeng,2024-11-04T02:14:00Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2453712166) at 2024-11-03 06:14 PM PST -siyunfeng,2024-11-04T20:00:02Z,- siyunfeng commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455589918) at 2024-11-04 12:00 PM PST -siyunfeng,2024-11-04T20:02:27Z,- siyunfeng submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2414004047) at 2024-11-04 12:02 PM PST -siyunfeng,2024-11-04T20:13:50Z,- siyunfeng submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2414026031) at 2024-11-04 12:13 PM PST -siyunfeng,2024-11-04T20:23:30Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2455629875) at 2024-11-04 12:23 PM PST -siyunfeng,2024-11-05T06:47:28Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2456368677) at 2024-11-04 10:47 PM PST -siyunfeng,2024-11-05T18:15:41Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2457864666) at 2024-11-05 10:15 AM PST -siyunfeng,2024-11-05T20:39:50Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458111465) at 2024-11-05 12:39 PM PST -siyunfeng,2024-11-05T21:51:30Z,- siyunfeng submitted pull request review: [7700](https://github.com/hackforla/website/pull/7700#pullrequestreview-2416765564) at 2024-11-05 01:51 PM PST -siyunfeng,2024-11-05T21:54:16Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458221789) at 2024-11-05 01:54 PM PST -siyunfeng,2024-11-05T23:15:12Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458387578) at 2024-11-05 03:15 PM PST -siyunfeng,2024-11-05T23:21:31Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2458394078) at 2024-11-05 03:21 PM PST -siyunfeng,2024-11-06T20:37:05Z,- siyunfeng commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460729640) at 2024-11-06 12:37 PM PST -siyunfeng,2024-11-06T21:11:41Z,- siyunfeng submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2419428132) at 2024-11-06 01:11 PM PST -siyunfeng,2024-11-06T21:14:36Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2460796423) at 2024-11-06 01:14 PM PST -siyunfeng,2024-11-06T22:50:35Z,- siyunfeng commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460952322) at 2024-11-06 02:50 PM PST -siyunfeng,2024-11-07T02:26:56Z,- siyunfeng submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2419810657) at 2024-11-06 06:26 PM PST -siyunfeng,2024-11-07T02:31:03Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2461189761) at 2024-11-06 06:31 PM PST -siyunfeng,2024-11-08T19:38:05Z,- siyunfeng assigned to issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2130375061) at 2024-11-08 11:38 AM PST -siyunfeng,2024-11-08T20:38:38Z,- siyunfeng submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2424882947) at 2024-11-08 12:38 PM PST -siyunfeng,2024-11-08T20:50:49Z,- siyunfeng submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2424898546) at 2024-11-08 12:50 PM PST -siyunfeng,2024-11-08T22:35:25Z,- siyunfeng commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2465854406) at 2024-11-08 02:35 PM PST -siyunfeng,2024-11-09T05:26:16Z,- siyunfeng commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2466058828) at 2024-11-08 09:26 PM PST -siyunfeng,2024-11-11T02:33:19Z,- siyunfeng commented on pull request: [7715](https://github.com/hackforla/website/pull/7715#issuecomment-2467115070) at 2024-11-10 06:33 PM PST -siyunfeng,2024-11-11T02:49:01Z,- siyunfeng submitted pull request review: [7715](https://github.com/hackforla/website/pull/7715#pullrequestreview-2426021074) at 2024-11-10 06:49 PM PST -siyunfeng,2024-11-11T02:51:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2467130155) at 2024-11-10 06:51 PM PST -siyunfeng,2024-11-11T02:54:29Z,- siyunfeng commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2467132213) at 2024-11-10 06:54 PM PST -siyunfeng,2024-11-11T23:14:55Z,- siyunfeng submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2428309608) at 2024-11-11 03:14 PM PST -siyunfeng,2024-11-11T23:16:46Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2469267587) at 2024-11-11 03:16 PM PST -siyunfeng,2024-11-13T04:10:56Z,- siyunfeng commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2472334290) at 2024-11-12 08:10 PM PST -siyunfeng,2024-11-13T04:18:52Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2472341284) at 2024-11-12 08:18 PM PST -siyunfeng,2024-11-14T00:48:38Z,- siyunfeng assigned to issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2058018157) at 2024-11-13 04:48 PM PST -siyunfeng,2024-11-14T00:49:59Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2475122571) at 2024-11-13 04:49 PM PST -siyunfeng,2024-11-14T04:03:14Z,- siyunfeng commented on pull request: [7719](https://github.com/hackforla/website/pull/7719#issuecomment-2475367293) at 2024-11-13 08:03 PM PST -siyunfeng,2024-11-14T04:05:39Z,- siyunfeng commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2475369900) at 2024-11-13 08:05 PM PST -siyunfeng,2024-11-14T20:53:05Z,- siyunfeng submitted pull request review: [7718](https://github.com/hackforla/website/pull/7718#pullrequestreview-2437178682) at 2024-11-14 12:53 PM PST -siyunfeng,2024-11-14T21:00:40Z,- siyunfeng commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2477400533) at 2024-11-14 01:00 PM PST -siyunfeng,2024-11-14T21:09:37Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2477414013) at 2024-11-14 01:09 PM PST -siyunfeng,2024-11-14T21:11:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2477417685) at 2024-11-14 01:11 PM PST -siyunfeng,2024-11-14T22:11:08Z,- siyunfeng submitted pull request review: [7719](https://github.com/hackforla/website/pull/7719#pullrequestreview-2437299396) at 2024-11-14 02:11 PM PST -siyunfeng,2024-11-14T22:13:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2477512257) at 2024-11-14 02:13 PM PST -siyunfeng,2024-11-15T00:18:27Z,- siyunfeng submitted pull request review: [7718](https://github.com/hackforla/website/pull/7718#pullrequestreview-2437436349) at 2024-11-14 04:18 PM PST -siyunfeng,2024-11-15T07:15:57Z,- siyunfeng commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2478112724) at 2024-11-14 11:15 PM PST -siyunfeng,2024-11-15T23:55:10Z,- siyunfeng opened issue: [7722](https://github.com/hackforla/website/issues/7722) at 2024-11-15 03:55 PM PST -siyunfeng,2024-11-16T00:03:08Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2480174164) at 2024-11-15 04:03 PM PST -siyunfeng,2024-11-16T00:34:44Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2480226165) at 2024-11-15 04:34 PM PST -siyunfeng,2024-11-16T04:17:44Z,- siyunfeng submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2440293764) at 2024-11-15 08:17 PM PST -siyunfeng,2024-11-18T22:01:16Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2484222417) at 2024-11-18 02:01 PM PST -siyunfeng,2024-11-20T03:44:05Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2487288334) at 2024-11-19 07:44 PM PST -siyunfeng,2024-11-21T01:27:52Z,- siyunfeng commented on pull request: [7744](https://github.com/hackforla/website/pull/7744#issuecomment-2489877841) at 2024-11-20 05:27 PM PST -siyunfeng,2024-11-21T01:40:03Z,- siyunfeng submitted pull request review: [7744](https://github.com/hackforla/website/pull/7744#pullrequestreview-2450046850) at 2024-11-20 05:40 PM PST -siyunfeng,2024-11-21T01:42:18Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2489891903) at 2024-11-20 05:42 PM PST -siyunfeng,2024-11-21T21:25:16Z,- siyunfeng commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2492369205) at 2024-11-21 01:25 PM PST -siyunfeng,2024-11-22T22:21:14Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2494968923) at 2024-11-22 02:21 PM PST -siyunfeng,2024-11-23T18:07:07Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2495568348) at 2024-11-23 10:07 AM PST -siyunfeng,2024-11-23T18:08:12Z,- siyunfeng commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2495571861) at 2024-11-23 10:08 AM PST -siyunfeng,2024-11-24T02:10:44Z,- siyunfeng commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2495755284) at 2024-11-23 06:10 PM PST -siyunfeng,2024-11-25T03:51:49Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2496635983) at 2024-11-24 07:51 PM PST -siyunfeng,2024-11-26T02:45:00Z,- siyunfeng commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2499534120) at 2024-11-25 06:45 PM PST -siyunfeng,2024-11-26T03:04:17Z,- siyunfeng submitted pull request review: [7748](https://github.com/hackforla/website/pull/7748#pullrequestreview-2460197768) at 2024-11-25 07:04 PM PST -siyunfeng,2024-11-26T03:06:12Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2499554731) at 2024-11-25 07:06 PM PST -siyunfeng,2024-11-27T04:10:18Z,- siyunfeng assigned to issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2148567579) at 2024-11-26 08:10 PM PST -siyunfeng,2024-11-30T08:53:33Z,- siyunfeng commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2508891769) at 2024-11-30 12:53 AM PST -siyunfeng,2024-12-02T01:21:34Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2510373136) at 2024-12-01 05:21 PM PST -siyunfeng,2024-12-02T22:06:47Z,- siyunfeng commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2513041040) at 2024-12-02 02:06 PM PST -siyunfeng,2024-12-02T22:10:20Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2513049399) at 2024-12-02 02:10 PM PST -siyunfeng,2024-12-05T02:16:53Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2518940290) at 2024-12-04 06:16 PM PST -siyunfeng,2024-12-07T03:13:39Z,- siyunfeng commented on pull request: [7791](https://github.com/hackforla/website/pull/7791#issuecomment-2524834080) at 2024-12-06 07:13 PM PST -siyunfeng,2024-12-07T03:30:24Z,- siyunfeng submitted pull request review: [7791](https://github.com/hackforla/website/pull/7791#pullrequestreview-2486283318) at 2024-12-06 07:30 PM PST -siyunfeng,2024-12-07T04:07:42Z,- siyunfeng commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2524857011) at 2024-12-06 08:07 PM PST -siyunfeng,2024-12-10T05:51:17Z,- siyunfeng closed issue by PR 7798: [7731](https://github.com/hackforla/website/issues/7731#event-15595054541) at 2024-12-09 09:51 PM PST -siyunfeng,2024-12-10T05:59:09Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2530517745) at 2024-12-09 09:59 PM PST -siyunfeng,2024-12-12T04:26:19Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2537786990) at 2024-12-11 08:26 PM PST -siyunfeng,2024-12-12T21:20:38Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2540035820) at 2024-12-12 01:20 PM PST -siyunfeng,2024-12-18T06:14:59Z,- siyunfeng closed issue by PR 7803: [7722](https://github.com/hackforla/website/issues/7722#event-15698105945) at 2024-12-17 10:14 PM PST -siyunfeng,2025-01-14T01:06:38Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2588540183) at 2025-01-13 05:06 PM PST -siyunfeng,2025-01-20T09:49:05Z,- siyunfeng commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2601921517) at 2025-01-20 01:49 AM PST -siyunfeng,2025-01-25T04:50:28Z,- siyunfeng commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2613779745) at 2025-01-24 08:50 PM PST -siyunfeng,2025-01-25T04:58:46Z,- siyunfeng commented on pull request: [7846](https://github.com/hackforla/website/pull/7846#issuecomment-2613781643) at 2025-01-24 08:58 PM PST -siyunfeng,2025-01-29T04:08:03Z,- siyunfeng commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2620680349) at 2025-01-28 08:08 PM PST -siyunfeng,2025-01-29T04:15:25Z,- siyunfeng commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2620686268) at 2025-01-28 08:15 PM PST -siyunfeng,2025-01-29T10:39:19Z,- siyunfeng closed issue by PR 7840: [7752](https://github.com/hackforla/website/issues/7752#event-16105869179) at 2025-01-29 02:39 AM PST -siyunfeng,2025-01-30T06:32:36Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2623628068) at 2025-01-29 10:32 PM PST -siyunfeng,2025-02-26T19:45:04Z,- siyunfeng commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2686031266) at 2025-02-26 11:45 AM PST -siyunfeng,2025-02-26T19:48:23Z,- siyunfeng commented on issue: [7484](https://github.com/hackforla/website/issues/7484#issuecomment-2686038468) at 2025-02-26 11:48 AM PST -siyunfeng,2025-02-28T16:00:28Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2691012267) at 2025-02-28 08:00 AM PST -siyunfeng,2025-03-06T21:19:56Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2704966148) at 2025-03-06 01:19 PM PST -siyunfeng,2025-03-07T16:49:24Z,- siyunfeng opened pull request: [7984](https://github.com/hackforla/website/pull/7984) at 2025-03-07 08:49 AM PST -siyunfeng,2025-03-07T16:58:18Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2706954040) at 2025-03-07 08:58 AM PST -siyunfeng,2025-03-11T21:12:30Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2715719409) at 2025-03-11 02:12 PM PDT -siyunfeng,2025-03-11T21:14:52Z,- siyunfeng commented on pull request: [7984](https://github.com/hackforla/website/pull/7984#issuecomment-2715723574) at 2025-03-11 02:14 PM PDT -siyunfeng,2025-03-12T21:02:21Z,- siyunfeng opened issue: [7988](https://github.com/hackforla/website/issues/7988) at 2025-03-12 02:02 PM PDT -siyunfeng,2025-03-13T03:23:47Z,- siyunfeng pull request closed w/o merging: [7984](https://github.com/hackforla/website/pull/7984#event-16724305147) at 2025-03-12 08:23 PM PDT -siyunfeng,2025-03-13T20:26:03Z,- siyunfeng closed issue by PR 7986: [7938](https://github.com/hackforla/website/issues/7938#event-16749152973) at 2025-03-13 01:26 PM PDT -siyunfeng,2025-03-13T20:41:35Z,- siyunfeng commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2722645433) at 2025-03-13 01:41 PM PDT -siyunfeng,2025-03-14T20:19:27Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2725665414) at 2025-03-14 01:19 PM PDT -siyunfeng,2025-03-14T20:50:08Z,- siyunfeng commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2725720991) at 2025-03-14 01:50 PM PDT -siyunfeng,2025-03-14T22:20:31Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2725899999) at 2025-03-14 03:20 PM PDT -siyunfeng,2025-03-17T19:37:23Z,- siyunfeng commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2730628174) at 2025-03-17 12:37 PM PDT -siyunfeng,2025-03-17T19:37:42Z,- siyunfeng closed issue by PR 7989: [7475](https://github.com/hackforla/website/issues/7475#event-16813261008) at 2025-03-17 12:37 PM PDT -Sk-223,4721,SKILLS ISSUE -Sk-223,7633,SKILLS ISSUE -Sk-223,2023-05-24T03:21:19Z,- Sk-223 opened issue: [4721](https://github.com/hackforla/website/issues/4721) at 2023-05-23 08:21 PM PDT -Sk-223,2023-05-24T03:21:48Z,- Sk-223 assigned to issue: [4721](https://github.com/hackforla/website/issues/4721) at 2023-05-23 08:21 PM PDT -Sk-223,2023-05-27T18:45:16Z,- Sk-223 assigned to issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565101261) at 2023-05-27 11:45 AM PDT -Sk-223,2023-05-27T20:17:07Z,- Sk-223 commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565664860) at 2023-05-27 01:17 PM PDT -Sk-223,2023-05-31T05:54:21Z,- Sk-223 unassigned from issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1567288597) at 2023-05-30 10:54 PM PDT -Sk-223,2023-06-02T15:10:26Z,- Sk-223 assigned to issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1550016553) at 2023-06-02 08:10 AM PDT -Sk-223,2023-06-16T03:36:22Z,- Sk-223 commented on issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1594039412) at 2023-06-15 08:36 PM PDT -Sk-223,2023-06-16T03:45:26Z,- Sk-223 opened pull request: [4844](https://github.com/hackforla/website/pull/4844) at 2023-06-15 08:45 PM PDT -Sk-223,2023-06-18T15:25:36Z,- Sk-223 commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1596183406) at 2023-06-18 08:25 AM PDT -Sk-223,2023-06-18T23:44:08Z,- Sk-223 pull request merged: [4844](https://github.com/hackforla/website/pull/4844#event-9562282759) at 2023-06-18 04:44 PM PDT -Sk-223,2024-10-24T17:36:19Z,- Sk-223 opened issue: [7633](https://github.com/hackforla/website/issues/7633) at 2024-10-24 10:36 AM PDT -Sk-223,2024-10-24T17:36:20Z,- Sk-223 assigned to issue: [7633](https://github.com/hackforla/website/issues/7633) at 2024-10-24 10:36 AM PDT -Sk-223,2024-10-24T17:54:20Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2435997917) at 2024-10-24 10:54 AM PDT -Sk-223,2024-11-06T19:58:36Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2460658487) at 2024-11-06 11:58 AM PST -Sk-223,2024-11-06T19:59:52Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2460660762) at 2024-11-06 11:59 AM PST -Sk-223,2024-11-06T20:01:32Z,- Sk-223 assigned to issue: [7643](https://github.com/hackforla/website/issues/7643) at 2024-11-06 12:01 PM PST -Sk-223,2024-11-06T20:25:25Z,- Sk-223 opened pull request: [7706](https://github.com/hackforla/website/pull/7706) at 2024-11-06 12:25 PM PST -Sk-223,2024-11-06T21:48:51Z,- Sk-223 commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2460851272) at 2024-11-06 01:48 PM PST -Sk-223,2024-11-06T22:00:22Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460868362) at 2024-11-06 02:00 PM PST -Sk-223,2024-11-07T00:28:34Z,- Sk-223 opened pull request: [7708](https://github.com/hackforla/website/pull/7708) at 2024-11-06 04:28 PM PST -Sk-223,2024-11-07T00:39:49Z,- Sk-223 pull request closed w/o merging: [7708](https://github.com/hackforla/website/pull/7708#event-15163640133) at 2024-11-06 04:39 PM PST -Sk-223,2024-11-07T00:52:09Z,- Sk-223 unassigned from issue: [4477](https://github.com/hackforla/website/issues/4477#event-9562282786) at 2024-11-06 04:52 PM PST -Sk-223,2024-11-07T01:07:04Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2461112867) at 2024-11-06 05:07 PM PST -Sk-223,2024-11-08T20:19:34Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2465686632) at 2024-11-08 12:19 PM PST -Sk-223,2024-11-08T20:24:57Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2465693731) at 2024-11-08 12:24 PM PST -Sk-223,2024-11-09T03:39:35Z,- Sk-223 commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2466026122) at 2024-11-08 07:39 PM PST -Sk-223,2024-11-09T04:56:21Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2466049313) at 2024-11-08 08:56 PM PST -Sk-223,2024-11-10T03:56:55Z,- Sk-223 pull request merged: [7706](https://github.com/hackforla/website/pull/7706#event-15240051975) at 2024-11-09 07:56 PM PST -Sk-223,2024-11-10T19:14:00Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2466851495) at 2024-11-10 11:14 AM PST -skarakaya1,2975,SKILLS ISSUE -skarakaya1,2022-03-13T18:08:28Z,- skarakaya1 opened issue: [2975](https://github.com/hackforla/website/issues/2975) at 2022-03-13 11:08 AM PDT -skarakaya1,2022-03-13T18:14:18Z,- skarakaya1 assigned to issue: [2975](https://github.com/hackforla/website/issues/2975#issuecomment-1066153663) at 2022-03-13 11:14 AM PDT -skarakaya1,2022-03-13T18:25:30Z,- skarakaya1 closed issue as completed: [2975](https://github.com/hackforla/website/issues/2975#event-6231457334) at 2022-03-13 11:25 AM PDT -skarakaya1,2022-04-11T23:56:01Z,- skarakaya1 commented on issue: [2975](https://github.com/hackforla/website/issues/2975#issuecomment-1095708332) at 2022-04-11 04:56 PM PDT -skibidi350,2025-04-14T17:53:16Z,- skibidi350 commented on issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-2802454584) at 2025-04-14 10:53 AM PDT -Skydodle,3609,SKILLS ISSUE -Skydodle,2022-10-11T02:54:18Z,- Skydodle opened issue: [3609](https://github.com/hackforla/website/issues/3609) at 2022-10-10 07:54 PM PDT -Skydodle,2022-10-12T02:57:55Z,- Skydodle assigned to issue: [3609](https://github.com/hackforla/website/issues/3609) at 2022-10-11 07:57 PM PDT -Skydodle,2022-10-12T03:05:22Z,- Skydodle assigned to issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1048142134) at 2022-10-11 08:05 PM PDT -Skydodle,2022-10-12T03:07:13Z,- Skydodle commented on issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1275523175) at 2022-10-11 08:07 PM PDT -Skydodle,2022-10-17T10:18:04Z,- Skydodle opened pull request: [3632](https://github.com/hackforla/website/pull/3632) at 2022-10-17 03:18 AM PDT -Skydodle,2022-10-17T10:22:41Z,- Skydodle commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1280632793) at 2022-10-17 03:22 AM PDT -Skydodle,2022-10-17T10:30:52Z,- Skydodle submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1143912384) at 2022-10-17 03:30 AM PDT -Skydodle,2022-10-17T22:54:50Z,- Skydodle pull request merged: [3632](https://github.com/hackforla/website/pull/3632#event-7606467865) at 2022-10-17 03:54 PM PDT -Skydodle,2022-10-26T12:06:36Z,- Skydodle commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1291933226) at 2022-10-26 05:06 AM PDT -Skydodle,2022-11-08T12:26:25Z,- Skydodle assigned to issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1145824017) at 2022-11-08 04:26 AM PST -Skydodle,2022-11-08T12:28:18Z,- Skydodle commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1307133004) at 2022-11-08 04:28 AM PST -Skydodle,2022-11-08T12:53:04Z,- Skydodle opened pull request: [3700](https://github.com/hackforla/website/pull/3700) at 2022-11-08 04:53 AM PST -Skydodle,2022-11-10T18:50:17Z,- Skydodle pull request merged: [3700](https://github.com/hackforla/website/pull/3700#event-7786142990) at 2022-11-10 10:50 AM PST -Skydodle,2022-11-13T18:59:12Z,- Skydodle closed issue as completed: [3609](https://github.com/hackforla/website/issues/3609#event-7798874347) at 2022-11-13 10:59 AM PST -Skydodle,2022-11-13T19:19:23Z,- Skydodle assigned to issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1308066218) at 2022-11-13 11:19 AM PST -Skydodle,2022-11-13T19:20:42Z,- Skydodle commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1312801853) at 2022-11-13 11:20 AM PST -Skydodle,2022-11-15T18:38:40Z,- Skydodle opened pull request: [3721](https://github.com/hackforla/website/pull/3721) at 2022-11-15 10:38 AM PST -Skydodle,2022-11-15T18:45:41Z,- Skydodle submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1181386084) at 2022-11-15 10:45 AM PST -Skydodle,2022-11-16T21:27:19Z,- Skydodle pull request merged: [3721](https://github.com/hackforla/website/pull/3721#event-7828088437) at 2022-11-16 01:27 PM PST -Skydodle,2023-03-01T03:50:15Z,- Skydodle assigned to issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1447033104) at 2023-02-28 07:50 PM PST -Skydodle,2023-03-01T05:40:59Z,- Skydodle commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1449382179) at 2023-02-28 09:40 PM PST -Skydodle,2023-03-01T09:32:25Z,- Skydodle commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1449690960) at 2023-03-01 01:32 AM PST -Skydodle,2023-03-09T02:38:56Z,- Skydodle opened pull request: [4135](https://github.com/hackforla/website/pull/4135) at 2023-03-08 06:38 PM PST -Skydodle,2023-03-09T03:00:21Z,- Skydodle submitted pull request review: [4133](https://github.com/hackforla/website/pull/4133#pullrequestreview-1331913353) at 2023-03-08 07:00 PM PST -Skydodle,2023-03-09T03:01:02Z,- Skydodle commented on pull request: [4133](https://github.com/hackforla/website/pull/4133#issuecomment-1461195914) at 2023-03-08 07:01 PM PST -Skydodle,2023-03-09T03:11:22Z,- Skydodle submitted pull request review: [4126](https://github.com/hackforla/website/pull/4126#pullrequestreview-1331920345) at 2023-03-08 07:11 PM PST -Skydodle,2023-03-09T03:53:25Z,- Skydodle commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1461231798) at 2023-03-08 07:53 PM PST -Skydodle,2023-03-12T17:29:05Z,- Skydodle commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1465254282) at 2023-03-12 10:29 AM PDT -Skydodle,2023-03-12T17:38:53Z,- Skydodle assigned to issue: [3821](https://github.com/hackforla/website/issues/3821) at 2023-03-12 10:38 AM PDT -Skydodle,2023-03-12T17:42:17Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1465256872) at 2023-03-12 10:42 AM PDT -Skydodle,2023-03-13T20:06:58Z,- Skydodle pull request merged: [4135](https://github.com/hackforla/website/pull/4135#event-8736020840) at 2023-03-13 01:06 PM PDT -Skydodle,2023-03-14T16:25:36Z,- Skydodle commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1468425173) at 2023-03-14 09:25 AM PDT -Skydodle,2023-03-14T16:36:59Z,- Skydodle commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1468442671) at 2023-03-14 09:36 AM PDT -Skydodle,2023-03-16T04:09:17Z,- Skydodle submitted pull request review: [4148](https://github.com/hackforla/website/pull/4148#pullrequestreview-1342867810) at 2023-03-15 09:09 PM PDT -Skydodle,2023-03-19T18:42:49Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1475357551) at 2023-03-19 11:42 AM PDT -Skydodle,2023-03-25T05:49:38Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1483734494) at 2023-03-24 10:49 PM PDT -Skydodle,2023-03-25T23:51:53Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1483949761) at 2023-03-25 04:51 PM PDT -Skydodle,2023-03-27T19:25:50Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1485742793) at 2023-03-27 12:25 PM PDT -Skydodle,2023-03-27T19:34:28Z,- Skydodle commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1485752850) at 2023-03-27 12:34 PM PDT -Skydodle,2023-03-27T19:36:51Z,- Skydodle commented on pull request: [4292](https://github.com/hackforla/website/pull/4292#issuecomment-1485755574) at 2023-03-27 12:36 PM PDT -Skydodle,2023-03-27T19:41:57Z,- Skydodle assigned to issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1482951990) at 2023-03-27 12:41 PM PDT -Skydodle,2023-03-27T19:44:43Z,- Skydodle commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1485764564) at 2023-03-27 12:44 PM PDT -Skydodle,2023-03-27T21:06:00Z,- Skydodle submitted pull request review: [4295](https://github.com/hackforla/website/pull/4295#pullrequestreview-1359871570) at 2023-03-27 02:06 PM PDT -Skydodle,2023-03-27T21:08:29Z,- Skydodle submitted pull request review: [4292](https://github.com/hackforla/website/pull/4292#pullrequestreview-1359874501) at 2023-03-27 02:08 PM PDT -Skydodle,2023-04-11T00:35:50Z,- Skydodle commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1502519348) at 2023-04-10 05:35 PM PDT -Skydodle,2023-04-12T03:02:10Z,- Skydodle opened issue: [4480](https://github.com/hackforla/website/issues/4480) at 2023-04-11 08:02 PM PDT -Skydodle,2023-05-16T04:51:23Z,- Skydodle unassigned from issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1547125558) at 2023-05-15 09:51 PM PDT -Skydodle,2023-05-16T04:52:32Z,- Skydodle commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1548986877) at 2023-05-15 09:52 PM PDT -sleepyyuu,5607,SKILLS ISSUE -sleepyyuu,2023-09-27T02:39:32Z,- sleepyyuu opened issue: [5607](https://github.com/hackforla/website/issues/5607) at 2023-09-26 07:39 PM PDT -sleepyyuu,2023-09-27T02:39:37Z,- sleepyyuu assigned to issue: [5607](https://github.com/hackforla/website/issues/5607) at 2023-09-26 07:39 PM PDT -smendoza07,6714,SKILLS ISSUE -smendoza07,2024-04-24T02:41:15Z,- smendoza07 opened issue: [6714](https://github.com/hackforla/website/issues/6714) at 2024-04-23 07:41 PM PDT -smendoza07,2024-04-24T02:41:43Z,- smendoza07 assigned to issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2073895031) at 2024-04-23 07:41 PM PDT -smendoza07,2024-04-30T19:41:55Z,- smendoza07 commented on issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2086883347) at 2024-04-30 12:41 PM PDT -smendoza07,2024-04-30T20:00:18Z,- smendoza07 commented on issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2086979603) at 2024-04-30 01:00 PM PDT -smendoza07,2024-05-01T19:44:15Z,- smendoza07 assigned to issue: [6703](https://github.com/hackforla/website/issues/6703) at 2024-05-01 12:44 PM PDT -smendoza07,2024-05-01T20:23:14Z,- smendoza07 commented on issue: [6703](https://github.com/hackforla/website/issues/6703#issuecomment-2089075114) at 2024-05-01 01:23 PM PDT -smendoza07,2024-05-04T00:04:54Z,- smendoza07 opened pull request: [6814](https://github.com/hackforla/website/pull/6814) at 2024-05-03 05:04 PM PDT -smendoza07,2024-05-07T17:55:15Z,- smendoza07 assigned to issue: [6761](https://github.com/hackforla/website/issues/6761) at 2024-05-07 10:55 AM PDT -smendoza07,2024-05-07T19:11:00Z,- smendoza07 pull request merged: [6814](https://github.com/hackforla/website/pull/6814#event-12734184291) at 2024-05-07 12:11 PM PDT -smendoza07,2024-05-09T01:46:35Z,- smendoza07 commented on issue: [6761](https://github.com/hackforla/website/issues/6761#issuecomment-2101780908) at 2024-05-08 06:46 PM PDT -smendoza07,2024-05-12T01:34:44Z,- smendoza07 opened pull request: [6851](https://github.com/hackforla/website/pull/6851) at 2024-05-11 06:34 PM PDT -smendoza07,2024-05-15T03:40:49Z,- smendoza07 closed issue as completed: [6714](https://github.com/hackforla/website/issues/6714#event-12810637816) at 2024-05-14 08:40 PM PDT -smendoza07,2024-05-15T17:52:54Z,- smendoza07 pull request merged: [6851](https://github.com/hackforla/website/pull/6851#event-12821507703) at 2024-05-15 10:52 AM PDT -smendoza07,2024-05-24T02:24:34Z,- smendoza07 commented on pull request: [6887](https://github.com/hackforla/website/pull/6887#issuecomment-2128378334) at 2024-05-23 07:24 PM PDT -smithasindagi,2021-06-20T20:56:25Z,- smithasindagi assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -smithasindagi,2021-06-20T22:15:50Z,- smithasindagi assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -smithasindagi,2021-07-04T18:20:37Z,- smithasindagi opened issue: [1888](https://github.com/hackforla/website/issues/1888) at 2021-07-04 11:20 AM PDT -smithasindagi,2021-07-04T18:23:52Z,- smithasindagi assigned to issue: [1888](https://github.com/hackforla/website/issues/1888) at 2021-07-04 11:23 AM PDT -smithasindagi,2021-07-04T18:38:47Z,- smithasindagi commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-873639426) at 2021-07-04 11:38 AM PDT -smithasindagi,2021-07-07T21:35:41Z,- smithasindagi commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-875950857) at 2021-07-07 02:35 PM PDT -smithasindagi,2021-08-12T20:05:00Z,- smithasindagi unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -smithasindagi,2021-08-15T07:36:35Z,- smithasindagi unassigned from issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-898241252) at 2021-08-15 12:36 AM PDT -smithasindagi,2021-08-15T07:37:40Z,- smithasindagi commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-899009790) at 2021-08-15 12:37 AM PDT -smsada,2022-06-09T19:15:36Z,- smsada opened issue: [3236](https://github.com/hackforla/website/issues/3236) at 2022-06-09 12:15 PM PDT -smsada,2022-06-09T19:17:50Z,- smsada commented on issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1151521522) at 2022-06-09 12:17 PM PDT -sneha-kataria,2025-05-07T20:05:15Z,- sneha-kataria assigned to issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2840129258) at 2025-05-07 01:05 PM PDT -sneha-kataria,2025-05-07T21:09:49Z,- sneha-kataria assigned to issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2713184744) at 2025-05-07 02:09 PM PDT -snigbehara,3167,SKILLS ISSUE -snigbehara,2022-05-23T01:37:41Z,- snigbehara opened issue: [3167](https://github.com/hackforla/website/issues/3167) at 2022-05-22 06:37 PM PDT -snooravi,2021-05-19T02:18:29Z,- snooravi opened issue: [1590](https://github.com/hackforla/website/issues/1590) at 2021-05-18 07:18 PM PDT -snooravi,2021-05-19T02:20:43Z,- snooravi commented on issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-05-18 07:20 PM PDT -sobe-an,2021-08-08T18:40:33Z,- sobe-an commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894838033) at 2021-08-08 11:40 AM PDT -sobe-an,2021-08-08T19:35:11Z,- sobe-an commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-894844704) at 2021-08-08 12:35 PM PDT -sobe-an,2021-08-08T19:35:44Z,- sobe-an commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-894844766) at 2021-08-08 12:35 PM PDT -sobe-an,2021-08-09T04:29:44Z,- sobe-an assigned to issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-894844766) at 2021-08-08 09:29 PM PDT -sobe-an,2021-08-10T18:27:39Z,- sobe-an commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-896217312) at 2021-08-10 11:27 AM PDT -sobe-an,2021-08-10T18:27:39Z,- sobe-an closed issue as completed: [2034](https://github.com/hackforla/website/issues/2034#event-5137051120) at 2021-08-10 11:27 AM PDT -sobe-an,2021-08-12T20:05:08Z,- sobe-an assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -sobe-an,2021-08-15T17:41:49Z,- sobe-an reopened issue: [2063](https://github.com/hackforla/website/issues/2063#event-5158958356) at 2021-08-15 10:41 AM PDT -sobe-an,2021-08-15T17:42:46Z,- sobe-an closed issue by PR 2098: [2063](https://github.com/hackforla/website/issues/2063#event-5159974859) at 2021-08-15 10:42 AM PDT -sobe-an,2021-08-18T20:36:58Z,- sobe-an assigned to issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863822411) at 2021-08-18 01:36 PM PDT -sobe-an,2021-08-22T18:57:51Z,- sobe-an closed issue as completed: [2143](https://github.com/hackforla/website/issues/2143#event-5191144067) at 2021-08-22 11:57 AM PDT -sobe-an,2021-08-22T19:08:37Z,- sobe-an opened issue: [2160](https://github.com/hackforla/website/issues/2160) at 2021-08-22 12:08 PM PDT -sobe-an,2021-08-22T19:45:50Z,- sobe-an opened issue: [2162](https://github.com/hackforla/website/issues/2162) at 2021-08-22 12:45 PM PDT -sobe-an,2021-08-27T07:54:53Z,- sobe-an commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-907005042) at 2021-08-27 12:54 AM PDT -sobe-an,2021-09-01T19:10:12Z,- sobe-an unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-09-01 12:10 PM PDT -sobe-an,2021-09-04T10:33:40Z,- sobe-an commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-912950639) at 2021-09-04 03:33 AM PDT -sobe-an,2021-09-08T19:55:54Z,- sobe-an unassigned from issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-912950639) at 2021-09-08 12:55 PM PDT -sofiatajide,2024-09-23T23:15:26Z,- sofiatajide opened issue: [7509](https://github.com/hackforla/website/issues/7509) at 2024-09-23 04:15 PM PDT -sofiatajide,2024-09-23T23:15:27Z,- sofiatajide assigned to issue: [7509](https://github.com/hackforla/website/issues/7509) at 2024-09-23 04:15 PM PDT -sofiatajide,2024-10-06T18:34:49Z,- sofiatajide closed issue as completed: [7509](https://github.com/hackforla/website/issues/7509#event-14531242809) at 2024-10-06 11:34 AM PDT -sofiatajide,2024-10-06T18:34:52Z,- sofiatajide reopened issue: [7509](https://github.com/hackforla/website/issues/7509#event-14531242809) at 2024-10-06 11:34 AM PDT -sofiatajide,2024-10-27T17:13:49Z,- sofiatajide opened issue: [7640](https://github.com/hackforla/website/issues/7640) at 2024-10-27 10:13 AM PDT -sofiatajide,2024-10-27T17:13:56Z,- sofiatajide assigned to issue: [7640](https://github.com/hackforla/website/issues/7640) at 2024-10-27 10:13 AM PDT -sofiatajide,2024-11-10T17:06:35Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2466811343) at 2024-11-10 09:06 AM PST -sofiatajide,2024-11-17T03:25:07Z,- sofiatajide opened issue: [7724](https://github.com/hackforla/website/issues/7724) at 2024-11-16 07:25 PM PST -sofiatajide,2024-11-17T03:25:57Z,- sofiatajide assigned to issue: [7724](https://github.com/hackforla/website/issues/7724#issuecomment-2480908708) at 2024-11-16 07:25 PM PST -sofiatajide,2024-11-17T03:33:25Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2480910434) at 2024-11-16 07:33 PM PST -sofiatajide,2024-11-17T18:33:11Z,- sofiatajide assigned to issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2468920141) at 2024-11-17 10:33 AM PST -sofiatajide,2024-11-17T18:42:37Z,- sofiatajide unassigned from issue: [7724](https://github.com/hackforla/website/issues/7724#issuecomment-2480908708) at 2024-11-17 10:42 AM PST -sofiatajide,2024-11-19T19:01:00Z,- sofiatajide unassigned from issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2480910434) at 2024-11-19 11:01 AM PST -sofiatajide,2024-11-23T15:52:53Z,- sofiatajide opened issue: [7759](https://github.com/hackforla/website/issues/7759) at 2024-11-23 07:52 AM PST -sofiatajide,2024-11-23T15:53:30Z,- sofiatajide closed issue as completed: [7759](https://github.com/hackforla/website/issues/7759#event-15408017871) at 2024-11-23 07:53 AM PST -sofiatajide,2024-11-23T15:54:37Z,- sofiatajide reopened issue: [7759](https://github.com/hackforla/website/issues/7759#issuecomment-2495521068) at 2024-11-23 07:54 AM PST -sofiatajide,2024-11-24T17:35:56Z,- sofiatajide opened issue: [7761](https://github.com/hackforla/website/issues/7761) at 2024-11-24 09:35 AM PST -sofiatajide,2024-11-24T17:55:22Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2496137545) at 2024-11-24 09:55 AM PST -sofiatajide,2025-01-19T17:06:04Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2600945323) at 2025-01-19 09:06 AM PST -sofiatajide,2025-01-19T17:19:37Z,- sofiatajide assigned to issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2277284985) at 2025-01-19 09:19 AM PST -sofiatajide,2025-01-19T17:26:14Z,- sofiatajide commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2600951602) at 2025-01-19 09:26 AM PST -sofiatajide,2025-01-22T17:23:57Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2607835295) at 2025-01-22 09:23 AM PST -sofiatajide,2025-01-26T12:20:04Z,- sofiatajide opened issue: [7853](https://github.com/hackforla/website/issues/7853) at 2025-01-26 04:20 AM PST -sofiatajide,2025-01-26T12:20:09Z,- sofiatajide assigned to issue: [7853](https://github.com/hackforla/website/issues/7853) at 2025-01-26 04:20 AM PST -sofiatajide,2025-01-26T12:33:16Z,- sofiatajide commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2614399963) at 2025-01-26 04:33 AM PST -sofiatajide,2025-01-26T12:42:45Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2614403541) at 2025-01-26 04:42 AM PST -sofiatajide,2025-01-26T12:48:37Z,- sofiatajide commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2614405510) at 2025-01-26 04:48 AM PST -sofiatajide,2025-02-02T02:28:50Z,- sofiatajide opened issue: [7872](https://github.com/hackforla/website/issues/7872) at 2025-02-01 06:28 PM PST -sofiatajide,2025-02-02T02:54:30Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2629216437) at 2025-02-01 06:54 PM PST -sofiatajide,2025-02-09T17:06:04Z,- sofiatajide unassigned from issue: [7853](https://github.com/hackforla/website/issues/7853#issuecomment-2614525756) at 2025-02-09 09:06 AM PST -sofiatajide,2025-02-09T18:40:27Z,- sofiatajide unassigned from issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2642098959) at 2025-02-09 10:40 AM PST -sofiatajide,2025-02-09T18:41:24Z,- sofiatajide assigned to issue: [7710](https://github.com/hackforla/website/issues/7710#event-16238995199) at 2025-02-09 10:41 AM PST -sofiatajide,2025-02-09T18:46:17Z,- sofiatajide assigned to issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2646476192) at 2025-02-09 10:46 AM PST -sofiatajide,2025-02-16T18:11:11Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2661553074) at 2025-02-16 10:11 AM PST -sofiatajide,2025-02-23T16:33:44Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2676975927) at 2025-02-23 08:33 AM PST -sofiatajide,2025-04-06T10:48:04Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781359277) at 2025-04-06 03:48 AM PDT -sofiatajide,2025-04-13T11:32:47Z,- sofiatajide opened issue: [8063](https://github.com/hackforla/website/issues/8063) at 2025-04-13 04:32 AM PDT -soleilherring,4610,SKILLS ISSUE -soleilherring,2023-05-09T03:02:49Z,- soleilherring opened issue: [4610](https://github.com/hackforla/website/issues/4610) at 2023-05-08 08:02 PM PDT -soleilherring,2023-05-09T03:27:26Z,- soleilherring assigned to issue: [4610](https://github.com/hackforla/website/issues/4610) at 2023-05-08 08:27 PM PDT -soleilherring,2023-09-14T04:34:40Z,- soleilherring reopened issue: [4610](https://github.com/hackforla/website/issues/4610#event-9785036268) at 2023-09-13 09:34 PM PDT -soleilherring,2023-09-20T22:33:08Z,- soleilherring assigned to issue: [5367](https://github.com/hackforla/website/issues/5367#issuecomment-1698558074) at 2023-09-20 03:33 PM PDT -soleilherring,2023-09-21T00:21:21Z,- soleilherring opened pull request: [5564](https://github.com/hackforla/website/pull/5564) at 2023-09-20 05:21 PM PDT -soleilherring,2023-09-27T19:06:23Z,- soleilherring commented on pull request: [5564](https://github.com/hackforla/website/pull/5564#issuecomment-1737933813) at 2023-09-27 12:06 PM PDT -soleilherring,2023-09-27T19:46:23Z,- soleilherring pull request merged: [5564](https://github.com/hackforla/website/pull/5564#event-10491544941) at 2023-09-27 12:46 PM PDT -soleilherring,2023-11-07T01:04:33Z,- soleilherring assigned to issue: [5856](https://github.com/hackforla/website/issues/5856) at 2023-11-06 05:04 PM PST -soleilherring,2023-11-07T20:53:59Z,- soleilherring opened pull request: [5877](https://github.com/hackforla/website/pull/5877) at 2023-11-07 12:53 PM PST -soleilherring,2023-11-08T20:21:49Z,- soleilherring commented on pull request: [5877](https://github.com/hackforla/website/pull/5877#issuecomment-1802594185) at 2023-11-08 12:21 PM PST -soleilherring,2023-11-09T01:09:22Z,- soleilherring pull request merged: [5877](https://github.com/hackforla/website/pull/5877#event-10907349916) at 2023-11-08 05:09 PM PST -soleilherring,2023-11-30T21:10:40Z,- soleilherring commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1834565404) at 2023-11-30 01:10 PM PST -soleilherring,2023-11-30T21:13:36Z,- soleilherring commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1834569088) at 2023-11-30 01:13 PM PST -soleilherring,2024-01-02T20:52:33Z,- soleilherring submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1801014510) at 2024-01-02 12:52 PM PST -sonalinajera,3570,SKILLS ISSUE -sonalinajera,2022-09-21T03:11:14Z,- sonalinajera opened issue: [3570](https://github.com/hackforla/website/issues/3570) at 2022-09-20 08:11 PM PDT -sonalinajera,2022-09-21T03:13:49Z,- sonalinajera assigned to issue: [3570](https://github.com/hackforla/website/issues/3570) at 2022-09-20 08:13 PM PDT -sonalinajera,2022-09-21T03:22:52Z,- sonalinajera assigned to issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1047137128) at 2022-09-20 08:22 PM PDT -sonalinajera,2022-09-21T03:26:10Z,- sonalinajera commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1253158471) at 2022-09-20 08:26 PM PDT -sonalinajera,2022-11-14T17:39:46Z,- sonalinajera unassigned from issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1286576019) at 2022-11-14 09:39 AM PST -sonjand,7825,SKILLS ISSUE -sonjand,2025-01-14T03:49:08Z,- sonjand opened issue: [7825](https://github.com/hackforla/website/issues/7825) at 2025-01-13 07:49 PM PST -sonjand,2025-01-14T03:49:13Z,- sonjand assigned to issue: [7825](https://github.com/hackforla/website/issues/7825) at 2025-01-13 07:49 PM PST -sonjand,2025-01-14T06:37:44Z,- sonjand commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2589144667) at 2025-01-13 10:37 PM PST -sonjand,2025-01-16T02:15:28Z,- sonjand commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2594327291) at 2025-01-15 06:15 PM PST -sophia-bui,5350,SKILLS ISSUE -sophia-bui,2023-08-30T03:39:23Z,- sophia-bui opened issue: [5350](https://github.com/hackforla/website/issues/5350) at 2023-08-29 08:39 PM PDT -sophia-bui,2023-08-30T03:41:45Z,- sophia-bui assigned to issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1698440429) at 2023-08-29 08:41 PM PDT -sophia-bui,2023-09-11T22:29:38Z,- sophia-bui closed issue as completed: [5350](https://github.com/hackforla/website/issues/5350#event-10339535563) at 2023-09-11 03:29 PM PDT -sophia-bui,2023-09-11T22:30:37Z,- sophia-bui commented on issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1714671464) at 2023-09-11 03:30 PM PDT -sophia-bui,2023-09-11T22:31:12Z,- sophia-bui reopened issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1714671464) at 2023-09-11 03:31 PM PDT -sornekian,5773,SKILLS ISSUE -sornekian,2023-10-25T02:42:26Z,- sornekian opened issue: [5773](https://github.com/hackforla/website/issues/5773) at 2023-10-24 07:42 PM PDT -sornekian,2023-10-25T02:43:47Z,- sornekian assigned to issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1778413348) at 2023-10-24 07:43 PM PDT -sornekian,2023-11-09T18:39:20Z,- sornekian assigned to issue: [5806](https://github.com/hackforla/website/issues/5806) at 2023-11-09 10:39 AM PST -sornekian,2023-11-09T21:57:19Z,- sornekian opened pull request: [5890](https://github.com/hackforla/website/pull/5890) at 2023-11-09 01:57 PM PST -sornekian,2023-11-10T20:26:23Z,- sornekian commented on pull request: [5890](https://github.com/hackforla/website/pull/5890#issuecomment-1806388666) at 2023-11-10 12:26 PM PST -sornekian,2023-11-12T17:39:41Z,- sornekian pull request merged: [5890](https://github.com/hackforla/website/pull/5890#event-10934992738) at 2023-11-12 09:39 AM PST -sornekian,2023-11-12T17:53:30Z,- sornekian assigned to issue: [5802](https://github.com/hackforla/website/issues/5802) at 2023-11-12 09:53 AM PST -sornekian,2023-11-14T21:10:03Z,- sornekian opened pull request: [5902](https://github.com/hackforla/website/pull/5902) at 2023-11-14 01:10 PM PST -sornekian,2023-11-14T21:16:51Z,- sornekian commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1811323567) at 2023-11-14 01:16 PM PST -sornekian,2023-11-15T22:26:31Z,- sornekian pull request merged: [5902](https://github.com/hackforla/website/pull/5902#event-10972963450) at 2023-11-15 02:26 PM PST -sornekian,2023-11-21T22:14:34Z,- sornekian assigned to issue: [5796](https://github.com/hackforla/website/issues/5796) at 2023-11-21 02:14 PM PST -sornekian,2023-11-21T22:15:33Z,- sornekian assigned to issue: [5681](https://github.com/hackforla/website/issues/5681#issuecomment-1752135453) at 2023-11-21 02:15 PM PST -sornekian,2023-11-22T03:42:03Z,- sornekian commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1822040914) at 2023-11-21 07:42 PM PST -sornekian,2023-11-22T20:47:51Z,- sornekian submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1745355628) at 2023-11-22 12:47 PM PST -sornekian,2023-11-22T21:00:38Z,- sornekian opened pull request: [5933](https://github.com/hackforla/website/pull/5933) at 2023-11-22 01:00 PM PST -sornekian,2023-11-26T02:23:29Z,- sornekian pull request merged: [5933](https://github.com/hackforla/website/pull/5933#event-11061770056) at 2023-11-25 06:23 PM PST -sornekian,2023-11-29T21:11:31Z,- sornekian opened pull request: [5946](https://github.com/hackforla/website/pull/5946) at 2023-11-29 01:11 PM PST -sornekian,2023-11-30T00:35:47Z,- sornekian pull request merged: [5946](https://github.com/hackforla/website/pull/5946#event-11102882614) at 2023-11-29 04:35 PM PST -sornekian,2023-11-30T21:07:45Z,- sornekian assigned to issue: [5673](https://github.com/hackforla/website/issues/5673#issuecomment-1751955451) at 2023-11-30 01:07 PM PST -sornekian,2023-11-30T21:11:57Z,- sornekian commented on issue: [5673](https://github.com/hackforla/website/issues/5673#issuecomment-1834566999) at 2023-11-30 01:11 PM PST -sornekian,2023-12-05T00:49:12Z,- sornekian opened pull request: [5961](https://github.com/hackforla/website/pull/5961) at 2023-12-04 04:49 PM PST -sornekian,2023-12-08T03:54:20Z,- sornekian pull request merged: [5961](https://github.com/hackforla/website/pull/5961#event-11189166770) at 2023-12-07 07:54 PM PST -sornekian,2023-12-13T19:49:56Z,- sornekian assigned to issue: [5684](https://github.com/hackforla/website/issues/5684#issuecomment-1752402265) at 2023-12-13 11:49 AM PST -sornekian,2023-12-13T19:51:35Z,- sornekian commented on issue: [5684](https://github.com/hackforla/website/issues/5684#issuecomment-1854609305) at 2023-12-13 11:51 AM PST -sornekian,2023-12-15T21:49:37Z,- sornekian opened pull request: [6010](https://github.com/hackforla/website/pull/6010) at 2023-12-15 01:49 PM PST -sornekian,2023-12-15T21:53:15Z,- sornekian commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1858532866) at 2023-12-15 01:53 PM PST -sornekian,2023-12-18T22:36:17Z,- sornekian pull request merged: [6010](https://github.com/hackforla/website/pull/6010#event-11282377258) at 2023-12-18 02:36 PM PST -sornekian,2023-12-21T21:28:50Z,- sornekian assigned to issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1745138050) at 2023-12-21 01:28 PM PST -sornekian,2023-12-26T19:35:30Z,- sornekian commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1869735855) at 2023-12-26 11:35 AM PST -sornekian,2023-12-26T20:14:31Z,- sornekian opened pull request: [6016](https://github.com/hackforla/website/pull/6016) at 2023-12-26 12:14 PM PST -sornekian,2023-12-29T22:59:50Z,- sornekian commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1872381321) at 2023-12-29 02:59 PM PST -sornekian,2023-12-29T23:03:08Z,- sornekian assigned to issue: [6020](https://github.com/hackforla/website/issues/6020) at 2023-12-29 03:03 PM PST -sornekian,2023-12-29T23:04:16Z,- sornekian commented on issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382720) at 2023-12-29 03:04 PM PST -sornekian,2023-12-30T16:56:07Z,- sornekian unassigned from issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1869735855) at 2023-12-30 08:56 AM PST -sornekian,2023-12-30T16:56:24Z,- sornekian pull request closed w/o merging: [6016](https://github.com/hackforla/website/pull/6016#event-11360227575) at 2023-12-30 08:56 AM PST -sornekian,2023-12-30T16:56:37Z,- sornekian unassigned from issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382720) at 2023-12-30 08:56 AM PST -sornekian,2024-01-02T20:09:38Z,- sornekian assigned to issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1872854985) at 2024-01-02 12:09 PM PST -sornekian,2024-01-05T05:23:17Z,- sornekian opened pull request: [6067](https://github.com/hackforla/website/pull/6067) at 2024-01-04 09:23 PM PST -sornekian,2024-01-05T19:13:24Z,- sornekian closed issue as completed: [5773](https://github.com/hackforla/website/issues/5773#event-11404405555) at 2024-01-05 11:13 AM PST -sornekian,2024-01-05T22:19:08Z,- sornekian unassigned from issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1874494308) at 2024-01-05 02:19 PM PST -sornekian,2024-01-05T22:21:46Z,- sornekian pull request closed w/o merging: [6067](https://github.com/hackforla/website/pull/6067#event-11405667956) at 2024-01-05 02:21 PM PST -sornekian,2024-01-16T20:42:13Z,- sornekian assigned to issue: [5986](https://github.com/hackforla/website/issues/5986) at 2024-01-16 12:42 PM PST -sornekian,2024-01-17T20:23:27Z,- sornekian submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1828121511) at 2024-01-17 12:23 PM PST -sornekian,2024-01-17T20:57:56Z,- sornekian commented on issue: [5986](https://github.com/hackforla/website/issues/5986#issuecomment-1896677968) at 2024-01-17 12:57 PM PST -sornekian,2024-01-23T01:58:45Z,- sornekian commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1905155121) at 2024-01-22 05:58 PM PST -sornekian,2024-01-24T20:27:58Z,- sornekian submitted pull request review: [6133](https://github.com/hackforla/website/pull/6133#pullrequestreview-1842308551) at 2024-01-24 12:27 PM PST -sornekian,2024-01-30T18:33:56Z,- sornekian assigned to issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1911472384) at 2024-01-30 10:33 AM PST -sornekian,2024-01-30T18:34:43Z,- sornekian commented on issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1917658188) at 2024-01-30 10:34 AM PST -sornekian,2024-02-01T04:47:30Z,- sornekian opened pull request: [6204](https://github.com/hackforla/website/pull/6204) at 2024-01-31 08:47 PM PST -sornekian,2024-02-02T21:07:00Z,- sornekian assigned to issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1916399948) at 2024-02-02 01:07 PM PST -sornekian,2024-02-07T19:25:32Z,- sornekian opened pull request: [6262](https://github.com/hackforla/website/pull/6262) at 2024-02-07 11:25 AM PST -sornekian,2024-02-07T19:41:19Z,- sornekian commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1932745560) at 2024-02-07 11:41 AM PST -sornekian,2024-02-09T07:52:49Z,- sornekian pull request closed w/o merging: [6204](https://github.com/hackforla/website/pull/6204#event-11754851914) at 2024-02-08 11:52 PM PST -sornekian,2024-02-09T07:54:15Z,- sornekian pull request merged: [6262](https://github.com/hackforla/website/pull/6262#event-11754862020) at 2024-02-08 11:54 PM PST -sornekian,2024-02-18T19:22:15Z,- sornekian opened pull request: [6318](https://github.com/hackforla/website/pull/6318) at 2024-02-18 11:22 AM PST -sornekian,2024-02-25T21:33:27Z,- sornekian commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1963068347) at 2024-02-25 01:33 PM PST -sornekian,2024-02-26T21:48:13Z,- sornekian commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1965354406) at 2024-02-26 01:48 PM PST -sornekian,2024-02-29T03:22:11Z,- sornekian pull request closed w/o merging: [6318](https://github.com/hackforla/website/pull/6318#event-11960110127) at 2024-02-28 07:22 PM PST -sornekian,2024-02-29T03:36:32Z,- sornekian opened pull request: [6392](https://github.com/hackforla/website/pull/6392) at 2024-02-28 07:36 PM PST -sornekian,2024-03-02T19:30:20Z,- sornekian commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1974887318) at 2024-03-02 11:30 AM PST -sornekian,2024-03-12T00:01:58Z,- sornekian commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1989666676) at 2024-03-11 05:01 PM PDT -sornekian,2024-03-18T20:27:57Z,- sornekian pull request closed w/o merging: [6392](https://github.com/hackforla/website/pull/6392#event-12158892061) at 2024-03-18 01:27 PM PDT -sornekian,2024-03-18T20:28:19Z,- sornekian unassigned from issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1957787673) at 2024-03-18 01:28 PM PDT -Sparky-code,2783,SKILLS ISSUE -Sparky-code,2022-02-16T03:52:32Z,- Sparky-code opened issue: [2783](https://github.com/hackforla/website/issues/2783) at 2022-02-15 07:52 PM PST -Sparky-code,2022-02-16T03:53:15Z,- Sparky-code assigned to issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1041075473) at 2022-02-15 07:53 PM PST -Sparky-code,2022-02-16T19:15:14Z,- Sparky-code assigned to issue: [2430](https://github.com/hackforla/website/issues/2430#issuecomment-958116834) at 2022-02-16 11:15 AM PST -Sparky-code,2022-02-16T19:38:04Z,- Sparky-code commented on issue: [2430](https://github.com/hackforla/website/issues/2430#issuecomment-1042093008) at 2022-02-16 11:38 AM PST -Sparky-code,2022-02-16T19:54:47Z,- Sparky-code opened pull request: [2786](https://github.com/hackforla/website/pull/2786) at 2022-02-16 11:54 AM PST -Sparky-code,2022-02-18T01:19:06Z,- Sparky-code pull request merged: [2786](https://github.com/hackforla/website/pull/2786#event-6094744799) at 2022-02-17 05:19 PM PST -Sparky-code,2022-02-23T04:08:25Z,- Sparky-code opened issue: [2856](https://github.com/hackforla/website/issues/2856) at 2022-02-22 08:08 PM PST -Sparky-code,2022-02-23T04:12:33Z,- Sparky-code opened issue: [2857](https://github.com/hackforla/website/issues/2857) at 2022-02-22 08:12 PM PST -Sparky-code,2022-02-23T04:18:44Z,- Sparky-code opened issue: [2858](https://github.com/hackforla/website/issues/2858) at 2022-02-22 08:18 PM PST -Sparky-code,2022-02-23T04:22:08Z,- Sparky-code opened issue: [2859](https://github.com/hackforla/website/issues/2859) at 2022-02-22 08:22 PM PST -Sparky-code,2022-02-23T05:42:56Z,- Sparky-code opened issue: [2863](https://github.com/hackforla/website/issues/2863) at 2022-02-22 09:42 PM PST -Sparky-code,2022-02-23T05:45:48Z,- Sparky-code opened issue: [2864](https://github.com/hackforla/website/issues/2864) at 2022-02-22 09:45 PM PST -Sparky-code,2022-02-23T05:48:42Z,- Sparky-code opened issue: [2865](https://github.com/hackforla/website/issues/2865) at 2022-02-22 09:48 PM PST -Sparky-code,2022-02-23T05:52:26Z,- Sparky-code opened issue: [2866](https://github.com/hackforla/website/issues/2866) at 2022-02-22 09:52 PM PST -Sparky-code,2022-02-23T05:55:39Z,- Sparky-code opened issue: [2867](https://github.com/hackforla/website/issues/2867) at 2022-02-22 09:55 PM PST -Sparky-code,2022-02-23T06:00:14Z,- Sparky-code opened issue: [2868](https://github.com/hackforla/website/issues/2868) at 2022-02-22 10:00 PM PST -Sparky-code,2022-02-23T06:03:59Z,- Sparky-code opened issue: [2869](https://github.com/hackforla/website/issues/2869) at 2022-02-22 10:03 PM PST -Sparky-code,2022-02-23T06:06:28Z,- Sparky-code opened issue: [2870](https://github.com/hackforla/website/issues/2870) at 2022-02-22 10:06 PM PST -Sparky-code,2022-02-23T06:09:27Z,- Sparky-code opened issue: [2871](https://github.com/hackforla/website/issues/2871) at 2022-02-22 10:09 PM PST -Sparky-code,2022-02-23T16:49:05Z,- Sparky-code assigned to issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1016724987) at 2022-02-23 08:49 AM PST -Sparky-code,2022-02-23T17:07:01Z,- Sparky-code commented on issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1049006936) at 2022-02-23 09:07 AM PST -Sparky-code,2022-02-25T01:39:48Z,- Sparky-code closed issue as completed: [2783](https://github.com/hackforla/website/issues/2783#event-6136240414) at 2022-02-24 05:39 PM PST -Sparky-code,2022-02-25T02:31:48Z,- Sparky-code opened pull request: [2885](https://github.com/hackforla/website/pull/2885) at 2022-02-24 06:31 PM PST -Sparky-code,2022-02-25T02:36:05Z,- Sparky-code commented on pull request: [2885](https://github.com/hackforla/website/pull/2885#issuecomment-1050460316) at 2022-02-24 06:36 PM PST -Sparky-code,2022-02-25T03:04:04Z,- Sparky-code assigned to issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1045501013) at 2022-02-24 07:04 PM PST -Sparky-code,2022-02-25T03:05:19Z,- Sparky-code commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1050474250) at 2022-02-24 07:05 PM PST -Sparky-code,2022-02-25T23:54:29Z,- Sparky-code unassigned from issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1051349764) at 2022-02-25 03:54 PM PST -Sparky-code,2022-02-25T23:59:48Z,- Sparky-code commented on issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1051381904) at 2022-02-25 03:59 PM PST -Sparky-code,2022-02-26T01:54:41Z,- Sparky-code commented on issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1051443945) at 2022-02-25 05:54 PM PST -Sparky-code,2022-02-26T01:56:12Z,- Sparky-code closed issue as completed: [2783](https://github.com/hackforla/website/issues/2783#event-6142793240) at 2022-02-25 05:56 PM PST -Sparky-code,2022-02-26T18:56:50Z,- Sparky-code pull request merged: [2885](https://github.com/hackforla/website/pull/2885#event-6146530942) at 2022-02-26 10:56 AM PST -Sparky-code,2022-02-26T23:18:12Z,- Sparky-code commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1052772738) at 2022-02-26 03:18 PM PST -Sparky-code,2022-02-27T18:27:04Z,- Sparky-code commented on pull request: [2889](https://github.com/hackforla/website/pull/2889#issuecomment-1053638942) at 2022-02-27 10:27 AM PST -Sparky-code,2022-02-28T17:17:45Z,- Sparky-code submitted pull request review: [2889](https://github.com/hackforla/website/pull/2889#pullrequestreview-895375122) at 2022-02-28 09:17 AM PST -Sparky-code,2022-02-28T17:18:36Z,- Sparky-code submitted pull request review: [2889](https://github.com/hackforla/website/pull/2889#pullrequestreview-895376110) at 2022-02-28 09:18 AM PST -Sparky-code,2022-02-28T17:29:20Z,- Sparky-code assigned to issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-907381202) at 2022-02-28 09:29 AM PST -Sparky-code,2022-02-28T17:30:48Z,- Sparky-code commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-1054494499) at 2022-02-28 09:30 AM PST -Sparky-code,2022-03-02T17:10:03Z,- Sparky-code commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057168820) at 2022-03-02 09:10 AM PST -Sparky-code,2022-03-02T20:36:08Z,- Sparky-code commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-1057354028) at 2022-03-02 12:36 PM PST -Sparky-code,2022-03-02T22:29:00Z,- Sparky-code opened pull request: [2918](https://github.com/hackforla/website/pull/2918) at 2022-03-02 02:29 PM PST -Sparky-code,2022-03-03T15:40:14Z,- Sparky-code commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1058168876) at 2022-03-03 07:40 AM PST -Sparky-code,2022-03-07T15:19:17Z,- Sparky-code pull request merged: [2918](https://github.com/hackforla/website/pull/2918#event-6195752815) at 2022-03-07 07:19 AM PST -Sparky-code,2022-03-07T21:34:31Z,- Sparky-code assigned to issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-903154532) at 2022-03-07 01:34 PM PST -Sparky-code,2022-03-07T21:37:53Z,- Sparky-code commented on issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-1061162344) at 2022-03-07 01:37 PM PST -Sparky-code,2022-03-08T22:48:47Z,- Sparky-code opened pull request: [2943](https://github.com/hackforla/website/pull/2943) at 2022-03-08 02:48 PM PST -Sparky-code,2022-03-09T03:48:46Z,- Sparky-code closed issue by PR 4886: [2400](https://github.com/hackforla/website/issues/2400#event-6207066669) at 2022-03-08 07:48 PM PST -Sparky-code,2022-03-09T03:48:48Z,- Sparky-code reopened issue: [2400](https://github.com/hackforla/website/issues/2400#event-6207066669) at 2022-03-08 07:48 PM PST -Sparky-code,2022-03-10T03:07:30Z,- Sparky-code commented on pull request: [2944](https://github.com/hackforla/website/pull/2944#issuecomment-1063605828) at 2022-03-09 07:07 PM PST -Sparky-code,2022-03-13T19:33:55Z,- Sparky-code pull request merged: [2943](https://github.com/hackforla/website/pull/2943#event-6231529724) at 2022-03-13 12:33 PM PDT -Sparky-code,2022-03-17T17:45:52Z,- Sparky-code assigned to issue: [2061](https://github.com/hackforla/website/issues/2061#event-5202499635) at 2022-03-17 10:45 AM PDT -Sparky-code,2022-03-19T23:07:35Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1073127448) at 2022-03-19 04:07 PM PDT -Sparky-code,2022-03-20T17:55:43Z,- Sparky-code commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073301232) at 2022-03-20 10:55 AM PDT -Sparky-code,2022-03-20T18:07:09Z,- Sparky-code submitted pull request review: [2992](https://github.com/hackforla/website/pull/2992#pullrequestreview-915134394) at 2022-03-20 11:07 AM PDT -Sparky-code,2022-03-23T23:46:55Z,- Sparky-code submitted pull request review: [3007](https://github.com/hackforla/website/pull/3007#pullrequestreview-919570873) at 2022-03-23 04:46 PM PDT -Sparky-code,2022-03-23T23:50:42Z,- Sparky-code submitted pull request review: [3006](https://github.com/hackforla/website/pull/3006#pullrequestreview-919572629) at 2022-03-23 04:50 PM PDT -Sparky-code,2022-03-24T02:49:17Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1077013611) at 2022-03-23 07:49 PM PDT -Sparky-code,2022-03-27T05:36:22Z,- Sparky-code opened issue: [3018](https://github.com/hackforla/website/issues/3018) at 2022-03-26 10:36 PM PDT -Sparky-code,2022-03-28T17:25:30Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1080940406) at 2022-03-28 10:25 AM PDT -Sparky-code,2022-03-30T19:07:11Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1083518792) at 2022-03-30 12:07 PM PDT -Sparky-code,2022-03-31T20:44:13Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1085089157) at 2022-03-31 01:44 PM PDT -Sparky-code,2022-04-02T01:43:11Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086470555) at 2022-04-01 06:43 PM PDT -Sparky-code,2022-04-04T13:05:26Z,- Sparky-code submitted pull request review: [3029](https://github.com/hackforla/website/pull/3029#pullrequestreview-930337090) at 2022-04-04 06:05 AM PDT -Sparky-code,2022-04-04T13:18:55Z,- Sparky-code submitted pull request review: [3030](https://github.com/hackforla/website/pull/3030#pullrequestreview-930357324) at 2022-04-04 06:18 AM PDT -Sparky-code,2022-04-06T16:50:15Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1090486676) at 2022-04-06 09:50 AM PDT -Sparky-code,2022-04-10T17:31:15Z,- Sparky-code commented on issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1094333200) at 2022-04-10 10:31 AM PDT -Sparky-code,2022-04-11T18:14:11Z,- Sparky-code commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1095385673) at 2022-04-11 11:14 AM PDT -Sparky-code,2022-04-11T18:52:27Z,- Sparky-code submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-938453948) at 2022-04-11 11:52 AM PDT -Sparky-code,2022-04-12T00:40:43Z,- Sparky-code commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1095740473) at 2022-04-11 05:40 PM PDT -Sparky-code,2022-04-12T17:24:44Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1096995433) at 2022-04-12 10:24 AM PDT -Sparky-code,2022-04-13T01:53:13Z,- Sparky-code commented on pull request: [3046](https://github.com/hackforla/website/pull/3046#issuecomment-1097468574) at 2022-04-12 06:53 PM PDT -Sparky-code,2022-04-14T03:59:47Z,- Sparky-code submitted pull request review: [3046](https://github.com/hackforla/website/pull/3046#pullrequestreview-941764756) at 2022-04-13 08:59 PM PDT -Sparky-code,2022-04-17T17:36:17Z,- Sparky-code submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-943971296) at 2022-04-17 10:36 AM PDT -Sparky-code,2022-04-17T18:39:32Z,- Sparky-code opened issue: [3060](https://github.com/hackforla/website/issues/3060) at 2022-04-17 11:39 AM PDT -Sparky-code,2022-04-17T18:45:19Z,- Sparky-code closed issue as completed: [3060](https://github.com/hackforla/website/issues/3060#event-6444896275) at 2022-04-17 11:45 AM PDT -Sparky-code,2022-04-18T15:01:09Z,- Sparky-code commented on pull request: [3062](https://github.com/hackforla/website/pull/3062#issuecomment-1101475754) at 2022-04-18 08:01 AM PDT -Sparky-code,2022-04-18T15:27:40Z,- Sparky-code commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1101498315) at 2022-04-18 08:27 AM PDT -Sparky-code,2022-04-18T15:30:46Z,- Sparky-code closed issue by PR 3042: [2939](https://github.com/hackforla/website/issues/2939#event-6448677531) at 2022-04-18 08:30 AM PDT -Sparky-code,2022-04-19T02:10:10Z,- Sparky-code submitted pull request review: [3062](https://github.com/hackforla/website/pull/3062#pullrequestreview-944981418) at 2022-04-18 07:10 PM PDT -Sparky-code,2022-04-19T02:24:11Z,- Sparky-code submitted pull request review: [3061](https://github.com/hackforla/website/pull/3061#pullrequestreview-944987591) at 2022-04-18 07:24 PM PDT -Sparky-code,2022-04-19T04:48:47Z,- Sparky-code closed issue by PR 3062: [2912](https://github.com/hackforla/website/issues/2912#event-6451889113) at 2022-04-18 09:48 PM PDT -Sparky-code,2022-04-19T14:07:34Z,- Sparky-code commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1102701652) at 2022-04-19 07:07 AM PDT -Sparky-code,2022-04-19T14:10:08Z,- Sparky-code commented on issue: [3055](https://github.com/hackforla/website/issues/3055#issuecomment-1102704595) at 2022-04-19 07:10 AM PDT -Sparky-code,2022-04-19T14:10:57Z,- Sparky-code commented on pull request: [3067](https://github.com/hackforla/website/pull/3067#issuecomment-1102705542) at 2022-04-19 07:10 AM PDT -Sparky-code,2022-04-19T17:54:55Z,- Sparky-code submitted pull request review: [3067](https://github.com/hackforla/website/pull/3067#pullrequestreview-946093623) at 2022-04-19 10:54 AM PDT -Sparky-code,2022-04-19T18:01:49Z,- Sparky-code closed issue by PR 3067: [2910](https://github.com/hackforla/website/issues/2910#event-6457325278) at 2022-04-19 11:01 AM PDT -Sparky-code,2022-04-21T16:07:42Z,- Sparky-code commented on pull request: [3073](https://github.com/hackforla/website/pull/3073#issuecomment-1105423007) at 2022-04-21 09:07 AM PDT -Sparky-code,2022-04-21T16:13:15Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1105428664) at 2022-04-21 09:13 AM PDT -Sparky-code,2022-04-21T23:34:34Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1105856614) at 2022-04-21 04:34 PM PDT -Sparky-code,2022-04-22T06:04:11Z,- Sparky-code submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-949476725) at 2022-04-21 11:04 PM PDT -Sparky-code,2022-04-23T05:55:46Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1107375979) at 2022-04-22 10:55 PM PDT -Sparky-code,2022-04-23T05:59:50Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1107377109) at 2022-04-22 10:59 PM PDT -Sparky-code,2022-04-23T19:29:55Z,- Sparky-code submitted pull request review: [3073](https://github.com/hackforla/website/pull/3073#pullrequestreview-951122142) at 2022-04-23 12:29 PM PDT -Sparky-code,2022-04-23T19:33:14Z,- Sparky-code closed issue by PR 3073: [2916](https://github.com/hackforla/website/issues/2916#event-6484933984) at 2022-04-23 12:33 PM PDT -Sparky-code,2022-04-23T19:39:32Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1107637788) at 2022-04-23 12:39 PM PDT -Sparky-code,2022-04-23T21:21:27Z,- Sparky-code opened pull request: [3078](https://github.com/hackforla/website/pull/3078) at 2022-04-23 02:21 PM PDT -Sparky-code,2022-04-24T23:38:47Z,- Sparky-code pull request merged: [3078](https://github.com/hackforla/website/pull/3078#event-6486532920) at 2022-04-24 04:38 PM PDT -Sparky-code,2022-04-25T01:46:43Z,- Sparky-code reopened issue: [2916](https://github.com/hackforla/website/issues/2916#event-6484933984) at 2022-04-24 06:46 PM PDT -Sparky-code,2022-04-25T02:15:30Z,- Sparky-code commented on issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1107993718) at 2022-04-24 07:15 PM PDT -Sparky-code,2022-04-25T03:32:05Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-951315293) at 2022-04-24 08:32 PM PDT -Sparky-code,2022-04-25T16:43:10Z,- Sparky-code opened issue: [3082](https://github.com/hackforla/website/issues/3082) at 2022-04-25 09:43 AM PDT -Sparky-code,2022-04-27T02:36:37Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1110468954) at 2022-04-26 07:36 PM PDT -Sparky-code,2022-04-27T03:41:45Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1110500955) at 2022-04-26 08:41 PM PDT -Sparky-code,2022-04-27T03:50:23Z,- Sparky-code commented on issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1110506971) at 2022-04-26 08:50 PM PDT -Sparky-code,2022-04-27T16:03:43Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1111180892) at 2022-04-27 09:03 AM PDT -Sparky-code,2022-04-28T14:51:36Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1112304850) at 2022-04-28 07:51 AM PDT -Sparky-code,2022-04-28T21:53:35Z,- Sparky-code submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-957086622) at 2022-04-28 02:53 PM PDT -Sparky-code,2022-05-04T15:49:16Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1117515214) at 2022-05-04 08:49 AM PDT -Sparky-code,2022-05-04T17:42:15Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1117628838) at 2022-05-04 10:42 AM PDT -Sparky-code,2022-05-08T18:05:02Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-965467321) at 2022-05-08 11:05 AM PDT -Sparky-code,2022-05-09T06:58:21Z,- Sparky-code opened issue: [3115](https://github.com/hackforla/website/issues/3115) at 2022-05-08 11:58 PM PDT -Sparky-code,2022-05-09T17:01:18Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1121350093) at 2022-05-09 10:01 AM PDT -Sparky-code,2022-05-10T15:46:45Z,- Sparky-code commented on pull request: [3114](https://github.com/hackforla/website/pull/3114#issuecomment-1122566580) at 2022-05-10 08:46 AM PDT -Sparky-code,2022-05-10T16:39:01Z,- Sparky-code submitted pull request review: [3114](https://github.com/hackforla/website/pull/3114#pullrequestreview-968101587) at 2022-05-10 09:39 AM PDT -Sparky-code,2022-05-10T16:39:40Z,- Sparky-code closed issue by PR 3114: [2728](https://github.com/hackforla/website/issues/2728#event-6583589902) at 2022-05-10 09:39 AM PDT -Sparky-code,2022-05-10T22:58:44Z,- Sparky-code opened issue: [3118](https://github.com/hackforla/website/issues/3118) at 2022-05-10 03:58 PM PDT -Sparky-code,2022-05-16T15:45:27Z,- Sparky-code submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-974188185) at 2022-05-16 08:45 AM PDT -Sparky-code,2022-05-18T02:47:08Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1129510507) at 2022-05-17 07:47 PM PDT -Sparky-code,2022-05-18T03:14:11Z,- Sparky-code opened issue: [3154](https://github.com/hackforla/website/issues/3154) at 2022-05-17 08:14 PM PDT -Sparky-code,2022-05-18T03:17:28Z,- Sparky-code opened issue: [3156](https://github.com/hackforla/website/issues/3156) at 2022-05-17 08:17 PM PDT -Sparky-code,2022-05-18T14:22:34Z,- Sparky-code closed issue as completed: [3154](https://github.com/hackforla/website/issues/3154#event-6632905224) at 2022-05-18 07:22 AM PDT -Sparky-code,2022-05-18T14:37:33Z,- Sparky-code commented on issue: [3156](https://github.com/hackforla/website/issues/3156#issuecomment-1130101358) at 2022-05-18 07:37 AM PDT -Sparky-code,2022-05-18T14:37:33Z,- Sparky-code closed issue as completed: [3156](https://github.com/hackforla/website/issues/3156#event-6633032988) at 2022-05-18 07:37 AM PDT -Sparky-code,2022-05-18T14:47:21Z,- Sparky-code commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1130112696) at 2022-05-18 07:47 AM PDT -Sparky-code,2022-05-18T15:21:29Z,- Sparky-code commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1130157287) at 2022-05-18 08:21 AM PDT -Sparky-code,2022-05-18T15:22:24Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1130158308) at 2022-05-18 08:22 AM PDT -Sparky-code,2022-05-18T15:26:50Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1130163276) at 2022-05-18 08:26 AM PDT -Sparky-code,2022-05-18T20:51:14Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-977633429) at 2022-05-18 01:51 PM PDT -Sparky-code,2022-05-18T20:52:34Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-977634833) at 2022-05-18 01:52 PM PDT -Sparky-code,2022-05-18T21:00:18Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-977642744) at 2022-05-18 02:00 PM PDT -Sparky-code,2022-05-20T05:20:48Z,- Sparky-code submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-979529300) at 2022-05-19 10:20 PM PDT -Sparky-code,2022-05-20T06:02:42Z,- Sparky-code submitted pull request review: [3085](https://github.com/hackforla/website/pull/3085#pullrequestreview-979555674) at 2022-05-19 11:02 PM PDT -Sparky-code,2022-05-20T17:34:23Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1133153572) at 2022-05-20 10:34 AM PDT -Sparky-code,2022-05-22T17:34:46Z,- Sparky-code opened issue: [3164](https://github.com/hackforla/website/issues/3164) at 2022-05-22 10:34 AM PDT -Sparky-code,2022-05-23T00:58:08Z,- Sparky-code closed issue as completed: [3164](https://github.com/hackforla/website/issues/3164#event-6656936113) at 2022-05-22 05:58 PM PDT -Sparky-code,2022-05-23T16:05:28Z,- Sparky-code commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1134864174) at 2022-05-23 09:05 AM PDT -Sparky-code,2022-05-23T16:13:05Z,- Sparky-code commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1134872331) at 2022-05-23 09:13 AM PDT -Sparky-code,2022-05-25T06:04:18Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1136765546) at 2022-05-24 11:04 PM PDT -Sparky-code,2022-05-25T06:11:33Z,- Sparky-code commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1136770867) at 2022-05-24 11:11 PM PDT -Sparky-code,2022-05-25T06:13:02Z,- Sparky-code closed issue by PR 3085: [2391](https://github.com/hackforla/website/issues/2391#event-6674655647) at 2022-05-24 11:13 PM PDT -Sparky-code,2022-05-25T06:32:20Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1136793588) at 2022-05-24 11:32 PM PDT -Sparky-code,2022-05-25T14:40:16Z,- Sparky-code commented on pull request: [3172](https://github.com/hackforla/website/pull/3172#issuecomment-1137353745) at 2022-05-25 07:40 AM PDT -Sparky-code,2022-05-25T14:40:25Z,- Sparky-code closed issue by PR 3172: [2921](https://github.com/hackforla/website/issues/2921#event-6678425872) at 2022-05-25 07:40 AM PDT -Sparky-code,2022-05-26T22:24:48Z,- Sparky-code submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-986853096) at 2022-05-26 03:24 PM PDT -Sparky-code,2022-05-27T17:37:38Z,- Sparky-code closed issue by PR 3075: [2802](https://github.com/hackforla/website/issues/2802#event-6694294473) at 2022-05-27 10:37 AM PDT -Sparky-code,2022-05-29T17:22:31Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1140491109) at 2022-05-29 10:22 AM PDT -Sparky-code,2022-05-29T20:17:40Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1140518191) at 2022-05-29 01:17 PM PDT -Sparky-code,2022-06-01T01:52:25Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1143030080) at 2022-05-31 06:52 PM PDT -Sparky-code,2022-06-01T01:55:17Z,- Sparky-code submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-991313784) at 2022-05-31 06:55 PM PDT -Sparky-code,2022-06-01T01:55:26Z,- Sparky-code closed issue by PR 3173: [2923](https://github.com/hackforla/website/issues/2923#event-6714300609) at 2022-05-31 06:55 PM PDT -Sparky-code,2022-06-04T16:50:40Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1146648439) at 2022-06-04 09:50 AM PDT -Sparky-code,2022-06-12T17:21:57Z,- Sparky-code commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1153239173) at 2022-06-12 10:21 AM PDT -Sparky-code,2022-06-12T17:22:05Z,- Sparky-code closed issue by PR 3073: [2916](https://github.com/hackforla/website/issues/2916#event-6791732750) at 2022-06-12 10:22 AM PDT -Sparky-code,2022-06-12T17:24:51Z,- Sparky-code commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1153239886) at 2022-06-12 10:24 AM PDT -Sparky-code,2022-06-12T17:30:21Z,- Sparky-code commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1153241088) at 2022-06-12 10:30 AM PDT -Sparky-code,2022-06-12T17:40:50Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1153243453) at 2022-06-12 10:40 AM PDT -Sparky-code,2022-06-12T17:50:53Z,- Sparky-code commented on pull request: [3237](https://github.com/hackforla/website/pull/3237#issuecomment-1153245815) at 2022-06-12 10:50 AM PDT -Sparky-code,2022-06-15T02:33:35Z,- Sparky-code submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-1006794722) at 2022-06-14 07:33 PM PDT -Sparky-code,2022-06-15T03:06:52Z,- Sparky-code opened issue: [3249](https://github.com/hackforla/website/issues/3249) at 2022-06-14 08:06 PM PDT -Sparky-code,2022-06-15T20:12:00Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1156885549) at 2022-06-15 01:12 PM PDT -Sparky-code,2022-06-15T20:22:59Z,- Sparky-code submitted pull request review: [3237](https://github.com/hackforla/website/pull/3237#pullrequestreview-1008083088) at 2022-06-15 01:22 PM PDT -Sparky-code,2022-06-15T20:37:16Z,- Sparky-code commented on pull request: [3237](https://github.com/hackforla/website/pull/3237#issuecomment-1156906448) at 2022-06-15 01:37 PM PDT -Sparky-code,2022-06-15T20:37:44Z,- Sparky-code closed issue by PR 3237: [2952](https://github.com/hackforla/website/issues/2952#event-6815991567) at 2022-06-15 01:37 PM PDT -Sparky-code,2022-06-15T20:37:58Z,- Sparky-code closed issue as completed: [3249](https://github.com/hackforla/website/issues/3249#event-6815992815) at 2022-06-15 01:37 PM PDT -Sparky-code,2022-06-15T20:45:21Z,- Sparky-code commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1156913033) at 2022-06-15 01:45 PM PDT -Sparky-code,2022-06-20T20:47:15Z,- Sparky-code commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1160835994) at 2022-06-20 01:47 PM PDT -Sparky-code,2022-06-22T01:03:30Z,- Sparky-code opened issue: [3281](https://github.com/hackforla/website/issues/3281) at 2022-06-21 06:03 PM PDT -Sparky-code,2022-06-22T05:22:48Z,- Sparky-code submitted pull request review: [3285](https://github.com/hackforla/website/pull/3285#pullrequestreview-1014542990) at 2022-06-21 10:22 PM PDT -Sparky-code,2022-06-22T05:24:21Z,- Sparky-code closed issue by PR 3285: [2876](https://github.com/hackforla/website/issues/2876#event-6853033478) at 2022-06-21 10:24 PM PDT -Sparky-code,2022-06-22T19:18:50Z,- Sparky-code commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1163511266) at 2022-06-22 12:18 PM PDT -Sparky-code,2022-06-23T16:08:38Z,- Sparky-code commented on pull request: [3291](https://github.com/hackforla/website/pull/3291#issuecomment-1164605011) at 2022-06-23 09:08 AM PDT -Sparky-code,2022-06-23T16:09:43Z,- Sparky-code commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1164606331) at 2022-06-23 09:09 AM PDT -Sparky-code,2022-06-23T16:10:19Z,- Sparky-code commented on pull request: [3288](https://github.com/hackforla/website/pull/3288#issuecomment-1164607011) at 2022-06-23 09:10 AM PDT -Sparky-code,2022-06-23T19:50:58Z,- Sparky-code submitted pull request review: [3288](https://github.com/hackforla/website/pull/3288#pullrequestreview-1017560866) at 2022-06-23 12:50 PM PDT -Sparky-code,2022-06-23T19:53:42Z,- Sparky-code closed issue by PR 3288: [3093](https://github.com/hackforla/website/issues/3093#event-6869155925) at 2022-06-23 12:53 PM PDT -Sparky-code,2022-06-23T19:56:31Z,- Sparky-code commented on pull request: [3261](https://github.com/hackforla/website/pull/3261#issuecomment-1164811438) at 2022-06-23 12:56 PM PDT -Sparky-code,2022-06-23T19:59:55Z,- Sparky-code submitted pull request review: [3287](https://github.com/hackforla/website/pull/3287#pullrequestreview-1017570211) at 2022-06-23 12:59 PM PDT -Sparky-code,2022-06-23T20:12:55Z,- Sparky-code commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1164824359) at 2022-06-23 01:12 PM PDT -Sparky-code,2022-06-23T20:18:00Z,- Sparky-code commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1164828435) at 2022-06-23 01:18 PM PDT -Sparky-code,2022-06-23T20:27:09Z,- Sparky-code commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1164842732) at 2022-06-23 01:27 PM PDT -Sparky-code,2022-06-23T20:29:04Z,- Sparky-code closed issue as completed: [3150](https://github.com/hackforla/website/issues/3150#event-6869399428) at 2022-06-23 01:29 PM PDT -Sparky-code,2022-06-23T20:30:32Z,- Sparky-code commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1164845420) at 2022-06-23 01:30 PM PDT -Sparky-code,2022-06-23T20:33:01Z,- Sparky-code commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1164847538) at 2022-06-23 01:33 PM PDT -Sparky-code,2022-06-23T20:42:10Z,- Sparky-code commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1164854453) at 2022-06-23 01:42 PM PDT -Sparky-code,2022-06-23T20:44:25Z,- Sparky-code commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1164856335) at 2022-06-23 01:44 PM PDT -Sparky-code,2022-06-23T20:49:57Z,- Sparky-code commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1164860519) at 2022-06-23 01:49 PM PDT -Sparky-code,2022-06-23T20:49:57Z,- Sparky-code closed issue as completed: [3065](https://github.com/hackforla/website/issues/3065#event-6869513457) at 2022-06-23 01:49 PM PDT -Sparky-code,2022-06-23T20:56:36Z,- Sparky-code commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1164865419) at 2022-06-23 01:56 PM PDT -Sparky-code,2022-06-23T20:56:36Z,- Sparky-code closed issue as completed: [3050](https://github.com/hackforla/website/issues/3050#event-6869548209) at 2022-06-23 01:56 PM PDT -Sparky-code,2022-06-23T21:01:20Z,- Sparky-code commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1164869014) at 2022-06-23 02:01 PM PDT -Sparky-code,2022-06-23T21:03:01Z,- Sparky-code commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1164870463) at 2022-06-23 02:03 PM PDT -Sparky-code,2022-06-23T21:04:22Z,- Sparky-code commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1164871504) at 2022-06-23 02:04 PM PDT -Sparky-code,2022-06-24T19:02:03Z,- Sparky-code commented on pull request: [3297](https://github.com/hackforla/website/pull/3297#issuecomment-1165851862) at 2022-06-24 12:02 PM PDT -Sparky-code,2022-06-24T19:02:30Z,- Sparky-code commented on pull request: [3298](https://github.com/hackforla/website/pull/3298#issuecomment-1165852127) at 2022-06-24 12:02 PM PDT -Sparky-code,2022-06-25T14:48:01Z,- Sparky-code submitted pull request review: [3297](https://github.com/hackforla/website/pull/3297#pullrequestreview-1019323808) at 2022-06-25 07:48 AM PDT -Sparky-code,2022-06-25T14:50:51Z,- Sparky-code submitted pull request review: [3298](https://github.com/hackforla/website/pull/3298#pullrequestreview-1019324031) at 2022-06-25 07:50 AM PDT -Sparky-code,2022-06-25T14:50:57Z,- Sparky-code closed issue by PR 3298: [3177](https://github.com/hackforla/website/issues/3177#event-6879104849) at 2022-06-25 07:50 AM PDT -Sparky-code,2022-06-26T16:32:35Z,- Sparky-code commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1166581171) at 2022-06-26 09:32 AM PDT -Sparky-code,2022-06-26T16:37:14Z,- Sparky-code commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1166582330) at 2022-06-26 09:37 AM PDT -Sparky-code,2022-06-26T16:43:57Z,- Sparky-code commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1166584104) at 2022-06-26 09:43 AM PDT -Sparky-code,2022-06-26T18:29:35Z,- Sparky-code opened issue: [3306](https://github.com/hackforla/website/issues/3306) at 2022-06-26 11:29 AM PDT -Sparky-code,2022-06-26T19:09:54Z,- Sparky-code submitted pull request review: [3263](https://github.com/hackforla/website/pull/3263#pullrequestreview-1019468880) at 2022-06-26 12:09 PM PDT -Sparky-code,2022-06-27T23:01:58Z,- Sparky-code commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1168014957) at 2022-06-27 04:01 PM PDT -Sparky-code,2022-06-27T23:04:08Z,- Sparky-code commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1168016544) at 2022-06-27 04:04 PM PDT -Sparky-code,2022-06-28T20:43:28Z,- Sparky-code commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1169216260) at 2022-06-28 01:43 PM PDT -Sparky-code,2022-06-28T20:44:11Z,- Sparky-code submitted pull request review: [3318](https://github.com/hackforla/website/pull/3318#pullrequestreview-1022380917) at 2022-06-28 01:44 PM PDT -Sparky-code,2022-06-28T21:59:01Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1169323090) at 2022-06-28 02:59 PM PDT -Sparky-code,2022-06-29T00:25:38Z,- Sparky-code commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1169410372) at 2022-06-28 05:25 PM PDT -srandolph2,3971,SKILLS ISSUE -srandolph2,2023-02-14T04:12:52Z,- srandolph2 opened issue: [3971](https://github.com/hackforla/website/issues/3971) at 2023-02-13 08:12 PM PST -srandolph2,2023-02-14T04:13:17Z,- srandolph2 assigned to issue: [3971](https://github.com/hackforla/website/issues/3971) at 2023-02-13 08:13 PM PST -srandolph2,2023-02-20T02:44:54Z,- srandolph2 assigned to issue: [4008](https://github.com/hackforla/website/issues/4008) at 2023-02-19 06:44 PM PST -srandolph2,2023-02-20T03:07:24Z,- srandolph2 opened pull request: [4011](https://github.com/hackforla/website/pull/4011) at 2023-02-19 07:07 PM PST -srandolph2,2023-02-23T00:28:16Z,- srandolph2 commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1441055645) at 2023-02-22 04:28 PM PST -srandolph2,2023-02-23T07:08:40Z,- srandolph2 pull request merged: [4011](https://github.com/hackforla/website/pull/4011#event-8588424043) at 2023-02-22 11:08 PM PST -srinipandiyan,7572,SKILLS ISSUE -srinipandiyan,2024-10-08T03:00:05Z,- srinipandiyan opened issue: [7572](https://github.com/hackforla/website/issues/7572) at 2024-10-07 08:00 PM PDT -srinipandiyan,2024-10-08T03:00:55Z,- srinipandiyan assigned to issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2398639034) at 2024-10-07 08:00 PM PDT -srinipandiyan,2024-10-13T17:03:02Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409051831) at 2024-10-13 10:03 AM PDT -srinipandiyan,2024-10-13T17:08:15Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409053638) at 2024-10-13 10:08 AM PDT -srinipandiyan,2024-10-13T18:18:33Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409074885) at 2024-10-13 11:18 AM PDT -srinipandiyan,2024-10-13T18:24:53Z,- srinipandiyan assigned to issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2389968138) at 2024-10-13 11:24 AM PDT -srinipandiyan,2024-10-13T18:29:08Z,- srinipandiyan commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2409078196) at 2024-10-13 11:29 AM PDT -srinipandiyan,2024-10-14T02:59:25Z,- srinipandiyan opened pull request: [7591](https://github.com/hackforla/website/pull/7591) at 2024-10-13 07:59 PM PDT -srinipandiyan,2024-10-14T03:02:03Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409853931) at 2024-10-13 08:02 PM PDT -srinipandiyan,2024-10-15T04:16:59Z,- srinipandiyan commented on pull request: [7591](https://github.com/hackforla/website/pull/7591#issuecomment-2412861365) at 2024-10-14 09:16 PM PDT -srinipandiyan,2024-10-16T03:02:07Z,- srinipandiyan pull request closed w/o merging: [7591](https://github.com/hackforla/website/pull/7591#event-14667411809) at 2024-10-15 08:02 PM PDT -srinipandiyan,2024-10-16T03:02:14Z,- srinipandiyan reopened pull request: [7591](https://github.com/hackforla/website/pull/7591#event-14667411809) at 2024-10-15 08:02 PM PDT -srinipandiyan,2024-10-16T03:02:41Z,- srinipandiyan pull request closed w/o merging: [7591](https://github.com/hackforla/website/pull/7591#event-14667417884) at 2024-10-15 08:02 PM PDT -srinipandiyan,2024-10-16T03:12:04Z,- srinipandiyan opened pull request: [7598](https://github.com/hackforla/website/pull/7598) at 2024-10-15 08:12 PM PDT -srinipandiyan,2024-10-16T03:25:34Z,- srinipandiyan commented on pull request: [7591](https://github.com/hackforla/website/pull/7591#issuecomment-2415648449) at 2024-10-15 08:25 PM PDT -srinipandiyan,2024-10-17T00:02:59Z,- srinipandiyan commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2418185136) at 2024-10-16 05:02 PM PDT -srinipandiyan,2024-10-19T23:05:36Z,- srinipandiyan pull request merged: [7598](https://github.com/hackforla/website/pull/7598#event-14740387109) at 2024-10-19 04:05 PM PDT -srinipandiyan,2024-10-23T17:42:20Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2432981518) at 2024-10-23 10:42 AM PDT -srinipandiyan,2024-10-23T17:43:58Z,- srinipandiyan assigned to issue: [7489](https://github.com/hackforla/website/issues/7489) at 2024-10-23 10:43 AM PDT -srinipandiyan,2024-10-23T18:10:11Z,- srinipandiyan commented on issue: [7489](https://github.com/hackforla/website/issues/7489#issuecomment-2433045486) at 2024-10-23 11:10 AM PDT -srinipandiyan,2024-10-23T18:25:20Z,- srinipandiyan opened pull request: [7628](https://github.com/hackforla/website/pull/7628) at 2024-10-23 11:25 AM PDT -srinipandiyan,2024-10-24T01:35:56Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2434034487) at 2024-10-23 06:35 PM PDT -srinipandiyan,2024-10-24T05:26:42Z,- srinipandiyan pull request merged: [7628](https://github.com/hackforla/website/pull/7628#event-14841821625) at 2024-10-23 10:26 PM PDT -srinipandiyan,2024-10-24T15:41:29Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2435639328) at 2024-10-24 08:41 AM PDT -srinipandiyan,2024-10-24T15:42:23Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2435641859) at 2024-10-24 08:42 AM PDT -srinipandiyan,2024-10-24T16:51:51Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2435784313) at 2024-10-24 09:51 AM PDT -srinipandiyan,2024-10-24T16:57:13Z,- srinipandiyan assigned to issue: [7500](https://github.com/hackforla/website/issues/7500) at 2024-10-24 09:57 AM PDT -srinipandiyan,2024-10-24T16:59:19Z,- srinipandiyan commented on issue: [7500](https://github.com/hackforla/website/issues/7500#issuecomment-2435797167) at 2024-10-24 09:59 AM PDT -srinipandiyan,2024-10-25T03:48:47Z,- srinipandiyan opened pull request: [7634](https://github.com/hackforla/website/pull/7634) at 2024-10-24 08:48 PM PDT -srinipandiyan,2024-10-25T15:51:34Z,- srinipandiyan commented on pull request: [7634](https://github.com/hackforla/website/pull/7634#issuecomment-2438183360) at 2024-10-25 08:51 AM PDT -srinipandiyan,2024-10-26T18:06:51Z,- srinipandiyan pull request merged: [7634](https://github.com/hackforla/website/pull/7634#event-14909340105) at 2024-10-26 11:06 AM PDT -srinipandiyan,2024-10-27T18:01:20Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2440119195) at 2024-10-27 11:01 AM PDT -srinipandiyan,2024-10-27T18:01:51Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2440119446) at 2024-10-27 11:01 AM PDT -srinipandiyan,2025-01-03T17:33:52Z,- srinipandiyan closed issue as completed: [7572](https://github.com/hackforla/website/issues/7572#event-15809585340) at 2025-01-03 09:33 AM PST -srinipandiyan,2025-01-03T17:34:46Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2569585167) at 2025-01-03 09:34 AM PST -srivikas777,7024,SKILLS ISSUE -srivikas777,2024-06-19T02:54:21Z,- srivikas777 opened issue: [7024](https://github.com/hackforla/website/issues/7024) at 2024-06-18 07:54 PM PDT -srivikas777,2024-06-19T02:55:10Z,- srivikas777 assigned to issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2177448322) at 2024-06-18 07:55 PM PDT -staceyrebekahscott,2023-02-28T00:24:01Z,- staceyrebekahscott commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1447333405) at 2023-02-27 04:24 PM PST -SteeRevo,6245,SKILLS ISSUE -SteeRevo,2024-02-06T03:30:20Z,- SteeRevo opened issue: [6245](https://github.com/hackforla/website/issues/6245) at 2024-02-05 07:30 PM PST -SteeRevo,2024-02-06T03:30:26Z,- SteeRevo assigned to issue: [6245](https://github.com/hackforla/website/issues/6245) at 2024-02-05 07:30 PM PST -SteeRevo,2024-02-10T05:10:24Z,- SteeRevo assigned to issue: [5841](https://github.com/hackforla/website/issues/5841) at 2024-02-09 09:10 PM PST -SteeRevo,2024-02-10T05:11:31Z,- SteeRevo commented on issue: [5841](https://github.com/hackforla/website/issues/5841#issuecomment-1936869825) at 2024-02-09 09:11 PM PST -SteeRevo,2024-02-10T05:11:31Z,- SteeRevo closed issue by PR 6279: [5841](https://github.com/hackforla/website/issues/5841#event-11763968878) at 2024-02-09 09:11 PM PST -SteeRevo,2024-02-10T05:11:33Z,- SteeRevo reopened issue: [5841](https://github.com/hackforla/website/issues/5841#event-11763968878) at 2024-02-09 09:11 PM PST -SteeRevo,2024-02-10T05:16:19Z,- SteeRevo commented on issue: [5841](https://github.com/hackforla/website/issues/5841#issuecomment-1936871281) at 2024-02-09 09:16 PM PST -SteeRevo,2024-02-11T23:34:37Z,- SteeRevo opened pull request: [6279](https://github.com/hackforla/website/pull/6279) at 2024-02-11 03:34 PM PST -SteeRevo,2024-02-15T08:39:17Z,- SteeRevo pull request merged: [6279](https://github.com/hackforla/website/pull/6279#event-11812103291) at 2024-02-15 12:39 AM PST -SteeRevo,2024-02-18T04:49:16Z,- SteeRevo assigned to issue: [6108](https://github.com/hackforla/website/issues/6108) at 2024-02-17 08:49 PM PST -SteeRevo,2024-02-18T05:56:58Z,- SteeRevo commented on issue: [6108](https://github.com/hackforla/website/issues/6108#issuecomment-1950972062) at 2024-02-17 09:56 PM PST -SteeRevo,2024-02-18T06:49:18Z,- SteeRevo opened pull request: [6315](https://github.com/hackforla/website/pull/6315) at 2024-02-17 10:49 PM PST -SteeRevo,2024-02-19T04:56:41Z,- SteeRevo pull request merged: [6315](https://github.com/hackforla/website/pull/6315#event-11844197802) at 2024-02-18 08:56 PM PST -SteeRevo,2024-02-20T04:21:56Z,- SteeRevo assigned to issue: [6227](https://github.com/hackforla/website/issues/6227#issuecomment-1925943624) at 2024-02-19 08:21 PM PST -SteeRevo,2024-02-20T04:41:24Z,- SteeRevo commented on issue: [6227](https://github.com/hackforla/website/issues/6227#issuecomment-1953478591) at 2024-02-19 08:41 PM PST -SteeRevo,2024-02-20T06:06:25Z,- SteeRevo opened pull request: [6324](https://github.com/hackforla/website/pull/6324) at 2024-02-19 10:06 PM PST -SteeRevo,2024-02-21T03:52:46Z,- SteeRevo submitted pull request review: [6322](https://github.com/hackforla/website/pull/6322#pullrequestreview-1892034627) at 2024-02-20 07:52 PM PST -SteeRevo,2024-02-21T05:21:20Z,- SteeRevo pull request merged: [6324](https://github.com/hackforla/website/pull/6324#event-11871009639) at 2024-02-20 09:21 PM PST -SteeRevo,2024-02-27T08:20:20Z,- SteeRevo assigned to issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1933324099) at 2024-02-27 12:20 AM PST -SteeRevo,2024-02-27T08:22:41Z,- SteeRevo commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1966014270) at 2024-02-27 12:22 AM PST -SteeRevo,2024-03-01T09:28:44Z,- SteeRevo commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1972828919) at 2024-03-01 01:28 AM PST -SteeRevo,2024-03-03T01:46:08Z,- SteeRevo commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1974974417) at 2024-03-02 05:46 PM PST -SteeRevo,2024-03-04T05:16:29Z,- SteeRevo commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1975749118) at 2024-03-03 09:16 PM PST -SteeRevo,2024-03-11T00:08:03Z,- SteeRevo opened pull request: [6447](https://github.com/hackforla/website/pull/6447) at 2024-03-10 05:08 PM PDT -SteeRevo,2024-03-11T03:39:50Z,- SteeRevo pull request closed w/o merging: [6447](https://github.com/hackforla/website/pull/6447#event-12067753962) at 2024-03-10 08:39 PM PDT -SteeRevo,2024-03-11T03:40:47Z,- SteeRevo unassigned from issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1975749118) at 2024-03-10 08:40 PM PDT -Steph0088,2021-11-02T16:24:25Z,- Steph0088 assigned to issue: [2344](https://github.com/hackforla/website/issues/2344#issuecomment-938218432) at 2021-11-02 09:24 AM PDT -Steph0088,2021-11-02T20:36:53Z,- Steph0088 opened pull request: [2432](https://github.com/hackforla/website/pull/2432) at 2021-11-02 01:36 PM PDT -Steph0088,2021-11-04T16:23:21Z,- Steph0088 pull request merged: [2432](https://github.com/hackforla/website/pull/2432#event-5569466729) at 2021-11-04 09:23 AM PDT -Stephen-Parent,2531,SKILLS ISSUE -Stephen-Parent,2021-12-01T23:12:07Z,- Stephen-Parent opened issue: [2531](https://github.com/hackforla/website/issues/2531) at 2021-12-01 03:12 PM PST -Stephen-Parent,2021-12-01T23:31:07Z,- Stephen-Parent assigned to issue: [2511](https://github.com/hackforla/website/issues/2511#issuecomment-975817799) at 2021-12-01 03:31 PM PST -Stephen-Parent,2021-12-04T23:41:50Z,- Stephen-Parent commented on issue: [2511](https://github.com/hackforla/website/issues/2511#issuecomment-986136304) at 2021-12-04 03:41 PM PST -Stephen-Parent,2021-12-06T17:07:40Z,- Stephen-Parent closed issue as completed: [2531](https://github.com/hackforla/website/issues/2531#event-5722042734) at 2021-12-06 09:07 AM PST -Stephen-Parent,2021-12-07T15:33:58Z,- Stephen-Parent assigned to issue: [2531](https://github.com/hackforla/website/issues/2531#event-5722042734) at 2021-12-07 07:33 AM PST -Stephen-Parent,2021-12-08T23:43:17Z,- Stephen-Parent assigned to issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-939510317) at 2021-12-08 03:43 PM PST -Stephen-Parent,2021-12-09T00:01:26Z,- Stephen-Parent commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-989325156) at 2021-12-08 04:01 PM PST -Stephen-Parent,2021-12-17T01:22:42Z,- Stephen-Parent commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-996346074) at 2021-12-16 05:22 PM PST -Stephen-Parent,2022-01-05T18:48:59Z,- Stephen-Parent unassigned from issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-1002763549) at 2022-01-05 10:48 AM PST -Stephen-Parent,2022-01-30T19:53:48Z,- Stephen-Parent assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1014847765) at 2022-01-30 11:53 AM PST -Stephen-Parent,2022-01-30T19:57:24Z,- Stephen-Parent commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1025218581) at 2022-01-30 11:57 AM PST -Stephen-Parent,2022-02-11T02:40:24Z,- Stephen-Parent commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1035811451) at 2022-02-10 06:40 PM PST -Stephen-Parent,2022-04-14T19:38:24Z,- Stephen-Parent unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1092221869) at 2022-04-14 12:38 PM PDT -StephenTheDev1001,4328,SKILLS ISSUE -StephenTheDev1001,2023-03-29T03:53:53Z,- StephenTheDev1001 opened issue: [4328](https://github.com/hackforla/website/issues/4328) at 2023-03-28 08:53 PM PDT -StephenTheDev1001,2023-03-29T04:26:34Z,- StephenTheDev1001 assigned to issue: [4328](https://github.com/hackforla/website/issues/4328) at 2023-03-28 09:26 PM PDT -StephenTheDev1001,2023-03-30T07:27:22Z,- StephenTheDev1001 assigned to issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1488143343) at 2023-03-30 12:27 AM PDT -StephenTheDev1001,2023-03-30T07:40:06Z,- StephenTheDev1001 commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1489839502) at 2023-03-30 12:40 AM PDT -StephenTheDev1001,2023-03-30T09:31:11Z,- StephenTheDev1001 opened pull request: [4346](https://github.com/hackforla/website/pull/4346) at 2023-03-30 02:31 AM PDT -StephenTheDev1001,2023-03-30T09:38:32Z,- StephenTheDev1001 commented on issue: [4328](https://github.com/hackforla/website/issues/4328#issuecomment-1489999864) at 2023-03-30 02:38 AM PDT -StephenTheDev1001,2023-04-03T02:10:26Z,- StephenTheDev1001 pull request merged: [4346](https://github.com/hackforla/website/pull/4346#event-8907762974) at 2023-04-02 07:10 PM PDT -StephenTheDev1001,2023-04-03T03:18:58Z,- StephenTheDev1001 assigned to issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1492584247) at 2023-04-02 08:18 PM PDT -StephenTheDev1001,2023-04-03T03:21:58Z,- StephenTheDev1001 commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1493589558) at 2023-04-02 08:21 PM PDT -StephenTheDev1001,2023-04-03T04:12:44Z,- StephenTheDev1001 opened pull request: [4384](https://github.com/hackforla/website/pull/4384) at 2023-04-02 09:12 PM PDT -StephenTheDev1001,2023-04-04T03:19:12Z,- StephenTheDev1001 assigned to issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1486072130) at 2023-04-03 08:19 PM PDT -StephenTheDev1001,2023-04-04T03:21:59Z,- StephenTheDev1001 commented on issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1495290708) at 2023-04-03 08:21 PM PDT -StephenTheDev1001,2023-04-04T04:01:59Z,- StephenTheDev1001 opened pull request: [4403](https://github.com/hackforla/website/pull/4403) at 2023-04-03 09:01 PM PDT -StephenTheDev1001,2023-04-04T04:05:10Z,- StephenTheDev1001 pull request closed w/o merging: [4403](https://github.com/hackforla/website/pull/4403#event-8919755128) at 2023-04-03 09:05 PM PDT -StephenTheDev1001,2023-04-04T05:28:31Z,- StephenTheDev1001 opened pull request: [4404](https://github.com/hackforla/website/pull/4404) at 2023-04-03 10:28 PM PDT -StephenTheDev1001,2023-04-04T23:02:07Z,- StephenTheDev1001 pull request merged: [4384](https://github.com/hackforla/website/pull/4384#event-8929493597) at 2023-04-04 04:02 PM PDT -StephenTheDev1001,2023-04-04T23:04:27Z,- StephenTheDev1001 pull request merged: [4404](https://github.com/hackforla/website/pull/4404#event-8929503144) at 2023-04-04 04:04 PM PDT -StephenTheDev1001,2023-04-05T04:15:37Z,- StephenTheDev1001 assigned to issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1495052986) at 2023-04-04 09:15 PM PDT -StephenTheDev1001,2023-04-05T04:18:48Z,- StephenTheDev1001 commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1496896565) at 2023-04-04 09:18 PM PDT -StephenTheDev1001,2023-04-07T04:25:26Z,- StephenTheDev1001 unassigned from issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1498220397) at 2023-04-06 09:25 PM PDT -StephenTheDev1001,2023-04-07T04:28:42Z,- StephenTheDev1001 assigned to issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1480427430) at 2023-04-06 09:28 PM PDT -StephenTheDev1001,2023-04-07T04:31:01Z,- StephenTheDev1001 commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1499923079) at 2023-04-06 09:31 PM PDT -StephenTheDev1001,2023-04-07T05:46:23Z,- StephenTheDev1001 opened pull request: [4437](https://github.com/hackforla/website/pull/4437) at 2023-04-06 10:46 PM PDT -StephenTheDev1001,2023-04-07T07:48:45Z,- StephenTheDev1001 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1500037063) at 2023-04-07 12:48 AM PDT -StephenTheDev1001,2023-04-07T21:36:16Z,- StephenTheDev1001 commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1500665694) at 2023-04-07 02:36 PM PDT -StephenTheDev1001,2023-04-11T03:46:41Z,- StephenTheDev1001 commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1502646765) at 2023-04-10 08:46 PM PDT -StephenTheDev1001,2023-04-12T02:41:12Z,- StephenTheDev1001 assigned to issue: [4473](https://github.com/hackforla/website/issues/4473) at 2023-04-11 07:41 PM PDT -StephenTheDev1001,2023-04-12T02:41:19Z,- StephenTheDev1001 unassigned from issue: [4473](https://github.com/hackforla/website/issues/4473) at 2023-04-11 07:41 PM PDT -StephenTheDev1001,2023-04-12T02:44:08Z,- StephenTheDev1001 commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1504474908) at 2023-04-11 07:44 PM PDT -StephenTheDev1001,2023-04-12T03:11:14Z,- StephenTheDev1001 opened issue: [4487](https://github.com/hackforla/website/issues/4487) at 2023-04-11 08:11 PM PDT -StephenTheDev1001,2023-04-12T05:35:47Z,- StephenTheDev1001 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1504675530) at 2023-04-11 10:35 PM PDT -StephenTheDev1001,2023-04-13T03:14:49Z,- StephenTheDev1001 pull request merged: [4437](https://github.com/hackforla/website/pull/4437#event-8992063193) at 2023-04-12 08:14 PM PDT -StephenTheDev1001,2023-04-14T06:20:10Z,- StephenTheDev1001 closed issue as completed: [4328](https://github.com/hackforla/website/issues/4328#event-9003893647) at 2023-04-13 11:20 PM PDT -StephenTheDev1001,2023-04-19T04:13:09Z,- StephenTheDev1001 commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1514106677) at 2023-04-18 09:13 PM PDT -StephenTheDev1001,2023-04-19T04:18:05Z,- StephenTheDev1001 submitted pull request review: [4546](https://github.com/hackforla/website/pull/4546#pullrequestreview-1391236614) at 2023-04-18 09:18 PM PDT -StephenTheDev1001,2023-04-20T00:22:11Z,- StephenTheDev1001 commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515543666) at 2023-04-19 05:22 PM PDT -StephenTheDev1001,2023-04-20T00:29:44Z,- StephenTheDev1001 submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1393046281) at 2023-04-19 05:29 PM PDT -StephenTheDev1001,2023-04-20T03:09:51Z,- StephenTheDev1001 commented on pull request: [4549](https://github.com/hackforla/website/pull/4549#issuecomment-1515649627) at 2023-04-19 08:09 PM PDT -StephenTheDev1001,2023-04-20T03:14:39Z,- StephenTheDev1001 submitted pull request review: [4549](https://github.com/hackforla/website/pull/4549#pullrequestreview-1393147298) at 2023-04-19 08:14 PM PDT -StephenTheDev1001,2023-04-26T01:14:20Z,- StephenTheDev1001 assigned to issue: [4563](https://github.com/hackforla/website/issues/4563) at 2023-04-25 06:14 PM PDT -StephenTheDev1001,2023-04-26T01:19:54Z,- StephenTheDev1001 unassigned from issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522624435) at 2023-04-25 06:19 PM PDT -StephenTheDev1001,2023-04-26T07:30:40Z,- StephenTheDev1001 assigned to issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522624435) at 2023-04-26 12:30 AM PDT -StephenTheDev1001,2023-04-26T07:34:45Z,- StephenTheDev1001 unassigned from issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522922459) at 2023-04-26 12:34 AM PDT -StephenTheDev1001,2023-04-29T03:49:06Z,- StephenTheDev1001 commented on pull request: [4584](https://github.com/hackforla/website/pull/4584#issuecomment-1528627523) at 2023-04-28 08:49 PM PDT -StephenTheDev1001,2023-04-29T04:03:07Z,- StephenTheDev1001 submitted pull request review: [4584](https://github.com/hackforla/website/pull/4584#pullrequestreview-1406805830) at 2023-04-28 09:03 PM PDT -StephenTheDev1001,2023-04-29T04:05:25Z,- StephenTheDev1001 commented on pull request: [4576](https://github.com/hackforla/website/pull/4576#issuecomment-1528643358) at 2023-04-28 09:05 PM PDT -StephenTheDev1001,2023-04-29T04:08:52Z,- StephenTheDev1001 submitted pull request review: [4584](https://github.com/hackforla/website/pull/4584#pullrequestreview-1406806340) at 2023-04-28 09:08 PM PDT -StephenTheDev1001,2023-04-29T04:30:30Z,- StephenTheDev1001 commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1528648124) at 2023-04-28 09:30 PM PDT -StephenTheDev1001,2023-04-29T04:38:23Z,- StephenTheDev1001 submitted pull request review: [4576](https://github.com/hackforla/website/pull/4576#pullrequestreview-1406811324) at 2023-04-28 09:38 PM PDT -StephenTheDev1001,2023-04-29T04:47:08Z,- StephenTheDev1001 submitted pull request review: [4575](https://github.com/hackforla/website/pull/4575#pullrequestreview-1406823054) at 2023-04-28 09:47 PM PDT -StephenTheDev1001,2023-05-07T06:40:21Z,- StephenTheDev1001 submitted pull request review: [4575](https://github.com/hackforla/website/pull/4575#pullrequestreview-1415852719) at 2023-05-06 11:40 PM PDT -StephenTheDev1001,2023-05-15T08:51:30Z,- StephenTheDev1001 commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1547447065) at 2023-05-15 01:51 AM PDT -StephenTheDev1001,2023-05-19T05:18:54Z,- StephenTheDev1001 assigned to issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1545289300) at 2023-05-18 10:18 PM PDT -StephenTheDev1001,2023-07-20T04:35:09Z,- StephenTheDev1001 opened pull request: [5037](https://github.com/hackforla/website/pull/5037) at 2023-07-19 09:35 PM PDT -StephenTheDev1001,2023-07-20T04:51:15Z,- StephenTheDev1001 commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1643174749) at 2023-07-19 09:51 PM PDT -StephenTheDev1001,2023-07-25T11:08:53Z,- StephenTheDev1001 commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1649626546) at 2023-07-25 04:08 AM PDT -StephenTheDev1001,2023-07-27T01:55:13Z,- StephenTheDev1001 reopened pull request: [5097](https://github.com/hackforla/website/pull/5097#event-9930433136) at 2023-07-26 06:55 PM PDT -StephenTheDev1001,2023-07-27T02:01:54Z,- StephenTheDev1001 submitted pull request review: [5097](https://github.com/hackforla/website/pull/5097#pullrequestreview-1548874440) at 2023-07-26 07:01 PM PDT -StephenTheDev1001,2023-07-28T02:13:19Z,- StephenTheDev1001 submitted pull request review: [5105](https://github.com/hackforla/website/pull/5105#pullrequestreview-1551193062) at 2023-07-27 07:13 PM PDT -StephenTheDev1001,2023-07-31T02:49:37Z,- StephenTheDev1001 pull request merged: [5037](https://github.com/hackforla/website/pull/5037#event-9958515313) at 2023-07-30 07:49 PM PDT -StephenTheDev1001,2023-08-11T18:55:03Z,- StephenTheDev1001 submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1574228469) at 2023-08-11 11:55 AM PDT -StephenTheDev1001,2023-08-20T03:45:46Z,- StephenTheDev1001 commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1685167705) at 2023-08-19 08:45 PM PDT -StephenTheDev1001,2023-08-20T06:59:37Z,- StephenTheDev1001 opened issue: [5264](https://github.com/hackforla/website/issues/5264) at 2023-08-19 11:59 PM PDT -StephenTheDev1001,2023-08-20T07:05:32Z,- StephenTheDev1001 commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1685205907) at 2023-08-20 12:05 AM PDT -StephenTheDev1001,2023-08-20T19:08:23Z,- StephenTheDev1001 submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1585951204) at 2023-08-20 12:08 PM PDT -StephenTheDev1001,2023-08-21T23:13:00Z,- StephenTheDev1001 submitted pull request review: [5259](https://github.com/hackforla/website/pull/5259#pullrequestreview-1588037277) at 2023-08-21 04:13 PM PDT -StephenTheDev1001,2023-08-21T23:59:45Z,- StephenTheDev1001 submitted pull request review: [5280](https://github.com/hackforla/website/pull/5280#pullrequestreview-1588077565) at 2023-08-21 04:59 PM PDT -StephenTheDev1001,2023-08-22T00:04:57Z,- StephenTheDev1001 submitted pull request review: [5275](https://github.com/hackforla/website/pull/5275#pullrequestreview-1588081435) at 2023-08-21 05:04 PM PDT -StephenTheDev1001,2023-08-22T03:52:52Z,- StephenTheDev1001 submitted pull request review: [5275](https://github.com/hackforla/website/pull/5275#pullrequestreview-1588229348) at 2023-08-21 08:52 PM PDT -StephenTheDev1001,2023-08-22T06:10:16Z,- StephenTheDev1001 submitted pull request review: [5275](https://github.com/hackforla/website/pull/5275#pullrequestreview-1588433107) at 2023-08-21 11:10 PM PDT -StephenTheDev1001,2023-08-22T19:40:35Z,- StephenTheDev1001 assigned to issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1685205907) at 2023-08-22 12:40 PM PDT -StephenTheDev1001,2023-08-23T04:27:20Z,- StephenTheDev1001 opened issue: [5289](https://github.com/hackforla/website/issues/5289) at 2023-08-22 09:27 PM PDT -StephenTheDev1001,2023-08-23T04:27:21Z,- StephenTheDev1001 assigned to issue: [5289](https://github.com/hackforla/website/issues/5289) at 2023-08-22 09:27 PM PDT -StephenTheDev1001,2023-08-23T04:30:29Z,- StephenTheDev1001 commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1689264226) at 2023-08-22 09:30 PM PDT -StephenTheDev1001,2023-08-23T04:59:31Z,- StephenTheDev1001 unassigned from issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1689264226) at 2023-08-22 09:59 PM PDT -StephenTheDev1001,2023-08-23T05:58:28Z,- StephenTheDev1001 commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1689326429) at 2023-08-22 10:58 PM PDT -StephenTheDev1001,2023-08-23T05:58:28Z,- StephenTheDev1001 closed issue as completed: [5264](https://github.com/hackforla/website/issues/5264#event-10165801553) at 2023-08-22 10:58 PM PDT -StephenTheDev1001,2023-08-23T06:32:06Z,- StephenTheDev1001 opened issue: [5290](https://github.com/hackforla/website/issues/5290) at 2023-08-22 11:32 PM PDT -StephenTheDev1001,2023-08-23T06:46:01Z,- StephenTheDev1001 opened issue: [5291](https://github.com/hackforla/website/issues/5291) at 2023-08-22 11:46 PM PDT -StephenTheDev1001,2023-08-23T06:48:11Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689376773) at 2023-08-22 11:48 PM PDT -StephenTheDev1001,2023-08-23T06:48:15Z,- StephenTheDev1001 assigned to issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689376773) at 2023-08-22 11:48 PM PDT -StephenTheDev1001,2023-08-23T07:08:06Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689400374) at 2023-08-23 12:08 AM PDT -StephenTheDev1001,2023-08-23T07:18:29Z,- StephenTheDev1001 opened issue: [5292](https://github.com/hackforla/website/issues/5292) at 2023-08-23 12:18 AM PDT -StephenTheDev1001,2023-08-23T07:21:43Z,- StephenTheDev1001 opened issue: [5293](https://github.com/hackforla/website/issues/5293) at 2023-08-23 12:21 AM PDT -StephenTheDev1001,2023-08-23T07:34:27Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689439613) at 2023-08-23 12:34 AM PDT -StephenTheDev1001,2023-08-24T01:49:55Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1690868265) at 2023-08-23 06:49 PM PDT -StephenTheDev1001,2023-08-24T01:54:36Z,- StephenTheDev1001 commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1690871592) at 2023-08-23 06:54 PM PDT -StephenTheDev1001,2023-08-24T22:06:29Z,- StephenTheDev1001 commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1692476876) at 2023-08-24 03:06 PM PDT -StephenTheDev1001,2023-08-25T02:21:46Z,- StephenTheDev1001 submitted pull request review: [5251](https://github.com/hackforla/website/pull/5251#pullrequestreview-1594722489) at 2023-08-24 07:21 PM PDT -StephenTheDev1001,2023-08-25T04:52:45Z,- StephenTheDev1001 opened issue: [5300](https://github.com/hackforla/website/issues/5300) at 2023-08-24 09:52 PM PDT -StephenTheDev1001,2023-08-25T04:59:28Z,- StephenTheDev1001 opened issue: [5301](https://github.com/hackforla/website/issues/5301) at 2023-08-24 09:59 PM PDT -StephenTheDev1001,2023-08-25T05:03:23Z,- StephenTheDev1001 opened issue: [5302](https://github.com/hackforla/website/issues/5302) at 2023-08-24 10:03 PM PDT -StephenTheDev1001,2023-08-25T05:06:02Z,- StephenTheDev1001 opened issue: [5303](https://github.com/hackforla/website/issues/5303) at 2023-08-24 10:06 PM PDT -StephenTheDev1001,2023-08-25T05:09:00Z,- StephenTheDev1001 opened issue: [5304](https://github.com/hackforla/website/issues/5304) at 2023-08-24 10:09 PM PDT -StephenTheDev1001,2023-08-25T05:11:37Z,- StephenTheDev1001 opened issue: [5305](https://github.com/hackforla/website/issues/5305) at 2023-08-24 10:11 PM PDT -StephenTheDev1001,2023-08-25T05:13:19Z,- StephenTheDev1001 opened issue: [5306](https://github.com/hackforla/website/issues/5306) at 2023-08-24 10:13 PM PDT -StephenTheDev1001,2023-08-25T05:24:07Z,- StephenTheDev1001 opened issue: [5307](https://github.com/hackforla/website/issues/5307) at 2023-08-24 10:24 PM PDT -StephenTheDev1001,2023-08-27T00:13:28Z,- StephenTheDev1001 commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1694528818) at 2023-08-26 05:13 PM PDT -StephenTheDev1001,2023-08-28T00:32:33Z,- StephenTheDev1001 commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1694817723) at 2023-08-27 05:32 PM PDT -StephenTheDev1001,2023-08-28T00:41:59Z,- StephenTheDev1001 opened issue: [5326](https://github.com/hackforla/website/issues/5326) at 2023-08-27 05:41 PM PDT -StephenTheDev1001,2023-08-29T00:01:23Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1696581188) at 2023-08-28 05:01 PM PDT -StephenTheDev1001,2023-08-29T00:18:05Z,- StephenTheDev1001 commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1696593903) at 2023-08-28 05:18 PM PDT -StephenTheDev1001,2023-08-30T00:28:04Z,- StephenTheDev1001 closed issue as completed: [5306](https://github.com/hackforla/website/issues/5306#event-10227070586) at 2023-08-29 05:28 PM PDT -StephenTheDev1001,2023-08-30T00:29:01Z,- StephenTheDev1001 closed issue as not planned: [5304](https://github.com/hackforla/website/issues/5304#event-10227075576) at 2023-08-29 05:29 PM PDT -StephenTheDev1001,2023-08-30T06:37:22Z,- StephenTheDev1001 reopened issue: [5306](https://github.com/hackforla/website/issues/5306#event-10227070586) at 2023-08-29 11:37 PM PDT -StephenTheDev1001,2023-08-30T06:37:39Z,- StephenTheDev1001 closed issue as not planned: [5306](https://github.com/hackforla/website/issues/5306#event-10228993302) at 2023-08-29 11:37 PM PDT -StephenTheDev1001,2023-08-30T06:39:40Z,- StephenTheDev1001 commented on issue: [5307](https://github.com/hackforla/website/issues/5307#issuecomment-1698583432) at 2023-08-29 11:39 PM PDT -StephenTheDev1001,2023-08-30T06:39:40Z,- StephenTheDev1001 closed issue as not planned: [5307](https://github.com/hackforla/website/issues/5307#event-10229013502) at 2023-08-29 11:39 PM PDT -StephenTheDev1001,2023-08-30T06:40:08Z,- StephenTheDev1001 commented on issue: [5305](https://github.com/hackforla/website/issues/5305#issuecomment-1698583929) at 2023-08-29 11:40 PM PDT -StephenTheDev1001,2023-08-30T06:40:08Z,- StephenTheDev1001 closed issue as not planned: [5305](https://github.com/hackforla/website/issues/5305#event-10229018149) at 2023-08-29 11:40 PM PDT -StephenTheDev1001,2023-08-30T06:40:47Z,- StephenTheDev1001 closed issue as not planned: [5303](https://github.com/hackforla/website/issues/5303#event-10229024423) at 2023-08-29 11:40 PM PDT -StephenTheDev1001,2023-08-30T06:41:09Z,- StephenTheDev1001 closed issue as not planned: [5302](https://github.com/hackforla/website/issues/5302#event-10229028134) at 2023-08-29 11:41 PM PDT -StephenTheDev1001,2023-08-30T06:41:26Z,- StephenTheDev1001 closed issue as not planned: [5301](https://github.com/hackforla/website/issues/5301#event-10229030248) at 2023-08-29 11:41 PM PDT -StephenTheDev1001,2023-08-30T06:42:40Z,- StephenTheDev1001 closed issue as not planned: [5300](https://github.com/hackforla/website/issues/5300#event-10229039778) at 2023-08-29 11:42 PM PDT -StephenTheDev1001,2023-08-30T06:43:02Z,- StephenTheDev1001 closed issue as not planned: [5293](https://github.com/hackforla/website/issues/5293#event-10229042629) at 2023-08-29 11:43 PM PDT -StephenTheDev1001,2023-08-30T06:43:29Z,- StephenTheDev1001 closed issue as not planned: [5292](https://github.com/hackforla/website/issues/5292#event-10229046591) at 2023-08-29 11:43 PM PDT -StephenTheDev1001,2023-08-30T06:43:54Z,- StephenTheDev1001 closed issue as not planned: [5291](https://github.com/hackforla/website/issues/5291#event-10229050412) at 2023-08-29 11:43 PM PDT -StephenTheDev1001,2023-09-01T01:03:17Z,- StephenTheDev1001 submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1605954973) at 2023-08-31 06:03 PM PDT -StephenTheDev1001,2023-09-01T02:28:04Z,- StephenTheDev1001 commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1702025871) at 2023-08-31 07:28 PM PDT -StephenTheDev1001,2023-09-01T02:59:17Z,- StephenTheDev1001 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1606126103) at 2023-08-31 07:59 PM PDT -StephenTheDev1001,2023-09-01T18:40:57Z,- StephenTheDev1001 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1607479858) at 2023-09-01 11:40 AM PDT -StephenVNelson,2019-11-05T03:14:54Z,- StephenVNelson assigned to issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174727) at 2019-11-04 07:14 PM PST -StephenVNelson,2019-11-05T04:17:00Z,- StephenVNelson commented on issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549656130) at 2019-11-04 08:17 PM PST -StephenVNelson,2019-11-12T02:57:48Z,- StephenVNelson unassigned from issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549656130) at 2019-11-11 06:57 PM PST -StephenVNelson,2019-11-19T03:15:59Z,- StephenVNelson assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-545346609) at 2019-11-18 07:15 PM PST -StephenVNelson,2019-11-25T07:25:01Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-558026053) at 2019-11-24 11:25 PM PST -StephenVNelson,2019-11-26T03:19:10Z,- StephenVNelson assigned to issue: [193](https://github.com/hackforla/website/issues/193) at 2019-11-25 07:19 PM PST -StephenVNelson,2019-11-26T03:24:12Z,- StephenVNelson assigned to issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:24 PM PST -StephenVNelson,2019-11-26T04:22:16Z,- StephenVNelson unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 08:22 PM PST -StephenVNelson,2019-12-03T00:18:38Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-560940316) at 2019-12-02 04:18 PM PST -StephenVNelson,2019-12-03T18:37:25Z,- StephenVNelson assigned to issue: [202](https://github.com/hackforla/website/issues/202) at 2019-12-03 10:37 AM PST -StephenVNelson,2019-12-05T02:40:17Z,- StephenVNelson commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-561940785) at 2019-12-04 06:40 PM PST -StephenVNelson,2019-12-05T02:44:02Z,- StephenVNelson commented on issue: [150](https://github.com/hackforla/website/issues/150#issuecomment-561941631) at 2019-12-04 06:44 PM PST -StephenVNelson,2019-12-05T03:05:17Z,- StephenVNelson opened pull request: [213](https://github.com/hackforla/website/pull/213) at 2019-12-04 07:05 PM PST -StephenVNelson,2019-12-06T00:42:42Z,- StephenVNelson assigned to issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-05 04:42 PM PST -StephenVNelson,2019-12-10T23:48:26Z,- StephenVNelson unassigned from issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-10 03:48 PM PST -StephenVNelson,2019-12-19T22:54:29Z,- StephenVNelson opened pull request: [218](https://github.com/hackforla/website/pull/218) at 2019-12-19 02:54 PM PST -StephenVNelson,2019-12-31T02:25:12Z,- StephenVNelson pull request closed w/o merging: [218](https://github.com/hackforla/website/pull/218#event-2914991880) at 2019-12-30 06:25 PM PST -StephenVNelson,2019-12-31T02:25:31Z,- StephenVNelson pull request closed w/o merging: [213](https://github.com/hackforla/website/pull/213#event-2914992094) at 2019-12-30 06:25 PM PST -StephenVNelson,2019-12-31T03:14:52Z,- StephenVNelson assigned to issue: [236](https://github.com/hackforla/website/issues/236) at 2019-12-30 07:14 PM PST -StephenVNelson,2019-12-31T06:41:40Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-569874876) at 2019-12-30 10:41 PM PST -StephenVNelson,2019-12-31T06:46:51Z,- StephenVNelson opened pull request: [243](https://github.com/hackforla/website/pull/243) at 2019-12-30 10:46 PM PST -StephenVNelson,2019-12-31T06:47:43Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-569875643) at 2019-12-30 10:47 PM PST -StephenVNelson,2019-12-31T23:03:34Z,- StephenVNelson commented on issue: [236](https://github.com/hackforla/website/issues/236#issuecomment-570003137) at 2019-12-31 03:03 PM PST -StephenVNelson,2020-01-07T03:13:51Z,- StephenVNelson pull request closed w/o merging: [243](https://github.com/hackforla/website/pull/243#event-2926275651) at 2020-01-06 07:13 PM PST -StephenVNelson,2020-01-07T04:34:24Z,- StephenVNelson assigned to issue: [254](https://github.com/hackforla/website/issues/254) at 2020-01-06 08:34 PM PST -StephenVNelson,2020-01-14T06:29:01Z,- StephenVNelson opened pull request: [261](https://github.com/hackforla/website/pull/261) at 2020-01-13 10:29 PM PST -StephenVNelson,2020-01-14T06:30:28Z,- StephenVNelson commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-574024660) at 2020-01-13 10:30 PM PST -StephenVNelson,2020-01-14T06:39:31Z,- StephenVNelson commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-574027160) at 2020-01-13 10:39 PM PST -StephenVNelson,2020-02-09T13:04:37Z,- StephenVNelson submitted pull request review: [300](https://github.com/hackforla/website/pull/300#pullrequestreview-355605914) at 2020-02-09 05:04 AM PST -StephenVNelson,2020-02-09T13:07:54Z,- StephenVNelson submitted pull request review: [300](https://github.com/hackforla/website/pull/300#pullrequestreview-355606087) at 2020-02-09 05:07 AM PST -StephenVNelson,2020-02-12T02:53:31Z,- StephenVNelson commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-584994945) at 2020-02-11 06:53 PM PST -StephenVNelson,2020-02-16T18:34:29Z,- StephenVNelson unassigned from issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-578530739) at 2020-02-16 10:34 AM PST -StephenVNelson,2020-05-03T19:53:31Z,- StephenVNelson unassigned from issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-605730441) at 2020-05-03 12:53 PM PDT -StephenVNelson,2020-06-01T02:54:34Z,- StephenVNelson unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-636585768) at 2020-05-31 07:54 PM PDT -StephenVNelson,2020-06-29T23:20:17Z,- StephenVNelson pull request closed w/o merging: [261](https://github.com/hackforla/website/pull/261#event-3494928360) at 2020-06-29 04:20 PM PDT -steven-positive-tran,3826,SKILLS ISSUE -steven-positive-tran,2023-01-17T03:47:21Z,- steven-positive-tran opened issue: [3826](https://github.com/hackforla/website/issues/3826) at 2023-01-16 07:47 PM PST -steven-positive-tran,2023-01-17T04:04:52Z,- steven-positive-tran assigned to issue: [3826](https://github.com/hackforla/website/issues/3826) at 2023-01-16 08:04 PM PST -steven-positive-tran,2023-01-23T07:33:30Z,- steven-positive-tran assigned to issue: [3823](https://github.com/hackforla/website/issues/3823) at 2023-01-22 11:33 PM PST -steven-positive-tran,2023-01-23T07:45:16Z,- steven-positive-tran commented on issue: [3823](https://github.com/hackforla/website/issues/3823#issuecomment-1399924466) at 2023-01-22 11:45 PM PST -steven-positive-tran,2023-01-24T04:19:58Z,- steven-positive-tran opened pull request: [3864](https://github.com/hackforla/website/pull/3864) at 2023-01-23 08:19 PM PST -steven-positive-tran,2023-01-24T04:25:32Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1401380135) at 2023-01-23 08:25 PM PST -steven-positive-tran,2023-01-24T04:25:32Z,- steven-positive-tran closed issue as completed: [3826](https://github.com/hackforla/website/issues/3826#event-8340495657) at 2023-01-23 08:25 PM PST -steven-positive-tran,2023-01-25T03:13:21Z,- steven-positive-tran commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1403040787) at 2023-01-24 07:13 PM PST -steven-positive-tran,2023-01-26T18:47:25Z,- steven-positive-tran pull request merged: [3864](https://github.com/hackforla/website/pull/3864#event-8366877325) at 2023-01-26 10:47 AM PST -steven-positive-tran,2023-01-28T09:21:03Z,- steven-positive-tran assigned to issue: [2148](https://github.com/hackforla/website/issues/2148) at 2023-01-28 01:21 AM PST -steven-positive-tran,2023-01-28T09:23:46Z,- steven-positive-tran commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1407352242) at 2023-01-28 01:23 AM PST -steven-positive-tran,2023-01-30T05:18:27Z,- steven-positive-tran opened pull request: [3896](https://github.com/hackforla/website/pull/3896) at 2023-01-29 09:18 PM PST -steven-positive-tran,2023-02-01T02:34:31Z,- steven-positive-tran pull request closed w/o merging: [3896](https://github.com/hackforla/website/pull/3896#event-8405651053) at 2023-01-31 06:34 PM PST -steven-positive-tran,2023-02-01T02:35:11Z,- steven-positive-tran unassigned from issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1411369489) at 2023-01-31 06:35 PM PST -steven-positive-tran,2023-02-01T07:26:21Z,- steven-positive-tran assigned to issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1338233914) at 2023-01-31 11:26 PM PST -steven-positive-tran,2023-02-01T07:29:19Z,- steven-positive-tran commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-01-31 11:29 PM PST -steven-positive-tran,2023-02-07T08:36:22Z,- steven-positive-tran opened pull request: [3947](https://github.com/hackforla/website/pull/3947) at 2023-02-07 12:36 AM PST -steven-positive-tran,2023-02-09T00:10:20Z,- steven-positive-tran pull request merged: [3947](https://github.com/hackforla/website/pull/3947#event-8474176862) at 2023-02-08 04:10 PM PST -steven-positive-tran,2023-02-25T11:37:25Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1445061763) at 2023-02-25 03:37 AM PST -steven-positive-tran,2023-02-25T11:37:25Z,- steven-positive-tran closed issue as completed: [3826](https://github.com/hackforla/website/issues/3826#event-8607783050) at 2023-02-25 03:37 AM PST -steven-positive-tran,2023-02-26T11:40:04Z,- steven-positive-tran assigned to issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301633567) at 2023-02-26 03:40 AM PST -steven-positive-tran,2023-02-26T11:40:45Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1445338918) at 2023-02-26 03:40 AM PST -steven-positive-tran,2023-02-27T06:44:25Z,- steven-positive-tran commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1445791820) at 2023-02-26 10:44 PM PST -steven-positive-tran,2023-02-27T07:15:50Z,- steven-positive-tran submitted pull request review: [4048](https://github.com/hackforla/website/pull/4048#pullrequestreview-1315009675) at 2023-02-26 11:15 PM PST -steven-positive-tran,2023-03-01T03:10:33Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1449268122) at 2023-02-28 07:10 PM PST -steven-positive-tran,2023-03-07T07:57:04Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1457713055) at 2023-03-06 11:57 PM PST -steven-positive-tran,2023-03-10T08:53:25Z,- steven-positive-tran opened issue: [4146](https://github.com/hackforla/website/issues/4146) at 2023-03-10 12:53 AM PST -steven-positive-tran,2023-03-10T08:56:05Z,- steven-positive-tran closed issue as completed: [2216](https://github.com/hackforla/website/issues/2216#event-8716052303) at 2023-03-10 12:56 AM PST -steven-positive-tran,2023-03-10T08:57:40Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1463479166) at 2023-03-10 12:57 AM PST -steven-positive-tran,2023-03-10T08:57:40Z,- steven-positive-tran reopened issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1463479166) at 2023-03-10 12:57 AM PST -steven-positive-tran,2023-03-12T21:32:20Z,- steven-positive-tran commented on pull request: [4150](https://github.com/hackforla/website/pull/4150#issuecomment-1465305198) at 2023-03-12 02:32 PM PDT -steven-positive-tran,2023-03-13T03:31:07Z,- steven-positive-tran submitted pull request review: [4150](https://github.com/hackforla/website/pull/4150#pullrequestreview-1336203403) at 2023-03-12 08:31 PM PDT -steven-positive-tran,2023-03-13T03:49:54Z,- steven-positive-tran commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1465467712) at 2023-03-12 08:49 PM PDT -steven-positive-tran,2023-03-13T07:20:23Z,- steven-positive-tran submitted pull request review: [4135](https://github.com/hackforla/website/pull/4135#pullrequestreview-1336366713) at 2023-03-13 12:20 AM PDT -steven-positive-tran,2023-03-16T06:50:55Z,- steven-positive-tran closed issue as completed: [2216](https://github.com/hackforla/website/issues/2216#event-8763524582) at 2023-03-15 11:50 PM PDT -steven-positive-tran,2023-03-21T07:04:16Z,- steven-positive-tran commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1477363764) at 2023-03-21 12:04 AM PDT -steven-positive-tran,2023-03-21T07:18:44Z,- steven-positive-tran commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1477375270) at 2023-03-21 12:18 AM PDT -steven-positive-tran,2023-03-21T07:19:12Z,- steven-positive-tran assigned to issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1477375270) at 2023-03-21 12:19 AM PDT -steven-positive-tran,2023-03-21T07:24:26Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1477379815) at 2023-03-21 12:24 AM PDT -steven-positive-tran,2023-03-21T07:24:27Z,- steven-positive-tran closed issue as completed: [3826](https://github.com/hackforla/website/issues/3826#event-8802140708) at 2023-03-21 12:24 AM PDT -steven-positive-tran,2023-03-22T08:23:13Z,- steven-positive-tran submitted pull request review: [4222](https://github.com/hackforla/website/pull/4222#pullrequestreview-1351941564) at 2023-03-22 01:23 AM PDT -steven-positive-tran,2023-03-25T09:20:19Z,- steven-positive-tran commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1483773952) at 2023-03-25 02:20 AM PDT -steven-positive-tran,2023-04-03T00:43:18Z,- steven-positive-tran unassigned from issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1483943633) at 2023-04-02 05:43 PM PDT -steven-positive-tran,2023-04-03T00:45:04Z,- steven-positive-tran commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1493490600) at 2023-04-02 05:45 PM PDT -steven-positive-tran,2023-04-07T06:30:05Z,- steven-positive-tran commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1499985059) at 2023-04-06 11:30 PM PDT -steven-positive-tran,2023-04-10T04:58:03Z,- steven-positive-tran commented on pull request: [4453](https://github.com/hackforla/website/pull/4453#issuecomment-1501391253) at 2023-04-09 09:58 PM PDT -steven-positive-tran,2023-04-10T05:41:54Z,- steven-positive-tran submitted pull request review: [4453](https://github.com/hackforla/website/pull/4453#pullrequestreview-1377106427) at 2023-04-09 10:41 PM PDT -steven-positive-tran,2023-04-10T06:03:26Z,- steven-positive-tran commented on pull request: [4444](https://github.com/hackforla/website/pull/4444#issuecomment-1501433358) at 2023-04-09 11:03 PM PDT -steven-positive-tran,2023-04-11T05:52:42Z,- steven-positive-tran submitted pull request review: [4444](https://github.com/hackforla/website/pull/4444#pullrequestreview-1378492428) at 2023-04-10 10:52 PM PDT -steven-positive-tran,2023-04-11T05:55:19Z,- steven-positive-tran commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1502725921) at 2023-04-10 10:55 PM PDT -steven-positive-tran,2023-04-11T05:56:30Z,- steven-positive-tran commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1502726922) at 2023-04-10 10:56 PM PDT -steven-positive-tran,2023-04-11T06:44:54Z,- steven-positive-tran submitted pull request review: [4465](https://github.com/hackforla/website/pull/4465#pullrequestreview-1378546556) at 2023-04-10 11:44 PM PDT -steven-positive-tran,2023-04-11T06:54:13Z,- steven-positive-tran assigned to issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1453087219) at 2023-04-10 11:54 PM PDT -steven-positive-tran,2023-04-11T06:59:35Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1502780083) at 2023-04-10 11:59 PM PDT -steven-positive-tran,2023-04-12T02:36:46Z,- steven-positive-tran submitted pull request review: [4453](https://github.com/hackforla/website/pull/4453#pullrequestreview-1380344792) at 2023-04-11 07:36 PM PDT -steven-positive-tran,2023-04-12T03:08:14Z,- steven-positive-tran opened issue: [4485](https://github.com/hackforla/website/issues/4485) at 2023-04-11 08:08 PM PDT -steven-positive-tran,2023-04-17T04:01:51Z,- steven-positive-tran commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1510661665) at 2023-04-16 09:01 PM PDT -steven-positive-tran,2023-04-18T04:16:48Z,- steven-positive-tran commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1512410552) at 2023-04-17 09:16 PM PDT -steven-positive-tran,2023-04-18T04:55:51Z,- steven-positive-tran submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1389285419) at 2023-04-17 09:55 PM PDT -steven-positive-tran,2023-04-18T05:04:49Z,- steven-positive-tran submitted pull request review: [4524](https://github.com/hackforla/website/pull/4524#pullrequestreview-1389291971) at 2023-04-17 10:04 PM PDT -steven-positive-tran,2023-04-18T06:46:04Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1512529366) at 2023-04-17 11:46 PM PDT -steven-positive-tran,2023-04-28T07:43:37Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1527132538) at 2023-04-28 12:43 AM PDT -steven-positive-tran,2023-05-02T04:27:21Z,- steven-positive-tran commented on pull request: [4586](https://github.com/hackforla/website/pull/4586#issuecomment-1530858762) at 2023-05-01 09:27 PM PDT -steven-positive-tran,2023-05-02T05:24:44Z,- steven-positive-tran submitted pull request review: [4586](https://github.com/hackforla/website/pull/4586#pullrequestreview-1408405452) at 2023-05-01 10:24 PM PDT -steven-positive-tran,2023-05-08T04:31:50Z,- steven-positive-tran commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1537730865) at 2023-05-07 09:31 PM PDT -steven-positive-tran,2023-05-09T07:06:58Z,- steven-positive-tran submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1418012284) at 2023-05-09 12:06 AM PDT -steven-positive-tran,2023-05-10T00:33:23Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1541059833) at 2023-05-09 05:33 PM PDT -steven-positive-tran,2023-05-10T01:16:29Z,- steven-positive-tran commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1541126381) at 2023-05-09 06:16 PM PDT -steven-positive-tran,2023-05-10T01:16:41Z,- steven-positive-tran commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1541126783) at 2023-05-09 06:16 PM PDT -steven-positive-tran,2023-05-10T03:41:20Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1541303322) at 2023-05-09 08:41 PM PDT -steven-positive-tran,2023-05-10T06:13:22Z,- steven-positive-tran submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1419845948) at 2023-05-09 11:13 PM PDT -steven-positive-tran,2023-05-10T06:27:03Z,- steven-positive-tran submitted pull request review: [4643](https://github.com/hackforla/website/pull/4643#pullrequestreview-1419860877) at 2023-05-09 11:27 PM PDT -steven-positive-tran,2023-05-11T05:59:57Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1543385011) at 2023-05-10 10:59 PM PDT -steven-positive-tran,2023-05-13T01:25:51Z,- steven-positive-tran submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1425300042) at 2023-05-12 06:25 PM PDT -steven-positive-tran,2023-05-13T02:48:13Z,- steven-positive-tran submitted pull request review: [4646](https://github.com/hackforla/website/pull/4646#pullrequestreview-1425311497) at 2023-05-12 07:48 PM PDT -steven-positive-tran,2023-05-14T23:29:02Z,- steven-positive-tran commented on pull request: [4667](https://github.com/hackforla/website/pull/4667#issuecomment-1547027156) at 2023-05-14 04:29 PM PDT -steven-positive-tran,2023-05-14T23:31:28Z,- steven-positive-tran commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1547027828) at 2023-05-14 04:31 PM PDT -steven-positive-tran,2023-05-16T05:42:37Z,- steven-positive-tran submitted pull request review: [4661](https://github.com/hackforla/website/pull/4661#pullrequestreview-1427756154) at 2023-05-15 10:42 PM PDT -steven-positive-tran,2023-05-16T05:46:50Z,- steven-positive-tran submitted pull request review: [4667](https://github.com/hackforla/website/pull/4667#pullrequestreview-1427761851) at 2023-05-15 10:46 PM PDT -steven-positive-tran,2023-05-16T06:42:20Z,- steven-positive-tran commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1549076602) at 2023-05-15 11:42 PM PDT -steven-positive-tran,2023-06-01T04:51:59Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1571334718) at 2023-05-31 09:51 PM PDT -steven-positive-tran,2023-06-06T06:16:08Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1577979321) at 2023-06-05 11:16 PM PDT -steven-positive-tran,2023-06-07T05:22:02Z,- steven-positive-tran commented on pull request: [4789](https://github.com/hackforla/website/pull/4789#issuecomment-1579917106) at 2023-06-06 10:22 PM PDT -steven-positive-tran,2023-06-07T05:23:13Z,- steven-positive-tran commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1579918469) at 2023-06-06 10:23 PM PDT -steven-positive-tran,2023-06-12T01:38:02Z,- steven-positive-tran submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1473912919) at 2023-06-11 06:38 PM PDT -steven-positive-tran,2023-06-12T01:38:38Z,- steven-positive-tran submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1473913180) at 2023-06-11 06:38 PM PDT -steven-positive-tran,2023-06-13T23:56:43Z,- steven-positive-tran commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1590221979) at 2023-06-13 04:56 PM PDT -steven-positive-tran,2023-06-13T23:57:15Z,- steven-positive-tran commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1590222578) at 2023-06-13 04:57 PM PDT -steven-positive-tran,2023-06-14T18:07:40Z,- steven-positive-tran submitted pull request review: [4796](https://github.com/hackforla/website/pull/4796#pullrequestreview-1480035542) at 2023-06-14 11:07 AM PDT -steven-positive-tran,2023-06-14T20:47:26Z,- steven-positive-tran submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1480276467) at 2023-06-14 01:47 PM PDT -steven-positive-tran,2023-06-21T00:15:44Z,- steven-positive-tran commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1599763198) at 2023-06-20 05:15 PM PDT -steven-positive-tran,2023-06-21T23:18:45Z,- steven-positive-tran submitted pull request review: [4866](https://github.com/hackforla/website/pull/4866#pullrequestreview-1492066112) at 2023-06-21 04:18 PM PDT -steven-positive-tran,2023-06-26T20:04:43Z,- steven-positive-tran commented on pull request: [4882](https://github.com/hackforla/website/pull/4882#issuecomment-1608159547) at 2023-06-26 01:04 PM PDT -steven-positive-tran,2023-06-26T20:17:31Z,- steven-positive-tran commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1608185152) at 2023-06-26 01:17 PM PDT -steven-positive-tran,2023-06-26T21:51:42Z,- steven-positive-tran submitted pull request review: [4878](https://github.com/hackforla/website/pull/4878#pullrequestreview-1499538076) at 2023-06-26 02:51 PM PDT -steven-positive-tran,2023-06-26T22:26:55Z,- steven-positive-tran submitted pull request review: [4882](https://github.com/hackforla/website/pull/4882#pullrequestreview-1499584025) at 2023-06-26 03:26 PM PDT -steven-positive-tran,2023-06-26T22:27:16Z,- steven-positive-tran submitted pull request review: [4882](https://github.com/hackforla/website/pull/4882#pullrequestreview-1499584271) at 2023-06-26 03:27 PM PDT -steven-positive-tran,2023-07-13T22:23:24Z,- steven-positive-tran commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1634992958) at 2023-07-13 03:23 PM PDT -steven-positive-tran,2023-07-17T18:21:36Z,- steven-positive-tran commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1638647801) at 2023-07-17 11:21 AM PDT -steven-positive-tran,2023-07-17T20:42:42Z,- steven-positive-tran submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1533669066) at 2023-07-17 01:42 PM PDT -steven-positive-tran,2023-07-24T23:14:49Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1648746440) at 2023-07-24 04:14 PM PDT -steven-positive-tran,2023-07-27T01:16:53Z,- steven-positive-tran commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1652771792) at 2023-07-26 06:16 PM PDT -steven-positive-tran,2023-07-27T01:19:00Z,- steven-positive-tran commented on pull request: [5096](https://github.com/hackforla/website/pull/5096#issuecomment-1652773708) at 2023-07-26 06:19 PM PDT -steven-positive-tran,2023-07-27T01:43:08Z,- steven-positive-tran submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1548858233) at 2023-07-26 06:43 PM PDT -steven-positive-tran,2023-07-27T01:54:39Z,- steven-positive-tran submitted pull request review: [5096](https://github.com/hackforla/website/pull/5096#pullrequestreview-1548866475) at 2023-07-26 06:54 PM PDT -steven-positive-tran,2023-07-28T21:55:19Z,- steven-positive-tran submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1553000604) at 2023-07-28 02:55 PM PDT -steven-positive-tran,2023-08-03T23:51:03Z,- steven-positive-tran closed issue as completed: [3302](https://github.com/hackforla/website/issues/3302#event-10004012337) at 2023-08-03 04:51 PM PDT -steven-positive-tran,2023-08-03T23:51:04Z,- steven-positive-tran reopened issue: [3302](https://github.com/hackforla/website/issues/3302#event-10004012337) at 2023-08-03 04:51 PM PDT -steven-positive-tran,2023-08-04T00:34:08Z,- steven-positive-tran commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1664800470) at 2023-08-03 05:34 PM PDT -steven-positive-tran,2023-08-04T00:37:56Z,- steven-positive-tran commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1664806425) at 2023-08-03 05:37 PM PDT -steven-positive-tran,2023-08-04T00:47:38Z,- steven-positive-tran submitted pull request review: [5133](https://github.com/hackforla/website/pull/5133#pullrequestreview-1562031900) at 2023-08-03 05:47 PM PDT -steven-positive-tran,2023-08-04T00:52:47Z,- steven-positive-tran submitted pull request review: [5125](https://github.com/hackforla/website/pull/5125#pullrequestreview-1562034676) at 2023-08-03 05:52 PM PDT -steven-positive-tran,2023-08-04T23:48:16Z,- steven-positive-tran commented on pull request: [5142](https://github.com/hackforla/website/pull/5142#issuecomment-1666285406) at 2023-08-04 04:48 PM PDT -steven-positive-tran,2023-08-04T23:56:38Z,- steven-positive-tran submitted pull request review: [5142](https://github.com/hackforla/website/pull/5142#pullrequestreview-1563671979) at 2023-08-04 04:56 PM PDT -steven-positive-tran,2023-08-08T00:03:47Z,- steven-positive-tran commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1668724488) at 2023-08-07 05:03 PM PDT -steven-positive-tran,2023-08-08T00:04:59Z,- steven-positive-tran commented on pull request: [5155](https://github.com/hackforla/website/pull/5155#issuecomment-1668725243) at 2023-08-07 05:04 PM PDT -steven-positive-tran,2023-08-08T00:09:58Z,- steven-positive-tran submitted pull request review: [5152](https://github.com/hackforla/website/pull/5152#pullrequestreview-1566293761) at 2023-08-07 05:09 PM PDT -steven-positive-tran,2023-08-08T00:17:11Z,- steven-positive-tran submitted pull request review: [5155](https://github.com/hackforla/website/pull/5155#pullrequestreview-1566298238) at 2023-08-07 05:17 PM PDT -StevenDeng1,7740,SKILLS ISSUE -StevenDeng1,2024-11-20T03:14:13Z,- StevenDeng1 opened issue: [7740](https://github.com/hackforla/website/issues/7740) at 2024-11-19 07:14 PM PST -StevenDeng1,2024-11-20T03:14:23Z,- StevenDeng1 assigned to issue: [7740](https://github.com/hackforla/website/issues/7740) at 2024-11-19 07:14 PM PST -StevenDeng1,2024-11-20T03:21:31Z,- StevenDeng1 commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2487265730) at 2024-11-19 07:21 PM PST -str-xjua24,3605,SKILLS ISSUE -str-xjua24,2022-10-11T02:47:19Z,- str-xjua24 opened issue: [3605](https://github.com/hackforla/website/issues/3605) at 2022-10-10 07:47 PM PDT -str-xjua24,2022-10-12T03:02:21Z,- str-xjua24 assigned to issue: [3605](https://github.com/hackforla/website/issues/3605) at 2022-10-11 08:02 PM PDT -str-xjua24,2022-10-21T03:52:45Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1286423602) at 2022-10-20 08:52 PM PDT -str-xjua24,2022-10-23T06:34:16Z,- str-xjua24 assigned to issue: [2852](https://github.com/hackforla/website/issues/2852#issuecomment-1048335157) at 2022-10-22 11:34 PM PDT -str-xjua24,2022-10-23T06:41:55Z,- str-xjua24 commented on issue: [2852](https://github.com/hackforla/website/issues/2852#issuecomment-1288026087) at 2022-10-22 11:41 PM PDT -str-xjua24,2022-10-23T06:44:14Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1288026373) at 2022-10-22 11:44 PM PDT -str-xjua24,2022-10-23T21:19:28Z,- str-xjua24 opened pull request: [3650](https://github.com/hackforla/website/pull/3650) at 2022-10-23 02:19 PM PDT -str-xjua24,2022-10-24T23:52:07Z,- str-xjua24 pull request merged: [3650](https://github.com/hackforla/website/pull/3650#event-7658636117) at 2022-10-24 04:52 PM PDT -str-xjua24,2022-10-27T03:19:47Z,- str-xjua24 assigned to issue: [3278](https://github.com/hackforla/website/issues/3278#issuecomment-1162504150) at 2022-10-26 08:19 PM PDT -str-xjua24,2022-10-27T03:21:13Z,- str-xjua24 commented on issue: [3278](https://github.com/hackforla/website/issues/3278#issuecomment-1292919776) at 2022-10-26 08:21 PM PDT -str-xjua24,2022-10-30T08:45:47Z,- str-xjua24 opened pull request: [3675](https://github.com/hackforla/website/pull/3675) at 2022-10-30 01:45 AM PDT -str-xjua24,2022-10-31T18:44:41Z,- str-xjua24 pull request merged: [3675](https://github.com/hackforla/website/pull/3675#event-7707075171) at 2022-10-31 11:44 AM PDT -str-xjua24,2022-11-02T01:39:50Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1299437898) at 2022-11-01 06:39 PM PDT -str-xjua24,2022-12-07T23:40:23Z,- str-xjua24 assigned to issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1333608653) at 2022-12-07 03:40 PM PST -str-xjua24,2022-12-07T23:42:20Z,- str-xjua24 commented on issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1341755830) at 2022-12-07 03:42 PM PST -str-xjua24,2022-12-09T06:33:07Z,- str-xjua24 opened pull request: [3768](https://github.com/hackforla/website/pull/3768) at 2022-12-08 10:33 PM PST -str-xjua24,2022-12-09T08:00:44Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1343974077) at 2022-12-09 12:00 AM PST -str-xjua24,2022-12-12T03:24:58Z,- str-xjua24 pull request merged: [3768](https://github.com/hackforla/website/pull/3768#event-8009776569) at 2022-12-11 07:24 PM PST -str-xjua24,2022-12-13T04:21:50Z,- str-xjua24 closed issue as completed: [3353](https://github.com/hackforla/website/issues/3353#event-8021263208) at 2022-12-12 08:21 PM PST -str-xjua24,2022-12-13T04:40:36Z,- str-xjua24 assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-12-12 08:40 PM PST -str-xjua24,2022-12-13T04:46:27Z,- str-xjua24 commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1347742817) at 2022-12-12 08:46 PM PST -str-xjua24,2023-01-09T09:33:15Z,- str-xjua24 commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1375331916) at 2023-01-09 01:33 AM PST -str-xjua24,2023-03-12T06:12:20Z,- str-xjua24 unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1463378139) at 2023-03-11 11:12 PM PDT -stu562,2019-04-24T03:44:57Z,- stu562 opened pull request: [70](https://github.com/hackforla/website/pull/70) at 2019-04-23 08:44 PM PDT -stu562,2019-04-29T21:18:20Z,- stu562 pull request closed w/o merging: [70](https://github.com/hackforla/website/pull/70#event-2307940219) at 2019-04-29 02:18 PM PDT -stu562,2019-04-29T21:26:41Z,- stu562 opened pull request: [71](https://github.com/hackforla/website/pull/71) at 2019-04-29 02:26 PM PDT -stu562,2019-05-01T22:46:07Z,- stu562 pull request merged: [71](https://github.com/hackforla/website/pull/71#event-2313103183) at 2019-05-01 03:46 PM PDT -stu562,2019-05-02T19:08:44Z,- stu562 commented on pull request: [71](https://github.com/hackforla/website/pull/71#issuecomment-488794456) at 2019-05-02 12:08 PM PDT -stu562,2019-05-08T03:12:34Z,- stu562 opened pull request: [95](https://github.com/hackforla/website/pull/95) at 2019-05-07 08:12 PM PDT -stu562,2019-05-08T04:04:45Z,- stu562 pull request merged: [95](https://github.com/hackforla/website/pull/95#event-2326090075) at 2019-05-07 09:04 PM PDT -stu562,2019-05-09T00:50:29Z,- stu562 assigned to issue: [78](https://github.com/hackforla/website/issues/78#issuecomment-490702442) at 2019-05-08 05:50 PM PDT -stu562,2019-05-09T18:55:37Z,- stu562 opened pull request: [100](https://github.com/hackforla/website/pull/100) at 2019-05-09 11:55 AM PDT -stu562,2019-05-09T19:13:47Z,- stu562 commented on pull request: [100](https://github.com/hackforla/website/pull/100#issuecomment-491030439) at 2019-05-09 12:13 PM PDT -stu562,2019-05-09T19:34:14Z,- stu562 commented on pull request: [100](https://github.com/hackforla/website/pull/100#issuecomment-491036653) at 2019-05-09 12:34 PM PDT -stu562,2019-05-09T19:34:14Z,- stu562 pull request closed w/o merging: [100](https://github.com/hackforla/website/pull/100#event-2331241500) at 2019-05-09 12:34 PM PDT -stu562,2019-05-09T19:35:50Z,- stu562 opened pull request: [101](https://github.com/hackforla/website/pull/101) at 2019-05-09 12:35 PM PDT -stu562,2019-05-09T19:44:49Z,- stu562 pull request merged: [101](https://github.com/hackforla/website/pull/101#event-2331266226) at 2019-05-09 12:44 PM PDT -stu562,2019-05-09T19:45:13Z,- stu562 closed issue as completed: [78](https://github.com/hackforla/website/issues/78#event-2331267243) at 2019-05-09 12:45 PM PDT -stu562,2019-05-15T03:03:08Z,- stu562 opened pull request: [108](https://github.com/hackforla/website/pull/108) at 2019-05-14 08:03 PM PDT -stu562,2019-05-22T02:02:11Z,- stu562 commented on pull request: [108](https://github.com/hackforla/website/pull/108#issuecomment-494623102) at 2019-05-21 07:02 PM PDT -stu562,2019-05-22T02:57:54Z,- stu562 assigned to issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 07:57 PM PDT -stu562,2019-05-22T03:11:17Z,- stu562 opened pull request: [114](https://github.com/hackforla/website/pull/114) at 2019-05-21 08:11 PM PDT -stu562,2019-05-22T03:20:09Z,- stu562 closed issue by PR 114: [113](https://github.com/hackforla/website/issues/113#event-2357991415) at 2019-05-21 08:20 PM PDT -stu562,2019-05-22T03:20:10Z,- stu562 pull request merged: [114](https://github.com/hackforla/website/pull/114#event-2357991418) at 2019-05-21 08:20 PM PDT -stu562,2019-05-23T03:36:19Z,- stu562 assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -stu562,2019-06-03T03:58:06Z,- stu562 commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498104837) at 2019-06-02 08:58 PM PDT -stu562,2019-06-04T01:21:06Z,- stu562 assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -stu562,2019-06-05T03:02:17Z,- stu562 pull request merged: [108](https://github.com/hackforla/website/pull/108#event-2389985370) at 2019-06-04 08:02 PM PDT -stu562,2019-06-12T17:42:42Z,- stu562 unassigned from issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501075016) at 2019-06-12 10:42 AM PDT -stu562,2019-06-19T02:43:32Z,- stu562 commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-503383749) at 2019-06-18 07:43 PM PDT -stu562,2019-06-27T19:11:38Z,- stu562 assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-503383749) at 2019-06-27 12:11 PM PDT -stu562,2019-11-12T03:14:45Z,- stu562 unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-11-11 07:14 PM PST -stu562,2020-06-01T02:33:13Z,- stu562 unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -suazoj,2020-08-16T19:02:08Z,- suazoj assigned to issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-674556277) at 2020-08-16 12:02 PM PDT -sudhara,2024-08-15T02:46:18Z,- sudhara opened issue: [7294](https://github.com/hackforla/website/issues/7294) at 2024-08-14 07:46 PM PDT -Sujay-Anantha,7518,SKILLS ISSUE -Sujay-Anantha,2024-09-25T02:56:41Z,- Sujay-Anantha opened issue: [7518](https://github.com/hackforla/website/issues/7518) at 2024-09-24 07:56 PM PDT -Sujay-Anantha,2024-09-25T03:00:45Z,- Sujay-Anantha assigned to issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2372801196) at 2024-09-24 08:00 PM PDT -Sujay-Anantha,2024-09-25T03:17:51Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2372823518) at 2024-09-24 08:17 PM PDT -Sujay-Anantha,2024-09-26T18:54:40Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2377704877) at 2024-09-26 11:54 AM PDT -Sujay-Anantha,2024-09-26T19:20:22Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2377751402) at 2024-09-26 12:20 PM PDT -Sujay-Anantha,2024-09-27T16:17:59Z,- Sujay-Anantha assigned to issue: [7403](https://github.com/hackforla/website/issues/7403) at 2024-09-27 09:17 AM PDT -Sujay-Anantha,2024-09-27T17:25:25Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2379744810) at 2024-09-27 10:25 AM PDT -Sujay-Anantha,2024-09-27T17:42:57Z,- Sujay-Anantha opened pull request: [7529](https://github.com/hackforla/website/pull/7529) at 2024-09-27 10:42 AM PDT -Sujay-Anantha,2024-09-27T17:47:07Z,- Sujay-Anantha commented on issue: [7403](https://github.com/hackforla/website/issues/7403#issuecomment-2379775976) at 2024-09-27 10:47 AM PDT -Sujay-Anantha,2024-09-27T17:49:29Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2379779635) at 2024-09-27 10:49 AM PDT -Sujay-Anantha,2024-09-27T18:10:09Z,- Sujay-Anantha commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2379810811) at 2024-09-27 11:10 AM PDT -Sujay-Anantha,2024-09-28T13:46:12Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2380646050) at 2024-09-28 06:46 AM PDT -Sujay-Anantha,2024-09-29T16:54:33Z,- Sujay-Anantha pull request merged: [7529](https://github.com/hackforla/website/pull/7529#event-14445745947) at 2024-09-29 09:54 AM PDT -Sujay-Anantha,2024-10-03T15:34:00Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2391728153) at 2024-10-03 08:34 AM PDT -Sujay-Anantha,2024-10-03T15:40:42Z,- Sujay-Anantha assigned to issue: [7549](https://github.com/hackforla/website/issues/7549) at 2024-10-03 08:40 AM PDT -Sujay-Anantha,2024-10-03T16:19:21Z,- Sujay-Anantha opened pull request: [7559](https://github.com/hackforla/website/pull/7559) at 2024-10-03 09:19 AM PDT -Sujay-Anantha,2024-10-03T16:25:00Z,- Sujay-Anantha commented on issue: [7549](https://github.com/hackforla/website/issues/7549#issuecomment-2391832954) at 2024-10-03 09:25 AM PDT -Sujay-Anantha,2024-10-04T03:23:38Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2392719487) at 2024-10-03 08:23 PM PDT -Sujay-Anantha,2024-10-04T03:24:09Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2392719829) at 2024-10-03 08:24 PM PDT -Sujay-Anantha,2024-10-07T19:08:10Z,- Sujay-Anantha pull request merged: [7559](https://github.com/hackforla/website/pull/7559#event-14545548650) at 2024-10-07 12:08 PM PDT -Sujay-Anantha,2024-10-15T17:13:14Z,- Sujay-Anantha commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2414577829) at 2024-10-15 10:13 AM PDT -Sujay-Anantha,2024-10-15T17:15:36Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2414583563) at 2024-10-15 10:15 AM PDT -Sujay-Anantha,2024-10-15T17:25:38Z,- Sujay-Anantha submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2370099688) at 2024-10-15 10:25 AM PDT -Sujay-Anantha,2024-10-23T17:56:19Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2433015909) at 2024-10-23 10:56 AM PDT -Sujay-Anantha,2024-10-23T17:57:06Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2433017422) at 2024-10-23 10:57 AM PDT -Sujay-Anantha,2024-11-04T15:03:15Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2454951822) at 2024-11-04 07:03 AM PST -Sujay-Anantha,2024-11-06T14:32:29Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2459912667) at 2024-11-06 06:32 AM PST -Sujay-Anantha,2024-11-06T14:36:45Z,- Sujay-Anantha assigned to issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2423141080) at 2024-11-06 06:36 AM PST -Sujay-Anantha,2024-11-06T14:38:48Z,- Sujay-Anantha commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2459928546) at 2024-11-06 06:38 AM PST -Sujay-Anantha,2024-11-15T01:03:56Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2477741346) at 2024-11-14 05:03 PM PST -Sujay-Anantha,2024-11-18T22:31:27Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2484270405) at 2024-11-18 02:31 PM PST -Sujay-Anantha,2024-11-25T13:40:14Z,- Sujay-Anantha assigned to issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2327538889) at 2024-11-25 05:40 AM PST -Sujay-Anantha,2024-11-25T13:42:21Z,- Sujay-Anantha commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2498056815) at 2024-11-25 05:42 AM PST -Sujay-Anantha,2024-11-25T14:21:57Z,- Sujay-Anantha opened issue: [7763](https://github.com/hackforla/website/issues/7763) at 2024-11-25 06:21 AM PST -Sujay-Anantha,2024-11-25T14:22:05Z,- Sujay-Anantha opened issue: [7764](https://github.com/hackforla/website/issues/7764) at 2024-11-25 06:22 AM PST -Sujay-Anantha,2024-11-25T14:22:11Z,- Sujay-Anantha opened issue: [7765](https://github.com/hackforla/website/issues/7765) at 2024-11-25 06:22 AM PST -Sujay-Anantha,2024-11-25T14:22:20Z,- Sujay-Anantha opened issue: [7766](https://github.com/hackforla/website/issues/7766) at 2024-11-25 06:22 AM PST -Sujay-Anantha,2024-11-26T16:53:31Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2501410192) at 2024-11-26 08:53 AM PST -Sujay-Anantha,2024-12-04T17:58:12Z,- Sujay-Anantha assigned to issue: [7604](https://github.com/hackforla/website/issues/7604) at 2024-12-04 09:58 AM PST -Sujay-Anantha,2024-12-04T17:59:37Z,- Sujay-Anantha commented on issue: [7604](https://github.com/hackforla/website/issues/7604#issuecomment-2518160542) at 2024-12-04 09:59 AM PST -Sujay-Anantha,2024-12-04T18:49:54Z,- Sujay-Anantha opened pull request: [7791](https://github.com/hackforla/website/pull/7791) at 2024-12-04 10:49 AM PST -Sujay-Anantha,2024-12-07T20:33:21Z,- Sujay-Anantha pull request merged: [7791](https://github.com/hackforla/website/pull/7791#event-15570616774) at 2024-12-07 12:33 PM PST -Sujay-Anantha,2024-12-09T15:36:44Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2528408124) at 2024-12-09 07:36 AM PST -Sujay-Anantha,2024-12-12T13:04:25Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2538852203) at 2024-12-12 05:04 AM PST -Sujay-Anantha,2025-01-03T21:41:32Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2569853235) at 2025-01-03 01:41 PM PST -Sujay-Anantha,2025-01-10T22:03:23Z,- Sujay-Anantha submitted pull request review: [7816](https://github.com/hackforla/website/pull/7816#pullrequestreview-2544055191) at 2025-01-10 02:03 PM PST -Sujay-Anantha,2025-01-10T22:05:07Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2584452006) at 2025-01-10 02:05 PM PST -Sujay-Anantha,2025-01-25T01:34:59Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2613709681) at 2025-01-24 05:34 PM PST -Sujay-Anantha,2025-01-30T18:02:22Z,- Sujay-Anantha commented on pull request: [7861](https://github.com/hackforla/website/pull/7861#issuecomment-2625208870) at 2025-01-30 10:02 AM PST -Sujay-Anantha,2025-01-30T18:13:44Z,- Sujay-Anantha submitted pull request review: [7861](https://github.com/hackforla/website/pull/7861#pullrequestreview-2584693528) at 2025-01-30 10:13 AM PST -Sujay-Anantha,2025-01-30T18:15:30Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2625237848) at 2025-01-30 10:15 AM PST -Sujay-Anantha,2025-01-30T18:20:21Z,- Sujay-Anantha submitted pull request review: [7856](https://github.com/hackforla/website/pull/7856#pullrequestreview-2584706144) at 2025-01-30 10:20 AM PST -Sujay-Anantha,2025-01-30T18:22:06Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2625251562) at 2025-01-30 10:22 AM PST -Sujay-Anantha,2025-02-07T18:31:26Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2643696814) at 2025-02-07 10:31 AM PST -Sujay-Anantha,2025-02-16T00:17:05Z,- Sujay-Anantha submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2619514393) at 2025-02-15 04:17 PM PST -Sujay-Anantha,2025-02-16T00:18:00Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2661159474) at 2025-02-15 04:18 PM PST -Sujay-Anantha,2025-02-16T00:19:17Z,- Sujay-Anantha opened issue: [7911](https://github.com/hackforla/website/issues/7911) at 2025-02-15 04:19 PM PST -Sujay-Anantha,2025-02-16T00:19:54Z,- Sujay-Anantha closed issue as completed: [7911](https://github.com/hackforla/website/issues/7911#event-16322889221) at 2025-02-15 04:19 PM PST -Sujay-Anantha,2025-02-28T16:07:16Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2691027094) at 2025-02-28 08:07 AM PST -Sujay-Anantha,2025-03-15T16:27:45Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2726768593) at 2025-03-15 09:27 AM PDT -Sujay-Anantha,2025-03-31T17:26:16Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2766897933) at 2025-03-31 10:26 AM PDT -Suman2795,3553,SKILLS ISSUE -Suman2795,2022-09-14T02:54:56Z,- Suman2795 opened issue: [3553](https://github.com/hackforla/website/issues/3553) at 2022-09-13 07:54 PM PDT -Suman2795,2022-09-14T02:55:27Z,- Suman2795 assigned to issue: [3553](https://github.com/hackforla/website/issues/3553) at 2022-09-13 07:55 PM PDT -Suman2795,2022-10-02T16:00:50Z,- Suman2795 commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1264676021) at 2022-10-02 09:00 AM PDT -Suman2795,2022-10-07T13:30:20Z,- Suman2795 assigned to issue: [2844](https://github.com/hackforla/website/issues/2844#issuecomment-1048144299) at 2022-10-07 06:30 AM PDT -Suman2795,2022-10-07T13:40:00Z,- Suman2795 commented on issue: [2844](https://github.com/hackforla/website/issues/2844#issuecomment-1271608853) at 2022-10-07 06:40 AM PDT -Suman2795,2022-10-07T15:23:54Z,- Suman2795 opened pull request: [3600](https://github.com/hackforla/website/pull/3600) at 2022-10-07 08:23 AM PDT -Suman2795,2022-10-07T17:24:01Z,- Suman2795 commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1271855963) at 2022-10-07 10:24 AM PDT -Suman2795,2022-10-10T01:18:11Z,- Suman2795 pull request merged: [3600](https://github.com/hackforla/website/pull/3600#event-7550254365) at 2022-10-09 06:18 PM PDT -Suman2795,2022-10-16T06:15:21Z,- Suman2795 assigned to issue: [3202](https://github.com/hackforla/website/issues/3202#issuecomment-1145813785) at 2022-10-15 11:15 PM PDT -Suman2795,2022-10-16T06:20:09Z,- Suman2795 commented on issue: [3202](https://github.com/hackforla/website/issues/3202#issuecomment-1279902000) at 2022-10-15 11:20 PM PDT -Suman2795,2022-10-16T07:25:56Z,- Suman2795 opened pull request: [3628](https://github.com/hackforla/website/pull/3628) at 2022-10-16 12:25 AM PDT -Suman2795,2022-10-17T06:37:12Z,- Suman2795 commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1280361887) at 2022-10-16 11:37 PM PDT -Suman2795,2022-10-17T22:52:29Z,- Suman2795 pull request merged: [3628](https://github.com/hackforla/website/pull/3628#event-7606459050) at 2022-10-17 03:52 PM PDT -Suman2795,2022-10-19T16:22:00Z,- Suman2795 assigned to issue: [2438](https://github.com/hackforla/website/issues/2438#issuecomment-1180730183) at 2022-10-19 09:22 AM PDT -Suman2795,2022-10-19T16:47:44Z,- Suman2795 commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1284299794) at 2022-10-19 09:47 AM PDT -Suman2795,2022-10-20T03:46:03Z,- Suman2795 commented on issue: [2438](https://github.com/hackforla/website/issues/2438#issuecomment-1284880247) at 2022-10-19 08:46 PM PDT -Suman2795,2022-10-24T07:53:32Z,- Suman2795 opened pull request: [3652](https://github.com/hackforla/website/pull/3652) at 2022-10-24 12:53 AM PDT -Suman2795,2022-10-29T13:05:03Z,- Suman2795 assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1292587475) at 2022-10-29 06:05 AM PDT -Suman2795,2022-10-29T20:30:59Z,- Suman2795 unassigned from issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-10-29 01:30 PM PDT -Suman2795,2022-10-30T18:54:54Z,- Suman2795 pull request merged: [3652](https://github.com/hackforla/website/pull/3652#event-7699613081) at 2022-10-30 11:54 AM PDT -Suman2795,2022-10-31T12:00:31Z,- Suman2795 assigned to issue: [3598](https://github.com/hackforla/website/issues/3598) at 2022-10-31 05:00 AM PDT -Suman2795,2022-11-01T08:15:51Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1298195826) at 2022-11-01 01:15 AM PDT -Suman2795,2022-11-06T16:31:49Z,- Suman2795 commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304839279) at 2022-11-06 08:31 AM PST -Suman2795,2022-11-06T16:52:22Z,- Suman2795 submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1169625815) at 2022-11-06 08:52 AM PST -Suman2795,2022-11-11T16:00:11Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1311887041) at 2022-11-11 08:00 AM PST -Suman2795,2022-11-15T05:31:56Z,- Suman2795 commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314796876) at 2022-11-14 09:31 PM PST -Suman2795,2022-11-15T11:07:58Z,- Suman2795 submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1180675345) at 2022-11-15 03:07 AM PST -Suman2795,2022-11-16T04:45:53Z,- Suman2795 commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316337272) at 2022-11-15 08:45 PM PST -Suman2795,2022-11-16T17:02:01Z,- Suman2795 submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1182984829) at 2022-11-16 09:02 AM PST -Suman2795,2022-11-18T02:32:45Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1319468705) at 2022-11-17 06:32 PM PST -Suman2795,2022-11-18T02:34:01Z,- Suman2795 commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319469331) at 2022-11-17 06:34 PM PST -Suman2795,2022-11-18T12:58:42Z,- Suman2795 commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319962080) at 2022-11-18 04:58 AM PST -Suman2795,2022-11-18T16:33:33Z,- Suman2795 submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186419399) at 2022-11-18 08:33 AM PST -Suman2795,2022-11-18T17:26:27Z,- Suman2795 submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186509014) at 2022-11-18 09:26 AM PST -Suman2795,2022-11-18T17:27:36Z,- Suman2795 submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186511738) at 2022-11-18 09:27 AM PST -Suman2795,2022-11-22T05:35:49Z,- Suman2795 commented on pull request: [3737](https://github.com/hackforla/website/pull/3737#issuecomment-1323105967) at 2022-11-21 09:35 PM PST -Suman2795,2022-11-23T14:32:17Z,- Suman2795 submitted pull request review: [3737](https://github.com/hackforla/website/pull/3737#pullrequestreview-1191758758) at 2022-11-23 06:32 AM PST -Suman2795,2022-11-28T17:31:41Z,- Suman2795 submitted pull request review: [3751](https://github.com/hackforla/website/pull/3751#pullrequestreview-1196260044) at 2022-11-28 09:31 AM PST -Suman2795,2022-12-04T14:49:46Z,- Suman2795 commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1336431015) at 2022-12-04 06:49 AM PST -Suman2795,2022-12-06T03:05:44Z,- Suman2795 submitted pull request review: [3764](https://github.com/hackforla/website/pull/3764#pullrequestreview-1205700744) at 2022-12-05 07:05 PM PST -Suman2795,2022-12-06T03:12:35Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1338676642) at 2022-12-05 07:12 PM PST -Suman2795,2023-01-16T07:22:31Z,- Suman2795 commented on pull request: [3816](https://github.com/hackforla/website/pull/3816#issuecomment-1383595330) at 2023-01-15 11:22 PM PST -Suman2795,2023-01-16T07:49:50Z,- Suman2795 submitted pull request review: [3816](https://github.com/hackforla/website/pull/3816#pullrequestreview-1249687384) at 2023-01-15 11:49 PM PST -Suman2795,2023-01-16T07:50:17Z,- Suman2795 submitted pull request review: [3816](https://github.com/hackforla/website/pull/3816#pullrequestreview-1249687829) at 2023-01-15 11:50 PM PST -Suman2795,2023-01-19T05:12:14Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1396449359) at 2023-01-18 09:12 PM PST -Suman2795,2023-01-19T07:43:59Z,- Suman2795 opened issue: [3843](https://github.com/hackforla/website/issues/3843) at 2023-01-18 11:43 PM PST -Suman2795,2023-01-20T05:05:04Z,- Suman2795 commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1397926952) at 2023-01-19 09:05 PM PST -Suman2795,2023-02-05T13:00:35Z,- Suman2795 commented on pull request: [3935](https://github.com/hackforla/website/pull/3935#issuecomment-1417774543) at 2023-02-05 05:00 AM PST -Suman2795,2023-02-05T17:28:39Z,- Suman2795 submitted pull request review: [3935](https://github.com/hackforla/website/pull/3935#pullrequestreview-1284305266) at 2023-02-05 09:28 AM PST -Suman2795,2023-03-01T13:30:26Z,- Suman2795 commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1450158145) at 2023-03-01 05:30 AM PST -Suman2795,2023-03-02T08:04:44Z,- Suman2795 submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1321212761) at 2023-03-02 12:04 AM PST -Suman2795,2023-03-03T07:13:23Z,- Suman2795 submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1323201989) at 2023-03-02 11:13 PM PST -Suman2795,2023-03-04T15:53:20Z,- Suman2795 commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1454784299) at 2023-03-04 07:53 AM PST -Suman2795,2023-03-07T13:30:06Z,- Suman2795 submitted pull request review: [4107](https://github.com/hackforla/website/pull/4107#pullrequestreview-1328471755) at 2023-03-07 05:30 AM PST -Suman2795,2023-03-19T14:32:00Z,- Suman2795 commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1475277466) at 2023-03-19 07:32 AM PDT -Suman2795,2023-03-21T15:32:22Z,- Suman2795 submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1350775585) at 2023-03-21 08:32 AM PDT -Suman2795,2023-03-23T07:09:19Z,- Suman2795 submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1353969153) at 2023-03-23 12:09 AM PDT -SumayyaZiyad,2021-10-09T12:42:21Z,- SumayyaZiyad opened pull request: [2351](https://github.com/hackforla/website/pull/2351) at 2021-10-09 05:42 AM PDT -SumayyaZiyad,2021-10-09T18:14:19Z,- SumayyaZiyad commented on pull request: [2351](https://github.com/hackforla/website/pull/2351#issuecomment-939339418) at 2021-10-09 11:14 AM PDT -SumayyaZiyad,2021-10-10T01:03:17Z,- SumayyaZiyad pull request closed w/o merging: [2351](https://github.com/hackforla/website/pull/2351#event-5438730229) at 2021-10-09 06:03 PM PDT -SumayyaZiyad,2021-10-10T14:47:37Z,- SumayyaZiyad opened pull request: [2359](https://github.com/hackforla/website/pull/2359) at 2021-10-10 07:47 AM PDT -SumayyaZiyad,2021-10-20T00:23:55Z,- SumayyaZiyad pull request merged: [2359](https://github.com/hackforla/website/pull/2359#event-5488566624) at 2021-10-19 05:23 PM PDT -sumerjoshi,8102,SKILLS ISSUE -sumerjoshi,2025-04-30T16:58:07Z,- sumerjoshi opened issue: [8102](https://github.com/hackforla/website/issues/8102) at 2025-04-30 09:58 AM PDT -sumerjoshi,2025-04-30T16:58:08Z,- sumerjoshi assigned to issue: [8102](https://github.com/hackforla/website/issues/8102) at 2025-04-30 09:58 AM PDT -sumerjoshi,2025-04-30T17:08:34Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2842681663) at 2025-04-30 10:08 AM PDT -sumerjoshi,2025-05-13T16:07:14Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2877138940) at 2025-05-13 09:07 AM PDT -sumerjoshi,2025-05-13T16:07:55Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2877140853) at 2025-05-13 09:07 AM PDT -sumerjoshi,2025-07-02T16:55:20Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-3028583687) at 2025-07-02 09:55 AM PDT -SummerHarvey,2021-12-08T17:02:22Z,- SummerHarvey assigned to issue: [2527](https://github.com/hackforla/website/issues/2527) at 2021-12-08 09:02 AM PST -summerharveyux,2499,SKILLS ISSUE -summerharveyux,2562,SKILLS ISSUE -summerharveyux,2021-11-17T22:18:10Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-972113138) at 2021-11-17 02:18 PM PST -summerharveyux,2021-12-01T23:05:14Z,- summerharveyux commented on issue: [2499](https://github.com/hackforla/website/issues/2499#issuecomment-984138654) at 2021-12-01 03:05 PM PST -summerharveyux,2021-12-08T22:07:00Z,- summerharveyux opened issue: [2562](https://github.com/hackforla/website/issues/2562) at 2021-12-08 02:07 PM PST -summerharveyux,2021-12-08T22:09:34Z,- summerharveyux assigned to issue: [2562](https://github.com/hackforla/website/issues/2562#issuecomment-989265799) at 2021-12-08 02:09 PM PST -summerharveyux,2021-12-08T22:42:49Z,- summerharveyux assigned to issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-989182930) at 2021-12-08 02:42 PM PST -summerharveyux,2021-12-10T00:56:50Z,- summerharveyux closed issue as completed: [2498](https://github.com/hackforla/website/issues/2498#event-5744650688) at 2021-12-09 04:56 PM PST -summerharveyux,2021-12-10T01:21:50Z,- summerharveyux commented on issue: [2527](https://github.com/hackforla/website/issues/2527#issuecomment-990488510) at 2021-12-09 05:21 PM PST -summerharveyux,2021-12-10T01:26:36Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-990494850) at 2021-12-09 05:26 PM PST -summerharveyux,2021-12-14T00:17:22Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-993029763) at 2021-12-13 04:17 PM PST -summerharveyux,2021-12-15T22:11:19Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-995253791) at 2021-12-15 02:11 PM PST -summerharveyux,2021-12-21T01:47:01Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-998401672) at 2021-12-20 05:47 PM PST -summerharveyux,2022-01-05T22:57:09Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1006142801) at 2022-01-05 02:57 PM PST -summerharveyux,2022-01-12T22:59:18Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1011525708) at 2022-01-12 02:59 PM PST -summerharveyux,2022-01-19T22:25:32Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1016928630) at 2022-01-19 02:25 PM PST -summerharveyux,2022-01-19T23:13:05Z,- summerharveyux commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1016956292) at 2022-01-19 03:13 PM PST -summerharveyux,2022-01-20T21:14:33Z,- summerharveyux assigned to issue: [2499](https://github.com/hackforla/website/issues/2499#event-5927926277) at 2022-01-20 01:14 PM PST -summerharveyux,2022-01-26T22:45:53Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1022672205) at 2022-01-26 02:45 PM PST -summerharveyux,2022-01-26T23:40:04Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1022703780) at 2022-01-26 03:40 PM PST -summerharveyux,2022-02-02T00:20:37Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1027425303) at 2022-02-01 04:20 PM PST -summerharveyux,2022-02-09T22:47:26Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1034276082) at 2022-02-09 02:47 PM PST -summerharveyux,2022-02-14T22:06:46Z,- summerharveyux assigned to issue: [2763](https://github.com/hackforla/website/issues/2763#event-6047300984) at 2022-02-14 02:06 PM PST -summerharveyux,2022-02-14T22:11:48Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1039622090) at 2022-02-14 02:11 PM PST -summerharveyux,2022-02-14T22:11:49Z,- summerharveyux closed issue as completed: [2537](https://github.com/hackforla/website/issues/2537#event-6070565997) at 2022-02-14 02:11 PM PST -summerharveyux,2022-02-14T22:21:47Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1039631114) at 2022-02-14 02:21 PM PST -summerharveyux,2022-02-22T00:15:26Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1047313036) at 2022-02-21 04:15 PM PST -summerharveyux,2022-02-22T18:44:00Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048102474) at 2022-02-22 10:44 AM PST -summerharveyux,2022-02-22T23:29:28Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048309242) at 2022-02-22 03:29 PM PST -summerharveyux,2022-02-22T23:30:47Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048310042) at 2022-02-22 03:30 PM PST -summerharveyux,2022-02-23T22:35:15Z,- summerharveyux commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1049282151) at 2022-02-23 02:35 PM PST -summerharveyux,2022-03-02T20:20:14Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1057341247) at 2022-03-02 12:20 PM PST -summerharveyux,2022-03-09T22:43:11Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1063453606) at 2022-03-09 02:43 PM PST -summerharveyux,2022-03-16T21:41:19Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069662903) at 2022-03-16 02:41 PM PDT -summerharveyux,2022-03-16T22:06:11Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069680825) at 2022-03-16 03:06 PM PDT -summerharveyux,2022-03-23T21:07:36Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1076821602) at 2022-03-23 02:07 PM PDT -summerharveyux,2022-03-30T21:07:04Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1083625776) at 2022-03-30 02:07 PM PDT -summerharveyux,2022-04-20T20:43:07Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1104438812) at 2022-04-20 01:43 PM PDT -SuyashOP-2,2023-12-09T04:56:14Z,- SuyashOP-2 commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1848231683) at 2023-12-08 08:56 PM PST -Swaroopa-Shigli,5347,SKILLS ISSUE -Swaroopa-Shigli,2023-08-30T03:19:49Z,- Swaroopa-Shigli opened issue: [5347](https://github.com/hackforla/website/issues/5347) at 2023-08-29 08:19 PM PDT -Swaroopa-Shigli,2024-02-13T21:41:18Z,- Swaroopa-Shigli assigned to issue: [5347](https://github.com/hackforla/website/issues/5347#event-11651622082) at 2024-02-13 01:41 PM PST -switchzer0,2019-07-02T03:07:42Z,- switchzer0 commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-507500017) at 2019-07-01 08:07 PM PDT -switchzer0,2019-07-02T23:14:14Z,- switchzer0 commented on issue: [103](https://github.com/hackforla/website/issues/103#issuecomment-507878084) at 2019-07-02 04:14 PM PDT -switchzer0,2019-07-02T23:28:47Z,- switchzer0 commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-507881059) at 2019-07-02 04:28 PM PDT -switchzer0,2019-07-02T23:37:26Z,- switchzer0 commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-507882636) at 2019-07-02 04:37 PM PDT -switchzer0,2020-07-05T16:46:11Z,- switchzer0 assigned to issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616288864) at 2020-07-05 09:46 AM PDT -switchzer0,2020-07-15T22:45:35Z,- switchzer0 closed issue as completed: [275](https://github.com/hackforla/website/issues/275#event-3550639633) at 2020-07-15 03:45 PM PDT -switchzer0,2020-12-08T21:43:23Z,- switchzer0 closed issue as completed: [275](https://github.com/hackforla/website/issues/275#event-4086892994) at 2020-12-08 01:43 PM PST -syamjir,2024-10-23T21:55:11Z,- syamjir opened pull request: [7630](https://github.com/hackforla/website/pull/7630) at 2024-10-23 02:55 PM PDT -syamjir,2024-10-23T21:55:25Z,- syamjir pull request closed w/o merging: [7630](https://github.com/hackforla/website/pull/7630#event-14831922693) at 2024-10-23 02:55 PM PDT -syamjir,2024-10-25T13:55:59Z,- syamjir commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437849552) at 2024-10-25 06:55 AM PDT -syamjir,2024-10-25T14:33:53Z,- syamjir commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437986590) at 2024-10-25 07:33 AM PDT -sydneywalcoff,2519,SKILLS ISSUE -sydneywalcoff,2021-11-30T03:40:03Z,- sydneywalcoff opened issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:40 PM PST -sydneywalcoff,2021-11-30T03:40:04Z,- sydneywalcoff assigned to issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:40 PM PST -sydneywalcoff,2021-12-01T18:52:07Z,- sydneywalcoff assigned to issue: [2443](https://github.com/hackforla/website/issues/2443#issuecomment-960383604) at 2021-12-01 10:52 AM PST -sydneywalcoff,2021-12-01T18:59:36Z,- sydneywalcoff commented on issue: [2443](https://github.com/hackforla/website/issues/2443#issuecomment-983962881) at 2021-12-01 10:59 AM PST -sydneywalcoff,2021-12-01T19:23:52Z,- sydneywalcoff opened pull request: [2526](https://github.com/hackforla/website/pull/2526) at 2021-12-01 11:23 AM PST -sydneywalcoff,2021-12-03T18:39:34Z,- sydneywalcoff commented on issue: [2519](https://github.com/hackforla/website/issues/2519#issuecomment-985743643) at 2021-12-03 10:39 AM PST -sydneywalcoff,2021-12-03T19:38:51Z,- sydneywalcoff submitted pull request review: [2532](https://github.com/hackforla/website/pull/2532#pullrequestreview-823019908) at 2021-12-03 11:38 AM PST -sydneywalcoff,2021-12-04T23:40:27Z,- sydneywalcoff pull request merged: [2526](https://github.com/hackforla/website/pull/2526#event-5716173639) at 2021-12-04 03:40 PM PST -sydneywalcoff,2021-12-08T22:22:09Z,- sydneywalcoff closed issue as completed: [2519](https://github.com/hackforla/website/issues/2519#event-5736957363) at 2021-12-08 02:22 PM PST -sydneywalcoff,2021-12-08T22:28:28Z,- sydneywalcoff assigned to issue: [2236](https://github.com/hackforla/website/issues/2236) at 2021-12-08 02:28 PM PST -sydneywalcoff,2021-12-08T22:30:44Z,- sydneywalcoff commented on issue: [2236](https://github.com/hackforla/website/issues/2236#issuecomment-989280151) at 2021-12-08 02:30 PM PST -sydneywalcoff,2021-12-08T23:56:21Z,- sydneywalcoff opened pull request: [2564](https://github.com/hackforla/website/pull/2564) at 2021-12-08 03:56 PM PST -sydneywalcoff,2021-12-09T22:54:23Z,- sydneywalcoff pull request merged: [2564](https://github.com/hackforla/website/pull/2564#event-5744200757) at 2021-12-09 02:54 PM PST -sydneywalcoff,2021-12-09T23:07:34Z,- sydneywalcoff assigned to issue: [2396](https://github.com/hackforla/website/issues/2396#issuecomment-956040984) at 2021-12-09 03:07 PM PST -sydneywalcoff,2021-12-09T23:11:51Z,- sydneywalcoff commented on issue: [2396](https://github.com/hackforla/website/issues/2396#issuecomment-990388395) at 2021-12-09 03:11 PM PST -sydneywalcoff,2021-12-10T18:59:56Z,- sydneywalcoff opened pull request: [2574](https://github.com/hackforla/website/pull/2574) at 2021-12-10 10:59 AM PST -sydneywalcoff,2021-12-13T19:34:33Z,- sydneywalcoff commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-992803697) at 2021-12-13 11:34 AM PST -sydneywalcoff,2021-12-13T21:23:42Z,- sydneywalcoff submitted pull request review: [2584](https://github.com/hackforla/website/pull/2584#pullrequestreview-830770824) at 2021-12-13 01:23 PM PST -sydneywalcoff,2021-12-14T00:07:59Z,- sydneywalcoff assigned to issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-987538036) at 2021-12-13 04:07 PM PST -sydneywalcoff,2021-12-14T00:10:32Z,- sydneywalcoff commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-993025808) at 2021-12-13 04:10 PM PST -sydneywalcoff,2021-12-14T03:46:49Z,- sydneywalcoff commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-993129647) at 2021-12-13 07:46 PM PST -sydneywalcoff,2021-12-15T02:12:42Z,- sydneywalcoff pull request merged: [2574](https://github.com/hackforla/website/pull/2574#event-5768315053) at 2021-12-14 06:12 PM PST -sydneywalcoff,2021-12-16T03:02:49Z,- sydneywalcoff commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-995395789) at 2021-12-15 07:02 PM PST -sydneywalcoff,2021-12-16T17:51:24Z,- sydneywalcoff submitted pull request review: [2584](https://github.com/hackforla/website/pull/2584#pullrequestreview-834423458) at 2021-12-16 09:51 AM PST -sydneywalcoff,2021-12-16T17:52:10Z,- sydneywalcoff commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-996045218) at 2021-12-16 09:52 AM PST -sydneywalcoff,2021-12-16T19:14:39Z,- sydneywalcoff opened pull request: [2593](https://github.com/hackforla/website/pull/2593) at 2021-12-16 11:14 AM PST -sydneywalcoff,2021-12-16T19:15:15Z,- sydneywalcoff commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-996104386) at 2021-12-16 11:15 AM PST -sydneywalcoff,2021-12-16T21:11:24Z,- sydneywalcoff submitted pull request review: [2584](https://github.com/hackforla/website/pull/2584#pullrequestreview-834608407) at 2021-12-16 01:11 PM PST -sydneywalcoff,2021-12-17T18:58:36Z,- sydneywalcoff commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-996956603) at 2021-12-17 10:58 AM PST -sydneywalcoff,2021-12-17T19:43:20Z,- sydneywalcoff submitted pull request review: [2594](https://github.com/hackforla/website/pull/2594#pullrequestreview-835584018) at 2021-12-17 11:43 AM PST -sydneywalcoff,2021-12-19T17:47:16Z,- sydneywalcoff commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-997432698) at 2021-12-19 09:47 AM PST -sydneywalcoff,2021-12-19T19:25:18Z,- sydneywalcoff assigned to issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-968551127) at 2021-12-19 11:25 AM PST -sydneywalcoff,2021-12-20T20:21:02Z,- sydneywalcoff commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-998242276) at 2021-12-20 12:21 PM PST -sydneywalcoff,2021-12-20T21:01:30Z,- sydneywalcoff commented on issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-998265721) at 2021-12-20 01:01 PM PST -sydneywalcoff,2021-12-21T08:57:45Z,- sydneywalcoff pull request merged: [2593](https://github.com/hackforla/website/pull/2593#event-5797501277) at 2021-12-21 12:57 AM PST -sydneywalcoff,2021-12-23T21:18:13Z,- sydneywalcoff commented on issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-1000527626) at 2021-12-23 01:18 PM PST -sydneywalcoff,2021-12-29T23:23:52Z,- sydneywalcoff commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1002811363) at 2021-12-29 03:23 PM PST -sydneywalcoff,2021-12-30T21:52:00Z,- sydneywalcoff opened pull request: [2646](https://github.com/hackforla/website/pull/2646) at 2021-12-30 01:52 PM PST -sydneywalcoff,2021-12-30T22:03:49Z,- sydneywalcoff submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-842102507) at 2021-12-30 02:03 PM PST -sydneywalcoff,2021-12-31T17:04:36Z,- sydneywalcoff submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-842282941) at 2021-12-31 09:04 AM PST -sydneywalcoff,2021-12-31T17:10:19Z,- sydneywalcoff commented on pull request: [2644](https://github.com/hackforla/website/pull/2644#issuecomment-1003420216) at 2021-12-31 09:10 AM PST -sydneywalcoff,2022-01-04T18:21:42Z,- sydneywalcoff submitted pull request review: [2647](https://github.com/hackforla/website/pull/2647#pullrequestreview-843872369) at 2022-01-04 10:21 AM PST -sydneywalcoff,2022-01-04T19:14:07Z,- sydneywalcoff submitted pull request review: [2644](https://github.com/hackforla/website/pull/2644#pullrequestreview-843917142) at 2022-01-04 11:14 AM PST -sydneywalcoff,2022-01-05T17:03:22Z,- sydneywalcoff commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1005906226) at 2022-01-05 09:03 AM PST -sydneywalcoff,2022-01-07T19:52:18Z,- sydneywalcoff commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1007692742) at 2022-01-07 11:52 AM PST -sydneywalcoff,2022-01-08T23:18:43Z,- sydneywalcoff pull request merged: [2646](https://github.com/hackforla/website/pull/2646#event-5861725852) at 2022-01-08 03:18 PM PST -sydneywalcoff,2022-01-09T19:45:39Z,- sydneywalcoff assigned to issue: [2629](https://github.com/hackforla/website/issues/2629#issuecomment-1002334995) at 2022-01-09 11:45 AM PST -sydneywalcoff,2022-01-10T01:07:12Z,- sydneywalcoff opened pull request: [2682](https://github.com/hackforla/website/pull/2682) at 2022-01-09 05:07 PM PST -sydneywalcoff,2022-01-11T21:05:15Z,- sydneywalcoff submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-849725639) at 2022-01-11 01:05 PM PST -sydneywalcoff,2022-01-14T02:03:39Z,- sydneywalcoff submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-852422133) at 2022-01-13 06:03 PM PST -sydneywalcoff,2022-01-20T19:28:37Z,- sydneywalcoff commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1017848978) at 2022-01-20 11:28 AM PST -sydneywalcoff,2022-01-23T07:06:49Z,- sydneywalcoff pull request merged: [2682](https://github.com/hackforla/website/pull/2682#event-5937857069) at 2022-01-22 11:06 PM PST -sydneywalcoff,2024-08-20T18:36:07Z,- sydneywalcoff opened issue: [7321](https://github.com/hackforla/website/issues/7321) at 2024-08-20 11:36 AM PDT -sylvia-nam,2024-04-05T18:39:04Z,- sylvia-nam opened issue: [6579](https://github.com/hackforla/website/issues/6579) at 2024-04-05 11:39 AM PDT -sylvia-nam,2024-04-05T18:40:41Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2040418763) at 2024-04-05 11:40 AM PDT -sylvia-nam,2024-04-05T18:41:15Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2040420011) at 2024-04-05 11:41 AM PDT -sylvia-nam,2024-04-09T01:15:40Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2043961783) at 2024-04-08 06:15 PM PDT -sylvia-nam,2024-04-21T19:45:44Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2068178284) at 2024-04-21 12:45 PM PDT -sylvia-nam,2024-05-18T05:32:58Z,- sylvia-nam opened issue: [6859](https://github.com/hackforla/website/issues/6859) at 2024-05-17 10:32 PM PDT -sylvia-nam,2024-05-18T05:35:05Z,- sylvia-nam commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2118649887) at 2024-05-17 10:35 PM PDT -sylvia-nam,2024-05-21T16:21:03Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2122992140) at 2024-05-21 09:21 AM PDT -sylvia-nam,2024-06-03T02:39:04Z,- sylvia-nam commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2144174890) at 2024-06-02 07:39 PM PDT -sylvia-nam,2024-09-15T05:08:46Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2351375119) at 2024-09-14 10:08 PM PDT -SZwerling,3690,SKILLS ISSUE -SZwerling,2022-11-02T20:55:12Z,- SZwerling opened issue: [3690](https://github.com/hackforla/website/issues/3690) at 2022-11-02 01:55 PM PDT -SZwerling,2022-11-02T20:55:12Z,- SZwerling assigned to issue: [3690](https://github.com/hackforla/website/issues/3690) at 2022-11-02 01:55 PM PDT -SZwerling,2022-11-08T23:42:36Z,- SZwerling assigned to issue: [2859](https://github.com/hackforla/website/issues/2859#issuecomment-1048437771) at 2022-11-08 03:42 PM PST -SZwerling,2022-11-08T23:53:42Z,- SZwerling commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1307994213) at 2022-11-08 03:53 PM PST -SZwerling,2022-11-08T23:53:53Z,- SZwerling commented on issue: [2859](https://github.com/hackforla/website/issues/2859#issuecomment-1307994312) at 2022-11-08 03:53 PM PST -SZwerling,2022-11-09T00:23:14Z,- SZwerling opened pull request: [3703](https://github.com/hackforla/website/pull/3703) at 2022-11-08 04:23 PM PST -SZwerling,2022-11-10T18:47:08Z,- SZwerling pull request merged: [3703](https://github.com/hackforla/website/pull/3703#event-7786122481) at 2022-11-10 10:47 AM PST -SZwerling,2022-11-19T00:50:01Z,- SZwerling assigned to issue: [3212](https://github.com/hackforla/website/issues/3212#issuecomment-1145854267) at 2022-11-18 04:50 PM PST -SZwerling,2022-11-20T01:07:15Z,- SZwerling opened pull request: [3733](https://github.com/hackforla/website/pull/3733) at 2022-11-19 05:07 PM PST -SZwerling,2022-11-20T21:10:15Z,- SZwerling pull request merged: [3733](https://github.com/hackforla/website/pull/3733#event-7852205285) at 2022-11-20 01:10 PM PST -SZwerling,2022-11-21T23:17:59Z,- SZwerling pull request merged: [3733](https://github.com/hackforla/website/pull/3733#event-7861975132) at 2022-11-21 03:17 PM PST -SZwerling,2022-12-01T17:13:05Z,- SZwerling assigned to issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1333602077) at 2022-12-01 09:13 AM PST -SZwerling,2022-12-02T17:14:57Z,- SZwerling commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1335555434) at 2022-12-02 09:14 AM PST -SZwerling,2022-12-02T21:55:17Z,- SZwerling opened pull request: [3764](https://github.com/hackforla/website/pull/3764) at 2022-12-02 01:55 PM PST -SZwerling,2022-12-06T18:23:38Z,- SZwerling pull request merged: [3764](https://github.com/hackforla/website/pull/3764#event-7969533967) at 2022-12-06 10:23 AM PST -SZwerling,2022-12-13T01:31:29Z,- SZwerling assigned to issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1333387663) at 2022-12-12 05:31 PM PST -SZwerling,2022-12-13T01:36:01Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1347623048) at 2022-12-12 05:36 PM PST -SZwerling,2022-12-15T02:52:11Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1352489829) at 2022-12-14 06:52 PM PST -SZwerling,2022-12-24T02:18:13Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1364441079) at 2022-12-23 06:18 PM PST -SZwerling,2022-12-24T02:20:53Z,- SZwerling commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1364441536) at 2022-12-23 06:20 PM PST -SZwerling,2023-01-12T22:06:04Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1381045318) at 2023-01-12 02:06 PM PST -SZwerling,2023-01-12T22:06:04Z,- SZwerling closed issue by PR 3844: [3738](https://github.com/hackforla/website/issues/3738#event-8215711858) at 2023-01-12 02:06 PM PST -SZwerling,2023-01-15T17:38:20Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1383208824) at 2023-01-15 09:38 AM PST -SZwerling,2023-01-19T22:17:28Z,- SZwerling opened pull request: [3844](https://github.com/hackforla/website/pull/3844) at 2023-01-19 02:17 PM PST -SZwerling,2023-01-27T23:59:34Z,- SZwerling commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1407202080) at 2023-01-27 03:59 PM PST -SZwerling,2023-01-28T00:09:33Z,- SZwerling commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1407207169) at 2023-01-27 04:09 PM PST -SZwerling,2023-02-11T20:28:54Z,- SZwerling commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1426870395) at 2023-02-11 12:28 PM PST -SZwerling,2023-02-14T00:26:20Z,- SZwerling pull request merged: [3844](https://github.com/hackforla/website/pull/3844#event-8510149966) at 2023-02-13 04:26 PM PST -t-will-gillis,3613,SKILLS ISSUE -t-will-gillis,2022-10-11T02:55:45Z,- t-will-gillis opened issue: [3613](https://github.com/hackforla/website/issues/3613) at 2022-10-10 07:55 PM PDT -t-will-gillis,2022-10-12T20:15:58Z,- t-will-gillis assigned to issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1046376579) at 2022-10-12 01:15 PM PDT -t-will-gillis,2022-10-12T20:20:16Z,- t-will-gillis assigned to issue: [3613](https://github.com/hackforla/website/issues/3613) at 2022-10-12 01:20 PM PDT -t-will-gillis,2022-10-15T22:48:51Z,- t-will-gillis commented on issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1279846076) at 2022-10-15 03:48 PM PDT -t-will-gillis,2022-10-15T23:04:22Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1279848012) at 2022-10-15 04:04 PM PDT -t-will-gillis,2022-10-16T01:10:05Z,- t-will-gillis opened pull request: [3625](https://github.com/hackforla/website/pull/3625) at 2022-10-15 06:10 PM PDT -t-will-gillis,2022-10-16T01:27:27Z,- t-will-gillis commented on issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1279867171) at 2022-10-15 06:27 PM PDT -t-will-gillis,2022-10-17T20:40:20Z,- t-will-gillis pull request merged: [3625](https://github.com/hackforla/website/pull/3625#event-7605729376) at 2022-10-17 01:40 PM PDT -t-will-gillis,2022-10-17T23:17:34Z,- t-will-gillis assigned to issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1145817335) at 2022-10-17 04:17 PM PDT -t-will-gillis,2022-10-17T23:30:51Z,- t-will-gillis commented on issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1281627826) at 2022-10-17 04:30 PM PDT -t-will-gillis,2022-10-19T05:17:55Z,- t-will-gillis opened pull request: [3642](https://github.com/hackforla/website/pull/3642) at 2022-10-18 10:17 PM PDT -t-will-gillis,2022-10-19T05:22:41Z,- t-will-gillis commented on issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1283446554) at 2022-10-18 10:22 PM PDT -t-will-gillis,2022-10-19T18:05:20Z,- t-will-gillis commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1284387399) at 2022-10-19 11:05 AM PDT -t-will-gillis,2022-10-19T20:20:51Z,- t-will-gillis submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1148222263) at 2022-10-19 01:20 PM PDT -t-will-gillis,2022-10-20T00:52:34Z,- t-will-gillis pull request merged: [3642](https://github.com/hackforla/website/pull/3642#event-7626237742) at 2022-10-19 05:52 PM PDT -t-will-gillis,2022-10-24T16:36:34Z,- t-will-gillis commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1289298561) at 2022-10-24 09:36 AM PDT -t-will-gillis,2022-10-24T22:29:47Z,- t-will-gillis submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1153888606) at 2022-10-24 03:29 PM PDT -t-will-gillis,2022-10-24T22:51:48Z,- t-will-gillis commented on pull request: [3650](https://github.com/hackforla/website/pull/3650#issuecomment-1289731280) at 2022-10-24 03:51 PM PDT -t-will-gillis,2022-10-24T22:58:16Z,- t-will-gillis submitted pull request review: [3650](https://github.com/hackforla/website/pull/3650#pullrequestreview-1153914568) at 2022-10-24 03:58 PM PDT -t-will-gillis,2022-10-24T23:01:22Z,- t-will-gillis submitted pull request review: [3650](https://github.com/hackforla/website/pull/3650#pullrequestreview-1153916603) at 2022-10-24 04:01 PM PDT -t-will-gillis,2022-10-25T01:26:22Z,- t-will-gillis assigned to issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1289624054) at 2022-10-24 06:26 PM PDT -t-will-gillis,2022-10-25T01:31:00Z,- t-will-gillis commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1289858453) at 2022-10-24 06:31 PM PDT -t-will-gillis,2022-10-26T21:00:36Z,- t-will-gillis commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1292647311) at 2022-10-26 02:00 PM PDT -t-will-gillis,2022-10-27T17:10:57Z,- t-will-gillis submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1158695193) at 2022-10-27 10:10 AM PDT -t-will-gillis,2022-10-27T18:57:22Z,- t-will-gillis submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1158890392) at 2022-10-27 11:57 AM PDT -t-will-gillis,2022-10-27T20:28:53Z,- t-will-gillis submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1159006130) at 2022-10-27 01:28 PM PDT -t-will-gillis,2022-10-28T01:43:56Z,- t-will-gillis submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1159250716) at 2022-10-27 06:43 PM PDT -t-will-gillis,2022-10-30T19:06:35Z,- t-will-gillis commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1296329042) at 2022-10-30 12:06 PM PDT -t-will-gillis,2022-10-31T01:50:14Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1296437237) at 2022-10-30 06:50 PM PDT -t-will-gillis,2022-11-06T02:31:54Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1304699748) at 2022-11-05 06:31 PM PST -t-will-gillis,2022-11-06T22:14:11Z,- t-will-gillis commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304908014) at 2022-11-06 02:14 PM PST -t-will-gillis,2022-11-06T23:33:54Z,- t-will-gillis submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1169672923) at 2022-11-06 03:33 PM PST -t-will-gillis,2022-11-14T18:55:41Z,- t-will-gillis assigned to issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1311289580) at 2022-11-14 10:55 AM PST -t-will-gillis,2022-11-14T18:57:38Z,- t-will-gillis unassigned from issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1311289580) at 2022-11-14 10:57 AM PST -t-will-gillis,2022-11-15T01:48:52Z,- t-will-gillis commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314645442) at 2022-11-14 05:48 PM PST -t-will-gillis,2022-11-15T05:31:03Z,- t-will-gillis submitted pull request review: [3717](https://github.com/hackforla/website/pull/3717#pullrequestreview-1180221271) at 2022-11-14 09:31 PM PST -t-will-gillis,2022-11-18T00:54:42Z,- t-will-gillis commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319410465) at 2022-11-17 04:54 PM PST -t-will-gillis,2022-11-18T03:42:30Z,- t-will-gillis commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319504121) at 2022-11-17 07:42 PM PST -t-will-gillis,2022-11-18T20:10:20Z,- t-will-gillis submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186718462) at 2022-11-18 12:10 PM PST -t-will-gillis,2022-11-18T20:27:37Z,- t-will-gillis submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186736619) at 2022-11-18 12:27 PM PST -t-will-gillis,2022-11-18T20:39:19Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1320500683) at 2022-11-18 12:39 PM PST -t-will-gillis,2022-11-25T19:06:17Z,- t-will-gillis commented on pull request: [3745](https://github.com/hackforla/website/pull/3745#issuecomment-1327796408) at 2022-11-25 11:06 AM PST -t-will-gillis,2022-11-25T19:23:52Z,- t-will-gillis submitted pull request review: [3745](https://github.com/hackforla/website/pull/3745#pullrequestreview-1194727792) at 2022-11-25 11:23 AM PST -t-will-gillis,2022-12-03T17:48:35Z,- t-will-gillis commented on pull request: [3762](https://github.com/hackforla/website/pull/3762#issuecomment-1336206717) at 2022-12-03 09:48 AM PST -t-will-gillis,2022-12-04T00:57:07Z,- t-will-gillis submitted pull request review: [3762](https://github.com/hackforla/website/pull/3762#pullrequestreview-1203588437) at 2022-12-03 04:57 PM PST -t-will-gillis,2022-12-04T00:58:45Z,- t-will-gillis commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1336290525) at 2022-12-03 04:58 PM PST -t-will-gillis,2022-12-05T22:23:19Z,- t-will-gillis submitted pull request review: [3764](https://github.com/hackforla/website/pull/3764#pullrequestreview-1205391957) at 2022-12-05 02:23 PM PST -t-will-gillis,2022-12-05T23:10:45Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1338314754) at 2022-12-05 03:10 PM PST -t-will-gillis,2022-12-07T19:35:59Z,- t-will-gillis commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1341491728) at 2022-12-07 11:35 AM PST -t-will-gillis,2022-12-09T02:51:33Z,- t-will-gillis submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1211070907) at 2022-12-08 06:51 PM PST -t-will-gillis,2023-01-01T23:44:23Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1368567409) at 2023-01-01 03:44 PM PST -t-will-gillis,2023-01-11T19:09:14Z,- t-will-gillis commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1379358308) at 2023-01-11 11:09 AM PST -t-will-gillis,2023-01-11T21:42:51Z,- t-will-gillis submitted pull request review: [3809](https://github.com/hackforla/website/pull/3809#pullrequestreview-1244655150) at 2023-01-11 01:42 PM PST -t-will-gillis,2023-01-17T23:22:37Z,- t-will-gillis submitted pull request review: [3833](https://github.com/hackforla/website/pull/3833#pullrequestreview-1252600714) at 2023-01-17 03:22 PM PST -t-will-gillis,2023-01-21T04:28:13Z,- t-will-gillis opened pull request: [3846](https://github.com/hackforla/website/pull/3846) at 2023-01-20 08:28 PM PST -t-will-gillis,2023-01-22T01:18:05Z,- t-will-gillis submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1264707115) at 2023-01-21 05:18 PM PST -t-will-gillis,2023-01-22T20:10:54Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1399594963) at 2023-01-22 12:10 PM PST -t-will-gillis,2023-01-22T22:36:49Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1399627850) at 2023-01-22 02:36 PM PST -t-will-gillis,2023-01-22T23:47:48Z,- t-will-gillis commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1399644149) at 2023-01-22 03:47 PM PST -t-will-gillis,2023-01-24T19:26:50Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1402477056) at 2023-01-24 11:26 AM PST -t-will-gillis,2023-01-24T19:26:50Z,- t-will-gillis pull request closed w/o merging: [3846](https://github.com/hackforla/website/pull/3846#event-8347567399) at 2023-01-24 11:26 AM PST -t-will-gillis,2023-01-24T20:00:26Z,- t-will-gillis opened pull request: [3867](https://github.com/hackforla/website/pull/3867) at 2023-01-24 12:00 PM PST -t-will-gillis,2023-01-24T20:03:25Z,- t-will-gillis commented on pull request: [3867](https://github.com/hackforla/website/pull/3867#issuecomment-1402546208) at 2023-01-24 12:03 PM PST -t-will-gillis,2023-01-25T06:25:44Z,- t-will-gillis submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1268763999) at 2023-01-24 10:25 PM PST -t-will-gillis,2023-01-27T00:23:39Z,- t-will-gillis pull request merged: [3867](https://github.com/hackforla/website/pull/3867#event-8368983244) at 2023-01-26 04:23 PM PST -t-will-gillis,2023-01-30T05:38:12Z,- t-will-gillis opened pull request: [3897](https://github.com/hackforla/website/pull/3897) at 2023-01-29 09:38 PM PST -t-will-gillis,2023-01-30T20:07:21Z,- t-will-gillis submitted pull request review: [3894](https://github.com/hackforla/website/pull/3894#pullrequestreview-1275933156) at 2023-01-30 12:07 PM PST -t-will-gillis,2023-01-30T23:04:46Z,- t-will-gillis submitted pull request review: [3896](https://github.com/hackforla/website/pull/3896#pullrequestreview-1276165439) at 2023-01-30 03:04 PM PST -t-will-gillis,2023-02-01T01:57:46Z,- t-will-gillis pull request merged: [3897](https://github.com/hackforla/website/pull/3897#event-8405447681) at 2023-01-31 05:57 PM PST -t-will-gillis,2023-02-01T04:27:44Z,- t-will-gillis submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1278414613) at 2023-01-31 08:27 PM PST -t-will-gillis,2023-02-16T23:52:05Z,- t-will-gillis commented on pull request: [3984](https://github.com/hackforla/website/pull/3984#issuecomment-1433897076) at 2023-02-16 03:52 PM PST -t-will-gillis,2023-02-18T07:02:24Z,- t-will-gillis submitted pull request review: [3984](https://github.com/hackforla/website/pull/3984#pullrequestreview-1304488763) at 2023-02-17 11:02 PM PST -t-will-gillis,2023-02-19T17:50:02Z,- t-will-gillis closed issue by PR 3984: [2625](https://github.com/hackforla/website/issues/2625#event-8555686659) at 2023-02-19 09:50 AM PST -t-will-gillis,2023-02-20T05:24:44Z,- t-will-gillis submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1305081564) at 2023-02-19 09:24 PM PST -t-will-gillis,2023-02-20T05:42:37Z,- t-will-gillis submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1305094128) at 2023-02-19 09:42 PM PST -t-will-gillis,2023-02-21T01:10:00Z,- t-will-gillis submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1306487662) at 2023-02-20 05:10 PM PST -t-will-gillis,2023-02-21T01:15:20Z,- t-will-gillis closed issue by PR 3994: [3546](https://github.com/hackforla/website/issues/3546#event-8565955289) at 2023-02-20 05:15 PM PST -t-will-gillis,2023-02-26T02:36:41Z,- t-will-gillis opened issue: [4050](https://github.com/hackforla/website/issues/4050) at 2023-02-25 06:36 PM PST -t-will-gillis,2023-02-26T20:48:02Z,- t-will-gillis assigned to issue: [3635](https://github.com/hackforla/website/issues/3635) at 2023-02-26 12:48 PM PST -t-will-gillis,2023-02-26T20:54:06Z,- t-will-gillis commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1445464551) at 2023-02-26 12:54 PM PST -t-will-gillis,2023-02-26T22:55:31Z,- t-will-gillis submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1314744987) at 2023-02-26 02:55 PM PST -t-will-gillis,2023-02-26T22:55:50Z,- t-will-gillis closed issue by PR 3962: [3875](https://github.com/hackforla/website/issues/3875#event-8610340321) at 2023-02-26 02:55 PM PST -t-will-gillis,2023-02-26T23:09:28Z,- t-will-gillis commented on pull request: [4052](https://github.com/hackforla/website/pull/4052#issuecomment-1445494398) at 2023-02-26 03:09 PM PST -t-will-gillis,2023-02-27T03:29:21Z,- t-will-gillis submitted pull request review: [4052](https://github.com/hackforla/website/pull/4052#pullrequestreview-1314847858) at 2023-02-26 07:29 PM PST -t-will-gillis,2023-02-27T15:56:34Z,- t-will-gillis closed issue by PR 4052: [4028](https://github.com/hackforla/website/issues/4028#event-8617363237) at 2023-02-27 07:56 AM PST -t-will-gillis,2023-02-28T18:37:11Z,- t-will-gillis submitted pull request review: [4057](https://github.com/hackforla/website/pull/4057#pullrequestreview-1318300080) at 2023-02-28 10:37 AM PST -t-will-gillis,2023-02-28T18:37:24Z,- t-will-gillis closed issue by PR 4057: [4055](https://github.com/hackforla/website/issues/4055#event-8630188473) at 2023-02-28 10:37 AM PST -t-will-gillis,2023-03-01T23:24:30Z,- t-will-gillis commented on pull request: [4078](https://github.com/hackforla/website/pull/4078#issuecomment-1451020073) at 2023-03-01 03:24 PM PST -t-will-gillis,2023-03-04T21:18:55Z,- t-will-gillis commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454888886) at 2023-03-04 01:18 PM PST -t-will-gillis,2023-03-05T02:27:18Z,- t-will-gillis submitted pull request review: [4078](https://github.com/hackforla/website/pull/4078#pullrequestreview-1325146112) at 2023-03-04 06:27 PM PST -t-will-gillis,2023-03-05T19:51:35Z,- t-will-gillis submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1325268556) at 2023-03-05 11:51 AM PST -t-will-gillis,2023-03-05T19:52:07Z,- t-will-gillis closed issue by PR 4056: [3757](https://github.com/hackforla/website/issues/3757#event-8668569585) at 2023-03-05 11:52 AM PST -t-will-gillis,2023-03-05T21:00:37Z,- t-will-gillis submitted pull request review: [4094](https://github.com/hackforla/website/pull/4094#pullrequestreview-1325278119) at 2023-03-05 01:00 PM PST -t-will-gillis,2023-03-05T21:00:45Z,- t-will-gillis closed issue by PR 4094: [4081](https://github.com/hackforla/website/issues/4081#event-8668677582) at 2023-03-05 01:00 PM PST -t-will-gillis,2023-03-05T21:16:59Z,- t-will-gillis commented on pull request: [4097](https://github.com/hackforla/website/pull/4097#issuecomment-1455208888) at 2023-03-05 01:16 PM PST -t-will-gillis,2023-03-05T22:00:39Z,- t-will-gillis submitted pull request review: [4103](https://github.com/hackforla/website/pull/4103#pullrequestreview-1325286596) at 2023-03-05 02:00 PM PST -t-will-gillis,2023-03-05T22:18:39Z,- t-will-gillis commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1455224661) at 2023-03-05 02:18 PM PST -t-will-gillis,2023-03-07T01:06:44Z,- t-will-gillis submitted pull request review: [4122](https://github.com/hackforla/website/pull/4122#pullrequestreview-1327470741) at 2023-03-06 05:06 PM PST -t-will-gillis,2023-03-07T18:35:17Z,- t-will-gillis commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1458644771) at 2023-03-07 10:35 AM PST -t-will-gillis,2023-03-07T18:50:28Z,- t-will-gillis submitted pull request review: [4125](https://github.com/hackforla/website/pull/4125#pullrequestreview-1329306687) at 2023-03-07 10:50 AM PST -t-will-gillis,2023-03-07T18:50:48Z,- t-will-gillis closed issue by PR 4125: [3999](https://github.com/hackforla/website/issues/3999#event-8689318325) at 2023-03-07 10:50 AM PST -t-will-gillis,2023-03-09T21:53:22Z,- t-will-gillis opened issue: [4142](https://github.com/hackforla/website/issues/4142) at 2023-03-09 01:53 PM PST -t-will-gillis,2023-03-10T04:52:17Z,- t-will-gillis commented on pull request: [4137](https://github.com/hackforla/website/pull/4137#issuecomment-1463266696) at 2023-03-09 08:52 PM PST -t-will-gillis,2023-03-11T22:29:14Z,- t-will-gillis commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1465038876) at 2023-03-11 03:29 PM PDT -t-will-gillis,2023-03-12T05:05:46Z,- t-will-gillis commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1465094145) at 2023-03-11 10:05 PM PDT -t-will-gillis,2023-03-12T23:57:45Z,- t-will-gillis submitted pull request review: [4144](https://github.com/hackforla/website/pull/4144#pullrequestreview-1336108171) at 2023-03-12 04:57 PM PDT -t-will-gillis,2023-03-12T23:57:54Z,- t-will-gillis closed issue by PR 4144: [4042](https://github.com/hackforla/website/issues/4042#event-8726533155) at 2023-03-12 04:57 PM PDT -t-will-gillis,2023-03-13T23:48:10Z,- t-will-gillis commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1467129553) at 2023-03-13 04:48 PM PDT -t-will-gillis,2023-03-15T04:41:40Z,- t-will-gillis submitted pull request review: [4150](https://github.com/hackforla/website/pull/4150#pullrequestreview-1340637888) at 2023-03-14 09:41 PM PDT -t-will-gillis,2023-03-15T04:41:49Z,- t-will-gillis closed issue by PR 4150: [4141](https://github.com/hackforla/website/issues/4141#event-8750936606) at 2023-03-14 09:41 PM PDT -t-will-gillis,2023-03-15T05:06:58Z,- t-will-gillis submitted pull request review: [4156](https://github.com/hackforla/website/pull/4156#pullrequestreview-1340655959) at 2023-03-14 10:06 PM PDT -t-will-gillis,2023-03-15T05:07:07Z,- t-will-gillis closed issue by PR 4156: [4087](https://github.com/hackforla/website/issues/4087#event-8751078833) at 2023-03-14 10:07 PM PDT -t-will-gillis,2023-03-15T05:26:37Z,- t-will-gillis submitted pull request review: [4175](https://github.com/hackforla/website/pull/4175#pullrequestreview-1340671312) at 2023-03-14 10:26 PM PDT -t-will-gillis,2023-03-15T05:27:07Z,- t-will-gillis closed issue by PR 4175: [4014](https://github.com/hackforla/website/issues/4014#event-8751179996) at 2023-03-14 10:27 PM PDT -t-will-gillis,2023-03-15T19:58:04Z,- t-will-gillis commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1470754147) at 2023-03-15 12:58 PM PDT -t-will-gillis,2023-03-16T17:50:55Z,- t-will-gillis commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1472443742) at 2023-03-16 10:50 AM PDT -t-will-gillis,2023-03-18T03:34:51Z,- t-will-gillis submitted pull request review: [4110](https://github.com/hackforla/website/pull/4110#pullrequestreview-1346900782) at 2023-03-17 08:34 PM PDT -t-will-gillis,2023-03-19T16:58:00Z,- t-will-gillis assigned to issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1472550773) at 2023-03-19 09:58 AM PDT -t-will-gillis,2023-03-19T21:24:09Z,- t-will-gillis assigned to issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1472909436) at 2023-03-19 02:24 PM PDT -t-will-gillis,2023-03-19T21:53:39Z,- t-will-gillis commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1475410026) at 2023-03-19 02:53 PM PDT -t-will-gillis,2023-03-20T02:27:14Z,- t-will-gillis closed issue by PR 2: [3635](https://github.com/hackforla/website/issues/3635#event-8789575199) at 2023-03-19 07:27 PM PDT -t-will-gillis,2023-03-20T03:28:40Z,- t-will-gillis submitted pull request review: [4191](https://github.com/hackforla/website/pull/4191#pullrequestreview-1347738011) at 2023-03-19 08:28 PM PDT -t-will-gillis,2023-03-20T03:28:55Z,- t-will-gillis closed issue by PR 4191: [3987](https://github.com/hackforla/website/issues/3987#event-8789834340) at 2023-03-19 08:28 PM PDT -t-will-gillis,2023-03-20T03:50:09Z,- t-will-gillis submitted pull request review: [4203](https://github.com/hackforla/website/pull/4203#pullrequestreview-1347749955) at 2023-03-19 08:50 PM PDT -t-will-gillis,2023-03-20T03:50:25Z,- t-will-gillis closed issue by PR 4203: [3948](https://github.com/hackforla/website/issues/3948#event-8789911053) at 2023-03-19 08:50 PM PDT -t-will-gillis,2023-03-20T04:18:54Z,- t-will-gillis submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347765564) at 2023-03-19 09:18 PM PDT -t-will-gillis,2023-03-20T04:25:18Z,- t-will-gillis commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1475604836) at 2023-03-19 09:25 PM PDT -t-will-gillis,2023-03-20T04:25:29Z,- t-will-gillis closed issue by PR 4205: [3756](https://github.com/hackforla/website/issues/3756#event-8790084215) at 2023-03-19 09:25 PM PDT -t-will-gillis,2023-03-20T04:43:12Z,- t-will-gillis submitted pull request review: [4209](https://github.com/hackforla/website/pull/4209#pullrequestreview-1347777744) at 2023-03-19 09:43 PM PDT -t-will-gillis,2023-03-20T04:43:38Z,- t-will-gillis closed issue by PR 4209: [3966](https://github.com/hackforla/website/issues/3966#event-8790144593) at 2023-03-19 09:43 PM PDT -t-will-gillis,2023-03-20T04:50:48Z,- t-will-gillis commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1475616108) at 2023-03-19 09:50 PM PDT -t-will-gillis,2023-03-20T05:30:25Z,- t-will-gillis submitted pull request review: [4202](https://github.com/hackforla/website/pull/4202#pullrequestreview-1347809091) at 2023-03-19 10:30 PM PDT -t-will-gillis,2023-03-20T05:30:58Z,- t-will-gillis closed issue by PR 4202: [4145](https://github.com/hackforla/website/issues/4145#event-8790364937) at 2023-03-19 10:30 PM PDT -t-will-gillis,2023-03-20T05:57:47Z,- t-will-gillis submitted pull request review: [4210](https://github.com/hackforla/website/pull/4210#pullrequestreview-1347839655) at 2023-03-19 10:57 PM PDT -t-will-gillis,2023-03-20T05:59:03Z,- t-will-gillis closed issue by PR 4210: [3856](https://github.com/hackforla/website/issues/3856#event-8790513417) at 2023-03-19 10:59 PM PDT -t-will-gillis,2023-03-20T16:58:07Z,- t-will-gillis commented on pull request: [4218](https://github.com/hackforla/website/pull/4218#issuecomment-1476604194) at 2023-03-20 09:58 AM PDT -t-will-gillis,2023-03-20T17:03:52Z,- t-will-gillis commented on pull request: [4217](https://github.com/hackforla/website/pull/4217#issuecomment-1476614021) at 2023-03-20 10:03 AM PDT -t-will-gillis,2023-03-22T04:00:02Z,- t-will-gillis commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1478887668) at 2023-03-21 09:00 PM PDT -t-will-gillis,2023-03-22T05:05:04Z,- t-will-gillis opened issue: [4235](https://github.com/hackforla/website/issues/4235) at 2023-03-21 10:05 PM PDT -t-will-gillis,2023-03-22T05:11:25Z,- t-will-gillis opened issue: [4236](https://github.com/hackforla/website/issues/4236) at 2023-03-21 10:11 PM PDT -t-will-gillis,2023-03-22T05:17:57Z,- t-will-gillis unassigned from issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1478698753) at 2023-03-21 10:17 PM PDT -t-will-gillis,2023-03-22T21:25:53Z,- t-will-gillis commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1480281838) at 2023-03-22 02:25 PM PDT -t-will-gillis,2023-03-24T01:36:48Z,- t-will-gillis opened pull request: [4270](https://github.com/hackforla/website/pull/4270) at 2023-03-23 06:36 PM PDT -t-will-gillis,2023-03-24T20:15:24Z,- t-will-gillis opened issue: [4281](https://github.com/hackforla/website/issues/4281) at 2023-03-24 01:15 PM PDT -t-will-gillis,2023-03-24T20:24:29Z,- t-will-gillis closed issue by PR 4234: [4219](https://github.com/hackforla/website/issues/4219#event-8842483499) at 2023-03-24 01:24 PM PDT -t-will-gillis,2023-03-24T20:28:38Z,- t-will-gillis closed issue by PR 4265: [4235](https://github.com/hackforla/website/issues/4235#event-8842509619) at 2023-03-24 01:28 PM PDT -t-will-gillis,2023-03-24T22:19:02Z,- t-will-gillis commented on issue: [4281](https://github.com/hackforla/website/issues/4281#issuecomment-1483502019) at 2023-03-24 03:19 PM PDT -t-will-gillis,2023-03-25T01:29:59Z,- t-will-gillis opened issue: [4284](https://github.com/hackforla/website/issues/4284) at 2023-03-24 06:29 PM PDT -t-will-gillis,2023-03-25T01:39:12Z,- t-will-gillis opened issue: [4286](https://github.com/hackforla/website/issues/4286) at 2023-03-24 06:39 PM PDT -t-will-gillis,2023-03-25T01:55:36Z,- t-will-gillis opened issue: [4287](https://github.com/hackforla/website/issues/4287) at 2023-03-24 06:55 PM PDT -t-will-gillis,2023-03-25T01:58:50Z,- t-will-gillis commented on issue: [4281](https://github.com/hackforla/website/issues/4281#issuecomment-1483678232) at 2023-03-24 06:58 PM PDT -t-will-gillis,2023-03-25T01:58:51Z,- t-will-gillis closed issue as completed: [4281](https://github.com/hackforla/website/issues/4281#event-8844277297) at 2023-03-24 06:58 PM PDT -t-will-gillis,2023-03-25T18:31:05Z,- t-will-gillis commented on pull request: [4288](https://github.com/hackforla/website/pull/4288#issuecomment-1483892012) at 2023-03-25 11:31 AM PDT -t-will-gillis,2023-03-25T18:42:40Z,- t-will-gillis commented on pull request: [4288](https://github.com/hackforla/website/pull/4288#issuecomment-1483894125) at 2023-03-25 11:42 AM PDT -t-will-gillis,2023-03-25T19:06:33Z,- t-will-gillis commented on pull request: [4288](https://github.com/hackforla/website/pull/4288#issuecomment-1483899203) at 2023-03-25 12:06 PM PDT -t-will-gillis,2023-03-25T21:34:42Z,- t-will-gillis commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483927179) at 2023-03-25 02:34 PM PDT -t-will-gillis,2023-03-25T22:04:23Z,- t-will-gillis commented on pull request: [4289](https://github.com/hackforla/website/pull/4289#issuecomment-1483932802) at 2023-03-25 03:04 PM PDT -t-will-gillis,2023-03-25T22:17:01Z,- t-will-gillis commented on pull request: [4266](https://github.com/hackforla/website/pull/4266#issuecomment-1483934839) at 2023-03-25 03:17 PM PDT -t-will-gillis,2023-03-25T23:10:25Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1483943633) at 2023-03-25 04:10 PM PDT -t-will-gillis,2023-03-26T16:42:10Z,- t-will-gillis commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 09:42 AM PDT -t-will-gillis,2023-03-26T16:47:37Z,- t-will-gillis closed issue by PR 4267: [4238](https://github.com/hackforla/website/issues/4238#event-8847606286) at 2023-03-26 09:47 AM PDT -t-will-gillis,2023-03-26T16:52:07Z,- t-will-gillis closed issue by PR 4275: [4236](https://github.com/hackforla/website/issues/4236#event-8847612854) at 2023-03-26 09:52 AM PDT -t-will-gillis,2023-03-26T19:13:53Z,- t-will-gillis closed issue by PR 4223: [4010](https://github.com/hackforla/website/issues/4010#event-8847903926) at 2023-03-26 12:13 PM PDT -t-will-gillis,2023-03-26T21:09:03Z,- t-will-gillis submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1358119721) at 2023-03-26 02:09 PM PDT -t-will-gillis,2023-03-26T21:13:55Z,- t-will-gillis submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1358120948) at 2023-03-26 02:13 PM PDT -t-will-gillis,2023-03-26T21:14:53Z,- t-will-gillis closed issue by PR 4259: [4088](https://github.com/hackforla/website/issues/4088#event-8848133918) at 2023-03-26 02:14 PM PDT -t-will-gillis,2023-03-26T22:41:06Z,- t-will-gillis submitted pull request review: [4273](https://github.com/hackforla/website/pull/4273#pullrequestreview-1358140577) at 2023-03-26 03:41 PM PDT -t-will-gillis,2023-03-26T23:03:09Z,- t-will-gillis commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1484252961) at 2023-03-26 04:03 PM PDT -t-will-gillis,2023-03-27T16:21:40Z,- t-will-gillis commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1485441427) at 2023-03-27 09:21 AM PDT -t-will-gillis,2023-03-27T19:24:30Z,- t-will-gillis pull request merged: [4270](https://github.com/hackforla/website/pull/4270#event-8857678996) at 2023-03-27 12:24 PM PDT -t-will-gillis,2023-03-29T05:23:21Z,- t-will-gillis opened pull request: [4338](https://github.com/hackforla/website/pull/4338) at 2023-03-28 10:23 PM PDT -t-will-gillis,2023-03-30T03:13:39Z,- t-will-gillis submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1364260714) at 2023-03-29 08:13 PM PDT -t-will-gillis,2023-03-30T17:04:25Z,- t-will-gillis pull request merged: [4338](https://github.com/hackforla/website/pull/4338#event-8889933069) at 2023-03-30 10:04 AM PDT -t-will-gillis,2023-03-30T18:10:54Z,- t-will-gillis submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1365668627) at 2023-03-30 11:10 AM PDT -t-will-gillis,2023-04-01T20:43:20Z,- t-will-gillis commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1493113217) at 2023-04-01 01:43 PM PDT -t-will-gillis,2023-04-02T02:27:46Z,- t-will-gillis commented on pull request: [4361](https://github.com/hackforla/website/pull/4361#issuecomment-1493203705) at 2023-04-01 07:27 PM PDT -t-will-gillis,2023-04-02T02:28:02Z,- t-will-gillis submitted pull request review: [4361](https://github.com/hackforla/website/pull/4361#pullrequestreview-1368010464) at 2023-04-01 07:28 PM PDT -t-will-gillis,2023-04-02T03:54:04Z,- t-will-gillis commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1493215721) at 2023-04-01 08:54 PM PDT -t-will-gillis,2023-04-03T02:24:41Z,- t-will-gillis submitted pull request review: [4340](https://github.com/hackforla/website/pull/4340#pullrequestreview-1368213939) at 2023-04-02 07:24 PM PDT -t-will-gillis,2023-04-03T02:24:50Z,- t-will-gillis closed issue by PR 4340: [4211](https://github.com/hackforla/website/issues/4211#event-8907820067) at 2023-04-02 07:24 PM PDT -t-will-gillis,2023-04-03T02:46:03Z,- t-will-gillis submitted pull request review: [4353](https://github.com/hackforla/website/pull/4353#pullrequestreview-1368223797) at 2023-04-02 07:46 PM PDT -t-will-gillis,2023-04-03T02:46:14Z,- t-will-gillis closed issue by PR 4353: [4159](https://github.com/hackforla/website/issues/4159#event-8907891850) at 2023-04-02 07:46 PM PDT -t-will-gillis,2023-04-03T04:12:57Z,- t-will-gillis submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1368262366) at 2023-04-02 09:12 PM PDT -t-will-gillis,2023-04-03T04:30:16Z,- t-will-gillis submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1368271900) at 2023-04-02 09:30 PM PDT -t-will-gillis,2023-04-03T04:30:30Z,- t-will-gillis closed issue by PR 4274: [4183](https://github.com/hackforla/website/issues/4183#event-8908289940) at 2023-04-02 09:30 PM PDT -t-will-gillis,2023-04-06T04:13:47Z,- t-will-gillis submitted pull request review: [4273](https://github.com/hackforla/website/pull/4273#pullrequestreview-1374025073) at 2023-04-05 09:13 PM PDT -t-will-gillis,2023-04-06T04:15:22Z,- t-will-gillis closed issue by PR 4273: [2833](https://github.com/hackforla/website/issues/2833#event-8941439658) at 2023-04-05 09:15 PM PDT -t-will-gillis,2023-04-24T03:49:11Z,- t-will-gillis submitted pull request review: [4550](https://github.com/hackforla/website/pull/4550#pullrequestreview-1397150457) at 2023-04-23 08:49 PM PDT -t-will-gillis,2023-05-01T02:14:34Z,- t-will-gillis submitted pull request review: [4576](https://github.com/hackforla/website/pull/4576#pullrequestreview-1407287454) at 2023-04-30 07:14 PM PDT -t-will-gillis,2023-05-01T02:14:44Z,- t-will-gillis closed issue by PR 4576: [4398](https://github.com/hackforla/website/issues/4398#event-9133814152) at 2023-04-30 07:14 PM PDT -t-will-gillis,2023-05-01T02:27:26Z,- t-will-gillis submitted pull request review: [4584](https://github.com/hackforla/website/pull/4584#pullrequestreview-1407297699) at 2023-04-30 07:27 PM PDT -t-will-gillis,2023-05-01T02:27:35Z,- t-will-gillis closed issue by PR 4584: [4417](https://github.com/hackforla/website/issues/4417#event-9133892469) at 2023-04-30 07:27 PM PDT -t-will-gillis,2023-05-01T03:16:06Z,- t-will-gillis opened issue: [4587](https://github.com/hackforla/website/issues/4587) at 2023-04-30 08:16 PM PDT -t-will-gillis,2023-05-01T03:16:29Z,- t-will-gillis commented on issue: [4389](https://github.com/hackforla/website/issues/4389#issuecomment-1529300589) at 2023-04-30 08:16 PM PDT -t-will-gillis,2023-05-01T04:34:53Z,- t-will-gillis closed issue as completed: [4389](https://github.com/hackforla/website/issues/4389#event-9134344721) at 2023-04-30 09:34 PM PDT -t-will-gillis,2023-05-01T20:46:00Z,- t-will-gillis opened issue: [4590](https://github.com/hackforla/website/issues/4590) at 2023-05-01 01:46 PM PDT -t-will-gillis,2023-05-05T03:30:13Z,- t-will-gillis submitted pull request review: [4599](https://github.com/hackforla/website/pull/4599#pullrequestreview-1414136995) at 2023-05-04 08:30 PM PDT -t-will-gillis,2023-05-05T03:35:45Z,- t-will-gillis commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1535657325) at 2023-05-04 08:35 PM PDT -t-will-gillis,2023-05-05T04:39:51Z,- t-will-gillis opened issue: [4601](https://github.com/hackforla/website/issues/4601) at 2023-05-04 09:39 PM PDT -t-will-gillis,2023-05-05T04:42:55Z,- t-will-gillis assigned to issue: [4601](https://github.com/hackforla/website/issues/4601) at 2023-05-04 09:42 PM PDT -t-will-gillis,2023-05-05T04:58:11Z,- t-will-gillis opened pull request: [4602](https://github.com/hackforla/website/pull/4602) at 2023-05-04 09:58 PM PDT -t-will-gillis,2023-05-05T17:45:50Z,- t-will-gillis pull request merged: [4602](https://github.com/hackforla/website/pull/4602#event-9179145011) at 2023-05-05 10:45 AM PDT -t-will-gillis,2023-05-05T17:45:51Z,- t-will-gillis closed issue by PR 4602: [4601](https://github.com/hackforla/website/issues/4601#event-9179145174) at 2023-05-05 10:45 AM PDT -t-will-gillis,2023-05-09T04:24:26Z,- t-will-gillis submitted pull request review: [4599](https://github.com/hackforla/website/pull/4599#pullrequestreview-1417829588) at 2023-05-08 09:24 PM PDT -t-will-gillis,2023-05-09T04:25:23Z,- t-will-gillis closed issue by PR 4599: [4590](https://github.com/hackforla/website/issues/4590#event-9196359897) at 2023-05-08 09:25 PM PDT -t-will-gillis,2023-05-15T01:13:55Z,- t-will-gillis commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1547061482) at 2023-05-14 06:13 PM PDT -t-will-gillis,2023-05-15T01:14:25Z,- t-will-gillis assigned to issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1547061482) at 2023-05-14 06:14 PM PDT -t-will-gillis,2023-05-15T01:15:33Z,- t-will-gillis commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1547062208) at 2023-05-14 06:15 PM PDT -t-will-gillis,2023-05-15T02:12:22Z,- t-will-gillis opened pull request: [4668](https://github.com/hackforla/website/pull/4668) at 2023-05-14 07:12 PM PDT -t-will-gillis,2023-05-15T04:05:35Z,- t-will-gillis submitted pull request review: [4613](https://github.com/hackforla/website/pull/4613#pullrequestreview-1425736707) at 2023-05-14 09:05 PM PDT -t-will-gillis,2023-05-15T04:05:51Z,- t-will-gillis closed issue by PR 4613: [4527](https://github.com/hackforla/website/issues/4527#event-9241835366) at 2023-05-14 09:05 PM PDT -t-will-gillis,2023-05-15T04:18:18Z,- t-will-gillis submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1425743122) at 2023-05-14 09:18 PM PDT -t-will-gillis,2023-05-15T04:21:39Z,- t-will-gillis closed issue by PR 4639: [4512](https://github.com/hackforla/website/issues/4512#event-9241901587) at 2023-05-14 09:21 PM PDT -t-will-gillis,2023-05-15T04:23:29Z,- t-will-gillis submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1425745777) at 2023-05-14 09:23 PM PDT -t-will-gillis,2023-05-15T04:25:20Z,- t-will-gillis closed issue by PR 4608: [4557](https://github.com/hackforla/website/issues/4557#event-9241914812) at 2023-05-14 09:25 PM PDT -t-will-gillis,2023-05-15T04:48:13Z,- t-will-gillis submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1425759668) at 2023-05-14 09:48 PM PDT -t-will-gillis,2023-05-15T04:48:22Z,- t-will-gillis closed issue by PR 4644: [4578](https://github.com/hackforla/website/issues/4578#event-9241997448) at 2023-05-14 09:48 PM PDT -t-will-gillis,2023-05-15T05:36:58Z,- t-will-gillis submitted pull request review: [4657](https://github.com/hackforla/website/pull/4657#pullrequestreview-1425792979) at 2023-05-14 10:36 PM PDT -t-will-gillis,2023-05-15T05:37:11Z,- t-will-gillis closed issue by PR 4657: [4457](https://github.com/hackforla/website/issues/4457#event-9242242414) at 2023-05-14 10:37 PM PDT -t-will-gillis,2023-05-15T06:16:06Z,- t-will-gillis submitted pull request review: [4665](https://github.com/hackforla/website/pull/4665#pullrequestreview-1425827975) at 2023-05-14 11:16 PM PDT -t-will-gillis,2023-05-16T18:57:49Z,- t-will-gillis submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1429221703) at 2023-05-16 11:57 AM PDT -t-will-gillis,2023-05-16T19:16:14Z,- t-will-gillis submitted pull request review: [4674](https://github.com/hackforla/website/pull/4674#pullrequestreview-1429249351) at 2023-05-16 12:16 PM PDT -t-will-gillis,2023-05-16T19:20:56Z,- t-will-gillis commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1550229372) at 2023-05-16 12:20 PM PDT -t-will-gillis,2023-05-16T19:27:30Z,- t-will-gillis commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1550237935) at 2023-05-16 12:27 PM PDT -t-will-gillis,2023-05-17T01:32:51Z,- t-will-gillis submitted pull request review: [4674](https://github.com/hackforla/website/pull/4674#pullrequestreview-1429658382) at 2023-05-16 06:32 PM PDT -t-will-gillis,2023-05-17T03:04:51Z,- t-will-gillis submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1429720329) at 2023-05-16 08:04 PM PDT -t-will-gillis,2023-05-17T16:42:18Z,- t-will-gillis commented on pull request: [4665](https://github.com/hackforla/website/pull/4665#issuecomment-1551735346) at 2023-05-17 09:42 AM PDT -t-will-gillis,2023-05-17T16:42:41Z,- t-will-gillis submitted pull request review: [4665](https://github.com/hackforla/website/pull/4665#pullrequestreview-1431147550) at 2023-05-17 09:42 AM PDT -t-will-gillis,2023-05-17T16:42:57Z,- t-will-gillis closed issue by PR 4665: [4579](https://github.com/hackforla/website/issues/4579#event-9271702055) at 2023-05-17 09:42 AM PDT -t-will-gillis,2023-05-17T21:13:08Z,- t-will-gillis commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1552091274) at 2023-05-17 02:13 PM PDT -t-will-gillis,2023-05-18T01:32:57Z,- t-will-gillis commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1552286501) at 2023-05-17 06:32 PM PDT -t-will-gillis,2023-05-18T20:46:07Z,- t-will-gillis pull request merged: [4668](https://github.com/hackforla/website/pull/4668#event-9283653303) at 2023-05-18 01:46 PM PDT -t-will-gillis,2023-05-18T21:59:39Z,- t-will-gillis commented on pull request: [4694](https://github.com/hackforla/website/pull/4694#issuecomment-1553717346) at 2023-05-18 02:59 PM PDT -t-will-gillis,2023-05-19T01:13:22Z,- t-will-gillis assigned to issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1487837388) at 2023-05-18 06:13 PM PDT -t-will-gillis,2023-05-19T01:33:11Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1553888231) at 2023-05-18 06:33 PM PDT -t-will-gillis,2023-05-20T19:33:30Z,- t-will-gillis submitted pull request review: [4694](https://github.com/hackforla/website/pull/4694#pullrequestreview-1435439189) at 2023-05-20 12:33 PM PDT -t-will-gillis,2023-05-21T06:11:01Z,- t-will-gillis submitted pull request review: [4694](https://github.com/hackforla/website/pull/4694#pullrequestreview-1435477657) at 2023-05-20 11:11 PM PDT -t-will-gillis,2023-05-21T06:15:13Z,- t-will-gillis closed issue by PR 4694: [4593](https://github.com/hackforla/website/issues/4593#event-9295443495) at 2023-05-20 11:15 PM PDT -t-will-gillis,2023-05-21T15:32:25Z,- t-will-gillis submitted pull request review: [4689](https://github.com/hackforla/website/pull/4689#pullrequestreview-1435557434) at 2023-05-21 08:32 AM PDT -t-will-gillis,2023-05-21T15:32:38Z,- t-will-gillis closed issue by PR 4689: [4486](https://github.com/hackforla/website/issues/4486#event-9296178027) at 2023-05-21 08:32 AM PDT -t-will-gillis,2023-05-21T15:43:57Z,- t-will-gillis submitted pull request review: [4697](https://github.com/hackforla/website/pull/4697#pullrequestreview-1435558765) at 2023-05-21 08:43 AM PDT -t-will-gillis,2023-05-21T15:44:09Z,- t-will-gillis closed issue by PR 4697: [4483](https://github.com/hackforla/website/issues/4483#event-9296192907) at 2023-05-21 08:44 AM PDT -t-will-gillis,2023-05-21T15:57:11Z,- t-will-gillis commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1556213213) at 2023-05-21 08:57 AM PDT -t-will-gillis,2023-05-21T16:16:02Z,- t-will-gillis submitted pull request review: [4698](https://github.com/hackforla/website/pull/4698#pullrequestreview-1435562428) at 2023-05-21 09:16 AM PDT -t-will-gillis,2023-05-21T16:16:12Z,- t-will-gillis closed issue by PR 4698: [4344](https://github.com/hackforla/website/issues/4344#event-9296236709) at 2023-05-21 09:16 AM PDT -t-will-gillis,2023-05-21T16:48:05Z,- t-will-gillis commented on issue: [2065](https://github.com/hackforla/website/issues/2065#issuecomment-1556223101) at 2023-05-21 09:48 AM PDT -t-will-gillis,2023-05-21T16:48:06Z,- t-will-gillis closed issue as completed: [2065](https://github.com/hackforla/website/issues/2065#event-9296276538) at 2023-05-21 09:48 AM PDT -t-will-gillis,2023-05-21T16:51:45Z,- t-will-gillis commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1556223721) at 2023-05-21 09:51 AM PDT -t-will-gillis,2023-05-21T18:27:06Z,- t-will-gillis opened issue: [4703](https://github.com/hackforla/website/issues/4703) at 2023-05-21 11:27 AM PDT -t-will-gillis,2023-05-21T18:31:56Z,- t-will-gillis opened issue: [4704](https://github.com/hackforla/website/issues/4704) at 2023-05-21 11:31 AM PDT -t-will-gillis,2023-05-23T20:40:21Z,- t-will-gillis commented on issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-1560095316) at 2023-05-23 01:40 PM PDT -t-will-gillis,2023-05-26T22:40:46Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1565037321) at 2023-05-26 03:40 PM PDT -t-will-gillis,2023-05-27T21:21:54Z,- t-will-gillis commented on pull request: [4736](https://github.com/hackforla/website/pull/4736#issuecomment-1565687687) at 2023-05-27 02:21 PM PDT -t-will-gillis,2023-05-28T15:31:14Z,- t-will-gillis commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1566174613) at 2023-05-28 08:31 AM PDT -t-will-gillis,2023-05-28T15:31:15Z,- t-will-gillis closed issue as completed: [3843](https://github.com/hackforla/website/issues/3843#event-9362451206) at 2023-05-28 08:31 AM PDT -t-will-gillis,2023-05-28T16:38:22Z,- t-will-gillis submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1448325563) at 2023-05-28 09:38 AM PDT -t-will-gillis,2023-05-28T16:38:34Z,- t-will-gillis closed issue by PR 4708: [4685](https://github.com/hackforla/website/issues/4685#event-9362617426) at 2023-05-28 09:38 AM PDT -t-will-gillis,2023-05-28T16:45:18Z,- t-will-gillis submitted pull request review: [4725](https://github.com/hackforla/website/pull/4725#pullrequestreview-1448328176) at 2023-05-28 09:45 AM PDT -t-will-gillis,2023-05-28T16:45:27Z,- t-will-gillis closed issue by PR 4725: [4354](https://github.com/hackforla/website/issues/4354#event-9362635884) at 2023-05-28 09:45 AM PDT -t-will-gillis,2023-05-28T16:56:20Z,- t-will-gillis submitted pull request review: [4730](https://github.com/hackforla/website/pull/4730#pullrequestreview-1448330934) at 2023-05-28 09:56 AM PDT -t-will-gillis,2023-05-28T16:57:17Z,- t-will-gillis closed issue by PR 4730: [4502](https://github.com/hackforla/website/issues/4502#event-9362657374) at 2023-05-28 09:57 AM PDT -t-will-gillis,2023-05-28T20:49:06Z,- t-will-gillis submitted pull request review: [4746](https://github.com/hackforla/website/pull/4746#pullrequestreview-1448416308) at 2023-05-28 01:49 PM PDT -t-will-gillis,2023-05-29T15:42:10Z,- t-will-gillis commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1567288597) at 2023-05-29 08:42 AM PDT -t-will-gillis,2023-05-29T23:57:59Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1567603313) at 2023-05-29 04:57 PM PDT -t-will-gillis,2023-05-30T03:14:58Z,- t-will-gillis opened issue: [4753](https://github.com/hackforla/website/issues/4753) at 2023-05-29 08:14 PM PDT -t-will-gillis,2023-05-30T03:19:37Z,- t-will-gillis commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1567705945) at 2023-05-29 08:19 PM PDT -t-will-gillis,2023-05-31T02:12:04Z,- t-will-gillis closed issue by PR 4746: [4487](https://github.com/hackforla/website/issues/4487#event-9384619126) at 2023-05-30 07:12 PM PDT -t-will-gillis,2023-05-31T18:37:40Z,- t-will-gillis submitted pull request review: [4760](https://github.com/hackforla/website/pull/4760#pullrequestreview-1453914296) at 2023-05-31 11:37 AM PDT -t-will-gillis,2023-06-01T06:06:04Z,- t-will-gillis submitted pull request review: [4760](https://github.com/hackforla/website/pull/4760#pullrequestreview-1454640725) at 2023-05-31 11:06 PM PDT -t-will-gillis,2023-06-01T18:14:33Z,- t-will-gillis submitted pull request review: [4736](https://github.com/hackforla/website/pull/4736#pullrequestreview-1456047614) at 2023-06-01 11:14 AM PDT -t-will-gillis,2023-06-01T20:29:02Z,- t-will-gillis opened issue: [4768](https://github.com/hackforla/website/issues/4768) at 2023-06-01 01:29 PM PDT -t-will-gillis,2023-06-03T03:48:28Z,- t-will-gillis assigned to issue: [4768](https://github.com/hackforla/website/issues/4768) at 2023-06-02 08:48 PM PDT -t-will-gillis,2023-06-03T05:17:58Z,- t-will-gillis unassigned from issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1574621978) at 2023-06-02 10:17 PM PDT -t-will-gillis,2023-06-03T18:22:47Z,- t-will-gillis opened issue: [4776](https://github.com/hackforla/website/issues/4776) at 2023-06-03 11:22 AM PDT -t-will-gillis,2023-06-03T20:20:11Z,- t-will-gillis opened issue: [4777](https://github.com/hackforla/website/issues/4777) at 2023-06-03 01:20 PM PDT -t-will-gillis,2023-06-04T21:18:18Z,- t-will-gillis opened issue: [4779](https://github.com/hackforla/website/issues/4779) at 2023-06-04 02:18 PM PDT -t-will-gillis,2023-06-04T21:21:58Z,- t-will-gillis commented on issue: [4779](https://github.com/hackforla/website/issues/4779#issuecomment-1575734774) at 2023-06-04 02:21 PM PDT -t-will-gillis,2023-06-04T21:21:58Z,- t-will-gillis closed issue as completed: [4779](https://github.com/hackforla/website/issues/4779#event-9425885149) at 2023-06-04 02:21 PM PDT -t-will-gillis,2023-06-04T22:27:39Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575756553) at 2023-06-04 03:27 PM PDT -t-will-gillis,2023-06-06T18:44:48Z,- t-will-gillis opened issue: [4788](https://github.com/hackforla/website/issues/4788) at 2023-06-06 11:44 AM PDT -t-will-gillis,2023-06-07T05:00:30Z,- t-will-gillis commented on issue: [4765](https://github.com/hackforla/website/issues/4765#issuecomment-1579895686) at 2023-06-06 10:00 PM PDT -t-will-gillis,2023-06-07T05:00:30Z,- t-will-gillis closed issue as not planned: [4765](https://github.com/hackforla/website/issues/4765#event-9453446761) at 2023-06-06 10:00 PM PDT -t-will-gillis,2023-06-07T05:01:29Z,- t-will-gillis commented on issue: [4766](https://github.com/hackforla/website/issues/4766#issuecomment-1579896825) at 2023-06-06 10:01 PM PDT -t-will-gillis,2023-06-07T05:01:29Z,- t-will-gillis closed issue as not planned: [4766](https://github.com/hackforla/website/issues/4766#event-9453453038) at 2023-06-06 10:01 PM PDT -t-will-gillis,2023-06-08T18:05:03Z,- t-will-gillis opened issue: [4790](https://github.com/hackforla/website/issues/4790) at 2023-06-08 11:05 AM PDT -t-will-gillis,2023-06-08T18:16:14Z,- t-will-gillis commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1583123853) at 2023-06-08 11:16 AM PDT -t-will-gillis,2023-06-08T19:01:00Z,- t-will-gillis submitted pull request review: [4739](https://github.com/hackforla/website/pull/4739#pullrequestreview-1470589421) at 2023-06-08 12:01 PM PDT -t-will-gillis,2023-06-08T20:17:46Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1583282877) at 2023-06-08 01:17 PM PDT -t-will-gillis,2023-06-08T20:30:42Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470715322) at 2023-06-08 01:30 PM PDT -t-will-gillis,2023-06-08T20:33:25Z,- t-will-gillis submitted pull request review: [4737](https://github.com/hackforla/website/pull/4737#pullrequestreview-1470718659) at 2023-06-08 01:33 PM PDT -t-will-gillis,2023-06-08T20:34:37Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470720009) at 2023-06-08 01:34 PM PDT -t-will-gillis,2023-06-08T20:35:21Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470720838) at 2023-06-08 01:35 PM PDT -t-will-gillis,2023-06-08T20:36:53Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470722559) at 2023-06-08 01:36 PM PDT -t-will-gillis,2023-06-08T21:13:58Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470772925) at 2023-06-08 02:13 PM PDT -t-will-gillis,2023-06-08T21:15:31Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470774643) at 2023-06-08 02:15 PM PDT -t-will-gillis,2023-06-08T21:32:16Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470791350) at 2023-06-08 02:32 PM PDT -t-will-gillis,2023-06-08T21:32:49Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470792046) at 2023-06-08 02:32 PM PDT -t-will-gillis,2023-06-08T21:39:19Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470801350) at 2023-06-08 02:39 PM PDT -t-will-gillis,2023-06-08T22:02:55Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470833939) at 2023-06-08 03:02 PM PDT -t-will-gillis,2023-06-08T22:03:47Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470834577) at 2023-06-08 03:03 PM PDT -t-will-gillis,2023-06-09T03:22:17Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471148199) at 2023-06-08 08:22 PM PDT -t-will-gillis,2023-06-09T03:30:18Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471155029) at 2023-06-08 08:30 PM PDT -t-will-gillis,2023-06-09T03:38:48Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471161421) at 2023-06-08 08:38 PM PDT -t-will-gillis,2023-06-09T03:54:31Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471180113) at 2023-06-08 08:54 PM PDT -t-will-gillis,2023-06-09T03:56:06Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471182512) at 2023-06-08 08:56 PM PDT -t-will-gillis,2023-06-09T04:00:05Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471185737) at 2023-06-08 09:00 PM PDT -t-will-gillis,2023-06-09T04:07:30Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471194590) at 2023-06-08 09:07 PM PDT -t-will-gillis,2023-06-09T04:09:34Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471195685) at 2023-06-08 09:09 PM PDT -t-will-gillis,2023-06-09T04:16:29Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471200964) at 2023-06-08 09:16 PM PDT -t-will-gillis,2023-06-11T04:35:07Z,- t-will-gillis opened issue: [4797](https://github.com/hackforla/website/issues/4797) at 2023-06-10 09:35 PM PDT -t-will-gillis,2023-06-11T04:38:04Z,- t-will-gillis commented on issue: [4797](https://github.com/hackforla/website/issues/4797#issuecomment-1586012255) at 2023-06-10 09:38 PM PDT -t-will-gillis,2023-06-11T04:38:04Z,- t-will-gillis closed issue as not planned: [4797](https://github.com/hackforla/website/issues/4797#event-9492563847) at 2023-06-10 09:38 PM PDT -t-will-gillis,2023-06-11T04:55:06Z,- t-will-gillis opened issue: [4798](https://github.com/hackforla/website/issues/4798) at 2023-06-10 09:55 PM PDT -t-will-gillis,2023-06-11T04:58:27Z,- t-will-gillis opened issue: [4799](https://github.com/hackforla/website/issues/4799) at 2023-06-10 09:58 PM PDT -t-will-gillis,2023-06-11T05:01:16Z,- t-will-gillis opened issue: [4800](https://github.com/hackforla/website/issues/4800) at 2023-06-10 10:01 PM PDT -t-will-gillis,2023-06-11T05:03:59Z,- t-will-gillis opened issue: [4801](https://github.com/hackforla/website/issues/4801) at 2023-06-10 10:03 PM PDT -t-will-gillis,2023-06-11T05:06:03Z,- t-will-gillis opened issue: [4802](https://github.com/hackforla/website/issues/4802) at 2023-06-10 10:06 PM PDT -t-will-gillis,2023-06-11T05:08:11Z,- t-will-gillis opened issue: [4803](https://github.com/hackforla/website/issues/4803) at 2023-06-10 10:08 PM PDT -t-will-gillis,2023-06-11T05:10:38Z,- t-will-gillis opened issue: [4804](https://github.com/hackforla/website/issues/4804) at 2023-06-10 10:10 PM PDT -t-will-gillis,2023-06-11T05:11:53Z,- t-will-gillis opened issue: [4805](https://github.com/hackforla/website/issues/4805) at 2023-06-10 10:11 PM PDT -t-will-gillis,2023-06-11T05:13:19Z,- t-will-gillis opened issue: [4806](https://github.com/hackforla/website/issues/4806) at 2023-06-10 10:13 PM PDT -t-will-gillis,2023-06-11T05:15:49Z,- t-will-gillis opened issue: [4807](https://github.com/hackforla/website/issues/4807) at 2023-06-10 10:15 PM PDT -t-will-gillis,2023-06-11T05:18:46Z,- t-will-gillis opened issue: [4808](https://github.com/hackforla/website/issues/4808) at 2023-06-10 10:18 PM PDT -t-will-gillis,2023-06-11T05:20:16Z,- t-will-gillis opened issue: [4809](https://github.com/hackforla/website/issues/4809) at 2023-06-10 10:20 PM PDT -t-will-gillis,2023-06-11T05:21:52Z,- t-will-gillis opened issue: [4810](https://github.com/hackforla/website/issues/4810) at 2023-06-10 10:21 PM PDT -t-will-gillis,2023-06-11T05:23:52Z,- t-will-gillis opened issue: [4811](https://github.com/hackforla/website/issues/4811) at 2023-06-10 10:23 PM PDT -t-will-gillis,2023-06-11T05:26:08Z,- t-will-gillis opened issue: [4812](https://github.com/hackforla/website/issues/4812) at 2023-06-10 10:26 PM PDT -t-will-gillis,2023-06-11T05:27:47Z,- t-will-gillis opened issue: [4813](https://github.com/hackforla/website/issues/4813) at 2023-06-10 10:27 PM PDT -t-will-gillis,2023-06-11T05:29:21Z,- t-will-gillis opened issue: [4814](https://github.com/hackforla/website/issues/4814) at 2023-06-10 10:29 PM PDT -t-will-gillis,2023-06-12T05:30:24Z,- t-will-gillis opened issue: [4815](https://github.com/hackforla/website/issues/4815) at 2023-06-11 10:30 PM PDT -t-will-gillis,2023-06-12T18:34:23Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1587870057) at 2023-06-12 11:34 AM PDT -t-will-gillis,2023-06-12T18:54:33Z,- t-will-gillis closed issue as not planned: [4779](https://github.com/hackforla/website/issues/4779#event-9506471252) at 2023-06-12 11:54 AM PDT -t-will-gillis,2023-06-12T18:59:12Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1587903615) at 2023-06-12 11:59 AM PDT -t-will-gillis,2023-06-12T19:01:57Z,- t-will-gillis commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1587909269) at 2023-06-12 12:01 PM PDT -t-will-gillis,2023-06-13T18:43:14Z,- t-will-gillis opened issue: [4822](https://github.com/hackforla/website/issues/4822) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:43:31Z,- t-will-gillis opened issue: [4823](https://github.com/hackforla/website/issues/4823) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:43:40Z,- t-will-gillis opened issue: [4824](https://github.com/hackforla/website/issues/4824) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:43:52Z,- t-will-gillis opened issue: [4825](https://github.com/hackforla/website/issues/4825) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:44:05Z,- t-will-gillis opened issue: [4826](https://github.com/hackforla/website/issues/4826) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:11Z,- t-will-gillis opened issue: [4827](https://github.com/hackforla/website/issues/4827) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:19Z,- t-will-gillis opened issue: [4828](https://github.com/hackforla/website/issues/4828) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:28Z,- t-will-gillis opened issue: [4829](https://github.com/hackforla/website/issues/4829) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:35Z,- t-will-gillis opened issue: [4830](https://github.com/hackforla/website/issues/4830) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:41Z,- t-will-gillis opened issue: [4831](https://github.com/hackforla/website/issues/4831) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T22:39:07Z,- t-will-gillis assigned to issue: [4824](https://github.com/hackforla/website/issues/4824) at 2023-06-13 03:39 PM PDT -t-will-gillis,2023-06-13T23:00:28Z,- t-will-gillis opened pull request: [4832](https://github.com/hackforla/website/pull/4832) at 2023-06-13 04:00 PM PDT -t-will-gillis,2023-06-13T23:04:25Z,- t-will-gillis assigned to issue: [4825](https://github.com/hackforla/website/issues/4825) at 2023-06-13 04:04 PM PDT -t-will-gillis,2023-06-13T23:46:11Z,- t-will-gillis opened pull request: [4833](https://github.com/hackforla/website/pull/4833) at 2023-06-13 04:46 PM PDT -t-will-gillis,2023-06-14T00:15:12Z,- t-will-gillis assigned to issue: [4827](https://github.com/hackforla/website/issues/4827) at 2023-06-13 05:15 PM PDT -t-will-gillis,2023-06-14T02:36:45Z,- t-will-gillis assigned to issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590195813) at 2023-06-13 07:36 PM PDT -t-will-gillis,2023-06-14T02:48:44Z,- t-will-gillis unassigned from issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590355187) at 2023-06-13 07:48 PM PDT -t-will-gillis,2023-06-14T17:38:30Z,- t-will-gillis opened pull request: [4836](https://github.com/hackforla/website/pull/4836) at 2023-06-14 10:38 AM PDT -t-will-gillis,2023-06-14T17:41:06Z,- t-will-gillis assigned to issue: [4826](https://github.com/hackforla/website/issues/4826) at 2023-06-14 10:41 AM PDT -t-will-gillis,2023-06-14T17:58:43Z,- t-will-gillis opened pull request: [4837](https://github.com/hackforla/website/pull/4837) at 2023-06-14 10:58 AM PDT -t-will-gillis,2023-06-14T18:06:00Z,- t-will-gillis assigned to issue: [4823](https://github.com/hackforla/website/issues/4823) at 2023-06-14 11:06 AM PDT -t-will-gillis,2023-06-14T18:44:17Z,- t-will-gillis opened pull request: [4838](https://github.com/hackforla/website/pull/4838) at 2023-06-14 11:44 AM PDT -t-will-gillis,2023-06-15T03:53:15Z,- t-will-gillis opened issue: [4839](https://github.com/hackforla/website/issues/4839) at 2023-06-14 08:53 PM PDT -t-will-gillis,2023-06-15T03:54:42Z,- t-will-gillis commented on issue: [4704](https://github.com/hackforla/website/issues/4704#issuecomment-1592311455) at 2023-06-14 08:54 PM PDT -t-will-gillis,2023-06-15T03:54:42Z,- t-will-gillis closed issue as completed: [4704](https://github.com/hackforla/website/issues/4704#event-9535286429) at 2023-06-14 08:54 PM PDT -t-will-gillis,2023-06-15T17:11:40Z,- t-will-gillis commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1593446228) at 2023-06-15 10:11 AM PDT -t-will-gillis,2023-06-16T04:04:45Z,- t-will-gillis assigned to issue: [4828](https://github.com/hackforla/website/issues/4828) at 2023-06-15 09:04 PM PDT -t-will-gillis,2023-06-16T04:39:35Z,- t-will-gillis opened pull request: [4845](https://github.com/hackforla/website/pull/4845) at 2023-06-15 09:39 PM PDT -t-will-gillis,2023-06-16T04:41:17Z,- t-will-gillis assigned to issue: [4829](https://github.com/hackforla/website/issues/4829) at 2023-06-15 09:41 PM PDT -t-will-gillis,2023-06-16T04:57:27Z,- t-will-gillis opened pull request: [4846](https://github.com/hackforla/website/pull/4846) at 2023-06-15 09:57 PM PDT -t-will-gillis,2023-06-16T05:01:13Z,- t-will-gillis assigned to issue: [4830](https://github.com/hackforla/website/issues/4830) at 2023-06-15 10:01 PM PDT -t-will-gillis,2023-06-16T05:10:24Z,- t-will-gillis opened pull request: [4847](https://github.com/hackforla/website/pull/4847) at 2023-06-15 10:10 PM PDT -t-will-gillis,2023-06-16T05:12:18Z,- t-will-gillis assigned to issue: [4831](https://github.com/hackforla/website/issues/4831) at 2023-06-15 10:12 PM PDT -t-will-gillis,2023-06-16T05:33:00Z,- t-will-gillis opened pull request: [4848](https://github.com/hackforla/website/pull/4848) at 2023-06-15 10:33 PM PDT -t-will-gillis,2023-06-16T05:38:26Z,- t-will-gillis commented on issue: [4822](https://github.com/hackforla/website/issues/4822#issuecomment-1594133772) at 2023-06-15 10:38 PM PDT -t-will-gillis,2023-06-16T21:30:58Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1595337763) at 2023-06-16 02:30 PM PDT -t-will-gillis,2023-06-18T15:24:55Z,- t-will-gillis pull request merged: [4833](https://github.com/hackforla/website/pull/4833#event-9561409762) at 2023-06-18 08:24 AM PDT -t-will-gillis,2023-06-18T15:24:57Z,- t-will-gillis closed issue by PR 4833: [4825](https://github.com/hackforla/website/issues/4825#event-9561409813) at 2023-06-18 08:24 AM PDT -t-will-gillis,2023-06-18T16:07:41Z,- t-will-gillis opened issue: [4852](https://github.com/hackforla/website/issues/4852) at 2023-06-18 09:07 AM PDT -t-will-gillis,2023-06-18T16:44:39Z,- t-will-gillis closed issue by PR 4843: [4782](https://github.com/hackforla/website/issues/4782#event-9561559600) at 2023-06-18 09:44 AM PDT -t-will-gillis,2023-06-19T00:45:09Z,- t-will-gillis pull request merged: [4838](https://github.com/hackforla/website/pull/4838#event-9562440319) at 2023-06-18 05:45 PM PDT -t-will-gillis,2023-06-19T00:45:11Z,- t-will-gillis closed issue by PR 4838: [4823](https://github.com/hackforla/website/issues/4823#event-9562440384) at 2023-06-18 05:45 PM PDT -t-will-gillis,2023-06-19T01:22:36Z,- t-will-gillis pull request merged: [4847](https://github.com/hackforla/website/pull/4847#event-9562555590) at 2023-06-18 06:22 PM PDT -t-will-gillis,2023-06-19T01:22:38Z,- t-will-gillis closed issue by PR 4847: [4830](https://github.com/hackforla/website/issues/4830#event-9562555655) at 2023-06-18 06:22 PM PDT -t-will-gillis,2023-06-19T01:28:37Z,- t-will-gillis pull request merged: [4845](https://github.com/hackforla/website/pull/4845#event-9562580214) at 2023-06-18 06:28 PM PDT -t-will-gillis,2023-06-19T01:28:38Z,- t-will-gillis closed issue by PR 4845: [4828](https://github.com/hackforla/website/issues/4828#event-9562580311) at 2023-06-18 06:28 PM PDT -t-will-gillis,2023-06-19T16:54:04Z,- t-will-gillis commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1597487667) at 2023-06-19 09:54 AM PDT -t-will-gillis,2023-06-19T23:43:42Z,- t-will-gillis commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1597880205) at 2023-06-19 04:43 PM PDT -t-will-gillis,2023-06-20T06:57:10Z,- t-will-gillis pull request merged: [4848](https://github.com/hackforla/website/pull/4848#event-9575736418) at 2023-06-19 11:57 PM PDT -t-will-gillis,2023-06-20T15:15:43Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1598994374) at 2023-06-20 08:15 AM PDT -t-will-gillis,2023-06-21T05:06:33Z,- t-will-gillis opened issue: [4868](https://github.com/hackforla/website/issues/4868) at 2023-06-20 10:06 PM PDT -t-will-gillis,2023-06-21T18:01:14Z,- t-will-gillis commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1601328938) at 2023-06-21 11:01 AM PDT -t-will-gillis,2023-06-23T17:09:36Z,- t-will-gillis commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1604571024) at 2023-06-23 10:09 AM PDT -t-will-gillis,2023-06-23T17:09:37Z,- t-will-gillis closed issue as completed: [4790](https://github.com/hackforla/website/issues/4790#event-9619896536) at 2023-06-23 10:09 AM PDT -t-will-gillis,2023-06-24T00:10:20Z,- t-will-gillis commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1605173445) at 2023-06-23 05:10 PM PDT -t-will-gillis,2023-06-24T00:20:12Z,- t-will-gillis commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1605180254) at 2023-06-23 05:20 PM PDT -t-will-gillis,2023-06-24T20:08:50Z,- t-will-gillis commented on pull request: [4837](https://github.com/hackforla/website/pull/4837#issuecomment-1605712817) at 2023-06-24 01:08 PM PDT -t-will-gillis,2023-06-24T20:08:50Z,- t-will-gillis pull request closed w/o merging: [4837](https://github.com/hackforla/website/pull/4837#event-9627721713) at 2023-06-24 01:08 PM PDT -t-will-gillis,2023-06-24T20:18:31Z,- t-will-gillis opened pull request: [4881](https://github.com/hackforla/website/pull/4881) at 2023-06-24 01:18 PM PDT -t-will-gillis,2023-06-24T21:35:05Z,- t-will-gillis pull request merged: [4881](https://github.com/hackforla/website/pull/4881#event-9627904361) at 2023-06-24 02:35 PM PDT -t-will-gillis,2023-06-24T21:35:06Z,- t-will-gillis closed issue by PR 4881: [4826](https://github.com/hackforla/website/issues/4826#event-9627904501) at 2023-06-24 02:35 PM PDT -t-will-gillis,2023-06-26T05:40:46Z,- t-will-gillis submitted pull request review: [4738](https://github.com/hackforla/website/pull/4738#pullrequestreview-1497607504) at 2023-06-25 10:40 PM PDT -t-will-gillis,2023-06-26T05:41:41Z,- t-will-gillis submitted pull request review: [4849](https://github.com/hackforla/website/pull/4849#pullrequestreview-1497608231) at 2023-06-25 10:41 PM PDT -t-will-gillis,2023-06-26T19:43:43Z,- t-will-gillis submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1499288875) at 2023-06-26 12:43 PM PDT -t-will-gillis,2023-06-26T19:46:27Z,- t-will-gillis submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1499292355) at 2023-06-26 12:46 PM PDT -t-will-gillis,2023-06-27T00:41:20Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1608534444) at 2023-06-26 05:41 PM PDT -t-will-gillis,2023-06-27T03:14:28Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1608694315) at 2023-06-26 08:14 PM PDT -t-will-gillis,2023-06-27T03:46:49Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1608742649) at 2023-06-26 08:46 PM PDT -t-will-gillis,2023-06-28T04:14:37Z,- t-will-gillis commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1610671471) at 2023-06-27 09:14 PM PDT -t-will-gillis,2023-06-28T17:22:12Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1611807604) at 2023-06-28 10:22 AM PDT -t-will-gillis,2023-06-28T17:28:06Z,- t-will-gillis commented on issue: [4891](https://github.com/hackforla/website/issues/4891#issuecomment-1611815122) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:06Z,- t-will-gillis closed issue as not planned: [4891](https://github.com/hackforla/website/issues/4891#event-9667457102) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:30Z,- t-will-gillis commented on issue: [4892](https://github.com/hackforla/website/issues/4892#issuecomment-1611815680) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:30Z,- t-will-gillis closed issue as not planned: [4892](https://github.com/hackforla/website/issues/4892#event-9667460205) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:48Z,- t-will-gillis commented on issue: [4893](https://github.com/hackforla/website/issues/4893#issuecomment-1611816106) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:48Z,- t-will-gillis closed issue as not planned: [4893](https://github.com/hackforla/website/issues/4893#event-9667462514) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:29:05Z,- t-will-gillis commented on issue: [4894](https://github.com/hackforla/website/issues/4894#issuecomment-1611816415) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T17:29:05Z,- t-will-gillis closed issue as not planned: [4894](https://github.com/hackforla/website/issues/4894#event-9667464637) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T17:29:22Z,- t-will-gillis commented on issue: [4895](https://github.com/hackforla/website/issues/4895#issuecomment-1611816704) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T17:29:22Z,- t-will-gillis closed issue as not planned: [4895](https://github.com/hackforla/website/issues/4895#event-9667466694) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T19:21:56Z,- t-will-gillis opened issue: [4898](https://github.com/hackforla/website/issues/4898) at 2023-06-28 12:21 PM PDT -t-will-gillis,2023-06-28T19:22:05Z,- t-will-gillis assigned to issue: [4898](https://github.com/hackforla/website/issues/4898) at 2023-06-28 12:22 PM PDT -t-will-gillis,2023-06-28T19:33:28Z,- t-will-gillis opened pull request: [4899](https://github.com/hackforla/website/pull/4899) at 2023-06-28 12:33 PM PDT -t-will-gillis,2023-06-28T20:39:18Z,- t-will-gillis pull request merged: [4846](https://github.com/hackforla/website/pull/4846#event-9669545446) at 2023-06-28 01:39 PM PDT -t-will-gillis,2023-06-28T20:39:19Z,- t-will-gillis closed issue by PR 4846: [4829](https://github.com/hackforla/website/issues/4829#event-9669546296) at 2023-06-28 01:39 PM PDT -t-will-gillis,2023-06-29T15:25:54Z,- t-will-gillis pull request merged: [4832](https://github.com/hackforla/website/pull/4832#event-9678509683) at 2023-06-29 08:25 AM PDT -t-will-gillis,2023-06-29T15:25:56Z,- t-will-gillis closed issue by PR 4832: [4824](https://github.com/hackforla/website/issues/4824#event-9678510433) at 2023-06-29 08:25 AM PDT -t-will-gillis,2023-06-29T16:34:45Z,- t-will-gillis pull request merged: [4899](https://github.com/hackforla/website/pull/4899#event-9679322328) at 2023-06-29 09:34 AM PDT -t-will-gillis,2023-06-29T16:34:46Z,- t-will-gillis closed issue by PR 4899: [4898](https://github.com/hackforla/website/issues/4898#event-9679322646) at 2023-06-29 09:34 AM PDT -t-will-gillis,2023-06-29T17:57:26Z,- t-will-gillis opened issue: [4901](https://github.com/hackforla/website/issues/4901) at 2023-06-29 10:57 AM PDT -t-will-gillis,2023-06-29T18:07:35Z,- t-will-gillis submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1505814694) at 2023-06-29 11:07 AM PDT -t-will-gillis,2023-06-29T18:26:32Z,- t-will-gillis assigned to issue: [4822](https://github.com/hackforla/website/issues/4822#issuecomment-1594133772) at 2023-06-29 11:26 AM PDT -t-will-gillis,2023-06-29T18:27:23Z,- t-will-gillis commented on issue: [4822](https://github.com/hackforla/website/issues/4822#issuecomment-1613607549) at 2023-06-29 11:27 AM PDT -t-will-gillis,2023-06-29T21:36:08Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1613838170) at 2023-06-29 02:36 PM PDT -t-will-gillis,2023-06-29T22:01:39Z,- t-will-gillis commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1613859645) at 2023-06-29 03:01 PM PDT -t-will-gillis,2023-06-30T17:39:15Z,- t-will-gillis pull request merged: [4836](https://github.com/hackforla/website/pull/4836#event-9690232467) at 2023-06-30 10:39 AM PDT -t-will-gillis,2023-06-30T17:39:17Z,- t-will-gillis closed issue by PR 4836: [4827](https://github.com/hackforla/website/issues/4827#event-9690232611) at 2023-06-30 10:39 AM PDT -t-will-gillis,2023-07-01T04:01:33Z,- t-will-gillis opened pull request: [4904](https://github.com/hackforla/website/pull/4904) at 2023-06-30 09:01 PM PDT -t-will-gillis,2023-07-02T04:28:34Z,- t-will-gillis opened pull request: [4905](https://github.com/hackforla/website/pull/4905) at 2023-07-01 09:28 PM PDT -t-will-gillis,2023-07-02T04:57:02Z,- t-will-gillis opened issue: [4906](https://github.com/hackforla/website/issues/4906) at 2023-07-01 09:57 PM PDT -t-will-gillis,2023-07-02T05:00:27Z,- t-will-gillis commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1616373018) at 2023-07-01 10:00 PM PDT -t-will-gillis,2023-07-02T05:01:03Z,- t-will-gillis closed issue as completed: [4868](https://github.com/hackforla/website/issues/4868#event-9698767569) at 2023-07-01 10:01 PM PDT -t-will-gillis,2023-07-03T15:58:07Z,- t-will-gillis commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1618770508) at 2023-07-03 08:58 AM PDT -t-will-gillis,2023-07-03T18:19:40Z,- t-will-gillis commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1618974856) at 2023-07-03 11:19 AM PDT -t-will-gillis,2023-07-03T18:19:41Z,- t-will-gillis closed issue as completed: [4776](https://github.com/hackforla/website/issues/4776#event-9712430111) at 2023-07-03 11:19 AM PDT -t-will-gillis,2023-07-03T20:41:21Z,- t-will-gillis commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1619128965) at 2023-07-03 01:41 PM PDT -t-will-gillis,2023-07-03T22:58:06Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1619236703) at 2023-07-03 03:58 PM PDT -t-will-gillis,2023-07-04T05:05:30Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1619494053) at 2023-07-03 10:05 PM PDT -t-will-gillis,2023-07-05T22:36:23Z,- t-will-gillis submitted pull request review: [4908](https://github.com/hackforla/website/pull/4908#pullrequestreview-1515469485) at 2023-07-05 03:36 PM PDT -t-will-gillis,2023-07-05T23:26:10Z,- t-will-gillis opened issue: [4913](https://github.com/hackforla/website/issues/4913) at 2023-07-05 04:26 PM PDT -t-will-gillis,2023-07-06T00:17:14Z,- t-will-gillis opened issue: [4914](https://github.com/hackforla/website/issues/4914) at 2023-07-05 05:17 PM PDT -t-will-gillis,2023-07-06T00:54:10Z,- t-will-gillis closed issue as not planned: [4914](https://github.com/hackforla/website/issues/4914#event-9737973771) at 2023-07-05 05:54 PM PDT -t-will-gillis,2023-07-06T03:43:13Z,- t-will-gillis commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1622921794) at 2023-07-05 08:43 PM PDT -t-will-gillis,2023-07-06T17:24:25Z,- t-will-gillis commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1624044047) at 2023-07-06 10:24 AM PDT -t-will-gillis,2023-07-08T23:35:14Z,- t-will-gillis commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1627544332) at 2023-07-08 04:35 PM PDT -t-will-gillis,2023-07-08T23:39:43Z,- t-will-gillis commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1627545054) at 2023-07-08 04:39 PM PDT -t-will-gillis,2023-07-09T19:18:48Z,- t-will-gillis pull request merged: [4905](https://github.com/hackforla/website/pull/4905#event-9767741669) at 2023-07-09 12:18 PM PDT -t-will-gillis,2023-07-09T19:18:49Z,- t-will-gillis closed issue by PR 4905: [4822](https://github.com/hackforla/website/issues/4822#event-9767741720) at 2023-07-09 12:18 PM PDT -t-will-gillis,2023-07-09T20:47:45Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1627820769) at 2023-07-09 01:47 PM PDT -t-will-gillis,2023-07-09T21:26:47Z,- t-will-gillis commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1627829742) at 2023-07-09 02:26 PM PDT -t-will-gillis,2023-07-09T21:29:03Z,- t-will-gillis commented on pull request: [4737](https://github.com/hackforla/website/pull/4737#issuecomment-1627830145) at 2023-07-09 02:29 PM PDT -t-will-gillis,2023-07-10T05:01:57Z,- t-will-gillis submitted pull request review: [4743](https://github.com/hackforla/website/pull/4743#pullrequestreview-1521220742) at 2023-07-09 10:01 PM PDT -t-will-gillis,2023-07-10T05:21:29Z,- t-will-gillis commented on pull request: [4735](https://github.com/hackforla/website/pull/4735#issuecomment-1628222480) at 2023-07-09 10:21 PM PDT -t-will-gillis,2023-07-10T05:40:26Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1521248015) at 2023-07-09 10:40 PM PDT -t-will-gillis,2023-07-10T05:46:05Z,- t-will-gillis submitted pull request review: [4739](https://github.com/hackforla/website/pull/4739#pullrequestreview-1521252372) at 2023-07-09 10:46 PM PDT -t-will-gillis,2023-07-10T06:03:54Z,- t-will-gillis submitted pull request review: [4740](https://github.com/hackforla/website/pull/4740#pullrequestreview-1521271115) at 2023-07-09 11:03 PM PDT -t-will-gillis,2023-07-10T06:15:17Z,- t-will-gillis assigned to issue: [4815](https://github.com/hackforla/website/issues/4815) at 2023-07-09 11:15 PM PDT -t-will-gillis,2023-07-10T21:49:12Z,- t-will-gillis submitted pull request review: [4742](https://github.com/hackforla/website/pull/4742#pullrequestreview-1523095319) at 2023-07-10 02:49 PM PDT -t-will-gillis,2023-07-11T02:49:34Z,- t-will-gillis opened issue: [4933](https://github.com/hackforla/website/issues/4933) at 2023-07-10 07:49 PM PDT -t-will-gillis,2023-07-11T02:49:35Z,- t-will-gillis assigned to issue: [4933](https://github.com/hackforla/website/issues/4933) at 2023-07-10 07:49 PM PDT -t-will-gillis,2023-07-11T02:52:11Z,- t-will-gillis opened issue: [4934](https://github.com/hackforla/website/issues/4934) at 2023-07-10 07:52 PM PDT -t-will-gillis,2023-07-11T02:52:12Z,- t-will-gillis assigned to issue: [4934](https://github.com/hackforla/website/issues/4934) at 2023-07-10 07:52 PM PDT -t-will-gillis,2023-07-11T03:07:12Z,- t-will-gillis opened pull request: [4935](https://github.com/hackforla/website/pull/4935) at 2023-07-10 08:07 PM PDT -t-will-gillis,2023-07-11T03:25:28Z,- t-will-gillis commented on pull request: [4935](https://github.com/hackforla/website/pull/4935#issuecomment-1630047629) at 2023-07-10 08:25 PM PDT -t-will-gillis,2023-07-11T03:25:28Z,- t-will-gillis pull request closed w/o merging: [4935](https://github.com/hackforla/website/pull/4935#event-9782075403) at 2023-07-10 08:25 PM PDT -t-will-gillis,2023-07-11T03:47:55Z,- t-will-gillis opened pull request: [4936](https://github.com/hackforla/website/pull/4936) at 2023-07-10 08:47 PM PDT -t-will-gillis,2023-07-11T04:19:03Z,- t-will-gillis opened pull request: [4937](https://github.com/hackforla/website/pull/4937) at 2023-07-10 09:19 PM PDT -t-will-gillis,2023-07-12T05:37:53Z,- t-will-gillis commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1631879467) at 2023-07-11 10:37 PM PDT -t-will-gillis,2023-07-12T06:15:51Z,- t-will-gillis submitted pull request review: [4791](https://github.com/hackforla/website/pull/4791#pullrequestreview-1525588194) at 2023-07-11 11:15 PM PDT -t-will-gillis,2023-07-12T06:42:03Z,- t-will-gillis submitted pull request review: [4941](https://github.com/hackforla/website/pull/4941#pullrequestreview-1525622294) at 2023-07-11 11:42 PM PDT -t-will-gillis,2023-07-12T19:07:17Z,- t-will-gillis commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1633062736) at 2023-07-12 12:07 PM PDT -t-will-gillis,2023-07-12T19:21:18Z,- t-will-gillis submitted pull request review: [4886](https://github.com/hackforla/website/pull/4886#pullrequestreview-1527090997) at 2023-07-12 12:21 PM PDT -t-will-gillis,2023-07-13T04:50:19Z,- t-will-gillis commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633541176) at 2023-07-12 09:50 PM PDT -t-will-gillis,2023-07-13T04:50:19Z,- t-will-gillis pull request merged: [4937](https://github.com/hackforla/website/pull/4937#event-9806177949) at 2023-07-12 09:50 PM PDT -t-will-gillis,2023-07-13T05:07:41Z,- t-will-gillis commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633553926) at 2023-07-12 10:07 PM PDT -t-will-gillis,2023-07-13T05:07:41Z,- t-will-gillis reopened pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633553926) at 2023-07-12 10:07 PM PDT -t-will-gillis,2023-07-13T17:11:46Z,- t-will-gillis opened issue: [4946](https://github.com/hackforla/website/issues/4946) at 2023-07-13 10:11 AM PDT -t-will-gillis,2023-07-13T17:27:11Z,- t-will-gillis assigned to issue: [4946](https://github.com/hackforla/website/issues/4946) at 2023-07-13 10:27 AM PDT -t-will-gillis,2023-07-13T17:36:11Z,- t-will-gillis opened pull request: [4947](https://github.com/hackforla/website/pull/4947) at 2023-07-13 10:36 AM PDT -t-will-gillis,2023-07-14T04:08:39Z,- t-will-gillis submitted pull request review: [4929](https://github.com/hackforla/website/pull/4929#pullrequestreview-1529563582) at 2023-07-13 09:08 PM PDT -t-will-gillis,2023-07-14T04:36:46Z,- t-will-gillis submitted pull request review: [4930](https://github.com/hackforla/website/pull/4930#pullrequestreview-1529582673) at 2023-07-13 09:36 PM PDT -t-will-gillis,2023-07-14T05:32:26Z,- t-will-gillis submitted pull request review: [4940](https://github.com/hackforla/website/pull/4940#pullrequestreview-1529629439) at 2023-07-13 10:32 PM PDT -t-will-gillis,2023-07-15T05:33:17Z,- t-will-gillis commented on pull request: [4738](https://github.com/hackforla/website/pull/4738#issuecomment-1636673584) at 2023-07-14 10:33 PM PDT -t-will-gillis,2023-07-15T06:05:38Z,- t-will-gillis submitted pull request review: [4738](https://github.com/hackforla/website/pull/4738#pullrequestreview-1531294053) at 2023-07-14 11:05 PM PDT -t-will-gillis,2023-07-15T15:33:12Z,- t-will-gillis commented on pull request: [4902](https://github.com/hackforla/website/pull/4902#issuecomment-1636802087) at 2023-07-15 08:33 AM PDT -t-will-gillis,2023-07-15T15:36:25Z,- t-will-gillis commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1636802880) at 2023-07-15 08:36 AM PDT -t-will-gillis,2023-07-15T15:36:25Z,- t-will-gillis closed issue by PR 5049: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-15 08:36 AM PDT -t-will-gillis,2023-07-15T15:36:41Z,- t-will-gillis reopened issue: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-15 08:36 AM PDT -t-will-gillis,2023-07-16T04:51:27Z,- t-will-gillis pull request merged: [4947](https://github.com/hackforla/website/pull/4947#event-9830363299) at 2023-07-15 09:51 PM PDT -t-will-gillis,2023-07-16T04:51:28Z,- t-will-gillis closed issue by PR 4947: [4946](https://github.com/hackforla/website/issues/4946#event-9830363320) at 2023-07-15 09:51 PM PDT -t-will-gillis,2023-07-16T17:00:58Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1637138919) at 2023-07-16 10:00 AM PDT -t-will-gillis,2023-07-17T02:04:37Z,- t-will-gillis commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1637282694) at 2023-07-16 07:04 PM PDT -t-will-gillis,2023-07-17T03:18:32Z,- t-will-gillis pull request merged: [4937](https://github.com/hackforla/website/pull/4937#event-9832550653) at 2023-07-16 08:18 PM PDT -t-will-gillis,2023-07-17T03:18:33Z,- t-will-gillis closed issue by PR 4937: [4934](https://github.com/hackforla/website/issues/4934#event-9832550739) at 2023-07-16 08:18 PM PDT -t-will-gillis,2023-07-17T03:22:57Z,- t-will-gillis commented on issue: [4830](https://github.com/hackforla/website/issues/4830#issuecomment-1637322581) at 2023-07-16 08:22 PM PDT -t-will-gillis,2023-07-17T18:05:22Z,- t-will-gillis opened issue: [4961](https://github.com/hackforla/website/issues/4961) at 2023-07-17 11:05 AM PDT -t-will-gillis,2023-07-17T18:09:58Z,- t-will-gillis submitted pull request review: [4925](https://github.com/hackforla/website/pull/4925#pullrequestreview-1533395743) at 2023-07-17 11:09 AM PDT -t-will-gillis,2023-07-17T18:22:16Z,- t-will-gillis pull request merged: [4936](https://github.com/hackforla/website/pull/4936#event-9841158282) at 2023-07-17 11:22 AM PDT -t-will-gillis,2023-07-17T18:22:18Z,- t-will-gillis closed issue by PR 4936: [4933](https://github.com/hackforla/website/issues/4933#event-9841158578) at 2023-07-17 11:22 AM PDT -t-will-gillis,2023-07-17T18:26:29Z,- t-will-gillis commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1638655553) at 2023-07-17 11:26 AM PDT -t-will-gillis,2023-07-17T21:44:29Z,- t-will-gillis closed issue by PR 4925: [4870](https://github.com/hackforla/website/issues/4870#event-9843093577) at 2023-07-17 02:44 PM PDT -t-will-gillis,2023-07-18T03:28:55Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1639284961) at 2023-07-17 08:28 PM PDT -t-will-gillis,2023-07-18T19:48:31Z,- t-will-gillis submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1535804147) at 2023-07-18 12:48 PM PDT -t-will-gillis,2023-07-18T19:48:39Z,- t-will-gillis closed issue by PR 4928: [4488](https://github.com/hackforla/website/issues/4488#event-9854877516) at 2023-07-18 12:48 PM PDT -t-will-gillis,2023-07-19T03:12:59Z,- t-will-gillis submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1536182211) at 2023-07-18 08:12 PM PDT -t-will-gillis,2023-07-19T03:14:11Z,- t-will-gillis submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1536182828) at 2023-07-18 08:14 PM PDT -t-will-gillis,2023-07-19T03:17:11Z,- t-will-gillis submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1536184355) at 2023-07-18 08:17 PM PDT -t-will-gillis,2023-07-19T03:39:37Z,- t-will-gillis commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1641366746) at 2023-07-18 08:39 PM PDT -t-will-gillis,2023-07-19T03:39:43Z,- t-will-gillis closed issue by PR 4731: [4418](https://github.com/hackforla/website/issues/4418#event-9857518142) at 2023-07-18 08:39 PM PDT -t-will-gillis,2023-07-19T03:53:08Z,- t-will-gillis assigned to issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1627544332) at 2023-07-18 08:53 PM PDT -t-will-gillis,2023-07-19T17:53:31Z,- t-will-gillis opened pull request: [5034](https://github.com/hackforla/website/pull/5034) at 2023-07-19 10:53 AM PDT -t-will-gillis,2023-07-19T18:28:57Z,- t-will-gillis closed issue by PR 5025: [4861](https://github.com/hackforla/website/issues/4861#event-9865999092) at 2023-07-19 11:28 AM PDT -t-will-gillis,2023-07-19T21:27:30Z,- t-will-gillis submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1538069417) at 2023-07-19 02:27 PM PDT -t-will-gillis,2023-07-19T22:10:06Z,- t-will-gillis submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1538115259) at 2023-07-19 03:10 PM PDT -t-will-gillis,2023-07-20T16:14:42Z,- t-will-gillis pull request merged: [5034](https://github.com/hackforla/website/pull/5034#event-9876580889) at 2023-07-20 09:14 AM PDT -t-will-gillis,2023-07-20T16:14:43Z,- t-will-gillis closed issue by PR 5034: [4860](https://github.com/hackforla/website/issues/4860#event-9876581118) at 2023-07-20 09:14 AM PDT -t-will-gillis,2023-07-20T17:02:36Z,- t-will-gillis assigned to issue: [4777](https://github.com/hackforla/website/issues/4777) at 2023-07-20 10:02 AM PDT -t-will-gillis,2023-07-20T17:05:45Z,- t-will-gillis commented on issue: [4777](https://github.com/hackforla/website/issues/4777#issuecomment-1644282710) at 2023-07-20 10:05 AM PDT -t-will-gillis,2023-07-20T17:05:45Z,- t-will-gillis closed issue as completed: [4777](https://github.com/hackforla/website/issues/4777#event-9877074317) at 2023-07-20 10:05 AM PDT -t-will-gillis,2023-07-21T22:07:48Z,- t-will-gillis closed issue by PR 4945: [4864](https://github.com/hackforla/website/issues/4864#event-9889250381) at 2023-07-21 03:07 PM PDT -t-will-gillis,2023-07-21T22:26:27Z,- t-will-gillis commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1646298072) at 2023-07-21 03:26 PM PDT -t-will-gillis,2023-07-21T22:26:28Z,- t-will-gillis closed issue as completed: [4794](https://github.com/hackforla/website/issues/4794#event-9889338504) at 2023-07-21 03:26 PM PDT -t-will-gillis,2023-07-22T02:33:38Z,- t-will-gillis opened issue: [5048](https://github.com/hackforla/website/issues/5048) at 2023-07-21 07:33 PM PDT -t-will-gillis,2023-07-22T02:49:24Z,- t-will-gillis commented on issue: [4815](https://github.com/hackforla/website/issues/4815#issuecomment-1646408446) at 2023-07-21 07:49 PM PDT -t-will-gillis,2023-07-22T02:49:24Z,- t-will-gillis closed issue as completed: [4815](https://github.com/hackforla/website/issues/4815#event-9890033776) at 2023-07-21 07:49 PM PDT -t-will-gillis,2023-07-23T16:59:14Z,- t-will-gillis submitted pull request review: [5053](https://github.com/hackforla/website/pull/5053#pullrequestreview-1542289031) at 2023-07-23 09:59 AM PDT -t-will-gillis,2023-07-23T18:16:47Z,- t-will-gillis assigned to issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1637138919) at 2023-07-23 11:16 AM PDT -t-will-gillis,2023-07-25T15:06:40Z,- t-will-gillis commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1650022636) at 2023-07-25 08:06 AM PDT -t-will-gillis,2023-07-25T22:36:45Z,- t-will-gillis commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1650656360) at 2023-07-25 03:36 PM PDT -t-will-gillis,2023-07-27T21:17:39Z,- t-will-gillis submitted pull request review: [5096](https://github.com/hackforla/website/pull/5096#pullrequestreview-1550809808) at 2023-07-27 02:17 PM PDT -t-will-gillis,2023-07-27T21:19:08Z,- t-will-gillis closed issue by PR 5096: [4811](https://github.com/hackforla/website/issues/4811#event-9940818602) at 2023-07-27 02:19 PM PDT -t-will-gillis,2023-07-28T22:10:59Z,- t-will-gillis commented on issue: [4852](https://github.com/hackforla/website/issues/4852#issuecomment-1656380584) at 2023-07-28 03:10 PM PDT -t-will-gillis,2023-07-28T22:10:59Z,- t-will-gillis closed issue as completed: [4852](https://github.com/hackforla/website/issues/4852#event-9952607816) at 2023-07-28 03:10 PM PDT -t-will-gillis,2023-07-29T16:56:21Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656789087) at 2023-07-29 09:56 AM PDT -t-will-gillis,2023-07-29T16:58:51Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656789547) at 2023-07-29 09:58 AM PDT -t-will-gillis,2023-07-30T01:01:47Z,- t-will-gillis commented on pull request: [5106](https://github.com/hackforla/website/pull/5106#issuecomment-1656986359) at 2023-07-29 06:01 PM PDT -t-will-gillis,2023-07-30T03:05:42Z,- t-will-gillis submitted pull request review: [5106](https://github.com/hackforla/website/pull/5106#pullrequestreview-1553539698) at 2023-07-29 08:05 PM PDT -t-will-gillis,2023-07-30T14:49:48Z,- t-will-gillis closed issue by PR 5106: [4906](https://github.com/hackforla/website/issues/4906#event-9956897143) at 2023-07-30 07:49 AM PDT -t-will-gillis,2023-07-30T16:15:31Z,- t-will-gillis submitted pull request review: [5104](https://github.com/hackforla/website/pull/5104#pullrequestreview-1553665937) at 2023-07-30 09:15 AM PDT -t-will-gillis,2023-07-30T16:28:39Z,- t-will-gillis submitted pull request review: [5108](https://github.com/hackforla/website/pull/5108#pullrequestreview-1553667303) at 2023-07-30 09:28 AM PDT -t-will-gillis,2023-07-30T16:28:50Z,- t-will-gillis closed issue by PR 5108: [4806](https://github.com/hackforla/website/issues/4806#event-9957044308) at 2023-07-30 09:28 AM PDT -t-will-gillis,2023-07-30T16:45:58Z,- t-will-gillis submitted pull request review: [5111](https://github.com/hackforla/website/pull/5111#pullrequestreview-1553669023) at 2023-07-30 09:45 AM PDT -t-will-gillis,2023-07-30T18:40:21Z,- t-will-gillis submitted pull request review: [5111](https://github.com/hackforla/website/pull/5111#pullrequestreview-1553681389) at 2023-07-30 11:40 AM PDT -t-will-gillis,2023-07-30T18:47:40Z,- t-will-gillis commented on pull request: [5111](https://github.com/hackforla/website/pull/5111#issuecomment-1657240296) at 2023-07-30 11:47 AM PDT -t-will-gillis,2023-07-30T18:47:53Z,- t-will-gillis closed issue by PR 5111: [4803](https://github.com/hackforla/website/issues/4803#event-9957228371) at 2023-07-30 11:47 AM PDT -t-will-gillis,2023-07-30T18:50:24Z,- t-will-gillis closed issue by PR 5109: [4814](https://github.com/hackforla/website/issues/4814#event-9957231633) at 2023-07-30 11:50 AM PDT -t-will-gillis,2023-08-01T03:08:11Z,- t-will-gillis submitted pull request review: [5104](https://github.com/hackforla/website/pull/5104#pullrequestreview-1556096652) at 2023-07-31 08:08 PM PDT -t-will-gillis,2023-08-01T03:09:48Z,- t-will-gillis commented on pull request: [5104](https://github.com/hackforla/website/pull/5104#issuecomment-1659497116) at 2023-07-31 08:09 PM PDT -t-will-gillis,2023-08-01T03:09:55Z,- t-will-gillis closed issue by PR 5104: [4807](https://github.com/hackforla/website/issues/4807#event-9971318718) at 2023-07-31 08:09 PM PDT -t-will-gillis,2023-08-02T23:28:35Z,- t-will-gillis commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1663093573) at 2023-08-02 04:28 PM PDT -t-will-gillis,2023-08-06T15:15:21Z,- t-will-gillis submitted pull request review: [5120](https://github.com/hackforla/website/pull/5120#pullrequestreview-1564167338) at 2023-08-06 08:15 AM PDT -t-will-gillis,2023-08-06T15:15:29Z,- t-will-gillis closed issue by PR 5120: [5036](https://github.com/hackforla/website/issues/5036#event-10017488912) at 2023-08-06 08:15 AM PDT -t-will-gillis,2023-08-06T15:27:51Z,- t-will-gillis submitted pull request review: [5121](https://github.com/hackforla/website/pull/5121#pullrequestreview-1564168882) at 2023-08-06 08:27 AM PDT -t-will-gillis,2023-08-06T15:29:16Z,- t-will-gillis closed issue by PR 5121: [4818](https://github.com/hackforla/website/issues/4818#event-10017508820) at 2023-08-06 08:29 AM PDT -t-will-gillis,2023-08-06T15:50:31Z,- t-will-gillis submitted pull request review: [5125](https://github.com/hackforla/website/pull/5125#pullrequestreview-1564171517) at 2023-08-06 08:50 AM PDT -t-will-gillis,2023-08-06T16:04:06Z,- t-will-gillis commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1666906047) at 2023-08-06 09:04 AM PDT -t-will-gillis,2023-08-06T16:20:27Z,- t-will-gillis commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1666910377) at 2023-08-06 09:20 AM PDT -t-will-gillis,2023-08-06T16:45:00Z,- t-will-gillis submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1564177568) at 2023-08-06 09:45 AM PDT -t-will-gillis,2023-08-07T04:54:52Z,- t-will-gillis commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1667185042) at 2023-08-06 09:54 PM PDT -t-will-gillis,2023-08-07T17:06:58Z,- t-will-gillis commented on issue: [5115](https://github.com/hackforla/website/issues/5115#issuecomment-1668272176) at 2023-08-07 10:06 AM PDT -t-will-gillis,2023-08-07T17:06:58Z,- t-will-gillis closed issue as completed: [5115](https://github.com/hackforla/website/issues/5115#event-10026821824) at 2023-08-07 10:06 AM PDT -t-will-gillis,2023-08-07T17:16:11Z,- t-will-gillis commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1668283275) at 2023-08-07 10:16 AM PDT -t-will-gillis,2023-08-07T17:30:44Z,- t-will-gillis assigned to issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1650022636) at 2023-08-07 10:30 AM PDT -t-will-gillis,2023-08-07T18:56:53Z,- t-will-gillis submitted pull request review: [5157](https://github.com/hackforla/website/pull/5157#pullrequestreview-1565983851) at 2023-08-07 11:56 AM PDT -t-will-gillis,2023-08-07T18:58:22Z,- t-will-gillis closed issue by PR 5157: [5101](https://github.com/hackforla/website/issues/5101#event-10027766065) at 2023-08-07 11:58 AM PDT -t-will-gillis,2023-08-07T19:02:09Z,- t-will-gillis commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1668427916) at 2023-08-07 12:02 PM PDT -t-will-gillis,2023-08-07T22:08:47Z,- t-will-gillis opened pull request: [5158](https://github.com/hackforla/website/pull/5158) at 2023-08-07 03:08 PM PDT -t-will-gillis,2023-08-08T03:48:51Z,- t-will-gillis opened issue: [5163](https://github.com/hackforla/website/issues/5163) at 2023-08-07 08:48 PM PDT -t-will-gillis,2023-08-08T04:32:41Z,- t-will-gillis opened issue: [5164](https://github.com/hackforla/website/issues/5164) at 2023-08-07 09:32 PM PDT -t-will-gillis,2023-08-08T17:53:15Z,- t-will-gillis submitted pull request review: [5143](https://github.com/hackforla/website/pull/5143#pullrequestreview-1567847211) at 2023-08-08 10:53 AM PDT -t-will-gillis,2023-08-16T06:14:32Z,- t-will-gillis pull request merged: [4904](https://github.com/hackforla/website/pull/4904#event-10104156824) at 2023-08-15 11:14 PM PDT -t-will-gillis,2023-08-16T17:34:57Z,- t-will-gillis submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1581120475) at 2023-08-16 10:34 AM PDT -t-will-gillis,2023-08-18T02:45:49Z,- t-will-gillis closed issue by PR 5135: [5028](https://github.com/hackforla/website/issues/5028#event-10125432611) at 2023-08-17 07:45 PM PDT -t-will-gillis,2023-08-22T20:25:20Z,- t-will-gillis commented on issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-1688877945) at 2023-08-22 01:25 PM PDT -t-will-gillis,2023-08-25T05:18:34Z,- t-will-gillis commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1692773614) at 2023-08-24 10:18 PM PDT -t-will-gillis,2023-08-25T16:30:18Z,- t-will-gillis commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1693625073) at 2023-08-25 09:30 AM PDT -t-will-gillis,2023-08-25T16:30:18Z,- t-will-gillis closed issue as completed: [3866](https://github.com/hackforla/website/issues/3866#event-10194896482) at 2023-08-25 09:30 AM PDT -t-will-gillis,2023-08-25T17:18:03Z,- t-will-gillis commented on issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1693692619) at 2023-08-25 10:18 AM PDT -t-will-gillis,2023-08-25T17:18:03Z,- t-will-gillis closed issue as completed: [4252](https://github.com/hackforla/website/issues/4252#event-10195353890) at 2023-08-25 10:18 AM PDT -t-will-gillis,2023-08-25T17:36:13Z,- t-will-gillis commented on issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1693713935) at 2023-08-25 10:36 AM PDT -t-will-gillis,2023-08-25T17:36:13Z,- t-will-gillis closed issue as completed: [4523](https://github.com/hackforla/website/issues/4523#event-10195513024) at 2023-08-25 10:36 AM PDT -t-will-gillis,2023-08-25T18:49:47Z,- t-will-gillis commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 11:49 AM PDT -t-will-gillis,2023-08-25T19:15:02Z,- t-will-gillis commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1693819964) at 2023-08-25 12:15 PM PDT -t-will-gillis,2023-08-26T21:02:43Z,- t-will-gillis commented on pull request: [5308](https://github.com/hackforla/website/pull/5308#issuecomment-1694500944) at 2023-08-26 02:02 PM PDT -t-will-gillis,2023-08-27T14:51:05Z,- t-will-gillis commented on pull request: [5314](https://github.com/hackforla/website/pull/5314#issuecomment-1694687881) at 2023-08-27 07:51 AM PDT -t-will-gillis,2023-08-27T17:49:08Z,- t-will-gillis opened issue: [5315](https://github.com/hackforla/website/issues/5315) at 2023-08-27 10:49 AM PDT -t-will-gillis,2023-08-27T17:50:05Z,- t-will-gillis commented on issue: [5238](https://github.com/hackforla/website/issues/5238#issuecomment-1694724777) at 2023-08-27 10:50 AM PDT -t-will-gillis,2023-08-27T17:50:05Z,- t-will-gillis closed issue as completed: [5238](https://github.com/hackforla/website/issues/5238#event-10202231044) at 2023-08-27 10:50 AM PDT -t-will-gillis,2023-08-27T18:08:31Z,- t-will-gillis opened issue: [5316](https://github.com/hackforla/website/issues/5316) at 2023-08-27 11:08 AM PDT -t-will-gillis,2023-08-27T18:09:51Z,- t-will-gillis commented on issue: [5191](https://github.com/hackforla/website/issues/5191#issuecomment-1694728529) at 2023-08-27 11:09 AM PDT -t-will-gillis,2023-08-27T18:09:51Z,- t-will-gillis closed issue as completed: [5191](https://github.com/hackforla/website/issues/5191#event-10202256783) at 2023-08-27 11:09 AM PDT -t-will-gillis,2023-08-27T19:17:10Z,- t-will-gillis assigned to issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694731823) at 2023-08-27 12:17 PM PDT -t-will-gillis,2023-08-27T19:17:44Z,- t-will-gillis commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694740835) at 2023-08-27 12:17 PM PDT -t-will-gillis,2023-08-27T20:00:37Z,- t-will-gillis commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1694748683) at 2023-08-27 01:00 PM PDT -t-will-gillis,2023-08-27T20:58:28Z,- t-will-gillis opened issue: [5321](https://github.com/hackforla/website/issues/5321) at 2023-08-27 01:58 PM PDT -t-will-gillis,2023-08-27T20:58:58Z,- t-will-gillis commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694760664) at 2023-08-27 01:58 PM PDT -t-will-gillis,2023-08-27T20:58:58Z,- t-will-gillis closed issue as completed: [5309](https://github.com/hackforla/website/issues/5309#event-10202482030) at 2023-08-27 01:58 PM PDT -t-will-gillis,2023-08-27T21:32:51Z,- t-will-gillis opened issue: [5322](https://github.com/hackforla/website/issues/5322) at 2023-08-27 02:32 PM PDT -t-will-gillis,2023-08-27T22:35:02Z,- t-will-gillis commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1694778253) at 2023-08-27 03:35 PM PDT -t-will-gillis,2023-08-27T23:06:20Z,- t-will-gillis opened issue: [5323](https://github.com/hackforla/website/issues/5323) at 2023-08-27 04:06 PM PDT -t-will-gillis,2023-08-27T23:06:49Z,- t-will-gillis commented on issue: [5194](https://github.com/hackforla/website/issues/5194#issuecomment-1694785954) at 2023-08-27 04:06 PM PDT -t-will-gillis,2023-08-27T23:06:50Z,- t-will-gillis closed issue as completed: [5194](https://github.com/hackforla/website/issues/5194#event-10202651433) at 2023-08-27 04:06 PM PDT -t-will-gillis,2023-08-27T23:27:01Z,- t-will-gillis opened issue: [5324](https://github.com/hackforla/website/issues/5324) at 2023-08-27 04:27 PM PDT -t-will-gillis,2023-08-27T23:28:03Z,- t-will-gillis commented on issue: [5193](https://github.com/hackforla/website/issues/5193#issuecomment-1694790910) at 2023-08-27 04:28 PM PDT -t-will-gillis,2023-08-27T23:28:03Z,- t-will-gillis closed issue as completed: [5193](https://github.com/hackforla/website/issues/5193#event-10202685416) at 2023-08-27 04:28 PM PDT -t-will-gillis,2023-08-28T17:54:06Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1696104899) at 2023-08-28 10:54 AM PDT -t-will-gillis,2023-08-29T03:51:34Z,- t-will-gillis opened issue: [5330](https://github.com/hackforla/website/issues/5330) at 2023-08-28 08:51 PM PDT -t-will-gillis,2023-08-29T04:24:27Z,- t-will-gillis closed issue as not planned: [4567](https://github.com/hackforla/website/issues/4567#event-10216099554) at 2023-08-28 09:24 PM PDT -t-will-gillis,2023-08-29T04:28:10Z,- t-will-gillis assigned to issue: [5163](https://github.com/hackforla/website/issues/5163) at 2023-08-28 09:28 PM PDT -t-will-gillis,2023-08-29T05:04:10Z,- t-will-gillis opened issue: [5332](https://github.com/hackforla/website/issues/5332) at 2023-08-28 10:04 PM PDT -t-will-gillis,2023-08-29T05:04:55Z,- t-will-gillis commented on issue: [5274](https://github.com/hackforla/website/issues/5274#issuecomment-1696771066) at 2023-08-28 10:04 PM PDT -t-will-gillis,2023-08-29T05:04:55Z,- t-will-gillis closed issue as completed: [5274](https://github.com/hackforla/website/issues/5274#event-10216301311) at 2023-08-28 10:04 PM PDT -t-will-gillis,2023-08-29T15:00:59Z,- t-will-gillis commented on issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1697618049) at 2023-08-29 08:00 AM PDT -t-will-gillis,2023-08-29T15:08:06Z,- t-will-gillis commented on issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1697631292) at 2023-08-29 08:08 AM PDT -t-will-gillis,2023-08-29T15:26:56Z,- t-will-gillis commented on issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1697668271) at 2023-08-29 08:26 AM PDT -t-will-gillis,2023-08-29T15:26:56Z,- t-will-gillis closed issue as completed: [5149](https://github.com/hackforla/website/issues/5149#event-10222812872) at 2023-08-29 08:26 AM PDT -t-will-gillis,2023-08-29T19:14:09Z,- t-will-gillis opened issue: [5336](https://github.com/hackforla/website/issues/5336) at 2023-08-29 12:14 PM PDT -t-will-gillis,2023-08-29T19:23:00Z,- t-will-gillis commented on issue: [5273](https://github.com/hackforla/website/issues/5273#issuecomment-1698004945) at 2023-08-29 12:23 PM PDT -t-will-gillis,2023-08-29T19:23:00Z,- t-will-gillis closed issue as completed: [5273](https://github.com/hackforla/website/issues/5273#event-10225000202) at 2023-08-29 12:23 PM PDT -t-will-gillis,2023-08-29T20:08:40Z,- t-will-gillis opened issue: [5338](https://github.com/hackforla/website/issues/5338) at 2023-08-29 01:08 PM PDT -t-will-gillis,2023-08-29T20:09:19Z,- t-will-gillis commented on issue: [5272](https://github.com/hackforla/website/issues/5272#issuecomment-1698060556) at 2023-08-29 01:09 PM PDT -t-will-gillis,2023-08-29T20:09:19Z,- t-will-gillis closed issue as completed: [5272](https://github.com/hackforla/website/issues/5272#event-10225373327) at 2023-08-29 01:09 PM PDT -t-will-gillis,2023-08-29T20:26:24Z,- t-will-gillis commented on issue: [5268](https://github.com/hackforla/website/issues/5268#issuecomment-1698080235) at 2023-08-29 01:26 PM PDT -t-will-gillis,2023-08-29T20:36:25Z,- t-will-gillis opened issue: [5340](https://github.com/hackforla/website/issues/5340) at 2023-08-29 01:36 PM PDT -t-will-gillis,2023-08-29T20:36:49Z,- t-will-gillis commented on issue: [5268](https://github.com/hackforla/website/issues/5268#issuecomment-1698093645) at 2023-08-29 01:36 PM PDT -t-will-gillis,2023-08-29T20:36:49Z,- t-will-gillis closed issue as completed: [5268](https://github.com/hackforla/website/issues/5268#event-10225592876) at 2023-08-29 01:36 PM PDT -t-will-gillis,2023-08-29T20:50:01Z,- t-will-gillis opened issue: [5341](https://github.com/hackforla/website/issues/5341) at 2023-08-29 01:50 PM PDT -t-will-gillis,2023-08-29T20:50:40Z,- t-will-gillis commented on issue: [5246](https://github.com/hackforla/website/issues/5246#issuecomment-1698111127) at 2023-08-29 01:50 PM PDT -t-will-gillis,2023-08-29T20:50:40Z,- t-will-gillis closed issue as completed: [5246](https://github.com/hackforla/website/issues/5246#event-10225701769) at 2023-08-29 01:50 PM PDT -t-will-gillis,2023-08-29T21:00:58Z,- t-will-gillis opened issue: [5342](https://github.com/hackforla/website/issues/5342) at 2023-08-29 02:00 PM PDT -t-will-gillis,2023-08-29T21:01:59Z,- t-will-gillis commented on issue: [5192](https://github.com/hackforla/website/issues/5192#issuecomment-1698139839) at 2023-08-29 02:01 PM PDT -t-will-gillis,2023-08-29T21:01:59Z,- t-will-gillis closed issue as completed: [5192](https://github.com/hackforla/website/issues/5192#event-10225855114) at 2023-08-29 02:01 PM PDT -t-will-gillis,2023-08-29T21:33:08Z,- t-will-gillis commented on issue: [5195](https://github.com/hackforla/website/issues/5195#issuecomment-1698174286) at 2023-08-29 02:33 PM PDT -t-will-gillis,2023-08-29T22:00:20Z,- t-will-gillis opened issue: [5345](https://github.com/hackforla/website/issues/5345) at 2023-08-29 03:00 PM PDT -t-will-gillis,2023-08-30T04:58:11Z,- t-will-gillis commented on issue: [5195](https://github.com/hackforla/website/issues/5195#issuecomment-1698493490) at 2023-08-29 09:58 PM PDT -t-will-gillis,2023-08-30T04:58:11Z,- t-will-gillis closed issue as completed: [5195](https://github.com/hackforla/website/issues/5195#event-10228333221) at 2023-08-29 09:58 PM PDT -t-will-gillis,2023-08-30T05:09:21Z,- t-will-gillis opened issue: [5364](https://github.com/hackforla/website/issues/5364) at 2023-08-29 10:09 PM PDT -t-will-gillis,2023-08-30T17:43:08Z,- t-will-gillis commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1699595296) at 2023-08-30 10:43 AM PDT -t-will-gillis,2023-08-30T17:47:05Z,- t-will-gillis assigned to issue: [5252](https://github.com/hackforla/website/issues/5252#issuecomment-1698378620) at 2023-08-30 10:47 AM PDT -t-will-gillis,2023-08-30T19:46:16Z,- t-will-gillis opened issue: [5376](https://github.com/hackforla/website/issues/5376) at 2023-08-30 12:46 PM PDT -t-will-gillis,2023-08-30T19:46:34Z,- t-will-gillis opened issue: [5377](https://github.com/hackforla/website/issues/5377) at 2023-08-30 12:46 PM PDT -t-will-gillis,2023-08-30T19:46:55Z,- t-will-gillis opened issue: [5378](https://github.com/hackforla/website/issues/5378) at 2023-08-30 12:46 PM PDT -t-will-gillis,2023-08-30T19:47:10Z,- t-will-gillis opened issue: [5379](https://github.com/hackforla/website/issues/5379) at 2023-08-30 12:47 PM PDT -t-will-gillis,2023-08-30T21:55:58Z,- t-will-gillis opened issue: [5383](https://github.com/hackforla/website/issues/5383) at 2023-08-30 02:55 PM PDT -t-will-gillis,2023-08-30T21:56:23Z,- t-will-gillis opened issue: [5384](https://github.com/hackforla/website/issues/5384) at 2023-08-30 02:56 PM PDT -t-will-gillis,2023-08-30T21:56:36Z,- t-will-gillis opened issue: [5385](https://github.com/hackforla/website/issues/5385) at 2023-08-30 02:56 PM PDT -t-will-gillis,2023-08-30T22:00:14Z,- t-will-gillis opened issue: [5386](https://github.com/hackforla/website/issues/5386) at 2023-08-30 03:00 PM PDT -t-will-gillis,2023-08-30T22:05:51Z,- t-will-gillis opened issue: [5387](https://github.com/hackforla/website/issues/5387) at 2023-08-30 03:05 PM PDT -t-will-gillis,2023-08-30T22:06:04Z,- t-will-gillis opened issue: [5388](https://github.com/hackforla/website/issues/5388) at 2023-08-30 03:06 PM PDT -t-will-gillis,2023-08-30T22:06:45Z,- t-will-gillis opened issue: [5389](https://github.com/hackforla/website/issues/5389) at 2023-08-30 03:06 PM PDT -t-will-gillis,2023-08-30T22:06:59Z,- t-will-gillis opened issue: [5390](https://github.com/hackforla/website/issues/5390) at 2023-08-30 03:06 PM PDT -t-will-gillis,2023-08-30T22:07:16Z,- t-will-gillis opened issue: [5391](https://github.com/hackforla/website/issues/5391) at 2023-08-30 03:07 PM PDT -t-will-gillis,2023-08-30T22:25:11Z,- t-will-gillis commented on issue: [5252](https://github.com/hackforla/website/issues/5252#issuecomment-1699933976) at 2023-08-30 03:25 PM PDT -t-will-gillis,2023-08-30T22:25:11Z,- t-will-gillis closed issue as completed: [5252](https://github.com/hackforla/website/issues/5252#event-10237921949) at 2023-08-30 03:25 PM PDT -t-will-gillis,2023-08-30T23:31:48Z,- t-will-gillis commented on pull request: [5380](https://github.com/hackforla/website/pull/5380#issuecomment-1699985184) at 2023-08-30 04:31 PM PDT -t-will-gillis,2023-08-31T04:31:43Z,- t-will-gillis opened issue: [5393](https://github.com/hackforla/website/issues/5393) at 2023-08-30 09:31 PM PDT -t-will-gillis,2023-08-31T04:34:25Z,- t-will-gillis opened issue: [5394](https://github.com/hackforla/website/issues/5394) at 2023-08-30 09:34 PM PDT -t-will-gillis,2023-08-31T04:35:43Z,- t-will-gillis commented on issue: [5381](https://github.com/hackforla/website/issues/5381#issuecomment-1700353761) at 2023-08-30 09:35 PM PDT -t-will-gillis,2023-08-31T04:35:43Z,- t-will-gillis closed issue as completed: [5381](https://github.com/hackforla/website/issues/5381#event-10239650273) at 2023-08-30 09:35 PM PDT -t-will-gillis,2023-08-31T04:47:12Z,- t-will-gillis commented on issue: [5315](https://github.com/hackforla/website/issues/5315#issuecomment-1700361384) at 2023-08-30 09:47 PM PDT -t-will-gillis,2023-08-31T04:50:58Z,- t-will-gillis commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1700363797) at 2023-08-30 09:50 PM PDT -t-will-gillis,2023-08-31T04:54:26Z,- t-will-gillis commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1700365948) at 2023-08-30 09:54 PM PDT -t-will-gillis,2023-08-31T05:02:02Z,- t-will-gillis commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700370898) at 2023-08-30 10:02 PM PDT -t-will-gillis,2023-08-31T17:03:18Z,- t-will-gillis submitted pull request review: [5380](https://github.com/hackforla/website/pull/5380#pullrequestreview-1605231829) at 2023-08-31 10:03 AM PDT -t-will-gillis,2023-08-31T17:03:38Z,- t-will-gillis closed issue by PR 5380: [5321](https://github.com/hackforla/website/issues/5321#event-10247507055) at 2023-08-31 10:03 AM PDT -t-will-gillis,2023-09-01T16:00:43Z,- t-will-gillis submitted pull request review: [5339](https://github.com/hackforla/website/pull/5339#pullrequestreview-1607229848) at 2023-09-01 09:00 AM PDT -t-will-gillis,2023-09-01T16:00:52Z,- t-will-gillis closed issue by PR 5339: [4924](https://github.com/hackforla/website/issues/4924#event-10258853845) at 2023-09-01 09:00 AM PDT -t-will-gillis,2023-09-01T16:08:50Z,- t-will-gillis submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1607252929) at 2023-09-01 09:08 AM PDT -t-will-gillis,2023-09-01T16:09:00Z,- t-will-gillis closed issue by PR 5343: [5285](https://github.com/hackforla/website/issues/5285#event-10258944530) at 2023-09-01 09:09 AM PDT -t-will-gillis,2023-09-01T16:14:32Z,- t-will-gillis submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1607260688) at 2023-09-01 09:14 AM PDT -t-will-gillis,2023-09-01T16:14:41Z,- t-will-gillis closed issue by PR 5344: [5287](https://github.com/hackforla/website/issues/5287#event-10258995365) at 2023-09-01 09:14 AM PDT -t-will-gillis,2023-09-01T16:21:39Z,- t-will-gillis submitted pull request review: [5382](https://github.com/hackforla/website/pull/5382#pullrequestreview-1607278285) at 2023-09-01 09:21 AM PDT -t-will-gillis,2023-09-01T16:21:49Z,- t-will-gillis closed issue by PR 5382: [5151](https://github.com/hackforla/website/issues/5151#event-10259050554) at 2023-09-01 09:21 AM PDT -t-will-gillis,2023-09-01T16:26:54Z,- t-will-gillis commented on pull request: [5406](https://github.com/hackforla/website/pull/5406#issuecomment-1703011763) at 2023-09-01 09:26 AM PDT -t-will-gillis,2023-09-01T20:23:51Z,- t-will-gillis commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1703282284) at 2023-09-01 01:23 PM PDT -t-will-gillis,2023-09-02T03:48:20Z,- t-will-gillis submitted pull request review: [5392](https://github.com/hackforla/website/pull/5392#pullrequestreview-1607872181) at 2023-09-01 08:48 PM PDT -t-will-gillis,2023-09-02T03:48:28Z,- t-will-gillis closed issue by PR 5392: [5376](https://github.com/hackforla/website/issues/5376#event-10262850740) at 2023-09-01 08:48 PM PDT -t-will-gillis,2023-09-03T17:04:06Z,- t-will-gillis submitted pull request review: [5414](https://github.com/hackforla/website/pull/5414#pullrequestreview-1608554641) at 2023-09-03 10:04 AM PDT -t-will-gillis,2023-09-03T17:04:27Z,- t-will-gillis closed issue by PR 5414: [5330](https://github.com/hackforla/website/issues/5330#event-10266762069) at 2023-09-03 10:04 AM PDT -t-will-gillis,2023-09-03T17:12:52Z,- t-will-gillis commented on pull request: [5425](https://github.com/hackforla/website/pull/5425#issuecomment-1704355821) at 2023-09-03 10:12 AM PDT -t-will-gillis,2023-09-03T18:03:12Z,- t-will-gillis commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1704365042) at 2023-09-03 11:03 AM PDT -t-will-gillis,2023-09-03T18:14:32Z,- t-will-gillis commented on pull request: [5421](https://github.com/hackforla/website/pull/5421#issuecomment-1704367145) at 2023-09-03 11:14 AM PDT -t-will-gillis,2023-09-03T18:56:13Z,- t-will-gillis commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1704375461) at 2023-09-03 11:56 AM PDT -t-will-gillis,2023-09-04T03:01:30Z,- t-will-gillis submitted pull request review: [5405](https://github.com/hackforla/website/pull/5405#pullrequestreview-1608696623) at 2023-09-03 08:01 PM PDT -t-will-gillis,2023-09-04T03:02:01Z,- t-will-gillis closed issue by PR 5405: [5317](https://github.com/hackforla/website/issues/5317#event-10268786335) at 2023-09-03 08:02 PM PDT -t-will-gillis,2023-09-04T03:41:24Z,- t-will-gillis commented on pull request: [5412](https://github.com/hackforla/website/pull/5412#issuecomment-1704565999) at 2023-09-03 08:41 PM PDT -t-will-gillis,2023-09-04T03:48:19Z,- t-will-gillis commented on pull request: [5435](https://github.com/hackforla/website/pull/5435#issuecomment-1704569664) at 2023-09-03 08:48 PM PDT -t-will-gillis,2023-09-04T03:49:32Z,- t-will-gillis submitted pull request review: [5412](https://github.com/hackforla/website/pull/5412#pullrequestreview-1608719881) at 2023-09-03 08:49 PM PDT -t-will-gillis,2023-09-04T03:50:25Z,- t-will-gillis closed issue by PR 5412: [5231](https://github.com/hackforla/website/issues/5231#event-10269030351) at 2023-09-03 08:50 PM PDT -t-will-gillis,2023-09-05T03:16:35Z,- t-will-gillis pull request merged: [5158](https://github.com/hackforla/website/pull/5158#event-10278387000) at 2023-09-04 08:16 PM PDT -t-will-gillis,2023-09-05T03:16:36Z,- t-will-gillis closed issue by PR 5158: [4768](https://github.com/hackforla/website/issues/4768#event-10278387073) at 2023-09-04 08:16 PM PDT -t-will-gillis,2023-09-05T03:38:03Z,- t-will-gillis commented on issue: [5163](https://github.com/hackforla/website/issues/5163#issuecomment-1705902055) at 2023-09-04 08:38 PM PDT -t-will-gillis,2023-09-05T03:38:34Z,- t-will-gillis assigned to issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1619236703) at 2023-09-04 08:38 PM PDT -t-will-gillis,2023-09-05T03:39:57Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1705903010) at 2023-09-04 08:39 PM PDT -t-will-gillis,2023-09-05T15:59:17Z,- t-will-gillis commented on pull request: [5445](https://github.com/hackforla/website/pull/5445#issuecomment-1706897403) at 2023-09-05 08:59 AM PDT -t-will-gillis,2023-09-05T15:59:53Z,- t-will-gillis commented on pull request: [5446](https://github.com/hackforla/website/pull/5446#issuecomment-1706898491) at 2023-09-05 08:59 AM PDT -t-will-gillis,2023-09-07T05:37:42Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1709505175) at 2023-09-06 10:37 PM PDT -t-will-gillis,2023-09-07T17:18:10Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1710519270) at 2023-09-07 10:18 AM PDT -t-will-gillis,2023-09-08T04:25:47Z,- t-will-gillis submitted pull request review: [5419](https://github.com/hackforla/website/pull/5419#pullrequestreview-1616653612) at 2023-09-07 09:25 PM PDT -t-will-gillis,2023-09-08T04:26:36Z,- t-will-gillis closed issue by PR 5419: [5390](https://github.com/hackforla/website/issues/5390#event-10313587777) at 2023-09-07 09:26 PM PDT -t-will-gillis,2023-09-09T02:23:05Z,- t-will-gillis opened pull request: [5467](https://github.com/hackforla/website/pull/5467) at 2023-09-08 07:23 PM PDT -t-will-gillis,2023-09-09T02:35:31Z,- t-will-gillis commented on pull request: [5460](https://github.com/hackforla/website/pull/5460#issuecomment-1712391228) at 2023-09-08 07:35 PM PDT -t-will-gillis,2023-09-09T02:35:46Z,- t-will-gillis commented on pull request: [5461](https://github.com/hackforla/website/pull/5461#issuecomment-1712391271) at 2023-09-08 07:35 PM PDT -t-will-gillis,2023-09-09T02:36:11Z,- t-will-gillis commented on pull request: [5462](https://github.com/hackforla/website/pull/5462#issuecomment-1712391356) at 2023-09-08 07:36 PM PDT -t-will-gillis,2023-09-09T02:36:25Z,- t-will-gillis commented on pull request: [5463](https://github.com/hackforla/website/pull/5463#issuecomment-1712391399) at 2023-09-08 07:36 PM PDT -t-will-gillis,2023-09-09T02:43:46Z,- t-will-gillis commented on pull request: [5457](https://github.com/hackforla/website/pull/5457#issuecomment-1712392750) at 2023-09-08 07:43 PM PDT -t-will-gillis,2023-09-09T05:02:40Z,- t-will-gillis submitted pull request review: [5464](https://github.com/hackforla/website/pull/5464#pullrequestreview-1618561912) at 2023-09-08 10:02 PM PDT -t-will-gillis,2023-09-09T05:03:17Z,- t-will-gillis closed issue by PR 5464: [5379](https://github.com/hackforla/website/issues/5379#event-10323487845) at 2023-09-08 10:03 PM PDT -t-will-gillis,2023-09-09T05:21:14Z,- t-will-gillis submitted pull request review: [5451](https://github.com/hackforla/website/pull/5451#pullrequestreview-1618563585) at 2023-09-08 10:21 PM PDT -t-will-gillis,2023-09-09T05:26:48Z,- t-will-gillis submitted pull request review: [5451](https://github.com/hackforla/website/pull/5451#pullrequestreview-1618564102) at 2023-09-08 10:26 PM PDT -t-will-gillis,2023-09-09T05:27:06Z,- t-will-gillis closed issue by PR 5451: [5383](https://github.com/hackforla/website/issues/5383#event-10323519282) at 2023-09-08 10:27 PM PDT -t-will-gillis,2023-09-09T05:48:22Z,- t-will-gillis submitted pull request review: [5456](https://github.com/hackforla/website/pull/5456#pullrequestreview-1618565960) at 2023-09-08 10:48 PM PDT -t-will-gillis,2023-09-09T15:27:27Z,- t-will-gillis submitted pull request review: [5444](https://github.com/hackforla/website/pull/5444#pullrequestreview-1618662031) at 2023-09-09 08:27 AM PDT -t-will-gillis,2023-09-09T15:38:15Z,- t-will-gillis commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1712539192) at 2023-09-09 08:38 AM PDT -t-will-gillis,2023-09-10T16:37:57Z,- t-will-gillis submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1618863835) at 2023-09-10 09:37 AM PDT -t-will-gillis,2023-09-10T16:51:58Z,- t-will-gillis submitted pull request review: [5465](https://github.com/hackforla/website/pull/5465#pullrequestreview-1618868469) at 2023-09-10 09:51 AM PDT -t-will-gillis,2023-09-10T16:52:22Z,- t-will-gillis closed issue by PR 5465: [5389](https://github.com/hackforla/website/issues/5389#event-10326799704) at 2023-09-10 09:52 AM PDT -t-will-gillis,2023-09-10T18:37:45Z,- t-will-gillis submitted pull request review: [5422](https://github.com/hackforla/website/pull/5422#pullrequestreview-1618897144) at 2023-09-10 11:37 AM PDT -t-will-gillis,2023-09-11T01:03:35Z,- t-will-gillis submitted pull request review: [5422](https://github.com/hackforla/website/pull/5422#pullrequestreview-1618978149) at 2023-09-10 06:03 PM PDT -t-will-gillis,2023-09-11T01:03:54Z,- t-will-gillis closed issue by PR 5422: [4923](https://github.com/hackforla/website/issues/4923#event-10327815471) at 2023-09-10 06:03 PM PDT -t-will-gillis,2023-09-11T17:30:57Z,- t-will-gillis commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1714304821) at 2023-09-11 10:30 AM PDT -t-will-gillis,2023-09-11T18:38:41Z,- t-will-gillis commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714393990) at 2023-09-11 11:38 AM PDT -t-will-gillis,2023-09-11T19:04:32Z,- t-will-gillis commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714428156) at 2023-09-11 12:04 PM PDT -t-will-gillis,2023-09-11T19:25:34Z,- t-will-gillis submitted pull request review: [5456](https://github.com/hackforla/website/pull/5456#pullrequestreview-1620689496) at 2023-09-11 12:25 PM PDT -t-will-gillis,2023-09-11T19:27:38Z,- t-will-gillis closed issue by PR 5456: [5385](https://github.com/hackforla/website/issues/5385#event-10338170087) at 2023-09-11 12:27 PM PDT -t-will-gillis,2023-09-12T05:30:12Z,- t-will-gillis opened issue: [5489](https://github.com/hackforla/website/issues/5489) at 2023-09-11 10:30 PM PDT -t-will-gillis,2023-09-12T05:30:29Z,- t-will-gillis opened issue: [5490](https://github.com/hackforla/website/issues/5490) at 2023-09-11 10:30 PM PDT -t-will-gillis,2023-09-12T05:30:47Z,- t-will-gillis opened issue: [5491](https://github.com/hackforla/website/issues/5491) at 2023-09-11 10:30 PM PDT -t-will-gillis,2023-09-12T05:31:01Z,- t-will-gillis opened issue: [5492](https://github.com/hackforla/website/issues/5492) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:16Z,- t-will-gillis opened issue: [5493](https://github.com/hackforla/website/issues/5493) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:30Z,- t-will-gillis opened issue: [5494](https://github.com/hackforla/website/issues/5494) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:43Z,- t-will-gillis opened issue: [5495](https://github.com/hackforla/website/issues/5495) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:56Z,- t-will-gillis opened issue: [5496](https://github.com/hackforla/website/issues/5496) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:32:12Z,- t-will-gillis opened issue: [5497](https://github.com/hackforla/website/issues/5497) at 2023-09-11 10:32 PM PDT -t-will-gillis,2023-09-12T05:32:26Z,- t-will-gillis opened issue: [5498](https://github.com/hackforla/website/issues/5498) at 2023-09-11 10:32 PM PDT -t-will-gillis,2023-09-12T05:32:41Z,- t-will-gillis opened issue: [5499](https://github.com/hackforla/website/issues/5499) at 2023-09-11 10:32 PM PDT -t-will-gillis,2023-09-12T15:08:13Z,- t-will-gillis commented on issue: [5341](https://github.com/hackforla/website/issues/5341#issuecomment-1715910003) at 2023-09-12 08:08 AM PDT -t-will-gillis,2023-09-12T15:11:45Z,- t-will-gillis commented on issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1715916103) at 2023-09-12 08:11 AM PDT -t-will-gillis,2023-09-12T15:13:38Z,- t-will-gillis commented on issue: [5342](https://github.com/hackforla/website/issues/5342#issuecomment-1715919380) at 2023-09-12 08:13 AM PDT -t-will-gillis,2023-09-13T04:11:48Z,- t-will-gillis assigned to issue: [5494](https://github.com/hackforla/website/issues/5494) at 2023-09-12 09:11 PM PDT -t-will-gillis,2023-09-13T05:06:46Z,- t-will-gillis opened pull request: [5513](https://github.com/hackforla/website/pull/5513) at 2023-09-12 10:06 PM PDT -t-will-gillis,2023-09-13T05:24:22Z,- t-will-gillis submitted pull request review: [5478](https://github.com/hackforla/website/pull/5478#pullrequestreview-1623711897) at 2023-09-12 10:24 PM PDT -t-will-gillis,2023-09-14T03:46:56Z,- t-will-gillis submitted pull request review: [5444](https://github.com/hackforla/website/pull/5444#pullrequestreview-1625779738) at 2023-09-13 08:46 PM PDT -t-will-gillis,2023-09-14T03:47:05Z,- t-will-gillis closed issue by PR 5444: [4427](https://github.com/hackforla/website/issues/4427#event-10366797451) at 2023-09-13 08:47 PM PDT -t-will-gillis,2023-09-14T03:59:17Z,- t-will-gillis commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1718728366) at 2023-09-13 08:59 PM PDT -t-will-gillis,2023-09-14T04:03:03Z,- t-will-gillis commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1718731156) at 2023-09-13 09:03 PM PDT -t-will-gillis,2023-09-15T05:14:08Z,- t-will-gillis submitted pull request review: [5466](https://github.com/hackforla/website/pull/5466#pullrequestreview-1628203373) at 2023-09-14 10:14 PM PDT -t-will-gillis,2023-09-15T05:16:36Z,- t-will-gillis submitted pull request review: [5466](https://github.com/hackforla/website/pull/5466#pullrequestreview-1628205195) at 2023-09-14 10:16 PM PDT -t-will-gillis,2023-09-15T05:24:44Z,- t-will-gillis submitted pull request review: [5488](https://github.com/hackforla/website/pull/5488#pullrequestreview-1628211232) at 2023-09-14 10:24 PM PDT -t-will-gillis,2023-09-15T05:25:45Z,- t-will-gillis closed issue by PR 5488: [5384](https://github.com/hackforla/website/issues/5384#event-10379171327) at 2023-09-14 10:25 PM PDT -t-will-gillis,2023-09-15T05:30:14Z,- t-will-gillis submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1628215347) at 2023-09-14 10:30 PM PDT -t-will-gillis,2023-09-15T05:31:56Z,- t-will-gillis submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1628216660) at 2023-09-14 10:31 PM PDT -t-will-gillis,2023-09-15T05:32:14Z,- t-will-gillis closed issue by PR 5521: [5377](https://github.com/hackforla/website/issues/5377#event-10379209953) at 2023-09-14 10:32 PM PDT -t-will-gillis,2023-09-17T04:28:59Z,- t-will-gillis opened pull request: [5544](https://github.com/hackforla/website/pull/5544) at 2023-09-16 09:28 PM PDT -t-will-gillis,2023-09-17T04:31:11Z,- t-will-gillis assigned to issue: [5490](https://github.com/hackforla/website/issues/5490) at 2023-09-16 09:31 PM PDT -t-will-gillis,2023-09-17T15:42:36Z,- t-will-gillis commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1722504398) at 2023-09-17 08:42 AM PDT -t-will-gillis,2023-09-17T15:59:52Z,- t-will-gillis submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1630097628) at 2023-09-17 08:59 AM PDT -t-will-gillis,2023-09-17T16:01:10Z,- t-will-gillis closed issue by PR 5510: [5378](https://github.com/hackforla/website/issues/5378#event-10391601670) at 2023-09-17 09:01 AM PDT -t-will-gillis,2023-09-17T18:14:07Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1722534084) at 2023-09-17 11:14 AM PDT -t-will-gillis,2023-09-17T18:32:56Z,- t-will-gillis submitted pull request review: [5535](https://github.com/hackforla/website/pull/5535#pullrequestreview-1630112126) at 2023-09-17 11:32 AM PDT -t-will-gillis,2023-09-17T18:33:25Z,- t-will-gillis closed issue by PR 5535: [5476](https://github.com/hackforla/website/issues/5476#event-10391807469) at 2023-09-17 11:33 AM PDT -t-will-gillis,2023-09-17T18:41:35Z,- t-will-gillis submitted pull request review: [5542](https://github.com/hackforla/website/pull/5542#pullrequestreview-1630113043) at 2023-09-17 11:41 AM PDT -t-will-gillis,2023-09-17T18:41:46Z,- t-will-gillis closed issue by PR 5542: [5540](https://github.com/hackforla/website/issues/5540#event-10391818288) at 2023-09-17 11:41 AM PDT -t-will-gillis,2023-09-17T19:05:21Z,- t-will-gillis commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1722543866) at 2023-09-17 12:05 PM PDT -t-will-gillis,2023-09-18T20:09:55Z,- t-will-gillis submitted pull request review: [5555](https://github.com/hackforla/website/pull/5555#pullrequestreview-1631878049) at 2023-09-18 01:09 PM PDT -t-will-gillis,2023-09-18T20:10:07Z,- t-will-gillis closed issue by PR 5555: [5386](https://github.com/hackforla/website/issues/5386#event-10402451947) at 2023-09-18 01:10 PM PDT -t-will-gillis,2023-09-19T21:09:32Z,- t-will-gillis submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1634192646) at 2023-09-19 02:09 PM PDT -t-will-gillis,2023-09-19T21:12:03Z,- t-will-gillis closed issue by PR 5434: [5286](https://github.com/hackforla/website/issues/5286#event-10415367229) at 2023-09-19 02:12 PM PDT -t-will-gillis,2023-09-21T17:00:58Z,- t-will-gillis commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1729967515) at 2023-09-21 10:00 AM PDT -t-will-gillis,2023-09-21T20:09:20Z,- t-will-gillis commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1730229958) at 2023-09-21 01:09 PM PDT -t-will-gillis,2023-09-21T20:09:29Z,- t-will-gillis closed issue by PR 5554: [5322](https://github.com/hackforla/website/issues/5322#event-10439915322) at 2023-09-21 01:09 PM PDT -t-will-gillis,2023-09-22T04:09:26Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1730774668) at 2023-09-21 09:09 PM PDT -t-will-gillis,2023-09-22T04:20:07Z,- t-will-gillis commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1730780383) at 2023-09-21 09:20 PM PDT -t-will-gillis,2023-09-22T04:24:40Z,- t-will-gillis commented on pull request: [5458](https://github.com/hackforla/website/pull/5458#issuecomment-1730783136) at 2023-09-21 09:24 PM PDT -t-will-gillis,2023-09-22T04:38:23Z,- t-will-gillis submitted pull request review: [5549](https://github.com/hackforla/website/pull/5549#pullrequestreview-1639125932) at 2023-09-21 09:38 PM PDT -t-will-gillis,2023-09-22T04:38:34Z,- t-will-gillis closed issue by PR 5549: [5189](https://github.com/hackforla/website/issues/5189#event-10442960692) at 2023-09-21 09:38 PM PDT -t-will-gillis,2023-09-22T04:45:27Z,- t-will-gillis submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1639130255) at 2023-09-21 09:45 PM PDT -t-will-gillis,2023-09-22T04:45:48Z,- t-will-gillis closed issue by PR 5557: [5428](https://github.com/hackforla/website/issues/5428#event-10442991510) at 2023-09-21 09:45 PM PDT -t-will-gillis,2023-09-22T20:37:00Z,- t-will-gillis commented on pull request: [5458](https://github.com/hackforla/website/pull/5458#issuecomment-1732006691) at 2023-09-22 01:37 PM PDT -t-will-gillis,2023-09-22T20:53:24Z,- t-will-gillis assigned to issue: [5404](https://github.com/hackforla/website/issues/5404) at 2023-09-22 01:53 PM PDT -t-will-gillis,2023-09-22T20:53:37Z,- t-will-gillis opened pull request: [5571](https://github.com/hackforla/website/pull/5571) at 2023-09-22 01:53 PM PDT -t-will-gillis,2023-09-23T00:50:43Z,- t-will-gillis pull request merged: [5571](https://github.com/hackforla/website/pull/5571#event-10452192434) at 2023-09-22 05:50 PM PDT -t-will-gillis,2023-09-24T04:02:36Z,- t-will-gillis opened pull request: [5573](https://github.com/hackforla/website/pull/5573) at 2023-09-23 09:02 PM PDT -t-will-gillis,2023-09-24T04:34:43Z,- t-will-gillis opened pull request: [5574](https://github.com/hackforla/website/pull/5574) at 2023-09-23 09:34 PM PDT -t-will-gillis,2023-09-24T05:19:20Z,- t-will-gillis opened pull request: [5575](https://github.com/hackforla/website/pull/5575) at 2023-09-23 10:19 PM PDT -t-will-gillis,2023-09-24T05:21:40Z,- t-will-gillis assigned to issue: [5495](https://github.com/hackforla/website/issues/5495) at 2023-09-23 10:21 PM PDT -t-will-gillis,2023-09-24T05:21:56Z,- t-will-gillis assigned to issue: [5492](https://github.com/hackforla/website/issues/5492) at 2023-09-23 10:21 PM PDT -t-will-gillis,2023-09-24T05:22:25Z,- t-will-gillis assigned to issue: [5493](https://github.com/hackforla/website/issues/5493) at 2023-09-23 10:22 PM PDT -t-will-gillis,2023-09-24T05:23:18Z,- t-will-gillis assigned to issue: [5499](https://github.com/hackforla/website/issues/5499) at 2023-09-23 10:23 PM PDT -t-will-gillis,2023-09-24T05:24:03Z,- t-will-gillis commented on issue: [5499](https://github.com/hackforla/website/issues/5499#issuecomment-1732482673) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:03Z,- t-will-gillis closed issue as completed: [5499](https://github.com/hackforla/website/issues/5499#event-10454575971) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:16Z,- t-will-gillis assigned to issue: [5498](https://github.com/hackforla/website/issues/5498) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:29Z,- t-will-gillis commented on issue: [5498](https://github.com/hackforla/website/issues/5498#issuecomment-1732483442) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:29Z,- t-will-gillis closed issue as completed: [5498](https://github.com/hackforla/website/issues/5498#event-10454580921) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:48Z,- t-will-gillis assigned to issue: [5496](https://github.com/hackforla/website/issues/5496) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:25:01Z,- t-will-gillis commented on issue: [5496](https://github.com/hackforla/website/issues/5496#issuecomment-1732484405) at 2023-09-23 10:25 PM PDT -t-will-gillis,2023-09-24T05:25:01Z,- t-will-gillis closed issue as completed: [5496](https://github.com/hackforla/website/issues/5496#event-10454587051) at 2023-09-23 10:25 PM PDT -t-will-gillis,2023-09-24T15:48:17Z,- t-will-gillis closed issue by PR 5558: [5448](https://github.com/hackforla/website/issues/5448#event-10455445760) at 2023-09-24 08:48 AM PDT -t-will-gillis,2023-09-24T16:01:22Z,- t-will-gillis closed issue by PR 5560: [5323](https://github.com/hackforla/website/issues/5323#event-10455465298) at 2023-09-24 09:01 AM PDT -t-will-gillis,2023-09-24T16:06:06Z,- t-will-gillis closed issue by PR 5568: [5332](https://github.com/hackforla/website/issues/5332#event-10455479127) at 2023-09-24 09:06 AM PDT -t-will-gillis,2023-09-24T16:14:24Z,- t-will-gillis submitted pull request review: [5552](https://github.com/hackforla/website/pull/5552#pullrequestreview-1641090304) at 2023-09-24 09:14 AM PDT -t-will-gillis,2023-09-24T16:15:36Z,- t-will-gillis closed issue by PR 5552: [5282](https://github.com/hackforla/website/issues/5282#event-10455535088) at 2023-09-24 09:15 AM PDT -t-will-gillis,2023-09-24T16:28:46Z,- t-will-gillis submitted pull request review: [5572](https://github.com/hackforla/website/pull/5572#pullrequestreview-1641091898) at 2023-09-24 09:28 AM PDT -t-will-gillis,2023-09-24T16:44:51Z,- t-will-gillis submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1641093632) at 2023-09-24 09:44 AM PDT -t-will-gillis,2023-09-24T16:49:16Z,- t-will-gillis commented on pull request: [5562](https://github.com/hackforla/website/pull/5562#issuecomment-1732618094) at 2023-09-24 09:49 AM PDT -t-will-gillis,2023-09-24T16:58:44Z,- t-will-gillis commented on issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1732619901) at 2023-09-24 09:58 AM PDT -t-will-gillis,2023-09-25T02:00:13Z,- t-will-gillis closed issue by PR 5569: [5340](https://github.com/hackforla/website/issues/5340#event-10456700610) at 2023-09-24 07:00 PM PDT -t-will-gillis,2023-09-26T02:29:07Z,- t-will-gillis submitted pull request review: [5580](https://github.com/hackforla/website/pull/5580#pullrequestreview-1643236601) at 2023-09-25 07:29 PM PDT -t-will-gillis,2023-09-26T02:29:37Z,- t-will-gillis closed issue by PR 5580: [5393](https://github.com/hackforla/website/issues/5393#event-10469251510) at 2023-09-25 07:29 PM PDT -t-will-gillis,2023-09-27T19:46:16Z,- t-will-gillis submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1647438912) at 2023-09-27 12:46 PM PDT -t-will-gillis,2023-09-27T19:46:24Z,- t-will-gillis closed issue by PR 5564: [5367](https://github.com/hackforla/website/issues/5367#event-10491545087) at 2023-09-27 12:46 PM PDT -t-will-gillis,2023-09-28T04:33:30Z,- t-will-gillis commented on pull request: [5574](https://github.com/hackforla/website/pull/5574#issuecomment-1738417444) at 2023-09-27 09:33 PM PDT -t-will-gillis,2023-09-29T20:57:25Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741479948) at 2023-09-29 01:57 PM PDT -t-will-gillis,2023-09-29T23:45:51Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741586686) at 2023-09-29 04:45 PM PDT -t-will-gillis,2023-09-30T01:36:59Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741620674) at 2023-09-29 06:36 PM PDT -t-will-gillis,2023-09-30T03:32:19Z,- t-will-gillis pull request merged: [5575](https://github.com/hackforla/website/pull/5575#event-10516408505) at 2023-09-29 08:32 PM PDT -t-will-gillis,2023-09-30T03:32:20Z,- t-will-gillis closed issue by PR 5575: [5493](https://github.com/hackforla/website/issues/5493#event-10516408522) at 2023-09-29 08:32 PM PDT -t-will-gillis,2023-09-30T03:38:48Z,- t-will-gillis pull request merged: [5544](https://github.com/hackforla/website/pull/5544#event-10516416426) at 2023-09-29 08:38 PM PDT -t-will-gillis,2023-09-30T03:38:49Z,- t-will-gillis closed issue by PR 5544: [5490](https://github.com/hackforla/website/issues/5490#event-10516416440) at 2023-09-29 08:38 PM PDT -t-will-gillis,2023-09-30T03:40:02Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1741647428) at 2023-09-29 08:40 PM PDT -t-will-gillis,2023-09-30T04:04:04Z,- t-will-gillis submitted pull request review: [5582](https://github.com/hackforla/website/pull/5582#pullrequestreview-1651630740) at 2023-09-29 09:04 PM PDT -t-will-gillis,2023-09-30T04:15:56Z,- t-will-gillis commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1741671729) at 2023-09-29 09:15 PM PDT -t-will-gillis,2023-09-30T04:21:42Z,- t-will-gillis commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1741672651) at 2023-09-29 09:21 PM PDT -t-will-gillis,2023-09-30T04:30:26Z,- t-will-gillis assigned to issue: [5497](https://github.com/hackforla/website/issues/5497) at 2023-09-29 09:30 PM PDT -t-will-gillis,2023-09-30T19:46:11Z,- t-will-gillis submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1651741881) at 2023-09-30 12:46 PM PDT -t-will-gillis,2023-09-30T19:56:39Z,- t-will-gillis commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741847713) at 2023-09-30 12:56 PM PDT -t-will-gillis,2023-09-30T19:59:48Z,- t-will-gillis commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1741848223) at 2023-09-30 12:59 PM PDT -t-will-gillis,2023-09-30T20:16:45Z,- t-will-gillis commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741851203) at 2023-09-30 01:16 PM PDT -t-will-gillis,2023-09-30T23:05:32Z,- t-will-gillis commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741878224) at 2023-09-30 04:05 PM PDT -t-will-gillis,2023-10-01T00:16:36Z,- t-will-gillis pull request merged: [5574](https://github.com/hackforla/website/pull/5574#event-10518210442) at 2023-09-30 05:16 PM PDT -t-will-gillis,2023-10-01T00:16:38Z,- t-will-gillis closed issue by PR 5574: [5492](https://github.com/hackforla/website/issues/5492#event-10518210480) at 2023-09-30 05:16 PM PDT -t-will-gillis,2023-10-01T00:44:03Z,- t-will-gillis opened pull request: [5637](https://github.com/hackforla/website/pull/5637) at 2023-09-30 05:44 PM PDT -t-will-gillis,2023-10-01T01:10:53Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1741907010) at 2023-09-30 06:10 PM PDT -t-will-gillis,2023-10-01T01:31:02Z,- t-will-gillis opened issue: [5638](https://github.com/hackforla/website/issues/5638) at 2023-09-30 06:31 PM PDT -t-will-gillis,2023-10-01T01:32:02Z,- t-will-gillis closed issue as not planned: [5638](https://github.com/hackforla/website/issues/5638#event-10518402042) at 2023-09-30 06:32 PM PDT -t-will-gillis,2023-10-01T02:04:56Z,- t-will-gillis submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1651792628) at 2023-09-30 07:04 PM PDT -t-will-gillis,2023-10-01T02:05:05Z,- t-will-gillis closed issue by PR 5417: [5167](https://github.com/hackforla/website/issues/5167#event-10518453810) at 2023-09-30 07:05 PM PDT -t-will-gillis,2023-10-01T15:19:19Z,- t-will-gillis commented on pull request: [5572](https://github.com/hackforla/website/pull/5572#issuecomment-1742113158) at 2023-10-01 08:19 AM PDT -t-will-gillis,2023-10-01T16:29:32Z,- t-will-gillis closed issue by PR 5611: [5172](https://github.com/hackforla/website/issues/5172#event-10519994920) at 2023-10-01 09:29 AM PDT -t-will-gillis,2023-10-01T16:49:24Z,- t-will-gillis submitted pull request review: [5612](https://github.com/hackforla/website/pull/5612#pullrequestreview-1651933029) at 2023-10-01 09:49 AM PDT -t-will-gillis,2023-10-01T16:52:07Z,- t-will-gillis closed issue by PR 5612: [5373](https://github.com/hackforla/website/issues/5373#event-10520034215) at 2023-10-01 09:52 AM PDT -t-will-gillis,2023-10-01T17:00:44Z,- t-will-gillis submitted pull request review: [5616](https://github.com/hackforla/website/pull/5616#pullrequestreview-1651934263) at 2023-10-01 10:00 AM PDT -t-will-gillis,2023-10-01T17:00:52Z,- t-will-gillis closed issue by PR 5616: [5372](https://github.com/hackforla/website/issues/5372#event-10520049005) at 2023-10-01 10:00 AM PDT -t-will-gillis,2023-10-01T17:13:49Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1742142689) at 2023-10-01 10:13 AM PDT -t-will-gillis,2023-10-01T17:38:17Z,- t-will-gillis submitted pull request review: [5636](https://github.com/hackforla/website/pull/5636#pullrequestreview-1651938171) at 2023-10-01 10:38 AM PDT -t-will-gillis,2023-10-01T17:38:41Z,- t-will-gillis closed issue by PR 5636: [5439](https://github.com/hackforla/website/issues/5439#event-10520111761) at 2023-10-01 10:38 AM PDT -t-will-gillis,2023-10-01T22:40:33Z,- t-will-gillis commented on issue: [5639](https://github.com/hackforla/website/issues/5639#issuecomment-1742225242) at 2023-10-01 03:40 PM PDT -t-will-gillis,2023-10-01T22:40:33Z,- t-will-gillis closed issue as completed: [5639](https://github.com/hackforla/website/issues/5639#event-10520671092) at 2023-10-01 03:40 PM PDT -t-will-gillis,2023-10-03T18:26:37Z,- t-will-gillis commented on issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1745502991) at 2023-10-03 11:26 AM PDT -t-will-gillis,2023-10-03T18:26:37Z,- t-will-gillis closed issue as completed: [5391](https://github.com/hackforla/website/issues/5391#event-10541928809) at 2023-10-03 11:26 AM PDT -t-will-gillis,2023-10-03T18:34:24Z,- t-will-gillis submitted pull request review: [5572](https://github.com/hackforla/website/pull/5572#pullrequestreview-1655872886) at 2023-10-03 11:34 AM PDT -t-will-gillis,2023-10-03T18:34:33Z,- t-will-gillis closed issue by PR 5572: [5410](https://github.com/hackforla/website/issues/5410#event-10541998816) at 2023-10-03 11:34 AM PDT -t-will-gillis,2023-10-03T22:02:04Z,- t-will-gillis submitted pull request review: [5634](https://github.com/hackforla/website/pull/5634#pullrequestreview-1656198847) at 2023-10-03 03:02 PM PDT -t-will-gillis,2023-10-03T22:02:15Z,- t-will-gillis closed issue by PR 5634: [5338](https://github.com/hackforla/website/issues/5338#event-10543808515) at 2023-10-03 03:02 PM PDT -t-will-gillis,2023-10-04T03:03:05Z,- t-will-gillis assigned to issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1745979190) at 2023-10-03 08:03 PM PDT -t-will-gillis,2023-10-04T03:10:24Z,- t-will-gillis commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1746062791) at 2023-10-03 08:10 PM PDT -t-will-gillis,2023-10-04T03:32:21Z,- t-will-gillis unassigned from issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1746062791) at 2023-10-03 08:32 PM PDT -t-will-gillis,2023-10-06T02:22:42Z,- t-will-gillis commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1749897043) at 2023-10-05 07:22 PM PDT -t-will-gillis,2023-10-06T02:24:51Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1749898176) at 2023-10-05 07:24 PM PDT -t-will-gillis,2023-10-06T02:25:17Z,- t-will-gillis pull request merged: [5573](https://github.com/hackforla/website/pull/5573#event-10570136070) at 2023-10-05 07:25 PM PDT -t-will-gillis,2023-10-06T02:25:18Z,- t-will-gillis closed issue by PR 5573: [5495](https://github.com/hackforla/website/issues/5495#event-10570136183) at 2023-10-05 07:25 PM PDT -t-will-gillis,2023-10-06T02:26:04Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1749898805) at 2023-10-05 07:26 PM PDT -t-will-gillis,2023-10-08T02:13:55Z,- t-will-gillis commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1751894901) at 2023-10-07 07:13 PM PDT -t-will-gillis,2023-10-08T02:22:08Z,- t-will-gillis commented on pull request: [5662](https://github.com/hackforla/website/pull/5662#issuecomment-1751896274) at 2023-10-07 07:22 PM PDT -t-will-gillis,2023-10-08T15:09:20Z,- t-will-gillis commented on pull request: [5670](https://github.com/hackforla/website/pull/5670#issuecomment-1752050602) at 2023-10-08 08:09 AM PDT -t-will-gillis,2023-10-09T04:08:02Z,- t-will-gillis closed issue by PR 5661: [5590](https://github.com/hackforla/website/issues/5590#event-10586478262) at 2023-10-08 09:08 PM PDT -t-will-gillis,2023-10-09T04:10:21Z,- t-will-gillis closed issue by PR 5665: [5619](https://github.com/hackforla/website/issues/5619#event-10586486422) at 2023-10-08 09:10 PM PDT -t-will-gillis,2023-10-12T01:53:11Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1758790602) at 2023-10-11 06:53 PM PDT -t-will-gillis,2023-10-14T21:06:06Z,- t-will-gillis commented on pull request: [5700](https://github.com/hackforla/website/pull/5700#issuecomment-1763180670) at 2023-10-14 02:06 PM PDT -t-will-gillis,2023-10-14T21:50:50Z,- t-will-gillis submitted pull request review: [5689](https://github.com/hackforla/website/pull/5689#pullrequestreview-1678488569) at 2023-10-14 02:50 PM PDT -t-will-gillis,2023-10-14T22:10:16Z,- t-will-gillis commented on pull request: [5669](https://github.com/hackforla/website/pull/5669#issuecomment-1763194153) at 2023-10-14 03:10 PM PDT -t-will-gillis,2023-10-15T16:03:14Z,- t-will-gillis closed issue by PR 5704: [5703](https://github.com/hackforla/website/issues/5703#event-10657962066) at 2023-10-15 09:03 AM PDT -t-will-gillis,2023-10-15T16:08:13Z,- t-will-gillis closed issue by PR 5702: [5318](https://github.com/hackforla/website/issues/5318#event-10657972425) at 2023-10-15 09:08 AM PDT -t-will-gillis,2023-10-15T16:24:48Z,- t-will-gillis submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1678824469) at 2023-10-15 09:24 AM PDT -t-will-gillis,2023-10-15T16:33:44Z,- t-will-gillis submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1678825698) at 2023-10-15 09:33 AM PDT -t-will-gillis,2023-10-15T16:33:59Z,- t-will-gillis closed issue by PR 5699: [5591](https://github.com/hackforla/website/issues/5591#event-10658020412) at 2023-10-15 09:33 AM PDT -t-will-gillis,2023-10-15T16:38:24Z,- t-will-gillis commented on issue: [4506](https://github.com/hackforla/website/issues/4506#issuecomment-1763442484) at 2023-10-15 09:38 AM PDT -t-will-gillis,2023-10-15T16:38:24Z,- t-will-gillis closed issue as completed: [4506](https://github.com/hackforla/website/issues/4506#event-10658027512) at 2023-10-15 09:38 AM PDT -t-will-gillis,2023-10-15T17:24:44Z,- t-will-gillis submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1678833698) at 2023-10-15 10:24 AM PDT -t-will-gillis,2023-10-15T18:00:13Z,- t-will-gillis closed issue by PR 5701: [5621](https://github.com/hackforla/website/issues/5621#event-10658165730) at 2023-10-15 11:00 AM PDT -t-will-gillis,2023-10-15T22:11:49Z,- t-will-gillis submitted pull request review: [5641](https://github.com/hackforla/website/pull/5641#pullrequestreview-1678879691) at 2023-10-15 03:11 PM PDT -t-will-gillis,2023-10-15T23:59:17Z,- t-will-gillis submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1678908315) at 2023-10-15 04:59 PM PDT -t-will-gillis,2023-10-15T23:59:58Z,- t-will-gillis closed issue by PR 5671: [5584](https://github.com/hackforla/website/issues/5584#event-10658780444) at 2023-10-15 04:59 PM PDT -t-will-gillis,2023-10-17T04:40:48Z,- t-will-gillis commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1765655597) at 2023-10-16 09:40 PM PDT -t-will-gillis,2023-10-17T20:38:54Z,- t-will-gillis commented on pull request: [5637](https://github.com/hackforla/website/pull/5637#issuecomment-1767136381) at 2023-10-17 01:38 PM PDT -t-will-gillis,2023-10-17T20:39:06Z,- t-will-gillis pull request merged: [5637](https://github.com/hackforla/website/pull/5637#event-10683530746) at 2023-10-17 01:39 PM PDT -t-will-gillis,2023-10-17T20:39:08Z,- t-will-gillis closed issue by PR 5637: [5497](https://github.com/hackforla/website/issues/5497#event-10683531043) at 2023-10-17 01:39 PM PDT -t-will-gillis,2023-10-17T20:42:29Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1767143053) at 2023-10-17 01:42 PM PDT -t-will-gillis,2023-10-18T02:38:46Z,- t-will-gillis closed issue by PR 5718: [4785](https://github.com/hackforla/website/issues/4785#event-10686208563) at 2023-10-17 07:38 PM PDT -t-will-gillis,2023-10-18T03:27:55Z,- t-will-gillis commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1767568057) at 2023-10-17 08:27 PM PDT -t-will-gillis,2023-10-18T03:27:55Z,- t-will-gillis closed issue as completed: [5601](https://github.com/hackforla/website/issues/5601#event-10686594821) at 2023-10-17 08:27 PM PDT -t-will-gillis,2023-10-18T03:43:52Z,- t-will-gillis submitted pull request review: [5668](https://github.com/hackforla/website/pull/5668#pullrequestreview-1683910918) at 2023-10-17 08:43 PM PDT -t-will-gillis,2023-10-18T03:45:34Z,- t-will-gillis closed issue by PR 5668: [5629](https://github.com/hackforla/website/issues/5629#event-10686704917) at 2023-10-17 08:45 PM PDT -t-will-gillis,2023-10-18T04:14:53Z,- t-will-gillis commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1767609527) at 2023-10-17 09:14 PM PDT -t-will-gillis,2023-10-18T04:18:23Z,- t-will-gillis commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1767611757) at 2023-10-17 09:18 PM PDT -t-will-gillis,2023-10-18T16:19:18Z,- t-will-gillis submitted pull request review: [5641](https://github.com/hackforla/website/pull/5641#pullrequestreview-1685534298) at 2023-10-18 09:19 AM PDT -t-will-gillis,2023-10-18T23:25:06Z,- t-will-gillis pull request merged: [5513](https://github.com/hackforla/website/pull/5513#event-10700848667) at 2023-10-18 04:25 PM PDT -t-will-gillis,2023-10-18T23:25:08Z,- t-will-gillis closed issue by PR 5513: [5494](https://github.com/hackforla/website/issues/5494#event-10700849078) at 2023-10-18 04:25 PM PDT -t-will-gillis,2023-10-18T23:27:42Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1769575148) at 2023-10-18 04:27 PM PDT -t-will-gillis,2023-10-20T02:13:25Z,- t-will-gillis submitted pull request review: [5670](https://github.com/hackforla/website/pull/5670#pullrequestreview-1689046675) at 2023-10-19 07:13 PM PDT -t-will-gillis,2023-10-20T02:47:47Z,- t-will-gillis submitted pull request review: [5669](https://github.com/hackforla/website/pull/5669#pullrequestreview-1689095940) at 2023-10-19 07:47 PM PDT -t-will-gillis,2023-10-20T03:16:09Z,- t-will-gillis submitted pull request review: [5700](https://github.com/hackforla/website/pull/5700#pullrequestreview-1689121002) at 2023-10-19 08:16 PM PDT -t-will-gillis,2023-10-21T21:40:27Z,- t-will-gillis commented on pull request: [5741](https://github.com/hackforla/website/pull/5741#issuecomment-1773928975) at 2023-10-21 02:40 PM PDT -t-will-gillis,2023-10-21T21:46:54Z,- t-will-gillis submitted pull request review: [5741](https://github.com/hackforla/website/pull/5741#pullrequestreview-1691341158) at 2023-10-21 02:46 PM PDT -t-will-gillis,2023-10-22T15:58:49Z,- t-will-gillis submitted pull request review: [5744](https://github.com/hackforla/website/pull/5744#pullrequestreview-1691456124) at 2023-10-22 08:58 AM PDT -t-will-gillis,2023-10-22T15:59:38Z,- t-will-gillis closed issue by PR 5744: [5618](https://github.com/hackforla/website/issues/5618#event-10733550474) at 2023-10-22 08:59 AM PDT -t-will-gillis,2023-10-22T16:09:38Z,- t-will-gillis commented on pull request: [5740](https://github.com/hackforla/website/pull/5740#issuecomment-1774132996) at 2023-10-22 09:09 AM PDT -t-will-gillis,2023-10-22T16:55:51Z,- t-will-gillis submitted pull request review: [5740](https://github.com/hackforla/website/pull/5740#pullrequestreview-1691463242) at 2023-10-22 09:55 AM PDT -t-will-gillis,2023-10-22T16:56:11Z,- t-will-gillis closed issue by PR 5740: [4187](https://github.com/hackforla/website/issues/4187#event-10733642076) at 2023-10-22 09:56 AM PDT -t-will-gillis,2023-10-22T17:04:56Z,- t-will-gillis commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1774146304) at 2023-10-22 10:04 AM PDT -t-will-gillis,2023-10-22T17:55:39Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1774157733) at 2023-10-22 10:55 AM PDT -t-will-gillis,2023-10-28T21:36:29Z,- t-will-gillis commented on issue: [5489](https://github.com/hackforla/website/issues/5489#issuecomment-1783925830) at 2023-10-28 02:36 PM PDT -t-will-gillis,2023-10-29T16:01:14Z,- t-will-gillis commented on pull request: [5769](https://github.com/hackforla/website/pull/5769#issuecomment-1784152470) at 2023-10-29 09:01 AM PDT -t-will-gillis,2023-10-29T17:00:41Z,- t-will-gillis commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1784167628) at 2023-10-29 10:00 AM PDT -t-will-gillis,2023-10-29T17:41:41Z,- t-will-gillis submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1703003704) at 2023-10-29 10:41 AM PDT -t-will-gillis,2023-10-29T17:49:54Z,- t-will-gillis submitted pull request review: [5789](https://github.com/hackforla/website/pull/5789#pullrequestreview-1703004603) at 2023-10-29 10:49 AM PDT -t-will-gillis,2023-10-29T17:50:03Z,- t-will-gillis closed issue by PR 5789: [5759](https://github.com/hackforla/website/issues/5759#event-10800309891) at 2023-10-29 10:50 AM PDT -t-will-gillis,2023-10-29T17:57:38Z,- t-will-gillis submitted pull request review: [5769](https://github.com/hackforla/website/pull/5769#pullrequestreview-1703011887) at 2023-10-29 10:57 AM PDT -t-will-gillis,2023-10-30T03:47:44Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1784431676) at 2023-10-29 08:47 PM PDT -t-will-gillis,2023-10-30T03:54:35Z,- t-will-gillis submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1703214933) at 2023-10-29 08:54 PM PDT -t-will-gillis,2023-10-30T03:56:07Z,- t-will-gillis closed issue by PR 5733: [5623](https://github.com/hackforla/website/issues/5623#event-10802205823) at 2023-10-29 08:56 PM PDT -t-will-gillis,2023-10-31T22:02:14Z,- t-will-gillis submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1707301521) at 2023-10-31 03:02 PM PDT -t-will-gillis,2023-10-31T22:02:23Z,- t-will-gillis closed issue by PR 5785: [5756](https://github.com/hackforla/website/issues/5756#event-10826378362) at 2023-10-31 03:02 PM PDT -t-will-gillis,2023-11-03T21:42:29Z,- t-will-gillis submitted pull request review: [5834](https://github.com/hackforla/website/pull/5834#pullrequestreview-1713568321) at 2023-11-03 02:42 PM PDT -t-will-gillis,2023-11-05T18:29:28Z,- t-will-gillis commented on pull request: [5834](https://github.com/hackforla/website/pull/5834#issuecomment-1793811110) at 2023-11-05 10:29 AM PST -t-will-gillis,2023-11-05T18:36:54Z,- t-will-gillis closed issue by PR 5828: [5805](https://github.com/hackforla/website/issues/5805#event-10865571080) at 2023-11-05 10:36 AM PST -t-will-gillis,2023-11-05T20:45:25Z,- t-will-gillis submitted pull request review: [5822](https://github.com/hackforla/website/pull/5822#pullrequestreview-1714053661) at 2023-11-05 12:45 PM PST -t-will-gillis,2023-11-05T21:00:18Z,- t-will-gillis submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1714055645) at 2023-11-05 01:00 PM PST -t-will-gillis,2023-11-05T21:30:24Z,- t-will-gillis submitted pull request review: [5823](https://github.com/hackforla/website/pull/5823#pullrequestreview-1714068220) at 2023-11-05 01:30 PM PST -t-will-gillis,2023-11-05T21:42:06Z,- t-will-gillis submitted pull request review: [5837](https://github.com/hackforla/website/pull/5837#pullrequestreview-1714070350) at 2023-11-05 01:42 PM PST -t-will-gillis,2023-11-05T21:42:36Z,- t-will-gillis closed issue by PR 5837: [5792](https://github.com/hackforla/website/issues/5792#event-10865936631) at 2023-11-05 01:42 PM PST -t-will-gillis,2023-11-06T02:25:09Z,- t-will-gillis submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1714171223) at 2023-11-05 06:25 PM PST -t-will-gillis,2023-11-06T02:25:36Z,- t-will-gillis closed issue by PR 5821: [5761](https://github.com/hackforla/website/issues/5761#event-10866869792) at 2023-11-05 06:25 PM PST -t-will-gillis,2023-11-06T03:17:20Z,- t-will-gillis opened issue: [5857](https://github.com/hackforla/website/issues/5857) at 2023-11-05 07:17 PM PST -t-will-gillis,2023-11-06T04:32:20Z,- t-will-gillis commented on issue: [4901](https://github.com/hackforla/website/issues/4901#issuecomment-1794069736) at 2023-11-05 08:32 PM PST -t-will-gillis,2023-11-06T04:32:20Z,- t-will-gillis closed issue as completed: [4901](https://github.com/hackforla/website/issues/4901#event-10867526872) at 2023-11-05 08:32 PM PST -t-will-gillis,2023-11-06T22:43:57Z,- t-will-gillis submitted pull request review: [5822](https://github.com/hackforla/website/pull/5822#pullrequestreview-1716446643) at 2023-11-06 02:43 PM PST -t-will-gillis,2023-11-06T22:44:09Z,- t-will-gillis closed issue by PR 5822: [5762](https://github.com/hackforla/website/issues/5762#event-10879522769) at 2023-11-06 02:44 PM PST -t-will-gillis,2023-11-07T04:02:34Z,- t-will-gillis submitted pull request review: [5443](https://github.com/hackforla/website/pull/5443#pullrequestreview-1716768410) at 2023-11-06 08:02 PM PST -t-will-gillis,2023-11-07T04:07:38Z,- t-will-gillis commented on issue: [5489](https://github.com/hackforla/website/issues/5489#issuecomment-1797718774) at 2023-11-06 08:07 PM PST -t-will-gillis,2023-11-07T04:07:38Z,- t-will-gillis closed issue as completed: [5489](https://github.com/hackforla/website/issues/5489#event-10881595891) at 2023-11-06 08:07 PM PST -t-will-gillis,2023-11-07T04:08:03Z,- t-will-gillis commented on issue: [5491](https://github.com/hackforla/website/issues/5491#issuecomment-1797719106) at 2023-11-06 08:08 PM PST -t-will-gillis,2023-11-07T04:08:03Z,- t-will-gillis closed issue as completed: [5491](https://github.com/hackforla/website/issues/5491#event-10881597804) at 2023-11-06 08:08 PM PST -t-will-gillis,2023-11-08T21:43:00Z,- t-will-gillis submitted pull request review: [5834](https://github.com/hackforla/website/pull/5834#pullrequestreview-1721326516) at 2023-11-08 01:43 PM PST -t-will-gillis,2023-11-12T17:39:28Z,- t-will-gillis submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1726298371) at 2023-11-12 09:39 AM PST -t-will-gillis,2023-11-12T17:39:43Z,- t-will-gillis closed issue by PR 5890: [5806](https://github.com/hackforla/website/issues/5806#event-10934992750) at 2023-11-12 09:39 AM PST -t-will-gillis,2023-11-13T23:18:24Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809287029) at 2023-11-13 03:18 PM PST -t-will-gillis,2023-11-13T23:37:05Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809304301) at 2023-11-13 03:37 PM PST -t-will-gillis,2023-11-13T23:45:10Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809311003) at 2023-11-13 03:45 PM PST -t-will-gillis,2023-11-14T01:36:43Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1809401446) at 2023-11-13 05:36 PM PST -t-will-gillis,2023-11-14T01:48:45Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809410148) at 2023-11-13 05:48 PM PST -t-will-gillis,2023-11-14T18:28:16Z,- t-will-gillis commented on pull request: [5899](https://github.com/hackforla/website/pull/5899#issuecomment-1810892111) at 2023-11-14 10:28 AM PST -t-will-gillis,2023-11-18T22:44:24Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1817668197) at 2023-11-18 02:44 PM PST -t-will-gillis,2023-11-19T18:23:38Z,- t-will-gillis commented on pull request: [5823](https://github.com/hackforla/website/pull/5823#issuecomment-1817937903) at 2023-11-19 10:23 AM PST -t-will-gillis,2023-11-19T19:08:49Z,- t-will-gillis submitted pull request review: [5889](https://github.com/hackforla/website/pull/5889#pullrequestreview-1738706400) at 2023-11-19 11:08 AM PST -t-will-gillis,2023-11-19T19:19:03Z,- t-will-gillis closed issue by PR 5896: [5829](https://github.com/hackforla/website/issues/5829#event-11004431109) at 2023-11-19 11:19 AM PST -t-will-gillis,2023-11-19T21:09:35Z,- t-will-gillis closed issue by PR 5906: [5345](https://github.com/hackforla/website/issues/5345#event-11004605549) at 2023-11-19 01:09 PM PST -t-will-gillis,2023-11-19T21:18:46Z,- t-will-gillis submitted pull request review: [5889](https://github.com/hackforla/website/pull/5889#pullrequestreview-1738726231) at 2023-11-19 01:18 PM PST -t-will-gillis,2023-11-19T21:43:06Z,- t-will-gillis opened issue: [5921](https://github.com/hackforla/website/issues/5921) at 2023-11-19 01:43 PM PST -t-will-gillis,2023-11-19T21:43:06Z,- t-will-gillis assigned to issue: [5921](https://github.com/hackforla/website/issues/5921) at 2023-11-19 01:43 PM PST -t-will-gillis,2023-11-19T21:53:49Z,- t-will-gillis opened pull request: [5922](https://github.com/hackforla/website/pull/5922) at 2023-11-19 01:53 PM PST -t-will-gillis,2023-11-19T22:05:20Z,- t-will-gillis closed issue by PR 5889: [5854](https://github.com/hackforla/website/issues/5854#event-11004706707) at 2023-11-19 02:05 PM PST -t-will-gillis,2023-11-19T22:15:11Z,- t-will-gillis commented on pull request: [5912](https://github.com/hackforla/website/pull/5912#issuecomment-1817994708) at 2023-11-19 02:15 PM PST -t-will-gillis,2023-11-19T22:19:24Z,- t-will-gillis closed issue by PR 5910: [5882](https://github.com/hackforla/website/issues/5882#event-11004736022) at 2023-11-19 02:19 PM PST -t-will-gillis,2023-11-19T22:24:42Z,- t-will-gillis closed issue by PR 5917: [5876](https://github.com/hackforla/website/issues/5876#event-11004749228) at 2023-11-19 02:24 PM PST -t-will-gillis,2023-11-20T18:57:05Z,- t-will-gillis pull request merged: [5922](https://github.com/hackforla/website/pull/5922#event-11015548185) at 2023-11-20 10:57 AM PST -t-will-gillis,2023-11-22T18:39:34Z,- t-will-gillis submitted pull request review: [5912](https://github.com/hackforla/website/pull/5912#pullrequestreview-1745111684) at 2023-11-22 10:39 AM PST -t-will-gillis,2023-11-22T18:39:51Z,- t-will-gillis closed issue by PR 5912: [5860](https://github.com/hackforla/website/issues/5860#event-11039967528) at 2023-11-22 10:39 AM PST -t-will-gillis,2023-11-23T04:43:07Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745696711) at 2023-11-22 08:43 PM PST -t-will-gillis,2023-11-23T05:01:59Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745708489) at 2023-11-22 09:01 PM PST -t-will-gillis,2023-11-23T05:05:39Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745710382) at 2023-11-22 09:05 PM PST -t-will-gillis,2023-11-23T05:06:54Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745711010) at 2023-11-22 09:06 PM PST -t-will-gillis,2023-11-23T05:24:52Z,- t-will-gillis commented on issue: [5364](https://github.com/hackforla/website/issues/5364#issuecomment-1823835486) at 2023-11-22 09:24 PM PST -t-will-gillis,2023-11-23T05:24:52Z,- t-will-gillis closed issue as completed: [5364](https://github.com/hackforla/website/issues/5364#event-11043345546) at 2023-11-22 09:24 PM PST -t-will-gillis,2023-11-25T04:17:41Z,- t-will-gillis commented on issue: [5930](https://github.com/hackforla/website/issues/5930#issuecomment-1826209559) at 2023-11-24 08:17 PM PST -t-will-gillis,2023-11-26T00:00:57Z,- t-will-gillis commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826446089) at 2023-11-25 04:00 PM PST -t-will-gillis,2023-11-26T02:09:34Z,- t-will-gillis closed issue by PR 5928: [5799](https://github.com/hackforla/website/issues/5799#event-11061757636) at 2023-11-25 06:09 PM PST -t-will-gillis,2023-11-26T02:23:30Z,- t-will-gillis closed issue by PR 5933: [5796](https://github.com/hackforla/website/issues/5796#event-11061770068) at 2023-11-25 06:23 PM PST -t-will-gillis,2023-11-26T22:39:29Z,- t-will-gillis submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1749437343) at 2023-11-26 02:39 PM PST -t-will-gillis,2023-11-26T22:55:03Z,- t-will-gillis submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749440959) at 2023-11-26 02:55 PM PST -t-will-gillis,2023-11-26T22:55:27Z,- t-will-gillis closed issue by PR 5935: [4455](https://github.com/hackforla/website/issues/4455#event-11064360214) at 2023-11-26 02:55 PM PST -t-will-gillis,2023-11-27T00:01:10Z,- t-will-gillis closed issue by PR 5891: [5730](https://github.com/hackforla/website/issues/5730#event-11064534205) at 2023-11-26 04:01 PM PST -t-will-gillis,2023-11-27T04:14:25Z,- t-will-gillis commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1827098994) at 2023-11-26 08:14 PM PST -t-will-gillis,2023-11-27T04:14:43Z,- t-will-gillis closed issue by PR 5936: [5698](https://github.com/hackforla/website/issues/5698#event-11065706054) at 2023-11-26 08:14 PM PST -t-will-gillis,2023-11-28T00:43:03Z,- t-will-gillis commented on issue: [5638](https://github.com/hackforla/website/issues/5638#issuecomment-1828878377) at 2023-11-27 04:43 PM PST -t-will-gillis,2023-11-28T01:39:28Z,- t-will-gillis submitted pull request review: [5931](https://github.com/hackforla/website/pull/5931#pullrequestreview-1751727369) at 2023-11-27 05:39 PM PST -t-will-gillis,2023-11-28T01:39:36Z,- t-will-gillis closed issue by PR 5931: [5680](https://github.com/hackforla/website/issues/5680#event-11077786496) at 2023-11-27 05:39 PM PST -t-will-gillis,2023-11-28T01:48:37Z,- t-will-gillis submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1751733725) at 2023-11-27 05:48 PM PST -t-will-gillis,2023-11-28T01:50:52Z,- t-will-gillis closed issue by PR 5904: [5800](https://github.com/hackforla/website/issues/5800#event-11077844487) at 2023-11-27 05:50 PM PST -t-will-gillis,2023-11-28T06:05:37Z,- t-will-gillis commented on issue: [5939](https://github.com/hackforla/website/issues/5939#issuecomment-1829176924) at 2023-11-27 10:05 PM PST -t-will-gillis,2023-11-28T06:05:37Z,- t-will-gillis closed issue as not planned: [5939](https://github.com/hackforla/website/issues/5939#event-11079178796) at 2023-11-27 10:05 PM PST -t-will-gillis,2023-11-28T18:08:33Z,- t-will-gillis closed issue by PR 5923: [5757](https://github.com/hackforla/website/issues/5757#event-11087080643) at 2023-11-28 10:08 AM PST -t-will-gillis,2023-12-01T00:56:30Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1758817149) at 2023-11-30 04:56 PM PST -t-will-gillis,2023-12-01T03:36:57Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1835403193) at 2023-11-30 07:36 PM PST -t-will-gillis,2023-12-01T03:56:27Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1835416659) at 2023-11-30 07:56 PM PST -t-will-gillis,2023-12-02T17:38:50Z,- t-will-gillis commented on pull request: [5956](https://github.com/hackforla/website/pull/5956#issuecomment-1837211508) at 2023-12-02 09:38 AM PST -t-will-gillis,2023-12-03T19:38:59Z,- t-will-gillis commented on pull request: [5944](https://github.com/hackforla/website/pull/5944#issuecomment-1837579172) at 2023-12-03 11:38 AM PST -t-will-gillis,2023-12-05T01:09:30Z,- t-will-gillis opened issue: [5962](https://github.com/hackforla/website/issues/5962) at 2023-12-04 05:09 PM PST -t-will-gillis,2023-12-05T03:35:57Z,- t-will-gillis opened issue: [5966](https://github.com/hackforla/website/issues/5966) at 2023-12-04 07:35 PM PST -t-will-gillis,2023-12-05T03:39:40Z,- t-will-gillis opened pull request: [5967](https://github.com/hackforla/website/pull/5967) at 2023-12-04 07:39 PM PST -t-will-gillis,2023-12-05T05:04:59Z,- t-will-gillis opened issue: [5969](https://github.com/hackforla/website/issues/5969) at 2023-12-04 09:04 PM PST -t-will-gillis,2023-12-05T05:05:00Z,- t-will-gillis assigned to issue: [5969](https://github.com/hackforla/website/issues/5969) at 2023-12-04 09:05 PM PST -t-will-gillis,2023-12-05T05:09:09Z,- t-will-gillis commented on issue: [5969](https://github.com/hackforla/website/issues/5969#issuecomment-1840022395) at 2023-12-04 09:09 PM PST -t-will-gillis,2023-12-05T05:53:26Z,- t-will-gillis opened issue: [5970](https://github.com/hackforla/website/issues/5970) at 2023-12-04 09:53 PM PST -t-will-gillis,2023-12-05T05:57:47Z,- t-will-gillis opened issue: [5971](https://github.com/hackforla/website/issues/5971) at 2023-12-04 09:57 PM PST -t-will-gillis,2023-12-06T16:50:32Z,- t-will-gillis commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1843280560) at 2023-12-06 08:50 AM PST -t-will-gillis,2023-12-06T16:53:01Z,- t-will-gillis commented on pull request: [5967](https://github.com/hackforla/website/pull/5967#issuecomment-1843284515) at 2023-12-06 08:53 AM PST -t-will-gillis,2023-12-06T16:53:11Z,- t-will-gillis pull request merged: [5967](https://github.com/hackforla/website/pull/5967#event-11171081541) at 2023-12-06 08:53 AM PST -t-will-gillis,2023-12-06T16:53:12Z,- t-will-gillis closed issue by PR 5967: [5966](https://github.com/hackforla/website/issues/5966#event-11171081770) at 2023-12-06 08:53 AM PST -t-will-gillis,2023-12-07T20:01:44Z,- t-will-gillis submitted pull request review: [5932](https://github.com/hackforla/website/pull/5932#pullrequestreview-1770945278) at 2023-12-07 12:01 PM PST -t-will-gillis,2023-12-07T20:02:08Z,- t-will-gillis closed issue by PR 1: [4188](https://github.com/hackforla/website/issues/4188#event-11186320834) at 2023-12-07 12:02 PM PST -t-will-gillis,2023-12-08T02:42:31Z,- t-will-gillis closed issue by PR 5947: [5705](https://github.com/hackforla/website/issues/5705#event-11188868697) at 2023-12-07 06:42 PM PST -t-will-gillis,2023-12-08T02:55:34Z,- t-will-gillis closed issue by PR 5957: [5685](https://github.com/hackforla/website/issues/5685#event-11188923691) at 2023-12-07 06:55 PM PST -t-will-gillis,2023-12-08T03:54:21Z,- t-will-gillis closed issue by PR 5961: [5673](https://github.com/hackforla/website/issues/5673#event-11189166855) at 2023-12-07 07:54 PM PST -t-will-gillis,2023-12-08T05:07:55Z,- t-will-gillis commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1846554645) at 2023-12-07 09:07 PM PST -t-will-gillis,2023-12-08T05:12:40Z,- t-will-gillis commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1846557437) at 2023-12-07 09:12 PM PST -t-will-gillis,2023-12-08T05:35:34Z,- t-will-gillis closed issue as not planned: [5971](https://github.com/hackforla/website/issues/5971#event-11189618021) at 2023-12-07 09:35 PM PST -t-will-gillis,2023-12-08T05:36:00Z,- t-will-gillis closed issue as not planned: [5970](https://github.com/hackforla/website/issues/5970#event-11189620209) at 2023-12-07 09:36 PM PST -t-will-gillis,2023-12-11T01:29:16Z,- t-will-gillis commented on pull request: [5980](https://github.com/hackforla/website/pull/5980#issuecomment-1849187355) at 2023-12-10 05:29 PM PST -t-will-gillis,2023-12-11T06:01:51Z,- t-will-gillis commented on issue: [5969](https://github.com/hackforla/website/issues/5969#issuecomment-1849378258) at 2023-12-10 10:01 PM PST -t-will-gillis,2023-12-16T18:20:44Z,- t-will-gillis commented on pull request: [6005](https://github.com/hackforla/website/pull/6005#issuecomment-1858898789) at 2023-12-16 10:20 AM PST -t-will-gillis,2023-12-16T18:21:09Z,- t-will-gillis commented on pull request: [6009](https://github.com/hackforla/website/pull/6009#issuecomment-1858898979) at 2023-12-16 10:21 AM PST -t-will-gillis,2023-12-16T18:21:23Z,- t-will-gillis commented on pull request: [6008](https://github.com/hackforla/website/pull/6008#issuecomment-1858899044) at 2023-12-16 10:21 AM PST -t-will-gillis,2023-12-17T04:58:45Z,- t-will-gillis opened pull request: [6011](https://github.com/hackforla/website/pull/6011) at 2023-12-16 08:58 PM PST -t-will-gillis,2023-12-18T03:55:25Z,- t-will-gillis submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1785804530) at 2023-12-17 07:55 PM PST -t-will-gillis,2023-12-18T03:56:05Z,- t-will-gillis closed issue by PR 5955: [5696](https://github.com/hackforla/website/issues/5696#event-11271268596) at 2023-12-17 07:56 PM PST -t-will-gillis,2023-12-18T04:21:32Z,- t-will-gillis submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1785836607) at 2023-12-17 08:21 PM PST -t-will-gillis,2023-12-18T04:51:48Z,- t-will-gillis commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1859547548) at 2023-12-17 08:51 PM PST -t-will-gillis,2023-12-18T04:56:42Z,- t-will-gillis commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1859550778) at 2023-12-17 08:56 PM PST -t-will-gillis,2023-12-18T04:57:01Z,- t-will-gillis commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1859551008) at 2023-12-17 08:57 PM PST -t-will-gillis,2023-12-18T05:31:57Z,- t-will-gillis submitted pull request review: [5976](https://github.com/hackforla/website/pull/5976#pullrequestreview-1785881948) at 2023-12-17 09:31 PM PST -t-will-gillis,2023-12-18T05:32:26Z,- t-will-gillis closed issue by PR 5976: [5691](https://github.com/hackforla/website/issues/5691#event-11271838472) at 2023-12-17 09:32 PM PST -t-will-gillis,2023-12-18T18:53:19Z,- t-will-gillis commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1861332529) at 2023-12-18 10:53 AM PST -t-will-gillis,2023-12-21T04:40:29Z,- t-will-gillis submitted pull request review: [6005](https://github.com/hackforla/website/pull/6005#pullrequestreview-1792182529) at 2023-12-20 08:40 PM PST -t-will-gillis,2023-12-21T05:02:39Z,- t-will-gillis submitted pull request review: [6009](https://github.com/hackforla/website/pull/6009#pullrequestreview-1792199852) at 2023-12-20 09:02 PM PST -t-will-gillis,2023-12-21T05:17:32Z,- t-will-gillis submitted pull request review: [6008](https://github.com/hackforla/website/pull/6008#pullrequestreview-1792210383) at 2023-12-20 09:17 PM PST -t-will-gillis,2023-12-21T19:35:28Z,- t-will-gillis commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1866830638) at 2023-12-21 11:35 AM PST -t-will-gillis,2023-12-21T22:28:41Z,- t-will-gillis submitted pull request review: [6006](https://github.com/hackforla/website/pull/6006#pullrequestreview-1793745630) at 2023-12-21 02:28 PM PST -t-will-gillis,2023-12-22T18:00:39Z,- t-will-gillis closed issue by PR 6006: [5686](https://github.com/hackforla/website/issues/5686#event-11328546214) at 2023-12-22 10:00 AM PST -t-will-gillis,2023-12-28T02:42:53Z,- t-will-gillis commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1870771250) at 2023-12-27 06:42 PM PST -t-will-gillis,2023-12-28T04:45:15Z,- t-will-gillis submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1797662017) at 2023-12-27 08:45 PM PST -t-will-gillis,2023-12-28T05:39:50Z,- t-will-gillis submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1797698069) at 2023-12-27 09:39 PM PST -t-will-gillis,2023-12-28T05:44:27Z,- t-will-gillis closed issue by PR 6013: [5687](https://github.com/hackforla/website/issues/5687#event-11348627591) at 2023-12-27 09:44 PM PST -t-will-gillis,2023-12-28T17:54:34Z,- t-will-gillis opened issue: [6019](https://github.com/hackforla/website/issues/6019) at 2023-12-28 09:54 AM PST -t-will-gillis,2023-12-28T18:09:30Z,- t-will-gillis opened issue: [6020](https://github.com/hackforla/website/issues/6020) at 2023-12-28 10:09 AM PST -t-will-gillis,2023-12-28T18:12:16Z,- t-will-gillis commented on issue: [5269](https://github.com/hackforla/website/issues/5269#issuecomment-1871391987) at 2023-12-28 10:12 AM PST -t-will-gillis,2023-12-28T18:12:17Z,- t-will-gillis closed issue as completed: [5269](https://github.com/hackforla/website/issues/5269#event-11352532325) at 2023-12-28 10:12 AM PST -t-will-gillis,2023-12-28T20:54:10Z,- t-will-gillis assigned to issue: [5164](https://github.com/hackforla/website/issues/5164) at 2023-12-28 12:54 PM PST -t-will-gillis,2023-12-28T20:57:39Z,- t-will-gillis commented on issue: [5164](https://github.com/hackforla/website/issues/5164#issuecomment-1871484746) at 2023-12-28 12:57 PM PST -t-will-gillis,2023-12-28T22:12:18Z,- t-will-gillis opened pull request: [6021](https://github.com/hackforla/website/pull/6021) at 2023-12-28 02:12 PM PST -t-will-gillis,2023-12-28T22:45:15Z,- t-will-gillis opened issue: [6022](https://github.com/hackforla/website/issues/6022) at 2023-12-28 02:45 PM PST -t-will-gillis,2023-12-28T22:52:51Z,- t-will-gillis commented on issue: [5717](https://github.com/hackforla/website/issues/5717#issuecomment-1871610425) at 2023-12-28 02:52 PM PST -t-will-gillis,2023-12-28T22:52:51Z,- t-will-gillis closed issue as completed: [5717](https://github.com/hackforla/website/issues/5717#event-11354061602) at 2023-12-28 02:52 PM PST -t-will-gillis,2023-12-29T19:19:21Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1799180377) at 2023-12-29 11:19 AM PST -t-will-gillis,2023-12-29T19:22:05Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1799183988) at 2023-12-29 11:22 AM PST -t-will-gillis,2023-12-30T16:56:24Z,- t-will-gillis commented on pull request: [6016](https://github.com/hackforla/website/pull/6016#issuecomment-1872564599) at 2023-12-30 08:56 AM PST -t-will-gillis,2024-01-02T02:40:42Z,- t-will-gillis submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1799913401) at 2024-01-01 06:40 PM PST -t-will-gillis,2024-01-02T02:40:51Z,- t-will-gillis closed issue by PR 5978: [4960](https://github.com/hackforla/website/issues/4960#event-11366783043) at 2024-01-01 06:40 PM PST -t-will-gillis,2024-01-04T16:09:49Z,- t-will-gillis commented on pull request: [6057](https://github.com/hackforla/website/pull/6057#issuecomment-1877360959) at 2024-01-04 08:09 AM PST -t-will-gillis,2024-01-05T22:20:35Z,- t-will-gillis commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1879323557) at 2024-01-05 02:20 PM PST -t-will-gillis,2024-01-05T22:21:46Z,- t-will-gillis commented on pull request: [6067](https://github.com/hackforla/website/pull/6067#issuecomment-1879324651) at 2024-01-05 02:21 PM PST -t-will-gillis,2024-01-06T19:14:00Z,- t-will-gillis submitted pull request review: [6070](https://github.com/hackforla/website/pull/6070#pullrequestreview-1807561342) at 2024-01-06 11:14 AM PST -t-will-gillis,2024-01-06T19:20:07Z,- t-will-gillis commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879792189) at 2024-01-06 11:20 AM PST -t-will-gillis,2024-01-06T21:50:13Z,- t-will-gillis submitted pull request review: [6070](https://github.com/hackforla/website/pull/6070#pullrequestreview-1807601329) at 2024-01-06 01:50 PM PST -t-will-gillis,2024-01-06T21:50:29Z,- t-will-gillis closed issue by PR 6070: [5959](https://github.com/hackforla/website/issues/5959#event-11409669317) at 2024-01-06 01:50 PM PST -t-will-gillis,2024-01-07T02:35:12Z,- t-will-gillis submitted pull request review: [6072](https://github.com/hackforla/website/pull/6072#pullrequestreview-1807658709) at 2024-01-06 06:35 PM PST -t-will-gillis,2024-01-07T04:10:45Z,- t-will-gillis submitted pull request review: [6057](https://github.com/hackforla/website/pull/6057#pullrequestreview-1807667317) at 2024-01-06 08:10 PM PST -t-will-gillis,2024-01-07T19:51:14Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1807861943) at 2024-01-07 11:51 AM PST -t-will-gillis,2024-01-07T20:23:51Z,- t-will-gillis submitted pull request review: [6072](https://github.com/hackforla/website/pull/6072#pullrequestreview-1807865706) at 2024-01-07 12:23 PM PST -t-will-gillis,2024-01-07T20:24:01Z,- t-will-gillis closed issue by PR 6072: [6020](https://github.com/hackforla/website/issues/6020#event-11411920823) at 2024-01-07 12:24 PM PST -t-will-gillis,2024-01-07T21:20:33Z,- t-will-gillis commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880177295) at 2024-01-07 01:20 PM PST -t-will-gillis,2024-01-07T21:20:49Z,- t-will-gillis closed issue by PR 6063: [5968](https://github.com/hackforla/website/issues/5968#event-11412001644) at 2024-01-07 01:20 PM PST -t-will-gillis,2024-01-08T01:24:07Z,- t-will-gillis closed issue by PR 6061: [5972](https://github.com/hackforla/website/issues/5972#event-11412496429) at 2024-01-07 05:24 PM PST -t-will-gillis,2024-01-09T17:55:58Z,- t-will-gillis pull request merged: [6021](https://github.com/hackforla/website/pull/6021#event-11433766756) at 2024-01-09 09:55 AM PST -t-will-gillis,2024-01-09T17:56:00Z,- t-will-gillis closed issue by PR 6021: [5164](https://github.com/hackforla/website/issues/5164#event-11433767044) at 2024-01-09 09:56 AM PST -t-will-gillis,2024-01-10T04:43:04Z,- t-will-gillis submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1812399004) at 2024-01-09 08:43 PM PST -t-will-gillis,2024-01-10T04:43:17Z,- t-will-gillis closed issue by PR 5974: [5694](https://github.com/hackforla/website/issues/5694#event-11438406538) at 2024-01-09 08:43 PM PST -t-will-gillis,2024-01-10T05:25:48Z,- t-will-gillis closed issue by PR 6025: [5963](https://github.com/hackforla/website/issues/5963#event-11438624692) at 2024-01-09 09:25 PM PST -t-will-gillis,2024-01-10T05:29:40Z,- t-will-gillis closed issue by PR 6075: [5965](https://github.com/hackforla/website/issues/5965#event-11438644588) at 2024-01-09 09:29 PM PST -t-will-gillis,2024-01-10T05:33:05Z,- t-will-gillis closed issue by PR 6076: [5709](https://github.com/hackforla/website/issues/5709#event-11438670679) at 2024-01-09 09:33 PM PST -t-will-gillis,2024-01-10T05:40:42Z,- t-will-gillis submitted pull request review: [6077](https://github.com/hackforla/website/pull/6077#pullrequestreview-1812450497) at 2024-01-09 09:40 PM PST -t-will-gillis,2024-01-10T05:41:04Z,- t-will-gillis closed issue by PR 6077: [5708](https://github.com/hackforla/website/issues/5708#event-11438726796) at 2024-01-09 09:41 PM PST -t-will-gillis,2024-01-10T20:40:08Z,- t-will-gillis commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1885686986) at 2024-01-10 12:40 PM PST -t-will-gillis,2024-01-10T21:43:08Z,- t-will-gillis commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1885784292) at 2024-01-10 01:43 PM PST -t-will-gillis,2024-01-11T05:48:47Z,- t-will-gillis commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1886331316) at 2024-01-10 09:48 PM PST -t-will-gillis,2024-01-12T05:59:19Z,- t-will-gillis submitted pull request review: [6085](https://github.com/hackforla/website/pull/6085#pullrequestreview-1817450899) at 2024-01-11 09:59 PM PST -t-will-gillis,2024-01-15T18:32:35Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1892625724) at 2024-01-15 10:32 AM PST -t-will-gillis,2024-01-16T03:49:36Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1893029502) at 2024-01-15 07:49 PM PST -t-will-gillis,2024-01-17T04:21:27Z,- t-will-gillis submitted pull request review: [6103](https://github.com/hackforla/website/pull/6103#pullrequestreview-1826445165) at 2024-01-16 08:21 PM PST -t-will-gillis,2024-01-17T04:25:17Z,- t-will-gillis closed issue by PR 6100: [4251](https://github.com/hackforla/website/issues/4251#event-11506290032) at 2024-01-16 08:25 PM PST -t-will-gillis,2024-01-17T04:28:52Z,- t-will-gillis closed issue by PR 6099: [5504](https://github.com/hackforla/website/issues/5504#event-11506307184) at 2024-01-16 08:28 PM PST -t-will-gillis,2024-01-17T21:04:16Z,- t-will-gillis commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1896693838) at 2024-01-17 01:04 PM PST -t-will-gillis,2024-01-19T05:15:13Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1899783009) at 2024-01-18 09:15 PM PST -t-will-gillis,2024-01-19T05:49:07Z,- t-will-gillis submitted pull request review: [6103](https://github.com/hackforla/website/pull/6103#pullrequestreview-1831619518) at 2024-01-18 09:49 PM PST -t-will-gillis,2024-01-19T05:49:28Z,- t-will-gillis closed issue by PR 6103: [6074](https://github.com/hackforla/website/issues/6074#event-11533222336) at 2024-01-18 09:49 PM PST -t-will-gillis,2024-01-20T04:45:02Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1901746286) at 2024-01-19 08:45 PM PST -t-will-gillis,2024-01-20T04:58:52Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1901750559) at 2024-01-19 08:58 PM PST -t-will-gillis,2024-01-23T19:40:48Z,- t-will-gillis submitted pull request review: [6085](https://github.com/hackforla/website/pull/6085#pullrequestreview-1839783278) at 2024-01-23 11:40 AM PST -t-will-gillis,2024-01-23T19:41:03Z,- t-will-gillis closed issue by PR 6085: [6022](https://github.com/hackforla/website/issues/6022#event-11575315115) at 2024-01-23 11:41 AM PST -t-will-gillis,2024-01-24T21:52:43Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1908975812) at 2024-01-24 01:52 PM PST -t-will-gillis,2024-01-25T22:34:30Z,- t-will-gillis pull request merged: [6011](https://github.com/hackforla/website/pull/6011#event-11603007120) at 2024-01-25 02:34 PM PST -t-will-gillis,2024-01-25T22:34:31Z,- t-will-gillis closed issue by PR 6011: [5969](https://github.com/hackforla/website/issues/5969#event-11603007237) at 2024-01-25 02:34 PM PST -t-will-gillis,2024-01-28T16:58:16Z,- t-will-gillis closed issue by PR 6186: [6166](https://github.com/hackforla/website/issues/6166#event-11620442479) at 2024-01-28 08:58 AM PST -t-will-gillis,2024-01-28T17:03:18Z,- t-will-gillis closed issue by PR 6152: [6120](https://github.com/hackforla/website/issues/6120#event-11620454425) at 2024-01-28 09:03 AM PST -t-will-gillis,2024-01-28T17:06:42Z,- t-will-gillis closed issue by PR 6151: [4301](https://github.com/hackforla/website/issues/4301#event-11620461918) at 2024-01-28 09:06 AM PST -t-will-gillis,2024-01-28T22:43:15Z,- t-will-gillis commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1913746149) at 2024-01-28 02:43 PM PST -t-will-gillis,2024-01-28T22:45:56Z,- t-will-gillis commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1913746847) at 2024-01-28 02:45 PM PST -t-will-gillis,2024-01-29T04:47:46Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1913954936) at 2024-01-28 08:47 PM PST -t-will-gillis,2024-01-29T06:21:23Z,- t-will-gillis opened issue: [6193](https://github.com/hackforla/website/issues/6193) at 2024-01-28 10:21 PM PST -t-will-gillis,2024-01-30T06:00:19Z,- t-will-gillis commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1916133970) at 2024-01-29 10:00 PM PST -t-will-gillis,2024-01-30T06:00:19Z,- t-will-gillis closed issue as completed: [4715](https://github.com/hackforla/website/issues/4715#event-11636792910) at 2024-01-29 10:00 PM PST -t-will-gillis,2024-01-30T06:05:40Z,- t-will-gillis commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1916139087) at 2024-01-29 10:05 PM PST -t-will-gillis,2024-01-30T06:05:40Z,- t-will-gillis closed issue as completed: [4964](https://github.com/hackforla/website/issues/4964#event-11636826991) at 2024-01-29 10:05 PM PST -t-will-gillis,2024-01-30T06:06:32Z,- t-will-gillis commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1916140208) at 2024-01-29 10:06 PM PST -t-will-gillis,2024-01-30T06:06:33Z,- t-will-gillis closed issue as completed: [4965](https://github.com/hackforla/website/issues/4965#event-11636833257) at 2024-01-29 10:06 PM PST -t-will-gillis,2024-01-30T06:09:46Z,- t-will-gillis commented on issue: [4974](https://github.com/hackforla/website/issues/4974#issuecomment-1916143148) at 2024-01-29 10:09 PM PST -t-will-gillis,2024-01-30T06:09:46Z,- t-will-gillis closed issue as completed: [4974](https://github.com/hackforla/website/issues/4974#event-11636859016) at 2024-01-29 10:09 PM PST -t-will-gillis,2024-01-30T16:32:12Z,- t-will-gillis submitted pull request review: [6194](https://github.com/hackforla/website/pull/6194#pullrequestreview-1851791269) at 2024-01-30 08:32 AM PST -t-will-gillis,2024-01-31T03:18:26Z,- t-will-gillis closed issue by PR 6194: [6137](https://github.com/hackforla/website/issues/6137#event-11650255429) at 2024-01-30 07:18 PM PST -t-will-gillis,2024-01-31T06:32:49Z,- t-will-gillis commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1918472980) at 2024-01-30 10:32 PM PST -t-will-gillis,2024-01-31T06:32:49Z,- t-will-gillis closed issue as completed: [4976](https://github.com/hackforla/website/issues/4976#event-11651316634) at 2024-01-30 10:32 PM PST -t-will-gillis,2024-01-31T06:34:09Z,- t-will-gillis commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1918474324) at 2024-01-30 10:34 PM PST -t-will-gillis,2024-01-31T06:34:09Z,- t-will-gillis closed issue as completed: [4977](https://github.com/hackforla/website/issues/4977#event-11651325404) at 2024-01-30 10:34 PM PST -t-will-gillis,2024-01-31T06:36:06Z,- t-will-gillis commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1918476481) at 2024-01-30 10:36 PM PST -t-will-gillis,2024-01-31T06:36:07Z,- t-will-gillis closed issue as completed: [4982](https://github.com/hackforla/website/issues/4982#event-11651339198) at 2024-01-30 10:36 PM PST -t-will-gillis,2024-01-31T06:37:01Z,- t-will-gillis commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1918477363) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:37:01Z,- t-will-gillis closed issue as completed: [4986](https://github.com/hackforla/website/issues/4986#event-11651345398) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:37:58Z,- t-will-gillis commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1918478384) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:37:58Z,- t-will-gillis closed issue as completed: [4991](https://github.com/hackforla/website/issues/4991#event-11651351799) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:39:51Z,- t-will-gillis commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1918480365) at 2024-01-30 10:39 PM PST -t-will-gillis,2024-01-31T06:39:51Z,- t-will-gillis closed issue as completed: [4998](https://github.com/hackforla/website/issues/4998#event-11651364613) at 2024-01-30 10:39 PM PST -t-will-gillis,2024-01-31T06:41:00Z,- t-will-gillis commented on issue: [5064](https://github.com/hackforla/website/issues/5064#issuecomment-1918481677) at 2024-01-30 10:41 PM PST -t-will-gillis,2024-01-31T06:41:00Z,- t-will-gillis closed issue as completed: [5064](https://github.com/hackforla/website/issues/5064#event-11651373507) at 2024-01-30 10:41 PM PST -t-will-gillis,2024-01-31T06:43:07Z,- t-will-gillis commented on issue: [5066](https://github.com/hackforla/website/issues/5066#issuecomment-1918483891) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:43:07Z,- t-will-gillis closed issue as completed: [5066](https://github.com/hackforla/website/issues/5066#event-11651388259) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:43:56Z,- t-will-gillis commented on issue: [5067](https://github.com/hackforla/website/issues/5067#issuecomment-1918484697) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:43:56Z,- t-will-gillis closed issue as completed: [5067](https://github.com/hackforla/website/issues/5067#event-11651394206) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:44:46Z,- t-will-gillis commented on issue: [5068](https://github.com/hackforla/website/issues/5068#issuecomment-1918485542) at 2024-01-30 10:44 PM PST -t-will-gillis,2024-01-31T06:44:46Z,- t-will-gillis closed issue as completed: [5068](https://github.com/hackforla/website/issues/5068#event-11651399899) at 2024-01-30 10:44 PM PST -t-will-gillis,2024-01-31T06:46:31Z,- t-will-gillis commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1918487347) at 2024-01-30 10:46 PM PST -t-will-gillis,2024-01-31T06:46:31Z,- t-will-gillis closed issue as completed: [5071](https://github.com/hackforla/website/issues/5071#event-11651411594) at 2024-01-30 10:46 PM PST -t-will-gillis,2024-01-31T06:48:29Z,- t-will-gillis commented on issue: [5072](https://github.com/hackforla/website/issues/5072#issuecomment-1918489437) at 2024-01-30 10:48 PM PST -t-will-gillis,2024-01-31T06:48:29Z,- t-will-gillis closed issue as completed: [5072](https://github.com/hackforla/website/issues/5072#event-11651425765) at 2024-01-30 10:48 PM PST -t-will-gillis,2024-01-31T06:49:12Z,- t-will-gillis commented on issue: [5074](https://github.com/hackforla/website/issues/5074#issuecomment-1918490119) at 2024-01-30 10:49 PM PST -t-will-gillis,2024-01-31T06:49:12Z,- t-will-gillis closed issue as completed: [5074](https://github.com/hackforla/website/issues/5074#event-11651430493) at 2024-01-30 10:49 PM PST -t-will-gillis,2024-01-31T06:50:06Z,- t-will-gillis commented on issue: [5075](https://github.com/hackforla/website/issues/5075#issuecomment-1918491020) at 2024-01-30 10:50 PM PST -t-will-gillis,2024-01-31T06:50:06Z,- t-will-gillis closed issue as completed: [5075](https://github.com/hackforla/website/issues/5075#event-11651436422) at 2024-01-30 10:50 PM PST -t-will-gillis,2024-01-31T06:51:38Z,- t-will-gillis commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1918492663) at 2024-01-30 10:51 PM PST -t-will-gillis,2024-01-31T06:51:38Z,- t-will-gillis closed issue as completed: [5077](https://github.com/hackforla/website/issues/5077#event-11651446963) at 2024-01-30 10:51 PM PST -t-will-gillis,2024-01-31T06:52:27Z,- t-will-gillis commented on issue: [5079](https://github.com/hackforla/website/issues/5079#issuecomment-1918493628) at 2024-01-30 10:52 PM PST -t-will-gillis,2024-01-31T06:52:27Z,- t-will-gillis closed issue as completed: [5079](https://github.com/hackforla/website/issues/5079#event-11651452937) at 2024-01-30 10:52 PM PST -t-will-gillis,2024-01-31T06:53:45Z,- t-will-gillis commented on issue: [5081](https://github.com/hackforla/website/issues/5081#issuecomment-1918495087) at 2024-01-30 10:53 PM PST -t-will-gillis,2024-01-31T06:53:46Z,- t-will-gillis closed issue as completed: [5081](https://github.com/hackforla/website/issues/5081#event-11651461986) at 2024-01-30 10:53 PM PST -t-will-gillis,2024-01-31T06:54:47Z,- t-will-gillis commented on issue: [5082](https://github.com/hackforla/website/issues/5082#issuecomment-1918496218) at 2024-01-30 10:54 PM PST -t-will-gillis,2024-01-31T06:54:47Z,- t-will-gillis closed issue as completed: [5082](https://github.com/hackforla/website/issues/5082#event-11651469166) at 2024-01-30 10:54 PM PST -t-will-gillis,2024-01-31T06:56:03Z,- t-will-gillis commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1918497608) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:56:03Z,- t-will-gillis closed issue as completed: [5083](https://github.com/hackforla/website/issues/5083#event-11651477655) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:56:58Z,- t-will-gillis commented on issue: [5084](https://github.com/hackforla/website/issues/5084#issuecomment-1918498583) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:56:58Z,- t-will-gillis closed issue as completed: [5084](https://github.com/hackforla/website/issues/5084#event-11651484059) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:58:02Z,- t-will-gillis commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1918499758) at 2024-01-30 10:58 PM PST -t-will-gillis,2024-01-31T06:58:02Z,- t-will-gillis closed issue as completed: [5088](https://github.com/hackforla/website/issues/5088#event-11651492123) at 2024-01-30 10:58 PM PST -t-will-gillis,2024-01-31T06:59:02Z,- t-will-gillis commented on issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1918500993) at 2024-01-30 10:59 PM PST -t-will-gillis,2024-01-31T06:59:03Z,- t-will-gillis closed issue as completed: [5089](https://github.com/hackforla/website/issues/5089#event-11651499611) at 2024-01-30 10:59 PM PST -t-will-gillis,2024-01-31T07:04:08Z,- t-will-gillis commented on issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1918507198) at 2024-01-30 11:04 PM PST -t-will-gillis,2024-01-31T07:04:09Z,- t-will-gillis closed issue as completed: [5091](https://github.com/hackforla/website/issues/5091#event-11651539260) at 2024-01-30 11:04 PM PST -t-will-gillis,2024-01-31T07:05:01Z,- t-will-gillis commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1918508202) at 2024-01-30 11:05 PM PST -t-will-gillis,2024-01-31T07:05:01Z,- t-will-gillis closed issue as completed: [5094](https://github.com/hackforla/website/issues/5094#event-11651546042) at 2024-01-30 11:05 PM PST -t-will-gillis,2024-01-31T07:06:13Z,- t-will-gillis commented on issue: [5207](https://github.com/hackforla/website/issues/5207#issuecomment-1918509614) at 2024-01-30 11:06 PM PST -t-will-gillis,2024-01-31T07:06:14Z,- t-will-gillis closed issue as completed: [5207](https://github.com/hackforla/website/issues/5207#event-11651555544) at 2024-01-30 11:06 PM PST -t-will-gillis,2024-01-31T07:07:00Z,- t-will-gillis commented on issue: [5209](https://github.com/hackforla/website/issues/5209#issuecomment-1918510523) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:07:00Z,- t-will-gillis closed issue as completed: [5209](https://github.com/hackforla/website/issues/5209#event-11651561608) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:07:59Z,- t-will-gillis commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1918511588) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:07:59Z,- t-will-gillis closed issue as completed: [5210](https://github.com/hackforla/website/issues/5210#event-11651569263) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:09:45Z,- t-will-gillis commented on issue: [5214](https://github.com/hackforla/website/issues/5214#issuecomment-1918513490) at 2024-01-30 11:09 PM PST -t-will-gillis,2024-01-31T07:09:45Z,- t-will-gillis closed issue as completed: [5214](https://github.com/hackforla/website/issues/5214#event-11651582627) at 2024-01-30 11:09 PM PST -t-will-gillis,2024-01-31T07:11:30Z,- t-will-gillis commented on issue: [5224](https://github.com/hackforla/website/issues/5224#issuecomment-1918515569) at 2024-01-30 11:11 PM PST -t-will-gillis,2024-01-31T07:11:30Z,- t-will-gillis closed issue as completed: [5224](https://github.com/hackforla/website/issues/5224#event-11651596342) at 2024-01-30 11:11 PM PST -t-will-gillis,2024-01-31T07:12:30Z,- t-will-gillis commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1918516777) at 2024-01-30 11:12 PM PST -t-will-gillis,2024-01-31T07:12:30Z,- t-will-gillis closed issue as completed: [5228](https://github.com/hackforla/website/issues/5228#event-11651604019) at 2024-01-30 11:12 PM PST -t-will-gillis,2024-01-31T07:13:12Z,- t-will-gillis commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1918517635) at 2024-01-30 11:13 PM PST -t-will-gillis,2024-01-31T07:13:12Z,- t-will-gillis closed issue as completed: [5229](https://github.com/hackforla/website/issues/5229#event-11651609765) at 2024-01-30 11:13 PM PST -t-will-gillis,2024-01-31T07:14:02Z,- t-will-gillis commented on issue: [5230](https://github.com/hackforla/website/issues/5230#issuecomment-1918518671) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:14:02Z,- t-will-gillis closed issue as completed: [5230](https://github.com/hackforla/website/issues/5230#event-11651616256) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:14:47Z,- t-will-gillis commented on issue: [5347](https://github.com/hackforla/website/issues/5347#issuecomment-1918519521) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:14:47Z,- t-will-gillis closed issue as completed: [5347](https://github.com/hackforla/website/issues/5347#event-11651622082) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:15:30Z,- t-will-gillis commented on issue: [5355](https://github.com/hackforla/website/issues/5355#issuecomment-1918520383) at 2024-01-30 11:15 PM PST -t-will-gillis,2024-01-31T07:15:30Z,- t-will-gillis closed issue as completed: [5355](https://github.com/hackforla/website/issues/5355#event-11651627827) at 2024-01-30 11:15 PM PST -t-will-gillis,2024-01-31T07:18:31Z,- t-will-gillis commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1918523942) at 2024-01-30 11:18 PM PST -t-will-gillis,2024-02-02T04:39:01Z,- t-will-gillis opened issue: [6211](https://github.com/hackforla/website/issues/6211) at 2024-02-01 08:39 PM PST -t-will-gillis,2024-02-02T05:03:05Z,- t-will-gillis commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1922825081) at 2024-02-01 09:03 PM PST -t-will-gillis,2024-02-02T05:03:05Z,- t-will-gillis closed issue as completed: [4975](https://github.com/hackforla/website/issues/4975#event-11679111343) at 2024-02-01 09:03 PM PST -t-will-gillis,2024-02-02T05:10:26Z,- t-will-gillis commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1922838397) at 2024-02-01 09:10 PM PST -t-will-gillis,2024-02-02T05:10:26Z,- t-will-gillis closed issue as completed: [5078](https://github.com/hackforla/website/issues/5078#event-11679152076) at 2024-02-01 09:10 PM PST -t-will-gillis,2024-02-02T05:11:55Z,- t-will-gillis commented on issue: [5085](https://github.com/hackforla/website/issues/5085#issuecomment-1922839812) at 2024-02-01 09:11 PM PST -t-will-gillis,2024-02-02T05:11:55Z,- t-will-gillis closed issue as completed: [5085](https://github.com/hackforla/website/issues/5085#event-11679159729) at 2024-02-01 09:11 PM PST -t-will-gillis,2024-02-02T05:12:31Z,- t-will-gillis commented on issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1922840787) at 2024-02-01 09:12 PM PST -t-will-gillis,2024-02-02T05:12:32Z,- t-will-gillis closed issue as completed: [5211](https://github.com/hackforla/website/issues/5211#event-11679163743) at 2024-02-01 09:12 PM PST -t-will-gillis,2024-02-02T05:13:14Z,- t-will-gillis commented on issue: [5217](https://github.com/hackforla/website/issues/5217#issuecomment-1922842172) at 2024-02-01 09:13 PM PST -t-will-gillis,2024-02-02T05:13:15Z,- t-will-gillis closed issue as completed: [5217](https://github.com/hackforla/website/issues/5217#event-11679168770) at 2024-02-01 09:13 PM PST -t-will-gillis,2024-02-02T05:14:24Z,- t-will-gillis commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1922844007) at 2024-02-01 09:14 PM PST -t-will-gillis,2024-02-02T05:14:24Z,- t-will-gillis closed issue as completed: [5226](https://github.com/hackforla/website/issues/5226#event-11679176736) at 2024-02-01 09:14 PM PST -t-will-gillis,2024-02-02T05:15:15Z,- t-will-gillis commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1922845277) at 2024-02-01 09:15 PM PST -t-will-gillis,2024-02-02T05:15:15Z,- t-will-gillis closed issue as completed: [5227](https://github.com/hackforla/website/issues/5227#event-11679182030) at 2024-02-01 09:15 PM PST -t-will-gillis,2024-02-02T05:16:04Z,- t-will-gillis commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1922845956) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:16:04Z,- t-will-gillis closed issue as completed: [5310](https://github.com/hackforla/website/issues/5310#event-11679187090) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:16:42Z,- t-will-gillis commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1922846401) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:16:43Z,- t-will-gillis closed issue as completed: [5348](https://github.com/hackforla/website/issues/5348#event-11679191597) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:17:35Z,- t-will-gillis commented on issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1922847188) at 2024-02-01 09:17 PM PST -t-will-gillis,2024-02-02T05:17:36Z,- t-will-gillis closed issue as completed: [5350](https://github.com/hackforla/website/issues/5350#event-11679197725) at 2024-02-01 09:17 PM PST -t-will-gillis,2024-02-02T05:18:24Z,- t-will-gillis commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1922848008) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:18:24Z,- t-will-gillis closed issue as completed: [5353](https://github.com/hackforla/website/issues/5353#event-11679204423) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:18:58Z,- t-will-gillis commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1922848514) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:18:58Z,- t-will-gillis closed issue as completed: [5359](https://github.com/hackforla/website/issues/5359#event-11679208874) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:19:44Z,- t-will-gillis commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1922849153) at 2024-02-01 09:19 PM PST -t-will-gillis,2024-02-02T05:19:44Z,- t-will-gillis closed issue as completed: [5360](https://github.com/hackforla/website/issues/5360#event-11679213299) at 2024-02-01 09:19 PM PST -t-will-gillis,2024-02-02T05:21:10Z,- t-will-gillis commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1922850254) at 2024-02-01 09:21 PM PST -t-will-gillis,2024-02-02T05:21:11Z,- t-will-gillis closed issue as completed: [5480](https://github.com/hackforla/website/issues/5480#event-11679220977) at 2024-02-01 09:21 PM PST -t-will-gillis,2024-02-02T05:22:16Z,- t-will-gillis commented on issue: [5484](https://github.com/hackforla/website/issues/5484#issuecomment-1922851100) at 2024-02-01 09:22 PM PST -t-will-gillis,2024-02-02T05:22:16Z,- t-will-gillis closed issue as completed: [5484](https://github.com/hackforla/website/issues/5484#event-11679227183) at 2024-02-01 09:22 PM PST -t-will-gillis,2024-02-02T05:23:17Z,- t-will-gillis commented on issue: [5487](https://github.com/hackforla/website/issues/5487#issuecomment-1922851853) at 2024-02-01 09:23 PM PST -t-will-gillis,2024-02-02T05:23:17Z,- t-will-gillis closed issue as completed: [5487](https://github.com/hackforla/website/issues/5487#event-11679233236) at 2024-02-01 09:23 PM PST -t-will-gillis,2024-02-02T05:24:02Z,- t-will-gillis commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1922852364) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:24:02Z,- t-will-gillis closed issue as completed: [5606](https://github.com/hackforla/website/issues/5606#event-11679237497) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:24:46Z,- t-will-gillis commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1922852962) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:24:47Z,- t-will-gillis closed issue as completed: [5607](https://github.com/hackforla/website/issues/5607#event-11679241923) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:25:58Z,- t-will-gillis commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1922854013) at 2024-02-01 09:25 PM PST -t-will-gillis,2024-02-02T05:25:58Z,- t-will-gillis closed issue as completed: [5609](https://github.com/hackforla/website/issues/5609#event-11679248594) at 2024-02-01 09:25 PM PST -t-will-gillis,2024-02-02T05:26:33Z,- t-will-gillis commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1922854594) at 2024-02-01 09:26 PM PST -t-will-gillis,2024-02-02T05:26:33Z,- t-will-gillis closed issue as completed: [5722](https://github.com/hackforla/website/issues/5722#event-11679252273) at 2024-02-01 09:26 PM PST -t-will-gillis,2024-02-02T05:27:57Z,- t-will-gillis commented on issue: [5723](https://github.com/hackforla/website/issues/5723#issuecomment-1922856538) at 2024-02-01 09:27 PM PST -t-will-gillis,2024-02-02T05:27:58Z,- t-will-gillis closed issue as completed: [5723](https://github.com/hackforla/website/issues/5723#event-11679261521) at 2024-02-01 09:27 PM PST -t-will-gillis,2024-02-02T05:28:41Z,- t-will-gillis commented on issue: [5726](https://github.com/hackforla/website/issues/5726#issuecomment-1922857457) at 2024-02-01 09:28 PM PST -t-will-gillis,2024-02-02T05:28:42Z,- t-will-gillis closed issue as completed: [5726](https://github.com/hackforla/website/issues/5726#event-11679266570) at 2024-02-01 09:28 PM PST -t-will-gillis,2024-02-02T05:29:31Z,- t-will-gillis commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1922858767) at 2024-02-01 09:29 PM PST -t-will-gillis,2024-02-02T05:29:31Z,- t-will-gillis closed issue as completed: [5734](https://github.com/hackforla/website/issues/5734#event-11679272514) at 2024-02-01 09:29 PM PST -t-will-gillis,2024-02-02T05:30:10Z,- t-will-gillis commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1922859458) at 2024-02-01 09:30 PM PST -t-will-gillis,2024-02-02T05:30:10Z,- t-will-gillis closed issue as completed: [5776](https://github.com/hackforla/website/issues/5776#event-11679277194) at 2024-02-01 09:30 PM PST -t-will-gillis,2024-02-02T16:57:06Z,- t-will-gillis commented on issue: [6213](https://github.com/hackforla/website/issues/6213#issuecomment-1924272139) at 2024-02-02 08:57 AM PST -t-will-gillis,2024-02-02T16:57:06Z,- t-will-gillis closed issue as completed: [6213](https://github.com/hackforla/website/issues/6213#event-11686659351) at 2024-02-02 08:57 AM PST -t-will-gillis,2024-02-03T05:02:06Z,- t-will-gillis closed issue by PR 6201: [6045](https://github.com/hackforla/website/issues/6045#event-11691603152) at 2024-02-02 09:02 PM PST -t-will-gillis,2024-02-03T05:33:39Z,- t-will-gillis closed issue by PR 6206: [5697](https://github.com/hackforla/website/issues/5697#event-11691681028) at 2024-02-02 09:33 PM PST -t-will-gillis,2024-02-03T05:41:27Z,- t-will-gillis opened pull request: [6217](https://github.com/hackforla/website/pull/6217) at 2024-02-02 09:41 PM PST -t-will-gillis,2024-02-03T05:50:59Z,- t-will-gillis commented on pull request: [6217](https://github.com/hackforla/website/pull/6217#issuecomment-1925147160) at 2024-02-02 09:50 PM PST -t-will-gillis,2024-02-03T05:50:59Z,- t-will-gillis pull request closed w/o merging: [6217](https://github.com/hackforla/website/pull/6217#event-11691736894) at 2024-02-02 09:50 PM PST -t-will-gillis,2024-02-03T06:11:32Z,- t-will-gillis opened issue: [6218](https://github.com/hackforla/website/issues/6218) at 2024-02-02 10:11 PM PST -t-will-gillis,2024-02-04T03:36:05Z,- t-will-gillis commented on pull request: [6216](https://github.com/hackforla/website/pull/6216#issuecomment-1925568109) at 2024-02-03 07:36 PM PST -t-will-gillis,2024-02-04T19:43:02Z,- t-will-gillis closed issue by PR 6216: [5676](https://github.com/hackforla/website/issues/5676#event-11696389051) at 2024-02-04 11:43 AM PST -t-will-gillis,2024-02-04T21:13:09Z,- t-will-gillis closed issue by PR 6215: [6192](https://github.com/hackforla/website/issues/6192#event-11696541329) at 2024-02-04 01:13 PM PST -t-will-gillis,2024-02-04T21:15:57Z,- t-will-gillis commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1925916613) at 2024-02-04 01:15 PM PST -t-will-gillis,2024-02-05T20:07:21Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1928010301) at 2024-02-05 12:07 PM PST -t-will-gillis,2024-02-07T20:33:52Z,- t-will-gillis commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1932821673) at 2024-02-07 12:33 PM PST -t-will-gillis,2024-02-11T05:19:19Z,- t-will-gillis submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1874304492) at 2024-02-10 09:19 PM PST -t-will-gillis,2024-02-11T05:26:46Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1937433361) at 2024-02-10 09:26 PM PST -t-will-gillis,2024-02-11T17:19:10Z,- t-will-gillis commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1937814085) at 2024-02-11 09:19 AM PST -t-will-gillis,2024-02-11T17:31:05Z,- t-will-gillis submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1874406293) at 2024-02-11 09:31 AM PST -t-will-gillis,2024-02-11T17:40:10Z,- t-will-gillis commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1937819197) at 2024-02-11 09:40 AM PST -t-will-gillis,2024-02-11T17:40:27Z,- t-will-gillis closed issue by PR 6270: [4454](https://github.com/hackforla/website/issues/4454#event-11767719759) at 2024-02-11 09:40 AM PST -t-will-gillis,2024-02-12T05:00:05Z,- t-will-gillis commented on pull request: [6280](https://github.com/hackforla/website/pull/6280#issuecomment-1938067837) at 2024-02-11 09:00 PM PST -t-will-gillis,2024-02-12T05:38:49Z,- t-will-gillis submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1874567842) at 2024-02-11 09:38 PM PST -t-will-gillis,2024-02-12T05:41:01Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1938091151) at 2024-02-11 09:41 PM PST -t-will-gillis,2024-02-12T05:43:01Z,- t-will-gillis commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1938092239) at 2024-02-11 09:43 PM PST -t-will-gillis,2024-02-12T21:20:53Z,- t-will-gillis submitted pull request review: [6282](https://github.com/hackforla/website/pull/6282#pullrequestreview-1876342227) at 2024-02-12 01:20 PM PST -t-will-gillis,2024-02-12T21:21:15Z,- t-will-gillis closed issue by PR 6282: [6054](https://github.com/hackforla/website/issues/6054#event-11780010191) at 2024-02-12 01:21 PM PST -t-will-gillis,2024-02-13T22:03:05Z,- t-will-gillis opened issue: [6291](https://github.com/hackforla/website/issues/6291) at 2024-02-13 02:03 PM PST -t-will-gillis,2024-02-14T05:00:40Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1943085123) at 2024-02-13 09:00 PM PST -t-will-gillis,2024-02-14T05:09:23Z,- t-will-gillis submitted pull request review: [6271](https://github.com/hackforla/website/pull/6271#pullrequestreview-1879367253) at 2024-02-13 09:09 PM PST -t-will-gillis,2024-02-14T05:58:54Z,- t-will-gillis submitted pull request review: [6255](https://github.com/hackforla/website/pull/6255#pullrequestreview-1879423766) at 2024-02-13 09:58 PM PST -t-will-gillis,2024-02-15T03:15:09Z,- t-will-gillis closed issue by PR 6255: [5160](https://github.com/hackforla/website/issues/5160#event-11809477007) at 2024-02-14 07:15 PM PST -t-will-gillis,2024-02-15T03:48:24Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1945319681) at 2024-02-14 07:48 PM PST -t-will-gillis,2024-02-15T03:48:45Z,- t-will-gillis closed issue by PR 6271: [4647](https://github.com/hackforla/website/issues/4647#event-11809662117) at 2024-02-14 07:48 PM PST -t-will-gillis,2024-02-15T04:29:29Z,- t-will-gillis opened issue: [6297](https://github.com/hackforla/website/issues/6297) at 2024-02-14 08:29 PM PST -t-will-gillis,2024-02-15T04:44:21Z,- t-will-gillis opened issue: [6298](https://github.com/hackforla/website/issues/6298) at 2024-02-14 08:44 PM PST -t-will-gillis,2024-02-15T05:12:30Z,- t-will-gillis opened issue: [6299](https://github.com/hackforla/website/issues/6299) at 2024-02-14 09:12 PM PST -t-will-gillis,2024-02-17T17:45:38Z,- t-will-gillis commented on issue: [6297](https://github.com/hackforla/website/issues/6297#issuecomment-1950267209) at 2024-02-17 09:45 AM PST -t-will-gillis,2024-02-17T17:45:38Z,- t-will-gillis closed issue as completed: [6297](https://github.com/hackforla/website/issues/6297#event-11836948722) at 2024-02-17 09:45 AM PST -t-will-gillis,2024-02-17T18:22:45Z,- t-will-gillis commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950275987) at 2024-02-17 10:22 AM PST -t-will-gillis,2024-02-17T19:10:58Z,- t-will-gillis opened issue: [6309](https://github.com/hackforla/website/issues/6309) at 2024-02-17 11:10 AM PST -t-will-gillis,2024-02-19T04:12:20Z,- t-will-gillis submitted pull request review: [6302](https://github.com/hackforla/website/pull/6302#pullrequestreview-1887520669) at 2024-02-18 08:12 PM PST -t-will-gillis,2024-02-19T04:12:34Z,- t-will-gillis closed issue by PR 6302: [5148](https://github.com/hackforla/website/issues/5148#event-11843895282) at 2024-02-18 08:12 PM PST -t-will-gillis,2024-02-19T04:15:01Z,- t-will-gillis commented on pull request: [6304](https://github.com/hackforla/website/pull/6304#issuecomment-1951662295) at 2024-02-18 08:15 PM PST -t-will-gillis,2024-02-19T04:22:12Z,- t-will-gillis closed issue by PR 6305: [5879](https://github.com/hackforla/website/issues/5879#event-11843961266) at 2024-02-18 08:22 PM PST -t-will-gillis,2024-02-19T04:38:59Z,- t-will-gillis submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887538822) at 2024-02-18 08:38 PM PST -t-will-gillis,2024-02-19T04:48:05Z,- t-will-gillis commented on pull request: [6314](https://github.com/hackforla/website/pull/6314#issuecomment-1951688348) at 2024-02-18 08:48 PM PST -t-will-gillis,2024-02-19T04:56:24Z,- t-will-gillis submitted pull request review: [6315](https://github.com/hackforla/website/pull/6315#pullrequestreview-1887553685) at 2024-02-18 08:56 PM PST -t-will-gillis,2024-02-19T04:56:43Z,- t-will-gillis closed issue by PR 6315: [6108](https://github.com/hackforla/website/issues/6108#event-11844197958) at 2024-02-18 08:56 PM PST -t-will-gillis,2024-02-19T05:02:24Z,- t-will-gillis commented on pull request: [6316](https://github.com/hackforla/website/pull/6316#issuecomment-1951701549) at 2024-02-18 09:02 PM PST -t-will-gillis,2024-02-19T17:08:37Z,- t-will-gillis submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1888899247) at 2024-02-19 09:08 AM PST -t-will-gillis,2024-02-19T17:09:46Z,- t-will-gillis commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1952899355) at 2024-02-19 09:09 AM PST -t-will-gillis,2024-02-19T17:09:56Z,- t-will-gillis closed issue by PR 6308: [6295](https://github.com/hackforla/website/issues/6295#event-11852512545) at 2024-02-19 09:09 AM PST -t-will-gillis,2024-02-21T00:13:33Z,- t-will-gillis commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1955462024) at 2024-02-20 04:13 PM PST -t-will-gillis,2024-02-21T04:46:57Z,- t-will-gillis closed issue by PR 6325: [6317](https://github.com/hackforla/website/issues/6317#event-11870745692) at 2024-02-20 08:46 PM PST -t-will-gillis,2024-02-21T05:17:05Z,- t-will-gillis submitted pull request review: [6324](https://github.com/hackforla/website/pull/6324#pullrequestreview-1892126845) at 2024-02-20 09:17 PM PST -t-will-gillis,2024-02-21T05:21:08Z,- t-will-gillis commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955917562) at 2024-02-20 09:21 PM PST -t-will-gillis,2024-02-21T05:21:21Z,- t-will-gillis closed issue by PR 6324: [6227](https://github.com/hackforla/website/issues/6227#event-11871009752) at 2024-02-20 09:21 PM PST -t-will-gillis,2024-02-21T19:06:40Z,- t-will-gillis commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1957720408) at 2024-02-21 11:06 AM PST -t-will-gillis,2024-02-24T18:20:06Z,- t-will-gillis commented on issue: [6355](https://github.com/hackforla/website/issues/6355#issuecomment-1962462983) at 2024-02-24 10:20 AM PST -t-will-gillis,2024-02-24T18:20:06Z,- t-will-gillis closed issue as completed: [6355](https://github.com/hackforla/website/issues/6355#event-11911320981) at 2024-02-24 10:20 AM PST -t-will-gillis,2024-02-24T19:38:11Z,- t-will-gillis commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1962628478) at 2024-02-24 11:38 AM PST -t-will-gillis,2024-02-25T02:48:38Z,- t-will-gillis submitted pull request review: [6304](https://github.com/hackforla/website/pull/6304#pullrequestreview-1899595855) at 2024-02-24 06:48 PM PST -t-will-gillis,2024-02-25T03:16:46Z,- t-will-gillis commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1962798430) at 2024-02-24 07:16 PM PST -t-will-gillis,2024-02-29T05:25:13Z,- t-will-gillis opened issue: [6395](https://github.com/hackforla/website/issues/6395) at 2024-02-28 09:25 PM PST -t-will-gillis,2024-02-29T05:45:52Z,- t-will-gillis opened issue: [6396](https://github.com/hackforla/website/issues/6396) at 2024-02-28 09:45 PM PST -t-will-gillis,2024-02-29T06:18:40Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1970482489) at 2024-02-28 10:18 PM PST -t-will-gillis,2024-02-29T19:18:46Z,- t-will-gillis opened issue: [6399](https://github.com/hackforla/website/issues/6399) at 2024-02-29 11:18 AM PST -t-will-gillis,2024-02-29T19:25:13Z,- t-will-gillis commented on issue: [5163](https://github.com/hackforla/website/issues/5163#issuecomment-1971813274) at 2024-02-29 11:25 AM PST -t-will-gillis,2024-02-29T19:25:13Z,- t-will-gillis closed issue as completed: [5163](https://github.com/hackforla/website/issues/5163#event-11970521833) at 2024-02-29 11:25 AM PST -t-will-gillis,2024-03-01T05:25:37Z,- t-will-gillis assigned to issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-1972321839) at 2024-02-29 09:25 PM PST -t-will-gillis,2024-03-01T18:51:13Z,- t-will-gillis closed issue as completed: [4610](https://github.com/hackforla/website/issues/4610#event-11983022719) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:51:14Z,- t-will-gillis commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1973745879) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:51:32Z,- t-will-gillis closed issue as completed: [3507](https://github.com/hackforla/website/issues/3507#event-11983025629) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:51:33Z,- t-will-gillis commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1973746289) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:52:20Z,- t-will-gillis opened issue: [6405](https://github.com/hackforla/website/issues/6405) at 2024-03-01 10:52 AM PST -t-will-gillis,2024-03-02T21:47:57Z,- t-will-gillis commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1974917626) at 2024-03-02 01:47 PM PST -t-will-gillis,2024-03-03T19:54:04Z,- t-will-gillis commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1975278720) at 2024-03-03 11:54 AM PST -t-will-gillis,2024-03-04T01:38:52Z,- t-will-gillis submitted pull request review: [6388](https://github.com/hackforla/website/pull/6388#pullrequestreview-1913246133) at 2024-03-03 05:38 PM PST -t-will-gillis,2024-03-04T01:39:58Z,- t-will-gillis closed issue by PR 6388: [6323](https://github.com/hackforla/website/issues/6323#event-11992204516) at 2024-03-03 05:39 PM PST -t-will-gillis,2024-03-04T01:49:57Z,- t-will-gillis closed issue by PR 6386: [6375](https://github.com/hackforla/website/issues/6375#event-11992263742) at 2024-03-03 05:49 PM PST -t-will-gillis,2024-03-04T02:00:12Z,- t-will-gillis submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1913260495) at 2024-03-03 06:00 PM PST -t-will-gillis,2024-03-04T02:01:09Z,- t-will-gillis closed issue by PR 6394: [6259](https://github.com/hackforla/website/issues/6259#event-11992323127) at 2024-03-03 06:01 PM PST -t-will-gillis,2024-03-04T02:10:47Z,- t-will-gillis submitted pull request review: [6407](https://github.com/hackforla/website/pull/6407#pullrequestreview-1913266905) at 2024-03-03 06:10 PM PST -t-will-gillis,2024-03-04T02:10:56Z,- t-will-gillis closed issue by PR 6407: [6242](https://github.com/hackforla/website/issues/6242#event-11992373217) at 2024-03-03 06:10 PM PST -t-will-gillis,2024-03-04T03:15:34Z,- t-will-gillis commented on pull request: [6409](https://github.com/hackforla/website/pull/6409#issuecomment-1975595940) at 2024-03-03 07:15 PM PST -t-will-gillis,2024-03-04T03:35:58Z,- t-will-gillis commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1975638931) at 2024-03-03 07:35 PM PST -t-will-gillis,2024-03-04T22:06:59Z,- t-will-gillis assigned to issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1975870438) at 2024-03-04 02:06 PM PST -t-will-gillis,2024-03-04T23:22:42Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1977641356) at 2024-03-04 03:22 PM PST -t-will-gillis,2024-03-04T23:22:42Z,- t-will-gillis closed issue as completed: [4541](https://github.com/hackforla/website/issues/4541#event-12006050756) at 2024-03-04 03:22 PM PST -t-will-gillis,2024-03-05T01:09:42Z,- t-will-gillis assigned to issue: [6395](https://github.com/hackforla/website/issues/6395) at 2024-03-04 05:09 PM PST -t-will-gillis,2024-03-05T01:55:24Z,- t-will-gillis assigned to issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1977794023) at 2024-03-04 05:55 PM PST -t-will-gillis,2024-03-05T05:00:29Z,- t-will-gillis commented on issue: [6389](https://github.com/hackforla/website/issues/6389#issuecomment-1977970975) at 2024-03-04 09:00 PM PST -t-will-gillis,2024-03-05T17:48:05Z,- t-will-gillis commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1979315506) at 2024-03-05 09:48 AM PST -t-will-gillis,2024-03-05T18:48:57Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1979427942) at 2024-03-05 10:48 AM PST -t-will-gillis,2024-03-06T21:39:35Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1981836584) at 2024-03-06 01:39 PM PST -t-will-gillis,2024-03-06T22:13:35Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1981904417) at 2024-03-06 02:13 PM PST -t-will-gillis,2024-03-08T06:04:28Z,- t-will-gillis assigned to issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1981904417) at 2024-03-07 10:04 PM PST -t-will-gillis,2024-03-08T06:07:54Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1985094134) at 2024-03-07 10:07 PM PST -t-will-gillis,2024-03-09T05:39:23Z,- t-will-gillis opened pull request: [6442](https://github.com/hackforla/website/pull/6442) at 2024-03-08 10:39 PM PDT -t-will-gillis,2024-03-10T03:26:57Z,- t-will-gillis submitted pull request review: [6415](https://github.com/hackforla/website/pull/6415#pullrequestreview-1926370910) at 2024-03-09 08:26 PM PDT -t-will-gillis,2024-03-10T17:16:35Z,- t-will-gillis commented on issue: [6444](https://github.com/hackforla/website/issues/6444#issuecomment-1987299544) at 2024-03-10 10:16 AM PDT -t-will-gillis,2024-03-10T17:16:35Z,- t-will-gillis closed issue as completed: [6444](https://github.com/hackforla/website/issues/6444#event-12065947675) at 2024-03-10 10:16 AM PDT -t-will-gillis,2024-03-10T17:22:51Z,- t-will-gillis commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1987301097) at 2024-03-10 10:22 AM PDT -t-will-gillis,2024-03-10T17:32:04Z,- t-will-gillis commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1987303390) at 2024-03-10 10:32 AM PDT -t-will-gillis,2024-03-10T22:03:17Z,- t-will-gillis submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1926710993) at 2024-03-10 03:03 PM PDT -t-will-gillis,2024-03-10T22:09:11Z,- t-will-gillis closed issue by PR 6440: [5710](https://github.com/hackforla/website/issues/5710#event-12066489327) at 2024-03-10 03:09 PM PDT -t-will-gillis,2024-03-10T22:31:39Z,- t-will-gillis commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1987384567) at 2024-03-10 03:31 PM PDT -t-will-gillis,2024-03-10T22:31:39Z,- t-will-gillis closed issue as completed: [5996](https://github.com/hackforla/website/issues/5996#event-12066529686) at 2024-03-10 03:31 PM PDT -t-will-gillis,2024-03-11T02:41:59Z,- t-will-gillis commented on issue: [6088](https://github.com/hackforla/website/issues/6088#issuecomment-1987526865) at 2024-03-10 07:41 PM PDT -t-will-gillis,2024-03-11T02:41:59Z,- t-will-gillis closed issue as completed: [6088](https://github.com/hackforla/website/issues/6088#event-12067450634) at 2024-03-10 07:41 PM PDT -t-will-gillis,2024-03-11T03:39:50Z,- t-will-gillis commented on pull request: [6447](https://github.com/hackforla/website/pull/6447#issuecomment-1987581526) at 2024-03-10 08:39 PM PDT -t-will-gillis,2024-03-11T20:06:44Z,- t-will-gillis submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1929096686) at 2024-03-11 01:06 PM PDT -t-will-gillis,2024-03-11T20:06:54Z,- t-will-gillis closed issue by PR 6438: [6180](https://github.com/hackforla/website/issues/6180#event-12079422756) at 2024-03-11 01:06 PM PDT -t-will-gillis,2024-03-11T20:29:07Z,- t-will-gillis submitted pull request review: [6441](https://github.com/hackforla/website/pull/6441#pullrequestreview-1929180848) at 2024-03-11 01:29 PM PDT -t-will-gillis,2024-03-11T20:33:13Z,- t-will-gillis closed issue by PR 6441: [5187](https://github.com/hackforla/website/issues/5187#event-12079804400) at 2024-03-11 01:33 PM PDT -t-will-gillis,2024-03-11T21:50:36Z,- t-will-gillis opened issue: [6454](https://github.com/hackforla/website/issues/6454) at 2024-03-11 02:50 PM PDT -t-will-gillis,2024-03-13T16:10:00Z,- t-will-gillis assigned to issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1970482489) at 2024-03-13 09:10 AM PDT -t-will-gillis,2024-03-13T20:42:32Z,- t-will-gillis opened issue: [6459](https://github.com/hackforla/website/issues/6459) at 2024-03-13 01:42 PM PDT -t-will-gillis,2024-03-13T20:51:06Z,- t-will-gillis opened issue: [6460](https://github.com/hackforla/website/issues/6460) at 2024-03-13 01:51 PM PDT -t-will-gillis,2024-03-13T22:34:05Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1996005873) at 2024-03-13 03:34 PM PDT -t-will-gillis,2024-03-14T04:20:43Z,- t-will-gillis commented on issue: [6389](https://github.com/hackforla/website/issues/6389#issuecomment-1996375789) at 2024-03-13 09:20 PM PDT -t-will-gillis,2024-03-14T18:50:51Z,- t-will-gillis commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-1998109832) at 2024-03-14 11:50 AM PDT -t-will-gillis,2024-03-15T07:04:47Z,- t-will-gillis unassigned from issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1996005873) at 2024-03-15 12:04 AM PDT -t-will-gillis,2024-03-15T07:56:13Z,- t-will-gillis unassigned from issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1977550201) at 2024-03-15 12:56 AM PDT -t-will-gillis,2024-03-15T08:07:59Z,- t-will-gillis unassigned from issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-1977761450) at 2024-03-15 01:07 AM PDT -t-will-gillis,2024-03-15T18:49:34Z,- t-will-gillis commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-2000257685) at 2024-03-15 11:49 AM PDT -t-will-gillis,2024-03-15T20:07:26Z,- t-will-gillis assigned to issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1999060052) at 2024-03-15 01:07 PM PDT -t-will-gillis,2024-03-15T20:19:20Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2000386826) at 2024-03-15 01:19 PM PDT -t-will-gillis,2024-03-15T21:37:50Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2000479222) at 2024-03-15 02:37 PM PDT -t-will-gillis,2024-03-15T21:56:59Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2000527464) at 2024-03-15 02:56 PM PDT -t-will-gillis,2024-03-15T23:23:57Z,- t-will-gillis commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-2000620803) at 2024-03-15 04:23 PM PDT -t-will-gillis,2024-03-17T16:42:58Z,- t-will-gillis submitted pull request review: [6469](https://github.com/hackforla/website/pull/6469#pullrequestreview-1941529653) at 2024-03-17 09:42 AM PDT -t-will-gillis,2024-03-17T16:43:25Z,- t-will-gillis closed issue by PR 6469: [6460](https://github.com/hackforla/website/issues/6460#event-12143427525) at 2024-03-17 09:43 AM PDT -t-will-gillis,2024-03-17T17:26:13Z,- t-will-gillis submitted pull request review: [6470](https://github.com/hackforla/website/pull/6470#pullrequestreview-1941536454) at 2024-03-17 10:26 AM PDT -t-will-gillis,2024-03-17T18:08:03Z,- t-will-gillis submitted pull request review: [6468](https://github.com/hackforla/website/pull/6468#pullrequestreview-1941544625) at 2024-03-17 11:08 AM PDT -t-will-gillis,2024-03-18T02:50:03Z,- t-will-gillis submitted pull request review: [6470](https://github.com/hackforla/website/pull/6470#pullrequestreview-1941892391) at 2024-03-17 07:50 PM PDT -t-will-gillis,2024-03-18T04:23:43Z,- t-will-gillis closed issue by PR 6470: [6459](https://github.com/hackforla/website/issues/6459#event-12145694317) at 2024-03-17 09:23 PM PDT -t-will-gillis,2024-03-18T04:27:19Z,- t-will-gillis closed issue by PR 6468: [6396](https://github.com/hackforla/website/issues/6396#event-12145713081) at 2024-03-17 09:27 PM PDT -t-will-gillis,2024-03-20T17:54:45Z,- t-will-gillis commented on issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-2010261952) at 2024-03-20 10:54 AM PDT -t-will-gillis,2024-03-21T05:08:42Z,- t-will-gillis commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2011229465) at 2024-03-20 10:08 PM PDT -t-will-gillis,2024-03-21T20:36:54Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2013683444) at 2024-03-21 01:36 PM PDT -t-will-gillis,2024-03-23T19:01:01Z,- t-will-gillis commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016576518) at 2024-03-23 12:01 PM PDT -t-will-gillis,2024-03-23T19:13:13Z,- t-will-gillis commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2016579316) at 2024-03-23 12:13 PM PDT -t-will-gillis,2024-03-23T19:13:40Z,- t-will-gillis commented on pull request: [6507](https://github.com/hackforla/website/pull/6507#issuecomment-2016579430) at 2024-03-23 12:13 PM PDT -t-will-gillis,2024-03-24T17:17:21Z,- t-will-gillis commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-2016876535) at 2024-03-24 10:17 AM PDT -t-will-gillis,2024-03-24T17:28:49Z,- t-will-gillis submitted pull request review: [6502](https://github.com/hackforla/website/pull/6502#pullrequestreview-1956610160) at 2024-03-24 10:28 AM PDT -t-will-gillis,2024-03-24T21:12:10Z,- t-will-gillis submitted pull request review: [6502](https://github.com/hackforla/website/pull/6502#pullrequestreview-1956655794) at 2024-03-24 02:12 PM PDT -t-will-gillis,2024-03-24T21:35:34Z,- t-will-gillis submitted pull request review: [6505](https://github.com/hackforla/website/pull/6505#pullrequestreview-1956661099) at 2024-03-24 02:35 PM PDT -t-will-gillis,2024-03-24T21:36:17Z,- t-will-gillis closed issue by PR 6505: [6474](https://github.com/hackforla/website/issues/6474#event-12227638758) at 2024-03-24 02:36 PM PDT -t-will-gillis,2024-03-24T22:28:09Z,- t-will-gillis commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016968165) at 2024-03-24 03:28 PM PDT -t-will-gillis,2024-03-24T22:33:16Z,- t-will-gillis submitted pull request review: [6502](https://github.com/hackforla/website/pull/6502#pullrequestreview-1956672809) at 2024-03-24 03:33 PM PDT -t-will-gillis,2024-03-24T22:33:34Z,- t-will-gillis closed issue by PR 6502: [4821](https://github.com/hackforla/website/issues/4821#event-12227761759) at 2024-03-24 03:33 PM PDT -t-will-gillis,2024-03-25T04:34:02Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2017192353) at 2024-03-24 09:34 PM PDT -t-will-gillis,2024-03-25T22:11:26Z,- t-will-gillis commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2019009195) at 2024-03-25 03:11 PM PDT -t-will-gillis,2024-03-26T19:14:10Z,- t-will-gillis opened pull request: [6520](https://github.com/hackforla/website/pull/6520) at 2024-03-26 12:14 PM PDT -t-will-gillis,2024-03-26T22:21:06Z,- t-will-gillis commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2021568881) at 2024-03-26 03:21 PM PDT -t-will-gillis,2024-03-26T22:21:25Z,- t-will-gillis closed issue as completed: [6426](https://github.com/hackforla/website/issues/6426#event-12257322903) at 2024-03-26 03:21 PM PDT -t-will-gillis,2024-03-26T22:30:44Z,- t-will-gillis commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2021580302) at 2024-03-26 03:30 PM PDT -t-will-gillis,2024-03-26T22:45:14Z,- t-will-gillis assigned to issue: [6454](https://github.com/hackforla/website/issues/6454) at 2024-03-26 03:45 PM PDT -t-will-gillis,2024-03-27T21:07:54Z,- t-will-gillis submitted pull request review: [6503](https://github.com/hackforla/website/pull/6503#pullrequestreview-1964780596) at 2024-03-27 02:07 PM PDT -t-will-gillis,2024-03-27T21:36:03Z,- t-will-gillis opened issue: [6537](https://github.com/hackforla/website/issues/6537) at 2024-03-27 02:36 PM PDT -t-will-gillis,2024-03-29T18:21:03Z,- t-will-gillis commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2027573258) at 2024-03-29 11:21 AM PDT -t-will-gillis,2024-03-30T05:51:04Z,- t-will-gillis commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2027930590) at 2024-03-29 10:51 PM PDT -t-will-gillis,2024-04-01T04:35:58Z,- t-will-gillis closed issue as completed: [6029](https://github.com/hackforla/website/issues/6029#event-12306440578) at 2024-03-31 09:35 PM PDT -t-will-gillis,2024-04-01T04:35:59Z,- t-will-gillis commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-2029144147) at 2024-03-31 09:35 PM PDT -t-will-gillis,2024-04-01T04:36:00Z,- t-will-gillis commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-2029144161) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:00Z,- t-will-gillis closed issue as completed: [6119](https://github.com/hackforla/website/issues/6119#event-12306440709) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:05Z,- t-will-gillis closed issue as completed: [6038](https://github.com/hackforla/website/issues/6038#event-12306441156) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:06Z,- t-will-gillis commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2029144222) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:06Z,- t-will-gillis closed issue as completed: [6083](https://github.com/hackforla/website/issues/6083#event-12306441239) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:07Z,- t-will-gillis commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-2029144238) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:09Z,- t-will-gillis closed issue as completed: [5065](https://github.com/hackforla/website/issues/5065#event-12306441496) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:10Z,- t-will-gillis commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-2029144279) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:10Z,- t-will-gillis closed issue as completed: [5720](https://github.com/hackforla/website/issues/5720#event-12306441581) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:11Z,- t-will-gillis commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-2029144300) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:11Z,- t-will-gillis closed issue as completed: [5212](https://github.com/hackforla/website/issues/5212#event-12306441619) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:11Z,- t-will-gillis commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-2029144292) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:15Z,- t-will-gillis commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-2029144340) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:15Z,- t-will-gillis closed issue as completed: [5774](https://github.com/hackforla/website/issues/5774#event-12306441949) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:50Z,- t-will-gillis opened issue: [6554](https://github.com/hackforla/website/issues/6554) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-02T01:47:44Z,- t-will-gillis opened issue: [6555](https://github.com/hackforla/website/issues/6555) at 2024-04-01 06:47 PM PDT -t-will-gillis,2024-04-02T01:47:51Z,- t-will-gillis assigned to issue: [6555](https://github.com/hackforla/website/issues/6555) at 2024-04-01 06:47 PM PDT -t-will-gillis,2024-04-02T01:48:05Z,- t-will-gillis unassigned from issue: [6555](https://github.com/hackforla/website/issues/6555) at 2024-04-01 06:48 PM PDT -t-will-gillis,2024-04-02T01:53:55Z,- t-will-gillis assigned to issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2030928585) at 2024-04-01 06:53 PM PDT -t-will-gillis,2024-04-02T04:50:26Z,- t-will-gillis opened pull request: [6556](https://github.com/hackforla/website/pull/6556) at 2024-04-01 09:50 PM PDT -t-will-gillis,2024-04-02T17:43:52Z,- t-will-gillis commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032674950) at 2024-04-02 10:43 AM PDT -t-will-gillis,2024-04-02T17:55:19Z,- t-will-gillis opened pull request: [6557](https://github.com/hackforla/website/pull/6557) at 2024-04-02 10:55 AM PDT -t-will-gillis,2024-04-02T18:00:15Z,- t-will-gillis commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032706965) at 2024-04-02 11:00 AM PDT -t-will-gillis,2024-04-02T18:00:15Z,- t-will-gillis pull request closed w/o merging: [6556](https://github.com/hackforla/website/pull/6556#event-12329999649) at 2024-04-02 11:00 AM PDT -t-will-gillis,2024-04-02T18:06:16Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2032718459) at 2024-04-02 11:06 AM PDT -t-will-gillis,2024-04-02T18:26:09Z,- t-will-gillis commented on pull request: [6557](https://github.com/hackforla/website/pull/6557#issuecomment-2032755129) at 2024-04-02 11:26 AM PDT -t-will-gillis,2024-04-02T18:26:23Z,- t-will-gillis pull request merged: [6557](https://github.com/hackforla/website/pull/6557#event-12330344461) at 2024-04-02 11:26 AM PDT -t-will-gillis,2024-04-03T04:19:05Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2033502154) at 2024-04-02 09:19 PM PDT -t-will-gillis,2024-04-03T17:07:12Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2035134830) at 2024-04-03 10:07 AM PDT -t-will-gillis,2024-04-04T05:54:54Z,- t-will-gillis commented on issue: [6563](https://github.com/hackforla/website/issues/6563#issuecomment-2036245645) at 2024-04-03 10:54 PM PDT -t-will-gillis,2024-04-04T05:55:10Z,- t-will-gillis closed issue as completed: [6563](https://github.com/hackforla/website/issues/6563#event-12352046545) at 2024-04-03 10:55 PM PDT -t-will-gillis,2024-04-11T17:53:23Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2050209304) at 2024-04-11 10:53 AM PDT -t-will-gillis,2024-04-11T18:09:32Z,- t-will-gillis commented on issue: [6537](https://github.com/hackforla/website/issues/6537#issuecomment-2050240363) at 2024-04-11 11:09 AM PDT -t-will-gillis,2024-04-11T18:09:32Z,- t-will-gillis closed issue as completed: [6537](https://github.com/hackforla/website/issues/6537#event-12440009334) at 2024-04-11 11:09 AM PDT -t-will-gillis,2024-04-12T19:02:14Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2052348398) at 2024-04-12 12:02 PM PDT -t-will-gillis,2024-04-14T16:44:02Z,- t-will-gillis commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2054117844) at 2024-04-14 09:44 AM PDT -t-will-gillis,2024-04-14T16:47:19Z,- t-will-gillis closed issue by PR 6627: [6176](https://github.com/hackforla/website/issues/6176#event-12460817032) at 2024-04-14 09:47 AM PDT -t-will-gillis,2024-04-15T01:15:29Z,- t-will-gillis closed issue by PR 6635: [6155](https://github.com/hackforla/website/issues/6155#event-12461860600) at 2024-04-14 06:15 PM PDT -t-will-gillis,2024-04-15T01:37:48Z,- t-will-gillis submitted pull request review: [6562](https://github.com/hackforla/website/pull/6562#pullrequestreview-1999814336) at 2024-04-14 06:37 PM PDT -t-will-gillis,2024-04-15T01:41:37Z,- t-will-gillis commented on pull request: [6565](https://github.com/hackforla/website/pull/6565#issuecomment-2054290311) at 2024-04-14 06:41 PM PDT -t-will-gillis,2024-04-15T01:46:32Z,- t-will-gillis submitted pull request review: [6565](https://github.com/hackforla/website/pull/6565#pullrequestreview-1999854183) at 2024-04-14 06:46 PM PDT -t-will-gillis,2024-04-15T02:14:50Z,- t-will-gillis submitted pull request review: [6634](https://github.com/hackforla/website/pull/6634#pullrequestreview-1999918707) at 2024-04-14 07:14 PM PDT -t-will-gillis,2024-04-15T19:18:41Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2057633722) at 2024-04-15 12:18 PM PDT -t-will-gillis,2024-04-16T01:45:29Z,- t-will-gillis assigned to issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-1566234854) at 2024-04-15 06:45 PM PDT -t-will-gillis,2024-04-16T23:23:42Z,- t-will-gillis commented on issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2060063190) at 2024-04-16 04:23 PM PDT -t-will-gillis,2024-04-16T23:23:42Z,- t-will-gillis closed issue as completed: [6499](https://github.com/hackforla/website/issues/6499#event-12498081836) at 2024-04-16 04:23 PM PDT -t-will-gillis,2024-04-16T23:52:50Z,- t-will-gillis commented on issue: [6586](https://github.com/hackforla/website/issues/6586#issuecomment-2060085312) at 2024-04-16 04:52 PM PDT -t-will-gillis,2024-04-16T23:52:50Z,- t-will-gillis closed issue as not planned: [6586](https://github.com/hackforla/website/issues/6586#event-12498331739) at 2024-04-16 04:52 PM PDT -t-will-gillis,2024-04-16T23:53:13Z,- t-will-gillis commented on issue: [6587](https://github.com/hackforla/website/issues/6587#issuecomment-2060085599) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:53:13Z,- t-will-gillis closed issue as not planned: [6587](https://github.com/hackforla/website/issues/6587#event-12498335047) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:53:40Z,- t-will-gillis commented on issue: [6588](https://github.com/hackforla/website/issues/6588#issuecomment-2060085902) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:53:40Z,- t-will-gillis closed issue as not planned: [6588](https://github.com/hackforla/website/issues/6588#event-12498338613) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:54:10Z,- t-will-gillis commented on issue: [6589](https://github.com/hackforla/website/issues/6589#issuecomment-2060086199) at 2024-04-16 04:54 PM PDT -t-will-gillis,2024-04-16T23:54:10Z,- t-will-gillis closed issue as not planned: [6589](https://github.com/hackforla/website/issues/6589#event-12498342627) at 2024-04-16 04:54 PM PDT -t-will-gillis,2024-04-16T23:55:20Z,- t-will-gillis commented on issue: [6541](https://github.com/hackforla/website/issues/6541#issuecomment-2060086988) at 2024-04-16 04:55 PM PDT -t-will-gillis,2024-04-16T23:55:20Z,- t-will-gillis closed issue as completed: [6541](https://github.com/hackforla/website/issues/6541#event-12498352379) at 2024-04-16 04:55 PM PDT -t-will-gillis,2024-04-17T17:34:39Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2061846030) at 2024-04-17 10:34 AM PDT -t-will-gillis,2024-04-17T18:09:03Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2061914180) at 2024-04-17 11:09 AM PDT -t-will-gillis,2024-04-17T23:38:06Z,- t-will-gillis closed issue by PR 6503: [5059](https://github.com/hackforla/website/issues/5059#event-12515933176) at 2024-04-17 04:38 PM PDT -t-will-gillis,2024-04-17T23:51:41Z,- t-will-gillis submitted pull request review: [6656](https://github.com/hackforla/website/pull/6656#pullrequestreview-2007561491) at 2024-04-17 04:51 PM PDT -t-will-gillis,2024-04-18T19:05:28Z,- t-will-gillis unassigned from issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2061846030) at 2024-04-18 12:05 PM PDT -t-will-gillis,2024-04-18T19:05:39Z,- t-will-gillis assigned to issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2061846030) at 2024-04-18 12:05 PM PDT -t-will-gillis,2024-04-18T19:06:03Z,- t-will-gillis unassigned from issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064982041) at 2024-04-18 12:06 PM PDT -t-will-gillis,2024-04-18T21:14:36Z,- t-will-gillis submitted pull request review: [6681](https://github.com/hackforla/website/pull/6681#pullrequestreview-2009913354) at 2024-04-18 02:14 PM PDT -t-will-gillis,2024-04-18T21:14:45Z,- t-will-gillis closed issue by PR 6681: [6179](https://github.com/hackforla/website/issues/6179#event-12529163671) at 2024-04-18 02:14 PM PDT -t-will-gillis,2024-04-18T22:30:53Z,- t-will-gillis opened issue: [6684](https://github.com/hackforla/website/issues/6684) at 2024-04-18 03:30 PM PDT -t-will-gillis,2024-04-18T22:32:20Z,- t-will-gillis commented on issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2065433222) at 2024-04-18 03:32 PM PDT -t-will-gillis,2024-04-18T22:32:21Z,- t-will-gillis closed issue as completed: [6218](https://github.com/hackforla/website/issues/6218#event-12529943064) at 2024-04-18 03:32 PM PDT -t-will-gillis,2024-04-18T23:05:07Z,- t-will-gillis commented on issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-2065461586) at 2024-04-18 04:05 PM PDT -t-will-gillis,2024-04-18T23:05:07Z,- t-will-gillis closed issue as completed: [4703](https://github.com/hackforla/website/issues/4703#event-12530206478) at 2024-04-18 04:05 PM PDT -t-will-gillis,2024-04-20T03:07:11Z,- t-will-gillis commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067527628) at 2024-04-19 08:07 PM PDT -t-will-gillis,2024-04-20T17:07:19Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2067731503) at 2024-04-20 10:07 AM PDT -t-will-gillis,2024-04-20T23:35:13Z,- t-will-gillis commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2067814436) at 2024-04-20 04:35 PM PDT -t-will-gillis,2024-04-21T17:37:33Z,- t-will-gillis closed issue by PR 6651: [6622](https://github.com/hackforla/website/issues/6622#event-12551509117) at 2024-04-21 10:37 AM PDT -t-will-gillis,2024-04-21T18:07:23Z,- t-will-gillis submitted pull request review: [6682](https://github.com/hackforla/website/pull/6682#pullrequestreview-2013491136) at 2024-04-21 11:07 AM PDT -t-will-gillis,2024-04-21T18:07:45Z,- t-will-gillis closed issue by PR 6682: [6191](https://github.com/hackforla/website/issues/6191#event-12551593504) at 2024-04-21 11:07 AM PDT -t-will-gillis,2024-04-22T01:46:21Z,- t-will-gillis closed issue by PR 6694: [6182](https://github.com/hackforla/website/issues/6182#event-12552820992) at 2024-04-21 06:46 PM PDT -t-will-gillis,2024-04-22T01:50:14Z,- t-will-gillis closed issue by PR 6693: [6234](https://github.com/hackforla/website/issues/6234#event-12552841730) at 2024-04-21 06:50 PM PDT -t-will-gillis,2024-04-22T03:49:39Z,- t-will-gillis submitted pull request review: [6685](https://github.com/hackforla/website/pull/6685#pullrequestreview-2013712651) at 2024-04-21 08:49 PM PDT -t-will-gillis,2024-04-23T01:49:55Z,- t-will-gillis assigned to issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2046334159) at 2024-04-22 06:49 PM PDT -t-will-gillis,2024-04-23T03:11:28Z,- t-will-gillis commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2071328184) at 2024-04-22 08:11 PM PDT -t-will-gillis,2024-04-24T05:34:21Z,- t-will-gillis commented on issue: [6726](https://github.com/hackforla/website/issues/6726#issuecomment-2074067269) at 2024-04-23 10:34 PM PDT -t-will-gillis,2024-04-24T05:34:21Z,- t-will-gillis closed issue as not planned: [6726](https://github.com/hackforla/website/issues/6726#event-12585678605) at 2024-04-23 10:34 PM PDT -t-will-gillis,2024-04-24T22:27:00Z,- t-will-gillis commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2075954004) at 2024-04-24 03:27 PM PDT -t-will-gillis,2024-04-25T20:35:41Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078129842) at 2024-04-25 01:35 PM PDT -t-will-gillis,2024-04-25T23:27:22Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078329085) at 2024-04-25 04:27 PM PDT -t-will-gillis,2024-04-27T01:59:32Z,- t-will-gillis commented on issue: [6664](https://github.com/hackforla/website/issues/6664#issuecomment-2080316543) at 2024-04-26 06:59 PM PDT -t-will-gillis,2024-04-27T01:59:32Z,- t-will-gillis closed issue as completed: [6664](https://github.com/hackforla/website/issues/6664#event-12629769416) at 2024-04-26 06:59 PM PDT -t-will-gillis,2024-04-27T02:00:46Z,- t-will-gillis commented on issue: [6663](https://github.com/hackforla/website/issues/6663#issuecomment-2080316914) at 2024-04-26 07:00 PM PDT -t-will-gillis,2024-04-27T02:00:46Z,- t-will-gillis closed issue as completed: [6663](https://github.com/hackforla/website/issues/6663#event-12629771591) at 2024-04-26 07:00 PM PDT -t-will-gillis,2024-04-27T02:36:03Z,- t-will-gillis commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2080328458) at 2024-04-26 07:36 PM PDT -t-will-gillis,2024-04-28T02:29:47Z,- t-will-gillis submitted pull request review: [6685](https://github.com/hackforla/website/pull/6685#pullrequestreview-2026870837) at 2024-04-27 07:29 PM PDT -t-will-gillis,2024-04-28T03:57:34Z,- t-will-gillis submitted pull request review: [6685](https://github.com/hackforla/website/pull/6685#pullrequestreview-2026880102) at 2024-04-27 08:57 PM PDT -t-will-gillis,2024-04-28T03:57:53Z,- t-will-gillis closed issue by PR 6685: [5182](https://github.com/hackforla/website/issues/5182#event-12633706424) at 2024-04-27 08:57 PM PDT -t-will-gillis,2024-04-28T16:40:41Z,- t-will-gillis closed issue by PR 6712: [6683](https://github.com/hackforla/website/issues/6683#event-12635284552) at 2024-04-28 09:40 AM PDT -t-will-gillis,2024-04-28T16:43:46Z,- t-will-gillis commented on issue: [6290](https://github.com/hackforla/website/issues/6290#issuecomment-2081548677) at 2024-04-28 09:43 AM PDT -t-will-gillis,2024-04-28T16:43:46Z,- t-will-gillis closed issue as completed: [6290](https://github.com/hackforla/website/issues/6290#event-12635289871) at 2024-04-28 09:43 AM PDT -t-will-gillis,2024-04-28T16:50:25Z,- t-will-gillis submitted pull request review: [6744](https://github.com/hackforla/website/pull/6744#pullrequestreview-2027179389) at 2024-04-28 09:50 AM PDT -t-will-gillis,2024-04-28T16:54:02Z,- t-will-gillis submitted pull request review: [6745](https://github.com/hackforla/website/pull/6745#pullrequestreview-2027179792) at 2024-04-28 09:54 AM PDT -t-will-gillis,2024-04-28T16:54:20Z,- t-will-gillis closed issue by PR 6745: [6684](https://github.com/hackforla/website/issues/6684#event-12635310152) at 2024-04-28 09:54 AM PDT -t-will-gillis,2024-04-28T19:28:38Z,- t-will-gillis submitted pull request review: [6744](https://github.com/hackforla/website/pull/6744#pullrequestreview-2027257472) at 2024-04-28 12:28 PM PDT -t-will-gillis,2024-04-28T19:29:03Z,- t-will-gillis closed issue by PR 6744: [6238](https://github.com/hackforla/website/issues/6238#event-12635653165) at 2024-04-28 12:29 PM PDT -t-will-gillis,2024-04-28T19:40:55Z,- t-will-gillis commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2081623771) at 2024-04-28 12:40 PM PDT -t-will-gillis,2024-04-28T19:41:10Z,- t-will-gillis commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2081624063) at 2024-04-28 12:41 PM PDT -t-will-gillis,2024-04-28T19:41:25Z,- t-will-gillis commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2081624345) at 2024-04-28 12:41 PM PDT -t-will-gillis,2024-04-28T19:41:43Z,- t-will-gillis commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2081624709) at 2024-04-28 12:41 PM PDT -t-will-gillis,2024-04-28T19:42:03Z,- t-will-gillis commented on pull request: [6746](https://github.com/hackforla/website/pull/6746#issuecomment-2081625195) at 2024-04-28 12:42 PM PDT -t-will-gillis,2024-04-28T23:04:20Z,- t-will-gillis submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2027399323) at 2024-04-28 04:04 PM PDT -t-will-gillis,2024-04-29T18:25:25Z,- t-will-gillis commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2083381915) at 2024-04-29 11:25 AM PDT -t-will-gillis,2024-04-29T18:25:38Z,- t-will-gillis closed issue by PR 6772: [5847](https://github.com/hackforla/website/issues/5847#event-12647331115) at 2024-04-29 11:25 AM PDT -t-will-gillis,2024-04-30T00:03:12Z,- t-will-gillis commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2083899622) at 2024-04-29 05:03 PM PDT -t-will-gillis,2024-04-30T00:40:10Z,- t-will-gillis commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2083966644) at 2024-04-29 05:40 PM PDT -t-will-gillis,2024-04-30T01:19:50Z,- t-will-gillis assigned to issue: [4932](https://github.com/hackforla/website/issues/4932) at 2024-04-29 06:19 PM PDT -t-will-gillis,2024-04-30T01:29:23Z,- t-will-gillis commented on issue: [4932](https://github.com/hackforla/website/issues/4932#issuecomment-2084085731) at 2024-04-29 06:29 PM PDT -t-will-gillis,2024-04-30T03:04:54Z,- t-will-gillis commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2084290326) at 2024-04-29 08:04 PM PDT -t-will-gillis,2024-04-30T03:05:29Z,- t-will-gillis closed issue by PR 6767: [5846](https://github.com/hackforla/website/issues/5846#event-12651639495) at 2024-04-29 08:05 PM PDT -t-will-gillis,2024-04-30T04:47:12Z,- t-will-gillis commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2084372988) at 2024-04-29 09:47 PM PDT -t-will-gillis,2024-04-30T04:57:44Z,- t-will-gillis commented on issue: [6778](https://github.com/hackforla/website/issues/6778#issuecomment-2084382243) at 2024-04-29 09:57 PM PDT -t-will-gillis,2024-04-30T21:03:08Z,- t-will-gillis submitted pull request review: [6790](https://github.com/hackforla/website/pull/6790#pullrequestreview-2032518823) at 2024-04-30 02:03 PM PDT -t-will-gillis,2024-04-30T21:51:35Z,- t-will-gillis submitted pull request review: [6790](https://github.com/hackforla/website/pull/6790#pullrequestreview-2032587526) at 2024-04-30 02:51 PM PDT -t-will-gillis,2024-04-30T22:00:02Z,- t-will-gillis opened pull request: [6793](https://github.com/hackforla/website/pull/6793) at 2024-04-30 03:00 PM PDT -t-will-gillis,2024-04-30T22:04:10Z,- t-will-gillis opened issue: [6794](https://github.com/hackforla/website/issues/6794) at 2024-04-30 03:04 PM PDT -t-will-gillis,2024-04-30T22:04:16Z,- t-will-gillis assigned to issue: [6794](https://github.com/hackforla/website/issues/6794) at 2024-04-30 03:04 PM PDT -t-will-gillis,2024-04-30T22:08:00Z,- t-will-gillis opened pull request: [6795](https://github.com/hackforla/website/pull/6795) at 2024-04-30 03:08 PM PDT -t-will-gillis,2024-04-30T22:09:52Z,- t-will-gillis pull request closed w/o merging: [6793](https://github.com/hackforla/website/pull/6793#event-12664539136) at 2024-04-30 03:09 PM PDT -t-will-gillis,2024-04-30T22:15:14Z,- t-will-gillis commented on pull request: [6790](https://github.com/hackforla/website/pull/6790#issuecomment-2087554978) at 2024-04-30 03:15 PM PDT -t-will-gillis,2024-04-30T22:15:25Z,- t-will-gillis pull request closed w/o merging: [6795](https://github.com/hackforla/website/pull/6795#event-12664585242) at 2024-04-30 03:15 PM PDT -t-will-gillis,2024-04-30T22:17:26Z,- t-will-gillis closed issue as not planned: [6794](https://github.com/hackforla/website/issues/6794#event-12664602541) at 2024-04-30 03:17 PM PDT -t-will-gillis,2024-04-30T22:22:23Z,- t-will-gillis commented on issue: [6778](https://github.com/hackforla/website/issues/6778#issuecomment-2087575980) at 2024-04-30 03:22 PM PDT -t-will-gillis,2024-04-30T22:22:23Z,- t-will-gillis closed issue as completed: [6778](https://github.com/hackforla/website/issues/6778#event-12664641967) at 2024-04-30 03:22 PM PDT -t-will-gillis,2024-05-01T04:01:03Z,- t-will-gillis opened issue: [6797](https://github.com/hackforla/website/issues/6797) at 2024-04-30 09:01 PM PDT -t-will-gillis,2024-05-01T04:01:05Z,- t-will-gillis assigned to issue: [6797](https://github.com/hackforla/website/issues/6797) at 2024-04-30 09:01 PM PDT -t-will-gillis,2024-05-01T04:04:41Z,- t-will-gillis commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2087943492) at 2024-04-30 09:04 PM PDT -t-will-gillis,2024-05-01T21:43:15Z,- t-will-gillis opened issue: [6803](https://github.com/hackforla/website/issues/6803) at 2024-05-01 02:43 PM PDT -t-will-gillis,2024-05-01T21:44:52Z,- t-will-gillis assigned to issue: [6803](https://github.com/hackforla/website/issues/6803) at 2024-05-01 02:44 PM PDT -t-will-gillis,2024-05-01T22:03:10Z,- t-will-gillis opened pull request: [6804](https://github.com/hackforla/website/pull/6804) at 2024-05-01 03:03 PM PDT -t-will-gillis,2024-05-02T02:56:41Z,- t-will-gillis submitted pull request review: [6785](https://github.com/hackforla/website/pull/6785#pullrequestreview-2034731953) at 2024-05-01 07:56 PM PDT -t-will-gillis,2024-05-03T01:40:16Z,- t-will-gillis commented on pull request: [6804](https://github.com/hackforla/website/pull/6804#issuecomment-2092007281) at 2024-05-02 06:40 PM PDT -t-will-gillis,2024-05-03T01:40:25Z,- t-will-gillis pull request merged: [6804](https://github.com/hackforla/website/pull/6804#event-12690936004) at 2024-05-02 06:40 PM PDT -t-will-gillis,2024-05-03T01:40:26Z,- t-will-gillis closed issue by PR 6804: [6803](https://github.com/hackforla/website/issues/6803#event-12690936052) at 2024-05-02 06:40 PM PDT -t-will-gillis,2024-05-03T22:14:15Z,- t-will-gillis submitted pull request review: [6811](https://github.com/hackforla/website/pull/6811#pullrequestreview-2039057429) at 2024-05-03 03:14 PM PDT -t-will-gillis,2024-05-03T22:16:04Z,- t-will-gillis closed issue by PR 6811: [6555](https://github.com/hackforla/website/issues/6555#event-12701670694) at 2024-05-03 03:16 PM PDT -t-will-gillis,2024-05-03T22:42:56Z,- t-will-gillis assigned to issue: [6662](https://github.com/hackforla/website/issues/6662) at 2024-05-03 03:42 PM PDT -t-will-gillis,2024-05-03T22:43:07Z,- t-will-gillis unassigned from issue: [6662](https://github.com/hackforla/website/issues/6662) at 2024-05-03 03:43 PM PDT -t-will-gillis,2024-05-03T22:43:28Z,- t-will-gillis commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2093853155) at 2024-05-03 03:43 PM PDT -t-will-gillis,2024-05-04T00:05:32Z,- t-will-gillis commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2093900585) at 2024-05-03 05:05 PM PDT -t-will-gillis,2024-05-05T16:42:32Z,- t-will-gillis commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2094872390) at 2024-05-05 09:42 AM PDT -t-will-gillis,2024-05-05T16:44:58Z,- t-will-gillis commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2094873105) at 2024-05-05 09:44 AM PDT -t-will-gillis,2024-05-05T17:18:27Z,- t-will-gillis submitted pull request review: [6813](https://github.com/hackforla/website/pull/6813#pullrequestreview-2039749201) at 2024-05-05 10:18 AM PDT -t-will-gillis,2024-05-06T04:56:16Z,- t-will-gillis opened issue: [6823](https://github.com/hackforla/website/issues/6823) at 2024-05-05 09:56 PM PDT -t-will-gillis,2024-05-06T18:31:14Z,- t-will-gillis submitted pull request review: [6822](https://github.com/hackforla/website/pull/6822#pullrequestreview-2041418641) at 2024-05-06 11:31 AM PDT -t-will-gillis,2024-05-06T18:31:37Z,- t-will-gillis closed issue by PR 6822: [6662](https://github.com/hackforla/website/issues/6662#event-12718842899) at 2024-05-06 11:31 AM PDT -t-will-gillis,2024-05-06T19:31:22Z,- t-will-gillis commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2096758853) at 2024-05-06 12:31 PM PDT -t-will-gillis,2024-05-06T19:31:22Z,- t-will-gillis reopened issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2096758853) at 2024-05-06 12:31 PM PDT -t-will-gillis,2024-05-07T02:10:44Z,- t-will-gillis submitted pull request review: [6824](https://github.com/hackforla/website/pull/6824#pullrequestreview-2041939433) at 2024-05-06 07:10 PM PDT -t-will-gillis,2024-05-07T02:10:54Z,- t-will-gillis closed issue by PR 6824: [6665](https://github.com/hackforla/website/issues/6665#event-12722396021) at 2024-05-06 07:10 PM PDT -t-will-gillis,2024-05-07T04:12:50Z,- t-will-gillis submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2042026036) at 2024-05-06 09:12 PM PDT -t-will-gillis,2024-05-08T02:26:09Z,- t-will-gillis opened issue: [6835](https://github.com/hackforla/website/issues/6835) at 2024-05-07 07:26 PM PDT -t-will-gillis,2024-05-08T02:27:17Z,- t-will-gillis assigned to issue: [6835](https://github.com/hackforla/website/issues/6835) at 2024-05-07 07:27 PM PDT -t-will-gillis,2024-05-08T02:31:09Z,- t-will-gillis opened pull request: [6836](https://github.com/hackforla/website/pull/6836) at 2024-05-07 07:31 PM PDT -t-will-gillis,2024-05-08T02:59:02Z,- t-will-gillis opened issue: [6837](https://github.com/hackforla/website/issues/6837) at 2024-05-07 07:59 PM PDT -t-will-gillis,2024-05-08T03:34:31Z,- t-will-gillis pull request merged: [6836](https://github.com/hackforla/website/pull/6836#event-12737754459) at 2024-05-07 08:34 PM PDT -t-will-gillis,2024-05-08T19:22:15Z,- t-will-gillis submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2046472671) at 2024-05-08 12:22 PM PDT -t-will-gillis,2024-05-09T22:55:59Z,- t-will-gillis assigned to issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2101871156) at 2024-05-09 03:55 PM PDT -t-will-gillis,2024-05-09T23:40:46Z,- t-will-gillis opened issue: [6843](https://github.com/hackforla/website/issues/6843) at 2024-05-09 04:40 PM PDT -t-will-gillis,2024-05-11T01:32:29Z,- t-will-gillis opened issue: [6849](https://github.com/hackforla/website/issues/6849) at 2024-05-10 06:32 PM PDT -t-will-gillis,2024-05-11T01:49:45Z,- t-will-gillis commented on issue: [6797](https://github.com/hackforla/website/issues/6797#issuecomment-2105442128) at 2024-05-10 06:49 PM PDT -t-will-gillis,2024-05-11T01:49:45Z,- t-will-gillis closed issue as completed: [6797](https://github.com/hackforla/website/issues/6797#event-12775081488) at 2024-05-10 06:49 PM PDT -t-will-gillis,2024-05-11T21:54:25Z,- t-will-gillis commented on issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-2106039937) at 2024-05-11 02:54 PM PDT -t-will-gillis,2024-05-11T21:55:45Z,- t-will-gillis commented on issue: [6807](https://github.com/hackforla/website/issues/6807#issuecomment-2106040183) at 2024-05-11 02:55 PM PDT -t-will-gillis,2024-05-13T22:15:20Z,- t-will-gillis commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2108894911) at 2024-05-13 03:15 PM PDT -t-will-gillis,2024-05-15T18:04:19Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2113140949) at 2024-05-15 11:04 AM PDT -t-will-gillis,2024-05-16T17:38:02Z,- t-will-gillis commented on issue: [6718](https://github.com/hackforla/website/issues/6718#issuecomment-2115839260) at 2024-05-16 10:38 AM PDT -t-will-gillis,2024-05-16T19:21:08Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2116018334) at 2024-05-16 12:21 PM PDT -t-will-gillis,2024-05-16T19:33:40Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2116040417) at 2024-05-16 12:33 PM PDT -t-will-gillis,2024-05-16T20:05:22Z,- t-will-gillis submitted pull request review: [6856](https://github.com/hackforla/website/pull/6856#pullrequestreview-2061770147) at 2024-05-16 01:05 PM PDT -t-will-gillis,2024-05-17T23:25:22Z,- t-will-gillis commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-2118484360) at 2024-05-17 04:25 PM PDT -t-will-gillis,2024-05-17T23:29:21Z,- t-will-gillis commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-2118486292) at 2024-05-17 04:29 PM PDT -t-will-gillis,2024-05-18T03:55:42Z,- t-will-gillis commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-2118626696) at 2024-05-17 08:55 PM PDT -t-will-gillis,2024-05-18T03:55:42Z,- t-will-gillis closed issue as completed: [6399](https://github.com/hackforla/website/issues/6399#event-12854622883) at 2024-05-17 08:55 PM PDT -t-will-gillis,2024-05-18T03:58:37Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2118627260) at 2024-05-17 08:58 PM PDT -t-will-gillis,2024-05-19T17:03:14Z,- t-will-gillis commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2119301322) at 2024-05-19 10:03 AM PDT -t-will-gillis,2024-05-19T18:18:53Z,- t-will-gillis unassigned from issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2103571357) at 2024-05-19 11:18 AM PDT -t-will-gillis,2024-05-19T22:19:33Z,- t-will-gillis commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2119377587) at 2024-05-19 03:19 PM PDT -t-will-gillis,2024-05-19T22:25:35Z,- t-will-gillis commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2119379100) at 2024-05-19 03:25 PM PDT -t-will-gillis,2024-05-19T22:28:03Z,- t-will-gillis commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2119379659) at 2024-05-19 03:28 PM PDT -t-will-gillis,2024-05-19T22:29:29Z,- t-will-gillis commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2119379952) at 2024-05-19 03:29 PM PDT -t-will-gillis,2024-05-19T22:32:17Z,- t-will-gillis commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2119380584) at 2024-05-19 03:32 PM PDT -t-will-gillis,2024-05-19T22:44:40Z,- t-will-gillis commented on issue: [6721](https://github.com/hackforla/website/issues/6721#issuecomment-2119383587) at 2024-05-19 03:44 PM PDT -t-will-gillis,2024-05-20T05:18:26Z,- t-will-gillis submitted pull request review: [6853](https://github.com/hackforla/website/pull/6853#pullrequestreview-2065364216) at 2024-05-19 10:18 PM PDT -t-will-gillis,2024-05-21T04:02:58Z,- t-will-gillis opened issue: [6867](https://github.com/hackforla/website/issues/6867) at 2024-05-20 09:02 PM PDT -t-will-gillis,2024-05-21T04:16:32Z,- t-will-gillis opened issue: [6868](https://github.com/hackforla/website/issues/6868) at 2024-05-20 09:16 PM PDT -t-will-gillis,2024-05-21T04:17:08Z,- t-will-gillis commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2121707414) at 2024-05-20 09:17 PM PDT -t-will-gillis,2024-05-21T04:18:22Z,- t-will-gillis commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2121708429) at 2024-05-20 09:18 PM PDT -t-will-gillis,2024-05-21T05:00:07Z,- t-will-gillis commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2121743332) at 2024-05-20 10:00 PM PDT -t-will-gillis,2024-05-21T20:43:53Z,- t-will-gillis unassigned from issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2097060377) at 2024-05-21 01:43 PM PDT -t-will-gillis,2024-05-22T03:00:42Z,- t-will-gillis assigned to issue: [6868](https://github.com/hackforla/website/issues/6868) at 2024-05-21 08:00 PM PDT -t-will-gillis,2024-05-22T03:24:18Z,- t-will-gillis opened pull request: [6883](https://github.com/hackforla/website/pull/6883) at 2024-05-21 08:24 PM PDT -t-will-gillis,2024-05-22T18:14:07Z,- t-will-gillis submitted pull request review: [6886](https://github.com/hackforla/website/pull/6886#pullrequestreview-2072004980) at 2024-05-22 11:14 AM PDT -t-will-gillis,2024-05-22T22:34:02Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2125884236) at 2024-05-22 03:34 PM PDT -t-will-gillis,2024-05-23T02:35:55Z,- t-will-gillis pull request merged: [6442](https://github.com/hackforla/website/pull/6442#event-12902618383) at 2024-05-22 07:35 PM PDT -t-will-gillis,2024-05-24T04:56:27Z,- t-will-gillis pull request merged: [6883](https://github.com/hackforla/website/pull/6883#event-12918669683) at 2024-05-23 09:56 PM PDT -t-will-gillis,2024-05-24T04:56:28Z,- t-will-gillis closed issue by PR 6883: [6868](https://github.com/hackforla/website/issues/6868#event-12918669824) at 2024-05-23 09:56 PM PDT -t-will-gillis,2024-05-25T02:23:50Z,- t-will-gillis submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2078322176) at 2024-05-24 07:23 PM PDT -t-will-gillis,2024-05-25T02:32:10Z,- t-will-gillis commented on pull request: [6895](https://github.com/hackforla/website/pull/6895#issuecomment-2130681526) at 2024-05-24 07:32 PM PDT -t-will-gillis,2024-05-25T02:40:48Z,- t-will-gillis submitted pull request review: [6893](https://github.com/hackforla/website/pull/6893#pullrequestreview-2078352282) at 2024-05-24 07:40 PM PDT -t-will-gillis,2024-05-25T16:56:03Z,- t-will-gillis closed issue by PR 6893: [6845](https://github.com/hackforla/website/issues/6845#event-12933526342) at 2024-05-25 09:56 AM PDT -t-will-gillis,2024-05-26T04:41:26Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2132063699) at 2024-05-25 09:41 PM PDT -t-will-gillis,2024-05-26T04:41:26Z,- t-will-gillis closed issue as completed: [6643](https://github.com/hackforla/website/issues/6643#event-12935008242) at 2024-05-25 09:41 PM PDT -t-will-gillis,2024-05-26T05:00:39Z,- t-will-gillis commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2132066814) at 2024-05-25 10:00 PM PDT -t-will-gillis,2024-05-26T16:54:10Z,- t-will-gillis submitted pull request review: [6894](https://github.com/hackforla/website/pull/6894#pullrequestreview-2079732396) at 2024-05-26 09:54 AM PDT -t-will-gillis,2024-05-26T16:54:26Z,- t-will-gillis closed issue by PR 6894: [6799](https://github.com/hackforla/website/issues/6799#event-12937456323) at 2024-05-26 09:54 AM PDT -t-will-gillis,2024-05-26T17:02:21Z,- t-will-gillis commented on pull request: [6896](https://github.com/hackforla/website/pull/6896#issuecomment-2132286701) at 2024-05-26 10:02 AM PDT -t-will-gillis,2024-05-26T17:14:27Z,- t-will-gillis commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2132289886) at 2024-05-26 10:14 AM PDT -t-will-gillis,2024-05-27T04:51:23Z,- t-will-gillis submitted pull request review: [6899](https://github.com/hackforla/website/pull/6899#pullrequestreview-2079980825) at 2024-05-26 09:51 PM PDT -t-will-gillis,2024-05-27T04:51:34Z,- t-will-gillis closed issue by PR 6899: [6736](https://github.com/hackforla/website/issues/6736#event-12940373325) at 2024-05-26 09:51 PM PDT -t-will-gillis,2024-05-27T04:53:21Z,- t-will-gillis closed issue by PR 6896: [6721](https://github.com/hackforla/website/issues/6721#event-12940383759) at 2024-05-26 09:53 PM PDT -t-will-gillis,2024-05-27T15:32:02Z,- t-will-gillis submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2081161381) at 2024-05-27 08:32 AM PDT -t-will-gillis,2024-05-27T18:30:39Z,- t-will-gillis submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2081351938) at 2024-05-27 11:30 AM PDT -t-will-gillis,2024-05-27T18:34:09Z,- t-will-gillis commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2133921204) at 2024-05-27 11:34 AM PDT -t-will-gillis,2024-05-27T18:36:21Z,- t-will-gillis commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2133923014) at 2024-05-27 11:36 AM PDT -t-will-gillis,2024-05-28T21:48:02Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2136163373) at 2024-05-28 02:48 PM PDT -t-will-gillis,2024-05-29T02:43:43Z,- t-will-gillis assigned to issue: [6843](https://github.com/hackforla/website/issues/6843) at 2024-05-28 07:43 PM PDT -t-will-gillis,2024-05-29T02:48:31Z,- t-will-gillis closed issue by PR 6870: [6849](https://github.com/hackforla/website/issues/6849#event-12965140437) at 2024-05-28 07:48 PM PDT -t-will-gillis,2024-05-29T03:17:51Z,- t-will-gillis opened pull request: [6907](https://github.com/hackforla/website/pull/6907) at 2024-05-28 08:17 PM PDT -t-will-gillis,2024-05-30T03:18:19Z,- t-will-gillis submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2087090283) at 2024-05-29 08:18 PM PDT -t-will-gillis,2024-05-30T16:11:27Z,- t-will-gillis closed issue by PR 6898: [6723](https://github.com/hackforla/website/issues/6723#event-12988600428) at 2024-05-30 09:11 AM PDT -t-will-gillis,2024-05-31T15:06:11Z,- t-will-gillis pull request merged: [6907](https://github.com/hackforla/website/pull/6907#event-13002074216) at 2024-05-31 08:06 AM PDT -t-will-gillis,2024-05-31T15:06:12Z,- t-will-gillis closed issue by PR 6907: [6843](https://github.com/hackforla/website/issues/6843#event-13002074477) at 2024-05-31 08:06 AM PDT -t-will-gillis,2024-05-31T21:51:11Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2143025529) at 2024-05-31 02:51 PM PDT -t-will-gillis,2024-06-01T20:21:10Z,- t-will-gillis opened issue: [6922](https://github.com/hackforla/website/issues/6922) at 2024-06-01 01:21 PM PDT -t-will-gillis,2024-06-01T20:21:31Z,- t-will-gillis assigned to issue: [6922](https://github.com/hackforla/website/issues/6922) at 2024-06-01 01:21 PM PDT -t-will-gillis,2024-06-01T20:28:27Z,- t-will-gillis opened pull request: [6923](https://github.com/hackforla/website/pull/6923) at 2024-06-01 01:28 PM PDT -t-will-gillis,2024-06-01T21:04:35Z,- t-will-gillis commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2143589285) at 2024-06-01 02:04 PM PDT -t-will-gillis,2024-06-02T02:23:59Z,- t-will-gillis reopened pull request: [6442](https://github.com/hackforla/website/pull/6442#event-12902618383) at 2024-06-01 07:23 PM PDT -t-will-gillis,2024-06-02T05:08:05Z,- t-will-gillis closed issue as completed: [4932](https://github.com/hackforla/website/issues/4932#event-13010801282) at 2024-06-01 10:08 PM PDT -t-will-gillis,2024-06-02T05:52:48Z,- t-will-gillis pull request merged: [6923](https://github.com/hackforla/website/pull/6923#event-13010856858) at 2024-06-01 10:52 PM PDT -t-will-gillis,2024-06-02T17:21:47Z,- t-will-gillis opened issue: [6927](https://github.com/hackforla/website/issues/6927) at 2024-06-02 10:21 AM PDT -t-will-gillis,2024-06-02T17:22:02Z,- t-will-gillis assigned to issue: [6927](https://github.com/hackforla/website/issues/6927) at 2024-06-02 10:22 AM PDT -t-will-gillis,2024-06-02T17:35:16Z,- t-will-gillis opened pull request: [6928](https://github.com/hackforla/website/pull/6928) at 2024-06-02 10:35 AM PDT -t-will-gillis,2024-06-02T17:44:07Z,- t-will-gillis closed issue by PR 6917: [6730](https://github.com/hackforla/website/issues/6730#event-13012612410) at 2024-06-02 10:44 AM PDT -t-will-gillis,2024-06-02T17:47:59Z,- t-will-gillis closed issue by PR 6901: [6733](https://github.com/hackforla/website/issues/6733#event-13012621834) at 2024-06-02 10:47 AM PDT -t-will-gillis,2024-06-02T18:33:52Z,- t-will-gillis opened issue: [6929](https://github.com/hackforla/website/issues/6929) at 2024-06-02 11:33 AM PDT -t-will-gillis,2024-06-02T18:36:38Z,- t-will-gillis assigned to issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2143980504) at 2024-06-02 11:36 AM PDT -t-will-gillis,2024-06-04T02:56:00Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2146474235) at 2024-06-03 07:56 PM PDT -t-will-gillis,2024-06-04T04:42:23Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2146599717) at 2024-06-03 09:42 PM PDT -t-will-gillis,2024-06-05T01:53:11Z,- t-will-gillis pull request merged: [6928](https://github.com/hackforla/website/pull/6928#event-13044041671) at 2024-06-04 06:53 PM PDT -t-will-gillis,2024-06-05T01:53:12Z,- t-will-gillis closed issue by PR 6928: [6927](https://github.com/hackforla/website/issues/6927#event-13044041806) at 2024-06-04 06:53 PM PDT -t-will-gillis,2024-06-05T20:10:59Z,- t-will-gillis commented on pull request: [6959](https://github.com/hackforla/website/pull/6959#issuecomment-2150877088) at 2024-06-05 01:10 PM PDT -t-will-gillis,2024-06-06T21:28:10Z,- t-will-gillis opened issue: [6968](https://github.com/hackforla/website/issues/6968) at 2024-06-06 02:28 PM PDT -t-will-gillis,2024-06-06T21:28:18Z,- t-will-gillis assigned to issue: [6968](https://github.com/hackforla/website/issues/6968) at 2024-06-06 02:28 PM PDT -t-will-gillis,2024-06-06T21:29:13Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2153437947) at 2024-06-06 02:29 PM PDT -t-will-gillis,2024-06-07T17:46:07Z,- t-will-gillis assigned to issue: [6840](https://github.com/hackforla/website/issues/6840) at 2024-06-07 10:46 AM PDT -t-will-gillis,2024-06-09T18:23:11Z,- t-will-gillis commented on issue: [6955](https://github.com/hackforla/website/issues/6955#issuecomment-2156727814) at 2024-06-09 11:23 AM PDT -t-will-gillis,2024-06-09T18:23:11Z,- t-will-gillis closed issue as not planned: [6955](https://github.com/hackforla/website/issues/6955#event-13092198935) at 2024-06-09 11:23 AM PDT -t-will-gillis,2024-06-10T03:09:29Z,- t-will-gillis submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2106538074) at 2024-06-09 08:09 PM PDT -t-will-gillis,2024-06-10T03:16:58Z,- t-will-gillis submitted pull request review: [6965](https://github.com/hackforla/website/pull/6965#pullrequestreview-2106542844) at 2024-06-09 08:16 PM PDT -t-will-gillis,2024-06-10T03:17:16Z,- t-will-gillis closed issue by PR 6965: [6861](https://github.com/hackforla/website/issues/6861#event-13094260190) at 2024-06-09 08:17 PM PDT -t-will-gillis,2024-06-10T03:19:06Z,- t-will-gillis commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2157119440) at 2024-06-09 08:19 PM PDT -t-will-gillis,2024-06-10T03:44:44Z,- t-will-gillis submitted pull request review: [6974](https://github.com/hackforla/website/pull/6974#pullrequestreview-2106564462) at 2024-06-09 08:44 PM PDT -t-will-gillis,2024-06-10T03:46:51Z,- t-will-gillis closed issue by PR 6975: [5632](https://github.com/hackforla/website/issues/5632#event-13094456430) at 2024-06-09 08:46 PM PDT -t-will-gillis,2024-06-10T03:47:14Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2157146422) at 2024-06-09 08:47 PM PDT -t-will-gillis,2024-06-11T01:12:02Z,- t-will-gillis submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2109026748) at 2024-06-10 06:12 PM PDT -t-will-gillis,2024-06-11T04:50:49Z,- t-will-gillis submitted pull request review: [6974](https://github.com/hackforla/website/pull/6974#pullrequestreview-2109309036) at 2024-06-10 09:50 PM PDT -t-will-gillis,2024-06-12T01:55:50Z,- t-will-gillis submitted pull request review: [6974](https://github.com/hackforla/website/pull/6974#pullrequestreview-2111768319) at 2024-06-11 06:55 PM PDT -t-will-gillis,2024-06-12T01:55:58Z,- t-will-gillis closed issue by PR 6974: [6185](https://github.com/hackforla/website/issues/6185#event-13124721286) at 2024-06-11 06:55 PM PDT -t-will-gillis,2024-06-12T17:43:35Z,- t-will-gillis commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2163589618) at 2024-06-12 10:43 AM PDT -t-will-gillis,2024-06-12T17:59:43Z,- t-will-gillis opened issue: [6993](https://github.com/hackforla/website/issues/6993) at 2024-06-12 10:59 AM PDT -t-will-gillis,2024-06-12T18:01:54Z,- t-will-gillis opened issue: [6994](https://github.com/hackforla/website/issues/6994) at 2024-06-12 11:01 AM PDT -t-will-gillis,2024-06-12T18:03:07Z,- t-will-gillis assigned to issue: [6994](https://github.com/hackforla/website/issues/6994#issuecomment-2163620789) at 2024-06-12 11:03 AM PDT -t-will-gillis,2024-06-12T18:03:15Z,- t-will-gillis assigned to issue: [6993](https://github.com/hackforla/website/issues/6993) at 2024-06-12 11:03 AM PDT -t-will-gillis,2024-06-12T21:16:03Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2163915829) at 2024-06-12 02:16 PM PDT -t-will-gillis,2024-06-12T21:34:55Z,- t-will-gillis opened issue: [6995](https://github.com/hackforla/website/issues/6995) at 2024-06-12 02:34 PM PDT -t-will-gillis,2024-06-12T21:36:57Z,- t-will-gillis opened issue: [6996](https://github.com/hackforla/website/issues/6996) at 2024-06-12 02:36 PM PDT -t-will-gillis,2024-06-12T21:38:54Z,- t-will-gillis opened issue: [6997](https://github.com/hackforla/website/issues/6997) at 2024-06-12 02:38 PM PDT -t-will-gillis,2024-06-12T21:43:07Z,- t-will-gillis opened issue: [6998](https://github.com/hackforla/website/issues/6998) at 2024-06-12 02:43 PM PDT -t-will-gillis,2024-06-12T21:43:53Z,- t-will-gillis assigned to issue: [6995](https://github.com/hackforla/website/issues/6995) at 2024-06-12 02:43 PM PDT -t-will-gillis,2024-06-12T21:44:13Z,- t-will-gillis assigned to issue: [6996](https://github.com/hackforla/website/issues/6996) at 2024-06-12 02:44 PM PDT -t-will-gillis,2024-06-12T21:44:31Z,- t-will-gillis assigned to issue: [6997](https://github.com/hackforla/website/issues/6997) at 2024-06-12 02:44 PM PDT -t-will-gillis,2024-06-12T23:36:34Z,- t-will-gillis commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2164069959) at 2024-06-12 04:36 PM PDT -t-will-gillis,2024-06-12T23:40:03Z,- t-will-gillis assigned to issue: [6998](https://github.com/hackforla/website/issues/6998) at 2024-06-12 04:40 PM PDT -t-will-gillis,2024-06-13T00:14:29Z,- t-will-gillis commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2164121159) at 2024-06-12 05:14 PM PDT -t-will-gillis,2024-06-13T00:14:29Z,- t-will-gillis closed issue as completed: [6591](https://github.com/hackforla/website/issues/6591#event-13138669432) at 2024-06-12 05:14 PM PDT -t-will-gillis,2024-06-13T17:26:34Z,- t-will-gillis opened issue: [7000](https://github.com/hackforla/website/issues/7000) at 2024-06-13 10:26 AM PDT -t-will-gillis,2024-06-13T20:41:03Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2166731001) at 2024-06-13 01:41 PM PDT -t-will-gillis,2024-06-14T03:49:00Z,- t-will-gillis commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2167157849) at 2024-06-13 08:49 PM PDT -t-will-gillis,2024-06-14T16:11:25Z,- t-will-gillis commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2168342151) at 2024-06-14 09:11 AM PDT -t-will-gillis,2024-06-15T02:39:08Z,- t-will-gillis commented on pull request: [7003](https://github.com/hackforla/website/pull/7003#issuecomment-2169064969) at 2024-06-14 07:39 PM PDT -t-will-gillis,2024-06-15T03:53:11Z,- t-will-gillis submitted pull request review: [6971](https://github.com/hackforla/website/pull/6971#pullrequestreview-2119961543) at 2024-06-14 08:53 PM PDT -t-will-gillis,2024-06-16T04:56:46Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2171046356) at 2024-06-15 09:56 PM PDT -t-will-gillis,2024-06-16T19:08:13Z,- t-will-gillis commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2171817746) at 2024-06-16 12:08 PM PDT -t-will-gillis,2024-06-17T04:28:56Z,- t-will-gillis submitted pull request review: [6873](https://github.com/hackforla/website/pull/6873#pullrequestreview-2121834833) at 2024-06-16 09:28 PM PDT -t-will-gillis,2024-06-17T16:37:58Z,- t-will-gillis commented on issue: [6226](https://github.com/hackforla/website/issues/6226#issuecomment-2173862901) at 2024-06-17 09:37 AM PDT -t-will-gillis,2024-06-17T16:37:58Z,- t-will-gillis closed issue as completed: [6226](https://github.com/hackforla/website/issues/6226#event-13188534168) at 2024-06-17 09:37 AM PDT -t-will-gillis,2024-06-17T16:39:59Z,- t-will-gillis commented on issue: [6230](https://github.com/hackforla/website/issues/6230#issuecomment-2173866595) at 2024-06-17 09:39 AM PDT -t-will-gillis,2024-06-17T16:39:59Z,- t-will-gillis closed issue as completed: [6230](https://github.com/hackforla/website/issues/6230#event-13188556126) at 2024-06-17 09:39 AM PDT -t-will-gillis,2024-06-17T16:42:21Z,- t-will-gillis commented on issue: [6231](https://github.com/hackforla/website/issues/6231#issuecomment-2173871260) at 2024-06-17 09:42 AM PDT -t-will-gillis,2024-06-17T16:42:21Z,- t-will-gillis closed issue as completed: [6231](https://github.com/hackforla/website/issues/6231#event-13188583564) at 2024-06-17 09:42 AM PDT -t-will-gillis,2024-06-17T17:09:36Z,- t-will-gillis commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2173919677) at 2024-06-17 10:09 AM PDT -t-will-gillis,2024-06-18T00:54:00Z,- t-will-gillis assigned to issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2166731001) at 2024-06-17 05:54 PM PDT -t-will-gillis,2024-06-19T02:57:30Z,- t-will-gillis submitted pull request review: [7012](https://github.com/hackforla/website/pull/7012#pullrequestreview-2126910311) at 2024-06-18 07:57 PM PDT -t-will-gillis,2024-06-19T02:57:46Z,- t-will-gillis closed issue by PR 7012: [6866](https://github.com/hackforla/website/issues/6866#event-13209149732) at 2024-06-18 07:57 PM PDT -t-will-gillis,2024-06-19T04:18:59Z,- t-will-gillis commented on issue: [7000](https://github.com/hackforla/website/issues/7000#issuecomment-2177632234) at 2024-06-18 09:18 PM PDT -t-will-gillis,2024-06-19T04:18:59Z,- t-will-gillis closed issue as not planned: [7000](https://github.com/hackforla/website/issues/7000#event-13209581486) at 2024-06-18 09:18 PM PDT -t-will-gillis,2024-06-19T15:15:55Z,- t-will-gillis commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2178955899) at 2024-06-19 08:15 AM PDT -t-will-gillis,2024-06-19T15:15:55Z,- t-will-gillis reopened issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2178955899) at 2024-06-19 08:15 AM PDT -t-will-gillis,2024-06-19T15:48:59Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2179020527) at 2024-06-19 08:48 AM PDT -t-will-gillis,2024-06-20T21:54:39Z,- t-will-gillis opened issue: [7039](https://github.com/hackforla/website/issues/7039) at 2024-06-20 02:54 PM PDT -t-will-gillis,2024-06-21T03:56:18Z,- t-will-gillis submitted pull request review: [7036](https://github.com/hackforla/website/pull/7036#pullrequestreview-2131736355) at 2024-06-20 08:56 PM PDT -t-will-gillis,2024-06-22T01:09:12Z,- t-will-gillis reopened issue: [6794](https://github.com/hackforla/website/issues/6794#event-12664602541) at 2024-06-21 06:09 PM PDT -t-will-gillis,2024-06-22T02:31:54Z,- t-will-gillis closed issue as not planned: [6794](https://github.com/hackforla/website/issues/6794#event-13248386326) at 2024-06-21 07:31 PM PDT -t-will-gillis,2024-06-22T02:53:17Z,- t-will-gillis opened pull request: [7051](https://github.com/hackforla/website/pull/7051) at 2024-06-21 07:53 PM PDT -t-will-gillis,2024-06-22T20:48:26Z,- t-will-gillis commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2184185642) at 2024-06-22 01:48 PM PDT -t-will-gillis,2024-06-22T20:48:26Z,- t-will-gillis closed issue as completed: [6882](https://github.com/hackforla/website/issues/6882#event-13251715951) at 2024-06-22 01:48 PM PDT -t-will-gillis,2024-06-22T20:53:17Z,- t-will-gillis reopened issue: [6882](https://github.com/hackforla/website/issues/6882#event-13251715951) at 2024-06-22 01:53 PM PDT -t-will-gillis,2024-06-22T20:53:59Z,- t-will-gillis commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2184187293) at 2024-06-22 01:53 PM PDT -t-will-gillis,2024-06-23T04:40:59Z,- t-will-gillis opened pull request: [7053](https://github.com/hackforla/website/pull/7053) at 2024-06-22 09:40 PM PDT -t-will-gillis,2024-06-23T04:42:58Z,- t-will-gillis opened pull request: [7054](https://github.com/hackforla/website/pull/7054) at 2024-06-22 09:42 PM PDT -t-will-gillis,2024-06-23T04:44:32Z,- t-will-gillis opened pull request: [7055](https://github.com/hackforla/website/pull/7055) at 2024-06-22 09:44 PM PDT -t-will-gillis,2024-06-23T04:46:06Z,- t-will-gillis opened pull request: [7056](https://github.com/hackforla/website/pull/7056) at 2024-06-22 09:46 PM PDT -t-will-gillis,2024-06-23T16:18:13Z,- t-will-gillis closed issue by PR 7036: [6857](https://github.com/hackforla/website/issues/6857#event-13256490959) at 2024-06-23 09:18 AM PDT -t-will-gillis,2024-06-23T18:16:47Z,- t-will-gillis assigned to issue: [7039](https://github.com/hackforla/website/issues/7039) at 2024-06-23 11:16 AM PDT -t-will-gillis,2024-06-23T18:39:59Z,- t-will-gillis pull request merged: [7053](https://github.com/hackforla/website/pull/7053#event-13257787286) at 2024-06-23 11:39 AM PDT -t-will-gillis,2024-06-23T18:40:00Z,- t-will-gillis closed issue by PR 7053: [6996](https://github.com/hackforla/website/issues/6996#event-13257787317) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:27Z,- t-will-gillis pull request merged: [7054](https://github.com/hackforla/website/pull/7054#event-13257788028) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:28Z,- t-will-gillis closed issue by PR 7054: [6997](https://github.com/hackforla/website/issues/6997#event-13257788056) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:53Z,- t-will-gillis pull request merged: [7055](https://github.com/hackforla/website/pull/7055#event-13257788679) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:54Z,- t-will-gillis closed issue by PR 7055: [6998](https://github.com/hackforla/website/issues/6998#event-13257788708) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:41:16Z,- t-will-gillis pull request merged: [7056](https://github.com/hackforla/website/pull/7056#event-13257789247) at 2024-06-23 11:41 AM PDT -t-will-gillis,2024-06-23T18:41:17Z,- t-will-gillis closed issue by PR 7056: [7039](https://github.com/hackforla/website/issues/7039#event-13257789271) at 2024-06-23 11:41 AM PDT -t-will-gillis,2024-06-23T18:53:04Z,- t-will-gillis reopened issue: [7039](https://github.com/hackforla/website/issues/7039#event-13257789271) at 2024-06-23 11:53 AM PDT -t-will-gillis,2024-06-23T20:18:50Z,- t-will-gillis closed issue by PR 7054: [6997](https://github.com/hackforla/website/issues/6997#event-13258138966) at 2024-06-23 01:18 PM PDT -t-will-gillis,2024-06-23T20:20:03Z,- t-will-gillis closed issue by PR 7055: [6998](https://github.com/hackforla/website/issues/6998#event-13258141358) at 2024-06-23 01:20 PM PDT -t-will-gillis,2024-06-23T20:22:00Z,- t-will-gillis commented on issue: [7039](https://github.com/hackforla/website/issues/7039#issuecomment-2185313615) at 2024-06-23 01:22 PM PDT -t-will-gillis,2024-06-23T20:23:28Z,- t-will-gillis closed issue by PR 7056: [7039](https://github.com/hackforla/website/issues/7039#event-13258147038) at 2024-06-23 01:23 PM PDT -t-will-gillis,2024-06-23T20:33:33Z,- t-will-gillis closed issue by PR 7009: [6940](https://github.com/hackforla/website/issues/6940#event-13258162195) at 2024-06-23 01:33 PM PDT -t-will-gillis,2024-06-23T20:39:19Z,- t-will-gillis closed issue by PR 6984: [6937](https://github.com/hackforla/website/issues/6937#event-13258170952) at 2024-06-23 01:39 PM PDT -t-will-gillis,2024-06-27T05:07:55Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2193708820) at 2024-06-26 10:07 PM PDT -t-will-gillis,2024-06-27T20:24:15Z,- t-will-gillis opened issue: [7075](https://github.com/hackforla/website/issues/7075) at 2024-06-27 01:24 PM PDT -t-will-gillis,2024-06-28T02:42:00Z,- t-will-gillis opened issue: [7076](https://github.com/hackforla/website/issues/7076) at 2024-06-27 07:42 PM PDT -t-will-gillis,2024-06-28T03:03:55Z,- t-will-gillis assigned to issue: [7075](https://github.com/hackforla/website/issues/7075) at 2024-06-27 08:03 PM PDT -t-will-gillis,2024-06-28T03:49:55Z,- t-will-gillis opened issue: [7078](https://github.com/hackforla/website/issues/7078) at 2024-06-27 08:49 PM PDT -t-will-gillis,2024-06-28T04:25:38Z,- t-will-gillis opened issue: [7079](https://github.com/hackforla/website/issues/7079) at 2024-06-27 09:25 PM PDT -t-will-gillis,2024-06-28T04:28:35Z,- t-will-gillis assigned to issue: [7078](https://github.com/hackforla/website/issues/7078) at 2024-06-27 09:28 PM PDT -t-will-gillis,2024-06-28T04:28:52Z,- t-will-gillis assigned to issue: [7076](https://github.com/hackforla/website/issues/7076) at 2024-06-27 09:28 PM PDT -t-will-gillis,2024-06-28T04:29:14Z,- t-will-gillis assigned to issue: [7079](https://github.com/hackforla/website/issues/7079) at 2024-06-27 09:29 PM PDT -t-will-gillis,2024-06-28T17:56:36Z,- t-will-gillis opened issue: [7080](https://github.com/hackforla/website/issues/7080) at 2024-06-28 10:56 AM PDT -t-will-gillis,2024-06-28T17:59:08Z,- t-will-gillis assigned to issue: [7080](https://github.com/hackforla/website/issues/7080) at 2024-06-28 10:59 AM PDT -t-will-gillis,2024-06-29T21:21:15Z,- t-will-gillis commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2198339877) at 2024-06-29 02:21 PM PDT -t-will-gillis,2024-06-30T17:47:27Z,- t-will-gillis commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2198633935) at 2024-06-30 10:47 AM PDT -t-will-gillis,2024-06-30T17:51:39Z,- t-will-gillis closed issue as completed: [6834](https://github.com/hackforla/website/issues/6834#event-13342683331) at 2024-06-30 10:51 AM PDT -t-will-gillis,2024-06-30T17:53:03Z,- t-will-gillis commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2198635088) at 2024-06-30 10:53 AM PDT -t-will-gillis,2024-06-30T21:36:45Z,- t-will-gillis closed issue by PR 7043: [6920](https://github.com/hackforla/website/issues/6920#event-13343086592) at 2024-06-30 02:36 PM PDT -t-will-gillis,2024-06-30T21:38:59Z,- t-will-gillis commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2198765234) at 2024-06-30 02:38 PM PDT -t-will-gillis,2024-06-30T21:38:59Z,- t-will-gillis closed issue as completed: [6320](https://github.com/hackforla/website/issues/6320#event-13343090275) at 2024-06-30 02:38 PM PDT -t-will-gillis,2024-06-30T21:56:26Z,- t-will-gillis commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2198769385) at 2024-06-30 02:56 PM PDT -t-will-gillis,2024-06-30T22:33:35Z,- t-will-gillis submitted pull request review: [7062](https://github.com/hackforla/website/pull/7062#pullrequestreview-2150206942) at 2024-06-30 03:33 PM PDT -t-will-gillis,2024-06-30T22:33:42Z,- t-will-gillis closed issue by PR 7062: [6786](https://github.com/hackforla/website/issues/6786#event-13343195185) at 2024-06-30 03:33 PM PDT -t-will-gillis,2024-07-01T04:40:01Z,- t-will-gillis closed issue by PR 7082: [6581](https://github.com/hackforla/website/issues/6581#event-13344901434) at 2024-06-30 09:40 PM PDT -t-will-gillis,2024-07-01T04:54:21Z,- t-will-gillis opened issue: [7083](https://github.com/hackforla/website/issues/7083) at 2024-06-30 09:54 PM PDT -t-will-gillis,2024-07-01T05:03:57Z,- t-will-gillis assigned to issue: [7083](https://github.com/hackforla/website/issues/7083) at 2024-06-30 10:03 PM PDT -t-will-gillis,2024-07-01T18:44:32Z,- t-will-gillis opened issue: [7085](https://github.com/hackforla/website/issues/7085) at 2024-07-01 11:44 AM PDT -t-will-gillis,2024-07-01T19:06:56Z,- t-will-gillis assigned to issue: [7085](https://github.com/hackforla/website/issues/7085) at 2024-07-01 12:06 PM PDT -t-will-gillis,2024-07-01T21:30:01Z,- t-will-gillis commented on pull request: [7041](https://github.com/hackforla/website/pull/7041#issuecomment-2201106319) at 2024-07-01 02:30 PM PDT -t-will-gillis,2024-07-01T23:13:19Z,- t-will-gillis unassigned from issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2200830039) at 2024-07-01 04:13 PM PDT -t-will-gillis,2024-07-01T23:13:45Z,- t-will-gillis unassigned from issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2199242303) at 2024-07-01 04:13 PM PDT -t-will-gillis,2024-07-02T00:21:23Z,- t-will-gillis commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2201517871) at 2024-07-01 05:21 PM PDT -t-will-gillis,2024-07-02T00:40:28Z,- t-will-gillis commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2201555522) at 2024-07-01 05:40 PM PDT -t-will-gillis,2024-07-02T00:40:28Z,- t-will-gillis closed issue as completed: [7048](https://github.com/hackforla/website/issues/7048#event-13358065020) at 2024-07-01 05:40 PM PDT -t-will-gillis,2024-07-02T00:40:51Z,- t-will-gillis closed issue as not planned: [7048](https://github.com/hackforla/website/issues/7048#event-13358067050) at 2024-07-01 05:40 PM PDT -t-will-gillis,2024-07-02T00:51:44Z,- t-will-gillis commented on issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2201570056) at 2024-07-01 05:51 PM PDT -t-will-gillis,2024-07-02T00:51:45Z,- t-will-gillis closed issue as not planned: [7049](https://github.com/hackforla/website/issues/7049#event-13358128984) at 2024-07-01 05:51 PM PDT -t-will-gillis,2024-07-02T01:10:11Z,- t-will-gillis commented on issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2201593309) at 2024-07-01 06:10 PM PDT -t-will-gillis,2024-07-02T01:10:11Z,- t-will-gillis closed issue as not planned: [6935](https://github.com/hackforla/website/issues/6935#event-13358227472) at 2024-07-01 06:10 PM PDT -t-will-gillis,2024-07-02T03:58:59Z,- t-will-gillis opened pull request: [7086](https://github.com/hackforla/website/pull/7086) at 2024-07-01 08:58 PM PDT -t-will-gillis,2024-07-02T04:03:31Z,- t-will-gillis commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201850701) at 2024-07-01 09:03 PM PDT -t-will-gillis,2024-07-02T04:03:31Z,- t-will-gillis reopened issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201850701) at 2024-07-01 09:03 PM PDT -t-will-gillis,2024-07-02T04:11:18Z,- t-will-gillis commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201862467) at 2024-07-01 09:11 PM PDT -t-will-gillis,2024-07-02T04:13:14Z,- t-will-gillis commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2201864591) at 2024-07-01 09:13 PM PDT -t-will-gillis,2024-07-02T04:51:07Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2201917547) at 2024-07-01 09:51 PM PDT -t-will-gillis,2024-07-02T04:56:40Z,- t-will-gillis commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2201922917) at 2024-07-01 09:56 PM PDT -t-will-gillis,2024-07-02T04:58:19Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2201927034) at 2024-07-01 09:58 PM PDT -t-will-gillis,2024-07-02T05:00:00Z,- t-will-gillis commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2201929383) at 2024-07-01 10:00 PM PDT -t-will-gillis,2024-07-02T05:00:06Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2201929475) at 2024-07-01 10:00 PM PDT -t-will-gillis,2024-07-02T05:00:15Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2201929651) at 2024-07-01 10:00 PM PDT -t-will-gillis,2024-07-02T05:19:36Z,- t-will-gillis closed issue as completed: [7050](https://github.com/hackforla/website/issues/7050#event-13359768646) at 2024-07-01 10:19 PM PDT -t-will-gillis,2024-07-02T05:19:53Z,- t-will-gillis closed issue as not planned: [7050](https://github.com/hackforla/website/issues/7050#event-13359770472) at 2024-07-01 10:19 PM PDT -t-will-gillis,2024-07-02T05:25:37Z,- t-will-gillis commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2201963376) at 2024-07-01 10:25 PM PDT -t-will-gillis,2024-07-02T05:26:19Z,- t-will-gillis commented on issue: [6934](https://github.com/hackforla/website/issues/6934#issuecomment-2201964082) at 2024-07-01 10:26 PM PDT -t-will-gillis,2024-07-02T05:26:19Z,- t-will-gillis closed issue as not planned: [6934](https://github.com/hackforla/website/issues/6934#event-13359814873) at 2024-07-01 10:26 PM PDT -t-will-gillis,2024-07-02T05:30:35Z,- t-will-gillis commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2201968585) at 2024-07-01 10:30 PM PDT -t-will-gillis,2024-07-02T05:30:35Z,- t-will-gillis closed issue as not planned: [6933](https://github.com/hackforla/website/issues/6933#event-13359847678) at 2024-07-01 10:30 PM PDT -t-will-gillis,2024-07-02T05:36:52Z,- t-will-gillis pull request merged: [7086](https://github.com/hackforla/website/pull/7086#event-13359896222) at 2024-07-01 10:36 PM PDT -t-will-gillis,2024-07-02T05:36:54Z,- t-will-gillis closed issue by PR 7043: [6920](https://github.com/hackforla/website/issues/6920#event-13359896349) at 2024-07-01 10:36 PM PDT -t-will-gillis,2024-07-03T16:25:49Z,- t-will-gillis reopened issue: [6920](https://github.com/hackforla/website/issues/6920#event-13359896349) at 2024-07-03 09:25 AM PDT -t-will-gillis,2024-07-05T17:37:24Z,- t-will-gillis closed issue by PR 7077: [6862](https://github.com/hackforla/website/issues/6862#event-13408293887) at 2024-07-05 10:37 AM PDT -t-will-gillis,2024-07-05T17:43:42Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2211202108) at 2024-07-05 10:43 AM PDT -t-will-gillis,2024-07-08T02:54:52Z,- t-will-gillis commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2212882966) at 2024-07-07 07:54 PM PDT -t-will-gillis,2024-07-08T03:10:49Z,- t-will-gillis submitted pull request review: [7073](https://github.com/hackforla/website/pull/7073#pullrequestreview-2162115850) at 2024-07-07 08:10 PM PDT -t-will-gillis,2024-07-08T03:14:55Z,- t-will-gillis closed issue by PR 7073: [7010](https://github.com/hackforla/website/issues/7010#event-13416879177) at 2024-07-07 08:14 PM PDT -t-will-gillis,2024-07-08T03:45:01Z,- t-will-gillis opened issue: [7099](https://github.com/hackforla/website/issues/7099) at 2024-07-07 08:45 PM PDT -t-will-gillis,2024-07-08T03:52:02Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2212952353) at 2024-07-07 08:52 PM PDT -t-will-gillis,2024-07-08T03:55:12Z,- t-will-gillis commented on issue: [7004](https://github.com/hackforla/website/issues/7004#issuecomment-2212957488) at 2024-07-07 08:55 PM PDT -t-will-gillis,2024-07-08T05:06:40Z,- t-will-gillis submitted pull request review: [7081](https://github.com/hackforla/website/pull/7081#pullrequestreview-2162272351) at 2024-07-07 10:06 PM PDT -t-will-gillis,2024-07-09T16:21:22Z,- t-will-gillis opened issue: [7101](https://github.com/hackforla/website/issues/7101) at 2024-07-09 09:21 AM PDT -t-will-gillis,2024-07-09T20:19:32Z,- t-will-gillis commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2218659225) at 2024-07-09 01:19 PM PDT -t-will-gillis,2024-07-13T02:11:53Z,- t-will-gillis opened pull request: [7104](https://github.com/hackforla/website/pull/7104) at 2024-07-12 07:11 PM PDT -t-will-gillis,2024-07-13T02:33:01Z,- t-will-gillis commented on issue: [7080](https://github.com/hackforla/website/issues/7080#issuecomment-2226727717) at 2024-07-12 07:33 PM PDT -t-will-gillis,2024-07-13T03:36:30Z,- t-will-gillis opened issue: [7105](https://github.com/hackforla/website/issues/7105) at 2024-07-12 08:36 PM PDT -t-will-gillis,2024-07-13T04:00:41Z,- t-will-gillis commented on issue: [6840](https://github.com/hackforla/website/issues/6840#issuecomment-2226760750) at 2024-07-12 09:00 PM PDT -t-will-gillis,2024-07-13T04:00:41Z,- t-will-gillis closed issue as completed: [6840](https://github.com/hackforla/website/issues/6840#event-13494470364) at 2024-07-12 09:00 PM PDT -t-will-gillis,2024-07-13T04:02:49Z,- t-will-gillis assigned to issue: [7105](https://github.com/hackforla/website/issues/7105) at 2024-07-12 09:02 PM PDT -t-will-gillis,2024-07-14T19:56:53Z,- t-will-gillis commented on pull request: [7107](https://github.com/hackforla/website/pull/7107#issuecomment-2227466469) at 2024-07-14 12:56 PM PDT -t-will-gillis,2024-07-14T20:21:38Z,- t-will-gillis opened issue: [7108](https://github.com/hackforla/website/issues/7108) at 2024-07-14 01:21 PM PDT -t-will-gillis,2024-07-14T20:46:25Z,- t-will-gillis submitted pull request review: [7106](https://github.com/hackforla/website/pull/7106#pullrequestreview-2176713544) at 2024-07-14 01:46 PM PDT -t-will-gillis,2024-07-14T20:47:11Z,- t-will-gillis closed issue by PR 7106: [7101](https://github.com/hackforla/website/issues/7101#event-13498710556) at 2024-07-14 01:47 PM PDT -t-will-gillis,2024-07-14T21:43:59Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2227491521) at 2024-07-14 02:43 PM PDT -t-will-gillis,2024-07-15T18:16:23Z,- t-will-gillis opened issue: [7120](https://github.com/hackforla/website/issues/7120) at 2024-07-15 11:16 AM PDT -t-will-gillis,2024-07-15T18:16:50Z,- t-will-gillis assigned to issue: [7120](https://github.com/hackforla/website/issues/7120) at 2024-07-15 11:16 AM PDT -t-will-gillis,2024-07-15T18:28:44Z,- t-will-gillis submitted pull request review: [7119](https://github.com/hackforla/website/pull/7119#pullrequestreview-2178391332) at 2024-07-15 11:28 AM PDT -t-will-gillis,2024-07-15T18:43:13Z,- t-will-gillis commented on pull request: [7109](https://github.com/hackforla/website/pull/7109#issuecomment-2229153357) at 2024-07-15 11:43 AM PDT -t-will-gillis,2024-07-15T18:43:21Z,- t-will-gillis commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229153557) at 2024-07-15 11:43 AM PDT -t-will-gillis,2024-07-15T19:56:02Z,- t-will-gillis commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2229272761) at 2024-07-15 12:56 PM PDT -t-will-gillis,2024-07-15T19:56:02Z,- t-will-gillis closed issue as completed: [6809](https://github.com/hackforla/website/issues/6809#event-13510395115) at 2024-07-15 12:56 PM PDT -t-will-gillis,2024-07-15T20:10:28Z,- t-will-gillis commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2229312256) at 2024-07-15 01:10 PM PDT -t-will-gillis,2024-07-15T20:10:28Z,- t-will-gillis closed issue as completed: [6710](https://github.com/hackforla/website/issues/6710#event-13510534456) at 2024-07-15 01:10 PM PDT -t-will-gillis,2024-07-15T22:25:38Z,- t-will-gillis commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2229539675) at 2024-07-15 03:25 PM PDT -t-will-gillis,2024-07-15T22:25:38Z,- t-will-gillis closed issue by PR 7260: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-07-15 03:25 PM PDT -t-will-gillis,2024-07-15T22:26:40Z,- t-will-gillis reopened issue: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-07-15 03:26 PM PDT -t-will-gillis,2024-07-15T22:30:55Z,- t-will-gillis commented on issue: [7075](https://github.com/hackforla/website/issues/7075#issuecomment-2229544785) at 2024-07-15 03:30 PM PDT -t-will-gillis,2024-07-15T22:37:02Z,- t-will-gillis commented on pull request: [7121](https://github.com/hackforla/website/pull/7121#issuecomment-2229551036) at 2024-07-15 03:37 PM PDT -t-will-gillis,2024-07-16T01:33:37Z,- t-will-gillis submitted pull request review: [7121](https://github.com/hackforla/website/pull/7121#pullrequestreview-2179022859) at 2024-07-15 06:33 PM PDT -t-will-gillis,2024-07-16T01:42:47Z,- t-will-gillis commented on pull request: [7123](https://github.com/hackforla/website/pull/7123#issuecomment-2229823209) at 2024-07-15 06:42 PM PDT -t-will-gillis,2024-07-16T02:48:21Z,- t-will-gillis submitted pull request review: [7124](https://github.com/hackforla/website/pull/7124#pullrequestreview-2179097107) at 2024-07-15 07:48 PM PDT -t-will-gillis,2024-07-16T02:49:17Z,- t-will-gillis closed issue by PR 7121: [7083](https://github.com/hackforla/website/issues/7083#event-13514036007) at 2024-07-15 07:49 PM PDT -t-will-gillis,2024-07-18T04:27:20Z,- t-will-gillis commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2235306619) at 2024-07-17 09:27 PM PDT -t-will-gillis,2024-07-18T04:44:02Z,- t-will-gillis commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2235321242) at 2024-07-17 09:44 PM PDT -t-will-gillis,2024-07-18T20:21:14Z,- t-will-gillis submitted pull request review: [7126](https://github.com/hackforla/website/pull/7126#pullrequestreview-2186784619) at 2024-07-18 01:21 PM PDT -t-will-gillis,2024-07-18T20:23:16Z,- t-will-gillis closed issue by PR 7119: [7099](https://github.com/hackforla/website/issues/7099#event-13562690622) at 2024-07-18 01:23 PM PDT -t-will-gillis,2024-07-18T20:32:31Z,- t-will-gillis submitted pull request review: [7125](https://github.com/hackforla/website/pull/7125#pullrequestreview-2186834838) at 2024-07-18 01:32 PM PDT -t-will-gillis,2024-07-19T16:09:24Z,- t-will-gillis commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2239526404) at 2024-07-19 09:09 AM PDT -t-will-gillis,2024-07-19T19:06:39Z,- t-will-gillis commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239947772) at 2024-07-19 12:06 PM PDT -t-will-gillis,2024-07-19T19:16:56Z,- t-will-gillis commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239965776) at 2024-07-19 12:16 PM PDT -t-will-gillis,2024-07-19T20:49:33Z,- t-will-gillis submitted pull request review: [7126](https://github.com/hackforla/website/pull/7126#pullrequestreview-2189205690) at 2024-07-19 01:49 PM PDT -t-will-gillis,2024-07-19T20:50:18Z,- t-will-gillis closed issue by PR 7126: [7085](https://github.com/hackforla/website/issues/7085#event-13581001944) at 2024-07-19 01:50 PM PDT -t-will-gillis,2024-07-20T05:10:27Z,- t-will-gillis commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2240925644) at 2024-07-19 10:10 PM PDT -t-will-gillis,2024-07-20T05:10:27Z,- t-will-gillis closed issue as completed: [6644](https://github.com/hackforla/website/issues/6644#event-13587783858) at 2024-07-19 10:10 PM PDT -t-will-gillis,2024-07-21T21:06:22Z,- t-will-gillis opened pull request: [7132](https://github.com/hackforla/website/pull/7132) at 2024-07-21 02:06 PM PDT -t-will-gillis,2024-07-22T17:11:33Z,- t-will-gillis submitted pull request review: [7125](https://github.com/hackforla/website/pull/7125#pullrequestreview-2192115476) at 2024-07-22 10:11 AM PDT -t-will-gillis,2024-07-22T17:14:26Z,- t-will-gillis closed issue by PR 7128: [7042](https://github.com/hackforla/website/issues/7042#event-13604438583) at 2024-07-22 10:14 AM PDT -t-will-gillis,2024-07-22T17:18:50Z,- t-will-gillis submitted pull request review: [7129](https://github.com/hackforla/website/pull/7129#pullrequestreview-2192129621) at 2024-07-22 10:18 AM PDT -t-will-gillis,2024-07-22T17:50:57Z,- t-will-gillis commented on issue: [7076](https://github.com/hackforla/website/issues/7076#issuecomment-2243500427) at 2024-07-22 10:50 AM PDT -t-will-gillis,2024-07-22T17:50:57Z,- t-will-gillis closed issue as completed: [7076](https://github.com/hackforla/website/issues/7076#event-13604830545) at 2024-07-22 10:50 AM PDT -t-will-gillis,2024-07-22T18:00:48Z,- t-will-gillis closed issue as not planned: [7076](https://github.com/hackforla/website/issues/7076#event-13604938201) at 2024-07-22 11:00 AM PDT -t-will-gillis,2024-07-22T18:02:35Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2243520115) at 2024-07-22 11:02 AM PDT -t-will-gillis,2024-07-22T18:04:57Z,- t-will-gillis pull request merged: [7104](https://github.com/hackforla/website/pull/7104#event-13604983260) at 2024-07-22 11:04 AM PDT -t-will-gillis,2024-07-22T18:04:58Z,- t-will-gillis closed issue by PR 7104: [7080](https://github.com/hackforla/website/issues/7080#event-13604983464) at 2024-07-22 11:04 AM PDT -t-will-gillis,2024-07-22T18:10:37Z,- t-will-gillis unassigned from issue: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-07-22 11:10 AM PDT -t-will-gillis,2024-07-22T18:10:43Z,- t-will-gillis unassigned from issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2196118205) at 2024-07-22 11:10 AM PDT -t-will-gillis,2024-07-22T18:48:06Z,- t-will-gillis opened issue: [7133](https://github.com/hackforla/website/issues/7133) at 2024-07-22 11:48 AM PDT -t-will-gillis,2024-07-22T19:26:22Z,- t-will-gillis opened issue: [7134](https://github.com/hackforla/website/issues/7134) at 2024-07-22 12:26 PM PDT -t-will-gillis,2024-07-22T21:06:14Z,- t-will-gillis unassigned from issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2229109182) at 2024-07-22 02:06 PM PDT -t-will-gillis,2024-07-22T22:16:42Z,- t-will-gillis opened issue: [7135](https://github.com/hackforla/website/issues/7135) at 2024-07-22 03:16 PM PDT -t-will-gillis,2024-07-22T23:11:50Z,- t-will-gillis submitted pull request review: [7081](https://github.com/hackforla/website/pull/7081#pullrequestreview-2192688144) at 2024-07-22 04:11 PM PDT -t-will-gillis,2024-07-22T23:19:19Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2243970309) at 2024-07-22 04:19 PM PDT -t-will-gillis,2024-07-23T17:16:46Z,- t-will-gillis opened issue: [7137](https://github.com/hackforla/website/issues/7137) at 2024-07-23 10:16 AM PDT -t-will-gillis,2024-07-23T17:16:50Z,- t-will-gillis opened issue: [7138](https://github.com/hackforla/website/issues/7138) at 2024-07-23 10:16 AM PDT -t-will-gillis,2024-07-23T17:27:22Z,- t-will-gillis opened issue: [7139](https://github.com/hackforla/website/issues/7139) at 2024-07-23 10:27 AM PDT -t-will-gillis,2024-07-23T17:37:08Z,- t-will-gillis commented on issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2245847429) at 2024-07-23 10:37 AM PDT -t-will-gillis,2024-07-23T17:37:08Z,- t-will-gillis closed issue as completed: [6929](https://github.com/hackforla/website/issues/6929#event-13619240120) at 2024-07-23 10:37 AM PDT -t-will-gillis,2024-07-23T18:46:10Z,- t-will-gillis opened issue: [7140](https://github.com/hackforla/website/issues/7140) at 2024-07-23 11:46 AM PDT -t-will-gillis,2024-07-23T18:47:36Z,- t-will-gillis commented on issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2245994367) at 2024-07-23 11:47 AM PDT -t-will-gillis,2024-07-26T04:42:39Z,- t-will-gillis submitted pull request review: [7130](https://github.com/hackforla/website/pull/7130#pullrequestreview-2200931865) at 2024-07-25 09:42 PM PDT -t-will-gillis,2024-07-26T04:42:59Z,- t-will-gillis closed issue by PR 7130: [7103](https://github.com/hackforla/website/issues/7103#event-13656041462) at 2024-07-25 09:42 PM PDT -t-will-gillis,2024-07-27T01:21:21Z,- t-will-gillis submitted pull request review: [7129](https://github.com/hackforla/website/pull/7129#pullrequestreview-2202891343) at 2024-07-26 06:21 PM PDT -t-will-gillis,2024-07-27T01:21:51Z,- t-will-gillis closed issue by PR 7129: [7096](https://github.com/hackforla/website/issues/7096#event-13667080841) at 2024-07-26 06:21 PM PDT -t-will-gillis,2024-07-27T01:27:53Z,- t-will-gillis commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253694808) at 2024-07-26 06:27 PM PDT -t-will-gillis,2024-07-28T21:54:50Z,- t-will-gillis commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2254661439) at 2024-07-28 02:54 PM PDT -t-will-gillis,2024-07-28T21:55:01Z,- t-will-gillis commented on pull request: [7141](https://github.com/hackforla/website/pull/7141#issuecomment-2254661473) at 2024-07-28 02:55 PM PDT -t-will-gillis,2024-07-28T21:55:13Z,- t-will-gillis commented on pull request: [7136](https://github.com/hackforla/website/pull/7136#issuecomment-2254661511) at 2024-07-28 02:55 PM PDT -t-will-gillis,2024-07-28T21:55:28Z,- t-will-gillis commented on pull request: [7131](https://github.com/hackforla/website/pull/7131#issuecomment-2254661566) at 2024-07-28 02:55 PM PDT -t-will-gillis,2024-07-30T03:32:38Z,- t-will-gillis commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2257389832) at 2024-07-29 08:32 PM PDT -t-will-gillis,2024-07-31T21:24:22Z,- t-will-gillis submitted pull request review: [7131](https://github.com/hackforla/website/pull/7131#pullrequestreview-2211158733) at 2024-07-31 02:24 PM PDT -t-will-gillis,2024-07-31T21:25:02Z,- t-will-gillis closed issue by PR 7131: [7115](https://github.com/hackforla/website/issues/7115#event-13716483123) at 2024-07-31 02:25 PM PDT -t-will-gillis,2024-07-31T21:26:19Z,- t-will-gillis closed issue by PR 7136: [7117](https://github.com/hackforla/website/issues/7117#event-13716494974) at 2024-07-31 02:26 PM PDT -t-will-gillis,2024-07-31T21:31:37Z,- t-will-gillis closed issue by PR 7141: [7110](https://github.com/hackforla/website/issues/7110#event-13716534692) at 2024-07-31 02:31 PM PDT -t-will-gillis,2024-07-31T21:35:19Z,- t-will-gillis commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2261502009) at 2024-07-31 02:35 PM PDT -t-will-gillis,2024-07-31T21:39:22Z,- t-will-gillis submitted pull request review: [7153](https://github.com/hackforla/website/pull/7153#pullrequestreview-2211178422) at 2024-07-31 02:39 PM PDT -t-will-gillis,2024-07-31T21:39:43Z,- t-will-gillis closed issue by PR 7153: [7135](https://github.com/hackforla/website/issues/7135#event-13716592897) at 2024-07-31 02:39 PM PDT -t-will-gillis,2024-07-31T22:23:31Z,- t-will-gillis commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2261559242) at 2024-07-31 03:23 PM PDT -t-will-gillis,2024-08-01T01:56:49Z,- t-will-gillis closed issue by PR 7150: [7113](https://github.com/hackforla/website/issues/7113#event-13718407364) at 2024-07-31 06:56 PM PDT -t-will-gillis,2024-08-02T17:17:26Z,- t-will-gillis pull request merged: [7132](https://github.com/hackforla/website/pull/7132#event-13744735055) at 2024-08-02 10:17 AM PDT -t-will-gillis,2024-08-02T17:17:27Z,- t-will-gillis closed issue by PR 7132: [7075](https://github.com/hackforla/website/issues/7075#event-13744735230) at 2024-08-02 10:17 AM PDT -t-will-gillis,2024-08-02T17:21:12Z,- t-will-gillis commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2265832298) at 2024-08-02 10:21 AM PDT -t-will-gillis,2024-08-02T18:13:48Z,- t-will-gillis commented on issue: [7155](https://github.com/hackforla/website/issues/7155#issuecomment-2265905702) at 2024-08-02 11:13 AM PDT -t-will-gillis,2024-08-02T18:13:48Z,- t-will-gillis closed issue as completed: [7155](https://github.com/hackforla/website/issues/7155#event-13745242526) at 2024-08-02 11:13 AM PDT -t-will-gillis,2024-08-02T18:23:09Z,- t-will-gillis commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2265918542) at 2024-08-02 11:23 AM PDT -t-will-gillis,2024-08-02T22:14:49Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2266205891) at 2024-08-02 03:14 PM PDT -t-will-gillis,2024-08-03T22:15:58Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2267174746) at 2024-08-03 03:15 PM PDT -t-will-gillis,2024-08-04T22:33:12Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2267817027) at 2024-08-04 03:33 PM PDT -t-will-gillis,2024-08-05T22:16:00Z,- t-will-gillis assigned to issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2270011834) at 2024-08-05 03:16 PM PDT -t-will-gillis,2024-08-06T00:23:36Z,- t-will-gillis opened issue: [7197](https://github.com/hackforla/website/issues/7197) at 2024-08-05 05:23 PM PDT -t-will-gillis,2024-08-06T00:24:22Z,- t-will-gillis assigned to issue: [7197](https://github.com/hackforla/website/issues/7197#issuecomment-2270141554) at 2024-08-05 05:24 PM PDT -t-will-gillis,2024-08-06T00:42:41Z,- t-will-gillis commented on issue: [7197](https://github.com/hackforla/website/issues/7197#issuecomment-2270156053) at 2024-08-05 05:42 PM PDT -t-will-gillis,2024-08-06T02:51:27Z,- t-will-gillis closed issue as not planned: [7197](https://github.com/hackforla/website/issues/7197#event-13771961097) at 2024-08-05 07:51 PM PDT -t-will-gillis,2024-08-06T19:15:56Z,- t-will-gillis opened pull request: [7228](https://github.com/hackforla/website/pull/7228) at 2024-08-06 12:15 PM PDT -t-will-gillis,2024-08-07T02:33:01Z,- t-will-gillis commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272502319) at 2024-08-06 07:33 PM PDT -t-will-gillis,2024-08-08T23:31:51Z,- t-will-gillis submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2229043216) at 2024-08-08 04:31 PM PDT -t-will-gillis,2024-08-09T16:46:50Z,- t-will-gillis commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2278348466) at 2024-08-09 09:46 AM PDT -t-will-gillis,2024-08-10T03:13:27Z,- t-will-gillis commented on pull request: [7260](https://github.com/hackforla/website/pull/7260#issuecomment-2278956931) at 2024-08-09 08:13 PM PDT -t-will-gillis,2024-08-10T03:19:23Z,- t-will-gillis commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2278958752) at 2024-08-09 08:19 PM PDT -t-will-gillis,2024-08-10T19:43:49Z,- t-will-gillis submitted pull request review: [7169](https://github.com/hackforla/website/pull/7169#pullrequestreview-2231681230) at 2024-08-10 12:43 PM PDT -t-will-gillis,2024-08-10T19:43:59Z,- t-will-gillis closed issue by PR 7169: [7072](https://github.com/hackforla/website/issues/7072#event-13828860257) at 2024-08-10 12:43 PM PDT -t-will-gillis,2024-08-10T19:58:25Z,- t-will-gillis commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2282261979) at 2024-08-10 12:58 PM PDT -t-will-gillis,2024-08-10T20:09:22Z,- t-will-gillis submitted pull request review: [7230](https://github.com/hackforla/website/pull/7230#pullrequestreview-2231683193) at 2024-08-10 01:09 PM PDT -t-will-gillis,2024-08-10T20:09:43Z,- t-will-gillis closed issue by PR 7230: [7118](https://github.com/hackforla/website/issues/7118#event-13828997690) at 2024-08-10 01:09 PM PDT -t-will-gillis,2024-08-10T20:27:31Z,- t-will-gillis commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 01:27 PM PDT -t-will-gillis,2024-08-10T20:27:31Z,- t-will-gillis reopened issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 01:27 PM PDT -t-will-gillis,2024-08-10T20:31:14Z,- t-will-gillis commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2282270238) at 2024-08-10 01:31 PM PDT -t-will-gillis,2024-08-10T20:57:49Z,- t-will-gillis commented on pull request: [7256](https://github.com/hackforla/website/pull/7256#issuecomment-2282275854) at 2024-08-10 01:57 PM PDT -t-will-gillis,2024-08-11T18:14:36Z,- t-will-gillis commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2282844459) at 2024-08-11 11:14 AM PDT -t-will-gillis,2024-08-11T18:30:29Z,- t-will-gillis assigned to issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2277285082) at 2024-08-11 11:30 AM PDT -t-will-gillis,2024-08-12T04:58:03Z,- t-will-gillis commented on pull request: [7260](https://github.com/hackforla/website/pull/7260#issuecomment-2283113917) at 2024-08-11 09:58 PM PDT -t-will-gillis,2024-08-12T19:54:57Z,- t-will-gillis commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2284798365) at 2024-08-12 12:54 PM PDT -t-will-gillis,2024-08-12T20:07:30Z,- t-will-gillis submitted pull request review: [7272](https://github.com/hackforla/website/pull/7272#pullrequestreview-2233921023) at 2024-08-12 01:07 PM PDT -t-will-gillis,2024-08-12T20:47:16Z,- t-will-gillis submitted pull request review: [7260](https://github.com/hackforla/website/pull/7260#pullrequestreview-2233989468) at 2024-08-12 01:47 PM PDT -t-will-gillis,2024-08-12T21:13:35Z,- t-will-gillis submitted pull request review: [7272](https://github.com/hackforla/website/pull/7272#pullrequestreview-2234032025) at 2024-08-12 02:13 PM PDT -t-will-gillis,2024-08-13T15:43:45Z,- t-will-gillis commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2286567214) at 2024-08-13 08:43 AM PDT -t-will-gillis,2024-08-13T17:00:48Z,- t-will-gillis submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2236107261) at 2024-08-13 10:00 AM PDT -t-will-gillis,2024-08-14T16:27:59Z,- t-will-gillis closed issue by PR 7227: [7191](https://github.com/hackforla/website/issues/7191#event-13883426016) at 2024-08-14 09:27 AM PDT -t-will-gillis,2024-08-14T16:56:04Z,- t-will-gillis submitted pull request review: [7279](https://github.com/hackforla/website/pull/7279#pullrequestreview-2238728159) at 2024-08-14 09:56 AM PDT -t-will-gillis,2024-08-14T17:35:20Z,- t-will-gillis commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2289418996) at 2024-08-14 10:35 AM PDT -t-will-gillis,2024-08-14T20:33:48Z,- t-will-gillis closed issue by PR 7261: [7181](https://github.com/hackforla/website/issues/7181#event-13886941849) at 2024-08-14 01:33 PM PDT -t-will-gillis,2024-08-14T20:41:12Z,- t-will-gillis commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2289839320) at 2024-08-14 01:41 PM PDT -t-will-gillis,2024-08-14T20:43:14Z,- t-will-gillis commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2289842722) at 2024-08-14 01:43 PM PDT -t-will-gillis,2024-08-16T00:05:04Z,- t-will-gillis pull request merged: [7228](https://github.com/hackforla/website/pull/7228#event-13904240474) at 2024-08-15 05:05 PM PDT -t-will-gillis,2024-08-16T02:23:50Z,- t-will-gillis opened issue: [7300](https://github.com/hackforla/website/issues/7300) at 2024-08-15 07:23 PM PDT -t-will-gillis,2024-08-16T02:25:36Z,- t-will-gillis assigned to issue: [7300](https://github.com/hackforla/website/issues/7300) at 2024-08-15 07:25 PM PDT -t-will-gillis,2024-08-16T05:04:46Z,- t-will-gillis closed issue by PR 7260: [7078](https://github.com/hackforla/website/issues/7078#event-13906038663) at 2024-08-15 10:04 PM PDT -t-will-gillis,2024-08-16T16:29:06Z,- t-will-gillis commented on pull request: [7303](https://github.com/hackforla/website/pull/7303#issuecomment-2293806613) at 2024-08-16 09:29 AM PDT -t-will-gillis,2024-08-16T20:32:09Z,- t-will-gillis commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2294196567) at 2024-08-16 01:32 PM PDT -t-will-gillis,2024-08-16T20:53:46Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2294236033) at 2024-08-16 01:53 PM PDT -t-will-gillis,2024-08-16T20:54:49Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2294238441) at 2024-08-16 01:54 PM PDT -t-will-gillis,2024-08-18T03:19:40Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2295094860) at 2024-08-17 08:19 PM PDT -t-will-gillis,2024-08-18T03:21:35Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2295095235) at 2024-08-17 08:21 PM PDT -t-will-gillis,2024-08-18T03:30:58Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2295096741) at 2024-08-17 08:30 PM PDT -t-will-gillis,2024-08-18T04:03:03Z,- t-will-gillis submitted pull request review: [7088](https://github.com/hackforla/website/pull/7088#pullrequestreview-2244208888) at 2024-08-17 09:03 PM PDT -t-will-gillis,2024-08-18T04:03:11Z,- t-will-gillis closed issue by PR 7043: [6920](https://github.com/hackforla/website/issues/6920#event-13921113150) at 2024-08-17 09:03 PM PDT -t-will-gillis,2024-08-18T04:10:42Z,- t-will-gillis commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2295103164) at 2024-08-17 09:10 PM PDT -t-will-gillis,2024-08-18T04:15:34Z,- t-will-gillis closed issue by PR 7270: [7187](https://github.com/hackforla/website/issues/7187#event-13921129031) at 2024-08-17 09:15 PM PDT -t-will-gillis,2024-08-18T04:23:53Z,- t-will-gillis closed issue by PR 7280: [7098](https://github.com/hackforla/website/issues/7098#event-13921139244) at 2024-08-17 09:23 PM PDT -t-will-gillis,2024-08-18T04:26:00Z,- t-will-gillis closed issue by PR 7299: [7250](https://github.com/hackforla/website/issues/7250#event-13921141833) at 2024-08-17 09:26 PM PDT -t-will-gillis,2024-08-18T04:43:49Z,- t-will-gillis commented on pull request: [7310](https://github.com/hackforla/website/pull/7310#issuecomment-2295111619) at 2024-08-17 09:43 PM PDT -t-will-gillis,2024-08-18T04:44:08Z,- t-will-gillis commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2295111671) at 2024-08-17 09:44 PM PDT -t-will-gillis,2024-08-18T05:05:19Z,- t-will-gillis commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2295115730) at 2024-08-17 10:05 PM PDT -t-will-gillis,2024-08-18T19:32:20Z,- t-will-gillis commented on issue: [6677](https://github.com/hackforla/website/issues/6677#issuecomment-2295366306) at 2024-08-18 12:32 PM PDT -t-will-gillis,2024-08-18T19:53:11Z,- t-will-gillis commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2295371610) at 2024-08-18 12:53 PM PDT -t-will-gillis,2024-08-18T19:53:12Z,- t-will-gillis closed issue as completed: [6828](https://github.com/hackforla/website/issues/6828#event-13922811366) at 2024-08-18 12:53 PM PDT -t-will-gillis,2024-08-18T20:06:10Z,- t-will-gillis commented on issue: [7148](https://github.com/hackforla/website/issues/7148#issuecomment-2295375070) at 2024-08-18 01:06 PM PDT -t-will-gillis,2024-08-18T20:06:10Z,- t-will-gillis closed issue as completed: [7148](https://github.com/hackforla/website/issues/7148#event-13922834052) at 2024-08-18 01:06 PM PDT -t-will-gillis,2024-08-18T20:26:49Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2295380475) at 2024-08-18 01:26 PM PDT -t-will-gillis,2024-08-18T20:35:07Z,- t-will-gillis commented on issue: [7173](https://github.com/hackforla/website/issues/7173#issuecomment-2295382569) at 2024-08-18 01:35 PM PDT -t-will-gillis,2024-08-20T20:59:13Z,- t-will-gillis submitted pull request review: [7262](https://github.com/hackforla/website/pull/7262#pullrequestreview-2249085737) at 2024-08-20 01:59 PM PDT -t-will-gillis,2024-08-20T20:59:42Z,- t-will-gillis closed issue by PR 7262: [7120](https://github.com/hackforla/website/issues/7120#event-13950854087) at 2024-08-20 01:59 PM PDT -t-will-gillis,2024-08-20T22:11:24Z,- t-will-gillis opened issue: [7322](https://github.com/hackforla/website/issues/7322) at 2024-08-20 03:11 PM PDT -t-will-gillis,2024-08-20T22:12:16Z,- t-will-gillis assigned to issue: [7322](https://github.com/hackforla/website/issues/7322) at 2024-08-20 03:12 PM PDT -t-will-gillis,2024-08-20T22:15:13Z,- t-will-gillis commented on issue: [7322](https://github.com/hackforla/website/issues/7322#issuecomment-2299853808) at 2024-08-20 03:15 PM PDT -t-will-gillis,2024-08-20T22:35:16Z,- t-will-gillis opened pull request: [7323](https://github.com/hackforla/website/pull/7323) at 2024-08-20 03:35 PM PDT -t-will-gillis,2024-08-21T02:01:54Z,- t-will-gillis submitted pull request review: [7279](https://github.com/hackforla/website/pull/7279#pullrequestreview-2249426723) at 2024-08-20 07:01 PM PDT -t-will-gillis,2024-08-22T17:33:08Z,- t-will-gillis submitted pull request review: [7307](https://github.com/hackforla/website/pull/7307#pullrequestreview-2255256436) at 2024-08-22 10:33 AM PDT -t-will-gillis,2024-08-22T17:33:16Z,- t-will-gillis closed issue by PR 7307: [7173](https://github.com/hackforla/website/issues/7173#event-13981909478) at 2024-08-22 10:33 AM PDT -t-will-gillis,2024-08-23T21:58:55Z,- t-will-gillis closed issue by PR 7279: [7134](https://github.com/hackforla/website/issues/7134#event-13998269570) at 2024-08-23 02:58 PM PDT -t-will-gillis,2024-08-24T22:07:54Z,- t-will-gillis opened issue: [7349](https://github.com/hackforla/website/issues/7349) at 2024-08-24 03:07 PM PDT -t-will-gillis,2024-08-24T22:08:12Z,- t-will-gillis assigned to issue: [7349](https://github.com/hackforla/website/issues/7349) at 2024-08-24 03:08 PM PDT -t-will-gillis,2024-08-25T15:14:36Z,- t-will-gillis closed issue by PR 7296: [7013](https://github.com/hackforla/website/issues/7013#event-14004588513) at 2024-08-25 08:14 AM PDT -t-will-gillis,2024-08-25T15:30:10Z,- t-will-gillis closed issue by PR 7342: [7288](https://github.com/hackforla/website/issues/7288#event-14004625452) at 2024-08-25 08:30 AM PDT -t-will-gillis,2024-08-25T15:31:01Z,- t-will-gillis commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2308897098) at 2024-08-25 08:31 AM PDT -t-will-gillis,2024-08-25T15:36:57Z,- t-will-gillis commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2308899062) at 2024-08-25 08:36 AM PDT -t-will-gillis,2024-08-25T15:39:29Z,- t-will-gillis commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2308899932) at 2024-08-25 08:39 AM PDT -t-will-gillis,2024-08-25T15:40:35Z,- t-will-gillis closed issue by PR 7348: [7172](https://github.com/hackforla/website/issues/7172#event-14004649716) at 2024-08-25 08:40 AM PDT -t-will-gillis,2024-08-26T04:45:52Z,- t-will-gillis commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2309306138) at 2024-08-25 09:45 PM PDT -t-will-gillis,2024-08-26T04:53:06Z,- t-will-gillis commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2309312562) at 2024-08-25 09:53 PM PDT -t-will-gillis,2024-08-26T05:20:46Z,- t-will-gillis commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2309340091) at 2024-08-25 10:20 PM PDT -t-will-gillis,2024-08-26T05:35:57Z,- t-will-gillis commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2309356846) at 2024-08-25 10:35 PM PDT -t-will-gillis,2024-08-26T05:35:57Z,- t-will-gillis closed issue as completed: [7147](https://github.com/hackforla/website/issues/7147#event-14007893496) at 2024-08-25 10:35 PM PDT -t-will-gillis,2024-08-27T16:53:11Z,- t-will-gillis submitted pull request review: [7340](https://github.com/hackforla/website/pull/7340#pullrequestreview-2263992049) at 2024-08-27 09:53 AM PDT -t-will-gillis,2024-08-27T16:53:47Z,- t-will-gillis closed issue by PR 7340: [7281](https://github.com/hackforla/website/issues/7281#event-14032148239) at 2024-08-27 09:53 AM PDT -t-will-gillis,2024-08-27T16:59:24Z,- t-will-gillis closed issue by PR 7343: [7283](https://github.com/hackforla/website/issues/7283#event-14032215730) at 2024-08-27 09:59 AM PDT -t-will-gillis,2024-08-27T17:02:00Z,- t-will-gillis closed issue by PR 7346: [7175](https://github.com/hackforla/website/issues/7175#event-14032247305) at 2024-08-27 10:02 AM PDT -t-will-gillis,2024-08-27T17:06:17Z,- t-will-gillis commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2313096615) at 2024-08-27 10:06 AM PDT -t-will-gillis,2024-08-27T17:06:39Z,- t-will-gillis closed issue by PR 7350: [7240](https://github.com/hackforla/website/issues/7240#event-14032301160) at 2024-08-27 10:06 AM PDT -t-will-gillis,2024-08-27T22:35:40Z,- t-will-gillis commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2313691860) at 2024-08-27 03:35 PM PDT -t-will-gillis,2024-08-28T21:40:30Z,- t-will-gillis commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2316297245) at 2024-08-28 02:40 PM PDT -t-will-gillis,2024-08-29T02:05:01Z,- t-will-gillis commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2316575203) at 2024-08-28 07:05 PM PDT -t-will-gillis,2024-08-29T02:05:11Z,- t-will-gillis pull request merged: [7323](https://github.com/hackforla/website/pull/7323#event-14054794171) at 2024-08-28 07:05 PM PDT -t-will-gillis,2024-08-29T02:05:12Z,- t-will-gillis closed issue by PR 7323: [7322](https://github.com/hackforla/website/issues/7322#event-14054794254) at 2024-08-28 07:05 PM PDT -t-will-gillis,2024-08-29T03:23:34Z,- t-will-gillis commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2316639854) at 2024-08-28 08:23 PM PDT -t-will-gillis,2024-08-29T03:32:40Z,- t-will-gillis commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2316647539) at 2024-08-28 08:32 PM PDT -t-will-gillis,2024-08-29T17:39:46Z,- t-will-gillis commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318470813) at 2024-08-29 10:39 AM PDT -t-will-gillis,2024-08-29T17:39:46Z,- t-will-gillis closed issue as not planned: [7095](https://github.com/hackforla/website/issues/7095#event-14067390249) at 2024-08-29 10:39 AM PDT -t-will-gillis,2024-08-29T17:51:56Z,- t-will-gillis commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2318495936) at 2024-08-29 10:51 AM PDT -t-will-gillis,2024-08-30T02:14:35Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2319695411) at 2024-08-29 07:14 PM PDT -t-will-gillis,2024-08-30T03:24:49Z,- t-will-gillis commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2319900615) at 2024-08-29 08:24 PM PDT -t-will-gillis,2024-08-30T03:24:49Z,- t-will-gillis closed issue as completed: [6863](https://github.com/hackforla/website/issues/6863#event-14074423300) at 2024-08-29 08:24 PM PDT -t-will-gillis,2024-08-30T04:02:18Z,- t-will-gillis opened pull request: [7367](https://github.com/hackforla/website/pull/7367) at 2024-08-29 09:02 PM PDT -t-will-gillis,2024-08-30T17:16:02Z,- t-will-gillis unassigned from issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2292617588) at 2024-08-30 10:16 AM PDT -t-will-gillis,2024-08-30T17:33:16Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2322034968) at 2024-08-30 10:33 AM PDT -t-will-gillis,2024-08-31T03:17:36Z,- t-will-gillis opened issue: [7372](https://github.com/hackforla/website/issues/7372) at 2024-08-30 08:17 PM PDT -t-will-gillis,2024-08-31T03:49:31Z,- t-will-gillis assigned to issue: [7372](https://github.com/hackforla/website/issues/7372) at 2024-08-30 08:49 PM PDT -t-will-gillis,2024-08-31T21:55:53Z,- t-will-gillis opened pull request: [7373](https://github.com/hackforla/website/pull/7373) at 2024-08-31 02:55 PM PDT -t-will-gillis,2024-08-31T21:59:31Z,- t-will-gillis closed issue by PR 7341: [7094](https://github.com/hackforla/website/issues/7094#event-14092744672) at 2024-08-31 02:59 PM PDT -t-will-gillis,2024-08-31T22:02:24Z,- t-will-gillis closed issue by PR 7360: [7092](https://github.com/hackforla/website/issues/7092#event-14092749220) at 2024-08-31 03:02 PM PDT -t-will-gillis,2024-09-01T22:02:56Z,- t-will-gillis submitted pull request review: [7375](https://github.com/hackforla/website/pull/7375#pullrequestreview-2274493579) at 2024-09-01 03:02 PM PDT -t-will-gillis,2024-09-01T22:27:28Z,- t-will-gillis commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323519333) at 2024-09-01 03:27 PM PDT -t-will-gillis,2024-09-02T16:56:35Z,- t-will-gillis commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2325103028) at 2024-09-02 09:56 AM PDT -t-will-gillis,2024-09-02T18:20:28Z,- t-will-gillis submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2276054521) at 2024-09-02 11:20 AM PDT -t-will-gillis,2024-09-02T18:50:16Z,- t-will-gillis commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2325202318) at 2024-09-02 11:50 AM PDT -t-will-gillis,2024-09-02T22:04:08Z,- t-will-gillis commented on issue: [7266](https://github.com/hackforla/website/issues/7266#issuecomment-2325334506) at 2024-09-02 03:04 PM PDT -t-will-gillis,2024-09-02T22:04:08Z,- t-will-gillis closed issue as completed: [7266](https://github.com/hackforla/website/issues/7266#event-14107411071) at 2024-09-02 03:04 PM PDT -t-will-gillis,2024-09-02T22:14:12Z,- t-will-gillis commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2325340206) at 2024-09-02 03:14 PM PDT -t-will-gillis,2024-09-03T00:54:19Z,- t-will-gillis commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2325425633) at 2024-09-02 05:54 PM PDT -t-will-gillis,2024-09-03T16:05:05Z,- t-will-gillis submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2277884074) at 2024-09-03 09:05 AM PDT -t-will-gillis,2024-09-03T17:27:11Z,- t-will-gillis commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2327063334) at 2024-09-03 10:27 AM PDT -t-will-gillis,2024-09-03T20:04:29Z,- t-will-gillis commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2327336951) at 2024-09-03 01:04 PM PDT -t-will-gillis,2024-09-03T20:04:30Z,- t-will-gillis closed issue as completed: [7267](https://github.com/hackforla/website/issues/7267#event-14120591392) at 2024-09-03 01:04 PM PDT -t-will-gillis,2024-09-04T03:48:11Z,- t-will-gillis closed issue by PR 7325: [7273](https://github.com/hackforla/website/issues/7273#event-14123744393) at 2024-09-03 08:48 PM PDT -t-will-gillis,2024-09-07T17:43:47Z,- t-will-gillis closed issue by PR 7375: [7015](https://github.com/hackforla/website/issues/7015#event-14172118566) at 2024-09-07 10:43 AM PDT -t-will-gillis,2024-09-07T17:52:00Z,- t-will-gillis closed issue by PR 7385: [7195](https://github.com/hackforla/website/issues/7195#event-14172190159) at 2024-09-07 10:52 AM PDT -t-will-gillis,2024-09-07T17:57:09Z,- t-will-gillis commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2336294623) at 2024-09-07 10:57 AM PDT -t-will-gillis,2024-09-09T03:28:08Z,- t-will-gillis closed issue by PR 7368: [7241](https://github.com/hackforla/website/issues/7241#event-14176402102) at 2024-09-08 08:28 PM PDT -t-will-gillis,2024-09-09T03:29:50Z,- t-will-gillis closed issue by PR 7406: [7290](https://github.com/hackforla/website/issues/7290#event-14176410750) at 2024-09-08 08:29 PM PDT -t-will-gillis,2024-09-09T03:31:18Z,- t-will-gillis closed issue by PR 7408: [7183](https://github.com/hackforla/website/issues/7183#event-14176417588) at 2024-09-08 08:31 PM PDT -t-will-gillis,2024-09-09T03:58:54Z,- t-will-gillis commented on pull request: [7367](https://github.com/hackforla/website/pull/7367#issuecomment-2337062974) at 2024-09-08 08:58 PM PDT -t-will-gillis,2024-09-09T04:42:47Z,- t-will-gillis commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2337102005) at 2024-09-08 09:42 PM PDT -t-will-gillis,2024-09-09T20:13:04Z,- t-will-gillis pull request merged: [7367](https://github.com/hackforla/website/pull/7367#event-14188969498) at 2024-09-09 01:13 PM PDT -t-will-gillis,2024-09-09T20:13:05Z,- t-will-gillis closed issue by PR 7367: [7349](https://github.com/hackforla/website/issues/7349#event-14188969684) at 2024-09-09 01:13 PM PDT -t-will-gillis,2024-09-09T20:59:14Z,- t-will-gillis commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2339078979) at 2024-09-09 01:59 PM PDT -t-will-gillis,2024-09-10T00:25:00Z,- t-will-gillis commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2339378555) at 2024-09-09 05:25 PM PDT -t-will-gillis,2024-09-11T04:35:38Z,- t-will-gillis commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2342602850) at 2024-09-10 09:35 PM PDT -t-will-gillis,2024-09-11T04:46:13Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2342612614) at 2024-09-10 09:46 PM PDT -t-will-gillis,2024-09-12T02:18:35Z,- t-will-gillis closed issue by PR 7315: [7177](https://github.com/hackforla/website/issues/7177#event-14225611260) at 2024-09-11 07:18 PM PDT -t-will-gillis,2024-09-12T16:50:27Z,- t-will-gillis commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2346791415) at 2024-09-12 09:50 AM PDT -t-will-gillis,2024-09-12T16:54:09Z,- t-will-gillis commented on pull request: [7444](https://github.com/hackforla/website/pull/7444#issuecomment-2346798017) at 2024-09-12 09:54 AM PDT -t-will-gillis,2024-09-12T21:22:34Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2347271704) at 2024-09-12 02:22 PM PDT -t-will-gillis,2024-09-13T02:27:24Z,- t-will-gillis commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2347919040) at 2024-09-12 07:27 PM PDT -t-will-gillis,2024-09-13T03:24:09Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2347962216) at 2024-09-12 08:24 PM PDT -t-will-gillis,2024-09-13T19:17:25Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2349999143) at 2024-09-13 12:17 PM PDT -t-will-gillis,2024-09-13T19:18:33Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2350000939) at 2024-09-13 12:18 PM PDT -t-will-gillis,2024-09-13T23:58:53Z,- t-will-gillis commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2350720118) at 2024-09-13 04:58 PM PDT -t-will-gillis,2024-09-13T23:58:54Z,- t-will-gillis closed issue as completed: [7108](https://github.com/hackforla/website/issues/7108#event-14255612620) at 2024-09-13 04:58 PM PDT -t-will-gillis,2024-09-14T02:17:57Z,- t-will-gillis closed issue by PR 6442: [5205](https://github.com/hackforla/website/issues/5205#event-14256321960) at 2024-09-13 07:17 PM PDT -t-will-gillis,2024-09-14T18:15:20Z,- t-will-gillis commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2351090085) at 2024-09-14 11:15 AM PDT -t-will-gillis,2024-09-14T18:41:30Z,- t-will-gillis commented on issue: [7167](https://github.com/hackforla/website/issues/7167#issuecomment-2351100238) at 2024-09-14 11:41 AM PDT -t-will-gillis,2024-09-14T18:41:30Z,- t-will-gillis closed issue as completed: [7167](https://github.com/hackforla/website/issues/7167#event-14260362815) at 2024-09-14 11:41 AM PDT -t-will-gillis,2024-09-14T21:52:53Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2351171128) at 2024-09-14 02:52 PM PDT -t-will-gillis,2024-09-15T02:28:04Z,- t-will-gillis closed issue by PR 7436: [7180](https://github.com/hackforla/website/issues/7180#event-14262062686) at 2024-09-14 07:28 PM PDT -t-will-gillis,2024-09-15T02:37:22Z,- t-will-gillis closed issue by PR 7445: [7336](https://github.com/hackforla/website/issues/7336#event-14262073316) at 2024-09-14 07:37 PM PDT -t-will-gillis,2024-09-15T02:57:33Z,- t-will-gillis closed issue by PR 7446: [7379](https://github.com/hackforla/website/issues/7379#event-14262096888) at 2024-09-14 07:57 PM PDT -t-will-gillis,2024-09-15T03:02:53Z,- t-will-gillis commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2351326408) at 2024-09-14 08:02 PM PDT -t-will-gillis,2024-09-15T16:07:41Z,- t-will-gillis commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2351655484) at 2024-09-15 09:07 AM PDT -t-will-gillis,2024-09-15T16:07:41Z,- t-will-gillis closed issue as completed: [6579](https://github.com/hackforla/website/issues/6579#event-14263550271) at 2024-09-15 09:07 AM PDT -t-will-gillis,2024-09-15T16:34:59Z,- t-will-gillis commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2351667270) at 2024-09-15 09:34 AM PDT -t-will-gillis,2024-09-16T21:29:39Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2354063175) at 2024-09-16 02:29 PM PDT -t-will-gillis,2024-09-17T00:23:19Z,- t-will-gillis assigned to issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2270113150) at 2024-09-16 05:23 PM PDT -t-will-gillis,2024-09-17T00:41:22Z,- t-will-gillis unassigned from issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2354269065) at 2024-09-16 05:41 PM PDT -t-will-gillis,2024-09-17T01:48:56Z,- t-will-gillis commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2354346184) at 2024-09-16 06:48 PM PDT -t-will-gillis,2024-09-17T02:42:39Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2354395030) at 2024-09-16 07:42 PM PDT -t-will-gillis,2024-09-17T17:53:09Z,- t-will-gillis commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2356559535) at 2024-09-17 10:53 AM PDT -t-will-gillis,2024-09-19T03:07:40Z,- t-will-gillis closed issue by PR 7466: [7300](https://github.com/hackforla/website/issues/7300#event-14317096713) at 2024-09-18 08:07 PM PDT -t-will-gillis,2024-09-19T04:24:42Z,- t-will-gillis submitted pull request review: [7493](https://github.com/hackforla/website/pull/7493#pullrequestreview-2314375801) at 2024-09-18 09:24 PM PDT -t-will-gillis,2024-09-20T17:26:14Z,- t-will-gillis commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2364186162) at 2024-09-20 10:26 AM PDT -t-will-gillis,2024-09-20T17:38:59Z,- t-will-gillis opened issue: [7500](https://github.com/hackforla/website/issues/7500) at 2024-09-20 10:38 AM PDT -t-will-gillis,2024-09-21T02:15:02Z,- t-will-gillis submitted pull request review: [7493](https://github.com/hackforla/website/pull/7493#pullrequestreview-2319621119) at 2024-09-20 07:15 PM PDT -t-will-gillis,2024-09-21T02:15:16Z,- t-will-gillis closed issue by PR 7493: [7079](https://github.com/hackforla/website/issues/7079#event-14347597607) at 2024-09-20 07:15 PM PDT -t-will-gillis,2024-09-21T02:16:19Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2364936716) at 2024-09-20 07:16 PM PDT -t-will-gillis,2024-09-21T02:16:19Z,- t-will-gillis closed issue as completed: [6993](https://github.com/hackforla/website/issues/6993#event-14347599570) at 2024-09-20 07:16 PM PDT -t-will-gillis,2024-09-21T02:24:32Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2364940374) at 2024-09-20 07:24 PM PDT -t-will-gillis,2024-09-21T02:24:57Z,- t-will-gillis pull request merged: [7373](https://github.com/hackforla/website/pull/7373#event-14347615086) at 2024-09-20 07:24 PM PDT -t-will-gillis,2024-09-21T02:24:58Z,- t-will-gillis closed issue by PR 7373: [7372](https://github.com/hackforla/website/issues/7372#event-14347615130) at 2024-09-20 07:24 PM PDT -t-will-gillis,2024-09-21T02:48:08Z,- t-will-gillis opened issue: [7502](https://github.com/hackforla/website/issues/7502) at 2024-09-20 07:48 PM PDT -t-will-gillis,2024-09-21T02:51:23Z,- t-will-gillis opened pull request: [7503](https://github.com/hackforla/website/pull/7503) at 2024-09-20 07:51 PM PDT -t-will-gillis,2024-09-21T03:33:41Z,- t-will-gillis pull request merged: [7503](https://github.com/hackforla/website/pull/7503#event-14347776279) at 2024-09-20 08:33 PM PDT -t-will-gillis,2024-09-21T03:33:42Z,- t-will-gillis closed issue by PR 7503: [7502](https://github.com/hackforla/website/issues/7502#event-14347776301) at 2024-09-20 08:33 PM PDT -t-will-gillis,2024-09-22T16:20:55Z,- t-will-gillis closed issue by PR 7468: [7415](https://github.com/hackforla/website/issues/7415#event-14355027207) at 2024-09-22 09:20 AM PDT -t-will-gillis,2024-09-22T18:39:39Z,- t-will-gillis commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2366911637) at 2024-09-22 11:39 AM PDT -t-will-gillis,2024-09-22T18:43:08Z,- t-will-gillis commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2366912899) at 2024-09-22 11:43 AM PDT -t-will-gillis,2024-09-23T01:52:21Z,- t-will-gillis commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2367106376) at 2024-09-22 06:52 PM PDT -t-will-gillis,2024-09-23T02:21:58Z,- t-will-gillis closed issue by PR 7504: [7497](https://github.com/hackforla/website/issues/7497#event-14356490882) at 2024-09-22 07:21 PM PDT -t-will-gillis,2024-09-28T22:14:03Z,- t-will-gillis opened issue: [7530](https://github.com/hackforla/website/issues/7530) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:04Z,- t-will-gillis opened issue: [7531](https://github.com/hackforla/website/issues/7531) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:06Z,- t-will-gillis opened issue: [7532](https://github.com/hackforla/website/issues/7532) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:07Z,- t-will-gillis opened issue: [7533](https://github.com/hackforla/website/issues/7533) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:08Z,- t-will-gillis opened issue: [7534](https://github.com/hackforla/website/issues/7534) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:09Z,- t-will-gillis opened issue: [7535](https://github.com/hackforla/website/issues/7535) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:10Z,- t-will-gillis opened issue: [7536](https://github.com/hackforla/website/issues/7536) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:11Z,- t-will-gillis opened issue: [7537](https://github.com/hackforla/website/issues/7537) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:21:41Z,- t-will-gillis assigned to issue: [7537](https://github.com/hackforla/website/issues/7537) at 2024-09-28 03:21 PM PDT -t-will-gillis,2024-09-28T22:21:55Z,- t-will-gillis assigned to issue: [7536](https://github.com/hackforla/website/issues/7536) at 2024-09-28 03:21 PM PDT -t-will-gillis,2024-09-28T22:22:16Z,- t-will-gillis assigned to issue: [7535](https://github.com/hackforla/website/issues/7535) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:21Z,- t-will-gillis assigned to issue: [7534](https://github.com/hackforla/website/issues/7534) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:25Z,- t-will-gillis assigned to issue: [7533](https://github.com/hackforla/website/issues/7533) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:29Z,- t-will-gillis assigned to issue: [7532](https://github.com/hackforla/website/issues/7532) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:33Z,- t-will-gillis assigned to issue: [7531](https://github.com/hackforla/website/issues/7531) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:37Z,- t-will-gillis assigned to issue: [7530](https://github.com/hackforla/website/issues/7530) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-29T03:58:39Z,- t-will-gillis opened pull request: [7538](https://github.com/hackforla/website/pull/7538) at 2024-09-28 08:58 PM PDT -t-will-gillis,2024-09-29T16:54:01Z,- t-will-gillis submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2335894910) at 2024-09-29 09:54 AM PDT -t-will-gillis,2024-09-29T16:54:34Z,- t-will-gillis closed issue by PR 7529: [7403](https://github.com/hackforla/website/issues/7403#event-14445745984) at 2024-09-29 09:54 AM PDT -t-will-gillis,2024-09-29T19:44:22Z,- t-will-gillis submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2335985901) at 2024-09-29 12:44 PM PDT -t-will-gillis,2024-09-29T19:45:10Z,- t-will-gillis closed issue by PR 7526: [7515](https://github.com/hackforla/website/issues/7515#event-14446481666) at 2024-09-29 12:45 PM PDT -t-will-gillis,2024-09-29T19:48:01Z,- t-will-gillis commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2381580473) at 2024-09-29 12:48 PM PDT -t-will-gillis,2024-09-29T19:50:06Z,- t-will-gillis commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2381581044) at 2024-09-29 12:50 PM PDT -t-will-gillis,2024-09-30T03:56:02Z,- t-will-gillis commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2381955405) at 2024-09-29 08:56 PM PDT -t-will-gillis,2024-09-30T04:26:07Z,- t-will-gillis commented on pull request: [7543](https://github.com/hackforla/website/pull/7543#issuecomment-2381981544) at 2024-09-29 09:26 PM PDT -t-will-gillis,2024-09-30T17:34:20Z,- t-will-gillis closed issue as not planned: [7545](https://github.com/hackforla/website/issues/7545#event-14460090721) at 2024-09-30 10:34 AM PDT -t-will-gillis,2024-09-30T17:35:00Z,- t-will-gillis commented on issue: [7545](https://github.com/hackforla/website/issues/7545#issuecomment-2383785778) at 2024-09-30 10:35 AM PDT -t-will-gillis,2024-09-30T21:34:59Z,- t-will-gillis commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2384184105) at 2024-09-30 02:34 PM PDT -t-will-gillis,2024-10-01T02:54:37Z,- t-will-gillis commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2384679125) at 2024-09-30 07:54 PM PDT -t-will-gillis,2024-10-01T03:51:44Z,- t-will-gillis opened issue: [7552](https://github.com/hackforla/website/issues/7552) at 2024-09-30 08:51 PM PDT -t-will-gillis,2024-10-01T03:51:57Z,- t-will-gillis assigned to issue: [7552](https://github.com/hackforla/website/issues/7552) at 2024-09-30 08:51 PM PDT -t-will-gillis,2024-10-01T03:55:46Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2384732747) at 2024-09-30 08:55 PM PDT -t-will-gillis,2024-10-02T20:39:48Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2389657338) at 2024-10-02 01:39 PM PDT -t-will-gillis,2024-10-03T23:38:03Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2392513853) at 2024-10-03 04:38 PM PDT -t-will-gillis,2024-10-04T03:20:07Z,- t-will-gillis opened issue: [7561](https://github.com/hackforla/website/issues/7561) at 2024-10-03 08:20 PM PDT -t-will-gillis,2024-10-04T03:29:07Z,- t-will-gillis opened issue: [7562](https://github.com/hackforla/website/issues/7562) at 2024-10-03 08:29 PM PDT -t-will-gillis,2024-10-04T03:30:00Z,- t-will-gillis assigned to issue: [7562](https://github.com/hackforla/website/issues/7562) at 2024-10-03 08:30 PM PDT -t-will-gillis,2024-10-04T04:04:28Z,- t-will-gillis opened issue: [7563](https://github.com/hackforla/website/issues/7563) at 2024-10-03 09:04 PM PDT -t-will-gillis,2024-10-04T04:10:15Z,- t-will-gillis commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392752116) at 2024-10-03 09:10 PM PDT -t-will-gillis,2024-10-06T17:32:23Z,- t-will-gillis closed issue by PR 7560: [7355](https://github.com/hackforla/website/issues/7355#event-14531117582) at 2024-10-06 10:32 AM PDT -t-will-gillis,2024-10-06T17:42:51Z,- t-will-gillis commented on pull request: [7559](https://github.com/hackforla/website/pull/7559#issuecomment-2395521751) at 2024-10-06 10:42 AM PDT -t-will-gillis,2024-10-06T20:21:57Z,- t-will-gillis submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2350596195) at 2024-10-06 01:21 PM PDT -t-will-gillis,2024-10-08T00:12:47Z,- t-will-gillis assigned to issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398025433) at 2024-10-07 05:12 PM PDT -t-will-gillis,2024-10-08T00:13:08Z,- t-will-gillis unassigned from issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398250655) at 2024-10-07 05:13 PM PDT -t-will-gillis,2024-10-08T00:55:05Z,- t-will-gillis assigned to issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2395487367) at 2024-10-07 05:55 PM PDT -t-will-gillis,2024-10-08T01:05:18Z,- t-will-gillis assigned to issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398250655) at 2024-10-07 06:05 PM PDT -t-will-gillis,2024-10-08T22:23:56Z,- t-will-gillis submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2355643531) at 2024-10-08 03:23 PM PDT -t-will-gillis,2024-10-10T02:34:13Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2403813692) at 2024-10-09 07:34 PM PDT -t-will-gillis,2024-10-13T18:24:17Z,- t-will-gillis closed issue by PR 7579: [7555](https://github.com/hackforla/website/issues/7555#event-14620289974) at 2024-10-13 11:24 AM PDT -t-will-gillis,2024-10-13T18:27:45Z,- t-will-gillis commented on pull request: [7409](https://github.com/hackforla/website/pull/7409#issuecomment-2409077735) at 2024-10-13 11:27 AM PDT -t-will-gillis,2024-10-14T18:06:14Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2411927813) at 2024-10-14 11:06 AM PDT -t-will-gillis,2024-10-14T20:56:14Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2412330640) at 2024-10-14 01:56 PM PDT -t-will-gillis,2024-10-14T22:38:50Z,- t-will-gillis unassigned from issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2400238861) at 2024-10-14 03:38 PM PDT -t-will-gillis,2024-10-15T01:50:45Z,- t-will-gillis unassigned from issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2412650919) at 2024-10-14 06:50 PM PDT -t-will-gillis,2024-10-19T18:27:09Z,- t-will-gillis closed issue by PR 7589: [7414](https://github.com/hackforla/website/issues/7414#event-14737376711) at 2024-10-19 11:27 AM PDT -t-will-gillis,2024-10-19T23:05:07Z,- t-will-gillis commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2424275808) at 2024-10-19 04:05 PM PDT -t-will-gillis,2024-10-19T23:05:37Z,- t-will-gillis closed issue by PR 7598: [7556](https://github.com/hackforla/website/issues/7556#event-14740387137) at 2024-10-19 04:05 PM PDT -t-will-gillis,2024-10-19T23:09:08Z,- t-will-gillis commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2424279187) at 2024-10-19 04:09 PM PDT -t-will-gillis,2024-10-19T23:11:29Z,- t-will-gillis pull request merged: [7538](https://github.com/hackforla/website/pull/7538#event-14740416449) at 2024-10-19 04:11 PM PDT -t-will-gillis,2024-10-19T23:11:30Z,- t-will-gillis closed issue by PR 7538: [7537](https://github.com/hackforla/website/issues/7537#event-14740416483) at 2024-10-19 04:11 PM PDT -t-will-gillis,2024-10-20T17:08:51Z,- t-will-gillis commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2425129966) at 2024-10-20 10:08 AM PDT -t-will-gillis,2024-10-20T18:45:39Z,- t-will-gillis commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2425175023) at 2024-10-20 11:45 AM PDT -t-will-gillis,2024-10-20T22:00:56Z,- t-will-gillis opened issue: [7614](https://github.com/hackforla/website/issues/7614) at 2024-10-20 03:00 PM PDT -t-will-gillis,2024-10-21T16:22:37Z,- t-will-gillis submitted pull request review: [7599](https://github.com/hackforla/website/pull/7599#pullrequestreview-2382616059) at 2024-10-21 09:22 AM PDT -t-will-gillis,2024-10-21T17:47:11Z,- t-will-gillis assigned to issue: [7614](https://github.com/hackforla/website/issues/7614) at 2024-10-21 10:47 AM PDT -t-will-gillis,2024-10-21T18:04:52Z,- t-will-gillis commented on issue: [7563](https://github.com/hackforla/website/issues/7563#issuecomment-2427384997) at 2024-10-21 11:04 AM PDT -t-will-gillis,2024-10-21T18:41:05Z,- t-will-gillis commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2427455331) at 2024-10-21 11:41 AM PDT -t-will-gillis,2024-10-21T18:41:05Z,- t-will-gillis closed issue as completed: [7456](https://github.com/hackforla/website/issues/7456#event-14769665886) at 2024-10-21 11:41 AM PDT -t-will-gillis,2024-10-21T20:17:00Z,- t-will-gillis closed issue by PR 7508: [7363](https://github.com/hackforla/website/issues/7363#event-14770821182) at 2024-10-21 01:17 PM PDT -t-will-gillis,2024-10-22T21:10:35Z,- t-will-gillis commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2430300098) at 2024-10-22 02:10 PM PDT -t-will-gillis,2024-10-26T02:36:14Z,- t-will-gillis commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2439188819) at 2024-10-25 07:36 PM PDT -t-will-gillis,2024-10-26T03:12:53Z,- t-will-gillis submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2397031343) at 2024-10-25 08:12 PM PDT -t-will-gillis,2024-10-26T18:03:16Z,- t-will-gillis opened pull request: [7638](https://github.com/hackforla/website/pull/7638) at 2024-10-26 11:03 AM PDT -t-will-gillis,2024-10-26T18:06:52Z,- t-will-gillis closed issue by PR 7634: [7500](https://github.com/hackforla/website/issues/7500#event-14909340634) at 2024-10-26 11:06 AM PDT -t-will-gillis,2024-10-26T20:41:56Z,- t-will-gillis unassigned from issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2392723934) at 2024-10-26 01:41 PM PDT -t-will-gillis,2024-10-26T20:49:10Z,- t-will-gillis assigned to issue: [7561](https://github.com/hackforla/website/issues/7561) at 2024-10-26 01:49 PM PDT -t-will-gillis,2024-10-26T20:50:23Z,- t-will-gillis commented on issue: [7561](https://github.com/hackforla/website/issues/7561#issuecomment-2439732622) at 2024-10-26 01:50 PM PDT -t-will-gillis,2024-10-26T21:09:01Z,- t-will-gillis unassigned from issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2381010498) at 2024-10-26 02:09 PM PDT -t-will-gillis,2024-10-26T21:24:16Z,- t-will-gillis unassigned from issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2381010597) at 2024-10-26 02:24 PM PDT -t-will-gillis,2024-10-26T21:32:11Z,- t-will-gillis unassigned from issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2381010610) at 2024-10-26 02:32 PM PDT -t-will-gillis,2024-10-26T21:42:33Z,- t-will-gillis unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2381010607) at 2024-10-26 02:42 PM PDT -t-will-gillis,2024-10-26T21:52:04Z,- t-will-gillis unassigned from issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2381010652) at 2024-10-26 02:52 PM PDT -t-will-gillis,2024-10-26T21:58:50Z,- t-will-gillis unassigned from issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2381010666) at 2024-10-26 02:58 PM PDT -t-will-gillis,2024-10-26T22:03:40Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2439749524) at 2024-10-26 03:03 PM PDT -t-will-gillis,2024-10-28T17:24:28Z,- t-will-gillis commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2442194137) at 2024-10-28 10:24 AM PDT -t-will-gillis,2024-10-28T17:37:43Z,- t-will-gillis commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442223140) at 2024-10-28 10:37 AM PDT -t-will-gillis,2024-10-28T22:10:49Z,- t-will-gillis commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2442769940) at 2024-10-28 03:10 PM PDT -t-will-gillis,2024-10-28T22:53:45Z,- t-will-gillis submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2400399461) at 2024-10-28 03:53 PM PDT -t-will-gillis,2024-10-29T02:25:46Z,- t-will-gillis commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2443035255) at 2024-10-28 07:25 PM PDT -t-will-gillis,2024-10-29T02:25:55Z,- t-will-gillis closed issue by PR 7616: [5196](https://github.com/hackforla/website/issues/5196#event-14971886470) at 2024-10-28 07:25 PM PDT -t-will-gillis,2024-10-30T02:06:40Z,- t-will-gillis submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2403406783) at 2024-10-29 07:06 PM PDT -t-will-gillis,2024-10-30T02:08:57Z,- t-will-gillis commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2445671314) at 2024-10-29 07:08 PM PDT -t-will-gillis,2024-10-30T02:09:26Z,- t-will-gillis closed issue by PR 7615: [2147](https://github.com/hackforla/website/issues/2147#event-14994711313) at 2024-10-29 07:09 PM PDT -t-will-gillis,2024-10-30T02:18:04Z,- t-will-gillis commented on issue: [6826](https://github.com/hackforla/website/issues/6826#issuecomment-2445680846) at 2024-10-29 07:18 PM PDT -t-will-gillis,2024-10-30T02:18:04Z,- t-will-gillis closed issue as completed: [6826](https://github.com/hackforla/website/issues/6826#event-14994798800) at 2024-10-29 07:18 PM PDT -t-will-gillis,2024-10-30T02:19:52Z,- t-will-gillis commented on issue: [6827](https://github.com/hackforla/website/issues/6827#issuecomment-2445682264) at 2024-10-29 07:19 PM PDT -t-will-gillis,2024-10-30T02:19:52Z,- t-will-gillis closed issue as completed: [6827](https://github.com/hackforla/website/issues/6827#event-14994809112) at 2024-10-29 07:19 PM PDT -t-will-gillis,2024-11-01T02:34:09Z,- t-will-gillis opened issue: [7682](https://github.com/hackforla/website/issues/7682) at 2024-10-31 07:34 PM PDT -t-will-gillis,2024-11-01T02:34:10Z,- t-will-gillis assigned to issue: [7682](https://github.com/hackforla/website/issues/7682) at 2024-10-31 07:34 PM PDT -t-will-gillis,2024-11-01T02:53:04Z,- t-will-gillis opened pull request: [7683](https://github.com/hackforla/website/pull/7683) at 2024-10-31 07:53 PM PDT -t-will-gillis,2024-11-01T03:06:29Z,- t-will-gillis pull request merged: [7683](https://github.com/hackforla/website/pull/7683#event-15055021443) at 2024-10-31 08:06 PM PDT -t-will-gillis,2024-11-01T03:06:30Z,- t-will-gillis closed issue by PR 7683: [7682](https://github.com/hackforla/website/issues/7682#event-15055022044) at 2024-10-31 08:06 PM PDT -t-will-gillis,2024-11-01T20:11:01Z,- t-will-gillis commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2452521817) at 2024-11-01 01:11 PM PDT -t-will-gillis,2024-11-01T20:11:01Z,- t-will-gillis reopened issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2452521817) at 2024-11-01 01:11 PM PDT -t-will-gillis,2024-11-02T22:28:51Z,- t-will-gillis commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2453212470) at 2024-11-02 02:28 PM PST -t-will-gillis,2024-11-02T22:32:22Z,- t-will-gillis commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2453213332) at 2024-11-02 02:32 PM PST -t-will-gillis,2024-11-02T22:32:29Z,- t-will-gillis pull request merged: [7638](https://github.com/hackforla/website/pull/7638#event-15086430077) at 2024-11-02 02:32 PM PST -t-will-gillis,2024-11-02T22:32:30Z,- t-will-gillis closed issue by PR 7638: [7614](https://github.com/hackforla/website/issues/7614#event-15086430641) at 2024-11-02 02:32 PM PST -t-will-gillis,2024-11-04T04:16:19Z,- t-will-gillis commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2453798056) at 2024-11-03 08:16 PM PST -t-will-gillis,2024-11-04T04:18:26Z,- t-will-gillis closed issue by PR 7665: [7584](https://github.com/hackforla/website/issues/7584#event-15097890321) at 2024-11-03 08:18 PM PST -t-will-gillis,2024-11-04T04:28:35Z,- t-will-gillis commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453807223) at 2024-11-03 08:28 PM PST -t-will-gillis,2024-11-04T04:47:48Z,- t-will-gillis opened issue: [7687](https://github.com/hackforla/website/issues/7687) at 2024-11-03 08:47 PM PST -t-will-gillis,2024-11-04T04:56:48Z,- t-will-gillis assigned to issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2381010666) at 2024-11-03 08:56 PM PST -t-will-gillis,2024-11-04T18:10:09Z,- t-will-gillis commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455385422) at 2024-11-04 10:10 AM PST -t-will-gillis,2024-11-04T22:10:13Z,- t-will-gillis opened pull request: [7688](https://github.com/hackforla/website/pull/7688) at 2024-11-04 02:10 PM PST -t-will-gillis,2024-11-04T22:11:27Z,- t-will-gillis assigned to issue: [7687](https://github.com/hackforla/website/issues/7687) at 2024-11-04 02:11 PM PST -t-will-gillis,2024-11-09T19:13:46Z,- t-will-gillis commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2466415862) at 2024-11-09 11:13 AM PST -t-will-gillis,2024-11-10T03:28:29Z,- t-will-gillis closed issue by PR 7711: [7646](https://github.com/hackforla/website/issues/7646#event-15240019186) at 2024-11-09 07:28 PM PST -t-will-gillis,2024-11-10T03:36:19Z,- t-will-gillis commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2466567805) at 2024-11-09 07:36 PM PST -t-will-gillis,2024-11-10T03:51:33Z,- t-will-gillis commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2466571176) at 2024-11-09 07:51 PM PST -t-will-gillis,2024-11-10T03:56:21Z,- t-will-gillis commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2466571975) at 2024-11-09 07:56 PM PST -t-will-gillis,2024-11-10T03:56:56Z,- t-will-gillis closed issue by PR 7706: [7643](https://github.com/hackforla/website/issues/7643#event-15240051999) at 2024-11-09 07:56 PM PST -t-will-gillis,2024-11-10T17:01:45Z,- t-will-gillis commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2466809731) at 2024-11-10 09:01 AM PST -t-will-gillis,2024-11-10T21:49:13Z,- t-will-gillis closed issue by PR 7637: [7541](https://github.com/hackforla/website/issues/7541#event-15242132892) at 2024-11-10 01:49 PM PST -t-will-gillis,2024-11-10T22:37:28Z,- t-will-gillis submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2425874894) at 2024-11-10 02:37 PM PST -t-will-gillis,2024-11-13T23:30:53Z,- t-will-gillis submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2434679548) at 2024-11-13 03:30 PM PST -t-will-gillis,2024-11-13T23:31:56Z,- t-will-gillis closed issue by PR 7631: [7576](https://github.com/hackforla/website/issues/7576#event-15290650072) at 2024-11-13 03:31 PM PST -t-will-gillis,2024-11-14T05:24:23Z,- t-will-gillis commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2475445425) at 2024-11-13 09:24 PM PST -t-will-gillis,2024-11-15T02:53:21Z,- t-will-gillis commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2477851304) at 2024-11-14 06:53 PM PST -t-will-gillis,2024-11-15T02:53:22Z,- t-will-gillis closed issue as completed: [6990](https://github.com/hackforla/website/issues/6990#event-15306596396) at 2024-11-14 06:53 PM PST -t-will-gillis,2024-11-17T17:05:41Z,- t-will-gillis commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2481384752) at 2024-11-17 09:05 AM PST -t-will-gillis,2024-11-17T17:21:45Z,- t-will-gillis closed issue by PR 7719: [7091](https://github.com/hackforla/website/issues/7091#event-15325544466) at 2024-11-17 09:21 AM PST -t-will-gillis,2024-11-17T17:26:16Z,- t-will-gillis closed issue by PR 7718: [7459](https://github.com/hackforla/website/issues/7459#event-15325553242) at 2024-11-17 09:26 AM PST -t-will-gillis,2024-11-17T17:27:08Z,- t-will-gillis commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2481392869) at 2024-11-17 09:27 AM PST -t-will-gillis,2024-11-17T17:36:57Z,- t-will-gillis commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481395889) at 2024-11-17 09:36 AM PST -t-will-gillis,2024-11-17T17:52:06Z,- t-will-gillis submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2441114125) at 2024-11-17 09:52 AM PST -t-will-gillis,2024-11-17T19:04:34Z,- t-will-gillis commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2481432687) at 2024-11-17 11:04 AM PST -t-will-gillis,2024-11-18T02:26:00Z,- t-will-gillis submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2441358297) at 2024-11-17 06:26 PM PST -t-will-gillis,2024-11-18T02:28:22Z,- t-will-gillis closed issue by PR 7720: [6981](https://github.com/hackforla/website/issues/6981#event-15327463872) at 2024-11-17 06:28 PM PST -t-will-gillis,2024-11-18T02:46:23Z,- t-will-gillis commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481820538) at 2024-11-17 06:46 PM PST -t-will-gillis,2024-11-18T02:47:03Z,- t-will-gillis closed issue by PR 7723: [7647](https://github.com/hackforla/website/issues/7647#event-15327581014) at 2024-11-17 06:47 PM PST -t-will-gillis,2024-11-18T03:00:35Z,- t-will-gillis closed issue by PR 7713: [7601](https://github.com/hackforla/website/issues/7601#event-15327680818) at 2024-11-17 07:00 PM PST -t-will-gillis,2024-11-18T23:17:47Z,- t-will-gillis commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2484347360) at 2024-11-18 03:17 PM PST -t-will-gillis,2024-11-18T23:38:10Z,- t-will-gillis commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2484393034) at 2024-11-18 03:38 PM PST -t-will-gillis,2024-11-18T23:38:40Z,- t-will-gillis commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2484393740) at 2024-11-18 03:38 PM PST -t-will-gillis,2024-11-19T00:58:56Z,- t-will-gillis commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2484487731) at 2024-11-18 04:58 PM PST -t-will-gillis,2024-11-19T03:47:31Z,- t-will-gillis commented on issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2484647942) at 2024-11-18 07:47 PM PST -t-will-gillis,2024-11-19T03:47:32Z,- t-will-gillis closed issue as completed: [7400](https://github.com/hackforla/website/issues/7400#event-15343270733) at 2024-11-18 07:47 PM PST -t-will-gillis,2024-11-21T17:06:31Z,- t-will-gillis pull request closed w/o merging: [7688](https://github.com/hackforla/website/pull/7688#event-15385512893) at 2024-11-21 09:06 AM PST -t-will-gillis,2024-11-21T17:09:26Z,- t-will-gillis commented on pull request: [7688](https://github.com/hackforla/website/pull/7688#issuecomment-2491812304) at 2024-11-21 09:09 AM PST -t-will-gillis,2024-11-24T17:21:58Z,- t-will-gillis commented on pull request: [7729](https://github.com/hackforla/website/pull/7729#issuecomment-2496119402) at 2024-11-24 09:21 AM PST -t-will-gillis,2024-11-24T17:31:25Z,- t-will-gillis commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2496127483) at 2024-11-24 09:31 AM PST -t-will-gillis,2024-11-24T17:47:01Z,- t-will-gillis commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2496133844) at 2024-11-24 09:47 AM PST -t-will-gillis,2024-11-24T20:16:59Z,- t-will-gillis commented on issue: [7399](https://github.com/hackforla/website/issues/7399#issuecomment-2496211439) at 2024-11-24 12:16 PM PST -t-will-gillis,2024-11-24T20:16:59Z,- t-will-gillis closed issue as not planned: [7399](https://github.com/hackforla/website/issues/7399#event-15411397546) at 2024-11-24 12:16 PM PST -t-will-gillis,2024-11-24T20:37:40Z,- t-will-gillis commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2496220290) at 2024-11-24 12:37 PM PST -t-will-gillis,2024-11-24T20:37:40Z,- t-will-gillis closed issue as completed: [7398](https://github.com/hackforla/website/issues/7398#event-15411438710) at 2024-11-24 12:37 PM PST -t-will-gillis,2024-11-24T20:38:09Z,- t-will-gillis commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2496220457) at 2024-11-24 12:38 PM PST -t-will-gillis,2024-11-25T05:51:27Z,- t-will-gillis reopened pull request: [7757](https://github.com/hackforla/website/pull/7757#event-15414493762) at 2024-11-24 09:51 PM PST -t-will-gillis,2024-11-26T01:09:24Z,- t-will-gillis assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498861238) at 2024-11-25 05:09 PM PST -t-will-gillis,2024-11-26T01:09:46Z,- t-will-gillis unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498861238) at 2024-11-25 05:09 PM PST -t-will-gillis,2024-11-26T01:12:16Z,- t-will-gillis assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499349652) at 2024-11-25 05:12 PM PST -t-will-gillis,2024-11-26T01:19:01Z,- t-will-gillis unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499352645) at 2024-11-25 05:19 PM PST -t-will-gillis,2024-11-26T03:40:33Z,- t-will-gillis opened issue: [7769](https://github.com/hackforla/website/issues/7769) at 2024-11-25 07:40 PM PST -t-will-gillis,2024-11-26T03:40:34Z,- t-will-gillis assigned to issue: [7769](https://github.com/hackforla/website/issues/7769) at 2024-11-25 07:40 PM PST -t-will-gillis,2024-11-26T03:54:23Z,- t-will-gillis opened issue: [7770](https://github.com/hackforla/website/issues/7770) at 2024-11-25 07:54 PM PST -t-will-gillis,2024-11-26T03:54:24Z,- t-will-gillis assigned to issue: [7770](https://github.com/hackforla/website/issues/7770) at 2024-11-25 07:54 PM PST -t-will-gillis,2024-11-26T04:23:35Z,- t-will-gillis opened issue: [7771](https://github.com/hackforla/website/issues/7771) at 2024-11-25 08:23 PM PST -t-will-gillis,2024-11-26T04:23:36Z,- t-will-gillis assigned to issue: [7771](https://github.com/hackforla/website/issues/7771) at 2024-11-25 08:23 PM PST -t-will-gillis,2024-11-27T21:57:48Z,- t-will-gillis opened issue: [7775](https://github.com/hackforla/website/issues/7775) at 2024-11-27 01:57 PM PST -t-will-gillis,2024-11-27T22:03:41Z,- t-will-gillis closed issue by PR 7747: [7702](https://github.com/hackforla/website/issues/7702#event-15458007035) at 2024-11-27 02:03 PM PST -t-will-gillis,2024-11-27T22:08:04Z,- t-will-gillis closed issue by PR 7748: [7603](https://github.com/hackforla/website/issues/7603#event-15458032793) at 2024-11-27 02:08 PM PST -t-will-gillis,2024-11-27T22:15:39Z,- t-will-gillis closed issue by PR 7773: [7730](https://github.com/hackforla/website/issues/7730#event-15458078970) at 2024-11-27 02:15 PM PST -t-will-gillis,2024-11-27T23:10:22Z,- t-will-gillis submitted pull request review: [7729](https://github.com/hackforla/website/pull/7729#pullrequestreview-2466071577) at 2024-11-27 03:10 PM PST -t-will-gillis,2024-11-27T23:10:29Z,- t-will-gillis closed issue by PR 7729: [7530](https://github.com/hackforla/website/issues/7530#event-15458481986) at 2024-11-27 03:10 PM PST -t-will-gillis,2024-11-27T23:43:15Z,- t-will-gillis commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2504986791) at 2024-11-27 03:43 PM PST -t-will-gillis,2024-11-28T18:49:30Z,- t-will-gillis opened pull request: [7777](https://github.com/hackforla/website/pull/7777) at 2024-11-28 10:49 AM PST -t-will-gillis,2024-11-28T19:04:23Z,- t-will-gillis commented on issue: [7687](https://github.com/hackforla/website/issues/7687#issuecomment-2506660294) at 2024-11-28 11:04 AM PST -t-will-gillis,2024-11-28T19:04:23Z,- t-will-gillis closed issue as not planned: [7687](https://github.com/hackforla/website/issues/7687#event-15468738587) at 2024-11-28 11:04 AM PST -t-will-gillis,2024-11-28T19:30:57Z,- t-will-gillis submitted pull request review: [7776](https://github.com/hackforla/website/pull/7776#pullrequestreview-2468750084) at 2024-11-28 11:30 AM PST -t-will-gillis,2024-11-30T16:56:23Z,- t-will-gillis submitted pull request review: [7776](https://github.com/hackforla/website/pull/7776#pullrequestreview-2470964924) at 2024-11-30 08:56 AM PST -t-will-gillis,2024-12-01T02:33:55Z,- t-will-gillis commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2509533351) at 2024-11-30 06:33 PM PST -t-will-gillis,2024-12-01T02:34:09Z,- t-will-gillis closed issue by PR 7776: [7378](https://github.com/hackforla/website/issues/7378#event-15483050741) at 2024-11-30 06:34 PM PST -t-will-gillis,2024-12-03T17:47:54Z,- t-will-gillis commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2515220175) at 2024-12-03 09:47 AM PST -t-will-gillis,2024-12-03T17:49:06Z,- t-will-gillis commented on issue: [7779](https://github.com/hackforla/website/issues/7779#issuecomment-2515222449) at 2024-12-03 09:49 AM PST -t-will-gillis,2024-12-03T17:49:29Z,- t-will-gillis commented on issue: [7780](https://github.com/hackforla/website/issues/7780#issuecomment-2515223180) at 2024-12-03 09:49 AM PST -t-will-gillis,2024-12-03T17:51:45Z,- t-will-gillis commented on issue: [7779](https://github.com/hackforla/website/issues/7779#issuecomment-2515227395) at 2024-12-03 09:51 AM PST -t-will-gillis,2024-12-03T17:51:45Z,- t-will-gillis closed issue as not planned: [7779](https://github.com/hackforla/website/issues/7779#event-15514002742) at 2024-12-03 09:51 AM PST -t-will-gillis,2024-12-03T18:28:42Z,- t-will-gillis commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2515298294) at 2024-12-03 10:28 AM PST -t-will-gillis,2024-12-03T18:28:42Z,- t-will-gillis closed issue as completed: [7778](https://github.com/hackforla/website/issues/7778#event-15514457762) at 2024-12-03 10:28 AM PST -t-will-gillis,2024-12-03T19:33:53Z,- t-will-gillis commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2515419820) at 2024-12-03 11:33 AM PST -t-will-gillis,2024-12-09T02:39:48Z,- t-will-gillis commented on issue: [7394](https://github.com/hackforla/website/issues/7394#issuecomment-2526683870) at 2024-12-08 06:39 PM PST -t-will-gillis,2024-12-09T02:39:48Z,- t-will-gillis closed issue as not planned: [7394](https://github.com/hackforla/website/issues/7394#event-15576110952) at 2024-12-08 06:39 PM PST -t-will-gillis,2024-12-09T02:51:09Z,- t-will-gillis commented on issue: [7396](https://github.com/hackforla/website/issues/7396#issuecomment-2526694929) at 2024-12-08 06:51 PM PST -t-will-gillis,2024-12-09T02:51:09Z,- t-will-gillis closed issue as completed: [7396](https://github.com/hackforla/website/issues/7396#event-15576176983) at 2024-12-08 06:51 PM PST -t-will-gillis,2024-12-09T03:18:13Z,- t-will-gillis commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2526732963) at 2024-12-08 07:18 PM PST -t-will-gillis,2024-12-09T03:18:13Z,- t-will-gillis closed issue as completed: [7587](https://github.com/hackforla/website/issues/7587#event-15576398088) at 2024-12-08 07:18 PM PST -t-will-gillis,2024-12-09T03:38:50Z,- t-will-gillis commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2526786123) at 2024-12-08 07:38 PM PST -t-will-gillis,2024-12-09T03:44:51Z,- t-will-gillis commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2526796494) at 2024-12-08 07:44 PM PST -t-will-gillis,2024-12-09T03:55:26Z,- t-will-gillis commented on issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2526806547) at 2024-12-08 07:55 PM PST -t-will-gillis,2024-12-09T03:55:27Z,- t-will-gillis closed issue as not planned: [7608](https://github.com/hackforla/website/issues/7608#event-15576772145) at 2024-12-08 07:55 PM PST -t-will-gillis,2024-12-09T04:03:26Z,- t-will-gillis commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2526821369) at 2024-12-08 08:03 PM PST -t-will-gillis,2024-12-09T04:03:26Z,- t-will-gillis reopened issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2526821369) at 2024-12-08 08:03 PM PST -t-will-gillis,2024-12-09T04:05:27Z,- t-will-gillis commented on issue: [7796](https://github.com/hackforla/website/issues/7796#issuecomment-2526831527) at 2024-12-08 08:05 PM PST -t-will-gillis,2024-12-09T04:05:27Z,- t-will-gillis closed issue as completed: [7796](https://github.com/hackforla/website/issues/7796#event-15576841690) at 2024-12-08 08:05 PM PST -t-will-gillis,2024-12-09T06:04:05Z,- t-will-gillis commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2527009390) at 2024-12-08 10:04 PM PST -t-will-gillis,2024-12-09T06:04:06Z,- t-will-gillis closed issue as completed: [7161](https://github.com/hackforla/website/issues/7161#event-15577756819) at 2024-12-08 10:04 PM PST -t-will-gillis,2024-12-09T06:07:05Z,- t-will-gillis commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2527020777) at 2024-12-08 10:07 PM PST -t-will-gillis,2024-12-09T06:07:05Z,- t-will-gillis closed issue as completed: [7163](https://github.com/hackforla/website/issues/7163#event-15577784068) at 2024-12-08 10:07 PM PST -t-will-gillis,2024-12-26T18:22:47Z,- t-will-gillis commented on issue: [7813](https://github.com/hackforla/website/issues/7813#issuecomment-2563006751) at 2024-12-26 10:22 AM PST -t-will-gillis,2024-12-26T18:22:47Z,- t-will-gillis closed issue as completed: [7813](https://github.com/hackforla/website/issues/7813#event-15767302093) at 2024-12-26 10:22 AM PST -t-will-gillis,2025-01-01T19:24:00Z,- t-will-gillis commented on issue: [7790](https://github.com/hackforla/website/issues/7790#issuecomment-2567119144) at 2025-01-01 11:24 AM PST -t-will-gillis,2025-01-01T19:25:48Z,- t-will-gillis commented on issue: [7814](https://github.com/hackforla/website/issues/7814#issuecomment-2567119576) at 2025-01-01 11:25 AM PST -t-will-gillis,2025-01-01T19:25:48Z,- t-will-gillis closed issue as completed: [7814](https://github.com/hackforla/website/issues/7814#event-15794439163) at 2025-01-01 11:25 AM PST -t-will-gillis,2025-01-06T23:06:23Z,- t-will-gillis opened pull request: [7817](https://github.com/hackforla/website/pull/7817) at 2025-01-06 03:06 PM PST -t-will-gillis,2025-01-06T23:54:11Z,- t-will-gillis opened pull request: [7818](https://github.com/hackforla/website/pull/7818) at 2025-01-06 03:54 PM PST -t-will-gillis,2025-01-06T23:57:38Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2574135362) at 2025-01-06 03:57 PM PST -t-will-gillis,2025-01-09T03:00:44Z,- t-will-gillis commented on pull request: [7818](https://github.com/hackforla/website/pull/7818#issuecomment-2579084669) at 2025-01-08 07:00 PM PST -t-will-gillis,2025-01-09T03:00:53Z,- t-will-gillis pull request merged: [7818](https://github.com/hackforla/website/pull/7818#event-15862190624) at 2025-01-08 07:00 PM PST -t-will-gillis,2025-01-09T03:00:54Z,- t-will-gillis closed issue by PR 7818: [7770](https://github.com/hackforla/website/issues/7770#event-15862190691) at 2025-01-08 07:00 PM PST -t-will-gillis,2025-01-09T03:27:14Z,- t-will-gillis opened issue: [7820](https://github.com/hackforla/website/issues/7820) at 2025-01-08 07:27 PM PST -t-will-gillis,2025-01-09T03:36:26Z,- t-will-gillis opened pull request: [7821](https://github.com/hackforla/website/pull/7821) at 2025-01-08 07:36 PM PST -t-will-gillis,2025-01-09T03:39:34Z,- t-will-gillis pull request merged: [7821](https://github.com/hackforla/website/pull/7821#event-15862387586) at 2025-01-08 07:39 PM PST -t-will-gillis,2025-01-09T03:39:35Z,- t-will-gillis closed issue by PR 7821: [7820](https://github.com/hackforla/website/issues/7820#event-15862387673) at 2025-01-08 07:39 PM PST -t-will-gillis,2025-01-09T03:45:15Z,- t-will-gillis commented on issue: [7819](https://github.com/hackforla/website/issues/7819#issuecomment-2579124525) at 2025-01-08 07:45 PM PST -t-will-gillis,2025-01-09T03:45:30Z,- t-will-gillis closed issue as completed: [7819](https://github.com/hackforla/website/issues/7819#event-15862417598) at 2025-01-08 07:45 PM PST -t-will-gillis,2025-01-11T18:58:11Z,- t-will-gillis opened issue: [7823](https://github.com/hackforla/website/issues/7823) at 2025-01-11 10:58 AM PST -t-will-gillis,2025-01-11T20:35:56Z,- t-will-gillis opened issue: [7824](https://github.com/hackforla/website/issues/7824) at 2025-01-11 12:35 PM PST -t-will-gillis,2025-01-12T17:51:09Z,- t-will-gillis closed issue by PR 7816: [7641](https://github.com/hackforla/website/issues/7641#event-15896474464) at 2025-01-12 09:51 AM PST -t-will-gillis,2025-01-12T18:44:27Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2585867292) at 2025-01-12 10:44 AM PST -t-will-gillis,2025-01-13T18:28:09Z,- t-will-gillis commented on pull request: [7816](https://github.com/hackforla/website/pull/7816#issuecomment-2587896689) at 2025-01-13 10:28 AM PST -t-will-gillis,2025-01-13T18:46:19Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2587930848) at 2025-01-13 10:46 AM PST -t-will-gillis,2025-01-14T04:26:32Z,- t-will-gillis commented on issue: [7826](https://github.com/hackforla/website/issues/7826#issuecomment-2588920102) at 2025-01-13 08:26 PM PST -t-will-gillis,2025-01-14T04:26:32Z,- t-will-gillis closed issue as completed: [7826](https://github.com/hackforla/website/issues/7826#event-15917611010) at 2025-01-13 08:26 PM PST -t-will-gillis,2025-01-16T21:57:14Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2596988864) at 2025-01-16 01:57 PM PST -t-will-gillis,2025-01-16T22:05:49Z,- t-will-gillis commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2597005932) at 2025-01-16 02:05 PM PST -t-will-gillis,2025-01-16T22:35:27Z,- t-will-gillis commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2597045729) at 2025-01-16 02:35 PM PST -t-will-gillis,2025-01-16T22:35:27Z,- t-will-gillis closed issue as completed: [7168](https://github.com/hackforla/website/issues/7168#event-15968543740) at 2025-01-16 02:35 PM PST -t-will-gillis,2025-01-20T22:32:52Z,- t-will-gillis commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2603312271) at 2025-01-20 02:32 PM PST -t-will-gillis,2025-01-23T04:56:22Z,- t-will-gillis opened issue: [7847](https://github.com/hackforla/website/issues/7847) at 2025-01-22 08:56 PM PST -t-will-gillis,2025-01-26T18:20:53Z,- t-will-gillis commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2614536919) at 2025-01-26 10:20 AM PST -t-will-gillis,2025-01-26T18:20:53Z,- t-will-gillis closed issue as completed: [6453](https://github.com/hackforla/website/issues/6453#event-16070752299) at 2025-01-26 10:20 AM PST -t-will-gillis,2025-01-26T18:51:56Z,- t-will-gillis closed issue by PR 7846: [7583](https://github.com/hackforla/website/issues/7583#event-16070813716) at 2025-01-26 10:51 AM PST -t-will-gillis,2025-01-26T22:51:23Z,- t-will-gillis commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614622577) at 2025-01-26 02:51 PM PST -t-will-gillis,2025-01-28T04:40:59Z,- t-will-gillis commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2617831737) at 2025-01-27 08:40 PM PST -t-will-gillis,2025-01-31T18:46:57Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2628068777) at 2025-01-31 10:46 AM PST -t-will-gillis,2025-01-31T19:48:03Z,- t-will-gillis commented on issue: [7617](https://github.com/hackforla/website/issues/7617#issuecomment-2628248361) at 2025-01-31 11:48 AM PST -t-will-gillis,2025-02-01T00:50:44Z,- t-will-gillis pull request merged: [7817](https://github.com/hackforla/website/pull/7817#event-16147390068) at 2025-01-31 04:50 PM PST -t-will-gillis,2025-02-01T00:50:45Z,- t-will-gillis closed issue by PR 7817: [7771](https://github.com/hackforla/website/issues/7771#event-16147390136) at 2025-01-31 04:50 PM PST -t-will-gillis,2025-02-01T01:02:00Z,- t-will-gillis commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2628646137) at 2025-01-31 05:02 PM PST -t-will-gillis,2025-02-01T18:02:37Z,- t-will-gillis opened issue: [7870](https://github.com/hackforla/website/issues/7870) at 2025-02-01 10:02 AM PST -t-will-gillis,2025-02-01T18:02:37Z,- t-will-gillis assigned to issue: [7870](https://github.com/hackforla/website/issues/7870) at 2025-02-01 10:02 AM PST -t-will-gillis,2025-02-01T19:09:26Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2629074618) at 2025-02-01 11:09 AM PST -t-will-gillis,2025-02-01T19:20:47Z,- t-will-gillis opened pull request: [7871](https://github.com/hackforla/website/pull/7871) at 2025-02-01 11:20 AM PST -t-will-gillis,2025-02-01T19:27:59Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2629080829) at 2025-02-01 11:27 AM PST -t-will-gillis,2025-02-02T22:29:55Z,- t-will-gillis closed issue by PR 7851: [7645](https://github.com/hackforla/website/issues/7645#event-16153903272) at 2025-02-02 02:29 PM PST -t-will-gillis,2025-02-02T22:35:43Z,- t-will-gillis closed issue by PR 7852: [7356](https://github.com/hackforla/website/issues/7356#event-16153919421) at 2025-02-02 02:35 PM PST -t-will-gillis,2025-02-02T22:37:56Z,- t-will-gillis closed issue by PR 7861: [7732](https://github.com/hackforla/website/issues/7732#event-16153924076) at 2025-02-02 02:37 PM PST -t-will-gillis,2025-02-02T23:06:49Z,- t-will-gillis submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2588671298) at 2025-02-02 03:06 PM PST -t-will-gillis,2025-02-02T23:09:15Z,- t-will-gillis commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2629605074) at 2025-02-02 03:09 PM PST -t-will-gillis,2025-02-02T23:15:16Z,- t-will-gillis commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2629607320) at 2025-02-02 03:15 PM PST -t-will-gillis,2025-02-03T01:49:59Z,- t-will-gillis closed issue by PR 7845: [7754](https://github.com/hackforla/website/issues/7754#event-16154739518) at 2025-02-02 05:49 PM PST -t-will-gillis,2025-02-03T22:49:54Z,- t-will-gillis commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2632356934) at 2025-02-03 02:49 PM PST -t-will-gillis,2025-02-03T22:50:04Z,- t-will-gillis commented on issue: [7561](https://github.com/hackforla/website/issues/7561#issuecomment-2632357199) at 2025-02-03 02:50 PM PST -t-will-gillis,2025-02-03T22:50:04Z,- t-will-gillis closed issue as completed: [7561](https://github.com/hackforla/website/issues/7561#event-16169800062) at 2025-02-03 02:50 PM PST -t-will-gillis,2025-02-04T03:33:39Z,- t-will-gillis closed issue as not planned: [7847](https://github.com/hackforla/website/issues/7847#event-16171782775) at 2025-02-03 07:33 PM PST -t-will-gillis,2025-02-04T04:13:33Z,- t-will-gillis opened issue: [7881](https://github.com/hackforla/website/issues/7881) at 2025-02-03 08:13 PM PST -t-will-gillis,2025-02-04T04:40:22Z,- t-will-gillis opened issue: [7882](https://github.com/hackforla/website/issues/7882) at 2025-02-03 08:40 PM PST -t-will-gillis,2025-02-04T04:41:03Z,- t-will-gillis assigned to issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2632838403) at 2025-02-03 08:41 PM PST -t-will-gillis,2025-02-04T05:04:05Z,- t-will-gillis opened issue: [7883](https://github.com/hackforla/website/issues/7883) at 2025-02-03 09:04 PM PST -t-will-gillis,2025-02-04T05:09:31Z,- t-will-gillis assigned to issue: [7881](https://github.com/hackforla/website/issues/7881) at 2025-02-03 09:09 PM PST -t-will-gillis,2025-02-04T05:12:08Z,- t-will-gillis commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2632896506) at 2025-02-03 09:12 PM PST -t-will-gillis,2025-02-04T05:12:30Z,- t-will-gillis commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2632896851) at 2025-02-03 09:12 PM PST -t-will-gillis,2025-02-04T05:14:30Z,- t-will-gillis commented on issue: [6994](https://github.com/hackforla/website/issues/6994#issuecomment-2632898841) at 2025-02-03 09:14 PM PST -t-will-gillis,2025-02-04T05:14:30Z,- t-will-gillis closed issue as completed: [6994](https://github.com/hackforla/website/issues/6994#event-16172470874) at 2025-02-03 09:14 PM PST -t-will-gillis,2025-02-04T05:16:37Z,- t-will-gillis commented on issue: [7883](https://github.com/hackforla/website/issues/7883#issuecomment-2632901034) at 2025-02-03 09:16 PM PST -t-will-gillis,2025-02-04T05:16:37Z,- t-will-gillis closed issue as duplicate: [7883](https://github.com/hackforla/website/issues/7883#event-16172484396) at 2025-02-03 09:16 PM PST -t-will-gillis,2025-02-05T17:32:21Z,- t-will-gillis pull request merged: [7871](https://github.com/hackforla/website/pull/7871#event-16198367807) at 2025-02-05 09:32 AM PST -t-will-gillis,2025-02-05T17:32:22Z,- t-will-gillis closed issue by PR 7871: [7870](https://github.com/hackforla/website/issues/7870#event-16198368040) at 2025-02-05 09:32 AM PST -t-will-gillis,2025-02-05T19:20:02Z,- t-will-gillis pull request merged: [7777](https://github.com/hackforla/website/pull/7777#event-16199689885) at 2025-02-05 11:20 AM PST -t-will-gillis,2025-02-05T19:20:03Z,- t-will-gillis closed issue by PR 7777: [7531](https://github.com/hackforla/website/issues/7531#event-16199690125) at 2025-02-05 11:20 AM PST -t-will-gillis,2025-02-07T19:37:45Z,- t-will-gillis commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2643890568) at 2025-02-07 11:37 AM PST -t-will-gillis,2025-02-07T19:37:46Z,- t-will-gillis reopened issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2643890568) at 2025-02-07 11:37 AM PST -t-will-gillis,2025-02-09T21:03:29Z,- t-will-gillis commented on issue: [7878](https://github.com/hackforla/website/issues/7878#issuecomment-2646599662) at 2025-02-09 01:03 PM PST -t-will-gillis,2025-02-09T21:04:00Z,- t-will-gillis commented on issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2646600223) at 2025-02-09 01:04 PM PST -t-will-gillis,2025-02-09T21:04:15Z,- t-will-gillis commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2646600307) at 2025-02-09 01:04 PM PST -t-will-gillis,2025-02-09T21:06:08Z,- t-will-gillis closed issue by PR 7880: [7479](https://github.com/hackforla/website/issues/7479#event-16239359428) at 2025-02-09 01:06 PM PST -t-will-gillis,2025-02-09T21:10:50Z,- t-will-gillis closed issue by PR 7900: [7855](https://github.com/hackforla/website/issues/7855#event-16239369100) at 2025-02-09 01:10 PM PST -t-will-gillis,2025-02-09T21:18:55Z,- t-will-gillis commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2646605562) at 2025-02-09 01:18 PM PST -t-will-gillis,2025-02-09T22:16:02Z,- t-will-gillis commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2646624748) at 2025-02-09 02:16 PM PST -t-will-gillis,2025-02-10T17:13:09Z,- t-will-gillis closed issue by PR 7898: [7652](https://github.com/hackforla/website/issues/7652#event-16251638709) at 2025-02-10 09:13 AM PST -t-will-gillis,2025-02-10T17:17:21Z,- t-will-gillis commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2648724294) at 2025-02-10 09:17 AM PST -t-will-gillis,2025-02-10T17:17:21Z,- t-will-gillis closed issue as completed: [7305](https://github.com/hackforla/website/issues/7305#event-16251702965) at 2025-02-10 09:17 AM PST -t-will-gillis,2025-02-13T03:08:37Z,- t-will-gillis commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2655353360) at 2025-02-12 07:08 PM PST -t-will-gillis,2025-02-13T22:50:42Z,- t-will-gillis commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2657873313) at 2025-02-13 02:50 PM PST -t-will-gillis,2025-02-13T22:50:42Z,- t-will-gillis closed issue as completed: [7397](https://github.com/hackforla/website/issues/7397#event-16303671525) at 2025-02-13 02:50 PM PST -t-will-gillis,2025-02-13T22:57:40Z,- t-will-gillis commented on issue: [7395](https://github.com/hackforla/website/issues/7395#issuecomment-2657882251) at 2025-02-13 02:57 PM PST -t-will-gillis,2025-02-13T22:57:40Z,- t-will-gillis closed issue as completed: [7395](https://github.com/hackforla/website/issues/7395#event-16303724279) at 2025-02-13 02:57 PM PST -t-will-gillis,2025-02-16T19:30:59Z,- t-will-gillis submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2619700188) at 2025-02-16 11:30 AM PST -t-will-gillis,2025-02-17T00:52:24Z,- t-will-gillis closed issue by PR 7862: [7753](https://github.com/hackforla/website/issues/7753#event-16325890578) at 2025-02-16 04:52 PM PST -t-will-gillis,2025-02-17T02:56:28Z,- t-will-gillis commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2661845749) at 2025-02-16 06:56 PM PST -t-will-gillis,2025-02-17T03:20:47Z,- t-will-gillis commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2661877061) at 2025-02-16 07:20 PM PST -t-will-gillis,2025-02-17T17:46:27Z,- t-will-gillis submitted pull request review: [7913](https://github.com/hackforla/website/pull/7913#pullrequestreview-2621694760) at 2025-02-17 09:46 AM PST -t-will-gillis,2025-02-17T17:58:21Z,- t-will-gillis commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2663799779) at 2025-02-17 09:58 AM PST -t-will-gillis,2025-02-17T17:58:21Z,- t-will-gillis closed issue as duplicate: [7882](https://github.com/hackforla/website/issues/7882#event-16337423639) at 2025-02-17 09:58 AM PST -t-will-gillis,2025-02-17T18:47:53Z,- t-will-gillis submitted pull request review: [7914](https://github.com/hackforla/website/pull/7914#pullrequestreview-2621792209) at 2025-02-17 10:47 AM PST -t-will-gillis,2025-02-17T19:06:15Z,- t-will-gillis submitted pull request review: [7915](https://github.com/hackforla/website/pull/7915#pullrequestreview-2621814029) at 2025-02-17 11:06 AM PST -t-will-gillis,2025-02-17T21:15:34Z,- t-will-gillis commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2664086823) at 2025-02-17 01:15 PM PST -t-will-gillis,2025-02-17T21:15:35Z,- t-will-gillis closed issue as completed: [6034](https://github.com/hackforla/website/issues/6034#event-16338993388) at 2025-02-17 01:15 PM PST -t-will-gillis,2025-02-19T23:14:32Z,- t-will-gillis opened issue: [7929](https://github.com/hackforla/website/issues/7929) at 2025-02-19 03:14 PM PST -t-will-gillis,2025-02-21T18:08:44Z,- t-will-gillis commented on pull request: [7916](https://github.com/hackforla/website/pull/7916#issuecomment-2675225681) at 2025-02-21 10:08 AM PST -t-will-gillis,2025-02-21T18:09:33Z,- t-will-gillis commented on pull request: [7917](https://github.com/hackforla/website/pull/7917#issuecomment-2675227271) at 2025-02-21 10:09 AM PST -t-will-gillis,2025-02-21T18:10:12Z,- t-will-gillis commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2675228316) at 2025-02-21 10:10 AM PST -t-will-gillis,2025-02-21T18:11:07Z,- t-will-gillis commented on pull request: [7920](https://github.com/hackforla/website/pull/7920#issuecomment-2675229744) at 2025-02-21 10:11 AM PST -t-will-gillis,2025-02-21T21:37:13Z,- t-will-gillis opened pull request: [7933](https://github.com/hackforla/website/pull/7933) at 2025-02-21 01:37 PM PST -t-will-gillis,2025-02-22T19:26:41Z,- t-will-gillis commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2676362080) at 2025-02-22 11:26 AM PST -t-will-gillis,2025-02-22T19:26:41Z,- t-will-gillis closed issue as completed: [6552](https://github.com/hackforla/website/issues/6552#event-16415259732) at 2025-02-22 11:26 AM PST -t-will-gillis,2025-02-22T19:34:21Z,- t-will-gillis commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2676364780) at 2025-02-22 11:34 AM PST -t-will-gillis,2025-02-23T01:15:37Z,- t-will-gillis assigned to issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2381010597) at 2025-02-22 05:15 PM PST -t-will-gillis,2025-02-23T19:30:42Z,- t-will-gillis commented on pull request: [7935](https://github.com/hackforla/website/pull/7935#issuecomment-2677074600) at 2025-02-23 11:30 AM PST -t-will-gillis,2025-02-23T19:40:15Z,- t-will-gillis commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2677078036) at 2025-02-23 11:40 AM PST -t-will-gillis,2025-02-23T19:52:29Z,- t-will-gillis submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2635731166) at 2025-02-23 11:52 AM PST -t-will-gillis,2025-02-23T19:56:08Z,- t-will-gillis commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2677084084) at 2025-02-23 11:56 AM PST -t-will-gillis,2025-02-23T19:56:26Z,- t-will-gillis closed issue by PR 7910: [7438](https://github.com/hackforla/website/issues/7438#event-16422324054) at 2025-02-23 11:56 AM PST -t-will-gillis,2025-02-24T17:55:28Z,- t-will-gillis opened issue: [7938](https://github.com/hackforla/website/issues/7938) at 2025-02-24 09:55 AM PST -t-will-gillis,2025-02-24T18:01:15Z,- t-will-gillis opened issue: [7939](https://github.com/hackforla/website/issues/7939) at 2025-02-24 10:01 AM PST -t-will-gillis,2025-02-24T18:21:41Z,- t-will-gillis commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2679300054) at 2025-02-24 10:21 AM PST -t-will-gillis,2025-02-25T02:58:10Z,- t-will-gillis commented on issue: [5579](https://github.com/hackforla/website/issues/5579#issuecomment-2680280900) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:58:11Z,- t-will-gillis closed issue as completed: [5579](https://github.com/hackforla/website/issues/5579#event-16443815925) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:58:26Z,- t-will-gillis reopened issue: [5579](https://github.com/hackforla/website/issues/5579#event-16443815925) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:58:31Z,- t-will-gillis closed issue as not planned: [5579](https://github.com/hackforla/website/issues/5579#event-16443817973) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:59:10Z,- t-will-gillis commented on issue: [5578](https://github.com/hackforla/website/issues/5578#issuecomment-2680281971) at 2025-02-24 06:59 PM PST -t-will-gillis,2025-02-25T02:59:10Z,- t-will-gillis closed issue as not planned: [5578](https://github.com/hackforla/website/issues/5578#event-16443822740) at 2025-02-24 06:59 PM PST -t-will-gillis,2025-02-25T03:10:39Z,- t-will-gillis opened issue: [7940](https://github.com/hackforla/website/issues/7940) at 2025-02-24 07:10 PM PST -t-will-gillis,2025-02-25T03:12:36Z,- t-will-gillis opened issue: [7941](https://github.com/hackforla/website/issues/7941) at 2025-02-24 07:12 PM PST -t-will-gillis,2025-02-25T03:15:10Z,- t-will-gillis opened issue: [7942](https://github.com/hackforla/website/issues/7942) at 2025-02-24 07:15 PM PST -t-will-gillis,2025-02-25T03:18:28Z,- t-will-gillis pull request merged: [7933](https://github.com/hackforla/website/pull/7933#event-16445365737) at 2025-02-24 07:18 PM PST -t-will-gillis,2025-02-25T03:18:29Z,- t-will-gillis closed issue by PR 7933: [7881](https://github.com/hackforla/website/issues/7881#event-16445366017) at 2025-02-24 07:18 PM PST -t-will-gillis,2025-02-25T23:54:39Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2683551164) at 2025-02-25 03:54 PM PST -t-will-gillis,2025-02-26T01:01:04Z,- t-will-gillis submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2642784592) at 2025-02-25 05:01 PM PST -t-will-gillis,2025-02-26T01:01:28Z,- t-will-gillis closed issue by PR 7932: [7843](https://github.com/hackforla/website/issues/7843#event-16470950881) at 2025-02-25 05:01 PM PST -t-will-gillis,2025-02-26T01:03:14Z,- t-will-gillis closed issue by PR 7931: [7775](https://github.com/hackforla/website/issues/7775#event-16470962878) at 2025-02-25 05:03 PM PST -t-will-gillis,2025-03-01T22:35:05Z,- t-will-gillis commented on issue: [7959](https://github.com/hackforla/website/issues/7959#issuecomment-2692451132) at 2025-03-01 02:35 PM PST -t-will-gillis,2025-03-01T22:35:05Z,- t-will-gillis closed issue as completed: [7959](https://github.com/hackforla/website/issues/7959#event-16523512512) at 2025-03-01 02:35 PM PST -t-will-gillis,2025-03-01T22:39:08Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2692452392) at 2025-03-01 02:39 PM PST -t-will-gillis,2025-03-02T02:35:38Z,- t-will-gillis commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2692523161) at 2025-03-01 06:35 PM PST -t-will-gillis,2025-03-02T02:35:39Z,- t-will-gillis closed issue as completed: [6953](https://github.com/hackforla/website/issues/6953#event-16523917313) at 2025-03-01 06:35 PM PST -t-will-gillis,2025-03-02T02:53:44Z,- t-will-gillis commented on issue: [7709](https://github.com/hackforla/website/issues/7709#issuecomment-2692527595) at 2025-03-01 06:53 PM PST -t-will-gillis,2025-03-02T03:48:01Z,- t-will-gillis commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2692541785) at 2025-03-01 07:48 PM PST -t-will-gillis,2025-03-02T03:50:03Z,- t-will-gillis commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2692542233) at 2025-03-01 07:50 PM PST -t-will-gillis,2025-03-02T03:53:33Z,- t-will-gillis commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-01 07:53 PM PST -t-will-gillis,2025-03-02T04:09:44Z,- t-will-gillis commented on issue: [7387](https://github.com/hackforla/website/issues/7387#issuecomment-2692547232) at 2025-03-01 08:09 PM PST -t-will-gillis,2025-03-02T04:09:45Z,- t-will-gillis closed issue as completed: [7387](https://github.com/hackforla/website/issues/7387#event-16524048181) at 2025-03-01 08:09 PM PST -t-will-gillis,2025-03-02T04:25:17Z,- t-will-gillis submitted pull request review: [7917](https://github.com/hackforla/website/pull/7917#pullrequestreview-2652627955) at 2025-03-01 08:25 PM PST -t-will-gillis,2025-03-02T04:27:16Z,- t-will-gillis commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2692551360) at 2025-03-01 08:27 PM PST -t-will-gillis,2025-03-02T04:32:19Z,- t-will-gillis submitted pull request review: [7918](https://github.com/hackforla/website/pull/7918#pullrequestreview-2652628521) at 2025-03-01 08:32 PM PST -t-will-gillis,2025-03-02T04:44:39Z,- t-will-gillis submitted pull request review: [7916](https://github.com/hackforla/website/pull/7916#pullrequestreview-2652629783) at 2025-03-01 08:44 PM PST -t-will-gillis,2025-03-02T04:56:33Z,- t-will-gillis submitted pull request review: [7961](https://github.com/hackforla/website/pull/7961#pullrequestreview-2652630944) at 2025-03-01 08:56 PM PST -t-will-gillis,2025-03-02T04:59:14Z,- t-will-gillis closed issue by PR 7951: [7440](https://github.com/hackforla/website/issues/7440#event-16524113090) at 2025-03-01 08:59 PM PST -t-will-gillis,2025-03-03T04:17:35Z,- t-will-gillis commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2693238668) at 2025-03-02 08:17 PM PST -t-will-gillis,2025-03-05T00:06:55Z,- t-will-gillis commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2699313862) at 2025-03-04 04:06 PM PST -t-will-gillis,2025-03-05T00:06:55Z,- t-will-gillis closed issue as completed: [7727](https://github.com/hackforla/website/issues/7727#event-16583206980) at 2025-03-04 04:06 PM PST -t-will-gillis,2025-03-05T00:08:30Z,- t-will-gillis commented on issue: [7937](https://github.com/hackforla/website/issues/7937#issuecomment-2699316035) at 2025-03-04 04:08 PM PST -t-will-gillis,2025-03-07T00:27:19Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2705239730) at 2025-03-06 04:27 PM PST -t-will-gillis,2025-03-07T05:13:25Z,- t-will-gillis closed issue as duplicate: [7848](https://github.com/hackforla/website/issues/7848#event-16626783738) at 2025-03-06 09:13 PM PST -t-will-gillis,2025-03-09T17:36:33Z,- t-will-gillis closed issue by PR 7983: [7875](https://github.com/hackforla/website/issues/7875#event-16645518605) at 2025-03-09 10:36 AM PDT -t-will-gillis,2025-03-09T19:40:46Z,- t-will-gillis submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2669506293) at 2025-03-09 12:40 PM PDT -t-will-gillis,2025-03-11T00:38:10Z,- t-will-gillis unassigned from issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2046313581) at 2025-03-10 05:38 PM PDT -t-will-gillis,2025-03-11T01:57:51Z,- t-will-gillis commented on issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2712293790) at 2025-03-10 06:57 PM PDT -t-will-gillis,2025-03-11T02:01:11Z,- t-will-gillis commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2712297965) at 2025-03-10 07:01 PM PDT -t-will-gillis,2025-03-11T02:18:23Z,- t-will-gillis commented on issue: [7393](https://github.com/hackforla/website/issues/7393#issuecomment-2712327537) at 2025-03-10 07:18 PM PDT -t-will-gillis,2025-03-11T02:18:24Z,- t-will-gillis closed issue as completed: [7393](https://github.com/hackforla/website/issues/7393#event-16664433741) at 2025-03-10 07:18 PM PDT -t-will-gillis,2025-03-11T03:23:04Z,- t-will-gillis commented on issue: [7690](https://github.com/hackforla/website/issues/7690#issuecomment-2712469535) at 2025-03-10 08:23 PM PDT -t-will-gillis,2025-03-11T03:23:05Z,- t-will-gillis closed issue as completed: [7690](https://github.com/hackforla/website/issues/7690#event-16665720072) at 2025-03-10 08:23 PM PDT -t-will-gillis,2025-03-12T04:05:55Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2716375730) at 2025-03-11 09:05 PM PDT -t-will-gillis,2025-03-12T04:07:36Z,- t-will-gillis commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2716379109) at 2025-03-11 09:07 PM PDT -t-will-gillis,2025-03-14T23:36:04Z,- t-will-gillis submitted pull request review: [7987](https://github.com/hackforla/website/pull/7987#pullrequestreview-2687074887) at 2025-03-14 04:36 PM PDT -t-will-gillis,2025-03-15T01:30:51Z,- t-will-gillis commented on issue: [7946](https://github.com/hackforla/website/issues/7946#issuecomment-2726097303) at 2025-03-14 06:30 PM PDT -t-will-gillis,2025-03-15T01:34:03Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2726099197) at 2025-03-14 06:34 PM PDT -t-will-gillis,2025-03-15T16:34:33Z,- t-will-gillis commented on issue: [7946](https://github.com/hackforla/website/issues/7946#issuecomment-2726772051) at 2025-03-15 09:34 AM PDT -t-will-gillis,2025-03-17T23:59:23Z,- t-will-gillis opened issue: [7994](https://github.com/hackforla/website/issues/7994) at 2025-03-17 04:59 PM PDT -t-will-gillis,2025-03-18T02:07:43Z,- t-will-gillis opened issue: [7995](https://github.com/hackforla/website/issues/7995) at 2025-03-17 07:07 PM PDT -t-will-gillis,2025-03-18T02:08:56Z,- t-will-gillis commented on issue: [7865](https://github.com/hackforla/website/issues/7865#issuecomment-2731400163) at 2025-03-17 07:08 PM PDT -t-will-gillis,2025-03-18T02:08:57Z,- t-will-gillis closed issue as completed: [7865](https://github.com/hackforla/website/issues/7865#event-16817535171) at 2025-03-17 07:08 PM PDT -t-will-gillis,2025-03-18T02:13:04Z,- t-will-gillis opened issue: [7996](https://github.com/hackforla/website/issues/7996) at 2025-03-17 07:13 PM PDT -t-will-gillis,2025-03-18T02:14:24Z,- t-will-gillis commented on issue: [7960](https://github.com/hackforla/website/issues/7960#issuecomment-2731406683) at 2025-03-17 07:14 PM PDT -t-will-gillis,2025-03-18T02:14:25Z,- t-will-gillis closed issue as completed: [7960](https://github.com/hackforla/website/issues/7960#event-16817598891) at 2025-03-17 07:14 PM PDT -t-will-gillis,2025-03-18T02:24:48Z,- t-will-gillis opened issue: [7997](https://github.com/hackforla/website/issues/7997) at 2025-03-17 07:24 PM PDT -t-will-gillis,2025-03-18T02:26:18Z,- t-will-gillis commented on issue: [7867](https://github.com/hackforla/website/issues/7867#issuecomment-2731420399) at 2025-03-17 07:26 PM PDT -t-will-gillis,2025-03-18T02:26:18Z,- t-will-gillis closed issue as completed: [7867](https://github.com/hackforla/website/issues/7867#event-16817704228) at 2025-03-17 07:26 PM PDT -t-will-gillis,2025-03-18T02:40:41Z,- t-will-gillis opened issue: [7998](https://github.com/hackforla/website/issues/7998) at 2025-03-17 07:40 PM PDT -t-will-gillis,2025-03-18T02:50:07Z,- t-will-gillis opened issue: [7999](https://github.com/hackforla/website/issues/7999) at 2025-03-17 07:50 PM PDT -t-will-gillis,2025-03-18T02:53:50Z,- t-will-gillis opened issue: [8000](https://github.com/hackforla/website/issues/8000) at 2025-03-17 07:53 PM PDT -t-will-gillis,2025-03-18T03:16:07Z,- t-will-gillis opened issue: [8001](https://github.com/hackforla/website/issues/8001) at 2025-03-17 08:16 PM PDT -t-will-gillis,2025-03-18T03:17:12Z,- t-will-gillis opened issue: [8002](https://github.com/hackforla/website/issues/8002) at 2025-03-17 08:17 PM PDT -t-will-gillis,2025-03-18T03:18:10Z,- t-will-gillis opened issue: [8003](https://github.com/hackforla/website/issues/8003) at 2025-03-17 08:18 PM PDT -t-will-gillis,2025-03-18T03:19:05Z,- t-will-gillis opened issue: [8004](https://github.com/hackforla/website/issues/8004) at 2025-03-17 08:19 PM PDT -t-will-gillis,2025-03-18T03:22:00Z,- t-will-gillis commented on issue: [7863](https://github.com/hackforla/website/issues/7863#issuecomment-2731505120) at 2025-03-17 08:22 PM PDT -t-will-gillis,2025-03-18T03:22:00Z,- t-will-gillis closed issue as completed: [7863](https://github.com/hackforla/website/issues/7863#event-16818396809) at 2025-03-17 08:22 PM PDT -t-will-gillis,2025-03-18T03:36:37Z,- t-will-gillis commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2731524167) at 2025-03-17 08:36 PM PDT -t-will-gillis,2025-03-18T22:03:59Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2734842526) at 2025-03-18 03:03 PM PDT -t-will-gillis,2025-03-19T20:53:28Z,- t-will-gillis commented on issue: [7993](https://github.com/hackforla/website/issues/7993#issuecomment-2738085675) at 2025-03-19 01:53 PM PDT -t-will-gillis,2025-03-21T20:55:25Z,- t-will-gillis opened issue: [8010](https://github.com/hackforla/website/issues/8010) at 2025-03-21 01:55 PM PDT -t-will-gillis,2025-03-22T22:46:37Z,- t-will-gillis commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2745902062) at 2025-03-22 03:46 PM PDT -t-will-gillis,2025-03-22T22:51:44Z,- t-will-gillis commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2745903598) at 2025-03-22 03:51 PM PDT -t-will-gillis,2025-03-22T22:54:10Z,- t-will-gillis commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2745904162) at 2025-03-22 03:54 PM PDT -t-will-gillis,2025-03-22T23:28:52Z,- t-will-gillis commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2745913516) at 2025-03-22 04:28 PM PDT -t-will-gillis,2025-03-23T17:58:58Z,- t-will-gillis commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2746340640) at 2025-03-23 10:58 AM PDT -t-will-gillis,2025-03-23T17:58:58Z,- t-will-gillis closed issue as completed: [7831](https://github.com/hackforla/website/issues/7831#event-16945235244) at 2025-03-23 10:58 AM PDT -t-will-gillis,2025-03-24T20:47:45Z,- t-will-gillis commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2749357480) at 2025-03-24 01:47 PM PDT -t-will-gillis,2025-03-24T21:00:02Z,- t-will-gillis commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2749383619) at 2025-03-24 02:00 PM PDT -t-will-gillis,2025-03-24T21:00:03Z,- t-will-gillis closed issue as completed: [7389](https://github.com/hackforla/website/issues/7389#event-16963082898) at 2025-03-24 02:00 PM PDT -t-will-gillis,2025-03-24T21:06:30Z,- t-will-gillis commented on issue: [7450](https://github.com/hackforla/website/issues/7450#issuecomment-2749399363) at 2025-03-24 02:06 PM PDT -t-will-gillis,2025-03-24T21:06:30Z,- t-will-gillis closed issue as completed: [7450](https://github.com/hackforla/website/issues/7450#event-16963172270) at 2025-03-24 02:06 PM PDT -t-will-gillis,2025-03-24T22:07:51Z,- t-will-gillis commented on issue: [7735](https://github.com/hackforla/website/issues/7735#issuecomment-2749510419) at 2025-03-24 03:07 PM PDT -t-will-gillis,2025-03-24T22:07:52Z,- t-will-gillis closed issue as not planned: [7735](https://github.com/hackforla/website/issues/7735#event-16963860377) at 2025-03-24 03:07 PM PDT -t-will-gillis,2025-03-24T22:09:00Z,- t-will-gillis commented on issue: [7993](https://github.com/hackforla/website/issues/7993#issuecomment-2749512189) at 2025-03-24 03:09 PM PDT -t-will-gillis,2025-03-24T22:09:00Z,- t-will-gillis closed issue as not planned: [7993](https://github.com/hackforla/website/issues/7993#event-16963871064) at 2025-03-24 03:09 PM PDT -t-will-gillis,2025-03-25T00:06:44Z,- t-will-gillis commented on pull request: [5204](https://github.com/hackforla/website/pull/5204#issuecomment-2749694158) at 2025-03-24 05:06 PM PDT -t-will-gillis,2025-03-25T00:08:11Z,- t-will-gillis commented on pull request: [5577](https://github.com/hackforla/website/pull/5577#issuecomment-2749696395) at 2025-03-24 05:08 PM PDT -t-will-gillis,2025-03-25T02:02:29Z,- t-will-gillis assigned to issue: [7940](https://github.com/hackforla/website/issues/7940) at 2025-03-24 07:02 PM PDT -t-will-gillis,2025-03-25T03:05:30Z,- t-will-gillis opened pull request: [8019](https://github.com/hackforla/website/pull/8019) at 2025-03-24 08:05 PM PDT -t-will-gillis,2025-03-25T03:15:03Z,- t-will-gillis commented on pull request: [8019](https://github.com/hackforla/website/pull/8019#issuecomment-2749948945) at 2025-03-24 08:15 PM PDT -t-will-gillis,2025-03-25T03:15:45Z,- t-will-gillis pull request merged: [8019](https://github.com/hackforla/website/pull/8019#event-16966435635) at 2025-03-24 08:15 PM PDT -t-will-gillis,2025-03-25T03:15:46Z,- t-will-gillis closed issue by PR 8019: [7940](https://github.com/hackforla/website/issues/7940#event-16966435756) at 2025-03-24 08:15 PM PDT -t-will-gillis,2025-03-25T18:16:14Z,- t-will-gillis commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2752148264) at 2025-03-25 11:16 AM PDT -t-will-gillis,2025-03-25T18:18:10Z,- t-will-gillis commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2752153456) at 2025-03-25 11:18 AM PDT -t-will-gillis,2025-03-25T18:48:46Z,- t-will-gillis submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2714859302) at 2025-03-25 11:48 AM PDT -t-will-gillis,2025-03-26T17:26:59Z,- t-will-gillis commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2755181531) at 2025-03-26 10:26 AM PDT -t-will-gillis,2025-03-26T17:27:34Z,- t-will-gillis closed issue by PR 7981: [7877](https://github.com/hackforla/website/issues/7877#event-16997251415) at 2025-03-26 10:27 AM PDT -t-will-gillis,2025-03-31T21:55:58Z,- t-will-gillis opened issue: [8024](https://github.com/hackforla/website/issues/8024) at 2025-03-31 02:55 PM PDT -t-will-gillis,2025-03-31T22:12:26Z,- t-will-gillis opened issue: [8025](https://github.com/hackforla/website/issues/8025) at 2025-03-31 03:12 PM PDT -t-will-gillis,2025-03-31T22:54:48Z,- t-will-gillis unassigned from issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2499587714) at 2025-03-31 03:54 PM PDT -t-will-gillis,2025-03-31T22:55:08Z,- t-will-gillis assigned to issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2499587714) at 2025-03-31 03:55 PM PDT -t-will-gillis,2025-04-01T00:22:26Z,- t-will-gillis opened pull request: [8026](https://github.com/hackforla/website/pull/8026) at 2025-03-31 05:22 PM PDT -t-will-gillis,2025-04-01T00:24:30Z,- t-will-gillis pull request merged: [8026](https://github.com/hackforla/website/pull/8026#event-17065604708) at 2025-03-31 05:24 PM PDT -t-will-gillis,2025-04-01T02:30:47Z,- t-will-gillis commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-03-31 07:30 PM PDT -t-will-gillis,2025-04-01T15:51:59Z,- t-will-gillis commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2769837311) at 2025-04-01 08:51 AM PDT -t-will-gillis,2025-04-01T15:51:59Z,- t-will-gillis closed issue as completed: [7232](https://github.com/hackforla/website/issues/7232#event-17078097566) at 2025-04-01 08:51 AM PDT -t-will-gillis,2025-04-01T16:20:55Z,- t-will-gillis opened issue: [8035](https://github.com/hackforla/website/issues/8035) at 2025-04-01 09:20 AM PDT -t-will-gillis,2025-04-01T16:47:29Z,- t-will-gillis commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2769972649) at 2025-04-01 09:47 AM PDT -t-will-gillis,2025-04-01T16:52:41Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2769983934) at 2025-04-01 09:52 AM PDT -t-will-gillis,2025-04-01T21:55:18Z,- t-will-gillis commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2770774394) at 2025-04-01 02:55 PM PDT -t-will-gillis,2025-04-01T21:55:19Z,- t-will-gillis closed issue as completed: [7524](https://github.com/hackforla/website/issues/7524#event-17083151254) at 2025-04-01 02:55 PM PDT -t-will-gillis,2025-04-02T19:00:31Z,- t-will-gillis opened pull request: [8037](https://github.com/hackforla/website/pull/8037) at 2025-04-02 12:00 PM PDT -t-will-gillis,2025-04-02T20:47:56Z,- t-will-gillis commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2773705137) at 2025-04-02 01:47 PM PDT -t-will-gillis,2025-04-03T21:15:47Z,- t-will-gillis assigned to issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2046313581) at 2025-04-03 02:15 PM PDT -t-will-gillis,2025-04-04T18:17:45Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779458029) at 2025-04-04 11:17 AM PDT -t-will-gillis,2025-04-04T18:19:11Z,- t-will-gillis commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2779460576) at 2025-04-04 11:19 AM PDT -t-will-gillis,2025-04-04T18:20:36Z,- t-will-gillis commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2779463072) at 2025-04-04 11:20 AM PDT -t-will-gillis,2025-04-04T19:03:48Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779535962) at 2025-04-04 12:03 PM PDT -t-will-gillis,2025-04-04T19:06:28Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779540748) at 2025-04-04 12:06 PM PDT -t-will-gillis,2025-04-04T19:45:49Z,- t-will-gillis commented on pull request: [8044](https://github.com/hackforla/website/pull/8044#issuecomment-2779605841) at 2025-04-04 12:45 PM PDT -t-will-gillis,2025-04-04T19:55:03Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779619942) at 2025-04-04 12:55 PM PDT -t-will-gillis,2025-04-05T22:24:31Z,- t-will-gillis submitted pull request review: [8045](https://github.com/hackforla/website/pull/8045#pullrequestreview-2744996905) at 2025-04-05 03:24 PM PDT -t-will-gillis,2025-04-06T16:14:13Z,- t-will-gillis submitted pull request review: [8045](https://github.com/hackforla/website/pull/8045#pullrequestreview-2745184454) at 2025-04-06 09:14 AM PDT -t-will-gillis,2025-04-06T16:20:21Z,- t-will-gillis closed issue by PR 8039: [7487](https://github.com/hackforla/website/issues/7487#event-17143639213) at 2025-04-06 09:20 AM PDT -t-will-gillis,2025-04-06T18:31:54Z,- t-will-gillis unassigned from issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2767603092) at 2025-04-06 11:31 AM PDT -t-will-gillis,2025-04-06T18:52:15Z,- t-will-gillis opened issue: [8048](https://github.com/hackforla/website/issues/8048) at 2025-04-06 11:52 AM PDT -t-will-gillis,2025-04-06T18:53:35Z,- t-will-gillis assigned to issue: [8048](https://github.com/hackforla/website/issues/8048#issuecomment-2781562260) at 2025-04-06 11:53 AM PDT -t-will-gillis,2025-04-06T19:01:07Z,- t-will-gillis opened pull request: [8049](https://github.com/hackforla/website/pull/8049) at 2025-04-06 12:01 PM PDT -t-will-gillis,2025-04-06T19:02:49Z,- t-will-gillis pull request merged: [8049](https://github.com/hackforla/website/pull/8049#event-17144008031) at 2025-04-06 12:02 PM PDT -t-will-gillis,2025-04-06T19:02:50Z,- t-will-gillis closed issue by PR 8049: [8048](https://github.com/hackforla/website/issues/8048#event-17144008069) at 2025-04-06 12:02 PM PDT -t-will-gillis,2025-04-07T02:17:16Z,- t-will-gillis closed issue by PR 7936: [7484](https://github.com/hackforla/website/issues/7484#event-17145393888) at 2025-04-06 07:17 PM PDT -t-will-gillis,2025-04-07T02:47:08Z,- t-will-gillis commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2781889480) at 2025-04-06 07:47 PM PDT -t-will-gillis,2025-04-07T20:23:13Z,- t-will-gillis commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2784538221) at 2025-04-07 01:23 PM PDT -t-will-gillis,2025-04-07T20:25:07Z,- t-will-gillis commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2784541978) at 2025-04-07 01:25 PM PDT -t-will-gillis,2025-04-07T20:25:07Z,- t-will-gillis closed issue as completed: [8025](https://github.com/hackforla/website/issues/8025#event-17160069359) at 2025-04-07 01:25 PM PDT -t-will-gillis,2025-04-08T21:46:15Z,- t-will-gillis opened issue: [8055](https://github.com/hackforla/website/issues/8055) at 2025-04-08 02:46 PM PDT -t-will-gillis,2025-04-08T21:46:15Z,- t-will-gillis opened issue: [8055](https://github.com/hackforla/website/issues/8055) at 2025-04-08 02:46 PM PDT -t-will-gillis,2025-04-12T21:31:36Z,- t-will-gillis closed issue by PR 8045: [7532](https://github.com/hackforla/website/issues/7532#event-17235550895) at 2025-04-12 02:31 PM PDT -t-will-gillis,2025-04-13T18:56:20Z,- t-will-gillis opened issue: [8064](https://github.com/hackforla/website/issues/8064) at 2025-04-13 11:56 AM PDT -t-will-gillis,2025-04-13T19:12:35Z,- t-will-gillis commented on issue: [8027](https://github.com/hackforla/website/issues/8027#issuecomment-2800083204) at 2025-04-13 12:12 PM PDT -t-will-gillis,2025-04-13T19:21:58Z,- t-will-gillis commented on issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2800086802) at 2025-04-13 12:21 PM PDT -t-will-gillis,2025-04-13T19:25:15Z,- t-will-gillis commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2800088044) at 2025-04-13 12:25 PM PDT -t-will-gillis,2025-04-13T19:26:22Z,- t-will-gillis commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2800088489) at 2025-04-13 12:26 PM PDT -t-will-gillis,2025-04-13T19:27:03Z,- t-will-gillis commented on issue: [7550](https://github.com/hackforla/website/issues/7550#issuecomment-2800088701) at 2025-04-13 12:27 PM PDT -t-will-gillis,2025-04-13T19:28:15Z,- t-will-gillis commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2800089102) at 2025-04-13 12:28 PM PDT -t-will-gillis,2025-04-13T19:37:14Z,- t-will-gillis commented on pull request: [8058](https://github.com/hackforla/website/pull/8058#issuecomment-2800092451) at 2025-04-13 12:37 PM PDT -t-will-gillis,2025-04-13T20:52:47Z,- t-will-gillis submitted pull request review: [8058](https://github.com/hackforla/website/pull/8058#pullrequestreview-2762841049) at 2025-04-13 01:52 PM PDT -t-will-gillis,2025-04-15T01:25:52Z,- t-will-gillis pull request merged: [8037](https://github.com/hackforla/website/pull/8037#event-17258766136) at 2025-04-14 06:25 PM PDT -t-will-gillis,2025-04-15T01:25:54Z,- t-will-gillis closed issue by PR 8037: [7535](https://github.com/hackforla/website/issues/7535#event-17258766315) at 2025-04-14 06:25 PM PDT -t-will-gillis,2025-04-19T17:38:58Z,- t-will-gillis closed issue by PR 8059: [7550](https://github.com/hackforla/website/issues/7550#event-17329270048) at 2025-04-19 10:38 AM PDT -t-will-gillis,2025-04-19T17:44:06Z,- t-will-gillis commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2816799795) at 2025-04-19 10:44 AM PDT -t-will-gillis,2025-04-19T18:16:27Z,- t-will-gillis commented on issue: [8027](https://github.com/hackforla/website/issues/8027#issuecomment-2816812618) at 2025-04-19 11:16 AM PDT -t-will-gillis,2025-04-19T18:48:21Z,- t-will-gillis commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2816823208) at 2025-04-19 11:48 AM PDT -t-will-gillis,2025-04-19T19:28:44Z,- t-will-gillis commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2816836559) at 2025-04-19 12:28 PM PDT -t-will-gillis,2025-04-19T19:32:19Z,- t-will-gillis submitted pull request review: [8058](https://github.com/hackforla/website/pull/8058#pullrequestreview-2780078083) at 2025-04-19 12:32 PM PDT -t-will-gillis,2025-04-19T22:05:08Z,- t-will-gillis closed issue by PR 8058: [7547](https://github.com/hackforla/website/issues/7547#event-17329759073) at 2025-04-19 03:05 PM PDT -t-will-gillis,2025-04-20T18:13:00Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2817280213) at 2025-04-20 11:13 AM PDT -t-will-gillis,2025-04-20T18:38:02Z,- t-will-gillis commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2817288317) at 2025-04-20 11:38 AM PDT -t-will-gillis,2025-04-20T19:35:23Z,- t-will-gillis submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2780316992) at 2025-04-20 12:35 PM PDT -t-will-gillis,2025-04-22T19:25:51Z,- t-will-gillis submitted pull request review: [8080](https://github.com/hackforla/website/pull/8080#pullrequestreview-2785122350) at 2025-04-22 12:25 PM PDT -t-will-gillis,2025-04-22T21:07:27Z,- t-will-gillis opened issue: [8081](https://github.com/hackforla/website/issues/8081) at 2025-04-22 02:07 PM PDT -t-will-gillis,2025-04-22T21:08:10Z,- t-will-gillis assigned to issue: [8081](https://github.com/hackforla/website/issues/8081#issuecomment-2822487180) at 2025-04-22 02:08 PM PDT -t-will-gillis,2025-04-22T21:15:55Z,- t-will-gillis opened pull request: [8082](https://github.com/hackforla/website/pull/8082) at 2025-04-22 02:15 PM PDT -t-will-gillis,2025-04-22T21:39:12Z,- t-will-gillis commented on pull request: [8082](https://github.com/hackforla/website/pull/8082#issuecomment-2822540934) at 2025-04-22 02:39 PM PDT -t-will-gillis,2025-04-22T21:43:38Z,- t-will-gillis pull request merged: [8082](https://github.com/hackforla/website/pull/8082#event-17360688997) at 2025-04-22 02:43 PM PDT -t-will-gillis,2025-04-22T21:43:39Z,- t-will-gillis closed issue by PR 8082: [8081](https://github.com/hackforla/website/issues/8081#event-17360689137) at 2025-04-22 02:43 PM PDT -t-will-gillis,2025-04-22T23:18:20Z,- t-will-gillis opened issue: [8083](https://github.com/hackforla/website/issues/8083) at 2025-04-22 04:18 PM PDT -t-will-gillis,2025-04-22T23:18:20Z,- t-will-gillis assigned to issue: [8083](https://github.com/hackforla/website/issues/8083) at 2025-04-22 04:18 PM PDT -t-will-gillis,2025-04-23T05:29:17Z,- t-will-gillis opened pull request: [8085](https://github.com/hackforla/website/pull/8085) at 2025-04-22 10:29 PM PDT -t-will-gillis,2025-04-26T04:08:12Z,- t-will-gillis commented on pull request: [8089](https://github.com/hackforla/website/pull/8089#issuecomment-2831820163) at 2025-04-25 09:08 PM PDT -t-will-gillis,2025-04-26T17:18:21Z,- t-will-gillis submitted pull request review: [8089](https://github.com/hackforla/website/pull/8089#pullrequestreview-2796284758) at 2025-04-26 10:18 AM PDT -t-will-gillis,2025-04-26T17:21:16Z,- t-will-gillis commented on pull request: [8085](https://github.com/hackforla/website/pull/8085#issuecomment-2832452279) at 2025-04-26 10:21 AM PDT -t-will-gillis,2025-04-26T17:21:27Z,- t-will-gillis pull request merged: [8085](https://github.com/hackforla/website/pull/8085#event-17417792157) at 2025-04-26 10:21 AM PDT -t-will-gillis,2025-04-26T17:21:28Z,- t-will-gillis closed issue by PR 8085: [8083](https://github.com/hackforla/website/issues/8083#event-17417792181) at 2025-04-26 10:21 AM PDT -t-will-gillis,2025-04-26T17:30:39Z,- t-will-gillis commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832458560) at 2025-04-26 10:30 AM PDT -t-will-gillis,2025-04-26T17:40:23Z,- t-will-gillis commented on issue: [7381](https://github.com/hackforla/website/issues/7381#issuecomment-2832469511) at 2025-04-26 10:40 AM PDT -t-will-gillis,2025-04-26T17:40:23Z,- t-will-gillis closed issue as not planned: [7381](https://github.com/hackforla/website/issues/7381#event-17417873470) at 2025-04-26 10:40 AM PDT -t-will-gillis,2025-04-27T18:14:42Z,- t-will-gillis commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2833577761) at 2025-04-27 11:14 AM PDT -t-will-gillis,2025-04-27T18:14:42Z,- t-will-gillis closed issue as completed: [7448](https://github.com/hackforla/website/issues/7448#event-17424539310) at 2025-04-27 11:14 AM PDT -t-will-gillis,2025-04-27T18:56:32Z,- t-will-gillis submitted pull request review: [8089](https://github.com/hackforla/website/pull/8089#pullrequestreview-2797716663) at 2025-04-27 11:56 AM PDT -t-will-gillis,2025-04-27T18:58:09Z,- t-will-gillis closed issue by PR 8089: [7534](https://github.com/hackforla/website/issues/7534#event-17424635715) at 2025-04-27 11:58 AM PDT -t-will-gillis,2025-04-27T19:05:50Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2833597088) at 2025-04-27 12:05 PM PDT -t-will-gillis,2025-04-27T19:21:19Z,- t-will-gillis submitted pull request review: [8076](https://github.com/hackforla/website/pull/8076#pullrequestreview-2797721189) at 2025-04-27 12:21 PM PDT -t-will-gillis,2025-04-29T02:46:25Z,- t-will-gillis commented on issue: [8034](https://github.com/hackforla/website/issues/8034#issuecomment-2837295195) at 2025-04-28 07:46 PM PDT -t-will-gillis,2025-05-01T17:14:43Z,- t-will-gillis commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2845288490) at 2025-05-01 10:14 AM PDT -t-will-gillis,2025-05-05T17:33:04Z,- t-will-gillis closed issue by PR 8101: [7736](https://github.com/hackforla/website/issues/7736#event-17523433302) at 2025-05-05 10:33 AM PDT -t-will-gillis,2025-05-05T20:56:48Z,- t-will-gillis submitted pull request review: [8103](https://github.com/hackforla/website/pull/8103#pullrequestreview-2816090827) at 2025-05-05 01:56 PM PDT -t-will-gillis,2025-05-05T21:09:53Z,- t-will-gillis submitted pull request review: [8106](https://github.com/hackforla/website/pull/8106#pullrequestreview-2816119547) at 2025-05-05 02:09 PM PDT -t-will-gillis,2025-05-05T21:10:14Z,- t-will-gillis closed issue by PR 8106: [7536](https://github.com/hackforla/website/issues/7536#event-17526339785) at 2025-05-05 02:10 PM PDT -t-will-gillis,2025-05-05T21:11:11Z,- t-will-gillis commented on issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2852348824) at 2025-05-05 02:11 PM PDT -t-will-gillis,2025-05-05T21:11:11Z,- t-will-gillis closed issue as completed: [6454](https://github.com/hackforla/website/issues/6454#event-17526353782) at 2025-05-05 02:11 PM PDT -t-will-gillis,2025-05-06T21:41:33Z,- t-will-gillis submitted pull request review: [8103](https://github.com/hackforla/website/pull/8103#pullrequestreview-2819742934) at 2025-05-06 02:41 PM PDT -t-will-gillis,2025-05-06T21:41:54Z,- t-will-gillis closed issue by PR 8103: [8042](https://github.com/hackforla/website/issues/8042#event-17544923573) at 2025-05-06 02:41 PM PDT -t-will-gillis,2025-05-11T16:27:14Z,- t-will-gillis closed issue by PR 8118: [7922](https://github.com/hackforla/website/issues/7922#event-17606049308) at 2025-05-11 09:27 AM PDT -t-will-gillis,2025-05-11T16:31:45Z,- t-will-gillis commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2869969008) at 2025-05-11 09:31 AM PDT -t-will-gillis,2025-05-11T16:51:44Z,- t-will-gillis commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2870000376) at 2025-05-11 09:51 AM PDT -t-will-gillis,2025-05-11T17:06:37Z,- t-will-gillis commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2870007484) at 2025-05-11 10:06 AM PDT -t-will-gillis,2025-05-11T17:07:53Z,- t-will-gillis closed issue by PR 8116: [7876](https://github.com/hackforla/website/issues/7876#event-17606135928) at 2025-05-11 10:07 AM PDT -t-will-gillis,2025-05-11T17:29:23Z,- t-will-gillis commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2870019098) at 2025-05-11 10:29 AM PDT -t-will-gillis,2025-05-12T02:01:00Z,- t-will-gillis opened issue: [8122](https://github.com/hackforla/website/issues/8122) at 2025-05-11 07:01 PM PDT -t-will-gillis,2025-05-12T02:26:22Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2870543569) at 2025-05-11 07:26 PM PDT -t-will-gillis,2025-05-14T02:36:24Z,- t-will-gillis submitted pull request review: [8127](https://github.com/hackforla/website/pull/8127#pullrequestreview-2838558194) at 2025-05-13 07:36 PM PDT -t-will-gillis,2025-05-14T02:59:37Z,- t-will-gillis commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2878492194) at 2025-05-13 07:59 PM PDT -t-will-gillis,2025-05-15T23:12:41Z,- t-will-gillis submitted pull request review: [8127](https://github.com/hackforla/website/pull/8127#pullrequestreview-2845162219) at 2025-05-15 04:12 PM PDT -t-will-gillis,2025-05-15T23:12:51Z,- t-will-gillis closed issue by PR 8127: [7483](https://github.com/hackforla/website/issues/7483#event-17680329634) at 2025-05-15 04:12 PM PDT -t-will-gillis,2025-05-18T02:32:40Z,- t-will-gillis commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2888721932) at 2025-05-17 07:32 PM PDT -t-will-gillis,2025-05-18T02:33:05Z,- t-will-gillis closed issue by PR 8143: [7944](https://github.com/hackforla/website/issues/7944#event-17701412438) at 2025-05-17 07:33 PM PDT -t-will-gillis,2025-05-18T03:42:03Z,- t-will-gillis commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2888745522) at 2025-05-17 08:42 PM PDT -t-will-gillis,2025-05-18T23:22:10Z,- t-will-gillis commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2889270160) at 2025-05-18 04:22 PM PDT -t-will-gillis,2025-05-19T01:56:41Z,- t-will-gillis commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2889401714) at 2025-05-18 06:56 PM PDT -t-will-gillis,2025-05-19T01:56:41Z,- t-will-gillis closed issue as not planned: [7934](https://github.com/hackforla/website/issues/7934#event-17705738098) at 2025-05-18 06:56 PM PDT -t-will-gillis,2025-05-19T02:17:35Z,- t-will-gillis closed issue as duplicate: [6669](https://github.com/hackforla/website/issues/6669#event-17705896463) at 2025-05-18 07:17 PM PDT -t-will-gillis,2025-05-19T02:18:13Z,- t-will-gillis reopened issue: [6669](https://github.com/hackforla/website/issues/6669#event-17705896463) at 2025-05-18 07:18 PM PDT -t-will-gillis,2025-05-19T02:19:11Z,- t-will-gillis commented on issue: [6669](https://github.com/hackforla/website/issues/6669#issuecomment-2889427309) at 2025-05-18 07:19 PM PDT -t-will-gillis,2025-05-19T02:19:11Z,- t-will-gillis closed issue as not planned: [6669](https://github.com/hackforla/website/issues/6669#event-17705906960) at 2025-05-18 07:19 PM PDT -t-will-gillis,2025-05-19T03:27:31Z,- t-will-gillis submitted pull request review: [8144](https://github.com/hackforla/website/pull/8144#pullrequestreview-2849291563) at 2025-05-18 08:27 PM PDT -t-will-gillis,2025-05-19T21:17:26Z,- t-will-gillis commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2892282727) at 2025-05-19 02:17 PM PDT -t-will-gillis,2025-05-19T22:39:40Z,- t-will-gillis commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2892442549) at 2025-05-19 03:39 PM PDT -t-will-gillis,2025-05-20T00:38:05Z,- t-will-gillis commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2892583760) at 2025-05-19 05:38 PM PDT -t-will-gillis,2025-05-20T00:38:05Z,- t-will-gillis closed issue as completed: [6291](https://github.com/hackforla/website/issues/6291#event-17723875339) at 2025-05-19 05:38 PM PDT -t-will-gillis,2025-05-20T00:45:30Z,- t-will-gillis assigned to issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892551537) at 2025-05-19 05:45 PM PDT -t-will-gillis,2025-05-20T16:51:21Z,- t-will-gillis assigned to issue: [8035](https://github.com/hackforla/website/issues/8035) at 2025-05-20 09:51 AM PDT -t-will-gillis,2025-05-22T04:35:22Z,- t-will-gillis commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2899869650) at 2025-05-21 09:35 PM PDT -t-will-gillis,2025-05-22T17:41:45Z,- t-will-gillis commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2902060183) at 2025-05-22 10:41 AM PDT -t-will-gillis,2025-05-22T17:59:34Z,- t-will-gillis unassigned from issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892592217) at 2025-05-22 10:59 AM PDT -t-will-gillis,2025-05-22T18:26:04Z,- t-will-gillis opened issue: [8152](https://github.com/hackforla/website/issues/8152) at 2025-05-22 11:26 AM PDT -t-will-gillis,2025-05-22T18:28:04Z,- t-will-gillis commented on issue: [8035](https://github.com/hackforla/website/issues/8035#issuecomment-2902189362) at 2025-05-22 11:28 AM PDT -t-will-gillis,2025-05-22T18:28:04Z,- t-will-gillis closed issue as completed: [8035](https://github.com/hackforla/website/issues/8035#event-17777692746) at 2025-05-22 11:28 AM PDT -t-will-gillis,2025-05-22T18:32:46Z,- t-will-gillis assigned to issue: [8152](https://github.com/hackforla/website/issues/8152) at 2025-05-22 11:32 AM PDT -t-will-gillis,2025-05-22T18:38:19Z,- t-will-gillis opened pull request: [8153](https://github.com/hackforla/website/pull/8153) at 2025-05-22 11:38 AM PDT -t-will-gillis,2025-05-22T21:45:21Z,- t-will-gillis commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902643601) at 2025-05-22 02:45 PM PDT -t-will-gillis,2025-05-22T21:48:53Z,- t-will-gillis commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2902650394) at 2025-05-22 02:48 PM PDT -t-will-gillis,2025-05-22T21:48:53Z,- t-will-gillis closed issue as completed: [8024](https://github.com/hackforla/website/issues/8024#event-17780016349) at 2025-05-22 02:48 PM PDT -t-will-gillis,2025-05-23T16:12:56Z,- t-will-gillis submitted pull request review: [8154](https://github.com/hackforla/website/pull/8154#pullrequestreview-2864975417) at 2025-05-23 09:12 AM PDT -t-will-gillis,2025-05-23T16:25:40Z,- t-will-gillis closed issue by PR 8148: [7955](https://github.com/hackforla/website/issues/7955#event-17793025835) at 2025-05-23 09:25 AM PDT -t-will-gillis,2025-05-23T16:59:17Z,- t-will-gillis submitted pull request review: [8155](https://github.com/hackforla/website/pull/8155#pullrequestreview-2865104489) at 2025-05-23 09:59 AM PDT -t-will-gillis,2025-05-23T23:53:11Z,- t-will-gillis submitted pull request review: [8155](https://github.com/hackforla/website/pull/8155#pullrequestreview-2865887738) at 2025-05-23 04:53 PM PDT -t-will-gillis,2025-05-24T21:39:26Z,- t-will-gillis opened issue: [8157](https://github.com/hackforla/website/issues/8157) at 2025-05-24 02:39 PM PDT -t-will-gillis,2025-05-24T21:39:32Z,- t-will-gillis assigned to issue: [8157](https://github.com/hackforla/website/issues/8157) at 2025-05-24 02:39 PM PDT -t-will-gillis,2025-05-24T21:47:11Z,- t-will-gillis opened pull request: [8158](https://github.com/hackforla/website/pull/8158) at 2025-05-24 02:47 PM PDT -t-will-gillis,2025-05-24T21:49:13Z,- t-will-gillis pull request merged: [8158](https://github.com/hackforla/website/pull/8158#event-17801715085) at 2025-05-24 02:49 PM PDT -t-will-gillis,2025-05-24T21:49:14Z,- t-will-gillis closed issue by PR 8158: [8157](https://github.com/hackforla/website/issues/8157#event-17801715109) at 2025-05-24 02:49 PM PDT -t-will-gillis,2025-05-24T21:49:35Z,- t-will-gillis commented on pull request: [8158](https://github.com/hackforla/website/pull/8158#issuecomment-2907123099) at 2025-05-24 02:49 PM PDT -t-will-gillis,2025-05-25T17:45:03Z,- t-will-gillis closed issue by PR 8155: [7562](https://github.com/hackforla/website/issues/7562#event-17805048571) at 2025-05-25 10:45 AM PDT -t-will-gillis,2025-05-25T17:46:29Z,- t-will-gillis pull request merged: [8153](https://github.com/hackforla/website/pull/8153#event-17805051864) at 2025-05-25 10:46 AM PDT -t-will-gillis,2025-05-25T17:46:30Z,- t-will-gillis closed issue by PR 8153: [8152](https://github.com/hackforla/website/issues/8152#event-17805051916) at 2025-05-25 10:46 AM PDT -t-will-gillis,2025-05-25T18:47:59Z,- t-will-gillis submitted pull request review: [8154](https://github.com/hackforla/website/pull/8154#pullrequestreview-2866918804) at 2025-05-25 11:47 AM PDT -t-will-gillis,2025-05-25T18:48:10Z,- t-will-gillis closed issue by PR 8154: [7996](https://github.com/hackforla/website/issues/7996#event-17805199456) at 2025-05-25 11:48 AM PDT -t-will-gillis,2025-05-27T20:39:15Z,- t-will-gillis commented on pull request: [8161](https://github.com/hackforla/website/pull/8161#issuecomment-2913979477) at 2025-05-27 01:39 PM PDT -t-will-gillis,2025-06-01T16:14:59Z,- t-will-gillis commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2927478807) at 2025-06-01 09:14 AM PDT -t-will-gillis,2025-06-01T16:19:18Z,- t-will-gillis closed issue by PR 8149: [7956](https://github.com/hackforla/website/issues/7956#event-17915651329) at 2025-06-01 09:19 AM PDT -t-will-gillis,2025-06-01T16:21:37Z,- t-will-gillis commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2927484184) at 2025-06-01 09:21 AM PDT -t-will-gillis,2025-06-01T16:29:34Z,- t-will-gillis commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2927495881) at 2025-06-01 09:29 AM PDT -t-will-gillis,2025-06-01T16:29:34Z,- t-will-gillis closed issue as completed: [7895](https://github.com/hackforla/website/issues/7895#event-17915745899) at 2025-06-01 09:29 AM PDT -t-will-gillis,2025-06-01T19:58:40Z,- t-will-gillis commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2927799029) at 2025-06-01 12:58 PM PDT -t-will-gillis,2025-06-01T19:58:40Z,- t-will-gillis reopened issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2927799029) at 2025-06-01 12:58 PM PDT -t-will-gillis,2025-06-01T22:39:54Z,- t-will-gillis commented on issue: [8001](https://github.com/hackforla/website/issues/8001#issuecomment-2928036835) at 2025-06-01 03:39 PM PDT -t-will-gillis,2025-06-01T22:39:55Z,- t-will-gillis closed issue as duplicate: [8001](https://github.com/hackforla/website/issues/8001#event-17919007404) at 2025-06-01 03:39 PM PDT -t-will-gillis,2025-06-01T23:09:34Z,- t-will-gillis commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2928075765) at 2025-06-01 04:09 PM PDT -t-will-gillis,2025-06-01T23:12:19Z,- t-will-gillis commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2928078715) at 2025-06-01 04:12 PM PDT -t-will-gillis,2025-06-03T00:26:04Z,- t-will-gillis commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2932972457) at 2025-06-02 05:26 PM PDT -t-will-gillis,2025-06-03T00:26:04Z,- t-will-gillis closed issue as not planned: [3112](https://github.com/hackforla/website/issues/3112#event-17945486960) at 2025-06-02 05:26 PM PDT -t-will-gillis,2025-06-03T00:54:25Z,- t-will-gillis commented on issue: [8093](https://github.com/hackforla/website/issues/8093#issuecomment-2933012244) at 2025-06-02 05:54 PM PDT -t-will-gillis,2025-06-03T00:54:25Z,- t-will-gillis closed issue as completed: [8093](https://github.com/hackforla/website/issues/8093#event-17945710379) at 2025-06-02 05:54 PM PDT -t-will-gillis,2025-06-04T02:19:22Z,- t-will-gillis commented on issue: [7452](https://github.com/hackforla/website/issues/7452#issuecomment-2938097178) at 2025-06-03 07:19 PM PDT -t-will-gillis,2025-06-04T02:19:23Z,- t-will-gillis closed issue as completed: [7452](https://github.com/hackforla/website/issues/7452#event-17971591948) at 2025-06-03 07:19 PM PDT -t-will-gillis,2025-06-04T02:23:10Z,- t-will-gillis commented on issue: [7451](https://github.com/hackforla/website/issues/7451#issuecomment-2938104038) at 2025-06-03 07:23 PM PDT -t-will-gillis,2025-06-04T02:23:10Z,- t-will-gillis closed issue as completed: [7451](https://github.com/hackforla/website/issues/7451#event-17971634462) at 2025-06-03 07:23 PM PDT -t-will-gillis,2025-06-04T17:29:05Z,- t-will-gillis closed issue by PR 8162: [8000](https://github.com/hackforla/website/issues/8000#event-17986163384) at 2025-06-04 10:29 AM PDT -t-will-gillis,2025-06-04T17:46:25Z,- t-will-gillis submitted pull request review: [8161](https://github.com/hackforla/website/pull/8161#pullrequestreview-2897595678) at 2025-06-04 10:46 AM PDT -t-will-gillis,2025-06-07T18:15:12Z,- t-will-gillis commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2952845069) at 2025-06-07 11:15 AM PDT -t-will-gillis,2025-06-07T18:15:12Z,- t-will-gillis closed issue as completed: [7927](https://github.com/hackforla/website/issues/7927#event-18038096173) at 2025-06-07 11:15 AM PDT -t-will-gillis,2025-06-07T18:41:13Z,- t-will-gillis commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2952865126) at 2025-06-07 11:41 AM PDT -t-will-gillis,2025-06-07T18:41:13Z,- t-will-gillis closed issue as completed: [7516](https://github.com/hackforla/website/issues/7516#event-18038230474) at 2025-06-07 11:41 AM PDT -t-will-gillis,2025-06-08T16:44:37Z,- t-will-gillis closed issue by PR 8172: [7642](https://github.com/hackforla/website/issues/7642#event-18045546533) at 2025-06-08 09:44 AM PDT -t-will-gillis,2025-06-08T22:05:12Z,- t-will-gillis commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2954297078) at 2025-06-08 03:05 PM PDT -t-will-gillis,2025-06-08T22:41:34Z,- t-will-gillis assigned to issue: [7994](https://github.com/hackforla/website/issues/7994) at 2025-06-08 03:41 PM PDT -t-will-gillis,2025-06-08T22:43:24Z,- t-will-gillis opened issue: [8174](https://github.com/hackforla/website/issues/8174) at 2025-06-08 03:43 PM PDT -t-will-gillis,2025-06-08T22:44:27Z,- t-will-gillis commented on issue: [7994](https://github.com/hackforla/website/issues/7994#issuecomment-2954311780) at 2025-06-08 03:44 PM PDT -t-will-gillis,2025-06-08T22:44:27Z,- t-will-gillis closed issue as completed: [7994](https://github.com/hackforla/website/issues/7994#event-18046618496) at 2025-06-08 03:44 PM PDT -t-will-gillis,2025-06-08T22:44:35Z,- t-will-gillis assigned to issue: [8174](https://github.com/hackforla/website/issues/8174) at 2025-06-08 03:44 PM PDT -t-will-gillis,2025-06-10T04:06:48Z,- t-will-gillis opened pull request: [8175](https://github.com/hackforla/website/pull/8175) at 2025-06-09 09:06 PM PDT -t-will-gillis,2025-06-10T17:49:45Z,- t-will-gillis commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2960141206) at 2025-06-10 10:49 AM PDT -t-will-gillis,2025-06-10T17:53:09Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2960150660) at 2025-06-10 10:53 AM PDT -t-will-gillis,2025-06-10T18:06:10Z,- t-will-gillis commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2960183355) at 2025-06-10 11:06 AM PDT -t-will-gillis,2025-06-10T18:26:47Z,- t-will-gillis opened issue: [8176](https://github.com/hackforla/website/issues/8176) at 2025-06-10 11:26 AM PDT -t-will-gillis,2025-06-10T18:26:47Z,- t-will-gillis assigned to issue: [8176](https://github.com/hackforla/website/issues/8176) at 2025-06-10 11:26 AM PDT -t-will-gillis,2025-06-10T18:50:33Z,- t-will-gillis opened pull request: [8177](https://github.com/hackforla/website/pull/8177) at 2025-06-10 11:50 AM PDT -t-will-gillis,2025-06-10T18:54:37Z,- t-will-gillis commented on issue: [8027](https://github.com/hackforla/website/issues/8027#issuecomment-2960293664) at 2025-06-10 11:54 AM PDT -t-will-gillis,2025-06-10T18:54:37Z,- t-will-gillis closed issue as completed: [8027](https://github.com/hackforla/website/issues/8027#event-18081180718) at 2025-06-10 11:54 AM PDT -t-will-gillis,2025-06-10T18:56:25Z,- t-will-gillis commented on issue: [7841](https://github.com/hackforla/website/issues/7841#issuecomment-2960297817) at 2025-06-10 11:56 AM PDT -t-will-gillis,2025-06-10T18:56:25Z,- t-will-gillis closed issue as completed: [7841](https://github.com/hackforla/website/issues/7841#event-18081203921) at 2025-06-10 11:56 AM PDT -t-will-gillis,2025-06-10T19:02:36Z,- t-will-gillis commented on issue: [8098](https://github.com/hackforla/website/issues/8098#issuecomment-2960312327) at 2025-06-10 12:02 PM PDT -t-will-gillis,2025-06-10T19:09:50Z,- t-will-gillis commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2960328335) at 2025-06-10 12:09 PM PDT -t-will-gillis,2025-06-10T21:31:17Z,- t-will-gillis opened issue: [8178](https://github.com/hackforla/website/issues/8178) at 2025-06-10 02:31 PM PDT -t-will-gillis,2025-06-10T21:33:19Z,- t-will-gillis assigned to issue: [8178](https://github.com/hackforla/website/issues/8178) at 2025-06-10 02:33 PM PDT -t-will-gillis,2025-06-10T22:52:10Z,- t-will-gillis commented on pull request: [8177](https://github.com/hackforla/website/pull/8177#issuecomment-2960759296) at 2025-06-10 03:52 PM PDT -t-will-gillis,2025-06-11T03:04:13Z,- t-will-gillis commented on pull request: [8179](https://github.com/hackforla/website/pull/8179#issuecomment-2961109191) at 2025-06-10 08:04 PM PDT -t-will-gillis,2025-06-13T16:52:31Z,- t-will-gillis submitted pull request review: [8181](https://github.com/hackforla/website/pull/8181#pullrequestreview-2925514385) at 2025-06-13 09:52 AM PDT -t-will-gillis,2025-06-14T01:58:55Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2972103176) at 2025-06-13 06:58 PM PDT -t-will-gillis,2025-06-14T20:41:37Z,- t-will-gillis submitted pull request review: [8182](https://github.com/hackforla/website/pull/8182#pullrequestreview-2928801349) at 2025-06-14 01:41 PM PDT -t-will-gillis,2025-06-15T16:37:10Z,- t-will-gillis submitted pull request review: [8181](https://github.com/hackforla/website/pull/8181#pullrequestreview-2929966013) at 2025-06-15 09:37 AM PDT -t-will-gillis,2025-06-15T18:09:19Z,- t-will-gillis pull request merged: [8177](https://github.com/hackforla/website/pull/8177#event-18158447389) at 2025-06-15 11:09 AM PDT -t-will-gillis,2025-06-16T21:07:27Z,- t-will-gillis closed issue by PR 8181: [8151](https://github.com/hackforla/website/issues/8151#event-18178439526) at 2025-06-16 02:07 PM PDT -t-will-gillis,2025-06-19T04:06:16Z,- t-will-gillis commented on issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2986528143) at 2025-06-18 09:06 PM PDT -t-will-gillis,2025-06-19T04:06:17Z,- t-will-gillis reopened issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2986528143) at 2025-06-18 09:06 PM PDT -t-will-gillis,2025-06-21T18:25:27Z,- t-will-gillis commented on issue: [6751](https://github.com/hackforla/website/issues/6751#issuecomment-2993710807) at 2025-06-21 11:25 AM PDT -t-will-gillis,2025-06-21T18:25:27Z,- t-will-gillis closed issue as completed: [6751](https://github.com/hackforla/website/issues/6751#event-18258166771) at 2025-06-21 11:25 AM PDT -t-will-gillis,2025-06-22T16:19:59Z,- t-will-gillis closed issue by PR 8180: [7636](https://github.com/hackforla/website/issues/7636#event-18261855098) at 2025-06-22 09:19 AM PDT -t-will-gillis,2025-06-22T16:38:18Z,- t-will-gillis commented on pull request: [8196](https://github.com/hackforla/website/pull/8196#issuecomment-2994308906) at 2025-06-22 09:38 AM PDT -t-will-gillis,2025-06-22T17:41:02Z,- t-will-gillis commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2994342097) at 2025-06-22 10:41 AM PDT -t-will-gillis,2025-06-23T02:15:46Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2994696932) at 2025-06-22 07:15 PM PDT -t-will-gillis,2025-06-23T18:08:54Z,- t-will-gillis commented on issue: [7423](https://github.com/hackforla/website/issues/7423#issuecomment-2997412618) at 2025-06-23 11:08 AM PDT -t-will-gillis,2025-06-23T18:08:54Z,- t-will-gillis closed issue as not planned: [7423](https://github.com/hackforla/website/issues/7423#event-18278699177) at 2025-06-23 11:08 AM PDT -t-will-gillis,2025-06-23T18:39:36Z,- t-will-gillis opened issue: [8200](https://github.com/hackforla/website/issues/8200) at 2025-06-23 11:39 AM PDT -t-will-gillis,2025-06-23T18:50:05Z,- t-will-gillis commented on issue: [8200](https://github.com/hackforla/website/issues/8200#issuecomment-2997608620) at 2025-06-23 11:50 AM PDT -t-will-gillis,2025-06-23T18:50:05Z,- t-will-gillis closed issue as completed: [8200](https://github.com/hackforla/website/issues/8200#event-18279372486) at 2025-06-23 11:50 AM PDT -t-will-gillis,2025-06-23T19:39:34Z,- t-will-gillis opened issue: [8201](https://github.com/hackforla/website/issues/8201) at 2025-06-23 12:39 PM PDT -t-will-gillis,2025-06-23T19:39:46Z,- t-will-gillis assigned to issue: [8201](https://github.com/hackforla/website/issues/8201) at 2025-06-23 12:39 PM PDT -t-will-gillis,2025-06-23T20:45:02Z,- t-will-gillis commented on issue: [7942](https://github.com/hackforla/website/issues/7942#issuecomment-2997890858) at 2025-06-23 01:45 PM PDT -t-will-gillis,2025-06-23T20:45:03Z,- t-will-gillis closed issue as not planned: [7942](https://github.com/hackforla/website/issues/7942#event-18280972016) at 2025-06-23 01:45 PM PDT -t-will-gillis,2025-06-24T01:45:03Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2998489399) at 2025-06-23 06:45 PM PDT -t-will-gillis,2025-06-24T01:45:03Z,- t-will-gillis closed issue as completed: [7453](https://github.com/hackforla/website/issues/7453#event-18283967567) at 2025-06-23 06:45 PM PDT -t-will-gillis,2025-06-24T19:30:05Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2955057185) at 2025-06-24 12:30 PM PDT -t-will-gillis,2025-06-25T20:42:02Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2959602784) at 2025-06-25 01:42 PM PDT -t-will-gillis,2025-06-27T19:27:56Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2967717523) at 2025-06-27 12:27 PM PDT -t-will-gillis,2025-06-28T17:52:52Z,- t-will-gillis pull request merged: [8175](https://github.com/hackforla/website/pull/8175#event-18370585579) at 2025-06-28 10:52 AM PDT -t-will-gillis,2025-06-28T17:52:53Z,- t-will-gillis closed issue by PR 8175: [8174](https://github.com/hackforla/website/issues/8174#event-18370585639) at 2025-06-28 10:52 AM PDT -t-will-gillis,2025-06-28T21:51:45Z,- t-will-gillis commented on pull request: [8173](https://github.com/hackforla/website/pull/8173#issuecomment-3016080176) at 2025-06-28 02:51 PM PDT -t-will-gillis,2025-06-30T02:35:09Z,- t-will-gillis submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2969734506) at 2025-06-29 07:35 PM PDT -t-will-gillis,2025-07-01T15:25:07Z,- t-will-gillis closed issue as duplicate: [7975](https://github.com/hackforla/website/issues/7975#event-18413929853) at 2025-07-01 08:25 AM PDT -t-will-gillis,2025-07-01T15:28:14Z,- t-will-gillis commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-3024521621) at 2025-07-01 08:28 AM PDT -t-will-gillis,2025-07-01T15:28:14Z,- t-will-gillis closed issue as completed: [7977](https://github.com/hackforla/website/issues/7977#event-18413990793) at 2025-07-01 08:28 AM PDT -t-will-gillis,2025-07-01T16:02:57Z,- t-will-gillis commented on issue: [8237](https://github.com/hackforla/website/issues/8237#issuecomment-3024639397) at 2025-07-01 09:02 AM PDT -t-will-gillis,2025-07-01T22:32:58Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2977133264) at 2025-07-01 03:32 PM PDT -t-will-gillis,2025-07-02T02:12:58Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-3026112882) at 2025-07-01 07:12 PM PDT -t-will-gillis,2025-07-02T02:17:35Z,- t-will-gillis opened issue: [8238](https://github.com/hackforla/website/issues/8238) at 2025-07-01 07:17 PM PDT -t-will-gillis,2025-07-02T02:32:03Z,- t-will-gillis opened issue: [8239](https://github.com/hackforla/website/issues/8239) at 2025-07-01 07:32 PM PDT -t-will-gillis,2025-07-02T02:32:03Z,- t-will-gillis assigned to issue: [8239](https://github.com/hackforla/website/issues/8239) at 2025-07-01 07:32 PM PDT -t-will-gillis,2025-07-02T02:57:25Z,- t-will-gillis opened pull request: [8240](https://github.com/hackforla/website/pull/8240) at 2025-07-01 07:57 PM PDT -t-will-gillis,2025-07-02T03:00:16Z,- t-will-gillis pull request merged: [8240](https://github.com/hackforla/website/pull/8240#event-18422688731) at 2025-07-01 08:00 PM PDT -t-will-gillis,2025-07-02T03:00:17Z,- t-will-gillis closed issue by PR 8240: [8239](https://github.com/hackforla/website/issues/8239#event-18422688839) at 2025-07-01 08:00 PM PDT -t-will-gillis,2025-07-02T03:32:04Z,- t-will-gillis commented on issue: [8185](https://github.com/hackforla/website/issues/8185#issuecomment-3026248686) at 2025-07-01 08:32 PM PDT -t-will-gillis,2025-07-02T16:14:12Z,- t-will-gillis submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2979810330) at 2025-07-02 09:14 AM PDT -t-will-gillis,2025-07-02T16:15:13Z,- t-will-gillis commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-3028463016) at 2025-07-02 09:15 AM PDT -t-will-gillis,2025-07-02T16:15:21Z,- t-will-gillis closed issue by PR 8203: [8003](https://github.com/hackforla/website/issues/8003#event-18435454535) at 2025-07-02 09:15 AM PDT -t-will-gillis,2025-07-02T16:17:53Z,- t-will-gillis closed issue by PR 8235: [7380](https://github.com/hackforla/website/issues/7380#event-18435496200) at 2025-07-02 09:17 AM PDT -t-will-gillis,2025-07-02T16:20:56Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2979831912) at 2025-07-02 09:20 AM PDT -t-will-gillis,2025-07-02T16:21:40Z,- t-will-gillis commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-3028482405) at 2025-07-02 09:21 AM PDT -t-will-gillis,2025-07-02T16:21:49Z,- t-will-gillis closed issue by PR 8195: [7762](https://github.com/hackforla/website/issues/7762#event-18435566205) at 2025-07-02 09:21 AM PDT -t-will-gillis,2025-07-06T15:55:07Z,- t-will-gillis commented on pull request: [8236](https://github.com/hackforla/website/pull/8236#issuecomment-3042074882) at 2025-07-06 08:55 AM PDT -t-will-gillis,2025-07-06T15:55:17Z,- t-will-gillis closed issue by PR 8236: [8016](https://github.com/hackforla/website/issues/8016#event-18492459197) at 2025-07-06 08:55 AM PDT -t-will-gillis,2025-07-06T18:09:06Z,- t-will-gillis opened issue: [8244](https://github.com/hackforla/website/issues/8244) at 2025-07-06 11:09 AM PDT -t-will-gillis,2025-07-07T02:46:21Z,- t-will-gillis commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-3043323600) at 2025-07-06 07:46 PM PDT -t-will-gillis,2025-07-07T02:46:21Z,- t-will-gillis closed issue as completed: [7769](https://github.com/hackforla/website/issues/7769#event-18495725197) at 2025-07-06 07:46 PM PDT -t-will-gillis,2025-07-07T20:49:49Z,- t-will-gillis commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-3046484887) at 2025-07-07 01:49 PM PDT -t-will-gillis,2025-07-07T23:47:43Z,- t-will-gillis commented on issue: [8184](https://github.com/hackforla/website/issues/8184#issuecomment-3046851728) at 2025-07-07 04:47 PM PDT -t-will-gillis,2025-07-09T18:07:34Z,- t-will-gillis commented on issue: [8185](https://github.com/hackforla/website/issues/8185#issuecomment-3053556109) at 2025-07-09 11:07 AM PDT -t-will-gillis,2025-07-13T17:49:49Z,- t-will-gillis submitted pull request review: [8246](https://github.com/hackforla/website/pull/8246#pullrequestreview-3014265181) at 2025-07-13 10:49 AM PDT -t-will-gillis,2025-07-13T18:42:46Z,- t-will-gillis submitted pull request review: [8243](https://github.com/hackforla/website/pull/8243#pullrequestreview-3014278574) at 2025-07-13 11:42 AM PDT -t-will-gillis,2025-07-20T00:27:23Z,- t-will-gillis commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-3092653441) at 2025-07-19 05:27 PM PDT -t-will-gillis,2025-07-22T02:34:20Z,- t-will-gillis opened issue: [8247](https://github.com/hackforla/website/issues/8247) at 2025-07-21 07:34 PM PDT -t-will-gillis,2025-07-22T02:35:43Z,- t-will-gillis assigned to issue: [8247](https://github.com/hackforla/website/issues/8247) at 2025-07-21 07:35 PM PDT -t-will-gillis,2025-07-22T03:33:00Z,- t-will-gillis opened pull request: [8248](https://github.com/hackforla/website/pull/8248) at 2025-07-21 08:33 PM PDT -t-will-gillis,2025-07-22T16:46:16Z,- t-will-gillis commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3103818617) at 2025-07-22 09:46 AM PDT -t-will-gillis,2025-07-22T16:46:17Z,- t-will-gillis closed issue as completed: [7388](https://github.com/hackforla/website/issues/7388#event-18756756284) at 2025-07-22 09:46 AM PDT -t-will-gillis,2025-07-22T16:55:15Z,- t-will-gillis commented on issue: [7612](https://github.com/hackforla/website/issues/7612#issuecomment-3103873481) at 2025-07-22 09:55 AM PDT -t-will-gillis,2025-07-22T16:55:15Z,- t-will-gillis closed issue as completed: [7612](https://github.com/hackforla/website/issues/7612#event-18756933555) at 2025-07-22 09:55 AM PDT -t-will-gillis,2025-07-22T20:50:30Z,- t-will-gillis commented on issue: [8249](https://github.com/hackforla/website/issues/8249#issuecomment-3104791336) at 2025-07-22 01:50 PM PDT -t-will-gillis,2025-07-22T20:50:30Z,- t-will-gillis closed issue as completed: [8249](https://github.com/hackforla/website/issues/8249#event-18760830847) at 2025-07-22 01:50 PM PDT -t-will-gillis,2025-08-03T02:46:09Z,- t-will-gillis opened issue: [8254](https://github.com/hackforla/website/issues/8254) at 2025-08-02 07:46 PM PDT -t-will-gillis,2025-08-03T02:59:23Z,- t-will-gillis opened issue: [8255](https://github.com/hackforla/website/issues/8255) at 2025-08-02 07:59 PM PDT -t-will-gillis,2025-08-07T19:08:37Z,- t-will-gillis assigned to issue: [8256](https://github.com/hackforla/website/issues/8256#issuecomment-3165351215) at 2025-08-07 12:08 PM PDT -t-will-gillis-dummy,2023-11-28T00:46:57Z,- t-will-gillis-dummy commented on issue: [5638](https://github.com/hackforla/website/issues/5638#issuecomment-1828882110) at 2023-11-27 04:46 PM PST -t-will-gillis-dummy,2023-11-28T05:09:19Z,- t-will-gillis-dummy commented on issue: [5638](https://github.com/hackforla/website/issues/5638#issuecomment-1829116409) at 2023-11-27 09:09 PM PST -t-will-gillis-dummy,2023-11-28T05:09:33Z,- t-will-gillis-dummy opened issue: [5939](https://github.com/hackforla/website/issues/5939) at 2023-11-27 09:09 PM PST -t-will-gillis-dummy,2024-09-23T03:18:42Z,- t-will-gillis-dummy opened pull request: [7507](https://github.com/hackforla/website/pull/7507) at 2024-09-22 08:18 PM PDT -t-will-gillis-dummy,2024-09-23T03:18:56Z,- t-will-gillis-dummy pull request closed w/o merging: [7507](https://github.com/hackforla/website/pull/7507#event-14356754652) at 2024-09-22 08:18 PM PDT -tabatahg,2019-08-17T20:45:32Z,- tabatahg opened issue: [143](https://github.com/hackforla/website/issues/143) at 2019-08-17 01:45 PM PDT -Tak149,4998,SKILLS ISSUE -Tak149,2023-07-18T02:55:39Z,- Tak149 opened issue: [4998](https://github.com/hackforla/website/issues/4998) at 2023-07-17 07:55 PM PDT -Tak149,2023-07-18T03:14:05Z,- Tak149 assigned to issue: [4998](https://github.com/hackforla/website/issues/4998) at 2023-07-17 08:14 PM PDT -tamalatrinh,2654,SKILLS ISSUE -tamalatrinh,2022-01-03T21:29:57Z,- tamalatrinh opened issue: [2654](https://github.com/hackforla/website/issues/2654) at 2022-01-03 01:29 PM PST -tamalatrinh,2022-01-03T21:56:06Z,- tamalatrinh assigned to issue: [2654](https://github.com/hackforla/website/issues/2654#issuecomment-1004372286) at 2022-01-03 01:56 PM PST -tamalatrinh,2022-01-07T01:29:06Z,- tamalatrinh closed issue as completed: [2654](https://github.com/hackforla/website/issues/2654#event-5855451328) at 2022-01-06 05:29 PM PST -tamalatrinh,2022-01-07T01:30:47Z,- tamalatrinh assigned to issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-997088137) at 2022-01-06 05:30 PM PST -tamalatrinh,2022-01-07T01:33:27Z,- tamalatrinh commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1007068514) at 2022-01-06 05:33 PM PST -tamalatrinh,2022-01-09T19:56:09Z,- tamalatrinh closed issue as completed: [2654](https://github.com/hackforla/website/issues/2654#event-5862698462) at 2022-01-09 11:56 AM PST -tamalatrinh,2022-01-12T01:03:35Z,- tamalatrinh commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1010524700) at 2022-01-11 05:03 PM PST -tamalatrinh,2022-01-17T22:19:05Z,- tamalatrinh commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1014922800) at 2022-01-17 02:19 PM PST -tamalatrinh,2022-01-17T22:19:05Z,- tamalatrinh closed issue as completed: [2597](https://github.com/hackforla/website/issues/2597#event-5907005546) at 2022-01-17 02:19 PM PST -tamara-snyder,2664,SKILLS ISSUE -tamara-snyder,3047,SKILLS ISSUE -tamara-snyder,7329,SKILLS ISSUE -tamara-snyder,2022-01-07T01:29:00Z,- tamara-snyder assigned to issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1007044253) at 2022-01-06 05:29 PM PST -tamara-snyder,2022-01-10T23:39:28Z,- tamara-snyder assigned to issue: [2631](https://github.com/hackforla/website/issues/2631#issuecomment-1001227641) at 2022-01-10 03:39 PM PST -tamara-snyder,2022-01-10T23:46:51Z,- tamara-snyder commented on issue: [2631](https://github.com/hackforla/website/issues/2631#issuecomment-1009462977) at 2022-01-10 03:46 PM PST -tamara-snyder,2022-01-13T16:13:06Z,- tamara-snyder closed issue as completed: [2664](https://github.com/hackforla/website/issues/2664#event-5888732675) at 2022-01-13 08:13 AM PST -tamara-snyder,2022-01-19T03:45:09Z,- tamara-snyder opened pull request: [2700](https://github.com/hackforla/website/pull/2700) at 2022-01-18 07:45 PM PST -tamara-snyder,2022-01-24T00:15:04Z,- tamara-snyder commented on issue: [2631](https://github.com/hackforla/website/issues/2631#issuecomment-1019601934) at 2022-01-23 04:15 PM PST -tamara-snyder,2022-01-24T00:17:27Z,- tamara-snyder commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1019602671) at 2022-01-23 04:17 PM PST -tamara-snyder,2022-01-24T00:18:50Z,- tamara-snyder closed issue as completed: [2664](https://github.com/hackforla/website/issues/2664#event-5938949418) at 2022-01-23 04:18 PM PST -tamara-snyder,2022-01-27T23:45:47Z,- tamara-snyder pull request merged: [2700](https://github.com/hackforla/website/pull/2700#event-5967417361) at 2022-01-27 03:45 PM PST -tamara-snyder,2022-01-28T15:37:57Z,- tamara-snyder commented on pull request: [2700](https://github.com/hackforla/website/pull/2700#issuecomment-1024337082) at 2022-01-28 07:37 AM PST -tamara-snyder,2022-01-31T03:27:25Z,- tamara-snyder assigned to issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1019337301) at 2022-01-30 07:27 PM PST -tamara-snyder,2022-01-31T15:59:42Z,- tamara-snyder opened pull request: [2729](https://github.com/hackforla/website/pull/2729) at 2022-01-31 07:59 AM PST -tamara-snyder,2022-02-01T10:02:50Z,- tamara-snyder pull request merged: [2729](https://github.com/hackforla/website/pull/2729#event-5986943030) at 2022-02-01 02:02 AM PST -tamara-snyder,2022-02-03T17:52:48Z,- tamara-snyder assigned to issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-935155938) at 2022-02-03 09:52 AM PST -tamara-snyder,2022-02-03T18:00:33Z,- tamara-snyder commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1029254229) at 2022-02-03 10:00 AM PST -tamara-snyder,2022-02-04T17:18:06Z,- tamara-snyder commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1030189909) at 2022-02-04 09:18 AM PST -tamara-snyder,2022-02-04T17:18:17Z,- tamara-snyder unassigned from issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1030189909) at 2022-02-04 09:18 AM PST -tamara-snyder,2022-02-08T23:09:48Z,- tamara-snyder assigned to issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-903299359) at 2022-02-08 03:09 PM PST -tamara-snyder,2022-02-11T19:53:45Z,- tamara-snyder commented on issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-1036568330) at 2022-02-11 11:53 AM PST -tamara-snyder,2022-02-15T22:49:40Z,- tamara-snyder commented on issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-1040875821) at 2022-02-15 02:49 PM PST -tamara-snyder,2022-02-18T03:50:35Z,- tamara-snyder opened pull request: [2789](https://github.com/hackforla/website/pull/2789) at 2022-02-17 07:50 PM PST -tamara-snyder,2022-02-20T19:51:29Z,- tamara-snyder opened issue: [2805](https://github.com/hackforla/website/issues/2805) at 2022-02-20 11:51 AM PST -tamara-snyder,2022-02-20T20:24:33Z,- tamara-snyder opened issue: [2811](https://github.com/hackforla/website/issues/2811) at 2022-02-20 12:24 PM PST -tamara-snyder,2022-02-20T20:29:03Z,- tamara-snyder opened issue: [2812](https://github.com/hackforla/website/issues/2812) at 2022-02-20 12:29 PM PST -tamara-snyder,2022-02-20T20:33:10Z,- tamara-snyder opened issue: [2813](https://github.com/hackforla/website/issues/2813) at 2022-02-20 12:33 PM PST -tamara-snyder,2022-02-20T20:38:14Z,- tamara-snyder opened issue: [2815](https://github.com/hackforla/website/issues/2815) at 2022-02-20 12:38 PM PST -tamara-snyder,2022-02-20T20:42:26Z,- tamara-snyder opened issue: [2816](https://github.com/hackforla/website/issues/2816) at 2022-02-20 12:42 PM PST -tamara-snyder,2022-02-20T20:45:21Z,- tamara-snyder opened issue: [2817](https://github.com/hackforla/website/issues/2817) at 2022-02-20 12:45 PM PST -tamara-snyder,2022-02-20T20:49:38Z,- tamara-snyder opened issue: [2818](https://github.com/hackforla/website/issues/2818) at 2022-02-20 12:49 PM PST -tamara-snyder,2022-02-21T02:10:14Z,- tamara-snyder submitted pull request review: [2803](https://github.com/hackforla/website/pull/2803#pullrequestreview-888139403) at 2022-02-20 06:10 PM PST -tamara-snyder,2022-02-21T18:13:28Z,- tamara-snyder opened issue: [2830](https://github.com/hackforla/website/issues/2830) at 2022-02-21 10:13 AM PST -tamara-snyder,2022-02-21T18:15:55Z,- tamara-snyder opened issue: [2831](https://github.com/hackforla/website/issues/2831) at 2022-02-21 10:15 AM PST -tamara-snyder,2022-02-21T18:19:19Z,- tamara-snyder opened issue: [2832](https://github.com/hackforla/website/issues/2832) at 2022-02-21 10:19 AM PST -tamara-snyder,2022-02-21T18:24:30Z,- tamara-snyder opened issue: [2833](https://github.com/hackforla/website/issues/2833) at 2022-02-21 10:24 AM PST -tamara-snyder,2022-02-21T18:28:55Z,- tamara-snyder opened issue: [2834](https://github.com/hackforla/website/issues/2834) at 2022-02-21 10:28 AM PST -tamara-snyder,2022-02-22T19:31:00Z,- tamara-snyder opened issue: [2842](https://github.com/hackforla/website/issues/2842) at 2022-02-22 11:31 AM PST -tamara-snyder,2022-02-22T19:33:30Z,- tamara-snyder opened issue: [2843](https://github.com/hackforla/website/issues/2843) at 2022-02-22 11:33 AM PST -tamara-snyder,2022-02-22T19:35:50Z,- tamara-snyder opened issue: [2844](https://github.com/hackforla/website/issues/2844) at 2022-02-22 11:35 AM PST -tamara-snyder,2022-02-22T19:38:47Z,- tamara-snyder opened issue: [2845](https://github.com/hackforla/website/issues/2845) at 2022-02-22 11:38 AM PST -tamara-snyder,2022-02-22T19:42:02Z,- tamara-snyder opened issue: [2846](https://github.com/hackforla/website/issues/2846) at 2022-02-22 11:42 AM PST -tamara-snyder,2022-02-22T19:45:36Z,- tamara-snyder opened issue: [2847](https://github.com/hackforla/website/issues/2847) at 2022-02-22 11:45 AM PST -tamara-snyder,2022-02-23T04:00:18Z,- tamara-snyder opened issue: [2855](https://github.com/hackforla/website/issues/2855) at 2022-02-22 08:00 PM PST -tamara-snyder,2022-02-23T19:36:20Z,- tamara-snyder pull request merged: [2789](https://github.com/hackforla/website/pull/2789#event-6127507146) at 2022-02-23 11:36 AM PST -tamara-snyder,2022-02-25T01:45:12Z,- tamara-snyder commented on pull request: [2880](https://github.com/hackforla/website/pull/2880#issuecomment-1050433980) at 2022-02-24 05:45 PM PST -tamara-snyder,2022-02-25T03:16:25Z,- tamara-snyder submitted pull request review: [2880](https://github.com/hackforla/website/pull/2880#pullrequestreview-893228420) at 2022-02-24 07:16 PM PST -tamara-snyder,2022-02-25T03:31:13Z,- tamara-snyder commented on pull request: [2882](https://github.com/hackforla/website/pull/2882#issuecomment-1050487957) at 2022-02-24 07:31 PM PST -tamara-snyder,2022-02-25T04:05:23Z,- tamara-snyder submitted pull request review: [2882](https://github.com/hackforla/website/pull/2882#pullrequestreview-893246844) at 2022-02-24 08:05 PM PST -tamara-snyder,2022-02-25T05:03:57Z,- tamara-snyder opened issue: [2887](https://github.com/hackforla/website/issues/2887) at 2022-02-24 09:03 PM PST -tamara-snyder,2022-02-25T05:30:49Z,- tamara-snyder submitted pull request review: [2882](https://github.com/hackforla/website/pull/2882#pullrequestreview-893282351) at 2022-02-24 09:30 PM PST -tamara-snyder,2022-02-25T16:45:10Z,- tamara-snyder assigned to issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1013941235) at 2022-02-25 08:45 AM PST -tamara-snyder,2022-02-25T16:47:33Z,- tamara-snyder commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1051017941) at 2022-02-25 08:47 AM PST -tamara-snyder,2022-02-27T15:34:28Z,- tamara-snyder submitted pull request review: [2880](https://github.com/hackforla/website/pull/2880#pullrequestreview-894517096) at 2022-02-27 07:34 AM PST -tamara-snyder,2022-02-27T15:52:53Z,- tamara-snyder commented on issue: [2480](https://github.com/hackforla/website/issues/2480#issuecomment-1053597220) at 2022-02-27 07:52 AM PST -tamara-snyder,2022-02-27T15:56:02Z,- tamara-snyder commented on issue: [2887](https://github.com/hackforla/website/issues/2887#issuecomment-1053598143) at 2022-02-27 07:56 AM PST -tamara-snyder,2022-02-27T18:26:06Z,- tamara-snyder commented on pull request: [2894](https://github.com/hackforla/website/pull/2894#issuecomment-1053638761) at 2022-02-27 10:26 AM PST -tamara-snyder,2022-03-01T17:03:56Z,- tamara-snyder submitted pull request review: [2894](https://github.com/hackforla/website/pull/2894#pullrequestreview-896585019) at 2022-03-01 09:03 AM PST -tamara-snyder,2022-03-01T17:25:46Z,- tamara-snyder commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055679084) at 2022-03-01 09:25 AM PST -tamara-snyder,2022-03-01T17:37:22Z,- tamara-snyder submitted pull request review: [2905](https://github.com/hackforla/website/pull/2905#pullrequestreview-896623273) at 2022-03-01 09:37 AM PST -tamara-snyder,2022-03-04T04:07:04Z,- tamara-snyder commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1058806888) at 2022-03-03 08:07 PM PST -tamara-snyder,2022-03-04T22:09:11Z,- tamara-snyder commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1059566866) at 2022-03-04 02:09 PM PST -tamara-snyder,2022-03-04T23:37:17Z,- tamara-snyder commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1059605945) at 2022-03-04 03:37 PM PST -tamara-snyder,2022-03-07T04:59:32Z,- tamara-snyder submitted pull request review: [2918](https://github.com/hackforla/website/pull/2918#pullrequestreview-901235905) at 2022-03-06 08:59 PM PST -tamara-snyder,2022-03-07T15:19:17Z,- tamara-snyder closed issue by PR 2918: [2187](https://github.com/hackforla/website/issues/2187#event-6195752787) at 2022-03-07 07:19 AM PST -tamara-snyder,2022-03-10T22:32:27Z,- tamara-snyder commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1064575733) at 2022-03-10 02:32 PM PST -tamara-snyder,2022-03-11T20:29:22Z,- tamara-snyder opened pull request: [2967](https://github.com/hackforla/website/pull/2967) at 2022-03-11 12:29 PM PST -tamara-snyder,2022-03-11T21:18:18Z,- tamara-snyder commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1065537356) at 2022-03-11 01:18 PM PST -tamara-snyder,2022-03-13T17:29:55Z,- tamara-snyder commented on pull request: [2969](https://github.com/hackforla/website/pull/2969#issuecomment-1066146820) at 2022-03-13 10:29 AM PDT -tamara-snyder,2022-03-13T17:30:39Z,- tamara-snyder commented on pull request: [2963](https://github.com/hackforla/website/pull/2963#issuecomment-1066146939) at 2022-03-13 10:30 AM PDT -tamara-snyder,2022-03-13T19:14:44Z,- tamara-snyder submitted pull request review: [2963](https://github.com/hackforla/website/pull/2963#pullrequestreview-908175805) at 2022-03-13 12:14 PM PDT -tamara-snyder,2022-03-13T19:15:55Z,- tamara-snyder closed issue by PR 2963: [2751](https://github.com/hackforla/website/issues/2751#event-6231511234) at 2022-03-13 12:15 PM PDT -tamara-snyder,2022-03-13T19:33:55Z,- tamara-snyder closed issue by PR 2943: [2100](https://github.com/hackforla/website/issues/2100#event-6231529721) at 2022-03-13 12:33 PM PDT -tamara-snyder,2022-03-15T04:40:10Z,- tamara-snyder submitted pull request review: [2969](https://github.com/hackforla/website/pull/2969#pullrequestreview-909652435) at 2022-03-14 09:40 PM PDT -tamara-snyder,2022-03-15T14:16:47Z,- tamara-snyder submitted pull request review: [2979](https://github.com/hackforla/website/pull/2979#pullrequestreview-910281218) at 2022-03-15 07:16 AM PDT -tamara-snyder,2022-03-15T14:18:38Z,- tamara-snyder commented on pull request: [2980](https://github.com/hackforla/website/pull/2980#issuecomment-1068041790) at 2022-03-15 07:18 AM PDT -tamara-snyder,2022-03-15T14:19:06Z,- tamara-snyder commented on pull request: [2981](https://github.com/hackforla/website/pull/2981#issuecomment-1068042262) at 2022-03-15 07:19 AM PDT -tamara-snyder,2022-03-15T14:19:40Z,- tamara-snyder commented on pull request: [2983](https://github.com/hackforla/website/pull/2983#issuecomment-1068042860) at 2022-03-15 07:19 AM PDT -tamara-snyder,2022-03-15T14:31:40Z,- tamara-snyder submitted pull request review: [2980](https://github.com/hackforla/website/pull/2980#pullrequestreview-910306022) at 2022-03-15 07:31 AM PDT -tamara-snyder,2022-03-15T14:34:03Z,- tamara-snyder closed issue by PR 2980: [2891](https://github.com/hackforla/website/issues/2891#event-6243754027) at 2022-03-15 07:34 AM PDT -tamara-snyder,2022-03-15T15:19:02Z,- tamara-snyder submitted pull request review: [2981](https://github.com/hackforla/website/pull/2981#pullrequestreview-910385245) at 2022-03-15 08:19 AM PDT -tamara-snyder,2022-03-15T15:20:25Z,- tamara-snyder closed issue by PR 2981: [2887](https://github.com/hackforla/website/issues/2887#event-6244142545) at 2022-03-15 08:20 AM PDT -tamara-snyder,2022-03-15T15:40:37Z,- tamara-snyder submitted pull request review: [2983](https://github.com/hackforla/website/pull/2983#pullrequestreview-910420023) at 2022-03-15 08:40 AM PDT -tamara-snyder,2022-03-16T01:58:14Z,- tamara-snyder submitted pull request review: [2969](https://github.com/hackforla/website/pull/2969#pullrequestreview-911013552) at 2022-03-15 06:58 PM PDT -tamara-snyder,2022-03-16T02:32:12Z,- tamara-snyder commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1068669169) at 2022-03-15 07:32 PM PDT -tamara-snyder,2022-03-16T15:29:49Z,- tamara-snyder submitted pull request review: [2979](https://github.com/hackforla/website/pull/2979#pullrequestreview-911839996) at 2022-03-16 08:29 AM PDT -tamara-snyder,2022-03-18T14:06:59Z,- tamara-snyder pull request merged: [2967](https://github.com/hackforla/website/pull/2967#event-6266442064) at 2022-03-18 07:06 AM PDT -tamara-snyder,2022-03-18T15:02:24Z,- tamara-snyder closed issue by PR 2979: [2758](https://github.com/hackforla/website/issues/2758#event-6266818358) at 2022-03-18 08:02 AM PDT -tamara-snyder,2022-03-18T15:09:50Z,- tamara-snyder submitted pull request review: [2983](https://github.com/hackforla/website/pull/2983#pullrequestreview-914492274) at 2022-03-18 08:09 AM PDT -tamara-snyder,2022-03-18T15:10:54Z,- tamara-snyder closed issue by PR 2983: [2795](https://github.com/hackforla/website/issues/2795#event-6266877741) at 2022-03-18 08:10 AM PDT -tamara-snyder,2022-03-18T15:24:16Z,- tamara-snyder closed issue by PR 2986: [2271](https://github.com/hackforla/website/issues/2271#event-6266965149) at 2022-03-18 08:24 AM PDT -tamara-snyder,2022-03-18T15:34:53Z,- tamara-snyder assigned to issue: [2141](https://github.com/hackforla/website/issues/2141) at 2022-03-18 08:34 AM PDT -tamara-snyder,2022-03-20T18:27:33Z,- tamara-snyder commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073306637) at 2022-03-20 11:27 AM PDT -tamara-snyder,2022-03-20T18:28:48Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1073306804) at 2022-03-20 11:28 AM PDT -tamara-snyder,2022-03-20T18:37:19Z,- tamara-snyder submitted pull request review: [2992](https://github.com/hackforla/website/pull/2992#pullrequestreview-915137288) at 2022-03-20 11:37 AM PDT -tamara-snyder,2022-03-20T18:38:03Z,- tamara-snyder closed issue by PR 2992: [2895](https://github.com/hackforla/website/issues/2895#event-6271594175) at 2022-03-20 11:38 AM PDT -tamara-snyder,2022-03-20T19:02:57Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915139541) at 2022-03-20 12:02 PM PDT -tamara-snyder,2022-03-22T18:06:01Z,- tamara-snyder commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1075459327) at 2022-03-22 11:06 AM PDT -tamara-snyder,2022-03-22T18:24:22Z,- tamara-snyder closed issue by PR 3000: [2927](https://github.com/hackforla/website/issues/2927#event-6285813727) at 2022-03-22 11:24 AM PDT -tamara-snyder,2022-03-22T18:29:36Z,- tamara-snyder commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1075483298) at 2022-03-22 11:29 AM PDT -tamara-snyder,2022-03-22T18:35:13Z,- tamara-snyder closed issue by PR 2996: [2888](https://github.com/hackforla/website/issues/2888#event-6285883114) at 2022-03-22 11:35 AM PDT -tamara-snyder,2022-03-22T18:41:19Z,- tamara-snyder closed issue by PR 2998: [2768](https://github.com/hackforla/website/issues/2768#event-6285921875) at 2022-03-22 11:41 AM PDT -tamara-snyder,2022-03-23T02:41:36Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1075856690) at 2022-03-22 07:41 PM PDT -tamara-snyder,2022-03-23T14:23:44Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-918867751) at 2022-03-23 07:23 AM PDT -tamara-snyder,2022-03-25T03:42:58Z,- tamara-snyder commented on pull request: [3007](https://github.com/hackforla/website/pull/3007#issuecomment-1078623637) at 2022-03-24 08:42 PM PDT -tamara-snyder,2022-03-25T03:50:07Z,- tamara-snyder submitted pull request review: [3007](https://github.com/hackforla/website/pull/3007#pullrequestreview-921148554) at 2022-03-24 08:50 PM PDT -tamara-snyder,2022-03-25T03:51:20Z,- tamara-snyder closed issue by PR 3007: [2760](https://github.com/hackforla/website/issues/2760#event-6304475387) at 2022-03-24 08:51 PM PDT -tamara-snyder,2022-03-25T03:53:14Z,- tamara-snyder commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1078627129) at 2022-03-24 08:53 PM PDT -tamara-snyder,2022-03-25T04:21:35Z,- tamara-snyder submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-921161205) at 2022-03-24 09:21 PM PDT -tamara-snyder,2022-03-25T04:45:18Z,- tamara-snyder closed issue by PR 3001: [2715](https://github.com/hackforla/website/issues/2715#event-6304640303) at 2022-03-24 09:45 PM PDT -tamara-snyder,2022-03-25T15:03:18Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-921772115) at 2022-03-25 08:03 AM PDT -tamara-snyder,2022-03-26T13:21:20Z,- tamara-snyder commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1079693368) at 2022-03-26 06:21 AM PDT -tamara-snyder,2022-03-26T13:27:11Z,- tamara-snyder submitted pull request review: [2977](https://github.com/hackforla/website/pull/2977#pullrequestreview-922317293) at 2022-03-26 06:27 AM PDT -tamara-snyder,2022-03-26T15:10:38Z,- tamara-snyder submitted pull request review: [3013](https://github.com/hackforla/website/pull/3013#pullrequestreview-922325691) at 2022-03-26 08:10 AM PDT -tamara-snyder,2022-03-26T15:12:55Z,- tamara-snyder closed issue by PR 3013: [2942](https://github.com/hackforla/website/issues/2942#event-6311976071) at 2022-03-26 08:12 AM PDT -tamara-snyder,2022-03-26T18:04:07Z,- tamara-snyder commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079745179) at 2022-03-26 11:04 AM PDT -tamara-snyder,2022-03-27T14:08:17Z,- tamara-snyder commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1079939391) at 2022-03-27 07:08 AM PDT -tamara-snyder,2022-03-27T14:21:19Z,- tamara-snyder submitted pull request review: [3017](https://github.com/hackforla/website/pull/3017#pullrequestreview-922458236) at 2022-03-27 07:21 AM PDT -tamara-snyder,2022-03-28T15:32:34Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1080802576) at 2022-03-28 08:32 AM PDT -tamara-snyder,2022-03-28T15:38:34Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1080809165) at 2022-03-28 08:38 AM PDT -tamara-snyder,2022-03-28T15:41:06Z,- tamara-snyder closed issue by PR 3017: [2926](https://github.com/hackforla/website/issues/2926#event-6319660009) at 2022-03-28 08:41 AM PDT -tamara-snyder,2022-03-29T01:39:29Z,- tamara-snyder commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1081312169) at 2022-03-28 06:39 PM PDT -tamara-snyder,2022-03-29T01:42:33Z,- tamara-snyder closed issue by PR 3015: [2902](https://github.com/hackforla/website/issues/2902#event-6322778658) at 2022-03-28 06:42 PM PDT -tamara-snyder,2022-03-30T02:55:10Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1082567619) at 2022-03-29 07:55 PM PDT -tamara-snyder,2022-03-30T16:20:47Z,- tamara-snyder commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1083351397) at 2022-03-30 09:20 AM PDT -tamara-snyder,2022-04-05T18:01:41Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1089126392) at 2022-04-05 11:01 AM PDT -tamara-snyder,2022-04-05T18:41:01Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1089173845) at 2022-04-05 11:41 AM PDT -tamara-snyder,2022-04-05T20:46:55Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-932496661) at 2022-04-05 01:46 PM PDT -tamara-snyder,2022-04-07T03:22:47Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1091038154) at 2022-04-06 08:22 PM PDT -tamara-snyder,2022-04-07T03:45:18Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1091047936) at 2022-04-06 08:45 PM PDT -tamara-snyder,2022-04-08T12:17:39Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1092800133) at 2022-04-08 05:17 AM PDT -tamara-snyder,2022-04-08T13:49:47Z,- tamara-snyder commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1092880515) at 2022-04-08 06:49 AM PDT -tamara-snyder,2022-04-08T19:09:48Z,- tamara-snyder submitted pull request review: [2977](https://github.com/hackforla/website/pull/2977#pullrequestreview-936866654) at 2022-04-08 12:09 PM PDT -tamara-snyder,2022-04-08T19:12:37Z,- tamara-snyder closed issue by PR 2977: [2339](https://github.com/hackforla/website/issues/2339#event-6398643149) at 2022-04-08 12:12 PM PDT -tamara-snyder,2022-04-08T19:22:31Z,- tamara-snyder submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-936876689) at 2022-04-08 12:22 PM PDT -tamara-snyder,2022-04-10T17:31:11Z,- tamara-snyder commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1094333189) at 2022-04-10 10:31 AM PDT -tamara-snyder,2022-04-12T13:18:19Z,- tamara-snyder commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1096717474) at 2022-04-12 06:18 AM PDT -tamara-snyder,2022-04-13T03:10:13Z,- tamara-snyder opened issue: [3047](https://github.com/hackforla/website/issues/3047) at 2022-04-12 08:10 PM PDT -tamara-snyder,2022-04-13T03:11:20Z,- tamara-snyder closed issue as completed: [3047](https://github.com/hackforla/website/issues/3047#event-6423908799) at 2022-04-12 08:11 PM PDT -tamara-snyder,2022-04-13T03:19:55Z,- tamara-snyder assigned to issue: [3047](https://github.com/hackforla/website/issues/3047#event-6423908799) at 2022-04-12 08:19 PM PDT -tamara-snyder,2022-04-17T00:23:44Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1100776599) at 2022-04-16 05:23 PM PDT -tamara-snyder,2022-04-20T04:10:10Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1103451128) at 2022-04-19 09:10 PM PDT -tamara-snyder,2022-04-22T01:36:18Z,- tamara-snyder commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1105917350) at 2022-04-21 06:36 PM PDT -tamara-snyder,2022-04-22T01:57:08Z,- tamara-snyder submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-949366005) at 2022-04-21 06:57 PM PDT -tamara-snyder,2022-04-22T02:02:41Z,- tamara-snyder commented on pull request: [3072](https://github.com/hackforla/website/pull/3072#issuecomment-1105927319) at 2022-04-21 07:02 PM PDT -tamara-snyder,2022-04-22T02:12:37Z,- tamara-snyder submitted pull request review: [3072](https://github.com/hackforla/website/pull/3072#pullrequestreview-949372280) at 2022-04-21 07:12 PM PDT -tamara-snyder,2022-04-22T02:13:24Z,- tamara-snyder closed issue by PR 3072: [2913](https://github.com/hackforla/website/issues/2913#event-6475056474) at 2022-04-21 07:13 PM PDT -tamara-snyder,2022-04-22T02:19:01Z,- tamara-snyder commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1105936055) at 2022-04-21 07:19 PM PDT -tamara-snyder,2022-04-22T02:32:05Z,- tamara-snyder submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-949380880) at 2022-04-21 07:32 PM PDT -tamara-snyder,2022-04-26T13:56:38Z,- tamara-snyder closed issue by PR 3079: [2793](https://github.com/hackforla/website/issues/2793#event-6499097985) at 2022-04-26 06:56 AM PDT -tamara-snyder,2022-04-26T14:25:11Z,- tamara-snyder closed issue by PR 3081: [2183](https://github.com/hackforla/website/issues/2183#event-6499342361) at 2022-04-26 07:25 AM PDT -tamara-snyder,2022-04-29T13:26:15Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1113309239) at 2022-04-29 06:26 AM PDT -tamara-snyder,2022-05-06T14:37:53Z,- tamara-snyder commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1119694657) at 2022-05-06 07:37 AM PDT -tamara-snyder,2022-05-13T15:14:44Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1126165408) at 2022-05-13 08:14 AM PDT -tamara-snyder,2022-05-17T17:20:05Z,- tamara-snyder commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1129124041) at 2022-05-17 10:20 AM PDT -tamara-snyder,2022-05-17T17:39:42Z,- tamara-snyder submitted pull request review: [3146](https://github.com/hackforla/website/pull/3146#pullrequestreview-975863768) at 2022-05-17 10:39 AM PDT -tamara-snyder,2022-05-18T03:02:55Z,- tamara-snyder commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1129516953) at 2022-05-17 08:02 PM PDT -tamara-snyder,2022-05-20T02:09:44Z,- tamara-snyder submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-979439581) at 2022-05-19 07:09 PM PDT -tamara-snyder,2022-05-20T02:38:54Z,- tamara-snyder commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1132396852) at 2022-05-19 07:38 PM PDT -tamara-snyder,2022-05-20T02:47:15Z,- tamara-snyder commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1132400244) at 2022-05-19 07:47 PM PDT -tamara-snyder,2022-05-20T02:48:09Z,- tamara-snyder closed issue by PR 3158: [2633](https://github.com/hackforla/website/issues/2633#event-6647159819) at 2022-05-19 07:48 PM PDT -tamara-snyder,2022-05-20T03:05:33Z,- tamara-snyder submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-979465312) at 2022-05-19 08:05 PM PDT -tamara-snyder,2022-05-20T03:28:43Z,- tamara-snyder commented on pull request: [3160](https://github.com/hackforla/website/pull/3160#issuecomment-1132420710) at 2022-05-19 08:28 PM PDT -tamara-snyder,2022-05-20T03:38:07Z,- tamara-snyder submitted pull request review: [3160](https://github.com/hackforla/website/pull/3160#pullrequestreview-979479027) at 2022-05-19 08:38 PM PDT -tamara-snyder,2022-05-20T03:39:42Z,- tamara-snyder closed issue by PR 3160: [2423](https://github.com/hackforla/website/issues/2423#event-6647317061) at 2022-05-19 08:39 PM PDT -tamara-snyder,2022-05-20T16:05:32Z,- tamara-snyder closed issue by PR 3159: [2796](https://github.com/hackforla/website/issues/2796#event-6651908221) at 2022-05-20 09:05 AM PDT -tamara-snyder,2022-05-20T16:18:44Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1133090666) at 2022-05-20 09:18 AM PDT -tamara-snyder,2022-05-27T12:51:33Z,- tamara-snyder commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1139589962) at 2022-05-27 05:51 AM PDT -tamara-snyder,2022-05-27T12:52:01Z,- tamara-snyder closed issue by PR 3174: [2928](https://github.com/hackforla/website/issues/2928#event-6692379471) at 2022-05-27 05:52 AM PDT -tamara-snyder,2022-05-29T17:33:25Z,- tamara-snyder commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1140492793) at 2022-05-29 10:33 AM PDT -tamara-snyder,2022-05-31T22:28:04Z,- tamara-snyder commented on pull request: [3185](https://github.com/hackforla/website/pull/3185#issuecomment-1142697442) at 2022-05-31 03:28 PM PDT -tamara-snyder,2022-06-01T03:33:26Z,- tamara-snyder submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-991356929) at 2022-05-31 08:33 PM PDT -tamara-snyder,2022-06-03T11:41:18Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1145877902) at 2022-06-03 04:41 AM PDT -tamara-snyder,2022-06-06T22:26:33Z,- tamara-snyder commented on issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1147996123) at 2022-06-06 03:26 PM PDT -tamara-snyder,2022-06-16T18:32:17Z,- tamara-snyder opened issue: [3257](https://github.com/hackforla/website/issues/3257) at 2022-06-16 11:32 AM PDT -tamara-snyder,2022-06-17T02:43:03Z,- tamara-snyder submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-1009938688) at 2022-06-16 07:43 PM PDT -tamara-snyder,2022-06-17T02:48:18Z,- tamara-snyder closed issue by PR 3162: [3084](https://github.com/hackforla/website/issues/3084#event-6825721802) at 2022-06-16 07:48 PM PDT -tamara-snyder,2022-06-19T17:40:27Z,- tamara-snyder commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159782372) at 2022-06-19 10:40 AM PDT -tamara-snyder,2022-06-19T17:47:27Z,- tamara-snyder submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1011552653) at 2022-06-19 10:47 AM PDT -tamara-snyder,2022-06-22T00:51:18Z,- tamara-snyder opened issue: [3278](https://github.com/hackforla/website/issues/3278) at 2022-06-21 05:51 PM PDT -tamara-snyder,2022-06-22T01:03:25Z,- tamara-snyder opened issue: [3280](https://github.com/hackforla/website/issues/3280) at 2022-06-21 06:03 PM PDT -tamara-snyder,2022-06-22T01:22:13Z,- tamara-snyder opened issue: [3283](https://github.com/hackforla/website/issues/3283) at 2022-06-21 06:22 PM PDT -tamara-snyder,2022-06-22T21:15:11Z,- tamara-snyder commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1163607088) at 2022-06-22 02:15 PM PDT -tamara-snyder,2022-06-22T21:15:15Z,- tamara-snyder reopened issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1163607088) at 2022-06-22 02:15 PM PDT -tamara-snyder,2022-06-22T21:21:41Z,- tamara-snyder commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1163611658) at 2022-06-22 02:21 PM PDT -tamara-snyder,2022-06-23T19:11:47Z,- tamara-snyder commented on issue: [3271](https://github.com/hackforla/website/issues/3271#issuecomment-1164773641) at 2022-06-23 12:11 PM PDT -tamara-snyder,2022-06-23T19:20:58Z,- tamara-snyder commented on issue: [3268](https://github.com/hackforla/website/issues/3268#issuecomment-1164781125) at 2022-06-23 12:20 PM PDT -tamara-snyder,2022-06-23T19:32:26Z,- tamara-snyder commented on issue: [3093](https://github.com/hackforla/website/issues/3093#issuecomment-1164790823) at 2022-06-23 12:32 PM PDT -tamara-snyder,2022-06-23T19:34:38Z,- tamara-snyder commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1164792553) at 2022-06-23 12:34 PM PDT -tamara-snyder,2022-06-23T20:10:53Z,- tamara-snyder commented on issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1164822692) at 2022-06-23 01:10 PM PDT -tamara-snyder,2022-06-23T20:14:01Z,- tamara-snyder commented on issue: [3245](https://github.com/hackforla/website/issues/3245#issuecomment-1164825173) at 2022-06-23 01:14 PM PDT -tamara-snyder,2022-06-23T20:18:40Z,- tamara-snyder commented on issue: [3243](https://github.com/hackforla/website/issues/3243#issuecomment-1164828912) at 2022-06-23 01:18 PM PDT -tamara-snyder,2022-06-23T20:23:16Z,- tamara-snyder commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1164839579) at 2022-06-23 01:23 PM PDT -tamara-snyder,2022-06-23T20:29:34Z,- tamara-snyder commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1164844625) at 2022-06-23 01:29 PM PDT -tamara-snyder,2022-06-23T20:32:44Z,- tamara-snyder commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1164847296) at 2022-06-23 01:32 PM PDT -tamara-snyder,2022-06-23T20:37:34Z,- tamara-snyder commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1164850992) at 2022-06-23 01:37 PM PDT -tamara-snyder,2022-06-23T20:42:38Z,- tamara-snyder commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1164854805) at 2022-06-23 01:42 PM PDT -tamara-snyder,2022-06-23T20:43:53Z,- tamara-snyder commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1164855879) at 2022-06-23 01:43 PM PDT -tamara-snyder,2022-06-23T20:52:36Z,- tamara-snyder commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1164862549) at 2022-06-23 01:52 PM PDT -tamara-snyder,2022-06-23T20:56:53Z,- tamara-snyder commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1164865633) at 2022-06-23 01:56 PM PDT -tamara-snyder,2022-06-23T21:00:17Z,- tamara-snyder commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1164868210) at 2022-06-23 02:00 PM PDT -tamara-snyder,2022-06-23T21:00:48Z,- tamara-snyder commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1164868613) at 2022-06-23 02:00 PM PDT -tamara-snyder,2022-06-23T21:34:49Z,- tamara-snyder assigned to issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1162735905) at 2022-06-23 02:34 PM PDT -tamara-snyder,2022-06-24T00:01:40Z,- tamara-snyder closed issue by PR 2962: [2155](https://github.com/hackforla/website/issues/2155#event-6870535073) at 2022-06-23 05:01 PM PDT -tamara-snyder,2022-06-24T00:04:24Z,- tamara-snyder commented on pull request: [3259](https://github.com/hackforla/website/pull/3259#issuecomment-1165029750) at 2022-06-23 05:04 PM PDT -tamara-snyder,2022-06-24T13:14:07Z,- tamara-snyder submitted pull request review: [3146](https://github.com/hackforla/website/pull/3146#pullrequestreview-1018462470) at 2022-06-24 06:14 AM PDT -tamara-snyder,2022-06-26T16:44:33Z,- tamara-snyder assigned to issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-06-26 09:44 AM PDT -tamara-snyder,2022-06-26T18:53:49Z,- tamara-snyder opened issue: [3310](https://github.com/hackforla/website/issues/3310) at 2022-06-26 11:53 AM PDT -tamara-snyder,2022-06-26T19:06:45Z,- tamara-snyder unassigned from issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-06-26 12:06 PM PDT -tamara-snyder,2022-06-26T19:06:49Z,- tamara-snyder assigned to issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-06-26 12:06 PM PDT -tamara-snyder,2022-06-27T01:40:32Z,- tamara-snyder commented on issue: [3307](https://github.com/hackforla/website/issues/3307#issuecomment-1166727597) at 2022-06-26 06:40 PM PDT -tamara-snyder,2022-06-27T01:59:40Z,- tamara-snyder commented on issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1166741594) at 2022-06-26 06:59 PM PDT -tamara-snyder,2022-06-27T20:06:29Z,- tamara-snyder commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1167829318) at 2022-06-27 01:06 PM PDT -tamara-snyder,2022-06-27T20:06:29Z,- tamara-snyder reopened issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1167829318) at 2022-06-27 01:06 PM PDT -tamara-snyder,2022-06-27T20:14:29Z,- tamara-snyder commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1167836733) at 2022-06-27 01:14 PM PDT -tamara-snyder,2022-06-27T20:14:30Z,- tamara-snyder reopened issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1167836733) at 2022-06-27 01:14 PM PDT -tamara-snyder,2022-06-27T20:20:18Z,- tamara-snyder commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1167842904) at 2022-06-27 01:20 PM PDT -tamara-snyder,2022-06-27T20:20:18Z,- tamara-snyder reopened issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1167842904) at 2022-06-27 01:20 PM PDT -tamara-snyder,2022-07-06T02:35:59Z,- tamara-snyder submitted pull request review: [3332](https://github.com/hackforla/website/pull/3332#pullrequestreview-1029421366) at 2022-07-05 07:35 PM PDT -tamara-snyder,2022-07-11T21:51:46Z,- tamara-snyder unassigned from issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-07-11 02:51 PM PDT -tamara-snyder,2022-07-13T02:29:13Z,- tamara-snyder commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1182695628) at 2022-07-12 07:29 PM PDT -tamara-snyder,2022-07-22T02:46:35Z,- tamara-snyder unassigned from issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1189771039) at 2022-07-21 07:46 PM PDT -tamara-snyder,2024-08-21T03:03:23Z,- tamara-snyder opened issue: [7329](https://github.com/hackforla/website/issues/7329) at 2024-08-20 08:03 PM PDT -tamara-snyder,2024-08-21T03:04:09Z,- tamara-snyder assigned to issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2300449843) at 2024-08-20 08:04 PM PDT -tamara-snyder,2024-08-22T18:32:51Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2305394985) at 2024-08-22 11:32 AM PDT -tamara-snyder,2024-08-24T14:09:23Z,- tamara-snyder assigned to issue: [7239](https://github.com/hackforla/website/issues/7239) at 2024-08-24 07:09 AM PDT -tamara-snyder,2024-08-24T14:10:40Z,- tamara-snyder unassigned from issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308407830) at 2024-08-24 07:10 AM PDT -tamara-snyder,2024-08-24T14:17:31Z,- tamara-snyder assigned to issue: [7147](https://github.com/hackforla/website/issues/7147) at 2024-08-24 07:17 AM PDT -tamara-snyder,2024-08-24T14:34:51Z,- tamara-snyder commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2308415307) at 2024-08-24 07:34 AM PDT -tamara-snyder,2024-08-24T18:23:44Z,- tamara-snyder commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308484468) at 2024-08-24 11:23 AM PDT -tamara-snyder,2024-08-25T03:49:43Z,- tamara-snyder submitted pull request review: [7347](https://github.com/hackforla/website/pull/7347#pullrequestreview-2259081124) at 2024-08-24 08:49 PM PDT -tamara-snyder,2024-08-25T13:03:25Z,- tamara-snyder commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2308827698) at 2024-08-25 06:03 AM PDT -tamara-snyder,2024-08-25T13:53:55Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308856029) at 2024-08-25 06:53 AM PDT -tamara-snyder,2024-08-25T13:55:22Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308856903) at 2024-08-25 06:55 AM PDT -tamara-snyder,2024-08-25T13:57:24Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308858535) at 2024-08-25 06:57 AM PDT -tamara-snyder,2024-08-25T17:22:58Z,- tamara-snyder commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2308931428) at 2024-08-25 10:22 AM PDT -tamara-snyder,2024-08-25T19:05:26Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308960017) at 2024-08-25 12:05 PM PDT -tamara-snyder,2024-08-25T19:24:43Z,- tamara-snyder submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2259360020) at 2024-08-25 12:24 PM PDT -tamara-snyder,2024-08-27T02:45:33Z,- tamara-snyder commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2311462161) at 2024-08-26 07:45 PM PDT -tamara-snyder,2024-09-04T02:38:00Z,- tamara-snyder submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2278826800) at 2024-09-03 07:38 PM PDT -tamara-snyder,2024-09-07T13:29:43Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2335188391) at 2024-09-07 06:29 AM PDT -tamara-snyder,2024-09-07T13:39:38Z,- tamara-snyder assigned to issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2282176682) at 2024-09-07 06:39 AM PDT -tamara-snyder,2024-09-07T13:42:40Z,- tamara-snyder commented on issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2335191713) at 2024-09-07 06:42 AM PDT -tamara-snyder,2024-09-07T14:41:38Z,- tamara-snyder opened pull request: [7408](https://github.com/hackforla/website/pull/7408) at 2024-09-07 07:41 AM PDT -tamara-snyder,2024-09-09T03:31:17Z,- tamara-snyder pull request merged: [7408](https://github.com/hackforla/website/pull/7408#event-14176417526) at 2024-09-08 08:31 PM PDT -tamara-snyder,2024-09-10T22:42:58Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2342290791) at 2024-09-10 03:42 PM PDT -tamara-snyder,2024-09-11T01:32:09Z,- tamara-snyder commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2342440137) at 2024-09-10 06:32 PM PDT -tamara-snyder,2024-09-11T01:39:05Z,- tamara-snyder submitted pull request review: [7427](https://github.com/hackforla/website/pull/7427#pullrequestreview-2294790407) at 2024-09-10 06:39 PM PDT -tamara-snyder,2024-09-15T18:01:00Z,- tamara-snyder assigned to issue: [7411](https://github.com/hackforla/website/issues/7411) at 2024-09-15 11:01 AM PDT -tamara-snyder,2024-09-15T18:02:31Z,- tamara-snyder commented on issue: [7411](https://github.com/hackforla/website/issues/7411#issuecomment-2351704676) at 2024-09-15 11:02 AM PDT -tamara-snyder,2024-09-15T19:19:44Z,- tamara-snyder opened pull request: [7461](https://github.com/hackforla/website/pull/7461) at 2024-09-15 12:19 PM PDT -tamara-snyder,2024-09-16T19:49:36Z,- tamara-snyder pull request merged: [7461](https://github.com/hackforla/website/pull/7461#event-14279050847) at 2024-09-16 12:49 PM PDT -tamara-snyder,2024-09-22T13:36:31Z,- tamara-snyder commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2366791591) at 2024-09-22 06:36 AM PDT -tamara-snyder,2024-09-22T14:10:51Z,- tamara-snyder submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2320863136) at 2024-09-22 07:10 AM PDT -tamara-snyder,2024-09-26T11:39:08Z,- tamara-snyder submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2330943038) at 2024-09-26 04:39 AM PDT -tamara-snyder,2024-09-26T11:54:58Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376729557) at 2024-09-26 04:54 AM PDT -tamara-snyder,2024-09-26T11:59:55Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376739449) at 2024-09-26 04:59 AM PDT -tamara-snyder,2024-09-26T12:03:32Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376747103) at 2024-09-26 05:03 AM PDT -tamara-snyder,2024-09-26T12:30:01Z,- tamara-snyder commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2376820150) at 2024-09-26 05:30 AM PDT -tamara-snyder,2024-09-26T12:31:18Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376822864) at 2024-09-26 05:31 AM PDT -tamara-snyder,2024-10-10T15:41:18Z,- tamara-snyder commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2405467166) at 2024-10-10 08:41 AM PDT -tamara-snyder,2024-10-12T00:56:18Z,- tamara-snyder commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2408277224) at 2024-10-11 05:56 PM PDT -tamara-snyder,2024-10-24T16:31:29Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2435746262) at 2024-10-24 09:31 AM PDT -tamara-snyder,2024-11-12T14:18:38Z,- tamara-snyder commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2470660224) at 2024-11-12 06:18 AM PST -tamara-snyder,2024-11-15T03:17:45Z,- tamara-snyder submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2437579407) at 2024-11-14 07:17 PM PST -tamurafatherree,2019-07-23T03:35:49Z,- tamurafatherree assigned to issue: [134](https://github.com/hackforla/website/issues/134) at 2019-07-22 08:35 PM PDT -tan-zhou,2020-12-27T17:11:18Z,- tan-zhou commented on issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2020-12-27 09:11 AM PST -TaniaKhan04,2021-04-15T23:39:30Z,- TaniaKhan04 commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820804845) at 2021-04-15 04:39 PM PDT -tanmay72003,2025-02-20T13:57:15Z,- tanmay72003 opened pull request: [7930](https://github.com/hackforla/website/pull/7930) at 2025-02-20 05:57 AM PST -tanmay72003,2025-02-20T13:57:30Z,- tanmay72003 pull request closed w/o merging: [7930](https://github.com/hackforla/website/pull/7930#event-16382826191) at 2025-02-20 05:57 AM PST -tanmay72003,2025-02-21T05:34:08Z,- tanmay72003 commented on pull request: [7930](https://github.com/hackforla/website/pull/7930#issuecomment-2673508444) at 2025-02-20 09:34 PM PST -tarang100,2020-12-08T21:55:31Z,- tarang100 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -tarang100,2020-12-20T20:50:33Z,- tarang100 assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:50 PM PST -tarang100,2020-12-20T21:30:27Z,- tarang100 assigned to issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:30 PM PST -tarang100,2020-12-21T17:01:57Z,- tarang100 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-749084217) at 2020-12-21 09:01 AM PST -tarang100,2020-12-21T17:02:44Z,- tarang100 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-749084217) at 2020-12-21 09:02 AM PST -tarang100,2020-12-22T21:23:31Z,- tarang100 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-748644518) at 2020-12-22 01:23 PM PST -tarang100,2020-12-22T22:03:51Z,- tarang100 assigned to issue: [867](https://github.com/hackforla/website/issues/867) at 2020-12-22 02:03 PM PST -tarang100,2020-12-27T12:49:29Z,- tarang100 opened issue: [1033](https://github.com/hackforla/website/issues/1033) at 2020-12-27 04:49 AM PST -tarang100,2020-12-27T12:50:15Z,- tarang100 assigned to issue: [1033](https://github.com/hackforla/website/issues/1033) at 2020-12-27 04:50 AM PST -tarang100,2020-12-27T13:04:43Z,- tarang100 opened issue: [953](https://github.com/hackforla/website/issues/953) at 2020-12-27 05:04 AM PST -tarang100,2020-12-27T13:04:49Z,- tarang100 assigned to issue: [953](https://github.com/hackforla/website/issues/953) at 2020-12-27 05:04 AM PST -tarang100,2020-12-29T21:42:45Z,- tarang100 opened pull request: [883](https://github.com/hackforla/website/pull/883) at 2020-12-29 01:42 PM PST -tarang100,2020-12-29T21:46:15Z,- tarang100 pull request merged: [883](https://github.com/hackforla/website/pull/883#event-4155789929) at 2020-12-29 01:46 PM PST -tarang100,2020-12-29T21:49:58Z,- tarang100 submitted pull request review: [884](https://github.com/hackforla/website/pull/884#pullrequestreview-559714560) at 2020-12-29 01:49 PM PST -tarang100,2020-12-29T22:17:17Z,- tarang100 opened issue: [890](https://github.com/hackforla/website/issues/890) at 2020-12-29 02:17 PM PST -tarang100,2020-12-29T22:29:27Z,- tarang100 assigned to issue: [890](https://github.com/hackforla/website/issues/890) at 2020-12-29 02:29 PM PST -tarang100,2021-01-03T14:40:51Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-753627400) at 2021-01-03 06:40 AM PST -tarang100,2021-01-03T20:30:31Z,- tarang100 opened issue: [907](https://github.com/hackforla/website/issues/907) at 2021-01-03 12:30 PM PST -tarang100,2021-01-03T20:34:31Z,- tarang100 opened issue: [908](https://github.com/hackforla/website/issues/908) at 2021-01-03 12:34 PM PST -tarang100,2021-01-03T20:37:06Z,- tarang100 opened issue: [910](https://github.com/hackforla/website/issues/910) at 2021-01-03 12:37 PM PST -tarang100,2021-01-06T17:16:19Z,- tarang100 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-754520077) at 2021-01-06 09:16 AM PST -tarang100,2021-01-06T17:54:33Z,- tarang100 opened issue: [918](https://github.com/hackforla/website/issues/918) at 2021-01-06 09:54 AM PST -tarang100,2021-01-10T19:53:41Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 11:53 AM PST -tarang100,2021-01-10T19:55:47Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-757534094) at 2021-01-10 11:55 AM PST -tarang100,2021-01-10T20:42:28Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-757540777) at 2021-01-10 12:42 PM PST -tarang100,2021-01-10T21:09:22Z,- tarang100 unassigned from issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 01:09 PM PST -tarang100,2021-01-10T21:35:48Z,- tarang100 commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-757547890) at 2021-01-10 01:35 PM PST -tarang100,2021-01-11T16:08:42Z,- tarang100 assigned to issue: [889](https://github.com/hackforla/website/issues/889) at 2021-01-11 08:08 AM PST -tarang100,2021-01-11T16:10:44Z,- tarang100 assigned to issue: [949](https://github.com/hackforla/website/issues/949) at 2021-01-11 08:10 AM PST -tarang100,2021-01-11T16:18:50Z,- tarang100 assigned to issue: [954](https://github.com/hackforla/website/issues/954) at 2021-01-11 08:18 AM PST -tarang100,2021-01-13T18:58:52Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-759651774) at 2021-01-13 10:58 AM PST -tarang100,2021-01-13T19:11:27Z,- tarang100 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-759658457) at 2021-01-13 11:11 AM PST -tarang100,2021-01-17T17:26:26Z,- tarang100 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-761847764) at 2021-01-17 09:26 AM PST -tarang100,2021-01-17T18:14:42Z,- tarang100 commented on issue: [934](https://github.com/hackforla/website/issues/934#issuecomment-761855430) at 2021-01-17 10:14 AM PST -tarang100,2021-01-17T18:15:15Z,- tarang100 commented on issue: [934](https://github.com/hackforla/website/issues/934#issuecomment-761855529) at 2021-01-17 10:15 AM PST -tarang100,2021-01-17T18:29:15Z,- tarang100 commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857788) at 2021-01-17 10:29 AM PST -tarang100,2021-01-17T18:45:03Z,- tarang100 closed issue by PR 924: [922](https://github.com/hackforla/website/issues/922#event-4215417676) at 2021-01-17 10:45 AM PST -tarang100,2021-01-18T14:37:42Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-762290129) at 2021-01-18 06:37 AM PST -tarang100,2021-01-18T14:54:52Z,- tarang100 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-762300160) at 2021-01-18 06:54 AM PST -tarang100,2021-01-18T15:38:01Z,- tarang100 commented on issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762325102) at 2021-01-18 07:38 AM PST -tarang100,2021-01-19T15:25:43Z,- tarang100 commented on issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762915062) at 2021-01-19 07:25 AM PST -tarang100,2021-01-19T15:30:16Z,- tarang100 unassigned from issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762915062) at 2021-01-19 07:30 AM PST -tarang100,2021-01-19T17:31:45Z,- tarang100 opened issue: [950](https://github.com/hackforla/website/issues/950) at 2021-01-19 09:31 AM PST -tarang100,2021-01-21T18:01:32Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764833019) at 2021-01-21 10:01 AM PST -tarang100,2021-01-21T18:12:39Z,- tarang100 unassigned from issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764833019) at 2021-01-21 10:12 AM PST -tarang100,2021-01-21T18:14:21Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764840726) at 2021-01-21 10:14 AM PST -tarang100,2021-01-21T18:26:28Z,- tarang100 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-764847719) at 2021-01-21 10:26 AM PST -tarang100,2021-01-21T18:41:04Z,- tarang100 commented on issue: [889](https://github.com/hackforla/website/issues/889#issuecomment-764855611) at 2021-01-21 10:41 AM PST -tarang100,2021-01-22T03:31:34Z,- tarang100 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-21 07:31 PM PST -tarang100,2021-01-22T03:32:06Z,- tarang100 unassigned from issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-21 07:32 PM PST -tarang100,2021-01-22T03:41:47Z,- tarang100 commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-765099890) at 2021-01-21 07:41 PM PST -tarang100,2021-01-24T09:48:11Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-766319916) at 2021-01-24 01:48 AM PST -tarang100,2021-01-24T20:36:31Z,- tarang100 opened issue: [964](https://github.com/hackforla/website/issues/964) at 2021-01-24 12:36 PM PST -tarang100,2021-01-24T20:39:46Z,- tarang100 commented on issue: [889](https://github.com/hackforla/website/issues/889#issuecomment-766428053) at 2021-01-24 12:39 PM PST -tarang100,2021-01-24T20:39:58Z,- tarang100 closed issue as completed: [889](https://github.com/hackforla/website/issues/889#event-4242904340) at 2021-01-24 12:39 PM PST -tarang100,2021-01-25T13:56:51Z,- tarang100 opened issue: [969](https://github.com/hackforla/website/issues/969) at 2021-01-25 05:56 AM PST -tarang100,2021-01-25T13:56:51Z,- tarang100 assigned to issue: [969](https://github.com/hackforla/website/issues/969) at 2021-01-25 05:56 AM PST -tarang100,2021-01-27T16:42:02Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-01-27 08:42 AM PST -tarang100,2021-01-30T05:39:25Z,- tarang100 assigned to issue: [950](https://github.com/hackforla/website/issues/950) at 2021-01-29 09:39 PM PST -tarang100,2021-01-30T06:50:48Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-770168473) at 2021-01-29 10:50 PM PST -tarang100,2021-01-31T17:17:15Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-770416091) at 2021-01-31 09:17 AM PST -tarang100,2021-01-31T18:29:58Z,- tarang100 commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-770427447) at 2021-01-31 10:29 AM PST -tarang100,2021-01-31T18:51:31Z,- tarang100 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-770430463) at 2021-01-31 10:51 AM PST -tarang100,2021-01-31T18:59:16Z,- tarang100 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770431566) at 2021-01-31 10:59 AM PST -tarang100,2021-01-31T19:24:55Z,- tarang100 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770435980) at 2021-01-31 11:24 AM PST -tarang100,2021-01-31T19:48:11Z,- tarang100 closed issue as completed: [907](https://github.com/hackforla/website/issues/907#event-4270691406) at 2021-01-31 11:48 AM PST -tarang100,2021-02-03T17:32:20Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-772686719) at 2021-02-03 09:32 AM PST -tarang100,2021-02-03T18:30:04Z,- tarang100 opened issue: [994](https://github.com/hackforla/website/issues/994) at 2021-02-03 10:30 AM PST -tarang100,2021-02-03T20:07:05Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-772787179) at 2021-02-03 12:07 PM PST -tarang100,2021-02-03T20:07:05Z,- tarang100 closed issue as completed: [890](https://github.com/hackforla/website/issues/890#event-4287305930) at 2021-02-03 12:07 PM PST -tarang100,2021-02-03T20:11:34Z,- tarang100 assigned to issue: [844](https://github.com/hackforla/website/issues/844) at 2021-02-03 12:11 PM PST -tarang100,2021-02-04T00:37:33Z,- tarang100 assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -tarang100,2021-02-06T11:55:38Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-774461659) at 2021-02-06 03:55 AM PST -tarang100,2021-02-10T03:27:31Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776412788) at 2021-02-09 07:27 PM PST -tarang100,2021-02-10T10:14:37Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-776600687) at 2021-02-10 02:14 AM PST -tarang100,2021-02-10T17:51:14Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-02-10 09:51 AM PST -tarang100,2021-02-10T20:10:41Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-776992435) at 2021-02-10 12:10 PM PST -tarang100,2021-02-14T11:58:04Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-778767611) at 2021-02-14 03:58 AM PST -tarang100,2021-02-14T12:49:19Z,- tarang100 opened issue: [1047](https://github.com/hackforla/website/issues/1047) at 2021-02-14 04:49 AM PST -tarang100,2021-02-14T13:05:40Z,- tarang100 opened issue: [1048](https://github.com/hackforla/website/issues/1048) at 2021-02-14 05:05 AM PST -tarang100,2021-02-14T13:14:48Z,- tarang100 opened issue: [1049](https://github.com/hackforla/website/issues/1049) at 2021-02-14 05:14 AM PST -tarang100,2021-02-14T13:34:38Z,- tarang100 opened issue: [1050](https://github.com/hackforla/website/issues/1050) at 2021-02-14 05:34 AM PST -tarang100,2021-02-14T18:26:53Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-778819281) at 2021-02-14 10:26 AM PST -tarang100,2021-02-14T18:42:43Z,- tarang100 opened issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:42 AM PST -tarang100,2021-02-14T18:47:39Z,- tarang100 assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -tarang100,2021-02-14T19:19:08Z,- tarang100 assigned to issue: [915](https://github.com/hackforla/website/issues/915#event-4203112330) at 2021-02-14 11:19 AM PST -tarang100,2021-02-17T17:14:00Z,- tarang100 commented on issue: [915](https://github.com/hackforla/website/issues/915#issuecomment-780710318) at 2021-02-17 09:14 AM PST -tarang100,2021-02-17T18:29:14Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-02-17 10:29 AM PST -tarang100,2021-02-17T19:41:06Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-780803478) at 2021-02-17 11:41 AM PST -tarang100,2021-02-18T05:54:57Z,- tarang100 assigned to issue: [1074](https://github.com/hackforla/website/issues/1074) at 2021-02-17 09:54 PM PST -tarang100,2021-02-20T11:06:49Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-782607509) at 2021-02-20 03:06 AM PST -tarang100,2021-02-21T07:57:57Z,- tarang100 commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-782816584) at 2021-02-20 11:57 PM PST -tarang100,2021-02-21T17:59:56Z,- tarang100 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-782898041) at 2021-02-21 09:59 AM PST -tarang100,2021-02-21T18:43:28Z,- tarang100 commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-782905054) at 2021-02-21 10:43 AM PST -tarang100,2021-03-01T18:36:40Z,- tarang100 unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-03-01 10:36 AM PST -tarang100,2021-03-01T18:49:26Z,- tarang100 unassigned from issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788182866) at 2021-03-01 10:49 AM PST -tarang100,2021-03-03T17:05:59Z,- tarang100 commented on issue: [915](https://github.com/hackforla/website/issues/915#issuecomment-789891641) at 2021-03-03 09:05 AM PST -tarang100,2021-03-07T18:08:57Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-792326012) at 2021-03-07 10:08 AM PST -tarang100,2021-03-07T18:09:58Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-792326190) at 2021-03-07 10:09 AM PST -tarang100,2021-03-07T19:05:35Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-792334484) at 2021-03-07 11:05 AM PST -tarang100,2021-03-07T19:05:35Z,- tarang100 closed issue as completed: [844](https://github.com/hackforla/website/issues/844#event-4418361368) at 2021-03-07 11:05 AM PST -tarang100,2021-03-10T15:13:05Z,- tarang100 commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-795582340) at 2021-03-10 07:13 AM PST -tarang100,2021-03-10T15:15:36Z,- tarang100 commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-795586586) at 2021-03-10 07:15 AM PST -tarang100,2021-03-10T15:15:36Z,- tarang100 closed issue as completed: [1074](https://github.com/hackforla/website/issues/1074#event-4437105566) at 2021-03-10 07:15 AM PST -tarang100,2021-03-10T15:25:45Z,- tarang100 commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-795601197) at 2021-03-10 07:25 AM PST -tarang100,2021-03-10T15:27:55Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-795604142) at 2021-03-10 07:27 AM PST -tarang100,2021-03-10T15:30:07Z,- tarang100 commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-795607427) at 2021-03-10 07:30 AM PST -tarang100,2021-03-10T18:37:22Z,- tarang100 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-795884145) at 2021-03-10 10:37 AM PST -tarang100,2021-03-10T18:39:51Z,- tarang100 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-795887764) at 2021-03-10 10:39 AM PST -tarang100,2021-03-10T18:40:37Z,- tarang100 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-795888934) at 2021-03-10 10:40 AM PST -tarang100,2021-03-10T18:43:37Z,- tarang100 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-795893774) at 2021-03-10 10:43 AM PST -tarang100,2021-03-10T18:46:51Z,- tarang100 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-795898406) at 2021-03-10 10:46 AM PST -tarang100,2021-03-10T18:50:25Z,- tarang100 commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-795903230) at 2021-03-10 10:50 AM PST -tarang100,2021-03-10T19:36:53Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-795969316) at 2021-03-10 11:36 AM PST -tarang100,2021-03-10T19:37:19Z,- tarang100 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-795969316) at 2021-03-10 11:37 AM PST -tarang100,2021-03-10T19:40:19Z,- tarang100 commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-795974096) at 2021-03-10 11:40 AM PST -tarang100,2021-03-10T19:57:39Z,- tarang100 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-796000272) at 2021-03-10 11:57 AM PST -tarang100,2021-03-10T20:07:26Z,- tarang100 opened issue: [1196](https://github.com/hackforla/website/issues/1196) at 2021-03-10 12:07 PM PST -tarang100,2021-03-10T20:15:43Z,- tarang100 assigned to issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-795601197) at 2021-03-10 12:15 PM PST -tarang100,2021-03-14T17:25:42Z,- tarang100 commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-798945297) at 2021-03-14 10:25 AM PDT -tarang100,2021-03-17T06:28:43Z,- tarang100 opened pull request: [1218](https://github.com/hackforla/website/pull/1218) at 2021-03-16 11:28 PM PDT -tarang100,2021-03-17T06:31:21Z,- tarang100 assigned to issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-798945297) at 2021-03-16 11:31 PM PDT -tarang100,2021-03-17T17:17:51Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-801262664) at 2021-03-17 10:17 AM PDT -tarang100,2021-03-17T18:15:11Z,- tarang100 pull request merged: [1218](https://github.com/hackforla/website/pull/1218#event-4471860228) at 2021-03-17 11:15 AM PDT -tarang100,2021-03-19T03:58:07Z,- tarang100 assigned to issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-802520761) at 2021-03-18 08:58 PM PDT -tarang100,2021-03-21T16:38:41Z,- tarang100 commented on issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-803618220) at 2021-03-21 09:38 AM PDT -tarang100,2021-03-21T16:40:21Z,- tarang100 unassigned from issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-803618220) at 2021-03-21 09:40 AM PDT -tarang100,2021-03-21T16:48:00Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-803620121) at 2021-03-21 09:48 AM PDT -tarang100,2021-03-24T17:27:42Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-806018314) at 2021-03-24 10:27 AM PDT -tarang100,2021-03-28T17:00:29Z,- tarang100 commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-808924727) at 2021-03-28 10:00 AM PDT -tarang100,2021-03-28T17:35:43Z,- tarang100 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-807862490) at 2021-03-28 10:35 AM PDT -tarang100,2021-03-31T17:11:40Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-811261398) at 2021-03-31 10:11 AM PDT -tarang100,2021-03-31T17:44:02Z,- tarang100 opened issue: [1341](https://github.com/hackforla/website/issues/1341) at 2021-03-31 10:44 AM PDT -tarang100,2021-03-31T17:50:56Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811287661) at 2021-03-31 10:50 AM PDT -tarang100,2021-03-31T17:52:29Z,- tarang100 opened issue: [1342](https://github.com/hackforla/website/issues/1342) at 2021-03-31 10:52 AM PDT -tarang100,2021-03-31T18:25:38Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811310035) at 2021-03-31 11:25 AM PDT -tarang100,2021-03-31T18:42:47Z,- tarang100 opened issue: [1343](https://github.com/hackforla/website/issues/1343) at 2021-03-31 11:42 AM PDT -tarang100,2021-03-31T19:09:37Z,- tarang100 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-811357683) at 2021-03-31 12:09 PM PDT -tarang100,2021-03-31T19:22:03Z,- tarang100 commented on issue: [1259](https://github.com/hackforla/website/issues/1259#issuecomment-811369691) at 2021-03-31 12:22 PM PDT -tarang100,2021-03-31T19:24:20Z,- tarang100 commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-811371994) at 2021-03-31 12:24 PM PDT -tarang100,2021-04-27T01:55:21Z,- tarang100 assigned to issue: [1469](https://github.com/hackforla/website/issues/1469) at 2021-04-26 06:55 PM PDT -tarang100,2021-06-06T16:15:11Z,- tarang100 unassigned from issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-855422617) at 2021-06-06 09:15 AM PDT -tarang100,2021-06-12T10:02:23Z,- tarang100 unassigned from issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-06-12 03:02 AM PDT -Tarrantul99,6478,SKILLS ISSUE -Tarrantul99,2024-03-20T03:05:14Z,- Tarrantul99 opened issue: [6478](https://github.com/hackforla/website/issues/6478) at 2024-03-19 08:05 PM PDT -Tarrantul99,2024-03-21T20:10:41Z,- Tarrantul99 assigned to issue: [6478](https://github.com/hackforla/website/issues/6478) at 2024-03-21 01:10 PM PDT -Tarrantul99,2024-03-21T21:42:56Z,- Tarrantul99 commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2013845960) at 2024-03-21 02:42 PM PDT -Tarrantul99,2024-03-21T21:42:56Z,- Tarrantul99 closed issue as completed: [6478](https://github.com/hackforla/website/issues/6478#event-12207703051) at 2024-03-21 02:42 PM PDT -Tarrantul99,2024-04-07T19:03:53Z,- Tarrantul99 commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2041571957) at 2024-04-07 12:03 PM PDT -taylorbeee,6523,SKILLS ISSUE -taylorbeee,2024-03-27T02:44:01Z,- taylorbeee opened issue: [6523](https://github.com/hackforla/website/issues/6523) at 2024-03-26 07:44 PM PDT -taylorbeee,2024-03-27T02:44:12Z,- taylorbeee assigned to issue: [6523](https://github.com/hackforla/website/issues/6523) at 2024-03-26 07:44 PM PDT -taylorbeee,2024-04-06T00:36:25Z,- taylorbeee closed issue by PR 6580: [6559](https://github.com/hackforla/website/issues/6559#event-12380279399) at 2024-04-05 05:36 PM PDT -taylorbeee,2024-04-06T00:36:47Z,- taylorbeee reopened issue: [6559](https://github.com/hackforla/website/issues/6559#event-12380279399) at 2024-04-05 05:36 PM PDT -taylorbeee,2024-04-06T00:38:35Z,- taylorbeee commented on issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2040827332) at 2024-04-05 05:38 PM PDT -taylorbeee,2024-04-11T00:04:04Z,- taylorbeee assigned to issue: [6175](https://github.com/hackforla/website/issues/6175) at 2024-04-10 05:04 PM PDT -taylorbeee,2024-04-11T00:43:50Z,- taylorbeee opened pull request: [6620](https://github.com/hackforla/website/pull/6620) at 2024-04-10 05:43 PM PDT -taylorbeee,2024-04-11T23:52:50Z,- taylorbeee pull request merged: [6620](https://github.com/hackforla/website/pull/6620#event-12442818138) at 2024-04-11 04:52 PM PDT -taylorbeee,2024-04-26T17:45:19Z,- taylorbeee assigned to issue: [6706](https://github.com/hackforla/website/issues/6706#issuecomment-2074023803) at 2024-04-26 10:45 AM PDT -taylorbeee,2024-04-26T18:32:29Z,- taylorbeee opened pull request: [6768](https://github.com/hackforla/website/pull/6768) at 2024-04-26 11:32 AM PDT -taylorbeee,2024-04-29T19:01:39Z,- taylorbeee submitted pull request review: [6776](https://github.com/hackforla/website/pull/6776#pullrequestreview-2029359505) at 2024-04-29 12:01 PM PDT -taylorbeee,2024-04-30T21:22:18Z,- taylorbeee commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2087369829) at 2024-04-30 02:22 PM PDT -taylorbeee,2024-05-01T17:56:23Z,- taylorbeee submitted pull request review: [6792](https://github.com/hackforla/website/pull/6792#pullrequestreview-2034128378) at 2024-05-01 10:56 AM PDT -taylorbeee,2024-05-01T18:55:46Z,- taylorbeee pull request merged: [6768](https://github.com/hackforla/website/pull/6768#event-12673646987) at 2024-05-01 11:55 AM PDT -taylorbeee,2024-05-06T17:43:11Z,- taylorbeee assigned to issue: [6569](https://github.com/hackforla/website/issues/6569) at 2024-05-06 10:43 AM PDT -taylorbeee,2024-05-06T18:20:19Z,- taylorbeee commented on issue: [6569](https://github.com/hackforla/website/issues/6569#issuecomment-2096642162) at 2024-05-06 11:20 AM PDT -taylorbeee,2024-05-28T22:30:29Z,- taylorbeee submitted pull request review: [6906](https://github.com/hackforla/website/pull/6906#pullrequestreview-2083950046) at 2024-05-28 03:30 PM PDT -taylorbeee,2024-07-03T17:01:35Z,- taylorbeee commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2206803845) at 2024-07-03 10:01 AM PDT -taylorbeee,2024-07-03T17:01:35Z,- taylorbeee closed issue as completed: [6523](https://github.com/hackforla/website/issues/6523#event-13383670195) at 2024-07-03 10:01 AM PDT -taylorbeee,2024-07-22T19:23:33Z,- taylorbeee assigned to issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2227758220) at 2024-07-22 12:23 PM PDT -taylorbeee,2024-07-22T19:27:21Z,- taylorbeee commented on issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2243663555) at 2024-07-22 12:27 PM PDT -taylorbeee,2024-07-26T23:07:42Z,- taylorbeee commented on issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2253631350) at 2024-07-26 04:07 PM PDT -taylorbeee,2024-07-27T17:49:00Z,- taylorbeee opened pull request: [7150](https://github.com/hackforla/website/pull/7150) at 2024-07-27 10:49 AM PDT -taylorbeee,2024-07-31T17:09:40Z,- taylorbeee commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2260983584) at 2024-07-31 10:09 AM PDT -taylorbeee,2024-08-01T01:56:48Z,- taylorbeee pull request merged: [7150](https://github.com/hackforla/website/pull/7150#event-13718407268) at 2024-07-31 06:56 PM PDT -tejasn14,6880,SKILLS ISSUE -tejasn14,2024-05-22T03:01:44Z,- tejasn14 opened issue: [6880](https://github.com/hackforla/website/issues/6880) at 2024-05-21 08:01 PM PDT -tejasn14,2024-05-22T03:14:14Z,- tejasn14 assigned to issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2123782096) at 2024-05-21 08:14 PM PDT -terrencejihoonjung,6878,SKILLS ISSUE -terrencejihoonjung,2024-05-22T02:59:09Z,- terrencejihoonjung opened issue: [6878](https://github.com/hackforla/website/issues/6878) at 2024-05-21 07:59 PM PDT -terrencejihoonjung,2024-05-22T02:59:17Z,- terrencejihoonjung assigned to issue: [6878](https://github.com/hackforla/website/issues/6878) at 2024-05-21 07:59 PM PDT -terrencejihoonjung,2024-05-26T01:16:51Z,- terrencejihoonjung assigned to issue: [6722](https://github.com/hackforla/website/issues/6722) at 2024-05-25 06:16 PM PDT -terrencejihoonjung,2024-05-26T01:26:06Z,- terrencejihoonjung commented on issue: [6722](https://github.com/hackforla/website/issues/6722#issuecomment-2131889000) at 2024-05-25 06:26 PM PDT -terrencejihoonjung,2024-05-26T02:02:16Z,- terrencejihoonjung opened pull request: [6897](https://github.com/hackforla/website/pull/6897) at 2024-05-25 07:02 PM PDT -terrencejihoonjung,2024-05-26T18:30:51Z,- terrencejihoonjung assigned to issue: [6760](https://github.com/hackforla/website/issues/6760) at 2024-05-26 11:30 AM PDT -terrencejihoonjung,2024-05-26T18:32:53Z,- terrencejihoonjung commented on issue: [6760](https://github.com/hackforla/website/issues/6760#issuecomment-2132326679) at 2024-05-26 11:32 AM PDT -terrencejihoonjung,2024-05-28T21:40:21Z,- terrencejihoonjung opened pull request: [6906](https://github.com/hackforla/website/pull/6906) at 2024-05-28 02:40 PM PDT -terrencejihoonjung,2024-05-29T02:35:42Z,- terrencejihoonjung commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2136410282) at 2024-05-28 07:35 PM PDT -terrencejihoonjung,2024-05-29T23:56:21Z,- terrencejihoonjung submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2086862433) at 2024-05-29 04:56 PM PDT -terrencejihoonjung,2024-05-30T17:49:43Z,- terrencejihoonjung pull request merged: [6897](https://github.com/hackforla/website/pull/6897#event-12989790657) at 2024-05-30 10:49 AM PDT -terrencejihoonjung,2024-05-30T18:04:48Z,- terrencejihoonjung pull request merged: [6906](https://github.com/hackforla/website/pull/6906#event-12989938744) at 2024-05-30 11:04 AM PDT -terrencejihoonjung,2024-06-01T06:06:08Z,- terrencejihoonjung submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2092026075) at 2024-05-31 11:06 PM PDT -terrencejihoonjung,2024-06-02T05:20:49Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2143702895) at 2024-06-01 10:20 PM PDT -terrencejihoonjung,2024-06-02T05:29:57Z,- terrencejihoonjung closed issue as completed: [6878](https://github.com/hackforla/website/issues/6878#event-13010827137) at 2024-06-01 10:29 PM PDT -terrencejihoonjung,2024-06-02T05:31:22Z,- terrencejihoonjung assigned to issue: [6756](https://github.com/hackforla/website/issues/6756) at 2024-06-01 10:31 PM PDT -terrencejihoonjung,2024-06-02T05:32:24Z,- terrencejihoonjung commented on issue: [6756](https://github.com/hackforla/website/issues/6756#issuecomment-2143705844) at 2024-06-01 10:32 PM PDT -terrencejihoonjung,2024-06-04T00:40:06Z,- terrencejihoonjung assigned to issue: [6655](https://github.com/hackforla/website/issues/6655#issuecomment-2057996054) at 2024-06-03 05:40 PM PDT -terrencejihoonjung,2024-06-04T00:40:48Z,- terrencejihoonjung commented on issue: [6655](https://github.com/hackforla/website/issues/6655#issuecomment-2146356332) at 2024-06-03 05:40 PM PDT -terrencejihoonjung,2024-06-04T20:31:58Z,- terrencejihoonjung commented on pull request: [6958](https://github.com/hackforla/website/pull/6958#issuecomment-2148368265) at 2024-06-04 01:31 PM PDT -terrencejihoonjung,2024-06-04T20:42:04Z,- terrencejihoonjung commented on pull request: [6928](https://github.com/hackforla/website/pull/6928#issuecomment-2148382492) at 2024-06-04 01:42 PM PDT -terrencejihoonjung,2024-06-05T01:40:33Z,- terrencejihoonjung submitted pull request review: [6928](https://github.com/hackforla/website/pull/6928#pullrequestreview-2097706511) at 2024-06-04 06:40 PM PDT -terrencejihoonjung,2024-06-05T01:45:36Z,- terrencejihoonjung submitted pull request review: [6958](https://github.com/hackforla/website/pull/6958#pullrequestreview-2097710023) at 2024-06-04 06:45 PM PDT -terrencejihoonjung,2024-06-05T04:58:50Z,- terrencejihoonjung submitted pull request review: [6958](https://github.com/hackforla/website/pull/6958#pullrequestreview-2098036259) at 2024-06-04 09:58 PM PDT -terrencejihoonjung,2024-06-07T05:54:20Z,- terrencejihoonjung opened pull request: [6972](https://github.com/hackforla/website/pull/6972) at 2024-06-06 10:54 PM PDT -terrencejihoonjung,2024-06-08T07:08:05Z,- terrencejihoonjung commented on pull request: [6973](https://github.com/hackforla/website/pull/6973#issuecomment-2155848029) at 2024-06-08 12:08 AM PDT -terrencejihoonjung,2024-06-11T19:22:56Z,- terrencejihoonjung pull request merged: [6972](https://github.com/hackforla/website/pull/6972#event-13121767777) at 2024-06-11 12:22 PM PDT -terrencejihoonjung,2024-06-11T23:31:08Z,- terrencejihoonjung submitted pull request review: [6973](https://github.com/hackforla/website/pull/6973#pullrequestreview-2111614973) at 2024-06-11 04:31 PM PDT -terrencejihoonjung,2024-06-15T05:02:14Z,- terrencejihoonjung assigned to issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2167194048) at 2024-06-14 10:02 PM PDT -terrencejihoonjung,2024-06-15T05:03:37Z,- terrencejihoonjung commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2169130674) at 2024-06-14 10:03 PM PDT -terrencejihoonjung,2024-06-15T05:05:48Z,- terrencejihoonjung commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2169131303) at 2024-06-14 10:05 PM PDT -terrencejihoonjung,2024-06-17T05:30:28Z,- terrencejihoonjung commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2172322513) at 2024-06-16 10:30 PM PDT -terrencejihoonjung,2024-06-18T07:35:59Z,- terrencejihoonjung submitted pull request review: [6976](https://github.com/hackforla/website/pull/6976#pullrequestreview-2124740965) at 2024-06-18 12:35 AM PDT -terrencejihoonjung,2024-06-21T02:59:07Z,- terrencejihoonjung opened pull request: [7043](https://github.com/hackforla/website/pull/7043) at 2024-06-20 07:59 PM PDT -terrencejihoonjung,2024-06-23T01:55:50Z,- terrencejihoonjung commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2184340125) at 2024-06-22 06:55 PM PDT -terrencejihoonjung,2024-06-27T18:49:52Z,- terrencejihoonjung commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2195456932) at 2024-06-27 11:49 AM PDT -terrencejihoonjung,2024-06-28T20:38:49Z,- terrencejihoonjung submitted pull request review: [7040](https://github.com/hackforla/website/pull/7040#pullrequestreview-2148938059) at 2024-06-28 01:38 PM PDT -terrencejihoonjung,2024-06-28T20:47:40Z,- terrencejihoonjung commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2197637517) at 2024-06-28 01:47 PM PDT -terrencejihoonjung,2024-06-30T21:36:44Z,- terrencejihoonjung pull request merged: [7043](https://github.com/hackforla/website/pull/7043#event-13343086564) at 2024-06-30 02:36 PM PDT -terrencejihoonjung,2024-07-02T05:29:51Z,- terrencejihoonjung commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201967778) at 2024-07-01 10:29 PM PDT -terrencejihoonjung,2024-07-05T06:02:56Z,- terrencejihoonjung opened pull request: [7088](https://github.com/hackforla/website/pull/7088) at 2024-07-04 11:02 PM PDT -terrencejihoonjung,2024-07-13T05:53:55Z,- terrencejihoonjung commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2226786262) at 2024-07-12 10:53 PM PDT -terrencejihoonjung,2024-08-14T02:24:32Z,- terrencejihoonjung commented on pull request: [7280](https://github.com/hackforla/website/pull/7280#issuecomment-2287712952) at 2024-08-13 07:24 PM PDT -terrencejihoonjung,2024-08-17T23:49:08Z,- terrencejihoonjung submitted pull request review: [7280](https://github.com/hackforla/website/pull/7280#pullrequestreview-2244173459) at 2024-08-17 04:49 PM PDT -terrencejihoonjung,2024-08-18T04:03:10Z,- terrencejihoonjung pull request merged: [7088](https://github.com/hackforla/website/pull/7088#event-13921113109) at 2024-08-17 09:03 PM PDT -terrencejihoonjung,2024-08-19T05:19:07Z,- terrencejihoonjung assigned to issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2287749364) at 2024-08-18 10:19 PM PDT -terrencejihoonjung,2024-08-19T05:19:53Z,- terrencejihoonjung commented on issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2295691011) at 2024-08-18 10:19 PM PDT -terrencejihoonjung,2024-08-22T20:00:11Z,- terrencejihoonjung commented on issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2305530152) at 2024-08-22 01:00 PM PDT -terrencejihoonjung,2024-08-22T23:05:48Z,- terrencejihoonjung opened pull request: [7343](https://github.com/hackforla/website/pull/7343) at 2024-08-22 04:05 PM PDT -terrencejihoonjung,2024-08-22T23:10:11Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305896693) at 2024-08-22 04:10 PM PDT -terrencejihoonjung,2024-08-22T23:13:49Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305899737) at 2024-08-22 04:13 PM PDT -terrencejihoonjung,2024-08-22T23:14:31Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305900339) at 2024-08-22 04:14 PM PDT -terrencejihoonjung,2024-08-22T23:15:14Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305900986) at 2024-08-22 04:15 PM PDT -terrencejihoonjung,2024-08-22T23:15:41Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305901359) at 2024-08-22 04:15 PM PDT -terrencejihoonjung,2024-08-22T23:17:25Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305902939) at 2024-08-22 04:17 PM PDT -terrencejihoonjung,2024-08-22T23:18:05Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305903471) at 2024-08-22 04:18 PM PDT -terrencejihoonjung,2024-08-22T23:20:06Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305905174) at 2024-08-22 04:20 PM PDT -terrencejihoonjung,2024-08-22T23:25:18Z,- terrencejihoonjung assigned to issue: [7337](https://github.com/hackforla/website/issues/7337) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:25:31Z,- terrencejihoonjung unassigned from issue: [7337](https://github.com/hackforla/website/issues/7337) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:25:49Z,- terrencejihoonjung assigned to issue: [7336](https://github.com/hackforla/website/issues/7336) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:25:54Z,- terrencejihoonjung assigned to issue: [7335](https://github.com/hackforla/website/issues/7335) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:26:02Z,- terrencejihoonjung unassigned from issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2305910335) at 2024-08-22 04:26 PM PDT -terrencejihoonjung,2024-08-22T23:26:08Z,- terrencejihoonjung unassigned from issue: [7335](https://github.com/hackforla/website/issues/7335) at 2024-08-22 04:26 PM PDT -terrencejihoonjung,2024-08-24T04:07:05Z,- terrencejihoonjung assigned to issue: [7190](https://github.com/hackforla/website/issues/7190) at 2024-08-23 09:07 PM PDT -terrencejihoonjung,2024-08-24T04:07:22Z,- terrencejihoonjung unassigned from issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2308043583) at 2024-08-23 09:07 PM PDT -terrencejihoonjung,2024-08-24T04:32:10Z,- terrencejihoonjung commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2308073887) at 2024-08-23 09:32 PM PDT -terrencejihoonjung,2024-08-24T23:47:32Z,- terrencejihoonjung submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2259027019) at 2024-08-24 04:47 PM PDT -terrencejihoonjung,2024-08-27T16:59:22Z,- terrencejihoonjung pull request merged: [7343](https://github.com/hackforla/website/pull/7343#event-14032215467) at 2024-08-27 09:59 AM PDT -terrencejihoonjung,2024-09-05T03:45:35Z,- terrencejihoonjung assigned to issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2295111671) at 2024-09-04 08:45 PM PDT -terrencejihoonjung,2024-09-05T03:46:10Z,- terrencejihoonjung commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2330537581) at 2024-09-04 08:46 PM PDT -terrencejihoonjung,2024-09-06T17:54:50Z,- terrencejihoonjung opened pull request: [7406](https://github.com/hackforla/website/pull/7406) at 2024-09-06 10:54 AM PDT -terrencejihoonjung,2024-09-09T03:29:49Z,- terrencejihoonjung pull request merged: [7406](https://github.com/hackforla/website/pull/7406#event-14176410683) at 2024-09-08 08:29 PM PDT -terrencejihoonjung,2024-09-12T16:52:50Z,- terrencejihoonjung assigned to issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2305910335) at 2024-09-12 09:52 AM PDT -terrencejihoonjung,2024-09-12T16:53:29Z,- terrencejihoonjung commented on issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2346796795) at 2024-09-12 09:53 AM PDT -terrencejihoonjung,2024-09-13T18:22:24Z,- terrencejihoonjung opened pull request: [7445](https://github.com/hackforla/website/pull/7445) at 2024-09-13 11:22 AM PDT -terrencejihoonjung,2024-09-14T23:20:07Z,- terrencejihoonjung assigned to issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2311391464) at 2024-09-14 04:20 PM PDT -terrencejihoonjung,2024-09-14T23:20:20Z,- terrencejihoonjung unassigned from issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2351214594) at 2024-09-14 04:20 PM PDT -terrencejihoonjung,2024-09-14T23:21:08Z,- terrencejihoonjung commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2351214806) at 2024-09-14 04:21 PM PDT -terrencejihoonjung,2024-09-14T23:22:21Z,- terrencejihoonjung commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2351215092) at 2024-09-14 04:22 PM PDT -terrencejihoonjung,2024-09-15T02:37:21Z,- terrencejihoonjung pull request merged: [7445](https://github.com/hackforla/website/pull/7445#event-14262073286) at 2024-09-14 07:37 PM PDT -terrencejihoonjung,2024-09-18T22:52:33Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2359589179) at 2024-09-18 03:52 PM PDT -terrencejihoonjung,2024-09-20T06:40:27Z,- terrencejihoonjung commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362944261) at 2024-09-19 11:40 PM PDT -terrencejihoonjung,2024-09-20T19:13:48Z,- terrencejihoonjung submitted pull request review: [7498](https://github.com/hackforla/website/pull/7498#pullrequestreview-2319097836) at 2024-09-20 12:13 PM PDT -terrencejihoonjung,2024-09-20T19:17:32Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2364403859) at 2024-09-20 12:17 PM PDT -terrencejihoonjung,2024-09-21T19:12:44Z,- terrencejihoonjung commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2365292062) at 2024-09-21 12:12 PM PDT -terrencejihoonjung,2024-09-21T19:13:18Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365292189) at 2024-09-21 12:13 PM PDT -terrencejihoonjung,2024-09-21T19:14:43Z,- terrencejihoonjung assigned to issue: [2293](https://github.com/hackforla/website/issues/2293) at 2024-09-21 12:14 PM PDT -terrencejihoonjung,2024-09-21T19:14:56Z,- terrencejihoonjung unassigned from issue: [2293](https://github.com/hackforla/website/issues/2293) at 2024-09-21 12:14 PM PDT -terrencejihoonjung,2024-09-21T19:16:39Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365293161) at 2024-09-21 12:16 PM PDT -terrencejihoonjung,2024-09-21T19:17:43Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365293459) at 2024-09-21 12:17 PM PDT -terrencejihoonjung,2024-09-21T19:18:55Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365293790) at 2024-09-21 12:18 PM PDT -terrencejihoonjung,2024-09-21T19:20:38Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365294190) at 2024-09-21 12:20 PM PDT -terrencejihoonjung,2024-09-22T06:32:40Z,- terrencejihoonjung submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2319991329) at 2024-09-21 11:32 PM PDT -terrencejihoonjung,2024-09-22T06:35:42Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365531073) at 2024-09-21 11:35 PM PDT -terrencejihoonjung,2024-09-22T21:02:11Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2366963917) at 2024-09-22 02:02 PM PDT -terrencejihoonjung,2024-09-24T17:36:57Z,- terrencejihoonjung commented on pull request: [7511](https://github.com/hackforla/website/pull/7511#issuecomment-2371911377) at 2024-09-24 10:36 AM PDT -terrencejihoonjung,2024-09-24T17:40:16Z,- terrencejihoonjung commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2371917158) at 2024-09-24 10:40 AM PDT -terrencejihoonjung,2024-09-24T22:07:51Z,- terrencejihoonjung submitted pull request review: [7511](https://github.com/hackforla/website/pull/7511#pullrequestreview-2326567386) at 2024-09-24 03:07 PM PDT -terrencejihoonjung,2024-09-24T22:08:27Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2372472579) at 2024-09-24 03:08 PM PDT -terrencejihoonjung,2024-09-24T22:26:38Z,- terrencejihoonjung submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2326595511) at 2024-09-24 03:26 PM PDT -terrencejihoonjung,2024-09-24T22:28:13Z,- terrencejihoonjung submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2326597075) at 2024-09-24 03:28 PM PDT -terrencejihoonjung,2024-09-24T22:28:57Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2372499465) at 2024-09-24 03:28 PM PDT -terrencejihoonjung,2024-09-29T19:39:51Z,- terrencejihoonjung commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2381577903) at 2024-09-29 12:39 PM PDT -terrencejihoonjung,2024-09-29T19:40:51Z,- terrencejihoonjung commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2381578420) at 2024-09-29 12:40 PM PDT -terrencejihoonjung,2024-09-29T21:43:34Z,- terrencejihoonjung submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2336022923) at 2024-09-29 02:43 PM PDT -terrencejihoonjung,2024-10-01T20:46:37Z,- terrencejihoonjung assigned to issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381666380) at 2024-10-01 01:46 PM PDT -terrencejihoonjung,2024-10-01T21:26:59Z,- terrencejihoonjung opened issue: [7555](https://github.com/hackforla/website/issues/7555) at 2024-10-01 02:26 PM PDT -terrencejihoonjung,2024-10-01T21:30:33Z,- terrencejihoonjung commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387111323) at 2024-10-01 02:30 PM PDT -terrencejihoonjung,2024-10-01T21:30:42Z,- terrencejihoonjung commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387111518) at 2024-10-01 02:30 PM PDT -terrencejihoonjung,2024-10-01T21:42:36Z,- terrencejihoonjung commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387128408) at 2024-10-01 02:42 PM PDT -terrencejihoonjung,2024-10-01T21:51:22Z,- terrencejihoonjung opened issue: [7556](https://github.com/hackforla/website/issues/7556) at 2024-10-01 02:51 PM PDT -terrencejihoonjung,2024-10-08T23:33:58Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2400990688) at 2024-10-08 04:33 PM PDT -terrencejihoonjung,2024-10-08T23:36:52Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2400993141) at 2024-10-08 04:36 PM PDT -terrencejihoonjung,2024-10-08T23:37:45Z,- terrencejihoonjung assigned to issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2282891038) at 2024-10-08 04:37 PM PDT -terrencejihoonjung,2024-10-08T23:38:26Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2400994471) at 2024-10-08 04:38 PM PDT -terrencejihoonjung,2024-10-18T22:52:37Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2423341885) at 2024-10-18 03:52 PM PDT -terrencejihoonjung,2024-10-20T20:34:12Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2425209315) at 2024-10-20 01:34 PM PDT -terrencejihoonjung,2024-10-20T20:39:45Z,- terrencejihoonjung opened issue: [7608](https://github.com/hackforla/website/issues/7608) at 2024-10-20 01:39 PM PDT -terrencejihoonjung,2024-10-20T20:47:32Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2425215180) at 2024-10-20 01:47 PM PDT -terrencejihoonjung,2024-10-20T20:48:04Z,- terrencejihoonjung opened issue: [7609](https://github.com/hackforla/website/issues/7609) at 2024-10-20 01:48 PM PDT -terrencejihoonjung,2024-10-20T20:50:04Z,- terrencejihoonjung opened issue: [7610](https://github.com/hackforla/website/issues/7610) at 2024-10-20 01:50 PM PDT -terrencejihoonjung,2024-10-20T20:51:01Z,- terrencejihoonjung opened issue: [7611](https://github.com/hackforla/website/issues/7611) at 2024-10-20 01:51 PM PDT -terrencejihoonjung,2024-10-20T20:51:43Z,- terrencejihoonjung opened issue: [7612](https://github.com/hackforla/website/issues/7612) at 2024-10-20 01:51 PM PDT -terrencejihoonjung,2024-10-20T20:52:21Z,- terrencejihoonjung opened issue: [7613](https://github.com/hackforla/website/issues/7613) at 2024-10-20 01:52 PM PDT -terrencejihoonjung,2024-10-20T20:55:12Z,- terrencejihoonjung submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2380672670) at 2024-10-20 01:55 PM PDT -terrencejihoonjung,2024-10-26T21:16:23Z,- terrencejihoonjung closed issue as completed: [7608](https://github.com/hackforla/website/issues/7608#event-14913417885) at 2024-10-26 02:16 PM PDT -terrencejihoonjung,2024-10-26T21:16:51Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2439739088) at 2024-10-26 02:16 PM PDT -terrencejihoonjung,2024-10-26T21:18:37Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2439739499) at 2024-10-26 02:18 PM PDT -terrencejihoonjung,2024-10-26T21:20:55Z,- terrencejihoonjung commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2439740023) at 2024-10-26 02:20 PM PDT -terrencejihoonjung,2024-10-28T01:39:01Z,- terrencejihoonjung submitted pull request review: [7639](https://github.com/hackforla/website/pull/7639#pullrequestreview-2397742093) at 2024-10-27 06:39 PM PDT -terrencejihoonjung,2024-10-28T01:40:09Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2440326795) at 2024-10-27 06:40 PM PDT -terrencejihoonjung,2024-11-02T23:26:18Z,- terrencejihoonjung commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453223583) at 2024-11-02 03:26 PM PST -terrencejihoonjung,2024-11-03T22:11:10Z,- terrencejihoonjung submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2411953764) at 2024-11-03 02:11 PM PST -terrencejihoonjung,2024-11-03T22:11:57Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2453595356) at 2024-11-03 02:11 PM PST -tesiahwang,4967,SKILLS ISSUE -tesiahwang,2023-07-18T01:50:13Z,- tesiahwang opened issue: [4967](https://github.com/hackforla/website/issues/4967) at 2023-07-17 06:50 PM PDT -tesiahwang,2023-07-18T02:42:08Z,- tesiahwang assigned to issue: [4967](https://github.com/hackforla/website/issues/4967) at 2023-07-17 07:42 PM PDT -tesiahwang,2023-08-02T04:30:29Z,- tesiahwang commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1661473188) at 2023-08-01 09:30 PM PDT -tesiahwang,2023-08-11T19:56:45Z,- tesiahwang assigned to issue: [5181](https://github.com/hackforla/website/issues/5181) at 2023-08-11 12:56 PM PDT -tesiahwang,2023-08-11T19:57:12Z,- tesiahwang unassigned from issue: [5181](https://github.com/hackforla/website/issues/5181) at 2023-08-11 12:57 PM PDT -tesiahwang,2023-08-11T20:13:49Z,- tesiahwang commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1675315210) at 2023-08-11 01:13 PM PDT -tesiahwang,2023-08-19T03:14:46Z,- tesiahwang assigned to issue: [5254](https://github.com/hackforla/website/issues/5254#issuecomment-1684657181) at 2023-08-18 08:14 PM PDT -tesiahwang,2023-08-19T03:39:36Z,- tesiahwang commented on issue: [5254](https://github.com/hackforla/website/issues/5254#issuecomment-1684747052) at 2023-08-18 08:39 PM PDT -tesiahwang,2023-08-19T06:01:29Z,- tesiahwang opened pull request: [5257](https://github.com/hackforla/website/pull/5257) at 2023-08-18 11:01 PM PDT -tesiahwang,2023-08-20T05:07:12Z,- tesiahwang commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1685177898) at 2023-08-19 10:07 PM PDT -tesiahwang,2023-08-21T08:54:20Z,- tesiahwang pull request merged: [5257](https://github.com/hackforla/website/pull/5257#event-10142723197) at 2023-08-21 01:54 AM PDT -tesiahwang,2023-08-21T19:14:47Z,- tesiahwang closed issue as completed: [4967](https://github.com/hackforla/website/issues/4967#event-10149516231) at 2023-08-21 12:14 PM PDT -tesiahwang,2023-08-23T19:06:10Z,- tesiahwang commented on pull request: [5294](https://github.com/hackforla/website/pull/5294#issuecomment-1690494303) at 2023-08-23 12:06 PM PDT -tesiahwang,2023-08-24T03:56:15Z,- tesiahwang submitted pull request review: [5294](https://github.com/hackforla/website/pull/5294#pullrequestreview-1592738281) at 2023-08-23 08:56 PM PDT -tesiahwang,2023-08-29T16:01:52Z,- tesiahwang assigned to issue: [5181](https://github.com/hackforla/website/issues/5181) at 2023-08-29 09:01 AM PDT -tesiahwang,2023-08-29T16:08:33Z,- tesiahwang commented on issue: [5181](https://github.com/hackforla/website/issues/5181#issuecomment-1697749883) at 2023-08-29 09:08 AM PDT -tesiahwang,2023-08-30T03:49:32Z,- tesiahwang opened pull request: [5354](https://github.com/hackforla/website/pull/5354) at 2023-08-29 08:49 PM PDT -tesiahwang,2023-08-30T04:14:01Z,- tesiahwang commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1698460812) at 2023-08-29 09:14 PM PDT -tesiahwang,2023-08-30T04:27:20Z,- tesiahwang submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1601835845) at 2023-08-29 09:27 PM PDT -tesiahwang,2023-08-31T06:16:20Z,- tesiahwang pull request merged: [5354](https://github.com/hackforla/website/pull/5354#event-10240300392) at 2023-08-30 11:16 PM PDT -tesiahwang,2023-08-31T17:32:17Z,- tesiahwang commented on pull request: [5392](https://github.com/hackforla/website/pull/5392#issuecomment-1701471847) at 2023-08-31 10:32 AM PDT -tesiahwang,2023-08-31T17:36:05Z,- tesiahwang submitted pull request review: [5392](https://github.com/hackforla/website/pull/5392#pullrequestreview-1605302969) at 2023-08-31 10:36 AM PDT -tesiahwang,2023-09-04T04:31:34Z,- tesiahwang commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1704594276) at 2023-09-03 09:31 PM PDT -tesiahwang,2023-09-04T05:01:56Z,- tesiahwang submitted pull request review: [5413](https://github.com/hackforla/website/pull/5413#pullrequestreview-1608762031) at 2023-09-03 10:01 PM PDT -tesiahwang,2023-09-14T17:06:14Z,- tesiahwang assigned to issue: [5514](https://github.com/hackforla/website/issues/5514#issuecomment-1717118246) at 2023-09-14 10:06 AM PDT -tesiahwang,2023-09-14T17:07:28Z,- tesiahwang commented on issue: [5514](https://github.com/hackforla/website/issues/5514#issuecomment-1719834875) at 2023-09-14 10:07 AM PDT -tesiahwang,2023-09-14T22:57:38Z,- tesiahwang commented on pull request: [5523](https://github.com/hackforla/website/pull/5523#issuecomment-1720260665) at 2023-09-14 03:57 PM PDT -tesiahwang,2023-09-14T23:11:44Z,- tesiahwang submitted pull request review: [5523](https://github.com/hackforla/website/pull/5523#pullrequestreview-1627912286) at 2023-09-14 04:11 PM PDT -tesiahwang,2023-09-15T15:47:41Z,- tesiahwang assigned to issue: [5540](https://github.com/hackforla/website/issues/5540) at 2023-09-15 08:47 AM PDT -tesiahwang,2023-09-15T15:48:46Z,- tesiahwang commented on issue: [5540](https://github.com/hackforla/website/issues/5540#issuecomment-1721497554) at 2023-09-15 08:48 AM PDT -tesiahwang,2023-09-15T16:55:43Z,- tesiahwang opened pull request: [5542](https://github.com/hackforla/website/pull/5542) at 2023-09-15 09:55 AM PDT -tesiahwang,2023-09-17T18:41:45Z,- tesiahwang pull request merged: [5542](https://github.com/hackforla/website/pull/5542#event-10391818257) at 2023-09-17 11:41 AM PDT -tesiahwang,2023-09-18T03:02:53Z,- tesiahwang commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722691924) at 2023-09-17 08:02 PM PDT -tesiahwang,2023-09-18T03:16:46Z,- tesiahwang submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1630233788) at 2023-09-17 08:16 PM PDT -tesiahwang,2023-09-18T22:51:22Z,- tesiahwang submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1632089628) at 2023-09-18 03:51 PM PDT -tesiahwang,2023-09-19T21:54:44Z,- tesiahwang submitted pull request review: [5413](https://github.com/hackforla/website/pull/5413#pullrequestreview-1634262670) at 2023-09-19 02:54 PM PDT -tesiahwang,2023-09-21T19:03:00Z,- tesiahwang commented on pull request: [5568](https://github.com/hackforla/website/pull/5568#issuecomment-1730141364) at 2023-09-21 12:03 PM PDT -tesiahwang,2023-09-21T19:06:13Z,- tesiahwang submitted pull request review: [5568](https://github.com/hackforla/website/pull/5568#pullrequestreview-1638528530) at 2023-09-21 12:06 PM PDT -tesiahwang,2023-09-21T22:44:35Z,- tesiahwang submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1638813729) at 2023-09-21 03:44 PM PDT -tesiahwang,2023-11-05T18:06:58Z,- tesiahwang assigned to issue: [5852](https://github.com/hackforla/website/issues/5852) at 2023-11-05 10:06 AM PST -tesiahwang,2023-11-05T18:25:10Z,- tesiahwang commented on issue: [5852](https://github.com/hackforla/website/issues/5852#issuecomment-1793810194) at 2023-11-05 10:25 AM PST -tesiahwang,2023-11-05T19:35:28Z,- tesiahwang opened pull request: [5853](https://github.com/hackforla/website/pull/5853) at 2023-11-05 11:35 AM PST -tesiahwang,2023-11-06T18:05:36Z,- tesiahwang pull request merged: [5853](https://github.com/hackforla/website/pull/5853#event-10876695382) at 2023-11-06 10:05 AM PST -tesiahwang,2023-11-07T17:23:27Z,- tesiahwang assigned to issue: [5730](https://github.com/hackforla/website/issues/5730#issuecomment-1765712945) at 2023-11-07 09:23 AM PST -tesiahwang,2023-11-07T17:25:48Z,- tesiahwang commented on issue: [5730](https://github.com/hackforla/website/issues/5730#issuecomment-1799287827) at 2023-11-07 09:25 AM PST -tesiahwang,2023-11-11T06:37:25Z,- tesiahwang opened pull request: [5891](https://github.com/hackforla/website/pull/5891) at 2023-11-10 10:37 PM PST -tesiahwang,2023-11-27T00:01:08Z,- tesiahwang pull request merged: [5891](https://github.com/hackforla/website/pull/5891#event-11064534103) at 2023-11-26 04:01 PM PST -tesiahwang,2024-02-07T04:56:57Z,- tesiahwang commented on pull request: [6243](https://github.com/hackforla/website/pull/6243#issuecomment-1931283231) at 2024-02-06 08:56 PM PST -tesiahwang,2024-02-07T05:25:00Z,- tesiahwang submitted pull request review: [6243](https://github.com/hackforla/website/pull/6243#pullrequestreview-1866930511) at 2024-02-06 09:25 PM PST -tesiahwang,2024-04-14T14:57:45Z,- tesiahwang submitted pull request review: [6627](https://github.com/hackforla/website/pull/6627#pullrequestreview-1999677443) at 2024-04-14 07:57 AM PDT -thadk,2020-09-24T17:51:05Z,- thadk commented on issue: [746](https://github.com/hackforla/website/issues/746#issuecomment-698493761) at 2020-09-24 10:51 AM PDT -thatguyish,2021-02-03T03:41:14Z,- thatguyish assigned to issue: [895](https://github.com/hackforla/website/issues/895) at 2021-02-02 07:41 PM PST -thatguyish,2021-02-03T22:48:00Z,- thatguyish assigned to issue: [990](https://github.com/hackforla/website/issues/990) at 2021-02-03 02:48 PM PST -thatguyish,2021-02-03T23:40:19Z,- thatguyish opened pull request: [998](https://github.com/hackforla/website/pull/998) at 2021-02-03 03:40 PM PST -thatguyish,2021-02-03T23:42:38Z,- thatguyish commented on issue: [990](https://github.com/hackforla/website/issues/990#issuecomment-772904630) at 2021-02-03 03:42 PM PST -thatguyish,2021-02-03T23:54:21Z,- thatguyish closed issue by PR 998: [990](https://github.com/hackforla/website/issues/990#event-4288118773) at 2021-02-03 03:54 PM PST -thatguyish,2021-02-04T23:48:00Z,- thatguyish reopened issue: [990](https://github.com/hackforla/website/issues/990#event-4288118773) at 2021-02-04 03:48 PM PST -thatguyish,2021-02-04T23:53:53Z,- thatguyish commented on issue: [990](https://github.com/hackforla/website/issues/990#issuecomment-773680693) at 2021-02-04 03:53 PM PST -thatguyish,2021-02-05T04:48:57Z,- thatguyish pull request merged: [998](https://github.com/hackforla/website/pull/998#event-4294261328) at 2021-02-04 08:48 PM PST -thatguyish,2021-02-05T17:03:31Z,- thatguyish assigned to issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764840726) at 2021-02-05 09:03 AM PST -thatguyish,2021-02-05T21:56:51Z,- thatguyish opened pull request: [1005](https://github.com/hackforla/website/pull/1005) at 2021-02-05 01:56 PM PST -thatguyish,2021-02-07T15:51:34Z,- thatguyish commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774697212) at 2021-02-07 07:51 AM PST -thatguyish,2021-02-07T21:32:53Z,- thatguyish assigned to issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-07 01:32 PM PST -thatguyish,2021-02-08T22:46:56Z,- thatguyish opened pull request: [1018](https://github.com/hackforla/website/pull/1018) at 2021-02-08 02:46 PM PST -thatguyish,2021-02-08T22:51:09Z,- thatguyish commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-775516483) at 2021-02-08 02:51 PM PST -thatguyish,2021-02-08T22:55:03Z,- thatguyish pull request closed w/o merging: [1005](https://github.com/hackforla/website/pull/1005#event-4306200562) at 2021-02-08 02:55 PM PST -thatguyish,2021-02-08T22:55:34Z,- thatguyish reopened pull request: [1005](https://github.com/hackforla/website/pull/1005#event-4306200562) at 2021-02-08 02:55 PM PST -thatguyish,2021-02-08T23:10:33Z,- thatguyish commented on pull request: [1005](https://github.com/hackforla/website/pull/1005#issuecomment-775524985) at 2021-02-08 03:10 PM PST -thatguyish,2021-02-08T23:10:33Z,- thatguyish pull request closed w/o merging: [1005](https://github.com/hackforla/website/pull/1005#event-4306247250) at 2021-02-08 03:10 PM PST -thatguyish,2021-02-08T23:36:29Z,- thatguyish opened pull request: [1019](https://github.com/hackforla/website/pull/1019) at 2021-02-08 03:36 PM PST -thatguyish,2021-02-10T00:10:31Z,- thatguyish commented on pull request: [1019](https://github.com/hackforla/website/pull/1019#issuecomment-776331689) at 2021-02-09 04:10 PM PST -thatguyish,2021-02-10T00:26:45Z,- thatguyish pull request merged: [1019](https://github.com/hackforla/website/pull/1019#event-4312147235) at 2021-02-09 04:26 PM PST -thatguyish,2021-02-14T01:51:38Z,- thatguyish commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778707353) at 2021-02-13 05:51 PM PST -thatguyish,2021-02-14T02:41:04Z,- thatguyish commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778712179) at 2021-02-13 06:41 PM PST -thatguyish,2021-02-14T03:47:36Z,- thatguyish pull request merged: [1018](https://github.com/hackforla/website/pull/1018#event-4328372193) at 2021-02-13 07:47 PM PST -thatguyish,2021-02-28T20:28:17Z,- thatguyish assigned to issue: [1118](https://github.com/hackforla/website/issues/1118#issuecomment-787488934) at 2021-02-28 12:28 PM PST -thatguyish,2021-02-28T21:40:56Z,- thatguyish opened pull request: [1141](https://github.com/hackforla/website/pull/1141) at 2021-02-28 01:40 PM PST -thatguyish,2021-02-28T21:42:00Z,- thatguyish commented on issue: [1118](https://github.com/hackforla/website/issues/1118#issuecomment-787528148) at 2021-02-28 01:42 PM PST -thatguyish,2021-03-01T03:07:48Z,- thatguyish pull request merged: [1141](https://github.com/hackforla/website/pull/1141#event-4387058515) at 2021-02-28 07:07 PM PST -thatguyish,2021-03-01T17:53:52Z,- thatguyish assigned to issue: [1106](https://github.com/hackforla/website/issues/1106) at 2021-03-01 09:53 AM PST -thatguyish,2021-03-01T22:13:18Z,- thatguyish opened pull request: [1147](https://github.com/hackforla/website/pull/1147) at 2021-03-01 02:13 PM PST -thatguyish,2021-03-03T01:27:54Z,- thatguyish commented on pull request: [1147](https://github.com/hackforla/website/pull/1147#issuecomment-789354605) at 2021-03-02 05:27 PM PST -thatguyish,2021-03-03T02:11:52Z,- thatguyish commented on pull request: [1147](https://github.com/hackforla/website/pull/1147#issuecomment-789371533) at 2021-03-02 06:11 PM PST -thatguyish,2021-03-03T03:22:56Z,- thatguyish pull request merged: [1147](https://github.com/hackforla/website/pull/1147#event-4399269704) at 2021-03-02 07:22 PM PST -thatguyish,2021-03-03T03:57:04Z,- thatguyish assigned to issue: [1115](https://github.com/hackforla/website/issues/1115) at 2021-03-02 07:57 PM PST -thatguyish,2021-03-16T18:11:10Z,- thatguyish opened pull request: [1210](https://github.com/hackforla/website/pull/1210) at 2021-03-16 11:11 AM PDT -thatguyish,2021-03-24T18:58:10Z,- thatguyish commented on pull request: [1210](https://github.com/hackforla/website/pull/1210#issuecomment-806076890) at 2021-03-24 11:58 AM PDT -thatguyish,2021-04-11T19:27:27Z,- thatguyish pull request closed w/o merging: [1210](https://github.com/hackforla/website/pull/1210#event-4578904163) at 2021-04-11 12:27 PM PDT -thatguyish,2021-04-11T19:27:48Z,- thatguyish unassigned from issue: [1115](https://github.com/hackforla/website/issues/1115) at 2021-04-11 12:27 PM PDT -thecrit,2773,SKILLS ISSUE -thedvo,4323,SKILLS ISSUE -thedvo,2023-03-29T03:39:28Z,- thedvo opened issue: [4323](https://github.com/hackforla/website/issues/4323) at 2023-03-28 08:39 PM PDT -thedvo,2023-03-29T04:23:03Z,- thedvo assigned to issue: [4323](https://github.com/hackforla/website/issues/4323) at 2023-03-28 09:23 PM PDT -thedvo,2023-04-02T23:04:04Z,- thedvo closed issue by PR 5203: [4248](https://github.com/hackforla/website/issues/4248#event-8907254467) at 2023-04-02 04:04 PM PDT -thedvo,2023-04-03T03:13:17Z,- thedvo assigned to issue: [4375](https://github.com/hackforla/website/issues/4375) at 2023-04-02 08:13 PM PDT -thedvo,2023-04-03T03:16:04Z,- thedvo unassigned from issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1493585195) at 2023-04-02 08:16 PM PDT -thedvo,2023-04-03T06:11:15Z,- thedvo assigned to issue: [4377](https://github.com/hackforla/website/issues/4377) at 2023-04-02 11:11 PM PDT -thedvo,2023-04-03T06:19:49Z,- thedvo commented on issue: [4377](https://github.com/hackforla/website/issues/4377#issuecomment-1493726141) at 2023-04-02 11:19 PM PDT -thedvo,2023-04-04T00:25:20Z,- thedvo opened pull request: [4402](https://github.com/hackforla/website/pull/4402) at 2023-04-03 05:25 PM PDT -thedvo,2023-04-04T01:04:53Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1495197020) at 2023-04-03 06:04 PM PDT -thedvo,2023-04-04T23:02:47Z,- thedvo pull request merged: [4402](https://github.com/hackforla/website/pull/4402#event-8929496577) at 2023-04-04 04:02 PM PDT -thedvo,2023-04-04T23:25:57Z,- thedvo assigned to issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1493385344) at 2023-04-04 04:25 PM PDT -thedvo,2023-04-04T23:27:37Z,- thedvo commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496720067) at 2023-04-04 04:27 PM PDT -thedvo,2023-04-05T00:09:37Z,- thedvo closed issue by PR 4424: [2670](https://github.com/hackforla/website/issues/2670#event-8929779814) at 2023-04-04 05:09 PM PDT -thedvo,2023-04-05T00:25:09Z,- thedvo commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496763580) at 2023-04-04 05:25 PM PDT -thedvo,2023-04-05T00:25:10Z,- thedvo reopened issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496763580) at 2023-04-04 05:25 PM PDT -thedvo,2023-04-05T01:29:39Z,- thedvo commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496801189) at 2023-04-04 06:29 PM PDT -thedvo,2023-04-05T02:06:48Z,- thedvo opened pull request: [4424](https://github.com/hackforla/website/pull/4424) at 2023-04-04 07:06 PM PDT -thedvo,2023-04-07T04:02:44Z,- thedvo pull request merged: [4424](https://github.com/hackforla/website/pull/4424#event-8951297567) at 2023-04-06 09:02 PM PDT -thedvo,2023-04-09T22:46:55Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1501229654) at 2023-04-09 03:46 PM PDT -thedvo,2023-04-11T01:22:07Z,- thedvo assigned to issue: [4255](https://github.com/hackforla/website/issues/4255#issuecomment-1480464925) at 2023-04-10 06:22 PM PDT -thedvo,2023-04-11T01:25:54Z,- thedvo commented on issue: [4255](https://github.com/hackforla/website/issues/4255#issuecomment-1502553916) at 2023-04-10 06:25 PM PDT -thedvo,2023-04-12T00:41:38Z,- thedvo opened pull request: [4472](https://github.com/hackforla/website/pull/4472) at 2023-04-11 05:41 PM PDT -thedvo,2023-04-12T03:03:59Z,- thedvo opened issue: [4482](https://github.com/hackforla/website/issues/4482) at 2023-04-11 08:03 PM PDT -thedvo,2023-04-13T03:17:49Z,- thedvo pull request merged: [4472](https://github.com/hackforla/website/pull/4472#event-8992079987) at 2023-04-12 08:17 PM PDT -thedvo,2023-05-13T00:16:12Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1546458177) at 2023-05-12 05:16 PM PDT -thedvo,2023-05-30T05:21:30Z,- thedvo assigned to issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 10:21 PM PDT -thedvo,2023-05-30T05:26:43Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1567774160) at 2023-05-29 10:26 PM PDT -thedvo,2023-05-31T01:00:55Z,- thedvo unassigned from issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-30 06:00 PM PDT -thedvo,2023-05-31T03:47:27Z,- thedvo assigned to issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-30 08:47 PM PDT -thedvo,2023-05-31T03:48:49Z,- thedvo commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1569453424) at 2023-05-30 08:48 PM PDT -thedvo,2023-05-31T04:21:29Z,- thedvo opened pull request: [4759](https://github.com/hackforla/website/pull/4759) at 2023-05-30 09:21 PM PDT -thedvo,2023-06-05T19:32:20Z,- thedvo commented on pull request: [4759](https://github.com/hackforla/website/pull/4759#issuecomment-1577361366) at 2023-06-05 12:32 PM PDT -thedvo,2023-06-08T08:35:41Z,- thedvo pull request merged: [4759](https://github.com/hackforla/website/pull/4759#event-9469363310) at 2023-06-08 01:35 AM PDT -thedvo,2023-06-10T01:29:56Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1585412272) at 2023-06-09 06:29 PM PDT -thedvo,2023-07-04T02:16:34Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1619364522) at 2023-07-03 07:16 PM PDT -thedvo,2023-07-14T21:43:02Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1636474034) at 2023-07-14 02:43 PM PDT -thedvo,2023-07-21T04:40:58Z,- thedvo commented on pull request: [5043](https://github.com/hackforla/website/pull/5043#issuecomment-1644972086) at 2023-07-20 09:40 PM PDT -thedvo,2023-07-21T18:45:01Z,- thedvo submitted pull request review: [5043](https://github.com/hackforla/website/pull/5043#pullrequestreview-1541653130) at 2023-07-21 11:45 AM PDT -thedvo,2023-07-28T23:07:22Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1656426266) at 2023-07-28 04:07 PM PDT -thedvo,2023-08-09T18:24:22Z,- thedvo closed issue as completed: [4323](https://github.com/hackforla/website/issues/4323#event-10050856611) at 2023-08-09 11:24 AM PDT -theecrit,2022-02-13T03:25:02Z,- theecrit opened issue: [2773](https://github.com/hackforla/website/issues/2773) at 2022-02-12 07:25 PM PST -thekaveman,2018-11-14T06:00:10Z,- thekaveman opened pull request: [11](https://github.com/hackforla/website/pull/11) at 2018-11-13 10:00 PM PST -thekaveman,2018-11-14T16:01:21Z,- thekaveman pull request merged: [11](https://github.com/hackforla/website/pull/11#event-1966279241) at 2018-11-14 08:01 AM PST -thekaveman,2018-11-14T16:38:33Z,- thekaveman commented on pull request: [11](https://github.com/hackforla/website/pull/11#issuecomment-438729322) at 2018-11-14 08:38 AM PST -thekaveman,2018-11-14T16:52:36Z,- thekaveman commented on pull request: [11](https://github.com/hackforla/website/pull/11#issuecomment-438734625) at 2018-11-14 08:52 AM PST -thekaveman,2018-11-16T07:13:45Z,- thekaveman opened pull request: [12](https://github.com/hackforla/website/pull/12) at 2018-11-15 11:13 PM PST -thekaveman,2018-11-16T07:14:20Z,- thekaveman assigned to issue: [9](https://github.com/hackforla/website/issues/9) at 2018-11-15 11:14 PM PST -thekaveman,2018-11-17T19:56:11Z,- thekaveman commented on pull request: [12](https://github.com/hackforla/website/pull/12#issuecomment-439643350) at 2018-11-17 11:56 AM PST -thekaveman,2018-11-17T19:58:51Z,- thekaveman opened issue: [13](https://github.com/hackforla/website/issues/13) at 2018-11-17 11:58 AM PST -thekaveman,2018-11-17T20:00:36Z,- thekaveman commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-439643616) at 2018-11-17 12:00 PM PST -thekaveman,2018-11-17T20:20:10Z,- thekaveman opened issue: [14](https://github.com/hackforla/website/issues/14) at 2018-11-17 12:20 PM PST -thekaveman,2018-11-18T01:35:23Z,- thekaveman commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-439660611) at 2018-11-17 05:35 PM PST -thekaveman,2018-11-18T01:36:48Z,- thekaveman commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-439660696) at 2018-11-17 05:36 PM PST -thekaveman,2018-11-18T01:40:07Z,- thekaveman commented on issue: [20](https://github.com/hackforla/website/issues/20#issuecomment-439660847) at 2018-11-17 05:40 PM PST -thekaveman,2018-11-29T18:23:43Z,- thekaveman commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-442940080) at 2018-11-29 10:23 AM PST -thekaveman,2018-12-12T07:20:01Z,- thekaveman commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-446487314) at 2018-12-11 11:20 PM PST -thekaveman,2018-12-12T07:21:53Z,- thekaveman opened issue: [22](https://github.com/hackforla/website/issues/22) at 2018-12-11 11:21 PM PST -thekaveman,2018-12-13T05:53:23Z,- thekaveman submitted pull request review: [21](https://github.com/hackforla/website/pull/21#pullrequestreview-184509640) at 2018-12-12 09:53 PM PST -thekaveman,2018-12-13T06:40:07Z,- thekaveman commented on pull request: [21](https://github.com/hackforla/website/pull/21#issuecomment-446859222) at 2018-12-12 10:40 PM PST -thekaveman,2018-12-13T06:42:02Z,- thekaveman closed issue as completed: [22](https://github.com/hackforla/website/issues/22#event-2023395655) at 2018-12-12 10:42 PM PST -thekaveman,2018-12-13T06:42:28Z,- thekaveman commented on pull request: [23](https://github.com/hackforla/website/pull/23#issuecomment-446859672) at 2018-12-12 10:42 PM PST -thekaveman,2018-12-13T06:48:57Z,- thekaveman commented on issue: [7](https://github.com/hackforla/website/issues/7#issuecomment-446860942) at 2018-12-12 10:48 PM PST -thekaveman,2018-12-13T06:48:57Z,- thekaveman closed issue as completed: [7](https://github.com/hackforla/website/issues/7#event-2023404485) at 2018-12-12 10:48 PM PST -thekaveman,2018-12-13T09:04:02Z,- thekaveman opened pull request: [24](https://github.com/hackforla/website/pull/24) at 2018-12-13 01:04 AM PST -thekaveman,2018-12-13T09:16:22Z,- thekaveman commented on pull request: [24](https://github.com/hackforla/website/pull/24#issuecomment-446896494) at 2018-12-13 01:16 AM PST -thekaveman,2018-12-13T09:16:22Z,- thekaveman pull request merged: [24](https://github.com/hackforla/website/pull/24#event-2023660654) at 2018-12-13 01:16 AM PST -thekaveman,2018-12-13T09:17:28Z,- thekaveman commented on issue: [18](https://github.com/hackforla/website/issues/18#issuecomment-446896838) at 2018-12-13 01:17 AM PST -thekaveman,2018-12-13T09:17:28Z,- thekaveman closed issue as completed: [18](https://github.com/hackforla/website/issues/18#event-2023663298) at 2018-12-13 01:17 AM PST -thekaveman,2018-12-13T18:58:19Z,- thekaveman reopened pull request: [24](https://github.com/hackforla/website/pull/24#event-2023660654) at 2018-12-13 10:58 AM PST -thekaveman,2018-12-13T19:21:40Z,- thekaveman commented on pull request: [24](https://github.com/hackforla/website/pull/24#issuecomment-447088416) at 2018-12-13 11:21 AM PST -thekaveman,2018-12-13T19:23:39Z,- thekaveman pull request merged: [24](https://github.com/hackforla/website/pull/24#event-2025105294) at 2018-12-13 11:23 AM PST -thekaveman,2018-12-19T04:18:15Z,- thekaveman commented on pull request: [12](https://github.com/hackforla/website/pull/12#issuecomment-448464317) at 2018-12-18 08:18 PM PST -thekaveman,2018-12-19T05:04:54Z,- thekaveman commented on pull request: [25](https://github.com/hackforla/website/pull/25#issuecomment-448470680) at 2018-12-18 09:04 PM PST -thekaveman,2018-12-19T05:14:58Z,- thekaveman pull request merged: [12](https://github.com/hackforla/website/pull/12#event-2034761745) at 2018-12-18 09:14 PM PST -thekaveman,2018-12-19T05:26:08Z,- thekaveman commented on pull request: [25](https://github.com/hackforla/website/pull/25#issuecomment-448473795) at 2018-12-18 09:26 PM PST -thekaveman,2018-12-19T05:26:28Z,- thekaveman issue closed by PR 25: [9](https://github.com/hackforla/website/issues/9#event-2034772890) at 2018-12-18 09:26 PM PST -thekaveman,2019-01-09T05:16:36Z,- thekaveman commented on pull request: [28](https://github.com/hackforla/website/pull/28#issuecomment-452575017) at 2019-01-08 09:16 PM PST -thekaveman,2019-01-09T05:20:07Z,- thekaveman commented on pull request: [28](https://github.com/hackforla/website/pull/28#issuecomment-452575537) at 2019-01-08 09:20 PM PST -thekaveman,2019-01-09T17:59:22Z,- thekaveman commented on pull request: [29](https://github.com/hackforla/website/pull/29#issuecomment-452792650) at 2019-01-09 09:59 AM PST -thekaveman,2019-01-09T18:05:38Z,- thekaveman submitted pull request review: [29](https://github.com/hackforla/website/pull/29#pullrequestreview-190858016) at 2019-01-09 10:05 AM PST -thekaveman,2019-01-10T03:37:58Z,- thekaveman commented on pull request: [30](https://github.com/hackforla/website/pull/30#issuecomment-452959492) at 2019-01-09 07:37 PM PST -thekaveman,2019-03-12T03:09:13Z,- thekaveman submitted pull request review: [32](https://github.com/hackforla/website/pull/32#pullrequestreview-213177787) at 2019-03-11 08:09 PM PDT -thekaveman,2019-03-12T03:44:16Z,- thekaveman commented on pull request: [37](https://github.com/hackforla/website/pull/37#issuecomment-471844772) at 2019-03-11 08:44 PM PDT -thekaveman,2019-03-26T17:16:06Z,- thekaveman submitted pull request review: [45](https://github.com/hackforla/website/pull/45#pullrequestreview-219042590) at 2019-03-26 10:16 AM PDT -thekaveman,2019-03-26T18:41:11Z,- thekaveman commented on pull request: [44](https://github.com/hackforla/website/pull/44#issuecomment-476792653) at 2019-03-26 11:41 AM PDT -thekaveman,2019-03-26T18:41:19Z,- thekaveman commented on pull request: [43](https://github.com/hackforla/website/pull/43#issuecomment-476792711) at 2019-03-26 11:41 AM PDT -thekaveman,2019-03-26T18:41:36Z,- thekaveman commented on pull request: [41](https://github.com/hackforla/website/pull/41#issuecomment-476792823) at 2019-03-26 11:41 AM PDT -thekaveman,2019-03-27T02:29:35Z,- thekaveman submitted pull request review: [45](https://github.com/hackforla/website/pull/45#pullrequestreview-219243959) at 2019-03-26 07:29 PM PDT -thekaveman,2019-03-27T02:30:44Z,- thekaveman commented on pull request: [45](https://github.com/hackforla/website/pull/45#issuecomment-476941064) at 2019-03-26 07:30 PM PDT -thekaveman,2019-03-27T03:44:55Z,- thekaveman opened pull request: [46](https://github.com/hackforla/website/pull/46) at 2019-03-26 08:44 PM PDT -thekaveman,2019-03-28T16:52:47Z,- thekaveman commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-477681047) at 2019-03-28 09:52 AM PDT -thekaveman,2019-03-29T19:30:38Z,- thekaveman submitted pull request review: [52](https://github.com/hackforla/website/pull/52#pullrequestreview-220722528) at 2019-03-29 12:30 PM PDT -thekaveman,2019-03-30T18:32:00Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-220832167) at 2019-03-30 11:32 AM PDT -thekaveman,2019-03-30T18:44:15Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-220832630) at 2019-03-30 11:44 AM PDT -thekaveman,2019-03-30T18:49:41Z,- thekaveman submitted pull request review: [51](https://github.com/hackforla/website/pull/51#pullrequestreview-220832838) at 2019-03-30 11:49 AM PDT -thekaveman,2019-03-31T22:41:23Z,- thekaveman submitted pull request review: [53](https://github.com/hackforla/website/pull/53#pullrequestreview-220887972) at 2019-03-31 03:41 PM PDT -thekaveman,2019-03-31T22:58:49Z,- thekaveman submitted pull request review: [52](https://github.com/hackforla/website/pull/52#pullrequestreview-220888857) at 2019-03-31 03:58 PM PDT -thekaveman,2019-03-31T23:26:37Z,- thekaveman submitted pull request review: [50](https://github.com/hackforla/website/pull/50#pullrequestreview-220890185) at 2019-03-31 04:26 PM PDT -thekaveman,2019-04-02T00:11:36Z,- thekaveman commented on pull request: [57](https://github.com/hackforla/website/pull/57#issuecomment-478792708) at 2019-04-01 05:11 PM PDT -thekaveman,2019-04-02T03:52:41Z,- thekaveman submitted pull request review: [58](https://github.com/hackforla/website/pull/58#pullrequestreview-221439353) at 2019-04-01 08:52 PM PDT -thekaveman,2019-04-02T05:24:01Z,- thekaveman pull request merged: [46](https://github.com/hackforla/website/pull/46#event-2245325768) at 2019-04-01 10:24 PM PDT -thekaveman,2019-04-02T05:25:39Z,- thekaveman commented on pull request: [35](https://github.com/hackforla/website/pull/35#issuecomment-478849662) at 2019-04-01 10:25 PM PDT -thekaveman,2019-04-02T05:33:37Z,- thekaveman submitted pull request review: [54](https://github.com/hackforla/website/pull/54#pullrequestreview-221455865) at 2019-04-01 10:33 PM PDT -thekaveman,2019-04-02T05:44:50Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-221458036) at 2019-04-01 10:44 PM PDT -thekaveman,2019-04-02T06:12:52Z,- thekaveman commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-478858898) at 2019-04-01 11:12 PM PDT -thekaveman,2019-04-02T06:20:03Z,- thekaveman submitted pull request review: [54](https://github.com/hackforla/website/pull/54#pullrequestreview-221465705) at 2019-04-01 11:20 PM PDT -thekaveman,2019-04-10T16:26:15Z,- thekaveman opened pull request: [61](https://github.com/hackforla/website/pull/61) at 2019-04-10 09:26 AM PDT -thekaveman,2019-04-10T16:42:55Z,- thekaveman pull request merged: [61](https://github.com/hackforla/website/pull/61#event-2266712214) at 2019-04-10 09:42 AM PDT -thekaveman,2019-04-23T02:13:11Z,- thekaveman submitted pull request review: [63](https://github.com/hackforla/website/pull/63#pullrequestreview-229322844) at 2019-04-22 07:13 PM PDT -thekaveman,2019-04-23T02:18:33Z,- thekaveman submitted pull request review: [62](https://github.com/hackforla/website/pull/62#pullrequestreview-229323740) at 2019-04-22 07:18 PM PDT -thekaveman,2019-04-23T02:36:05Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-229326766) at 2019-04-22 07:36 PM PDT -thekaveman,2019-04-23T02:42:06Z,- thekaveman commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-485621446) at 2019-04-22 07:42 PM PDT -thekaveman,2019-04-23T02:47:46Z,- thekaveman submitted pull request review: [51](https://github.com/hackforla/website/pull/51#pullrequestreview-229328701) at 2019-04-22 07:47 PM PDT -thekaveman,2019-04-23T03:56:40Z,- thekaveman submitted pull request review: [54](https://github.com/hackforla/website/pull/54#pullrequestreview-229339313) at 2019-04-22 08:56 PM PDT -thekaveman,2019-04-23T05:46:26Z,- thekaveman submitted pull request review: [60](https://github.com/hackforla/website/pull/60#pullrequestreview-229357211) at 2019-04-22 10:46 PM PDT -thekaveman,2019-04-23T06:03:36Z,- thekaveman commented on issue: [20](https://github.com/hackforla/website/issues/20#issuecomment-485655425) at 2019-04-22 11:03 PM PDT -thekaveman,2019-04-23T06:03:37Z,- thekaveman closed issue as completed: [20](https://github.com/hackforla/website/issues/20#event-2292999909) at 2019-04-22 11:03 PM PDT -thekaveman,2019-04-23T06:09:49Z,- thekaveman commented on issue: [26](https://github.com/hackforla/website/issues/26#issuecomment-485656695) at 2019-04-22 11:09 PM PDT -thekaveman,2019-04-23T06:09:49Z,- thekaveman closed issue as completed: [26](https://github.com/hackforla/website/issues/26#event-2293009045) at 2019-04-22 11:09 PM PDT -thekaveman,2019-04-23T06:13:52Z,- thekaveman commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-485657529) at 2019-04-22 11:13 PM PDT -thekaveman,2019-04-24T17:37:54Z,- thekaveman submitted pull request review: [70](https://github.com/hackforla/website/pull/70#pullrequestreview-230257942) at 2019-04-24 10:37 AM PDT -thekaveman,2019-05-02T05:41:46Z,- thekaveman commented on pull request: [77](https://github.com/hackforla/website/pull/77#issuecomment-488558704) at 2019-05-01 10:41 PM PDT -thekaveman,2019-05-02T05:55:18Z,- thekaveman commented on pull request: [71](https://github.com/hackforla/website/pull/71#issuecomment-488560466) at 2019-05-01 10:55 PM PDT -thekaveman,2019-05-02T06:21:17Z,- thekaveman commented on pull request: [76](https://github.com/hackforla/website/pull/76#issuecomment-488564210) at 2019-05-01 11:21 PM PDT -thekaveman,2019-05-02T06:31:38Z,- thekaveman commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-488565851) at 2019-05-01 11:31 PM PDT -thekaveman,2019-05-02T07:48:07Z,- thekaveman opened pull request: [82](https://github.com/hackforla/website/pull/82) at 2019-05-02 12:48 AM PDT -thekaveman,2019-05-02T17:49:35Z,- thekaveman commented on issue: [69](https://github.com/hackforla/website/issues/69#issuecomment-488767654) at 2019-05-02 10:49 AM PDT -thekaveman,2019-05-02T22:02:39Z,- thekaveman pull request merged: [82](https://github.com/hackforla/website/pull/82#event-2315833283) at 2019-05-02 03:02 PM PDT -thekaveman,2019-05-05T01:54:00Z,- thekaveman submitted pull request review: [90](https://github.com/hackforla/website/pull/90#pullrequestreview-233757091) at 2019-05-04 06:54 PM PDT -thekaveman,2019-05-05T01:56:55Z,- thekaveman closed issue as completed: [88](https://github.com/hackforla/website/issues/88#event-2319330621) at 2019-05-04 06:56 PM PDT -thekaveman,2019-05-08T03:22:07Z,- thekaveman submitted pull request review: [93](https://github.com/hackforla/website/pull/93#pullrequestreview-234849815) at 2019-05-07 08:22 PM PDT -thekaveman,2019-05-08T03:28:00Z,- thekaveman commented on pull request: [77](https://github.com/hackforla/website/pull/77#issuecomment-490333133) at 2019-05-07 08:28 PM PDT -thekaveman,2019-05-08T03:49:07Z,- thekaveman submitted pull request review: [94](https://github.com/hackforla/website/pull/94#pullrequestreview-234854044) at 2019-05-07 08:49 PM PDT -thekaveman,2019-05-08T04:04:28Z,- thekaveman submitted pull request review: [95](https://github.com/hackforla/website/pull/95#pullrequestreview-234856525) at 2019-05-07 09:04 PM PDT -thekaveman,2019-05-08T04:06:39Z,- thekaveman submitted pull request review: [96](https://github.com/hackforla/website/pull/96#pullrequestreview-234856853) at 2019-05-07 09:06 PM PDT -thekaveman,2019-05-09T00:15:33Z,- thekaveman assigned to issue: [97](https://github.com/hackforla/website/issues/97) at 2019-05-08 05:15 PM PDT -thekaveman,2019-05-09T03:01:15Z,- thekaveman commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-490724879) at 2019-05-08 08:01 PM PDT -thekaveman,2019-05-09T05:29:27Z,- thekaveman submitted pull request review: [96](https://github.com/hackforla/website/pull/96#pullrequestreview-235404481) at 2019-05-08 10:29 PM PDT -thekaveman,2019-05-09T06:12:59Z,- thekaveman opened pull request: [99](https://github.com/hackforla/website/pull/99) at 2019-05-08 11:12 PM PDT -thekaveman,2019-05-09T06:24:19Z,- thekaveman pull request merged: [99](https://github.com/hackforla/website/pull/99#event-2329247724) at 2019-05-08 11:24 PM PDT -thekaveman,2019-05-10T01:27:57Z,- thekaveman assigned to issue: [102](https://github.com/hackforla/website/issues/102) at 2019-05-09 06:27 PM PDT -thekaveman,2019-05-12T05:24:50Z,- thekaveman assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -thekaveman,2019-05-13T03:16:20Z,- thekaveman assigned to issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:16 PM PDT -thekaveman,2019-05-13T03:25:03Z,- thekaveman assigned to issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-12 08:25 PM PDT -thekaveman,2019-05-14T03:59:10Z,- thekaveman opened issue: [105](https://github.com/hackforla/website/issues/105) at 2019-05-13 08:59 PM PDT -thekaveman,2019-05-14T03:59:11Z,- thekaveman assigned to issue: [105](https://github.com/hackforla/website/issues/105) at 2019-05-13 08:59 PM PDT -thekaveman,2019-05-14T05:38:48Z,- thekaveman opened issue: [106](https://github.com/hackforla/website/issues/106) at 2019-05-13 10:38 PM PDT -thekaveman,2019-05-14T05:38:49Z,- thekaveman assigned to issue: [106](https://github.com/hackforla/website/issues/106) at 2019-05-13 10:38 PM PDT -thekaveman,2019-05-14T05:56:44Z,- thekaveman commented on issue: [106](https://github.com/hackforla/website/issues/106#issuecomment-492089460) at 2019-05-13 10:56 PM PDT -thekaveman,2019-05-14T06:19:46Z,- thekaveman opened pull request: [107](https://github.com/hackforla/website/pull/107) at 2019-05-13 11:19 PM PDT -thekaveman,2019-05-14T06:58:33Z,- thekaveman pull request merged: [107](https://github.com/hackforla/website/pull/107#event-2339065414) at 2019-05-13 11:58 PM PDT -thekaveman,2019-05-14T07:00:52Z,- thekaveman closed issue by PR 107: [106](https://github.com/hackforla/website/issues/106#event-2339070234) at 2019-05-14 12:00 AM PDT -thekaveman,2019-05-15T01:19:02Z,- thekaveman closed issue as completed: [105](https://github.com/hackforla/website/issues/105#event-2341843914) at 2019-05-14 06:19 PM PDT -thekaveman,2019-05-22T22:53:29Z,- thekaveman commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495003887) at 2019-05-22 03:53 PM PDT -thekaveman,2019-05-22T23:15:31Z,- thekaveman commented on pull request: [108](https://github.com/hackforla/website/pull/108#issuecomment-495008629) at 2019-05-22 04:15 PM PDT -thekaveman,2019-05-23T03:36:18Z,- thekaveman assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -thekaveman,2019-05-23T23:01:34Z,- thekaveman commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495414510) at 2019-05-23 04:01 PM PDT -thekaveman,2019-05-27T21:15:51Z,- thekaveman assigned to issue: [116](https://github.com/hackforla/website/issues/116) at 2019-05-27 02:15 PM PDT -thekaveman,2019-05-27T23:08:43Z,- thekaveman assigned to issue: [120](https://github.com/hackforla/website/issues/120) at 2019-05-27 04:08 PM PDT -thekaveman,2019-05-27T23:15:57Z,- thekaveman assigned to issue: [121](https://github.com/hackforla/website/issues/121) at 2019-05-27 04:15 PM PDT -thekaveman,2019-05-28T04:45:18Z,- thekaveman assigned to issue: [123](https://github.com/hackforla/website/issues/123) at 2019-05-27 09:45 PM PDT -thekaveman,2019-05-28T16:24:44Z,- thekaveman commented on issue: [123](https://github.com/hackforla/website/issues/123#issuecomment-496589121) at 2019-05-28 09:24 AM PDT -thekaveman,2019-05-28T16:29:58Z,- thekaveman commented on issue: [122](https://github.com/hackforla/website/issues/122#issuecomment-496591069) at 2019-05-28 09:29 AM PDT -thekaveman,2019-05-28T16:37:19Z,- thekaveman commented on issue: [120](https://github.com/hackforla/website/issues/120#issuecomment-496593746) at 2019-05-28 09:37 AM PDT -thekaveman,2019-05-28T16:42:53Z,- thekaveman commented on issue: [121](https://github.com/hackforla/website/issues/121#issuecomment-496595805) at 2019-05-28 09:42 AM PDT -thekaveman,2019-05-28T16:51:08Z,- thekaveman commented on issue: [121](https://github.com/hackforla/website/issues/121#issuecomment-496598721) at 2019-05-28 09:51 AM PDT -thekaveman,2019-05-28T16:54:19Z,- thekaveman commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-496599924) at 2019-05-28 09:54 AM PDT -thekaveman,2019-05-28T16:59:12Z,- thekaveman commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-496601780) at 2019-05-28 09:59 AM PDT -thekaveman,2019-05-28T17:00:06Z,- thekaveman commented on issue: [122](https://github.com/hackforla/website/issues/122#issuecomment-496602098) at 2019-05-28 10:00 AM PDT -thekaveman,2019-05-28T17:00:06Z,- thekaveman closed issue as completed: [122](https://github.com/hackforla/website/issues/122#event-2372502899) at 2019-05-28 10:00 AM PDT -thekaveman,2019-05-28T17:00:55Z,- thekaveman commented on issue: [120](https://github.com/hackforla/website/issues/120#issuecomment-496602394) at 2019-05-28 10:00 AM PDT -thekaveman,2019-06-04T01:16:13Z,- thekaveman assigned to issue: [117](https://github.com/hackforla/website/issues/117) at 2019-06-03 06:16 PM PDT -thekaveman,2019-06-04T01:21:06Z,- thekaveman assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -thekaveman,2019-06-10T22:50:51Z,- thekaveman unassigned from issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498489346) at 2019-06-10 03:50 PM PDT -thekaveman,2019-06-12T23:02:43Z,- thekaveman commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-501485359) at 2019-06-12 04:02 PM PDT -thekaveman,2019-06-25T01:48:12Z,- thekaveman assigned to issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-502934538) at 2019-06-24 06:48 PM PDT -thekaveman,2019-06-25T03:08:59Z,- thekaveman commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-505262632) at 2019-06-24 08:08 PM PDT -thekaveman,2019-07-23T01:43:14Z,- thekaveman assigned to issue: [133](https://github.com/hackforla/website/issues/133) at 2019-07-22 06:43 PM PDT -thekaveman,2019-07-23T01:51:46Z,- thekaveman commented on issue: [133](https://github.com/hackforla/website/issues/133#issuecomment-514021041) at 2019-07-22 06:51 PM PDT -thekaveman,2019-07-23T03:24:27Z,- thekaveman commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-514038692) at 2019-07-22 08:24 PM PDT -thekaveman,2019-07-31T00:14:01Z,- thekaveman commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-516643121) at 2019-07-30 05:14 PM PDT -thekaveman,2019-08-06T03:29:43Z,- thekaveman opened issue: [138](https://github.com/hackforla/website/issues/138) at 2019-08-05 08:29 PM PDT -thekaveman,2019-08-13T03:19:40Z,- thekaveman commented on issue: [133](https://github.com/hackforla/website/issues/133#issuecomment-520673319) at 2019-08-12 08:19 PM PDT -thekaveman,2019-08-13T03:48:30Z,- thekaveman assigned to issue: [138](https://github.com/hackforla/website/issues/138) at 2019-08-12 08:48 PM PDT -thekaveman,2019-08-15T05:14:42Z,- thekaveman submitted pull request review: [139](https://github.com/hackforla/website/pull/139#pullrequestreview-275263440) at 2019-08-14 10:14 PM PDT -thekaveman,2019-08-19T14:30:40Z,- thekaveman assigned to issue: [134](https://github.com/hackforla/website/issues/134#issuecomment-520598144) at 2019-08-19 07:30 AM PDT -thekaveman,2019-08-22T05:49:34Z,- thekaveman commented on issue: [143](https://github.com/hackforla/website/issues/143#issuecomment-523758475) at 2019-08-21 10:49 PM PDT -thekaveman,2019-08-22T05:50:06Z,- thekaveman commented on issue: [133](https://github.com/hackforla/website/issues/133#issuecomment-523758572) at 2019-08-21 10:50 PM PDT -thekaveman,2019-08-22T05:50:06Z,- thekaveman closed issue as completed: [133](https://github.com/hackforla/website/issues/133#event-2575278293) at 2019-08-21 10:50 PM PDT -thekaveman,2019-08-22T05:57:54Z,- thekaveman opened pull request: [144](https://github.com/hackforla/website/pull/144) at 2019-08-21 10:57 PM PDT -thekaveman,2019-08-22T18:58:24Z,- thekaveman commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524033425) at 2019-08-22 11:58 AM PDT -thekaveman,2019-08-23T23:24:45Z,- thekaveman commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524491291) at 2019-08-23 04:24 PM PDT -thekaveman,2019-08-23T23:24:56Z,- thekaveman closed issue by PR 144: [134](https://github.com/hackforla/website/issues/134#event-2581057996) at 2019-08-23 04:24 PM PDT -thekaveman,2019-08-23T23:24:56Z,- thekaveman pull request merged: [144](https://github.com/hackforla/website/pull/144#event-2581058006) at 2019-08-23 04:24 PM PDT -thekaveman,2019-08-28T17:14:39Z,- thekaveman commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-525838267) at 2019-08-28 10:14 AM PDT -thekaveman,2019-10-15T02:36:56Z,- thekaveman submitted pull request review: [155](https://github.com/hackforla/website/pull/155#pullrequestreview-301625658) at 2019-10-14 07:36 PM PDT -thekaveman,2019-10-15T03:51:38Z,- thekaveman opened issue: [156](https://github.com/hackforla/website/issues/156) at 2019-10-14 08:51 PM PDT -thekaveman,2019-10-15T03:54:19Z,- thekaveman opened issue: [157](https://github.com/hackforla/website/issues/157) at 2019-10-14 08:54 PM PDT -thekaveman,2019-11-04T05:30:56Z,- thekaveman submitted pull request review: [165](https://github.com/hackforla/website/pull/165#pullrequestreview-310883405) at 2019-11-03 09:30 PM PST -thekaveman,2019-11-26T00:23:10Z,- thekaveman assigned to issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -thekaveman,2019-12-25T02:40:12Z,- thekaveman assigned to issue: [228](https://github.com/hackforla/website/issues/228) at 2019-12-24 06:40 PM PST -thekaveman,2019-12-29T23:10:06Z,- thekaveman assigned to issue: [233](https://github.com/hackforla/website/issues/233) at 2019-12-29 03:10 PM PST -thekaveman,2020-01-19T19:34:22Z,- thekaveman unassigned from issue: [228](https://github.com/hackforla/website/issues/228) at 2020-01-19 11:34 AM PST -thekaveman,2020-02-04T17:46:32Z,- thekaveman commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582031428) at 2020-02-04 09:46 AM PST -thekaveman,2020-02-05T18:34:23Z,- thekaveman commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582548902) at 2020-02-05 10:34 AM PST -thekaveman,2020-02-05T22:27:54Z,- thekaveman commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582644033) at 2020-02-05 02:27 PM PST -thekaveman,2020-02-11T03:02:24Z,- thekaveman commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-584460234) at 2020-02-10 07:02 PM PST -thekaveman,2020-02-13T02:28:48Z,- thekaveman commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-585518423) at 2020-02-12 06:28 PM PST -thekaveman,2020-02-23T18:21:45Z,- thekaveman unassigned from issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-583876151) at 2020-02-23 10:21 AM PST -thekaveman,2020-03-01T18:50:30Z,- thekaveman closed issue as completed: [233](https://github.com/hackforla/website/issues/233#event-3085786561) at 2020-03-01 10:50 AM PST -thekaveman,2020-03-12T01:06:02Z,- thekaveman unassigned from issue: [116](https://github.com/hackforla/website/issues/116) at 2020-03-11 06:06 PM PDT -thekaveman,2020-03-12T01:06:53Z,- thekaveman unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-521455617) at 2020-03-11 06:06 PM PDT -thekaveman,2020-03-12T01:07:06Z,- thekaveman unassigned from issue: [102](https://github.com/hackforla/website/issues/102) at 2020-03-11 06:07 PM PDT -thekaveman,2020-03-12T01:07:19Z,- thekaveman unassigned from issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2020-03-11 06:07 PM PDT -thekaveman,2020-03-12T01:07:26Z,- thekaveman unassigned from issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-500627159) at 2020-03-11 06:07 PM PDT -thekaveman,2020-03-12T01:08:00Z,- thekaveman unassigned from issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2020-03-11 06:08 PM PDT -thekaveman,2020-03-12T01:08:12Z,- thekaveman unassigned from issue: [192](https://github.com/hackforla/website/issues/192) at 2020-03-11 06:08 PM PDT -thekaveman,2020-11-12T23:53:22Z,- thekaveman closed issue as completed: [98](https://github.com/hackforla/website/issues/98#event-3991165564) at 2020-11-12 03:53 PM PST -TheManTheMythTheGameDev,6946,SKILLS ISSUE -TheManTheMythTheGameDev,2024-06-04T02:53:03Z,- TheManTheMythTheGameDev opened issue: [6946](https://github.com/hackforla/website/issues/6946) at 2024-06-03 07:53 PM PDT -TheManTheMythTheGameDev,2024-06-04T02:53:14Z,- TheManTheMythTheGameDev assigned to issue: [6946](https://github.com/hackforla/website/issues/6946) at 2024-06-03 07:53 PM PDT -TheManTheMythTheGameDev,2024-07-18T23:06:24Z,- TheManTheMythTheGameDev assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2215440105) at 2024-07-18 04:06 PM PDT -TheManTheMythTheGameDev,2024-07-18T23:38:00Z,- TheManTheMythTheGameDev unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2215440105) at 2024-07-18 04:38 PM PDT -TheManTheMythTheGameDev,2024-07-18T23:56:56Z,- TheManTheMythTheGameDev assigned to issue: [3525](https://github.com/hackforla/website/issues/3525#event-11823808208) at 2024-07-18 04:56 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:08:03Z,- TheManTheMythTheGameDev unassigned from issue: [3525](https://github.com/hackforla/website/issues/3525#event-11823808208) at 2024-07-18 05:08 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:10:08Z,- TheManTheMythTheGameDev assigned to issue: [7096](https://github.com/hackforla/website/issues/7096#issuecomment-2212639120) at 2024-07-18 05:10 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:21:05Z,- TheManTheMythTheGameDev commented on issue: [7096](https://github.com/hackforla/website/issues/7096#issuecomment-2237805073) at 2024-07-18 05:21 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:23:09Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2237806559) at 2024-07-18 05:23 PM PDT -TheManTheMythTheGameDev,2024-07-19T01:55:21Z,- TheManTheMythTheGameDev opened pull request: [7129](https://github.com/hackforla/website/pull/7129) at 2024-07-18 06:55 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:11:35Z,- TheManTheMythTheGameDev commented on pull request: [7129](https://github.com/hackforla/website/pull/7129#issuecomment-2253689857) at 2024-07-26 06:11 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:13:28Z,- TheManTheMythTheGameDev assigned to issue: [7135](https://github.com/hackforla/website/issues/7135) at 2024-07-26 06:13 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:13:41Z,- TheManTheMythTheGameDev unassigned from issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253690494) at 2024-07-26 06:13 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:21:50Z,- TheManTheMythTheGameDev pull request merged: [7129](https://github.com/hackforla/website/pull/7129#event-13667080810) at 2024-07-26 06:21 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:30:06Z,- TheManTheMythTheGameDev assigned to issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253694808) at 2024-07-26 06:30 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:42:56Z,- TheManTheMythTheGameDev commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253699764) at 2024-07-26 06:42 PM PDT -TheManTheMythTheGameDev,2024-07-29T20:18:25Z,- TheManTheMythTheGameDev opened pull request: [7153](https://github.com/hackforla/website/pull/7153) at 2024-07-29 01:18 PM PDT -TheManTheMythTheGameDev,2024-07-31T21:39:42Z,- TheManTheMythTheGameDev pull request merged: [7153](https://github.com/hackforla/website/pull/7153#event-13716592744) at 2024-07-31 02:39 PM PDT -TheManTheMythTheGameDev,2024-08-08T20:53:08Z,- TheManTheMythTheGameDev assigned to issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272502319) at 2024-08-08 01:53 PM PDT -TheManTheMythTheGameDev,2024-08-08T20:58:26Z,- TheManTheMythTheGameDev commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2276640672) at 2024-08-08 01:58 PM PDT -TheManTheMythTheGameDev,2024-08-08T21:49:52Z,- TheManTheMythTheGameDev opened pull request: [7255](https://github.com/hackforla/website/pull/7255) at 2024-08-08 02:49 PM PDT -TheManTheMythTheGameDev,2024-08-08T22:03:11Z,- TheManTheMythTheGameDev commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2276742805) at 2024-08-08 03:03 PM PDT -TheManTheMythTheGameDev,2024-08-08T22:46:32Z,- TheManTheMythTheGameDev submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2228986481) at 2024-08-08 03:46 PM PDT -TheManTheMythTheGameDev,2024-08-08T23:03:38Z,- TheManTheMythTheGameDev submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2229005194) at 2024-08-08 04:03 PM PDT -TheManTheMythTheGameDev,2024-08-14T04:35:29Z,- TheManTheMythTheGameDev submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2237152550) at 2024-08-13 09:35 PM PDT -TheManTheMythTheGameDev,2024-08-15T14:57:24Z,- TheManTheMythTheGameDev pull request merged: [7255](https://github.com/hackforla/website/pull/7255#event-13897226310) at 2024-08-15 07:57 AM PDT -TheManTheMythTheGameDev,2024-11-09T19:51:59Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466434605) at 2024-11-09 11:51 AM PST -TheManTheMythTheGameDev,2024-11-09T19:53:27Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466435509) at 2024-11-09 11:53 AM PST -TheManTheMythTheGameDev,2024-11-09T19:53:56Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466435622) at 2024-11-09 11:53 AM PST -TheManTheMythTheGameDev,2024-11-09T19:54:33Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466435769) at 2024-11-09 11:54 AM PST -TheManTheMythTheGameDev,2024-11-09T19:57:48Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466436977) at 2024-11-09 11:57 AM PST -TheManTheMythTheGameDev,2024-11-09T19:58:31Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466437204) at 2024-11-09 11:58 AM PST -TheManTheMythTheGameDev,2024-11-09T20:00:44Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466437798) at 2024-11-09 12:00 PM PST -TheManTheMythTheGameDev,2024-11-09T20:04:24Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466439060) at 2024-11-09 12:04 PM PST -TheManTheMythTheGameDev,2024-11-09T20:12:10Z,- TheManTheMythTheGameDev commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2466441287) at 2024-11-09 12:12 PM PST -TheManTheMythTheGameDev,2024-11-09T21:03:45Z,- TheManTheMythTheGameDev submitted pull request review: [7711](https://github.com/hackforla/website/pull/7711#pullrequestreview-2425586867) at 2024-11-09 01:03 PM PST -TheManTheMythTheGameDev,2024-11-09T21:08:53Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466460508) at 2024-11-09 01:08 PM PST -TheManTheMythTheGameDev,2024-11-09T21:17:55Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466462670) at 2024-11-09 01:17 PM PST -TheManTheMythTheGameDev,2025-02-08T20:34:06Z,- TheManTheMythTheGameDev commented on pull request: [7902](https://github.com/hackforla/website/pull/7902#issuecomment-2645931830) at 2025-02-08 12:34 PM PST -TheManTheMythTheGameDev,2025-02-09T20:36:12Z,- TheManTheMythTheGameDev submitted pull request review: [7902](https://github.com/hackforla/website/pull/7902#pullrequestreview-2604452787) at 2025-02-09 12:36 PM PST -TheManTheMythTheGameDev,2025-04-01T15:44:18Z,- TheManTheMythTheGameDev commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2769816280) at 2025-04-01 08:44 AM PDT -TheManTheMythTheGameDev,2025-04-16T03:43:36Z,- TheManTheMythTheGameDev commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2808150227) at 2025-04-15 08:43 PM PDT -TheManTheMythTheGameDev,2025-04-16T04:00:53Z,- TheManTheMythTheGameDev submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2770594806) at 2025-04-15 09:00 PM PDT -TheManTheMythTheGameDev,2025-04-16T04:07:49Z,- TheManTheMythTheGameDev submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2770612360) at 2025-04-15 09:07 PM PDT -TheManTheMythTheGameDev,2025-04-28T23:03:45Z,- TheManTheMythTheGameDev commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2836968156) at 2025-04-28 04:03 PM PDT -TheManTheMythTheGameDev,2025-06-05T22:21:09Z,- TheManTheMythTheGameDev commented on pull request: [8171](https://github.com/hackforla/website/pull/8171#issuecomment-2946565711) at 2025-06-05 03:21 PM PDT -TheManTheMythTheGameDev,2025-06-06T00:56:17Z,- TheManTheMythTheGameDev submitted pull request review: [8171](https://github.com/hackforla/website/pull/8171#pullrequestreview-2903345005) at 2025-06-05 05:56 PM PDT -TheManTheMythTheGameDev,2025-07-18T18:03:05Z,- TheManTheMythTheGameDev commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3090256254) at 2025-07-18 11:03 AM PDT -theMorganObject,5209,SKILLS ISSUE -theMorganObject,2023-08-15T02:40:32Z,- theMorganObject opened issue: [5209](https://github.com/hackforla/website/issues/5209) at 2023-08-14 07:40 PM PDT -theMorganObject,2023-08-15T02:41:30Z,- theMorganObject assigned to issue: [5209](https://github.com/hackforla/website/issues/5209#issuecomment-1678350001) at 2023-08-14 07:41 PM PDT -theogguu,7516,SKILLS ISSUE -theogguu,2024-09-25T02:39:18Z,- theogguu opened issue: [7516](https://github.com/hackforla/website/issues/7516) at 2024-09-24 07:39 PM PDT -theogguu,2024-09-25T02:39:26Z,- theogguu assigned to issue: [7516](https://github.com/hackforla/website/issues/7516) at 2024-09-24 07:39 PM PDT -theogguu,2024-09-25T02:47:20Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2372780245) at 2024-09-24 07:47 PM PDT -theogguu,2024-09-25T02:57:57Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2372802311) at 2024-09-24 07:57 PM PDT -theogguu,2024-10-07T20:21:05Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2397817041) at 2024-10-07 01:21 PM PDT -theogguu,2024-10-07T20:24:47Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2397823392) at 2024-10-07 01:24 PM PDT -theogguu,2024-10-07T20:26:33Z,- theogguu assigned to issue: [7566](https://github.com/hackforla/website/issues/7566) at 2024-10-07 01:26 PM PDT -theogguu,2024-10-07T20:30:23Z,- theogguu commented on issue: [7566](https://github.com/hackforla/website/issues/7566#issuecomment-2397833530) at 2024-10-07 01:30 PM PDT -theogguu,2024-10-07T20:31:28Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2397835498) at 2024-10-07 01:31 PM PDT -theogguu,2024-10-07T21:01:47Z,- theogguu opened pull request: [7568](https://github.com/hackforla/website/pull/7568) at 2024-10-07 02:01 PM PDT -theogguu,2024-10-07T21:07:24Z,- theogguu commented on issue: [7566](https://github.com/hackforla/website/issues/7566#issuecomment-2397897705) at 2024-10-07 02:07 PM PDT -theogguu,2024-10-08T01:14:05Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2398384828) at 2024-10-07 06:14 PM PDT -theogguu,2024-10-08T20:43:41Z,- theogguu pull request merged: [7568](https://github.com/hackforla/website/pull/7568#event-14562668329) at 2024-10-08 01:43 PM PDT -theogguu,2024-10-09T02:04:22Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2401126663) at 2024-10-08 07:04 PM PDT -theogguu,2024-10-14T20:14:54Z,- theogguu assigned to issue: [7473](https://github.com/hackforla/website/issues/7473) at 2024-10-14 01:14 PM PDT -theogguu,2024-10-14T20:16:35Z,- theogguu commented on issue: [7473](https://github.com/hackforla/website/issues/7473#issuecomment-2412124215) at 2024-10-14 01:16 PM PDT -theogguu,2024-10-14T20:46:10Z,- theogguu opened pull request: [7592](https://github.com/hackforla/website/pull/7592) at 2024-10-14 01:46 PM PDT -theogguu,2024-10-14T20:48:58Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2412309205) at 2024-10-14 01:48 PM PDT -theogguu,2024-10-16T03:36:54Z,- theogguu pull request merged: [7592](https://github.com/hackforla/website/pull/7592#event-14667652060) at 2024-10-15 08:36 PM PDT -theogguu,2024-10-17T02:28:32Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2418361010) at 2024-10-16 07:28 PM PDT -theogguu,2024-10-19T21:58:41Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2424231714) at 2024-10-19 02:58 PM PDT -theogguu,2024-10-19T22:00:00Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2424232212) at 2024-10-19 03:00 PM PDT -theogguu,2024-10-19T22:02:08Z,- theogguu assigned to issue: [7563](https://github.com/hackforla/website/issues/7563) at 2024-10-19 03:02 PM PDT -theogguu,2024-10-19T22:03:02Z,- theogguu commented on issue: [7563](https://github.com/hackforla/website/issues/7563#issuecomment-2424232905) at 2024-10-19 03:03 PM PDT -theogguu,2024-10-19T22:04:53Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2424233455) at 2024-10-19 03:04 PM PDT -theogguu,2024-10-19T22:22:31Z,- theogguu opened pull request: [7599](https://github.com/hackforla/website/pull/7599) at 2024-10-19 03:22 PM PDT -theogguu,2024-10-21T23:34:11Z,- theogguu pull request merged: [7599](https://github.com/hackforla/website/pull/7599#event-14772739553) at 2024-10-21 04:34 PM PDT -theogguu,2024-10-22T00:51:49Z,- theogguu assigned to issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2398160671) at 2024-10-21 05:51 PM PDT -theogguu,2024-10-22T00:52:43Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2427997745) at 2024-10-21 05:52 PM PDT -theogguu,2024-10-22T00:53:22Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2427998354) at 2024-10-21 05:53 PM PDT -theogguu,2024-10-28T19:36:15Z,- theogguu opened issue: [7643](https://github.com/hackforla/website/issues/7643) at 2024-10-28 12:36 PM PDT -theogguu,2024-10-28T19:40:01Z,- theogguu opened issue: [7644](https://github.com/hackforla/website/issues/7644) at 2024-10-28 12:40 PM PDT -theogguu,2024-10-28T19:42:23Z,- theogguu opened issue: [7645](https://github.com/hackforla/website/issues/7645) at 2024-10-28 12:42 PM PDT -theogguu,2024-10-28T19:44:44Z,- theogguu opened issue: [7646](https://github.com/hackforla/website/issues/7646) at 2024-10-28 12:44 PM PDT -theogguu,2024-10-28T19:47:03Z,- theogguu opened issue: [7647](https://github.com/hackforla/website/issues/7647) at 2024-10-28 12:47 PM PDT -theogguu,2024-10-28T19:49:13Z,- theogguu opened issue: [7648](https://github.com/hackforla/website/issues/7648) at 2024-10-28 12:49 PM PDT -theogguu,2024-10-28T19:50:28Z,- theogguu opened issue: [7649](https://github.com/hackforla/website/issues/7649) at 2024-10-28 12:50 PM PDT -theogguu,2024-10-28T19:50:56Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2442488145) at 2024-10-28 12:50 PM PDT -theogguu,2024-10-28T20:15:37Z,- theogguu opened issue: [7650](https://github.com/hackforla/website/issues/7650) at 2024-10-28 01:15 PM PDT -theogguu,2024-10-28T20:17:25Z,- theogguu opened issue: [7651](https://github.com/hackforla/website/issues/7651) at 2024-10-28 01:17 PM PDT -theogguu,2024-10-28T20:18:01Z,- theogguu opened issue: [7652](https://github.com/hackforla/website/issues/7652) at 2024-10-28 01:18 PM PDT -theogguu,2024-10-28T20:19:05Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2442541302) at 2024-10-28 01:19 PM PDT -theogguu,2024-10-28T20:30:57Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2442562971) at 2024-10-28 01:30 PM PDT -theogguu,2024-10-28T22:58:16Z,- theogguu commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2442827987) at 2024-10-28 03:58 PM PDT -theogguu,2024-10-29T03:51:58Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2443145252) at 2024-10-28 08:51 PM PDT -theogguu,2024-11-09T05:38:28Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2466062883) at 2024-11-08 09:38 PM PST -theogguu,2024-11-09T05:40:44Z,- theogguu commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2466063468) at 2024-11-08 09:40 PM PST -theogguu,2024-11-09T06:04:24Z,- theogguu commented on issue: [7646](https://github.com/hackforla/website/issues/7646#issuecomment-2466069579) at 2024-11-08 10:04 PM PST -theogguu,2024-11-09T06:05:47Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2466069987) at 2024-11-08 10:05 PM PST -theogguu,2024-11-11T02:46:23Z,- theogguu commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2467125927) at 2024-11-10 06:46 PM PST -theogguu,2024-11-11T02:56:38Z,- theogguu submitted pull request review: [7716](https://github.com/hackforla/website/pull/7716#pullrequestreview-2426026315) at 2024-11-10 06:56 PM PST -theogguu,2024-11-11T02:57:47Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2467134856) at 2024-11-10 06:57 PM PST -theogguu,2024-11-12T21:31:21Z,- theogguu submitted pull request review: [7717](https://github.com/hackforla/website/pull/7717#pullrequestreview-2430738089) at 2024-11-12 01:31 PM PST -theogguu,2024-11-12T21:32:36Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2471627642) at 2024-11-12 01:32 PM PST -theogguu,2024-11-12T21:53:09Z,- theogguu assigned to issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2449647523) at 2024-11-12 01:53 PM PST -theogguu,2024-11-12T21:53:29Z,- theogguu unassigned from issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2471660253) at 2024-11-12 01:53 PM PST -theogguu,2024-11-15T19:10:10Z,- theogguu assigned to issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2479744135) at 2024-11-15 11:10 AM PST -theogguu,2024-11-17T19:30:36Z,- theogguu commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2481458031) at 2024-11-17 11:30 AM PST -theogguu,2024-11-17T19:30:41Z,- theogguu unassigned from issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2481458031) at 2024-11-17 11:30 AM PST -theogguu,2024-11-23T20:44:43Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2495649587) at 2024-11-23 12:44 PM PST -theogguu,2024-12-20T19:57:22Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2557638890) at 2024-12-20 11:57 AM PST -theogguu,2024-12-20T20:01:04Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2557643137) at 2024-12-20 12:01 PM PST -theogguu,2025-01-07T06:02:41Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2574455714) at 2025-01-06 10:02 PM PST -theogguu,2025-01-20T03:51:43Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2601273412) at 2025-01-19 07:51 PM PST -theogguu,2025-01-29T04:05:08Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2620677623) at 2025-01-28 08:05 PM PST -theogguu,2025-02-09T01:28:17Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2646013049) at 2025-02-08 05:28 PM PST -theswerd,2019-12-29T03:04:15Z,- theswerd assigned to issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-28 07:04 PM PST -theswerd,2020-04-21T18:07:37Z,- theswerd commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-617325443) at 2020-04-21 11:07 AM PDT -theswerd,2020-08-13T06:31:29Z,- theswerd opened pull request: [681](https://github.com/hackforla/website/pull/681) at 2020-08-12 11:31 PM PDT -theswerd,2020-10-07T02:13:04Z,- theswerd pull request closed w/o merging: [681](https://github.com/hackforla/website/pull/681#event-3848248061) at 2020-10-06 07:13 PM PDT -thinhmai1027,4334,SKILLS ISSUE -thinhmai1027,2023-03-29T04:18:20Z,- thinhmai1027 opened issue: [4334](https://github.com/hackforla/website/issues/4334) at 2023-03-28 09:18 PM PDT -thinhmai1027,2023-03-29T04:18:21Z,- thinhmai1027 assigned to issue: [4334](https://github.com/hackforla/website/issues/4334) at 2023-03-28 09:18 PM PDT -Thinking-Panda,3916,SKILLS ISSUE -Thinking-Panda,2023-02-01T04:58:38Z,- Thinking-Panda opened issue: [3916](https://github.com/hackforla/website/issues/3916) at 2023-01-31 08:58 PM PST -Thinking-Panda,2023-02-01T05:06:01Z,- Thinking-Panda assigned to issue: [3916](https://github.com/hackforla/website/issues/3916) at 2023-01-31 09:06 PM PST -Thinking-Panda,2023-02-03T19:13:02Z,- Thinking-Panda assigned to issue: [3872](https://github.com/hackforla/website/issues/3872) at 2023-02-03 11:13 AM PST -Thinking-Panda,2023-02-06T21:30:40Z,- Thinking-Panda commented on issue: [3872](https://github.com/hackforla/website/issues/3872#issuecomment-1419784647) at 2023-02-06 01:30 PM PST -Thinking-Panda,2023-02-07T23:05:57Z,- Thinking-Panda opened pull request: [3954](https://github.com/hackforla/website/pull/3954) at 2023-02-07 03:05 PM PST -Thinking-Panda,2023-02-09T00:13:39Z,- Thinking-Panda pull request merged: [3954](https://github.com/hackforla/website/pull/3954#event-8474194073) at 2023-02-08 04:13 PM PST -Thinking-Panda,2023-02-09T20:23:25Z,- Thinking-Panda commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1424763039) at 2023-02-09 12:23 PM PST -Thinking-Panda,2023-02-10T19:12:51Z,- Thinking-Panda assigned to issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1308049061) at 2023-02-10 11:12 AM PST -Thinking-Panda,2023-02-10T20:09:15Z,- Thinking-Panda opened pull request: [3961](https://github.com/hackforla/website/pull/3961) at 2023-02-10 12:09 PM PST -Thinking-Panda,2023-02-14T19:59:52Z,- Thinking-Panda commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1430302091) at 2023-02-14 11:59 AM PST -Thinking-Panda,2023-02-15T08:11:47Z,- Thinking-Panda pull request merged: [3961](https://github.com/hackforla/website/pull/3961#event-8523214739) at 2023-02-15 12:11 AM PST -Thinking-Panda,2023-02-15T18:54:29Z,- Thinking-Panda assigned to issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1407975561) at 2023-02-15 10:54 AM PST -Thinking-Panda,2023-02-15T18:56:53Z,- Thinking-Panda commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1431857827) at 2023-02-15 10:56 AM PST -Thinking-Panda,2023-02-16T18:59:58Z,- Thinking-Panda opened pull request: [3988](https://github.com/hackforla/website/pull/3988) at 2023-02-16 10:59 AM PST -Thinking-Panda,2023-02-17T02:48:54Z,- Thinking-Panda pull request merged: [3988](https://github.com/hackforla/website/pull/3988#event-8543017831) at 2023-02-16 06:48 PM PST -Thinking-Panda,2023-02-17T03:18:06Z,- Thinking-Panda commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1434040332) at 2023-02-16 07:18 PM PST -Thinking-Panda,2023-02-17T19:55:21Z,- Thinking-Panda commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1435166876) at 2023-02-17 11:55 AM PST -Thinking-Panda,2023-02-17T20:04:18Z,- Thinking-Panda submitted pull request review: [3989](https://github.com/hackforla/website/pull/3989#pullrequestreview-1304134452) at 2023-02-17 12:04 PM PST -Thinking-Panda,2023-02-17T20:08:20Z,- Thinking-Panda commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435185572) at 2023-02-17 12:08 PM PST -Thinking-Panda,2023-02-17T20:39:09Z,- Thinking-Panda submitted pull request review: [4002](https://github.com/hackforla/website/pull/4002#pullrequestreview-1304170356) at 2023-02-17 12:39 PM PST -Thinking-Panda,2023-02-18T06:08:39Z,- Thinking-Panda commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435495608) at 2023-02-17 10:08 PM PST -Thinking-Panda,2023-02-20T19:06:00Z,- Thinking-Panda assigned to issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1401151372) at 2023-02-20 11:06 AM PST -Thinking-Panda,2023-02-20T19:07:54Z,- Thinking-Panda commented on issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1437441665) at 2023-02-20 11:07 AM PST -Thinking-Panda,2023-02-22T19:01:29Z,- Thinking-Panda submitted pull request review: [4022](https://github.com/hackforla/website/pull/4022#pullrequestreview-1309991535) at 2023-02-22 11:01 AM PST -Thinking-Panda,2023-02-23T06:10:02Z,- Thinking-Panda opened pull request: [4027](https://github.com/hackforla/website/pull/4027) at 2023-02-22 10:10 PM PST -Thinking-Panda,2023-02-23T17:56:43Z,- Thinking-Panda commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1442199998) at 2023-02-23 09:56 AM PST -Thinking-Panda,2023-02-24T22:59:06Z,- Thinking-Panda pull request merged: [4027](https://github.com/hackforla/website/pull/4027#event-8606329762) at 2023-02-24 02:59 PM PST -Thinking-Panda,2023-02-25T01:01:01Z,- Thinking-Panda commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1444838906) at 2023-02-24 05:01 PM PST -Thinking-Panda,2023-02-25T22:34:43Z,- Thinking-Panda commented on issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1445219417) at 2023-02-25 02:34 PM PST -Thinking-Panda,2023-02-27T20:08:54Z,- Thinking-Panda commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1447010159) at 2023-02-27 12:08 PM PST -Thinking-Panda,2023-02-27T20:26:01Z,- Thinking-Panda submitted pull request review: [4048](https://github.com/hackforla/website/pull/4048#pullrequestreview-1316377401) at 2023-02-27 12:26 PM PST -Thinking-Panda,2023-02-28T19:30:25Z,- Thinking-Panda commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1448743408) at 2023-02-28 11:30 AM PST -Thinking-Panda,2023-03-01T18:43:48Z,- Thinking-Panda submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1320425330) at 2023-03-01 10:43 AM PST -Thinking-Panda,2023-03-02T22:11:27Z,- Thinking-Panda submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1322750922) at 2023-03-02 02:11 PM PST -Thinking-Panda,2023-03-06T18:12:31Z,- Thinking-Panda commented on pull request: [4114](https://github.com/hackforla/website/pull/4114#issuecomment-1456687761) at 2023-03-06 10:12 AM PST -Thinking-Panda,2023-03-06T19:49:56Z,- Thinking-Panda assigned to issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1445435515) at 2023-03-06 11:49 AM PST -Thinking-Panda,2023-03-06T19:50:50Z,- Thinking-Panda commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1456862843) at 2023-03-06 11:50 AM PST -Thinking-Panda,2023-03-06T22:57:55Z,- Thinking-Panda submitted pull request review: [4114](https://github.com/hackforla/website/pull/4114#pullrequestreview-1327344577) at 2023-03-06 02:57 PM PST -Thinking-Panda,2023-03-10T20:48:14Z,- Thinking-Panda commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1464450518) at 2023-03-10 12:48 PM PST -Thinking-Panda,2023-03-15T03:20:24Z,- Thinking-Panda commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1469251406) at 2023-03-14 08:20 PM PDT -Thinking-Panda,2023-03-16T20:31:43Z,- Thinking-Panda opened pull request: [4197](https://github.com/hackforla/website/pull/4197) at 2023-03-16 01:31 PM PDT -Thinking-Panda,2023-03-16T23:34:48Z,- Thinking-Panda commented on pull request: [4194](https://github.com/hackforla/website/pull/4194#issuecomment-1472896991) at 2023-03-16 04:34 PM PDT -Thinking-Panda,2023-03-17T20:16:31Z,- Thinking-Panda submitted pull request review: [4194](https://github.com/hackforla/website/pull/4194#pullrequestreview-1346666389) at 2023-03-17 01:16 PM PDT -Thinking-Panda,2023-03-17T21:29:28Z,- Thinking-Panda commented on pull request: [4202](https://github.com/hackforla/website/pull/4202#issuecomment-1474419691) at 2023-03-17 02:29 PM PDT -Thinking-Panda,2023-03-20T18:08:23Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1476708992) at 2023-03-20 11:08 AM PDT -Thinking-Panda,2023-03-20T18:17:58Z,- Thinking-Panda commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1476723395) at 2023-03-20 11:17 AM PDT -Thinking-Panda,2023-03-20T18:23:51Z,- Thinking-Panda submitted pull request review: [4215](https://github.com/hackforla/website/pull/4215#pullrequestreview-1349173234) at 2023-03-20 11:23 AM PDT -Thinking-Panda,2023-03-21T17:23:47Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1478303742) at 2023-03-21 10:23 AM PDT -Thinking-Panda,2023-03-21T17:28:30Z,- Thinking-Panda commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1478311681) at 2023-03-21 10:28 AM PDT -Thinking-Panda,2023-03-23T19:08:17Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1481750332) at 2023-03-23 12:08 PM PDT -Thinking-Panda,2023-03-24T16:20:09Z,- Thinking-Panda commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1483072909) at 2023-03-24 09:20 AM PDT -Thinking-Panda,2023-03-27T19:11:23Z,- Thinking-Panda commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1485725534) at 2023-03-27 12:11 PM PDT -Thinking-Panda,2023-04-12T03:20:36Z,- Thinking-Panda opened issue: [4490](https://github.com/hackforla/website/issues/4490) at 2023-04-11 08:20 PM PDT -Thinking-Panda,2023-04-13T17:26:10Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1507345270) at 2023-04-13 10:26 AM PDT -Thinking-Panda,2023-04-17T19:19:21Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1511954603) at 2023-04-17 12:19 PM PDT -Thinking-Panda,2023-04-18T23:19:33Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1513903110) at 2023-04-18 04:19 PM PDT -Thinking-Panda,2023-04-19T20:34:05Z,- Thinking-Panda commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515343976) at 2023-04-19 01:34 PM PDT -Thinking-Panda,2023-04-20T06:28:24Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1515780453) at 2023-04-19 11:28 PM PDT -Thinking-Panda,2023-04-20T07:00:56Z,- Thinking-Panda pull request merged: [4197](https://github.com/hackforla/website/pull/4197#event-9053748124) at 2023-04-20 12:00 AM PDT -Thinking-Panda,2023-04-20T17:53:56Z,- Thinking-Panda submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1394502844) at 2023-04-20 10:53 AM PDT -Thinking-Panda,2023-04-24T17:53:13Z,- Thinking-Panda commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1520591274) at 2023-04-24 10:53 AM PDT -Thinking-Panda,2023-04-24T18:11:34Z,- Thinking-Panda submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1398560607) at 2023-04-24 11:11 AM PDT -Thinking-Panda,2023-04-25T17:15:59Z,- Thinking-Panda commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1522144705) at 2023-04-25 10:15 AM PDT -Thinking-Panda,2023-04-25T17:25:41Z,- Thinking-Panda submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1400395557) at 2023-04-25 10:25 AM PDT -Thinking-Panda,2023-04-25T17:28:30Z,- Thinking-Panda commented on pull request: [4561](https://github.com/hackforla/website/pull/4561#issuecomment-1522159052) at 2023-04-25 10:28 AM PDT -Thinking-Panda,2023-04-25T17:45:03Z,- Thinking-Panda submitted pull request review: [4561](https://github.com/hackforla/website/pull/4561#pullrequestreview-1400422708) at 2023-04-25 10:45 AM PDT -Thinking-Panda,2023-04-27T17:15:22Z,- Thinking-Panda commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1526056122) at 2023-04-27 10:15 AM PDT -Thinking-Panda,2023-04-27T17:16:11Z,- Thinking-Panda commented on pull request: [4570](https://github.com/hackforla/website/pull/4570#issuecomment-1526057050) at 2023-04-27 10:16 AM PDT -Thinking-Panda,2023-04-27T17:17:12Z,- Thinking-Panda commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1526058278) at 2023-04-27 10:17 AM PDT -Thinking-Panda,2023-04-27T20:48:55Z,- Thinking-Panda commented on pull request: [4570](https://github.com/hackforla/website/pull/4570#issuecomment-1526428505) at 2023-04-27 01:48 PM PDT -Thinking-Panda,2023-04-27T20:50:08Z,- Thinking-Panda submitted pull request review: [4570](https://github.com/hackforla/website/pull/4570#pullrequestreview-1404859728) at 2023-04-27 01:50 PM PDT -Thinking-Panda,2023-04-27T21:31:44Z,- Thinking-Panda submitted pull request review: [4569](https://github.com/hackforla/website/pull/4569#pullrequestreview-1404914418) at 2023-04-27 02:31 PM PDT -Thinking-Panda,2023-04-28T17:44:08Z,- Thinking-Panda submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1406359822) at 2023-04-28 10:44 AM PDT -Thinking-Panda,2023-04-28T19:19:23Z,- Thinking-Panda commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1527990621) at 2023-04-28 12:19 PM PDT -Thinking-Panda,2023-04-28T20:22:05Z,- Thinking-Panda submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1406550412) at 2023-04-28 01:22 PM PDT -Thinking-Panda,2023-04-29T05:32:42Z,- Thinking-Panda commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1528661775) at 2023-04-28 10:32 PM PDT -Thinking-Panda,2023-04-30T04:24:10Z,- Thinking-Panda submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1407051296) at 2023-04-29 09:24 PM PDT -Thinking-Panda,2023-04-30T04:37:14Z,- Thinking-Panda commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1528937189) at 2023-04-29 09:37 PM PDT -Thinking-Panda,2023-05-10T02:30:39Z,- Thinking-Panda commented on pull request: [4640](https://github.com/hackforla/website/pull/4640#issuecomment-1541201005) at 2023-05-09 07:30 PM PDT -Thinking-Panda,2023-05-10T18:47:41Z,- Thinking-Panda submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1421206206) at 2023-05-10 11:47 AM PDT -Thinking-Panda,2023-05-10T18:59:47Z,- Thinking-Panda submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1421221955) at 2023-05-10 11:59 AM PDT -Thinking-Panda,2023-05-12T16:47:30Z,- Thinking-Panda commented on pull request: [4657](https://github.com/hackforla/website/pull/4657#issuecomment-1546019184) at 2023-05-12 09:47 AM PDT -Thinking-Panda,2023-05-12T16:49:47Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1546021542) at 2023-05-12 09:49 AM PDT -Thinking-Panda,2023-05-12T18:56:55Z,- Thinking-Panda submitted pull request review: [4657](https://github.com/hackforla/website/pull/4657#pullrequestreview-1425015689) at 2023-05-12 11:56 AM PDT -Thinking-Panda,2023-05-12T20:03:37Z,- Thinking-Panda commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1546226131) at 2023-05-12 01:03 PM PDT -Thinking-Panda,2023-05-15T20:11:10Z,- Thinking-Panda submitted pull request review: [4650](https://github.com/hackforla/website/pull/4650#pullrequestreview-1427298072) at 2023-05-15 01:11 PM PDT -Thinking-Panda,2023-05-16T17:24:24Z,- Thinking-Panda commented on pull request: [4680](https://github.com/hackforla/website/pull/4680#issuecomment-1550077223) at 2023-05-16 10:24 AM PDT -Thinking-Panda,2023-05-16T17:26:32Z,- Thinking-Panda commented on pull request: [4677](https://github.com/hackforla/website/pull/4677#issuecomment-1550079956) at 2023-05-16 10:26 AM PDT -Thinking-Panda,2023-05-16T20:47:37Z,- Thinking-Panda submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1429380880) at 2023-05-16 01:47 PM PDT -Thinking-Panda,2023-05-16T21:34:25Z,- Thinking-Panda submitted pull request review: [4677](https://github.com/hackforla/website/pull/4677#pullrequestreview-1429470979) at 2023-05-16 02:34 PM PDT -Thinking-Panda,2023-05-17T03:05:42Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1550618092) at 2023-05-16 08:05 PM PDT -Thinking-Panda,2023-05-19T00:22:08Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1553844472) at 2023-05-18 05:22 PM PDT -Thinking-Panda,2023-05-19T17:38:54Z,- Thinking-Panda submitted pull request review: [4650](https://github.com/hackforla/website/pull/4650#pullrequestreview-1434838058) at 2023-05-19 10:38 AM PDT -Thinking-Panda,2023-05-19T21:49:09Z,- Thinking-Panda submitted pull request review: [4650](https://github.com/hackforla/website/pull/4650#pullrequestreview-1435203834) at 2023-05-19 02:49 PM PDT -Thinking-Panda,2023-05-19T21:50:43Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1555292134) at 2023-05-19 02:50 PM PDT -Thinking-Panda,2023-05-22T16:33:11Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1557544068) at 2023-05-22 09:33 AM PDT -Thinking-Panda,2023-05-24T03:00:28Z,- Thinking-Panda submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1440863779) at 2023-05-23 08:00 PM PDT -Thinking-Panda,2023-05-31T03:34:43Z,- Thinking-Panda commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1569446150) at 2023-05-30 08:34 PM PDT -Thinking-Panda,2023-05-31T17:59:57Z,- Thinking-Panda submitted pull request review: [4757](https://github.com/hackforla/website/pull/4757#pullrequestreview-1453849213) at 2023-05-31 10:59 AM PDT -Thinking-Panda,2023-06-16T23:01:31Z,- Thinking-Panda commented on pull request: [4842](https://github.com/hackforla/website/pull/4842#issuecomment-1595422494) at 2023-06-16 04:01 PM PDT -Thinking-Panda,2023-06-20T22:05:44Z,- Thinking-Panda submitted pull request review: [4842](https://github.com/hackforla/website/pull/4842#pullrequestreview-1489177883) at 2023-06-20 03:05 PM PDT -Thinking-Panda,2023-06-21T01:02:07Z,- Thinking-Panda assigned to issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1598129971) at 2023-06-20 06:02 PM PDT -Thinking-Panda,2023-06-21T01:04:17Z,- Thinking-Panda commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1599883128) at 2023-06-20 06:04 PM PDT -Thinking-Panda,2023-07-12T16:53:46Z,- Thinking-Panda opened pull request: [4942](https://github.com/hackforla/website/pull/4942) at 2023-07-12 09:53 AM PDT -Thinking-Panda,2023-07-12T19:22:58Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1633086551) at 2023-07-12 12:22 PM PDT -Thinking-Panda,2023-08-01T02:53:13Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1659486362) at 2023-07-31 07:53 PM PDT -Thinking-Panda,2023-08-08T10:31:27Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1669356354) at 2023-08-08 03:31 AM PDT -Thinking-Panda,2023-08-11T14:11:06Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1674859606) at 2023-08-11 07:11 AM PDT -Thinking-Panda,2023-08-20T13:24:30Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1685285211) at 2023-08-20 06:24 AM PDT -Thinking-Panda,2023-08-21T03:22:00Z,- Thinking-Panda pull request merged: [4942](https://github.com/hackforla/website/pull/4942#event-10140193918) at 2023-08-20 08:22 PM PDT -Thinking-Panda,2023-08-29T22:03:43Z,- Thinking-Panda commented on pull request: [5339](https://github.com/hackforla/website/pull/5339#issuecomment-1698206515) at 2023-08-29 03:03 PM PDT -Thinking-Panda,2023-08-31T01:37:29Z,- Thinking-Panda submitted pull request review: [5339](https://github.com/hackforla/website/pull/5339#pullrequestreview-1603710640) at 2023-08-30 06:37 PM PDT -Thinking-Panda,2023-09-06T00:33:35Z,- Thinking-Panda commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1707480204) at 2023-09-05 05:33 PM PDT -Thinking-Panda,2023-09-07T17:39:36Z,- Thinking-Panda submitted pull request review: [5444](https://github.com/hackforla/website/pull/5444#pullrequestreview-1615952135) at 2023-09-07 10:39 AM PDT -Thinking-Panda,2023-09-07T17:42:25Z,- Thinking-Panda commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1710547930) at 2023-09-07 10:42 AM PDT -Thinking-Panda,2023-09-11T17:59:35Z,- Thinking-Panda commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714343169) at 2023-09-11 10:59 AM PDT -Thinking-Panda,2023-09-18T17:28:17Z,- Thinking-Panda commented on pull request: [5538](https://github.com/hackforla/website/pull/5538#issuecomment-1724051798) at 2023-09-18 10:28 AM PDT -Thinking-Panda,2023-09-18T17:45:16Z,- Thinking-Panda submitted pull request review: [5538](https://github.com/hackforla/website/pull/5538#pullrequestreview-1631658987) at 2023-09-18 10:45 AM PDT -Thinking-Panda,2023-09-18T17:47:41Z,- Thinking-Panda commented on pull request: [5537](https://github.com/hackforla/website/pull/5537#issuecomment-1724085148) at 2023-09-18 10:47 AM PDT -Thinking-Panda,2023-09-18T18:31:52Z,- Thinking-Panda submitted pull request review: [5537](https://github.com/hackforla/website/pull/5537#pullrequestreview-1631733212) at 2023-09-18 11:31 AM PDT -Thinking-Panda,2023-09-19T21:13:40Z,- Thinking-Panda submitted pull request review: [5538](https://github.com/hackforla/website/pull/5538#pullrequestreview-1634197530) at 2023-09-19 02:13 PM PDT -Thinking-Panda,2023-09-19T21:42:27Z,- Thinking-Panda commented on pull request: [5557](https://github.com/hackforla/website/pull/5557#issuecomment-1726541466) at 2023-09-19 02:42 PM PDT -Thinking-Panda,2023-09-19T21:48:33Z,- Thinking-Panda submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1634252334) at 2023-09-19 02:48 PM PDT -Thinking-Panda,2023-10-04T01:58:31Z,- Thinking-Panda commented on pull request: [5658](https://github.com/hackforla/website/pull/5658#issuecomment-1746010710) at 2023-10-03 06:58 PM PDT -Thinking-Panda,2023-10-05T16:09:46Z,- Thinking-Panda submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1660248052) at 2023-10-05 09:09 AM PDT -Thinking-Panda,2023-10-11T02:04:58Z,- Thinking-Panda commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1756619549) at 2023-10-10 07:04 PM PDT -Thinking-Panda,2023-10-11T02:06:34Z,- Thinking-Panda commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1756620604) at 2023-10-10 07:06 PM PDT -Thinking-Panda,2023-10-12T19:08:37Z,- Thinking-Panda submitted pull request review: [5692](https://github.com/hackforla/website/pull/5692#pullrequestreview-1674966304) at 2023-10-12 12:08 PM PDT -Thinking-Panda,2023-10-12T19:55:50Z,- Thinking-Panda submitted pull request review: [5690](https://github.com/hackforla/website/pull/5690#pullrequestreview-1675072283) at 2023-10-12 12:55 PM PDT -Thinking-Panda,2023-10-16T18:51:32Z,- Thinking-Panda submitted pull request review: [5692](https://github.com/hackforla/website/pull/5692#pullrequestreview-1680760592) at 2023-10-16 11:51 AM PDT -Thinking-Panda,2023-10-16T19:04:39Z,- Thinking-Panda commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1765109884) at 2023-10-16 12:04 PM PDT -Thinking-Panda,2023-10-17T04:02:31Z,- Thinking-Panda assigned to issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1732618558) at 2023-10-16 09:02 PM PDT -Thinking-Panda,2023-10-17T04:03:27Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1765628147) at 2023-10-16 09:03 PM PDT -Thinking-Panda,2023-10-18T17:41:21Z,- Thinking-Panda commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1769034310) at 2023-10-18 10:41 AM PDT -Thinking-Panda,2023-10-18T18:20:40Z,- Thinking-Panda submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1685819594) at 2023-10-18 11:20 AM PDT -Thinking-Panda,2023-10-22T13:52:18Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1774101539) at 2023-10-22 06:52 AM PDT -Thinking-Panda,2023-11-03T18:05:28Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1792904147) at 2023-11-03 11:05 AM PDT -Thinking-Panda,2023-11-13T22:17:31Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1809224454) at 2023-11-13 02:17 PM PST -Thinking-Panda,2023-11-16T19:17:55Z,- Thinking-Panda commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1815163866) at 2023-11-16 11:17 AM PST -Thinking-Panda,2023-11-16T20:45:21Z,- Thinking-Panda submitted pull request review: [5891](https://github.com/hackforla/website/pull/5891#pullrequestreview-1735453010) at 2023-11-16 12:45 PM PST -Thinking-Panda,2023-11-22T00:17:31Z,- Thinking-Panda closed issue by PR 1: [4188](https://github.com/hackforla/website/issues/4188#event-11030492802) at 2023-11-21 04:17 PM PST -Thinking-Panda,2023-11-22T03:53:23Z,- Thinking-Panda reopened issue: [4188](https://github.com/hackforla/website/issues/4188#event-11030492802) at 2023-11-21 07:53 PM PST -Thinking-Panda,2023-11-22T04:11:13Z,- Thinking-Panda opened pull request: [5929](https://github.com/hackforla/website/pull/5929) at 2023-11-21 08:11 PM PST -Thinking-Panda,2023-11-22T19:01:17Z,- Thinking-Panda commented on pull request: [5929](https://github.com/hackforla/website/pull/5929#issuecomment-1823324444) at 2023-11-22 11:01 AM PST -Thinking-Panda,2023-11-22T19:12:13Z,- Thinking-Panda opened pull request: [5932](https://github.com/hackforla/website/pull/5932) at 2023-11-22 11:12 AM PST -Thinking-Panda,2023-11-22T19:13:08Z,- Thinking-Panda pull request closed w/o merging: [5929](https://github.com/hackforla/website/pull/5929#event-11040286088) at 2023-11-22 11:13 AM PST -Thinking-Panda,2023-11-22T19:58:08Z,- Thinking-Panda commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1823431486) at 2023-11-22 11:58 AM PST -Thinking-Panda,2023-11-28T22:41:43Z,- Thinking-Panda commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1830873777) at 2023-11-28 02:41 PM PST -Thinking-Panda,2023-11-28T22:46:50Z,- Thinking-Panda submitted pull request review: [5941](https://github.com/hackforla/website/pull/5941#pullrequestreview-1754087299) at 2023-11-28 02:46 PM PST -Thinking-Panda,2023-11-29T03:01:55Z,- Thinking-Panda commented on pull request: [5940](https://github.com/hackforla/website/pull/5940#issuecomment-1831137870) at 2023-11-28 07:01 PM PST -Thinking-Panda,2023-11-29T21:31:30Z,- Thinking-Panda submitted pull request review: [5940](https://github.com/hackforla/website/pull/5940#pullrequestreview-1756251777) at 2023-11-29 01:31 PM PST -Thinking-Panda,2023-11-30T17:00:15Z,- Thinking-Panda commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1834170088) at 2023-11-30 09:00 AM PST -Thinking-Panda,2023-12-04T19:32:11Z,- Thinking-Panda commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1839338910) at 2023-12-04 11:32 AM PST -Thinking-Panda,2023-12-07T20:02:06Z,- Thinking-Panda pull request merged: [5932](https://github.com/hackforla/website/pull/5932#event-11186320584) at 2023-12-07 12:02 PM PST -Thinking-Panda,2024-01-11T19:50:13Z,- Thinking-Panda commented on pull request: [6098](https://github.com/hackforla/website/pull/6098#issuecomment-1887860904) at 2024-01-11 11:50 AM PST -Thinking-Panda,2024-01-14T16:25:02Z,- Thinking-Panda submitted pull request review: [6098](https://github.com/hackforla/website/pull/6098#pullrequestreview-1820262290) at 2024-01-14 08:25 AM PST -Thinking-Panda,2024-01-30T19:56:44Z,- Thinking-Panda commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1917786904) at 2024-01-30 11:56 AM PST -Thinking-Panda,2024-01-30T20:09:14Z,- Thinking-Panda submitted pull request review: [6190](https://github.com/hackforla/website/pull/6190#pullrequestreview-1852255524) at 2024-01-30 12:09 PM PST -Thinking-Panda,2024-01-30T21:22:29Z,- Thinking-Panda commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1917916371) at 2024-01-30 01:22 PM PST -Thinking-Panda,2024-01-30T21:30:49Z,- Thinking-Panda commented on pull request: [6197](https://github.com/hackforla/website/pull/6197#issuecomment-1917927971) at 2024-01-30 01:30 PM PST -Thinking-Panda,2024-01-30T21:47:09Z,- Thinking-Panda submitted pull request review: [6197](https://github.com/hackforla/website/pull/6197#pullrequestreview-1852430991) at 2024-01-30 01:47 PM PST -Thinking-Panda,2024-01-30T21:58:05Z,- Thinking-Panda commented on pull request: [6198](https://github.com/hackforla/website/pull/6198#issuecomment-1917964297) at 2024-01-30 01:58 PM PST -Thinking-Panda,2024-01-30T23:20:09Z,- Thinking-Panda submitted pull request review: [6198](https://github.com/hackforla/website/pull/6198#pullrequestreview-1852585481) at 2024-01-30 03:20 PM PST -Thinking-Panda,2024-01-31T03:55:52Z,- Thinking-Panda submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1852849691) at 2024-01-30 07:55 PM PST -Thinking-Panda,2024-02-01T22:10:36Z,- Thinking-Panda assigned to issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1851222927) at 2024-02-01 02:10 PM PST -Thinking-Panda,2024-02-05T19:59:04Z,- Thinking-Panda commented on issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1927998305) at 2024-02-05 11:59 AM PST -Thinking-Panda,2024-02-05T20:26:32Z,- Thinking-Panda opened issue: [6234](https://github.com/hackforla/website/issues/6234) at 2024-02-05 12:26 PM PST -Thinking-Panda,2024-02-05T20:32:55Z,- Thinking-Panda opened issue: [6235](https://github.com/hackforla/website/issues/6235) at 2024-02-05 12:32 PM PST -Thinking-Panda,2024-02-05T20:36:03Z,- Thinking-Panda opened issue: [6236](https://github.com/hackforla/website/issues/6236) at 2024-02-05 12:36 PM PST -Thinking-Panda,2024-02-05T20:39:30Z,- Thinking-Panda opened issue: [6237](https://github.com/hackforla/website/issues/6237) at 2024-02-05 12:39 PM PST -Thinking-Panda,2024-02-05T20:43:32Z,- Thinking-Panda opened issue: [6238](https://github.com/hackforla/website/issues/6238) at 2024-02-05 12:43 PM PST -Thinking-Panda,2024-02-05T20:46:57Z,- Thinking-Panda opened issue: [6239](https://github.com/hackforla/website/issues/6239) at 2024-02-05 12:46 PM PST -Thinking-Panda,2024-02-06T19:06:27Z,- Thinking-Panda commented on issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1930581920) at 2024-02-06 11:06 AM PST -Thinking-Panda,2024-02-06T22:23:17Z,- Thinking-Panda assigned to issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1925900125) at 2024-02-06 02:23 PM PST -Thinking-Panda,2024-02-06T22:34:02Z,- Thinking-Panda commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1930883460) at 2024-02-06 02:34 PM PST -Thinking-Panda,2024-02-06T23:05:28Z,- Thinking-Panda submitted pull request review: [6260](https://github.com/hackforla/website/pull/6260#pullrequestreview-1866484124) at 2024-02-06 03:05 PM PST -Thinking-Panda,2024-02-07T19:35:03Z,- Thinking-Panda submitted pull request review: [6260](https://github.com/hackforla/website/pull/6260#pullrequestreview-1868625312) at 2024-02-07 11:35 AM PST -Thinking-Panda,2024-02-07T19:40:20Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1932744099) at 2024-02-07 11:40 AM PST -Thinking-Panda,2024-02-08T20:04:15Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1934851091) at 2024-02-08 12:04 PM PST -Thinking-Panda,2024-02-08T21:05:36Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1934932083) at 2024-02-08 01:05 PM PST -Thinking-Panda,2024-02-09T20:57:11Z,- Thinking-Panda opened issue: [6272](https://github.com/hackforla/website/issues/6272) at 2024-02-09 12:57 PM PST -Thinking-Panda,2024-02-09T20:58:36Z,- Thinking-Panda commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1936593657) at 2024-02-09 12:58 PM PST -Thinking-Panda,2024-02-12T18:52:55Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1939341412) at 2024-02-12 10:52 AM PST -Thinking-Panda,2024-02-13T20:51:58Z,- Thinking-Panda commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1942479887) at 2024-02-13 12:51 PM PST -Thinking-Panda,2024-02-13T21:02:11Z,- Thinking-Panda submitted pull request review: [6287](https://github.com/hackforla/website/pull/6287#pullrequestreview-1878914798) at 2024-02-13 01:02 PM PST -Thinking-Panda,2024-02-13T21:46:38Z,- Thinking-Panda commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1942677857) at 2024-02-13 01:46 PM PST -Thinking-Panda,2024-02-13T21:58:05Z,- Thinking-Panda submitted pull request review: [6281](https://github.com/hackforla/website/pull/6281#pullrequestreview-1879006440) at 2024-02-13 01:58 PM PST -Thinking-Panda,2024-02-13T23:30:21Z,- Thinking-Panda commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1942850162) at 2024-02-13 03:30 PM PST -Thinking-Panda,2024-02-20T21:34:44Z,- Thinking-Panda commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955152565) at 2024-02-20 01:34 PM PST -Thinking-Panda,2024-02-20T23:45:58Z,- Thinking-Panda submitted pull request review: [6318](https://github.com/hackforla/website/pull/6318#pullrequestreview-1891785764) at 2024-02-20 03:45 PM PST -Thinking-Panda,2024-02-27T02:55:11Z,- Thinking-Panda assigned to issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1948949038) at 2024-02-26 06:55 PM PST -Thinking-Panda,2024-02-28T02:44:43Z,- Thinking-Panda commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1968089171) at 2024-02-27 06:44 PM PST -Thinking-Panda,2024-02-28T03:01:02Z,- Thinking-Panda unassigned from issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1968089171) at 2024-02-27 07:01 PM PST -Thinking-Panda,2024-02-28T03:06:08Z,- Thinking-Panda commented on pull request: [6371](https://github.com/hackforla/website/pull/6371#issuecomment-1968107841) at 2024-02-27 07:06 PM PST -Thinking-Panda,2024-02-28T18:23:59Z,- Thinking-Panda submitted pull request review: [6371](https://github.com/hackforla/website/pull/6371#pullrequestreview-1906967565) at 2024-02-28 10:23 AM PST -Thinking-Panda,2024-02-28T18:31:39Z,- Thinking-Panda closed issue by PR 6379: [6113](https://github.com/hackforla/website/issues/6113#event-11955706701) at 2024-02-28 10:31 AM PST -Thinking-Panda,2024-02-28T18:49:11Z,- Thinking-Panda commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1969622985) at 2024-02-28 10:49 AM PST -Thinking-Panda,2024-02-28T18:51:53Z,- Thinking-Panda commented on pull request: [6387](https://github.com/hackforla/website/pull/6387#issuecomment-1969627107) at 2024-02-28 10:51 AM PST -Thinking-Panda,2024-02-28T19:00:21Z,- Thinking-Panda submitted pull request review: [6387](https://github.com/hackforla/website/pull/6387#pullrequestreview-1907055626) at 2024-02-28 11:00 AM PST -Thinking-Panda,2024-02-28T19:00:49Z,- Thinking-Panda closed issue by PR 6387: [6313](https://github.com/hackforla/website/issues/6313#event-11956070077) at 2024-02-28 11:00 AM PST -Thinking-Panda,2024-03-04T20:00:52Z,- Thinking-Panda submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1915233242) at 2024-03-04 12:00 PM PST -Thinking-Panda,2024-03-04T21:45:03Z,- Thinking-Panda commented on pull request: [6414](https://github.com/hackforla/website/pull/6414#issuecomment-1977515111) at 2024-03-04 01:45 PM PST -Thinking-Panda,2024-03-04T21:47:31Z,- Thinking-Panda submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1915417378) at 2024-03-04 01:47 PM PST -Thinking-Panda,2024-03-04T21:49:05Z,- Thinking-Panda closed issue by PR 6414: [6258](https://github.com/hackforla/website/issues/6258#event-12005234189) at 2024-03-04 01:49 PM PST -Thinking-Panda,2024-03-04T21:52:25Z,- Thinking-Panda commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1977525710) at 2024-03-04 01:52 PM PST -Thinking-Panda,2024-03-06T03:18:28Z,- Thinking-Panda submitted pull request review: [6434](https://github.com/hackforla/website/pull/6434#pullrequestreview-1918663464) at 2024-03-05 07:18 PM PST -Thinking-Panda,2024-03-06T03:18:48Z,- Thinking-Panda closed issue by PR 6434: [5826](https://github.com/hackforla/website/issues/5826#event-12021979044) at 2024-03-05 07:18 PM PST -Thinking-Panda,2024-03-06T03:38:01Z,- Thinking-Panda submitted pull request review: [6410](https://github.com/hackforla/website/pull/6410#pullrequestreview-1918680570) at 2024-03-05 07:38 PM PST -Thinking-Panda,2024-03-11T18:21:34Z,- Thinking-Panda submitted pull request review: [6410](https://github.com/hackforla/website/pull/6410#pullrequestreview-1928725445) at 2024-03-11 11:21 AM PDT -Thinking-Panda,2024-03-11T18:22:52Z,- Thinking-Panda closed issue by PR 6410: [6376](https://github.com/hackforla/website/issues/6376#event-12078179694) at 2024-03-11 11:22 AM PDT -Thinking-Panda,2024-03-11T18:45:48Z,- Thinking-Panda commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1989194208) at 2024-03-11 11:45 AM PDT -Thinking-Panda,2024-03-11T18:50:01Z,- Thinking-Panda commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1989200625) at 2024-03-11 11:50 AM PDT -Thinking-Panda,2024-03-11T18:58:31Z,- Thinking-Panda commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1989215320) at 2024-03-11 11:58 AM PDT -Thinking-Panda,2024-03-12T19:39:22Z,- Thinking-Panda commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1992401869) at 2024-03-12 12:39 PM PDT -Thinking-Panda,2024-03-19T19:53:49Z,- Thinking-Panda closed issue by PR 6465: [6169](https://github.com/hackforla/website/issues/6169#event-12174882189) at 2024-03-19 12:53 PM PDT -Thinking-Panda,2024-03-27T17:37:42Z,- Thinking-Panda submitted pull request review: [6518](https://github.com/hackforla/website/pull/6518#pullrequestreview-1964047171) at 2024-03-27 10:37 AM PDT -Thinking-Panda,2024-03-27T18:02:11Z,- Thinking-Panda submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1964121370) at 2024-03-27 11:02 AM PDT -Thinking-Panda,2024-03-28T18:29:48Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-2025858416) at 2024-03-28 11:29 AM PDT -Thinking-Panda,2024-03-28T18:32:23Z,- Thinking-Panda closed issue by PR 6518: [6509](https://github.com/hackforla/website/issues/6509#event-12285877946) at 2024-03-28 11:32 AM PDT -Thinking-Panda,2024-04-18T21:01:40Z,- Thinking-Panda assigned to issue: [6290](https://github.com/hackforla/website/issues/6290) at 2024-04-18 02:01 PM PDT -Thinking-Panda,2024-04-18T21:19:12Z,- Thinking-Panda opened issue: [6683](https://github.com/hackforla/website/issues/6683) at 2024-04-18 02:19 PM PDT -Thinking-Panda,2024-04-23T19:05:30Z,- Thinking-Panda commented on issue: [6683](https://github.com/hackforla/website/issues/6683#issuecomment-2073216121) at 2024-04-23 12:05 PM PDT -Thinking-Panda,2024-04-24T01:46:08Z,- Thinking-Panda submitted pull request review: [6711](https://github.com/hackforla/website/pull/6711#pullrequestreview-2018626093) at 2024-04-23 06:46 PM PDT -Thinking-Panda,2024-04-24T02:12:20Z,- Thinking-Panda commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2073868821) at 2024-04-23 07:12 PM PDT -Thinking-Panda,2024-04-24T02:16:35Z,- Thinking-Panda commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2073873384) at 2024-04-23 07:16 PM PDT -Thinking-Panda,2024-04-29T21:25:20Z,- Thinking-Panda commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2083703473) at 2024-04-29 02:25 PM PDT -Thinking-Panda,2024-04-29T21:26:51Z,- Thinking-Panda closed issue by PR 6770: [6763](https://github.com/hackforla/website/issues/6763#event-12649345297) at 2024-04-29 02:26 PM PDT -Thinking-Panda,2024-04-29T21:41:04Z,- Thinking-Panda commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2083730958) at 2024-04-29 02:41 PM PDT -Thinking-Panda,2024-04-29T22:02:43Z,- Thinking-Panda commented on pull request: [6746](https://github.com/hackforla/website/pull/6746#issuecomment-2083760252) at 2024-04-29 03:02 PM PDT -Thinking-Panda,2024-04-29T22:02:49Z,- Thinking-Panda closed issue by PR 6746: [6700](https://github.com/hackforla/website/issues/6700#event-12649690255) at 2024-04-29 03:02 PM PDT -Thinking-Panda,2024-04-30T18:39:52Z,- Thinking-Panda commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086512461) at 2024-04-30 11:39 AM PDT -Thinking-Panda,2024-04-30T18:41:03Z,- Thinking-Panda submitted pull request review: [6782](https://github.com/hackforla/website/pull/6782#pullrequestreview-2032218655) at 2024-04-30 11:41 AM PDT -Thinking-Panda,2024-04-30T18:43:10Z,- Thinking-Panda commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086529856) at 2024-04-30 11:43 AM PDT -Thinking-Panda,2024-04-30T18:43:16Z,- Thinking-Panda closed issue by PR 6782: [6633](https://github.com/hackforla/website/issues/6633#event-12662432033) at 2024-04-30 11:43 AM PDT -Thinking-Panda,2024-04-30T19:11:22Z,- Thinking-Panda commented on pull request: [6686](https://github.com/hackforla/website/pull/6686#issuecomment-2086691613) at 2024-04-30 12:11 PM PDT -Thinking-Panda,2024-04-30T19:11:32Z,- Thinking-Panda closed issue by PR 6686: [6623](https://github.com/hackforla/website/issues/6623#event-12662740902) at 2024-04-30 12:11 PM PDT -Thinking-Panda,2024-04-30T19:27:53Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2086800878) at 2024-04-30 12:27 PM PDT -Thinking-Panda,2024-05-01T19:53:20Z,- Thinking-Panda submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2034340798) at 2024-05-01 12:53 PM PDT -Thinking-Panda,2024-05-01T20:36:13Z,- Thinking-Panda submitted pull request review: [6777](https://github.com/hackforla/website/pull/6777#pullrequestreview-2034411477) at 2024-05-01 01:36 PM PDT -Thinking-Panda,2024-05-07T19:11:01Z,- Thinking-Panda closed issue by PR 6814: [6703](https://github.com/hackforla/website/issues/6703#event-12734184511) at 2024-05-07 12:11 PM PDT -Thinking-Panda,2024-05-07T19:14:05Z,- Thinking-Panda commented on pull request: [6810](https://github.com/hackforla/website/pull/6810#issuecomment-2099129172) at 2024-05-07 12:14 PM PDT -Thinking-Panda,2024-05-07T19:21:14Z,- Thinking-Panda submitted pull request review: [6810](https://github.com/hackforla/website/pull/6810#pullrequestreview-2043982054) at 2024-05-07 12:21 PM PDT -Thinking-Panda,2024-05-07T19:21:25Z,- Thinking-Panda closed issue by PR 6810: [6762](https://github.com/hackforla/website/issues/6762#event-12734293807) at 2024-05-07 12:21 PM PDT -Thinking-Panda,2024-05-21T18:53:13Z,- Thinking-Panda commented on issue: [6574](https://github.com/hackforla/website/issues/6574#issuecomment-2123248757) at 2024-05-21 11:53 AM PDT -Thinking-Panda,2024-05-21T18:53:44Z,- Thinking-Panda closed issue as completed: [6574](https://github.com/hackforla/website/issues/6574#event-12884210356) at 2024-05-21 11:53 AM PDT -Thinking-Panda,2024-05-22T02:16:35Z,- Thinking-Panda commented on pull request: [6865](https://github.com/hackforla/website/pull/6865#issuecomment-2123746489) at 2024-05-21 07:16 PM PDT -Thinking-Panda,2024-05-22T21:52:29Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2125832527) at 2024-05-22 02:52 PM PDT -Thinking-Panda,2024-05-28T18:04:01Z,- Thinking-Panda assigned to issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2046334879) at 2024-05-28 11:04 AM PDT -Thinking-Panda,2024-05-28T18:04:29Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2135834250) at 2024-05-28 11:04 AM PDT -Thinking-Panda,2024-05-29T02:44:33Z,- Thinking-Panda commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2136416764) at 2024-05-28 07:44 PM PDT -Thinking-Panda,2024-05-29T20:11:23Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2138184758) at 2024-05-29 01:11 PM PDT -Thinking-Panda,2024-05-29T20:17:16Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2138193502) at 2024-05-29 01:17 PM PDT -Thinking-Panda,2024-05-29T20:38:01Z,- Thinking-Panda closed issue by PR 6891: [6734](https://github.com/hackforla/website/issues/6734#event-12977053482) at 2024-05-29 01:38 PM PDT -Thinking-Panda,2024-05-29T20:46:13Z,- Thinking-Panda commented on issue: [6593](https://github.com/hackforla/website/issues/6593#issuecomment-2138235210) at 2024-05-29 01:46 PM PDT -Thinking-Panda,2024-05-29T20:46:13Z,- Thinking-Panda closed issue as completed: [6593](https://github.com/hackforla/website/issues/6593#event-12977127260) at 2024-05-29 01:46 PM PDT -Thinking-Panda,2024-05-31T20:08:57Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2142912885) at 2024-05-31 01:08 PM PDT -Thinking-Panda,2024-05-31T20:19:08Z,- Thinking-Panda opened issue: [6920](https://github.com/hackforla/website/issues/6920) at 2024-05-31 01:19 PM PDT -Thinking-Panda,2024-06-03T18:06:49Z,- Thinking-Panda opened issue: [6930](https://github.com/hackforla/website/issues/6930) at 2024-06-03 11:06 AM PDT -Thinking-Panda,2024-06-03T18:11:33Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2145830271) at 2024-06-03 11:11 AM PDT -Thinking-Panda,2024-06-05T19:07:14Z,- Thinking-Panda commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2150766987) at 2024-06-05 12:07 PM PDT -Thinking-Panda,2024-06-05T19:07:20Z,- Thinking-Panda closed issue by PR 6925: [6725](https://github.com/hackforla/website/issues/6725#event-13056210586) at 2024-06-05 12:07 PM PDT -Thinking-Panda,2024-06-05T20:25:30Z,- Thinking-Panda commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2150905742) at 2024-06-05 01:25 PM PDT -Thinking-Panda,2024-06-05T20:27:03Z,- Thinking-Panda closed issue by PR 6924: [6864](https://github.com/hackforla/website/issues/6864#event-13057117937) at 2024-06-05 01:27 PM PDT -Thinking-Panda,2024-06-07T19:06:37Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2155371380) at 2024-06-07 12:06 PM PDT -Thinking-Panda,2024-06-07T20:36:39Z,- Thinking-Panda submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2105323488) at 2024-06-07 01:36 PM PDT -Thinking-Panda,2024-06-07T22:07:53Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2155634403) at 2024-06-07 03:07 PM PDT -Thinking-Panda,2024-06-10T20:46:38Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2159254384) at 2024-06-10 01:46 PM PDT -Thinking-Panda,2024-06-11T17:24:11Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2161268259) at 2024-06-11 10:24 AM PDT -Thinking-Panda,2024-06-11T18:02:48Z,- Thinking-Panda submitted pull request review: [6983](https://github.com/hackforla/website/pull/6983#pullrequestreview-2111128136) at 2024-06-11 11:02 AM PDT -Thinking-Panda,2024-06-11T18:02:55Z,- Thinking-Panda closed issue by PR 6983: [6936](https://github.com/hackforla/website/issues/6936#event-13120940981) at 2024-06-11 11:02 AM PDT -Thinking-Panda,2024-06-11T18:18:40Z,- Thinking-Panda commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2161354929) at 2024-06-11 11:18 AM PDT -Thinking-Panda,2024-06-11T19:22:50Z,- Thinking-Panda commented on pull request: [6972](https://github.com/hackforla/website/pull/6972#issuecomment-2161456220) at 2024-06-11 12:22 PM PDT -Thinking-Panda,2024-06-11T19:22:58Z,- Thinking-Panda closed issue by PR 6972: [6655](https://github.com/hackforla/website/issues/6655#event-13121767956) at 2024-06-11 12:22 PM PDT -Thinking-Panda,2024-06-12T02:34:35Z,- Thinking-Panda commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2161989966) at 2024-06-11 07:34 PM PDT -Thinking-Panda,2024-06-12T03:36:04Z,- Thinking-Panda commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2162040498) at 2024-06-11 08:36 PM PDT -Thinking-Panda,2024-06-12T03:36:56Z,- Thinking-Panda commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2162041113) at 2024-06-11 08:36 PM PDT -Thinking-Panda,2024-06-12T03:36:56Z,- Thinking-Panda closed issue as completed: [6594](https://github.com/hackforla/website/issues/6594#event-13125413775) at 2024-06-11 08:36 PM PDT -Thinking-Panda,2024-06-12T16:10:49Z,- Thinking-Panda commented on issue: [6750](https://github.com/hackforla/website/issues/6750#issuecomment-2163428113) at 2024-06-12 09:10 AM PDT -Thinking-Panda,2024-06-12T16:10:49Z,- Thinking-Panda closed issue as completed: [6750](https://github.com/hackforla/website/issues/6750#event-13134349469) at 2024-06-12 09:10 AM PDT -Thinking-Panda,2024-06-12T16:34:09Z,- Thinking-Panda commented on issue: [6755](https://github.com/hackforla/website/issues/6755#issuecomment-2163469758) at 2024-06-12 09:34 AM PDT -Thinking-Panda,2024-06-12T16:34:09Z,- Thinking-Panda closed issue as completed: [6755](https://github.com/hackforla/website/issues/6755#event-13134610280) at 2024-06-12 09:34 AM PDT -Thinking-Panda,2024-06-12T17:11:14Z,- Thinking-Panda submitted pull request review: [6985](https://github.com/hackforla/website/pull/6985#pullrequestreview-2113630587) at 2024-06-12 10:11 AM PDT -Thinking-Panda,2024-06-12T17:11:34Z,- Thinking-Panda closed issue by PR 6985: [6910](https://github.com/hackforla/website/issues/6910#event-13135052646) at 2024-06-12 10:11 AM PDT -Thinking-Panda,2024-06-19T19:46:41Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2179374097) at 2024-06-19 12:46 PM PDT -Thinking-Panda,2024-06-25T20:21:45Z,- Thinking-Panda submitted pull request review: [7063](https://github.com/hackforla/website/pull/7063#pullrequestreview-2139777515) at 2024-06-25 01:21 PM PDT -Thinking-Panda,2024-06-25T20:21:58Z,- Thinking-Panda closed issue by PR 7063: [7060](https://github.com/hackforla/website/issues/7060#event-13287463396) at 2024-06-25 01:21 PM PDT -Thinking-Panda,2024-06-25T20:32:04Z,- Thinking-Panda submitted pull request review: [7059](https://github.com/hackforla/website/pull/7059#pullrequestreview-2139795293) at 2024-06-25 01:32 PM PDT -Thinking-Panda,2024-06-25T20:32:12Z,- Thinking-Panda closed issue by PR 7059: [7044](https://github.com/hackforla/website/issues/7044#event-13287574422) at 2024-06-25 01:32 PM PDT -Thinking-Panda,2024-06-25T20:53:54Z,- Thinking-Panda commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2189949178) at 2024-06-25 01:53 PM PDT -Thinking-Panda,2024-06-27T02:43:30Z,- Thinking-Panda commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2193023726) at 2024-06-26 07:43 PM PDT -Thinking-Panda,2024-07-10T20:39:57Z,- Thinking-Panda submitted pull request review: [7052](https://github.com/hackforla/website/pull/7052#pullrequestreview-2170240357) at 2024-07-10 01:39 PM PDT -Thinking-Panda,2024-07-10T20:41:57Z,- Thinking-Panda closed issue by PR 7052: [6787](https://github.com/hackforla/website/issues/6787#event-13462074328) at 2024-07-10 01:41 PM PDT -Thinking-Panda,2024-09-03T18:48:58Z,- Thinking-Panda assigned to issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308941749) at 2024-09-03 11:48 AM PDT -Thinking-Panda,2024-09-03T18:49:38Z,- Thinking-Panda commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2327196158) at 2024-09-03 11:49 AM PDT -Thinking-Panda,2024-09-03T18:56:43Z,- Thinking-Panda opened issue: [7379](https://github.com/hackforla/website/issues/7379) at 2024-09-03 11:56 AM PDT -Thinking-Panda,2024-09-03T19:44:16Z,- Thinking-Panda assigned to issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2060724382) at 2024-09-03 12:44 PM PDT -Thinking-Panda,2024-09-03T19:44:59Z,- Thinking-Panda commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2327299384) at 2024-09-03 12:44 PM PDT -Thinking-Panda,2024-09-04T22:05:02Z,- Thinking-Panda closed issue by PR 7376: [7286](https://github.com/hackforla/website/issues/7286#event-14138080203) at 2024-09-04 03:05 PM PDT -Thinking-Panda,2024-09-04T22:10:41Z,- Thinking-Panda closed issue by PR 7371: [7287](https://github.com/hackforla/website/issues/7287#event-14138152740) at 2024-09-04 03:10 PM PDT -Thinking-Panda,2024-09-04T22:18:07Z,- Thinking-Panda closed issue by PR 7370: [7179](https://github.com/hackforla/website/issues/7179#event-14138224297) at 2024-09-04 03:18 PM PDT -Thinking-Panda,2024-09-04T22:44:06Z,- Thinking-Panda commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2330276656) at 2024-09-04 03:44 PM PDT -Thinking-Panda,2024-09-05T18:37:20Z,- Thinking-Panda commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2332399884) at 2024-09-05 11:37 AM PDT -Thinking-Panda,2024-09-09T19:14:54Z,- Thinking-Panda commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2338890373) at 2024-09-09 12:14 PM PDT -Thinking-Panda,2024-09-11T02:16:13Z,- Thinking-Panda commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2342479503) at 2024-09-10 07:16 PM PDT -Thinking-Panda,2024-09-11T02:23:01Z,- Thinking-Panda commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2342485258) at 2024-09-10 07:23 PM PDT -Thinking-Panda,2024-09-11T02:27:56Z,- Thinking-Panda commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2342489842) at 2024-09-10 07:27 PM PDT -Thinking-Panda,2024-09-11T02:30:21Z,- Thinking-Panda commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2342491813) at 2024-09-10 07:30 PM PDT -Thinking-Panda,2024-09-11T17:23:23Z,- Thinking-Panda commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2344267767) at 2024-09-11 10:23 AM PDT -Thinking-Panda,2024-09-11T17:49:59Z,- Thinking-Panda commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2344319430) at 2024-09-11 10:49 AM PDT -Thinking-Panda,2024-09-11T17:50:06Z,- Thinking-Panda closed issue by PR 7427: [7190](https://github.com/hackforla/website/issues/7190#event-14220457555) at 2024-09-11 10:50 AM PDT -Thinking-Panda,2024-09-18T18:52:05Z,- Thinking-Panda commented on pull request: [7463](https://github.com/hackforla/website/pull/7463#issuecomment-2359185445) at 2024-09-18 11:52 AM PDT -Thinking-Panda,2024-09-18T18:52:39Z,- Thinking-Panda closed issue by PR 7463: [7413](https://github.com/hackforla/website/issues/7413#event-14312283188) at 2024-09-18 11:52 AM PDT -Thinking-Panda,2024-09-18T19:01:57Z,- Thinking-Panda commented on pull request: [7468](https://github.com/hackforla/website/pull/7468#issuecomment-2359202588) at 2024-09-18 12:01 PM PDT -Thinking-Panda,2024-09-18T19:14:08Z,- Thinking-Panda commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2359223122) at 2024-09-18 12:14 PM PDT -Thinking-Panda,2024-09-18T19:14:14Z,- Thinking-Panda closed issue by PR 7462: [7412](https://github.com/hackforla/website/issues/7412#event-14312516777) at 2024-09-18 12:14 PM PDT -Thinking-Panda,2024-09-18T19:19:29Z,- Thinking-Panda commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2359232004) at 2024-09-18 12:19 PM PDT -Thinking-Panda,2024-09-18T19:19:34Z,- Thinking-Panda closed issue by PR 7447: [7410](https://github.com/hackforla/website/issues/7410#event-14312572358) at 2024-09-18 12:19 PM PDT -Thinking-Panda,2024-09-18T20:25:06Z,- Thinking-Panda submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2313721968) at 2024-09-18 01:25 PM PDT -Thinking-Panda,2024-09-24T00:20:47Z,- Thinking-Panda commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2369836784) at 2024-09-23 05:20 PM PDT -Thinking-Panda,2024-09-24T19:39:08Z,- Thinking-Panda submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2326278667) at 2024-09-24 12:39 PM PDT -Thinking-Panda,2024-09-24T20:09:57Z,- Thinking-Panda commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2372275423) at 2024-09-24 01:09 PM PDT -Thinking-Panda,2024-09-24T20:10:04Z,- Thinking-Panda closed issue by PR 7496: [7093](https://github.com/hackforla/website/issues/7093#event-14387939245) at 2024-09-24 01:10 PM PDT -Thinking-Panda,2024-10-08T20:43:30Z,- Thinking-Panda commented on pull request: [7568](https://github.com/hackforla/website/pull/7568#issuecomment-2400785845) at 2024-10-08 01:43 PM PDT -Thinking-Panda,2024-10-08T20:43:42Z,- Thinking-Panda closed issue by PR 7568: [7566](https://github.com/hackforla/website/issues/7566#event-14562668496) at 2024-10-08 01:43 PM PDT -Thinking-Panda,2024-10-08T21:08:26Z,- Thinking-Panda closed issue by PR 7558: [7442](https://github.com/hackforla/website/issues/7442#event-14562902237) at 2024-10-08 02:08 PM PDT -Thinking-Panda,2024-10-22T20:07:59Z,- Thinking-Panda commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2430156634) at 2024-10-22 01:07 PM PDT -Thinking-Panda,2024-10-29T19:27:22Z,- Thinking-Panda commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2445146730) at 2024-10-29 12:27 PM PDT -Thinking-Panda,2024-10-29T19:27:29Z,- Thinking-Panda closed issue by PR 7639: [7542](https://github.com/hackforla/website/issues/7542#event-14990258566) at 2024-10-29 12:27 PM PDT -Thinking-Panda,2024-10-30T02:28:17Z,- Thinking-Panda commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2445692812) at 2024-10-29 07:28 PM PDT -Thinking-Panda,2025-03-16T22:50:54Z,- Thinking-Panda unassigned from issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2492717099) at 2025-03-16 03:50 PM PDT -this-journey,4976,SKILLS ISSUE -this-journey,2023-07-18T01:54:56Z,- this-journey opened issue: [4976](https://github.com/hackforla/website/issues/4976) at 2023-07-17 06:54 PM PDT -this-journey,2023-07-18T02:30:04Z,- this-journey assigned to issue: [4976](https://github.com/hackforla/website/issues/4976) at 2023-07-17 07:30 PM PDT -thisisdientran,6116,SKILLS ISSUE -thisisdientran,2024-01-17T03:43:51Z,- thisisdientran opened issue: [6116](https://github.com/hackforla/website/issues/6116) at 2024-01-16 07:43 PM PST -thisisdientran,2024-01-17T03:44:24Z,- thisisdientran assigned to issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1894889344) at 2024-01-16 07:44 PM PST -thisisdientran,2024-01-17T05:24:25Z,- thisisdientran assigned to issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1891077439) at 2024-01-16 09:24 PM PST -thisisdientran,2024-01-17T05:27:49Z,- thisisdientran assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1763726158) at 2024-01-16 09:27 PM PST -thisisdientran,2024-01-17T05:30:00Z,- thisisdientran commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1894968095) at 2024-01-16 09:30 PM PST -thisisdientran,2024-01-24T00:51:05Z,- thisisdientran commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1907163198) at 2024-01-23 04:51 PM PST -thisisdientran,2024-01-26T07:16:34Z,- thisisdientran commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1911594050) at 2024-01-25 11:16 PM PST -thisisdientran,2024-02-04T18:11:24Z,- thisisdientran commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1925869172) at 2024-02-04 10:11 AM PST -thisisdientran,2024-02-21T19:25:16Z,- thisisdientran unassigned from issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1957748732) at 2024-02-21 11:25 AM PST -thisisdientran,2024-02-28T23:32:06Z,- thisisdientran unassigned from issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-02-28 03:32 PM PST -thomasdemoner,2022-05-12T22:31:51Z,- thomasdemoner opened issue: [3135](https://github.com/hackforla/website/issues/3135) at 2022-05-12 03:31 PM PDT -thomasdemoner,2022-05-12T22:45:06Z,- thomasdemoner commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1125484834) at 2022-05-12 03:45 PM PDT -thomasnguyens,7625,SKILLS ISSUE -thomasnguyens,2024-10-23T03:11:47Z,- thomasnguyens opened issue: [7625](https://github.com/hackforla/website/issues/7625) at 2024-10-22 08:11 PM PDT -thomasnguyens,2024-10-23T03:11:56Z,- thomasnguyens assigned to issue: [7625](https://github.com/hackforla/website/issues/7625) at 2024-10-22 08:11 PM PDT -tiffany-wong,2022-06-14T04:00:06Z,- tiffany-wong opened issue: [3247](https://github.com/hackforla/website/issues/3247) at 2022-06-13 09:00 PM PDT -tiffanyux,2019-05-27T20:44:40Z,- tiffanyux assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-27 01:44 PM PDT -tiffanyux,2020-01-07T03:44:01Z,- tiffanyux closed issue as completed: [103](https://github.com/hackforla/website/issues/103#event-2926318142) at 2020-01-06 07:44 PM PST -tiffchannn,5071,SKILLS ISSUE -tiffchannn,2023-07-26T03:00:22Z,- tiffchannn opened issue: [5071](https://github.com/hackforla/website/issues/5071) at 2023-07-25 08:00 PM PDT -tiffchannn,2023-07-26T03:00:34Z,- tiffchannn assigned to issue: [5071](https://github.com/hackforla/website/issues/5071) at 2023-07-25 08:00 PM PDT -tiffchannn,2023-07-26T22:01:39Z,- tiffchannn assigned to issue: [4806](https://github.com/hackforla/website/issues/4806) at 2023-07-26 03:01 PM PDT -tiffchannn,2023-07-27T19:34:51Z,- tiffchannn commented on issue: [4806](https://github.com/hackforla/website/issues/4806#issuecomment-1654422193) at 2023-07-27 12:34 PM PDT -tiffchannn,2023-07-28T18:01:00Z,- tiffchannn commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1656114369) at 2023-07-28 11:01 AM PDT -tiffchannn,2023-07-28T18:15:22Z,- tiffchannn commented on issue: [4806](https://github.com/hackforla/website/issues/4806#issuecomment-1656136227) at 2023-07-28 11:15 AM PDT -tiffchannn,2023-07-28T18:35:56Z,- tiffchannn opened pull request: [5108](https://github.com/hackforla/website/pull/5108) at 2023-07-28 11:35 AM PDT -tiffchannn,2023-07-30T16:28:48Z,- tiffchannn pull request merged: [5108](https://github.com/hackforla/website/pull/5108#event-9957044279) at 2023-07-30 09:28 AM PDT -timmalstead,2020-03-28T21:43:39Z,- timmalstead commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-605523506) at 2020-03-28 02:43 PM PDT -TJameel120,4637,SKILLS ISSUE -TJameel120,2023-05-09T04:16:13Z,- TJameel120 opened issue: [4637](https://github.com/hackforla/website/issues/4637) at 2023-05-08 09:16 PM PDT -TJameel120,2023-05-09T04:16:14Z,- TJameel120 assigned to issue: [4637](https://github.com/hackforla/website/issues/4637) at 2023-05-08 09:16 PM PDT -TJameel120,2023-05-21T18:48:12Z,- TJameel120 assigned to issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556190845) at 2023-05-21 11:48 AM PDT -TJameel120,2023-05-21T18:50:14Z,- TJameel120 commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556258065) at 2023-05-21 11:50 AM PDT -TJameel120,2023-06-11T17:59:11Z,- TJameel120 unassigned from issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586262316) at 2023-06-11 10:59 AM PDT -tkozek,5225,SKILLS ISSUE -tkozek,2023-08-15T03:38:50Z,- tkozek opened issue: [5225](https://github.com/hackforla/website/issues/5225) at 2023-08-14 08:38 PM PDT -tkozek,2023-08-15T03:39:01Z,- tkozek assigned to issue: [5225](https://github.com/hackforla/website/issues/5225) at 2023-08-14 08:39 PM PDT -tkozek,2023-08-20T17:22:55Z,- tkozek assigned to issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1622211652) at 2023-08-20 10:22 AM PDT -tkozek,2023-08-20T17:51:12Z,- tkozek unassigned from issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1685346382) at 2023-08-20 10:51 AM PDT -tkozek,2023-08-20T18:01:38Z,- tkozek assigned to issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1685225711) at 2023-08-20 11:01 AM PDT -tkozek,2023-08-26T01:31:30Z,- tkozek commented on issue: [5225](https://github.com/hackforla/website/issues/5225#issuecomment-1694103910) at 2023-08-25 06:31 PM PDT -tkozek,2023-08-26T01:34:31Z,- tkozek assigned to issue: [5307](https://github.com/hackforla/website/issues/5307) at 2023-08-25 06:34 PM PDT -tkozek,2023-08-26T01:35:26Z,- tkozek commented on issue: [5307](https://github.com/hackforla/website/issues/5307#issuecomment-1694104791) at 2023-08-25 06:35 PM PDT -tkozek,2023-09-04T01:46:21Z,- tkozek commented on issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1704500660) at 2023-09-03 06:46 PM PDT -tkozek,2023-09-04T02:18:49Z,- tkozek closed issue as completed: [5225](https://github.com/hackforla/website/issues/5225#event-10268560292) at 2023-09-03 07:18 PM PDT -tkozek,2023-09-04T18:30:14Z,- tkozek opened pull request: [5442](https://github.com/hackforla/website/pull/5442) at 2023-09-04 11:30 AM PDT -tkozek,2023-09-06T18:54:23Z,- tkozek commented on pull request: [5442](https://github.com/hackforla/website/pull/5442#issuecomment-1708921239) at 2023-09-06 11:54 AM PDT -tkozek,2023-09-06T23:27:50Z,- tkozek pull request merged: [5442](https://github.com/hackforla/website/pull/5442#event-10301341757) at 2023-09-06 04:27 PM PDT -tkozek,2023-10-03T00:44:29Z,- tkozek assigned to issue: [5619](https://github.com/hackforla/website/issues/5619) at 2023-10-02 05:44 PM PDT -tkozek,2023-10-03T17:22:36Z,- tkozek commented on issue: [5619](https://github.com/hackforla/website/issues/5619#issuecomment-1745410580) at 2023-10-03 10:22 AM PDT -tkozek,2023-10-05T18:35:16Z,- tkozek opened pull request: [5665](https://github.com/hackforla/website/pull/5665) at 2023-10-05 11:35 AM PDT -tkozek,2023-10-05T18:35:49Z,- tkozek pull request merged: [5665](https://github.com/hackforla/website/pull/5665#event-10567259624) at 2023-10-05 11:35 AM PDT -tkozek,2023-10-05T18:37:32Z,- tkozek reopened pull request: [5665](https://github.com/hackforla/website/pull/5665#issuecomment-1749444408) at 2023-10-05 11:37 AM PDT -tkozek,2023-10-08T03:24:14Z,- tkozek assigned to issue: [5617](https://github.com/hackforla/website/issues/5617) at 2023-10-07 08:24 PM PDT -tkozek,2023-10-08T19:02:21Z,- tkozek commented on issue: [5617](https://github.com/hackforla/website/issues/5617#issuecomment-1752132693) at 2023-10-08 12:02 PM PDT -tkozek,2023-10-08T19:14:09Z,- tkozek opened pull request: [5682](https://github.com/hackforla/website/pull/5682) at 2023-10-08 12:14 PM PDT -tkozek,2023-10-09T04:10:20Z,- tkozek pull request merged: [5665](https://github.com/hackforla/website/pull/5665#event-10586486323) at 2023-10-08 09:10 PM PDT -tkozek,2023-10-09T18:59:18Z,- tkozek assigned to issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1740636251) at 2023-10-09 11:59 AM PDT -tkozek,2023-10-09T19:00:29Z,- tkozek commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1753504642) at 2023-10-09 12:00 PM PDT -tkozek,2023-10-14T23:11:41Z,- tkozek pull request merged: [5682](https://github.com/hackforla/website/pull/5682#event-10656092870) at 2023-10-14 04:11 PM PDT -tkozek,2023-10-19T03:38:42Z,- tkozek commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1769840011) at 2023-10-18 08:38 PM PDT -tkozek,2024-01-28T22:43:41Z,- tkozek unassigned from issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1913746149) at 2024-01-28 02:43 PM PST -tkubota31,4964,SKILLS ISSUE -tkubota31,2023-07-18T01:32:44Z,- tkubota31 opened issue: [4964](https://github.com/hackforla/website/issues/4964) at 2023-07-17 06:32 PM PDT -tkubota31,2023-07-18T02:30:01Z,- tkubota31 assigned to issue: [4964](https://github.com/hackforla/website/issues/4964) at 2023-07-17 07:30 PM PDT -tkubota31,2023-08-01T01:00:54Z,- tkubota31 assigned to issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659149384) at 2023-07-31 06:00 PM PDT -tkubota31,2023-08-01T01:03:58Z,- tkubota31 unassigned from issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659410160) at 2023-07-31 06:03 PM PDT -tkubota31,2023-08-01T01:05:12Z,- tkubota31 assigned to issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1654718912) at 2023-07-31 06:05 PM PDT -tkubota31,2023-08-01T01:07:10Z,- tkubota31 commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1659414071) at 2023-07-31 06:07 PM PDT -tkubota31,2023-08-04T01:23:30Z,- tkubota31 opened pull request: [5135](https://github.com/hackforla/website/pull/5135) at 2023-08-03 06:23 PM PDT -tkubota31,2023-08-16T19:11:44Z,- tkubota31 closed issue by PR 5283: [5199](https://github.com/hackforla/website/issues/5199#event-10111899727) at 2023-08-16 12:11 PM PDT -tkubota31,2023-08-16T19:12:00Z,- tkubota31 reopened issue: [5199](https://github.com/hackforla/website/issues/5199#event-10111899727) at 2023-08-16 12:12 PM PDT -tkubota31,2023-08-18T02:45:47Z,- tkubota31 pull request merged: [5135](https://github.com/hackforla/website/pull/5135#event-10125432580) at 2023-08-17 07:45 PM PDT -tmax818,2020-02-25T04:25:15Z,- tmax818 opened pull request: [324](https://github.com/hackforla/website/pull/324) at 2020-02-24 08:25 PM PST -tmax818,2020-02-25T04:32:49Z,- tmax818 pull request merged: [324](https://github.com/hackforla/website/pull/324#event-3067929506) at 2020-02-24 08:32 PM PST -tmax818,2020-02-25T04:35:55Z,- tmax818 assigned to issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584805202) at 2020-02-24 08:35 PM PST -tmax818,2020-02-25T04:56:36Z,- tmax818 assigned to issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-587186656) at 2020-02-24 08:56 PM PST -tmax818,2020-02-25T06:29:42Z,- tmax818 opened pull request: [325](https://github.com/hackforla/website/pull/325) at 2020-02-24 10:29 PM PST -tmax818,2020-02-25T20:53:31Z,- tmax818 unassigned from issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-587186656) at 2020-02-25 12:53 PM PST -tmax818,2020-03-12T02:53:17Z,- tmax818 unassigned from issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-590679408) at 2020-03-11 07:53 PM PDT -tmax818,2020-03-12T19:06:45Z,- tmax818 pull request closed w/o merging: [325](https://github.com/hackforla/website/pull/325#event-3124152490) at 2020-03-12 12:06 PM PDT -Tomomi-K1,4971,SKILLS ISSUE -Tomomi-K1,2023-07-18T01:53:33Z,- Tomomi-K1 opened issue: [4971](https://github.com/hackforla/website/issues/4971) at 2023-07-17 06:53 PM PDT -Tomomi-K1,2023-07-18T02:32:17Z,- Tomomi-K1 assigned to issue: [4971](https://github.com/hackforla/website/issues/4971) at 2023-07-17 07:32 PM PDT -Tomomi-K1,2023-07-26T02:54:14Z,- Tomomi-K1 assigned to issue: [4798](https://github.com/hackforla/website/issues/4798) at 2023-07-25 07:54 PM PDT -Tomomi-K1,2023-07-26T04:17:24Z,- Tomomi-K1 opened pull request: [5093](https://github.com/hackforla/website/pull/5093) at 2023-07-25 09:17 PM PDT -Tomomi-K1,2023-07-26T04:55:57Z,- Tomomi-K1 commented on issue: [4798](https://github.com/hackforla/website/issues/4798#issuecomment-1650980083) at 2023-07-25 09:55 PM PDT -Tomomi-K1,2023-07-26T04:57:01Z,- Tomomi-K1 commented on issue: [4971](https://github.com/hackforla/website/issues/4971#issuecomment-1650980792) at 2023-07-25 09:57 PM PDT -Tomomi-K1,2023-07-27T18:34:38Z,- Tomomi-K1 commented on pull request: [5093](https://github.com/hackforla/website/pull/5093#issuecomment-1654206829) at 2023-07-27 11:34 AM PDT -Tomomi-K1,2023-07-29T11:01:10Z,- Tomomi-K1 pull request merged: [5093](https://github.com/hackforla/website/pull/5093#event-9954289118) at 2023-07-29 04:01 AM PDT -Tomomi-K1,2023-07-29T23:23:35Z,- Tomomi-K1 commented on pull request: [5093](https://github.com/hackforla/website/pull/5093#issuecomment-1656956350) at 2023-07-29 04:23 PM PDT -Tomomi-K1,2023-08-04T22:48:16Z,- Tomomi-K1 commented on issue: [4971](https://github.com/hackforla/website/issues/4971#issuecomment-1666250239) at 2023-08-04 03:48 PM PDT -Tomomi-K1,2023-08-05T02:12:28Z,- Tomomi-K1 assigned to issue: [5138](https://github.com/hackforla/website/issues/5138) at 2023-08-04 07:12 PM PDT -Tomomi-K1,2023-08-05T02:13:45Z,- Tomomi-K1 commented on issue: [5138](https://github.com/hackforla/website/issues/5138#issuecomment-1666352114) at 2023-08-04 07:13 PM PDT -Tomomi-K1,2023-08-05T03:09:53Z,- Tomomi-K1 opened pull request: [5145](https://github.com/hackforla/website/pull/5145) at 2023-08-04 08:09 PM PDT -Tomomi-K1,2023-08-06T02:36:53Z,- Tomomi-K1 pull request merged: [5145](https://github.com/hackforla/website/pull/5145#event-10016436820) at 2023-08-05 07:36 PM PDT -Tomomi-K1,2023-08-07T22:52:17Z,- Tomomi-K1 assigned to issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1641392859) at 2023-08-07 03:52 PM PDT -Tomomi-K1,2023-08-07T22:53:06Z,- Tomomi-K1 commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1668675348) at 2023-08-07 03:53 PM PDT -Tomomi-K1,2023-08-07T23:28:44Z,- Tomomi-K1 commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1668701208) at 2023-08-07 04:28 PM PDT -Tomomi-K1,2023-08-10T19:38:29Z,- Tomomi-K1 commented on issue: [4971](https://github.com/hackforla/website/issues/4971#issuecomment-1673804247) at 2023-08-10 12:38 PM PDT -Tomomi-K1,2023-08-13T18:09:56Z,- Tomomi-K1 closed issue as completed: [4971](https://github.com/hackforla/website/issues/4971#event-10080332575) at 2023-08-13 11:09 AM PDT -Tomomi-K1,2023-08-13T18:56:53Z,- Tomomi-K1 commented on pull request: [5170](https://github.com/hackforla/website/pull/5170#issuecomment-1676436602) at 2023-08-13 11:56 AM PDT -Tomomi-K1,2023-08-13T20:07:11Z,- Tomomi-K1 submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1575886105) at 2023-08-13 01:07 PM PDT -Tomomi-K1,2023-08-14T03:10:54Z,- Tomomi-K1 submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1576001069) at 2023-08-13 08:10 PM PDT -Tomomi-K1,2023-08-14T07:43:00Z,- Tomomi-K1 commented on issue: [4798](https://github.com/hackforla/website/issues/4798#issuecomment-1676833760) at 2023-08-14 12:43 AM PDT -Tomomi-K1,2023-08-23T20:28:42Z,- Tomomi-K1 commented on pull request: [5294](https://github.com/hackforla/website/pull/5294#issuecomment-1690593527) at 2023-08-23 01:28 PM PDT -Tomomi-K1,2023-08-23T20:57:22Z,- Tomomi-K1 submitted pull request review: [5294](https://github.com/hackforla/website/pull/5294#pullrequestreview-1592399498) at 2023-08-23 01:57 PM PDT -Tomomi-K1,2023-09-12T22:11:07Z,- Tomomi-K1 commented on pull request: [5510](https://github.com/hackforla/website/pull/5510#issuecomment-1716577851) at 2023-09-12 03:11 PM PDT -Tomomi-K1,2023-09-12T22:24:55Z,- Tomomi-K1 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1623287511) at 2023-09-12 03:24 PM PDT -Tomomi-K1,2023-09-17T08:08:52Z,- Tomomi-K1 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1630053050) at 2023-09-17 01:08 AM PDT -Tomomi-K1,2023-09-26T23:54:04Z,- Tomomi-K1 commented on pull request: [5586](https://github.com/hackforla/website/pull/5586#issuecomment-1736454374) at 2023-09-26 04:54 PM PDT -Tomomi-K1,2023-09-27T00:00:08Z,- Tomomi-K1 submitted pull request review: [5586](https://github.com/hackforla/website/pull/5586#pullrequestreview-1645362311) at 2023-09-26 05:00 PM PDT -Tomomi-K1,2023-10-04T00:58:14Z,- Tomomi-K1 assigned to issue: [5631](https://github.com/hackforla/website/issues/5631#issuecomment-1740630155) at 2023-10-03 05:58 PM PDT -Tomomi-K1,2023-10-04T01:00:14Z,- Tomomi-K1 commented on issue: [5631](https://github.com/hackforla/website/issues/5631#issuecomment-1745968630) at 2023-10-03 06:00 PM PDT -Tomomi-K1,2023-10-04T01:48:29Z,- Tomomi-K1 opened pull request: [5659](https://github.com/hackforla/website/pull/5659) at 2023-10-03 06:48 PM PDT -Tomomi-K1,2023-10-08T09:15:40Z,- Tomomi-K1 pull request merged: [5659](https://github.com/hackforla/website/pull/5659#event-10583640378) at 2023-10-08 02:15 AM PDT -Tomomi-K1,2023-10-17T23:56:32Z,- Tomomi-K1 commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1767372376) at 2023-10-17 04:56 PM PDT -Tomomi-K1,2023-10-18T02:50:58Z,- Tomomi-K1 submitted pull request review: [5732](https://github.com/hackforla/website/pull/5732#pullrequestreview-1683827754) at 2023-10-17 07:50 PM PDT -Tomomi-K1,2023-10-19T04:01:17Z,- Tomomi-K1 submitted pull request review: [5732](https://github.com/hackforla/website/pull/5732#pullrequestreview-1686615170) at 2023-10-18 09:01 PM PDT -Tomomi-K1,2023-10-31T19:56:25Z,- Tomomi-K1 submitted pull request review: [5811](https://github.com/hackforla/website/pull/5811#pullrequestreview-1707139983) at 2023-10-31 12:56 PM PDT -Tomomi-K1,2023-10-31T22:43:18Z,- Tomomi-K1 commented on pull request: [5811](https://github.com/hackforla/website/pull/5811#issuecomment-1788134807) at 2023-10-31 03:43 PM PDT -Tomomi-K1,2023-11-01T23:49:19Z,- Tomomi-K1 submitted pull request review: [5811](https://github.com/hackforla/website/pull/5811#pullrequestreview-1709234843) at 2023-11-01 04:49 PM PDT -Tomomi-K1,2023-11-08T02:54:44Z,- Tomomi-K1 submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1719233976) at 2023-11-07 06:54 PM PST -Tomomi-K1,2023-11-13T03:58:23Z,- Tomomi-K1 submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1726515135) at 2023-11-12 07:58 PM PST -Tomomi-K1,2023-12-02T21:41:34Z,- Tomomi-K1 commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1837260238) at 2023-12-02 01:41 PM PST -Tomomi-K1,2023-12-02T21:48:43Z,- Tomomi-K1 submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1760973394) at 2023-12-02 01:48 PM PST -Tomomi-K1,2023-12-02T22:45:59Z,- Tomomi-K1 submitted pull request review: [5947](https://github.com/hackforla/website/pull/5947#pullrequestreview-1760987153) at 2023-12-02 02:45 PM PST -Tomomi-K1,2023-12-03T19:21:20Z,- Tomomi-K1 commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1837574272) at 2023-12-03 11:21 AM PST -Tomomi-K1,2023-12-12T02:44:43Z,- Tomomi-K1 submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1776500257) at 2023-12-11 06:44 PM PST -Tomomi-K1,2023-12-12T02:53:01Z,- Tomomi-K1 submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1776506229) at 2023-12-11 06:53 PM PST -Tomomi-K1,2023-12-12T02:53:44Z,- Tomomi-K1 commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1851220643) at 2023-12-11 06:53 PM PST -Tomomi-K1,2023-12-18T03:35:45Z,- Tomomi-K1 submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1785794793) at 2023-12-17 07:35 PM PST -Tony-Hsieh,4621,SKILLS ISSUE -Tony-Hsieh,2023-05-09T03:28:18Z,- Tony-Hsieh opened issue: [4621](https://github.com/hackforla/website/issues/4621) at 2023-05-08 08:28 PM PDT -Tony-Hsieh,2023-05-09T04:00:20Z,- Tony-Hsieh assigned to issue: [4621](https://github.com/hackforla/website/issues/4621) at 2023-05-08 09:00 PM PDT -tony1ee,6606,SKILLS ISSUE -tony1ee,2024-04-09T03:15:02Z,- tony1ee opened issue: [6606](https://github.com/hackforla/website/issues/6606) at 2024-04-08 08:15 PM PDT -tony1ee,2024-04-09T03:15:29Z,- tony1ee assigned to issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2044079141) at 2024-04-08 08:15 PM PDT -tony1ee,2024-04-09T19:03:08Z,- tony1ee assigned to issue: [6513](https://github.com/hackforla/website/issues/6513#issuecomment-2016947626) at 2024-04-09 12:03 PM PDT -tony1ee,2024-04-09T19:07:57Z,- tony1ee commented on issue: [6513](https://github.com/hackforla/website/issues/6513#issuecomment-2045889089) at 2024-04-09 12:07 PM PDT -tony1ee,2024-04-09T19:28:50Z,- tony1ee commented on issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2045916793) at 2024-04-09 12:28 PM PDT -tony1ee,2024-04-09T19:51:57Z,- tony1ee opened pull request: [6612](https://github.com/hackforla/website/pull/6612) at 2024-04-09 12:51 PM PDT -tony1ee,2024-04-10T19:39:12Z,- tony1ee commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2048304390) at 2024-04-10 12:39 PM PDT -tony1ee,2024-04-11T23:44:08Z,- tony1ee pull request merged: [6612](https://github.com/hackforla/website/pull/6612#event-12442778415) at 2024-04-11 04:44 PM PDT -tony1ee,2024-04-12T00:07:10Z,- tony1ee assigned to issue: [6176](https://github.com/hackforla/website/issues/6176) at 2024-04-11 05:07 PM PDT -tony1ee,2024-04-12T00:10:15Z,- tony1ee commented on issue: [6176](https://github.com/hackforla/website/issues/6176#issuecomment-2050746372) at 2024-04-11 05:10 PM PDT -tony1ee,2024-04-12T00:52:54Z,- tony1ee opened pull request: [6627](https://github.com/hackforla/website/pull/6627) at 2024-04-11 05:52 PM PDT -tony1ee,2024-04-13T07:15:10Z,- tony1ee commented on pull request: [6630](https://github.com/hackforla/website/pull/6630#issuecomment-2053553795) at 2024-04-13 12:15 AM PDT -tony1ee,2024-04-13T07:56:04Z,- tony1ee submitted pull request review: [6630](https://github.com/hackforla/website/pull/6630#pullrequestreview-1999181950) at 2024-04-13 12:56 AM PDT -tony1ee,2024-04-13T08:14:48Z,- tony1ee commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053568566) at 2024-04-13 01:14 AM PDT -tony1ee,2024-04-13T08:46:53Z,- tony1ee submitted pull request review: [6617](https://github.com/hackforla/website/pull/6617#pullrequestreview-1999193118) at 2024-04-13 01:46 AM PDT -tony1ee,2024-04-13T19:47:01Z,- tony1ee commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053742106) at 2024-04-13 12:47 PM PDT -tony1ee,2024-04-13T19:57:49Z,- tony1ee commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053744136) at 2024-04-13 12:57 PM PDT -tony1ee,2024-04-13T20:04:02Z,- tony1ee commented on pull request: [6635](https://github.com/hackforla/website/pull/6635#issuecomment-2053745271) at 2024-04-13 01:04 PM PDT -tony1ee,2024-04-13T20:14:33Z,- tony1ee submitted pull request review: [6635](https://github.com/hackforla/website/pull/6635#pullrequestreview-1999344936) at 2024-04-13 01:14 PM PDT -tony1ee,2024-04-14T16:47:17Z,- tony1ee pull request merged: [6627](https://github.com/hackforla/website/pull/6627#event-12460816947) at 2024-04-14 09:47 AM PDT -tony1ee,2024-04-14T16:56:01Z,- tony1ee assigned to issue: [6497](https://github.com/hackforla/website/issues/6497) at 2024-04-14 09:56 AM PDT -tony1ee,2024-04-14T16:58:15Z,- tony1ee commented on issue: [6497](https://github.com/hackforla/website/issues/6497#issuecomment-2054121315) at 2024-04-14 09:58 AM PDT -tony1ee,2024-04-14T23:37:13Z,- tony1ee commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2054222449) at 2024-04-14 04:37 PM PDT -tony1ee,2024-04-14T23:50:30Z,- tony1ee commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2054226413) at 2024-04-14 04:50 PM PDT -tony1ee,2024-04-15T01:09:20Z,- tony1ee submitted pull request review: [6646](https://github.com/hackforla/website/pull/6646#pullrequestreview-1999797926) at 2024-04-14 06:09 PM PDT -tony1ee,2024-04-15T01:11:26Z,- tony1ee commented on pull request: [6647](https://github.com/hackforla/website/pull/6647#issuecomment-2054265325) at 2024-04-14 06:11 PM PDT -tony1ee,2024-04-15T01:34:18Z,- tony1ee submitted pull request review: [6647](https://github.com/hackforla/website/pull/6647#pullrequestreview-1999810141) at 2024-04-14 06:34 PM PDT -tony1ee,2024-04-15T18:11:08Z,- tony1ee opened issue: [6650](https://github.com/hackforla/website/issues/6650) at 2024-04-15 11:11 AM PDT -tony1ee,2024-04-15T18:21:14Z,- tony1ee commented on issue: [6650](https://github.com/hackforla/website/issues/6650#issuecomment-2057539375) at 2024-04-15 11:21 AM PDT -tony1ee,2024-04-15T18:41:10Z,- tony1ee commented on issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2057573313) at 2024-04-15 11:41 AM PDT -tony1ee,2024-04-15T18:41:10Z,- tony1ee closed issue as completed: [6606](https://github.com/hackforla/website/issues/6606#event-12475591437) at 2024-04-15 11:41 AM PDT -tony1ee,2024-04-18T00:52:59Z,- tony1ee submitted pull request review: [6617](https://github.com/hackforla/website/pull/6617#pullrequestreview-2007613930) at 2024-04-17 05:52 PM PDT -tony1ee,2024-04-18T20:05:21Z,- tony1ee commented on pull request: [6659](https://github.com/hackforla/website/pull/6659#issuecomment-2065182516) at 2024-04-18 01:05 PM PDT -tony1ee,2024-04-19T07:06:07Z,- tony1ee submitted pull request review: [6659](https://github.com/hackforla/website/pull/6659#pullrequestreview-2010677660) at 2024-04-19 12:06 AM PDT -tony1ee,2024-04-19T07:48:56Z,- tony1ee opened issue: [6687](https://github.com/hackforla/website/issues/6687) at 2024-04-19 12:48 AM PDT -tony1ee,2024-04-19T23:55:38Z,- tony1ee commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2067404485) at 2024-04-19 04:55 PM PDT -tony1ee,2024-04-20T02:06:15Z,- tony1ee opened issue: [6689](https://github.com/hackforla/website/issues/6689) at 2024-04-19 07:06 PM PDT -tony1ee,2024-04-20T02:07:21Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067513439) at 2024-04-19 07:07 PM PDT -tony1ee,2024-04-20T02:21:12Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067517063) at 2024-04-19 07:21 PM PDT -tony1ee,2024-04-20T02:25:38Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067518075) at 2024-04-19 07:25 PM PDT -tony1ee,2024-04-20T02:41:03Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067521478) at 2024-04-19 07:41 PM PDT -tony1ee,2024-04-20T03:04:44Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067527075) at 2024-04-19 08:04 PM PDT -tony1ee,2024-04-20T03:11:02Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067528613) at 2024-04-19 08:11 PM PDT -tony1ee,2024-04-20T04:00:37Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067539573) at 2024-04-19 09:00 PM PDT -tony1ee,2024-04-23T01:50:50Z,- tony1ee commented on pull request: [6711](https://github.com/hackforla/website/pull/6711#issuecomment-2071263922) at 2024-04-22 06:50 PM PDT -tony1ee,2024-04-23T05:15:27Z,- tony1ee submitted pull request review: [6711](https://github.com/hackforla/website/pull/6711#pullrequestreview-2016253108) at 2024-04-22 10:15 PM PDT -tony1ee,2024-04-25T20:49:51Z,- tony1ee assigned to issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2067943170) at 2024-04-25 01:49 PM PDT -tony1ee,2024-04-25T20:52:43Z,- tony1ee commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2078155926) at 2024-04-25 01:52 PM PDT -tony1ee,2024-04-25T21:00:57Z,- tony1ee opened issue: [6759](https://github.com/hackforla/website/issues/6759) at 2024-04-25 02:00 PM PDT -tony1ee,2024-04-25T21:11:54Z,- tony1ee opened issue: [6760](https://github.com/hackforla/website/issues/6760) at 2024-04-25 02:11 PM PDT -tony1ee,2024-04-25T21:14:51Z,- tony1ee opened issue: [6761](https://github.com/hackforla/website/issues/6761) at 2024-04-25 02:14 PM PDT -tony1ee,2024-04-25T21:16:57Z,- tony1ee opened issue: [6762](https://github.com/hackforla/website/issues/6762) at 2024-04-25 02:16 PM PDT -tony1ee,2024-04-25T21:19:00Z,- tony1ee opened issue: [6763](https://github.com/hackforla/website/issues/6763) at 2024-04-25 02:19 PM PDT -tony1ee,2024-04-25T21:42:46Z,- tony1ee commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2078223037) at 2024-04-25 02:42 PM PDT -tony1ee,2024-04-27T00:34:45Z,- tony1ee opened issue: [6771](https://github.com/hackforla/website/issues/6771) at 2024-04-26 05:34 PM PDT -tony1ee,2024-04-27T00:37:48Z,- tony1ee commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2080270494) at 2024-04-26 05:37 PM PDT -tony1ee,2024-04-27T19:57:24Z,- tony1ee assigned to issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2079018809) at 2024-04-27 12:57 PM PDT -tony1ee,2024-04-27T19:58:59Z,- tony1ee commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2081165986) at 2024-04-27 12:58 PM PDT -tony1ee,2024-04-28T05:42:31Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081341318) at 2024-04-27 10:42 PM PDT -tony1ee,2024-04-28T06:02:57Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081346746) at 2024-04-27 11:02 PM PDT -tony1ee,2024-04-28T06:23:55Z,- tony1ee assigned to issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081346746) at 2024-04-27 11:23 PM PDT -tony1ee,2024-04-28T06:26:01Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081353117) at 2024-04-27 11:26 PM PDT -tony1ee,2024-04-28T07:03:55Z,- tony1ee opened issue: [6775](https://github.com/hackforla/website/issues/6775) at 2024-04-28 12:03 AM PDT -tony1ee,2024-04-28T07:36:15Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2081373438) at 2024-04-28 12:36 AM PDT -tony1ee,2024-04-28T16:27:30Z,- tony1ee commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081541134) at 2024-04-28 09:27 AM PDT -tony1ee,2024-04-28T17:05:27Z,- tony1ee assigned to issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081541134) at 2024-04-28 10:05 AM PDT -tony1ee,2024-04-28T18:18:12Z,- tony1ee commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081585418) at 2024-04-28 11:18 AM PDT -tony1ee,2024-04-28T19:48:12Z,- tony1ee commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081630841) at 2024-04-28 12:48 PM PDT -tony1ee,2024-04-29T03:06:40Z,- tony1ee opened pull request: [6777](https://github.com/hackforla/website/pull/6777) at 2024-04-28 08:06 PM PDT -tony1ee,2024-04-29T04:17:58Z,- tony1ee opened issue: [6778](https://github.com/hackforla/website/issues/6778) at 2024-04-28 09:17 PM PDT -tony1ee,2024-04-29T04:28:46Z,- tony1ee submitted pull request review: [6779](https://github.com/hackforla/website/pull/6779#pullrequestreview-2027545079) at 2024-04-28 09:28 PM PDT -tony1ee,2024-04-30T01:47:37Z,- tony1ee unassigned from issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2084112675) at 2024-04-29 06:47 PM PDT -tony1ee,2024-04-30T02:21:33Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2084205536) at 2024-04-29 07:21 PM PDT -tony1ee,2024-05-02T07:41:00Z,- tony1ee commented on pull request: [6777](https://github.com/hackforla/website/pull/6777#issuecomment-2089815525) at 2024-05-02 12:41 AM PDT -tony1ee,2024-05-02T08:52:36Z,- tony1ee opened issue: [6807](https://github.com/hackforla/website/issues/6807) at 2024-05-02 01:52 AM PDT -tony1ee,2024-05-02T08:55:18Z,- tony1ee commented on issue: [6805](https://github.com/hackforla/website/issues/6805#issuecomment-2089938416) at 2024-05-02 01:55 AM PDT -tony1ee,2024-05-02T12:12:00Z,- tony1ee pull request merged: [6777](https://github.com/hackforla/website/pull/6777#event-12682356185) at 2024-05-02 05:12 AM PDT -tony1ee,2024-05-02T20:00:11Z,- tony1ee assigned to issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2083982045) at 2024-05-02 01:00 PM PDT -tony1ee,2024-05-02T20:00:41Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2091453108) at 2024-05-02 01:00 PM PDT -tony1ee,2024-05-02T20:32:30Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2091505211) at 2024-05-02 01:32 PM PDT -tony1ee,2024-05-02T20:39:36Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2091514716) at 2024-05-02 01:39 PM PDT -tony1ee,2024-05-03T20:22:44Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2093711283) at 2024-05-03 01:22 PM PDT -tony1ee,2024-05-03T22:27:26Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2093840054) at 2024-05-03 03:27 PM PDT -tony1ee,2024-05-08T05:34:33Z,- tony1ee commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2099776000) at 2024-05-07 10:34 PM PDT -tony1ee,2024-05-08T05:34:34Z,- tony1ee closed issue as completed: [6687](https://github.com/hackforla/website/issues/6687#event-12738426821) at 2024-05-07 10:34 PM PDT -tony1ee,2024-05-08T05:56:33Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2099797074) at 2024-05-07 10:56 PM PDT -tony1ee,2024-05-08T06:15:05Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2099818901) at 2024-05-07 11:15 PM PDT -tony1ee,2024-05-08T20:34:07Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2101379453) at 2024-05-08 01:34 PM PDT -tony1ee,2024-05-08T20:35:34Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2101381578) at 2024-05-08 01:35 PM PDT -tony1ee,2024-05-09T21:49:22Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2103470484) at 2024-05-09 02:49 PM PDT -tony1ee,2024-05-09T22:36:16Z,- tony1ee opened issue: [6842](https://github.com/hackforla/website/issues/6842) at 2024-05-09 03:36 PM PDT -tony1ee,2024-05-09T22:40:19Z,- tony1ee assigned to issue: [6842](https://github.com/hackforla/website/issues/6842) at 2024-05-09 03:40 PM PDT -tony1ee,2024-05-09T22:40:23Z,- tony1ee unassigned from issue: [6842](https://github.com/hackforla/website/issues/6842) at 2024-05-09 03:40 PM PDT -tony1ee,2024-05-10T00:31:41Z,- tony1ee opened issue: [6844](https://github.com/hackforla/website/issues/6844) at 2024-05-09 05:31 PM PDT -tony1ee,2024-05-10T00:47:26Z,- tony1ee opened issue: [6845](https://github.com/hackforla/website/issues/6845) at 2024-05-09 05:47 PM PDT -tony1ee,2024-05-10T00:52:30Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2103661383) at 2024-05-09 05:52 PM PDT -tony1ee,2024-05-11T01:32:52Z,- tony1ee assigned to issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2099797074) at 2024-05-10 06:32 PM PDT -tony1ee,2024-05-11T07:19:56Z,- tony1ee commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2105611369) at 2024-05-11 12:19 AM PDT -tony1ee,2024-05-11T07:32:20Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2105615547) at 2024-05-11 12:32 AM PDT -tony1ee,2024-05-11T07:33:23Z,- tony1ee opened issue: [6850](https://github.com/hackforla/website/issues/6850) at 2024-05-11 12:33 AM PDT -tony1ee,2024-05-14T17:57:53Z,- tony1ee commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110810066) at 2024-05-14 10:57 AM PDT -tony1ee,2024-05-14T21:01:27Z,- tony1ee commented on issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2111135634) at 2024-05-14 02:01 PM PDT -tony1ee,2024-05-17T20:23:24Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2118330166) at 2024-05-17 01:23 PM PDT -tony1ee,2024-05-24T21:15:42Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2130375061) at 2024-05-24 02:15 PM PDT -tony1ee,2024-06-04T17:53:56Z,- tony1ee unassigned from issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2130375061) at 2024-06-04 10:53 AM PDT -tony1ee,2024-06-08T01:29:28Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2155745008) at 2024-06-07 06:29 PM PDT -tony1ee,2024-06-08T01:29:28Z,- tony1ee closed issue as completed: [6163](https://github.com/hackforla/website/issues/6163#event-13086628625) at 2024-06-07 06:29 PM PDT -tony1ee,2024-06-08T01:46:49Z,- tony1ee assigned to issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2136915171) at 2024-06-07 06:46 PM PDT -tony1ee,2024-06-08T01:53:18Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2155754101) at 2024-06-07 06:53 PM PDT -tony1ee,2024-06-29T01:34:35Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2197825225) at 2024-06-28 06:34 PM PDT -tony1ee,2024-07-08T02:27:13Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2212862370) at 2024-07-07 07:27 PM PDT -tony1ee,2024-08-15T14:51:15Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2291440268) at 2024-08-15 07:51 AM PDT -tony1ee,2024-08-15T14:52:45Z,- tony1ee unassigned from issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2291440268) at 2024-08-15 07:52 AM PDT -tony1ee,2024-09-22T08:37:31Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2366083194) at 2024-09-22 01:37 AM PDT -tony1ee,2024-09-28T05:12:59Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2380411785) at 2024-09-27 10:12 PM PDT -tony1ee,2024-10-03T15:41:35Z,- tony1ee assigned to issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2384572890) at 2024-10-03 08:41 AM PDT -tony1ee,2024-10-07T15:03:44Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2397187690) at 2024-10-07 08:03 AM PDT -tonyvang,5486,SKILLS ISSUE -tonyvang,2023-09-12T03:33:30Z,- tonyvang opened issue: [5486](https://github.com/hackforla/website/issues/5486) at 2023-09-11 08:33 PM PDT -tonyvang,2023-09-12T03:33:50Z,- tonyvang assigned to issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1714911118) at 2023-09-11 08:33 PM PDT -tonyvang,2023-09-12T20:18:41Z,- tonyvang commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1716366461) at 2023-09-12 01:18 PM PDT -tonyvang,2023-09-22T01:53:00Z,- tonyvang assigned to issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1728250650) at 2023-09-21 06:53 PM PDT -tonyvang,2023-09-22T16:56:20Z,- tonyvang commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1731743565) at 2023-09-22 09:56 AM PDT -tonyvang,2023-09-23T06:59:31Z,- tonyvang commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732235751) at 2023-09-22 11:59 PM PDT -tonyvang,2023-09-23T16:06:55Z,- tonyvang commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732350400) at 2023-09-23 09:06 AM PDT -tonyvang,2023-09-24T05:42:49Z,- tonyvang opened pull request: [5576](https://github.com/hackforla/website/pull/5576) at 2023-09-23 10:42 PM PDT -tonyvang,2023-09-27T18:21:06Z,- tonyvang commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1737874513) at 2023-09-27 11:21 AM PDT -tonyvang,2023-09-29T14:57:55Z,- tonyvang pull request merged: [5576](https://github.com/hackforla/website/pull/5576#event-10512430444) at 2023-09-29 07:57 AM PDT -tonyvang,2023-10-11T03:36:35Z,- tonyvang commented on pull request: [5701](https://github.com/hackforla/website/pull/5701#issuecomment-1756713503) at 2023-10-10 08:36 PM PDT -tonyvang,2023-10-15T16:53:44Z,- tonyvang submitted pull request review: [5701](https://github.com/hackforla/website/pull/5701#pullrequestreview-1678829800) at 2023-10-15 09:53 AM PDT -tonyvang,2023-10-24T22:40:58Z,- tonyvang assigned to issue: [5753](https://github.com/hackforla/website/issues/5753) at 2023-10-24 03:40 PM PDT -tonyvang,2023-10-24T22:44:21Z,- tonyvang commented on issue: [5753](https://github.com/hackforla/website/issues/5753#issuecomment-1778168339) at 2023-10-24 03:44 PM PDT -tonyvang,2023-10-30T05:12:36Z,- tonyvang commented on issue: [5753](https://github.com/hackforla/website/issues/5753#issuecomment-1784493339) at 2023-10-29 10:12 PM PDT -tonyvang,2023-10-30T05:34:02Z,- tonyvang opened pull request: [5794](https://github.com/hackforla/website/pull/5794) at 2023-10-29 10:34 PM PDT -tonyvang,2023-11-01T22:46:48Z,- tonyvang pull request merged: [5794](https://github.com/hackforla/website/pull/5794#event-10837630180) at 2023-11-01 03:46 PM PDT -tonyvang,2023-11-01T23:43:36Z,- tonyvang commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789840520) at 2023-11-01 04:43 PM PDT -tonyvang,2023-11-03T02:36:40Z,- tonyvang pull request merged: [5794](https://github.com/hackforla/website/pull/5794#event-10850945368) at 2023-11-02 07:36 PM PDT -tonyvang,2023-11-12T17:59:53Z,- tonyvang assigned to issue: [5876](https://github.com/hackforla/website/issues/5876) at 2023-11-12 09:59 AM PST -tonyvang,2023-11-13T19:17:59Z,- tonyvang commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1808867170) at 2023-11-13 11:17 AM PST -tonyvang,2023-11-13T19:18:19Z,- tonyvang commented on issue: [5876](https://github.com/hackforla/website/issues/5876#issuecomment-1808867576) at 2023-11-13 11:18 AM PST -tonyvang,2023-11-14T05:52:59Z,- tonyvang submitted pull request review: [5887](https://github.com/hackforla/website/pull/5887#pullrequestreview-1728965237) at 2023-11-13 09:52 PM PST -tonyvang,2023-11-17T03:39:40Z,- tonyvang opened pull request: [5917](https://github.com/hackforla/website/pull/5917) at 2023-11-16 07:39 PM PST -tonyvang,2023-11-19T22:24:41Z,- tonyvang pull request merged: [5917](https://github.com/hackforla/website/pull/5917#event-11004749186) at 2023-11-19 02:24 PM PST -tonyvang,2023-11-20T20:26:09Z,- tonyvang commented on pull request: [5915](https://github.com/hackforla/website/pull/5915#issuecomment-1819754299) at 2023-11-20 12:26 PM PST -tonyvang,2023-11-22T05:52:54Z,- tonyvang submitted pull request review: [5915](https://github.com/hackforla/website/pull/5915#pullrequestreview-1743610722) at 2023-11-21 09:52 PM PST -tonyvang,2023-12-02T18:14:07Z,- tonyvang commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1837219837) at 2023-12-02 10:14 AM PST -tonyvang,2024-01-10T04:03:17Z,- tonyvang commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1884156983) at 2024-01-09 08:03 PM PST -tonyvang,2024-01-16T02:30:41Z,- tonyvang submitted pull request review: [6103](https://github.com/hackforla/website/pull/6103#pullrequestreview-1822437811) at 2024-01-15 06:30 PM PST -tonyvang,2024-01-24T02:58:01Z,- tonyvang commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1907267865) at 2024-01-23 06:58 PM PST -tonyvang,2024-01-26T01:12:29Z,- tonyvang submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1844950294) at 2024-01-25 05:12 PM PST -tonyvang,2024-01-31T03:04:06Z,- tonyvang commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1918298698) at 2024-01-30 07:04 PM PST -tonyvang,2024-01-31T04:12:34Z,- tonyvang submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1852860814) at 2024-01-30 08:12 PM PST -tonyvang,2024-02-06T02:50:48Z,- tonyvang assigned to issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1756863520) at 2024-02-05 06:50 PM PST -tonyvang,2024-02-06T02:52:07Z,- tonyvang commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1928688249) at 2024-02-05 06:52 PM PST -tonyvang,2024-02-11T17:57:30Z,- tonyvang commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1937823156) at 2024-02-11 09:57 AM PST -tonyvang,2024-02-11T18:12:54Z,- tonyvang commented on pull request: [6275](https://github.com/hackforla/website/pull/6275#issuecomment-1937827381) at 2024-02-11 10:12 AM PST -tonyvang,2024-02-12T04:26:27Z,- tonyvang unassigned from issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1937823156) at 2024-02-11 08:26 PM PST -tonyvang,2024-02-16T21:55:47Z,- tonyvang commented on pull request: [6275](https://github.com/hackforla/website/pull/6275#issuecomment-1949390574) at 2024-02-16 01:55 PM PST -tonyvang,2024-02-21T02:21:51Z,- tonyvang assigned to issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 06:21 PM PST -tonyvang,2024-02-21T02:22:49Z,- tonyvang commented on issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1955751383) at 2024-02-20 06:22 PM PST -tonyvang,2024-02-24T00:57:35Z,- tonyvang opened pull request: [6368](https://github.com/hackforla/website/pull/6368) at 2024-02-23 04:57 PM PST -tonyvang,2024-02-25T18:32:07Z,- tonyvang pull request merged: [6368](https://github.com/hackforla/website/pull/6368#event-11913592557) at 2024-02-25 10:32 AM PST -tonyvang,2024-02-28T04:26:09Z,- tonyvang commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1968192859) at 2024-02-27 08:26 PM PST -tonyvang,2024-03-02T00:36:45Z,- tonyvang submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1912390097) at 2024-03-01 04:36 PM PST -tonyvang,2024-03-02T03:11:11Z,- tonyvang submitted pull request review: [6393](https://github.com/hackforla/website/pull/6393#pullrequestreview-1912564817) at 2024-03-01 07:11 PM PST -tonyvang,2024-03-02T04:56:15Z,- tonyvang commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1974300616) at 2024-03-01 08:56 PM PST -tonyvang,2024-03-02T05:37:47Z,- tonyvang submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1912582848) at 2024-03-01 09:37 PM PST -trca831,8029,SKILLS ISSUE -trca831,2025-04-01T02:48:10Z,- trca831 opened issue: [8029](https://github.com/hackforla/website/issues/8029) at 2025-03-31 07:48 PM PDT -trca831,2025-04-01T02:49:00Z,- trca831 assigned to issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2767915468) at 2025-03-31 07:49 PM PDT -trca831,2025-04-09T02:44:54Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2788144924) at 2025-04-08 07:44 PM PDT -trca831,2025-04-09T02:47:41Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2788147734) at 2025-04-08 07:47 PM PDT -trca831,2025-04-09T04:54:30Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2788278013) at 2025-04-08 09:54 PM PDT -trca831,2025-04-14T04:09:00Z,- trca831 commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2800423984) at 2025-04-13 09:09 PM PDT -trca831,2025-04-16T04:08:54Z,- trca831 submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2770617629) at 2025-04-15 09:08 PM PDT -trca831,2025-04-26T00:32:56Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2831674380) at 2025-04-25 05:32 PM PDT -trca831,2025-05-12T05:41:01Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2870905735) at 2025-05-11 10:41 PM PDT -trca831,2025-05-12T05:42:35Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2870907899) at 2025-05-11 10:42 PM PDT -Treidexy,2021-01-20T03:09:32Z,- Treidexy assigned to issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762915062) at 2021-01-19 07:09 PM PST -Treidexy,2021-01-20T04:07:27Z,- Treidexy opened pull request: [952](https://github.com/hackforla/website/pull/952) at 2021-01-19 08:07 PM PST -Treidexy,2021-01-21T01:51:25Z,- Treidexy pull request merged: [952](https://github.com/hackforla/website/pull/952#event-4231050660) at 2021-01-20 05:51 PM PST -Treidexy,2021-01-27T03:11:47Z,- Treidexy assigned to issue: [955](https://github.com/hackforla/website/issues/955) at 2021-01-26 07:11 PM PST -Treidexy,2021-01-27T03:26:04Z,- Treidexy opened pull request: [970](https://github.com/hackforla/website/pull/970) at 2021-01-26 07:26 PM PST -Treidexy,2021-01-27T03:51:05Z,- Treidexy pull request merged: [970](https://github.com/hackforla/website/pull/970#event-4253804059) at 2021-01-26 07:51 PM PST -Treidexy,2021-01-27T03:56:00Z,- Treidexy assigned to issue: [960](https://github.com/hackforla/website/issues/960) at 2021-01-26 07:56 PM PST -Treidexy,2021-02-03T03:24:40Z,- Treidexy opened pull request: [987](https://github.com/hackforla/website/pull/987) at 2021-02-02 07:24 PM PST -Treidexy,2021-02-03T03:41:09Z,- Treidexy pull request closed w/o merging: [987](https://github.com/hackforla/website/pull/987#event-4282995763) at 2021-02-02 07:41 PM PST -Treidexy,2021-02-03T04:07:46Z,- Treidexy opened pull request: [988](https://github.com/hackforla/website/pull/988) at 2021-02-02 08:07 PM PST -Treidexy,2021-02-11T01:04:01Z,- Treidexy commented on pull request: [988](https://github.com/hackforla/website/pull/988#issuecomment-777144117) at 2021-02-10 05:04 PM PST -Treidexy,2021-02-14T18:55:45Z,- Treidexy pull request merged: [988](https://github.com/hackforla/website/pull/988#event-4329011884) at 2021-02-14 10:55 AM PST -Treidexy,2021-02-14T19:15:36Z,- Treidexy assigned to issue: [1041](https://github.com/hackforla/website/issues/1041) at 2021-02-14 11:15 AM PST -Treidexy,2021-02-17T03:23:21Z,- Treidexy unassigned from issue: [1041](https://github.com/hackforla/website/issues/1041) at 2021-02-16 07:23 PM PST -Treidexy,2021-02-17T03:23:51Z,- Treidexy assigned to issue: [1044](https://github.com/hackforla/website/issues/1044) at 2021-02-16 07:23 PM PST -Treidexy,2021-02-24T23:22:01Z,- Treidexy opened issue: [1106](https://github.com/hackforla/website/issues/1106) at 2021-02-24 03:22 PM PST -Treidexy,2021-02-24T23:26:10Z,- Treidexy opened issue: [1107](https://github.com/hackforla/website/issues/1107) at 2021-02-24 03:26 PM PST -Treidexy,2021-02-24T23:38:39Z,- Treidexy opened pull request: [1108](https://github.com/hackforla/website/pull/1108) at 2021-02-24 03:38 PM PST -Treidexy,2021-02-25T00:33:31Z,- Treidexy pull request merged: [1108](https://github.com/hackforla/website/pull/1108#event-4373886339) at 2021-02-24 04:33 PM PST -Treidexy,2021-03-01T23:00:52Z,- Treidexy commented on pull request: [1129](https://github.com/hackforla/website/pull/1129#issuecomment-788372571) at 2021-03-01 03:00 PM PST -Treidexy,2021-03-10T03:50:20Z,- Treidexy assigned to issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-03-09 07:50 PM PST -Treidexy,2021-03-10T03:50:40Z,- Treidexy unassigned from issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-784821786) at 2021-03-09 07:50 PM PST -Treidexy,2021-03-10T03:53:27Z,- Treidexy assigned to issue: [1190](https://github.com/hackforla/website/issues/1190) at 2021-03-09 07:53 PM PST -Treidexy,2021-03-10T03:56:52Z,- Treidexy opened pull request: [1191](https://github.com/hackforla/website/pull/1191) at 2021-03-09 07:56 PM PST -Treidexy,2021-03-10T03:58:05Z,- Treidexy pull request merged: [1191](https://github.com/hackforla/website/pull/1191#event-4433215801) at 2021-03-09 07:58 PM PST -Treidexy,2021-04-14T02:22:17Z,- Treidexy unassigned from issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-04-13 07:22 PM PDT -trimakichan,7627,SKILLS ISSUE -trimakichan,2024-10-23T03:19:20Z,- trimakichan opened issue: [7627](https://github.com/hackforla/website/issues/7627) at 2024-10-22 08:19 PM PDT -trimakichan,2024-10-23T03:20:00Z,- trimakichan assigned to issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2430761703) at 2024-10-22 08:20 PM PDT -trimakichan,2024-10-25T15:59:42Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2438203171) at 2024-10-25 08:59 AM PDT -trimakichan,2024-10-25T16:02:39Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2438210125) at 2024-10-25 09:02 AM PDT -trimakichan,2024-10-25T17:53:24Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2438446909) at 2024-10-25 10:53 AM PDT -trimakichan,2024-10-25T17:56:58Z,- trimakichan assigned to issue: [7542](https://github.com/hackforla/website/issues/7542) at 2024-10-25 10:56 AM PDT -trimakichan,2024-10-25T21:49:45Z,- trimakichan commented on issue: [7542](https://github.com/hackforla/website/issues/7542#issuecomment-2438928913) at 2024-10-25 02:49 PM PDT -trimakichan,2024-10-26T16:27:57Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2439642648) at 2024-10-26 09:27 AM PDT -trimakichan,2024-10-26T18:28:47Z,- trimakichan opened pull request: [7639](https://github.com/hackforla/website/pull/7639) at 2024-10-26 11:28 AM PDT -trimakichan,2024-10-28T20:46:14Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442595053) at 2024-10-28 01:46 PM PDT -trimakichan,2024-10-28T20:50:12Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442601760) at 2024-10-28 01:50 PM PDT -trimakichan,2024-10-28T21:37:10Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442679855) at 2024-10-28 02:37 PM PDT -trimakichan,2024-10-28T21:40:52Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442685882) at 2024-10-28 02:40 PM PDT -trimakichan,2024-10-29T19:27:28Z,- trimakichan pull request merged: [7639](https://github.com/hackforla/website/pull/7639#event-14990258358) at 2024-10-29 12:27 PM PDT -trimakichan,2024-10-29T20:39:58Z,- trimakichan commented on issue: [7542](https://github.com/hackforla/website/issues/7542#issuecomment-2445286147) at 2024-10-29 01:39 PM PDT -trimakichan,2024-10-29T20:41:33Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2445289376) at 2024-10-29 01:41 PM PDT -trimakichan,2024-10-30T19:46:46Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2448219391) at 2024-10-30 12:46 PM PDT -trimakichan,2024-11-02T16:56:07Z,- trimakichan assigned to issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2408189434) at 2024-11-02 08:56 AM PST -trimakichan,2024-11-02T17:29:27Z,- trimakichan commented on issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2453055827) at 2024-11-02 09:29 AM PST -trimakichan,2024-11-02T18:30:00Z,- trimakichan opened pull request: [7685](https://github.com/hackforla/website/pull/7685) at 2024-11-02 10:30 AM PST -trimakichan,2024-11-04T17:37:35Z,- trimakichan commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455321181) at 2024-11-04 09:37 AM PST -trimakichan,2024-11-04T17:42:21Z,- trimakichan commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455330920) at 2024-11-04 09:42 AM PST -trimakichan,2024-11-06T16:44:34Z,- trimakichan pull request merged: [7685](https://github.com/hackforla/website/pull/7685#event-15154639825) at 2024-11-06 08:44 AM PST -trimakichan,2024-11-07T18:44:08Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2462973102) at 2024-11-07 10:44 AM PST -trimakichan,2024-11-07T18:48:54Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2462981605) at 2024-11-07 10:48 AM PST -trimakichan,2024-11-17T17:36:09Z,- trimakichan commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481395665) at 2024-11-17 09:36 AM PST -trimakichan,2024-11-17T18:36:45Z,- trimakichan submitted pull request review: [7723](https://github.com/hackforla/website/pull/7723#pullrequestreview-2441120860) at 2024-11-17 10:36 AM PST -trimakichan,2024-11-17T18:47:13Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2481424832) at 2024-11-17 10:47 AM PST -trimakichan,2024-11-19T16:53:22Z,- trimakichan commented on pull request: [7728](https://github.com/hackforla/website/pull/7728#issuecomment-2486247899) at 2024-11-19 08:53 AM PST -trimakichan,2024-11-19T17:12:23Z,- trimakichan submitted pull request review: [7728](https://github.com/hackforla/website/pull/7728#pullrequestreview-2446110916) at 2024-11-19 09:12 AM PST -trimakichan,2024-11-19T17:14:54Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2486296719) at 2024-11-19 09:14 AM PST -trimakichan,2024-11-22T16:49:53Z,- trimakichan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2494258055) at 2024-11-22 08:49 AM PST -trimakichan,2024-11-22T18:02:28Z,- trimakichan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2455274236) at 2024-11-22 10:02 AM PST -trimakichan,2024-11-22T18:18:29Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2494479279) at 2024-11-22 10:18 AM PST -trimakichan,2024-11-24T18:46:18Z,- trimakichan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2456771275) at 2024-11-24 10:46 AM PST -trimakichan,2024-11-26T18:30:12Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2501656346) at 2024-11-26 10:30 AM PST -trimakichan,2024-12-04T17:38:19Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2518115542) at 2024-12-04 09:38 AM PST -trimakichan,2024-12-04T18:05:22Z,- trimakichan assigned to issue: [7396](https://github.com/hackforla/website/issues/7396) at 2024-12-04 10:05 AM PST -trimakichan,2024-12-04T18:09:45Z,- trimakichan commented on issue: [7396](https://github.com/hackforla/website/issues/7396#issuecomment-2518181969) at 2024-12-04 10:09 AM PST -trimakichan,2024-12-09T18:26:12Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2529021716) at 2024-12-09 10:26 AM PST -trimakichan,2024-12-12T22:41:16Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2540155518) at 2024-12-12 02:41 PM PST -trimakichan,2025-01-04T21:18:28Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2571414130) at 2025-01-04 01:18 PM PST -trimakichan,2025-01-04T21:19:34Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2571414354) at 2025-01-04 01:19 PM PST -trimakichan,2025-01-20T17:36:03Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2602965916) at 2025-01-20 09:36 AM PST -trimakichan,2025-02-11T16:59:12Z,- trimakichan commented on pull request: [7899](https://github.com/hackforla/website/pull/7899#issuecomment-2651464262) at 2025-02-11 08:59 AM PST -trimakichan,2025-02-11T18:22:37Z,- trimakichan submitted pull request review: [7899](https://github.com/hackforla/website/pull/7899#pullrequestreview-2609626283) at 2025-02-11 10:22 AM PST -trimakichan,2025-02-11T18:26:47Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2651663075) at 2025-02-11 10:26 AM PST -trimakichan,2025-02-11T18:38:23Z,- trimakichan commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2651686577) at 2025-02-11 10:38 AM PST -trimakichan,2025-02-11T19:34:52Z,- trimakichan submitted pull request review: [7901](https://github.com/hackforla/website/pull/7901#pullrequestreview-2609832619) at 2025-02-11 11:34 AM PST -trimakichan,2025-02-12T19:00:30Z,- trimakichan submitted pull request review: [7901](https://github.com/hackforla/website/pull/7901#pullrequestreview-2612929552) at 2025-02-12 11:00 AM PST -trimakichan,2025-02-14T16:49:33Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2659816146) at 2025-02-14 08:49 AM PST -trimakichan,2025-02-14T16:52:14Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2659820943) at 2025-02-14 08:52 AM PST -trishajjohnson,3049,SKILLS ISSUE -trishajjohnson,2022-04-13T03:10:36Z,- trishajjohnson opened issue: [3049](https://github.com/hackforla/website/issues/3049) at 2022-04-12 08:10 PM PDT -trishajjohnson,2022-04-13T03:20:04Z,- trishajjohnson assigned to issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1097506176) at 2022-04-12 08:20 PM PDT -trishajjohnson,2022-04-20T00:09:14Z,- trishajjohnson assigned to issue: [2913](https://github.com/hackforla/website/issues/2913#issuecomment-1056028927) at 2022-04-19 05:09 PM PDT -trishajjohnson,2022-04-20T00:17:05Z,- trishajjohnson commented on issue: [2913](https://github.com/hackforla/website/issues/2913#issuecomment-1103285155) at 2022-04-19 05:17 PM PDT -trishajjohnson,2022-04-20T01:42:06Z,- trishajjohnson commented on issue: [2913](https://github.com/hackforla/website/issues/2913#issuecomment-1103351500) at 2022-04-19 06:42 PM PDT -trishajjohnson,2022-04-20T23:40:16Z,- trishajjohnson opened pull request: [3072](https://github.com/hackforla/website/pull/3072) at 2022-04-20 04:40 PM PDT -trishajjohnson,2022-04-22T02:13:25Z,- trishajjohnson pull request merged: [3072](https://github.com/hackforla/website/pull/3072#event-6475056487) at 2022-04-21 07:13 PM PDT -trishajjohnson,2022-04-23T23:22:41Z,- trishajjohnson assigned to issue: [3041](https://github.com/hackforla/website/issues/3041#issuecomment-1094362337) at 2022-04-23 04:22 PM PDT -trishajjohnson,2022-04-23T23:27:31Z,- trishajjohnson unassigned from issue: [3041](https://github.com/hackforla/website/issues/3041#issuecomment-1094362337) at 2022-04-23 04:27 PM PDT -trishajjohnson,2022-04-24T23:57:26Z,- trishajjohnson commented on pull request: [3079](https://github.com/hackforla/website/pull/3079#issuecomment-1107943082) at 2022-04-24 04:57 PM PDT -trishajjohnson,2022-04-25T05:25:53Z,- trishajjohnson submitted pull request review: [3079](https://github.com/hackforla/website/pull/3079#pullrequestreview-951357951) at 2022-04-24 10:25 PM PDT -trishajjohnson,2022-04-27T01:40:38Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1110439359) at 2022-04-26 06:40 PM PDT -trishajjohnson,2022-04-27T01:41:39Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1110439874) at 2022-04-26 06:41 PM PDT -trishajjohnson,2022-04-27T02:31:44Z,- trishajjohnson assigned to issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1051648112) at 2022-04-26 07:31 PM PDT -trishajjohnson,2022-04-27T02:32:57Z,- trishajjohnson commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1110467109) at 2022-04-26 07:32 PM PDT -trishajjohnson,2022-05-06T15:47:35Z,- trishajjohnson commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1119757696) at 2022-05-06 08:47 AM PDT -trishajjohnson,2022-05-06T17:05:51Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1119820963) at 2022-05-06 10:05 AM PDT -trishajjohnson,2022-05-06T17:06:25Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1119821384) at 2022-05-06 10:06 AM PDT -trishajjohnson,2022-05-06T17:08:17Z,- trishajjohnson commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1119822672) at 2022-05-06 10:08 AM PDT -trishajjohnson,2022-05-06T21:19:55Z,- trishajjohnson opened pull request: [3108](https://github.com/hackforla/website/pull/3108) at 2022-05-06 02:19 PM PDT -trishajjohnson,2022-05-08T03:39:33Z,- trishajjohnson pull request merged: [3108](https://github.com/hackforla/website/pull/3108#event-6568169465) at 2022-05-07 08:39 PM PDT -trishajjohnson,2022-05-17T05:58:11Z,- trishajjohnson assigned to issue: [3084](https://github.com/hackforla/website/issues/3084#issuecomment-1114044814) at 2022-05-16 10:58 PM PDT -trishajjohnson,2022-05-17T06:03:44Z,- trishajjohnson commented on issue: [3084](https://github.com/hackforla/website/issues/3084#issuecomment-1128447278) at 2022-05-16 11:03 PM PDT -trishajjohnson,2022-05-19T01:03:09Z,- trishajjohnson commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1130892847) at 2022-05-18 06:03 PM PDT -trishajjohnson,2022-05-20T02:48:15Z,- trishajjohnson commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1132400638) at 2022-05-19 07:48 PM PDT -trishajjohnson,2022-05-20T06:04:45Z,- trishajjohnson submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-979558603) at 2022-05-19 11:04 PM PDT -trishajjohnson,2022-05-20T07:28:52Z,- trishajjohnson commented on issue: [3084](https://github.com/hackforla/website/issues/3084#issuecomment-1132573599) at 2022-05-20 12:28 AM PDT -trishajjohnson,2022-05-20T08:05:43Z,- trishajjohnson opened pull request: [3162](https://github.com/hackforla/website/pull/3162) at 2022-05-20 01:05 AM PDT -trishajjohnson,2022-05-25T00:19:36Z,- trishajjohnson commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1136555166) at 2022-05-24 05:19 PM PDT -trishajjohnson,2022-05-25T02:25:45Z,- trishajjohnson closed issue as completed: [3049](https://github.com/hackforla/website/issues/3049#event-6673764056) at 2022-05-24 07:25 PM PDT -trishajjohnson,2022-05-26T05:28:12Z,- trishajjohnson commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1138168234) at 2022-05-25 10:28 PM PDT -trishajjohnson,2022-05-26T05:48:59Z,- trishajjohnson commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1138178248) at 2022-05-25 10:48 PM PDT -trishajjohnson,2022-05-26T05:50:36Z,- trishajjohnson commented on pull request: [3173](https://github.com/hackforla/website/pull/3173#issuecomment-1138178978) at 2022-05-25 10:50 PM PDT -trishajjohnson,2022-05-26T21:57:07Z,- trishajjohnson submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-986836268) at 2022-05-26 02:57 PM PDT -trishajjohnson,2022-05-27T00:17:20Z,- trishajjohnson submitted pull request review: [3174](https://github.com/hackforla/website/pull/3174#pullrequestreview-986921290) at 2022-05-26 05:17 PM PDT -trishajjohnson,2022-06-02T17:19:16Z,- trishajjohnson commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1145111190) at 2022-06-02 10:19 AM PDT -trishajjohnson,2022-06-02T18:12:10Z,- trishajjohnson commented on pull request: [3193](https://github.com/hackforla/website/pull/3193#issuecomment-1145166764) at 2022-06-02 11:12 AM PDT -trishajjohnson,2022-06-02T18:16:21Z,- trishajjohnson submitted pull request review: [3193](https://github.com/hackforla/website/pull/3193#pullrequestreview-993975088) at 2022-06-02 11:16 AM PDT -trishajjohnson,2022-06-02T18:33:14Z,- trishajjohnson commented on pull request: [3178](https://github.com/hackforla/website/pull/3178#issuecomment-1145186287) at 2022-06-02 11:33 AM PDT -trishajjohnson,2022-06-02T18:49:25Z,- trishajjohnson submitted pull request review: [3178](https://github.com/hackforla/website/pull/3178#pullrequestreview-994009977) at 2022-06-02 11:49 AM PDT -trishajjohnson,2022-06-17T02:48:18Z,- trishajjohnson pull request merged: [3162](https://github.com/hackforla/website/pull/3162#event-6825721810) at 2022-06-16 07:48 PM PDT -trishajjohnson,2022-07-07T18:57:29Z,- trishajjohnson commented on pull request: [3338](https://github.com/hackforla/website/pull/3338#issuecomment-1178081819) at 2022-07-07 11:57 AM PDT -trishajjohnson,2022-07-08T04:14:57Z,- trishajjohnson submitted pull request review: [3338](https://github.com/hackforla/website/pull/3338#pullrequestreview-1032381668) at 2022-07-07 09:14 PM PDT -troyfreed,4713,SKILLS ISSUE -troyfreed,6943,SKILLS ISSUE -troyfreed,2023-05-24T03:04:02Z,- troyfreed opened issue: [4713](https://github.com/hackforla/website/issues/4713) at 2023-05-23 08:04 PM PDT -troyfreed,2023-05-24T03:04:31Z,- troyfreed assigned to issue: [4713](https://github.com/hackforla/website/issues/4713) at 2023-05-23 08:04 PM PDT -troyfreed,2023-05-30T04:17:31Z,- troyfreed commented on issue: [4713](https://github.com/hackforla/website/issues/4713#issuecomment-1567734378) at 2023-05-29 09:17 PM PDT -troyfreed,2023-06-03T21:40:24Z,- troyfreed assigned to issue: [4488](https://github.com/hackforla/website/issues/4488) at 2023-06-03 02:40 PM PDT -troyfreed,2023-06-03T21:44:46Z,- troyfreed commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1575210771) at 2023-06-03 02:44 PM PDT -troyfreed,2023-06-05T23:49:38Z,- troyfreed commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1577696277) at 2023-06-05 04:49 PM PDT -troyfreed,2023-06-27T01:39:45Z,- troyfreed unassigned from issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1608575872) at 2023-06-26 06:39 PM PDT -troyfreed,2024-02-27T22:56:06Z,- troyfreed unassigned from issue: [4713](https://github.com/hackforla/website/issues/4713#event-10585009842) at 2024-02-27 02:56 PM PST -troyfreed,2024-06-04T02:40:09Z,- troyfreed opened issue: [6943](https://github.com/hackforla/website/issues/6943) at 2024-06-03 07:40 PM PDT -troyfreed,2024-06-04T02:40:14Z,- troyfreed assigned to issue: [6943](https://github.com/hackforla/website/issues/6943) at 2024-06-03 07:40 PM PDT -troyfreed,2024-06-11T01:01:47Z,- troyfreed assigned to issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2149201036) at 2024-06-10 06:01 PM PDT -troyfreed,2024-06-11T01:20:58Z,- troyfreed commented on issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2159590792) at 2024-06-10 06:20 PM PDT -troyfreed,2024-06-13T19:05:22Z,- troyfreed commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2166576349) at 2024-06-13 12:05 PM PDT -troyfreed,2024-06-13T19:27:56Z,- troyfreed opened pull request: [7001](https://github.com/hackforla/website/pull/7001) at 2024-06-13 12:27 PM PDT -troyfreed,2024-06-18T01:59:15Z,- troyfreed commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2174768893) at 2024-06-17 06:59 PM PDT -troyfreed,2024-06-20T18:50:28Z,- troyfreed commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2181327007) at 2024-06-20 11:50 AM PDT -troyfreed,2024-06-24T23:05:35Z,- troyfreed commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2187576257) at 2024-06-24 04:05 PM PDT -troyfreed,2024-06-26T01:47:59Z,- troyfreed pull request closed w/o merging: [7001](https://github.com/hackforla/website/pull/7001#event-13290055232) at 2024-06-25 06:47 PM PDT -troyfreed,2024-06-26T02:00:12Z,- troyfreed unassigned from issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2159590792) at 2024-06-25 07:00 PM PDT -trtincher,2021-01-06T04:28:32Z,- trtincher assigned to issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:28 PM PST -trtincher,2021-01-10T23:21:54Z,- trtincher opened pull request: [929](https://github.com/hackforla/website/pull/929) at 2021-01-10 03:21 PM PST -trtincher,2021-01-10T23:44:17Z,- trtincher commented on pull request: [929](https://github.com/hackforla/website/pull/929#issuecomment-757564989) at 2021-01-10 03:44 PM PST -trtincher,2021-01-10T23:45:56Z,- trtincher assigned to issue: [910](https://github.com/hackforla/website/issues/910) at 2021-01-10 03:45 PM PST -trtincher,2021-01-11T22:07:36Z,- trtincher submitted pull request review: [931](https://github.com/hackforla/website/pull/931#pullrequestreview-565777967) at 2021-01-11 02:07 PM PST -trtincher,2021-01-13T03:34:15Z,- trtincher pull request merged: [929](https://github.com/hackforla/website/pull/929#event-4199223368) at 2021-01-12 07:34 PM PST -trtincher,2021-01-15T15:35:39Z,- trtincher submitted pull request review: [941](https://github.com/hackforla/website/pull/941#pullrequestreview-569365764) at 2021-01-15 07:35 AM PST -trtincher,2021-01-15T16:00:27Z,- trtincher opened pull request: [942](https://github.com/hackforla/website/pull/942) at 2021-01-15 08:00 AM PST -trtincher,2021-01-17T18:09:03Z,- trtincher pull request merged: [942](https://github.com/hackforla/website/pull/942#event-4215384150) at 2021-01-17 10:09 AM PST -trtincher,2021-01-17T19:19:02Z,- trtincher assigned to issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-705842895) at 2021-01-17 11:19 AM PST -trtincher,2021-01-18T20:23:00Z,- trtincher submitted pull request review: [941](https://github.com/hackforla/website/pull/941#pullrequestreview-570760358) at 2021-01-18 12:23 PM PST -trtincher,2021-01-18T20:35:20Z,- trtincher submitted pull request review: [943](https://github.com/hackforla/website/pull/943#pullrequestreview-570765180) at 2021-01-18 12:35 PM PST -trtincher,2021-01-20T15:06:45Z,- trtincher submitted pull request review: [943](https://github.com/hackforla/website/pull/943#pullrequestreview-572317291) at 2021-01-20 07:06 AM PST -trtincher,2021-01-20T15:07:30Z,- trtincher closed issue by PR 943: [925](https://github.com/hackforla/website/issues/925#event-4228394579) at 2021-01-20 07:07 AM PST -trtincher,2021-01-20T15:13:59Z,- trtincher submitted pull request review: [952](https://github.com/hackforla/website/pull/952#pullrequestreview-572324891) at 2021-01-20 07:13 AM PST -trtincher,2021-01-24T15:43:02Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-766370208) at 2021-01-24 07:43 AM PST -trtincher,2021-01-28T21:54:24Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-769424455) at 2021-01-28 01:54 PM PST -trtincher,2021-01-31T18:49:44Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-770430172) at 2021-01-31 10:49 AM PST -trtincher,2021-02-01T14:34:35Z,- trtincher submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-580412244) at 2021-02-01 06:34 AM PST -trtincher,2021-02-02T16:01:31Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-771740873) at 2021-02-02 08:01 AM PST -trtincher,2021-02-04T00:40:37Z,- trtincher assigned to issue: [935](https://github.com/hackforla/website/issues/935) at 2021-02-03 04:40 PM PST -trtincher,2021-02-04T17:06:02Z,- trtincher opened pull request: [1002](https://github.com/hackforla/website/pull/1002) at 2021-02-04 09:06 AM PST -trtincher,2021-02-14T16:08:20Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-778799002) at 2021-02-14 08:08 AM PST -trtincher,2021-02-24T03:44:01Z,- trtincher commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-784729990) at 2021-02-23 07:44 PM PST -trtincher,2021-02-28T18:06:24Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-787494303) at 2021-02-28 10:06 AM PST -trtincher,2021-03-03T03:35:30Z,- trtincher assigned to issue: [1154](https://github.com/hackforla/website/issues/1154) at 2021-03-02 07:35 PM PST -trtincher,2021-03-07T16:32:45Z,- trtincher submitted pull request review: [1158](https://github.com/hackforla/website/pull/1158#pullrequestreview-605862905) at 2021-03-07 08:32 AM PST -trtincher,2021-03-07T16:41:20Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-792307937) at 2021-03-07 08:41 AM PST -trtincher,2021-03-07T17:58:30Z,- trtincher submitted pull request review: [1170](https://github.com/hackforla/website/pull/1170#pullrequestreview-605869914) at 2021-03-07 09:58 AM PST -trtincher,2021-03-10T02:15:44Z,- trtincher submitted pull request review: [1158](https://github.com/hackforla/website/pull/1158#pullrequestreview-608274670) at 2021-03-09 06:15 PM PST -trtincher,2021-03-17T02:19:02Z,- trtincher pull request merged: [1002](https://github.com/hackforla/website/pull/1002#event-4467747148) at 2021-03-16 07:19 PM PDT -trtincher,2021-03-17T02:55:02Z,- trtincher assigned to issue: [1155](https://github.com/hackforla/website/issues/1155) at 2021-03-16 07:55 PM PDT -trtincher,2021-03-21T16:24:49Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-803615306) at 2021-03-21 09:24 AM PDT -trtincher,2021-03-21T16:55:59Z,- trtincher submitted pull request review: [1281](https://github.com/hackforla/website/pull/1281#pullrequestreview-617040485) at 2021-03-21 09:55 AM PDT -trtincher,2021-03-21T17:05:13Z,- trtincher submitted pull request review: [1282](https://github.com/hackforla/website/pull/1282#pullrequestreview-617041331) at 2021-03-21 10:05 AM PDT -trtincher,2021-03-21T17:18:47Z,- trtincher submitted pull request review: [1279](https://github.com/hackforla/website/pull/1279#pullrequestreview-617042603) at 2021-03-21 10:18 AM PDT -trtincher,2021-03-21T17:20:39Z,- trtincher closed issue by PR 1279: [1278](https://github.com/hackforla/website/issues/1278#event-4486980294) at 2021-03-21 10:20 AM PDT -trtincher,2021-03-21T17:32:24Z,- trtincher commented on issue: [1155](https://github.com/hackforla/website/issues/1155#issuecomment-803628738) at 2021-03-21 10:32 AM PDT -trtincher,2021-03-24T00:30:56Z,- trtincher opened pull request: [1318](https://github.com/hackforla/website/pull/1318) at 2021-03-23 05:30 PM PDT -trtincher,2021-03-24T02:33:38Z,- trtincher pull request merged: [1318](https://github.com/hackforla/website/pull/1318#event-4499433244) at 2021-03-23 07:33 PM PDT -trtincher,2021-03-24T03:17:59Z,- trtincher assigned to issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-801320659) at 2021-03-23 08:17 PM PDT -trtincher,2021-03-24T03:31:07Z,- trtincher submitted pull request review: [1317](https://github.com/hackforla/website/pull/1317#pullrequestreview-619281052) at 2021-03-23 08:31 PM PDT -trtincher,2021-03-24T03:31:19Z,- trtincher closed issue by PR 1317: [1046](https://github.com/hackforla/website/issues/1046#event-4499564778) at 2021-03-23 08:31 PM PDT -trtincher,2021-03-28T15:15:46Z,- trtincher commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-808910521) at 2021-03-28 08:15 AM PDT -trtincher,2021-04-05T14:05:46Z,- trtincher unassigned from issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-808910521) at 2021-04-05 07:05 AM PDT -trtincher,2021-04-05T14:07:01Z,- trtincher commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-813411114) at 2021-04-05 07:07 AM PDT -trz832,3244,SKILLS ISSUE -trz832,2022-06-14T03:26:54Z,- trz832 opened issue: [3244](https://github.com/hackforla/website/issues/3244) at 2022-06-13 08:26 PM PDT -trz832,2022-06-15T01:59:32Z,- trz832 assigned to issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1154668551) at 2022-06-14 06:59 PM PDT -trz832,2022-06-17T02:38:58Z,- trz832 assigned to issue: [2805](https://github.com/hackforla/website/issues/2805#issuecomment-1046308523) at 2022-06-16 07:38 PM PDT -trz832,2022-06-18T22:11:59Z,- trz832 assigned to issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1103242389) at 2022-06-18 03:11 PM PDT -trz832,2022-06-18T22:14:03Z,- trz832 opened pull request: [3259](https://github.com/hackforla/website/pull/3259) at 2022-06-18 03:14 PM PDT -trz832,2022-06-18T22:20:32Z,- trz832 opened pull request: [3260](https://github.com/hackforla/website/pull/3260) at 2022-06-18 03:20 PM PDT -trz832,2022-06-18T22:36:15Z,- trz832 opened pull request: [3261](https://github.com/hackforla/website/pull/3261) at 2022-06-18 03:36 PM PDT -trz832,2022-06-23T19:56:32Z,- trz832 pull request closed w/o merging: [3261](https://github.com/hackforla/website/pull/3261#event-6869171284) at 2022-06-23 12:56 PM PDT -trz832,2022-06-24T00:04:24Z,- trz832 pull request closed w/o merging: [3259](https://github.com/hackforla/website/pull/3259#event-6870548124) at 2022-06-23 05:04 PM PDT -trz832,2022-07-21T02:21:14Z,- trz832 pull request merged: [3260](https://github.com/hackforla/website/pull/3260#event-7034278743) at 2022-07-20 07:21 PM PDT -trz832,2022-07-25T21:57:29Z,- trz832 unassigned from issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1192268152) at 2022-07-25 02:57 PM PDT -tunglinn,3271,SKILLS ISSUE -tunglinn,2022-06-20T21:41:54Z,- tunglinn opened issue: [3271](https://github.com/hackforla/website/issues/3271) at 2022-06-20 02:41 PM PDT -tunglinn,2022-06-20T21:56:55Z,- tunglinn assigned to issue: [3271](https://github.com/hackforla/website/issues/3271#issuecomment-1160868681) at 2022-06-20 02:56 PM PDT -tunglinn,2022-06-22T19:24:38Z,- tunglinn assigned to issue: [2808](https://github.com/hackforla/website/issues/2808#issuecomment-1046310234) at 2022-06-22 12:24 PM PDT -tunglinn,2022-06-23T03:53:09Z,- tunglinn commented on issue: [2808](https://github.com/hackforla/website/issues/2808#issuecomment-1163895703) at 2022-06-22 08:53 PM PDT -tunglinn,2022-06-23T03:54:43Z,- tunglinn commented on issue: [3271](https://github.com/hackforla/website/issues/3271#issuecomment-1163896364) at 2022-06-22 08:54 PM PDT -tunglinn,2022-06-23T04:12:37Z,- tunglinn opened pull request: [3291](https://github.com/hackforla/website/pull/3291) at 2022-06-22 09:12 PM PDT -tunglinn,2022-06-23T19:31:29Z,- tunglinn commented on issue: [2808](https://github.com/hackforla/website/issues/2808#issuecomment-1164790013) at 2022-06-23 12:31 PM PDT -tunglinn,2022-06-24T03:47:13Z,- tunglinn pull request merged: [3291](https://github.com/hackforla/website/pull/3291#event-6871254387) at 2022-06-23 08:47 PM PDT -tunglinn,2022-06-26T17:12:40Z,- tunglinn assigned to issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1116774769) at 2022-06-26 10:12 AM PDT -tunglinn,2022-06-26T17:13:12Z,- tunglinn commented on issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1166591455) at 2022-06-26 10:13 AM PDT -tunglinn,2022-06-26T17:23:42Z,- tunglinn commented on pull request: [3303](https://github.com/hackforla/website/pull/3303#issuecomment-1166593979) at 2022-06-26 10:23 AM PDT -tunglinn,2022-06-26T18:53:54Z,- tunglinn opened issue: [3312](https://github.com/hackforla/website/issues/3312) at 2022-06-26 11:53 AM PDT -tunglinn,2022-06-26T19:19:36Z,- tunglinn submitted pull request review: [3303](https://github.com/hackforla/website/pull/3303#pullrequestreview-1019469711) at 2022-06-26 12:19 PM PDT -tunglinn,2022-06-27T06:08:32Z,- tunglinn closed issue as completed: [3271](https://github.com/hackforla/website/issues/3271#event-6882226102) at 2022-06-26 11:08 PM PDT -tunglinn,2022-06-27T06:23:38Z,- tunglinn opened pull request: [3317](https://github.com/hackforla/website/pull/3317) at 2022-06-26 11:23 PM PDT -tunglinn,2022-06-27T06:25:25Z,- tunglinn commented on issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1166927600) at 2022-06-26 11:25 PM PDT -tunglinn,2022-06-28T18:13:47Z,- tunglinn commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1169063056) at 2022-06-28 11:13 AM PDT -tunglinn,2022-06-28T18:35:22Z,- tunglinn submitted pull request review: [3320](https://github.com/hackforla/website/pull/3320#pullrequestreview-1022224338) at 2022-06-28 11:35 AM PDT -tunglinn,2022-06-28T19:07:47Z,- tunglinn pull request merged: [3317](https://github.com/hackforla/website/pull/3317#event-6896605693) at 2022-06-28 12:07 PM PDT -tunglinn,2022-06-29T02:05:38Z,- tunglinn assigned to issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1132386706) at 2022-06-28 07:05 PM PDT -tunglinn,2022-06-29T02:30:32Z,- tunglinn commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1169466374) at 2022-06-28 07:30 PM PDT -tunglinn,2022-06-29T03:08:07Z,- tunglinn opened pull request: [3324](https://github.com/hackforla/website/pull/3324) at 2022-06-28 08:08 PM PDT -tunglinn,2022-06-29T19:08:49Z,- tunglinn pull request merged: [3324](https://github.com/hackforla/website/pull/3324#event-6905118630) at 2022-06-29 12:08 PM PDT -tunglinn,2022-06-30T18:00:42Z,- tunglinn commented on pull request: [3326](https://github.com/hackforla/website/pull/3326#issuecomment-1171519323) at 2022-06-30 11:00 AM PDT -tunglinn,2022-06-30T18:03:57Z,- tunglinn assigned to issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1059842879) at 2022-06-30 11:03 AM PDT -tunglinn,2022-06-30T19:22:55Z,- tunglinn submitted pull request review: [3326](https://github.com/hackforla/website/pull/3326#pullrequestreview-1025391586) at 2022-06-30 12:22 PM PDT -tunglinn,2022-07-01T02:19:01Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1171854072) at 2022-06-30 07:19 PM PDT -tunglinn,2022-07-04T17:26:12Z,- tunglinn commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1174022921) at 2022-07-04 10:26 AM PDT -tunglinn,2022-07-04T17:39:37Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1174030611) at 2022-07-04 10:39 AM PDT -tunglinn,2022-07-04T17:55:24Z,- tunglinn submitted pull request review: [3327](https://github.com/hackforla/website/pull/3327#pullrequestreview-1027826318) at 2022-07-04 10:55 AM PDT -tunglinn,2022-07-06T19:18:19Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1176584646) at 2022-07-06 12:18 PM PDT -tunglinn,2022-07-06T21:22:42Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1176762104) at 2022-07-06 02:22 PM PDT -tunglinn,2022-07-07T18:10:13Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1178023100) at 2022-07-07 11:10 AM PDT -tunglinn,2022-07-07T18:29:32Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1178045693) at 2022-07-07 11:29 AM PDT -tunglinn,2022-07-12T01:11:20Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1181203060) at 2022-07-11 06:11 PM PDT -tunglinn,2022-07-13T00:59:18Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1182646013) at 2022-07-12 05:59 PM PDT -tunglinn,2022-07-13T02:01:25Z,- tunglinn commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182676517) at 2022-07-12 07:01 PM PDT -tunglinn,2022-07-13T05:32:59Z,- tunglinn submitted pull request review: [3363](https://github.com/hackforla/website/pull/3363#pullrequestreview-1036783709) at 2022-07-12 10:32 PM PDT -tunglinn,2022-07-13T19:55:40Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1183619093) at 2022-07-13 12:55 PM PDT -tunglinn,2022-07-14T01:59:13Z,- tunglinn commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1183868826) at 2022-07-13 06:59 PM PDT -tunglinn,2022-07-16T04:58:44Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1186089661) at 2022-07-15 09:58 PM PDT -tunglinn,2022-07-16T04:58:45Z,- tunglinn closed issue as completed: [2933](https://github.com/hackforla/website/issues/2933#event-7005691107) at 2022-07-15 09:58 PM PDT -tunglinn,2022-07-16T05:16:07Z,- tunglinn assigned to issue: [3357](https://github.com/hackforla/website/issues/3357) at 2022-07-15 10:16 PM PDT -tunglinn,2022-07-17T17:03:01Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186572913) at 2022-07-17 10:03 AM PDT -tunglinn,2022-07-17T17:08:51Z,- tunglinn commented on pull request: [3375](https://github.com/hackforla/website/pull/3375#issuecomment-1186574029) at 2022-07-17 10:08 AM PDT -tunglinn,2022-07-17T17:17:54Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186575429) at 2022-07-17 10:17 AM PDT -tunglinn,2022-07-17T17:28:06Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186576822) at 2022-07-17 10:28 AM PDT -tunglinn,2022-07-17T18:52:33Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186588735) at 2022-07-17 11:52 AM PDT -tunglinn,2022-07-18T05:03:29Z,- tunglinn submitted pull request review: [3375](https://github.com/hackforla/website/pull/3375#pullrequestreview-1041281101) at 2022-07-17 10:03 PM PDT -tunglinn,2022-07-19T21:02:19Z,- tunglinn commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1189546644) at 2022-07-19 02:02 PM PDT -tunglinn,2022-07-20T00:26:03Z,- tunglinn commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1189673674) at 2022-07-19 05:26 PM PDT -tunglinn,2022-07-20T03:17:12Z,- tunglinn opened issue: [3402](https://github.com/hackforla/website/issues/3402) at 2022-07-19 08:17 PM PDT -tunglinn,2022-07-20T16:45:44Z,- tunglinn commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1190514282) at 2022-07-20 09:45 AM PDT -tunglinn,2022-07-20T16:47:34Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1190515971) at 2022-07-20 09:47 AM PDT -tunglinn,2022-07-24T17:27:21Z,- tunglinn opened pull request: [3424](https://github.com/hackforla/website/pull/3424) at 2022-07-24 10:27 AM PDT -tunglinn,2022-07-24T17:51:44Z,- tunglinn pull request closed w/o merging: [3424](https://github.com/hackforla/website/pull/3424#event-7051702367) at 2022-07-24 10:51 AM PDT -tunglinn,2022-07-25T18:52:53Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1194479655) at 2022-07-25 11:52 AM PDT -tunglinn,2022-07-25T20:25:21Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1194585152) at 2022-07-25 01:25 PM PDT -tunglinn,2022-07-25T21:55:07Z,- tunglinn commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1194679764) at 2022-07-25 02:55 PM PDT -tunglinn,2022-07-25T21:55:08Z,- tunglinn closed issue as completed: [3121](https://github.com/hackforla/website/issues/3121#event-7060011196) at 2022-07-25 02:55 PM PDT -tunglinn,2022-07-26T19:11:43Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1195877558) at 2022-07-26 12:11 PM PDT -tunglinn,2022-07-27T01:13:01Z,- tunglinn opened pull request: [3431](https://github.com/hackforla/website/pull/3431) at 2022-07-26 06:13 PM PDT -tunglinn,2022-07-27T01:15:18Z,- tunglinn commented on pull request: [3430](https://github.com/hackforla/website/pull/3430#issuecomment-1196161047) at 2022-07-26 06:15 PM PDT -tunglinn,2022-07-27T02:45:02Z,- tunglinn submitted pull request review: [3430](https://github.com/hackforla/website/pull/3430#pullrequestreview-1051821305) at 2022-07-26 07:45 PM PDT -tunglinn,2022-07-31T17:22:10Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1200465799) at 2022-07-31 10:22 AM PDT -tunglinn,2022-08-02T21:18:32Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1203223763) at 2022-08-02 02:18 PM PDT -tunglinn,2022-08-04T20:29:02Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1205735258) at 2022-08-04 01:29 PM PDT -tunglinn,2022-08-09T20:03:41Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1209819496) at 2022-08-09 01:03 PM PDT -tunglinn,2022-08-09T20:05:33Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1209821129) at 2022-08-09 01:05 PM PDT -tunglinn,2022-08-15T22:07:03Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1215912271) at 2022-08-15 03:07 PM PDT -tunglinn,2022-08-15T22:16:37Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1215920677) at 2022-08-15 03:16 PM PDT -tunglinn,2022-08-16T15:25:42Z,- tunglinn commented on pull request: [3470](https://github.com/hackforla/website/pull/3470#issuecomment-1216791809) at 2022-08-16 08:25 AM PDT -tunglinn,2022-08-16T15:34:52Z,- tunglinn submitted pull request review: [3470](https://github.com/hackforla/website/pull/3470#pullrequestreview-1074347117) at 2022-08-16 08:34 AM PDT -tunglinn,2022-08-19T03:33:50Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1220209679) at 2022-08-18 08:33 PM PDT -tunglinn,2022-08-23T21:36:47Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1224912030) at 2022-08-23 02:36 PM PDT -tunglinn,2022-08-30T22:16:53Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1232225068) at 2022-08-30 03:16 PM PDT -tunglinn,2022-09-06T04:35:57Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1237649513) at 2022-09-05 09:35 PM PDT -tunglinn,2022-09-09T00:51:23Z,- tunglinn pull request merged: [3431](https://github.com/hackforla/website/pull/3431#event-7352391934) at 2022-09-08 05:51 PM PDT -tunglinn,2022-09-20T17:06:20Z,- tunglinn commented on pull request: [3566](https://github.com/hackforla/website/pull/3566#issuecomment-1252648537) at 2022-09-20 10:06 AM PDT -tunglinn,2022-09-20T17:11:29Z,- tunglinn submitted pull request review: [3566](https://github.com/hackforla/website/pull/3566#pullrequestreview-1114200736) at 2022-09-20 10:11 AM PDT -tunglinn,2022-09-22T20:05:49Z,- tunglinn assigned to issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-917251499) at 2022-09-22 01:05 PM PDT -tunglinn,2022-09-22T20:08:18Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1255495762) at 2022-09-22 01:08 PM PDT -tunglinn,2022-09-26T20:58:08Z,- tunglinn commented on pull request: [3582](https://github.com/hackforla/website/pull/3582#issuecomment-1258624606) at 2022-09-26 01:58 PM PDT -tunglinn,2022-09-26T21:28:31Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1258653679) at 2022-09-26 02:28 PM PDT -tunglinn,2022-09-27T18:59:07Z,- tunglinn submitted pull request review: [3582](https://github.com/hackforla/website/pull/3582#pullrequestreview-1122531780) at 2022-09-27 11:59 AM PDT -tunglinn,2022-09-27T19:00:16Z,- tunglinn commented on pull request: [3585](https://github.com/hackforla/website/pull/3585#issuecomment-1259926535) at 2022-09-27 12:00 PM PDT -tunglinn,2022-09-27T19:03:53Z,- tunglinn submitted pull request review: [3585](https://github.com/hackforla/website/pull/3585#pullrequestreview-1122537627) at 2022-09-27 12:03 PM PDT -tunglinn,2022-10-02T05:05:08Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1264552892) at 2022-10-01 10:05 PM PDT -tunglinn,2022-10-05T03:17:17Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1267868258) at 2022-10-04 08:17 PM PDT -tunglinn,2022-10-14T02:39:31Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1278395529) at 2022-10-13 07:39 PM PDT -tunglinn,2022-10-16T18:17:21Z,- tunglinn unassigned from issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1280024229) at 2022-10-16 11:17 AM PDT -tunglinn,2022-10-24T21:11:43Z,- tunglinn assigned to issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1244867628) at 2022-10-24 02:11 PM PDT -tunglinn,2022-10-24T21:15:13Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1289626227) at 2022-10-24 02:15 PM PDT -tunglinn,2022-10-27T00:53:45Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1292825432) at 2022-10-26 05:53 PM PDT -tunglinn,2022-10-27T02:31:47Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1292887444) at 2022-10-26 07:31 PM PDT -tunglinn,2022-10-28T18:09:32Z,- tunglinn commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295307209) at 2022-10-28 11:09 AM PDT -tunglinn,2022-10-28T18:12:06Z,- tunglinn commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295309650) at 2022-10-28 11:12 AM PDT -tunglinn,2022-10-28T18:58:15Z,- tunglinn commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295348510) at 2022-10-28 11:58 AM PDT -tunglinn,2022-10-30T00:31:02Z,- tunglinn submitted pull request review: [3674](https://github.com/hackforla/website/pull/3674#pullrequestreview-1161050906) at 2022-10-29 05:31 PM PDT -tunglinn,2022-11-05T03:46:59Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1304393475) at 2022-11-04 07:46 PM PST -tunglinn,2022-11-09T01:16:47Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1308061896) at 2022-11-08 05:16 PM PST -tunglinn,2022-11-17T06:38:51Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1318159109) at 2022-11-16 10:38 PM PST -tunglinn,2022-11-17T07:00:08Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1318177462) at 2022-11-16 11:00 PM PST -tunglinn,2022-11-19T05:42:34Z,- tunglinn submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1187024160) at 2022-11-18 09:42 PM PST -tunglinn,2022-11-22T04:22:56Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1323030841) at 2022-11-21 08:22 PM PST -tunglinn,2022-11-28T21:13:01Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1329770391) at 2022-11-28 01:13 PM PST -tunglinn,2022-11-28T23:29:41Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1329882680) at 2022-11-28 03:29 PM PST -tunglinn,2022-12-01T19:34:58Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1334264650) at 2022-12-01 11:34 AM PST -tunglinn,2022-12-08T03:21:26Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1341933361) at 2022-12-07 07:21 PM PST -tunglinn,2022-12-08T20:55:22Z,- tunglinn submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1210766142) at 2022-12-08 12:55 PM PST -tunglinn,2022-12-08T21:07:13Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1343353243) at 2022-12-08 01:07 PM PST -tunglinn,2023-03-01T07:45:12Z,- tunglinn opened pull request: [4078](https://github.com/hackforla/website/pull/4078) at 2023-02-28 11:45 PM PST -tunglinn,2023-03-05T02:28:29Z,- tunglinn pull request merged: [4078](https://github.com/hackforla/website/pull/4078#event-8667204608) at 2023-03-04 06:28 PM PST -TusharP05,2023-09-20T18:08:15Z,- TusharP05 commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1728211476) at 2023-09-20 11:08 AM PDT -TusharP05,2023-09-20T18:39:30Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1728250650) at 2023-09-20 11:39 AM PDT -TusharP05,2023-09-20T19:25:53Z,- TusharP05 opened pull request: [5562](https://github.com/hackforla/website/pull/5562) at 2023-09-20 12:25 PM PDT -TusharP05,2023-09-23T14:56:34Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732335980) at 2023-09-23 07:56 AM PDT -TusharP05,2023-09-23T21:05:40Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732409132) at 2023-09-23 02:05 PM PDT -TusharP05,2023-09-24T16:49:16Z,- TusharP05 pull request closed w/o merging: [5562](https://github.com/hackforla/website/pull/5562#event-10455587197) at 2023-09-24 09:49 AM PDT -TusharP05,2023-09-27T12:54:49Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1737342606) at 2023-09-27 05:54 AM PDT -tylerthome,2020-05-18T21:10:02Z,- tylerthome commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-630436795) at 2020-05-18 02:10 PM PDT -tylerthome,2020-05-18T21:10:08Z,- tylerthome reopened issue: [254](https://github.com/hackforla/website/issues/254#event-3349132273) at 2020-05-18 02:10 PM PDT -tylerthome,2020-05-31T18:05:30Z,- tylerthome assigned to issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633262873) at 2020-05-31 11:05 AM PDT -tylerthome,2020-06-01T03:02:21Z,- tylerthome assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-31 08:02 PM PDT -tylerthome,2020-06-07T08:48:50Z,- tylerthome opened pull request: [566](https://github.com/hackforla/website/pull/566) at 2020-06-07 01:48 AM PDT -tylerthome,2020-06-14T17:03:36Z,- tylerthome commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-643794029) at 2020-06-14 10:03 AM PDT -tylerthome,2020-06-26T07:00:29Z,- tylerthome commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-650012728) at 2020-06-26 12:00 AM PDT -tylerthome,2020-07-22T14:38:17Z,- tylerthome pull request closed w/o merging: [566](https://github.com/hackforla/website/pull/566#event-3576098033) at 2020-07-22 07:38 AM PDT -typingtrex,5872,SKILLS ISSUE -typingtrex,2023-11-07T04:37:17Z,- typingtrex opened issue: [5872](https://github.com/hackforla/website/issues/5872) at 2023-11-06 08:37 PM PST -typingtrex,2023-11-07T04:37:17Z,- typingtrex assigned to issue: [5872](https://github.com/hackforla/website/issues/5872) at 2023-11-06 08:37 PM PST -typingtrex,2023-11-07T13:01:18Z,- typingtrex commented on issue: [5872](https://github.com/hackforla/website/issues/5872#issuecomment-1798458871) at 2023-11-07 05:01 AM PST -Unity7,3510,SKILLS ISSUE -Unity7,2022-08-31T03:06:29Z,- Unity7 opened issue: [3510](https://github.com/hackforla/website/issues/3510) at 2022-08-30 08:06 PM PDT -Unity7,2022-09-13T18:54:56Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1245832295) at 2022-09-13 11:54 AM PDT -Unity7,2022-09-14T02:48:37Z,- Unity7 assigned to issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1245832295) at 2022-09-13 07:48 PM PDT -Unity7,2022-09-14T03:03:40Z,- Unity7 assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1200459192) at 2022-09-13 08:03 PM PDT -Unity7,2022-09-14T03:04:19Z,- Unity7 unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1246172192) at 2022-09-13 08:04 PM PDT -Unity7,2022-09-14T03:07:40Z,- Unity7 assigned to issue: [2828](https://github.com/hackforla/website/issues/2828#issuecomment-1046972078) at 2022-09-13 08:07 PM PDT -Unity7,2022-09-14T03:08:32Z,- Unity7 commented on issue: [2828](https://github.com/hackforla/website/issues/2828#issuecomment-1246174733) at 2022-09-13 08:08 PM PDT -Unity7,2022-09-16T01:45:36Z,- Unity7 opened pull request: [3557](https://github.com/hackforla/website/pull/3557) at 2022-09-15 06:45 PM PDT -Unity7,2022-09-16T01:56:35Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1248825564) at 2022-09-15 06:56 PM PDT -Unity7,2022-09-16T01:57:59Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1248826256) at 2022-09-15 06:57 PM PDT -Unity7,2022-09-16T20:11:21Z,- Unity7 pull request merged: [3557](https://github.com/hackforla/website/pull/3557#event-7405853110) at 2022-09-16 01:11 PM PDT -Unity7,2022-09-17T01:24:41Z,- Unity7 assigned to issue: [3100](https://github.com/hackforla/website/issues/3100#issuecomment-1116836777) at 2022-09-16 06:24 PM PDT -Unity7,2022-09-17T01:25:12Z,- Unity7 commented on issue: [3100](https://github.com/hackforla/website/issues/3100#issuecomment-1249969750) at 2022-09-16 06:25 PM PDT -Unity7,2022-09-17T01:44:12Z,- Unity7 opened pull request: [3561](https://github.com/hackforla/website/pull/3561) at 2022-09-16 06:44 PM PDT -Unity7,2022-09-21T20:24:20Z,- Unity7 commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1254190773) at 2022-09-21 01:24 PM PDT -Unity7,2022-09-21T21:59:04Z,- Unity7 pull request merged: [3561](https://github.com/hackforla/website/pull/3561#event-7434583990) at 2022-09-21 02:59 PM PDT -Unity7,2022-09-22T02:12:48Z,- Unity7 assigned to issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1124444941) at 2022-09-21 07:12 PM PDT -Unity7,2022-09-22T02:13:18Z,- Unity7 commented on issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1254425279) at 2022-09-21 07:13 PM PDT -Unity7,2022-09-23T21:26:47Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1256693436) at 2022-09-23 02:26 PM PDT -Unity7,2022-09-23T21:28:18Z,- Unity7 commented on issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1256694522) at 2022-09-23 02:28 PM PDT -Unity7,2022-09-24T00:15:15Z,- Unity7 opened pull request: [3579](https://github.com/hackforla/website/pull/3579) at 2022-09-23 05:15 PM PDT -Unity7,2022-09-24T00:33:28Z,- Unity7 submitted pull request review: [3577](https://github.com/hackforla/website/pull/3577#pullrequestreview-1119126661) at 2022-09-23 05:33 PM PDT -Unity7,2022-09-24T00:34:04Z,- Unity7 submitted pull request review: [3578](https://github.com/hackforla/website/pull/3578#pullrequestreview-1119126759) at 2022-09-23 05:34 PM PDT -Unity7,2022-09-25T15:09:28Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1257215171) at 2022-09-25 08:09 AM PDT -Unity7,2022-09-26T15:05:51Z,- Unity7 pull request merged: [3579](https://github.com/hackforla/website/pull/3579#event-7459841963) at 2022-09-26 08:05 AM PDT -Unity7,2022-09-29T20:00:01Z,- Unity7 assigned to issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1001077082) at 2022-09-29 01:00 PM PDT -Unity7,2022-09-29T20:00:44Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1262750234) at 2022-09-29 01:00 PM PDT -Unity7,2022-09-29T20:01:46Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1262752769) at 2022-09-29 01:01 PM PDT -Unity7,2022-10-01T22:48:33Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1264499594) at 2022-10-01 03:48 PM PDT -Unity7,2022-10-04T22:46:30Z,- Unity7 commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1267685409) at 2022-10-04 03:46 PM PDT -Unity7,2022-10-05T23:01:51Z,- Unity7 submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1132137094) at 2022-10-05 04:01 PM PDT -Unity7,2022-10-09T13:50:56Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1272547153) at 2022-10-09 06:50 AM PDT -Unity7,2022-10-16T12:47:47Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1279963115) at 2022-10-16 05:47 AM PDT -Unity7,2022-10-16T12:50:16Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1279963466) at 2022-10-16 05:50 AM PDT -Unity7,2022-10-20T23:23:14Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1286267378) at 2022-10-20 04:23 PM PDT -Unity7,2022-10-22T18:54:25Z,- Unity7 opened pull request: [3649](https://github.com/hackforla/website/pull/3649) at 2022-10-22 11:54 AM PDT -Unity7,2022-10-24T01:02:53Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288265340) at 2022-10-23 06:02 PM PDT -Unity7,2022-10-24T16:21:07Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1289280525) at 2022-10-24 09:21 AM PDT -Unity7,2022-10-25T13:37:25Z,- Unity7 commented on pull request: [3658](https://github.com/hackforla/website/pull/3658#issuecomment-1290574706) at 2022-10-25 06:37 AM PDT -Unity7,2022-10-25T13:38:04Z,- Unity7 commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1290576351) at 2022-10-25 06:38 AM PDT -Unity7,2022-10-26T01:20:14Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1291333511) at 2022-10-25 06:20 PM PDT -Unity7,2022-10-28T15:50:42Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1295161492) at 2022-10-28 08:50 AM PDT -Unity7,2022-11-04T15:06:09Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1303704845) at 2022-11-04 08:06 AM PDT -Unity7,2022-11-23T01:15:58Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1324427866) at 2022-11-22 05:15 PM PST -Unity7,2022-11-23T01:18:09Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1324429242) at 2022-11-22 05:18 PM PST -Unity7,2022-11-23T01:18:15Z,- Unity7 closed issue as completed: [3510](https://github.com/hackforla/website/issues/3510#event-7872802018) at 2022-11-22 05:18 PM PST -Unity7,2022-11-23T01:22:43Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1324432119) at 2022-11-22 05:22 PM PST -Unity7,2022-11-30T03:54:51Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1331611582) at 2022-11-29 07:54 PM PST -Unity7,2023-01-24T17:34:35Z,- Unity7 pull request merged: [3649](https://github.com/hackforla/website/pull/3649#event-8346687821) at 2023-01-24 09:34 AM PST -upendrasahni,2023-02-14T07:56:32Z,- upendrasahni commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1429283900) at 2023-02-13 11:56 PM PST -urvishp13,6611,SKILLS ISSUE -urvishp13,2024-04-09T03:45:04Z,- urvishp13 opened issue: [6611](https://github.com/hackforla/website/issues/6611) at 2024-04-08 08:45 PM PDT -urvishp13,2024-04-09T03:45:18Z,- urvishp13 assigned to issue: [6611](https://github.com/hackforla/website/issues/6611) at 2024-04-08 08:45 PM PDT -urvishp13,2024-04-09T17:18:04Z,- urvishp13 assigned to issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-09 10:18 AM PDT -urvishp13,2024-04-09T17:22:26Z,- urvishp13 commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2045733309) at 2024-04-09 10:22 AM PDT -urvishp13,2024-04-09T17:23:12Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2045734438) at 2024-04-09 10:23 AM PDT -urvishp13,2024-04-10T17:24:37Z,- urvishp13 commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2048098754) at 2024-04-10 10:24 AM PDT -urvishp13,2024-04-10T21:19:50Z,- urvishp13 commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2048453837) at 2024-04-10 02:19 PM PDT -urvishp13,2024-04-11T15:43:56Z,- urvishp13 opened pull request: [6624](https://github.com/hackforla/website/pull/6624) at 2024-04-11 08:43 AM PDT -urvishp13,2024-04-12T05:14:32Z,- urvishp13 pull request merged: [6624](https://github.com/hackforla/website/pull/6624#event-12444525658) at 2024-04-11 10:14 PM PDT -urvishp13,2024-04-12T16:13:22Z,- urvishp13 assigned to issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-1986776645) at 2024-04-12 09:13 AM PDT -urvishp13,2024-04-12T16:17:49Z,- urvishp13 unassigned from issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-2052061806) at 2024-04-12 09:17 AM PDT -urvishp13,2024-04-12T16:20:54Z,- urvishp13 assigned to issue: [6178](https://github.com/hackforla/website/issues/6178) at 2024-04-12 09:20 AM PDT -urvishp13,2024-04-12T16:26:04Z,- urvishp13 commented on issue: [6178](https://github.com/hackforla/website/issues/6178#issuecomment-2052081595) at 2024-04-12 09:26 AM PDT -urvishp13,2024-04-12T18:05:36Z,- urvishp13 opened pull request: [6630](https://github.com/hackforla/website/pull/6630) at 2024-04-12 11:05 AM PDT -urvishp13,2024-04-14T04:55:34Z,- urvishp13 pull request merged: [6630](https://github.com/hackforla/website/pull/6630#event-12459475704) at 2024-04-13 09:55 PM PDT -urvishp13,2024-04-15T18:25:16Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2057547427) at 2024-04-15 11:25 AM PDT -urvishp13,2024-04-16T14:28:52Z,- urvishp13 assigned to issue: [6493](https://github.com/hackforla/website/issues/6493) at 2024-04-16 07:28 AM PDT -urvishp13,2024-04-16T14:32:25Z,- urvishp13 commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2059242878) at 2024-04-16 07:32 AM PDT -urvishp13,2024-04-16T17:42:31Z,- urvishp13 commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2059627703) at 2024-04-16 10:42 AM PDT -urvishp13,2024-04-18T01:48:02Z,- urvishp13 commented on pull request: [6652](https://github.com/hackforla/website/pull/6652#issuecomment-2062846593) at 2024-04-17 06:48 PM PDT -urvishp13,2024-04-18T15:27:58Z,- urvishp13 submitted pull request review: [6652](https://github.com/hackforla/website/pull/6652#pullrequestreview-2009233360) at 2024-04-18 08:27 AM PDT -urvishp13,2024-04-22T15:58:10Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2070011039) at 2024-04-22 08:58 AM PDT -urvishp13,2024-04-23T15:47:50Z,- urvishp13 assigned to issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2063457193) at 2024-04-23 08:47 AM PDT -urvishp13,2024-04-23T15:50:57Z,- urvishp13 commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2072795371) at 2024-04-23 08:50 AM PDT -urvishp13,2024-04-23T16:54:08Z,- urvishp13 commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2072920611) at 2024-04-23 09:54 AM PDT -urvishp13,2024-04-24T02:44:14Z,- urvishp13 commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2073897579) at 2024-04-23 07:44 PM PDT -urvishp13,2024-04-25T16:54:51Z,- urvishp13 assigned to issue: [6679](https://github.com/hackforla/website/issues/6679#issuecomment-2063364767) at 2024-04-25 09:54 AM PDT -urvishp13,2024-04-25T17:11:38Z,- urvishp13 commented on issue: [6679](https://github.com/hackforla/website/issues/6679#issuecomment-2077771789) at 2024-04-25 10:11 AM PDT -urvishp13,2024-04-25T17:28:28Z,- urvishp13 opened issue: [6750](https://github.com/hackforla/website/issues/6750) at 2024-04-25 10:28 AM PDT -urvishp13,2024-04-25T17:43:32Z,- urvishp13 opened issue: [6751](https://github.com/hackforla/website/issues/6751) at 2024-04-25 10:43 AM PDT -urvishp13,2024-04-25T17:48:57Z,- urvishp13 opened issue: [6752](https://github.com/hackforla/website/issues/6752) at 2024-04-25 10:48 AM PDT -urvishp13,2024-04-25T17:53:01Z,- urvishp13 opened issue: [6753](https://github.com/hackforla/website/issues/6753) at 2024-04-25 10:53 AM PDT -urvishp13,2024-04-25T17:59:46Z,- urvishp13 opened issue: [6754](https://github.com/hackforla/website/issues/6754) at 2024-04-25 10:59 AM PDT -urvishp13,2024-04-25T18:04:17Z,- urvishp13 opened issue: [6755](https://github.com/hackforla/website/issues/6755) at 2024-04-25 11:04 AM PDT -urvishp13,2024-04-25T18:08:00Z,- urvishp13 opened issue: [6756](https://github.com/hackforla/website/issues/6756) at 2024-04-25 11:08 AM PDT -urvishp13,2024-04-25T18:09:27Z,- urvishp13 opened issue: [6757](https://github.com/hackforla/website/issues/6757) at 2024-04-25 11:09 AM PDT -urvishp13,2024-04-25T18:11:02Z,- urvishp13 opened issue: [6758](https://github.com/hackforla/website/issues/6758) at 2024-04-25 11:11 AM PDT -urvishp13,2024-04-30T16:28:27Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2085879756) at 2024-04-30 09:28 AM PDT -urvishp13,2024-04-30T16:30:37Z,- urvishp13 assigned to issue: [6783](https://github.com/hackforla/website/issues/6783) at 2024-04-30 09:30 AM PDT -urvishp13,2024-04-30T16:33:51Z,- urvishp13 commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2085901063) at 2024-04-30 09:33 AM PDT -urvishp13,2024-04-30T17:40:33Z,- urvishp13 commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2086198950) at 2024-04-30 10:40 AM PDT -urvishp13,2024-04-30T17:43:10Z,- urvishp13 commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086212543) at 2024-04-30 10:43 AM PDT -urvishp13,2024-05-02T18:17:16Z,- urvishp13 commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2091211206) at 2024-05-02 11:17 AM PDT -urvishp13,2024-05-07T16:49:46Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2098891912) at 2024-05-07 09:49 AM PDT -urvishp13,2024-05-07T16:52:59Z,- urvishp13 commented on pull request: [6814](https://github.com/hackforla/website/pull/6814#issuecomment-2098897260) at 2024-05-07 09:52 AM PDT -urvishp13,2024-05-07T17:47:21Z,- urvishp13 submitted pull request review: [6814](https://github.com/hackforla/website/pull/6814#pullrequestreview-2043818830) at 2024-05-07 10:47 AM PDT -urvishp13,2024-05-14T16:42:13Z,- urvishp13 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110677961) at 2024-05-14 09:42 AM PDT -urvishp13,2024-05-14T17:43:31Z,- urvishp13 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110787831) at 2024-05-14 10:43 AM PDT -urvishp13,2024-05-14T18:10:32Z,- urvishp13 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110830056) at 2024-05-14 11:10 AM PDT -urvishp13,2024-05-14T18:27:26Z,- urvishp13 submitted pull request review: [6852](https://github.com/hackforla/website/pull/6852#pullrequestreview-2056121994) at 2024-05-14 11:27 AM PDT -urvishp13,2024-05-14T18:35:32Z,- urvishp13 closed issue as completed: [6611](https://github.com/hackforla/website/issues/6611#event-12806482927) at 2024-05-14 11:35 AM PDT -urvishp13,2024-05-14T19:51:41Z,- urvishp13 commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2111028496) at 2024-05-14 12:51 PM PDT -urvishp13,2024-05-17T02:15:57Z,- urvishp13 assigned to issue: [6615](https://github.com/hackforla/website/issues/6615) at 2024-05-16 07:15 PM PDT -urvishp13,2024-05-17T02:55:10Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2116538203) at 2024-05-16 07:55 PM PDT -urvishp13,2024-05-17T19:13:00Z,- urvishp13 opened issue: [6857](https://github.com/hackforla/website/issues/6857) at 2024-05-17 12:13 PM PDT -urvishp13,2024-05-17T19:20:20Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118238003) at 2024-05-17 12:20 PM PDT -urvishp13,2024-05-17T19:27:59Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118246669) at 2024-05-17 12:27 PM PDT -urvishp13,2024-05-17T20:27:36Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118338950) at 2024-05-17 01:27 PM PDT -urvishp13,2024-05-17T20:40:11Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118355487) at 2024-05-17 01:40 PM PDT -usaboo,2748,SKILLS ISSUE -usaboo,2022-02-08T03:47:45Z,- usaboo opened issue: [2748](https://github.com/hackforla/website/issues/2748) at 2022-02-07 07:47 PM PST -usaboo,2022-02-11T21:09:15Z,- usaboo assigned to issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1032972780) at 2022-02-11 01:09 PM PST -usaboo,2022-02-20T17:21:40Z,- usaboo assigned to issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1046093336) at 2022-02-20 09:21 AM PST -usaboo,2022-02-20T17:34:33Z,- usaboo assigned to issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-958012986) at 2022-02-20 09:34 AM PST -usaboo,2022-02-20T17:35:12Z,- usaboo unassigned from issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-958012986) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:35:16Z,- usaboo closed issue by PR 2841: [2426](https://github.com/hackforla/website/issues/2426#event-6107553795) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:35:18Z,- usaboo reopened issue: [2426](https://github.com/hackforla/website/issues/2426#event-6107553795) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:35:47Z,- usaboo assigned to issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1043672010) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:36:05Z,- usaboo unassigned from issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1046093336) at 2022-02-20 09:36 AM PST -usaboo,2022-02-20T17:40:49Z,- usaboo commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1046287015) at 2022-02-20 09:40 AM PST -usaboo,2022-02-20T20:00:38Z,- usaboo opened issue: [2807](https://github.com/hackforla/website/issues/2807) at 2022-02-20 12:00 PM PST -usaboo,2022-02-20T23:35:14Z,- usaboo commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-02-20 03:35 PM PST -usaboo,2022-02-21T01:02:35Z,- usaboo opened issue: [2821](https://github.com/hackforla/website/issues/2821) at 2022-02-20 05:02 PM PST -usaboo,2022-02-21T01:07:23Z,- usaboo opened issue: [2822](https://github.com/hackforla/website/issues/2822) at 2022-02-20 05:07 PM PST -usaboo,2022-02-21T01:12:18Z,- usaboo opened issue: [2823](https://github.com/hackforla/website/issues/2823) at 2022-02-20 05:12 PM PST -usaboo,2022-02-21T01:20:10Z,- usaboo opened issue: [2824](https://github.com/hackforla/website/issues/2824) at 2022-02-20 05:20 PM PST -usaboo,2022-02-21T01:23:54Z,- usaboo opened issue: [2825](https://github.com/hackforla/website/issues/2825) at 2022-02-20 05:23 PM PST -usaboo,2022-02-21T14:55:44Z,- usaboo opened issue: [2826](https://github.com/hackforla/website/issues/2826) at 2022-02-21 06:55 AM PST -usaboo,2022-02-21T15:00:05Z,- usaboo opened issue: [2827](https://github.com/hackforla/website/issues/2827) at 2022-02-21 07:00 AM PST -usaboo,2022-02-21T15:05:10Z,- usaboo opened issue: [2828](https://github.com/hackforla/website/issues/2828) at 2022-02-21 07:05 AM PST -usaboo,2022-02-21T15:08:36Z,- usaboo opened issue: [2829](https://github.com/hackforla/website/issues/2829) at 2022-02-21 07:08 AM PST -usaboo,2022-02-23T03:39:10Z,- usaboo commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1048422301) at 2022-02-22 07:39 PM PST -usaboo,2022-02-23T22:01:40Z,- usaboo commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1049256804) at 2022-02-23 02:01 PM PST -usaboo,2022-02-24T21:07:04Z,- usaboo opened pull request: [2884](https://github.com/hackforla/website/pull/2884) at 2022-02-24 01:07 PM PST -usaboo,2022-02-24T21:09:41Z,- usaboo commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1050267015) at 2022-02-24 01:09 PM PST -usaboo,2022-02-26T19:22:29Z,- usaboo pull request closed w/o merging: [2884](https://github.com/hackforla/website/pull/2884#event-6146639532) at 2022-02-26 11:22 AM PST -usaboo,2022-02-26T21:50:15Z,- usaboo commented on pull request: [2884](https://github.com/hackforla/website/pull/2884#issuecomment-1052668061) at 2022-02-26 01:50 PM PST -usaboo,2022-02-26T22:14:25Z,- usaboo opened pull request: [2893](https://github.com/hackforla/website/pull/2893) at 2022-02-26 02:14 PM PST -usaboo,2022-02-26T22:29:08Z,- usaboo assigned to issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-927332428) at 2022-02-26 02:29 PM PST -usaboo,2022-02-26T22:31:10Z,- usaboo commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-1052717268) at 2022-02-26 02:31 PM PST -usaboo,2022-02-27T07:49:28Z,- usaboo pull request merged: [2893](https://github.com/hackforla/website/pull/2893#event-6149415211) at 2022-02-26 11:49 PM PST -usaboo,2022-02-27T17:08:19Z,- usaboo opened pull request: [2899](https://github.com/hackforla/website/pull/2899) at 2022-02-27 09:08 AM PST -usaboo,2022-02-27T18:26:47Z,- usaboo commented on pull request: [2882](https://github.com/hackforla/website/pull/2882#issuecomment-1053638894) at 2022-02-27 10:26 AM PST -usaboo,2022-03-01T03:51:55Z,- usaboo pull request merged: [2899](https://github.com/hackforla/website/pull/2899#event-6159086078) at 2022-02-28 07:51 PM PST -usaboo,2022-03-01T18:21:55Z,- usaboo submitted pull request review: [2882](https://github.com/hackforla/website/pull/2882#pullrequestreview-896669044) at 2022-03-01 10:21 AM PST -usaboo,2022-03-01T18:31:43Z,- usaboo assigned to issue: [2155](https://github.com/hackforla/website/issues/2155) at 2022-03-01 10:31 AM PST -usaboo,2022-03-01T18:33:03Z,- usaboo commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1055737024) at 2022-03-01 10:33 AM PST -usaboo,2022-03-07T19:57:06Z,- usaboo commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1061076762) at 2022-03-07 11:57 AM PST -usaboo,2022-03-11T04:33:55Z,- usaboo opened pull request: [2962](https://github.com/hackforla/website/pull/2962) at 2022-03-10 08:33 PM PST -usaboo,2022-03-11T19:58:46Z,- usaboo submitted pull request review: [2963](https://github.com/hackforla/website/pull/2963#pullrequestreview-907686475) at 2022-03-11 11:58 AM PST -usaboo,2022-03-11T21:13:46Z,- usaboo commented on pull request: [2963](https://github.com/hackforla/website/pull/2963#issuecomment-1065532852) at 2022-03-11 01:13 PM PST -usaboo,2022-03-11T21:40:32Z,- usaboo submitted pull request review: [2943](https://github.com/hackforla/website/pull/2943#pullrequestreview-907801321) at 2022-03-11 01:40 PM PST -usaboo,2022-03-15T15:18:07Z,- usaboo commented on pull request: [2982](https://github.com/hackforla/website/pull/2982#issuecomment-1068110453) at 2022-03-15 08:18 AM PDT -usaboo,2022-03-16T02:39:22Z,- usaboo commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1068672233) at 2022-03-15 07:39 PM PDT -usaboo,2022-03-21T00:42:03Z,- usaboo submitted pull request review: [2984](https://github.com/hackforla/website/pull/2984#pullrequestreview-915176382) at 2022-03-20 05:42 PM PDT -usaboo,2022-03-21T01:01:37Z,- usaboo closed issue as completed: [2748](https://github.com/hackforla/website/issues/2748#event-6272134956) at 2022-03-20 06:01 PM PDT -usaboo,2022-03-21T01:02:06Z,- usaboo commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1073394873) at 2022-03-20 06:02 PM PDT -usaboo,2022-03-21T01:14:19Z,- usaboo submitted pull request review: [2982](https://github.com/hackforla/website/pull/2982#pullrequestreview-915182501) at 2022-03-20 06:14 PM PDT -usaboo,2022-03-27T17:24:00Z,- usaboo commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1079978729) at 2022-03-27 10:24 AM PDT -usaboo,2022-03-28T00:29:45Z,- usaboo submitted pull request review: [3014](https://github.com/hackforla/website/pull/3014#pullrequestreview-922521863) at 2022-03-27 05:29 PM PDT -usaboo,2022-03-31T14:33:47Z,- usaboo commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1084669617) at 2022-03-31 07:33 AM PDT -usaboo,2022-04-06T15:31:22Z,- usaboo commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1090407751) at 2022-04-06 08:31 AM PDT -usaboo,2022-05-07T04:30:43Z,- usaboo commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1120131715) at 2022-05-06 09:30 PM PDT -usaboo,2022-05-11T02:30:04Z,- usaboo commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1123113058) at 2022-05-10 07:30 PM PDT -usaboo,2022-06-15T04:44:52Z,- usaboo commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1155981584) at 2022-06-14 09:44 PM PDT -usaboo,2022-06-15T05:01:33Z,- usaboo commented on pull request: [3235](https://github.com/hackforla/website/pull/3235#issuecomment-1155989237) at 2022-06-14 10:01 PM PDT -usaboo,2022-06-16T03:01:59Z,- usaboo submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1008433550) at 2022-06-15 08:01 PM PDT -usaboo,2022-06-16T04:32:38Z,- usaboo submitted pull request review: [3235](https://github.com/hackforla/website/pull/3235#pullrequestreview-1008478104) at 2022-06-15 09:32 PM PDT -usaboo,2022-06-26T17:27:41Z,- usaboo commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1166594993) at 2022-06-26 10:27 AM PDT -usaboo,2022-06-26T17:28:55Z,- usaboo commented on pull request: [3183](https://github.com/hackforla/website/pull/3183#issuecomment-1166595271) at 2022-06-26 10:28 AM PDT -usaboo,2022-06-26T17:35:37Z,- usaboo commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1166596854) at 2022-06-26 10:35 AM PDT -usaboo,2022-06-26T18:55:40Z,- usaboo opened issue: [3314](https://github.com/hackforla/website/issues/3314) at 2022-06-26 11:55 AM PDT -usaboo,2022-06-26T19:10:10Z,- usaboo assigned to issue: [3170](https://github.com/hackforla/website/issues/3170#issuecomment-1135150046) at 2022-06-26 12:10 PM PDT -usaboo,2022-06-26T19:10:36Z,- usaboo unassigned from issue: [3170](https://github.com/hackforla/website/issues/3170#issuecomment-1166619215) at 2022-06-26 12:10 PM PDT -usaboo,2022-06-29T02:24:28Z,- usaboo submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1022661216) at 2022-06-28 07:24 PM PDT -usaboo,2022-06-29T02:35:11Z,- usaboo assigned to issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1160927695) at 2022-06-28 07:35 PM PDT -usaboo,2022-06-29T02:50:38Z,- usaboo unassigned from issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1169468944) at 2022-06-28 07:50 PM PDT -usaboo,2022-06-29T02:50:38Z,- usaboo unassigned from issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1169468944) at 2022-06-28 07:50 PM PDT -usaboo,2022-07-01T15:54:18Z,- usaboo commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1172484456) at 2022-07-01 08:54 AM PDT -usaboo,2022-07-01T15:54:32Z,- usaboo submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1026394109) at 2022-07-01 08:54 AM PDT -usaboo,2022-07-12T02:18:28Z,- usaboo submitted pull request review: [3183](https://github.com/hackforla/website/pull/3183#pullrequestreview-1035133303) at 2022-07-11 07:18 PM PDT -usaboo,2022-07-17T17:27:36Z,- usaboo commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1186576746) at 2022-07-17 10:27 AM PDT -usaboo,2022-07-22T04:11:30Z,- usaboo assigned to issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1090982728) at 2022-07-21 09:11 PM PDT -usaboo,2022-10-04T01:00:08Z,- usaboo unassigned from issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1192160542) at 2022-10-03 06:00 PM PDT -Utkarsh3128,2023-09-28T18:52:27Z,- Utkarsh3128 opened pull request: [5625](https://github.com/hackforla/website/pull/5625) at 2023-09-28 11:52 AM PDT -Utkarsh3128,2023-09-28T19:04:27Z,- Utkarsh3128 opened pull request: [5626](https://github.com/hackforla/website/pull/5626) at 2023-09-28 12:04 PM PDT -Utkarsh3128,2023-09-29T07:08:06Z,- Utkarsh3128 commented on pull request: [5626](https://github.com/hackforla/website/pull/5626#issuecomment-1740408491) at 2023-09-29 12:08 AM PDT -Utkarsh3128,2023-09-29T09:21:00Z,- Utkarsh3128 pull request closed w/o merging: [5625](https://github.com/hackforla/website/pull/5625#event-10509043792) at 2023-09-29 02:21 AM PDT -Utkarsh3128,2023-09-29T09:39:53Z,- Utkarsh3128 pull request closed w/o merging: [5626](https://github.com/hackforla/website/pull/5626#event-10509233716) at 2023-09-29 02:39 AM PDT -vaisali89,3239,SKILLS ISSUE -vaisali89,2022-06-12T17:43:22Z,- vaisali89 opened issue: [3239](https://github.com/hackforla/website/issues/3239) at 2022-06-12 10:43 AM PDT -vaisali89,2022-06-12T18:57:24Z,- vaisali89 assigned to issue: [3239](https://github.com/hackforla/website/issues/3239#issuecomment-1153244077) at 2022-06-12 11:57 AM PDT -vaisali89,2022-06-15T22:00:15Z,- vaisali89 assigned to issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1079440137) at 2022-06-15 03:00 PM PDT -vaisali89,2022-06-15T22:01:17Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1156988044) at 2022-06-15 03:01 PM PDT -vaisali89,2022-06-15T22:01:45Z,- vaisali89 closed issue as completed: [3239](https://github.com/hackforla/website/issues/3239#event-6816430135) at 2022-06-15 03:01 PM PDT -vaisali89,2022-06-26T16:39:06Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1166582876) at 2022-06-26 09:39 AM PDT -vaisali89,2022-07-04T17:02:52Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1174008957) at 2022-07-04 10:02 AM PDT -vaisali89,2022-07-17T16:19:25Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1186561214) at 2022-07-17 09:19 AM PDT -vaisali89,2022-07-18T23:14:54Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1188424328) at 2022-07-18 04:14 PM PDT -vaisali89,2022-07-20T19:32:34Z,- vaisali89 commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1190673409) at 2022-07-20 12:32 PM PDT -vaisali89,2022-08-01T02:35:47Z,- vaisali89 commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1200620185) at 2022-07-31 07:35 PM PDT -vaisali89,2022-08-02T01:23:46Z,- vaisali89 assigned to issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1063270297) at 2022-08-01 06:23 PM PDT -vaisali89,2022-08-02T21:21:28Z,- vaisali89 opened issue: [3448](https://github.com/hackforla/website/issues/3448) at 2022-08-02 02:21 PM PDT -vaisali89,2022-08-10T20:17:35Z,- vaisali89 commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1211222296) at 2022-08-10 01:17 PM PDT -vaisali89,2022-08-14T16:44:03Z,- vaisali89 commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1214412947) at 2022-08-14 09:44 AM PDT -vaisali89,2022-08-17T19:39:54Z,- vaisali89 opened issue: [3473](https://github.com/hackforla/website/issues/3473) at 2022-08-17 12:39 PM PDT -vaisali89,2022-08-17T19:44:51Z,- vaisali89 commented on issue: [3473](https://github.com/hackforla/website/issues/3473#issuecomment-1218421803) at 2022-08-17 12:44 PM PDT -vaisali89,2022-08-28T18:41:09Z,- vaisali89 commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1229528340) at 2022-08-28 11:41 AM PDT -vaisali89,2022-08-29T08:51:18Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1229971437) at 2022-08-29 01:51 AM PDT -vaisali89,2022-09-09T09:59:37Z,- vaisali89 commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1241765693) at 2022-09-09 02:59 AM PDT -vaisali89,2022-09-21T10:47:37Z,- vaisali89 closed issue as completed: [2949](https://github.com/hackforla/website/issues/2949#event-7429723565) at 2022-09-21 03:47 AM PDT -vaisali89,2023-02-05T19:48:43Z,- vaisali89 assigned to issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1418248835) at 2023-02-05 11:48 AM PST -vaisali89,2023-02-15T05:39:21Z,- vaisali89 unassigned from issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1257240182) at 2023-02-14 09:39 PM PST -vaisali89,2024-10-25T23:31:31Z,- vaisali89 unassigned from issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-2277292348) at 2024-10-25 04:31 PM PDT -valdezg,7886,SKILLS ISSUE -valdezg,2025-02-05T04:15:24Z,- valdezg opened issue: [7886](https://github.com/hackforla/website/issues/7886) at 2025-02-04 08:15 PM PST -valdezg,2025-02-05T04:17:40Z,- valdezg assigned to issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2635664419) at 2025-02-04 08:17 PM PST -valdezg,2025-02-08T22:35:53Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2645968542) at 2025-02-08 02:35 PM PST -valdezg,2025-02-09T02:30:02Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2646033948) at 2025-02-08 06:30 PM PST -valdezg,2025-03-09T04:41:26Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2708668684) at 2025-03-08 09:41 PM PDT -valdezg,2025-03-09T04:47:29Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2708670068) at 2025-03-08 09:47 PM PDT -valdezg,2025-03-09T04:49:39Z,- valdezg assigned to issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2635477007) at 2025-03-08 09:49 PM PDT -valdezg,2025-03-09T05:24:34Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2708679067) at 2025-03-08 10:24 PM PDT -valdezg,2025-04-04T19:00:01Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779529221) at 2025-04-04 12:00 PM PDT -valdezg,2025-04-04T19:22:32Z,- valdezg opened pull request: [8044](https://github.com/hackforla/website/pull/8044) at 2025-04-04 12:22 PM PDT -valdezg,2025-04-04T19:27:33Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779574968) at 2025-04-04 12:27 PM PDT -valdezg,2025-04-04T19:45:49Z,- valdezg pull request closed w/o merging: [8044](https://github.com/hackforla/website/pull/8044#event-17135102655) at 2025-04-04 12:45 PM PDT -valdezg,2025-04-04T19:59:56Z,- valdezg commented on pull request: [8044](https://github.com/hackforla/website/pull/8044#issuecomment-2779627440) at 2025-04-04 12:59 PM PDT -valdezg,2025-04-04T19:59:56Z,- valdezg reopened pull request: [8044](https://github.com/hackforla/website/pull/8044#issuecomment-2779627440) at 2025-04-04 12:59 PM PDT -valdezg,2025-04-04T20:05:47Z,- valdezg pull request closed w/o merging: [8044](https://github.com/hackforla/website/pull/8044#event-17135290252) at 2025-04-04 01:05 PM PDT -valdezg,2025-04-04T20:21:51Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779662744) at 2025-04-04 01:21 PM PDT -valdezg,2025-04-05T20:39:52Z,- valdezg opened pull request: [8046](https://github.com/hackforla/website/pull/8046) at 2025-04-05 01:39 PM PDT -valdezg,2025-04-05T21:02:35Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2781093172) at 2025-04-05 02:02 PM PDT -valdezg,2025-04-07T03:31:55Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2781932753) at 2025-04-06 08:31 PM PDT -valdezg,2025-04-10T03:13:06Z,- valdezg submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2755213593) at 2025-04-09 08:13 PM PDT -valdezg,2025-04-10T03:28:48Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2791455982) at 2025-04-09 08:28 PM PDT -valdezg,2025-04-10T04:38:29Z,- valdezg submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2755297332) at 2025-04-09 09:38 PM PDT -valdezg,2025-04-10T04:54:01Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2791547154) at 2025-04-09 09:54 PM PDT -valdezg,2025-04-11T04:51:12Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2795828899) at 2025-04-10 09:51 PM PDT -valdezg,2025-04-15T23:50:09Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2807791445) at 2025-04-15 04:50 PM PDT -valdezg,2025-04-16T03:30:15Z,- valdezg pull request merged: [8046](https://github.com/hackforla/website/pull/8046#event-17280520716) at 2025-04-15 08:30 PM PDT -valdezg,2025-04-18T18:15:47Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2815964419) at 2025-04-18 11:15 AM PDT -valdezg,2025-04-18T18:17:02Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2815966102) at 2025-04-18 11:17 AM PDT -valdezg,2025-04-20T19:43:21Z,- valdezg assigned to issue: [8070](https://github.com/hackforla/website/issues/8070) at 2025-04-20 12:43 PM PDT -valdezg,2025-04-20T19:44:46Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2817311968) at 2025-04-20 12:44 PM PDT -valdezg,2025-04-22T04:49:46Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2820063667) at 2025-04-21 09:49 PM PDT -valdezg,2025-04-22T05:10:40Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2820089649) at 2025-04-21 10:10 PM PDT -valdezg,2025-04-22T05:15:42Z,- valdezg opened pull request: [8080](https://github.com/hackforla/website/pull/8080) at 2025-04-21 10:15 PM PDT -valdezg,2025-04-22T19:36:57Z,- valdezg pull request closed w/o merging: [8080](https://github.com/hackforla/website/pull/8080#event-17359274153) at 2025-04-22 12:36 PM PDT -valdezg,2025-04-28T03:37:24Z,- valdezg opened pull request: [8092](https://github.com/hackforla/website/pull/8092) at 2025-04-27 08:37 PM PDT -valdezg,2025-05-08T20:05:30Z,- valdezg commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2864144498) at 2025-05-08 01:05 PM PDT -valdezg,2025-05-18T04:57:23Z,- valdezg pull request closed w/o merging: [8092](https://github.com/hackforla/website/pull/8092#event-17701836270) at 2025-05-17 09:57 PM PDT -valdezg,2025-05-21T00:20:01Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2896116358) at 2025-05-20 05:20 PM PDT -valdezg,2025-05-21T17:07:16Z,- valdezg commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2898657515) at 2025-05-21 10:07 AM PDT -valdezg,2025-07-01T17:31:17Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-3024936923) at 2025-07-01 10:31 AM PDT -valdezg,2025-07-01T23:25:16Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-3025833867) at 2025-07-01 04:25 PM PDT -valdezg,2025-07-08T06:30:03Z,- valdezg opened pull request: [8245](https://github.com/hackforla/website/pull/8245) at 2025-07-07 11:30 PM PDT -valdezg,2025-07-11T17:16:40Z,- valdezg pull request merged: [8245](https://github.com/hackforla/website/pull/8245#event-18591000031) at 2025-07-11 10:16 AM PDT -Vallsurf,2019-11-13T03:32:29Z,- Vallsurf submitted pull request review: [166](https://github.com/hackforla/website/pull/166#pullrequestreview-315982631) at 2019-11-12 07:32 PM PST -Vallsurf,2019-11-19T03:11:32Z,- Vallsurf assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-547721864) at 2019-11-18 07:11 PM PST -Vallsurf,2019-11-23T04:15:25Z,- Vallsurf unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-22 08:15 PM PST -Vallsurf,2019-11-26T02:50:35Z,- Vallsurf assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -Vallsurf,2019-11-26T02:58:27Z,- Vallsurf unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:58 PM PST -vanessasinam,6531,SKILLS ISSUE -vanessasinam,2024-03-27T03:43:13Z,- vanessasinam opened issue: [6531](https://github.com/hackforla/website/issues/6531) at 2024-03-26 08:43 PM PDT -vanessasinam,2024-03-27T03:43:13Z,- vanessasinam assigned to issue: [6531](https://github.com/hackforla/website/issues/6531) at 2024-03-26 08:43 PM PDT -vanessasinam,2024-04-16T20:50:40Z,- vanessasinam assigned to issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2058126241) at 2024-04-16 01:50 PM PDT -vanessasinam,2024-04-29T20:18:29Z,- vanessasinam opened pull request: [6781](https://github.com/hackforla/website/pull/6781) at 2024-04-29 01:18 PM PDT -vanessasinam,2024-04-29T20:25:27Z,- vanessasinam commented on issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2083600908) at 2024-04-29 01:25 PM PDT -vanessasinam,2024-05-02T01:28:44Z,- vanessasinam commented on pull request: [6781](https://github.com/hackforla/website/pull/6781#issuecomment-2089379473) at 2024-05-01 06:28 PM PDT -vanessasinam,2024-05-02T20:03:32Z,- vanessasinam pull request merged: [6781](https://github.com/hackforla/website/pull/6781#event-12688595962) at 2024-05-02 01:03 PM PDT -vanessasinam,2024-05-21T01:37:57Z,- vanessasinam assigned to issue: [6731](https://github.com/hackforla/website/issues/6731) at 2024-05-20 06:37 PM PDT -vanessasinam,2024-05-21T01:52:37Z,- vanessasinam commented on issue: [6731](https://github.com/hackforla/website/issues/6731#issuecomment-2121555656) at 2024-05-20 06:52 PM PDT -vanessasinam,2024-05-21T01:58:30Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2121563076) at 2024-05-20 06:58 PM PDT -vanessasinam,2024-05-22T03:19:14Z,- vanessasinam commented on pull request: [6874](https://github.com/hackforla/website/pull/6874#issuecomment-2123794436) at 2024-05-21 08:19 PM PDT -vanessasinam,2024-05-27T16:32:54Z,- vanessasinam opened pull request: [6900](https://github.com/hackforla/website/pull/6900) at 2024-05-27 09:32 AM PDT -vanessasinam,2024-05-27T16:35:52Z,- vanessasinam commented on issue: [6731](https://github.com/hackforla/website/issues/6731#issuecomment-2133811264) at 2024-05-27 09:35 AM PDT -vanessasinam,2024-05-28T16:53:37Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2135714871) at 2024-05-28 09:53 AM PDT -vanessasinam,2024-05-29T02:49:35Z,- vanessasinam commented on pull request: [6906](https://github.com/hackforla/website/pull/6906#issuecomment-2136420726) at 2024-05-28 07:49 PM PDT -vanessasinam,2024-05-29T16:57:28Z,- vanessasinam assigned to issue: [6594](https://github.com/hackforla/website/issues/6594) at 2024-05-29 09:57 AM PDT -vanessasinam,2024-05-29T17:00:11Z,- vanessasinam commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2137877210) at 2024-05-29 10:00 AM PDT -vanessasinam,2024-05-30T02:23:00Z,- vanessasinam submitted pull request review: [6906](https://github.com/hackforla/website/pull/6906#pullrequestreview-2086981795) at 2024-05-29 07:23 PM PDT -vanessasinam,2024-05-30T18:28:34Z,- vanessasinam unassigned from issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140585301) at 2024-05-30 11:28 AM PDT -vanessasinam,2024-05-30T18:36:54Z,- vanessasinam commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140616903) at 2024-05-30 11:36 AM PDT -vanessasinam,2024-05-31T00:16:17Z,- vanessasinam commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2141033615) at 2024-05-30 05:16 PM PDT -vanessasinam,2024-05-31T19:50:10Z,- vanessasinam pull request merged: [6900](https://github.com/hackforla/website/pull/6900#event-13005187079) at 2024-05-31 12:50 PM PDT -vanessasinam,2024-06-06T16:30:59Z,- vanessasinam assigned to issue: [6753](https://github.com/hackforla/website/issues/6753) at 2024-06-06 09:30 AM PDT -vanessasinam,2024-06-06T16:32:16Z,- vanessasinam commented on issue: [6753](https://github.com/hackforla/website/issues/6753#issuecomment-2152947795) at 2024-06-06 09:32 AM PDT -vanessasinam,2024-06-14T11:51:54Z,- vanessasinam commented on issue: [6753](https://github.com/hackforla/website/issues/6753#issuecomment-2167858913) at 2024-06-14 04:51 AM PDT -vanessasinam,2024-06-14T11:56:06Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2167864955) at 2024-06-14 04:56 AM PDT -vanessasinam,2024-06-20T16:19:05Z,- vanessasinam assigned to issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2171120139) at 2024-06-20 09:19 AM PDT -vanessasinam,2024-06-20T16:23:29Z,- vanessasinam commented on issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2181088605) at 2024-06-20 09:23 AM PDT -vanessasinam,2024-06-27T18:25:19Z,- vanessasinam opened pull request: [7073](https://github.com/hackforla/website/pull/7073) at 2024-06-27 11:25 AM PDT -vanessasinam,2024-06-27T18:27:12Z,- vanessasinam commented on issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2195420016) at 2024-06-27 11:27 AM PDT -vanessasinam,2024-06-27T18:27:46Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2195420880) at 2024-06-27 11:27 AM PDT -vanessasinam,2024-06-28T16:24:54Z,- vanessasinam commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2197269319) at 2024-06-28 09:24 AM PDT -vanessasinam,2024-07-08T03:14:54Z,- vanessasinam pull request merged: [7073](https://github.com/hackforla/website/pull/7073#event-13416879029) at 2024-07-07 08:14 PM PDT -vanessasinam,2024-08-23T02:55:03Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2306088449) at 2024-08-22 07:55 PM PDT -vanessasinam,2024-08-27T02:53:03Z,- vanessasinam assigned to issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2286548491) at 2024-08-26 07:53 PM PDT -vanessasinam,2024-08-30T21:35:41Z,- vanessasinam commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2322370177) at 2024-08-30 02:35 PM PDT -vanessasinam,2024-09-04T20:34:33Z,- vanessasinam opened pull request: [7385](https://github.com/hackforla/website/pull/7385) at 2024-09-04 01:34 PM PDT -vanessasinam,2024-09-05T18:14:40Z,- vanessasinam commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2332362075) at 2024-09-05 11:14 AM PDT -vanessasinam,2024-09-07T17:51:59Z,- vanessasinam pull request merged: [7385](https://github.com/hackforla/website/pull/7385#event-14172190043) at 2024-09-07 10:51 AM PDT -vanessasinam,2024-09-10T15:38:51Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2341291475) at 2024-09-10 08:38 AM PDT -vanessasinam,2024-09-15T19:52:39Z,- vanessasinam commented on pull request: [7461](https://github.com/hackforla/website/pull/7461#issuecomment-2351770627) at 2024-09-15 12:52 PM PDT -vanessasinam,2024-09-15T21:35:37Z,- vanessasinam submitted pull request review: [7461](https://github.com/hackforla/website/pull/7461#pullrequestreview-2305618672) at 2024-09-15 02:35 PM PDT -vanessasinam,2024-09-15T21:36:49Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2351799644) at 2024-09-15 02:36 PM PDT -vanessasinam,2024-09-15T21:42:51Z,- vanessasinam assigned to issue: [7416](https://github.com/hackforla/website/issues/7416) at 2024-09-15 02:42 PM PDT -vanessasinam,2024-09-15T21:45:04Z,- vanessasinam commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2351801726) at 2024-09-15 02:45 PM PDT -vanessasinam,2024-10-15T01:30:28Z,- vanessasinam unassigned from issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2406688062) at 2024-10-14 06:30 PM PDT -vanessasinam,2025-01-14T04:13:37Z,- vanessasinam opened issue: [7826](https://github.com/hackforla/website/issues/7826) at 2025-01-13 08:13 PM PST -vanessasinam,2025-01-14T04:24:15Z,- vanessasinam assigned to issue: [7611](https://github.com/hackforla/website/issues/7611) at 2025-01-13 08:24 PM PST -vanessasinam,2025-01-14T04:24:28Z,- vanessasinam unassigned from issue: [7611](https://github.com/hackforla/website/issues/7611) at 2025-01-13 08:24 PM PST -vanessasinam,2025-01-22T03:42:28Z,- vanessasinam assigned to issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2350694858) at 2025-01-21 07:42 PM PST -vanessasinam,2025-01-27T19:24:41Z,- vanessasinam opened issue: [7857](https://github.com/hackforla/website/issues/7857) at 2025-01-27 11:24 AM PST -vanessasinam,2025-01-27T19:31:28Z,- vanessasinam opened issue: [7858](https://github.com/hackforla/website/issues/7858) at 2025-01-27 11:31 AM PST -vanessasinam,2025-01-27T19:33:50Z,- vanessasinam commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2616720773) at 2025-01-27 11:33 AM PST -vanessavun,3914,SKILLS ISSUE -vanessavun,2023-02-01T04:58:26Z,- vanessavun opened issue: [3914](https://github.com/hackforla/website/issues/3914) at 2023-01-31 08:58 PM PST -vanessavun,2023-02-01T04:58:26Z,- vanessavun assigned to issue: [3914](https://github.com/hackforla/website/issues/3914) at 2023-01-31 08:58 PM PST -vanessavun,2023-02-03T07:54:38Z,- vanessavun assigned to issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1409525426) at 2023-02-02 11:54 PM PST -vanessavun,2023-02-03T07:54:44Z,- vanessavun commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1415268941) at 2023-02-02 11:54 PM PST -vanessavun,2023-02-03T20:30:20Z,- vanessavun commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1416369681) at 2023-02-03 12:30 PM PST -vanessavun,2023-02-04T00:39:45Z,- vanessavun opened pull request: [3932](https://github.com/hackforla/website/pull/3932) at 2023-02-03 04:39 PM PST -vanessavun,2023-02-04T01:00:59Z,- vanessavun commented on issue: [3914](https://github.com/hackforla/website/issues/3914#issuecomment-1416569976) at 2023-02-03 05:00 PM PST -vanessavun,2023-02-04T01:06:00Z,- vanessavun commented on issue: [3914](https://github.com/hackforla/website/issues/3914#issuecomment-1416572750) at 2023-02-03 05:06 PM PST -vanessavun,2023-02-06T07:33:39Z,- vanessavun closed issue by PR 3940: [3854](https://github.com/hackforla/website/issues/3854#event-8444409867) at 2023-02-05 11:33 PM PST -vanessavun,2023-02-06T07:34:01Z,- vanessavun reopened issue: [3854](https://github.com/hackforla/website/issues/3854#event-8444409867) at 2023-02-05 11:34 PM PST -vanessavun,2023-02-06T07:36:00Z,- vanessavun commented on issue: [3854](https://github.com/hackforla/website/issues/3854#issuecomment-1418637447) at 2023-02-05 11:36 PM PST -vanessavun,2023-02-07T00:37:23Z,- vanessavun pull request merged: [3932](https://github.com/hackforla/website/pull/3932#event-8453046992) at 2023-02-06 04:37 PM PST -vanessavun,2023-02-09T00:45:22Z,- vanessavun assigned to issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1397449627) at 2023-02-08 04:45 PM PST -vanessavun,2023-02-09T00:46:55Z,- vanessavun commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1423445651) at 2023-02-08 04:46 PM PST -vanessavun,2023-02-12T20:41:00Z,- vanessavun commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1427127754) at 2023-02-12 12:41 PM PST -vanessavun,2023-02-12T20:45:04Z,- vanessavun commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1427128455) at 2023-02-12 12:45 PM PST -vanessavun,2023-02-13T19:01:38Z,- vanessavun submitted pull request review: [3964](https://github.com/hackforla/website/pull/3964#pullrequestreview-1296269794) at 2023-02-13 11:01 AM PST -vanessavun,2023-02-15T20:25:46Z,- vanessavun commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1431984671) at 2023-02-15 12:25 PM PST -vanessavun,2023-02-15T20:30:37Z,- vanessavun submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1300304658) at 2023-02-15 12:30 PM PST -vanessavun,2023-02-15T20:41:31Z,- vanessavun closed issue as completed: [3914](https://github.com/hackforla/website/issues/3914#event-8530232101) at 2023-02-15 12:41 PM PST -vanessavun,2023-02-17T04:20:32Z,- vanessavun assigned to issue: [3822](https://github.com/hackforla/website/issues/3822) at 2023-02-16 08:20 PM PST -vanessavun,2023-02-17T04:21:55Z,- vanessavun commented on issue: [3822](https://github.com/hackforla/website/issues/3822#issuecomment-1434084919) at 2023-02-16 08:21 PM PST -vanessavun,2023-02-17T04:42:37Z,- vanessavun opened pull request: [3995](https://github.com/hackforla/website/pull/3995) at 2023-02-16 08:42 PM PST -vanessavun,2023-02-17T04:52:21Z,- vanessavun commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1434099151) at 2023-02-16 08:52 PM PST -vanessavun,2023-02-17T04:56:10Z,- vanessavun submitted pull request review: [3989](https://github.com/hackforla/website/pull/3989#pullrequestreview-1302692597) at 2023-02-16 08:56 PM PST -vanessavun,2023-02-17T04:59:48Z,- vanessavun commented on pull request: [3993](https://github.com/hackforla/website/pull/3993#issuecomment-1434103312) at 2023-02-16 08:59 PM PST -vanessavun,2023-02-17T05:10:18Z,- vanessavun submitted pull request review: [3993](https://github.com/hackforla/website/pull/3993#pullrequestreview-1302700704) at 2023-02-16 09:10 PM PST -vanessavun,2023-02-17T05:29:13Z,- vanessavun commented on pull request: [3994](https://github.com/hackforla/website/pull/3994#issuecomment-1434122837) at 2023-02-16 09:29 PM PST -vanessavun,2023-02-17T05:39:17Z,- vanessavun submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1302723724) at 2023-02-16 09:39 PM PST -vanessavun,2023-02-18T05:24:46Z,- vanessavun pull request merged: [3995](https://github.com/hackforla/website/pull/3995#event-8552395381) at 2023-02-17 09:24 PM PST -vanessavun,2023-02-19T22:04:26Z,- vanessavun assigned to issue: [3879](https://github.com/hackforla/website/issues/3879) at 2023-02-19 02:04 PM PST -vanessavun,2023-02-19T22:05:25Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1436109344) at 2023-02-19 02:05 PM PST -vanessavun,2023-02-19T22:14:01Z,- vanessavun commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1436111601) at 2023-02-19 02:14 PM PST -vanessavun,2023-02-22T05:10:23Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1439448745) at 2023-02-21 09:10 PM PST -vanessavun,2023-02-24T02:21:03Z,- vanessavun submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1312409083) at 2023-02-23 06:21 PM PST -vanessavun,2023-02-24T05:21:15Z,- vanessavun commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442825976) at 2023-02-23 09:21 PM PST -vanessavun,2023-02-24T05:25:14Z,- vanessavun submitted pull request review: [4032](https://github.com/hackforla/website/pull/4032#pullrequestreview-1312531764) at 2023-02-23 09:25 PM PST -vanessavun,2023-02-24T05:28:57Z,- vanessavun commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1442830181) at 2023-02-23 09:28 PM PST -vanessavun,2023-02-24T06:05:45Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-23 10:05 PM PST -vanessavun,2023-02-24T18:45:44Z,- vanessavun commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1444244237) at 2023-02-24 10:45 AM PST -vanessavun,2023-02-25T07:08:04Z,- vanessavun submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1314463463) at 2023-02-24 11:08 PM PST -vanessavun,2023-02-25T07:09:48Z,- vanessavun commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1445017144) at 2023-02-24 11:09 PM PST -vanessavun,2023-02-25T07:16:08Z,- vanessavun commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1445018815) at 2023-02-24 11:16 PM PST -vanessavun,2023-02-25T07:19:16Z,- vanessavun submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1314464472) at 2023-02-24 11:19 PM PST -vanessavun,2023-02-25T17:04:10Z,- vanessavun unassigned from issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-25 09:04 AM PST -vanessavun,2023-02-25T17:04:16Z,- vanessavun assigned to issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-25 09:04 AM PST -vanessavun,2023-02-28T07:35:04Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1447710653) at 2023-02-27 11:35 PM PST -vanessavun,2023-02-28T16:06:01Z,- vanessavun commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1448446187) at 2023-02-28 08:06 AM PST -vanessavun,2023-02-28T19:26:00Z,- vanessavun assigned to issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1445715829) at 2023-02-28 11:26 AM PST -vanessavun,2023-02-28T19:26:34Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1448738828) at 2023-02-28 11:26 AM PST -vanessavun,2023-02-28T19:28:24Z,- vanessavun commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1448740978) at 2023-02-28 11:28 AM PST -vanessavun,2023-03-01T05:34:09Z,- vanessavun submitted pull request review: [4053](https://github.com/hackforla/website/pull/4053#pullrequestreview-1319068431) at 2023-02-28 09:34 PM PST -vanessavun,2023-03-01T05:37:47Z,- vanessavun commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1449380031) at 2023-02-28 09:37 PM PST -vanessavun,2023-03-03T23:17:44Z,- vanessavun unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1450872479) at 2023-03-03 03:17 PM PST -vanessavun,2023-03-03T23:18:26Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1454253251) at 2023-03-03 03:18 PM PST -vanessavun,2023-03-09T21:08:45Z,- vanessavun assigned to issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1454253251) at 2023-03-09 01:08 PM PST -vanessavun,2023-03-09T21:12:29Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1462831584) at 2023-03-09 01:12 PM PST -vanessavun,2023-03-17T06:44:06Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1473255525) at 2023-03-16 11:44 PM PDT -vanessavun,2023-03-19T18:58:28Z,- vanessavun assigned to issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1469030676) at 2023-03-19 11:58 AM PDT -vanessavun,2023-03-19T19:02:42Z,- vanessavun unassigned from issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1475362180) at 2023-03-19 12:02 PM PDT -vanessavun,2023-03-20T22:59:06Z,- vanessavun unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1473255525) at 2023-03-20 03:59 PM PDT -vanessavun,2023-03-20T23:00:04Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1477059261) at 2023-03-20 04:00 PM PDT -vanessavun,2023-03-26T17:27:41Z,- vanessavun assigned to issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 10:27 AM PDT -vanessavun,2023-03-26T20:34:13Z,- vanessavun unassigned from issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 01:34 PM PDT -vanessavun,2023-04-15T06:06:30Z,- vanessavun commented on pull request: [4517](https://github.com/hackforla/website/pull/4517#issuecomment-1509558406) at 2023-04-14 11:06 PM PDT -vanessavun,2023-04-15T06:17:55Z,- vanessavun submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1386324524) at 2023-04-14 11:17 PM PDT -vanessavun,2023-04-18T02:49:53Z,- vanessavun submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1389189296) at 2023-04-17 07:49 PM PDT -vanessavun,2023-04-18T02:56:02Z,- vanessavun commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1512362538) at 2023-04-17 07:56 PM PDT -vanessavun,2023-04-18T03:02:41Z,- vanessavun submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1389196885) at 2023-04-17 08:02 PM PDT -vanessavun,2023-04-25T00:59:21Z,- vanessavun commented on pull request: [4561](https://github.com/hackforla/website/pull/4561#issuecomment-1521015103) at 2023-04-24 05:59 PM PDT -vanessavun,2023-04-25T01:04:31Z,- vanessavun submitted pull request review: [4561](https://github.com/hackforla/website/pull/4561#pullrequestreview-1398988960) at 2023-04-24 06:04 PM PDT -vanyanv,4630,SKILLS ISSUE -vanyanv,2023-05-09T03:35:05Z,- vanyanv opened issue: [4630](https://github.com/hackforla/website/issues/4630) at 2023-05-08 08:35 PM PDT -vanyanv,2023-05-09T03:49:55Z,- vanyanv assigned to issue: [4630](https://github.com/hackforla/website/issues/4630) at 2023-05-08 08:49 PM PDT -vanyanv,2023-05-09T06:32:20Z,- vanyanv assigned to issue: [4585](https://github.com/hackforla/website/issues/4585#issuecomment-1533491550) at 2023-05-08 11:32 PM PDT -vanyanv,2023-05-09T07:29:30Z,- vanyanv opened pull request: [4640](https://github.com/hackforla/website/pull/4640) at 2023-05-09 12:29 AM PDT -vanyanv,2023-05-10T02:25:01Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1419682209) at 2023-05-09 07:25 PM PDT -vanyanv,2023-05-10T03:01:38Z,- vanyanv assigned to issue: [4477](https://github.com/hackforla/website/issues/4477) at 2023-05-09 08:01 PM PDT -vanyanv,2023-05-10T03:04:04Z,- vanyanv unassigned from issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1541255980) at 2023-05-09 08:04 PM PDT -vanyanv,2023-05-10T19:23:07Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1421251120) at 2023-05-10 12:23 PM PDT -vanyanv,2023-05-10T20:02:38Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1421300861) at 2023-05-10 01:02 PM PDT -vanyanv,2023-05-11T17:42:10Z,- vanyanv pull request merged: [4640](https://github.com/hackforla/website/pull/4640#event-9225163722) at 2023-05-11 10:42 AM PDT -vanyanv,2023-05-12T02:01:08Z,- vanyanv assigned to issue: [4475](https://github.com/hackforla/website/issues/4475) at 2023-05-11 07:01 PM PDT -vanyanv,2023-05-12T02:02:40Z,- vanyanv commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1544998437) at 2023-05-11 07:02 PM PDT -vanyanv,2023-05-12T03:18:01Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1423709114) at 2023-05-11 08:18 PM PDT -vanyanv,2023-05-18T22:49:33Z,- vanyanv commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1553753326) at 2023-05-18 03:49 PM PDT -vanyanv,2023-06-27T01:27:38Z,- vanyanv unassigned from issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1608566987) at 2023-06-26 06:27 PM PDT -varyad,3785,SKILLS ISSUE -varyad,7970,SKILLS ISSUE -varyad,2023-01-04T04:47:45Z,- varyad opened issue: [3785](https://github.com/hackforla/website/issues/3785) at 2023-01-03 08:47 PM PST -varyad,2023-02-13T04:37:17Z,- varyad commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1427331915) at 2023-02-12 08:37 PM PST -varyad,2023-02-27T14:58:12Z,- varyad assigned to issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1445264963) at 2023-02-27 06:58 AM PST -varyad,2023-08-21T03:12:06Z,- varyad opened issue: [5278](https://github.com/hackforla/website/issues/5278) at 2023-08-20 08:12 PM PDT -varyad,2023-08-21T20:27:07Z,- varyad reopened issue: [3785](https://github.com/hackforla/website/issues/3785#event-8772941117) at 2023-08-21 01:27 PM PDT -varyad,2023-08-21T20:39:23Z,- varyad commented on issue: [5278](https://github.com/hackforla/website/issues/5278#issuecomment-1687011854) at 2023-08-21 01:39 PM PDT -varyad,2023-08-21T20:39:34Z,- varyad closed issue as completed: [5278](https://github.com/hackforla/website/issues/5278#event-10150334820) at 2023-08-21 01:39 PM PDT -varyad,2023-08-21T20:42:08Z,- varyad commented on issue: [5278](https://github.com/hackforla/website/issues/5278#issuecomment-1687015292) at 2023-08-21 01:42 PM PDT -varyad,2023-08-21T20:42:08Z,- varyad closed issue as not planned: [5278](https://github.com/hackforla/website/issues/5278#event-10150354546) at 2023-08-21 01:42 PM PDT -varyad,2025-03-01T11:13:42Z,- varyad commented on issue: [7958](https://github.com/hackforla/website/issues/7958#issuecomment-2692152184) at 2025-03-01 03:13 AM PST -varyad,2025-03-01T11:14:08Z,- varyad opened issue: [7959](https://github.com/hackforla/website/issues/7959) at 2025-03-01 03:14 AM PST -varyad,2025-03-04T04:15:57Z,- varyad opened issue: [7970](https://github.com/hackforla/website/issues/7970) at 2025-03-03 08:15 PM PST -varyad,2025-03-04T04:16:19Z,- varyad assigned to issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2696147640) at 2025-03-03 08:16 PM PST -varyad,2025-04-02T06:54:06Z,- varyad commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2771506363) at 2025-04-01 11:54 PM PDT -varyad,2025-06-16T09:03:28Z,- varyad commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2975688745) at 2025-06-16 02:03 AM PDT -Vaseekaran-S,2023-12-05T19:58:53Z,- Vaseekaran-S commented on issue: [5711](https://github.com/hackforla/website/issues/5711#issuecomment-1841526532) at 2023-12-05 11:58 AM PST -Vayras,2023-04-17T19:43:18Z,- Vayras commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1511982119) at 2023-04-17 12:43 PM PDT -Vayras,2023-04-17T20:04:00Z,- Vayras opened pull request: [4540](https://github.com/hackforla/website/pull/4540) at 2023-04-17 01:04 PM PDT -Vayras,2023-04-17T21:51:12Z,- Vayras pull request closed w/o merging: [4540](https://github.com/hackforla/website/pull/4540#event-9029451922) at 2023-04-17 02:51 PM PDT -vepkenez,2019-03-12T02:36:17Z,- vepkenez opened pull request: [32](https://github.com/hackforla/website/pull/32) at 2019-03-11 07:36 PM PDT -vepkenez,2019-03-12T02:43:23Z,- vepkenez opened pull request: [33](https://github.com/hackforla/website/pull/33) at 2019-03-11 07:43 PM PDT -vepkenez,2019-03-12T02:45:59Z,- vepkenez opened pull request: [34](https://github.com/hackforla/website/pull/34) at 2019-03-11 07:45 PM PDT -vepkenez,2019-03-12T03:09:29Z,- vepkenez pull request merged: [32](https://github.com/hackforla/website/pull/32#event-2195883233) at 2019-03-11 08:09 PM PDT -vepkenez,2019-03-12T03:15:12Z,- vepkenez pull request merged: [33](https://github.com/hackforla/website/pull/33#event-2195891596) at 2019-03-11 08:15 PM PDT -vepkenez,2019-03-12T03:17:35Z,- vepkenez pull request merged: [34](https://github.com/hackforla/website/pull/34#event-2195895025) at 2019-03-11 08:17 PM PDT -vepkenez,2019-03-12T03:20:11Z,- vepkenez opened pull request: [35](https://github.com/hackforla/website/pull/35) at 2019-03-11 08:20 PM PDT -vepkenez,2019-04-02T05:25:39Z,- vepkenez pull request closed w/o merging: [35](https://github.com/hackforla/website/pull/35#event-2245327717) at 2019-04-01 10:25 PM PDT -vickiychung,2021-06-16T02:53:47Z,- vickiychung assigned to issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-06-15 07:53 PM PDT -vickiychung,2021-06-18T21:24:41Z,- vickiychung opened pull request: [1782](https://github.com/hackforla/website/pull/1782) at 2021-06-18 02:24 PM PDT -vickiychung,2021-06-19T05:36:27Z,- vickiychung submitted pull request review: [1780](https://github.com/hackforla/website/pull/1780#pullrequestreview-687797620) at 2021-06-18 10:36 PM PDT -vickiychung,2021-06-22T13:45:31Z,- vickiychung pull request merged: [1782](https://github.com/hackforla/website/pull/1782#event-4922870293) at 2021-06-22 06:45 AM PDT -vickiychung,2021-06-23T00:06:29Z,- vickiychung submitted pull request review: [1790](https://github.com/hackforla/website/pull/1790#pullrequestreview-690093555) at 2021-06-22 05:06 PM PDT -vickiychung,2021-06-24T00:51:31Z,- vickiychung assigned to issue: [1527](https://github.com/hackforla/website/issues/1527) at 2021-06-23 05:51 PM PDT -vickiychung,2021-06-24T00:57:27Z,- vickiychung opened pull request: [1821](https://github.com/hackforla/website/pull/1821) at 2021-06-23 05:57 PM PDT -vickiychung,2021-06-24T15:55:11Z,- vickiychung pull request merged: [1821](https://github.com/hackforla/website/pull/1821#event-4935479654) at 2021-06-24 08:55 AM PDT -vickiychung,2021-06-28T22:25:22Z,- vickiychung assigned to issue: [1830](https://github.com/hackforla/website/issues/1830) at 2021-06-28 03:25 PM PDT -vickiychung,2021-06-28T23:41:36Z,- vickiychung opened pull request: [1855](https://github.com/hackforla/website/pull/1855) at 2021-06-28 04:41 PM PDT -vickiychung,2021-06-30T20:47:39Z,- vickiychung pull request merged: [1855](https://github.com/hackforla/website/pull/1855#event-4962042650) at 2021-06-30 01:47 PM PDT -vickiychung,2021-07-10T06:01:43Z,- vickiychung assigned to issue: [1890](https://github.com/hackforla/website/issues/1890) at 2021-07-09 11:01 PM PDT -vickiychung,2021-07-10T06:06:07Z,- vickiychung opened pull request: [1913](https://github.com/hackforla/website/pull/1913) at 2021-07-09 11:06 PM PDT -vickiychung,2021-07-12T01:25:34Z,- vickiychung pull request merged: [1913](https://github.com/hackforla/website/pull/1913#event-5004784294) at 2021-07-11 06:25 PM PDT -vickiychung,2021-07-27T00:05:33Z,- vickiychung assigned to issue: [1997](https://github.com/hackforla/website/issues/1997) at 2021-07-26 05:05 PM PDT -vickiychung,2021-07-27T01:13:13Z,- vickiychung opened pull request: [2012](https://github.com/hackforla/website/pull/2012) at 2021-07-26 06:13 PM PDT -vickiychung,2021-07-27T01:15:03Z,- vickiychung unassigned from issue: [1997](https://github.com/hackforla/website/issues/1997) at 2021-07-26 06:15 PM PDT -vickiychung,2021-07-29T22:56:28Z,- vickiychung pull request merged: [2012](https://github.com/hackforla/website/pull/2012#event-5088660357) at 2021-07-29 03:56 PM PDT -vickiychung,2021-07-29T22:56:34Z,- vickiychung reopened pull request: [2012](https://github.com/hackforla/website/pull/2012#event-5088660357) at 2021-07-29 03:56 PM PDT -vickiychung,2021-07-29T22:58:52Z,- vickiychung commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-889513021) at 2021-07-29 03:58 PM PDT -vickiychung,2021-07-30T21:10:34Z,- vickiychung commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890155585) at 2021-07-30 02:10 PM PDT -vickiychung,2021-08-01T16:36:32Z,- vickiychung assigned to issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 09:36 AM PDT -vickiychung,2021-08-01T21:30:36Z,- vickiychung commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890589986) at 2021-08-01 02:30 PM PDT -vickiychung,2021-08-01T21:31:54Z,- vickiychung unassigned from issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 02:31 PM PDT -vickiychung,2021-08-02T01:26:24Z,- vickiychung assigned to issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 06:26 PM PDT -vickiychung,2021-08-03T03:06:15Z,- vickiychung pull request merged: [2012](https://github.com/hackforla/website/pull/2012#event-5102224213) at 2021-08-02 08:06 PM PDT -VIDYA1980,2023-09-12T17:03:13Z,- VIDYA1980 opened pull request: [5503](https://github.com/hackforla/website/pull/5503) at 2023-09-12 10:03 AM PDT -VIDYA1980,2023-09-13T01:58:52Z,- VIDYA1980 pull request closed w/o merging: [5503](https://github.com/hackforla/website/pull/5503#event-10353868537) at 2023-09-12 06:58 PM PDT -VikraMS66,2023-09-08T13:11:15Z,- VikraMS66 opened pull request: [5460](https://github.com/hackforla/website/pull/5460) at 2023-09-08 06:11 AM PDT -VikraMS66,2023-09-08T13:16:59Z,- VikraMS66 opened pull request: [5461](https://github.com/hackforla/website/pull/5461) at 2023-09-08 06:16 AM PDT -VikraMS66,2023-09-08T13:24:26Z,- VikraMS66 opened pull request: [5462](https://github.com/hackforla/website/pull/5462) at 2023-09-08 06:24 AM PDT -VikraMS66,2023-09-08T13:27:45Z,- VikraMS66 opened pull request: [5463](https://github.com/hackforla/website/pull/5463) at 2023-09-08 06:27 AM PDT -VikraMS66,2023-09-09T02:35:31Z,- VikraMS66 pull request closed w/o merging: [5460](https://github.com/hackforla/website/pull/5460#event-10323306790) at 2023-09-08 07:35 PM PDT -VikraMS66,2023-09-09T02:35:46Z,- VikraMS66 pull request closed w/o merging: [5461](https://github.com/hackforla/website/pull/5461#event-10323307143) at 2023-09-08 07:35 PM PDT -VikraMS66,2023-09-09T02:36:11Z,- VikraMS66 pull request closed w/o merging: [5462](https://github.com/hackforla/website/pull/5462#event-10323307738) at 2023-09-08 07:36 PM PDT -VikraMS66,2023-09-09T02:36:25Z,- VikraMS66 pull request closed w/o merging: [5463](https://github.com/hackforla/website/pull/5463#event-10323308016) at 2023-09-08 07:36 PM PDT -vincendp,6337,SKILLS ISSUE -vincendp,2024-02-21T03:36:43Z,- vincendp opened issue: [6337](https://github.com/hackforla/website/issues/6337) at 2024-02-20 07:36 PM PST -vincendp,2024-02-21T04:59:32Z,- vincendp assigned to issue: [6337](https://github.com/hackforla/website/issues/6337) at 2024-02-20 08:59 PM PST -vincendp,2024-02-29T04:18:55Z,- vincendp assigned to issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1929044031) at 2024-02-28 08:18 PM PST -vincendp,2024-02-29T04:40:07Z,- vincendp opened pull request: [6394](https://github.com/hackforla/website/pull/6394) at 2024-02-28 08:40 PM PST -vincendp,2024-02-29T04:45:44Z,- vincendp commented on issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1970387748) at 2024-02-28 08:45 PM PST -vincendp,2024-03-01T20:12:19Z,- vincendp commented on pull request: [6394](https://github.com/hackforla/website/pull/6394#issuecomment-1973844779) at 2024-03-01 12:12 PM PST -vincendp,2024-03-04T02:01:08Z,- vincendp pull request merged: [6394](https://github.com/hackforla/website/pull/6394#event-11992323021) at 2024-03-03 06:01 PM PST -vincendp,2024-03-05T04:25:10Z,- vincendp assigned to issue: [6125](https://github.com/hackforla/website/issues/6125) at 2024-03-04 08:25 PM PST -vincendp,2024-03-05T06:07:11Z,- vincendp opened pull request: [6431](https://github.com/hackforla/website/pull/6431) at 2024-03-04 10:07 PM PST -vincendp,2024-03-05T06:16:41Z,- vincendp commented on issue: [6125](https://github.com/hackforla/website/issues/6125#issuecomment-1978038931) at 2024-03-04 10:16 PM PST -vincendp,2024-03-07T01:06:00Z,- vincendp pull request merged: [6431](https://github.com/hackforla/website/pull/6431#event-12035262569) at 2024-03-06 05:06 PM PST -vincendp,2024-03-13T02:37:40Z,- vincendp commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-1993196426) at 2024-03-12 07:37 PM PDT -vincendp,2024-03-16T01:19:56Z,- vincendp assigned to issue: [6460](https://github.com/hackforla/website/issues/6460) at 2024-03-15 06:19 PM PDT -vincendp,2024-03-16T01:21:47Z,- vincendp commented on issue: [6460](https://github.com/hackforla/website/issues/6460#issuecomment-2000961071) at 2024-03-15 06:21 PM PDT -vincendp,2024-03-16T01:56:28Z,- vincendp opened pull request: [6469](https://github.com/hackforla/website/pull/6469) at 2024-03-15 06:56 PM PDT -vincendp,2024-03-16T04:12:05Z,- vincendp commented on pull request: [6469](https://github.com/hackforla/website/pull/6469#issuecomment-2001571459) at 2024-03-15 09:12 PM PDT -vincendp,2024-03-17T16:43:23Z,- vincendp pull request merged: [6469](https://github.com/hackforla/website/pull/6469#event-12143427447) at 2024-03-17 09:43 AM PDT -vincendp,2024-03-22T07:03:11Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2014476063) at 2024-03-22 12:03 AM PDT -vincendp,2024-03-23T00:28:31Z,- vincendp commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2016222458) at 2024-03-22 05:28 PM PDT -vincendp,2024-03-23T01:58:12Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2016303751) at 2024-03-22 06:58 PM PDT -vincendp,2024-03-23T03:36:27Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2016329937) at 2024-03-22 08:36 PM PDT -vincendp,2024-03-25T16:05:31Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2018361056) at 2024-03-25 09:05 AM PDT -vincendp,2024-03-25T17:11:42Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2018499946) at 2024-03-25 10:11 AM PDT -vincendp,2024-03-25T17:19:03Z,- vincendp assigned to issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2008717262) at 2024-03-25 10:19 AM PDT -vincendp,2024-03-25T17:20:43Z,- vincendp commented on issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2018516018) at 2024-03-25 10:20 AM PDT -vincendp,2024-03-27T21:43:39Z,- vincendp commented on issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2024043084) at 2024-03-27 02:43 PM PDT -vincendp,2024-03-27T21:58:52Z,- vincendp opened pull request: [6538](https://github.com/hackforla/website/pull/6538) at 2024-03-27 02:58 PM PDT -vincendp,2024-04-05T06:34:44Z,- vincendp pull request merged: [6538](https://github.com/hackforla/website/pull/6538#event-12368597694) at 2024-04-04 11:34 PM PDT -vincentdang,3830,SKILLS ISSUE -vincentdang,2023-01-17T04:17:02Z,- vincentdang opened issue: [3830](https://github.com/hackforla/website/issues/3830) at 2023-01-16 08:17 PM PST -vincentdang,2023-01-17T04:28:41Z,- vincentdang assigned to issue: [3830](https://github.com/hackforla/website/issues/3830) at 2023-01-16 08:28 PM PST -vincentdang,2023-01-18T04:11:25Z,- vincentdang commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1386460013) at 2023-01-17 08:11 PM PST -vincentdang,2023-01-18T04:56:43Z,- vincentdang commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1386488069) at 2023-01-17 08:56 PM PST -vincentdang,2023-01-18T05:00:05Z,- vincentdang commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1386490126) at 2023-01-17 09:00 PM PST -vincentdang,2023-01-22T11:41:58Z,- vincentdang submitted pull request review: [3836](https://github.com/hackforla/website/pull/3836#pullrequestreview-1264754587) at 2023-01-22 03:41 AM PST -vincentdang,2023-03-23T20:47:33Z,- vincentdang assigned to issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1451051775) at 2023-03-23 01:47 PM PDT -vincentdang,2023-03-23T20:50:06Z,- vincentdang commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1481878672) at 2023-03-23 01:50 PM PDT -vincentdang,2023-03-24T00:54:30Z,- vincentdang opened pull request: [4266](https://github.com/hackforla/website/pull/4266) at 2023-03-23 05:54 PM PDT -vincentdang,2023-03-24T03:02:31Z,- vincentdang opened pull request: [4273](https://github.com/hackforla/website/pull/4273) at 2023-03-23 08:02 PM PDT -vincentdang,2023-03-25T22:17:02Z,- vincentdang pull request closed w/o merging: [4266](https://github.com/hackforla/website/pull/4266#event-8846112799) at 2023-03-25 03:17 PM PDT -vincentdang,2023-04-06T03:40:51Z,- vincentdang commented on pull request: [4273](https://github.com/hackforla/website/pull/4273#issuecomment-1498447866) at 2023-04-05 08:40 PM PDT -vincentdang,2023-04-06T04:15:20Z,- vincentdang pull request merged: [4273](https://github.com/hackforla/website/pull/4273#event-8941439565) at 2023-04-05 09:15 PM PDT -vincentdang,2023-04-07T06:00:14Z,- vincentdang assigned to issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1482136903) at 2023-04-06 11:00 PM PDT -vincentdang,2023-04-07T06:13:15Z,- vincentdang commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1499976135) at 2023-04-06 11:13 PM PDT -vincentdang,2023-04-12T00:00:04Z,- vincentdang commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1504293344) at 2023-04-11 05:00 PM PDT -vincentdang,2023-04-12T07:33:26Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1504802927) at 2023-04-12 12:33 AM PDT -vincentdang,2023-04-12T07:35:22Z,- vincentdang reopened issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1504802927) at 2023-04-12 12:35 AM PDT -vincentdang,2023-04-12T07:38:36Z,- vincentdang commented on pull request: [4266](https://github.com/hackforla/website/pull/4266#issuecomment-1504808668) at 2023-04-12 12:38 AM PDT -vincentdang,2023-04-23T22:24:24Z,- vincentdang assigned to issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1499453729) at 2023-04-23 03:24 PM PDT -vincentdang,2023-04-23T22:34:22Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1519183862) at 2023-04-23 03:34 PM PDT -vincentdang,2023-04-25T04:20:06Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1521134624) at 2023-04-24 09:20 PM PDT -vincentdang,2023-04-26T21:04:09Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1524043687) at 2023-04-26 02:04 PM PDT -vincentdang,2023-04-29T01:19:36Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1528384389) at 2023-04-28 06:19 PM PDT -vincentdang,2023-05-08T03:39:10Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1537692926) at 2023-05-07 08:39 PM PDT -vincentdang,2023-05-13T20:07:52Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1546741669) at 2023-05-13 01:07 PM PDT -vincentdang,2023-05-19T07:25:30Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1554156541) at 2023-05-19 12:25 AM PDT -vincentdang,2023-05-19T18:15:50Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1555056670) at 2023-05-19 11:15 AM PDT -vincentdang,2023-05-19T18:19:14Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1555060489) at 2023-05-19 11:19 AM PDT -vincentdang,2023-05-21T05:59:26Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1556091912) at 2023-05-20 10:59 PM PDT -vincentdang,2023-05-28T06:34:38Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1565934674) at 2023-05-27 11:34 PM PDT -vincentdang,2023-06-23T00:08:30Z,- vincentdang assigned to issue: [4793](https://github.com/hackforla/website/issues/4793) at 2023-06-22 05:08 PM PDT -vincentdang,2023-06-23T00:12:56Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1603463448) at 2023-06-22 05:12 PM PDT -vincentdang,2023-06-30T00:24:47Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1613949157) at 2023-06-29 05:24 PM PDT -vincentdang,2023-07-06T02:19:26Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1622854484) at 2023-07-05 07:19 PM PDT -vincentdang,2023-07-09T02:12:20Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1627573737) at 2023-07-08 07:12 PM PDT -vincentdang,2023-07-11T12:38:14Z,- vincentdang assigned to issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1549999356) at 2023-07-11 05:38 AM PDT -vincentdang,2023-07-11T12:40:19Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1630752807) at 2023-07-11 05:40 AM PDT -vincentdang,2023-07-12T15:46:07Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1632784490) at 2023-07-12 08:46 AM PDT -vincentdang,2023-07-13T14:52:03Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1634387481) at 2023-07-13 07:52 AM PDT -vincentdang,2023-07-14T00:33:00Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1635090336) at 2023-07-13 05:33 PM PDT -vincentdang,2023-07-16T13:56:49Z,- vincentdang opened pull request: [4952](https://github.com/hackforla/website/pull/4952) at 2023-07-16 06:56 AM PDT -vincentdang,2023-07-16T13:59:53Z,- vincentdang pull request closed w/o merging: [4952](https://github.com/hackforla/website/pull/4952#event-9831187029) at 2023-07-16 06:59 AM PDT -vincentdang,2023-07-16T14:00:28Z,- vincentdang commented on pull request: [4952](https://github.com/hackforla/website/pull/4952#issuecomment-1637091971) at 2023-07-16 07:00 AM PDT -vincentdang,2023-07-16T14:06:00Z,- vincentdang opened pull request: [4953](https://github.com/hackforla/website/pull/4953) at 2023-07-16 07:06 AM PDT -vincentdang,2023-07-16T17:17:25Z,- vincentdang commented on pull request: [4651](https://github.com/hackforla/website/pull/4651#issuecomment-1637143248) at 2023-07-16 10:17 AM PDT -vincentdang,2023-07-16T18:00:57Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1637152671) at 2023-07-16 11:00 AM PDT -vincentdang,2023-07-16T18:10:20Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1637154465) at 2023-07-16 11:10 AM PDT -vincentdang,2023-07-17T01:24:25Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1637263939) at 2023-07-16 06:24 PM PDT -vincentdang,2023-07-18T03:22:53Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1639274719) at 2023-07-17 08:22 PM PDT -vincentdang,2023-07-29T01:48:04Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1656512312) at 2023-07-28 06:48 PM PDT -vincentdang,2023-07-29T02:00:06Z,- vincentdang commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1656516050) at 2023-07-28 07:00 PM PDT -vincentdang,2023-07-29T02:06:22Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1656517585) at 2023-07-28 07:06 PM PDT -vincentdang,2023-07-29T02:08:22Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1656518240) at 2023-07-28 07:08 PM PDT -vincentdang,2023-07-29T02:12:19Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1656519669) at 2023-07-28 07:12 PM PDT -vincentdang,2023-08-01T01:17:47Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1659421120) at 2023-07-31 06:17 PM PDT -vincentdang,2023-08-02T23:40:24Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1663100424) at 2023-08-02 04:40 PM PDT -vincentdang,2023-08-08T02:09:23Z,- vincentdang opened pull request: [5162](https://github.com/hackforla/website/pull/5162) at 2023-08-07 07:09 PM PDT -vincentdang,2023-08-08T02:10:35Z,- vincentdang commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1668804415) at 2023-08-07 07:10 PM PDT -vincentdang,2023-08-09T16:13:27Z,- vincentdang pull request merged: [5162](https://github.com/hackforla/website/pull/5162#event-10049709263) at 2023-08-09 09:13 AM PDT -vincentdang,2023-08-09T16:18:11Z,- vincentdang pull request closed w/o merging: [4953](https://github.com/hackforla/website/pull/4953#event-10049755042) at 2023-08-09 09:18 AM PDT -vincentdang,2023-08-13T05:35:58Z,- vincentdang commented on pull request: [5162](https://github.com/hackforla/website/pull/5162#issuecomment-1676236683) at 2023-08-12 10:35 PM PDT -vincentdang,2023-08-13T05:38:43Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1676237230) at 2023-08-12 10:38 PM PDT -vincentdang,2023-08-18T01:55:42Z,- vincentdang commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1683220497) at 2023-08-17 06:55 PM PDT -vincentdang,2023-08-18T23:27:19Z,- vincentdang commented on issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1684546506) at 2023-08-18 04:27 PM PDT -vincentdang,2023-08-22T15:46:30Z,- vincentdang commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1688466952) at 2023-08-22 08:46 AM PDT -vincentdang,2023-11-08T06:18:28Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1801160796) at 2023-11-07 10:18 PM PST -vinfinity7,2023-08-29T20:03:46Z,- vinfinity7 commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1698054318) at 2023-08-29 01:03 PM PDT -Vinny02,5076,SKILLS ISSUE -Vinny02,2023-07-26T03:04:23Z,- Vinny02 opened issue: [5076](https://github.com/hackforla/website/issues/5076) at 2023-07-25 08:04 PM PDT -Vinny02,2023-07-26T03:04:30Z,- Vinny02 assigned to issue: [5076](https://github.com/hackforla/website/issues/5076) at 2023-07-25 08:04 PM PDT -Vinny02,2023-07-30T17:46:56Z,- Vinny02 assigned to issue: [5029](https://github.com/hackforla/website/issues/5029) at 2023-07-30 10:46 AM PDT -Vinny02,2023-07-30T17:47:12Z,- Vinny02 unassigned from issue: [5029](https://github.com/hackforla/website/issues/5029#issuecomment-1657229218) at 2023-07-30 10:47 AM PDT -Vinny02,2023-07-30T17:47:58Z,- Vinny02 assigned to issue: [5029](https://github.com/hackforla/website/issues/5029#issuecomment-1657229218) at 2023-07-30 10:47 AM PDT -Vinny02,2023-07-30T18:03:08Z,- Vinny02 opened pull request: [5117](https://github.com/hackforla/website/pull/5117) at 2023-07-30 11:03 AM PDT -Vinny02,2023-07-31T07:38:29Z,- Vinny02 commented on pull request: [5117](https://github.com/hackforla/website/pull/5117#issuecomment-1657836284) at 2023-07-31 12:38 AM PDT -Vinny02,2023-07-31T12:18:34Z,- Vinny02 commented on issue: [5076](https://github.com/hackforla/website/issues/5076#issuecomment-1658262156) at 2023-07-31 05:18 AM PDT -Vinny02,2023-07-31T12:27:17Z,- Vinny02 closed issue as completed: [5076](https://github.com/hackforla/website/issues/5076#event-9963272168) at 2023-07-31 05:27 AM PDT -Vinny02,2023-07-31T22:39:27Z,- Vinny02 pull request merged: [5117](https://github.com/hackforla/website/pull/5117#event-9969813548) at 2023-07-31 03:39 PM PDT -Vinny02,2023-07-31T23:13:47Z,- Vinny02 assigned to issue: [4801](https://github.com/hackforla/website/issues/4801) at 2023-07-31 04:13 PM PDT -Vinny02,2023-07-31T23:55:04Z,- Vinny02 opened pull request: [5123](https://github.com/hackforla/website/pull/5123) at 2023-07-31 04:55 PM PDT -Vinny02,2023-08-01T03:51:51Z,- Vinny02 commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659523289) at 2023-07-31 08:51 PM PDT -Vinny02,2023-08-03T04:00:43Z,- Vinny02 assigned to issue: [4957](https://github.com/hackforla/website/issues/4957) at 2023-08-02 09:00 PM PDT -Vinny02,2023-08-03T04:31:25Z,- Vinny02 commented on issue: [4957](https://github.com/hackforla/website/issues/4957#issuecomment-1663274508) at 2023-08-02 09:31 PM PDT -Vinny02,2023-08-03T04:37:45Z,- Vinny02 commented on issue: [4957](https://github.com/hackforla/website/issues/4957#issuecomment-1663278430) at 2023-08-02 09:37 PM PDT -Vinny02,2023-08-07T01:09:05Z,- Vinny02 commented on pull request: [5123](https://github.com/hackforla/website/pull/5123#issuecomment-1667041239) at 2023-08-06 06:09 PM PDT -Vinny02,2023-08-09T07:52:46Z,- Vinny02 pull request merged: [5123](https://github.com/hackforla/website/pull/5123#event-10043592855) at 2023-08-09 12:52 AM PDT -Vinny02,2023-08-15T16:14:56Z,- Vinny02 commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1679233041) at 2023-08-15 09:14 AM PDT -Vinny02,2023-08-15T16:20:05Z,- Vinny02 submitted pull request review: [5203](https://github.com/hackforla/website/pull/5203#pullrequestreview-1578955571) at 2023-08-15 09:20 AM PDT -Vinny02,2023-08-16T23:35:40Z,- Vinny02 commented on pull request: [5240](https://github.com/hackforla/website/pull/5240#issuecomment-1681398529) at 2023-08-16 04:35 PM PDT -Vinny02,2023-08-16T23:49:18Z,- Vinny02 submitted pull request review: [5240](https://github.com/hackforla/website/pull/5240#pullrequestreview-1581576405) at 2023-08-16 04:49 PM PDT -Vinny02,2023-08-17T15:59:37Z,- Vinny02 commented on pull request: [5243](https://github.com/hackforla/website/pull/5243#issuecomment-1682538161) at 2023-08-17 08:59 AM PDT -Vinny02,2023-08-17T16:01:48Z,- Vinny02 submitted pull request review: [5243](https://github.com/hackforla/website/pull/5243#pullrequestreview-1582958597) at 2023-08-17 09:01 AM PDT -Vinny02,2023-08-17T17:35:05Z,- Vinny02 submitted pull request review: [5240](https://github.com/hackforla/website/pull/5240#pullrequestreview-1583136738) at 2023-08-17 10:35 AM PDT -Vinny02,2023-08-17T17:39:11Z,- Vinny02 commented on pull request: [5240](https://github.com/hackforla/website/pull/5240#issuecomment-1682702477) at 2023-08-17 10:39 AM PDT -Vinny02,2023-08-18T12:19:20Z,- Vinny02 commented on pull request: [5247](https://github.com/hackforla/website/pull/5247#issuecomment-1683836872) at 2023-08-18 05:19 AM PDT -Vinny02,2023-08-18T12:24:19Z,- Vinny02 submitted pull request review: [5247](https://github.com/hackforla/website/pull/5247#pullrequestreview-1584473279) at 2023-08-18 05:24 AM PDT -Vinny02,2023-08-19T21:19:02Z,- Vinny02 submitted pull request review: [5247](https://github.com/hackforla/website/pull/5247#pullrequestreview-1585759379) at 2023-08-19 02:19 PM PDT -Vinny02,2023-08-19T21:23:17Z,- Vinny02 commented on pull request: [5257](https://github.com/hackforla/website/pull/5257#issuecomment-1685114801) at 2023-08-19 02:23 PM PDT -Vinny02,2023-08-19T21:31:46Z,- Vinny02 submitted pull request review: [5257](https://github.com/hackforla/website/pull/5257#pullrequestreview-1585760135) at 2023-08-19 02:31 PM PDT -Vinny02,2023-08-29T20:14:31Z,- Vinny02 commented on pull request: [5331](https://github.com/hackforla/website/pull/5331#issuecomment-1698066318) at 2023-08-29 01:14 PM PDT -Vinny02,2023-08-29T20:15:36Z,- Vinny02 submitted pull request review: [5331](https://github.com/hackforla/website/pull/5331#pullrequestreview-1601208767) at 2023-08-29 01:15 PM PDT -Vinny02,2023-09-08T10:55:40Z,- Vinny02 commented on pull request: [5457](https://github.com/hackforla/website/pull/5457#issuecomment-1711476858) at 2023-09-08 03:55 AM PDT -Vinny02,2023-09-08T11:16:20Z,- Vinny02 submitted pull request review: [5457](https://github.com/hackforla/website/pull/5457#pullrequestreview-1617249502) at 2023-09-08 04:16 AM PDT -vishnubansal001,2023-05-26T18:21:03Z,- vishnubansal001 commented on issue: [4707](https://github.com/hackforla/website/issues/4707#issuecomment-1564760300) at 2023-05-26 11:21 AM PDT -vivvvnguyen,5870,SKILLS ISSUE -vivvvnguyen,2023-11-07T04:24:36Z,- vivvvnguyen opened issue: [5870](https://github.com/hackforla/website/issues/5870) at 2023-11-06 08:24 PM PST -vivvvnguyen,2023-11-07T04:24:48Z,- vivvvnguyen assigned to issue: [5870](https://github.com/hackforla/website/issues/5870) at 2023-11-06 08:24 PM PST -VJ1285,2021-02-25T15:28:06Z,- VJ1285 opened issue: [1119](https://github.com/hackforla/website/issues/1119) at 2021-02-25 07:28 AM PST -VJ1285,2021-03-06T01:43:54Z,- VJ1285 commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-791833986) at 2021-03-05 05:43 PM PST -VJ1285,2021-03-18T01:54:06Z,- VJ1285 commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801556554) at 2021-03-17 06:54 PM PDT -VJ1285,2021-03-18T02:10:59Z,- VJ1285 commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801562412) at 2021-03-17 07:10 PM PDT -vmaineng,3683,SKILLS ISSUE -vmaineng,2022-11-01T02:14:56Z,- vmaineng opened issue: [3683](https://github.com/hackforla/website/issues/3683) at 2022-10-31 07:14 PM PDT -vmaineng,2022-11-27T07:18:14Z,- vmaineng assigned to issue: [3683](https://github.com/hackforla/website/issues/3683) at 2022-11-26 11:18 PM PST -vmaineng,2022-12-02T21:44:38Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1335872594) at 2022-12-02 01:44 PM PST -vmaineng,2022-12-18T21:53:59Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1356883986) at 2022-12-18 01:53 PM PST -vmaineng,2023-01-03T21:41:23Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1370252170) at 2023-01-03 01:41 PM PST -vmaineng,2023-01-13T17:31:44Z,- vmaineng assigned to issue: [2276](https://github.com/hackforla/website/issues/2276#issuecomment-926948199) at 2023-01-13 09:31 AM PST -vmaineng,2023-01-13T20:14:21Z,- vmaineng opened pull request: [3814](https://github.com/hackforla/website/pull/3814) at 2023-01-13 12:14 PM PST -vmaineng,2023-01-13T20:17:02Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1382344592) at 2023-01-13 12:17 PM PST -vmaineng,2023-01-13T20:17:03Z,- vmaineng closed issue as completed: [3683](https://github.com/hackforla/website/issues/3683#event-8224121808) at 2023-01-13 12:17 PM PST -vmaineng,2023-01-13T20:18:06Z,- vmaineng commented on issue: [2276](https://github.com/hackforla/website/issues/2276#issuecomment-1382345547) at 2023-01-13 12:18 PM PST -vmaineng,2023-01-13T20:25:58Z,- vmaineng reopened issue: [3683](https://github.com/hackforla/website/issues/3683#event-8224121808) at 2023-01-13 12:25 PM PST -vmaineng,2023-01-16T16:29:51Z,- vmaineng commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1384294664) at 2023-01-16 08:29 AM PST -vmaineng,2023-01-16T22:41:15Z,- vmaineng commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1384637272) at 2023-01-16 02:41 PM PST -vmaineng,2023-01-20T14:54:06Z,- vmaineng pull request merged: [3814](https://github.com/hackforla/website/pull/3814#event-8322185100) at 2023-01-20 06:54 AM PST -vmaineng,2023-01-23T22:46:38Z,- vmaineng assigned to issue: [3792](https://github.com/hackforla/website/issues/3792) at 2023-01-23 02:46 PM PST -vmaineng,2023-01-24T00:40:16Z,- vmaineng commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1401210621) at 2023-01-23 04:40 PM PST -vmaineng,2023-01-24T00:48:55Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1401217083) at 2023-01-23 04:48 PM PST -vmaineng,2023-01-25T01:20:05Z,- vmaineng opened pull request: [3871](https://github.com/hackforla/website/pull/3871) at 2023-01-24 05:20 PM PST -vmaineng,2023-01-25T01:21:56Z,- vmaineng commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1402917296) at 2023-01-24 05:21 PM PST -vmaineng,2023-01-27T04:00:48Z,- vmaineng pull request closed w/o merging: [3871](https://github.com/hackforla/website/pull/3871#event-8369854758) at 2023-01-26 08:00 PM PST -vmaineng,2023-01-27T04:11:35Z,- vmaineng opened pull request: [3883](https://github.com/hackforla/website/pull/3883) at 2023-01-26 08:11 PM PST -vmaineng,2023-01-27T04:12:28Z,- vmaineng commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1405995215) at 2023-01-26 08:12 PM PST -vmaineng,2023-01-31T01:48:34Z,- vmaineng commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1409623658) at 2023-01-30 05:48 PM PST -vmaineng,2023-02-01T05:26:25Z,- vmaineng pull request merged: [3883](https://github.com/hackforla/website/pull/3883#event-8406528988) at 2023-01-31 09:26 PM PST -vmaineng,2023-02-01T16:58:27Z,- vmaineng commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1412394029) at 2023-02-01 08:58 AM PST -vmaineng,2023-02-01T20:32:25Z,- vmaineng commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1412685266) at 2023-02-01 12:32 PM PST -vmaineng,2023-02-01T20:37:18Z,- vmaineng submitted pull request review: [3907](https://github.com/hackforla/website/pull/3907#pullrequestreview-1279827882) at 2023-02-01 12:37 PM PST -vmaineng,2023-02-13T00:50:50Z,- vmaineng assigned to issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1414615124) at 2023-02-12 04:50 PM PST -vmaineng,2023-02-13T00:52:27Z,- vmaineng commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1427186603) at 2023-02-12 04:52 PM PST -vmaineng,2023-02-14T20:14:17Z,- vmaineng commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1430318210) at 2023-02-14 12:14 PM PST -vmaineng,2023-02-15T01:51:53Z,- vmaineng opened pull request: [3978](https://github.com/hackforla/website/pull/3978) at 2023-02-14 05:51 PM PST -vmaineng,2023-02-15T01:53:24Z,- vmaineng commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1430639780) at 2023-02-14 05:53 PM PST -vmaineng,2023-02-16T16:23:21Z,- vmaineng commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1433354522) at 2023-02-16 08:23 AM PST -vmaineng,2023-02-17T02:07:12Z,- vmaineng pull request merged: [3978](https://github.com/hackforla/website/pull/3978#event-8542861532) at 2023-02-16 06:07 PM PST -vmaineng,2023-02-21T01:02:06Z,- vmaineng assigned to issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1428972228) at 2023-02-20 05:02 PM PST -vmaineng,2023-02-21T01:04:30Z,- vmaineng commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1437720862) at 2023-02-20 05:04 PM PST -vmaineng,2023-02-21T01:17:41Z,- vmaineng commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1437729418) at 2023-02-20 05:17 PM PST -vmaineng,2023-02-21T01:35:56Z,- vmaineng commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1437742422) at 2023-02-20 05:35 PM PST -vmaineng,2023-02-21T19:29:06Z,- vmaineng unassigned from issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1437720862) at 2023-02-21 11:29 AM PST -vmaineng,2023-02-21T22:42:13Z,- vmaineng commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1439186193) at 2023-02-21 02:42 PM PST -vmaineng,2023-03-06T20:57:04Z,- vmaineng commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1456982349) at 2023-03-06 12:57 PM PST -vmaineng,2023-03-06T21:31:34Z,- vmaineng submitted pull request review: [4099](https://github.com/hackforla/website/pull/4099#pullrequestreview-1327223395) at 2023-03-06 01:31 PM PST -vorleakyek,7339,SKILLS ISSUE -vorleakyek,2024-08-21T05:09:30Z,- vorleakyek opened issue: [7339](https://github.com/hackforla/website/issues/7339) at 2024-08-20 10:09 PM PDT -vorleakyek,2024-08-21T05:09:45Z,- vorleakyek assigned to issue: [7339](https://github.com/hackforla/website/issues/7339) at 2024-08-20 10:09 PM PDT -vorleakyek,2024-08-22T01:13:09Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2303379490) at 2024-08-21 06:13 PM PDT -vorleakyek,2024-08-22T03:51:38Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2303620333) at 2024-08-21 08:51 PM PDT -vorleakyek,2024-08-22T04:40:28Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2303734665) at 2024-08-21 09:40 PM PDT -vorleakyek,2024-08-22T22:29:40Z,- vorleakyek assigned to issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2272517253) at 2024-08-22 03:29 PM PDT -vorleakyek,2024-08-23T02:05:56Z,- vorleakyek commented on issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2306051105) at 2024-08-22 07:05 PM PDT -vorleakyek,2024-08-23T02:12:54Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2306056924) at 2024-08-22 07:12 PM PDT -vorleakyek,2024-08-23T02:23:20Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2306064917) at 2024-08-22 07:23 PM PDT -vorleakyek,2024-08-24T04:44:29Z,- vorleakyek opened pull request: [7347](https://github.com/hackforla/website/pull/7347) at 2024-08-23 09:44 PM PDT -vorleakyek,2024-08-25T08:30:36Z,- vorleakyek pull request merged: [7347](https://github.com/hackforla/website/pull/7347#event-14003609839) at 2024-08-25 01:30 AM PDT -vorleakyek,2024-08-25T20:17:49Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2308980143) at 2024-08-25 01:17 PM PDT -vorleakyek,2024-08-25T20:49:48Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2308988979) at 2024-08-25 01:49 PM PDT -vorleakyek,2024-08-25T20:54:54Z,- vorleakyek assigned to issue: [7240](https://github.com/hackforla/website/issues/7240) at 2024-08-25 01:54 PM PDT -vorleakyek,2024-08-25T21:07:17Z,- vorleakyek commented on issue: [7240](https://github.com/hackforla/website/issues/7240#issuecomment-2308993976) at 2024-08-25 02:07 PM PDT -vorleakyek,2024-08-25T23:17:53Z,- vorleakyek opened pull request: [7350](https://github.com/hackforla/website/pull/7350) at 2024-08-25 04:17 PM PDT -vorleakyek,2024-08-27T02:57:11Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2311471184) at 2024-08-26 07:57 PM PDT -vorleakyek,2024-08-27T05:00:50Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2311575895) at 2024-08-26 10:00 PM PDT -vorleakyek,2024-08-27T05:07:12Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2311581794) at 2024-08-26 10:07 PM PDT -vorleakyek,2024-08-27T05:09:29Z,- vorleakyek assigned to issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2309340091) at 2024-08-26 10:09 PM PDT -vorleakyek,2024-08-27T05:09:46Z,- vorleakyek unassigned from issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:09 PM PDT -vorleakyek,2024-08-27T05:14:07Z,- vorleakyek assigned to issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:14 PM PDT -vorleakyek,2024-08-27T05:14:21Z,- vorleakyek unassigned from issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:14 PM PDT -vorleakyek,2024-08-27T17:06:38Z,- vorleakyek pull request merged: [7350](https://github.com/hackforla/website/pull/7350#event-14032300966) at 2024-08-27 10:06 AM PDT -vorleakyek,2024-08-27T22:05:52Z,- vorleakyek commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2313657950) at 2024-08-27 03:05 PM PDT -vorleakyek,2024-08-27T22:07:34Z,- vorleakyek assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2311480634) at 2024-08-27 03:07 PM PDT -vorleakyek,2024-08-27T22:10:28Z,- vorleakyek commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2313664135) at 2024-08-27 03:10 PM PDT -vorleakyek,2024-08-28T05:10:03Z,- vorleakyek commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2314328463) at 2024-08-27 10:10 PM PDT -vorleakyek,2024-08-29T01:39:40Z,- vorleakyek submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2267522605) at 2024-08-28 06:39 PM PDT -vorleakyek,2024-08-29T01:49:07Z,- vorleakyek submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2267529534) at 2024-08-28 06:49 PM PDT -vorleakyek,2024-08-29T01:50:33Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2316561573) at 2024-08-28 06:50 PM PDT -vorleakyek,2024-08-29T02:37:32Z,- vorleakyek unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2314328463) at 2024-08-28 07:37 PM PDT -vorleakyek,2024-08-29T02:37:36Z,- vorleakyek assigned to issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2308865372) at 2024-08-28 07:37 PM PDT -vorleakyek,2024-08-29T02:40:01Z,- vorleakyek commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2316604797) at 2024-08-28 07:40 PM PDT -vorleakyek,2024-08-29T03:49:18Z,- vorleakyek commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2316660083) at 2024-08-28 08:49 PM PDT -vorleakyek,2024-08-29T03:52:16Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2316662134) at 2024-08-28 08:52 PM PDT -vorleakyek,2024-08-29T04:02:00Z,- vorleakyek commented on pull request: [7341](https://github.com/hackforla/website/pull/7341#issuecomment-2316669241) at 2024-08-28 09:02 PM PDT -vorleakyek,2024-08-30T02:53:27Z,- vorleakyek submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2270866225) at 2024-08-29 07:53 PM PDT -vorleakyek,2024-08-30T02:55:02Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2319755217) at 2024-08-29 07:55 PM PDT -vorleakyek,2024-08-30T03:59:38Z,- vorleakyek commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319964163) at 2024-08-29 08:59 PM PDT -vorleakyek,2024-08-30T21:53:50Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322394298) at 2024-08-30 02:53 PM PDT -vorleakyek,2024-08-31T03:24:09Z,- vorleakyek submitted pull request review: [7360](https://github.com/hackforla/website/pull/7360#pullrequestreview-2273735544) at 2024-08-30 08:24 PM PDT -vorleakyek,2024-08-31T03:25:48Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322749078) at 2024-08-30 08:25 PM PDT -vorleakyek,2024-08-31T03:49:21Z,- vorleakyek submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2273741353) at 2024-08-30 08:49 PM PDT -vorleakyek,2024-08-31T03:52:46Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322755107) at 2024-08-30 08:52 PM PDT -vorleakyek,2024-08-31T04:05:28Z,- vorleakyek submitted pull request review: [7370](https://github.com/hackforla/website/pull/7370#pullrequestreview-2273743215) at 2024-08-30 09:05 PM PDT -vorleakyek,2024-08-31T04:07:12Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322758429) at 2024-08-30 09:07 PM PDT -vorleakyek,2024-08-31T04:39:22Z,- vorleakyek submitted pull request review: [7371](https://github.com/hackforla/website/pull/7371#pullrequestreview-2273750379) at 2024-08-30 09:39 PM PDT -vorleakyek,2024-08-31T04:41:19Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322768401) at 2024-08-30 09:41 PM PDT -vorleakyek,2024-08-31T04:46:00Z,- vorleakyek commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2322769722) at 2024-08-30 09:46 PM PDT -vorleakyek,2024-09-02T03:47:50Z,- vorleakyek commented on pull request: [7375](https://github.com/hackforla/website/pull/7375#issuecomment-2323757962) at 2024-09-01 08:47 PM PDT -vorleakyek,2024-09-02T04:34:16Z,- vorleakyek submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2274656650) at 2024-09-01 09:34 PM PDT -vorleakyek,2024-09-02T04:41:13Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2323801196) at 2024-09-01 09:41 PM PDT -vorleakyek,2024-09-04T01:16:04Z,- vorleakyek assigned to issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2290006846) at 2024-09-03 06:16 PM PDT -vorleakyek,2024-09-04T01:34:19Z,- vorleakyek opened issue: [7384](https://github.com/hackforla/website/issues/7384) at 2024-09-03 06:34 PM PDT -vorleakyek,2024-09-04T01:42:02Z,- vorleakyek commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2327744611) at 2024-09-03 06:42 PM PDT -vorleakyek,2024-09-04T01:55:22Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2327755893) at 2024-09-03 06:55 PM PDT -vorleakyek,2024-09-04T02:00:53Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2327761866) at 2024-09-03 07:00 PM PDT -vorleakyek,2024-09-04T02:06:17Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2327766312) at 2024-09-03 07:06 PM PDT -vorleakyek,2024-09-07T04:32:22Z,- vorleakyek submitted pull request review: [7385](https://github.com/hackforla/website/pull/7385#pullrequestreview-2287416450) at 2024-09-06 09:32 PM PDT -vorleakyek,2024-09-07T04:33:56Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2335037600) at 2024-09-06 09:33 PM PDT -vorleakyek,2024-09-15T17:12:02Z,- vorleakyek assigned to issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2322125583) at 2024-09-15 10:12 AM PDT -vorleakyek,2024-09-15T17:46:21Z,- vorleakyek commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2351698289) at 2024-09-15 10:46 AM PDT -vorleakyek,2024-09-16T23:09:54Z,- vorleakyek commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2354185397) at 2024-09-16 04:09 PM PDT -vorleakyek,2024-09-17T06:25:37Z,- vorleakyek opened pull request: [7467](https://github.com/hackforla/website/pull/7467) at 2024-09-16 11:25 PM PDT -vorleakyek,2024-09-17T06:30:48Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2354643991) at 2024-09-16 11:30 PM PDT -vorleakyek,2024-09-17T06:34:54Z,- vorleakyek commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2354653160) at 2024-09-16 11:34 PM PDT -vorleakyek,2024-09-17T06:37:36Z,- vorleakyek commented on pull request: [7463](https://github.com/hackforla/website/pull/7463#issuecomment-2354661124) at 2024-09-16 11:37 PM PDT -vorleakyek,2024-09-19T03:35:31Z,- vorleakyek submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2314318644) at 2024-09-18 08:35 PM PDT -vorleakyek,2024-09-19T03:47:01Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2359917315) at 2024-09-18 08:47 PM PDT -vorleakyek,2024-09-19T06:14:22Z,- vorleakyek commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2360077259) at 2024-09-18 11:14 PM PDT -vorleakyek,2024-09-19T20:56:39Z,- vorleakyek commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2362166620) at 2024-09-19 01:56 PM PDT -vorleakyek,2024-09-19T21:02:59Z,- vorleakyek commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2362192369) at 2024-09-19 02:02 PM PDT -vorleakyek,2024-09-19T21:13:53Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2362209754) at 2024-09-19 02:13 PM PDT -vorleakyek,2024-09-20T03:03:27Z,- vorleakyek submitted pull request review: [7468](https://github.com/hackforla/website/pull/7468#pullrequestreview-2317141507) at 2024-09-19 08:03 PM PDT -vorleakyek,2024-09-20T03:05:07Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2362668981) at 2024-09-19 08:05 PM PDT -vorleakyek,2024-09-21T05:02:48Z,- vorleakyek submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2319653500) at 2024-09-20 10:02 PM PDT -vorleakyek,2024-09-23T19:28:06Z,- vorleakyek submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2323135916) at 2024-09-23 12:28 PM PDT -vorleakyek,2024-09-26T20:45:46Z,- vorleakyek pull request merged: [7467](https://github.com/hackforla/website/pull/7467#event-14422401912) at 2024-09-26 01:45 PM PDT -vorleakyek,2024-10-08T01:35:56Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2398434121) at 2024-10-07 06:35 PM PDT -vorleakyek,2024-10-15T03:55:05Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2412842485) at 2024-10-14 08:55 PM PDT -vorleakyek,2024-10-24T04:24:51Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2434252444) at 2024-10-23 09:24 PM PDT -vraer,4071,SKILLS ISSUE -vraer,2023-03-01T04:16:35Z,- vraer opened issue: [4071](https://github.com/hackforla/website/issues/4071) at 2023-02-28 08:16 PM PST -vraer,2023-03-01T04:16:36Z,- vraer assigned to issue: [4071](https://github.com/hackforla/website/issues/4071) at 2023-02-28 08:16 PM PST -vraer,2023-03-03T22:13:38Z,- vraer assigned to issue: [4036](https://github.com/hackforla/website/issues/4036) at 2023-03-03 02:13 PM PST -vraer,2023-03-04T01:53:39Z,- vraer opened pull request: [4106](https://github.com/hackforla/website/pull/4106) at 2023-03-03 05:53 PM PST -vraer,2023-03-04T02:24:17Z,- vraer commented on issue: [4071](https://github.com/hackforla/website/issues/4071#issuecomment-1454339686) at 2023-03-03 06:24 PM PST -vraer,2023-03-08T04:17:09Z,- vraer commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1459410744) at 2023-03-07 08:17 PM PST -vraer,2023-03-09T03:49:11Z,- vraer pull request merged: [4106](https://github.com/hackforla/website/pull/4106#event-8702909666) at 2023-03-08 07:49 PM PST -vraer,2023-03-09T06:24:07Z,- vraer assigned to issue: [4023](https://github.com/hackforla/website/issues/4023) at 2023-03-08 10:24 PM PST -vraer,2023-03-09T07:22:48Z,- vraer opened pull request: [4140](https://github.com/hackforla/website/pull/4140) at 2023-03-08 11:22 PM PST -vraer,2023-03-09T23:15:36Z,- vraer pull request merged: [4140](https://github.com/hackforla/website/pull/4140#event-8713283217) at 2023-03-09 03:15 PM PST -vraer,2023-03-18T20:57:00Z,- vraer assigned to issue: [3966](https://github.com/hackforla/website/issues/3966) at 2023-03-18 01:57 PM PDT -vraer,2023-03-18T22:10:30Z,- vraer opened pull request: [4209](https://github.com/hackforla/website/pull/4209) at 2023-03-18 03:10 PM PDT -vraer,2023-03-20T04:43:36Z,- vraer pull request merged: [4209](https://github.com/hackforla/website/pull/4209#event-8790144498) at 2023-03-19 09:43 PM PDT -vraer,2023-03-22T03:29:46Z,- vraer submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1351668614) at 2023-03-21 08:29 PM PDT -vraer,2023-03-24T06:26:20Z,- vraer assigned to issue: [4236](https://github.com/hackforla/website/issues/4236#issuecomment-1480440129) at 2023-03-23 11:26 PM PDT -vraer,2023-03-24T07:44:56Z,- vraer opened pull request: [4275](https://github.com/hackforla/website/pull/4275) at 2023-03-24 12:44 AM PDT -vraer,2023-03-25T03:33:48Z,- vraer commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1483706140) at 2023-03-24 08:33 PM PDT -vraer,2023-03-26T16:52:06Z,- vraer pull request merged: [4275](https://github.com/hackforla/website/pull/4275#event-8847612820) at 2023-03-26 09:52 AM PDT -vraer,2023-03-26T20:34:19Z,- vraer assigned to issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 01:34 PM PDT -vraer,2023-03-26T23:35:21Z,- vraer closed issue as completed: [4071](https://github.com/hackforla/website/issues/4071#event-8848390649) at 2023-03-26 04:35 PM PDT -vraer,2023-03-29T04:49:27Z,- vraer commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1487940278) at 2023-03-28 09:49 PM PDT -vraer,2023-04-06T22:27:32Z,- vraer commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1499703021) at 2023-04-06 03:27 PM PDT -vraer,2023-05-03T20:35:57Z,- vraer commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1533703089) at 2023-05-03 01:35 PM PDT -vraer,2023-05-28T10:49:01Z,- vraer assigned to issue: [4363](https://github.com/hackforla/website/issues/4363#event-9361366427) at 2023-05-28 03:49 AM PDT -vraer,2024-01-30T02:50:19Z,- vraer unassigned from issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1566085078) at 2024-01-29 06:50 PM PST -vraer,2024-02-05T03:49:26Z,- vraer commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1926183214) at 2024-02-04 07:49 PM PST -vzpeopledesign,3409,SKILLS ISSUE -vzpeopledesign,2022-07-20T21:31:02Z,- vzpeopledesign opened issue: [3409](https://github.com/hackforla/website/issues/3409) at 2022-07-20 02:31 PM PDT -vzpeopledesign,2022-07-20T21:31:02Z,- vzpeopledesign assigned to issue: [3409](https://github.com/hackforla/website/issues/3409) at 2022-07-20 02:31 PM PDT -vzpeopledesign,2022-08-10T21:14:36Z,- vzpeopledesign assigned to issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1155400747) at 2022-08-10 02:14 PM PDT -vzpeopledesign,2022-08-25T04:31:11Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1226761512) at 2022-08-24 09:31 PM PDT -vzpeopledesign,2022-08-29T18:17:15Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1230687465) at 2022-08-29 11:17 AM PDT -vzpeopledesign,2022-09-17T18:48:30Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1250122846) at 2022-09-17 11:48 AM PDT -vzpeopledesign,2022-09-25T14:44:31Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1257210994) at 2022-09-25 07:44 AM PDT -vzpeopledesign,2022-10-16T17:14:33Z,- vzpeopledesign assigned to issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1254144713) at 2022-10-16 10:14 AM PDT -vzpeopledesign,2022-10-16T17:16:57Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1280012983) at 2022-10-16 10:16 AM PDT -vzpeopledesign,2022-10-26T22:32:18Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1292734981) at 2022-10-26 03:32 PM PDT -vzpeopledesign,2022-11-09T17:53:00Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1309125651) at 2022-11-09 09:53 AM PST -vzpeopledesign,2022-11-16T21:29:21Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1317691016) at 2022-11-16 01:29 PM PST -vzpeopledesign,2022-11-26T19:24:53Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1328101080) at 2022-11-26 11:24 AM PST -vzpeopledesign,2024-10-20T17:27:13Z,- vzpeopledesign unassigned from issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2277292901) at 2024-10-20 10:27 AM PDT -vzpeopledesign,2024-10-20T17:28:23Z,- vzpeopledesign assigned to issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2277292901) at 2024-10-20 10:28 AM PDT -wanyuguan,2023-05-14T17:33:03Z,- wanyuguan commented on issue: [4649](https://github.com/hackforla/website/issues/4649#issuecomment-1546955155) at 2023-05-14 10:33 AM PDT -wanyuguan,2023-05-21T18:48:12Z,- wanyuguan assigned to issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556190845) at 2023-05-21 11:48 AM PDT -wanyuguan,2023-05-28T16:06:22Z,- wanyuguan commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1566185366) at 2023-05-28 09:06 AM PDT -wanyuguan,2023-05-28T16:20:06Z,- wanyuguan commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1566190287) at 2023-05-28 09:20 AM PDT -wanyuguan,2023-05-28T16:22:53Z,- wanyuguan commented on issue: [4714](https://github.com/hackforla/website/issues/4714#issuecomment-1566190851) at 2023-05-28 09:22 AM PDT -wanyuguan,2023-05-28T16:29:25Z,- wanyuguan commented on issue: [4707](https://github.com/hackforla/website/issues/4707#issuecomment-1566192529) at 2023-05-28 09:29 AM PDT -wanyuguan,2023-05-28T19:18:09Z,- wanyuguan commented on issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-1566234854) at 2023-05-28 12:18 PM PDT -wanyuguan,2023-05-28T19:21:13Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1566235512) at 2023-05-28 12:21 PM PDT -wanyuguan,2023-06-11T16:18:45Z,- wanyuguan assigned to issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575679729) at 2023-06-11 09:18 AM PDT -wanyuguan,2023-06-11T17:59:11Z,- wanyuguan unassigned from issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586262316) at 2023-06-11 10:59 AM PDT -wanyuguan,2023-06-18T15:28:19Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1596183919) at 2023-06-18 08:28 AM PDT -wanyuguan,2023-06-25T03:51:04Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1605853500) at 2023-06-24 08:51 PM PDT -wanyuguan,2023-06-25T17:46:54Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1606193958) at 2023-06-25 10:46 AM PDT -wanyuguan,2023-07-23T16:48:36Z,- wanyuguan commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1646888095) at 2023-07-23 09:48 AM PDT -wanyuguan,2023-07-23T19:24:52Z,- wanyuguan commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1646939145) at 2023-07-23 12:24 PM PDT -wanyuguan,2023-07-23T19:25:22Z,- wanyuguan commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1646939283) at 2023-07-23 12:25 PM PDT -wanyuguan,2023-07-29T16:40:32Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1656786362) at 2023-07-29 09:40 AM PDT -wanyuguan,2023-08-05T22:03:41Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1666620503) at 2023-08-05 03:03 PM PDT -wanyuguan,2023-08-06T04:11:58Z,- wanyuguan commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1666705883) at 2023-08-05 09:11 PM PDT -wanyuguan,2023-08-19T18:11:03Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1685077332) at 2023-08-19 11:11 AM PDT -wanyuguan,2023-08-20T18:08:32Z,- wanyuguan opened issue: [5269](https://github.com/hackforla/website/issues/5269) at 2023-08-20 11:08 AM PDT -wanyuguan,2023-08-20T18:41:19Z,- wanyuguan opened issue: [5271](https://github.com/hackforla/website/issues/5271) at 2023-08-20 11:41 AM PDT -wanyuguan,2023-08-20T19:21:10Z,- wanyuguan opened issue: [5274](https://github.com/hackforla/website/issues/5274) at 2023-08-20 12:21 PM PDT -wanyuguan,2023-09-03T15:25:29Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1704333663) at 2023-09-03 08:25 AM PDT -wanyuguan,2023-09-17T08:24:33Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1722423388) at 2023-09-17 01:24 AM PDT -wanyuguan,2023-09-17T16:33:10Z,- wanyuguan commented on issue: [5440](https://github.com/hackforla/website/issues/5440#issuecomment-1722514355) at 2023-09-17 09:33 AM PDT -wassimchakib,5224,SKILLS ISSUE -wassimchakib,2023-08-15T03:35:58Z,- wassimchakib opened issue: [5224](https://github.com/hackforla/website/issues/5224) at 2023-08-14 08:35 PM PDT -wassimchakib,2023-08-15T22:47:31Z,- wassimchakib commented on issue: [5224](https://github.com/hackforla/website/issues/5224#issuecomment-1679726523) at 2023-08-15 03:47 PM PDT -wassimchakib,2023-08-23T07:46:20Z,- wassimchakib assigned to issue: [5224](https://github.com/hackforla/website/issues/5224#issuecomment-1679726523) at 2023-08-23 12:46 AM PDT -WayneTsai45,4970,SKILLS ISSUE -WayneTsai45,2023-07-18T01:52:59Z,- WayneTsai45 opened issue: [4970](https://github.com/hackforla/website/issues/4970) at 2023-07-17 06:52 PM PDT -WayneTsai45,2023-07-18T02:30:33Z,- WayneTsai45 assigned to issue: [4970](https://github.com/hackforla/website/issues/4970) at 2023-07-17 07:30 PM PDT -WayneTsai45,2023-08-15T23:39:49Z,- WayneTsai45 commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1679764221) at 2023-08-15 04:39 PM PDT -WayneTsai45,2023-08-19T03:21:47Z,- WayneTsai45 assigned to issue: [5255](https://github.com/hackforla/website/issues/5255#issuecomment-1684674665) at 2023-08-18 08:21 PM PDT -WayneTsai45,2023-08-19T03:43:47Z,- WayneTsai45 commented on issue: [5255](https://github.com/hackforla/website/issues/5255#issuecomment-1684751737) at 2023-08-18 08:43 PM PDT -WayneTsai45,2023-08-19T16:39:14Z,- WayneTsai45 opened pull request: [5259](https://github.com/hackforla/website/pull/5259) at 2023-08-19 09:39 AM PDT -WayneTsai45,2023-08-22T22:24:47Z,- WayneTsai45 pull request merged: [5259](https://github.com/hackforla/website/pull/5259#event-10163645997) at 2023-08-22 03:24 PM PDT -WayneTsai45,2023-08-22T22:33:06Z,- WayneTsai45 assigned to issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1672310915) at 2023-08-22 03:33 PM PDT -WayneTsai45,2023-08-22T22:33:21Z,- WayneTsai45 unassigned from issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1689013154) at 2023-08-22 03:33 PM PDT -WayneTsai45,2023-08-23T16:10:38Z,- WayneTsai45 assigned to issue: [5293](https://github.com/hackforla/website/issues/5293) at 2023-08-23 09:10 AM PDT -WayneTsai45,2023-08-24T16:45:05Z,- WayneTsai45 unassigned from issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1690871592) at 2023-08-24 09:45 AM PDT -WayneTsai45,2023-09-14T01:34:32Z,- WayneTsai45 assigned to issue: [5459](https://github.com/hackforla/website/issues/5459#issuecomment-1711242994) at 2023-09-13 06:34 PM PDT -WayneTsai45,2023-09-14T01:35:58Z,- WayneTsai45 commented on issue: [5459](https://github.com/hackforla/website/issues/5459#issuecomment-1718584975) at 2023-09-13 06:35 PM PDT -WayneTsai45,2023-09-14T22:32:59Z,- WayneTsai45 opened pull request: [5523](https://github.com/hackforla/website/pull/5523) at 2023-09-14 03:32 PM PDT -WayneTsai45,2023-09-16T20:41:45Z,- WayneTsai45 assigned to issue: [5526](https://github.com/hackforla/website/issues/5526#issuecomment-1720325519) at 2023-09-16 01:41 PM PDT -WayneTsai45,2023-09-16T20:43:07Z,- WayneTsai45 commented on issue: [5526](https://github.com/hackforla/website/issues/5526#issuecomment-1722312422) at 2023-09-16 01:43 PM PDT -WayneTsai45,2023-09-17T01:32:31Z,- WayneTsai45 pull request merged: [5523](https://github.com/hackforla/website/pull/5523#event-10390591195) at 2023-09-16 06:32 PM PDT -wendybarrios,3688,SKILLS ISSUE -wendybarrios,2022-11-02T00:33:43Z,- wendybarrios opened issue: [3688](https://github.com/hackforla/website/issues/3688) at 2022-11-01 05:33 PM PDT -wendybarrios,2022-11-12T01:51:23Z,- wendybarrios assigned to issue: [3688](https://github.com/hackforla/website/issues/3688) at 2022-11-11 05:51 PM PST -wendybarrios,2022-11-15T04:59:17Z,- wendybarrios assigned to issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1048999173) at 2022-11-14 08:59 PM PST -wendybarrios,2022-11-15T05:06:28Z,- wendybarrios unassigned from issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1048999173) at 2022-11-14 09:06 PM PST -wendybarrios,2022-11-16T22:56:55Z,- wendybarrios assigned to issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1048999173) at 2022-11-16 02:56 PM PST -wendybarrios,2022-11-16T23:03:04Z,- wendybarrios commented on issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1317792296) at 2022-11-16 03:03 PM PST -wendybarrios,2022-11-16T23:05:44Z,- wendybarrios commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1317794630) at 2022-11-16 03:05 PM PST -wendybarrios,2022-11-17T01:08:19Z,- wendybarrios opened pull request: [3728](https://github.com/hackforla/website/pull/3728) at 2022-11-16 05:08 PM PST -wendybarrios,2022-11-17T20:17:48Z,- wendybarrios pull request merged: [3728](https://github.com/hackforla/website/pull/3728#event-7837470791) at 2022-11-17 12:17 PM PST -wendybarrios,2022-11-28T20:50:27Z,- wendybarrios assigned to issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1308060800) at 2022-11-28 12:50 PM PST -wendybarrios,2022-11-28T21:02:50Z,- wendybarrios commented on issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1329757339) at 2022-11-28 01:02 PM PST -wendybarrios,2022-11-28T21:59:04Z,- wendybarrios opened pull request: [3753](https://github.com/hackforla/website/pull/3753) at 2022-11-28 01:59 PM PST -wendybarrios,2022-12-01T18:29:29Z,- wendybarrios pull request merged: [3753](https://github.com/hackforla/website/pull/3753#event-7934598060) at 2022-12-01 10:29 AM PST -wendybarrios,2023-01-09T18:20:06Z,- wendybarrios commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1376057305) at 2023-01-09 10:20 AM PST -wendybarrios,2023-01-11T22:11:18Z,- wendybarrios assigned to issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1347279715) at 2023-01-11 02:11 PM PST -wendybarrios,2023-01-11T23:38:16Z,- wendybarrios commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1379621405) at 2023-01-11 03:38 PM PST -wendybarrios,2023-01-20T19:34:33Z,- wendybarrios commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1398842678) at 2023-01-20 11:34 AM PST -wendybarrios,2023-01-23T23:50:55Z,- wendybarrios commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1401162248) at 2023-01-23 03:50 PM PST -wendybarrios,2023-01-24T02:20:21Z,- wendybarrios submitted pull request review: [3850](https://github.com/hackforla/website/pull/3850#pullrequestreview-1266709358) at 2023-01-23 06:20 PM PST -wendybarrios,2023-01-28T18:00:51Z,- wendybarrios opened pull request: [3887](https://github.com/hackforla/website/pull/3887) at 2023-01-28 10:00 AM PST -wendybarrios,2023-02-01T21:39:48Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1412770012) at 2023-02-01 01:39 PM PST -wendybarrios,2023-02-09T00:48:30Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1423448044) at 2023-02-08 04:48 PM PST -wendybarrios,2023-02-11T20:59:58Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1426875595) at 2023-02-11 12:59 PM PST -wendybarrios,2023-02-15T00:07:12Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1430557327) at 2023-02-14 04:07 PM PST -wendybarrios,2023-02-15T00:20:05Z,- wendybarrios pull request merged: [3887](https://github.com/hackforla/website/pull/3887#event-8520892692) at 2023-02-14 04:20 PM PST -wendybarrios,2023-02-15T01:43:38Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1430633165) at 2023-02-14 05:43 PM PST -wendybarrios,2023-03-12T20:16:51Z,- wendybarrios assigned to issue: [3750](https://github.com/hackforla/website/issues/3750) at 2023-03-12 01:16 PM PDT -wendybarrios,2023-03-12T20:20:16Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1465290742) at 2023-03-12 01:20 PM PDT -wendybarrios,2023-03-26T21:35:18Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1484230917) at 2023-03-26 02:35 PM PDT -wendybarrios,2023-04-12T23:59:26Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1506115032) at 2023-04-12 04:59 PM PDT -wendybarrios,2023-04-14T01:46:30Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1507813380) at 2023-04-13 06:46 PM PDT -wendybarrios,2023-04-30T21:11:02Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1529140382) at 2023-04-30 02:11 PM PDT -wendybarrios,2023-06-14T05:51:05Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1590513855) at 2023-06-13 10:51 PM PDT -wendybarrios,2023-06-14T23:06:43Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1592106858) at 2023-06-14 04:06 PM PDT -wendybarrios,2023-06-20T01:16:44Z,- wendybarrios unassigned from issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597616546) at 2023-06-19 06:16 PM PDT -wendybarrios,2023-06-20T01:25:04Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597992124) at 2023-06-19 06:25 PM PDT -wendywilhelm10,2021-04-20T19:39:44Z,- wendywilhelm10 assigned to issue: [1342](https://github.com/hackforla/website/issues/1342) at 2021-04-20 12:39 PM PDT -wendywilhelm10,2021-04-25T18:16:51Z,- wendywilhelm10 opened pull request: [1464](https://github.com/hackforla/website/pull/1464) at 2021-04-25 11:16 AM PDT -wendywilhelm10,2021-04-25T20:14:45Z,- wendywilhelm10 pull request merged: [1464](https://github.com/hackforla/website/pull/1464#event-4641594258) at 2021-04-25 01:14 PM PDT -wendywilhelm10,2021-04-28T01:20:21Z,- wendywilhelm10 assigned to issue: [1475](https://github.com/hackforla/website/issues/1475) at 2021-04-27 06:20 PM PDT -wendywilhelm10,2021-04-28T03:07:36Z,- wendywilhelm10 unassigned from issue: [1475](https://github.com/hackforla/website/issues/1475) at 2021-04-27 08:07 PM PDT -wendywilhelm10,2021-04-28T07:48:15Z,- wendywilhelm10 assigned to issue: [1488](https://github.com/hackforla/website/issues/1488) at 2021-04-28 12:48 AM PDT -wendywilhelm10,2021-04-30T00:55:52Z,- wendywilhelm10 opened pull request: [1494](https://github.com/hackforla/website/pull/1494) at 2021-04-29 05:55 PM PDT -wendywilhelm10,2021-05-02T12:30:30Z,- wendywilhelm10 commented on issue: [1488](https://github.com/hackforla/website/issues/1488#issuecomment-830802387) at 2021-05-02 05:30 AM PDT -wendywilhelm10,2021-05-04T18:15:26Z,- wendywilhelm10 assigned to issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-821969415) at 2021-05-04 11:15 AM PDT -wendywilhelm10,2021-05-04T20:52:46Z,- wendywilhelm10 pull request merged: [1494](https://github.com/hackforla/website/pull/1494#event-4685633344) at 2021-05-04 01:52 PM PDT -wendywilhelm10,2021-05-13T20:15:46Z,- wendywilhelm10 opened pull request: [1541](https://github.com/hackforla/website/pull/1541) at 2021-05-13 01:15 PM PDT -wendywilhelm10,2021-05-15T08:35:15Z,- wendywilhelm10 pull request merged: [1541](https://github.com/hackforla/website/pull/1541#event-4749731144) at 2021-05-15 01:35 AM PDT -wendywilhelm10,2021-05-16T17:37:57Z,- wendywilhelm10 assigned to issue: [1548](https://github.com/hackforla/website/issues/1548) at 2021-05-16 10:37 AM PDT -wendywilhelm10,2021-05-23T13:52:34Z,- wendywilhelm10 opened pull request: [1620](https://github.com/hackforla/website/pull/1620) at 2021-05-23 06:52 AM PDT -wendywilhelm10,2021-05-23T18:04:14Z,- wendywilhelm10 assigned to issue: [1613](https://github.com/hackforla/website/issues/1613) at 2021-05-23 11:04 AM PDT -wendywilhelm10,2021-05-26T02:27:24Z,- wendywilhelm10 commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-848407896) at 2021-05-25 07:27 PM PDT -wendywilhelm10,2021-05-26T02:29:24Z,- wendywilhelm10 closed issue by PR 1670: [1550](https://github.com/hackforla/website/issues/1550#event-4796325140) at 2021-05-25 07:29 PM PDT -wendywilhelm10,2021-05-26T02:31:05Z,- wendywilhelm10 commented on issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-848409076) at 2021-05-25 07:31 PM PDT -wendywilhelm10,2021-05-26T02:38:42Z,- wendywilhelm10 commented on issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-848411456) at 2021-05-25 07:38 PM PDT -wendywilhelm10,2021-05-26T02:54:20Z,- wendywilhelm10 commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-848416001) at 2021-05-25 07:54 PM PDT -wendywilhelm10,2021-05-26T02:56:11Z,- wendywilhelm10 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-848416555) at 2021-05-25 07:56 PM PDT -wendywilhelm10,2021-05-26T02:58:07Z,- wendywilhelm10 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-848417138) at 2021-05-25 07:58 PM PDT -wendywilhelm10,2021-05-28T13:08:49Z,- wendywilhelm10 submitted pull request review: [1627](https://github.com/hackforla/website/pull/1627#pullrequestreview-671281691) at 2021-05-28 06:08 AM PDT -wendywilhelm10,2021-05-30T16:48:46Z,- wendywilhelm10 commented on issue: [1613](https://github.com/hackforla/website/issues/1613#issuecomment-851028555) at 2021-05-30 09:48 AM PDT -wendywilhelm10,2021-05-30T18:17:09Z,- wendywilhelm10 assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -wendywilhelm10,2021-05-31T13:22:12Z,- wendywilhelm10 opened pull request: [1675](https://github.com/hackforla/website/pull/1675) at 2021-05-31 06:22 AM PDT -wendywilhelm10,2021-05-31T13:33:14Z,- wendywilhelm10 assigned to issue: [1671](https://github.com/hackforla/website/issues/1671) at 2021-05-31 06:33 AM PDT -wendywilhelm10,2021-06-04T03:24:46Z,- wendywilhelm10 assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -wendywilhelm10,2021-06-05T16:31:23Z,- wendywilhelm10 commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855263473) at 2021-06-05 09:31 AM PDT -wendywilhelm10,2021-06-05T20:36:29Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-855292568) at 2021-06-05 01:36 PM PDT -wendywilhelm10,2021-06-06T06:18:22Z,- wendywilhelm10 pull request merged: [1675](https://github.com/hackforla/website/pull/1675#event-4847671923) at 2021-06-05 11:18 PM PDT -wendywilhelm10,2021-06-06T18:42:58Z,- wendywilhelm10 assigned to issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-06-06 11:42 AM PDT -wendywilhelm10,2021-06-06T18:43:16Z,- wendywilhelm10 unassigned from issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-06-06 11:43 AM PDT -wendywilhelm10,2021-06-06T18:49:57Z,- wendywilhelm10 commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-855444230) at 2021-06-06 11:49 AM PDT -wendywilhelm10,2021-06-06T18:52:16Z,- wendywilhelm10 commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-855444545) at 2021-06-06 11:52 AM PDT -wendywilhelm10,2021-06-06T18:52:16Z,- wendywilhelm10 closed issue as completed: [1602](https://github.com/hackforla/website/issues/1602#event-4848493659) at 2021-06-06 11:52 AM PDT -wendywilhelm10,2021-06-06T18:59:06Z,- wendywilhelm10 commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855445628) at 2021-06-06 11:59 AM PDT -wendywilhelm10,2021-06-09T01:58:48Z,- wendywilhelm10 pull request merged: [1620](https://github.com/hackforla/website/pull/1620#event-4862140325) at 2021-06-08 06:58 PM PDT -wendywilhelm10,2021-06-12T16:32:03Z,- wendywilhelm10 unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -wendywilhelm10,2021-06-17T02:48:21Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-862874600) at 2021-06-16 07:48 PM PDT -wendywilhelm10,2021-06-20T16:46:28Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-864581530) at 2021-06-20 09:46 AM PDT -wendywilhelm10,2021-06-27T14:33:47Z,- wendywilhelm10 opened pull request: [1837](https://github.com/hackforla/website/pull/1837) at 2021-06-27 07:33 AM PDT -wendywilhelm10,2021-07-04T12:53:24Z,- wendywilhelm10 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-873584157) at 2021-07-04 05:53 AM PDT -wendywilhelm10,2021-07-04T12:55:43Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-873584547) at 2021-07-04 05:55 AM PDT -wendywilhelm10,2021-08-08T13:20:55Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-894796987) at 2021-08-08 06:20 AM PDT -wendywilhelm10,2021-08-08T19:24:57Z,- wendywilhelm10 pull request merged: [1837](https://github.com/hackforla/website/pull/1837#event-5126961980) at 2021-08-08 12:24 PM PDT -wesrowe,2019-06-24T02:39:22Z,- wesrowe opened pull request: [130](https://github.com/hackforla/website/pull/130) at 2019-06-23 07:39 PM PDT -wesrowe,2019-11-23T03:44:45Z,- wesrowe assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-11-22 07:44 PM PST -wesrowe,2019-11-26T00:23:10Z,- wesrowe assigned to issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -wesrowe,2020-02-24T19:32:30Z,- wesrowe commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-590508854) at 2020-02-24 11:32 AM PST -wesrowe,2020-04-05T17:26:11Z,- wesrowe unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -wesrowe,2020-04-11T19:57:56Z,- wesrowe assigned to issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-11 12:57 PM PDT -wesrowe,2020-04-12T17:30:59Z,- wesrowe assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-12 10:30 AM PDT -wesrowe,2020-04-12T20:09:37Z,- wesrowe commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612669371) at 2020-04-12 01:09 PM PDT -wesrowe,2020-04-12T20:47:52Z,- wesrowe unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-12 01:47 PM PDT -wesrowe,2020-04-12T21:37:46Z,- wesrowe commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612679541) at 2020-04-12 02:37 PM PDT -wesrowe,2020-04-17T22:44:20Z,- wesrowe assigned to issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-612733309) at 2020-04-17 03:44 PM PDT -wesrowe,2020-04-22T00:45:56Z,- wesrowe commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-21 05:45 PM PDT -wesrowe,2020-04-25T21:58:54Z,- wesrowe commented on issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-619446280) at 2020-04-25 02:58 PM PDT -wesrowe,2020-04-25T22:43:38Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619450259) at 2020-04-25 03:43 PM PDT -wesrowe,2020-04-26T18:02:02Z,- wesrowe unassigned from issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-619446280) at 2020-04-26 11:02 AM PDT -wesrowe,2020-04-27T01:51:07Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619666015) at 2020-04-26 06:51 PM PDT -wesrowe,2020-04-27T03:19:18Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619688949) at 2020-04-26 08:19 PM PDT -wesrowe,2020-04-27T16:39:34Z,- wesrowe opened issue: [472](https://github.com/hackforla/website/issues/472) at 2020-04-27 09:39 AM PDT -wesrowe,2020-05-03T15:26:49Z,- wesrowe closed issue as completed: [416](https://github.com/hackforla/website/issues/416#event-3297529402) at 2020-05-03 08:26 AM PDT -wesrowe,2020-05-04T15:44:55Z,- wesrowe commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-623542555) at 2020-05-04 08:44 AM PDT -wesrowe,2020-05-04T15:54:28Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623548249) at 2020-05-04 08:54 AM PDT -wesrowe,2020-05-05T21:42:42Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-624322406) at 2020-05-05 02:42 PM PDT -wesrowe,2020-05-05T22:28:14Z,- wesrowe assigned to issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-05 03:28 PM PDT -wesrowe,2020-05-06T16:20:52Z,- wesrowe commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-624748066) at 2020-05-06 09:20 AM PDT -wesrowe,2020-05-11T21:19:05Z,- wesrowe commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-626970585) at 2020-05-11 02:19 PM PDT -wesrowe,2020-05-18T00:03:28Z,- wesrowe commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629882675) at 2020-05-17 05:03 PM PDT -wesrowe,2020-05-24T20:42:52Z,- wesrowe unassigned from issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633296069) at 2020-05-24 01:42 PM PDT -wesrowe,2020-06-01T02:47:30Z,- wesrowe assigned to issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2020-05-31 07:47 PM PDT -wesrowe,2020-06-01T17:23:56Z,- wesrowe commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-636999309) at 2020-06-01 10:23 AM PDT -wesrowe,2020-06-03T02:18:23Z,- wesrowe closed issue as completed: [13](https://github.com/hackforla/website/issues/13#event-3400137433) at 2020-06-02 07:18 PM PDT -wesrowe,2020-06-08T15:38:13Z,- wesrowe commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640707386) at 2020-06-08 08:38 AM PDT -wesrowe,2020-11-08T19:09:58Z,- wesrowe pull request closed w/o merging: [130](https://github.com/hackforla/website/pull/130#event-3971083797) at 2020-11-08 11:09 AM PST -wesrowe,2021-02-03T17:11:44Z,- wesrowe unassigned from issue: [192](https://github.com/hackforla/website/issues/192) at 2021-02-03 09:11 AM PST -whitneywind,4717,SKILLS ISSUE -whitneywind,2023-05-24T03:13:20Z,- whitneywind opened issue: [4717](https://github.com/hackforla/website/issues/4717) at 2023-05-23 08:13 PM PDT -whitneywind,2023-05-24T03:13:21Z,- whitneywind assigned to issue: [4717](https://github.com/hackforla/website/issues/4717) at 2023-05-23 08:13 PM PDT -whitneywind,2023-06-02T20:36:19Z,- whitneywind assigned to issue: [4416](https://github.com/hackforla/website/issues/4416) at 2023-06-02 01:36 PM PDT -whitneywind,2023-06-02T22:33:31Z,- whitneywind opened pull request: [4772](https://github.com/hackforla/website/pull/4772) at 2023-06-02 03:33 PM PDT -whitneywind,2023-06-05T19:20:44Z,- whitneywind assigned to issue: [4478](https://github.com/hackforla/website/issues/4478) at 2023-06-05 12:20 PM PDT -whitneywind,2023-06-05T19:34:05Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1577363110) at 2023-06-05 12:34 PM PDT -whitneywind,2023-06-06T01:14:26Z,- whitneywind commented on issue: [4717](https://github.com/hackforla/website/issues/4717#issuecomment-1577753006) at 2023-06-05 06:14 PM PDT -whitneywind,2023-06-06T01:42:41Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1577768381) at 2023-06-05 06:42 PM PDT -whitneywind,2023-06-09T02:06:56Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1583832397) at 2023-06-08 07:06 PM PDT -whitneywind,2023-06-11T01:49:39Z,- whitneywind pull request merged: [4772](https://github.com/hackforla/website/pull/4772#event-9492138549) at 2023-06-10 06:49 PM PDT -whitneywind,2023-06-13T17:46:46Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1589766488) at 2023-06-13 10:46 AM PDT -whitneywind,2023-06-24T04:18:56Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1605258764) at 2023-06-23 09:18 PM PDT -whitneywind,2023-06-24T05:04:34Z,- whitneywind opened pull request: [4879](https://github.com/hackforla/website/pull/4879) at 2023-06-23 10:04 PM PDT -whitneywind,2023-07-06T06:00:53Z,- whitneywind pull request merged: [4879](https://github.com/hackforla/website/pull/4879#event-9739711480) at 2023-07-05 11:00 PM PDT -whitneywind,2023-07-07T15:44:41Z,- whitneywind closed issue as completed: [4717](https://github.com/hackforla/website/issues/4717#event-9756603922) at 2023-07-07 08:44 AM PDT -whitneywind,2023-07-07T22:46:05Z,- whitneywind assigned to issue: [4870](https://github.com/hackforla/website/issues/4870) at 2023-07-07 03:46 PM PDT -whitneywind,2023-07-07T23:00:54Z,- whitneywind commented on issue: [4870](https://github.com/hackforla/website/issues/4870#issuecomment-1626345091) at 2023-07-07 04:00 PM PDT -whitneywind,2023-07-07T23:48:55Z,- whitneywind opened pull request: [4925](https://github.com/hackforla/website/pull/4925) at 2023-07-07 04:48 PM PDT -whitneywind,2023-07-17T21:44:27Z,- whitneywind pull request merged: [4925](https://github.com/hackforla/website/pull/4925#event-9843093386) at 2023-07-17 02:44 PM PDT -whitneywind,2023-07-21T19:49:46Z,- whitneywind commented on pull request: [5044](https://github.com/hackforla/website/pull/5044#issuecomment-1646170387) at 2023-07-21 12:49 PM PDT -whitneywind,2023-07-22T19:20:36Z,- whitneywind submitted pull request review: [5044](https://github.com/hackforla/website/pull/5044#pullrequestreview-1542135080) at 2023-07-22 12:20 PM PDT -whitneywind,2023-07-22T20:11:10Z,- whitneywind commented on pull request: [5049](https://github.com/hackforla/website/pull/5049#issuecomment-1646663083) at 2023-07-22 01:11 PM PDT -whitneywind,2023-07-22T20:34:21Z,- whitneywind submitted pull request review: [5049](https://github.com/hackforla/website/pull/5049#pullrequestreview-1542140691) at 2023-07-22 01:34 PM PDT -whitneywind,2023-07-25T22:52:58Z,- whitneywind assigned to issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1641415741) at 2023-07-25 03:52 PM PDT -whitneywind,2023-07-25T22:53:47Z,- whitneywind commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1650672936) at 2023-07-25 03:53 PM PDT -whitneywind,2023-07-26T19:11:17Z,- whitneywind commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1652348511) at 2023-07-26 12:11 PM PDT -whitneywind,2023-07-26T19:25:25Z,- whitneywind submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1548446343) at 2023-07-26 12:25 PM PDT -whitneywind,2023-07-28T16:23:53Z,- whitneywind commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1655964712) at 2023-07-28 09:23 AM PDT -WilliamMFerguson,2020-03-02T19:10:37Z,- WilliamMFerguson commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593567144) at 2020-03-02 11:10 AM PST -WilliamMFerguson,2020-03-03T14:26:12Z,- WilliamMFerguson commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593977556) at 2020-03-03 06:26 AM PST -williamzhang73,6955,SKILLS ISSUE -williamzhang73,6957,SKILLS ISSUE -williamzhang73,2024-06-04T03:23:21Z,- williamzhang73 opened issue: [6955](https://github.com/hackforla/website/issues/6955) at 2024-06-03 08:23 PM PDT -williamzhang73,2024-06-04T03:27:34Z,- williamzhang73 assigned to issue: [6955](https://github.com/hackforla/website/issues/6955#issuecomment-2146499459) at 2024-06-03 08:27 PM PDT -williamzhang73,2024-06-04T03:32:42Z,- williamzhang73 opened issue: [6957](https://github.com/hackforla/website/issues/6957) at 2024-06-03 08:32 PM PDT -williamzhang73,2024-06-04T03:32:46Z,- williamzhang73 assigned to issue: [6957](https://github.com/hackforla/website/issues/6957) at 2024-06-03 08:32 PM PDT -williamzhang73,2024-06-09T19:24:26Z,- williamzhang73 commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2156749177) at 2024-06-09 12:24 PM PDT -williamzhang73,2024-06-09T23:41:56Z,- williamzhang73 assigned to issue: [6937](https://github.com/hackforla/website/issues/6937) at 2024-06-09 04:41 PM PDT -williamzhang73,2024-06-10T00:06:20Z,- williamzhang73 commented on issue: [6937](https://github.com/hackforla/website/issues/6937#issuecomment-2156912630) at 2024-06-09 05:06 PM PDT -williamzhang73,2024-06-10T22:12:41Z,- williamzhang73 opened pull request: [6984](https://github.com/hackforla/website/pull/6984) at 2024-06-10 03:12 PM PDT -williamzhang73,2024-06-11T16:00:18Z,- williamzhang73 commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2161117305) at 2024-06-11 09:00 AM PDT -williamzhang73,2024-06-11T16:55:30Z,- williamzhang73 commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2161218247) at 2024-06-11 09:55 AM PDT -williamzhang73,2024-06-11T17:00:29Z,- williamzhang73 commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2161228366) at 2024-06-11 10:00 AM PDT -williamzhang73,2024-06-23T20:39:18Z,- williamzhang73 pull request merged: [6984](https://github.com/hackforla/website/pull/6984#event-13258170929) at 2024-06-23 01:39 PM PDT -wiltsai,2637,SKILLS ISSUE -wiltsai,2021-12-28T03:38:16Z,- wiltsai opened issue: [2637](https://github.com/hackforla/website/issues/2637) at 2021-12-27 07:38 PM PST -wiltsai,2021-12-28T03:42:59Z,- wiltsai assigned to issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1001851907) at 2021-12-27 07:42 PM PST -wKategianes,4330,SKILLS ISSUE -wKategianes,2023-03-29T03:57:58Z,- wKategianes opened issue: [4330](https://github.com/hackforla/website/issues/4330) at 2023-03-28 08:57 PM PDT -wKategianes,2023-03-29T03:57:59Z,- wKategianes assigned to issue: [4330](https://github.com/hackforla/website/issues/4330) at 2023-03-28 08:57 PM PDT -wKategianes,2023-04-13T05:41:16Z,- wKategianes assigned to issue: [4445](https://github.com/hackforla/website/issues/4445) at 2023-04-12 10:41 PM PDT -wKategianes,2023-04-13T05:43:09Z,- wKategianes commented on issue: [4445](https://github.com/hackforla/website/issues/4445#issuecomment-1506377636) at 2023-04-12 10:43 PM PDT -wKategianes,2023-04-13T06:11:04Z,- wKategianes commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1506402956) at 2023-04-12 11:11 PM PDT -wKategianes,2023-04-13T06:25:22Z,- wKategianes opened pull request: [4497](https://github.com/hackforla/website/pull/4497) at 2023-04-12 11:25 PM PDT -wKategianes,2023-04-13T06:29:10Z,- wKategianes commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1506419161) at 2023-04-12 11:29 PM PDT -wKategianes,2023-04-17T04:16:22Z,- wKategianes assigned to issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1509468696) at 2023-04-16 09:16 PM PDT -wKategianes,2023-04-17T04:16:38Z,- wKategianes commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1510673405) at 2023-04-16 09:16 PM PDT -wKategianes,2023-04-19T16:47:39Z,- wKategianes pull request merged: [4497](https://github.com/hackforla/website/pull/4497#event-9048828183) at 2023-04-19 09:47 AM PDT -wKategianes,2023-04-27T21:24:09Z,- wKategianes opened pull request: [4575](https://github.com/hackforla/website/pull/4575) at 2023-04-27 02:24 PM PDT -wKategianes,2023-05-04T04:43:16Z,- wKategianes commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1534087973) at 2023-05-03 09:43 PM PDT -wKategianes,2023-05-15T00:33:20Z,- wKategianes unassigned from issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1547047689) at 2023-05-14 05:33 PM PDT -wKategianes,2023-05-21T15:57:11Z,- wKategianes pull request closed w/o merging: [4575](https://github.com/hackforla/website/pull/4575#event-9296209472) at 2023-05-21 08:57 AM PDT -Wny-Duong,3053,SKILLS ISSUE -Wny-Duong,3364,SKILLS ISSUE -Wny-Duong,2022-04-15T02:28:44Z,- Wny-Duong opened issue: [3053](https://github.com/hackforla/website/issues/3053) at 2022-04-14 07:28 PM PDT -Wny-Duong,2022-04-15T02:34:33Z,- Wny-Duong assigned to issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1099793707) at 2022-04-14 07:34 PM PDT -Wny-Duong,2022-04-18T01:54:20Z,- Wny-Duong assigned to issue: [2912](https://github.com/hackforla/website/issues/2912#issuecomment-1055993965) at 2022-04-17 06:54 PM PDT -Wny-Duong,2022-04-18T01:57:02Z,- Wny-Duong commented on issue: [2912](https://github.com/hackforla/website/issues/2912#issuecomment-1101020334) at 2022-04-17 06:57 PM PDT -Wny-Duong,2022-04-18T03:42:39Z,- Wny-Duong opened pull request: [3062](https://github.com/hackforla/website/pull/3062) at 2022-04-17 08:42 PM PDT -Wny-Duong,2022-04-18T03:47:54Z,- Wny-Duong commented on issue: [2912](https://github.com/hackforla/website/issues/2912#issuecomment-1101063857) at 2022-04-17 08:47 PM PDT -Wny-Duong,2022-04-19T04:48:47Z,- Wny-Duong pull request merged: [3062](https://github.com/hackforla/website/pull/3062#event-6451889122) at 2022-04-18 09:48 PM PDT -Wny-Duong,2022-04-19T22:09:37Z,- Wny-Duong commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1103217356) at 2022-04-19 03:09 PM PDT -Wny-Duong,2022-04-23T21:59:30Z,- Wny-Duong assigned to issue: [2183](https://github.com/hackforla/website/issues/2183) at 2022-04-23 02:59 PM PDT -Wny-Duong,2022-04-24T16:16:58Z,- Wny-Duong commented on issue: [2183](https://github.com/hackforla/website/issues/2183#issuecomment-1107872204) at 2022-04-24 09:16 AM PDT -Wny-Duong,2022-04-25T02:59:41Z,- Wny-Duong opened pull request: [3081](https://github.com/hackforla/website/pull/3081) at 2022-04-24 07:59 PM PDT -Wny-Duong,2022-04-25T18:47:26Z,- Wny-Duong commented on pull request: [3081](https://github.com/hackforla/website/pull/3081#issuecomment-1108917951) at 2022-04-25 11:47 AM PDT -Wny-Duong,2022-04-26T14:25:11Z,- Wny-Duong pull request merged: [3081](https://github.com/hackforla/website/pull/3081#event-6499342389) at 2022-04-26 07:25 AM PDT -Wny-Duong,2022-04-29T02:41:40Z,- Wny-Duong commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1112826862) at 2022-04-28 07:41 PM PDT -Wny-Duong,2022-04-29T21:18:57Z,- Wny-Duong commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1113742742) at 2022-04-29 02:18 PM PDT -Wny-Duong,2022-04-29T21:20:11Z,- Wny-Duong submitted pull request review: [3083](https://github.com/hackforla/website/pull/3083#pullrequestreview-958265655) at 2022-04-29 02:20 PM PDT -Wny-Duong,2022-05-06T07:34:43Z,- Wny-Duong commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1119339145) at 2022-05-06 12:34 AM PDT -Wny-Duong,2022-05-07T22:54:15Z,- Wny-Duong commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1120312517) at 2022-05-07 03:54 PM PDT -Wny-Duong,2022-05-07T23:10:34Z,- Wny-Duong assigned to issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104513498) at 2022-05-07 04:10 PM PDT -Wny-Duong,2022-05-07T23:12:26Z,- Wny-Duong commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1120314246) at 2022-05-07 04:12 PM PDT -Wny-Duong,2022-05-09T01:51:24Z,- Wny-Duong opened pull request: [3114](https://github.com/hackforla/website/pull/3114) at 2022-05-08 06:51 PM PDT -Wny-Duong,2022-05-10T16:39:40Z,- Wny-Duong pull request merged: [3114](https://github.com/hackforla/website/pull/3114#event-6583589922) at 2022-05-10 09:39 AM PDT -Wny-Duong,2022-05-20T13:51:39Z,- Wny-Duong assigned to issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1013943263) at 2022-05-20 06:51 AM PDT -Wny-Duong,2022-05-20T13:55:27Z,- Wny-Duong commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1132929691) at 2022-05-20 06:55 AM PDT -Wny-Duong,2022-05-28T06:38:17Z,- Wny-Duong commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1140187388) at 2022-05-27 11:38 PM PDT -Wny-Duong,2022-05-30T13:37:38Z,- Wny-Duong opened pull request: [3183](https://github.com/hackforla/website/pull/3183) at 2022-05-30 06:37 AM PDT -Wny-Duong,2022-06-01T01:54:08Z,- Wny-Duong commented on pull request: [3185](https://github.com/hackforla/website/pull/3185#issuecomment-1143030922) at 2022-05-31 06:54 PM PDT -Wny-Duong,2022-06-01T03:00:38Z,- Wny-Duong submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-991343330) at 2022-05-31 08:00 PM PDT -Wny-Duong,2022-06-03T07:22:23Z,- Wny-Duong closed issue as completed: [3053](https://github.com/hackforla/website/issues/3053#event-6734219425) at 2022-06-03 12:22 AM PDT -Wny-Duong,2022-06-04T17:15:00Z,- Wny-Duong submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-995941128) at 2022-06-04 10:15 AM PDT -Wny-Duong,2022-06-06T13:40:08Z,- Wny-Duong commented on pull request: [3221](https://github.com/hackforla/website/pull/3221#issuecomment-1147459687) at 2022-06-06 06:40 AM PDT -Wny-Duong,2022-06-06T13:40:40Z,- Wny-Duong commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1147460257) at 2022-06-06 06:40 AM PDT -Wny-Duong,2022-06-06T17:47:58Z,- Wny-Duong submitted pull request review: [3221](https://github.com/hackforla/website/pull/3221#pullrequestreview-996960131) at 2022-06-06 10:47 AM PDT -Wny-Duong,2022-06-06T18:03:24Z,- Wny-Duong submitted pull request review: [3224](https://github.com/hackforla/website/pull/3224#pullrequestreview-996981297) at 2022-06-06 11:03 AM PDT -Wny-Duong,2022-06-07T06:05:05Z,- Wny-Duong submitted pull request review: [3224](https://github.com/hackforla/website/pull/3224#pullrequestreview-997545155) at 2022-06-06 11:05 PM PDT -Wny-Duong,2022-06-07T06:07:46Z,- Wny-Duong commented on pull request: [3226](https://github.com/hackforla/website/pull/3226#issuecomment-1148234279) at 2022-06-06 11:07 PM PDT -Wny-Duong,2022-06-07T06:10:11Z,- Wny-Duong submitted pull request review: [3226](https://github.com/hackforla/website/pull/3226#pullrequestreview-997549100) at 2022-06-06 11:10 PM PDT -Wny-Duong,2022-06-07T17:18:10Z,- Wny-Duong commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1148953055) at 2022-06-07 10:18 AM PDT -Wny-Duong,2022-06-07T18:10:20Z,- Wny-Duong submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-998636523) at 2022-06-07 11:10 AM PDT -Wny-Duong,2022-06-08T19:02:01Z,- Wny-Duong commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1150286397) at 2022-06-08 12:02 PM PDT -Wny-Duong,2022-06-08T19:06:46Z,- Wny-Duong submitted pull request review: [3231](https://github.com/hackforla/website/pull/3231#pullrequestreview-1000295598) at 2022-06-08 12:06 PM PDT -Wny-Duong,2022-06-09T22:10:51Z,- Wny-Duong commented on pull request: [3235](https://github.com/hackforla/website/pull/3235#issuecomment-1151670801) at 2022-06-09 03:10 PM PDT -Wny-Duong,2022-06-09T22:21:14Z,- Wny-Duong submitted pull request review: [3235](https://github.com/hackforla/website/pull/3235#pullrequestreview-1002066063) at 2022-06-09 03:21 PM PDT -Wny-Duong,2022-06-22T02:44:15Z,- Wny-Duong assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-21 07:44 PM PDT -Wny-Duong,2022-06-22T02:45:02Z,- Wny-Duong unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-21 07:45 PM PDT -Wny-Duong,2022-06-26T16:48:40Z,- Wny-Duong commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1166585216) at 2022-06-26 09:48 AM PDT -Wny-Duong,2022-06-27T23:17:18Z,- Wny-Duong submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1020890715) at 2022-06-27 04:17 PM PDT -Wny-Duong,2022-06-29T02:38:04Z,- Wny-Duong assigned to issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1166741594) at 2022-06-28 07:38 PM PDT -Wny-Duong,2022-06-29T02:38:37Z,- Wny-Duong unassigned from issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1166741594) at 2022-06-28 07:38 PM PDT -Wny-Duong,2022-06-29T18:04:02Z,- Wny-Duong commented on pull request: [3324](https://github.com/hackforla/website/pull/3324#issuecomment-1170318260) at 2022-06-29 11:04 AM PDT -Wny-Duong,2022-06-29T18:38:21Z,- Wny-Duong closed issue by PR 3322: [3236](https://github.com/hackforla/website/issues/3236#event-6904923134) at 2022-06-29 11:38 AM PDT -Wny-Duong,2022-06-29T19:06:22Z,- Wny-Duong submitted pull request review: [3324](https://github.com/hackforla/website/pull/3324#pullrequestreview-1023861267) at 2022-06-29 12:06 PM PDT -Wny-Duong,2022-06-29T19:08:49Z,- Wny-Duong closed issue by PR 3324: [3135](https://github.com/hackforla/website/issues/3135#event-6905118610) at 2022-06-29 12:08 PM PDT -Wny-Duong,2022-06-30T00:54:18Z,- Wny-Duong submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1024147538) at 2022-06-29 05:54 PM PDT -Wny-Duong,2022-06-30T04:27:49Z,- Wny-Duong commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170744038) at 2022-06-29 09:27 PM PDT -Wny-Duong,2022-06-30T20:43:02Z,- Wny-Duong submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1025470666) at 2022-06-30 01:43 PM PDT -Wny-Duong,2022-06-30T20:44:09Z,- Wny-Duong commented on pull request: [3326](https://github.com/hackforla/website/pull/3326#issuecomment-1171658619) at 2022-06-30 01:44 PM PDT -Wny-Duong,2022-06-30T21:03:26Z,- Wny-Duong submitted pull request review: [3326](https://github.com/hackforla/website/pull/3326#pullrequestreview-1025490264) at 2022-06-30 02:03 PM PDT -Wny-Duong,2022-07-01T14:08:28Z,- Wny-Duong commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172389267) at 2022-07-01 07:08 AM PDT -Wny-Duong,2022-07-01T14:45:18Z,- Wny-Duong commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172424091) at 2022-07-01 07:45 AM PDT -Wny-Duong,2022-07-02T00:22:47Z,- Wny-Duong closed issue by PR 3225: [2097](https://github.com/hackforla/website/issues/2097#event-6921512921) at 2022-07-01 05:22 PM PDT -Wny-Duong,2022-07-02T00:54:11Z,- Wny-Duong closed issue by PR 3321: [3257](https://github.com/hackforla/website/issues/3257#event-6921545448) at 2022-07-01 05:54 PM PDT -Wny-Duong,2022-07-02T18:44:45Z,- Wny-Duong submitted pull request review: [3327](https://github.com/hackforla/website/pull/3327#pullrequestreview-1026780365) at 2022-07-02 11:44 AM PDT -Wny-Duong,2022-07-03T06:43:02Z,- Wny-Duong submitted pull request review: [3327](https://github.com/hackforla/website/pull/3327#pullrequestreview-1026813474) at 2022-07-02 11:43 PM PDT -Wny-Duong,2022-07-06T02:26:52Z,- Wny-Duong opened pull request: [3332](https://github.com/hackforla/website/pull/3332) at 2022-07-05 07:26 PM PDT -Wny-Duong,2022-07-06T02:36:10Z,- Wny-Duong closed issue by PR 3321: [3257](https://github.com/hackforla/website/issues/3257#event-6938828809) at 2022-07-05 07:36 PM PDT -Wny-Duong,2022-07-06T02:36:10Z,- Wny-Duong pull request merged: [3332](https://github.com/hackforla/website/pull/3332#event-6938828825) at 2022-07-05 07:36 PM PDT -Wny-Duong,2022-07-07T05:18:07Z,- Wny-Duong commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1177084001) at 2022-07-06 10:18 PM PDT -Wny-Duong,2022-07-07T18:23:47Z,- Wny-Duong submitted pull request review: [3329](https://github.com/hackforla/website/pull/3329#pullrequestreview-1031994669) at 2022-07-07 11:23 AM PDT -Wny-Duong,2022-07-07T18:34:36Z,- Wny-Duong commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1178051558) at 2022-07-07 11:34 AM PDT -Wny-Duong,2022-07-09T00:51:20Z,- Wny-Duong commented on pull request: [3330](https://github.com/hackforla/website/pull/3330#issuecomment-1179447162) at 2022-07-08 05:51 PM PDT -Wny-Duong,2022-07-09T00:51:43Z,- Wny-Duong commented on pull request: [3338](https://github.com/hackforla/website/pull/3338#issuecomment-1179447237) at 2022-07-08 05:51 PM PDT -Wny-Duong,2022-07-09T01:05:49Z,- Wny-Duong submitted pull request review: [3330](https://github.com/hackforla/website/pull/3330#pullrequestreview-1033462750) at 2022-07-08 06:05 PM PDT -Wny-Duong,2022-07-09T01:09:02Z,- Wny-Duong closed issue by PR 3330: [3217](https://github.com/hackforla/website/issues/3217#event-6963248408) at 2022-07-08 06:09 PM PDT -Wny-Duong,2022-07-09T23:25:02Z,- Wny-Duong submitted pull request review: [3338](https://github.com/hackforla/website/pull/3338#pullrequestreview-1033576263) at 2022-07-09 04:25 PM PDT -Wny-Duong,2022-07-10T00:05:32Z,- Wny-Duong closed issue by PR 3329: [2112](https://github.com/hackforla/website/issues/2112#event-6964460687) at 2022-07-09 05:05 PM PDT -Wny-Duong,2022-07-13T01:14:04Z,- Wny-Duong pull request merged: [3183](https://github.com/hackforla/website/pull/3183#event-6982036591) at 2022-07-12 06:14 PM PDT -Wny-Duong,2022-07-13T03:12:04Z,- Wny-Duong opened issue: [3364](https://github.com/hackforla/website/issues/3364) at 2022-07-12 08:12 PM PDT -Wny-Duong,2022-07-13T03:13:04Z,- Wny-Duong assigned to issue: [3364](https://github.com/hackforla/website/issues/3364#issuecomment-1182715265) at 2022-07-12 08:13 PM PDT -Wny-Duong,2022-07-13T14:45:46Z,- Wny-Duong closed issue by PR 3363: [2817](https://github.com/hackforla/website/issues/2817#event-6986692300) at 2022-07-13 07:45 AM PDT -Wny-Duong,2022-07-14T05:05:36Z,- Wny-Duong commented on pull request: [3369](https://github.com/hackforla/website/pull/3369#issuecomment-1183992392) at 2022-07-13 10:05 PM PDT -Wny-Duong,2022-07-14T05:43:04Z,- Wny-Duong submitted pull request review: [3369](https://github.com/hackforla/website/pull/3369#pullrequestreview-1038319649) at 2022-07-13 10:43 PM PDT -Wny-Duong,2022-07-14T18:37:54Z,- Wny-Duong submitted pull request review: [3369](https://github.com/hackforla/website/pull/3369#pullrequestreview-1039324373) at 2022-07-14 11:37 AM PDT -Wny-Duong,2022-07-14T20:23:42Z,- Wny-Duong closed issue by PR 3369: [2875](https://github.com/hackforla/website/issues/2875#event-6997164875) at 2022-07-14 01:23 PM PDT -Wny-Duong,2022-07-15T02:07:58Z,- Wny-Duong assigned to issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1173148805) at 2022-07-14 07:07 PM PDT -Wny-Duong,2022-07-15T02:12:18Z,- Wny-Duong commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1185096329) at 2022-07-14 07:12 PM PDT -Wny-Duong,2022-07-15T23:36:23Z,- Wny-Duong closed issue by PR 3372: [2812](https://github.com/hackforla/website/issues/2812#event-7005276916) at 2022-07-15 04:36 PM PDT -Wny-Duong,2022-07-15T23:40:14Z,- Wny-Duong commented on pull request: [3371](https://github.com/hackforla/website/pull/3371#issuecomment-1186024916) at 2022-07-15 04:40 PM PDT -Wny-Duong,2022-07-15T23:56:45Z,- Wny-Duong submitted pull request review: [3371](https://github.com/hackforla/website/pull/3371#pullrequestreview-1040896200) at 2022-07-15 04:56 PM PDT -Wny-Duong,2022-07-15T23:59:38Z,- Wny-Duong closed issue by PR 3371: [3306](https://github.com/hackforla/website/issues/3306#event-7005324394) at 2022-07-15 04:59 PM PDT -Wny-Duong,2022-07-20T03:14:02Z,- Wny-Duong opened issue: [3400](https://github.com/hackforla/website/issues/3400) at 2022-07-19 08:14 PM PDT -Wny-Duong,2022-07-20T16:44:10Z,- Wny-Duong closed issue by PR 3390: [3094](https://github.com/hackforla/website/issues/3094#event-7031138790) at 2022-07-20 09:44 AM PDT -Wny-Duong,2022-07-20T16:45:37Z,- Wny-Duong commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1190514167) at 2022-07-20 09:45 AM PDT -Wny-Duong,2022-07-20T17:25:43Z,- Wny-Duong submitted pull request review: [3395](https://github.com/hackforla/website/pull/3395#pullrequestreview-1045417608) at 2022-07-20 10:25 AM PDT -Wny-Duong,2022-07-20T22:14:26Z,- Wny-Duong commented on pull request: [3407](https://github.com/hackforla/website/pull/3407#issuecomment-1190814564) at 2022-07-20 03:14 PM PDT -Wny-Duong,2022-07-20T22:21:59Z,- Wny-Duong submitted pull request review: [3407](https://github.com/hackforla/website/pull/3407#pullrequestreview-1045737138) at 2022-07-20 03:21 PM PDT -Wny-Duong,2022-07-20T22:22:14Z,- Wny-Duong closed issue by PR 3407: [3026](https://github.com/hackforla/website/issues/3026#event-7033303509) at 2022-07-20 03:22 PM PDT -Wny-Duong,2022-07-23T01:13:31Z,- Wny-Duong commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1193029515) at 2022-07-22 06:13 PM PDT -Wny-Duong,2022-07-24T13:49:39Z,- Wny-Duong closed issue by PR 3421: [2813](https://github.com/hackforla/website/issues/2813#event-7051448332) at 2022-07-24 06:49 AM PDT -Wny-Duong,2022-07-26T23:46:24Z,- Wny-Duong closed issue by PR 3427: [2815](https://github.com/hackforla/website/issues/2815#event-7068760589) at 2022-07-26 04:46 PM PDT -Wny-Duong,2022-07-27T17:03:35Z,- Wny-Duong commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197050720) at 2022-07-27 10:03 AM PDT -Wny-Duong,2022-07-27T20:09:59Z,- Wny-Duong commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197314268) at 2022-07-27 01:09 PM PDT -Wny-Duong,2022-07-28T23:36:36Z,- Wny-Duong commented on pull request: [3435](https://github.com/hackforla/website/pull/3435#issuecomment-1198726154) at 2022-07-28 04:36 PM PDT -Wny-Duong,2022-07-28T23:40:47Z,- Wny-Duong commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198728153) at 2022-07-28 04:40 PM PDT -Wny-Duong,2022-07-29T01:01:49Z,- Wny-Duong submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1054905683) at 2022-07-28 06:01 PM PDT -Wny-Duong,2022-07-29T01:17:37Z,- Wny-Duong submitted pull request review: [3435](https://github.com/hackforla/website/pull/3435#pullrequestreview-1054912602) at 2022-07-28 06:17 PM PDT -Wny-Duong,2022-07-29T01:18:18Z,- Wny-Duong closed issue by PR 3435: [3107](https://github.com/hackforla/website/issues/3107#event-7085944962) at 2022-07-28 06:18 PM PDT -Wny-Duong,2022-07-29T01:19:49Z,- Wny-Duong commented on pull request: [3439](https://github.com/hackforla/website/pull/3439#issuecomment-1198786996) at 2022-07-28 06:19 PM PDT -Wny-Duong,2022-07-29T01:35:37Z,- Wny-Duong submitted pull request review: [3439](https://github.com/hackforla/website/pull/3439#pullrequestreview-1054920582) at 2022-07-28 06:35 PM PDT -Wny-Duong,2022-07-29T01:35:45Z,- Wny-Duong closed issue by PR 3439: [2816](https://github.com/hackforla/website/issues/2816#event-7085994994) at 2022-07-28 06:35 PM PDT -Wny-Duong,2022-07-29T02:48:50Z,- Wny-Duong submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1054953613) at 2022-07-28 07:48 PM PDT -Wny-Duong,2022-07-29T02:55:04Z,- Wny-Duong submitted pull request review: [3443](https://github.com/hackforla/website/pull/3443#pullrequestreview-1054956445) at 2022-07-28 07:55 PM PDT -Wny-Duong,2022-07-29T02:57:30Z,- Wny-Duong commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1198829010) at 2022-07-28 07:57 PM PDT -Wny-Duong,2022-07-29T03:01:31Z,- Wny-Duong submitted pull request review: [3442](https://github.com/hackforla/website/pull/3442#pullrequestreview-1054959519) at 2022-07-28 08:01 PM PDT -Wny-Duong,2022-07-29T14:40:29Z,- Wny-Duong closed issue by PR 3442: [3400](https://github.com/hackforla/website/issues/3400#event-7089999767) at 2022-07-29 07:40 AM PDT -Wny-Duong,2022-07-29T16:51:45Z,- Wny-Duong closed issue by PR 3443: [3166](https://github.com/hackforla/website/issues/3166#event-7090876707) at 2022-07-29 09:51 AM PDT -Wny-Duong,2022-08-05T23:23:29Z,- Wny-Duong commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1207085201) at 2022-08-05 04:23 PM PDT -Wny-Duong,2022-08-07T18:41:30Z,- Wny-Duong opened pull request: [3452](https://github.com/hackforla/website/pull/3452) at 2022-08-07 11:41 AM PDT -Wny-Duong,2022-08-11T03:57:06Z,- Wny-Duong closed issue by PR 3454: [3339](https://github.com/hackforla/website/issues/3339#event-7168558083) at 2022-08-10 08:57 PM PDT -Wny-Duong,2022-08-11T06:33:04Z,- Wny-Duong submitted pull request review: [3161](https://github.com/hackforla/website/pull/3161#pullrequestreview-1069231945) at 2022-08-10 11:33 PM PDT -Wny-Duong,2022-08-11T06:36:20Z,- Wny-Duong commented on pull request: [3456](https://github.com/hackforla/website/pull/3456#issuecomment-1211602319) at 2022-08-10 11:36 PM PDT -Wny-Duong,2022-08-11T20:30:09Z,- Wny-Duong commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1212463647) at 2022-08-11 01:30 PM PDT -Wny-Duong,2022-08-11T21:33:49Z,- Wny-Duong submitted pull request review: [3462](https://github.com/hackforla/website/pull/3462#pullrequestreview-1070391299) at 2022-08-11 02:33 PM PDT -Wny-Duong,2022-08-11T21:49:47Z,- Wny-Duong submitted pull request review: [3456](https://github.com/hackforla/website/pull/3456#pullrequestreview-1070405128) at 2022-08-11 02:49 PM PDT -Wny-Duong,2022-08-12T19:34:59Z,- Wny-Duong commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1213451277) at 2022-08-12 12:34 PM PDT -Wny-Duong,2022-08-12T23:42:14Z,- Wny-Duong closed issue as completed: [3331](https://github.com/hackforla/website/issues/3331#event-7182381572) at 2022-08-12 04:42 PM PDT -Wny-Duong,2022-08-12T23:49:33Z,- Wny-Duong submitted pull request review: [3466](https://github.com/hackforla/website/pull/3466#pullrequestreview-1071846315) at 2022-08-12 04:49 PM PDT -Wny-Duong,2022-08-16T17:31:01Z,- Wny-Duong commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1216941390) at 2022-08-16 10:31 AM PDT -Wny-Duong,2022-08-17T17:30:22Z,- Wny-Duong commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1218305413) at 2022-08-17 10:30 AM PDT -Wny-Duong,2022-08-19T02:20:14Z,- Wny-Duong commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1220167017) at 2022-08-18 07:20 PM PDT -Wny-Duong,2022-08-21T23:32:56Z,- Wny-Duong submitted pull request review: [3476](https://github.com/hackforla/website/pull/3476#pullrequestreview-1079732538) at 2022-08-21 04:32 PM PDT -Wny-Duong,2022-08-26T00:59:26Z,- Wny-Duong pull request merged: [3452](https://github.com/hackforla/website/pull/3452#event-7263692114) at 2022-08-25 05:59 PM PDT -wongstephen,5085,SKILLS ISSUE -wongstephen,2023-07-26T03:13:16Z,- wongstephen opened issue: [5085](https://github.com/hackforla/website/issues/5085) at 2023-07-25 08:13 PM PDT -wongstephen,2023-07-26T03:13:16Z,- wongstephen assigned to issue: [5085](https://github.com/hackforla/website/issues/5085) at 2023-07-25 08:13 PM PDT -wongstephen,2023-07-27T23:04:28Z,- wongstephen commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1654700655) at 2023-07-27 04:04 PM PDT -wongstephen,2023-07-27T23:05:17Z,- wongstephen closed issue by PR 5135: [5028](https://github.com/hackforla/website/issues/5028#event-9941440832) at 2023-07-27 04:05 PM PDT -wongstephen,2023-07-27T23:08:34Z,- wongstephen reopened issue: [5028](https://github.com/hackforla/website/issues/5028#event-9941440832) at 2023-07-27 04:08 PM PDT -wongstephen,2023-07-27T23:10:20Z,- wongstephen commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1654718912) at 2023-07-27 04:10 PM PDT -wongstephen,2023-07-27T23:14:08Z,- wongstephen assigned to issue: [5032](https://github.com/hackforla/website/issues/5032) at 2023-07-27 04:14 PM PDT -wongstephen,2023-07-27T23:20:17Z,- wongstephen commented on issue: [5032](https://github.com/hackforla/website/issues/5032#issuecomment-1654744131) at 2023-07-27 04:20 PM PDT -wongstephen,2023-07-27T23:54:05Z,- wongstephen opened pull request: [5105](https://github.com/hackforla/website/pull/5105) at 2023-07-27 04:54 PM PDT -wongstephen,2023-07-30T04:18:51Z,- wongstephen pull request merged: [5105](https://github.com/hackforla/website/pull/5105#event-9956076006) at 2023-07-29 09:18 PM PDT -wongstephen,2023-08-02T17:02:04Z,- wongstephen assigned to issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1486445205) at 2023-08-02 10:02 AM PDT -wongstephen,2023-08-02T17:03:04Z,- wongstephen commented on issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1662607294) at 2023-08-02 10:03 AM PDT -wongstephen,2023-08-02T18:04:56Z,- wongstephen opened pull request: [5130](https://github.com/hackforla/website/pull/5130) at 2023-08-02 11:04 AM PDT -wongstephen,2023-08-02T18:34:27Z,- wongstephen commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1662747361) at 2023-08-02 11:34 AM PDT -wongstephen,2023-08-02T18:47:40Z,- wongstephen commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1662776252) at 2023-08-02 11:47 AM PDT -wongstephen,2023-08-02T18:48:58Z,- wongstephen submitted pull request review: [5128](https://github.com/hackforla/website/pull/5128#pullrequestreview-1559640068) at 2023-08-02 11:48 AM PDT -wongstephen,2023-08-02T19:04:36Z,- wongstephen commented on pull request: [5123](https://github.com/hackforla/website/pull/5123#issuecomment-1662813151) at 2023-08-02 12:04 PM PDT -wongstephen,2023-08-02T22:56:27Z,- wongstephen submitted pull request review: [5123](https://github.com/hackforla/website/pull/5123#pullrequestreview-1559945740) at 2023-08-02 03:56 PM PDT -wongstephen,2023-08-06T01:21:36Z,- wongstephen pull request merged: [5130](https://github.com/hackforla/website/pull/5130#event-10016360909) at 2023-08-05 06:21 PM PDT -wongstephen,2023-08-12T01:45:38Z,- wongstephen assigned to issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1641384961) at 2023-08-11 06:45 PM PDT -wongstephen,2023-08-12T01:46:25Z,- wongstephen commented on issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1675607285) at 2023-08-11 06:46 PM PDT -wongstephen,2023-08-12T20:21:18Z,- wongstephen commented on issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1676086009) at 2023-08-12 01:21 PM PDT -wongstephen,2023-08-13T07:35:58Z,- wongstephen submitted pull request review: [5190](https://github.com/hackforla/website/pull/5190#pullrequestreview-1575712848) at 2023-08-13 12:35 AM PDT -wongstephen,2023-08-29T22:10:31Z,- wongstephen commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698212407) at 2023-08-29 03:10 PM PDT -wongstephen,2023-08-30T02:31:15Z,- wongstephen submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1601768053) at 2023-08-29 07:31 PM PDT -writeforall,2020-04-24T18:55:38Z,- writeforall opened pull request: [464](https://github.com/hackforla/website/pull/464) at 2020-04-24 11:55 AM PDT -writeforall,2020-04-24T21:52:26Z,- writeforall pull request merged: [464](https://github.com/hackforla/website/pull/464#event-3271149192) at 2020-04-24 02:52 PM PDT -xewar,4311,SKILLS ISSUE -xewar,2023-03-29T03:15:58Z,- xewar opened issue: [4311](https://github.com/hackforla/website/issues/4311) at 2023-03-28 08:15 PM PDT -xewar,2023-03-29T03:45:37Z,- xewar assigned to issue: [4311](https://github.com/hackforla/website/issues/4311) at 2023-03-28 08:45 PM PDT -xewar,2023-04-27T22:32:11Z,- xewar assigned to issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1498395289) at 2023-04-27 03:32 PM PDT -xewar,2023-04-27T22:33:07Z,- xewar unassigned from issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1526642953) at 2023-04-27 03:33 PM PDT -xiosantaella,2020-05-10T18:42:21Z,- xiosantaella assigned to issue: [488](https://github.com/hackforla/website/issues/488) at 2020-05-10 11:42 AM PDT -xiosantaella,2020-05-17T16:56:17Z,- xiosantaella commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-629828217) at 2020-05-17 09:56 AM PDT -xiosantaella,2020-05-17T18:14:54Z,- xiosantaella commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-629838684) at 2020-05-17 11:14 AM PDT -xiosantaella,2020-05-31T17:10:57Z,- xiosantaella unassigned from issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-633268554) at 2020-05-31 10:10 AM PDT -xiosantaella,2020-06-21T00:56:36Z,- xiosantaella closed issue as completed: [488](https://github.com/hackforla/website/issues/488#event-3465114016) at 2020-06-20 05:56 PM PDT -xiosantaella,2020-08-12T21:48:06Z,- xiosantaella closed issue as completed: [488](https://github.com/hackforla/website/issues/488#event-3649574564) at 2020-08-12 02:48 PM PDT -xleung26,2019-05-29T03:26:40Z,- xleung26 opened pull request: [124](https://github.com/hackforla/website/pull/124) at 2019-05-28 08:26 PM PDT -xleung26,2019-06-05T02:42:42Z,- xleung26 pull request merged: [124](https://github.com/hackforla/website/pull/124#event-2389963537) at 2019-06-04 07:42 PM PDT -xnealcarson,7972,SKILLS ISSUE -xnealcarson,2025-03-04T04:18:21Z,- xnealcarson opened issue: [7972](https://github.com/hackforla/website/issues/7972) at 2025-03-03 08:18 PM PST -xnealcarson,2025-03-04T04:19:13Z,- xnealcarson assigned to issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2696150102) at 2025-03-03 08:19 PM PST -xnealcarson,2025-03-07T02:32:15Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2705379365) at 2025-03-06 06:32 PM PST -xnealcarson,2025-03-14T23:40:48Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2726011502) at 2025-03-14 04:40 PM PDT -xnealcarson,2025-03-24T20:46:56Z,- xnealcarson submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2711643131) at 2025-03-24 01:46 PM PDT -xnealcarson,2025-03-26T21:57:49Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2755834496) at 2025-03-26 02:57 PM PDT -xnealcarson,2025-03-26T21:59:13Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2755836535) at 2025-03-26 02:59 PM PDT -xnealcarson,2025-03-26T22:11:56Z,- xnealcarson assigned to issue: [7469](https://github.com/hackforla/website/issues/7469) at 2025-03-26 03:11 PM PDT -xnealcarson,2025-03-26T22:17:39Z,- xnealcarson commented on issue: [7469](https://github.com/hackforla/website/issues/7469#issuecomment-2755866058) at 2025-03-26 03:17 PM PDT -xnealcarson,2025-03-26T22:27:46Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2755880435) at 2025-03-26 03:27 PM PDT -xnealcarson,2025-03-29T21:52:46Z,- xnealcarson opened pull request: [8021](https://github.com/hackforla/website/pull/8021) at 2025-03-29 02:52 PM PDT -xnealcarson,2025-04-02T21:11:49Z,- xnealcarson commented on pull request: [8020](https://github.com/hackforla/website/pull/8020#issuecomment-2773754006) at 2025-04-02 02:11 PM PDT -xnealcarson,2025-04-02T21:57:23Z,- xnealcarson submitted pull request review: [8020](https://github.com/hackforla/website/pull/8020#pullrequestreview-2737686244) at 2025-04-02 02:57 PM PDT -xnealcarson,2025-04-03T06:27:04Z,- xnealcarson pull request merged: [8021](https://github.com/hackforla/website/pull/8021#event-17106926265) at 2025-04-02 11:27 PM PDT -xnealcarson,2025-04-05T01:42:32Z,- xnealcarson assigned to issue: [8016](https://github.com/hackforla/website/issues/8016) at 2025-04-04 06:42 PM PDT -xnealcarson,2025-04-05T01:42:47Z,- xnealcarson unassigned from issue: [8016](https://github.com/hackforla/website/issues/8016) at 2025-04-04 06:42 PM PDT -xnealcarson,2025-04-05T01:45:32Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2780126078) at 2025-04-04 06:45 PM PDT -xnealcarson,2025-04-06T03:20:20Z,- xnealcarson submitted pull request review: [8039](https://github.com/hackforla/website/pull/8039#pullrequestreview-2745028587) at 2025-04-05 08:20 PM PDT -xnealcarson,2025-04-06T20:52:09Z,- xnealcarson submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2745271992) at 2025-04-06 01:52 PM PDT -xnealcarson,2025-04-07T22:32:55Z,- xnealcarson assigned to issue: [7471](https://github.com/hackforla/website/issues/7471) at 2025-04-07 03:32 PM PDT -xnealcarson,2025-04-07T22:54:57Z,- xnealcarson commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2784809544) at 2025-04-07 03:54 PM PDT -xnealcarson,2025-04-11T01:17:59Z,- xnealcarson commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795582661) at 2025-04-10 06:17 PM PDT -xnealcarson,2025-04-11T01:17:59Z,- xnealcarson commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795582661) at 2025-04-10 06:17 PM PDT -xnealcarson,2025-04-11T01:50:42Z,- xnealcarson submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758946216) at 2025-04-10 06:50 PM PDT -xnealcarson,2025-04-11T01:50:42Z,- xnealcarson submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758946216) at 2025-04-10 06:50 PM PDT -xnealcarson,2025-04-12T20:57:37Z,- xnealcarson opened pull request: [8061](https://github.com/hackforla/website/pull/8061) at 2025-04-12 01:57 PM PDT -xnealcarson,2025-04-13T20:10:06Z,- xnealcarson commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2800104611) at 2025-04-13 01:10 PM PDT -xnealcarson,2025-04-16T02:18:14Z,- xnealcarson commented on pull request: [8060](https://github.com/hackforla/website/pull/8060#issuecomment-2808031963) at 2025-04-15 07:18 PM PDT -xnealcarson,2025-04-16T02:18:42Z,- xnealcarson commented on pull request: [8059](https://github.com/hackforla/website/pull/8059#issuecomment-2808032450) at 2025-04-15 07:18 PM PDT -xnealcarson,2025-04-16T02:49:02Z,- xnealcarson commented on pull request: [8058](https://github.com/hackforla/website/pull/8058#issuecomment-2808083651) at 2025-04-15 07:49 PM PDT -xnealcarson,2025-04-17T19:11:44Z,- xnealcarson pull request merged: [8061](https://github.com/hackforla/website/pull/8061#event-17310716868) at 2025-04-17 12:11 PM PDT -xnealcarson,2025-04-17T22:13:40Z,- xnealcarson submitted pull request review: [8060](https://github.com/hackforla/website/pull/8060#pullrequestreview-2777044386) at 2025-04-17 03:13 PM PDT -xnealcarson,2025-04-19T01:27:21Z,- xnealcarson submitted pull request review: [8059](https://github.com/hackforla/website/pull/8059#pullrequestreview-2779738341) at 2025-04-18 06:27 PM PDT -xnealcarson,2025-04-19T01:43:47Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2816451277) at 2025-04-18 06:43 PM PDT -xnealcarson,2025-04-19T21:27:18Z,- xnealcarson submitted pull request review: [8058](https://github.com/hackforla/website/pull/8058#pullrequestreview-2780095062) at 2025-04-19 02:27 PM PDT -xnealcarson,2025-04-20T21:56:18Z,- xnealcarson commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2817356279) at 2025-04-20 02:56 PM PDT -xnealcarson,2025-04-20T21:56:34Z,- xnealcarson commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2817356458) at 2025-04-20 02:56 PM PDT -xnealcarson,2025-04-21T20:18:34Z,- xnealcarson assigned to issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:18 PM PDT -xnealcarson,2025-04-21T20:18:49Z,- xnealcarson unassigned from issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:18 PM PDT -xnealcarson,2025-04-21T20:21:31Z,- xnealcarson assigned to issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:21 PM PDT -xnealcarson,2025-04-21T20:21:45Z,- xnealcarson unassigned from issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:21 PM PDT -xnealcarson,2025-04-21T22:07:57Z,- xnealcarson assigned to issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2705769103) at 2025-04-21 03:07 PM PDT -xnealcarson,2025-04-21T22:10:21Z,- xnealcarson commented on issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2819599845) at 2025-04-21 03:10 PM PDT -xnealcarson,2025-04-23T21:36:22Z,- xnealcarson submitted pull request review: [8069](https://github.com/hackforla/website/pull/8069#pullrequestreview-2788733799) at 2025-04-23 02:36 PM PDT -xnealcarson,2025-04-25T01:21:35Z,- xnealcarson submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2792802529) at 2025-04-24 06:21 PM PDT -xnealcarson,2025-04-26T20:45:36Z,- xnealcarson opened pull request: [8090](https://github.com/hackforla/website/pull/8090) at 2025-04-26 01:45 PM PDT -xnealcarson,2025-04-29T00:01:34Z,- xnealcarson commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2837051261) at 2025-04-28 05:01 PM PDT -xnealcarson,2025-04-29T18:16:45Z,- xnealcarson commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2839784225) at 2025-04-29 11:16 AM PDT -xnealcarson,2025-04-29T18:29:44Z,- xnealcarson submitted pull request review: [8091](https://github.com/hackforla/website/pull/8091#pullrequestreview-2804610722) at 2025-04-29 11:29 AM PDT -xnealcarson,2025-04-30T01:55:44Z,- xnealcarson pull request merged: [8090](https://github.com/hackforla/website/pull/8090#event-17465090985) at 2025-04-29 06:55 PM PDT -xnealcarson,2025-05-02T01:07:55Z,- xnealcarson submitted pull request review: [8092](https://github.com/hackforla/website/pull/8092#pullrequestreview-2811005372) at 2025-05-01 06:07 PM PDT -xnealcarson,2025-05-02T01:14:29Z,- xnealcarson commented on pull request: [8104](https://github.com/hackforla/website/pull/8104#issuecomment-2846096942) at 2025-05-01 06:14 PM PDT -xnealcarson,2025-05-02T01:16:30Z,- xnealcarson commented on pull request: [8101](https://github.com/hackforla/website/pull/8101#issuecomment-2846098549) at 2025-05-01 06:16 PM PDT -xnealcarson,2025-05-03T02:37:12Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2848379911) at 2025-05-02 07:37 PM PDT -xnealcarson,2025-05-04T03:07:55Z,- xnealcarson submitted pull request review: [8101](https://github.com/hackforla/website/pull/8101#pullrequestreview-2813350012) at 2025-05-03 08:07 PM PDT -xnealcarson,2025-05-04T03:21:10Z,- xnealcarson submitted pull request review: [8104](https://github.com/hackforla/website/pull/8104#pullrequestreview-2813351439) at 2025-05-03 08:21 PM PDT -xnealcarson,2025-05-06T21:46:24Z,- xnealcarson commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2856148556) at 2025-05-06 02:46 PM PDT -xnealcarson,2025-05-08T00:04:00Z,- xnealcarson submitted pull request review: [8116](https://github.com/hackforla/website/pull/8116#pullrequestreview-2823503043) at 2025-05-07 05:04 PM PDT -xnealcarson,2025-05-08T00:06:22Z,- xnealcarson commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2860880993) at 2025-05-07 05:06 PM PDT -xnealcarson,2025-05-10T02:58:05Z,- xnealcarson submitted pull request review: [8118](https://github.com/hackforla/website/pull/8118#pullrequestreview-2830124020) at 2025-05-09 07:58 PM PDT -xnealcarson,2025-05-16T21:17:47Z,- xnealcarson commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2887693120) at 2025-05-16 02:17 PM PDT -xnealcarson,2025-05-16T21:18:30Z,- xnealcarson commented on pull request: [8142](https://github.com/hackforla/website/pull/8142#issuecomment-2887694157) at 2025-05-16 02:18 PM PDT -xnealcarson,2025-05-16T21:19:08Z,- xnealcarson commented on pull request: [8141](https://github.com/hackforla/website/pull/8141#issuecomment-2887694979) at 2025-05-16 02:19 PM PDT -xnealcarson,2025-05-16T22:14:21Z,- xnealcarson submitted pull request review: [8141](https://github.com/hackforla/website/pull/8141#pullrequestreview-2847702267) at 2025-05-16 03:14 PM PDT -xnealcarson,2025-05-16T22:22:04Z,- xnealcarson submitted pull request review: [8142](https://github.com/hackforla/website/pull/8142#pullrequestreview-2847710600) at 2025-05-16 03:22 PM PDT -xnealcarson,2025-05-16T22:44:57Z,- xnealcarson submitted pull request review: [8143](https://github.com/hackforla/website/pull/8143#pullrequestreview-2847730218) at 2025-05-16 03:44 PM PDT -xnealcarson,2025-05-19T23:20:53Z,- xnealcarson assigned to issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2767505799) at 2025-05-19 04:20 PM PDT -xnealcarson,2025-05-19T23:21:09Z,- xnealcarson unassigned from issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2767505799) at 2025-05-19 04:21 PM PDT -xnealcarson,2025-05-19T23:33:49Z,- xnealcarson assigned to issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892496126) at 2025-05-19 04:33 PM PDT -xnealcarson,2025-05-20T00:02:53Z,- xnealcarson commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892541288) at 2025-05-19 05:02 PM PDT -xnealcarson,2025-05-20T23:33:56Z,- xnealcarson commented on pull request: [8146](https://github.com/hackforla/website/pull/8146#issuecomment-2896060514) at 2025-05-20 04:33 PM PDT -xnealcarson,2025-05-21T01:07:16Z,- xnealcarson submitted pull request review: [8146](https://github.com/hackforla/website/pull/8146#pullrequestreview-2855943417) at 2025-05-20 06:07 PM PDT -xnealcarson,2025-05-21T22:45:21Z,- xnealcarson opened issue: [8151](https://github.com/hackforla/website/issues/8151) at 2025-05-21 03:45 PM PDT -xnealcarson,2025-05-22T21:12:00Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2902583417) at 2025-05-22 02:12 PM PDT -xnealcarson,2025-05-22T21:23:58Z,- xnealcarson commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902606277) at 2025-05-22 02:23 PM PDT -xnealcarson,2025-05-22T21:55:02Z,- xnealcarson assigned to issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902643601) at 2025-05-22 02:55 PM PDT -xnealcarson,2025-05-23T19:57:15Z,- xnealcarson commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2905668421) at 2025-05-23 12:57 PM PDT -xnealcarson,2025-06-01T04:18:25Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2926463965) at 2025-05-31 09:18 PM PDT -xnealcarson,2025-06-11T19:50:02Z,- xnealcarson opened pull request: [8181](https://github.com/hackforla/website/pull/8181) at 2025-06-11 12:50 PM PDT -xnealcarson,2025-06-15T15:30:13Z,- xnealcarson commented on pull request: [8181](https://github.com/hackforla/website/pull/8181#issuecomment-2974083024) at 2025-06-15 08:30 AM PDT -xnealcarson,2025-06-15T15:35:59Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2974094799) at 2025-06-15 08:35 AM PDT -xnealcarson,2025-06-16T21:07:26Z,- xnealcarson pull request merged: [8181](https://github.com/hackforla/website/pull/8181#event-18178439340) at 2025-06-16 02:07 PM PDT -xnealcarson,2025-06-23T20:27:28Z,- xnealcarson commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2997848991) at 2025-06-23 01:27 PM PDT -xnealcarson,2025-06-23T20:28:07Z,- xnealcarson commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-2997850775) at 2025-06-23 01:28 PM PDT -xnealcarson,2025-06-24T21:52:53Z,- xnealcarson submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2955471053) at 2025-06-24 02:52 PM PDT -xnealcarson,2025-06-25T23:05:22Z,- xnealcarson submitted pull request review: [8199](https://github.com/hackforla/website/pull/8199#pullrequestreview-2959910203) at 2025-06-25 04:05 PM PDT -xnealcarson,2025-06-27T01:00:15Z,- xnealcarson submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2964269635) at 2025-06-26 06:00 PM PDT -xnealcarson,2025-06-28T03:20:58Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3014894671) at 2025-06-27 08:20 PM PDT -xnealcarson,2025-08-08T12:51:10Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3167783130) at 2025-08-08 05:51 AM PDT -y20s,2021-01-11T22:59:04Z,- y20s assigned to issue: [907](https://github.com/hackforla/website/issues/907) at 2021-01-11 02:59 PM PST -y20s,2021-01-20T03:33:12Z,- y20s opened pull request: [951](https://github.com/hackforla/website/pull/951) at 2021-01-19 07:33 PM PST -y20s,2021-01-20T03:47:24Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-763309965) at 2021-01-19 07:47 PM PST -y20s,2021-01-20T03:49:24Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-763310526) at 2021-01-19 07:49 PM PST -y20s,2021-01-20T03:51:23Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-763311026) at 2021-01-19 07:51 PM PST -y20s,2021-01-20T23:04:44Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-764011267) at 2021-01-20 03:04 PM PST -y20s,2021-01-22T02:10:04Z,- y20s pull request merged: [951](https://github.com/hackforla/website/pull/951#event-4236415874) at 2021-01-21 06:10 PM PST -y20s,2021-01-24T18:12:54Z,- y20s commented on issue: [934](https://github.com/hackforla/website/issues/934#issuecomment-766405875) at 2021-01-24 10:12 AM PST -y20s,2021-01-24T18:13:22Z,- y20s closed issue as completed: [934](https://github.com/hackforla/website/issues/934#event-4242772487) at 2021-01-24 10:13 AM PST -y20s,2021-01-24T18:29:55Z,- y20s commented on issue: [830](https://github.com/hackforla/website/issues/830#issuecomment-766408606) at 2021-01-24 10:29 AM PST -ychang49265,3711,SKILLS ISSUE -ychang49265,2022-11-09T03:47:29Z,- ychang49265 opened issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-08 07:47 PM PST -ychang49265,2022-11-16T03:44:05Z,- ychang49265 assigned to issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-15 07:44 PM PST -ychang49265,2022-11-21T14:44:54Z,- ychang49265 unassigned from issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-21 06:44 AM PST -ychang49265,2022-11-22T14:47:39Z,- ychang49265 assigned to issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-22 06:47 AM PST -ychang49265,2022-11-22T18:27:20Z,- ychang49265 commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1324083623) at 2022-11-22 10:27 AM PST -ychang49265,2022-11-22T18:43:21Z,- ychang49265 commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1324100399) at 2022-11-22 10:43 AM PST -ychang49265,2022-12-11T17:38:19Z,- ychang49265 commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1345613430) at 2022-12-11 09:38 AM PST -ychang49265,2022-12-26T23:56:35Z,- ychang49265 assigned to issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1335847822) at 2022-12-26 03:56 PM PST -ychang49265,2022-12-27T00:15:33Z,- ychang49265 commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1365516720) at 2022-12-26 04:15 PM PST -ychang49265,2022-12-27T00:31:13Z,- ychang49265 commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1365521859) at 2022-12-26 04:31 PM PST -ychang49265,2023-01-14T00:22:52Z,- ychang49265 opened pull request: [3816](https://github.com/hackforla/website/pull/3816) at 2023-01-13 04:22 PM PST -ychang49265,2023-01-16T20:30:21Z,- ychang49265 pull request merged: [3816](https://github.com/hackforla/website/pull/3816#event-8239929051) at 2023-01-16 12:30 PM PST -ychu196,2022-10-25T01:39:01Z,- ychu196 commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1289863242) at 2022-10-24 06:39 PM PDT -ychu196,2022-11-06T22:35:58Z,- ychu196 opened issue: [3697](https://github.com/hackforla/website/issues/3697) at 2022-11-06 02:35 PM PST -ychu196,2022-11-08T02:25:33Z,- ychu196 commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1306531685) at 2022-11-07 06:25 PM PST -ychu196,2022-12-13T00:08:19Z,- ychu196 commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347554648) at 2022-12-12 04:08 PM PST -ychu196,2022-12-14T02:59:23Z,- ychu196 commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1350308492) at 2022-12-13 06:59 PM PST -ychu196,2023-06-20T06:50:26Z,- ychu196 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1598209544) at 2023-06-19 11:50 PM PDT -ychu196,2023-06-22T17:31:24Z,- ychu196 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1603056249) at 2023-06-22 10:31 AM PDT -ychu196,2023-06-25T05:04:39Z,- ychu196 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1605872982) at 2023-06-24 10:04 PM PDT -ye-susan,2020-04-26T17:55:10Z,- ye-susan assigned to issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 10:55 AM PDT -ye-susan,2020-04-26T20:33:12Z,- ye-susan assigned to issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616243829) at 2020-04-26 01:33 PM PDT -ye-susan,2020-04-26T20:36:19Z,- ye-susan unassigned from issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 01:36 PM PDT -ye-susan,2020-04-28T22:11:32Z,- ye-susan opened pull request: [473](https://github.com/hackforla/website/pull/473) at 2020-04-28 03:11 PM PDT -ye-susan,2020-04-28T22:23:03Z,- ye-susan pull request merged: [473](https://github.com/hackforla/website/pull/473#event-3282351355) at 2020-04-28 03:23 PM PDT -ye-susan,2020-04-28T22:30:11Z,- ye-susan reopened pull request: [473](https://github.com/hackforla/website/pull/473#event-3282351355) at 2020-04-28 03:30 PM PDT -ye-susan,2020-04-28T22:32:29Z,- ye-susan commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-620889591) at 2020-04-28 03:32 PM PDT -ye-susan,2020-04-30T06:17:11Z,- ye-susan opened pull request: [476](https://github.com/hackforla/website/pull/476) at 2020-04-29 11:17 PM PDT -ye-susan,2020-04-30T06:18:13Z,- ye-susan pull request merged: [476](https://github.com/hackforla/website/pull/476#event-3287721167) at 2020-04-29 11:18 PM PDT -ye-susan,2020-04-30T06:38:12Z,- ye-susan opened issue: [477](https://github.com/hackforla/website/issues/477) at 2020-04-29 11:38 PM PDT -ye-susan,2020-05-01T05:10:00Z,- ye-susan pull request merged: [473](https://github.com/hackforla/website/pull/473#event-3292255378) at 2020-04-30 10:10 PM PDT -ye-susan,2020-05-03T18:24:36Z,- ye-susan assigned to issue: [469](https://github.com/hackforla/website/issues/469) at 2020-05-03 11:24 AM PDT -ye-susan,2020-05-03T19:14:48Z,- ye-susan opened pull request: [486](https://github.com/hackforla/website/pull/486) at 2020-05-03 12:14 PM PDT -ye-susan,2020-05-03T19:16:10Z,- ye-susan commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-623165225) at 2020-05-03 12:16 PM PDT -ye-susan,2020-05-03T22:30:40Z,- ye-susan pull request merged: [486](https://github.com/hackforla/website/pull/486#event-3297905284) at 2020-05-03 03:30 PM PDT -ye-susan,2020-05-06T02:48:38Z,- ye-susan assigned to issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-624322406) at 2020-05-05 07:48 PM PDT -ye-susan,2020-05-09T07:47:40Z,- ye-susan closed issue as completed: [431](https://github.com/hackforla/website/issues/431#event-3319109616) at 2020-05-09 12:47 AM PDT -ye-susan,2020-05-09T07:59:41Z,- ye-susan opened pull request: [504](https://github.com/hackforla/website/pull/504) at 2020-05-09 12:59 AM PDT -ye-susan,2020-05-10T19:16:37Z,- ye-susan assigned to issue: [506](https://github.com/hackforla/website/issues/506) at 2020-05-10 12:16 PM PDT -ye-susan,2020-05-11T14:10:52Z,- ye-susan closed issue by PR 504: [384](https://github.com/hackforla/website/issues/384#event-3323161074) at 2020-05-11 07:10 AM PDT -ye-susan,2020-05-11T14:10:52Z,- ye-susan pull request merged: [504](https://github.com/hackforla/website/pull/504#event-3323161094) at 2020-05-11 07:10 AM PDT -ye-susan,2020-05-12T21:16:24Z,- ye-susan commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-627602710) at 2020-05-12 02:16 PM PDT -ye-susan,2020-05-13T23:01:08Z,- ye-susan opened pull request: [512](https://github.com/hackforla/website/pull/512) at 2020-05-13 04:01 PM PDT -ye-susan,2020-05-14T02:46:18Z,- ye-susan pull request merged: [512](https://github.com/hackforla/website/pull/512#event-3334622969) at 2020-05-13 07:46 PM PDT -ye-susan,2020-05-17T07:20:34Z,- ye-susan commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-629754997) at 2020-05-17 12:20 AM PDT -ye-susan,2020-05-17T18:19:06Z,- ye-susan assigned to issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619662073) at 2020-05-17 11:19 AM PDT -ye-susan,2020-05-17T18:19:21Z,- ye-susan unassigned from issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619662073) at 2020-05-17 11:19 AM PDT -ye-susan,2020-05-19T00:06:31Z,- ye-susan opened issue: [529](https://github.com/hackforla/website/issues/529) at 2020-05-18 05:06 PM PDT -ye-susan,2020-05-19T00:06:40Z,- ye-susan assigned to issue: [529](https://github.com/hackforla/website/issues/529) at 2020-05-18 05:06 PM PDT -ye-susan,2020-05-19T00:10:25Z,- ye-susan commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-630499315) at 2020-05-18 05:10 PM PDT -ye-susan,2020-05-20T01:34:12Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-631180825) at 2020-05-19 06:34 PM PDT -ye-susan,2020-05-20T19:29:31Z,- ye-susan opened pull request: [531](https://github.com/hackforla/website/pull/531) at 2020-05-20 12:29 PM PDT -ye-susan,2020-05-21T02:42:05Z,- ye-susan pull request merged: [531](https://github.com/hackforla/website/pull/531#event-3359022824) at 2020-05-20 07:42 PM PDT -ye-susan,2020-05-24T07:51:54Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-633193987) at 2020-05-24 12:51 AM PDT -ye-susan,2020-05-24T16:58:48Z,- ye-susan unassigned from issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-24 09:58 AM PDT -ye-susan,2020-05-24T17:03:38Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-633260770) at 2020-05-24 10:03 AM PDT -ye-susan,2020-05-24T19:31:03Z,- ye-susan assigned to issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -ye-susan,2020-05-24T19:31:47Z,- ye-susan unassigned from issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -ye-susan,2020-05-25T06:14:15Z,- ye-susan commented on pull request: [539](https://github.com/hackforla/website/pull/539#issuecomment-633396956) at 2020-05-24 11:14 PM PDT -ye-susan,2020-05-27T06:35:22Z,- ye-susan closed issue by PR 546: [532](https://github.com/hackforla/website/issues/532#event-3376604850) at 2020-05-26 11:35 PM PDT -ye-susan,2020-05-27T07:03:58Z,- ye-susan submitted pull request review: [545](https://github.com/hackforla/website/pull/545#pullrequestreview-418908845) at 2020-05-27 12:03 AM PDT -ye-susan,2020-05-27T21:17:07Z,- ye-susan closed issue by PR 545: [510](https://github.com/hackforla/website/issues/510#event-3380109427) at 2020-05-27 02:17 PM PDT -ye-susan,2020-05-31T08:23:56Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636439250) at 2020-05-31 01:23 AM PDT -ye-susan,2020-05-31T18:26:11Z,- ye-susan assigned to issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636496646) at 2020-05-31 11:26 AM PDT -ye-susan,2020-06-01T01:14:43Z,- ye-susan assigned to issue: [525](https://github.com/hackforla/website/issues/525) at 2020-05-31 06:14 PM PDT -ye-susan,2020-06-01T01:34:23Z,- ye-susan commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-636568893) at 2020-05-31 06:34 PM PDT -ye-susan,2020-06-01T01:35:16Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569085) at 2020-05-31 06:35 PM PDT -ye-susan,2020-06-01T01:35:33Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569146) at 2020-05-31 06:35 PM PDT -ye-susan,2020-06-01T01:35:49Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569202) at 2020-05-31 06:35 PM PDT -ye-susan,2020-06-01T01:36:03Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569246) at 2020-05-31 06:36 PM PDT -ye-susan,2020-06-01T01:36:17Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569286) at 2020-05-31 06:36 PM PDT -ye-susan,2020-06-01T02:50:59Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636585101) at 2020-05-31 07:50 PM PDT -ye-susan,2020-06-01T03:02:32Z,- ye-susan assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-31 08:02 PM PDT -ye-susan,2020-06-01T03:03:13Z,- ye-susan unassigned from issue: [469](https://github.com/hackforla/website/issues/469#issuecomment-626354547) at 2020-05-31 08:03 PM PDT -ye-susan,2020-06-01T03:04:02Z,- ye-susan closed issue as completed: [469](https://github.com/hackforla/website/issues/469#event-3391350023) at 2020-05-31 08:04 PM PDT -ye-susan,2020-06-01T22:27:07Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637158360) at 2020-06-01 03:27 PM PDT -ye-susan,2020-06-02T19:23:45Z,- ye-susan commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-637756798) at 2020-06-02 12:23 PM PDT -ye-susan,2020-06-03T02:25:39Z,- ye-susan unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637158360) at 2020-06-02 07:25 PM PDT -ye-susan,2020-06-03T02:39:49Z,- ye-susan closed issue as completed: [270](https://github.com/hackforla/website/issues/270#event-3400175231) at 2020-06-02 07:39 PM PDT -ye-susan,2020-06-03T02:49:44Z,- ye-susan assigned to issue: [556](https://github.com/hackforla/website/issues/556) at 2020-06-02 07:49 PM PDT -ye-susan,2020-06-03T21:50:39Z,- ye-susan commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-638480332) at 2020-06-03 02:50 PM PDT -ye-susan,2020-06-03T22:55:30Z,- ye-susan opened pull request: [560](https://github.com/hackforla/website/pull/560) at 2020-06-03 03:55 PM PDT -ye-susan,2020-06-04T00:31:36Z,- ye-susan commented on pull request: [560](https://github.com/hackforla/website/pull/560#issuecomment-638530408) at 2020-06-03 05:31 PM PDT -ye-susan,2020-06-04T03:47:05Z,- ye-susan opened pull request: [561](https://github.com/hackforla/website/pull/561) at 2020-06-03 08:47 PM PDT -ye-susan,2020-06-04T05:36:29Z,- ye-susan closed issue by PR 560: [323](https://github.com/hackforla/website/issues/323#event-3405133483) at 2020-06-03 10:36 PM PDT -ye-susan,2020-06-04T05:36:29Z,- ye-susan pull request merged: [560](https://github.com/hackforla/website/pull/560#event-3405133490) at 2020-06-03 10:36 PM PDT -ye-susan,2020-06-07T00:45:42Z,- ye-susan commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-640138919) at 2020-06-06 05:45 PM PDT -ye-susan,2020-06-07T16:25:01Z,- ye-susan assigned to issue: [567](https://github.com/hackforla/website/issues/567) at 2020-06-07 09:25 AM PDT -ye-susan,2020-06-07T17:09:54Z,- ye-susan assigned to issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-640241905) at 2020-06-07 10:09 AM PDT -ye-susan,2020-06-07T17:37:44Z,- ye-susan assigned to issue: [570](https://github.com/hackforla/website/issues/570) at 2020-06-07 10:37 AM PDT -ye-susan,2020-06-07T18:16:43Z,- ye-susan assigned to issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-07 11:16 AM PDT -ye-susan,2020-06-09T06:13:07Z,- ye-susan commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-641054210) at 2020-06-08 11:13 PM PDT -ye-susan,2020-06-09T20:18:01Z,- ye-susan opened pull request: [573](https://github.com/hackforla/website/pull/573) at 2020-06-09 01:18 PM PDT -ye-susan,2020-06-09T20:18:36Z,- ye-susan pull request closed w/o merging: [573](https://github.com/hackforla/website/pull/573#event-3426673043) at 2020-06-09 01:18 PM PDT -ye-susan,2020-06-09T20:18:48Z,- ye-susan reopened pull request: [573](https://github.com/hackforla/website/pull/573#event-3426673043) at 2020-06-09 01:18 PM PDT -ye-susan,2020-06-09T20:22:48Z,- ye-susan commented on pull request: [573](https://github.com/hackforla/website/pull/573#issuecomment-641548873) at 2020-06-09 01:22 PM PDT -ye-susan,2020-06-09T22:32:54Z,- ye-susan commented on issue: [567](https://github.com/hackforla/website/issues/567#issuecomment-641615967) at 2020-06-09 03:32 PM PDT -ye-susan,2020-06-10T01:43:57Z,- ye-susan pull request merged: [561](https://github.com/hackforla/website/pull/561#event-3427451475) at 2020-06-09 06:43 PM PDT -ye-susan,2020-06-10T18:32:52Z,- ye-susan opened pull request: [574](https://github.com/hackforla/website/pull/574) at 2020-06-10 11:32 AM PDT -ye-susan,2020-06-10T18:33:25Z,- ye-susan pull request closed w/o merging: [573](https://github.com/hackforla/website/pull/573#event-3430951453) at 2020-06-10 11:33 AM PDT -ye-susan,2020-06-10T18:34:02Z,- ye-susan commented on pull request: [573](https://github.com/hackforla/website/pull/573#issuecomment-642186035) at 2020-06-10 11:34 AM PDT -ye-susan,2020-06-10T18:43:00Z,- ye-susan commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-642190172) at 2020-06-10 11:43 AM PDT -ye-susan,2020-06-14T17:17:54Z,- ye-susan unassigned from issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-14 10:17 AM PDT -ye-susan,2020-06-16T07:22:45Z,- ye-susan commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-644583427) at 2020-06-16 12:22 AM PDT -ye-susan,2020-06-21T16:55:25Z,- ye-susan unassigned from issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-06-21 09:55 AM PDT -ye-susan,2020-06-21T18:19:02Z,- ye-susan assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:19 AM PDT -ye-susan,2020-06-21T18:26:18Z,- ye-susan assigned to issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-640248482) at 2020-06-21 11:26 AM PDT -ye-susan,2020-06-22T22:28:20Z,- ye-susan commented on issue: [567](https://github.com/hackforla/website/issues/567#issuecomment-647800753) at 2020-06-22 03:28 PM PDT -ye-susan,2020-06-22T22:28:33Z,- ye-susan closed issue as completed: [567](https://github.com/hackforla/website/issues/567#event-3470387669) at 2020-06-22 03:28 PM PDT -ye-susan,2020-06-24T02:49:18Z,- ye-susan unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-23 07:49 PM PDT -ye-susan,2020-06-24T17:52:22Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-648971936) at 2020-06-24 10:52 AM PDT -ye-susan,2020-06-25T05:01:21Z,- ye-susan pull request merged: [574](https://github.com/hackforla/website/pull/574#event-3480354305) at 2020-06-24 10:01 PM PDT -ye-susan,2020-06-28T02:10:11Z,- ye-susan commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-650671880) at 2020-06-27 07:10 PM PDT -ye-susan,2020-06-28T20:48:55Z,- ye-susan opened pull request: [589](https://github.com/hackforla/website/pull/589) at 2020-06-28 01:48 PM PDT -ye-susan,2020-07-02T21:09:14Z,- ye-susan opened pull request: [592](https://github.com/hackforla/website/pull/592) at 2020-07-02 02:09 PM PDT -ye-susan,2020-07-02T21:10:01Z,- ye-susan commented on pull request: [589](https://github.com/hackforla/website/pull/589#issuecomment-653221653) at 2020-07-02 02:10 PM PDT -ye-susan,2020-07-02T21:10:02Z,- ye-susan pull request closed w/o merging: [589](https://github.com/hackforla/website/pull/589#event-3508760019) at 2020-07-02 02:10 PM PDT -ye-susan,2020-07-02T23:17:15Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-653256983) at 2020-07-02 04:17 PM PDT -ye-susan,2020-07-04T18:52:12Z,- ye-susan pull request merged: [592](https://github.com/hackforla/website/pull/592#event-3512768149) at 2020-07-04 11:52 AM PDT -ye-susan,2020-07-07T00:08:05Z,- ye-susan submitted pull request review: [596](https://github.com/hackforla/website/pull/596#pullrequestreview-443480018) at 2020-07-06 05:08 PM PDT -ye-susan,2020-07-07T19:55:12Z,- ye-susan opened pull request: [598](https://github.com/hackforla/website/pull/598) at 2020-07-07 12:55 PM PDT -ye-susan,2020-07-07T22:09:22Z,- ye-susan closed issue by PR 596: [593](https://github.com/hackforla/website/issues/593#event-3522504756) at 2020-07-07 03:09 PM PDT -ye-susan,2020-07-07T22:45:35Z,- ye-susan pull request merged: [598](https://github.com/hackforla/website/pull/598#event-3522599128) at 2020-07-07 03:45 PM PDT -ye-susan,2020-07-20T01:41:29Z,- ye-susan opened pull request: [619](https://github.com/hackforla/website/pull/619) at 2020-07-19 06:41 PM PDT -ye-susan,2020-07-20T05:09:42Z,- ye-susan commented on pull request: [619](https://github.com/hackforla/website/pull/619#issuecomment-660805205) at 2020-07-19 10:09 PM PDT -ye-susan,2020-07-20T16:09:31Z,- ye-susan pull request merged: [619](https://github.com/hackforla/website/pull/619#event-3566650983) at 2020-07-20 09:09 AM PDT -ye-susan,2020-07-22T05:31:02Z,- ye-susan opened pull request: [626](https://github.com/hackforla/website/pull/626) at 2020-07-21 10:31 PM PDT -ye-susan,2020-07-22T14:30:02Z,- ye-susan pull request merged: [626](https://github.com/hackforla/website/pull/626#event-3576058449) at 2020-07-22 07:30 AM PDT -ye-susan,2020-07-23T21:20:04Z,- ye-susan submitted pull request review: [630](https://github.com/hackforla/website/pull/630#pullrequestreview-454503284) at 2020-07-23 02:20 PM PDT -ye-susan,2020-07-23T21:20:56Z,- ye-susan submitted pull request review: [630](https://github.com/hackforla/website/pull/630#pullrequestreview-454503825) at 2020-07-23 02:20 PM PDT -ye-susan,2020-07-23T21:23:13Z,- ye-susan submitted pull request review: [630](https://github.com/hackforla/website/pull/630#pullrequestreview-454505184) at 2020-07-23 02:23 PM PDT -ye-susan,2020-07-26T00:07:50Z,- ye-susan commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663918879) at 2020-07-25 05:07 PM PDT -ye-susan,2020-07-26T18:55:17Z,- ye-susan opened issue: [645](https://github.com/hackforla/website/issues/645) at 2020-07-26 11:55 AM PDT -ye-susan,2020-07-26T18:55:18Z,- ye-susan assigned to issue: [645](https://github.com/hackforla/website/issues/645) at 2020-07-26 11:55 AM PDT -ye-susan,2020-07-27T02:05:48Z,- ye-susan opened pull request: [646](https://github.com/hackforla/website/pull/646) at 2020-07-26 07:05 PM PDT -ye-susan,2020-07-27T19:15:05Z,- ye-susan closed issue by PR 630: [599](https://github.com/hackforla/website/issues/599#event-3591277736) at 2020-07-27 12:15 PM PDT -ye-susan,2020-07-27T19:38:34Z,- ye-susan pull request merged: [646](https://github.com/hackforla/website/pull/646#event-3591355974) at 2020-07-27 12:38 PM PDT -ye-susan,2020-08-02T06:57:56Z,- ye-susan commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-667637326) at 2020-08-01 11:57 PM PDT -ye-susan,2020-08-08T22:05:55Z,- ye-susan opened pull request: [675](https://github.com/hackforla/website/pull/675) at 2020-08-08 03:05 PM PDT -ye-susan,2020-08-08T22:07:54Z,- ye-susan commented on issue: [645](https://github.com/hackforla/website/issues/645#issuecomment-670978960) at 2020-08-08 03:07 PM PDT -ye-susan,2020-08-12T06:25:54Z,- ye-susan commented on pull request: [675](https://github.com/hackforla/website/pull/675#issuecomment-672635500) at 2020-08-11 11:25 PM PDT -ye-susan,2020-08-16T16:43:33Z,- ye-susan pull request merged: [675](https://github.com/hackforla/website/pull/675#event-3659450822) at 2020-08-16 09:43 AM PDT -ye-susan,2020-09-08T04:50:33Z,- ye-susan commented on pull request: [722](https://github.com/hackforla/website/pull/722#issuecomment-688616953) at 2020-09-07 09:50 PM PDT -ye-susan,2020-09-08T17:53:43Z,- ye-susan commented on pull request: [722](https://github.com/hackforla/website/pull/722#issuecomment-689039540) at 2020-09-08 10:53 AM PDT -ye-susan,2021-07-26T02:35:23Z,- ye-susan unassigned from issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-880602740) at 2021-07-25 07:35 PM PDT -yeskatr,4065,SKILLS ISSUE -yeskatr,2023-03-01T04:07:00Z,- yeskatr opened issue: [4065](https://github.com/hackforla/website/issues/4065) at 2023-02-28 08:07 PM PST -yeskatr,2023-03-01T04:08:42Z,- yeskatr assigned to issue: [4065](https://github.com/hackforla/website/issues/4065) at 2023-02-28 08:08 PM PST -yeskatr,2023-04-03T15:46:25Z,- yeskatr commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1494564256) at 2023-04-03 08:46 AM PDT -yffu,5080,SKILLS ISSUE -yffu,2023-07-26T03:05:46Z,- yffu opened issue: [5080](https://github.com/hackforla/website/issues/5080) at 2023-07-25 08:05 PM PDT -yffu,2023-07-26T03:25:01Z,- yffu opened issue: [5087](https://github.com/hackforla/website/issues/5087) at 2023-07-25 08:25 PM PDT -yffu,2023-07-26T03:29:33Z,- yffu commented on issue: [5087](https://github.com/hackforla/website/issues/5087#issuecomment-1650922760) at 2023-07-25 08:29 PM PDT -yffu,2023-07-26T03:29:33Z,- yffu closed issue as completed: [5087](https://github.com/hackforla/website/issues/5087#event-9918802933) at 2023-07-25 08:29 PM PDT -yffu,2023-07-26T03:41:37Z,- yffu assigned to issue: [5080](https://github.com/hackforla/website/issues/5080) at 2023-07-25 08:41 PM PDT -yffu,2023-07-26T17:28:52Z,- yffu assigned to issue: [4811](https://github.com/hackforla/website/issues/4811) at 2023-07-26 10:28 AM PDT -yffu,2023-07-26T17:45:34Z,- yffu commented on issue: [4811](https://github.com/hackforla/website/issues/4811#issuecomment-1652247046) at 2023-07-26 10:45 AM PDT -yffu,2023-07-26T19:59:16Z,- yffu commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1652412533) at 2023-07-26 12:59 PM PDT -yffu,2023-07-26T20:22:14Z,- yffu opened pull request: [5096](https://github.com/hackforla/website/pull/5096) at 2023-07-26 01:22 PM PDT -yffu,2023-07-27T21:19:07Z,- yffu pull request merged: [5096](https://github.com/hackforla/website/pull/5096#event-9940818466) at 2023-07-27 02:19 PM PDT -yffu,2023-07-27T23:03:14Z,- yffu commented on pull request: [5096](https://github.com/hackforla/website/pull/5096#issuecomment-1654695898) at 2023-07-27 04:03 PM PDT -yffu,2023-07-27T23:29:18Z,- yffu assigned to issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1646884594) at 2023-07-27 04:29 PM PDT -yffu,2023-07-27T23:32:12Z,- yffu commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1654755261) at 2023-07-27 04:32 PM PDT -yffu,2023-07-28T01:14:12Z,- yffu opened pull request: [5106](https://github.com/hackforla/website/pull/5106) at 2023-07-27 06:14 PM PDT -yffu,2023-07-29T15:16:04Z,- yffu commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656756258) at 2023-07-29 08:16 AM PDT -yffu,2023-07-30T00:46:33Z,- yffu commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656983751) at 2023-07-29 05:46 PM PDT -yffu,2023-07-30T14:49:47Z,- yffu pull request merged: [5106](https://github.com/hackforla/website/pull/5106#event-9956897119) at 2023-07-30 07:49 AM PDT -yffu,2023-07-30T17:14:23Z,- yffu commented on pull request: [5109](https://github.com/hackforla/website/pull/5109#issuecomment-1657223076) at 2023-07-30 10:14 AM PDT -yffu,2023-07-30T18:01:09Z,- yffu submitted pull request review: [5109](https://github.com/hackforla/website/pull/5109#pullrequestreview-1553677626) at 2023-07-30 11:01 AM PDT -yffu,2023-08-04T15:59:08Z,- yffu commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1665846431) at 2023-08-04 08:59 AM PDT -yffu,2023-08-11T17:25:53Z,- yffu assigned to issue: [5012](https://github.com/hackforla/website/issues/5012#issuecomment-1641391242) at 2023-08-11 10:25 AM PDT -yffu,2023-08-11T17:27:03Z,- yffu commented on issue: [5012](https://github.com/hackforla/website/issues/5012#issuecomment-1675138371) at 2023-08-11 10:27 AM PDT -yffu,2023-08-25T17:26:21Z,- yffu commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1693701598) at 2023-08-25 10:26 AM PDT -yiminng,2022-09-21T04:56:51Z,- yiminng opened issue: [3572](https://github.com/hackforla/website/issues/3572) at 2022-09-20 09:56 PM PDT -yiminng,2022-09-22T08:34:08Z,- yiminng commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1254703030) at 2022-09-22 01:34 AM PDT -yiminng,2022-10-30T22:42:58Z,- yiminng commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1296368054) at 2022-10-30 03:42 PM PDT -ykim25,4649,SKILLS ISSUE -ykim25,2023-05-10T20:12:37Z,- ykim25 opened issue: [4649](https://github.com/hackforla/website/issues/4649) at 2023-05-10 01:12 PM PDT -ykim25,2023-05-10T20:13:06Z,- ykim25 assigned to issue: [4649](https://github.com/hackforla/website/issues/4649) at 2023-05-10 01:13 PM PDT -Yogeshp0012,2021-12-07T14:23:21Z,- Yogeshp0012 commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-987972392) at 2021-12-07 06:23 AM PST -YolandaHaynes,5482,SKILLS ISSUE -YolandaHaynes,2023-09-12T03:13:16Z,- YolandaHaynes opened issue: [5482](https://github.com/hackforla/website/issues/5482) at 2023-09-11 08:13 PM PDT -YolandaHaynes,2023-09-12T03:13:20Z,- YolandaHaynes assigned to issue: [5482](https://github.com/hackforla/website/issues/5482) at 2023-09-11 08:13 PM PDT -YolandaHaynes,2023-09-14T08:06:59Z,- YolandaHaynes assigned to issue: [5476](https://github.com/hackforla/website/issues/5476#issuecomment-1714486773) at 2023-09-14 01:06 AM PDT -YolandaHaynes,2023-09-14T08:10:48Z,- YolandaHaynes commented on issue: [5476](https://github.com/hackforla/website/issues/5476#issuecomment-1718969808) at 2023-09-14 01:10 AM PDT -YolandaHaynes,2023-09-15T02:10:43Z,- YolandaHaynes opened pull request: [5535](https://github.com/hackforla/website/pull/5535) at 2023-09-14 07:10 PM PDT -YolandaHaynes,2023-09-15T02:17:41Z,- YolandaHaynes commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1720392646) at 2023-09-14 07:17 PM PDT -YolandaHaynes,2023-09-17T18:33:24Z,- YolandaHaynes pull request merged: [5535](https://github.com/hackforla/website/pull/5535#event-10391807447) at 2023-09-17 11:33 AM PDT -YolandaHaynes,2023-09-17T23:18:10Z,- YolandaHaynes assigned to issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1704045066) at 2023-09-17 04:18 PM PDT -YolandaHaynes,2023-09-18T00:12:51Z,- YolandaHaynes commented on issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1722610092) at 2023-09-17 05:12 PM PDT -YolandaHaynes,2023-09-18T01:30:46Z,- YolandaHaynes opened pull request: [5550](https://github.com/hackforla/website/pull/5550) at 2023-09-17 06:30 PM PDT -YolandaHaynes,2023-09-20T02:27:56Z,- YolandaHaynes pull request merged: [5550](https://github.com/hackforla/website/pull/5550#event-10416953824) at 2023-09-19 07:27 PM PDT -YolandaHaynes,2023-09-24T13:50:24Z,- YolandaHaynes commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1732574826) at 2023-09-24 06:50 AM PDT -YolandaHaynes,2023-09-24T22:44:32Z,- YolandaHaynes commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1732687529) at 2023-09-24 03:44 PM PDT -YolandaHaynes,2023-09-24T22:44:32Z,- YolandaHaynes closed issue as completed: [5482](https://github.com/hackforla/website/issues/5482#event-10456089475) at 2023-09-24 03:44 PM PDT -YolandaHaynes,2023-09-24T23:05:45Z,- YolandaHaynes assigned to issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1707294204) at 2023-09-24 04:05 PM PDT -YolandaHaynes,2023-09-24T23:11:34Z,- YolandaHaynes commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1732693066) at 2023-09-24 04:11 PM PDT -YolandaHaynes,2023-10-02T06:27:59Z,- YolandaHaynes opened pull request: [5645](https://github.com/hackforla/website/pull/5645) at 2023-10-01 11:27 PM PDT -YolandaHaynes,2023-10-05T00:15:55Z,- YolandaHaynes pull request merged: [5645](https://github.com/hackforla/website/pull/5645#event-10556854808) at 2023-10-04 05:15 PM PDT -YolandaHaynes,2024-01-01T06:34:00Z,- YolandaHaynes assigned to issue: [5963](https://github.com/hackforla/website/issues/5963#issuecomment-1839850172) at 2023-12-31 10:34 PM PST -YolandaHaynes,2024-01-01T06:36:59Z,- YolandaHaynes commented on issue: [5963](https://github.com/hackforla/website/issues/5963#issuecomment-1873185584) at 2023-12-31 10:36 PM PST -YolandaHaynes,2024-01-02T02:34:41Z,- YolandaHaynes opened pull request: [6025](https://github.com/hackforla/website/pull/6025) at 2024-01-01 06:34 PM PST -YolandaHaynes,2024-01-07T22:06:37Z,- YolandaHaynes commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1880190706) at 2024-01-07 02:06 PM PST -YolandaHaynes,2024-01-10T05:25:47Z,- YolandaHaynes pull request merged: [6025](https://github.com/hackforla/website/pull/6025#event-11438624557) at 2024-01-09 09:25 PM PST -YolandaHaynes,2024-01-17T03:09:04Z,- YolandaHaynes assigned to issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1839803664) at 2024-01-16 07:09 PM PST -YolandaHaynes,2024-01-17T03:14:27Z,- YolandaHaynes commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1894869330) at 2024-01-16 07:14 PM PST -YolandaHaynes,2024-01-21T08:00:45Z,- YolandaHaynes commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1902546993) at 2024-01-21 12:00 AM PST -YolandaHaynes,2024-01-21T08:32:13Z,- YolandaHaynes opened pull request: [6136](https://github.com/hackforla/website/pull/6136) at 2024-01-21 12:32 AM PST -YolandaHaynes,2024-01-21T19:16:53Z,- YolandaHaynes pull request closed w/o merging: [6136](https://github.com/hackforla/website/pull/6136#event-11549745233) at 2024-01-21 11:16 AM PST -YolandaHaynes,2024-01-21T19:25:26Z,- YolandaHaynes unassigned from issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1902735327) at 2024-01-21 11:25 AM PST -YolandaHaynes,2024-01-21T19:45:20Z,- YolandaHaynes commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1902740847) at 2024-01-21 11:45 AM PST -YolandaHaynes,2024-01-21T19:46:36Z,- YolandaHaynes commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1902741157) at 2024-01-21 11:46 AM PST -YolandaHaynes,2024-01-22T08:42:57Z,- YolandaHaynes submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1835900827) at 2024-01-22 12:42 AM PST -YolandaHaynes,2024-01-22T08:48:16Z,- YolandaHaynes assigned to issue: [5983](https://github.com/hackforla/website/issues/5983) at 2024-01-22 12:48 AM PST -YolandaHaynes,2024-01-22T08:53:39Z,- YolandaHaynes commented on issue: [5983](https://github.com/hackforla/website/issues/5983#issuecomment-1903521969) at 2024-01-22 12:53 AM PST -YolandaHaynes,2024-01-29T20:27:41Z,- YolandaHaynes commented on issue: [5983](https://github.com/hackforla/website/issues/5983#issuecomment-1915506347) at 2024-01-29 12:27 PM PST -YolandaHaynes,2024-02-28T18:54:03Z,- YolandaHaynes commented on pull request: [6371](https://github.com/hackforla/website/pull/6371#issuecomment-1969630368) at 2024-02-28 10:54 AM PST -YolandaHaynes,2024-02-29T08:59:39Z,- YolandaHaynes submitted pull request review: [6371](https://github.com/hackforla/website/pull/6371#pullrequestreview-1908315670) at 2024-02-29 12:59 AM PST -YolandaHaynes,2024-04-19T01:44:35Z,- YolandaHaynes commented on pull request: [6659](https://github.com/hackforla/website/pull/6659#issuecomment-2065600470) at 2024-04-18 06:44 PM PDT -YolandaHaynes,2024-04-19T05:31:04Z,- YolandaHaynes submitted pull request review: [6659](https://github.com/hackforla/website/pull/6659#pullrequestreview-2010560616) at 2024-04-18 10:31 PM PDT -YolandaHaynes,2024-04-24T02:00:52Z,- YolandaHaynes assigned to issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2067932662) at 2024-04-23 07:00 PM PDT -YolandaHaynes,2024-04-24T02:07:19Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2073864243) at 2024-04-23 07:07 PM PDT -YolandaHaynes,2024-04-29T06:07:38Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2081951125) at 2024-04-28 11:07 PM PDT -YolandaHaynes,2024-05-03T08:59:24Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2092594669) at 2024-05-03 01:59 AM PDT -YolandaHaynes,2024-05-03T16:50:53Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2093390138) at 2024-05-03 09:50 AM PDT -YolandaHaynes,2024-05-19T16:52:48Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2119298750) at 2024-05-19 09:52 AM PDT -YolandaHaynes,2024-05-19T20:30:56Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2119351197) at 2024-05-19 01:30 PM PDT -YolandaHaynes,2024-05-26T03:04:55Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2132043028) at 2024-05-25 08:04 PM PDT -YolandaHaynes,2024-05-26T04:07:19Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2132055137) at 2024-05-25 09:07 PM PDT -youngspark1998,4991,SKILLS ISSUE -youngspark1998,2023-07-18T02:19:07Z,- youngspark1998 opened issue: [4991](https://github.com/hackforla/website/issues/4991) at 2023-07-17 07:19 PM PDT -youngspark1998,2023-07-18T02:57:38Z,- youngspark1998 assigned to issue: [4991](https://github.com/hackforla/website/issues/4991) at 2023-07-17 07:57 PM PDT -ysjiang18,2019-11-20T03:33:55Z,- ysjiang18 reopened issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-19 07:33 PM PST -ysjiang18,2019-11-23T03:42:49Z,- ysjiang18 assigned to issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-545255117) at 2019-11-22 07:42 PM PST -ysjiang18,2019-11-23T04:00:11Z,- ysjiang18 assigned to issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -ysjiang18,2019-11-24T21:25:37Z,- ysjiang18 commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-24 01:25 PM PST -ysjiang18,2019-11-25T04:47:41Z,- ysjiang18 commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-557986727) at 2019-11-24 08:47 PM PST -ysjiang18,2019-11-25T23:00:41Z,- ysjiang18 assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-25 03:00 PM PST -ysjiang18,2019-11-25T23:16:13Z,- ysjiang18 assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -ysjiang18,2019-11-26T00:11:22Z,- ysjiang18 assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -ysjiang18,2019-11-26T03:23:38Z,- ysjiang18 unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:23 PM PST -ysjiang18,2019-11-26T03:23:38Z,- ysjiang18 unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:23 PM PST -ysjiang18,2019-11-26T03:56:53Z,- ysjiang18 assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-11-25 07:56 PM PST -ysjiang18,2019-12-04T22:59:14Z,- ysjiang18 unassigned from issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 02:59 PM PST -ysjiang18,2019-12-04T23:09:13Z,- ysjiang18 unassigned from issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-04 03:09 PM PST -ysjiang18,2019-12-10T02:29:22Z,- ysjiang18 assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-560940316) at 2019-12-09 06:29 PM PST -ysjiang18,2019-12-31T00:00:40Z,- ysjiang18 unassigned from issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-12-30 04:00 PM PST -ysjiang18,2019-12-31T01:06:36Z,- ysjiang18 closed issue as completed: [176](https://github.com/hackforla/website/issues/176#event-2914935674) at 2019-12-30 05:06 PM PST -ysjiang18,2020-01-06T01:29:37Z,- ysjiang18 assigned to issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-570107258) at 2020-01-05 05:29 PM PST -ysjiang18,2020-01-12T19:31:55Z,- ysjiang18 unassigned from issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573368108) at 2020-01-12 11:31 AM PST -ysjiang18,2020-03-30T04:37:52Z,- ysjiang18 unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-03-29 09:37 PM PDT -ysjiang18,2020-06-01T02:54:34Z,- ysjiang18 unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-636585768) at 2020-05-31 07:54 PM PDT -yuikomajima,2020-03-30T14:16:17Z,- yuikomajima assigned to issue: [404](https://github.com/hackforla/website/issues/404) at 2020-03-30 07:16 AM PDT -yuikomajima,2020-03-31T00:53:35Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-606331505) at 2020-03-30 05:53 PM PDT -yuikomajima,2020-04-05T17:26:11Z,- yuikomajima assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -yuikomajima,2020-04-07T20:01:09Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-610591634) at 2020-04-07 01:01 PM PDT -yuikomajima,2020-04-11T19:21:24Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612495412) at 2020-04-11 12:21 PM PDT -yuikomajima,2020-04-12T20:47:52Z,- yuikomajima unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-12 01:47 PM PDT -yuikomajima,2020-04-13T01:04:41Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612704311) at 2020-04-12 06:04 PM PDT -yuikomajima,2020-04-13T02:13:00Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612717459) at 2020-04-12 07:13 PM PDT -yuikomajima,2020-04-15T01:41:08Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-613766543) at 2020-04-14 06:41 PM PDT -yuikomajima,2020-04-18T22:32:26Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-615965354) at 2020-04-18 03:32 PM PDT -yuikomajima,2020-04-19T19:56:33Z,- yuikomajima commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-616215437) at 2020-04-19 12:56 PM PDT -yuikomajima,2020-04-19T20:09:29Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-616217244) at 2020-04-19 01:09 PM PDT -yuikomajima,2020-04-26T20:54:25Z,- yuikomajima unassigned from issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:54 PM PDT -yuikomajima,2020-04-26T20:55:21Z,- yuikomajima assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:55 PM PDT -yuikomajima,2020-05-03T17:43:20Z,- yuikomajima unassigned from issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:43 AM PDT -yuikomajima,2020-05-03T19:53:26Z,- yuikomajima assigned to issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-605730441) at 2020-05-03 12:53 PM PDT -yuikomajima,2020-05-03T19:55:13Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623171178) at 2020-05-03 12:55 PM PDT -yuikomajima,2020-05-03T20:43:46Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623178869) at 2020-05-03 01:43 PM PDT -yuikomajima,2020-05-06T03:17:06Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-624420740) at 2020-05-05 08:17 PM PDT -yuikomajima,2020-05-06T15:11:11Z,- yuikomajima commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-624708098) at 2020-05-06 08:11 AM PDT -yuikomajima,2020-05-10T23:36:20Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-626407193) at 2020-05-10 04:36 PM PDT -yuikomajima,2020-05-17T18:48:12Z,- yuikomajima assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627737796) at 2020-05-17 11:48 AM PDT -yuikomajima,2020-05-18T15:48:11Z,- yuikomajima commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-630270782) at 2020-05-18 08:48 AM PDT -yuikomajima,2020-05-18T21:10:02Z,- yuikomajima closed issue by PR 619: [254](https://github.com/hackforla/website/issues/254#event-3349132273) at 2020-05-18 02:10 PM PDT -yuikomajima,2020-05-24T17:23:02Z,- yuikomajima unassigned from issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633262873) at 2020-05-24 10:23 AM PDT -yuikomajima,2020-05-31T20:36:15Z,- yuikomajima assigned to issue: [552](https://github.com/hackforla/website/issues/552) at 2020-05-31 01:36 PM PDT -yuikomajima,2020-05-31T21:54:05Z,- yuikomajima commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-636535812) at 2020-05-31 02:54 PM PDT -yuikomajima,2020-06-07T17:55:02Z,- yuikomajima assigned to issue: [571](https://github.com/hackforla/website/issues/571) at 2020-06-07 10:55 AM PDT -yuikomajima,2020-06-07T18:08:34Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640257260) at 2020-06-07 11:08 AM PDT -yuikomajima,2020-06-07T18:09:27Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640257383) at 2020-06-07 11:09 AM PDT -yuikomajima,2020-06-07T18:14:27Z,- yuikomajima unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-640257991) at 2020-06-07 11:14 AM PDT -yuikomajima,2020-06-07T18:16:35Z,- yuikomajima unassigned from issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-07 11:16 AM PDT -yuikomajima,2020-06-07T21:00:14Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640279158) at 2020-06-07 02:00 PM PDT -yuikomajima,2020-06-13T17:42:56Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-643655071) at 2020-06-13 10:42 AM PDT -yuikomajima,2020-06-14T17:54:21Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-643799862) at 2020-06-14 10:54 AM PDT -yuikomajima,2020-06-21T19:22:41Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-647170053) at 2020-06-21 12:22 PM PDT -yuikomajima,2020-06-27T15:16:27Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-650573770) at 2020-06-27 08:16 AM PDT -yuikomajima,2020-06-28T17:59:42Z,- yuikomajima unassigned from issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-650800803) at 2020-06-28 10:59 AM PDT -yuikomajima,2020-07-05T17:48:29Z,- yuikomajima assigned to issue: [555](https://github.com/hackforla/website/issues/555) at 2020-07-05 10:48 AM PDT -yuikomajima,2020-07-05T19:23:28Z,- yuikomajima commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-653928416) at 2020-07-05 12:23 PM PDT -yuikomajima,2020-07-05T23:42:50Z,- yuikomajima assigned to issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653954106) at 2020-07-05 04:42 PM PDT -yuikomajima,2020-07-05T23:43:16Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653954357) at 2020-07-05 04:43 PM PDT -yuikomajima,2020-07-06T02:51:45Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653987778) at 2020-07-05 07:51 PM PDT -yuikomajima,2020-07-15T23:21:05Z,- yuikomajima unassigned from issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-653928416) at 2020-07-15 04:21 PM PDT -yuikomajima,2020-07-19T18:15:23Z,- yuikomajima assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660685905) at 2020-07-19 11:15 AM PDT -yuikomajima,2020-07-19T18:52:07Z,- yuikomajima assigned to issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-07-19 11:52 AM PDT -yuikomajima,2020-07-19T19:16:28Z,- yuikomajima commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660693919) at 2020-07-19 12:16 PM PDT -yuikomajima,2020-07-19T20:02:06Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-660700091) at 2020-07-19 01:02 PM PDT -yuikomajima,2020-07-19T20:02:32Z,- yuikomajima unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660693919) at 2020-07-19 01:02 PM PDT -yuikomajima,2020-07-26T18:08:19Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-664021734) at 2020-07-26 11:08 AM PDT -yuikomajima,2020-08-02T17:51:25Z,- yuikomajima commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-667704785) at 2020-08-02 10:51 AM PDT -yuikomajima,2020-08-09T19:33:07Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671092068) at 2020-08-09 12:33 PM PDT -yuikomajima,2020-08-15T23:15:59Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-674456632) at 2020-08-15 04:15 PM PDT -yuikomajima,2020-08-30T18:12:57Z,- yuikomajima unassigned from issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-678804219) at 2020-08-30 11:12 AM PDT -yuikomajima,2020-09-27T19:18:07Z,- yuikomajima assigned to issue: [752](https://github.com/hackforla/website/issues/752) at 2020-09-27 12:18 PM PDT -yuikomajima,2020-09-27T19:23:57Z,- yuikomajima commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-699677124) at 2020-09-27 12:23 PM PDT -yuikomajima,2020-10-03T02:26:39Z,- yuikomajima commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-703032789) at 2020-10-02 07:26 PM PDT -yuikomajima,2020-10-04T19:38:09Z,- yuikomajima commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-703305164) at 2020-10-04 12:38 PM PDT -yuikomajima,2020-10-05T18:58:54Z,- yuikomajima assigned to issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-703825673) at 2020-10-05 11:58 AM PDT -yuikomajima,2020-10-08T23:40:08Z,- yuikomajima closed issue as completed: [156](https://github.com/hackforla/website/issues/156#event-3857778129) at 2020-10-08 04:40 PM PDT -yuikomajima,2020-10-11T19:21:24Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-706755181) at 2020-10-11 12:21 PM PDT -yuikomajima,2020-10-11T19:33:31Z,- yuikomajima commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-706756699) at 2020-10-11 12:33 PM PDT -yuikomajima,2020-10-18T18:17:01Z,- yuikomajima unassigned from issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-711352398) at 2020-10-18 11:17 AM PDT -yuikomajima,2020-10-18T18:19:23Z,- yuikomajima assigned to issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-706978109) at 2020-10-18 11:19 AM PDT -yuikomajima,2020-10-22T21:56:06Z,- yuikomajima assigned to issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-711352398) at 2020-10-22 02:56 PM PDT -yuikomajima,2020-10-22T22:08:54Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-714789668) at 2020-10-22 03:08 PM PDT -yuikomajima,2020-10-23T02:14:06Z,- yuikomajima commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-714863522) at 2020-10-22 07:14 PM PDT -yuikomajima,2020-10-23T18:50:30Z,- yuikomajima assigned to issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:50 AM PDT -yuikomajima,2020-10-25T18:21:28Z,- yuikomajima commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-716189546) at 2020-10-25 11:21 AM PDT -yuikomajima,2020-10-25T18:22:02Z,- yuikomajima commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716189638) at 2020-10-25 11:22 AM PDT -yuikomajima,2020-10-25T19:58:18Z,- yuikomajima unassigned from issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716202808) at 2020-10-25 12:58 PM PDT -yuikomajima,2020-10-25T20:04:24Z,- yuikomajima unassigned from issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-705842895) at 2020-10-25 01:04 PM PDT -yuikomajima,2020-10-25T20:08:56Z,- yuikomajima unassigned from issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-716204383) at 2020-10-25 01:08 PM PDT -yuikomajima,2020-11-01T19:33:11Z,- yuikomajima unassigned from issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-720139598) at 2020-11-01 11:33 AM PST -yuikomajima,2020-11-29T19:36:38Z,- yuikomajima assigned to issue: [796](https://github.com/hackforla/website/issues/796) at 2020-11-29 11:36 AM PST -yuikomajima,2020-11-29T19:51:55Z,- yuikomajima unassigned from issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-11-29 11:51 AM PST -yuikomajima,2020-11-29T21:27:25Z,- yuikomajima assigned to issue: [815](https://github.com/hackforla/website/issues/815) at 2020-11-29 01:27 PM PST -yuikomajima,2020-12-06T18:58:51Z,- yuikomajima commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739546880) at 2020-12-06 10:58 AM PST -yuikomajima,2020-12-06T19:43:40Z,- yuikomajima commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739552870) at 2020-12-06 11:43 AM PST -yuikomajima,2020-12-06T20:35:19Z,- yuikomajima commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-739559830) at 2020-12-06 12:35 PM PST -yuikomajima,2020-12-13T19:16:49Z,- yuikomajima assigned to issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-739559830) at 2020-12-13 11:16 AM PST -yuikomajima,2020-12-15T21:14:52Z,- yuikomajima unassigned from issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-741518187) at 2020-12-15 01:14 PM PST -yuikomajima,2020-12-20T22:44:54Z,- yuikomajima commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748681709) at 2020-12-20 02:44 PM PST -yuikomajima,2020-12-21T18:08:52Z,- yuikomajima commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-749117184) at 2020-12-21 10:08 AM PST -yuikomajima,2021-01-03T18:09:24Z,- yuikomajima unassigned from issue: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-01-03 10:09 AM PST -yuikomajima,2021-01-31T19:42:56Z,- yuikomajima unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-714792207) at 2021-01-31 11:42 AM PST -yuikomajima,2021-06-12T10:05:36Z,- yuikomajima closed issue as completed: [156](https://github.com/hackforla/website/issues/156#event-4881092261) at 2021-06-12 03:05 AM PDT -yujioshiro,4975,SKILLS ISSUE -yujioshiro,2023-07-18T01:54:10Z,- yujioshiro opened issue: [4975](https://github.com/hackforla/website/issues/4975) at 2023-07-17 06:54 PM PDT -yujioshiro,2023-07-18T02:26:07Z,- yujioshiro assigned to issue: [4975](https://github.com/hackforla/website/issues/4975) at 2023-07-17 07:26 PM PDT -yujioshiro,2023-07-22T02:23:24Z,- yujioshiro assigned to issue: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-21 07:23 PM PDT -yujioshiro,2023-07-22T02:30:50Z,- yujioshiro commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1646404426) at 2023-07-21 07:30 PM PDT -yujioshiro,2023-07-22T02:31:35Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1646405126) at 2023-07-21 07:31 PM PDT -yujioshiro,2023-07-22T03:03:20Z,- yujioshiro opened pull request: [5049](https://github.com/hackforla/website/pull/5049) at 2023-07-21 08:03 PM PDT -yujioshiro,2023-07-23T17:35:54Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1646900185) at 2023-07-23 10:35 AM PDT -yujioshiro,2023-07-26T05:15:06Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1650992730) at 2023-07-25 10:15 PM PDT -yujioshiro,2023-07-28T11:55:39Z,- yujioshiro pull request merged: [5049](https://github.com/hackforla/website/pull/5049#event-9947301220) at 2023-07-28 04:55 AM PDT -yujioshiro,2023-07-28T17:55:44Z,- yujioshiro assigned to issue: [4800](https://github.com/hackforla/website/issues/4800) at 2023-07-28 10:55 AM PDT -yujioshiro,2023-07-28T17:58:29Z,- yujioshiro commented on issue: [4800](https://github.com/hackforla/website/issues/4800#issuecomment-1656111645) at 2023-07-28 10:58 AM PDT -yujioshiro,2023-07-30T02:25:21Z,- yujioshiro opened pull request: [5114](https://github.com/hackforla/website/pull/5114) at 2023-07-29 07:25 PM PDT -yujioshiro,2023-08-02T05:42:34Z,- yujioshiro commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1661528081) at 2023-08-01 10:42 PM PDT -yujioshiro,2023-08-02T23:56:39Z,- yujioshiro pull request merged: [5114](https://github.com/hackforla/website/pull/5114#event-9993230473) at 2023-08-02 04:56 PM PDT -yujioshiro,2023-08-03T06:11:15Z,- yujioshiro submitted pull request review: [5128](https://github.com/hackforla/website/pull/5128#pullrequestreview-1560296694) at 2023-08-02 11:11 PM PDT -yujioshiro,2023-08-03T06:13:32Z,- yujioshiro assigned to issue: [4885](https://github.com/hackforla/website/issues/4885) at 2023-08-02 11:13 PM PDT -yujioshiro,2023-08-03T06:19:08Z,- yujioshiro commented on issue: [4885](https://github.com/hackforla/website/issues/4885#issuecomment-1663353410) at 2023-08-02 11:19 PM PDT -yujioshiro,2023-08-03T06:32:31Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1663370521) at 2023-08-02 11:32 PM PDT -yujioshiro,2023-08-05T04:49:28Z,- yujioshiro commented on issue: [4885](https://github.com/hackforla/website/issues/4885#issuecomment-1666388154) at 2023-08-04 09:49 PM PDT -yujioshiro,2023-08-05T04:53:09Z,- yujioshiro commented on pull request: [5135](https://github.com/hackforla/website/pull/5135#issuecomment-1666389318) at 2023-08-04 09:53 PM PDT -yujioshiro,2023-08-09T22:22:51Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1672242876) at 2023-08-09 03:22 PM PDT -yujioshiro,2023-08-14T21:06:33Z,- yujioshiro submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1577652166) at 2023-08-14 02:06 PM PDT -yujioshiro,2023-08-18T00:21:26Z,- yujioshiro submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1583668242) at 2023-08-17 05:21 PM PDT -yujioshiro,2023-08-19T21:56:04Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1685119125) at 2023-08-19 02:56 PM PDT -yujioshiro,2023-08-27T07:49:34Z,- yujioshiro commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1694597688) at 2023-08-27 12:49 AM PDT -yulia-kh,2020-03-22T17:47:44Z,- yulia-kh assigned to issue: [385](https://github.com/hackforla/website/issues/385) at 2020-03-22 10:47 AM PDT -yulia-kh,2020-03-24T17:32:19Z,- yulia-kh commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-603393033) at 2020-03-24 10:32 AM PDT -yulia-kh,2020-03-29T19:32:10Z,- yulia-kh opened pull request: [400](https://github.com/hackforla/website/pull/400) at 2020-03-29 12:32 PM PDT -yulia-kh,2020-03-29T19:43:32Z,- yulia-kh commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-605689081) at 2020-03-29 12:43 PM PDT -yulia-kh,2020-03-30T00:27:24Z,- yulia-kh pull request merged: [400](https://github.com/hackforla/website/pull/400#event-3176495310) at 2020-03-29 05:27 PM PDT -yulia-kh,2020-04-01T02:11:53Z,- yulia-kh assigned to issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-606327830) at 2020-03-31 07:11 PM PDT -yulia-kh,2020-04-02T05:16:17Z,- yulia-kh assigned to issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-599173019) at 2020-04-01 10:16 PM PDT -yulia-kh,2020-04-02T05:20:01Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-607627086) at 2020-04-01 10:20 PM PDT -yulia-kh,2020-04-03T23:44:30Z,- yulia-kh opened pull request: [411](https://github.com/hackforla/website/pull/411) at 2020-04-03 04:44 PM PDT -yulia-kh,2020-04-04T22:35:55Z,- yulia-kh opened pull request: [412](https://github.com/hackforla/website/pull/412) at 2020-04-04 03:35 PM PDT -yulia-kh,2020-04-05T17:20:38Z,- yulia-kh pull request merged: [411](https://github.com/hackforla/website/pull/411#event-3202748269) at 2020-04-05 10:20 AM PDT -yulia-kh,2020-04-05T18:00:53Z,- yulia-kh closed issue by PR 412: [408](https://github.com/hackforla/website/issues/408#event-3202792975) at 2020-04-05 11:00 AM PDT -yulia-kh,2020-04-05T18:00:53Z,- yulia-kh pull request merged: [412](https://github.com/hackforla/website/pull/412#event-3202792980) at 2020-04-05 11:00 AM PDT -yulia-kh,2020-04-05T18:34:03Z,- yulia-kh assigned to issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-605037600) at 2020-04-05 11:34 AM PDT -yulia-kh,2020-04-05T18:43:58Z,- yulia-kh assigned to issue: [402](https://github.com/hackforla/website/issues/402) at 2020-04-05 11:43 AM PDT -yulia-kh,2020-04-05T19:33:21Z,- yulia-kh opened pull request: [415](https://github.com/hackforla/website/pull/415) at 2020-04-05 12:33 PM PDT -yulia-kh,2020-04-05T19:36:23Z,- yulia-kh pull request merged: [415](https://github.com/hackforla/website/pull/415#event-3202889027) at 2020-04-05 12:36 PM PDT -yulia-kh,2020-04-06T19:45:00Z,- yulia-kh opened pull request: [417](https://github.com/hackforla/website/pull/417) at 2020-04-06 12:45 PM PDT -yulia-kh,2020-04-10T05:17:01Z,- yulia-kh closed issue by PR 417: [246](https://github.com/hackforla/website/issues/246#event-3220805867) at 2020-04-09 10:17 PM PDT -yulia-kh,2020-04-10T05:17:02Z,- yulia-kh pull request merged: [417](https://github.com/hackforla/website/pull/417#event-3220805873) at 2020-04-09 10:17 PM PDT -yulia-kh,2020-04-11T21:00:42Z,- yulia-kh opened pull request: [423](https://github.com/hackforla/website/pull/423) at 2020-04-11 02:00 PM PDT -yulia-kh,2020-04-12T04:07:50Z,- yulia-kh closed issue by PR 423: [402](https://github.com/hackforla/website/issues/402#event-3224750894) at 2020-04-11 09:07 PM PDT -yulia-kh,2020-04-12T04:07:50Z,- yulia-kh pull request merged: [423](https://github.com/hackforla/website/pull/423#event-3224750895) at 2020-04-11 09:07 PM PDT -yulia-kh,2020-04-12T04:57:36Z,- yulia-kh opened pull request: [424](https://github.com/hackforla/website/pull/424) at 2020-04-11 09:57 PM PDT -yulia-kh,2020-04-12T05:05:26Z,- yulia-kh commented on issue: [402](https://github.com/hackforla/website/issues/402#issuecomment-612565122) at 2020-04-11 10:05 PM PDT -yulia-kh,2020-04-12T17:00:10Z,- yulia-kh closed issue by PR 423: [402](https://github.com/hackforla/website/issues/402#event-3225268632) at 2020-04-12 10:00 AM PDT -yulia-kh,2020-04-12T17:00:10Z,- yulia-kh pull request merged: [424](https://github.com/hackforla/website/pull/424#event-3225268635) at 2020-04-12 10:00 AM PDT -yulia-kh,2020-04-12T17:56:12Z,- yulia-kh assigned to issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-12 10:56 AM PDT -yulia-kh,2020-04-15T04:06:11Z,- yulia-kh opened pull request: [440](https://github.com/hackforla/website/pull/440) at 2020-04-14 09:06 PM PDT -yulia-kh,2020-04-15T04:09:58Z,- yulia-kh pull request merged: [440](https://github.com/hackforla/website/pull/440#event-3233757525) at 2020-04-14 09:09 PM PDT -yulia-kh,2020-04-19T16:59:49Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-616182754) at 2020-04-19 09:59 AM PDT -yulia-kh,2020-04-20T20:03:49Z,- yulia-kh submitted pull request review: [455](https://github.com/hackforla/website/pull/455#pullrequestreview-396771651) at 2020-04-20 01:03 PM PDT -yulia-kh,2020-04-26T16:24:37Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-619579600) at 2020-04-26 09:24 AM PDT -yulia-kh,2020-05-03T17:19:25Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-623147350) at 2020-05-03 10:19 AM PDT -yulia-kh,2020-05-03T18:06:55Z,- yulia-kh assigned to issue: [430](https://github.com/hackforla/website/issues/430) at 2020-05-03 11:06 AM PDT -yulia-kh,2020-05-03T18:39:42Z,- yulia-kh assigned to issue: [484](https://github.com/hackforla/website/issues/484) at 2020-05-03 11:39 AM PDT -yulia-kh,2020-05-08T18:19:05Z,- yulia-kh opened pull request: [500](https://github.com/hackforla/website/pull/500) at 2020-05-08 11:19 AM PDT -yulia-kh,2020-05-08T21:11:34Z,- yulia-kh opened issue: [501](https://github.com/hackforla/website/issues/501) at 2020-05-08 02:11 PM PDT -yulia-kh,2020-05-08T21:19:25Z,- yulia-kh opened pull request: [502](https://github.com/hackforla/website/pull/502) at 2020-05-08 02:19 PM PDT -yulia-kh,2020-05-08T23:07:23Z,- yulia-kh assigned to issue: [501](https://github.com/hackforla/website/issues/501) at 2020-05-08 04:07 PM PDT -yulia-kh,2020-05-09T23:17:45Z,- yulia-kh closed issue by PR 500: [484](https://github.com/hackforla/website/issues/484#event-3319828240) at 2020-05-09 04:17 PM PDT -yulia-kh,2020-05-09T23:17:45Z,- yulia-kh pull request merged: [500](https://github.com/hackforla/website/pull/500#event-3319828243) at 2020-05-09 04:17 PM PDT -yulia-kh,2020-05-09T23:25:32Z,- yulia-kh pull request merged: [502](https://github.com/hackforla/website/pull/502#event-3319832428) at 2020-05-09 04:25 PM PDT -yulia-kh,2020-05-10T17:02:23Z,- yulia-kh commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-626358215) at 2020-05-10 10:02 AM PDT -yulia-kh,2020-05-10T17:29:40Z,- yulia-kh closed issue as completed: [228](https://github.com/hackforla/website/issues/228#event-3320527315) at 2020-05-10 10:29 AM PDT -yulia-kh,2020-05-17T06:32:02Z,- yulia-kh opened pull request: [524](https://github.com/hackforla/website/pull/524) at 2020-05-16 11:32 PM PDT -yulia-kh,2020-05-17T18:16:16Z,- yulia-kh commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629838875) at 2020-05-17 11:16 AM PDT -yulia-kh,2020-05-17T18:38:19Z,- yulia-kh assigned to issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-629839960) at 2020-05-17 11:38 AM PDT -yulia-kh,2020-05-17T20:37:36Z,- yulia-kh commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629857157) at 2020-05-17 01:37 PM PDT -yulia-kh,2020-05-24T06:26:40Z,- yulia-kh commented on pull request: [524](https://github.com/hackforla/website/pull/524#issuecomment-633186310) at 2020-05-23 11:26 PM PDT -yulia-kh,2020-05-24T15:28:42Z,- yulia-kh commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-633247902) at 2020-05-24 08:28 AM PDT -yulia-kh,2020-05-24T17:03:08Z,- yulia-kh closed issue by PR 524: [430](https://github.com/hackforla/website/issues/430#event-3368121909) at 2020-05-24 10:03 AM PDT -yulia-kh,2020-05-24T17:03:08Z,- yulia-kh pull request merged: [524](https://github.com/hackforla/website/pull/524#event-3368121911) at 2020-05-24 10:03 AM PDT -yulia-kh,2020-05-24T17:11:23Z,- yulia-kh commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-633261727) at 2020-05-24 10:11 AM PDT -yulia-kh,2020-05-24T18:01:33Z,- yulia-kh opened pull request: [536](https://github.com/hackforla/website/pull/536) at 2020-05-24 11:01 AM PDT -yulia-kh,2020-05-24T18:22:18Z,- yulia-kh assigned to issue: [534](https://github.com/hackforla/website/issues/534) at 2020-05-24 11:22 AM PDT -yulia-kh,2020-05-24T18:25:34Z,- yulia-kh assigned to issue: [535](https://github.com/hackforla/website/issues/535) at 2020-05-24 11:25 AM PDT -yulia-kh,2020-05-24T19:37:44Z,- yulia-kh commented on pull request: [537](https://github.com/hackforla/website/pull/537#issuecomment-633284363) at 2020-05-24 12:37 PM PDT -yulia-kh,2020-05-25T05:28:28Z,- yulia-kh opened pull request: [540](https://github.com/hackforla/website/pull/540) at 2020-05-24 10:28 PM PDT -yulia-kh,2020-05-25T15:37:12Z,- yulia-kh pull request merged: [540](https://github.com/hackforla/website/pull/540#event-3370659527) at 2020-05-25 08:37 AM PDT -yulia-kh,2020-05-31T01:52:37Z,- yulia-kh opened pull request: [549](https://github.com/hackforla/website/pull/549) at 2020-05-30 06:52 PM PDT -yulia-kh,2020-05-31T01:55:51Z,- yulia-kh commented on issue: [535](https://github.com/hackforla/website/issues/535#issuecomment-636408993) at 2020-05-30 06:55 PM PDT -yulia-kh,2020-05-31T17:32:42Z,- yulia-kh pull request merged: [549](https://github.com/hackforla/website/pull/549#event-3390815157) at 2020-05-31 10:32 AM PDT -yulia-kh,2020-05-31T17:34:04Z,- yulia-kh closed issue by PR 536: [472](https://github.com/hackforla/website/issues/472#event-3390816285) at 2020-05-31 10:34 AM PDT -yulia-kh,2020-05-31T17:34:04Z,- yulia-kh pull request merged: [536](https://github.com/hackforla/website/pull/536#event-3390816291) at 2020-05-31 10:34 AM PDT -yulia-kh,2020-05-31T18:21:47Z,- yulia-kh assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163759) at 2020-05-31 11:21 AM PDT -yulia-kh,2020-06-07T05:55:12Z,- yulia-kh opened pull request: [565](https://github.com/hackforla/website/pull/565) at 2020-06-06 10:55 PM PDT -yulia-kh,2020-06-07T16:21:10Z,- yulia-kh pull request merged: [565](https://github.com/hackforla/website/pull/565#event-3416774228) at 2020-06-07 09:21 AM PDT -yulia-kh,2020-06-14T16:17:22Z,- yulia-kh unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-643788074) at 2020-06-14 09:17 AM PDT -zachmyu,6332,SKILLS ISSUE -zachmyu,2024-02-21T03:28:59Z,- zachmyu opened issue: [6332](https://github.com/hackforla/website/issues/6332) at 2024-02-20 07:28 PM PST -zachmyu,2024-02-21T04:12:06Z,- zachmyu assigned to issue: [6332](https://github.com/hackforla/website/issues/6332) at 2024-02-20 08:12 PM PST -Zak234,3269,SKILLS ISSUE -Zak234,2021-06-16T02:57:59Z,- Zak234 assigned to issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-06-15 07:57 PM PDT -Zak234,2021-06-16T02:58:33Z,- Zak234 unassigned from issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-06-15 07:58 PM PDT -Zak234,2021-06-16T02:58:48Z,- Zak234 assigned to issue: [1556](https://github.com/hackforla/website/issues/1556) at 2021-06-15 07:58 PM PDT -Zak234,2021-06-16T05:54:22Z,- Zak234 opened pull request: [1751](https://github.com/hackforla/website/pull/1751) at 2021-06-15 10:54 PM PDT -Zak234,2021-06-16T15:53:05Z,- Zak234 pull request merged: [1751](https://github.com/hackforla/website/pull/1751#event-4898891713) at 2021-06-16 08:53 AM PDT -Zak234,2021-06-16T16:32:10Z,- Zak234 assigned to issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-06-16 09:32 AM PDT -Zak234,2021-06-16T23:27:51Z,- Zak234 opened pull request: [1763](https://github.com/hackforla/website/pull/1763) at 2021-06-16 04:27 PM PDT -Zak234,2021-06-17T04:24:10Z,- Zak234 pull request merged: [1763](https://github.com/hackforla/website/pull/1763#event-4901683762) at 2021-06-16 09:24 PM PDT -Zak234,2021-06-17T21:21:42Z,- Zak234 assigned to issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-861933624) at 2021-06-17 02:21 PM PDT -Zak234,2021-06-17T23:36:49Z,- Zak234 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-863627516) at 2021-06-17 04:36 PM PDT -Zak234,2021-06-18T02:30:20Z,- Zak234 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-863708492) at 2021-06-17 07:30 PM PDT -Zak234,2021-06-18T02:42:04Z,- Zak234 opened pull request: [1773](https://github.com/hackforla/website/pull/1773) at 2021-06-17 07:42 PM PDT -Zak234,2021-06-19T04:29:54Z,- Zak234 assigned to issue: [1743](https://github.com/hackforla/website/issues/1743) at 2021-06-18 09:29 PM PDT -Zak234,2021-06-22T05:31:58Z,- Zak234 pull request merged: [1773](https://github.com/hackforla/website/pull/1773#event-4920428135) at 2021-06-21 10:31 PM PDT -Zak234,2021-06-22T08:34:14Z,- Zak234 opened pull request: [1814](https://github.com/hackforla/website/pull/1814) at 2021-06-22 01:34 AM PDT -Zak234,2021-06-22T16:00:45Z,- Zak234 commented on pull request: [1773](https://github.com/hackforla/website/pull/1773#issuecomment-866116120) at 2021-06-22 09:00 AM PDT -Zak234,2021-06-22T16:32:24Z,- Zak234 submitted pull request review: [1803](https://github.com/hackforla/website/pull/1803#pullrequestreview-689748416) at 2021-06-22 09:32 AM PDT -Zak234,2021-06-22T16:33:13Z,- Zak234 submitted pull request review: [1803](https://github.com/hackforla/website/pull/1803#pullrequestreview-689749266) at 2021-06-22 09:33 AM PDT -Zak234,2021-06-23T00:43:52Z,- Zak234 submitted pull request review: [1804](https://github.com/hackforla/website/pull/1804#pullrequestreview-690108889) at 2021-06-22 05:43 PM PDT -Zak234,2021-06-23T02:04:52Z,- Zak234 submitted pull request review: [1801](https://github.com/hackforla/website/pull/1801#pullrequestreview-690149237) at 2021-06-22 07:04 PM PDT -Zak234,2021-06-23T02:21:55Z,- Zak234 submitted pull request review: [1799](https://github.com/hackforla/website/pull/1799#pullrequestreview-690155637) at 2021-06-22 07:21 PM PDT -Zak234,2021-06-23T02:31:18Z,- Zak234 submitted pull request review: [1813](https://github.com/hackforla/website/pull/1813#pullrequestreview-690159054) at 2021-06-22 07:31 PM PDT -Zak234,2021-06-23T16:58:38Z,- Zak234 pull request merged: [1773](https://github.com/hackforla/website/pull/1773#event-4930122081) at 2021-06-23 09:58 AM PDT -Zak234,2021-06-24T01:48:11Z,- Zak234 submitted pull request review: [1821](https://github.com/hackforla/website/pull/1821#pullrequestreview-691270214) at 2021-06-23 06:48 PM PDT -Zak234,2021-06-24T07:00:20Z,- Zak234 submitted pull request review: [1822](https://github.com/hackforla/website/pull/1822#pullrequestreview-691401063) at 2021-06-24 12:00 AM PDT -Zak234,2021-06-27T13:38:34Z,- Zak234 assigned to issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-27 06:38 AM PDT -Zak234,2021-06-27T13:52:13Z,- Zak234 submitted pull request review: [1832](https://github.com/hackforla/website/pull/1832#pullrequestreview-693419640) at 2021-06-27 06:52 AM PDT -Zak234,2021-06-28T07:15:36Z,- Zak234 submitted pull request review: [1831](https://github.com/hackforla/website/pull/1831#pullrequestreview-693624435) at 2021-06-28 12:15 AM PDT -Zak234,2021-06-28T23:19:34Z,- Zak234 unassigned from issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-28 04:19 PM PDT -Zak234,2021-06-29T05:17:29Z,- Zak234 submitted pull request review: [1854](https://github.com/hackforla/website/pull/1854#pullrequestreview-694598374) at 2021-06-28 10:17 PM PDT -Zak234,2021-06-29T05:22:34Z,- Zak234 assigned to issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-28 10:22 PM PDT -Zak234,2021-06-30T02:45:40Z,- Zak234 submitted pull request review: [1862](https://github.com/hackforla/website/pull/1862#pullrequestreview-695649877) at 2021-06-29 07:45 PM PDT -Zak234,2021-06-30T03:21:23Z,- Zak234 opened pull request: [1863](https://github.com/hackforla/website/pull/1863) at 2021-06-29 08:21 PM PDT -Zak234,2021-06-30T03:38:23Z,- Zak234 pull request merged: [1814](https://github.com/hackforla/website/pull/1814#event-4957070521) at 2021-06-29 08:38 PM PDT -Zak234,2021-06-30T13:45:29Z,- Zak234 submitted pull request review: [1859](https://github.com/hackforla/website/pull/1859#pullrequestreview-696182657) at 2021-06-30 06:45 AM PDT -Zak234,2021-06-30T14:16:29Z,- Zak234 submitted pull request review: [1861](https://github.com/hackforla/website/pull/1861#pullrequestreview-696222832) at 2021-06-30 07:16 AM PDT -Zak234,2021-06-30T14:19:45Z,- Zak234 commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-871447679) at 2021-06-30 07:19 AM PDT -Zak234,2021-07-02T04:24:54Z,- Zak234 submitted pull request review: [1870](https://github.com/hackforla/website/pull/1870#pullrequestreview-697812451) at 2021-07-01 09:24 PM PDT -Zak234,2021-07-04T18:43:06Z,- Zak234 commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-873640042) at 2021-07-04 11:43 AM PDT -Zak234,2021-07-06T06:36:05Z,- Zak234 pull request closed w/o merging: [1863](https://github.com/hackforla/website/pull/1863#event-4981209676) at 2021-07-05 11:36 PM PDT -Zak234,2021-07-06T07:03:10Z,- Zak234 opened pull request: [1894](https://github.com/hackforla/website/pull/1894) at 2021-07-06 12:03 AM PDT -Zak234,2021-07-07T16:11:02Z,- Zak234 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-875735217) at 2021-07-07 09:11 AM PDT -Zak234,2021-07-08T08:25:32Z,- Zak234 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-876239895) at 2021-07-08 01:25 AM PDT -Zak234,2021-07-08T08:39:45Z,- Zak234 submitted pull request review: [1903](https://github.com/hackforla/website/pull/1903#pullrequestreview-701793392) at 2021-07-08 01:39 AM PDT -Zak234,2021-07-09T16:10:51Z,- Zak234 submitted pull request review: [1882](https://github.com/hackforla/website/pull/1882#pullrequestreview-703202202) at 2021-07-09 09:10 AM PDT -Zak234,2021-07-09T23:25:30Z,- Zak234 pull request merged: [1894](https://github.com/hackforla/website/pull/1894#event-5002563017) at 2021-07-09 04:25 PM PDT -Zak234,2021-07-10T11:21:43Z,- Zak234 submitted pull request review: [1913](https://github.com/hackforla/website/pull/1913#pullrequestreview-703493428) at 2021-07-10 04:21 AM PDT -Zak234,2021-07-10T12:39:46Z,- Zak234 assigned to issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-870030263) at 2021-07-10 05:39 AM PDT -Zak234,2021-07-11T07:00:52Z,- Zak234 submitted pull request review: [1915](https://github.com/hackforla/website/pull/1915#pullrequestreview-703554061) at 2021-07-11 12:00 AM PDT -Zak234,2021-07-14T16:45:55Z,- Zak234 submitted pull request review: [1918](https://github.com/hackforla/website/pull/1918#pullrequestreview-706500893) at 2021-07-14 09:45 AM PDT -Zak234,2021-07-16T09:43:09Z,- Zak234 opened pull request: [1955](https://github.com/hackforla/website/pull/1955) at 2021-07-16 02:43 AM PDT -Zak234,2021-07-16T09:43:22Z,- Zak234 pull request closed w/o merging: [1955](https://github.com/hackforla/website/pull/1955#event-5029917506) at 2021-07-16 02:43 AM PDT -Zak234,2021-07-16T17:07:26Z,- Zak234 submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-708592625) at 2021-07-16 10:07 AM PDT -Zak234,2021-07-19T08:29:00Z,- Zak234 opened issue: [1970](https://github.com/hackforla/website/issues/1970) at 2021-07-19 01:29 AM PDT -Zak234,2021-07-21T00:46:44Z,- Zak234 commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-883800524) at 2021-07-20 05:46 PM PDT -Zak234,2021-07-22T00:35:57Z,- Zak234 submitted pull request review: [1967](https://github.com/hackforla/website/pull/1967#pullrequestreview-712291305) at 2021-07-21 05:35 PM PDT -Zak234,2021-07-25T18:14:16Z,- Zak234 commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-886238830) at 2021-07-25 11:14 AM PDT -Zak234,2021-08-02T01:04:53Z,- Zak234 submitted pull request review: [2019](https://github.com/hackforla/website/pull/2019#pullrequestreview-719722034) at 2021-08-01 06:04 PM PDT -Zak234,2021-08-04T03:36:17Z,- Zak234 commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-892335274) at 2021-08-03 08:36 PM PDT -Zak234,2021-08-04T03:36:20Z,- Zak234 closed issue as completed: [1445](https://github.com/hackforla/website/issues/1445#event-5108459279) at 2021-08-03 08:36 PM PDT -Zak234,2021-08-05T01:21:13Z,- Zak234 assigned to issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-886231967) at 2021-08-04 06:21 PM PDT -Zak234,2021-08-08T17:04:41Z,- Zak234 submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-724921329) at 2021-08-08 10:04 AM PDT -Zak234,2021-08-18T02:15:25Z,- Zak234 submitted pull request review: [2099](https://github.com/hackforla/website/pull/2099#pullrequestreview-732374187) at 2021-08-17 07:15 PM PDT -Zak234,2021-08-24T12:19:48Z,- Zak234 submitted pull request review: [2149](https://github.com/hackforla/website/pull/2149#pullrequestreview-737155167) at 2021-08-24 05:19 AM PDT -Zak234,2021-08-29T00:19:08Z,- Zak234 submitted pull request review: [2186](https://github.com/hackforla/website/pull/2186#pullrequestreview-741064881) at 2021-08-28 05:19 PM PDT -Zak234,2021-09-12T17:11:55Z,- Zak234 commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-917674857) at 2021-09-12 10:11 AM PDT -Zak234,2021-10-04T18:29:24Z,- Zak234 commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-933744149) at 2021-10-04 11:29 AM PDT -Zak234,2021-10-04T18:29:31Z,- Zak234 unassigned from issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-933744149) at 2021-10-04 11:29 AM PDT -Zak234,2022-06-20T21:41:41Z,- Zak234 opened issue: [3269](https://github.com/hackforla/website/issues/3269) at 2022-06-20 02:41 PM PDT -Zak234,2022-06-20T21:42:40Z,- Zak234 assigned to issue: [3269](https://github.com/hackforla/website/issues/3269#issuecomment-1160868535) at 2022-06-20 02:42 PM PDT -Zak234,2022-06-21T17:20:15Z,- Zak234 assigned to issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1003694297) at 2022-06-21 10:20 AM PDT -Zak234,2022-06-21T18:48:40Z,- Zak234 opened pull request: [3276](https://github.com/hackforla/website/pull/3276) at 2022-06-21 11:48 AM PDT -Zak234,2022-06-21T18:51:38Z,- Zak234 pull request closed w/o merging: [3276](https://github.com/hackforla/website/pull/3276#event-6850121798) at 2022-06-21 11:51 AM PDT -Zak234,2022-06-22T15:46:57Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1163286213) at 2022-06-22 08:46 AM PDT -Zak234,2022-06-22T18:14:38Z,- Zak234 commented on pull request: [3259](https://github.com/hackforla/website/pull/3259#issuecomment-1163455923) at 2022-06-22 11:14 AM PDT -Zak234,2022-06-22T18:19:10Z,- Zak234 submitted pull request review: [3262](https://github.com/hackforla/website/pull/3262#pullrequestreview-1015685659) at 2022-06-22 11:19 AM PDT -Zak234,2022-06-22T18:22:26Z,- Zak234 assigned to issue: [3111](https://github.com/hackforla/website/issues/3111#issuecomment-1120102481) at 2022-06-22 11:22 AM PDT -Zak234,2022-06-23T08:15:59Z,- Zak234 closed issue as completed: [2650](https://github.com/hackforla/website/issues/2650#event-6864082314) at 2022-06-23 01:15 AM PDT -Zak234,2022-06-24T15:53:45Z,- Zak234 opened pull request: [3299](https://github.com/hackforla/website/pull/3299) at 2022-06-24 08:53 AM PDT -Zak234,2022-06-25T21:15:07Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1166362607) at 2022-06-25 02:15 PM PDT -Zak234,2022-06-25T21:28:07Z,- Zak234 submitted pull request review: [3301](https://github.com/hackforla/website/pull/3301#pullrequestreview-1019353604) at 2022-06-25 02:28 PM PDT -Zak234,2022-06-26T17:27:31Z,- Zak234 submitted pull request review: [3304](https://github.com/hackforla/website/pull/3304#pullrequestreview-1019460093) at 2022-06-26 10:27 AM PDT -Zak234,2022-06-26T17:28:21Z,- Zak234 commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166595168) at 2022-06-26 10:28 AM PDT -Zak234,2022-06-26T18:50:01Z,- Zak234 opened issue: [3309](https://github.com/hackforla/website/issues/3309) at 2022-06-26 11:50 AM PDT -Zak234,2022-06-27T13:50:56Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1167379310) at 2022-06-27 06:50 AM PDT -Zak234,2022-06-27T13:56:28Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1167385702) at 2022-06-27 06:56 AM PDT -Zak234,2022-07-03T20:15:44Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1173164666) at 2022-07-03 01:15 PM PDT -Zak234,2022-07-05T18:24:07Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1175361087) at 2022-07-05 11:24 AM PDT -Zak234,2022-07-06T02:07:04Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1175695995) at 2022-07-05 07:07 PM PDT -Zak234,2022-07-06T17:03:57Z,- Zak234 opened issue: [3334](https://github.com/hackforla/website/issues/3334) at 2022-07-06 10:03 AM PDT -Zak234,2022-07-06T18:44:15Z,- Zak234 opened issue: [3335](https://github.com/hackforla/website/issues/3335) at 2022-07-06 11:44 AM PDT -Zak234,2022-07-06T18:44:57Z,- Zak234 closed issue as completed: [3335](https://github.com/hackforla/website/issues/3335#event-6945314951) at 2022-07-06 11:44 AM PDT -Zak234,2022-07-08T01:31:06Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178436845) at 2022-07-07 06:31 PM PDT -Zak234,2022-07-08T03:57:23Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178518617) at 2022-07-07 08:57 PM PDT -Zak234,2022-07-08T17:20:02Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1179209866) at 2022-07-08 10:20 AM PDT -Zak234,2022-07-09T19:19:07Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1179593711) at 2022-07-09 12:19 PM PDT -Zak234,2022-07-09T20:05:20Z,- Zak234 opened issue: [3341](https://github.com/hackforla/website/issues/3341) at 2022-07-09 01:05 PM PDT -Zak234,2022-07-10T18:12:10Z,- Zak234 pull request merged: [3299](https://github.com/hackforla/website/pull/3299#event-6965343516) at 2022-07-10 11:12 AM PDT -Zak234,2022-07-10T23:36:49Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1179824426) at 2022-07-10 04:36 PM PDT -Zak234,2022-07-11T05:40:38Z,- Zak234 opened issue: [3354](https://github.com/hackforla/website/issues/3354) at 2022-07-10 10:40 PM PDT -Zak234,2022-07-11T05:44:02Z,- Zak234 commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1179990058) at 2022-07-10 10:44 PM PDT -Zak234,2022-07-11T06:05:22Z,- Zak234 assigned to issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1063891031) at 2022-07-10 11:05 PM PDT -Zak234,2022-07-11T06:56:13Z,- Zak234 opened issue: [3355](https://github.com/hackforla/website/issues/3355) at 2022-07-10 11:56 PM PDT -Zak234,2022-07-12T01:00:13Z,- Zak234 opened issue: [3360](https://github.com/hackforla/website/issues/3360) at 2022-07-11 06:00 PM PDT -Zak234,2022-07-12T01:05:10Z,- Zak234 commented on issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1181200270) at 2022-07-11 06:05 PM PDT -Zak234,2022-07-12T04:10:29Z,- Zak234 commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1181291808) at 2022-07-11 09:10 PM PDT -Zak234,2022-07-13T07:24:14Z,- Zak234 commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1182861196) at 2022-07-13 12:24 AM PDT -Zak234,2022-07-14T04:00:33Z,- Zak234 commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1183959313) at 2022-07-13 09:00 PM PDT -Zak234,2022-07-14T18:14:15Z,- Zak234 submitted pull request review: [3348](https://github.com/hackforla/website/pull/3348#pullrequestreview-1039298662) at 2022-07-14 11:14 AM PDT -Zak234,2022-07-15T07:52:21Z,- Zak234 submitted pull request review: [3359](https://github.com/hackforla/website/pull/3359#pullrequestreview-1039931000) at 2022-07-15 12:52 AM PDT -Zak234,2022-07-16T06:10:10Z,- Zak234 commented on issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1186098381) at 2022-07-15 11:10 PM PDT -Zak234,2022-07-16T06:12:14Z,- Zak234 closed issue as completed: [2956](https://github.com/hackforla/website/issues/2956#event-7005753590) at 2022-07-15 11:12 PM PDT -Zak234,2022-07-16T06:31:06Z,- Zak234 assigned to issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-922427695) at 2022-07-15 11:31 PM PDT -Zak234,2022-07-16T06:31:40Z,- Zak234 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-1186100883) at 2022-07-15 11:31 PM PDT -Zak234,2022-07-16T07:26:13Z,- Zak234 submitted pull request review: [3373](https://github.com/hackforla/website/pull/3373#pullrequestreview-1040964768) at 2022-07-16 12:26 AM PDT -Zak234,2022-07-17T05:16:04Z,- Zak234 submitted pull request review: [3375](https://github.com/hackforla/website/pull/3375#pullrequestreview-1041070945) at 2022-07-16 10:16 PM PDT -Zak234,2022-07-17T17:01:08Z,- Zak234 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-1186572569) at 2022-07-17 10:01 AM PDT -Zak234,2022-07-19T17:07:53Z,- Zak234 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-1189343481) at 2022-07-19 10:07 AM PDT -Zak234,2022-07-20T03:20:18Z,- Zak234 opened issue: [3403](https://github.com/hackforla/website/issues/3403) at 2022-07-19 08:20 PM PDT -Zak234,2022-07-20T21:31:29Z,- Zak234 submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1045700232) at 2022-07-20 02:31 PM PDT -Zak234,2022-07-20T21:48:10Z,- Zak234 submitted pull request review: [3407](https://github.com/hackforla/website/pull/3407#pullrequestreview-1045713979) at 2022-07-20 02:48 PM PDT -Zak234,2022-07-22T22:03:25Z,- Zak234 opened pull request: [3422](https://github.com/hackforla/website/pull/3422) at 2022-07-22 03:03 PM PDT -Zak234,2022-07-23T05:29:20Z,- Zak234 submitted pull request review: [3421](https://github.com/hackforla/website/pull/3421#pullrequestreview-1048504201) at 2022-07-22 10:29 PM PDT -Zak234,2022-07-24T17:14:14Z,- Zak234 commented on pull request: [3419](https://github.com/hackforla/website/pull/3419#issuecomment-1193359385) at 2022-07-24 10:14 AM PDT -Zak234,2022-07-24T17:15:22Z,- Zak234 commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1193359601) at 2022-07-24 10:15 AM PDT -Zak234,2022-07-24T21:56:33Z,- Zak234 submitted pull request review: [3419](https://github.com/hackforla/website/pull/3419#pullrequestreview-1048690482) at 2022-07-24 02:56 PM PDT -Zak234,2022-07-24T22:05:54Z,- Zak234 submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1048691321) at 2022-07-24 03:05 PM PDT -Zak234,2022-07-25T03:02:25Z,- Zak234 submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1048764451) at 2022-07-24 08:02 PM PDT -Zak234,2022-07-25T21:02:40Z,- Zak234 commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1194626138) at 2022-07-25 02:02 PM PDT -Zak234,2022-07-25T21:24:53Z,- Zak234 closed issue as completed: [3269](https://github.com/hackforla/website/issues/3269#event-7059828842) at 2022-07-25 02:24 PM PDT -Zak234,2022-07-25T21:39:15Z,- Zak234 commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1194664720) at 2022-07-25 02:39 PM PDT -Zak234,2022-07-25T21:39:18Z,- Zak234 closed issue as completed: [3147](https://github.com/hackforla/website/issues/3147#event-7059910302) at 2022-07-25 02:39 PM PDT -Zak234,2022-07-25T23:37:07Z,- Zak234 pull request merged: [3422](https://github.com/hackforla/website/pull/3422#event-7060494199) at 2022-07-25 04:37 PM PDT -Zak234,2022-07-26T08:07:07Z,- Zak234 commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195148170) at 2022-07-26 01:07 AM PDT -Zak234,2022-07-26T08:10:38Z,- Zak234 assigned to issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-933744149) at 2022-07-26 01:10 AM PDT -Zak234,2022-07-26T17:40:28Z,- Zak234 commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195785502) at 2022-07-26 10:40 AM PDT -Zak234,2022-07-26T18:18:41Z,- Zak234 submitted pull request review: [3428](https://github.com/hackforla/website/pull/3428#pullrequestreview-1051431342) at 2022-07-26 11:18 AM PDT -Zak234,2022-07-26T18:27:49Z,- Zak234 unassigned from issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1195152097) at 2022-07-26 11:27 AM PDT -Zak234,2022-07-27T16:46:26Z,- Zak234 opened issue: [3433](https://github.com/hackforla/website/issues/3433) at 2022-07-27 09:46 AM PDT -Zak234,2022-07-27T17:59:51Z,- Zak234 assigned to issue: [3433](https://github.com/hackforla/website/issues/3433) at 2022-07-27 10:59 AM PDT -Zak234,2022-07-27T19:57:50Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1197302308) at 2022-07-27 12:57 PM PDT -Zak234,2022-07-27T20:03:53Z,- Zak234 submitted pull request review: [3430](https://github.com/hackforla/website/pull/3430#pullrequestreview-1053161705) at 2022-07-27 01:03 PM PDT -Zak234,2022-07-27T20:04:22Z,- Zak234 submitted pull request review: [3430](https://github.com/hackforla/website/pull/3430#pullrequestreview-1053162186) at 2022-07-27 01:04 PM PDT -Zak234,2022-07-27T20:05:47Z,- Zak234 closed issue by PR 3430: [2809](https://github.com/hackforla/website/issues/2809#event-7076221186) at 2022-07-27 01:05 PM PDT -Zak234,2022-07-28T01:26:26Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1197546590) at 2022-07-27 06:26 PM PDT -Zak234,2022-07-28T17:49:22Z,- Zak234 opened issue: [3437](https://github.com/hackforla/website/issues/3437) at 2022-07-28 10:49 AM PDT -Zak234,2022-07-29T02:45:24Z,- Zak234 commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1198823969) at 2022-07-28 07:45 PM PDT -Zak234,2022-07-29T02:45:54Z,- Zak234 commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198824173) at 2022-07-28 07:45 PM PDT -Zak234,2022-07-29T11:33:02Z,- Zak234 submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1055429909) at 2022-07-29 04:33 AM PDT -Zak234,2022-07-29T11:44:03Z,- Zak234 commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1199182426) at 2022-07-29 04:44 AM PDT -Zak234,2022-07-31T05:09:18Z,- Zak234 submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1056516011) at 2022-07-30 10:09 PM PDT -Zak234,2022-07-31T17:17:32Z,- Zak234 submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1056596252) at 2022-07-31 10:17 AM PDT -Zak234,2022-08-01T05:46:04Z,- Zak234 submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1056766319) at 2022-07-31 10:46 PM PDT -Zak234,2022-08-01T06:01:04Z,- Zak234 submitted pull request review: [3441](https://github.com/hackforla/website/pull/3441#pullrequestreview-1056775883) at 2022-07-31 11:01 PM PDT -Zak234,2022-08-01T06:02:00Z,- Zak234 commented on pull request: [3445](https://github.com/hackforla/website/pull/3445#issuecomment-1200746547) at 2022-07-31 11:02 PM PDT -Zak234,2022-08-01T20:28:09Z,- Zak234 submitted pull request review: [3445](https://github.com/hackforla/website/pull/3445#pullrequestreview-1057818156) at 2022-08-01 01:28 PM PDT -Zak234,2022-08-01T20:28:34Z,- Zak234 closed issue by PR 3445: [2818](https://github.com/hackforla/website/issues/2818#event-7104649860) at 2022-08-01 01:28 PM PDT -Zak234,2022-08-01T21:04:47Z,- Zak234 submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1057861068) at 2022-08-01 02:04 PM PDT -Zak234,2022-08-01T23:22:36Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1201833458) at 2022-08-01 04:22 PM PDT -Zak234,2022-08-02T00:12:25Z,- Zak234 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1201862193) at 2022-08-01 05:12 PM PDT -Zak234,2022-08-02T00:38:36Z,- Zak234 submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1057990524) at 2022-08-01 05:38 PM PDT -Zak234,2022-08-03T02:43:50Z,- Zak234 submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1059632582) at 2022-08-02 07:43 PM PDT -Zak234,2022-08-03T04:00:19Z,- Zak234 submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1059668110) at 2022-08-02 09:00 PM PDT -Zak234,2022-08-03T04:08:19Z,- Zak234 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1203459468) at 2022-08-02 09:08 PM PDT -Zak234,2022-08-03T18:54:36Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1204353365) at 2022-08-03 11:54 AM PDT -Zak234,2022-08-04T23:03:02Z,- Zak234 submitted pull request review: [3450](https://github.com/hackforla/website/pull/3450#pullrequestreview-1062681590) at 2022-08-04 04:03 PM PDT -Zak234,2022-08-04T23:19:55Z,- Zak234 commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1205869507) at 2022-08-04 04:19 PM PDT -Zak234,2022-08-05T02:24:04Z,- Zak234 submitted pull request review: [3450](https://github.com/hackforla/website/pull/3450#pullrequestreview-1062772669) at 2022-08-04 07:24 PM PDT -Zak234,2022-08-05T08:06:52Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1206166610) at 2022-08-05 01:06 AM PDT -Zak234,2022-08-05T08:17:10Z,- Zak234 commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1206175916) at 2022-08-05 01:17 AM PDT -Zak234,2022-08-05T08:54:16Z,- Zak234 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1206210470) at 2022-08-05 01:54 AM PDT -Zak234,2022-08-05T20:11:11Z,- Zak234 submitted pull request review: [3451](https://github.com/hackforla/website/pull/3451#pullrequestreview-1063894188) at 2022-08-05 01:11 PM PDT -Zak234,2022-08-05T20:48:20Z,- Zak234 commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1206852928) at 2022-08-05 01:48 PM PDT -Zak234,2022-08-05T20:56:41Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1206857686) at 2022-08-05 01:56 PM PDT -Zak234,2022-08-07T17:27:46Z,- Zak234 submitted pull request review: [3451](https://github.com/hackforla/website/pull/3451#pullrequestreview-1064450185) at 2022-08-07 10:27 AM PDT -Zak234,2022-08-12T02:32:03Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1212672092) at 2022-08-11 07:32 PM PDT -Zak234,2022-08-13T05:41:23Z,- Zak234 submitted pull request review: [3463](https://github.com/hackforla/website/pull/3463#pullrequestreview-1071906294) at 2022-08-12 10:41 PM PDT -Zak234,2022-08-13T05:57:30Z,- Zak234 submitted pull request review: [3466](https://github.com/hackforla/website/pull/3466#pullrequestreview-1071907442) at 2022-08-12 10:57 PM PDT -Zak234,2022-08-13T09:41:24Z,- Zak234 submitted pull request review: [3456](https://github.com/hackforla/website/pull/3456#pullrequestreview-1071936278) at 2022-08-13 02:41 AM PDT -Zak234,2022-08-13T20:18:32Z,- Zak234 submitted pull request review: [3467](https://github.com/hackforla/website/pull/3467#pullrequestreview-1071994456) at 2022-08-13 01:18 PM PDT -Zak234,2022-08-13T20:18:44Z,- Zak234 closed issue by PR 3467: [3404](https://github.com/hackforla/website/issues/3404#event-7183763920) at 2022-08-13 01:18 PM PDT -Zak234,2022-08-13T20:19:34Z,- Zak234 commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1214216953) at 2022-08-13 01:19 PM PDT -Zak234,2022-08-14T20:58:50Z,- Zak234 submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1072126337) at 2022-08-14 01:58 PM PDT -Zak234,2022-08-17T16:54:43Z,- Zak234 closed issue by PR 3470: [3355](https://github.com/hackforla/website/issues/3355#event-7207732556) at 2022-08-17 09:54 AM PDT -Zak234,2022-08-17T16:56:22Z,- Zak234 commented on pull request: [3471](https://github.com/hackforla/website/pull/3471#issuecomment-1218272785) at 2022-08-17 09:56 AM PDT -Zak234,2022-08-17T17:03:45Z,- Zak234 submitted pull request review: [3471](https://github.com/hackforla/website/pull/3471#pullrequestreview-1076119704) at 2022-08-17 10:03 AM PDT -Zak234,2022-08-17T17:04:54Z,- Zak234 commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1218280606) at 2022-08-17 10:04 AM PDT -Zak234,2022-08-21T18:27:38Z,- Zak234 submitted pull request review: [3471](https://github.com/hackforla/website/pull/3471#pullrequestreview-1079704219) at 2022-08-21 11:27 AM PDT -Zak234,2022-08-21T18:30:18Z,- Zak234 submitted pull request review: [3471](https://github.com/hackforla/website/pull/3471#pullrequestreview-1079704472) at 2022-08-21 11:30 AM PDT -Zak234,2022-08-21T18:31:22Z,- Zak234 closed issue by PR 3471: [2198](https://github.com/hackforla/website/issues/2198#event-7228040529) at 2022-08-21 11:31 AM PDT -Zak234,2022-08-22T19:14:19Z,- Zak234 submitted pull request review: [3480](https://github.com/hackforla/website/pull/3480#pullrequestreview-1081019660) at 2022-08-22 12:14 PM PDT -Zak234,2022-08-23T11:06:17Z,- Zak234 submitted pull request review: [3480](https://github.com/hackforla/website/pull/3480#pullrequestreview-1081923141) at 2022-08-23 04:06 AM PDT -Zak234,2022-08-24T18:05:50Z,- Zak234 submitted pull request review: [3482](https://github.com/hackforla/website/pull/3482#pullrequestreview-1084292734) at 2022-08-24 11:05 AM PDT -Zak234,2022-08-24T18:06:14Z,- Zak234 closed issue by PR 3482: [2820](https://github.com/hackforla/website/issues/2820#event-7253199884) at 2022-08-24 11:06 AM PDT -Zak234,2022-08-28T13:25:51Z,- Zak234 commented on pull request: [3495](https://github.com/hackforla/website/pull/3495#issuecomment-1229456861) at 2022-08-28 06:25 AM PDT -Zak234,2022-08-28T17:00:12Z,- Zak234 submitted pull request review: [3495](https://github.com/hackforla/website/pull/3495#pullrequestreview-1087888859) at 2022-08-28 10:00 AM PDT -Zak234,2022-08-28T17:00:20Z,- Zak234 closed issue by PR 3495: [3494](https://github.com/hackforla/website/issues/3494#event-7273745635) at 2022-08-28 10:00 AM PDT -Zak234,2022-08-28T17:10:33Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1229510217) at 2022-08-28 10:10 AM PDT -Zak234,2022-11-16T17:39:41Z,- Zak234 unassigned from issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1251582503) at 2022-11-16 09:39 AM PST -Zanderfeldt,6346,SKILLS ISSUE -Zanderfeldt,2024-02-21T03:35:26Z,- Zanderfeldt opened issue: [6334](https://github.com/hackforla/website/issues/6334) at 2024-02-20 07:35 PM PST -Zanderfeldt,2024-02-21T03:35:48Z,- Zanderfeldt opened issue: [6336](https://github.com/hackforla/website/issues/6336) at 2024-02-20 07:35 PM PST -Zanderfeldt,2024-02-21T03:54:23Z,- Zanderfeldt opened issue: [6346](https://github.com/hackforla/website/issues/6346) at 2024-02-20 07:54 PM PST -Zanderfeldt,2024-02-21T04:10:42Z,- Zanderfeldt assigned to issue: [6346](https://github.com/hackforla/website/issues/6346) at 2024-02-20 08:10 PM PST -Zanderfeldt,2024-03-01T20:43:31Z,- Zanderfeldt assigned to issue: [6377](https://github.com/hackforla/website/issues/6377#issuecomment-1963228835) at 2024-03-01 12:43 PM PST -Zanderfeldt,2024-03-01T20:49:48Z,- Zanderfeldt commented on issue: [6377](https://github.com/hackforla/website/issues/6377#issuecomment-1973900285) at 2024-03-01 12:49 PM PST -Zanderfeldt,2024-03-01T20:50:49Z,- Zanderfeldt commented on issue: [6346](https://github.com/hackforla/website/issues/6346#issuecomment-1973901404) at 2024-03-01 12:50 PM PST -Zanderfeldt,2024-03-01T22:09:03Z,- Zanderfeldt opened pull request: [6406](https://github.com/hackforla/website/pull/6406) at 2024-03-01 02:09 PM PST -Zanderfeldt,2024-03-02T08:13:58Z,- Zanderfeldt pull request merged: [6406](https://github.com/hackforla/website/pull/6406#event-11986837538) at 2024-03-02 12:13 AM PST -Zanderfeldt,2024-03-11T17:27:57Z,- Zanderfeldt assigned to issue: [6093](https://github.com/hackforla/website/issues/6093) at 2024-03-11 10:27 AM PDT -Zanderfeldt,2024-03-14T00:22:04Z,- Zanderfeldt commented on issue: [6093](https://github.com/hackforla/website/issues/6093#issuecomment-1996176177) at 2024-03-13 05:22 PM PDT -Zanderfeldt,2024-04-05T19:31:32Z,- Zanderfeldt closed issue as completed: [6346](https://github.com/hackforla/website/issues/6346#event-12378501833) at 2024-04-05 12:31 PM PDT -Zanderfeldt,2024-05-28T20:42:07Z,- Zanderfeldt assigned to issue: [6863](https://github.com/hackforla/website/issues/6863) at 2024-05-28 01:42 PM PDT -Zanderfeldt,2024-05-28T21:10:22Z,- Zanderfeldt opened pull request: [6905](https://github.com/hackforla/website/pull/6905) at 2024-05-28 02:10 PM PDT -Zanderfeldt,2024-06-06T19:51:05Z,- Zanderfeldt pull request closed w/o merging: [6905](https://github.com/hackforla/website/pull/6905#event-13071587843) at 2024-06-06 12:51 PM PDT -Zanderfeldt,2024-06-06T19:51:19Z,- Zanderfeldt unassigned from issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2153288969) at 2024-06-06 12:51 PM PDT -zempo,2020-03-12T02:53:17Z,- zempo assigned to issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-590679408) at 2020-03-11 07:53 PM PDT -zempo,2020-03-12T03:20:13Z,- zempo opened pull request: [360](https://github.com/hackforla/website/pull/360) at 2020-03-11 08:20 PM PDT -zempo,2020-03-12T03:21:15Z,- zempo closed issue by PR 360: [308](https://github.com/hackforla/website/issues/308#event-3121261263) at 2020-03-11 08:21 PM PDT -zempo,2020-03-12T03:21:15Z,- zempo pull request merged: [360](https://github.com/hackforla/website/pull/360#event-3121261270) at 2020-03-11 08:21 PM PDT -zempo,2020-03-12T03:30:44Z,- zempo opened issue: [361](https://github.com/hackforla/website/issues/361) at 2020-03-11 08:30 PM PDT -zempo,2020-03-12T03:44:11Z,- zempo assigned to issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-597991342) at 2020-03-11 08:44 PM PDT -zempo,2020-03-12T06:21:37Z,- zempo opened pull request: [362](https://github.com/hackforla/website/pull/362) at 2020-03-11 11:21 PM PDT -zempo,2020-03-12T19:05:46Z,- zempo pull request closed w/o merging: [362](https://github.com/hackforla/website/pull/362#event-3124149321) at 2020-03-12 12:05 PM PDT -zempo,2020-03-12T19:17:22Z,- zempo closed issue by PR 426: [252](https://github.com/hackforla/website/issues/252#event-3124183711) at 2020-03-12 12:17 PM PDT -zempo,2020-03-16T00:38:45Z,- zempo opened pull request: [369](https://github.com/hackforla/website/pull/369) at 2020-03-15 05:38 PM PDT -zempo,2020-03-16T02:57:24Z,- zempo pull request closed w/o merging: [369](https://github.com/hackforla/website/pull/369#event-3131394240) at 2020-03-15 07:57 PM PDT -zempo,2020-03-29T18:02:43Z,- zempo assigned to issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-29 11:02 AM PDT -zempo,2020-03-29T22:04:34Z,- zempo commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-605708921) at 2020-03-29 03:04 PM PDT -zempo,2020-03-30T19:17:12Z,- zempo assigned to issue: [386](https://github.com/hackforla/website/issues/386) at 2020-03-30 12:17 PM PDT -zempo,2020-03-30T22:21:19Z,- zempo commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-606282063) at 2020-03-30 03:21 PM PDT -zempo,2020-03-30T22:52:16Z,- zempo commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-606293101) at 2020-03-30 03:52 PM PDT -zempo,2020-03-31T02:55:59Z,- zempo opened pull request: [407](https://github.com/hackforla/website/pull/407) at 2020-03-30 07:55 PM PDT -zempo,2020-03-31T02:57:34Z,- zempo pull request merged: [407](https://github.com/hackforla/website/pull/407#event-3181311493) at 2020-03-30 07:57 PM PDT -zempo,2020-03-31T03:04:42Z,- zempo commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-606370773) at 2020-03-30 08:04 PM PDT -zempo,2020-04-12T17:09:42Z,- zempo unassigned from issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-12 10:09 AM PDT -zempo,2020-05-24T18:25:08Z,- zempo unassigned from issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-633255772) at 2020-05-24 11:25 AM PDT -zempo,2020-07-26T19:49:50Z,- zempo unassigned from issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-606293101) at 2020-07-26 12:49 PM PDT -Zhu-Joseph,2021-07-30T21:48:00Z,- Zhu-Joseph assigned to issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-886247545) at 2021-07-30 02:48 PM PDT -Zhu-Joseph,2021-07-31T02:58:11Z,- Zhu-Joseph commented on issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-890281424) at 2021-07-30 07:58 PM PDT -Zhu-Joseph,2021-08-03T08:14:49Z,- Zhu-Joseph opened pull request: [2038](https://github.com/hackforla/website/pull/2038) at 2021-08-03 01:14 AM PDT -Zhu-Joseph,2021-08-05T00:04:29Z,- Zhu-Joseph pull request merged: [2038](https://github.com/hackforla/website/pull/2038#event-5114409164) at 2021-08-04 05:04 PM PDT -Zhu-Joseph,2021-08-09T23:59:39Z,- Zhu-Joseph assigned to issue: [2063](https://github.com/hackforla/website/issues/2063) at 2021-08-09 04:59 PM PDT -Zhu-Joseph,2021-08-10T00:15:10Z,- Zhu-Joseph commented on issue: [2063](https://github.com/hackforla/website/issues/2063#issuecomment-895635286) at 2021-08-09 05:15 PM PDT -Zhu-Joseph,2021-08-11T01:00:47Z,- Zhu-Joseph opened pull request: [2098](https://github.com/hackforla/website/pull/2098) at 2021-08-10 06:00 PM PDT -Zhu-Joseph,2021-08-11T04:35:33Z,- Zhu-Joseph assigned to issue: [2043](https://github.com/hackforla/website/issues/2043) at 2021-08-10 09:35 PM PDT -Zhu-Joseph,2021-08-11T04:38:09Z,- Zhu-Joseph commented on issue: [2043](https://github.com/hackforla/website/issues/2043#issuecomment-896494408) at 2021-08-10 09:38 PM PDT -Zhu-Joseph,2021-08-11T20:12:13Z,- Zhu-Joseph commented on issue: [2063](https://github.com/hackforla/website/issues/2063#issuecomment-897119325) at 2021-08-11 01:12 PM PDT -Zhu-Joseph,2021-08-14T17:43:59Z,- Zhu-Joseph pull request merged: [2098](https://github.com/hackforla/website/pull/2098#event-5158958358) at 2021-08-14 10:43 AM PDT -Zhu-Joseph,2021-08-17T07:39:56Z,- Zhu-Joseph submitted pull request review: [2119](https://github.com/hackforla/website/pull/2119#pullrequestreview-731433492) at 2021-08-17 12:39 AM PDT -Zhu-Joseph,2021-08-18T01:25:14Z,- Zhu-Joseph opened pull request: [2126](https://github.com/hackforla/website/pull/2126) at 2021-08-17 06:25 PM PDT -Zhu-Joseph,2021-08-18T05:54:23Z,- Zhu-Joseph commented on pull request: [2126](https://github.com/hackforla/website/pull/2126#issuecomment-900831694) at 2021-08-17 10:54 PM PDT -Zhu-Joseph,2021-08-19T02:58:16Z,- Zhu-Joseph pull request merged: [2126](https://github.com/hackforla/website/pull/2126#event-5178084648) at 2021-08-18 07:58 PM PDT -Zhu-Joseph,2021-08-27T07:35:55Z,- Zhu-Joseph assigned to issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-906971985) at 2021-08-27 12:35 AM PDT -Zhu-Joseph,2021-08-27T07:54:05Z,- Zhu-Joseph unassigned from issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-906971985) at 2021-08-27 12:54 AM PDT -Zhu-Joseph,2021-08-27T18:08:16Z,- Zhu-Joseph commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-907381202) at 2021-08-27 11:08 AM PDT -Zhu-Joseph,2021-08-27T18:41:16Z,- Zhu-Joseph assigned to issue: [2085](https://github.com/hackforla/website/issues/2085) at 2021-08-27 11:41 AM PDT -Zhu-Joseph,2021-08-27T23:42:19Z,- Zhu-Joseph commented on issue: [2085](https://github.com/hackforla/website/issues/2085#issuecomment-907527521) at 2021-08-27 04:42 PM PDT -Zhu-Joseph,2021-08-28T04:13:56Z,- Zhu-Joseph opened pull request: [2195](https://github.com/hackforla/website/pull/2195) at 2021-08-27 09:13 PM PDT -Zhu-Joseph,2021-08-31T03:33:15Z,- Zhu-Joseph pull request merged: [2195](https://github.com/hackforla/website/pull/2195#event-5229810913) at 2021-08-30 08:33 PM PDT -Zhu-Joseph,2021-09-22T06:10:04Z,- Zhu-Joseph assigned to issue: [2095](https://github.com/hackforla/website/issues/2095) at 2021-09-21 11:10 PM PDT -Zhu-Joseph,2021-09-22T06:53:56Z,- Zhu-Joseph commented on issue: [2095](https://github.com/hackforla/website/issues/2095#issuecomment-924639192) at 2021-09-21 11:53 PM PDT -Zhu-Joseph,2021-09-22T07:19:49Z,- Zhu-Joseph opened pull request: [2300](https://github.com/hackforla/website/pull/2300) at 2021-09-22 12:19 AM PDT -Zhu-Joseph,2021-09-24T04:06:45Z,- Zhu-Joseph pull request merged: [2300](https://github.com/hackforla/website/pull/2300#event-5353649382) at 2021-09-23 09:06 PM PDT -Zhu-Joseph,2021-09-24T16:52:05Z,- Zhu-Joseph assigned to issue: [2275](https://github.com/hackforla/website/issues/2275) at 2021-09-24 09:52 AM PDT -Zhu-Joseph,2021-09-24T16:59:22Z,- Zhu-Joseph commented on issue: [2275](https://github.com/hackforla/website/issues/2275#issuecomment-926782998) at 2021-09-24 09:59 AM PDT -Zhu-Joseph,2021-09-24T17:16:26Z,- Zhu-Joseph opened pull request: [2305](https://github.com/hackforla/website/pull/2305) at 2021-09-24 10:16 AM PDT -Zhu-Joseph,2021-09-29T23:53:17Z,- Zhu-Joseph commented on pull request: [2305](https://github.com/hackforla/website/pull/2305#issuecomment-930629246) at 2021-09-29 04:53 PM PDT -Zhu-Joseph,2021-10-01T21:44:09Z,- Zhu-Joseph pull request merged: [2305](https://github.com/hackforla/website/pull/2305#event-5396933713) at 2021-10-01 02:44 PM PDT -Zhu-Joseph,2021-10-10T00:38:31Z,- Zhu-Joseph assigned to issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-931964234) at 2021-10-09 05:38 PM PDT -Zhu-Joseph,2021-10-10T01:39:27Z,- Zhu-Joseph commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-939389478) at 2021-10-09 06:39 PM PDT -Zhu-Joseph,2021-10-10T01:50:33Z,- Zhu-Joseph opened pull request: [2352](https://github.com/hackforla/website/pull/2352) at 2021-10-09 06:50 PM PDT -Zhu-Joseph,2021-10-12T05:28:20Z,- Zhu-Joseph commented on pull request: [2352](https://github.com/hackforla/website/pull/2352#issuecomment-940676868) at 2021-10-11 10:28 PM PDT -Zhu-Joseph,2021-10-14T23:27:59Z,- Zhu-Joseph commented on pull request: [2352](https://github.com/hackforla/website/pull/2352#issuecomment-943837479) at 2021-10-14 04:27 PM PDT -Zhu-Joseph,2021-10-19T23:10:05Z,- Zhu-Joseph pull request merged: [2352](https://github.com/hackforla/website/pull/2352#event-5488373198) at 2021-10-19 04:10 PM PDT -Zhu-Joseph,2021-11-02T07:51:38Z,- Zhu-Joseph assigned to issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-950064963) at 2021-11-02 12:51 AM PDT -Zhu-Joseph,2021-11-02T07:53:10Z,- Zhu-Joseph commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-957176560) at 2021-11-02 12:53 AM PDT -Zhu-Joseph,2021-11-22T17:22:44Z,- Zhu-Joseph commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-975751514) at 2021-11-22 09:22 AM PST -Zhu-Joseph,2021-12-17T17:58:14Z,- Zhu-Joseph unassigned from issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-996913257) at 2021-12-17 09:58 AM PST -ziniwang,4638,SKILLS ISSUE -ziniwang,2023-05-09T04:24:31Z,- ziniwang opened issue: [4638](https://github.com/hackforla/website/issues/4638) at 2023-05-08 09:24 PM PDT -ziniwang,2023-05-09T04:28:39Z,- ziniwang assigned to issue: [4638](https://github.com/hackforla/website/issues/4638) at 2023-05-08 09:28 PM PDT -ziniwang,2023-05-26T09:19:54Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1564084630) at 2023-05-26 02:19 AM PDT -ziniwang,2023-06-09T09:14:30Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1584242454) at 2023-06-09 02:14 AM PDT -ziniwang,2023-07-04T03:29:33Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1619416660) at 2023-07-03 08:29 PM PDT -ziniwang,2023-07-14T03:17:41Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1635206568) at 2023-07-13 08:17 PM PDT -ziniwang,2023-07-20T02:07:12Z,- ziniwang assigned to issue: [4919](https://github.com/hackforla/website/issues/4919) at 2023-07-19 07:07 PM PDT -ziniwang,2023-07-20T10:43:45Z,- ziniwang commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1643691982) at 2023-07-20 03:43 AM PDT -ziniwang,2023-07-21T07:42:16Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1645128185) at 2023-07-21 12:42 AM PDT -ziniwang,2023-07-21T07:49:22Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1645157114) at 2023-07-21 12:49 AM PDT -ziniwang,2023-07-23T14:58:54Z,- ziniwang opened pull request: [5052](https://github.com/hackforla/website/pull/5052) at 2023-07-23 07:58 AM PDT -ziniwang,2023-07-26T23:45:36Z,- ziniwang pull request merged: [5052](https://github.com/hackforla/website/pull/5052#event-9929784683) at 2023-07-26 04:45 PM PDT -ziniwang,2023-07-27T10:36:01Z,- ziniwang closed issue as completed: [4638](https://github.com/hackforla/website/issues/4638#event-9934201569) at 2023-07-27 03:36 AM PDT -ziniwang,2023-07-28T20:53:07Z,- ziniwang assigned to issue: [4913](https://github.com/hackforla/website/issues/4913) at 2023-07-28 01:53 PM PDT -ziniwang,2023-07-29T14:11:51Z,- ziniwang commented on issue: [4913](https://github.com/hackforla/website/issues/4913#issuecomment-1656739694) at 2023-07-29 07:11 AM PDT -ziniwang,2023-08-01T17:44:14Z,- ziniwang opened pull request: [5128](https://github.com/hackforla/website/pull/5128) at 2023-08-01 10:44 AM PDT -ziniwang,2023-08-05T22:21:17Z,- ziniwang pull request merged: [5128](https://github.com/hackforla/website/pull/5128#event-10016174387) at 2023-08-05 03:21 PM PDT -zip-dazie,5721,SKILLS ISSUE -zip-dazie,2023-10-17T02:36:57Z,- zip-dazie opened issue: [5721](https://github.com/hackforla/website/issues/5721) at 2023-10-16 07:36 PM PDT -zip-dazie,2023-10-17T02:37:05Z,- zip-dazie assigned to issue: [5721](https://github.com/hackforla/website/issues/5721) at 2023-10-16 07:37 PM PDT -zip-dazie,2023-10-27T05:55:48Z,- zip-dazie assigned to issue: [5757](https://github.com/hackforla/website/issues/5757) at 2023-10-26 10:55 PM PDT -zip-dazie,2023-10-27T05:58:23Z,- zip-dazie commented on issue: [5757](https://github.com/hackforla/website/issues/5757#issuecomment-1782342344) at 2023-10-26 10:58 PM PDT -zip-dazie,2023-11-01T23:43:00Z,- zip-dazie opened pull request: [5823](https://github.com/hackforla/website/pull/5823) at 2023-11-01 04:43 PM PDT -zip-dazie,2023-11-01T23:48:32Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1789843920) at 2023-11-01 04:48 PM PDT -zip-dazie,2023-11-01T23:50:34Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1789845282) at 2023-11-01 04:50 PM PDT -zip-dazie,2023-11-20T02:52:10Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1818146694) at 2023-11-19 06:52 PM PST -zip-dazie,2023-11-20T03:01:59Z,- zip-dazie pull request closed w/o merging: [5823](https://github.com/hackforla/website/pull/5823#event-11005701771) at 2023-11-19 07:01 PM PST -zip-dazie,2023-11-20T04:32:47Z,- zip-dazie opened pull request: [5923](https://github.com/hackforla/website/pull/5923) at 2023-11-19 08:32 PM PST -zip-dazie,2023-11-28T18:08:32Z,- zip-dazie pull request merged: [5923](https://github.com/hackforla/website/pull/5923#event-11087080426) at 2023-11-28 10:08 AM PST -zip-dazie,2023-12-09T17:29:04Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1848589284) at 2023-12-09 09:29 AM PST -zip-dazie,2023-12-09T19:47:13Z,- zip-dazie assigned to issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1730119414) at 2023-12-09 11:47 AM PST -zip-dazie,2023-12-09T19:50:06Z,- zip-dazie commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1848645931) at 2023-12-09 11:50 AM PST -zip-dazie,2023-12-23T20:57:50Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1868369042) at 2023-12-23 12:57 PM PST -zip-dazie,2023-12-23T21:00:20Z,- zip-dazie commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1868369323) at 2023-12-23 01:00 PM PST -zip-dazie,2024-01-03T20:34:45Z,- zip-dazie opened pull request: [6055](https://github.com/hackforla/website/pull/6055) at 2024-01-03 12:34 PM PST -zip-dazie,2024-01-05T22:34:25Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1879338080) at 2024-01-05 02:34 PM PST -zip-dazie,2024-01-05T22:41:23Z,- zip-dazie assigned to issue: [5981](https://github.com/hackforla/website/issues/5981) at 2024-01-05 02:41 PM PST -zip-dazie,2024-01-05T22:45:36Z,- zip-dazie commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1879347937) at 2024-01-05 02:45 PM PST -zip-dazie,2024-01-23T08:06:07Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1905490744) at 2024-01-23 12:06 AM PST -zip-dazie,2024-01-30T07:20:06Z,- zip-dazie commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1916216983) at 2024-01-29 11:20 PM PST -zip-dazie,2024-02-08T08:06:46Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1933547577) at 2024-02-08 12:06 AM PST -zip-dazie,2024-02-08T08:08:02Z,- zip-dazie commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1933550796) at 2024-02-08 12:08 AM PST -zip-dazie,2024-02-08T08:08:09Z,- zip-dazie unassigned from issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1933550796) at 2024-02-08 12:08 AM PST -zip-dazie,2024-02-08T08:08:09Z,- zip-dazie unassigned from issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1933550796) at 2024-02-08 12:08 AM PST -zip-dazie,2024-02-18T08:00:49Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1950995853) at 2024-02-18 12:00 AM PST -zip-dazie,2024-02-21T18:21:12Z,- zip-dazie unassigned from issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1957612929) at 2024-02-21 10:21 AM PST -zip-dazie,2024-02-21T18:23:16Z,- zip-dazie pull request closed w/o merging: [6055](https://github.com/hackforla/website/pull/6055#event-11880433043) at 2024-02-21 10:23 AM PST -zkamenov,6348,SKILLS ISSUE -zkamenov,2024-02-21T04:18:41Z,- zkamenov opened issue: [6348](https://github.com/hackforla/website/issues/6348) at 2024-02-20 08:18 PM PST -zkamenov,2024-02-21T04:23:50Z,- zkamenov assigned to issue: [6348](https://github.com/hackforla/website/issues/6348) at 2024-02-20 08:23 PM PST -zkamenov,2024-02-25T19:01:20Z,- zkamenov assigned to issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1957748732) at 2024-02-25 11:01 AM PST -zkamenov,2024-02-25T19:15:33Z,- zkamenov commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1963033852) at 2024-02-25 11:15 AM PST -zkamenov,2024-02-26T07:54:59Z,- zkamenov opened pull request: [6379](https://github.com/hackforla/website/pull/6379) at 2024-02-25 11:54 PM PST -zkamenov,2024-02-26T08:08:51Z,- zkamenov commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-1963533917) at 2024-02-26 12:08 AM PST -zkamenov,2024-02-28T18:31:38Z,- zkamenov pull request merged: [6379](https://github.com/hackforla/website/pull/6379#event-11955706448) at 2024-02-28 10:31 AM PST -zkamenov,2024-06-20T15:04:41Z,- zkamenov commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2180933086) at 2024-06-20 08:04 AM PDT -zkamenov,2024-06-20T16:15:51Z,- zkamenov commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2181075429) at 2024-06-20 09:15 AM PDT -zkamenov,2024-06-20T17:14:51Z,- zkamenov submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2130968552) at 2024-06-20 10:14 AM PDT -zkamenov,2024-06-21T20:58:44Z,- zkamenov closed issue as completed: [6348](https://github.com/hackforla/website/issues/6348#event-13247099302) at 2024-06-21 01:58 PM PDT -zkamenov,2024-07-02T18:48:33Z,- zkamenov commented on pull request: [7077](https://github.com/hackforla/website/pull/7077#issuecomment-2204067363) at 2024-07-02 11:48 AM PDT -zkamenov,2024-07-02T20:07:44Z,- zkamenov submitted pull request review: [7077](https://github.com/hackforla/website/pull/7077#pullrequestreview-2154763372) at 2024-07-02 01:07 PM PDT -zvidmarb,8192,SKILLS ISSUE -zvidmarb,2025-06-17T04:17:09Z,- zvidmarb opened issue: [8192](https://github.com/hackforla/website/issues/8192) at 2025-06-16 09:17 PM PDT -zvidmarb,2025-06-17T04:17:09Z,- zvidmarb assigned to issue: [8192](https://github.com/hackforla/website/issues/8192) at 2025-06-16 09:17 PM PDT -zvidmarb,2025-06-18T21:33:50Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2985755642) at 2025-06-18 02:33 PM PDT -zvidmarb,2025-06-22T17:46:21Z,- zvidmarb assigned to issue: [8003](https://github.com/hackforla/website/issues/8003) at 2025-06-22 10:46 AM PDT -zvidmarb,2025-06-22T18:00:30Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2994350896) at 2025-06-22 11:00 AM PDT -zvidmarb,2025-06-24T02:08:44Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2998531397) at 2025-06-23 07:08 PM PDT -zvidmarb,2025-06-24T07:14:29Z,- zvidmarb commented on issue: [8003](https://github.com/hackforla/website/issues/8003#issuecomment-2999107882) at 2025-06-24 12:14 AM PDT -zvidmarb,2025-06-24T07:50:54Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2999209858) at 2025-06-24 12:50 AM PDT -zvidmarb,2025-06-24T08:13:33Z,- zvidmarb opened pull request: [8203](https://github.com/hackforla/website/pull/8203) at 2025-06-24 01:13 AM PDT -zvidmarb,2025-06-30T01:41:03Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3017472487) at 2025-06-29 06:41 PM PDT -zvidmarb,2025-07-02T16:15:19Z,- zvidmarb pull request merged: [8203](https://github.com/hackforla/website/pull/8203#event-18435454122) at 2025-07-02 09:15 AM PDT -zvidmarb,2025-07-18T19:08:02Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3090438980) at 2025-07-18 12:08 PM PDT -zvidmarb,2025-07-18T19:14:17Z,- zvidmarb assigned to issue: [7417](https://github.com/hackforla/website/issues/7417) at 2025-07-18 12:14 PM PDT -zvidmarb,2025-07-18T19:23:16Z,- zvidmarb commented on issue: [7417](https://github.com/hackforla/website/issues/7417#issuecomment-3090497113) at 2025-07-18 12:23 PM PDT -zvidmarb,2025-07-22T22:50:27Z,- zvidmarb opened pull request: [8250](https://github.com/hackforla/website/pull/8250) at 2025-07-22 03:50 PM PDT -zvidmarb,2025-07-25T19:48:06Z,- zvidmarb pull request merged: [8250](https://github.com/hackforla/website/pull/8250#event-18820532701) at 2025-07-25 12:48 PM PDT -zvidmarb,2025-08-06T18:57:24Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3161250356) at 2025-08-06 11:57 AM PDT -zzhoje,2563,SKILLS ISSUE -zzhoje,2021-12-08T22:40:05Z,- zzhoje opened issue: [2563](https://github.com/hackforla/website/issues/2563) at 2021-12-08 02:40 PM PST -zzhoje,2021-12-08T22:49:04Z,- zzhoje assigned to issue: [2563](https://github.com/hackforla/website/issues/2563#issuecomment-989285350) at 2021-12-08 02:49 PM PST -zzhoje,2021-12-08T23:06:07Z,- zzhoje commented on issue: [2563](https://github.com/hackforla/website/issues/2563#issuecomment-989299047) at 2021-12-08 03:06 PM PST -zzhoje,2021-12-08T23:06:07Z,- zzhoje closed issue as completed: [2563](https://github.com/hackforla/website/issues/2563#event-5737130748) at 2021-12-08 03:06 PM PST -zzhoje,2021-12-11T15:41:25Z,- zzhoje assigned to issue: [2066](https://github.com/hackforla/website/issues/2066) at 2021-12-11 07:41 AM PST -zzhoje,2021-12-12T16:26:54Z,- zzhoje commented on issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-991927959) at 2021-12-12 08:26 AM PST -zzhoje,2021-12-14T00:14:59Z,- zzhoje assigned to issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-993026293) at 2021-12-13 04:14 PM PST -zzhoje,2021-12-14T01:38:56Z,- zzhoje commented on issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-993074700) at 2021-12-13 05:38 PM PST -zzhoje,2021-12-14T01:40:43Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-993075483) at 2021-12-13 05:40 PM PST -zzhoje,2021-12-21T00:08:41Z,- zzhoje assigned to issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-997465987) at 2021-12-20 04:08 PM PST -zzhoje,2021-12-21T00:30:29Z,- zzhoje unassigned from issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-993074700) at 2021-12-20 04:30 PM PST -zzhoje,2021-12-21T01:07:17Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-998385932) at 2021-12-20 05:07 PM PST -zzhoje,2021-12-29T02:56:46Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1002371597) at 2021-12-28 06:56 PM PST -zzhoje,2022-01-03T20:48:46Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1004349612) at 2022-01-03 12:48 PM PST -zzhoje,2022-01-10T03:51:24Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1008521414) at 2022-01-09 07:51 PM PST -zzhoje,2022-01-24T01:19:17Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1019626593) at 2022-01-23 05:19 PM PST -zzhoje,2022-04-10T15:42:10Z,- zzhoje commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1094299544) at 2022-04-10 08:42 AM PDT -zzhoje,2023-06-04T18:58:24Z,- zzhoje unassigned from issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2023-06-04 11:58 AM PDT -,2020-06-14T17:16:47Z,- null assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-14 10:16 AM PDT -,2020-06-14T17:27:17Z,- null assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637915401) at 2020-06-14 10:27 AM PDT -,2020-06-14T17:51:36Z,- null assigned to issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-14 10:51 AM PDT -,2020-06-14T23:18:51Z,- null unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637915401) at 2020-06-14 04:18 PM PDT -,2020-06-16T03:10:55Z,- null commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-644505162) at 2020-06-15 08:10 PM PDT -,2020-06-16T13:53:58Z,- null commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-644781114) at 2020-06-16 06:53 AM PDT -,2020-06-18T01:57:18Z,- null commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-645722296) at 2020-06-17 06:57 PM PDT -,2020-06-18T02:01:06Z,- null commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-645723391) at 2020-06-17 07:01 PM PDT -,2020-06-20T17:10:17Z,- null assigned to issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-643792946) at 2020-06-20 10:10 AM PDT -,2020-06-20T17:10:21Z,- null assigned to issue: [558](https://github.com/hackforla/website/issues/558) at 2020-06-20 10:10 AM PDT -,2020-06-20T17:40:09Z,- null opened pull request: [578](https://github.com/hackforla/website/pull/578) at 2020-06-20 10:40 AM PDT -,2020-06-20T17:47:50Z,- null opened issue: [579](https://github.com/hackforla/website/issues/579) at 2020-06-20 10:47 AM PDT -,2020-06-20T17:47:57Z,- null assigned to issue: [579](https://github.com/hackforla/website/issues/579) at 2020-06-20 10:47 AM PDT -,2020-06-20T18:08:23Z,- null opened pull request: [580](https://github.com/hackforla/website/pull/580) at 2020-06-20 11:08 AM PDT -,2020-06-21T00:30:38Z,- null commented on issue: [579](https://github.com/hackforla/website/issues/579#issuecomment-647061688) at 2020-06-20 05:30 PM PDT -,2020-06-21T04:12:09Z,- null pull request merged: [580](https://github.com/hackforla/website/pull/580#event-3465190437) at 2020-06-20 09:12 PM PDT -,2020-06-21T04:22:01Z,- null pull request closed w/o merging: [578](https://github.com/hackforla/website/pull/578#event-3465194558) at 2020-06-20 09:22 PM PDT -,2020-06-21T04:49:33Z,- null opened pull request: [581](https://github.com/hackforla/website/pull/581) at 2020-06-20 09:49 PM PDT -,2020-06-21T16:40:43Z,- null assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647151991) at 2020-06-21 09:40 AM PDT -,2020-06-21T16:42:14Z,- null assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647152171) at 2020-06-21 09:42 AM PDT -,2020-06-21T17:11:11Z,- null unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-21 10:11 AM PDT -,2020-06-21T18:42:19Z,- null commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-647165586) at 2020-06-21 11:42 AM PDT -,2020-06-22T00:03:23Z,- null assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647158781) at 2020-06-21 05:03 PM PDT -,2020-06-22T00:36:57Z,- null pull request merged: [581](https://github.com/hackforla/website/pull/581#event-3466004033) at 2020-06-21 05:36 PM PDT -,2020-06-24T03:25:35Z,- null opened pull request: [584](https://github.com/hackforla/website/pull/584) at 2020-06-23 08:25 PM PDT -,2020-06-24T15:22:48Z,- null commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-648888401) at 2020-06-24 08:22 AM PDT -,2020-06-24T15:27:22Z,- null commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-648891372) at 2020-06-24 08:27 AM PDT -,2020-06-24T17:16:15Z,- null commented on pull request: [584](https://github.com/hackforla/website/pull/584#issuecomment-648951912) at 2020-06-24 10:16 AM PDT -,2020-06-24T17:21:32Z,- null commented on pull request: [584](https://github.com/hackforla/website/pull/584#issuecomment-648954718) at 2020-06-24 10:21 AM PDT -,2020-06-24T17:40:34Z,- null commented on pull request: [584](https://github.com/hackforla/website/pull/584#issuecomment-648965345) at 2020-06-24 10:40 AM PDT -,2020-06-24T18:30:26Z,- null pull request merged: [584](https://github.com/hackforla/website/pull/584#event-3478776740) at 2020-06-24 11:30 AM PDT -,2020-06-24T18:53:34Z,- null opened pull request: [586](https://github.com/hackforla/website/pull/586) at 2020-06-24 11:53 AM PDT -,2020-06-24T19:59:55Z,- null pull request merged: [586](https://github.com/hackforla/website/pull/586#event-3479117883) at 2020-06-24 12:59 PM PDT -,2020-06-24T23:55:05Z,- null commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-649134379) at 2020-06-24 04:55 PM PDT -,2020-06-27T23:09:37Z,- null commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-650646357) at 2020-06-27 04:09 PM PDT -,2020-06-28T17:09:28Z,- null unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-650646357) at 2020-06-28 10:09 AM PDT -,2020-06-28T18:18:10Z,- null unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647158781) at 2020-06-28 11:18 AM PDT -,2020-06-28T18:21:09Z,- null assigned to issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640707386) at 2020-06-28 11:21 AM PDT -,2020-06-30T01:32:47Z,- null opened pull request: [590](https://github.com/hackforla/website/pull/590) at 2020-06-29 06:32 PM PDT -,2020-06-30T02:47:14Z,- null pull request merged: [590](https://github.com/hackforla/website/pull/590#event-3495451997) at 2020-06-29 07:47 PM PDT -,2020-07-03T20:44:50Z,- null commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653673302) at 2020-07-03 01:44 PM PDT -,2020-07-04T18:16:07Z,- null commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-653796264) at 2020-07-04 11:16 AM PDT -,2020-07-06T03:57:57Z,- null commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-654002025) at 2020-07-05 08:57 PM PDT -,2020-07-06T04:20:51Z,- null commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-654006688) at 2020-07-05 09:20 PM PDT -,2020-07-06T04:20:51Z,- null closed issue by PR 590: [559](https://github.com/hackforla/website/issues/559#event-3514147810) at 2020-07-05 09:20 PM PDT -,2020-07-06T16:08:13Z,- null assigned to issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-650800803) at 2020-07-06 09:08 AM PDT -,2020-07-12T00:10:43Z,- null commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-657151568) at 2020-07-11 05:10 PM PDT -,2020-07-12T15:49:20Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-657240184) at 2020-07-12 08:49 AM PDT -,2020-07-12T20:29:17Z,- null commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-657271212) at 2020-07-12 01:29 PM PDT -,2020-07-19T16:26:53Z,- null commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-660671817) at 2020-07-19 09:26 AM PDT -,2020-07-19T16:27:25Z,- null unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653918886) at 2020-07-19 09:27 AM PDT -,2020-07-23T16:56:27Z,- null commented on pull request: [623](https://github.com/hackforla/website/pull/623#issuecomment-663118488) at 2020-07-23 09:56 AM PDT -,2020-07-26T00:19:36Z,- null commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-663919745) at 2020-07-25 05:19 PM PDT -,2020-07-26T17:13:04Z,- null commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-664015325) at 2020-07-26 10:13 AM PDT -,2020-07-26T18:09:50Z,- null opened pull request: [641](https://github.com/hackforla/website/pull/641) at 2020-07-26 11:09 AM PDT -,2020-07-26T19:48:29Z,- null pull request merged: [641](https://github.com/hackforla/website/pull/641#event-3587355613) at 2020-07-26 12:48 PM PDT -,2020-07-27T22:51:06Z,- null opened pull request: [648](https://github.com/hackforla/website/pull/648) at 2020-07-27 03:51 PM PDT -,2020-07-27T23:03:43Z,- null pull request merged: [648](https://github.com/hackforla/website/pull/648#event-3591953113) at 2020-07-27 04:03 PM PDT -,2020-07-27T23:11:04Z,- null opened pull request: [649](https://github.com/hackforla/website/pull/649) at 2020-07-27 04:11 PM PDT -,2020-07-27T23:19:12Z,- null opened pull request: [650](https://github.com/hackforla/website/pull/650) at 2020-07-27 04:19 PM PDT -,2020-07-27T23:20:05Z,- null pull request closed w/o merging: [649](https://github.com/hackforla/website/pull/649#event-3591986812) at 2020-07-27 04:20 PM PDT -,2020-07-27T23:22:29Z,- null pull request merged: [650](https://github.com/hackforla/website/pull/650#event-3591992127) at 2020-07-27 04:22 PM PDT -,2020-08-02T16:45:03Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-667697071) at 2020-08-02 09:45 AM PDT -,2020-08-16T16:50:36Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-674549916) at 2020-08-16 09:50 AM PDT -,2020-08-16T17:49:14Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-674556277) at 2020-08-16 10:49 AM PDT -,2020-08-17T03:29:29Z,- null opened pull request: [685](https://github.com/hackforla/website/pull/685) at 2020-08-16 08:29 PM PDT -,2020-08-21T03:49:24Z,- null assigned to issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666923790) at 2020-08-20 08:49 PM PDT -,2020-08-21T04:27:54Z,- null opened pull request: [694](https://github.com/hackforla/website/pull/694) at 2020-08-20 09:27 PM PDT -,2020-08-22T21:17:08Z,- null pull request merged: [694](https://github.com/hackforla/website/pull/694#event-3682331982) at 2020-08-22 02:17 PM PDT -,2020-08-23T17:01:26Z,- null commented on pull request: [685](https://github.com/hackforla/website/pull/685#issuecomment-678798525) at 2020-08-23 10:01 AM PDT -,2020-08-23T17:07:57Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-678799257) at 2020-08-23 10:07 AM PDT -,2020-08-23T17:55:27Z,- null assigned to issue: [684](https://github.com/hackforla/website/issues/684) at 2020-08-23 10:55 AM PDT -,2020-08-23T17:58:30Z,- null assigned to issue: [695](https://github.com/hackforla/website/issues/695) at 2020-08-23 10:58 AM PDT -,2020-08-30T16:49:15Z,- null opened pull request: [713](https://github.com/hackforla/website/pull/713) at 2020-08-30 09:49 AM PDT -,2020-08-30T16:50:18Z,- null commented on issue: [684](https://github.com/hackforla/website/issues/684#issuecomment-683443353) at 2020-08-30 09:50 AM PDT -,2020-08-30T17:04:30Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-683444848) at 2020-08-30 10:04 AM PDT -,2020-08-30T18:41:47Z,- null assigned to issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-30 11:41 AM PDT -,2020-08-30T18:44:13Z,- null unassigned from issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-30 11:44 AM PDT -,2020-09-06T16:54:46Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-687840608) at 2020-09-06 09:54 AM PDT -,2020-09-06T17:57:21Z,- null commented on issue: [684](https://github.com/hackforla/website/issues/684#issuecomment-687855879) at 2020-09-06 10:57 AM PDT -,2020-09-07T01:18:56Z,- null opened pull request: [721](https://github.com/hackforla/website/pull/721) at 2020-09-06 06:18 PM PDT -,2020-09-07T01:20:19Z,- null commented on pull request: [721](https://github.com/hackforla/website/pull/721#issuecomment-687963922) at 2020-09-06 06:20 PM PDT -,2020-09-07T01:25:59Z,- null commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-687966053) at 2020-09-06 06:25 PM PDT -,2020-09-07T01:27:14Z,- null commented on pull request: [685](https://github.com/hackforla/website/pull/685#issuecomment-687966508) at 2020-09-06 06:27 PM PDT -,2020-09-07T01:27:14Z,- null pull request closed w/o merging: [685](https://github.com/hackforla/website/pull/685#event-3734819051) at 2020-09-06 06:27 PM PDT -,2020-09-07T01:47:31Z,- null commented on issue: [684](https://github.com/hackforla/website/issues/684#issuecomment-687973030) at 2020-09-06 06:47 PM PDT -,2020-09-07T18:13:15Z,- null pull request merged: [721](https://github.com/hackforla/website/pull/721#event-3738110633) at 2020-09-07 11:13 AM PDT -,2020-09-09T22:08:11Z,- null pull request merged: [713](https://github.com/hackforla/website/pull/713#event-3748024075) at 2020-09-09 03:08 PM PDT -,2020-09-13T17:20:42Z,- null opened pull request: [729](https://github.com/hackforla/website/pull/729) at 2020-09-13 10:20 AM PDT -,2020-09-13T18:55:43Z,- null pull request merged: [729](https://github.com/hackforla/website/pull/729#event-3760703044) at 2020-09-13 11:55 AM PDT -,2020-09-13T20:24:08Z,- null reopened pull request: [729](https://github.com/hackforla/website/pull/729#event-3760703044) at 2020-09-13 01:24 PM PDT -,2020-09-13T20:29:16Z,- null commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-691721095) at 2020-09-13 01:29 PM PDT -,2020-09-16T19:30:19Z,- null commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-693619613) at 2020-09-16 12:30 PM PDT -,2020-09-16T19:34:47Z,- null commented on pull request: [729](https://github.com/hackforla/website/pull/729#issuecomment-693621779) at 2020-09-16 12:34 PM PDT -,2020-09-20T17:22:55Z,- null pull request merged: [729](https://github.com/hackforla/website/pull/729#event-3786258836) at 2020-09-20 10:22 AM PDT -,2020-10-16T13:21:01Z,- null opened pull request: [786](https://github.com/hackforla/website/pull/786) at 2020-10-16 06:21 AM PDT -,2020-10-22T21:30:09Z,- null pull request closed w/o merging: [786](https://github.com/hackforla/website/pull/786#event-3911223893) at 2020-10-22 02:30 PM PDT -,2021-06-09T02:17:24Z,- null commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857318532) at 2021-06-08 07:17 PM PDT -,2021-06-12T20:03:53Z,- null commented on issue: [1727](https://github.com/hackforla/website/issues/1727#issuecomment-860102212) at 2021-06-12 01:03 PM PDT -,2021-06-12T20:05:06Z,- null commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-860102354) at 2021-06-12 01:05 PM PDT -,2021-06-12T20:36:29Z,- null commented on issue: [1607](https://github.com/hackforla/website/issues/1607#issuecomment-860105598) at 2021-06-12 01:36 PM PDT -,2021-06-12T20:37:09Z,- null commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-860105662) at 2021-06-12 01:37 PM PDT -,2021-06-12T22:31:03Z,- null commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-860121310) at 2021-06-12 03:31 PM PDT -,2021-06-13T16:03:50Z,- null commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-860234130) at 2021-06-13 09:03 AM PDT -,2021-06-16T01:57:28Z,- null commented on issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861957050) at 2021-06-15 06:57 PM PDT -,2021-06-16T19:24:17Z,- null commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862651565) at 2021-06-16 12:24 PM PDT -,2021-06-24T20:36:47Z,- null commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-867935062) at 2021-06-24 01:36 PM PDT -,2021-06-28T20:26:31Z,- null commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-870014882) at 2021-06-28 01:26 PM PDT -,2021-06-28T20:39:57Z,- null commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-870025354) at 2021-06-28 01:39 PM PDT -,2021-06-28T20:41:49Z,- null commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-870026572) at 2021-06-28 01:41 PM PDT -,2021-06-28T20:47:23Z,- null commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-870030056) at 2021-06-28 01:47 PM PDT -,2021-06-28T20:48:05Z,- null commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-870030482) at 2021-06-28 01:48 PM PDT -,2021-06-28T20:54:55Z,- null commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-870034571) at 2021-06-28 01:54 PM PDT -,2021-06-28T21:55:04Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-870070680) at 2021-06-28 02:55 PM PDT -,2021-06-28T21:57:49Z,- null commented on issue: [1558](https://github.com/hackforla/website/issues/1558#issuecomment-870071998) at 2021-06-28 02:57 PM PDT -,2021-06-28T22:00:27Z,- null commented on issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-870073281) at 2021-06-28 03:00 PM PDT -,2021-06-28T22:01:10Z,- null commented on issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-870073641) at 2021-06-28 03:01 PM PDT -,2021-06-28T22:02:04Z,- null commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-870074181) at 2021-06-28 03:02 PM PDT -,2021-06-28T22:03:14Z,- null commented on issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-870074857) at 2021-06-28 03:03 PM PDT -,2021-06-28T22:04:03Z,- null commented on issue: [1717](https://github.com/hackforla/website/issues/1717#issuecomment-870075300) at 2021-06-28 03:04 PM PDT -,2021-06-28T22:08:42Z,- null commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-870078036) at 2021-06-28 03:08 PM PDT -,2021-06-28T22:09:35Z,- null commented on issue: [1743](https://github.com/hackforla/website/issues/1743#issuecomment-870078596) at 2021-06-28 03:09 PM PDT -,2021-06-28T22:13:17Z,- null commented on issue: [1829](https://github.com/hackforla/website/issues/1829#issuecomment-870080636) at 2021-06-28 03:13 PM PDT -,2021-06-28T22:14:39Z,- null commented on issue: [1598](https://github.com/hackforla/website/issues/1598#issuecomment-870081377) at 2021-06-28 03:14 PM PDT -,2021-06-28T22:18:48Z,- null commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-870083730) at 2021-06-28 03:18 PM PDT -,2021-06-28T22:20:52Z,- null commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-870084891) at 2021-06-28 03:20 PM PDT -,2021-06-28T22:26:52Z,- null commented on issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-870087706) at 2021-06-28 03:26 PM PDT -,2021-07-04T16:35:39Z,- null commented on issue: [1856](https://github.com/hackforla/website/issues/1856#issuecomment-873622500) at 2021-07-04 09:35 AM PDT -,2021-07-04T16:37:54Z,- null commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-873622797) at 2021-07-04 09:37 AM PDT -,2021-07-04T16:41:58Z,- null commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-873623332) at 2021-07-04 09:41 AM PDT -,2021-07-04T16:43:54Z,- null commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-873623580) at 2021-07-04 09:43 AM PDT -,2021-07-04T16:44:38Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-873623670) at 2021-07-04 09:44 AM PDT -,2021-07-04T16:47:35Z,- null commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-873624053) at 2021-07-04 09:47 AM PDT -,2021-07-04T16:51:40Z,- null commented on issue: [1835](https://github.com/hackforla/website/issues/1835#issuecomment-873624618) at 2021-07-04 09:51 AM PDT -,2021-07-06T18:50:27Z,- null commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-875001536) at 2021-07-06 11:50 AM PDT -,2021-07-10T10:14:39Z,- null commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-877612141) at 2021-07-10 03:14 AM PDT -,2021-07-10T10:15:40Z,- null commented on issue: [1877](https://github.com/hackforla/website/issues/1877#issuecomment-877612308) at 2021-07-10 03:15 AM PDT -,2021-07-10T10:16:25Z,- null commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-877612423) at 2021-07-10 03:16 AM PDT -,2021-07-10T10:17:32Z,- null commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-877612556) at 2021-07-10 03:17 AM PDT -,2021-07-10T10:18:06Z,- null commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-877612646) at 2021-07-10 03:18 AM PDT -,2021-07-10T10:18:55Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877612760) at 2021-07-10 03:18 AM PDT -,2021-07-10T10:21:57Z,- null commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-877613213) at 2021-07-10 03:21 AM PDT -,2021-07-10T10:22:38Z,- null commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-877613326) at 2021-07-10 03:22 AM PDT -,2021-07-10T10:23:05Z,- null commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-877613396) at 2021-07-10 03:23 AM PDT -,2021-07-10T10:26:08Z,- null commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-877613826) at 2021-07-10 03:26 AM PDT -,2021-07-10T10:33:42Z,- null commented on issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-877614955) at 2021-07-10 03:33 AM PDT -,2021-07-10T10:35:27Z,- null commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-877615188) at 2021-07-10 03:35 AM PDT -,2021-07-17T10:49:53Z,- null commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-881875787) at 2021-07-17 03:49 AM PDT -,2021-07-17T15:49:39Z,- null commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-881917934) at 2021-07-17 08:49 AM PDT -,2021-07-18T18:53:54Z,- null commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-882101739) at 2021-07-18 11:53 AM PDT -,2021-07-18T18:55:05Z,- null commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-882101881) at 2021-07-18 11:55 AM PDT -,2021-07-18T18:59:39Z,- null commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-882102438) at 2021-07-18 11:59 AM PDT -,2021-07-18T19:00:34Z,- null commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-882102554) at 2021-07-18 12:00 PM PDT -,2021-07-18T19:03:03Z,- null commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-882102899) at 2021-07-18 12:03 PM PDT -,2021-07-18T19:04:10Z,- null commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-882103051) at 2021-07-18 12:04 PM PDT -,2021-07-19T20:27:22Z,- null commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-882837460) at 2021-07-19 01:27 PM PDT -,2021-07-19T20:27:47Z,- null commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-882837687) at 2021-07-19 01:27 PM PDT -,2021-07-19T20:29:44Z,- null commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-882838788) at 2021-07-19 01:29 PM PDT -,2021-07-19T20:30:28Z,- null commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-882839179) at 2021-07-19 01:30 PM PDT -,2021-07-21T19:53:38Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-884455779) at 2021-07-21 12:53 PM PDT -,2021-07-21T19:53:59Z,- null commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-884456017) at 2021-07-21 12:53 PM PDT -,2021-07-21T19:54:23Z,- null commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-884456289) at 2021-07-21 12:54 PM PDT -,2021-07-23T15:46:19Z,- null commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-885730090) at 2021-07-23 08:46 AM PDT -,2021-07-25T18:40:08Z,- null commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-886241548) at 2021-07-25 11:40 AM PDT -,2021-07-27T00:30:13Z,- null commented on issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-887120097) at 2021-07-26 05:30 PM PDT -,2021-07-29T22:06:32Z,- null commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-889491236) at 2021-07-29 03:06 PM PDT -,2021-07-30T21:48:26Z,- null commented on issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-890172306) at 2021-07-30 02:48 PM PDT -,2021-07-31T05:21:56Z,- null commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-890293613) at 2021-07-30 10:21 PM PDT -,2021-08-01T17:28:58Z,- null commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-890558644) at 2021-08-01 10:28 AM PDT -,2021-08-01T17:29:54Z,- null commented on issue: [1974](https://github.com/hackforla/website/issues/1974#issuecomment-890558738) at 2021-08-01 10:29 AM PDT -,2021-08-01T23:11:43Z,- null commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-890602954) at 2021-08-01 04:11 PM PDT -,2021-08-06T14:53:56Z,- null commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-894316452) at 2021-08-06 07:53 AM PDT -,2021-08-06T14:53:58Z,- null commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-894316474) at 2021-08-06 07:53 AM PDT -,2021-08-06T14:54:02Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-894316510) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:04Z,- null commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-894316540) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:08Z,- null commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-894316593) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:11Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-894316623) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:13Z,- null commented on issue: [2040](https://github.com/hackforla/website/issues/2040#issuecomment-894316651) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:16Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-894316703) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:18Z,- null commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-894316727) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:20Z,- null commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-894316747) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:25Z,- null commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-894316788) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:27Z,- null commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-894316809) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:29Z,- null commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-894316836) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:32Z,- null commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-894316865) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:35Z,- null commented on issue: [1948](https://github.com/hackforla/website/issues/1948#issuecomment-894316896) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:37Z,- null commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-894316917) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:40Z,- null commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-894316944) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:42Z,- null commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-894316968) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:45Z,- null commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-894317013) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:48Z,- null commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-894317047) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:50Z,- null commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-894317067) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:52Z,- null commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-894317100) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:54Z,- null commented on issue: [2020](https://github.com/hackforla/website/issues/2020#issuecomment-894317120) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:54:56Z,- null commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-894317139) at 2021-08-06 07:54 AM PDT -,2021-08-06T14:55:00Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-894317177) at 2021-08-06 07:55 AM PDT -,2021-08-06T14:55:08Z,- null commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-894317263) at 2021-08-06 07:55 AM PDT -,2021-08-06T14:55:10Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-894317280) at 2021-08-06 07:55 AM PDT -,2021-08-06T14:55:12Z,- null commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-894317307) at 2021-08-06 07:55 AM PDT -,2021-08-06T14:55:14Z,- null commented on issue: [2023](https://github.com/hackforla/website/issues/2023#issuecomment-894317325) at 2021-08-06 07:55 AM PDT -,2021-08-06T14:55:16Z,- null commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-894317348) at 2021-08-06 07:55 AM PDT -,2021-08-11T04:00:09Z,- null commented on issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-896480552) at 2021-08-10 09:00 PM PDT -,2021-08-12T06:08:35Z,- null commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-897374340) at 2021-08-11 11:08 PM PDT -,2021-08-12T22:52:21Z,- null commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-898022213) at 2021-08-12 03:52 PM PDT -,2021-08-13T07:10:25Z,- null commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-898241030) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:29Z,- null commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-898241071) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:33Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-898241100) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:36Z,- null commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-898241116) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:39Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-898241137) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:46Z,- null commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-898241209) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:49Z,- null commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-898241228) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:52Z,- null commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-898241252) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:10:58Z,- null commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-898241308) at 2021-08-13 12:10 AM PDT -,2021-08-13T07:11:02Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-898241339) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:05Z,- null commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-898241373) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:09Z,- null commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-898241417) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:12Z,- null commented on issue: [1984](https://github.com/hackforla/website/issues/1984#issuecomment-898241437) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:18Z,- null commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-898241496) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:22Z,- null commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-898241531) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:25Z,- null commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-898241550) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:28Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-898241578) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:32Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-898241602) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:34Z,- null commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-898241630) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:40Z,- null commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-898241689) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:47Z,- null commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-898241741) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:11:50Z,- null commented on issue: [1975](https://github.com/hackforla/website/issues/1975#issuecomment-898241774) at 2021-08-13 12:11 AM PDT -,2021-08-13T07:12:00Z,- null commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-898241860) at 2021-08-13 12:12 AM PDT -,2021-08-13T07:12:03Z,- null commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-898241885) at 2021-08-13 12:12 AM PDT -,2021-08-13T07:12:07Z,- null commented on issue: [2068](https://github.com/hackforla/website/issues/2068#issuecomment-898241911) at 2021-08-13 12:12 AM PDT -,2021-08-13T07:12:12Z,- null commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-898241948) at 2021-08-13 12:12 AM PDT -,2021-08-13T07:12:17Z,- null commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-898241998) at 2021-08-13 12:12 AM PDT -,2021-08-13T16:38:14Z,- null commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-898586624) at 2021-08-13 09:38 AM PDT -,2021-08-13T18:05:05Z,- null commented on issue: [2109](https://github.com/hackforla/website/issues/2109#issuecomment-898632244) at 2021-08-13 11:05 AM PDT -,2021-08-14T18:20:28Z,- null commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-898940848) at 2021-08-14 11:20 AM PDT -,2021-08-18T03:41:23Z,- null assigned to issue: [1563](https://github.com/hackforla/website/issues/1563) at 2021-08-17 08:41 PM PDT -,2021-08-19T22:59:30Z,- null commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-902306108) at 2021-08-19 03:59 PM PDT -,2021-08-19T23:13:17Z,- null commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-902312404) at 2021-08-19 04:13 PM PDT -,2021-08-20T07:02:31Z,- null commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-902480093) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:34Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-902480135) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:36Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-902480160) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:40Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-902480195) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:42Z,- null commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902480214) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:44Z,- null commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-902480235) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:48Z,- null commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-902480286) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:50Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-902480302) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:53Z,- null commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-902480318) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:02:58Z,- null commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-902480364) at 2021-08-20 12:02 AM PDT -,2021-08-20T07:03:00Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-902480396) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:06Z,- null commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-902480438) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:07Z,- null commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-902480461) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:10Z,- null commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-902480489) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:12Z,- null commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-902480507) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:14Z,- null commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-902480527) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:16Z,- null commented on issue: [2068](https://github.com/hackforla/website/issues/2068#issuecomment-902480548) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:18Z,- null commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-902480567) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:25Z,- null commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-902480636) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:27Z,- null commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-902480651) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:28Z,- null commented on issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-902480662) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:30Z,- null commented on issue: [2109](https://github.com/hackforla/website/issues/2109#issuecomment-902480683) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:32Z,- null commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-902480709) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:34Z,- null commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-902480738) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:36Z,- null commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-902480760) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:38Z,- null commented on issue: [1562](https://github.com/hackforla/website/issues/1562#issuecomment-902480780) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:41Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-902480815) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:42Z,- null commented on issue: [2092](https://github.com/hackforla/website/issues/2092#issuecomment-902480832) at 2021-08-20 12:03 AM PDT -,2021-08-20T07:03:44Z,- null commented on issue: [2026](https://github.com/hackforla/website/issues/2026#issuecomment-902480850) at 2021-08-20 12:03 AM PDT -,2021-08-20T17:55:00Z,- null commented on issue: [2146](https://github.com/hackforla/website/issues/2146#issuecomment-902859968) at 2021-08-20 10:55 AM PDT -,2021-08-21T18:03:44Z,- null commented on issue: [2153](https://github.com/hackforla/website/issues/2153#issuecomment-903153947) at 2021-08-21 11:03 AM PDT -,2021-08-22T16:55:20Z,- null commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-903298279) at 2021-08-22 09:55 AM PDT -,2021-08-22T17:04:08Z,- null commented on issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-903299359) at 2021-08-22 10:04 AM PDT -,2021-08-22T20:03:53Z,- null commented on issue: [2163](https://github.com/hackforla/website/issues/2163#issuecomment-903323141) at 2021-08-22 01:03 PM PDT -,2021-08-23T06:16:23Z,- null commented on issue: [2165](https://github.com/hackforla/website/issues/2165#issuecomment-903475840) at 2021-08-22 11:16 PM PDT -,2021-08-24T14:09:41Z,- null commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-904676976) at 2021-08-24 07:09 AM PDT -,2021-08-24T18:22:09Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-904871690) at 2021-08-24 11:22 AM PDT -,2021-08-25T00:11:05Z,- null commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-905058023) at 2021-08-24 05:11 PM PDT -,2021-08-25T18:08:43Z,- null commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-905759753) at 2021-08-25 11:08 AM PDT -,2021-08-27T06:57:11Z,- null commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-906971985) at 2021-08-26 11:57 PM PDT -,2021-08-27T07:03:47Z,- null commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-906976032) at 2021-08-27 12:03 AM PDT -,2021-08-27T07:03:50Z,- null commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-906976047) at 2021-08-27 12:03 AM PDT -,2021-08-27T07:03:54Z,- null commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-906976106) at 2021-08-27 12:03 AM PDT -,2021-08-27T07:03:56Z,- null commented on issue: [2082](https://github.com/hackforla/website/issues/2082#issuecomment-906976129) at 2021-08-27 12:03 AM PDT -,2021-08-27T07:03:58Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-906976156) at 2021-08-27 12:03 AM PDT -,2021-08-27T07:04:01Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-906976179) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:07Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-906976261) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:10Z,- null commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-906976289) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:15Z,- null commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-906976352) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:17Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-906976375) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:21Z,- null commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-906976427) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:23Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-906976447) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:25Z,- null commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-906976464) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:28Z,- null commented on issue: [2068](https://github.com/hackforla/website/issues/2068#issuecomment-906976486) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:30Z,- null commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-906976509) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:37Z,- null commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-906976583) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:39Z,- null commented on issue: [1562](https://github.com/hackforla/website/issues/1562#issuecomment-906976604) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:41Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-906976633) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:43Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-906976657) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:47Z,- null commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906976697) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:50Z,- null commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-906976727) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:53Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-906976759) at 2021-08-27 12:04 AM PDT -,2021-08-27T07:04:55Z,- null commented on issue: [2165](https://github.com/hackforla/website/issues/2165#issuecomment-906976775) at 2021-08-27 12:04 AM PDT -,2021-08-27T19:53:27Z,- null commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-907440583) at 2021-08-27 12:53 PM PDT -,2021-08-28T01:38:23Z,- null commented on issue: [2193](https://github.com/hackforla/website/issues/2193#issuecomment-907546801) at 2021-08-27 06:38 PM PDT -,2021-08-29T10:15:31Z,- null commented on issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-907765914) at 2021-08-29 03:15 AM PDT -,2021-08-29T10:19:14Z,- null commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-907766320) at 2021-08-29 03:19 AM PDT -,2021-08-29T10:23:04Z,- null commented on issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-907766739) at 2021-08-29 03:23 AM PDT -,2021-08-29T20:49:51Z,- null commented on issue: [2203](https://github.com/hackforla/website/issues/2203#issuecomment-907870140) at 2021-08-29 01:49 PM PDT -,2021-08-29T23:10:40Z,- null commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-907894023) at 2021-08-29 04:10 PM PDT -,2021-08-29T23:13:34Z,- null commented on issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-907894622) at 2021-08-29 04:13 PM PDT -,2021-08-30T16:38:55Z,- null commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-908498261) at 2021-08-30 09:38 AM PDT -,2021-08-31T18:01:15Z,- null commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-909464765) at 2021-08-31 11:01 AM PDT -,2021-08-31T20:35:24Z,- null commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-909614821) at 2021-08-31 01:35 PM PDT -,2021-09-01T14:29:28Z,- null commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-910342111) at 2021-09-01 07:29 AM PDT -,2021-09-03T07:02:51Z,- null commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-912307129) at 2021-09-03 12:02 AM PDT -,2021-09-03T07:02:54Z,- null commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-912307163) at 2021-09-03 12:02 AM PDT -,2021-09-03T07:02:57Z,- null commented on issue: [2163](https://github.com/hackforla/website/issues/2163#issuecomment-912307187) at 2021-09-03 12:02 AM PDT -,2021-09-03T07:02:59Z,- null commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-912307222) at 2021-09-03 12:02 AM PDT -,2021-09-03T07:03:05Z,- null commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-912307262) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:10Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-912307306) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:14Z,- null commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-912307341) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:17Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-912307366) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:20Z,- null commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-912307383) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:24Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-912307429) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:39Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-912307563) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:48Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-912307640) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:51Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-912307674) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:03:57Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-912307728) at 2021-09-03 12:03 AM PDT -,2021-09-03T07:04:00Z,- null commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-912307746) at 2021-09-03 12:04 AM PDT -,2021-09-03T07:04:08Z,- null commented on issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-912307807) at 2021-09-03 12:04 AM PDT -,2021-09-03T07:04:11Z,- null commented on issue: [2170](https://github.com/hackforla/website/issues/2170#issuecomment-912307839) at 2021-09-03 12:04 AM PDT -,2021-09-03T07:04:14Z,- null commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-912307864) at 2021-09-03 12:04 AM PDT -,2021-09-03T07:04:18Z,- null commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-912307897) at 2021-09-03 12:04 AM PDT -,2021-09-03T07:04:22Z,- null commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-912307926) at 2021-09-03 12:04 AM PDT -,2021-09-03T17:13:42Z,- null commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-912687694) at 2021-09-03 10:13 AM PDT -,2021-09-03T17:48:32Z,- null commented on issue: [2222](https://github.com/hackforla/website/issues/2222#issuecomment-912706743) at 2021-09-03 10:48 AM PDT -,2021-09-05T16:38:33Z,- null commented on issue: [2226](https://github.com/hackforla/website/issues/2226#issuecomment-913187048) at 2021-09-05 09:38 AM PDT -,2021-09-07T00:26:52Z,- null commented on issue: [2227](https://github.com/hackforla/website/issues/2227#issuecomment-913910686) at 2021-09-06 05:26 PM PDT -,2021-09-10T07:02:35Z,- null commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-916678973) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:37Z,- null commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-916678990) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:40Z,- null commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-916679019) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:42Z,- null commented on issue: [2163](https://github.com/hackforla/website/issues/2163#issuecomment-916679032) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:44Z,- null commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-916679047) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:47Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-916679066) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:52Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-916679120) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:53Z,- null commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-916679136) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:02:58Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-916679169) at 2021-09-10 12:02 AM PDT -,2021-09-10T07:03:01Z,- null commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-916679199) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:06Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-916679252) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:12Z,- null commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-916679313) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:14Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-916679329) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:19Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-916679373) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:25Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-916679434) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:27Z,- null commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-916679460) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:29Z,- null commented on issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-916679489) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:37Z,- null commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-916679573) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:39Z,- null commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-916679599) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:43Z,- null commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-916679629) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:46Z,- null commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-916679678) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:48Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-916679703) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:50Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-916679724) at 2021-09-10 12:03 AM PDT -,2021-09-10T07:03:52Z,- null commented on issue: [2078](https://github.com/hackforla/website/issues/2078#issuecomment-916679745) at 2021-09-10 12:03 AM PDT -,2021-09-11T21:36:36Z,- null commented on issue: [2248](https://github.com/hackforla/website/issues/2248#issuecomment-917484121) at 2021-09-11 02:36 PM PDT -,2021-09-11T21:52:39Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-917485924) at 2021-09-11 02:52 PM PDT -,2021-09-14T03:45:12Z,- null commented on issue: [2258](https://github.com/hackforla/website/issues/2258#issuecomment-918773258) at 2021-09-13 08:45 PM PDT -,2021-09-15T19:59:48Z,- null commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-920334512) at 2021-09-15 12:59 PM PDT -,2021-09-15T23:44:18Z,- null commented on issue: [2278](https://github.com/hackforla/website/issues/2278#issuecomment-920465252) at 2021-09-15 04:44 PM PDT -,2021-09-17T07:02:46Z,- null commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-921550250) at 2021-09-17 12:02 AM PDT -,2021-09-17T07:02:49Z,- null commented on issue: [2057](https://github.com/hackforla/website/issues/2057#issuecomment-921550281) at 2021-09-17 12:02 AM PDT -,2021-09-17T07:02:51Z,- null commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-921550299) at 2021-09-17 12:02 AM PDT -,2021-09-17T07:02:54Z,- null commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-921550312) at 2021-09-17 12:02 AM PDT -,2021-09-17T07:02:57Z,- null commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-921550335) at 2021-09-17 12:02 AM PDT -,2021-09-17T07:03:00Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-921550366) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:07Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-921550441) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:10Z,- null commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-921550467) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:18Z,- null commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-921550530) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:24Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-921550598) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:27Z,- null commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-921550624) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:30Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-921550660) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:32Z,- null commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-921550675) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:35Z,- null commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-921550695) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:38Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-921550720) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:41Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-921550749) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:43Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-921550775) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:03:57Z,- null commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-921550936) at 2021-09-17 12:03 AM PDT -,2021-09-17T07:04:00Z,- null commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-921550971) at 2021-09-17 12:04 AM PDT -,2021-09-17T07:04:03Z,- null commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-921551009) at 2021-09-17 12:04 AM PDT -,2021-09-17T07:04:07Z,- null commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-921551048) at 2021-09-17 12:04 AM PDT -,2021-09-17T07:04:10Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-921551079) at 2021-09-17 12:04 AM PDT -,2021-09-17T07:04:14Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-921551113) at 2021-09-17 12:04 AM PDT -,2021-09-17T07:04:20Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-921551162) at 2021-09-17 12:04 AM PDT -,2021-09-17T07:04:23Z,- null commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-921551186) at 2021-09-17 12:04 AM PDT -,2021-09-19T18:28:24Z,- null commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-922516418) at 2021-09-19 11:28 AM PDT -,2021-09-21T04:48:42Z,- null commented on issue: [2291](https://github.com/hackforla/website/issues/2291#issuecomment-923621047) at 2021-09-20 09:48 PM PDT -,2021-09-21T04:55:13Z,- null commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-923623422) at 2021-09-20 09:55 PM PDT -,2021-09-21T05:08:50Z,- null commented on issue: [2295](https://github.com/hackforla/website/issues/2295#issuecomment-923630132) at 2021-09-20 10:08 PM PDT -,2021-09-22T01:11:59Z,- null commented on issue: [2298](https://github.com/hackforla/website/issues/2298#issuecomment-924501631) at 2021-09-21 06:11 PM PDT -,2021-09-24T07:02:54Z,- null commented on issue: [2279](https://github.com/hackforla/website/issues/2279#issuecomment-926394677) at 2021-09-24 12:02 AM PDT -,2021-09-24T07:02:56Z,- null commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-926394699) at 2021-09-24 12:02 AM PDT -,2021-09-24T07:02:58Z,- null commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-926394724) at 2021-09-24 12:02 AM PDT -,2021-09-24T07:03:00Z,- null commented on issue: [2116](https://github.com/hackforla/website/issues/2116#issuecomment-926394747) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:03Z,- null commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-926394778) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:05Z,- null commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-926394798) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:08Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-926394819) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:13Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-926394876) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:16Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-926394903) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:22Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-926394954) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:24Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-926394968) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:26Z,- null commented on issue: [2207](https://github.com/hackforla/website/issues/2207#issuecomment-926394987) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:29Z,- null commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-926395009) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:32Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-926395029) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:37Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-926395072) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:46Z,- null commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-926395177) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:48Z,- null commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-926395200) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:51Z,- null commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-926395221) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:53Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-926395237) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:55Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-926395258) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:03:58Z,- null commented on issue: [2078](https://github.com/hackforla/website/issues/2078#issuecomment-926395283) at 2021-09-24 12:03 AM PDT -,2021-09-24T07:04:01Z,- null commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-926395322) at 2021-09-24 12:04 AM PDT -,2021-09-24T07:04:03Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-926395352) at 2021-09-24 12:04 AM PDT -,2021-09-24T07:04:06Z,- null commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-926395368) at 2021-09-24 12:04 AM PDT -,2021-09-24T07:04:08Z,- null commented on issue: [2176](https://github.com/hackforla/website/issues/2176#issuecomment-926395393) at 2021-09-24 12:04 AM PDT -,2021-09-24T07:04:09Z,- null commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-926395413) at 2021-09-24 12:04 AM PDT -,2021-09-24T18:11:13Z,- null unassigned from issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-926827631) at 2021-09-24 11:11 AM PDT -,2021-09-24T18:52:12Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-926850763) at 2021-09-24 11:52 AM PDT -,2021-09-28T15:26:23Z,- null commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-929336691) at 2021-09-28 08:26 AM PDT -,2021-09-28T15:39:16Z,- null commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-929347339) at 2021-09-28 08:39 AM PDT -,2021-09-29T17:55:58Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-930411338) at 2021-09-29 10:55 AM PDT -,2021-09-30T04:15:26Z,- null commented on issue: [2318](https://github.com/hackforla/website/issues/2318#issuecomment-930767348) at 2021-09-29 09:15 PM PDT -,2021-09-30T04:28:08Z,- null commented on issue: [2319](https://github.com/hackforla/website/issues/2319#issuecomment-930772273) at 2021-09-29 09:28 PM PDT -,2021-10-01T07:02:48Z,- null commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-931963372) at 2021-10-01 12:02 AM PDT -,2021-10-01T07:02:54Z,- null commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-931963449) at 2021-10-01 12:02 AM PDT -,2021-10-01T07:02:58Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-931963509) at 2021-10-01 12:02 AM PDT -,2021-10-01T07:03:07Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-931963608) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:10Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-931963652) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:17Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-931963747) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:20Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-931963787) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:24Z,- null commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-931963830) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:27Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-931963878) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:30Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-931963916) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:38Z,- null commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-931963984) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:43Z,- null commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-931964048) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:49Z,- null commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-931964119) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:53Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-931964171) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:57Z,- null commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-931964208) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:03:59Z,- null commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-931964234) at 2021-10-01 12:03 AM PDT -,2021-10-01T07:04:03Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-931964269) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:06Z,- null commented on issue: [2176](https://github.com/hackforla/website/issues/2176#issuecomment-931964300) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:10Z,- null commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-931964339) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:15Z,- null commented on issue: [2275](https://github.com/hackforla/website/issues/2275#issuecomment-931964398) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:17Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-931964430) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:20Z,- null commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-931964460) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:23Z,- null commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-931964499) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:25Z,- null commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-931964527) at 2021-10-01 12:04 AM PDT -,2021-10-01T07:04:28Z,- null commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-931964558) at 2021-10-01 12:04 AM PDT -,2021-10-03T15:59:11Z,- null commented on issue: [2326](https://github.com/hackforla/website/issues/2326#issuecomment-932978421) at 2021-10-03 08:59 AM PDT -,2021-10-03T16:11:47Z,- null commented on issue: [2327](https://github.com/hackforla/website/issues/2327#issuecomment-932980854) at 2021-10-03 09:11 AM PDT -,2021-10-03T16:16:01Z,- null commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-932981533) at 2021-10-03 09:16 AM PDT -,2021-10-03T16:30:29Z,- null commented on issue: [2329](https://github.com/hackforla/website/issues/2329#issuecomment-932983664) at 2021-10-03 09:30 AM PDT -,2021-10-03T16:36:48Z,- null commented on issue: [2330](https://github.com/hackforla/website/issues/2330#issuecomment-932984548) at 2021-10-03 09:36 AM PDT -,2021-10-03T16:39:02Z,- null commented on issue: [2331](https://github.com/hackforla/website/issues/2331#issuecomment-932984845) at 2021-10-03 09:39 AM PDT -,2021-10-04T06:59:40Z,- null commented on issue: [2332](https://github.com/hackforla/website/issues/2332#issuecomment-933199443) at 2021-10-03 11:59 PM PDT -,2021-10-05T18:05:02Z,- null commented on issue: [2335](https://github.com/hackforla/website/issues/2335#issuecomment-934642368) at 2021-10-05 11:05 AM PDT -,2021-10-05T18:17:24Z,- null commented on issue: [2336](https://github.com/hackforla/website/issues/2336#issuecomment-934651903) at 2021-10-05 11:17 AM PDT -,2021-10-05T18:27:26Z,- null commented on issue: [2337](https://github.com/hackforla/website/issues/2337#issuecomment-934659352) at 2021-10-05 11:27 AM PDT -,2021-10-06T00:39:09Z,- null commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-935155938) at 2021-10-05 05:39 PM PDT -,2021-10-06T21:45:55Z,- null commented on issue: [2341](https://github.com/hackforla/website/issues/2341#issuecomment-937201251) at 2021-10-06 02:45 PM PDT -,2021-10-06T21:54:50Z,- null commented on issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-937215589) at 2021-10-06 02:54 PM PDT -,2021-10-07T23:12:05Z,- null commented on issue: [2344](https://github.com/hackforla/website/issues/2344#issuecomment-938218432) at 2021-10-07 04:12 PM PDT -,2021-10-07T23:17:51Z,- null commented on issue: [2345](https://github.com/hackforla/website/issues/2345#issuecomment-938220881) at 2021-10-07 04:17 PM PDT -,2021-10-07T23:20:47Z,- null commented on issue: [2346](https://github.com/hackforla/website/issues/2346#issuecomment-938222109) at 2021-10-07 04:20 PM PDT -,2021-10-07T23:35:58Z,- null commented on issue: [2347](https://github.com/hackforla/website/issues/2347#issuecomment-938227617) at 2021-10-07 04:35 PM PDT -,2021-10-07T23:37:33Z,- null commented on issue: [2348](https://github.com/hackforla/website/issues/2348#issuecomment-938228116) at 2021-10-07 04:37 PM PDT -,2021-10-07T23:48:39Z,- null commented on issue: [2349](https://github.com/hackforla/website/issues/2349#issuecomment-938232151) at 2021-10-07 04:48 PM PDT -,2021-10-08T07:02:59Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-938396737) at 2021-10-08 12:02 AM PDT -,2021-10-08T07:03:02Z,- null commented on issue: [2116](https://github.com/hackforla/website/issues/2116#issuecomment-938396766) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:10Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-938396837) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:13Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-938396868) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:20Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-938396933) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:23Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-938396968) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:27Z,- null commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-938397004) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:30Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-938397032) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:33Z,- null commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-938397068) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:39Z,- null commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-938397124) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:43Z,- null commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-938397157) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:46Z,- null commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-938397177) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:49Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-938397203) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:52Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-938397233) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:55Z,- null commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-938397257) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:03:58Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-938397293) at 2021-10-08 12:03 AM PDT -,2021-10-08T07:04:05Z,- null commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-938397357) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:08Z,- null commented on issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-938397385) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:11Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-938397419) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:13Z,- null commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-938397459) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:18Z,- null commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-938397498) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:20Z,- null commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-938397523) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:23Z,- null commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-938397551) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:25Z,- null commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-938397575) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:32Z,- null commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-938397622) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:34Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-938397645) at 2021-10-08 12:04 AM PDT -,2021-10-08T07:04:37Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-938397666) at 2021-10-08 12:04 AM PDT -,2021-10-10T04:58:20Z,- null commented on issue: [2353](https://github.com/hackforla/website/issues/2353#issuecomment-939407233) at 2021-10-09 09:58 PM PDT -,2021-10-10T05:16:09Z,- null commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-939408739) at 2021-10-09 10:16 PM PDT -,2021-10-10T07:08:46Z,- null commented on issue: [2356](https://github.com/hackforla/website/issues/2356#issuecomment-939420187) at 2021-10-10 12:08 AM PDT -,2021-10-10T08:47:31Z,- null commented on issue: [2357](https://github.com/hackforla/website/issues/2357#issuecomment-939432794) at 2021-10-10 01:47 AM PDT -,2021-10-10T15:50:56Z,- null commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-939505969) at 2021-10-10 08:50 AM PDT -,2021-10-10T16:19:05Z,- null commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-939510317) at 2021-10-10 09:19 AM PDT -,2021-10-11T19:06:24Z,- null commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-940369315) at 2021-10-11 12:06 PM PDT -,2021-10-12T22:54:19Z,- null commented on issue: [2366](https://github.com/hackforla/website/issues/2366#issuecomment-941710477) at 2021-10-12 03:54 PM PDT -,2021-10-15T07:02:43Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-944050645) at 2021-10-15 12:02 AM PDT -,2021-10-15T07:02:45Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-944050660) at 2021-10-15 12:02 AM PDT -,2021-10-15T07:02:47Z,- null commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-944050679) at 2021-10-15 12:02 AM PDT -,2021-10-15T07:02:53Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-944050733) at 2021-10-15 12:02 AM PDT -,2021-10-15T07:02:56Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-944050757) at 2021-10-15 12:02 AM PDT -,2021-10-15T07:02:58Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-944050780) at 2021-10-15 12:02 AM PDT -,2021-10-15T07:03:05Z,- null commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-944050841) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:07Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-944050870) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:10Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-944050880) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:12Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-944050907) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:15Z,- null commented on issue: [2176](https://github.com/hackforla/website/issues/2176#issuecomment-944050935) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:18Z,- null commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-944050966) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:20Z,- null commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-944050987) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:22Z,- null commented on issue: [2171](https://github.com/hackforla/website/issues/2171#issuecomment-944051007) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:26Z,- null commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-944051036) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:28Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-944051046) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:29Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-944051065) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:31Z,- null commented on issue: [2146](https://github.com/hackforla/website/issues/2146#issuecomment-944051086) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:33Z,- null commented on issue: [2334](https://github.com/hackforla/website/issues/2334#issuecomment-944051102) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:36Z,- null commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-944051136) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:39Z,- null commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-944051160) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:41Z,- null commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-944051185) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:45Z,- null commented on issue: [2366](https://github.com/hackforla/website/issues/2366#issuecomment-944051218) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:48Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-944051252) at 2021-10-15 12:03 AM PDT -,2021-10-15T07:03:52Z,- null commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-944051285) at 2021-10-15 12:03 AM PDT -,2021-10-19T17:08:15Z,- null commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-946927317) at 2021-10-19 10:08 AM PDT -,2021-10-20T23:52:43Z,- null commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-948119363) at 2021-10-20 04:52 PM PDT -,2021-10-21T02:07:00Z,- null commented on issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-948190218) at 2021-10-20 07:07 PM PDT -,2021-10-22T07:03:26Z,- null commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-949347147) at 2021-10-22 12:03 AM PDT -,2021-10-22T07:03:29Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-949347170) at 2021-10-22 12:03 AM PDT -,2021-10-22T07:03:32Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-949347196) at 2021-10-22 12:03 AM PDT -,2021-10-22T07:03:35Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-949347231) at 2021-10-22 12:03 AM PDT -,2021-10-22T07:03:46Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-949347351) at 2021-10-22 12:03 AM PDT -,2021-10-22T07:03:49Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-949347384) at 2021-10-22 12:03 AM PDT -,2021-10-22T07:03:53Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-949347427) at 2021-10-22 12:03 AM PDT -,2021-10-22T07:04:05Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-949347561) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:10Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-949347617) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:13Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-949347647) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:17Z,- null commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-949347682) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:20Z,- null commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-949347715) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:26Z,- null commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-949347774) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:31Z,- null commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-949347820) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:34Z,- null commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-949347854) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:37Z,- null commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-949347883) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:40Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-949347919) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:43Z,- null commented on issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-949347959) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:47Z,- null commented on issue: [2151](https://github.com/hackforla/website/issues/2151#issuecomment-949348001) at 2021-10-22 12:04 AM PDT -,2021-10-22T07:04:50Z,- null commented on issue: [1893](https://github.com/hackforla/website/issues/1893#issuecomment-949348032) at 2021-10-22 12:04 AM PDT -,2021-10-23T04:47:52Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-950061452) at 2021-10-22 09:47 PM PDT -,2021-10-23T04:58:50Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-950064963) at 2021-10-22 09:58 PM PDT -,2021-10-23T05:49:11Z,- null commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-950090319) at 2021-10-22 10:49 PM PDT -,2021-10-25T02:22:32Z,- null commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-950470116) at 2021-10-24 07:22 PM PDT -,2021-10-25T10:35:07Z,- null commented on issue: [2396](https://github.com/hackforla/website/issues/2396#issuecomment-950779095) at 2021-10-25 03:35 AM PDT -,2021-10-25T18:34:27Z,- null commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-951195918) at 2021-10-25 11:34 AM PDT -,2021-10-26T16:48:33Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-952124904) at 2021-10-26 09:48 AM PDT -,2021-10-27T02:57:27Z,- null assigned to issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902938080) at 2021-10-26 07:57 PM PDT -,2021-10-29T07:03:41Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-954482228) at 2021-10-29 12:03 AM PDT -,2021-10-29T07:03:43Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-954482249) at 2021-10-29 12:03 AM PDT -,2021-10-29T07:03:45Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-954482269) at 2021-10-29 12:03 AM PDT -,2021-10-29T07:03:54Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-954482340) at 2021-10-29 12:03 AM PDT -,2021-10-29T07:03:56Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-954482363) at 2021-10-29 12:03 AM PDT -,2021-10-29T07:03:59Z,- null commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-954482379) at 2021-10-29 12:03 AM PDT -,2021-10-29T07:04:07Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-954482463) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:10Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-954482479) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:13Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-954482510) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:15Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-954482524) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:19Z,- null commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-954482562) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:21Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-954482589) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:24Z,- null commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-954482617) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:26Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-954482644) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:28Z,- null commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-954482658) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:31Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-954482673) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:33Z,- null commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-954482706) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:35Z,- null commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-954482726) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:37Z,- null commented on issue: [2389](https://github.com/hackforla/website/issues/2389#issuecomment-954482741) at 2021-10-29 12:04 AM PDT -,2021-10-29T07:04:39Z,- null commented on issue: [2091](https://github.com/hackforla/website/issues/2091#issuecomment-954482758) at 2021-10-29 12:04 AM PDT -,2021-10-29T22:47:50Z,- null commented on issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-955088300) at 2021-10-29 03:47 PM PDT -,2021-10-29T23:39:43Z,- null commented on issue: [2409](https://github.com/hackforla/website/issues/2409#issuecomment-955102017) at 2021-10-29 04:39 PM PDT -,2021-10-30T06:32:38Z,- null commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-955159194) at 2021-10-29 11:32 PM PDT -,2021-10-31T05:14:08Z,- null opened pull request: [2411](https://github.com/hackforla/website/pull/2411) at 2021-10-30 10:14 PM PDT -,2021-11-01T18:19:15Z,- null commented on issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-956472847) at 2021-11-01 11:19 AM PDT -,2021-11-01T20:15:31Z,- null commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-956556752) at 2021-11-01 01:15 PM PDT -,2021-11-01T22:29:50Z,- null commented on issue: [2422](https://github.com/hackforla/website/issues/2422#issuecomment-956762355) at 2021-11-01 03:29 PM PDT -,2021-11-02T17:50:59Z,- null commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-957988338) at 2021-11-02 10:50 AM PDT -,2021-11-02T17:55:20Z,- null commented on issue: [2424](https://github.com/hackforla/website/issues/2424#issuecomment-957991495) at 2021-11-02 10:55 AM PDT -,2021-11-02T17:58:41Z,- null commented on issue: [2425](https://github.com/hackforla/website/issues/2425#issuecomment-957994014) at 2021-11-02 10:58 AM PDT -,2021-11-02T18:21:49Z,- null commented on issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-958012986) at 2021-11-02 11:21 AM PDT -,2021-11-02T18:26:07Z,- null commented on issue: [2428](https://github.com/hackforla/website/issues/2428#issuecomment-958019170) at 2021-11-02 11:26 AM PDT -,2021-11-02T18:26:11Z,- null commented on issue: [2429](https://github.com/hackforla/website/issues/2429#issuecomment-958019217) at 2021-11-02 11:26 AM PDT -,2021-11-02T18:27:04Z,- null commented on issue: [2430](https://github.com/hackforla/website/issues/2430#issuecomment-958019844) at 2021-11-02 11:27 AM PDT -,2021-11-02T18:44:22Z,- null commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-958037759) at 2021-11-02 11:44 AM PDT -,2021-11-02T21:10:07Z,- null commented on issue: [2433](https://github.com/hackforla/website/issues/2433#issuecomment-958168887) at 2021-11-02 02:10 PM PDT -,2021-11-02T21:41:26Z,- null commented on issue: [2434](https://github.com/hackforla/website/issues/2434#issuecomment-958188543) at 2021-11-02 02:41 PM PDT -,2021-11-02T22:01:57Z,- null commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-958229526) at 2021-11-02 03:01 PM PDT -,2021-11-02T22:07:53Z,- null commented on issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-958242332) at 2021-11-02 03:07 PM PDT -,2021-11-03T01:10:05Z,- null pull request merged: [2411](https://github.com/hackforla/website/pull/2411#event-5559010039) at 2021-11-02 06:10 PM PDT -,2021-11-03T23:38:28Z,- null commented on issue: [2441](https://github.com/hackforla/website/issues/2441#issuecomment-960296427) at 2021-11-03 04:38 PM PDT -,2021-11-03T23:50:07Z,- null commented on issue: [2442](https://github.com/hackforla/website/issues/2442#issuecomment-960300953) at 2021-11-03 04:50 PM PDT -,2021-11-04T02:27:24Z,- null commented on issue: [2443](https://github.com/hackforla/website/issues/2443#issuecomment-960383604) at 2021-11-03 07:27 PM PDT -,2021-11-04T02:33:08Z,- null commented on issue: [2444](https://github.com/hackforla/website/issues/2444#issuecomment-960388898) at 2021-11-03 07:33 PM PDT -,2021-11-04T02:38:59Z,- null commented on issue: [2445](https://github.com/hackforla/website/issues/2445#issuecomment-960394746) at 2021-11-03 07:38 PM PDT -,2021-11-04T17:15:27Z,- null assigned to issue: [2270](https://github.com/hackforla/website/issues/2270#issuecomment-926946542) at 2021-11-04 10:15 AM PDT -,2021-11-04T21:33:56Z,- null commented on issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-961445700) at 2021-11-04 02:33 PM PDT -,2021-11-04T21:34:26Z,- null commented on issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-961446085) at 2021-11-04 02:34 PM PDT -,2021-11-04T21:34:52Z,- null commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-961446386) at 2021-11-04 02:34 PM PDT -,2021-11-04T21:35:51Z,- null commented on issue: [2449](https://github.com/hackforla/website/issues/2449#issuecomment-961447145) at 2021-11-04 02:35 PM PDT -,2021-11-05T00:31:31Z,- null commented on issue: [2451](https://github.com/hackforla/website/issues/2451#issuecomment-961536900) at 2021-11-04 05:31 PM PDT -,2021-11-05T02:49:21Z,- null opened pull request: [2452](https://github.com/hackforla/website/pull/2452) at 2021-11-04 07:49 PM PDT -,2021-11-05T02:57:56Z,- null commented on pull request: [2452](https://github.com/hackforla/website/pull/2452#issuecomment-961589567) at 2021-11-04 07:57 PM PDT -,2021-11-05T07:03:11Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-961668670) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:13Z,- null commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-961668684) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:17Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-961668713) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:21Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-961668754) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:29Z,- null commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-961668819) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:31Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-961668833) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:41Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-961668903) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:43Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-961668921) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:47Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-961668949) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:51Z,- null commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-961668979) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:53Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-961669002) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:03:56Z,- null commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-961669026) at 2021-11-05 12:03 AM PDT -,2021-11-05T07:04:02Z,- null commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-961669069) at 2021-11-05 12:04 AM PDT -,2021-11-05T07:04:04Z,- null commented on issue: [2357](https://github.com/hackforla/website/issues/2357#issuecomment-961669078) at 2021-11-05 12:04 AM PDT -,2021-11-05T07:04:10Z,- null commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-961669117) at 2021-11-05 12:04 AM PDT -,2021-11-05T07:04:12Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-961669133) at 2021-11-05 12:04 AM PDT -,2021-11-05T18:42:43Z,- null commented on issue: [2454](https://github.com/hackforla/website/issues/2454#issuecomment-962130851) at 2021-11-05 11:42 AM PDT -,2021-11-05T20:20:27Z,- null commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-962195711) at 2021-11-05 01:20 PM PDT -,2021-11-05T22:28:11Z,- null commented on issue: [2456](https://github.com/hackforla/website/issues/2456#issuecomment-962257808) at 2021-11-05 03:28 PM PDT -,2021-11-06T00:06:04Z,- null commented on issue: [2457](https://github.com/hackforla/website/issues/2457#issuecomment-962286868) at 2021-11-05 04:06 PM PST -,2021-11-06T00:13:15Z,- null commented on issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-962288923) at 2021-11-05 04:13 PM PST -,2021-11-06T04:01:58Z,- null commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-962390022) at 2021-11-05 08:01 PM PST -,2021-11-06T05:47:01Z,- null commented on issue: [2460](https://github.com/hackforla/website/issues/2460#issuecomment-962399340) at 2021-11-05 09:47 PM PST -,2021-11-08T23:13:08Z,- null commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-963658780) at 2021-11-08 03:13 PM PST -,2021-11-08T23:33:42Z,- null commented on issue: [2465](https://github.com/hackforla/website/issues/2465#issuecomment-963672512) at 2021-11-08 03:33 PM PST -,2021-11-10T03:27:13Z,- null pull request merged: [2452](https://github.com/hackforla/website/pull/2452#event-5594322473) at 2021-11-09 07:27 PM PST -,2021-11-10T04:09:07Z,- null assigned to issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-905058023) at 2021-11-09 08:09 PM PST -,2021-11-11T02:36:50Z,- null commented on issue: [2474](https://github.com/hackforla/website/issues/2474#issuecomment-965937454) at 2021-11-10 06:36 PM PST -,2021-11-11T02:47:35Z,- null commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-965941381) at 2021-11-10 06:47 PM PST -,2021-11-11T05:06:21Z,- null commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-965993243) at 2021-11-10 09:06 PM PST -,2021-11-11T19:34:13Z,- null commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-966570193) at 2021-11-11 11:34 AM PST -,2021-11-12T07:03:16Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-966872179) at 2021-11-11 11:03 PM PST -,2021-11-12T07:03:20Z,- null commented on issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-966872229) at 2021-11-11 11:03 PM PST -,2021-11-12T07:03:24Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-966872274) at 2021-11-11 11:03 PM PST -,2021-11-12T07:03:29Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-966872314) at 2021-11-11 11:03 PM PST -,2021-11-12T07:03:40Z,- null commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-966872401) at 2021-11-11 11:03 PM PST -,2021-11-12T07:03:51Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-966872497) at 2021-11-11 11:03 PM PST -,2021-11-12T07:03:55Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-966872534) at 2021-11-11 11:03 PM PST -,2021-11-12T07:03:58Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-966872561) at 2021-11-11 11:03 PM PST -,2021-11-12T07:04:01Z,- null commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-966872573) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:04Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-966872600) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:07Z,- null commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-966872620) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:11Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-966872665) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:14Z,- null commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-966872690) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:16Z,- null commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-966872713) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:18Z,- null commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-966872738) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:20Z,- null commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-966872762) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:22Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-966872781) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:25Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-966872799) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:27Z,- null commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-966872816) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:30Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-966872840) at 2021-11-11 11:04 PM PST -,2021-11-12T07:04:32Z,- null commented on issue: [2468](https://github.com/hackforla/website/issues/2468#issuecomment-966872857) at 2021-11-11 11:04 PM PST -,2021-11-14T16:42:24Z,- null commented on issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-968324929) at 2021-11-14 08:42 AM PST -,2021-11-14T17:56:03Z,- null commented on issue: [2480](https://github.com/hackforla/website/issues/2480#issuecomment-968336717) at 2021-11-14 09:56 AM PST -,2021-11-14T20:45:50Z,- null opened pull request: [2482](https://github.com/hackforla/website/pull/2482) at 2021-11-14 12:45 PM PST -,2021-11-15T01:33:48Z,- null commented on issue: [2483](https://github.com/hackforla/website/issues/2483#issuecomment-968431484) at 2021-11-14 05:33 PM PST -,2021-11-15T02:09:03Z,- null commented on issue: [2484](https://github.com/hackforla/website/issues/2484#issuecomment-968453762) at 2021-11-14 06:09 PM PST -,2021-11-15T03:00:19Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-968487506) at 2021-11-14 07:00 PM PST -,2021-11-15T03:14:19Z,- null commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-968499442) at 2021-11-14 07:14 PM PST -,2021-11-15T04:46:55Z,- null commented on issue: [2487](https://github.com/hackforla/website/issues/2487#issuecomment-968535572) at 2021-11-14 08:46 PM PST -,2021-11-15T05:25:54Z,- null commented on issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-968551127) at 2021-11-14 09:25 PM PST -,2021-11-15T05:49:31Z,- null commented on issue: [2489](https://github.com/hackforla/website/issues/2489#issuecomment-968559716) at 2021-11-14 09:49 PM PST -,2021-11-15T05:55:19Z,- null commented on issue: [2490](https://github.com/hackforla/website/issues/2490#issuecomment-968561829) at 2021-11-14 09:55 PM PST -,2021-11-16T23:31:55Z,- null pull request merged: [2482](https://github.com/hackforla/website/pull/2482#event-5628396315) at 2021-11-16 03:31 PM PST -,2021-11-17T03:47:23Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-971148389) at 2021-11-16 07:47 PM PST -,2021-11-17T17:43:16Z,- null commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-971810270) at 2021-11-17 09:43 AM PST -,2021-11-19T00:09:31Z,- null assigned to issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-968487506) at 2021-11-18 04:09 PM PST -,2021-11-21T15:05:38Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-974833271) at 2021-11-21 07:05 AM PST -,2021-11-21T16:12:18Z,- null commented on issue: [2503](https://github.com/hackforla/website/issues/2503#issuecomment-974846545) at 2021-11-21 08:12 AM PST -,2021-11-21T16:44:12Z,- null commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-974852333) at 2021-11-21 08:44 AM PST -,2021-11-22T00:50:37Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-974961067) at 2021-11-21 04:50 PM PST -,2021-11-22T00:50:39Z,- null commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-974961164) at 2021-11-21 04:50 PM PST -,2021-11-22T00:50:41Z,- null commented on issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-974961181) at 2021-11-21 04:50 PM PST -,2021-11-22T00:50:43Z,- null commented on issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-974961288) at 2021-11-21 04:50 PM PST -,2021-11-22T00:50:45Z,- null commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-974961312) at 2021-11-21 04:50 PM PST -,2021-11-22T00:50:47Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-974961396) at 2021-11-21 04:50 PM PST -,2021-11-22T00:50:50Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-974961475) at 2021-11-21 04:50 PM PST -,2021-11-22T00:51:07Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-974961904) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:16Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-974962123) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:18Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-974962235) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:22Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-974962315) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:24Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-974962443) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:26Z,- null commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-974962470) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:29Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-974962558) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:31Z,- null commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-974962607) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:33Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-974962638) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:35Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-974962726) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:37Z,- null commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-974962736) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:39Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-974962826) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:41Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-974962855) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:43Z,- null commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-974962983) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:45Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-974963034) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:48Z,- null commented on issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-974963054) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:51Z,- null commented on issue: [2449](https://github.com/hackforla/website/issues/2449#issuecomment-974963140) at 2021-11-21 04:51 PM PST -,2021-11-22T00:51:53Z,- null commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-974963189) at 2021-11-21 04:51 PM PST -,2021-11-22T18:46:52Z,- null commented on issue: [2511](https://github.com/hackforla/website/issues/2511#issuecomment-975817799) at 2021-11-22 10:46 AM PST -,2021-11-22T19:10:29Z,- null commented on issue: [2512](https://github.com/hackforla/website/issues/2512#issuecomment-975836153) at 2021-11-22 11:10 AM PST -,2021-11-22T19:15:25Z,- null commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-975840028) at 2021-11-22 11:15 AM PST -,2021-11-23T06:31:08Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-976198747) at 2021-11-22 10:31 PM PST -,2021-11-26T07:19:24Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-979746134) at 2021-11-25 11:19 PM PST -,2021-11-26T07:19:26Z,- null commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-979746157) at 2021-11-25 11:19 PM PST -,2021-11-26T07:19:30Z,- null commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-979746183) at 2021-11-25 11:19 PM PST -,2021-11-26T07:19:33Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-979746205) at 2021-11-25 11:19 PM PST -,2021-11-26T07:19:36Z,- null commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-979746235) at 2021-11-25 11:19 PM PST -,2021-11-26T07:19:57Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-979746425) at 2021-11-25 11:19 PM PST -,2021-11-26T07:20:09Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-979746505) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:12Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-979746527) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:16Z,- null commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-979746555) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:19Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-979746580) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:19Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-979746580) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:24Z,- null commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-979746618) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:27Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-979746645) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:30Z,- null commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-979746665) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:33Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-979746687) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:36Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-979746700) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:39Z,- null commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-979746730) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:42Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-979746752) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:45Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-979746773) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:48Z,- null commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-979746798) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:50Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-979746818) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:53Z,- null commented on issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-979746840) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:56Z,- null commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-979746859) at 2021-11-25 11:20 PM PST -,2021-11-26T07:20:58Z,- null commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-979746886) at 2021-11-25 11:20 PM PST -,2021-11-26T07:21:01Z,- null commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-979746901) at 2021-11-25 11:21 PM PST -,2021-12-01T21:17:12Z,- null commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-984062441) at 2021-12-01 01:17 PM PST -,2021-12-01T23:02:24Z,- null assigned to issue: [2527](https://github.com/hackforla/website/issues/2527) at 2021-12-01 03:02 PM PST -,2021-12-01T23:12:23Z,- null commented on issue: [2531](https://github.com/hackforla/website/issues/2531#issuecomment-984143062) at 2021-12-01 03:12 PM PST -,2021-12-02T01:54:22Z,- null opened issue: [2533](https://github.com/hackforla/website/issues/2533) at 2021-12-01 05:54 PM PST -,2021-12-02T19:39:22Z,- null commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-984942838) at 2021-12-02 11:39 AM PST -,2021-12-03T07:19:39Z,- null commented on issue: [2520](https://github.com/hackforla/website/issues/2520#issuecomment-985274315) at 2021-12-02 11:19 PM PST -,2021-12-03T07:19:42Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-985274338) at 2021-12-02 11:19 PM PST -,2021-12-03T07:19:44Z,- null commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-985274366) at 2021-12-02 11:19 PM PST -,2021-12-03T07:19:46Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-985274385) at 2021-12-02 11:19 PM PST -,2021-12-03T07:20:16Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-985274654) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:18Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-985274671) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:24Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-985274720) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:26Z,- null commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-985274738) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:31Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-985274799) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:34Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-985274817) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:36Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-985274833) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:38Z,- null commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-985274856) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:40Z,- null commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-985274870) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:42Z,- null commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-985274890) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:44Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-985274906) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:47Z,- null commented on issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-985274920) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:49Z,- null commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-985274940) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:50Z,- null commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-985274963) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:53Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-985274988) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:55Z,- null commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-985275004) at 2021-12-02 11:20 PM PST -,2021-12-03T07:20:58Z,- null commented on issue: [2519](https://github.com/hackforla/website/issues/2519#issuecomment-985275030) at 2021-12-02 11:20 PM PST -,2021-12-03T07:21:05Z,- null commented on issue: [2511](https://github.com/hackforla/website/issues/2511#issuecomment-985275088) at 2021-12-02 11:21 PM PST -,2021-12-05T04:34:27Z,- null commented on issue: [2544](https://github.com/hackforla/website/issues/2544#issuecomment-986165100) at 2021-12-04 08:34 PM PST -,2021-12-06T00:17:33Z,- null commented on issue: [2547](https://github.com/hackforla/website/issues/2547#issuecomment-986332714) at 2021-12-05 04:17 PM PST -,2021-12-07T00:56:50Z,- null commented on issue: [2550](https://github.com/hackforla/website/issues/2550#issuecomment-987455003) at 2021-12-06 04:56 PM PST -,2021-12-07T03:33:02Z,- null commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-987537205) at 2021-12-06 07:33 PM PST -,2021-12-07T05:06:04Z,- null commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-987572358) at 2021-12-06 09:06 PM PST -,2021-12-07T06:15:14Z,- null commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-987601494) at 2021-12-06 10:15 PM PST -,2021-12-08T22:04:57Z,- null assigned to issue: [2533](https://github.com/hackforla/website/issues/2533) at 2021-12-08 02:04 PM PST -,2021-12-08T22:05:50Z,- null closed issue as completed: [2533](https://github.com/hackforla/website/issues/2533#event-5736829604) at 2021-12-08 02:05 PM PST -,2021-12-08T22:07:17Z,- null commented on issue: [2562](https://github.com/hackforla/website/issues/2562#issuecomment-989265799) at 2021-12-08 02:07 PM PST -,2021-12-08T22:40:25Z,- null commented on issue: [2563](https://github.com/hackforla/website/issues/2563#issuecomment-989285350) at 2021-12-08 02:40 PM PST -,2021-12-08T22:42:29Z,- null assigned to issue: [2561](https://github.com/hackforla/website/issues/2561) at 2021-12-08 02:42 PM PST -,2021-12-08T22:46:28Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-989288613) at 2021-12-08 02:46 PM PST -,2021-12-09T22:45:41Z,- null commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-990369188) at 2021-12-09 02:45 PM PST -,2021-12-09T22:54:37Z,- null commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-990375978) at 2021-12-09 02:54 PM PST -,2021-12-09T23:20:09Z,- null commented on issue: [2570](https://github.com/hackforla/website/issues/2570#issuecomment-990393352) at 2021-12-09 03:20 PM PST -,2021-12-09T23:23:11Z,- null commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-990395004) at 2021-12-09 03:23 PM PST -,2021-12-09T23:26:51Z,- null commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-990396966) at 2021-12-09 03:26 PM PST -,2021-12-10T07:19:33Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-990677102) at 2021-12-09 11:19 PM PST -,2021-12-10T07:19:35Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-990677120) at 2021-12-09 11:19 PM PST -,2021-12-10T07:19:38Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-990677152) at 2021-12-09 11:19 PM PST -,2021-12-10T07:19:53Z,- null commented on issue: [2487](https://github.com/hackforla/website/issues/2487#issuecomment-990677277) at 2021-12-09 11:19 PM PST -,2021-12-10T07:19:57Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-990677319) at 2021-12-09 11:19 PM PST -,2021-12-10T07:20:03Z,- null commented on issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-990677384) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:05Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-990677410) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:11Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-990677458) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:13Z,- null commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-990677486) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:16Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-990677508) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:18Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-990677530) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:20Z,- null commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-990677559) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:22Z,- null commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-990677586) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:24Z,- null commented on issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-990677607) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:28Z,- null commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-990677647) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:30Z,- undefined commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-990677668) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:32Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-990677686) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:34Z,- null commented on issue: [2527](https://github.com/hackforla/website/issues/2527#issuecomment-990677708) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:37Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-990677741) at 2021-12-09 11:20 PM PST -,2021-12-10T07:20:41Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-990677776) at 2021-12-09 11:20 PM PST -,2021-12-11T18:55:37Z,- null commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-991748337) at 2021-12-11 10:55 AM PST -,2021-12-12T22:33:03Z,- null commented on issue: [2579](https://github.com/hackforla/website/issues/2579#issuecomment-991983361) at 2021-12-12 02:33 PM PST -,2021-12-12T22:34:28Z,- null commented on issue: [2580](https://github.com/hackforla/website/issues/2580#issuecomment-991983565) at 2021-12-12 02:34 PM PST -,2021-12-12T22:35:33Z,- null commented on issue: [2581](https://github.com/hackforla/website/issues/2581#issuecomment-991983730) at 2021-12-12 02:35 PM PST -,2021-12-14T00:11:21Z,- null commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-993026293) at 2021-12-13 04:11 PM PST -,2021-12-14T03:44:45Z,- null commented on issue: [2586](https://github.com/hackforla/website/issues/2586#issuecomment-993128982) at 2021-12-13 07:44 PM PST -,2021-12-14T16:38:28Z,- null closed issue as completed: [2527](https://github.com/hackforla/website/issues/2527#event-5765525442) at 2021-12-14 08:38 AM PST -,2021-12-14T18:52:55Z,- null commented on issue: [2527](https://github.com/hackforla/website/issues/2527#issuecomment-993880080) at 2021-12-14 10:52 AM PST -,2021-12-15T20:16:43Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-995180901) at 2021-12-15 12:16 PM PST -,2021-12-16T01:19:16Z,- null commented on issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-995353120) at 2021-12-15 05:19 PM PST -,2021-12-16T03:11:43Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-995399442) at 2021-12-15 07:11 PM PST -,2021-12-17T03:27:28Z,- null commented on issue: [2595](https://github.com/hackforla/website/issues/2595#issuecomment-996407605) at 2021-12-16 07:27 PM PST -,2021-12-17T07:19:39Z,- null commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-996492942) at 2021-12-16 11:19 PM PST -,2021-12-17T07:19:43Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-996492967) at 2021-12-16 11:19 PM PST -,2021-12-17T07:19:57Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-996493098) at 2021-12-16 11:19 PM PST -,2021-12-17T07:20:10Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-996493191) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:13Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-996493216) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:17Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-996493253) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:19Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-996493271) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:21Z,- null commented on issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-996493288) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:25Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-996493321) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:27Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-996493337) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:32Z,- null commented on issue: [2382](https://github.com/hackforla/website/issues/2382#issuecomment-996493380) at 2021-12-16 11:20 PM PST -,2021-12-17T07:20:42Z,- null commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-996493432) at 2021-12-16 11:20 PM PST -,2021-12-17T08:06:27Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-996516112) at 2021-12-17 12:06 AM PST -,2021-12-17T17:59:18Z,- null unassigned from issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-996913938) at 2021-12-17 09:59 AM PST -,2021-12-17T23:25:02Z,- null commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-997088137) at 2021-12-17 03:25 PM PST -,2021-12-17T23:49:55Z,- null commented on issue: [2598](https://github.com/hackforla/website/issues/2598#issuecomment-997095473) at 2021-12-17 03:49 PM PST -,2021-12-18T20:44:44Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-997282293) at 2021-12-18 12:44 PM PST -,2021-12-18T21:44:38Z,- null commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-997288885) at 2021-12-18 01:44 PM PST -,2021-12-19T02:29:43Z,- null commented on issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-997318442) at 2021-12-18 06:29 PM PST -,2021-12-19T03:22:31Z,- null commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-997322672) at 2021-12-18 07:22 PM PST -,2021-12-19T03:52:09Z,- null commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-997324989) at 2021-12-18 07:52 PM PST -,2021-12-21T02:56:04Z,- null commented on issue: [2610](https://github.com/hackforla/website/issues/2610#issuecomment-998427675) at 2021-12-20 06:56 PM PST -,2021-12-21T21:00:08Z,- null commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-999090470) at 2021-12-21 01:00 PM PST -,2021-12-21T21:03:45Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-999092690) at 2021-12-21 01:03 PM PST -,2021-12-21T21:07:19Z,- null commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-999094773) at 2021-12-21 01:07 PM PST -,2021-12-21T21:11:06Z,- null commented on issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-999096843) at 2021-12-21 01:11 PM PST -,2021-12-21T21:14:58Z,- null commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-999098775) at 2021-12-21 01:14 PM PST -,2021-12-21T21:16:50Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-999099692) at 2021-12-21 01:16 PM PST -,2021-12-22T02:53:36Z,- null commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-999244311) at 2021-12-21 06:53 PM PST -,2021-12-24T07:19:44Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1000694501) at 2021-12-23 11:19 PM PST -,2021-12-24T07:19:46Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1000694511) at 2021-12-23 11:19 PM PST -,2021-12-24T07:20:00Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1000694605) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:02Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-1000694621) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:06Z,- null commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1000694641) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:14Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-1000694707) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:18Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1000694732) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:21Z,- undefined commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1000694749) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:23Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1000694755) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:25Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1000694767) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:29Z,- null commented on issue: [2382](https://github.com/hackforla/website/issues/2382#issuecomment-1000694790) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:36Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1000694823) at 2021-12-23 11:20 PM PST -,2021-12-24T07:20:44Z,- null commented on issue: [2456](https://github.com/hackforla/website/issues/2456#issuecomment-1000694870) at 2021-12-23 11:20 PM PST -,2021-12-25T10:13:44Z,- null commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1001000773) at 2021-12-25 02:13 AM PST -,2021-12-25T22:11:26Z,- null commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1001077082) at 2021-12-25 02:11 PM PST -,2021-12-25T23:50:40Z,- null commented on issue: [2627](https://github.com/hackforla/website/issues/2627#issuecomment-1001084161) at 2021-12-25 03:50 PM PST -,2021-12-26T01:37:03Z,- null commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1001092036) at 2021-12-25 05:37 PM PST -,2021-12-26T09:10:51Z,- null commented on issue: [2629](https://github.com/hackforla/website/issues/2629#issuecomment-1001135413) at 2021-12-26 01:10 AM PST -,2021-12-26T18:56:42Z,- null commented on issue: [2631](https://github.com/hackforla/website/issues/2631#issuecomment-1001227641) at 2021-12-26 10:56 AM PST -,2021-12-27T05:03:33Z,- null commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1001337129) at 2021-12-26 09:03 PM PST -,2021-12-27T09:27:54Z,- null commented on issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1001466319) at 2021-12-27 01:27 AM PST -,2021-12-27T09:53:17Z,- null commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1001478804) at 2021-12-27 01:53 AM PST -,2021-12-28T03:38:22Z,- null commented on issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1001851875) at 2021-12-27 07:38 PM PST -,2021-12-28T03:38:32Z,- null commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1001851907) at 2021-12-27 07:38 PM PST -,2021-12-28T03:40:36Z,- null commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1001852322) at 2021-12-27 07:40 PM PST -,2021-12-28T11:05:08Z,- null commented on issue: [2639](https://github.com/hackforla/website/issues/2639#issuecomment-1002020330) at 2021-12-28 03:05 AM PST -,2021-12-28T23:36:47Z,- null commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1002322895) at 2021-12-28 03:36 PM PST -,2021-12-28T23:58:26Z,- null commented on issue: [2642](https://github.com/hackforla/website/issues/2642#issuecomment-1002327131) at 2021-12-28 03:58 PM PST -,2021-12-31T07:19:36Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1003293691) at 2021-12-30 11:19 PM PST -,2021-12-31T07:19:48Z,- null commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1003293734) at 2021-12-30 11:19 PM PST -,2021-12-31T07:19:49Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1003293741) at 2021-12-30 11:19 PM PST -,2021-12-31T07:19:52Z,- null commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-1003293755) at 2021-12-30 11:19 PM PST -,2021-12-31T07:20:01Z,- null commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-1003293796) at 2021-12-30 11:20 PM PST -,2021-12-31T07:20:06Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1003293810) at 2021-12-30 11:20 PM PST -,2021-12-31T07:20:08Z,- undefined commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1003293816) at 2021-12-30 11:20 PM PST -,2021-12-31T07:20:11Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1003293823) at 2021-12-30 11:20 PM PST -,2021-12-31T07:20:13Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1003293832) at 2021-12-30 11:20 PM PST -,2021-12-31T07:20:22Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1003293859) at 2021-12-30 11:20 PM PST -,2021-12-31T07:20:25Z,- null commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1003293870) at 2021-12-30 11:20 PM PST -,2022-01-02T10:23:27Z,- null commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1003693750) at 2022-01-02 02:23 AM PST -,2022-01-02T10:28:33Z,- null commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1003694297) at 2022-01-02 02:28 AM PST -,2022-01-02T10:30:16Z,- null commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1003694534) at 2022-01-02 02:30 AM PST -,2022-01-02T10:33:00Z,- null commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1003694812) at 2022-01-02 02:33 AM PST -,2022-01-02T10:35:21Z,- null commented on issue: [2653](https://github.com/hackforla/website/issues/2653#issuecomment-1003695049) at 2022-01-02 02:35 AM PST -,2022-01-03T21:30:15Z,- null commented on issue: [2654](https://github.com/hackforla/website/issues/2654#issuecomment-1004372286) at 2022-01-03 01:30 PM PST -,2022-01-04T00:09:05Z,- null commented on issue: [2655](https://github.com/hackforla/website/issues/2655#issuecomment-1004439170) at 2022-01-03 04:09 PM PST -,2022-01-04T10:11:06Z,- null commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1004678835) at 2022-01-04 02:11 AM PST -,2022-01-05T02:19:03Z,- null commented on issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1005324750) at 2022-01-04 06:19 PM PST -,2022-01-05T02:22:51Z,- null commented on issue: [2658](https://github.com/hackforla/website/issues/2658#issuecomment-1005326442) at 2022-01-04 06:22 PM PST -,2022-01-05T02:30:07Z,- null commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1005329755) at 2022-01-04 06:30 PM PST -,2022-01-05T03:32:25Z,- null commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1005353916) at 2022-01-04 07:32 PM PST -,2022-01-05T03:55:49Z,- null commented on issue: [2661](https://github.com/hackforla/website/issues/2661#issuecomment-1005361397) at 2022-01-04 07:55 PM PST -,2022-01-05T20:29:36Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1006054716) at 2022-01-05 12:29 PM PST -,2022-01-05T20:30:41Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1006055427) at 2022-01-05 12:30 PM PST -,2022-01-06T21:47:11Z,- null commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1006958269) at 2022-01-06 01:47 PM PST -,2022-01-06T22:43:29Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1006989331) at 2022-01-06 02:43 PM PST -,2022-01-07T00:34:47Z,- null commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1007044253) at 2022-01-06 04:34 PM PST -,2022-01-07T04:14:12Z,- null commented on issue: [2666](https://github.com/hackforla/website/issues/2666#issuecomment-1007127480) at 2022-01-06 08:14 PM PST -,2022-01-07T07:20:04Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1007193134) at 2022-01-06 11:20 PM PST -,2022-01-07T07:20:38Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1007193398) at 2022-01-06 11:20 PM PST -,2022-01-07T07:20:42Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1007193437) at 2022-01-06 11:20 PM PST -,2022-01-07T07:20:52Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1007193510) at 2022-01-06 11:20 PM PST -,2022-01-07T07:20:58Z,- null commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1007193548) at 2022-01-06 11:20 PM PST -,2022-01-07T07:21:03Z,- null commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1007193582) at 2022-01-06 11:21 PM PST -,2022-01-07T12:32:23Z,- null commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1007372244) at 2022-01-07 04:32 AM PST -,2022-01-07T12:34:37Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1007373563) at 2022-01-07 04:34 AM PST -,2022-01-07T12:36:41Z,- null commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1007374781) at 2022-01-07 04:36 AM PST -,2022-01-07T23:42:06Z,- null commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1007822419) at 2022-01-07 03:42 PM PST -,2022-01-08T02:48:05Z,- null commented on issue: [2671](https://github.com/hackforla/website/issues/2671#issuecomment-1007872235) at 2022-01-07 06:48 PM PST -,2022-01-08T03:58:59Z,- null commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1007880444) at 2022-01-07 07:58 PM PST -,2022-01-08T20:48:20Z,- null commented on issue: [2674](https://github.com/hackforla/website/issues/2674#issuecomment-1008149123) at 2022-01-08 12:48 PM PST -,2022-01-08T20:51:56Z,- null commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1008149982) at 2022-01-08 12:51 PM PST -,2022-01-09T04:00:11Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1008224954) at 2022-01-08 08:00 PM PST -,2022-01-09T04:36:57Z,- null commented on issue: [2677](https://github.com/hackforla/website/issues/2677#issuecomment-1008228601) at 2022-01-08 08:36 PM PST -,2022-01-09T17:53:34Z,- null commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1008344746) at 2022-01-09 09:53 AM PST -,2022-01-09T18:03:41Z,- null commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1008346396) at 2022-01-09 10:03 AM PST -,2022-01-09T21:06:40Z,- null commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1008423785) at 2022-01-09 01:06 PM PST -,2022-01-11T03:40:24Z,- null commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1009570874) at 2022-01-10 07:40 PM PST -,2022-01-11T19:40:32Z,- null commented on issue: [2684](https://github.com/hackforla/website/issues/2684#issuecomment-1010300436) at 2022-01-11 11:40 AM PST -,2022-01-11T20:06:23Z,- null commented on issue: [2685](https://github.com/hackforla/website/issues/2685#issuecomment-1010318845) at 2022-01-11 12:06 PM PST -,2022-01-14T07:19:52Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1012838943) at 2022-01-13 11:19 PM PST -,2022-01-14T07:20:03Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1012839043) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:21Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1012839186) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:23Z,- undefined commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1012839202) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:25Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1012839217) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:33Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1012839279) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:36Z,- null commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1012839304) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:46Z,- null commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1012839396) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:48Z,- null commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1012839411) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:51Z,- null commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1012839432) at 2022-01-13 11:20 PM PST -,2022-01-14T07:20:53Z,- null commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1012839451) at 2022-01-13 11:20 PM PST -,2022-01-14T22:44:42Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1013523468) at 2022-01-14 02:44 PM PST -,2022-01-15T01:11:25Z,- null commented on issue: [2687](https://github.com/hackforla/website/issues/2687#issuecomment-1013569737) at 2022-01-14 05:11 PM PST -,2022-01-16T22:22:39Z,- null commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1013964522) at 2022-01-16 02:22 PM PST -,2022-01-17T02:11:23Z,- null commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1014074171) at 2022-01-16 06:11 PM PST -,2022-01-17T18:18:43Z,- null commented on issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1014795325) at 2022-01-17 10:18 AM PST -,2022-01-17T19:55:48Z,- null commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1014847765) at 2022-01-17 11:55 AM PST -,2022-01-18T02:45:11Z,- null commented on issue: [2695](https://github.com/hackforla/website/issues/2695#issuecomment-1015022516) at 2022-01-17 06:45 PM PST -,2022-01-18T04:07:35Z,- null commented on issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1015053620) at 2022-01-17 08:07 PM PST -,2022-01-18T19:27:49Z,- null commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1015758758) at 2022-01-18 11:27 AM PST -,2022-01-19T01:18:24Z,- null commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1015985754) at 2022-01-18 05:18 PM PST -,2022-01-19T03:56:25Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1016056363) at 2022-01-18 07:56 PM PST -,2022-01-19T04:07:47Z,- null commented on issue: [2702](https://github.com/hackforla/website/issues/2702#issuecomment-1016061413) at 2022-01-18 08:07 PM PST -,2022-01-19T13:09:54Z,- null commented on issue: [2703](https://github.com/hackforla/website/issues/2703#issuecomment-1016450491) at 2022-01-19 05:09 AM PST -,2022-01-19T13:18:30Z,- null commented on issue: [2704](https://github.com/hackforla/website/issues/2704#issuecomment-1016457719) at 2022-01-19 05:18 AM PST -,2022-01-19T13:25:31Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1016463768) at 2022-01-19 05:25 AM PST -,2022-01-19T13:27:29Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1016465371) at 2022-01-19 05:27 AM PST -,2022-01-19T15:13:24Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1016565838) at 2022-01-19 07:13 AM PST -,2022-01-19T20:13:08Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1016830955) at 2022-01-19 12:13 PM PST -,2022-01-19T21:16:22Z,- null commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1016875711) at 2022-01-19 01:16 PM PST -,2022-01-19T22:29:08Z,- null assigned to issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-995180901) at 2022-01-19 02:29 PM PST -,2022-01-20T21:24:06Z,- null commented on issue: [2708](https://github.com/hackforla/website/issues/2708#issuecomment-1017940306) at 2022-01-20 01:24 PM PST -,2022-01-21T07:18:38Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1018245958) at 2022-01-20 11:18 PM PST -,2022-01-21T07:18:50Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1018246063) at 2022-01-20 11:18 PM PST -,2022-01-21T07:19:11Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1018246264) at 2022-01-20 11:19 PM PST -,2022-01-21T07:19:13Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1018246289) at 2022-01-20 11:19 PM PST -,2022-01-21T07:19:21Z,- null commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1018246359) at 2022-01-20 11:19 PM PST -,2022-01-21T07:19:24Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1018246386) at 2022-01-20 11:19 PM PST -,2022-01-21T07:19:38Z,- null commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1018246495) at 2022-01-20 11:19 PM PST -,2022-01-21T07:19:40Z,- null commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1018246517) at 2022-01-20 11:19 PM PST -,2022-01-21T07:19:56Z,- null commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1018246669) at 2022-01-20 11:19 PM PST -,2022-01-21T07:19:59Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1018246693) at 2022-01-20 11:19 PM PST -,2022-01-21T07:20:06Z,- null commented on issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1018246763) at 2022-01-20 11:20 PM PST -,2022-01-21T07:20:11Z,- null commented on issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1018246800) at 2022-01-20 11:20 PM PST -,2022-01-21T07:20:13Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1018246816) at 2022-01-20 11:20 PM PST -,2022-01-21T07:20:20Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1018246878) at 2022-01-20 11:20 PM PST -,2022-01-21T07:20:23Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1018246905) at 2022-01-20 11:20 PM PST -,2022-01-21T07:20:27Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1018246947) at 2022-01-20 11:20 PM PST -,2022-01-21T07:20:30Z,- null commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1018246978) at 2022-01-20 11:20 PM PST -,2022-01-21T18:47:44Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1018770805) at 2022-01-21 10:47 AM PST -,2022-01-22T16:24:15Z,- null commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1019302383) at 2022-01-22 08:24 AM PST -,2022-01-23T18:18:39Z,- null commented on issue: [2712](https://github.com/hackforla/website/issues/2712#issuecomment-1019539297) at 2022-01-23 10:18 AM PST -,2022-01-24T03:35:38Z,- null commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1019684900) at 2022-01-23 07:35 PM PST -,2022-01-25T03:59:36Z,- null commented on issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1020786534) at 2022-01-24 07:59 PM PST -,2022-01-25T06:04:04Z,- null commented on issue: [2717](https://github.com/hackforla/website/issues/2717#issuecomment-1020841243) at 2022-01-24 10:04 PM PST -,2022-01-27T05:56:56Z,- null commented on issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1022873662) at 2022-01-26 09:56 PM PST -,2022-01-27T06:12:12Z,- null commented on issue: [2721](https://github.com/hackforla/website/issues/2721#issuecomment-1022881309) at 2022-01-26 10:12 PM PST -,2022-01-27T18:41:58Z,- null commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1023531237) at 2022-01-27 10:41 AM PST -,2022-01-28T07:18:29Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1023949175) at 2022-01-27 11:18 PM PST -,2022-01-28T07:18:41Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1023949298) at 2022-01-27 11:18 PM PST -,2022-01-28T07:18:53Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1023949418) at 2022-01-27 11:18 PM PST -,2022-01-28T07:18:55Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1023949435) at 2022-01-27 11:18 PM PST -,2022-01-28T07:19:03Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1023949494) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:07Z,- null commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1023949533) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:13Z,- null commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1023949581) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:21Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1023949653) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:23Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1023949671) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:25Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1023949690) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:27Z,- null commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1023949715) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:30Z,- null commented on issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1023949740) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:32Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1023949763) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:33Z,- null commented on issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1023949784) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:36Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1023949805) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:37Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1023949824) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:39Z,- null commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1023949847) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:42Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1023949864) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:45Z,- null commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1023949892) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:53Z,- null commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1023949971) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:57Z,- null commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1023950014) at 2022-01-27 11:19 PM PST -,2022-01-28T07:19:59Z,- null commented on issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1023950027) at 2022-01-27 11:19 PM PST -,2022-01-28T07:20:01Z,- null commented on issue: [2702](https://github.com/hackforla/website/issues/2702#issuecomment-1023950050) at 2022-01-27 11:20 PM PST -,2022-01-28T07:20:04Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1023950081) at 2022-01-27 11:20 PM PST -,2022-01-29T22:07:01Z,- null commented on issue: [2726](https://github.com/hackforla/website/issues/2726#issuecomment-1024995606) at 2022-01-29 02:07 PM PST -,2022-01-30T18:36:54Z,- null commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1025203152) at 2022-01-30 10:36 AM PST -,2022-01-31T04:22:37Z,- null commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1025366265) at 2022-01-30 08:22 PM PST -,2022-01-31T17:39:57Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1026037336) at 2022-01-31 09:39 AM PST -,2022-02-01T19:12:10Z,- null commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1027194199) at 2022-02-01 11:12 AM PST -,2022-02-02T21:30:44Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1028376174) at 2022-02-02 01:30 PM PST -,2022-02-04T07:15:54Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1029716661) at 2022-02-03 11:15 PM PST -,2022-02-04T07:16:02Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1029716740) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:08Z,- null commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1029716778) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:21Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1029716881) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:23Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1029716897) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:28Z,- null commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1029716937) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:36Z,- null commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1029717009) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:38Z,- null commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1029717039) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:47Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1029717096) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:50Z,- null commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1029717129) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:52Z,- null commented on issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1029717143) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:55Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1029717158) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:56Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1029717184) at 2022-02-03 11:16 PM PST -,2022-02-04T07:16:58Z,- null commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1029717206) at 2022-02-03 11:16 PM PST -,2022-02-04T07:17:03Z,- null commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1029717249) at 2022-02-03 11:17 PM PST -,2022-02-04T07:17:08Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1029717284) at 2022-02-03 11:17 PM PST -,2022-02-04T07:17:14Z,- null commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1029717331) at 2022-02-03 11:17 PM PST -,2022-02-04T07:17:17Z,- null commented on issue: [2702](https://github.com/hackforla/website/issues/2702#issuecomment-1029717350) at 2022-02-03 11:17 PM PST -,2022-02-04T07:17:26Z,- null commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1029717436) at 2022-02-03 11:17 PM PST -,2022-02-04T07:17:28Z,- null commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1029717446) at 2022-02-03 11:17 PM PST -,2022-02-04T07:17:30Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1029717456) at 2022-02-03 11:17 PM PST -,2022-02-04T18:14:15Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1030233146) at 2022-02-04 10:14 AM PST -,2022-02-05T03:00:20Z,- null commented on issue: [2737](https://github.com/hackforla/website/issues/2737#issuecomment-1030508323) at 2022-02-04 07:00 PM PST -,2022-02-05T20:34:34Z,- null commented on issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1030694585) at 2022-02-05 12:34 PM PST -,2022-02-05T20:44:01Z,- null commented on issue: [2740](https://github.com/hackforla/website/issues/2740#issuecomment-1030695848) at 2022-02-05 12:44 PM PST -,2022-02-07T00:17:50Z,- null commented on issue: [2743](https://github.com/hackforla/website/issues/2743#issuecomment-1030950232) at 2022-02-06 04:17 PM PST -,2022-02-07T18:22:08Z,- null commented on issue: [2744](https://github.com/hackforla/website/issues/2744#issuecomment-1031776832) at 2022-02-07 10:22 AM PST -,2022-02-07T21:26:45Z,- null commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1031942460) at 2022-02-07 01:26 PM PST -,2022-02-07T22:19:27Z,- null commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1031993012) at 2022-02-07 02:19 PM PST -,2022-02-08T03:23:41Z,- null commented on issue: [2747](https://github.com/hackforla/website/issues/2747#issuecomment-1032174557) at 2022-02-07 07:23 PM PST -,2022-02-08T03:48:03Z,- null commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1032185058) at 2022-02-07 07:48 PM PST -,2022-02-08T03:52:55Z,- null commented on issue: [2749](https://github.com/hackforla/website/issues/2749#issuecomment-1032186866) at 2022-02-07 07:52 PM PST -,2022-02-08T05:33:49Z,- null commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1032230841) at 2022-02-07 09:33 PM PST -,2022-02-08T19:26:09Z,- null commented on issue: [2751](https://github.com/hackforla/website/issues/2751#issuecomment-1032979526) at 2022-02-08 11:26 AM PST -,2022-02-09T00:14:47Z,- null commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-1033191074) at 2022-02-08 04:14 PM PST -,2022-02-09T01:48:12Z,- null commented on issue: [2754](https://github.com/hackforla/website/issues/2754#issuecomment-1033247749) at 2022-02-08 05:48 PM PST -,2022-02-09T06:41:20Z,- null commented on issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1033403336) at 2022-02-08 10:41 PM PST -,2022-02-09T06:57:49Z,- null commented on issue: [2759](https://github.com/hackforla/website/issues/2759#issuecomment-1033411632) at 2022-02-08 10:57 PM PST -,2022-02-09T18:43:07Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1034079778) at 2022-02-09 10:43 AM PST -,2022-02-09T22:01:10Z,- null commented on issue: [2760](https://github.com/hackforla/website/issues/2760#issuecomment-1034232970) at 2022-02-09 02:01 PM PST -,2022-02-10T20:14:05Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1035451202) at 2022-02-10 12:14 PM PST -,2022-02-11T01:43:32Z,- null commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1035708537) at 2022-02-10 05:43 PM PST -,2022-02-11T03:40:08Z,- null commented on issue: [2764](https://github.com/hackforla/website/issues/2764#issuecomment-1035854914) at 2022-02-10 07:40 PM PST -,2022-02-11T07:17:32Z,- null commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1035936841) at 2022-02-10 11:17 PM PST -,2022-02-11T07:17:38Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1035936899) at 2022-02-10 11:17 PM PST -,2022-02-11T07:17:46Z,- null commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1035936953) at 2022-02-10 11:17 PM PST -,2022-02-11T07:17:51Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1035936993) at 2022-02-10 11:17 PM PST -,2022-02-11T07:18:06Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1035937087) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:08Z,- null commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-1035937099) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:20Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1035937181) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:22Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1035937190) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:24Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1035937207) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:28Z,- null commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1035937232) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:30Z,- null commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1035937251) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:36Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1035937289) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:42Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1035937320) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:44Z,- null commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1035937338) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:47Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1035937359) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:49Z,- null commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1035937373) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:51Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1035937396) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:53Z,- null commented on issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-1035937422) at 2022-02-10 11:18 PM PST -,2022-02-11T07:18:56Z,- null commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1035937446) at 2022-02-10 11:18 PM PST -,2022-02-11T07:19:00Z,- null commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1035937481) at 2022-02-10 11:19 PM PST -,2022-02-11T07:19:05Z,- null commented on issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-1035937522) at 2022-02-10 11:19 PM PST -,2022-02-11T07:19:11Z,- null commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1035937559) at 2022-02-10 11:19 PM PST -,2022-02-11T07:19:13Z,- null commented on issue: [2570](https://github.com/hackforla/website/issues/2570#issuecomment-1035937575) at 2022-02-10 11:19 PM PST -,2022-02-12T22:05:23Z,- null commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1037518309) at 2022-02-12 02:05 PM PST -,2022-02-12T22:56:04Z,- null commented on issue: [2770](https://github.com/hackforla/website/issues/2770#issuecomment-1037551661) at 2022-02-12 02:56 PM PST -,2022-02-13T01:58:27Z,- null commented on issue: [2771](https://github.com/hackforla/website/issues/2771#issuecomment-1037667758) at 2022-02-12 05:58 PM PST -,2022-02-13T03:25:16Z,- null commented on issue: [2773](https://github.com/hackforla/website/issues/2773#issuecomment-1037720460) at 2022-02-12 07:25 PM PST -,2022-02-13T08:45:18Z,- null commented on issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-13 12:45 AM PST -,2022-02-13T10:42:49Z,- null commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1038004326) at 2022-02-13 02:42 AM PST -,2022-02-13T10:49:11Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1038008422) at 2022-02-13 02:49 AM PST -,2022-02-16T03:19:04Z,- null commented on issue: [2781](https://github.com/hackforla/website/issues/2781#issuecomment-1041054422) at 2022-02-15 07:19 PM PST -,2022-02-16T03:51:44Z,- null commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1041075130) at 2022-02-15 07:51 PM PST -,2022-02-16T03:52:48Z,- null commented on issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1041075473) at 2022-02-15 07:52 PM PST -,2022-02-16T03:52:51Z,- null commented on issue: [2784](https://github.com/hackforla/website/issues/2784#issuecomment-1041075531) at 2022-02-15 07:52 PM PST -,2022-02-16T21:53:42Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1042346717) at 2022-02-16 01:53 PM PST -,2022-02-18T07:18:52Z,- null commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1044047799) at 2022-02-17 11:18 PM PST -,2022-02-18T07:19:03Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1044047994) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:22Z,- null commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1044048317) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:27Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1044048401) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:29Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1044048436) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:32Z,- null commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1044048477) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:36Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1044048542) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:41Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1044048627) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:43Z,- null commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1044048668) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:46Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1044048702) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:47Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1044048733) at 2022-02-17 11:19 PM PST -,2022-02-18T07:19:53Z,- null commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1044048831) at 2022-02-17 11:19 PM PST -,2022-02-19T01:08:24Z,- null commented on issue: [2791](https://github.com/hackforla/website/issues/2791#issuecomment-1045479483) at 2022-02-18 05:08 PM PST -,2022-02-19T01:24:29Z,- null commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1045501013) at 2022-02-18 05:24 PM PST -,2022-02-19T01:29:09Z,- null commented on issue: [2793](https://github.com/hackforla/website/issues/2793#issuecomment-1045507195) at 2022-02-18 05:29 PM PST -,2022-02-19T01:33:17Z,- null commented on issue: [2794](https://github.com/hackforla/website/issues/2794#issuecomment-1045512593) at 2022-02-18 05:33 PM PST -,2022-02-19T01:39:23Z,- null commented on issue: [2795](https://github.com/hackforla/website/issues/2795#issuecomment-1045520603) at 2022-02-18 05:39 PM PST -,2022-02-19T01:45:25Z,- null commented on issue: [2796](https://github.com/hackforla/website/issues/2796#issuecomment-1045528515) at 2022-02-18 05:45 PM PST -,2022-02-19T01:57:17Z,- null commented on issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1045544360) at 2022-02-18 05:57 PM PST -,2022-02-19T02:04:15Z,- null commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1045553249) at 2022-02-18 06:04 PM PST -,2022-02-19T20:02:42Z,- null commented on issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1046093336) at 2022-02-19 12:02 PM PST -,2022-02-19T20:11:21Z,- null commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1046095089) at 2022-02-19 12:11 PM PST -,2022-02-19T21:49:04Z,- null commented on issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1046109777) at 2022-02-19 01:49 PM PST -,2022-02-20T01:40:03Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1046139805) at 2022-02-19 05:40 PM PST -,2022-02-20T01:40:20Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1046139825) at 2022-02-19 05:40 PM PST -,2022-02-20T01:40:36Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1046139858) at 2022-02-19 05:40 PM PST -,2022-02-20T01:40:44Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1046139871) at 2022-02-19 05:40 PM PST -,2022-02-20T01:40:51Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1046139889) at 2022-02-19 05:40 PM PST -,2022-02-20T01:40:53Z,- null commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1046139898) at 2022-02-19 05:40 PM PST -,2022-02-20T01:40:56Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1046139910) at 2022-02-19 05:40 PM PST -,2022-02-20T01:40:59Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1046139918) at 2022-02-19 05:40 PM PST -,2022-02-20T01:41:02Z,- null commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1046139922) at 2022-02-19 05:41 PM PST -,2022-02-20T01:41:05Z,- null commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1046139928) at 2022-02-19 05:41 PM PST -,2022-02-20T01:41:08Z,- null commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1046139934) at 2022-02-19 05:41 PM PST -,2022-02-20T01:47:35Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1046140682) at 2022-02-19 05:47 PM PST -,2022-02-20T01:47:46Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1046140714) at 2022-02-19 05:47 PM PST -,2022-02-20T01:47:56Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1046140747) at 2022-02-19 05:47 PM PST -,2022-02-20T01:48:01Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1046140771) at 2022-02-19 05:48 PM PST -,2022-02-20T01:48:06Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1046140787) at 2022-02-19 05:48 PM PST -,2022-02-20T01:48:08Z,- null commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1046140790) at 2022-02-19 05:48 PM PST -,2022-02-20T01:48:10Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1046140797) at 2022-02-19 05:48 PM PST -,2022-02-20T01:48:12Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1046140808) at 2022-02-19 05:48 PM PST -,2022-02-20T01:48:14Z,- null commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1046140815) at 2022-02-19 05:48 PM PST -,2022-02-20T01:48:16Z,- null commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1046140816) at 2022-02-19 05:48 PM PST -,2022-02-20T01:48:19Z,- null commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1046140828) at 2022-02-19 05:48 PM PST -,2022-02-20T10:43:24Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1046209362) at 2022-02-20 02:43 AM PST -,2022-02-20T10:43:39Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1046209406) at 2022-02-20 02:43 AM PST -,2022-02-20T10:43:55Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1046209436) at 2022-02-20 02:43 AM PST -,2022-02-20T10:44:03Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1046209455) at 2022-02-20 02:44 AM PST -,2022-02-20T10:44:10Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1046209476) at 2022-02-20 02:44 AM PST -,2022-02-20T10:44:13Z,- null commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1046209487) at 2022-02-20 02:44 AM PST -,2022-02-20T10:44:16Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1046209491) at 2022-02-20 02:44 AM PST -,2022-02-20T10:44:18Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1046209493) at 2022-02-20 02:44 AM PST -,2022-02-20T10:44:21Z,- null commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1046209496) at 2022-02-20 02:44 AM PST -,2022-02-20T10:44:24Z,- null commented on issue: [2690](https://github.com/hackforla/website/issues/2690#issuecomment-1046209503) at 2022-02-20 02:44 AM PST -,2022-02-20T10:44:27Z,- null commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1046209506) at 2022-02-20 02:44 AM PST -,2022-02-20T19:51:42Z,- null commented on issue: [2805](https://github.com/hackforla/website/issues/2805#issuecomment-1046308523) at 2022-02-20 11:51 AM PST -,2022-02-20T20:00:47Z,- null commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1046309932) at 2022-02-20 12:00 PM PST -,2022-02-20T20:00:53Z,- null commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046309953) at 2022-02-20 12:00 PM PST -,2022-02-20T20:02:29Z,- null commented on issue: [2808](https://github.com/hackforla/website/issues/2808#issuecomment-1046310234) at 2022-02-20 12:02 PM PST -,2022-02-20T20:08:47Z,- null commented on issue: [2809](https://github.com/hackforla/website/issues/2809#issuecomment-1046311281) at 2022-02-20 12:08 PM PST -,2022-02-20T20:08:53Z,- null commented on issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046311297) at 2022-02-20 12:08 PM PST -,2022-02-20T20:24:47Z,- null commented on issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1046314101) at 2022-02-20 12:24 PM PST -,2022-02-20T20:29:17Z,- null commented on issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1046314894) at 2022-02-20 12:29 PM PST -,2022-02-20T20:33:25Z,- null commented on issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1046315574) at 2022-02-20 12:33 PM PST -,2022-02-20T20:36:18Z,- null commented on issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1046316041) at 2022-02-20 12:36 PM PST -,2022-02-20T20:38:25Z,- null commented on issue: [2815](https://github.com/hackforla/website/issues/2815#issuecomment-1046316414) at 2022-02-20 12:38 PM PST -,2022-02-20T20:42:39Z,- null commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1046317017) at 2022-02-20 12:42 PM PST -,2022-02-20T20:45:34Z,- null commented on issue: [2817](https://github.com/hackforla/website/issues/2817#issuecomment-1046317441) at 2022-02-20 12:45 PM PST -,2022-02-20T20:49:50Z,- null commented on issue: [2818](https://github.com/hackforla/website/issues/2818#issuecomment-1046318181) at 2022-02-20 12:49 PM PST -,2022-02-20T22:06:03Z,- null commented on issue: [2820](https://github.com/hackforla/website/issues/2820#issuecomment-1046330525) at 2022-02-20 02:06 PM PST -,2022-02-21T01:02:49Z,- null commented on issue: [2821](https://github.com/hackforla/website/issues/2821#issuecomment-1046372753) at 2022-02-20 05:02 PM PST -,2022-02-21T01:07:37Z,- null commented on issue: [2822](https://github.com/hackforla/website/issues/2822#issuecomment-1046374562) at 2022-02-20 05:07 PM PST -,2022-02-21T01:12:32Z,- null commented on issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1046376579) at 2022-02-20 05:12 PM PST -,2022-02-21T01:20:26Z,- null commented on issue: [2824](https://github.com/hackforla/website/issues/2824#issuecomment-1046380875) at 2022-02-20 05:20 PM PST -,2022-02-21T01:24:09Z,- null commented on issue: [2825](https://github.com/hackforla/website/issues/2825#issuecomment-1046382917) at 2022-02-20 05:24 PM PST -,2022-02-21T14:41:26Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1046949934) at 2022-02-21 06:41 AM PST -,2022-02-21T14:56:01Z,- null commented on issue: [2826](https://github.com/hackforla/website/issues/2826#issuecomment-1046962915) at 2022-02-21 06:56 AM PST -,2022-02-21T15:00:24Z,- null commented on issue: [2827](https://github.com/hackforla/website/issues/2827#issuecomment-1046967053) at 2022-02-21 07:00 AM PST -,2022-02-21T15:05:33Z,- null commented on issue: [2828](https://github.com/hackforla/website/issues/2828#issuecomment-1046972078) at 2022-02-21 07:05 AM PST -,2022-02-21T15:08:58Z,- null commented on issue: [2829](https://github.com/hackforla/website/issues/2829#issuecomment-1046975629) at 2022-02-21 07:08 AM PST -,2022-02-21T18:13:43Z,- null commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1047129584) at 2022-02-21 10:13 AM PST -,2022-02-21T18:16:09Z,- null commented on issue: [2831](https://github.com/hackforla/website/issues/2831#issuecomment-1047131306) at 2022-02-21 10:16 AM PST -,2022-02-21T18:19:37Z,- null commented on issue: [2832](https://github.com/hackforla/website/issues/2832#issuecomment-1047133788) at 2022-02-21 10:19 AM PST -,2022-02-21T18:24:44Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1047137128) at 2022-02-21 10:24 AM PST -,2022-02-21T18:29:10Z,- null commented on issue: [2834](https://github.com/hackforla/website/issues/2834#issuecomment-1047139925) at 2022-02-21 10:29 AM PST -,2022-02-21T18:54:01Z,- null commented on issue: [2835](https://github.com/hackforla/website/issues/2835#issuecomment-1047152850) at 2022-02-21 10:54 AM PST -,2022-02-21T18:57:38Z,- null commented on issue: [2836](https://github.com/hackforla/website/issues/2836#issuecomment-1047154706) at 2022-02-21 10:57 AM PST -,2022-02-22T03:19:07Z,- null commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1047387113) at 2022-02-21 07:19 PM PST -,2022-02-22T03:19:10Z,- null commented on issue: [2838](https://github.com/hackforla/website/issues/2838#issuecomment-1047387139) at 2022-02-21 07:19 PM PST -,2022-02-22T04:27:26Z,- null commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1047414308) at 2022-02-21 08:27 PM PST -,2022-02-22T17:06:14Z,- null commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1048016900) at 2022-02-22 09:06 AM PST -,2022-02-22T19:31:17Z,- null commented on issue: [2842](https://github.com/hackforla/website/issues/2842#issuecomment-1048140042) at 2022-02-22 11:31 AM PST -,2022-02-22T19:33:46Z,- null commented on issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1048142134) at 2022-02-22 11:33 AM PST -,2022-02-22T19:36:37Z,- null commented on issue: [2844](https://github.com/hackforla/website/issues/2844#issuecomment-1048144299) at 2022-02-22 11:36 AM PST -,2022-02-22T19:39:04Z,- null commented on issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1048146239) at 2022-02-22 11:39 AM PST -,2022-02-22T19:42:20Z,- null commented on issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1048148664) at 2022-02-22 11:42 AM PST -,2022-02-22T19:45:57Z,- null commented on issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1048151464) at 2022-02-22 11:45 AM PST -,2022-02-22T23:33:16Z,- null commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1048311439) at 2022-02-22 03:33 PM PST -,2022-02-22T23:41:49Z,- null commented on issue: [2849](https://github.com/hackforla/website/issues/2849#issuecomment-1048315743) at 2022-02-22 03:41 PM PST -,2022-02-22T23:48:29Z,- null commented on issue: [2850](https://github.com/hackforla/website/issues/2850#issuecomment-1048319128) at 2022-02-22 03:48 PM PST -,2022-02-22T23:54:15Z,- null commented on issue: [2851](https://github.com/hackforla/website/issues/2851#issuecomment-1048322029) at 2022-02-22 03:54 PM PST -,2022-02-23T00:18:37Z,- null commented on issue: [2852](https://github.com/hackforla/website/issues/2852#issuecomment-1048335157) at 2022-02-22 04:18 PM PST -,2022-02-23T00:24:11Z,- null commented on issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1048338245) at 2022-02-22 04:24 PM PST -,2022-02-23T04:00:35Z,- null commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1048429020) at 2022-02-22 08:00 PM PST -,2022-02-23T04:08:40Z,- null commented on issue: [2856](https://github.com/hackforla/website/issues/2856#issuecomment-1048432526) at 2022-02-22 08:08 PM PST -,2022-02-23T04:12:45Z,- null commented on issue: [2857](https://github.com/hackforla/website/issues/2857#issuecomment-1048434128) at 2022-02-22 08:12 PM PST -,2022-02-23T04:18:56Z,- null commented on issue: [2858](https://github.com/hackforla/website/issues/2858#issuecomment-1048436585) at 2022-02-22 08:18 PM PST -,2022-02-23T04:22:21Z,- null commented on issue: [2859](https://github.com/hackforla/website/issues/2859#issuecomment-1048437771) at 2022-02-22 08:22 PM PST -,2022-02-23T04:50:05Z,- null commented on issue: [2860](https://github.com/hackforla/website/issues/2860#issuecomment-1048447219) at 2022-02-22 08:50 PM PST -,2022-02-23T04:57:54Z,- null commented on issue: [2861](https://github.com/hackforla/website/issues/2861#issuecomment-1048449600) at 2022-02-22 08:57 PM PST -,2022-02-23T05:43:10Z,- null commented on issue: [2863](https://github.com/hackforla/website/issues/2863#issuecomment-1048465499) at 2022-02-22 09:43 PM PST -,2022-02-23T05:45:59Z,- null commented on issue: [2864](https://github.com/hackforla/website/issues/2864#issuecomment-1048466377) at 2022-02-22 09:45 PM PST -,2022-02-23T05:48:55Z,- null commented on issue: [2865](https://github.com/hackforla/website/issues/2865#issuecomment-1048467439) at 2022-02-22 09:48 PM PST -,2022-02-23T05:52:39Z,- null commented on issue: [2866](https://github.com/hackforla/website/issues/2866#issuecomment-1048468751) at 2022-02-22 09:52 PM PST -,2022-02-23T05:55:53Z,- null commented on issue: [2867](https://github.com/hackforla/website/issues/2867#issuecomment-1048469750) at 2022-02-22 09:55 PM PST -,2022-02-23T06:00:30Z,- null commented on issue: [2868](https://github.com/hackforla/website/issues/2868#issuecomment-1048471373) at 2022-02-22 10:00 PM PST -,2022-02-23T06:04:14Z,- null commented on issue: [2869](https://github.com/hackforla/website/issues/2869#issuecomment-1048472848) at 2022-02-22 10:04 PM PST -,2022-02-23T06:06:42Z,- null commented on issue: [2870](https://github.com/hackforla/website/issues/2870#issuecomment-1048473948) at 2022-02-22 10:06 PM PST -,2022-02-23T06:09:42Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1048475227) at 2022-02-22 10:09 PM PST -,2022-02-23T16:59:27Z,- null commented on issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1048999173) at 2022-02-23 08:59 AM PST -,2022-02-23T17:06:50Z,- null commented on issue: [2874](https://github.com/hackforla/website/issues/2874#issuecomment-1049006759) at 2022-02-23 09:06 AM PST -,2022-02-23T17:10:59Z,- null commented on issue: [2875](https://github.com/hackforla/website/issues/2875#issuecomment-1049010963) at 2022-02-23 09:10 AM PST -,2022-02-23T18:36:12Z,- null commented on issue: [2876](https://github.com/hackforla/website/issues/2876#issuecomment-1049090274) at 2022-02-23 10:36 AM PST -,2022-02-23T18:41:37Z,- null commented on issue: [2877](https://github.com/hackforla/website/issues/2877#issuecomment-1049094817) at 2022-02-23 10:41 AM PST -,2022-02-23T18:45:38Z,- null commented on issue: [2878](https://github.com/hackforla/website/issues/2878#issuecomment-1049097964) at 2022-02-23 10:45 AM PST -,2022-02-25T02:59:29Z,- null commented on issue: [2886](https://github.com/hackforla/website/issues/2886#issuecomment-1050471253) at 2022-02-24 06:59 PM PST -,2022-02-25T05:04:14Z,- null commented on issue: [2887](https://github.com/hackforla/website/issues/2887#issuecomment-1050524795) at 2022-02-24 09:04 PM PST -,2022-02-25T07:18:50Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1050597978) at 2022-02-24 11:18 PM PST -,2022-02-25T07:19:02Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1050598069) at 2022-02-24 11:19 PM PST -,2022-02-25T07:19:04Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1050598087) at 2022-02-24 11:19 PM PST -,2022-02-25T07:19:10Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1050598145) at 2022-02-24 11:19 PM PST -,2022-02-25T07:19:14Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1050598182) at 2022-02-24 11:19 PM PST -,2022-02-25T07:19:18Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1050598205) at 2022-02-24 11:19 PM PST -,2022-02-25T07:19:20Z,- null commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1050598219) at 2022-02-24 11:19 PM PST -,2022-02-25T13:41:45Z,- null commented on issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1050863984) at 2022-02-25 05:41 AM PST -,2022-02-26T04:07:25Z,- null commented on issue: [2890](https://github.com/hackforla/website/issues/2890#issuecomment-1051559621) at 2022-02-25 08:07 PM PST -,2022-02-26T05:40:15Z,- null commented on issue: [2891](https://github.com/hackforla/website/issues/2891#issuecomment-1051621260) at 2022-02-25 09:40 PM PST -,2022-02-26T06:01:54Z,- null commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1051648112) at 2022-02-25 10:01 PM PST -,2022-02-27T04:53:42Z,- null commented on issue: [2895](https://github.com/hackforla/website/issues/2895#issuecomment-1053129439) at 2022-02-26 08:53 PM PST -,2022-02-27T08:50:06Z,- null commented on issue: [2896](https://github.com/hackforla/website/issues/2896#issuecomment-1053380851) at 2022-02-27 12:50 AM PST -,2022-02-27T10:54:52Z,- null commented on issue: [2897](https://github.com/hackforla/website/issues/2897#issuecomment-1053494402) at 2022-02-27 02:54 AM PST -,2022-02-27T11:52:31Z,- null commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1053530633) at 2022-02-27 03:52 AM PST -,2022-02-27T18:54:56Z,- null commented on issue: [2900](https://github.com/hackforla/website/issues/2900#issuecomment-1053645233) at 2022-02-27 10:54 AM PST -,2022-02-27T23:52:58Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1053728142) at 2022-02-27 03:52 PM PST -,2022-02-28T07:52:43Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1053981229) at 2022-02-27 11:52 PM PST -,2022-02-28T08:15:47Z,- null commented on issue: [2902](https://github.com/hackforla/website/issues/2902#issuecomment-1053998283) at 2022-02-28 12:15 AM PST -,2022-03-01T04:02:14Z,- null commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1054982798) at 2022-02-28 08:02 PM PST -,2022-03-01T18:40:21Z,- null commented on issue: [2907](https://github.com/hackforla/website/issues/2907#issuecomment-1055742563) at 2022-03-01 10:40 AM PST -,2022-03-01T18:55:26Z,- null commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1055753742) at 2022-03-01 10:55 AM PST -,2022-03-01T22:54:18Z,- null commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1055941481) at 2022-03-01 02:54 PM PST -,2022-03-01T23:01:32Z,- null commented on issue: [2910](https://github.com/hackforla/website/issues/2910#issuecomment-1055946104) at 2022-03-01 03:01 PM PST -,2022-03-01T23:15:49Z,- null commented on issue: [2911](https://github.com/hackforla/website/issues/2911#issuecomment-1055957771) at 2022-03-01 03:15 PM PST -,2022-03-02T00:08:33Z,- null commented on issue: [2912](https://github.com/hackforla/website/issues/2912#issuecomment-1055993965) at 2022-03-01 04:08 PM PST -,2022-03-02T01:09:00Z,- null commented on issue: [2913](https://github.com/hackforla/website/issues/2913#issuecomment-1056028927) at 2022-03-01 05:09 PM PST -,2022-03-02T01:16:20Z,- null commented on issue: [2914](https://github.com/hackforla/website/issues/2914#issuecomment-1056032919) at 2022-03-01 05:16 PM PST -,2022-03-02T16:26:08Z,- null commented on issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1057117918) at 2022-03-02 08:26 AM PST -,2022-03-02T22:13:23Z,- null commented on issue: [2917](https://github.com/hackforla/website/issues/2917#issuecomment-1057448346) at 2022-03-02 02:13 PM PST -,2022-03-03T21:52:21Z,- null commented on issue: [2919](https://github.com/hackforla/website/issues/2919#issuecomment-1058528585) at 2022-03-03 01:52 PM PST -,2022-03-03T22:26:29Z,- null commented on issue: [2920](https://github.com/hackforla/website/issues/2920#issuecomment-1058569011) at 2022-03-03 02:26 PM PST -,2022-03-03T22:31:14Z,- null commented on issue: [2921](https://github.com/hackforla/website/issues/2921#issuecomment-1058573652) at 2022-03-03 02:31 PM PST -,2022-03-03T22:35:11Z,- null commented on issue: [2922](https://github.com/hackforla/website/issues/2922#issuecomment-1058577349) at 2022-03-03 02:35 PM PST -,2022-03-03T22:50:00Z,- null commented on issue: [2923](https://github.com/hackforla/website/issues/2923#issuecomment-1058593878) at 2022-03-03 02:50 PM PST -,2022-03-03T22:59:00Z,- null commented on issue: [2924](https://github.com/hackforla/website/issues/2924#issuecomment-1058608959) at 2022-03-03 02:59 PM PST -,2022-03-03T23:02:32Z,- null commented on issue: [2925](https://github.com/hackforla/website/issues/2925#issuecomment-1058615949) at 2022-03-03 03:02 PM PST -,2022-03-03T23:06:47Z,- null commented on issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1058623125) at 2022-03-03 03:06 PM PST -,2022-03-03T23:10:31Z,- null commented on issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1058629344) at 2022-03-03 03:10 PM PST -,2022-03-04T07:18:51Z,- null commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1058901102) at 2022-03-03 11:18 PM PST -,2022-03-04T07:18:57Z,- null commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1058901159) at 2022-03-03 11:18 PM PST -,2022-03-04T07:19:07Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1058901269) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:13Z,- null commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1058901332) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:20Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1058901405) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:22Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1058901431) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:24Z,- null commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1058901450) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:27Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1058901487) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:30Z,- null commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1058901510) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:32Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1058901530) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:35Z,- null commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1058901564) at 2022-03-03 11:19 PM PST -,2022-03-04T07:19:37Z,- null commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1058901577) at 2022-03-03 11:19 PM PST -,2022-03-04T19:24:55Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1059449839) at 2022-03-04 11:24 AM PST -,2022-03-05T19:51:29Z,- null commented on issue: [2928](https://github.com/hackforla/website/issues/2928#issuecomment-1059822554) at 2022-03-05 11:51 AM PST -,2022-03-05T20:14:22Z,- null commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1059825318) at 2022-03-05 12:14 PM PST -,2022-03-05T22:04:42Z,- null commented on issue: [2930](https://github.com/hackforla/website/issues/2930#issuecomment-1059838228) at 2022-03-05 02:04 PM PST -,2022-03-05T22:06:31Z,- null commented on issue: [2931](https://github.com/hackforla/website/issues/2931#issuecomment-1059838534) at 2022-03-05 02:06 PM PST -,2022-03-05T22:14:06Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1059839860) at 2022-03-05 02:14 PM PST -,2022-03-05T22:31:15Z,- null commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1059842879) at 2022-03-05 02:31 PM PST -,2022-03-05T22:43:11Z,- null commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1059844313) at 2022-03-05 02:43 PM PST -,2022-03-06T00:53:32Z,- null commented on issue: [2935](https://github.com/hackforla/website/issues/2935#issuecomment-1059863367) at 2022-03-05 04:53 PM PST -,2022-03-06T17:29:28Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1060005426) at 2022-03-06 09:29 AM PST -,2022-03-06T17:35:59Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1060006676) at 2022-03-06 09:35 AM PST -,2022-03-07T20:20:23Z,- null commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1061095931) at 2022-03-07 12:20 PM PST -,2022-03-08T03:59:23Z,- null commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1061380867) at 2022-03-07 07:59 PM PST -,2022-03-08T04:45:18Z,- null commented on issue: [2938](https://github.com/hackforla/website/issues/2938#issuecomment-1061401550) at 2022-03-07 08:45 PM PST -,2022-03-08T08:33:06Z,- null commented on issue: [2939](https://github.com/hackforla/website/issues/2939#issuecomment-1061530603) at 2022-03-08 12:33 AM PST -,2022-03-08T12:15:34Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1061715812) at 2022-03-08 04:15 AM PST -,2022-03-08T18:14:31Z,- null commented on issue: [2941](https://github.com/hackforla/website/issues/2941#issuecomment-1062066453) at 2022-03-08 10:14 AM PST -,2022-03-08T18:30:33Z,- null commented on issue: [2942](https://github.com/hackforla/website/issues/2942#issuecomment-1062079991) at 2022-03-08 10:30 AM PST -,2022-03-09T19:02:30Z,- null commented on issue: [2945](https://github.com/hackforla/website/issues/2945#issuecomment-1063258221) at 2022-03-09 11:02 AM PST -,2022-03-09T19:05:00Z,- null commented on issue: [2946](https://github.com/hackforla/website/issues/2946#issuecomment-1063260310) at 2022-03-09 11:05 AM PST -,2022-03-09T19:09:04Z,- null commented on issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1063263528) at 2022-03-09 11:09 AM PST -,2022-03-09T19:12:43Z,- null commented on issue: [2948](https://github.com/hackforla/website/issues/2948#issuecomment-1063266543) at 2022-03-09 11:12 AM PST -,2022-03-09T19:17:15Z,- null commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1063270297) at 2022-03-09 11:17 AM PST -,2022-03-09T22:39:00Z,- null commented on issue: [2950](https://github.com/hackforla/website/issues/2950#issuecomment-1063450465) at 2022-03-09 02:39 PM PST -,2022-03-09T23:04:47Z,- null commented on issue: [2951](https://github.com/hackforla/website/issues/2951#issuecomment-1063467713) at 2022-03-09 03:04 PM PST -,2022-03-10T00:04:49Z,- null commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1063501879) at 2022-03-09 04:04 PM PST -,2022-03-10T06:46:30Z,- null commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-03-09 10:46 PM PST -,2022-03-10T07:33:41Z,- null commented on issue: [2954](https://github.com/hackforla/website/issues/2954#issuecomment-1063747543) at 2022-03-09 11:33 PM PST -,2022-03-10T09:59:12Z,- null commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1063874330) at 2022-03-10 01:59 AM PST -,2022-03-10T10:17:49Z,- null commented on issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1063891031) at 2022-03-10 02:17 AM PST -,2022-03-10T20:34:35Z,- null commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1064479348) at 2022-03-10 12:34 PM PST -,2022-03-10T22:34:03Z,- null commented on issue: [2960](https://github.com/hackforla/website/issues/2960#issuecomment-1064576789) at 2022-03-10 02:34 PM PST -,2022-03-11T02:14:29Z,- null commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1064702747) at 2022-03-10 06:14 PM PST -,2022-03-11T06:45:18Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1064822725) at 2022-03-10 10:45 PM PST -,2022-03-11T07:19:16Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1064841880) at 2022-03-10 11:19 PM PST -,2022-03-11T07:19:30Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1064842003) at 2022-03-10 11:19 PM PST -,2022-03-11T07:19:33Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1064842033) at 2022-03-10 11:19 PM PST -,2022-03-11T07:19:40Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1064842097) at 2022-03-10 11:19 PM PST -,2022-03-11T07:19:43Z,- null commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1064842127) at 2022-03-10 11:19 PM PST -,2022-03-11T07:19:48Z,- null commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1064842187) at 2022-03-10 11:19 PM PST -,2022-03-11T19:44:19Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1065435083) at 2022-03-11 11:44 AM PST -,2022-03-12T22:55:59Z,- null commented on issue: [2972](https://github.com/hackforla/website/issues/2972#issuecomment-1065979857) at 2022-03-12 03:55 PM PDT -,2022-03-13T16:06:00Z,- null commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1066132147) at 2022-03-13 09:06 AM PDT -,2022-03-13T18:08:43Z,- null commented on issue: [2975](https://github.com/hackforla/website/issues/2975#issuecomment-1066153663) at 2022-03-13 11:08 AM PDT -,2022-03-13T18:09:20Z,- null commented on issue: [2976](https://github.com/hackforla/website/issues/2976#issuecomment-1066153755) at 2022-03-13 11:09 AM PDT -,2022-03-13T18:55:16Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1066161466) at 2022-03-13 11:55 AM PDT -,2022-03-13T21:11:58Z,- null commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1066182909) at 2022-03-13 02:11 PM PDT -,2022-03-16T02:58:01Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1068679555) at 2022-03-15 07:58 PM PDT -,2022-03-18T01:44:49Z,- null commented on issue: [2987](https://github.com/hackforla/website/issues/2987#issuecomment-1071939930) at 2022-03-17 06:44 PM PDT -,2022-03-18T07:19:24Z,- null commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1072093996) at 2022-03-18 12:19 AM PDT -,2022-03-18T07:19:40Z,- null commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1072094148) at 2022-03-18 12:19 AM PDT -,2022-03-18T07:19:51Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1072094231) at 2022-03-18 12:19 AM PDT -,2022-03-18T07:19:53Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1072094255) at 2022-03-18 12:19 AM PDT -,2022-03-18T07:20:08Z,- null commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1072094371) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:10Z,- null commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1072094403) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:13Z,- null commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1072094431) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:21Z,- null commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1072094489) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:34Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1072094622) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:37Z,- null commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1072094645) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:39Z,- null commented on issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-1072094670) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:49Z,- null commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1072094734) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:20:56Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1072094789) at 2022-03-18 12:20 AM PDT -,2022-03-18T07:21:04Z,- null commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1072094859) at 2022-03-18 12:21 AM PDT -,2022-03-18T07:21:09Z,- null commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1072094907) at 2022-03-18 12:21 AM PDT -,2022-03-18T07:21:14Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1072094957) at 2022-03-18 12:21 AM PDT -,2022-03-18T07:21:17Z,- null commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1072094978) at 2022-03-18 12:21 AM PDT -,2022-03-19T06:23:55Z,- null commented on issue: [2990](https://github.com/hackforla/website/issues/2990#issuecomment-1072952342) at 2022-03-18 11:23 PM PDT -,2022-03-20T17:08:00Z,- null commented on issue: [2993](https://github.com/hackforla/website/issues/2993#issuecomment-1073293085) at 2022-03-20 10:08 AM PDT -,2022-03-22T04:25:15Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1074712112) at 2022-03-21 09:25 PM PDT -,2022-03-23T01:24:28Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1075812568) at 2022-03-22 06:24 PM PDT -,2022-03-23T03:03:30Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1075866062) at 2022-03-22 08:03 PM PDT -,2022-03-23T18:22:42Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1076672351) at 2022-03-23 11:22 AM PDT -,2022-03-23T19:14:44Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1076726986) at 2022-03-23 12:14 PM PDT -,2022-03-25T02:16:47Z,- null commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1078587580) at 2022-03-24 07:16 PM PDT -,2022-03-25T07:19:37Z,- null commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1078728459) at 2022-03-25 12:19 AM PDT -,2022-03-25T07:20:01Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:07Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1078728773) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:09Z,- null commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1078728792) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:12Z,- null commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1078728832) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:15Z,- null commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1078728864) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:22Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1078728941) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:31Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1078729048) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:38Z,- null commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1078729135) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:40Z,- null commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1078729148) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:43Z,- null commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1078729170) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:20:46Z,- null commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1078729209) at 2022-03-25 12:20 AM PDT -,2022-03-25T07:21:11Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1078729484) at 2022-03-25 12:21 AM PDT -,2022-03-25T07:21:17Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1078729536) at 2022-03-25 12:21 AM PDT -,2022-03-25T07:21:19Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1078729563) at 2022-03-25 12:21 AM PDT -,2022-03-26T00:06:09Z,- null commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1079526002) at 2022-03-25 05:06 PM PDT -,2022-03-26T21:14:55Z,- null commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1079776078) at 2022-03-26 02:14 PM PDT -,2022-03-27T05:36:38Z,- null commented on issue: [3018](https://github.com/hackforla/website/issues/3018#issuecomment-1079844522) at 2022-03-26 10:36 PM PDT -,2022-03-28T00:36:05Z,- null commented on issue: [3019](https://github.com/hackforla/website/issues/3019#issuecomment-1080060169) at 2022-03-27 05:36 PM PDT -,2022-03-30T17:59:44Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1083446638) at 2022-03-30 10:59 AM PDT -,2022-03-31T21:50:31Z,- null commented on issue: [3022](https://github.com/hackforla/website/issues/3022#issuecomment-1085159631) at 2022-03-31 02:50 PM PDT -,2022-04-01T05:59:19Z,- null commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1085456516) at 2022-03-31 10:59 PM PDT -,2022-04-01T07:20:50Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1085525049) at 2022-04-01 12:20 AM PDT -,2022-04-01T07:20:52Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1085525076) at 2022-04-01 12:20 AM PDT -,2022-04-01T07:20:55Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1085525105) at 2022-04-01 12:20 AM PDT -,2022-04-01T07:20:58Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1085525171) at 2022-04-01 12:20 AM PDT -,2022-04-01T07:21:08Z,- null commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1085525274) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:10Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1085525300) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:16Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1085525384) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:22Z,- null commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1085525462) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:26Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1085525516) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:39Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1085525679) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:43Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1085525737) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:49Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1085525809) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:51Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1085525840) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:53Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1085525873) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:55Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1085525906) at 2022-04-01 12:21 AM PDT -,2022-04-01T07:21:57Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1085525935) at 2022-04-01 12:21 AM PDT -,2022-04-02T06:21:09Z,- null commented on issue: [3025](https://github.com/hackforla/website/issues/3025#issuecomment-1086562240) at 2022-04-01 11:21 PM PDT -,2022-04-02T08:12:11Z,- null commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-04-02 01:12 AM PDT -,2022-04-02T08:23:41Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-04-02 01:23 AM PDT -,2022-04-03T16:20:43Z,- null commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1086900939) at 2022-04-03 09:20 AM PDT -,2022-04-03T17:16:32Z,- null commented on issue: [3032](https://github.com/hackforla/website/issues/3032#issuecomment-1086911190) at 2022-04-03 10:16 AM PDT -,2022-04-07T09:12:28Z,- null commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1091394048) at 2022-04-07 02:12 AM PDT -,2022-04-07T10:17:43Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1091504315) at 2022-04-07 03:17 AM PDT -,2022-04-08T07:21:01Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1092533698) at 2022-04-08 12:21 AM PDT -,2022-04-08T07:21:25Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1092534225) at 2022-04-08 12:21 AM PDT -,2022-04-08T07:21:32Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1092534394) at 2022-04-08 12:21 AM PDT -,2022-04-08T07:21:41Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1092534623) at 2022-04-08 12:21 AM PDT -,2022-04-08T07:21:46Z,- null commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1092534764) at 2022-04-08 12:21 AM PDT -,2022-04-08T07:21:51Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1092534883) at 2022-04-08 12:21 AM PDT -,2022-04-08T07:22:00Z,- null commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1092535124) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:04Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1092535206) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:08Z,- null commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1092535308) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:11Z,- null commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1092535393) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:29Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1092535818) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:39Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1092536118) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:44Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1092536258) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:47Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1092536337) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:50Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1092536419) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:54Z,- null commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1092536516) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:22:59Z,- null commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1092536660) at 2022-04-08 12:22 AM PDT -,2022-04-08T07:23:02Z,- null commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1092536737) at 2022-04-08 12:23 AM PDT -,2022-04-10T17:22:43Z,- null commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094331934) at 2022-04-10 10:22 AM PDT -,2022-04-10T20:25:10Z,- null commented on issue: [3041](https://github.com/hackforla/website/issues/3041#issuecomment-1094362337) at 2022-04-10 01:25 PM PDT -,2022-04-11T20:25:44Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1095531752) at 2022-04-11 01:25 PM PDT -,2022-04-11T20:27:40Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1095533477) at 2022-04-11 01:27 PM PDT -,2022-04-11T20:44:48Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1095548888) at 2022-04-11 01:44 PM PDT -,2022-04-13T03:10:30Z,- null commented on issue: [3047](https://github.com/hackforla/website/issues/3047#issuecomment-1097506027) at 2022-04-12 08:10 PM PDT -,2022-04-13T03:10:47Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1097506136) at 2022-04-12 08:10 PM PDT -,2022-04-13T03:10:53Z,- null commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1097506176) at 2022-04-12 08:10 PM PDT -,2022-04-13T03:10:56Z,- null commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1097506203) at 2022-04-12 08:10 PM PDT -,2022-04-13T20:59:06Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1098481948) at 2022-04-13 01:59 PM PDT -,2022-04-13T21:55:14Z,- null commented on issue: [3051](https://github.com/hackforla/website/issues/3051#issuecomment-1098523855) at 2022-04-13 02:55 PM PDT -,2022-04-13T23:08:11Z,- null commented on issue: [3052](https://github.com/hackforla/website/issues/3052#issuecomment-1098561528) at 2022-04-13 04:08 PM PDT -,2022-04-15T02:28:58Z,- null commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1099793707) at 2022-04-14 07:28 PM PDT -,2022-04-15T02:30:30Z,- null commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1099794386) at 2022-04-14 07:30 PM PDT -,2022-04-15T02:34:06Z,- null commented on issue: [3055](https://github.com/hackforla/website/issues/3055#issuecomment-1099795930) at 2022-04-14 07:34 PM PDT -,2022-04-15T07:21:07Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1099922639) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:10Z,- null commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1099922659) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:13Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1099922715) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:23Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1099922799) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:25Z,- null commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1099922820) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:28Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1099922856) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:32Z,- null commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1099922897) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:36Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1099922939) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:37Z,- null commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1099922967) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:51Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1099923088) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:53Z,- null commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1099923109) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:21:58Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1099923184) at 2022-04-15 12:21 AM PDT -,2022-04-15T07:22:01Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1099923213) at 2022-04-15 12:22 AM PDT -,2022-04-15T07:22:03Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1099923238) at 2022-04-15 12:22 AM PDT -,2022-04-15T07:22:15Z,- null commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1099923371) at 2022-04-15 12:22 AM PDT -,2022-04-15T16:20:45Z,- null commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1100208451) at 2022-04-15 09:20 AM PDT -,2022-04-15T20:19:03Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1100374784) at 2022-04-15 01:19 PM PDT -,2022-04-16T01:32:59Z,- null commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1100500644) at 2022-04-15 06:32 PM PDT -,2022-04-17T18:39:46Z,- null commented on issue: [3060](https://github.com/hackforla/website/issues/3060#issuecomment-1100930183) at 2022-04-17 11:39 AM PDT -,2022-04-19T02:51:21Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1101940486) at 2022-04-18 07:51 PM PDT -,2022-04-19T03:28:45Z,- null commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1101956564) at 2022-04-18 08:28 PM PDT -,2022-04-19T03:50:15Z,- null commented on issue: [3066](https://github.com/hackforla/website/issues/3066#issuecomment-1101965181) at 2022-04-18 08:50 PM PDT -,2022-04-19T17:07:30Z,- null commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1102887962) at 2022-04-19 10:07 AM PDT -,2022-04-19T17:26:53Z,- null commented on issue: [3069](https://github.com/hackforla/website/issues/3069#issuecomment-1102905420) at 2022-04-19 10:26 AM PDT -,2022-04-20T03:11:57Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1103426118) at 2022-04-19 08:11 PM PDT -,2022-04-20T18:25:25Z,- null commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1104282496) at 2022-04-20 11:25 AM PDT -,2022-04-20T22:03:28Z,- null closed issue as completed: [2589](https://github.com/hackforla/website/issues/2589#event-6466520074) at 2022-04-20 03:03 PM PDT -,2022-04-20T22:41:43Z,- null commented on issue: [3071](https://github.com/hackforla/website/issues/3071#issuecomment-1104525746) at 2022-04-20 03:41 PM PDT -,2022-04-21T02:03:49Z,- null commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1104630895) at 2022-04-20 07:03 PM PDT -,2022-04-22T07:21:05Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1106098750) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:10Z,- null commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1106098819) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:16Z,- null commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1106098908) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:18Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1106098932) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:24Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1106099006) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:30Z,- null commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1106099084) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:32Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1106099106) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:56Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1106099409) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:21:58Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1106099438) at 2022-04-22 12:21 AM PDT -,2022-04-22T07:22:02Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1106099493) at 2022-04-22 12:22 AM PDT -,2022-04-22T07:22:10Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1106099583) at 2022-04-22 12:22 AM PDT -,2022-04-22T07:22:13Z,- null commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1106099625) at 2022-04-22 12:22 AM PDT -,2022-04-22T07:22:19Z,- null commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1106099704) at 2022-04-22 12:22 AM PDT -,2022-04-24T22:02:16Z,- null commented on issue: [3080](https://github.com/hackforla/website/issues/3080#issuecomment-1107926400) at 2022-04-24 03:02 PM PDT -,2022-04-25T16:43:29Z,- null commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1108802554) at 2022-04-25 09:43 AM PDT -,2022-04-29T07:21:42Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1112947962) at 2022-04-29 12:21 AM PDT -,2022-04-29T07:22:01Z,- null commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1112948154) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:22:08Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1112948240) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:22:18Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1112948333) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:22:34Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1112948519) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:22:40Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1112948589) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:22:43Z,- null commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1112948620) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:22:54Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1112948749) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:22:57Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1112948792) at 2022-04-29 12:22 AM PDT -,2022-04-29T07:23:00Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1112948822) at 2022-04-29 12:23 AM PDT -,2022-04-29T07:23:13Z,- null commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1112948961) at 2022-04-29 12:23 AM PDT -,2022-04-29T07:23:16Z,- null commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1112948997) at 2022-04-29 12:23 AM PDT -,2022-04-30T19:53:16Z,- null commented on issue: [3084](https://github.com/hackforla/website/issues/3084#issuecomment-1114044814) at 2022-04-30 12:53 PM PDT -,2022-05-02T23:30:57Z,- null commented on issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1115465887) at 2022-05-02 04:30 PM PDT -,2022-05-03T00:19:14Z,- null commented on issue: [3089](https://github.com/hackforla/website/issues/3089#issuecomment-1115490482) at 2022-05-02 05:19 PM PDT -,2022-05-03T20:06:06Z,- null commented on issue: [3090](https://github.com/hackforla/website/issues/3090#issuecomment-1116531834) at 2022-05-03 01:06 PM PDT -,2022-05-03T22:29:55Z,- null commented on issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1116721538) at 2022-05-03 03:29 PM PDT -,2022-05-03T23:20:44Z,- null commented on issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1116748918) at 2022-05-03 04:20 PM PDT -,2022-05-03T23:36:22Z,- null commented on issue: [3093](https://github.com/hackforla/website/issues/3093#issuecomment-1116761701) at 2022-05-03 04:36 PM PDT -,2022-05-03T23:49:00Z,- null commented on issue: [3094](https://github.com/hackforla/website/issues/3094#issuecomment-1116767287) at 2022-05-03 04:49 PM PDT -,2022-05-03T23:55:23Z,- null commented on issue: [3095](https://github.com/hackforla/website/issues/3095#issuecomment-1116769834) at 2022-05-03 04:55 PM PDT -,2022-05-04T00:05:55Z,- null commented on issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1116774769) at 2022-05-03 05:05 PM PDT -,2022-05-04T00:12:37Z,- null commented on issue: [3097](https://github.com/hackforla/website/issues/3097#issuecomment-1116785375) at 2022-05-03 05:12 PM PDT -,2022-05-04T00:23:02Z,- null commented on issue: [3098](https://github.com/hackforla/website/issues/3098#issuecomment-1116795715) at 2022-05-03 05:23 PM PDT -,2022-05-04T00:31:22Z,- null commented on issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1116814402) at 2022-05-03 05:31 PM PDT -,2022-05-04T00:45:14Z,- null commented on issue: [3100](https://github.com/hackforla/website/issues/3100#issuecomment-1116836777) at 2022-05-03 05:45 PM PDT -,2022-05-04T01:21:57Z,- null commented on issue: [3101](https://github.com/hackforla/website/issues/3101#issuecomment-1116849963) at 2022-05-03 06:21 PM PDT -,2022-05-04T01:29:20Z,- null commented on issue: [3102](https://github.com/hackforla/website/issues/3102#issuecomment-1116852709) at 2022-05-03 06:29 PM PDT -,2022-05-04T01:35:02Z,- null commented on issue: [3103](https://github.com/hackforla/website/issues/3103#issuecomment-1116854613) at 2022-05-03 06:35 PM PDT -,2022-05-04T01:40:57Z,- null commented on issue: [3104](https://github.com/hackforla/website/issues/3104#issuecomment-1116856377) at 2022-05-03 06:40 PM PDT -,2022-05-04T01:47:01Z,- null commented on issue: [3105](https://github.com/hackforla/website/issues/3105#issuecomment-1116858255) at 2022-05-03 06:47 PM PDT -,2022-05-04T01:53:43Z,- null commented on issue: [3106](https://github.com/hackforla/website/issues/3106#issuecomment-1116860371) at 2022-05-03 06:53 PM PDT -,2022-05-04T01:58:48Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1116862004) at 2022-05-03 06:58 PM PDT -,2022-05-06T07:20:52Z,- null commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1119329598) at 2022-05-06 12:20 AM PDT -,2022-05-06T07:21:10Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1119329814) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:21:25Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1119330001) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:21:28Z,- null commented on issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1119330039) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:21:30Z,- null commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1119330070) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:21:41Z,- null commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1119330202) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:21:47Z,- null commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1119330279) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:21:56Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1119330346) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:21:58Z,- null commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1119330367) at 2022-05-06 12:21 AM PDT -,2022-05-06T07:22:01Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1119330397) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:03Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1119330424) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:09Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1119330494) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:12Z,- null commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1119330524) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:18Z,- null commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1119330582) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:33Z,- null commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1119330778) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:35Z,- null commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1119330796) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:37Z,- null commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1119330816) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:40Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1119330836) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:42Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1119330856) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:46Z,- null commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1119330909) at 2022-05-06 12:22 AM PDT -,2022-05-06T07:22:48Z,- null commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1119330930) at 2022-05-06 12:22 AM PDT -,2022-05-06T21:33:50Z,- null commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1120023610) at 2022-05-06 02:33 PM PDT -,2022-05-06T22:12:19Z,- null commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1120046677) at 2022-05-06 03:12 PM PDT -,2022-05-07T01:25:37Z,- null commented on issue: [3111](https://github.com/hackforla/website/issues/3111#issuecomment-1120102481) at 2022-05-06 06:25 PM PDT -,2022-05-07T01:51:47Z,- null commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-1120107515) at 2022-05-06 06:51 PM PDT -,2022-05-09T06:58:43Z,- null commented on issue: [3115](https://github.com/hackforla/website/issues/3115#issuecomment-1120714819) at 2022-05-08 11:58 PM PDT -,2022-05-10T11:13:29Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1122252414) at 2022-05-10 04:13 AM PDT -,2022-05-10T22:58:57Z,- null commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1122992275) at 2022-05-10 03:58 PM PDT -,2022-05-11T03:17:02Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1123135963) at 2022-05-10 08:17 PM PDT -,2022-05-11T03:21:53Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1123138163) at 2022-05-10 08:21 PM PDT -,2022-05-11T03:21:54Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1123138174) at 2022-05-10 08:21 PM PDT -,2022-05-11T03:21:54Z,- null commented on issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1123138175) at 2022-05-10 08:21 PM PDT -,2022-05-11T03:26:21Z,- null commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1123140122) at 2022-05-10 08:26 PM PDT -,2022-05-11T03:36:32Z,- null commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1123144803) at 2022-05-10 08:36 PM PDT -,2022-05-12T01:39:47Z,- null commented on issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1124444941) at 2022-05-11 06:39 PM PDT -,2022-05-12T09:21:32Z,- null commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1124737133) at 2022-05-12 02:21 AM PDT -,2022-05-12T09:37:42Z,- null commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1124760707) at 2022-05-12 02:37 AM PDT -,2022-05-12T15:28:41Z,- null commented on issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-05-12 08:28 AM PDT -,2022-05-12T22:32:07Z,- null commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1125477916) at 2022-05-12 03:32 PM PDT -,2022-05-13T07:24:05Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1125737352) at 2022-05-13 12:24 AM PDT -,2022-05-13T07:24:25Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1125737594) at 2022-05-13 12:24 AM PDT -,2022-05-13T07:24:48Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1125737862) at 2022-05-13 12:24 AM PDT -,2022-05-13T07:24:58Z,- null commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1125738003) at 2022-05-13 12:24 AM PDT -,2022-05-13T07:25:04Z,- null commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1125738092) at 2022-05-13 12:25 AM PDT -,2022-05-13T07:25:08Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1125738140) at 2022-05-13 12:25 AM PDT -,2022-05-13T07:25:11Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1125738178) at 2022-05-13 12:25 AM PDT -,2022-05-13T07:25:13Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1125738212) at 2022-05-13 12:25 AM PDT -,2022-05-13T07:25:39Z,- null commented on issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1125738559) at 2022-05-13 12:25 AM PDT -,2022-05-13T07:25:47Z,- null commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1125738687) at 2022-05-13 12:25 AM PDT -,2022-05-13T07:25:52Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1125738746) at 2022-05-13 12:25 AM PDT -,2022-05-13T07:25:55Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1125738786) at 2022-05-13 12:25 AM PDT -,2022-05-15T16:34:17Z,- null commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1126975040) at 2022-05-15 09:34 AM PDT -,2022-05-15T16:50:26Z,- null commented on issue: [3140](https://github.com/hackforla/website/issues/3140#issuecomment-1126977419) at 2022-05-15 09:50 AM PDT -,2022-05-15T16:54:07Z,- null commented on issue: [3141](https://github.com/hackforla/website/issues/3141#issuecomment-1126977952) at 2022-05-15 09:54 AM PDT -,2022-05-15T17:02:49Z,- null commented on issue: [3142](https://github.com/hackforla/website/issues/3142#issuecomment-1126979295) at 2022-05-15 10:02 AM PDT -,2022-05-15T17:45:56Z,- null commented on issue: [3143](https://github.com/hackforla/website/issues/3143#issuecomment-1126985573) at 2022-05-15 10:45 AM PDT -,2022-05-15T18:46:40Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1126994871) at 2022-05-15 11:46 AM PDT -,2022-05-16T16:54:46Z,- null commented on issue: [3145](https://github.com/hackforla/website/issues/3145#issuecomment-1127908643) at 2022-05-16 09:54 AM PDT -,2022-05-17T02:52:19Z,- null commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1128350668) at 2022-05-16 07:52 PM PDT -,2022-05-17T02:52:29Z,- null commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1128350763) at 2022-05-16 07:52 PM PDT -,2022-05-17T02:52:55Z,- null commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1128350948) at 2022-05-16 07:52 PM PDT -,2022-05-17T02:57:19Z,- null commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1128352706) at 2022-05-16 07:57 PM PDT -,2022-05-17T03:05:39Z,- null commented on issue: [3151](https://github.com/hackforla/website/issues/3151#issuecomment-1128356815) at 2022-05-16 08:05 PM PDT -,2022-05-17T03:13:38Z,- null commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1128360670) at 2022-05-16 08:13 PM PDT -,2022-05-17T20:15:28Z,- null commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1129277206) at 2022-05-17 01:15 PM PDT -,2022-05-18T03:14:25Z,- null commented on issue: [3154](https://github.com/hackforla/website/issues/3154#issuecomment-1129521982) at 2022-05-17 08:14 PM PDT -,2022-05-18T03:15:05Z,- null commented on issue: [3155](https://github.com/hackforla/website/issues/3155#issuecomment-1129522259) at 2022-05-17 08:15 PM PDT -,2022-05-18T03:17:42Z,- null commented on issue: [3156](https://github.com/hackforla/website/issues/3156#issuecomment-1129523365) at 2022-05-17 08:17 PM PDT -,2022-05-18T17:15:49Z,- null assigned to issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1006054716) at 2022-05-18 10:15 AM PDT -,2022-05-18T17:20:24Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1130281249) at 2022-05-18 10:20 AM PDT -,2022-05-20T07:21:47Z,- null commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1132567246) at 2022-05-20 12:21 AM PDT -,2022-05-20T07:22:12Z,- null commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1132567712) at 2022-05-20 12:22 AM PDT -,2022-05-20T07:22:15Z,- null commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1132567759) at 2022-05-20 12:22 AM PDT -,2022-05-20T07:22:18Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1132567802) at 2022-05-20 12:22 AM PDT -,2022-05-20T07:22:37Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1132568193) at 2022-05-20 12:22 AM PDT -,2022-05-20T07:23:13Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1132568904) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:16Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1132568931) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:19Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1132568968) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:25Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1132569047) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:40Z,- null commented on issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1132569257) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:47Z,- null commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1132569329) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:49Z,- null commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1132569365) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:54Z,- null commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1132569419) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:23:57Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1132569468) at 2022-05-20 12:23 AM PDT -,2022-05-20T07:24:00Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1132569507) at 2022-05-20 12:24 AM PDT -,2022-05-20T07:24:06Z,- null commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1132569606) at 2022-05-20 12:24 AM PDT -,2022-05-20T07:24:16Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1132569714) at 2022-05-20 12:24 AM PDT -,2022-05-20T07:24:18Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1132569747) at 2022-05-20 12:24 AM PDT -,2022-05-20T07:24:25Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1132569827) at 2022-05-20 12:24 AM PDT -,2022-05-20T07:24:30Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1132569880) at 2022-05-20 12:24 AM PDT -,2022-05-22T17:35:00Z,- null commented on issue: [3164](https://github.com/hackforla/website/issues/3164#issuecomment-1133940396) at 2022-05-22 10:35 AM PDT -,2022-05-22T23:25:59Z,- null commented on issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1134018694) at 2022-05-22 04:25 PM PDT -,2022-05-22T23:38:20Z,- null commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1134021942) at 2022-05-22 04:38 PM PDT -,2022-05-23T01:37:57Z,- null commented on issue: [3167](https://github.com/hackforla/website/issues/3167#issuecomment-1134073457) at 2022-05-22 06:37 PM PDT -,2022-05-23T21:22:44Z,- null commented on issue: [3170](https://github.com/hackforla/website/issues/3170#issuecomment-1135150046) at 2022-05-23 02:22 PM PDT -,2022-05-25T01:22:57Z,- null commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1136601199) at 2022-05-24 06:22 PM PDT -,2022-05-26T18:08:46Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1138869857) at 2022-05-26 11:08 AM PDT -,2022-05-27T07:21:57Z,- null commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1139355516) at 2022-05-27 12:21 AM PDT -,2022-05-27T07:21:59Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1139355531) at 2022-05-27 12:21 AM PDT -,2022-05-27T07:22:14Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1139355660) at 2022-05-27 12:22 AM PDT -,2022-05-27T07:22:31Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1139355815) at 2022-05-27 12:22 AM PDT -,2022-05-27T07:22:41Z,- null commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1139355928) at 2022-05-27 12:22 AM PDT -,2022-05-27T07:22:44Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1139355951) at 2022-05-27 12:22 AM PDT -,2022-05-27T07:22:46Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1139355973) at 2022-05-27 12:22 AM PDT -,2022-05-27T07:22:48Z,- null commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1139355994) at 2022-05-27 12:22 AM PDT -,2022-05-27T07:23:02Z,- null commented on issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1139356129) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:07Z,- null commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1139356175) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:09Z,- null commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1139356191) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:11Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1139356210) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:13Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1139356223) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:18Z,- null commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1139356260) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:25Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1139356308) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:28Z,- null commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1139356337) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:30Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1139356352) at 2022-05-27 12:23 AM PDT -,2022-05-27T07:23:40Z,- null commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1139356419) at 2022-05-27 12:23 AM PDT -,2022-05-29T19:27:17Z,- null commented on issue: [3180](https://github.com/hackforla/website/issues/3180#issuecomment-1140509801) at 2022-05-29 12:27 PM PDT -,2022-06-01T03:13:50Z,- null commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1143071878) at 2022-05-31 08:13 PM PDT -,2022-06-01T03:14:08Z,- null commented on issue: [3187](https://github.com/hackforla/website/issues/3187#issuecomment-1143072000) at 2022-05-31 08:14 PM PDT -,2022-06-01T03:14:56Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1143072322) at 2022-05-31 08:14 PM PDT -,2022-06-01T03:40:04Z,- null commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1143082046) at 2022-05-31 08:40 PM PDT -,2022-06-01T03:58:48Z,- null commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1143090157) at 2022-05-31 08:58 PM PDT -,2022-06-01T08:07:21Z,- null commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1143258113) at 2022-06-01 01:07 AM PDT -,2022-06-03T07:20:05Z,- null commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1145666705) at 2022-06-03 12:20 AM PDT -,2022-06-03T07:20:18Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1145666898) at 2022-06-03 12:20 AM PDT -,2022-06-03T07:20:39Z,- null commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1145667192) at 2022-06-03 12:20 AM PDT -,2022-06-03T07:20:49Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1145667351) at 2022-06-03 12:20 AM PDT -,2022-06-03T07:20:54Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1145667434) at 2022-06-03 12:20 AM PDT -,2022-06-03T07:20:57Z,- null commented on issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1145667475) at 2022-06-03 12:20 AM PDT -,2022-06-03T07:21:02Z,- null commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1145667541) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:04Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1145667569) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:07Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1145667595) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:16Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1145667716) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:18Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1145667733) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:22Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1145667789) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:26Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1145667835) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:29Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1145667873) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:33Z,- null commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1145667928) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:39Z,- null commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1145667988) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:44Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1145668050) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:46Z,- null commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1145668071) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:51Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1145668137) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:55Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1145668194) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:21:58Z,- null commented on issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1145668269) at 2022-06-03 12:21 AM PDT -,2022-06-03T07:22:07Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1145668389) at 2022-06-03 12:22 AM PDT -,2022-06-03T07:22:11Z,- null commented on issue: [3141](https://github.com/hackforla/website/issues/3141#issuecomment-1145668450) at 2022-06-03 12:22 AM PDT -,2022-06-03T09:42:44Z,- null commented on issue: [3194](https://github.com/hackforla/website/issues/3194#issuecomment-1145789163) at 2022-06-03 02:42 AM PDT -,2022-06-03T09:50:52Z,- null commented on issue: [3195](https://github.com/hackforla/website/issues/3195#issuecomment-1145795512) at 2022-06-03 02:50 AM PDT -,2022-06-03T09:55:42Z,- null commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1145799340) at 2022-06-03 02:55 AM PDT -,2022-06-03T10:00:59Z,- null commented on issue: [3197](https://github.com/hackforla/website/issues/3197#issuecomment-1145803474) at 2022-06-03 03:00 AM PDT -,2022-06-03T10:03:29Z,- null commented on issue: [3198](https://github.com/hackforla/website/issues/3198#issuecomment-1145805640) at 2022-06-03 03:03 AM PDT -,2022-06-03T10:08:05Z,- null commented on issue: [3199](https://github.com/hackforla/website/issues/3199#issuecomment-1145809380) at 2022-06-03 03:08 AM PDT -,2022-06-03T10:09:34Z,- null commented on issue: [3200](https://github.com/hackforla/website/issues/3200#issuecomment-1145810588) at 2022-06-03 03:09 AM PDT -,2022-06-03T10:11:38Z,- null commented on issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1145812161) at 2022-06-03 03:11 AM PDT -,2022-06-03T10:13:51Z,- null commented on issue: [3202](https://github.com/hackforla/website/issues/3202#issuecomment-1145813785) at 2022-06-03 03:13 AM PDT -,2022-06-03T10:15:20Z,- null commented on issue: [3203](https://github.com/hackforla/website/issues/3203#issuecomment-1145814907) at 2022-06-03 03:15 AM PDT -,2022-06-03T10:18:30Z,- null commented on issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1145817335) at 2022-06-03 03:18 AM PDT -,2022-06-03T10:20:47Z,- null commented on issue: [3205](https://github.com/hackforla/website/issues/3205#issuecomment-1145818938) at 2022-06-03 03:20 AM PDT -,2022-06-03T10:22:45Z,- null commented on issue: [3206](https://github.com/hackforla/website/issues/3206#issuecomment-1145820493) at 2022-06-03 03:22 AM PDT -,2022-06-03T10:25:19Z,- null commented on issue: [3207](https://github.com/hackforla/website/issues/3207#issuecomment-1145822417) at 2022-06-03 03:25 AM PDT -,2022-06-03T10:27:23Z,- null commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1145824017) at 2022-06-03 03:27 AM PDT -,2022-06-03T11:01:26Z,- null commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1145848740) at 2022-06-03 04:01 AM PDT -,2022-06-03T11:04:05Z,- null commented on issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1145850932) at 2022-06-03 04:04 AM PDT -,2022-06-03T11:06:14Z,- null commented on issue: [3211](https://github.com/hackforla/website/issues/3211#issuecomment-1145852639) at 2022-06-03 04:06 AM PDT -,2022-06-03T11:08:12Z,- null commented on issue: [3212](https://github.com/hackforla/website/issues/3212#issuecomment-1145854267) at 2022-06-03 04:08 AM PDT -,2022-06-03T11:10:29Z,- null commented on issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1145856056) at 2022-06-03 04:10 AM PDT -,2022-06-03T11:12:30Z,- null commented on issue: [3214](https://github.com/hackforla/website/issues/3214#issuecomment-1145857701) at 2022-06-03 04:12 AM PDT -,2022-06-03T11:14:22Z,- null commented on issue: [3215](https://github.com/hackforla/website/issues/3215#issuecomment-1145859151) at 2022-06-03 04:14 AM PDT -,2022-06-03T11:16:04Z,- null commented on issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1145860440) at 2022-06-03 04:16 AM PDT -,2022-06-03T19:04:13Z,- null commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1146275099) at 2022-06-03 12:04 PM PDT -,2022-06-05T00:43:31Z,- null commented on issue: [3220](https://github.com/hackforla/website/issues/3220#issuecomment-1146713630) at 2022-06-04 05:43 PM PDT -,2022-06-05T17:26:15Z,- null commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-1146852614) at 2022-06-05 10:26 AM PDT -,2022-06-05T18:12:29Z,- null commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1146859194) at 2022-06-05 11:12 AM PDT -,2022-06-07T07:47:46Z,- null commented on issue: [3227](https://github.com/hackforla/website/issues/3227#issuecomment-1148318552) at 2022-06-07 12:47 AM PDT -,2022-06-07T07:59:02Z,- null commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-1148328991) at 2022-06-07 12:59 AM PDT -,2022-06-07T08:09:52Z,- null commented on issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1148339537) at 2022-06-07 01:09 AM PDT -,2022-06-07T08:18:47Z,- null commented on issue: [3230](https://github.com/hackforla/website/issues/3230#issuecomment-1148350335) at 2022-06-07 01:18 AM PDT -,2022-06-07T20:30:53Z,- null commented on issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1149136146) at 2022-06-07 01:30 PM PDT -,2022-06-08T20:41:40Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1150392746) at 2022-06-08 01:41 PM PDT -,2022-06-09T19:15:53Z,- null commented on issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1151517562) at 2022-06-09 12:15 PM PDT -,2022-06-10T07:21:34Z,- null commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1152053453) at 2022-06-10 12:21 AM PDT -,2022-06-10T07:21:56Z,- null commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1152053740) at 2022-06-10 12:21 AM PDT -,2022-06-10T07:22:14Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1152054007) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:22:26Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1152054136) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:22:40Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1152054330) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:22:42Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1152054355) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:22:47Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1152054419) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:22:51Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1152054459) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:22:53Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1152054490) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:22:56Z,- null commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1152054552) at 2022-06-10 12:22 AM PDT -,2022-06-10T07:23:02Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1152054626) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:04Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1152054654) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:14Z,- null commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1152054772) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:17Z,- null commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1152054815) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:19Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1152054840) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:21Z,- null commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1152054861) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:23Z,- null commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1152054883) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:26Z,- null commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1152054920) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:28Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1152054942) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:30Z,- null commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1152054971) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:32Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1152054993) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:35Z,- null commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1152055030) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:37Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1152055060) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:39Z,- null commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1152055099) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:42Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1152055141) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:47Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1152055201) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:52Z,- null commented on issue: [3090](https://github.com/hackforla/website/issues/3090#issuecomment-1152055256) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:23:57Z,- null commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1152055319) at 2022-06-10 12:23 AM PDT -,2022-06-10T07:24:01Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1152055377) at 2022-06-10 12:24 AM PDT -,2022-06-12T16:27:29Z,- null commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1153226022) at 2022-06-12 09:27 AM PDT -,2022-06-12T17:43:35Z,- null commented on issue: [3239](https://github.com/hackforla/website/issues/3239#issuecomment-1153244077) at 2022-06-12 10:43 AM PDT -,2022-06-13T16:03:25Z,- null commented on issue: [3240](https://github.com/hackforla/website/issues/3240#issuecomment-1154104619) at 2022-06-13 09:03 AM PDT -,2022-06-14T02:30:37Z,- null commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1154640946) at 2022-06-13 07:30 PM PDT -,2022-06-14T02:31:34Z,- null commented on issue: [3243](https://github.com/hackforla/website/issues/3243#issuecomment-1154641396) at 2022-06-13 07:31 PM PDT -,2022-06-14T03:27:09Z,- null commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1154668551) at 2022-06-13 08:27 PM PDT -,2022-06-14T03:44:59Z,- null commented on issue: [3245](https://github.com/hackforla/website/issues/3245#issuecomment-1154676533) at 2022-06-13 08:44 PM PDT -,2022-06-14T04:00:20Z,- null commented on issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1154682469) at 2022-06-13 09:00 PM PDT -,2022-06-14T04:00:24Z,- null commented on issue: [3247](https://github.com/hackforla/website/issues/3247#issuecomment-1154682516) at 2022-06-13 09:00 PM PDT -,2022-06-15T03:07:09Z,- null commented on issue: [3249](https://github.com/hackforla/website/issues/3249#issuecomment-1155931948) at 2022-06-14 08:07 PM PDT -,2022-06-15T21:10:46Z,- null commented on issue: [3250](https://github.com/hackforla/website/issues/3250#issuecomment-1156947054) at 2022-06-15 02:10 PM PDT -,2022-06-15T21:11:03Z,- null commented on issue: [3251](https://github.com/hackforla/website/issues/3251#issuecomment-1156947332) at 2022-06-15 02:11 PM PDT -,2022-06-15T21:11:26Z,- null commented on issue: [3252](https://github.com/hackforla/website/issues/3252#issuecomment-1156947605) at 2022-06-15 02:11 PM PDT -,2022-06-15T21:19:37Z,- null commented on issue: [3253](https://github.com/hackforla/website/issues/3253#issuecomment-1156957293) at 2022-06-15 02:19 PM PDT -,2022-06-16T01:51:53Z,- null commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1157144543) at 2022-06-15 06:51 PM PDT -,2022-06-16T07:07:45Z,- null commented on issue: [3255](https://github.com/hackforla/website/issues/3255#issuecomment-1157312239) at 2022-06-16 12:07 AM PDT -,2022-06-16T18:17:57Z,- null commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1157995801) at 2022-06-16 11:17 AM PDT -,2022-06-16T18:32:35Z,- null commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1158007309) at 2022-06-16 11:32 AM PDT -,2022-06-17T07:19:57Z,- null commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1158572687) at 2022-06-17 12:19 AM PDT -,2022-06-17T07:20:10Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1158572839) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:31Z,- null commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1158573077) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:33Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1158573110) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:35Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1158573135) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:37Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1158573155) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:39Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1158573180) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:41Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1158573207) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:47Z,- null commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1158573279) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:53Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1158573355) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:20:59Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1158573419) at 2022-06-17 12:20 AM PDT -,2022-06-17T07:21:03Z,- null commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1158573467) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:07Z,- null commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1158573525) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:11Z,- null commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1158573563) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:13Z,- null commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1158573591) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:15Z,- null commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1158573613) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:17Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1158573640) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:21Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1158573688) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:23Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1158573729) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:28Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1158573795) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:33Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1158573868) at 2022-06-17 12:21 AM PDT -,2022-06-17T07:21:38Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1158573945) at 2022-06-17 12:21 AM PDT -,2022-06-20T21:38:00Z,- null commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1160866301) at 2022-06-20 02:38 PM PDT -,2022-06-20T21:41:48Z,- null commented on issue: [3266](https://github.com/hackforla/website/issues/3266#issuecomment-1160868444) at 2022-06-20 02:41 PM PDT -,2022-06-20T21:41:51Z,- null commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1160868474) at 2022-06-20 02:41 PM PDT -,2022-06-20T21:41:52Z,- null commented on issue: [3268](https://github.com/hackforla/website/issues/3268#issuecomment-1160868502) at 2022-06-20 02:41 PM PDT -,2022-06-20T21:41:55Z,- null commented on issue: [3269](https://github.com/hackforla/website/issues/3269#issuecomment-1160868535) at 2022-06-20 02:41 PM PDT -,2022-06-20T21:42:02Z,- null commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1160868607) at 2022-06-20 02:42 PM PDT -,2022-06-20T21:42:09Z,- null commented on issue: [3271](https://github.com/hackforla/website/issues/3271#issuecomment-1160868681) at 2022-06-20 02:42 PM PDT -,2022-06-20T21:42:13Z,- null commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1160868725) at 2022-06-20 02:42 PM PDT -,2022-06-20T22:46:35Z,- null commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1160916495) at 2022-06-20 03:46 PM PDT -,2022-06-20T22:59:00Z,- null commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1160927695) at 2022-06-20 03:59 PM PDT -,2022-06-21T01:44:48Z,- null commented on issue: [3275](https://github.com/hackforla/website/issues/3275#issuecomment-1161071134) at 2022-06-20 06:44 PM PDT -,2022-06-21T22:41:11Z,- null commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1162433565) at 2022-06-21 03:41 PM PDT -,2022-06-22T00:51:32Z,- null commented on issue: [3278](https://github.com/hackforla/website/issues/3278#issuecomment-1162504150) at 2022-06-21 05:51 PM PDT -,2022-06-22T00:58:09Z,- null commented on issue: [3279](https://github.com/hackforla/website/issues/3279#issuecomment-1162507338) at 2022-06-21 05:58 PM PDT -,2022-06-22T01:03:38Z,- null commented on issue: [3280](https://github.com/hackforla/website/issues/3280#issuecomment-1162509975) at 2022-06-21 06:03 PM PDT -,2022-06-22T01:03:42Z,- null commented on issue: [3281](https://github.com/hackforla/website/issues/3281#issuecomment-1162509994) at 2022-06-21 06:03 PM PDT -,2022-06-22T01:19:45Z,- null commented on issue: [3282](https://github.com/hackforla/website/issues/3282#issuecomment-1162517588) at 2022-06-21 06:19 PM PDT -,2022-06-22T01:22:29Z,- null commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1162518923) at 2022-06-21 06:22 PM PDT -,2022-06-22T01:24:03Z,- null commented on issue: [3284](https://github.com/hackforla/website/issues/3284#issuecomment-1162519663) at 2022-06-21 06:24 PM PDT -,2022-06-22T15:57:21Z,- null commented on issue: [3286](https://github.com/hackforla/website/issues/3286#issuecomment-1163299535) at 2022-06-22 08:57 AM PDT -,2022-06-22T20:30:20Z,- null unassigned from issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1158573419) at 2022-06-22 01:30 PM PDT -,2022-06-22T23:12:45Z,- null commented on issue: [3289](https://github.com/hackforla/website/issues/3289#issuecomment-1163748806) at 2022-06-22 04:12 PM PDT -,2022-06-22T23:22:51Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1163755468) at 2022-06-22 04:22 PM PDT -,2022-06-23T15:45:35Z,- null commented on issue: [3292](https://github.com/hackforla/website/issues/3292#issuecomment-1164579032) at 2022-06-23 08:45 AM PDT -,2022-06-23T19:41:57Z,- null commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1164799590) at 2022-06-23 12:41 PM PDT -,2022-06-23T20:27:53Z,- null commented on issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1164843288) at 2022-06-23 01:27 PM PDT -,2022-06-23T20:43:50Z,- null commented on issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1164855813) at 2022-06-23 01:43 PM PDT -,2022-06-24T02:06:07Z,- null commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1165106351) at 2022-06-23 07:06 PM PDT -,2022-06-24T07:20:39Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1165281028) at 2022-06-24 12:20 AM PDT -,2022-06-24T07:21:00Z,- null commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1165281278) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:04Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1165281323) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:06Z,- null commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1165281371) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:09Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1165281408) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:11Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1165281445) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:14Z,- null commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1165281473) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:16Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1165281494) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:26Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1165281603) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:28Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1165281632) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:35Z,- null commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1165281716) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:41Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1165281795) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:44Z,- null commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1165281825) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:46Z,- null commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1165281863) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:49Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1165281901) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:53Z,- null commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1165281951) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:55Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1165281980) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:21:58Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1165282025) at 2022-06-24 12:21 AM PDT -,2022-06-24T07:22:06Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1165282124) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:10Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1165282171) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:15Z,- null commented on issue: [2931](https://github.com/hackforla/website/issues/2931#issuecomment-1165282230) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:20Z,- null commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1165282283) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:23Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1165282329) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:29Z,- null commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1165282418) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:31Z,- null commented on issue: [3111](https://github.com/hackforla/website/issues/3111#issuecomment-1165282441) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:44Z,- null commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1165282599) at 2022-06-24 12:22 AM PDT -,2022-06-24T07:22:46Z,- null commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1165282628) at 2022-06-24 12:22 AM PDT -,2022-06-24T17:46:21Z,- null commented on issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1165797936) at 2022-06-24 10:46 AM PDT -,2022-06-25T01:32:40Z,- null commented on issue: [3300](https://github.com/hackforla/website/issues/3300#issuecomment-1166165644) at 2022-06-24 06:32 PM PDT -,2022-06-25T22:23:17Z,- null commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1166371252) at 2022-06-25 03:23 PM PDT -,2022-06-25T23:39:59Z,- null commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1166379329) at 2022-06-25 04:39 PM PDT -,2022-06-25T23:40:03Z,- null commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1166379335) at 2022-06-25 04:40 PM PDT -,2022-06-26T11:19:19Z,- null commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1166499651) at 2022-06-26 04:19 AM PDT -,2022-06-26T16:13:27Z,- null commented on issue: [3103](https://github.com/hackforla/website/issues/3103#issuecomment-1166576397) at 2022-06-26 09:13 AM PDT -,2022-06-26T16:32:43Z,- null commented on issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1166581210) at 2022-06-26 09:32 AM PDT -,2022-06-26T17:11:57Z,- null commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1166591125) at 2022-06-26 10:11 AM PDT -,2022-06-26T17:12:55Z,- null commented on issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1166591361) at 2022-06-26 10:12 AM PDT -,2022-06-26T17:58:59Z,- null commented on issue: [3305](https://github.com/hackforla/website/issues/3305#issuecomment-1166602069) at 2022-06-26 10:58 AM PDT -,2022-06-26T18:29:49Z,- null commented on issue: [3306](https://github.com/hackforla/website/issues/3306#issuecomment-1166609753) at 2022-06-26 11:29 AM PDT -,2022-06-26T18:40:28Z,- null commented on issue: [3307](https://github.com/hackforla/website/issues/3307#issuecomment-1166612266) at 2022-06-26 11:40 AM PDT -,2022-06-26T18:41:06Z,- null commented on issue: [3308](https://github.com/hackforla/website/issues/3308#issuecomment-1166612408) at 2022-06-26 11:41 AM PDT -,2022-06-26T18:50:15Z,- null commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1166614411) at 2022-06-26 11:50 AM PDT -,2022-06-26T18:54:07Z,- null commented on issue: [3310](https://github.com/hackforla/website/issues/3310#issuecomment-1166615231) at 2022-06-26 11:54 AM PDT -,2022-06-26T18:54:07Z,- null commented on issue: [3311](https://github.com/hackforla/website/issues/3311#issuecomment-1166615238) at 2022-06-26 11:54 AM PDT -,2022-06-26T18:54:08Z,- null commented on issue: [3312](https://github.com/hackforla/website/issues/3312#issuecomment-1166615254) at 2022-06-26 11:54 AM PDT -,2022-06-26T18:54:21Z,- null commented on issue: [3313](https://github.com/hackforla/website/issues/3313#issuecomment-1166615312) at 2022-06-26 11:54 AM PDT -,2022-06-26T18:55:54Z,- null commented on issue: [3314](https://github.com/hackforla/website/issues/3314#issuecomment-1166615635) at 2022-06-26 11:55 AM PDT -,2022-06-26T18:57:00Z,- null commented on issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1166615845) at 2022-06-26 11:57 AM PDT -,2022-06-26T19:10:26Z,- null commented on issue: [3170](https://github.com/hackforla/website/issues/3170#issuecomment-1166619215) at 2022-06-26 12:10 PM PDT -,2022-06-26T19:13:12Z,- null commented on issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1166619880) at 2022-06-26 12:13 PM PDT -,2022-06-27T04:12:14Z,- null commented on issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1166819347) at 2022-06-26 09:12 PM PDT -,2022-06-27T17:08:37Z,- null commented on issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1167626276) at 2022-06-27 10:08 AM PDT -,2022-06-27T20:32:58Z,- null commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1167857574) at 2022-06-27 01:32 PM PDT -,2022-06-27T20:37:30Z,- null commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1167862827) at 2022-06-27 01:37 PM PDT -,2022-06-28T17:33:14Z,- null commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1169023889) at 2022-06-28 10:33 AM PDT -,2022-06-29T00:15:07Z,- null commented on issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1169405267) at 2022-06-28 05:15 PM PDT -,2022-06-29T02:05:55Z,- null commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1169454276) at 2022-06-28 07:05 PM PDT -,2022-06-29T02:35:23Z,- null commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1169468944) at 2022-06-28 07:35 PM PDT -,2022-06-29T02:37:58Z,- null commented on issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1169470246) at 2022-06-28 07:37 PM PDT -,2022-06-29T02:41:06Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1169471810) at 2022-06-28 07:41 PM PDT -,2022-06-29T02:46:20Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1169474354) at 2022-06-28 07:46 PM PDT -,2022-06-29T19:15:29Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1170390854) at 2022-06-29 12:15 PM PDT -,2022-06-30T04:59:07Z,- null commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1170764206) at 2022-06-29 09:59 PM PDT -,2022-06-30T18:04:21Z,- null commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1171522339) at 2022-06-30 11:04 AM PDT -,2022-07-01T07:21:49Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1172025783) at 2022-07-01 12:21 AM PDT -,2022-07-01T07:22:07Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1172026024) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:15Z,- null commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1172026119) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:18Z,- null commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1172026154) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:24Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1172026221) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:28Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1172026274) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:32Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1172026318) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:43Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1172026468) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:51Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1172026585) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:22:59Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1172026706) at 2022-07-01 12:22 AM PDT -,2022-07-01T07:23:06Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1172026819) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:23:09Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1172026863) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:23:13Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1172026911) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:23:24Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1172027034) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:23:26Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1172027078) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:23:37Z,- null commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1172027216) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:23:46Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1172027317) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:23:59Z,- null commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1172027487) at 2022-07-01 12:23 AM PDT -,2022-07-01T07:24:02Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1172027534) at 2022-07-01 12:24 AM PDT -,2022-07-01T07:24:10Z,- null commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1172027616) at 2022-07-01 12:24 AM PDT -,2022-07-01T07:24:13Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1172027666) at 2022-07-01 12:24 AM PDT -,2022-07-01T07:24:16Z,- null commented on issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1172027711) at 2022-07-01 12:24 AM PDT -,2022-07-01T07:24:20Z,- null commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1172027757) at 2022-07-01 12:24 AM PDT -,2022-07-01T07:24:24Z,- null commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1172027802) at 2022-07-01 12:24 AM PDT -,2022-07-02T23:14:31Z,- null commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1172976771) at 2022-07-02 04:14 PM PDT -,2022-07-03T04:23:20Z,- null commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1173009227) at 2022-07-02 09:23 PM PDT -,2022-07-03T09:22:59Z,- null commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1173045370) at 2022-07-03 02:22 AM PDT -,2022-07-03T17:00:56Z,- null commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1173136129) at 2022-07-03 10:00 AM PDT -,2022-07-05T05:25:12Z,- null commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1174627361) at 2022-07-04 10:25 PM PDT -,2022-07-06T01:57:58Z,- null commented on issue: [3331](https://github.com/hackforla/website/issues/3331#issuecomment-1175690910) at 2022-07-05 06:57 PM PDT -,2022-07-06T17:04:14Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1176466870) at 2022-07-06 10:04 AM PDT -,2022-07-06T18:44:36Z,- null commented on issue: [3335](https://github.com/hackforla/website/issues/3335#issuecomment-1176555723) at 2022-07-06 11:44 AM PDT -,2022-07-06T19:03:10Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1176571648) at 2022-07-06 12:03 PM PDT -,2022-07-06T19:03:18Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1176571775) at 2022-07-06 12:03 PM PDT -,2022-07-07T03:11:52Z,- null commented on issue: [3336](https://github.com/hackforla/website/issues/3336#issuecomment-1177001284) at 2022-07-06 08:11 PM PDT -,2022-07-07T03:29:10Z,- null commented on issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1177011355) at 2022-07-06 08:29 PM PDT -,2022-07-07T17:10:54Z,- null commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1177948931) at 2022-07-07 10:10 AM PDT -,2022-07-07T21:09:41Z,- null commented on issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1178234162) at 2022-07-07 02:09 PM PDT -,2022-07-08T07:20:27Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1178644755) at 2022-07-08 12:20 AM PDT -,2022-07-08T07:20:40Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1178644945) at 2022-07-08 12:20 AM PDT -,2022-07-08T07:20:45Z,- null commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1178645021) at 2022-07-08 12:20 AM PDT -,2022-07-08T07:20:50Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1178645075) at 2022-07-08 12:20 AM PDT -,2022-07-08T07:20:52Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1178645113) at 2022-07-08 12:20 AM PDT -,2022-07-08T07:20:54Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1178645152) at 2022-07-08 12:20 AM PDT -,2022-07-08T07:21:04Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1178645302) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:08Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1178645367) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:14Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1178645445) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:16Z,- null commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1178645485) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:19Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1178645523) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:21Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1178645562) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:24Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1178645606) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:26Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1178645644) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:28Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1178645678) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:32Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1178645737) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:39Z,- null commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1178645837) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:44Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1178645901) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:47Z,- null commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1178645928) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:55Z,- null commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1178646035) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:57Z,- null commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1178646082) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:21:59Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1178646114) at 2022-07-08 12:21 AM PDT -,2022-07-08T07:22:03Z,- null commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1178646182) at 2022-07-08 12:22 AM PDT -,2022-07-08T07:22:05Z,- null commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1178646210) at 2022-07-08 12:22 AM PDT -,2022-07-08T07:22:07Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1178646242) at 2022-07-08 12:22 AM PDT -,2022-07-08T07:22:10Z,- null commented on issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1178646273) at 2022-07-08 12:22 AM PDT -,2022-07-08T07:22:12Z,- null commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1178646308) at 2022-07-08 12:22 AM PDT -,2022-07-08T07:22:14Z,- null commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1178646359) at 2022-07-08 12:22 AM PDT -,2022-07-08T07:22:20Z,- null commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1178646423) at 2022-07-08 12:22 AM PDT -,2022-07-09T20:05:35Z,- null commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1179599391) at 2022-07-09 01:05 PM PDT -,2022-07-10T01:39:10Z,- null commented on issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1179635044) at 2022-07-09 06:39 PM PDT -,2022-07-10T17:59:58Z,- null commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1179772328) at 2022-07-10 10:59 AM PDT -,2022-07-10T18:38:16Z,- null commented on issue: [3349](https://github.com/hackforla/website/issues/3349#issuecomment-1179778150) at 2022-07-10 11:38 AM PDT -,2022-07-10T23:25:11Z,- null commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1179822461) at 2022-07-10 04:25 PM PDT -,2022-07-11T01:12:40Z,- null commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1179851945) at 2022-07-10 06:12 PM PDT -,2022-07-11T01:24:01Z,- null commented on issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1179858086) at 2022-07-10 06:24 PM PDT -,2022-07-11T05:41:01Z,- null commented on issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1179988662) at 2022-07-10 10:41 PM PDT -,2022-07-11T06:05:48Z,- null commented on issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1180001381) at 2022-07-10 11:05 PM PDT -,2022-07-11T06:56:37Z,- null commented on issue: [3355](https://github.com/hackforla/website/issues/3355#issuecomment-1180034399) at 2022-07-10 11:56 PM PDT -,2022-07-11T16:06:43Z,- null commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1180596070) at 2022-07-11 09:06 AM PDT -,2022-07-11T18:20:43Z,- null commented on issue: [2438](https://github.com/hackforla/website/issues/2438#issuecomment-1180722722) at 2022-07-11 11:20 AM PDT -,2022-07-11T20:55:54Z,- null commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1180861534) at 2022-07-11 01:55 PM PDT -,2022-07-11T21:00:56Z,- null commented on issue: [3358](https://github.com/hackforla/website/issues/3358#issuecomment-1180865593) at 2022-07-11 02:00 PM PDT -,2022-07-11T22:09:32Z,- null commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1180917782) at 2022-07-11 03:09 PM PDT -,2022-07-11T22:37:22Z,- null commented on issue: [2817](https://github.com/hackforla/website/issues/2817#issuecomment-1180961710) at 2022-07-11 03:37 PM PDT -,2022-07-12T01:00:28Z,- null commented on issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1181198096) at 2022-07-11 06:00 PM PDT -,2022-07-12T01:12:08Z,- null commented on issue: [3361](https://github.com/hackforla/website/issues/3361#issuecomment-1181203436) at 2022-07-11 06:12 PM PDT -,2022-07-12T17:39:37Z,- null commented on issue: [2222](https://github.com/hackforla/website/issues/2222#issuecomment-1182090390) at 2022-07-12 10:39 AM PDT -,2022-07-13T03:12:19Z,- null commented on issue: [3364](https://github.com/hackforla/website/issues/3364#issuecomment-1182715265) at 2022-07-12 08:12 PM PDT -,2022-07-13T03:13:20Z,- null commented on issue: [3364](https://github.com/hackforla/website/issues/3364#issuecomment-1182715733) at 2022-07-12 08:13 PM PDT -,2022-07-13T03:14:55Z,- null commented on issue: [3365](https://github.com/hackforla/website/issues/3365#issuecomment-1182716600) at 2022-07-12 08:14 PM PDT -,2022-07-13T03:17:41Z,- null commented on issue: [3366](https://github.com/hackforla/website/issues/3366#issuecomment-1182717979) at 2022-07-12 08:17 PM PDT -,2022-07-13T20:21:42Z,- null commented on issue: [3366](https://github.com/hackforla/website/issues/3366#issuecomment-1183640469) at 2022-07-13 01:21 PM PDT -,2022-07-13T23:54:26Z,- null commented on issue: [2875](https://github.com/hackforla/website/issues/2875#issuecomment-1183792185) at 2022-07-13 04:54 PM PDT -,2022-07-14T01:17:57Z,- null commented on issue: [3370](https://github.com/hackforla/website/issues/3370#issuecomment-1183843132) at 2022-07-13 06:17 PM PDT -,2022-07-15T02:08:17Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1185094653) at 2022-07-14 07:08 PM PDT -,2022-07-15T02:17:37Z,- null commented on issue: [3306](https://github.com/hackforla/website/issues/3306#issuecomment-1185099105) at 2022-07-14 07:17 PM PDT -,2022-07-15T04:01:05Z,- null commented on issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1185149635) at 2022-07-14 09:01 PM PDT -,2022-07-15T07:20:58Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1185254746) at 2022-07-15 12:20 AM PDT -,2022-07-15T07:21:17Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1185254982) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:20Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1185255014) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:22Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1185255034) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:28Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1185255104) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:30Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1185255128) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:39Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1185255242) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:42Z,- null commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1185255279) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:45Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1185255303) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:47Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1185255321) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:50Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1185255359) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:52Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1185255378) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:21:57Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1185255451) at 2022-07-15 12:21 AM PDT -,2022-07-15T07:22:04Z,- null commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1185255528) at 2022-07-15 12:22 AM PDT -,2022-07-15T07:22:11Z,- null commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1185255620) at 2022-07-15 12:22 AM PDT -,2022-07-15T07:22:17Z,- null commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1185255688) at 2022-07-15 12:22 AM PDT -,2022-07-15T07:22:19Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1185255713) at 2022-07-15 12:22 AM PDT -,2022-07-15T07:22:22Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1185255743) at 2022-07-15 12:22 AM PDT -,2022-07-15T07:22:24Z,- null commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1185255767) at 2022-07-15 12:22 AM PDT -,2022-07-15T07:22:26Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1185255802) at 2022-07-15 12:22 AM PDT -,2022-07-15T07:22:28Z,- null commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1185255834) at 2022-07-15 12:22 AM PDT -,2022-07-15T14:32:23Z,- null commented on issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1185605440) at 2022-07-15 07:32 AM PDT -,2022-07-16T03:13:16Z,- null commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1186076220) at 2022-07-15 08:13 PM PDT -,2022-07-16T05:16:28Z,- null commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186091861) at 2022-07-15 10:16 PM PDT -,2022-07-16T06:31:19Z,- null commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-1186100830) at 2022-07-15 11:31 PM PDT -,2022-07-17T18:45:28Z,- null commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1186587844) at 2022-07-17 11:45 AM PDT -,2022-07-17T18:55:02Z,- null commented on issue: [3379](https://github.com/hackforla/website/issues/3379#issuecomment-1186589068) at 2022-07-17 11:55 AM PDT -,2022-07-17T19:01:48Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1186589955) at 2022-07-17 12:01 PM PDT -,2022-07-18T01:13:38Z,- null commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1186660655) at 2022-07-17 06:13 PM PDT -,2022-07-18T15:46:23Z,- null commented on issue: [3382](https://github.com/hackforla/website/issues/3382#issuecomment-1187663541) at 2022-07-18 08:46 AM PDT -,2022-07-18T17:15:14Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1187808672) at 2022-07-18 10:15 AM PDT -,2022-07-18T17:27:05Z,- null commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1187856318) at 2022-07-18 10:27 AM PDT -,2022-07-18T19:32:06Z,- null commented on issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1188215319) at 2022-07-18 12:32 PM PDT -,2022-07-18T21:19:49Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1188322551) at 2022-07-18 02:19 PM PDT -,2022-07-18T23:44:52Z,- null commented on issue: [2065](https://github.com/hackforla/website/issues/2065#issuecomment-1188444006) at 2022-07-18 04:44 PM PDT -,2022-07-19T04:48:21Z,- null commented on issue: [3094](https://github.com/hackforla/website/issues/3094#issuecomment-1188595152) at 2022-07-18 09:48 PM PDT -,2022-07-19T21:10:35Z,- null commented on issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1189553191) at 2022-07-19 02:10 PM PDT -,2022-07-19T23:32:34Z,- null commented on issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1189648844) at 2022-07-19 04:32 PM PDT -,2022-07-20T03:05:24Z,- null commented on issue: [3396](https://github.com/hackforla/website/issues/3396#issuecomment-1189756254) at 2022-07-19 08:05 PM PDT -,2022-07-20T03:09:38Z,- null commented on issue: [3398](https://github.com/hackforla/website/issues/3398#issuecomment-1189759825) at 2022-07-19 08:09 PM PDT -,2022-07-20T04:02:45Z,- null commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1189801828) at 2022-07-19 09:02 PM PDT -,2022-07-20T04:18:45Z,- null commented on issue: [2820](https://github.com/hackforla/website/issues/2820#issuecomment-1189809432) at 2022-07-19 09:18 PM PDT -,2022-07-20T16:32:24Z,- null commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1190501160) at 2022-07-20 09:32 AM PDT -,2022-07-20T21:30:50Z,- null commented on issue: [3408](https://github.com/hackforla/website/issues/3408#issuecomment-1190777472) at 2022-07-20 02:30 PM PDT -,2022-07-20T21:31:19Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1190777838) at 2022-07-20 02:31 PM PDT -,2022-07-20T21:32:01Z,- null commented on issue: [3411](https://github.com/hackforla/website/issues/3411#issuecomment-1190778377) at 2022-07-20 02:32 PM PDT -,2022-07-20T21:33:49Z,- null commented on issue: [3412](https://github.com/hackforla/website/issues/3412#issuecomment-1190779854) at 2022-07-20 02:33 PM PDT -,2022-07-22T01:44:42Z,- null commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1192095510) at 2022-07-21 06:44 PM PDT -,2022-07-22T04:11:47Z,- null commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1192160542) at 2022-07-21 09:11 PM PDT -,2022-07-22T07:22:27Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1192266761) at 2022-07-22 12:22 AM PDT -,2022-07-22T07:22:34Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1192266856) at 2022-07-22 12:22 AM PDT -,2022-07-22T07:23:05Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1192267319) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:10Z,- null commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1192267379) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:13Z,- null commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1192267425) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:24Z,- null commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1192267560) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:30Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1192267634) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:39Z,- null commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1192267725) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:42Z,- null commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1192267763) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:45Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1192267802) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:48Z,- null commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1192267845) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:52Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1192267910) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:23:58Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1192267981) at 2022-07-22 12:23 AM PDT -,2022-07-22T07:24:04Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1192268036) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:24:13Z,- null commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1192268152) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:24:21Z,- null commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1192268252) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:24:24Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1192268292) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:24:27Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1192268326) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:24:33Z,- null commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1192268396) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:24:39Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1192268469) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:24:42Z,- null commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1192268504) at 2022-07-22 12:24 AM PDT -,2022-07-22T07:25:02Z,- null commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1192268747) at 2022-07-22 12:25 AM PDT -,2022-07-22T19:31:58Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1192876565) at 2022-07-22 12:31 PM PDT -,2022-07-24T22:31:27Z,- null commented on issue: [3095](https://github.com/hackforla/website/issues/3095#issuecomment-1193406748) at 2022-07-24 03:31 PM PDT -,2022-07-25T17:34:47Z,- null commented on issue: [2815](https://github.com/hackforla/website/issues/2815#issuecomment-1194394741) at 2022-07-25 10:34 AM PDT -,2022-07-25T17:36:15Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1194396263) at 2022-07-25 10:36 AM PDT -,2022-07-25T18:13:31Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1194435633) at 2022-07-25 11:13 AM PDT -,2022-07-26T00:12:48Z,- null commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1194802532) at 2022-07-25 05:12 PM PDT -,2022-07-26T08:10:56Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1195152097) at 2022-07-26 01:10 AM PDT -,2022-07-26T23:10:57Z,- null commented on issue: [2809](https://github.com/hackforla/website/issues/2809#issuecomment-1196071200) at 2022-07-26 04:10 PM PDT -,2022-07-27T00:47:45Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1196147563) at 2022-07-26 05:47 PM PDT -,2022-07-27T02:27:33Z,- null commented on issue: [2298](https://github.com/hackforla/website/issues/2298#issuecomment-1196195656) at 2022-07-26 07:27 PM PDT -,2022-07-27T18:00:08Z,- null commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1197111014) at 2022-07-27 11:00 AM PDT -,2022-07-27T23:26:00Z,- null commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1197483291) at 2022-07-27 04:26 PM PDT -,2022-07-28T22:25:50Z,- null commented on issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1198689313) at 2022-07-28 03:25 PM PDT -,2022-07-29T02:02:07Z,- null commented on issue: [3400](https://github.com/hackforla/website/issues/3400#issuecomment-1198804696) at 2022-07-28 07:02 PM PDT -,2022-07-29T07:20:47Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1198960115) at 2022-07-29 12:20 AM PDT -,2022-07-29T07:21:04Z,- null commented on issue: [2901](https://github.com/hackforla/website/issues/2901#issuecomment-1198960325) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:17Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1198960490) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:22Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1198960551) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:28Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1198960630) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:31Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1198960665) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:41Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1198960800) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:43Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1198960829) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:46Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1198960867) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:49Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1198960905) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:21:51Z,- null commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1198960941) at 2022-07-29 12:21 AM PDT -,2022-07-29T07:22:02Z,- null commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1198961069) at 2022-07-29 12:22 AM PDT -,2022-07-29T07:22:07Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1198961132) at 2022-07-29 12:22 AM PDT -,2022-07-29T07:22:11Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1198961203) at 2022-07-29 12:22 AM PDT -,2022-07-30T05:13:59Z,- null commented on issue: [3358](https://github.com/hackforla/website/issues/3358#issuecomment-1200091919) at 2022-07-29 10:13 PM PDT -,2022-07-31T15:56:56Z,- null commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1200451307) at 2022-07-31 08:56 AM PDT -,2022-07-31T16:37:01Z,- null commented on issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1200458710) at 2022-07-31 09:37 AM PDT -,2022-07-31T16:50:09Z,- null commented on issue: [2818](https://github.com/hackforla/website/issues/2818#issuecomment-1200460550) at 2022-07-31 09:50 AM PDT -,2022-08-01T12:38:56Z,- null commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1201147866) at 2022-08-01 05:38 AM PDT -,2022-08-02T01:24:10Z,- null commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1201909924) at 2022-08-01 06:24 PM PDT -,2022-08-03T21:02:17Z,- null commented on issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1204479842) at 2022-08-03 02:02 PM PDT -,2022-08-03T22:39:12Z,- null commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1204553953) at 2022-08-03 03:39 PM PDT -,2022-08-05T03:37:13Z,- null commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1206006648) at 2022-08-04 08:37 PM PDT -,2022-08-05T07:21:00Z,- null commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1206128558) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:03Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1206128603) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:11Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1206128689) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:20Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1206128822) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:39Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1206129097) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:42Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1206129152) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:44Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1206129195) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:51Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1206129288) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:54Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1206129323) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:56Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1206129355) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:21:58Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1206129384) at 2022-08-05 12:21 AM PDT -,2022-08-05T07:22:01Z,- null commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1206129425) at 2022-08-05 12:22 AM PDT -,2022-08-05T07:22:08Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1206129534) at 2022-08-05 12:22 AM PDT -,2022-08-05T07:22:10Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1206129566) at 2022-08-05 12:22 AM PDT -,2022-08-05T07:22:13Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1206129596) at 2022-08-05 12:22 AM PDT -,2022-08-05T07:22:18Z,- null commented on issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1206129667) at 2022-08-05 12:22 AM PDT -,2022-08-08T15:02:14Z,- null commented on issue: [3453](https://github.com/hackforla/website/issues/3453#issuecomment-1208245402) at 2022-08-08 08:02 AM PDT -,2022-08-08T21:35:23Z,- null commented on issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1208636934) at 2022-08-08 02:35 PM PDT -,2022-08-08T23:57:42Z,- null commented on issue: [3104](https://github.com/hackforla/website/issues/3104#issuecomment-1208739427) at 2022-08-08 04:57 PM PDT -,2022-08-10T00:11:36Z,- null commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1210011569) at 2022-08-09 05:11 PM PDT -,2022-08-10T03:04:50Z,- null commented on issue: [3458](https://github.com/hackforla/website/issues/3458#issuecomment-1210095832) at 2022-08-09 08:04 PM PDT -,2022-08-10T03:20:49Z,- null commented on issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1210104657) at 2022-08-09 08:20 PM PDT -,2022-08-10T03:35:33Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1210112001) at 2022-08-09 08:35 PM PDT -,2022-08-10T21:14:56Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1211281766) at 2022-08-10 02:14 PM PDT -,2022-08-10T21:18:45Z,- null commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1211286280) at 2022-08-10 02:18 PM PDT -,2022-08-10T21:55:42Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1211322482) at 2022-08-10 02:55 PM PDT -,2022-08-11T07:06:28Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1211624237) at 2022-08-11 12:06 AM PDT -,2022-08-11T18:39:28Z,- null commented on issue: [3331](https://github.com/hackforla/website/issues/3331#issuecomment-1212356954) at 2022-08-11 11:39 AM PDT -,2022-08-11T20:52:23Z,- null commented on issue: [3404](https://github.com/hackforla/website/issues/3404#issuecomment-1212481271) at 2022-08-11 01:52 PM PDT -,2022-08-12T02:36:05Z,- null commented on issue: [2821](https://github.com/hackforla/website/issues/2821#issuecomment-1212673749) at 2022-08-11 07:36 PM PDT -,2022-08-12T07:20:11Z,- null commented on issue: [2821](https://github.com/hackforla/website/issues/2821#issuecomment-1212806414) at 2022-08-12 12:20 AM PDT -,2022-08-12T07:20:39Z,- null commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1212806766) at 2022-08-12 12:20 AM PDT -,2022-08-12T07:20:42Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1212806811) at 2022-08-12 12:20 AM PDT -,2022-08-12T07:20:45Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1212806841) at 2022-08-12 12:20 AM PDT -,2022-08-12T07:20:53Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1212806938) at 2022-08-12 12:20 AM PDT -,2022-08-12T07:21:08Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1212807140) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:12Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1212807175) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:15Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1212807221) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:17Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1212807248) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:23Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1212807307) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:25Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1212807335) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:27Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1212807362) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:29Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1212807394) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:37Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1212807524) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:39Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1212807546) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:41Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1212807574) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:46Z,- null commented on issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1212807643) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:51Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1212807703) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:53Z,- null commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1212807729) at 2022-08-12 12:21 AM PDT -,2022-08-12T07:21:57Z,- null commented on issue: [3404](https://github.com/hackforla/website/issues/3404#issuecomment-1212807793) at 2022-08-12 12:21 AM PDT -,2022-08-12T15:38:14Z,- null commented on issue: [3336](https://github.com/hackforla/website/issues/3336#issuecomment-1213245656) at 2022-08-12 08:38 AM PDT -,2022-08-12T23:31:01Z,- null commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1213588403) at 2022-08-12 04:31 PM PDT -,2022-08-14T17:21:51Z,- null commented on issue: [3355](https://github.com/hackforla/website/issues/3355#issuecomment-1214418519) at 2022-08-14 10:21 AM PDT -,2022-08-14T22:33:03Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1214461863) at 2022-08-14 03:33 PM PDT -,2022-08-15T20:33:18Z,- null commented on issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-1215761724) at 2022-08-15 01:33 PM PDT -,2022-08-17T02:23:06Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1217383034) at 2022-08-16 07:23 PM PDT -,2022-08-17T02:59:52Z,- null commented on issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1217401521) at 2022-08-16 07:59 PM PDT -,2022-08-19T00:41:37Z,- null commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1220113746) at 2022-08-18 05:41 PM PDT -,2022-08-19T07:21:53Z,- null commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1220339270) at 2022-08-19 12:21 AM PDT -,2022-08-19T07:21:58Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1220339348) at 2022-08-19 12:21 AM PDT -,2022-08-19T07:22:07Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1220339455) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:22Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1220339637) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:25Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1220339685) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:28Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1220339736) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:30Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1220339765) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:35Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1220339813) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:37Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1220339847) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:39Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1220339877) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:42Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1220339924) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:51Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1220340022) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:22:53Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1220340049) at 2022-08-19 12:22 AM PDT -,2022-08-19T07:23:04Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1220340183) at 2022-08-19 12:23 AM PDT -,2022-08-19T07:23:07Z,- null commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1220340213) at 2022-08-19 12:23 AM PDT -,2022-08-19T20:11:27Z,- null commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1221057051) at 2022-08-19 01:11 PM PDT -,2022-08-21T17:13:16Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1221585694) at 2022-08-21 10:13 AM PDT -,2022-08-24T21:16:55Z,- null commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1226369611) at 2022-08-24 02:16 PM PDT -,2022-08-25T01:34:21Z,- null commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1226669786) at 2022-08-24 06:34 PM PDT -,2022-08-26T07:26:58Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1228150030) at 2022-08-26 12:26 AM PDT -,2022-08-26T07:27:03Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1228150126) at 2022-08-26 12:27 AM PDT -,2022-08-26T07:27:07Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1228150280) at 2022-08-26 12:27 AM PDT -,2022-08-26T07:27:25Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1228150639) at 2022-08-26 12:27 AM PDT -,2022-08-26T07:27:54Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1228151081) at 2022-08-26 12:27 AM PDT -,2022-08-26T07:28:00Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1228151162) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:28:05Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1228151224) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:28:14Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1228151351) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:28:18Z,- null commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1228151433) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:28:22Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1228151492) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:28:26Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1228151557) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:28:40Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1228151762) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:28:44Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1228151817) at 2022-08-26 12:28 AM PDT -,2022-08-26T07:29:06Z,- null commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1228152112) at 2022-08-26 12:29 AM PDT -,2022-08-26T07:29:15Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1228152247) at 2022-08-26 12:29 AM PDT -,2022-08-26T20:14:21Z,- null commented on issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-1228891645) at 2022-08-26 01:14 PM PDT -,2022-08-28T02:42:05Z,- null commented on issue: [3494](https://github.com/hackforla/website/issues/3494#issuecomment-1229361381) at 2022-08-27 07:42 PM PDT -,2022-08-29T17:27:12Z,- null commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1230616671) at 2022-08-29 10:27 AM PDT -,2022-08-30T14:23:28Z,- null commented on issue: [3499](https://github.com/hackforla/website/issues/3499#issuecomment-1231741316) at 2022-08-30 07:23 AM PDT -,2022-08-30T22:57:59Z,- null commented on issue: [3501](https://github.com/hackforla/website/issues/3501#issuecomment-1232254627) at 2022-08-30 03:57 PM PDT -,2022-08-30T22:59:06Z,- null commented on issue: [3500](https://github.com/hackforla/website/issues/3500#issuecomment-1232255361) at 2022-08-30 03:59 PM PDT -,2022-08-31T00:56:45Z,- null commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1232326088) at 2022-08-30 05:56 PM PDT -,2022-08-31T03:40:57Z,- null commented on issue: [2822](https://github.com/hackforla/website/issues/2822#issuecomment-1232423290) at 2022-08-30 08:40 PM PDT -,2022-08-31T03:48:03Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1232426630) at 2022-08-30 08:48 PM PDT -,2022-08-31T03:52:01Z,- null commented on issue: [2824](https://github.com/hackforla/website/issues/2824#issuecomment-1232428582) at 2022-08-30 08:52 PM PDT -,2022-08-31T04:08:49Z,- null commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1232437217) at 2022-08-30 09:08 PM PDT -,2022-08-31T04:11:45Z,- null commented on issue: [2825](https://github.com/hackforla/website/issues/2825#issuecomment-1232438669) at 2022-08-30 09:11 PM PDT -,2022-08-31T04:24:29Z,- null commented on issue: [2831](https://github.com/hackforla/website/issues/2831#issuecomment-1232445741) at 2022-08-30 09:24 PM PDT -,2022-08-31T16:46:38Z,- null commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1233179088) at 2022-08-31 09:46 AM PDT -,2022-09-01T14:54:02Z,- null commented on issue: [3101](https://github.com/hackforla/website/issues/3101#issuecomment-1234394686) at 2022-09-01 07:54 AM PDT -,2022-09-01T19:46:34Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1234709060) at 2022-09-01 12:46 PM PDT -,2022-09-02T03:55:51Z,- null commented on issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1235040283) at 2022-09-01 08:55 PM PDT -,2022-09-02T07:27:58Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1235164231) at 2022-09-02 12:27 AM PDT -,2022-09-02T07:28:00Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1235164255) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:10Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1235164403) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:25Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1235164637) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:27Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1235164673) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:30Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1235164717) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:32Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1235164752) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:38Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1235164832) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:47Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1235164970) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:28:50Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1235165011) at 2022-09-02 12:28 AM PDT -,2022-09-02T07:29:03Z,- null commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1235165194) at 2022-09-02 12:29 AM PDT -,2022-09-02T07:29:19Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1235165445) at 2022-09-02 12:29 AM PDT -,2022-09-02T07:29:21Z,- null commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1235165474) at 2022-09-02 12:29 AM PDT -,2022-09-02T19:57:57Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1235851717) at 2022-09-02 12:57 PM PDT -,2022-09-02T23:01:53Z,- null commented on issue: [3418](https://github.com/hackforla/website/issues/3418#issuecomment-1235963530) at 2022-09-02 04:01 PM PDT -,2022-09-03T04:00:05Z,- null commented on issue: [3198](https://github.com/hackforla/website/issues/3198#issuecomment-1236042849) at 2022-09-02 09:00 PM PDT -,2022-09-04T14:37:59Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1236355728) at 2022-09-04 07:37 AM PDT -,2022-09-05T01:21:39Z,- null commented on issue: [3097](https://github.com/hackforla/website/issues/3097#issuecomment-1236460776) at 2022-09-04 06:21 PM PDT -,2022-09-06T20:50:14Z,- null commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1238635376) at 2022-09-06 01:50 PM PDT -,2022-09-07T00:00:13Z,- null commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1238762319) at 2022-09-06 05:00 PM PDT -,2022-09-08T03:40:04Z,- null commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1240178830) at 2022-09-07 08:40 PM PDT -,2022-09-09T07:28:56Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1241607415) at 2022-09-09 12:28 AM PDT -,2022-09-09T07:28:58Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1241607445) at 2022-09-09 12:28 AM PDT -,2022-09-09T07:29:00Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1241607484) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:09Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1241607596) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:22Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1241607785) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:24Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1241607811) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:27Z,- null commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1241607854) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:29Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1241607890) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:34Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1241607957) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:36Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1241608031) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:38Z,- null commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1241608106) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:43Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1241608164) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:45Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1241608198) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:29:52Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1241608311) at 2022-09-09 12:29 AM PDT -,2022-09-09T07:30:01Z,- null commented on issue: [2824](https://github.com/hackforla/website/issues/2824#issuecomment-1241608436) at 2022-09-09 12:30 AM PDT -,2022-09-09T07:30:12Z,- null commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1241608604) at 2022-09-09 12:30 AM PDT -,2022-09-09T07:30:19Z,- null commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1241608716) at 2022-09-09 12:30 AM PDT -,2022-09-09T07:30:22Z,- null commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1241608745) at 2022-09-09 12:30 AM PDT -,2022-09-11T15:59:26Z,- null commented on issue: [3423](https://github.com/hackforla/website/issues/3423#issuecomment-1242993549) at 2022-09-11 08:59 AM PDT -,2022-09-12T00:26:34Z,- null commented on issue: [3535](https://github.com/hackforla/website/issues/3535#issuecomment-1243080940) at 2022-09-11 05:26 PM PDT -,2022-09-14T03:03:56Z,- null commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1246172192) at 2022-09-13 08:03 PM PDT -,2022-09-14T03:04:52Z,- null commented on issue: [2826](https://github.com/hackforla/website/issues/2826#issuecomment-1246172653) at 2022-09-13 08:04 PM PDT -,2022-09-14T03:07:54Z,- null commented on issue: [2828](https://github.com/hackforla/website/issues/2828#issuecomment-1246174368) at 2022-09-13 08:07 PM PDT -,2022-09-14T17:56:02Z,- null commented on issue: [2924](https://github.com/hackforla/website/issues/2924#issuecomment-1247116122) at 2022-09-14 10:56 AM PDT -,2022-09-16T00:23:18Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1248780353) at 2022-09-15 05:23 PM PDT -,2022-09-16T00:54:50Z,- null commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1248797109) at 2022-09-15 05:54 PM PDT -,2022-09-16T02:37:53Z,- null commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1248846482) at 2022-09-15 07:37 PM PDT -,2022-09-16T03:08:51Z,- null commented on issue: [2827](https://github.com/hackforla/website/issues/2827#issuecomment-1248868176) at 2022-09-15 08:08 PM PDT -,2022-09-16T03:24:55Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1248876222) at 2022-09-15 08:24 PM PDT -,2022-09-16T07:33:11Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1249022004) at 2022-09-16 12:33 AM PDT -,2022-09-16T07:33:15Z,- null commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1249022057) at 2022-09-16 12:33 AM PDT -,2022-09-16T07:33:33Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1249022304) at 2022-09-16 12:33 AM PDT -,2022-09-16T07:34:01Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1249022692) at 2022-09-16 12:34 AM PDT -,2022-09-16T07:34:05Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1249022772) at 2022-09-16 12:34 AM PDT -,2022-09-16T07:34:12Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1249022890) at 2022-09-16 12:34 AM PDT -,2022-09-16T07:34:21Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1249023018) at 2022-09-16 12:34 AM PDT -,2022-09-16T07:34:26Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1249023084) at 2022-09-16 12:34 AM PDT -,2022-09-16T07:34:46Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1249023385) at 2022-09-16 12:34 AM PDT -,2022-09-16T07:34:56Z,- null commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1249023526) at 2022-09-16 12:34 AM PDT -,2022-09-16T07:35:18Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1249023828) at 2022-09-16 12:35 AM PDT -,2022-09-16T07:35:27Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1249023978) at 2022-09-16 12:35 AM PDT -,2022-09-16T07:35:32Z,- null commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1249024056) at 2022-09-16 12:35 AM PDT -,2022-09-16T07:35:39Z,- null commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1249024166) at 2022-09-16 12:35 AM PDT -,2022-09-16T07:35:47Z,- null commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1249024288) at 2022-09-16 12:35 AM PDT -,2022-09-17T01:24:58Z,- null commented on issue: [3100](https://github.com/hackforla/website/issues/3100#issuecomment-1249969713) at 2022-09-16 06:24 PM PDT -,2022-09-18T16:09:03Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1250339250) at 2022-09-18 09:09 AM PDT -,2022-09-18T17:14:38Z,- null commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1250350338) at 2022-09-18 10:14 AM PDT -,2022-09-19T02:15:25Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1250474588) at 2022-09-18 07:15 PM PDT -,2022-09-19T21:42:31Z,- null commented on issue: [3106](https://github.com/hackforla/website/issues/3106#issuecomment-1251592823) at 2022-09-19 02:42 PM PDT -,2022-09-20T05:23:38Z,- null commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1251856087) at 2022-09-19 10:23 PM PDT -,2022-09-20T16:36:51Z,- null commented on issue: [2829](https://github.com/hackforla/website/issues/2829#issuecomment-1252614414) at 2022-09-20 09:36 AM PDT -,2022-09-20T18:24:50Z,- null commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1252747375) at 2022-09-20 11:24 AM PDT -,2022-09-20T23:11:55Z,- null commented on issue: [2832](https://github.com/hackforla/website/issues/2832#issuecomment-1253006475) at 2022-09-20 04:11 PM PDT -,2022-09-21T03:23:04Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1253156862) at 2022-09-20 08:23 PM PDT -,2022-09-21T03:26:36Z,- null commented on issue: [2842](https://github.com/hackforla/website/issues/2842#issuecomment-1253158707) at 2022-09-20 08:26 PM PDT -,2022-09-21T14:52:53Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1253827330) at 2022-09-21 07:52 AM PDT -,2022-09-21T17:27:37Z,- null commented on issue: [2834](https://github.com/hackforla/website/issues/2834#issuecomment-1254011873) at 2022-09-21 10:27 AM PDT -,2022-09-21T22:18:46Z,- null commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1254288987) at 2022-09-21 03:18 PM PDT -,2022-09-22T02:13:08Z,- null commented on issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1254425028) at 2022-09-21 07:13 PM PDT -,2022-09-22T16:06:17Z,- null commented on issue: [3098](https://github.com/hackforla/website/issues/3098#issuecomment-1255242386) at 2022-09-22 09:06 AM PDT -,2022-09-22T16:08:14Z,- null commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1255244816) at 2022-09-22 09:08 AM PDT -,2022-09-22T20:06:04Z,- null commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1255493735) at 2022-09-22 01:06 PM PDT -,2022-09-22T22:52:20Z,- null commented on issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1255636476) at 2022-09-22 03:52 PM PDT -,2022-09-23T07:40:09Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1255890176) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:11Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1255890208) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:18Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1255890278) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:20Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1255890299) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:34Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1255890471) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:36Z,- null commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1255890507) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:39Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1255890547) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:46Z,- null commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1255890655) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:49Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1255890689) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:53Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1255890741) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:56Z,- null commented on issue: [3389](https://github.com/hackforla/website/issues/3389#issuecomment-1255890776) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:40:58Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1255890805) at 2022-09-23 12:40 AM PDT -,2022-09-23T07:41:00Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1255890836) at 2022-09-23 12:41 AM PDT -,2022-09-23T07:41:03Z,- null commented on issue: [3508](https://github.com/hackforla/website/issues/3508#issuecomment-1255890862) at 2022-09-23 12:41 AM PDT -,2022-09-23T07:41:05Z,- null commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1255890892) at 2022-09-23 12:41 AM PDT -,2022-09-25T21:47:26Z,- null commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1257286326) at 2022-09-25 02:47 PM PDT -,2022-09-26T14:35:17Z,- null commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1258136923) at 2022-09-26 07:35 AM PDT -,2022-09-26T15:34:42Z,- null commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1258226147) at 2022-09-26 08:34 AM PDT -,2022-09-26T19:03:13Z,- null commented on issue: [2925](https://github.com/hackforla/website/issues/2925#issuecomment-1258478092) at 2022-09-26 12:03 PM PDT -,2022-09-26T20:34:44Z,- null commented on issue: [3194](https://github.com/hackforla/website/issues/3194#issuecomment-1258603013) at 2022-09-26 01:34 PM PDT -,2022-09-27T09:11:53Z,- null commented on issue: [3562](https://github.com/hackforla/website/issues/3562#issuecomment-1259215351) at 2022-09-27 02:11 AM PDT -,2022-09-28T02:27:07Z,- null commented on issue: [2954](https://github.com/hackforla/website/issues/2954#issuecomment-1260306671) at 2022-09-27 07:27 PM PDT -,2022-09-28T03:04:19Z,- null commented on issue: [2836](https://github.com/hackforla/website/issues/2836#issuecomment-1260326812) at 2022-09-27 08:04 PM PDT -,2022-09-28T19:56:55Z,- null commented on issue: [3195](https://github.com/hackforla/website/issues/3195#issuecomment-1261401269) at 2022-09-28 12:56 PM PDT -,2022-09-29T20:00:15Z,- null commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1262749759) at 2022-09-29 01:00 PM PDT -,2022-09-30T02:08:04Z,- null commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1263019871) at 2022-09-29 07:08 PM PDT -,2022-09-30T07:46:40Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1263227330) at 2022-09-30 12:46 AM PDT -,2022-09-30T07:46:44Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1263227386) at 2022-09-30 12:46 AM PDT -,2022-09-30T07:47:00Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1263227650) at 2022-09-30 12:47 AM PDT -,2022-09-30T07:47:04Z,- null commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1263227729) at 2022-09-30 12:47 AM PDT -,2022-09-30T07:47:31Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1263228171) at 2022-09-30 12:47 AM PDT -,2022-09-30T07:47:35Z,- null commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1263228236) at 2022-09-30 12:47 AM PDT -,2022-09-30T07:47:41Z,- null commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1263228307) at 2022-09-30 12:47 AM PDT -,2022-09-30T07:47:45Z,- null commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1263228399) at 2022-09-30 12:47 AM PDT -,2022-09-30T07:47:55Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1263228555) at 2022-09-30 12:47 AM PDT -,2022-09-30T07:48:05Z,- null commented on issue: [3389](https://github.com/hackforla/website/issues/3389#issuecomment-1263228723) at 2022-09-30 12:48 AM PDT -,2022-09-30T07:48:09Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1263228802) at 2022-09-30 12:48 AM PDT -,2022-09-30T07:48:13Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1263228854) at 2022-09-30 12:48 AM PDT -,2022-09-30T07:48:21Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1263228969) at 2022-09-30 12:48 AM PDT -,2022-09-30T07:48:29Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1263229105) at 2022-09-30 12:48 AM PDT -,2022-09-30T07:48:33Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1263229176) at 2022-09-30 12:48 AM PDT -,2022-10-01T01:07:41Z,- null commented on issue: [3481](https://github.com/hackforla/website/issues/3481#issuecomment-1264182435) at 2022-09-30 06:07 PM PDT -,2022-10-01T19:59:21Z,- null commented on issue: [3563](https://github.com/hackforla/website/issues/3563#issuecomment-1264465183) at 2022-10-01 12:59 PM PDT -,2022-10-02T16:59:20Z,- null commented on issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1264687972) at 2022-10-02 09:59 AM PDT -,2022-10-02T20:31:12Z,- null commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1264727170) at 2022-10-02 01:31 PM PDT -,2022-10-03T04:20:09Z,- null commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1264912471) at 2022-10-02 09:20 PM PDT -,2022-10-05T21:02:32Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1268972224) at 2022-10-05 02:02 PM PDT -,2022-10-06T20:04:30Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1270617362) at 2022-10-06 01:04 PM PDT -,2022-10-07T03:07:53Z,- null commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1271061138) at 2022-10-06 08:07 PM PDT -,2022-10-07T07:33:03Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1271221677) at 2022-10-07 12:33 AM PDT -,2022-10-07T07:34:04Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1271222686) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:07Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1271222729) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:14Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1271222839) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:27Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1271223037) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:30Z,- null commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1271223080) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:42Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1271223289) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:45Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1271223346) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:48Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1271223390) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:51Z,- null commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1271223439) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:54Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1271223487) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:34:56Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1271223527) at 2022-10-07 12:34 AM PDT -,2022-10-07T07:35:06Z,- null commented on issue: [3541](https://github.com/hackforla/website/issues/3541#issuecomment-1271223666) at 2022-10-07 12:35 AM PDT -,2022-10-07T07:35:09Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1271223705) at 2022-10-07 12:35 AM PDT -,2022-10-07T07:35:12Z,- null commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1271223743) at 2022-10-07 12:35 AM PDT -,2022-10-07T07:35:17Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1271223819) at 2022-10-07 12:35 AM PDT -,2022-10-07T07:35:30Z,- null commented on issue: [3554](https://github.com/hackforla/website/issues/3554#issuecomment-1271223994) at 2022-10-07 12:35 AM PDT -,2022-10-07T13:30:34Z,- null commented on issue: [2844](https://github.com/hackforla/website/issues/2844#issuecomment-1271597399) at 2022-10-07 06:30 AM PDT -,2022-10-09T17:18:16Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1272588270) at 2022-10-09 10:18 AM PDT -,2022-10-09T18:43:28Z,- null commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272604571) at 2022-10-09 11:43 AM PDT -,2022-10-12T03:00:24Z,- null commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1275519629) at 2022-10-11 08:00 PM PDT -,2022-10-12T03:00:49Z,- null commented on issue: [3610](https://github.com/hackforla/website/issues/3610#issuecomment-1275519846) at 2022-10-11 08:00 PM PDT -,2022-10-12T03:01:26Z,- null commented on issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1275520152) at 2022-10-11 08:01 PM PDT -,2022-10-12T03:02:35Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1275520742) at 2022-10-11 08:02 PM PDT -,2022-10-12T03:02:37Z,- null commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1275520757) at 2022-10-11 08:02 PM PDT -,2022-10-12T03:05:44Z,- null commented on issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1275522435) at 2022-10-11 08:05 PM PDT -,2022-10-12T03:07:34Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1275523363) at 2022-10-11 08:07 PM PDT -,2022-10-12T03:09:43Z,- null commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1275524402) at 2022-10-11 08:09 PM PDT -,2022-10-12T03:09:56Z,- null commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1275524521) at 2022-10-11 08:09 PM PDT -,2022-10-12T03:16:07Z,- null commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1275527636) at 2022-10-11 08:16 PM PDT -,2022-10-12T16:50:20Z,- null commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1276467879) at 2022-10-12 09:50 AM PDT -,2022-10-12T16:53:21Z,- null commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1276470868) at 2022-10-12 09:53 AM PDT -,2022-10-12T20:16:27Z,- null commented on issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1276685277) at 2022-10-12 01:16 PM PDT -,2022-10-12T20:20:30Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1276691084) at 2022-10-12 01:20 PM PDT -,2022-10-13T02:44:14Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1276955214) at 2022-10-12 07:44 PM PDT -,2022-10-13T02:49:43Z,- null commented on issue: [2850](https://github.com/hackforla/website/issues/2850#issuecomment-1276958244) at 2022-10-12 07:49 PM PDT -,2022-10-13T17:27:33Z,- null commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1277946999) at 2022-10-13 10:27 AM PDT -,2022-10-13T18:48:13Z,- null commented on issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278038113) at 2022-10-13 11:48 AM PDT -,2022-10-13T21:52:18Z,- null commented on issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1278215502) at 2022-10-13 02:52 PM PDT -,2022-10-13T21:58:03Z,- null commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1278219543) at 2022-10-13 02:58 PM PDT -,2022-10-13T22:04:27Z,- null commented on issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278224420) at 2022-10-13 03:04 PM PDT -,2022-10-14T01:02:33Z,- null commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1278342040) at 2022-10-13 06:02 PM PDT -,2022-10-14T02:16:24Z,- null commented on issue: [3197](https://github.com/hackforla/website/issues/3197#issuecomment-1278381443) at 2022-10-13 07:16 PM PDT -,2022-10-14T07:40:44Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1278612875) at 2022-10-14 12:40 AM PDT -,2022-10-14T07:40:46Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1278612925) at 2022-10-14 12:40 AM PDT -,2022-10-14T07:40:48Z,- null commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1278612979) at 2022-10-14 12:40 AM PDT -,2022-10-14T07:40:55Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1278613088) at 2022-10-14 12:40 AM PDT -,2022-10-14T07:41:04Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1278613278) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:07Z,- null commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1278613331) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:16Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1278613512) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:18Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1278613553) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:20Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1278613602) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:25Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1278613682) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:27Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1278613717) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:34Z,- null commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1278613860) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:36Z,- null commented on issue: [3541](https://github.com/hackforla/website/issues/3541#issuecomment-1278613904) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:39Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1278613951) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:41Z,- null commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1278614000) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:43Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1278614041) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:46Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1278614086) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:50Z,- null commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1278614162) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:41:54Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1278614234) at 2022-10-14 12:41 AM PDT -,2022-10-14T07:42:05Z,- null commented on issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1278614401) at 2022-10-14 12:42 AM PDT -,2022-10-14T07:42:08Z,- null commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1278614450) at 2022-10-14 12:42 AM PDT -,2022-10-14T07:42:13Z,- null commented on issue: [3602](https://github.com/hackforla/website/issues/3602#issuecomment-1278614559) at 2022-10-14 12:42 AM PDT -,2022-10-14T07:42:16Z,- null commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1278614611) at 2022-10-14 12:42 AM PDT -,2022-10-14T17:01:18Z,- null commented on issue: [3199](https://github.com/hackforla/website/issues/3199#issuecomment-1279252407) at 2022-10-14 10:01 AM PDT -,2022-10-14T19:34:37Z,- null commented on issue: [3397](https://github.com/hackforla/website/issues/3397#issuecomment-1279383764) at 2022-10-14 12:34 PM PDT -,2022-10-14T20:20:22Z,- null commented on issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1279422643) at 2022-10-14 01:20 PM PDT -,2022-10-16T06:15:41Z,- null commented on issue: [3202](https://github.com/hackforla/website/issues/3202#issuecomment-1279901331) at 2022-10-15 11:15 PM PDT -,2022-10-16T17:14:46Z,- null commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1280012508) at 2022-10-16 10:14 AM PDT -,2022-10-16T17:56:53Z,- null commented on issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1280020369) at 2022-10-16 10:56 AM PDT -,2022-10-17T01:22:23Z,- null commented on issue: [3203](https://github.com/hackforla/website/issues/3203#issuecomment-1280138388) at 2022-10-16 06:22 PM PDT -,2022-10-17T19:57:09Z,- null commented on issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1281404825) at 2022-10-17 12:57 PM PDT -,2022-10-17T21:12:06Z,- null commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1281500669) at 2022-10-17 02:12 PM PDT -,2022-10-17T23:17:47Z,- null commented on issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1281618296) at 2022-10-17 04:17 PM PDT -,2022-10-18T00:58:10Z,- null commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1281676642) at 2022-10-17 05:58 PM PDT -,2022-10-19T03:21:24Z,- null commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1283362021) at 2022-10-18 08:21 PM PDT -,2022-10-19T03:40:46Z,- null commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1283376636) at 2022-10-18 08:40 PM PDT -,2022-10-19T13:55:21Z,- null commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1284057803) at 2022-10-19 06:55 AM PDT -,2022-10-20T02:44:30Z,- null commented on issue: [3630](https://github.com/hackforla/website/issues/3630#issuecomment-1284835804) at 2022-10-19 07:44 PM PDT -,2022-10-20T18:22:54Z,- null commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1285965739) at 2022-10-20 11:22 AM PDT -,2022-10-20T19:38:39Z,- null commented on issue: [2849](https://github.com/hackforla/website/issues/2849#issuecomment-1286046678) at 2022-10-20 12:38 PM PDT -,2022-10-21T07:34:27Z,- null commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1286575316) at 2022-10-21 12:34 AM PDT -,2022-10-21T07:34:29Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1286575361) at 2022-10-21 12:34 AM PDT -,2022-10-21T07:34:34Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1286575454) at 2022-10-21 12:34 AM PDT -,2022-10-21T07:34:43Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1286575616) at 2022-10-21 12:34 AM PDT -,2022-10-21T07:34:53Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1286575796) at 2022-10-21 12:34 AM PDT -,2022-10-21T07:34:55Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1286575836) at 2022-10-21 12:34 AM PDT -,2022-10-21T07:34:58Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1286575888) at 2022-10-21 12:34 AM PDT -,2022-10-21T07:35:00Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1286575923) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:05Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1286575982) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:07Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1286576019) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:13Z,- null commented on issue: [3541](https://github.com/hackforla/website/issues/3541#issuecomment-1286576140) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:16Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1286576182) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:18Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1286576214) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:24Z,- null commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1286576313) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:27Z,- null commented on issue: [3554](https://github.com/hackforla/website/issues/3554#issuecomment-1286576378) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:32Z,- null commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1286576463) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:36Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1286576544) at 2022-10-21 12:35 AM PDT -,2022-10-21T07:35:45Z,- null commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1286576682) at 2022-10-21 12:35 AM PDT -,2022-10-21T20:25:28Z,- null commented on issue: [3200](https://github.com/hackforla/website/issues/3200#issuecomment-1287402049) at 2022-10-21 01:25 PM PDT -,2022-10-22T01:12:21Z,- null commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1287569086) at 2022-10-21 06:12 PM PDT -,2022-10-22T01:16:48Z,- null commented on issue: [2851](https://github.com/hackforla/website/issues/2851#issuecomment-1287570068) at 2022-10-21 06:16 PM PDT -,2022-10-23T06:34:28Z,- null commented on issue: [2852](https://github.com/hackforla/website/issues/2852#issuecomment-1288023540) at 2022-10-22 11:34 PM PDT -,2022-10-23T18:29:16Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1288171266) at 2022-10-23 11:29 AM PDT -,2022-10-23T18:45:54Z,- null commented on issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1288174029) at 2022-10-23 11:45 AM PDT -,2022-10-24T03:22:41Z,- null commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1288361496) at 2022-10-23 08:22 PM PDT -,2022-10-24T21:11:59Z,- null commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1289623056) at 2022-10-24 02:11 PM PDT -,2022-10-24T22:22:26Z,- null commented on issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1289706593) at 2022-10-24 03:22 PM PDT -,2022-10-25T00:43:02Z,- null commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1289826869) at 2022-10-24 05:43 PM PDT -,2022-10-25T01:05:18Z,- null commented on issue: [3284](https://github.com/hackforla/website/issues/3284#issuecomment-1289843551) at 2022-10-24 06:05 PM PDT -,2022-10-25T01:26:37Z,- null commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1289856003) at 2022-10-24 06:26 PM PDT -,2022-10-25T02:29:01Z,- null commented on issue: [3205](https://github.com/hackforla/website/issues/3205#issuecomment-1289892863) at 2022-10-24 07:29 PM PDT -,2022-10-25T20:35:23Z,- null commented on issue: [2857](https://github.com/hackforla/website/issues/2857#issuecomment-1291110611) at 2022-10-25 01:35 PM PDT -,2022-10-25T23:43:57Z,- null commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1291255258) at 2022-10-25 04:43 PM PDT -,2022-10-27T03:19:59Z,- null commented on issue: [3278](https://github.com/hackforla/website/issues/3278#issuecomment-1292919058) at 2022-10-26 08:19 PM PDT -,2022-10-27T07:01:13Z,- null commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1293081332) at 2022-10-27 12:01 AM PDT -,2022-10-28T07:20:46Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1294568051) at 2022-10-28 12:20 AM PDT -,2022-10-28T07:21:30Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1294569393) at 2022-10-28 12:21 AM PDT -,2022-10-28T07:21:36Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1294569608) at 2022-10-28 12:21 AM PDT -,2022-10-28T07:21:55Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1294570143) at 2022-10-28 12:21 AM PDT -,2022-10-28T07:22:03Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1294570368) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:15Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1294570738) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:21Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1294570938) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:25Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1294571036) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:32Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1294571236) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:35Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1294571328) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:39Z,- null commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1294571444) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:42Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1294571520) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:48Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1294571696) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:53Z,- null commented on issue: [3541](https://github.com/hackforla/website/issues/3541#issuecomment-1294571858) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:56Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1294571948) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:22:59Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1294572043) at 2022-10-28 12:22 AM PDT -,2022-10-28T07:23:02Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1294572168) at 2022-10-28 12:23 AM PDT -,2022-10-28T07:23:10Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1294572406) at 2022-10-28 12:23 AM PDT -,2022-10-28T07:23:16Z,- null commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1294572553) at 2022-10-28 12:23 AM PDT -,2022-10-28T07:23:20Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1294572670) at 2022-10-28 12:23 AM PDT -,2022-10-28T07:23:23Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1294572764) at 2022-10-28 12:23 AM PDT -,2022-10-28T07:23:31Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1294573020) at 2022-10-28 12:23 AM PDT -,2022-10-28T18:33:51Z,- null commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1295328111) at 2022-10-28 11:33 AM PDT -,2022-10-29T00:38:17Z,- null commented on issue: [3206](https://github.com/hackforla/website/issues/3206#issuecomment-1295663820) at 2022-10-28 05:38 PM PDT -,2022-10-29T13:05:22Z,- null commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295831242) at 2022-10-29 06:05 AM PDT -,2022-10-29T20:02:06Z,- null commented on issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1295956864) at 2022-10-29 01:02 PM PDT -,2022-10-30T16:47:56Z,- null commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1296299952) at 2022-10-30 09:47 AM PDT -,2022-10-30T18:58:17Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1296327333) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:24Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1296327359) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:35Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1296327390) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:40Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1296327406) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:43Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1296327418) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:48Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1296327429) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:50Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1296327440) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:55Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1296327452) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:58:58Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1296327463) at 2022-10-30 11:58 AM PDT -,2022-10-30T18:59:01Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1296327466) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:06Z,- null commented on issue: [3541](https://github.com/hackforla/website/issues/3541#issuecomment-1296327481) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:09Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1296327490) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:12Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1296327501) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:14Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1296327508) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:21Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1296327535) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:24Z,- null commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1296327545) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:27Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1296327556) at 2022-10-30 11:59 AM PDT -,2022-10-30T18:59:30Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1296327572) at 2022-10-30 11:59 AM PDT -,2022-10-31T12:00:50Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1296984540) at 2022-10-31 05:00 AM PDT -,2022-11-01T00:00:56Z,- null commented on issue: [3619](https://github.com/hackforla/website/issues/3619#issuecomment-1297831798) at 2022-10-31 05:00 PM PDT -,2022-11-01T02:29:21Z,- null commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1297937425) at 2022-10-31 07:29 PM PDT -,2022-11-01T05:00:51Z,- null commented on issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1298030118) at 2022-10-31 10:00 PM PDT -,2022-11-01T16:36:30Z,- null commented on issue: [2856](https://github.com/hackforla/website/issues/2856#issuecomment-1298807616) at 2022-11-01 09:36 AM PDT -,2022-11-01T22:57:36Z,- null commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1299328876) at 2022-11-01 03:57 PM PDT -,2022-11-02T02:30:10Z,- null commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1299478346) at 2022-11-01 07:30 PM PDT -,2022-11-02T03:55:02Z,- null commented on issue: [3685](https://github.com/hackforla/website/issues/3685#issuecomment-1299530015) at 2022-11-01 08:55 PM PDT -,2022-11-02T06:08:56Z,- null commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1299625085) at 2022-11-01 11:08 PM PDT -,2022-11-03T01:05:04Z,- null commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-1301535974) at 2022-11-02 06:05 PM PDT -,2022-11-03T01:42:14Z,- null commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1301553640) at 2022-11-02 06:42 PM PDT -,2022-11-04T00:48:29Z,- null commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1302830694) at 2022-11-03 05:48 PM PDT -,2022-11-04T07:21:37Z,- null commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1303061975) at 2022-11-04 12:21 AM PDT -,2022-11-04T07:21:45Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1303062057) at 2022-11-04 12:21 AM PDT -,2022-11-04T07:21:55Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1303062165) at 2022-11-04 12:21 AM PDT -,2022-11-04T07:22:01Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1303062214) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:06Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1303062269) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:11Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1303062341) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:16Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1303062412) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:21Z,- null commented on issue: [3541](https://github.com/hackforla/website/issues/3541#issuecomment-1303062450) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:24Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1303062477) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:26Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1303062504) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:33Z,- null commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1303062581) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:38Z,- null commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1303062632) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:41Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1303062657) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:48Z,- null commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1303062741) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:54Z,- null commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1303062797) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:22:58Z,- null commented on issue: [3638](https://github.com/hackforla/website/issues/3638#issuecomment-1303062861) at 2022-11-04 12:22 AM PDT -,2022-11-04T07:23:01Z,- null commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1303062894) at 2022-11-04 12:23 AM PDT -,2022-11-04T17:06:05Z,- null commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1303891972) at 2022-11-04 10:06 AM PDT -,2022-11-05T03:39:29Z,- null commented on issue: [2858](https://github.com/hackforla/website/issues/2858#issuecomment-1304392356) at 2022-11-04 07:39 PM PST -,2022-11-05T05:16:25Z,- null commented on issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1304410669) at 2022-11-04 09:16 PM PST -,2022-11-06T02:22:45Z,- null commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1304698791) at 2022-11-05 06:22 PM PST -,2022-11-06T19:30:43Z,- null commented on issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-1304875419) at 2022-11-06 11:30 AM PST -,2022-11-06T19:41:14Z,- null commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1304877262) at 2022-11-06 11:41 AM PST -,2022-11-08T05:53:32Z,- null commented on issue: [3207](https://github.com/hackforla/website/issues/3207#issuecomment-1306672898) at 2022-11-07 09:53 PM PST -,2022-11-08T12:13:23Z,- null commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1307114459) at 2022-11-08 04:13 AM PST -,2022-11-08T12:26:41Z,- null commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1307131183) at 2022-11-08 04:26 AM PST -,2022-11-08T19:58:20Z,- null commented on issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1307757253) at 2022-11-08 11:58 AM PST -,2022-11-08T23:42:48Z,- null commented on issue: [2859](https://github.com/hackforla/website/issues/2859#issuecomment-1307984313) at 2022-11-08 03:42 PM PST -,2022-11-09T05:12:01Z,- null commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1308222163) at 2022-11-08 09:12 PM PST -,2022-11-09T20:28:57Z,- null commented on issue: [3410](https://github.com/hackforla/website/issues/3410#issuecomment-1309339206) at 2022-11-09 12:28 PM PST -,2022-11-11T06:34:04Z,- null commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1311286534) at 2022-11-10 10:34 PM PST -,2022-11-11T07:21:24Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1311320171) at 2022-11-10 11:21 PM PST -,2022-11-11T07:21:27Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1311320234) at 2022-11-10 11:21 PM PST -,2022-11-11T07:21:58Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1311320899) at 2022-11-10 11:21 PM PST -,2022-11-11T07:22:16Z,- null commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1311321219) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:28Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1311321415) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:33Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1311321508) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:37Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1311321573) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:40Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1311321623) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:43Z,- null commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1311321689) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:46Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1311321756) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:49Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1311321834) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:52Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1311321892) at 2022-11-10 11:22 PM PST -,2022-11-11T07:22:57Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1311321974) at 2022-11-10 11:22 PM PST -,2022-11-11T07:23:00Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1311322025) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:03Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1311322075) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:06Z,- null commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1311322118) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:10Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1311322157) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:13Z,- null commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1311322197) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:16Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1311322247) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:23Z,- null commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1311322338) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:26Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1311322386) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:37Z,- null commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1311322573) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:55Z,- null commented on issue: [3410](https://github.com/hackforla/website/issues/3410#issuecomment-1311322883) at 2022-11-10 11:23 PM PST -,2022-11-11T07:23:57Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1311323010) at 2022-11-10 11:23 PM PST -,2022-11-13T04:13:57Z,- null commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1312635136) at 2022-11-12 08:13 PM PST -,2022-11-13T19:19:37Z,- null commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1312801688) at 2022-11-13 11:19 AM PST -,2022-11-14T02:20:14Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1312951679) at 2022-11-13 06:20 PM PST -,2022-11-14T04:17:58Z,- null commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1313074640) at 2022-11-13 08:17 PM PST -,2022-11-14T21:55:58Z,- null commented on issue: [2860](https://github.com/hackforla/website/issues/2860#issuecomment-1314459413) at 2022-11-14 01:55 PM PST -,2022-11-15T06:08:05Z,- null commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1314821160) at 2022-11-14 10:08 PM PST -,2022-11-16T22:13:39Z,- null commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1317741345) at 2022-11-16 02:13 PM PST -,2022-11-16T22:57:10Z,- null commented on issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1317786433) at 2022-11-16 02:57 PM PST -,2022-11-17T19:35:07Z,- null commented on issue: [3211](https://github.com/hackforla/website/issues/3211#issuecomment-1319108920) at 2022-11-17 11:35 AM PST -,2022-11-17T19:36:16Z,- null commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1319110062) at 2022-11-17 11:36 AM PST -,2022-11-18T07:20:16Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1319636681) at 2022-11-17 11:20 PM PST -,2022-11-18T07:20:19Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1319636703) at 2022-11-17 11:20 PM PST -,2022-11-18T07:20:47Z,- null commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1319637015) at 2022-11-17 11:20 PM PST -,2022-11-18T07:20:53Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1319637081) at 2022-11-17 11:20 PM PST -,2022-11-18T07:20:55Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1319637110) at 2022-11-17 11:20 PM PST -,2022-11-18T07:20:58Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1319637143) at 2022-11-17 11:20 PM PST -,2022-11-18T07:21:01Z,- null commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1319637167) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:03Z,- null commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1319637192) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:06Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1319637227) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:09Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1319637262) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:14Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1319637326) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:16Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1319637354) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:19Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1319637396) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:22Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1319637434) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:27Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1319637497) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:30Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1319637534) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:38Z,- null commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1319637638) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:42Z,- null commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1319637670) at 2022-11-17 11:21 PM PST -,2022-11-18T07:21:58Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1319637832) at 2022-11-17 11:21 PM PST -,2022-11-18T07:22:02Z,- null commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1319637861) at 2022-11-17 11:22 PM PST -,2022-11-18T07:22:05Z,- null commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1319637906) at 2022-11-17 11:22 PM PST -,2022-11-18T07:22:11Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1319637960) at 2022-11-17 11:22 PM PST -,2022-11-18T07:22:14Z,- null commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1319637996) at 2022-11-17 11:22 PM PST -,2022-11-18T07:22:22Z,- null commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1319638102) at 2022-11-17 11:22 PM PST -,2022-11-18T07:22:30Z,- null commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1319638178) at 2022-11-17 11:22 PM PST -,2022-11-18T20:55:11Z,- null commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1320512988) at 2022-11-18 12:55 PM PST -,2022-11-18T21:54:58Z,- null commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1320569573) at 2022-11-18 01:54 PM PST -,2022-11-19T00:50:12Z,- null commented on issue: [3212](https://github.com/hackforla/website/issues/3212#issuecomment-1320710449) at 2022-11-18 04:50 PM PST -,2022-11-19T06:29:17Z,- null commented on issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1320815923) at 2022-11-18 10:29 PM PST -,2022-11-20T05:21:30Z,- null commented on issue: [3691](https://github.com/hackforla/website/issues/3691#issuecomment-1321042585) at 2022-11-19 09:21 PM PST -,2022-11-20T19:38:54Z,- null commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1321224019) at 2022-11-20 11:38 AM PST -,2022-11-22T14:47:53Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1323792815) at 2022-11-22 06:47 AM PST -,2022-11-23T02:20:19Z,- null commented on issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1324465225) at 2022-11-22 06:20 PM PST -,2022-11-24T03:17:52Z,- null commented on issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1325898070) at 2022-11-23 07:17 PM PST -,2022-11-25T07:17:52Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1327100941) at 2022-11-24 11:17 PM PST -,2022-11-25T07:17:55Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1327100977) at 2022-11-24 11:17 PM PST -,2022-11-25T07:18:19Z,- null commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1327101228) at 2022-11-24 11:18 PM PST -,2022-11-25T07:18:29Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1327101334) at 2022-11-24 11:18 PM PST -,2022-11-25T07:18:58Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1327101637) at 2022-11-24 11:18 PM PST -,2022-11-25T07:19:01Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1327101660) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:04Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1327101699) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:07Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1327101735) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:10Z,- null commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1327101764) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:14Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1327101818) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:17Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1327101849) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:20Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1327101883) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:23Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1327101914) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:26Z,- null commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1327101960) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:29Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1327101992) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:36Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1327102093) at 2022-11-24 11:19 PM PST -,2022-11-25T07:19:58Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1327102359) at 2022-11-24 11:19 PM PST -,2022-11-25T07:20:02Z,- null commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1327102396) at 2022-11-24 11:20 PM PST -,2022-11-25T07:20:05Z,- null commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1327102422) at 2022-11-24 11:20 PM PST -,2022-11-25T07:20:10Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1327102488) at 2022-11-24 11:20 PM PST -,2022-11-25T07:20:13Z,- null commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1327102515) at 2022-11-24 11:20 PM PST -,2022-11-25T07:20:17Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1327102551) at 2022-11-24 11:20 PM PST -,2022-11-25T07:20:24Z,- null commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1327102635) at 2022-11-24 11:20 PM PST -,2022-11-25T07:20:30Z,- null commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1327102699) at 2022-11-24 11:20 PM PST -,2022-11-25T07:20:35Z,- null commented on issue: [3707](https://github.com/hackforla/website/issues/3707#issuecomment-1327102753) at 2022-11-24 11:20 PM PST -,2022-11-27T20:29:07Z,- null commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333414) at 2022-11-27 12:29 PM PST -,2022-11-27T20:29:42Z,- null commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333526) at 2022-11-27 12:29 PM PST -,2022-11-27T20:30:45Z,- null commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333710) at 2022-11-27 12:30 PM PST -,2022-11-27T21:49:03Z,- null commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1328347569) at 2022-11-27 01:49 PM PST -,2022-11-28T00:19:11Z,- null commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1328381110) at 2022-11-27 04:19 PM PST -,2022-11-28T20:50:44Z,- null commented on issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1329746519) at 2022-11-28 12:50 PM PST -,2022-11-28T23:57:41Z,- null commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1329898879) at 2022-11-28 03:57 PM PST -,2022-11-29T06:43:03Z,- null commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1330156826) at 2022-11-28 10:43 PM PST -,2022-11-29T07:09:00Z,- null commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1330178092) at 2022-11-28 11:09 PM PST -,2022-11-29T22:59:57Z,- null commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1331425867) at 2022-11-29 02:59 PM PST -,2022-12-01T17:13:21Z,- null commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1334092406) at 2022-12-01 09:13 AM PST -,2022-12-02T07:17:10Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1334848513) at 2022-12-01 11:17 PM PST -,2022-12-02T07:17:12Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1334848535) at 2022-12-01 11:17 PM PST -,2022-12-02T07:18:04Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1334849087) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:06Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1334849110) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:09Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1334849141) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:11Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1334849171) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:17Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1334849210) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:19Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1334849240) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:23Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1334849281) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:25Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1334849306) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:32Z,- null commented on issue: [3130](https://github.com/hackforla/website/issues/3130#issuecomment-1334849388) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:45Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1334849506) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:51Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1334849571) at 2022-12-01 11:18 PM PST -,2022-12-02T07:18:53Z,- null commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1334849596) at 2022-12-01 11:18 PM PST -,2022-12-02T07:19:03Z,- null commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1334849701) at 2022-12-01 11:19 PM PST -,2022-12-02T07:19:07Z,- null commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1334849745) at 2022-12-01 11:19 PM PST -,2022-12-02T07:19:11Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1334849780) at 2022-12-01 11:19 PM PST -,2022-12-02T07:19:13Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1334849801) at 2022-12-01 11:19 PM PST -,2022-12-02T07:19:16Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1334849831) at 2022-12-01 11:19 PM PST -,2022-12-02T07:19:27Z,- null commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1334849951) at 2022-12-01 11:19 PM PST -,2022-12-02T07:19:29Z,- null commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1334849976) at 2022-12-01 11:19 PM PST -,2022-12-03T14:42:46Z,- null commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1336173866) at 2022-12-03 06:42 AM PST -,2022-12-07T23:40:38Z,- null commented on issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1341753838) at 2022-12-07 03:40 PM PST -,2022-12-09T07:16:58Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1343943249) at 2022-12-08 11:16 PM PST -,2022-12-09T07:17:33Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1343943686) at 2022-12-08 11:17 PM PST -,2022-12-09T07:18:11Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1343944151) at 2022-12-08 11:18 PM PST -,2022-12-09T07:18:14Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1343944194) at 2022-12-08 11:18 PM PST -,2022-12-09T07:18:17Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1343944236) at 2022-12-08 11:18 PM PST -,2022-12-09T07:18:20Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1343944281) at 2022-12-08 11:18 PM PST -,2022-12-09T07:18:30Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1343944385) at 2022-12-08 11:18 PM PST -,2022-12-09T07:18:33Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1343944412) at 2022-12-08 11:18 PM PST -,2022-12-09T07:18:37Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1343944447) at 2022-12-08 11:18 PM PST -,2022-12-09T07:18:40Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1343944493) at 2022-12-08 11:18 PM PST -,2022-12-09T07:19:13Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1343944893) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:17Z,- null commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1343944941) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:32Z,- null commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1343945122) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:36Z,- null commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1343945151) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:39Z,- null commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1343945182) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:42Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1343945240) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:46Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1343945278) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:49Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1343945321) at 2022-12-08 11:19 PM PST -,2022-12-09T07:19:52Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1343945362) at 2022-12-08 11:19 PM PST -,2022-12-12T18:44:00Z,- null commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347061026) at 2022-12-12 10:44 AM PST -,2022-12-13T01:22:21Z,- null commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347613165) at 2022-12-12 05:22 PM PST -,2022-12-13T01:31:42Z,- null commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1347619719) at 2022-12-12 05:31 PM PST -,2022-12-13T04:40:52Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1347739491) at 2022-12-12 08:40 PM PST -,2022-12-14T16:27:35Z,- null commented on issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351729366) at 2022-12-14 08:27 AM PST -,2022-12-16T07:15:56Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1354316362) at 2022-12-15 11:15 PM PST -,2022-12-16T07:15:58Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1354316414) at 2022-12-15 11:15 PM PST -,2022-12-16T07:16:17Z,- null commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1354316808) at 2022-12-15 11:16 PM PST -,2022-12-16T07:16:22Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1354316904) at 2022-12-15 11:16 PM PST -,2022-12-16T07:16:45Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1354317419) at 2022-12-15 11:16 PM PST -,2022-12-16T07:16:49Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1354317480) at 2022-12-15 11:16 PM PST -,2022-12-16T07:16:54Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1354317567) at 2022-12-15 11:16 PM PST -,2022-12-16T07:16:56Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1354317621) at 2022-12-15 11:16 PM PST -,2022-12-16T07:16:58Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1354317651) at 2022-12-15 11:16 PM PST -,2022-12-16T07:17:00Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1354317702) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:03Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1354317740) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:07Z,- null commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1354317794) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:23Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1354318111) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:26Z,- null commented on issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1354318151) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:30Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1354318226) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:36Z,- null commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1354318346) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:38Z,- null commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1354318378) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:40Z,- null commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1354318410) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:42Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1354318438) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:45Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1354318487) at 2022-12-15 11:17 PM PST -,2022-12-16T07:17:46Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1354318520) at 2022-12-15 11:17 PM PST -,2022-12-16T07:18:02Z,- null commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1354318798) at 2022-12-15 11:18 PM PST -,2022-12-18T09:52:29Z,- null commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1356760728) at 2022-12-18 01:52 AM PST -,2022-12-20T21:38:43Z,- null opened issue: [3772](https://github.com/hackforla/website/issues/3772) at 2022-12-20 01:38 PM PST -,2022-12-20T21:58:13Z,- null closed issue as not planned: [3772](https://github.com/hackforla/website/issues/3772#event-8082125352) at 2022-12-20 01:58 PM PST -,2022-12-20T23:47:18Z,- null commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1360495127) at 2022-12-20 03:47 PM PST -,2022-12-23T07:16:16Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1363685170) at 2022-12-22 11:16 PM PST -,2022-12-23T07:16:19Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1363685214) at 2022-12-22 11:16 PM PST -,2022-12-23T07:16:53Z,- null commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1363685556) at 2022-12-22 11:16 PM PST -,2022-12-23T07:17:27Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1363685904) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:31Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1363685938) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:34Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1363685970) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:38Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1363686015) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:43Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1363686072) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:46Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1363686113) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:49Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1363686151) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:53Z,- null commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1363686198) at 2022-12-22 11:17 PM PST -,2022-12-23T07:17:56Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1363686228) at 2022-12-22 11:17 PM PST -,2022-12-23T07:18:00Z,- null commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1363686269) at 2022-12-22 11:18 PM PST -,2022-12-23T07:18:24Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1363686526) at 2022-12-22 11:18 PM PST -,2022-12-23T07:18:32Z,- null commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1363686596) at 2022-12-22 11:18 PM PST -,2022-12-23T07:18:35Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1363686634) at 2022-12-22 11:18 PM PST -,2022-12-23T07:18:47Z,- null commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1363686762) at 2022-12-22 11:18 PM PST -,2022-12-23T07:18:50Z,- null commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1363686790) at 2022-12-22 11:18 PM PST -,2022-12-23T07:18:53Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1363686815) at 2022-12-22 11:18 PM PST -,2022-12-23T07:18:57Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1363686846) at 2022-12-22 11:18 PM PST -,2022-12-23T07:19:00Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1363686865) at 2022-12-22 11:19 PM PST -,2022-12-23T07:19:04Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1363686903) at 2022-12-22 11:19 PM PST -,2022-12-23T07:19:25Z,- null commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1363687122) at 2022-12-22 11:19 PM PST -,2022-12-26T23:56:49Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1365511705) at 2022-12-26 03:56 PM PST -,2022-12-30T07:15:42Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1367763734) at 2022-12-29 11:15 PM PST -,2022-12-30T07:15:44Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1367763744) at 2022-12-29 11:15 PM PST -,2022-12-30T07:16:30Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1367763994) at 2022-12-29 11:16 PM PST -,2022-12-30T07:16:32Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1367763999) at 2022-12-29 11:16 PM PST -,2022-12-30T07:16:34Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1367764004) at 2022-12-29 11:16 PM PST -,2022-12-30T07:16:36Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1367764013) at 2022-12-29 11:16 PM PST -,2022-12-30T07:16:40Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1367764037) at 2022-12-29 11:16 PM PST -,2022-12-30T07:16:42Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1367764050) at 2022-12-29 11:16 PM PST -,2022-12-30T07:16:44Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1367764060) at 2022-12-29 11:16 PM PST -,2022-12-30T07:16:48Z,- null commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1367764084) at 2022-12-29 11:16 PM PST -,2022-12-30T07:17:06Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1367764171) at 2022-12-29 11:17 PM PST -,2022-12-30T07:17:13Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1367764205) at 2022-12-29 11:17 PM PST -,2022-12-30T07:17:20Z,- null commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1367764243) at 2022-12-29 11:17 PM PST -,2022-12-30T07:17:22Z,- null commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1367764252) at 2022-12-29 11:17 PM PST -,2022-12-30T07:17:26Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1367764273) at 2022-12-29 11:17 PM PST -,2022-12-30T07:17:29Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1367764291) at 2022-12-29 11:17 PM PST -,2022-12-30T07:17:32Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1367764305) at 2022-12-29 11:17 PM PST -,2022-12-30T07:17:45Z,- null commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1367764392) at 2022-12-29 11:17 PM PST -,2023-01-04T07:57:36Z,- null opened issue: [3791](https://github.com/hackforla/website/issues/3791) at 2023-01-03 11:57 PM PST -,2023-01-05T07:05:50Z,- null commented on issue: [2874](https://github.com/hackforla/website/issues/2874#issuecomment-1371853858) at 2023-01-04 11:05 PM PST -,2023-01-06T03:29:49Z,- null assigned to issue: [3791](https://github.com/hackforla/website/issues/3791) at 2023-01-05 07:29 PM PST -,2023-01-06T03:57:25Z,- null commented on issue: [2863](https://github.com/hackforla/website/issues/2863#issuecomment-1373111960) at 2023-01-05 07:57 PM PST -,2023-01-06T07:15:27Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1373237635) at 2023-01-05 11:15 PM PST -,2023-01-06T07:15:29Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1373237669) at 2023-01-05 11:15 PM PST -,2023-01-06T07:16:22Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1373239042) at 2023-01-05 11:16 PM PST -,2023-01-06T07:16:24Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1373239100) at 2023-01-05 11:16 PM PST -,2023-01-06T07:16:26Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1373239171) at 2023-01-05 11:16 PM PST -,2023-01-06T07:16:29Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1373239250) at 2023-01-05 11:16 PM PST -,2023-01-06T07:16:32Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1373239331) at 2023-01-05 11:16 PM PST -,2023-01-06T07:16:35Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1373239372) at 2023-01-05 11:16 PM PST -,2023-01-06T07:16:37Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1373239444) at 2023-01-05 11:16 PM PST -,2023-01-06T07:17:00Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1373240169) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:15Z,- null commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1373240603) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:17Z,- null commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1373240659) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:20Z,- null commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1373240741) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:23Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1373240829) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:25Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1373240913) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:28Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1373240975) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:30Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1373241052) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:47Z,- null commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1373241378) at 2023-01-05 11:17 PM PST -,2023-01-06T07:17:51Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1373241515) at 2023-01-05 11:17 PM PST -,2023-01-08T03:03:01Z,- null assigned to issue: [2864](https://github.com/hackforla/website/issues/2864#issuecomment-1048466377) at 2023-01-07 07:03 PM PST -,2023-01-08T03:03:21Z,- null commented on issue: [2864](https://github.com/hackforla/website/issues/2864#issuecomment-1374694789) at 2023-01-07 07:03 PM PST -,2023-01-08T03:08:54Z,- null commented on issue: [2864](https://github.com/hackforla/website/issues/2864#issuecomment-1374695553) at 2023-01-07 07:08 PM PST -,2023-01-08T03:13:42Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1374696124) at 2023-01-07 07:13 PM PST -,2023-01-09T16:56:38Z,- null commented on issue: [2865](https://github.com/hackforla/website/issues/2865#issuecomment-1375946844) at 2023-01-09 08:56 AM PST -,2023-01-10T15:30:43Z,- null commented on issue: [2870](https://github.com/hackforla/website/issues/2870#issuecomment-1377448011) at 2023-01-10 07:30 AM PST -,2023-01-10T16:25:40Z,- null commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1377524484) at 2023-01-10 08:25 AM PST -,2023-01-10T18:42:50Z,- null commented on issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1377694291) at 2023-01-10 10:42 AM PST -,2023-01-10T21:26:03Z,- null commented on issue: [2861](https://github.com/hackforla/website/issues/2861#issuecomment-1377890264) at 2023-01-10 01:26 PM PST -,2023-01-10T22:43:12Z,- null commented on issue: [2866](https://github.com/hackforla/website/issues/2866#issuecomment-1377991422) at 2023-01-10 02:43 PM PST -,2023-01-11T00:31:26Z,- null commented on issue: [3310](https://github.com/hackforla/website/issues/3310#issuecomment-1378077210) at 2023-01-10 04:31 PM PST -,2023-01-11T17:46:45Z,- null commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1379260850) at 2023-01-11 09:46 AM PST -,2023-01-11T22:11:38Z,- null commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1379551626) at 2023-01-11 02:11 PM PST -,2023-01-12T19:43:06Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1380918706) at 2023-01-12 11:43 AM PST -,2023-01-12T22:05:27Z,- null commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1381044816) at 2023-01-12 02:05 PM PST -,2023-01-12T23:33:14Z,- null opened pull request: [3811](https://github.com/hackforla/website/pull/3811) at 2023-01-12 03:33 PM PST -,2023-01-13T00:05:16Z,- null commented on issue: [2864](https://github.com/hackforla/website/issues/2864#issuecomment-1381126953) at 2023-01-12 04:05 PM PST -,2023-01-13T05:08:09Z,- null commented on issue: [3401](https://github.com/hackforla/website/issues/3401#issuecomment-1381321948) at 2023-01-12 09:08 PM PST -,2023-01-13T07:16:43Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1381410964) at 2023-01-12 11:16 PM PST -,2023-01-13T07:16:47Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1381411019) at 2023-01-12 11:16 PM PST -,2023-01-13T07:18:00Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1381411877) at 2023-01-12 11:18 PM PST -,2023-01-13T07:18:06Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1381411951) at 2023-01-12 11:18 PM PST -,2023-01-13T07:18:10Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1381411988) at 2023-01-12 11:18 PM PST -,2023-01-13T07:18:16Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1381412074) at 2023-01-12 11:18 PM PST -,2023-01-13T07:18:19Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1381412107) at 2023-01-12 11:18 PM PST -,2023-01-13T07:18:22Z,- null commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1381412143) at 2023-01-12 11:18 PM PST -,2023-01-13T07:18:53Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1381412470) at 2023-01-12 11:18 PM PST -,2023-01-13T07:19:05Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1381412613) at 2023-01-12 11:19 PM PST -,2023-01-13T07:19:16Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1381412762) at 2023-01-12 11:19 PM PST -,2023-01-13T07:19:20Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1381412809) at 2023-01-12 11:19 PM PST -,2023-01-13T07:19:27Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1381412881) at 2023-01-12 11:19 PM PST -,2023-01-13T07:19:45Z,- null commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1381413056) at 2023-01-12 11:19 PM PST -,2023-01-13T07:19:54Z,- null commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1381413161) at 2023-01-12 11:19 PM PST -,2023-01-13T07:19:57Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1381413193) at 2023-01-12 11:19 PM PST -,2023-01-13T07:20:04Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1381413268) at 2023-01-12 11:20 PM PST -,2023-01-13T07:20:12Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1381413368) at 2023-01-12 11:20 PM PST -,2023-01-13T07:20:18Z,- null commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1381413434) at 2023-01-12 11:20 PM PST -,2023-01-13T17:32:04Z,- null commented on issue: [2276](https://github.com/hackforla/website/issues/2276#issuecomment-1382173504) at 2023-01-13 09:32 AM PST -,2023-01-15T10:16:11Z,- null commented on issue: [3701](https://github.com/hackforla/website/issues/3701#issuecomment-1383111338) at 2023-01-15 02:16 AM PST -,2023-01-15T16:59:47Z,- null commented on issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1383200315) at 2023-01-15 08:59 AM PST -,2023-01-15T17:30:02Z,- null commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1383207208) at 2023-01-15 09:30 AM PST -,2023-01-15T22:05:25Z,- null commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1383265034) at 2023-01-15 02:05 PM PST -,2023-01-16T20:59:12Z,- null commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1384542689) at 2023-01-16 12:59 PM PST -,2023-01-17T05:50:29Z,- null commented on issue: [2867](https://github.com/hackforla/website/issues/2867#issuecomment-1384866853) at 2023-01-16 09:50 PM PST -,2023-01-17T16:14:51Z,- null commented on issue: [3382](https://github.com/hackforla/website/issues/3382#issuecomment-1385671419) at 2023-01-17 08:14 AM PST -,2023-01-17T17:43:38Z,- null commented on issue: [3398](https://github.com/hackforla/website/issues/3398#issuecomment-1385794438) at 2023-01-17 09:43 AM PST -,2023-01-17T19:02:32Z,- null commented on issue: [3402](https://github.com/hackforla/website/issues/3402#issuecomment-1385910803) at 2023-01-17 11:02 AM PST -,2023-01-17T20:05:15Z,- null commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1385985164) at 2023-01-17 12:05 PM PST -,2023-01-18T01:12:15Z,- null commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1386320541) at 2023-01-17 05:12 PM PST -,2023-01-18T02:21:01Z,- null commented on issue: [3415](https://github.com/hackforla/website/issues/3415#issuecomment-1386377275) at 2023-01-17 06:21 PM PST -,2023-01-18T03:31:14Z,- null commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1386434200) at 2023-01-17 07:31 PM PST -,2023-01-18T17:11:01Z,- null commented on issue: [2868](https://github.com/hackforla/website/issues/2868#issuecomment-1387429704) at 2023-01-18 09:11 AM PST -,2023-01-19T03:32:40Z,- null commented on issue: [2869](https://github.com/hackforla/website/issues/2869#issuecomment-1396395819) at 2023-01-18 07:32 PM PST -,2023-01-19T04:13:01Z,- null commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1396416698) at 2023-01-18 08:13 PM PST -,2023-01-20T00:21:11Z,- null pull request merged: [3811](https://github.com/hackforla/website/pull/3811#event-8317320800) at 2023-01-19 04:21 PM PST -,2023-01-20T00:37:11Z,- null commented on issue: [3761](https://github.com/hackforla/website/issues/3761#issuecomment-1397786398) at 2023-01-19 04:37 PM PST -,2023-01-20T05:54:41Z,- null commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1397952682) at 2023-01-19 09:54 PM PST -,2023-01-20T07:17:05Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1398004343) at 2023-01-19 11:17 PM PST -,2023-01-20T07:17:12Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1398004432) at 2023-01-19 11:17 PM PST -,2023-01-20T07:18:34Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1398005390) at 2023-01-19 11:18 PM PST -,2023-01-20T07:18:39Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1398005450) at 2023-01-19 11:18 PM PST -,2023-01-20T07:18:43Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1398005499) at 2023-01-19 11:18 PM PST -,2023-01-20T07:18:47Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1398005530) at 2023-01-19 11:18 PM PST -,2023-01-20T07:18:54Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1398005602) at 2023-01-19 11:18 PM PST -,2023-01-20T07:18:58Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1398005639) at 2023-01-19 11:18 PM PST -,2023-01-20T07:19:42Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1398006131) at 2023-01-19 11:19 PM PST -,2023-01-20T07:20:07Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1398006425) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:11Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1398006453) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:15Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1398006501) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:20Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1398006535) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:42Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1398006763) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:47Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1398006811) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:51Z,- null commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1398006854) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:55Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1398006901) at 2023-01-19 11:20 PM PST -,2023-01-20T07:20:59Z,- null commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1398006938) at 2023-01-19 11:20 PM PST -,2023-01-20T07:21:17Z,- null commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1398007122) at 2023-01-19 11:21 PM PST -,2023-01-20T07:21:20Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1398007159) at 2023-01-19 11:21 PM PST -,2023-01-20T07:21:25Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1398007208) at 2023-01-19 11:21 PM PST -,2023-01-21T00:45:32Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1399105179) at 2023-01-20 04:45 PM PST -,2023-01-21T01:09:05Z,- null assigned to issue: [3396](https://github.com/hackforla/website/issues/3396#issuecomment-1189756254) at 2023-01-20 05:09 PM PST -,2023-01-21T01:09:22Z,- null commented on issue: [3396](https://github.com/hackforla/website/issues/3396#issuecomment-1399112387) at 2023-01-20 05:09 PM PST -,2023-01-21T01:23:36Z,- null commented on issue: [3396](https://github.com/hackforla/website/issues/3396#issuecomment-1399126220) at 2023-01-20 05:23 PM PST -,2023-01-21T16:18:48Z,- null commented on issue: [3399](https://github.com/hackforla/website/issues/3399#issuecomment-1399281928) at 2023-01-21 08:18 AM PST -,2023-01-22T03:21:48Z,- null opened pull request: [3850](https://github.com/hackforla/website/pull/3850) at 2023-01-21 07:21 PM PST -,2023-01-22T18:17:54Z,- null commented on issue: [3383](https://github.com/hackforla/website/issues/3383#issuecomment-1399566176) at 2023-01-22 10:17 AM PST -,2023-01-22T19:37:16Z,- null commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399585513) at 2023-01-22 11:37 AM PST -,2023-01-22T21:29:31Z,- null commented on issue: [3858](https://github.com/hackforla/website/issues/3858#issuecomment-1399613592) at 2023-01-22 01:29 PM PST -,2023-01-22T23:14:22Z,- null commented on pull request: [3847](https://github.com/hackforla/website/pull/3847#issuecomment-1399636359) at 2023-01-22 03:14 PM PST -,2023-01-22T23:48:42Z,- null submitted pull request review: [3847](https://github.com/hackforla/website/pull/3847#pullrequestreview-1264897412) at 2023-01-22 03:48 PM PST -,2023-01-23T07:33:44Z,- null commented on issue: [3823](https://github.com/hackforla/website/issues/3823#issuecomment-1399916300) at 2023-01-22 11:33 PM PST -,2023-01-23T22:46:53Z,- null commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1401111348) at 2023-01-23 02:46 PM PST -,2023-01-24T00:12:35Z,- null commented on issue: [3793](https://github.com/hackforla/website/issues/3793#issuecomment-1401185388) at 2023-01-23 04:12 PM PST -,2023-01-24T04:57:10Z,- null assigned to issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1283363218) at 2023-01-23 08:57 PM PST -,2023-01-24T04:57:24Z,- null commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1401396737) at 2023-01-23 08:57 PM PST -,2023-01-24T05:02:29Z,- null commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1401399449) at 2023-01-23 09:02 PM PST -,2023-01-24T05:47:25Z,- null commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1401425817) at 2023-01-23 09:47 PM PST -,2023-01-24T15:17:46Z,- null pull request merged: [3850](https://github.com/hackforla/website/pull/3850#event-8345380637) at 2023-01-24 07:17 AM PST -,2023-01-24T15:18:30Z,- null pull request merged: [3850](https://github.com/hackforla/website/pull/3850#event-8345388596) at 2023-01-24 07:18 AM PST -,2023-01-24T19:21:54Z,- null commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1402469898) at 2023-01-24 11:21 AM PST -,2023-01-25T18:33:15Z,- null commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1404053663) at 2023-01-25 10:33 AM PST -,2023-01-25T22:43:43Z,- null commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1404322323) at 2023-01-25 02:43 PM PST -,2023-01-26T18:55:07Z,- null commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1405456779) at 2023-01-26 10:55 AM PST -,2023-01-27T03:27:36Z,- null commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1405972262) at 2023-01-26 07:27 PM PST -,2023-01-27T07:16:29Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1406112762) at 2023-01-26 11:16 PM PST -,2023-01-27T07:16:33Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1406112811) at 2023-01-26 11:16 PM PST -,2023-01-27T07:16:36Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1406112846) at 2023-01-26 11:16 PM PST -,2023-01-27T07:17:44Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1406113577) at 2023-01-26 11:17 PM PST -,2023-01-27T07:17:47Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1406113607) at 2023-01-26 11:17 PM PST -,2023-01-27T07:17:51Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1406113648) at 2023-01-26 11:17 PM PST -,2023-01-27T07:17:54Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1406113685) at 2023-01-26 11:17 PM PST -,2023-01-27T07:17:57Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1406113716) at 2023-01-26 11:17 PM PST -,2023-01-27T07:18:00Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1406113752) at 2023-01-26 11:18 PM PST -,2023-01-27T07:18:21Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1406113978) at 2023-01-26 11:18 PM PST -,2023-01-27T07:18:34Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1406114142) at 2023-01-26 11:18 PM PST -,2023-01-27T07:18:45Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1406114282) at 2023-01-26 11:18 PM PST -,2023-01-27T07:18:49Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1406114328) at 2023-01-26 11:18 PM PST -,2023-01-27T07:18:52Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1406114365) at 2023-01-26 11:18 PM PST -,2023-01-27T07:19:18Z,- null commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1406114655) at 2023-01-26 11:19 PM PST -,2023-01-27T07:19:22Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1406114689) at 2023-01-26 11:19 PM PST -,2023-01-27T07:19:25Z,- null commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1406114731) at 2023-01-26 11:19 PM PST -,2023-01-27T07:19:40Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1406114880) at 2023-01-26 11:19 PM PST -,2023-01-27T07:19:43Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1406114910) at 2023-01-26 11:19 PM PST -,2023-01-27T07:19:49Z,- null commented on issue: [3352](https://github.com/hackforla/website/issues/3352#issuecomment-1406114976) at 2023-01-26 11:19 PM PST -,2023-01-27T07:19:52Z,- null commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1406115021) at 2023-01-26 11:19 PM PST -,2023-01-27T07:19:57Z,- null commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1406115068) at 2023-01-26 11:19 PM PST -,2023-01-27T07:20:12Z,- null commented on issue: [3383](https://github.com/hackforla/website/issues/3383#issuecomment-1406115234) at 2023-01-26 11:20 PM PST -,2023-01-27T07:20:16Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1406115281) at 2023-01-26 11:20 PM PST -,2023-01-27T07:20:37Z,- null commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1406115526) at 2023-01-26 11:20 PM PST -,2023-01-28T09:21:18Z,- null commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1407351548) at 2023-01-28 01:21 AM PST -,2023-01-29T00:00:03Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1407515264) at 2023-01-28 04:00 PM PST -,2023-01-29T18:53:58Z,- null commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1407742256) at 2023-01-29 10:53 AM PST -,2023-01-29T21:20:46Z,- null commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1407772814) at 2023-01-29 01:20 PM PST -,2023-01-29T23:43:44Z,- null commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1407805747) at 2023-01-29 03:43 PM PST -,2023-01-30T01:16:32Z,- null commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407846561) at 2023-01-29 05:16 PM PST -,2023-01-30T16:28:09Z,- null commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1408940772) at 2023-01-30 08:28 AM PST -,2023-01-31T00:32:11Z,- null commented on issue: [3892](https://github.com/hackforla/website/issues/3892#issuecomment-1409571643) at 2023-01-30 04:32 PM PST -,2023-01-31T04:42:40Z,- null commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1409746844) at 2023-01-30 08:42 PM PST -,2023-01-31T04:55:46Z,- null unassigned from issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1409746844) at 2023-01-30 08:55 PM PST -,2023-01-31T23:24:17Z,- null commented on issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1411211157) at 2023-01-31 03:24 PM PST -,2023-02-01T05:00:22Z,- null commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1411464265) at 2023-01-31 09:00 PM PST -,2023-02-01T05:01:10Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1411464988) at 2023-01-31 09:01 PM PST -,2023-02-01T05:02:42Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1411467683) at 2023-01-31 09:02 PM PST -,2023-02-01T05:06:20Z,- null commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1411473897) at 2023-01-31 09:06 PM PST -,2023-02-01T05:12:10Z,- null commented on issue: [3893](https://github.com/hackforla/website/issues/3893#issuecomment-1411478803) at 2023-01-31 09:12 PM PST -,2023-02-01T05:29:13Z,- null commented on issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1411489986) at 2023-01-31 09:29 PM PST -,2023-02-01T06:46:43Z,- null commented on issue: [3255](https://github.com/hackforla/website/issues/3255#issuecomment-1411545090) at 2023-01-31 10:46 PM PST -,2023-02-01T07:26:37Z,- null commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411581690) at 2023-01-31 11:26 PM PST -,2023-02-02T07:27:54Z,- null commented on issue: [3893](https://github.com/hackforla/website/issues/3893#issuecomment-1413268245) at 2023-02-01 11:27 PM PST -,2023-02-02T18:00:45Z,- null commented on issue: [3840](https://github.com/hackforla/website/issues/3840#issuecomment-1414148612) at 2023-02-02 10:00 AM PST -,2023-02-02T20:24:25Z,- null commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1414329618) at 2023-02-02 12:24 PM PST -,2023-02-02T22:30:56Z,- null commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1414462044) at 2023-02-02 02:30 PM PST -,2023-02-03T07:17:12Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1415201183) at 2023-02-02 11:17 PM PST -,2023-02-03T07:17:15Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1415201265) at 2023-02-02 11:17 PM PST -,2023-02-03T07:17:18Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1415201357) at 2023-02-02 11:17 PM PST -,2023-02-03T07:18:16Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1415203083) at 2023-02-02 11:18 PM PST -,2023-02-03T07:18:19Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1415203164) at 2023-02-02 11:18 PM PST -,2023-02-03T07:18:22Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1415203248) at 2023-02-02 11:18 PM PST -,2023-02-03T07:18:25Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1415203337) at 2023-02-02 11:18 PM PST -,2023-02-03T07:18:27Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1415203416) at 2023-02-02 11:18 PM PST -,2023-02-03T07:18:30Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1415203493) at 2023-02-02 11:18 PM PST -,2023-02-03T07:18:48Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1415204057) at 2023-02-02 11:18 PM PST -,2023-02-03T07:19:09Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1415204632) at 2023-02-02 11:19 PM PST -,2023-02-03T07:19:12Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1415204723) at 2023-02-02 11:19 PM PST -,2023-02-03T07:19:28Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1415205172) at 2023-02-02 11:19 PM PST -,2023-02-03T07:19:34Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1415205366) at 2023-02-02 11:19 PM PST -,2023-02-03T07:19:45Z,- null commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1415205681) at 2023-02-02 11:19 PM PST -,2023-02-03T07:19:48Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1415205763) at 2023-02-02 11:19 PM PST -,2023-02-03T07:19:50Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1415205841) at 2023-02-02 11:19 PM PST -,2023-02-03T07:20:00Z,- null commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1415206106) at 2023-02-02 11:20 PM PST -,2023-02-03T07:20:10Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1415206413) at 2023-02-02 11:20 PM PST -,2023-02-03T07:20:17Z,- null commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1415206596) at 2023-02-02 11:20 PM PST -,2023-02-03T07:54:57Z,- null commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1415269323) at 2023-02-02 11:54 PM PST -,2023-02-03T19:13:20Z,- null commented on issue: [3872](https://github.com/hackforla/website/issues/3872#issuecomment-1416289543) at 2023-02-03 11:13 AM PST -,2023-02-04T18:02:58Z,- null commented on issue: [3853](https://github.com/hackforla/website/issues/3853#issuecomment-1416813878) at 2023-02-04 10:02 AM PST -,2023-02-04T23:05:46Z,- null commented on issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416871780) at 2023-02-04 03:05 PM PST -,2023-02-04T23:50:58Z,- null commented on issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416878528) at 2023-02-04 03:50 PM PST -,2023-02-05T02:52:48Z,- null commented on issue: [3903](https://github.com/hackforla/website/issues/3903#issuecomment-1416907902) at 2023-02-04 06:52 PM PST -,2023-02-05T03:11:27Z,- null commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416910718) at 2023-02-04 07:11 PM PST -,2023-02-05T19:12:28Z,- null commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418241762) at 2023-02-05 11:12 AM PST -,2023-02-05T21:36:31Z,- null commented on issue: [3854](https://github.com/hackforla/website/issues/3854#issuecomment-1418271294) at 2023-02-05 01:36 PM PST -,2023-02-06T18:34:59Z,- null commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419564563) at 2023-02-06 10:34 AM PST -,2023-02-06T19:18:40Z,- null commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1419617000) at 2023-02-06 11:18 AM PST -,2023-02-06T19:44:25Z,- null commented on issue: [3849](https://github.com/hackforla/website/issues/3849#issuecomment-1419650154) at 2023-02-06 11:44 AM PST -,2023-02-06T20:54:17Z,- null commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419735155) at 2023-02-06 12:54 PM PST -,2023-02-06T21:34:42Z,- null commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1419790060) at 2023-02-06 01:34 PM PST -,2023-02-06T23:16:30Z,- null commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1419923500) at 2023-02-06 03:16 PM PST -,2023-02-07T03:09:38Z,- null commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1420133131) at 2023-02-06 07:09 PM PST -,2023-02-07T03:30:16Z,- null commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1420147463) at 2023-02-06 07:30 PM PST -,2023-02-07T23:56:49Z,- null commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1421666080) at 2023-02-07 03:56 PM PST -,2023-02-09T00:08:05Z,- null commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423401778) at 2023-02-08 04:08 PM PST -,2023-02-09T00:30:20Z,- null commented on issue: [3949](https://github.com/hackforla/website/issues/3949#issuecomment-1423426247) at 2023-02-08 04:30 PM PST -,2023-02-10T01:58:01Z,- null commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1425070509) at 2023-02-09 05:58 PM PST -,2023-02-10T03:39:57Z,- null commented on issue: [3875](https://github.com/hackforla/website/issues/3875#issuecomment-1425130610) at 2023-02-09 07:39 PM PST -,2023-02-10T07:17:35Z,- null commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1425296114) at 2023-02-09 11:17 PM PST -,2023-02-10T07:17:39Z,- null commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1425296171) at 2023-02-09 11:17 PM PST -,2023-02-10T07:18:37Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1425297203) at 2023-02-09 11:18 PM PST -,2023-02-10T07:18:41Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1425297306) at 2023-02-09 11:18 PM PST -,2023-02-10T07:18:45Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1425297400) at 2023-02-09 11:18 PM PST -,2023-02-10T07:18:48Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1425297501) at 2023-02-09 11:18 PM PST -,2023-02-10T07:18:52Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1425297594) at 2023-02-09 11:18 PM PST -,2023-02-10T07:18:55Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1425297679) at 2023-02-09 11:18 PM PST -,2023-02-10T07:19:13Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1425298166) at 2023-02-09 11:19 PM PST -,2023-02-10T07:19:23Z,- null commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1425298436) at 2023-02-09 11:19 PM PST -,2023-02-10T07:19:31Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1425298650) at 2023-02-09 11:19 PM PST -,2023-02-10T07:19:34Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1425298725) at 2023-02-09 11:19 PM PST -,2023-02-10T07:19:38Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1425298804) at 2023-02-09 11:19 PM PST -,2023-02-10T07:19:52Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1425299157) at 2023-02-09 11:19 PM PST -,2023-02-10T07:19:57Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1425299295) at 2023-02-09 11:19 PM PST -,2023-02-10T07:20:01Z,- null commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1425299400) at 2023-02-09 11:20 PM PST -,2023-02-10T07:20:04Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1425299478) at 2023-02-09 11:20 PM PST -,2023-02-10T07:20:08Z,- null commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1425299615) at 2023-02-09 11:20 PM PST -,2023-02-10T07:20:20Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1425300114) at 2023-02-09 11:20 PM PST -,2023-02-10T07:20:26Z,- null commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1425300272) at 2023-02-09 11:20 PM PST -,2023-02-10T07:20:36Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1425300494) at 2023-02-09 11:20 PM PST -,2023-02-10T07:20:48Z,- null commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1425300800) at 2023-02-09 11:20 PM PST -,2023-02-10T07:20:57Z,- null commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1425301038) at 2023-02-09 11:20 PM PST -,2023-02-10T07:21:13Z,- null commented on issue: [3875](https://github.com/hackforla/website/issues/3875#issuecomment-1425301697) at 2023-02-09 11:21 PM PST -,2023-02-10T15:36:23Z,- null commented on issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1425981528) at 2023-02-10 07:36 AM PST -,2023-02-10T19:13:07Z,- null commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1426228747) at 2023-02-10 11:13 AM PST -,2023-02-10T20:28:27Z,- null commented on issue: [3851](https://github.com/hackforla/website/issues/3851#issuecomment-1426305828) at 2023-02-10 12:28 PM PST -,2023-02-11T00:12:40Z,- null commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1426516353) at 2023-02-10 04:12 PM PST -,2023-02-12T19:06:55Z,- null commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1427108828) at 2023-02-12 11:06 AM PST -,2023-02-13T00:51:03Z,- null commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1427186203) at 2023-02-12 04:51 PM PST -,2023-02-13T06:37:01Z,- null commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1427424609) at 2023-02-12 10:37 PM PST -,2023-02-13T17:45:28Z,- null commented on issue: [3944](https://github.com/hackforla/website/issues/3944#issuecomment-1428389486) at 2023-02-13 09:45 AM PST -,2023-02-13T20:35:12Z,- null commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1428644487) at 2023-02-13 12:35 PM PST -,2023-02-14T00:32:38Z,- null commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428918367) at 2023-02-13 04:32 PM PST -,2023-02-14T04:28:13Z,- null commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1429098318) at 2023-02-13 08:28 PM PST -,2023-02-14T04:40:34Z,- null commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429104819) at 2023-02-13 08:40 PM PST -,2023-02-14T05:37:13Z,- null commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429148887) at 2023-02-13 09:37 PM PST -,2023-02-14T17:44:07Z,- null commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1430136265) at 2023-02-14 09:44 AM PST -,2023-02-14T20:57:02Z,- null commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1430367042) at 2023-02-14 12:57 PM PST -,2023-02-14T21:42:31Z,- null commented on issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1430415133) at 2023-02-14 01:42 PM PST -,2023-02-14T22:25:44Z,- null commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1430461691) at 2023-02-14 02:25 PM PST -,2023-02-15T04:22:41Z,- null commented on issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1430738211) at 2023-02-14 08:22 PM PST -,2023-02-15T09:18:11Z,- null commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1430996363) at 2023-02-15 01:18 AM PST -,2023-02-15T18:54:46Z,- null commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1431855208) at 2023-02-15 10:54 AM PST -,2023-02-17T00:16:39Z,- null commented on issue: [3873](https://github.com/hackforla/website/issues/3873#issuecomment-1433916779) at 2023-02-16 04:16 PM PST -,2023-02-17T04:20:48Z,- null commented on issue: [3822](https://github.com/hackforla/website/issues/3822#issuecomment-1434084174) at 2023-02-16 08:20 PM PST -,2023-02-17T07:18:06Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1434210804) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:09Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1434210886) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:12Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1434210972) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:15Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1434211053) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:18Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1434211137) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:21Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1434211218) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:37Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1434211663) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:43Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1434211834) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:46Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1434211908) at 2023-02-16 11:18 PM PST -,2023-02-17T07:18:49Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1434211979) at 2023-02-16 11:18 PM PST -,2023-02-17T07:19:00Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1434212304) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:03Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1434212394) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:08Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1434212541) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:11Z,- null commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1434212625) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:14Z,- null commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1434212707) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:16Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1434212788) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:23Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1434212979) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:29Z,- null commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1434213130) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:36Z,- null commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1434213337) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:39Z,- null commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1434213433) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:45Z,- null commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1434213604) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:50Z,- null commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1434213746) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:54Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1434213877) at 2023-02-16 11:19 PM PST -,2023-02-17T07:19:57Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1434213950) at 2023-02-16 11:19 PM PST -,2023-02-17T07:20:01Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1434214080) at 2023-02-16 11:20 PM PST -,2023-02-17T18:35:13Z,- null commented on issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1435079987) at 2023-02-17 10:35 AM PST -,2023-02-18T01:16:48Z,- null commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1435438034) at 2023-02-17 05:16 PM PST -,2023-02-19T18:42:09Z,- null commented on issue: [3361](https://github.com/hackforla/website/issues/3361#issuecomment-1436062447) at 2023-02-19 10:42 AM PST -,2023-02-19T22:04:44Z,- null commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1436109189) at 2023-02-19 02:04 PM PST -,2023-02-20T19:06:24Z,- null commented on issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1437440153) at 2023-02-20 11:06 AM PST -,2023-02-21T00:38:39Z,- null commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1437703487) at 2023-02-20 04:38 PM PST -,2023-02-21T01:02:21Z,- null commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1437719489) at 2023-02-20 05:02 PM PST -,2023-02-21T02:17:55Z,- null commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1437769078) at 2023-02-20 06:17 PM PST -,2023-02-21T02:23:20Z,- null commented on issue: [3976](https://github.com/hackforla/website/issues/3976#issuecomment-1437772051) at 2023-02-20 06:23 PM PST -,2023-02-21T05:47:39Z,- null commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1437893837) at 2023-02-20 09:47 PM PST -,2023-02-21T17:38:48Z,- null commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1438865279) at 2023-02-21 09:38 AM PST -,2023-02-21T23:32:08Z,- null commented on issue: [3986](https://github.com/hackforla/website/issues/3986#issuecomment-1439226935) at 2023-02-21 03:32 PM PST -,2023-02-22T01:56:44Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1439328159) at 2023-02-21 05:56 PM PST -,2023-02-22T05:21:31Z,- null commented on issue: [4006](https://github.com/hackforla/website/issues/4006#issuecomment-1439454757) at 2023-02-21 09:21 PM PST -,2023-02-22T23:51:57Z,- null commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1441016075) at 2023-02-22 03:51 PM PST -,2023-02-23T06:02:45Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1441252435) at 2023-02-22 10:02 PM PST -,2023-02-23T17:46:38Z,- null commented on issue: [4009](https://github.com/hackforla/website/issues/4009#issuecomment-1442186785) at 2023-02-23 09:46 AM PST -,2023-02-23T19:32:56Z,- null commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1442319971) at 2023-02-23 11:32 AM PST -,2023-02-24T06:32:36Z,- null commented on issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1442868940) at 2023-02-23 10:32 PM PST -,2023-02-24T07:17:31Z,- null commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1442907892) at 2023-02-23 11:17 PM PST -,2023-02-24T07:17:35Z,- null commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1442907944) at 2023-02-23 11:17 PM PST -,2023-02-24T07:18:19Z,- null commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1442908555) at 2023-02-23 11:18 PM PST -,2023-02-24T07:18:23Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1442908623) at 2023-02-23 11:18 PM PST -,2023-02-24T07:18:26Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1442908679) at 2023-02-23 11:18 PM PST -,2023-02-24T07:18:31Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1442908773) at 2023-02-23 11:18 PM PST -,2023-02-24T07:18:34Z,- null commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1442908815) at 2023-02-23 11:18 PM PST -,2023-02-24T07:18:37Z,- null commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1442908856) at 2023-02-23 11:18 PM PST -,2023-02-24T07:18:52Z,- null commented on issue: [3409](https://github.com/hackforla/website/issues/3409#issuecomment-1442909082) at 2023-02-23 11:18 PM PST -,2023-02-24T07:18:59Z,- null commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1442909185) at 2023-02-23 11:18 PM PST -,2023-02-24T07:19:02Z,- null commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1442909267) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:05Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1442909370) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:18Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1442909560) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:21Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1442909614) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:25Z,- null commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1442909667) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:27Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1442909704) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:34Z,- null commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1442909784) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:37Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1442909828) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:40Z,- null commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1442909886) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:44Z,- null commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1442909944) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:48Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1442910007) at 2023-02-23 11:19 PM PST -,2023-02-24T07:19:57Z,- null commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1442910120) at 2023-02-23 11:19 PM PST -,2023-02-24T07:20:00Z,- null commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1442910161) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:12Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1442910378) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:15Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1442910414) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:18Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1442910452) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:21Z,- null commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1442910488) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:27Z,- null commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1442910573) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:30Z,- null commented on issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1442910615) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:40Z,- null commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1442910740) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:42Z,- null commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1442910775) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:46Z,- null commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1442910816) at 2023-02-23 11:20 PM PST -,2023-02-24T07:20:52Z,- null commented on issue: [4006](https://github.com/hackforla/website/issues/4006#issuecomment-1442910895) at 2023-02-23 11:20 PM PST -,2023-02-25T04:35:19Z,- null commented on issue: [3952](https://github.com/hackforla/website/issues/3952#issuecomment-1444989162) at 2023-02-24 08:35 PM PST -,2023-02-25T17:04:32Z,- null commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1445160089) at 2023-02-25 09:04 AM PST -,2023-02-26T03:46:26Z,- null commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445261119) at 2023-02-25 07:46 PM PST -,2023-02-26T11:40:19Z,- null commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1445338803) at 2023-02-26 03:40 AM PST -,2023-02-26T17:37:38Z,- null commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1445416713) at 2023-02-26 09:37 AM PST -,2023-02-26T19:09:05Z,- null commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1445439646) at 2023-02-26 11:09 AM PST -,2023-02-26T20:48:18Z,- null commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1445463373) at 2023-02-26 12:48 PM PST -,2023-02-27T05:58:34Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1445751628) at 2023-02-26 09:58 PM PST -,2023-02-28T07:44:49Z,- null commented on issue: [4043](https://github.com/hackforla/website/issues/4043#issuecomment-1447718867) at 2023-02-27 11:44 PM PST -,2023-02-28T18:08:49Z,- null commented on issue: [4055](https://github.com/hackforla/website/issues/4055#issuecomment-1448641824) at 2023-02-28 10:08 AM PST -,2023-02-28T19:26:15Z,- null commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1448738419) at 2023-02-28 11:26 AM PST -,2023-02-28T22:51:51Z,- null commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1449048328) at 2023-02-28 02:51 PM PST -,2023-02-28T23:28:06Z,- null commented on issue: [4041](https://github.com/hackforla/website/issues/4041#issuecomment-1449082678) at 2023-02-28 03:28 PM PST -,2023-03-01T00:25:41Z,- null commented on issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1449128691) at 2023-02-28 04:25 PM PST -,2023-03-01T02:46:57Z,- null commented on issue: [4007](https://github.com/hackforla/website/issues/4007#issuecomment-1449249575) at 2023-02-28 06:46 PM PST -,2023-03-01T03:50:32Z,- null commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1449290218) at 2023-02-28 07:50 PM PST -,2023-03-01T04:09:00Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1449306877) at 2023-02-28 08:09 PM PST -,2023-03-01T04:09:46Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1449308115) at 2023-02-28 08:09 PM PST -,2023-03-01T04:12:03Z,- null commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1449311086) at 2023-02-28 08:12 PM PST -,2023-03-01T04:16:25Z,- null commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1449313901) at 2023-02-28 08:16 PM PST -,2023-03-01T19:02:19Z,- null commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1450702814) at 2023-03-01 11:02 AM PST -,2023-03-01T19:09:07Z,- null commented on issue: [4042](https://github.com/hackforla/website/issues/4042#issuecomment-1450711502) at 2023-03-01 11:09 AM PST -,2023-03-01T19:14:46Z,- null commented on issue: [3999](https://github.com/hackforla/website/issues/3999#issuecomment-1450718315) at 2023-03-01 11:14 AM PST -,2023-03-01T21:44:19Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1450888464) at 2023-03-01 01:44 PM PST -,2023-03-01T21:44:34Z,- null commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1450888746) at 2023-03-01 01:44 PM PST -,2023-03-01T22:49:47Z,- null commented on issue: [4042](https://github.com/hackforla/website/issues/4042#issuecomment-1450971424) at 2023-03-01 02:49 PM PST -,2023-03-01T22:56:44Z,- null commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1450977172) at 2023-03-01 02:56 PM PST -,2023-03-02T08:23:57Z,- null commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1451475201) at 2023-03-02 12:23 AM PST -,2023-03-02T18:27:50Z,- null commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1452343280) at 2023-03-02 10:27 AM PST -,2023-03-03T01:39:42Z,- null commented on issue: [4081](https://github.com/hackforla/website/issues/4081#issuecomment-1452811606) at 2023-03-02 05:39 PM PST -,2023-03-03T03:59:06Z,- null commented on issue: [4045](https://github.com/hackforla/website/issues/4045#issuecomment-1452927399) at 2023-03-02 07:59 PM PST -,2023-03-03T07:18:21Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1453086144) at 2023-03-02 11:18 PM PST -,2023-03-03T07:18:24Z,- null commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1453086207) at 2023-03-02 11:18 PM PST -,2023-03-03T07:18:29Z,- null commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1453086276) at 2023-03-02 11:18 PM PST -,2023-03-03T07:18:32Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1453086323) at 2023-03-02 11:18 PM PST -,2023-03-03T07:18:49Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1453086578) at 2023-03-02 11:18 PM PST -,2023-03-03T07:19:04Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1453086766) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:07Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1453086822) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:11Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1453086877) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:16Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1453086959) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:26Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1453087108) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:34Z,- null commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1453087219) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:40Z,- null commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1453087302) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:49Z,- null commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1453087395) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:53Z,- null commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1453087443) at 2023-03-02 11:19 PM PST -,2023-03-03T07:19:59Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1453087531) at 2023-03-02 11:19 PM PST -,2023-03-03T07:20:02Z,- null commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1453087571) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:06Z,- null commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1453087692) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:13Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1453087815) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:28Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1453088009) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:31Z,- null commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1453088050) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:34Z,- null commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1453088089) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:37Z,- null commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1453088143) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:40Z,- null commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1453088186) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:43Z,- null commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1453088230) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:46Z,- null commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1453088279) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:50Z,- null commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1453088329) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:56Z,- null commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1453088418) at 2023-03-02 11:20 PM PST -,2023-03-03T07:20:59Z,- null commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1453088459) at 2023-03-02 11:20 PM PST -,2023-03-03T07:21:02Z,- null commented on issue: [3915](https://github.com/hackforla/website/issues/3915#issuecomment-1453088508) at 2023-03-02 11:21 PM PST -,2023-03-03T07:21:06Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1453088562) at 2023-03-02 11:21 PM PST -,2023-03-03T07:21:12Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1453088644) at 2023-03-02 11:21 PM PST -,2023-03-03T07:21:15Z,- null commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1453088682) at 2023-03-02 11:21 PM PST -,2023-03-03T07:21:20Z,- null commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1453088745) at 2023-03-02 11:21 PM PST -,2023-03-03T07:21:24Z,- null commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1453088786) at 2023-03-02 11:21 PM PST -,2023-03-03T07:21:28Z,- null commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1453088853) at 2023-03-02 11:21 PM PST -,2023-03-03T07:22:22Z,- null commented on issue: [3999](https://github.com/hackforla/website/issues/3999#issuecomment-1453089761) at 2023-03-02 11:22 PM PST -,2023-03-03T07:22:26Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1453089805) at 2023-03-02 11:22 PM PST -,2023-03-03T07:22:29Z,- null commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1453089854) at 2023-03-02 11:22 PM PST -,2023-03-03T22:13:56Z,- null commented on issue: [4036](https://github.com/hackforla/website/issues/4036#issuecomment-1454194940) at 2023-03-03 02:13 PM PST -,2023-03-04T00:48:54Z,- null commented on issue: [4026](https://github.com/hackforla/website/issues/4026#issuecomment-1454306318) at 2023-03-03 04:48 PM PST -,2023-03-04T04:17:37Z,- null commented on issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1454382992) at 2023-03-03 08:17 PM PST -,2023-03-04T04:59:57Z,- null commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1454438506) at 2023-03-03 08:59 PM PST -,2023-03-04T19:26:51Z,- null commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1454849476) at 2023-03-04 11:26 AM PST -,2023-03-05T15:13:46Z,- null commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1455119099) at 2023-03-05 07:13 AM PST -,2023-03-05T15:50:52Z,- null commented on issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1455128838) at 2023-03-05 07:50 AM PST -,2023-03-06T06:21:48Z,- null commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1455525329) at 2023-03-05 10:21 PM PST -,2023-03-06T19:41:40Z,- null commented on issue: [4084](https://github.com/hackforla/website/issues/4084#issuecomment-1456848022) at 2023-03-06 11:41 AM PST -,2023-03-06T22:56:55Z,- null commented on issue: [4082](https://github.com/hackforla/website/issues/4082#issuecomment-1457174147) at 2023-03-06 02:56 PM PST -,2023-03-07T03:54:00Z,- null commented on issue: [4046](https://github.com/hackforla/website/issues/4046#issuecomment-1457480026) at 2023-03-06 07:54 PM PST -,2023-03-07T22:02:42Z,- null commented on issue: [4047](https://github.com/hackforla/website/issues/4047#issuecomment-1458934566) at 2023-03-07 02:02 PM PST -,2023-03-07T23:33:27Z,- null commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1459027963) at 2023-03-07 03:33 PM PST -,2023-03-08T00:50:57Z,- null commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1459096431) at 2023-03-07 04:50 PM PST -,2023-03-08T00:51:03Z,- null commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1459096509) at 2023-03-07 04:51 PM PST -,2023-03-09T00:23:47Z,- null commented on issue: [4026](https://github.com/hackforla/website/issues/4026#issuecomment-1461075127) at 2023-03-08 04:23 PM PST -,2023-03-09T06:24:24Z,- null commented on issue: [4023](https://github.com/hackforla/website/issues/4023#issuecomment-1461363452) at 2023-03-08 10:24 PM PST -,2023-03-09T17:54:10Z,- null commented on issue: [4015](https://github.com/hackforla/website/issues/4015#issuecomment-1462505545) at 2023-03-09 09:54 AM PST -,2023-03-09T21:09:04Z,- null commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1462827200) at 2023-03-09 01:09 PM PST -,2023-03-10T00:02:42Z,- null commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1463013473) at 2023-03-09 04:02 PM PST -,2023-03-10T04:04:48Z,- null commented on issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1463222716) at 2023-03-09 08:04 PM PST -,2023-03-10T07:18:20Z,- null commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1463377670) at 2023-03-09 11:18 PM PST -,2023-03-10T07:18:27Z,- null commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1463377788) at 2023-03-09 11:18 PM PST -,2023-03-10T07:18:31Z,- null commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1463377838) at 2023-03-09 11:18 PM PST -,2023-03-10T07:18:38Z,- null commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1463377931) at 2023-03-09 11:18 PM PST -,2023-03-10T07:18:53Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1463378139) at 2023-03-09 11:18 PM PST -,2023-03-10T07:18:56Z,- null commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1463378185) at 2023-03-09 11:18 PM PST -,2023-03-10T07:19:00Z,- null commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1463378240) at 2023-03-09 11:19 PM PST -,2023-03-10T07:19:04Z,- null commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1463378290) at 2023-03-09 11:19 PM PST -,2023-03-10T07:19:10Z,- null commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1463378383) at 2023-03-09 11:19 PM PST -,2023-03-10T07:19:14Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1463378446) at 2023-03-09 11:19 PM PST -,2023-03-10T07:19:32Z,- null commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1463378718) at 2023-03-09 11:19 PM PST -,2023-03-10T07:19:41Z,- null commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1463378845) at 2023-03-09 11:19 PM PST -,2023-03-10T07:19:44Z,- null commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1463378876) at 2023-03-09 11:19 PM PST -,2023-03-10T07:19:51Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1463378969) at 2023-03-09 11:19 PM PST -,2023-03-10T07:20:01Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1463379123) at 2023-03-09 11:20 PM PST -,2023-03-10T07:20:06Z,- null commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1463379192) at 2023-03-09 11:20 PM PST -,2023-03-10T07:20:24Z,- null commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1463379446) at 2023-03-09 11:20 PM PST -,2023-03-10T07:20:28Z,- null commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1463379497) at 2023-03-09 11:20 PM PST -,2023-03-10T07:20:41Z,- null commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1463379681) at 2023-03-09 11:20 PM PST -,2023-03-10T07:20:49Z,- null commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1463379793) at 2023-03-09 11:20 PM PST -,2023-03-10T07:20:52Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1463379841) at 2023-03-09 11:20 PM PST -,2023-03-10T07:20:58Z,- null commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1463379917) at 2023-03-09 11:20 PM PST -,2023-03-10T07:21:02Z,- null commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1463379969) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:08Z,- null commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1463380053) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:11Z,- null commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1463380111) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:15Z,- null commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1463380163) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:38Z,- null commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1463380499) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:42Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1463380559) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:46Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1463380604) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:50Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1463380680) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:54Z,- null commented on issue: [4064](https://github.com/hackforla/website/issues/4064#issuecomment-1463380728) at 2023-03-09 11:21 PM PST -,2023-03-10T07:21:59Z,- null commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1463380808) at 2023-03-09 11:21 PM PST -,2023-03-10T07:22:08Z,- null commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1463380924) at 2023-03-09 11:22 PM PST -,2023-03-10T07:22:12Z,- null commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1463380983) at 2023-03-09 11:22 PM PST -,2023-03-10T07:22:16Z,- null commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1463381039) at 2023-03-09 11:22 PM PST -,2023-03-10T07:22:22Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1463381141) at 2023-03-09 11:22 PM PST -,2023-03-10T07:22:25Z,- null commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1463381209) at 2023-03-09 11:22 PM PST -,2023-03-10T07:22:50Z,- null commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1463381616) at 2023-03-09 11:22 PM PST -,2023-03-10T20:09:51Z,- null commented on issue: [4132](https://github.com/hackforla/website/issues/4132#issuecomment-1464359203) at 2023-03-10 12:09 PM PST -,2023-03-12T17:39:10Z,- null commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1465256240) at 2023-03-12 10:39 AM PDT -,2023-03-12T18:20:00Z,- null commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1465265783) at 2023-03-12 11:20 AM PDT -,2023-03-12T19:56:46Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465285478) at 2023-03-12 12:56 PM PDT -,2023-03-12T19:57:01Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465285537) at 2023-03-12 12:57 PM PDT -,2023-03-12T20:17:05Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1465290090) at 2023-03-12 01:17 PM PDT -,2023-03-12T23:12:02Z,- null commented on issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1465325788) at 2023-03-12 04:12 PM PDT -,2023-03-12T23:15:04Z,- null commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1465326433) at 2023-03-12 04:15 PM PDT -,2023-03-13T21:16:02Z,- null commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1466973184) at 2023-03-13 02:16 PM PDT -,2023-03-13T22:50:08Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1467082124) at 2023-03-13 03:50 PM PDT -,2023-03-14T03:00:47Z,- null commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1467278196) at 2023-03-13 08:00 PM PDT -,2023-03-14T03:05:05Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1467281723) at 2023-03-13 08:05 PM PDT -,2023-03-14T03:05:24Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1467281966) at 2023-03-13 08:05 PM PDT -,2023-03-14T03:06:53Z,- null commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1467283410) at 2023-03-13 08:06 PM PDT -,2023-03-14T03:23:27Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1467293481) at 2023-03-13 08:23 PM PDT -,2023-03-14T03:25:22Z,- null commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1467294616) at 2023-03-13 08:25 PM PDT -,2023-03-14T03:37:44Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1467301962) at 2023-03-13 08:37 PM PDT -,2023-03-14T03:37:44Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1467301965) at 2023-03-13 08:37 PM PDT -,2023-03-14T03:38:13Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1467302208) at 2023-03-13 08:38 PM PDT -,2023-03-14T03:38:59Z,- null commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1467302572) at 2023-03-13 08:38 PM PDT -,2023-03-14T04:35:37Z,- null commented on issue: [4014](https://github.com/hackforla/website/issues/4014#issuecomment-1467342120) at 2023-03-13 09:35 PM PDT -,2023-03-14T13:21:40Z,- null commented on issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1468094388) at 2023-03-14 06:21 AM PDT -,2023-03-14T14:58:02Z,- null commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1468259927) at 2023-03-14 07:58 AM PDT -,2023-03-14T15:50:38Z,- null commented on issue: [4111](https://github.com/hackforla/website/issues/4111#issuecomment-1468362597) at 2023-03-14 08:50 AM PDT -,2023-03-14T17:02:07Z,- null commented on issue: [4000](https://github.com/hackforla/website/issues/4000#issuecomment-1468485544) at 2023-03-14 10:02 AM PDT -,2023-03-14T19:50:51Z,- null commented on issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1468730346) at 2023-03-14 12:50 PM PDT -,2023-03-14T21:16:38Z,- null commented on issue: [4083](https://github.com/hackforla/website/issues/4083#issuecomment-1468856904) at 2023-03-14 02:16 PM PDT -,2023-03-14T22:28:09Z,- null commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1468924989) at 2023-03-14 03:28 PM PDT -,2023-03-14T23:17:57Z,- null commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1468994571) at 2023-03-14 04:17 PM PDT -,2023-03-15T01:12:07Z,- null commented on issue: [3997](https://github.com/hackforla/website/issues/3997#issuecomment-1469092433) at 2023-03-14 06:12 PM PDT -,2023-03-15T01:24:42Z,- null commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1469121836) at 2023-03-14 06:24 PM PDT -,2023-03-15T01:26:40Z,- null commented on issue: [3987](https://github.com/hackforla/website/issues/3987#issuecomment-1469125166) at 2023-03-14 06:26 PM PDT -,2023-03-15T02:01:49Z,- null commented on issue: [3115](https://github.com/hackforla/website/issues/3115#issuecomment-1469180943) at 2023-03-14 07:01 PM PDT -,2023-03-15T02:16:06Z,- null commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1469193842) at 2023-03-14 07:16 PM PDT -,2023-03-15T02:27:33Z,- null commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1469202595) at 2023-03-14 07:27 PM PDT -,2023-03-15T02:42:01Z,- null commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1469216941) at 2023-03-14 07:42 PM PDT -,2023-03-15T02:56:12Z,- null commented on issue: [4190](https://github.com/hackforla/website/issues/4190#issuecomment-1469233340) at 2023-03-14 07:56 PM PDT -,2023-03-15T03:01:17Z,- null commented on issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1469237728) at 2023-03-14 08:01 PM PDT -,2023-03-15T03:02:30Z,- null commented on issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1469238711) at 2023-03-14 08:02 PM PDT -,2023-03-15T05:52:28Z,- null commented on issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1469382571) at 2023-03-14 10:52 PM PDT -,2023-03-15T20:27:35Z,- null commented on issue: [3953](https://github.com/hackforla/website/issues/3953#issuecomment-1470794178) at 2023-03-15 01:27 PM PDT -,2023-03-15T22:41:40Z,- null commented on issue: [4193](https://github.com/hackforla/website/issues/4193#issuecomment-1470938931) at 2023-03-15 03:41 PM PDT -,2023-03-16T02:33:04Z,- null commented on issue: [3933](https://github.com/hackforla/website/issues/3933#issuecomment-1471191331) at 2023-03-15 07:33 PM PDT -,2023-03-16T19:08:23Z,- null commented on issue: [4112](https://github.com/hackforla/website/issues/4112#issuecomment-1472598166) at 2023-03-16 12:08 PM PDT -,2023-03-16T20:02:12Z,- null commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1472661776) at 2023-03-16 01:02 PM PDT -,2023-03-17T00:29:59Z,- null commented on issue: [3860](https://github.com/hackforla/website/issues/3860#issuecomment-1472937487) at 2023-03-16 05:29 PM PDT -,2023-03-17T03:04:40Z,- null commented on issue: [3948](https://github.com/hackforla/website/issues/3948#issuecomment-1473049374) at 2023-03-16 08:04 PM PDT -,2023-03-17T03:45:46Z,- null commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1473081065) at 2023-03-16 08:45 PM PDT -,2023-03-17T03:57:45Z,- null commented on issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1473089388) at 2023-03-16 08:57 PM PDT -,2023-03-17T04:06:58Z,- null commented on issue: [3904](https://github.com/hackforla/website/issues/3904#issuecomment-1473098490) at 2023-03-16 09:06 PM PDT -,2023-03-17T07:17:19Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1473283524) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:17:26Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1473283614) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:17:30Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1473283662) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:17:40Z,- null commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1473283785) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:17:43Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1473283836) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:17:47Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1473283864) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:17:50Z,- null commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1473283901) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:17:54Z,- null commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1473283951) at 2023-03-17 12:17 AM PDT -,2023-03-17T07:18:01Z,- null commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1473284036) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:05Z,- null commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1473284089) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:16Z,- null commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1473284233) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:20Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1473284282) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:24Z,- null commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1473284328) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:28Z,- null commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1473284381) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:32Z,- null commented on issue: [3970](https://github.com/hackforla/website/issues/3970#issuecomment-1473284430) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:35Z,- null commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1473284484) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:39Z,- null commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1473284548) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:42Z,- null commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1473284585) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:45Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1473284632) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:18:57Z,- null commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1473284770) at 2023-03-17 12:18 AM PDT -,2023-03-17T07:19:01Z,- null commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1473284871) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:04Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1473284953) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:09Z,- null commented on issue: [4064](https://github.com/hackforla/website/issues/4064#issuecomment-1473285036) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:12Z,- null commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1473285087) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:17Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1473285162) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:20Z,- null commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1473285211) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:29Z,- null commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1473285339) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:40Z,- null commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1473285460) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:43Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1473285502) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:48Z,- null commented on issue: [4160](https://github.com/hackforla/website/issues/4160#issuecomment-1473285564) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:51Z,- null commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1473285601) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:53Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1473285634) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:56Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1473285667) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:19:59Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1473285699) at 2023-03-17 12:19 AM PDT -,2023-03-17T07:20:01Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1473285734) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:06Z,- null commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1473285804) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:09Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1473285825) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:11Z,- null commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1473285865) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:14Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1473285906) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:17Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1473285938) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:25Z,- null commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1473286058) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:30Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1473286103) at 2023-03-17 12:20 AM PDT -,2023-03-17T07:20:47Z,- null commented on issue: [3904](https://github.com/hackforla/website/issues/3904#issuecomment-1473286320) at 2023-03-17 12:20 AM PDT -,2023-03-17T17:22:34Z,- null commented on issue: [4145](https://github.com/hackforla/website/issues/4145#issuecomment-1474166124) at 2023-03-17 10:22 AM PDT -,2023-03-18T08:23:36Z,- null commented on issue: [3951](https://github.com/hackforla/website/issues/3951#issuecomment-1474770682) at 2023-03-18 01:23 AM PDT -,2023-03-18T20:57:14Z,- null commented on issue: [3966](https://github.com/hackforla/website/issues/3966#issuecomment-1474991823) at 2023-03-18 01:57 PM PDT -,2023-03-18T21:30:28Z,- null commented on issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1474999465) at 2023-03-18 02:30 PM PDT -,2023-03-18T23:38:56Z,- null commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1475032400) at 2023-03-18 04:38 PM PDT -,2023-03-19T16:58:19Z,- null commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1475321142) at 2023-03-19 09:58 AM PDT -,2023-03-19T18:15:32Z,- null commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1475351742) at 2023-03-19 11:15 AM PDT -,2023-03-19T18:16:02Z,- null commented on issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1475351833) at 2023-03-19 11:16 AM PDT -,2023-03-19T18:16:50Z,- null commented on issue: [3250](https://github.com/hackforla/website/issues/3250#issuecomment-1475352004) at 2023-03-19 11:16 AM PDT -,2023-03-19T18:31:31Z,- null commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1475355262) at 2023-03-19 11:31 AM PDT -,2023-03-19T18:58:43Z,- null commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1475362180) at 2023-03-19 11:58 AM PDT -,2023-03-19T19:04:54Z,- null commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475363781) at 2023-03-19 12:04 PM PDT -,2023-03-19T19:39:26Z,- null commented on issue: [3876](https://github.com/hackforla/website/issues/3876#issuecomment-1475376775) at 2023-03-19 12:39 PM PDT -,2023-03-19T21:24:23Z,- null commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1475403855) at 2023-03-19 02:24 PM PDT -,2023-03-19T23:21:17Z,- null commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1475432013) at 2023-03-19 04:21 PM PDT -,2023-03-20T02:59:48Z,- null commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1475537987) at 2023-03-19 07:59 PM PDT -,2023-03-20T03:10:58Z,- null commented on issue: [3874](https://github.com/hackforla/website/issues/3874#issuecomment-1475548830) at 2023-03-19 08:10 PM PDT -,2023-03-20T16:09:06Z,- null commented on issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1476525042) at 2023-03-20 09:09 AM PDT -,2023-03-20T17:47:24Z,- null commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1476678238) at 2023-03-20 10:47 AM PDT -,2023-03-21T01:53:07Z,- null commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1477173415) at 2023-03-20 06:53 PM PDT -,2023-03-21T04:35:11Z,- null commented on issue: [4220](https://github.com/hackforla/website/issues/4220#issuecomment-1477269071) at 2023-03-20 09:35 PM PDT -,2023-03-21T20:03:18Z,- null commented on issue: [4183](https://github.com/hackforla/website/issues/4183#issuecomment-1478509270) at 2023-03-21 01:03 PM PDT -,2023-03-21T21:15:35Z,- null commented on issue: [3878](https://github.com/hackforla/website/issues/3878#issuecomment-1478590123) at 2023-03-21 02:15 PM PDT -,2023-03-21T23:23:14Z,- null commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1478720658) at 2023-03-21 04:23 PM PDT -,2023-03-22T00:31:47Z,- null commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1478762715) at 2023-03-21 05:31 PM PDT -,2023-03-22T00:32:14Z,- null commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1478762978) at 2023-03-21 05:32 PM PDT -,2023-03-22T01:04:55Z,- null commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1478781633) at 2023-03-21 06:04 PM PDT -,2023-03-22T02:36:07Z,- null commented on issue: [4231](https://github.com/hackforla/website/issues/4231#issuecomment-1478840334) at 2023-03-21 07:36 PM PDT -,2023-03-22T03:07:14Z,- null commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1478859261) at 2023-03-21 08:07 PM PDT -,2023-03-22T03:16:02Z,- null commented on issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1478864247) at 2023-03-21 08:16 PM PDT -,2023-03-22T23:58:07Z,- null commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480401954) at 2023-03-22 04:58 PM PDT -,2023-03-23T01:01:06Z,- null commented on issue: [4253](https://github.com/hackforla/website/issues/4253#issuecomment-1480439927) at 2023-03-22 06:01 PM PDT -,2023-03-23T20:47:57Z,- null commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1481876417) at 2023-03-23 01:47 PM PDT -,2023-03-23T20:50:01Z,- null commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1481878587) at 2023-03-23 01:50 PM PDT -,2023-03-23T21:26:25Z,- null commented on issue: [4235](https://github.com/hackforla/website/issues/4235#issuecomment-1481935534) at 2023-03-23 02:26 PM PDT -,2023-03-24T00:35:47Z,- null commented on issue: [4238](https://github.com/hackforla/website/issues/4238#issuecomment-1482091927) at 2023-03-23 05:35 PM PDT -,2023-03-24T03:58:40Z,- null commented on issue: [4268](https://github.com/hackforla/website/issues/4268#issuecomment-1482214283) at 2023-03-23 08:58 PM PDT -,2023-03-24T04:01:19Z,- null commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1482216135) at 2023-03-23 09:01 PM PDT -,2023-03-24T04:10:43Z,- null commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482222770) at 2023-03-23 09:10 PM PDT -,2023-03-24T06:26:36Z,- null commented on issue: [4236](https://github.com/hackforla/website/issues/4236#issuecomment-1482315025) at 2023-03-23 11:26 PM PDT -,2023-03-24T07:16:19Z,- null commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1482359724) at 2023-03-24 12:16 AM PDT -,2023-03-24T07:16:44Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1482360024) at 2023-03-24 12:16 AM PDT -,2023-03-24T07:16:49Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1482360105) at 2023-03-24 12:16 AM PDT -,2023-03-24T07:16:53Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1482360149) at 2023-03-24 12:16 AM PDT -,2023-03-24T07:16:57Z,- null commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1482360210) at 2023-03-24 12:16 AM PDT -,2023-03-24T07:17:01Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1482360260) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:05Z,- null commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1482360319) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:08Z,- null commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1482360346) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:12Z,- null commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1482360378) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:15Z,- null commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1482360417) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:19Z,- null commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1482360468) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:23Z,- null commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1482360527) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:27Z,- null commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1482360562) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:30Z,- null commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1482360603) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:34Z,- null commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1482360646) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:40Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1482360714) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:43Z,- null commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1482360748) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:46Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1482360779) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:49Z,- null commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1482360818) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:55Z,- null commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1482360890) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:17:58Z,- null commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1482360927) at 2023-03-24 12:17 AM PDT -,2023-03-24T07:18:02Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1482360957) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:07Z,- null commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1482361018) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:10Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1482361058) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:15Z,- null commented on issue: [4064](https://github.com/hackforla/website/issues/4064#issuecomment-1482361162) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:18Z,- null commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1482361259) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:22Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1482361362) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:25Z,- null commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1482361413) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:31Z,- null commented on issue: [4071](https://github.com/hackforla/website/issues/4071#issuecomment-1482361514) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:35Z,- null commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1482361562) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:44Z,- null commented on issue: [4090](https://github.com/hackforla/website/issues/4090#issuecomment-1482361682) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:49Z,- null commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1482361734) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:53Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1482361772) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:18:58Z,- null commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1482361844) at 2023-03-24 12:18 AM PDT -,2023-03-24T07:19:01Z,- null commented on issue: [4160](https://github.com/hackforla/website/issues/4160#issuecomment-1482361880) at 2023-03-24 12:19 AM PDT -,2023-03-24T07:19:07Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1482361948) at 2023-03-24 12:19 AM PDT -,2023-03-24T07:19:11Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1482362003) at 2023-03-24 12:19 AM PDT -,2023-03-24T07:19:17Z,- null commented on issue: [4166](https://github.com/hackforla/website/issues/4166#issuecomment-1482362080) at 2023-03-24 12:19 AM PDT -,2023-03-24T07:19:22Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1482362152) at 2023-03-24 12:19 AM PDT -,2023-03-24T07:19:40Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1482362337) at 2023-03-24 12:19 AM PDT -,2023-03-24T07:19:58Z,- null commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1482362554) at 2023-03-24 12:19 AM PDT -,2023-03-24T07:20:02Z,- null commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1482362598) at 2023-03-24 12:20 AM PDT -,2023-03-24T07:20:06Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1482362646) at 2023-03-24 12:20 AM PDT -,2023-03-24T07:20:12Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1482362724) at 2023-03-24 12:20 AM PDT -,2023-03-24T07:20:15Z,- null commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1482362768) at 2023-03-24 12:20 AM PDT -,2023-03-24T07:20:20Z,- null commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1482362826) at 2023-03-24 12:20 AM PDT -,2023-03-24T07:20:25Z,- null commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1482362877) at 2023-03-24 12:20 AM PDT -,2023-03-24T07:20:28Z,- null commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1482362925) at 2023-03-24 12:20 AM PDT -,2023-03-24T07:20:41Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1482363078) at 2023-03-24 12:20 AM PDT -,2023-03-24T12:03:05Z,- null commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1482692859) at 2023-03-24 05:03 AM PDT -,2023-03-24T12:03:31Z,- null commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1482693371) at 2023-03-24 05:03 AM PDT -,2023-03-25T12:13:25Z,- null commented on issue: [4287](https://github.com/hackforla/website/issues/4287#issuecomment-1483808942) at 2023-03-25 05:13 AM PDT -,2023-03-26T03:02:03Z,- null commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1483980318) at 2023-03-25 08:02 PM PDT -,2023-03-26T09:32:59Z,- null commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1484043842) at 2023-03-26 02:32 AM PDT -,2023-03-26T18:18:45Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1484177972) at 2023-03-26 11:18 AM PDT -,2023-03-26T20:54:10Z,- null commented on issue: [4286](https://github.com/hackforla/website/issues/4286#issuecomment-1484220714) at 2023-03-26 01:54 PM PDT -,2023-03-27T16:11:43Z,- null commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1485423423) at 2023-03-27 09:11 AM PDT -,2023-03-27T17:16:40Z,- null commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1485534513) at 2023-03-27 10:16 AM PDT -,2023-03-27T18:09:27Z,- null commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1485614197) at 2023-03-27 11:09 AM PDT -,2023-03-27T19:18:34Z,- null commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1485734533) at 2023-03-27 12:18 PM PDT -,2023-03-27T19:37:10Z,- null commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1485755899) at 2023-03-27 12:37 PM PDT -,2023-03-27T19:42:18Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1485761823) at 2023-03-27 12:42 PM PDT -,2023-03-27T23:22:50Z,- null commented on issue: [4284](https://github.com/hackforla/website/issues/4284#issuecomment-1485990129) at 2023-03-27 04:22 PM PDT -,2023-03-27T23:43:57Z,- null commented on issue: [3868](https://github.com/hackforla/website/issues/3868#issuecomment-1486004192) at 2023-03-27 04:43 PM PDT -,2023-03-28T00:27:27Z,- null commented on issue: [4269](https://github.com/hackforla/website/issues/4269#issuecomment-1486039075) at 2023-03-27 05:27 PM PDT -,2023-03-28T01:18:08Z,- null commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1486072067) at 2023-03-27 06:18 PM PDT -,2023-03-28T01:18:14Z,- null commented on issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1486072130) at 2023-03-27 06:18 PM PDT -,2023-03-28T01:18:22Z,- null commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1486072205) at 2023-03-27 06:18 PM PDT -,2023-03-28T03:02:24Z,- null commented on issue: [3746](https://github.com/hackforla/website/issues/3746#issuecomment-1486135514) at 2023-03-27 08:02 PM PDT -,2023-03-28T04:10:39Z,- null commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1486188780) at 2023-03-27 09:10 PM PDT -,2023-03-28T08:37:17Z,- null commented on issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1486445156) at 2023-03-28 01:37 AM PDT -,2023-03-28T08:37:20Z,- null commented on issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1486445205) at 2023-03-28 01:37 AM PDT -,2023-03-28T08:54:39Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1486469255) at 2023-03-28 01:54 AM PDT -,2023-03-28T08:54:39Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1486469258) at 2023-03-28 01:54 AM PDT -,2023-03-28T09:04:21Z,- null commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1486483469) at 2023-03-28 02:04 AM PDT -,2023-03-28T09:37:33Z,- null commented on issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1486531673) at 2023-03-28 02:37 AM PDT -,2023-03-28T17:11:07Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1487305293) at 2023-03-28 10:11 AM PDT -,2023-03-28T17:43:57Z,- null commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487350360) at 2023-03-28 10:43 AM PDT -,2023-03-28T20:20:24Z,- null commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1487542506) at 2023-03-28 01:20 PM PDT -,2023-03-28T21:30:56Z,- null commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1487620750) at 2023-03-28 02:30 PM PDT -,2023-03-29T00:49:03Z,- null commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1487790340) at 2023-03-28 05:49 PM PDT -,2023-03-29T01:06:44Z,- null commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1487801664) at 2023-03-28 06:06 PM PDT -,2023-03-29T02:09:23Z,- null commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-28 07:09 PM PDT -,2023-03-29T02:21:29Z,- null commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1487854622) at 2023-03-28 07:21 PM PDT -,2023-03-29T03:16:33Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1487888544) at 2023-03-28 08:16 PM PDT -,2023-03-29T03:17:25Z,- null commented on issue: [4313](https://github.com/hackforla/website/issues/4313#issuecomment-1487889012) at 2023-03-28 08:17 PM PDT -,2023-03-29T03:17:25Z,- null commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1487889017) at 2023-03-28 08:17 PM PDT -,2023-03-29T03:17:40Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1487889139) at 2023-03-28 08:17 PM PDT -,2023-03-29T03:25:28Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1487893218) at 2023-03-28 08:25 PM PDT -,2023-03-29T03:29:45Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1487895768) at 2023-03-28 08:29 PM PDT -,2023-03-29T03:34:53Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1487898509) at 2023-03-28 08:34 PM PDT -,2023-03-29T03:36:09Z,- null opened issue: [4321](https://github.com/hackforla/website/issues/4321) at 2023-03-28 08:36 PM PDT -,2023-03-29T03:36:10Z,- null assigned to issue: [4321](https://github.com/hackforla/website/issues/4321) at 2023-03-28 08:36 PM PDT -,2023-03-29T03:36:27Z,- null commented on issue: [4321](https://github.com/hackforla/website/issues/4321#issuecomment-1487899284) at 2023-03-28 08:36 PM PDT -,2023-03-29T03:36:27Z,- null commented on issue: [4321](https://github.com/hackforla/website/issues/4321#issuecomment-1487899289) at 2023-03-28 08:36 PM PDT -,2023-03-29T03:37:55Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1487900008) at 2023-03-28 08:37 PM PDT -,2023-03-29T03:41:20Z,- null commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1487901669) at 2023-03-28 08:41 PM PDT -,2023-03-29T03:42:11Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1487902071) at 2023-03-28 08:42 PM PDT -,2023-03-29T03:52:51Z,- null commented on issue: [4327](https://github.com/hackforla/website/issues/4327#issuecomment-1487907400) at 2023-03-28 08:52 PM PDT -,2023-03-29T03:58:14Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1487910335) at 2023-03-28 08:58 PM PDT -,2023-03-29T03:58:17Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1487910368) at 2023-03-28 08:58 PM PDT -,2023-03-29T03:58:38Z,- null commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1487910596) at 2023-03-28 08:58 PM PDT -,2023-03-29T03:58:49Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1487910698) at 2023-03-28 08:58 PM PDT -,2023-03-29T03:59:50Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1487911362) at 2023-03-28 08:59 PM PDT -,2023-03-29T04:00:50Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1487912077) at 2023-03-28 09:00 PM PDT -,2023-03-29T04:00:52Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1487912109) at 2023-03-28 09:00 PM PDT -,2023-03-29T04:06:32Z,- null commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1487916253) at 2023-03-28 09:06 PM PDT -,2023-03-29T04:11:25Z,- null commented on issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1487919594) at 2023-03-28 09:11 PM PDT -,2023-03-29T04:18:36Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1487923826) at 2023-03-28 09:18 PM PDT -,2023-03-29T04:18:38Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1487923840) at 2023-03-28 09:18 PM PDT -,2023-03-29T04:22:30Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1487925935) at 2023-03-28 09:22 PM PDT -,2023-03-29T04:23:41Z,- null commented on issue: [4337](https://github.com/hackforla/website/issues/4337#issuecomment-1487926468) at 2023-03-28 09:23 PM PDT -,2023-03-29T04:29:01Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1487929116) at 2023-03-28 09:29 PM PDT -,2023-03-29T08:18:10Z,- null commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1488142803) at 2023-03-29 01:18 AM PDT -,2023-03-29T08:19:09Z,- null commented on issue: [3852](https://github.com/hackforla/website/issues/3852#issuecomment-1488144126) at 2023-03-29 01:19 AM PDT -,2023-03-29T08:20:04Z,- null commented on issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1488145373) at 2023-03-29 01:20 AM PDT -,2023-03-29T08:21:02Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1488146725) at 2023-03-29 01:21 AM PDT -,2023-03-29T19:12:32Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1489160564) at 2023-03-29 12:12 PM PDT -,2023-03-29T20:01:32Z,- null closed issue as completed: [3523](https://github.com/hackforla/website/issues/3523#event-8880282627) at 2023-03-29 01:01 PM PDT -,2023-03-30T03:10:48Z,- null commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1489621996) at 2023-03-29 08:10 PM PDT -,2023-03-30T07:27:38Z,- null commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1489825570) at 2023-03-30 12:27 AM PDT -,2023-03-30T13:24:06Z,- null commented on issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1490299810) at 2023-03-30 06:24 AM PDT -,2023-03-30T20:43:09Z,- null assigned to issue: [3852](https://github.com/hackforla/website/issues/3852#issuecomment-1488144605) at 2023-03-30 01:43 PM PDT -,2023-03-30T20:43:25Z,- null commented on issue: [3852](https://github.com/hackforla/website/issues/3852#issuecomment-1490926512) at 2023-03-30 01:43 PM PDT -,2023-03-30T21:19:49Z,- null opened pull request: [4348](https://github.com/hackforla/website/pull/4348) at 2023-03-30 02:19 PM PDT -,2023-03-30T21:27:05Z,- null commented on issue: [4321](https://github.com/hackforla/website/issues/4321#issuecomment-1490987309) at 2023-03-30 02:27 PM PDT -,2023-03-30T23:00:22Z,- null commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1491073572) at 2023-03-30 04:00 PM PDT -,2023-03-31T02:11:59Z,- null commented on issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1491189654) at 2023-03-30 07:11 PM PDT -,2023-03-31T02:31:51Z,- null commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1491205770) at 2023-03-30 07:31 PM PDT -,2023-03-31T07:16:57Z,- null commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1491428275) at 2023-03-31 12:16 AM PDT -,2023-03-31T07:17:00Z,- null commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1491428321) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:04Z,- null commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1491428381) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:08Z,- null commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1491428438) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:12Z,- null commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1491428513) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:15Z,- null commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1491428579) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:20Z,- null commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1491428684) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:23Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1491428773) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:27Z,- null commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1491428826) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:30Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1491428863) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:36Z,- null commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1491428957) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:40Z,- null commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1491429092) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:44Z,- null commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1491429213) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:48Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1491429321) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:17:54Z,- null commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1491429469) at 2023-03-31 12:17 AM PDT -,2023-03-31T07:18:00Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1491429566) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:03Z,- null commented on issue: [4064](https://github.com/hackforla/website/issues/4064#issuecomment-1491429636) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:07Z,- null commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1491429706) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:11Z,- null commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1491429794) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:17Z,- null commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1491429904) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:32Z,- null commented on issue: [4160](https://github.com/hackforla/website/issues/4160#issuecomment-1491430161) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:38Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1491430257) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:42Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1491430310) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:48Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1491430407) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:54Z,- null commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1491430519) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:18:59Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1491430591) at 2023-03-31 12:18 AM PDT -,2023-03-31T07:19:05Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1491430687) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:08Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1491430746) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:16Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1491430902) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:20Z,- null commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1491430961) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:26Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1491431077) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:30Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1491431147) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:33Z,- null commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1491431206) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:41Z,- null commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1491431365) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:45Z,- null commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1491431420) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:19:48Z,- null commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1491431473) at 2023-03-31 12:19 AM PDT -,2023-03-31T07:20:13Z,- null commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1491431843) at 2023-03-31 12:20 AM PDT -,2023-03-31T17:51:30Z,- null commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1492374121) at 2023-03-31 10:51 AM PDT -,2023-03-31T22:38:41Z,- null commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1492687713) at 2023-03-31 03:38 PM PDT -,2023-03-31T22:51:18Z,- null commented on issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1492694456) at 2023-03-31 03:51 PM PDT -,2023-03-31T23:24:46Z,- null commented on issue: [4285](https://github.com/hackforla/website/issues/4285#issuecomment-1492717040) at 2023-03-31 04:24 PM PDT -,2023-04-01T00:06:31Z,- null commented on issue: [4185](https://github.com/hackforla/website/issues/4185#issuecomment-1492746021) at 2023-03-31 05:06 PM PDT -,2023-04-01T18:41:48Z,- null pull request closed w/o merging: [4348](https://github.com/hackforla/website/pull/4348#event-8904657669) at 2023-04-01 11:41 AM PDT -,2023-04-01T18:42:06Z,- null closed issue as completed: [3852](https://github.com/hackforla/website/issues/3852#event-8904658044) at 2023-04-01 11:42 AM PDT -,2023-04-02T00:12:56Z,- null commented on issue: [4364](https://github.com/hackforla/website/issues/4364#issuecomment-1493179849) at 2023-04-01 05:12 PM PDT -,2023-04-02T00:26:02Z,- null commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1493182777) at 2023-04-01 05:26 PM PDT -,2023-04-02T05:41:42Z,- null commented on issue: [4282](https://github.com/hackforla/website/issues/4282#issuecomment-1493229709) at 2023-04-01 10:41 PM PDT -,2023-04-02T09:00:21Z,- null commented on issue: [4366](https://github.com/hackforla/website/issues/4366#issuecomment-1493271351) at 2023-04-02 02:00 AM PDT -,2023-04-02T17:17:39Z,- null commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1493395178) at 2023-04-02 10:17 AM PDT -,2023-04-02T18:46:36Z,- null commented on issue: [4371](https://github.com/hackforla/website/issues/4371#issuecomment-1493413033) at 2023-04-02 11:46 AM PDT -,2023-04-02T23:06:40Z,- null commented on issue: [4366](https://github.com/hackforla/website/issues/4366#issuecomment-1493462217) at 2023-04-02 04:06 PM PDT -,2023-04-03T03:13:31Z,- null commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1493581586) at 2023-04-02 08:13 PM PDT -,2023-04-03T03:19:15Z,- null commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1493588350) at 2023-04-02 08:19 PM PDT -,2023-04-03T06:11:29Z,- null commented on issue: [4377](https://github.com/hackforla/website/issues/4377#issuecomment-1493718786) at 2023-04-02 11:11 PM PDT -,2023-04-03T08:45:44Z,- null commented on issue: [4368](https://github.com/hackforla/website/issues/4368#issuecomment-1493920313) at 2023-04-03 01:45 AM PDT -,2023-04-03T16:47:06Z,- null commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1494654962) at 2023-04-03 09:47 AM PDT -,2023-04-03T16:56:25Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494666715) at 2023-04-03 09:56 AM PDT -,2023-04-03T17:52:57Z,- null commented on issue: [4321](https://github.com/hackforla/website/issues/4321#issuecomment-1494738039) at 2023-04-03 10:52 AM PDT -,2023-04-03T17:59:52Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494746839) at 2023-04-03 10:59 AM PDT -,2023-04-03T18:08:52Z,- null commented on issue: [4376](https://github.com/hackforla/website/issues/4376#issuecomment-1494760070) at 2023-04-03 11:08 AM PDT -,2023-04-03T18:17:43Z,- null commented on issue: [4378](https://github.com/hackforla/website/issues/4378#issuecomment-1494771212) at 2023-04-03 11:17 AM PDT -,2023-04-03T18:38:53Z,- null commented on issue: [4379](https://github.com/hackforla/website/issues/4379#issuecomment-1494797753) at 2023-04-03 11:38 AM PDT -,2023-04-03T21:56:16Z,- null commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-1495037881) at 2023-04-03 02:56 PM PDT -,2023-04-03T22:01:19Z,- null commented on issue: [4389](https://github.com/hackforla/website/issues/4389#issuecomment-1495043322) at 2023-04-03 03:01 PM PDT -,2023-04-04T03:19:28Z,- null commented on issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1495289147) at 2023-04-03 08:19 PM PDT -,2023-04-04T03:39:52Z,- null commented on issue: [4351](https://github.com/hackforla/website/issues/4351#issuecomment-1495299723) at 2023-04-03 08:39 PM PDT -,2023-04-04T08:00:50Z,- null commented on issue: [4405](https://github.com/hackforla/website/issues/4405#issuecomment-1495521082) at 2023-04-04 01:00 AM PDT -,2023-04-04T18:36:10Z,- null commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1496426311) at 2023-04-04 11:36 AM PDT -,2023-04-04T19:02:52Z,- null commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1496458436) at 2023-04-04 12:02 PM PDT -,2023-04-04T20:27:59Z,- null commented on issue: [4350](https://github.com/hackforla/website/issues/4350#issuecomment-1496561836) at 2023-04-04 01:27 PM PDT -,2023-04-04T21:18:22Z,- null commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1496618718) at 2023-04-04 02:18 PM PDT -,2023-04-04T21:18:29Z,- null commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1496618836) at 2023-04-04 02:18 PM PDT -,2023-04-04T22:16:03Z,- null commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1496670739) at 2023-04-04 03:16 PM PDT -,2023-04-04T22:38:05Z,- null commented on issue: [4410](https://github.com/hackforla/website/issues/4410#issuecomment-1496686989) at 2023-04-04 03:38 PM PDT -,2023-04-04T22:38:14Z,- null commented on issue: [4410](https://github.com/hackforla/website/issues/4410#issuecomment-1496687094) at 2023-04-04 03:38 PM PDT -,2023-04-04T23:24:42Z,- null commented on issue: [4358](https://github.com/hackforla/website/issues/4358#issuecomment-1496718396) at 2023-04-04 04:24 PM PDT -,2023-04-04T23:26:12Z,- null commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496719274) at 2023-04-04 04:26 PM PDT -,2023-04-04T23:30:52Z,- null commented on issue: [4397](https://github.com/hackforla/website/issues/4397#issuecomment-1496721936) at 2023-04-04 04:30 PM PDT -,2023-04-05T04:15:53Z,- null commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1496895054) at 2023-04-04 09:15 PM PDT -,2023-04-05T16:44:03Z,- null commented on issue: [4395](https://github.com/hackforla/website/issues/4395#issuecomment-1497809379) at 2023-04-05 09:44 AM PDT -,2023-04-05T21:53:33Z,- null commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1498205598) at 2023-04-05 02:53 PM PDT -,2023-04-05T22:04:45Z,- null commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1498215453) at 2023-04-05 03:04 PM PDT -,2023-04-05T22:58:40Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1498258061) at 2023-04-05 03:58 PM PDT -,2023-04-06T01:40:58Z,- null commented on issue: [4367](https://github.com/hackforla/website/issues/4367#issuecomment-1498377010) at 2023-04-05 06:40 PM PDT -,2023-04-06T16:00:45Z,- null commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1499294789) at 2023-04-06 09:00 AM PDT -,2023-04-06T17:06:49Z,- null commented on issue: [4357](https://github.com/hackforla/website/issues/4357#issuecomment-1499368988) at 2023-04-06 10:06 AM PDT -,2023-04-06T17:22:14Z,- null commented on issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1499387953) at 2023-04-06 10:22 AM PDT -,2023-04-06T19:27:54Z,- null commented on issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499517890) at 2023-04-06 12:27 PM PDT -,2023-04-06T19:48:35Z,- null commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1499537096) at 2023-04-06 12:48 PM PDT -,2023-04-06T19:49:36Z,- null commented on issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499537973) at 2023-04-06 12:49 PM PDT -,2023-04-06T20:57:19Z,- null commented on issue: [4335](https://github.com/hackforla/website/issues/4335#issuecomment-1499620065) at 2023-04-06 01:57 PM PDT -,2023-04-06T21:36:55Z,- null commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1499657915) at 2023-04-06 02:36 PM PDT -,2023-04-07T04:28:58Z,- null commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1499922195) at 2023-04-06 09:28 PM PDT -,2023-04-07T06:00:28Z,- null commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1499967798) at 2023-04-06 11:00 PM PDT -,2023-04-07T07:42:57Z,- null commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1500032482) at 2023-04-07 12:42 AM PDT -,2023-04-07T08:08:24Z,- null commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1500053264) at 2023-04-07 01:08 AM PDT -,2023-04-07T09:11:51Z,- null commented on issue: [4440](https://github.com/hackforla/website/issues/4440#issuecomment-1500101739) at 2023-04-07 02:11 AM PDT -,2023-04-07T16:38:57Z,- null commented on issue: [4352](https://github.com/hackforla/website/issues/4352#issuecomment-1500448057) at 2023-04-07 09:38 AM PDT -,2023-04-07T19:13:35Z,- null commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1500562808) at 2023-04-07 12:13 PM PDT -,2023-04-07T19:25:59Z,- null commented on issue: [4007](https://github.com/hackforla/website/issues/4007#issuecomment-1500574626) at 2023-04-07 12:25 PM PDT -,2023-04-07T19:27:33Z,- null commented on issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1500575617) at 2023-04-07 12:27 PM PDT -,2023-04-07T20:13:38Z,- null commented on issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1500607503) at 2023-04-07 01:13 PM PDT -,2023-04-08T02:15:07Z,- null commented on issue: [4254](https://github.com/hackforla/website/issues/4254#issuecomment-1500764431) at 2023-04-07 07:15 PM PDT -,2023-04-08T18:44:37Z,- null commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1500953591) at 2023-04-08 11:44 AM PDT -,2023-04-09T17:44:00Z,- null assigned to issue: [4446](https://github.com/hackforla/website/issues/4446) at 2023-04-09 10:44 AM PDT -,2023-04-09T17:44:23Z,- null commented on issue: [4446](https://github.com/hackforla/website/issues/4446#issuecomment-1501178883) at 2023-04-09 10:44 AM PDT -,2023-04-09T17:49:05Z,- null commented on issue: [4446](https://github.com/hackforla/website/issues/4446#issuecomment-1501179637) at 2023-04-09 10:49 AM PDT -,2023-04-09T18:07:41Z,- null opened pull request: [4453](https://github.com/hackforla/website/pull/4453) at 2023-04-09 11:07 AM PDT -,2023-04-10T16:54:08Z,- null commented on issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1502052782) at 2023-04-10 09:54 AM PDT -,2023-04-10T16:59:43Z,- null commented on issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1502058701) at 2023-04-10 09:59 AM PDT -,2023-04-10T17:14:48Z,- null commented on issue: [4456](https://github.com/hackforla/website/issues/4456#issuecomment-1502077389) at 2023-04-10 10:14 AM PDT -,2023-04-10T17:58:27Z,- null commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1502119826) at 2023-04-10 10:58 AM PDT -,2023-04-10T20:28:19Z,- null commented on issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1502280198) at 2023-04-10 01:28 PM PDT -,2023-04-11T00:13:23Z,- null commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1502499650) at 2023-04-10 05:13 PM PDT -,2023-04-11T01:19:57Z,- null commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1502549306) at 2023-04-10 06:19 PM PDT -,2023-04-11T01:22:38Z,- null commented on issue: [4255](https://github.com/hackforla/website/issues/4255#issuecomment-1502551277) at 2023-04-10 06:22 PM PDT -,2023-04-11T06:54:41Z,- null commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1502775149) at 2023-04-10 11:54 PM PDT -,2023-04-11T14:26:22Z,- null commented on issue: [4258](https://github.com/hackforla/website/issues/4258#issuecomment-1503467900) at 2023-04-11 07:26 AM PDT -,2023-04-11T14:48:01Z,- null commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1503513645) at 2023-04-11 07:48 AM PDT -,2023-04-11T17:02:06Z,- null commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1503781942) at 2023-04-11 10:02 AM PDT -,2023-04-11T17:15:38Z,- null commented on issue: [4390](https://github.com/hackforla/website/issues/4390#issuecomment-1503798633) at 2023-04-11 10:15 AM PDT -,2023-04-11T20:55:11Z,- null commented on issue: [4256](https://github.com/hackforla/website/issues/4256#issuecomment-1504077798) at 2023-04-11 01:55 PM PDT -,2023-04-12T01:00:24Z,- null commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1504360413) at 2023-04-11 06:00 PM PDT -,2023-04-12T02:41:30Z,- null commented on issue: [4473](https://github.com/hackforla/website/issues/4473#issuecomment-1504472218) at 2023-04-11 07:41 PM PDT -,2023-04-12T03:11:34Z,- null commented on issue: [4487](https://github.com/hackforla/website/issues/4487#issuecomment-1504506928) at 2023-04-11 08:11 PM PDT -,2023-04-12T06:58:21Z,- null commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1504762640) at 2023-04-11 11:58 PM PDT -,2023-04-12T15:33:50Z,- null commented on issue: [4253](https://github.com/hackforla/website/issues/4253#issuecomment-1505484692) at 2023-04-12 08:33 AM PDT -,2023-04-12T18:02:12Z,- null commented on issue: [4448](https://github.com/hackforla/website/issues/4448#issuecomment-1505707322) at 2023-04-12 11:02 AM PDT -,2023-04-12T21:13:58Z,- null commented on issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1505956989) at 2023-04-12 02:13 PM PDT -,2023-04-13T03:16:42Z,- null pull request merged: [4453](https://github.com/hackforla/website/pull/4453#event-8992073676) at 2023-04-12 08:16 PM PDT -,2023-04-13T05:05:38Z,- null commented on issue: [4396](https://github.com/hackforla/website/issues/4396#issuecomment-1506351610) at 2023-04-12 10:05 PM PDT -,2023-04-13T05:24:59Z,- null commented on issue: [4393](https://github.com/hackforla/website/issues/4393#issuecomment-1506365457) at 2023-04-12 10:24 PM PDT -,2023-04-13T05:41:30Z,- null commented on issue: [4445](https://github.com/hackforla/website/issues/4445#issuecomment-1506376530) at 2023-04-12 10:41 PM PDT -,2023-04-13T22:51:57Z,- null commented on issue: [4503](https://github.com/hackforla/website/issues/4503#issuecomment-1507701315) at 2023-04-13 03:51 PM PDT -,2023-04-14T00:31:27Z,- null commented on issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1507766809) at 2023-04-13 05:31 PM PDT -,2023-04-14T02:18:33Z,- null commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1507836191) at 2023-04-13 07:18 PM PDT -,2023-04-14T02:43:57Z,- null commented on issue: [4512](https://github.com/hackforla/website/issues/4512#issuecomment-1507852068) at 2023-04-13 07:43 PM PDT -,2023-04-14T02:43:58Z,- null commented on issue: [4394](https://github.com/hackforla/website/issues/4394#issuecomment-1507852098) at 2023-04-13 07:43 PM PDT -,2023-04-14T04:08:44Z,- null commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1507898629) at 2023-04-13 09:08 PM PDT -,2023-04-14T05:25:41Z,- null commented on issue: [4513](https://github.com/hackforla/website/issues/4513#issuecomment-1507942124) at 2023-04-13 10:25 PM PDT -,2023-04-14T07:08:24Z,- null commented on issue: [4380](https://github.com/hackforla/website/issues/4380#issuecomment-1508031770) at 2023-04-14 12:08 AM PDT -,2023-04-14T08:39:57Z,- null commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1508149846) at 2023-04-14 01:39 AM PDT -,2023-04-14T08:48:46Z,- null commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1508161791) at 2023-04-14 01:48 AM PDT -,2023-04-14T18:58:50Z,- null commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1509090621) at 2023-04-14 11:58 AM PDT -,2023-04-14T21:19:34Z,- null commented on issue: [4450](https://github.com/hackforla/website/issues/4450#issuecomment-1509285200) at 2023-04-14 02:19 PM PDT -,2023-04-14T23:04:48Z,- null commented on issue: [4382](https://github.com/hackforla/website/issues/4382#issuecomment-1509377345) at 2023-04-14 04:04 PM PDT -,2023-04-14T23:36:27Z,- null commented on issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1509393222) at 2023-04-14 04:36 PM PDT -,2023-04-16T05:35:21Z,- null commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1510085436) at 2023-04-15 10:35 PM PDT -,2023-04-16T17:36:52Z,- null commented on issue: [4381](https://github.com/hackforla/website/issues/4381#issuecomment-1510439417) at 2023-04-16 10:36 AM PDT -,2023-04-16T18:20:02Z,- null commented on issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1510450338) at 2023-04-16 11:20 AM PDT -,2023-04-16T18:59:55Z,- null commented on issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1510459581) at 2023-04-16 11:59 AM PDT -,2023-04-16T21:23:58Z,- null commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1510491289) at 2023-04-16 02:23 PM PDT -,2023-04-17T02:05:42Z,- null commented on issue: [4400](https://github.com/hackforla/website/issues/4400#issuecomment-1510588252) at 2023-04-16 07:05 PM PDT -,2023-04-17T04:16:41Z,- null commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1510673442) at 2023-04-16 09:16 PM PDT -,2023-04-17T10:43:20Z,- null commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1511109647) at 2023-04-17 03:43 AM PDT -,2023-04-17T17:18:37Z,- null commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1511774258) at 2023-04-17 10:18 AM PDT -,2023-04-17T21:28:39Z,- null commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1512109099) at 2023-04-17 02:28 PM PDT -,2023-04-17T22:41:32Z,- null commented on issue: [4542](https://github.com/hackforla/website/issues/4542#issuecomment-1512180236) at 2023-04-17 03:41 PM PDT -,2023-04-18T05:56:14Z,- null commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1512477997) at 2023-04-17 10:56 PM PDT -,2023-04-18T15:00:58Z,- null commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1513312080) at 2023-04-18 08:00 AM PDT -,2023-04-19T03:30:30Z,- null commented on issue: [4450](https://github.com/hackforla/website/issues/4450#issuecomment-1514082093) at 2023-04-18 08:30 PM PDT -,2023-04-19T06:58:40Z,- null commented on issue: [4451](https://github.com/hackforla/website/issues/4451#issuecomment-1514224740) at 2023-04-18 11:58 PM PDT -,2023-04-20T13:25:46Z,- null commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1516327548) at 2023-04-20 06:25 AM PDT -,2023-04-20T22:01:18Z,- null commented on issue: [3990](https://github.com/hackforla/website/issues/3990#issuecomment-1516996030) at 2023-04-20 03:01 PM PDT -,2023-04-21T01:29:41Z,- null commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1517130985) at 2023-04-20 06:29 PM PDT -,2023-04-21T01:42:26Z,- null commented on issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1517139160) at 2023-04-20 06:42 PM PDT -,2023-04-21T20:43:35Z,- null commented on issue: [4277](https://github.com/hackforla/website/issues/4277#issuecomment-1518316852) at 2023-04-21 01:43 PM PDT -,2023-04-23T09:26:27Z,- null commented on issue: [4556](https://github.com/hackforla/website/issues/4556#issuecomment-1519009569) at 2023-04-23 02:26 AM PDT -,2023-04-23T17:31:18Z,- null commented on issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1519116785) at 2023-04-23 10:31 AM PDT -,2023-04-23T17:32:48Z,- null commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1519117037) at 2023-04-23 10:32 AM PDT -,2023-04-23T17:45:31Z,- null commented on issue: [1884](https://github.com/hackforla/website/issues/1884#issuecomment-1519119233) at 2023-04-23 10:45 AM PDT -,2023-04-23T17:46:33Z,- null commented on issue: [1847](https://github.com/hackforla/website/issues/1847#issuecomment-1519119402) at 2023-04-23 10:46 AM PDT -,2023-04-23T18:01:06Z,- null commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519122222) at 2023-04-23 11:01 AM PDT -,2023-04-23T18:17:14Z,- null commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1519125198) at 2023-04-23 11:17 AM PDT -,2023-04-23T20:59:15Z,- null submitted pull request review: [4558](https://github.com/hackforla/website/pull/4558#pullrequestreview-1396988634) at 2023-04-23 01:59 PM PDT -,2023-04-23T22:24:38Z,- null commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1519182376) at 2023-04-23 03:24 PM PDT -,2023-04-24T19:16:40Z,- null commented on issue: [4414](https://github.com/hackforla/website/issues/4414#issuecomment-1520699168) at 2023-04-24 12:16 PM PDT -,2023-04-24T20:11:35Z,- null commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-1520766027) at 2023-04-24 01:11 PM PDT -,2023-04-25T00:15:33Z,- null commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1520982863) at 2023-04-24 05:15 PM PDT -,2023-04-25T02:01:53Z,- null commented on issue: [4313](https://github.com/hackforla/website/issues/4313#issuecomment-1521050479) at 2023-04-24 07:01 PM PDT -,2023-04-25T02:02:09Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1521050727) at 2023-04-24 07:02 PM PDT -,2023-04-25T02:18:35Z,- null commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1521060228) at 2023-04-24 07:18 PM PDT -,2023-04-25T07:48:32Z,- null commented on issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1521318133) at 2023-04-25 12:48 AM PDT -,2023-04-25T15:32:03Z,- null commented on issue: [4417](https://github.com/hackforla/website/issues/4417#issuecomment-1522006424) at 2023-04-25 08:32 AM PDT -,2023-04-25T17:47:49Z,- null closed issue as completed: [4321](https://github.com/hackforla/website/issues/4321#event-9095034238) at 2023-04-25 10:47 AM PDT -,2023-04-25T22:49:23Z,- null commented on issue: [4413](https://github.com/hackforla/website/issues/4413#issuecomment-1522515309) at 2023-04-25 03:49 PM PDT -,2023-04-26T00:52:21Z,- null commented on issue: [4567](https://github.com/hackforla/website/issues/4567#issuecomment-1522605529) at 2023-04-25 05:52 PM PDT -,2023-04-26T01:14:38Z,- null commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522624435) at 2023-04-25 06:14 PM PDT -,2023-04-26T02:05:49Z,- null commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1522657973) at 2023-04-25 07:05 PM PDT -,2023-04-26T02:52:12Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1522694007) at 2023-04-25 07:52 PM PDT -,2023-04-26T07:30:52Z,- null commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522922459) at 2023-04-26 12:30 AM PDT -,2023-04-27T00:26:54Z,- null commented on issue: [4401](https://github.com/hackforla/website/issues/4401#issuecomment-1524284755) at 2023-04-26 05:26 PM PDT -,2023-04-27T08:33:08Z,- null commented on issue: [4572](https://github.com/hackforla/website/issues/4572#issuecomment-1525120856) at 2023-04-27 01:33 AM PDT -,2023-04-27T08:58:04Z,- null commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1525181643) at 2023-04-27 01:58 AM PDT -,2023-04-27T20:24:15Z,- null commented on issue: [4398](https://github.com/hackforla/website/issues/4398#issuecomment-1526376401) at 2023-04-27 01:24 PM PDT -,2023-04-27T22:32:28Z,- null commented on issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1526642953) at 2023-04-27 03:32 PM PDT -,2023-04-28T02:39:08Z,- null commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1526899285) at 2023-04-27 07:39 PM PDT -,2023-04-28T20:07:03Z,- null commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528035615) at 2023-04-28 01:07 PM PDT -,2023-04-28T23:31:04Z,- null commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1528196818) at 2023-04-28 04:31 PM PDT -,2023-04-29T22:25:35Z,- null commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1528886206) at 2023-04-29 03:25 PM PDT -,2023-04-30T02:29:55Z,- null commented on pull request: [4576](https://github.com/hackforla/website/pull/4576#issuecomment-1528923048) at 2023-04-29 07:29 PM PDT -,2023-04-30T02:32:18Z,- null submitted pull request review: [4576](https://github.com/hackforla/website/pull/4576#pullrequestreview-1407044742) at 2023-04-29 07:32 PM PDT -,2023-04-30T17:07:26Z,- null commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1529081974) at 2023-04-30 10:07 AM PDT -,2023-04-30T17:31:32Z,- null commented on issue: [4513](https://github.com/hackforla/website/issues/4513#issuecomment-1529088365) at 2023-04-30 10:31 AM PDT -,2023-04-30T22:00:33Z,- null commented on issue: [4527](https://github.com/hackforla/website/issues/4527#issuecomment-1529149107) at 2023-04-30 03:00 PM PDT -,2023-05-01T03:16:26Z,- null commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1529300519) at 2023-04-30 08:16 PM PDT -,2023-05-01T14:09:33Z,- null commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1529753041) at 2023-05-01 07:09 AM PDT -,2023-05-01T14:18:16Z,- null commented on issue: [4557](https://github.com/hackforla/website/issues/4557#issuecomment-1529766760) at 2023-05-01 07:18 AM PDT -,2023-05-01T16:55:56Z,- null commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1529946408) at 2023-05-01 09:55 AM PDT -,2023-05-01T17:32:43Z,- null commented on issue: [4588](https://github.com/hackforla/website/issues/4588#issuecomment-1529985866) at 2023-05-01 10:32 AM PDT -,2023-05-02T02:56:41Z,- null commented on issue: [4590](https://github.com/hackforla/website/issues/4590#issuecomment-1530798667) at 2023-05-01 07:56 PM PDT -,2023-05-02T07:00:47Z,- null commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1530981767) at 2023-05-02 12:00 AM PDT -,2023-05-03T00:39:46Z,- null commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1532316920) at 2023-05-02 05:39 PM PDT -,2023-05-03T03:19:27Z,- null commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1532410762) at 2023-05-02 08:19 PM PDT -,2023-05-03T09:28:59Z,- null commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1532713953) at 2023-05-03 02:28 AM PDT -,2023-05-04T04:50:13Z,- null commented on issue: [4498](https://github.com/hackforla/website/issues/4498#issuecomment-1534090838) at 2023-05-03 09:50 PM PDT -,2023-05-05T04:43:07Z,- null commented on issue: [4601](https://github.com/hackforla/website/issues/4601#issuecomment-1535687841) at 2023-05-04 09:43 PM PDT -,2023-05-05T06:27:40Z,- null commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1535774280) at 2023-05-04 11:27 PM PDT -,2023-05-07T04:10:24Z,- null commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1537284268) at 2023-05-06 09:10 PM PDT -,2023-05-07T16:24:35Z,- null commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1537484603) at 2023-05-07 09:24 AM PDT -,2023-05-08T03:35:24Z,- null commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1537691396) at 2023-05-07 08:35 PM PDT -,2023-05-08T05:51:45Z,- null commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1537789519) at 2023-05-07 10:51 PM PDT -,2023-05-09T00:37:10Z,- null commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1539233122) at 2023-05-08 05:37 PM PDT -,2023-05-09T04:06:55Z,- null commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1539365930) at 2023-05-08 09:06 PM PDT -,2023-05-09T04:16:18Z,- null commented on issue: [4636](https://github.com/hackforla/website/issues/4636#issuecomment-1539371309) at 2023-05-08 09:16 PM PDT -,2023-05-09T05:53:52Z,- null commented on issue: [4512](https://github.com/hackforla/website/issues/4512#issuecomment-1539452143) at 2023-05-08 10:53 PM PDT -,2023-05-09T06:32:34Z,- null commented on issue: [4585](https://github.com/hackforla/website/issues/4585#issuecomment-1539528817) at 2023-05-08 11:32 PM PDT -,2023-05-09T14:12:25Z,- null commented on issue: [4473](https://github.com/hackforla/website/issues/4473#issuecomment-1540209320) at 2023-05-09 07:12 AM PDT -,2023-05-09T20:30:30Z,- null commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1540849842) at 2023-05-09 01:30 PM PDT -,2023-05-10T03:01:53Z,- null commented on issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1541255980) at 2023-05-09 08:01 PM PDT -,2023-05-10T04:35:02Z,- null commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1541339400) at 2023-05-09 09:35 PM PDT -,2023-05-10T16:58:33Z,- null commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1542529891) at 2023-05-10 09:58 AM PDT -,2023-05-11T03:52:41Z,- null commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1543294186) at 2023-05-10 08:52 PM PDT -,2023-05-11T16:09:42Z,- null commented on issue: [4484](https://github.com/hackforla/website/issues/4484#issuecomment-1544277045) at 2023-05-11 09:09 AM PDT -,2023-05-11T18:13:10Z,- null commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1544464154) at 2023-05-11 11:13 AM PDT -,2023-05-12T02:01:26Z,- null commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1544997034) at 2023-05-11 07:01 PM PDT -,2023-05-12T02:22:00Z,- null commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1545012928) at 2023-05-11 07:22 PM PDT -,2023-05-12T07:16:00Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1545288241) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:03Z,- null commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1545288310) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:16Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1545288566) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:20Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1545288631) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:22Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1545288679) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:25Z,- null commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1545288731) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:30Z,- null commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1545288798) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:32Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1545288841) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:35Z,- null commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1545288890) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:38Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1545288946) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:46Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1545289066) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:49Z,- null commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1545289111) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:51Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1545289168) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:54Z,- null commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1545289222) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:16:58Z,- null commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1545289300) at 2023-05-12 12:16 AM PDT -,2023-05-12T07:17:00Z,- null commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1545289347) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:03Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1545289402) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:07Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1545289480) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:10Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1545289536) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:13Z,- null commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1545289573) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:16Z,- null commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1545289632) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:19Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1545289688) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:23Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1545289733) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:25Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1545289784) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:30Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1545289875) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:33Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1545289915) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:36Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1545289979) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:39Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1545290035) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:42Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1545290089) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:45Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1545290135) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:47Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1545290194) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:56Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1545290333) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:17:59Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1545290376) at 2023-05-12 12:17 AM PDT -,2023-05-12T07:18:02Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1545290415) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:05Z,- null commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1545290471) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:08Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1545290511) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:10Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1545290549) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:13Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1545290586) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:15Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1545290637) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:18Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1545290688) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:20Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1545290730) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:23Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1545290779) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:27Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1545290847) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:29Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1545290878) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:32Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1545290918) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:34Z,- null commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1545290972) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:37Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1545291026) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:40Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1545291062) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:42Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1545291103) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:48Z,- null commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1545291224) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:51Z,- null commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1545291292) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:53Z,- null commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1545291338) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:56Z,- null commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1545291405) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:18:59Z,- null commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1545291455) at 2023-05-12 12:18 AM PDT -,2023-05-12T07:19:03Z,- null commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1545291519) at 2023-05-12 12:19 AM PDT -,2023-05-12T07:19:11Z,- null commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1545291675) at 2023-05-12 12:19 AM PDT -,2023-05-12T07:19:16Z,- null commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1545291759) at 2023-05-12 12:19 AM PDT -,2023-05-12T07:19:20Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1545291858) at 2023-05-12 12:19 AM PDT -,2023-05-12T07:19:24Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1545291970) at 2023-05-12 12:19 AM PDT -,2023-05-12T07:19:28Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1545292041) at 2023-05-12 12:19 AM PDT -,2023-05-12T07:19:37Z,- null commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1545292189) at 2023-05-12 12:19 AM PDT -,2023-05-12T17:34:13Z,- null commented on issue: [4660](https://github.com/hackforla/website/issues/4660#issuecomment-1546069221) at 2023-05-12 10:34 AM PDT -,2023-05-14T10:40:46Z,- null commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1546867602) at 2023-05-14 03:40 AM PDT -,2023-05-14T10:45:04Z,- null commented on issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1546868325) at 2023-05-14 03:45 AM PDT -,2023-05-14T10:50:37Z,- null commented on issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1546869248) at 2023-05-14 03:50 AM PDT -,2023-05-14T22:53:26Z,- null commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1547019635) at 2023-05-14 03:53 PM PDT -,2023-05-15T01:14:39Z,- null commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1547061816) at 2023-05-14 06:14 PM PDT -,2023-05-15T01:28:56Z,- null commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1547069053) at 2023-05-14 06:28 PM PDT -,2023-05-15T07:09:41Z,- null commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1547305854) at 2023-05-15 12:09 AM PDT -,2023-05-15T09:50:11Z,- null commented on issue: [4671](https://github.com/hackforla/website/issues/4671#issuecomment-1547535499) at 2023-05-15 02:50 AM PDT -,2023-05-15T17:43:06Z,- null commented on issue: [4476](https://github.com/hackforla/website/issues/4476#issuecomment-1548280243) at 2023-05-15 10:43 AM PDT -,2023-05-15T20:17:03Z,- null commented on issue: [4642](https://github.com/hackforla/website/issues/4642#issuecomment-1548516707) at 2023-05-15 01:17 PM PDT -,2023-05-16T00:41:51Z,- null commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1548802678) at 2023-05-15 05:41 PM PDT -,2023-05-16T15:45:26Z,- null commented on issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1549924808) at 2023-05-16 08:45 AM PDT -,2023-05-16T19:23:25Z,- null commented on issue: [4490](https://github.com/hackforla/website/issues/4490#issuecomment-1550232577) at 2023-05-16 12:23 PM PDT -,2023-05-16T21:17:27Z,- null commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1550368563) at 2023-05-16 02:17 PM PDT -,2023-05-17T18:38:50Z,- null commented on issue: [4503](https://github.com/hackforla/website/issues/4503#issuecomment-1551882647) at 2023-05-17 11:38 AM PDT -,2023-05-17T22:43:54Z,- null commented on issue: [4687](https://github.com/hackforla/website/issues/4687#issuecomment-1552178723) at 2023-05-17 03:43 PM PDT -,2023-05-19T02:47:13Z,- null commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1553927013) at 2023-05-18 07:47 PM PDT -,2023-05-19T05:19:12Z,- null commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1554007301) at 2023-05-18 10:19 PM PDT -,2023-05-19T07:16:23Z,- null commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1554139253) at 2023-05-19 12:16 AM PDT -,2023-05-19T07:16:28Z,- null commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1554139394) at 2023-05-19 12:16 AM PDT -,2023-05-19T07:16:38Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1554139750) at 2023-05-19 12:16 AM PDT -,2023-05-19T07:16:42Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1554139852) at 2023-05-19 12:16 AM PDT -,2023-05-19T07:16:50Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1554140080) at 2023-05-19 12:16 AM PDT -,2023-05-19T07:16:54Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1554140224) at 2023-05-19 12:16 AM PDT -,2023-05-19T07:16:59Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1554140395) at 2023-05-19 12:16 AM PDT -,2023-05-19T07:17:02Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1554140481) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:05Z,- null commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1554140588) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:08Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1554140671) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:12Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1554140795) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:15Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1554140902) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:18Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1554140985) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:21Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1554141059) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:26Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1554141171) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:28Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1554141250) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:31Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1554141318) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:34Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1554141432) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:37Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1554141533) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:40Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1554141639) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:44Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1554141761) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:52Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1554141991) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:17:55Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1554142085) at 2023-05-19 12:17 AM PDT -,2023-05-19T07:18:03Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1554142329) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:06Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1554142396) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:08Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1554142469) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:11Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1554142551) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:15Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1554142667) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:17Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1554142750) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:20Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1554142849) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:22Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1554142937) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:25Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1554143013) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:31Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1554143198) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:34Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1554143284) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:38Z,- null commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1554143455) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:48Z,- null commented on issue: [4313](https://github.com/hackforla/website/issues/4313#issuecomment-1554143779) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:51Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1554143853) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:18:54Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1554143952) at 2023-05-19 12:18 AM PDT -,2023-05-19T07:19:01Z,- null commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1554144183) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:10Z,- null commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1554144465) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:13Z,- null commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1554144555) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:16Z,- null commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1554144639) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:18Z,- null commented on issue: [4631](https://github.com/hackforla/website/issues/4631#issuecomment-1554144726) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:21Z,- null commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1554144811) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:24Z,- null commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1554144888) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:27Z,- null commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1554144974) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:29Z,- null commented on issue: [4627](https://github.com/hackforla/website/issues/4627#issuecomment-1554145077) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:32Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1554145157) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:35Z,- null commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1554145249) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:38Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1554145340) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:40Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1554145425) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:43Z,- null commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1554145526) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:46Z,- null commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1554145630) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:49Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1554145703) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:52Z,- null commented on issue: [4614](https://github.com/hackforla/website/issues/4614#issuecomment-1554145801) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:55Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1554145890) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:19:58Z,- null commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1554145979) at 2023-05-19 12:19 AM PDT -,2023-05-19T07:20:01Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1554146084) at 2023-05-19 12:20 AM PDT -,2023-05-19T07:20:04Z,- null commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1554146182) at 2023-05-19 12:20 AM PDT -,2023-05-19T07:20:10Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1554146404) at 2023-05-19 12:20 AM PDT -,2023-05-19T07:20:13Z,- null commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1554146494) at 2023-05-19 12:20 AM PDT -,2023-05-19T07:20:28Z,- null commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1554147021) at 2023-05-19 12:20 AM PDT -,2023-05-22T11:19:37Z,- null commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1557038737) at 2023-05-22 04:19 AM PDT -,2023-05-22T22:05:50Z,- null commented on issue: [4418](https://github.com/hackforla/website/issues/4418#issuecomment-1558090454) at 2023-05-22 03:05 PM PDT -,2023-05-22T22:52:06Z,- null commented on issue: [4705](https://github.com/hackforla/website/issues/4705#issuecomment-1558145076) at 2023-05-22 03:52 PM PDT -,2023-05-23T01:25:02Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1558322206) at 2023-05-22 06:25 PM PDT -,2023-05-23T05:24:12Z,- null opened issue: [4707](https://github.com/hackforla/website/issues/4707) at 2023-05-22 10:24 PM PDT -,2023-05-23T09:35:26Z,- null commented on issue: [4685](https://github.com/hackforla/website/issues/4685#issuecomment-1558911623) at 2023-05-23 02:35 AM PDT -,2023-05-23T23:21:08Z,- null commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1560249334) at 2023-05-23 04:21 PM PDT -,2023-05-24T01:17:50Z,- null commented on issue: [4699](https://github.com/hackforla/website/issues/4699#issuecomment-1560325763) at 2023-05-23 06:17 PM PDT -,2023-05-24T01:34:00Z,- null commented on issue: [4706](https://github.com/hackforla/website/issues/4706#issuecomment-1560337437) at 2023-05-23 06:34 PM PDT -,2023-05-24T02:34:30Z,- null commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1560374987) at 2023-05-23 07:34 PM PDT -,2023-05-24T03:13:32Z,- null commented on issue: [4716](https://github.com/hackforla/website/issues/4716#issuecomment-1560400903) at 2023-05-23 08:13 PM PDT -,2023-05-24T03:13:38Z,- null commented on issue: [4717](https://github.com/hackforla/website/issues/4717#issuecomment-1560400939) at 2023-05-23 08:13 PM PDT -,2023-05-24T03:15:52Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1560402064) at 2023-05-23 08:15 PM PDT -,2023-05-24T03:21:36Z,- null opened issue: [4722](https://github.com/hackforla/website/issues/4722) at 2023-05-23 08:21 PM PDT -,2023-05-24T03:21:37Z,- null assigned to issue: [4722](https://github.com/hackforla/website/issues/4722) at 2023-05-23 08:21 PM PDT -,2023-05-24T03:21:51Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1560405078) at 2023-05-23 08:21 PM PDT -,2023-05-24T18:44:08Z,- null commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1561761426) at 2023-05-24 11:44 AM PDT -,2023-05-25T02:12:56Z,- null commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1562160882) at 2023-05-24 07:12 PM PDT -,2023-05-25T07:59:19Z,- null commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1562456127) at 2023-05-25 12:59 AM PDT -,2023-05-25T15:46:46Z,- null commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1563132188) at 2023-05-25 08:46 AM PDT -,2023-05-25T18:06:57Z,- null commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1563306879) at 2023-05-25 11:06 AM PDT -,2023-05-26T04:26:58Z,- null commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1563793299) at 2023-05-25 09:26 PM PDT -,2023-05-26T07:17:10Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1563918915) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:18Z,- null commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1563919068) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:22Z,- null commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1563919136) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:25Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1563919188) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:28Z,- null commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1563919238) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:44Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1563919515) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:48Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1563919571) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:51Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1563919626) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:17:56Z,- null commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1563919724) at 2023-05-26 12:17 AM PDT -,2023-05-26T07:18:02Z,- null commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1563919813) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:05Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1563919881) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:12Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1563920003) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:16Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1563920067) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:19Z,- null commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1563920123) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:22Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1563920180) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:26Z,- null commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1563920229) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:29Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1563920287) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:34Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1563920381) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:38Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1563920444) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:41Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1563920495) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:44Z,- null commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1563920559) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:48Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1563920601) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:51Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1563920647) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:18:54Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1563920698) at 2023-05-26 12:18 AM PDT -,2023-05-26T07:19:01Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1563920808) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:04Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1563920892) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:08Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1563920966) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:11Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1563921008) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:16Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1563921098) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:20Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1563921173) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:28Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1563921307) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:32Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1563921382) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:35Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1563921436) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:38Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1563921490) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:42Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1563921545) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:45Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1563921602) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:48Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1563921663) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:53Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1563921736) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:56Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1563921813) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:19:59Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1563921928) at 2023-05-26 12:19 AM PDT -,2023-05-26T07:20:03Z,- null commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1563922011) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:06Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1563922085) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:09Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1563922156) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:17Z,- null commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1563922312) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:25Z,- null commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1563922456) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:31Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1563922565) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:34Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1563922618) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:37Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1563922662) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:48Z,- null commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1563922823) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:52Z,- null commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1563922884) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:56Z,- null commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1563922953) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:20:59Z,- null commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1563923004) at 2023-05-26 12:20 AM PDT -,2023-05-26T07:21:05Z,- null commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1563923175) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:12Z,- null commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1563923423) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:16Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1563923579) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:19Z,- null commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1563923701) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:29Z,- null commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1563923879) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:32Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1563923949) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:38Z,- null commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1563924056) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:42Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1563924131) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:46Z,- null commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1563924193) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:21:50Z,- null commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1563924258) at 2023-05-26 12:21 AM PDT -,2023-05-26T07:22:25Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1563924886) at 2023-05-26 12:22 AM PDT -,2023-05-26T18:49:09Z,- null commented on issue: [4491](https://github.com/hackforla/website/issues/4491#issuecomment-1564792905) at 2023-05-26 11:49 AM PDT -,2023-05-26T19:17:38Z,- null commented on issue: [4487](https://github.com/hackforla/website/issues/4487#issuecomment-1564822904) at 2023-05-26 12:17 PM PDT -,2023-05-26T21:44:15Z,- null commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1564992182) at 2023-05-26 02:44 PM PDT -,2023-05-27T00:24:48Z,- null commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565101261) at 2023-05-26 05:24 PM PDT -,2023-05-27T05:38:41Z,- null commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1565219916) at 2023-05-26 10:38 PM PDT -,2023-05-27T05:59:47Z,- null commented on issue: [4419](https://github.com/hackforla/website/issues/4419#issuecomment-1565224516) at 2023-05-26 10:59 PM PDT -,2023-05-27T07:39:27Z,- null commented on issue: [4481](https://github.com/hackforla/website/issues/4481#issuecomment-1565253773) at 2023-05-27 12:39 AM PDT -,2023-05-27T18:45:31Z,- null commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565646111) at 2023-05-27 11:45 AM PDT -,2023-05-27T19:39:33Z,- null commented on issue: [4482](https://github.com/hackforla/website/issues/4482#issuecomment-1565659554) at 2023-05-27 12:39 PM PDT -,2023-05-28T03:26:56Z,- null commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565839276) at 2023-05-27 08:26 PM PDT -,2023-05-28T10:49:14Z,- null commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1566082854) at 2023-05-28 03:49 AM PDT -,2023-05-28T16:42:45Z,- null commented on issue: [4707](https://github.com/hackforla/website/issues/4707#issuecomment-1566196105) at 2023-05-28 09:42 AM PDT -,2023-05-29T02:01:32Z,- null commented on issue: [4669](https://github.com/hackforla/website/issues/4669#issuecomment-1566385157) at 2023-05-28 07:01 PM PDT -,2023-05-30T01:40:11Z,- null commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1567654771) at 2023-05-29 06:40 PM PDT -,2023-05-30T04:58:49Z,- null commented on issue: [4753](https://github.com/hackforla/website/issues/4753#issuecomment-1567754986) at 2023-05-29 09:58 PM PDT -,2023-05-30T18:39:26Z,- null commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1568898735) at 2023-05-30 11:39 AM PDT -,2023-05-31T03:47:47Z,- null commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1569452786) at 2023-05-30 08:47 PM PDT -,2023-06-01T17:57:33Z,- null commented on issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1572535026) at 2023-06-01 10:57 AM PDT -,2023-06-01T18:02:00Z,- null commented on issue: [4480](https://github.com/hackforla/website/issues/4480#issuecomment-1572541913) at 2023-06-01 11:02 AM PDT -,2023-06-02T00:51:29Z,- null commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1572969394) at 2023-06-01 05:51 PM PDT -,2023-06-02T07:16:05Z,- null commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1573269254) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:09Z,- null commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1573269319) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:12Z,- null commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1573269385) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:16Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1573269454) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:32Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1573269745) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:37Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1573269826) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:40Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1573269881) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:45Z,- null commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1573269961) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:49Z,- null commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1573270042) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:53Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1573270128) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:16:56Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1573270192) at 2023-06-02 12:16 AM PDT -,2023-06-02T07:17:03Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1573270307) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:06Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1573270382) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:10Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1573270450) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:16Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1573270559) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:20Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1573270622) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:23Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1573270681) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:27Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1573270738) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:33Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1573270841) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:38Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1573270922) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:41Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1573270977) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:47Z,- null commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1573271053) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:50Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1573271109) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:54Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1573271168) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:17:57Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1573271246) at 2023-06-02 12:17 AM PDT -,2023-06-02T07:18:01Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1573271310) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:05Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1573271369) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:08Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1573271416) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:12Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1573271479) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:20Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1573271611) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:26Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1573271697) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:29Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1573271757) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:32Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1573271818) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:38Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1573271958) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:42Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1573272121) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:47Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1573272277) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:50Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1573272337) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:18:58Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1573272529) at 2023-06-02 12:18 AM PDT -,2023-06-02T07:19:02Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1573272616) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:06Z,- null commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1573272672) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:17Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1573272869) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:21Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1573272934) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:24Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1573272978) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:28Z,- null commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1573273046) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:35Z,- null commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1573273167) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:41Z,- null commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1573273267) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:44Z,- null commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1573273320) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:47Z,- null commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1573273374) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:51Z,- null commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1573273438) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:54Z,- null commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1573273496) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:19:58Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1573273570) at 2023-06-02 12:19 AM PDT -,2023-06-02T07:20:04Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1573273687) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:08Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1573273742) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:12Z,- null commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1573273824) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:18Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1573273919) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:21Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1573273973) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:25Z,- null commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1573274031) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:28Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1573274079) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:32Z,- null commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1573274141) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:36Z,- null commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1573274207) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:43Z,- null commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1573274348) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:20:58Z,- null commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1573274611) at 2023-06-02 12:20 AM PDT -,2023-06-02T07:21:10Z,- null commented on issue: [4588](https://github.com/hackforla/website/issues/4588#issuecomment-1573274798) at 2023-06-02 12:21 AM PDT -,2023-06-02T07:21:16Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1573274882) at 2023-06-02 12:21 AM PDT -,2023-06-02T07:21:31Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1573275147) at 2023-06-02 12:21 AM PDT -,2023-06-02T07:21:35Z,- null commented on issue: [4714](https://github.com/hackforla/website/issues/4714#issuecomment-1573275216) at 2023-06-02 12:21 AM PDT -,2023-06-02T07:21:39Z,- null commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1573275279) at 2023-06-02 12:21 AM PDT -,2023-06-02T07:21:43Z,- null commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1573275390) at 2023-06-02 12:21 AM PDT -,2023-06-02T07:21:57Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1573275816) at 2023-06-02 12:21 AM PDT -,2023-06-02T07:22:01Z,- null commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1573275923) at 2023-06-02 12:22 AM PDT -,2023-06-02T10:41:53Z,- null commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1573524921) at 2023-06-02 03:41 AM PDT -,2023-06-02T15:10:41Z,- null commented on issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1573892352) at 2023-06-02 08:10 AM PDT -,2023-06-02T20:36:35Z,- null commented on issue: [4416](https://github.com/hackforla/website/issues/4416#issuecomment-1574286850) at 2023-06-02 01:36 PM PDT -,2023-06-03T00:11:23Z,- null commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1574462397) at 2023-06-02 05:11 PM PDT -,2023-06-03T00:12:40Z,- null commented on issue: [4479](https://github.com/hackforla/website/issues/4479#issuecomment-1574462954) at 2023-06-02 05:12 PM PDT -,2023-06-03T03:48:44Z,- null commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1574621978) at 2023-06-02 08:48 PM PDT -,2023-06-03T21:40:40Z,- null commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1575208450) at 2023-06-03 02:40 PM PDT -,2023-06-04T16:38:50Z,- null commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1575633125) at 2023-06-04 09:38 AM PDT -,2023-06-05T09:07:34Z,- null commented on issue: [4770](https://github.com/hackforla/website/issues/4770#issuecomment-1576418343) at 2023-06-05 02:07 AM PDT -,2023-06-05T19:21:03Z,- null commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1577349320) at 2023-06-05 12:21 PM PDT -,2023-06-06T19:13:14Z,- null commented on issue: [4758](https://github.com/hackforla/website/issues/4758#issuecomment-1579312797) at 2023-06-06 12:13 PM PDT -,2023-06-07T18:20:36Z,- null commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1581302893) at 2023-06-07 11:20 AM PDT -,2023-06-08T07:07:29Z,- null commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1582004969) at 2023-06-08 12:07 AM PDT -,2023-06-09T07:16:50Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1584092805) at 2023-06-09 12:16 AM PDT -,2023-06-09T07:16:57Z,- null commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1584092903) at 2023-06-09 12:16 AM PDT -,2023-06-09T07:16:59Z,- null commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1584092946) at 2023-06-09 12:16 AM PDT -,2023-06-09T07:17:02Z,- null commented on issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1584093011) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:05Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1584093062) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:16Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1584093267) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:19Z,- null commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1584093314) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:22Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1584093361) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:25Z,- null commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1584093413) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:28Z,- null commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1584093464) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:32Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1584093565) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:34Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1584093655) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:40Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1584093785) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:43Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1584093839) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:45Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1584093882) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:49Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1584093935) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:51Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1584093981) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:55Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1584094040) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:17:58Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1584094090) at 2023-06-09 12:17 AM PDT -,2023-06-09T07:18:02Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1584094154) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:05Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1584094227) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:08Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1584094270) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:11Z,- null commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1584094322) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:14Z,- null commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1584094387) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:18Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1584094443) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:20Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1584094477) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:23Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1584094522) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:26Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1584094570) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:31Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1584094659) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:34Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1584094699) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:40Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1584094836) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:43Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1584094895) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:45Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1584094934) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:48Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1584094985) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:51Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1584095045) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:54Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1584095131) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:18:57Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1584095166) at 2023-06-09 12:18 AM PDT -,2023-06-09T07:19:00Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1584095222) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:03Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1584095271) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:05Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1584095320) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:08Z,- null commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1584095386) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:12Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1584095449) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:16Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1584095542) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:20Z,- null commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1584095599) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:27Z,- null commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1584095735) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:30Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1584095767) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:32Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1584095817) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:35Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1584095908) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:38Z,- null commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1584095949) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:44Z,- null commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1584096118) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:47Z,- null commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1584096218) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:49Z,- null commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1584096265) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:51Z,- null commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1584096312) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:55Z,- null commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1584096383) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:19:59Z,- null commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1584096441) at 2023-06-09 12:19 AM PDT -,2023-06-09T07:20:01Z,- null commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1584096490) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:04Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1584096538) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:07Z,- null commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1584096603) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:11Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1584096675) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:14Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1584096744) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:17Z,- null commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1584096809) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:20Z,- null commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1584096859) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:23Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1584096899) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:26Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1584096956) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:28Z,- null commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1584096994) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:31Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1584097033) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:33Z,- null commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1584097060) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:36Z,- null commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1584097101) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:39Z,- null commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1584097149) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:20:42Z,- null commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1584097203) at 2023-06-09 12:20 AM PDT -,2023-06-09T07:21:03Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1584097580) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:06Z,- null commented on issue: [4716](https://github.com/hackforla/website/issues/4716#issuecomment-1584097639) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:11Z,- null commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1584097702) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:15Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1584097764) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:19Z,- null commented on issue: [4714](https://github.com/hackforla/website/issues/4714#issuecomment-1584097812) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:22Z,- null commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1584097882) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:26Z,- null commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1584097933) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:28Z,- null commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1584097975) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:33Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1584098049) at 2023-06-09 12:21 AM PDT -,2023-06-09T07:21:42Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1584098235) at 2023-06-09 12:21 AM PDT -,2023-06-09T18:19:01Z,- null commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1584971877) at 2023-06-09 11:19 AM PDT -,2023-06-12T07:11:16Z,- null commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1586721474) at 2023-06-12 12:11 AM PDT -,2023-06-13T05:21:28Z,- null commented on issue: [4782](https://github.com/hackforla/website/issues/4782#issuecomment-1588565623) at 2023-06-12 10:21 PM PDT -,2023-06-13T07:04:55Z,- null commented on issue: [4728](https://github.com/hackforla/website/issues/4728#issuecomment-1588670848) at 2023-06-13 12:04 AM PDT -,2023-06-13T07:32:43Z,- null commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1588712402) at 2023-06-13 12:32 AM PDT -,2023-06-13T22:39:21Z,- null commented on issue: [4824](https://github.com/hackforla/website/issues/4824#issuecomment-1590146329) at 2023-06-13 03:39 PM PDT -,2023-06-13T23:04:39Z,- null commented on issue: [4825](https://github.com/hackforla/website/issues/4825#issuecomment-1590171082) at 2023-06-13 04:04 PM PDT -,2023-06-14T00:15:28Z,- null commented on issue: [4827](https://github.com/hackforla/website/issues/4827#issuecomment-1590239266) at 2023-06-13 05:15 PM PDT -,2023-06-14T02:37:01Z,- null commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590355187) at 2023-06-13 07:37 PM PDT -,2023-06-14T17:41:21Z,- null commented on issue: [4826](https://github.com/hackforla/website/issues/4826#issuecomment-1591724329) at 2023-06-14 10:41 AM PDT -,2023-06-14T18:06:15Z,- null commented on issue: [4823](https://github.com/hackforla/website/issues/4823#issuecomment-1591754838) at 2023-06-14 11:06 AM PDT -,2023-06-14T20:38:31Z,- null commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1591947153) at 2023-06-14 01:38 PM PDT -,2023-06-14T23:26:00Z,- null commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1592120092) at 2023-06-14 04:26 PM PDT -,2023-06-16T04:05:01Z,- null commented on issue: [4828](https://github.com/hackforla/website/issues/4828#issuecomment-1594058217) at 2023-06-15 09:05 PM PDT -,2023-06-16T04:41:31Z,- null commented on issue: [4829](https://github.com/hackforla/website/issues/4829#issuecomment-1594088986) at 2023-06-15 09:41 PM PDT -,2023-06-16T05:01:31Z,- null commented on issue: [4830](https://github.com/hackforla/website/issues/4830#issuecomment-1594101071) at 2023-06-15 10:01 PM PDT -,2023-06-16T05:12:36Z,- null commented on issue: [4831](https://github.com/hackforla/website/issues/4831#issuecomment-1594108647) at 2023-06-15 10:12 PM PDT -,2023-06-16T07:16:20Z,- null commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1594224229) at 2023-06-16 12:16 AM PDT -,2023-06-16T07:16:24Z,- null commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1594224297) at 2023-06-16 12:16 AM PDT -,2023-06-16T07:16:39Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1594224600) at 2023-06-16 12:16 AM PDT -,2023-06-16T07:16:45Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1594224717) at 2023-06-16 12:16 AM PDT -,2023-06-16T07:16:51Z,- null commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1594224837) at 2023-06-16 12:16 AM PDT -,2023-06-16T07:16:55Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1594224929) at 2023-06-16 12:16 AM PDT -,2023-06-16T07:16:59Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1594225011) at 2023-06-16 12:16 AM PDT -,2023-06-16T07:17:06Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1594225185) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:09Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1594225253) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:13Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1594225333) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:17Z,- null commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1594225416) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:20Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1594225514) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:24Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1594225580) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:27Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1594225643) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:31Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1594225707) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:35Z,- null commented on issue: [4169](https://github.com/hackforla/website/issues/4169#issuecomment-1594225782) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:39Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1594225859) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:43Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1594225949) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:46Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1594226004) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:55Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1594226165) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:17:58Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1594226248) at 2023-06-16 12:17 AM PDT -,2023-06-16T07:18:02Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1594226321) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:08Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1594226456) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:11Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1594226587) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:15Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1594226698) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:23Z,- null commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1594226956) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:26Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1594227099) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:30Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1594227183) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:33Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1594227248) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:38Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1594227360) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:41Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1594227423) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:46Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1594227533) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:49Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1594227611) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:18:53Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1594227693) at 2023-06-16 12:18 AM PDT -,2023-06-16T07:19:02Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1594227873) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:05Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1594227957) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:19Z,- null commented on issue: [3969](https://github.com/hackforla/website/issues/3969#issuecomment-1594228245) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:22Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1594228315) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:25Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1594228369) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:29Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1594228428) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:34Z,- null commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1594228537) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:40Z,- null commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1594228655) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:43Z,- null commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1594228724) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:46Z,- null commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1594228849) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:49Z,- null commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1594228970) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:53Z,- null commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1594229032) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:19:56Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1594229084) at 2023-06-16 12:19 AM PDT -,2023-06-16T07:20:01Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1594229166) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:05Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1594229231) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:08Z,- null commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1594229290) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:12Z,- null commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1594229375) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:16Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1594229447) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:19Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1594229504) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:22Z,- null commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1594229582) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:25Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1594229648) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:29Z,- null commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1594229713) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:32Z,- null commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1594229791) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:39Z,- null commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1594229922) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:54Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1594230209) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:20:58Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1594230293) at 2023-06-16 12:20 AM PDT -,2023-06-16T07:21:02Z,- null commented on issue: [4716](https://github.com/hackforla/website/issues/4716#issuecomment-1594230358) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:12Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1594230574) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:16Z,- null commented on issue: [4714](https://github.com/hackforla/website/issues/4714#issuecomment-1594230655) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:19Z,- null commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1594230711) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:27Z,- null commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1594230869) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:31Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1594230936) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:35Z,- null commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1594231016) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:41Z,- null commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1594231133) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:47Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1594231238) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:21:50Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1594231310) at 2023-06-16 12:21 AM PDT -,2023-06-16T07:22:05Z,- null commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1594231590) at 2023-06-16 12:22 AM PDT -,2023-06-17T07:43:08Z,- null commented on issue: [4784](https://github.com/hackforla/website/issues/4784#issuecomment-1595659889) at 2023-06-17 12:43 AM PDT -,2023-06-17T13:27:32Z,- null commented on issue: [4762](https://github.com/hackforla/website/issues/4762#issuecomment-1595760830) at 2023-06-17 06:27 AM PDT -,2023-06-18T07:08:31Z,- null commented on issue: [4834](https://github.com/hackforla/website/issues/4834#issuecomment-1596000451) at 2023-06-18 12:08 AM PDT -,2023-06-19T01:33:10Z,- null commented on issue: [4841](https://github.com/hackforla/website/issues/4841#issuecomment-1596357347) at 2023-06-18 06:33 PM PDT -,2023-06-19T01:46:53Z,- null commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1596367055) at 2023-06-18 06:46 PM PDT -,2023-06-19T15:02:53Z,- null commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1597345228) at 2023-06-19 08:02 AM PDT -,2023-06-19T19:02:40Z,- null commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1597628550) at 2023-06-19 12:02 PM PDT -,2023-06-21T01:02:24Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1599871983) at 2023-06-20 06:02 PM PDT -,2023-06-21T01:34:22Z,- null commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1599939451) at 2023-06-20 06:34 PM PDT -,2023-06-21T06:01:52Z,- null commented on issue: [4869](https://github.com/hackforla/website/issues/4869#issuecomment-1600233899) at 2023-06-20 11:01 PM PDT -,2023-06-21T11:44:09Z,- null commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1600685069) at 2023-06-21 04:44 AM PDT -,2023-06-23T00:08:46Z,- null commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1603460261) at 2023-06-22 05:08 PM PDT -,2023-06-23T18:19:12Z,- null commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1604671870) at 2023-06-23 11:19 AM PDT -,2023-06-23T18:57:55Z,- null commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1604728249) at 2023-06-23 11:57 AM PDT -,2023-06-24T04:27:32Z,- null commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1605260684) at 2023-06-23 09:27 PM PDT -,2023-06-27T05:47:57Z,- null commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1608837214) at 2023-06-26 10:47 PM PDT -,2023-06-27T07:55:16Z,- null commented on issue: [4888](https://github.com/hackforla/website/issues/4888#issuecomment-1608983904) at 2023-06-27 12:55 AM PDT -,2023-06-27T09:15:05Z,- null commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1609109260) at 2023-06-27 02:15 AM PDT -,2023-06-27T17:46:22Z,- null commented on issue: [4883](https://github.com/hackforla/website/issues/4883#issuecomment-1609963314) at 2023-06-27 10:46 AM PDT -,2023-06-27T19:34:59Z,- null commented on issue: [4859](https://github.com/hackforla/website/issues/4859#issuecomment-1610104735) at 2023-06-27 12:34 PM PDT -,2023-06-27T23:56:51Z,- null commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1610378435) at 2023-06-27 04:56 PM PDT -,2023-06-28T19:22:20Z,- null commented on issue: [4898](https://github.com/hackforla/website/issues/4898#issuecomment-1611966943) at 2023-06-28 12:22 PM PDT -,2023-06-29T18:17:09Z,- null commented on issue: [4901](https://github.com/hackforla/website/issues/4901#issuecomment-1613597188) at 2023-06-29 11:17 AM PDT -,2023-06-29T18:26:47Z,- null commented on issue: [4822](https://github.com/hackforla/website/issues/4822#issuecomment-1613606910) at 2023-06-29 11:26 AM PDT -,2023-06-30T07:17:56Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1614235656) at 2023-06-30 12:17 AM PDT -,2023-06-30T07:18:04Z,- null commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1614235802) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:08Z,- null commented on issue: [4331](https://github.com/hackforla/website/issues/4331#issuecomment-1614235859) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:12Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1614235934) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:26Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1614236162) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:29Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1614236226) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:33Z,- null commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1614236303) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:39Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1614236399) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:42Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1614236456) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:49Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1614236605) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:52Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1614236668) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:18:56Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1614236738) at 2023-06-30 12:18 AM PDT -,2023-06-30T07:19:01Z,- null commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1614236828) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:04Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1614236895) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:07Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1614236951) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:11Z,- null commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1614237005) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:14Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1614237055) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:17Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1614237117) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:20Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1614237172) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:27Z,- null commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1614237285) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:30Z,- null commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1614237347) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:34Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1614237410) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:37Z,- null commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1614237458) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:42Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1614237542) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:46Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1614237599) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:49Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1614237660) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:55Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1614237756) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:19:58Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1614237830) at 2023-06-30 12:19 AM PDT -,2023-06-30T07:20:01Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1614237901) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:05Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1614237959) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:08Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1614238000) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:11Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1614238047) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:15Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1614238088) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:18Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1614238129) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:21Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1614238179) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:25Z,- null commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1614238246) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:29Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1614238314) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:32Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1614238368) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:35Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1614238423) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:43Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1614238543) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:46Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1614238608) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:50Z,- null commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1614238680) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:53Z,- null commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1614238734) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:56Z,- null commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1614238790) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:20:59Z,- null commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1614238849) at 2023-06-30 12:20 AM PDT -,2023-06-30T07:21:03Z,- null commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1614238914) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:06Z,- null commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1614238972) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:09Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1614239015) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:13Z,- null commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1614239067) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:16Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1614239121) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:20Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1614239182) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:23Z,- null commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1614239239) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:26Z,- null commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1614239303) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:29Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1614239370) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:32Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1614239425) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:35Z,- null commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1614239486) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:39Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1614239533) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:42Z,- null commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1614239582) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:50Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1614239710) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:53Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1614239756) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:21:56Z,- null commented on issue: [4716](https://github.com/hackforla/website/issues/4716#issuecomment-1614239810) at 2023-06-30 12:21 AM PDT -,2023-06-30T07:22:04Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1614239948) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:07Z,- null commented on issue: [4714](https://github.com/hackforla/website/issues/4714#issuecomment-1614239995) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:10Z,- null commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1614240039) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:15Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1614240120) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:21Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1614240222) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:24Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1614240279) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:30Z,- null commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1614240377) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:35Z,- null commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1614240471) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:39Z,- null commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1614240532) at 2023-06-30 12:22 AM PDT -,2023-06-30T07:22:49Z,- null commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1614240725) at 2023-06-30 12:22 AM PDT -,2023-07-01T17:03:08Z,- null commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1615999329) at 2023-07-01 10:03 AM PDT -,2023-07-02T04:57:19Z,- null commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1616370510) at 2023-07-01 09:57 PM PDT -,2023-07-05T17:44:31Z,- null commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1622208966) at 2023-07-05 10:44 AM PDT -,2023-07-06T00:17:30Z,- null commented on issue: [4914](https://github.com/hackforla/website/issues/4914#issuecomment-1622723182) at 2023-07-05 05:17 PM PDT -,2023-07-06T00:18:24Z,- null commented on issue: [4914](https://github.com/hackforla/website/issues/4914#issuecomment-1622723859) at 2023-07-05 05:18 PM PDT -,2023-07-06T08:03:55Z,- null commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1623179452) at 2023-07-06 01:03 AM PDT -,2023-07-06T22:36:16Z,- null commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1624394393) at 2023-07-06 03:36 PM PDT -,2023-07-06T23:50:52Z,- null commented on issue: [4920](https://github.com/hackforla/website/issues/4920#issuecomment-1624445286) at 2023-07-06 04:50 PM PDT -,2023-07-07T01:19:05Z,- null commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1624500713) at 2023-07-06 06:19 PM PDT -,2023-07-07T05:16:48Z,- null commented on issue: [4864](https://github.com/hackforla/website/issues/4864#issuecomment-1624761623) at 2023-07-06 10:16 PM PDT -,2023-07-07T07:18:51Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1624875702) at 2023-07-07 12:18 AM PDT -,2023-07-07T07:18:59Z,- null commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1624875995) at 2023-07-07 12:18 AM PDT -,2023-07-07T07:19:03Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1624876134) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:16Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1624876619) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:20Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1624876754) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:25Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1624876939) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:28Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1624877067) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:35Z,- null commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1624877304) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:39Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1624877427) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:42Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1624877550) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:46Z,- null commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1624877691) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:49Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1624877799) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:52Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1624877916) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:56Z,- null commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1624878034) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:19:59Z,- null commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1624878160) at 2023-07-07 12:19 AM PDT -,2023-07-07T07:20:06Z,- null commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1624878405) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:10Z,- null commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1624878548) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:14Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1624878688) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:20Z,- null commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1624878909) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:24Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1624878978) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:27Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1624879036) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:31Z,- null commented on issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1624879097) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:34Z,- null commented on issue: [4311](https://github.com/hackforla/website/issues/4311#issuecomment-1624879158) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:37Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1624879212) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:41Z,- null commented on issue: [4316](https://github.com/hackforla/website/issues/4316#issuecomment-1624879275) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:44Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1624879333) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:47Z,- null commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1624879396) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:51Z,- null commented on issue: [4322](https://github.com/hackforla/website/issues/4322#issuecomment-1624879458) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:20:54Z,- null commented on issue: [4334](https://github.com/hackforla/website/issues/4334#issuecomment-1624879513) at 2023-07-07 12:20 AM PDT -,2023-07-07T07:21:03Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1624879695) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:06Z,- null commented on issue: [4320](https://github.com/hackforla/website/issues/4320#issuecomment-1624879811) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:14Z,- null commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1624880111) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:18Z,- null commented on issue: [4310](https://github.com/hackforla/website/issues/4310#issuecomment-1624880227) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:23Z,- null commented on issue: [4637](https://github.com/hackforla/website/issues/4637#issuecomment-1624880385) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:26Z,- null commented on issue: [4635](https://github.com/hackforla/website/issues/4635#issuecomment-1624880497) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:29Z,- null commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1624880596) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:33Z,- null commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1624880712) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:37Z,- null commented on issue: [4628](https://github.com/hackforla/website/issues/4628#issuecomment-1624880830) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:41Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1624880942) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:44Z,- null commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1624881059) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:47Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1624881154) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:50Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1624881270) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:54Z,- null commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1624881374) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:21:57Z,- null commented on issue: [4617](https://github.com/hackforla/website/issues/4617#issuecomment-1624881481) at 2023-07-07 12:21 AM PDT -,2023-07-07T07:22:00Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1624881585) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:04Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1624881695) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:07Z,- null commented on issue: [4611](https://github.com/hackforla/website/issues/4611#issuecomment-1624881783) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:10Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1624881900) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:13Z,- null commented on issue: [4609](https://github.com/hackforla/website/issues/4609#issuecomment-1624881999) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:25Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1624882409) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:29Z,- null commented on issue: [4716](https://github.com/hackforla/website/issues/4716#issuecomment-1624882550) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:35Z,- null commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1624882750) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:39Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1624882894) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:42Z,- null commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1624883005) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:48Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1624883202) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:51Z,- null commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1624883343) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:22:56Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1624883487) at 2023-07-07 12:22 AM PDT -,2023-07-07T07:23:00Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1624883617) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:03Z,- null commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1624883730) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:25Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1624884389) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:28Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1624884496) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:31Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1624884603) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:35Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1624884708) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:38Z,- null commented on issue: [4717](https://github.com/hackforla/website/issues/4717#issuecomment-1624884810) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:42Z,- null commented on issue: [4712](https://github.com/hackforla/website/issues/4712#issuecomment-1624884904) at 2023-07-07 12:23 AM PDT -,2023-07-07T07:23:45Z,- null commented on issue: [4711](https://github.com/hackforla/website/issues/4711#issuecomment-1624885024) at 2023-07-07 12:23 AM PDT -,2023-07-07T08:12:38Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1624989568) at 2023-07-07 01:12 AM PDT -,2023-07-07T08:48:33Z,- null commented on issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1625074090) at 2023-07-07 01:48 AM PDT -,2023-07-07T11:23:18Z,- null commented on issue: [4887](https://github.com/hackforla/website/issues/4887#issuecomment-1625266724) at 2023-07-07 04:23 AM PDT -,2023-07-07T22:46:19Z,- null commented on issue: [4870](https://github.com/hackforla/website/issues/4870#issuecomment-1626337303) at 2023-07-07 03:46 PM PDT -,2023-07-08T05:39:50Z,- null commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1626872904) at 2023-07-07 10:39 PM PDT -,2023-07-10T06:15:32Z,- null commented on issue: [4815](https://github.com/hackforla/website/issues/4815#issuecomment-1628306841) at 2023-07-09 11:15 PM PDT -,2023-07-11T02:49:51Z,- null commented on issue: [4933](https://github.com/hackforla/website/issues/4933#issuecomment-1630024072) at 2023-07-10 07:49 PM PDT -,2023-07-11T02:52:25Z,- null commented on issue: [4934](https://github.com/hackforla/website/issues/4934#issuecomment-1630025710) at 2023-07-10 07:52 PM PDT -,2023-07-11T12:38:31Z,- null commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1630750076) at 2023-07-11 05:38 AM PDT -,2023-07-13T02:26:10Z,- null commented on issue: [4889](https://github.com/hackforla/website/issues/4889#issuecomment-1633445888) at 2023-07-12 07:26 PM PDT -,2023-07-13T02:48:29Z,- null commented on issue: [4943](https://github.com/hackforla/website/issues/4943#issuecomment-1633468284) at 2023-07-12 07:48 PM PDT -,2023-07-13T17:27:26Z,- null commented on issue: [4946](https://github.com/hackforla/website/issues/4946#issuecomment-1634630681) at 2023-07-13 10:27 AM PDT -,2023-07-14T07:18:29Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1635410763) at 2023-07-14 12:18 AM PDT -,2023-07-14T07:18:38Z,- null commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1635410902) at 2023-07-14 12:18 AM PDT -,2023-07-14T07:18:41Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1635410970) at 2023-07-14 12:18 AM PDT -,2023-07-14T07:18:45Z,- null commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1635411022) at 2023-07-14 12:18 AM PDT -,2023-07-14T07:18:50Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1635411120) at 2023-07-14 12:18 AM PDT -,2023-07-14T07:18:56Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1635411229) at 2023-07-14 12:18 AM PDT -,2023-07-14T07:18:59Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1635411285) at 2023-07-14 12:18 AM PDT -,2023-07-14T07:19:03Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1635411376) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:06Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1635411428) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:11Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1635411530) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:16Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1635411621) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:18Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1635411664) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:21Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1635411707) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:23Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1635411770) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:27Z,- null commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1635411830) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:30Z,- null commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1635411904) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:33Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1635411958) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:42Z,- null commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1635412147) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:48Z,- null commented on issue: [4615](https://github.com/hackforla/website/issues/4615#issuecomment-1635412283) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:51Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1635412335) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:56Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1635412428) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:19:58Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1635412474) at 2023-07-14 12:19 AM PDT -,2023-07-14T07:20:02Z,- null commented on issue: [4716](https://github.com/hackforla/website/issues/4716#issuecomment-1635412533) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:08Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1635412665) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:13Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1635412755) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:17Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1635412858) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:20Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1635412927) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:23Z,- null commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1635412987) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:26Z,- null commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1635413057) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:37Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1635413309) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:40Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1635413365) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:43Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1635413432) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:20:46Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1635413508) at 2023-07-14 12:20 AM PDT -,2023-07-14T07:21:03Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1635413871) at 2023-07-14 12:21 AM PDT -,2023-07-14T18:50:51Z,- null commented on issue: [3555](https://github.com/hackforla/website/issues/3555#issuecomment-1636271732) at 2023-07-14 11:50 AM PDT -,2023-07-16T11:09:28Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1637054782) at 2023-07-16 04:09 AM PDT -,2023-07-16T11:40:22Z,- null commented on issue: [4951](https://github.com/hackforla/website/issues/4951#issuecomment-1637061145) at 2023-07-16 04:40 AM PDT -,2023-07-16T17:29:37Z,- null commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1637145472) at 2023-07-16 10:29 AM PDT -,2023-07-17T22:21:39Z,- null commented on issue: [4963](https://github.com/hackforla/website/issues/4963#issuecomment-1638967935) at 2023-07-17 03:21 PM PDT -,2023-07-17T23:12:54Z,- null commented on issue: [4963](https://github.com/hackforla/website/issues/4963#issuecomment-1639014807) at 2023-07-17 04:12 PM PDT -,2023-07-18T02:28:14Z,- null commented on issue: [4995](https://github.com/hackforla/website/issues/4995#issuecomment-1639182431) at 2023-07-17 07:28 PM PDT -,2023-07-18T02:31:57Z,- null commented on issue: [4996](https://github.com/hackforla/website/issues/4996#issuecomment-1639185954) at 2023-07-17 07:31 PM PDT -,2023-07-18T02:34:23Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1639188615) at 2023-07-17 07:34 PM PDT -,2023-07-18T03:03:11Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1639237381) at 2023-07-17 08:03 PM PDT -,2023-07-18T03:08:20Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1639246093) at 2023-07-17 08:08 PM PDT -,2023-07-18T03:29:44Z,- null commented on issue: [5002](https://github.com/hackforla/website/issues/5002#issuecomment-1639286290) at 2023-07-17 08:29 PM PDT -,2023-07-18T06:00:28Z,- null commented on issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1639541664) at 2023-07-17 11:00 PM PDT -,2023-07-18T06:24:11Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1639574895) at 2023-07-17 11:24 PM PDT -,2023-07-18T06:27:50Z,- null commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1639581354) at 2023-07-17 11:27 PM PDT -,2023-07-18T06:46:33Z,- null commented on issue: [4955](https://github.com/hackforla/website/issues/4955#issuecomment-1639600080) at 2023-07-17 11:46 PM PDT -,2023-07-18T17:10:19Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1640634522) at 2023-07-18 10:10 AM PDT -,2023-07-18T20:01:43Z,- null commented on issue: [4504](https://github.com/hackforla/website/issues/4504#issuecomment-1640919474) at 2023-07-18 01:01 PM PDT -,2023-07-19T00:01:44Z,- null commented on issue: [4954](https://github.com/hackforla/website/issues/4954#issuecomment-1641143545) at 2023-07-18 05:01 PM PDT -,2023-07-19T00:19:09Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1641190379) at 2023-07-18 05:19 PM PDT -,2023-07-19T00:46:33Z,- null commented on issue: [5007](https://github.com/hackforla/website/issues/5007#issuecomment-1641207770) at 2023-07-18 05:46 PM PDT -,2023-07-19T03:53:22Z,- null commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1641374292) at 2023-07-18 08:53 PM PDT -,2023-07-19T04:12:04Z,- null commented on issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1641384961) at 2023-07-18 09:12 PM PDT -,2023-07-19T04:15:55Z,- null commented on issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1641387210) at 2023-07-18 09:15 PM PDT -,2023-07-19T04:18:56Z,- null commented on issue: [5010](https://github.com/hackforla/website/issues/5010#issuecomment-1641388707) at 2023-07-18 09:18 PM PDT -,2023-07-19T04:21:38Z,- null commented on issue: [5011](https://github.com/hackforla/website/issues/5011#issuecomment-1641390150) at 2023-07-18 09:21 PM PDT -,2023-07-19T04:23:52Z,- null commented on issue: [5012](https://github.com/hackforla/website/issues/5012#issuecomment-1641391242) at 2023-07-18 09:23 PM PDT -,2023-07-19T04:25:35Z,- null commented on issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1641392054) at 2023-07-18 09:25 PM PDT -,2023-07-19T04:27:12Z,- null commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1641392859) at 2023-07-18 09:27 PM PDT -,2023-07-19T04:28:36Z,- null commented on issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1641393562) at 2023-07-18 09:28 PM PDT -,2023-07-19T04:30:42Z,- null commented on issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1641394638) at 2023-07-18 09:30 PM PDT -,2023-07-19T04:32:04Z,- null commented on issue: [5017](https://github.com/hackforla/website/issues/5017#issuecomment-1641395420) at 2023-07-18 09:32 PM PDT -,2023-07-19T05:06:12Z,- null commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1641415741) at 2023-07-18 10:06 PM PDT -,2023-07-19T05:08:28Z,- null commented on issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1641417572) at 2023-07-18 10:08 PM PDT -,2023-07-19T05:15:06Z,- null commented on issue: [5020](https://github.com/hackforla/website/issues/5020#issuecomment-1641423041) at 2023-07-18 10:15 PM PDT -,2023-07-19T05:17:13Z,- null commented on issue: [5021](https://github.com/hackforla/website/issues/5021#issuecomment-1641424613) at 2023-07-18 10:17 PM PDT -,2023-07-19T05:18:31Z,- null commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1641426376) at 2023-07-18 10:18 PM PDT -,2023-07-19T05:28:57Z,- null commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1641437488) at 2023-07-18 10:28 PM PDT -,2023-07-19T06:50:08Z,- null commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1641514851) at 2023-07-18 11:50 PM PDT -,2023-07-19T07:38:27Z,- null commented on issue: [5021](https://github.com/hackforla/website/issues/5021#issuecomment-1641577555) at 2023-07-19 12:38 AM PDT -,2023-07-19T12:03:00Z,- null commented on issue: [5033](https://github.com/hackforla/website/issues/5033#issuecomment-1641958771) at 2023-07-19 05:03 AM PDT -,2023-07-20T00:41:24Z,- null commented on issue: [4920](https://github.com/hackforla/website/issues/4920#issuecomment-1642942408) at 2023-07-19 05:41 PM PDT -,2023-07-20T02:07:30Z,- null commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1642999943) at 2023-07-19 07:07 PM PDT -,2023-07-20T08:28:16Z,- null commented on issue: [5010](https://github.com/hackforla/website/issues/5010#issuecomment-1643500137) at 2023-07-20 01:28 AM PDT -,2023-07-20T17:02:53Z,- null commented on issue: [4777](https://github.com/hackforla/website/issues/4777#issuecomment-1644278335) at 2023-07-20 10:02 AM PDT -,2023-07-20T21:40:26Z,- null commented on issue: [5027](https://github.com/hackforla/website/issues/5027#issuecomment-1644641959) at 2023-07-20 02:40 PM PDT -,2023-07-20T22:06:19Z,- null commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1644675439) at 2023-07-20 03:06 PM PDT -,2023-07-21T02:36:04Z,- null commented on issue: [5042](https://github.com/hackforla/website/issues/5042#issuecomment-1644904938) at 2023-07-20 07:36 PM PDT -,2023-07-21T07:16:20Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1645093256) at 2023-07-21 12:16 AM PDT -,2023-07-21T07:16:28Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1645093396) at 2023-07-21 12:16 AM PDT -,2023-07-21T07:16:40Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1645093585) at 2023-07-21 12:16 AM PDT -,2023-07-21T07:16:47Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1645093708) at 2023-07-21 12:16 AM PDT -,2023-07-21T07:16:57Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1645093875) at 2023-07-21 12:16 AM PDT -,2023-07-21T07:17:06Z,- null commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1645094012) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:10Z,- null commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1645094078) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:13Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1645094144) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:16Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1645094197) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:19Z,- null commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1645094263) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:23Z,- null commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1645094320) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:28Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1645094402) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:31Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1645094465) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:38Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1645094579) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:41Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1645094628) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:47Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1645094735) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:54Z,- null commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1645094841) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:17:58Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1645094924) at 2023-07-21 12:17 AM PDT -,2023-07-21T07:18:01Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1645095047) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:04Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1645095148) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:08Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1645095275) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:13Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1645095465) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:18Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1645095671) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:23Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1645095848) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:28Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1645096030) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:31Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1645096143) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:36Z,- null commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1645096327) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:47Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1645096820) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:50Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1645096960) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:53Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1645097055) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:56Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1645097153) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:18:59Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1645097267) at 2023-07-21 12:18 AM PDT -,2023-07-21T07:19:04Z,- null commented on issue: [4815](https://github.com/hackforla/website/issues/4815#issuecomment-1645097438) at 2023-07-21 12:19 AM PDT -,2023-07-21T07:19:09Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1645097663) at 2023-07-21 12:19 AM PDT -,2023-07-21T08:32:36Z,- null commented on issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1645214286) at 2023-07-21 01:32 AM PDT -,2023-07-21T16:58:55Z,- null commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1645994503) at 2023-07-21 09:58 AM PDT -,2023-07-21T20:56:31Z,- null commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646231250) at 2023-07-21 01:56 PM PDT -,2023-07-22T02:23:42Z,- null commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1646393029) at 2023-07-21 07:23 PM PDT -,2023-07-22T16:06:06Z,- null commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617670) at 2023-07-22 09:06 AM PDT -,2023-07-23T09:24:07Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1646791451) at 2023-07-23 02:24 AM PDT -,2023-07-23T17:01:47Z,- null commented on issue: [4948](https://github.com/hackforla/website/issues/4948#issuecomment-1646891594) at 2023-07-23 10:01 AM PDT -,2023-07-24T03:53:13Z,- null commented on issue: [4939](https://github.com/hackforla/website/issues/4939#issuecomment-1647158406) at 2023-07-23 08:53 PM PDT -,2023-07-24T17:12:17Z,- null commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1648292268) at 2023-07-24 10:12 AM PDT -,2023-07-24T20:37:24Z,- null commented on issue: [5038](https://github.com/hackforla/website/issues/5038#issuecomment-1648568037) at 2023-07-24 01:37 PM PDT -,2023-07-24T21:44:35Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1648670533) at 2023-07-24 02:44 PM PDT -,2023-07-24T22:33:12Z,- null commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1648714460) at 2023-07-24 03:33 PM PDT -,2023-07-25T19:55:13Z,- null commented on issue: [4809](https://github.com/hackforla/website/issues/4809#issuecomment-1650451000) at 2023-07-25 12:55 PM PDT -,2023-07-25T22:21:47Z,- null commented on issue: [4813](https://github.com/hackforla/website/issues/4813#issuecomment-1650641616) at 2023-07-25 03:21 PM PDT -,2023-07-25T22:53:12Z,- null commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1650672405) at 2023-07-25 03:53 PM PDT -,2023-07-26T02:22:31Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1650873771) at 2023-07-25 07:22 PM PDT -,2023-07-26T02:54:32Z,- null commented on issue: [4798](https://github.com/hackforla/website/issues/4798#issuecomment-1650897016) at 2023-07-25 07:54 PM PDT -,2023-07-26T02:56:03Z,- null commented on issue: [5064](https://github.com/hackforla/website/issues/5064#issuecomment-1650898214) at 2023-07-25 07:56 PM PDT -,2023-07-26T02:56:05Z,- null commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1650898228) at 2023-07-25 07:56 PM PDT -,2023-07-26T02:56:09Z,- null commented on issue: [5066](https://github.com/hackforla/website/issues/5066#issuecomment-1650898288) at 2023-07-25 07:56 PM PDT -,2023-07-26T02:58:23Z,- null commented on issue: [5067](https://github.com/hackforla/website/issues/5067#issuecomment-1650900048) at 2023-07-25 07:58 PM PDT -,2023-07-26T02:59:21Z,- null commented on issue: [5068](https://github.com/hackforla/website/issues/5068#issuecomment-1650900943) at 2023-07-25 07:59 PM PDT -,2023-07-26T02:59:40Z,- null commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1650901198) at 2023-07-25 07:59 PM PDT -,2023-07-26T02:59:40Z,- null commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1650901194) at 2023-07-25 07:59 PM PDT -,2023-07-26T02:59:55Z,- null commented on issue: [5070](https://github.com/hackforla/website/issues/5070#issuecomment-1650901433) at 2023-07-25 07:59 PM PDT -,2023-07-26T03:00:36Z,- null commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1650902012) at 2023-07-25 08:00 PM PDT -,2023-07-26T03:00:49Z,- null commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1650902165) at 2023-07-25 08:00 PM PDT -,2023-07-26T03:00:58Z,- null commented on issue: [5072](https://github.com/hackforla/website/issues/5072#issuecomment-1650902295) at 2023-07-25 08:00 PM PDT -,2023-07-26T03:01:53Z,- null commented on issue: [5074](https://github.com/hackforla/website/issues/5074#issuecomment-1650903149) at 2023-07-25 08:01 PM PDT -,2023-07-26T03:02:06Z,- null commented on issue: [5075](https://github.com/hackforla/website/issues/5075#issuecomment-1650903311) at 2023-07-25 08:02 PM PDT -,2023-07-26T03:04:38Z,- null commented on issue: [5076](https://github.com/hackforla/website/issues/5076#issuecomment-1650905245) at 2023-07-25 08:04 PM PDT -,2023-07-26T03:04:47Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1650905381) at 2023-07-25 08:04 PM PDT -,2023-07-26T03:05:59Z,- null commented on issue: [5079](https://github.com/hackforla/website/issues/5079#issuecomment-1650906278) at 2023-07-25 08:05 PM PDT -,2023-07-26T03:07:43Z,- null commented on issue: [5081](https://github.com/hackforla/website/issues/5081#issuecomment-1650907456) at 2023-07-25 08:07 PM PDT -,2023-07-26T03:09:07Z,- null commented on issue: [5082](https://github.com/hackforla/website/issues/5082#issuecomment-1650908352) at 2023-07-25 08:09 PM PDT -,2023-07-26T03:12:21Z,- null commented on issue: [5084](https://github.com/hackforla/website/issues/5084#issuecomment-1650910599) at 2023-07-25 08:12 PM PDT -,2023-07-26T03:13:31Z,- null commented on issue: [5085](https://github.com/hackforla/website/issues/5085#issuecomment-1650911430) at 2023-07-25 08:13 PM PDT -,2023-07-26T03:13:32Z,- null commented on issue: [5085](https://github.com/hackforla/website/issues/5085#issuecomment-1650911444) at 2023-07-25 08:13 PM PDT -,2023-07-26T03:22:06Z,- null commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1650917830) at 2023-07-25 08:22 PM PDT -,2023-07-26T03:22:09Z,- null commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1650917863) at 2023-07-25 08:22 PM PDT -,2023-07-26T03:46:48Z,- null commented on issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1650934094) at 2023-07-25 08:46 PM PDT -,2023-07-26T03:48:02Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1650934855) at 2023-07-25 08:48 PM PDT -,2023-07-26T04:04:34Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1650946546) at 2023-07-25 09:04 PM PDT -,2023-07-26T04:25:12Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1650959783) at 2023-07-25 09:25 PM PDT -,2023-07-26T12:07:14Z,- null commented on issue: [4917](https://github.com/hackforla/website/issues/4917#issuecomment-1651677566) at 2023-07-26 05:07 AM PDT -,2023-07-26T17:29:06Z,- null commented on issue: [4811](https://github.com/hackforla/website/issues/4811#issuecomment-1652225284) at 2023-07-26 10:29 AM PDT -,2023-07-26T20:38:14Z,- null commented on issue: [4802](https://github.com/hackforla/website/issues/4802#issuecomment-1652460305) at 2023-07-26 01:38 PM PDT -,2023-07-26T20:40:42Z,- null commented on issue: [4807](https://github.com/hackforla/website/issues/4807#issuecomment-1652463443) at 2023-07-26 01:40 PM PDT -,2023-07-26T22:01:55Z,- null commented on issue: [4806](https://github.com/hackforla/website/issues/4806#issuecomment-1652557564) at 2023-07-26 03:01 PM PDT -,2023-07-27T05:46:33Z,- null commented on issue: [4869](https://github.com/hackforla/website/issues/4869#issuecomment-1652949308) at 2023-07-26 10:46 PM PDT -,2023-07-27T06:20:04Z,- null commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1652978683) at 2023-07-26 11:20 PM PDT -,2023-07-27T06:23:28Z,- null commented on issue: [5100](https://github.com/hackforla/website/issues/5100#issuecomment-1652982433) at 2023-07-26 11:23 PM PDT -,2023-07-27T07:24:44Z,- null commented on issue: [5102](https://github.com/hackforla/website/issues/5102#issuecomment-1653049187) at 2023-07-27 12:24 AM PDT -,2023-07-27T10:00:02Z,- null commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1653295749) at 2023-07-27 03:00 AM PDT -,2023-07-27T16:52:18Z,- null commented on issue: [4810](https://github.com/hackforla/website/issues/4810#issuecomment-1653991977) at 2023-07-27 09:52 AM PDT -,2023-07-27T20:36:14Z,- null commented on issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1654533533) at 2023-07-27 01:36 PM PDT -,2023-07-27T23:14:24Z,- null commented on issue: [5032](https://github.com/hackforla/website/issues/5032#issuecomment-1654729477) at 2023-07-27 04:14 PM PDT -,2023-07-27T23:29:37Z,- null commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1654753274) at 2023-07-27 04:29 PM PDT -,2023-07-28T00:51:52Z,- null commented on issue: [4805](https://github.com/hackforla/website/issues/4805#issuecomment-1654817480) at 2023-07-27 05:51 PM PDT -,2023-07-28T00:56:03Z,- null commented on issue: [4799](https://github.com/hackforla/website/issues/4799#issuecomment-1654820277) at 2023-07-27 05:56 PM PDT -,2023-07-28T07:15:55Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1655170522) at 2023-07-28 12:15 AM PDT -,2023-07-28T07:16:06Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1655170933) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:12Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1655171143) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:14Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1655171239) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:20Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1655171447) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:24Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1655171571) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:26Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1655171654) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:29Z,- null commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1655171768) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:37Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1655172059) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:39Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1655172160) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:42Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1655172258) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:45Z,- null commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1655172366) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:47Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1655172469) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:54Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1655172710) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:16:58Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1655172892) at 2023-07-28 12:16 AM PDT -,2023-07-28T07:17:01Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1655172979) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:03Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1655173086) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:06Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1655173172) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:08Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1655173274) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:13Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1655173480) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:17Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1655173624) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:19Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1655173703) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:26Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1655173958) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:29Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1655174074) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:32Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1655174155) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:35Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1655174254) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:38Z,- null commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1655174361) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:40Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1655174456) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:44Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1655174618) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:48Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1655174756) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:50Z,- null commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1655174837) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:53Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1655174951) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:56Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1655175047) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:17:59Z,- null commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1655175185) at 2023-07-28 12:17 AM PDT -,2023-07-28T07:18:01Z,- null commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1655175280) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:05Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1655175349) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:08Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1655175425) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:12Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1655175490) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:15Z,- null commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1655175552) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:18Z,- null commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1655175612) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:21Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1655175696) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:24Z,- null commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1655175762) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:27Z,- null commented on issue: [4966](https://github.com/hackforla/website/issues/4966#issuecomment-1655175814) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:29Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1655175852) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:32Z,- null commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1655175895) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:18:37Z,- null commented on issue: [5042](https://github.com/hackforla/website/issues/5042#issuecomment-1655175994) at 2023-07-28 12:18 AM PDT -,2023-07-28T07:19:07Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1655176559) at 2023-07-28 12:19 AM PDT -,2023-07-28T07:19:12Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1655176653) at 2023-07-28 12:19 AM PDT -,2023-07-28T07:19:16Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1655176731) at 2023-07-28 12:19 AM PDT -,2023-07-28T17:55:58Z,- null commented on issue: [4800](https://github.com/hackforla/website/issues/4800#issuecomment-1656108980) at 2023-07-28 10:55 AM PDT -,2023-07-28T18:18:56Z,- null commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1656139962) at 2023-07-28 11:18 AM PDT -,2023-07-28T20:53:24Z,- null commented on issue: [4913](https://github.com/hackforla/website/issues/4913#issuecomment-1656324301) at 2023-07-28 01:53 PM PDT -,2023-07-28T21:36:53Z,- null commented on issue: [4803](https://github.com/hackforla/website/issues/4803#issuecomment-1656358201) at 2023-07-28 02:36 PM PDT -,2023-07-28T21:49:48Z,- null commented on issue: [4814](https://github.com/hackforla/website/issues/4814#issuecomment-1656367031) at 2023-07-28 02:49 PM PDT -,2023-07-28T22:56:41Z,- null commented on issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1656418240) at 2023-07-28 03:56 PM PDT -,2023-07-29T19:29:24Z,- null commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1656849978) at 2023-07-29 12:29 PM PDT -,2023-07-30T09:23:38Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1657089438) at 2023-07-30 02:23 AM PDT -,2023-07-30T09:57:58Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1657096081) at 2023-07-30 02:57 AM PDT -,2023-07-30T17:47:10Z,- null commented on issue: [5029](https://github.com/hackforla/website/issues/5029#issuecomment-1657229218) at 2023-07-30 10:47 AM PDT -,2023-07-30T17:48:11Z,- null commented on issue: [5029](https://github.com/hackforla/website/issues/5029#issuecomment-1657229392) at 2023-07-30 10:48 AM PDT -,2023-07-30T21:46:50Z,- null commented on issue: [5101](https://github.com/hackforla/website/issues/5101#issuecomment-1657273644) at 2023-07-30 02:46 PM PDT -,2023-07-31T01:31:25Z,- null commented on issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1657364305) at 2023-07-30 06:31 PM PDT -,2023-07-31T19:17:49Z,- null commented on issue: [4804](https://github.com/hackforla/website/issues/4804#issuecomment-1658993150) at 2023-07-31 12:17 PM PDT -,2023-07-31T19:34:52Z,- null commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659014151) at 2023-07-31 12:34 PM PDT -,2023-07-31T23:14:01Z,- null commented on issue: [4801](https://github.com/hackforla/website/issues/4801#issuecomment-1659328017) at 2023-07-31 04:14 PM PDT -,2023-08-01T01:01:13Z,- null commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659410160) at 2023-07-31 06:01 PM PDT -,2023-08-01T01:05:25Z,- null commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1659412898) at 2023-07-31 06:05 PM PDT -,2023-08-01T08:01:43Z,- null commented on issue: [5126](https://github.com/hackforla/website/issues/5126#issuecomment-1659775318) at 2023-08-01 01:01 AM PDT -,2023-08-01T09:40:13Z,- null commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1659951267) at 2023-08-01 02:40 AM PDT -,2023-08-01T15:41:36Z,- null commented on issue: [5041](https://github.com/hackforla/website/issues/5041#issuecomment-1660581944) at 2023-08-01 08:41 AM PDT -,2023-08-02T01:48:51Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1661362781) at 2023-08-01 06:48 PM PDT -,2023-08-02T17:02:20Z,- null commented on issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1662605571) at 2023-08-02 10:02 AM PDT -,2023-08-02T19:29:41Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1662858064) at 2023-08-02 12:29 PM PDT -,2023-08-02T23:47:32Z,- null commented on issue: [4884](https://github.com/hackforla/website/issues/4884#issuecomment-1663104337) at 2023-08-02 04:47 PM PDT -,2023-08-03T04:00:58Z,- null commented on issue: [4957](https://github.com/hackforla/website/issues/4957#issuecomment-1663257011) at 2023-08-02 09:00 PM PDT -,2023-08-03T06:13:48Z,- null commented on issue: [4885](https://github.com/hackforla/website/issues/4885#issuecomment-1663348814) at 2023-08-02 11:13 PM PDT -,2023-08-04T05:28:16Z,- null commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665033143) at 2023-08-03 10:28 PM PDT -,2023-08-04T07:06:00Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1665114122) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:08Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1665114282) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:20Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1665114494) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:26Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1665114622) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:31Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1665114750) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:37Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1665114880) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:40Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1665114931) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:43Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1665114978) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:49Z,- null commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1665115085) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:53Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1665115164) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:06:56Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1665115209) at 2023-08-04 12:06 AM PDT -,2023-08-04T07:07:00Z,- null commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1665115274) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:13Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1665115476) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:21Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1665115628) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:25Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1665115673) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:27Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1665115725) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:36Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1665115867) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:39Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1665115922) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:45Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1665116019) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:50Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1665116093) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:07:52Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1665116131) at 2023-08-04 12:07 AM PDT -,2023-08-04T07:08:02Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1665116300) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:05Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1665116345) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:08Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1665116398) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:11Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1665116456) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:19Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1665116598) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:27Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1665116731) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:31Z,- null commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1665116779) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:35Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1665116843) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:39Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1665116900) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:41Z,- null commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1665116950) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:47Z,- null commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1665117029) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:50Z,- null commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-1665117082) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:53Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1665117133) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:08:57Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1665117191) at 2023-08-04 12:08 AM PDT -,2023-08-04T07:09:00Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1665117255) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:09Z,- null commented on issue: [4971](https://github.com/hackforla/website/issues/4971#issuecomment-1665117389) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:12Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1665117458) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:15Z,- null commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1665117513) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:21Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1665117605) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:25Z,- null commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1665117674) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:32Z,- null commented on issue: [5042](https://github.com/hackforla/website/issues/5042#issuecomment-1665117781) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:42Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1665117962) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:48Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1665118089) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:53Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1665118170) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:09:56Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1665118243) at 2023-08-04 12:09 AM PDT -,2023-08-04T07:10:00Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1665118307) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:03Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1665118356) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:07Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1665118426) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:10Z,- null commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1665118482) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:14Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1665118537) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:17Z,- null commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1665118602) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:21Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1665118673) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:24Z,- null commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1665118729) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:29Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1665118814) at 2023-08-04 12:10 AM PDT -,2023-08-04T07:10:47Z,- null commented on issue: [4799](https://github.com/hackforla/website/issues/4799#issuecomment-1665119103) at 2023-08-04 12:10 AM PDT -,2023-08-04T18:51:41Z,- null commented on issue: [5136](https://github.com/hackforla/website/issues/5136#issuecomment-1666042255) at 2023-08-04 11:51 AM PDT -,2023-08-04T19:20:47Z,- null commented on issue: [5139](https://github.com/hackforla/website/issues/5139#issuecomment-1666069174) at 2023-08-04 12:20 PM PDT -,2023-08-04T19:46:49Z,- null commented on issue: [5137](https://github.com/hackforla/website/issues/5137#issuecomment-1666093025) at 2023-08-04 12:46 PM PDT -,2023-08-05T02:12:42Z,- null commented on issue: [5138](https://github.com/hackforla/website/issues/5138#issuecomment-1666351856) at 2023-08-04 07:12 PM PDT -,2023-08-06T04:25:19Z,- null commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1666709039) at 2023-08-05 09:25 PM PDT -,2023-08-06T06:31:48Z,- null commented on issue: [4955](https://github.com/hackforla/website/issues/4955#issuecomment-1666740984) at 2023-08-05 11:31 PM PDT -,2023-08-06T06:47:42Z,- null commented on issue: [4956](https://github.com/hackforla/website/issues/4956#issuecomment-1666744719) at 2023-08-05 11:47 PM PDT -,2023-08-06T07:03:41Z,- null commented on issue: [5102](https://github.com/hackforla/website/issues/5102#issuecomment-1666749117) at 2023-08-06 12:03 AM PDT -,2023-08-06T08:36:47Z,- null commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1666775308) at 2023-08-06 01:36 AM PDT -,2023-08-06T09:09:42Z,- null commented on issue: [5147](https://github.com/hackforla/website/issues/5147#issuecomment-1666784480) at 2023-08-06 02:09 AM PDT -,2023-08-06T09:10:48Z,- null commented on issue: [5148](https://github.com/hackforla/website/issues/5148#issuecomment-1666784833) at 2023-08-06 02:10 AM PDT -,2023-08-06T09:11:34Z,- null commented on issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1666785047) at 2023-08-06 02:11 AM PDT -,2023-08-06T09:12:11Z,- null commented on issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1666785228) at 2023-08-06 02:12 AM PDT -,2023-08-06T15:36:30Z,- null commented on issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1666898471) at 2023-08-06 08:36 AM PDT -,2023-08-06T15:50:02Z,- null commented on issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1666902237) at 2023-08-06 08:50 AM PDT -,2023-08-06T16:56:57Z,- null commented on issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666919864) at 2023-08-06 09:56 AM PDT -,2023-08-06T21:04:46Z,- null commented on issue: [5019](https://github.com/hackforla/website/issues/5019#issuecomment-1666967589) at 2023-08-06 02:04 PM PDT -,2023-08-07T05:24:13Z,- null commented on issue: [5057](https://github.com/hackforla/website/issues/5057#issuecomment-1667205318) at 2023-08-06 10:24 PM PDT -,2023-08-07T17:31:05Z,- null commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1668304593) at 2023-08-07 10:31 AM PDT -,2023-08-07T22:00:38Z,- null commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1668633227) at 2023-08-07 03:00 PM PDT -,2023-08-07T22:52:30Z,- null commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1668674839) at 2023-08-07 03:52 PM PDT -,2023-08-07T23:58:55Z,- null commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1668721077) at 2023-08-07 04:58 PM PDT -,2023-08-08T14:53:28Z,- null commented on issue: [5011](https://github.com/hackforla/website/issues/5011#issuecomment-1669777263) at 2023-08-08 07:53 AM PDT -,2023-08-08T17:07:11Z,- null commented on issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1669996130) at 2023-08-08 10:07 AM PDT -,2023-08-08T19:03:06Z,- null commented on issue: [5020](https://github.com/hackforla/website/issues/5020#issuecomment-1670141580) at 2023-08-08 12:03 PM PDT -,2023-08-09T04:39:32Z,- null commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1670640043) at 2023-08-08 09:39 PM PDT -,2023-08-09T17:37:23Z,- null commented on issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1671865434) at 2023-08-09 10:37 AM PDT -,2023-08-09T23:23:19Z,- null commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1672306690) at 2023-08-09 04:23 PM PDT -,2023-08-09T23:23:58Z,- null commented on issue: [5172](https://github.com/hackforla/website/issues/5172#issuecomment-1672307900) at 2023-08-09 04:23 PM PDT -,2023-08-09T23:24:35Z,- null commented on issue: [5173](https://github.com/hackforla/website/issues/5173#issuecomment-1672309620) at 2023-08-09 04:24 PM PDT -,2023-08-09T23:24:57Z,- null commented on issue: [5174](https://github.com/hackforla/website/issues/5174#issuecomment-1672310505) at 2023-08-09 04:24 PM PDT -,2023-08-09T23:25:19Z,- null commented on issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1672310915) at 2023-08-09 04:25 PM PDT -,2023-08-09T23:25:40Z,- null commented on issue: [5176](https://github.com/hackforla/website/issues/5176#issuecomment-1672311176) at 2023-08-09 04:25 PM PDT -,2023-08-09T23:25:54Z,- null commented on issue: [5177](https://github.com/hackforla/website/issues/5177#issuecomment-1672311361) at 2023-08-09 04:25 PM PDT -,2023-08-09T23:26:16Z,- null commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1672311617) at 2023-08-09 04:26 PM PDT -,2023-08-09T23:26:36Z,- null commented on issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1672311814) at 2023-08-09 04:26 PM PDT -,2023-08-10T18:32:30Z,- null commented on issue: [5017](https://github.com/hackforla/website/issues/5017#issuecomment-1673711204) at 2023-08-10 11:32 AM PDT -,2023-08-10T19:28:40Z,- null commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1673790807) at 2023-08-10 12:28 PM PDT -,2023-08-11T07:06:25Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1674297155) at 2023-08-11 12:06 AM PDT -,2023-08-11T07:06:28Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1674297196) at 2023-08-11 12:06 AM PDT -,2023-08-11T07:06:37Z,- null commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1674297327) at 2023-08-11 12:06 AM PDT -,2023-08-11T07:06:42Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1674297405) at 2023-08-11 12:06 AM PDT -,2023-08-11T07:06:45Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1674297436) at 2023-08-11 12:06 AM PDT -,2023-08-11T07:06:52Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1674297540) at 2023-08-11 12:06 AM PDT -,2023-08-11T07:06:54Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1674297572) at 2023-08-11 12:06 AM PDT -,2023-08-11T07:07:00Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1674297667) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:03Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1674297713) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:05Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1674297771) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:11Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1674297951) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:14Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1674297990) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:16Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1674298019) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:18Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1674298051) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:21Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1674298078) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:23Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1674298106) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:25Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1674298140) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:29Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1674298203) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:33Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1674298251) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:35Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1674298282) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:42Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1674298384) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:46Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1674298443) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:48Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1674298480) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:50Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1674298520) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:53Z,- null commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1674298573) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:07:55Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1674298607) at 2023-08-11 12:07 AM PDT -,2023-08-11T07:08:00Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1674298686) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:02Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1674298717) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:06Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1674298784) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:08Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1674298812) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:11Z,- null commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1674298847) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:15Z,- null commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1674298913) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:17Z,- null commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1674298947) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:19Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1674298982) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:21Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1674299020) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:24Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1674299056) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:27Z,- null commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1674299106) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:32Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1674299167) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:35Z,- null commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1674299200) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:37Z,- null commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1674299241) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:39Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1674299269) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:42Z,- null commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1674299301) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:44Z,- null commented on issue: [5042](https://github.com/hackforla/website/issues/5042#issuecomment-1674299331) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:54Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1674299483) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:56Z,- null commented on issue: [5092](https://github.com/hackforla/website/issues/5092#issuecomment-1674299517) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:08:59Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1674299554) at 2023-08-11 12:08 AM PDT -,2023-08-11T07:09:02Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1674299595) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:08Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1674299676) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:11Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1674299721) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:14Z,- null commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1674299761) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:16Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1674299791) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:19Z,- null commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1674299822) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:21Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1674299845) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:23Z,- null commented on issue: [4810](https://github.com/hackforla/website/issues/4810#issuecomment-1674299877) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:25Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1674299912) at 2023-08-11 12:09 AM PDT -,2023-08-11T07:09:30Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1674299995) at 2023-08-11 12:09 AM PDT -,2023-08-11T17:26:06Z,- null commented on issue: [5012](https://github.com/hackforla/website/issues/5012#issuecomment-1675137427) at 2023-08-11 10:26 AM PDT -,2023-08-11T23:25:36Z,- null commented on issue: [5184](https://github.com/hackforla/website/issues/5184#issuecomment-1675513783) at 2023-08-11 04:25 PM PDT -,2023-08-11T23:26:15Z,- null commented on issue: [5185](https://github.com/hackforla/website/issues/5185#issuecomment-1675514515) at 2023-08-11 04:26 PM PDT -,2023-08-11T23:40:57Z,- null commented on issue: [5186](https://github.com/hackforla/website/issues/5186#issuecomment-1675531562) at 2023-08-11 04:40 PM PDT -,2023-08-11T23:41:29Z,- null commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1675532156) at 2023-08-11 04:41 PM PDT -,2023-08-12T01:28:27Z,- null commented on issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1675598416) at 2023-08-11 06:28 PM PDT -,2023-08-12T01:29:16Z,- null commented on issue: [5189](https://github.com/hackforla/website/issues/5189#issuecomment-1675598633) at 2023-08-11 06:29 PM PDT -,2023-08-12T01:45:55Z,- null commented on issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1675606846) at 2023-08-11 06:45 PM PDT -,2023-08-12T09:30:09Z,- null commented on issue: [5100](https://github.com/hackforla/website/issues/5100#issuecomment-1675812797) at 2023-08-12 02:30 AM PDT -,2023-08-13T17:14:23Z,- null commented on issue: [5191](https://github.com/hackforla/website/issues/5191#issuecomment-1676415923) at 2023-08-13 10:14 AM PDT -,2023-08-13T21:53:09Z,- null commented on issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1676471937) at 2023-08-13 02:53 PM PDT -,2023-08-13T22:46:32Z,- null commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1676483854) at 2023-08-13 03:46 PM PDT -,2023-08-14T08:51:35Z,- null commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1676936680) at 2023-08-14 01:51 AM PDT -,2023-08-14T18:57:34Z,- null commented on issue: [5197](https://github.com/hackforla/website/issues/5197#issuecomment-1677898874) at 2023-08-14 11:57 AM PDT -,2023-08-14T18:57:39Z,- null commented on issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1677898989) at 2023-08-14 11:57 AM PDT -,2023-08-14T19:10:02Z,- null commented on issue: [5200](https://github.com/hackforla/website/issues/5200#issuecomment-1677914149) at 2023-08-14 12:10 PM PDT -,2023-08-14T19:10:06Z,- null commented on issue: [5199](https://github.com/hackforla/website/issues/5199#issuecomment-1677914216) at 2023-08-14 12:10 PM PDT -,2023-08-14T19:19:28Z,- null commented on issue: [5201](https://github.com/hackforla/website/issues/5201#issuecomment-1677926943) at 2023-08-14 12:19 PM PDT -,2023-08-14T23:48:54Z,- null commented on issue: [5202](https://github.com/hackforla/website/issues/5202#issuecomment-1678238597) at 2023-08-14 04:48 PM PDT -,2023-08-15T02:01:45Z,- null commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1678324022) at 2023-08-14 07:01 PM PDT -,2023-08-15T02:16:50Z,- null commented on issue: [5206](https://github.com/hackforla/website/issues/5206#issuecomment-1678334762) at 2023-08-14 07:16 PM PDT -,2023-08-15T02:26:33Z,- null commented on issue: [5206](https://github.com/hackforla/website/issues/5206#issuecomment-1678341411) at 2023-08-14 07:26 PM PDT -,2023-08-15T02:38:45Z,- null commented on issue: [5208](https://github.com/hackforla/website/issues/5208#issuecomment-1678348836) at 2023-08-14 07:38 PM PDT -,2023-08-15T02:40:53Z,- null commented on issue: [5209](https://github.com/hackforla/website/issues/5209#issuecomment-1678350001) at 2023-08-14 07:40 PM PDT -,2023-08-15T02:41:29Z,- null commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1678350323) at 2023-08-14 07:41 PM PDT -,2023-08-15T02:43:10Z,- null commented on issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1678351151) at 2023-08-14 07:43 PM PDT -,2023-08-15T02:44:49Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1678351933) at 2023-08-14 07:44 PM PDT -,2023-08-15T02:50:11Z,- null commented on issue: [5213](https://github.com/hackforla/website/issues/5213#issuecomment-1678354563) at 2023-08-14 07:50 PM PDT -,2023-08-15T02:58:22Z,- null commented on issue: [5214](https://github.com/hackforla/website/issues/5214#issuecomment-1678358619) at 2023-08-14 07:58 PM PDT -,2023-08-15T02:58:24Z,- null commented on issue: [5214](https://github.com/hackforla/website/issues/5214#issuecomment-1678358647) at 2023-08-14 07:58 PM PDT -,2023-08-15T02:58:27Z,- null commented on issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1678358674) at 2023-08-14 07:58 PM PDT -,2023-08-15T03:00:22Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1678359673) at 2023-08-14 08:00 PM PDT -,2023-08-15T03:00:24Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1678359692) at 2023-08-14 08:00 PM PDT -,2023-08-15T03:00:54Z,- null commented on issue: [5217](https://github.com/hackforla/website/issues/5217#issuecomment-1678359990) at 2023-08-14 08:00 PM PDT -,2023-08-15T03:01:42Z,- null commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1678360414) at 2023-08-14 08:01 PM PDT -,2023-08-15T03:03:04Z,- null commented on issue: [5220](https://github.com/hackforla/website/issues/5220#issuecomment-1678361128) at 2023-08-14 08:03 PM PDT -,2023-08-15T03:03:08Z,- null commented on issue: [5220](https://github.com/hackforla/website/issues/5220#issuecomment-1678361168) at 2023-08-14 08:03 PM PDT -,2023-08-15T03:03:36Z,- null commented on issue: [5221](https://github.com/hackforla/website/issues/5221#issuecomment-1678361403) at 2023-08-14 08:03 PM PDT -,2023-08-15T03:05:01Z,- null commented on issue: [5222](https://github.com/hackforla/website/issues/5222#issuecomment-1678362152) at 2023-08-14 08:05 PM PDT -,2023-08-15T03:15:20Z,- null commented on issue: [5223](https://github.com/hackforla/website/issues/5223#issuecomment-1678367782) at 2023-08-14 08:15 PM PDT -,2023-08-15T03:15:24Z,- null commented on issue: [5223](https://github.com/hackforla/website/issues/5223#issuecomment-1678367815) at 2023-08-14 08:15 PM PDT -,2023-08-15T03:39:07Z,- null commented on issue: [5225](https://github.com/hackforla/website/issues/5225#issuecomment-1678382440) at 2023-08-14 08:39 PM PDT -,2023-08-15T03:43:27Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1678385410) at 2023-08-14 08:43 PM PDT -,2023-08-15T03:45:40Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1678386798) at 2023-08-14 08:45 PM PDT -,2023-08-15T03:45:48Z,- null commented on issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1678386894) at 2023-08-14 08:45 PM PDT -,2023-08-15T03:49:55Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1678389508) at 2023-08-14 08:49 PM PDT -,2023-08-15T03:50:00Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1678389556) at 2023-08-14 08:50 PM PDT -,2023-08-15T03:56:56Z,- null commented on issue: [5230](https://github.com/hackforla/website/issues/5230#issuecomment-1678394133) at 2023-08-14 08:56 PM PDT -,2023-08-15T04:24:52Z,- null commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-1678411230) at 2023-08-14 09:24 PM PDT -,2023-08-15T06:22:15Z,- null commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1678478343) at 2023-08-14 11:22 PM PDT -,2023-08-15T22:36:14Z,- null commented on issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1679717717) at 2023-08-15 03:36 PM PDT -,2023-08-15T22:58:14Z,- null commented on issue: [5140](https://github.com/hackforla/website/issues/5140#issuecomment-1679734662) at 2023-08-15 03:58 PM PDT -,2023-08-16T08:05:59Z,- null commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1680151784) at 2023-08-16 01:05 AM PDT -,2023-08-16T16:32:53Z,- null commented on issue: [5200](https://github.com/hackforla/website/issues/5200#issuecomment-1680926292) at 2023-08-16 09:32 AM PDT -,2023-08-16T18:29:50Z,- null commented on issue: [5201](https://github.com/hackforla/website/issues/5201#issuecomment-1681089712) at 2023-08-16 11:29 AM PDT -,2023-08-16T19:14:56Z,- null commented on issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1681144306) at 2023-08-16 12:14 PM PDT -,2023-08-16T19:25:12Z,- null commented on issue: [5147](https://github.com/hackforla/website/issues/5147#issuecomment-1681156372) at 2023-08-16 12:25 PM PDT -,2023-08-16T23:17:23Z,- null commented on issue: [5186](https://github.com/hackforla/website/issues/5186#issuecomment-1681387036) at 2023-08-16 04:17 PM PDT -,2023-08-16T23:28:06Z,- null commented on issue: [5197](https://github.com/hackforla/website/issues/5197#issuecomment-1681393851) at 2023-08-16 04:28 PM PDT -,2023-08-16T23:39:13Z,- null commented on issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681400647) at 2023-08-16 04:39 PM PDT -,2023-08-16T23:40:04Z,- null commented on issue: [5185](https://github.com/hackforla/website/issues/5185#issuecomment-1681401132) at 2023-08-16 04:40 PM PDT -,2023-08-17T00:09:25Z,- null commented on issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1681420685) at 2023-08-16 05:09 PM PDT -,2023-08-17T02:04:39Z,- null commented on issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681500562) at 2023-08-16 07:04 PM PDT -,2023-08-17T02:39:07Z,- null commented on issue: [5242](https://github.com/hackforla/website/issues/5242#issuecomment-1681523956) at 2023-08-16 07:39 PM PDT -,2023-08-17T03:48:07Z,- null commented on issue: [5184](https://github.com/hackforla/website/issues/5184#issuecomment-1681568197) at 2023-08-16 08:48 PM PDT -,2023-08-17T18:48:43Z,- null commented on issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1682793157) at 2023-08-17 11:48 AM PDT -,2023-08-17T23:00:49Z,- null commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1683086187) at 2023-08-17 04:00 PM PDT -,2023-08-18T00:04:28Z,- null commented on issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1683135432) at 2023-08-17 05:04 PM PDT -,2023-08-18T00:28:01Z,- null commented on issue: [5174](https://github.com/hackforla/website/issues/5174#issuecomment-1683152644) at 2023-08-17 05:28 PM PDT -,2023-08-18T07:06:05Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1683452285) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:22Z,- null commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1683452592) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:24Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1683452666) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:32Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1683452783) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:34Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1683452822) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:37Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1683452873) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:44Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1683452996) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:47Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1683453048) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:51Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1683453113) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:06:58Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1683453246) at 2023-08-18 12:06 AM PDT -,2023-08-18T07:07:01Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1683453294) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:04Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1683453339) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:07Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1683453381) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:11Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1683453459) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:14Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1683453505) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:17Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1683453566) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:22Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1683453635) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:25Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1683453696) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:34Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1683453867) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:36Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1683453924) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:39Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1683453973) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:42Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1683454017) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:45Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1683454070) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:47Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1683454110) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:53Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1683454189) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:56Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1683454227) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:07:58Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1683454279) at 2023-08-18 12:07 AM PDT -,2023-08-18T07:08:01Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1683454315) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:03Z,- null commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1683454359) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:08Z,- null commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1683454440) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:11Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1683454496) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:13Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1683454543) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:16Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1683454589) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:19Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1683454625) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:23Z,- null commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1683454707) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:27Z,- null commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1683454771) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:32Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1683454846) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:35Z,- null commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1683454901) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:41Z,- null commented on issue: [5042](https://github.com/hackforla/website/issues/5042#issuecomment-1683455017) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:50Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1683455154) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:52Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1683455212) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:54Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1683455259) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:08:57Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1683455315) at 2023-08-18 12:08 AM PDT -,2023-08-18T07:09:01Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1683455375) at 2023-08-18 12:09 AM PDT -,2023-08-18T07:09:04Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1683455434) at 2023-08-18 12:09 AM PDT -,2023-08-18T07:09:09Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1683455509) at 2023-08-18 12:09 AM PDT -,2023-08-18T07:09:11Z,- null commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1683455564) at 2023-08-18 12:09 AM PDT -,2023-08-18T07:09:14Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1683455613) at 2023-08-18 12:09 AM PDT -,2023-08-18T07:09:17Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1683455662) at 2023-08-18 12:09 AM PDT -,2023-08-18T07:09:22Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1683455752) at 2023-08-18 12:09 AM PDT -,2023-08-18T07:09:27Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1683455841) at 2023-08-18 12:09 AM PDT -,2023-08-18T21:59:02Z,- null commented on issue: [5252](https://github.com/hackforla/website/issues/5252#issuecomment-1684474773) at 2023-08-18 02:59 PM PDT -,2023-08-19T01:30:04Z,- null commented on issue: [5253](https://github.com/hackforla/website/issues/5253#issuecomment-1684643579) at 2023-08-18 06:30 PM PDT -,2023-08-19T01:40:56Z,- null commented on issue: [5254](https://github.com/hackforla/website/issues/5254#issuecomment-1684657181) at 2023-08-18 06:40 PM PDT -,2023-08-19T02:00:15Z,- null commented on issue: [5255](https://github.com/hackforla/website/issues/5255#issuecomment-1684674665) at 2023-08-18 07:00 PM PDT -,2023-08-19T02:02:09Z,- null commented on issue: [5256](https://github.com/hackforla/website/issues/5256#issuecomment-1684677393) at 2023-08-18 07:02 PM PDT -,2023-08-19T03:14:59Z,- null commented on issue: [5254](https://github.com/hackforla/website/issues/5254#issuecomment-1684724750) at 2023-08-18 08:14 PM PDT -,2023-08-19T03:22:00Z,- null commented on issue: [5255](https://github.com/hackforla/website/issues/5255#issuecomment-1684732321) at 2023-08-18 08:22 PM PDT -,2023-08-19T23:31:22Z,- null commented on issue: [5256](https://github.com/hackforla/website/issues/5256#issuecomment-1685130974) at 2023-08-19 04:31 PM PDT -,2023-08-20T06:59:50Z,- null commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1685204905) at 2023-08-19 11:59 PM PDT -,2023-08-20T08:38:11Z,- null commented on issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1685225711) at 2023-08-20 01:38 AM PDT -,2023-08-20T16:39:10Z,- null commented on issue: [5267](https://github.com/hackforla/website/issues/5267#issuecomment-1685326503) at 2023-08-20 09:39 AM PDT -,2023-08-20T17:23:08Z,- null commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1685346382) at 2023-08-20 10:23 AM PDT -,2023-08-20T18:01:56Z,- null commented on issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1685354790) at 2023-08-20 11:01 AM PDT -,2023-08-20T18:03:04Z,- null commented on issue: [5266](https://github.com/hackforla/website/issues/5266#issuecomment-1685355061) at 2023-08-20 11:03 AM PDT -,2023-08-20T19:44:02Z,- null commented on issue: [5199](https://github.com/hackforla/website/issues/5199#issuecomment-1685375238) at 2023-08-20 12:44 PM PDT -,2023-08-21T02:32:29Z,- null commented on issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-1685525528) at 2023-08-20 07:32 PM PDT -,2023-08-21T09:16:29Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1685956321) at 2023-08-21 02:16 AM PDT -,2023-08-21T20:26:12Z,- null commented on issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1686995049) at 2023-08-21 01:26 PM PDT -,2023-08-21T20:51:22Z,- null commented on issue: [5281](https://github.com/hackforla/website/issues/5281#issuecomment-1687026308) at 2023-08-21 01:51 PM PDT -,2023-08-22T00:23:08Z,- null commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1687233771) at 2023-08-21 05:23 PM PDT -,2023-08-22T00:27:11Z,- null commented on issue: [5253](https://github.com/hackforla/website/issues/5253#issuecomment-1687236274) at 2023-08-21 05:27 PM PDT -,2023-08-22T19:40:52Z,- null commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1688819980) at 2023-08-22 12:40 PM PDT -,2023-08-22T21:40:54Z,- null commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1688968562) at 2023-08-22 02:40 PM PDT -,2023-08-22T22:33:19Z,- null commented on issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1689013154) at 2023-08-22 03:33 PM PDT -,2023-08-23T02:53:31Z,- null commented on issue: [5285](https://github.com/hackforla/website/issues/5285#issuecomment-1689190221) at 2023-08-22 07:53 PM PDT -,2023-08-23T02:57:11Z,- null commented on issue: [5286](https://github.com/hackforla/website/issues/5286#issuecomment-1689197581) at 2023-08-22 07:57 PM PDT -,2023-08-23T02:58:52Z,- null commented on issue: [5287](https://github.com/hackforla/website/issues/5287#issuecomment-1689199529) at 2023-08-22 07:58 PM PDT -,2023-08-23T03:02:11Z,- null commented on issue: [5288](https://github.com/hackforla/website/issues/5288#issuecomment-1689204246) at 2023-08-22 08:02 PM PDT -,2023-08-23T04:27:34Z,- null commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1689262493) at 2023-08-22 09:27 PM PDT -,2023-08-23T06:48:28Z,- null commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689377197) at 2023-08-22 11:48 PM PDT -,2023-08-23T14:18:49Z,- null commented on issue: [5173](https://github.com/hackforla/website/issues/5173#issuecomment-1690052163) at 2023-08-23 07:18 AM PDT -,2023-08-23T16:10:57Z,- null commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1690243024) at 2023-08-23 09:10 AM PDT -,2023-08-24T01:36:21Z,- null commented on issue: [5176](https://github.com/hackforla/website/issues/5176#issuecomment-1690857370) at 2023-08-23 06:36 PM PDT -,2023-08-24T03:17:02Z,- null commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1690929863) at 2023-08-23 08:17 PM PDT -,2023-08-24T04:21:09Z,- null commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1690974558) at 2023-08-23 09:21 PM PDT -,2023-08-24T06:13:14Z,- null commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1691063027) at 2023-08-23 11:13 PM PDT -,2023-08-24T20:54:47Z,- null commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1692393769) at 2023-08-24 01:54 PM PDT -,2023-08-25T07:06:08Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1692873605) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:11Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1692873661) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:31Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1692874007) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:37Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1692874099) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:39Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1692874145) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:42Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1692874184) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:48Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1692874303) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:50Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1692874355) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:53Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1692874415) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:06:59Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1692874547) at 2023-08-25 12:06 AM PDT -,2023-08-25T07:07:01Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1692874596) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:04Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1692874642) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:06Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1692874693) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:09Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1692874739) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:11Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1692874776) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:14Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1692874815) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:16Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1692874862) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:20Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1692874951) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:23Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1692875003) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:28Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1692875084) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:32Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1692875145) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:34Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1692875179) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:36Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1692875217) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:39Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1692875246) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:43Z,- null commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1692875316) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:45Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1692875361) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:48Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1692875398) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:50Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1692875441) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:52Z,- null commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1692875492) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:07:57Z,- null commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1692875597) at 2023-08-25 12:07 AM PDT -,2023-08-25T07:08:00Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1692875645) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:02Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1692875691) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:04Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1692875746) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:11Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1692875880) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:15Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1692875956) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:28Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1692876201) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:30Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1692876248) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:32Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1692876291) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:34Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1692876327) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:38Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1692876394) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:41Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1692876452) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:43Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1692876504) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:45Z,- null commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1692876547) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:48Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1692876588) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:50Z,- null commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1692876621) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:52Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1692876665) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:08:54Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1692876711) at 2023-08-25 12:08 AM PDT -,2023-08-25T07:09:01Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1692876824) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:03Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1692876861) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:05Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1692876906) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:08Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1692876957) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:10Z,- null commented on issue: [5225](https://github.com/hackforla/website/issues/5225#issuecomment-1692877000) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:17Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1692877097) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:21Z,- null commented on issue: [5221](https://github.com/hackforla/website/issues/5221#issuecomment-1692877166) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:24Z,- null commented on issue: [5188](https://github.com/hackforla/website/issues/5188#issuecomment-1692877210) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:31Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1692877350) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:36Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1692877448) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:39Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1692877496) at 2023-08-25 12:09 AM PDT -,2023-08-25T07:09:42Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1692877533) at 2023-08-25 12:09 AM PDT -,2023-08-25T23:41:36Z,- null commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1694036610) at 2023-08-25 04:41 PM PDT -,2023-08-26T01:34:44Z,- null commented on issue: [5307](https://github.com/hackforla/website/issues/5307#issuecomment-1694104622) at 2023-08-25 06:34 PM PDT -,2023-08-26T01:45:03Z,- null commented on issue: [5311](https://github.com/hackforla/website/issues/5311#issuecomment-1694108903) at 2023-08-25 06:45 PM PDT -,2023-08-26T02:28:56Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1694124664) at 2023-08-25 07:28 PM PDT -,2023-08-26T22:51:03Z,- null commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694516707) at 2023-08-26 03:51 PM PDT -,2023-08-27T09:16:06Z,- null commented on issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1694615690) at 2023-08-27 02:16 AM PDT -,2023-08-27T18:12:52Z,- null commented on issue: [5288](https://github.com/hackforla/website/issues/5288#issuecomment-1694729221) at 2023-08-27 11:12 AM PDT -,2023-08-27T18:27:51Z,- null commented on issue: [5317](https://github.com/hackforla/website/issues/5317#issuecomment-1694731801) at 2023-08-27 11:27 AM PDT -,2023-08-27T18:36:57Z,- null commented on issue: [5281](https://github.com/hackforla/website/issues/5281#issuecomment-1694733353) at 2023-08-27 11:36 AM PDT -,2023-08-27T18:56:23Z,- null commented on issue: [5318](https://github.com/hackforla/website/issues/5318#issuecomment-1694736805) at 2023-08-27 11:56 AM PDT -,2023-08-27T19:00:31Z,- null commented on issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1694737441) at 2023-08-27 12:00 PM PDT -,2023-08-27T19:04:42Z,- null commented on issue: [5287](https://github.com/hackforla/website/issues/5287#issuecomment-1694738207) at 2023-08-27 12:04 PM PDT -,2023-08-27T19:17:24Z,- null commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694740780) at 2023-08-27 12:17 PM PDT -,2023-08-27T21:35:24Z,- null commented on issue: [5286](https://github.com/hackforla/website/issues/5286#issuecomment-1694767306) at 2023-08-27 02:35 PM PDT -,2023-08-27T23:29:52Z,- null commented on issue: [5285](https://github.com/hackforla/website/issues/5285#issuecomment-1694791513) at 2023-08-27 04:29 PM PDT -,2023-08-28T23:39:47Z,- null commented on issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1696564848) at 2023-08-28 04:39 PM PDT -,2023-08-29T03:02:58Z,- null commented on issue: [5154](https://github.com/hackforla/website/issues/5154#issuecomment-1696698092) at 2023-08-28 08:02 PM PDT -,2023-08-29T04:28:23Z,- null commented on issue: [5163](https://github.com/hackforla/website/issues/5163#issuecomment-1696747184) at 2023-08-28 09:28 PM PDT -,2023-08-29T05:07:06Z,- null commented on issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1696772503) at 2023-08-28 10:07 PM PDT -,2023-08-29T05:27:32Z,- null commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1696789972) at 2023-08-28 10:27 PM PDT -,2023-08-29T09:06:14Z,- null commented on issue: [5334](https://github.com/hackforla/website/issues/5334#issuecomment-1697053186) at 2023-08-29 02:06 AM PDT -,2023-08-29T12:58:47Z,- null commented on issue: [5151](https://github.com/hackforla/website/issues/5151#issuecomment-1697398204) at 2023-08-29 05:58 AM PDT -,2023-08-29T15:21:09Z,- null commented on issue: [5315](https://github.com/hackforla/website/issues/5315#issuecomment-1697657152) at 2023-08-29 08:21 AM PDT -,2023-08-29T15:58:03Z,- null commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1697732193) at 2023-08-29 08:58 AM PDT -,2023-08-29T16:02:05Z,- null commented on issue: [5181](https://github.com/hackforla/website/issues/5181#issuecomment-1697738881) at 2023-08-29 09:02 AM PDT -,2023-08-29T17:39:45Z,- null commented on issue: [4924](https://github.com/hackforla/website/issues/4924#issuecomment-1697875117) at 2023-08-29 10:39 AM PDT -,2023-08-29T19:55:17Z,- null commented on issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1698044247) at 2023-08-29 12:55 PM PDT -,2023-08-29T20:31:21Z,- null commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1698086526) at 2023-08-29 01:31 PM PDT -,2023-08-29T21:58:19Z,- null commented on issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1698200344) at 2023-08-29 02:58 PM PDT -,2023-08-29T23:52:21Z,- null commented on issue: [5330](https://github.com/hackforla/website/issues/5330#issuecomment-1698292670) at 2023-08-29 04:52 PM PDT -,2023-08-30T00:54:11Z,- null commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1698335464) at 2023-08-29 05:54 PM PDT -,2023-08-30T03:37:13Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1698438924) at 2023-08-29 08:37 PM PDT -,2023-08-30T03:39:18Z,- null commented on issue: [5349](https://github.com/hackforla/website/issues/5349#issuecomment-1698440194) at 2023-08-29 08:39 PM PDT -,2023-08-30T03:39:44Z,- null commented on issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1698440429) at 2023-08-29 08:39 PM PDT -,2023-08-30T03:42:00Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1698441801) at 2023-08-29 08:42 PM PDT -,2023-08-30T03:42:20Z,- null commented on issue: [5352](https://github.com/hackforla/website/issues/5352#issuecomment-1698441964) at 2023-08-29 08:42 PM PDT -,2023-08-30T03:49:29Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1698446424) at 2023-08-29 08:49 PM PDT -,2023-08-30T03:49:50Z,- null commented on issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1698446579) at 2023-08-29 08:49 PM PDT -,2023-08-30T04:01:44Z,- null commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1698453268) at 2023-08-29 09:01 PM PDT -,2023-08-30T04:02:08Z,- null commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1698453521) at 2023-08-29 09:02 PM PDT -,2023-08-30T04:06:57Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1698456551) at 2023-08-29 09:06 PM PDT -,2023-08-30T04:07:29Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1698456886) at 2023-08-29 09:07 PM PDT -,2023-08-30T04:08:46Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1698457644) at 2023-08-29 09:08 PM PDT -,2023-08-30T04:10:59Z,- null commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-1698458958) at 2023-08-29 09:10 PM PDT -,2023-08-30T06:04:17Z,- null commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1698544380) at 2023-08-29 11:04 PM PDT -,2023-08-30T06:07:54Z,- null commented on issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1698547708) at 2023-08-29 11:07 PM PDT -,2023-08-30T06:19:19Z,- null commented on issue: [5367](https://github.com/hackforla/website/issues/5367#issuecomment-1698558074) at 2023-08-29 11:19 PM PDT -,2023-08-30T06:19:39Z,- null commented on issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1698558480) at 2023-08-29 11:19 PM PDT -,2023-08-30T06:20:06Z,- null commented on issue: [5369](https://github.com/hackforla/website/issues/5369#issuecomment-1698558978) at 2023-08-29 11:20 PM PDT -,2023-08-30T06:20:48Z,- null commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1698559669) at 2023-08-29 11:20 PM PDT -,2023-08-30T06:22:03Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1698560854) at 2023-08-29 11:22 PM PDT -,2023-08-30T06:23:28Z,- null commented on issue: [5372](https://github.com/hackforla/website/issues/5372#issuecomment-1698562825) at 2023-08-29 11:23 PM PDT -,2023-08-30T06:24:33Z,- null commented on issue: [5373](https://github.com/hackforla/website/issues/5373#issuecomment-1698564613) at 2023-08-29 11:24 PM PDT -,2023-08-30T17:47:24Z,- null commented on issue: [5252](https://github.com/hackforla/website/issues/5252#issuecomment-1699600697) at 2023-08-30 10:47 AM PDT -,2023-08-30T18:04:11Z,- null commented on issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1699621152) at 2023-08-30 11:04 AM PDT -,2023-08-31T00:26:31Z,- null commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700072164) at 2023-08-30 05:26 PM PDT -,2023-08-31T02:23:13Z,- null commented on issue: [5165](https://github.com/hackforla/website/issues/5165#issuecomment-1700278708) at 2023-08-30 07:23 PM PDT -,2023-08-31T02:35:50Z,- null commented on issue: [5376](https://github.com/hackforla/website/issues/5376#issuecomment-1700286169) at 2023-08-30 07:35 PM PDT -,2023-08-31T03:13:48Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1700308124) at 2023-08-30 08:13 PM PDT -,2023-08-31T04:14:07Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1700341696) at 2023-08-30 09:14 PM PDT -,2023-08-31T17:11:59Z,- null commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1701439038) at 2023-08-31 10:11 AM PDT -,2023-08-31T17:17:53Z,- null commented on issue: [5369](https://github.com/hackforla/website/issues/5369#issuecomment-1701446379) at 2023-08-31 10:17 AM PDT -,2023-08-31T19:17:30Z,- null commented on issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1701633379) at 2023-08-31 12:17 PM PDT -,2023-08-31T19:52:58Z,- null commented on issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1701694830) at 2023-08-31 12:52 PM PDT -,2023-09-01T00:56:11Z,- null commented on issue: [5316](https://github.com/hackforla/website/issues/5316#issuecomment-1701964495) at 2023-08-31 05:56 PM PDT -,2023-09-01T01:47:51Z,- null commented on issue: [5317](https://github.com/hackforla/website/issues/5317#issuecomment-1701998831) at 2023-08-31 06:47 PM PDT -,2023-09-01T02:16:59Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1702019128) at 2023-08-31 07:16 PM PDT -,2023-09-01T07:06:18Z,- null commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1702273349) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:06:36Z,- null commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1702273693) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:06:42Z,- null commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1702273797) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:06:44Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1702273844) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:06:46Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1702273890) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:06:52Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1702273999) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:06:55Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1702274036) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:06:57Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1702274080) at 2023-09-01 12:06 AM PDT -,2023-09-01T07:07:04Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1702274180) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:06Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1702274238) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:09Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1702274278) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:11Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1702274332) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:15Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1702274405) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:17Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1702274450) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:20Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1702274492) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:24Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1702274579) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:26Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1702274625) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:31Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1702274717) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:34Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1702274756) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:36Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1702274795) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:39Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1702274842) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:41Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1702274889) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:43Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1702274941) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:50Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1702275059) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:52Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1702275101) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:54Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1702275147) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:56Z,- null commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1702275184) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:07:59Z,- null commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1702275227) at 2023-09-01 12:07 AM PDT -,2023-09-01T07:08:01Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1702275265) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:04Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1702275310) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:06Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1702275356) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:09Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1702275402) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:12Z,- null commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1702275466) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:14Z,- null commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1702275514) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:17Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1702275564) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:20Z,- null commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1702275611) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:22Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1702275653) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:32Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1702275831) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:34Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1702275868) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:37Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1702275930) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:39Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1702275974) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:45Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1702276083) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:48Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1702276128) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:50Z,- null commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1702276192) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:53Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1702276227) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:56Z,- null commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1702276275) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:08:58Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1702276325) at 2023-09-01 12:08 AM PDT -,2023-09-01T07:09:00Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1702276361) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:05Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1702276469) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:10Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1702276546) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:13Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1702276609) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:17Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1702276670) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:25Z,- null commented on issue: [5222](https://github.com/hackforla/website/issues/5222#issuecomment-1702276817) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:29Z,- null commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1702276889) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:32Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1702276946) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:36Z,- null commented on issue: [5221](https://github.com/hackforla/website/issues/5221#issuecomment-1702277011) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:39Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1702277071) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:42Z,- null commented on issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1702277121) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:45Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1702277175) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:48Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1702277224) at 2023-09-01 12:09 AM PDT -,2023-09-01T07:09:51Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1702277281) at 2023-09-01 12:09 AM PDT -,2023-09-01T09:31:08Z,- null commented on issue: [4456](https://github.com/hackforla/website/issues/4456#issuecomment-1702455931) at 2023-09-01 02:31 AM PDT -,2023-09-01T14:07:11Z,- null commented on issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1702807066) at 2023-09-01 07:07 AM PDT -,2023-09-01T14:15:53Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1702819509) at 2023-09-01 07:15 AM PDT -,2023-09-01T14:24:50Z,- null commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1702832999) at 2023-09-01 07:24 AM PDT -,2023-09-01T15:18:08Z,- null commented on issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1702919582) at 2023-09-01 08:18 AM PDT -,2023-09-01T15:33:21Z,- null commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1702940116) at 2023-09-01 08:33 AM PDT -,2023-09-02T04:09:09Z,- null commented on issue: [5390](https://github.com/hackforla/website/issues/5390#issuecomment-1703682760) at 2023-09-01 09:09 PM PDT -,2023-09-02T23:46:52Z,- null commented on issue: [5394](https://github.com/hackforla/website/issues/5394#issuecomment-1703965674) at 2023-09-02 04:46 PM PDT -,2023-09-03T05:55:15Z,- null commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1704014870) at 2023-09-02 10:55 PM PDT -,2023-09-03T07:20:47Z,- null commented on issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1704034067) at 2023-09-03 12:20 AM PDT -,2023-09-03T07:47:25Z,- null commented on issue: [5426](https://github.com/hackforla/website/issues/5426#issuecomment-1704039097) at 2023-09-03 12:47 AM PDT -,2023-09-03T08:27:05Z,- null commented on issue: [5427](https://github.com/hackforla/website/issues/5427#issuecomment-1704047974) at 2023-09-03 01:27 AM PDT -,2023-09-03T08:53:38Z,- null commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704055275) at 2023-09-03 01:53 AM PDT -,2023-09-03T09:03:20Z,- null commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1704057552) at 2023-09-03 02:03 AM PDT -,2023-09-03T17:53:32Z,- null commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704363396) at 2023-09-03 10:53 AM PDT -,2023-09-04T08:13:37Z,- null commented on issue: [5439](https://github.com/hackforla/website/issues/5439#issuecomment-1704814133) at 2023-09-04 01:13 AM PDT -,2023-09-05T03:38:47Z,- null commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1705902444) at 2023-09-04 08:38 PM PDT -,2023-09-05T15:45:44Z,- null commented on issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1706872893) at 2023-09-05 08:45 AM PDT -,2023-09-05T18:33:32Z,- null commented on issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1707119660) at 2023-09-05 11:33 AM PDT -,2023-09-05T19:06:23Z,- null commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1707170199) at 2023-09-05 12:06 PM PDT -,2023-09-05T19:15:54Z,- null commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1707183069) at 2023-09-05 12:15 PM PDT -,2023-09-05T20:25:15Z,- null commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1707263489) at 2023-09-05 01:25 PM PDT -,2023-09-05T20:25:32Z,- null commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1707263807) at 2023-09-05 01:25 PM PDT -,2023-09-05T20:47:45Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1707290427) at 2023-09-05 01:47 PM PDT -,2023-09-05T22:05:55Z,- null commented on issue: [5450](https://github.com/hackforla/website/issues/5450#issuecomment-1707367792) at 2023-09-05 03:05 PM PDT -,2023-09-05T22:26:46Z,- null commented on issue: [5383](https://github.com/hackforla/website/issues/5383#issuecomment-1707394318) at 2023-09-05 03:26 PM PDT -,2023-09-06T06:59:52Z,- null commented on issue: [5450](https://github.com/hackforla/website/issues/5450#issuecomment-1707780506) at 2023-09-05 11:59 PM PDT -,2023-09-06T07:13:55Z,- null commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1707797240) at 2023-09-06 12:13 AM PDT -,2023-09-06T21:44:09Z,- null commented on issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1709169745) at 2023-09-06 02:44 PM PDT -,2023-09-07T07:18:54Z,- null commented on issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1709607636) at 2023-09-07 12:18 AM PDT -,2023-09-07T13:38:17Z,- null commented on issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1710169964) at 2023-09-07 06:38 AM PDT -,2023-09-07T19:31:29Z,- null commented on issue: [5389](https://github.com/hackforla/website/issues/5389#issuecomment-1710669780) at 2023-09-07 12:31 PM PDT -,2023-09-07T19:34:27Z,- null commented on issue: [5385](https://github.com/hackforla/website/issues/5385#issuecomment-1710672640) at 2023-09-07 12:34 PM PDT -,2023-09-07T22:00:39Z,- null commented on issue: [5387](https://github.com/hackforla/website/issues/5387#issuecomment-1710819808) at 2023-09-07 03:00 PM PDT -,2023-09-08T04:13:44Z,- null commented on issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1711049286) at 2023-09-07 09:13 PM PDT -,2023-09-08T07:06:06Z,- null commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1711182207) at 2023-09-08 12:06 AM PDT -,2023-09-08T07:06:38Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1711182743) at 2023-09-08 12:06 AM PDT -,2023-09-08T07:06:41Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1711182790) at 2023-09-08 12:06 AM PDT -,2023-09-08T07:06:46Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1711182887) at 2023-09-08 12:06 AM PDT -,2023-09-08T07:06:49Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1711182921) at 2023-09-08 12:06 AM PDT -,2023-09-08T07:06:51Z,- null commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1711182969) at 2023-09-08 12:06 AM PDT -,2023-09-08T07:06:58Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1711183093) at 2023-09-08 12:06 AM PDT -,2023-09-08T07:07:01Z,- null commented on issue: [4620](https://github.com/hackforla/website/issues/4620#issuecomment-1711183132) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:03Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1711183176) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:06Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1711183208) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:09Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1711183239) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:11Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1711183266) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:14Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1711183318) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:16Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1711183376) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:20Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1711183452) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:37Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1711183742) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:42Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1711183822) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:44Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1711183855) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:47Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1711183887) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:49Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1711183932) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:57Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1711184063) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:07:59Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1711184094) at 2023-09-08 12:07 AM PDT -,2023-09-08T07:08:02Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1711184133) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:04Z,- null commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1711184177) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:08Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1711184249) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:11Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1711184311) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:13Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1711184348) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:16Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1711184394) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:22Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1711184504) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:25Z,- null commented on issue: [4969](https://github.com/hackforla/website/issues/4969#issuecomment-1711184567) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:28Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1711184606) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:36Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1711184750) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:39Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1711184796) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:41Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1711184848) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:43Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1711184884) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:47Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1711184941) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:49Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1711184986) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:51Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1711185020) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:54Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1711185063) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:57Z,- null commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1711185175) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:08:59Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1711185279) at 2023-09-08 12:08 AM PDT -,2023-09-08T07:09:02Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1711185372) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:06Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1711185470) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:10Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1711185539) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:13Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1711185605) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:16Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1711185685) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:19Z,- null commented on issue: [5222](https://github.com/hackforla/website/issues/5222#issuecomment-1711185742) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:24Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1711185837) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:27Z,- null commented on issue: [5221](https://github.com/hackforla/website/issues/5221#issuecomment-1711185887) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:29Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1711185936) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:32Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1711185994) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:35Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1711186046) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:38Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1711186089) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:44Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1711186190) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:50Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1711186302) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:52Z,- null commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-1711186341) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:55Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1711186389) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:09:58Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1711186433) at 2023-09-08 12:09 AM PDT -,2023-09-08T07:10:01Z,- null commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1711186491) at 2023-09-08 12:10 AM PDT -,2023-09-08T07:10:04Z,- null commented on issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1711186549) at 2023-09-08 12:10 AM PDT -,2023-09-08T07:10:07Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1711186595) at 2023-09-08 12:10 AM PDT -,2023-09-08T07:10:12Z,- null commented on issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1711186698) at 2023-09-08 12:10 AM PDT -,2023-09-08T07:10:15Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1711186750) at 2023-09-08 12:10 AM PDT -,2023-09-08T07:57:47Z,- null commented on issue: [5459](https://github.com/hackforla/website/issues/5459#issuecomment-1711242994) at 2023-09-08 12:57 AM PDT -,2023-09-08T15:15:10Z,- null commented on issue: [5379](https://github.com/hackforla/website/issues/5379#issuecomment-1711831146) at 2023-09-08 08:15 AM PDT -,2023-09-09T03:06:58Z,- null commented on issue: [5386](https://github.com/hackforla/website/issues/5386#issuecomment-1712396875) at 2023-09-08 08:06 PM PDT -,2023-09-09T08:20:55Z,- null commented on issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1712455238) at 2023-09-09 01:20 AM PDT -,2023-09-10T10:07:50Z,- null commented on issue: [5470](https://github.com/hackforla/website/issues/5470#issuecomment-1712772603) at 2023-09-10 03:07 AM PDT -,2023-09-10T10:28:21Z,- null commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1712776414) at 2023-09-10 03:28 AM PDT -,2023-09-10T11:17:05Z,- null commented on issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-1712786597) at 2023-09-10 04:17 AM PDT -,2023-09-11T05:43:21Z,- null commented on issue: [5474](https://github.com/hackforla/website/issues/5474#issuecomment-1713204008) at 2023-09-10 10:43 PM PDT -,2023-09-11T19:52:08Z,- null commented on issue: [5476](https://github.com/hackforla/website/issues/5476#issuecomment-1714486773) at 2023-09-11 12:52 PM PDT -,2023-09-11T19:58:57Z,- null commented on issue: [5477](https://github.com/hackforla/website/issues/5477#issuecomment-1714495390) at 2023-09-11 12:58 PM PDT -,2023-09-12T02:47:43Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1714883760) at 2023-09-11 07:47 PM PDT -,2023-09-12T02:53:59Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1714887437) at 2023-09-11 07:53 PM PDT -,2023-09-12T03:03:55Z,- null commented on issue: [5481](https://github.com/hackforla/website/issues/5481#issuecomment-1714893515) at 2023-09-11 08:03 PM PDT -,2023-09-12T03:13:36Z,- null commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1714899554) at 2023-09-11 08:13 PM PDT -,2023-09-12T03:20:57Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1714904023) at 2023-09-11 08:20 PM PDT -,2023-09-12T03:28:33Z,- null commented on issue: [5484](https://github.com/hackforla/website/issues/5484#issuecomment-1714908313) at 2023-09-11 08:28 PM PDT -,2023-09-12T03:29:10Z,- null commented on issue: [5485](https://github.com/hackforla/website/issues/5485#issuecomment-1714908652) at 2023-09-11 08:29 PM PDT -,2023-09-12T03:33:45Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1714911118) at 2023-09-11 08:33 PM PDT -,2023-09-12T03:34:32Z,- null commented on issue: [5487](https://github.com/hackforla/website/issues/5487#issuecomment-1714911510) at 2023-09-11 08:34 PM PDT -,2023-09-12T04:35:12Z,- null commented on issue: [5384](https://github.com/hackforla/website/issues/5384#issuecomment-1714949044) at 2023-09-11 09:35 PM PDT -,2023-09-12T08:02:36Z,- null commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1715205447) at 2023-09-12 01:02 AM PDT -,2023-09-12T08:28:23Z,- null commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1715246452) at 2023-09-12 01:28 AM PDT -,2023-09-12T17:28:42Z,- null commented on issue: [5378](https://github.com/hackforla/website/issues/5378#issuecomment-1716144575) at 2023-09-12 10:28 AM PDT -,2023-09-12T18:20:43Z,- null commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1716212512) at 2023-09-12 11:20 AM PDT -,2023-09-12T18:39:17Z,- null commented on issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-1716236091) at 2023-09-12 11:39 AM PDT -,2023-09-12T18:57:20Z,- null commented on issue: [5505](https://github.com/hackforla/website/issues/5505#issuecomment-1716258428) at 2023-09-12 11:57 AM PDT -,2023-09-12T18:57:55Z,- null commented on issue: [5506](https://github.com/hackforla/website/issues/5506#issuecomment-1716259181) at 2023-09-12 11:57 AM PDT -,2023-09-12T18:58:34Z,- null commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1716260054) at 2023-09-12 11:58 AM PDT -,2023-09-12T18:59:30Z,- null commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1716261287) at 2023-09-12 11:59 AM PDT -,2023-09-12T18:59:45Z,- null commented on issue: [5509](https://github.com/hackforla/website/issues/5509#issuecomment-1716261625) at 2023-09-12 11:59 AM PDT -,2023-09-12T19:08:24Z,- null commented on issue: [5377](https://github.com/hackforla/website/issues/5377#issuecomment-1716272769) at 2023-09-12 12:08 PM PDT -,2023-09-12T23:20:24Z,- null commented on issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1716659874) at 2023-09-12 04:20 PM PDT -,2023-09-13T03:17:23Z,- null commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1716879621) at 2023-09-12 08:17 PM PDT -,2023-09-13T04:12:00Z,- null commented on issue: [5494](https://github.com/hackforla/website/issues/5494#issuecomment-1716913239) at 2023-09-12 09:12 PM PDT -,2023-09-13T05:45:53Z,- null commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1716984950) at 2023-09-12 10:45 PM PDT -,2023-09-13T07:46:58Z,- null commented on issue: [5514](https://github.com/hackforla/website/issues/5514#issuecomment-1717118246) at 2023-09-13 12:46 AM PDT -,2023-09-13T07:47:25Z,- null commented on issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1717118867) at 2023-09-13 12:47 AM PDT -,2023-09-13T07:50:50Z,- null commented on issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1717123435) at 2023-09-13 12:50 AM PDT -,2023-09-13T08:10:09Z,- null commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1717151055) at 2023-09-13 01:10 AM PDT -,2023-09-13T08:22:48Z,- null commented on issue: [5518](https://github.com/hackforla/website/issues/5518#issuecomment-1717169776) at 2023-09-13 01:22 AM PDT -,2023-09-13T08:24:50Z,- null commented on issue: [5519](https://github.com/hackforla/website/issues/5519#issuecomment-1717172867) at 2023-09-13 01:24 AM PDT -,2023-09-13T08:25:49Z,- null commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1717174626) at 2023-09-13 01:25 AM PDT -,2023-09-14T01:34:49Z,- null commented on issue: [5459](https://github.com/hackforla/website/issues/5459#issuecomment-1718580481) at 2023-09-13 06:34 PM PDT -,2023-09-14T08:07:14Z,- null commented on issue: [5476](https://github.com/hackforla/website/issues/5476#issuecomment-1718964487) at 2023-09-14 01:07 AM PDT -,2023-09-14T16:42:33Z,- null commented on issue: [5519](https://github.com/hackforla/website/issues/5519#issuecomment-1719792922) at 2023-09-14 09:42 AM PDT -,2023-09-14T16:43:57Z,- null commented on issue: [5518](https://github.com/hackforla/website/issues/5518#issuecomment-1719794686) at 2023-09-14 09:43 AM PDT -,2023-09-14T17:06:30Z,- null commented on issue: [5514](https://github.com/hackforla/website/issues/5514#issuecomment-1719833608) at 2023-09-14 10:06 AM PDT -,2023-09-14T18:34:10Z,- null commented on issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1719949773) at 2023-09-14 11:34 AM PDT -,2023-09-14T19:47:14Z,- null commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1720046088) at 2023-09-14 12:47 PM PDT -,2023-09-14T22:00:55Z,- null commented on issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1720211126) at 2023-09-14 03:00 PM PDT -,2023-09-15T00:30:37Z,- null commented on issue: [5524](https://github.com/hackforla/website/issues/5524#issuecomment-1720323483) at 2023-09-14 05:30 PM PDT -,2023-09-15T00:31:47Z,- null commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1720324283) at 2023-09-14 05:31 PM PDT -,2023-09-15T00:33:45Z,- null commented on issue: [5526](https://github.com/hackforla/website/issues/5526#issuecomment-1720325519) at 2023-09-14 05:33 PM PDT -,2023-09-15T00:34:35Z,- null commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1720326012) at 2023-09-14 05:34 PM PDT -,2023-09-15T00:41:58Z,- null commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1720330668) at 2023-09-14 05:41 PM PDT -,2023-09-15T00:42:14Z,- null commented on issue: [5529](https://github.com/hackforla/website/issues/5529#issuecomment-1720330828) at 2023-09-14 05:42 PM PDT -,2023-09-15T00:44:06Z,- null commented on issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1720331921) at 2023-09-14 05:44 PM PDT -,2023-09-15T00:44:10Z,- null commented on issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1720331966) at 2023-09-14 05:44 PM PDT -,2023-09-15T00:55:20Z,- null commented on issue: [5533](https://github.com/hackforla/website/issues/5533#issuecomment-1720338991) at 2023-09-14 05:55 PM PDT -,2023-09-15T02:04:46Z,- null commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1720383822) at 2023-09-14 07:04 PM PDT -,2023-09-15T02:22:13Z,- null commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1720395270) at 2023-09-14 07:22 PM PDT -,2023-09-15T02:29:22Z,- null commented on issue: [5536](https://github.com/hackforla/website/issues/5536#issuecomment-1720399488) at 2023-09-14 07:29 PM PDT -,2023-09-15T03:37:16Z,- null commented on issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720436955) at 2023-09-14 08:37 PM PDT -,2023-09-15T03:38:10Z,- null commented on issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720437419) at 2023-09-14 08:38 PM PDT -,2023-09-15T05:16:36Z,- null commented on issue: [5341](https://github.com/hackforla/website/issues/5341#issuecomment-1720690332) at 2023-09-14 10:16 PM PDT -,2023-09-15T07:06:14Z,- null commented on issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1720782470) at 2023-09-15 12:06 AM PDT -,2023-09-15T07:06:51Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1720783089) at 2023-09-15 12:06 AM PDT -,2023-09-15T07:06:54Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1720783130) at 2023-09-15 12:06 AM PDT -,2023-09-15T07:07:00Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1720783242) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:04Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1720783318) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:16Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1720783550) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:19Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1720783604) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:22Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1720783653) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:27Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1720783733) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:30Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1720783785) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:33Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1720783835) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:36Z,- null commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1720783911) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:39Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1720783964) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:42Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1720784000) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:48Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1720784117) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:51Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1720784168) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:53Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1720784224) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:56Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1720784273) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:07:59Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1720784341) at 2023-09-15 12:07 AM PDT -,2023-09-15T07:08:02Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1720784404) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:12Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1720784570) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:14Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1720784625) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:17Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1720784677) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:20Z,- null commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1720784750) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:27Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1720784881) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:30Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1720784917) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:33Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1720784995) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:36Z,- null commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1720785039) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:38Z,- null commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1720785089) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:41Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1720785149) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:44Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1720785198) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:53Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1720785377) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:56Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1720785419) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:08:58Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1720785477) at 2023-09-15 12:08 AM PDT -,2023-09-15T07:09:01Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1720785532) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:05Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1720785632) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:08Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1720785685) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:10Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1720785725) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:13Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1720785779) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:16Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1720785827) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:19Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1720785880) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:25Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1720785990) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:27Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1720786027) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:30Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1720786070) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:34Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1720786120) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:40Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1720786213) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:42Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1720786257) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:46Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1720786318) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:49Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1720786371) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:09:52Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1720786422) at 2023-09-15 12:09 AM PDT -,2023-09-15T07:10:00Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1720786578) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:05Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1720786673) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:08Z,- null commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-1720786738) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:12Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1720786788) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:16Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1720786843) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:18Z,- null commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1720786879) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:21Z,- null commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1720786938) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:26Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1720787027) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:29Z,- null commented on issue: [5352](https://github.com/hackforla/website/issues/5352#issuecomment-1720787078) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:32Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1720787143) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:10:43Z,- null commented on issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1720787337) at 2023-09-15 12:10 AM PDT -,2023-09-15T07:11:12Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1720787844) at 2023-09-15 12:11 AM PDT -,2023-09-15T07:43:36Z,- null commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1720826133) at 2023-09-15 12:43 AM PDT -,2023-09-15T07:46:22Z,- null commented on issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1720829319) at 2023-09-15 12:46 AM PDT -,2023-09-15T14:45:10Z,- null commented on issue: [5477](https://github.com/hackforla/website/issues/5477#issuecomment-1721400253) at 2023-09-15 07:45 AM PDT -,2023-09-15T15:47:55Z,- null commented on issue: [5540](https://github.com/hackforla/website/issues/5540#issuecomment-1721496353) at 2023-09-15 08:47 AM PDT -,2023-09-15T17:07:17Z,- null commented on issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1721593661) at 2023-09-15 10:07 AM PDT -,2023-09-16T09:33:18Z,- null commented on issue: [5426](https://github.com/hackforla/website/issues/5426#issuecomment-1722188878) at 2023-09-16 02:33 AM PDT -,2023-09-16T16:38:48Z,- null commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1722267000) at 2023-09-16 09:38 AM PDT -,2023-09-16T16:48:30Z,- null commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1722268854) at 2023-09-16 09:48 AM PDT -,2023-09-16T17:13:22Z,- null commented on issue: [5342](https://github.com/hackforla/website/issues/5342#issuecomment-1722273794) at 2023-09-16 10:13 AM PDT -,2023-09-16T20:42:02Z,- null commented on issue: [5526](https://github.com/hackforla/website/issues/5526#issuecomment-1722312104) at 2023-09-16 01:42 PM PDT -,2023-09-16T23:28:13Z,- null commented on issue: [5324](https://github.com/hackforla/website/issues/5324#issuecomment-1722340019) at 2023-09-16 04:28 PM PDT -,2023-09-17T04:31:23Z,- null commented on issue: [5490](https://github.com/hackforla/website/issues/5490#issuecomment-1722389121) at 2023-09-16 09:31 PM PDT -,2023-09-17T12:12:51Z,- null commented on issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1722463476) at 2023-09-17 05:12 AM PDT -,2023-09-17T18:17:43Z,- null commented on issue: [5189](https://github.com/hackforla/website/issues/5189#issuecomment-1722534869) at 2023-09-17 11:17 AM PDT -,2023-09-17T23:18:23Z,- null commented on issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1722594767) at 2023-09-17 04:18 PM PDT -,2023-09-18T00:16:13Z,- null commented on issue: [5547](https://github.com/hackforla/website/issues/5547#issuecomment-1722611328) at 2023-09-17 05:16 PM PDT -,2023-09-18T16:04:43Z,- null commented on issue: [5282](https://github.com/hackforla/website/issues/5282#issuecomment-1723812627) at 2023-09-18 09:04 AM PDT -,2023-09-18T17:28:16Z,- null commented on issue: [5427](https://github.com/hackforla/website/issues/5427#issuecomment-1724051784) at 2023-09-18 10:28 AM PDT -,2023-09-18T18:48:02Z,- null commented on issue: [5322](https://github.com/hackforla/website/issues/5322#issuecomment-1724186501) at 2023-09-18 11:48 AM PDT -,2023-09-19T04:39:13Z,- null commented on issue: [4961](https://github.com/hackforla/website/issues/4961#issuecomment-1724820628) at 2023-09-18 09:39 PM PDT -,2023-09-19T07:48:04Z,- null commented on issue: [5524](https://github.com/hackforla/website/issues/5524#issuecomment-1724997312) at 2023-09-19 12:48 AM PDT -,2023-09-19T08:07:03Z,- null commented on issue: [5323](https://github.com/hackforla/website/issues/5323#issuecomment-1725024092) at 2023-09-19 01:07 AM PDT -,2023-09-19T16:36:18Z,- null commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1726053237) at 2023-09-19 09:36 AM PDT -,2023-09-20T00:14:26Z,- null commented on issue: [5332](https://github.com/hackforla/website/issues/5332#issuecomment-1726705119) at 2023-09-19 05:14 PM PDT -,2023-09-20T00:46:38Z,- null commented on issue: [5529](https://github.com/hackforla/website/issues/5529#issuecomment-1726724078) at 2023-09-19 05:46 PM PDT -,2023-09-20T01:49:10Z,- null commented on issue: [5533](https://github.com/hackforla/website/issues/5533#issuecomment-1726763156) at 2023-09-19 06:49 PM PDT -,2023-09-20T02:29:20Z,- null commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1726788514) at 2023-09-19 07:29 PM PDT -,2023-09-20T02:50:53Z,- null commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1726801694) at 2023-09-19 07:50 PM PDT -,2023-09-20T03:05:36Z,- null commented on issue: [5509](https://github.com/hackforla/website/issues/5509#issuecomment-1726814063) at 2023-09-19 08:05 PM PDT -,2023-09-20T22:33:23Z,- null commented on issue: [5367](https://github.com/hackforla/website/issues/5367#issuecomment-1728511329) at 2023-09-20 03:33 PM PDT -,2023-09-21T06:15:34Z,- null commented on issue: [5505](https://github.com/hackforla/website/issues/5505#issuecomment-1728918541) at 2023-09-20 11:15 PM PDT -,2023-09-21T07:30:20Z,- null commented on issue: [5567](https://github.com/hackforla/website/issues/5567#issuecomment-1729009839) at 2023-09-21 12:30 AM PDT -,2023-09-21T22:45:48Z,- null commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1730445429) at 2023-09-21 03:45 PM PDT -,2023-09-21T22:56:19Z,- null commented on issue: [5506](https://github.com/hackforla/website/issues/5506#issuecomment-1730457400) at 2023-09-21 03:56 PM PDT -,2023-09-22T01:53:15Z,- null commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1730679977) at 2023-09-21 06:53 PM PDT -,2023-09-22T07:06:20Z,- null commented on issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1730911314) at 2023-09-22 12:06 AM PDT -,2023-09-22T07:06:23Z,- null commented on issue: [5536](https://github.com/hackforla/website/issues/5536#issuecomment-1730911374) at 2023-09-22 12:06 AM PDT -,2023-09-22T07:07:04Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1730912133) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:08Z,- null commented on issue: [4165](https://github.com/hackforla/website/issues/4165#issuecomment-1730912198) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:14Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1730912325) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:17Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1730912381) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:30Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1730912588) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:34Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1730912730) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:37Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1730912785) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:40Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1730912835) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:43Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1730912892) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:46Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1730912936) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:49Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1730913000) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:55Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1730913089) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:07:58Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1730913142) at 2023-09-22 12:07 AM PDT -,2023-09-22T07:08:06Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1730913319) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:09Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1730913395) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:12Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1730913442) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:15Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1730913506) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:18Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1730913560) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:25Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1730913695) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:34Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1730913883) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:37Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1730913922) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:40Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1730913962) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:44Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1730914030) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:47Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1730914090) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:49Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1730914138) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:52Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1730914185) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:55Z,- null commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1730914260) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:08:58Z,- null commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1730914319) at 2023-09-22 12:08 AM PDT -,2023-09-22T07:09:01Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1730914378) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:04Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1730914428) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:14Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1730914604) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:17Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1730914668) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:20Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1730914731) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:23Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1730914795) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:26Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1730914862) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:29Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1730914918) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:32Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1730914973) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:35Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1730915031) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:38Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1730915086) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:41Z,- null commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1730915147) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:46Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1730915256) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:49Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1730915338) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:53Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1730915446) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:55Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1730915582) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:09:58Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1730915710) at 2023-09-22 12:09 AM PDT -,2023-09-22T07:10:01Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1730915816) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:05Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1730915897) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:09Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1730915962) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:15Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1730916084) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:18Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1730916142) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:22Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1730916207) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:24Z,- null commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-1730916261) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:27Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1730916319) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:30Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1730916372) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:34Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1730916460) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:37Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1730916530) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:42Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1730916624) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:45Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1730916694) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:51Z,- null commented on issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1730916822) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:55Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1730916882) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:10:59Z,- null commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1730916957) at 2023-09-22 12:10 AM PDT -,2023-09-22T07:11:04Z,- null commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1730917040) at 2023-09-22 12:11 AM PDT -,2023-09-22T07:11:07Z,- null commented on issue: [5481](https://github.com/hackforla/website/issues/5481#issuecomment-1730917119) at 2023-09-22 12:11 AM PDT -,2023-09-22T07:11:10Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1730917182) at 2023-09-22 12:11 AM PDT -,2023-09-22T07:11:13Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1730917245) at 2023-09-22 12:11 AM PDT -,2023-09-22T07:11:22Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1730917452) at 2023-09-22 12:11 AM PDT -,2023-09-23T05:48:44Z,- null commented on issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1732222931) at 2023-09-22 10:48 PM PDT -,2023-09-24T05:21:51Z,- null commented on issue: [5495](https://github.com/hackforla/website/issues/5495#issuecomment-1732480850) at 2023-09-23 10:21 PM PDT -,2023-09-24T05:22:08Z,- null commented on issue: [5492](https://github.com/hackforla/website/issues/5492#issuecomment-1732480881) at 2023-09-23 10:22 PM PDT -,2023-09-24T05:22:40Z,- null commented on issue: [5493](https://github.com/hackforla/website/issues/5493#issuecomment-1732481276) at 2023-09-23 10:22 PM PDT -,2023-09-24T05:23:31Z,- null commented on issue: [5499](https://github.com/hackforla/website/issues/5499#issuecomment-1732481920) at 2023-09-23 10:23 PM PDT -,2023-09-24T05:24:28Z,- null commented on issue: [5498](https://github.com/hackforla/website/issues/5498#issuecomment-1732483419) at 2023-09-23 10:24 PM PDT -,2023-09-24T05:25:00Z,- null commented on issue: [5496](https://github.com/hackforla/website/issues/5496#issuecomment-1732484353) at 2023-09-23 10:25 PM PDT -,2023-09-24T20:11:30Z,- null commented on issue: [5578](https://github.com/hackforla/website/issues/5578#issuecomment-1732659070) at 2023-09-24 01:11 PM PDT -,2023-09-24T20:16:42Z,- null commented on issue: [5579](https://github.com/hackforla/website/issues/5579#issuecomment-1732660049) at 2023-09-24 01:16 PM PDT -,2023-09-24T23:05:59Z,- null commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1732691844) at 2023-09-24 04:05 PM PDT -,2023-09-25T17:58:50Z,- null commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1734219960) at 2023-09-25 10:58 AM PDT -,2023-09-25T23:36:57Z,- null commented on issue: [5584](https://github.com/hackforla/website/issues/5584#issuecomment-1734609169) at 2023-09-25 04:36 PM PDT -,2023-09-25T23:42:23Z,- null commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1734613132) at 2023-09-25 04:42 PM PDT -,2023-09-26T01:17:19Z,- null commented on issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1734684750) at 2023-09-25 06:17 PM PDT -,2023-09-26T07:57:40Z,- null commented on issue: [5587](https://github.com/hackforla/website/issues/5587#issuecomment-1735023307) at 2023-09-26 12:57 AM PDT -,2023-09-26T08:10:43Z,- null commented on issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1735043248) at 2023-09-26 01:10 AM PDT -,2023-09-26T08:50:16Z,- null commented on issue: [5589](https://github.com/hackforla/website/issues/5589#issuecomment-1735105303) at 2023-09-26 01:50 AM PDT -,2023-09-26T09:02:51Z,- null commented on issue: [5590](https://github.com/hackforla/website/issues/5590#issuecomment-1735126389) at 2023-09-26 02:02 AM PDT -,2023-09-26T09:19:40Z,- null commented on issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1735154927) at 2023-09-26 02:19 AM PDT -,2023-09-26T16:32:47Z,- null commented on issue: [4888](https://github.com/hackforla/website/issues/4888#issuecomment-1735897678) at 2023-09-26 09:32 AM PDT -,2023-09-26T19:11:30Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1736139517) at 2023-09-26 12:11 PM PDT -,2023-09-26T19:33:30Z,- null commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1736168715) at 2023-09-26 12:33 PM PDT -,2023-09-26T20:20:40Z,- null commented on issue: [5338](https://github.com/hackforla/website/issues/5338#issuecomment-1736235898) at 2023-09-26 01:20 PM PDT -,2023-09-26T21:16:34Z,- null commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1736313500) at 2023-09-26 02:16 PM PDT -,2023-09-26T22:58:29Z,- null commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1736415228) at 2023-09-26 03:58 PM PDT -,2023-09-26T23:32:27Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1736440662) at 2023-09-26 04:32 PM PDT -,2023-09-27T01:58:38Z,- null commented on issue: [5594](https://github.com/hackforla/website/issues/5594#issuecomment-1736552080) at 2023-09-26 06:58 PM PDT -,2023-09-27T02:03:22Z,- null commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1736555761) at 2023-09-26 07:03 PM PDT -,2023-09-27T02:27:28Z,- null commented on issue: [5605](https://github.com/hackforla/website/issues/5605#issuecomment-1736572452) at 2023-09-26 07:27 PM PDT -,2023-09-27T02:29:38Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1736573844) at 2023-09-26 07:29 PM PDT -,2023-09-27T02:39:50Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1736584366) at 2023-09-26 07:39 PM PDT -,2023-09-27T02:48:07Z,- null commented on issue: [5608](https://github.com/hackforla/website/issues/5608#issuecomment-1736590368) at 2023-09-26 07:48 PM PDT -,2023-09-27T02:55:53Z,- null commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1736596053) at 2023-09-26 07:55 PM PDT -,2023-09-27T03:07:05Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1736603761) at 2023-09-26 08:07 PM PDT -,2023-09-27T03:08:45Z,- null commented on issue: [5172](https://github.com/hackforla/website/issues/5172#issuecomment-1736604725) at 2023-09-26 08:08 PM PDT -,2023-09-27T03:24:17Z,- null commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1736614220) at 2023-09-26 08:24 PM PDT -,2023-09-27T03:33:47Z,- null commented on issue: [5372](https://github.com/hackforla/website/issues/5372#issuecomment-1736619809) at 2023-09-26 08:33 PM PDT -,2023-09-27T03:34:46Z,- null commented on issue: [5373](https://github.com/hackforla/website/issues/5373#issuecomment-1736620354) at 2023-09-26 08:34 PM PDT -,2023-09-27T03:49:48Z,- null commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1736628965) at 2023-09-26 08:49 PM PDT -,2023-09-27T04:42:38Z,- null commented on issue: [5598](https://github.com/hackforla/website/issues/5598#issuecomment-1736667847) at 2023-09-26 09:42 PM PDT -,2023-09-27T16:28:13Z,- null commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1737722316) at 2023-09-27 09:28 AM PDT -,2023-09-27T16:29:12Z,- null commented on issue: [5600](https://github.com/hackforla/website/issues/5600#issuecomment-1737723792) at 2023-09-27 09:29 AM PDT -,2023-09-27T18:58:46Z,- null commented on issue: [5615](https://github.com/hackforla/website/issues/5615#issuecomment-1737924767) at 2023-09-27 11:58 AM PDT -,2023-09-27T18:58:47Z,- null commented on issue: [5615](https://github.com/hackforla/website/issues/5615#issuecomment-1737924788) at 2023-09-27 11:58 AM PDT -,2023-09-28T05:34:29Z,- null commented on issue: [5618](https://github.com/hackforla/website/issues/5618#issuecomment-1738492546) at 2023-09-27 10:34 PM PDT -,2023-09-28T13:26:32Z,- null commented on issue: [5596](https://github.com/hackforla/website/issues/5596#issuecomment-1739173534) at 2023-09-28 06:26 AM PDT -,2023-09-29T00:35:30Z,- null commented on issue: [5628](https://github.com/hackforla/website/issues/5628#issuecomment-1740160222) at 2023-09-28 05:35 PM PDT -,2023-09-29T00:42:17Z,- null commented on issue: [5629](https://github.com/hackforla/website/issues/5629#issuecomment-1740163998) at 2023-09-28 05:42 PM PDT -,2023-09-29T02:40:55Z,- null commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1740236488) at 2023-09-28 07:40 PM PDT -,2023-09-29T07:06:09Z,- null commented on issue: [5536](https://github.com/hackforla/website/issues/5536#issuecomment-1740406024) at 2023-09-29 12:06 AM PDT -,2023-09-29T07:06:53Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1740407302) at 2023-09-29 12:06 AM PDT -,2023-09-29T07:07:05Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1740407484) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:08Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1740407539) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:23Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1740407763) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:26Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1740407811) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:29Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1740407851) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:35Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1740407941) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:38Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1740407992) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:41Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1740408052) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:47Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1740408164) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:50Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1740408233) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:07:57Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1740408354) at 2023-09-29 12:07 AM PDT -,2023-09-29T07:08:01Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1740408414) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:04Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1740408456) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:07Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1740408508) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:10Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1740408566) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:13Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1740408607) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:23Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1740408757) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:26Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1740408808) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:29Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1740408864) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:33Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1740408913) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:36Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1740408964) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:39Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1740409007) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:42Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1740409071) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:47Z,- null commented on issue: [4972](https://github.com/hackforla/website/issues/4972#issuecomment-1740409147) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:50Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1740409204) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:08:53Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1740409253) at 2023-09-29 12:08 AM PDT -,2023-09-29T07:09:02Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1740409409) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:05Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1740409456) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:08Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1740409508) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:12Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1740409580) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:15Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1740409632) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:18Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1740409684) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:21Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1740409745) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:24Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1740409792) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:27Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1740409841) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:33Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1740409934) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:36Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1740409982) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:39Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1740410027) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:42Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1740410073) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:45Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1740410118) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:49Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1740410165) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:53Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1740410220) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:09:56Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1740410274) at 2023-09-29 12:09 AM PDT -,2023-09-29T07:10:00Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1740410326) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:05Z,- null commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1740410417) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:08Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1740410476) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:12Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1740410553) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:17Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1740410648) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:21Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1740410694) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:24Z,- null commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1740410747) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:27Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1740410804) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:30Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1740410860) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:34Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1740410926) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:39Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1740410995) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:45Z,- null commented on issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1740411089) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:49Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1740411150) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:55Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1740411243) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:10:59Z,- null commented on issue: [5481](https://github.com/hackforla/website/issues/5481#issuecomment-1740411303) at 2023-09-29 12:10 AM PDT -,2023-09-29T07:11:02Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1740411360) at 2023-09-29 12:11 AM PDT -,2023-09-29T07:11:13Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1740411510) at 2023-09-29 12:11 AM PDT -,2023-09-29T07:11:17Z,- null commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1740411583) at 2023-09-29 12:11 AM PDT -,2023-09-29T07:11:26Z,- null commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1740411769) at 2023-09-29 12:11 AM PDT -,2023-09-29T07:11:34Z,- null commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1740411906) at 2023-09-29 12:11 AM PDT -,2023-09-29T07:11:47Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1740412082) at 2023-09-29 12:11 AM PDT -,2023-09-29T09:58:42Z,- null commented on issue: [5631](https://github.com/hackforla/website/issues/5631#issuecomment-1740630155) at 2023-09-29 02:58 AM PDT -,2023-09-29T10:03:40Z,- null commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1740636251) at 2023-09-29 03:03 AM PDT -,2023-09-29T10:07:49Z,- null commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1740641138) at 2023-09-29 03:07 AM PDT -,2023-09-30T04:29:46Z,- null commented on issue: [5597](https://github.com/hackforla/website/issues/5597#issuecomment-1741674065) at 2023-09-29 09:29 PM PDT -,2023-09-30T04:30:43Z,- null commented on issue: [5497](https://github.com/hackforla/website/issues/5497#issuecomment-1741674222) at 2023-09-29 09:30 PM PDT -,2023-09-30T06:00:10Z,- null commented on issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1741689031) at 2023-09-29 11:00 PM PDT -,2023-09-30T14:10:25Z,- null commented on issue: [5603](https://github.com/hackforla/website/issues/5603#issuecomment-1741774924) at 2023-09-30 07:10 AM PDT -,2023-09-30T19:30:02Z,- null commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741843005) at 2023-09-30 12:30 PM PDT -,2023-09-30T20:00:09Z,- null commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1741848282) at 2023-09-30 01:00 PM PDT -,2023-09-30T20:04:17Z,- null commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741848969) at 2023-09-30 01:04 PM PDT -,2023-09-30T21:26:24Z,- null commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741862871) at 2023-09-30 02:26 PM PDT -,2023-09-30T22:12:24Z,- null commented on issue: [5439](https://github.com/hackforla/website/issues/5439#issuecomment-1741870385) at 2023-09-30 03:12 PM PDT -,2023-10-01T01:31:23Z,- null commented on issue: [5638](https://github.com/hackforla/website/issues/5638#issuecomment-1741916474) at 2023-09-30 06:31 PM PDT -,2023-10-01T08:15:07Z,- null commented on issue: [5639](https://github.com/hackforla/website/issues/5639#issuecomment-1742000701) at 2023-10-01 01:15 AM PDT -,2023-10-01T12:27:13Z,- null commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1742065576) at 2023-10-01 05:27 AM PDT -,2023-10-01T19:09:45Z,- null commented on issue: [5624](https://github.com/hackforla/website/issues/5624#issuecomment-1742171647) at 2023-10-01 12:09 PM PDT -,2023-10-02T00:57:18Z,- null commented on issue: [5318](https://github.com/hackforla/website/issues/5318#issuecomment-1742269583) at 2023-10-01 05:57 PM PDT -,2023-10-02T03:34:48Z,- null commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1742356878) at 2023-10-01 08:34 PM PDT -,2023-10-02T04:42:43Z,- null commented on issue: [5177](https://github.com/hackforla/website/issues/5177#issuecomment-1742391895) at 2023-10-01 09:42 PM PDT -,2023-10-02T06:16:19Z,- null commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1742448684) at 2023-10-01 11:16 PM PDT -,2023-10-02T16:52:52Z,- null commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1743389469) at 2023-10-02 09:52 AM PDT -,2023-10-02T18:32:55Z,- null commented on issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1743544983) at 2023-10-02 11:32 AM PDT -,2023-10-02T19:37:38Z,- null commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1743641509) at 2023-10-02 12:37 PM PDT -,2023-10-02T23:46:10Z,- null commented on issue: [5584](https://github.com/hackforla/website/issues/5584#issuecomment-1743928758) at 2023-10-02 04:46 PM PDT -,2023-10-03T00:44:46Z,- null commented on issue: [5619](https://github.com/hackforla/website/issues/5619#issuecomment-1743986746) at 2023-10-02 05:44 PM PDT -,2023-10-03T04:49:16Z,- null commented on issue: [5628](https://github.com/hackforla/website/issues/5628#issuecomment-1744205667) at 2023-10-02 09:49 PM PDT -,2023-10-03T06:52:11Z,- null commented on issue: [5629](https://github.com/hackforla/website/issues/5629#issuecomment-1744314639) at 2023-10-02 11:52 PM PDT -,2023-10-03T11:25:31Z,- null commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1744764821) at 2023-10-03 04:25 AM PDT -,2023-10-03T17:11:49Z,- null commented on issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1745395363) at 2023-10-03 10:11 AM PDT -,2023-10-03T18:20:00Z,- null commented on issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-1745493304) at 2023-10-03 11:20 AM PDT -,2023-10-03T18:33:57Z,- null commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1745513984) at 2023-10-03 11:33 AM PDT -,2023-10-03T18:36:11Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745517246) at 2023-10-03 11:36 AM PDT -,2023-10-03T18:49:21Z,- null commented on issue: [5655](https://github.com/hackforla/website/issues/5655#issuecomment-1745535329) at 2023-10-03 11:49 AM PDT -,2023-10-03T19:25:11Z,- null commented on issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1745586256) at 2023-10-03 12:25 PM PDT -,2023-10-04T00:58:28Z,- null commented on issue: [5631](https://github.com/hackforla/website/issues/5631#issuecomment-1745967500) at 2023-10-03 05:58 PM PDT -,2023-10-04T01:12:34Z,- null commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1745977276) at 2023-10-03 06:12 PM PDT -,2023-10-04T01:14:58Z,- null commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1745979190) at 2023-10-03 06:14 PM PDT -,2023-10-04T03:03:21Z,- null commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1746057708) at 2023-10-03 08:03 PM PDT -,2023-10-04T03:33:00Z,- null commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1746078873) at 2023-10-03 08:33 PM PDT -,2023-10-04T08:32:06Z,- null commented on issue: [5660](https://github.com/hackforla/website/issues/5660#issuecomment-1746393340) at 2023-10-04 01:32 AM PDT -,2023-10-04T15:26:11Z,- null commented on issue: [5621](https://github.com/hackforla/website/issues/5621#issuecomment-1747122894) at 2023-10-04 08:26 AM PDT -,2023-10-04T18:31:19Z,- null commented on issue: [5590](https://github.com/hackforla/website/issues/5590#issuecomment-1747430205) at 2023-10-04 11:31 AM PDT -,2023-10-04T21:32:21Z,- null commented on issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1747672364) at 2023-10-04 02:32 PM PDT -,2023-10-05T06:08:57Z,- null commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1748146382) at 2023-10-04 11:08 PM PDT -,2023-10-06T00:43:37Z,- null commented on issue: [5666](https://github.com/hackforla/website/issues/5666#issuecomment-1749838594) at 2023-10-05 05:43 PM PDT -,2023-10-06T07:06:12Z,- null commented on issue: [5536](https://github.com/hackforla/website/issues/5536#issuecomment-1750088464) at 2023-10-06 12:06 AM PDT -,2023-10-06T07:06:58Z,- null commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1750089311) at 2023-10-06 12:06 AM PDT -,2023-10-06T07:07:10Z,- null commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1750089517) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:13Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1750089590) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:25Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1750089815) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:28Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1750089895) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:32Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1750089967) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:35Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1750090041) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:38Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1750090105) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:42Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1750090179) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:46Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1750090257) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:52Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1750090376) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:07:56Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1750090430) at 2023-10-06 12:07 AM PDT -,2023-10-06T07:08:03Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1750090559) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:06Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1750090612) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:09Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1750090668) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:13Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1750090737) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:16Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1750090786) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:19Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1750090844) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:29Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1750091037) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:32Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1750091106) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:36Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1750091168) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:39Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1750091230) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:42Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1750091280) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:45Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1750091360) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:48Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1750091418) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:54Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1750091545) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:08:57Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1750091600) at 2023-10-06 12:08 AM PDT -,2023-10-06T07:09:08Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1750091783) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:11Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1750091850) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:15Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1750091912) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:19Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1750091978) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:22Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1750092033) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:25Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1750092085) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:28Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1750092136) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:31Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1750092201) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:34Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1750092255) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:40Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1750092343) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:43Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1750092403) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:46Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1750092479) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:51Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1750092558) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:55Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1750092624) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:09:58Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1750092677) at 2023-10-06 12:09 AM PDT -,2023-10-06T07:10:02Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1750092754) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:06Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1750092834) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:16Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1750093034) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:19Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1750093109) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:22Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1750093161) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:26Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1750093228) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:30Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1750093303) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:33Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1750093372) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:36Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1750093421) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:46Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1750093646) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:52Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1750093753) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:54Z,- null commented on issue: [5481](https://github.com/hackforla/website/issues/5481#issuecomment-1750093814) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:10:57Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1750093876) at 2023-10-06 12:10 AM PDT -,2023-10-06T07:11:00Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1750093921) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:06Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1750094011) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:11Z,- null commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1750094100) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:15Z,- null commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1750094159) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:20Z,- null commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1750094275) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:23Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1750094331) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:27Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1750094381) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:33Z,- null commented on issue: [4506](https://github.com/hackforla/website/issues/4506#issuecomment-1750094491) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:36Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1750094550) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:39Z,- null commented on issue: [5608](https://github.com/hackforla/website/issues/5608#issuecomment-1750094615) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:43Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1750094667) at 2023-10-06 12:11 AM PDT -,2023-10-06T07:11:46Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1750094732) at 2023-10-06 12:11 AM PDT -,2023-10-06T17:11:02Z,- null commented on issue: [5623](https://github.com/hackforla/website/issues/5623#issuecomment-1751127499) at 2023-10-06 10:11 AM PDT -,2023-10-08T03:24:28Z,- null commented on issue: [5617](https://github.com/hackforla/website/issues/5617#issuecomment-1751906914) at 2023-10-07 08:24 PM PDT -,2023-10-08T08:04:37Z,- null commented on issue: [5673](https://github.com/hackforla/website/issues/5673#issuecomment-1751955451) at 2023-10-08 01:04 AM PDT -,2023-10-08T08:22:06Z,- null commented on issue: [5674](https://github.com/hackforla/website/issues/5674#issuecomment-1751959664) at 2023-10-08 01:22 AM PDT -,2023-10-08T09:26:51Z,- null commented on issue: [5675](https://github.com/hackforla/website/issues/5675#issuecomment-1751975061) at 2023-10-08 02:26 AM PDT -,2023-10-08T09:36:22Z,- null commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1751977003) at 2023-10-08 02:36 AM PDT -,2023-10-08T18:40:06Z,- null commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1752126495) at 2023-10-08 11:40 AM PDT -,2023-10-08T19:01:32Z,- null commented on issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1752132456) at 2023-10-08 12:01 PM PDT -,2023-10-08T19:03:50Z,- null commented on issue: [5680](https://github.com/hackforla/website/issues/5680#issuecomment-1752133159) at 2023-10-08 12:03 PM PDT -,2023-10-08T19:10:02Z,- null commented on issue: [5681](https://github.com/hackforla/website/issues/5681#issuecomment-1752135453) at 2023-10-08 12:10 PM PDT -,2023-10-08T19:14:21Z,- null commented on issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1752136712) at 2023-10-08 12:14 PM PDT -,2023-10-09T04:38:30Z,- null commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1752336147) at 2023-10-08 09:38 PM PDT -,2023-10-09T06:18:28Z,- null commented on issue: [5684](https://github.com/hackforla/website/issues/5684#issuecomment-1752402265) at 2023-10-08 11:18 PM PDT -,2023-10-09T06:23:46Z,- null commented on issue: [5685](https://github.com/hackforla/website/issues/5685#issuecomment-1752407022) at 2023-10-08 11:23 PM PDT -,2023-10-09T06:27:01Z,- null commented on issue: [5686](https://github.com/hackforla/website/issues/5686#issuecomment-1752409895) at 2023-10-08 11:27 PM PDT -,2023-10-09T06:31:04Z,- null commented on issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1752413637) at 2023-10-08 11:31 PM PDT -,2023-10-09T09:14:47Z,- null commented on issue: [5541](https://github.com/hackforla/website/issues/5541#issuecomment-1752620351) at 2023-10-09 02:14 AM PDT -,2023-10-09T18:59:35Z,- null commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1753502374) at 2023-10-09 11:59 AM PDT -,2023-10-10T00:55:23Z,- null commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1754135982) at 2023-10-09 05:55 PM PDT -,2023-10-10T01:01:47Z,- null commented on issue: [4778](https://github.com/hackforla/website/issues/4778#issuecomment-1754146806) at 2023-10-09 06:01 PM PDT -,2023-10-10T09:29:37Z,- null commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1754811988) at 2023-10-10 02:29 AM PDT -,2023-10-11T22:29:58Z,- null commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1758635189) at 2023-10-11 03:29 PM PDT -,2023-10-11T23:37:21Z,- null commented on issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-1758696153) at 2023-10-11 04:37 PM PDT -,2023-10-12T07:55:29Z,- null commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1759116583) at 2023-10-12 12:55 AM PDT -,2023-10-12T16:41:45Z,- null commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1759980661) at 2023-10-12 09:41 AM PDT -,2023-10-13T07:06:27Z,- null commented on issue: [5536](https://github.com/hackforla/website/issues/5536#issuecomment-1761013539) at 2023-10-13 12:06 AM PDT -,2023-10-13T07:07:33Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1761014831) at 2023-10-13 12:07 AM PDT -,2023-10-13T07:07:47Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1761015099) at 2023-10-13 12:07 AM PDT -,2023-10-13T07:07:50Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1761015160) at 2023-10-13 12:07 AM PDT -,2023-10-13T07:07:54Z,- null commented on issue: [4612](https://github.com/hackforla/website/issues/4612#issuecomment-1761015239) at 2023-10-13 12:07 AM PDT -,2023-10-13T07:08:00Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1761015346) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:04Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1761015423) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:08Z,- null commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1761015498) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:13Z,- null commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1761015607) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:16Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1761015671) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:20Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1761015746) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:28Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1761015877) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:31Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1761015933) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:35Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1761015994) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:38Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1761016062) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:42Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1761016118) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:45Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1761016168) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:55Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1761016349) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:08:59Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1761016419) at 2023-10-13 12:08 AM PDT -,2023-10-13T07:09:02Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1761016490) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:06Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1761016573) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:09Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1761016654) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:13Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1761016725) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:16Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1761016783) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:22Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1761016882) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:25Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1761016968) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:40Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1761017234) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:43Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1761017300) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:47Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1761017368) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:52Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1761017460) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:55Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1761017534) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:09:58Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1761017610) at 2023-10-13 12:09 AM PDT -,2023-10-13T07:10:02Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1761017679) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:05Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1761017759) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:09Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1761017821) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:15Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1761017940) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:19Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1761017997) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:23Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1761018052) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:28Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1761018157) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:32Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1761018226) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:36Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1761018324) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:40Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1761018403) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:44Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1761018466) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:51Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1761018592) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:55Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1761018665) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:10:59Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1761018713) at 2023-10-13 12:10 AM PDT -,2023-10-13T07:11:02Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1761018782) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:06Z,- null commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1761018853) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:09Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1761018916) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:13Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1761019004) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:17Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1761019084) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:22Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1761019192) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:29Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1761019350) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:35Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1761019440) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:38Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1761019498) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:45Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1761019626) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:49Z,- null commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1761019707) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:52Z,- null commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1761019745) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:11:59Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1761019873) at 2023-10-13 12:11 AM PDT -,2023-10-13T07:12:04Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1761019957) at 2023-10-13 12:12 AM PDT -,2023-10-13T07:12:08Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1761020051) at 2023-10-13 12:12 AM PDT -,2023-10-13T07:12:12Z,- null commented on issue: [4506](https://github.com/hackforla/website/issues/4506#issuecomment-1761020138) at 2023-10-13 12:12 AM PDT -,2023-10-13T07:12:16Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1761020210) at 2023-10-13 12:12 AM PDT -,2023-10-13T07:12:21Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1761020302) at 2023-10-13 12:12 AM PDT -,2023-10-13T07:12:25Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1761020390) at 2023-10-13 12:12 AM PDT -,2023-10-13T07:12:52Z,- null commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1761020933) at 2023-10-13 12:12 AM PDT -,2023-10-13T21:12:36Z,- null commented on issue: [5703](https://github.com/hackforla/website/issues/5703#issuecomment-1762234496) at 2023-10-13 02:12 PM PDT -,2023-10-14T15:29:51Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762967831) at 2023-10-14 08:29 AM PDT -,2023-10-15T15:27:35Z,- null commented on issue: [5675](https://github.com/hackforla/website/issues/5675#issuecomment-1763424101) at 2023-10-15 08:27 AM PDT -,2023-10-15T17:38:44Z,- null commented on issue: [4785](https://github.com/hackforla/website/issues/4785#issuecomment-1763456771) at 2023-10-15 10:38 AM PDT -,2023-10-15T17:52:39Z,- null commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1763460135) at 2023-10-15 10:52 AM PDT -,2023-10-15T19:51:36Z,- null commented on issue: [5705](https://github.com/hackforla/website/issues/5705#issuecomment-1763488125) at 2023-10-15 12:51 PM PDT -,2023-10-15T20:50:24Z,- null commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1763500722) at 2023-10-15 01:50 PM PDT -,2023-10-15T21:02:54Z,- null commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1763503206) at 2023-10-15 02:02 PM PDT -,2023-10-16T04:50:00Z,- null commented on issue: [5708](https://github.com/hackforla/website/issues/5708#issuecomment-1763721188) at 2023-10-15 09:50 PM PDT -,2023-10-16T04:53:10Z,- null commented on issue: [5709](https://github.com/hackforla/website/issues/5709#issuecomment-1763723604) at 2023-10-15 09:53 PM PDT -,2023-10-16T04:56:33Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1763726158) at 2023-10-15 09:56 PM PDT -,2023-10-16T05:00:04Z,- null commented on issue: [5711](https://github.com/hackforla/website/issues/5711#issuecomment-1763728563) at 2023-10-15 10:00 PM PDT -,2023-10-16T05:25:17Z,- null commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1763747429) at 2023-10-15 10:25 PM PDT -,2023-10-16T06:30:45Z,- null commented on issue: [5713](https://github.com/hackforla/website/issues/5713#issuecomment-1763813931) at 2023-10-15 11:30 PM PDT -,2023-10-16T06:42:50Z,- null commented on issue: [5714](https://github.com/hackforla/website/issues/5714#issuecomment-1763829542) at 2023-10-15 11:42 PM PDT -,2023-10-16T06:46:03Z,- null commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1763833264) at 2023-10-15 11:46 PM PDT -,2023-10-16T12:16:12Z,- null commented on issue: [5716](https://github.com/hackforla/website/issues/5716#issuecomment-1764348660) at 2023-10-16 05:16 AM PDT -,2023-10-16T13:56:02Z,- null commented on issue: [5717](https://github.com/hackforla/website/issues/5717#issuecomment-1764539174) at 2023-10-16 06:56 AM PDT -,2023-10-17T02:29:53Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1765557555) at 2023-10-16 07:29 PM PDT -,2023-10-17T02:37:18Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1765562761) at 2023-10-16 07:37 PM PDT -,2023-10-17T02:39:33Z,- null commented on issue: [5723](https://github.com/hackforla/website/issues/5723#issuecomment-1765564335) at 2023-10-16 07:39 PM PDT -,2023-10-17T03:05:48Z,- null commented on issue: [5725](https://github.com/hackforla/website/issues/5725#issuecomment-1765588873) at 2023-10-16 08:05 PM PDT -,2023-10-17T03:11:35Z,- null commented on issue: [5726](https://github.com/hackforla/website/issues/5726#issuecomment-1765593329) at 2023-10-16 08:11 PM PDT -,2023-10-17T03:11:40Z,- null commented on issue: [5726](https://github.com/hackforla/website/issues/5726#issuecomment-1765593407) at 2023-10-16 08:11 PM PDT -,2023-10-17T03:18:41Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1765598859) at 2023-10-16 08:18 PM PDT -,2023-10-17T03:24:22Z,- null opened issue: [5728](https://github.com/hackforla/website/issues/5728) at 2023-10-16 08:24 PM PDT -,2023-10-17T03:27:07Z,- null closed issue as completed: [5728](https://github.com/hackforla/website/issues/5728#event-10672745346) at 2023-10-16 08:27 PM PDT -,2023-10-17T03:38:17Z,- null commented on issue: [5729](https://github.com/hackforla/website/issues/5729#issuecomment-1765612157) at 2023-10-16 08:38 PM PDT -,2023-10-17T03:38:22Z,- null commented on issue: [5729](https://github.com/hackforla/website/issues/5729#issuecomment-1765612200) at 2023-10-16 08:38 PM PDT -,2023-10-17T04:02:46Z,- null commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1765627615) at 2023-10-16 09:02 PM PDT -,2023-10-17T05:50:46Z,- null commented on issue: [5730](https://github.com/hackforla/website/issues/5730#issuecomment-1765712945) at 2023-10-16 10:50 PM PDT -,2023-10-17T10:43:15Z,- null commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1766153509) at 2023-10-17 03:43 AM PDT -,2023-10-17T18:18:29Z,- null commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1766932511) at 2023-10-17 11:18 AM PDT -,2023-10-18T00:27:29Z,- null commented on issue: [5166](https://github.com/hackforla/website/issues/5166#issuecomment-1767398309) at 2023-10-17 05:27 PM PDT -,2023-10-19T02:12:57Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1769779891) at 2023-10-18 07:12 PM PDT -,2023-10-20T02:47:52Z,- null commented on issue: [5620](https://github.com/hackforla/website/issues/5620#issuecomment-1771992733) at 2023-10-19 07:47 PM PDT -,2023-10-20T07:07:00Z,- null commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1772198970) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:11Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1772199173) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:14Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1772199248) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:17Z,- null commented on issue: [4676](https://github.com/hackforla/website/issues/4676#issuecomment-1772199311) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:19Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1772199351) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:22Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1772199397) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:32Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1772199636) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:34Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1772199707) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:40Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1772199816) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:42Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1772199863) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:45Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1772199916) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:47Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1772199962) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:50Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1772200003) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:07:52Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1772200049) at 2023-10-20 12:07 AM PDT -,2023-10-20T07:08:02Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1772200222) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:04Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1772200265) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:06Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1772200302) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:09Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1772200339) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:11Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1772200378) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:15Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1772200433) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:18Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1772200478) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:20Z,- null commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1772200538) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:23Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1772200580) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:25Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1772200640) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:34Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1772200801) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:37Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1772200847) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:39Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1772200893) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:42Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1772200938) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:45Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1772200975) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:47Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1772201024) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:49Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1772201065) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:52Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1772201107) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:08:54Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1772201150) at 2023-10-20 12:08 AM PDT -,2023-10-20T07:09:00Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1772201252) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:03Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1772201339) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:06Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1772201377) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:08Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1772201423) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:11Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1772201472) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:13Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1772201520) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:18Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1772201593) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:22Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1772201654) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:25Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1772201703) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:31Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1772201808) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:33Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1772201848) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:36Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1772201883) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:38Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1772201922) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:41Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1772201969) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:43Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1772202016) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:47Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1772202084) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:53Z,- null commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1772202202) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:57Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1772202278) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:09:59Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1772202319) at 2023-10-20 12:09 AM PDT -,2023-10-20T07:10:02Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1772202376) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:05Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1772202431) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:09Z,- null commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1772202497) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:12Z,- null commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1772202539) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:14Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1772202582) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:17Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1772202639) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:20Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1772202702) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:23Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1772202744) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:25Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1772202804) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:28Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1772202843) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:37Z,- null commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1772203019) at 2023-10-20 12:10 AM PDT -,2023-10-20T07:10:39Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1772203075) at 2023-10-20 12:10 AM PDT -,2023-10-20T17:42:12Z,- null commented on issue: [5618](https://github.com/hackforla/website/issues/5618#issuecomment-1773143558) at 2023-10-20 10:42 AM PDT -,2023-10-20T19:27:14Z,- null commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1773287323) at 2023-10-20 12:27 PM PDT -,2023-10-21T01:05:15Z,- null commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1773577318) at 2023-10-20 06:05 PM PDT -,2023-10-22T05:06:55Z,- null commented on issue: [5749](https://github.com/hackforla/website/issues/5749#issuecomment-1773996041) at 2023-10-21 10:06 PM PDT -,2023-10-22T12:28:29Z,- null commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1774081559) at 2023-10-22 05:28 AM PDT -,2023-10-22T17:11:58Z,- null commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1774148365) at 2023-10-22 10:11 AM PDT -,2023-10-23T22:29:37Z,- null commented on issue: [5713](https://github.com/hackforla/website/issues/5713#issuecomment-1776123114) at 2023-10-23 03:29 PM PDT -,2023-10-24T00:58:06Z,- null commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1776287854) at 2023-10-23 05:58 PM PDT -,2023-10-24T03:09:49Z,- null commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1776429913) at 2023-10-23 08:09 PM PDT -,2023-10-24T07:08:35Z,- null commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1776646004) at 2023-10-24 12:08 AM PDT -,2023-10-24T15:25:10Z,- null commented on issue: [5763](https://github.com/hackforla/website/issues/5763#issuecomment-1777479464) at 2023-10-24 08:25 AM PDT -,2023-10-24T22:41:13Z,- null commented on issue: [5753](https://github.com/hackforla/website/issues/5753#issuecomment-1778162406) at 2023-10-24 03:41 PM PDT -,2023-10-24T23:01:35Z,- null commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1778188642) at 2023-10-24 04:01 PM PDT -,2023-10-25T02:35:25Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1778407554) at 2023-10-24 07:35 PM PDT -,2023-10-25T02:42:48Z,- null commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1778413348) at 2023-10-24 07:42 PM PDT -,2023-10-25T02:45:57Z,- null commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1778415576) at 2023-10-24 07:45 PM PDT -,2023-10-25T02:48:23Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1778417484) at 2023-10-24 07:48 PM PDT -,2023-10-25T02:48:51Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1778417833) at 2023-10-24 07:48 PM PDT -,2023-10-25T02:51:25Z,- null commented on issue: [5777](https://github.com/hackforla/website/issues/5777#issuecomment-1778420049) at 2023-10-24 07:51 PM PDT -,2023-10-25T02:51:33Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1778420161) at 2023-10-24 07:51 PM PDT -,2023-10-25T02:55:01Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1778422792) at 2023-10-24 07:55 PM PDT -,2023-10-25T02:55:17Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1778422985) at 2023-10-24 07:55 PM PDT -,2023-10-25T03:00:46Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1778427406) at 2023-10-24 08:00 PM PDT -,2023-10-25T03:13:18Z,- null commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1778437064) at 2023-10-24 08:13 PM PDT -,2023-10-25T03:15:46Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1778438791) at 2023-10-24 08:15 PM PDT -,2023-10-25T17:44:01Z,- null commented on issue: [5738](https://github.com/hackforla/website/issues/5738#issuecomment-1779760888) at 2023-10-25 10:44 AM PDT -,2023-10-25T22:57:11Z,- null commented on issue: [5756](https://github.com/hackforla/website/issues/5756#issuecomment-1780169555) at 2023-10-25 03:57 PM PDT -,2023-10-26T01:29:42Z,- null commented on issue: [5759](https://github.com/hackforla/website/issues/5759#issuecomment-1780276421) at 2023-10-25 06:29 PM PDT -,2023-10-26T17:22:20Z,- null commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1781533703) at 2023-10-26 10:22 AM PDT -,2023-10-27T05:30:18Z,- null commented on issue: [5754](https://github.com/hackforla/website/issues/5754#issuecomment-1782319324) at 2023-10-26 10:30 PM PDT -,2023-10-27T05:56:02Z,- null commented on issue: [5757](https://github.com/hackforla/website/issues/5757#issuecomment-1782340328) at 2023-10-26 10:56 PM PDT -,2023-10-27T07:07:03Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1782408240) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:06Z,- null commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1782408299) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:12Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1782408381) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:15Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1782408440) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:26Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1782408649) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:29Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1782408713) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:33Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1782408761) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:39Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1782408876) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:44Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1782408965) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:47Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1782409010) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:50Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1782409069) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:53Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1782409123) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:07:56Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1782409173) at 2023-10-27 12:07 AM PDT -,2023-10-27T07:08:02Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1782409289) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:07Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1782409366) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:10Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1782409424) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:13Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1782409479) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:16Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1782409525) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:19Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1782409556) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:22Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1782409612) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:27Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1782409697) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:29Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1782409755) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:40Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1782409933) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:43Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1782409989) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:46Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1782410037) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:50Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1782410106) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:54Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1782410168) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:08:57Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1782410214) at 2023-10-27 12:08 AM PDT -,2023-10-27T07:09:00Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1782410258) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:02Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1782410311) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:05Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1782410355) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:10Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1782410439) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:13Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1782410487) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:16Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1782410546) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:20Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1782410613) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:23Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1782410672) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:26Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1782410717) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:30Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1782410777) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:34Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1782410848) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:37Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1782410892) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:44Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1782411008) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:47Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1782411063) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:50Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1782411129) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:52Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1782411184) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:55Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1782411238) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:09:58Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1782411288) at 2023-10-27 12:09 AM PDT -,2023-10-27T07:10:02Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1782411355) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:13Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1782411561) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:16Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1782411611) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:21Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1782411692) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:26Z,- null commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1782411766) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:28Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1782411811) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:32Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1782411884) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:35Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1782411940) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:38Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1782411991) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:41Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1782412051) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:44Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1782412104) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:10:57Z,- null commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1782412371) at 2023-10-27 12:10 AM PDT -,2023-10-27T07:11:00Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1782412420) at 2023-10-27 12:11 AM PDT -,2023-10-27T07:11:06Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1782412531) at 2023-10-27 12:11 AM PDT -,2023-10-27T07:11:09Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1782412584) at 2023-10-27 12:11 AM PDT -,2023-10-27T07:33:02Z,- null commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1782439608) at 2023-10-27 12:33 AM PDT -,2023-10-28T02:20:54Z,- null commented on issue: [5311](https://github.com/hackforla/website/issues/5311#issuecomment-1783668171) at 2023-10-27 07:20 PM PDT -,2023-10-29T18:43:31Z,- null commented on issue: [5790](https://github.com/hackforla/website/issues/5790#issuecomment-1784194086) at 2023-10-29 11:43 AM PDT -,2023-10-30T21:53:21Z,- null commented on issue: [5760](https://github.com/hackforla/website/issues/5760#issuecomment-1786105928) at 2023-10-30 02:53 PM PDT -,2023-10-30T22:25:33Z,- null commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786141205) at 2023-10-30 03:25 PM PDT -,2023-10-30T22:51:38Z,- null commented on issue: [5812](https://github.com/hackforla/website/issues/5812#issuecomment-1786169461) at 2023-10-30 03:51 PM PDT -,2023-10-30T23:23:21Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786197721) at 2023-10-30 04:23 PM PDT -,2023-10-31T00:19:50Z,- null commented on issue: [5814](https://github.com/hackforla/website/issues/5814#issuecomment-1786244118) at 2023-10-30 05:19 PM PDT -,2023-10-31T01:07:36Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1786276646) at 2023-10-30 06:07 PM PDT -,2023-11-01T07:08:57Z,- null commented on issue: [5819](https://github.com/hackforla/website/issues/5819#issuecomment-1788512688) at 2023-11-01 12:08 AM PDT -,2023-11-01T19:41:24Z,- null commented on issue: [5761](https://github.com/hackforla/website/issues/5761#issuecomment-1789550405) at 2023-11-01 12:41 PM PDT -,2023-11-01T20:49:40Z,- null commented on issue: [5762](https://github.com/hackforla/website/issues/5762#issuecomment-1789660764) at 2023-11-01 01:49 PM PDT -,2023-11-01T20:58:26Z,- null commented on issue: [5790](https://github.com/hackforla/website/issues/5790#issuecomment-1789675325) at 2023-11-01 01:58 PM PDT -,2023-11-02T07:43:43Z,- null commented on issue: [5826](https://github.com/hackforla/website/issues/5826#issuecomment-1790222650) at 2023-11-02 12:43 AM PDT -,2023-11-02T07:56:42Z,- null commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1790236798) at 2023-11-02 12:56 AM PDT -,2023-11-02T08:19:21Z,- null commented on issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1790264857) at 2023-11-02 01:19 AM PDT -,2023-11-03T01:40:17Z,- null commented on issue: [5737](https://github.com/hackforla/website/issues/5737#issuecomment-1791784618) at 2023-11-02 06:40 PM PDT -,2023-11-03T02:35:49Z,- null commented on issue: [5805](https://github.com/hackforla/website/issues/5805#issuecomment-1791826552) at 2023-11-02 07:35 PM PDT -,2023-11-03T05:23:29Z,- null commented on issue: [5829](https://github.com/hackforla/website/issues/5829#issuecomment-1791908162) at 2023-11-02 10:23 PM PDT -,2023-11-03T05:55:00Z,- null commented on issue: [5830](https://github.com/hackforla/website/issues/5830#issuecomment-1791925003) at 2023-11-02 10:55 PM PDT -,2023-11-03T07:07:23Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1791969257) at 2023-11-03 12:07 AM PDT -,2023-11-03T07:07:30Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1791969352) at 2023-11-03 12:07 AM PDT -,2023-11-03T07:07:33Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1791969387) at 2023-11-03 12:07 AM PDT -,2023-11-03T07:07:44Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1791969492) at 2023-11-03 12:07 AM PDT -,2023-11-03T07:07:47Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1791969530) at 2023-11-03 12:07 AM PDT -,2023-11-03T07:07:50Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1791969576) at 2023-11-03 12:07 AM PDT -,2023-11-03T07:07:58Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1791969661) at 2023-11-03 12:07 AM PDT -,2023-11-03T07:08:01Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1791969694) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:04Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1791969728) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:08Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1791969763) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:11Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1791969790) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:15Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1791969838) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:24Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1791969955) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:27Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1791969982) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:30Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1791970018) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:33Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1791970057) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:36Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1791970097) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:39Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1791970126) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:43Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1791970163) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:47Z,- null commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1791970208) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:50Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1791970240) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:08:53Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1791970283) at 2023-11-03 12:08 AM PDT -,2023-11-03T07:09:03Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1791970397) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:06Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1791970430) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:09Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1791970467) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:13Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1791970506) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:16Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1791970535) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:19Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1791970561) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:22Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1791970587) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:25Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1791970623) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:28Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1791970652) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:34Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1791970724) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:37Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1791970758) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:40Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1791970794) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:43Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1791970827) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:46Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1791970867) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:49Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1791970896) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:53Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1791970943) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:56Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1791970983) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:09:59Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1791971032) at 2023-11-03 12:09 AM PDT -,2023-11-03T07:10:03Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1791971073) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:06Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1791971117) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:09Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1791971151) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:12Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1791971182) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:15Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1791971209) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:18Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1791971242) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:22Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1791971271) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:35Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1791971399) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:38Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1791971427) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:41Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1791971463) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:44Z,- null commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1791971500) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:51Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1791971585) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:55Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1791971627) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:10:58Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1791971655) at 2023-11-03 12:10 AM PDT -,2023-11-03T07:11:01Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1791971693) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:04Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1791971724) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:07Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1791971758) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:14Z,- null commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1791971858) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:17Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1791971890) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:20Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1791971928) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:25Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1791971979) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:29Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1791972027) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:33Z,- null commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1791972071) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:38Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1791972129) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:44Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1791972197) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:47Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1791972239) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:51Z,- null commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1791972264) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:54Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1791972283) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:11:57Z,- null commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1791972314) at 2023-11-03 12:11 AM PDT -,2023-11-03T07:35:26Z,- null commented on issue: [5831](https://github.com/hackforla/website/issues/5831#issuecomment-1791990110) at 2023-11-03 12:35 AM PDT -,2023-11-03T07:58:16Z,- null commented on issue: [5792](https://github.com/hackforla/website/issues/5792#issuecomment-1792009285) at 2023-11-03 12:58 AM PDT -,2023-11-03T20:40:38Z,- null commented on issue: [5830](https://github.com/hackforla/website/issues/5830#issuecomment-1793068439) at 2023-11-03 01:40 PM PDT -,2023-11-04T04:55:00Z,- null commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1793340003) at 2023-11-03 08:55 PM PST -,2023-11-04T04:55:13Z,- null commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1793340035) at 2023-11-03 08:55 PM PST -,2023-11-04T04:57:41Z,- null commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1793340524) at 2023-11-03 08:57 PM PST -,2023-11-05T13:08:45Z,- null commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1793732878) at 2023-11-05 05:08 AM PST -,2023-11-05T18:07:13Z,- null commented on issue: [5852](https://github.com/hackforla/website/issues/5852#issuecomment-1793806469) at 2023-11-05 10:07 AM PST -,2023-11-06T19:32:07Z,- null commented on issue: [5755](https://github.com/hackforla/website/issues/5755#issuecomment-1796160152) at 2023-11-06 11:32 AM PST -,2023-11-06T22:26:40Z,- null commented on issue: [5333](https://github.com/hackforla/website/issues/5333#issuecomment-1796891902) at 2023-11-06 02:26 PM PST -,2023-11-07T01:04:46Z,- null commented on issue: [5856](https://github.com/hackforla/website/issues/5856#issuecomment-1797108465) at 2023-11-06 05:04 PM PST -,2023-11-07T03:59:20Z,- null commented on issue: [5864](https://github.com/hackforla/website/issues/5864#issuecomment-1797710751) at 2023-11-06 07:59 PM PST -,2023-11-07T04:01:51Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1797713302) at 2023-11-06 08:01 PM PST -,2023-11-07T04:03:09Z,- null commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1797714527) at 2023-11-06 08:03 PM PST -,2023-11-07T04:03:49Z,- null commented on issue: [5868](https://github.com/hackforla/website/issues/5868#issuecomment-1797715249) at 2023-11-06 08:03 PM PST -,2023-11-07T04:20:44Z,- null commented on issue: [5869](https://github.com/hackforla/website/issues/5869#issuecomment-1797787089) at 2023-11-06 08:20 PM PST -,2023-11-07T04:24:49Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1797801854) at 2023-11-06 08:24 PM PST -,2023-11-07T04:25:04Z,- null commented on issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1797802085) at 2023-11-06 08:25 PM PST -,2023-11-07T04:25:04Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1797802095) at 2023-11-06 08:25 PM PST -,2023-11-07T04:37:36Z,- null commented on issue: [5872](https://github.com/hackforla/website/issues/5872#issuecomment-1797811336) at 2023-11-06 08:37 PM PST -,2023-11-07T04:48:47Z,- null commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1797818529) at 2023-11-06 08:48 PM PST -,2023-11-07T04:56:38Z,- null commented on issue: [5874](https://github.com/hackforla/website/issues/5874#issuecomment-1797823731) at 2023-11-06 08:56 PM PST -,2023-11-07T05:13:57Z,- null commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1797836454) at 2023-11-06 09:13 PM PST -,2023-11-07T17:23:48Z,- null commented on issue: [5730](https://github.com/hackforla/website/issues/5730#issuecomment-1799284308) at 2023-11-07 09:23 AM PST -,2023-11-08T00:43:17Z,- null commented on issue: [5878](https://github.com/hackforla/website/issues/5878#issuecomment-1800787717) at 2023-11-07 04:43 PM PST -,2023-11-08T00:52:09Z,- null commented on issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1800817242) at 2023-11-07 04:52 PM PST -,2023-11-08T00:55:34Z,- null commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1800822421) at 2023-11-07 04:55 PM PST -,2023-11-08T01:00:14Z,- null commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1800827595) at 2023-11-07 05:00 PM PST -,2023-11-08T01:04:11Z,- null commented on issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1800836971) at 2023-11-07 05:04 PM PST -,2023-11-08T02:36:07Z,- null commented on issue: [5752](https://github.com/hackforla/website/issues/5752#issuecomment-1800914913) at 2023-11-07 06:36 PM PST -,2023-11-08T02:58:47Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1800931676) at 2023-11-07 06:58 PM PST -,2023-11-08T22:48:44Z,- null commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1802818237) at 2023-11-08 02:48 PM PST -,2023-11-09T00:43:59Z,- null commented on issue: [5808](https://github.com/hackforla/website/issues/5808#issuecomment-1802986527) at 2023-11-08 04:43 PM PST -,2023-11-09T01:18:31Z,- null commented on issue: [5345](https://github.com/hackforla/website/issues/5345#issuecomment-1803012926) at 2023-11-08 05:18 PM PST -,2023-11-09T01:34:41Z,- null commented on issue: [5854](https://github.com/hackforla/website/issues/5854#issuecomment-1803024530) at 2023-11-08 05:34 PM PST -,2023-11-09T01:54:22Z,- null commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1803041512) at 2023-11-08 05:54 PM PST -,2023-11-09T18:39:38Z,- null commented on issue: [5806](https://github.com/hackforla/website/issues/5806#issuecomment-1804363445) at 2023-11-09 10:39 AM PST -,2023-11-10T00:37:14Z,- null commented on issue: [5770](https://github.com/hackforla/website/issues/5770#issuecomment-1804893482) at 2023-11-09 04:37 PM PST -,2023-11-10T03:08:42Z,- null commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1805006007) at 2023-11-09 07:08 PM PST -,2023-11-10T03:11:24Z,- null commented on issue: [5829](https://github.com/hackforla/website/issues/5829#issuecomment-1805007784) at 2023-11-09 07:11 PM PST -,2023-11-10T07:06:09Z,- null commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1805208187) at 2023-11-09 11:06 PM PST -,2023-11-10T07:07:26Z,- null commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1805209295) at 2023-11-09 11:07 PM PST -,2023-11-10T07:07:34Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1805209428) at 2023-11-09 11:07 PM PST -,2023-11-10T07:07:38Z,- null commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1805209480) at 2023-11-09 11:07 PM PST -,2023-11-10T07:07:49Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1805209694) at 2023-11-09 11:07 PM PST -,2023-11-10T07:07:53Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1805209749) at 2023-11-09 11:07 PM PST -,2023-11-10T07:07:57Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1805209814) at 2023-11-09 11:07 PM PST -,2023-11-10T07:08:05Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1805209923) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:09Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1805209976) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:13Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1805210034) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:16Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1805210082) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:19Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1805210126) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:22Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1805210165) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:26Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1805210211) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:29Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1805210265) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:33Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1805210313) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:36Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1805210370) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:39Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1805210428) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:43Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1805210477) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:46Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1805210541) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:50Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1805210633) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:53Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1805210736) at 2023-11-09 11:08 PM PST -,2023-11-10T07:08:56Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1805210819) at 2023-11-09 11:08 PM PST -,2023-11-10T07:09:07Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1805210952) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:10Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1805211011) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:14Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1805211050) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:18Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1805211117) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:22Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1805211174) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:25Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1805211210) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:28Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1805211252) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:32Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1805211297) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:35Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1805211340) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:42Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1805211423) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:45Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1805211463) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:48Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1805211510) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:52Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1805211567) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:55Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1805211616) at 2023-11-09 11:09 PM PST -,2023-11-10T07:09:58Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1805211658) at 2023-11-09 11:09 PM PST -,2023-11-10T07:10:03Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1805211714) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:07Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1805211776) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:11Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1805211823) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:15Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1805211881) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:18Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1805211912) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:22Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1805211978) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:25Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1805212043) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:29Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1805212083) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:32Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1805212132) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:37Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1805212189) at 2023-11-09 11:10 PM PST -,2023-11-10T07:10:53Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1805212436) at 2023-11-09 11:10 PM PST -,2023-11-10T07:11:03Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1805212610) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:07Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1805212679) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:11Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1805212738) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:14Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1805212779) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:18Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1805212824) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:21Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1805212872) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:28Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1805212976) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:32Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1805213026) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:37Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1805213085) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:41Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1805213146) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:53Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1805213322) at 2023-11-09 11:11 PM PST -,2023-11-10T07:11:56Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1805213370) at 2023-11-09 11:11 PM PST -,2023-11-10T07:12:00Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1805213424) at 2023-11-09 11:12 PM PST -,2023-11-10T07:12:04Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1805213484) at 2023-11-09 11:12 PM PST -,2023-11-10T07:12:08Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1805213546) at 2023-11-09 11:12 PM PST -,2023-11-10T07:12:12Z,- null commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1805213609) at 2023-11-09 11:12 PM PST -,2023-11-10T07:12:15Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1805213664) at 2023-11-09 11:12 PM PST -,2023-11-10T07:12:25Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1805213799) at 2023-11-09 11:12 PM PST -,2023-11-10T07:12:52Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1805214197) at 2023-11-09 11:12 PM PST -,2023-11-10T07:24:58Z,- null commented on issue: [5857](https://github.com/hackforla/website/issues/5857#issuecomment-1805225492) at 2023-11-09 11:24 PM PST -,2023-11-11T01:24:16Z,- null commented on issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1806614410) at 2023-11-10 05:24 PM PST -,2023-11-12T01:34:47Z,- null commented on issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1806969073) at 2023-11-11 05:34 PM PST -,2023-11-12T01:39:30Z,- null commented on issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1806969863) at 2023-11-11 05:39 PM PST -,2023-11-12T05:27:05Z,- null commented on issue: [5803](https://github.com/hackforla/website/issues/5803#issuecomment-1807009021) at 2023-11-11 09:27 PM PST -,2023-11-12T17:53:44Z,- null commented on issue: [5802](https://github.com/hackforla/website/issues/5802#issuecomment-1807196187) at 2023-11-12 09:53 AM PST -,2023-11-12T18:00:08Z,- null commented on issue: [5876](https://github.com/hackforla/website/issues/5876#issuecomment-1807197543) at 2023-11-12 10:00 AM PST -,2023-11-13T08:39:26Z,- null commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1807682330) at 2023-11-13 12:39 AM PST -,2023-11-13T09:14:59Z,- null commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1807738053) at 2023-11-13 01:14 AM PST -,2023-11-13T23:54:29Z,- null commented on issue: [5801](https://github.com/hackforla/website/issues/5801#issuecomment-1809318755) at 2023-11-13 03:54 PM PST -,2023-11-14T19:38:48Z,- null commented on issue: [5800](https://github.com/hackforla/website/issues/5800#issuecomment-1811075476) at 2023-11-14 11:38 AM PST -,2023-11-14T21:19:34Z,- null commented on issue: [5874](https://github.com/hackforla/website/issues/5874#issuecomment-1811330023) at 2023-11-14 01:19 PM PST -,2023-11-14T21:49:26Z,- null commented on issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1811378504) at 2023-11-14 01:49 PM PST -,2023-11-15T03:14:22Z,- null commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1811742609) at 2023-11-14 07:14 PM PST -,2023-11-15T18:44:33Z,- null commented on issue: [5860](https://github.com/hackforla/website/issues/5860#issuecomment-1813074327) at 2023-11-15 10:44 AM PST -,2023-11-15T20:15:30Z,- null commented on issue: [5791](https://github.com/hackforla/website/issues/5791#issuecomment-1813197992) at 2023-11-15 12:15 PM PST -,2023-11-15T21:28:31Z,- null commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813286564) at 2023-11-15 01:28 PM PST -,2023-11-15T21:37:11Z,- null commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813297093) at 2023-11-15 01:37 PM PST -,2023-11-15T21:37:50Z,- null commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813299500) at 2023-11-15 01:37 PM PST -,2023-11-16T01:37:26Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1813609300) at 2023-11-15 05:37 PM PST -,2023-11-16T01:56:08Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1813643452) at 2023-11-15 05:56 PM PST -,2023-11-16T02:45:55Z,- null commented on issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1813704744) at 2023-11-15 06:45 PM PST -,2023-11-16T03:22:45Z,- null commented on issue: [5855](https://github.com/hackforla/website/issues/5855#issuecomment-1813730426) at 2023-11-15 07:22 PM PST -,2023-11-16T18:02:03Z,- null commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1814971583) at 2023-11-16 10:02 AM PST -,2023-11-16T18:13:28Z,- null commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1814987974) at 2023-11-16 10:13 AM PST -,2023-11-16T18:46:37Z,- null commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1815033695) at 2023-11-16 10:46 AM PST -,2023-11-16T19:00:56Z,- null commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1815100802) at 2023-11-16 11:00 AM PST -,2023-11-16T20:36:42Z,- null commented on issue: [5589](https://github.com/hackforla/website/issues/5589#issuecomment-1815274817) at 2023-11-16 12:36 PM PST -,2023-11-16T21:31:28Z,- null commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1815346751) at 2023-11-16 01:31 PM PST -,2023-11-17T03:42:48Z,- null commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1815701897) at 2023-11-16 07:42 PM PST -,2023-11-17T07:06:14Z,- null commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1815843380) at 2023-11-16 11:06 PM PST -,2023-11-17T07:07:16Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1815844468) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:26Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1815844613) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:28Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1815844648) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:32Z,- null commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1815844690) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:37Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1815844776) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:39Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1815844813) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:42Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1815844855) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:44Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1815844882) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:46Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1815844926) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:48Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1815844964) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:51Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1815845017) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:54Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1815845057) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:56Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1815845095) at 2023-11-16 11:07 PM PST -,2023-11-17T07:07:58Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1815845132) at 2023-11-16 11:07 PM PST -,2023-11-17T07:08:01Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1815845168) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:03Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1815845223) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:05Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1815845256) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:07Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1815845292) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:10Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1815845321) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:12Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1815845354) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:20Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1815845478) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:23Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1815845509) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:25Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1815845535) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:28Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1815845571) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:30Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1815845612) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:32Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1815845638) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:35Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1815845675) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:37Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1815845708) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:39Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1815845740) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:44Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1815845791) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:46Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1815845826) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:48Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1815845859) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:50Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1815845897) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:53Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1815845924) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:55Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1815845967) at 2023-11-16 11:08 PM PST -,2023-11-17T07:08:58Z,- null commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1815846010) at 2023-11-16 11:08 PM PST -,2023-11-17T07:09:01Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1815846052) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:04Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1815846087) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:06Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1815846132) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:09Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1815846160) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:11Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1815846206) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:13Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1815846227) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:15Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1815846265) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:18Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1815846300) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:21Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1815846331) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:30Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1815846468) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:32Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1815846512) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:34Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1815846543) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:40Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1815846632) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:43Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1815846670) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:45Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1815846706) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:47Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1815846728) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:50Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1815846751) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:52Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1815846778) at 2023-11-16 11:09 PM PST -,2023-11-17T07:09:58Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1815846879) at 2023-11-16 11:09 PM PST -,2023-11-17T07:10:00Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1815846903) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:04Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1815846944) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:06Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1815846988) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:09Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1815847032) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:12Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1815847081) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:19Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1815847190) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:21Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1815847230) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:24Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1815847264) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:27Z,- null commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1815847303) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:34Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1815847402) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:38Z,- null commented on issue: [5864](https://github.com/hackforla/website/issues/5864#issuecomment-1815847457) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:40Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1815847491) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:43Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1815847526) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:45Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1815847566) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:47Z,- null commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1815847599) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:50Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1815847642) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:54Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1815847708) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:56Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1815847756) at 2023-11-16 11:10 PM PST -,2023-11-17T07:10:59Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1815847792) at 2023-11-16 11:10 PM PST -,2023-11-17T07:11:08Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1815848058) at 2023-11-16 11:11 PM PST -,2023-11-17T11:23:07Z,- null commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1816198645) at 2023-11-17 03:23 AM PST -,2023-11-17T23:42:05Z,- null commented on issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1817257511) at 2023-11-17 03:42 PM PST -,2023-11-19T21:43:19Z,- null commented on issue: [5921](https://github.com/hackforla/website/issues/5921#issuecomment-1817986811) at 2023-11-19 01:43 PM PST -,2023-11-19T22:25:15Z,- null commented on issue: [5919](https://github.com/hackforla/website/issues/5919#issuecomment-1817997054) at 2023-11-19 02:25 PM PST -,2023-11-20T19:29:21Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1819672696) at 2023-11-20 11:29 AM PST -,2023-11-20T23:00:16Z,- null commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1819941972) at 2023-11-20 03:00 PM PST -,2023-11-21T00:09:06Z,- null commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1820006678) at 2023-11-20 04:09 PM PST -,2023-11-21T03:58:29Z,- null commented on issue: [5799](https://github.com/hackforla/website/issues/5799#issuecomment-1820196123) at 2023-11-20 07:58 PM PST -,2023-11-21T06:12:46Z,- null commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1820301110) at 2023-11-20 10:12 PM PST -,2023-11-21T19:32:08Z,- null commented on issue: [5680](https://github.com/hackforla/website/issues/5680#issuecomment-1821557707) at 2023-11-21 11:32 AM PST -,2023-11-21T22:14:47Z,- null commented on issue: [5796](https://github.com/hackforla/website/issues/5796#issuecomment-1821787615) at 2023-11-21 02:14 PM PST -,2023-11-21T22:15:45Z,- null commented on issue: [5681](https://github.com/hackforla/website/issues/5681#issuecomment-1821788627) at 2023-11-21 02:15 PM PST -,2023-11-22T10:21:26Z,- null commented on issue: [5930](https://github.com/hackforla/website/issues/5930#issuecomment-1822487493) at 2023-11-22 02:21 AM PST -,2023-11-22T10:30:16Z,- null commented on issue: [5930](https://github.com/hackforla/website/issues/5930#issuecomment-1822502042) at 2023-11-22 02:30 AM PST -,2023-11-23T00:31:14Z,- null commented on issue: [5798](https://github.com/hackforla/website/issues/5798#issuecomment-1823693360) at 2023-11-22 04:31 PM PST -,2023-11-23T01:05:59Z,- null commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1823711191) at 2023-11-22 05:05 PM PST -,2023-11-24T07:06:16Z,- null commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1825231026) at 2023-11-23 11:06 PM PST -,2023-11-24T07:07:18Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1825231847) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:28Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1825231997) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:31Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1825232026) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:38Z,- null commented on issue: [4907](https://github.com/hackforla/website/issues/4907#issuecomment-1825232129) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:41Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1825232156) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:43Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1825232193) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:45Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1825232231) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:47Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1825232266) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:49Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1825232293) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:52Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1825232322) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:54Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1825232349) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:56Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1825232385) at 2023-11-23 11:07 PM PST -,2023-11-24T07:07:58Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1825232407) at 2023-11-23 11:07 PM PST -,2023-11-24T07:08:00Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1825232424) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:02Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1825232446) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:04Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1825232477) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:06Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1825232501) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:08Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1825232521) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:17Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1825232653) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:20Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1825232680) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:22Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1825232713) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:25Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1825232743) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:27Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1825232771) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:30Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1825232806) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:32Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1825232846) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:34Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1825232874) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:36Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1825232896) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:40Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1825232947) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:43Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1825232975) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:45Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1825233000) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:47Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1825233029) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:49Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1825233053) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:52Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1825233083) at 2023-11-23 11:08 PM PST -,2023-11-24T07:08:58Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1825233167) at 2023-11-23 11:08 PM PST -,2023-11-24T07:09:00Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1825233210) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:03Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1825233247) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:05Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1825233271) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:07Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1825233286) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:10Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1825233316) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:12Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1825233346) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:14Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1825233382) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:17Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1825233421) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:26Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1825233520) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:28Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1825233543) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:36Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1825233643) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:38Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1825233694) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:41Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1825233721) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:43Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1825233758) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:45Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1825233790) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:47Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1825233814) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:53Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1825233891) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:57Z,- null commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1825233946) at 2023-11-23 11:09 PM PST -,2023-11-24T07:09:59Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1825233965) at 2023-11-23 11:09 PM PST -,2023-11-24T07:10:03Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1825234028) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:05Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1825234058) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:09Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1825234112) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:12Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1825234141) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:14Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1825234184) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:18Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1825234221) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:23Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1825234280) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:31Z,- null commented on issue: [5864](https://github.com/hackforla/website/issues/5864#issuecomment-1825234401) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:34Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1825234438) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:37Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1825234475) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:40Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1825234510) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:45Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1825234557) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:49Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1825234602) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:51Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1825234637) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:56Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1825234701) at 2023-11-23 11:10 PM PST -,2023-11-24T07:10:58Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1825234723) at 2023-11-23 11:10 PM PST -,2023-11-24T07:11:02Z,- null commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1825234770) at 2023-11-23 11:11 PM PST -,2023-11-24T07:11:04Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1825234811) at 2023-11-23 11:11 PM PST -,2023-11-24T07:11:08Z,- null commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1825234868) at 2023-11-23 11:11 PM PST -,2023-11-24T07:11:12Z,- null commented on issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1825234935) at 2023-11-23 11:11 PM PST -,2023-11-24T07:11:18Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1825235024) at 2023-11-23 11:11 PM PST -,2023-11-24T21:25:43Z,- null commented on issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1826093181) at 2023-11-24 01:25 PM PST -,2023-11-25T07:43:32Z,- null commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1826245664) at 2023-11-24 11:43 PM PST -,2023-11-27T00:18:14Z,- null commented on issue: [5831](https://github.com/hackforla/website/issues/5831#issuecomment-1826954474) at 2023-11-26 04:18 PM PST -,2023-11-27T20:09:31Z,- null commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1828511256) at 2023-11-27 12:09 PM PST -,2023-11-27T21:54:26Z,- null commented on issue: [5694](https://github.com/hackforla/website/issues/5694#issuecomment-1828681775) at 2023-11-27 01:54 PM PST -,2023-11-28T00:51:23Z,- null commented on issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-1828886420) at 2023-11-27 04:51 PM PST -,2023-11-28T02:16:11Z,- null commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1828952297) at 2023-11-27 06:16 PM PST -,2023-11-28T02:19:26Z,- null commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1828954612) at 2023-11-27 06:19 PM PST -,2023-11-28T02:20:36Z,- null commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1828955449) at 2023-11-27 06:20 PM PST -,2023-11-28T02:21:41Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1828956273) at 2023-11-27 06:21 PM PST -,2023-11-28T02:22:09Z,- null commented on issue: [4543](https://github.com/hackforla/website/issues/4543#issuecomment-1828956565) at 2023-11-27 06:22 PM PST -,2023-11-28T02:23:05Z,- null commented on issue: [4542](https://github.com/hackforla/website/issues/4542#issuecomment-1828957262) at 2023-11-27 06:23 PM PST -,2023-11-28T02:23:08Z,- null commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1828957304) at 2023-11-27 06:23 PM PST -,2023-11-28T02:25:49Z,- null commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-1828959281) at 2023-11-27 06:25 PM PST -,2023-11-28T02:38:16Z,- null commented on issue: [5938](https://github.com/hackforla/website/issues/5938#issuecomment-1828968016) at 2023-11-27 06:38 PM PST -,2023-11-28T02:38:18Z,- null commented on issue: [5938](https://github.com/hackforla/website/issues/5938#issuecomment-1828968046) at 2023-11-27 06:38 PM PST -,2023-11-28T03:14:07Z,- null commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1829002780) at 2023-11-27 07:14 PM PST -,2023-11-28T03:25:58Z,- null commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1829011355) at 2023-11-27 07:25 PM PST -,2023-11-28T09:57:07Z,- null commented on issue: [5739](https://github.com/hackforla/website/issues/5739#issuecomment-1829474370) at 2023-11-28 01:57 AM PST -,2023-11-29T03:57:05Z,- null commented on issue: [5797](https://github.com/hackforla/website/issues/5797#issuecomment-1831178195) at 2023-11-28 07:57 PM PST -,2023-11-29T20:41:58Z,- null commented on issue: [5705](https://github.com/hackforla/website/issues/5705#issuecomment-1832669672) at 2023-11-29 12:41 PM PST -,2023-11-29T23:46:49Z,- null commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-1832876728) at 2023-11-29 03:46 PM PST -,2023-11-29T23:57:30Z,- null commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-1832883385) at 2023-11-29 03:57 PM PST -,2023-11-30T18:47:37Z,- null commented on issue: [5685](https://github.com/hackforla/website/issues/5685#issuecomment-1834362818) at 2023-11-30 10:47 AM PST -,2023-11-30T19:41:07Z,- null commented on issue: [5674](https://github.com/hackforla/website/issues/5674#issuecomment-1834435636) at 2023-11-30 11:41 AM PST -,2023-11-30T21:07:58Z,- null commented on issue: [5673](https://github.com/hackforla/website/issues/5673#issuecomment-1834562224) at 2023-11-30 01:07 PM PST -,2023-11-30T22:37:29Z,- null commented on issue: [5696](https://github.com/hackforla/website/issues/5696#issuecomment-1834670698) at 2023-11-30 02:37 PM PST -,2023-11-30T23:27:47Z,- null commented on issue: [5716](https://github.com/hackforla/website/issues/5716#issuecomment-1834719969) at 2023-11-30 03:27 PM PST -,2023-12-01T07:06:20Z,- null commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1835576303) at 2023-11-30 11:06 PM PST -,2023-12-01T07:07:12Z,- null commented on issue: [4625](https://github.com/hackforla/website/issues/4625#issuecomment-1835577241) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:22Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1835577410) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:24Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1835577446) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:32Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1835577582) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:34Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1835577607) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:36Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1835577637) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:39Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1835577674) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:41Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1835577708) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:43Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1835577747) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:45Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1835577787) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:47Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1835577820) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:50Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1835577873) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:52Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1835577898) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:54Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1835577936) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:56Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1835577974) at 2023-11-30 11:07 PM PST -,2023-12-01T07:07:58Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1835578011) at 2023-11-30 11:07 PM PST -,2023-12-01T07:08:09Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1835578203) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:11Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1835578240) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:14Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1835578281) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:17Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1835578342) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:19Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1835578381) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:21Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1835578420) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:23Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1835578457) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:26Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1835578494) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:28Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1835578528) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:32Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1835578594) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:34Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1835578625) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:36Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1835578656) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:38Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1835578689) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:41Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1835578728) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:43Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1835578762) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:49Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1835578848) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:52Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1835578885) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:54Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1835578908) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:56Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1835578936) at 2023-11-30 11:08 PM PST -,2023-12-01T07:08:58Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1835578962) at 2023-11-30 11:08 PM PST -,2023-12-01T07:09:00Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1835578992) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:02Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1835579033) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:05Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1835579064) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:08Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1835579106) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:16Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1835579243) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:18Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1835579268) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:21Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1835579306) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:27Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1835579397) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:30Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1835579446) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:32Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1835579480) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:34Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1835579507) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:36Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1835579545) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:38Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1835579570) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:43Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1835579653) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:46Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1835579706) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:49Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1835579753) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:51Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1835579782) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:53Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1835579812) at 2023-11-30 11:09 PM PST -,2023-12-01T07:09:58Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1835579895) at 2023-11-30 11:09 PM PST -,2023-12-01T07:10:00Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1835579922) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:02Z,- null commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1835579957) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:05Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1835579996) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:09Z,- null commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1835580059) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:12Z,- null commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1835580098) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:14Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1835580132) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:17Z,- null commented on issue: [5864](https://github.com/hackforla/website/issues/5864#issuecomment-1835580181) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:19Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1835580212) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:21Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1835580251) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:24Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1835580292) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:27Z,- null commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1835580348) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:30Z,- null commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1835580400) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:32Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1835580435) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:35Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1835580490) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:37Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1835580522) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:39Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1835580557) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:41Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1835580593) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:45Z,- null commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1835580656) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:48Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1835580694) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:51Z,- null commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1835580727) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:57Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1835580820) at 2023-11-30 11:10 PM PST -,2023-12-01T07:10:59Z,- null commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1835580856) at 2023-11-30 11:10 PM PST -,2023-12-01T07:11:02Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1835580899) at 2023-11-30 11:11 PM PST -,2023-12-01T09:05:03Z,- null commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1835725582) at 2023-12-01 01:05 AM PST -,2023-12-01T20:23:04Z,- null commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1836728990) at 2023-12-01 12:23 PM PST -,2023-12-01T20:27:32Z,- null commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1836733925) at 2023-12-01 12:27 PM PST -,2023-12-04T23:52:33Z,- null commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1839761448) at 2023-12-04 03:52 PM PST -,2023-12-05T00:12:37Z,- null commented on issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1839780282) at 2023-12-04 04:12 PM PST -,2023-12-05T00:39:25Z,- null commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1839803664) at 2023-12-04 04:39 PM PST -,2023-12-05T01:34:39Z,- null commented on issue: [5963](https://github.com/hackforla/website/issues/5963#issuecomment-1839850172) at 2023-12-04 05:34 PM PST -,2023-12-05T02:28:23Z,- null commented on issue: [5965](https://github.com/hackforla/website/issues/5965#issuecomment-1839892957) at 2023-12-04 06:28 PM PST -,2023-12-05T04:22:12Z,- null commented on issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1839980618) at 2023-12-04 08:22 PM PST -,2023-12-05T05:05:12Z,- null commented on issue: [5969](https://github.com/hackforla/website/issues/5969#issuecomment-1840018672) at 2023-12-04 09:05 PM PST -,2023-12-05T07:12:47Z,- null commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1840132535) at 2023-12-04 11:12 PM PST -,2023-12-05T08:29:20Z,- null commented on issue: [5972](https://github.com/hackforla/website/issues/5972#issuecomment-1840254376) at 2023-12-05 12:29 AM PST -,2023-12-05T10:30:32Z,- null commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1840471382) at 2023-12-05 02:30 AM PST -,2023-12-06T03:32:57Z,- null commented on issue: [5695](https://github.com/hackforla/website/issues/5695#issuecomment-1842028774) at 2023-12-05 07:32 PM PST -,2023-12-06T22:29:17Z,- null commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1843791012) at 2023-12-06 02:29 PM PST -,2023-12-07T19:46:38Z,- null commented on issue: [5848](https://github.com/hackforla/website/issues/5848#issuecomment-1845998581) at 2023-12-07 11:46 AM PST -,2023-12-08T07:07:19Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1846662088) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:22Z,- null commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1846662125) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:30Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1846662247) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:32Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1846662274) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:34Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1846662309) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:37Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1846662344) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:39Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1846662389) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:42Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1846662419) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:44Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1846662451) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:46Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1846662481) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:49Z,- null commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1846662518) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:51Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1846662550) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:54Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1846662586) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:56Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1846662618) at 2023-12-07 11:07 PM PST -,2023-12-08T07:07:59Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1846662650) at 2023-12-07 11:07 PM PST -,2023-12-08T07:08:02Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1846662683) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:12Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1846662813) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:15Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1846662853) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:17Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1846662885) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:20Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1846662925) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:23Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1846662958) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:26Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1846662983) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:28Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1846663022) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:30Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1846663054) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:32Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1846663089) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:38Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1846663155) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:40Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1846663189) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:42Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1846663235) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:45Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1846663273) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:47Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1846663303) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:49Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1846663333) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:56Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1846663422) at 2023-12-07 11:08 PM PST -,2023-12-08T07:08:59Z,- null commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1846663451) at 2023-12-07 11:08 PM PST -,2023-12-08T07:09:02Z,- null commented on issue: [5363](https://github.com/hackforla/website/issues/5363#issuecomment-1846663496) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:04Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1846663529) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:06Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1846663571) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:09Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1846663600) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:11Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1846663628) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:14Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1846663657) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:16Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1846663700) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:24Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1846663819) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:27Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1846663852) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:29Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1846663886) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:36Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1846663973) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:38Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1846664010) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:41Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1846664076) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:43Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1846664104) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:46Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1846664143) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:48Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1846664179) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:54Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1846664262) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:56Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1846664288) at 2023-12-07 11:09 PM PST -,2023-12-08T07:09:58Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1846664318) at 2023-12-07 11:09 PM PST -,2023-12-08T07:10:01Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1846664364) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:03Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1846664383) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:05Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1846664410) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:09Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1846664459) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:11Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1846664494) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:14Z,- null commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1846664543) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:19Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1846664612) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:22Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1846664653) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:26Z,- null commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1846664784) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:31Z,- null commented on issue: [5864](https://github.com/hackforla/website/issues/5864#issuecomment-1846664871) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:33Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1846664909) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:36Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1846664941) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:38Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1846664967) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:41Z,- null commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1846665025) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:45Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1846665101) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:48Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1846665143) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:50Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1846665170) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:52Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1846665203) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:55Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1846665246) at 2023-12-07 11:10 PM PST -,2023-12-08T07:10:57Z,- null commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1846665286) at 2023-12-07 11:10 PM PST -,2023-12-08T07:11:00Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1846665322) at 2023-12-07 11:11 PM PST -,2023-12-08T07:11:07Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1846665414) at 2023-12-07 11:11 PM PST -,2023-12-08T07:11:12Z,- null commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1846665493) at 2023-12-07 11:11 PM PST -,2023-12-09T09:06:20Z,- null commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1848336650) at 2023-12-09 01:06 AM PST -,2023-12-09T09:06:27Z,- null commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1848336676) at 2023-12-09 01:06 AM PST -,2023-12-09T09:59:43Z,- null commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1848357561) at 2023-12-09 01:59 AM PST -,2023-12-09T19:47:25Z,- null commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1848645474) at 2023-12-09 11:47 AM PST -,2023-12-11T22:59:05Z,- null commented on issue: [5666](https://github.com/hackforla/website/issues/5666#issuecomment-1851027581) at 2023-12-11 02:59 PM PST -,2023-12-12T01:00:55Z,- null commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1851137590) at 2023-12-11 05:00 PM PST -,2023-12-12T02:56:53Z,- null commented on issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1851222927) at 2023-12-11 06:56 PM PST -,2023-12-12T04:08:22Z,- null commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1851267392) at 2023-12-11 08:08 PM PST -,2023-12-12T05:04:04Z,- null commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1851306705) at 2023-12-11 09:04 PM PST -,2023-12-12T05:34:21Z,- null commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1851331369) at 2023-12-11 09:34 PM PST -,2023-12-12T08:09:27Z,- null commented on issue: [5819](https://github.com/hackforla/website/issues/5819#issuecomment-1851488828) at 2023-12-12 12:09 AM PST -,2023-12-12T22:59:37Z,- null commented on issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1852945422) at 2023-12-12 02:59 PM PST -,2023-12-13T03:39:53Z,- null commented on issue: [5686](https://github.com/hackforla/website/issues/5686#issuecomment-1853217043) at 2023-12-12 07:39 PM PST -,2023-12-13T19:50:12Z,- null commented on issue: [5684](https://github.com/hackforla/website/issues/5684#issuecomment-1854607563) at 2023-12-13 11:50 AM PST -,2023-12-13T20:08:03Z,- null commented on issue: [5849](https://github.com/hackforla/website/issues/5849#issuecomment-1854630312) at 2023-12-13 12:08 PM PST -,2023-12-15T07:07:21Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1857381013) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:32Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1857381181) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:34Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1857381220) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:36Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1857381245) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:38Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1857381289) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:41Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1857381316) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:43Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1857381352) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:45Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1857381374) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:47Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1857381410) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:50Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1857381446) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:52Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1857381490) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:54Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1857381538) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:56Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1857381572) at 2023-12-14 11:07 PM PST -,2023-12-15T07:07:58Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1857381601) at 2023-12-14 11:07 PM PST -,2023-12-15T07:08:07Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1857381744) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:10Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1857381780) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:12Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1857381818) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:15Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1857381862) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:17Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1857381902) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:19Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1857381937) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:22Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1857381965) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:24Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1857382000) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:26Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1857382032) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:32Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1857382137) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:34Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1857382184) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:36Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1857382218) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:39Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1857382246) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:42Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1857382310) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:48Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1857382409) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:56Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1857382525) at 2023-12-14 11:08 PM PST -,2023-12-15T07:08:59Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1857382556) at 2023-12-14 11:08 PM PST -,2023-12-15T07:09:01Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1857382592) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:03Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1857382628) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:06Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1857382653) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:08Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1857382689) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:16Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1857382807) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:18Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1857382850) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:26Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1857382963) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:28Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1857383013) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:31Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1857383064) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:33Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1857383101) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:35Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1857383140) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:38Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1857383183) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:43Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1857383258) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:46Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1857383306) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:48Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1857383338) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:51Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1857383389) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:54Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1857383431) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:57Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1857383469) at 2023-12-14 11:09 PM PST -,2023-12-15T07:09:59Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1857383514) at 2023-12-14 11:09 PM PST -,2023-12-15T07:10:01Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1857383549) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:04Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1857383591) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:07Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1857383631) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:10Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1857383708) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:14Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1857383768) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:16Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1857383797) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:18Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1857383834) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:21Z,- null commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1857383872) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:23Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1857383906) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:26Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1857383960) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:28Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1857384010) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:30Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1857384046) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:32Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1857384083) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:34Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1857384122) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:40Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1857384229) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:43Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1857384272) at 2023-12-14 11:10 PM PST -,2023-12-15T07:10:55Z,- null commented on issue: [5848](https://github.com/hackforla/website/issues/5848#issuecomment-1857384457) at 2023-12-14 11:10 PM PST -,2023-12-18T23:52:31Z,- null commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1861872649) at 2023-12-18 03:52 PM PST -,2023-12-20T02:05:59Z,- null commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1863740265) at 2023-12-19 06:05 PM PST -,2023-12-21T01:27:57Z,- null commented on issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-1865349657) at 2023-12-20 05:27 PM PST -,2023-12-21T21:29:02Z,- null commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1866955656) at 2023-12-21 01:29 PM PST -,2023-12-22T02:42:03Z,- null commented on issue: [5735](https://github.com/hackforla/website/issues/5735#issuecomment-1867160948) at 2023-12-21 06:42 PM PST -,2023-12-22T07:07:27Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1867319897) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:37Z,- null commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1867320037) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:40Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1867320070) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:42Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1867320100) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:44Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1867320129) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:46Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1867320147) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:48Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1867320177) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:50Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1867320206) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:52Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1867320232) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:54Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1867320260) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:56Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1867320285) at 2023-12-21 11:07 PM PST -,2023-12-22T07:07:58Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1867320317) at 2023-12-21 11:07 PM PST -,2023-12-22T07:08:01Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1867320352) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:03Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1867320385) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:11Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1867320514) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:13Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1867320542) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:15Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1867320574) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:18Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1867320609) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:20Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1867320644) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:22Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1867320677) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:24Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1867320718) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:26Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1867320741) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:28Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1867320769) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:33Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1867320837) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:35Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1867320865) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:37Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1867320902) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:39Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1867320932) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:42Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1867320968) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:44Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1867320996) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:50Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1867321061) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:57Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1867321143) at 2023-12-21 11:08 PM PST -,2023-12-22T07:08:59Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1867321165) at 2023-12-21 11:08 PM PST -,2023-12-22T07:09:01Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1867321187) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:03Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1867321223) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:05Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1867321241) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:07Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1867321268) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:14Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1867321371) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:16Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1867321398) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:19Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1867321433) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:24Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1867321515) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:27Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1867321553) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:29Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1867321585) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:31Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1867321616) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:33Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1867321640) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:35Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1867321673) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:40Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1867321740) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:42Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1867321765) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:44Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1867321792) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:47Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1867321819) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:49Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1867321838) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:51Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1867321861) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:56Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1867321926) at 2023-12-21 11:09 PM PST -,2023-12-22T07:09:58Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1867321949) at 2023-12-21 11:09 PM PST -,2023-12-22T07:10:00Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1867321977) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:04Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1867322024) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:07Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1867322066) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:10Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1867322096) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:13Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1867322125) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:15Z,- null commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1867322149) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:16Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1867322180) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:19Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1867322222) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:21Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1867322236) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:23Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1867322258) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:26Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1867322296) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:28Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1867322328) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:30Z,- null commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1867322360) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:35Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1867322434) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:38Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1867322479) at 2023-12-21 11:10 PM PST -,2023-12-22T07:10:47Z,- null commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1867322587) at 2023-12-21 11:10 PM PST -,2023-12-27T10:18:57Z,- null commented on issue: [6017](https://github.com/hackforla/website/issues/6017#issuecomment-1870159889) at 2023-12-27 02:18 AM PST -,2023-12-28T20:54:23Z,- null commented on issue: [5164](https://github.com/hackforla/website/issues/5164#issuecomment-1871483151) at 2023-12-28 12:54 PM PST -,2023-12-29T07:07:22Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1871798883) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:37Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1871799008) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:40Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1871799027) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:42Z,- null commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1871799047) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:45Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1871799074) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:48Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1871799096) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:50Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1871799113) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:53Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1871799137) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:56Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1871799157) at 2023-12-28 11:07 PM PST -,2023-12-29T07:07:58Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1871799165) at 2023-12-28 11:07 PM PST -,2023-12-29T07:08:01Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1871799190) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:04Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1871799217) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:07Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1871799234) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:16Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1871799310) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:19Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1871799328) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:22Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1871799342) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:25Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1871799364) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:28Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1871799392) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:31Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1871799412) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:33Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1871799435) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:36Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1871799452) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:39Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1871799464) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:45Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1871799512) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:48Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1871799529) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:50Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1871799542) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:53Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1871799563) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:56Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1871799585) at 2023-12-28 11:08 PM PST -,2023-12-29T07:08:59Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1871799601) at 2023-12-28 11:08 PM PST -,2023-12-29T07:09:06Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1871799658) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:16Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1871799706) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:18Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1871799732) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:21Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1871799770) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:24Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1871799789) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:26Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1871799807) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:30Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1871799851) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:38Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1871799895) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:41Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1871799911) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:44Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1871799938) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:52Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1871799982) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:55Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1871800005) at 2023-12-28 11:09 PM PST -,2023-12-29T07:09:58Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1871800034) at 2023-12-28 11:09 PM PST -,2023-12-29T07:10:00Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1871800058) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:03Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1871800079) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:05Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1871800090) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:12Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1871800130) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:14Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1871800152) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:17Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1871800175) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:22Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1871800198) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:24Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1871800209) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:27Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1871800228) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:31Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1871800251) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:34Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1871800271) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:36Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1871800286) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:40Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1871800314) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:44Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1871800346) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:47Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1871800359) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:49Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1871800375) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:52Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1871800388) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:55Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1871800406) at 2023-12-28 11:10 PM PST -,2023-12-29T07:10:58Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1871800425) at 2023-12-28 11:10 PM PST -,2023-12-29T07:11:00Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1871800442) at 2023-12-28 11:11 PM PST -,2023-12-29T07:11:03Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1871800461) at 2023-12-28 11:11 PM PST -,2023-12-29T07:11:06Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1871800486) at 2023-12-28 11:11 PM PST -,2023-12-29T07:11:09Z,- null commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1871800508) at 2023-12-28 11:11 PM PST -,2023-12-29T07:11:15Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1871800556) at 2023-12-28 11:11 PM PST -,2023-12-29T07:11:19Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1871800591) at 2023-12-28 11:11 PM PST -,2023-12-29T07:11:21Z,- null commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1871800611) at 2023-12-28 11:11 PM PST -,2023-12-29T23:03:23Z,- null commented on issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382437) at 2023-12-29 03:03 PM PST -,2024-01-01T06:34:12Z,- null commented on issue: [5963](https://github.com/hackforla/website/issues/5963#issuecomment-1873184481) at 2023-12-31 10:34 PM PST -,2024-01-02T00:43:50Z,- null commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1873544981) at 2024-01-01 04:43 PM PST -,2024-01-02T20:09:54Z,- null commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1874494308) at 2024-01-02 12:09 PM PST -,2024-01-03T01:39:29Z,- null commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1874755091) at 2024-01-02 05:39 PM PST -,2024-01-03T03:42:23Z,- null commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1874814331) at 2024-01-02 07:42 PM PST -,2024-01-03T03:43:36Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1874814831) at 2024-01-02 07:43 PM PST -,2024-01-03T03:44:24Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1874815169) at 2024-01-02 07:44 PM PST -,2024-01-03T03:44:57Z,- null commented on issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-1874815367) at 2024-01-02 07:44 PM PST -,2024-01-03T03:48:12Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1874816774) at 2024-01-02 07:48 PM PST -,2024-01-03T03:48:56Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1874817052) at 2024-01-02 07:48 PM PST -,2024-01-03T03:48:57Z,- null commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1874817060) at 2024-01-02 07:48 PM PST -,2024-01-03T03:54:13Z,- null commented on issue: [6035](https://github.com/hackforla/website/issues/6035#issuecomment-1874819190) at 2024-01-02 07:54 PM PST -,2024-01-03T03:54:15Z,- null commented on issue: [6035](https://github.com/hackforla/website/issues/6035#issuecomment-1874819203) at 2024-01-02 07:54 PM PST -,2024-01-03T03:56:37Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1874820378) at 2024-01-02 07:56 PM PST -,2024-01-03T03:59:18Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1874821628) at 2024-01-02 07:59 PM PST -,2024-01-03T04:04:34Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1874824020) at 2024-01-02 08:04 PM PST -,2024-01-03T04:23:26Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1874832228) at 2024-01-02 08:23 PM PST -,2024-01-03T04:23:28Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1874832253) at 2024-01-02 08:23 PM PST -,2024-01-03T04:28:52Z,- null commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1874834521) at 2024-01-02 08:28 PM PST -,2024-01-03T05:04:43Z,- null commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1874852537) at 2024-01-02 09:04 PM PST -,2024-01-03T05:07:26Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1874853943) at 2024-01-02 09:07 PM PST -,2024-01-03T05:07:38Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1874854033) at 2024-01-02 09:07 PM PST -,2024-01-03T07:37:37Z,- null commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1874955868) at 2024-01-02 11:37 PM PST -,2024-01-03T08:09:07Z,- null commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1874982475) at 2024-01-03 12:09 AM PST -,2024-01-03T08:17:58Z,- null commented on issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1874991139) at 2024-01-03 12:17 AM PST -,2024-01-03T08:25:27Z,- null commented on issue: [6046](https://github.com/hackforla/website/issues/6046#issuecomment-1874998247) at 2024-01-03 12:25 AM PST -,2024-01-03T08:32:13Z,- null commented on issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1875005173) at 2024-01-03 12:32 AM PST -,2024-01-03T08:35:58Z,- null commented on issue: [6048](https://github.com/hackforla/website/issues/6048#issuecomment-1875008824) at 2024-01-03 12:35 AM PST -,2024-01-03T08:42:51Z,- null commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1875015788) at 2024-01-03 12:42 AM PST -,2024-01-03T08:50:20Z,- null commented on issue: [6050](https://github.com/hackforla/website/issues/6050#issuecomment-1875023354) at 2024-01-03 12:50 AM PST -,2024-01-03T08:55:36Z,- null commented on issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1875028964) at 2024-01-03 12:55 AM PST -,2024-01-03T09:00:44Z,- null commented on issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1875034717) at 2024-01-03 01:00 AM PST -,2024-01-03T09:06:12Z,- null commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1875041068) at 2024-01-03 01:06 AM PST -,2024-01-03T09:11:21Z,- null commented on issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1875047290) at 2024-01-03 01:11 AM PST -,2024-01-03T16:32:45Z,- null commented on issue: [5972](https://github.com/hackforla/website/issues/5972#issuecomment-1875646718) at 2024-01-03 08:32 AM PST -,2024-01-03T23:50:25Z,- null commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1876121874) at 2024-01-03 03:50 PM PST -,2024-01-04T09:41:42Z,- null commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-1876791666) at 2024-01-04 01:41 AM PST -,2024-01-04T22:23:22Z,- null commented on issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1877840584) at 2024-01-04 02:23 PM PST -,2024-01-05T07:07:15Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1878226259) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:31Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1878226488) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:34Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1878226549) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:39Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1878226718) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:42Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1878226816) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:44Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1878226906) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:47Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1878226981) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:49Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1878227011) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:52Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1878227045) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:54Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1878227071) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:57Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1878227112) at 2024-01-04 11:07 PM PST -,2024-01-05T07:07:59Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1878227140) at 2024-01-04 11:07 PM PST -,2024-01-05T07:08:09Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1878227267) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:11Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1878227292) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:14Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1878227318) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:17Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1878227351) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:19Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1878227381) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:22Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1878227406) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:24Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1878227438) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:27Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1878227482) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:29Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1878227514) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:35Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1878227593) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:38Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1878227634) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:40Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1878227664) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:43Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1878227695) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:45Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1878227722) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:48Z,- null commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1878227772) at 2024-01-04 11:08 PM PST -,2024-01-05T07:08:55Z,- null commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1878227854) at 2024-01-04 11:08 PM PST -,2024-01-05T07:09:04Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1878227982) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:06Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1878228007) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:08Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1878228030) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:11Z,- null commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1878228067) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:14Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1878228103) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:17Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1878228132) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:25Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1878228219) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:27Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1878228245) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:30Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1878228286) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:37Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1878228398) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:40Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1878228437) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:43Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1878228472) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:46Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1878228494) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:48Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1878228525) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:50Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1878228554) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:56Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1878228624) at 2024-01-04 11:09 PM PST -,2024-01-05T07:09:59Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1878228666) at 2024-01-04 11:09 PM PST -,2024-01-05T07:10:01Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1878228710) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:04Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1878228740) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:06Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1878228784) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:09Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1878228822) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:13Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1878228888) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:15Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1878228921) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:18Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1878228955) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:20Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1878228999) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:24Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1878229043) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:28Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1878229089) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:30Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1878229113) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:33Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1878229174) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:36Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1878229221) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:39Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1878229273) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:41Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1878229301) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:44Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1878229336) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:46Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1878229370) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:49Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1878229406) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:54Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1878229472) at 2024-01-04 11:10 PM PST -,2024-01-05T07:10:57Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1878229522) at 2024-01-04 11:10 PM PST -,2024-01-05T07:11:15Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1878229781) at 2024-01-04 11:11 PM PST -,2024-01-05T07:24:48Z,- null commented on issue: [6019](https://github.com/hackforla/website/issues/6019#issuecomment-1878241544) at 2024-01-04 11:24 PM PST -,2024-01-05T22:41:37Z,- null commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1879344747) at 2024-01-05 02:41 PM PST -,2024-01-06T01:18:42Z,- null commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1879478714) at 2024-01-05 05:18 PM PST -,2024-01-06T21:33:41Z,- null commented on issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1879835188) at 2024-01-06 01:33 PM PST -,2024-01-06T21:59:20Z,- null commented on issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1879841434) at 2024-01-06 01:59 PM PST -,2024-01-07T00:26:14Z,- null commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1879892223) at 2024-01-06 04:26 PM PST -,2024-01-07T18:42:55Z,- null commented on issue: [5965](https://github.com/hackforla/website/issues/5965#issuecomment-1880138745) at 2024-01-07 10:42 AM PST -,2024-01-08T01:49:14Z,- null commented on issue: [5709](https://github.com/hackforla/website/issues/5709#issuecomment-1880287809) at 2024-01-07 05:49 PM PST -,2024-01-08T02:56:17Z,- null commented on issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1880320764) at 2024-01-07 06:56 PM PST -,2024-01-08T03:09:38Z,- null commented on issue: [5708](https://github.com/hackforla/website/issues/5708#issuecomment-1880327585) at 2024-01-07 07:09 PM PST -,2024-01-08T07:44:17Z,- null commented on issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1880511713) at 2024-01-07 11:44 PM PST -,2024-01-08T19:59:42Z,- null commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1881736230) at 2024-01-08 11:59 AM PST -,2024-01-09T01:29:25Z,- null commented on issue: [6074](https://github.com/hackforla/website/issues/6074#issuecomment-1882125789) at 2024-01-08 05:29 PM PST -,2024-01-09T09:24:19Z,- null commented on issue: [6024](https://github.com/hackforla/website/issues/6024#issuecomment-1882693027) at 2024-01-09 01:24 AM PST -,2024-01-09T09:29:47Z,- null commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1882701763) at 2024-01-09 01:29 AM PST -,2024-01-09T21:16:52Z,- null commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1883805312) at 2024-01-09 01:16 PM PST -,2024-01-09T22:21:11Z,- null commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1883894317) at 2024-01-09 02:21 PM PST -,2024-01-10T02:09:18Z,- null commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1884077583) at 2024-01-09 06:09 PM PST -,2024-01-10T20:36:28Z,- null commented on issue: [6092](https://github.com/hackforla/website/issues/6092#issuecomment-1885682365) at 2024-01-10 12:36 PM PST -,2024-01-11T01:10:12Z,- null commented on issue: [5504](https://github.com/hackforla/website/issues/5504#issuecomment-1886028191) at 2024-01-10 05:10 PM PST -,2024-01-11T03:53:06Z,- null commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1886183691) at 2024-01-10 07:53 PM PST -,2024-01-11T23:00:05Z,- null commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1888101342) at 2024-01-11 03:00 PM PST -,2024-01-12T07:07:23Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1888539858) at 2024-01-11 11:07 PM PST -,2024-01-12T07:07:39Z,- null commented on issue: [4722](https://github.com/hackforla/website/issues/4722#issuecomment-1888540107) at 2024-01-11 11:07 PM PST -,2024-01-12T07:07:42Z,- null commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1888540177) at 2024-01-11 11:07 PM PST -,2024-01-12T07:07:47Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1888540294) at 2024-01-11 11:07 PM PST -,2024-01-12T07:07:50Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1888540356) at 2024-01-11 11:07 PM PST -,2024-01-12T07:07:53Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1888540415) at 2024-01-11 11:07 PM PST -,2024-01-12T07:07:56Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1888540486) at 2024-01-11 11:07 PM PST -,2024-01-12T07:07:58Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1888540553) at 2024-01-11 11:07 PM PST -,2024-01-12T07:08:01Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1888540600) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:04Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1888540653) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:06Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1888540692) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:09Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1888540732) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:19Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1888540890) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:22Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1888540941) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:24Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1888540988) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:28Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1888541039) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:31Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1888541086) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:33Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1888541126) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:36Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1888541176) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:39Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1888541215) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:41Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1888541254) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:47Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1888541335) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:50Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1888541376) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:53Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1888541414) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:55Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1888541468) at 2024-01-11 11:08 PM PST -,2024-01-12T07:08:58Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1888541514) at 2024-01-11 11:08 PM PST -,2024-01-12T07:09:18Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1888541886) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:21Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1888541937) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:23Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1888541998) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:26Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1888542068) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:30Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1888542144) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:39Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1888542378) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:42Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1888542433) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:45Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1888542490) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:53Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1888542607) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:56Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1888542660) at 2024-01-11 11:09 PM PST -,2024-01-12T07:09:59Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1888542703) at 2024-01-11 11:09 PM PST -,2024-01-12T07:10:01Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1888542747) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:04Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1888542782) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:07Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1888542831) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:13Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1888542942) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:16Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1888542984) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:18Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1888543028) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:23Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1888543098) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:25Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1888543150) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:28Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1888543212) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:32Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1888543275) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:35Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1888543323) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:38Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1888543366) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:41Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1888543409) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:45Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1888543476) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:48Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1888543514) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:51Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1888543550) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:53Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1888543594) at 2024-01-11 11:10 PM PST -,2024-01-12T07:10:57Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1888543650) at 2024-01-11 11:10 PM PST -,2024-01-12T07:11:00Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1888543690) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:02Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1888543715) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:05Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1888543746) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:08Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1888543788) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:13Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1888543876) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:17Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1888543940) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:23Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1888544035) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:26Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1888544076) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:29Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1888544126) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:32Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1888544182) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:44Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1888544425) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:47Z,- null commented on issue: [6035](https://github.com/hackforla/website/issues/6035#issuecomment-1888544469) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:50Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1888544517) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:53Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1888544554) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:56Z,- null commented on issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-1888544600) at 2024-01-11 11:11 PM PST -,2024-01-12T07:11:58Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1888544640) at 2024-01-11 11:11 PM PST -,2024-01-12T07:12:01Z,- null commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1888544682) at 2024-01-11 11:12 PM PST -,2024-01-13T05:06:42Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1890312785) at 2024-01-12 09:06 PM PST -,2024-01-13T22:19:31Z,- null commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1890782124) at 2024-01-13 02:19 PM PST -,2024-01-13T22:22:08Z,- null commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1890782590) at 2024-01-13 02:22 PM PST -,2024-01-14T15:27:57Z,- null commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1890983017) at 2024-01-14 07:27 AM PST -,2024-01-14T17:19:58Z,- null commented on issue: [6104](https://github.com/hackforla/website/issues/6104#issuecomment-1891010518) at 2024-01-14 09:19 AM PST -,2024-01-14T21:17:01Z,- null commented on issue: [6112](https://github.com/hackforla/website/issues/6112#issuecomment-1891074732) at 2024-01-14 01:17 PM PST -,2024-01-14T21:28:43Z,- null commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1891077439) at 2024-01-14 01:28 PM PST -,2024-01-15T06:40:23Z,- null commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1891393402) at 2024-01-14 10:40 PM PST -,2024-01-15T17:45:36Z,- null commented on issue: [6114](https://github.com/hackforla/website/issues/6114#issuecomment-1892577176) at 2024-01-15 09:45 AM PST -,2024-01-16T20:42:30Z,- null commented on issue: [5986](https://github.com/hackforla/website/issues/5986#issuecomment-1894481491) at 2024-01-16 12:42 PM PST -,2024-01-17T03:09:18Z,- null commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1894866000) at 2024-01-16 07:09 PM PST -,2024-01-17T03:42:30Z,- null commented on issue: [5990](https://github.com/hackforla/website/issues/5990#issuecomment-1894888365) at 2024-01-16 07:42 PM PST -,2024-01-17T03:44:06Z,- null commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1894889344) at 2024-01-16 07:44 PM PST -,2024-01-17T03:47:53Z,- null commented on issue: [6117](https://github.com/hackforla/website/issues/6117#issuecomment-1894891828) at 2024-01-16 07:47 PM PST -,2024-01-17T04:04:36Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1894902675) at 2024-01-16 08:04 PM PST -,2024-01-17T04:19:53Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1894913104) at 2024-01-16 08:19 PM PST -,2024-01-17T04:20:06Z,- null commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1894913242) at 2024-01-16 08:20 PM PST -,2024-01-17T04:46:46Z,- null commented on issue: [6121](https://github.com/hackforla/website/issues/6121#issuecomment-1894932930) at 2024-01-16 08:46 PM PST -,2024-01-17T04:56:00Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1894940503) at 2024-01-16 08:56 PM PST -,2024-01-17T05:12:38Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1894953597) at 2024-01-16 09:12 PM PST -,2024-01-17T05:24:36Z,- null commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1894963559) at 2024-01-16 09:24 PM PST -,2024-01-17T05:27:59Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1894966426) at 2024-01-16 09:27 PM PST -,2024-01-17T06:09:31Z,- null commented on issue: [6106](https://github.com/hackforla/website/issues/6106#issuecomment-1895000224) at 2024-01-16 10:09 PM PST -,2024-01-17T21:05:31Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1896698462) at 2024-01-17 01:05 PM PST -,2024-01-17T21:29:35Z,- null commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-1896827550) at 2024-01-17 01:29 PM PST -,2024-01-18T18:20:44Z,- null commented on issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1898990889) at 2024-01-18 10:20 AM PST -,2024-01-18T20:24:18Z,- null commented on issue: [6126](https://github.com/hackforla/website/issues/6126#issuecomment-1899152771) at 2024-01-18 12:24 PM PST -,2024-01-19T01:40:18Z,- null commented on issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1899498593) at 2024-01-18 05:40 PM PST -,2024-01-19T01:49:58Z,- null commented on issue: [6065](https://github.com/hackforla/website/issues/6065#issuecomment-1899508123) at 2024-01-18 05:49 PM PST -,2024-01-19T03:34:53Z,- null commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1899639246) at 2024-01-18 07:34 PM PST -,2024-01-19T07:06:15Z,- null commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1899877644) at 2024-01-18 11:06 PM PST -,2024-01-19T07:06:17Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1899877677) at 2024-01-18 11:06 PM PST -,2024-01-19T07:07:11Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1899878545) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:32Z,- null commented on issue: [4621](https://github.com/hackforla/website/issues/4621#issuecomment-1899878878) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:35Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1899878906) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:37Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1899878946) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:39Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1899878987) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:41Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1899879012) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:43Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1899879044) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:46Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1899879084) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:48Z,- null commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1899879162) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:50Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1899879248) at 2024-01-18 11:07 PM PST -,2024-01-19T07:07:58Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1899879587) at 2024-01-18 11:07 PM PST -,2024-01-19T07:08:01Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1899879693) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:03Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1899879727) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:06Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1899879773) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:08Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1899879813) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:10Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1899879847) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:13Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1899879890) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:15Z,- null commented on issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1899879924) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:17Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1899879970) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:22Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1899880051) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:25Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1899880090) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:27Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1899880129) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:29Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1899880154) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:31Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1899880186) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:48Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1899880423) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:50Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1899880460) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:52Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1899880496) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:54Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1899880526) at 2024-01-18 11:08 PM PST -,2024-01-19T07:08:57Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1899880568) at 2024-01-18 11:08 PM PST -,2024-01-19T07:09:04Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1899880667) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:07Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1899880709) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:09Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1899880739) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:17Z,- null commented on issue: [5592](https://github.com/hackforla/website/issues/5592#issuecomment-1899880850) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:20Z,- null commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1899880892) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:22Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1899880939) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:24Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1899880990) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:26Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1899881044) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:28Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1899881078) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:34Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1899881162) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:36Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1899881198) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:38Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1899881237) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:40Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1899881281) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:42Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1899881315) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:44Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1899881349) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:49Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1899881447) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:51Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1899881488) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:53Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1899881522) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:56Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1899881564) at 2024-01-18 11:09 PM PST -,2024-01-19T07:09:58Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1899881596) at 2024-01-18 11:09 PM PST -,2024-01-19T07:10:00Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1899881634) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:02Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1899881667) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:04Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1899881696) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:07Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1899881751) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:09Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1899881792) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:12Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1899881824) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:14Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1899881862) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:16Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1899881895) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:20Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1899881949) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:23Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1899881975) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:27Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1899882023) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:30Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1899882063) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:33Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1899882115) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:35Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1899882159) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:38Z,- null commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1899882195) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:40Z,- null commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1899882237) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:42Z,- null commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1899882280) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:44Z,- null commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1899882311) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:46Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1899882339) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:50Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1899882398) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:53Z,- null commented on issue: [6035](https://github.com/hackforla/website/issues/6035#issuecomment-1899882438) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:55Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1899882472) at 2024-01-18 11:10 PM PST -,2024-01-19T07:10:58Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1899882507) at 2024-01-18 11:10 PM PST -,2024-01-19T07:11:01Z,- null commented on issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-1899882543) at 2024-01-18 11:11 PM PST -,2024-01-19T07:11:03Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1899882581) at 2024-01-18 11:11 PM PST -,2024-01-19T07:11:06Z,- null commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1899882623) at 2024-01-18 11:11 PM PST -,2024-01-20T08:26:54Z,- null commented on issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1901942860) at 2024-01-20 12:26 AM PST -,2024-01-20T18:01:56Z,- null commented on issue: [6064](https://github.com/hackforla/website/issues/6064#issuecomment-1902207478) at 2024-01-20 10:01 AM PST -,2024-01-21T14:36:15Z,- null commented on issue: [6137](https://github.com/hackforla/website/issues/6137#issuecomment-1902655220) at 2024-01-21 06:36 AM PST -,2024-01-21T15:30:36Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-1902671507) at 2024-01-21 07:30 AM PST -,2024-01-21T16:06:17Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1902681145) at 2024-01-21 08:06 AM PST -,2024-01-22T08:48:29Z,- null commented on issue: [5983](https://github.com/hackforla/website/issues/5983#issuecomment-1903511950) at 2024-01-22 12:48 AM PST -,2024-01-22T10:31:14Z,- null commented on issue: [6142](https://github.com/hackforla/website/issues/6142#issuecomment-1903693658) at 2024-01-22 02:31 AM PST -,2024-01-22T21:03:33Z,- null commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1904812876) at 2024-01-22 01:03 PM PST -,2024-01-22T22:56:05Z,- null commented on issue: [6143](https://github.com/hackforla/website/issues/6143#issuecomment-1904974293) at 2024-01-22 02:56 PM PST -,2024-01-22T22:57:59Z,- null commented on issue: [6143](https://github.com/hackforla/website/issues/6143#issuecomment-1904976745) at 2024-01-22 02:57 PM PST -,2024-01-23T00:07:01Z,- null commented on issue: [6144](https://github.com/hackforla/website/issues/6144#issuecomment-1905055456) at 2024-01-22 04:07 PM PST -,2024-01-23T05:21:52Z,- null commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1905312435) at 2024-01-22 09:21 PM PST -,2024-01-23T18:39:59Z,- null commented on issue: [6112](https://github.com/hackforla/website/issues/6112#issuecomment-1906695718) at 2024-01-23 10:39 AM PST -,2024-01-23T21:59:41Z,- null commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1906989664) at 2024-01-23 01:59 PM PST -,2024-01-23T23:45:35Z,- null commented on issue: [6104](https://github.com/hackforla/website/issues/6104#issuecomment-1907101069) at 2024-01-23 03:45 PM PST -,2024-01-24T19:10:41Z,- null commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1908757036) at 2024-01-24 11:10 AM PST -,2024-01-24T23:58:27Z,- null commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1909120477) at 2024-01-24 03:58 PM PST -,2024-01-25T01:11:02Z,- null commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1909182634) at 2024-01-24 05:11 PM PST -,2024-01-26T00:17:50Z,- null commented on issue: [6165](https://github.com/hackforla/website/issues/6165#issuecomment-1911207771) at 2024-01-25 04:17 PM PST -,2024-01-26T03:12:41Z,- null commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1911339364) at 2024-01-25 07:12 PM PST -,2024-01-26T04:01:28Z,- null commented on issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1911444908) at 2024-01-25 08:01 PM PST -,2024-01-26T07:06:05Z,- null commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1911585088) at 2024-01-25 11:06 PM PST -,2024-01-26T07:06:08Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1911585119) at 2024-01-25 11:06 PM PST -,2024-01-26T07:06:55Z,- null commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1911585717) at 2024-01-25 11:06 PM PST -,2024-01-26T07:07:15Z,- null commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1911586041) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:17Z,- null commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1911586069) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:19Z,- null commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1911586093) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:21Z,- null commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1911586122) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:24Z,- null commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1911586150) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:26Z,- null commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1911586182) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:30Z,- null commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1911586247) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:37Z,- null commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1911586360) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:39Z,- null commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1911586393) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:41Z,- null commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1911586414) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:44Z,- null commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1911586453) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:46Z,- null commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1911586485) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:48Z,- null commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1911586516) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:50Z,- null commented on issue: [5004](https://github.com/hackforla/website/issues/5004#issuecomment-1911586550) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:54Z,- null commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1911586620) at 2024-01-25 11:07 PM PST -,2024-01-26T07:07:58Z,- null commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1911586684) at 2024-01-25 11:07 PM PST -,2024-01-26T07:08:00Z,- null commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1911586713) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:02Z,- null commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1911586747) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:04Z,- null commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1911586779) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:06Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1911586816) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:18Z,- null commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1911586989) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:20Z,- null commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1911587024) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:22Z,- null commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1911587049) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:24Z,- null commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1911587081) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:26Z,- null commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1911587121) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:33Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1911587225) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:35Z,- null commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1911587247) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:37Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1911587269) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:47Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1911587419) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:49Z,- null commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1911587444) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:51Z,- null commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1911587468) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:53Z,- null commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1911587487) at 2024-01-25 11:08 PM PST -,2024-01-26T07:08:58Z,- null commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1911587564) at 2024-01-25 11:08 PM PST -,2024-01-26T07:09:00Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1911587606) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:01Z,- null commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1911587629) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:04Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1911587674) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:06Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1911587697) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:08Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1911587737) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:11Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1911587777) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:13Z,- null commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1911587834) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:15Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1911587856) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:17Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1911587891) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:19Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1911587927) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:21Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1911587959) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:22Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1911587981) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:25Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1911588026) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:27Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1911588052) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:29Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1911588075) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:31Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1911588110) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:33Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1911588131) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:36Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1911588168) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:39Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1911588191) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:42Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1911588224) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:44Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1911588252) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:46Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1911588285) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:48Z,- null commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1911588310) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:50Z,- null commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1911588341) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:53Z,- null commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1911588370) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:55Z,- null commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1911588408) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:58Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1911588451) at 2024-01-25 11:09 PM PST -,2024-01-26T07:09:59Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1911588479) at 2024-01-25 11:09 PM PST -,2024-01-26T07:10:01Z,- null commented on issue: [6035](https://github.com/hackforla/website/issues/6035#issuecomment-1911588505) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:03Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1911588530) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:05Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1911588556) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:07Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1911588585) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:09Z,- null commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1911588600) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:11Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1911588632) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:13Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1911588666) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:15Z,- null commented on issue: [6121](https://github.com/hackforla/website/issues/6121#issuecomment-1911588693) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:17Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1911588711) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:19Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1911588749) at 2024-01-25 11:10 PM PST -,2024-01-26T07:10:21Z,- null commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1911588784) at 2024-01-25 11:10 PM PST -,2024-01-27T01:50:00Z,- null commented on issue: [6137](https://github.com/hackforla/website/issues/6137#issuecomment-1912908755) at 2024-01-26 05:50 PM PST -,2024-01-27T04:03:19Z,- null commented on issue: [6166](https://github.com/hackforla/website/issues/6166#issuecomment-1912968420) at 2024-01-26 08:03 PM PST -,2024-01-28T08:23:27Z,- null commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1913512936) at 2024-01-28 12:23 AM PST -,2024-01-28T18:23:59Z,- null commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1913682100) at 2024-01-28 10:23 AM PST -,2024-01-28T21:47:59Z,- null commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1913732282) at 2024-01-28 01:47 PM PST -,2024-01-29T01:03:59Z,- null commented on issue: [6191](https://github.com/hackforla/website/issues/6191#issuecomment-1913796977) at 2024-01-28 05:03 PM PST -,2024-01-29T01:15:45Z,- null commented on issue: [6192](https://github.com/hackforla/website/issues/6192#issuecomment-1913803622) at 2024-01-28 05:15 PM PST -,2024-01-29T22:40:06Z,- null commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1915700185) at 2024-01-29 02:40 PM PST -,2024-01-30T01:23:36Z,- null commented on issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1915887484) at 2024-01-29 05:23 PM PST -,2024-01-30T02:50:30Z,- null commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1915979086) at 2024-01-29 06:50 PM PST -,2024-01-30T07:41:55Z,- null commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1916244563) at 2024-01-29 11:41 PM PST -,2024-01-30T09:20:17Z,- null commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1916399948) at 2024-01-30 01:20 AM PST -,2024-01-30T18:34:07Z,- null commented on issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1917657159) at 2024-01-30 10:34 AM PST -,2024-01-30T19:53:25Z,- null commented on issue: [6189](https://github.com/hackforla/website/issues/6189#issuecomment-1917782110) at 2024-01-30 11:53 AM PST -,2024-01-30T20:22:29Z,- null commented on issue: [6165](https://github.com/hackforla/website/issues/6165#issuecomment-1917828149) at 2024-01-30 12:22 PM PST -,2024-01-30T21:03:55Z,- null commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1917889892) at 2024-01-30 01:03 PM PST -,2024-01-30T21:20:55Z,- null commented on issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1917914354) at 2024-01-30 01:20 PM PST -,2024-01-30T23:44:04Z,- null commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1918100444) at 2024-01-30 03:44 PM PST -,2024-01-31T03:45:50Z,- null commented on issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1918329114) at 2024-01-30 07:45 PM PST -,2024-01-31T07:01:21Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1918504019) at 2024-01-30 11:01 PM PST -,2024-01-31T07:03:27Z,- null commented on issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1918506406) at 2024-01-30 11:03 PM PST -,2024-01-31T07:09:25Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1918513127) at 2024-01-30 11:09 PM PST -,2024-01-31T07:19:43Z,- null commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1918525409) at 2024-01-30 11:19 PM PST -,2024-01-31T08:21:47Z,- null commented on issue: [6200](https://github.com/hackforla/website/issues/6200#issuecomment-1918608008) at 2024-01-31 12:21 AM PST -,2024-01-31T18:15:38Z,- null commented on issue: [6045](https://github.com/hackforla/website/issues/6045#issuecomment-1919657973) at 2024-01-31 10:15 AM PST -,2024-02-01T05:32:33Z,- null commented on issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1920547949) at 2024-01-31 09:32 PM PST -,2024-02-01T19:13:34Z,- null commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1922045092) at 2024-02-01 11:13 AM PST -,2024-02-01T20:58:29Z,- null commented on issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922232023) at 2024-02-01 12:58 PM PST -,2024-02-01T20:59:19Z,- null commented on issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1922233782) at 2024-02-01 12:59 PM PST -,2024-02-01T22:10:56Z,- null commented on issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1922355902) at 2024-02-01 02:10 PM PST -,2024-02-02T00:53:35Z,- null commented on issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1922589850) at 2024-02-01 04:53 PM PST -,2024-02-02T01:24:54Z,- null commented on issue: [6046](https://github.com/hackforla/website/issues/6046#issuecomment-1922619378) at 2024-02-01 05:24 PM PST -,2024-02-02T01:59:54Z,- null commented on issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922650412) at 2024-02-01 05:59 PM PST -,2024-02-02T02:10:13Z,- null commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1922662518) at 2024-02-01 06:10 PM PST -,2024-02-02T07:06:13Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1923125618) at 2024-02-01 11:06 PM PST -,2024-02-02T07:06:48Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1923127898) at 2024-02-01 11:06 PM PST -,2024-02-02T07:06:57Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1923128183) at 2024-02-01 11:06 PM PST -,2024-02-02T07:06:59Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1923128347) at 2024-02-01 11:06 PM PST -,2024-02-02T07:07:10Z,- null commented on issue: [5312](https://github.com/hackforla/website/issues/5312#issuecomment-1923129551) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:12Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1923129581) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:14Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1923129616) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:16Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1923129764) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:17Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1923130156) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:20Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1923130522) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:22Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1923130563) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:24Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1923130593) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:25Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1923130623) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:27Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1923130649) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:29Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1923130679) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:31Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1923130729) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:33Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1923130799) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:35Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1923130883) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:37Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1923131276) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:39Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1923131859) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:41Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1923131886) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:43Z,- null commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1923131925) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:44Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1923131957) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:47Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1923132005) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:50Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1923132066) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:51Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1923132099) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:53Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1923132369) at 2024-02-01 11:07 PM PST -,2024-02-02T07:07:57Z,- null commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1923133131) at 2024-02-01 11:07 PM PST -,2024-02-02T07:08:00Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1923133169) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:01Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1923133191) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:04Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1923133231) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:07Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1923133290) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:09Z,- null commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1923133320) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:12Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1923133405) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:14Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1923133550) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:16Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1923134010) at 2024-02-01 11:08 PM PST -,2024-02-02T07:08:18Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1923134500) at 2024-02-01 11:08 PM PST -,2024-02-02T17:37:20Z,- null commented on issue: [6048](https://github.com/hackforla/website/issues/6048#issuecomment-1924381326) at 2024-02-02 09:37 AM PST -,2024-02-02T19:37:30Z,- null commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1924560548) at 2024-02-02 11:37 AM PST -,2024-02-02T23:36:23Z,- null commented on issue: [6192](https://github.com/hackforla/website/issues/6192#issuecomment-1924906132) at 2024-02-02 03:36 PM PST -,2024-02-03T01:34:02Z,- null commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1925001517) at 2024-02-02 05:34 PM PST -,2024-02-04T01:12:26Z,- null commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1925509300) at 2024-02-03 05:12 PM PST -,2024-02-04T09:36:48Z,- null commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925659294) at 2024-02-04 01:36 AM PST -,2024-02-04T13:27:00Z,- null commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925749674) at 2024-02-04 05:27 AM PST -,2024-02-04T14:52:57Z,- null commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1925783324) at 2024-02-04 06:52 AM PST -,2024-02-04T15:13:41Z,- null commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1925789313) at 2024-02-04 07:13 AM PST -,2024-02-04T15:15:50Z,- null commented on issue: [6101](https://github.com/hackforla/website/issues/6101#issuecomment-1925790108) at 2024-02-04 07:15 AM PST -,2024-02-04T17:19:41Z,- null commented on issue: [6220](https://github.com/hackforla/website/issues/6220#issuecomment-1925845948) at 2024-02-04 09:19 AM PST -,2024-02-04T17:32:43Z,- null commented on issue: [6221](https://github.com/hackforla/website/issues/6221#issuecomment-1925850035) at 2024-02-04 09:32 AM PST -,2024-02-04T17:43:32Z,- null commented on issue: [6222](https://github.com/hackforla/website/issues/6222#issuecomment-1925860188) at 2024-02-04 09:43 AM PST -,2024-02-04T17:55:18Z,- null commented on issue: [6223](https://github.com/hackforla/website/issues/6223#issuecomment-1925864588) at 2024-02-04 09:55 AM PST -,2024-02-04T20:09:02Z,- null commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1925900125) at 2024-02-04 12:09 PM PST -,2024-02-04T22:16:28Z,- null commented on issue: [6227](https://github.com/hackforla/website/issues/6227#issuecomment-1925943624) at 2024-02-04 02:16 PM PST -,2024-02-05T03:47:29Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1926181924) at 2024-02-04 07:47 PM PST -,2024-02-05T07:18:01Z,- null commented on issue: [6230](https://github.com/hackforla/website/issues/6230#issuecomment-1926361397) at 2024-02-04 11:18 PM PST -,2024-02-05T07:21:45Z,- null commented on issue: [6231](https://github.com/hackforla/website/issues/6231#issuecomment-1926365759) at 2024-02-04 11:21 PM PST -,2024-02-05T07:52:30Z,- null commented on issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-1926402930) at 2024-02-04 11:52 PM PST -,2024-02-05T08:17:48Z,- null commented on issue: [6233](https://github.com/hackforla/website/issues/6233#issuecomment-1926436442) at 2024-02-05 12:17 AM PST -,2024-02-05T23:32:34Z,- null commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1928497275) at 2024-02-05 03:32 PM PST -,2024-02-05T23:59:26Z,- null commented on issue: [5627](https://github.com/hackforla/website/issues/5627#issuecomment-1928530700) at 2024-02-05 03:59 PM PST -,2024-02-06T00:01:55Z,- null commented on issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-1928533274) at 2024-02-05 04:01 PM PST -,2024-02-06T01:27:08Z,- null commented on issue: [6233](https://github.com/hackforla/website/issues/6233#issuecomment-1928608554) at 2024-02-05 05:27 PM PST -,2024-02-06T02:47:06Z,- null commented on issue: [6200](https://github.com/hackforla/website/issues/6200#issuecomment-1928684132) at 2024-02-05 06:47 PM PST -,2024-02-06T02:51:02Z,- null commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1928687408) at 2024-02-05 06:51 PM PST -,2024-02-06T02:57:11Z,- null commented on issue: [6242](https://github.com/hackforla/website/issues/6242#issuecomment-1928692609) at 2024-02-05 06:57 PM PST -,2024-02-06T03:24:57Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1928716679) at 2024-02-05 07:24 PM PST -,2024-02-06T03:30:39Z,- null commented on issue: [6246](https://github.com/hackforla/website/issues/6246#issuecomment-1928721399) at 2024-02-05 07:30 PM PST -,2024-02-06T03:30:45Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1928721478) at 2024-02-05 07:30 PM PST -,2024-02-06T03:32:28Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1928722810) at 2024-02-05 07:32 PM PST -,2024-02-06T03:32:38Z,- null commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-1928722931) at 2024-02-05 07:32 PM PST -,2024-02-06T03:34:05Z,- null commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1928724065) at 2024-02-05 07:34 PM PST -,2024-02-06T03:34:07Z,- null commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1928724092) at 2024-02-05 07:34 PM PST -,2024-02-06T03:41:56Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1928730067) at 2024-02-05 07:41 PM PST -,2024-02-06T04:06:59Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1928749515) at 2024-02-05 08:06 PM PST -,2024-02-06T04:18:33Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1928757514) at 2024-02-05 08:18 PM PST -,2024-02-06T04:19:19Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1928758030) at 2024-02-05 08:19 PM PST -,2024-02-06T08:45:23Z,- null commented on issue: [6256](https://github.com/hackforla/website/issues/6256#issuecomment-1929033140) at 2024-02-06 12:45 AM PST -,2024-02-06T08:46:57Z,- null commented on issue: [6257](https://github.com/hackforla/website/issues/6257#issuecomment-1929035661) at 2024-02-06 12:46 AM PST -,2024-02-06T08:49:47Z,- null commented on issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1929040328) at 2024-02-06 12:49 AM PST -,2024-02-06T08:51:53Z,- null commented on issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1929044031) at 2024-02-06 12:51 AM PST -,2024-02-06T18:01:27Z,- null commented on issue: [6050](https://github.com/hackforla/website/issues/6050#issuecomment-1930482987) at 2024-02-06 10:01 AM PST -,2024-02-06T19:56:05Z,- null commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1930653989) at 2024-02-06 11:56 AM PST -,2024-02-06T20:52:51Z,- null commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1930732397) at 2024-02-06 12:52 PM PST -,2024-02-06T22:23:32Z,- null commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1930868414) at 2024-02-06 02:23 PM PST -,2024-02-07T00:44:10Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1931033874) at 2024-02-06 04:44 PM PST -,2024-02-07T03:20:15Z,- null commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1931203021) at 2024-02-06 07:20 PM PST -,2024-02-08T03:45:47Z,- null commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1933317683) at 2024-02-07 07:45 PM PST -,2024-02-08T22:28:45Z,- null commented on issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1935034347) at 2024-02-08 02:28 PM PST -,2024-02-09T00:36:40Z,- null commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1935148653) at 2024-02-08 04:36 PM PST -,2024-02-09T00:46:50Z,- null commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1935157789) at 2024-02-08 04:46 PM PST -,2024-02-09T03:21:23Z,- null commented on issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1935278692) at 2024-02-08 07:21 PM PST -,2024-02-09T07:06:05Z,- null commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1935430289) at 2024-02-08 11:06 PM PST -,2024-02-09T07:06:16Z,- null commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1935430428) at 2024-02-08 11:06 PM PST -,2024-02-09T07:06:18Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1935430456) at 2024-02-08 11:06 PM PST -,2024-02-09T07:07:02Z,- null commented on issue: [5216](https://github.com/hackforla/website/issues/5216#issuecomment-1935431069) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:13Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1935431246) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:15Z,- null commented on issue: [5479](https://github.com/hackforla/website/issues/5479#issuecomment-1935431286) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:29Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1935431510) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:32Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1935431563) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:34Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1935431600) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:37Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1935431636) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:39Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1935431672) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:42Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1935431714) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:44Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1935431752) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:46Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1935431792) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:48Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1935431820) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:50Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1935431865) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:52Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1935431910) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:55Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1935431947) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:57Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1935431976) at 2024-02-08 11:07 PM PST -,2024-02-09T07:07:59Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1935432004) at 2024-02-08 11:07 PM PST -,2024-02-09T07:08:02Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1935432039) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:04Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1935432089) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:06Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1935432119) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:09Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1935432153) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:12Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1935432202) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:14Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1935432244) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:16Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1935432281) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:21Z,- null commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1935432344) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:24Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1935432383) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:26Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1935432425) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:28Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1935432454) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:30Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1935432492) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:33Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1935432530) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:35Z,- null commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1935432559) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:40Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1935432632) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:43Z,- null commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1935432695) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:48Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1935432795) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:50Z,- null commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1935432841) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:55Z,- null commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1935432915) at 2024-02-08 11:08 PM PST -,2024-02-09T07:08:58Z,- null commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1935432948) at 2024-02-08 11:08 PM PST -,2024-02-09T22:50:15Z,- null commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1936706395) at 2024-02-09 02:50 PM PST -,2024-02-09T22:51:02Z,- null commented on issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1936707007) at 2024-02-09 02:51 PM PST -,2024-02-10T05:10:40Z,- null commented on issue: [5841](https://github.com/hackforla/website/issues/5841#issuecomment-1936869525) at 2024-02-09 09:10 PM PST -,2024-02-10T15:04:36Z,- null commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1937032851) at 2024-02-10 07:04 AM PST -,2024-02-10T22:42:10Z,- null commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937320455) at 2024-02-10 02:42 PM PST -,2024-02-10T22:50:23Z,- null commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937335130) at 2024-02-10 02:50 PM PST -,2024-02-10T22:54:49Z,- null commented on issue: [5714](https://github.com/hackforla/website/issues/5714#issuecomment-1937343261) at 2024-02-10 02:54 PM PST -,2024-02-11T17:29:31Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-1937816642) at 2024-02-11 09:29 AM PST -,2024-02-11T20:34:29Z,- null commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1937862200) at 2024-02-11 12:34 PM PST -,2024-02-11T23:43:02Z,- null commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1937915082) at 2024-02-11 03:43 PM PST -,2024-02-12T18:55:50Z,- null commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939346080) at 2024-02-12 10:55 AM PST -,2024-02-13T00:17:54Z,- null commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1939854092) at 2024-02-12 04:17 PM PST -,2024-02-13T16:37:14Z,- null commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1941969157) at 2024-02-13 08:37 AM PST -,2024-02-13T17:54:33Z,- null commented on issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1942103028) at 2024-02-13 09:54 AM PST -,2024-02-13T19:34:09Z,- null commented on issue: [5148](https://github.com/hackforla/website/issues/5148#issuecomment-1942253710) at 2024-02-13 11:34 AM PST -,2024-02-13T21:41:31Z,- null commented on issue: [5347](https://github.com/hackforla/website/issues/5347#issuecomment-1942663342) at 2024-02-13 01:41 PM PST -,2024-02-13T21:43:01Z,- null commented on issue: [5230](https://github.com/hackforla/website/issues/5230#issuecomment-1942667661) at 2024-02-13 01:43 PM PST -,2024-02-13T21:44:37Z,- null commented on issue: [5998](https://github.com/hackforla/website/issues/5998#issuecomment-1942672168) at 2024-02-13 01:44 PM PST -,2024-02-13T21:51:58Z,- null commented on issue: [5207](https://github.com/hackforla/website/issues/5207#issuecomment-1942691209) at 2024-02-13 01:51 PM PST -,2024-02-13T23:25:32Z,- null commented on issue: [5081](https://github.com/hackforla/website/issues/5081#issuecomment-1942836839) at 2024-02-13 03:25 PM PST -,2024-02-14T00:22:42Z,- null commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1942896554) at 2024-02-13 04:22 PM PST -,2024-02-14T01:24:41Z,- null commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942945506) at 2024-02-13 05:24 PM PST -,2024-02-14T03:17:45Z,- null commented on issue: [5988](https://github.com/hackforla/website/issues/5988#issuecomment-1943022847) at 2024-02-13 07:17 PM PST -,2024-02-14T05:41:27Z,- null commented on issue: [5349](https://github.com/hackforla/website/issues/5349#issuecomment-1943118661) at 2024-02-13 09:41 PM PST -,2024-02-14T06:37:17Z,- null commented on issue: [4993](https://github.com/hackforla/website/issues/4993#issuecomment-1943165443) at 2024-02-13 10:37 PM PST -,2024-02-14T16:14:28Z,- null commented on issue: [5985](https://github.com/hackforla/website/issues/5985#issuecomment-1944154280) at 2024-02-14 08:14 AM PST -,2024-02-14T21:50:50Z,- null commented on issue: [5987](https://github.com/hackforla/website/issues/5987#issuecomment-1944720827) at 2024-02-14 01:50 PM PST -,2024-02-15T05:36:57Z,- null commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1945403299) at 2024-02-14 09:36 PM PST -,2024-02-16T03:00:30Z,- null commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1947684241) at 2024-02-15 07:00 PM PST -,2024-02-16T04:00:49Z,- null commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1947721040) at 2024-02-15 08:00 PM PST -,2024-02-16T04:27:13Z,- null commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1947738161) at 2024-02-15 08:27 PM PST -,2024-02-16T06:19:27Z,- null commented on issue: [5878](https://github.com/hackforla/website/issues/5878#issuecomment-1947821331) at 2024-02-15 10:19 PM PST -,2024-02-16T07:06:02Z,- null commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1947859589) at 2024-02-15 11:06 PM PST -,2024-02-16T07:06:04Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1947859612) at 2024-02-15 11:06 PM PST -,2024-02-16T07:07:08Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1947860638) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:10Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1947860661) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:12Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1947860691) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:14Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1947860736) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:16Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1947860772) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:20Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1947860827) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:22Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1947860858) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:24Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1947860883) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:26Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1947860920) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:28Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1947860957) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:30Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1947860982) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:33Z,- null commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1947861016) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:35Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1947861045) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:37Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1947861079) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:39Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1947861131) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:41Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1947861157) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:43Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1947861181) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:46Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1947861220) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:49Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1947861258) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:51Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1947861283) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:52Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1947861308) at 2024-02-15 11:07 PM PST -,2024-02-16T07:07:58Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1947861399) at 2024-02-15 11:07 PM PST -,2024-02-16T07:08:00Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1947861431) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:02Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1947861469) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:06Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1947861535) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:08Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1947861573) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:10Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1947861611) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:12Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1947861644) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:14Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1947861671) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:16Z,- null commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1947861707) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:19Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1947861760) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:25Z,- null commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1947861847) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:27Z,- null commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1947861878) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:36Z,- null commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1947862009) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:37Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1947862045) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:40Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-1947862096) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:42Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1947862125) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:44Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1947862151) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:46Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1947862186) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:48Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1947862215) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:51Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1947862253) at 2024-02-15 11:08 PM PST -,2024-02-16T07:08:54Z,- null commented on issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1947862303) at 2024-02-15 11:08 PM PST -,2024-02-16T16:20:59Z,- null commented on issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1948792289) at 2024-02-16 08:20 AM PST -,2024-02-16T23:25:17Z,- null commented on issue: [6295](https://github.com/hackforla/website/issues/6295#issuecomment-1949476833) at 2024-02-16 03:25 PM PST -,2024-02-17T16:43:19Z,- null commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1950252888) at 2024-02-17 08:43 AM PST -,2024-02-17T18:43:24Z,- null commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1950280506) at 2024-02-17 10:43 AM PST -,2024-02-17T20:35:16Z,- null commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950302101) at 2024-02-17 12:35 PM PST -,2024-02-18T01:33:47Z,- null commented on issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950727465) at 2024-02-17 05:33 PM PST -,2024-02-18T03:44:42Z,- null commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1950921117) at 2024-02-17 07:44 PM PST -,2024-02-18T04:49:30Z,- null commented on issue: [6108](https://github.com/hackforla/website/issues/6108#issuecomment-1950961270) at 2024-02-17 08:49 PM PST -,2024-02-18T17:02:23Z,- null commented on issue: [6317](https://github.com/hackforla/website/issues/6317#issuecomment-1951386115) at 2024-02-18 09:02 AM PST -,2024-02-19T19:47:39Z,- null commented on issue: [5991](https://github.com/hackforla/website/issues/5991#issuecomment-1953076696) at 2024-02-19 11:47 AM PST -,2024-02-19T21:39:43Z,- null commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1953188039) at 2024-02-19 01:39 PM PST -,2024-02-19T23:05:51Z,- null commented on issue: [6294](https://github.com/hackforla/website/issues/6294#issuecomment-1953257634) at 2024-02-19 03:05 PM PST -,2024-02-20T00:44:38Z,- null commented on issue: [6298](https://github.com/hackforla/website/issues/6298#issuecomment-1953320711) at 2024-02-19 04:44 PM PST -,2024-02-20T01:32:20Z,- null commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1953349659) at 2024-02-19 05:32 PM PST -,2024-02-20T01:38:55Z,- null commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1953353534) at 2024-02-19 05:38 PM PST -,2024-02-20T02:13:16Z,- null commented on issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1953377842) at 2024-02-19 06:13 PM PST -,2024-02-20T04:22:09Z,- null commented on issue: [6227](https://github.com/hackforla/website/issues/6227#issuecomment-1953465731) at 2024-02-19 08:22 PM PST -,2024-02-20T06:35:08Z,- null commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1953570095) at 2024-02-19 10:35 PM PST -,2024-02-20T18:59:17Z,- null commented on issue: [6317](https://github.com/hackforla/website/issues/6317#issuecomment-1954872841) at 2024-02-20 10:59 AM PST -,2024-02-21T02:22:03Z,- null commented on issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1955750827) at 2024-02-20 06:22 PM PST -,2024-02-21T03:01:14Z,- null commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1955788549) at 2024-02-20 07:01 PM PST -,2024-02-21T03:22:41Z,- null commented on issue: [6311](https://github.com/hackforla/website/issues/6311#issuecomment-1955807705) at 2024-02-20 07:22 PM PST -,2024-02-21T03:52:13Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-1955839715) at 2024-02-20 07:52 PM PST -,2024-02-21T04:24:04Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-1955865818) at 2024-02-20 08:24 PM PST -,2024-02-21T04:59:42Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-1955897855) at 2024-02-20 08:59 PM PST -,2024-02-21T07:09:28Z,- null commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1956020889) at 2024-02-20 11:09 PM PST -,2024-02-21T18:31:30Z,- null commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-1957648985) at 2024-02-21 10:31 AM PST -,2024-02-21T19:01:23Z,- null commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1957712471) at 2024-02-21 11:01 AM PST -,2024-02-21T19:20:37Z,- null commented on issue: [6312](https://github.com/hackforla/website/issues/6312#issuecomment-1957741986) at 2024-02-21 11:20 AM PST -,2024-02-21T23:13:14Z,- null commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1958282825) at 2024-02-21 03:13 PM PST -,2024-02-21T23:25:45Z,- null commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1958318079) at 2024-02-21 03:25 PM PST -,2024-02-22T05:46:15Z,- null commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1958745858) at 2024-02-21 09:46 PM PST -,2024-02-22T06:55:18Z,- null commented on issue: [6356](https://github.com/hackforla/website/issues/6356#issuecomment-1958817807) at 2024-02-21 10:55 PM PST -,2024-02-22T11:27:52Z,- null commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1959255716) at 2024-02-22 03:27 AM PST -,2024-02-22T17:46:45Z,- null commented on issue: [6239](https://github.com/hackforla/website/issues/6239#issuecomment-1959954775) at 2024-02-22 09:46 AM PST -,2024-02-22T18:59:49Z,- null commented on issue: [6107](https://github.com/hackforla/website/issues/6107#issuecomment-1960070115) at 2024-02-22 10:59 AM PST -,2024-02-22T23:23:52Z,- null commented on issue: [5711](https://github.com/hackforla/website/issues/5711#issuecomment-1960502990) at 2024-02-22 03:23 PM PST -,2024-02-23T04:06:00Z,- null commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1960704910) at 2024-02-22 08:06 PM PST -,2024-02-23T07:06:16Z,- null commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1960826118) at 2024-02-22 11:06 PM PST -,2024-02-23T07:06:25Z,- null commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1960826245) at 2024-02-22 11:06 PM PST -,2024-02-23T07:06:27Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1960826278) at 2024-02-22 11:06 PM PST -,2024-02-23T07:07:26Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1960827111) at 2024-02-22 11:07 PM PST -,2024-02-23T07:07:44Z,- null commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1960827312) at 2024-02-22 11:07 PM PST -,2024-02-23T07:07:49Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1960827380) at 2024-02-22 11:07 PM PST -,2024-02-23T07:07:51Z,- null commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1960827412) at 2024-02-22 11:07 PM PST -,2024-02-23T07:07:54Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1960827450) at 2024-02-22 11:07 PM PST -,2024-02-23T07:07:57Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-1960827480) at 2024-02-22 11:07 PM PST -,2024-02-23T07:07:59Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1960827520) at 2024-02-22 11:07 PM PST -,2024-02-23T07:08:02Z,- null commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1960827543) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:04Z,- null commented on issue: [5861](https://github.com/hackforla/website/issues/5861#issuecomment-1960827578) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:07Z,- null commented on issue: [5862](https://github.com/hackforla/website/issues/5862#issuecomment-1960827614) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:09Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1960827661) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:12Z,- null commented on issue: [5866](https://github.com/hackforla/website/issues/5866#issuecomment-1960827692) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:17Z,- null commented on issue: [5871](https://github.com/hackforla/website/issues/5871#issuecomment-1960827783) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:20Z,- null commented on issue: [5870](https://github.com/hackforla/website/issues/5870#issuecomment-1960827817) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:23Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1960827850) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:25Z,- null commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1960827873) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:28Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1960827932) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:31Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1960827960) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:33Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1960828002) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:35Z,- null commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1960828042) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:42Z,- null commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1960828138) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:44Z,- null commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1960828164) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:46Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1960828198) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:50Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1960828231) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:53Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1960828269) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:57Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1960828312) at 2024-02-22 11:08 PM PST -,2024-02-23T07:08:59Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1960828350) at 2024-02-22 11:08 PM PST -,2024-02-23T07:09:09Z,- null commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1960828536) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:12Z,- null commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1960828586) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:21Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1960828724) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:24Z,- null commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1960828758) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:27Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1960828790) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:30Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-1960828837) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:32Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1960828870) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:35Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1960828917) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:38Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1960828953) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:42Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1960828998) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:46Z,- null commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1960829053) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:49Z,- null commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1960829092) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:51Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1960829128) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:56Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1960829199) at 2024-02-22 11:09 PM PST -,2024-02-23T07:09:59Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1960829221) at 2024-02-22 11:09 PM PST -,2024-02-23T07:10:01Z,- null commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1960829258) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:03Z,- null commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1960829282) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:06Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1960829314) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:08Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1960829356) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:11Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1960829392) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:13Z,- null commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1960829431) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:15Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1960829465) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:18Z,- null commented on issue: [5208](https://github.com/hackforla/website/issues/5208#issuecomment-1960829500) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:20Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1960829535) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:22Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1960829562) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:25Z,- null commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1960829599) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:27Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1960829644) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:29Z,- null commented on issue: [5868](https://github.com/hackforla/website/issues/5868#issuecomment-1960829678) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:32Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-1960829702) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:34Z,- null commented on issue: [5872](https://github.com/hackforla/website/issues/5872#issuecomment-1960829735) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:37Z,- null commented on issue: [5869](https://github.com/hackforla/website/issues/5869#issuecomment-1960829766) at 2024-02-22 11:10 PM PST -,2024-02-23T07:10:39Z,- null commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1960829806) at 2024-02-22 11:10 PM PST -,2024-02-23T07:11:09Z,- null commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1960830209) at 2024-02-22 11:11 PM PST -,2024-02-23T16:27:29Z,- null commented on issue: [6111](https://github.com/hackforla/website/issues/6111#issuecomment-1961630399) at 2024-02-23 08:27 AM PST -,2024-02-23T20:32:28Z,- null commented on issue: [5838](https://github.com/hackforla/website/issues/5838#issuecomment-1961952969) at 2024-02-23 12:32 PM PST -,2024-02-24T04:30:17Z,- null commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-1962249469) at 2024-02-23 08:30 PM PST -,2024-02-24T04:45:13Z,- null commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1962252312) at 2024-02-23 08:45 PM PST -,2024-02-24T23:26:07Z,- null commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1962756192) at 2024-02-24 03:26 PM PST -,2024-02-25T00:28:55Z,- null commented on issue: [6123](https://github.com/hackforla/website/issues/6123#issuecomment-1962768890) at 2024-02-24 04:28 PM PST -,2024-02-25T01:19:30Z,- null commented on issue: [5839](https://github.com/hackforla/website/issues/5839#issuecomment-1962777924) at 2024-02-24 05:19 PM PST -,2024-02-25T02:17:55Z,- null commented on issue: [6364](https://github.com/hackforla/website/issues/6364#issuecomment-1962789566) at 2024-02-24 06:17 PM PST -,2024-02-25T18:22:58Z,- null commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1963020704) at 2024-02-25 10:22 AM PST -,2024-02-25T18:30:00Z,- null commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1963022494) at 2024-02-25 10:30 AM PST -,2024-02-25T19:01:33Z,- null commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1963030231) at 2024-02-25 11:01 AM PST -,2024-02-25T22:31:42Z,- null commented on issue: [6199](https://github.com/hackforla/website/issues/6199#issuecomment-1963084150) at 2024-02-25 02:31 PM PST -,2024-02-26T00:34:49Z,- null commented on issue: [6375](https://github.com/hackforla/website/issues/6375#issuecomment-1963127100) at 2024-02-25 04:34 PM PST -,2024-02-26T02:48:24Z,- null commented on issue: [6376](https://github.com/hackforla/website/issues/6376#issuecomment-1963226143) at 2024-02-25 06:48 PM PST -,2024-02-26T02:52:14Z,- null commented on issue: [6377](https://github.com/hackforla/website/issues/6377#issuecomment-1963228835) at 2024-02-25 06:52 PM PST -,2024-02-26T04:38:14Z,- null commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1963304879) at 2024-02-25 08:38 PM PST -,2024-02-26T21:26:10Z,- null commented on issue: [6380](https://github.com/hackforla/website/issues/6380#issuecomment-1965320503) at 2024-02-26 01:26 PM PST -,2024-02-27T01:04:28Z,- null commented on issue: [6372](https://github.com/hackforla/website/issues/6372#issuecomment-1965607598) at 2024-02-26 05:04 PM PST -,2024-02-27T02:55:23Z,- null commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1965696606) at 2024-02-26 06:55 PM PST -,2024-02-27T03:00:49Z,- null commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1965700903) at 2024-02-26 07:00 PM PST -,2024-02-27T04:14:54Z,- null commented on issue: [6257](https://github.com/hackforla/website/issues/6257#issuecomment-1965755877) at 2024-02-26 08:14 PM PST -,2024-02-27T05:38:34Z,- null commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1965825322) at 2024-02-26 09:38 PM PST -,2024-02-27T08:20:36Z,- null commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1966011015) at 2024-02-27 12:20 AM PST -,2024-02-27T17:08:01Z,- null commented on issue: [5993](https://github.com/hackforla/website/issues/5993#issuecomment-1967177917) at 2024-02-27 09:08 AM PST -,2024-02-27T20:02:37Z,- null commented on issue: [6373](https://github.com/hackforla/website/issues/6373#issuecomment-1967499835) at 2024-02-27 12:02 PM PST -,2024-02-27T20:05:47Z,- null commented on issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1967504578) at 2024-02-27 12:05 PM PST -,2024-02-28T00:00:14Z,- null commented on issue: [6375](https://github.com/hackforla/website/issues/6375#issuecomment-1967935627) at 2024-02-27 04:00 PM PST -,2024-02-28T05:30:49Z,- null commented on issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1968262797) at 2024-02-27 09:30 PM PST -,2024-02-28T23:10:47Z,- null commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1970071895) at 2024-02-28 03:10 PM PST -,2024-02-29T00:01:26Z,- null commented on issue: [5994](https://github.com/hackforla/website/issues/5994#issuecomment-1970134107) at 2024-02-28 04:01 PM PST -,2024-02-29T02:08:33Z,- null commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1970268782) at 2024-02-28 06:08 PM PST -,2024-02-29T02:33:07Z,- null commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1970289084) at 2024-02-28 06:33 PM PST -,2024-02-29T03:59:56Z,- null commented on issue: [5587](https://github.com/hackforla/website/issues/5587#issuecomment-1970354028) at 2024-02-28 07:59 PM PST -,2024-02-29T04:19:05Z,- null commented on issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1970367384) at 2024-02-28 08:19 PM PST -,2024-02-29T08:08:56Z,- null commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1970616261) at 2024-02-29 12:08 AM PST -,2024-02-29T14:13:45Z,- null commented on issue: [6242](https://github.com/hackforla/website/issues/6242#issuecomment-1971232467) at 2024-02-29 06:13 AM PST -,2024-02-29T16:31:06Z,- null commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-1971510790) at 2024-02-29 08:31 AM PST -,2024-02-29T19:12:42Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1971795314) at 2024-02-29 11:12 AM PST -,2024-03-01T02:18:59Z,- null commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1972334364) at 2024-02-29 06:18 PM PST -,2024-03-01T03:13:29Z,- null commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1972394832) at 2024-02-29 07:13 PM PST -,2024-03-01T03:26:26Z,- null commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1972408827) at 2024-02-29 07:26 PM PST -,2024-03-01T05:25:52Z,- null commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-1972534165) at 2024-02-29 09:25 PM PST -,2024-03-01T07:06:07Z,- null commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1972624388) at 2024-02-29 11:06 PM PST -,2024-03-01T07:06:21Z,- null commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1972624647) at 2024-02-29 11:06 PM PST -,2024-03-01T07:07:06Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1972625487) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:23Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1972625775) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:27Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1972625833) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:40Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1972626067) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:43Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1972626115) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:46Z,- null commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1972626184) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:49Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1972626238) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:55Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1972626337) at 2024-02-29 11:07 PM PST -,2024-03-01T07:07:58Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1972626383) at 2024-02-29 11:07 PM PST -,2024-03-01T07:08:02Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1972626445) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:05Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1972626490) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:08Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-1972626534) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:14Z,- null commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1972626656) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:22Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1972626783) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:25Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1972626832) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:28Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-1972626883) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:32Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1972626971) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:35Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1972627027) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:38Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1972627090) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:41Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1972627142) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:46Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1972627235) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:50Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1972627317) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:54Z,- null commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1972627391) at 2024-02-29 11:08 PM PST -,2024-03-01T07:08:57Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1972627450) at 2024-02-29 11:08 PM PST -,2024-03-01T07:09:00Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1972627509) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:03Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1972627558) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:06Z,- null commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1972627601) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:09Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1972627652) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:11Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1972627692) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:14Z,- null commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1972627746) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:17Z,- null commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1972627791) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:21Z,- null commented on issue: [5868](https://github.com/hackforla/website/issues/5868#issuecomment-1972627846) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:26Z,- null commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1972627931) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:29Z,- null commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-1972627976) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:32Z,- null commented on issue: [6346](https://github.com/hackforla/website/issues/6346#issuecomment-1972628050) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:36Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-1972628121) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:38Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-1972628159) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:40Z,- null commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-1972628199) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:43Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-1972628243) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:45Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-1972628289) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:47Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-1972628338) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:50Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-1972628376) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:52Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-1972628405) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:54Z,- null commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-1972628444) at 2024-02-29 11:09 PM PST -,2024-03-01T07:09:57Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-1972628478) at 2024-02-29 11:09 PM PST -,2024-03-01T07:10:04Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1972628588) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:08Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1972628666) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:10Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1972628708) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:13Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-1972628765) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:16Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-1972628818) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:27Z,- null commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1972629039) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:34Z,- null commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1972629161) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:39Z,- null commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1972629235) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:43Z,- null commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1972629300) at 2024-02-29 11:10 PM PST -,2024-03-01T07:10:45Z,- null commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1972629344) at 2024-02-29 11:10 PM PST -,2024-03-01T20:43:43Z,- null commented on issue: [6377](https://github.com/hackforla/website/issues/6377#issuecomment-1973890510) at 2024-03-01 12:43 PM PST -,2024-03-02T02:42:52Z,- null commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1974227692) at 2024-03-01 06:42 PM PST -,2024-03-03T00:00:24Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974946507) at 2024-03-02 04:00 PM PST -,2024-03-03T00:53:20Z,- null commented on issue: [6376](https://github.com/hackforla/website/issues/6376#issuecomment-1974962803) at 2024-03-02 04:53 PM PST -,2024-03-03T01:07:21Z,- null commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-1974965247) at 2024-03-02 05:07 PM PST -,2024-03-03T02:27:39Z,- null commented on issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1974983198) at 2024-03-02 06:27 PM PST -,2024-03-03T12:11:36Z,- null commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-1975139974) at 2024-03-03 04:11 AM PST -,2024-03-03T17:38:22Z,- null commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1975240493) at 2024-03-03 09:38 AM PST -,2024-03-03T19:19:57Z,- null commented on issue: [6017](https://github.com/hackforla/website/issues/6017#issuecomment-1975270291) at 2024-03-03 11:19 AM PST -,2024-03-03T19:25:42Z,- null commented on issue: [5995](https://github.com/hackforla/website/issues/5995#issuecomment-1975271654) at 2024-03-03 11:25 AM PST -,2024-03-04T00:08:44Z,- null commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1975412495) at 2024-03-03 04:08 PM PST -,2024-03-04T00:26:43Z,- null commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975455434) at 2024-03-03 04:26 PM PST -,2024-03-04T05:07:52Z,- null commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1975742019) at 2024-03-03 09:07 PM PST -,2024-03-04T05:47:12Z,- null commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1975777668) at 2024-03-03 09:47 PM PST -,2024-03-04T07:20:44Z,- null commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1975880457) at 2024-03-03 11:20 PM PST -,2024-03-04T22:07:14Z,- null commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1977550201) at 2024-03-04 02:07 PM PST -,2024-03-05T00:50:19Z,- null commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1977745123) at 2024-03-04 04:50 PM PST -,2024-03-05T01:09:57Z,- null commented on issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-1977761450) at 2024-03-04 05:09 PM PST -,2024-03-05T01:13:57Z,- null commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1977764898) at 2024-03-04 05:13 PM PST -,2024-03-05T01:26:42Z,- null commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1977775984) at 2024-03-04 05:26 PM PST -,2024-03-05T01:55:38Z,- null commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1977807517) at 2024-03-04 05:55 PM PST -,2024-03-05T02:04:43Z,- null commented on issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1977814940) at 2024-03-04 06:04 PM PST -,2024-03-05T03:44:03Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-1977914773) at 2024-03-04 07:44 PM PST -,2024-03-05T03:51:18Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-1977919611) at 2024-03-04 07:51 PM PST -,2024-03-05T04:01:22Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-1977926487) at 2024-03-04 08:01 PM PST -,2024-03-05T04:15:31Z,- null commented on issue: [6429](https://github.com/hackforla/website/issues/6429#issuecomment-1977937759) at 2024-03-04 08:15 PM PST -,2024-03-05T04:25:21Z,- null commented on issue: [6125](https://github.com/hackforla/website/issues/6125#issuecomment-1977944994) at 2024-03-04 08:25 PM PST -,2024-03-05T18:53:17Z,- null commented on issue: [5842](https://github.com/hackforla/website/issues/5842#issuecomment-1979434446) at 2024-03-05 10:53 AM PST -,2024-03-05T20:12:50Z,- null commented on issue: [5826](https://github.com/hackforla/website/issues/5826#issuecomment-1979551561) at 2024-03-05 12:12 PM PST -,2024-03-05T22:32:19Z,- null commented on issue: [6168](https://github.com/hackforla/website/issues/6168#issuecomment-1979749789) at 2024-03-05 02:32 PM PST -,2024-03-05T22:38:15Z,- null commented on issue: [5850](https://github.com/hackforla/website/issues/5850#issuecomment-1979756322) at 2024-03-05 02:38 PM PST -,2024-03-05T23:12:48Z,- null commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1979795828) at 2024-03-05 03:12 PM PST -,2024-03-07T06:25:35Z,- null commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1982542786) at 2024-03-06 10:25 PM PST -,2024-03-07T16:42:48Z,- null commented on issue: [6153](https://github.com/hackforla/website/issues/6153#issuecomment-1983973424) at 2024-03-07 08:42 AM PST -,2024-03-07T17:25:48Z,- null commented on issue: [6090](https://github.com/hackforla/website/issues/6090#issuecomment-1984054935) at 2024-03-07 09:25 AM PST -,2024-03-07T17:29:50Z,- null commented on issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1984061734) at 2024-03-07 09:29 AM PST -,2024-03-07T18:11:46Z,- null commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-1984148242) at 2024-03-07 10:11 AM PST -,2024-03-07T18:28:07Z,- null commented on issue: [6180](https://github.com/hackforla/website/issues/6180#issuecomment-1984175563) at 2024-03-07 10:28 AM PST -,2024-03-07T22:34:45Z,- null commented on issue: [5997](https://github.com/hackforla/website/issues/5997#issuecomment-1984666457) at 2024-03-07 02:34 PM PST -,2024-03-08T01:23:06Z,- null commented on issue: [6086](https://github.com/hackforla/website/issues/6086#issuecomment-1984882834) at 2024-03-07 05:23 PM PST -,2024-03-08T06:04:44Z,- null commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1985091328) at 2024-03-07 10:04 PM PST -,2024-03-08T06:12:40Z,- null commented on issue: [6086](https://github.com/hackforla/website/issues/6086#issuecomment-1985098422) at 2024-03-07 10:12 PM PST -,2024-03-08T07:07:13Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1985148904) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:27Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1985149363) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:29Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1985149428) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:31Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1985149494) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:34Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1985149580) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:39Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1985149735) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:44Z,- null commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1985149900) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:49Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1985150048) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:51Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1985150123) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:53Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1985150159) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:55Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1985150230) at 2024-03-07 11:07 PM PST -,2024-03-08T07:07:58Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1985150293) at 2024-03-07 11:07 PM PST -,2024-03-08T07:08:08Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1985150584) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:10Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1985150638) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:12Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-1985150668) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:14Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1985150708) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:15Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1985150751) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:17Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1985150784) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:20Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1985150860) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:22Z,- null commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1985150907) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:24Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1985150947) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:26Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1985151004) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:27Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1985151045) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:29Z,- null commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1985151100) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:31Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1985151159) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:34Z,- null commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1985151268) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:36Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1985151363) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:38Z,- null commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1985151426) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:40Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-1985151509) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:42Z,- null commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1985151603) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:44Z,- null commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1985151678) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:46Z,- null commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-1985151780) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:48Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-1985151844) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:51Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-1985152010) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:53Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-1985152118) at 2024-03-07 11:08 PM PST -,2024-03-08T07:08:56Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-1985152206) at 2024-03-07 11:08 PM PST -,2024-03-08T07:09:00Z,- null commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-1985152370) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:03Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-1985152446) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:05Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-1985152532) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:07Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-1985152590) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:09Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-1985152645) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:11Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-1985152701) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:14Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-1985152815) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:19Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1985152924) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:26Z,- null commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-1985153151) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:28Z,- null commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-1985153189) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:33Z,- null commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1985153319) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:36Z,- null commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1985153417) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:38Z,- null commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1985153472) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:41Z,- null commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1985153551) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:43Z,- null commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1985153619) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:45Z,- null commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1985153680) at 2024-03-07 11:09 PM PST -,2024-03-08T07:09:47Z,- null commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1985153738) at 2024-03-07 11:09 PM PST -,2024-03-08T19:36:28Z,- null commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1986298452) at 2024-03-08 11:36 AM PST -,2024-03-08T19:39:58Z,- null commented on issue: [6087](https://github.com/hackforla/website/issues/6087#issuecomment-1986305113) at 2024-03-08 11:39 AM PST -,2024-03-08T20:06:58Z,- null commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1986348020) at 2024-03-08 12:06 PM PST -,2024-03-09T07:27:34Z,- null commented on issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-1986776645) at 2024-03-09 12:27 AM PDT -,2024-03-10T20:12:12Z,- null commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-1987349107) at 2024-03-10 01:12 PM PDT -,2024-03-10T23:00:19Z,- null commented on issue: [6167](https://github.com/hackforla/website/issues/6167#issuecomment-1987393468) at 2024-03-10 04:00 PM PDT -,2024-03-10T23:23:34Z,- null commented on issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1987407802) at 2024-03-10 04:23 PM PDT -,2024-03-11T02:37:18Z,- null commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987523693) at 2024-03-10 07:37 PM PDT -,2024-03-11T02:42:16Z,- null commented on issue: [6088](https://github.com/hackforla/website/issues/6088#issuecomment-1987527088) at 2024-03-10 07:42 PM PDT -,2024-03-11T03:22:11Z,- null commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-1987561596) at 2024-03-10 08:22 PM PDT -,2024-03-11T03:57:11Z,- null commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987592879) at 2024-03-10 08:57 PM PDT -,2024-03-11T04:15:49Z,- null commented on issue: [6449](https://github.com/hackforla/website/issues/6449#issuecomment-1987605473) at 2024-03-10 09:15 PM PDT -,2024-03-11T05:02:32Z,- null commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-1987638916) at 2024-03-10 10:02 PM PDT -,2024-03-11T17:28:10Z,- null commented on issue: [6093](https://github.com/hackforla/website/issues/6093#issuecomment-1989025757) at 2024-03-11 10:28 AM PDT -,2024-03-11T22:08:17Z,- null commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-1989531540) at 2024-03-11 03:08 PM PDT -,2024-03-11T22:33:48Z,- null commented on issue: [6097](https://github.com/hackforla/website/issues/6097#issuecomment-1989561119) at 2024-03-11 03:33 PM PDT -,2024-03-12T01:17:08Z,- null commented on issue: [6096](https://github.com/hackforla/website/issues/6096#issuecomment-1989731680) at 2024-03-11 06:17 PM PDT -,2024-03-12T07:32:26Z,- null commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-1990949847) at 2024-03-12 12:32 AM PDT -,2024-03-13T00:09:20Z,- null commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1992778529) at 2024-03-12 05:09 PM PDT -,2024-03-13T02:32:47Z,- null commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1993183969) at 2024-03-12 07:32 PM PDT -,2024-03-13T16:10:15Z,- null commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1994820915) at 2024-03-13 09:10 AM PDT -,2024-03-13T17:10:34Z,- null commented on issue: [6169](https://github.com/hackforla/website/issues/6169#issuecomment-1995032661) at 2024-03-13 10:10 AM PDT -,2024-03-14T05:11:54Z,- null commented on issue: [6171](https://github.com/hackforla/website/issues/6171#issuecomment-1996527090) at 2024-03-13 10:11 PM PDT -,2024-03-14T08:30:10Z,- null commented on issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-1996846271) at 2024-03-14 01:30 AM PDT -,2024-03-14T22:28:25Z,- null commented on issue: [6231](https://github.com/hackforla/website/issues/6231#issuecomment-1998586014) at 2024-03-14 03:28 PM PDT -,2024-03-15T07:06:37Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-1999058008) at 2024-03-15 12:06 AM PDT -,2024-03-15T07:06:39Z,- null commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-1999058032) at 2024-03-15 12:06 AM PDT -,2024-03-15T07:06:41Z,- null commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1999058064) at 2024-03-15 12:06 AM PDT -,2024-03-15T07:07:13Z,- null commented on issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-1999058645) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:14Z,- null commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1999058684) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:29Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1999058934) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:31Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1999058971) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:36Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1999059074) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:45Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1999059246) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:46Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1999059267) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:49Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1999059309) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:07:53Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1999059403) at 2024-03-15 12:07 AM PDT -,2024-03-15T07:08:04Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1999059602) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:06Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1999059642) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:08Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-1999059681) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:10Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1999059730) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:12Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1999059760) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:14Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1999059789) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:16Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1999059825) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:17Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1999059855) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:19Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1999059883) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:21Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1999059915) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:23Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1999059968) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:25Z,- null commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1999060004) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:27Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1999060040) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:29Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1999060076) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:31Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1999060121) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:33Z,- null commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1999060150) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:35Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1999060182) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:37Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1999060207) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:39Z,- null commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1999060244) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:41Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1999060290) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:43Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-1999060323) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:47Z,- null commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1999060381) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:48Z,- null commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-1999060404) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:51Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-1999060439) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:53Z,- null commented on issue: [6346](https://github.com/hackforla/website/issues/6346#issuecomment-1999060470) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:55Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-1999060520) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:57Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-1999060544) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:08:58Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-1999060572) at 2024-03-15 12:08 AM PDT -,2024-03-15T07:09:03Z,- null commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-1999060654) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:04Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-1999060681) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:06Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-1999060714) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:08Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-1999060746) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:10Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-1999060787) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:12Z,- null commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-1999060821) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:14Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-1999060846) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:17Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1999060907) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:20Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1999060938) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:22Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1999060977) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:24Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-1999061013) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:26Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-1999061053) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:28Z,- null commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-1999061088) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:30Z,- null commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-1999061119) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:32Z,- null commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1999061161) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:34Z,- null commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1999061180) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:36Z,- null commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1999061221) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:39Z,- null commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1999061273) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:40Z,- null commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1999061307) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:42Z,- null commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1999061334) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:47Z,- null commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-1999061417) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:50Z,- null commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1999061474) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:52Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-1999061499) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:54Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-1999061526) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:56Z,- null commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-1999061571) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:09:58Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-1999061604) at 2024-03-15 12:09 AM PDT -,2024-03-15T07:10:00Z,- null commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1999061648) at 2024-03-15 12:10 AM PDT -,2024-03-15T07:10:04Z,- null commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-1999061704) at 2024-03-15 12:10 AM PDT -,2024-03-15T15:17:15Z,- null commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1999888065) at 2024-03-15 08:17 AM PDT -,2024-03-15T19:39:40Z,- null commented on issue: [6459](https://github.com/hackforla/website/issues/6459#issuecomment-2000336696) at 2024-03-15 12:39 PM PDT -,2024-03-15T23:08:00Z,- null commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2000611408) at 2024-03-15 04:08 PM PDT -,2024-03-16T01:20:08Z,- null commented on issue: [6460](https://github.com/hackforla/website/issues/6460#issuecomment-2000954839) at 2024-03-15 06:20 PM PDT -,2024-03-17T04:52:06Z,- null commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2002307220) at 2024-03-16 09:52 PM PDT -,2024-03-17T18:29:28Z,- null commented on issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-2002566945) at 2024-03-17 11:29 AM PDT -,2024-03-18T15:51:22Z,- null commented on issue: [6157](https://github.com/hackforla/website/issues/6157#issuecomment-2004292338) at 2024-03-18 08:51 AM PDT -,2024-03-18T19:48:53Z,- null commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2004790791) at 2024-03-18 12:48 PM PDT -,2024-03-18T21:12:17Z,- null commented on issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-2004999448) at 2024-03-18 02:12 PM PDT -,2024-03-19T00:05:15Z,- null commented on issue: [6475](https://github.com/hackforla/website/issues/6475#issuecomment-2005379271) at 2024-03-18 05:05 PM PDT -,2024-03-19T01:04:44Z,- null commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2005542995) at 2024-03-18 06:04 PM PDT -,2024-03-19T04:01:18Z,- null commented on issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-2005711751) at 2024-03-18 09:01 PM PDT -,2024-03-19T04:34:23Z,- null commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-2005737040) at 2024-03-18 09:34 PM PDT -,2024-03-19T18:02:15Z,- null commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-2007817775) at 2024-03-19 11:02 AM PDT -,2024-03-19T18:57:09Z,- null commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007914581) at 2024-03-19 11:57 AM PDT -,2024-03-19T22:44:07Z,- null commented on issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-2008288541) at 2024-03-19 03:44 PM PDT -,2024-03-20T00:40:57Z,- null commented on issue: [6094](https://github.com/hackforla/website/issues/6094#issuecomment-2008422801) at 2024-03-19 05:40 PM PDT -,2024-03-20T02:17:55Z,- null commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2008569590) at 2024-03-19 07:17 PM PDT -,2024-03-20T05:05:33Z,- null commented on issue: [6479](https://github.com/hackforla/website/issues/6479#issuecomment-2008666422) at 2024-03-19 10:05 PM PDT -,2024-03-20T05:22:11Z,- null commented on issue: [6480](https://github.com/hackforla/website/issues/6480#issuecomment-2008678312) at 2024-03-19 10:22 PM PDT -,2024-03-20T05:44:50Z,- null commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2008695048) at 2024-03-19 10:44 PM PDT -,2024-03-20T05:48:55Z,- null commented on issue: [6482](https://github.com/hackforla/website/issues/6482#issuecomment-2008698353) at 2024-03-19 10:48 PM PDT -,2024-03-20T06:12:41Z,- null commented on issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2008717262) at 2024-03-19 11:12 PM PDT -,2024-03-20T07:26:49Z,- null commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2008941720) at 2024-03-20 12:26 AM PDT -,2024-03-20T08:03:44Z,- null commented on issue: [6485](https://github.com/hackforla/website/issues/6485#issuecomment-2008986595) at 2024-03-20 01:03 AM PDT -,2024-03-20T14:35:58Z,- null commented on issue: [6450](https://github.com/hackforla/website/issues/6450#issuecomment-2009725259) at 2024-03-20 07:35 AM PDT -,2024-03-21T02:10:30Z,- null commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2011058078) at 2024-03-20 07:10 PM PDT -,2024-03-21T06:11:10Z,- null commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2011289057) at 2024-03-20 11:11 PM PDT -,2024-03-21T07:11:18Z,- null commented on issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2011353231) at 2024-03-21 12:11 AM PDT -,2024-03-21T13:02:04Z,- null commented on issue: [6487](https://github.com/hackforla/website/issues/6487#issuecomment-2012238326) at 2024-03-21 06:02 AM PDT -,2024-03-21T18:58:15Z,- null commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2013337060) at 2024-03-21 11:58 AM PDT -,2024-03-22T00:24:45Z,- null commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2014098902) at 2024-03-21 05:24 PM PDT -,2024-03-22T07:06:55Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2014479868) at 2024-03-22 12:06 AM PDT -,2024-03-22T07:06:59Z,- null commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2014479957) at 2024-03-22 12:06 AM PDT -,2024-03-22T07:07:42Z,- null commented on issue: [5441](https://github.com/hackforla/website/issues/5441#issuecomment-2014480692) at 2024-03-22 12:07 AM PDT -,2024-03-22T07:07:59Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-2014480991) at 2024-03-22 12:07 AM PDT -,2024-03-22T07:08:01Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-2014481029) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:04Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-2014481059) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:08Z,- null commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-2014481146) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:14Z,- null commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-2014481248) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:20Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-2014481350) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:22Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2014481390) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:25Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2014481455) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:27Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-2014481485) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:30Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-2014481521) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:32Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2014481574) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:35Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-2014481607) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:37Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2014481655) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:46Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2014481789) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:48Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2014481831) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:50Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2014481866) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:52Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2014481904) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:54Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2014481939) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:56Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2014481983) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:08:59Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-2014482014) at 2024-03-22 12:08 AM PDT -,2024-03-22T07:09:01Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2014482049) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:03Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2014482091) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:07Z,- null commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-2014482176) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:09Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2014482215) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:12Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2014482269) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:15Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2014482321) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:17Z,- null commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-2014482349) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:20Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2014482401) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:22Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-2014482432) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:24Z,- null commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-2014482464) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:27Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2014482534) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:30Z,- null commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-2014482583) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:32Z,- null commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2014482631) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:34Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2014482661) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:37Z,- null commented on issue: [6346](https://github.com/hackforla/website/issues/6346#issuecomment-2014482708) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:40Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2014482754) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:42Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2014482797) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:48Z,- null commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2014482919) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:50Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2014482956) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:54Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2014483016) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:57Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2014483055) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:09:59Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2014483090) at 2024-03-22 12:09 AM PDT -,2024-03-22T07:10:01Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2014483118) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:03Z,- null commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2014483171) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:06Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2014483201) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:08Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2014483258) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:11Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2014483312) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:14Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2014483370) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:17Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2014483417) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:21Z,- null commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2014483483) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:24Z,- null commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-2014483544) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:29Z,- null commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2014483641) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:35Z,- null commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-2014483722) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:38Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2014483770) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:41Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2014483812) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:44Z,- null commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2014483870) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:46Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2014483916) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:48Z,- null commented on issue: [6430](https://github.com/hackforla/website/issues/6430#issuecomment-2014483962) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:54Z,- null commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2014484054) at 2024-03-22 12:10 AM PDT -,2024-03-22T07:10:57Z,- null commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2014484129) at 2024-03-22 12:10 AM PDT -,2024-03-22T15:29:01Z,- null commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2015345499) at 2024-03-22 08:29 AM PDT -,2024-03-22T16:40:05Z,- null commented on issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2015479843) at 2024-03-22 09:40 AM PDT -,2024-03-23T04:31:56Z,- null commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2016343620) at 2024-03-22 09:31 PM PDT -,2024-03-24T07:26:03Z,- null commented on issue: [6509](https://github.com/hackforla/website/issues/6509#issuecomment-2016720549) at 2024-03-24 12:26 AM PDT -,2024-03-24T16:39:28Z,- null commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-2016864084) at 2024-03-24 09:39 AM PDT -,2024-03-24T17:25:06Z,- null commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2016878468) at 2024-03-24 10:25 AM PDT -,2024-03-24T20:03:25Z,- null commented on issue: [6480](https://github.com/hackforla/website/issues/6480#issuecomment-2016927475) at 2024-03-24 01:03 PM PDT -,2024-03-24T20:55:19Z,- null commented on issue: [6511](https://github.com/hackforla/website/issues/6511#issuecomment-2016940239) at 2024-03-24 01:55 PM PDT -,2024-03-24T21:14:48Z,- null commented on issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2016945295) at 2024-03-24 02:14 PM PDT -,2024-03-24T21:23:43Z,- null commented on issue: [6513](https://github.com/hackforla/website/issues/6513#issuecomment-2016947626) at 2024-03-24 02:23 PM PDT -,2024-03-24T21:29:27Z,- null commented on issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2016949843) at 2024-03-24 02:29 PM PDT -,2024-03-24T21:42:17Z,- null commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-03-24 02:42 PM PDT -,2024-03-25T03:16:19Z,- null commented on issue: [6509](https://github.com/hackforla/website/issues/6509#issuecomment-2017136089) at 2024-03-24 08:16 PM PDT -,2024-03-25T13:17:07Z,- null commented on issue: [6482](https://github.com/hackforla/website/issues/6482#issuecomment-2017989422) at 2024-03-25 06:17 AM PDT -,2024-03-25T17:19:15Z,- null commented on issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2018513239) at 2024-03-25 10:19 AM PDT -,2024-03-25T19:22:19Z,- null commented on issue: [6510](https://github.com/hackforla/website/issues/6510#issuecomment-2018742303) at 2024-03-25 12:22 PM PDT -,2024-03-26T00:32:57Z,- null commented on issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2019172325) at 2024-03-25 05:32 PM PDT -,2024-03-26T01:37:49Z,- null commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2019228668) at 2024-03-25 06:37 PM PDT -,2024-03-26T01:57:17Z,- null commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2019247374) at 2024-03-25 06:57 PM PDT -,2024-03-26T07:08:20Z,- null commented on issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-2019535031) at 2024-03-26 12:08 AM PDT -,2024-03-26T18:12:10Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021156294) at 2024-03-26 11:12 AM PDT -,2024-03-26T19:06:46Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021263767) at 2024-03-26 12:06 PM PDT -,2024-03-26T19:57:07Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021349561) at 2024-03-26 12:57 PM PDT -,2024-03-26T19:57:54Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2021350853) at 2024-03-26 12:57 PM PDT -,2024-03-26T22:40:24Z,- null commented on issue: [4342](https://github.com/hackforla/website/issues/4342#issuecomment-2021590021) at 2024-03-26 03:40 PM PDT -,2024-03-26T22:44:11Z,- null commented on issue: [6485](https://github.com/hackforla/website/issues/6485#issuecomment-2021593416) at 2024-03-26 03:44 PM PDT -,2024-03-26T22:45:29Z,- null commented on issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2021594571) at 2024-03-26 03:45 PM PDT -,2024-03-27T02:44:16Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2021816816) at 2024-03-26 07:44 PM PDT -,2024-03-27T03:08:11Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2021842268) at 2024-03-26 08:08 PM PDT -,2024-03-27T03:08:55Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2021842856) at 2024-03-26 08:08 PM PDT -,2024-03-27T03:13:41Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2021846440) at 2024-03-26 08:13 PM PDT -,2024-03-27T03:14:19Z,- null commented on issue: [6527](https://github.com/hackforla/website/issues/6527#issuecomment-2021846912) at 2024-03-26 08:14 PM PDT -,2024-03-27T03:15:45Z,- null commented on issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2021848026) at 2024-03-26 08:15 PM PDT -,2024-03-27T03:23:18Z,- null commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2021853434) at 2024-03-26 08:23 PM PDT -,2024-03-27T03:31:45Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2021859562) at 2024-03-26 08:31 PM PDT -,2024-03-27T03:43:30Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2021868069) at 2024-03-26 08:43 PM PDT -,2024-03-27T04:11:12Z,- null commented on issue: [6236](https://github.com/hackforla/website/issues/6236#issuecomment-2021889811) at 2024-03-26 09:11 PM PDT -,2024-03-27T17:11:45Z,- null commented on issue: [6479](https://github.com/hackforla/website/issues/6479#issuecomment-2023340147) at 2024-03-27 10:11 AM PDT -,2024-03-27T21:45:46Z,- null commented on issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2024045843) at 2024-03-27 02:45 PM PDT -,2024-03-27T22:24:11Z,- null commented on issue: [6237](https://github.com/hackforla/website/issues/6237#issuecomment-2024090359) at 2024-03-27 03:24 PM PDT -,2024-03-28T01:07:14Z,- null commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2024224247) at 2024-03-27 06:07 PM PDT -,2024-03-28T05:47:03Z,- null commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2024451475) at 2024-03-27 10:47 PM PDT -,2024-03-28T05:53:13Z,- null commented on issue: [6541](https://github.com/hackforla/website/issues/6541#issuecomment-2024456325) at 2024-03-27 10:53 PM PDT -,2024-03-29T04:03:56Z,- null commented on issue: [6450](https://github.com/hackforla/website/issues/6450#issuecomment-2026613243) at 2024-03-28 09:03 PM PDT -,2024-03-29T07:06:26Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2026783426) at 2024-03-29 12:06 AM PDT -,2024-03-29T07:07:16Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-2026784226) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:18Z,- null commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-2026784256) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:20Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-2026784294) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:23Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2026784312) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:32Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-2026784432) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:33Z,- null commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2026784466) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:36Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2026784494) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:37Z,- null commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-2026784524) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:40Z,- null commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-2026784559) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:42Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2026784596) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:44Z,- null commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-2026784617) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:51Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2026784740) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:53Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2026784770) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:55Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2026784799) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:56Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2026784830) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:07:58Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2026784855) at 2024-03-29 12:07 AM PDT -,2024-03-29T07:08:00Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2026784878) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:02Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-2026784920) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:03Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2026784942) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:05Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2026784963) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:07Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2026784993) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:08Z,- null commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-2026785014) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:10Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2026785036) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:12Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2026785060) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:14Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2026785089) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:15Z,- null commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-2026785106) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:17Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2026785135) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:19Z,- null commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-2026785164) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:21Z,- null commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-2026785197) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:23Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2026785226) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:24Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2026785255) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:27Z,- null commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2026785292) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:29Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2026785322) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:31Z,- null commented on issue: [6346](https://github.com/hackforla/website/issues/6346#issuecomment-2026785342) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:32Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2026785363) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:34Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2026785383) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:36Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2026785426) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:40Z,- null commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2026785495) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:41Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2026785525) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:43Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-2026785555) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:45Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2026785596) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:48Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2026785627) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:49Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2026785653) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:08:52Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2026785694) at 2024-03-29 12:08 AM PDT -,2024-03-29T07:09:00Z,- null commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-2026785816) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:01Z,- null commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2026785837) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:10Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2026785955) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:12Z,- null commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2026785969) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:13Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2026785993) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:18Z,- null commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2026786084) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:23Z,- null commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-2026786151) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:32Z,- null commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2026786283) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:37Z,- null commented on issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-2026786371) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:39Z,- null commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-2026786396) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:40Z,- null commented on issue: [6420](https://github.com/hackforla/website/issues/6420#issuecomment-2026786423) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:42Z,- null commented on issue: [6418](https://github.com/hackforla/website/issues/6418#issuecomment-2026786444) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:45Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2026786479) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:48Z,- null commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2026786530) at 2024-03-29 12:09 AM PDT -,2024-03-29T07:09:51Z,- null commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2026786577) at 2024-03-29 12:09 AM PDT -,2024-03-29T14:50:12Z,- null commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2027344066) at 2024-03-29 07:50 AM PDT -,2024-03-29T18:41:13Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2027591191) at 2024-03-29 11:41 AM PDT -,2024-03-29T20:18:51Z,- null commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2027698093) at 2024-03-29 01:18 PM PDT -,2024-03-30T23:03:44Z,- null commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2028490058) at 2024-03-30 04:03 PM PDT -,2024-03-31T21:44:08Z,- null commented on issue: [6235](https://github.com/hackforla/website/issues/6235#issuecomment-2028912436) at 2024-03-31 02:44 PM PDT -,2024-04-01T21:26:21Z,- null commented on issue: [5844](https://github.com/hackforla/website/issues/5844#issuecomment-2030584976) at 2024-04-01 02:26 PM PDT -,2024-04-01T22:57:13Z,- null commented on issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-2030727332) at 2024-04-01 03:57 PM PDT -,2024-04-01T23:13:41Z,- null commented on issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2030768997) at 2024-04-01 04:13 PM PDT -,2024-04-02T01:48:06Z,- null commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2030928585) at 2024-04-01 06:48 PM PDT -,2024-04-02T01:54:07Z,- null commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2030934835) at 2024-04-01 06:54 PM PDT -,2024-04-02T02:01:52Z,- null commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2030941490) at 2024-04-01 07:01 PM PDT -,2024-04-02T02:05:54Z,- null commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2030945637) at 2024-04-01 07:05 PM PDT -,2024-04-02T09:35:31Z,- null commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2031524819) at 2024-04-02 02:35 AM PDT -,2024-04-02T21:19:52Z,- null commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2033119057) at 2024-04-02 02:19 PM PDT -,2024-04-03T18:44:55Z,- null commented on issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2035339916) at 2024-04-03 11:44 AM PDT -,2024-04-03T19:01:32Z,- null commented on issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-2035369689) at 2024-04-03 12:01 PM PDT -,2024-04-04T03:14:54Z,- null commented on issue: [6563](https://github.com/hackforla/website/issues/6563#issuecomment-2036097652) at 2024-04-03 08:14 PM PDT -,2024-04-04T20:30:31Z,- null commented on issue: [6491](https://github.com/hackforla/website/issues/6491#issuecomment-2038153408) at 2024-04-04 01:30 PM PDT -,2024-04-04T20:41:14Z,- null commented on issue: [6309](https://github.com/hackforla/website/issues/6309#issuecomment-2038174960) at 2024-04-04 01:41 PM PDT -,2024-04-05T07:06:03Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2039101710) at 2024-04-05 12:06 AM PDT -,2024-04-05T07:06:05Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2039101757) at 2024-04-05 12:06 AM PDT -,2024-04-05T07:06:07Z,- null commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2039101804) at 2024-04-05 12:06 AM PDT -,2024-04-05T07:06:52Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-2039102968) at 2024-04-05 12:06 AM PDT -,2024-04-05T07:06:55Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2039103041) at 2024-04-05 12:06 AM PDT -,2024-04-05T07:07:06Z,- null commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-2039103492) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:08Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2039103547) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:12Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2039103645) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:18Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2039103782) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:20Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2039103831) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:22Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2039103863) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:24Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2039103899) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:25Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2039103942) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:27Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2039103972) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:29Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-2039104005) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:30Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2039104036) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:32Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2039104066) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:34Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2039104114) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:36Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2039104142) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:38Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2039104181) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:41Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2039104230) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:43Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2039104278) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:45Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2039104311) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:47Z,- null commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-2039104353) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:49Z,- null commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2039104383) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:50Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2039104439) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:52Z,- null commented on issue: [6346](https://github.com/hackforla/website/issues/6346#issuecomment-2039104484) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:55Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2039104537) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:07:56Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2039104575) at 2024-04-05 12:07 AM PDT -,2024-04-05T07:08:01Z,- null commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2039104687) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:03Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2039104739) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:05Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-2039104806) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:07Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2039104849) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:09Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2039104894) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:11Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2039104930) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:12Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2039104962) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:15Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2039105034) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:17Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2039105086) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:19Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2039105125) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:21Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2039105167) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:23Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2039105205) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:25Z,- null commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2039105242) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:29Z,- null commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-2039105310) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:31Z,- null commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2039105409) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:33Z,- null commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-2039105499) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:35Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2039105553) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:37Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2039105649) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:38Z,- null commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2039105759) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:40Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2039105869) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:49Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2039106362) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:52Z,- null commented on issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-2039106417) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:53Z,- null commented on issue: [6420](https://github.com/hackforla/website/issues/6420#issuecomment-2039106452) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:55Z,- null commented on issue: [6418](https://github.com/hackforla/website/issues/6418#issuecomment-2039106492) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:57Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2039106525) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:08:59Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2039106580) at 2024-04-05 12:08 AM PDT -,2024-04-05T07:09:04Z,- null commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2039106696) at 2024-04-05 12:09 AM PDT -,2024-04-05T07:09:06Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2039106731) at 2024-04-05 12:09 AM PDT -,2024-04-05T07:09:10Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2039106804) at 2024-04-05 12:09 AM PDT -,2024-04-05T07:09:13Z,- null commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2039106913) at 2024-04-05 12:09 AM PDT -,2024-04-05T07:09:14Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2039106992) at 2024-04-05 12:09 AM PDT -,2024-04-05T07:09:18Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2039107198) at 2024-04-05 12:09 AM PDT -,2024-04-05T07:09:20Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2039107287) at 2024-04-05 12:09 AM PDT -,2024-04-05T17:45:59Z,- null commented on issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2040326915) at 2024-04-05 10:45 AM PDT -,2024-04-05T19:54:53Z,- null commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2040535337) at 2024-04-05 12:54 PM PDT -,2024-04-05T21:34:17Z,- null commented on issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2040656393) at 2024-04-05 02:34 PM PDT -,2024-04-06T17:33:23Z,- null commented on issue: [6537](https://github.com/hackforla/website/issues/6537#issuecomment-2041146187) at 2024-04-06 10:33 AM PDT -,2024-04-08T20:03:18Z,- null commented on issue: [6541](https://github.com/hackforla/website/issues/6541#issuecomment-2043548184) at 2024-04-08 01:03 PM PDT -,2024-04-08T22:52:54Z,- null commented on issue: [6511](https://github.com/hackforla/website/issues/6511#issuecomment-2043768014) at 2024-04-08 03:52 PM PDT -,2024-04-08T22:55:41Z,- null commented on issue: [6558](https://github.com/hackforla/website/issues/6558#issuecomment-2043770288) at 2024-04-08 03:55 PM PDT -,2024-04-08T23:03:07Z,- null commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2043777409) at 2024-04-08 04:03 PM PDT -,2024-04-08T23:33:56Z,- null commented on issue: [6583](https://github.com/hackforla/website/issues/6583#issuecomment-2043848830) at 2024-04-08 04:33 PM PDT -,2024-04-09T01:09:13Z,- null commented on issue: [6492](https://github.com/hackforla/website/issues/6492#issuecomment-2043957402) at 2024-04-08 06:09 PM PDT -,2024-04-09T02:50:10Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2044059787) at 2024-04-08 07:50 PM PDT -,2024-04-09T02:50:40Z,- null commented on issue: [6597](https://github.com/hackforla/website/issues/6597#issuecomment-2044060166) at 2024-04-08 07:50 PM PDT -,2024-04-09T02:51:31Z,- null commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2044060712) at 2024-04-08 07:51 PM PDT -,2024-04-09T02:51:47Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2044060870) at 2024-04-08 07:51 PM PDT -,2024-04-09T02:52:28Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2044061333) at 2024-04-08 07:52 PM PDT -,2024-04-09T02:52:32Z,- null commented on issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2044061380) at 2024-04-08 07:52 PM PDT -,2024-04-09T02:56:35Z,- null commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2044064310) at 2024-04-08 07:56 PM PDT -,2024-04-09T02:56:54Z,- null commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044064498) at 2024-04-08 07:56 PM PDT -,2024-04-09T02:58:04Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2044065256) at 2024-04-08 07:58 PM PDT -,2024-04-09T02:58:31Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2044065510) at 2024-04-08 07:58 PM PDT -,2024-04-09T02:59:37Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2044066302) at 2024-04-08 07:59 PM PDT -,2024-04-09T03:05:26Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2044072285) at 2024-04-08 08:05 PM PDT -,2024-04-09T03:07:17Z,- null commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2044073665) at 2024-04-08 08:07 PM PDT -,2024-04-09T03:15:20Z,- null commented on issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2044079141) at 2024-04-08 08:15 PM PDT -,2024-04-09T03:21:20Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2044083016) at 2024-04-08 08:21 PM PDT -,2024-04-09T03:24:10Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2044084776) at 2024-04-08 08:24 PM PDT -,2024-04-09T03:35:27Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2044092066) at 2024-04-08 08:35 PM PDT -,2024-04-09T03:37:54Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2044093553) at 2024-04-08 08:37 PM PDT -,2024-04-09T03:40:13Z,- null commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044094992) at 2024-04-08 08:40 PM PDT -,2024-04-09T03:45:21Z,- null commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2044098004) at 2024-04-08 08:45 PM PDT -,2024-04-09T17:18:19Z,- null commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2045726436) at 2024-04-09 10:18 AM PDT -,2024-04-09T17:44:33Z,- null commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-2045769558) at 2024-04-09 10:44 AM PDT -,2024-04-09T19:03:24Z,- null commented on issue: [6513](https://github.com/hackforla/website/issues/6513#issuecomment-2045882913) at 2024-04-09 12:03 PM PDT -,2024-04-09T20:21:23Z,- null commented on issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2045986664) at 2024-04-09 01:21 PM PDT -,2024-04-09T20:33:46Z,- null commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2046003535) at 2024-04-09 01:33 PM PDT -,2024-04-10T01:38:53Z,- null commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2046304753) at 2024-04-09 06:38 PM PDT -,2024-04-10T09:51:20Z,- null commented on issue: [6172](https://github.com/hackforla/website/issues/6172#issuecomment-2047065956) at 2024-04-10 02:51 AM PDT -,2024-04-10T18:15:58Z,- null commented on issue: [6124](https://github.com/hackforla/website/issues/6124#issuecomment-2048180825) at 2024-04-10 11:15 AM PDT -,2024-04-10T22:39:24Z,- null commented on issue: [6173](https://github.com/hackforla/website/issues/6173#issuecomment-2048551073) at 2024-04-10 03:39 PM PDT -,2024-04-10T22:46:16Z,- null commented on issue: [6174](https://github.com/hackforla/website/issues/6174#issuecomment-2048557118) at 2024-04-10 03:46 PM PDT -,2024-04-11T00:04:15Z,- null commented on issue: [6175](https://github.com/hackforla/website/issues/6175#issuecomment-2048623924) at 2024-04-10 05:04 PM PDT -,2024-04-11T06:41:29Z,- null commented on issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2049021209) at 2024-04-10 11:41 PM PDT -,2024-04-11T06:59:45Z,- null commented on issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2049043631) at 2024-04-10 11:59 PM PDT -,2024-04-11T07:14:09Z,- null commented on issue: [6623](https://github.com/hackforla/website/issues/6623#issuecomment-2049063723) at 2024-04-11 12:14 AM PDT -,2024-04-11T21:38:20Z,- null commented on issue: [6496](https://github.com/hackforla/website/issues/6496#issuecomment-2050597587) at 2024-04-11 02:38 PM PDT -,2024-04-12T00:07:21Z,- null commented on issue: [6176](https://github.com/hackforla/website/issues/6176#issuecomment-2050743878) at 2024-04-11 05:07 PM PDT -,2024-04-12T01:39:57Z,- null commented on issue: [6628](https://github.com/hackforla/website/issues/6628#issuecomment-2050815119) at 2024-04-11 06:39 PM PDT -,2024-04-12T07:06:38Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2051135373) at 2024-04-12 12:06 AM PDT -,2024-04-12T07:07:26Z,- null commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-2051136473) at 2024-04-12 12:07 AM PDT -,2024-04-12T07:07:29Z,- null commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-2051136522) at 2024-04-12 12:07 AM PDT -,2024-04-12T07:07:31Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2051136561) at 2024-04-12 12:07 AM PDT -,2024-04-12T07:07:47Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2051136890) at 2024-04-12 12:07 AM PDT -,2024-04-12T07:07:49Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2051136950) at 2024-04-12 12:07 AM PDT -,2024-04-12T07:07:56Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2051137089) at 2024-04-12 12:07 AM PDT -,2024-04-12T07:07:58Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2051137125) at 2024-04-12 12:07 AM PDT -,2024-04-12T07:08:00Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2051137172) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:01Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2051137216) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:03Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2051137259) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:05Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2051137303) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:06Z,- null commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-2051137333) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:08Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2051137370) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:10Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2051137406) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:12Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2051137462) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:14Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2051137510) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:16Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2051137546) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:18Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2051137578) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:21Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2051137646) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:23Z,- null commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-2051137711) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:25Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2051137746) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:27Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2051137788) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:28Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2051137828) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:30Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2051137861) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:35Z,- null commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2051137961) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:36Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2051137995) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:38Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-2051138030) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:40Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2051138091) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:42Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2051138136) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:43Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2051138179) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:45Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2051138212) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:47Z,- null commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2051138282) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:49Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2051138324) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:52Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2051138376) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:54Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2051138446) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:56Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2051138496) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:08:58Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2051138553) at 2024-04-12 12:08 AM PDT -,2024-04-12T07:09:03Z,- null commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-2051138646) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:04Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2051138679) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:06Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2051138717) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:08Z,- null commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2051138757) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:09Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2051138791) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:11Z,- null commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2051138838) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:16Z,- null commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2051138945) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:21Z,- null commented on issue: [6420](https://github.com/hackforla/website/issues/6420#issuecomment-2051139046) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:23Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2051139091) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:27Z,- null commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2051139170) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:31Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2051139245) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:32Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2051139283) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:34Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2051139329) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:36Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2051139367) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:40Z,- null commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2051139468) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:43Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2051139516) at 2024-04-12 12:09 AM PDT -,2024-04-12T07:09:45Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2051139567) at 2024-04-12 12:09 AM PDT -,2024-04-12T09:11:09Z,- null commented on issue: [6177](https://github.com/hackforla/website/issues/6177#issuecomment-2051360774) at 2024-04-12 02:11 AM PDT -,2024-04-12T15:25:30Z,- null commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2051976797) at 2024-04-12 08:25 AM PDT -,2024-04-12T16:13:36Z,- null commented on issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-2052061806) at 2024-04-12 09:13 AM PDT -,2024-04-12T16:21:09Z,- null commented on issue: [6178](https://github.com/hackforla/website/issues/6178#issuecomment-2052074490) at 2024-04-12 09:21 AM PDT -,2024-04-12T17:50:22Z,- null commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2052211375) at 2024-04-12 10:50 AM PDT -,2024-04-12T20:03:39Z,- null commented on issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2052449736) at 2024-04-12 01:03 PM PDT -,2024-04-12T20:37:14Z,- null commented on issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052495140) at 2024-04-12 01:37 PM PDT -,2024-04-12T20:57:50Z,- null commented on issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052518804) at 2024-04-12 01:57 PM PDT -,2024-04-12T23:14:25Z,- null commented on issue: [4752](https://github.com/hackforla/website/issues/4752#issuecomment-2052682991) at 2024-04-12 04:14 PM PDT -,2024-04-12T23:48:22Z,- null commented on issue: [6633](https://github.com/hackforla/website/issues/6633#issuecomment-2052703504) at 2024-04-12 04:48 PM PDT -,2024-04-13T00:42:19Z,- null commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2052737794) at 2024-04-12 05:42 PM PDT -,2024-04-13T01:03:30Z,- null commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2052795619) at 2024-04-12 06:03 PM PDT -,2024-04-14T09:36:27Z,- null commented on issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2053984637) at 2024-04-14 02:36 AM PDT -,2024-04-14T09:56:48Z,- null commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2053990808) at 2024-04-14 02:56 AM PDT -,2024-04-14T10:02:16Z,- null commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2053992442) at 2024-04-14 03:02 AM PDT -,2024-04-14T16:56:13Z,- null commented on issue: [6497](https://github.com/hackforla/website/issues/6497#issuecomment-2054120824) at 2024-04-14 09:56 AM PDT -,2024-04-14T17:35:07Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2054129686) at 2024-04-14 10:35 AM PDT -,2024-04-14T19:39:29Z,- null commented on issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2054164523) at 2024-04-14 12:39 PM PDT -,2024-04-14T23:41:37Z,- null commented on issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2054223780) at 2024-04-14 04:41 PM PDT -,2024-04-14T23:48:56Z,- null commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2054225944) at 2024-04-14 04:48 PM PDT -,2024-04-15T08:19:10Z,- null commented on issue: [6498](https://github.com/hackforla/website/issues/6498#issuecomment-2056116113) at 2024-04-15 01:19 AM PDT -,2024-04-15T23:47:54Z,- null commented on issue: [6655](https://github.com/hackforla/website/issues/6655#issuecomment-2057996054) at 2024-04-15 04:47 PM PDT -,2024-04-16T00:05:13Z,- null commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2058010447) at 2024-04-15 05:05 PM PDT -,2024-04-16T00:10:55Z,- null commented on issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2058015322) at 2024-04-15 05:10 PM PDT -,2024-04-16T00:13:02Z,- null commented on issue: [6495](https://github.com/hackforla/website/issues/6495#issuecomment-2058017014) at 2024-04-15 05:13 PM PDT -,2024-04-16T00:24:14Z,- null commented on issue: [6494](https://github.com/hackforla/website/issues/6494#issuecomment-2058026009) at 2024-04-15 05:24 PM PDT -,2024-04-16T02:32:21Z,- null commented on issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058123786) at 2024-04-15 07:32 PM PDT -,2024-04-16T02:32:28Z,- null commented on issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058123867) at 2024-04-15 07:32 PM PDT -,2024-04-16T02:35:52Z,- null commented on issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2058126241) at 2024-04-15 07:35 PM PDT -,2024-04-16T02:43:03Z,- null commented on issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058131246) at 2024-04-15 07:43 PM PDT -,2024-04-16T06:55:34Z,- null commented on issue: [6623](https://github.com/hackforla/website/issues/6623#issuecomment-2058367193) at 2024-04-15 11:55 PM PDT -,2024-04-16T14:29:07Z,- null commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2059234958) at 2024-04-16 07:29 AM PDT -,2024-04-16T15:38:04Z,- null commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059389324) at 2024-04-16 08:38 AM PDT -,2024-04-16T18:35:12Z,- null commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2059708725) at 2024-04-16 11:35 AM PDT -,2024-04-16T19:35:36Z,- null commented on issue: [6648](https://github.com/hackforla/website/issues/6648#issuecomment-2059796324) at 2024-04-16 12:35 PM PDT -,2024-04-16T20:50:52Z,- null commented on issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2059902658) at 2024-04-16 01:50 PM PDT -,2024-04-16T22:42:19Z,- null commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-2060028949) at 2024-04-16 03:42 PM PDT -,2024-04-16T22:51:13Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2060036887) at 2024-04-16 03:51 PM PDT -,2024-04-16T22:56:09Z,- null commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-2060040967) at 2024-04-16 03:56 PM PDT -,2024-04-16T22:56:19Z,- null commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2060041087) at 2024-04-16 03:56 PM PDT -,2024-04-16T22:58:00Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2060042433) at 2024-04-16 03:58 PM PDT -,2024-04-16T23:21:15Z,- null commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2060061011) at 2024-04-16 04:21 PM PDT -,2024-04-17T01:13:14Z,- null commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2060162903) at 2024-04-16 06:13 PM PDT -,2024-04-17T02:03:01Z,- null commented on issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2060205124) at 2024-04-16 07:03 PM PDT -,2024-04-17T19:17:27Z,- null commented on issue: [6539](https://github.com/hackforla/website/issues/6539#issuecomment-2062032359) at 2024-04-17 12:17 PM PDT -,2024-04-17T19:38:50Z,- null commented on issue: [6191](https://github.com/hackforla/website/issues/6191#issuecomment-2062082728) at 2024-04-17 12:38 PM PDT -,2024-04-17T19:39:21Z,- null commented on issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2062083433) at 2024-04-17 12:39 PM PDT -,2024-04-18T00:06:41Z,- null commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-2062753691) at 2024-04-17 05:06 PM PDT -,2024-04-18T06:56:51Z,- null commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2063154790) at 2024-04-17 11:56 PM PDT -,2024-04-18T08:53:38Z,- null commented on issue: [6679](https://github.com/hackforla/website/issues/6679#issuecomment-2063364767) at 2024-04-18 01:53 AM PDT -,2024-04-18T09:20:04Z,- null commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2063415629) at 2024-04-18 02:20 AM PDT -,2024-04-18T09:41:56Z,- null commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2063457193) at 2024-04-18 02:41 AM PDT -,2024-04-18T10:25:10Z,- null commented on issue: [6636](https://github.com/hackforla/website/issues/6636#issuecomment-2063535430) at 2024-04-18 03:25 AM PDT -,2024-04-18T19:05:52Z,- null commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064982041) at 2024-04-18 12:05 PM PDT -,2024-04-18T19:06:14Z,- null commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064983211) at 2024-04-18 12:06 PM PDT -,2024-04-18T21:01:52Z,- null commented on issue: [6290](https://github.com/hackforla/website/issues/6290#issuecomment-2065316909) at 2024-04-18 02:01 PM PDT -,2024-04-18T22:52:12Z,- null commented on issue: [6238](https://github.com/hackforla/website/issues/6238#issuecomment-2065451207) at 2024-04-18 03:52 PM PDT -,2024-04-19T02:38:37Z,- null commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2065648854) at 2024-04-18 07:38 PM PDT -,2024-04-19T02:43:34Z,- null commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2065652361) at 2024-04-18 07:43 PM PDT -,2024-04-19T05:37:33Z,- null commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-2065796897) at 2024-04-18 10:37 PM PDT -,2024-04-19T07:06:19Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2065892269) at 2024-04-19 12:06 AM PDT -,2024-04-19T07:07:10Z,- null commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2065893637) at 2024-04-19 12:07 AM PDT -,2024-04-19T07:07:26Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2065894008) at 2024-04-19 12:07 AM PDT -,2024-04-19T07:07:44Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2065894471) at 2024-04-19 12:07 AM PDT -,2024-04-19T07:07:50Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2065894597) at 2024-04-19 12:07 AM PDT -,2024-04-19T07:08:01Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2065894850) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:04Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2065894914) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:06Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2065894963) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:09Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2065895020) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:11Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2065895065) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:13Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2065895112) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:16Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2065895168) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:18Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2065895213) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:21Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2065895273) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:23Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2065895310) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:26Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2065895363) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:30Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2065895483) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:33Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2065895611) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:36Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2065895656) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:38Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2065895725) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:41Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2065895793) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:43Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2065895858) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:49Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2065895965) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:51Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-2065896019) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:53Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2065896066) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:56Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2065896125) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:08:58Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2065896165) at 2024-04-19 12:08 AM PDT -,2024-04-19T07:09:00Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2065896206) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:06Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2065896355) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:22Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2065896747) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:24Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2065896803) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:26Z,- null commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2065896846) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:28Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2065896888) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:31Z,- null commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2065896947) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:39Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2065897126) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:42Z,- null commented on issue: [6463](https://github.com/hackforla/website/issues/6463#issuecomment-2065897194) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:44Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2065897241) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:47Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2065897285) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:52Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2065897396) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:09:56Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2065897494) at 2024-04-19 12:09 AM PDT -,2024-04-19T07:10:00Z,- null commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2065897601) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:03Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2065897678) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:05Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2065897740) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:07Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2065897788) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:14Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2065897913) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:16Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2065897963) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:19Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2065898023) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:21Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2065898084) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:24Z,- null commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2065898135) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:26Z,- null commented on issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2065898176) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:28Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2065898229) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:31Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2065898272) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:34Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2065898348) at 2024-04-19 12:10 AM PDT -,2024-04-19T07:10:54Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2065898787) at 2024-04-19 12:10 AM PDT -,2024-04-20T02:24:10Z,- null commented on issue: [6582](https://github.com/hackforla/website/issues/6582#issuecomment-2067517754) at 2024-04-19 07:24 PM PDT -,2024-04-20T14:37:07Z,- null commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2067693656) at 2024-04-20 07:37 AM PDT -,2024-04-21T07:38:44Z,- null commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2067943170) at 2024-04-21 12:38 AM PDT -,2024-04-21T07:59:54Z,- null commented on issue: [6697](https://github.com/hackforla/website/issues/6697#issuecomment-2067949016) at 2024-04-21 12:59 AM PDT -,2024-04-21T08:06:16Z,- null commented on issue: [6698](https://github.com/hackforla/website/issues/6698#issuecomment-2067951084) at 2024-04-21 01:06 AM PDT -,2024-04-21T08:12:09Z,- null commented on issue: [6699](https://github.com/hackforla/website/issues/6699#issuecomment-2067952981) at 2024-04-21 01:12 AM PDT -,2024-04-21T19:42:10Z,- null commented on issue: [6696](https://github.com/hackforla/website/issues/6696#issuecomment-2068177387) at 2024-04-21 12:42 PM PDT -,2024-04-22T22:59:26Z,- null commented on issue: [6632](https://github.com/hackforla/website/issues/6632#issuecomment-2071090610) at 2024-04-22 03:59 PM PDT -,2024-04-23T00:01:12Z,- null commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2071145939) at 2024-04-22 05:01 PM PDT -,2024-04-23T00:43:02Z,- null commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2071185925) at 2024-04-22 05:43 PM PDT -,2024-04-23T01:50:07Z,- null commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2071263333) at 2024-04-22 06:50 PM PDT -,2024-04-23T03:08:22Z,- null commented on issue: [6683](https://github.com/hackforla/website/issues/6683#issuecomment-2071325995) at 2024-04-22 08:08 PM PDT -,2024-04-23T15:48:05Z,- null commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2072784828) at 2024-04-23 08:48 AM PDT -,2024-04-23T15:57:02Z,- null commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2072808875) at 2024-04-23 08:57 AM PDT -,2024-04-23T17:49:23Z,- null commented on issue: [6700](https://github.com/hackforla/website/issues/6700#issuecomment-2073030709) at 2024-04-23 10:49 AM PDT -,2024-04-23T17:58:35Z,- null commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2073048654) at 2024-04-23 10:58 AM PDT -,2024-04-23T18:07:55Z,- null commented on issue: [3859](https://github.com/hackforla/website/issues/3859#issuecomment-2073068390) at 2024-04-23 11:07 AM PDT -,2024-04-23T18:12:31Z,- null commented on issue: [6091](https://github.com/hackforla/website/issues/6091#issuecomment-2073077056) at 2024-04-23 11:12 AM PDT -,2024-04-23T18:32:10Z,- null commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2073123027) at 2024-04-23 11:32 AM PDT -,2024-04-23T22:56:17Z,- null commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2073612396) at 2024-04-23 03:56 PM PDT -,2024-04-24T02:01:06Z,- null commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2073857231) at 2024-04-23 07:01 PM PDT -,2024-04-24T02:41:30Z,- null commented on issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2073895031) at 2024-04-23 07:41 PM PDT -,2024-04-24T02:41:49Z,- null commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2073895299) at 2024-04-23 07:41 PM PDT -,2024-04-24T03:00:32Z,- null commented on issue: [6684](https://github.com/hackforla/website/issues/6684#issuecomment-2073918276) at 2024-04-23 08:00 PM PDT -,2024-04-24T03:02:21Z,- null commented on issue: [6697](https://github.com/hackforla/website/issues/6697#issuecomment-2073920239) at 2024-04-23 08:02 PM PDT -,2024-04-24T03:07:37Z,- null commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2073926179) at 2024-04-23 08:07 PM PDT -,2024-04-24T03:53:50Z,- null commented on issue: [6726](https://github.com/hackforla/website/issues/6726#issuecomment-2073974558) at 2024-04-23 08:53 PM PDT -,2024-04-24T03:54:46Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2073975284) at 2024-04-23 08:54 PM PDT -,2024-04-24T04:05:10Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2073983496) at 2024-04-23 09:05 PM PDT -,2024-04-24T04:51:40Z,- null commented on issue: [6706](https://github.com/hackforla/website/issues/6706#issuecomment-2074023803) at 2024-04-23 09:51 PM PDT -,2024-04-24T07:07:07Z,- null commented on issue: [6698](https://github.com/hackforla/website/issues/6698#issuecomment-2074226080) at 2024-04-24 12:07 AM PDT -,2024-04-24T23:11:28Z,- null commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2076011931) at 2024-04-24 04:11 PM PDT -,2024-04-25T07:17:53Z,- null commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2076530348) at 2024-04-25 12:17 AM PDT -,2024-04-25T16:55:07Z,- null commented on issue: [6679](https://github.com/hackforla/website/issues/6679#issuecomment-2077743695) at 2024-04-25 09:55 AM PDT -,2024-04-25T20:50:04Z,- null commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2078149727) at 2024-04-25 01:50 PM PDT -,2024-04-25T21:06:17Z,- null commented on issue: [6639](https://github.com/hackforla/website/issues/6639#issuecomment-2078175973) at 2024-04-25 02:06 PM PDT -,2024-04-26T00:09:07Z,- null commented on issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2078369708) at 2024-04-25 05:09 PM PDT -,2024-04-26T07:06:49Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2078760191) at 2024-04-26 12:06 AM PDT -,2024-04-26T07:06:52Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2078760259) at 2024-04-26 12:06 AM PDT -,2024-04-26T07:07:47Z,- null commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2078761511) at 2024-04-26 12:07 AM PDT -,2024-04-26T07:08:01Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2078761811) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:07Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2078761935) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:14Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2078762091) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:16Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2078762133) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:18Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2078762165) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:20Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2078762204) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:22Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2078762252) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:24Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2078762294) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:26Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2078762326) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:27Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2078762368) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:30Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2078762422) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:32Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2078762471) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:34Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2078762549) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:36Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2078762595) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:39Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2078762664) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:41Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2078762703) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:44Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2078762766) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:46Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2078762804) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:51Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2078762924) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:52Z,- null commented on issue: [6339](https://github.com/hackforla/website/issues/6339#issuecomment-2078762961) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:54Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2078763001) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:56Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2078763032) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:57Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2078763081) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:08:59Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2078763121) at 2024-04-26 12:08 AM PDT -,2024-04-26T07:09:03Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2078763196) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:05Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2078763253) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:07Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2078763302) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:09Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2078763352) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:12Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2078763401) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:18Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2078763555) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:20Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2078763592) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:22Z,- null commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2078763635) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:24Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2078763675) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:32Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2078763871) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:40Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2078764046) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:42Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2078764100) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:46Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2078764168) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:48Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2078764203) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:50Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2078764231) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:52Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2078764284) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:54Z,- null commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2078764333) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:57Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2078764381) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:09:58Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2078764416) at 2024-04-26 12:09 AM PDT -,2024-04-26T07:10:00Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2078764450) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:03Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2078764494) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:04Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2078764536) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:09Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2078764642) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:12Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2078764692) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:14Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2078764746) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:18Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2078764821) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:20Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2078764880) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:22Z,- null commented on issue: [6597](https://github.com/hackforla/website/issues/6597#issuecomment-2078764960) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:24Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2078765026) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:33Z,- null commented on issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2078765261) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:38Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2078765575) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:40Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2078765734) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:43Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2078765892) at 2024-04-26 12:10 AM PDT -,2024-04-26T07:10:47Z,- null commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2078766258) at 2024-04-26 12:10 AM PDT -,2024-04-26T14:31:30Z,- null commented on issue: [6763](https://github.com/hackforla/website/issues/6763#issuecomment-2079512926) at 2024-04-26 07:31 AM PDT -,2024-04-26T16:13:58Z,- null commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2079693129) at 2024-04-26 09:13 AM PDT -,2024-04-26T17:45:31Z,- null commented on issue: [6706](https://github.com/hackforla/website/issues/6706#issuecomment-2079821169) at 2024-04-26 10:45 AM PDT -,2024-04-27T00:35:01Z,- null commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2080269370) at 2024-04-26 05:35 PM PDT -,2024-04-27T05:54:35Z,- null commented on issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2080377375) at 2024-04-26 10:54 PM PDT -,2024-04-27T19:57:37Z,- null commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2081165707) at 2024-04-27 12:57 PM PDT -,2024-04-28T01:29:38Z,- null commented on issue: [6640](https://github.com/hackforla/website/issues/6640#issuecomment-2081280017) at 2024-04-27 06:29 PM PDT -,2024-04-28T06:24:10Z,- null commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081352581) at 2024-04-27 11:24 PM PDT -,2024-04-28T17:05:39Z,- null commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081557257) at 2024-04-28 10:05 AM PDT -,2024-04-28T17:14:12Z,- null commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2081559645) at 2024-04-28 10:14 AM PDT -,2024-04-28T23:20:34Z,- null commented on issue: [6704](https://github.com/hackforla/website/issues/6704#issuecomment-2081694992) at 2024-04-28 04:20 PM PDT -,2024-04-29T20:43:56Z,- null commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2083629472) at 2024-04-29 01:43 PM PDT -,2024-04-29T21:41:03Z,- null commented on issue: [6633](https://github.com/hackforla/website/issues/6633#issuecomment-2083730931) at 2024-04-29 02:41 PM PDT -,2024-04-30T01:13:44Z,- null commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2084048732) at 2024-04-29 06:13 PM PDT -,2024-04-30T01:30:41Z,- null commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2084088765) at 2024-04-29 06:30 PM PDT -,2024-04-30T04:42:47Z,- null commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2084368566) at 2024-04-29 09:42 PM PDT -,2024-04-30T06:33:13Z,- null commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2084480631) at 2024-04-29 11:33 PM PDT -,2024-04-30T16:30:55Z,- null commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2085888478) at 2024-04-30 09:30 AM PDT -,2024-04-30T17:31:48Z,- null commented on issue: [6701](https://github.com/hackforla/website/issues/6701#issuecomment-2086153343) at 2024-04-30 10:31 AM PDT -,2024-04-30T20:16:25Z,- null commented on issue: [6702](https://github.com/hackforla/website/issues/6702#issuecomment-2087063332) at 2024-04-30 01:16 PM PDT -,2024-04-30T22:04:28Z,- null commented on issue: [6794](https://github.com/hackforla/website/issues/6794#issuecomment-2087515914) at 2024-04-30 03:04 PM PDT -,2024-04-30T23:34:21Z,- null commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2087717343) at 2024-04-30 04:34 PM PDT -,2024-05-01T00:55:10Z,- null commented on issue: [6758](https://github.com/hackforla/website/issues/6758#issuecomment-2087787725) at 2024-04-30 05:55 PM PDT -,2024-05-01T02:40:06Z,- null commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2087892533) at 2024-04-30 07:40 PM PDT -,2024-05-01T04:01:16Z,- null commented on issue: [6797](https://github.com/hackforla/website/issues/6797#issuecomment-2087941441) at 2024-04-30 09:01 PM PDT -,2024-05-01T04:07:53Z,- null commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2087945532) at 2024-04-30 09:07 PM PDT -,2024-05-01T19:44:30Z,- null commented on issue: [6703](https://github.com/hackforla/website/issues/6703#issuecomment-2089000761) at 2024-05-01 12:44 PM PDT -,2024-05-01T21:45:04Z,- null commented on issue: [6803](https://github.com/hackforla/website/issues/6803#issuecomment-2089186090) at 2024-05-01 02:45 PM PDT -,2024-05-01T21:58:56Z,- null commented on issue: [6705](https://github.com/hackforla/website/issues/6705#issuecomment-2089200151) at 2024-05-01 02:58 PM PDT -,2024-05-02T01:22:40Z,- null commented on issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-2089375106) at 2024-05-01 06:22 PM PDT -,2024-05-02T07:09:18Z,- null commented on issue: [6805](https://github.com/hackforla/website/issues/6805#issuecomment-2089766455) at 2024-05-02 12:09 AM PDT -,2024-05-02T20:00:29Z,- null commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2091452833) at 2024-05-02 01:00 PM PDT -,2024-05-03T02:27:49Z,- null commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2092032706) at 2024-05-02 07:27 PM PDT -,2024-05-03T02:29:20Z,- null commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2092033370) at 2024-05-02 07:29 PM PDT -,2024-05-03T07:06:27Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2092430676) at 2024-05-03 12:06 AM PDT -,2024-05-03T07:06:29Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2092430711) at 2024-05-03 12:06 AM PDT -,2024-05-03T07:07:36Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2092432442) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:39Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2092432508) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:45Z,- null commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2092432663) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:47Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2092432695) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:49Z,- null commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2092432725) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:51Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2092432777) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:52Z,- null commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2092432828) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:54Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2092432863) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:56Z,- null commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2092432894) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:07:57Z,- null commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2092432949) at 2024-05-03 12:07 AM PDT -,2024-05-03T07:08:01Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2092433069) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:03Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2092433127) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:06Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2092433190) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:07Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2092433230) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:10Z,- null commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2092433301) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:12Z,- null commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2092433350) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:14Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2092433401) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:15Z,- null commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2092433429) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:17Z,- null commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2092433453) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:21Z,- null commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2092433581) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:23Z,- null commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2092433613) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:25Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2092433645) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:26Z,- null commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2092433687) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:28Z,- null commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2092433730) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:32Z,- null commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2092433823) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:35Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2092433881) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:38Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2092433957) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:40Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2092434007) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:42Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2092434052) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:49Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2092434194) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:50Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2092434228) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:52Z,- null commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2092434270) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:08:56Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2092434319) at 2024-05-03 12:08 AM PDT -,2024-05-03T07:09:03Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2092434510) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:05Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2092434556) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:08Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2092434634) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:11Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2092434681) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:13Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2092434739) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:15Z,- null commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2092434781) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:16Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2092434825) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:18Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2092434852) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:20Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2092434888) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:22Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2092434946) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:25Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2092434989) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:27Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2092435037) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:29Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2092435080) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:30Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2092435117) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:32Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2092435165) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:33Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2092435195) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:35Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2092435240) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:36Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2092435266) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:38Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2092435305) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:45Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2092435427) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:46Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2092435449) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:49Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2092435506) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:51Z,- null commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2092435569) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:53Z,- null commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2092435614) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:09:57Z,- null commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2092435689) at 2024-05-03 12:09 AM PDT -,2024-05-03T07:10:00Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2092435762) at 2024-05-03 12:10 AM PDT -,2024-05-03T19:39:15Z,- null commented on issue: [6762](https://github.com/hackforla/website/issues/6762#issuecomment-2093655038) at 2024-05-03 12:39 PM PDT -,2024-05-03T21:39:57Z,- null commented on issue: [6812](https://github.com/hackforla/website/issues/6812#issuecomment-2093798540) at 2024-05-03 02:39 PM PDT -,2024-05-03T22:43:08Z,- null commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2093852899) at 2024-05-03 03:43 PM PDT -,2024-05-03T23:31:23Z,- null commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2093884099) at 2024-05-03 04:31 PM PDT -,2024-05-05T16:04:24Z,- null commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2094861896) at 2024-05-05 09:04 AM PDT -,2024-05-05T19:01:28Z,- null commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2094913974) at 2024-05-05 12:01 PM PDT -,2024-05-06T00:15:46Z,- null commented on issue: [6759](https://github.com/hackforla/website/issues/6759#issuecomment-2095012641) at 2024-05-05 05:15 PM PDT -,2024-05-06T02:09:39Z,- null commented on issue: [6665](https://github.com/hackforla/website/issues/6665#issuecomment-2095080464) at 2024-05-05 07:09 PM PDT -,2024-05-06T17:43:26Z,- null commented on issue: [6569](https://github.com/hackforla/website/issues/6569#issuecomment-2096579899) at 2024-05-06 10:43 AM PDT -,2024-05-06T20:58:35Z,- null commented on issue: [6800](https://github.com/hackforla/website/issues/6800#issuecomment-2096906694) at 2024-05-06 01:58 PM PDT -,2024-05-07T00:24:44Z,- null commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2097141075) at 2024-05-06 05:24 PM PDT -,2024-05-07T00:52:36Z,- null commented on issue: [6825](https://github.com/hackforla/website/issues/6825#issuecomment-2097162412) at 2024-05-06 05:52 PM PDT -,2024-05-07T00:52:39Z,- null commented on issue: [6827](https://github.com/hackforla/website/issues/6827#issuecomment-2097162448) at 2024-05-06 05:52 PM PDT -,2024-05-07T00:52:41Z,- null commented on issue: [6826](https://github.com/hackforla/website/issues/6826#issuecomment-2097162471) at 2024-05-06 05:52 PM PDT -,2024-05-07T01:19:33Z,- null commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2097188674) at 2024-05-06 06:19 PM PDT -,2024-05-07T03:04:50Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2097358325) at 2024-05-06 08:04 PM PDT -,2024-05-07T03:07:42Z,- null commented on issue: [6830](https://github.com/hackforla/website/issues/6830#issuecomment-2097361169) at 2024-05-06 08:07 PM PDT -,2024-05-07T03:09:38Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2097363313) at 2024-05-06 08:09 PM PDT -,2024-05-07T03:26:52Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2097377063) at 2024-05-06 08:26 PM PDT -,2024-05-07T04:11:57Z,- null commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2097410115) at 2024-05-06 09:11 PM PDT -,2024-05-07T17:55:29Z,- null commented on issue: [6761](https://github.com/hackforla/website/issues/6761#issuecomment-2098998957) at 2024-05-07 10:55 AM PDT -,2024-05-08T02:27:31Z,- null commented on issue: [6835](https://github.com/hackforla/website/issues/6835#issuecomment-2099616829) at 2024-05-07 07:27 PM PDT -,2024-05-08T06:56:50Z,- null commented on issue: [6838](https://github.com/hackforla/website/issues/6838#issuecomment-2099873728) at 2024-05-07 11:56 PM PDT -,2024-05-08T19:20:33Z,- null commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2101269012) at 2024-05-08 12:20 PM PDT -,2024-05-08T19:48:39Z,- null commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2101312418) at 2024-05-08 12:48 PM PDT -,2024-05-08T20:20:58Z,- null commented on issue: [6717](https://github.com/hackforla/website/issues/6717#issuecomment-2101359624) at 2024-05-08 01:20 PM PDT -,2024-05-08T21:09:36Z,- null commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2101477102) at 2024-05-08 02:09 PM PDT -,2024-05-08T21:13:38Z,- null commented on issue: [6570](https://github.com/hackforla/website/issues/6570#issuecomment-2101492240) at 2024-05-08 02:13 PM PDT -,2024-05-08T21:55:29Z,- null commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2101562550) at 2024-05-08 02:55 PM PDT -,2024-05-09T03:34:34Z,- null commented on issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2101871156) at 2024-05-08 08:34 PM PDT -,2024-05-09T22:40:31Z,- null commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2103558605) at 2024-05-09 03:40 PM PDT -,2024-05-09T22:56:13Z,- null commented on issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2103571357) at 2024-05-09 03:56 PM PDT -,2024-05-10T02:07:10Z,- null commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2103718601) at 2024-05-09 07:07 PM PDT -,2024-05-10T03:26:39Z,- null commented on issue: [6571](https://github.com/hackforla/website/issues/6571#issuecomment-2103790384) at 2024-05-09 08:26 PM PDT -,2024-05-10T07:06:21Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2104024458) at 2024-05-10 12:06 AM PDT -,2024-05-10T07:07:44Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2104026282) at 2024-05-10 12:07 AM PDT -,2024-05-10T07:07:57Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2104026571) at 2024-05-10 12:07 AM PDT -,2024-05-10T07:07:59Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2104026629) at 2024-05-10 12:07 AM PDT -,2024-05-10T07:08:02Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2104026674) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:05Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2104026750) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:07Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2104026799) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:10Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2104026863) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:13Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2104026927) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:16Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2104026979) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:21Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2104027086) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:27Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2104027241) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:46Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2104027692) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:48Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2104027737) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:51Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2104027796) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:08:55Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2104027898) at 2024-05-10 12:08 AM PDT -,2024-05-10T07:09:04Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2104028102) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:07Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2104028164) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:12Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2104028271) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:15Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2104028360) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:17Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2104028414) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:21Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2104028487) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:24Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2104028528) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:26Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2104028571) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:31Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2104028656) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:35Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2104028773) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:37Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2104028826) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:40Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2104028901) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:43Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2104029023) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:45Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2104029074) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:48Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2104029123) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:09:58Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2104029380) at 2024-05-10 12:09 AM PDT -,2024-05-10T07:10:01Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2104029443) at 2024-05-10 12:10 AM PDT -,2024-05-10T07:10:07Z,- null commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2104029893) at 2024-05-10 12:10 AM PDT -,2024-05-10T07:10:10Z,- null commented on issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2104030117) at 2024-05-10 12:10 AM PDT -,2024-05-10T07:10:13Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2104030258) at 2024-05-10 12:10 AM PDT -,2024-05-10T07:10:16Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2104030440) at 2024-05-10 12:10 AM PDT -,2024-05-10T07:10:20Z,- null commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2104030779) at 2024-05-10 12:10 AM PDT -,2024-05-10T07:10:33Z,- null commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2104031846) at 2024-05-10 12:10 AM PDT -,2024-05-10T07:10:49Z,- null commented on issue: [6653](https://github.com/hackforla/website/issues/6653#issuecomment-2104032386) at 2024-05-10 12:10 AM PDT -,2024-05-10T17:33:11Z,- null commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2105004648) at 2024-05-10 10:33 AM PDT -,2024-05-11T00:20:48Z,- null commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2105403802) at 2024-05-10 05:20 PM PDT -,2024-05-11T01:33:07Z,- null commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2105435351) at 2024-05-10 06:33 PM PDT -,2024-05-14T00:02:05Z,- null commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2109024534) at 2024-05-13 05:02 PM PDT -,2024-05-14T20:54:16Z,- null commented on issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2111122406) at 2024-05-14 01:54 PM PDT -,2024-05-14T21:03:41Z,- null commented on issue: [6724](https://github.com/hackforla/website/issues/6724#issuecomment-2111138684) at 2024-05-14 02:03 PM PDT -,2024-05-14T22:16:39Z,- null commented on issue: [6572](https://github.com/hackforla/website/issues/6572#issuecomment-2111228131) at 2024-05-14 03:16 PM PDT -,2024-05-15T04:25:24Z,- null commented on issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2111556310) at 2024-05-14 09:25 PM PDT -,2024-05-15T17:53:51Z,- null commented on issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2113124181) at 2024-05-15 10:53 AM PDT -,2024-05-15T17:58:28Z,- null commented on issue: [6719](https://github.com/hackforla/website/issues/6719#issuecomment-2113131594) at 2024-05-15 10:58 AM PDT -,2024-05-16T00:10:10Z,- null commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2113679542) at 2024-05-15 05:10 PM PDT -,2024-05-16T18:50:58Z,- null commented on issue: [6718](https://github.com/hackforla/website/issues/6718#issuecomment-2115969134) at 2024-05-16 11:50 AM PDT -,2024-05-17T02:16:10Z,- null commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2116505236) at 2024-05-16 07:16 PM PDT -,2024-05-17T07:06:15Z,- null commented on issue: [6812](https://github.com/hackforla/website/issues/6812#issuecomment-2116892931) at 2024-05-17 12:06 AM PDT -,2024-05-17T07:06:17Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2116892978) at 2024-05-17 12:06 AM PDT -,2024-05-17T07:06:19Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2116893030) at 2024-05-17 12:06 AM PDT -,2024-05-17T07:07:28Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2116894606) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:30Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2116894656) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:32Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2116894703) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:40Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2116894853) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:41Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2116894896) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:43Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2116894937) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:46Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2116895021) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:49Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2116895122) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:51Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2116895165) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:53Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2116895225) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:07:55Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2116895286) at 2024-05-17 12:07 AM PDT -,2024-05-17T07:08:00Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2116895389) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:04Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2116895495) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:06Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2116895541) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:08Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2116895591) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:10Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2116895640) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:17Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2116895791) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:18Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2116895843) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:20Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2116895891) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:24Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2116896004) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:31Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2116896194) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:33Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2116896241) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:37Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2116896329) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:40Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2116896415) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:41Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2116896458) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:43Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2116896498) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:45Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2116896544) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:47Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2116896586) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:49Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2116896635) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:51Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2116896672) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:52Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2116896699) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:54Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2116896737) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:56Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2116896767) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:58Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2116896817) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:08:59Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2116896851) at 2024-05-17 12:08 AM PDT -,2024-05-17T07:09:01Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2116896891) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:03Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2116896935) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:07Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2116897017) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:09Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2116897066) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:10Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2116897116) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:14Z,- null commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2116897193) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:15Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2116897233) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:18Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2116897297) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:25Z,- null commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2116897438) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:29Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2116897531) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:31Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2116897571) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:33Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2116897637) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:36Z,- null commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2116897714) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:38Z,- null commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2116897761) at 2024-05-17 12:09 AM PDT -,2024-05-17T07:09:43Z,- null commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2116897872) at 2024-05-17 12:09 AM PDT -,2024-05-17T19:13:16Z,- null commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2118228456) at 2024-05-17 12:13 PM PDT -,2024-05-17T20:52:03Z,- null commented on issue: [6576](https://github.com/hackforla/website/issues/6576#issuecomment-2118369327) at 2024-05-17 01:52 PM PDT -,2024-05-17T21:48:55Z,- null commented on issue: [6720](https://github.com/hackforla/website/issues/6720#issuecomment-2118421384) at 2024-05-17 02:48 PM PDT -,2024-05-18T02:00:50Z,- null commented on issue: [6574](https://github.com/hackforla/website/issues/6574#issuecomment-2118583967) at 2024-05-17 07:00 PM PDT -,2024-05-18T06:18:24Z,- null commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2118660083) at 2024-05-17 11:18 PM PDT -,2024-05-18T07:35:14Z,- null commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2118678973) at 2024-05-18 12:35 AM PDT -,2024-05-18T07:39:55Z,- null commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2118680273) at 2024-05-18 12:39 AM PDT -,2024-05-18T07:42:53Z,- null commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2118680862) at 2024-05-18 12:42 AM PDT -,2024-05-18T07:43:43Z,- null commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2118681038) at 2024-05-18 12:43 AM PDT -,2024-05-18T17:36:01Z,- null commented on issue: [6721](https://github.com/hackforla/website/issues/6721#issuecomment-2118895983) at 2024-05-18 10:36 AM PDT -,2024-05-19T02:02:50Z,- null commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2119062088) at 2024-05-18 07:02 PM PDT -,2024-05-19T16:51:59Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2119298548) at 2024-05-19 09:51 AM PDT -,2024-05-19T19:28:44Z,- null commented on issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2119336517) at 2024-05-19 12:28 PM PDT -,2024-05-19T20:03:36Z,- null commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2119344888) at 2024-05-19 01:03 PM PDT -,2024-05-20T01:55:19Z,- null commented on issue: [6849](https://github.com/hackforla/website/issues/6849#issuecomment-2119532580) at 2024-05-19 06:55 PM PDT -,2024-05-20T20:09:07Z,- null commented on issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2121125823) at 2024-05-20 01:09 PM PDT -,2024-05-20T23:57:13Z,- null commented on issue: [6866](https://github.com/hackforla/website/issues/6866#issuecomment-2121454403) at 2024-05-20 04:57 PM PDT -,2024-05-21T01:38:12Z,- null commented on issue: [6731](https://github.com/hackforla/website/issues/6731#issuecomment-2121541105) at 2024-05-20 06:38 PM PDT -,2024-05-21T06:58:22Z,- null commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2121888650) at 2024-05-20 11:58 PM PDT -,2024-05-21T07:03:44Z,- null commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2121900716) at 2024-05-21 12:03 AM PDT -,2024-05-21T20:27:34Z,- null commented on issue: [6800](https://github.com/hackforla/website/issues/6800#issuecomment-2123387458) at 2024-05-21 01:27 PM PDT -,2024-05-22T02:45:30Z,- null commented on issue: [6875](https://github.com/hackforla/website/issues/6875#issuecomment-2123767961) at 2024-05-21 07:45 PM PDT -,2024-05-22T02:59:24Z,- null commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2123780069) at 2024-05-21 07:59 PM PDT -,2024-05-22T02:59:36Z,- null commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2123780198) at 2024-05-21 07:59 PM PDT -,2024-05-22T03:00:53Z,- null commented on issue: [6868](https://github.com/hackforla/website/issues/6868#issuecomment-2123781223) at 2024-05-21 08:00 PM PDT -,2024-05-22T03:01:58Z,- null commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2123782096) at 2024-05-21 08:01 PM PDT -,2024-05-22T03:02:43Z,- null commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2123782648) at 2024-05-21 08:02 PM PDT -,2024-05-22T03:02:53Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2123782766) at 2024-05-21 08:02 PM PDT -,2024-05-22T03:47:13Z,- null commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2123813611) at 2024-05-21 08:47 PM PDT -,2024-05-22T07:16:21Z,- null commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2124042044) at 2024-05-22 12:16 AM PDT -,2024-05-22T21:01:30Z,- null commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2125736896) at 2024-05-22 02:01 PM PDT -,2024-05-23T00:06:34Z,- null commented on issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2125968249) at 2024-05-22 05:06 PM PDT -,2024-05-23T01:55:12Z,- null commented on issue: [6799](https://github.com/hackforla/website/issues/6799#issuecomment-2126050194) at 2024-05-22 06:55 PM PDT -,2024-05-23T02:10:22Z,- null commented on issue: [6845](https://github.com/hackforla/website/issues/6845#issuecomment-2126063126) at 2024-05-22 07:10 PM PDT -,2024-05-23T15:14:36Z,- null commented on issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2127395786) at 2024-05-23 08:14 AM PDT -,2024-05-23T16:03:43Z,- null commented on issue: [6592](https://github.com/hackforla/website/issues/6592#issuecomment-2127517425) at 2024-05-23 09:03 AM PDT -,2024-05-23T18:47:04Z,- null commented on issue: [6734](https://github.com/hackforla/website/issues/6734#issuecomment-2127819253) at 2024-05-23 11:47 AM PDT -,2024-05-24T07:06:26Z,- null commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2128731625) at 2024-05-24 12:06 AM PDT -,2024-05-24T07:06:28Z,- null commented on issue: [6812](https://github.com/hackforla/website/issues/6812#issuecomment-2128731747) at 2024-05-24 12:06 AM PDT -,2024-05-24T07:06:31Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2128731885) at 2024-05-24 12:06 AM PDT -,2024-05-24T07:06:33Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2128732065) at 2024-05-24 12:06 AM PDT -,2024-05-24T07:07:44Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2128736803) at 2024-05-24 12:07 AM PDT -,2024-05-24T07:07:46Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2128736971) at 2024-05-24 12:07 AM PDT -,2024-05-24T07:07:49Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2128737154) at 2024-05-24 12:07 AM PDT -,2024-05-24T07:07:56Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2128737605) at 2024-05-24 12:07 AM PDT -,2024-05-24T07:07:59Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2128737816) at 2024-05-24 12:07 AM PDT -,2024-05-24T07:08:01Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2128737994) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:03Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2128738146) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:05Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2128738336) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:07Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2128738502) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:09Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2128738656) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:12Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2128738890) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:14Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2128739078) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:19Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2128739471) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:23Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2128739733) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:26Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2128739933) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:29Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2128740108) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:31Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2128740297) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:38Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2128740875) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:40Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2128741030) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:41Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2128741193) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:46Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2128741686) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:55Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2128742474) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:08:56Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2128742619) at 2024-05-24 12:08 AM PDT -,2024-05-24T07:09:00Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2128742942) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:02Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2128743128) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:07Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2128743589) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:09Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2128743744) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:10Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2128743907) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:13Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2128744141) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:15Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2128744360) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:16Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2128744555) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:18Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2128744709) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:20Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2128744849) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:23Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2128745119) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:24Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2128745270) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:26Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2128745428) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:29Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2128745706) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:33Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2128746176) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:35Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2128746360) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:37Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2128746552) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:42Z,- null commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2128746990) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:44Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2128747145) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:49Z,- null commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2128747647) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:52Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2128747935) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:54Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2128748169) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:56Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2128748410) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:09:59Z,- null commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2128748646) at 2024-05-24 12:09 AM PDT -,2024-05-24T07:10:04Z,- null commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2128749259) at 2024-05-24 12:10 AM PDT -,2024-05-24T07:10:10Z,- null commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2128749929) at 2024-05-24 12:10 AM PDT -,2024-05-24T07:10:14Z,- null commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2128750392) at 2024-05-24 12:10 AM PDT -,2024-05-24T07:10:17Z,- null commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2128750643) at 2024-05-24 12:10 AM PDT -,2024-05-24T09:14:28Z,- null commented on issue: [6799](https://github.com/hackforla/website/issues/6799#issuecomment-2129036382) at 2024-05-24 02:14 AM PDT -,2024-05-25T02:33:53Z,- null commented on issue: [6733](https://github.com/hackforla/website/issues/6733#issuecomment-2130688121) at 2024-05-24 07:33 PM PDT -,2024-05-26T00:40:42Z,- null commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2131812347) at 2024-05-25 05:40 PM PDT -,2024-05-26T01:17:05Z,- null commented on issue: [6722](https://github.com/hackforla/website/issues/6722#issuecomment-2131875112) at 2024-05-25 06:17 PM PDT -,2024-05-26T03:18:47Z,- null commented on issue: [6723](https://github.com/hackforla/website/issues/6723#issuecomment-2132045290) at 2024-05-25 08:18 PM PDT -,2024-05-26T17:31:13Z,- null commented on issue: [6736](https://github.com/hackforla/website/issues/6736#issuecomment-2132294098) at 2024-05-26 10:31 AM PDT -,2024-05-26T18:31:03Z,- null commented on issue: [6760](https://github.com/hackforla/website/issues/6760#issuecomment-2132323778) at 2024-05-26 11:31 AM PDT -,2024-05-27T18:53:11Z,- null commented on issue: [6725](https://github.com/hackforla/website/issues/6725#issuecomment-2133937308) at 2024-05-27 11:53 AM PDT -,2024-05-27T22:03:58Z,- null commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2134089615) at 2024-05-27 03:03 PM PDT -,2024-05-27T23:50:35Z,- null commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2134148437) at 2024-05-27 04:50 PM PDT -,2024-05-28T00:45:18Z,- null commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2134179274) at 2024-05-27 05:45 PM PDT -,2024-05-28T09:27:57Z,- null commented on issue: [6903](https://github.com/hackforla/website/issues/6903#issuecomment-2134753422) at 2024-05-28 02:27 AM PDT -,2024-05-28T18:04:15Z,- null commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2135833834) at 2024-05-28 11:04 AM PDT -,2024-05-28T20:20:04Z,- null commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2136039266) at 2024-05-28 01:20 PM PDT -,2024-05-28T20:42:19Z,- null commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2136071253) at 2024-05-28 01:42 PM PDT -,2024-05-28T23:03:55Z,- null commented on issue: [6729](https://github.com/hackforla/website/issues/6729#issuecomment-2136243827) at 2024-05-28 04:03 PM PDT -,2024-05-29T00:15:35Z,- null commented on issue: [6735](https://github.com/hackforla/website/issues/6735#issuecomment-2136299995) at 2024-05-28 05:15 PM PDT -,2024-05-29T02:43:56Z,- null commented on issue: [6843](https://github.com/hackforla/website/issues/6843#issuecomment-2136416384) at 2024-05-28 07:43 PM PDT -,2024-05-29T08:27:04Z,- null commented on issue: [6909](https://github.com/hackforla/website/issues/6909#issuecomment-2136837472) at 2024-05-29 01:27 AM PDT -,2024-05-29T08:46:18Z,- null commented on issue: [6910](https://github.com/hackforla/website/issues/6910#issuecomment-2136876344) at 2024-05-29 01:46 AM PDT -,2024-05-29T09:05:13Z,- null commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2136915171) at 2024-05-29 02:05 AM PDT -,2024-05-29T12:35:18Z,- null commented on issue: [6593](https://github.com/hackforla/website/issues/6593#issuecomment-2137307606) at 2024-05-29 05:35 AM PDT -,2024-05-29T16:57:42Z,- null commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2137873134) at 2024-05-29 09:57 AM PDT -,2024-05-29T21:44:56Z,- null commented on issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2138313063) at 2024-05-29 02:44 PM PDT -,2024-05-29T21:45:53Z,- null commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138314082) at 2024-05-29 02:45 PM PDT -,2024-05-29T21:48:59Z,- null commented on issue: [6798](https://github.com/hackforla/website/issues/6798#issuecomment-2138317573) at 2024-05-29 02:48 PM PDT -,2024-05-29T22:16:00Z,- null commented on issue: [6730](https://github.com/hackforla/website/issues/6730#issuecomment-2138349032) at 2024-05-29 03:16 PM PDT -,2024-05-30T06:30:40Z,- null commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2138778057) at 2024-05-29 11:30 PM PDT -,2024-05-30T06:47:58Z,- null commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2138799798) at 2024-05-29 11:47 PM PDT -,2024-05-31T02:50:24Z,- null commented on issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2141143460) at 2024-05-30 07:50 PM PDT -,2024-05-31T07:06:29Z,- null commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2141358726) at 2024-05-31 12:06 AM PDT -,2024-05-31T07:06:31Z,- null commented on issue: [6812](https://github.com/hackforla/website/issues/6812#issuecomment-2141358762) at 2024-05-31 12:06 AM PDT -,2024-05-31T07:06:33Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2141358795) at 2024-05-31 12:06 AM PDT -,2024-05-31T07:06:35Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2141358850) at 2024-05-31 12:06 AM PDT -,2024-05-31T07:07:40Z,- null commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2141360361) at 2024-05-31 12:07 AM PDT -,2024-05-31T07:07:43Z,- null commented on issue: [6139](https://github.com/hackforla/website/issues/6139#issuecomment-2141360434) at 2024-05-31 12:07 AM PDT -,2024-05-31T07:07:50Z,- null commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2141360607) at 2024-05-31 12:07 AM PDT -,2024-05-31T07:07:52Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2141360651) at 2024-05-31 12:07 AM PDT -,2024-05-31T07:07:54Z,- null commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2141360686) at 2024-05-31 12:07 AM PDT -,2024-05-31T07:07:56Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2141360730) at 2024-05-31 12:07 AM PDT -,2024-05-31T07:07:58Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2141360780) at 2024-05-31 12:07 AM PDT -,2024-05-31T07:08:00Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2141360825) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:02Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2141360873) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:04Z,- null commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2141360904) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:06Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2141360957) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:07Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2141360994) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:13Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2141361085) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:16Z,- null commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-2141361159) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:18Z,- null commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-2141361214) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:20Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2141361255) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:22Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2141361306) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:27Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2141361433) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:28Z,- null commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2141361473) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:30Z,- null commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2141361517) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:35Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2141361636) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:43Z,- null commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2141361813) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:45Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2141361849) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:48Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2141361919) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:51Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2141361983) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:53Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2141362009) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:55Z,- null commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2141362046) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:57Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2141362084) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:08:59Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2141362121) at 2024-05-31 12:08 AM PDT -,2024-05-31T07:09:00Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2141362157) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:02Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2141362182) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:04Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2141362219) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:05Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2141362238) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:07Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2141362274) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:09Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2141362312) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:11Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2141362344) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:12Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2141362378) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:16Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2141362448) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:17Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2141362478) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:19Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2141362515) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:25Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2141362616) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:26Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2141362655) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:31Z,- null commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2141362740) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:33Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2141362792) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:39Z,- null commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2141362916) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:42Z,- null commented on issue: [6719](https://github.com/hackforla/website/issues/6719#issuecomment-2141362987) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:45Z,- null commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2141363030) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:47Z,- null commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2141363059) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:49Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2141363114) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:51Z,- null commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2141363162) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:53Z,- null commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2141363209) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:55Z,- null commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2141363240) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:57Z,- null commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2141363277) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:09:58Z,- null commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2141363317) at 2024-05-31 12:09 AM PDT -,2024-05-31T07:10:04Z,- null commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2141363440) at 2024-05-31 12:10 AM PDT -,2024-05-31T15:36:36Z,- null commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2142516964) at 2024-05-31 08:36 AM PDT -,2024-05-31T20:18:08Z,- null commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2142923795) at 2024-05-31 01:18 PM PDT -,2024-06-01T19:52:59Z,- null commented on issue: [6754](https://github.com/hackforla/website/issues/6754#issuecomment-2143565309) at 2024-06-01 12:52 PM PDT -,2024-06-01T20:21:41Z,- null commented on issue: [6922](https://github.com/hackforla/website/issues/6922#issuecomment-2143574088) at 2024-06-01 01:21 PM PDT -,2024-06-02T05:31:34Z,- null commented on issue: [6756](https://github.com/hackforla/website/issues/6756#issuecomment-2143705602) at 2024-06-01 10:31 PM PDT -,2024-06-02T16:51:09Z,- null commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2143940194) at 2024-06-02 09:51 AM PDT -,2024-06-02T17:22:13Z,- null commented on issue: [6927](https://github.com/hackforla/website/issues/6927#issuecomment-2143951290) at 2024-06-02 10:22 AM PDT -,2024-06-02T18:34:11Z,- null commented on issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2143980504) at 2024-06-02 11:34 AM PDT -,2024-06-02T18:36:50Z,- null commented on issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2143981166) at 2024-06-02 11:36 AM PDT -,2024-06-02T20:41:55Z,- null commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2144014679) at 2024-06-02 01:41 PM PDT -,2024-06-02T22:21:09Z,- null commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2144040036) at 2024-06-02 03:21 PM PDT -,2024-06-03T02:39:52Z,- null commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2144175431) at 2024-06-02 07:39 PM PDT -,2024-06-03T07:32:53Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2144476918) at 2024-06-03 12:32 AM PDT -,2024-06-03T09:34:09Z,- null commented on issue: [6798](https://github.com/hackforla/website/issues/6798#issuecomment-2144733297) at 2024-06-03 02:34 AM PDT -,2024-06-03T19:41:50Z,- null commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2145981028) at 2024-06-03 12:41 PM PDT -,2024-06-04T00:40:19Z,- null commented on issue: [6655](https://github.com/hackforla/website/issues/6655#issuecomment-2146355938) at 2024-06-03 05:40 PM PDT -,2024-06-04T02:39:09Z,- null commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2146461042) at 2024-06-03 07:39 PM PDT -,2024-06-04T02:40:24Z,- null commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2146462083) at 2024-06-03 07:40 PM PDT -,2024-06-04T02:48:47Z,- null commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2146468618) at 2024-06-03 07:48 PM PDT -,2024-06-04T02:51:37Z,- null commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2146470867) at 2024-06-03 07:51 PM PDT -,2024-06-04T02:53:20Z,- null commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2146472119) at 2024-06-03 07:53 PM PDT -,2024-06-04T02:55:40Z,- null commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2146474029) at 2024-06-03 07:55 PM PDT -,2024-06-04T02:56:26Z,- null commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2146474634) at 2024-06-03 07:56 PM PDT -,2024-06-04T02:56:58Z,- null commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2146474989) at 2024-06-03 07:56 PM PDT -,2024-06-04T02:58:49Z,- null commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2146476302) at 2024-06-03 07:58 PM PDT -,2024-06-04T03:02:43Z,- null commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2146479342) at 2024-06-03 08:02 PM PDT -,2024-06-04T03:10:54Z,- null commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2146486201) at 2024-06-03 08:10 PM PDT -,2024-06-04T03:13:59Z,- null commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2146488567) at 2024-06-03 08:13 PM PDT -,2024-06-04T03:23:39Z,- null commented on issue: [6955](https://github.com/hackforla/website/issues/6955#issuecomment-2146499459) at 2024-06-03 08:23 PM PDT -,2024-06-04T03:32:57Z,- null commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2146520978) at 2024-06-03 08:32 PM PDT -,2024-06-04T04:06:59Z,- null commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2146545810) at 2024-06-03 09:06 PM PDT -,2024-06-04T08:44:06Z,- null commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2146953624) at 2024-06-04 01:44 AM PDT -,2024-06-04T18:17:07Z,- null commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2148133017) at 2024-06-04 11:17 AM PDT -,2024-06-05T08:29:43Z,- null commented on issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2149201036) at 2024-06-05 01:29 AM PDT -,2024-06-05T08:32:24Z,- null commented on issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2149206458) at 2024-06-05 01:32 AM PDT -,2024-06-05T08:35:47Z,- null commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2149213545) at 2024-06-05 01:35 AM PDT -,2024-06-05T18:56:16Z,- null commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-2150748635) at 2024-06-05 11:56 AM PDT -,2024-06-05T23:05:36Z,- null commented on issue: [6861](https://github.com/hackforla/website/issues/6861#issuecomment-2151101945) at 2024-06-05 04:05 PM PDT -,2024-06-06T03:59:44Z,- null commented on issue: [6185](https://github.com/hackforla/website/issues/6185#issuecomment-2151366247) at 2024-06-05 08:59 PM PDT -,2024-06-06T10:11:56Z,- null commented on issue: [6967](https://github.com/hackforla/website/issues/6967#issuecomment-2151910733) at 2024-06-06 03:11 AM PDT -,2024-06-06T10:15:32Z,- null commented on issue: [6967](https://github.com/hackforla/website/issues/6967#issuecomment-2151917111) at 2024-06-06 03:15 AM PDT -,2024-06-06T16:31:12Z,- null commented on issue: [6753](https://github.com/hackforla/website/issues/6753#issuecomment-2152945918) at 2024-06-06 09:31 AM PDT -,2024-06-06T17:07:38Z,- null commented on issue: [6909](https://github.com/hackforla/website/issues/6909#issuecomment-2153011939) at 2024-06-06 10:07 AM PDT -,2024-06-06T18:18:00Z,- null commented on issue: [6750](https://github.com/hackforla/website/issues/6750#issuecomment-2153130835) at 2024-06-06 11:18 AM PDT -,2024-06-06T20:37:52Z,- null commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2153367013) at 2024-06-06 01:37 PM PDT -,2024-06-06T21:28:29Z,- null commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2153437105) at 2024-06-06 02:28 PM PDT -,2024-06-06T22:35:05Z,- null commented on issue: [6910](https://github.com/hackforla/website/issues/6910#issuecomment-2153509433) at 2024-06-06 03:35 PM PDT -,2024-06-07T01:04:55Z,- null commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2153666651) at 2024-06-06 06:04 PM PDT -,2024-06-07T07:06:31Z,- null commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2154224747) at 2024-06-07 12:06 AM PDT -,2024-06-07T07:06:33Z,- null commented on issue: [6812](https://github.com/hackforla/website/issues/6812#issuecomment-2154224790) at 2024-06-07 12:06 AM PDT -,2024-06-07T07:06:36Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2154224843) at 2024-06-07 12:06 AM PDT -,2024-06-07T07:07:41Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2154226282) at 2024-06-07 12:07 AM PDT -,2024-06-07T07:07:50Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2154226500) at 2024-06-07 12:07 AM PDT -,2024-06-07T07:07:53Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2154226581) at 2024-06-07 12:07 AM PDT -,2024-06-07T07:07:55Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2154226626) at 2024-06-07 12:07 AM PDT -,2024-06-07T07:07:57Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2154226676) at 2024-06-07 12:07 AM PDT -,2024-06-07T07:07:58Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2154226717) at 2024-06-07 12:07 AM PDT -,2024-06-07T07:08:00Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2154226767) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:05Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2154226864) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:15Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2154227068) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:19Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2154227158) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:27Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2154227354) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:31Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2154227436) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:33Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2154227489) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:35Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2154227545) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:37Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2154227622) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:39Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2154227671) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:42Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2154227739) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:43Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2154227784) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:45Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2154227827) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:47Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2154227873) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:49Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2154227930) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:51Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2154227976) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:53Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2154228015) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:54Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2154228058) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:56Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2154228115) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:08:59Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2154228184) at 2024-06-07 12:08 AM PDT -,2024-06-07T07:09:06Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2154228344) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:08Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2154228390) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:12Z,- null commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2154228468) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:14Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2154228512) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:16Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2154228558) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:18Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2154228602) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:23Z,- null commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2154228719) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:25Z,- null commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2154228771) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:29Z,- null commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2154228861) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:31Z,- null commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2154228906) at 2024-06-07 12:09 AM PDT -,2024-06-07T07:09:34Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2154228948) at 2024-06-07 12:09 AM PDT -,2024-06-08T01:47:02Z,- null commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2155750878) at 2024-06-07 06:47 PM PDT -,2024-06-09T01:23:46Z,- null commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2156257516) at 2024-06-08 06:23 PM PDT -,2024-06-09T03:22:35Z,- null commented on issue: [6940](https://github.com/hackforla/website/issues/6940#issuecomment-2156294277) at 2024-06-08 08:22 PM PDT -,2024-06-09T17:21:08Z,- null commented on issue: [6930](https://github.com/hackforla/website/issues/6930#issuecomment-2156706534) at 2024-06-09 10:21 AM PDT -,2024-06-09T18:01:45Z,- null commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2156720640) at 2024-06-09 11:01 AM PDT -,2024-06-09T23:42:07Z,- null commented on issue: [6937](https://github.com/hackforla/website/issues/6937#issuecomment-2156879980) at 2024-06-09 04:42 PM PDT -,2024-06-10T06:08:37Z,- null commented on issue: [6979](https://github.com/hackforla/website/issues/6979#issuecomment-2157341994) at 2024-06-09 11:08 PM PDT -,2024-06-10T07:32:22Z,- null commented on issue: [6938](https://github.com/hackforla/website/issues/6938#issuecomment-2157549284) at 2024-06-10 12:32 AM PDT -,2024-06-10T16:37:52Z,- null commented on issue: [6936](https://github.com/hackforla/website/issues/6936#issuecomment-2158837940) at 2024-06-10 09:37 AM PDT -,2024-06-10T19:18:19Z,- null commented on issue: [6934](https://github.com/hackforla/website/issues/6934#issuecomment-2159118715) at 2024-06-10 12:18 PM PDT -,2024-06-10T19:37:10Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2159147641) at 2024-06-10 12:37 PM PDT -,2024-06-10T20:48:07Z,- null commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2159257043) at 2024-06-10 01:48 PM PDT -,2024-06-10T23:55:49Z,- null commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2159515386) at 2024-06-10 04:55 PM PDT -,2024-06-11T00:57:06Z,- null commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2159571458) at 2024-06-10 05:57 PM PDT -,2024-06-11T01:01:58Z,- null commented on issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2159575076) at 2024-06-10 06:01 PM PDT -,2024-06-11T01:03:15Z,- null commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2159575996) at 2024-06-10 06:03 PM PDT -,2024-06-11T01:05:20Z,- null commented on issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-2159577524) at 2024-06-10 06:05 PM PDT -,2024-06-11T23:11:20Z,- null commented on issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2161749294) at 2024-06-11 04:11 PM PDT -,2024-06-12T03:08:00Z,- null commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2162017890) at 2024-06-11 08:08 PM PDT -,2024-06-12T03:35:29Z,- null commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2162039674) at 2024-06-11 08:35 PM PDT -,2024-06-12T03:43:39Z,- null commented on issue: [6755](https://github.com/hackforla/website/issues/6755#issuecomment-2162045980) at 2024-06-11 08:43 PM PDT -,2024-06-12T16:39:29Z,- null commented on issue: [6752](https://github.com/hackforla/website/issues/6752#issuecomment-2163478646) at 2024-06-12 09:39 AM PDT -,2024-06-12T17:38:26Z,- null commented on issue: [6858](https://github.com/hackforla/website/issues/6858#issuecomment-2163581062) at 2024-06-12 10:38 AM PDT -,2024-06-12T18:02:11Z,- null commented on issue: [6994](https://github.com/hackforla/website/issues/6994#issuecomment-2163620789) at 2024-06-12 11:02 AM PDT -,2024-06-12T18:03:19Z,- null commented on issue: [6994](https://github.com/hackforla/website/issues/6994#issuecomment-2163622636) at 2024-06-12 11:03 AM PDT -,2024-06-12T18:03:27Z,- null commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2163622851) at 2024-06-12 11:03 AM PDT -,2024-06-12T21:44:07Z,- null commented on issue: [6995](https://github.com/hackforla/website/issues/6995#issuecomment-2163953646) at 2024-06-12 02:44 PM PDT -,2024-06-12T21:44:26Z,- null commented on issue: [6996](https://github.com/hackforla/website/issues/6996#issuecomment-2163954043) at 2024-06-12 02:44 PM PDT -,2024-06-12T21:44:44Z,- null commented on issue: [6997](https://github.com/hackforla/website/issues/6997#issuecomment-2163954368) at 2024-06-12 02:44 PM PDT -,2024-06-12T21:46:12Z,- null commented on issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2163956298) at 2024-06-12 02:46 PM PDT -,2024-06-12T23:40:17Z,- null commented on issue: [6998](https://github.com/hackforla/website/issues/6998#issuecomment-2164074967) at 2024-06-12 04:40 PM PDT -,2024-06-13T19:32:50Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166623518) at 2024-06-13 12:32 PM PDT -,2024-06-13T19:54:28Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166656325) at 2024-06-13 12:54 PM PDT -,2024-06-14T07:06:50Z,- null commented on issue: [6753](https://github.com/hackforla/website/issues/6753#issuecomment-2167373328) at 2024-06-14 12:06 AM PDT -,2024-06-14T07:06:52Z,- null commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2167373379) at 2024-06-14 12:06 AM PDT -,2024-06-14T07:06:54Z,- null commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2167373418) at 2024-06-14 12:06 AM PDT -,2024-06-14T07:06:57Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2167373481) at 2024-06-14 12:06 AM PDT -,2024-06-14T07:06:59Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2167373520) at 2024-06-14 12:06 AM PDT -,2024-06-14T07:08:06Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2167375102) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:17Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2167375343) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:19Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2167375386) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:21Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2167375414) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:23Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2167375457) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:25Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2167375501) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:27Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2167375544) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:29Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2167375593) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:33Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2167375700) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:43Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2167375931) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:46Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2167375975) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:51Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2167376092) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:08:56Z,- null commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2167376212) at 2024-06-14 12:08 AM PDT -,2024-06-14T07:09:04Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2167376418) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:08Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2167376513) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:10Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2167376567) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:13Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2167376632) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:15Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2167376688) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:17Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2167376733) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:19Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2167376775) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:21Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2167376834) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:23Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2167376889) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:25Z,- null commented on issue: [6610](https://github.com/hackforla/website/issues/6610#issuecomment-2167376937) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:26Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2167376983) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:28Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2167377026) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:30Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2167377076) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:32Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2167377122) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:34Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2167377168) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:35Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2167377212) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:38Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2167377295) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:40Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2167377362) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:42Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2167377397) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:46Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2167377511) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:54Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2167377744) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:56Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2167377805) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:09:58Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2167377888) at 2024-06-14 12:09 AM PDT -,2024-06-14T07:10:04Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2167378042) at 2024-06-14 12:10 AM PDT -,2024-06-14T18:31:45Z,- null commented on issue: [7004](https://github.com/hackforla/website/issues/7004#issuecomment-2168557654) at 2024-06-14 11:31 AM PDT -,2024-06-15T05:02:29Z,- null commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2169130334) at 2024-06-14 10:02 PM PDT -,2024-06-16T05:36:41Z,- null commented on issue: [6979](https://github.com/hackforla/website/issues/6979#issuecomment-2171059883) at 2024-06-15 10:36 PM PDT -,2024-06-16T07:07:59Z,- null commented on issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2171120139) at 2024-06-16 12:07 AM PDT -,2024-06-16T08:11:16Z,- null commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2171188943) at 2024-06-16 01:11 AM PDT -,2024-06-16T19:54:50Z,- null commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2171830771) at 2024-06-16 12:54 PM PDT -,2024-06-17T04:26:28Z,- null commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2172200564) at 2024-06-16 09:26 PM PDT -,2024-06-17T07:30:59Z,- null commented on issue: [6866](https://github.com/hackforla/website/issues/6866#issuecomment-2172507024) at 2024-06-17 12:30 AM PDT -,2024-06-17T17:30:57Z,- null commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2173957267) at 2024-06-17 10:30 AM PDT -,2024-06-17T17:30:57Z,- null commented on issue: [7014](https://github.com/hackforla/website/issues/7014#issuecomment-2173957276) at 2024-06-17 10:30 AM PDT -,2024-06-17T17:30:57Z,- null commented on issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2173957256) at 2024-06-17 10:30 AM PDT -,2024-06-17T18:01:15Z,- null commented on issue: [6939](https://github.com/hackforla/website/issues/6939#issuecomment-2174008306) at 2024-06-17 11:01 AM PDT -,2024-06-17T22:54:08Z,- null commented on issue: [6918](https://github.com/hackforla/website/issues/6918#issuecomment-2174574356) at 2024-06-17 03:54 PM PDT -,2024-06-18T00:04:38Z,- null commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2174656396) at 2024-06-17 05:04 PM PDT -,2024-06-18T22:50:43Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2177214506) at 2024-06-18 03:50 PM PDT -,2024-06-18T22:59:59Z,- null commented on issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2177222539) at 2024-06-18 03:59 PM PDT -,2024-06-18T23:28:33Z,- null commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2177248348) at 2024-06-18 04:28 PM PDT -,2024-06-19T02:43:49Z,- null commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2177434840) at 2024-06-18 07:43 PM PDT -,2024-06-19T02:45:07Z,- null commented on issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2177437684) at 2024-06-18 07:45 PM PDT -,2024-06-19T02:46:41Z,- null commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2177441522) at 2024-06-18 07:46 PM PDT -,2024-06-19T02:47:56Z,- null commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2177442575) at 2024-06-18 07:47 PM PDT -,2024-06-19T02:53:48Z,- null commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2177447528) at 2024-06-18 07:53 PM PDT -,2024-06-19T02:54:36Z,- null commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2177448322) at 2024-06-18 07:54 PM PDT -,2024-06-19T03:03:47Z,- null commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2177455977) at 2024-06-18 08:03 PM PDT -,2024-06-19T03:07:02Z,- null commented on issue: [7026](https://github.com/hackforla/website/issues/7026#issuecomment-2177458673) at 2024-06-18 08:07 PM PDT -,2024-06-19T03:10:38Z,- null commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2177461485) at 2024-06-18 08:10 PM PDT -,2024-06-19T03:14:03Z,- null commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2177463997) at 2024-06-18 08:14 PM PDT -,2024-06-19T03:17:39Z,- null commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2177466881) at 2024-06-18 08:17 PM PDT -,2024-06-19T03:37:01Z,- null commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2177514007) at 2024-06-18 08:37 PM PDT -,2024-06-19T03:42:03Z,- null commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2177527548) at 2024-06-18 08:42 PM PDT -,2024-06-19T03:42:09Z,- null commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2177527787) at 2024-06-18 08:42 PM PDT -,2024-06-19T04:16:26Z,- null commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2177624884) at 2024-06-18 09:16 PM PDT -,2024-06-19T19:24:49Z,- null commented on issue: [6931](https://github.com/hackforla/website/issues/6931#issuecomment-2179350618) at 2024-06-19 12:24 PM PDT -,2024-06-19T22:30:22Z,- null commented on issue: [6932](https://github.com/hackforla/website/issues/6932#issuecomment-2179527331) at 2024-06-19 03:30 PM PDT -,2024-06-20T16:19:19Z,- null commented on issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2181081291) at 2024-06-20 09:19 AM PDT -,2024-06-20T22:34:55Z,- null commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2181660349) at 2024-06-20 03:34 PM PDT -,2024-06-21T02:55:46Z,- null commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2181899671) at 2024-06-20 07:55 PM PDT -,2024-06-21T02:55:49Z,- null commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2181899935) at 2024-06-20 07:55 PM PDT -,2024-06-21T07:06:56Z,- null commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2182139191) at 2024-06-21 12:06 AM PDT -,2024-06-21T07:07:00Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2182139316) at 2024-06-21 12:07 AM PDT -,2024-06-21T07:07:02Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2182139373) at 2024-06-21 12:07 AM PDT -,2024-06-21T07:08:12Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2182141210) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:15Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2182141267) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:17Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2182141306) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:19Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2182141353) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:20Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2182141392) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:22Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2182141446) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:24Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2182141502) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:29Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2182141637) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:39Z,- null commented on issue: [6138](https://github.com/hackforla/website/issues/6138#issuecomment-2182141855) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:41Z,- null commented on issue: [6277](https://github.com/hackforla/website/issues/6277#issuecomment-2182141912) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:47Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2182142018) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:08:58Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2182142259) at 2024-06-21 12:08 AM PDT -,2024-06-21T07:09:02Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2182142333) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:07Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2182142435) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:09Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2182142466) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:11Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2182142506) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:13Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2182142558) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:15Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2182142587) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:16Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2182142620) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:18Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2182142653) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:20Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2182142691) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:22Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2182142735) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:23Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2182142766) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:25Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2182142805) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:27Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2182142846) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:29Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2182142895) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:31Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2182142929) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:35Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2182143005) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:36Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2182143049) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:40Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2182143132) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:42Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2182143166) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:44Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2182143206) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:48Z,- null commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2182143325) at 2024-06-21 12:09 AM PDT -,2024-06-21T07:09:50Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2182143366) at 2024-06-21 12:09 AM PDT -,2024-06-21T18:47:58Z,- null commented on issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2183282457) at 2024-06-21 11:47 AM PDT -,2024-06-21T18:48:50Z,- null commented on issue: [7046](https://github.com/hackforla/website/issues/7046#issuecomment-2183283496) at 2024-06-21 11:48 AM PDT -,2024-06-21T18:51:24Z,- null commented on issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2183286778) at 2024-06-21 11:51 AM PDT -,2024-06-21T18:51:57Z,- null commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2183287422) at 2024-06-21 11:51 AM PDT -,2024-06-21T18:52:35Z,- null commented on issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183288173) at 2024-06-21 11:52 AM PDT -,2024-06-21T18:57:38Z,- null commented on issue: [7050](https://github.com/hackforla/website/issues/7050#issuecomment-2183294587) at 2024-06-21 11:57 AM PDT -,2024-06-22T03:58:37Z,- null commented on issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183766897) at 2024-06-21 08:58 PM PDT -,2024-06-22T08:49:34Z,- null commented on issue: [7044](https://github.com/hackforla/website/issues/7044#issuecomment-2183949783) at 2024-06-22 01:49 AM PDT -,2024-06-22T20:49:03Z,- null commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2184185772) at 2024-06-22 01:49 PM PDT -,2024-06-22T20:49:06Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2184185785) at 2024-06-22 01:49 PM PDT -,2024-06-22T20:49:08Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2184185791) at 2024-06-22 01:49 PM PDT -,2024-06-22T20:50:12Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2184186074) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:14Z,- null commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2184186083) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:16Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2184186093) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:17Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2184186098) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:19Z,- null commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2184186104) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:21Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2184186107) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:22Z,- null commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2184186115) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:28Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2184186135) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:43Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2184186169) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:56Z,- null commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2184186202) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:50:59Z,- null commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2184186209) at 2024-06-22 01:50 PM PDT -,2024-06-22T20:51:01Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2184186215) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:02Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2184186221) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:04Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2184186228) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:06Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2184186234) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:08Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2184186236) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:10Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2184186243) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:11Z,- null commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2184186251) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:13Z,- null commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2184186258) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:15Z,- null commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2184186262) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:16Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2184186268) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:17Z,- null commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2184186274) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:19Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2184186277) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:21Z,- null commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2184186280) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:23Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2184186285) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:24Z,- null commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2184186293) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:26Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2184186297) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:28Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2184186299) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:30Z,- null commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2184186303) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:32Z,- null commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2184186311) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:33Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2184186315) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:36Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2184186329) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:38Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2184186336) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:39Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2184186342) at 2024-06-22 01:51 PM PDT -,2024-06-22T20:51:44Z,- null commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2184186359) at 2024-06-22 01:51 PM PDT -,2024-06-23T17:06:24Z,- null commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2185158226) at 2024-06-23 10:06 AM PDT -,2024-06-23T17:08:25Z,- null commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2185159760) at 2024-06-23 10:08 AM PDT -,2024-06-23T17:14:24Z,- null commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2185165622) at 2024-06-23 10:14 AM PDT -,2024-06-23T18:16:59Z,- null commented on issue: [7039](https://github.com/hackforla/website/issues/7039#issuecomment-2185259913) at 2024-06-23 11:16 AM PDT -,2024-06-23T18:35:10Z,- null commented on issue: [6995](https://github.com/hackforla/website/issues/6995#issuecomment-2185264513) at 2024-06-23 11:35 AM PDT -,2024-06-23T20:18:52Z,- null commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2185312847) at 2024-06-23 01:18 PM PDT -,2024-06-24T01:25:41Z,- null commented on issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2185420371) at 2024-06-23 06:25 PM PDT -,2024-06-24T02:07:58Z,- null commented on issue: [7050](https://github.com/hackforla/website/issues/7050#issuecomment-2185455050) at 2024-06-23 07:07 PM PDT -,2024-06-24T08:24:36Z,- null commented on issue: [7060](https://github.com/hackforla/website/issues/7060#issuecomment-2185905586) at 2024-06-24 01:24 AM PDT -,2024-06-24T08:28:31Z,- null commented on issue: [7061](https://github.com/hackforla/website/issues/7061#issuecomment-2185913018) at 2024-06-24 01:28 AM PDT -,2024-06-24T15:41:48Z,- null commented on issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2186873954) at 2024-06-24 08:41 AM PDT -,2024-06-24T17:32:07Z,- null commented on issue: [7060](https://github.com/hackforla/website/issues/7060#issuecomment-2187073145) at 2024-06-24 10:32 AM PDT -,2024-06-25T05:07:48Z,- null commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2187988727) at 2024-06-24 10:07 PM PDT -,2024-06-26T01:45:09Z,- null commented on issue: [7046](https://github.com/hackforla/website/issues/7046#issuecomment-2190375165) at 2024-06-25 06:45 PM PDT -,2024-06-26T01:59:13Z,- null commented on issue: [7061](https://github.com/hackforla/website/issues/7061#issuecomment-2190388039) at 2024-06-25 06:59 PM PDT -,2024-06-26T02:10:22Z,- null commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2190397747) at 2024-06-25 07:10 PM PDT -,2024-06-26T03:03:04Z,- null commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2190454832) at 2024-06-25 08:03 PM PDT -,2024-06-26T19:26:58Z,- null commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2192475536) at 2024-06-26 12:26 PM PDT -,2024-06-26T19:47:07Z,- null commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2192506828) at 2024-06-26 12:47 PM PDT -,2024-06-26T20:52:28Z,- null commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-2192608505) at 2024-06-26 01:52 PM PDT -,2024-06-26T21:06:43Z,- null commented on issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2192627808) at 2024-06-26 02:06 PM PDT -,2024-06-27T17:00:53Z,- null commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2195223895) at 2024-06-27 10:00 AM PDT -,2024-06-27T21:08:55Z,- null commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2195669231) at 2024-06-27 02:08 PM PDT -,2024-06-28T04:28:47Z,- null commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2196116263) at 2024-06-27 09:28 PM PDT -,2024-06-28T04:29:26Z,- null commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2196118205) at 2024-06-27 09:29 PM PDT -,2024-06-28T07:06:23Z,- null commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2196278330) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:25Z,- null commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2196278358) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:27Z,- null commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2196278397) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:29Z,- null commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2196278441) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:30Z,- null commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2196278484) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:33Z,- null commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2196278536) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:35Z,- null commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2196278590) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:37Z,- null commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2196278623) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:39Z,- null commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2196278658) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:40Z,- null commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2196278696) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:42Z,- null commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2196278733) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:44Z,- null commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2196278763) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:46Z,- null commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2196278792) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:50Z,- null commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2196278898) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:53Z,- null commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2196278974) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:55Z,- null commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2196279011) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:06:59Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2196279089) at 2024-06-28 12:06 AM PDT -,2024-06-28T07:07:03Z,- null commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2196279196) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:06Z,- null commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2196279266) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:08Z,- null commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2196279306) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:10Z,- null commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2196279366) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:12Z,- null commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2196279414) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:13Z,- null commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2196279455) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:15Z,- null commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2196279509) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:17Z,- null commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2196279551) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:19Z,- null commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2196279593) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:20Z,- null commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2196279628) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:22Z,- null commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2196279653) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:24Z,- null commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2196279690) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:26Z,- null commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2196279729) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:27Z,- null commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2196279769) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:29Z,- null commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2196279805) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:31Z,- null commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2196279855) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:33Z,- null commented on issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2196279906) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:38Z,- null commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2196280015) at 2024-06-28 12:07 AM PDT -,2024-06-28T07:07:39Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2196280052) at 2024-06-28 12:07 AM PDT -,2024-06-28T17:59:19Z,- null commented on issue: [7080](https://github.com/hackforla/website/issues/7080#issuecomment-2197403917) at 2024-06-28 10:59 AM PDT -,2024-06-29T02:59:29Z,- null commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2197869525) at 2024-06-28 07:59 PM PDT -,2024-06-30T17:28:57Z,- null commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2198629846) at 2024-06-30 10:28 AM PDT -,2024-06-30T17:29:51Z,- null commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2198630017) at 2024-06-30 10:29 AM PDT -,2024-07-01T05:04:09Z,- null commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2199242303) at 2024-06-30 10:04 PM PDT -,2024-07-01T17:36:34Z,- null commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2200690158) at 2024-07-01 10:36 AM PDT -,2024-07-01T19:07:16Z,- null commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2200830039) at 2024-07-01 12:07 PM PDT -,2024-07-05T07:06:23Z,- null commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2210317596) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:28Z,- null commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2210317697) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:30Z,- null commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2210317741) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:32Z,- null commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2210317785) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:34Z,- null commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2210317828) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:38Z,- null commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2210317898) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:40Z,- null commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2210317943) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:42Z,- null commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2210317992) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:44Z,- null commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2210318032) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:46Z,- null commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2210318067) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:48Z,- null commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2210318119) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:50Z,- null commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2210318165) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:52Z,- null commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2210318215) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:06:54Z,- null commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2210318277) at 2024-07-05 12:06 AM PDT -,2024-07-05T07:07:00Z,- null commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2210318374) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:04Z,- null commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2210318462) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:06Z,- null commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2210318510) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:08Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2210318567) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:15Z,- null commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2210318731) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:17Z,- null commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2210318774) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:19Z,- null commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2210318827) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:21Z,- null commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2210318884) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:23Z,- null commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2210318920) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:25Z,- null commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2210318965) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:27Z,- null commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2210319008) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:29Z,- null commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2210319043) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:31Z,- null commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2210319077) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:32Z,- null commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2210319114) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:34Z,- null commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2210319160) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:36Z,- null commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2210319205) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:38Z,- null commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2210319245) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:40Z,- null commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2210319285) at 2024-07-05 12:07 AM PDT -,2024-07-05T07:07:45Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2210319403) at 2024-07-05 12:07 AM PDT -,2024-07-05T16:11:17Z,- null commented on issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-2211125026) at 2024-07-05 09:11 AM PDT -,2024-07-07T18:13:17Z,- null commented on issue: [7089](https://github.com/hackforla/website/issues/7089#issuecomment-2212528075) at 2024-07-07 11:13 AM PDT -,2024-07-07T18:30:17Z,- null commented on issue: [7090](https://github.com/hackforla/website/issues/7090#issuecomment-2212532253) at 2024-07-07 11:30 AM PDT -,2024-07-07T19:14:10Z,- null commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2212542588) at 2024-07-07 12:14 PM PDT -,2024-07-07T19:17:02Z,- null commented on issue: [7092](https://github.com/hackforla/website/issues/7092#issuecomment-2212543232) at 2024-07-07 12:17 PM PDT -,2024-07-07T22:40:42Z,- null commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2212600266) at 2024-07-07 03:40 PM PDT -,2024-07-07T22:43:09Z,- null commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2212600792) at 2024-07-07 03:43 PM PDT -,2024-07-08T00:07:10Z,- null commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2212632594) at 2024-07-07 05:07 PM PDT -,2024-07-08T00:16:23Z,- null commented on issue: [7096](https://github.com/hackforla/website/issues/7096#issuecomment-2212639120) at 2024-07-07 05:16 PM PDT -,2024-07-08T00:19:55Z,- null commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2212646963) at 2024-07-07 05:19 PM PDT -,2024-07-08T00:23:26Z,- null commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2212664191) at 2024-07-07 05:23 PM PDT -,2024-07-08T22:13:33Z,- null commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2215440105) at 2024-07-08 03:13 PM PDT -,2024-07-08T22:55:22Z,- null commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2215484913) at 2024-07-08 03:55 PM PDT -,2024-07-12T07:07:13Z,- null commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2224960783) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:15Z,- null commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2224960835) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:17Z,- null commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2224960901) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:19Z,- null commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2224960930) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:20Z,- null commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2224960968) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:22Z,- null commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2224961003) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:24Z,- null commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2224961039) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:26Z,- null commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2224961123) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:28Z,- null commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2224961152) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:29Z,- null commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2224961180) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:31Z,- null commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2224961203) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:32Z,- null commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2224961241) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:34Z,- null commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2224961287) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:35Z,- null commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2224961330) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:37Z,- null commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2224961356) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:40Z,- null commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2224961409) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:42Z,- null commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2224961452) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:44Z,- null commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2224961491) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:46Z,- null commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2224961525) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:47Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2224961552) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:53Z,- null commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2224961676) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:54Z,- null commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2224961708) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:56Z,- null commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2224961743) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:58Z,- null commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2224961784) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:07:59Z,- null commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2224961826) at 2024-07-12 12:07 AM PDT -,2024-07-12T07:08:01Z,- null commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2224961860) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:02Z,- null commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2224961890) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:03Z,- null commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2224961929) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:05Z,- null commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2224961959) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:07Z,- null commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2224962007) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:08Z,- null commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2224962035) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:10Z,- null commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2224962076) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:11Z,- null commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2224962112) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:13Z,- null commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2224962148) at 2024-07-12 12:08 AM PDT -,2024-07-12T07:08:17Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2224962261) at 2024-07-12 12:08 AM PDT -,2024-07-12T17:30:52Z,- null commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2226018114) at 2024-07-12 10:30 AM PDT -,2024-07-12T17:38:35Z,- null commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2226056226) at 2024-07-12 10:38 AM PDT -,2024-07-13T01:02:46Z,- null commented on issue: [7101](https://github.com/hackforla/website/issues/7101#issuecomment-2226636252) at 2024-07-12 06:02 PM PDT -,2024-07-13T04:03:02Z,- null commented on issue: [7105](https://github.com/hackforla/website/issues/7105#issuecomment-2226761411) at 2024-07-12 09:03 PM PDT -,2024-07-14T17:28:40Z,- null commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2227421462) at 2024-07-14 10:28 AM PDT -,2024-07-15T01:41:15Z,- null commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2227578654) at 2024-07-14 06:41 PM PDT -,2024-07-15T03:25:26Z,- null commented on issue: [7110](https://github.com/hackforla/website/issues/7110#issuecomment-2227641369) at 2024-07-14 08:25 PM PDT -,2024-07-15T05:20:06Z,- null commented on issue: [7111](https://github.com/hackforla/website/issues/7111#issuecomment-2227718437) at 2024-07-14 10:20 PM PDT -,2024-07-15T05:41:50Z,- null commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2227735237) at 2024-07-14 10:41 PM PDT -,2024-07-15T06:06:47Z,- null commented on issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2227758220) at 2024-07-14 11:06 PM PDT -,2024-07-15T06:33:23Z,- null commented on issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2227786076) at 2024-07-14 11:33 PM PDT -,2024-07-15T06:47:13Z,- null commented on issue: [7117](https://github.com/hackforla/website/issues/7117#issuecomment-2227801702) at 2024-07-14 11:47 PM PDT -,2024-07-15T06:57:10Z,- null commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2227814446) at 2024-07-14 11:57 PM PDT -,2024-07-15T07:57:22Z,- null commented on issue: [7099](https://github.com/hackforla/website/issues/7099#issuecomment-2227902459) at 2024-07-15 12:57 AM PDT -,2024-07-15T18:17:01Z,- null commented on issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2229109182) at 2024-07-15 11:17 AM PDT -,2024-07-15T20:43:24Z,- null commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229392463) at 2024-07-15 01:43 PM PDT -,2024-07-15T21:46:10Z,- null commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229494113) at 2024-07-15 02:46 PM PDT -,2024-07-28T18:02:16Z,- null commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2254597083) at 2024-07-28 11:02 AM PDT -,2024-07-30T07:07:43Z,- null commented on issue: [7154](https://github.com/hackforla/website/issues/7154#issuecomment-2257628067) at 2024-07-30 12:07 AM PDT -,2024-07-30T07:31:22Z,- null commented on issue: [7155](https://github.com/hackforla/website/issues/7155#issuecomment-2257667345) at 2024-07-30 12:31 AM PDT -,2024-07-31T08:16:55Z,- null commented on issue: [7156](https://github.com/hackforla/website/issues/7156#issuecomment-2259933576) at 2024-07-31 01:16 AM PDT -,2024-07-31T08:35:42Z,- null commented on issue: [7157](https://github.com/hackforla/website/issues/7157#issuecomment-2259966062) at 2024-07-31 01:35 AM PDT -,2024-07-31T08:39:30Z,- null commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2259972530) at 2024-07-31 01:39 AM PDT -,2024-07-31T08:45:56Z,- null commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2259983567) at 2024-07-31 01:45 AM PDT -,2024-07-31T08:47:56Z,- null commented on issue: [7160](https://github.com/hackforla/website/issues/7160#issuecomment-2259987068) at 2024-07-31 01:47 AM PDT -,2024-07-31T08:52:38Z,- null commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2259995516) at 2024-07-31 01:52 AM PDT -,2024-07-31T08:56:57Z,- null commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2260003698) at 2024-07-31 01:56 AM PDT -,2024-07-31T08:59:26Z,- null commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2260008110) at 2024-07-31 01:59 AM PDT -,2024-07-31T09:03:05Z,- null commented on issue: [7164](https://github.com/hackforla/website/issues/7164#issuecomment-2260015852) at 2024-07-31 02:03 AM PDT -,2024-08-01T21:50:46Z,- null commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2264072165) at 2024-08-01 02:50 PM PDT -,2024-08-01T21:59:32Z,- null commented on issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2264084224) at 2024-08-01 02:59 PM PDT -,2024-08-01T22:20:11Z,- null commented on issue: [7167](https://github.com/hackforla/website/issues/7167#issuecomment-2264112332) at 2024-08-01 03:20 PM PDT -,2024-08-01T22:23:20Z,- null commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2264115990) at 2024-08-01 03:23 PM PDT -,2024-08-02T07:05:40Z,- null commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2264711480) at 2024-08-02 12:05 AM PDT -,2024-08-02T07:05:50Z,- null commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2264711971) at 2024-08-02 12:05 AM PDT -,2024-08-02T07:05:52Z,- null commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2264712056) at 2024-08-02 12:05 AM PDT -,2024-08-02T07:05:53Z,- null commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2264712130) at 2024-08-02 12:05 AM PDT -,2024-08-02T07:05:55Z,- null commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2264712210) at 2024-08-02 12:05 AM PDT -,2024-08-02T07:05:56Z,- null commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2264712298) at 2024-08-02 12:05 AM PDT -,2024-08-02T07:05:58Z,- null commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2264712388) at 2024-08-02 12:05 AM PDT -,2024-08-02T07:06:00Z,- null commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2264712485) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:01Z,- null commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2264712580) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:03Z,- null commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2264712673) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:05Z,- null commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2264712755) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:06Z,- null commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2264712831) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:08Z,- null commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2264712907) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:09Z,- null commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2264712998) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:11Z,- null commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2264713094) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:13Z,- null commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2264713172) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:15Z,- null commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2264713279) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:16Z,- null commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2264713372) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:19Z,- null commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2264713544) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:21Z,- null commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2264713665) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:24Z,- null commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2264713775) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:26Z,- null commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2264713885) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:27Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2264713979) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:32Z,- null commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2264714098) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:34Z,- null commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2264714142) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:35Z,- null commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2264714192) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:37Z,- null commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2264714242) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:39Z,- null commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2264714312) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:41Z,- null commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2264714360) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:42Z,- null commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2264714396) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:44Z,- null commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2264714451) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:46Z,- null commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2264714496) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:47Z,- null commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2264714528) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:49Z,- null commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2264714581) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:51Z,- null commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2264714632) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:52Z,- null commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2264714668) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:54Z,- null commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2264714707) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:57Z,- null commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2264714787) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:06:59Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2264714836) at 2024-08-02 12:06 AM PDT -,2024-08-02T07:07:01Z,- null commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2264714869) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:03Z,- null commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2264714906) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:04Z,- null commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2264714944) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:06Z,- null commented on issue: [6875](https://github.com/hackforla/website/issues/6875#issuecomment-2264714985) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:13Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2264715137) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:14Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2264715177) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:16Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2264715216) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:18Z,- null commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2264715265) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:21Z,- null commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2264715347) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:25Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2264715448) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:27Z,- null commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2264715495) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:32Z,- null commented on issue: [6669](https://github.com/hackforla/website/issues/6669#issuecomment-2264715616) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:36Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2264715718) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:38Z,- null commented on issue: [6607](https://github.com/hackforla/website/issues/6607#issuecomment-2264715749) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:39Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2264715795) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:41Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2264715835) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:43Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2264715887) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:45Z,- null commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2264715933) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:49Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2264716034) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:50Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2264716069) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:52Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2264716115) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:54Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2264716159) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:07:56Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2264716195) at 2024-08-02 12:07 AM PDT -,2024-08-02T07:08:07Z,- null commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-2264716476) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:10Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2264716559) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:12Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2264716621) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:13Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2264716669) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:16Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2264716746) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:19Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2264716836) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:21Z,- null commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2264716913) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:23Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2264716968) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:25Z,- null commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2264717021) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:31Z,- null commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2264717177) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:36Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2264717275) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:45Z,- null commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2264717511) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:08:49Z,- null commented on issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-2264717596) at 2024-08-02 12:08 AM PDT -,2024-08-02T07:09:06Z,- null commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-2264717997) at 2024-08-02 12:09 AM PDT -,2024-08-02T07:09:27Z,- null commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2264718535) at 2024-08-02 12:09 AM PDT -,2024-08-02T07:09:30Z,- null commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2264718584) at 2024-08-02 12:09 AM PDT -,2024-08-02T07:10:07Z,- null commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2264719441) at 2024-08-02 12:10 AM PDT -,2024-08-02T07:10:26Z,- null commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2264719940) at 2024-08-02 12:10 AM PDT -,2024-08-02T07:10:31Z,- null commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-2264720059) at 2024-08-02 12:10 AM PDT -,2024-08-02T07:10:49Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2264720593) at 2024-08-02 12:10 AM PDT -,2024-08-02T07:10:58Z,- null commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2264720915) at 2024-08-02 12:10 AM PDT -,2024-08-02T07:13:11Z,- null commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-2264725419) at 2024-08-02 12:13 AM PDT -,2024-08-02T07:13:15Z,- null commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-2264725502) at 2024-08-02 12:13 AM PDT -,2024-08-05T22:14:20Z,- null commented on issue: [7192](https://github.com/hackforla/website/issues/7192#issuecomment-2270010177) at 2024-08-05 03:14 PM PDT -,2024-08-05T22:14:23Z,- null commented on issue: [7193](https://github.com/hackforla/website/issues/7193#issuecomment-2270010215) at 2024-08-05 03:14 PM PDT -,2024-08-05T22:14:27Z,- null commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2270010275) at 2024-08-05 03:14 PM PDT -,2024-08-05T22:14:32Z,- null commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2270010360) at 2024-08-05 03:14 PM PDT -,2024-08-06T00:23:54Z,- null commented on issue: [7197](https://github.com/hackforla/website/issues/7197#issuecomment-2270141554) at 2024-08-05 05:23 PM PDT -,2024-08-06T02:47:00Z,- null commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270267390) at 2024-08-05 07:47 PM PDT -,2024-08-06T02:54:54Z,- null commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2270282812) at 2024-08-05 07:54 PM PDT -,2024-08-06T02:54:54Z,- null commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2270282839) at 2024-08-05 07:54 PM PDT -,2024-08-06T02:59:01Z,- null commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2270289835) at 2024-08-05 07:59 PM PDT -,2024-08-06T03:11:22Z,- null commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2270300162) at 2024-08-05 08:11 PM PDT -,2024-08-06T03:12:24Z,- null commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2270300929) at 2024-08-05 08:12 PM PDT -,2024-08-06T03:13:43Z,- null commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2270301943) at 2024-08-05 08:13 PM PDT -,2024-08-06T03:16:07Z,- null commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2270303788) at 2024-08-05 08:16 PM PDT -,2024-08-06T03:16:52Z,- null commented on issue: [7210](https://github.com/hackforla/website/issues/7210#issuecomment-2270304368) at 2024-08-05 08:16 PM PDT -,2024-08-06T03:31:45Z,- null commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2270314965) at 2024-08-05 08:31 PM PDT -,2024-08-06T03:47:32Z,- null commented on issue: [7215](https://github.com/hackforla/website/issues/7215#issuecomment-2270326646) at 2024-08-05 08:47 PM PDT -,2024-08-06T03:47:52Z,- null commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2270326886) at 2024-08-05 08:47 PM PDT -,2024-08-06T03:53:23Z,- null commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2270330873) at 2024-08-05 08:53 PM PDT -,2024-08-06T03:54:39Z,- null commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2270331857) at 2024-08-05 08:54 PM PDT -,2024-08-06T04:00:28Z,- null commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2270336082) at 2024-08-05 09:00 PM PDT -,2024-08-06T04:09:49Z,- null commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2270343592) at 2024-08-05 09:09 PM PDT -,2024-08-06T18:42:00Z,- null commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2271919791) at 2024-08-06 11:42 AM PDT -,2024-08-07T04:00:11Z,- null commented on issue: [7236](https://github.com/hackforla/website/issues/7236#issuecomment-2272568603) at 2024-08-06 09:00 PM PDT -,2024-08-09T07:05:24Z,- null commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2277283747) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:37Z,- null commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2277284088) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:39Z,- null commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2277284135) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:40Z,- null commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2277284185) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:42Z,- null commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2277284225) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:44Z,- null commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2277284270) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:45Z,- null commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2277284312) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:47Z,- null commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2277284362) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:49Z,- null commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2277284432) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:51Z,- null commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2277284477) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:53Z,- null commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2277284521) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:54Z,- null commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2277284577) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:56Z,- null commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2277284642) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:05:58Z,- null commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2277284703) at 2024-08-09 12:05 AM PDT -,2024-08-09T07:06:00Z,- null commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2277284742) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:01Z,- null commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2277284784) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:03Z,- null commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2277284836) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:06Z,- null commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2277284925) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:09Z,- null commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2277284985) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:11Z,- null commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2277285041) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:13Z,- null commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2277285082) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:15Z,- null commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2277285129) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:20Z,- null commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2277285267) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:22Z,- null commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2277285335) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:23Z,- null commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2277285392) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:25Z,- null commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2277285437) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:27Z,- null commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2277285492) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:29Z,- null commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2277285562) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:30Z,- null commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2277285612) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:32Z,- null commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2277285662) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:34Z,- null commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2277285709) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:35Z,- null commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2277285755) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:37Z,- null commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2277285807) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:39Z,- null commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2277285854) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:40Z,- null commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2277285896) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:44Z,- null commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2277286025) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:46Z,- null commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2277286071) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:48Z,- null commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2277286132) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:49Z,- null commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2277286185) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:51Z,- null commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2277286240) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:06:58Z,- null commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2277286474) at 2024-08-09 12:06 AM PDT -,2024-08-09T07:07:00Z,- null commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2277286558) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:01Z,- null commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2277286601) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:03Z,- null commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2277286644) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:07Z,- null commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2277286740) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:11Z,- null commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2277286857) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:12Z,- null commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2277286917) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:18Z,- null commented on issue: [6669](https://github.com/hackforla/website/issues/6669#issuecomment-2277287072) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:21Z,- null commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2277287177) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:23Z,- null commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2277287222) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:25Z,- null commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2277287282) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:27Z,- null commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2277287337) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:29Z,- null commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2277287399) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:32Z,- null commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2277287500) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:34Z,- null commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2277287565) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:36Z,- null commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2277287618) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:37Z,- null commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2277287677) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:39Z,- null commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2277287742) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:51Z,- null commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-2277288129) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:54Z,- null commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2277288211) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:56Z,- null commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2277288282) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:07:57Z,- null commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2277288330) at 2024-08-09 12:07 AM PDT -,2024-08-09T07:08:00Z,- null commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2277288411) at 2024-08-09 12:08 AM PDT -,2024-08-09T07:08:03Z,- null commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2277288494) at 2024-08-09 12:08 AM PDT -,2024-08-09T07:08:07Z,- null commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2277288624) at 2024-08-09 12:08 AM PDT -,2024-08-09T07:08:09Z,- null commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2277288676) at 2024-08-09 12:08 AM PDT -,2024-08-09T07:08:20Z,- null commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2277288977) at 2024-08-09 12:08 AM PDT -,2024-08-09T07:08:33Z,- null commented on issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-2277289383) at 2024-08-09 12:08 AM PDT -,2024-08-09T07:08:49Z,- null commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-2277289859) at 2024-08-09 12:08 AM PDT -,2024-08-09T07:09:47Z,- null commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2277291459) at 2024-08-09 12:09 AM PDT -,2024-08-09T07:10:11Z,- null commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2277292199) at 2024-08-09 12:10 AM PDT -,2024-08-09T07:10:16Z,- null commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-2277292348) at 2024-08-09 12:10 AM PDT -,2024-08-09T07:10:33Z,- null commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2277292901) at 2024-08-09 12:10 AM PDT -,2024-08-09T07:10:43Z,- null commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2277293156) at 2024-08-09 12:10 AM PDT -,2024-08-09T07:12:56Z,- null commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-2277296987) at 2024-08-09 12:12 AM PDT -,2024-08-09T07:12:59Z,- null commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-2277297084) at 2024-08-09 12:12 AM PDT -,2024-08-11T17:24:29Z,- null commented on issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2282831116) at 2024-08-11 10:24 AM PDT -,2024-08-11T17:38:27Z,- null commented on issue: [7266](https://github.com/hackforla/website/issues/7266#issuecomment-2282834886) at 2024-08-11 10:38 AM PDT -,2024-08-11T17:41:38Z,- null commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2282835716) at 2024-08-11 10:41 AM PDT -,2024-08-11T17:46:17Z,- null commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2282836847) at 2024-08-11 10:46 AM PDT -,2024-08-13T09:01:47Z,- null commented on issue: [7277](https://github.com/hackforla/website/issues/7277#issuecomment-2285735262) at 2024-08-13 02:01 AM PDT -,2024-08-13T14:56:43Z,- null commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2286464260) at 2024-08-13 07:56 AM PDT -,2024-08-14T03:07:26Z,- null commented on issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2287749364) at 2024-08-13 08:07 PM PDT -,2024-08-14T17:22:26Z,- null commented on issue: [7284](https://github.com/hackforla/website/issues/7284#issuecomment-2289394407) at 2024-08-14 10:22 AM PDT -,2024-08-21T02:56:40Z,- null commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2300426546) at 2024-08-20 07:56 PM PDT -,2024-08-21T02:58:45Z,- null commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2300433743) at 2024-08-20 07:58 PM PDT -,2024-08-21T03:03:40Z,- null commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2300449843) at 2024-08-20 08:03 PM PDT -,2024-08-21T03:05:41Z,- null commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2300457785) at 2024-08-20 08:05 PM PDT -,2024-08-21T03:09:46Z,- null commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2300474259) at 2024-08-20 08:09 PM PDT -,2024-08-21T03:48:31Z,- null commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2300642848) at 2024-08-20 08:48 PM PDT -,2024-08-21T05:09:46Z,- null commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2301139417) at 2024-08-20 10:09 PM PDT -,2024-08-26T22:50:55Z,- null commented on issue: [7358](https://github.com/hackforla/website/issues/7358#issuecomment-2311243285) at 2024-08-26 03:50 PM PDT -,2024-09-02T18:38:12Z,- null commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2325192890) at 2024-09-02 11:38 AM PDT -,2024-09-10T02:35:47Z,- null commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2339492247) at 2024-09-09 07:35 PM PDT -,2024-09-15T07:20:54Z,- null commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2351429241) at 2024-09-15 12:20 AM PDT -,2024-09-15T07:31:13Z,- null commented on issue: [7458](https://github.com/hackforla/website/issues/7458#issuecomment-2351436132) at 2024-09-15 12:31 AM PDT -,2024-09-15T07:35:10Z,- null commented on issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2351437951) at 2024-09-15 12:35 AM PDT -,2024-09-18T19:14:07Z,- null commented on issue: [7492](https://github.com/hackforla/website/issues/7492#issuecomment-2359223087) at 2024-09-18 12:14 PM PDT -,2024-09-22T18:38:56Z,- null commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2366911260) at 2024-09-22 11:38 AM PDT -,2024-09-22T18:39:00Z,- null commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2366911295) at 2024-09-22 11:39 AM PDT -,2024-09-24T00:07:52Z,- null commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2369814914) at 2024-09-23 05:07 PM PDT -,2024-09-25T02:39:36Z,- null commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2372772884) at 2024-09-24 07:39 PM PDT -,2024-09-25T02:52:41Z,- null commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2372786225) at 2024-09-24 07:52 PM PDT -,2024-09-25T02:56:56Z,- null commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2372801196) at 2024-09-24 07:56 PM PDT -,2024-09-25T02:58:48Z,- null commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2372803270) at 2024-09-24 07:58 PM PDT -,2024-09-25T03:45:10Z,- null commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2372850702) at 2024-09-24 08:45 PM PDT -,2024-09-27T08:30:24Z,- null commented on issue: [7528](https://github.com/hackforla/website/issues/7528#issuecomment-2378740643) at 2024-09-27 01:30 AM PDT -,2024-10-05T22:05:12Z,- null commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395209681) at 2024-10-05 03:05 PM PDT -,2024-10-08T03:00:25Z,- null commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2398639034) at 2024-10-07 08:00 PM PDT -,2024-10-08T03:43:23Z,- null commented on issue: [7574](https://github.com/hackforla/website/issues/7574#issuecomment-2398735275) at 2024-10-07 08:43 PM PDT -,2024-10-08T03:43:37Z,- null commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2398735813) at 2024-10-07 08:43 PM PDT -,2024-10-13T03:27:22Z,- null commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2408803970) at 2024-10-12 08:27 PM PDT -,2024-10-14T20:55:29Z,- null commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2412329553) at 2024-10-14 01:55 PM PDT -,2024-10-15T08:49:54Z,- null commented on issue: [7594](https://github.com/hackforla/website/issues/7594#issuecomment-2413277466) at 2024-10-15 01:49 AM PDT -,2024-10-21T21:45:20Z,- null commented on issue: [7618](https://github.com/hackforla/website/issues/7618#issuecomment-2427798714) at 2024-10-21 02:45 PM PDT -,2024-10-23T02:49:26Z,- null commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2430717473) at 2024-10-22 07:49 PM PDT -,2024-10-23T03:12:02Z,- null commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2430754550) at 2024-10-22 08:12 PM PDT -,2024-10-23T03:17:55Z,- null commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2430760163) at 2024-10-22 08:17 PM PDT -,2024-10-23T03:19:35Z,- null commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2430761703) at 2024-10-22 08:19 PM PDT -,2024-10-24T17:36:39Z,- null commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2435935081) at 2024-10-24 10:36 AM PDT -,2024-10-29T22:04:39Z,- null commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2445413750) at 2024-10-29 03:04 PM PDT -,2024-10-29T22:17:14Z,- null commented on issue: [7663](https://github.com/hackforla/website/issues/7663#issuecomment-2445430154) at 2024-10-29 03:17 PM PDT -,2024-10-29T22:29:11Z,- null commented on issue: [7664](https://github.com/hackforla/website/issues/7664#issuecomment-2445443595) at 2024-10-29 03:29 PM PDT -,2024-10-29T22:55:09Z,- null commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2445472276) at 2024-10-29 03:55 PM PDT -,2024-10-29T23:27:03Z,- null commented on issue: [7667](https://github.com/hackforla/website/issues/7667#issuecomment-2445506671) at 2024-10-29 04:27 PM PDT -,2024-10-30T17:29:30Z,- null commented on issue: [7668](https://github.com/hackforla/website/issues/7668#issuecomment-2447885781) at 2024-10-30 10:29 AM PDT -,2024-10-31T01:44:18Z,- null commented on issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2448838591) at 2024-10-30 06:44 PM PDT -,2024-10-31T01:54:06Z,- null commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2448858031) at 2024-10-30 06:54 PM PDT -,2024-10-31T01:59:35Z,- null commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2448862979) at 2024-10-30 06:59 PM PDT -,2024-10-31T02:15:31Z,- null commented on issue: [7673](https://github.com/hackforla/website/issues/7673#issuecomment-2448882800) at 2024-10-30 07:15 PM PDT -,2024-10-31T02:17:54Z,- null commented on issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2448885085) at 2024-10-30 07:17 PM PDT -,2024-10-31T02:24:25Z,- null commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2448891129) at 2024-10-30 07:24 PM PDT -,2024-10-31T02:52:39Z,- null commented on issue: [7676](https://github.com/hackforla/website/issues/7676#issuecomment-2448916113) at 2024-10-30 07:52 PM PDT -,2024-10-31T02:55:57Z,- null commented on issue: [7677](https://github.com/hackforla/website/issues/7677#issuecomment-2448918710) at 2024-10-30 07:55 PM PDT -,2024-10-31T03:12:11Z,- null commented on issue: [7678](https://github.com/hackforla/website/issues/7678#issuecomment-2448932337) at 2024-10-30 08:12 PM PDT -,2024-10-31T07:45:25Z,- null commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2449241723) at 2024-10-31 12:45 AM PDT -,2024-10-31T07:51:25Z,- null commented on issue: [7680](https://github.com/hackforla/website/issues/7680#issuecomment-2449250056) at 2024-10-31 12:51 AM PDT -,2024-11-05T00:44:23Z,- null commented on issue: [7690](https://github.com/hackforla/website/issues/7690#issuecomment-2455991864) at 2024-11-04 04:44 PM PST -,2024-11-05T03:07:00Z,- null commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2456134026) at 2024-11-04 07:07 PM PST -,2024-11-05T03:56:28Z,- null commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2456179130) at 2024-11-04 07:56 PM PST -,2024-11-05T04:03:12Z,- null commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2456185235) at 2024-11-04 08:03 PM PST -,2024-11-05T04:06:30Z,- null commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2456188557) at 2024-11-04 08:06 PM PST -,2024-11-05T04:08:01Z,- null commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2456189999) at 2024-11-04 08:08 PM PST -,2024-11-05T04:09:44Z,- null commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2456191673) at 2024-11-04 08:09 PM PST -,2024-11-05T04:22:49Z,- null commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2456203262) at 2024-11-04 08:22 PM PST -,2024-11-05T04:28:21Z,- null commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2456208023) at 2024-11-04 08:28 PM PST -,2024-11-06T22:38:09Z,- null commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2460935306) at 2024-11-06 02:38 PM PST -,2024-11-15T23:55:25Z,- null commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2480157317) at 2024-11-15 03:55 PM PST -,2024-11-17T03:25:23Z,- null commented on issue: [7724](https://github.com/hackforla/website/issues/7724#issuecomment-2480908708) at 2024-11-16 07:25 PM PST -,2024-11-17T10:44:12Z,- null commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2481161963) at 2024-11-17 02:44 AM PST -,2024-11-18T23:42:28Z,- null commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2484398725) at 2024-11-18 03:42 PM PST -,2024-11-20T03:14:31Z,- null commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2487258441) at 2024-11-19 07:14 PM PST -,2024-11-20T03:26:53Z,- null commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487270919) at 2024-11-19 07:26 PM PST -,2024-11-20T03:46:26Z,- null commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2487295879) at 2024-11-19 07:46 PM PST -,2024-11-20T04:19:01Z,- null commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2487379898) at 2024-11-19 08:19 PM PST -,2024-11-20T04:20:59Z,- null commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2487382191) at 2024-11-19 08:20 PM PST -,2024-11-23T05:52:59Z,- null commented on issue: [7758](https://github.com/hackforla/website/issues/7758#issuecomment-2495335567) at 2024-11-22 09:52 PM PST -,2024-11-23T15:53:58Z,- null commented on issue: [7759](https://github.com/hackforla/website/issues/7759#issuecomment-2495521068) at 2024-11-23 07:53 AM PST -,2024-11-24T17:37:00Z,- null commented on issue: [7761](https://github.com/hackforla/website/issues/7761#issuecomment-2496129510) at 2024-11-24 09:37 AM PST -,2024-11-24T21:17:43Z,- null commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2496240570) at 2024-11-24 01:17 PM PST -,2024-11-26T01:11:56Z,- null commented on issue: [7767](https://github.com/hackforla/website/issues/7767#issuecomment-2499351852) at 2024-11-25 05:11 PM PST -,2024-11-27T00:29:41Z,- null commented on issue: [7772](https://github.com/hackforla/website/issues/7772#issuecomment-2502338628) at 2024-11-26 04:29 PM PST -,2024-11-29T08:54:57Z,- null commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2507352421) at 2024-11-29 12:54 AM PST -,2024-11-29T09:08:35Z,- null commented on issue: [7779](https://github.com/hackforla/website/issues/7779#issuecomment-2507377032) at 2024-11-29 01:08 AM PST -,2025-01-09T03:27:32Z,- null commented on issue: [7820](https://github.com/hackforla/website/issues/7820#issuecomment-2579110057) at 2025-01-08 07:27 PM PST -,2025-01-14T03:49:26Z,- null commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2588882638) at 2025-01-13 07:49 PM PST -,2025-01-14T04:20:03Z,- null commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2588914075) at 2025-01-13 08:20 PM PST -,2025-01-14T04:22:21Z,- null commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2588916107) at 2025-01-13 08:22 PM PST -,2025-01-14T06:22:40Z,- null commented on issue: [7830](https://github.com/hackforla/website/issues/7830#issuecomment-2589126434) at 2025-01-13 10:22 PM PST -,2025-01-21T03:50:45Z,- null commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2603602057) at 2025-01-20 07:50 PM PST -,2025-01-21T03:58:33Z,- null commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2603608045) at 2025-01-20 07:58 PM PST -,2025-01-21T04:21:26Z,- null commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603626688) at 2025-01-20 08:21 PM PST -,2025-01-21T19:10:31Z,- null commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2605535134) at 2025-01-21 11:10 AM PST -,2025-01-23T04:56:39Z,- null commented on issue: [7847](https://github.com/hackforla/website/issues/7847#issuecomment-2608856500) at 2025-01-22 08:56 PM PST -,2025-01-26T12:20:19Z,- null commented on issue: [7853](https://github.com/hackforla/website/issues/7853#issuecomment-2614366185) at 2025-01-26 04:20 AM PST -,2025-01-27T19:24:57Z,- null commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2616704005) at 2025-01-27 11:24 AM PST -,2025-01-27T19:31:42Z,- null commented on issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2616716640) at 2025-01-27 11:31 AM PST -,2025-01-31T03:08:38Z,- null commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2626205477) at 2025-01-30 07:08 PM PST -,2025-02-04T04:40:36Z,- null commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2632838403) at 2025-02-03 08:40 PM PST -,2025-02-05T03:19:14Z,- null commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2635613383) at 2025-02-04 07:19 PM PST -,2025-02-05T04:15:40Z,- null commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2635664412) at 2025-02-04 08:15 PM PST -,2025-02-05T04:15:41Z,- null commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2635664419) at 2025-02-04 08:15 PM PST -,2025-02-05T04:19:25Z,- null commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2635668013) at 2025-02-04 08:19 PM PST -,2025-02-05T04:20:11Z,- null commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2635668733) at 2025-02-04 08:20 PM PST -,2025-02-05T04:41:20Z,- null commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2635688686) at 2025-02-04 08:41 PM PST -,2025-02-05T04:42:19Z,- null commented on issue: [7892](https://github.com/hackforla/website/issues/7892#issuecomment-2635689667) at 2025-02-04 08:42 PM PST -,2025-02-05T18:19:03Z,- null commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2637689013) at 2025-02-05 10:19 AM PST -,2025-02-16T00:19:32Z,- null commented on issue: [7911](https://github.com/hackforla/website/issues/7911#issuecomment-2661160020) at 2025-02-15 04:19 PM PST -,2025-02-19T03:40:04Z,- null commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2667433520) at 2025-02-18 07:40 PM PST -,2025-02-19T03:47:55Z,- null commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2667442140) at 2025-02-18 07:47 PM PST -,2025-02-25T03:15:30Z,- null commented on issue: [7942](https://github.com/hackforla/website/issues/7942#issuecomment-2680311742) at 2025-02-24 07:15 PM PST -,2025-02-26T21:18:30Z,- null commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2686220062) at 2025-02-26 01:18 PM PST -,2025-03-04T03:55:29Z,- null commented on issue: [7966](https://github.com/hackforla/website/issues/7966#issuecomment-2696126916) at 2025-03-03 07:55 PM PST -,2025-03-04T03:55:30Z,- null commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696126930) at 2025-03-03 07:55 PM PST -,2025-03-04T03:59:46Z,- null commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2696131209) at 2025-03-03 07:59 PM PST -,2025-03-04T04:16:13Z,- null commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2696147640) at 2025-03-03 08:16 PM PST -,2025-03-04T04:18:33Z,- null commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2696149985) at 2025-03-03 08:18 PM PST -,2025-03-04T04:18:40Z,- null commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2696150102) at 2025-03-03 08:18 PM PST -,2025-03-04T04:20:13Z,- null commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2696151628) at 2025-03-03 08:20 PM PST -,2025-03-04T04:27:54Z,- null commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2696159640) at 2025-03-03 08:27 PM PST -,2025-03-04T04:28:17Z,- null commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2696160049) at 2025-03-03 08:28 PM PST -,2025-03-04T04:40:38Z,- null commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2696176477) at 2025-03-03 08:40 PM PST -,2025-03-04T05:01:18Z,- null commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2696209082) at 2025-03-03 09:01 PM PST -,2025-03-15T17:26:30Z,- null commented on issue: [7990](https://github.com/hackforla/website/issues/7990#issuecomment-2726806420) at 2025-03-15 10:26 AM PDT -,2025-03-19T03:13:00Z,- null commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2735214433) at 2025-03-18 08:13 PM PDT -,2025-03-19T03:24:15Z,- null commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2735225679) at 2025-03-18 08:24 PM PDT -,2025-03-19T03:43:31Z,- null commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2735244306) at 2025-03-18 08:43 PM PDT -,2025-03-23T09:29:49Z,- null commented on issue: [8017](https://github.com/hackforla/website/issues/8017#issuecomment-2746111809) at 2025-03-23 02:29 AM PDT -,2025-03-31T21:56:11Z,- null commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2767505799) at 2025-03-31 02:56 PM PDT -,2025-03-31T22:12:48Z,- null commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2767534271) at 2025-03-31 03:12 PM PDT -,2025-04-01T02:43:26Z,- null commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2767910137) at 2025-03-31 07:43 PM PDT -,2025-04-01T02:48:21Z,- null commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2767915468) at 2025-03-31 07:48 PM PDT -,2025-04-01T02:55:55Z,- null commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2767923745) at 2025-03-31 07:55 PM PDT -,2025-04-01T03:17:31Z,- null commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2767965891) at 2025-03-31 08:17 PM PDT -,2025-04-02T02:31:50Z,- null commented on issue: [8036](https://github.com/hackforla/website/issues/8036#issuecomment-2771172980) at 2025-04-01 07:31 PM PDT -,2025-04-04T00:36:31Z,- null commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2777284408) at 2025-04-03 05:36 PM PDT -,2025-04-06T18:52:27Z,- null commented on issue: [8048](https://github.com/hackforla/website/issues/8048#issuecomment-2781562260) at 2025-04-06 11:52 AM PDT -,2025-04-07T01:52:23Z,- null commented on issue: [8051](https://github.com/hackforla/website/issues/8051#issuecomment-2781833671) at 2025-04-06 06:52 PM PDT -,2025-04-07T01:52:23Z,- null commented on issue: [8051](https://github.com/hackforla/website/issues/8051#issuecomment-2781833671) at 2025-04-06 06:52 PM PDT -,2025-04-07T23:03:40Z,- null commented on issue: [8054](https://github.com/hackforla/website/issues/8054#issuecomment-2784820780) at 2025-04-07 04:03 PM PDT -,2025-04-07T23:03:40Z,- null commented on issue: [8054](https://github.com/hackforla/website/issues/8054#issuecomment-2784820780) at 2025-04-07 04:03 PM PDT -,2025-04-08T21:46:30Z,- null commented on issue: [8055](https://github.com/hackforla/website/issues/8055#issuecomment-2787734802) at 2025-04-08 02:46 PM PDT -,2025-04-08T21:46:30Z,- null commented on issue: [8055](https://github.com/hackforla/website/issues/8055#issuecomment-2787734802) at 2025-04-08 02:46 PM PDT -,2025-04-16T02:45:29Z,- null commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2808079868) at 2025-04-15 07:45 PM PDT -,2025-04-16T03:08:31Z,- null commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2808110867) at 2025-04-15 08:08 PM PDT -,2025-04-22T21:07:46Z,- null commented on issue: [8081](https://github.com/hackforla/website/issues/8081#issuecomment-2822487180) at 2025-04-22 02:07 PM PDT -,2025-04-29T02:47:01Z,- null commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2837295729) at 2025-04-28 07:47 PM PDT -,2025-04-29T02:59:41Z,- null commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2837310557) at 2025-04-28 07:59 PM PDT -,2025-04-29T02:59:46Z,- null commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2837310615) at 2025-04-28 07:59 PM PDT -,2025-04-29T03:02:53Z,- null commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2837313862) at 2025-04-28 08:02 PM PDT -,2025-04-29T03:16:45Z,- null commented on issue: [8098](https://github.com/hackforla/website/issues/8098#issuecomment-2837327307) at 2025-04-28 08:16 PM PDT -,2025-05-14T02:42:35Z,- null commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2878467340) at 2025-05-13 07:42 PM PDT -,2025-05-14T02:47:35Z,- null commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2878479039) at 2025-05-13 07:47 PM PDT -,2025-05-14T02:52:08Z,- null commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-2878484567) at 2025-05-13 07:52 PM PDT -,2025-05-14T02:52:28Z,- null commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2878484901) at 2025-05-13 07:52 PM PDT -,2025-05-14T02:56:27Z,- null commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2878488914) at 2025-05-13 07:56 PM PDT -,2025-05-14T03:00:16Z,- null commented on issue: [8133](https://github.com/hackforla/website/issues/8133#issuecomment-2878492867) at 2025-05-13 08:00 PM PDT -,2025-05-14T03:04:12Z,- null commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-2878497618) at 2025-05-13 08:04 PM PDT -,2025-05-14T03:10:20Z,- null commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2878505946) at 2025-05-13 08:10 PM PDT -,2025-05-14T03:14:31Z,- null commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2878510151) at 2025-05-13 08:14 PM PDT -,2025-05-14T16:47:34Z,- null commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2880901382) at 2025-05-14 09:47 AM PDT -,2025-05-15T20:08:27Z,- null commented on issue: [8145](https://github.com/hackforla/website/issues/8145#issuecomment-2884940468) at 2025-05-15 01:08 PM PDT -,2025-05-16T06:19:23Z,- null commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2885750994) at 2025-05-15 11:19 PM PDT -,2025-06-13T21:19:58Z,- null commented on issue: [8184](https://github.com/hackforla/website/issues/8184#issuecomment-2971709052) at 2025-06-13 02:19 PM PDT -,2025-06-17T03:03:31Z,- null commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-2978771711) at 2025-06-16 08:03 PM PDT -,2025-06-17T03:09:52Z,- null commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2978780293) at 2025-06-16 08:09 PM PDT -,2025-06-17T03:42:37Z,- null commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-2978822728) at 2025-06-16 08:42 PM PDT -,2025-06-17T03:43:13Z,- null commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2978823498) at 2025-06-16 08:43 PM PDT -,2025-06-17T03:46:23Z,- null commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-2978827976) at 2025-06-16 08:46 PM PDT -,2025-06-24T23:15:14Z,- null commented on issue: [8205](https://github.com/hackforla/website/issues/8205#issuecomment-3002128193) at 2025-06-24 04:15 PM PDT -,2025-06-25T12:09:10Z,- null commented on issue: [8207](https://github.com/hackforla/website/issues/8207#issuecomment-3004538568) at 2025-06-25 05:09 AM PDT -,2025-06-25T12:19:37Z,- null commented on issue: [8208](https://github.com/hackforla/website/issues/8208#issuecomment-3004568835) at 2025-06-25 05:19 AM PDT -,2025-06-25T12:27:26Z,- null commented on issue: [8209](https://github.com/hackforla/website/issues/8209#issuecomment-3004592065) at 2025-06-25 05:27 AM PDT -,2025-06-25T12:32:52Z,- null commented on issue: [8210](https://github.com/hackforla/website/issues/8210#issuecomment-3004607661) at 2025-06-25 05:32 AM PDT -,2025-06-25T13:11:05Z,- null commented on issue: [8211](https://github.com/hackforla/website/issues/8211#issuecomment-3004719700) at 2025-06-25 06:11 AM PDT -,2025-06-25T13:35:00Z,- null commented on issue: [8212](https://github.com/hackforla/website/issues/8212#issuecomment-3004806881) at 2025-06-25 06:35 AM PDT -,2025-06-25T13:42:44Z,- null commented on issue: [8213](https://github.com/hackforla/website/issues/8213#issuecomment-3004833151) at 2025-06-25 06:42 AM PDT -,2025-06-25T18:55:21Z,- null commented on issue: [8214](https://github.com/hackforla/website/issues/8214#issuecomment-3005821763) at 2025-06-25 11:55 AM PDT -,2025-06-25T18:58:50Z,- null commented on issue: [8215](https://github.com/hackforla/website/issues/8215#issuecomment-3005830359) at 2025-06-25 11:58 AM PDT -,2025-06-25T18:59:10Z,- null commented on issue: [8216](https://github.com/hackforla/website/issues/8216#issuecomment-3005831436) at 2025-06-25 11:59 AM PDT -,2025-06-25T18:59:18Z,- null commented on issue: [8217](https://github.com/hackforla/website/issues/8217#issuecomment-3005831832) at 2025-06-25 11:59 AM PDT -,2025-06-25T19:00:00Z,- null commented on issue: [8218](https://github.com/hackforla/website/issues/8218#issuecomment-3005833555) at 2025-06-25 12:00 PM PDT -,2025-06-25T19:03:51Z,- null commented on issue: [8219](https://github.com/hackforla/website/issues/8219#issuecomment-3005844137) at 2025-06-25 12:03 PM PDT -,2025-06-25T19:05:56Z,- null commented on issue: [8220](https://github.com/hackforla/website/issues/8220#issuecomment-3005849244) at 2025-06-25 12:05 PM PDT -,2025-06-25T19:06:26Z,- null commented on issue: [8221](https://github.com/hackforla/website/issues/8221#issuecomment-3005850447) at 2025-06-25 12:06 PM PDT -,2025-06-25T19:06:50Z,- null commented on issue: [8222](https://github.com/hackforla/website/issues/8222#issuecomment-3005851360) at 2025-06-25 12:06 PM PDT -,2025-06-25T19:07:11Z,- null commented on issue: [8223](https://github.com/hackforla/website/issues/8223#issuecomment-3005852190) at 2025-06-25 12:07 PM PDT -,2025-06-25T19:07:32Z,- null commented on issue: [8224](https://github.com/hackforla/website/issues/8224#issuecomment-3005852952) at 2025-06-25 12:07 PM PDT -,2025-06-25T19:08:30Z,- null commented on issue: [8225](https://github.com/hackforla/website/issues/8225#issuecomment-3005855615) at 2025-06-25 12:08 PM PDT -,2025-06-25T19:08:39Z,- null commented on issue: [8226](https://github.com/hackforla/website/issues/8226#issuecomment-3005856002) at 2025-06-25 12:08 PM PDT -,2025-06-25T19:08:52Z,- null commented on issue: [8227](https://github.com/hackforla/website/issues/8227#issuecomment-3005856545) at 2025-06-25 12:08 PM PDT -,2025-06-25T23:12:11Z,- null commented on issue: [8228](https://github.com/hackforla/website/issues/8228#issuecomment-3006494514) at 2025-06-25 04:12 PM PDT -,2025-06-25T23:39:28Z,- null commented on issue: [8229](https://github.com/hackforla/website/issues/8229#issuecomment-3006534301) at 2025-06-25 04:39 PM PDT -,2025-06-25T23:45:04Z,- null commented on issue: [8230](https://github.com/hackforla/website/issues/8230#issuecomment-3006547145) at 2025-06-25 04:45 PM PDT -,2025-07-22T20:41:36Z,- null commented on issue: [8249](https://github.com/hackforla/website/issues/8249#issuecomment-3104768807) at 2025-07-22 01:41 PM PDT \ No newline at end of file diff --git a/github-actions/activity-trigger/member_activity_history_bot_22.csv b/github-actions/activity-trigger/member_activity_history_bot_22.csv deleted file mode 100644 index c83ed00776..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_22.csv +++ /dev/null @@ -1,4656 +0,0 @@ -username,datetime,message -Adastros,3685,SKILLS ISSUE -Adastros,2022-11-01T02:38:48Z,- Adastros opened issue: [3685](https://github.com/hackforla/website/issues/3685) at 2022-10-31 07:38 PM PDT -Adastros,2022-11-02T03:54:49Z,- Adastros assigned to issue: [3685](https://github.com/hackforla/website/issues/3685) at 2022-11-01 08:54 PM PDT -Adastros,2022-11-05T03:39:15Z,- Adastros assigned to issue: [2858](https://github.com/hackforla/website/issues/2858#issuecomment-1048436585) at 2022-11-04 07:39 PM PST -Adastros,2022-11-05T04:07:28Z,- Adastros commented on issue: [2858](https://github.com/hackforla/website/issues/2858#issuecomment-1304396830) at 2022-11-04 08:07 PM PST -Adastros,2022-11-05T05:07:47Z,- Adastros opened pull request: [3695](https://github.com/hackforla/website/pull/3695) at 2022-11-04 09:07 PM PST -Adastros,2022-11-07T20:08:21Z,- Adastros pull request merged: [3695](https://github.com/hackforla/website/pull/3695#event-7755951560) at 2022-11-07 12:08 PM PST -Adastros,2022-11-08T04:44:10Z,- Adastros commented on issue: [3685](https://github.com/hackforla/website/issues/3685#issuecomment-1306627467) at 2022-11-07 08:44 PM PST -Adastros,2022-11-08T05:53:18Z,- Adastros assigned to issue: [3207](https://github.com/hackforla/website/issues/3207#issuecomment-1145822417) at 2022-11-07 09:53 PM PST -Adastros,2022-11-08T05:55:55Z,- Adastros commented on issue: [3207](https://github.com/hackforla/website/issues/3207#issuecomment-1306674318) at 2022-11-07 09:55 PM PST -Adastros,2022-11-08T06:52:17Z,- Adastros opened pull request: [3699](https://github.com/hackforla/website/pull/3699) at 2022-11-07 10:52 PM PST -Adastros,2022-11-10T05:26:47Z,- Adastros commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1309795869) at 2022-11-09 09:26 PM PST -Adastros,2022-11-10T06:17:47Z,- Adastros submitted pull request review: [3703](https://github.com/hackforla/website/pull/3703#pullrequestreview-1175131208) at 2022-11-09 10:17 PM PST -Adastros,2022-11-10T18:48:38Z,- Adastros pull request merged: [3699](https://github.com/hackforla/website/pull/3699#event-7786132153) at 2022-11-10 10:48 AM PST -Adastros,2022-11-11T06:33:39Z,- Adastros assigned to issue: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-11-10 10:33 PM PST -Adastros,2022-11-11T06:39:22Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1311289580) at 2022-11-10 10:39 PM PST -Adastros,2022-11-14T02:20:20Z,- Adastros commented on issue: [3685](https://github.com/hackforla/website/issues/3685#issuecomment-1312951717) at 2022-11-13 06:20 PM PST -Adastros,2022-11-14T02:23:06Z,- Adastros commented on issue: [3685](https://github.com/hackforla/website/issues/3685#issuecomment-1312953077) at 2022-11-13 06:23 PM PST -Adastros,2022-11-14T02:23:06Z,- Adastros closed issue as completed: [3685](https://github.com/hackforla/website/issues/3685#event-7799822610) at 2022-11-13 06:23 PM PST -Adastros,2022-11-14T04:54:24Z,- Adastros opened pull request: [3717](https://github.com/hackforla/website/pull/3717) at 2022-11-13 08:54 PM PST -Adastros,2022-11-15T05:54:14Z,- Adastros commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314809373) at 2022-11-14 09:54 PM PST -Adastros,2022-11-15T08:03:41Z,- Adastros opened issue: [3720](https://github.com/hackforla/website/issues/3720) at 2022-11-15 12:03 AM PST -Adastros,2022-11-17T00:32:47Z,- Adastros pull request merged: [3717](https://github.com/hackforla/website/pull/3717#event-7829148008) at 2022-11-16 04:32 PM PST -Adastros,2022-11-17T05:05:14Z,- Adastros commented on pull request: [3728](https://github.com/hackforla/website/pull/3728#issuecomment-1318082556) at 2022-11-16 09:05 PM PST -Adastros,2022-11-17T06:40:21Z,- Adastros submitted pull request review: [3728](https://github.com/hackforla/website/pull/3728#pullrequestreview-1183743795) at 2022-11-16 10:40 PM PST -Adastros,2022-11-18T04:55:21Z,- Adastros commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319545153) at 2022-11-17 08:55 PM PST -Adastros,2022-11-18T07:33:49Z,- Adastros submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1185611364) at 2022-11-17 11:33 PM PST -Adastros,2022-11-19T06:29:04Z,- Adastros assigned to issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1281492060) at 2022-11-18 10:29 PM PST -Adastros,2022-11-19T06:31:45Z,- Adastros commented on issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1320816199) at 2022-11-18 10:31 PM PST -Adastros,2022-11-22T07:24:32Z,- Adastros opened pull request: [3741](https://github.com/hackforla/website/pull/3741) at 2022-11-21 11:24 PM PST -Adastros,2022-11-22T07:31:40Z,- Adastros commented on pull request: [3737](https://github.com/hackforla/website/pull/3737#issuecomment-1323228621) at 2022-11-21 11:31 PM PST -Adastros,2022-11-22T08:09:09Z,- Adastros submitted pull request review: [3737](https://github.com/hackforla/website/pull/3737#pullrequestreview-1189555320) at 2022-11-22 12:09 AM PST -Adastros,2022-11-22T08:11:08Z,- Adastros commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1323269285) at 2022-11-22 12:11 AM PST -Adastros,2022-11-23T07:05:30Z,- Adastros submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1191133282) at 2022-11-22 11:05 PM PST -Adastros,2022-11-27T08:40:04Z,- Adastros commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1328197035) at 2022-11-27 12:40 AM PST -Adastros,2022-11-27T20:13:27Z,- Adastros unassigned from issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328329813) at 2022-11-27 12:13 PM PST -Adastros,2022-11-27T20:28:53Z,- Adastros assigned to issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1327102396) at 2022-11-27 12:28 PM PST -Adastros,2022-11-27T20:29:27Z,- Adastros unassigned from issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333414) at 2022-11-27 12:29 PM PST -Adastros,2022-11-29T02:39:07Z,- Adastros pull request merged: [3741](https://github.com/hackforla/website/pull/3741#event-7908411412) at 2022-11-28 06:39 PM PST -Adastros,2022-11-29T06:35:41Z,- Adastros commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1330152281) at 2022-11-28 10:35 PM PST -Adastros,2022-11-29T06:37:11Z,- Adastros commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1330153232) at 2022-11-28 10:37 PM PST -Adastros,2022-11-29T06:39:50Z,- Adastros commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1330154887) at 2022-11-28 10:39 PM PST -Adastros,2022-11-29T06:42:48Z,- Adastros assigned to issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328329813) at 2022-11-28 10:42 PM PST -Adastros,2022-11-29T06:44:26Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1330157642) at 2022-11-28 10:44 PM PST -Adastros,2022-11-30T05:33:41Z,- Adastros submitted pull request review: [3753](https://github.com/hackforla/website/pull/3753#pullrequestreview-1198706982) at 2022-11-29 09:33 PM PST -Adastros,2022-12-01T07:26:28Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1333322527) at 2022-11-30 11:26 PM PST -Adastros,2022-12-06T06:34:54Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1338858231) at 2022-12-05 10:34 PM PST -Adastros,2023-01-10T06:25:57Z,- Adastros commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1376790694) at 2023-01-09 10:25 PM PST -Adastros,2023-01-11T06:47:39Z,- Adastros opened pull request: [3809](https://github.com/hackforla/website/pull/3809) at 2023-01-10 10:47 PM PST -Adastros,2023-01-13T18:58:25Z,- Adastros pull request merged: [3809](https://github.com/hackforla/website/pull/3809#event-8223594916) at 2023-01-13 10:58 AM PST -Adastros,2023-01-14T23:45:32Z,- Adastros commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1382965772) at 2023-01-14 03:45 PM PST -Adastros,2023-01-14T23:58:15Z,- Adastros commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1382967986) at 2023-01-14 03:58 PM PST -Adastros,2023-01-15T02:45:19Z,- Adastros submitted pull request review: [3810](https://github.com/hackforla/website/pull/3810#pullrequestreview-1249097256) at 2023-01-14 06:45 PM PST -Adastros,2023-01-15T22:17:26Z,- Adastros commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1383267754) at 2023-01-15 02:17 PM PST -Adastros,2023-01-17T06:30:25Z,- Adastros submitted pull request review: [3810](https://github.com/hackforla/website/pull/3810#pullrequestreview-1250946199) at 2023-01-16 10:30 PM PST -Adastros,2023-01-17T06:35:59Z,- Adastros commented on pull request: [3815](https://github.com/hackforla/website/pull/3815#issuecomment-1384899484) at 2023-01-16 10:35 PM PST -Adastros,2023-01-17T07:29:11Z,- Adastros submitted pull request review: [3815](https://github.com/hackforla/website/pull/3815#pullrequestreview-1251023520) at 2023-01-16 11:29 PM PST -Adastros,2023-01-19T04:14:15Z,- Adastros commented on pull request: [3838](https://github.com/hackforla/website/pull/3838#issuecomment-1396417461) at 2023-01-18 08:14 PM PST -Adastros,2023-01-19T06:50:00Z,- Adastros submitted pull request review: [3838](https://github.com/hackforla/website/pull/3838#pullrequestreview-1261201204) at 2023-01-18 10:50 PM PST -Adastros,2023-01-20T06:52:35Z,- Adastros submitted pull request review: [3838](https://github.com/hackforla/website/pull/3838#pullrequestreview-1263038905) at 2023-01-19 10:52 PM PST -Adastros,2023-01-24T05:34:42Z,- Adastros commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1401418956) at 2023-01-23 09:34 PM PST -Adastros,2023-01-24T07:42:39Z,- Adastros submitted pull request review: [3864](https://github.com/hackforla/website/pull/3864#pullrequestreview-1266960610) at 2023-01-23 11:42 PM PST -Adastros,2023-01-24T07:51:52Z,- Adastros commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1401509906) at 2023-01-23 11:51 PM PST -Adastros,2023-01-24T08:22:15Z,- Adastros commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1401539817) at 2023-01-24 12:22 AM PST -Adastros,2023-01-25T04:40:55Z,- Adastros submitted pull request review: [3864](https://github.com/hackforla/website/pull/3864#pullrequestreview-1268699923) at 2023-01-24 08:40 PM PST -Adastros,2023-01-25T07:11:52Z,- Adastros submitted pull request review: [3845](https://github.com/hackforla/website/pull/3845#pullrequestreview-1268799460) at 2023-01-24 11:11 PM PST -Adastros,2023-01-31T05:42:22Z,- Adastros submitted pull request review: [3845](https://github.com/hackforla/website/pull/3845#pullrequestreview-1276513177) at 2023-01-30 09:42 PM PST -Adastros,2023-01-31T05:53:40Z,- Adastros commented on pull request: [3905](https://github.com/hackforla/website/pull/3905#issuecomment-1409801675) at 2023-01-30 09:53 PM PST -Adastros,2023-01-31T07:07:51Z,- Adastros submitted pull request review: [3905](https://github.com/hackforla/website/pull/3905#pullrequestreview-1276593080) at 2023-01-30 11:07 PM PST -Adastros,2023-02-01T06:20:08Z,- Adastros submitted pull request review: [3905](https://github.com/hackforla/website/pull/3905#pullrequestreview-1278489018) at 2023-01-31 10:20 PM PST -Adastros,2023-02-14T07:38:09Z,- Adastros opened issue: [3973](https://github.com/hackforla/website/issues/3973) at 2023-02-13 11:38 PM PST -Adastros,2023-02-14T08:00:21Z,- Adastros opened issue: [3975](https://github.com/hackforla/website/issues/3975) at 2023-02-14 12:00 AM PST -Adastros,2023-02-14T08:08:35Z,- Adastros commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1429299384) at 2023-02-14 12:08 AM PST -Adastros,2023-02-14T08:22:42Z,- Adastros opened issue: [3976](https://github.com/hackforla/website/issues/3976) at 2023-02-14 12:22 AM PST -Adastros,2023-02-20T01:44:31Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1436182330) at 2023-02-19 05:44 PM PST -Adastros,2023-02-21T04:54:03Z,- Adastros commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1437856138) at 2023-02-20 08:54 PM PST -Adastros,2023-02-21T05:11:30Z,- Adastros submitted pull request review: [4011](https://github.com/hackforla/website/pull/4011#pullrequestreview-1306634001) at 2023-02-20 09:11 PM PST -Adastros,2023-02-23T06:53:25Z,- Adastros submitted pull request review: [4020](https://github.com/hackforla/website/pull/4020#pullrequestreview-1310690492) at 2023-02-22 10:53 PM PST -Adastros,2023-02-23T07:07:02Z,- Adastros submitted pull request review: [4011](https://github.com/hackforla/website/pull/4011#pullrequestreview-1310701444) at 2023-02-22 11:07 PM PST -Adastros,2023-02-23T07:08:41Z,- Adastros closed issue by PR 4011: [4008](https://github.com/hackforla/website/issues/4008#event-8588424157) at 2023-02-22 11:08 PM PST -Adastros,2023-02-28T07:20:56Z,- Adastros submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1316923625) at 2023-02-27 11:20 PM PST -Adastros,2023-02-28T07:46:24Z,- Adastros commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1447720283) at 2023-02-27 11:46 PM PST -Adastros,2023-02-28T08:03:07Z,- Adastros closed issue by PR 4048: [4006](https://github.com/hackforla/website/issues/4006#event-8623813933) at 2023-02-28 12:03 AM PST -Adastros,2023-03-01T02:43:34Z,- Adastros commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1449247482) at 2023-02-28 06:43 PM PST -Adastros,2023-03-01T07:16:57Z,- Adastros submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1319156521) at 2023-02-28 11:16 PM PST -Adastros,2023-03-01T07:17:38Z,- Adastros closed issue by PR 4038: [3952](https://github.com/hackforla/website/issues/3952#event-8634771589) at 2023-02-28 11:17 PM PST -Adastros,2023-03-06T05:43:41Z,- Adastros commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1455490276) at 2023-03-05 09:43 PM PST -Adastros,2023-03-06T06:09:39Z,- Adastros commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1455512616) at 2023-03-05 10:09 PM PST -Adastros,2023-03-06T06:27:40Z,- Adastros commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1455529648) at 2023-03-05 10:27 PM PST -Adastros,2023-03-06T07:22:52Z,- Adastros submitted pull request review: [4108](https://github.com/hackforla/website/pull/4108#pullrequestreview-1325631531) at 2023-03-05 11:22 PM PST -Adastros,2023-03-06T07:36:05Z,- Adastros commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1455608075) at 2023-03-05 11:36 PM PST -Adastros,2023-03-07T07:28:02Z,- Adastros commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1457682510) at 2023-03-06 11:28 PM PST -Adastros,2023-03-07T07:36:15Z,- Adastros commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1457690979) at 2023-03-06 11:36 PM PST -Adastros,2023-03-07T08:05:25Z,- Adastros submitted pull request review: [4115](https://github.com/hackforla/website/pull/4115#pullrequestreview-1327835344) at 2023-03-07 12:05 AM PST -Adastros,2023-03-08T05:10:20Z,- Adastros commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1459507458) at 2023-03-07 09:10 PM PST -Adastros,2023-03-08T06:09:42Z,- Adastros commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1459598026) at 2023-03-07 10:09 PM PST -Adastros,2023-03-08T06:13:28Z,- Adastros commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1459600783) at 2023-03-07 10:13 PM PST -Adastros,2023-03-08T06:23:41Z,- Adastros commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1459607942) at 2023-03-07 10:23 PM PST -Adastros,2023-03-08T07:07:42Z,- Adastros submitted pull request review: [4121](https://github.com/hackforla/website/pull/4121#pullrequestreview-1330063876) at 2023-03-07 11:07 PM PST -Adastros,2023-03-09T06:36:27Z,- Adastros submitted pull request review: [4121](https://github.com/hackforla/website/pull/4121#pullrequestreview-1332093879) at 2023-03-08 10:36 PM PST -Adastros,2023-03-09T06:37:32Z,- Adastros closed issue by PR 4121: [4082](https://github.com/hackforla/website/issues/4082#event-8703824200) at 2023-03-08 10:37 PM PST -Adastros,2023-03-09T07:16:22Z,- Adastros submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1332135120) at 2023-03-08 11:16 PM PST -Adastros,2023-03-09T07:33:36Z,- Adastros opened issue: [4141](https://github.com/hackforla/website/issues/4141) at 2023-03-08 11:33 PM PST -Adastros,2023-03-10T07:56:50Z,- Adastros commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1463411804) at 2023-03-09 11:56 PM PST -Adastros,2023-03-10T08:12:36Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1463429993) at 2023-03-10 12:12 AM PST -Adastros,2023-04-04T06:58:19Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1495446939) at 2023-04-03 11:58 PM PDT -Adastros,2023-04-11T04:30:27Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1502671608) at 2023-04-10 09:30 PM PDT -Adastros,2023-04-13T06:43:12Z,- Adastros opened issue: [4498](https://github.com/hackforla/website/issues/4498) at 2023-04-12 11:43 PM PDT -Adastros,2023-04-18T05:25:23Z,- Adastros commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1512453132) at 2023-04-17 10:25 PM PDT -Adastros,2023-04-18T06:19:23Z,- Adastros commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1512501343) at 2023-04-17 11:19 PM PDT -Adastros,2023-04-18T06:19:57Z,- Adastros submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1389362993) at 2023-04-17 11:19 PM PDT -Adastros,2023-04-18T06:45:59Z,- Adastros submitted pull request review: [4511](https://github.com/hackforla/website/pull/4511#pullrequestreview-1389398155) at 2023-04-17 11:45 PM PDT -Adastros,2023-04-19T03:25:41Z,- Adastros submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1391208305) at 2023-04-18 08:25 PM PDT -Adastros,2023-04-19T03:26:08Z,- Adastros closed issue by PR 4539: [4352](https://github.com/hackforla/website/issues/4352#event-9041883220) at 2023-04-18 08:26 PM PDT -Adastros,2023-04-19T03:28:34Z,- Adastros submitted pull request review: [4511](https://github.com/hackforla/website/pull/4511#pullrequestreview-1391209724) at 2023-04-18 08:28 PM PDT -Adastros,2023-04-19T03:42:26Z,- Adastros closed issue by PR 4511: [4396](https://github.com/hackforla/website/issues/4396#event-9041936236) at 2023-04-18 08:42 PM PDT -Adastros,2023-04-21T06:17:29Z,- Adastros commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1517320812) at 2023-04-20 11:17 PM PDT -Adastros,2023-04-21T07:08:19Z,- Adastros opened issue: [4551](https://github.com/hackforla/website/issues/4551) at 2023-04-21 12:08 AM PDT -Adastros,2023-04-21T07:13:08Z,- Adastros opened issue: [4552](https://github.com/hackforla/website/issues/4552) at 2023-04-21 12:13 AM PDT -Adastros,2023-04-25T05:54:12Z,- Adastros submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1399175577) at 2023-04-24 10:54 PM PDT -Adastros,2023-04-25T06:06:29Z,- Adastros commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1521199923) at 2023-04-24 11:06 PM PDT -Adastros,2023-04-25T07:38:40Z,- Adastros commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1521300777) at 2023-04-25 12:38 AM PDT -Adastros,2023-04-25T07:40:03Z,- Adastros closed issue by PR 4554: [4256](https://github.com/hackforla/website/issues/4256#event-9089034663) at 2023-04-25 12:40 AM PDT -Adastros,2023-04-26T02:26:36Z,- Adastros submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1401054763) at 2023-04-25 07:26 PM PDT -Adastros,2023-04-26T02:27:11Z,- Adastros closed issue by PR 4560: [4381](https://github.com/hackforla/website/issues/4381#event-9098240165) at 2023-04-25 07:27 PM PDT -Adastros,2023-05-02T05:38:02Z,- Adastros commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1530910009) at 2023-05-01 10:38 PM PDT -Adastros,2023-05-02T07:00:31Z,- Adastros assigned to issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1522657973) at 2023-05-02 12:00 AM PDT -Adastros,2023-05-02T07:04:17Z,- Adastros commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1530985483) at 2023-05-02 12:04 AM PDT -Adastros,2023-05-02T07:35:05Z,- Adastros opened issue: [4593](https://github.com/hackforla/website/issues/4593) at 2023-05-02 12:35 AM PDT -Adastros,2023-05-02T07:40:30Z,- Adastros commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1531024173) at 2023-05-02 12:40 AM PDT -Adastros,2023-05-03T06:10:22Z,- Adastros commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1532493648) at 2023-05-02 11:10 PM PDT -Adastros,2023-05-03T06:10:22Z,- Adastros closed issue as completed: [4530](https://github.com/hackforla/website/issues/4530#event-9151858810) at 2023-05-02 11:10 PM PDT -Adastros,2023-05-04T04:47:48Z,- Adastros commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1534089848) at 2023-05-03 09:47 PM PDT -Adastros,2023-05-04T04:49:56Z,- Adastros assigned to issue: [4498](https://github.com/hackforla/website/issues/4498) at 2023-05-03 09:49 PM PDT -Adastros,2023-05-09T06:06:50Z,- Adastros commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1539470291) at 2023-05-08 11:06 PM PDT -Adastros,2023-05-09T08:42:26Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1418164765) at 2023-05-09 01:42 AM PDT -Adastros,2023-05-10T02:49:58Z,- Adastros commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1541229664) at 2023-05-09 07:49 PM PDT -Adastros,2023-05-11T05:21:01Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1421772270) at 2023-05-10 10:21 PM PDT -Adastros,2023-05-11T05:29:30Z,- Adastros commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1543360849) at 2023-05-10 10:29 PM PDT -Adastros,2023-05-12T04:39:13Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1423761573) at 2023-05-11 09:39 PM PDT -Adastros,2023-05-14T02:02:56Z,- Adastros submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1425478285) at 2023-05-13 07:02 PM PDT -Adastros,2023-05-14T02:04:49Z,- Adastros closed issue by PR 4603: [4574](https://github.com/hackforla/website/issues/4574#event-9239444309) at 2023-05-13 07:04 PM PDT -Adastros,2023-05-14T02:37:58Z,- Adastros opened issue: [4662](https://github.com/hackforla/website/issues/4662) at 2023-05-13 07:37 PM PDT -Adastros,2023-05-14T02:42:07Z,- Adastros commented on issue: [4498](https://github.com/hackforla/website/issues/4498#issuecomment-1546793167) at 2023-05-13 07:42 PM PDT -Adastros,2023-05-14T02:42:07Z,- Adastros closed issue as completed: [4498](https://github.com/hackforla/website/issues/4498#event-9239474014) at 2023-05-13 07:42 PM PDT -Adastros,2023-05-16T06:03:37Z,- Adastros commented on pull request: [4673](https://github.com/hackforla/website/pull/4673#issuecomment-1549041761) at 2023-05-15 11:03 PM PDT -Adastros,2023-05-16T06:14:29Z,- Adastros commented on pull request: [4664](https://github.com/hackforla/website/pull/4664#issuecomment-1549052703) at 2023-05-15 11:14 PM PDT -Adastros,2023-05-16T06:16:56Z,- Adastros commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1549054904) at 2023-05-15 11:16 PM PDT -Adastros,2023-05-16T07:05:46Z,- Adastros submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1427866816) at 2023-05-16 12:05 AM PDT -Adastros,2023-05-17T01:47:44Z,- Adastros submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1429669778) at 2023-05-16 06:47 PM PDT -Adastros,2023-05-17T01:48:00Z,- Adastros closed issue by PR 4666: [4473](https://github.com/hackforla/website/issues/4473#event-9263822503) at 2023-05-16 06:48 PM PDT -Adastros,2023-05-23T06:18:43Z,- Adastros commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1558599739) at 2023-05-22 11:18 PM PDT -Adastros,2023-05-25T04:58:06Z,- Adastros commented on pull request: [4727](https://github.com/hackforla/website/pull/4727#issuecomment-1562267451) at 2023-05-24 09:58 PM PDT -Adastros,2023-05-25T05:00:07Z,- Adastros commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1562269099) at 2023-05-24 10:00 PM PDT -Adastros,2023-05-25T06:44:20Z,- Adastros commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562364979) at 2023-05-24 11:44 PM PDT -Adastros,2023-05-25T07:41:39Z,- Adastros submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1443271892) at 2023-05-25 12:41 AM PDT -Adastros,2023-05-25T07:45:44Z,- Adastros submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1443278608) at 2023-05-25 12:45 AM PDT -Adastros,2023-05-26T06:59:38Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1563898221) at 2023-05-25 11:59 PM PDT -Adastros,2023-05-26T07:11:27Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1563912965) at 2023-05-26 12:11 AM PDT -Adastros,2023-05-27T02:25:03Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1565165859) at 2023-05-26 07:25 PM PDT -Adastros,2023-05-27T04:06:40Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565195706) at 2023-05-26 09:06 PM PDT -Adastros,2023-05-30T01:03:47Z,- Adastros commented on issue: [4662](https://github.com/hackforla/website/issues/4662#issuecomment-1567634442) at 2023-05-29 06:03 PM PDT -Adastros,2023-05-30T01:03:47Z,- Adastros closed issue as completed: [4662](https://github.com/hackforla/website/issues/4662#event-9372684446) at 2023-05-29 06:03 PM PDT -Adastros,2023-05-30T01:17:37Z,- Adastros closed issue by PR 4747: [4399](https://github.com/hackforla/website/issues/4399#event-9372744434) at 2023-05-29 06:17 PM PDT -Adastros,2023-05-31T03:58:20Z,- Adastros commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1569460062) at 2023-05-30 08:58 PM PDT -Adastros,2023-06-01T04:57:07Z,- Adastros submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1454557077) at 2023-05-31 09:57 PM PDT -Adastros,2023-06-06T04:22:42Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1577882380) at 2023-06-05 09:22 PM PDT -Adastros,2023-06-08T06:25:11Z,- Adastros submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1469086516) at 2023-06-07 11:25 PM PDT -Adastros,2023-06-08T06:38:02Z,- Adastros submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1469104569) at 2023-06-07 11:38 PM PDT -Adastros,2023-06-08T07:03:47Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1582000245) at 2023-06-08 12:03 AM PDT -Adastros,2023-06-08T07:06:20Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1582003633) at 2023-06-08 12:06 AM PDT -Adastros,2023-06-09T07:38:47Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1584116605) at 2023-06-09 12:38 AM PDT -Adastros,2023-06-13T08:00:44Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588758037) at 2023-06-13 01:00 AM PDT -Adastros,2023-06-13T08:13:34Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588779300) at 2023-06-13 01:13 AM PDT -Adastros,2023-06-14T06:28:13Z,- Adastros commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1590553134) at 2023-06-13 11:28 PM PDT -Adastros,2023-06-14T06:35:13Z,- Adastros closed issue by PR 4789: [4758](https://github.com/hackforla/website/issues/4758#event-9524167822) at 2023-06-13 11:35 PM PDT -Adastros,2023-06-20T05:02:32Z,- Adastros closed issue by PR 4764: [3985](https://github.com/hackforla/website/issues/3985#event-9574970722) at 2023-06-19 10:02 PM PDT -Adastros,2023-06-20T05:05:17Z,- Adastros commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1598122157) at 2023-06-19 10:05 PM PDT -Adastros,2023-06-20T05:14:48Z,- Adastros commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1598129971) at 2023-06-19 10:14 PM PDT -Adastros,2023-06-27T05:13:35Z,- Adastros closed issue by PR 4882: [4529](https://github.com/hackforla/website/issues/4529#event-9646988550) at 2023-06-26 10:13 PM PDT -Adastros,2023-07-18T06:09:55Z,- Adastros commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1639551543) at 2023-07-17 11:09 PM PDT -Adastros,2023-07-18T06:20:54Z,- Adastros closed issue by PR 4701: [4592](https://github.com/hackforla/website/issues/4592#event-9846077490) at 2023-07-17 11:20 PM PDT -Adastros,2023-07-18T06:27:35Z,- Adastros assigned to issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1629899672) at 2023-07-17 11:27 PM PDT -Adastros,2023-07-18T06:28:54Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1639582479) at 2023-07-17 11:28 PM PDT -Adastros,2023-07-19T04:41:44Z,- Adastros commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1641401166) at 2023-07-18 09:41 PM PDT -Adastros,2023-07-19T04:41:48Z,- Adastros reopened issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1641401166) at 2023-07-18 09:41 PM PDT -Adastros,2023-07-21T07:03:06Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1645080163) at 2023-07-21 12:03 AM PDT -Adastros,2023-07-21T07:16:36Z,- Adastros commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1645093533) at 2023-07-21 12:16 AM PDT -Adastros,2023-08-01T05:33:48Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1659595835) at 2023-07-31 10:33 PM PDT -Adastros,2023-08-08T06:29:21Z,- Adastros closed issue by PR 5155: [5057](https://github.com/hackforla/website/issues/5057#event-10031404196) at 2023-08-07 11:29 PM PDT -Adastros,2023-08-15T06:21:47Z,- Adastros opened issue: [5233](https://github.com/hackforla/website/issues/5233) at 2023-08-14 11:21 PM PDT -Adastros,2023-08-15T06:22:00Z,- Adastros assigned to issue: [5233](https://github.com/hackforla/website/issues/5233) at 2023-08-14 11:22 PM PDT -Adastros,2023-08-22T06:06:23Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1687498617) at 2023-08-21 11:06 PM PDT -Adastros,2023-08-22T06:47:26Z,- Adastros opened issue: [5282](https://github.com/hackforla/website/issues/5282) at 2023-08-21 11:47 PM PDT -Adastros,2023-08-22T06:51:45Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1687577786) at 2023-08-21 11:51 PM PDT -Adastros,2023-08-29T05:09:05Z,- Adastros closed issue by PR 5327: [5288](https://github.com/hackforla/website/issues/5288#event-10216322821) at 2023-08-28 10:09 PM PDT -Adastros,2023-08-29T06:23:04Z,- Adastros opened issue: [5333](https://github.com/hackforla/website/issues/5333) at 2023-08-28 11:23 PM PDT -Adastros,2023-08-29T06:25:09Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1696841831) at 2023-08-28 11:25 PM PDT -Adastros,2023-09-06T05:01:31Z,- Adastros submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1612449400) at 2023-09-05 10:01 PM PDT -Adastros,2023-09-07T06:29:43Z,- Adastros commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1709551544) at 2023-09-06 11:29 PM PDT -Adastros,2023-09-07T06:41:42Z,- Adastros submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1614682720) at 2023-09-06 11:41 PM PDT -Adastros,2023-09-07T06:42:22Z,- Adastros closed issue by PR 5401: [5175](https://github.com/hackforla/website/issues/5175#event-10303369559) at 2023-09-06 11:42 PM PDT -Adastros,2023-09-12T04:53:53Z,- Adastros submitted pull request review: [5469](https://github.com/hackforla/website/pull/5469#pullrequestreview-1621244432) at 2023-09-11 09:53 PM PDT -Adastros,2023-09-12T07:32:21Z,- Adastros submitted pull request review: [5298](https://github.com/hackforla/website/pull/5298#pullrequestreview-1621518072) at 2023-09-12 12:32 AM PDT -Adastros,2023-09-12T07:38:45Z,- Adastros commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1715166791) at 2023-09-12 12:38 AM PDT -Adastros,2023-09-19T06:12:57Z,- Adastros closed issue by PR 5553: [5427](https://github.com/hackforla/website/issues/5427#event-10406115403) at 2023-09-18 11:12 PM PDT -Adastros,2023-09-19T06:31:28Z,- Adastros submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1632506786) at 2023-09-18 11:31 PM PDT -Adastros,2023-09-19T06:35:14Z,- Adastros commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1724909178) at 2023-09-18 11:35 PM PDT -Adastros,2023-09-21T04:37:27Z,- Adastros submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1636871528) at 2023-09-20 09:37 PM PDT -Adastros,2023-09-26T04:38:59Z,- Adastros submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1643328065) at 2023-09-25 09:38 PM PDT -Adastros,2023-09-26T04:39:21Z,- Adastros closed issue by PR 5546: [5324](https://github.com/hackforla/website/issues/5324#event-10469846810) at 2023-09-25 09:39 PM PDT -Adastros,2023-09-26T07:14:38Z,- Adastros submitted pull request review: [5298](https://github.com/hackforla/website/pull/5298#pullrequestreview-1643512834) at 2023-09-26 12:14 AM PDT -Adastros,2023-09-26T07:16:58Z,- Adastros closed issue by PR 5298: [4903](https://github.com/hackforla/website/issues/4903#event-10470990546) at 2023-09-26 12:16 AM PDT -Adastros,2023-10-03T05:27:34Z,- Adastros commented on issue: [4912](https://github.com/hackforla/website/issues/4912#issuecomment-1744236013) at 2023-10-02 10:27 PM PDT -Adastros,2023-10-03T05:27:34Z,- Adastros closed issue as completed: [4912](https://github.com/hackforla/website/issues/4912#event-10533332045) at 2023-10-02 10:27 PM PDT -Adastros,2023-10-03T05:28:57Z,- Adastros commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1744237098) at 2023-10-02 10:28 PM PDT -Adastros,2023-10-03T05:28:57Z,- Adastros closed issue as completed: [4769](https://github.com/hackforla/website/issues/4769#event-10533340983) at 2023-10-02 10:28 PM PDT -Adastros,2023-10-10T06:58:22Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1754536411) at 2023-10-09 11:58 PM PDT -Adastros,2023-10-17T05:50:31Z,- Adastros opened issue: [5730](https://github.com/hackforla/website/issues/5730) at 2023-10-16 10:50 PM PDT -Adastros,2023-10-17T06:52:02Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1765778095) at 2023-10-16 11:52 PM PDT -Adastros,2023-10-24T06:43:47Z,- Adastros opened issue: [5770](https://github.com/hackforla/website/issues/5770) at 2023-10-23 11:43 PM PDT -Adastros,2023-10-24T06:44:56Z,- Adastros commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1776621003) at 2023-10-23 11:44 PM PDT -Adastros,2023-10-31T06:00:19Z,- Adastros closed issue by PR 5793: [5754](https://github.com/hackforla/website/issues/5754#event-10816023774) at 2023-10-30 11:00 PM PDT -Adastros,2023-11-07T07:01:25Z,- Adastros submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1716953939) at 2023-11-06 11:01 PM PST -Adastros,2023-11-08T05:24:59Z,- Adastros submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1719388697) at 2023-11-07 09:24 PM PST -Adastros,2023-11-08T05:25:13Z,- Adastros closed issue by PR 5858: [5790](https://github.com/hackforla/website/issues/5790#event-10895747363) at 2023-11-07 09:25 PM PST -Adastros,2023-11-22T06:55:51Z,- Adastros commented on issue: [5333](https://github.com/hackforla/website/issues/5333#issuecomment-1822210449) at 2023-11-21 10:55 PM PST -Adastros,2024-01-12T06:08:59Z,- Adastros unassigned from issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1776621003) at 2024-01-11 10:08 PM PST -Adastros,2024-06-18T01:57:53Z,- Adastros unassigned from issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174767374) at 2024-06-17 06:57 PM PDT -adrianang,4718,SKILLS ISSUE -adrianang,2023-05-24T03:14:14Z,- adrianang opened issue: [4718](https://github.com/hackforla/website/issues/4718) at 2023-05-23 08:14 PM PDT -adrianang,2023-05-24T03:14:15Z,- adrianang assigned to issue: [4718](https://github.com/hackforla/website/issues/4718) at 2023-05-23 08:14 PM PDT -adrianang,2023-06-19T01:32:53Z,- adrianang assigned to issue: [4841](https://github.com/hackforla/website/issues/4841) at 2023-06-18 06:32 PM PDT -adrianang,2023-06-19T01:39:52Z,- adrianang unassigned from issue: [4841](https://github.com/hackforla/website/issues/4841#issuecomment-1596357347) at 2023-06-18 06:39 PM PDT -adrianang,2023-06-19T01:46:34Z,- adrianang assigned to issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1586221219) at 2023-06-18 06:46 PM PDT -adrianang,2023-06-19T15:56:22Z,- adrianang commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1597423288) at 2023-06-19 08:56 AM PDT -adrianang,2023-06-19T16:00:54Z,- adrianang commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1597430022) at 2023-06-19 09:00 AM PDT -adrianang,2023-06-23T08:51:38Z,- adrianang commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1603951213) at 2023-06-23 01:51 AM PDT -adrianang,2023-06-23T18:17:51Z,- adrianang assigned to issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1594228537) at 2023-06-23 11:17 AM PDT -adrianang,2023-06-23T19:11:10Z,- adrianang commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1604753427) at 2023-06-23 12:11 PM PDT -adrianang,2023-06-26T05:41:36Z,- adrianang opened pull request: [4882](https://github.com/hackforla/website/pull/4882) at 2023-06-25 10:41 PM PDT -adrianang,2023-06-27T05:13:33Z,- adrianang pull request merged: [4882](https://github.com/hackforla/website/pull/4882#event-9646988394) at 2023-06-26 10:13 PM PDT -adrianang,2023-06-27T05:47:41Z,- adrianang assigned to issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1586250052) at 2023-06-26 10:47 PM PDT -adrianang,2023-06-27T08:23:54Z,- adrianang commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1609029424) at 2023-06-27 01:23 AM PDT -adrianang,2023-06-28T08:03:58Z,- adrianang commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1610955087) at 2023-06-28 01:03 AM PDT -adrianang,2023-06-30T08:08:39Z,- adrianang submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1506721997) at 2023-06-30 01:08 AM PDT -adrianang,2023-07-02T09:13:44Z,- adrianang commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1616504956) at 2023-07-02 02:13 AM PDT -adrianang,2023-07-05T00:11:51Z,- adrianang opened pull request: [4911](https://github.com/hackforla/website/pull/4911) at 2023-07-04 05:11 PM PDT -adrianang,2023-07-05T01:44:35Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1513542749) at 2023-07-04 06:44 PM PDT -adrianang,2023-07-05T05:33:25Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1513688283) at 2023-07-04 10:33 PM PDT -adrianang,2023-07-05T19:55:53Z,- adrianang pull request merged: [4911](https://github.com/hackforla/website/pull/4911#event-9735853515) at 2023-07-05 12:55 PM PDT -adrianang,2023-07-07T07:50:04Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1518207502) at 2023-07-07 12:50 AM PDT -adrianang,2023-07-07T08:14:07Z,- adrianang commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1624992650) at 2023-07-07 01:14 AM PDT -adrianang,2023-07-07T08:48:17Z,- adrianang assigned to issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1517320880) at 2023-07-07 01:48 AM PDT -adrianang,2023-07-07T09:44:28Z,- adrianang commented on issue: [4507](https://github.com/hackforla/website/issues/4507#issuecomment-1625148299) at 2023-07-07 02:44 AM PDT -adrianang,2023-07-08T23:15:21Z,- adrianang commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1627540829) at 2023-07-08 04:15 PM PDT -adrianang,2023-07-09T09:14:48Z,- adrianang opened pull request: [4926](https://github.com/hackforla/website/pull/4926) at 2023-07-09 02:14 AM PDT -adrianang,2023-07-10T07:24:16Z,- adrianang commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1628386893) at 2023-07-10 12:24 AM PDT -adrianang,2023-07-10T08:20:12Z,- adrianang commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1628475438) at 2023-07-10 01:20 AM PDT -adrianang,2023-07-10T08:39:46Z,- adrianang commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1628506366) at 2023-07-10 01:39 AM PDT -adrianang,2023-07-11T04:38:13Z,- adrianang commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1630103314) at 2023-07-10 09:38 PM PDT -adrianang,2023-07-11T04:48:35Z,- adrianang commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1630110611) at 2023-07-10 09:48 PM PDT -adrianang,2023-07-11T07:56:21Z,- adrianang submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1523669818) at 2023-07-11 12:56 AM PDT -adrianang,2023-07-12T06:52:19Z,- adrianang submitted pull request review: [4896](https://github.com/hackforla/website/pull/4896#pullrequestreview-1525639502) at 2023-07-11 11:52 PM PDT -adrianang,2023-07-15T09:11:36Z,- adrianang commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1636716912) at 2023-07-15 02:11 AM PDT -adrianang,2023-07-16T03:06:49Z,- adrianang pull request merged: [4926](https://github.com/hackforla/website/pull/4926#event-9830276834) at 2023-07-15 08:06 PM PDT -adrianang,2023-07-16T09:09:05Z,- adrianang submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1531707387) at 2023-07-16 02:09 AM PDT -adrianang,2023-07-16T11:09:13Z,- adrianang assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1554142329) at 2023-07-16 04:09 AM PDT -adrianang,2023-07-16T11:12:19Z,- adrianang commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1637055358) at 2023-07-16 04:12 AM PDT -adrianang,2023-07-17T06:42:33Z,- adrianang commented on pull request: [4950](https://github.com/hackforla/website/pull/4950#issuecomment-1637465475) at 2023-07-16 11:42 PM PDT -adrianang,2023-07-17T18:35:30Z,- adrianang submitted pull request review: [4925](https://github.com/hackforla/website/pull/4925#pullrequestreview-1533439791) at 2023-07-17 11:35 AM PDT -adrianang,2023-07-20T10:21:47Z,- adrianang submitted pull request review: [4950](https://github.com/hackforla/website/pull/4950#pullrequestreview-1538938476) at 2023-07-20 03:21 AM PDT -adrianang,2023-07-20T10:42:24Z,- adrianang closed issue by PR 4950: [3732](https://github.com/hackforla/website/issues/3732#event-9872854848) at 2023-07-20 03:42 AM PDT -adrianang,2023-07-22T10:36:46Z,- adrianang submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1542079769) at 2023-07-22 03:36 AM PDT -adrianang,2023-07-22T10:37:19Z,- adrianang closed issue by PR 5006: [4954](https://github.com/hackforla/website/issues/4954#event-9890911332) at 2023-07-22 03:37 AM PDT -adrianang,2023-07-22T11:11:43Z,- adrianang commented on pull request: [5043](https://github.com/hackforla/website/pull/5043#issuecomment-1646559597) at 2023-07-22 04:11 AM PDT -adrianang,2023-07-22T11:30:32Z,- adrianang submitted pull request review: [5043](https://github.com/hackforla/website/pull/5043#pullrequestreview-1542084036) at 2023-07-22 04:30 AM PDT -adrianang,2023-07-22T11:38:20Z,- adrianang commented on pull request: [5044](https://github.com/hackforla/website/pull/5044#issuecomment-1646563617) at 2023-07-22 04:38 AM PDT -adrianang,2023-07-22T11:57:48Z,- adrianang commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:57 AM PDT -adrianang,2023-07-22T12:05:41Z,- adrianang commented on pull request: [5046](https://github.com/hackforla/website/pull/5046#issuecomment-1646568104) at 2023-07-22 05:05 AM PDT -adrianang,2023-07-22T12:18:49Z,- adrianang commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646570722) at 2023-07-22 05:18 AM PDT -adrianang,2023-07-22T19:42:37Z,- adrianang commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646657935) at 2023-07-22 12:42 PM PDT -adrianang,2023-07-23T17:10:56Z,- adrianang commented on pull request: [5050](https://github.com/hackforla/website/pull/5050#issuecomment-1646894135) at 2023-07-23 10:10 AM PDT -adrianang,2023-07-26T01:39:07Z,- adrianang commented on pull request: [5051](https://github.com/hackforla/website/pull/5051#issuecomment-1650835444) at 2023-07-25 06:39 PM PDT -adrianang,2023-07-27T03:19:25Z,- adrianang submitted pull request review: [5043](https://github.com/hackforla/website/pull/5043#pullrequestreview-1548934839) at 2023-07-26 08:19 PM PDT -adrianang,2023-07-27T03:21:49Z,- adrianang closed issue by PR 5043: [5027](https://github.com/hackforla/website/issues/5027#event-9930866277) at 2023-07-26 08:21 PM PDT -adrianang,2023-07-27T04:55:13Z,- adrianang submitted pull request review: [5051](https://github.com/hackforla/website/pull/5051#pullrequestreview-1548998641) at 2023-07-26 09:55 PM PDT -adrianang,2023-07-27T11:00:54Z,- adrianang commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1653389377) at 2023-07-27 04:00 AM PDT -adrianang,2023-07-28T11:25:08Z,- adrianang commented on issue: [4718](https://github.com/hackforla/website/issues/4718#issuecomment-1655522780) at 2023-07-28 04:25 AM PDT -adrianang,2023-07-28T11:27:05Z,- adrianang commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1655524921) at 2023-07-28 04:27 AM PDT -adrianang,2023-07-28T11:55:22Z,- adrianang submitted pull request review: [5049](https://github.com/hackforla/website/pull/5049#pullrequestreview-1551981675) at 2023-07-28 04:55 AM PDT -adrianang,2023-07-28T11:55:41Z,- adrianang closed issue by PR 5049: [4415](https://github.com/hackforla/website/issues/4415#event-9947301425) at 2023-07-28 04:55 AM PDT -adrianang,2023-07-28T12:04:40Z,- adrianang submitted pull request review: [5056](https://github.com/hackforla/website/pull/5056#pullrequestreview-1551993112) at 2023-07-28 05:04 AM PDT -adrianang,2023-07-28T12:05:53Z,- adrianang closed issue by PR 5056: [4939](https://github.com/hackforla/website/issues/4939#event-9947377316) at 2023-07-28 05:05 AM PDT -adrianang,2023-07-28T12:20:45Z,- adrianang commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1655591755) at 2023-07-28 05:20 AM PDT -adrianang,2023-07-29T05:21:44Z,- adrianang submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1553206639) at 2023-07-28 10:21 PM PDT -adrianang,2023-07-29T06:04:23Z,- adrianang submitted pull request review: [5061](https://github.com/hackforla/website/pull/5061#pullrequestreview-1553214803) at 2023-07-28 11:04 PM PDT -adrianang,2023-07-29T06:04:58Z,- adrianang closed issue by PR 5061: [4809](https://github.com/hackforla/website/issues/4809#event-9953848402) at 2023-07-28 11:04 PM PDT -adrianang,2023-07-29T10:42:40Z,- adrianang submitted pull request review: [5063](https://github.com/hackforla/website/pull/5063#pullrequestreview-1553264162) at 2023-07-29 03:42 AM PDT -adrianang,2023-07-29T10:43:11Z,- adrianang closed issue by PR 5063: [4813](https://github.com/hackforla/website/issues/4813#event-9954270812) at 2023-07-29 03:43 AM PDT -adrianang,2023-07-29T11:01:00Z,- adrianang submitted pull request review: [5093](https://github.com/hackforla/website/pull/5093#pullrequestreview-1553265458) at 2023-07-29 04:01 AM PDT -adrianang,2023-07-29T11:01:12Z,- adrianang closed issue by PR 5093: [4798](https://github.com/hackforla/website/issues/4798#event-9954289132) at 2023-07-29 04:01 AM PDT -adrianang,2023-07-29T11:12:40Z,- adrianang submitted pull request review: [5097](https://github.com/hackforla/website/pull/5097#pullrequestreview-1553266367) at 2023-07-29 04:12 AM PDT -adrianang,2023-07-29T11:12:59Z,- adrianang closed issue by PR 5097: [4802](https://github.com/hackforla/website/issues/4802#event-9954302255) at 2023-07-29 04:12 AM PDT -adrianang,2023-07-29T11:30:19Z,- adrianang commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1656709785) at 2023-07-29 04:30 AM PDT -adrianang,2023-07-29T11:39:47Z,- adrianang submitted pull request review: [5107](https://github.com/hackforla/website/pull/5107#pullrequestreview-1553268590) at 2023-07-29 04:39 AM PDT -adrianang,2023-07-30T02:21:33Z,- adrianang submitted pull request review: [5051](https://github.com/hackforla/website/pull/5051#pullrequestreview-1553537594) at 2023-07-29 07:21 PM PDT -adrianang,2023-07-30T02:41:28Z,- adrianang submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1553538512) at 2023-07-29 07:41 PM PDT -adrianang,2023-07-30T02:43:09Z,- adrianang closed issue by PR 5058: [5038](https://github.com/hackforla/website/issues/5038#event-9955919021) at 2023-07-29 07:43 PM PDT -adrianang,2023-07-30T03:04:20Z,- adrianang commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657003717) at 2023-07-29 08:04 PM PDT -adrianang,2023-07-30T04:32:56Z,- adrianang commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1657040122) at 2023-07-29 09:32 PM PDT -adrianang,2023-07-30T05:10:46Z,- adrianang submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1553578780) at 2023-07-29 10:10 PM PDT -adrianang,2023-07-31T00:21:26Z,- adrianang submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1553738935) at 2023-07-30 05:21 PM PDT -adrianang,2023-07-31T00:22:41Z,- adrianang closed issue by PR 5095: [4917](https://github.com/hackforla/website/issues/4917#event-9957754663) at 2023-07-30 05:22 PM PDT -adrianang,2023-07-31T02:49:02Z,- adrianang submitted pull request review: [5037](https://github.com/hackforla/website/pull/5037#pullrequestreview-1553850783) at 2023-07-30 07:49 PM PDT -adrianang,2023-07-31T03:04:51Z,- adrianang commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1657430221) at 2023-07-30 08:04 PM PDT -adrianang,2023-08-02T10:05:29Z,- adrianang commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1661926213) at 2023-08-02 03:05 AM PDT -adrianang,2023-08-02T10:20:22Z,- adrianang commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1661947666) at 2023-08-02 03:20 AM PDT -adrianang,2023-08-05T06:42:59Z,- adrianang submitted pull request review: [5112](https://github.com/hackforla/website/pull/5112#pullrequestreview-1563794463) at 2023-08-04 11:42 PM PDT -adrianang,2023-08-05T06:44:26Z,- adrianang closed issue by PR 5112: [5003](https://github.com/hackforla/website/issues/5003#event-10014600284) at 2023-08-04 11:44 PM PDT -adrianang,2023-08-05T21:47:12Z,- adrianang submitted pull request review: [5122](https://github.com/hackforla/website/pull/5122#pullrequestreview-1564021040) at 2023-08-05 02:47 PM PDT -adrianang,2023-08-05T21:47:22Z,- adrianang closed issue by PR 5122: [4804](https://github.com/hackforla/website/issues/4804#event-10016137352) at 2023-08-05 02:47 PM PDT -adrianang,2023-08-05T22:21:06Z,- adrianang submitted pull request review: [5128](https://github.com/hackforla/website/pull/5128#pullrequestreview-1564024479) at 2023-08-05 03:21 PM PDT -adrianang,2023-08-05T22:21:18Z,- adrianang closed issue by PR 5128: [4913](https://github.com/hackforla/website/issues/4913#event-10016174398) at 2023-08-05 03:21 PM PDT -adrianang,2023-08-06T01:20:19Z,- adrianang submitted pull request review: [5130](https://github.com/hackforla/website/pull/5130#pullrequestreview-1564042398) at 2023-08-05 06:20 PM PDT -adrianang,2023-08-06T01:21:11Z,- adrianang submitted pull request review: [5130](https://github.com/hackforla/website/pull/5130#pullrequestreview-1564042457) at 2023-08-05 06:21 PM PDT -adrianang,2023-08-06T01:21:37Z,- adrianang closed issue by PR 5130: [4299](https://github.com/hackforla/website/issues/4299#event-10016360927) at 2023-08-05 06:21 PM PDT -adrianang,2023-08-06T01:37:14Z,- adrianang submitted pull request review: [5133](https://github.com/hackforla/website/pull/5133#pullrequestreview-1564043992) at 2023-08-05 06:37 PM PDT -adrianang,2023-08-06T01:37:27Z,- adrianang closed issue by PR 5133: [4805](https://github.com/hackforla/website/issues/4805#event-10016377452) at 2023-08-05 06:37 PM PDT -adrianang,2023-08-06T01:49:52Z,- adrianang submitted pull request review: [5142](https://github.com/hackforla/website/pull/5142#pullrequestreview-1564044877) at 2023-08-05 06:49 PM PDT -adrianang,2023-08-06T01:50:05Z,- adrianang closed issue by PR 5142: [5139](https://github.com/hackforla/website/issues/5139#event-10016391340) at 2023-08-05 06:50 PM PDT -adrianang,2023-08-06T02:27:04Z,- adrianang submitted pull request review: [5144](https://github.com/hackforla/website/pull/5144#pullrequestreview-1564048152) at 2023-08-05 07:27 PM PDT -adrianang,2023-08-06T02:36:32Z,- adrianang submitted pull request review: [5145](https://github.com/hackforla/website/pull/5145#pullrequestreview-1564049049) at 2023-08-05 07:36 PM PDT -adrianang,2023-08-06T02:36:54Z,- adrianang closed issue by PR 5145: [5138](https://github.com/hackforla/website/issues/5138#event-10016436832) at 2023-08-05 07:36 PM PDT -adrianang,2023-08-06T02:58:20Z,- adrianang submitted pull request review: [5123](https://github.com/hackforla/website/pull/5123#pullrequestreview-1564051900) at 2023-08-05 07:58 PM PDT -adrianang,2023-08-06T03:38:05Z,- adrianang commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1666698231) at 2023-08-05 08:38 PM PDT -adrianang,2023-08-06T11:38:55Z,- adrianang closed issue by PR 5144: [4808](https://github.com/hackforla/website/issues/4808#event-10017148705) at 2023-08-06 04:38 AM PDT -adrianang,2023-08-09T07:52:26Z,- adrianang submitted pull request review: [5123](https://github.com/hackforla/website/pull/5123#pullrequestreview-1568960214) at 2023-08-09 12:52 AM PDT -adrianang,2023-08-09T07:52:48Z,- adrianang closed issue by PR 5123: [4801](https://github.com/hackforla/website/issues/4801#event-10043593072) at 2023-08-09 12:52 AM PDT -adrianang,2023-08-09T08:02:38Z,- adrianang submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1568978189) at 2023-08-09 01:02 AM PDT -adrianang,2023-08-10T09:41:48Z,- adrianang submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1571476989) at 2023-08-10 02:41 AM PDT -adrianang,2023-08-10T09:43:18Z,- adrianang closed issue by PR 5055: [4504](https://github.com/hackforla/website/issues/4504#event-10057111736) at 2023-08-10 02:43 AM PDT -adrianang,2023-08-19T23:04:06Z,- adrianang commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1685127905) at 2023-08-19 04:04 PM PDT -adrianang,2023-08-19T23:04:31Z,- adrianang closed issue by PR 5235: [5031](https://github.com/hackforla/website/issues/5031#event-10137159611) at 2023-08-19 04:04 PM PDT -adrianang,2023-08-19T23:48:24Z,- adrianang submitted pull request review: [5240](https://github.com/hackforla/website/pull/5240#pullrequestreview-1585767407) at 2023-08-19 04:48 PM PDT -adrianang,2023-08-19T23:48:37Z,- adrianang closed issue by PR 5240: [5201](https://github.com/hackforla/website/issues/5201#event-10137191549) at 2023-08-19 04:48 PM PDT -adrianang,2023-08-19T23:58:22Z,- adrianang submitted pull request review: [5241](https://github.com/hackforla/website/pull/5241#pullrequestreview-1585767842) at 2023-08-19 04:58 PM PDT -adrianang,2023-08-19T23:59:03Z,- adrianang closed issue by PR 5241: [5197](https://github.com/hackforla/website/issues/5197#event-10137198073) at 2023-08-19 04:59 PM PDT -adrianang,2023-08-20T00:06:49Z,- adrianang submitted pull request review: [5243](https://github.com/hackforla/website/pull/5243#pullrequestreview-1585768359) at 2023-08-19 05:06 PM PDT -adrianang,2023-08-20T00:07:02Z,- adrianang closed issue by PR 5243: [5147](https://github.com/hackforla/website/issues/5147#event-10137207260) at 2023-08-19 05:07 PM PDT -adrianang,2023-08-20T02:33:27Z,- adrianang submitted pull request review: [5245](https://github.com/hackforla/website/pull/5245#pullrequestreview-1585775354) at 2023-08-19 07:33 PM PDT -adrianang,2023-08-20T02:58:33Z,- adrianang submitted pull request review: [5247](https://github.com/hackforla/website/pull/5247#pullrequestreview-1585776358) at 2023-08-19 07:58 PM PDT -adrianang,2023-08-20T02:58:54Z,- adrianang closed issue by PR 5247: [5150](https://github.com/hackforla/website/issues/5150#event-10137355023) at 2023-08-19 07:58 PM PDT -adrianang,2023-08-20T03:23:43Z,- adrianang submitted pull request review: [5250](https://github.com/hackforla/website/pull/5250#pullrequestreview-1585777471) at 2023-08-19 08:23 PM PDT -adrianang,2023-08-22T04:18:59Z,- adrianang submitted pull request review: [5245](https://github.com/hackforla/website/pull/5245#pullrequestreview-1588245099) at 2023-08-21 09:18 PM PDT -adrianang,2023-08-22T04:19:07Z,- adrianang closed issue by PR 5245: [5186](https://github.com/hackforla/website/issues/5186#event-10152774426) at 2023-08-21 09:19 PM PDT -adrianang,2023-08-27T02:17:28Z,- adrianang submitted pull request review: [5263](https://github.com/hackforla/website/pull/5263#pullrequestreview-1597063686) at 2023-08-26 07:17 PM PDT -adrianang,2023-08-27T02:18:04Z,- adrianang closed issue by PR 5263: [5184](https://github.com/hackforla/website/issues/5184#event-10201003687) at 2023-08-26 07:18 PM PDT -adrianang,2023-08-27T02:29:19Z,- adrianang submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1597064296) at 2023-08-26 07:29 PM PDT -adrianang,2023-08-27T02:29:52Z,- adrianang closed issue by PR 5276: [5267](https://github.com/hackforla/website/issues/5267#event-10201014294) at 2023-08-26 07:29 PM PDT -adrianang,2023-08-27T02:40:59Z,- adrianang submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1597064865) at 2023-08-26 07:40 PM PDT -adrianang,2023-08-27T02:41:23Z,- adrianang closed issue by PR 5283: [5199](https://github.com/hackforla/website/issues/5199#event-10201023611) at 2023-08-26 07:41 PM PDT -adrianang,2023-08-27T02:57:42Z,- adrianang submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1597065755) at 2023-08-26 07:57 PM PDT -adrianang,2023-08-27T02:57:53Z,- adrianang closed issue by PR 5284: [5256](https://github.com/hackforla/website/issues/5256#event-10201036442) at 2023-08-26 07:57 PM PDT -adrianang,2023-08-27T03:07:15Z,- adrianang submitted pull request review: [5262](https://github.com/hackforla/website/pull/5262#pullrequestreview-1597066262) at 2023-08-26 08:07 PM PDT -adrianang,2023-08-27T03:08:56Z,- adrianang closed issue by PR 5262: [5185](https://github.com/hackforla/website/issues/5185#event-10201045922) at 2023-08-26 08:08 PM PDT -adrianang,2023-08-27T03:32:45Z,- adrianang submitted pull request review: [5294](https://github.com/hackforla/website/pull/5294#pullrequestreview-1597067585) at 2023-08-26 08:32 PM PDT -adrianang,2023-08-27T03:33:02Z,- adrianang closed issue by PR 5294: [5173](https://github.com/hackforla/website/issues/5173#event-10201065596) at 2023-08-26 08:33 PM PDT -adrianang,2023-08-27T03:47:54Z,- adrianang submitted pull request review: [5295](https://github.com/hackforla/website/pull/5295#pullrequestreview-1597068313) at 2023-08-26 08:47 PM PDT -adrianang,2023-08-27T03:48:16Z,- adrianang closed issue by PR 5295: [5140](https://github.com/hackforla/website/issues/5140#event-10201076178) at 2023-08-26 08:48 PM PDT -adrianang,2023-08-27T03:57:08Z,- adrianang commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1694562699) at 2023-08-26 08:57 PM PDT -adrianang,2023-08-27T11:13:52Z,- adrianang commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1694639204) at 2023-08-27 04:13 AM PDT -adrianang,2023-09-03T00:00:47Z,- adrianang submitted pull request review: [5397](https://github.com/hackforla/website/pull/5397#pullrequestreview-1608393726) at 2023-09-02 05:00 PM PDT -adrianang,2023-09-03T00:00:57Z,- adrianang closed issue by PR 5397: [5369](https://github.com/hackforla/website/issues/5369#event-10265025978) at 2023-09-02 05:00 PM PDT -adrianang,2023-09-03T00:14:33Z,- adrianang submitted pull request review: [5398](https://github.com/hackforla/website/pull/5398#pullrequestreview-1608394787) at 2023-09-02 05:14 PM PDT -adrianang,2023-09-03T00:25:34Z,- adrianang submitted pull request review: [5399](https://github.com/hackforla/website/pull/5399#pullrequestreview-1608395485) at 2023-09-02 05:25 PM PDT -adrianang,2023-09-03T00:26:53Z,- adrianang closed issue by PR 5399: [5153](https://github.com/hackforla/website/issues/5153#event-10265059643) at 2023-09-02 05:26 PM PDT -adrianang,2023-09-03T00:35:51Z,- adrianang commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1703973538) at 2023-09-02 05:35 PM PDT -adrianang,2023-09-04T10:34:42Z,- adrianang submitted pull request review: [5398](https://github.com/hackforla/website/pull/5398#pullrequestreview-1609254118) at 2023-09-04 03:34 AM PDT -adrianang,2023-09-04T10:34:54Z,- adrianang closed issue by PR 5398: [4466](https://github.com/hackforla/website/issues/4466#event-10272381851) at 2023-09-04 03:34 AM PDT -adrianang,2023-10-08T08:50:55Z,- adrianang submitted pull request review: [5643](https://github.com/hackforla/website/pull/5643#pullrequestreview-1663189975) at 2023-10-08 01:50 AM PDT -adrianang,2023-10-08T08:51:10Z,- adrianang closed issue by PR 5643: [5177](https://github.com/hackforla/website/issues/5177#event-10583601265) at 2023-10-08 01:51 AM PDT -adrianang,2023-10-08T09:15:20Z,- adrianang submitted pull request review: [5659](https://github.com/hackforla/website/pull/5659#pullrequestreview-1663193343) at 2023-10-08 02:15 AM PDT -adrianang,2023-10-08T09:15:42Z,- adrianang closed issue by PR 5659: [5631](https://github.com/hackforla/website/issues/5631#event-10583640417) at 2023-10-08 02:15 AM PDT -adrianang,2023-10-08T09:39:48Z,- adrianang submitted pull request review: [5663](https://github.com/hackforla/website/pull/5663#pullrequestreview-1663198975) at 2023-10-08 02:39 AM PDT -adrianang,2023-10-08T09:41:18Z,- adrianang closed issue by PR 5663: [5628](https://github.com/hackforla/website/issues/5628#event-10583687044) at 2023-10-08 02:41 AM PDT -adrianang,2023-10-08T10:04:56Z,- adrianang submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1663202578) at 2023-10-08 03:04 AM PDT -adrianang,2023-10-08T10:05:11Z,- adrianang closed issue by PR 5664: [5319](https://github.com/hackforla/website/issues/5319#event-10583722928) at 2023-10-08 03:05 AM PDT -adrianang,2023-10-08T10:23:21Z,- adrianang submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1663205403) at 2023-10-08 03:23 AM PDT -adrianang,2023-10-08T10:36:17Z,- adrianang commented on pull request: [5667](https://github.com/hackforla/website/pull/5667#issuecomment-1751993138) at 2023-10-08 03:36 AM PDT -adrianang,2023-10-11T01:35:26Z,- adrianang submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1669593507) at 2023-10-10 06:35 PM PDT -adrianang,2023-10-11T01:35:35Z,- adrianang closed issue by PR 5658: [5588](https://github.com/hackforla/website/issues/5588#event-10611988566) at 2023-10-10 06:35 PM PDT -adrianang,2023-10-22T11:07:37Z,- adrianang commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-1774063999) at 2023-10-22 04:07 AM PDT -adrianang,2023-10-22T11:07:37Z,- adrianang closed issue as completed: [5747](https://github.com/hackforla/website/issues/5747#event-10733078149) at 2023-10-22 04:07 AM PDT -adrianang,2023-10-22T11:08:50Z,- adrianang reopened issue: [5747](https://github.com/hackforla/website/issues/5747#event-10733078149) at 2023-10-22 04:08 AM PDT -adrianang,2023-10-22T11:10:05Z,- adrianang commented on pull request: [5748](https://github.com/hackforla/website/pull/5748#issuecomment-1774064441) at 2023-10-22 04:10 AM PDT -adrianang,2023-10-22T11:11:40Z,- adrianang commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-1774064796) at 2023-10-22 04:11 AM PDT -adrianang,2023-10-22T11:11:40Z,- adrianang closed issue as not planned: [5747](https://github.com/hackforla/website/issues/5747#event-10733084482) at 2023-10-22 04:11 AM PDT -adrianang,2023-11-03T09:02:10Z,- adrianang opened pull request: [5834](https://github.com/hackforla/website/pull/5834) at 2023-11-03 02:02 AM PDT -adrianang,2023-11-05T11:32:42Z,- adrianang commented on pull request: [5834](https://github.com/hackforla/website/pull/5834#issuecomment-1793710886) at 2023-11-05 03:32 AM PST -adrianang,2023-11-08T21:43:12Z,- adrianang pull request merged: [5834](https://github.com/hackforla/website/pull/5834#event-10906130262) at 2023-11-08 01:43 PM PST -aguilar-victor,8007,SKILLS ISSUE -aguilar-victor,2025-03-19T03:43:18Z,- aguilar-victor opened issue: [8007](https://github.com/hackforla/website/issues/8007) at 2025-03-18 08:43 PM PDT -aguilar-victor,2025-03-19T03:43:19Z,- aguilar-victor assigned to issue: [8007](https://github.com/hackforla/website/issues/8007) at 2025-03-18 08:43 PM PDT -agutiernc,4984,SKILLS ISSUE -agutiernc,2023-07-18T01:58:24Z,- agutiernc opened issue: [4984](https://github.com/hackforla/website/issues/4984) at 2023-07-17 06:58 PM PDT -agutiernc,2023-07-18T02:29:04Z,- agutiernc assigned to issue: [4984](https://github.com/hackforla/website/issues/4984) at 2023-07-17 07:29 PM PDT -agutiernc,2023-08-03T23:22:32Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1664755529) at 2023-08-03 04:22 PM PDT -agutiernc,2023-08-04T19:46:32Z,- agutiernc assigned to issue: [5137](https://github.com/hackforla/website/issues/5137) at 2023-08-04 12:46 PM PDT -agutiernc,2023-08-08T01:05:44Z,- agutiernc opened pull request: [5161](https://github.com/hackforla/website/pull/5161) at 2023-08-07 06:05 PM PDT -agutiernc,2023-08-08T21:36:11Z,- agutiernc commented on pull request: [5161](https://github.com/hackforla/website/pull/5161#issuecomment-1670341054) at 2023-08-08 02:36 PM PDT -agutiernc,2023-08-09T03:33:53Z,- agutiernc pull request merged: [5161](https://github.com/hackforla/website/pull/5161#event-10041971345) at 2023-08-08 08:33 PM PDT -agutiernc,2023-08-13T21:52:54Z,- agutiernc assigned to issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1676457241) at 2023-08-13 02:52 PM PDT -agutiernc,2023-08-14T23:00:30Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1678197362) at 2023-08-14 04:00 PM PDT -agutiernc,2023-08-14T23:49:23Z,- agutiernc commented on issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1678238961) at 2023-08-14 04:49 PM PDT -agutiernc,2023-08-15T00:48:07Z,- agutiernc opened pull request: [5203](https://github.com/hackforla/website/pull/5203) at 2023-08-14 05:48 PM PDT -agutiernc,2023-08-17T19:50:20Z,- agutiernc pull request merged: [5203](https://github.com/hackforla/website/pull/5203#event-10123356903) at 2023-08-17 12:50 PM PDT -agutiernc,2023-08-23T21:22:04Z,- agutiernc commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1690658292) at 2023-08-23 02:22 PM PDT -agutiernc,2023-08-24T05:55:09Z,- agutiernc submitted pull request review: [5262](https://github.com/hackforla/website/pull/5262#pullrequestreview-1592827347) at 2023-08-23 10:55 PM PDT -agutiernc,2023-09-03T02:27:57Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1703990075) at 2023-09-02 07:27 PM PDT -agutiernc,2023-09-05T02:09:24Z,- agutiernc commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1705847412) at 2023-09-04 07:09 PM PDT -agutiernc,2023-09-05T20:25:18Z,- agutiernc assigned to issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1707202389) at 2023-09-05 01:25 PM PDT -agutiernc,2023-09-05T20:29:59Z,- agutiernc commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1707269145) at 2023-09-05 01:29 PM PDT -agutiernc,2023-09-05T22:19:56Z,- agutiernc submitted pull request review: [5423](https://github.com/hackforla/website/pull/5423#pullrequestreview-1612029387) at 2023-09-05 03:19 PM PDT -agutiernc,2023-09-05T22:30:48Z,- agutiernc commented on pull request: [5449](https://github.com/hackforla/website/pull/5449#issuecomment-1707397297) at 2023-09-05 03:30 PM PDT -agutiernc,2023-09-05T23:04:01Z,- agutiernc submitted pull request review: [5449](https://github.com/hackforla/website/pull/5449#pullrequestreview-1612061073) at 2023-09-05 04:04 PM PDT -agutiernc,2023-09-07T04:52:10Z,- agutiernc opened pull request: [5454](https://github.com/hackforla/website/pull/5454) at 2023-09-06 09:52 PM PDT -agutiernc,2023-09-09T23:37:33Z,- agutiernc commented on pull request: [5465](https://github.com/hackforla/website/pull/5465#issuecomment-1712662540) at 2023-09-09 04:37 PM PDT -agutiernc,2023-09-10T04:07:31Z,- agutiernc pull request merged: [5454](https://github.com/hackforla/website/pull/5454#event-10325447782) at 2023-09-09 09:07 PM PDT -agutiernc,2023-09-10T04:58:55Z,- agutiernc submitted pull request review: [5465](https://github.com/hackforla/website/pull/5465#pullrequestreview-1618728952) at 2023-09-09 09:58 PM PDT -agutiernc,2023-09-16T00:54:42Z,- agutiernc commented on pull request: [5523](https://github.com/hackforla/website/pull/5523#issuecomment-1722086030) at 2023-09-15 05:54 PM PDT -agutiernc,2023-09-16T03:36:32Z,- agutiernc submitted pull request review: [5523](https://github.com/hackforla/website/pull/5523#pullrequestreview-1629895504) at 2023-09-15 08:36 PM PDT -agutiernc,2023-09-20T05:00:08Z,- agutiernc commented on issue: [4984](https://github.com/hackforla/website/issues/4984#issuecomment-1726972041) at 2023-09-19 10:00 PM PDT -agutiernc,2023-09-20T05:00:08Z,- agutiernc closed issue as completed: [4984](https://github.com/hackforla/website/issues/4984#event-10417881185) at 2023-09-19 10:00 PM PDT -agutiernc,2023-09-22T01:48:00Z,- agutiernc commented on pull request: [5568](https://github.com/hackforla/website/pull/5568#issuecomment-1730675110) at 2023-09-21 06:48 PM PDT -agutiernc,2023-09-23T23:42:45Z,- agutiernc submitted pull request review: [5568](https://github.com/hackforla/website/pull/5568#pullrequestreview-1640957102) at 2023-09-23 04:42 PM PDT -agutiernc,2023-10-02T23:21:23Z,- agutiernc commented on pull request: [5645](https://github.com/hackforla/website/pull/5645#issuecomment-1743908053) at 2023-10-02 04:21 PM PDT -agutiernc,2023-10-03T06:51:53Z,- agutiernc assigned to issue: [5629](https://github.com/hackforla/website/issues/5629#issuecomment-1740163998) at 2023-10-02 11:51 PM PDT -agutiernc,2023-10-03T06:53:24Z,- agutiernc commented on issue: [5629](https://github.com/hackforla/website/issues/5629#issuecomment-1744316021) at 2023-10-02 11:53 PM PDT -agutiernc,2023-10-04T02:31:14Z,- agutiernc submitted pull request review: [5645](https://github.com/hackforla/website/pull/5645#pullrequestreview-1656553151) at 2023-10-03 07:31 PM PDT -agutiernc,2023-10-06T22:58:30Z,- agutiernc opened pull request: [5668](https://github.com/hackforla/website/pull/5668) at 2023-10-06 03:58 PM PDT -agutiernc,2023-10-12T01:30:50Z,- agutiernc commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1758775400) at 2023-10-11 06:30 PM PDT -agutiernc,2023-10-14T01:33:27Z,- agutiernc commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1762465345) at 2023-10-13 06:33 PM PDT -agutiernc,2023-10-18T03:45:33Z,- agutiernc pull request merged: [5668](https://github.com/hackforla/website/pull/5668#event-10686704824) at 2023-10-17 08:45 PM PDT -agutiernc,2023-11-03T20:40:19Z,- agutiernc assigned to issue: [5830](https://github.com/hackforla/website/issues/5830#issuecomment-1791925003) at 2023-11-03 01:40 PM PDT -agutiernc,2023-11-03T20:42:12Z,- agutiernc commented on issue: [5830](https://github.com/hackforla/website/issues/5830#issuecomment-1793070980) at 2023-11-03 01:42 PM PDT -agutiernc,2023-11-06T02:24:52Z,- agutiernc commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1793981847) at 2023-11-05 06:24 PM PST -agutiernc,2023-11-06T03:32:45Z,- agutiernc commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1794032114) at 2023-11-05 07:32 PM PST -agutiernc,2023-11-06T22:41:08Z,- agutiernc submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1716435981) at 2023-11-06 02:41 PM PST -agutiernc,2023-11-12T06:41:16Z,- agutiernc opened pull request: [5892](https://github.com/hackforla/website/pull/5892) at 2023-11-11 10:41 PM PST -agutiernc,2023-11-12T07:28:18Z,- agutiernc commented on pull request: [5892](https://github.com/hackforla/website/pull/5892#issuecomment-1807037402) at 2023-11-11 11:28 PM PST -agutiernc,2023-11-12T07:28:18Z,- agutiernc pull request closed w/o merging: [5892](https://github.com/hackforla/website/pull/5892#event-10933910651) at 2023-11-11 11:28 PM PST -agutiernc,2023-11-14T00:26:22Z,- agutiernc opened pull request: [5900](https://github.com/hackforla/website/pull/5900) at 2023-11-13 04:26 PM PST -agutiernc,2023-11-16T00:06:51Z,- agutiernc commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1813494314) at 2023-11-15 04:06 PM PST -agutiernc,2023-11-16T00:07:57Z,- agutiernc commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1813495279) at 2023-11-15 04:07 PM PST -agutiernc,2023-11-16T00:13:16Z,- agutiernc commented on pull request: [5896](https://github.com/hackforla/website/pull/5896#issuecomment-1813499906) at 2023-11-15 04:13 PM PST -agutiernc,2023-11-18T03:40:37Z,- agutiernc submitted pull request review: [5896](https://github.com/hackforla/website/pull/5896#pullrequestreview-1738188018) at 2023-11-17 07:40 PM PST -agutiernc,2023-11-29T02:15:08Z,- agutiernc commented on pull request: [5940](https://github.com/hackforla/website/pull/5940#issuecomment-1831094299) at 2023-11-28 06:15 PM PST -agutiernc,2023-11-29T22:28:18Z,- agutiernc commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1832800938) at 2023-11-29 02:28 PM PST -agutiernc,2023-11-30T06:18:35Z,- agutiernc submitted pull request review: [5940](https://github.com/hackforla/website/pull/5940#pullrequestreview-1756715771) at 2023-11-29 10:18 PM PST -agutiernc,2024-01-11T01:24:05Z,- agutiernc opened pull request: [6098](https://github.com/hackforla/website/pull/6098) at 2024-01-10 05:24 PM PST -agutiernc,2024-01-15T20:23:57Z,- agutiernc pull request merged: [6098](https://github.com/hackforla/website/pull/6098#event-11491882225) at 2024-01-15 12:23 PM PST -agutiernc,2024-01-20T21:25:50Z,- agutiernc commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1902268605) at 2024-01-20 01:25 PM PST -agutiernc,2024-01-22T04:15:59Z,- agutiernc submitted pull request review: [6133](https://github.com/hackforla/website/pull/6133#pullrequestreview-1835615951) at 2024-01-21 08:15 PM PST -agutiernc,2024-01-23T03:17:00Z,- agutiernc commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1905222133) at 2024-01-22 07:17 PM PST -agutiernc,2024-01-23T03:21:04Z,- agutiernc submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1837794241) at 2024-01-22 07:21 PM PST -agutiernc,2024-01-25T00:36:18Z,- agutiernc commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1909154150) at 2024-01-24 04:36 PM PST -agutiernc,2024-01-26T01:49:10Z,- agutiernc commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1911281225) at 2024-01-25 05:49 PM PST -agutiernc,2024-01-26T01:54:14Z,- agutiernc submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1844975679) at 2024-01-25 05:54 PM PST -agutiernc,2024-03-10T09:33:16Z,- agutiernc commented on pull request: [6441](https://github.com/hackforla/website/pull/6441#issuecomment-1987159923) at 2024-03-10 02:33 AM PDT -agutiernc,2024-03-12T03:28:35Z,- agutiernc commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1990032576) at 2024-03-11 08:28 PM PDT -agutiernc,2024-03-13T01:43:44Z,- agutiernc commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1993057824) at 2024-03-12 06:43 PM PDT -ahdithebomb,2020-11-29T20:00:05Z,- ahdithebomb assigned to issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-11-29 12:00 PM PST -ahdithebomb,2020-12-06T18:54:17Z,- ahdithebomb opened issue: [831](https://github.com/hackforla/website/issues/831) at 2020-12-06 10:54 AM PST -ahdithebomb,2020-12-06T18:57:42Z,- ahdithebomb unassigned from issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-12-06 10:57 AM PST -ahdithebomb,2020-12-08T21:10:59Z,- ahdithebomb assigned to issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-643688618) at 2020-12-08 01:10 PM PST -ahdithebomb,2020-12-08T21:12:48Z,- ahdithebomb closed issue as completed: [538](https://github.com/hackforla/website/issues/538#event-4086783598) at 2020-12-08 01:12 PM PST -ahdithebomb,2020-12-08T21:12:58Z,- ahdithebomb reopened issue: [538](https://github.com/hackforla/website/issues/538#event-4086783598) at 2020-12-08 01:12 PM PST -ahdithebomb,2020-12-08T21:43:22Z,- ahdithebomb commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-741080714) at 2020-12-08 01:43 PM PST -ahdithebomb,2020-12-08T21:51:26Z,- ahdithebomb assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -ahdithebomb,2020-12-08T21:54:12Z,- ahdithebomb unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -ahdithebomb,2020-12-08T21:55:41Z,- ahdithebomb assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -ahdithebomb,2020-12-08T21:56:50Z,- ahdithebomb commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-741097431) at 2020-12-08 01:56 PM PST -ahdithebomb,2020-12-13T18:13:45Z,- ahdithebomb commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-744046496) at 2020-12-13 10:13 AM PST -ahdithebomb,2020-12-13T18:15:32Z,- ahdithebomb assigned to issue: [747](https://github.com/hackforla/website/issues/747) at 2020-12-13 10:15 AM PST -ahdithebomb,2020-12-13T18:17:12Z,- ahdithebomb commented on issue: [747](https://github.com/hackforla/website/issues/747#issuecomment-744046997) at 2020-12-13 10:17 AM PST -ahdithebomb,2020-12-13T18:17:39Z,- ahdithebomb commented on issue: [747](https://github.com/hackforla/website/issues/747#issuecomment-744047060) at 2020-12-13 10:17 AM PST -ahdithebomb,2020-12-15T21:04:45Z,- ahdithebomb commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-745566450) at 2020-12-15 01:04 PM PST -ahdithebomb,2020-12-15T21:09:50Z,- ahdithebomb commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-745569057) at 2020-12-15 01:09 PM PST -ahdithebomb,2020-12-15T21:21:59Z,- ahdithebomb assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:21 PM PST -ahdithebomb,2020-12-15T21:29:05Z,- ahdithebomb commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-745579069) at 2020-12-15 01:29 PM PST -ahdithebomb,2020-12-15T21:41:27Z,- ahdithebomb commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745585299) at 2020-12-15 01:41 PM PST -ahdithebomb,2020-12-16T03:25:19Z,- ahdithebomb opened pull request: [850](https://github.com/hackforla/website/pull/850) at 2020-12-15 07:25 PM PST -ahdithebomb,2020-12-16T03:26:52Z,- ahdithebomb pull request merged: [850](https://github.com/hackforla/website/pull/850#event-4117650708) at 2020-12-15 07:26 PM PST -ahdithebomb,2020-12-20T18:36:35Z,- ahdithebomb commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2020-12-20 10:36 AM PST -ahdithebomb,2020-12-20T18:37:54Z,- ahdithebomb commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-748644518) at 2020-12-20 10:37 AM PST -ahdithebomb,2020-12-20T19:48:46Z,- ahdithebomb commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-748652644) at 2020-12-20 11:48 AM PST -ahdithebomb,2020-12-20T19:50:48Z,- ahdithebomb commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-748652850) at 2020-12-20 11:50 AM PST -ahdithebomb,2020-12-20T20:08:55Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748664731) at 2020-12-20 12:08 PM PST -ahdithebomb,2020-12-20T20:15:56Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748665437) at 2020-12-20 12:15 PM PST -ahdithebomb,2020-12-20T20:39:32Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748667928) at 2020-12-20 12:39 PM PST -ahdithebomb,2020-12-20T20:46:50Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748668725) at 2020-12-20 12:46 PM PST -ahdithebomb,2020-12-20T20:48:40Z,- ahdithebomb unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -ahdithebomb,2020-12-20T20:48:40Z,- ahdithebomb unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -ahdithebomb,2020-12-20T21:11:29Z,- ahdithebomb opened issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:11 PM PST -ahdithebomb,2020-12-20T21:14:14Z,- ahdithebomb assigned to issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:14 PM PST -ahdithebomb,2020-12-20T21:19:27Z,- ahdithebomb opened issue: [957](https://github.com/hackforla/website/issues/957) at 2020-12-20 01:19 PM PST -ahdithebomb,2020-12-20T21:20:08Z,- ahdithebomb assigned to issue: [957](https://github.com/hackforla/website/issues/957) at 2020-12-20 01:20 PM PST -ahdithebomb,2020-12-20T21:30:30Z,- ahdithebomb unassigned from issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:30 PM PST -ahdithebomb,2020-12-21T22:54:39Z,- ahdithebomb unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2020-12-21 02:54 PM PST -ahdithebomb,2020-12-22T19:07:39Z,- ahdithebomb opened issue: [939](https://github.com/hackforla/website/issues/939) at 2020-12-22 11:07 AM PST -ahdithebomb,2020-12-22T19:07:39Z,- ahdithebomb assigned to issue: [939](https://github.com/hackforla/website/issues/939) at 2020-12-22 11:07 AM PST -ahdithebomb,2020-12-22T19:28:50Z,- ahdithebomb opened issue: [940](https://github.com/hackforla/website/issues/940) at 2020-12-22 11:28 AM PST -ahdithebomb,2020-12-22T19:28:50Z,- ahdithebomb assigned to issue: [940](https://github.com/hackforla/website/issues/940) at 2020-12-22 11:28 AM PST -ahdithebomb,2020-12-22T22:03:51Z,- ahdithebomb opened issue: [867](https://github.com/hackforla/website/issues/867) at 2020-12-22 02:03 PM PST -ahdithebomb,2020-12-29T19:19:25Z,- ahdithebomb commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-752212279) at 2020-12-29 11:19 AM PST -ahdithebomb,2020-12-29T21:33:07Z,- ahdithebomb opened issue: [879](https://github.com/hackforla/website/issues/879) at 2020-12-29 01:33 PM PST -ahdithebomb,2020-12-29T21:33:07Z,- ahdithebomb assigned to issue: [879](https://github.com/hackforla/website/issues/879) at 2020-12-29 01:33 PM PST -ahdithebomb,2020-12-29T21:39:54Z,- ahdithebomb opened issue: [937](https://github.com/hackforla/website/issues/937) at 2020-12-29 01:39 PM PST -ahdithebomb,2020-12-29T21:41:01Z,- ahdithebomb opened issue: [938](https://github.com/hackforla/website/issues/938) at 2020-12-29 01:41 PM PST -ahdithebomb,2020-12-29T21:46:02Z,- ahdithebomb submitted pull request review: [883](https://github.com/hackforla/website/pull/883#pullrequestreview-559713626) at 2020-12-29 01:46 PM PST -ahdithebomb,2020-12-29T21:49:00Z,- ahdithebomb opened pull request: [884](https://github.com/hackforla/website/pull/884) at 2020-12-29 01:49 PM PST -ahdithebomb,2020-12-29T21:50:09Z,- ahdithebomb pull request merged: [884](https://github.com/hackforla/website/pull/884#event-4155796509) at 2020-12-29 01:50 PM PST -ahdithebomb,2020-12-29T21:52:21Z,- ahdithebomb opened issue: [885](https://github.com/hackforla/website/issues/885) at 2020-12-29 01:52 PM PST -ahdithebomb,2020-12-29T21:59:30Z,- ahdithebomb opened issue: [949](https://github.com/hackforla/website/issues/949) at 2020-12-29 01:59 PM PST -ahdithebomb,2020-12-29T22:01:16Z,- ahdithebomb opened issue: [954](https://github.com/hackforla/website/issues/954) at 2020-12-29 02:01 PM PST -ahdithebomb,2020-12-29T22:11:38Z,- ahdithebomb opened issue: [889](https://github.com/hackforla/website/issues/889) at 2020-12-29 02:11 PM PST -ahdithebomb,2020-12-30T04:59:53Z,- ahdithebomb opened issue: [897](https://github.com/hackforla/website/issues/897) at 2020-12-29 08:59 PM PST -ahdithebomb,2021-01-03T18:09:11Z,- ahdithebomb commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-753655120) at 2021-01-03 10:09 AM PST -ahdithebomb,2021-01-03T18:09:12Z,- ahdithebomb closed issue by PR 1421: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-01-03 10:09 AM PST -ahdithebomb,2021-01-03T18:09:16Z,- ahdithebomb reopened issue: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-01-03 10:09 AM PST -ahdithebomb,2021-01-03T18:16:34Z,- ahdithebomb submitted pull request review: [898](https://github.com/hackforla/website/pull/898#pullrequestreview-560716087) at 2021-01-03 10:16 AM PST -ahdithebomb,2021-01-03T18:16:56Z,- ahdithebomb closed issue by PR 898: [891](https://github.com/hackforla/website/issues/891#event-4162685812) at 2021-01-03 10:16 AM PST -ahdithebomb,2021-01-03T18:22:45Z,- ahdithebomb commented on issue: [902](https://github.com/hackforla/website/issues/902#issuecomment-753657049) at 2021-01-03 10:22 AM PST -ahdithebomb,2021-01-03T19:29:43Z,- ahdithebomb commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-753665296) at 2021-01-03 11:29 AM PST -ahdithebomb,2021-01-03T19:33:54Z,- ahdithebomb reopened issue: [632](https://github.com/hackforla/website/issues/632#event-4150753854) at 2021-01-03 11:33 AM PST -ahdithebomb,2021-01-03T19:50:52Z,- ahdithebomb commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-753667535) at 2021-01-03 11:50 AM PST -ahdithebomb,2021-01-03T20:22:19Z,- ahdithebomb opened issue: [904](https://github.com/hackforla/website/issues/904) at 2021-01-03 12:22 PM PST -ahdithebomb,2021-01-03T20:26:20Z,- ahdithebomb opened issue: [905](https://github.com/hackforla/website/issues/905) at 2021-01-03 12:26 PM PST -ahdithebomb,2021-01-03T20:29:08Z,- ahdithebomb opened issue: [906](https://github.com/hackforla/website/issues/906) at 2021-01-03 12:29 PM PST -ahdithebomb,2021-01-03T20:42:47Z,- ahdithebomb opened issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-03 12:42 PM PST -ahdithebomb,2021-01-05T17:49:55Z,- ahdithebomb commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 09:49 AM PST -ahdithebomb,2021-01-05T18:29:39Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-754817328) at 2021-01-05 10:29 AM PST -ahdithebomb,2021-01-05T21:22:23Z,- ahdithebomb opened issue: [915](https://github.com/hackforla/website/issues/915) at 2021-01-05 01:22 PM PST -ahdithebomb,2021-01-10T20:39:09Z,- ahdithebomb unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:39 PM PST -ahdithebomb,2021-01-13T16:06:10Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-759550284) at 2021-01-13 08:06 AM PST -ahdithebomb,2021-01-13T18:16:47Z,- ahdithebomb assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-759628170) at 2021-01-13 10:16 AM PST -ahdithebomb,2021-01-13T19:23:45Z,- ahdithebomb commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665047) at 2021-01-13 11:23 AM PST -ahdithebomb,2021-01-13T19:23:45Z,- ahdithebomb closed issue as completed: [938](https://github.com/hackforla/website/issues/938#event-4202846278) at 2021-01-13 11:23 AM PST -ahdithebomb,2021-01-13T19:24:40Z,- ahdithebomb commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665527) at 2021-01-13 11:24 AM PST -ahdithebomb,2021-01-13T19:24:40Z,- ahdithebomb reopened issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665527) at 2021-01-13 11:24 AM PST -ahdithebomb,2021-01-13T19:39:50Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759688205) at 2021-01-13 11:39 AM PST -ahdithebomb,2021-01-13T19:55:19Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759703476) at 2021-01-13 11:55 AM PST -ahdithebomb,2021-01-13T19:59:16Z,- ahdithebomb unassigned from issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-756473615) at 2021-01-13 11:59 AM PST -ahdithebomb,2021-01-13T20:13:24Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759712640) at 2021-01-13 12:13 PM PST -ahdithebomb,2021-01-13T20:14:34Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-759713198) at 2021-01-13 12:14 PM PST -ahdithebomb,2021-01-13T20:22:15Z,- ahdithebomb commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-759717096) at 2021-01-13 12:22 PM PST -ahdithebomb,2021-01-13T20:22:33Z,- ahdithebomb unassigned from issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-759717096) at 2021-01-13 12:22 PM PST -ahdithebomb,2021-01-13T20:23:44Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-759717860) at 2021-01-13 12:23 PM PST -ahdithebomb,2021-01-13T20:32:26Z,- ahdithebomb assigned to issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-759721995) at 2021-01-13 12:32 PM PST -ahdithebomb,2021-01-17T17:49:36Z,- ahdithebomb assigned to issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-715560606) at 2021-01-17 09:49 AM PST -ahdithebomb,2021-01-17T18:09:13Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-761854543) at 2021-01-17 10:09 AM PST -ahdithebomb,2021-01-20T18:06:50Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-763832169) at 2021-01-20 10:06 AM PST -ahdithebomb,2021-01-20T18:21:50Z,- ahdithebomb commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-763840918) at 2021-01-20 10:21 AM PST -ahdithebomb,2021-01-20T18:54:58Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-763860190) at 2021-01-20 10:54 AM PST -ahdithebomb,2021-01-20T18:56:16Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-763860976) at 2021-01-20 10:56 AM PST -ahdithebomb,2021-01-24T05:58:55Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-766297466) at 2021-01-23 09:58 PM PST -ahdithebomb,2021-01-24T07:38:44Z,- ahdithebomb commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-766306063) at 2021-01-23 11:38 PM PST -ahdithebomb,2021-01-24T07:53:55Z,- ahdithebomb unassigned from issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-766306063) at 2021-01-23 11:53 PM PST -ahdithebomb,2021-01-24T07:58:54Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-766307893) at 2021-01-23 11:58 PM PST -ahdithebomb,2021-01-24T17:51:15Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-766402247) at 2021-01-24 09:51 AM PST -ahdithebomb,2021-01-24T17:58:31Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-766403277) at 2021-01-24 09:58 AM PST -ahdithebomb,2021-01-24T20:55:39Z,- ahdithebomb commented on issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-766430442) at 2021-01-24 12:55 PM PST -ahdithebomb,2021-01-27T17:00:51Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-768427153) at 2021-01-27 09:00 AM PST -ahdithebomb,2021-01-27T17:01:16Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-768427443) at 2021-01-27 09:01 AM PST -ahdithebomb,2021-01-31T05:06:49Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-770327320) at 2021-01-30 09:06 PM PST -ahdithebomb,2021-01-31T08:01:10Z,- ahdithebomb opened issue: [979](https://github.com/hackforla/website/issues/979) at 2021-01-31 12:01 AM PST -ahdithebomb,2021-01-31T18:27:51Z,- ahdithebomb opened issue: [981](https://github.com/hackforla/website/issues/981) at 2021-01-31 10:27 AM PST -ahdithebomb,2021-01-31T18:46:36Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-770429690) at 2021-01-31 10:46 AM PST -ahdithebomb,2021-02-02T23:11:40Z,- ahdithebomb commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-772079072) at 2021-02-02 03:11 PM PST -ahdithebomb,2021-02-03T16:58:17Z,- ahdithebomb assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-02-03 08:58 AM PST -ahdithebomb,2021-02-04T00:37:33Z,- ahdithebomb assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -ahdithebomb,2021-02-07T06:47:03Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-774616014) at 2021-02-06 10:47 PM PST -ahdithebomb,2021-02-07T17:09:14Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-774710509) at 2021-02-07 09:09 AM PST -ahdithebomb,2021-02-07T19:42:37Z,- ahdithebomb opened issue: [1010](https://github.com/hackforla/website/issues/1010) at 2021-02-07 11:42 AM PST -ahdithebomb,2021-02-07T20:42:46Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-774757119) at 2021-02-07 12:42 PM PST -ahdithebomb,2021-02-14T06:37:11Z,- ahdithebomb commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-778735793) at 2021-02-13 10:37 PM PST -ahdithebomb,2021-02-14T18:47:57Z,- ahdithebomb assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -ahdithebomb,2021-02-16T23:48:22Z,- ahdithebomb commented on issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-780192046) at 2021-02-16 03:48 PM PST -ahdithebomb,2021-02-16T23:48:23Z,- ahdithebomb closed issue as completed: [879](https://github.com/hackforla/website/issues/879#event-4338764521) at 2021-02-16 03:48 PM PST -ahdithebomb,2021-02-16T23:56:58Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-780195129) at 2021-02-16 03:56 PM PST -ahdithebomb,2021-02-16T23:57:59Z,- ahdithebomb unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-780045608) at 2021-02-16 03:57 PM PST -ahdithebomb,2021-02-17T02:02:54Z,- ahdithebomb commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-780243980) at 2021-02-16 06:02 PM PST -ahdithebomb,2021-02-17T07:22:43Z,- ahdithebomb opened pull request: [1072](https://github.com/hackforla/website/pull/1072) at 2021-02-16 11:22 PM PST -ahdithebomb,2021-02-17T18:13:48Z,- ahdithebomb commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-780748613) at 2021-02-17 10:13 AM PST -ahdithebomb,2021-02-17T19:02:37Z,- ahdithebomb commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-780779339) at 2021-02-17 11:02 AM PST -ahdithebomb,2021-02-17T19:05:43Z,- ahdithebomb commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-780781197) at 2021-02-17 11:05 AM PST -ahdithebomb,2021-02-17T19:19:26Z,- ahdithebomb commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-02-17 11:19 AM PST -ahdithebomb,2021-02-17T19:23:16Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-780792914) at 2021-02-17 11:23 AM PST -ahdithebomb,2021-02-17T19:36:40Z,- ahdithebomb commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-780800783) at 2021-02-17 11:36 AM PST -ahdithebomb,2021-02-18T05:54:56Z,- ahdithebomb opened issue: [1074](https://github.com/hackforla/website/issues/1074) at 2021-02-17 09:54 PM PST -ahdithebomb,2021-02-18T06:06:15Z,- ahdithebomb opened pull request: [1075](https://github.com/hackforla/website/pull/1075) at 2021-02-17 10:06 PM PST -ahdithebomb,2021-02-18T06:31:20Z,- ahdithebomb opened issue: [1076](https://github.com/hackforla/website/issues/1076) at 2021-02-17 10:31 PM PST -ahdithebomb,2021-02-21T17:40:17Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-782895070) at 2021-02-21 09:40 AM PST -ahdithebomb,2021-02-21T17:57:48Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-782897725) at 2021-02-21 09:57 AM PST -ahdithebomb,2021-02-21T19:58:36Z,- ahdithebomb pull request closed w/o merging: [1075](https://github.com/hackforla/website/pull/1075#event-4356721117) at 2021-02-21 11:58 AM PST -ahdithebomb,2021-02-21T20:16:50Z,- ahdithebomb pull request closed w/o merging: [1072](https://github.com/hackforla/website/pull/1072#event-4356740446) at 2021-02-21 12:16 PM PST -ahdithebomb,2021-02-24T18:08:27Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-785269054) at 2021-02-24 10:08 AM PST -ahdithebomb,2021-02-24T18:11:34Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-785270888) at 2021-02-24 10:11 AM PST -ahdithebomb,2021-02-28T17:29:12Z,- ahdithebomb commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-787487959) at 2021-02-28 09:29 AM PST -ahdithebomb,2021-02-28T17:30:05Z,- ahdithebomb commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-787488094) at 2021-02-28 09:30 AM PST -ahdithebomb,2021-02-28T17:31:08Z,- ahdithebomb commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-787488238) at 2021-02-28 09:31 AM PST -ahdithebomb,2021-03-01T18:49:26Z,- ahdithebomb unassigned from issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788182866) at 2021-03-01 10:49 AM PST -ahdithebomb,2021-03-07T18:59:16Z,- ahdithebomb unassigned from issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-787488238) at 2021-03-07 10:59 AM PST -ahdithebomb,2021-03-07T19:23:46Z,- ahdithebomb unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -ahdithebomb,2021-03-07T19:24:33Z,- ahdithebomb unassigned from issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -ahdithebomb,2021-03-10T20:15:43Z,- ahdithebomb unassigned from issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-795601197) at 2021-03-10 12:15 PM PST -ahdithebomb,2021-03-19T02:00:00Z,- ahdithebomb opened issue: [1261](https://github.com/hackforla/website/issues/1261) at 2021-03-18 07:00 PM PDT -ahoang94,2021-07-26T23:57:51Z,- ahoang94 assigned to issue: [1845](https://github.com/hackforla/website/issues/1845) at 2021-07-26 04:57 PM PDT -ahoang94,2021-07-26T23:58:18Z,- ahoang94 commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-887106358) at 2021-07-26 04:58 PM PDT -ahoang94,2021-07-30T01:03:17Z,- ahoang94 assigned to issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-887670543) at 2021-07-29 06:03 PM PDT -ahoang94,2021-08-01T05:03:25Z,- ahoang94 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-890451229) at 2021-07-31 10:03 PM PDT -ahoang94,2021-08-02T18:49:49Z,- ahoang94 commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-891252128) at 2021-08-02 11:49 AM PDT -ahoang94,2021-08-06T20:00:53Z,- ahoang94 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-894488776) at 2021-08-06 01:00 PM PDT -ahoang94,2021-08-08T18:38:52Z,- ahoang94 commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894837811) at 2021-08-08 11:38 AM PDT -ahoang94,2021-08-08T22:39:44Z,- ahoang94 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-894866019) at 2021-08-08 03:39 PM PDT -ahoang94,2021-08-10T19:59:17Z,- ahoang94 unassigned from issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-895436933) at 2021-08-10 12:59 PM PDT -ahoang94,2021-08-10T19:59:29Z,- ahoang94 assigned to issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-895436933) at 2021-08-10 12:59 PM PDT -ahoang94,2021-08-13T01:00:15Z,- ahoang94 assigned to issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-861754890) at 2021-08-12 06:00 PM PDT -ahoang94,2021-08-13T16:49:20Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-898592387) at 2021-08-13 09:49 AM PDT -ahoang94,2021-08-20T18:05:42Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-902865866) at 2021-08-20 11:05 AM PDT -ahoang94,2021-08-22T05:29:16Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-903216090) at 2021-08-21 10:29 PM PDT -ahoang94,2021-08-25T04:18:59Z,- ahoang94 commented on issue: [2169](https://github.com/hackforla/website/issues/2169#issuecomment-905170040) at 2021-08-24 09:18 PM PDT -ahoang94,2021-08-28T00:27:43Z,- ahoang94 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-907537146) at 2021-08-27 05:27 PM PDT -ahoang94,2021-09-10T20:29:05Z,- ahoang94 assigned to issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-910342111) at 2021-09-10 01:29 PM PDT -ahoang94,2021-09-26T00:18:19Z,- ahoang94 assigned to issue: [1842](https://github.com/hackforla/website/issues/1842#issuecomment-917083414) at 2021-09-25 05:18 PM PDT -ahoang94,2021-10-03T16:10:28Z,- ahoang94 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-932980607) at 2021-10-03 09:10 AM PDT -ahoang94,2021-10-04T22:29:33Z,- ahoang94 commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-933904580) at 2021-10-04 03:29 PM PDT -ahoang94,2021-10-04T22:54:26Z,- ahoang94 commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-933915307) at 2021-10-04 03:54 PM PDT -ahoang94,2021-10-12T17:36:40Z,- ahoang94 assigned to issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-929336691) at 2021-10-12 10:36 AM PDT -ahoang94,2021-10-13T00:21:23Z,- ahoang94 commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-941790458) at 2021-10-12 05:21 PM PDT -ahoang94,2021-10-17T16:28:55Z,- ahoang94 commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-945154402) at 2021-10-17 09:28 AM PDT -ahoang94,2021-10-23T00:45:59Z,- ahoang94 commented on issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-10-22 05:45 PM PDT -ahoang94,2021-10-23T00:46:20Z,- ahoang94 unassigned from issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-10-22 05:46 PM PDT -ahoang94,2021-10-28T21:08:34Z,- ahoang94 assigned to issue: [2154](https://github.com/hackforla/website/issues/2154) at 2021-10-28 02:08 PM PDT -ahoang94,2021-10-28T23:50:29Z,- ahoang94 commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-954304242) at 2021-10-28 04:50 PM PDT -ahoang94,2021-11-02T21:10:47Z,- ahoang94 commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-958169278) at 2021-11-02 02:10 PM PDT -ahoang94,2021-11-04T19:24:47Z,- ahoang94 assigned to issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-941352359) at 2021-11-04 12:24 PM PDT -ahoang94,2021-11-05T00:24:56Z,- ahoang94 commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-961534197) at 2021-11-04 05:24 PM PDT -ahoang94,2021-11-19T01:57:36Z,- ahoang94 assigned to issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-968499442) at 2021-11-18 05:57 PM PST -ahoang94,2021-11-27T04:43:16Z,- ahoang94 commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-980501448) at 2021-11-26 08:43 PM PST -ahoang94,2021-11-29T03:06:50Z,- ahoang94 commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-981248855) at 2021-11-28 07:06 PM PST -ahoang94,2021-12-01T20:00:54Z,- ahoang94 commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-984007511) at 2021-12-01 12:00 PM PST -ahoang94,2021-12-13T00:41:56Z,- ahoang94 assigned to issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-12-12 04:41 PM PST -Ahtaxam,2023-04-30T03:32:12Z,- Ahtaxam commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1528930041) at 2023-04-29 08:32 PM PDT -Ahtaxam,2023-04-30T18:29:57Z,- Ahtaxam commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1529109509) at 2023-04-30 11:29 AM PDT -aidanwsimmons,5722,SKILLS ISSUE -aidanwsimmons,2023-10-17T02:38:17Z,- aidanwsimmons opened issue: [5722](https://github.com/hackforla/website/issues/5722) at 2023-10-16 07:38 PM PDT -aidanwsimmons,2023-10-17T02:51:37Z,- aidanwsimmons assigned to issue: [5722](https://github.com/hackforla/website/issues/5722) at 2023-10-16 07:51 PM PDT -aidanwsimmons,2024-02-06T03:24:42Z,- aidanwsimmons reopened issue: [5722](https://github.com/hackforla/website/issues/5722#event-11679252273) at 2024-02-05 07:24 PM PST -aidanwsimmons,2024-02-09T22:50:01Z,- aidanwsimmons assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1875041068) at 2024-02-09 02:50 PM PST -aidanwsimmons,2024-02-09T22:50:51Z,- aidanwsimmons assigned to issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1875047290) at 2024-02-09 02:50 PM PST -aidanwsimmons,2024-02-09T22:51:54Z,- aidanwsimmons unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1936706395) at 2024-02-09 02:51 PM PST -aidanwsimmons,2024-02-09T23:07:27Z,- aidanwsimmons commented on issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1936720342) at 2024-02-09 03:07 PM PST -aidanwsimmons,2024-02-09T23:08:46Z,- aidanwsimmons commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1936721304) at 2024-02-09 03:08 PM PST -aidanwsimmons,2024-02-09T23:10:31Z,- aidanwsimmons commented on issue: [6054](https://github.com/hackforla/website/issues/6054#issuecomment-1936722539) at 2024-02-09 03:10 PM PST -aidanwsimmons,2024-02-09T23:35:18Z,- aidanwsimmons opened pull request: [6273](https://github.com/hackforla/website/pull/6273) at 2024-02-09 03:35 PM PST -aidanwsimmons,2024-02-09T23:44:27Z,- aidanwsimmons closed issue as completed: [5722](https://github.com/hackforla/website/issues/5722#event-11763331139) at 2024-02-09 03:44 PM PST -aidanwsimmons,2024-02-10T22:50:12Z,- aidanwsimmons assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937320455) at 2024-02-10 02:50 PM PST -aidanwsimmons,2024-02-10T22:55:32Z,- aidanwsimmons unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937335130) at 2024-02-10 02:55 PM PST -aidanwsimmons,2024-02-10T23:41:30Z,- aidanwsimmons commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1937354976) at 2024-02-10 03:41 PM PST -aidanwsimmons,2024-02-12T18:55:30Z,- aidanwsimmons assigned to issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1720890386) at 2024-02-12 10:55 AM PST -aidanwsimmons,2024-02-12T19:03:18Z,- aidanwsimmons commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939357451) at 2024-02-12 11:03 AM PST -aidanwsimmons,2024-02-12T19:11:36Z,- aidanwsimmons commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939368703) at 2024-02-12 11:11 AM PST -aidanwsimmons,2024-02-12T19:32:00Z,- aidanwsimmons pull request closed w/o merging: [6273](https://github.com/hackforla/website/pull/6273#event-11778969500) at 2024-02-12 11:32 AM PST -aidanwsimmons,2024-02-12T20:10:18Z,- aidanwsimmons opened pull request: [6282](https://github.com/hackforla/website/pull/6282) at 2024-02-12 12:10 PM PST -aidanwsimmons,2024-02-12T20:11:48Z,- aidanwsimmons commented on pull request: [6282](https://github.com/hackforla/website/pull/6282#issuecomment-1939483844) at 2024-02-12 12:11 PM PST -aidanwsimmons,2024-02-12T20:12:45Z,- aidanwsimmons unassigned from issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939368703) at 2024-02-12 12:12 PM PST -aidanwsimmons,2024-02-12T20:13:29Z,- aidanwsimmons commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1939492244) at 2024-02-12 12:13 PM PST -aidanwsimmons,2024-02-12T21:21:14Z,- aidanwsimmons pull request merged: [6282](https://github.com/hackforla/website/pull/6282#event-11780010005) at 2024-02-12 01:21 PM PST -aidanwsimmons,2024-02-13T00:17:42Z,- aidanwsimmons assigned to issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1765488579) at 2024-02-12 04:17 PM PST -aidanwsimmons,2024-02-13T00:19:34Z,- aidanwsimmons commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1939858302) at 2024-02-12 04:19 PM PST -aidanwsimmons,2024-02-13T00:35:28Z,- aidanwsimmons opened pull request: [6283](https://github.com/hackforla/website/pull/6283) at 2024-02-12 04:35 PM PST -aidanwsimmons,2024-02-13T00:37:49Z,- aidanwsimmons commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939890101) at 2024-02-12 04:37 PM PST -aidanwsimmons,2024-02-13T00:43:00Z,- aidanwsimmons submitted pull request review: [6281](https://github.com/hackforla/website/pull/6281#pullrequestreview-1876646950) at 2024-02-12 04:43 PM PST -aidanwsimmons,2024-02-13T00:43:08Z,- aidanwsimmons commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939910208) at 2024-02-12 04:43 PM PST -aidanwsimmons,2024-02-13T07:42:37Z,- aidanwsimmons commented on pull request: [6283](https://github.com/hackforla/website/pull/6283#issuecomment-1940613719) at 2024-02-12 11:42 PM PST -aidanwsimmons,2024-02-14T03:36:25Z,- aidanwsimmons commented on pull request: [6279](https://github.com/hackforla/website/pull/6279#issuecomment-1943034010) at 2024-02-13 07:36 PM PST -aidanwsimmons,2024-02-15T01:20:10Z,- aidanwsimmons submitted pull request review: [6279](https://github.com/hackforla/website/pull/6279#pullrequestreview-1881588551) at 2024-02-14 05:20 PM PST -aidanwsimmons,2024-02-15T06:53:44Z,- aidanwsimmons pull request merged: [6283](https://github.com/hackforla/website/pull/6283#event-11811037717) at 2024-02-14 10:53 PM PST -aidanwsimmons,2024-02-27T22:16:29Z,- aidanwsimmons commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1967731895) at 2024-02-27 02:16 PM PST -aidanwsimmons,2024-02-27T23:54:59Z,- aidanwsimmons unassigned from issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1967731895) at 2024-02-27 03:54 PM PST -aidanwsimmons,2024-02-28T00:00:02Z,- aidanwsimmons assigned to issue: [6375](https://github.com/hackforla/website/issues/6375#issuecomment-1963127100) at 2024-02-27 04:00 PM PST -aidanwsimmons,2024-02-28T00:09:08Z,- aidanwsimmons commented on issue: [6375](https://github.com/hackforla/website/issues/6375#issuecomment-1967944565) at 2024-02-27 04:09 PM PST -aidanwsimmons,2024-02-28T00:37:06Z,- aidanwsimmons opened pull request: [6386](https://github.com/hackforla/website/pull/6386) at 2024-02-27 04:37 PM PST -aidanwsimmons,2024-02-28T18:12:16Z,- aidanwsimmons commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1969563986) at 2024-02-28 10:12 AM PST -aidanwsimmons,2024-02-28T18:12:38Z,- aidanwsimmons commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1969564548) at 2024-02-28 10:12 AM PST -aidanwsimmons,2024-02-28T23:29:03Z,- aidanwsimmons submitted pull request review: [6362](https://github.com/hackforla/website/pull/6362#pullrequestreview-1907642805) at 2024-02-28 03:29 PM PST -aidanwsimmons,2024-02-29T00:02:50Z,- aidanwsimmons submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1907679194) at 2024-02-28 04:02 PM PST -aidanwsimmons,2024-03-02T00:38:12Z,- aidanwsimmons commented on pull request: [6386](https://github.com/hackforla/website/pull/6386#issuecomment-1974135587) at 2024-03-01 04:38 PM PST -aidanwsimmons,2024-03-04T01:49:56Z,- aidanwsimmons pull request merged: [6386](https://github.com/hackforla/website/pull/6386#event-11992263633) at 2024-03-03 05:49 PM PST -aidanwsimmons,2024-03-05T02:04:26Z,- aidanwsimmons assigned to issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1920547949) at 2024-03-04 06:04 PM PST -aidanwsimmons,2024-03-05T02:05:14Z,- aidanwsimmons commented on issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1977815356) at 2024-03-04 06:05 PM PST -aidanwsimmons,2024-03-05T02:27:01Z,- aidanwsimmons opened pull request: [6417](https://github.com/hackforla/website/pull/6417) at 2024-03-04 06:27 PM PST -aidanwsimmons,2024-03-07T01:44:39Z,- aidanwsimmons pull request merged: [6417](https://github.com/hackforla/website/pull/6417#event-12035475518) at 2024-03-06 05:44 PM PST -aidanwsimmons,2024-03-07T22:34:33Z,- aidanwsimmons assigned to issue: [5997](https://github.com/hackforla/website/issues/5997) at 2024-03-07 02:34 PM PST -aidanwsimmons,2024-03-07T22:35:09Z,- aidanwsimmons commented on issue: [5997](https://github.com/hackforla/website/issues/5997#issuecomment-1984667493) at 2024-03-07 02:35 PM PST -aidanwsimmons,2024-03-25T19:22:05Z,- aidanwsimmons assigned to issue: [6510](https://github.com/hackforla/website/issues/6510) at 2024-03-25 12:22 PM PDT -aidanwsimmons,2024-03-25T19:22:53Z,- aidanwsimmons commented on issue: [6510](https://github.com/hackforla/website/issues/6510#issuecomment-2018743611) at 2024-03-25 12:22 PM PDT -aidanwsimmons,2024-03-27T00:17:28Z,- aidanwsimmons opened pull request: [6521](https://github.com/hackforla/website/pull/6521) at 2024-03-26 05:17 PM PDT -aidanwsimmons,2024-03-27T17:03:57Z,- aidanwsimmons commented on pull request: [6518](https://github.com/hackforla/website/pull/6518#issuecomment-2023325054) at 2024-03-27 10:03 AM PDT -aidanwsimmons,2024-03-27T17:04:11Z,- aidanwsimmons commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2023325451) at 2024-03-27 10:04 AM PDT -aidanwsimmons,2024-03-27T20:01:12Z,- aidanwsimmons submitted pull request review: [6518](https://github.com/hackforla/website/pull/6518#pullrequestreview-1964628762) at 2024-03-27 01:01 PM PDT -aidanwsimmons,2024-03-31T03:11:02Z,- aidanwsimmons pull request merged: [6521](https://github.com/hackforla/website/pull/6521#event-12302225921) at 2024-03-30 08:11 PM PDT -aidanwsimmons,2024-04-04T21:28:15Z,- aidanwsimmons submitted pull request review: [6566](https://github.com/hackforla/website/pull/6566#pullrequestreview-1981218047) at 2024-04-04 02:28 PM PDT -aidanwsimmons,2024-04-04T21:29:33Z,- aidanwsimmons commented on pull request: [6566](https://github.com/hackforla/website/pull/6566#issuecomment-2038262081) at 2024-04-04 02:29 PM PDT -aidanwsimmons,2024-04-10T02:25:22Z,- aidanwsimmons submitted pull request review: [6566](https://github.com/hackforla/website/pull/6566#pullrequestreview-1990656273) at 2024-04-09 07:25 PM PDT -aidanwsimmons,2024-04-12T20:03:27Z,- aidanwsimmons assigned to issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2049043631) at 2024-04-12 01:03 PM PDT -aidanwsimmons,2024-04-12T20:04:42Z,- aidanwsimmons commented on issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2052450947) at 2024-04-12 01:04 PM PDT -aidanwsimmons,2024-04-15T19:45:34Z,- aidanwsimmons commented on issue: [6622](https://github.com/hackforla/website/issues/6622#issuecomment-2057678507) at 2024-04-15 12:45 PM PDT -aidanwsimmons,2024-04-15T20:07:22Z,- aidanwsimmons opened pull request: [6651](https://github.com/hackforla/website/pull/6651) at 2024-04-15 01:07 PM PDT -aidanwsimmons,2024-04-21T17:37:31Z,- aidanwsimmons pull request merged: [6651](https://github.com/hackforla/website/pull/6651#event-12551509072) at 2024-04-21 10:37 AM PDT -aidanwsimmons,2024-04-22T00:14:12Z,- aidanwsimmons commented on pull request: [6708](https://github.com/hackforla/website/pull/6708#issuecomment-2068279223) at 2024-04-21 05:14 PM PDT -aidanwsimmons,2024-04-22T21:53:51Z,- aidanwsimmons submitted pull request review: [6708](https://github.com/hackforla/website/pull/6708#pullrequestreview-2015864269) at 2024-04-22 02:53 PM PDT -aidanwsimmons,2024-04-24T17:26:51Z,- aidanwsimmons commented on pull request: [6712](https://github.com/hackforla/website/pull/6712#issuecomment-2075469497) at 2024-04-24 10:26 AM PDT -aidanwsimmons,2024-04-24T20:18:41Z,- aidanwsimmons submitted pull request review: [6712](https://github.com/hackforla/website/pull/6712#pullrequestreview-2020867771) at 2024-04-24 01:18 PM PDT -aidanwsimmons,2024-04-24T23:11:15Z,- aidanwsimmons assigned to issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2073098283) at 2024-04-24 04:11 PM PDT -aidanwsimmons,2024-04-24T23:12:53Z,- aidanwsimmons commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2076013026) at 2024-04-24 04:12 PM PDT -aidanwsimmons,2024-05-04T01:05:58Z,- aidanwsimmons opened pull request: [6816](https://github.com/hackforla/website/pull/6816) at 2024-05-03 06:05 PM PDT -aidanwsimmons,2024-05-08T00:51:43Z,- aidanwsimmons pull request closed w/o merging: [6816](https://github.com/hackforla/website/pull/6816#event-12736899416) at 2024-05-07 05:51 PM PDT -aidanwsimmons,2024-05-10T04:04:46Z,- aidanwsimmons commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2103820897) at 2024-05-09 09:04 PM PDT -aidanwsimmons,2024-05-13T01:59:27Z,- aidanwsimmons commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2106501961) at 2024-05-12 06:59 PM PDT -aidanwsimmons,2024-05-13T01:59:43Z,- aidanwsimmons unassigned from issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2106501961) at 2024-05-12 06:59 PM PDT -aidanwsimmons,2024-05-29T08:06:04Z,- aidanwsimmons submitted pull request review: [6887](https://github.com/hackforla/website/pull/6887#pullrequestreview-2084624621) at 2024-05-29 01:06 AM PDT -aidanwsimmons,2024-06-06T22:34:53Z,- aidanwsimmons assigned to issue: [6910](https://github.com/hackforla/website/issues/6910#issuecomment-2136876344) at 2024-06-06 03:34 PM PDT -aidanwsimmons,2024-06-06T22:35:53Z,- aidanwsimmons commented on issue: [6910](https://github.com/hackforla/website/issues/6910#issuecomment-2153510126) at 2024-06-06 03:35 PM PDT -aidanwsimmons,2024-06-10T22:45:19Z,- aidanwsimmons opened pull request: [6985](https://github.com/hackforla/website/pull/6985) at 2024-06-10 03:45 PM PDT -aidanwsimmons,2024-06-12T03:25:33Z,- aidanwsimmons commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2162032534) at 2024-06-11 08:25 PM PDT -aidanwsimmons,2024-06-12T17:11:33Z,- aidanwsimmons pull request merged: [6985](https://github.com/hackforla/website/pull/6985#event-13135052450) at 2024-06-12 10:11 AM PDT -aidanwsimmons,2024-06-13T02:56:01Z,- aidanwsimmons submitted pull request review: [6976](https://github.com/hackforla/website/pull/6976#pullrequestreview-2114582929) at 2024-06-12 07:56 PM PDT -ajb176,5232,SKILLS ISSUE -ajb176,2023-08-15T04:23:19Z,- ajb176 opened issue: [5232](https://github.com/hackforla/website/issues/5232) at 2023-08-14 09:23 PM PDT -ajb176,2023-08-15T04:24:34Z,- ajb176 assigned to issue: [5232](https://github.com/hackforla/website/issues/5232) at 2023-08-14 09:24 PM PDT -ajb176,2023-08-16T15:41:58Z,- ajb176 commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-1680851259) at 2023-08-16 08:41 AM PDT -ajb176,2023-08-27T18:36:40Z,- ajb176 assigned to issue: [5281](https://github.com/hackforla/website/issues/5281#issuecomment-1687026308) at 2023-08-27 11:36 AM PDT -ajb176,2023-08-27T18:45:30Z,- ajb176 commented on issue: [5281](https://github.com/hackforla/website/issues/5281#issuecomment-1694734984) at 2023-08-27 11:45 AM PDT -ajb176,2023-08-29T19:08:24Z,- ajb176 opened pull request: [5335](https://github.com/hackforla/website/pull/5335) at 2023-08-29 12:08 PM PDT -ajb176,2023-08-30T02:01:27Z,- ajb176 pull request merged: [5335](https://github.com/hackforla/website/pull/5335#event-10227505144) at 2023-08-29 07:01 PM PDT -ajb176,2023-08-30T07:56:59Z,- ajb176 commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-1698678803) at 2023-08-30 12:56 AM PDT -ajb176,2023-09-04T07:11:43Z,- ajb176 closed issue as completed: [5232](https://github.com/hackforla/website/issues/5232#event-10270289157) at 2023-09-04 12:11 AM PDT -ajb176,2023-09-17T12:12:37Z,- ajb176 assigned to issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1720331921) at 2023-09-17 05:12 AM PDT -ajb176,2023-09-17T12:15:26Z,- ajb176 commented on issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1722464034) at 2023-09-17 05:15 AM PDT -ajb176,2023-09-24T14:13:01Z,- ajb176 commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1732579148) at 2023-09-24 07:13 AM PDT -ajb176,2023-09-25T16:34:20Z,- ajb176 commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1734098500) at 2023-09-25 09:34 AM PDT -ajb176,2023-09-25T17:19:03Z,- ajb176 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1734164967) at 2023-09-25 10:19 AM PDT -ajb176,2023-09-27T07:19:42Z,- ajb176 submitted pull request review: [5576](https://github.com/hackforla/website/pull/5576#pullrequestreview-1645769872) at 2023-09-27 12:19 AM PDT -ajb176,2023-09-27T08:54:22Z,- ajb176 submitted pull request review: [5611](https://github.com/hackforla/website/pull/5611#pullrequestreview-1645962783) at 2023-09-27 01:54 AM PDT -ajb176,2023-09-27T10:01:28Z,- ajb176 commented on pull request: [5610](https://github.com/hackforla/website/pull/5610#issuecomment-1737091653) at 2023-09-27 03:01 AM PDT -ajb176,2023-09-28T06:49:08Z,- ajb176 submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1648017648) at 2023-09-27 11:49 PM PDT -ajb176,2023-09-29T09:21:00Z,- ajb176 commented on pull request: [5625](https://github.com/hackforla/website/pull/5625#issuecomment-1740576991) at 2023-09-29 02:21 AM PDT -ajb176,2023-09-29T09:39:53Z,- ajb176 commented on pull request: [5626](https://github.com/hackforla/website/pull/5626#issuecomment-1740601320) at 2023-09-29 02:39 AM PDT -ajb176,2023-09-29T10:19:57Z,- ajb176 submitted pull request review: [5616](https://github.com/hackforla/website/pull/5616#pullrequestreview-1650495264) at 2023-09-29 03:19 AM PDT -ajb176,2023-10-03T18:43:42Z,- ajb176 commented on pull request: [5651](https://github.com/hackforla/website/pull/5651#issuecomment-1745527434) at 2023-10-03 11:43 AM PDT -ajb176,2023-10-05T14:48:13Z,- ajb176 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1660073170) at 2023-10-05 07:48 AM PDT -ajb176,2023-10-05T14:55:22Z,- ajb176 commented on pull request: [5663](https://github.com/hackforla/website/pull/5663#issuecomment-1749075736) at 2023-10-05 07:55 AM PDT -ajb176,2023-10-05T15:11:15Z,- ajb176 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1660128610) at 2023-10-05 08:11 AM PDT -ajb176,2023-10-05T17:49:57Z,- ajb176 commented on pull request: [5663](https://github.com/hackforla/website/pull/5663#issuecomment-1749383910) at 2023-10-05 10:49 AM PDT -ajb176,2023-10-05T17:50:36Z,- ajb176 submitted pull request review: [5663](https://github.com/hackforla/website/pull/5663#pullrequestreview-1660413738) at 2023-10-05 10:50 AM PDT -ajb176,2023-10-07T07:34:21Z,- ajb176 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1663016723) at 2023-10-07 12:34 AM PDT -ajb176,2023-10-10T14:45:57Z,- ajb176 commented on pull request: [5683](https://github.com/hackforla/website/pull/5683#issuecomment-1755599352) at 2023-10-10 07:45 AM PDT -ajb176,2023-10-10T16:38:42Z,- ajb176 submitted pull request review: [5683](https://github.com/hackforla/website/pull/5683#pullrequestreview-1668259636) at 2023-10-10 09:38 AM PDT -ajb176,2023-10-10T17:36:39Z,- ajb176 submitted pull request review: [5688](https://github.com/hackforla/website/pull/5688#pullrequestreview-1668473812) at 2023-10-10 10:36 AM PDT -ajb176,2023-10-12T05:37:54Z,- ajb176 submitted pull request review: [5688](https://github.com/hackforla/website/pull/5688#pullrequestreview-1673058793) at 2023-10-11 10:37 PM PDT -ajb176,2023-10-23T00:39:36Z,- ajb176 submitted pull request review: [5765](https://github.com/hackforla/website/pull/5765#pullrequestreview-1691549914) at 2023-10-22 05:39 PM PDT -ajb176,2023-11-03T16:32:54Z,- ajb176 commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1792769911) at 2023-11-03 09:32 AM PDT -ajb176,2023-11-06T03:18:18Z,- ajb176 submitted pull request review: [5820](https://github.com/hackforla/website/pull/5820#pullrequestreview-1714208550) at 2023-11-05 07:18 PM PST -ajb176,2023-11-06T03:22:19Z,- ajb176 commented on pull request: [5853](https://github.com/hackforla/website/pull/5853#issuecomment-1794025491) at 2023-11-05 07:22 PM PST -ajb176,2023-11-06T04:02:16Z,- ajb176 submitted pull request review: [5853](https://github.com/hackforla/website/pull/5853#pullrequestreview-1714230178) at 2023-11-05 08:02 PM PST -ajb176,2023-11-07T00:26:58Z,- ajb176 submitted pull request review: [5858](https://github.com/hackforla/website/pull/5858#pullrequestreview-1716559737) at 2023-11-06 04:26 PM PST -ajb176,2023-11-19T08:12:06Z,- ajb176 submitted pull request review: [5913](https://github.com/hackforla/website/pull/5913#pullrequestreview-1738569394) at 2023-11-19 12:12 AM PST -ajb176,2023-11-19T08:14:06Z,- ajb176 submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1738569702) at 2023-11-19 12:14 AM PST -ajb176,2023-11-21T08:41:57Z,- ajb176 commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1820467858) at 2023-11-21 12:41 AM PST -ajb176,2023-11-21T08:44:14Z,- ajb176 commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1820471156) at 2023-11-21 12:44 AM PST -ajb176,2023-11-22T07:41:08Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1822255702) at 2023-11-21 11:41 PM PST -ajb176,2023-11-23T08:13:27Z,- ajb176 submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1745879688) at 2023-11-23 12:13 AM PST -ajb176,2023-11-26T12:46:15Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826775215) at 2023-11-26 04:46 AM PST -ajb176,2023-11-26T12:51:54Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826776502) at 2023-11-26 04:51 AM PST -ajb176,2023-12-02T18:04:45Z,- ajb176 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1837217833) at 2023-12-02 10:04 AM PST -ajb176,2023-12-15T14:08:32Z,- ajb176 commented on pull request: [6007](https://github.com/hackforla/website/pull/6007#issuecomment-1857945653) at 2023-12-15 06:08 AM PST -ajb176,2024-01-30T14:54:58Z,- ajb176 commented on pull request: [6194](https://github.com/hackforla/website/pull/6194#issuecomment-1917070298) at 2024-01-30 06:54 AM PST -ajb176,2024-01-30T15:18:45Z,- ajb176 submitted pull request review: [6194](https://github.com/hackforla/website/pull/6194#pullrequestreview-1851584817) at 2024-01-30 07:18 AM PST -ajb176,2024-02-09T10:10:41Z,- ajb176 commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1935651728) at 2024-02-09 02:10 AM PST -ajb176,2024-02-10T08:04:30Z,- ajb176 submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1873529234) at 2024-02-10 12:04 AM PST -ajb176,2024-02-11T06:34:03Z,- ajb176 commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1937448990) at 2024-02-10 10:34 PM PST -ajb176,2024-02-27T17:23:07Z,- ajb176 commented on pull request: [6374](https://github.com/hackforla/website/pull/6374#issuecomment-1967246140) at 2024-02-27 09:23 AM PST -ajb176,2024-02-27T17:38:23Z,- ajb176 submitted pull request review: [6374](https://github.com/hackforla/website/pull/6374#pullrequestreview-1904322572) at 2024-02-27 09:38 AM PST -ajb176,2024-03-15T13:08:18Z,- ajb176 commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-1999629971) at 2024-03-15 06:08 AM PDT -ajb176,2024-03-16T19:34:00Z,- ajb176 submitted pull request review: [6462](https://github.com/hackforla/website/pull/6462#pullrequestreview-1941300769) at 2024-03-16 12:34 PM PDT -ajb176,2024-03-26T07:08:08Z,- ajb176 assigned to issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-1712786597) at 2024-03-26 12:08 AM PDT -ajb176,2024-03-26T07:08:24Z,- ajb176 commented on issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-2019535104) at 2024-03-26 12:08 AM PDT -ajb176,2024-03-27T18:35:00Z,- ajb176 commented on issue: [5473](https://github.com/hackforla/website/issues/5473#issuecomment-2023635397) at 2024-03-27 11:35 AM PDT -ajb176,2024-03-27T18:37:20Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2023656570) at 2024-03-27 11:37 AM PDT -ajb176,2024-03-28T11:10:06Z,- ajb176 submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1965812511) at 2024-03-28 04:10 AM PDT -ajb176,2024-03-28T17:01:19Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2025698413) at 2024-03-28 10:01 AM PDT -ajb176,2024-03-28T20:04:24Z,- ajb176 opened pull request: [6543](https://github.com/hackforla/website/pull/6543) at 2024-03-28 01:04 PM PDT -ajb176,2024-03-28T20:10:24Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026025435) at 2024-03-28 01:10 PM PDT -ajb176,2024-03-28T21:21:56Z,- ajb176 commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026152508) at 2024-03-28 02:21 PM PDT -ajb176,2024-03-29T19:53:50Z,- ajb176 submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1969532597) at 2024-03-29 12:53 PM PDT -ajb176,2024-03-29T20:07:41Z,- ajb176 submitted pull request review: [6547](https://github.com/hackforla/website/pull/6547#pullrequestreview-1969559080) at 2024-03-29 01:07 PM PDT -ajb176,2024-03-31T03:15:23Z,- ajb176 pull request merged: [6543](https://github.com/hackforla/website/pull/6543#event-12302229935) at 2024-03-30 08:15 PM PDT -ajb176,2024-04-13T15:22:00Z,- ajb176 submitted pull request review: [6625](https://github.com/hackforla/website/pull/6625#pullrequestreview-1999281157) at 2024-04-13 08:22 AM PDT -ajb176,2024-04-19T17:19:36Z,- ajb176 submitted pull request review: [6688](https://github.com/hackforla/website/pull/6688#pullrequestreview-2011976889) at 2024-04-19 10:19 AM PDT -ajb176,2024-04-29T17:49:04Z,- ajb176 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2029168807) at 2024-04-29 10:49 AM PDT -ajb176,2024-04-30T09:36:46Z,- ajb176 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2030785474) at 2024-04-30 02:36 AM PDT -ajb176,2024-04-30T10:12:44Z,- ajb176 submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2030865367) at 2024-04-30 03:12 AM PDT -ajb176,2024-05-01T15:34:26Z,- ajb176 submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2033840136) at 2024-05-01 08:34 AM PDT -ajb176,2024-05-15T12:40:17Z,- ajb176 submitted pull request review: [6856](https://github.com/hackforla/website/pull/6856#pullrequestreview-2057894982) at 2024-05-15 05:40 AM PDT -ajb176,2024-05-24T09:51:41Z,- ajb176 submitted pull request review: [6892](https://github.com/hackforla/website/pull/6892#pullrequestreview-2076422732) at 2024-05-24 02:51 AM PDT -ajb176,2024-05-25T12:44:34Z,- ajb176 submitted pull request review: [6893](https://github.com/hackforla/website/pull/6893#pullrequestreview-2078962802) at 2024-05-25 05:44 AM PDT -ajb176,2024-05-30T15:16:48Z,- ajb176 commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2139902414) at 2024-05-30 08:16 AM PDT -ajb176,2024-06-05T19:12:28Z,- ajb176 opened pull request: [6959](https://github.com/hackforla/website/pull/6959) at 2024-06-05 12:12 PM PDT -ajb176,2024-06-05T19:22:43Z,- ajb176 commented on pull request: [6959](https://github.com/hackforla/website/pull/6959#issuecomment-2150793923) at 2024-06-05 12:22 PM PDT -ajb176,2024-06-05T19:41:38Z,- ajb176 pull request closed w/o merging: [6959](https://github.com/hackforla/website/pull/6959#event-13056636183) at 2024-06-05 12:41 PM PDT -ajb176,2024-06-05T19:43:11Z,- ajb176 opened pull request: [6960](https://github.com/hackforla/website/pull/6960) at 2024-06-05 12:43 PM PDT -ajb176,2024-06-05T19:44:31Z,- ajb176 pull request closed w/o merging: [6960](https://github.com/hackforla/website/pull/6960#event-13056667530) at 2024-06-05 12:44 PM PDT -ajb176,2024-06-05T19:46:43Z,- ajb176 opened pull request: [6962](https://github.com/hackforla/website/pull/6962) at 2024-06-05 12:46 PM PDT -ajb176,2024-06-05T19:48:02Z,- ajb176 pull request closed w/o merging: [6962](https://github.com/hackforla/website/pull/6962#event-13056703950) at 2024-06-05 12:48 PM PDT -ajb176,2024-06-05T19:49:45Z,- ajb176 reopened pull request: [6959](https://github.com/hackforla/website/pull/6959#event-13056636183) at 2024-06-05 12:49 PM PDT -ajb176,2024-06-06T07:16:56Z,- ajb176 commented on pull request: [6959](https://github.com/hackforla/website/pull/6959#issuecomment-2151571588) at 2024-06-06 12:16 AM PDT -ajb176,2024-06-06T07:17:24Z,- ajb176 pull request closed w/o merging: [6959](https://github.com/hackforla/website/pull/6959#event-13062067921) at 2024-06-06 12:17 AM PDT -ajb176,2024-06-06T07:58:20Z,- ajb176 opened pull request: [6966](https://github.com/hackforla/website/pull/6966) at 2024-06-06 12:58 AM PDT -ajb176,2024-06-06T08:05:08Z,- ajb176 pull request closed w/o merging: [6966](https://github.com/hackforla/website/pull/6966#event-13062643139) at 2024-06-06 01:05 AM PDT -ajb176,2024-06-06T08:05:35Z,- ajb176 reopened pull request: [6959](https://github.com/hackforla/website/pull/6959#event-13062067921) at 2024-06-06 01:05 AM PDT -ajb176,2024-06-07T05:16:02Z,- ajb176 opened pull request: [6971](https://github.com/hackforla/website/pull/6971) at 2024-06-06 10:16 PM PDT -ajb176,2024-06-07T05:18:57Z,- ajb176 pull request closed w/o merging: [6959](https://github.com/hackforla/website/pull/6959#event-13075157745) at 2024-06-06 10:18 PM PDT -ajb176,2024-06-13T21:56:23Z,- ajb176 submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2117097380) at 2024-06-13 02:56 PM PDT -ajb176,2024-06-13T22:02:30Z,- ajb176 commented on pull request: [7002](https://github.com/hackforla/website/pull/7002#issuecomment-2166868548) at 2024-06-13 03:02 PM PDT -ajb176,2024-06-13T22:14:42Z,- ajb176 commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166881453) at 2024-06-13 03:14 PM PDT -ajb176,2024-06-15T06:09:49Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2169153480) at 2024-06-14 11:09 PM PDT -ajb176,2024-06-17T13:40:49Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2173428363) at 2024-06-17 06:40 AM PDT -ajb176,2024-06-21T07:43:03Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2182190643) at 2024-06-21 12:43 AM PDT -ajb176,2024-07-31T11:39:55Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2260319006) at 2024-07-31 04:39 AM PDT -ajb176,2024-08-03T08:45:53Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2266642257) at 2024-08-03 01:45 AM PDT -ajb176,2024-08-04T13:44:22Z,- ajb176 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2267548645) at 2024-08-04 06:44 AM PDT -ajb176,2024-09-18T06:47:36Z,- ajb176 opened pull request: [7491](https://github.com/hackforla/website/pull/7491) at 2024-09-17 11:47 PM PDT -ajb176,2024-09-18T06:49:47Z,- ajb176 pull request closed w/o merging: [7491](https://github.com/hackforla/website/pull/7491#event-14302268691) at 2024-09-17 11:49 PM PDT -ajb176,2024-09-26T15:42:07Z,- ajb176 submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2331699119) at 2024-09-26 08:42 AM PDT -ajb176,2024-09-27T07:20:03Z,- ajb176 submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2332945700) at 2024-09-27 12:20 AM PDT -ajb176,2024-11-05T13:14:20Z,- ajb176 commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2457139628) at 2024-11-05 05:14 AM PST -ajb176,2024-11-05T14:40:42Z,- ajb176 submitted pull request review: [7700](https://github.com/hackforla/website/pull/7700#pullrequestreview-2415832192) at 2024-11-05 06:40 AM PST -ajb176,2024-11-06T09:27:21Z,- ajb176 submitted pull request review: [7700](https://github.com/hackforla/website/pull/7700#pullrequestreview-2417675937) at 2024-11-06 01:27 AM PST -ajb176,2024-11-06T09:53:13Z,- ajb176 commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2459165182) at 2024-11-06 01:53 AM PST -ajb176,2024-11-12T17:13:28Z,- ajb176 submitted pull request review: [7712](https://github.com/hackforla/website/pull/7712#pullrequestreview-2430235446) at 2024-11-12 09:13 AM PST -ajb176,2024-12-23T12:33:39Z,- ajb176 commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2559625967) at 2024-12-23 04:33 AM PST -ajb176,2025-01-12T18:22:33Z,- ajb176 commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2585858917) at 2025-01-12 10:22 AM PST -ajb176,2025-01-13T16:10:14Z,- ajb176 commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2587548053) at 2025-01-13 08:10 AM PST -ajb176,2025-01-14T12:33:21Z,- ajb176 submitted pull request review: [7777](https://github.com/hackforla/website/pull/7777#pullrequestreview-2549586502) at 2025-01-14 04:33 AM PST -ajb176,2025-03-04T09:03:06Z,- ajb176 commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2696718667) at 2025-03-04 01:03 AM PST -ajb176,2025-03-04T09:05:11Z,- ajb176 submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2656551171) at 2025-03-04 01:05 AM PST -ajb176,2025-03-05T04:06:14Z,- ajb176 submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2659811917) at 2025-03-04 08:06 PM PST -ajb176,2025-04-07T12:20:01Z,- ajb176 submitted pull request review: [8047](https://github.com/hackforla/website/pull/8047#pullrequestreview-2746620331) at 2025-04-07 05:20 AM PDT -akhilender-bongirwar,2023-09-16T18:29:38Z,- akhilender-bongirwar commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1722288602) at 2023-09-16 11:29 AM PDT -akibrhast,2021-02-03T07:20:48Z,- akibrhast opened pull request: [993](https://github.com/hackforla/website/pull/993) at 2021-02-02 11:20 PM PST -akibrhast,2021-02-03T07:21:52Z,- akibrhast assigned to issue: [991](https://github.com/hackforla/website/issues/991) at 2021-02-02 11:21 PM PST -akibrhast,2021-02-03T07:23:45Z,- akibrhast commented on pull request: [993](https://github.com/hackforla/website/pull/993#issuecomment-772295757) at 2021-02-02 11:23 PM PST -akibrhast,2021-02-03T17:09:35Z,- akibrhast pull request merged: [993](https://github.com/hackforla/website/pull/993#event-4286483160) at 2021-02-03 09:09 AM PST -akibrhast,2021-02-03T17:24:58Z,- akibrhast assigned to issue: [989](https://github.com/hackforla/website/issues/989) at 2021-02-03 09:24 AM PST -akibrhast,2021-02-07T17:28:03Z,- akibrhast opened pull request: [1008](https://github.com/hackforla/website/pull/1008) at 2021-02-07 09:28 AM PST -akibrhast,2021-02-07T17:31:19Z,- akibrhast commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774714588) at 2021-02-07 09:31 AM PST -akibrhast,2021-02-07T17:38:46Z,- akibrhast commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774715975) at 2021-02-07 09:38 AM PST -akibrhast,2021-02-07T18:00:47Z,- akibrhast commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774720242) at 2021-02-07 10:00 AM PST -akibrhast,2021-02-07T18:01:17Z,- akibrhast commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774721069) at 2021-02-07 10:01 AM PST -akibrhast,2021-02-07T18:58:01Z,- akibrhast commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774733507) at 2021-02-07 10:58 AM PST -akibrhast,2021-02-07T19:49:20Z,- akibrhast commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774746265) at 2021-02-07 11:49 AM PST -akibrhast,2021-02-07T19:53:04Z,- akibrhast pull request merged: [1008](https://github.com/hackforla/website/pull/1008#event-4300608362) at 2021-02-07 11:53 AM PST -akibrhast,2021-02-07T20:09:21Z,- akibrhast opened issue: [1013](https://github.com/hackforla/website/issues/1013) at 2021-02-07 12:09 PM PST -akibrhast,2021-02-07T20:11:42Z,- akibrhast commented on issue: [1013](https://github.com/hackforla/website/issues/1013#issuecomment-774752345) at 2021-02-07 12:11 PM PST -akibrhast,2021-02-07T20:36:49Z,- akibrhast assigned to issue: [862](https://github.com/hackforla/website/issues/862) at 2021-02-07 12:36 PM PST -akibrhast,2021-02-08T07:54:59Z,- akibrhast commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-774948436) at 2021-02-07 11:54 PM PST -akibrhast,2021-02-10T04:18:22Z,- akibrhast assigned to issue: [1030](https://github.com/hackforla/website/issues/1030) at 2021-02-09 08:18 PM PST -akibrhast,2021-02-10T22:03:54Z,- akibrhast commented on issue: [1030](https://github.com/hackforla/website/issues/1030#issuecomment-777066335) at 2021-02-10 02:03 PM PST -akibrhast,2021-02-13T20:47:15Z,- akibrhast commented on issue: [1030](https://github.com/hackforla/website/issues/1030#issuecomment-778676110) at 2021-02-13 12:47 PM PST -akibrhast,2021-02-13T23:08:51Z,- akibrhast opened pull request: [1034](https://github.com/hackforla/website/pull/1034) at 2021-02-13 03:08 PM PST -akibrhast,2021-02-13T23:10:26Z,- akibrhast commented on issue: [1030](https://github.com/hackforla/website/issues/1030#issuecomment-778691387) at 2021-02-13 03:10 PM PST -akibrhast,2021-02-13T23:19:17Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-778692198) at 2021-02-13 03:19 PM PST -akibrhast,2021-02-14T01:17:19Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778704066) at 2021-02-13 05:17 PM PST -akibrhast,2021-02-14T02:12:25Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778709332) at 2021-02-13 06:12 PM PST -akibrhast,2021-02-14T02:13:10Z,- akibrhast opened issue: [1035](https://github.com/hackforla/website/issues/1035) at 2021-02-13 06:13 PM PST -akibrhast,2021-02-14T02:14:08Z,- akibrhast closed issue as completed: [1035](https://github.com/hackforla/website/issues/1035#event-4328329393) at 2021-02-13 06:14 PM PST -akibrhast,2021-02-14T02:16:46Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778709751) at 2021-02-13 06:16 PM PST -akibrhast,2021-02-14T02:42:57Z,- akibrhast opened issue: [1036](https://github.com/hackforla/website/issues/1036) at 2021-02-13 06:42 PM PST -akibrhast,2021-02-14T02:43:20Z,- akibrhast commented on issue: [1036](https://github.com/hackforla/website/issues/1036#issuecomment-778712371) at 2021-02-13 06:43 PM PST -akibrhast,2021-02-14T02:43:20Z,- akibrhast closed issue as completed: [1036](https://github.com/hackforla/website/issues/1036#event-4328342247) at 2021-02-13 06:43 PM PST -akibrhast,2021-02-14T02:44:37Z,- akibrhast opened issue: [1037](https://github.com/hackforla/website/issues/1037) at 2021-02-13 06:44 PM PST -akibrhast,2021-02-14T02:45:18Z,- akibrhast commented on issue: [1037](https://github.com/hackforla/website/issues/1037#issuecomment-778712568) at 2021-02-13 06:45 PM PST -akibrhast,2021-02-14T02:47:02Z,- akibrhast closed issue as completed: [1037](https://github.com/hackforla/website/issues/1037#event-4328343829) at 2021-02-13 06:47 PM PST -akibrhast,2021-02-14T03:54:59Z,- akibrhast opened issue: [1038](https://github.com/hackforla/website/issues/1038) at 2021-02-13 07:54 PM PST -akibrhast,2021-02-14T03:58:40Z,- akibrhast closed issue as completed: [1038](https://github.com/hackforla/website/issues/1038#event-4328376829) at 2021-02-13 07:58 PM PST -akibrhast,2021-02-14T04:16:35Z,- akibrhast opened issue: [1039](https://github.com/hackforla/website/issues/1039) at 2021-02-13 08:16 PM PST -akibrhast,2021-02-14T04:18:23Z,- akibrhast commented on issue: [1039](https://github.com/hackforla/website/issues/1039#issuecomment-778721553) at 2021-02-13 08:18 PM PST -akibrhast,2021-02-14T04:18:23Z,- akibrhast closed issue as completed: [1039](https://github.com/hackforla/website/issues/1039#event-4328386020) at 2021-02-13 08:18 PM PST -akibrhast,2021-02-14T04:19:16Z,- akibrhast opened issue: [1040](https://github.com/hackforla/website/issues/1040) at 2021-02-13 08:19 PM PST -akibrhast,2021-02-14T04:21:01Z,- akibrhast closed issue as completed: [1040](https://github.com/hackforla/website/issues/1040#event-4328387333) at 2021-02-13 08:21 PM PST -akibrhast,2021-02-14T04:29:41Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-778722671) at 2021-02-13 08:29 PM PST -akibrhast,2021-02-14T18:18:25Z,- akibrhast assigned to issue: [1053](https://github.com/hackforla/website/issues/1053) at 2021-02-14 10:18 AM PST -akibrhast,2021-02-14T18:43:11Z,- akibrhast commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778822022) at 2021-02-14 10:43 AM PST -akibrhast,2021-02-14T19:04:15Z,- akibrhast unassigned from issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-775180799) at 2021-02-14 11:04 AM PST -akibrhast,2021-02-15T01:25:41Z,- akibrhast commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778884166) at 2021-02-14 05:25 PM PST -akibrhast,2021-02-15T18:17:36Z,- akibrhast opened issue: [1056](https://github.com/hackforla/website/issues/1056) at 2021-02-15 10:17 AM PST -akibrhast,2021-02-15T18:21:31Z,- akibrhast closed issue as completed: [1053](https://github.com/hackforla/website/issues/1053#event-4332995360) at 2021-02-15 10:21 AM PST -akibrhast,2021-02-15T18:28:21Z,- akibrhast closed issue as completed: [1010](https://github.com/hackforla/website/issues/1010#event-4333013587) at 2021-02-15 10:28 AM PST -akibrhast,2021-02-15T18:28:29Z,- akibrhast reopened issue: [1010](https://github.com/hackforla/website/issues/1010#event-4333013587) at 2021-02-15 10:28 AM PST -akibrhast,2021-02-16T02:56:48Z,- akibrhast pull request merged: [1034](https://github.com/hackforla/website/pull/1034#event-4334097306) at 2021-02-15 06:56 PM PST -akibrhast,2021-02-16T22:30:48Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-780159714) at 2021-02-16 02:30 PM PST -akibrhast,2021-02-17T00:38:22Z,- akibrhast assigned to issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-16 04:38 PM PST -akibrhast,2021-02-17T01:03:32Z,- akibrhast opened pull request: [1059](https://github.com/hackforla/website/pull/1059) at 2021-02-16 05:03 PM PST -akibrhast,2021-02-17T01:08:50Z,- akibrhast commented on issue: [1043](https://github.com/hackforla/website/issues/1043#issuecomment-780223365) at 2021-02-16 05:08 PM PST -akibrhast,2021-02-17T01:14:59Z,- akibrhast commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780225800) at 2021-02-16 05:14 PM PST -akibrhast,2021-02-17T01:24:24Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-780230138) at 2021-02-16 05:24 PM PST -akibrhast,2021-02-17T01:28:00Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-780231420) at 2021-02-16 05:28 PM PST -akibrhast,2021-02-17T01:54:22Z,- akibrhast commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-780240463) at 2021-02-16 05:54 PM PST -akibrhast,2021-02-17T02:08:39Z,- akibrhast commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780246143) at 2021-02-16 06:08 PM PST -akibrhast,2021-02-17T03:11:10Z,- akibrhast commented on pull request: [1058](https://github.com/hackforla/website/pull/1058#issuecomment-780266605) at 2021-02-16 07:11 PM PST -akibrhast,2021-02-17T03:11:19Z,- akibrhast closed issue by PR 1058: [1050](https://github.com/hackforla/website/issues/1050#event-4339240161) at 2021-02-16 07:11 PM PST -akibrhast,2021-02-17T03:22:10Z,- akibrhast pull request merged: [1059](https://github.com/hackforla/website/pull/1059#event-4339263294) at 2021-02-16 07:22 PM PST -akibrhast,2021-02-17T03:53:01Z,- akibrhast assigned to issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780277146) at 2021-02-16 07:53 PM PST -akibrhast,2021-02-17T15:18:49Z,- akibrhast commented on issue: [1062](https://github.com/hackforla/website/issues/1062#issuecomment-780627575) at 2021-02-17 07:18 AM PST -akibrhast,2021-02-17T15:18:49Z,- akibrhast closed issue as completed: [1062](https://github.com/hackforla/website/issues/1062#event-4341952171) at 2021-02-17 07:18 AM PST -akibrhast,2021-02-17T16:08:07Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780664773) at 2021-02-17 08:08 AM PST -akibrhast,2021-02-17T16:16:19Z,- akibrhast commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-780670600) at 2021-02-17 08:16 AM PST -akibrhast,2021-02-17T16:42:01Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780688267) at 2021-02-17 08:42 AM PST -akibrhast,2021-02-18T03:36:11Z,- akibrhast commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781024676) at 2021-02-17 07:36 PM PST -akibrhast,2021-02-18T03:53:49Z,- akibrhast submitted pull request review: [1073](https://github.com/hackforla/website/pull/1073#pullrequestreview-592832595) at 2021-02-17 07:53 PM PST -akibrhast,2021-02-18T04:14:51Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-781036771) at 2021-02-17 08:14 PM PST -akibrhast,2021-02-18T04:41:23Z,- akibrhast commented on pull request: [1072](https://github.com/hackforla/website/pull/1072#issuecomment-781045101) at 2021-02-17 08:41 PM PST -akibrhast,2021-02-18T05:48:38Z,- akibrhast submitted pull request review: [1073](https://github.com/hackforla/website/pull/1073#pullrequestreview-592870084) at 2021-02-17 09:48 PM PST -akibrhast,2021-02-18T05:51:27Z,- akibrhast commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781075013) at 2021-02-17 09:51 PM PST -akibrhast,2021-02-18T16:28:54Z,- akibrhast commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781467725) at 2021-02-18 08:28 AM PST -akibrhast,2021-02-19T17:35:10Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-782224871) at 2021-02-19 09:35 AM PST -akibrhast,2021-02-21T18:14:13Z,- akibrhast assigned to issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-782224871) at 2021-02-21 10:14 AM PST -akibrhast,2021-02-21T19:19:40Z,- akibrhast commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-782910507) at 2021-02-21 11:19 AM PST -akibrhast,2021-02-22T00:38:09Z,- akibrhast submitted pull request review: [1088](https://github.com/hackforla/website/pull/1088#pullrequestreview-594903719) at 2021-02-21 04:38 PM PST -akibrhast,2021-02-22T00:45:02Z,- akibrhast opened issue: [1090](https://github.com/hackforla/website/issues/1090) at 2021-02-21 04:45 PM PST -akibrhast,2021-02-22T01:01:19Z,- akibrhast assigned to issue: [1069](https://github.com/hackforla/website/issues/1069) at 2021-02-21 05:01 PM PST -akibrhast,2021-02-22T01:03:12Z,- akibrhast commented on issue: [1069](https://github.com/hackforla/website/issues/1069#issuecomment-782973752) at 2021-02-21 05:03 PM PST -akibrhast,2021-02-22T01:06:02Z,- akibrhast commented on issue: [1066](https://github.com/hackforla/website/issues/1066#issuecomment-782974307) at 2021-02-21 05:06 PM PST -akibrhast,2021-02-22T03:22:32Z,- akibrhast submitted pull request review: [1087](https://github.com/hackforla/website/pull/1087#pullrequestreview-594985868) at 2021-02-21 07:22 PM PST -akibrhast,2021-02-22T17:04:01Z,- akibrhast opened pull request: [1092](https://github.com/hackforla/website/pull/1092) at 2021-02-22 09:04 AM PST -akibrhast,2021-02-22T17:26:40Z,- akibrhast submitted pull request review: [1091](https://github.com/hackforla/website/pull/1091#pullrequestreview-595596272) at 2021-02-22 09:26 AM PST -akibrhast,2021-02-22T17:47:25Z,- akibrhast commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783551634) at 2021-02-22 09:47 AM PST -akibrhast,2021-02-22T17:51:18Z,- akibrhast commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-783553986) at 2021-02-22 09:51 AM PST -akibrhast,2021-02-22T17:58:01Z,- akibrhast submitted pull request review: [1091](https://github.com/hackforla/website/pull/1091#pullrequestreview-595625232) at 2021-02-22 09:58 AM PST -akibrhast,2021-02-22T18:07:22Z,- akibrhast commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783564135) at 2021-02-22 10:07 AM PST -akibrhast,2021-02-22T18:08:28Z,- akibrhast closed issue by PR 1091: [1080](https://github.com/hackforla/website/issues/1080#event-4361167216) at 2021-02-22 10:08 AM PST -akibrhast,2021-02-22T19:42:37Z,- akibrhast commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783625432) at 2021-02-22 11:42 AM PST -akibrhast,2021-02-22T20:40:33Z,- akibrhast commented on pull request: [1092](https://github.com/hackforla/website/pull/1092#issuecomment-783660525) at 2021-02-22 12:40 PM PST -akibrhast,2021-02-23T00:02:41Z,- akibrhast opened issue: [1093](https://github.com/hackforla/website/issues/1093) at 2021-02-22 04:02 PM PST -akibrhast,2021-02-23T00:02:56Z,- akibrhast assigned to issue: [1093](https://github.com/hackforla/website/issues/1093) at 2021-02-22 04:02 PM PST -akibrhast,2021-02-23T00:04:20Z,- akibrhast commented on issue: [1093](https://github.com/hackforla/website/issues/1093#issuecomment-783768166) at 2021-02-22 04:04 PM PST -akibrhast,2021-02-23T04:57:57Z,- akibrhast submitted pull request review: [1094](https://github.com/hackforla/website/pull/1094#pullrequestreview-595996658) at 2021-02-22 08:57 PM PST -akibrhast,2021-02-23T04:59:21Z,- akibrhast closed issue by PR 1094: [863](https://github.com/hackforla/website/issues/863#event-4363195925) at 2021-02-22 08:59 PM PST -akibrhast,2021-02-23T05:07:30Z,- akibrhast opened pull request: [1095](https://github.com/hackforla/website/pull/1095) at 2021-02-22 09:07 PM PST -akibrhast,2021-02-23T19:51:11Z,- akibrhast commented on issue: [1093](https://github.com/hackforla/website/issues/1093#issuecomment-784467271) at 2021-02-23 11:51 AM PST -akibrhast,2021-02-23T19:52:01Z,- akibrhast commented on issue: [1069](https://github.com/hackforla/website/issues/1069#issuecomment-784467767) at 2021-02-23 11:52 AM PST -akibrhast,2021-02-23T19:55:40Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-784469977) at 2021-02-23 11:55 AM PST -akibrhast,2021-02-24T03:23:03Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-597032529) at 2021-02-23 07:23 PM PST -akibrhast,2021-02-24T03:45:06Z,- akibrhast submitted pull request review: [1097](https://github.com/hackforla/website/pull/1097#pullrequestreview-597040626) at 2021-02-23 07:45 PM PST -akibrhast,2021-02-24T03:45:20Z,- akibrhast closed issue by PR 1097: [1042](https://github.com/hackforla/website/issues/1042#event-4368626813) at 2021-02-23 07:45 PM PST -akibrhast,2021-02-24T03:51:36Z,- akibrhast opened issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:51 PM PST -akibrhast,2021-02-24T03:55:30Z,- akibrhast assigned to issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:55 PM PST -akibrhast,2021-02-24T03:55:39Z,- akibrhast unassigned from issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:55 PM PST -akibrhast,2021-02-24T03:56:21Z,- akibrhast assigned to issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:56 PM PST -akibrhast,2021-02-24T03:56:25Z,- akibrhast unassigned from issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:56 PM PST -akibrhast,2021-02-24T04:30:27Z,- akibrhast pull request merged: [1095](https://github.com/hackforla/website/pull/1095#event-4368733283) at 2021-02-23 08:30 PM PST -akibrhast,2021-02-24T05:04:18Z,- akibrhast opened pull request: [1100](https://github.com/hackforla/website/pull/1100) at 2021-02-23 09:04 PM PST -akibrhast,2021-02-24T05:04:53Z,- akibrhast pull request closed w/o merging: [1092](https://github.com/hackforla/website/pull/1092#event-4368816443) at 2021-02-23 09:04 PM PST -akibrhast,2021-02-24T05:13:02Z,- akibrhast commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-784771774) at 2021-02-23 09:13 PM PST -akibrhast,2021-02-24T05:39:25Z,- akibrhast submitted pull request review: [1101](https://github.com/hackforla/website/pull/1101#pullrequestreview-597090537) at 2021-02-23 09:39 PM PST -akibrhast,2021-02-24T05:39:43Z,- akibrhast closed issue by PR 1101: [1056](https://github.com/hackforla/website/issues/1056#event-4368922805) at 2021-02-23 09:39 PM PST -akibrhast,2021-02-24T06:18:18Z,- akibrhast commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-784818897) at 2021-02-23 10:18 PM PST -akibrhast,2021-02-24T06:25:56Z,- akibrhast opened issue: [1104](https://github.com/hackforla/website/issues/1104) at 2021-02-23 10:25 PM PST -akibrhast,2021-02-24T06:26:51Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-784823700) at 2021-02-23 10:26 PM PST -akibrhast,2021-02-24T06:51:38Z,- akibrhast closed issue as completed: [1010](https://github.com/hackforla/website/issues/1010#event-4369154841) at 2021-02-23 10:51 PM PST -akibrhast,2021-02-25T00:32:26Z,- akibrhast commented on pull request: [1108](https://github.com/hackforla/website/pull/1108#issuecomment-785487253) at 2021-02-24 04:32 PM PST -akibrhast,2021-02-25T00:32:47Z,- akibrhast submitted pull request review: [1108](https://github.com/hackforla/website/pull/1108#pullrequestreview-598057801) at 2021-02-24 04:32 PM PST -akibrhast,2021-02-25T01:34:44Z,- akibrhast opened issue: [1109](https://github.com/hackforla/website/issues/1109) at 2021-02-24 05:34 PM PST -akibrhast,2021-02-25T01:39:52Z,- akibrhast opened issue: [1110](https://github.com/hackforla/website/issues/1110) at 2021-02-24 05:39 PM PST -akibrhast,2021-02-25T01:43:38Z,- akibrhast opened issue: [1111](https://github.com/hackforla/website/issues/1111) at 2021-02-24 05:43 PM PST -akibrhast,2021-02-25T01:48:31Z,- akibrhast opened issue: [1112](https://github.com/hackforla/website/issues/1112) at 2021-02-24 05:48 PM PST -akibrhast,2021-02-25T01:53:24Z,- akibrhast opened issue: [1113](https://github.com/hackforla/website/issues/1113) at 2021-02-24 05:53 PM PST -akibrhast,2021-02-25T01:56:18Z,- akibrhast opened issue: [1114](https://github.com/hackforla/website/issues/1114) at 2021-02-24 05:56 PM PST -akibrhast,2021-02-25T01:56:37Z,- akibrhast assigned to issue: [1114](https://github.com/hackforla/website/issues/1114) at 2021-02-24 05:56 PM PST -akibrhast,2021-02-25T01:57:28Z,- akibrhast assigned to issue: [1113](https://github.com/hackforla/website/issues/1113) at 2021-02-24 05:57 PM PST -akibrhast,2021-02-25T01:58:11Z,- akibrhast assigned to issue: [1112](https://github.com/hackforla/website/issues/1112) at 2021-02-24 05:58 PM PST -akibrhast,2021-02-25T01:58:54Z,- akibrhast assigned to issue: [1111](https://github.com/hackforla/website/issues/1111) at 2021-02-24 05:58 PM PST -akibrhast,2021-02-25T01:59:48Z,- akibrhast assigned to issue: [1109](https://github.com/hackforla/website/issues/1109) at 2021-02-24 05:59 PM PST -akibrhast,2021-02-25T02:03:30Z,- akibrhast opened issue: [1115](https://github.com/hackforla/website/issues/1115) at 2021-02-24 06:03 PM PST -akibrhast,2021-02-25T02:07:55Z,- akibrhast opened issue: [1116](https://github.com/hackforla/website/issues/1116) at 2021-02-24 06:07 PM PST -akibrhast,2021-02-25T02:13:45Z,- akibrhast opened pull request: [1117](https://github.com/hackforla/website/pull/1117) at 2021-02-24 06:13 PM PST -akibrhast,2021-02-25T23:39:35Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786305710) at 2021-02-25 03:39 PM PST -akibrhast,2021-02-26T00:16:43Z,- akibrhast opened pull request: [1121](https://github.com/hackforla/website/pull/1121) at 2021-02-25 04:16 PM PST -akibrhast,2021-02-26T00:20:59Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-786320635) at 2021-02-25 04:20 PM PST -akibrhast,2021-02-26T03:02:03Z,- akibrhast pull request merged: [1121](https://github.com/hackforla/website/pull/1121#event-4379779404) at 2021-02-25 07:02 PM PST -akibrhast,2021-02-26T07:34:22Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786468781) at 2021-02-25 11:34 PM PST -akibrhast,2021-02-26T09:20:40Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786519918) at 2021-02-26 01:20 AM PST -akibrhast,2021-02-26T17:33:17Z,- akibrhast assigned to issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786788081) at 2021-02-26 09:33 AM PST -akibrhast,2021-02-26T17:47:49Z,- akibrhast commented on issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-02-26 09:47 AM PST -akibrhast,2021-02-26T18:19:01Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786813141) at 2021-02-26 10:19 AM PST -akibrhast,2021-02-26T19:19:40Z,- akibrhast commented on pull request: [1124](https://github.com/hackforla/website/pull/1124#issuecomment-786844165) at 2021-02-26 11:19 AM PST -akibrhast,2021-02-26T19:20:53Z,- akibrhast submitted pull request review: [1124](https://github.com/hackforla/website/pull/1124#pullrequestreview-599872471) at 2021-02-26 11:20 AM PST -akibrhast,2021-02-26T22:38:26Z,- akibrhast submitted pull request review: [1120](https://github.com/hackforla/website/pull/1120#pullrequestreview-600005184) at 2021-02-26 02:38 PM PST -akibrhast,2021-02-26T22:38:39Z,- akibrhast closed issue by PR 1120: [1047](https://github.com/hackforla/website/issues/1047#event-4384057700) at 2021-02-26 02:38 PM PST -akibrhast,2021-02-26T22:40:11Z,- akibrhast assigned to issue: [1116](https://github.com/hackforla/website/issues/1116) at 2021-02-26 02:40 PM PST -akibrhast,2021-02-27T18:37:22Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-787116725) at 2021-02-27 10:37 AM PST -akibrhast,2021-02-27T20:21:18Z,- akibrhast commented on pull request: [1100](https://github.com/hackforla/website/pull/1100#issuecomment-787129795) at 2021-02-27 12:21 PM PST -akibrhast,2021-02-28T15:57:43Z,- akibrhast commented on issue: [1109](https://github.com/hackforla/website/issues/1109#issuecomment-787474088) at 2021-02-28 07:57 AM PST -akibrhast,2021-02-28T16:02:59Z,- akibrhast commented on issue: [1111](https://github.com/hackforla/website/issues/1111#issuecomment-787474839) at 2021-02-28 08:02 AM PST -akibrhast,2021-02-28T16:03:48Z,- akibrhast commented on issue: [1116](https://github.com/hackforla/website/issues/1116#issuecomment-787474979) at 2021-02-28 08:03 AM PST -akibrhast,2021-02-28T16:04:29Z,- akibrhast commented on issue: [1114](https://github.com/hackforla/website/issues/1114#issuecomment-787475100) at 2021-02-28 08:04 AM PST -akibrhast,2021-02-28T16:04:54Z,- akibrhast commented on issue: [1113](https://github.com/hackforla/website/issues/1113#issuecomment-787475169) at 2021-02-28 08:04 AM PST -akibrhast,2021-02-28T16:05:07Z,- akibrhast commented on issue: [1112](https://github.com/hackforla/website/issues/1112#issuecomment-787475206) at 2021-02-28 08:05 AM PST -akibrhast,2021-02-28T16:05:53Z,- akibrhast unassigned from issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-02-28 08:05 AM PST -akibrhast,2021-02-28T18:40:04Z,- akibrhast commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-787499863) at 2021-02-28 10:40 AM PST -akibrhast,2021-02-28T19:46:22Z,- akibrhast pull request merged: [1117](https://github.com/hackforla/website/pull/1117#event-4386455258) at 2021-02-28 11:46 AM PST -akibrhast,2021-02-28T21:14:49Z,- akibrhast submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-600306272) at 2021-02-28 01:14 PM PST -akibrhast,2021-02-28T21:40:15Z,- akibrhast commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787527880) at 2021-02-28 01:40 PM PST -akibrhast,2021-02-28T22:24:30Z,- akibrhast commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787535330) at 2021-02-28 02:24 PM PST -akibrhast,2021-02-28T23:09:41Z,- akibrhast commented on pull request: [1140](https://github.com/hackforla/website/pull/1140#issuecomment-787542123) at 2021-02-28 03:09 PM PST -akibrhast,2021-02-28T23:33:41Z,- akibrhast commented on pull request: [1140](https://github.com/hackforla/website/pull/1140#issuecomment-787545995) at 2021-02-28 03:33 PM PST -akibrhast,2021-03-01T23:31:10Z,- akibrhast commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788394228) at 2021-03-01 03:31 PM PST -akibrhast,2021-03-01T23:33:12Z,- akibrhast commented on issue: [1107](https://github.com/hackforla/website/issues/1107#issuecomment-788395101) at 2021-03-01 03:33 PM PST -akibrhast,2021-03-01T23:35:22Z,- akibrhast submitted pull request review: [1145](https://github.com/hackforla/website/pull/1145#pullrequestreview-601269530) at 2021-03-01 03:35 PM PST -akibrhast,2021-03-02T00:07:47Z,- akibrhast submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-601285747) at 2021-03-01 04:07 PM PST -akibrhast,2021-03-02T03:43:46Z,- akibrhast commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-788556860) at 2021-03-01 07:43 PM PST -akibrhast,2021-03-02T04:00:09Z,- akibrhast submitted pull request review: [1143](https://github.com/hackforla/website/pull/1143#pullrequestreview-601386327) at 2021-03-01 08:00 PM PST -akibrhast,2021-03-02T04:16:00Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-601393351) at 2021-03-01 08:16 PM PST -akibrhast,2021-03-02T04:48:19Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-601409395) at 2021-03-01 08:48 PM PST -akibrhast,2021-03-02T06:50:59Z,- akibrhast submitted pull request review: [1148](https://github.com/hackforla/website/pull/1148#pullrequestreview-601475237) at 2021-03-01 10:50 PM PST -akibrhast,2021-03-02T18:52:00Z,- akibrhast submitted pull request review: [1147](https://github.com/hackforla/website/pull/1147#pullrequestreview-602155087) at 2021-03-02 10:52 AM PST -akibrhast,2021-03-03T01:10:38Z,- akibrhast submitted pull request review: [1149](https://github.com/hackforla/website/pull/1149#pullrequestreview-602419454) at 2021-03-02 05:10 PM PST -akibrhast,2021-03-03T01:11:04Z,- akibrhast closed issue by PR 1149: [896](https://github.com/hackforla/website/issues/896#event-4398909847) at 2021-03-02 05:11 PM PST -akibrhast,2021-03-03T02:04:38Z,- akibrhast commented on pull request: [1153](https://github.com/hackforla/website/pull/1153#issuecomment-789368338) at 2021-03-02 06:04 PM PST -akibrhast,2021-03-03T02:05:13Z,- akibrhast submitted pull request review: [1153](https://github.com/hackforla/website/pull/1153#pullrequestreview-602443672) at 2021-03-02 06:05 PM PST -akibrhast,2021-03-03T03:22:56Z,- akibrhast closed issue by PR 1147: [1106](https://github.com/hackforla/website/issues/1106#event-4399269699) at 2021-03-02 07:22 PM PST -akibrhast,2021-03-03T03:35:55Z,- akibrhast commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-789402425) at 2021-03-02 07:35 PM PST -akibrhast,2021-03-03T03:39:26Z,- akibrhast pull request merged: [1100](https://github.com/hackforla/website/pull/1100#event-4399315369) at 2021-03-02 07:39 PM PST -akibrhast,2021-03-03T05:06:14Z,- akibrhast closed issue by PR 1148: [1136](https://github.com/hackforla/website/issues/1136#event-4399557823) at 2021-03-02 09:06 PM PST -akibrhast,2021-03-03T05:20:54Z,- akibrhast closed issue by PR 1153: [1128](https://github.com/hackforla/website/issues/1128#event-4399608355) at 2021-03-02 09:20 PM PST -akibrhast,2021-03-03T16:16:14Z,- akibrhast opened pull request: [1157](https://github.com/hackforla/website/pull/1157) at 2021-03-03 08:16 AM PST -akibrhast,2021-03-03T16:41:38Z,- akibrhast commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-789864124) at 2021-03-03 08:41 AM PST -akibrhast,2021-03-03T18:49:47Z,- akibrhast commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789971856) at 2021-03-03 10:49 AM PST -akibrhast,2021-03-03T19:01:53Z,- akibrhast commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789979656) at 2021-03-03 11:01 AM PST -akibrhast,2021-03-03T20:49:55Z,- akibrhast commented on issue: [1127](https://github.com/hackforla/website/issues/1127#issuecomment-790045464) at 2021-03-03 12:49 PM PST -akibrhast,2021-03-03T20:49:56Z,- akibrhast closed issue as completed: [1127](https://github.com/hackforla/website/issues/1127#event-4404242982) at 2021-03-03 12:49 PM PST -akibrhast,2021-03-03T20:55:41Z,- akibrhast assigned to issue: [1067](https://github.com/hackforla/website/issues/1067) at 2021-03-03 12:55 PM PST -akibrhast,2021-03-03T20:55:50Z,- akibrhast unassigned from issue: [1067](https://github.com/hackforla/website/issues/1067) at 2021-03-03 12:55 PM PST -akibrhast,2021-03-03T22:23:48Z,- akibrhast opened pull request: [1159](https://github.com/hackforla/website/pull/1159) at 2021-03-03 02:23 PM PST -akibrhast,2021-03-03T22:50:09Z,- akibrhast pull request closed w/o merging: [1159](https://github.com/hackforla/website/pull/1159#event-4404695477) at 2021-03-03 02:50 PM PST -akibrhast,2021-03-04T02:01:58Z,- akibrhast submitted pull request review: [1160](https://github.com/hackforla/website/pull/1160#pullrequestreview-603635867) at 2021-03-03 06:01 PM PST -akibrhast,2021-03-04T02:02:03Z,- akibrhast closed issue by PR 1160: [1107](https://github.com/hackforla/website/issues/1107#event-4405291254) at 2021-03-03 06:02 PM PST -akibrhast,2021-03-04T20:50:08Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-790931956) at 2021-03-04 12:50 PM PST -akibrhast,2021-03-04T22:36:04Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-790993825) at 2021-03-04 02:36 PM PST -akibrhast,2021-03-04T23:45:07Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791034218) at 2021-03-04 03:45 PM PST -akibrhast,2021-03-05T00:10:41Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791044592) at 2021-03-04 04:10 PM PST -akibrhast,2021-03-05T01:15:03Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791070766) at 2021-03-04 05:15 PM PST -akibrhast,2021-03-05T01:21:53Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791073123) at 2021-03-04 05:21 PM PST -akibrhast,2021-03-05T18:17:19Z,- akibrhast submitted pull request review: [1161](https://github.com/hackforla/website/pull/1161#pullrequestreview-605484511) at 2021-03-05 10:17 AM PST -akibrhast,2021-03-05T18:21:09Z,- akibrhast closed issue by PR 1161: [1144](https://github.com/hackforla/website/issues/1144#event-4414896623) at 2021-03-05 10:21 AM PST -akibrhast,2021-03-06T07:34:38Z,- akibrhast pull request merged: [1157](https://github.com/hackforla/website/pull/1157#event-4416609979) at 2021-03-05 11:34 PM PST -akibrhast,2021-03-06T16:28:57Z,- akibrhast submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-605768851) at 2021-03-06 08:28 AM PST -akibrhast,2021-03-06T17:03:07Z,- akibrhast commented on issue: [1060](https://github.com/hackforla/website/issues/1060#issuecomment-791990296) at 2021-03-06 09:03 AM PST -akibrhast,2021-03-06T17:06:06Z,- akibrhast commented on issue: [1163](https://github.com/hackforla/website/issues/1163#issuecomment-791990857) at 2021-03-06 09:06 AM PST -akibrhast,2021-03-06T17:06:09Z,- akibrhast closed issue as completed: [1163](https://github.com/hackforla/website/issues/1163#event-4417069726) at 2021-03-06 09:06 AM PST -akibrhast,2021-03-06T17:13:30Z,- akibrhast commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-791991893) at 2021-03-06 09:13 AM PST -akibrhast,2021-03-06T17:28:25Z,- akibrhast commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-791994597) at 2021-03-06 09:28 AM PST -akibrhast,2021-03-06T19:50:34Z,- akibrhast submitted pull request review: [1162](https://github.com/hackforla/website/pull/1162#pullrequestreview-605783114) at 2021-03-06 11:50 AM PST -akibrhast,2021-03-06T19:50:42Z,- akibrhast closed issue by PR 1162: [1064](https://github.com/hackforla/website/issues/1064#event-4417228342) at 2021-03-06 11:50 AM PST -akibrhast,2021-03-07T19:08:28Z,- akibrhast opened issue: [1171](https://github.com/hackforla/website/issues/1171) at 2021-03-07 11:08 AM PST -akibrhast,2021-03-08T16:43:46Z,- akibrhast commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-792889502) at 2021-03-08 08:43 AM PST -akibrhast,2021-03-08T18:16:19Z,- akibrhast submitted pull request review: [1078](https://github.com/hackforla/website/pull/1078#pullrequestreview-606574383) at 2021-03-08 10:16 AM PST -akibrhast,2021-03-08T21:26:28Z,- akibrhast opened pull request: [1174](https://github.com/hackforla/website/pull/1174) at 2021-03-08 01:26 PM PST -akibrhast,2021-03-08T21:27:31Z,- akibrhast pull request merged: [1174](https://github.com/hackforla/website/pull/1174#event-4423676410) at 2021-03-08 01:27 PM PST -akibrhast,2021-03-08T21:43:48Z,- akibrhast submitted pull request review: [1173](https://github.com/hackforla/website/pull/1173#pullrequestreview-606734677) at 2021-03-08 01:43 PM PST -akibrhast,2021-03-08T23:04:34Z,- akibrhast opened pull request: [1175](https://github.com/hackforla/website/pull/1175) at 2021-03-08 03:04 PM PST -akibrhast,2021-03-08T23:37:01Z,- akibrhast pull request merged: [1175](https://github.com/hackforla/website/pull/1175#event-4424177590) at 2021-03-08 03:37 PM PST -akibrhast,2021-03-09T00:54:36Z,- akibrhast opened pull request: [1177](https://github.com/hackforla/website/pull/1177) at 2021-03-08 04:54 PM PST -akibrhast,2021-03-09T01:00:55Z,- akibrhast opened pull request: [1178](https://github.com/hackforla/website/pull/1178) at 2021-03-08 05:00 PM PST -akibrhast,2021-03-09T01:01:04Z,- akibrhast pull request closed w/o merging: [1177](https://github.com/hackforla/website/pull/1177#event-4424456500) at 2021-03-08 05:01 PM PST -akibrhast,2021-03-09T01:01:48Z,- akibrhast pull request closed w/o merging: [1178](https://github.com/hackforla/website/pull/1178#event-4424459513) at 2021-03-08 05:01 PM PST -akibrhast,2021-03-09T01:06:24Z,- akibrhast commented on pull request: [1179](https://github.com/hackforla/website/pull/1179#issuecomment-793227427) at 2021-03-08 05:06 PM PST -akibrhast,2021-03-09T03:01:45Z,- akibrhast submitted pull request review: [1176](https://github.com/hackforla/website/pull/1176#pullrequestreview-606893074) at 2021-03-08 07:01 PM PST -akibrhast,2021-03-09T03:04:02Z,- akibrhast submitted pull request review: [1172](https://github.com/hackforla/website/pull/1172#pullrequestreview-606893944) at 2021-03-08 07:04 PM PST -akibrhast,2021-03-09T14:59:05Z,- akibrhast submitted pull request review: [1181](https://github.com/hackforla/website/pull/1181#pullrequestreview-607504175) at 2021-03-09 06:59 AM PST -akibrhast,2021-03-09T17:57:00Z,- akibrhast submitted pull request review: [1172](https://github.com/hackforla/website/pull/1172#pullrequestreview-607701859) at 2021-03-09 09:57 AM PST -akibrhast,2021-03-09T17:57:09Z,- akibrhast closed issue by PR 1172: [1169](https://github.com/hackforla/website/issues/1169#event-4430258948) at 2021-03-09 09:57 AM PST -akibrhast,2021-03-09T18:09:28Z,- akibrhast submitted pull request review: [1182](https://github.com/hackforla/website/pull/1182#pullrequestreview-607712926) at 2021-03-09 10:09 AM PST -akibrhast,2021-03-10T00:33:42Z,- akibrhast commented on pull request: [1176](https://github.com/hackforla/website/pull/1176#issuecomment-794658535) at 2021-03-09 04:33 PM PST -akibrhast,2021-03-10T00:34:28Z,- akibrhast commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794659195) at 2021-03-09 04:34 PM PST -akibrhast,2021-03-10T00:42:53Z,- akibrhast opened issue: [1184](https://github.com/hackforla/website/issues/1184) at 2021-03-09 04:42 PM PST -akibrhast,2021-03-10T00:42:53Z,- akibrhast assigned to issue: [1184](https://github.com/hackforla/website/issues/1184) at 2021-03-09 04:42 PM PST -akibrhast,2021-03-10T00:53:10Z,- akibrhast submitted pull request review: [1176](https://github.com/hackforla/website/pull/1176#pullrequestreview-608240425) at 2021-03-09 04:53 PM PST -akibrhast,2021-03-10T01:07:45Z,- akibrhast opened issue: [1185](https://github.com/hackforla/website/issues/1185) at 2021-03-09 05:07 PM PST -akibrhast,2021-03-10T01:07:48Z,- akibrhast assigned to issue: [1185](https://github.com/hackforla/website/issues/1185) at 2021-03-09 05:07 PM PST -akibrhast,2021-03-10T01:11:40Z,- akibrhast closed issue by PR 1176: [1167](https://github.com/hackforla/website/issues/1167#event-4432555853) at 2021-03-09 05:11 PM PST -akibrhast,2021-03-10T01:16:44Z,- akibrhast commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794695716) at 2021-03-09 05:16 PM PST -akibrhast,2021-03-10T01:23:39Z,- akibrhast opened pull request: [1186](https://github.com/hackforla/website/pull/1186) at 2021-03-09 05:23 PM PST -akibrhast,2021-03-10T01:24:15Z,- akibrhast commented on pull request: [1186](https://github.com/hackforla/website/pull/1186#issuecomment-794702386) at 2021-03-09 05:24 PM PST -akibrhast,2021-03-10T01:56:21Z,- akibrhast closed issue as completed: [935](https://github.com/hackforla/website/issues/935#event-4432744410) at 2021-03-09 05:56 PM PST -akibrhast,2021-03-10T03:09:25Z,- akibrhast opened issue: [1189](https://github.com/hackforla/website/issues/1189) at 2021-03-09 07:09 PM PST -akibrhast,2021-03-10T03:23:14Z,- akibrhast closed issue by PR 1158: [1154](https://github.com/hackforla/website/issues/1154#event-4433085861) at 2021-03-09 07:23 PM PST -akibrhast,2021-03-10T03:38:40Z,- akibrhast closed issue by PR 1188: [1089](https://github.com/hackforla/website/issues/1089#event-4433144800) at 2021-03-09 07:38 PM PST -akibrhast,2021-03-10T03:53:27Z,- akibrhast opened issue: [1190](https://github.com/hackforla/website/issues/1190) at 2021-03-09 07:53 PM PST -akibrhast,2021-03-10T03:56:27Z,- akibrhast commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-794831721) at 2021-03-09 07:56 PM PST -akibrhast,2021-03-10T03:57:57Z,- akibrhast submitted pull request review: [1191](https://github.com/hackforla/website/pull/1191#pullrequestreview-608311007) at 2021-03-09 07:57 PM PST -akibrhast,2021-03-10T03:58:05Z,- akibrhast closed issue by PR 1191: [1190](https://github.com/hackforla/website/issues/1190#event-4433215796) at 2021-03-09 07:58 PM PST -akibrhast,2021-03-10T05:21:03Z,- akibrhast pull request merged: [1186](https://github.com/hackforla/website/pull/1186#event-4433532994) at 2021-03-09 09:21 PM PST -akibrhast,2021-03-10T06:16:45Z,- akibrhast submitted pull request review: [1194](https://github.com/hackforla/website/pull/1194#pullrequestreview-608361907) at 2021-03-09 10:16 PM PST -akibrhast,2021-03-10T06:16:51Z,- akibrhast closed issue by PR 1194: [1131](https://github.com/hackforla/website/issues/1131#event-4433769836) at 2021-03-09 10:16 PM PST -akibrhast,2021-03-10T10:19:43Z,- akibrhast assigned to issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-794352694) at 2021-03-10 02:19 AM PST -akibrhast,2021-03-11T16:23:53Z,- akibrhast submitted pull request review: [1198](https://github.com/hackforla/website/pull/1198#pullrequestreview-609954662) at 2021-03-11 08:23 AM PST -akibrhast,2021-03-12T02:23:46Z,- akibrhast submitted pull request review: [1198](https://github.com/hackforla/website/pull/1198#pullrequestreview-610400877) at 2021-03-11 06:23 PM PST -akibrhast,2021-03-12T02:24:02Z,- akibrhast closed issue by PR 1198: [1189](https://github.com/hackforla/website/issues/1189#event-4448402944) at 2021-03-11 06:24 PM PST -akibrhast,2021-03-12T20:35:16Z,- akibrhast opened pull request: [1199](https://github.com/hackforla/website/pull/1199) at 2021-03-12 12:35 PM PST -akibrhast,2021-03-12T22:02:06Z,- akibrhast opened pull request: [1200](https://github.com/hackforla/website/pull/1200) at 2021-03-12 02:02 PM PST -akibrhast,2021-03-12T22:23:44Z,- akibrhast commented on issue: [1166](https://github.com/hackforla/website/issues/1166#issuecomment-797790519) at 2021-03-12 02:23 PM PST -akibrhast,2021-03-13T00:56:00Z,- akibrhast pull request merged: [1200](https://github.com/hackforla/website/pull/1200#event-4453238273) at 2021-03-12 05:56 PM PDT -akibrhast,2021-03-14T17:47:53Z,- akibrhast pull request merged: [1199](https://github.com/hackforla/website/pull/1199#event-4455522606) at 2021-03-14 10:47 AM PDT -akibrhast,2021-03-15T02:52:25Z,- akibrhast assigned to issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791073123) at 2021-03-14 07:52 PM PDT -akibrhast,2021-03-15T03:15:51Z,- akibrhast commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-799060766) at 2021-03-14 08:15 PM PDT -akibrhast,2021-03-15T16:20:43Z,- akibrhast submitted pull request review: [1206](https://github.com/hackforla/website/pull/1206#pullrequestreview-612389863) at 2021-03-15 09:20 AM PDT -akibrhast,2021-03-15T16:21:14Z,- akibrhast closed issue by PR 1206: [1146](https://github.com/hackforla/website/issues/1146#event-4459758195) at 2021-03-15 09:21 AM PDT -akibrhast,2021-03-15T16:41:19Z,- akibrhast submitted pull request review: [1204](https://github.com/hackforla/website/pull/1204#pullrequestreview-612412389) at 2021-03-15 09:41 AM PDT -akibrhast,2021-03-15T16:57:40Z,- akibrhast assigned to issue: [1201](https://github.com/hackforla/website/issues/1201) at 2021-03-15 09:57 AM PDT -akibrhast,2021-03-15T20:39:11Z,- akibrhast assigned to issue: [1207](https://github.com/hackforla/website/issues/1207) at 2021-03-15 01:39 PM PDT -akibrhast,2021-03-15T21:21:38Z,- akibrhast submitted pull request review: [1208](https://github.com/hackforla/website/pull/1208#pullrequestreview-612654150) at 2021-03-15 02:21 PM PDT -akibrhast,2021-03-15T21:21:53Z,- akibrhast closed issue by PR 1208: [1168](https://github.com/hackforla/website/issues/1168#event-4461137589) at 2021-03-15 02:21 PM PDT -akibrhast,2021-03-15T22:15:38Z,- akibrhast opened pull request: [1209](https://github.com/hackforla/website/pull/1209) at 2021-03-15 03:15 PM PDT -akibrhast,2021-03-15T22:20:28Z,- akibrhast pull request merged: [1209](https://github.com/hackforla/website/pull/1209#event-4461337777) at 2021-03-15 03:20 PM PDT -akibrhast,2021-03-16T15:52:49Z,- akibrhast commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-800383152) at 2021-03-16 08:52 AM PDT -akibrhast,2021-03-16T16:03:49Z,- akibrhast commented on pull request: [1204](https://github.com/hackforla/website/pull/1204#issuecomment-800392406) at 2021-03-16 09:03 AM PDT -akibrhast,2021-03-16T16:36:53Z,- akibrhast commented on issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-800421121) at 2021-03-16 09:36 AM PDT -akibrhast,2021-03-16T20:19:02Z,- akibrhast commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-800574687) at 2021-03-16 01:19 PM PDT -akibrhast,2021-03-16T20:19:29Z,- akibrhast assigned to issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-800574687) at 2021-03-16 01:19 PM PDT -akibrhast,2021-03-16T21:28:41Z,- akibrhast opened pull request: [1211](https://github.com/hackforla/website/pull/1211) at 2021-03-16 02:28 PM PDT -akibrhast,2021-03-17T00:28:32Z,- akibrhast commented on pull request: [1211](https://github.com/hackforla/website/pull/1211#issuecomment-800703587) at 2021-03-16 05:28 PM PDT -akibrhast,2021-03-17T00:45:39Z,- akibrhast submitted pull request review: [1204](https://github.com/hackforla/website/pull/1204#pullrequestreview-613835113) at 2021-03-16 05:45 PM PDT -akibrhast,2021-03-17T02:04:04Z,- akibrhast opened issue: [1212](https://github.com/hackforla/website/issues/1212) at 2021-03-16 07:04 PM PDT -akibrhast,2021-03-17T02:04:06Z,- akibrhast assigned to issue: [1212](https://github.com/hackforla/website/issues/1212) at 2021-03-16 07:04 PM PDT -akibrhast,2021-03-17T04:43:19Z,- akibrhast opened pull request: [1217](https://github.com/hackforla/website/pull/1217) at 2021-03-16 09:43 PM PDT -akibrhast,2021-03-17T18:07:50Z,- akibrhast assigned to issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-801298520) at 2021-03-17 11:07 AM PDT -akibrhast,2021-03-17T18:26:52Z,- akibrhast commented on pull request: [1217](https://github.com/hackforla/website/pull/1217#issuecomment-801312751) at 2021-03-17 11:26 AM PDT -akibrhast,2021-03-17T20:18:50Z,- akibrhast opened issue: [1220](https://github.com/hackforla/website/issues/1220) at 2021-03-17 01:18 PM PDT -akibrhast,2021-03-17T20:19:37Z,- akibrhast closed issue as completed: [1220](https://github.com/hackforla/website/issues/1220#event-4472392941) at 2021-03-17 01:19 PM PDT -akibrhast,2021-03-17T20:39:30Z,- akibrhast opened issue: [1221](https://github.com/hackforla/website/issues/1221) at 2021-03-17 01:39 PM PDT -akibrhast,2021-03-17T20:51:00Z,- akibrhast opened issue: [1222](https://github.com/hackforla/website/issues/1222) at 2021-03-17 01:51 PM PDT -akibrhast,2021-03-17T20:52:07Z,- akibrhast closed issue as completed: [1222](https://github.com/hackforla/website/issues/1222#event-4472527076) at 2021-03-17 01:52 PM PDT -akibrhast,2021-03-17T20:52:14Z,- akibrhast closed issue as completed: [1221](https://github.com/hackforla/website/issues/1221#event-4472527568) at 2021-03-17 01:52 PM PDT -akibrhast,2021-03-17T20:58:41Z,- akibrhast closed issue as completed: [1224](https://github.com/hackforla/website/issues/1224#event-4472554188) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:41Z,- akibrhast closed issue as completed: [1225](https://github.com/hackforla/website/issues/1225#event-4472554211) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1226](https://github.com/hackforla/website/issues/1226#event-4472554227) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1227](https://github.com/hackforla/website/issues/1227#event-4472554247) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1228](https://github.com/hackforla/website/issues/1228#event-4472554263) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1229](https://github.com/hackforla/website/issues/1229#event-4472554275) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:42Z,- akibrhast closed issue as completed: [1230](https://github.com/hackforla/website/issues/1230#event-4472554284) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:43Z,- akibrhast closed issue as completed: [1231](https://github.com/hackforla/website/issues/1231#event-4472554300) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:43Z,- akibrhast closed issue as completed: [1232](https://github.com/hackforla/website/issues/1232#event-4472554316) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T20:58:52Z,- akibrhast closed issue as completed: [1233](https://github.com/hackforla/website/issues/1233#event-4472554922) at 2021-03-17 01:58 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1236](https://github.com/hackforla/website/issues/1236#event-4472573797) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1237](https://github.com/hackforla/website/issues/1237#event-4472573811) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1238](https://github.com/hackforla/website/issues/1238#event-4472573836) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1239](https://github.com/hackforla/website/issues/1239#event-4472573855) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:25Z,- akibrhast closed issue as completed: [1240](https://github.com/hackforla/website/issues/1240#event-4472573891) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:26Z,- akibrhast closed issue as completed: [1242](https://github.com/hackforla/website/issues/1242#event-4472573914) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:26Z,- akibrhast closed issue as completed: [1243](https://github.com/hackforla/website/issues/1243#event-4472573947) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1244](https://github.com/hackforla/website/issues/1244#event-4472573962) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1245](https://github.com/hackforla/website/issues/1245#event-4472573976) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1246](https://github.com/hackforla/website/issues/1246#event-4472573994) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:03:27Z,- akibrhast closed issue as completed: [1247](https://github.com/hackforla/website/issues/1247#event-4472574005) at 2021-03-17 02:03 PM PDT -akibrhast,2021-03-17T21:08:40Z,- akibrhast opened issue: [1248](https://github.com/hackforla/website/issues/1248) at 2021-03-17 02:08 PM PDT -akibrhast,2021-03-18T16:37:04Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802094613) at 2021-03-18 09:37 AM PDT -akibrhast,2021-03-18T16:38:15Z,- akibrhast submitted pull request review: [1250](https://github.com/hackforla/website/pull/1250#pullrequestreview-615627109) at 2021-03-18 09:38 AM PDT -akibrhast,2021-03-18T16:43:48Z,- akibrhast pull request merged: [1217](https://github.com/hackforla/website/pull/1217#event-4477348166) at 2021-03-18 09:43 AM PDT -akibrhast,2021-03-18T16:44:05Z,- akibrhast commented on pull request: [1137](https://github.com/hackforla/website/pull/1137#issuecomment-802099914) at 2021-03-18 09:44 AM PDT -akibrhast,2021-03-18T17:19:07Z,- akibrhast pull request merged: [1211](https://github.com/hackforla/website/pull/1211#event-4477581364) at 2021-03-18 10:19 AM PDT -akibrhast,2021-03-18T18:10:02Z,- akibrhast submitted pull request review: [1250](https://github.com/hackforla/website/pull/1250#pullrequestreview-615721301) at 2021-03-18 11:10 AM PDT -akibrhast,2021-03-18T18:11:02Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802175057) at 2021-03-18 11:11 AM PDT -akibrhast,2021-03-18T18:11:13Z,- akibrhast closed issue by PR 1250: [678](https://github.com/hackforla/website/issues/678#event-4477838951) at 2021-03-18 11:11 AM PDT -akibrhast,2021-03-18T19:21:22Z,- akibrhast opened pull request: [1260](https://github.com/hackforla/website/pull/1260) at 2021-03-18 12:21 PM PDT -akibrhast,2021-03-19T00:02:40Z,- akibrhast commented on pull request: [1260](https://github.com/hackforla/website/pull/1260#issuecomment-802400635) at 2021-03-18 05:02 PM PDT -akibrhast,2021-03-19T02:48:23Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802500026) at 2021-03-18 07:48 PM PDT -akibrhast,2021-03-19T03:08:11Z,- akibrhast commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802510342) at 2021-03-18 08:08 PM PDT -akibrhast,2021-03-19T03:42:41Z,- akibrhast commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-802526733) at 2021-03-18 08:42 PM PDT -akibrhast,2021-03-19T18:44:04Z,- akibrhast commented on pull request: [1260](https://github.com/hackforla/website/pull/1260#issuecomment-803037847) at 2021-03-19 11:44 AM PDT -akibrhast,2021-03-19T19:34:10Z,- akibrhast pull request merged: [1260](https://github.com/hackforla/website/pull/1260#event-4483960309) at 2021-03-19 12:34 PM PDT -akibrhast,2021-03-19T19:34:39Z,- akibrhast commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-803066395) at 2021-03-19 12:34 PM PDT -akibrhast,2021-03-19T19:56:35Z,- akibrhast opened issue: [1266](https://github.com/hackforla/website/issues/1266) at 2021-03-19 12:56 PM PDT -akibrhast,2021-03-19T19:56:35Z,- akibrhast assigned to issue: [1266](https://github.com/hackforla/website/issues/1266) at 2021-03-19 12:56 PM PDT -akibrhast,2021-03-19T20:07:12Z,- akibrhast opened pull request: [1267](https://github.com/hackforla/website/pull/1267) at 2021-03-19 01:07 PM PDT -akibrhast,2021-03-19T20:23:59Z,- akibrhast opened issue: [1268](https://github.com/hackforla/website/issues/1268) at 2021-03-19 01:23 PM PDT -akibrhast,2021-03-19T20:53:12Z,- akibrhast opened pull request: [1269](https://github.com/hackforla/website/pull/1269) at 2021-03-19 01:53 PM PDT -akibrhast,2021-03-19T21:41:17Z,- akibrhast opened pull request: [1270](https://github.com/hackforla/website/pull/1270) at 2021-03-19 02:41 PM PDT -akibrhast,2021-03-19T21:48:48Z,- akibrhast commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803153141) at 2021-03-19 02:48 PM PDT -akibrhast,2021-03-19T23:08:55Z,- akibrhast opened issue: [1273](https://github.com/hackforla/website/issues/1273) at 2021-03-19 04:08 PM PDT -akibrhast,2021-03-19T23:38:18Z,- akibrhast pull request merged: [1270](https://github.com/hackforla/website/pull/1270#event-4484729981) at 2021-03-19 04:38 PM PDT -akibrhast,2021-03-19T23:39:44Z,- akibrhast opened issue: [1274](https://github.com/hackforla/website/issues/1274) at 2021-03-19 04:39 PM PDT -akibrhast,2021-03-19T23:42:51Z,- akibrhast assigned to issue: [1268](https://github.com/hackforla/website/issues/1268#issuecomment-803144062) at 2021-03-19 04:42 PM PDT -akibrhast,2021-03-19T23:45:56Z,- akibrhast commented on pull request: [1269](https://github.com/hackforla/website/pull/1269#issuecomment-803194483) at 2021-03-19 04:45 PM PDT -akibrhast,2021-03-20T03:22:18Z,- akibrhast submitted pull request review: [1275](https://github.com/hackforla/website/pull/1275#pullrequestreview-616878735) at 2021-03-19 08:22 PM PDT -akibrhast,2021-03-20T17:46:09Z,- akibrhast opened issue: [1276](https://github.com/hackforla/website/issues/1276) at 2021-03-20 10:46 AM PDT -akibrhast,2021-03-20T20:34:27Z,- akibrhast commented on pull request: [1269](https://github.com/hackforla/website/pull/1269#issuecomment-803459467) at 2021-03-20 01:34 PM PDT -akibrhast,2021-03-21T04:49:51Z,- akibrhast closed issue as completed: [1248](https://github.com/hackforla/website/issues/1248#event-4486354659) at 2021-03-20 09:49 PM PDT -akibrhast,2021-03-21T04:55:00Z,- akibrhast commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-803512243) at 2021-03-20 09:55 PM PDT -akibrhast,2021-03-21T04:57:38Z,- akibrhast commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-803512443) at 2021-03-20 09:57 PM PDT -akibrhast,2021-03-21T04:59:20Z,- akibrhast commented on issue: [1266](https://github.com/hackforla/website/issues/1266#issuecomment-803512520) at 2021-03-20 09:59 PM PDT -akibrhast,2021-03-21T05:01:16Z,- akibrhast commented on issue: [1268](https://github.com/hackforla/website/issues/1268#issuecomment-803512671) at 2021-03-20 10:01 PM PDT -akibrhast,2021-03-21T15:40:28Z,- akibrhast commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-803606260) at 2021-03-21 08:40 AM PDT -akibrhast,2021-03-21T15:42:34Z,- akibrhast commented on issue: [1274](https://github.com/hackforla/website/issues/1274#issuecomment-803606661) at 2021-03-21 08:42 AM PDT -akibrhast,2021-03-21T16:17:52Z,- akibrhast pull request merged: [1267](https://github.com/hackforla/website/pull/1267#event-4486914918) at 2021-03-21 09:17 AM PDT -akibrhast,2021-03-21T16:21:16Z,- akibrhast opened issue: [1278](https://github.com/hackforla/website/issues/1278) at 2021-03-21 09:21 AM PDT -akibrhast,2021-03-21T16:21:16Z,- akibrhast assigned to issue: [1278](https://github.com/hackforla/website/issues/1278) at 2021-03-21 09:21 AM PDT -akibrhast,2021-03-21T16:22:36Z,- akibrhast commented on issue: [1276](https://github.com/hackforla/website/issues/1276#issuecomment-803614798) at 2021-03-21 09:22 AM PDT -akibrhast,2021-03-21T16:26:15Z,- akibrhast opened pull request: [1279](https://github.com/hackforla/website/pull/1279) at 2021-03-21 09:26 AM PDT -akibrhast,2021-03-21T16:41:06Z,- akibrhast opened pull request: [1280](https://github.com/hackforla/website/pull/1280) at 2021-03-21 09:41 AM PDT -akibrhast,2021-03-21T16:42:27Z,- akibrhast pull request merged: [1280](https://github.com/hackforla/website/pull/1280#event-4486940713) at 2021-03-21 09:42 AM PDT -akibrhast,2021-03-21T16:48:52Z,- akibrhast opened pull request: [1281](https://github.com/hackforla/website/pull/1281) at 2021-03-21 09:48 AM PDT -akibrhast,2021-03-21T16:55:13Z,- akibrhast opened pull request: [1282](https://github.com/hackforla/website/pull/1282) at 2021-03-21 09:55 AM PDT -akibrhast,2021-03-21T16:56:38Z,- akibrhast pull request merged: [1281](https://github.com/hackforla/website/pull/1281#event-4486955696) at 2021-03-21 09:56 AM PDT -akibrhast,2021-03-21T17:05:52Z,- akibrhast pull request merged: [1282](https://github.com/hackforla/website/pull/1282#event-4486965208) at 2021-03-21 10:05 AM PDT -akibrhast,2021-03-21T17:15:24Z,- akibrhast commented on issue: [1041](https://github.com/hackforla/website/issues/1041#issuecomment-803625884) at 2021-03-21 10:15 AM PDT -akibrhast,2021-03-21T17:15:24Z,- akibrhast closed issue as completed: [1041](https://github.com/hackforla/website/issues/1041#event-4486975016) at 2021-03-21 10:15 AM PDT -akibrhast,2021-03-21T17:20:39Z,- akibrhast pull request merged: [1279](https://github.com/hackforla/website/pull/1279#event-4486980295) at 2021-03-21 10:20 AM PDT -akibrhast,2021-03-21T17:27:52Z,- akibrhast commented on issue: [1274](https://github.com/hackforla/website/issues/1274#issuecomment-803628067) at 2021-03-21 10:27 AM PDT -akibrhast,2021-03-21T17:28:09Z,- akibrhast closed issue as completed: [1274](https://github.com/hackforla/website/issues/1274#event-4486987381) at 2021-03-21 10:28 AM PDT -akibrhast,2021-03-21T18:36:21Z,- akibrhast opened issue: [1284](https://github.com/hackforla/website/issues/1284) at 2021-03-21 11:36 AM PDT -akibrhast,2021-03-21T19:14:17Z,- akibrhast assigned to issue: [1286](https://github.com/hackforla/website/issues/1286) at 2021-03-21 12:14 PM PDT -akibrhast,2021-03-21T19:38:50Z,- akibrhast pull request merged: [1269](https://github.com/hackforla/website/pull/1269#event-4487117265) at 2021-03-21 12:38 PM PDT -akibrhast,2021-03-21T20:17:57Z,- akibrhast submitted pull request review: [1263](https://github.com/hackforla/website/pull/1263#pullrequestreview-617057347) at 2021-03-21 01:17 PM PDT -akibrhast,2021-03-21T20:18:32Z,- akibrhast submitted pull request review: [1213](https://github.com/hackforla/website/pull/1213#pullrequestreview-617057394) at 2021-03-21 01:18 PM PDT -akibrhast,2021-03-21T20:19:13Z,- akibrhast submitted pull request review: [1210](https://github.com/hackforla/website/pull/1210#pullrequestreview-617057452) at 2021-03-21 01:19 PM PDT -akibrhast,2021-03-21T20:24:31Z,- akibrhast commented on issue: [1284](https://github.com/hackforla/website/issues/1284#issuecomment-803653980) at 2021-03-21 01:24 PM PDT -akibrhast,2021-03-22T17:13:34Z,- akibrhast opened issue: [1292](https://github.com/hackforla/website/issues/1292) at 2021-03-22 10:13 AM PDT -akibrhast,2021-03-22T17:13:40Z,- akibrhast opened issue: [1293](https://github.com/hackforla/website/issues/1293) at 2021-03-22 10:13 AM PDT -akibrhast,2021-03-22T17:14:03Z,- akibrhast closed issue as completed: [1292](https://github.com/hackforla/website/issues/1292#event-4491495488) at 2021-03-22 10:14 AM PDT -akibrhast,2021-03-22T17:14:03Z,- akibrhast closed issue as completed: [1293](https://github.com/hackforla/website/issues/1293#event-4491495513) at 2021-03-22 10:14 AM PDT -akibrhast,2021-03-22T17:16:39Z,- akibrhast opened issue: [1294](https://github.com/hackforla/website/issues/1294) at 2021-03-22 10:16 AM PDT -akibrhast,2021-03-22T17:16:56Z,- akibrhast closed issue as completed: [1294](https://github.com/hackforla/website/issues/1294#event-4491514757) at 2021-03-22 10:16 AM PDT -akibrhast,2021-03-22T17:18:04Z,- akibrhast opened issue: [1295](https://github.com/hackforla/website/issues/1295) at 2021-03-22 10:18 AM PDT -akibrhast,2021-03-22T17:18:12Z,- akibrhast closed issue as completed: [1295](https://github.com/hackforla/website/issues/1295#event-4491521486) at 2021-03-22 10:18 AM PDT -akibrhast,2021-03-22T17:33:44Z,- akibrhast opened issue: [1296](https://github.com/hackforla/website/issues/1296) at 2021-03-22 10:33 AM PDT -akibrhast,2021-03-22T17:34:41Z,- akibrhast closed issue as completed: [1296](https://github.com/hackforla/website/issues/1296#event-4491608042) at 2021-03-22 10:34 AM PDT -akibrhast,2021-03-22T17:47:02Z,- akibrhast opened issue: [1297](https://github.com/hackforla/website/issues/1297) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T17:47:11Z,- akibrhast opened issue: [1298](https://github.com/hackforla/website/issues/1298) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T17:47:33Z,- akibrhast closed issue as completed: [1297](https://github.com/hackforla/website/issues/1297#event-4491672933) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T17:47:46Z,- akibrhast closed issue as completed: [1298](https://github.com/hackforla/website/issues/1298#event-4491674093) at 2021-03-22 10:47 AM PDT -akibrhast,2021-03-22T18:30:38Z,- akibrhast submitted pull request review: [1291](https://github.com/hackforla/website/pull/1291#pullrequestreview-617857409) at 2021-03-22 11:30 AM PDT -akibrhast,2021-03-22T18:30:44Z,- akibrhast closed issue by PR 1291: [1021](https://github.com/hackforla/website/issues/1021#event-4491875773) at 2021-03-22 11:30 AM PDT -akibrhast,2021-03-22T18:33:21Z,- akibrhast submitted pull request review: [1263](https://github.com/hackforla/website/pull/1263#pullrequestreview-617859831) at 2021-03-22 11:33 AM PDT -akibrhast,2021-03-22T18:54:16Z,- akibrhast opened issue: [1299](https://github.com/hackforla/website/issues/1299) at 2021-03-22 11:54 AM PDT -akibrhast,2021-03-22T18:54:32Z,- akibrhast closed issue as completed: [1299](https://github.com/hackforla/website/issues/1299#event-4491982687) at 2021-03-22 11:54 AM PDT -akibrhast,2021-03-22T18:55:25Z,- akibrhast opened issue: [1300](https://github.com/hackforla/website/issues/1300) at 2021-03-22 11:55 AM PDT -akibrhast,2021-03-22T18:57:20Z,- akibrhast closed issue as completed: [1300](https://github.com/hackforla/website/issues/1300#event-4491994804) at 2021-03-22 11:57 AM PDT -akibrhast,2021-03-22T18:57:26Z,- akibrhast opened issue: [1301](https://github.com/hackforla/website/issues/1301) at 2021-03-22 11:57 AM PDT -akibrhast,2021-03-22T18:58:07Z,- akibrhast closed issue as completed: [1301](https://github.com/hackforla/website/issues/1301#event-4491998720) at 2021-03-22 11:58 AM PDT -akibrhast,2021-03-22T18:59:44Z,- akibrhast opened issue: [1302](https://github.com/hackforla/website/issues/1302) at 2021-03-22 11:59 AM PDT -akibrhast,2021-03-22T19:00:48Z,- akibrhast closed issue as completed: [1302](https://github.com/hackforla/website/issues/1302#event-4492011331) at 2021-03-22 12:00 PM PDT -akibrhast,2021-03-22T19:01:20Z,- akibrhast opened issue: [1303](https://github.com/hackforla/website/issues/1303) at 2021-03-22 12:01 PM PDT -akibrhast,2021-03-22T19:02:24Z,- akibrhast closed issue as completed: [1303](https://github.com/hackforla/website/issues/1303#event-4492019241) at 2021-03-22 12:02 PM PDT -akibrhast,2021-03-22T19:04:34Z,- akibrhast opened issue: [1304](https://github.com/hackforla/website/issues/1304) at 2021-03-22 12:04 PM PDT -akibrhast,2021-03-22T19:21:28Z,- akibrhast closed issue as completed: [1304](https://github.com/hackforla/website/issues/1304#event-4492105993) at 2021-03-22 12:21 PM PDT -akibrhast,2021-03-22T20:54:13Z,- akibrhast submitted pull request review: [1305](https://github.com/hackforla/website/pull/1305#pullrequestreview-617972412) at 2021-03-22 01:54 PM PDT -akibrhast,2021-03-22T20:54:27Z,- akibrhast closed issue by PR 1305: [1261](https://github.com/hackforla/website/issues/1261#event-4492495778) at 2021-03-22 01:54 PM PDT -akibrhast,2021-03-22T20:56:28Z,- akibrhast submitted pull request review: [1213](https://github.com/hackforla/website/pull/1213#pullrequestreview-617974106) at 2021-03-22 01:56 PM PDT -akibrhast,2021-03-22T20:56:35Z,- akibrhast closed issue by PR 1213: [1110](https://github.com/hackforla/website/issues/1110#event-4492504046) at 2021-03-22 01:56 PM PDT -akibrhast,2021-03-23T04:43:37Z,- akibrhast commented on pull request: [1308](https://github.com/hackforla/website/pull/1308#issuecomment-804612674) at 2021-03-22 09:43 PM PDT -akibrhast,2021-03-23T16:43:37Z,- akibrhast opened issue: [1311](https://github.com/hackforla/website/issues/1311) at 2021-03-23 09:43 AM PDT -akibrhast,2021-03-23T16:43:42Z,- akibrhast assigned to issue: [1311](https://github.com/hackforla/website/issues/1311) at 2021-03-23 09:43 AM PDT -akibrhast,2021-03-23T17:06:54Z,- akibrhast opened pull request: [1312](https://github.com/hackforla/website/pull/1312) at 2021-03-23 10:06 AM PDT -akibrhast,2021-03-23T17:11:35Z,- akibrhast submitted pull request review: [1306](https://github.com/hackforla/website/pull/1306#pullrequestreview-618859851) at 2021-03-23 10:11 AM PDT -akibrhast,2021-03-23T17:11:43Z,- akibrhast closed issue by PR 1306: [1045](https://github.com/hackforla/website/issues/1045#event-4497498682) at 2021-03-23 10:11 AM PDT -akibrhast,2021-03-23T17:56:17Z,- akibrhast pull request merged: [1312](https://github.com/hackforla/website/pull/1312#event-4497720983) at 2021-03-23 10:56 AM PDT -akibrhast,2021-03-23T18:41:31Z,- akibrhast unassigned from issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-803512443) at 2021-03-23 11:41 AM PDT -akibrhast,2021-03-23T21:40:16Z,- akibrhast commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-805283836) at 2021-03-23 02:40 PM PDT -akibrhast,2021-03-24T03:45:43Z,- akibrhast opened issue: [1321](https://github.com/hackforla/website/issues/1321) at 2021-03-23 08:45 PM PDT -akibrhast,2021-03-26T00:50:18Z,- akibrhast opened pull request: [1328](https://github.com/hackforla/website/pull/1328) at 2021-03-25 05:50 PM PDT -akibrhast,2021-03-26T04:20:44Z,- akibrhast commented on issue: [1321](https://github.com/hackforla/website/issues/1321#issuecomment-807924871) at 2021-03-25 09:20 PM PDT -akibrhast,2021-03-26T04:20:44Z,- akibrhast closed issue as completed: [1321](https://github.com/hackforla/website/issues/1321#event-4511716922) at 2021-03-25 09:20 PM PDT -akibrhast,2021-03-27T03:38:09Z,- akibrhast pull request merged: [1328](https://github.com/hackforla/website/pull/1328#event-4516622542) at 2021-03-26 08:38 PM PDT -akibrhast,2021-03-27T06:24:43Z,- akibrhast closed issue as completed: [1276](https://github.com/hackforla/website/issues/1276#event-4516732107) at 2021-03-26 11:24 PM PDT -akibrhast,2021-03-28T17:03:13Z,- akibrhast commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-808925194) at 2021-03-28 10:03 AM PDT -akibrhast,2021-03-28T17:26:12Z,- akibrhast opened issue: [1338](https://github.com/hackforla/website/issues/1338) at 2021-03-28 10:26 AM PDT -akibrhast,2021-03-29T02:43:46Z,- akibrhast closed issue as completed: [981](https://github.com/hackforla/website/issues/981#event-4518985119) at 2021-03-28 07:43 PM PDT -akibrhast,2021-03-29T19:01:03Z,- akibrhast submitted pull request review: [1334](https://github.com/hackforla/website/pull/1334#pullrequestreview-623552936) at 2021-03-29 12:01 PM PDT -akibrhast,2021-03-29T19:01:10Z,- akibrhast closed issue by PR 1334: [1077](https://github.com/hackforla/website/issues/1077#event-4523323235) at 2021-03-29 12:01 PM PDT -akibrhast,2021-03-31T02:31:28Z,- akibrhast closed issue by PR 1340: [1264](https://github.com/hackforla/website/issues/1264#event-4531536114) at 2021-03-30 07:31 PM PDT -akibrhast,2021-03-31T04:27:15Z,- akibrhast closed issue by PR 1339: [1102](https://github.com/hackforla/website/issues/1102#event-4531899265) at 2021-03-30 09:27 PM PDT -akibrhast,2021-03-31T04:34:16Z,- akibrhast submitted pull request review: [1339](https://github.com/hackforla/website/pull/1339#pullrequestreview-624883976) at 2021-03-30 09:34 PM PDT -akibrhast,2021-03-31T04:58:12Z,- akibrhast closed issue as completed: [603](https://github.com/hackforla/website/issues/603#event-4531999763) at 2021-03-30 09:58 PM PDT -akibrhast,2021-03-31T05:33:43Z,- akibrhast assigned to issue: [1026](https://github.com/hackforla/website/issues/1026) at 2021-03-30 10:33 PM PDT -akibrhast,2021-03-31T05:34:05Z,- akibrhast unassigned from issue: [1026](https://github.com/hackforla/website/issues/1026) at 2021-03-30 10:34 PM PDT -akibrhast,2021-03-31T18:35:40Z,- akibrhast commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-811322210) at 2021-03-31 11:35 AM PDT -akibrhast,2021-03-31T19:35:38Z,- akibrhast commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-811383289) at 2021-03-31 12:35 PM PDT -akibrhast,2021-04-01T02:39:01Z,- akibrhast commented on pull request: [1210](https://github.com/hackforla/website/pull/1210#issuecomment-811595305) at 2021-03-31 07:39 PM PDT -akibrhast,2021-04-01T02:47:55Z,- akibrhast commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-811598094) at 2021-03-31 07:47 PM PDT -akibrhast,2021-04-01T02:48:01Z,- akibrhast closed issue as completed: [1337](https://github.com/hackforla/website/issues/1337#event-4538610084) at 2021-03-31 07:48 PM PDT -akibrhast,2021-04-03T05:00:03Z,- akibrhast opened issue: [1348](https://github.com/hackforla/website/issues/1348) at 2021-04-02 10:00 PM PDT -akibrhast,2021-04-03T05:00:03Z,- akibrhast assigned to issue: [1348](https://github.com/hackforla/website/issues/1348) at 2021-04-02 10:00 PM PDT -akibrhast,2021-04-03T05:11:12Z,- akibrhast opened pull request: [1349](https://github.com/hackforla/website/pull/1349) at 2021-04-02 10:11 PM PDT -akibrhast,2021-04-04T17:30:50Z,- akibrhast assigned to issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-636994125) at 2021-04-04 10:30 AM PDT -akibrhast,2021-04-04T20:56:44Z,- akibrhast pull request merged: [1349](https://github.com/hackforla/website/pull/1349#event-4549503812) at 2021-04-04 01:56 PM PDT -akibrhast,2021-04-04T21:41:15Z,- akibrhast commented on pull request: [1350](https://github.com/hackforla/website/pull/1350#issuecomment-813103617) at 2021-04-04 02:41 PM PDT -akibrhast,2021-04-04T23:24:40Z,- akibrhast commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-813115539) at 2021-04-04 04:24 PM PDT -akibrhast,2021-04-05T00:01:21Z,- akibrhast submitted pull request review: [1354](https://github.com/hackforla/website/pull/1354#pullrequestreview-627581797) at 2021-04-04 05:01 PM PDT -akibrhast,2021-04-05T01:15:51Z,- akibrhast opened pull request: [1356](https://github.com/hackforla/website/pull/1356) at 2021-04-04 06:15 PM PDT -akibrhast,2021-04-05T16:48:59Z,- akibrhast commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-813498391) at 2021-04-05 09:48 AM PDT -akibrhast,2021-04-05T17:14:47Z,- akibrhast assigned to issue: [1253](https://github.com/hackforla/website/issues/1253) at 2021-04-05 10:14 AM PDT -akibrhast,2021-04-05T17:20:54Z,- akibrhast opened pull request: [1358](https://github.com/hackforla/website/pull/1358) at 2021-04-05 10:20 AM PDT -akibrhast,2021-04-05T17:21:33Z,- akibrhast assigned to issue: [1252](https://github.com/hackforla/website/issues/1252) at 2021-04-05 10:21 AM PDT -akibrhast,2021-04-05T17:33:42Z,- akibrhast opened pull request: [1359](https://github.com/hackforla/website/pull/1359) at 2021-04-05 10:33 AM PDT -akibrhast,2021-04-05T17:36:24Z,- akibrhast assigned to issue: [1251](https://github.com/hackforla/website/issues/1251) at 2021-04-05 10:36 AM PDT -akibrhast,2021-04-05T17:42:28Z,- akibrhast opened pull request: [1360](https://github.com/hackforla/website/pull/1360) at 2021-04-05 10:42 AM PDT -akibrhast,2021-04-05T17:49:28Z,- akibrhast assigned to issue: [1257](https://github.com/hackforla/website/issues/1257) at 2021-04-05 10:49 AM PDT -akibrhast,2021-04-05T17:50:44Z,- akibrhast assigned to issue: [1256](https://github.com/hackforla/website/issues/1256) at 2021-04-05 10:50 AM PDT -akibrhast,2021-04-05T17:51:14Z,- akibrhast commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-813534797) at 2021-04-05 10:51 AM PDT -akibrhast,2021-04-05T18:53:15Z,- akibrhast pull request merged: [1360](https://github.com/hackforla/website/pull/1360#event-4552922123) at 2021-04-05 11:53 AM PDT -akibrhast,2021-04-05T19:02:17Z,- akibrhast pull request merged: [1359](https://github.com/hackforla/website/pull/1359#event-4552956238) at 2021-04-05 12:02 PM PDT -akibrhast,2021-04-05T19:06:59Z,- akibrhast pull request merged: [1358](https://github.com/hackforla/website/pull/1358#event-4552973743) at 2021-04-05 12:06 PM PDT -akibrhast,2021-04-05T21:34:15Z,- akibrhast commented on issue: [1253](https://github.com/hackforla/website/issues/1253#issuecomment-813664050) at 2021-04-05 02:34 PM PDT -akibrhast,2021-04-06T15:09:54Z,- akibrhast commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814199013) at 2021-04-06 08:09 AM PDT -akibrhast,2021-04-06T15:21:21Z,- akibrhast commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-814207804) at 2021-04-06 08:21 AM PDT -akibrhast,2021-04-06T15:45:22Z,- akibrhast opened pull request: [1362](https://github.com/hackforla/website/pull/1362) at 2021-04-06 08:45 AM PDT -akibrhast,2021-04-06T16:13:53Z,- akibrhast opened pull request: [1363](https://github.com/hackforla/website/pull/1363) at 2021-04-06 09:13 AM PDT -akibrhast,2021-04-06T16:13:58Z,- akibrhast pull request closed w/o merging: [1363](https://github.com/hackforla/website/pull/1363#event-4557771130) at 2021-04-06 09:13 AM PDT -akibrhast,2021-04-06T16:51:29Z,- akibrhast commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-06 09:51 AM PDT -akibrhast,2021-04-07T04:37:46Z,- akibrhast closed issue as completed: [1201](https://github.com/hackforla/website/issues/1201#event-4560134357) at 2021-04-06 09:37 PM PDT -akibrhast,2021-04-07T04:38:11Z,- akibrhast assigned to issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-06 09:38 PM PDT -akibrhast,2021-04-07T20:35:05Z,- akibrhast opened pull request: [1370](https://github.com/hackforla/website/pull/1370) at 2021-04-07 01:35 PM PDT -akibrhast,2021-04-07T20:50:41Z,- akibrhast opened pull request: [1371](https://github.com/hackforla/website/pull/1371) at 2021-04-07 01:50 PM PDT -akibrhast,2021-04-07T21:19:37Z,- akibrhast opened pull request: [1372](https://github.com/hackforla/website/pull/1372) at 2021-04-07 02:19 PM PDT -akibrhast,2021-04-07T23:04:47Z,- akibrhast pull request merged: [1372](https://github.com/hackforla/website/pull/1372#event-4565403896) at 2021-04-07 04:04 PM PDT -akibrhast,2021-04-07T23:05:10Z,- akibrhast pull request merged: [1371](https://github.com/hackforla/website/pull/1371#event-4565404899) at 2021-04-07 04:05 PM PDT -akibrhast,2021-04-07T23:07:33Z,- akibrhast pull request merged: [1370](https://github.com/hackforla/website/pull/1370#event-4565411356) at 2021-04-07 04:07 PM PDT -akibrhast,2021-04-08T02:31:05Z,- akibrhast submitted pull request review: [1373](https://github.com/hackforla/website/pull/1373#pullrequestreview-630928967) at 2021-04-07 07:31 PM PDT -akibrhast,2021-04-08T03:55:18Z,- akibrhast submitted pull request review: [1365](https://github.com/hackforla/website/pull/1365#pullrequestreview-630956274) at 2021-04-07 08:55 PM PDT -akibrhast,2021-04-08T03:55:28Z,- akibrhast closed issue by PR 1365: [1049](https://github.com/hackforla/website/issues/1049#event-4566181938) at 2021-04-07 08:55 PM PDT -akibrhast,2021-04-08T03:55:29Z,- akibrhast closed issue by PR 1365: [1048](https://github.com/hackforla/website/issues/1048#event-4566181939) at 2021-04-07 08:55 PM PDT -akibrhast,2021-04-08T04:02:28Z,- akibrhast submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-630958458) at 2021-04-07 09:02 PM PDT -akibrhast,2021-04-08T16:23:45Z,- akibrhast commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-815962543) at 2021-04-08 09:23 AM PDT -akibrhast,2021-04-08T16:29:34Z,- akibrhast submitted pull request review: [1364](https://github.com/hackforla/website/pull/1364#pullrequestreview-631605530) at 2021-04-08 09:29 AM PDT -akibrhast,2021-04-08T16:29:55Z,- akibrhast closed issue by PR 1364: [1202](https://github.com/hackforla/website/issues/1202#event-4569745491) at 2021-04-08 09:29 AM PDT -akibrhast,2021-04-08T20:16:45Z,- akibrhast commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816147487) at 2021-04-08 01:16 PM PDT -akibrhast,2021-04-08T20:28:39Z,- akibrhast opened issue: [1378](https://github.com/hackforla/website/issues/1378) at 2021-04-08 01:28 PM PDT -akibrhast,2021-04-08T21:30:38Z,- akibrhast submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-631856805) at 2021-04-08 02:30 PM PDT -akibrhast,2021-04-09T17:00:39Z,- akibrhast submitted pull request review: [1384](https://github.com/hackforla/website/pull/1384#pullrequestreview-632621546) at 2021-04-09 10:00 AM PDT -akibrhast,2021-04-09T17:00:47Z,- akibrhast closed issue by PR 1384: [1331](https://github.com/hackforla/website/issues/1331#event-4575511890) at 2021-04-09 10:00 AM PDT -akibrhast,2021-04-09T17:09:11Z,- akibrhast assigned to issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-04-09 10:09 AM PDT -akibrhast,2021-04-09T17:09:17Z,- akibrhast unassigned from issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-04-09 10:09 AM PDT -akibrhast,2021-04-09T21:09:15Z,- akibrhast submitted pull request review: [1385](https://github.com/hackforla/website/pull/1385#pullrequestreview-632787090) at 2021-04-09 02:09 PM PDT -akibrhast,2021-04-09T21:12:23Z,- akibrhast commented on pull request: [1385](https://github.com/hackforla/website/pull/1385#issuecomment-816974484) at 2021-04-09 02:12 PM PDT -akibrhast,2021-04-09T21:13:35Z,- akibrhast submitted pull request review: [1368](https://github.com/hackforla/website/pull/1368#pullrequestreview-632789174) at 2021-04-09 02:13 PM PDT -akibrhast,2021-04-09T21:28:42Z,- akibrhast submitted pull request review: [1385](https://github.com/hackforla/website/pull/1385#pullrequestreview-632796796) at 2021-04-09 02:28 PM PDT -akibrhast,2021-04-09T21:28:50Z,- akibrhast closed issue by PR 1385: [1333](https://github.com/hackforla/website/issues/1333#event-4576473318) at 2021-04-09 02:28 PM PDT -akibrhast,2021-04-10T04:53:22Z,- akibrhast closed issue by PR 1377: [1125](https://github.com/hackforla/website/issues/1125#event-4577091387) at 2021-04-09 09:53 PM PDT -akibrhast,2021-04-10T14:51:47Z,- akibrhast closed issue by PR 1288: [1044](https://github.com/hackforla/website/issues/1044#event-4577555112) at 2021-04-10 07:51 AM PDT -akibrhast,2021-04-10T15:09:04Z,- akibrhast opened pull request: [1387](https://github.com/hackforla/website/pull/1387) at 2021-04-10 08:09 AM PDT -akibrhast,2021-04-10T15:32:47Z,- akibrhast unassigned from issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-10 08:32 AM PDT -akibrhast,2021-04-10T15:35:01Z,- akibrhast unassigned from issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-815129199) at 2021-04-10 08:35 AM PDT -akibrhast,2021-04-10T15:38:41Z,- akibrhast commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-817155249) at 2021-04-10 08:38 AM PDT -akibrhast,2021-04-10T23:00:15Z,- akibrhast opened pull request: [1391](https://github.com/hackforla/website/pull/1391) at 2021-04-10 04:00 PM PDT -akibrhast,2021-04-10T23:04:08Z,- akibrhast pull request merged: [1391](https://github.com/hackforla/website/pull/1391#event-4577958317) at 2021-04-10 04:04 PM PDT -akibrhast,2021-04-11T00:46:54Z,- akibrhast closed issue as completed: [1388](https://github.com/hackforla/website/issues/1388#event-4578018600) at 2021-04-10 05:46 PM PDT -akibrhast,2021-04-11T17:17:23Z,- akibrhast commented on issue: [1257](https://github.com/hackforla/website/issues/1257#issuecomment-817341086) at 2021-04-11 10:17 AM PDT -akibrhast,2021-04-11T17:18:10Z,- akibrhast commented on issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-817341176) at 2021-04-11 10:18 AM PDT -akibrhast,2021-04-11T17:19:22Z,- akibrhast commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-817341345) at 2021-04-11 10:19 AM PDT -akibrhast,2021-04-11T19:10:49Z,- akibrhast commented on pull request: [1355](https://github.com/hackforla/website/pull/1355#issuecomment-817357314) at 2021-04-11 12:10 PM PDT -akibrhast,2021-04-11T19:19:42Z,- akibrhast assigned to issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-11 12:19 PM PDT -akibrhast,2021-04-11T19:29:38Z,- akibrhast commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-817359862) at 2021-04-11 12:29 PM PDT -akibrhast,2021-04-13T23:09:50Z,- akibrhast closed issue by PR 1387: [223](https://github.com/hackforla/website/issues/223#event-4590650999) at 2021-04-13 04:09 PM PDT -akibrhast,2021-04-13T23:09:50Z,- akibrhast pull request merged: [1387](https://github.com/hackforla/website/pull/1387#event-4590651004) at 2021-04-13 04:09 PM PDT -akibrhast,2021-04-14T00:21:44Z,- akibrhast unassigned from issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-13 05:21 PM PDT -akibrhast,2021-04-14T19:39:48Z,- akibrhast commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-819782699) at 2021-04-14 12:39 PM PDT -akibrhast,2021-04-15T00:50:03Z,- akibrhast submitted pull request review: [1401](https://github.com/hackforla/website/pull/1401#pullrequestreview-636187073) at 2021-04-14 05:50 PM PDT -akibrhast,2021-04-15T01:59:45Z,- akibrhast closed issue by PR 1401: [1284](https://github.com/hackforla/website/issues/1284#event-4596666065) at 2021-04-14 06:59 PM PDT -akibrhast,2021-04-15T01:59:55Z,- akibrhast submitted pull request review: [1401](https://github.com/hackforla/website/pull/1401#pullrequestreview-636211139) at 2021-04-14 06:59 PM PDT -akibrhast,2021-04-15T19:10:35Z,- akibrhast opened pull request: [1409](https://github.com/hackforla/website/pull/1409) at 2021-04-15 12:10 PM PDT -akibrhast,2021-04-16T02:08:28Z,- akibrhast commented on pull request: [1409](https://github.com/hackforla/website/pull/1409#issuecomment-820858045) at 2021-04-15 07:08 PM PDT -akibrhast,2021-04-18T00:48:54Z,- akibrhast commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-821909764) at 2021-04-17 05:48 PM PDT -akibrhast,2021-04-18T04:15:44Z,- akibrhast commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-821929351) at 2021-04-17 09:15 PM PDT -akibrhast,2021-04-18T04:19:02Z,- akibrhast commented on pull request: [1409](https://github.com/hackforla/website/pull/1409#issuecomment-821929656) at 2021-04-17 09:19 PM PDT -akibrhast,2021-04-18T04:39:19Z,- akibrhast pull request merged: [1409](https://github.com/hackforla/website/pull/1409#event-4608650172) at 2021-04-17 09:39 PM PDT -akibrhast,2021-04-18T07:19:19Z,- akibrhast opened pull request: [1412](https://github.com/hackforla/website/pull/1412) at 2021-04-18 12:19 AM PDT -akibrhast,2021-04-18T07:25:44Z,- akibrhast pull request merged: [1412](https://github.com/hackforla/website/pull/1412#event-4608754927) at 2021-04-18 12:25 AM PDT -akibrhast,2021-04-18T15:50:09Z,- akibrhast submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-638343563) at 2021-04-18 08:50 AM PDT -akibrhast,2021-04-18T15:53:49Z,- akibrhast commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-822013897) at 2021-04-18 08:53 AM PDT -akibrhast,2021-04-18T15:54:33Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014025) at 2021-04-18 08:54 AM PDT -akibrhast,2021-04-18T15:56:38Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014387) at 2021-04-18 08:56 AM PDT -akibrhast,2021-04-18T15:57:27Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014485) at 2021-04-18 08:57 AM PDT -akibrhast,2021-04-18T15:58:45Z,- akibrhast commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-822014680) at 2021-04-18 08:58 AM PDT -akibrhast,2021-04-18T15:59:36Z,- akibrhast closed issue by PR 1406: [1332](https://github.com/hackforla/website/issues/1332#event-4609232938) at 2021-04-18 08:59 AM PDT -akibrhast,2021-04-18T16:25:09Z,- akibrhast submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-638346418) at 2021-04-18 09:25 AM PDT -akibrhast,2021-04-18T16:25:18Z,- akibrhast closed issue by PR 1405: [1392](https://github.com/hackforla/website/issues/1392#event-4609258646) at 2021-04-18 09:25 AM PDT -akibrhast,2021-04-18T16:26:43Z,- akibrhast pull request merged: [1362](https://github.com/hackforla/website/pull/1362#event-4609260012) at 2021-04-18 09:26 AM PDT -akibrhast,2021-04-18T19:34:58Z,- akibrhast closed issue by PR 1399: [1071](https://github.com/hackforla/website/issues/1071#event-4609447040) at 2021-04-18 12:34 PM PDT -akibrhast,2021-04-18T19:34:58Z,- akibrhast closed issue by PR 1399: [1319](https://github.com/hackforla/website/issues/1319#event-4609447036) at 2021-04-18 12:34 PM PDT -akibrhast,2021-04-18T21:35:55Z,- akibrhast opened pull request: [1420](https://github.com/hackforla/website/pull/1420) at 2021-04-18 02:35 PM PDT -akibrhast,2021-04-18T21:48:34Z,- akibrhast commented on issue: [1418](https://github.com/hackforla/website/issues/1418#issuecomment-822067299) at 2021-04-18 02:48 PM PDT -akibrhast,2021-04-18T21:48:54Z,- akibrhast assigned to issue: [1418](https://github.com/hackforla/website/issues/1418#issuecomment-822067299) at 2021-04-18 02:48 PM PDT -akibrhast,2021-04-18T21:53:31Z,- akibrhast assigned to issue: [1417](https://github.com/hackforla/website/issues/1417) at 2021-04-18 02:53 PM PDT -akibrhast,2021-04-19T00:28:22Z,- akibrhast commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-822096058) at 2021-04-18 05:28 PM PDT -akibrhast,2021-04-19T05:33:33Z,- akibrhast commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-822179817) at 2021-04-18 10:33 PM PDT -akibrhast,2021-04-19T05:36:43Z,- akibrhast commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-822181281) at 2021-04-18 10:36 PM PDT -akibrhast,2021-04-19T14:37:27Z,- akibrhast assigned to issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-798809755) at 2021-04-19 07:37 AM PDT -akibrhast,2021-04-19T17:22:02Z,- akibrhast opened pull request: [1421](https://github.com/hackforla/website/pull/1421) at 2021-04-19 10:22 AM PDT -akibrhast,2021-04-19T17:48:55Z,- akibrhast pull request merged: [1420](https://github.com/hackforla/website/pull/1420#event-4614175261) at 2021-04-19 10:48 AM PDT -akibrhast,2021-04-19T17:51:54Z,- akibrhast commented on pull request: [1420](https://github.com/hackforla/website/pull/1420#issuecomment-822658546) at 2021-04-19 10:51 AM PDT -akibrhast,2021-04-19T20:18:27Z,- akibrhast commented on pull request: [1421](https://github.com/hackforla/website/pull/1421#issuecomment-822757251) at 2021-04-19 01:18 PM PDT -akibrhast,2021-04-20T22:41:29Z,- akibrhast submitted pull request review: [1423](https://github.com/hackforla/website/pull/1423#pullrequestreview-640479684) at 2021-04-20 03:41 PM PDT -akibrhast,2021-04-20T23:10:09Z,- akibrhast submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-640499353) at 2021-04-20 04:10 PM PDT -akibrhast,2021-04-20T23:12:12Z,- akibrhast submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-640500275) at 2021-04-20 04:12 PM PDT -akibrhast,2021-04-20T23:23:42Z,- akibrhast commented on pull request: [1423](https://github.com/hackforla/website/pull/1423#issuecomment-823663651) at 2021-04-20 04:23 PM PDT -akibrhast,2021-04-21T01:37:38Z,- akibrhast opened pull request: [1424](https://github.com/hackforla/website/pull/1424) at 2021-04-20 06:37 PM PDT -akibrhast,2021-04-21T03:50:19Z,- akibrhast pull request merged: [1421](https://github.com/hackforla/website/pull/1421#event-4622569841) at 2021-04-20 08:50 PM PDT -akibrhast,2021-04-22T02:57:52Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-824501505) at 2021-04-21 07:57 PM PDT -akibrhast,2021-04-22T20:55:44Z,- akibrhast submitted pull request review: [1435](https://github.com/hackforla/website/pull/1435#pullrequestreview-642659319) at 2021-04-22 01:55 PM PDT -akibrhast,2021-04-22T20:57:27Z,- akibrhast submitted pull request review: [1433](https://github.com/hackforla/website/pull/1433#pullrequestreview-642660639) at 2021-04-22 01:57 PM PDT -akibrhast,2021-04-22T21:02:42Z,- akibrhast submitted pull request review: [1428](https://github.com/hackforla/website/pull/1428#pullrequestreview-642664654) at 2021-04-22 02:02 PM PDT -akibrhast,2021-04-23T14:04:29Z,- akibrhast submitted pull request review: [1423](https://github.com/hackforla/website/pull/1423#pullrequestreview-643334387) at 2021-04-23 07:04 AM PDT -akibrhast,2021-04-23T14:04:42Z,- akibrhast closed issue by PR 1423: [1122](https://github.com/hackforla/website/issues/1122#event-4637108819) at 2021-04-23 07:04 AM PDT -akibrhast,2021-04-23T16:33:35Z,- akibrhast submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-643477263) at 2021-04-23 09:33 AM PDT -akibrhast,2021-04-23T16:38:04Z,- akibrhast submitted pull request review: [1435](https://github.com/hackforla/website/pull/1435#pullrequestreview-643480861) at 2021-04-23 09:38 AM PDT -akibrhast,2021-04-23T16:47:00Z,- akibrhast opened pull request: [1438](https://github.com/hackforla/website/pull/1438) at 2021-04-23 09:47 AM PDT -akibrhast,2021-04-23T16:49:11Z,- akibrhast pull request closed w/o merging: [1438](https://github.com/hackforla/website/pull/1438#event-4637917188) at 2021-04-23 09:49 AM PDT -akibrhast,2021-04-23T16:49:57Z,- akibrhast closed issue by PR 1435: [1434](https://github.com/hackforla/website/issues/1434#event-4637920328) at 2021-04-23 09:49 AM PDT -akibrhast,2021-04-23T18:04:08Z,- akibrhast submitted pull request review: [1440](https://github.com/hackforla/website/pull/1440#pullrequestreview-643546292) at 2021-04-23 11:04 AM PDT -akibrhast,2021-04-23T18:11:00Z,- akibrhast submitted pull request review: [1437](https://github.com/hackforla/website/pull/1437#pullrequestreview-643551287) at 2021-04-23 11:11 AM PDT -akibrhast,2021-04-23T19:13:43Z,- akibrhast opened issue: [1441](https://github.com/hackforla/website/issues/1441) at 2021-04-23 12:13 PM PDT -akibrhast,2021-04-23T19:14:25Z,- akibrhast opened issue: [1442](https://github.com/hackforla/website/issues/1442) at 2021-04-23 12:14 PM PDT -akibrhast,2021-04-23T19:26:41Z,- akibrhast opened issue: [1443](https://github.com/hackforla/website/issues/1443) at 2021-04-23 12:26 PM PDT -akibrhast,2021-04-23T20:00:11Z,- akibrhast opened issue: [1445](https://github.com/hackforla/website/issues/1445) at 2021-04-23 01:00 PM PDT -akibrhast,2021-04-23T22:44:12Z,- akibrhast submitted pull request review: [1446](https://github.com/hackforla/website/pull/1446#pullrequestreview-643705914) at 2021-04-23 03:44 PM PDT -akibrhast,2021-04-23T22:44:21Z,- akibrhast closed issue by PR 1446: [940](https://github.com/hackforla/website/issues/940#event-4639107361) at 2021-04-23 03:44 PM PDT -akibrhast,2021-04-24T02:03:23Z,- akibrhast submitted pull request review: [1447](https://github.com/hackforla/website/pull/1447#pullrequestreview-643741364) at 2021-04-23 07:03 PM PDT -akibrhast,2021-04-24T02:03:31Z,- akibrhast closed issue by PR 1447: [1026](https://github.com/hackforla/website/issues/1026#event-4639397859) at 2021-04-23 07:03 PM PDT -akibrhast,2021-04-24T02:08:44Z,- akibrhast commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826018253) at 2021-04-23 07:08 PM PDT -akibrhast,2021-04-24T02:10:34Z,- akibrhast submitted pull request review: [1448](https://github.com/hackforla/website/pull/1448#pullrequestreview-643741991) at 2021-04-23 07:10 PM PDT -akibrhast,2021-04-24T22:37:59Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-826162418) at 2021-04-24 03:37 PM PDT -akibrhast,2021-04-25T17:29:03Z,- akibrhast commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359472) at 2021-04-25 10:29 AM PDT -akibrhast,2021-04-26T23:09:21Z,- akibrhast submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-645183936) at 2021-04-26 04:09 PM PDT -akibrhast,2021-04-26T23:12:43Z,- akibrhast commented on pull request: [1468](https://github.com/hackforla/website/pull/1468#issuecomment-827199092) at 2021-04-26 04:12 PM PDT -akibrhast,2021-04-27T01:35:00Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-827244932) at 2021-04-26 06:35 PM PDT -akibrhast,2021-04-27T09:06:09Z,- akibrhast opened pull request: [1473](https://github.com/hackforla/website/pull/1473) at 2021-04-27 02:06 AM PDT -akibrhast,2021-04-27T09:39:24Z,- akibrhast pull request closed w/o merging: [1473](https://github.com/hackforla/website/pull/1473#event-4649774751) at 2021-04-27 02:39 AM PDT -akibrhast,2021-04-28T00:35:03Z,- akibrhast submitted pull request review: [1476](https://github.com/hackforla/website/pull/1476#pullrequestreview-646502672) at 2021-04-27 05:35 PM PDT -akibrhast,2021-04-28T01:08:58Z,- akibrhast commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-828064949) at 2021-04-27 06:08 PM PDT -akibrhast,2021-04-28T02:54:33Z,- akibrhast pull request merged: [1424](https://github.com/hackforla/website/pull/1424#event-4654132157) at 2021-04-27 07:54 PM PDT -akibrhast,2021-04-28T03:18:33Z,- akibrhast commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-828111274) at 2021-04-27 08:18 PM PDT -akibrhast,2021-04-28T04:18:34Z,- akibrhast submitted pull request review: [1485](https://github.com/hackforla/website/pull/1485#pullrequestreview-646581474) at 2021-04-27 09:18 PM PDT -akibrhast,2021-04-28T04:18:42Z,- akibrhast closed issue by PR 1485: [1461](https://github.com/hackforla/website/issues/1461#event-4654327152) at 2021-04-27 09:18 PM PDT -akibrhast,2021-04-30T00:34:50Z,- akibrhast commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-829717597) at 2021-04-29 05:34 PM PDT -akibrhast,2021-04-30T00:37:46Z,- akibrhast commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-829718468) at 2021-04-29 05:37 PM PDT -akibrhast,2021-05-01T06:29:51Z,- akibrhast commented on issue: [1452](https://github.com/hackforla/website/issues/1452#issuecomment-830563906) at 2021-04-30 11:29 PM PDT -akibrhast,2021-05-01T06:29:52Z,- akibrhast closed issue as completed: [1452](https://github.com/hackforla/website/issues/1452#event-4673145825) at 2021-04-30 11:29 PM PDT -akibrhast,2021-05-03T17:18:26Z,- akibrhast opened pull request: [1501](https://github.com/hackforla/website/pull/1501) at 2021-05-03 10:18 AM PDT -akibrhast,2021-05-03T19:35:48Z,- akibrhast pull request closed w/o merging: [1501](https://github.com/hackforla/website/pull/1501#event-4679842052) at 2021-05-03 12:35 PM PDT -akibrhast,2021-05-03T21:49:38Z,- akibrhast commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831557350) at 2021-05-03 02:49 PM PDT -akibrhast,2021-05-03T22:23:12Z,- akibrhast submitted pull request review: [1502](https://github.com/hackforla/website/pull/1502#pullrequestreview-650768830) at 2021-05-03 03:23 PM PDT -akibrhast,2021-05-05T07:45:42Z,- akibrhast submitted pull request review: [1514](https://github.com/hackforla/website/pull/1514#pullrequestreview-652011619) at 2021-05-05 12:45 AM PDT -akibrhast,2021-05-06T11:15:57Z,- akibrhast submitted pull request review: [1514](https://github.com/hackforla/website/pull/1514#pullrequestreview-653292365) at 2021-05-06 04:15 AM PDT -akibrhast,2021-05-06T11:16:30Z,- akibrhast closed issue by PR 1514: [1481](https://github.com/hackforla/website/issues/1481#event-4694520452) at 2021-05-06 04:16 AM PDT -akibrhast,2021-05-06T21:02:25Z,- akibrhast unassigned from issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831557350) at 2021-05-06 02:02 PM PDT -akibrhast,2021-05-07T19:36:26Z,- akibrhast submitted pull request review: [1528](https://github.com/hackforla/website/pull/1528#pullrequestreview-654809809) at 2021-05-07 12:36 PM PDT -akibrhast,2021-05-07T19:36:31Z,- akibrhast closed issue by PR 1528: [1511](https://github.com/hackforla/website/issues/1511#event-4704241108) at 2021-05-07 12:36 PM PDT -akibrhast,2021-05-10T15:41:19Z,- akibrhast submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-655794988) at 2021-05-10 08:41 AM PDT -akibrhast,2021-05-11T01:08:20Z,- akibrhast closed issue by PR 1535: [1510](https://github.com/hackforla/website/issues/1510#event-4722052513) at 2021-05-10 06:08 PM PDT -akibrhast,2021-05-11T01:19:33Z,- akibrhast commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837595081) at 2021-05-10 06:19 PM PDT -akibrhast,2021-05-11T01:19:38Z,- akibrhast closed issue by PR 1522: [1507](https://github.com/hackforla/website/issues/1507#event-4722108575) at 2021-05-10 06:19 PM PDT -akibrhast,2021-05-11T01:21:18Z,- akibrhast commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837596687) at 2021-05-10 06:21 PM PDT -akibrhast,2021-05-11T05:23:53Z,- akibrhast assigned to issue: [1538](https://github.com/hackforla/website/issues/1538) at 2021-05-10 10:23 PM PDT -akibrhast,2021-05-11T22:28:54Z,- akibrhast commented on issue: [1538](https://github.com/hackforla/website/issues/1538#issuecomment-839236925) at 2021-05-11 03:28 PM PDT -akibrhast,2021-05-11T22:28:55Z,- akibrhast closed issue as completed: [1538](https://github.com/hackforla/website/issues/1538#event-4732114180) at 2021-05-11 03:28 PM PDT -akibrhast,2021-05-13T17:00:23Z,- akibrhast commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-840695207) at 2021-05-13 10:00 AM PDT -akibrhast,2021-05-16T18:54:51Z,- akibrhast commented on issue: [1070](https://github.com/hackforla/website/issues/1070#issuecomment-841860715) at 2021-05-16 11:54 AM PDT -akibrhast,2021-05-19T02:40:30Z,- akibrhast submitted pull request review: [1557](https://github.com/hackforla/website/pull/1557#pullrequestreview-662723686) at 2021-05-18 07:40 PM PDT -akibrhast,2021-05-22T17:05:22Z,- akibrhast commented on pull request: [1591](https://github.com/hackforla/website/pull/1591#issuecomment-846436581) at 2021-05-22 10:05 AM PDT -akibrhast,2021-05-24T02:31:30Z,- akibrhast commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-846689486) at 2021-05-23 07:31 PM PDT -akibrhast,2021-05-24T02:32:36Z,- akibrhast assigned to issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-846600374) at 2021-05-23 07:32 PM PDT -akibrhast,2021-05-26T13:26:11Z,- akibrhast submitted pull request review: [1640](https://github.com/hackforla/website/pull/1640#pullrequestreview-669016575) at 2021-05-26 06:26 AM PDT -akibrhast,2021-05-26T13:26:20Z,- akibrhast closed issue by PR 1640: [1559](https://github.com/hackforla/website/issues/1559#event-4799374780) at 2021-05-26 06:26 AM PDT -akibrhast,2021-05-26T14:41:17Z,- akibrhast assigned to issue: [1642](https://github.com/hackforla/website/issues/1642) at 2021-05-26 07:41 AM PDT -akibrhast,2021-05-26T14:44:59Z,- akibrhast assigned to issue: [1643](https://github.com/hackforla/website/issues/1643) at 2021-05-26 07:44 AM PDT -akibrhast,2021-05-26T14:45:12Z,- akibrhast closed issue as completed: [1642](https://github.com/hackforla/website/issues/1642#event-4799914646) at 2021-05-26 07:45 AM PDT -akibrhast,2021-05-26T15:19:00Z,- akibrhast closed issue as completed: [1643](https://github.com/hackforla/website/issues/1643#event-4800149267) at 2021-05-26 08:19 AM PDT -akibrhast,2021-05-26T15:26:36Z,- akibrhast opened issue: [1645](https://github.com/hackforla/website/issues/1645) at 2021-05-26 08:26 AM PDT -akibrhast,2021-05-26T15:26:51Z,- akibrhast closed issue as completed: [1645](https://github.com/hackforla/website/issues/1645#event-4800200399) at 2021-05-26 08:26 AM PDT -akibrhast,2021-05-26T15:35:36Z,- akibrhast closed issue as completed: [1646](https://github.com/hackforla/website/issues/1646#event-4800258428) at 2021-05-26 08:35 AM PDT -akibrhast,2021-05-26T15:35:42Z,- akibrhast closed issue as completed: [1644](https://github.com/hackforla/website/issues/1644#event-4800259303) at 2021-05-26 08:35 AM PDT -akibrhast,2021-05-26T15:40:17Z,- akibrhast closed issue as completed: [1647](https://github.com/hackforla/website/issues/1647#event-4800291500) at 2021-05-26 08:40 AM PDT -akibrhast,2021-05-26T15:40:17Z,- akibrhast closed issue as completed: [1648](https://github.com/hackforla/website/issues/1648#event-4800291531) at 2021-05-26 08:40 AM PDT -akibrhast,2021-05-26T15:40:17Z,- akibrhast closed issue as completed: [1649](https://github.com/hackforla/website/issues/1649#event-4800291572) at 2021-05-26 08:40 AM PDT -akibrhast,2021-05-26T15:59:15Z,- akibrhast closed issue as completed: [1650](https://github.com/hackforla/website/issues/1650#event-4800412582) at 2021-05-26 08:59 AM PDT -akibrhast,2021-05-26T16:09:24Z,- akibrhast closed issue as completed: [1651](https://github.com/hackforla/website/issues/1651#event-4800473364) at 2021-05-26 09:09 AM PDT -akibrhast,2021-05-26T16:17:01Z,- akibrhast closed issue as completed: [1652](https://github.com/hackforla/website/issues/1652#event-4800518613) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:01Z,- akibrhast closed issue as completed: [1653](https://github.com/hackforla/website/issues/1653#event-4800518636) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:02Z,- akibrhast closed issue as completed: [1654](https://github.com/hackforla/website/issues/1654#event-4800518654) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:02Z,- akibrhast closed issue as completed: [1655](https://github.com/hackforla/website/issues/1655#event-4800518677) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:17:02Z,- akibrhast closed issue as completed: [1656](https://github.com/hackforla/website/issues/1656#event-4800518701) at 2021-05-26 09:17 AM PDT -akibrhast,2021-05-26T16:25:09Z,- akibrhast closed issue as completed: [1657](https://github.com/hackforla/website/issues/1657#event-4800565363) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:09Z,- akibrhast closed issue as completed: [1658](https://github.com/hackforla/website/issues/1658#event-4800565381) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:10Z,- akibrhast closed issue as completed: [1659](https://github.com/hackforla/website/issues/1659#event-4800565419) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:10Z,- akibrhast closed issue as completed: [1660](https://github.com/hackforla/website/issues/1660#event-4800565454) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T16:25:10Z,- akibrhast closed issue as completed: [1661](https://github.com/hackforla/website/issues/1661#event-4800565479) at 2021-05-26 09:25 AM PDT -akibrhast,2021-05-26T17:18:12Z,- akibrhast closed issue as completed: [1662](https://github.com/hackforla/website/issues/1662#event-4800854375) at 2021-05-26 10:18 AM PDT -akibrhast,2021-05-26T17:18:12Z,- akibrhast closed issue as completed: [1663](https://github.com/hackforla/website/issues/1663#event-4800854403) at 2021-05-26 10:18 AM PDT -akibrhast,2021-05-26T17:18:12Z,- akibrhast closed issue as completed: [1664](https://github.com/hackforla/website/issues/1664#event-4800854417) at 2021-05-26 10:18 AM PDT -akibrhast,2021-05-26T17:50:23Z,- akibrhast commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-848991725) at 2021-05-26 10:50 AM PDT -akibrhast,2021-05-26T17:55:09Z,- akibrhast closed issue as completed: [1665](https://github.com/hackforla/website/issues/1665#event-4801084861) at 2021-05-26 10:55 AM PDT -akibrhast,2021-05-26T17:55:09Z,- akibrhast closed issue as completed: [1666](https://github.com/hackforla/website/issues/1666#event-4801084880) at 2021-05-26 10:55 AM PDT -akibrhast,2021-05-26T17:55:09Z,- akibrhast closed issue as completed: [1667](https://github.com/hackforla/website/issues/1667#event-4801084897) at 2021-05-26 10:55 AM PDT -akibrhast,2021-06-02T02:33:32Z,- akibrhast assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040453) at 2021-06-01 07:33 PM PDT -akibrhast,2021-06-04T03:12:59Z,- akibrhast commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-854326393) at 2021-06-03 08:12 PM PDT -akibrhast,2021-06-04T03:24:46Z,- akibrhast opened issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -akibrhast,2021-06-04T05:01:26Z,- akibrhast assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -akibrhast,2021-06-04T05:15:39Z,- akibrhast assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -akibrhast,2021-06-06T14:16:06Z,- akibrhast commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855406351) at 2021-06-06 07:16 AM PDT -akibrhast,2021-06-06T14:55:49Z,- akibrhast unassigned from issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040453) at 2021-06-06 07:55 AM PDT -akibrhast,2021-06-06T15:03:01Z,- akibrhast submitted pull request review: [1679](https://github.com/hackforla/website/pull/1679#pullrequestreview-676875251) at 2021-06-06 08:03 AM PDT -akibrhast,2021-06-06T15:18:48Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-855415495) at 2021-06-06 08:18 AM PDT -akibrhast,2021-06-06T15:20:41Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-676876824) at 2021-06-06 08:20 AM PDT -akibrhast,2021-06-06T17:36:01Z,- akibrhast assigned to issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-06-06 10:36 AM PDT -akibrhast,2021-06-06T19:49:19Z,- akibrhast unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -akibrhast,2021-06-06T19:50:45Z,- akibrhast commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855452951) at 2021-06-06 12:50 PM PDT -akibrhast,2021-06-06T19:52:29Z,- akibrhast commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855453165) at 2021-06-06 12:52 PM PDT -akibrhast,2021-06-06T19:52:29Z,- akibrhast closed issue as completed: [1265](https://github.com/hackforla/website/issues/1265#event-4848555688) at 2021-06-06 12:52 PM PDT -akibrhast,2021-06-10T14:07:09Z,- akibrhast commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-858653669) at 2021-06-10 07:07 AM PDT -akibrhast,2021-06-10T14:17:23Z,- akibrhast commented on issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-858661855) at 2021-06-10 07:17 AM PDT -akibrhast,2021-06-10T14:17:31Z,- akibrhast assigned to issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-858661855) at 2021-06-10 07:17 AM PDT -akibrhast,2021-06-10T14:36:37Z,- akibrhast submitted pull request review: [1702](https://github.com/hackforla/website/pull/1702#pullrequestreview-680869994) at 2021-06-10 07:36 AM PDT -akibrhast,2021-06-10T14:37:29Z,- akibrhast closed issue by PR 1702: [1532](https://github.com/hackforla/website/issues/1532#event-4871867600) at 2021-06-10 07:37 AM PDT -akibrhast,2021-06-10T14:46:57Z,- akibrhast submitted pull request review: [1701](https://github.com/hackforla/website/pull/1701#pullrequestreview-680883199) at 2021-06-10 07:46 AM PDT -akibrhast,2021-06-10T16:26:20Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-858765990) at 2021-06-10 09:26 AM PDT -akibrhast,2021-06-10T17:24:15Z,- akibrhast commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-858810670) at 2021-06-10 10:24 AM PDT -akibrhast,2021-06-11T01:59:55Z,- akibrhast submitted pull request review: [1706](https://github.com/hackforla/website/pull/1706#pullrequestreview-681387498) at 2021-06-10 06:59 PM PDT -akibrhast,2021-06-11T02:00:23Z,- akibrhast closed issue by PR 1706: [1599](https://github.com/hackforla/website/issues/1599#event-4875198638) at 2021-06-10 07:00 PM PDT -akibrhast,2021-06-11T04:12:12Z,- akibrhast commented on issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-859250196) at 2021-06-10 09:12 PM PDT -akibrhast,2021-06-11T04:12:12Z,- akibrhast closed issue as completed: [1695](https://github.com/hackforla/website/issues/1695#event-4875538851) at 2021-06-10 09:12 PM PDT -akibrhast,2021-06-11T13:33:13Z,- akibrhast closed issue by PR 1701: [1553](https://github.com/hackforla/website/issues/1553#event-4878030214) at 2021-06-11 06:33 AM PDT -akibrhast,2021-06-11T13:39:31Z,- akibrhast commented on pull request: [1704](https://github.com/hackforla/website/pull/1704#issuecomment-859589301) at 2021-06-11 06:39 AM PDT -akibrhast,2021-06-11T13:46:09Z,- akibrhast closed issue by PR 1609: [1595](https://github.com/hackforla/website/issues/1595#event-4878105942) at 2021-06-11 06:46 AM PDT -akibrhast,2021-06-11T16:01:20Z,- akibrhast opened issue: [1709](https://github.com/hackforla/website/issues/1709) at 2021-06-11 09:01 AM PDT -akibrhast,2021-06-11T16:09:15Z,- akibrhast opened issue: [1710](https://github.com/hackforla/website/issues/1710) at 2021-06-11 09:09 AM PDT -akibrhast,2021-06-11T16:24:53Z,- akibrhast commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-859697950) at 2021-06-11 09:24 AM PDT -akibrhast,2021-06-11T17:16:09Z,- akibrhast commented on issue: [1707](https://github.com/hackforla/website/issues/1707#issuecomment-859726364) at 2021-06-11 10:16 AM PDT -akibrhast,2021-06-11T17:51:38Z,- akibrhast assigned to issue: [1712](https://github.com/hackforla/website/issues/1712) at 2021-06-11 10:51 AM PDT -akibrhast,2021-06-11T23:39:21Z,- akibrhast assigned to issue: [1714](https://github.com/hackforla/website/issues/1714) at 2021-06-11 04:39 PM PDT -akibrhast,2021-06-11T23:39:29Z,- akibrhast commented on issue: [1714](https://github.com/hackforla/website/issues/1714#issuecomment-859958399) at 2021-06-11 04:39 PM PDT -akibrhast,2021-06-11T23:39:30Z,- akibrhast closed issue as completed: [1714](https://github.com/hackforla/website/issues/1714#event-4880492017) at 2021-06-11 04:39 PM PDT -akibrhast,2021-06-11T23:50:46Z,- akibrhast opened pull request: [1716](https://github.com/hackforla/website/pull/1716) at 2021-06-11 04:50 PM PDT -akibrhast,2021-06-12T00:17:15Z,- akibrhast pull request merged: [1716](https://github.com/hackforla/website/pull/1716#event-4880555966) at 2021-06-11 05:17 PM PDT -akibrhast,2021-06-12T03:04:31Z,- akibrhast submitted pull request review: [1704](https://github.com/hackforla/website/pull/1704#pullrequestreview-682291027) at 2021-06-11 08:04 PM PDT -akibrhast,2021-06-12T03:04:37Z,- akibrhast closed issue by PR 1704: [1519](https://github.com/hackforla/website/issues/1519#event-4880737783) at 2021-06-11 08:04 PM PDT -akibrhast,2021-06-12T05:44:02Z,- akibrhast opened pull request: [1719](https://github.com/hackforla/website/pull/1719) at 2021-06-11 10:44 PM PDT -akibrhast,2021-06-12T16:33:31Z,- akibrhast assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:33 AM PDT -akibrhast,2021-06-12T19:51:12Z,- akibrhast pull request merged: [1719](https://github.com/hackforla/website/pull/1719#event-4881611273) at 2021-06-12 12:51 PM PDT -akibrhast,2021-06-12T20:04:24Z,- akibrhast closed issue as completed: [1727](https://github.com/hackforla/website/issues/1727#event-4881621262) at 2021-06-12 01:04 PM PDT -akibrhast,2021-06-12T22:10:00Z,- akibrhast assigned to issue: [1728](https://github.com/hackforla/website/issues/1728) at 2021-06-12 03:10 PM PDT -akibrhast,2021-06-13T02:36:03Z,- akibrhast submitted pull request review: [1726](https://github.com/hackforla/website/pull/1726#pullrequestreview-682366237) at 2021-06-12 07:36 PM PDT -akibrhast,2021-06-13T15:43:07Z,- akibrhast submitted pull request review: [1732](https://github.com/hackforla/website/pull/1732#pullrequestreview-682423108) at 2021-06-13 08:43 AM PDT -akibrhast,2021-06-13T15:43:29Z,- akibrhast submitted pull request review: [1732](https://github.com/hackforla/website/pull/1732#pullrequestreview-682423135) at 2021-06-13 08:43 AM PDT -akibrhast,2021-06-13T15:59:23Z,- akibrhast submitted pull request review: [1732](https://github.com/hackforla/website/pull/1732#pullrequestreview-682424410) at 2021-06-13 08:59 AM PDT -akibrhast,2021-06-13T16:01:31Z,- akibrhast closed issue by PR 1726: [1606](https://github.com/hackforla/website/issues/1606#event-4882426615) at 2021-06-13 09:01 AM PDT -akibrhast,2021-06-13T16:19:11Z,- akibrhast commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-860236394) at 2021-06-13 09:19 AM PDT -akibrhast,2021-06-13T16:37:24Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860238675) at 2021-06-13 09:37 AM PDT -akibrhast,2021-06-13T17:49:21Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860247350) at 2021-06-13 10:49 AM PDT -akibrhast,2021-06-13T18:31:27Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-860252265) at 2021-06-13 11:31 AM PDT -akibrhast,2021-06-13T19:27:44Z,- akibrhast unassigned from issue: [1728](https://github.com/hackforla/website/issues/1728) at 2021-06-13 12:27 PM PDT -akibrhast,2021-06-14T14:09:09Z,- akibrhast opened pull request: [1735](https://github.com/hackforla/website/pull/1735) at 2021-06-14 07:09 AM PDT -akibrhast,2021-06-14T14:11:24Z,- akibrhast pull request closed w/o merging: [1735](https://github.com/hackforla/website/pull/1735#event-4885939574) at 2021-06-14 07:11 AM PDT -akibrhast,2021-06-14T15:16:31Z,- akibrhast assigned to issue: [1482](https://github.com/hackforla/website/issues/1482#event-4881619223) at 2021-06-14 08:16 AM PDT -akibrhast,2021-06-14T18:05:00Z,- akibrhast commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860883797) at 2021-06-14 11:05 AM PDT -akibrhast,2021-06-15T02:49:13Z,- akibrhast opened pull request: [1736](https://github.com/hackforla/website/pull/1736) at 2021-06-14 07:49 PM PDT -akibrhast,2021-06-15T02:49:53Z,- akibrhast pull request closed w/o merging: [1736](https://github.com/hackforla/website/pull/1736#event-4888895287) at 2021-06-14 07:49 PM PDT -akibrhast,2021-06-15T02:51:05Z,- akibrhast opened pull request: [1737](https://github.com/hackforla/website/pull/1737) at 2021-06-14 07:51 PM PDT -akibrhast,2021-06-15T02:59:51Z,- akibrhast pull request closed w/o merging: [1737](https://github.com/hackforla/website/pull/1737#event-4888917845) at 2021-06-14 07:59 PM PDT -akibrhast,2021-06-15T04:24:37Z,- akibrhast submitted pull request review: [1679](https://github.com/hackforla/website/pull/1679#pullrequestreview-683544766) at 2021-06-14 09:24 PM PDT -akibrhast,2021-06-15T04:24:42Z,- akibrhast closed issue by PR 1679: [1531](https://github.com/hackforla/website/issues/1531#event-4889109542) at 2021-06-14 09:24 PM PDT -akibrhast,2021-06-15T04:25:50Z,- akibrhast opened pull request: [1738](https://github.com/hackforla/website/pull/1738) at 2021-06-14 09:25 PM PDT -akibrhast,2021-06-15T04:25:58Z,- akibrhast pull request merged: [1738](https://github.com/hackforla/website/pull/1738#event-4889112603) at 2021-06-14 09:25 PM PDT -akibrhast,2021-06-15T15:24:44Z,- akibrhast opened pull request: [1741](https://github.com/hackforla/website/pull/1741) at 2021-06-15 08:24 AM PDT -akibrhast,2021-06-15T15:25:18Z,- akibrhast pull request closed w/o merging: [1741](https://github.com/hackforla/website/pull/1741#event-4892435662) at 2021-06-15 08:25 AM PDT -akibrhast,2021-06-15T16:24:07Z,- akibrhast unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-15 09:24 AM PDT -akibrhast,2021-06-15T16:27:06Z,- akibrhast commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-861646067) at 2021-06-15 09:27 AM PDT -akibrhast,2021-06-15T16:27:06Z,- akibrhast closed issue as completed: [1685](https://github.com/hackforla/website/issues/1685#event-4892798258) at 2021-06-15 09:27 AM PDT -akibrhast,2021-06-15T16:50:56Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684256669) at 2021-06-15 09:50 AM PDT -akibrhast,2021-06-15T16:59:25Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684265101) at 2021-06-15 09:59 AM PDT -akibrhast,2021-06-15T17:00:21Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684266027) at 2021-06-15 10:00 AM PDT -akibrhast,2021-06-15T17:01:50Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-684267434) at 2021-06-15 10:01 AM PDT -akibrhast,2021-06-15T20:51:19Z,- akibrhast commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-861822602) at 2021-06-15 01:51 PM PDT -akibrhast,2021-06-15T22:34:28Z,- akibrhast submitted pull request review: [1745](https://github.com/hackforla/website/pull/1745#pullrequestreview-684547533) at 2021-06-15 03:34 PM PDT -akibrhast,2021-06-15T23:47:41Z,- akibrhast submitted pull request review: [1746](https://github.com/hackforla/website/pull/1746#pullrequestreview-684607546) at 2021-06-15 04:47 PM PDT -akibrhast,2021-06-16T00:38:41Z,- akibrhast opened pull request: [1747](https://github.com/hackforla/website/pull/1747) at 2021-06-15 05:38 PM PDT -akibrhast,2021-06-16T00:38:57Z,- akibrhast pull request merged: [1747](https://github.com/hackforla/website/pull/1747#event-4894717778) at 2021-06-15 05:38 PM PDT -akibrhast,2021-06-16T14:53:45Z,- akibrhast submitted pull request review: [1740](https://github.com/hackforla/website/pull/1740#pullrequestreview-685284222) at 2021-06-16 07:53 AM PDT -akibrhast,2021-06-16T14:54:46Z,- akibrhast closed issue by PR 1740: [1707](https://github.com/hackforla/website/issues/1707#event-4898522151) at 2021-06-16 07:54 AM PDT -akibrhast,2021-06-16T14:58:08Z,- akibrhast opened issue: [1753](https://github.com/hackforla/website/issues/1753) at 2021-06-16 07:58 AM PDT -akibrhast,2021-06-16T14:58:20Z,- akibrhast opened issue: [1754](https://github.com/hackforla/website/issues/1754) at 2021-06-16 07:58 AM PDT -akibrhast,2021-06-16T14:58:44Z,- akibrhast opened issue: [1755](https://github.com/hackforla/website/issues/1755) at 2021-06-16 07:58 AM PDT -akibrhast,2021-06-16T15:03:19Z,- akibrhast opened pull request: [1756](https://github.com/hackforla/website/pull/1756) at 2021-06-16 08:03 AM PDT -akibrhast,2021-06-16T15:20:34Z,- akibrhast opened pull request: [1757](https://github.com/hackforla/website/pull/1757) at 2021-06-16 08:20 AM PDT -akibrhast,2021-06-16T15:38:08Z,- akibrhast opened pull request: [1758](https://github.com/hackforla/website/pull/1758) at 2021-06-16 08:38 AM PDT -akibrhast,2021-06-16T15:50:27Z,- akibrhast pull request closed w/o merging: [1756](https://github.com/hackforla/website/pull/1756#event-4898876678) at 2021-06-16 08:50 AM PDT -akibrhast,2021-06-16T15:50:28Z,- akibrhast pull request closed w/o merging: [1757](https://github.com/hackforla/website/pull/1757#event-4898876719) at 2021-06-16 08:50 AM PDT -akibrhast,2021-06-16T15:52:08Z,- akibrhast submitted pull request review: [1751](https://github.com/hackforla/website/pull/1751#pullrequestreview-685356891) at 2021-06-16 08:52 AM PDT -akibrhast,2021-06-16T15:53:05Z,- akibrhast closed issue by PR 1751: [1556](https://github.com/hackforla/website/issues/1556#event-4898891708) at 2021-06-16 08:53 AM PDT -akibrhast,2021-06-16T17:23:10Z,- akibrhast closed issue as completed: [1753](https://github.com/hackforla/website/issues/1753#event-4899373558) at 2021-06-16 10:23 AM PDT -akibrhast,2021-06-16T17:23:10Z,- akibrhast closed issue as completed: [1754](https://github.com/hackforla/website/issues/1754#event-4899373575) at 2021-06-16 10:23 AM PDT -akibrhast,2021-06-16T17:23:10Z,- akibrhast closed issue as completed: [1755](https://github.com/hackforla/website/issues/1755#event-4899373593) at 2021-06-16 10:23 AM PDT -akibrhast,2021-06-16T21:01:41Z,- akibrhast opened pull request: [1759](https://github.com/hackforla/website/pull/1759) at 2021-06-16 02:01 PM PDT -akibrhast,2021-06-16T21:02:10Z,- akibrhast pull request closed w/o merging: [1759](https://github.com/hackforla/website/pull/1759#event-4900401812) at 2021-06-16 02:02 PM PDT -akibrhast,2021-06-16T21:20:03Z,- akibrhast opened pull request: [1760](https://github.com/hackforla/website/pull/1760) at 2021-06-16 02:20 PM PDT -akibrhast,2021-06-16T21:20:09Z,- akibrhast pull request closed w/o merging: [1760](https://github.com/hackforla/website/pull/1760#event-4900478092) at 2021-06-16 02:20 PM PDT -akibrhast,2021-06-16T21:22:10Z,- akibrhast opened pull request: [1761](https://github.com/hackforla/website/pull/1761) at 2021-06-16 02:22 PM PDT -akibrhast,2021-06-16T21:22:58Z,- akibrhast pull request closed w/o merging: [1761](https://github.com/hackforla/website/pull/1761#event-4900488566) at 2021-06-16 02:22 PM PDT -akibrhast,2021-06-16T22:20:13Z,- akibrhast opened pull request: [1762](https://github.com/hackforla/website/pull/1762) at 2021-06-16 03:20 PM PDT -akibrhast,2021-06-16T23:27:53Z,- akibrhast unassigned from issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860883797) at 2021-06-16 04:27 PM PDT -akibrhast,2021-06-17T00:33:23Z,- akibrhast submitted pull request review: [1763](https://github.com/hackforla/website/pull/1763#pullrequestreview-685771573) at 2021-06-16 05:33 PM PDT -akibrhast,2021-06-17T04:07:55Z,- akibrhast reopened pull request: [1732](https://github.com/hackforla/website/pull/1732#event-4901073326) at 2021-06-16 09:07 PM PDT -akibrhast,2021-06-17T04:16:03Z,- akibrhast submitted pull request review: [1764](https://github.com/hackforla/website/pull/1764#pullrequestreview-685849793) at 2021-06-16 09:16 PM PDT -akibrhast,2021-06-17T04:16:19Z,- akibrhast closed issue by PR 1764: [1574](https://github.com/hackforla/website/issues/1574#event-4901661239) at 2021-06-16 09:16 PM PDT -akibrhast,2021-06-17T04:23:27Z,- akibrhast commented on pull request: [1763](https://github.com/hackforla/website/pull/1763#issuecomment-862912210) at 2021-06-16 09:23 PM PDT -akibrhast,2021-06-17T04:24:10Z,- akibrhast closed issue by PR 1763: [1578](https://github.com/hackforla/website/issues/1578#event-4901683758) at 2021-06-16 09:24 PM PDT -akibrhast,2021-06-17T04:28:08Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-862913858) at 2021-06-16 09:28 PM PDT -akibrhast,2021-06-18T01:56:37Z,- akibrhast submitted pull request review: [1771](https://github.com/hackforla/website/pull/1771#pullrequestreview-686971473) at 2021-06-17 06:56 PM PDT -akibrhast,2021-06-18T01:58:58Z,- akibrhast submitted pull request review: [1765](https://github.com/hackforla/website/pull/1765#pullrequestreview-686972260) at 2021-06-17 06:58 PM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1766](https://github.com/hackforla/website/issues/1766#event-4910615848) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1767](https://github.com/hackforla/website/issues/1767#event-4910615870) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1768](https://github.com/hackforla/website/issues/1768#event-4910615883) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:37Z,- akibrhast closed issue as completed: [1769](https://github.com/hackforla/website/issues/1769#event-4910615892) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1770](https://github.com/hackforla/website/issues/1770#event-4910615917) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1772](https://github.com/hackforla/website/issues/1772#event-4910615938) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1776](https://github.com/hackforla/website/issues/1776#event-4910615948) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1777](https://github.com/hackforla/website/issues/1777#event-4910615962) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:05:38Z,- akibrhast closed issue as completed: [1778](https://github.com/hackforla/website/issues/1778#event-4910615980) at 2021-06-18 09:05 AM PDT -akibrhast,2021-06-18T16:37:38Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864156605) at 2021-06-18 09:37 AM PDT -akibrhast,2021-06-18T16:50:59Z,- akibrhast closed issue as completed: [1779](https://github.com/hackforla/website/issues/1779#event-4910785406) at 2021-06-18 09:50 AM PDT -akibrhast,2021-06-18T17:03:43Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-864169253) at 2021-06-18 10:03 AM PDT -akibrhast,2021-06-18T17:07:53Z,- akibrhast pull request closed w/o merging: [1762](https://github.com/hackforla/website/pull/1762#event-4910844585) at 2021-06-18 10:07 AM PDT -akibrhast,2021-06-18T21:36:26Z,- akibrhast submitted pull request review: [1782](https://github.com/hackforla/website/pull/1782#pullrequestreview-687739340) at 2021-06-18 02:36 PM PDT -akibrhast,2021-06-19T00:01:55Z,- akibrhast closed issue by PR 1771: [1567](https://github.com/hackforla/website/issues/1567#event-4911920996) at 2021-06-18 05:01 PM PDT -akibrhast,2021-06-19T00:04:14Z,- akibrhast submitted pull request review: [1774](https://github.com/hackforla/website/pull/1774#pullrequestreview-687776087) at 2021-06-18 05:04 PM PDT -akibrhast,2021-06-19T00:09:38Z,- akibrhast closed issue by PR 1765: [1582](https://github.com/hackforla/website/issues/1582#event-4911931726) at 2021-06-18 05:09 PM PDT -akibrhast,2021-06-19T00:13:14Z,- akibrhast submitted pull request review: [1785](https://github.com/hackforla/website/pull/1785#pullrequestreview-687777359) at 2021-06-18 05:13 PM PDT -akibrhast,2021-06-19T00:17:36Z,- akibrhast submitted pull request review: [1780](https://github.com/hackforla/website/pull/1780#pullrequestreview-687777871) at 2021-06-18 05:17 PM PDT -akibrhast,2021-06-19T00:19:17Z,- akibrhast submitted pull request review: [1784](https://github.com/hackforla/website/pull/1784#pullrequestreview-687778067) at 2021-06-18 05:19 PM PDT -akibrhast,2021-06-19T00:20:30Z,- akibrhast submitted pull request review: [1783](https://github.com/hackforla/website/pull/1783#pullrequestreview-687778201) at 2021-06-18 05:20 PM PDT -akibrhast,2021-06-19T00:37:28Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-687780034) at 2021-06-18 05:37 PM PDT -akibrhast,2021-06-19T01:21:34Z,- akibrhast commented on pull request: [1774](https://github.com/hackforla/website/pull/1774#issuecomment-864336336) at 2021-06-18 06:21 PM PDT -akibrhast,2021-06-19T01:31:09Z,- akibrhast commented on pull request: [1758](https://github.com/hackforla/website/pull/1758#issuecomment-864337232) at 2021-06-18 06:31 PM PDT -akibrhast,2021-06-19T01:33:27Z,- akibrhast pull request merged: [1758](https://github.com/hackforla/website/pull/1758#event-4911998774) at 2021-06-18 06:33 PM PDT -akibrhast,2021-06-19T02:05:27Z,- akibrhast submitted pull request review: [1471](https://github.com/hackforla/website/pull/1471#pullrequestreview-687786603) at 2021-06-18 07:05 PM PDT -akibrhast,2021-06-19T02:08:00Z,- akibrhast closed issue by PR 1471: [1390](https://github.com/hackforla/website/issues/1390#event-4912022826) at 2021-06-18 07:08 PM PDT -akibrhast,2021-06-19T02:12:58Z,- akibrhast submitted pull request review: [1785](https://github.com/hackforla/website/pull/1785#pullrequestreview-687787094) at 2021-06-18 07:12 PM PDT -akibrhast,2021-06-19T02:55:59Z,- akibrhast commented on issue: [1781](https://github.com/hackforla/website/issues/1781#issuecomment-864345684) at 2021-06-18 07:55 PM PDT -akibrhast,2021-06-19T02:56:06Z,- akibrhast closed issue as completed: [1781](https://github.com/hackforla/website/issues/1781#event-4912053560) at 2021-06-18 07:56 PM PDT -akibrhast,2021-06-19T02:57:36Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864345826) at 2021-06-18 07:57 PM PDT -akibrhast,2021-06-19T16:57:20Z,- akibrhast commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864436023) at 2021-06-19 09:57 AM PDT -akibrhast,2021-06-19T16:57:20Z,- akibrhast closed issue as completed: [1673](https://github.com/hackforla/website/issues/1673#event-4912649118) at 2021-06-19 09:57 AM PDT -akibrhast,2021-06-19T17:17:13Z,- akibrhast commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864438377) at 2021-06-19 10:17 AM PDT -akibrhast,2021-06-19T19:02:08Z,- akibrhast commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864450362) at 2021-06-19 12:02 PM PDT -akibrhast,2021-06-20T14:01:25Z,- akibrhast closed issue by PR 1780: [1568](https://github.com/hackforla/website/issues/1568#event-4913441366) at 2021-06-20 07:01 AM PDT -akibrhast,2021-06-20T19:12:08Z,- akibrhast closed issue by PR 1784: [1586](https://github.com/hackforla/website/issues/1586#event-4913700547) at 2021-06-20 12:12 PM PDT -akibrhast,2021-06-21T16:01:15Z,- akibrhast submitted pull request review: [1774](https://github.com/hackforla/website/pull/1774#pullrequestreview-688615780) at 2021-06-21 09:01 AM PDT -akibrhast,2021-06-21T16:02:30Z,- akibrhast closed issue by PR 1774: [1610](https://github.com/hackforla/website/issues/1610#event-4917786185) at 2021-06-21 09:02 AM PDT -akibrhast,2021-06-21T16:03:43Z,- akibrhast submitted pull request review: [1775](https://github.com/hackforla/website/pull/1775#pullrequestreview-688620435) at 2021-06-21 09:03 AM PDT -akibrhast,2021-06-21T16:05:19Z,- akibrhast commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-865158559) at 2021-06-21 09:05 AM PDT -akibrhast,2021-06-21T16:08:15Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-688624919) at 2021-06-21 09:08 AM PDT -akibrhast,2021-06-21T16:26:29Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-688642215) at 2021-06-21 09:26 AM PDT -akibrhast,2021-06-21T16:54:01Z,- akibrhast commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-865192351) at 2021-06-21 09:54 AM PDT -akibrhast,2021-06-21T17:25:53Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-865214070) at 2021-06-21 10:25 AM PDT -akibrhast,2021-06-22T05:31:57Z,- akibrhast commented on pull request: [1773](https://github.com/hackforla/website/pull/1773#issuecomment-865609740) at 2021-06-21 10:31 PM PDT -akibrhast,2021-06-22T05:32:09Z,- akibrhast reopened pull request: [1773](https://github.com/hackforla/website/pull/1773#event-4920428135) at 2021-06-21 10:32 PM PDT -akibrhast,2021-06-22T05:34:25Z,- akibrhast opened pull request: [1805](https://github.com/hackforla/website/pull/1805) at 2021-06-21 10:34 PM PDT -akibrhast,2021-06-22T05:40:26Z,- akibrhast pull request closed w/o merging: [1805](https://github.com/hackforla/website/pull/1805#event-4920452695) at 2021-06-21 10:40 PM PDT -akibrhast,2021-06-22T05:42:06Z,- akibrhast opened pull request: [1806](https://github.com/hackforla/website/pull/1806) at 2021-06-21 10:42 PM PDT -akibrhast,2021-06-22T05:54:31Z,- akibrhast pull request closed w/o merging: [1806](https://github.com/hackforla/website/pull/1806#event-4920494425) at 2021-06-21 10:54 PM PDT -akibrhast,2021-06-22T06:03:33Z,- akibrhast opened pull request: [1807](https://github.com/hackforla/website/pull/1807) at 2021-06-21 11:03 PM PDT -akibrhast,2021-06-22T06:05:39Z,- akibrhast pull request closed w/o merging: [1807](https://github.com/hackforla/website/pull/1807#event-4920531691) at 2021-06-21 11:05 PM PDT -akibrhast,2021-06-22T06:15:28Z,- akibrhast opened pull request: [1809](https://github.com/hackforla/website/pull/1809) at 2021-06-21 11:15 PM PDT -akibrhast,2021-06-22T06:16:58Z,- akibrhast pull request closed w/o merging: [1809](https://github.com/hackforla/website/pull/1809#event-4920573132) at 2021-06-21 11:16 PM PDT -akibrhast,2021-06-22T06:22:28Z,- akibrhast pull request closed w/o merging: [1809](https://github.com/hackforla/website/pull/1809#event-4920593366) at 2021-06-21 11:22 PM PDT -akibrhast,2021-06-22T06:24:42Z,- akibrhast opened pull request: [1810](https://github.com/hackforla/website/pull/1810) at 2021-06-21 11:24 PM PDT -akibrhast,2021-06-22T06:26:13Z,- akibrhast pull request closed w/o merging: [1810](https://github.com/hackforla/website/pull/1810#event-4920607145) at 2021-06-21 11:26 PM PDT -akibrhast,2021-06-22T13:45:31Z,- akibrhast closed issue by PR 1782: [1579](https://github.com/hackforla/website/issues/1579#event-4922870281) at 2021-06-22 06:45 AM PDT -akibrhast,2021-06-22T14:17:55Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-689570458) at 2021-06-22 07:17 AM PDT -akibrhast,2021-06-22T14:22:48Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-689576617) at 2021-06-22 07:22 AM PDT -akibrhast,2021-06-22T14:25:28Z,- akibrhast closed issue by PR 1783: [1576](https://github.com/hackforla/website/issues/1576#event-4923134105) at 2021-06-22 07:25 AM PDT -akibrhast,2021-06-22T14:45:58Z,- akibrhast opened pull request: [1815](https://github.com/hackforla/website/pull/1815) at 2021-06-22 07:45 AM PDT -akibrhast,2021-06-22T15:44:37Z,- akibrhast pull request closed w/o merging: [1815](https://github.com/hackforla/website/pull/1815#event-4923671537) at 2021-06-22 08:44 AM PDT -akibrhast,2021-06-23T04:52:06Z,- akibrhast commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-866519965) at 2021-06-22 09:52 PM PDT -akibrhast,2021-06-23T05:00:44Z,- akibrhast commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-866522854) at 2021-06-22 10:00 PM PDT -akibrhast,2021-06-23T05:02:42Z,- akibrhast commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-866523610) at 2021-06-22 10:02 PM PDT -akibrhast,2021-06-23T05:05:26Z,- akibrhast commented on issue: [1290](https://github.com/hackforla/website/issues/1290#issuecomment-866524814) at 2021-06-22 10:05 PM PDT -akibrhast,2021-06-23T05:05:27Z,- akibrhast closed issue as completed: [1290](https://github.com/hackforla/website/issues/1290#event-4926478912) at 2021-06-22 10:05 PM PDT -akibrhast,2021-06-23T05:07:10Z,- akibrhast commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-866525524) at 2021-06-22 10:07 PM PDT -akibrhast,2021-06-23T05:07:10Z,- akibrhast closed issue as completed: [947](https://github.com/hackforla/website/issues/947#event-4926483735) at 2021-06-22 10:07 PM PDT -akibrhast,2021-06-23T16:48:26Z,- akibrhast closed issue by PR 1804: [1575](https://github.com/hackforla/website/issues/1575#event-4930073227) at 2021-06-23 09:48 AM PDT -akibrhast,2021-06-23T16:49:07Z,- akibrhast closed issue by PR 1801: [1569](https://github.com/hackforla/website/issues/1569#event-4930076571) at 2021-06-23 09:49 AM PDT -akibrhast,2021-06-23T16:50:29Z,- akibrhast closed issue by PR 1799: [1693](https://github.com/hackforla/website/issues/1693#event-4930083293) at 2021-06-23 09:50 AM PDT -akibrhast,2021-06-23T16:51:05Z,- akibrhast closed issue by PR 1790: [1611](https://github.com/hackforla/website/issues/1611#event-4930086165) at 2021-06-23 09:51 AM PDT -akibrhast,2021-06-23T16:52:05Z,- akibrhast submitted pull request review: [1773](https://github.com/hackforla/website/pull/1773#pullrequestreview-690915710) at 2021-06-23 09:52 AM PDT -akibrhast,2021-06-23T16:58:38Z,- akibrhast closed issue by PR 1773: [1694](https://github.com/hackforla/website/issues/1694#event-4930122074) at 2021-06-23 09:58 AM PDT -akibrhast,2021-06-23T17:02:45Z,- akibrhast submitted pull request review: [1813](https://github.com/hackforla/website/pull/1813#pullrequestreview-690925925) at 2021-06-23 10:02 AM PDT -akibrhast,2021-06-23T17:02:58Z,- akibrhast closed issue by PR 1813: [1792](https://github.com/hackforla/website/issues/1792#event-4930143338) at 2021-06-23 10:02 AM PDT -akibrhast,2021-06-23T17:04:17Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-867009811) at 2021-06-23 10:04 AM PDT -akibrhast,2021-06-23T17:06:44Z,- akibrhast submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-690929572) at 2021-06-23 10:06 AM PDT -akibrhast,2021-06-23T17:06:50Z,- akibrhast closed issue by PR 1731: [1607](https://github.com/hackforla/website/issues/1607#event-4930163229) at 2021-06-23 10:06 AM PDT -akibrhast,2021-06-23T17:11:00Z,- akibrhast commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-867014295) at 2021-06-23 10:11 AM PDT -akibrhast,2021-06-23T17:15:47Z,- akibrhast submitted pull request review: [1744](https://github.com/hackforla/website/pull/1744#pullrequestreview-690937758) at 2021-06-23 10:15 AM PDT -akibrhast,2021-06-24T15:16:36Z,- akibrhast commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867723211) at 2021-06-24 08:16 AM PDT -akibrhast,2021-06-24T15:49:42Z,- akibrhast commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867749610) at 2021-06-24 08:49 AM PDT -akibrhast,2021-06-24T15:55:02Z,- akibrhast commented on pull request: [1821](https://github.com/hackforla/website/pull/1821#issuecomment-867754859) at 2021-06-24 08:55 AM PDT -akibrhast,2021-06-24T15:55:10Z,- akibrhast closed issue by PR 1821: [1527](https://github.com/hackforla/website/issues/1527#event-4935479645) at 2021-06-24 08:55 AM PDT -akibrhast,2021-06-24T15:56:37Z,- akibrhast commented on pull request: [1814](https://github.com/hackforla/website/pull/1814#issuecomment-867756864) at 2021-06-24 08:56 AM PDT -akibrhast,2021-06-24T16:01:21Z,- akibrhast commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-867760819) at 2021-06-24 09:01 AM PDT -akibrhast,2021-06-24T16:42:55Z,- akibrhast submitted pull request review: [1827](https://github.com/hackforla/website/pull/1827#pullrequestreview-691995686) at 2021-06-24 09:42 AM PDT -akibrhast,2021-06-24T16:42:59Z,- akibrhast closed issue by PR 1827: [1570](https://github.com/hackforla/website/issues/1570#event-4935728205) at 2021-06-24 09:42 AM PDT -akibrhast,2021-06-24T16:48:58Z,- akibrhast opened issue: [1828](https://github.com/hackforla/website/issues/1828) at 2021-06-24 09:48 AM PDT -akibrhast,2021-06-24T16:54:39Z,- akibrhast closed issue as completed: [1828](https://github.com/hackforla/website/issues/1828#event-4935780838) at 2021-06-24 09:54 AM PDT -akibrhast,2021-06-24T20:37:29Z,- akibrhast commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-867935448) at 2021-06-24 01:37 PM PDT -akibrhast,2021-06-25T02:52:50Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-868163831) at 2021-06-24 07:52 PM PDT -akibrhast,2021-06-25T04:23:36Z,- akibrhast commented on pull request: [1814](https://github.com/hackforla/website/pull/1814#issuecomment-868193336) at 2021-06-24 09:23 PM PDT -akibrhast,2021-06-27T18:48:23Z,- akibrhast submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-693444027) at 2021-06-27 11:48 AM PDT -akibrhast,2021-06-27T19:28:11Z,- akibrhast commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-869213210) at 2021-06-27 12:28 PM PDT -akibrhast,2021-06-27T19:54:25Z,- akibrhast commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-869215920) at 2021-06-27 12:54 PM PDT -akibrhast,2021-06-27T20:48:59Z,- akibrhast commented on issue: [1847](https://github.com/hackforla/website/issues/1847#issuecomment-869221777) at 2021-06-27 01:48 PM PDT -akibrhast,2021-06-29T12:57:40Z,- akibrhast submitted pull request review: [1831](https://github.com/hackforla/website/pull/1831#pullrequestreview-694997632) at 2021-06-29 05:57 AM PDT -akibrhast,2021-06-29T12:57:46Z,- akibrhast closed issue by PR 1831: [1688](https://github.com/hackforla/website/issues/1688#event-4953430920) at 2021-06-29 05:57 AM PDT -akibrhast,2021-06-29T13:05:01Z,- akibrhast submitted pull request review: [1854](https://github.com/hackforla/website/pull/1854#pullrequestreview-695006271) at 2021-06-29 06:05 AM PDT -akibrhast,2021-06-29T13:05:07Z,- akibrhast closed issue by PR 1854: [1477](https://github.com/hackforla/website/issues/1477#event-4953479388) at 2021-06-29 06:05 AM PDT -akibrhast,2021-06-29T13:08:11Z,- akibrhast commented on pull request: [1855](https://github.com/hackforla/website/pull/1855#issuecomment-870584095) at 2021-06-29 06:08 AM PDT -akibrhast,2021-06-29T13:10:59Z,- akibrhast submitted pull request review: [1853](https://github.com/hackforla/website/pull/1853#pullrequestreview-695013390) at 2021-06-29 06:10 AM PDT -akibrhast,2021-06-29T13:11:16Z,- akibrhast closed issue by PR 1853: [1829](https://github.com/hackforla/website/issues/1829#event-4953519065) at 2021-06-29 06:11 AM PDT -akibrhast,2021-06-29T13:14:13Z,- akibrhast commented on pull request: [1834](https://github.com/hackforla/website/pull/1834#issuecomment-870588901) at 2021-06-29 06:14 AM PDT -akibrhast,2021-06-29T18:47:24Z,- akibrhast submitted pull request review: [1677](https://github.com/hackforla/website/pull/1677#pullrequestreview-695388008) at 2021-06-29 11:47 AM PDT -akibrhast,2021-06-29T18:49:24Z,- akibrhast commented on pull request: [1775](https://github.com/hackforla/website/pull/1775#issuecomment-870832919) at 2021-06-29 11:49 AM PDT -akibrhast,2021-06-30T00:51:57Z,- akibrhast commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-871016957) at 2021-06-29 05:51 PM PDT -akibrhast,2021-06-30T03:06:51Z,- akibrhast commented on pull request: [1855](https://github.com/hackforla/website/pull/1855#issuecomment-871061519) at 2021-06-29 08:06 PM PDT -akibrhast,2021-06-30T03:07:45Z,- akibrhast commented on pull request: [1855](https://github.com/hackforla/website/pull/1855#issuecomment-871061858) at 2021-06-29 08:07 PM PDT -akibrhast,2021-06-30T20:47:39Z,- akibrhast closed issue by PR 1855: [1830](https://github.com/hackforla/website/issues/1830#event-4962042643) at 2021-06-30 01:47 PM PDT -akibrhast,2021-07-02T04:01:29Z,- akibrhast commented on pull request: [1834](https://github.com/hackforla/website/pull/1834#issuecomment-872694859) at 2021-07-01 09:01 PM PDT -akibrhast,2021-07-02T15:02:42Z,- akibrhast closed issue by PR 1677: [1427](https://github.com/hackforla/website/issues/1427#event-4971958490) at 2021-07-02 08:02 AM PDT -akibrhast,2021-07-02T15:09:16Z,- akibrhast commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-873069747) at 2021-07-02 08:09 AM PDT -akibrhast,2021-07-02T16:44:12Z,- akibrhast closed issue by PR 1857: [1558](https://github.com/hackforla/website/issues/1558#event-4972430744) at 2021-07-02 09:44 AM PDT -akibrhast,2021-07-02T16:58:42Z,- akibrhast closed issue by PR 1819: [1165](https://github.com/hackforla/website/issues/1165#event-4972490038) at 2021-07-02 09:58 AM PDT -akibrhast,2021-07-02T17:00:03Z,- akibrhast commented on pull request: [1852](https://github.com/hackforla/website/pull/1852#issuecomment-873135443) at 2021-07-02 10:00 AM PDT -akibrhast,2021-07-02T17:01:16Z,- akibrhast submitted pull request review: [1864](https://github.com/hackforla/website/pull/1864#pullrequestreview-698365492) at 2021-07-02 10:01 AM PDT -akibrhast,2021-07-02T17:01:21Z,- akibrhast closed issue by PR 1864: [1836](https://github.com/hackforla/website/issues/1836#event-4972501697) at 2021-07-02 10:01 AM PDT -akibrhast,2021-07-02T17:04:01Z,- akibrhast commented on pull request: [1870](https://github.com/hackforla/website/pull/1870#issuecomment-873138170) at 2021-07-02 10:04 AM PDT -akibrhast,2021-07-02T18:26:07Z,- akibrhast commented on pull request: [1870](https://github.com/hackforla/website/pull/1870#issuecomment-873180970) at 2021-07-02 11:26 AM PDT -akibrhast,2021-07-02T18:34:47Z,- akibrhast commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-873185277) at 2021-07-02 11:34 AM PDT -akibrhast,2021-07-02T18:40:15Z,- akibrhast commented on issue: [1866](https://github.com/hackforla/website/issues/1866#issuecomment-873189232) at 2021-07-02 11:40 AM PDT -akibrhast,2021-07-02T18:40:15Z,- akibrhast closed issue as completed: [1866](https://github.com/hackforla/website/issues/1866#event-4972846074) at 2021-07-02 11:40 AM PDT -akibrhast,2021-07-02T18:54:19Z,- akibrhast closed issue as completed: [1867](https://github.com/hackforla/website/issues/1867#event-4972903681) at 2021-07-02 11:54 AM PDT -akibrhast,2021-07-02T18:54:20Z,- akibrhast closed issue as completed: [1868](https://github.com/hackforla/website/issues/1868#event-4972903728) at 2021-07-02 11:54 AM PDT -akibrhast,2021-07-02T19:06:15Z,- akibrhast commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-873206003) at 2021-07-02 12:06 PM PDT -akibrhast,2021-07-03T00:03:18Z,- akibrhast commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873309830) at 2021-07-02 05:03 PM PDT -akibrhast,2021-07-03T02:04:02Z,- akibrhast commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873327647) at 2021-07-02 07:04 PM PDT -akibrhast,2021-07-03T16:35:31Z,- akibrhast opened pull request: [1885](https://github.com/hackforla/website/pull/1885) at 2021-07-03 09:35 AM PDT -akibrhast,2021-07-03T16:44:27Z,- akibrhast pull request closed w/o merging: [1885](https://github.com/hackforla/website/pull/1885#event-4974366758) at 2021-07-03 09:44 AM PDT -akibrhast,2021-07-03T16:59:14Z,- akibrhast opened pull request: [1886](https://github.com/hackforla/website/pull/1886) at 2021-07-03 09:59 AM PDT -akibrhast,2021-07-03T16:59:44Z,- akibrhast pull request closed w/o merging: [1886](https://github.com/hackforla/website/pull/1886#event-4974377556) at 2021-07-03 09:59 AM PDT -akibrhast,2021-07-04T18:36:01Z,- akibrhast submitted pull request review: [1834](https://github.com/hackforla/website/pull/1834#pullrequestreview-698699059) at 2021-07-04 11:36 AM PDT -akibrhast,2021-07-04T18:40:45Z,- akibrhast submitted pull request review: [1834](https://github.com/hackforla/website/pull/1834#pullrequestreview-698699319) at 2021-07-04 11:40 AM PDT -akibrhast,2021-07-04T18:41:01Z,- akibrhast closed issue by PR 1834: [1787](https://github.com/hackforla/website/issues/1787#event-4975396493) at 2021-07-04 11:41 AM PDT -akibrhast,2021-07-04T18:44:49Z,- akibrhast opened pull request: [1889](https://github.com/hackforla/website/pull/1889) at 2021-07-04 11:44 AM PDT -akibrhast,2021-07-04T18:45:35Z,- akibrhast pull request closed w/o merging: [1889](https://github.com/hackforla/website/pull/1889#event-4975400302) at 2021-07-04 11:45 AM PDT -akibrhast,2021-07-04T18:58:28Z,- akibrhast commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873642174) at 2021-07-04 11:58 AM PDT -akibrhast,2021-07-06T14:33:10Z,- akibrhast commented on pull request: [1883](https://github.com/hackforla/website/pull/1883#issuecomment-874814387) at 2021-07-06 07:33 AM PDT -akibrhast,2021-07-06T18:56:42Z,- akibrhast commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-875005526) at 2021-07-06 11:56 AM PDT -akibrhast,2021-07-07T20:08:51Z,- akibrhast commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-875897411) at 2021-07-07 01:08 PM PDT -akibrhast,2023-04-24T20:11:22Z,- akibrhast assigned to issue: [1273](https://github.com/hackforla/website/issues/1273#event-5096133902) at 2023-04-24 01:11 PM PDT -aksanna,3380,SKILLS ISSUE -aksanna,2022-07-17T18:10:32Z,- aksanna opened issue: [3380](https://github.com/hackforla/website/issues/3380) at 2022-07-17 11:10 AM PDT -aksanna,2022-07-17T18:45:10Z,- aksanna assigned to issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1186584915) at 2022-07-17 11:45 AM PDT -aksanna,2022-07-17T19:01:32Z,- aksanna assigned to issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1024850958) at 2022-07-17 12:01 PM PDT -aksanna,2022-07-19T18:43:47Z,- aksanna commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1189433624) at 2022-07-19 11:43 AM PDT -aksanna,2022-07-19T18:50:01Z,- aksanna commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1189438715) at 2022-07-19 11:50 AM PDT -aksanna,2022-07-19T21:41:55Z,- aksanna commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1189578657) at 2022-07-19 02:41 PM PDT -aksanna,2022-07-24T18:43:08Z,- aksanna commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1193372547) at 2022-07-24 11:43 AM PDT -aksanna,2022-09-19T16:44:06Z,- aksanna unassigned from issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1251271207) at 2022-09-19 09:44 AM PDT -alan-zambrano,3127,SKILLS ISSUE -alan-zambrano,2022-05-11T03:36:15Z,- alan-zambrano opened issue: [3127](https://github.com/hackforla/website/issues/3127) at 2022-05-10 08:36 PM PDT -alan-zambrano,2022-05-15T16:39:02Z,- alan-zambrano commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1126975759) at 2022-05-15 09:39 AM PDT -alan-zambrano,2022-05-20T00:49:51Z,- alan-zambrano assigned to issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1126975759) at 2022-05-19 05:49 PM PDT -alan-zambrano,2022-05-28T15:21:54Z,- alan-zambrano commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140282736) at 2022-05-28 08:21 AM PDT -alan-zambrano,2022-05-28T15:41:52Z,- alan-zambrano commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140285839) at 2022-05-28 08:41 AM PDT -alan-zambrano,2022-05-30T01:36:19Z,- alan-zambrano assigned to issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1046093336) at 2022-05-29 06:36 PM PDT -alan-zambrano,2022-05-30T02:20:33Z,- alan-zambrano opened pull request: [3182](https://github.com/hackforla/website/pull/3182) at 2022-05-29 07:20 PM PDT -alan-zambrano,2022-05-30T02:42:34Z,- alan-zambrano commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1140625846) at 2022-05-29 07:42 PM PDT -alan-zambrano,2022-05-30T02:43:14Z,- alan-zambrano commented on issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1140626146) at 2022-05-29 07:43 PM PDT -alan-zambrano,2022-05-31T17:57:17Z,- alan-zambrano pull request merged: [3182](https://github.com/hackforla/website/pull/3182#event-6711764652) at 2022-05-31 10:57 AM PDT -alan-zambrano,2022-06-01T01:12:11Z,- alan-zambrano closed issue as completed: [3127](https://github.com/hackforla/website/issues/3127#event-6714101694) at 2022-05-31 06:12 PM PDT -alan-zambrano,2022-06-05T20:09:42Z,- alan-zambrano assigned to issue: [3220](https://github.com/hackforla/website/issues/3220#issuecomment-1146713630) at 2022-06-05 01:09 PM PDT -alan-zambrano,2022-06-05T21:31:30Z,- alan-zambrano opened pull request: [3224](https://github.com/hackforla/website/pull/3224) at 2022-06-05 02:31 PM PDT -alan-zambrano,2022-06-05T21:40:29Z,- alan-zambrano commented on issue: [3220](https://github.com/hackforla/website/issues/3220#issuecomment-1146888148) at 2022-06-05 02:40 PM PDT -alan-zambrano,2022-06-06T02:52:29Z,- alan-zambrano submitted pull request review: [3221](https://github.com/hackforla/website/pull/3221#pullrequestreview-996099907) at 2022-06-05 07:52 PM PDT -alan-zambrano,2022-06-07T01:06:25Z,- alan-zambrano commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1148085744) at 2022-06-06 06:06 PM PDT -alan-zambrano,2022-06-15T02:27:48Z,- alan-zambrano commented on pull request: [3241](https://github.com/hackforla/website/pull/3241#issuecomment-1155911590) at 2022-06-14 07:27 PM PDT -alan-zambrano,2022-06-15T23:47:31Z,- alan-zambrano submitted pull request review: [3241](https://github.com/hackforla/website/pull/3241#pullrequestreview-1008325989) at 2022-06-15 04:47 PM PDT -alan-zambrano,2022-06-23T01:39:41Z,- alan-zambrano pull request merged: [3224](https://github.com/hackforla/website/pull/3224#event-6861961649) at 2022-06-22 06:39 PM PDT -alan-zambrano,2022-06-29T00:14:21Z,- alan-zambrano assigned to issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1151521522) at 2022-06-28 05:14 PM PDT -alan-zambrano,2022-06-29T00:18:19Z,- alan-zambrano commented on issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1169406796) at 2022-06-28 05:18 PM PDT -alan-zambrano,2022-06-29T01:38:22Z,- alan-zambrano opened pull request: [3322](https://github.com/hackforla/website/pull/3322) at 2022-06-28 06:38 PM PDT -alan-zambrano,2022-06-29T18:38:22Z,- alan-zambrano pull request merged: [3322](https://github.com/hackforla/website/pull/3322#event-6904923179) at 2022-06-29 11:38 AM PDT -alecg123,2019-10-23T01:53:34Z,- alecg123 opened issue: [162](https://github.com/hackforla/website/issues/162) at 2019-10-22 06:53 PM PDT -alecg123,2019-10-23T03:10:06Z,- alecg123 opened issue: [163](https://github.com/hackforla/website/issues/163) at 2019-10-22 08:10 PM PDT -alecg123,2019-11-25T23:51:43Z,- alecg123 assigned to issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -alecg123,2019-12-30T23:48:00Z,- alecg123 unassigned from issue: [189](https://github.com/hackforla/website/issues/189) at 2019-12-30 03:48 PM PST -alex-anakin,2020-07-24T06:36:47Z,- alex-anakin commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663369914) at 2020-07-23 11:36 PM PDT -alex-anakin,2020-11-23T22:24:58Z,- alex-anakin submitted pull request review: [812](https://github.com/hackforla/website/pull/812#pullrequestreview-536892865) at 2020-11-23 02:24 PM PST -alexandrastubbs,2020-06-14T19:27:16Z,- alexandrastubbs assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-14 12:27 PM PDT -alexandrastubbs,2020-06-21T17:39:55Z,- alexandrastubbs unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647155926) at 2020-06-21 10:39 AM PDT -alexandrastubbs,2020-06-21T18:19:26Z,- alexandrastubbs assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:19 AM PDT -alexandrastubbs,2020-06-21T19:33:35Z,- alexandrastubbs closed issue as completed: [552](https://github.com/hackforla/website/issues/552#event-3465789144) at 2020-06-21 12:33 PM PDT -alexandrastubbs,2020-06-21T19:33:37Z,- alexandrastubbs reopened issue: [552](https://github.com/hackforla/website/issues/552#event-3465789144) at 2020-06-21 12:33 PM PDT -alexandrastubbs,2020-06-25T01:47:25Z,- alexandrastubbs opened issue: [587](https://github.com/hackforla/website/issues/587) at 2020-06-24 06:47 PM PDT -alexandrastubbs,2020-06-25T01:49:44Z,- alexandrastubbs commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-649165548) at 2020-06-24 06:49 PM PDT -alexandrastubbs,2020-07-05T16:43:28Z,- alexandrastubbs assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-07-05 09:43 AM PDT -alexandrastubbs,2020-07-05T17:15:32Z,- alexandrastubbs commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-653914327) at 2020-07-05 10:15 AM PDT -alexandrastubbs,2020-07-05T17:31:25Z,- alexandrastubbs closed issue as completed: [552](https://github.com/hackforla/website/issues/552#event-3513513446) at 2020-07-05 10:31 AM PDT -alexandrastubbs,2020-07-05T17:32:50Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-653916307) at 2020-07-05 10:32 AM PDT -alexandrastubbs,2020-07-05T17:48:29Z,- alexandrastubbs assigned to issue: [555](https://github.com/hackforla/website/issues/555) at 2020-07-05 10:48 AM PDT -alexandrastubbs,2020-07-05T17:56:45Z,- alexandrastubbs commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-653919084) at 2020-07-05 10:56 AM PDT -alexandrastubbs,2020-07-05T18:04:27Z,- alexandrastubbs reopened issue: [559](https://github.com/hackforla/website/issues/559#event-3495451988) at 2020-07-05 11:04 AM PDT -alexandrastubbs,2020-07-05T18:05:03Z,- alexandrastubbs commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-653919954) at 2020-07-05 11:05 AM PDT -alexandrastubbs,2020-07-05T18:34:56Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-653923171) at 2020-07-05 11:34 AM PDT -alexandrastubbs,2020-07-05T19:24:07Z,- alexandrastubbs opened issue: [594](https://github.com/hackforla/website/issues/594) at 2020-07-05 12:24 PM PDT -alexandrastubbs,2020-07-05T19:24:07Z,- alexandrastubbs assigned to issue: [594](https://github.com/hackforla/website/issues/594) at 2020-07-05 12:24 PM PDT -alexandrastubbs,2020-07-10T18:14:12Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-656813820) at 2020-07-10 11:14 AM PDT -alexandrastubbs,2020-07-10T20:17:28Z,- alexandrastubbs opened issue: [600](https://github.com/hackforla/website/issues/600) at 2020-07-10 01:17 PM PDT -alexandrastubbs,2020-07-10T20:35:29Z,- alexandrastubbs opened issue: [601](https://github.com/hackforla/website/issues/601) at 2020-07-10 01:35 PM PDT -alexandrastubbs,2020-07-10T20:35:30Z,- alexandrastubbs assigned to issue: [601](https://github.com/hackforla/website/issues/601) at 2020-07-10 01:35 PM PDT -alexandrastubbs,2020-07-10T21:02:47Z,- alexandrastubbs commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-656889338) at 2020-07-10 02:02 PM PDT -alexandrastubbs,2020-07-11T19:24:44Z,- alexandrastubbs opened issue: [602](https://github.com/hackforla/website/issues/602) at 2020-07-11 12:24 PM PDT -alexandrastubbs,2020-07-11T19:24:45Z,- alexandrastubbs assigned to issue: [602](https://github.com/hackforla/website/issues/602) at 2020-07-11 12:24 PM PDT -alexandrastubbs,2020-07-11T19:25:39Z,- alexandrastubbs commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-657116227) at 2020-07-11 12:25 PM PDT -alexandrastubbs,2020-07-11T19:40:38Z,- alexandrastubbs opened issue: [603](https://github.com/hackforla/website/issues/603) at 2020-07-11 12:40 PM PDT -alexandrastubbs,2020-07-12T15:49:30Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-657240204) at 2020-07-12 08:49 AM PDT -alexandrastubbs,2020-07-12T16:45:26Z,- alexandrastubbs commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-657247422) at 2020-07-12 09:45 AM PDT -alexandrastubbs,2020-07-12T18:08:31Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-657256312) at 2020-07-12 11:08 AM PDT -alexandrastubbs,2020-07-12T18:39:42Z,- alexandrastubbs opened issue: [605](https://github.com/hackforla/website/issues/605) at 2020-07-12 11:39 AM PDT -alexandrastubbs,2020-07-14T12:20:36Z,- alexandrastubbs opened issue: [609](https://github.com/hackforla/website/issues/609) at 2020-07-14 05:20 AM PDT -alexandrastubbs,2020-07-14T12:20:36Z,- alexandrastubbs assigned to issue: [609](https://github.com/hackforla/website/issues/609) at 2020-07-14 05:20 AM PDT -alexandrastubbs,2020-07-14T13:08:20Z,- alexandrastubbs opened issue: [610](https://github.com/hackforla/website/issues/610) at 2020-07-14 06:08 AM PDT -alexandrastubbs,2020-07-14T13:08:20Z,- alexandrastubbs assigned to issue: [610](https://github.com/hackforla/website/issues/610) at 2020-07-14 06:08 AM PDT -alexandrastubbs,2020-07-14T13:09:53Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-658169692) at 2020-07-14 06:09 AM PDT -alexandrastubbs,2020-07-14T13:42:59Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-658187005) at 2020-07-14 06:42 AM PDT -alexandrastubbs,2020-07-15T22:20:37Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659044587) at 2020-07-15 03:20 PM PDT -alexandrastubbs,2020-07-15T22:22:52Z,- alexandrastubbs assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659044587) at 2020-07-15 03:22 PM PDT -alexandrastubbs,2020-07-15T22:34:15Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659049254) at 2020-07-15 03:34 PM PDT -alexandrastubbs,2020-07-15T22:44:40Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-659052634) at 2020-07-15 03:44 PM PDT -alexandrastubbs,2020-07-15T22:45:40Z,- alexandrastubbs reopened issue: [275](https://github.com/hackforla/website/issues/275#event-3550639633) at 2020-07-15 03:45 PM PDT -alexandrastubbs,2020-07-15T22:59:37Z,- alexandrastubbs commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-659057369) at 2020-07-15 03:59 PM PDT -alexandrastubbs,2020-07-15T22:59:48Z,- alexandrastubbs unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-659057369) at 2020-07-15 03:59 PM PDT -alexandrastubbs,2020-07-15T23:05:13Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-659059180) at 2020-07-15 04:05 PM PDT -alexandrastubbs,2020-07-19T16:15:05Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-660670159) at 2020-07-19 09:15 AM PDT -alexandrastubbs,2020-07-19T16:29:02Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-660672110) at 2020-07-19 09:29 AM PDT -alexandrastubbs,2020-07-19T16:37:28Z,- alexandrastubbs closed issue as completed: [600](https://github.com/hackforla/website/issues/600#event-3562815678) at 2020-07-19 09:37 AM PDT -alexandrastubbs,2020-07-19T16:37:41Z,- alexandrastubbs commented on issue: [600](https://github.com/hackforla/website/issues/600#issuecomment-660673328) at 2020-07-19 09:37 AM PDT -alexandrastubbs,2020-07-19T17:29:26Z,- alexandrastubbs commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-660680079) at 2020-07-19 10:29 AM PDT -alexandrastubbs,2020-07-19T17:32:37Z,- alexandrastubbs submitted pull request review: [612](https://github.com/hackforla/website/pull/612#pullrequestreview-451149561) at 2020-07-19 10:32 AM PDT -alexandrastubbs,2020-07-19T17:33:03Z,- alexandrastubbs closed issue as completed: [605](https://github.com/hackforla/website/issues/605#event-3562881296) at 2020-07-19 10:33 AM PDT -alexandrastubbs,2020-07-19T17:33:22Z,- alexandrastubbs commented on issue: [605](https://github.com/hackforla/website/issues/605#issuecomment-660680595) at 2020-07-19 10:33 AM PDT -alexandrastubbs,2020-07-19T17:54:06Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660683244) at 2020-07-19 10:54 AM PDT -alexandrastubbs,2020-07-19T18:15:07Z,- alexandrastubbs commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660685905) at 2020-07-19 11:15 AM PDT -alexandrastubbs,2020-07-19T19:00:19Z,- alexandrastubbs opened issue: [614](https://github.com/hackforla/website/issues/614) at 2020-07-19 12:00 PM PDT -alexandrastubbs,2020-07-19T19:00:55Z,- alexandrastubbs unassigned from issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660683244) at 2020-07-19 12:00 PM PDT -alexandrastubbs,2020-07-19T19:08:10Z,- alexandrastubbs opened issue: [615](https://github.com/hackforla/website/issues/615) at 2020-07-19 12:08 PM PDT -alexandrastubbs,2020-07-19T19:24:45Z,- alexandrastubbs opened issue: [616](https://github.com/hackforla/website/issues/616) at 2020-07-19 12:24 PM PDT -alexandrastubbs,2020-07-19T19:32:49Z,- alexandrastubbs opened issue: [617](https://github.com/hackforla/website/issues/617) at 2020-07-19 12:32 PM PDT -alexandrastubbs,2020-07-19T19:39:00Z,- alexandrastubbs opened issue: [618](https://github.com/hackforla/website/issues/618) at 2020-07-19 12:39 PM PDT -alexandrastubbs,2020-07-22T18:33:13Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-662616351) at 2020-07-22 11:33 AM PDT -alexandrastubbs,2020-07-23T14:51:30Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-663052340) at 2020-07-23 07:51 AM PDT -alexandrastubbs,2020-07-26T15:12:42Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-664000416) at 2020-07-26 08:12 AM PDT -alexandrastubbs,2020-07-26T15:16:02Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-664000789) at 2020-07-26 08:16 AM PDT -alexandrastubbs,2020-07-26T15:29:47Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-664002356) at 2020-07-26 08:29 AM PDT -alexandrastubbs,2020-07-26T16:36:45Z,- alexandrastubbs commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-664010844) at 2020-07-26 09:36 AM PDT -alexandrastubbs,2020-07-26T16:57:24Z,- alexandrastubbs commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-664013317) at 2020-07-26 09:57 AM PDT -alexandrastubbs,2020-07-26T16:59:02Z,- alexandrastubbs commented on issue: [599](https://github.com/hackforla/website/issues/599#issuecomment-664013543) at 2020-07-26 09:59 AM PDT -alexandrastubbs,2020-07-26T17:40:30Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-664018723) at 2020-07-26 10:40 AM PDT -alexandrastubbs,2020-07-26T18:32:38Z,- alexandrastubbs opened issue: [642](https://github.com/hackforla/website/issues/642) at 2020-07-26 11:32 AM PDT -alexandrastubbs,2020-07-26T18:41:36Z,- alexandrastubbs commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664025382) at 2020-07-26 11:41 AM PDT -alexandrastubbs,2020-07-26T19:16:16Z,- alexandrastubbs closed issue as completed: [506](https://github.com/hackforla/website/issues/506#event-3587334023) at 2020-07-26 12:16 PM PDT -alexandrastubbs,2020-07-26T19:24:52Z,- alexandrastubbs commented on issue: [297](https://github.com/hackforla/website/issues/297#issuecomment-664029831) at 2020-07-26 12:24 PM PDT -alexandrastubbs,2020-07-26T19:24:53Z,- alexandrastubbs closed issue as completed: [297](https://github.com/hackforla/website/issues/297#event-3587339879) at 2020-07-26 12:24 PM PDT -alexandrastubbs,2020-07-26T19:46:21Z,- alexandrastubbs commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-664031981) at 2020-07-26 12:46 PM PDT -alexandrastubbs,2020-07-26T19:57:20Z,- alexandrastubbs commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-664033017) at 2020-07-26 12:57 PM PDT -alexandrastubbs,2020-07-26T19:57:20Z,- alexandrastubbs closed issue as completed: [375](https://github.com/hackforla/website/issues/375#event-3587360960) at 2020-07-26 12:57 PM PDT -alexandrastubbs,2020-07-27T13:30:50Z,- alexandrastubbs commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-664397854) at 2020-07-27 06:30 AM PDT -alexandrastubbs,2020-07-28T19:52:31Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-665244683) at 2020-07-28 12:52 PM PDT -alexandrastubbs,2020-07-29T03:32:10Z,- alexandrastubbs unassigned from issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-662616351) at 2020-07-28 08:32 PM PDT -alexandrastubbs,2020-07-29T16:57:24Z,- alexandrastubbs opened issue: [656](https://github.com/hackforla/website/issues/656) at 2020-07-29 09:57 AM PDT -alexandrastubbs,2020-07-29T22:09:19Z,- alexandrastubbs opened issue: [658](https://github.com/hackforla/website/issues/658) at 2020-07-29 03:09 PM PDT -alexandrastubbs,2020-08-02T14:54:45Z,- alexandrastubbs opened issue: [664](https://github.com/hackforla/website/issues/664) at 2020-08-02 07:54 AM PDT -alexandrastubbs,2020-08-02T16:21:09Z,- alexandrastubbs commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-667694432) at 2020-08-02 09:21 AM PDT -alexandrastubbs,2020-08-02T16:35:44Z,- alexandrastubbs commented on issue: [607](https://github.com/hackforla/website/issues/607#issuecomment-667696154) at 2020-08-02 09:35 AM PDT -alexandrastubbs,2020-08-02T16:41:14Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-667696670) at 2020-08-02 09:41 AM PDT -alexandrastubbs,2020-08-02T16:41:45Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-667696721) at 2020-08-02 09:41 AM PDT -alexandrastubbs,2020-08-02T16:44:26Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-667697012) at 2020-08-02 09:44 AM PDT -alexandrastubbs,2020-08-02T16:49:05Z,- alexandrastubbs commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-667697574) at 2020-08-02 09:49 AM PDT -alexandrastubbs,2020-08-02T16:49:05Z,- alexandrastubbs closed issue as completed: [542](https://github.com/hackforla/website/issues/542#event-3613493236) at 2020-08-02 09:49 AM PDT -alexandrastubbs,2020-08-02T16:54:50Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-667698246) at 2020-08-02 09:54 AM PDT -alexandrastubbs,2020-08-02T17:18:36Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-667701153) at 2020-08-02 10:18 AM PDT -alexandrastubbs,2020-08-02T17:43:33Z,- alexandrastubbs commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-667703949) at 2020-08-02 10:43 AM PDT -alexandrastubbs,2020-08-02T17:53:05Z,- alexandrastubbs commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-667704984) at 2020-08-02 10:53 AM PDT -alexandrastubbs,2020-08-06T12:29:13Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-669897450) at 2020-08-06 05:29 AM PDT -alexandrastubbs,2020-08-07T18:42:18Z,- alexandrastubbs commented on issue: [601](https://github.com/hackforla/website/issues/601#issuecomment-670655903) at 2020-08-07 11:42 AM PDT -alexandrastubbs,2020-08-07T21:16:03Z,- alexandrastubbs opened issue: [674](https://github.com/hackforla/website/issues/674) at 2020-08-07 02:16 PM PDT -alexandrastubbs,2020-08-09T13:21:16Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-671051527) at 2020-08-09 06:21 AM PDT -alexandrastubbs,2020-08-09T16:41:03Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671073970) at 2020-08-09 09:41 AM PDT -alexandrastubbs,2020-08-09T16:47:18Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671074710) at 2020-08-09 09:47 AM PDT -alexandrastubbs,2020-08-09T16:55:02Z,- alexandrastubbs opened issue: [678](https://github.com/hackforla/website/issues/678) at 2020-08-09 09:55 AM PDT -alexandrastubbs,2020-08-09T17:28:04Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-671079173) at 2020-08-09 10:28 AM PDT -alexandrastubbs,2020-08-09T17:30:53Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-671079491) at 2020-08-09 10:30 AM PDT -alexandrastubbs,2020-08-09T17:35:29Z,- alexandrastubbs commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-671080002) at 2020-08-09 10:35 AM PDT -alexandrastubbs,2020-08-12T21:19:17Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673116494) at 2020-08-12 02:19 PM PDT -alexandrastubbs,2020-08-12T21:33:29Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673122179) at 2020-08-12 02:33 PM PDT -alexandrastubbs,2020-08-12T21:36:50Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-673123382) at 2020-08-12 02:36 PM PDT -alexandrastubbs,2020-08-12T21:46:06Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-673126771) at 2020-08-12 02:46 PM PDT -alexandrastubbs,2020-08-12T21:56:46Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-673130630) at 2020-08-12 02:56 PM PDT -alexandrastubbs,2020-08-16T16:19:56Z,- alexandrastubbs commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-674546549) at 2020-08-16 09:19 AM PDT -alexandrastubbs,2020-08-16T16:45:14Z,- alexandrastubbs commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674549357) at 2020-08-16 09:45 AM PDT -alexandrastubbs,2020-08-16T16:51:47Z,- alexandrastubbs commented on issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-674550034) at 2020-08-16 09:51 AM PDT -alexandrastubbs,2020-08-16T16:52:43Z,- alexandrastubbs commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-674550133) at 2020-08-16 09:52 AM PDT -alexandrastubbs,2020-08-16T18:04:47Z,- alexandrastubbs reopened issue: [555](https://github.com/hackforla/website/issues/555#event-3631282176) at 2020-08-16 11:04 AM PDT -alexandrastubbs,2020-08-16T18:07:32Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-674558319) at 2020-08-16 11:07 AM PDT -alexandrastubbs,2020-08-16T19:23:17Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-674566854) at 2020-08-16 12:23 PM PDT -alexandrastubbs,2020-08-18T16:20:14Z,- alexandrastubbs opened issue: [688](https://github.com/hackforla/website/issues/688) at 2020-08-18 09:20 AM PDT -alexandrastubbs,2020-08-18T17:02:20Z,- alexandrastubbs opened issue: [689](https://github.com/hackforla/website/issues/689) at 2020-08-18 10:02 AM PDT -alexandrastubbs,2020-08-18T17:28:55Z,- alexandrastubbs opened issue: [690](https://github.com/hackforla/website/issues/690) at 2020-08-18 10:28 AM PDT -alexandrastubbs,2020-08-18T17:35:12Z,- alexandrastubbs opened issue: [691](https://github.com/hackforla/website/issues/691) at 2020-08-18 10:35 AM PDT -alexandrastubbs,2020-08-18T17:45:48Z,- alexandrastubbs opened issue: [692](https://github.com/hackforla/website/issues/692) at 2020-08-18 10:45 AM PDT -alexandrastubbs,2020-08-18T17:46:30Z,- alexandrastubbs commented on issue: [692](https://github.com/hackforla/website/issues/692#issuecomment-675621229) at 2020-08-18 10:46 AM PDT -alexandrastubbs,2020-08-19T22:43:55Z,- alexandrastubbs commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-676786492) at 2020-08-19 03:43 PM PDT -alexandrastubbs,2020-08-19T22:59:08Z,- alexandrastubbs reopened issue: [387](https://github.com/hackforla/website/issues/387#event-3672885046) at 2020-08-19 03:59 PM PDT -alexandrastubbs,2020-08-23T16:13:12Z,- alexandrastubbs commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-678793239) at 2020-08-23 09:13 AM PDT -alexandrastubbs,2020-08-23T16:17:43Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-678793798) at 2020-08-23 09:17 AM PDT -alexandrastubbs,2020-08-23T16:27:30Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-678794954) at 2020-08-23 09:27 AM PDT -alexandrastubbs,2020-08-23T17:01:53Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-678798581) at 2020-08-23 10:01 AM PDT -alexandrastubbs,2020-08-23T17:27:26Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-678801514) at 2020-08-23 10:27 AM PDT -alexandrastubbs,2020-08-23T17:37:24Z,- alexandrastubbs commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-678802617) at 2020-08-23 10:37 AM PDT -alexandrastubbs,2020-08-23T17:49:36Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-678803944) at 2020-08-23 10:49 AM PDT -alexandrastubbs,2020-08-23T17:51:18Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-678804128) at 2020-08-23 10:51 AM PDT -alexandrastubbs,2020-08-23T17:52:20Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-678804219) at 2020-08-23 10:52 AM PDT -alexandrastubbs,2020-08-23T18:53:39Z,- alexandrastubbs opened issue: [698](https://github.com/hackforla/website/issues/698) at 2020-08-23 11:53 AM PDT -alexandrastubbs,2020-08-23T19:00:46Z,- alexandrastubbs opened issue: [700](https://github.com/hackforla/website/issues/700) at 2020-08-23 12:00 PM PDT -alexandrastubbs,2020-08-27T20:22:18Z,- alexandrastubbs opened issue: [705](https://github.com/hackforla/website/issues/705) at 2020-08-27 01:22 PM PDT -alexandrastubbs,2020-08-28T21:14:11Z,- alexandrastubbs opened issue: [708](https://github.com/hackforla/website/issues/708) at 2020-08-28 02:14 PM PDT -alexandrastubbs,2020-08-28T21:15:17Z,- alexandrastubbs commented on issue: [708](https://github.com/hackforla/website/issues/708#issuecomment-683149905) at 2020-08-28 02:15 PM PDT -alexandrastubbs,2020-08-30T12:16:13Z,- alexandrastubbs commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-683413425) at 2020-08-30 05:16 AM PDT -alexandrastubbs,2020-08-30T12:17:51Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-683413594) at 2020-08-30 05:17 AM PDT -alexandrastubbs,2020-09-10T21:15:10Z,- alexandrastubbs commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-690735651) at 2020-09-10 02:15 PM PDT -alexandrastubbs,2020-09-10T21:38:29Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-690746013) at 2020-09-10 02:38 PM PDT -alexandrastubbs,2020-09-10T21:54:44Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-690752560) at 2020-09-10 02:54 PM PDT -alexandrastubbs,2020-09-10T22:01:49Z,- alexandrastubbs commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-690755255) at 2020-09-10 03:01 PM PDT -alexandrastubbs,2020-09-10T22:06:12Z,- alexandrastubbs commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-690757045) at 2020-09-10 03:06 PM PDT -alexandrastubbs,2020-09-10T22:15:35Z,- alexandrastubbs submitted pull request review: [723](https://github.com/hackforla/website/pull/723#pullrequestreview-486347789) at 2020-09-10 03:15 PM PDT -alexandrastubbs,2020-09-10T22:15:44Z,- alexandrastubbs closed issue by PR 723: [708](https://github.com/hackforla/website/issues/708#event-3753388035) at 2020-09-10 03:15 PM PDT -alexandrastubbs,2020-09-10T23:00:47Z,- alexandrastubbs commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-690775618) at 2020-09-10 04:00 PM PDT -alexandrastubbs,2020-09-17T02:38:47Z,- alexandrastubbs commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-693773011) at 2020-09-16 07:38 PM PDT -alexandrastubbs,2020-09-17T21:26:15Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-694508499) at 2020-09-17 02:26 PM PDT -alexandrastubbs,2020-09-17T21:33:22Z,- alexandrastubbs commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-694511325) at 2020-09-17 02:33 PM PDT -alexandrastubbs,2020-09-17T21:33:36Z,- alexandrastubbs commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-694511415) at 2020-09-17 02:33 PM PDT -alexandrastubbs,2020-09-17T22:05:25Z,- alexandrastubbs commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-694523939) at 2020-09-17 03:05 PM PDT -alexandrastubbs,2020-09-17T22:08:39Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-694525263) at 2020-09-17 03:08 PM PDT -alexandrastubbs,2020-09-17T22:19:38Z,- alexandrastubbs commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-694529839) at 2020-09-17 03:19 PM PDT -alexandrastubbs,2020-09-17T22:19:48Z,- alexandrastubbs commented on issue: [690](https://github.com/hackforla/website/issues/690#issuecomment-694529905) at 2020-09-17 03:19 PM PDT -alexandrastubbs,2020-09-17T22:25:52Z,- alexandrastubbs commented on issue: [735](https://github.com/hackforla/website/issues/735#issuecomment-694532345) at 2020-09-17 03:25 PM PDT -alexandrastubbs,2020-09-17T23:32:30Z,- alexandrastubbs assigned to issue: [209](https://github.com/hackforla/website/issues/209) at 2020-09-17 04:32 PM PDT -alexandrastubbs,2020-09-18T14:09:49Z,- alexandrastubbs commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-694891191) at 2020-09-18 07:09 AM PDT -alexandrastubbs,2020-09-21T22:17:29Z,- alexandrastubbs opened issue: [743](https://github.com/hackforla/website/issues/743) at 2020-09-21 03:17 PM PDT -alexandrastubbs,2020-09-21T22:20:21Z,- alexandrastubbs commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-696409374) at 2020-09-21 03:20 PM PDT -alexandrastubbs,2020-09-21T22:20:35Z,- alexandrastubbs unassigned from issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-696409374) at 2020-09-21 03:20 PM PDT -alexandrastubbs,2020-09-21T22:23:33Z,- alexandrastubbs opened issue: [744](https://github.com/hackforla/website/issues/744) at 2020-09-21 03:23 PM PDT -alexandrastubbs,2020-09-21T22:23:47Z,- alexandrastubbs assigned to issue: [744](https://github.com/hackforla/website/issues/744) at 2020-09-21 03:23 PM PDT -alexandrastubbs,2020-09-21T22:24:48Z,- alexandrastubbs commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-696411125) at 2020-09-21 03:24 PM PDT -alexandrastubbs,2020-09-22T00:05:27Z,- alexandrastubbs opened issue: [745](https://github.com/hackforla/website/issues/745) at 2020-09-21 05:05 PM PDT -alexandrastubbs,2020-09-22T00:05:55Z,- alexandrastubbs assigned to issue: [745](https://github.com/hackforla/website/issues/745) at 2020-09-21 05:05 PM PDT -alexandrastubbs,2020-09-24T19:13:49Z,- alexandrastubbs opened issue: [747](https://github.com/hackforla/website/issues/747) at 2020-09-24 12:13 PM PDT -alexandrastubbs,2020-09-24T22:15:04Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-698616575) at 2020-09-24 03:15 PM PDT -alexandrastubbs,2020-09-24T22:28:44Z,- alexandrastubbs commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-698620994) at 2020-09-24 03:28 PM PDT -alexandrastubbs,2020-09-28T16:07:12Z,- alexandrastubbs opened issue: [754](https://github.com/hackforla/website/issues/754) at 2020-09-28 09:07 AM PDT -alexandrastubbs,2020-09-28T16:07:33Z,- alexandrastubbs assigned to issue: [754](https://github.com/hackforla/website/issues/754) at 2020-09-28 09:07 AM PDT -alexandrastubbs,2020-09-30T14:49:32Z,- alexandrastubbs commented on issue: [754](https://github.com/hackforla/website/issues/754#issuecomment-701440832) at 2020-09-30 07:49 AM PDT -alexandrastubbs,2020-09-30T18:48:08Z,- alexandrastubbs assigned to issue: [743](https://github.com/hackforla/website/issues/743) at 2020-09-30 11:48 AM PDT -alexandrastubbs,2020-09-30T19:08:31Z,- alexandrastubbs commented on issue: [743](https://github.com/hackforla/website/issues/743#issuecomment-701586730) at 2020-09-30 12:08 PM PDT -alexandrastubbs,2020-10-01T21:48:54Z,- alexandrastubbs commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-01 02:48 PM PDT -alexandrastubbs,2020-10-01T22:02:01Z,- alexandrastubbs commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-702421058) at 2020-10-01 03:02 PM PDT -alexandrastubbs,2020-10-05T01:39:22Z,- alexandrastubbs opened issue: [765](https://github.com/hackforla/website/issues/765) at 2020-10-04 06:39 PM PDT -alexandrastubbs,2020-10-07T16:15:23Z,- alexandrastubbs closed issue as completed: [754](https://github.com/hackforla/website/issues/754#event-3851404576) at 2020-10-07 09:15 AM PDT -alexandrastubbs,2020-10-07T16:16:12Z,- alexandrastubbs closed issue as completed: [743](https://github.com/hackforla/website/issues/743#event-3851408135) at 2020-10-07 09:16 AM PDT -alexandrastubbs,2020-10-07T20:37:24Z,- alexandrastubbs opened issue: [767](https://github.com/hackforla/website/issues/767) at 2020-10-07 01:37 PM PDT -alexandrastubbs,2020-10-07T20:37:31Z,- alexandrastubbs assigned to issue: [767](https://github.com/hackforla/website/issues/767) at 2020-10-07 01:37 PM PDT -alexandrastubbs,2020-10-07T23:29:19Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-705245874) at 2020-10-07 04:29 PM PDT -alexandrastubbs,2020-10-08T21:21:34Z,- alexandrastubbs commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-705830416) at 2020-10-08 02:21 PM PDT -alexandrastubbs,2020-10-08T21:51:43Z,- alexandrastubbs commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-705842895) at 2020-10-08 02:51 PM PDT -alexandrastubbs,2020-10-08T21:52:53Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-705843329) at 2020-10-08 02:52 PM PDT -alexandrastubbs,2020-10-08T22:11:56Z,- alexandrastubbs opened pull request: [768](https://github.com/hackforla/website/pull/768) at 2020-10-08 03:11 PM PDT -alexandrastubbs,2020-10-08T22:12:06Z,- alexandrastubbs pull request merged: [768](https://github.com/hackforla/website/pull/768#event-3857579355) at 2020-10-08 03:12 PM PDT -alexandrastubbs,2020-10-08T22:29:59Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-705856881) at 2020-10-08 03:29 PM PDT -alexandrastubbs,2020-10-08T22:31:35Z,- alexandrastubbs commented on issue: [739](https://github.com/hackforla/website/issues/739#issuecomment-705857406) at 2020-10-08 03:31 PM PDT -alexandrastubbs,2020-10-08T22:39:22Z,- alexandrastubbs opened pull request: [769](https://github.com/hackforla/website/pull/769) at 2020-10-08 03:39 PM PDT -alexandrastubbs,2020-10-08T22:40:05Z,- alexandrastubbs pull request merged: [769](https://github.com/hackforla/website/pull/769#event-3857647242) at 2020-10-08 03:40 PM PDT -alexandrastubbs,2020-10-08T22:41:22Z,- alexandrastubbs commented on issue: [731](https://github.com/hackforla/website/issues/731#issuecomment-705860392) at 2020-10-08 03:41 PM PDT -alexandrastubbs,2020-10-08T22:41:24Z,- alexandrastubbs closed issue as completed: [731](https://github.com/hackforla/website/issues/731#event-3857650353) at 2020-10-08 03:41 PM PDT -alexandrastubbs,2020-10-08T22:43:14Z,- alexandrastubbs closed issue as completed: [691](https://github.com/hackforla/website/issues/691#event-3857654677) at 2020-10-08 03:43 PM PDT -alexandrastubbs,2020-10-08T22:43:32Z,- alexandrastubbs commented on issue: [691](https://github.com/hackforla/website/issues/691#issuecomment-705861144) at 2020-10-08 03:43 PM PDT -alexandrastubbs,2020-10-08T22:45:29Z,- alexandrastubbs commented on issue: [744](https://github.com/hackforla/website/issues/744#issuecomment-705861810) at 2020-10-08 03:45 PM PDT -alexandrastubbs,2020-10-08T22:54:03Z,- alexandrastubbs opened pull request: [770](https://github.com/hackforla/website/pull/770) at 2020-10-08 03:54 PM PDT -alexandrastubbs,2020-10-08T22:54:22Z,- alexandrastubbs closed issue by PR 770: [730](https://github.com/hackforla/website/issues/730#event-3857679930) at 2020-10-08 03:54 PM PDT -alexandrastubbs,2020-10-08T22:54:22Z,- alexandrastubbs pull request merged: [770](https://github.com/hackforla/website/pull/770#event-3857679934) at 2020-10-08 03:54 PM PDT -alexandrastubbs,2020-10-09T19:19:44Z,- alexandrastubbs commented on issue: [744](https://github.com/hackforla/website/issues/744#issuecomment-706360425) at 2020-10-09 12:19 PM PDT -alexandrastubbs,2020-10-09T19:19:44Z,- alexandrastubbs closed issue as completed: [744](https://github.com/hackforla/website/issues/744#event-3861498089) at 2020-10-09 12:19 PM PDT -alexandrastubbs,2020-10-13T20:26:43Z,- alexandrastubbs assigned to issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-13 01:26 PM PDT -alexandrastubbs,2020-10-13T20:26:53Z,- alexandrastubbs unassigned from issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-13 01:26 PM PDT -alexandrastubbs,2020-10-15T21:15:57Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-709594775) at 2020-10-15 02:15 PM PDT -alexandrastubbs,2020-10-15T21:20:07Z,- alexandrastubbs commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-709596838) at 2020-10-15 02:20 PM PDT -alexandrastubbs,2020-10-15T21:23:42Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-709598408) at 2020-10-15 02:23 PM PDT -alexandrastubbs,2020-10-15T21:24:24Z,- alexandrastubbs commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-709598731) at 2020-10-15 02:24 PM PDT -alexandrastubbs,2020-10-15T21:26:49Z,- alexandrastubbs commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-709599833) at 2020-10-15 02:26 PM PDT -alexandrastubbs,2020-10-15T21:27:44Z,- alexandrastubbs commented on issue: [733](https://github.com/hackforla/website/issues/733#issuecomment-709600213) at 2020-10-15 02:27 PM PDT -alexandrastubbs,2020-10-15T21:28:25Z,- alexandrastubbs commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-709600502) at 2020-10-15 02:28 PM PDT -alexandrastubbs,2020-10-15T21:33:52Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-709602888) at 2020-10-15 02:33 PM PDT -alexandrastubbs,2020-10-15T21:43:26Z,- alexandrastubbs commented on pull request: [782](https://github.com/hackforla/website/pull/782#issuecomment-709606616) at 2020-10-15 02:43 PM PDT -alexandrastubbs,2020-10-15T21:53:48Z,- alexandrastubbs commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-709610467) at 2020-10-15 02:53 PM PDT -alexandrastubbs,2020-10-18T17:34:07Z,- alexandrastubbs commented on issue: [733](https://github.com/hackforla/website/issues/733#issuecomment-711318235) at 2020-10-18 10:34 AM PDT -alexandrastubbs,2020-10-18T17:34:07Z,- alexandrastubbs closed issue as completed: [733](https://github.com/hackforla/website/issues/733#event-3890463734) at 2020-10-18 10:34 AM PDT -alexandrastubbs,2020-10-18T17:43:32Z,- alexandrastubbs commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711326311) at 2020-10-18 10:43 AM PDT -alexandrastubbs,2020-10-20T01:47:02Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-712536170) at 2020-10-19 06:47 PM PDT -alexandrastubbs,2020-10-22T01:15:32Z,- alexandrastubbs commented on pull request: [792](https://github.com/hackforla/website/pull/792#issuecomment-714122152) at 2020-10-21 06:15 PM PDT -alexandrastubbs,2020-10-22T14:39:30Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-714541186) at 2020-10-22 07:39 AM PDT -alexandrastubbs,2020-10-22T21:08:34Z,- alexandrastubbs commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-714763356) at 2020-10-22 02:08 PM PDT -alexandrastubbs,2020-10-22T21:17:13Z,- alexandrastubbs commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-714767484) at 2020-10-22 02:17 PM PDT -alexandrastubbs,2020-10-22T21:19:41Z,- alexandrastubbs closed issue by PR 792: [725](https://github.com/hackforla/website/issues/725#event-3911190681) at 2020-10-22 02:19 PM PDT -alexandrastubbs,2020-10-22T21:21:31Z,- alexandrastubbs commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-714769438) at 2020-10-22 02:21 PM PDT -alexandrastubbs,2020-10-22T21:22:55Z,- alexandrastubbs commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-714770060) at 2020-10-22 02:22 PM PDT -alexandrastubbs,2020-10-22T21:28:59Z,- alexandrastubbs commented on pull request: [789](https://github.com/hackforla/website/pull/789#issuecomment-714772717) at 2020-10-22 02:28 PM PDT -alexandrastubbs,2020-10-22T21:30:09Z,- alexandrastubbs commented on pull request: [786](https://github.com/hackforla/website/pull/786#issuecomment-714773237) at 2020-10-22 02:30 PM PDT -alexandrastubbs,2020-10-22T21:32:40Z,- alexandrastubbs commented on pull request: [785](https://github.com/hackforla/website/pull/785#issuecomment-714774467) at 2020-10-22 02:32 PM PDT -alexandrastubbs,2020-10-22T21:58:05Z,- alexandrastubbs commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-714785491) at 2020-10-22 02:58 PM PDT -alexandrastubbs,2020-10-22T22:15:14Z,- alexandrastubbs commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-714792207) at 2020-10-22 03:15 PM PDT -alexandrastubbs,2020-10-22T22:16:29Z,- alexandrastubbs commented on issue: [116](https://github.com/hackforla/website/issues/116#issuecomment-714792663) at 2020-10-22 03:16 PM PDT -alexandrastubbs,2020-10-22T22:20:19Z,- alexandrastubbs commented on issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-714794251) at 2020-10-22 03:20 PM PDT -alexandrastubbs,2020-10-22T22:30:48Z,- alexandrastubbs closed issue as completed: [293](https://github.com/hackforla/website/issues/293#event-3911388236) at 2020-10-22 03:30 PM PDT -alexandrastubbs,2020-10-22T22:31:46Z,- alexandrastubbs commented on issue: [493](https://github.com/hackforla/website/issues/493#issuecomment-714798750) at 2020-10-22 03:31 PM PDT -alexandrastubbs,2020-10-22T22:31:46Z,- alexandrastubbs closed issue as completed: [493](https://github.com/hackforla/website/issues/493#event-3911390241) at 2020-10-22 03:31 PM PDT -alexandrastubbs,2020-10-22T22:32:57Z,- alexandrastubbs commented on issue: [273](https://github.com/hackforla/website/issues/273#issuecomment-714799244) at 2020-10-22 03:32 PM PDT -alexandrastubbs,2020-10-23T15:31:14Z,- alexandrastubbs opened issue: [793](https://github.com/hackforla/website/issues/793) at 2020-10-23 08:31 AM PDT -alexandrastubbs,2020-10-23T17:51:04Z,- alexandrastubbs opened issue: [794](https://github.com/hackforla/website/issues/794) at 2020-10-23 10:51 AM PDT -alexandrastubbs,2020-10-23T17:52:25Z,- alexandrastubbs commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-715488154) at 2020-10-23 10:52 AM PDT -alexandrastubbs,2020-10-23T18:22:39Z,- alexandrastubbs opened issue: [795](https://github.com/hackforla/website/issues/795) at 2020-10-23 11:22 AM PDT -alexandrastubbs,2020-10-23T18:46:10Z,- alexandrastubbs opened issue: [796](https://github.com/hackforla/website/issues/796) at 2020-10-23 11:46 AM PDT -alexandrastubbs,2020-10-23T18:49:56Z,- alexandrastubbs opened issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:49 AM PDT -alexandrastubbs,2020-10-23T18:50:23Z,- alexandrastubbs assigned to issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:50 AM PDT -alexandrastubbs,2020-10-23T18:50:30Z,- alexandrastubbs unassigned from issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:50 AM PDT -alexandrastubbs,2020-10-23T18:51:03Z,- alexandrastubbs commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-715521741) at 2020-10-23 11:51 AM PDT -alexandrastubbs,2020-10-23T18:58:29Z,- alexandrastubbs opened issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:58 AM PDT -alexandrastubbs,2020-10-23T18:58:59Z,- alexandrastubbs assigned to issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:58 AM PDT -alexandrastubbs,2020-10-23T18:59:05Z,- alexandrastubbs unassigned from issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:59 AM PDT -alexandrastubbs,2020-10-23T19:51:08Z,- alexandrastubbs opened issue: [799](https://github.com/hackforla/website/issues/799) at 2020-10-23 12:51 PM PDT -alexandrastubbs,2020-10-23T19:55:07Z,- alexandrastubbs commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-715560606) at 2020-10-23 12:55 PM PDT -alexandrastubbs,2020-10-29T21:54:00Z,- alexandrastubbs commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-10-29 02:54 PM PDT -alexandrastubbs,2020-10-29T22:02:08Z,- alexandrastubbs commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-719049614) at 2020-10-29 03:02 PM PDT -alexandrastubbs,2020-10-29T22:02:08Z,- alexandrastubbs closed issue as completed: [745](https://github.com/hackforla/website/issues/745#event-3938638616) at 2020-10-29 03:02 PM PDT -alexandrastubbs,2020-11-02T14:40:06Z,- alexandrastubbs assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-02 06:40 AM PST -alexandrastubbs,2020-11-02T14:40:16Z,- alexandrastubbs unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-02 06:40 AM PST -alexandrastubbs,2020-11-10T15:27:14Z,- alexandrastubbs commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724775184) at 2020-11-10 07:27 AM PST -alexandrastubbs,2020-11-12T22:19:05Z,- alexandrastubbs commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-726374087) at 2020-11-12 02:19 PM PST -alexandrastubbs,2020-11-12T22:21:48Z,- alexandrastubbs commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-726375214) at 2020-11-12 02:21 PM PST -alexandrastubbs,2020-11-12T22:30:43Z,- alexandrastubbs commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-726381607) at 2020-11-12 02:30 PM PST -alexandrastubbs,2020-11-12T23:31:59Z,- alexandrastubbs closed issue as completed: [601](https://github.com/hackforla/website/issues/601#event-3991115697) at 2020-11-12 03:31 PM PST -alexandrastubbs,2020-11-12T23:41:42Z,- alexandrastubbs commented on issue: [806](https://github.com/hackforla/website/issues/806#issuecomment-726409360) at 2020-11-12 03:41 PM PST -alexandrastubbs,2020-11-12T23:41:42Z,- alexandrastubbs closed issue as completed: [806](https://github.com/hackforla/website/issues/806#event-3991139034) at 2020-11-12 03:41 PM PST -alexandrastubbs,2020-11-16T21:20:16Z,- alexandrastubbs commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-728336011) at 2020-11-16 01:20 PM PST -alexandrastubbs,2020-11-20T21:47:24Z,- alexandrastubbs commented on issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2020-11-20 01:47 PM PST -alexandrastubbs,2020-11-20T21:47:48Z,- alexandrastubbs unassigned from issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2020-11-20 01:47 PM PST -alexandrastubbs,2020-11-24T16:45:04Z,- alexandrastubbs opened issue: [813](https://github.com/hackforla/website/issues/813) at 2020-11-24 08:45 AM PST -alexandrastubbs,2020-11-24T16:45:04Z,- alexandrastubbs assigned to issue: [813](https://github.com/hackforla/website/issues/813) at 2020-11-24 08:45 AM PST -alexandrastubbs,2020-11-24T16:48:52Z,- alexandrastubbs commented on issue: [813](https://github.com/hackforla/website/issues/813#issuecomment-733103078) at 2020-11-24 08:48 AM PST -alexandrastubbs,2020-11-24T16:48:52Z,- alexandrastubbs closed issue as completed: [813](https://github.com/hackforla/website/issues/813#event-4033834540) at 2020-11-24 08:48 AM PST -alexandrastubbs,2020-12-08T21:28:19Z,- alexandrastubbs unassigned from issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-693773011) at 2020-12-08 01:28 PM PST -alexandrastubbs,2020-12-08T21:51:25Z,- alexandrastubbs unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -alexandrastubbs,2021-07-26T02:41:02Z,- alexandrastubbs unassigned from issue: [609](https://github.com/hackforla/website/issues/609) at 2021-07-25 07:41 PM PDT -alexandrastubbs,2023-03-22T18:58:28Z,- alexandrastubbs closed issue as completed: [110](https://github.com/hackforla/website/issues/110#event-8820268282) at 2023-03-22 11:58 AM PDT -alexeysergeev-cm,2021-06-08T23:16:35Z,- alexeysergeev-cm assigned to issue: [1519](https://github.com/hackforla/website/issues/1519) at 2021-06-08 04:16 PM PDT -alexeysergeev-cm,2021-06-09T21:36:37Z,- alexeysergeev-cm opened pull request: [1704](https://github.com/hackforla/website/pull/1704) at 2021-06-09 02:36 PM PDT -alexeysergeev-cm,2021-06-11T19:02:24Z,- alexeysergeev-cm commented on pull request: [1704](https://github.com/hackforla/website/pull/1704#issuecomment-859781379) at 2021-06-11 12:02 PM PDT -alexeysergeev-cm,2021-06-12T03:04:38Z,- alexeysergeev-cm pull request merged: [1704](https://github.com/hackforla/website/pull/1704#event-4880737785) at 2021-06-11 08:04 PM PDT -alexeysergeev-cm,2021-06-15T03:22:11Z,- alexeysergeev-cm assigned to issue: [1693](https://github.com/hackforla/website/issues/1693) at 2021-06-14 08:22 PM PDT -alexeysergeev-cm,2021-06-21T19:09:30Z,- alexeysergeev-cm opened pull request: [1799](https://github.com/hackforla/website/pull/1799) at 2021-06-21 12:09 PM PDT -alexeysergeev-cm,2021-06-23T16:50:29Z,- alexeysergeev-cm pull request merged: [1799](https://github.com/hackforla/website/pull/1799#event-4930083302) at 2021-06-23 09:50 AM PDT -alexeysergeev-cm,2021-06-29T22:04:34Z,- alexeysergeev-cm assigned to issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-06-29 03:04 PM PDT -alexeysergeev-cm,2021-06-29T23:13:48Z,- alexeysergeev-cm opened pull request: [1860](https://github.com/hackforla/website/pull/1860) at 2021-06-29 04:13 PM PDT -alexeysergeev-cm,2021-07-01T04:59:46Z,- alexeysergeev-cm pull request merged: [1860](https://github.com/hackforla/website/pull/1860#event-4963452343) at 2021-06-30 09:59 PM PDT -alexeysergeev-cm,2021-07-06T23:53:13Z,- alexeysergeev-cm assigned to issue: [1710](https://github.com/hackforla/website/issues/1710) at 2021-07-06 04:53 PM PDT -alexeysergeev-cm,2021-07-16T04:11:15Z,- alexeysergeev-cm commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-881161909) at 2021-07-15 09:11 PM PDT -alexeysergeev-cm,2021-07-19T18:37:35Z,- alexeysergeev-cm commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-882770701) at 2021-07-19 11:37 AM PDT -alexeysergeev-cm,2021-07-20T04:04:40Z,- alexeysergeev-cm opened pull request: [1986](https://github.com/hackforla/website/pull/1986) at 2021-07-19 09:04 PM PDT -alexeysergeev-cm,2021-07-23T02:42:06Z,- alexeysergeev-cm commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-885360984) at 2021-07-22 07:42 PM PDT -alexeysergeev-cm,2021-08-06T20:13:14Z,- alexeysergeev-cm submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-724680943) at 2021-08-06 01:13 PM PDT -alexgklein,2024-01-25T23:30:12Z,- alexgklein commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1911164311) at 2024-01-25 03:30 PM PST -alexilee,2021-04-11T16:24:35Z,- alexilee commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-817333676) at 2021-04-11 09:24 AM PDT -alexilee,2021-06-02T01:50:52Z,- alexilee assigned to issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820805369) at 2021-06-01 06:50 PM PDT -alexilee,2021-06-09T01:18:34Z,- alexilee commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-857298376) at 2021-06-08 06:18 PM PDT -alexilee,2021-06-09T01:18:34Z,- alexilee commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-857298376) at 2021-06-08 06:18 PM PDT -alice-milmac,3379,SKILLS ISSUE -alice-milmac,2022-07-17T18:06:15Z,- alice-milmac opened issue: [3379](https://github.com/hackforla/website/issues/3379) at 2022-07-17 11:06 AM PDT -alice-milmac,2022-07-17T18:54:47Z,- alice-milmac assigned to issue: [3379](https://github.com/hackforla/website/issues/3379#issuecomment-1186584878) at 2022-07-17 11:54 AM PDT -alice-milmac,2022-07-18T21:19:26Z,- alice-milmac assigned to issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1016463768) at 2022-07-18 02:19 PM PDT -alice-milmac,2022-07-18T21:22:21Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1188324877) at 2022-07-18 02:22 PM PDT -alice-milmac,2022-07-19T20:25:24Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1189517767) at 2022-07-19 01:25 PM PDT -alice-milmac,2022-07-27T15:44:14Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1196930050) at 2022-07-27 08:44 AM PDT -alice-milmac,2022-07-27T21:43:05Z,- alice-milmac closed issue as completed: [3379](https://github.com/hackforla/website/issues/3379#event-7076720922) at 2022-07-27 02:43 PM PDT -alice-milmac,2022-08-05T14:06:02Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1206496580) at 2022-08-05 07:06 AM PDT -alice-milmac,2022-08-11T14:23:09Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1212058221) at 2022-08-11 07:23 AM PDT -alice-milmac,2022-08-18T20:48:38Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1219946633) at 2022-08-18 01:48 PM PDT -alice-milmac,2022-08-26T15:27:07Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1228636894) at 2022-08-26 08:27 AM PDT -alice-milmac,2022-08-31T21:41:00Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1233448337) at 2022-08-31 02:41 PM PDT -alice-milmac,2022-09-09T16:45:19Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1242213305) at 2022-09-09 09:45 AM PDT -alice-milmac,2022-09-12T19:30:33Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1244238421) at 2022-09-12 12:30 PM PDT -alice-milmac,2022-09-18T16:05:05Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1250338395) at 2022-09-18 09:05 AM PDT -alice-milmac,2022-09-18T18:33:24Z,- alice-milmac opened issue: [3563](https://github.com/hackforla/website/issues/3563) at 2022-09-18 11:33 AM PDT -alice-milmac,2022-09-19T21:34:20Z,- alice-milmac opened issue: [3565](https://github.com/hackforla/website/issues/3565) at 2022-09-19 02:34 PM PDT -alice-milmac,2022-09-19T21:34:20Z,- alice-milmac assigned to issue: [3565](https://github.com/hackforla/website/issues/3565) at 2022-09-19 02:34 PM PDT -alice-milmac,2022-09-19T22:08:09Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1251618215) at 2022-09-19 03:08 PM PDT -alice-milmac,2022-09-26T22:08:06Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1258693614) at 2022-09-26 03:08 PM PDT -alice-milmac,2022-09-26T22:09:49Z,- alice-milmac commented on issue: [3565](https://github.com/hackforla/website/issues/3565#issuecomment-1258694956) at 2022-09-26 03:09 PM PDT -alice-milmac,2022-09-26T22:09:49Z,- alice-milmac closed issue as completed: [3565](https://github.com/hackforla/website/issues/3565#event-7462909846) at 2022-09-26 03:09 PM PDT -alice-milmac,2022-10-03T22:20:18Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1266128385) at 2022-10-03 03:20 PM PDT -alice-milmac,2022-10-10T18:37:49Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1273682281) at 2022-10-10 11:37 AM PDT -alice-milmac,2022-10-18T22:59:49Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1283105566) at 2022-10-18 03:59 PM PDT -alice-milmac,2022-10-29T21:04:37Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1295974839) at 2022-10-29 02:04 PM PDT -alice-milmac,2022-11-29T17:30:33Z,- alice-milmac unassigned from issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1327101334) at 2022-11-29 09:30 AM PST -alice-milmac,2022-12-03T14:42:20Z,- alice-milmac commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1336173775) at 2022-12-03 06:42 AM PST -alice-milmac,2022-12-03T14:42:32Z,- alice-milmac assigned to issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1336173775) at 2022-12-03 06:42 AM PST -alice-milmac,2022-12-03T14:43:34Z,- alice-milmac closed issue as completed: [2705](https://github.com/hackforla/website/issues/2705#event-7946353742) at 2022-12-03 06:43 AM PST -aliibsin,2021-06-16T02:58:42Z,- aliibsin assigned to issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-06-15 07:58 PM PDT -aliibsin,2021-06-16T03:35:43Z,- aliibsin commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-862011700) at 2021-06-15 08:35 PM PDT -aliibsin,2021-06-16T03:40:14Z,- aliibsin commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-862013229) at 2021-06-15 08:40 PM PDT -aliibsin,2021-06-16T03:44:28Z,- aliibsin commented on pull request: [1731](https://github.com/hackforla/website/pull/1731#issuecomment-862014431) at 2021-06-15 08:44 PM PDT -aliibsin,2021-06-16T03:51:54Z,- aliibsin commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-862016654) at 2021-06-15 08:51 PM PDT -aliibsin,2021-06-16T03:55:19Z,- aliibsin commented on pull request: [1744](https://github.com/hackforla/website/pull/1744#issuecomment-862017666) at 2021-06-15 08:55 PM PDT -aliibsin,2021-06-16T03:57:24Z,- aliibsin commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-862018266) at 2021-06-15 08:57 PM PDT -aliibsin,2021-06-16T03:59:17Z,- aliibsin commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-862018870) at 2021-06-15 08:59 PM PDT -aliibsin,2021-06-16T04:04:46Z,- aliibsin commented on issue: [1749](https://github.com/hackforla/website/issues/1749#issuecomment-862020891) at 2021-06-15 09:04 PM PDT -aliibsin,2021-06-17T23:39:35Z,- aliibsin opened pull request: [1765](https://github.com/hackforla/website/pull/1765) at 2021-06-17 04:39 PM PDT -aliibsin,2021-06-18T02:28:39Z,- aliibsin assigned to issue: [1611](https://github.com/hackforla/website/issues/1611) at 2021-06-17 07:28 PM PDT -aliibsin,2021-06-19T00:09:38Z,- aliibsin pull request merged: [1765](https://github.com/hackforla/website/pull/1765#event-4911931727) at 2021-06-18 05:09 PM PDT -aliibsin,2021-06-19T22:19:32Z,- aliibsin opened pull request: [1790](https://github.com/hackforla/website/pull/1790) at 2021-06-19 03:19 PM PDT -aliibsin,2021-06-20T18:10:25Z,- aliibsin submitted pull request review: [1784](https://github.com/hackforla/website/pull/1784#pullrequestreview-687929388) at 2021-06-20 11:10 AM PDT -aliibsin,2021-06-23T16:51:05Z,- aliibsin pull request merged: [1790](https://github.com/hackforla/website/pull/1790#event-4930086182) at 2021-06-23 09:51 AM PDT -aliibsin,2021-06-27T08:31:16Z,- aliibsin assigned to issue: [1836](https://github.com/hackforla/website/issues/1836) at 2021-06-27 01:31 AM PDT -aliibsin,2021-06-30T04:20:55Z,- aliibsin opened pull request: [1864](https://github.com/hackforla/website/pull/1864) at 2021-06-29 09:20 PM PDT -aliibsin,2021-07-02T17:01:21Z,- aliibsin pull request merged: [1864](https://github.com/hackforla/website/pull/1864#event-4972501708) at 2021-07-02 10:01 AM PDT -aliibsin,2021-07-04T07:08:11Z,- aliibsin assigned to issue: [1877](https://github.com/hackforla/website/issues/1877) at 2021-07-04 12:08 AM PDT -aliibsin,2021-07-11T10:52:31Z,- aliibsin opened pull request: [1918](https://github.com/hackforla/website/pull/1918) at 2021-07-11 03:52 AM PDT -aliibsin,2021-07-15T22:24:08Z,- aliibsin pull request merged: [1918](https://github.com/hackforla/website/pull/1918#event-5027999921) at 2021-07-15 03:24 PM PDT -AlimurtuzaCodes,2023-06-21T06:33:06Z,- AlimurtuzaCodes commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1600261456) at 2023-06-20 11:33 PM PDT -AlimurtuzaCodes,2023-06-21T14:28:55Z,- AlimurtuzaCodes commented on issue: [4869](https://github.com/hackforla/website/issues/4869#issuecomment-1600945942) at 2023-06-21 07:28 AM PDT -allanjlopez,7520,SKILLS ISSUE -allanjlopez,2024-09-25T03:44:51Z,- allanjlopez opened issue: [7520](https://github.com/hackforla/website/issues/7520) at 2024-09-24 08:44 PM PDT -allanjlopez,2024-09-25T03:45:38Z,- allanjlopez assigned to issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2372850702) at 2024-09-24 08:45 PM PDT -allanjlopez,2024-09-25T05:52:32Z,- allanjlopez commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2373089136) at 2024-09-24 10:52 PM PDT -allanjlopez,2024-10-23T02:35:42Z,- allanjlopez commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2430704098) at 2024-10-22 07:35 PM PDT -Anahisv23,5778,SKILLS ISSUE -Anahisv23,2023-10-25T02:51:15Z,- Anahisv23 opened issue: [5778](https://github.com/hackforla/website/issues/5778) at 2023-10-24 07:51 PM PDT -Anahisv23,2023-10-25T02:52:06Z,- Anahisv23 assigned to issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1778420161) at 2023-10-24 07:52 PM PDT -Anahisv23,2023-11-01T20:49:25Z,- Anahisv23 assigned to issue: [5762](https://github.com/hackforla/website/issues/5762) at 2023-11-01 01:49 PM PDT -Anahisv23,2023-11-01T21:47:05Z,- Anahisv23 commented on issue: [5762](https://github.com/hackforla/website/issues/5762#issuecomment-1789737798) at 2023-11-01 02:47 PM PDT -Anahisv23,2023-11-01T22:50:46Z,- Anahisv23 opened pull request: [5822](https://github.com/hackforla/website/pull/5822) at 2023-11-01 03:50 PM PDT -Anahisv23,2023-11-03T19:29:43Z,- Anahisv23 commented on pull request: [5821](https://github.com/hackforla/website/pull/5821#issuecomment-1792987854) at 2023-11-03 12:29 PM PDT -Anahisv23,2023-11-03T20:10:10Z,- Anahisv23 submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1713463097) at 2023-11-03 01:10 PM PDT -Anahisv23,2023-11-03T21:20:04Z,- Anahisv23 submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1713546387) at 2023-11-03 02:20 PM PDT -Anahisv23,2023-11-06T22:44:08Z,- Anahisv23 pull request merged: [5822](https://github.com/hackforla/website/pull/5822#event-10879522463) at 2023-11-06 02:44 PM PST -Anahisv23,2023-11-07T04:24:53Z,- Anahisv23 assigned to issue: [5804](https://github.com/hackforla/website/issues/5804) at 2023-11-06 08:24 PM PST -Anahisv23,2023-11-10T20:50:28Z,- Anahisv23 unassigned from issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1797802085) at 2023-11-10 12:50 PM PST -Anahisv23,2023-11-15T20:15:16Z,- Anahisv23 assigned to issue: [5791](https://github.com/hackforla/website/issues/5791#issuecomment-1784205101) at 2023-11-15 12:15 PM PST -Anahisv23,2023-11-15T20:26:46Z,- Anahisv23 commented on issue: [5791](https://github.com/hackforla/website/issues/5791#issuecomment-1813211242) at 2023-11-15 12:26 PM PST -Anahisv23,2023-11-16T22:09:00Z,- Anahisv23 opened pull request: [5916](https://github.com/hackforla/website/pull/5916) at 2023-11-16 02:09 PM PST -Anahisv23,2023-11-16T23:13:58Z,- Anahisv23 commented on pull request: [5912](https://github.com/hackforla/website/pull/5912#issuecomment-1815466516) at 2023-11-16 03:13 PM PST -Anahisv23,2023-11-16T23:46:54Z,- Anahisv23 submitted pull request review: [5912](https://github.com/hackforla/website/pull/5912#pullrequestreview-1735747539) at 2023-11-16 03:46 PM PST -Anahisv23,2023-11-19T07:04:14Z,- Anahisv23 pull request merged: [5916](https://github.com/hackforla/website/pull/5916#event-11003174317) at 2023-11-18 11:04 PM PST -Anahisv23,2024-01-09T21:16:37Z,- Anahisv23 assigned to issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1763833264) at 2024-01-09 01:16 PM PST -Anahisv23,2024-01-09T21:18:06Z,- Anahisv23 commented on issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1883806836) at 2024-01-09 01:18 PM PST -Anahisv23,2024-01-10T03:36:39Z,- Anahisv23 unassigned from issue: [5715](https://github.com/hackforla/website/issues/5715#issuecomment-1883806836) at 2024-01-09 07:36 PM PST -Anahisv23,2024-01-10T20:36:15Z,- Anahisv23 assigned to issue: [6092](https://github.com/hackforla/website/issues/6092) at 2024-01-10 12:36 PM PST -Anahisv23,2024-01-10T21:08:11Z,- Anahisv23 commented on issue: [6092](https://github.com/hackforla/website/issues/6092#issuecomment-1885735608) at 2024-01-10 01:08 PM PST -Anahisv23,2024-01-22T21:03:18Z,- Anahisv23 assigned to issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1882701763) at 2024-01-22 01:03 PM PST -Anahisv23,2024-01-22T21:08:49Z,- Anahisv23 commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1904820250) at 2024-01-22 01:08 PM PST -Anahisv23,2024-01-24T05:45:42Z,- Anahisv23 commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907416893) at 2024-01-23 09:45 PM PST -Anahisv23,2024-01-25T03:50:22Z,- Anahisv23 opened pull request: [6158](https://github.com/hackforla/website/pull/6158) at 2024-01-24 07:50 PM PST -Anahisv23,2024-01-29T22:05:48Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915657673) at 2024-01-29 02:05 PM PST -Anahisv23,2024-01-30T00:32:14Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915829275) at 2024-01-29 04:32 PM PST -Anahisv23,2024-01-30T21:21:24Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1917914949) at 2024-01-30 01:21 PM PST -Anahisv23,2024-02-01T07:59:16Z,- Anahisv23 pull request merged: [6158](https://github.com/hackforla/website/pull/6158#event-11665938168) at 2024-01-31 11:59 PM PST -Anahisv23,2024-02-02T23:44:39Z,- Anahisv23 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1924911105) at 2024-02-02 03:44 PM PST -Anahisv23,2024-02-06T19:55:53Z,- Anahisv23 assigned to issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1835723375) at 2024-02-06 11:55 AM PST -Anahisv23,2024-02-06T21:09:04Z,- Anahisv23 commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1930754378) at 2024-02-06 01:09 PM PST -Anahisv23,2024-02-09T19:40:47Z,- Anahisv23 commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1936501197) at 2024-02-09 11:40 AM PST -Anahisv23,2024-02-20T22:19:44Z,- Anahisv23 submitted pull request review: [6325](https://github.com/hackforla/website/pull/6325#pullrequestreview-1891696732) at 2024-02-20 02:19 PM PST -Anahisv23,2024-02-28T18:43:02Z,- Anahisv23 unassigned from issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1956064666) at 2024-02-28 10:43 AM PST -Anahisv23,2024-02-29T02:13:04Z,- Anahisv23 commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1970272198) at 2024-02-28 06:13 PM PST -Anahisv23,2024-02-29T02:54:00Z,- Anahisv23 commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1970305466) at 2024-02-28 06:54 PM PST -Anahisv23,2024-02-29T02:56:13Z,- Anahisv23 commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1970307010) at 2024-02-28 06:56 PM PST -Anahisv23,2024-03-01T00:33:36Z,- Anahisv23 commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1972218039) at 2024-02-29 04:33 PM PST -Anahisv23,2024-03-01T00:33:55Z,- Anahisv23 submitted pull request review: [6388](https://github.com/hackforla/website/pull/6388#pullrequestreview-1910100993) at 2024-02-29 04:33 PM PST -Anahisv23,2024-03-13T00:09:03Z,- Anahisv23 assigned to issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1955364698) at 2024-03-12 05:09 PM PDT -Anahisv23,2024-03-13T00:14:22Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1992791085) at 2024-03-12 05:14 PM PDT -Anahisv23,2024-03-16T00:01:26Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2000710564) at 2024-03-15 05:01 PM PDT -Anahisv23,2024-03-20T21:12:18Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2010648579) at 2024-03-20 02:12 PM PDT -Anahisv23,2024-03-31T18:22:56Z,- Anahisv23 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2028856669) at 2024-03-31 11:22 AM PDT -Anahisv23,2024-04-10T21:46:54Z,- Anahisv23 commented on pull request: [6612](https://github.com/hackforla/website/pull/6612#issuecomment-2048490340) at 2024-04-10 02:46 PM PDT -Anahisv23,2024-04-10T22:19:08Z,- Anahisv23 submitted pull request review: [6612](https://github.com/hackforla/website/pull/6612#pullrequestreview-1992774245) at 2024-04-10 03:19 PM PDT -Anahisv23,2024-04-24T22:50:30Z,- Anahisv23 opened pull request: [6747](https://github.com/hackforla/website/pull/6747) at 2024-04-24 03:50 PM PDT -Anahisv23,2024-04-28T18:29:35Z,- Anahisv23 commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2081589559) at 2024-04-28 11:29 AM PDT -Anahisv23,2024-04-29T20:28:00Z,- Anahisv23 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2029565395) at 2024-04-29 01:28 PM PDT -Anahisv23,2024-04-30T22:15:11Z,- Anahisv23 submitted pull request review: [6774](https://github.com/hackforla/website/pull/6774#pullrequestreview-2032655313) at 2024-04-30 03:15 PM PDT -Anahisv23,2024-05-07T20:35:19Z,- Anahisv23 commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2099264130) at 2024-05-07 01:35 PM PDT -Anahisv23,2024-05-08T23:55:41Z,- Anahisv23 submitted pull request review: [6806](https://github.com/hackforla/website/pull/6806#pullrequestreview-2046937328) at 2024-05-08 04:55 PM PDT -Anahisv23,2024-05-13T20:33:51Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2108751698) at 2024-05-13 01:33 PM PDT -Anahisv23,2024-05-16T21:28:40Z,- Anahisv23 submitted pull request review: [6806](https://github.com/hackforla/website/pull/6806#pullrequestreview-2061921868) at 2024-05-16 02:28 PM PDT -Anahisv23,2024-05-18T03:21:25Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2118619029) at 2024-05-17 08:21 PM PDT -Anahisv23,2024-05-21T00:30:59Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2121483019) at 2024-05-20 05:30 PM PDT -Anahisv23,2024-05-23T20:17:54Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2127950322) at 2024-05-23 01:17 PM PDT -Anahisv23,2024-06-01T04:40:51Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2143288880) at 2024-05-31 09:40 PM PDT -Anahisv23,2024-06-04T21:25:27Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2148441986) at 2024-06-04 02:25 PM PDT -Anahisv23,2024-06-07T21:18:14Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2155565761) at 2024-06-07 02:18 PM PDT -Anahisv23,2024-06-11T22:52:01Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2161728632) at 2024-06-11 03:52 PM PDT -Anahisv23,2024-06-12T21:14:21Z,- Anahisv23 commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163913316) at 2024-06-12 02:14 PM PDT -Anahisv23,2024-06-12T21:51:56Z,- Anahisv23 commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163963102) at 2024-06-12 02:51 PM PDT -Anahisv23,2024-06-12T22:09:01Z,- Anahisv23 commented on pull request: [6992](https://github.com/hackforla/website/pull/6992#issuecomment-2163982950) at 2024-06-12 03:09 PM PDT -Anahisv23,2024-06-12T22:25:18Z,- Anahisv23 submitted pull request review: [6992](https://github.com/hackforla/website/pull/6992#pullrequestreview-2114328383) at 2024-06-12 03:25 PM PDT -Anahisv23,2024-06-13T21:24:18Z,- Anahisv23 submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2117059542) at 2024-06-13 02:24 PM PDT -Anahisv23,2024-06-14T04:43:45Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2167200791) at 2024-06-13 09:43 PM PDT -Anahisv23,2024-06-14T21:47:10Z,- Anahisv23 commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2168804633) at 2024-06-14 02:47 PM PDT -Anahisv23,2024-06-19T21:35:16Z,- Anahisv23 commented on pull request: [7037](https://github.com/hackforla/website/pull/7037#issuecomment-2179484058) at 2024-06-19 02:35 PM PDT -Anahisv23,2024-06-19T21:47:55Z,- Anahisv23 submitted pull request review: [7037](https://github.com/hackforla/website/pull/7037#pullrequestreview-2129075685) at 2024-06-19 02:47 PM PDT -Anahisv23,2024-06-19T21:50:17Z,- Anahisv23 commented on pull request: [7017](https://github.com/hackforla/website/pull/7017#issuecomment-2179497594) at 2024-06-19 02:50 PM PDT -Anahisv23,2024-06-19T21:58:16Z,- Anahisv23 submitted pull request review: [7017](https://github.com/hackforla/website/pull/7017#pullrequestreview-2129081884) at 2024-06-19 02:58 PM PDT -Anahisv23,2024-06-19T22:01:52Z,- Anahisv23 commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2179506328) at 2024-06-19 03:01 PM PDT -Anahisv23,2024-06-19T22:04:57Z,- Anahisv23 commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2179508804) at 2024-06-19 03:04 PM PDT -Anahisv23,2024-06-26T20:33:53Z,- Anahisv23 commented on pull request: [7065](https://github.com/hackforla/website/pull/7065#issuecomment-2192577350) at 2024-06-26 01:33 PM PDT -Anahisv23,2024-06-26T20:52:05Z,- Anahisv23 submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2142947999) at 2024-06-26 01:52 PM PDT -Anahisv23,2024-06-26T21:01:07Z,- Anahisv23 commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2192619991) at 2024-06-26 02:01 PM PDT -Anahisv23,2024-06-26T21:03:57Z,- Anahisv23 submitted pull request review: [7067](https://github.com/hackforla/website/pull/7067#pullrequestreview-2142969859) at 2024-06-26 02:03 PM PDT -Anahisv23,2024-06-26T21:43:28Z,- Anahisv23 commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192675349) at 2024-06-26 02:43 PM PDT -Anahisv23,2024-06-26T21:52:25Z,- Anahisv23 submitted pull request review: [7068](https://github.com/hackforla/website/pull/7068#pullrequestreview-2143036343) at 2024-06-26 02:52 PM PDT -Anahisv23,2024-06-26T21:56:18Z,- Anahisv23 commented on pull request: [7069](https://github.com/hackforla/website/pull/7069#issuecomment-2192691336) at 2024-06-26 02:56 PM PDT -Anahisv23,2024-06-26T22:03:03Z,- Anahisv23 submitted pull request review: [7069](https://github.com/hackforla/website/pull/7069#pullrequestreview-2143049275) at 2024-06-26 03:03 PM PDT -Anahisv23,2024-06-26T22:23:54Z,- Anahisv23 commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192719337) at 2024-06-26 03:23 PM PDT -Anahisv23,2024-06-26T23:28:51Z,- Anahisv23 submitted pull request review: [7068](https://github.com/hackforla/website/pull/7068#pullrequestreview-2143135721) at 2024-06-26 04:28 PM PDT -Anahisv23,2024-08-07T20:59:42Z,- Anahisv23 commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2274337850) at 2024-08-07 01:59 PM PDT -Anahisv23,2024-08-07T21:25:35Z,- Anahisv23 submitted pull request review: [7234](https://github.com/hackforla/website/pull/7234#pullrequestreview-2226224797) at 2024-08-07 02:25 PM PDT -Anahisv23,2024-08-07T21:29:29Z,- Anahisv23 commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2274382097) at 2024-08-07 02:29 PM PDT -Anahisv23,2024-08-07T21:29:40Z,- Anahisv23 commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2274382348) at 2024-08-07 02:29 PM PDT -Anahisv23,2024-08-07T21:31:24Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274385252) at 2024-08-07 02:31 PM PDT -Anahisv23,2024-08-07T22:00:14Z,- Anahisv23 submitted pull request review: [7235](https://github.com/hackforla/website/pull/7235#pullrequestreview-2226269397) at 2024-08-07 03:00 PM PDT -Anahisv23,2024-08-07T22:50:02Z,- Anahisv23 submitted pull request review: [7229](https://github.com/hackforla/website/pull/7229#pullrequestreview-2226319693) at 2024-08-07 03:50 PM PDT -Anahisv23,2024-08-07T23:01:07Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274488835) at 2024-08-07 04:01 PM PDT -Anahisv23,2024-08-07T23:19:32Z,- Anahisv23 submitted pull request review: [7229](https://github.com/hackforla/website/pull/7229#pullrequestreview-2226342947) at 2024-08-07 04:19 PM PDT -Anahisv23,2024-08-07T23:54:39Z,- Anahisv23 submitted pull request review: [7230](https://github.com/hackforla/website/pull/7230#pullrequestreview-2226382829) at 2024-08-07 04:54 PM PDT -Anahisv23,2024-08-07T23:59:40Z,- Anahisv23 commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2274553284) at 2024-08-07 04:59 PM PDT -Anahisv23,2024-08-08T02:10:21Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274807093) at 2024-08-07 07:10 PM PDT -Anahisv23,2024-08-08T03:24:33Z,- Anahisv23 commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2274879420) at 2024-08-07 08:24 PM PDT -Anahisv23,2024-08-08T04:13:31Z,- Anahisv23 submitted pull request review: [7244](https://github.com/hackforla/website/pull/7244#pullrequestreview-2226825828) at 2024-08-07 09:13 PM PDT -Anahisv23,2024-08-08T07:21:26Z,- Anahisv23 submitted pull request review: [7244](https://github.com/hackforla/website/pull/7244#pullrequestreview-2227059731) at 2024-08-08 12:21 AM PDT -Anahisv23,2024-08-08T21:04:09Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2276648724) at 2024-08-08 02:04 PM PDT -Anahisv23,2024-08-08T21:30:19Z,- Anahisv23 submitted pull request review: [7243](https://github.com/hackforla/website/pull/7243#pullrequestreview-2228900529) at 2024-08-08 02:30 PM PDT -Anahisv23,2024-08-08T21:54:25Z,- Anahisv23 commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2276733416) at 2024-08-08 02:54 PM PDT -Anahisv23,2024-08-14T19:46:21Z,- Anahisv23 commented on pull request: [7285](https://github.com/hackforla/website/pull/7285#issuecomment-2289739992) at 2024-08-14 12:46 PM PDT -Anahisv23,2024-08-14T21:15:34Z,- Anahisv23 submitted pull request review: [7285](https://github.com/hackforla/website/pull/7285#pullrequestreview-2239211866) at 2024-08-14 02:15 PM PDT -Anahisv23,2024-08-15T17:12:06Z,- Anahisv23 commented on pull request: [7293](https://github.com/hackforla/website/pull/7293#issuecomment-2291744162) at 2024-08-15 10:12 AM PDT -Anahisv23,2024-08-15T20:44:59Z,- Anahisv23 submitted pull request review: [7293](https://github.com/hackforla/website/pull/7293#pullrequestreview-2241295981) at 2024-08-15 01:44 PM PDT -Anahisv23,2024-08-21T20:53:09Z,- Anahisv23 commented on pull request: [7328](https://github.com/hackforla/website/pull/7328#issuecomment-2302994203) at 2024-08-21 01:53 PM PDT -Anahisv23,2024-08-21T21:12:54Z,- Anahisv23 submitted pull request review: [7328](https://github.com/hackforla/website/pull/7328#pullrequestreview-2251954447) at 2024-08-21 02:12 PM PDT -Andan-Eddy,2021-08-16T16:54:04Z,- Andan-Eddy opened issue: [2122](https://github.com/hackforla/website/issues/2122) at 2021-08-16 09:54 AM PDT -Andan-Eddy,2021-08-16T16:58:05Z,- Andan-Eddy commented on issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-08-16 09:58 AM PDT -Andan-Eddy,2021-08-16T18:52:53Z,- Andan-Eddy assigned to issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-08-16 11:52 AM PDT -Andan-Eddy,2021-09-07T00:11:34Z,- Andan-Eddy unassigned from issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-09-06 05:11 PM PDT -arcan9,4066,SKILLS ISSUE -arcan9,2023-03-01T04:08:06Z,- arcan9 opened issue: [4066](https://github.com/hackforla/website/issues/4066) at 2023-02-28 08:08 PM PST -arcan9,2023-03-01T04:24:24Z,- arcan9 assigned to issue: [4066](https://github.com/hackforla/website/issues/4066) at 2023-02-28 08:24 PM PST -arcan9,2023-03-09T00:23:29Z,- arcan9 assigned to issue: [4026](https://github.com/hackforla/website/issues/4026#issuecomment-1454306318) at 2023-03-08 04:23 PM PST -arcan9,2023-03-09T00:25:46Z,- arcan9 commented on issue: [4026](https://github.com/hackforla/website/issues/4026#issuecomment-1461076990) at 2023-03-08 04:25 PM PST -arcan9,2023-03-09T00:27:42Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1461078481) at 2023-03-08 04:27 PM PST -arcan9,2023-03-09T06:36:33Z,- arcan9 opened pull request: [4139](https://github.com/hackforla/website/pull/4139) at 2023-03-08 10:36 PM PST -arcan9,2023-03-12T06:50:03Z,- arcan9 pull request merged: [4139](https://github.com/hackforla/website/pull/4139#event-8725152630) at 2023-03-11 11:50 PM PDT -arcan9,2023-03-12T22:56:56Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1465322151) at 2023-03-12 03:56 PM PDT -arcan9,2023-03-12T23:11:48Z,- arcan9 assigned to issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1465104338) at 2023-03-12 04:11 PM PDT -arcan9,2023-03-12T23:17:05Z,- arcan9 commented on issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1465326864) at 2023-03-12 04:17 PM PDT -arcan9,2023-03-13T04:16:38Z,- arcan9 opened pull request: [4156](https://github.com/hackforla/website/pull/4156) at 2023-03-12 09:16 PM PDT -arcan9,2023-03-14T07:43:44Z,- arcan9 commented on pull request: [4175](https://github.com/hackforla/website/pull/4175#issuecomment-1467560222) at 2023-03-14 12:43 AM PDT -arcan9,2023-03-14T08:55:44Z,- arcan9 submitted pull request review: [4175](https://github.com/hackforla/website/pull/4175#pullrequestreview-1338758198) at 2023-03-14 01:55 AM PDT -arcan9,2023-03-14T18:34:11Z,- arcan9 commented on pull request: [4175](https://github.com/hackforla/website/pull/4175#issuecomment-1468630062) at 2023-03-14 11:34 AM PDT -arcan9,2023-03-15T05:07:06Z,- arcan9 pull request merged: [4156](https://github.com/hackforla/website/pull/4156#event-8751078721) at 2023-03-14 10:07 PM PDT -arcan9,2023-03-15T05:52:12Z,- arcan9 assigned to issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1461226654) at 2023-03-14 10:52 PM PDT -arcan9,2023-03-15T05:54:26Z,- arcan9 commented on issue: [3756](https://github.com/hackforla/website/issues/3756#issuecomment-1469384105) at 2023-03-14 10:54 PM PDT -arcan9,2023-03-17T21:09:27Z,- arcan9 commented on pull request: [4202](https://github.com/hackforla/website/pull/4202#issuecomment-1474405422) at 2023-03-17 02:09 PM PDT -arcan9,2023-03-18T01:13:49Z,- arcan9 commented on pull request: [4204](https://github.com/hackforla/website/pull/4204#issuecomment-1474559081) at 2023-03-17 06:13 PM PDT -arcan9,2023-03-18T02:07:43Z,- arcan9 opened pull request: [4205](https://github.com/hackforla/website/pull/4205) at 2023-03-17 07:07 PM PDT -arcan9,2023-03-18T02:32:43Z,- arcan9 submitted pull request review: [4202](https://github.com/hackforla/website/pull/4202#pullrequestreview-1346869924) at 2023-03-17 07:32 PM PDT -arcan9,2023-03-18T02:46:23Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1474628085) at 2023-03-17 07:46 PM PDT -arcan9,2023-03-19T03:01:56Z,- arcan9 submitted pull request review: [4204](https://github.com/hackforla/website/pull/4204#pullrequestreview-1347348241) at 2023-03-18 08:01 PM PDT -arcan9,2023-03-19T20:20:12Z,- arcan9 commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1475386199) at 2023-03-19 01:20 PM PDT -arcan9,2023-03-20T04:25:28Z,- arcan9 pull request merged: [4205](https://github.com/hackforla/website/pull/4205#event-8790084115) at 2023-03-19 09:25 PM PDT -arcan9,2023-03-21T19:05:43Z,- arcan9 commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478440424) at 2023-03-21 12:05 PM PDT -arcan9,2023-03-21T20:02:59Z,- arcan9 assigned to issue: [4183](https://github.com/hackforla/website/issues/4183) at 2023-03-21 01:02 PM PDT -arcan9,2023-03-21T20:05:34Z,- arcan9 commented on issue: [4183](https://github.com/hackforla/website/issues/4183#issuecomment-1478512492) at 2023-03-21 01:05 PM PDT -arcan9,2023-03-21T21:49:20Z,- arcan9 submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1351434224) at 2023-03-21 02:49 PM PDT -arcan9,2023-03-23T05:19:01Z,- arcan9 commented on pull request: [4234](https://github.com/hackforla/website/pull/4234#issuecomment-1480617035) at 2023-03-22 10:19 PM PDT -arcan9,2023-03-23T15:59:03Z,- arcan9 commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1481454801) at 2023-03-23 08:59 AM PDT -arcan9,2023-03-23T20:51:06Z,- arcan9 submitted pull request review: [4234](https://github.com/hackforla/website/pull/4234#pullrequestreview-1355589496) at 2023-03-23 01:51 PM PDT -arcan9,2023-03-23T22:40:27Z,- arcan9 submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1355765204) at 2023-03-23 03:40 PM PDT -arcan9,2023-03-23T23:58:09Z,- arcan9 commented on pull request: [4265](https://github.com/hackforla/website/pull/4265#issuecomment-1482063212) at 2023-03-23 04:58 PM PDT -arcan9,2023-03-24T00:12:37Z,- arcan9 submitted pull request review: [4265](https://github.com/hackforla/website/pull/4265#pullrequestreview-1355829818) at 2023-03-23 05:12 PM PDT -arcan9,2023-03-24T03:40:48Z,- arcan9 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482204942) at 2023-03-23 08:40 PM PDT -arcan9,2023-03-24T05:08:25Z,- arcan9 opened pull request: [4274](https://github.com/hackforla/website/pull/4274) at 2023-03-23 10:08 PM PDT -arcan9,2023-03-24T05:20:34Z,- arcan9 commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1482267542) at 2023-03-23 10:20 PM PDT -arcan9,2023-03-24T05:27:01Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1482271480) at 2023-03-23 10:27 PM PDT -arcan9,2023-03-24T15:25:26Z,- arcan9 commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1482991084) at 2023-03-24 08:25 AM PDT -arcan9,2023-03-25T01:33:23Z,- arcan9 commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1483665943) at 2023-03-24 06:33 PM PDT -arcan9,2023-03-25T01:35:41Z,- arcan9 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483666659) at 2023-03-24 06:35 PM PDT -arcan9,2023-03-25T01:57:43Z,- arcan9 submitted pull request review: [4275](https://github.com/hackforla/website/pull/4275#pullrequestreview-1357705697) at 2023-03-24 06:57 PM PDT -arcan9,2023-03-25T08:31:55Z,- arcan9 submitted pull request review: [4275](https://github.com/hackforla/website/pull/4275#pullrequestreview-1357797753) at 2023-03-25 01:31 AM PDT -arcan9,2023-03-25T08:56:21Z,- arcan9 submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1357802058) at 2023-03-25 01:56 AM PDT -arcan9,2023-03-25T09:05:54Z,- arcan9 submitted pull request review: [4267](https://github.com/hackforla/website/pull/4267#pullrequestreview-1357803007) at 2023-03-25 02:05 AM PDT -arcan9,2023-03-25T09:15:26Z,- arcan9 submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1357804040) at 2023-03-25 02:15 AM PDT -arcan9,2023-03-25T16:40:16Z,- arcan9 submitted pull request review: [4288](https://github.com/hackforla/website/pull/4288#pullrequestreview-1357863760) at 2023-03-25 09:40 AM PDT -arcan9,2023-03-25T16:43:45Z,- arcan9 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483866658) at 2023-03-25 09:43 AM PDT -arcan9,2023-03-25T16:44:50Z,- arcan9 submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1357864263) at 2023-03-25 09:44 AM PDT -arcan9,2023-03-29T17:05:22Z,- arcan9 commented on pull request: [4340](https://github.com/hackforla/website/pull/4340#issuecomment-1488979710) at 2023-03-29 10:05 AM PDT -arcan9,2023-03-29T18:37:08Z,- arcan9 commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1489111152) at 2023-03-29 11:37 AM PDT -arcan9,2023-03-31T02:21:02Z,- arcan9 submitted pull request review: [4340](https://github.com/hackforla/website/pull/4340#pullrequestreview-1366160173) at 2023-03-30 07:21 PM PDT -arcan9,2023-03-31T02:38:07Z,- arcan9 commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1491211674) at 2023-03-30 07:38 PM PDT -arcan9,2023-03-31T10:13:58Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1491681595) at 2023-03-31 03:13 AM PDT -arcan9,2023-04-01T17:18:04Z,- arcan9 commented on pull request: [4359](https://github.com/hackforla/website/pull/4359#issuecomment-1493050662) at 2023-04-01 10:18 AM PDT -arcan9,2023-04-01T21:58:51Z,- arcan9 submitted pull request review: [4359](https://github.com/hackforla/website/pull/4359#pullrequestreview-1367947858) at 2023-04-01 02:58 PM PDT -arcan9,2023-04-01T22:00:59Z,- arcan9 commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1493137020) at 2023-04-01 03:00 PM PDT -arcan9,2023-04-03T04:30:28Z,- arcan9 pull request merged: [4274](https://github.com/hackforla/website/pull/4274#event-8908289856) at 2023-04-02 09:30 PM PDT -arcan9,2023-04-03T21:15:30Z,- arcan9 commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1494990407) at 2023-04-03 02:15 PM PDT -arcan9,2023-04-05T02:20:36Z,- arcan9 submitted pull request review: [4386](https://github.com/hackforla/website/pull/4386#pullrequestreview-1372039371) at 2023-04-04 07:20 PM PDT -arcan9,2023-04-05T02:26:41Z,- arcan9 commented on pull request: [4408](https://github.com/hackforla/website/pull/4408#issuecomment-1496833123) at 2023-04-04 07:26 PM PDT -arcan9,2023-04-05T02:35:07Z,- arcan9 commented on pull request: [4424](https://github.com/hackforla/website/pull/4424#issuecomment-1496838781) at 2023-04-04 07:35 PM PDT -arcan9,2023-04-06T03:50:29Z,- arcan9 submitted pull request review: [4424](https://github.com/hackforla/website/pull/4424#pullrequestreview-1374012995) at 2023-04-05 08:50 PM PDT -arcan9,2023-04-06T17:21:45Z,- arcan9 commented on pull request: [4428](https://github.com/hackforla/website/pull/4428#issuecomment-1499385801) at 2023-04-06 10:21 AM PDT -arcan9,2023-04-06T17:23:00Z,- arcan9 commented on pull request: [4430](https://github.com/hackforla/website/pull/4430#issuecomment-1499390181) at 2023-04-06 10:23 AM PDT -arcan9,2023-04-06T20:57:43Z,- arcan9 submitted pull request review: [4428](https://github.com/hackforla/website/pull/4428#pullrequestreview-1375566933) at 2023-04-06 01:57 PM PDT -arcan9,2023-04-06T21:03:15Z,- arcan9 submitted pull request review: [4430](https://github.com/hackforla/website/pull/4430#pullrequestreview-1375572581) at 2023-04-06 02:03 PM PDT -arcan9,2023-04-07T01:18:32Z,- arcan9 commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1499816892) at 2023-04-06 06:18 PM PDT -arcan9,2023-04-07T23:16:40Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1500717367) at 2023-04-07 04:16 PM PDT -arcan9,2023-04-08T22:40:59Z,- arcan9 submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1376812998) at 2023-04-08 03:40 PM PDT -arcan9,2023-04-08T22:46:19Z,- arcan9 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1500991744) at 2023-04-08 03:46 PM PDT -arcan9,2023-04-08T23:59:50Z,- arcan9 submitted pull request review: [4435](https://github.com/hackforla/website/pull/4435#pullrequestreview-1376817446) at 2023-04-08 04:59 PM PDT -arcan9,2023-04-09T18:29:53Z,- arcan9 commented on pull request: [4453](https://github.com/hackforla/website/pull/4453#issuecomment-1501187287) at 2023-04-09 11:29 AM PDT -arcan9,2023-04-10T04:19:15Z,- arcan9 submitted pull request review: [4453](https://github.com/hackforla/website/pull/4453#pullrequestreview-1377061121) at 2023-04-09 09:19 PM PDT -arcan9,2023-04-10T20:52:30Z,- arcan9 submitted pull request review: [4435](https://github.com/hackforla/website/pull/4435#pullrequestreview-1378119531) at 2023-04-10 01:52 PM PDT -arcan9,2023-04-11T17:45:12Z,- arcan9 commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1503834970) at 2023-04-11 10:45 AM PDT -arcan9,2023-04-11T19:28:26Z,- arcan9 submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1379937468) at 2023-04-11 12:28 PM PDT -arcan9,2023-04-11T19:31:08Z,- arcan9 commented on pull request: [4467](https://github.com/hackforla/website/pull/4467#issuecomment-1503982303) at 2023-04-11 12:31 PM PDT -arcan9,2023-04-12T03:15:35Z,- arcan9 opened issue: [4488](https://github.com/hackforla/website/issues/4488) at 2023-04-11 08:15 PM PDT -arcan9,2023-04-12T18:23:24Z,- arcan9 submitted pull request review: [4467](https://github.com/hackforla/website/pull/4467#pullrequestreview-1381876085) at 2023-04-12 11:23 AM PDT -arcan9,2023-04-13T04:25:34Z,- arcan9 opened pull request: [4496](https://github.com/hackforla/website/pull/4496) at 2023-04-12 09:25 PM PDT -arcan9,2023-04-14T21:49:01Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1509318954) at 2023-04-14 02:49 PM PDT -arcan9,2023-04-21T23:52:01Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1518428581) at 2023-04-21 04:52 PM PDT -arcan9,2023-05-02T22:43:42Z,- arcan9 commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1532246207) at 2023-05-02 03:43 PM PDT -arcan9,2023-05-02T22:43:42Z,- arcan9 pull request closed w/o merging: [4496](https://github.com/hackforla/website/pull/4496#event-9150386948) at 2023-05-02 03:43 PM PDT -arcan9,2023-05-02T22:49:40Z,- arcan9 commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1532249950) at 2023-05-02 03:49 PM PDT -arpitapandya,3152,SKILLS ISSUE -arpitapandya,2022-05-17T03:05:23Z,- arpitapandya opened issue: [3151](https://github.com/hackforla/website/issues/3151) at 2022-05-16 08:05 PM PDT -arpitapandya,2022-05-17T03:13:24Z,- arpitapandya opened issue: [3152](https://github.com/hackforla/website/issues/3152) at 2022-05-16 08:13 PM PDT -arpitapandya,2022-05-18T03:14:48Z,- arpitapandya opened issue: [3155](https://github.com/hackforla/website/issues/3155) at 2022-05-17 08:14 PM PDT -arpitapandya,2022-05-18T03:24:41Z,- arpitapandya closed issue as completed: [3155](https://github.com/hackforla/website/issues/3155#event-6628886557) at 2022-05-17 08:24 PM PDT -arpitapandya,2022-05-18T03:24:59Z,- arpitapandya closed issue as completed: [3151](https://github.com/hackforla/website/issues/3151#event-6628887594) at 2022-05-17 08:24 PM PDT -arpitapandya,2022-05-25T01:55:08Z,- arpitapandya assigned to issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1135330178) at 2022-05-24 06:55 PM PDT -arpitapandya,2022-05-28T22:24:13Z,- arpitapandya assigned to issue: [2878](https://github.com/hackforla/website/issues/2878#issuecomment-1049097964) at 2022-05-28 03:24 PM PDT -arpitapandya,2022-05-29T17:23:19Z,- arpitapandya commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1140491243) at 2022-05-29 10:23 AM PDT -arpitapandya,2022-05-31T15:37:51Z,- arpitapandya opened pull request: [3185](https://github.com/hackforla/website/pull/3185) at 2022-05-31 08:37 AM PDT -arpitapandya,2022-06-01T01:23:07Z,- arpitapandya closed issue as completed: [3152](https://github.com/hackforla/website/issues/3152#event-6714149307) at 2022-05-31 06:23 PM PDT -arpitapandya,2022-06-01T01:32:58Z,- arpitapandya closed issue by PR 3185: [2878](https://github.com/hackforla/website/issues/2878#event-6714189188) at 2022-05-31 06:32 PM PDT -arpitapandya,2022-06-04T17:27:37Z,- arpitapandya reopened issue: [3152](https://github.com/hackforla/website/issues/3152#event-6714149307) at 2022-06-04 10:27 AM PDT -arpitapandya,2022-06-04T17:28:24Z,- arpitapandya closed issue as completed: [3152](https://github.com/hackforla/website/issues/3152#event-6742261294) at 2022-06-04 10:28 AM PDT -arpitapandya,2022-06-04T17:43:14Z,- arpitapandya assigned to issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1145860440) at 2022-06-04 10:43 AM PDT -arpitapandya,2022-06-04T20:19:02Z,- arpitapandya commented on issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1146679677) at 2022-06-04 01:19 PM PDT -arpitapandya,2022-06-05T16:23:49Z,- arpitapandya opened pull request: [3221](https://github.com/hackforla/website/pull/3221) at 2022-06-05 09:23 AM PDT -arpitapandya,2022-06-05T16:59:29Z,- arpitapandya assigned to issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1145850932) at 2022-06-05 09:59 AM PDT -arpitapandya,2022-06-05T21:54:57Z,- arpitapandya unassigned from issue: [3210](https://github.com/hackforla/website/issues/3210#issuecomment-1146889828) at 2022-06-05 02:54 PM PDT -arpitapandya,2022-06-06T14:53:33Z,- arpitapandya commented on issue: [3216](https://github.com/hackforla/website/issues/3216#issuecomment-1147538130) at 2022-06-06 07:53 AM PDT -arpitapandya,2022-06-06T20:25:48Z,- arpitapandya pull request merged: [3221](https://github.com/hackforla/website/pull/3221#event-6755927925) at 2022-06-06 01:25 PM PDT -arpitapandya,2022-06-06T20:25:59Z,- arpitapandya reopened pull request: [3221](https://github.com/hackforla/website/pull/3221#event-6755927925) at 2022-06-06 01:25 PM PDT -arpitapandya,2022-06-07T01:20:19Z,- arpitapandya pull request merged: [3221](https://github.com/hackforla/website/pull/3221#event-6757146781) at 2022-06-06 06:20 PM PDT -arpitapandya,2022-06-07T01:34:06Z,- arpitapandya pull request merged: [3185](https://github.com/hackforla/website/pull/3185#event-6757189268) at 2022-06-06 06:34 PM PDT -arpitapandya,2022-06-14T20:54:16Z,- arpitapandya assigned to issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1153226022) at 2022-06-14 01:54 PM PDT -arpitapandya,2022-06-14T20:59:16Z,- arpitapandya commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1155707347) at 2022-06-14 01:59 PM PDT -arpitapandya,2022-06-14T23:26:10Z,- arpitapandya unassigned from issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1155803187) at 2022-06-14 04:26 PM PDT -arpitapandya,2022-06-20T00:42:56Z,- arpitapandya assigned to issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1133414539) at 2022-06-19 05:42 PM PDT -arpitapandya,2022-06-20T00:43:32Z,- arpitapandya commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1159848519) at 2022-06-19 05:43 PM PDT -arpitapandya,2022-07-15T14:19:42Z,- arpitapandya commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1185593640) at 2022-07-15 07:19 AM PDT -arpitapandya,2022-07-15T14:32:02Z,- arpitapandya assigned to issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1179635333) at 2022-07-15 07:32 AM PDT -arpitapandya,2022-07-15T14:34:20Z,- arpitapandya commented on issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1185607241) at 2022-07-15 07:34 AM PDT -arpitapandya,2022-07-15T19:15:32Z,- arpitapandya opened pull request: [3374](https://github.com/hackforla/website/pull/3374) at 2022-07-15 12:15 PM PDT -arpitapandya,2022-07-16T22:17:48Z,- arpitapandya opened pull request: [3375](https://github.com/hackforla/website/pull/3375) at 2022-07-16 03:17 PM PDT -arpitapandya,2022-07-16T23:07:33Z,- arpitapandya commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1186321107) at 2022-07-16 04:07 PM PDT -arpitapandya,2022-07-16T23:09:35Z,- arpitapandya commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1186321596) at 2022-07-16 04:09 PM PDT -arpitapandya,2022-07-16T23:17:35Z,- arpitapandya closed issue as completed: [3152](https://github.com/hackforla/website/issues/3152#event-7006648755) at 2022-07-16 04:17 PM PDT -arpitapandya,2022-07-18T15:39:59Z,- arpitapandya pull request merged: [3375](https://github.com/hackforla/website/pull/3375#event-7013231702) at 2022-07-18 08:39 AM PDT -arpitapandya,2022-07-18T18:53:22Z,- arpitapandya opened pull request: [3385](https://github.com/hackforla/website/pull/3385) at 2022-07-18 11:53 AM PDT -arpitapandya,2022-07-18T19:17:07Z,- arpitapandya commented on issue: [3342](https://github.com/hackforla/website/issues/3342#issuecomment-1188162260) at 2022-07-18 12:17 PM PDT -arpitapandya,2022-07-18T19:31:45Z,- arpitapandya assigned to issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1164984752) at 2022-07-18 12:31 PM PDT -arpitapandya,2022-07-18T19:32:43Z,- arpitapandya commented on issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1188215836) at 2022-07-18 12:32 PM PDT -arpitapandya,2022-07-19T16:48:29Z,- arpitapandya opened pull request: [3391](https://github.com/hackforla/website/pull/3391) at 2022-07-19 09:48 AM PDT -arpitapandya,2022-07-19T16:49:24Z,- arpitapandya pull request closed w/o merging: [3391](https://github.com/hackforla/website/pull/3391#event-7022397733) at 2022-07-19 09:49 AM PDT -arpitapandya,2022-07-19T18:56:18Z,- arpitapandya opened pull request: [3392](https://github.com/hackforla/website/pull/3392) at 2022-07-19 11:56 AM PDT -arpitapandya,2022-07-19T19:05:00Z,- arpitapandya pull request closed w/o merging: [3392](https://github.com/hackforla/website/pull/3392#event-7023231694) at 2022-07-19 12:05 PM PDT -arpitapandya,2022-07-19T19:08:49Z,- arpitapandya opened pull request: [3393](https://github.com/hackforla/website/pull/3393) at 2022-07-19 12:08 PM PDT -arpitapandya,2022-07-19T19:16:10Z,- arpitapandya commented on issue: [3296](https://github.com/hackforla/website/issues/3296#issuecomment-1189460232) at 2022-07-19 12:16 PM PDT -arpitapandya,2022-07-19T19:37:18Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189477833) at 2022-07-19 12:37 PM PDT -arpitapandya,2022-07-19T20:57:13Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189542751) at 2022-07-19 01:57 PM PDT -arpitapandya,2022-07-19T21:10:20Z,- arpitapandya assigned to issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1177011694) at 2022-07-19 02:10 PM PDT -arpitapandya,2022-07-19T21:11:28Z,- arpitapandya commented on issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1189553922) at 2022-07-19 02:11 PM PDT -arpitapandya,2022-07-19T21:32:59Z,- arpitapandya opened pull request: [3394](https://github.com/hackforla/website/pull/3394) at 2022-07-19 02:32 PM PDT -arpitapandya,2022-07-19T21:34:54Z,- arpitapandya commented on issue: [3337](https://github.com/hackforla/website/issues/3337#issuecomment-1189573575) at 2022-07-19 02:34 PM PDT -arpitapandya,2022-07-19T22:20:43Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189608220) at 2022-07-19 03:20 PM PDT -arpitapandya,2022-07-20T18:23:26Z,- arpitapandya commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190611368) at 2022-07-20 11:23 AM PDT -arpitapandya,2022-07-20T23:28:33Z,- arpitapandya commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190868544) at 2022-07-20 04:28 PM PDT -arpitapandya,2022-07-20T23:30:22Z,- arpitapandya commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190869596) at 2022-07-20 04:30 PM PDT -arpitapandya,2022-07-21T17:56:45Z,- arpitapandya pull request merged: [3394](https://github.com/hackforla/website/pull/3394#event-7040384446) at 2022-07-21 10:56 AM PDT -arpitapandya,2022-07-22T14:51:23Z,- arpitapandya pull request merged: [3393](https://github.com/hackforla/website/pull/3393#event-7047132854) at 2022-07-22 07:51 AM PDT -arpitapandya,2022-07-22T20:09:00Z,- arpitapandya commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1192899931) at 2022-07-22 01:09 PM PDT -arpitapandya,2022-07-24T23:31:52Z,- arpitapandya commented on pull request: [3425](https://github.com/hackforla/website/pull/3425#issuecomment-1193417394) at 2022-07-24 04:31 PM PDT -arpitapandya,2022-07-25T16:53:05Z,- arpitapandya submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1049775930) at 2022-07-25 09:53 AM PDT -arpitapandya,2022-07-25T16:54:38Z,- arpitapandya commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194348326) at 2022-07-25 09:54 AM PDT -arpitapandya,2022-07-25T19:52:04Z,- arpitapandya commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194549494) at 2022-07-25 12:52 PM PDT -arpitapandya,2022-07-25T19:56:08Z,- arpitapandya commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194553558) at 2022-07-25 12:56 PM PDT -arpitapandya,2022-07-25T20:07:55Z,- arpitapandya pull request merged: [3385](https://github.com/hackforla/website/pull/3385#event-7059399237) at 2022-07-25 01:07 PM PDT -arpitapandya,2022-07-26T17:54:23Z,- arpitapandya submitted pull request review: [3427](https://github.com/hackforla/website/pull/3427#pullrequestreview-1051401975) at 2022-07-26 10:54 AM PDT -arpitapandya,2022-07-26T18:09:16Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1195816389) at 2022-07-26 11:09 AM PDT -arpitapandya,2022-07-27T00:31:22Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1196139826) at 2022-07-26 05:31 PM PDT -arpitapandya,2022-07-27T00:35:30Z,- arpitapandya commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1196141745) at 2022-07-26 05:35 PM PDT -arpitapandya,2022-07-27T02:50:04Z,- arpitapandya assigned to issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1001077082) at 2022-07-26 07:50 PM PDT -arpitapandya,2022-07-27T02:53:39Z,- arpitapandya closed issue by PR 3385: [3342](https://github.com/hackforla/website/issues/3342#event-7069336597) at 2022-07-26 07:53 PM PDT -arpitapandya,2022-07-27T02:54:35Z,- arpitapandya closed issue by PR 3394: [3337](https://github.com/hackforla/website/issues/3337#event-7069339382) at 2022-07-26 07:54 PM PDT -arpitapandya,2022-07-27T02:55:23Z,- arpitapandya closed issue by PR 3393: [3296](https://github.com/hackforla/website/issues/3296#event-7069342022) at 2022-07-26 07:55 PM PDT -arpitapandya,2022-07-27T23:31:11Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197486141) at 2022-07-27 04:31 PM PDT -arpitapandya,2022-07-27T23:36:28Z,- arpitapandya commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197488981) at 2022-07-27 04:36 PM PDT -arpitapandya,2022-07-28T01:14:52Z,- arpitapandya commented on pull request: [3435](https://github.com/hackforla/website/pull/3435#issuecomment-1197540367) at 2022-07-27 06:14 PM PDT -arpitapandya,2022-07-28T01:29:14Z,- arpitapandya submitted pull request review: [3435](https://github.com/hackforla/website/pull/3435#pullrequestreview-1053384607) at 2022-07-27 06:29 PM PDT -arpitapandya,2022-07-28T14:58:39Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1198265615) at 2022-07-28 07:58 AM PDT -arpitapandya,2022-07-28T15:05:30Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054290191) at 2022-07-28 08:05 AM PDT -arpitapandya,2022-07-28T18:37:49Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054583664) at 2022-07-28 11:37 AM PDT -arpitapandya,2022-07-28T18:38:18Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054584189) at 2022-07-28 11:38 AM PDT -arpitapandya,2022-07-28T18:57:36Z,- arpitapandya submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1054605483) at 2022-07-28 11:57 AM PDT -arpitapandya,2022-07-28T20:12:58Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1198587100) at 2022-07-28 01:12 PM PDT -arpitapandya,2022-07-28T20:19:51Z,- arpitapandya commented on pull request: [3439](https://github.com/hackforla/website/pull/3439#issuecomment-1198592615) at 2022-07-28 01:19 PM PDT -arpitapandya,2022-07-28T20:26:46Z,- arpitapandya submitted pull request review: [3439](https://github.com/hackforla/website/pull/3439#pullrequestreview-1054699478) at 2022-07-28 01:26 PM PDT -arpitapandya,2022-07-28T20:41:44Z,- arpitapandya commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1198611620) at 2022-07-28 01:41 PM PDT -arpitapandya,2022-07-29T03:36:56Z,- arpitapandya commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198845935) at 2022-07-28 08:36 PM PDT -arpitapandya,2022-07-29T14:25:38Z,- arpitapandya commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1199386572) at 2022-07-29 07:25 AM PDT -arpitapandya,2022-07-29T14:37:29Z,- arpitapandya submitted pull request review: [3442](https://github.com/hackforla/website/pull/3442#pullrequestreview-1055666268) at 2022-07-29 07:37 AM PDT -arpitapandya,2022-07-29T14:45:31Z,- arpitapandya commented on pull request: [3443](https://github.com/hackforla/website/pull/3443#issuecomment-1199435624) at 2022-07-29 07:45 AM PDT -arpitapandya,2022-07-29T15:00:10Z,- arpitapandya submitted pull request review: [3443](https://github.com/hackforla/website/pull/3443#pullrequestreview-1055696600) at 2022-07-29 08:00 AM PDT -arpitapandya,2022-07-29T15:43:36Z,- arpitapandya commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1199574118) at 2022-07-29 08:43 AM PDT -arpitapandya,2022-07-29T16:32:24Z,- arpitapandya submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1055813574) at 2022-07-29 09:32 AM PDT -arpitapandya,2022-07-30T13:33:57Z,- arpitapandya commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200158900) at 2022-07-30 06:33 AM PDT -arpitapandya,2022-07-30T18:13:03Z,- arpitapandya submitted pull request review: [3444](https://github.com/hackforla/website/pull/3444#pullrequestreview-1056466053) at 2022-07-30 11:13 AM PDT -arpitapandya,2022-07-30T22:40:19Z,- arpitapandya commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200306297) at 2022-07-30 03:40 PM PDT -arpitapandya,2022-07-30T23:12:26Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1200310515) at 2022-07-30 04:12 PM PDT -arpitapandya,2022-07-30T23:19:25Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1200311379) at 2022-07-30 04:19 PM PDT -arpitapandya,2022-08-03T01:56:03Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1203394978) at 2022-08-02 06:56 PM PDT -arpitapandya,2022-08-03T13:57:06Z,- arpitapandya unassigned from issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1001077082) at 2022-08-03 06:57 AM PDT -arpitapandya,2022-08-03T21:02:00Z,- arpitapandya assigned to issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1198689313) at 2022-08-03 02:02 PM PDT -arpitapandya,2022-08-03T21:20:28Z,- arpitapandya commented on issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1204496085) at 2022-08-03 02:20 PM PDT -arpitapandya,2022-08-04T03:28:03Z,- arpitapandya opened pull request: [3450](https://github.com/hackforla/website/pull/3450) at 2022-08-03 08:28 PM PDT -arpitapandya,2022-08-04T03:40:32Z,- arpitapandya commented on issue: [3440](https://github.com/hackforla/website/issues/3440#issuecomment-1204719722) at 2022-08-03 08:40 PM PDT -arpitapandya,2022-08-05T02:33:52Z,- arpitapandya pull request merged: [3450](https://github.com/hackforla/website/pull/3450#event-7132600006) at 2022-08-04 07:33 PM PDT -arpitapandya,2022-08-05T02:34:17Z,- arpitapandya commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1205975588) at 2022-08-04 07:34 PM PDT -arpitapandya,2022-08-05T03:29:49Z,- arpitapandya assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-08-04 08:29 PM PDT -arpitapandya,2022-08-05T03:33:54Z,- arpitapandya unassigned from issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-08-04 08:33 PM PDT -arpitapandya,2022-08-05T03:36:59Z,- arpitapandya assigned to issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1190501160) at 2022-08-04 08:36 PM PDT -arpitapandya,2022-08-05T03:38:25Z,- arpitapandya commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1206007196) at 2022-08-04 08:38 PM PDT -arpitapandya,2022-08-05T06:09:19Z,- arpitapandya opened pull request: [3451](https://github.com/hackforla/website/pull/3451) at 2022-08-04 11:09 PM PDT -arpitapandya,2022-08-05T06:14:41Z,- arpitapandya commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1206082772) at 2022-08-04 11:14 PM PDT -arpitapandya,2022-08-05T06:27:31Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1206090406) at 2022-08-04 11:27 PM PDT -arpitapandya,2022-08-09T02:39:16Z,- arpitapandya commented on pull request: [3455](https://github.com/hackforla/website/pull/3455#issuecomment-1208847032) at 2022-08-08 07:39 PM PDT -arpitapandya,2022-08-10T01:38:47Z,- arpitapandya commented on pull request: [3457](https://github.com/hackforla/website/pull/3457#issuecomment-1210054846) at 2022-08-09 06:38 PM PDT -arpitapandya,2022-08-10T01:39:18Z,- arpitapandya commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1210055059) at 2022-08-09 06:39 PM PDT -arpitapandya,2022-08-10T01:57:50Z,- arpitapandya submitted pull request review: [3454](https://github.com/hackforla/website/pull/3454#pullrequestreview-1067561652) at 2022-08-09 06:57 PM PDT -arpitapandya,2022-08-10T02:27:05Z,- arpitapandya commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1210077343) at 2022-08-09 07:27 PM PDT -arpitapandya,2022-08-10T20:14:42Z,- arpitapandya submitted pull request review: [3457](https://github.com/hackforla/website/pull/3457#pullrequestreview-1068876276) at 2022-08-10 01:14 PM PDT -arpitapandya,2022-08-10T21:43:29Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1211310905) at 2022-08-10 02:43 PM PDT -arpitapandya,2022-08-11T04:09:53Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1211532682) at 2022-08-10 09:09 PM PDT -arpitapandya,2022-08-11T12:18:40Z,- arpitapandya commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1211912712) at 2022-08-11 05:18 AM PDT -arpitapandya,2022-08-12T03:23:23Z,- arpitapandya commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1212692423) at 2022-08-11 08:23 PM PDT -arpitapandya,2022-08-12T03:38:50Z,- arpitapandya submitted pull request review: [3462](https://github.com/hackforla/website/pull/3462#pullrequestreview-1070563055) at 2022-08-11 08:38 PM PDT -arpitapandya,2022-08-13T20:52:46Z,- arpitapandya submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1071996313) at 2022-08-13 01:52 PM PDT -arpitapandya,2022-08-13T23:22:19Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1214245305) at 2022-08-13 04:22 PM PDT -arpitapandya,2022-08-14T20:32:32Z,- arpitapandya commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214444180) at 2022-08-14 01:32 PM PDT -arpitapandya,2022-08-15T05:06:23Z,- arpitapandya commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214622334) at 2022-08-14 10:06 PM PDT -arpitapandya,2022-08-17T18:59:11Z,- arpitapandya opened pull request: [3472](https://github.com/hackforla/website/pull/3472) at 2022-08-17 11:59 AM PDT -arpitapandya,2022-08-17T19:52:50Z,- arpitapandya submitted pull request review: [3468](https://github.com/hackforla/website/pull/3468#pullrequestreview-1076321309) at 2022-08-17 12:52 PM PDT -arpitapandya,2022-08-17T19:53:53Z,- arpitapandya pull request closed w/o merging: [3472](https://github.com/hackforla/website/pull/3472#event-7208839527) at 2022-08-17 12:53 PM PDT -arpitapandya,2022-08-19T04:10:14Z,- arpitapandya commented on pull request: [3475](https://github.com/hackforla/website/pull/3475#issuecomment-1220227804) at 2022-08-18 09:10 PM PDT -arpitapandya,2022-08-19T04:12:15Z,- arpitapandya submitted pull request review: [3475](https://github.com/hackforla/website/pull/3475#pullrequestreview-1078253309) at 2022-08-18 09:12 PM PDT -arpitapandya,2022-08-28T17:03:19Z,- arpitapandya commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1229508544) at 2022-08-28 10:03 AM PDT -arpitapandya,2022-08-28T21:12:59Z,- arpitapandya closed issue by PR 3490: [2205](https://github.com/hackforla/website/issues/2205#event-7274007592) at 2022-08-28 02:12 PM PDT -arpitapandya,2022-08-28T22:15:35Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1229565187) at 2022-08-28 03:15 PM PDT -arpitapandya,2022-08-28T22:33:12Z,- arpitapandya commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229568108) at 2022-08-28 03:33 PM PDT -arpitapandya,2022-08-28T23:03:36Z,- arpitapandya submitted pull request review: [3483](https://github.com/hackforla/website/pull/3483#pullrequestreview-1087924443) at 2022-08-28 04:03 PM PDT -arpitapandya,2022-08-28T23:18:45Z,- arpitapandya closed issue by PR 3483: [2172](https://github.com/hackforla/website/issues/2172#event-7274130772) at 2022-08-28 04:18 PM PDT -arpitapandya,2022-08-29T14:20:42Z,- arpitapandya commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1230379918) at 2022-08-29 07:20 AM PDT -arpitapandya,2022-08-29T14:20:42Z,- arpitapandya pull request closed w/o merging: [3451](https://github.com/hackforla/website/pull/3451#event-7279221249) at 2022-08-29 07:20 AM PDT -arpitapandya,2022-08-29T14:58:45Z,- arpitapandya opened pull request: [3496](https://github.com/hackforla/website/pull/3496) at 2022-08-29 07:58 AM PDT -arpitapandya,2022-08-29T21:49:46Z,- arpitapandya commented on pull request: [3497](https://github.com/hackforla/website/pull/3497#issuecomment-1230899030) at 2022-08-29 02:49 PM PDT -arpitapandya,2022-08-29T22:03:08Z,- arpitapandya submitted pull request review: [3497](https://github.com/hackforla/website/pull/3497#pullrequestreview-1089405052) at 2022-08-29 03:03 PM PDT -arpitapandya,2022-08-29T22:03:55Z,- arpitapandya closed issue by PR 3497: [2199](https://github.com/hackforla/website/issues/2199#event-7282462601) at 2022-08-29 03:03 PM PDT -arpitapandya,2022-08-31T23:23:19Z,- arpitapandya commented on pull request: [3513](https://github.com/hackforla/website/pull/3513#issuecomment-1233545970) at 2022-08-31 04:23 PM PDT -arpitapandya,2022-08-31T23:31:57Z,- arpitapandya submitted pull request review: [3513](https://github.com/hackforla/website/pull/3513#pullrequestreview-1092615261) at 2022-08-31 04:31 PM PDT -arpitapandya,2022-09-01T00:39:18Z,- arpitapandya closed issue by PR 3513: [2822](https://github.com/hackforla/website/issues/2822#event-7300737386) at 2022-08-31 05:39 PM PDT -arpitapandya,2022-09-01T21:07:57Z,- arpitapandya commented on pull request: [3514](https://github.com/hackforla/website/pull/3514#issuecomment-1234784508) at 2022-09-01 02:07 PM PDT -arpitapandya,2022-09-01T21:10:33Z,- arpitapandya submitted pull request review: [3514](https://github.com/hackforla/website/pull/3514#pullrequestreview-1094063750) at 2022-09-01 02:10 PM PDT -arpitapandya,2022-09-02T02:53:22Z,- arpitapandya closed issue by PR 3514: [3101](https://github.com/hackforla/website/issues/3101#event-7309935083) at 2022-09-01 07:53 PM PDT -arpitapandya,2022-09-02T19:47:39Z,- arpitapandya pull request merged: [3496](https://github.com/hackforla/website/pull/3496#event-7315474606) at 2022-09-02 12:47 PM PDT -arpitapandya,2022-09-02T19:47:40Z,- arpitapandya closed issue by PR 3496: [2299](https://github.com/hackforla/website/issues/2299#event-7315474661) at 2022-09-02 12:47 PM PDT -arpitapandya,2022-09-02T19:57:43Z,- arpitapandya assigned to issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-917485924) at 2022-09-02 12:57 PM PDT -arpitapandya,2022-09-02T20:01:18Z,- arpitapandya commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1235853923) at 2022-09-02 01:01 PM PDT -arpitapandya,2022-09-02T23:20:45Z,- arpitapandya closed issue by PR 3516: [2825](https://github.com/hackforla/website/issues/2825#event-7316202671) at 2022-09-02 04:20 PM PDT -arpitapandya,2022-09-03T01:31:11Z,- arpitapandya commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236020227) at 2022-09-02 06:31 PM PDT -arpitapandya,2022-09-03T15:19:29Z,- arpitapandya commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1236141705) at 2022-09-03 08:19 AM PDT -arpitapandya,2022-09-03T15:23:24Z,- arpitapandya submitted pull request review: [3515](https://github.com/hackforla/website/pull/3515#pullrequestreview-1095523721) at 2022-09-03 08:23 AM PDT -arpitapandya,2022-09-03T15:27:22Z,- arpitapandya closed issue by PR 3515: [2831](https://github.com/hackforla/website/issues/2831#event-7317225581) at 2022-09-03 08:27 AM PDT -arpitapandya,2022-09-03T16:03:32Z,- arpitapandya commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236150716) at 2022-09-03 09:03 AM PDT -arpitapandya,2022-09-03T16:46:47Z,- arpitapandya commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236162584) at 2022-09-03 09:46 AM PDT -arpitapandya,2022-09-03T16:49:11Z,- arpitapandya submitted pull request review: [3517](https://github.com/hackforla/website/pull/3517#pullrequestreview-1095541458) at 2022-09-03 09:49 AM PDT -arpitapandya,2022-09-04T18:32:55Z,- arpitapandya closed issue by PR 3517: [3418](https://github.com/hackforla/website/issues/3418#event-7318793922) at 2022-09-04 11:32 AM PDT -arpitapandya,2022-09-06T01:56:24Z,- arpitapandya commented on pull request: [3518](https://github.com/hackforla/website/pull/3518#issuecomment-1237577513) at 2022-09-05 06:56 PM PDT -arpitapandya,2022-09-06T01:58:28Z,- arpitapandya submitted pull request review: [3518](https://github.com/hackforla/website/pull/3518#pullrequestreview-1096850453) at 2022-09-05 06:58 PM PDT -arpitapandya,2022-09-06T01:59:32Z,- arpitapandya closed issue by PR 3518: [3198](https://github.com/hackforla/website/issues/3198#event-7326306310) at 2022-09-05 06:59 PM PDT -arpitapandya,2022-09-06T02:12:21Z,- arpitapandya submitted pull request review: [3519](https://github.com/hackforla/website/pull/3519#pullrequestreview-1096856544) at 2022-09-05 07:12 PM PDT -arpitapandya,2022-09-06T02:22:27Z,- arpitapandya closed issue by PR 3519: [3097](https://github.com/hackforla/website/issues/3097#event-7326375749) at 2022-09-05 07:22 PM PDT -arpitapandya,2022-09-06T02:56:36Z,- arpitapandya commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1237603839) at 2022-09-05 07:56 PM PDT -arpitapandya,2022-09-06T03:04:13Z,- arpitapandya submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1096880628) at 2022-09-05 08:04 PM PDT -arpitapandya,2022-09-06T14:03:45Z,- arpitapandya commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1238198033) at 2022-09-06 07:03 AM PDT -arpitapandya,2022-09-06T14:05:42Z,- arpitapandya submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1097658473) at 2022-09-06 07:05 AM PDT -arpitapandya,2022-09-06T23:15:48Z,- arpitapandya commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1238740760) at 2022-09-06 04:15 PM PDT -arpitapandya,2022-09-11T15:59:14Z,- arpitapandya assigned to issue: [3423](https://github.com/hackforla/website/issues/3423#issuecomment-1193030715) at 2022-09-11 08:59 AM PDT -arpitapandya,2022-09-11T15:59:24Z,- arpitapandya commented on issue: [3423](https://github.com/hackforla/website/issues/3423#issuecomment-1242993539) at 2022-09-11 08:59 AM PDT -arpitapandya,2022-09-11T16:57:15Z,- arpitapandya opened pull request: [3534](https://github.com/hackforla/website/pull/3534) at 2022-09-11 09:57 AM PDT -arpitapandya,2022-09-13T01:47:03Z,- arpitapandya commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1244796228) at 2022-09-12 06:47 PM PDT -arpitapandya,2022-09-13T14:04:35Z,- arpitapandya commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1245462286) at 2022-09-13 07:04 AM PDT -arpitapandya,2022-09-13T22:28:18Z,- arpitapandya pull request merged: [3534](https://github.com/hackforla/website/pull/3534#event-7380484336) at 2022-09-13 03:28 PM PDT -arpitapandya,2022-09-14T20:39:14Z,- arpitapandya closed issue by PR 3534: [3423](https://github.com/hackforla/website/issues/3423#event-7389389285) at 2022-09-14 01:39 PM PDT -arpitapandya,2022-09-14T20:51:49Z,- arpitapandya commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1247289656) at 2022-09-14 01:51 PM PDT -arpitapandya,2022-09-16T20:01:34Z,- arpitapandya unassigned from issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1247289656) at 2022-09-16 01:01 PM PDT -arpitapandya,2022-09-16T20:06:50Z,- arpitapandya commented on pull request: [3557](https://github.com/hackforla/website/pull/3557#issuecomment-1249759311) at 2022-09-16 01:06 PM PDT -arpitapandya,2022-09-16T20:10:59Z,- arpitapandya submitted pull request review: [3557](https://github.com/hackforla/website/pull/3557#pullrequestreview-1111172861) at 2022-09-16 01:10 PM PDT -arpitapandya,2022-09-16T20:11:23Z,- arpitapandya closed issue by PR 3557: [2828](https://github.com/hackforla/website/issues/2828#event-7405853546) at 2022-09-16 01:11 PM PDT -arpitapandya,2022-09-16T20:13:29Z,- arpitapandya commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1249772116) at 2022-09-16 01:13 PM PDT -arpitapandya,2022-09-16T20:27:34Z,- arpitapandya commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1249782405) at 2022-09-16 01:27 PM PDT -arpitapandya,2022-09-16T20:27:34Z,- arpitapandya closed issue as completed: [2776](https://github.com/hackforla/website/issues/2776#event-7405956590) at 2022-09-16 01:27 PM PDT -arpitapandya,2022-09-18T01:29:25Z,- arpitapandya closed issue by PR 3468: [3295](https://github.com/hackforla/website/issues/3295#event-7408296267) at 2022-09-17 06:29 PM PDT -arpitapandya,2022-09-18T01:43:16Z,- arpitapandya submitted pull request review: [3558](https://github.com/hackforla/website/pull/3558#pullrequestreview-1111482649) at 2022-09-17 06:43 PM PDT -arpitapandya,2022-09-18T01:47:07Z,- arpitapandya commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250172516) at 2022-09-17 06:47 PM PDT -arpitapandya,2022-09-19T01:13:24Z,- arpitapandya commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1250441098) at 2022-09-18 06:13 PM PDT -arpitapandya,2022-09-19T01:34:44Z,- arpitapandya submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1111630043) at 2022-09-18 06:34 PM PDT -arpitapandya,2022-09-19T23:52:38Z,- arpitapandya commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1251686748) at 2022-09-19 04:52 PM PDT -arpitapandya,2022-09-21T14:21:50Z,- arpitapandya commented on pull request: [3566](https://github.com/hackforla/website/pull/3566#issuecomment-1253785240) at 2022-09-21 07:21 AM PDT -arpitapandya,2022-09-21T14:32:21Z,- arpitapandya submitted pull request review: [3566](https://github.com/hackforla/website/pull/3566#pullrequestreview-1115543921) at 2022-09-21 07:32 AM PDT -arpitapandya,2022-09-21T14:34:45Z,- arpitapandya closed issue by PR 3566: [3106](https://github.com/hackforla/website/issues/3106#event-7431573125) at 2022-09-21 07:34 AM PDT -arpitapandya,2022-09-21T14:52:38Z,- arpitapandya assigned to issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1228152247) at 2022-09-21 07:52 AM PDT -arpitapandya,2022-09-21T14:54:05Z,- arpitapandya commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1253828938) at 2022-09-21 07:54 AM PDT -arpitapandya,2022-09-21T14:58:28Z,- arpitapandya commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1253834916) at 2022-09-21 07:58 AM PDT -arpitapandya,2022-09-21T15:15:28Z,- arpitapandya commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1253856721) at 2022-09-21 08:15 AM PDT -arpitapandya,2022-09-21T21:58:08Z,- arpitapandya submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1116139029) at 2022-09-21 02:58 PM PDT -arpitapandya,2022-09-21T21:59:04Z,- arpitapandya closed issue by PR 3561: [3100](https://github.com/hackforla/website/issues/3100#event-7434584103) at 2022-09-21 02:59 PM PDT -arpitapandya,2022-09-21T22:26:32Z,- arpitapandya closed issue by PR 3573: [2834](https://github.com/hackforla/website/issues/2834#event-7434714225) at 2022-09-21 03:26 PM PDT -arpitapandya,2022-09-23T01:22:44Z,- arpitapandya opened pull request: [3575](https://github.com/hackforla/website/pull/3575) at 2022-09-22 06:22 PM PDT -arpitapandya,2022-09-23T17:17:53Z,- arpitapandya commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1256462551) at 2022-09-23 10:17 AM PDT -arpitapandya,2022-09-23T17:23:43Z,- arpitapandya submitted pull request review: [3564](https://github.com/hackforla/website/pull/3564#pullrequestreview-1118808049) at 2022-09-23 10:23 AM PDT -arpitapandya,2022-09-23T17:52:53Z,- arpitapandya closed issue by PR 3564: [1750](https://github.com/hackforla/website/issues/1750#event-7449346835) at 2022-09-23 10:52 AM PDT -arpitapandya,2022-09-23T17:54:31Z,- arpitapandya commented on pull request: [3574](https://github.com/hackforla/website/pull/3574#issuecomment-1256510488) at 2022-09-23 10:54 AM PDT -arpitapandya,2022-09-23T17:56:35Z,- arpitapandya submitted pull request review: [3574](https://github.com/hackforla/website/pull/3574#pullrequestreview-1118864837) at 2022-09-23 10:56 AM PDT -arpitapandya,2022-09-24T00:33:04Z,- arpitapandya commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1256816462) at 2022-09-23 05:33 PM PDT -arpitapandya,2022-09-24T00:33:58Z,- arpitapandya submitted pull request review: [3576](https://github.com/hackforla/website/pull/3576#pullrequestreview-1119126744) at 2022-09-23 05:33 PM PDT -arpitapandya,2022-09-24T00:34:35Z,- arpitapandya closed issue by PR 3576: [2842](https://github.com/hackforla/website/issues/2842#event-7451027811) at 2022-09-23 05:34 PM PDT -arpitapandya,2022-09-24T00:40:36Z,- arpitapandya commented on pull request: [3577](https://github.com/hackforla/website/pull/3577#issuecomment-1256818066) at 2022-09-23 05:40 PM PDT -arpitapandya,2022-09-24T00:43:43Z,- arpitapandya submitted pull request review: [3577](https://github.com/hackforla/website/pull/3577#pullrequestreview-1119128310) at 2022-09-23 05:43 PM PDT -arpitapandya,2022-09-24T00:44:19Z,- arpitapandya closed issue by PR 3577: [3099](https://github.com/hackforla/website/issues/3099#event-7451040904) at 2022-09-23 05:44 PM PDT -arpitapandya,2022-09-24T00:49:30Z,- arpitapandya commented on issue: [3098](https://github.com/hackforla/website/issues/3098#issuecomment-1256819950) at 2022-09-23 05:49 PM PDT -arpitapandya,2022-09-24T00:53:54Z,- arpitapandya closed issue by PR 3578: [3098](https://github.com/hackforla/website/issues/3098#event-7451053449) at 2022-09-23 05:53 PM PDT -arpitapandya,2022-09-26T14:47:53Z,- arpitapandya submitted pull request review: [3581](https://github.com/hackforla/website/pull/3581#pullrequestreview-1120372107) at 2022-09-26 07:47 AM PDT -arpitapandya,2022-09-26T15:05:53Z,- arpitapandya closed issue by PR 3579: [3129](https://github.com/hackforla/website/issues/3129#event-7459842265) at 2022-09-26 08:05 AM PDT -arpitapandya,2022-09-26T18:55:30Z,- arpitapandya opened pull request: [3583](https://github.com/hackforla/website/pull/3583) at 2022-09-26 11:55 AM PDT -arpitapandya,2022-09-26T18:56:29Z,- arpitapandya pull request closed w/o merging: [3583](https://github.com/hackforla/website/pull/3583#event-7461641942) at 2022-09-26 11:56 AM PDT -arpitapandya,2022-09-26T20:14:31Z,- arpitapandya opened pull request: [3584](https://github.com/hackforla/website/pull/3584) at 2022-09-26 01:14 PM PDT -arpitapandya,2022-09-26T21:23:42Z,- arpitapandya pull request closed w/o merging: [3584](https://github.com/hackforla/website/pull/3584#event-7462659146) at 2022-09-26 02:23 PM PDT -arpitapandya,2022-09-26T22:05:29Z,- arpitapandya submitted pull request review: [3581](https://github.com/hackforla/website/pull/3581#pullrequestreview-1120963177) at 2022-09-26 03:05 PM PDT -arpitapandya,2022-09-27T16:12:04Z,- arpitapandya commented on pull request: [3582](https://github.com/hackforla/website/pull/3582#issuecomment-1259729704) at 2022-09-27 09:12 AM PDT -arpitapandya,2022-09-27T17:01:25Z,- arpitapandya submitted pull request review: [3582](https://github.com/hackforla/website/pull/3582#pullrequestreview-1122367892) at 2022-09-27 10:01 AM PDT -arpitapandya,2022-09-28T01:05:11Z,- arpitapandya closed issue by PR 3585: [2925](https://github.com/hackforla/website/issues/2925#event-7473353558) at 2022-09-27 06:05 PM PDT -arpitapandya,2022-09-28T01:06:48Z,- arpitapandya closed issue by PR 3581: [3489](https://github.com/hackforla/website/issues/3489#event-7473359091) at 2022-09-27 06:06 PM PDT -arpitapandya,2022-09-28T01:57:57Z,- arpitapandya pull request closed w/o merging: [3575](https://github.com/hackforla/website/pull/3575#event-7473542008) at 2022-09-27 06:57 PM PDT -arpitapandya,2022-09-30T14:18:25Z,- arpitapandya commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1263637218) at 2022-09-30 07:18 AM PDT -arpitapandya,2022-09-30T17:13:41Z,- arpitapandya commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1263820054) at 2022-09-30 10:13 AM PDT -arpitapandya,2022-09-30T20:48:14Z,- arpitapandya commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1264011288) at 2022-09-30 01:48 PM PDT -arpitapandya,2022-09-30T20:50:38Z,- arpitapandya submitted pull request review: [3593](https://github.com/hackforla/website/pull/3593#pullrequestreview-1127348285) at 2022-09-30 01:50 PM PDT -arpitapandya,2022-09-30T21:36:22Z,- arpitapandya closed issue by PR 3593: [2485](https://github.com/hackforla/website/issues/2485#event-7498804089) at 2022-09-30 02:36 PM PDT -arpitapandya,2022-09-30T21:49:17Z,- arpitapandya commented on pull request: [3589](https://github.com/hackforla/website/pull/3589#issuecomment-1264054789) at 2022-09-30 02:49 PM PDT -arpitapandya,2022-09-30T21:50:14Z,- arpitapandya submitted pull request review: [3589](https://github.com/hackforla/website/pull/3589#pullrequestreview-1127389447) at 2022-09-30 02:50 PM PDT -arpitapandya,2022-09-30T21:52:34Z,- arpitapandya closed issue by PR 3589: [2954](https://github.com/hackforla/website/issues/2954#event-7498864932) at 2022-09-30 02:52 PM PDT -arpitapandya,2022-09-30T22:32:33Z,- arpitapandya submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1127409744) at 2022-09-30 03:32 PM PDT -arpitapandya,2022-09-30T22:40:32Z,- arpitapandya closed issue by PR 3590: [2836](https://github.com/hackforla/website/issues/2836#event-7499029680) at 2022-09-30 03:40 PM PDT -arpitapandya,2022-09-30T22:44:03Z,- arpitapandya commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1264103211) at 2022-09-30 03:44 PM PDT -arpitapandya,2022-10-01T17:16:24Z,- arpitapandya commented on pull request: [3594](https://github.com/hackforla/website/pull/3594#issuecomment-1264427679) at 2022-10-01 10:16 AM PDT -arpitapandya,2022-10-01T17:23:46Z,- arpitapandya submitted pull request review: [3594](https://github.com/hackforla/website/pull/3594#pullrequestreview-1127549598) at 2022-10-01 10:23 AM PDT -arpitapandya,2022-10-01T18:43:00Z,- arpitapandya commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1264449331) at 2022-10-01 11:43 AM PDT -arpitapandya,2022-10-01T22:26:34Z,- arpitapandya submitted pull request review: [3586](https://github.com/hackforla/website/pull/3586#pullrequestreview-1127572286) at 2022-10-01 03:26 PM PDT -arpitapandya,2022-10-01T23:53:07Z,- arpitapandya commented on pull request: [3595](https://github.com/hackforla/website/pull/3595#issuecomment-1264510532) at 2022-10-01 04:53 PM PDT -arpitapandya,2022-10-02T00:42:46Z,- arpitapandya submitted pull request review: [3595](https://github.com/hackforla/website/pull/3595#pullrequestreview-1127578993) at 2022-10-01 05:42 PM PDT -arpitapandya,2022-10-02T00:43:10Z,- arpitapandya closed issue by PR 3595: [3562](https://github.com/hackforla/website/issues/3562#event-7501258139) at 2022-10-01 05:43 PM PDT -arpitapandya,2022-10-02T00:45:47Z,- arpitapandya closed issue by PR 3594: [3481](https://github.com/hackforla/website/issues/3481#event-7501259941) at 2022-10-01 05:45 PM PDT -arpitapandya,2022-10-02T00:48:39Z,- arpitapandya commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1264518535) at 2022-10-01 05:48 PM PDT -arpitapandya,2022-10-02T00:48:59Z,- arpitapandya closed issue by PR 3586: [3447](https://github.com/hackforla/website/issues/3447#event-7501262221) at 2022-10-01 05:48 PM PDT -arpitapandya,2022-10-02T17:16:36Z,- arpitapandya commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1264691584) at 2022-10-02 10:16 AM PDT -arpitapandya,2022-10-07T21:37:37Z,- arpitapandya closed issue by PR 3599: [3354](https://github.com/hackforla/website/issues/3354#event-7546732147) at 2022-10-07 02:37 PM PDT -arpitapandya,2022-10-09T00:44:02Z,- arpitapandya commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1272422869) at 2022-10-08 05:44 PM PDT -arpitapandya,2022-10-09T00:45:08Z,- arpitapandya closed issue by PR 3087: [2355](https://github.com/hackforla/website/issues/2355#event-7548678915) at 2022-10-08 05:45 PM PDT -arpitapandya,2022-10-09T01:36:39Z,- arpitapandya commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1272428566) at 2022-10-08 06:36 PM PDT -arpitapandya,2022-10-09T18:43:16Z,- arpitapandya assigned to issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272603882) at 2022-10-09 11:43 AM PDT -arpitapandya,2022-10-09T23:48:30Z,- arpitapandya opened pull request: [3601](https://github.com/hackforla/website/pull/3601) at 2022-10-09 04:48 PM PDT -arpitapandya,2022-10-10T00:29:29Z,- arpitapandya commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272665955) at 2022-10-09 05:29 PM PDT -arpitapandya,2022-10-10T00:32:17Z,- arpitapandya submitted pull request review: [3600](https://github.com/hackforla/website/pull/3600#pullrequestreview-1135412578) at 2022-10-09 05:32 PM PDT -arpitapandya,2022-10-10T01:18:12Z,- arpitapandya closed issue by PR 3600: [2844](https://github.com/hackforla/website/issues/2844#event-7550254434) at 2022-10-09 06:18 PM PDT -arpitapandya,2022-10-10T01:34:00Z,- arpitapandya commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1272692834) at 2022-10-09 06:34 PM PDT -arpitapandya,2022-10-10T17:20:31Z,- arpitapandya pull request merged: [3601](https://github.com/hackforla/website/pull/3601#event-7555933563) at 2022-10-10 10:20 AM PDT -arpitapandya,2022-10-13T03:04:29Z,- arpitapandya commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276965670) at 2022-10-12 08:04 PM PDT -arpitapandya,2022-10-14T03:33:55Z,- arpitapandya commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1278433610) at 2022-10-13 08:33 PM PDT -arpitapandya,2022-10-14T03:34:40Z,- arpitapandya commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1278434245) at 2022-10-13 08:34 PM PDT -arpitapandya,2022-10-14T03:34:40Z,- arpitapandya closed issue as completed: [3238](https://github.com/hackforla/website/issues/3238#event-7586677015) at 2022-10-13 08:34 PM PDT -arpitapandya,2022-10-17T20:48:44Z,- arpitapandya commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1281477120) at 2022-10-17 01:48 PM PDT -arpitapandya,2022-10-19T02:39:30Z,- arpitapandya commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1283323031) at 2022-10-18 07:39 PM PDT -arpitapandya,2022-10-22T00:12:53Z,- arpitapandya commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1287548632) at 2022-10-21 05:12 PM PDT -arpitapandya,2022-10-26T00:06:58Z,- arpitapandya closed issue by PR 3655: [3284](https://github.com/hackforla/website/issues/3284#event-7668000060) at 2022-10-25 05:06 PM PDT -arpitapandya,2022-10-26T00:08:55Z,- arpitapandya closed issue by PR 3657: [3205](https://github.com/hackforla/website/issues/3205#event-7668007449) at 2022-10-25 05:08 PM PDT -arpitapandya,2022-10-26T00:10:43Z,- arpitapandya closed issue by PR 3658: [2853](https://github.com/hackforla/website/issues/2853#event-7668013633) at 2022-10-25 05:10 PM PDT -arpitapandya,2022-10-26T00:13:02Z,- arpitapandya closed issue by PR 3659: [2857](https://github.com/hackforla/website/issues/2857#event-7668021213) at 2022-10-25 05:13 PM PDT -arpitapandya,2022-10-27T01:00:00Z,- arpitapandya commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292829445) at 2022-10-26 06:00 PM PDT -arpitapandya,2022-10-27T01:03:59Z,- arpitapandya commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292831553) at 2022-10-26 06:03 PM PDT -arpitapandya,2022-10-28T04:10:10Z,- arpitapandya opened issue: [3669](https://github.com/hackforla/website/issues/3669) at 2022-10-27 09:10 PM PDT -arpitapandya,2022-10-28T04:48:11Z,- arpitapandya assigned to issue: [3669](https://github.com/hackforla/website/issues/3669) at 2022-10-27 09:48 PM PDT -arpitapandya,2022-10-28T05:18:37Z,- arpitapandya opened issue: [3670](https://github.com/hackforla/website/issues/3670) at 2022-10-27 10:18 PM PDT -arpitapandya,2022-10-28T05:39:52Z,- arpitapandya assigned to issue: [3670](https://github.com/hackforla/website/issues/3670) at 2022-10-27 10:39 PM PDT -arpitapandya,2022-10-28T06:16:50Z,- arpitapandya opened pull request: [3671](https://github.com/hackforla/website/pull/3671) at 2022-10-27 11:16 PM PDT -arpitapandya,2022-10-28T14:45:32Z,- arpitapandya commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1295089805) at 2022-10-28 07:45 AM PDT -arpitapandya,2022-10-28T14:48:47Z,- arpitapandya closed issue as completed: [2777](https://github.com/hackforla/website/issues/2777#event-7692384015) at 2022-10-28 07:48 AM PDT -arpitapandya,2022-10-28T15:02:53Z,- arpitapandya closed issue as completed: [3669](https://github.com/hackforla/website/issues/3669#event-7692494249) at 2022-10-28 08:02 AM PDT -arpitapandya,2022-10-28T15:19:35Z,- arpitapandya pull request closed w/o merging: [3671](https://github.com/hackforla/website/pull/3671#event-7692621650) at 2022-10-28 08:19 AM PDT -arpitapandya,2022-10-28T19:20:53Z,- arpitapandya commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295367794) at 2022-10-28 12:20 PM PDT -arpitapandya,2022-10-30T03:14:29Z,- arpitapandya closed issue by PR 3673: [3206](https://github.com/hackforla/website/issues/3206#event-7698169103) at 2022-10-29 08:14 PM PDT -arpitapandya,2022-10-30T18:54:55Z,- arpitapandya closed issue by PR 3652: [2438](https://github.com/hackforla/website/issues/2438#event-7699613099) at 2022-10-30 11:54 AM PDT -arpitapandya,2022-10-30T22:44:31Z,- arpitapandya commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1296368287) at 2022-10-30 03:44 PM PDT -arpitapandya,2022-10-30T23:05:54Z,- arpitapandya submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1161206515) at 2022-10-30 04:05 PM PDT -arpitapandya,2022-10-31T01:42:02Z,- arpitapandya commented on pull request: [3674](https://github.com/hackforla/website/pull/3674#issuecomment-1296433691) at 2022-10-30 06:42 PM PDT -arpitapandya,2022-10-31T02:03:12Z,- arpitapandya submitted pull request review: [3674](https://github.com/hackforla/website/pull/3674#pullrequestreview-1161252422) at 2022-10-30 07:03 PM PDT -arpitapandya,2022-10-31T02:04:09Z,- arpitapandya closed issue by PR 3674: [2479](https://github.com/hackforla/website/issues/2479#event-7700332161) at 2022-10-30 07:04 PM PDT -arpitapandya,2022-10-31T02:16:28Z,- arpitapandya submitted pull request review: [3676](https://github.com/hackforla/website/pull/3676#pullrequestreview-1161257745) at 2022-10-30 07:16 PM PDT -arpitapandya,2022-10-31T18:36:57Z,- arpitapandya commented on pull request: [3677](https://github.com/hackforla/website/pull/3677#issuecomment-1297508977) at 2022-10-31 11:36 AM PDT -arpitapandya,2022-10-31T18:37:44Z,- arpitapandya submitted pull request review: [3677](https://github.com/hackforla/website/pull/3677#pullrequestreview-1162365150) at 2022-10-31 11:37 AM PDT -arpitapandya,2022-10-31T18:38:15Z,- arpitapandya closed issue by PR 3677: [3196](https://github.com/hackforla/website/issues/3196#event-7707028728) at 2022-10-31 11:38 AM PDT -arpitapandya,2022-10-31T18:39:20Z,- arpitapandya commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1297512212) at 2022-10-31 11:39 AM PDT -arpitapandya,2022-10-31T18:43:49Z,- arpitapandya submitted pull request review: [3675](https://github.com/hackforla/website/pull/3675#pullrequestreview-1162372680) at 2022-10-31 11:43 AM PDT -arpitapandya,2022-10-31T18:44:43Z,- arpitapandya closed issue by PR 3675: [3278](https://github.com/hackforla/website/issues/3278#event-7707075466) at 2022-10-31 11:44 AM PDT -arpitapandya,2022-10-31T19:56:37Z,- arpitapandya opened pull request: [3680](https://github.com/hackforla/website/pull/3680) at 2022-10-31 12:56 PM PDT -arpitapandya,2022-10-31T20:14:15Z,- arpitapandya pull request merged: [3680](https://github.com/hackforla/website/pull/3680#event-7707754134) at 2022-10-31 01:14 PM PDT -arpitapandya,2022-10-31T20:29:26Z,- arpitapandya commented on issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1297644812) at 2022-10-31 01:29 PM PDT -arpitapandya,2022-10-31T20:29:26Z,- arpitapandya reopened issue: [2853](https://github.com/hackforla/website/issues/2853#issuecomment-1297644812) at 2022-10-31 01:29 PM PDT -arpitapandya,2022-11-01T04:59:17Z,- arpitapandya commented on pull request: [3681](https://github.com/hackforla/website/pull/3681#issuecomment-1298029324) at 2022-10-31 09:59 PM PDT -arpitapandya,2022-11-01T05:12:35Z,- arpitapandya submitted pull request review: [3681](https://github.com/hackforla/website/pull/3681#pullrequestreview-1162836673) at 2022-10-31 10:12 PM PDT -arpitapandya,2022-11-01T05:13:26Z,- arpitapandya closed issue by PR 3681: [3619](https://github.com/hackforla/website/issues/3619#event-7710191937) at 2022-10-31 10:13 PM PDT -arpitapandya,2022-11-02T04:13:04Z,- arpitapandya submitted pull request review: [3687](https://github.com/hackforla/website/pull/3687#pullrequestreview-1164393193) at 2022-11-01 09:13 PM PDT -arpitapandya,2022-11-02T04:31:29Z,- arpitapandya commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1299551555) at 2022-11-01 09:31 PM PDT -arpitapandya,2022-11-02T04:57:01Z,- arpitapandya commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299571006) at 2022-11-01 09:57 PM PDT -arpitapandya,2022-11-03T00:10:29Z,- arpitapandya commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1301510691) at 2022-11-02 05:10 PM PDT -arpitapandya,2022-11-04T19:23:06Z,- arpitapandya commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304058300) at 2022-11-04 12:23 PM PDT -arpitapandya,2022-11-04T19:26:17Z,- arpitapandya commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304061730) at 2022-11-04 12:26 PM PDT -arpitapandya,2022-11-04T19:29:06Z,- arpitapandya commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304064747) at 2022-11-04 12:29 PM PDT -arpitapandya,2022-11-09T02:15:56Z,- arpitapandya assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -arpitapandya,2022-11-10T18:47:09Z,- arpitapandya closed issue by PR 3703: [2859](https://github.com/hackforla/website/issues/2859#event-7786122633) at 2022-11-10 10:47 AM PST -arpitapandya,2022-11-10T18:48:40Z,- arpitapandya closed issue by PR 3699: [3207](https://github.com/hackforla/website/issues/3207#event-7786132312) at 2022-11-10 10:48 AM PST -arpitapandya,2022-11-10T18:50:20Z,- arpitapandya closed issue by PR 3700: [3208](https://github.com/hackforla/website/issues/3208#event-7786143252) at 2022-11-10 10:50 AM PST -arpitapandya,2022-11-10T21:22:02Z,- arpitapandya opened pull request: [3713](https://github.com/hackforla/website/pull/3713) at 2022-11-10 01:22 PM PST -arpitapandya,2022-11-10T21:41:06Z,- arpitapandya commented on pull request: [3713](https://github.com/hackforla/website/pull/3713#issuecomment-1310939323) at 2022-11-10 01:41 PM PST -arpitapandya,2022-11-10T21:41:07Z,- arpitapandya pull request closed w/o merging: [3713](https://github.com/hackforla/website/pull/3713#event-7787273427) at 2022-11-10 01:41 PM PST -arpitapandya,2022-11-10T21:44:41Z,- arpitapandya submitted pull request review: [3705](https://github.com/hackforla/website/pull/3705#pullrequestreview-1176534782) at 2022-11-10 01:44 PM PST -arpitapandya,2022-11-10T22:37:03Z,- arpitapandya reopened pull request: [3713](https://github.com/hackforla/website/pull/3713#event-7787273427) at 2022-11-10 02:37 PM PST -arpitapandya,2022-11-11T02:10:48Z,- arpitapandya opened pull request: [3714](https://github.com/hackforla/website/pull/3714) at 2022-11-10 06:10 PM PST -arpitapandya,2022-11-11T03:17:35Z,- arpitapandya pull request merged: [3714](https://github.com/hackforla/website/pull/3714#event-7788679852) at 2022-11-10 07:17 PM PST -arpitapandya,2022-11-11T03:52:35Z,- arpitapandya opened pull request: [3715](https://github.com/hackforla/website/pull/3715) at 2022-11-10 07:52 PM PST -arpitapandya,2022-11-11T04:23:47Z,- arpitapandya submitted pull request review: [3705](https://github.com/hackforla/website/pull/3705#pullrequestreview-1176779917) at 2022-11-10 08:23 PM PST -arpitapandya,2022-11-11T04:24:58Z,- arpitapandya closed issue by PR 3705: [3449](https://github.com/hackforla/website/issues/3449#event-7788913591) at 2022-11-10 08:24 PM PST -arpitapandya,2022-11-11T15:53:52Z,- arpitapandya commented on pull request: [3715](https://github.com/hackforla/website/pull/3715#issuecomment-1311874739) at 2022-11-11 07:53 AM PST -arpitapandya,2022-11-11T15:53:52Z,- arpitapandya pull request closed w/o merging: [3715](https://github.com/hackforla/website/pull/3715#event-7793166086) at 2022-11-11 07:53 AM PST -arpitapandya,2022-11-11T15:56:07Z,- arpitapandya commented on pull request: [3713](https://github.com/hackforla/website/pull/3713#issuecomment-1311878767) at 2022-11-11 07:56 AM PST -arpitapandya,2022-11-11T15:56:07Z,- arpitapandya pull request closed w/o merging: [3713](https://github.com/hackforla/website/pull/3713#event-7793187728) at 2022-11-11 07:56 AM PST -arpitapandya,2022-11-11T15:57:21Z,- arpitapandya closed issue by PR 3696: [3651](https://github.com/hackforla/website/issues/3651#event-7793207171) at 2022-11-11 07:57 AM PST -arpitapandya,2022-11-11T15:58:20Z,- arpitapandya closed issue by PR 3702: [3165](https://github.com/hackforla/website/issues/3165#event-7793223171) at 2022-11-11 07:58 AM PST -arpitapandya,2022-11-17T00:30:45Z,- arpitapandya closed issue by PR 3718: [2860](https://github.com/hackforla/website/issues/2860#event-7829138872) at 2022-11-16 04:30 PM PST -arpitapandya,2022-11-17T00:32:48Z,- arpitapandya closed issue by PR 3717: [2904](https://github.com/hackforla/website/issues/2904#event-7829148120) at 2022-11-16 04:32 PM PST -arpitapandya,2022-11-17T17:27:28Z,- arpitapandya submitted pull request review: [3728](https://github.com/hackforla/website/pull/3728#pullrequestreview-1184747046) at 2022-11-17 09:27 AM PST -arpitapandya,2022-11-17T20:16:33Z,- arpitapandya submitted pull request review: [3728](https://github.com/hackforla/website/pull/3728#pullrequestreview-1185019303) at 2022-11-17 12:16 PM PST -arpitapandya,2022-11-17T20:17:50Z,- arpitapandya closed issue by PR 3728: [2873](https://github.com/hackforla/website/issues/2873#event-7837471004) at 2022-11-17 12:17 PM PST -arpitapandya,2022-11-27T19:52:49Z,- arpitapandya commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1328326558) at 2022-11-27 11:52 AM PST -arpitapandya,2022-12-06T18:18:37Z,- arpitapandya submitted pull request review: [3754](https://github.com/hackforla/website/pull/3754#pullrequestreview-1207091921) at 2022-12-06 10:18 AM PST -arpitapandya,2022-12-07T09:25:51Z,- arpitapandya closed issue by PR 3497: [2199](https://github.com/hackforla/website/issues/2199#event-7975681885) at 2022-12-07 01:25 AM PST -arpitapandya,2022-12-12T20:42:32Z,- arpitapandya commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1347279715) at 2022-12-12 12:42 PM PST -arpitapandya,2022-12-12T20:47:32Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347295970) at 2022-12-12 12:47 PM PST -arpitapandya,2022-12-13T00:59:35Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347594392) at 2022-12-12 04:59 PM PST -arpitapandya,2022-12-13T01:37:53Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347624578) at 2022-12-12 05:37 PM PST -arpitapandya,2022-12-13T01:44:18Z,- arpitapandya submitted pull request review: [3771](https://github.com/hackforla/website/pull/3771#pullrequestreview-1214603633) at 2022-12-12 05:44 PM PST -arpitapandya,2022-12-13T02:18:03Z,- arpitapandya commented on pull request: [3771](https://github.com/hackforla/website/pull/3771#issuecomment-1347653289) at 2022-12-12 06:18 PM PST -arpitapandya,2022-12-13T20:53:06Z,- arpitapandya commented on pull request: [3771](https://github.com/hackforla/website/pull/3771#issuecomment-1349675036) at 2022-12-13 12:53 PM PST -arpitapandya,2022-12-13T21:49:11Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1349799226) at 2022-12-13 01:49 PM PST -arpitapandya,2022-12-14T03:22:45Z,- arpitapandya submitted pull request review: [3771](https://github.com/hackforla/website/pull/3771#pullrequestreview-1216727182) at 2022-12-13 07:22 PM PST -arpitapandya,2022-12-14T03:30:46Z,- arpitapandya commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1350341951) at 2022-12-13 07:30 PM PST -arpitapandya,2022-12-14T06:32:33Z,- arpitapandya submitted pull request review: [3771](https://github.com/hackforla/website/pull/3771#pullrequestreview-1216865135) at 2022-12-13 10:32 PM PST -arpitapandya,2022-12-14T06:33:33Z,- arpitapandya closed issue by PR 3771: [3697](https://github.com/hackforla/website/issues/3697#event-8033411170) at 2022-12-13 10:33 PM PST -arpitapandya,2022-12-14T16:31:36Z,- arpitapandya commented on issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351734938) at 2022-12-14 08:31 AM PST -arpitapandya,2022-12-20T01:14:02Z,- arpitapandya commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1358703433) at 2022-12-19 05:14 PM PST -arpitapandya,2023-01-09T15:21:05Z,- arpitapandya closed issue by PR 3795: [2874](https://github.com/hackforla/website/issues/2874#event-8182899276) at 2023-01-09 07:21 AM PST -arpitapandya,2023-01-12T12:34:47Z,- arpitapandya closed issue by PR 3806: [3755](https://github.com/hackforla/website/issues/3755#event-8210903395) at 2023-01-12 04:34 AM PST -arpitapandya,2023-01-12T12:38:37Z,- arpitapandya commented on issue: [2870](https://github.com/hackforla/website/issues/2870#issuecomment-1380267739) at 2023-01-12 04:38 AM PST -arpitapandya,2023-01-12T12:39:36Z,- arpitapandya closed issue by PR 3804: [2870](https://github.com/hackforla/website/issues/2870#event-8210940025) at 2023-01-12 04:39 AM PST -arpitapandya,2023-01-12T12:44:16Z,- arpitapandya submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1245533822) at 2023-01-12 04:44 AM PST -arpitapandya,2023-01-12T13:25:50Z,- arpitapandya closed issue by PR 3807: [2861](https://github.com/hackforla/website/issues/2861#event-8211336224) at 2023-01-12 05:25 AM PST -arpitapandya,2023-01-13T12:29:24Z,- arpitapandya submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1247560999) at 2023-01-13 04:29 AM PST -arpitapandya,2023-01-13T12:29:44Z,- arpitapandya closed issue by PR 3808: [3401](https://github.com/hackforla/website/issues/3401#event-8220398566) at 2023-01-13 04:29 AM PST -arpitapandya,2023-01-13T12:37:47Z,- arpitapandya submitted pull request review: [3812](https://github.com/hackforla/website/pull/3812#pullrequestreview-1247570837) at 2023-01-13 04:37 AM PST -arpitapandya,2023-01-14T23:51:49Z,- arpitapandya submitted pull request review: [3814](https://github.com/hackforla/website/pull/3814#pullrequestreview-1249052516) at 2023-01-14 03:51 PM PST -arpitapandya,2023-01-17T15:57:10Z,- arpitapandya closed issue by PR 3817: [3091](https://github.com/hackforla/website/issues/3091#event-8247174752) at 2023-01-17 07:57 AM PST -arpitapandya,2023-01-17T15:58:22Z,- arpitapandya closed issue by PR 3815: [2866](https://github.com/hackforla/website/issues/2866#event-8247186711) at 2023-01-17 07:58 AM PST -arpitapandya,2023-01-17T15:59:37Z,- arpitapandya closed issue by PR 3810: [3773](https://github.com/hackforla/website/issues/3773#event-8247198981) at 2023-01-17 07:59 AM PST -arpitapandya,2023-01-17T16:00:24Z,- arpitapandya closed issue by PR 3832: [2867](https://github.com/hackforla/website/issues/2867#event-8247207463) at 2023-01-17 08:00 AM PST -arpitapandya,2023-01-18T04:30:34Z,- arpitapandya commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1386472117) at 2023-01-17 08:30 PM PST -arpitapandya,2023-01-19T15:38:21Z,- arpitapandya closed issue by PR 3842: [2869](https://github.com/hackforla/website/issues/2869#event-8313339233) at 2023-01-19 07:38 AM PST -arpitapandya,2023-01-19T15:41:45Z,- arpitapandya closed issue by PR 3834: [3382](https://github.com/hackforla/website/issues/3382#event-8313373368) at 2023-01-19 07:41 AM PST -arpitapandya,2023-01-20T14:49:21Z,- arpitapandya closed issue as completed: [3415](https://github.com/hackforla/website/issues/3415#event-8322144996) at 2023-01-20 06:49 AM PST -arpitapandya,2023-01-20T14:50:20Z,- arpitapandya closed issue by PR 3836: [3402](https://github.com/hackforla/website/issues/3402#event-8322153306) at 2023-01-20 06:50 AM PST -arpitapandya,2023-01-20T14:53:07Z,- arpitapandya submitted pull request review: [3814](https://github.com/hackforla/website/pull/3814#pullrequestreview-1263747936) at 2023-01-20 06:53 AM PST -arpitapandya,2023-01-20T14:54:09Z,- arpitapandya closed issue by PR 3814: [2276](https://github.com/hackforla/website/issues/2276#event-8322185418) at 2023-01-20 06:54 AM PST -arpitapandya,2023-01-22T01:33:33Z,- arpitapandya commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1399379774) at 2023-01-21 05:33 PM PST -arpitapandya,2023-01-26T18:47:27Z,- arpitapandya closed issue by PR 3864: [3823](https://github.com/hackforla/website/issues/3823#event-8366877522) at 2023-01-26 10:47 AM PST -arpitapandya,2023-01-30T19:47:23Z,- arpitapandya commented on pull request: [3898](https://github.com/hackforla/website/pull/3898#issuecomment-1409236663) at 2023-01-30 11:47 AM PST -arpitapandya,2023-01-30T19:48:14Z,- arpitapandya commented on pull request: [3899](https://github.com/hackforla/website/pull/3899#issuecomment-1409237551) at 2023-01-30 11:48 AM PST -arpitmathur2412,2023-10-10T14:37:38Z,- arpitmathur2412 commented on issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1755568912) at 2023-10-10 07:37 AM PDT -attali-david,3509,SKILLS ISSUE -attali-david,2022-08-31T02:53:24Z,- attali-david opened issue: [3509](https://github.com/hackforla/website/issues/3509) at 2022-08-30 07:53 PM PDT -attali-david,2022-08-31T03:35:22Z,- attali-david assigned to issue: [3509](https://github.com/hackforla/website/issues/3509) at 2022-08-30 08:35 PM PDT -attali-david,2022-08-31T03:40:39Z,- attali-david assigned to issue: [2822](https://github.com/hackforla/website/issues/2822#issuecomment-1046374562) at 2022-08-30 08:40 PM PDT -attali-david,2022-08-31T03:48:24Z,- attali-david commented on issue: [2822](https://github.com/hackforla/website/issues/2822#issuecomment-1232426802) at 2022-08-30 08:48 PM PDT -attali-david,2022-08-31T22:06:54Z,- attali-david commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1233467610) at 2022-08-31 03:06 PM PDT -attali-david,2022-08-31T22:30:42Z,- attali-david opened pull request: [3513](https://github.com/hackforla/website/pull/3513) at 2022-08-31 03:30 PM PDT -attali-david,2022-09-01T00:39:17Z,- attali-david pull request merged: [3513](https://github.com/hackforla/website/pull/3513#event-7300737308) at 2022-08-31 05:39 PM PDT -attali-david,2022-09-01T14:53:40Z,- attali-david assigned to issue: [3101](https://github.com/hackforla/website/issues/3101#issuecomment-1116849963) at 2022-09-01 07:53 AM PDT -attali-david,2022-09-01T14:56:32Z,- attali-david commented on issue: [3101](https://github.com/hackforla/website/issues/3101#issuecomment-1234397838) at 2022-09-01 07:56 AM PDT -attali-david,2022-09-01T18:22:50Z,- attali-david opened pull request: [3514](https://github.com/hackforla/website/pull/3514) at 2022-09-01 11:22 AM PDT -attali-david,2022-09-02T02:53:20Z,- attali-david pull request merged: [3514](https://github.com/hackforla/website/pull/3514#event-7309935000) at 2022-09-01 07:53 PM PDT -attali-david,2022-09-02T03:55:31Z,- attali-david assigned to issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-968324929) at 2022-09-01 08:55 PM PDT -attali-david,2022-09-02T04:05:36Z,- attali-david unassigned from issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1235040283) at 2022-09-01 09:05 PM PDT -attali-david,2022-09-02T23:01:35Z,- attali-david assigned to issue: [3418](https://github.com/hackforla/website/issues/3418#issuecomment-1192097211) at 2022-09-02 04:01 PM PDT -attali-david,2022-09-02T23:02:20Z,- attali-david commented on issue: [3418](https://github.com/hackforla/website/issues/3418#issuecomment-1235963756) at 2022-09-02 04:02 PM PDT -attali-david,2022-09-03T00:05:42Z,- attali-david opened pull request: [3517](https://github.com/hackforla/website/pull/3517) at 2022-09-02 05:05 PM PDT -attali-david,2022-09-03T16:01:30Z,- attali-david commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236150316) at 2022-09-03 09:01 AM PDT -attali-david,2022-09-03T16:06:30Z,- attali-david commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1236151258) at 2022-09-03 09:06 AM PDT -attali-david,2022-09-04T13:34:14Z,- attali-david pull request merged: [3517](https://github.com/hackforla/website/pull/3517#event-7318476335) at 2022-09-04 06:34 AM PDT -attali-david,2022-09-04T14:37:40Z,- attali-david assigned to issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1194674868) at 2022-09-04 07:37 AM PDT -attali-david,2022-09-04T17:22:39Z,- attali-david commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1236383211) at 2022-09-04 10:22 AM PDT -attali-david,2022-09-06T20:47:32Z,- attali-david commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1238633178) at 2022-09-06 01:47 PM PDT -Autisticturtle3,5606,SKILLS ISSUE -Autisticturtle3,2023-09-27T02:29:12Z,- Autisticturtle3 opened issue: [5606](https://github.com/hackforla/website/issues/5606) at 2023-09-26 07:29 PM PDT -Autisticturtle3,2023-09-27T02:29:12Z,- Autisticturtle3 assigned to issue: [5606](https://github.com/hackforla/website/issues/5606) at 2023-09-26 07:29 PM PDT -Autisticturtle3,2023-09-27T02:55:36Z,- Autisticturtle3 assigned to issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1698559669) at 2023-09-26 07:55 PM PDT -Autisticturtle3,2023-09-27T03:25:21Z,- Autisticturtle3 opened pull request: [5610](https://github.com/hackforla/website/pull/5610) at 2023-09-26 08:25 PM PDT -Autisticturtle3,2023-09-27T03:34:30Z,- Autisticturtle3 assigned to issue: [5373](https://github.com/hackforla/website/issues/5373#issuecomment-1698564613) at 2023-09-26 08:34 PM PDT -Autisticturtle3,2023-09-27T03:36:36Z,- Autisticturtle3 commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1736621371) at 2023-09-26 08:36 PM PDT -Autisticturtle3,2023-09-27T03:51:52Z,- Autisticturtle3 commented on issue: [5373](https://github.com/hackforla/website/issues/5373#issuecomment-1736630159) at 2023-09-26 08:51 PM PDT -Autisticturtle3,2023-09-27T03:57:10Z,- Autisticturtle3 opened pull request: [5612](https://github.com/hackforla/website/pull/5612) at 2023-09-26 08:57 PM PDT -Autisticturtle3,2023-09-28T03:00:44Z,- Autisticturtle3 unassigned from issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1738367332) at 2023-09-27 08:00 PM PDT -Autisticturtle3,2023-09-28T03:01:33Z,- Autisticturtle3 pull request closed w/o merging: [5610](https://github.com/hackforla/website/pull/5610#event-10493939160) at 2023-09-27 08:01 PM PDT -Autisticturtle3,2023-10-01T16:52:06Z,- Autisticturtle3 pull request merged: [5612](https://github.com/hackforla/website/pull/5612#event-10520034180) at 2023-10-01 09:52 AM PDT -Aveline-art,2021-04-21T03:02:34Z,- Aveline-art closed issue by PR 1603: [1031](https://github.com/hackforla/website/issues/1031#event-4622473850) at 2021-04-20 08:02 PM PDT -Aveline-art,2021-04-21T03:02:44Z,- Aveline-art reopened issue: [1031](https://github.com/hackforla/website/issues/1031#event-4622473850) at 2021-04-20 08:02 PM PDT -Aveline-art,2021-04-21T03:24:57Z,- Aveline-art assigned to issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823747808) at 2021-04-20 08:24 PM PDT -Aveline-art,2021-04-22T16:52:12Z,- Aveline-art commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-825013378) at 2021-04-22 09:52 AM PDT -Aveline-art,2021-04-23T05:20:31Z,- Aveline-art assigned to issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796304739) at 2021-04-22 10:20 PM PDT -Aveline-art,2021-04-23T19:26:42Z,- Aveline-art opened issue: [1444](https://github.com/hackforla/website/issues/1444) at 2021-04-23 12:26 PM PDT -Aveline-art,2021-04-23T20:37:05Z,- Aveline-art opened pull request: [1446](https://github.com/hackforla/website/pull/1446) at 2021-04-23 01:37 PM PDT -Aveline-art,2021-04-23T21:35:36Z,- Aveline-art assigned to issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-04-23 02:35 PM PDT -Aveline-art,2021-04-23T22:44:21Z,- Aveline-art pull request merged: [1446](https://github.com/hackforla/website/pull/1446#event-4639107367) at 2021-04-23 03:44 PM PDT -Aveline-art,2021-04-23T22:45:45Z,- Aveline-art assigned to issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-23 03:45 PM PDT -Aveline-art,2021-04-24T02:57:25Z,- Aveline-art opened pull request: [1449](https://github.com/hackforla/website/pull/1449) at 2021-04-23 07:57 PM PDT -Aveline-art,2021-04-24T02:59:56Z,- Aveline-art commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-826023903) at 2021-04-23 07:59 PM PDT -Aveline-art,2021-04-24T04:24:26Z,- Aveline-art pull request merged: [1449](https://github.com/hackforla/website/pull/1449#event-4639519351) at 2021-04-23 09:24 PM PDT -Aveline-art,2021-04-24T20:26:50Z,- Aveline-art opened pull request: [1455](https://github.com/hackforla/website/pull/1455) at 2021-04-24 01:26 PM PDT -Aveline-art,2021-04-26T17:59:56Z,- Aveline-art unassigned from issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823750826) at 2021-04-26 10:59 AM PDT -Aveline-art,2021-04-26T20:26:57Z,- Aveline-art commented on pull request: [1455](https://github.com/hackforla/website/pull/1455#issuecomment-827125003) at 2021-04-26 01:26 PM PDT -Aveline-art,2021-04-30T02:40:59Z,- Aveline-art commented on pull request: [1455](https://github.com/hackforla/website/pull/1455#issuecomment-829756681) at 2021-04-29 07:40 PM PDT -Aveline-art,2021-04-30T16:38:24Z,- Aveline-art pull request merged: [1455](https://github.com/hackforla/website/pull/1455#event-4670557715) at 2021-04-30 09:38 AM PDT -Aveline-art,2021-04-30T17:50:46Z,- Aveline-art assigned to issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-815975209) at 2021-04-30 10:50 AM PDT -Aveline-art,2021-05-01T23:38:28Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-830709665) at 2021-05-01 04:38 PM PDT -Aveline-art,2021-05-02T07:45:23Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-830766422) at 2021-05-02 12:45 AM PDT -Aveline-art,2021-05-07T02:37:43Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-834016619) at 2021-05-06 07:37 PM PDT -Aveline-art,2021-05-08T21:23:54Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-835520663) at 2021-05-08 02:23 PM PDT -Aveline-art,2021-05-08T21:26:59Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-835521942) at 2021-05-08 02:26 PM PDT -Aveline-art,2021-05-13T03:56:59Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-840275598) at 2021-05-12 08:56 PM PDT -Aveline-art,2021-05-13T20:47:29Z,- Aveline-art commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-840824565) at 2021-05-13 01:47 PM PDT -Aveline-art,2021-05-16T17:10:09Z,- Aveline-art opened issue: [1556](https://github.com/hackforla/website/issues/1556) at 2021-05-16 10:10 AM PDT -Aveline-art,2021-05-16T18:02:12Z,- Aveline-art assigned to issue: [1554](https://github.com/hackforla/website/issues/1554) at 2021-05-16 11:02 AM PDT -Aveline-art,2021-05-17T01:12:04Z,- Aveline-art opened pull request: [1557](https://github.com/hackforla/website/pull/1557) at 2021-05-16 06:12 PM PDT -Aveline-art,2021-05-21T18:14:25Z,- Aveline-art commented on pull request: [1557](https://github.com/hackforla/website/pull/1557#issuecomment-846146172) at 2021-05-21 11:14 AM PDT -Aveline-art,2021-05-21T18:48:16Z,- Aveline-art submitted pull request review: [1591](https://github.com/hackforla/website/pull/1591#pullrequestreview-665771175) at 2021-05-21 11:48 AM PDT -Aveline-art,2021-05-21T22:22:56Z,- Aveline-art pull request merged: [1557](https://github.com/hackforla/website/pull/1557#event-4781553624) at 2021-05-21 03:22 PM PDT -Aveline-art,2021-05-21T23:05:08Z,- Aveline-art assigned to issue: [1595](https://github.com/hackforla/website/issues/1595) at 2021-05-21 04:05 PM PDT -Aveline-art,2021-05-22T20:00:49Z,- Aveline-art submitted pull request review: [1604](https://github.com/hackforla/website/pull/1604#pullrequestreview-666207793) at 2021-05-22 01:00 PM PDT -Aveline-art,2021-05-23T05:24:50Z,- Aveline-art opened pull request: [1609](https://github.com/hackforla/website/pull/1609) at 2021-05-22 10:24 PM PDT -Aveline-art,2021-05-23T18:34:48Z,- Aveline-art commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846605937) at 2021-05-23 11:34 AM PDT -Aveline-art,2021-05-23T19:26:07Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-846612313) at 2021-05-23 12:26 PM PDT -Aveline-art,2021-05-23T19:39:23Z,- Aveline-art assigned to issue: [1623](https://github.com/hackforla/website/issues/1623) at 2021-05-23 12:39 PM PDT -Aveline-art,2021-05-27T05:12:49Z,- Aveline-art submitted pull request review: [1625](https://github.com/hackforla/website/pull/1625#pullrequestreview-669747472) at 2021-05-26 10:12 PM PDT -Aveline-art,2021-05-27T05:15:22Z,- Aveline-art submitted pull request review: [1625](https://github.com/hackforla/website/pull/1625#pullrequestreview-669748504) at 2021-05-26 10:15 PM PDT -Aveline-art,2021-05-30T06:40:08Z,- Aveline-art commented on pull request: [1609](https://github.com/hackforla/website/pull/1609#issuecomment-850950929) at 2021-05-29 11:40 PM PDT -Aveline-art,2021-05-30T17:55:35Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851037216) at 2021-05-30 10:55 AM PDT -Aveline-art,2021-05-30T18:16:02Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:16 AM PDT -Aveline-art,2021-06-04T02:21:11Z,- Aveline-art submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-675867493) at 2021-06-03 07:21 PM PDT -Aveline-art,2021-06-04T03:24:46Z,- Aveline-art assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -Aveline-art,2021-06-04T04:58:36Z,- Aveline-art opened issue: [1686](https://github.com/hackforla/website/issues/1686) at 2021-06-03 09:58 PM PDT -Aveline-art,2021-06-04T05:00:56Z,- Aveline-art commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:00 PM PDT -Aveline-art,2021-06-04T05:01:26Z,- Aveline-art assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -Aveline-art,2021-06-04T05:15:09Z,- Aveline-art opened issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -Aveline-art,2021-06-04T05:15:39Z,- Aveline-art assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -Aveline-art,2021-06-05T02:33:50Z,- Aveline-art commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-855170052) at 2021-06-04 07:33 PM PDT -Aveline-art,2021-06-05T05:35:05Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-855187438) at 2021-06-04 10:35 PM PDT -Aveline-art,2021-06-05T22:38:14Z,- Aveline-art commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-855305176) at 2021-06-05 03:38 PM PDT -Aveline-art,2021-06-06T17:52:08Z,- Aveline-art commented on issue: [1687](https://github.com/hackforla/website/issues/1687#issuecomment-855436416) at 2021-06-06 10:52 AM PDT -Aveline-art,2021-06-06T19:49:20Z,- Aveline-art unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -Aveline-art,2021-06-06T21:05:49Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-855462888) at 2021-06-06 02:05 PM PDT -Aveline-art,2021-06-06T23:21:39Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-855479914) at 2021-06-06 04:21 PM PDT -Aveline-art,2021-06-06T23:26:48Z,- Aveline-art commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-06 04:26 PM PDT -Aveline-art,2021-06-07T22:15:47Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-856298942) at 2021-06-07 03:15 PM PDT -Aveline-art,2021-06-09T02:20:53Z,- Aveline-art submitted pull request review: [1679](https://github.com/hackforla/website/pull/1679#pullrequestreview-679151787) at 2021-06-08 07:20 PM PDT -Aveline-art,2021-06-09T04:12:59Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857357798) at 2021-06-08 09:12 PM PDT -Aveline-art,2021-06-09T04:34:27Z,- Aveline-art submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-679199217) at 2021-06-08 09:34 PM PDT -Aveline-art,2021-06-11T01:48:21Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859200720) at 2021-06-10 06:48 PM PDT -Aveline-art,2021-06-11T02:08:46Z,- Aveline-art commented on pull request: [1706](https://github.com/hackforla/website/pull/1706#issuecomment-859209023) at 2021-06-10 07:08 PM PDT -Aveline-art,2021-06-11T04:45:41Z,- Aveline-art opened issue: [1707](https://github.com/hackforla/website/issues/1707) at 2021-06-10 09:45 PM PDT -Aveline-art,2021-06-11T04:45:48Z,- Aveline-art assigned to issue: [1707](https://github.com/hackforla/website/issues/1707) at 2021-06-10 09:45 PM PDT -Aveline-art,2021-06-11T05:11:42Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-859270412) at 2021-06-10 10:11 PM PDT -Aveline-art,2021-06-11T13:46:09Z,- Aveline-art pull request merged: [1609](https://github.com/hackforla/website/pull/1609#event-4878105953) at 2021-06-11 06:46 AM PDT -Aveline-art,2021-06-12T00:15:27Z,- Aveline-art submitted pull request review: [1670](https://github.com/hackforla/website/pull/1670#pullrequestreview-682276729) at 2021-06-11 05:15 PM PDT -Aveline-art,2021-06-12T04:39:15Z,- Aveline-art opened issue: [1717](https://github.com/hackforla/website/issues/1717) at 2021-06-11 09:39 PM PDT -Aveline-art,2021-06-12T05:15:22Z,- Aveline-art opened issue: [1718](https://github.com/hackforla/website/issues/1718) at 2021-06-11 10:15 PM PDT -Aveline-art,2021-06-12T05:17:34Z,- Aveline-art commented on issue: [1718](https://github.com/hackforla/website/issues/1718#issuecomment-860001323) at 2021-06-11 10:17 PM PDT -Aveline-art,2021-06-12T06:50:38Z,- Aveline-art commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-860010206) at 2021-06-11 11:50 PM PDT -Aveline-art,2021-06-12T13:17:30Z,- Aveline-art assigned to issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Aveline-art,2021-06-12T16:32:03Z,- Aveline-art unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -Aveline-art,2021-06-13T02:59:19Z,- Aveline-art commented on issue: [1707](https://github.com/hackforla/website/issues/1707#issuecomment-860142992) at 2021-06-12 07:59 PM PDT -Aveline-art,2021-06-15T13:31:56Z,- Aveline-art opened pull request: [1740](https://github.com/hackforla/website/pull/1740) at 2021-06-15 06:31 AM PDT -Aveline-art,2021-06-16T03:56:11Z,- Aveline-art opened issue: [1750](https://github.com/hackforla/website/issues/1750) at 2021-06-15 08:56 PM PDT -Aveline-art,2021-06-16T14:54:46Z,- Aveline-art pull request merged: [1740](https://github.com/hackforla/website/pull/1740#event-4898522174) at 2021-06-16 07:54 AM PDT -Aveline-art,2021-06-18T03:37:22Z,- Aveline-art commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-863730400) at 2021-06-17 08:37 PM PDT -Aveline-art,2021-06-18T04:53:04Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687028249) at 2021-06-17 09:53 PM PDT -Aveline-art,2021-06-18T04:55:42Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687029169) at 2021-06-17 09:55 PM PDT -Aveline-art,2021-06-18T04:58:44Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687030171) at 2021-06-17 09:58 PM PDT -Aveline-art,2021-06-18T05:25:26Z,- Aveline-art submitted pull request review: [1774](https://github.com/hackforla/website/pull/1774#pullrequestreview-687040669) at 2021-06-17 10:25 PM PDT -Aveline-art,2021-06-18T22:43:17Z,- Aveline-art commented on pull request: [1758](https://github.com/hackforla/website/pull/1758#issuecomment-864306339) at 2021-06-18 03:43 PM PDT -Aveline-art,2021-06-19T15:53:21Z,- Aveline-art commented on pull request: [1758](https://github.com/hackforla/website/pull/1758#issuecomment-864423659) at 2021-06-19 08:53 AM PDT -Aveline-art,2021-06-19T16:11:17Z,- Aveline-art opened issue: [1787](https://github.com/hackforla/website/issues/1787) at 2021-06-19 09:11 AM PDT -Aveline-art,2021-06-19T16:25:55Z,- Aveline-art opened issue: [1788](https://github.com/hackforla/website/issues/1788) at 2021-06-19 09:25 AM PDT -Aveline-art,2021-06-19T16:28:05Z,- Aveline-art assigned to issue: [1787](https://github.com/hackforla/website/issues/1787) at 2021-06-19 09:28 AM PDT -Aveline-art,2021-06-19T16:51:50Z,- Aveline-art commented on issue: [1788](https://github.com/hackforla/website/issues/1788#issuecomment-864435388) at 2021-06-19 09:51 AM PDT -Aveline-art,2021-06-19T16:51:50Z,- Aveline-art closed issue as completed: [1788](https://github.com/hackforla/website/issues/1788#event-4912645105) at 2021-06-19 09:51 AM PDT -Aveline-art,2021-06-19T17:05:23Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864436976) at 2021-06-19 10:05 AM PDT -Aveline-art,2021-06-19T17:27:13Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864439539) at 2021-06-19 10:27 AM PDT -Aveline-art,2021-06-19T17:27:14Z,- Aveline-art reopened pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864439539) at 2021-06-19 10:27 AM PDT -Aveline-art,2021-06-19T20:01:57Z,- Aveline-art commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-864456925) at 2021-06-19 01:01 PM PDT -Aveline-art,2021-06-19T20:11:15Z,- Aveline-art closed issue by PR 1785: [1718](https://github.com/hackforla/website/issues/1718#event-4912781405) at 2021-06-19 01:11 PM PDT -Aveline-art,2021-06-19T23:29:09Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-864475647) at 2021-06-19 04:29 PM PDT -Aveline-art,2021-06-20T17:08:22Z,- Aveline-art submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-687925328) at 2021-06-20 10:08 AM PDT -Aveline-art,2021-06-23T04:42:21Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-866516858) at 2021-06-22 09:42 PM PDT -Aveline-art,2021-06-23T05:28:28Z,- Aveline-art opened issue: [1818](https://github.com/hackforla/website/issues/1818) at 2021-06-22 10:28 PM PDT -Aveline-art,2021-06-23T23:38:48Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867226324) at 2021-06-23 04:38 PM PDT -Aveline-art,2021-06-24T00:18:29Z,- Aveline-art commented on issue: [1818](https://github.com/hackforla/website/issues/1818#issuecomment-867239837) at 2021-06-23 05:18 PM PDT -Aveline-art,2021-06-24T06:25:59Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867371923) at 2021-06-23 11:25 PM PDT -Aveline-art,2021-06-24T06:54:08Z,- Aveline-art commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867388531) at 2021-06-23 11:54 PM PDT -Aveline-art,2021-06-24T15:45:05Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867745377) at 2021-06-24 08:45 AM PDT -Aveline-art,2021-06-24T16:11:30Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-867768193) at 2021-06-24 09:11 AM PDT -Aveline-art,2021-06-25T04:17:55Z,- Aveline-art submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-692436108) at 2021-06-24 09:17 PM PDT -Aveline-art,2021-06-26T04:23:57Z,- Aveline-art commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-868945503) at 2021-06-25 09:23 PM PDT -Aveline-art,2021-06-26T19:06:11Z,- Aveline-art opened pull request: [1834](https://github.com/hackforla/website/pull/1834) at 2021-06-26 12:06 PM PDT -Aveline-art,2021-06-27T18:16:59Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-869205025) at 2021-06-27 11:16 AM PDT -Aveline-art,2021-06-27T20:43:42Z,- Aveline-art opened issue: [1847](https://github.com/hackforla/website/issues/1847) at 2021-06-27 01:43 PM PDT -Aveline-art,2021-06-27T20:44:11Z,- Aveline-art commented on issue: [1847](https://github.com/hackforla/website/issues/1847#issuecomment-869221284) at 2021-06-27 01:44 PM PDT -Aveline-art,2021-06-27T20:57:06Z,- Aveline-art opened issue: [1850](https://github.com/hackforla/website/issues/1850) at 2021-06-27 01:57 PM PDT -Aveline-art,2021-06-27T21:02:10Z,- Aveline-art commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-869223194) at 2021-06-27 02:02 PM PDT -Aveline-art,2021-06-29T04:25:39Z,- Aveline-art commented on pull request: [1832](https://github.com/hackforla/website/pull/1832#issuecomment-870221300) at 2021-06-28 09:25 PM PDT -Aveline-art,2021-06-29T04:34:54Z,- Aveline-art submitted pull request review: [1832](https://github.com/hackforla/website/pull/1832#pullrequestreview-694581597) at 2021-06-28 09:34 PM PDT -Aveline-art,2021-06-29T04:53:50Z,- Aveline-art submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-694588830) at 2021-06-28 09:53 PM PDT -Aveline-art,2021-06-29T23:22:24Z,- Aveline-art submitted pull request review: [1858](https://github.com/hackforla/website/pull/1858#pullrequestreview-695577437) at 2021-06-29 04:22 PM PDT -Aveline-art,2021-06-30T00:35:33Z,- Aveline-art submitted pull request review: [1814](https://github.com/hackforla/website/pull/1814#pullrequestreview-695604617) at 2021-06-29 05:35 PM PDT -Aveline-art,2021-06-30T01:12:11Z,- Aveline-art submitted pull request review: [1852](https://github.com/hackforla/website/pull/1852#pullrequestreview-695617091) at 2021-06-29 06:12 PM PDT -Aveline-art,2021-06-30T23:35:59Z,- Aveline-art commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-871794002) at 2021-06-30 04:35 PM PDT -Aveline-art,2021-06-30T23:36:55Z,- Aveline-art commented on pull request: [1859](https://github.com/hackforla/website/pull/1859#issuecomment-871794320) at 2021-06-30 04:36 PM PDT -Aveline-art,2021-07-01T00:25:08Z,- Aveline-art submitted pull request review: [1858](https://github.com/hackforla/website/pull/1858#pullrequestreview-696715399) at 2021-06-30 05:25 PM PDT -Aveline-art,2021-07-01T02:05:49Z,- Aveline-art closed issue by PR 1858: [1748](https://github.com/hackforla/website/issues/1748#event-4962974627) at 2021-06-30 07:05 PM PDT -Aveline-art,2021-07-01T04:55:41Z,- Aveline-art commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-871917566) at 2021-06-30 09:55 PM PDT -Aveline-art,2021-07-01T04:59:46Z,- Aveline-art closed issue by PR 1860: [1587](https://github.com/hackforla/website/issues/1587#event-4963452334) at 2021-06-30 09:59 PM PDT -Aveline-art,2021-07-01T05:08:08Z,- Aveline-art closed issue by PR 1862: [1573](https://github.com/hackforla/website/issues/1573#event-4963491368) at 2021-06-30 10:08 PM PDT -Aveline-art,2021-07-02T03:59:29Z,- Aveline-art commented on issue: [1796](https://github.com/hackforla/website/issues/1796#issuecomment-872694247) at 2021-07-01 08:59 PM PDT -Aveline-art,2021-07-02T04:25:37Z,- Aveline-art commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-872703150) at 2021-07-01 09:25 PM PDT -Aveline-art,2021-07-02T17:59:11Z,- Aveline-art closed issue by PR 1852: [1791](https://github.com/hackforla/website/issues/1791#event-4972711697) at 2021-07-02 10:59 AM PDT -Aveline-art,2021-07-02T18:13:10Z,- Aveline-art commented on pull request: [1870](https://github.com/hackforla/website/pull/1870#issuecomment-873174598) at 2021-07-02 11:13 AM PDT -Aveline-art,2021-07-02T18:14:14Z,- Aveline-art commented on pull request: [1852](https://github.com/hackforla/website/pull/1852#issuecomment-873175184) at 2021-07-02 11:14 AM PDT -Aveline-art,2021-07-03T14:44:49Z,- Aveline-art opened issue: [1884](https://github.com/hackforla/website/issues/1884) at 2021-07-03 07:44 AM PDT -Aveline-art,2021-07-03T15:10:10Z,- Aveline-art commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873421437) at 2021-07-03 08:10 AM PDT -Aveline-art,2021-07-04T16:54:14Z,- Aveline-art commented on issue: [1787](https://github.com/hackforla/website/issues/1787#issuecomment-873625005) at 2021-07-04 09:54 AM PDT -Aveline-art,2021-07-04T18:41:01Z,- Aveline-art pull request merged: [1834](https://github.com/hackforla/website/pull/1834#event-4975396496) at 2021-07-04 11:41 AM PDT -Aveline-art,2021-07-04T22:19:25Z,- Aveline-art commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-873673330) at 2021-07-04 03:19 PM PDT -Aveline-art,2021-07-04T22:54:13Z,- Aveline-art opened issue: [1891](https://github.com/hackforla/website/issues/1891) at 2021-07-04 03:54 PM PDT -Aveline-art,2021-07-04T23:25:15Z,- Aveline-art commented on issue: [1724](https://github.com/hackforla/website/issues/1724#issuecomment-873683350) at 2021-07-04 04:25 PM PDT -Aveline-art,2021-07-04T23:30:43Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-873684556) at 2021-07-04 04:30 PM PDT -Aveline-art,2021-07-04T23:31:17Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-873684690) at 2021-07-04 04:31 PM PDT -Aveline-art,2021-07-05T00:01:11Z,- Aveline-art opened issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-07-04 05:01 PM PDT -Aveline-art,2021-07-05T05:42:25Z,- Aveline-art closed issue as completed: [1724](https://github.com/hackforla/website/issues/1724#event-4976361560) at 2021-07-04 10:42 PM PDT -Aveline-art,2021-07-05T05:53:54Z,- Aveline-art commented on issue: [1884](https://github.com/hackforla/website/issues/1884#issuecomment-873822700) at 2021-07-04 10:53 PM PDT -Aveline-art,2021-07-05T05:53:54Z,- Aveline-art closed issue as completed: [1884](https://github.com/hackforla/website/issues/1884#event-4976391439) at 2021-07-04 10:53 PM PDT -Aveline-art,2021-07-05T05:55:31Z,- Aveline-art commented on issue: [1847](https://github.com/hackforla/website/issues/1847#issuecomment-873823309) at 2021-07-04 10:55 PM PDT -Aveline-art,2021-07-05T05:55:31Z,- Aveline-art closed issue as completed: [1847](https://github.com/hackforla/website/issues/1847#event-4976395806) at 2021-07-04 10:55 PM PDT -Aveline-art,2021-07-05T23:02:47Z,- Aveline-art assigned to issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-870261064) at 2021-07-05 04:02 PM PDT -Aveline-art,2021-07-06T20:07:17Z,- Aveline-art commented on pull request: [1882](https://github.com/hackforla/website/pull/1882#issuecomment-875047077) at 2021-07-06 01:07 PM PDT -Aveline-art,2021-07-07T00:25:02Z,- Aveline-art opened pull request: [1895](https://github.com/hackforla/website/pull/1895) at 2021-07-06 05:25 PM PDT -Aveline-art,2021-07-07T17:51:42Z,- Aveline-art pull request merged: [1895](https://github.com/hackforla/website/pull/1895#event-4990620861) at 2021-07-07 10:51 AM PDT -Aveline-art,2021-07-08T02:34:58Z,- Aveline-art submitted pull request review: [1880](https://github.com/hackforla/website/pull/1880#pullrequestreview-701590373) at 2021-07-07 07:34 PM PDT -Aveline-art,2021-07-08T19:00:50Z,- Aveline-art commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-876672507) at 2021-07-08 12:00 PM PDT -Aveline-art,2021-07-08T19:20:09Z,- Aveline-art opened issue: [1904](https://github.com/hackforla/website/issues/1904) at 2021-07-08 12:20 PM PDT -Aveline-art,2021-07-08T19:32:45Z,- Aveline-art commented on pull request: [1633](https://github.com/hackforla/website/pull/1633#issuecomment-876691302) at 2021-07-08 12:32 PM PDT -Aveline-art,2021-07-08T19:34:47Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-876692433) at 2021-07-08 12:34 PM PDT -Aveline-art,2021-07-08T23:19:42Z,- Aveline-art commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-876804499) at 2021-07-08 04:19 PM PDT -Aveline-art,2021-07-08T23:51:36Z,- Aveline-art opened pull request: [1905](https://github.com/hackforla/website/pull/1905) at 2021-07-08 04:51 PM PDT -Aveline-art,2021-07-08T23:53:08Z,- Aveline-art commented on pull request: [1905](https://github.com/hackforla/website/pull/1905#issuecomment-876814699) at 2021-07-08 04:53 PM PDT -Aveline-art,2021-07-09T02:15:06Z,- Aveline-art closed issue by PR 1903: [1524](https://github.com/hackforla/website/issues/1524#event-4997971018) at 2021-07-08 07:15 PM PDT -Aveline-art,2021-07-09T18:17:15Z,- Aveline-art opened pull request: [1909](https://github.com/hackforla/website/pull/1909) at 2021-07-09 11:17 AM PDT -Aveline-art,2021-07-09T18:43:41Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-877385041) at 2021-07-09 11:43 AM PDT -Aveline-art,2021-07-09T23:22:04Z,- Aveline-art submitted pull request review: [1880](https://github.com/hackforla/website/pull/1880#pullrequestreview-703440764) at 2021-07-09 04:22 PM PDT -Aveline-art,2021-07-09T23:22:16Z,- Aveline-art closed issue by PR 1880: [1871](https://github.com/hackforla/website/issues/1871#event-5002557982) at 2021-07-09 04:22 PM PDT -Aveline-art,2021-07-09T23:23:40Z,- Aveline-art closed issue by PR 1870: [1835](https://github.com/hackforla/website/issues/1835#event-5002560170) at 2021-07-09 04:23 PM PDT -Aveline-art,2021-07-09T23:24:22Z,- Aveline-art closed issue by PR 1882: [1873](https://github.com/hackforla/website/issues/1873#event-5002561282) at 2021-07-09 04:24 PM PDT -Aveline-art,2021-07-09T23:25:30Z,- Aveline-art closed issue by PR 1894: [1825](https://github.com/hackforla/website/issues/1825#event-5002563014) at 2021-07-09 04:25 PM PDT -Aveline-art,2021-07-09T23:27:43Z,- Aveline-art closed issue by PR 1902: [1856](https://github.com/hackforla/website/issues/1856#event-5002566242) at 2021-07-09 04:27 PM PDT -Aveline-art,2021-07-09T23:28:19Z,- Aveline-art closed issue by PR 1906: [1572](https://github.com/hackforla/website/issues/1572#event-5002567306) at 2021-07-09 04:28 PM PDT -Aveline-art,2021-07-10T15:29:57Z,- Aveline-art commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877656061) at 2021-07-10 08:29 AM PDT -Aveline-art,2021-07-10T17:47:25Z,- Aveline-art commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-877676139) at 2021-07-10 10:47 AM PDT -Aveline-art,2021-07-10T18:33:44Z,- Aveline-art commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-877683404) at 2021-07-10 11:33 AM PDT -Aveline-art,2021-07-11T19:10:52Z,- Aveline-art commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877847361) at 2021-07-11 12:10 PM PDT -Aveline-art,2021-07-11T23:47:16Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-877880590) at 2021-07-11 04:47 PM PDT -Aveline-art,2021-07-12T01:24:50Z,- Aveline-art closed issue by PR 1915: [1851](https://github.com/hackforla/website/issues/1851#event-5004782846) at 2021-07-11 06:24 PM PDT -Aveline-art,2021-07-12T01:25:33Z,- Aveline-art closed issue by PR 1913: [1890](https://github.com/hackforla/website/issues/1890#event-5004784287) at 2021-07-11 06:25 PM PDT -Aveline-art,2021-07-12T05:02:23Z,- Aveline-art pull request merged: [1905](https://github.com/hackforla/website/pull/1905#event-5005238803) at 2021-07-11 10:02 PM PDT -Aveline-art,2021-07-12T05:04:21Z,- Aveline-art opened pull request: [1925](https://github.com/hackforla/website/pull/1925) at 2021-07-11 10:04 PM PDT -Aveline-art,2021-07-12T05:04:28Z,- Aveline-art pull request merged: [1925](https://github.com/hackforla/website/pull/1925#event-5005244801) at 2021-07-11 10:04 PM PDT -Aveline-art,2021-07-12T05:07:03Z,- Aveline-art opened pull request: [1926](https://github.com/hackforla/website/pull/1926) at 2021-07-11 10:07 PM PDT -Aveline-art,2021-07-12T14:53:14Z,- Aveline-art commented on issue: [1908](https://github.com/hackforla/website/issues/1908#issuecomment-878345601) at 2021-07-12 07:53 AM PDT -Aveline-art,2021-07-12T15:07:51Z,- Aveline-art commented on pull request: [1922](https://github.com/hackforla/website/pull/1922#issuecomment-878357575) at 2021-07-12 08:07 AM PDT -Aveline-art,2021-07-12T15:08:00Z,- Aveline-art closed issue by PR 1922: [1580](https://github.com/hackforla/website/issues/1580#event-5008135944) at 2021-07-12 08:08 AM PDT -Aveline-art,2021-07-12T15:12:43Z,- Aveline-art commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-878361832) at 2021-07-12 08:12 AM PDT -Aveline-art,2021-07-12T15:12:43Z,- Aveline-art closed issue as completed: [1352](https://github.com/hackforla/website/issues/1352#event-5008165872) at 2021-07-12 08:12 AM PDT -Aveline-art,2021-07-12T15:27:51Z,- Aveline-art opened issue: [1927](https://github.com/hackforla/website/issues/1927) at 2021-07-12 08:27 AM PDT -Aveline-art,2021-07-12T22:47:22Z,- Aveline-art pull request merged: [1926](https://github.com/hackforla/website/pull/1926#event-5010204432) at 2021-07-12 03:47 PM PDT -Aveline-art,2021-07-12T22:48:17Z,- Aveline-art opened issue: [1930](https://github.com/hackforla/website/issues/1930) at 2021-07-12 03:48 PM PDT -Aveline-art,2021-07-12T22:50:31Z,- Aveline-art opened pull request: [1931](https://github.com/hackforla/website/pull/1931) at 2021-07-12 03:50 PM PDT -Aveline-art,2021-07-12T22:56:33Z,- Aveline-art opened pull request: [1932](https://github.com/hackforla/website/pull/1932) at 2021-07-12 03:56 PM PDT -Aveline-art,2021-07-12T22:57:11Z,- Aveline-art pull request closed w/o merging: [1932](https://github.com/hackforla/website/pull/1932#event-5010231335) at 2021-07-12 03:57 PM PDT -Aveline-art,2021-07-12T22:57:17Z,- Aveline-art closed issue as completed: [1930](https://github.com/hackforla/website/issues/1930#event-5010231581) at 2021-07-12 03:57 PM PDT -Aveline-art,2021-07-13T16:03:55Z,- Aveline-art commented on pull request: [1909](https://github.com/hackforla/website/pull/1909#issuecomment-879213044) at 2021-07-13 09:03 AM PDT -Aveline-art,2021-07-13T16:07:52Z,- Aveline-art commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879216148) at 2021-07-13 09:07 AM PDT -Aveline-art,2021-07-13T20:12:23Z,- Aveline-art commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-879370093) at 2021-07-13 01:12 PM PDT -Aveline-art,2021-07-13T21:11:05Z,- Aveline-art commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-879405910) at 2021-07-13 02:11 PM PDT -Aveline-art,2021-07-14T01:59:59Z,- Aveline-art commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879525845) at 2021-07-13 06:59 PM PDT -Aveline-art,2021-07-14T04:32:53Z,- Aveline-art commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-879578683) at 2021-07-13 09:32 PM PDT -Aveline-art,2021-07-14T05:15:38Z,- Aveline-art pull request merged: [1909](https://github.com/hackforla/website/pull/1909#event-5017512682) at 2021-07-13 10:15 PM PDT -Aveline-art,2021-07-14T16:31:34Z,- Aveline-art commented on pull request: [1938](https://github.com/hackforla/website/pull/1938#issuecomment-880038582) at 2021-07-14 09:31 AM PDT -Aveline-art,2021-07-14T17:43:39Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-880086420) at 2021-07-14 10:43 AM PDT -Aveline-art,2021-07-14T18:00:58Z,- Aveline-art opened issue: [1939](https://github.com/hackforla/website/issues/1939) at 2021-07-14 11:00 AM PDT -Aveline-art,2021-07-14T18:21:17Z,- Aveline-art opened issue: [1940](https://github.com/hackforla/website/issues/1940) at 2021-07-14 11:21 AM PDT -Aveline-art,2021-07-14T18:26:28Z,- Aveline-art commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-880114724) at 2021-07-14 11:26 AM PDT -Aveline-art,2021-07-14T18:34:52Z,- Aveline-art opened issue: [1941](https://github.com/hackforla/website/issues/1941) at 2021-07-14 11:34 AM PDT -Aveline-art,2021-07-14T18:40:25Z,- Aveline-art commented on issue: [1941](https://github.com/hackforla/website/issues/1941#issuecomment-880123694) at 2021-07-14 11:40 AM PDT -Aveline-art,2021-07-16T02:13:06Z,- Aveline-art assigned to issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-07-15 07:13 PM PDT -Aveline-art,2021-07-16T16:01:44Z,- Aveline-art opened issue: [1956](https://github.com/hackforla/website/issues/1956) at 2021-07-16 09:01 AM PDT -Aveline-art,2021-07-16T16:01:44Z,- Aveline-art assigned to issue: [1956](https://github.com/hackforla/website/issues/1956) at 2021-07-16 09:01 AM PDT -Aveline-art,2021-07-16T16:10:10Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-881559849) at 2021-07-16 09:10 AM PDT -Aveline-art,2021-07-16T16:33:30Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-881574084) at 2021-07-16 09:33 AM PDT -Aveline-art,2021-07-16T16:59:52Z,- Aveline-art unassigned from issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-07-16 09:59 AM PDT -Aveline-art,2021-07-16T17:36:33Z,- Aveline-art submitted pull request review: [1917](https://github.com/hackforla/website/pull/1917#pullrequestreview-708614012) at 2021-07-16 10:36 AM PDT -Aveline-art,2021-07-16T17:58:22Z,- Aveline-art commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-881621240) at 2021-07-16 10:58 AM PDT -Aveline-art,2021-07-16T23:56:30Z,- Aveline-art assigned to issue: [1939](https://github.com/hackforla/website/issues/1939) at 2021-07-16 04:56 PM PDT -Aveline-art,2021-07-17T00:06:12Z,- Aveline-art opened pull request: [1959](https://github.com/hackforla/website/pull/1959) at 2021-07-16 05:06 PM PDT -Aveline-art,2021-07-17T00:08:31Z,- Aveline-art closed issue by PR 1965: [1939](https://github.com/hackforla/website/issues/1939#event-5033234743) at 2021-07-16 05:08 PM PDT -Aveline-art,2021-07-17T00:08:32Z,- Aveline-art pull request merged: [1959](https://github.com/hackforla/website/pull/1959#event-5033234745) at 2021-07-16 05:08 PM PDT -Aveline-art,2021-07-17T00:11:09Z,- Aveline-art opened pull request: [1960](https://github.com/hackforla/website/pull/1960) at 2021-07-16 05:11 PM PDT -Aveline-art,2021-07-17T00:12:02Z,- Aveline-art pull request closed w/o merging: [1960](https://github.com/hackforla/website/pull/1960#event-5033240268) at 2021-07-16 05:12 PM PDT -Aveline-art,2021-07-17T00:15:46Z,- Aveline-art opened pull request: [1961](https://github.com/hackforla/website/pull/1961) at 2021-07-16 05:15 PM PDT -Aveline-art,2021-07-17T00:16:40Z,- Aveline-art pull request closed w/o merging: [1961](https://github.com/hackforla/website/pull/1961#event-5033245893) at 2021-07-16 05:16 PM PDT -Aveline-art,2021-07-17T00:16:53Z,- Aveline-art opened pull request: [1962](https://github.com/hackforla/website/pull/1962) at 2021-07-16 05:16 PM PDT -Aveline-art,2021-07-17T00:17:08Z,- Aveline-art pull request merged: [1962](https://github.com/hackforla/website/pull/1962#event-5033246633) at 2021-07-16 05:17 PM PDT -Aveline-art,2021-07-17T00:18:26Z,- Aveline-art reopened issue: [1939](https://github.com/hackforla/website/issues/1939#event-5033234743) at 2021-07-16 05:18 PM PDT -Aveline-art,2021-07-17T00:19:25Z,- Aveline-art commented on issue: [1939](https://github.com/hackforla/website/issues/1939#issuecomment-881782080) at 2021-07-16 05:19 PM PDT -Aveline-art,2021-07-17T00:31:15Z,- Aveline-art closed issue by PR 1897: [1717](https://github.com/hackforla/website/issues/1717#event-5033263408) at 2021-07-16 05:31 PM PDT -Aveline-art,2021-07-17T14:07:14Z,- Aveline-art commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-881904815) at 2021-07-17 07:07 AM PDT -Aveline-art,2021-07-17T23:38:05Z,- Aveline-art commented on issue: [1939](https://github.com/hackforla/website/issues/1939#issuecomment-881974257) at 2021-07-17 04:38 PM PDT -Aveline-art,2021-07-18T05:45:32Z,- Aveline-art opened pull request: [1965](https://github.com/hackforla/website/pull/1965) at 2021-07-17 10:45 PM PDT -Aveline-art,2021-07-18T05:53:26Z,- Aveline-art closed issue by PR 1965: [1939](https://github.com/hackforla/website/issues/1939#event-5034700716) at 2021-07-17 10:53 PM PDT -Aveline-art,2021-07-18T05:53:26Z,- Aveline-art pull request merged: [1965](https://github.com/hackforla/website/pull/1965#event-5034700719) at 2021-07-17 10:53 PM PDT -Aveline-art,2021-07-18T05:54:07Z,- Aveline-art opened pull request: [1966](https://github.com/hackforla/website/pull/1966) at 2021-07-17 10:54 PM PDT -Aveline-art,2021-07-18T05:55:41Z,- Aveline-art commented on pull request: [1966](https://github.com/hackforla/website/pull/1966#issuecomment-882003708) at 2021-07-17 10:55 PM PDT -Aveline-art,2021-07-18T05:55:41Z,- Aveline-art pull request closed w/o merging: [1966](https://github.com/hackforla/website/pull/1966#event-5034701957) at 2021-07-17 10:55 PM PDT -Aveline-art,2021-07-18T06:00:04Z,- Aveline-art commented on pull request: [1965](https://github.com/hackforla/website/pull/1965#issuecomment-882004055) at 2021-07-17 11:00 PM PDT -Aveline-art,2021-07-18T18:35:46Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-882099722) at 2021-07-18 11:35 AM PDT -Aveline-art,2021-07-18T18:39:08Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-882100090) at 2021-07-18 11:39 AM PDT -Aveline-art,2021-07-18T19:04:26Z,- Aveline-art commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-882103078) at 2021-07-18 12:04 PM PDT -Aveline-art,2021-07-18T19:09:20Z,- Aveline-art commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-882103738) at 2021-07-18 12:09 PM PDT -Aveline-art,2021-07-18T19:11:29Z,- Aveline-art commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-882104061) at 2021-07-18 12:11 PM PDT -Aveline-art,2021-07-18T19:13:25Z,- Aveline-art commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-882104286) at 2021-07-18 12:13 PM PDT -Aveline-art,2021-07-19T14:31:03Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-882597236) at 2021-07-19 07:31 AM PDT -Aveline-art,2021-07-19T21:06:16Z,- Aveline-art commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-882859177) at 2021-07-19 02:06 PM PDT -Aveline-art,2021-07-19T21:07:58Z,- Aveline-art opened issue: [1976](https://github.com/hackforla/website/issues/1976) at 2021-07-19 02:07 PM PDT -Aveline-art,2021-07-19T21:08:04Z,- Aveline-art opened issue: [1977](https://github.com/hackforla/website/issues/1977) at 2021-07-19 02:08 PM PDT -Aveline-art,2021-07-20T03:04:10Z,- Aveline-art submitted pull request review: [1964](https://github.com/hackforla/website/pull/1964#pullrequestreview-710140513) at 2021-07-19 08:04 PM PDT -Aveline-art,2021-07-21T02:59:14Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-883847334) at 2021-07-20 07:59 PM PDT -Aveline-art,2021-07-21T05:21:19Z,- Aveline-art opened issue: [1992](https://github.com/hackforla/website/issues/1992) at 2021-07-20 10:21 PM PDT -Aveline-art,2021-07-21T05:29:23Z,- Aveline-art commented on issue: [1992](https://github.com/hackforla/website/issues/1992#issuecomment-883902038) at 2021-07-20 10:29 PM PDT -Aveline-art,2021-07-21T14:46:33Z,- Aveline-art submitted pull request review: [1964](https://github.com/hackforla/website/pull/1964#pullrequestreview-711754958) at 2021-07-21 07:46 AM PDT -Aveline-art,2021-07-21T15:05:33Z,- Aveline-art submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-711791071) at 2021-07-21 08:05 AM PDT -Aveline-art,2021-07-22T03:46:53Z,- Aveline-art closed issue by PR 1967: [1583](https://github.com/hackforla/website/issues/1583#event-5053479691) at 2021-07-21 08:46 PM PDT -Aveline-art,2021-07-22T03:48:49Z,- Aveline-art commented on pull request: [1967](https://github.com/hackforla/website/pull/1967#issuecomment-884638633) at 2021-07-21 08:48 PM PDT -Aveline-art,2021-07-23T04:46:51Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-885396261) at 2021-07-22 09:46 PM PDT -Aveline-art,2021-07-23T22:18:52Z,- Aveline-art closed issue by PR 1964: [1551](https://github.com/hackforla/website/issues/1551#event-5063318158) at 2021-07-23 03:18 PM PDT -Aveline-art,2021-07-24T16:33:29Z,- Aveline-art opened pull request: [2006](https://github.com/hackforla/website/pull/2006) at 2021-07-24 09:33 AM PDT -Aveline-art,2021-07-25T19:45:46Z,- Aveline-art opened issue: [2009](https://github.com/hackforla/website/issues/2009) at 2021-07-25 12:45 PM PDT -Aveline-art,2021-07-25T19:45:53Z,- Aveline-art assigned to issue: [2009](https://github.com/hackforla/website/issues/2009) at 2021-07-25 12:45 PM PDT -Aveline-art,2021-07-25T20:32:07Z,- Aveline-art commented on issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-886254096) at 2021-07-25 01:32 PM PDT -Aveline-art,2021-07-25T20:40:25Z,- Aveline-art commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-886254983) at 2021-07-25 01:40 PM PDT -Aveline-art,2021-07-25T20:41:46Z,- Aveline-art commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255133) at 2021-07-25 01:41 PM PDT -Aveline-art,2021-07-25T20:42:07Z,- Aveline-art commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255180) at 2021-07-25 01:42 PM PDT -Aveline-art,2021-07-25T20:43:10Z,- Aveline-art unassigned from issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-886254096) at 2021-07-25 01:43 PM PDT -Aveline-art,2021-07-25T20:45:19Z,- Aveline-art commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-886255500) at 2021-07-25 01:45 PM PDT -Aveline-art,2021-07-27T23:12:22Z,- Aveline-art opened issue: [2013](https://github.com/hackforla/website/issues/2013) at 2021-07-27 04:12 PM PDT -Aveline-art,2021-07-27T23:37:34Z,- Aveline-art assigned to issue: [2014](https://github.com/hackforla/website/issues/2014) at 2021-07-27 04:37 PM PDT -Aveline-art,2021-07-28T03:46:01Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-716554962) at 2021-07-27 08:46 PM PDT -Aveline-art,2021-07-28T19:35:52Z,- Aveline-art commented on issue: [1974](https://github.com/hackforla/website/issues/1974#issuecomment-888568255) at 2021-07-28 12:35 PM PDT -Aveline-art,2021-07-29T22:09:19Z,- Aveline-art closed issue by PR 2001: [1561](https://github.com/hackforla/website/issues/1561#event-5088536801) at 2021-07-29 03:09 PM PDT -Aveline-art,2021-07-29T22:30:05Z,- Aveline-art submitted pull request review: [2012](https://github.com/hackforla/website/pull/2012#pullrequestreview-718584816) at 2021-07-29 03:30 PM PDT -Aveline-art,2021-07-30T03:49:51Z,- Aveline-art closed issue by PR 2003: [1874](https://github.com/hackforla/website/issues/1874#event-5089307432) at 2021-07-29 08:49 PM PDT -Aveline-art,2021-07-30T18:59:48Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-890092133) at 2021-07-30 11:59 AM PDT -Aveline-art,2021-07-30T19:03:35Z,- Aveline-art commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-890094393) at 2021-07-30 12:03 PM PDT -Aveline-art,2021-07-30T19:05:58Z,- Aveline-art commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890095704) at 2021-07-30 12:05 PM PDT -Aveline-art,2021-07-31T16:21:00Z,- Aveline-art opened issue: [2027](https://github.com/hackforla/website/issues/2027) at 2021-07-31 09:21 AM PDT -Aveline-art,2021-07-31T16:32:26Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890372433) at 2021-07-31 09:32 AM PDT -Aveline-art,2021-07-31T20:07:07Z,- Aveline-art submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-719600566) at 2021-07-31 01:07 PM PDT -Aveline-art,2021-08-01T16:38:25Z,- Aveline-art commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890551228) at 2021-08-01 09:38 AM PDT -Aveline-art,2021-08-01T19:02:36Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890569784) at 2021-08-01 12:02 PM PDT -Aveline-art,2021-08-01T21:24:35Z,- Aveline-art submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-719698884) at 2021-08-01 02:24 PM PDT -Aveline-art,2021-08-01T21:34:42Z,- Aveline-art opened pull request: [2030](https://github.com/hackforla/website/pull/2030) at 2021-08-01 02:34 PM PDT -Aveline-art,2021-08-01T21:34:57Z,- Aveline-art pull request merged: [2030](https://github.com/hackforla/website/pull/2030#event-5095897707) at 2021-08-01 02:34 PM PDT -Aveline-art,2021-08-01T22:29:15Z,- Aveline-art opened pull request: [2031](https://github.com/hackforla/website/pull/2031) at 2021-08-01 03:29 PM PDT -Aveline-art,2021-08-01T22:29:27Z,- Aveline-art assigned to issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-889491236) at 2021-08-01 03:29 PM PDT -Aveline-art,2021-08-01T22:43:11Z,- Aveline-art commented on pull request: [2031](https://github.com/hackforla/website/pull/2031#issuecomment-890598612) at 2021-08-01 03:43 PM PDT -Aveline-art,2021-08-01T23:12:33Z,- Aveline-art assigned to issue: [1956](https://github.com/hackforla/website/issues/1956#issuecomment-890602954) at 2021-08-01 04:12 PM PDT -Aveline-art,2021-08-01T23:39:54Z,- Aveline-art opened issue: [2032](https://github.com/hackforla/website/issues/2032) at 2021-08-01 04:39 PM PDT -Aveline-art,2021-08-01T23:39:55Z,- Aveline-art assigned to issue: [2032](https://github.com/hackforla/website/issues/2032) at 2021-08-01 04:39 PM PDT -Aveline-art,2021-08-02T01:28:09Z,- Aveline-art commented on issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890644868) at 2021-08-01 06:28 PM PDT -Aveline-art,2021-08-02T05:38:44Z,- Aveline-art assigned to issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890569784) at 2021-08-01 10:38 PM PDT -Aveline-art,2021-08-02T05:41:58Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-890732690) at 2021-08-01 10:41 PM PDT -Aveline-art,2021-08-02T06:26:32Z,- Aveline-art submitted pull request review: [2012](https://github.com/hackforla/website/pull/2012#pullrequestreview-719834241) at 2021-08-01 11:26 PM PDT -Aveline-art,2021-08-02T18:57:36Z,- Aveline-art opened pull request: [2036](https://github.com/hackforla/website/pull/2036) at 2021-08-02 11:57 AM PDT -Aveline-art,2021-08-02T18:58:37Z,- Aveline-art pull request closed w/o merging: [2036](https://github.com/hackforla/website/pull/2036#event-5100755026) at 2021-08-02 11:58 AM PDT -Aveline-art,2021-08-02T20:14:07Z,- Aveline-art commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-891302656) at 2021-08-02 01:14 PM PDT -Aveline-art,2021-08-02T20:16:48Z,- Aveline-art commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-891304544) at 2021-08-02 01:16 PM PDT -Aveline-art,2021-08-03T03:05:40Z,- Aveline-art submitted pull request review: [2012](https://github.com/hackforla/website/pull/2012#pullrequestreview-720740197) at 2021-08-02 08:05 PM PDT -Aveline-art,2021-08-03T03:06:15Z,- Aveline-art closed issue by PR 2012: [1997](https://github.com/hackforla/website/issues/1997#event-5102224206) at 2021-08-02 08:06 PM PDT -Aveline-art,2021-08-03T03:23:40Z,- Aveline-art commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-891489006) at 2021-08-02 08:23 PM PDT -Aveline-art,2021-08-03T04:55:33Z,- Aveline-art closed issue by PR 2022: [1973](https://github.com/hackforla/website/issues/1973#event-5102482515) at 2021-08-02 09:55 PM PDT -Aveline-art,2021-08-03T14:52:24Z,- Aveline-art closed issue by PR 1986: [1710](https://github.com/hackforla/website/issues/1710#event-5105353084) at 2021-08-03 07:52 AM PDT -Aveline-art,2021-08-03T15:31:14Z,- Aveline-art opened pull request: [2039](https://github.com/hackforla/website/pull/2039) at 2021-08-03 08:31 AM PDT -Aveline-art,2021-08-03T15:32:07Z,- Aveline-art pull request closed w/o merging: [2039](https://github.com/hackforla/website/pull/2039#event-5105602073) at 2021-08-03 08:32 AM PDT -Aveline-art,2021-08-03T22:04:06Z,- Aveline-art opened issue: [2058](https://github.com/hackforla/website/issues/2058) at 2021-08-03 03:04 PM PDT -Aveline-art,2021-08-04T01:28:23Z,- Aveline-art commented on pull request: [2035](https://github.com/hackforla/website/pull/2035#issuecomment-892287503) at 2021-08-03 06:28 PM PDT -Aveline-art,2021-08-04T03:07:23Z,- Aveline-art commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-892324902) at 2021-08-03 08:07 PM PDT -Aveline-art,2021-08-04T14:40:07Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722371368) at 2021-08-04 07:40 AM PDT -Aveline-art,2021-08-04T14:40:23Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722371682) at 2021-08-04 07:40 AM PDT -Aveline-art,2021-08-04T14:49:05Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722382490) at 2021-08-04 07:49 AM PDT -Aveline-art,2021-08-04T15:02:04Z,- Aveline-art submitted pull request review: [2006](https://github.com/hackforla/website/pull/2006#pullrequestreview-722398866) at 2021-08-04 08:02 AM PDT -Aveline-art,2021-08-04T16:25:20Z,- Aveline-art closed issue by PR 2006: [1956](https://github.com/hackforla/website/issues/1956#event-5112317121) at 2021-08-04 09:25 AM PDT -Aveline-art,2021-08-04T16:25:20Z,- Aveline-art pull request merged: [2006](https://github.com/hackforla/website/pull/2006#event-5112317137) at 2021-08-04 09:25 AM PDT -Aveline-art,2021-08-04T16:44:00Z,- Aveline-art commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-892809797) at 2021-08-04 09:44 AM PDT -Aveline-art,2021-08-04T16:50:57Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-892814226) at 2021-08-04 09:50 AM PDT -Aveline-art,2021-08-04T17:06:51Z,- Aveline-art submitted pull request review: [2035](https://github.com/hackforla/website/pull/2035#pullrequestreview-722532249) at 2021-08-04 10:06 AM PDT -Aveline-art,2021-08-04T17:21:10Z,- Aveline-art unassigned from issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-892814226) at 2021-08-04 10:21 AM PDT -Aveline-art,2021-08-04T18:25:49Z,- Aveline-art opened pull request: [2062](https://github.com/hackforla/website/pull/2062) at 2021-08-04 11:25 AM PDT -Aveline-art,2021-08-04T18:27:24Z,- Aveline-art pull request closed w/o merging: [2062](https://github.com/hackforla/website/pull/2062#event-5112953725) at 2021-08-04 11:27 AM PDT -Aveline-art,2021-08-05T00:04:29Z,- Aveline-art closed issue by PR 2038: [1944](https://github.com/hackforla/website/issues/1944#event-5114409143) at 2021-08-04 05:04 PM PDT -Aveline-art,2021-08-05T00:43:45Z,- Aveline-art opened issue: [2063](https://github.com/hackforla/website/issues/2063) at 2021-08-04 05:43 PM PDT -Aveline-art,2021-08-05T02:10:25Z,- Aveline-art closed issue by PR 2024: [1733](https://github.com/hackforla/website/issues/1733#event-5114771039) at 2021-08-04 07:10 PM PDT -Aveline-art,2021-08-05T02:11:03Z,- Aveline-art closed issue by PR 2028: [1872](https://github.com/hackforla/website/issues/1872#event-5114772964) at 2021-08-04 07:11 PM PDT -Aveline-art,2021-08-05T02:55:24Z,- Aveline-art submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-722891828) at 2021-08-04 07:55 PM PDT -Aveline-art,2021-08-05T15:08:09Z,- Aveline-art closed issue by PR 2035: [1974](https://github.com/hackforla/website/issues/1974#event-5118109985) at 2021-08-05 08:08 AM PDT -Aveline-art,2021-08-05T15:46:08Z,- Aveline-art opened issue: [2065](https://github.com/hackforla/website/issues/2065) at 2021-08-05 08:46 AM PDT -Aveline-art,2021-08-05T16:00:17Z,- Aveline-art closed issue as completed: [1818](https://github.com/hackforla/website/issues/1818#event-5118404923) at 2021-08-05 09:00 AM PDT -Aveline-art,2021-08-05T18:35:12Z,- Aveline-art submitted pull request review: [1951](https://github.com/hackforla/website/pull/1951#pullrequestreview-723678447) at 2021-08-05 11:35 AM PDT -Aveline-art,2021-08-05T18:35:24Z,- Aveline-art closed issue by PR 1677: [1427](https://github.com/hackforla/website/issues/1427#event-5119143990) at 2021-08-05 11:35 AM PDT -Aveline-art,2021-08-06T14:59:56Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-894320253) at 2021-08-06 07:59 AM PDT -Aveline-art,2021-08-06T15:24:21Z,- Aveline-art commented on pull request: [2067](https://github.com/hackforla/website/pull/2067#issuecomment-894335615) at 2021-08-06 08:24 AM PDT -Aveline-art,2021-08-06T15:42:14Z,- Aveline-art submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-724487803) at 2021-08-06 08:42 AM PDT -Aveline-art,2021-08-06T15:42:21Z,- Aveline-art closed issue by PR 2002: [1898](https://github.com/hackforla/website/issues/1898#event-5123593800) at 2021-08-06 08:42 AM PDT -Aveline-art,2021-08-06T18:46:20Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-894451391) at 2021-08-06 11:46 AM PDT -Aveline-art,2021-08-06T20:06:53Z,- Aveline-art reopened issue: [1824](https://github.com/hackforla/website/issues/1824#event-5017512673) at 2021-08-06 01:06 PM PDT -Aveline-art,2021-08-06T20:07:02Z,- Aveline-art closed issue by PR 1909: [1824](https://github.com/hackforla/website/issues/1824#event-5124608805) at 2021-08-06 01:07 PM PDT -Aveline-art,2021-08-07T00:44:56Z,- Aveline-art opened issue: [2068](https://github.com/hackforla/website/issues/2068) at 2021-08-06 05:44 PM PDT -Aveline-art,2021-08-07T00:54:03Z,- Aveline-art commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-894580755) at 2021-08-06 05:54 PM PDT -Aveline-art,2021-08-07T05:01:31Z,- Aveline-art commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-894605409) at 2021-08-06 10:01 PM PDT -Aveline-art,2021-08-07T05:19:11Z,- Aveline-art opened issue: [2069](https://github.com/hackforla/website/issues/2069) at 2021-08-06 10:19 PM PDT -Aveline-art,2021-08-07T05:23:05Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-894607328) at 2021-08-06 10:23 PM PDT -Aveline-art,2021-08-08T19:08:13Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-894841557) at 2021-08-08 12:08 PM PDT -Aveline-art,2021-08-09T00:10:56Z,- Aveline-art submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-724951247) at 2021-08-08 05:10 PM PDT -Aveline-art,2021-08-10T17:50:48Z,- Aveline-art commented on pull request: [2074](https://github.com/hackforla/website/pull/2074#issuecomment-896191500) at 2021-08-10 10:50 AM PDT -Aveline-art,2021-08-10T18:21:01Z,- Aveline-art commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-896212985) at 2021-08-10 11:21 AM PDT -Aveline-art,2021-08-10T18:21:01Z,- Aveline-art closed issue as completed: [759](https://github.com/hackforla/website/issues/759#event-5137017722) at 2021-08-10 11:21 AM PDT -Aveline-art,2021-08-10T18:22:01Z,- Aveline-art commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-896213676) at 2021-08-10 11:22 AM PDT -Aveline-art,2021-08-10T18:23:51Z,- Aveline-art commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-896214854) at 2021-08-10 11:23 AM PDT -Aveline-art,2021-08-10T18:40:25Z,- Aveline-art closed issue by PR 1928: [1908](https://github.com/hackforla/website/issues/1908#event-5137114061) at 2021-08-10 11:40 AM PDT -Aveline-art,2021-08-10T19:32:02Z,- Aveline-art submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-726768868) at 2021-08-10 12:32 PM PDT -Aveline-art,2021-08-10T19:54:14Z,- Aveline-art commented on issue: [2089](https://github.com/hackforla/website/issues/2089#issuecomment-896275683) at 2021-08-10 12:54 PM PDT -Aveline-art,2021-08-10T23:52:06Z,- Aveline-art submitted pull request review: [2067](https://github.com/hackforla/website/pull/2067#pullrequestreview-726933346) at 2021-08-10 04:52 PM PDT -Aveline-art,2021-08-10T23:52:13Z,- Aveline-art closed issue by PR 2067: [2058](https://github.com/hackforla/website/issues/2058#event-5138405503) at 2021-08-10 04:52 PM PDT -Aveline-art,2021-08-11T03:54:11Z,- Aveline-art submitted pull request review: [2060](https://github.com/hackforla/website/pull/2060#pullrequestreview-727019850) at 2021-08-10 08:54 PM PDT -Aveline-art,2021-08-11T03:54:37Z,- Aveline-art closed issue by PR 2060: [2013](https://github.com/hackforla/website/issues/2013#event-5139174943) at 2021-08-10 08:54 PM PDT -Aveline-art,2021-08-11T03:59:41Z,- Aveline-art opened issue: [2100](https://github.com/hackforla/website/issues/2100) at 2021-08-10 08:59 PM PDT -Aveline-art,2021-08-11T04:03:37Z,- Aveline-art opened issue: [2101](https://github.com/hackforla/website/issues/2101) at 2021-08-10 09:03 PM PDT -Aveline-art,2021-08-11T04:04:25Z,- Aveline-art commented on pull request: [2060](https://github.com/hackforla/website/pull/2060#issuecomment-896482315) at 2021-08-10 09:04 PM PDT -Aveline-art,2021-08-11T04:05:57Z,- Aveline-art commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896482953) at 2021-08-10 09:05 PM PDT -Aveline-art,2021-08-11T15:46:49Z,- Aveline-art commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896939484) at 2021-08-11 08:46 AM PDT -Aveline-art,2021-08-11T15:47:52Z,- Aveline-art commented on pull request: [2099](https://github.com/hackforla/website/pull/2099#issuecomment-896940253) at 2021-08-11 08:47 AM PDT -Aveline-art,2021-08-11T15:50:08Z,- Aveline-art commented on pull request: [2031](https://github.com/hackforla/website/pull/2031#issuecomment-896941946) at 2021-08-11 08:50 AM PDT -Aveline-art,2021-08-11T19:02:37Z,- Aveline-art commented on issue: [1981](https://github.com/hackforla/website/issues/1981#issuecomment-897075565) at 2021-08-11 12:02 PM PDT -Aveline-art,2021-08-12T18:09:12Z,- Aveline-art commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-897859297) at 2021-08-12 11:09 AM PDT -Aveline-art,2021-08-13T00:13:26Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-898056514) at 2021-08-12 05:13 PM PDT -Aveline-art,2021-08-13T15:23:41Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898540431) at 2021-08-13 08:23 AM PDT -Aveline-art,2021-08-13T15:29:55Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898544492) at 2021-08-13 08:29 AM PDT -Aveline-art,2021-08-13T15:37:22Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-898549414) at 2021-08-13 08:37 AM PDT -Aveline-art,2021-08-13T15:41:24Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898551874) at 2021-08-13 08:41 AM PDT -Aveline-art,2021-08-13T18:20:59Z,- Aveline-art pull request merged: [2031](https://github.com/hackforla/website/pull/2031#event-5157130289) at 2021-08-13 11:20 AM PDT -Aveline-art,2021-08-13T18:27:11Z,- Aveline-art opened issue: [2112](https://github.com/hackforla/website/issues/2112) at 2021-08-13 11:27 AM PDT -Aveline-art,2021-08-13T18:29:27Z,- Aveline-art commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-898645434) at 2021-08-13 11:29 AM PDT -Aveline-art,2021-08-13T18:34:04Z,- Aveline-art opened issue: [2113](https://github.com/hackforla/website/issues/2113) at 2021-08-13 11:34 AM PDT -Aveline-art,2021-08-13T18:39:38Z,- Aveline-art opened issue: [2114](https://github.com/hackforla/website/issues/2114) at 2021-08-13 11:39 AM PDT -Aveline-art,2021-08-13T19:26:12Z,- Aveline-art commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-898674538) at 2021-08-13 12:26 PM PDT -Aveline-art,2021-08-14T02:52:56Z,- Aveline-art submitted pull request review: [2099](https://github.com/hackforla/website/pull/2099#pullrequestreview-730046968) at 2021-08-13 07:52 PM PDT -Aveline-art,2021-08-14T02:53:03Z,- Aveline-art closed issue by PR 2099: [1978](https://github.com/hackforla/website/issues/1978#event-5158194462) at 2021-08-13 07:53 PM PDT -Aveline-art,2021-08-14T03:11:06Z,- Aveline-art commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-898807242) at 2021-08-13 08:11 PM PDT -Aveline-art,2021-08-14T17:43:32Z,- Aveline-art submitted pull request review: [2098](https://github.com/hackforla/website/pull/2098#pullrequestreview-730122699) at 2021-08-14 10:43 AM PDT -Aveline-art,2021-08-14T17:43:59Z,- Aveline-art closed issue by PR 2098: [2063](https://github.com/hackforla/website/issues/2063#event-5158958356) at 2021-08-14 10:43 AM PDT -Aveline-art,2021-08-14T17:50:24Z,- Aveline-art commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-898936771) at 2021-08-14 10:50 AM PDT -Aveline-art,2021-08-14T18:20:12Z,- Aveline-art opened issue: [2117](https://github.com/hackforla/website/issues/2117) at 2021-08-14 11:20 AM PDT -Aveline-art,2021-08-14T18:21:00Z,- Aveline-art submitted pull request review: [2103](https://github.com/hackforla/website/pull/2103#pullrequestreview-730124742) at 2021-08-14 11:21 AM PDT -Aveline-art,2021-08-14T18:21:15Z,- Aveline-art closed issue by PR 2103: [1584](https://github.com/hackforla/website/issues/1584#event-5158987131) at 2021-08-14 11:21 AM PDT -Aveline-art,2021-08-16T05:08:28Z,- Aveline-art commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-899217655) at 2021-08-15 10:08 PM PDT -Aveline-art,2021-08-16T05:20:10Z,- Aveline-art commented on pull request: [2121](https://github.com/hackforla/website/pull/2121#issuecomment-899222194) at 2021-08-15 10:20 PM PDT -Aveline-art,2021-08-16T05:22:02Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-899222801) at 2021-08-15 10:22 PM PDT -Aveline-art,2021-08-16T05:39:39Z,- Aveline-art commented on issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-899236184) at 2021-08-15 10:39 PM PDT -Aveline-art,2021-08-16T15:58:16Z,- Aveline-art commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-899623738) at 2021-08-16 08:58 AM PDT -Aveline-art,2021-08-17T16:52:28Z,- Aveline-art commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-900463371) at 2021-08-17 09:52 AM PDT -Aveline-art,2021-08-18T02:07:42Z,- Aveline-art commented on pull request: [2070](https://github.com/hackforla/website/pull/2070#issuecomment-900756508) at 2021-08-17 07:07 PM PDT -Aveline-art,2021-08-18T05:43:53Z,- Aveline-art commented on issue: [2116](https://github.com/hackforla/website/issues/2116#issuecomment-900828024) at 2021-08-17 10:43 PM PDT -Aveline-art,2021-08-18T06:17:16Z,- Aveline-art opened issue: [2127](https://github.com/hackforla/website/issues/2127) at 2021-08-17 11:17 PM PDT -Aveline-art,2021-08-18T18:53:23Z,- Aveline-art commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-901350940) at 2021-08-18 11:53 AM PDT -Aveline-art,2021-08-20T05:11:49Z,- Aveline-art opened pull request: [2134](https://github.com/hackforla/website/pull/2134) at 2021-08-19 10:11 PM PDT -Aveline-art,2021-08-20T05:19:32Z,- Aveline-art pull request closed w/o merging: [2134](https://github.com/hackforla/website/pull/2134#event-5184842636) at 2021-08-19 10:19 PM PDT -Aveline-art,2021-08-20T05:42:53Z,- Aveline-art opened pull request: [2139](https://github.com/hackforla/website/pull/2139) at 2021-08-19 10:42 PM PDT -Aveline-art,2021-08-20T05:43:47Z,- Aveline-art pull request merged: [2139](https://github.com/hackforla/website/pull/2139#event-5184907333) at 2021-08-19 10:43 PM PDT -Aveline-art,2021-08-20T06:01:01Z,- Aveline-art commented on pull request: [2132](https://github.com/hackforla/website/pull/2132#issuecomment-902452647) at 2021-08-19 11:01 PM PDT -Aveline-art,2021-08-20T06:14:49Z,- Aveline-art opened issue: [2141](https://github.com/hackforla/website/issues/2141) at 2021-08-19 11:14 PM PDT -Aveline-art,2021-08-20T17:47:38Z,- Aveline-art opened issue: [2145](https://github.com/hackforla/website/issues/2145) at 2021-08-20 10:47 AM PDT -Aveline-art,2021-08-20T17:54:45Z,- Aveline-art opened issue: [2146](https://github.com/hackforla/website/issues/2146) at 2021-08-20 10:54 AM PDT -Aveline-art,2021-08-20T17:56:24Z,- Aveline-art opened issue: [2147](https://github.com/hackforla/website/issues/2147) at 2021-08-20 10:56 AM PDT -Aveline-art,2021-08-20T17:59:36Z,- Aveline-art opened issue: [2148](https://github.com/hackforla/website/issues/2148) at 2021-08-20 10:59 AM PDT -Aveline-art,2021-08-20T19:07:50Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-902898709) at 2021-08-20 12:07 PM PDT -Aveline-art,2021-08-20T20:24:56Z,- Aveline-art commented on issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902938080) at 2021-08-20 01:24 PM PDT -Aveline-art,2021-08-21T00:09:12Z,- Aveline-art commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-903016147) at 2021-08-20 05:09 PM PDT -Aveline-art,2021-08-21T01:14:51Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-903029766) at 2021-08-20 06:14 PM PDT -Aveline-art,2021-08-21T01:27:18Z,- Aveline-art assigned to issue: [1970](https://github.com/hackforla/website/issues/1970) at 2021-08-20 06:27 PM PDT -Aveline-art,2021-08-21T01:37:55Z,- Aveline-art opened pull request: [2152](https://github.com/hackforla/website/pull/2152) at 2021-08-20 06:37 PM PDT -Aveline-art,2021-08-21T16:56:55Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-903144700) at 2021-08-21 09:56 AM PDT -Aveline-art,2021-08-21T18:03:28Z,- Aveline-art opened issue: [2153](https://github.com/hackforla/website/issues/2153) at 2021-08-21 11:03 AM PDT -Aveline-art,2021-08-21T18:08:07Z,- Aveline-art commented on issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-903154532) at 2021-08-21 11:08 AM PDT -Aveline-art,2021-08-21T18:16:37Z,- Aveline-art commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-903155600) at 2021-08-21 11:16 AM PDT -Aveline-art,2021-08-21T18:26:43Z,- Aveline-art opened issue: [2154](https://github.com/hackforla/website/issues/2154) at 2021-08-21 11:26 AM PDT -Aveline-art,2021-08-21T18:52:46Z,- Aveline-art opened issue: [2155](https://github.com/hackforla/website/issues/2155) at 2021-08-21 11:52 AM PDT -Aveline-art,2021-08-22T15:31:06Z,- Aveline-art commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-903286621) at 2021-08-22 08:31 AM PDT -Aveline-art,2021-08-23T19:17:01Z,- Aveline-art commented on issue: [2153](https://github.com/hackforla/website/issues/2153#issuecomment-904048389) at 2021-08-23 12:17 PM PDT -Aveline-art,2021-08-24T15:55:53Z,- Aveline-art closed issue by PR 2136: [2007](https://github.com/hackforla/website/issues/2007#event-5201586251) at 2021-08-24 08:55 AM PDT -Aveline-art,2021-08-24T18:21:50Z,- Aveline-art opened issue: [2172](https://github.com/hackforla/website/issues/2172) at 2021-08-24 11:21 AM PDT -Aveline-art,2021-08-24T18:46:32Z,- Aveline-art opened issue: [2173](https://github.com/hackforla/website/issues/2173) at 2021-08-24 11:46 AM PDT -Aveline-art,2021-08-24T18:51:30Z,- Aveline-art opened issue: [2174](https://github.com/hackforla/website/issues/2174) at 2021-08-24 11:51 AM PDT -Aveline-art,2021-08-24T18:57:20Z,- Aveline-art commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-904894268) at 2021-08-24 11:57 AM PDT -Aveline-art,2021-08-24T21:01:38Z,- Aveline-art commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-904971338) at 2021-08-24 02:01 PM PDT -Aveline-art,2021-08-25T01:44:33Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-905102890) at 2021-08-24 06:44 PM PDT -Aveline-art,2021-08-25T02:12:39Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-905114145) at 2021-08-24 07:12 PM PDT -Aveline-art,2021-08-25T04:16:34Z,- Aveline-art pull request merged: [2152](https://github.com/hackforla/website/pull/2152#event-5204214689) at 2021-08-24 09:16 PM PDT -Aveline-art,2021-08-25T18:42:21Z,- Aveline-art commented on pull request: [2140](https://github.com/hackforla/website/pull/2140#issuecomment-905782419) at 2021-08-25 11:42 AM PDT -Aveline-art,2021-08-25T20:17:52Z,- Aveline-art commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-905844309) at 2021-08-25 01:17 PM PDT -Aveline-art,2021-08-26T17:06:22Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-906587578) at 2021-08-26 10:06 AM PDT -Aveline-art,2021-08-26T17:06:25Z,- Aveline-art closed issue as completed: [2009](https://github.com/hackforla/website/issues/2009#event-5214251152) at 2021-08-26 10:06 AM PDT -Aveline-art,2021-08-26T17:41:28Z,- Aveline-art opened issue: [2182](https://github.com/hackforla/website/issues/2182) at 2021-08-26 10:41 AM PDT -Aveline-art,2021-08-26T17:51:36Z,- Aveline-art opened issue: [2183](https://github.com/hackforla/website/issues/2183) at 2021-08-26 10:51 AM PDT -Aveline-art,2021-08-27T01:20:56Z,- Aveline-art submitted pull request review: [2070](https://github.com/hackforla/website/pull/2070#pullrequestreview-740058631) at 2021-08-26 06:20 PM PDT -Aveline-art,2021-08-27T05:04:45Z,- Aveline-art commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906927880) at 2021-08-26 10:04 PM PDT -Aveline-art,2021-08-27T05:16:36Z,- Aveline-art commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-906932601) at 2021-08-26 10:16 PM PDT -Aveline-art,2021-08-27T17:42:58Z,- Aveline-art opened issue: [2188](https://github.com/hackforla/website/issues/2188) at 2021-08-27 10:42 AM PDT -Aveline-art,2021-08-27T18:08:07Z,- Aveline-art commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-907381101) at 2021-08-27 11:08 AM PDT -Aveline-art,2021-08-27T18:59:39Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-907409589) at 2021-08-27 11:59 AM PDT -Aveline-art,2021-08-27T20:11:12Z,- Aveline-art commented on issue: [2151](https://github.com/hackforla/website/issues/2151#issuecomment-907449864) at 2021-08-27 01:11 PM PDT -Aveline-art,2021-08-27T20:12:48Z,- Aveline-art commented on issue: [1988](https://github.com/hackforla/website/issues/1988#issuecomment-907450709) at 2021-08-27 01:12 PM PDT -Aveline-art,2021-08-28T01:39:13Z,- Aveline-art closed issue by PR 2157: [2092](https://github.com/hackforla/website/issues/2092#event-5221154740) at 2021-08-27 06:39 PM PDT -Aveline-art,2021-08-28T02:23:36Z,- Aveline-art submitted pull request review: [2011](https://github.com/hackforla/website/pull/2011#pullrequestreview-740969371) at 2021-08-27 07:23 PM PDT -Aveline-art,2021-08-28T03:48:44Z,- Aveline-art opened issue: [2194](https://github.com/hackforla/website/issues/2194) at 2021-08-27 08:48 PM PDT -Aveline-art,2021-08-28T04:05:55Z,- Aveline-art submitted pull request review: [2070](https://github.com/hackforla/website/pull/2070#pullrequestreview-740978171) at 2021-08-27 09:05 PM PDT -Aveline-art,2021-08-28T04:06:33Z,- Aveline-art closed issue by PR 2070: [1927](https://github.com/hackforla/website/issues/1927#event-5221274495) at 2021-08-27 09:06 PM PDT -Aveline-art,2021-08-29T17:54:10Z,- Aveline-art commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-907838439) at 2021-08-29 10:54 AM PDT -Aveline-art,2021-08-29T17:55:44Z,- Aveline-art commented on issue: [2082](https://github.com/hackforla/website/issues/2082#issuecomment-907838730) at 2021-08-29 10:55 AM PDT -Aveline-art,2021-08-30T00:45:58Z,- Aveline-art opened issue: [2206](https://github.com/hackforla/website/issues/2206) at 2021-08-29 05:45 PM PDT -Aveline-art,2021-08-30T00:55:53Z,- Aveline-art commented on issue: [2203](https://github.com/hackforla/website/issues/2203#issuecomment-907923981) at 2021-08-29 05:55 PM PDT -Aveline-art,2021-08-30T16:50:48Z,- Aveline-art submitted pull request review: [2181](https://github.com/hackforla/website/pull/2181#pullrequestreview-741859762) at 2021-08-30 09:50 AM PDT -Aveline-art,2021-08-30T16:50:54Z,- Aveline-art closed issue by PR 2181: [2026](https://github.com/hackforla/website/issues/2026#event-5227471617) at 2021-08-30 09:50 AM PDT -Aveline-art,2021-08-30T17:54:33Z,- Aveline-art commented on issue: [1728](https://github.com/hackforla/website/issues/1728#issuecomment-908557998) at 2021-08-30 10:54 AM PDT -Aveline-art,2021-08-30T17:54:42Z,- Aveline-art closed issue as completed: [1728](https://github.com/hackforla/website/issues/1728#event-5227783826) at 2021-08-30 10:54 AM PDT -Aveline-art,2021-08-30T17:56:10Z,- Aveline-art assigned to issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-901372018) at 2021-08-30 10:56 AM PDT -Aveline-art,2021-08-31T05:51:41Z,- Aveline-art assigned to issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-896973016) at 2021-08-30 10:51 PM PDT -Aveline-art,2021-09-01T17:25:52Z,- Aveline-art commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-910496140) at 2021-09-01 10:25 AM PDT -Aveline-art,2021-09-01T17:27:12Z,- Aveline-art submitted pull request review: [1957](https://github.com/hackforla/website/pull/1957#pullrequestreview-744207538) at 2021-09-01 10:27 AM PDT -Aveline-art,2021-09-03T00:27:49Z,- Aveline-art opened issue: [2215](https://github.com/hackforla/website/issues/2215) at 2021-09-02 05:27 PM PDT -Aveline-art,2021-09-03T01:03:14Z,- Aveline-art opened issue: [2216](https://github.com/hackforla/website/issues/2216) at 2021-09-02 06:03 PM PDT -Aveline-art,2021-09-03T01:24:52Z,- Aveline-art commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-912180289) at 2021-09-02 06:24 PM PDT -Aveline-art,2021-09-03T17:36:47Z,- Aveline-art commented on pull request: [2219](https://github.com/hackforla/website/pull/2219#issuecomment-912700180) at 2021-09-03 10:36 AM PDT -Aveline-art,2021-09-03T17:37:20Z,- Aveline-art commented on pull request: [2218](https://github.com/hackforla/website/pull/2218#issuecomment-912700488) at 2021-09-03 10:37 AM PDT -Aveline-art,2021-09-04T02:22:43Z,- Aveline-art commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-912892182) at 2021-09-03 07:22 PM PDT -Aveline-art,2021-09-04T02:45:31Z,- Aveline-art commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-912894859) at 2021-09-03 07:45 PM PDT -Aveline-art,2021-09-05T16:13:26Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-913183306) at 2021-09-05 09:13 AM PDT -Aveline-art,2021-09-05T17:06:23Z,- Aveline-art commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-913191598) at 2021-09-05 10:06 AM PDT -Aveline-art,2021-09-06T16:21:31Z,- Aveline-art submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-747348174) at 2021-09-06 09:21 AM PDT -Aveline-art,2021-09-06T19:26:29Z,- Aveline-art commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-913822847) at 2021-09-06 12:26 PM PDT -Aveline-art,2021-09-06T22:39:21Z,- Aveline-art commented on issue: [1988](https://github.com/hackforla/website/issues/1988#issuecomment-913875963) at 2021-09-06 03:39 PM PDT -Aveline-art,2021-09-06T22:39:23Z,- Aveline-art closed issue as completed: [1988](https://github.com/hackforla/website/issues/1988#event-5262698876) at 2021-09-06 03:39 PM PDT -Aveline-art,2021-09-06T22:46:56Z,- Aveline-art commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-913877096) at 2021-09-06 03:46 PM PDT -Aveline-art,2021-09-07T16:47:53Z,- Aveline-art opened issue: [2228](https://github.com/hackforla/website/issues/2228) at 2021-09-07 09:47 AM PDT -Aveline-art,2021-09-07T23:07:08Z,- Aveline-art opened pull request: [2229](https://github.com/hackforla/website/pull/2229) at 2021-09-07 04:07 PM PDT -Aveline-art,2021-09-08T01:31:57Z,- Aveline-art opened issue: [2231](https://github.com/hackforla/website/issues/2231) at 2021-09-07 06:31 PM PDT -Aveline-art,2021-09-08T01:38:47Z,- Aveline-art pull request merged: [2229](https://github.com/hackforla/website/pull/2229#event-5268963642) at 2021-09-07 06:38 PM PDT -Aveline-art,2021-09-08T20:21:50Z,- Aveline-art assigned to issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915542974) at 2021-09-08 01:21 PM PDT -Aveline-art,2021-09-08T20:21:55Z,- Aveline-art unassigned from issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915542974) at 2021-09-08 01:21 PM PDT -Aveline-art,2021-09-09T17:38:58Z,- Aveline-art opened issue: [2244](https://github.com/hackforla/website/issues/2244) at 2021-09-09 10:38 AM PDT -Aveline-art,2021-09-09T23:59:37Z,- Aveline-art submitted pull request review: [2223](https://github.com/hackforla/website/pull/2223#pullrequestreview-750938151) at 2021-09-09 04:59 PM PDT -Aveline-art,2021-09-10T04:12:36Z,- Aveline-art closed issue by PR 2223: [2101](https://github.com/hackforla/website/issues/2101#event-5282268925) at 2021-09-09 09:12 PM PDT -Aveline-art,2021-09-10T04:14:43Z,- Aveline-art submitted pull request review: [2217](https://github.com/hackforla/website/pull/2217#pullrequestreview-751033173) at 2021-09-09 09:14 PM PDT -Aveline-art,2021-09-10T04:34:38Z,- Aveline-art closed issue by PR 2230: [2177](https://github.com/hackforla/website/issues/2177#event-5282320057) at 2021-09-09 09:34 PM PDT -Aveline-art,2021-09-10T17:05:26Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-917063839) at 2021-09-10 10:05 AM PDT -Aveline-art,2021-09-10T17:05:26Z,- Aveline-art closed issue as completed: [2014](https://github.com/hackforla/website/issues/2014#event-5285601877) at 2021-09-10 10:05 AM PDT -Aveline-art,2021-09-10T17:35:18Z,- Aveline-art commented on issue: [2188](https://github.com/hackforla/website/issues/2188#issuecomment-917085983) at 2021-09-10 10:35 AM PDT -Aveline-art,2021-09-10T17:38:40Z,- Aveline-art commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-917088046) at 2021-09-10 10:38 AM PDT -Aveline-art,2021-09-10T17:49:10Z,- Aveline-art commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-917094607) at 2021-09-10 10:49 AM PDT -Aveline-art,2021-09-10T21:59:50Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-917238478) at 2021-09-10 02:59 PM PDT -Aveline-art,2021-09-12T21:36:15Z,- Aveline-art commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-917714750) at 2021-09-12 02:36 PM PDT -Aveline-art,2021-09-12T21:39:56Z,- Aveline-art commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-917715263) at 2021-09-12 02:39 PM PDT -Aveline-art,2021-09-12T21:51:04Z,- Aveline-art opened issue: [2251](https://github.com/hackforla/website/issues/2251) at 2021-09-12 02:51 PM PDT -Aveline-art,2021-09-13T01:11:44Z,- Aveline-art commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-917758345) at 2021-09-12 06:11 PM PDT -Aveline-art,2021-09-13T03:00:06Z,- Aveline-art commented on pull request: [2252](https://github.com/hackforla/website/pull/2252#issuecomment-917796006) at 2021-09-12 08:00 PM PDT -Aveline-art,2021-09-14T02:47:17Z,- Aveline-art commented on pull request: [2256](https://github.com/hackforla/website/pull/2256#issuecomment-918749416) at 2021-09-13 07:47 PM PDT -Aveline-art,2021-09-15T14:30:25Z,- Aveline-art opened issue: [2264](https://github.com/hackforla/website/issues/2264) at 2021-09-15 07:30 AM PDT -Aveline-art,2021-09-15T14:36:20Z,- Aveline-art opened issue: [2265](https://github.com/hackforla/website/issues/2265) at 2021-09-15 07:36 AM PDT -Aveline-art,2021-09-15T14:38:01Z,- Aveline-art opened issue: [2266](https://github.com/hackforla/website/issues/2266) at 2021-09-15 07:38 AM PDT -Aveline-art,2021-09-17T01:18:52Z,- Aveline-art commented on pull request: [2259](https://github.com/hackforla/website/pull/2259#issuecomment-921375736) at 2021-09-16 06:18 PM PDT -Aveline-art,2021-09-17T04:10:12Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-921443985) at 2021-09-16 09:10 PM PDT -Aveline-art,2021-09-17T06:18:51Z,- Aveline-art commented on issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-921530340) at 2021-09-16 11:18 PM PDT -Aveline-art,2021-09-18T03:27:28Z,- Aveline-art submitted pull request review: [2263](https://github.com/hackforla/website/pull/2263#pullrequestreview-757974262) at 2021-09-17 08:27 PM PDT -Aveline-art,2021-09-20T00:08:20Z,- Aveline-art commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-922560888) at 2021-09-19 05:08 PM PDT -Aveline-art,2021-09-20T02:02:18Z,- Aveline-art commented on issue: [2076](https://github.com/hackforla/website/issues/2076#issuecomment-922593530) at 2021-09-19 07:02 PM PDT -Aveline-art,2021-09-21T00:24:50Z,- Aveline-art commented on pull request: [2263](https://github.com/hackforla/website/pull/2263#issuecomment-923474751) at 2021-09-20 05:24 PM PDT -Aveline-art,2021-09-21T04:39:25Z,- Aveline-art submitted pull request review: [2284](https://github.com/hackforla/website/pull/2284#pullrequestreview-759294942) at 2021-09-20 09:39 PM PDT -Aveline-art,2021-09-21T04:39:43Z,- Aveline-art closed issue by PR 2284: [2244](https://github.com/hackforla/website/issues/2244#event-5332670501) at 2021-09-20 09:39 PM PDT -Aveline-art,2021-09-22T01:11:42Z,- Aveline-art opened issue: [2298](https://github.com/hackforla/website/issues/2298) at 2021-09-21 06:11 PM PDT -Aveline-art,2021-09-22T01:16:45Z,- Aveline-art opened issue: [2299](https://github.com/hackforla/website/issues/2299) at 2021-09-21 06:16 PM PDT -Aveline-art,2021-09-22T22:54:47Z,- Aveline-art submitted pull request review: [2302](https://github.com/hackforla/website/pull/2302#pullrequestreview-761474606) at 2021-09-22 03:54 PM PDT -Aveline-art,2021-09-22T23:26:11Z,- Aveline-art submitted pull request review: [2302](https://github.com/hackforla/website/pull/2302#pullrequestreview-761488755) at 2021-09-22 04:26 PM PDT -Aveline-art,2021-09-22T23:26:50Z,- Aveline-art closed issue by PR 2302: [2227](https://github.com/hackforla/website/issues/2227#event-5346492431) at 2021-09-22 04:26 PM PDT -Aveline-art,2021-09-23T02:58:02Z,- Aveline-art submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-761554914) at 2021-09-22 07:58 PM PDT -Aveline-art,2021-09-23T15:00:41Z,- Aveline-art reopened issue: [2020](https://github.com/hackforla/website/issues/2020#event-5137522852) at 2021-09-23 08:00 AM PDT -Aveline-art,2021-09-23T15:02:17Z,- Aveline-art commented on issue: [2301](https://github.com/hackforla/website/issues/2301#issuecomment-925898664) at 2021-09-23 08:02 AM PDT -Aveline-art,2021-09-23T15:02:17Z,- Aveline-art closed issue as completed: [2301](https://github.com/hackforla/website/issues/2301#event-5350542440) at 2021-09-23 08:02 AM PDT -Aveline-art,2021-09-23T15:04:53Z,- Aveline-art commented on issue: [2268](https://github.com/hackforla/website/issues/2268#issuecomment-925901095) at 2021-09-23 08:04 AM PDT -Aveline-art,2021-09-23T15:05:44Z,- Aveline-art commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-925901888) at 2021-09-23 08:05 AM PDT -Aveline-art,2021-09-24T16:48:26Z,- Aveline-art assigned to issue: [2304](https://github.com/hackforla/website/issues/2304) at 2021-09-24 09:48 AM PDT -Aveline-art,2021-09-24T17:08:25Z,- Aveline-art commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-926788582) at 2021-09-24 10:08 AM PDT -Aveline-art,2021-09-24T17:34:53Z,- Aveline-art commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-926805237) at 2021-09-24 10:34 AM PDT -Aveline-art,2021-09-24T17:51:38Z,- Aveline-art commented on issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-926815579) at 2021-09-24 10:51 AM PDT -Aveline-art,2021-09-24T18:11:04Z,- Aveline-art commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-926827631) at 2021-09-24 11:11 AM PDT -Aveline-art,2021-09-24T20:50:16Z,- Aveline-art submitted pull request review: [2263](https://github.com/hackforla/website/pull/2263#pullrequestreview-763465578) at 2021-09-24 01:50 PM PDT -Aveline-art,2021-09-24T20:50:25Z,- Aveline-art closed issue by PR 2263: [2078](https://github.com/hackforla/website/issues/2078#event-5358313182) at 2021-09-24 01:50 PM PDT -Aveline-art,2021-09-25T00:02:42Z,- Aveline-art commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-926975696) at 2021-09-24 05:02 PM PDT -Aveline-art,2021-09-26T18:02:01Z,- Aveline-art unassigned from issue: [2304](https://github.com/hackforla/website/issues/2304#issuecomment-926815579) at 2021-09-26 11:02 AM PDT -Aveline-art,2021-09-26T20:16:19Z,- Aveline-art submitted pull request review: [2252](https://github.com/hackforla/website/pull/2252#pullrequestreview-763729117) at 2021-09-26 01:16 PM PDT -Aveline-art,2021-09-28T05:27:26Z,- Aveline-art commented on pull request: [2310](https://github.com/hackforla/website/pull/2310#issuecomment-928846284) at 2021-09-27 10:27 PM PDT -Aveline-art,2021-09-28T05:27:39Z,- Aveline-art closed issue by PR 2310: [2258](https://github.com/hackforla/website/issues/2258#event-5371118280) at 2021-09-27 10:27 PM PDT -Aveline-art,2021-09-28T23:36:55Z,- Aveline-art unassigned from issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-924178692) at 2021-09-28 04:36 PM PDT -Aveline-art,2021-09-28T23:37:31Z,- Aveline-art unassigned from issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-927390901) at 2021-09-28 04:37 PM PDT -Aveline-art,2021-09-28T23:49:05Z,- Aveline-art commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-929704326) at 2021-09-28 04:49 PM PDT -Aveline-art,2021-09-29T00:50:02Z,- Aveline-art assigned to issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-912659251) at 2021-09-28 05:50 PM PDT -Aveline-art,2021-09-29T01:55:43Z,- Aveline-art commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-929757388) at 2021-09-28 06:55 PM PDT -Aveline-art,2021-09-29T16:50:29Z,- Aveline-art opened issue: [2316](https://github.com/hackforla/website/issues/2316) at 2021-09-29 09:50 AM PDT -Aveline-art,2021-10-05T16:03:21Z,- Aveline-art unassigned from issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-933054519) at 2021-10-05 09:03 AM PDT -Aveline-art,2021-10-06T02:04:28Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-935256445) at 2021-10-05 07:04 PM PDT -Aveline-art,2021-10-17T22:42:21Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-945207875) at 2021-10-17 03:42 PM PDT -Aveline-art,2021-10-28T04:05:44Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-953483795) at 2021-10-27 09:05 PM PDT -Aveline-art,2021-11-02T17:38:47Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-957978999) at 2021-11-02 10:38 AM PDT -Aveline-art,2021-11-08T19:48:59Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-963514462) at 2021-11-08 11:48 AM PST -Aveline-art,2021-11-10T00:51:06Z,- Aveline-art commented on issue: [2179](https://github.com/hackforla/website/issues/2179#issuecomment-964679618) at 2021-11-09 04:51 PM PST -Aveline-art,2021-12-27T05:03:15Z,- Aveline-art opened issue: [2632](https://github.com/hackforla/website/issues/2632) at 2021-12-26 09:03 PM PST -Aveline-art,2022-01-11T19:45:06Z,- Aveline-art submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-849654235) at 2022-01-11 11:45 AM PST -Aveline-art,2022-01-19T00:30:11Z,- Aveline-art commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1015958943) at 2022-01-18 04:30 PM PST -Aveline-art,2022-01-23T18:18:26Z,- Aveline-art opened issue: [2712](https://github.com/hackforla/website/issues/2712) at 2022-01-23 10:18 AM PST -Aveline-art,2022-01-23T19:49:52Z,- Aveline-art commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1019554588) at 2022-01-23 11:49 AM PST -Aveline-art,2022-01-26T17:31:55Z,- Aveline-art assigned to issue: [2287](https://github.com/hackforla/website/issues/2287#issuecomment-1019559014) at 2022-01-26 09:31 AM PST -Aveline-art,2022-01-26T17:49:33Z,- Aveline-art commented on issue: [2287](https://github.com/hackforla/website/issues/2287#issuecomment-1022442053) at 2022-01-26 09:49 AM PST -Aveline-art,2022-01-26T23:37:07Z,- Aveline-art opened pull request: [2719](https://github.com/hackforla/website/pull/2719) at 2022-01-26 03:37 PM PST -Aveline-art,2022-01-29T23:19:40Z,- Aveline-art commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025005350) at 2022-01-29 03:19 PM PST -Aveline-art,2022-01-30T20:49:55Z,- Aveline-art commented on issue: [2712](https://github.com/hackforla/website/issues/2712#issuecomment-1025228008) at 2022-01-30 12:49 PM PST -Aveline-art,2022-01-30T21:42:37Z,- Aveline-art commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025237943) at 2022-01-30 01:42 PM PST -Aveline-art,2022-01-31T03:50:48Z,- Aveline-art pull request merged: [2719](https://github.com/hackforla/website/pull/2719#event-5977917820) at 2022-01-30 07:50 PM PST -Aveline-art,2022-02-07T18:21:47Z,- Aveline-art opened issue: [2744](https://github.com/hackforla/website/issues/2744) at 2022-02-07 10:21 AM PST -Aveline-art,2022-06-01T18:07:02Z,- Aveline-art opened pull request: [3192](https://github.com/hackforla/website/pull/3192) at 2022-06-01 11:07 AM PDT -Aveline-art,2022-06-01T22:37:29Z,- Aveline-art pull request merged: [3192](https://github.com/hackforla/website/pull/3192#event-6723615966) at 2022-06-01 03:37 PM PDT -Aveline-art,2022-07-28T22:25:33Z,- Aveline-art opened issue: [3440](https://github.com/hackforla/website/issues/3440) at 2022-07-28 03:25 PM PDT -Aveline-art,2022-10-25T23:57:59Z,- Aveline-art commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1291262243) at 2022-10-25 04:57 PM PDT -Aveline-art,2022-10-27T22:15:49Z,- Aveline-art commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1294164547) at 2022-10-27 03:15 PM PDT -Aveline-art,2022-11-26T23:38:02Z,- Aveline-art opened issue: [3746](https://github.com/hackforla/website/issues/3746) at 2022-11-26 03:38 PM PST -Aveline-art,2022-12-01T02:21:43Z,- Aveline-art opened issue: [3759](https://github.com/hackforla/website/issues/3759) at 2022-11-30 06:21 PM PST -Aveline-art,2022-12-01T02:27:40Z,- Aveline-art closed issue as completed: [3759](https://github.com/hackforla/website/issues/3759#event-7927582430) at 2022-11-30 06:27 PM PST -Aveline-art,2023-02-18T23:49:53Z,- Aveline-art commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1435794323) at 2023-02-18 03:49 PM PST -Aveline-art,2023-03-14T22:27:55Z,- Aveline-art assigned to issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1459096509) at 2023-03-14 03:27 PM PDT -Aveline-art,2023-03-14T22:28:26Z,- Aveline-art unassigned from issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1468924989) at 2023-03-14 03:28 PM PDT -Aveline-art,2023-04-02T07:07:49Z,- Aveline-art commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1493250639) at 2023-04-02 12:07 AM PDT -Aveline-art,2023-04-03T23:27:10Z,- Aveline-art commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1495118547) at 2023-04-03 04:27 PM PDT -Aveline-art,2023-04-05T03:34:29Z,- Aveline-art commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1496874612) at 2023-04-04 08:34 PM PDT -Aveline-art,2023-04-15T18:43:42Z,- Aveline-art commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1509925079) at 2023-04-15 11:43 AM PDT -Aveline-art,2023-04-23T17:45:15Z,- Aveline-art assigned to issue: [1884](https://github.com/hackforla/website/issues/1884#event-4976391439) at 2023-04-23 10:45 AM PDT -Aveline-art,2023-04-23T17:46:17Z,- Aveline-art assigned to issue: [1847](https://github.com/hackforla/website/issues/1847#event-4976395806) at 2023-04-23 10:46 AM PDT -Aveline-art,2023-04-30T18:48:39Z,- Aveline-art assigned to issue: [4369](https://github.com/hackforla/website/issues/4369#issuecomment-1529113278) at 2023-04-30 11:48 AM PDT -averdin2,2021-03-24T02:18:54Z,- averdin2 submitted pull request review: [1318](https://github.com/hackforla/website/pull/1318#pullrequestreview-619252640) at 2021-03-23 07:18 PM PDT -averdin2,2021-03-24T02:49:36Z,- averdin2 opened issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-03-23 07:49 PM PDT -averdin2,2021-03-24T03:03:25Z,- averdin2 closed issue as completed: [752](https://github.com/hackforla/website/issues/752#event-4499501075) at 2021-03-23 08:03 PM PDT -averdin2,2021-03-24T03:04:07Z,- averdin2 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-805450293) at 2021-03-23 08:04 PM PDT -averdin2,2021-03-24T03:12:00Z,- averdin2 assigned to issue: [1077](https://github.com/hackforla/website/issues/1077) at 2021-03-23 08:12 PM PDT -averdin2,2021-03-26T18:55:17Z,- averdin2 commented on issue: [1077](https://github.com/hackforla/website/issues/1077#issuecomment-808445229) at 2021-03-26 11:55 AM PDT -averdin2,2021-03-26T23:09:01Z,- averdin2 assigned to issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-784808301) at 2021-03-26 04:09 PM PDT -averdin2,2021-03-26T23:10:17Z,- averdin2 assigned to issue: [1264](https://github.com/hackforla/website/issues/1264) at 2021-03-26 04:10 PM PDT -averdin2,2021-03-27T23:13:28Z,- averdin2 opened pull request: [1334](https://github.com/hackforla/website/pull/1334) at 2021-03-27 04:13 PM PDT -averdin2,2021-03-28T02:26:38Z,- averdin2 commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-808833556) at 2021-03-27 07:26 PM PDT -averdin2,2021-03-29T19:01:11Z,- averdin2 pull request merged: [1334](https://github.com/hackforla/website/pull/1334#event-4523323242) at 2021-03-29 12:01 PM PDT -averdin2,2021-03-30T22:58:52Z,- averdin2 commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-810632665) at 2021-03-30 03:58 PM PDT -averdin2,2021-03-30T23:07:21Z,- averdin2 opened pull request: [1339](https://github.com/hackforla/website/pull/1339) at 2021-03-30 04:07 PM PDT -averdin2,2021-03-30T23:35:21Z,- averdin2 commented on issue: [1264](https://github.com/hackforla/website/issues/1264#issuecomment-810645947) at 2021-03-30 04:35 PM PDT -averdin2,2021-03-31T00:06:35Z,- averdin2 opened pull request: [1340](https://github.com/hackforla/website/pull/1340) at 2021-03-30 05:06 PM PDT -averdin2,2021-03-31T02:31:28Z,- averdin2 pull request merged: [1340](https://github.com/hackforla/website/pull/1340#event-4531536127) at 2021-03-30 07:31 PM PDT -averdin2,2021-03-31T04:27:15Z,- averdin2 pull request merged: [1339](https://github.com/hackforla/website/pull/1339#event-4531899274) at 2021-03-30 09:27 PM PDT -averdin2,2021-04-02T21:44:37Z,- averdin2 assigned to issue: [1331](https://github.com/hackforla/website/issues/1331) at 2021-04-02 02:44 PM PDT -averdin2,2021-04-02T23:29:00Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-812753594) at 2021-04-02 04:29 PM PDT -averdin2,2021-04-02T23:38:15Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-812755340) at 2021-04-02 04:38 PM PDT -averdin2,2021-04-04T19:18:56Z,- averdin2 assigned to issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-04-04 12:18 PM PDT -averdin2,2021-04-04T20:35:31Z,- averdin2 submitted pull request review: [1354](https://github.com/hackforla/website/pull/1354#pullrequestreview-627570818) at 2021-04-04 01:35 PM PDT -averdin2,2021-04-04T20:37:46Z,- averdin2 submitted pull request review: [1354](https://github.com/hackforla/website/pull/1354#pullrequestreview-627570952) at 2021-04-04 01:37 PM PDT -averdin2,2021-04-05T18:17:17Z,- averdin2 submitted pull request review: [1357](https://github.com/hackforla/website/pull/1357#pullrequestreview-628047911) at 2021-04-05 11:17 AM PDT -averdin2,2021-04-05T22:57:18Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-813697030) at 2021-04-05 03:57 PM PDT -averdin2,2021-04-06T20:06:26Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-814405283) at 2021-04-06 01:06 PM PDT -averdin2,2021-04-09T03:25:32Z,- averdin2 assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-08 08:25 PM PDT -averdin2,2021-04-09T16:02:20Z,- averdin2 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-816785619) at 2021-04-09 09:02 AM PDT -averdin2,2021-04-09T16:54:04Z,- averdin2 opened pull request: [1384](https://github.com/hackforla/website/pull/1384) at 2021-04-09 09:54 AM PDT -averdin2,2021-04-09T17:00:47Z,- averdin2 pull request merged: [1384](https://github.com/hackforla/website/pull/1384#event-4575511901) at 2021-04-09 10:00 AM PDT -averdin2,2021-04-09T17:09:22Z,- averdin2 assigned to issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-04-09 10:09 AM PDT -averdin2,2021-04-12T16:57:57Z,- averdin2 submitted pull request review: [1396](https://github.com/hackforla/website/pull/1396#pullrequestreview-633769212) at 2021-04-12 09:57 AM PDT -averdin2,2021-04-12T17:12:45Z,- averdin2 opened issue: [1398](https://github.com/hackforla/website/issues/1398) at 2021-04-12 10:12 AM PDT -averdin2,2021-04-12T18:42:40Z,- averdin2 commented on issue: [1319](https://github.com/hackforla/website/issues/1319#issuecomment-818042597) at 2021-04-12 11:42 AM PDT -averdin2,2021-04-12T20:54:08Z,- averdin2 commented on issue: [1071](https://github.com/hackforla/website/issues/1071#issuecomment-818230114) at 2021-04-12 01:54 PM PDT -averdin2,2021-04-12T21:16:45Z,- averdin2 opened pull request: [1399](https://github.com/hackforla/website/pull/1399) at 2021-04-12 02:16 PM PDT -averdin2,2021-04-12T21:34:13Z,- averdin2 commented on issue: [1319](https://github.com/hackforla/website/issues/1319#issuecomment-818258450) at 2021-04-12 02:34 PM PDT -averdin2,2021-04-12T23:56:47Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818318212) at 2021-04-12 04:56 PM PDT -averdin2,2021-04-13T00:14:59Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818324393) at 2021-04-12 05:14 PM PDT -averdin2,2021-04-13T00:26:54Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818331360) at 2021-04-12 05:26 PM PDT -averdin2,2021-04-13T00:47:50Z,- averdin2 submitted pull request review: [1400](https://github.com/hackforla/website/pull/1400#pullrequestreview-634078164) at 2021-04-12 05:47 PM PDT -averdin2,2021-04-13T01:11:03Z,- averdin2 commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818353879) at 2021-04-12 06:11 PM PDT -averdin2,2021-04-13T01:16:36Z,- averdin2 submitted pull request review: [1400](https://github.com/hackforla/website/pull/1400#pullrequestreview-634095401) at 2021-04-12 06:16 PM PDT -averdin2,2021-04-13T17:53:16Z,- averdin2 assigned to issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-13 10:53 AM PDT -averdin2,2021-04-13T20:13:48Z,- averdin2 reopened issue: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:13 PM PDT -averdin2,2021-04-14T02:27:12Z,- averdin2 assigned to issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-817342030) at 2021-04-13 07:27 PM PDT -averdin2,2021-04-14T02:38:17Z,- averdin2 unassigned from issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-13 07:38 PM PDT -averdin2,2021-04-14T18:29:56Z,- averdin2 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-819740073) at 2021-04-14 11:29 AM PDT -averdin2,2021-04-14T18:35:26Z,- averdin2 submitted pull request review: [1403](https://github.com/hackforla/website/pull/1403#pullrequestreview-635963838) at 2021-04-14 11:35 AM PDT -averdin2,2021-04-14T19:24:46Z,- averdin2 commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-819773113) at 2021-04-14 12:24 PM PDT -averdin2,2021-04-14T20:08:46Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-819799290) at 2021-04-14 01:08 PM PDT -averdin2,2021-04-14T23:42:13Z,- averdin2 assigned to issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-14 04:42 PM PDT -averdin2,2021-04-15T19:15:48Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-820671473) at 2021-04-15 12:15 PM PDT -averdin2,2021-04-15T19:32:49Z,- averdin2 commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-820680859) at 2021-04-15 12:32 PM PDT -averdin2,2021-04-15T19:41:12Z,- averdin2 commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-820685412) at 2021-04-15 12:41 PM PDT -averdin2,2021-04-18T00:43:56Z,- averdin2 unassigned from issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-04-17 05:43 PM PDT -averdin2,2021-04-18T19:34:58Z,- averdin2 pull request merged: [1399](https://github.com/hackforla/website/pull/1399#event-4609447043) at 2021-04-18 12:34 PM PDT -averdin2,2021-04-19T20:06:32Z,- averdin2 submitted pull request review: [1421](https://github.com/hackforla/website/pull/1421#pullrequestreview-639262493) at 2021-04-19 01:06 PM PDT -averdin2,2021-04-19T21:22:13Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-822794196) at 2021-04-19 02:22 PM PDT -averdin2,2021-04-19T21:59:50Z,- averdin2 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-822814496) at 2021-04-19 02:59 PM PDT -averdin2,2021-04-19T23:11:28Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-822847982) at 2021-04-19 04:11 PM PDT -averdin2,2021-04-19T23:31:44Z,- averdin2 commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-822855821) at 2021-04-19 04:31 PM PDT -averdin2,2021-04-21T22:23:14Z,- averdin2 commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-824401627) at 2021-04-21 03:23 PM PDT -averdin2,2021-04-21T22:48:15Z,- averdin2 opened pull request: [1430](https://github.com/hackforla/website/pull/1430) at 2021-04-21 03:48 PM PDT -averdin2,2021-04-21T23:03:38Z,- averdin2 submitted pull request review: [1429](https://github.com/hackforla/website/pull/1429#pullrequestreview-641619293) at 2021-04-21 04:03 PM PDT -averdin2,2021-04-26T18:37:12Z,- averdin2 assigned to issue: [1441](https://github.com/hackforla/website/issues/1441) at 2021-04-26 11:37 AM PDT -averdin2,2021-04-27T03:47:09Z,- averdin2 opened pull request: [1471](https://github.com/hackforla/website/pull/1471) at 2021-04-26 08:47 PM PDT -averdin2,2021-04-27T03:56:42Z,- averdin2 assigned to issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-26 08:56 PM PDT -averdin2,2021-04-27T22:54:06Z,- averdin2 commented on pull request: [1424](https://github.com/hackforla/website/pull/1424#issuecomment-827999944) at 2021-04-27 03:54 PM PDT -averdin2,2021-04-27T22:55:34Z,- averdin2 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646439909) at 2021-04-27 03:55 PM PDT -averdin2,2021-04-28T02:08:59Z,- averdin2 submitted pull request review: [1474](https://github.com/hackforla/website/pull/1474#pullrequestreview-646536146) at 2021-04-27 07:08 PM PDT -averdin2,2021-04-28T02:09:13Z,- averdin2 closed issue by PR 1474: [1436](https://github.com/hackforla/website/issues/1436#event-4654025158) at 2021-04-27 07:09 PM PDT -averdin2,2021-04-28T02:30:30Z,- averdin2 submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-646544056) at 2021-04-27 07:30 PM PDT -averdin2,2021-04-28T02:50:21Z,- averdin2 opened issue: [1481](https://github.com/hackforla/website/issues/1481) at 2021-04-27 07:50 PM PDT -averdin2,2021-04-28T02:54:12Z,- averdin2 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646553114) at 2021-04-27 07:54 PM PDT -averdin2,2021-04-28T02:56:05Z,- averdin2 commented on pull request: [1430](https://github.com/hackforla/website/pull/1430#issuecomment-828103626) at 2021-04-27 07:56 PM PDT -averdin2,2021-04-28T23:54:16Z,- averdin2 submitted pull request review: [1490](https://github.com/hackforla/website/pull/1490#pullrequestreview-647728676) at 2021-04-28 04:54 PM PDT -averdin2,2021-04-29T20:41:24Z,- averdin2 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-829581616) at 2021-04-29 01:41 PM PDT -averdin2,2021-04-29T20:45:37Z,- averdin2 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-829584102) at 2021-04-29 01:45 PM PDT -averdin2,2021-04-29T21:23:53Z,- averdin2 commented on pull request: [1430](https://github.com/hackforla/website/pull/1430#issuecomment-829605915) at 2021-04-29 02:23 PM PDT -averdin2,2021-04-29T21:29:40Z,- averdin2 submitted pull request review: [1430](https://github.com/hackforla/website/pull/1430#pullrequestreview-648672353) at 2021-04-29 02:29 PM PDT -averdin2,2021-04-30T16:37:16Z,- averdin2 pull request merged: [1430](https://github.com/hackforla/website/pull/1430#event-4670551297) at 2021-04-30 09:37 AM PDT -averdin2,2021-04-30T20:50:41Z,- averdin2 commented on pull request: [1495](https://github.com/hackforla/website/pull/1495#issuecomment-830380535) at 2021-04-30 01:50 PM PDT -averdin2,2021-04-30T21:54:14Z,- averdin2 submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-649642686) at 2021-04-30 02:54 PM PDT -averdin2,2021-04-30T23:12:01Z,- averdin2 submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-649667316) at 2021-04-30 04:12 PM PDT -averdin2,2021-04-30T23:58:00Z,- averdin2 commented on pull request: [1493](https://github.com/hackforla/website/pull/1493#issuecomment-830465520) at 2021-04-30 04:58 PM PDT -averdin2,2021-05-01T00:01:45Z,- averdin2 submitted pull request review: [1493](https://github.com/hackforla/website/pull/1493#pullrequestreview-649692773) at 2021-04-30 05:01 PM PDT -averdin2,2021-05-01T21:46:36Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-830699008) at 2021-05-01 02:46 PM PDT -averdin2,2021-05-02T16:49:52Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-830837723) at 2021-05-02 09:49 AM PDT -averdin2,2021-05-03T19:09:56Z,- averdin2 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-831471143) at 2021-05-03 12:09 PM PDT -averdin2,2021-05-04T00:24:40Z,- averdin2 commented on pull request: [1471](https://github.com/hackforla/website/pull/1471#issuecomment-831615556) at 2021-05-03 05:24 PM PDT -averdin2,2021-05-04T00:27:42Z,- averdin2 commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-831616743) at 2021-05-03 05:27 PM PDT -averdin2,2021-05-04T22:30:40Z,- averdin2 commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-832290800) at 2021-05-04 03:30 PM PDT -averdin2,2021-05-04T22:35:43Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-832292525) at 2021-05-04 03:35 PM PDT -averdin2,2021-05-06T19:34:20Z,- averdin2 opened issue: [1519](https://github.com/hackforla/website/issues/1519) at 2021-05-06 12:34 PM PDT -averdin2,2021-05-06T20:19:12Z,- averdin2 commented on pull request: [1518](https://github.com/hackforla/website/pull/1518#issuecomment-833832556) at 2021-05-06 01:19 PM PDT -averdin2,2021-05-06T23:40:58Z,- averdin2 submitted pull request review: [1513](https://github.com/hackforla/website/pull/1513#pullrequestreview-653975730) at 2021-05-06 04:40 PM PDT -averdin2,2021-05-06T23:41:18Z,- averdin2 closed issue by PR 1513: [1497](https://github.com/hackforla/website/issues/1497#event-4698448241) at 2021-05-06 04:41 PM PDT -averdin2,2021-05-07T02:02:16Z,- averdin2 commented on issue: [1505](https://github.com/hackforla/website/issues/1505#issuecomment-834003360) at 2021-05-06 07:02 PM PDT -averdin2,2021-05-07T20:13:29Z,- averdin2 submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-654833074) at 2021-05-07 01:13 PM PDT -averdin2,2021-05-07T22:30:37Z,- averdin2 submitted pull request review: [1522](https://github.com/hackforla/website/pull/1522#pullrequestreview-654907788) at 2021-05-07 03:30 PM PDT -averdin2,2021-05-07T22:54:22Z,- averdin2 submitted pull request review: [1530](https://github.com/hackforla/website/pull/1530#pullrequestreview-654914980) at 2021-05-07 03:54 PM PDT -averdin2,2021-05-10T18:17:19Z,- averdin2 opened issue: [1536](https://github.com/hackforla/website/issues/1536) at 2021-05-10 11:17 AM PDT -averdin2,2021-05-10T18:37:46Z,- averdin2 opened issue: [1537](https://github.com/hackforla/website/issues/1537) at 2021-05-10 11:37 AM PDT -averdin2,2021-05-11T20:12:39Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-839121516) at 2021-05-11 01:12 PM PDT -averdin2,2021-05-11T20:18:59Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-839127743) at 2021-05-11 01:18 PM PDT -averdin2,2021-05-12T03:07:36Z,- averdin2 commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-839398169) at 2021-05-11 08:07 PM PDT -averdin2,2021-05-12T03:16:19Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-839401213) at 2021-05-11 08:16 PM PDT -averdin2,2021-05-12T03:16:47Z,- averdin2 assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-836168215) at 2021-05-11 08:16 PM PDT -averdin2,2021-05-12T03:18:09Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-839401905) at 2021-05-11 08:18 PM PDT -averdin2,2021-05-13T18:23:47Z,- averdin2 submitted pull request review: [1540](https://github.com/hackforla/website/pull/1540#pullrequestreview-659178656) at 2021-05-13 11:23 AM PDT -averdin2,2021-05-13T18:24:09Z,- averdin2 closed issue by PR 1540: [1536](https://github.com/hackforla/website/issues/1536#event-4743264385) at 2021-05-13 11:24 AM PDT -averdin2,2021-05-13T18:24:09Z,- averdin2 closed issue by PR 1540: [1537](https://github.com/hackforla/website/issues/1537#event-4743264379) at 2021-05-13 11:24 AM PDT -averdin2,2021-05-18T00:34:28Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-842734306) at 2021-05-17 05:34 PM PDT -averdin2,2021-05-21T19:40:39Z,- averdin2 opened issue: [1602](https://github.com/hackforla/website/issues/1602) at 2021-05-21 12:40 PM PDT -averdin2,2021-05-23T19:19:53Z,- averdin2 commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-846611629) at 2021-05-23 12:19 PM PDT -averdin2,2021-05-23T19:39:23Z,- averdin2 assigned to issue: [1623](https://github.com/hackforla/website/issues/1623) at 2021-05-23 12:39 PM PDT -averdin2,2021-05-24T20:06:34Z,- averdin2 commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-847301602) at 2021-05-24 01:06 PM PDT -averdin2,2021-05-25T22:15:11Z,- averdin2 commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-848305289) at 2021-05-25 03:15 PM PDT -averdin2,2021-05-25T23:25:04Z,- averdin2 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-668476455) at 2021-05-25 04:25 PM PDT -averdin2,2021-05-26T04:07:14Z,- averdin2 opened pull request: [1641](https://github.com/hackforla/website/pull/1641) at 2021-05-25 09:07 PM PDT -averdin2,2021-05-26T04:08:08Z,- averdin2 pull request merged: [1641](https://github.com/hackforla/website/pull/1641#event-4796584330) at 2021-05-25 09:08 PM PDT -averdin2,2021-05-27T18:55:17Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-849864227) at 2021-05-27 11:55 AM PDT -averdin2,2021-05-27T19:45:13Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-849893547) at 2021-05-27 12:45 PM PDT -averdin2,2021-05-28T02:32:31Z,- averdin2 assigned to issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-846600031) at 2021-05-27 07:32 PM PDT -averdin2,2021-06-03T18:43:41Z,- averdin2 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-675617857) at 2021-06-03 11:43 AM PDT -averdin2,2021-06-03T18:44:05Z,- averdin2 closed issue by PR 1624: [1605](https://github.com/hackforla/website/issues/1605#event-4839245292) at 2021-06-03 11:44 AM PDT -averdin2,2021-06-04T03:24:46Z,- averdin2 assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -averdin2,2021-06-04T05:01:26Z,- averdin2 assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -averdin2,2021-06-04T05:15:39Z,- averdin2 assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -averdin2,2021-06-06T19:49:19Z,- averdin2 unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -averdin2,2021-06-12T16:32:02Z,- averdin2 unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -averdin2,2021-06-16T03:58:49Z,- averdin2 unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-860260265) at 2021-06-15 08:58 PM PDT -averdin2,2021-06-19T02:08:00Z,- averdin2 pull request merged: [1471](https://github.com/hackforla/website/pull/1471#event-4912022829) at 2021-06-18 07:08 PM PDT -averdin2,2021-06-25T01:58:56Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-868141531) at 2021-06-24 06:58 PM PDT -averdin2,2021-06-27T15:20:37Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-869180284) at 2021-06-27 08:20 AM PDT -averdin2,2021-06-27T17:43:07Z,- averdin2 assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-862018870) at 2021-06-27 10:43 AM PDT -averdin2,2021-06-27T17:44:56Z,- averdin2 unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-869200854) at 2021-06-27 10:44 AM PDT -averdin2,2021-06-27T17:48:42Z,- averdin2 unassigned from issue: [1352](https://github.com/hackforla/website/issues/1352) at 2021-06-27 10:48 AM PDT -averdin2,2021-06-27T18:32:07Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-869206791) at 2021-06-27 11:32 AM PDT -averdin2,2021-06-27T18:33:05Z,- averdin2 commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-869206907) at 2021-06-27 11:33 AM PDT -averdin2,2021-06-28T22:42:16Z,- averdin2 unassigned from issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-870074181) at 2021-06-28 03:42 PM PDT -averdin2,2021-06-28T23:28:31Z,- averdin2 opened pull request: [1854](https://github.com/hackforla/website/pull/1854) at 2021-06-28 04:28 PM PDT -averdin2,2021-06-28T23:57:03Z,- averdin2 commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-870123948) at 2021-06-28 04:57 PM PDT -averdin2,2021-06-29T13:05:07Z,- averdin2 pull request merged: [1854](https://github.com/hackforla/website/pull/1854#event-4953479403) at 2021-06-29 06:05 AM PDT -averdin2,2021-06-30T16:26:09Z,- averdin2 assigned to issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-870074181) at 2021-06-30 09:26 AM PDT -averdin2,2021-06-30T16:32:34Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-871557099) at 2021-06-30 09:32 AM PDT -averdin2,2021-06-30T18:48:13Z,- averdin2 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-871645387) at 2021-06-30 11:48 AM PDT -averdin2,2021-06-30T18:54:54Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-871649405) at 2021-06-30 11:54 AM PDT -averdin2,2021-06-30T20:51:52Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-696606844) at 2021-06-30 01:51 PM PDT -averdin2,2021-06-30T21:13:09Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-871731370) at 2021-06-30 02:13 PM PDT -averdin2,2021-06-30T21:42:42Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-871746778) at 2021-06-30 02:42 PM PDT -averdin2,2021-07-05T17:34:14Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-874252890) at 2021-07-05 10:34 AM PDT -averdin2,2021-07-07T21:22:26Z,- averdin2 commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-875943026) at 2021-07-07 02:22 PM PDT -averdin2,2021-07-07T22:48:37Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-701506779) at 2021-07-07 03:48 PM PDT -averdin2,2021-07-07T23:39:24Z,- averdin2 opened issue: [1900](https://github.com/hackforla/website/issues/1900) at 2021-07-07 04:39 PM PDT -averdin2,2021-07-08T00:02:50Z,- averdin2 opened issue: [1901](https://github.com/hackforla/website/issues/1901) at 2021-07-07 05:02 PM PDT -averdin2,2021-07-11T17:47:12Z,- averdin2 commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-877837845) at 2021-07-11 10:47 AM PDT -averdin2,2021-07-12T23:24:23Z,- averdin2 commented on pull request: [1909](https://github.com/hackforla/website/pull/1909#issuecomment-878663241) at 2021-07-12 04:24 PM PDT -averdin2,2021-07-13T18:00:18Z,- averdin2 commented on pull request: [1909](https://github.com/hackforla/website/pull/1909#issuecomment-879289177) at 2021-07-13 11:00 AM PDT -averdin2,2021-07-13T18:08:44Z,- averdin2 submitted pull request review: [1909](https://github.com/hackforla/website/pull/1909#pullrequestreview-705500463) at 2021-07-13 11:08 AM PDT -averdin2,2021-07-13T22:14:30Z,- averdin2 commented on issue: [1891](https://github.com/hackforla/website/issues/1891#issuecomment-879440004) at 2021-07-13 03:14 PM PDT -averdin2,2021-07-13T22:22:31Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-879445329) at 2021-07-13 03:22 PM PDT -averdin2,2021-07-15T22:02:33Z,- averdin2 commented on pull request: [1918](https://github.com/hackforla/website/pull/1918#issuecomment-881040367) at 2021-07-15 03:02 PM PDT -averdin2,2021-07-15T22:13:56Z,- averdin2 submitted pull request review: [1918](https://github.com/hackforla/website/pull/1918#pullrequestreview-707861955) at 2021-07-15 03:13 PM PDT -averdin2,2021-07-15T22:23:00Z,- averdin2 submitted pull request review: [1918](https://github.com/hackforla/website/pull/1918#pullrequestreview-707866409) at 2021-07-15 03:23 PM PDT -averdin2,2021-07-15T22:24:07Z,- averdin2 closed issue by PR 1918: [1877](https://github.com/hackforla/website/issues/1877#event-5027999914) at 2021-07-15 03:24 PM PDT -averdin2,2021-07-15T22:25:54Z,- averdin2 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-881050292) at 2021-07-15 03:25 PM PDT -averdin2,2021-07-15T22:52:41Z,- averdin2 submitted pull request review: [1912](https://github.com/hackforla/website/pull/1912#pullrequestreview-707880057) at 2021-07-15 03:52 PM PDT -averdin2,2021-07-16T21:06:40Z,- averdin2 opened pull request: [1957](https://github.com/hackforla/website/pull/1957) at 2021-07-16 02:06 PM PDT -averdin2,2021-07-16T21:07:04Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-881718470) at 2021-07-16 02:07 PM PDT -averdin2,2021-07-16T21:19:01Z,- averdin2 opened issue: [1958](https://github.com/hackforla/website/issues/1958) at 2021-07-16 02:19 PM PDT -averdin2,2021-07-16T21:19:08Z,- averdin2 assigned to issue: [1958](https://github.com/hackforla/website/issues/1958) at 2021-07-16 02:19 PM PDT -averdin2,2021-07-16T21:55:07Z,- averdin2 reopened issue: [1581](https://github.com/hackforla/website/issues/1581#event-5028932295) at 2021-07-16 02:55 PM PDT -averdin2,2021-07-16T21:57:09Z,- averdin2 commented on issue: [1581](https://github.com/hackforla/website/issues/1581#issuecomment-881739823) at 2021-07-16 02:57 PM PDT -averdin2,2021-07-16T21:59:07Z,- averdin2 closed issue by PR 1937: [1581](https://github.com/hackforla/website/issues/1581#event-5032992197) at 2021-07-16 02:59 PM PDT -averdin2,2021-07-16T22:19:03Z,- averdin2 submitted pull request review: [1938](https://github.com/hackforla/website/pull/1938#pullrequestreview-708779464) at 2021-07-16 03:19 PM PDT -averdin2,2021-07-16T22:22:02Z,- averdin2 closed issue by PR 1938: [1560](https://github.com/hackforla/website/issues/1560#event-5033048352) at 2021-07-16 03:22 PM PDT -averdin2,2021-07-16T23:06:13Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-881763398) at 2021-07-16 04:06 PM PDT -averdin2,2021-07-16T23:13:52Z,- averdin2 commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-881765734) at 2021-07-16 04:13 PM PDT -averdin2,2021-07-16T23:29:32Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-881770347) at 2021-07-16 04:29 PM PDT -averdin2,2021-07-16T23:46:34Z,- averdin2 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-881774275) at 2021-07-16 04:46 PM PDT -averdin2,2021-07-19T21:34:37Z,- averdin2 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-882876996) at 2021-07-19 02:34 PM PDT -averdin2,2021-07-19T21:47:51Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-882883442) at 2021-07-19 02:47 PM PDT -averdin2,2021-07-19T21:53:11Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-882885979) at 2021-07-19 02:53 PM PDT -averdin2,2021-07-19T23:54:07Z,- averdin2 commented on pull request: [1954](https://github.com/hackforla/website/pull/1954#issuecomment-882939421) at 2021-07-19 04:54 PM PDT -averdin2,2021-07-23T23:55:17Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-885966093) at 2021-07-23 04:55 PM PDT -averdin2,2021-07-24T00:50:34Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-885976952) at 2021-07-23 05:50 PM PDT -averdin2,2021-07-26T18:31:45Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-886932125) at 2021-07-26 11:31 AM PDT -averdin2,2021-07-26T18:42:24Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-886938469) at 2021-07-26 11:42 AM PDT -averdin2,2021-08-04T00:15:25Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-721741782) at 2021-08-03 05:15 PM PDT -averdin2,2021-08-04T02:43:34Z,- averdin2 submitted pull request review: [2038](https://github.com/hackforla/website/pull/2038#pullrequestreview-721813706) at 2021-08-03 07:43 PM PDT -averdin2,2021-08-04T02:48:13Z,- averdin2 reopened issue: [1671](https://github.com/hackforla/website/issues/1671#event-5010421573) at 2021-08-03 07:48 PM PDT -averdin2,2021-08-05T21:02:52Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-893795917) at 2021-08-05 02:02 PM PDT -averdin2,2021-08-05T21:06:51Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-893804769) at 2021-08-05 02:06 PM PDT -averdin2,2021-08-08T18:22:38Z,- averdin2 opened issue: [2071](https://github.com/hackforla/website/issues/2071) at 2021-08-08 11:22 AM PDT -averdin2,2021-08-08T18:53:14Z,- averdin2 commented on issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-894839590) at 2021-08-08 11:53 AM PDT -averdin2,2021-08-08T19:24:48Z,- averdin2 submitted pull request review: [1837](https://github.com/hackforla/website/pull/1837#pullrequestreview-724930516) at 2021-08-08 12:24 PM PDT -averdin2,2021-08-08T19:24:56Z,- averdin2 closed issue by PR 1837: [1671](https://github.com/hackforla/website/issues/1671#event-5126961976) at 2021-08-08 12:24 PM PDT -averdin2,2021-08-08T19:25:28Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-894843716) at 2021-08-08 12:25 PM PDT -averdin2,2021-08-08T19:26:22Z,- averdin2 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-894843816) at 2021-08-08 12:26 PM PDT -averdin2,2021-08-13T03:41:49Z,- averdin2 commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-898169486) at 2021-08-12 08:41 PM PDT -averdin2,2021-08-15T18:48:36Z,- averdin2 assigned to issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-894839590) at 2021-08-15 11:48 AM PDT -averdin2,2021-08-24T03:26:38Z,- averdin2 commented on issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-904293156) at 2021-08-23 08:26 PM PDT -averdin2,2021-08-24T03:26:38Z,- averdin2 closed issue as completed: [2071](https://github.com/hackforla/website/issues/2071#event-5198035606) at 2021-08-23 08:26 PM PDT -averdin2,2021-08-27T03:24:47Z,- averdin2 commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-906896129) at 2021-08-26 08:24 PM PDT -averdin2,2021-08-31T16:29:20Z,- averdin2 opened issue: [2210](https://github.com/hackforla/website/issues/2210) at 2021-08-31 09:29 AM PDT -averdin2,2021-09-01T02:22:19Z,- averdin2 commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-909814705) at 2021-08-31 07:22 PM PDT -averdin2,2021-09-01T02:23:02Z,- averdin2 commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-909815024) at 2021-08-31 07:23 PM PDT -averdin2,2021-09-23T15:39:36Z,- averdin2 pull request merged: [1957](https://github.com/hackforla/website/pull/1957#event-5350790856) at 2021-09-23 08:39 AM PDT -averdin2,2021-11-17T02:52:10Z,- averdin2 opened pull request: [2495](https://github.com/hackforla/website/pull/2495) at 2021-11-16 06:52 PM PST -averdin2,2021-12-15T03:49:46Z,- averdin2 pull request merged: [2495](https://github.com/hackforla/website/pull/2495#event-5768588063) at 2021-12-14 07:49 PM PST -averdin2,2022-09-01T16:27:08Z,- averdin2 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1234511858) at 2022-09-01 09:27 AM PDT -aviraj0010,2023-08-27T10:16:49Z,- aviraj0010 opened pull request: [5314](https://github.com/hackforla/website/pull/5314) at 2023-08-27 03:16 AM PDT -aviraj0010,2023-08-27T14:51:05Z,- aviraj0010 pull request closed w/o merging: [5314](https://github.com/hackforla/website/pull/5314#event-10201972354) at 2023-08-27 07:51 AM PDT -awellsbiz,5089,SKILLS ISSUE -awellsbiz,2023-07-26T03:46:29Z,- awellsbiz opened issue: [5089](https://github.com/hackforla/website/issues/5089) at 2023-07-25 08:46 PM PDT -awellsbiz,2023-07-26T03:50:18Z,- awellsbiz assigned to issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1650934094) at 2023-07-25 08:50 PM PDT -awellsbiz,2023-07-26T03:50:25Z,- awellsbiz unassigned from issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1650934094) at 2023-07-25 08:50 PM PDT -awellsbiz,2023-07-26T03:50:27Z,- awellsbiz assigned to issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1650934094) at 2023-07-25 08:50 PM PDT -awellsbiz,2023-07-28T00:51:33Z,- awellsbiz assigned to issue: [4805](https://github.com/hackforla/website/issues/4805) at 2023-07-27 05:51 PM PDT -awellsbiz,2023-07-28T07:07:53Z,- awellsbiz commented on issue: [4805](https://github.com/hackforla/website/issues/4805#issuecomment-1655148426) at 2023-07-28 12:07 AM PDT -awellsbiz,2023-07-28T07:12:25Z,- awellsbiz opened pull request: [5107](https://github.com/hackforla/website/pull/5107) at 2023-07-28 12:12 AM PDT -awellsbiz,2023-07-31T01:03:54Z,- awellsbiz commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1657344478) at 2023-07-30 06:03 PM PDT -awellsbiz,2023-07-31T19:46:45Z,- awellsbiz commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1659030698) at 2023-07-31 12:46 PM PDT -awellsbiz,2023-08-02T10:05:29Z,- awellsbiz pull request closed w/o merging: [5107](https://github.com/hackforla/website/pull/5107#event-9986188916) at 2023-08-02 03:05 AM PDT -awellsbiz,2023-08-03T05:00:49Z,- awellsbiz opened pull request: [5133](https://github.com/hackforla/website/pull/5133) at 2023-08-02 10:00 PM PDT -awellsbiz,2023-08-04T18:57:30Z,- awellsbiz commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1666047723) at 2023-08-04 11:57 AM PDT -awellsbiz,2023-08-06T01:37:25Z,- awellsbiz pull request merged: [5133](https://github.com/hackforla/website/pull/5133#event-10016377436) at 2023-08-05 06:37 PM PDT -awellsbiz,2023-08-06T09:41:56Z,- awellsbiz commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1666793667) at 2023-08-06 02:41 AM PDT -awellsbiz,2023-08-09T17:37:08Z,- awellsbiz assigned to issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1641393562) at 2023-08-09 10:37 AM PDT -awellsbiz,2023-08-09T17:39:57Z,- awellsbiz commented on issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1671868879) at 2023-08-09 10:39 AM PDT -ayin-55,2018-12-18T22:47:55Z,- ayin-55 opened pull request: [25](https://github.com/hackforla/website/pull/25) at 2018-12-18 02:47 PM PST -ayin-55,2018-12-19T05:26:28Z,- ayin-55 pull request merged: [25](https://github.com/hackforla/website/pull/25#event-2034772893) at 2018-12-18 09:26 PM PST -BeckettOBrien,3267,SKILLS ISSUE -BeckettOBrien,2022-06-20T21:41:34Z,- BeckettOBrien opened issue: [3267](https://github.com/hackforla/website/issues/3267) at 2022-06-20 02:41 PM PDT -BeckettOBrien,2022-06-20T21:56:28Z,- BeckettOBrien assigned to issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1160868474) at 2022-06-20 02:56 PM PDT -BeckettOBrien,2022-06-22T01:13:59Z,- BeckettOBrien commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1162514873) at 2022-06-21 06:13 PM PDT -BeckettOBrien,2022-06-22T02:45:08Z,- BeckettOBrien assigned to issue: [2876](https://github.com/hackforla/website/issues/2876#issuecomment-1049090274) at 2022-06-21 07:45 PM PDT -BeckettOBrien,2022-06-22T02:50:54Z,- BeckettOBrien commented on issue: [2876](https://github.com/hackforla/website/issues/2876#issuecomment-1162574489) at 2022-06-21 07:50 PM PDT -BeckettOBrien,2022-06-22T03:14:21Z,- BeckettOBrien opened pull request: [3285](https://github.com/hackforla/website/pull/3285) at 2022-06-21 08:14 PM PDT -BeckettOBrien,2022-06-22T05:24:21Z,- BeckettOBrien pull request merged: [3285](https://github.com/hackforla/website/pull/3285#event-6853033498) at 2022-06-21 10:24 PM PDT -BeckettOBrien,2022-06-22T22:30:34Z,- BeckettOBrien assigned to issue: [3093](https://github.com/hackforla/website/issues/3093#issuecomment-1116761701) at 2022-06-22 03:30 PM PDT -BeckettOBrien,2022-06-22T22:33:53Z,- BeckettOBrien commented on issue: [3093](https://github.com/hackforla/website/issues/3093#issuecomment-1163715523) at 2022-06-22 03:33 PM PDT -BeckettOBrien,2022-06-22T22:53:24Z,- BeckettOBrien opened pull request: [3288](https://github.com/hackforla/website/pull/3288) at 2022-06-22 03:53 PM PDT -BeckettOBrien,2022-06-22T23:18:34Z,- BeckettOBrien commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1163752423) at 2022-06-22 04:18 PM PDT -BeckettOBrien,2022-06-22T23:37:42Z,- BeckettOBrien submitted pull request review: [3224](https://github.com/hackforla/website/pull/3224#pullrequestreview-1016131290) at 2022-06-22 04:37 PM PDT -BeckettOBrien,2022-06-23T19:53:42Z,- BeckettOBrien pull request merged: [3288](https://github.com/hackforla/website/pull/3288#event-6869155950) at 2022-06-23 12:53 PM PDT -BeckettOBrien,2022-06-23T20:13:49Z,- BeckettOBrien commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1164825027) at 2022-06-23 01:13 PM PDT -BeckettOBrien,2022-06-23T20:13:53Z,- BeckettOBrien commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1164825075) at 2022-06-23 01:13 PM PDT -BeckettOBrien,2022-06-23T22:28:59Z,- BeckettOBrien commented on pull request: [3297](https://github.com/hackforla/website/pull/3297#issuecomment-1164975221) at 2022-06-23 03:28 PM PDT -BeckettOBrien,2022-06-23T23:18:09Z,- BeckettOBrien assigned to issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1147996123) at 2022-06-23 04:18 PM PDT -BeckettOBrien,2022-06-23T23:19:49Z,- BeckettOBrien commented on issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1165003659) at 2022-06-23 04:19 PM PDT -BeckettOBrien,2022-06-23T23:37:24Z,- BeckettOBrien opened pull request: [3298](https://github.com/hackforla/website/pull/3298) at 2022-06-23 04:37 PM PDT -BeckettOBrien,2022-06-25T14:50:57Z,- BeckettOBrien pull request merged: [3298](https://github.com/hackforla/website/pull/3298#event-6879104854) at 2022-06-25 07:50 AM PDT -BeckettOBrien,2022-06-26T18:40:14Z,- BeckettOBrien opened issue: [3307](https://github.com/hackforla/website/issues/3307) at 2022-06-26 11:40 AM PDT -BeckettOBrien,2022-06-27T20:37:10Z,- BeckettOBrien assigned to issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1162705692) at 2022-06-27 01:37 PM PDT -BeckettOBrien,2022-06-27T20:38:43Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1167864276) at 2022-06-27 01:38 PM PDT -BeckettOBrien,2022-06-27T21:19:31Z,- BeckettOBrien opened pull request: [3321](https://github.com/hackforla/website/pull/3321) at 2022-06-27 02:19 PM PDT -BeckettOBrien,2022-06-28T21:26:17Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1169259075) at 2022-06-28 02:26 PM PDT -BeckettOBrien,2022-06-28T22:42:16Z,- BeckettOBrien commented on pull request: [3319](https://github.com/hackforla/website/pull/3319#issuecomment-1169360677) at 2022-06-28 03:42 PM PDT -BeckettOBrien,2022-06-28T22:52:50Z,- BeckettOBrien submitted pull request review: [3319](https://github.com/hackforla/website/pull/3319#pullrequestreview-1022560062) at 2022-06-28 03:52 PM PDT -BeckettOBrien,2022-06-29T02:16:28Z,- BeckettOBrien commented on pull request: [3322](https://github.com/hackforla/website/pull/3322#issuecomment-1169459288) at 2022-06-28 07:16 PM PDT -BeckettOBrien,2022-06-29T02:19:54Z,- BeckettOBrien submitted pull request review: [3322](https://github.com/hackforla/website/pull/3322#pullrequestreview-1022659022) at 2022-06-28 07:19 PM PDT -BeckettOBrien,2022-06-29T20:58:12Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170486890) at 2022-06-29 01:58 PM PDT -BeckettOBrien,2022-06-29T22:56:21Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170572777) at 2022-06-29 03:56 PM PDT -BeckettOBrien,2022-06-30T00:05:36Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170608684) at 2022-06-29 05:05 PM PDT -BeckettOBrien,2022-06-30T18:56:20Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1171566666) at 2022-06-30 11:56 AM PDT -BeckettOBrien,2022-07-02T00:54:11Z,- BeckettOBrien pull request merged: [3321](https://github.com/hackforla/website/pull/3321#event-6921545450) at 2022-07-01 05:54 PM PDT -BeckettOBrien,2022-07-03T20:42:02Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173168293) at 2022-07-03 01:42 PM PDT -BeckettOBrien,2022-07-03T20:47:03Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173168931) at 2022-07-03 01:47 PM PDT -BeckettOBrien,2022-07-05T20:47:11Z,- BeckettOBrien commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1175482608) at 2022-07-05 01:47 PM PDT -BeckettOBrien,2022-07-05T20:49:57Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1175484735) at 2022-07-05 01:49 PM PDT -BeckettOBrien,2022-07-05T20:49:58Z,- BeckettOBrien reopened issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1175484735) at 2022-07-05 01:49 PM PDT -BeckettOBrien,2022-07-05T21:16:45Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1175506616) at 2022-07-05 02:16 PM PDT -BeckettOBrien,2022-07-06T05:03:06Z,- BeckettOBrien opened pull request: [3333](https://github.com/hackforla/website/pull/3333) at 2022-07-05 10:03 PM PDT -BeckettOBrien,2022-07-06T05:05:51Z,- BeckettOBrien commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1175785431) at 2022-07-05 10:05 PM PDT -BeckettOBrien,2022-07-06T18:31:16Z,- BeckettOBrien pull request closed w/o merging: [3333](https://github.com/hackforla/website/pull/3333#event-6945236987) at 2022-07-06 11:31 AM PDT -BeckettOBrien,2022-07-06T18:31:21Z,- BeckettOBrien reopened pull request: [3333](https://github.com/hackforla/website/pull/3333#event-6945236987) at 2022-07-06 11:31 AM PDT -BeckettOBrien,2022-07-06T18:36:47Z,- BeckettOBrien commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1176548248) at 2022-07-06 11:36 AM PDT -BeckettOBrien,2022-07-07T04:27:58Z,- BeckettOBrien commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1177051723) at 2022-07-06 09:27 PM PDT -BeckettOBrien,2022-07-07T04:27:58Z,- BeckettOBrien pull request closed w/o merging: [3333](https://github.com/hackforla/website/pull/3333#event-6948169665) at 2022-07-06 09:27 PM PDT -BeckettOBrien,2022-07-07T17:10:35Z,- BeckettOBrien assigned to issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1170764870) at 2022-07-07 10:10 AM PDT -BeckettOBrien,2022-07-07T17:11:26Z,- BeckettOBrien commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1177949617) at 2022-07-07 10:11 AM PDT -BeckettOBrien,2022-07-07T17:34:12Z,- BeckettOBrien opened pull request: [3338](https://github.com/hackforla/website/pull/3338) at 2022-07-07 10:34 AM PDT -BeckettOBrien,2022-07-07T18:08:55Z,- BeckettOBrien commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1178021534) at 2022-07-07 11:08 AM PDT -BeckettOBrien,2022-07-07T18:25:10Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178040749) at 2022-07-07 11:25 AM PDT -BeckettOBrien,2022-07-07T18:35:51Z,- BeckettOBrien submitted pull request review: [3329](https://github.com/hackforla/website/pull/3329#pullrequestreview-1032012010) at 2022-07-07 11:35 AM PDT -BeckettOBrien,2022-07-07T21:08:01Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178232280) at 2022-07-07 02:08 PM PDT -BeckettOBrien,2022-07-09T23:26:11Z,- BeckettOBrien pull request merged: [3338](https://github.com/hackforla/website/pull/3338#event-6964440313) at 2022-07-09 04:26 PM PDT -BeckettOBrien,2022-07-11T20:55:39Z,- BeckettOBrien assigned to issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1120289117) at 2022-07-11 01:55 PM PDT -BeckettOBrien,2022-07-11T20:56:00Z,- BeckettOBrien commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1180861635) at 2022-07-11 01:56 PM PDT -BeckettOBrien,2022-07-11T21:17:35Z,- BeckettOBrien opened pull request: [3359](https://github.com/hackforla/website/pull/3359) at 2022-07-11 02:17 PM PDT -BeckettOBrien,2022-07-11T21:25:29Z,- BeckettOBrien commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1180885849) at 2022-07-11 02:25 PM PDT -BeckettOBrien,2022-07-13T01:05:00Z,- BeckettOBrien commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1182648781) at 2022-07-12 06:05 PM PDT -BeckettOBrien,2022-07-13T02:17:53Z,- BeckettOBrien closed issue by PR 3321: [3257](https://github.com/hackforla/website/issues/3257#event-6982275847) at 2022-07-12 07:17 PM PDT -BeckettOBrien,2022-07-13T21:20:11Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1183689459) at 2022-07-13 02:20 PM PDT -BeckettOBrien,2022-07-13T21:37:24Z,- BeckettOBrien submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1038009950) at 2022-07-13 02:37 PM PDT -BeckettOBrien,2022-07-15T19:40:00Z,- BeckettOBrien commented on pull request: [3372](https://github.com/hackforla/website/pull/3372#issuecomment-1185850192) at 2022-07-15 12:40 PM PDT -BeckettOBrien,2022-07-15T20:19:05Z,- BeckettOBrien submitted pull request review: [3372](https://github.com/hackforla/website/pull/3372#pullrequestreview-1040766609) at 2022-07-15 01:19 PM PDT -BeckettOBrien,2022-07-15T21:35:56Z,- BeckettOBrien commented on pull request: [3373](https://github.com/hackforla/website/pull/3373#issuecomment-1185964373) at 2022-07-15 02:35 PM PDT -BeckettOBrien,2022-07-15T21:56:33Z,- BeckettOBrien submitted pull request review: [3373](https://github.com/hackforla/website/pull/3373#pullrequestreview-1040837912) at 2022-07-15 02:56 PM PDT -BeckettOBrien,2022-07-17T06:24:18Z,- BeckettOBrien submitted pull request review: [3373](https://github.com/hackforla/website/pull/3373#pullrequestreview-1041075322) at 2022-07-16 11:24 PM PDT -BeckettOBrien,2022-07-18T04:30:09Z,- BeckettOBrien pull request merged: [3359](https://github.com/hackforla/website/pull/3359#event-7008811983) at 2022-07-17 09:30 PM PDT -BeckettOBrien,2022-07-18T05:40:51Z,- BeckettOBrien commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186789011) at 2022-07-17 10:40 PM PDT -BeckettOBrien,2022-07-18T17:23:27Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1187842497) at 2022-07-18 10:23 AM PDT -BeckettOBrien,2022-07-18T18:52:24Z,- BeckettOBrien submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1042333468) at 2022-07-18 11:52 AM PDT -BeckettOBrien,2022-07-18T20:03:30Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188246633) at 2022-07-18 01:03 PM PDT -BeckettOBrien,2022-07-18T23:44:30Z,- BeckettOBrien assigned to issue: [2065](https://github.com/hackforla/website/issues/2065) at 2022-07-18 04:44 PM PDT -BeckettOBrien,2022-07-18T23:45:52Z,- BeckettOBrien commented on issue: [2065](https://github.com/hackforla/website/issues/2065#issuecomment-1188444519) at 2022-07-18 04:45 PM PDT -BeckettOBrien,2022-07-19T01:44:41Z,- BeckettOBrien commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188503939) at 2022-07-18 06:44 PM PDT -BeckettOBrien,2022-07-19T18:02:56Z,- BeckettOBrien submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1043874054) at 2022-07-19 11:02 AM PDT -BeckettOBrien,2022-07-19T18:10:28Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189401206) at 2022-07-19 11:10 AM PDT -BeckettOBrien,2022-07-19T18:33:52Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1043914355) at 2022-07-19 11:33 AM PDT -BeckettOBrien,2022-07-19T19:47:13Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1043993148) at 2022-07-19 12:47 PM PDT -BeckettOBrien,2022-07-19T21:09:44Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189552467) at 2022-07-19 02:09 PM PDT -BeckettOBrien,2022-07-19T23:08:37Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189636255) at 2022-07-19 04:08 PM PDT -BeckettOBrien,2022-07-20T03:05:07Z,- BeckettOBrien opened issue: [3396](https://github.com/hackforla/website/issues/3396) at 2022-07-19 08:05 PM PDT -BeckettOBrien,2022-07-20T17:00:11Z,- BeckettOBrien commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1190528038) at 2022-07-20 10:00 AM PDT -BeckettOBrien,2022-07-20T17:05:37Z,- BeckettOBrien submitted pull request review: [3394](https://github.com/hackforla/website/pull/3394#pullrequestreview-1045393503) at 2022-07-20 10:05 AM PDT -BeckettOBrien,2022-07-20T17:51:32Z,- BeckettOBrien commented on issue: [2065](https://github.com/hackforla/website/issues/2065#issuecomment-1190579335) at 2022-07-20 10:51 AM PDT -BeckettOBrien,2022-07-20T18:29:40Z,- BeckettOBrien submitted pull request review: [3394](https://github.com/hackforla/website/pull/3394#pullrequestreview-1045506656) at 2022-07-20 11:29 AM PDT -BeckettOBrien,2022-07-20T19:00:29Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1045541233) at 2022-07-20 12:00 PM PDT -BeckettOBrien,2022-07-20T22:05:13Z,- BeckettOBrien commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1190808342) at 2022-07-20 03:05 PM PDT -BeckettOBrien,2022-07-21T20:23:36Z,- BeckettOBrien opened pull request: [3414](https://github.com/hackforla/website/pull/3414) at 2022-07-21 01:23 PM PDT -BeckettOBrien,2022-07-21T20:29:54Z,- BeckettOBrien commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1191903884) at 2022-07-21 01:29 PM PDT -BeckettOBrien,2022-07-22T20:26:43Z,- BeckettOBrien submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1048366525) at 2022-07-22 01:26 PM PDT -BeckettOBrien,2022-07-23T20:11:36Z,- BeckettOBrien commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1193182393) at 2022-07-23 01:11 PM PDT -BeckettOBrien,2022-07-23T23:06:09Z,- BeckettOBrien submitted pull request review: [3422](https://github.com/hackforla/website/pull/3422#pullrequestreview-1048575380) at 2022-07-23 04:06 PM PDT -BeckettOBrien,2022-07-25T17:29:38Z,- BeckettOBrien commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194389201) at 2022-07-25 10:29 AM PDT -BeckettOBrien,2022-07-25T19:38:05Z,- BeckettOBrien submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1049967786) at 2022-07-25 12:38 PM PDT -BeckettOBrien,2022-07-25T19:38:59Z,- BeckettOBrien commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194535671) at 2022-07-25 12:38 PM PDT -BeckettOBrien,2022-07-25T20:14:13Z,- BeckettOBrien commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194572555) at 2022-07-25 01:14 PM PDT -BeckettOBrien,2022-07-25T22:55:57Z,- BeckettOBrien submitted pull request review: [3427](https://github.com/hackforla/website/pull/3427#pullrequestreview-1050168170) at 2022-07-25 03:55 PM PDT -BeckettOBrien,2022-07-26T18:05:41Z,- BeckettOBrien commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195812708) at 2022-07-26 11:05 AM PDT -BeckettOBrien,2022-07-26T18:06:47Z,- BeckettOBrien commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1195813861) at 2022-07-26 11:06 AM PDT -BeckettOBrien,2022-07-26T18:15:19Z,- BeckettOBrien commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1195822474) at 2022-07-26 11:15 AM PDT -BeckettOBrien,2022-07-27T02:28:50Z,- BeckettOBrien submitted pull request review: [3429](https://github.com/hackforla/website/pull/3429#pullrequestreview-1051813471) at 2022-07-26 07:28 PM PDT -BeckettOBrien,2022-07-27T22:45:29Z,- BeckettOBrien commented on pull request: [3429](https://github.com/hackforla/website/pull/3429#issuecomment-1197453410) at 2022-07-27 03:45 PM PDT -BeckettOBrien,2022-07-27T22:46:53Z,- BeckettOBrien commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197454186) at 2022-07-27 03:46 PM PDT -BeckettOBrien,2022-07-28T18:18:26Z,- BeckettOBrien commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1198486711) at 2022-07-28 11:18 AM PDT -BeckettOBrien,2022-10-04T15:49:34Z,- BeckettOBrien pull request closed w/o merging: [3414](https://github.com/hackforla/website/pull/3414#event-7517885874) at 2022-10-04 08:49 AM PDT -bexux,7206,SKILLS ISSUE -bexux,2024-08-06T03:11:06Z,- bexux opened issue: [7206](https://github.com/hackforla/website/issues/7206) at 2024-08-05 08:11 PM PDT -bexux,2024-08-06T03:11:16Z,- bexux assigned to issue: [7206](https://github.com/hackforla/website/issues/7206) at 2024-08-05 08:11 PM PDT -bexux,2024-08-07T02:14:24Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2272486811) at 2024-08-06 07:14 PM PDT -bexux,2024-08-07T02:18:52Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2272490246) at 2024-08-06 07:18 PM PDT -bexux,2024-08-10T20:54:29Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2282275251) at 2024-08-10 01:54 PM PDT -bexux,2024-08-10T20:59:26Z,- bexux assigned to issue: [7184](https://github.com/hackforla/website/issues/7184) at 2024-08-10 01:59 PM PDT -bexux,2024-08-10T21:20:46Z,- bexux commented on issue: [7184](https://github.com/hackforla/website/issues/7184#issuecomment-2282280239) at 2024-08-10 02:20 PM PDT -bexux,2024-08-10T22:17:25Z,- bexux opened pull request: [7263](https://github.com/hackforla/website/pull/7263) at 2024-08-10 03:17 PM PDT -bexux,2024-08-11T21:03:24Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2282889022) at 2024-08-11 02:03 PM PDT -bexux,2024-08-15T15:03:26Z,- bexux pull request merged: [7263](https://github.com/hackforla/website/pull/7263#event-13897317833) at 2024-08-15 08:03 AM PDT -bexux,2024-08-16T10:54:39Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2293289577) at 2024-08-16 03:54 AM PDT -bexux,2024-08-16T10:56:55Z,- bexux assigned to issue: [7247](https://github.com/hackforla/website/issues/7247) at 2024-08-16 03:56 AM PDT -bexux,2024-08-16T11:09:28Z,- bexux commented on issue: [7247](https://github.com/hackforla/website/issues/7247#issuecomment-2293308871) at 2024-08-16 04:09 AM PDT -bexux,2024-08-16T11:35:20Z,- bexux opened pull request: [7302](https://github.com/hackforla/website/pull/7302) at 2024-08-16 04:35 AM PDT -bexux,2024-08-16T11:49:08Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2293362983) at 2024-08-16 04:49 AM PDT -bexux,2024-08-21T02:29:18Z,- bexux pull request merged: [7302](https://github.com/hackforla/website/pull/7302#event-13953263132) at 2024-08-20 07:29 PM PDT -bexux,2024-08-22T21:48:17Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2305804607) at 2024-08-22 02:48 PM PDT -bexux,2024-08-23T21:06:11Z,- bexux commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2307810781) at 2024-08-23 02:06 PM PDT -bexux,2024-08-23T21:35:45Z,- bexux submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2258139806) at 2024-08-23 02:35 PM PDT -bexux,2024-08-23T21:39:45Z,- bexux submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2258143294) at 2024-08-23 02:39 PM PDT -bexux,2024-08-23T22:48:18Z,- bexux submitted pull request review: [7342](https://github.com/hackforla/website/pull/7342#pullrequestreview-2258194378) at 2024-08-23 03:48 PM PDT -bexux,2024-08-23T22:58:23Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2307904653) at 2024-08-23 03:58 PM PDT -bexux,2024-08-23T23:08:06Z,- bexux commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2307910575) at 2024-08-23 04:08 PM PDT -bexux,2024-08-25T00:10:50Z,- bexux commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308583867) at 2024-08-24 05:10 PM PDT -bexux,2024-08-25T00:11:43Z,- bexux submitted pull request review: [7347](https://github.com/hackforla/website/pull/7347#pullrequestreview-2259030710) at 2024-08-24 05:11 PM PDT -bexux,2024-08-25T00:13:17Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2308584591) at 2024-08-24 05:13 PM PDT -bexux,2024-08-25T00:15:16Z,- bexux commented on pull request: [7348](https://github.com/hackforla/website/pull/7348#issuecomment-2308585124) at 2024-08-24 05:15 PM PDT -bexux,2024-08-25T00:20:01Z,- bexux submitted pull request review: [7348](https://github.com/hackforla/website/pull/7348#pullrequestreview-2259032060) at 2024-08-24 05:20 PM PDT -bexux,2024-08-25T00:20:49Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2308586854) at 2024-08-24 05:20 PM PDT -bexux,2024-08-25T00:28:20Z,- bexux commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2308589091) at 2024-08-24 05:28 PM PDT -bexux,2024-08-26T15:08:58Z,- bexux submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2260937965) at 2024-08-26 08:08 AM PDT -bexux,2024-08-26T15:10:53Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2310452292) at 2024-08-26 08:10 AM PDT -bexux,2024-08-26T15:13:00Z,- bexux submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2260947315) at 2024-08-26 08:13 AM PDT -bexux,2024-08-26T15:13:50Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2310458385) at 2024-08-26 08:13 AM PDT -bexux,2024-08-29T00:04:24Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2316458756) at 2024-08-28 05:04 PM PDT -bexux,2024-08-29T15:18:37Z,- bexux assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2314328463) at 2024-08-29 08:18 AM PDT -bexux,2024-08-29T15:20:10Z,- bexux commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318083392) at 2024-08-29 08:20 AM PDT -bexux,2024-08-29T15:26:25Z,- bexux commented on pull request: [7364](https://github.com/hackforla/website/pull/7364#issuecomment-2318143647) at 2024-08-29 08:26 AM PDT -bexux,2024-08-29T15:27:16Z,- bexux submitted pull request review: [7364](https://github.com/hackforla/website/pull/7364#pullrequestreview-2269208916) at 2024-08-29 08:27 AM PDT -bexux,2024-08-29T17:39:37Z,- bexux unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318083392) at 2024-08-29 10:39 AM PDT -bexux,2024-09-07T17:51:57Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2336264473) at 2024-09-07 10:51 AM PDT -bexux,2024-09-07T17:57:38Z,- bexux submitted pull request review: [7408](https://github.com/hackforla/website/pull/7408#pullrequestreview-2288267454) at 2024-09-07 10:57 AM PDT -bexux,2024-09-07T18:00:42Z,- bexux submitted pull request review: [7406](https://github.com/hackforla/website/pull/7406#pullrequestreview-2288277881) at 2024-09-07 11:00 AM PDT -bexux,2024-09-12T00:59:19Z,- bexux commented on pull request: [7437](https://github.com/hackforla/website/pull/7437#issuecomment-2345049242) at 2024-09-11 05:59 PM PDT -bexux,2024-09-12T02:46:04Z,- bexux submitted pull request review: [7437](https://github.com/hackforla/website/pull/7437#pullrequestreview-2299113109) at 2024-09-11 07:46 PM PDT -bexux,2024-09-13T02:18:57Z,- bexux assigned to issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2300157054) at 2024-09-12 07:18 PM PDT -bexux,2024-09-13T02:20:20Z,- bexux commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2347913025) at 2024-09-12 07:20 PM PDT -bexux,2024-09-14T16:48:27Z,- bexux assigned to issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2336956265) at 2024-09-14 09:48 AM PDT -bexux,2024-09-14T16:48:44Z,- bexux unassigned from issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2351057207) at 2024-09-14 09:48 AM PDT -bexux,2024-09-14T22:01:55Z,- bexux commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2351173244) at 2024-09-14 03:01 PM PDT -bexux,2024-09-15T22:54:53Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2351821578) at 2024-09-15 03:54 PM PDT -bexux,2024-09-15T22:56:57Z,- bexux assigned to issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2336954430) at 2024-09-15 03:56 PM PDT -bexux,2024-09-15T22:57:44Z,- bexux commented on issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2351822382) at 2024-09-15 03:57 PM PDT -bexux,2024-09-15T23:44:38Z,- bexux opened pull request: [7462](https://github.com/hackforla/website/pull/7462) at 2024-09-15 04:44 PM PDT -bexux,2024-09-18T19:14:13Z,- bexux pull request merged: [7462](https://github.com/hackforla/website/pull/7462#event-14312516561) at 2024-09-18 12:14 PM PDT -bexux,2024-09-26T15:11:07Z,- bexux assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2362570158) at 2024-09-26 08:11 AM PDT -bexux,2024-09-26T15:11:39Z,- bexux unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2362570158) at 2024-09-26 08:11 AM PDT -bexux,2024-10-03T18:24:07Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2392050285) at 2024-10-03 11:24 AM PDT -bexux,2024-10-10T17:13:57Z,- bexux assigned to issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2350756398) at 2024-10-10 10:13 AM PDT -bexux,2024-10-10T17:15:05Z,- bexux commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405650717) at 2024-10-10 10:15 AM PDT -bexux,2024-10-10T19:27:55Z,- bexux opened issue: [7581](https://github.com/hackforla/website/issues/7581) at 2024-10-10 12:27 PM PDT -bexux,2024-10-10T19:31:39Z,- bexux commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405885108) at 2024-10-10 12:31 PM PDT -bexux,2024-10-10T19:39:30Z,- bexux opened issue: [7582](https://github.com/hackforla/website/issues/7582) at 2024-10-10 12:39 PM PDT -bexux,2024-10-10T19:52:27Z,- bexux opened issue: [7583](https://github.com/hackforla/website/issues/7583) at 2024-10-10 12:52 PM PDT -bexux,2024-10-10T19:53:49Z,- bexux commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405919668) at 2024-10-10 12:53 PM PDT -bexux,2024-10-10T19:57:56Z,- bexux opened issue: [7584](https://github.com/hackforla/website/issues/7584) at 2024-10-10 12:57 PM PDT -bexux,2024-10-10T20:19:03Z,- bexux opened issue: [7585](https://github.com/hackforla/website/issues/7585) at 2024-10-10 01:19 PM PDT -bexux,2024-10-11T18:50:39Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2407959518) at 2024-10-11 11:50 AM PDT -bexux,2024-10-11T22:19:32Z,- bexux commented on issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2408189434) at 2024-10-11 03:19 PM PDT -bexux,2024-10-18T16:23:04Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2422829957) at 2024-10-18 09:23 AM PDT -bexux,2024-11-10T20:01:02Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2466884278) at 2024-11-10 12:01 PM PST -bexux,2024-11-10T20:10:38Z,- bexux assigned to issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2406688062) at 2024-11-10 12:10 PM PST -bexux,2024-11-10T20:11:38Z,- bexux commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2466895386) at 2024-11-10 12:11 PM PST -bexux,2024-11-10T20:56:11Z,- bexux opened pull request: [7715](https://github.com/hackforla/website/pull/7715) at 2024-11-10 12:56 PM PST -bexux,2024-11-10T21:01:45Z,- bexux commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2466916511) at 2024-11-10 01:01 PM PST -bexux,2024-11-15T01:15:16Z,- bexux pull request merged: [7715](https://github.com/hackforla/website/pull/7715#event-15306081372) at 2024-11-14 05:15 PM PST -bexux,2024-11-20T16:44:58Z,- bexux commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2489086146) at 2024-11-20 08:44 AM PST -bfirestone23,2021-07-08T05:00:10Z,- bfirestone23 assigned to issue: [1524](https://github.com/hackforla/website/issues/1524) at 2021-07-07 10:00 PM PDT -bfirestone23,2021-07-08T05:25:07Z,- bfirestone23 opened pull request: [1903](https://github.com/hackforla/website/pull/1903) at 2021-07-07 10:25 PM PDT -bfirestone23,2021-07-09T02:15:06Z,- bfirestone23 pull request merged: [1903](https://github.com/hackforla/website/pull/1903#event-4997971022) at 2021-07-08 07:15 PM PDT -bfirestone23,2021-07-09T02:24:32Z,- bfirestone23 assigned to issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-876672507) at 2021-07-08 07:24 PM PDT -bfirestone23,2021-07-09T22:30:52Z,- bfirestone23 commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-877489755) at 2021-07-09 03:30 PM PDT -bfirestone23,2021-07-10T21:51:27Z,- bfirestone23 opened pull request: [1915](https://github.com/hackforla/website/pull/1915) at 2021-07-10 02:51 PM PDT -bfirestone23,2021-07-12T01:24:50Z,- bfirestone23 pull request merged: [1915](https://github.com/hackforla/website/pull/1915#event-5004782850) at 2021-07-11 06:24 PM PDT -bfirestone23,2021-07-13T01:38:41Z,- bfirestone23 assigned to issue: [1910](https://github.com/hackforla/website/issues/1910) at 2021-07-12 06:38 PM PDT -bfirestone23,2021-07-13T02:59:37Z,- bfirestone23 opened issue: [1934](https://github.com/hackforla/website/issues/1934) at 2021-07-12 07:59 PM PDT -bfirestone23,2021-07-13T04:53:59Z,- bfirestone23 opened pull request: [1935](https://github.com/hackforla/website/pull/1935) at 2021-07-12 09:53 PM PDT -bfirestone23,2021-07-13T05:44:20Z,- bfirestone23 pull request merged: [1935](https://github.com/hackforla/website/pull/1935#event-5011335656) at 2021-07-12 10:44 PM PDT -Bhavyabhardwaj,2024-07-15T06:28:51Z,- Bhavyabhardwaj opened pull request: [7114](https://github.com/hackforla/website/pull/7114) at 2024-07-14 11:28 PM PDT -Bhavyabhardwaj,2024-07-15T06:38:08Z,- Bhavyabhardwaj pull request closed w/o merging: [7114](https://github.com/hackforla/website/pull/7114#event-13500794972) at 2024-07-14 11:38 PM PDT -Bhavyabhardwaj,2024-07-15T06:41:57Z,- Bhavyabhardwaj opened pull request: [7116](https://github.com/hackforla/website/pull/7116) at 2024-07-14 11:41 PM PDT -Bhavyabhardwaj,2024-07-15T06:49:46Z,- Bhavyabhardwaj pull request closed w/o merging: [7116](https://github.com/hackforla/website/pull/7116#event-13500895196) at 2024-07-14 11:49 PM PDT -bilalshaikh292,2023-07-27T12:06:44Z,- bilalshaikh292 commented on issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1653483672) at 2023-07-27 05:06 AM PDT -bilalshaikh292,2023-07-27T19:04:28Z,- bilalshaikh292 commented on issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1654258351) at 2023-07-27 12:04 PM PDT -bishrfaisal,2022-09-02T23:04:27Z,- bishrfaisal commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1235964732) at 2022-09-02 04:04 PM PDT -bishrfaisal,2022-09-02T23:26:49Z,- bishrfaisal commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1235975251) at 2022-09-02 04:26 PM PDT -bishrfaisal,2022-09-02T23:28:49Z,- bishrfaisal commented on issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1235976252) at 2022-09-02 04:28 PM PDT -bishrfaisal,2022-09-02T23:39:49Z,- bishrfaisal commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1235980602) at 2022-09-02 04:39 PM PDT -bishrfaisal,2022-09-02T23:48:18Z,- bishrfaisal commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1235983903) at 2022-09-02 04:48 PM PDT -bishrfaisal,2022-09-08T21:31:24Z,- bishrfaisal commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1241254607) at 2022-09-08 02:31 PM PDT -bishrfaisal,2022-09-08T21:31:24Z,- bishrfaisal closed issue as completed: [3406](https://github.com/hackforla/website/issues/3406#event-7351653964) at 2022-09-08 02:31 PM PDT -bishrfaisal,2022-09-08T21:31:33Z,- bishrfaisal reopened issue: [3406](https://github.com/hackforla/website/issues/3406#event-7351653964) at 2022-09-08 02:31 PM PDT -bishrfaisal,2022-09-08T21:43:48Z,- bishrfaisal opened issue: [3530](https://github.com/hackforla/website/issues/3530) at 2022-09-08 02:43 PM PDT -bishrfaisal,2022-09-08T21:53:22Z,- bishrfaisal assigned to issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1241267822) at 2022-09-08 02:53 PM PDT -bishrfaisal,2022-09-10T16:56:49Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242767148) at 2022-09-10 09:56 AM PDT -bishrfaisal,2022-09-10T17:13:34Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242770010) at 2022-09-10 10:13 AM PDT -bishrfaisal,2022-09-10T17:16:59Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242770591) at 2022-09-10 10:16 AM PDT -bishrfaisal,2022-09-10T17:20:56Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242771448) at 2022-09-10 10:20 AM PDT -bishrfaisal,2022-09-10T17:25:12Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242772162) at 2022-09-10 10:25 AM PDT -bishrfaisal,2022-09-10T17:28:32Z,- bishrfaisal commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1242772690) at 2022-09-10 10:28 AM PDT -bishrfaisal,2022-09-18T17:09:34Z,- bishrfaisal assigned to issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-09-18 10:09 AM PDT -bishrfaisal,2022-09-18T17:10:00Z,- bishrfaisal unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-09-18 10:10 AM PDT -bishrfaisal,2022-09-28T16:33:50Z,- bishrfaisal commented on issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1261164143) at 2022-09-28 09:33 AM PDT -bishrfaisal,2022-10-02T16:32:36Z,- bishrfaisal commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1264682773) at 2022-10-02 09:32 AM PDT -bishrfaisal,2022-10-09T13:05:09Z,- bishrfaisal commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1272538399) at 2022-10-09 06:05 AM PDT -bishrfaisal,2022-10-09T13:17:07Z,- bishrfaisal commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1272540796) at 2022-10-09 06:17 AM PDT -bishrfaisal,2022-10-12T16:53:09Z,- bishrfaisal assigned to issue: [2612](https://github.com/hackforla/website/issues/2612#event-6972311840) at 2022-10-12 09:53 AM PDT -bishrfaisal,2022-10-12T21:50:16Z,- bishrfaisal commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1276772100) at 2022-10-12 02:50 PM PDT -bishrfaisal,2022-10-17T16:11:35Z,- bishrfaisal commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1281117570) at 2022-10-17 09:11 AM PDT -bishrfaisal,2022-10-17T16:17:16Z,- bishrfaisal commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1281125204) at 2022-10-17 09:17 AM PDT -bishrfaisal,2022-10-17T16:26:23Z,- bishrfaisal commented on issue: [3587](https://github.com/hackforla/website/issues/3587#issuecomment-1281136714) at 2022-10-17 09:26 AM PDT -bishrfaisal,2022-10-17T16:37:32Z,- bishrfaisal commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1281150566) at 2022-10-17 09:37 AM PDT -bishrfaisal,2022-10-17T16:44:10Z,- bishrfaisal commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1281157646) at 2022-10-17 09:44 AM PDT -bishrfaisal,2022-10-23T16:08:16Z,- bishrfaisal commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1288145343) at 2022-10-23 09:08 AM PDT -bishrfaisal,2022-10-23T16:15:31Z,- bishrfaisal commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1288146690) at 2022-10-23 09:15 AM PDT -bishrfaisal,2022-10-23T16:27:34Z,- bishrfaisal commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1288149085) at 2022-10-23 09:27 AM PDT -bishrfaisal,2022-10-23T19:06:39Z,- bishrfaisal assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-10-23 12:06 PM PDT -bishrfaisal,2022-10-24T16:49:57Z,- bishrfaisal commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1289316194) at 2022-10-24 09:49 AM PDT -bishrfaisal,2022-10-26T19:58:43Z,- bishrfaisal commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1292587475) at 2022-10-26 12:58 PM PDT -bishrfaisal,2022-10-30T16:31:25Z,- bishrfaisal commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1296296857) at 2022-10-30 09:31 AM PDT -bishrfaisal,2022-11-06T17:50:09Z,- bishrfaisal commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304855755) at 2022-11-06 09:50 AM PST -bishrfaisal,2022-11-06T19:33:04Z,- bishrfaisal commented on issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-1304875802) at 2022-11-06 11:33 AM PST -bishrfaisal,2022-11-06T19:33:23Z,- bishrfaisal closed issue by PR 3480: [2200](https://github.com/hackforla/website/issues/2200#event-7747799590) at 2022-11-06 11:33 AM PST -bishrfaisal,2022-11-07T22:13:51Z,- bishrfaisal commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1306296320) at 2022-11-07 02:13 PM PST -bishrfaisal,2022-11-09T18:08:18Z,- bishrfaisal assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1304856941) at 2022-11-09 10:08 AM PST -bishrfaisal,2022-11-13T17:47:28Z,- bishrfaisal unassigned from issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-11-13 09:47 AM PST -bishrfaisal,2022-11-14T17:05:43Z,- bishrfaisal commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1314089333) at 2022-11-14 09:05 AM PST -bishrfaisal,2022-11-14T17:06:19Z,- bishrfaisal commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1314091588) at 2022-11-14 09:06 AM PST -bishrfaisal,2022-11-14T17:17:15Z,- bishrfaisal commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1314109136) at 2022-11-14 09:17 AM PST -bishrfaisal,2022-11-14T17:38:27Z,- bishrfaisal commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1314134705) at 2022-11-14 09:38 AM PST -bishrfaisal,2022-11-14T17:57:07Z,- bishrfaisal commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-1314156645) at 2022-11-14 09:57 AM PST -bishrfaisal,2022-11-19T23:43:19Z,- bishrfaisal opened issue: [3732](https://github.com/hackforla/website/issues/3732) at 2022-11-19 03:43 PM PST -bishrfaisal,2022-11-30T17:26:54Z,- bishrfaisal commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1332503774) at 2022-11-30 09:26 AM PST -Biuwa,2022-11-30T04:02:48Z,- Biuwa opened issue: [3755](https://github.com/hackforla/website/issues/3755) at 2022-11-29 08:02 PM PST -Biuwa,2023-01-15T17:57:15Z,- Biuwa opened issue: [3818](https://github.com/hackforla/website/issues/3818) at 2023-01-15 09:57 AM PST -Biuwa,2023-02-11T05:17:23Z,- Biuwa opened issue: [3963](https://github.com/hackforla/website/issues/3963) at 2023-02-10 09:17 PM PST -Biuwa,2023-02-13T21:42:04Z,- Biuwa commented on issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1428728539) at 2023-02-13 01:42 PM PST -Biuwa,2023-02-14T01:18:09Z,- Biuwa commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428957701) at 2023-02-13 05:18 PM PST -Biuwa,2023-08-30T20:51:55Z,- Biuwa opened issue: [5381](https://github.com/hackforla/website/issues/5381) at 2023-08-30 01:51 PM PDT -BlakePeters99,7694,SKILLS ISSUE -BlakePeters99,2024-11-05T04:02:58Z,- BlakePeters99 opened issue: [7694](https://github.com/hackforla/website/issues/7694) at 2024-11-04 08:02 PM PST -BlakePeters99,2024-11-05T04:07:19Z,- BlakePeters99 assigned to issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2456185235) at 2024-11-04 08:07 PM PST -BlakePeters99,2024-11-15T01:05:35Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477743139) at 2024-11-14 05:05 PM PST -BlakePeters99,2024-11-15T01:07:38Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477745364) at 2024-11-14 05:07 PM PST -BlakePeters99,2024-11-15T01:36:22Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477775059) at 2024-11-14 05:36 PM PST -BlakePeters99,2024-11-15T02:07:59Z,- BlakePeters99 assigned to issue: [7474](https://github.com/hackforla/website/issues/7474) at 2024-11-14 06:07 PM PST -BlakePeters99,2024-11-15T02:50:15Z,- BlakePeters99 opened pull request: [7721](https://github.com/hackforla/website/pull/7721) at 2024-11-14 06:50 PM PST -BlakePeters99,2024-11-15T03:27:10Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477879599) at 2024-11-14 07:27 PM PST -BlakePeters99,2024-11-15T03:32:23Z,- BlakePeters99 commented on issue: [7474](https://github.com/hackforla/website/issues/7474#issuecomment-2477883645) at 2024-11-14 07:32 PM PST -BlakePeters99,2024-11-15T03:34:30Z,- BlakePeters99 commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2477885269) at 2024-11-14 07:34 PM PST -BlakePeters99,2024-11-15T03:37:34Z,- BlakePeters99 pull request merged: [7721](https://github.com/hackforla/website/pull/7721#event-15306811056) at 2024-11-14 07:37 PM PST -BlakePeters99,2024-11-15T03:37:38Z,- BlakePeters99 reopened pull request: [7721](https://github.com/hackforla/website/pull/7721#event-15306811056) at 2024-11-14 07:37 PM PST -BlakePeters99,2024-11-15T03:39:10Z,- BlakePeters99 commented on pull request: [7721](https://github.com/hackforla/website/pull/7721#issuecomment-2477888974) at 2024-11-14 07:39 PM PST -BlakePeters99,2024-11-15T20:18:47Z,- BlakePeters99 commented on pull request: [7721](https://github.com/hackforla/website/pull/7721#issuecomment-2479851883) at 2024-11-15 12:18 PM PST -BlakePeters99,2024-11-15T21:16:37Z,- BlakePeters99 pull request merged: [7721](https://github.com/hackforla/website/pull/7721#event-15317615852) at 2024-11-15 01:16 PM PST -blakes24,2021-07-22T23:43:15Z,- blakes24 assigned to issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-07-22 04:43 PM PDT -blakes24,2021-07-23T01:09:41Z,- blakes24 assigned to issue: [1943](https://github.com/hackforla/website/issues/1943) at 2021-07-22 06:09 PM PDT -blakes24,2021-07-23T01:57:01Z,- blakes24 opened pull request: [2001](https://github.com/hackforla/website/pull/2001) at 2021-07-22 06:57 PM PDT -blakes24,2021-07-23T05:42:44Z,- blakes24 opened pull request: [2004](https://github.com/hackforla/website/pull/2004) at 2021-07-22 10:42 PM PDT -blakes24,2021-07-24T05:42:55Z,- blakes24 commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-886003939) at 2021-07-23 10:42 PM PDT -blakes24,2021-07-25T20:07:33Z,- blakes24 submitted pull request review: [2003](https://github.com/hackforla/website/pull/2003#pullrequestreview-714347213) at 2021-07-25 01:07 PM PDT -blakes24,2021-07-29T22:09:19Z,- blakes24 pull request merged: [2001](https://github.com/hackforla/website/pull/2001#event-5088536822) at 2021-07-29 03:09 PM PDT -blakes24,2021-07-30T21:39:46Z,- blakes24 submitted pull request review: [2002](https://github.com/hackforla/website/pull/2002#pullrequestreview-719480405) at 2021-07-30 02:39 PM PDT -blakes24,2021-07-30T22:30:10Z,- blakes24 assigned to issue: [1973](https://github.com/hackforla/website/issues/1973) at 2021-07-30 03:30 PM PDT -blakes24,2021-07-30T22:45:11Z,- blakes24 opened pull request: [2022](https://github.com/hackforla/website/pull/2022) at 2021-07-30 03:45 PM PDT -blakes24,2021-08-01T15:34:04Z,- blakes24 pull request merged: [2004](https://github.com/hackforla/website/pull/2004#event-5095584407) at 2021-08-01 08:34 AM PDT -blakes24,2021-08-03T04:55:33Z,- blakes24 pull request merged: [2022](https://github.com/hackforla/website/pull/2022#event-5102482522) at 2021-08-02 09:55 PM PDT -blakes24,2021-08-04T20:19:51Z,- blakes24 assigned to issue: [2058](https://github.com/hackforla/website/issues/2058) at 2021-08-04 01:19 PM PDT -blakes24,2021-08-05T18:04:02Z,- blakes24 opened pull request: [2067](https://github.com/hackforla/website/pull/2067) at 2021-08-05 11:04 AM PDT -blakes24,2021-08-09T19:41:42Z,- blakes24 submitted pull request review: [2072](https://github.com/hackforla/website/pull/2072#pullrequestreview-725744696) at 2021-08-09 12:41 PM PDT -blakes24,2021-08-09T20:12:13Z,- blakes24 submitted pull request review: [2074](https://github.com/hackforla/website/pull/2074#pullrequestreview-725768670) at 2021-08-09 01:12 PM PDT -blakes24,2021-08-10T23:52:13Z,- blakes24 pull request merged: [2067](https://github.com/hackforla/website/pull/2067#event-5138405511) at 2021-08-10 04:52 PM PDT -blakes24,2021-08-11T21:12:53Z,- blakes24 assigned to issue: [2075](https://github.com/hackforla/website/issues/2075) at 2021-08-11 02:12 PM PDT -blakes24,2021-08-11T22:09:50Z,- blakes24 opened pull request: [2102](https://github.com/hackforla/website/pull/2102) at 2021-08-11 03:09 PM PDT -blakes24,2021-08-14T20:19:37Z,- blakes24 pull request merged: [2102](https://github.com/hackforla/website/pull/2102#event-5159068563) at 2021-08-14 01:19 PM PDT -blakes24,2021-08-15T22:06:42Z,- blakes24 submitted pull request review: [2118](https://github.com/hackforla/website/pull/2118#pullrequestreview-730223912) at 2021-08-15 03:06 PM PDT -blakes24,2021-08-16T20:29:58Z,- blakes24 assigned to issue: [1948](https://github.com/hackforla/website/issues/1948#issuecomment-895595474) at 2021-08-16 01:29 PM PDT -blakes24,2021-08-16T23:19:18Z,- blakes24 opened pull request: [2123](https://github.com/hackforla/website/pull/2123) at 2021-08-16 04:19 PM PDT -blakes24,2021-08-17T23:23:10Z,- blakes24 opened issue: [2125](https://github.com/hackforla/website/issues/2125) at 2021-08-17 04:23 PM PDT -blakes24,2021-08-18T04:51:39Z,- blakes24 submitted pull request review: [2124](https://github.com/hackforla/website/pull/2124#pullrequestreview-732430337) at 2021-08-17 09:51 PM PDT -blakes24,2021-08-18T21:13:54Z,- blakes24 commented on issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-901434667) at 2021-08-18 02:13 PM PDT -blakes24,2021-08-19T02:55:57Z,- blakes24 submitted pull request review: [2126](https://github.com/hackforla/website/pull/2126#pullrequestreview-733508332) at 2021-08-18 07:55 PM PDT -blakes24,2021-08-19T19:59:50Z,- blakes24 pull request merged: [2123](https://github.com/hackforla/website/pull/2123#event-5183312442) at 2021-08-19 12:59 PM PDT -blakes24,2021-08-20T00:21:40Z,- blakes24 assigned to issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-900760057) at 2021-08-19 05:21 PM PDT -blakes24,2021-08-20T15:25:41Z,- blakes24 submitted pull request review: [2118](https://github.com/hackforla/website/pull/2118#pullrequestreview-735145189) at 2021-08-20 08:25 AM PDT -blakes24,2021-08-20T20:19:41Z,- blakes24 opened pull request: [2149](https://github.com/hackforla/website/pull/2149) at 2021-08-20 01:19 PM PDT -blakes24,2021-08-21T00:34:35Z,- blakes24 commented on issue: [1920](https://github.com/hackforla/website/issues/1920#issuecomment-903022973) at 2021-08-20 05:34 PM PDT -blakes24,2021-08-23T21:15:42Z,- blakes24 submitted pull request review: [2150](https://github.com/hackforla/website/pull/2150#pullrequestreview-736574551) at 2021-08-23 02:15 PM PDT -blakes24,2021-08-23T22:14:08Z,- blakes24 submitted pull request review: [2157](https://github.com/hackforla/website/pull/2157#pullrequestreview-736611773) at 2021-08-23 03:14 PM PDT -blakes24,2021-08-24T17:45:44Z,- blakes24 pull request merged: [2149](https://github.com/hackforla/website/pull/2149#event-5202141676) at 2021-08-24 10:45 AM PDT -blakes24,2021-08-25T00:10:50Z,- blakes24 opened issue: [2175](https://github.com/hackforla/website/issues/2175) at 2021-08-24 05:10 PM PDT -blakes24,2021-08-28T01:14:41Z,- blakes24 submitted pull request review: [2157](https://github.com/hackforla/website/pull/2157#pullrequestreview-740963372) at 2021-08-27 06:14 PM PDT -blakes24,2021-09-01T01:20:27Z,- blakes24 assigned to issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-903155600) at 2021-08-31 06:20 PM PDT -blakes24,2021-09-04T00:30:27Z,- blakes24 opened pull request: [2223](https://github.com/hackforla/website/pull/2223) at 2021-09-03 05:30 PM PDT -blakes24,2021-09-04T00:39:49Z,- blakes24 commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-912876857) at 2021-09-03 05:39 PM PDT -blakes24,2021-09-04T21:53:12Z,- blakes24 commented on issue: [2101](https://github.com/hackforla/website/issues/2101#issuecomment-913045885) at 2021-09-04 02:53 PM PDT -blakes24,2021-09-05T19:04:23Z,- blakes24 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-913207614) at 2021-09-05 12:04 PM PDT -blakes24,2021-09-06T20:40:46Z,- blakes24 submitted pull request review: [2224](https://github.com/hackforla/website/pull/2224#pullrequestreview-747417560) at 2021-09-06 01:40 PM PDT -blakes24,2021-09-10T04:12:36Z,- blakes24 pull request merged: [2223](https://github.com/hackforla/website/pull/2223#event-5282268929) at 2021-09-09 09:12 PM PDT -blakes24,2021-09-11T21:03:44Z,- blakes24 assigned to issue: [2206](https://github.com/hackforla/website/issues/2206) at 2021-09-11 02:03 PM PDT -blakes24,2021-09-12T22:15:58Z,- blakes24 opened pull request: [2252](https://github.com/hackforla/website/pull/2252) at 2021-09-12 03:15 PM PDT -blakes24,2021-09-16T18:44:04Z,- blakes24 submitted pull request review: [2260](https://github.com/hackforla/website/pull/2260#pullrequestreview-756655004) at 2021-09-16 11:44 AM PDT -blakes24,2021-09-20T21:24:35Z,- blakes24 submitted pull request review: [2285](https://github.com/hackforla/website/pull/2285#pullrequestreview-759110994) at 2021-09-20 02:24 PM PDT -blakes24,2021-09-24T16:25:51Z,- blakes24 assigned to issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-921530340) at 2021-09-24 09:25 AM PDT -blakes24,2021-09-26T19:07:52Z,- blakes24 commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-927354893) at 2021-09-26 12:07 PM PDT -blakes24,2021-09-26T23:18:51Z,- blakes24 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-927390901) at 2021-09-26 04:18 PM PDT -blakes24,2021-09-28T05:12:49Z,- blakes24 pull request merged: [2252](https://github.com/hackforla/website/pull/2252#event-5371033644) at 2021-09-27 10:12 PM PDT -blakes24,2021-09-28T23:36:00Z,- blakes24 commented on issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-929699744) at 2021-09-28 04:36 PM PDT -blakes24,2021-10-09T00:02:21Z,- blakes24 commented on issue: [2251](https://github.com/hackforla/website/issues/2251#issuecomment-939184650) at 2021-10-08 05:02 PM PDT -blakes24,2021-10-09T04:16:54Z,- blakes24 assigned to issue: [2266](https://github.com/hackforla/website/issues/2266) at 2021-10-08 09:16 PM PDT -blakes24,2021-10-09T20:48:56Z,- blakes24 closed issue as completed: [2251](https://github.com/hackforla/website/issues/2251#event-5438545057) at 2021-10-09 01:48 PM PDT -blakes24,2021-10-10T19:16:22Z,- blakes24 commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-939537313) at 2021-10-10 12:16 PM PDT -blakes24,2021-10-15T03:51:25Z,- blakes24 commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-943963461) at 2021-10-14 08:51 PM PDT -blakes24,2021-11-11T22:38:28Z,- blakes24 commented on issue: [2175](https://github.com/hackforla/website/issues/2175#issuecomment-966675287) at 2021-11-11 02:38 PM PST -blakes24,2021-11-17T04:44:40Z,- blakes24 submitted pull request review: [2494](https://github.com/hackforla/website/pull/2494#pullrequestreview-808107635) at 2021-11-16 08:44 PM PST -blakes24,2021-11-22T02:59:36Z,- blakes24 reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651094776) at 2021-11-21 06:59 PM PST -blakes24,2021-11-22T03:24:02Z,- blakes24 submitted pull request review: [2494](https://github.com/hackforla/website/pull/2494#pullrequestreview-812047048) at 2021-11-21 07:24 PM PST -blakes24,2022-02-19T07:04:52Z,- blakes24 unassigned from issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1045915445) at 2022-02-18 11:04 PM PST -blulady,2683,SKILLS ISSUE -blulady,2022-01-11T03:40:05Z,- blulady opened issue: [2683](https://github.com/hackforla/website/issues/2683) at 2022-01-10 07:40 PM PST -blulady,2022-01-11T03:48:29Z,- blulady assigned to issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1009570874) at 2022-01-10 07:48 PM PST -blulady,2022-01-19T01:30:18Z,- blulady assigned to issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-991981385) at 2022-01-18 05:30 PM PST -blulady,2022-01-26T02:11:26Z,- blulady assigned to issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-993552757) at 2022-01-25 06:11 PM PST -blulady,2022-01-26T02:48:15Z,- blulady opened pull request: [2718](https://github.com/hackforla/website/pull/2718) at 2022-01-25 06:48 PM PST -blulady,2022-01-27T18:18:58Z,- blulady commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1023513512) at 2022-01-27 10:18 AM PST -blulady,2022-01-27T18:24:45Z,- blulady commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023518035) at 2022-01-27 10:24 AM PST -blulady,2022-01-27T18:31:32Z,- blulady unassigned from issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023523026) at 2022-01-27 10:31 AM PST -blulady,2022-01-27T18:37:02Z,- blulady submitted pull request review: [2714](https://github.com/hackforla/website/pull/2714#pullrequestreview-865284330) at 2022-01-27 10:37 AM PST -blulady,2022-01-27T18:47:43Z,- blulady commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023535713) at 2022-01-27 10:47 AM PST -blulady,2022-01-27T23:34:22Z,- blulady pull request merged: [2718](https://github.com/hackforla/website/pull/2718#event-5967383106) at 2022-01-27 03:34 PM PST -blulady,2022-02-13T01:28:52Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1037648851) at 2022-02-12 05:28 PM PST -blulady,2022-02-13T01:48:34Z,- blulady closed issue as completed: [2272](https://github.com/hackforla/website/issues/2272#event-6059110220) at 2022-02-12 05:48 PM PST -blulady,2022-02-13T01:48:35Z,- blulady reopened issue: [2272](https://github.com/hackforla/website/issues/2272#event-6059110220) at 2022-02-12 05:48 PM PST -blulady,2022-02-13T02:01:41Z,- blulady assigned to issue: [2242](https://github.com/hackforla/website/issues/2242) at 2022-02-12 06:01 PM PST -blulady,2022-02-13T02:57:22Z,- blulady opened pull request: [2772](https://github.com/hackforla/website/pull/2772) at 2022-02-12 06:57 PM PST -blulady,2022-02-13T13:06:22Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1038102095) at 2022-02-13 05:06 AM PST -blulady,2022-02-14T21:30:29Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1039583385) at 2022-02-14 01:30 PM PST -blulady,2022-02-14T21:32:17Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1039585098) at 2022-02-14 01:32 PM PST -blulady,2022-02-19T21:18:52Z,- blulady opened pull request: [2801](https://github.com/hackforla/website/pull/2801) at 2022-02-19 01:18 PM PST -blulady,2022-02-20T17:58:46Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1046289993) at 2022-02-20 09:58 AM PST -blulady,2022-02-20T18:09:17Z,- blulady closed issue by PR 2772: [2242](https://github.com/hackforla/website/issues/2242#event-6107592813) at 2022-02-20 10:09 AM PST -blulady,2022-02-20T19:17:10Z,- blulady pull request closed w/o merging: [2801](https://github.com/hackforla/website/pull/2801#event-6107670166) at 2022-02-20 11:17 AM PST -blulady,2022-02-20T20:08:33Z,- blulady opened issue: [2809](https://github.com/hackforla/website/issues/2809) at 2022-02-20 12:08 PM PST -blulady,2022-02-20T20:36:03Z,- blulady opened issue: [2814](https://github.com/hackforla/website/issues/2814) at 2022-02-20 12:36 PM PST -blulady,2022-02-20T23:19:31Z,- blulady commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1046343850) at 2022-02-20 03:19 PM PST -blulady,2022-03-01T23:54:14Z,- blulady commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055985881) at 2022-03-01 03:54 PM PST -blulady,2022-03-01T23:55:08Z,- blulady commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055986355) at 2022-03-01 03:55 PM PST -blulady,2022-03-01T23:56:46Z,- blulady submitted pull request review: [2905](https://github.com/hackforla/website/pull/2905#pullrequestreview-896955818) at 2022-03-01 03:56 PM PST -blulady,2022-03-03T00:42:02Z,- blulady commented on issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1057546659) at 2022-03-02 04:42 PM PST -blulady,2022-03-04T22:14:36Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1059569459) at 2022-03-04 02:14 PM PST -blulady,2022-03-04T23:25:29Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1059601592) at 2022-03-04 03:25 PM PST -blulady,2022-03-06T19:41:01Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1060026410) at 2022-03-06 11:41 AM PST -blulady,2022-03-06T23:20:21Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1060060776) at 2022-03-06 03:20 PM PST -blulady,2022-03-07T23:42:51Z,- blulady commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1061255555) at 2022-03-07 03:42 PM PST -blulady,2022-03-11T19:35:52Z,- blulady pull request merged: [2772](https://github.com/hackforla/website/pull/2772#event-6227094542) at 2022-03-11 11:35 AM PST -blulady,2022-03-12T23:01:32Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1065980545) at 2022-03-12 04:01 PM PDT -blulady,2022-03-12T23:01:35Z,- blulady closed issue as completed: [2683](https://github.com/hackforla/website/issues/2683#event-6230385668) at 2022-03-12 04:01 PM PDT -blulady,2022-03-12T23:16:04Z,- blulady commented on issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1065982320) at 2022-03-12 04:16 PM PDT -blulady,2022-03-12T23:32:29Z,- blulady commented on pull request: [2971](https://github.com/hackforla/website/pull/2971#issuecomment-1065984327) at 2022-03-12 04:32 PM PDT -blulady,2022-03-12T23:49:47Z,- blulady submitted pull request review: [2971](https://github.com/hackforla/website/pull/2971#pullrequestreview-908069669) at 2022-03-12 04:49 PM PDT -blulady,2022-03-12T23:56:48Z,- blulady commented on pull request: [2970](https://github.com/hackforla/website/pull/2970#issuecomment-1065987007) at 2022-03-12 04:56 PM PDT -blulady,2022-03-13T00:06:18Z,- blulady submitted pull request review: [2970](https://github.com/hackforla/website/pull/2970#pullrequestreview-908070731) at 2022-03-12 05:06 PM PDT -blulady,2022-03-13T18:27:31Z,- blulady assigned to issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1065982320) at 2022-03-13 11:27 AM PDT -blulady,2022-03-13T23:55:26Z,- blulady opened pull request: [2979](https://github.com/hackforla/website/pull/2979) at 2022-03-13 04:55 PM PDT -blulady,2022-03-15T20:33:29Z,- blulady commented on pull request: [2979](https://github.com/hackforla/website/pull/2979#issuecomment-1068441856) at 2022-03-15 01:33 PM PDT -blulady,2022-03-15T20:52:14Z,- blulady commented on pull request: [2979](https://github.com/hackforla/website/pull/2979#issuecomment-1068462098) at 2022-03-15 01:52 PM PDT -blulady,2022-03-18T15:02:24Z,- blulady pull request merged: [2979](https://github.com/hackforla/website/pull/2979#event-6266818386) at 2022-03-18 08:02 AM PDT -blulady,2022-03-20T17:20:27Z,- blulady commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073295478) at 2022-03-20 10:20 AM PDT -blulady,2022-03-20T17:20:36Z,- blulady commented on pull request: [2991](https://github.com/hackforla/website/pull/2991#issuecomment-1073295502) at 2022-03-20 10:20 AM PDT -blulady,2022-03-20T17:42:09Z,- blulady assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2022-03-20 10:42 AM PDT -blulady,2022-03-20T18:08:01Z,- blulady assigned to issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1054458322) at 2022-03-20 11:08 AM PDT -blulady,2022-03-20T18:08:36Z,- blulady unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2022-03-20 11:08 AM PDT -blulady,2022-03-20T18:55:28Z,- blulady commented on issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1073311039) at 2022-03-20 11:55 AM PDT -blulady,2022-03-21T00:28:41Z,- blulady submitted pull request review: [2991](https://github.com/hackforla/website/pull/2991#pullrequestreview-915174345) at 2022-03-20 05:28 PM PDT -blulady,2022-03-21T01:07:45Z,- blulady opened pull request: [2996](https://github.com/hackforla/website/pull/2996) at 2022-03-20 06:07 PM PDT -blulady,2022-03-21T01:09:37Z,- blulady commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1073397076) at 2022-03-20 06:09 PM PDT -blulady,2022-03-21T01:16:41Z,- blulady commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1073399045) at 2022-03-20 06:16 PM PDT -blulady,2022-03-21T01:29:13Z,- blulady submitted pull request review: [2994](https://github.com/hackforla/website/pull/2994#pullrequestreview-915185721) at 2022-03-20 06:29 PM PDT -blulady,2022-03-22T16:28:36Z,- blulady commented on pull request: [3000](https://github.com/hackforla/website/pull/3000#issuecomment-1075362912) at 2022-03-22 09:28 AM PDT -blulady,2022-03-22T17:04:24Z,- blulady submitted pull request review: [3000](https://github.com/hackforla/website/pull/3000#pullrequestreview-917582794) at 2022-03-22 10:04 AM PDT -blulady,2022-03-22T17:06:40Z,- blulady commented on pull request: [2998](https://github.com/hackforla/website/pull/2998#issuecomment-1075401891) at 2022-03-22 10:06 AM PDT -blulady,2022-03-22T17:17:05Z,- blulady submitted pull request review: [2998](https://github.com/hackforla/website/pull/2998#pullrequestreview-917600693) at 2022-03-22 10:17 AM PDT -blulady,2022-03-22T17:43:15Z,- blulady commented on pull request: [2997](https://github.com/hackforla/website/pull/2997#issuecomment-1075436299) at 2022-03-22 10:43 AM PDT -blulady,2022-03-22T18:07:10Z,- blulady submitted pull request review: [2997](https://github.com/hackforla/website/pull/2997#pullrequestreview-917668857) at 2022-03-22 11:07 AM PDT -blulady,2022-03-22T18:35:13Z,- blulady pull request merged: [2996](https://github.com/hackforla/website/pull/2996#event-6285883137) at 2022-03-22 11:35 AM PDT -blulady,2022-03-22T22:30:03Z,- blulady assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2022-03-22 03:30 PM PDT -blulady,2022-03-23T02:41:31Z,- blulady commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1075856655) at 2022-03-22 07:41 PM PDT -blulady,2022-03-24T22:01:21Z,- blulady commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1078424214) at 2022-03-24 03:01 PM PDT -blulady,2022-03-24T22:29:06Z,- blulady commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1078441526) at 2022-03-24 03:29 PM PDT -blulady,2022-03-27T17:22:04Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1079978367) at 2022-03-27 10:22 AM PDT -blulady,2022-03-27T19:08:39Z,- blulady unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-1079508469) at 2022-03-27 12:08 PM PDT -blulady,2022-03-27T23:29:24Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080043797) at 2022-03-27 04:29 PM PDT -blulady,2022-03-27T23:51:52Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080047277) at 2022-03-27 04:51 PM PDT -blulady,2022-03-28T00:11:25Z,- blulady commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080052352) at 2022-03-27 05:11 PM PDT -blulady,2022-03-28T00:22:11Z,- blulady submitted pull request review: [3015](https://github.com/hackforla/website/pull/3015#pullrequestreview-922520487) at 2022-03-27 05:22 PM PDT -blulady,2022-04-05T19:26:16Z,- blulady assigned to issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1003772221) at 2022-04-05 12:26 PM PDT -blulady,2022-04-07T00:39:47Z,- blulady commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1090962450) at 2022-04-06 05:39 PM PDT -blulady,2022-04-10T17:20:54Z,- blulady commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1094331616) at 2022-04-10 10:20 AM PDT -blulady,2022-04-10T17:30:16Z,- blulady commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1094333071) at 2022-04-10 10:30 AM PDT -blulady,2022-04-11T17:47:40Z,- blulady submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-938380921) at 2022-04-11 10:47 AM PDT -blulady,2022-04-13T19:23:54Z,- blulady submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-941447545) at 2022-04-13 12:23 PM PDT -blulady,2022-04-14T17:32:05Z,- blulady commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1099450643) at 2022-04-14 10:32 AM PDT -blulady,2022-04-15T01:28:54Z,- blulady unassigned from issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1090962450) at 2022-04-14 06:28 PM PDT -blulady,2022-04-19T19:00:58Z,- blulady submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-946165417) at 2022-04-19 12:00 PM PDT -blulady,2022-04-26T17:51:23Z,- blulady submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-953791562) at 2022-04-26 10:51 AM PDT -blulady,2022-05-22T17:14:27Z,- blulady assigned to issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1108802554) at 2022-05-22 10:14 AM PDT -blulady,2022-05-22T17:20:00Z,- blulady commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1133938198) at 2022-05-22 10:20 AM PDT -blulady,2022-05-24T21:01:02Z,- blulady submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-983848206) at 2022-05-24 02:01 PM PDT -blulady,2022-05-24T21:11:45Z,- blulady submitted pull request review: [3172](https://github.com/hackforla/website/pull/3172#pullrequestreview-983858502) at 2022-05-24 02:11 PM PDT -blulady,2022-05-24T21:48:05Z,- blulady submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-983889235) at 2022-05-24 02:48 PM PDT -blulady,2022-06-10T17:23:12Z,- blulady commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1152579838) at 2022-06-10 10:23 AM PDT -blulady,2022-06-14T22:17:55Z,- blulady commented on issue: [3082](https://github.com/hackforla/website/issues/3082#issuecomment-1155765348) at 2022-06-14 03:17 PM PDT -blulady,2022-06-15T02:26:57Z,- blulady commented on pull request: [3241](https://github.com/hackforla/website/pull/3241#issuecomment-1155911089) at 2022-06-14 07:26 PM PDT -blulady,2022-06-20T16:36:23Z,- blulady opened pull request: [3263](https://github.com/hackforla/website/pull/3263) at 2022-06-20 09:36 AM PDT -blulady,2022-06-23T04:47:58Z,- blulady submitted pull request review: [3264](https://github.com/hackforla/website/pull/3264#pullrequestreview-1016327208) at 2022-06-22 09:47 PM PDT -blulady,2022-06-23T05:01:38Z,- blulady submitted pull request review: [3262](https://github.com/hackforla/website/pull/3262#pullrequestreview-1016335045) at 2022-06-22 10:01 PM PDT -blulady,2022-06-23T05:07:16Z,- blulady commented on pull request: [3291](https://github.com/hackforla/website/pull/3291#issuecomment-1163933997) at 2022-06-22 10:07 PM PDT -blulady,2022-06-23T05:07:52Z,- blulady commented on pull request: [3288](https://github.com/hackforla/website/pull/3288#issuecomment-1163934355) at 2022-06-22 10:07 PM PDT -blulady,2022-06-23T05:08:33Z,- blulady commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1163934728) at 2022-06-22 10:08 PM PDT -blulady,2022-06-23T05:11:38Z,- blulady submitted pull request review: [3261](https://github.com/hackforla/website/pull/3261#pullrequestreview-1016340586) at 2022-06-22 10:11 PM PDT -blulady,2022-06-23T19:49:17Z,- blulady submitted pull request review: [3288](https://github.com/hackforla/website/pull/3288#pullrequestreview-1017559129) at 2022-06-23 12:49 PM PDT -blulady,2022-06-23T20:02:49Z,- blulady submitted pull request review: [3287](https://github.com/hackforla/website/pull/3287#pullrequestreview-1017573232) at 2022-06-23 01:02 PM PDT -blulady,2022-06-23T20:10:04Z,- blulady submitted pull request review: [3291](https://github.com/hackforla/website/pull/3291#pullrequestreview-1017580847) at 2022-06-23 01:10 PM PDT -blulady,2022-06-23T20:24:33Z,- blulady submitted pull request review: [3293](https://github.com/hackforla/website/pull/3293#pullrequestreview-1017606734) at 2022-06-23 01:24 PM PDT -blulady,2022-06-26T17:15:12Z,- blulady commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166591950) at 2022-06-26 10:15 AM PDT -blulady,2022-06-26T17:28:34Z,- blulady commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1166595204) at 2022-06-26 10:28 AM PDT -blulady,2022-06-26T17:33:23Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1166596399) at 2022-06-26 10:33 AM PDT -blulady,2022-06-26T19:13:00Z,- blulady opened issue: [3316](https://github.com/hackforla/website/issues/3316) at 2022-06-26 12:13 PM PDT -blulady,2022-06-26T19:33:31Z,- blulady pull request merged: [3263](https://github.com/hackforla/website/pull/3263#event-6880797450) at 2022-06-26 12:33 PM PDT -blulady,2022-06-26T21:35:20Z,- blulady submitted pull request review: [3304](https://github.com/hackforla/website/pull/3304#pullrequestreview-1019480406) at 2022-06-26 02:35 PM PDT -blulady,2022-06-26T22:07:24Z,- blulady commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166658551) at 2022-06-26 03:07 PM PDT -blulady,2022-06-27T01:25:25Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1166718680) at 2022-06-26 06:25 PM PDT -blulady,2022-06-29T02:36:19Z,- blulady commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1169469393) at 2022-06-28 07:36 PM PDT -blulady,2022-06-29T21:40:04Z,- blulady commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170518980) at 2022-06-29 02:40 PM PDT -blulady,2022-06-29T22:22:40Z,- blulady submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1024072772) at 2022-06-29 03:22 PM PDT -blulady,2022-06-30T21:19:14Z,- blulady submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1025503793) at 2022-06-30 02:19 PM PDT -blulady,2022-07-03T18:40:15Z,- blulady commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173151130) at 2022-07-03 11:40 AM PDT -blulady,2022-07-04T20:24:40Z,- blulady closed issue by PR 3327: [3232](https://github.com/hackforla/website/issues/3232#event-6930020112) at 2022-07-04 01:24 PM PDT -blulady,2022-07-08T00:00:02Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178384501) at 2022-07-07 05:00 PM PDT -blulady,2022-07-08T00:04:49Z,- blulady submitted pull request review: [3299](https://github.com/hackforla/website/pull/3299#pullrequestreview-1032270910) at 2022-07-07 05:04 PM PDT -blulady,2022-07-08T00:26:43Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178400163) at 2022-07-07 05:26 PM PDT -blulady,2022-07-08T02:01:17Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178454151) at 2022-07-07 07:01 PM PDT -blulady,2022-07-08T02:01:57Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178454558) at 2022-07-07 07:01 PM PDT -blulady,2022-07-08T02:08:36Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178458355) at 2022-07-07 07:08 PM PDT -blulady,2022-07-08T14:13:51Z,- blulady commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1179037445) at 2022-07-08 07:13 AM PDT -blulady,2022-07-10T18:11:49Z,- blulady submitted pull request review: [3299](https://github.com/hackforla/website/pull/3299#pullrequestreview-1033664950) at 2022-07-10 11:11 AM PDT -blulady,2022-07-10T18:12:10Z,- blulady closed issue by PR 3299: [3111](https://github.com/hackforla/website/issues/3111#event-6965343513) at 2022-07-10 11:12 AM PDT -blulady,2022-07-10T18:19:04Z,- blulady opened issue: [3345](https://github.com/hackforla/website/issues/3345) at 2022-07-10 11:19 AM PDT -blulady,2022-07-10T18:32:34Z,- blulady opened issue: [3347](https://github.com/hackforla/website/issues/3347) at 2022-07-10 11:32 AM PDT -blulady,2022-07-10T18:38:01Z,- blulady opened issue: [3349](https://github.com/hackforla/website/issues/3349) at 2022-07-10 11:38 AM PDT -blulady,2022-07-10T18:59:51Z,- blulady closed issue as completed: [3350](https://github.com/hackforla/website/issues/3350#event-6965384752) at 2022-07-10 11:59 AM PDT -blulady,2022-07-10T19:04:10Z,- blulady closed issue as completed: [3349](https://github.com/hackforla/website/issues/3349#event-6965388371) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:17Z,- blulady closed issue as completed: [3347](https://github.com/hackforla/website/issues/3347#event-6965388507) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:24Z,- blulady closed issue as completed: [3346](https://github.com/hackforla/website/issues/3346#event-6965388610) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:31Z,- blulady closed issue as completed: [3345](https://github.com/hackforla/website/issues/3345#event-6965388724) at 2022-07-10 12:04 PM PDT -blulady,2022-07-10T19:04:37Z,- blulady closed issue as completed: [3344](https://github.com/hackforla/website/issues/3344#event-6965388787) at 2022-07-10 12:04 PM PDT -blulady,2022-07-13T02:53:44Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1182706386) at 2022-07-12 07:53 PM PDT -blulady,2022-07-15T00:49:16Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1185060385) at 2022-07-14 05:49 PM PDT -blulady,2022-07-15T00:54:56Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1185062947) at 2022-07-14 05:54 PM PDT -blulady,2022-07-15T00:59:10Z,- blulady commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1185064818) at 2022-07-14 05:59 PM PDT -blulady,2022-07-15T02:33:54Z,- blulady submitted pull request review: [3348](https://github.com/hackforla/website/pull/3348#pullrequestreview-1039716857) at 2022-07-14 07:33 PM PDT -blulady,2022-07-15T02:34:03Z,- blulady closed issue by PR 3348: [2898](https://github.com/hackforla/website/issues/2898#event-6998715657) at 2022-07-14 07:34 PM PDT -blulady,2022-07-17T21:43:04Z,- blulady closed issue by PR 3373: [2961](https://github.com/hackforla/website/issues/2961#event-7007989699) at 2022-07-17 02:43 PM PDT -blulady,2022-07-18T03:59:28Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186736694) at 2022-07-17 08:59 PM PDT -blulady,2022-07-18T04:29:55Z,- blulady commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1186756429) at 2022-07-17 09:29 PM PDT -blulady,2022-07-18T04:30:08Z,- blulady closed issue by PR 3359: [2221](https://github.com/hackforla/website/issues/2221#event-7008811970) at 2022-07-17 09:30 PM PDT -blulady,2022-07-18T04:36:35Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1186760421) at 2022-07-17 09:36 PM PDT -blulady,2022-07-18T15:39:59Z,- blulady closed issue by PR 3375: [2953](https://github.com/hackforla/website/issues/2953#event-7013231672) at 2022-07-18 08:39 AM PDT -blulady,2022-07-18T15:43:43Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1187660781) at 2022-07-18 08:43 AM PDT -blulady,2022-07-19T01:15:46Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188489356) at 2022-07-18 06:15 PM PDT -blulady,2022-07-19T03:43:39Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188561059) at 2022-07-18 08:43 PM PDT -blulady,2022-07-20T02:13:47Z,- blulady commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1189729480) at 2022-07-19 07:13 PM PDT -blulady,2022-07-20T03:28:38Z,- blulady opened issue: [3404](https://github.com/hackforla/website/issues/3404) at 2022-07-19 08:28 PM PDT -blulady,2022-07-20T03:43:54Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1189785266) at 2022-07-19 08:43 PM PDT -blulady,2022-07-21T17:55:57Z,- blulady submitted pull request review: [3394](https://github.com/hackforla/website/pull/3394#pullrequestreview-1046936484) at 2022-07-21 10:55 AM PDT -blulady,2022-07-22T03:18:33Z,- blulady closed issue by PR 3368: [2222](https://github.com/hackforla/website/issues/2222#event-7042768338) at 2022-07-21 08:18 PM PDT -blulady,2022-07-22T19:36:21Z,- blulady commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1192879825) at 2022-07-22 12:36 PM PDT -blulady,2022-07-23T17:57:18Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193164165) at 2022-07-23 10:57 AM PDT -blulady,2022-07-24T16:31:26Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193352428) at 2022-07-24 09:31 AM PDT -blulady,2022-07-24T17:41:46Z,- blulady commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1193363954) at 2022-07-24 10:41 AM PDT -blulady,2022-07-24T17:42:44Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1193364105) at 2022-07-24 10:42 AM PDT -blulady,2022-07-24T18:28:34Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1193370551) at 2022-07-24 11:28 AM PDT -blulady,2022-07-25T00:59:05Z,- blulady commented on pull request: [3419](https://github.com/hackforla/website/pull/3419#issuecomment-1193441740) at 2022-07-24 05:59 PM PDT -blulady,2022-07-25T04:54:05Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193577171) at 2022-07-24 09:54 PM PDT -blulady,2022-07-25T20:01:07Z,- blulady submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1049992784) at 2022-07-25 01:01 PM PDT -blulady,2022-07-25T20:01:16Z,- blulady closed issue by PR 3425: [3095](https://github.com/hackforla/website/issues/3095#event-7059359881) at 2022-07-25 01:01 PM PDT -blulady,2022-07-25T20:12:28Z,- blulady commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1194570603) at 2022-07-25 01:12 PM PDT -blulady,2022-07-25T20:49:17Z,- blulady commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1194611884) at 2022-07-25 01:49 PM PDT -blulady,2022-07-25T22:39:05Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1194726081) at 2022-07-25 03:39 PM PDT -blulady,2022-07-25T22:50:20Z,- blulady commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1194734849) at 2022-07-25 03:50 PM PDT -blulady,2022-07-25T23:33:16Z,- blulady submitted pull request review: [3422](https://github.com/hackforla/website/pull/3422#pullrequestreview-1050192875) at 2022-07-25 04:33 PM PDT -blulady,2022-07-25T23:36:58Z,- blulady submitted pull request review: [3422](https://github.com/hackforla/website/pull/3422#pullrequestreview-1050194781) at 2022-07-25 04:36 PM PDT -blulady,2022-07-25T23:37:09Z,- blulady closed issue by PR 3422: [2104](https://github.com/hackforla/website/issues/2104#event-7060494264) at 2022-07-25 04:37 PM PDT -blulady,2022-07-25T23:49:32Z,- blulady commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1194782292) at 2022-07-25 04:49 PM PDT -blulady,2022-07-26T15:44:51Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195652505) at 2022-07-26 08:44 AM PDT -blulady,2022-07-27T22:33:32Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197441491) at 2022-07-27 03:33 PM PDT -blulady,2022-07-31T17:26:00Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1200466392) at 2022-07-31 10:26 AM PDT -blulady,2022-08-01T18:01:51Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1201532158) at 2022-08-01 11:01 AM PDT -blulady,2022-08-01T18:20:06Z,- blulady submitted pull request review: [3441](https://github.com/hackforla/website/pull/3441#pullrequestreview-1057685987) at 2022-08-01 11:20 AM PDT -blulady,2022-08-01T18:20:15Z,- blulady closed issue by PR 3441: [3102](https://github.com/hackforla/website/issues/3102#event-7103815715) at 2022-08-01 11:20 AM PDT -blulady,2022-08-02T04:23:43Z,- blulady submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1058101276) at 2022-08-01 09:23 PM PDT -blulady,2022-08-04T20:48:40Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1205752171) at 2022-08-04 01:48 PM PDT -blulady,2022-08-04T21:12:46Z,- blulady submitted pull request review: [3436](https://github.com/hackforla/website/pull/3436#pullrequestreview-1062594323) at 2022-08-04 02:12 PM PDT -blulady,2022-08-04T21:52:53Z,- blulady submitted pull request review: [3450](https://github.com/hackforla/website/pull/3450#pullrequestreview-1062627410) at 2022-08-04 02:52 PM PDT -blulady,2022-08-05T00:06:05Z,- blulady commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1205896710) at 2022-08-04 05:06 PM PDT -blulady,2022-08-05T02:33:52Z,- blulady closed issue by PR 3450: [3440](https://github.com/hackforla/website/issues/3440#event-7132600072) at 2022-08-04 07:33 PM PDT -blulady,2022-08-07T16:47:47Z,- blulady commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1207444808) at 2022-08-07 09:47 AM PDT -blulady,2022-08-08T21:25:12Z,- blulady commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1208627881) at 2022-08-08 02:25 PM PDT -blulady,2022-08-10T02:18:22Z,- blulady commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1210073086) at 2022-08-09 07:18 PM PDT -blulady,2022-08-10T02:49:46Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1210088487) at 2022-08-09 07:49 PM PDT -blulady,2022-08-11T19:04:33Z,- blulady submitted pull request review: [3460](https://github.com/hackforla/website/pull/3460#pullrequestreview-1070215888) at 2022-08-11 12:04 PM PDT -blulady,2022-08-11T20:25:29Z,- blulady closed issue by PR 3460: [2814](https://github.com/hackforla/website/issues/2814#event-7174749827) at 2022-08-11 01:25 PM PDT -blulady,2022-08-11T20:51:50Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1212480889) at 2022-08-11 01:51 PM PDT -blulady,2022-08-11T21:14:35Z,- blulady submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1070374532) at 2022-08-11 02:14 PM PDT -blulady,2022-08-18T16:06:17Z,- blulady submitted pull request review: [3384](https://github.com/hackforla/website/pull/3384#pullrequestreview-1077636795) at 2022-08-18 09:06 AM PDT -blulady,2022-08-18T16:08:03Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1219675982) at 2022-08-18 09:08 AM PDT -blulady,2022-08-19T18:47:30Z,- blulady commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1220995932) at 2022-08-19 11:47 AM PDT -blulady,2022-08-19T21:07:45Z,- blulady closed issue by PR 3475: [2821](https://github.com/hackforla/website/issues/2821#event-7225039891) at 2022-08-19 02:07 PM PDT -blulady,2022-08-19T21:21:30Z,- blulady closed issue by PR 3436: [2298](https://github.com/hackforla/website/issues/2298#event-7225092220) at 2022-08-19 02:21 PM PDT -blulady,2022-08-19T23:57:14Z,- blulady opened pull request: [3477](https://github.com/hackforla/website/pull/3477) at 2022-08-19 04:57 PM PDT -blulady,2022-08-19T23:57:57Z,- blulady pull request closed w/o merging: [3477](https://github.com/hackforla/website/pull/3477#event-7225524805) at 2022-08-19 04:57 PM PDT -blulady,2022-08-20T00:13:17Z,- blulady opened pull request: [3478](https://github.com/hackforla/website/pull/3478) at 2022-08-19 05:13 PM PDT -blulady,2022-08-22T04:10:43Z,- blulady opened pull request: [3479](https://github.com/hackforla/website/pull/3479) at 2022-08-21 09:10 PM PDT -blulady,2022-08-22T04:15:04Z,- blulady pull request closed w/o merging: [3479](https://github.com/hackforla/website/pull/3479#event-7229180387) at 2022-08-21 09:15 PM PDT -blulady,2022-08-24T01:11:37Z,- blulady submitted pull request review: [3474](https://github.com/hackforla/website/pull/3474#pullrequestreview-1083000508) at 2022-08-23 06:11 PM PDT -blulady,2022-08-24T01:18:10Z,- blulady pull request closed w/o merging: [3478](https://github.com/hackforla/website/pull/3478#event-7246567736) at 2022-08-23 06:18 PM PDT -blulady,2022-08-24T02:30:07Z,- blulady commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1225100803) at 2022-08-23 07:30 PM PDT -blulady,2022-08-24T03:26:08Z,- blulady submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1083086323) at 2022-08-23 08:26 PM PDT -blulady,2022-08-24T05:12:51Z,- blulady commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1225201966) at 2022-08-23 10:12 PM PDT -blulady,2022-08-24T19:16:27Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226137712) at 2022-08-24 12:16 PM PDT -blulady,2022-08-24T19:28:07Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226150778) at 2022-08-24 12:28 PM PDT -blulady,2022-08-24T19:49:59Z,- blulady opened pull request: [3485](https://github.com/hackforla/website/pull/3485) at 2022-08-24 12:49 PM PDT -blulady,2022-08-24T19:54:39Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226198275) at 2022-08-24 12:54 PM PDT -blulady,2022-08-24T19:57:01Z,- blulady pull request closed w/o merging: [3485](https://github.com/hackforla/website/pull/3485#event-7253900828) at 2022-08-24 12:57 PM PDT -blulady,2022-08-24T20:08:53Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226228179) at 2022-08-24 01:08 PM PDT -blulady,2022-08-24T20:37:06Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226286393) at 2022-08-24 01:37 PM PDT -blulady,2022-08-24T21:15:32Z,- blulady opened issue: [3487](https://github.com/hackforla/website/issues/3487) at 2022-08-24 02:15 PM PDT -blulady,2022-08-24T21:25:02Z,- blulady commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226387332) at 2022-08-24 02:25 PM PDT -blulady,2022-08-25T14:58:55Z,- blulady submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1085612984) at 2022-08-25 07:58 AM PDT -blulady,2022-08-28T22:05:01Z,- blulady commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1229563335) at 2022-08-28 03:05 PM PDT -blulady,2022-09-08T19:23:05Z,- blulady submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1101298394) at 2022-09-08 12:23 PM PDT -blulady,2022-09-09T01:05:41Z,- blulady submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1101578542) at 2022-09-08 06:05 PM PDT -blulady,2022-09-09T01:05:48Z,- blulady closed issue by PR 3521: [3520](https://github.com/hackforla/website/issues/3520#event-7352440619) at 2022-09-08 06:05 PM PDT -blulady,2022-09-09T02:35:32Z,- blulady opened pull request: [3531](https://github.com/hackforla/website/pull/3531) at 2022-09-08 07:35 PM PDT -blulady,2022-09-09T02:39:23Z,- blulady pull request merged: [3531](https://github.com/hackforla/website/pull/3531#event-7352790043) at 2022-09-08 07:39 PM PDT -blulady,2022-09-09T03:01:38Z,- blulady commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1241443113) at 2022-09-08 08:01 PM PDT -blulady,2022-09-09T22:27:48Z,- blulady commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1242526998) at 2022-09-09 03:27 PM PDT -blulady,2022-09-12T18:08:59Z,- blulady submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1104611200) at 2022-09-12 11:08 AM PDT -blulady,2022-09-13T01:07:16Z,- blulady submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1104991850) at 2022-09-12 06:07 PM PDT -blulady,2022-09-13T04:23:36Z,- blulady commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1244879703) at 2022-09-12 09:23 PM PDT -blulady,2022-09-13T22:23:16Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246008654) at 2022-09-13 03:23 PM PDT -blulady,2022-09-13T22:59:27Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246031722) at 2022-09-13 03:59 PM PDT -blulady,2022-09-13T23:05:45Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246036494) at 2022-09-13 04:05 PM PDT -blulady,2022-09-13T23:17:40Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246044647) at 2022-09-13 04:17 PM PDT -blulady,2022-09-13T23:18:55Z,- blulady submitted pull request review: [3548](https://github.com/hackforla/website/pull/3548#pullrequestreview-1106553581) at 2022-09-13 04:18 PM PDT -blulady,2022-09-13T23:45:17Z,- blulady commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246061485) at 2022-09-13 04:45 PM PDT -blulady,2022-09-18T19:58:10Z,- blulady submitted pull request review: [3559](https://github.com/hackforla/website/pull/3559#pullrequestreview-1111582146) at 2022-09-18 12:58 PM PDT -blulady,2022-09-18T19:59:26Z,- blulady closed issue by PR 3559: [2827](https://github.com/hackforla/website/issues/2827#event-7409382677) at 2022-09-18 12:59 PM PDT -blulady,2022-09-18T20:10:29Z,- blulady submitted pull request review: [3560](https://github.com/hackforla/website/pull/3560#pullrequestreview-1111583028) at 2022-09-18 01:10 PM PDT -blulady,2022-09-19T02:15:06Z,- blulady assigned to issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1201863585) at 2022-09-18 07:15 PM PDT -blulady,2022-09-19T03:56:46Z,- blulady closed issue by PR 3560: [2924](https://github.com/hackforla/website/issues/2924#event-7410235287) at 2022-09-18 08:56 PM PDT -blulady,2022-09-21T03:23:18Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1253156979) at 2022-09-20 08:23 PM PDT -blulady,2022-09-25T16:25:47Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1257228769) at 2022-09-25 09:25 AM PDT -blulady,2022-09-28T02:26:05Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1260306123) at 2022-09-27 07:26 PM PDT -blulady,2022-09-28T16:00:58Z,- blulady commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1261125508) at 2022-09-28 09:00 AM PDT -blulady,2022-09-29T16:30:05Z,- blulady commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1262521779) at 2022-09-29 09:30 AM PDT -blulady,2022-10-03T21:13:28Z,- blulady opened issue: [3598](https://github.com/hackforla/website/issues/3598) at 2022-10-03 02:13 PM PDT -blulady,2022-10-04T15:49:34Z,- blulady commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1267213553) at 2022-10-04 08:49 AM PDT -blulady,2022-10-10T17:20:23Z,- blulady submitted pull request review: [3601](https://github.com/hackforla/website/pull/3601#pullrequestreview-1136337312) at 2022-10-10 10:20 AM PDT -blulady,2022-10-10T17:20:32Z,- blulady closed issue by PR 3586: [3447](https://github.com/hackforla/website/issues/3447#event-7555933662) at 2022-10-10 10:20 AM PDT -blulady,2022-10-10T19:26:40Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1273724296) at 2022-10-10 12:26 PM PDT -blulady,2022-10-10T19:45:54Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1273739673) at 2022-10-10 12:45 PM PDT -blulady,2022-10-11T17:10:27Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1275013715) at 2022-10-11 10:10 AM PDT -blulady,2022-10-12T02:39:46Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1275507713) at 2022-10-11 07:39 PM PDT -blulady,2022-10-12T17:18:29Z,- blulady commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276497640) at 2022-10-12 10:18 AM PDT -blulady,2022-10-14T03:16:25Z,- blulady submitted pull request review: [3617](https://github.com/hackforla/website/pull/3617#pullrequestreview-1141759426) at 2022-10-13 08:16 PM PDT -blulady,2022-10-14T03:16:33Z,- blulady closed issue by PR 3617: [2846](https://github.com/hackforla/website/issues/2846#event-7586604585) at 2022-10-13 08:16 PM PDT -blulady,2022-10-14T03:22:42Z,- blulady submitted pull request review: [3616](https://github.com/hackforla/website/pull/3616#pullrequestreview-1141763460) at 2022-10-13 08:22 PM PDT -blulady,2022-10-14T03:22:49Z,- blulady closed issue by PR 3616: [2850](https://github.com/hackforla/website/issues/2850#event-7586630119) at 2022-10-13 08:22 PM PDT -blulady,2022-10-14T03:26:02Z,- blulady submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1141765773) at 2022-10-13 08:26 PM PDT -blulady,2022-10-14T03:26:12Z,- blulady closed issue by PR 3615: [2845](https://github.com/hackforla/website/issues/2845#event-7586643404) at 2022-10-13 08:26 PM PDT -blulady,2022-10-16T18:10:26Z,- blulady submitted pull request review: [3620](https://github.com/hackforla/website/pull/3620#pullrequestreview-1143321884) at 2022-10-16 11:10 AM PDT -blulady,2022-10-16T18:10:42Z,- blulady closed issue by PR 3620: [2848](https://github.com/hackforla/website/issues/2848#event-7596731007) at 2022-10-16 11:10 AM PDT -blulady,2022-10-16T19:32:28Z,- blulady commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1280038240) at 2022-10-16 12:32 PM PDT -blulady,2022-10-16T20:08:47Z,- blulady opened issue: [3630](https://github.com/hackforla/website/issues/3630) at 2022-10-16 01:08 PM PDT -blulady,2022-10-17T20:27:30Z,- blulady submitted pull request review: [3623](https://github.com/hackforla/website/pull/3623#pullrequestreview-1144769374) at 2022-10-17 01:27 PM PDT -blulady,2022-10-17T20:27:38Z,- blulady closed issue by PR 3623: [3397](https://github.com/hackforla/website/issues/3397#event-7605631155) at 2022-10-17 01:27 PM PDT -blulady,2022-10-17T20:40:11Z,- blulady submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1144783435) at 2022-10-17 01:40 PM PDT -blulady,2022-10-17T20:40:21Z,- blulady closed issue by PR 3625: [2823](https://github.com/hackforla/website/issues/2823#event-7605729571) at 2022-10-17 01:40 PM PDT -blulady,2022-10-17T23:42:49Z,- blulady closed issue as completed: [3238](https://github.com/hackforla/website/issues/3238#event-7606656479) at 2022-10-17 04:42 PM PDT -blulady,2022-10-17T23:43:59Z,- blulady commented on issue: [2886](https://github.com/hackforla/website/issues/2886#issuecomment-1281635780) at 2022-10-17 04:43 PM PDT -blulady,2022-10-17T23:45:45Z,- blulady commented on issue: [2568](https://github.com/hackforla/website/issues/2568#issuecomment-1281636664) at 2022-10-17 04:45 PM PDT -blulady,2022-10-17T23:48:47Z,- blulady closed issue by PR 2982: [2886](https://github.com/hackforla/website/issues/2886#event-7606676023) at 2022-10-17 04:48 PM PDT -blulady,2022-10-18T21:42:00Z,- blulady opened issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-10-18 02:42 PM PDT -blulady,2022-10-18T22:17:02Z,- blulady opened issue: [3635](https://github.com/hackforla/website/issues/3635) at 2022-10-18 03:17 PM PDT -blulady,2022-10-18T22:47:16Z,- blulady opened issue: [3636](https://github.com/hackforla/website/issues/3636) at 2022-10-18 03:47 PM PDT -blulady,2022-10-19T02:34:01Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1283317963) at 2022-10-18 07:34 PM PDT -blulady,2022-10-20T18:10:22Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1285952341) at 2022-10-20 11:10 AM PDT -blulady,2022-10-20T19:14:00Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286019750) at 2022-10-20 12:14 PM PDT -blulady,2022-10-20T20:07:54Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286080063) at 2022-10-20 01:07 PM PDT -blulady,2022-10-20T20:08:14Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286080470) at 2022-10-20 01:08 PM PDT -blulady,2022-10-21T03:01:12Z,- blulady submitted pull request review: [3646](https://github.com/hackforla/website/pull/3646#pullrequestreview-1150256764) at 2022-10-20 08:01 PM PDT -blulady,2022-10-21T03:39:43Z,- blulady submitted pull request review: [3643](https://github.com/hackforla/website/pull/3643#pullrequestreview-1150284773) at 2022-10-20 08:39 PM PDT -blulady,2022-10-21T03:39:51Z,- blulady closed issue by PR 3643: [3630](https://github.com/hackforla/website/issues/3630#event-7636862408) at 2022-10-20 08:39 PM PDT -blulady,2022-10-21T14:56:01Z,- blulady commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1287080023) at 2022-10-21 07:56 AM PDT -blulady,2022-10-23T17:54:57Z,- blulady commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1288164384) at 2022-10-23 10:54 AM PDT -blulady,2022-10-23T22:45:15Z,- blulady opened issue: [3651](https://github.com/hackforla/website/issues/3651) at 2022-10-23 03:45 PM PDT -blulady,2022-10-24T21:13:01Z,- blulady commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1289624054) at 2022-10-24 02:13 PM PDT -blulady,2022-10-24T21:23:22Z,- blulady commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1289634879) at 2022-10-24 02:23 PM PDT -blulady,2022-10-24T21:28:27Z,- blulady commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1289640175) at 2022-10-24 02:28 PM PDT -blulady,2022-10-24T21:29:58Z,- blulady commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1289641765) at 2022-10-24 02:29 PM PDT -blulady,2022-10-25T00:06:43Z,- blulady commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1289799619) at 2022-10-24 05:06 PM PDT -blulady,2022-10-25T00:23:46Z,- blulady submitted pull request review: [3654](https://github.com/hackforla/website/pull/3654#pullrequestreview-1153969598) at 2022-10-24 05:23 PM PDT -blulady,2022-10-25T00:49:42Z,- blulady commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1289832208) at 2022-10-24 05:49 PM PDT -blulady,2022-10-25T01:06:28Z,- blulady commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1289844269) at 2022-10-24 06:06 PM PDT -blulady,2022-10-25T01:11:29Z,- blulady commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1289847176) at 2022-10-24 06:11 PM PDT -blulady,2022-10-25T01:17:48Z,- blulady commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1289850676) at 2022-10-24 06:17 PM PDT -blulady,2022-10-25T01:20:14Z,- blulady commented on issue: [3501](https://github.com/hackforla/website/issues/3501#issuecomment-1289852355) at 2022-10-24 06:20 PM PDT -blulady,2022-10-25T01:21:28Z,- blulady commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1289853218) at 2022-10-24 06:21 PM PDT -blulady,2022-10-25T01:22:16Z,- blulady commented on issue: [3500](https://github.com/hackforla/website/issues/3500#issuecomment-1289853654) at 2022-10-24 06:22 PM PDT -blulady,2022-10-25T01:43:37Z,- blulady commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1289865865) at 2022-10-24 06:43 PM PDT -blulady,2022-10-25T03:08:12Z,- blulady commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1289916192) at 2022-10-24 08:08 PM PDT -blulady,2022-10-25T15:26:02Z,- blulady commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1290746124) at 2022-10-25 08:26 AM PDT -blulady,2022-10-26T02:13:28Z,- blulady commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1291398801) at 2022-10-25 07:13 PM PDT -blulady,2022-10-26T03:49:41Z,- blulady commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1291458963) at 2022-10-25 08:49 PM PDT -blulady,2022-10-26T04:12:43Z,- blulady commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1291471863) at 2022-10-25 09:12 PM PDT -blulady,2022-10-26T15:31:10Z,- blulady commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1292228745) at 2022-10-26 08:31 AM PDT -blulady,2022-10-26T17:33:35Z,- blulady submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1157002894) at 2022-10-26 10:33 AM PDT -blulady,2022-10-26T18:05:05Z,- blulady commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1292412100) at 2022-10-26 11:05 AM PDT -blulady,2022-10-26T18:34:31Z,- blulady commented on issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1292442374) at 2022-10-26 11:34 AM PDT -blulady,2022-10-26T18:50:50Z,- blulady commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1292460863) at 2022-10-26 11:50 AM PDT -blulady,2022-10-26T20:22:46Z,- blulady commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1292611321) at 2022-10-26 01:22 PM PDT -blulady,2022-10-26T20:25:00Z,- blulady commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1292613579) at 2022-10-26 01:25 PM PDT -blulady,2022-10-27T22:22:45Z,- blulady commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1294177769) at 2022-10-27 03:22 PM PDT -blulady,2022-10-28T01:13:11Z,- blulady commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1294289884) at 2022-10-27 06:13 PM PDT -blulady,2022-10-28T01:39:54Z,- blulady commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1294307548) at 2022-10-27 06:39 PM PDT -blulady,2022-10-28T02:36:31Z,- blulady commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1294368799) at 2022-10-27 07:36 PM PDT -blulady,2022-10-28T02:58:05Z,- blulady closed issue by PR 3668: [3403](https://github.com/hackforla/website/issues/3403#event-7687605431) at 2022-10-27 07:58 PM PDT -blulady,2022-10-28T03:37:25Z,- blulady closed issue by PR 3660: [2855](https://github.com/hackforla/website/issues/2855#event-7687749723) at 2022-10-27 08:37 PM PDT -blulady,2022-10-28T19:00:47Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1295350535) at 2022-10-28 12:00 PM PDT -blulady,2022-10-29T20:30:46Z,- blulady commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-10-29 01:30 PM PDT -blulady,2022-11-09T02:15:56Z,- blulady assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -blulady,2022-11-13T18:53:01Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1312796526) at 2022-11-13 10:53 AM PST -blulady,2022-11-13T19:30:42Z,- blulady commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1312803590) at 2022-11-13 11:30 AM PST -blulady,2022-11-13T19:34:42Z,- blulady closed issue as completed: [2909](https://github.com/hackforla/website/issues/2909#event-7798920856) at 2022-11-13 11:34 AM PST -blulady,2022-11-13T23:07:20Z,- blulady commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1312847620) at 2022-11-13 03:07 PM PST -blulady,2022-11-13T23:19:31Z,- blulady commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1312850301) at 2022-11-13 03:19 PM PST -blulady,2022-11-13T23:33:57Z,- blulady commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1312853119) at 2022-11-13 03:33 PM PST -blulady,2022-11-14T00:25:45Z,- blulady commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1312875737) at 2022-11-13 04:25 PM PST -blulady,2022-11-16T02:39:21Z,- blulady closed issue by PR 3833: [3701](https://github.com/hackforla/website/issues/3701#event-7819340305) at 2022-11-15 06:39 PM PST -blulady,2022-11-16T02:39:25Z,- blulady reopened issue: [3701](https://github.com/hackforla/website/issues/3701#event-7819340305) at 2022-11-15 06:39 PM PST -blulady,2022-11-16T05:57:36Z,- blulady opened issue: [3724](https://github.com/hackforla/website/issues/3724) at 2022-11-15 09:57 PM PST -blulady,2022-11-16T21:27:21Z,- blulady closed issue by PR 3721: [3678](https://github.com/hackforla/website/issues/3678#event-7828088617) at 2022-11-16 01:27 PM PST -blulady,2022-11-16T21:58:09Z,- blulady opened pull request: [3727](https://github.com/hackforla/website/pull/3727) at 2022-11-16 01:58 PM PST -blulady,2022-11-16T21:58:37Z,- blulady pull request closed w/o merging: [3727](https://github.com/hackforla/website/pull/3727#event-7828288838) at 2022-11-16 01:58 PM PST -blulady,2022-11-16T21:59:03Z,- blulady commented on pull request: [3727](https://github.com/hackforla/website/pull/3727#issuecomment-1317725694) at 2022-11-16 01:59 PM PST -blulady,2022-11-17T17:56:21Z,- blulady commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1319001614) at 2022-11-17 09:56 AM PST -blulady,2022-11-17T18:36:45Z,- blulady commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1319048105) at 2022-11-17 10:36 AM PST -blulady,2022-11-17T19:17:41Z,- blulady commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1319090606) at 2022-11-17 11:17 AM PST -blulady,2022-11-18T22:45:01Z,- blulady commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1320612839) at 2022-11-18 02:45 PM PST -blulady,2022-11-19T05:03:30Z,- blulady commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1320803598) at 2022-11-18 09:03 PM PST -blulady,2022-11-20T17:53:06Z,- blulady commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1321200660) at 2022-11-20 09:53 AM PST -blulady,2022-11-20T18:31:25Z,- blulady opened issue: [3734](https://github.com/hackforla/website/issues/3734) at 2022-11-20 10:31 AM PST -blulady,2022-11-20T18:34:10Z,- blulady closed issue as completed: [3734](https://github.com/hackforla/website/issues/3734#event-7851977857) at 2022-11-20 10:34 AM PST -blulady,2022-11-20T18:56:23Z,- blulady commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1321213819) at 2022-11-20 10:56 AM PST -blulady,2022-11-20T19:26:28Z,- blulady commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1321221243) at 2022-11-20 11:26 AM PST -blulady,2022-11-21T21:43:32Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1322689140) at 2022-11-21 01:43 PM PST -blulady,2022-11-22T03:45:21Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1322997710) at 2022-11-21 07:45 PM PST -blulady,2022-11-23T03:15:22Z,- blulady commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1324498845) at 2022-11-22 07:15 PM PST -blulady,2022-11-23T23:00:16Z,- blulady submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1192345186) at 2022-11-23 03:00 PM PST -blulady,2022-11-24T18:54:11Z,- blulady submitted pull request review: [3737](https://github.com/hackforla/website/pull/3737#pullrequestreview-1193536870) at 2022-11-24 10:54 AM PST -blulady,2022-11-24T18:54:24Z,- blulady closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-7888190542) at 2022-11-24 10:54 AM PST -blulady,2022-11-24T19:23:34Z,- blulady commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1326790494) at 2022-11-24 11:23 AM PST -blulady,2022-11-24T19:23:40Z,- blulady closed issue by PR 3736: [3691](https://github.com/hackforla/website/issues/3691#event-7888293631) at 2022-11-24 11:23 AM PST -blulady,2022-11-24T19:37:34Z,- blulady commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1326795900) at 2022-11-24 11:37 AM PST -blulady,2022-11-24T21:00:04Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1326831198) at 2022-11-24 01:00 PM PST -blulady,2022-11-25T00:02:42Z,- blulady opened issue: [3744](https://github.com/hackforla/website/issues/3744) at 2022-11-24 04:02 PM PST -blulady,2022-11-25T00:24:45Z,- blulady commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1326910205) at 2022-11-24 04:24 PM PST -blulady,2022-12-01T18:29:23Z,- blulady commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1334179554) at 2022-12-01 10:29 AM PST -blulady,2022-12-01T18:29:30Z,- blulady closed issue by PR 3753: [3316](https://github.com/hackforla/website/issues/3316#event-7934598176) at 2022-12-01 10:29 AM PST -blulady,2022-12-02T19:27:09Z,- blulady commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1335716749) at 2022-12-02 11:27 AM PST -blulady,2022-12-06T02:41:35Z,- blulady commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1338649341) at 2022-12-05 06:41 PM PST -blulady,2023-01-10T00:28:20Z,- blulady commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1376542118) at 2023-01-09 04:28 PM PST -blulady,2023-01-13T18:57:56Z,- blulady commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1382253422) at 2023-01-13 10:57 AM PST -blulady,2023-01-13T18:58:27Z,- blulady closed issue by PR 3717: [2904](https://github.com/hackforla/website/issues/2904#event-8223595071) at 2023-01-13 10:58 AM PST -blulady,2023-01-16T20:30:22Z,- blulady closed issue by PR 3816: [2871](https://github.com/hackforla/website/issues/2871#event-8239929134) at 2023-01-16 12:30 PM PST -blulady,2023-01-16T20:45:33Z,- blulady commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1384534224) at 2023-01-16 12:45 PM PST -blulady,2023-01-18T06:03:01Z,- blulady opened issue: [3840](https://github.com/hackforla/website/issues/3840) at 2023-01-17 10:03 PM PST -blulady,2023-01-19T19:02:08Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1397465497) at 2023-01-19 11:02 AM PST -blulady,2023-01-23T03:47:28Z,- blulady commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1399760208) at 2023-01-22 07:47 PM PST -blulady,2023-01-24T00:55:01Z,- blulady closed issue by PR 3847: [3399](https://github.com/hackforla/website/issues/3399#event-8339587345) at 2023-01-23 04:55 PM PST -blulady,2023-01-28T00:48:33Z,- blulady commented on pull request: [3884](https://github.com/hackforla/website/pull/3884#issuecomment-1407228054) at 2023-01-27 04:48 PM PST -blulady,2023-01-30T21:10:42Z,- blulady submitted pull request review: [3894](https://github.com/hackforla/website/pull/3894#pullrequestreview-1276043908) at 2023-01-30 01:10 PM PST -blulady,2023-01-31T18:33:26Z,- blulady closed issue by PR 3894: [2435](https://github.com/hackforla/website/issues/2435#event-8402659117) at 2023-01-31 10:33 AM PST -blulady,2023-02-06T00:35:55Z,- blulady submitted pull request review: [3939](https://github.com/hackforla/website/pull/3939#pullrequestreview-1284396396) at 2023-02-05 04:35 PM PST -blulady,2023-02-06T00:36:07Z,- blulady closed issue by PR 3939: [3890](https://github.com/hackforla/website/issues/3890#event-8442317784) at 2023-02-05 04:36 PM PST -blulady,2023-02-06T00:39:39Z,- blulady commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1418325618) at 2023-02-05 04:39 PM PST -blulady,2023-02-06T22:53:02Z,- blulady submitted pull request review: [3926](https://github.com/hackforla/website/pull/3926#pullrequestreview-1286141905) at 2023-02-06 02:53 PM PST -blulady,2023-02-06T22:53:14Z,- blulady closed issue by PR 3926: [3360](https://github.com/hackforla/website/issues/3360#event-8452546788) at 2023-02-06 02:53 PM PST -blulady,2023-02-07T02:11:52Z,- blulady opened issue: [3946](https://github.com/hackforla/website/issues/3946) at 2023-02-06 06:11 PM PST -blulady,2023-02-09T00:27:46Z,- blulady commented on pull request: [3956](https://github.com/hackforla/website/pull/3956#issuecomment-1423421948) at 2023-02-08 04:27 PM PST -blulady,2023-02-09T05:23:45Z,- blulady commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1423652915) at 2023-02-08 09:23 PM PST -blulady,2023-02-10T02:54:34Z,- blulady closed issue by PR 3927: [3895](https://github.com/hackforla/website/issues/3895#event-8485586240) at 2023-02-09 06:54 PM PST -blulady,2023-02-15T18:20:14Z,- blulady opened issue: [3985](https://github.com/hackforla/website/issues/3985) at 2023-02-15 10:20 AM PST -blulady,2023-02-15T18:23:59Z,- blulady commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1431817614) at 2023-02-15 10:23 AM PST -blulady,2023-02-16T17:30:12Z,- blulady commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1433455370) at 2023-02-16 09:30 AM PST -blulady,2023-02-17T02:21:05Z,- blulady closed issue by PR 3980: [3900](https://github.com/hackforla/website/issues/3900#event-8542914706) at 2023-02-16 06:21 PM PST -blulady,2023-02-17T02:48:12Z,- blulady submitted pull request review: [3988](https://github.com/hackforla/website/pull/3988#pullrequestreview-1302626715) at 2023-02-16 06:48 PM PST -blulady,2023-02-17T02:48:55Z,- blulady closed issue by PR 3988: [3059](https://github.com/hackforla/website/issues/3059#event-8543017900) at 2023-02-16 06:48 PM PST -blulady,2023-02-23T19:32:37Z,- blulady opened issue: [4033](https://github.com/hackforla/website/issues/4033) at 2023-02-23 11:32 AM PST -blulady,2023-02-23T19:34:07Z,- blulady commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1442321272) at 2023-02-23 11:34 AM PST -blulady,2023-02-23T23:47:20Z,- blulady closed issue by PR 4021: [3986](https://github.com/hackforla/website/issues/3986#event-8596893589) at 2023-02-23 03:47 PM PST -blulady,2023-02-24T01:15:17Z,- blulady closed issue as completed: [3735](https://github.com/hackforla/website/issues/3735#event-8597266798) at 2023-02-23 05:15 PM PST -blulady,2023-02-24T05:48:13Z,- blulady commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442842920) at 2023-02-23 09:48 PM PST -blulady,2023-02-24T06:03:26Z,- blulady closed issue by PR 4032: [4009](https://github.com/hackforla/website/issues/4009#event-8598478958) at 2023-02-23 10:03 PM PST -blulady,2023-02-24T06:44:53Z,- blulady commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1442876290) at 2023-02-23 10:44 PM PST -blulady,2023-02-24T07:06:21Z,- blulady commented on pull request: [4018](https://github.com/hackforla/website/pull/4018#issuecomment-1442896235) at 2023-02-23 11:06 PM PST -blulady,2023-02-24T07:06:31Z,- blulady closed issue by PR 4018: [3976](https://github.com/hackforla/website/issues/3976#event-8598812767) at 2023-02-23 11:06 PM PST -blulady,2023-02-25T22:41:59Z,- blulady closed issue by PR 3810: [3773](https://github.com/hackforla/website/issues/3773#event-8608621783) at 2023-02-25 02:41 PM PST -blulady,2023-03-02T20:43:30Z,- blulady submitted pull request review: [4079](https://github.com/hackforla/website/pull/4079#pullrequestreview-1322579350) at 2023-03-02 12:43 PM PST -blulady,2023-03-02T21:14:59Z,- blulady submitted pull request review: [4091](https://github.com/hackforla/website/pull/4091#pullrequestreview-1322643684) at 2023-03-02 01:14 PM PST -blulady,2023-03-02T21:32:46Z,- blulady submitted pull request review: [4086](https://github.com/hackforla/website/pull/4086#pullrequestreview-1322682641) at 2023-03-02 01:32 PM PST -blulady,2023-03-04T18:14:49Z,- blulady commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1454828477) at 2023-03-04 10:14 AM PST -blulady,2023-03-04T18:17:24Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1454829354) at 2023-03-04 10:17 AM PST -blulady,2023-03-04T20:22:33Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1454864259) at 2023-03-04 12:22 PM PST -blulady,2023-03-08T22:47:29Z,- blulady submitted pull request review: [4102](https://github.com/hackforla/website/pull/4102#pullrequestreview-1331628444) at 2023-03-08 02:47 PM PST -blulady,2023-03-08T22:58:44Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1461002500) at 2023-03-08 02:58 PM PST -blulady,2023-03-09T18:46:17Z,- blulady commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1462589138) at 2023-03-09 10:46 AM PST -blulady,2023-03-09T18:56:15Z,- blulady submitted pull request review: [4086](https://github.com/hackforla/website/pull/4086#pullrequestreview-1333539220) at 2023-03-09 10:56 AM PST -blulady,2023-03-09T18:56:25Z,- blulady closed issue by PR 4086: [4007](https://github.com/hackforla/website/issues/4007#event-8711482335) at 2023-03-09 10:56 AM PST -blulady,2023-03-09T23:15:37Z,- blulady closed issue by PR 4140: [4023](https://github.com/hackforla/website/issues/4023#event-8713283360) at 2023-03-09 03:15 PM PST -blulady,2023-03-09T23:32:19Z,- blulady closed issue by PR 4123: [4084](https://github.com/hackforla/website/issues/4084#event-8713359145) at 2023-03-09 03:32 PM PST -blulady,2023-03-09T23:35:17Z,- blulady closed issue by PR 4119: [4041](https://github.com/hackforla/website/issues/4041#event-8713373897) at 2023-03-09 03:35 PM PST -blulady,2023-03-17T05:19:49Z,- blulady commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1473146702) at 2023-03-16 10:19 PM PDT -blulady,2023-03-17T05:21:31Z,- blulady commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1473147774) at 2023-03-16 10:21 PM PDT -blulady,2023-03-17T05:27:12Z,- blulady closed issue by PR 4181: [4031](https://github.com/hackforla/website/issues/4031#event-8774506596) at 2023-03-16 10:27 PM PDT -blulady,2023-03-23T21:03:19Z,- blulady closed issue by PR 4228: [3878](https://github.com/hackforla/website/issues/3878#event-8832447800) at 2023-03-23 02:03 PM PDT -blulady,2023-03-23T21:04:15Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1481906282) at 2023-03-23 02:04 PM PDT -blulady,2023-03-23T21:26:13Z,- blulady closed issue by PR 4224: [4220](https://github.com/hackforla/website/issues/4220#event-8832634991) at 2023-03-23 02:26 PM PDT -blulady,2023-03-23T21:34:34Z,- blulady closed issue by PR 4222: [4142](https://github.com/hackforla/website/issues/4142#event-8832698102) at 2023-03-23 02:34 PM PDT -blulady,2023-03-23T21:43:49Z,- blulady closed issue by PR 4215: [3874](https://github.com/hackforla/website/issues/3874#event-8832757515) at 2023-03-23 02:43 PM PDT -blulady,2023-03-23T21:48:51Z,- blulady closed issue by PR 4208: [3877](https://github.com/hackforla/website/issues/3877#event-8832793268) at 2023-03-23 02:48 PM PDT -blulady,2023-03-24T19:09:43Z,- blulady commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1483287869) at 2023-03-24 12:09 PM PDT -blulady,2023-03-24T19:34:41Z,- blulady commented on issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1483314890) at 2023-03-24 12:34 PM PDT -blulady,2023-03-30T16:22:59Z,- blulady submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1365492660) at 2023-03-30 09:22 AM PDT -blulady,2023-03-30T19:51:26Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1490856320) at 2023-03-30 12:51 PM PDT -blulady,2023-03-30T19:52:23Z,- blulady commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1490857336) at 2023-03-30 12:52 PM PDT -blulady,2023-03-30T19:57:06Z,- blulady submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1365834355) at 2023-03-30 12:57 PM PDT -blulady,2023-03-30T20:06:52Z,- blulady closed issue by PR 4308: [4269](https://github.com/hackforla/website/issues/4269#event-8891429561) at 2023-03-30 01:06 PM PDT -blulady,2023-03-30T20:10:29Z,- blulady commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490885701) at 2023-03-30 01:10 PM PDT -blulady,2023-03-30T20:12:54Z,- blulady closed issue by PR 4305: [3868](https://github.com/hackforla/website/issues/3868#event-8891475897) at 2023-03-30 01:12 PM PDT -blulady,2023-03-31T01:14:05Z,- blulady submitted pull request review: [4347](https://github.com/hackforla/website/pull/4347#pullrequestreview-1366123720) at 2023-03-30 06:14 PM PDT -blulady,2023-03-31T01:14:15Z,- blulady closed issue by PR 4347: [3870](https://github.com/hackforla/website/issues/3870#event-8893126200) at 2023-03-30 06:14 PM PDT -blulady,2023-03-31T01:15:49Z,- blulady closed issue by PR 4306: [4284](https://github.com/hackforla/website/issues/4284#event-8893133183) at 2023-03-30 06:15 PM PDT -blulady,2023-04-03T04:26:16Z,- blulady commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1493644626) at 2023-04-02 09:26 PM PDT -blulady,2023-04-06T18:32:47Z,- blulady closed issue by PR 4411: [4378](https://github.com/hackforla/website/issues/4378#event-8948718647) at 2023-04-06 11:32 AM PDT -blulady,2023-04-13T23:18:43Z,- blulady commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507721728) at 2023-04-13 04:18 PM PDT -blulady,2023-04-13T23:24:19Z,- blulady commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1507724719) at 2023-04-13 04:24 PM PDT -blulady,2023-04-14T01:29:37Z,- blulady submitted pull request review: [4501](https://github.com/hackforla/website/pull/4501#pullrequestreview-1384472168) at 2023-04-13 06:29 PM PDT -blulady,2023-04-14T01:30:56Z,- blulady commented on pull request: [4501](https://github.com/hackforla/website/pull/4501#issuecomment-1507805429) at 2023-04-13 06:30 PM PDT -blulady,2023-04-14T01:33:32Z,- blulady closed issue by PR 4500: [4393](https://github.com/hackforla/website/issues/4393#event-9002657458) at 2023-04-13 06:33 PM PDT -blulady,2023-04-20T19:06:43Z,- blulady submitted pull request review: [4549](https://github.com/hackforla/website/pull/4549#pullrequestreview-1394603015) at 2023-04-20 12:06 PM PDT -blulady,2023-04-20T19:06:55Z,- blulady closed issue by PR 4549: [4451](https://github.com/hackforla/website/issues/4451#event-9060662345) at 2023-04-20 12:06 PM PDT -blulady,2023-04-20T19:08:11Z,- blulady commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1516814082) at 2023-04-20 12:08 PM PDT -blulady,2023-04-20T19:16:00Z,- blulady commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516823216) at 2023-04-20 12:16 PM PDT -blulady,2023-04-20T19:16:28Z,- blulady commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516823689) at 2023-04-20 12:16 PM PDT -blulady,2023-04-20T19:28:07Z,- blulady submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1394630261) at 2023-04-20 12:28 PM PDT -blulady,2023-04-20T19:28:23Z,- blulady closed issue by PR 4548: [4450](https://github.com/hackforla/website/issues/4450#event-9060817611) at 2023-04-20 12:28 PM PDT -blulady,2023-04-21T01:38:14Z,- blulady commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517136596) at 2023-04-20 06:38 PM PDT -blulady,2023-04-28T01:17:03Z,- blulady commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526845926) at 2023-04-27 06:17 PM PDT -blulady,2023-05-04T18:37:50Z,- blulady submitted pull request review: [4596](https://github.com/hackforla/website/pull/4596#pullrequestreview-1413704177) at 2023-05-04 11:37 AM PDT -blulady,2023-05-04T18:37:59Z,- blulady closed issue by PR 4596: [4513](https://github.com/hackforla/website/issues/4513#event-9170404141) at 2023-05-04 11:37 AM PDT -blulady,2023-05-04T19:29:15Z,- blulady opened pull request: [4598](https://github.com/hackforla/website/pull/4598) at 2023-05-04 12:29 PM PDT -blulady,2023-05-04T19:29:31Z,- blulady pull request closed w/o merging: [4598](https://github.com/hackforla/website/pull/4598#event-9170840907) at 2023-05-04 12:29 PM PDT -blulady,2023-05-04T19:50:45Z,- blulady closed issue by PR 4550: [4357](https://github.com/hackforla/website/issues/4357#event-9171031818) at 2023-05-04 12:50 PM PDT -blulady,2023-05-11T17:42:12Z,- blulady closed issue by PR 4640: [4585](https://github.com/hackforla/website/issues/4585#event-9225163921) at 2023-05-11 10:42 AM PDT -blulady,2023-05-11T17:49:29Z,- blulady commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1544433662) at 2023-05-11 10:49 AM PDT -blulady,2023-05-11T17:50:50Z,- blulady commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1544435473) at 2023-05-11 10:50 AM PDT -blulady,2023-05-11T17:54:45Z,- blulady commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1544440598) at 2023-05-11 10:54 AM PDT -blulady,2023-05-11T17:55:57Z,- blulady commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1544442322) at 2023-05-11 10:55 AM PDT -blulady,2023-05-11T18:11:04Z,- blulady commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1544461719) at 2023-05-11 11:11 AM PDT -blulady,2023-05-11T18:12:42Z,- blulady commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1544463633) at 2023-05-11 11:12 AM PDT -blulady,2023-05-11T19:04:52Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1544533888) at 2023-05-11 12:04 PM PDT -blulady,2023-05-11T20:39:52Z,- blulady commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1544647452) at 2023-05-11 01:39 PM PDT -blulady,2023-05-18T18:07:36Z,- blulady closed issue as not planned: [4692](https://github.com/hackforla/website/issues/4692#event-9282495304) at 2023-05-18 11:07 AM PDT -blulady,2023-05-18T18:53:33Z,- blulady submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1433278066) at 2023-05-18 11:53 AM PDT -blulady,2023-05-18T18:59:03Z,- blulady submitted pull request review: [4661](https://github.com/hackforla/website/pull/4661#pullrequestreview-1433285419) at 2023-05-18 11:59 AM PDT -blulady,2023-05-18T19:01:56Z,- blulady submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1433289159) at 2023-05-18 12:01 PM PDT -blulady,2023-05-18T19:23:02Z,- blulady opened pull request: [4693](https://github.com/hackforla/website/pull/4693) at 2023-05-18 12:23 PM PDT -blulady,2023-05-18T19:23:21Z,- blulady pull request closed w/o merging: [4693](https://github.com/hackforla/website/pull/4693#event-9283075663) at 2023-05-18 12:23 PM PDT -blulady,2023-05-18T20:31:26Z,- blulady submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1433409617) at 2023-05-18 01:31 PM PDT -blulady,2023-05-18T20:33:17Z,- blulady closed issue by PR 4600: [4249](https://github.com/hackforla/website/issues/4249#event-9283569630) at 2023-05-18 01:33 PM PDT -blulady,2023-05-18T20:46:08Z,- blulady closed issue by PR 4668: [4587](https://github.com/hackforla/website/issues/4587#event-9283653455) at 2023-05-18 01:46 PM PDT -blulady,2023-05-18T21:23:43Z,- blulady closed issue by PR 4686: [4490](https://github.com/hackforla/website/issues/4490#event-9283904235) at 2023-05-18 02:23 PM PDT -blulady,2023-05-18T21:26:10Z,- blulady commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1553665939) at 2023-05-18 02:26 PM PDT -blulady,2023-05-25T18:34:12Z,- blulady submitted pull request review: [4710](https://github.com/hackforla/website/pull/4710#pullrequestreview-1444452380) at 2023-05-25 11:34 AM PDT -blulady,2023-05-25T18:34:32Z,- blulady closed issue by PR 4710: [4706](https://github.com/hackforla/website/issues/4706#event-9343296569) at 2023-05-25 11:34 AM PDT -blulady,2023-05-25T18:52:14Z,- blulady submitted pull request review: [4709](https://github.com/hackforla/website/pull/4709#pullrequestreview-1444476616) at 2023-05-25 11:52 AM PDT -blulady,2023-05-25T18:52:22Z,- blulady closed issue by PR 4709: [4699](https://github.com/hackforla/website/issues/4699#event-9343462317) at 2023-05-25 11:52 AM PDT -blulady,2023-05-25T18:53:23Z,- blulady closed issue by PR 4702: [4503](https://github.com/hackforla/website/issues/4503#event-9343471665) at 2023-05-25 11:53 AM PDT -blulady,2023-05-25T18:57:42Z,- blulady submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1444483792) at 2023-05-25 11:57 AM PDT -blulady,2023-05-26T02:57:28Z,- blulady submitted pull request review: [4733](https://github.com/hackforla/website/pull/4733#pullrequestreview-1444912083) at 2023-05-25 07:57 PM PDT -blulady,2023-06-01T08:20:42Z,- blulady opened issue: [4765](https://github.com/hackforla/website/issues/4765) at 2023-06-01 01:20 AM PDT -blulady,2023-06-01T21:03:44Z,- blulady commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1572780149) at 2023-06-01 02:03 PM PDT -blulady,2023-06-04T21:29:57Z,- blulady commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1575738734) at 2023-06-04 02:29 PM PDT -blulady,2023-06-09T04:04:21Z,- blulady submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1471190730) at 2023-06-08 09:04 PM PDT -blulady,2023-06-09T04:04:37Z,- blulady closed issue by PR 4755: [4659](https://github.com/hackforla/website/issues/4659#event-9480020618) at 2023-06-08 09:04 PM PDT -blulady,2023-06-18T21:52:13Z,- blulady submitted pull request review: [4848](https://github.com/hackforla/website/pull/4848#pullrequestreview-1485202439) at 2023-06-18 02:52 PM PDT -blulady,2023-06-18T22:46:21Z,- blulady submitted pull request review: [4847](https://github.com/hackforla/website/pull/4847#pullrequestreview-1485216012) at 2023-06-18 03:46 PM PDT -blulady,2023-06-18T22:47:20Z,- blulady submitted pull request review: [4845](https://github.com/hackforla/website/pull/4845#pullrequestreview-1485216143) at 2023-06-18 03:47 PM PDT -blulady,2023-06-18T23:12:27Z,- blulady submitted pull request review: [4838](https://github.com/hackforla/website/pull/4838#pullrequestreview-1485221204) at 2023-06-18 04:12 PM PDT -blulady,2023-06-18T23:31:23Z,- blulady opened pull request: [4853](https://github.com/hackforla/website/pull/4853) at 2023-06-18 04:31 PM PDT -blulady,2023-06-18T23:32:16Z,- blulady pull request closed w/o merging: [4853](https://github.com/hackforla/website/pull/4853#event-9562266150) at 2023-06-18 04:32 PM PDT -blulady,2023-06-23T21:51:48Z,- blulady submitted pull request review: [4837](https://github.com/hackforla/website/pull/4837#pullrequestreview-1496090553) at 2023-06-23 02:51 PM PDT -blulady,2023-06-24T21:12:34Z,- blulady submitted pull request review: [4881](https://github.com/hackforla/website/pull/4881#pullrequestreview-1496805058) at 2023-06-24 02:12 PM PDT -blulady,2023-06-28T02:13:25Z,- blulady commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1610532232) at 2023-06-27 07:13 PM PDT -blulady,2023-06-28T02:15:28Z,- blulady commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1610535236) at 2023-06-27 07:15 PM PDT -blulady,2023-07-12T02:12:48Z,- blulady commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1631745818) at 2023-07-11 07:12 PM PDT -blulady,2023-07-12T02:14:54Z,- blulady commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1631747177) at 2023-07-11 07:14 PM PDT -blulady,2023-07-12T02:17:49Z,- blulady commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1631748996) at 2023-07-11 07:17 PM PDT -blulady,2023-07-12T02:20:34Z,- blulady commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1631750619) at 2023-07-11 07:20 PM PDT -blulady,2023-07-12T02:34:02Z,- blulady commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1631761763) at 2023-07-11 07:34 PM PDT -blulady,2023-07-20T16:45:42Z,- blulady commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1644255141) at 2023-07-20 09:45 AM PDT -blulady,2023-07-20T16:50:07Z,- blulady submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1539697186) at 2023-07-20 09:50 AM PDT -blulady,2023-08-16T02:29:09Z,- blulady submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579708661) at 2023-08-15 07:29 PM PDT -blulady,2023-08-25T02:04:47Z,- blulady reopened pull request: [5251](https://github.com/hackforla/website/pull/5251#event-10132715407) at 2023-08-24 07:04 PM PDT -blulady,2023-08-25T02:20:45Z,- blulady reopened issue: [3831](https://github.com/hackforla/website/issues/3831#event-8772852578) at 2023-08-24 07:20 PM PDT -blulady,2023-10-25T02:28:12Z,- blulady submitted pull request review: [5768](https://github.com/hackforla/website/pull/5768#pullrequestreview-1696246064) at 2023-10-24 07:28 PM PDT -blulady,2023-11-22T03:30:38Z,- blulady submitted pull request review: [5928](https://github.com/hackforla/website/pull/5928#pullrequestreview-1743489661) at 2023-11-21 07:30 PM PST -bootcamp-brian,3912,SKILLS ISSUE -bootcamp-brian,2023-02-01T04:58:24Z,- bootcamp-brian opened issue: [3912](https://github.com/hackforla/website/issues/3912) at 2023-01-31 08:58 PM PST -bootcamp-brian,2023-02-01T04:58:31Z,- bootcamp-brian assigned to issue: [3912](https://github.com/hackforla/website/issues/3912) at 2023-01-31 08:58 PM PST -bootcamp-brian,2023-02-05T21:36:17Z,- bootcamp-brian assigned to issue: [3854](https://github.com/hackforla/website/issues/3854) at 2023-02-05 01:36 PM PST -bootcamp-brian,2023-02-05T22:18:23Z,- bootcamp-brian closed issue by PR 4273: [2833](https://github.com/hackforla/website/issues/2833#event-8441846519) at 2023-02-05 02:18 PM PST -bootcamp-brian,2023-02-05T22:18:26Z,- bootcamp-brian reopened issue: [2833](https://github.com/hackforla/website/issues/2833#event-8441846519) at 2023-02-05 02:18 PM PST -bootcamp-brian,2023-02-05T22:21:52Z,- bootcamp-brian commented on issue: [3854](https://github.com/hackforla/website/issues/3854#issuecomment-1418280947) at 2023-02-05 02:21 PM PST -bootcamp-brian,2023-02-05T22:25:34Z,- bootcamp-brian commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1418281696) at 2023-02-05 02:25 PM PST -bootcamp-brian,2023-02-05T22:44:05Z,- bootcamp-brian opened pull request: [3940](https://github.com/hackforla/website/pull/3940) at 2023-02-05 02:44 PM PST -bootcamp-brian,2023-02-05T22:49:01Z,- bootcamp-brian commented on issue: [3854](https://github.com/hackforla/website/issues/3854#issuecomment-1418286311) at 2023-02-05 02:49 PM PST -bootcamp-brian,2023-02-08T04:37:17Z,- bootcamp-brian pull request merged: [3940](https://github.com/hackforla/website/pull/3940#event-8464545142) at 2023-02-07 08:37 PM PST -bootcamp-brian,2023-02-13T19:51:36Z,- bootcamp-brian commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428563218) at 2023-02-13 11:51 AM PST -bootcamp-brian,2023-02-13T20:00:21Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296355586) at 2023-02-13 12:00 PM PST -bootcamp-brian,2023-02-13T20:20:54Z,- bootcamp-brian commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428625729) at 2023-02-13 12:20 PM PST -bootcamp-brian,2023-02-13T21:55:31Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296503294) at 2023-02-13 01:55 PM PST -bootcamp-brian,2023-02-13T22:25:58Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296536656) at 2023-02-13 02:25 PM PST -bootcamp-brian,2023-02-14T00:53:35Z,- bootcamp-brian commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1428932849) at 2023-02-13 04:53 PM PST -bootcamp-brian,2023-02-14T01:34:56Z,- bootcamp-brian submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1296701990) at 2023-02-13 05:34 PM PST -bootcamp-brian,2023-02-15T04:22:28Z,- bootcamp-brian assigned to issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1427172910) at 2023-02-14 08:22 PM PST -bootcamp-brian,2023-02-15T04:25:52Z,- bootcamp-brian commented on issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1430739814) at 2023-02-14 08:25 PM PST -bootcamp-brian,2023-02-15T05:15:11Z,- bootcamp-brian opened pull request: [3982](https://github.com/hackforla/website/pull/3982) at 2023-02-14 09:15 PM PST -bootcamp-brian,2023-02-15T05:19:03Z,- bootcamp-brian commented on issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1430772034) at 2023-02-14 09:19 PM PST -bootcamp-brian,2023-02-16T08:55:49Z,- bootcamp-brian pull request merged: [3982](https://github.com/hackforla/website/pull/3982#event-8534502136) at 2023-02-16 12:55 AM PST -bootcamp-brian,2023-02-16T19:50:32Z,- bootcamp-brian commented on pull request: [3988](https://github.com/hackforla/website/pull/3988#issuecomment-1433627095) at 2023-02-16 11:50 AM PST -bootcamp-brian,2023-02-16T20:15:21Z,- bootcamp-brian submitted pull request review: [3988](https://github.com/hackforla/website/pull/3988#pullrequestreview-1302214034) at 2023-02-16 12:15 PM PST -bootcamp-brian,2023-02-16T20:36:44Z,- bootcamp-brian commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1433683848) at 2023-02-16 12:36 PM PST -bootcamp-brian,2023-02-16T20:53:06Z,- bootcamp-brian submitted pull request review: [3980](https://github.com/hackforla/website/pull/3980#pullrequestreview-1302262372) at 2023-02-16 12:53 PM PST -bootcamp-brian,2023-02-23T17:46:22Z,- bootcamp-brian assigned to issue: [4009](https://github.com/hackforla/website/issues/4009) at 2023-02-23 09:46 AM PST -bootcamp-brian,2023-02-23T17:47:40Z,- bootcamp-brian commented on issue: [4009](https://github.com/hackforla/website/issues/4009#issuecomment-1442188021) at 2023-02-23 09:47 AM PST -bootcamp-brian,2023-02-23T18:20:59Z,- bootcamp-brian opened pull request: [4032](https://github.com/hackforla/website/pull/4032) at 2023-02-23 10:20 AM PST -bootcamp-brian,2023-02-23T18:23:03Z,- bootcamp-brian commented on issue: [4009](https://github.com/hackforla/website/issues/4009#issuecomment-1442232342) at 2023-02-23 10:23 AM PST -bootcamp-brian,2023-02-23T19:37:41Z,- bootcamp-brian commented on pull request: [4030](https://github.com/hackforla/website/pull/4030#issuecomment-1442324879) at 2023-02-23 11:37 AM PST -bootcamp-brian,2023-02-23T19:43:14Z,- bootcamp-brian submitted pull request review: [4030](https://github.com/hackforla/website/pull/4030#pullrequestreview-1312027531) at 2023-02-23 11:43 AM PST -bootcamp-brian,2023-02-23T19:58:42Z,- bootcamp-brian commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1442356284) at 2023-02-23 11:58 AM PST -bootcamp-brian,2023-02-23T20:06:28Z,- bootcamp-brian submitted pull request review: [4021](https://github.com/hackforla/website/pull/4021#pullrequestreview-1312063383) at 2023-02-23 12:06 PM PST -bootcamp-brian,2023-02-24T06:03:24Z,- bootcamp-brian pull request merged: [4032](https://github.com/hackforla/website/pull/4032#event-8598478815) at 2023-02-23 10:03 PM PST -bootcamp-brian,2023-02-24T06:46:50Z,- bootcamp-brian commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442877491) at 2023-02-23 10:46 PM PST -bootcamp-brian,2023-02-26T03:46:11Z,- bootcamp-brian assigned to issue: [4028](https://github.com/hackforla/website/issues/4028) at 2023-02-25 07:46 PM PST -bootcamp-brian,2023-02-26T03:47:22Z,- bootcamp-brian commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445261218) at 2023-02-25 07:47 PM PST -bootcamp-brian,2023-02-26T04:44:34Z,- bootcamp-brian commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445267738) at 2023-02-25 08:44 PM PST -bootcamp-brian,2023-02-26T22:12:46Z,- bootcamp-brian opened pull request: [4052](https://github.com/hackforla/website/pull/4052) at 2023-02-26 02:12 PM PST -bootcamp-brian,2023-02-26T22:14:20Z,- bootcamp-brian commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445481806) at 2023-02-26 02:14 PM PST -bootcamp-brian,2023-02-27T15:56:32Z,- bootcamp-brian pull request merged: [4052](https://github.com/hackforla/website/pull/4052#event-8617362886) at 2023-02-27 07:56 AM PST -bootcamp-brian,2023-02-27T18:28:15Z,- bootcamp-brian commented on pull request: [4052](https://github.com/hackforla/website/pull/4052#issuecomment-1446844479) at 2023-02-27 10:28 AM PST -bootcamp-brian,2023-03-03T02:02:50Z,- bootcamp-brian commented on pull request: [4092](https://github.com/hackforla/website/pull/4092#issuecomment-1452832233) at 2023-03-02 06:02 PM PST -bootcamp-brian,2023-03-03T02:14:39Z,- bootcamp-brian submitted pull request review: [4092](https://github.com/hackforla/website/pull/4092#pullrequestreview-1323008304) at 2023-03-02 06:14 PM PST -bootcamp-brian,2023-03-04T19:26:38Z,- bootcamp-brian assigned to issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1003694534) at 2023-03-04 11:26 AM PST -bootcamp-brian,2023-03-04T19:28:34Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1454850031) at 2023-03-04 11:28 AM PST -bootcamp-brian,2023-03-04T19:30:42Z,- bootcamp-brian commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1454850560) at 2023-03-04 11:30 AM PST -bootcamp-brian,2023-03-09T20:07:45Z,- bootcamp-brian commented on pull request: [4139](https://github.com/hackforla/website/pull/4139#issuecomment-1462700821) at 2023-03-09 12:07 PM PST -bootcamp-brian,2023-03-09T20:16:06Z,- bootcamp-brian submitted pull request review: [4139](https://github.com/hackforla/website/pull/4139#pullrequestreview-1333726390) at 2023-03-09 12:16 PM PST -bootcamp-brian,2023-03-09T20:19:37Z,- bootcamp-brian commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1462713091) at 2023-03-09 12:19 PM PST -bootcamp-brian,2023-03-09T20:22:20Z,- bootcamp-brian submitted pull request review: [4140](https://github.com/hackforla/website/pull/4140#pullrequestreview-1333740408) at 2023-03-09 12:22 PM PST -bootcamp-brian,2023-03-09T20:24:22Z,- bootcamp-brian commented on pull request: [4119](https://github.com/hackforla/website/pull/4119#issuecomment-1462723917) at 2023-03-09 12:24 PM PST -bootcamp-brian,2023-03-09T20:26:54Z,- bootcamp-brian submitted pull request review: [4119](https://github.com/hackforla/website/pull/4119#pullrequestreview-1333749348) at 2023-03-09 12:26 PM PST -bootcamp-brian,2023-03-11T04:43:00Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1464824468) at 2023-03-10 09:43 PM PDT -bootcamp-brian,2023-03-16T22:37:14Z,- bootcamp-brian commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472854314) at 2023-03-16 03:37 PM PDT -bootcamp-brian,2023-03-16T22:46:51Z,- bootcamp-brian submitted pull request review: [4196](https://github.com/hackforla/website/pull/4196#pullrequestreview-1344874138) at 2023-03-16 03:46 PM PDT -bootcamp-brian,2023-03-16T22:57:24Z,- bootcamp-brian commented on pull request: [4195](https://github.com/hackforla/website/pull/4195#issuecomment-1472869372) at 2023-03-16 03:57 PM PDT -bootcamp-brian,2023-03-16T23:05:18Z,- bootcamp-brian submitted pull request review: [4195](https://github.com/hackforla/website/pull/4195#pullrequestreview-1344908839) at 2023-03-16 04:05 PM PDT -bootcamp-brian,2023-03-17T20:46:30Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1474387715) at 2023-03-17 01:46 PM PDT -bootcamp-brian,2023-03-19T17:31:55Z,- bootcamp-brian commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1475333742) at 2023-03-19 10:31 AM PDT -bootcamp-brian,2023-03-19T17:32:09Z,- bootcamp-brian commented on pull request: [4203](https://github.com/hackforla/website/pull/4203#issuecomment-1475333792) at 2023-03-19 10:32 AM PDT -bootcamp-brian,2023-03-19T19:58:59Z,- bootcamp-brian submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347569017) at 2023-03-19 12:58 PM PDT -bootcamp-brian,2023-03-19T20:04:11Z,- bootcamp-brian submitted pull request review: [4203](https://github.com/hackforla/website/pull/4203#pullrequestreview-1347569819) at 2023-03-19 01:04 PM PDT -bootcamp-brian,2023-03-19T20:26:55Z,- bootcamp-brian submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347572720) at 2023-03-19 01:26 PM PDT -bootcamp-brian,2023-03-23T20:00:00Z,- bootcamp-brian commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1481814809) at 2023-03-23 01:00 PM PDT -bootcamp-brian,2023-03-23T20:09:20Z,- bootcamp-brian submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1355495194) at 2023-03-23 01:09 PM PDT -bootcamp-brian,2023-03-23T20:49:45Z,- bootcamp-brian opened issue: [4264](https://github.com/hackforla/website/issues/4264) at 2023-03-23 01:49 PM PDT -bootcamp-brian,2023-03-24T18:52:23Z,- bootcamp-brian closed issue as completed: [3912](https://github.com/hackforla/website/issues/3912#event-8841847133) at 2023-03-24 11:52 AM PDT -bootcamp-brian,2023-03-25T05:40:56Z,- bootcamp-brian commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1483732033) at 2023-03-24 10:40 PM PDT -bootcamp-brian,2023-03-26T17:20:38Z,- bootcamp-brian commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1484163266) at 2023-03-26 10:20 AM PDT -bootcamp-brian,2023-03-26T17:20:49Z,- bootcamp-brian commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1484163296) at 2023-03-26 10:20 AM PDT -bootcamp-brian,2023-03-27T20:05:11Z,- bootcamp-brian submitted pull request review: [4278](https://github.com/hackforla/website/pull/4278#pullrequestreview-1359793222) at 2023-03-27 01:05 PM PDT -bootcamp-brian,2023-03-27T20:21:08Z,- bootcamp-brian submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1359813967) at 2023-03-27 01:21 PM PDT -bootcamp-brian,2023-03-28T19:54:18Z,- bootcamp-brian submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1361812391) at 2023-03-28 12:54 PM PDT -bootcamp-brian,2023-03-28T19:56:50Z,- bootcamp-brian submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1361815745) at 2023-03-28 12:56 PM PDT -bootcamp-brian,2023-03-28T20:02:26Z,- bootcamp-brian commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1487521436) at 2023-03-28 01:02 PM PDT -bootcamp-brian,2023-03-29T18:11:15Z,- bootcamp-brian submitted pull request review: [4278](https://github.com/hackforla/website/pull/4278#pullrequestreview-1363698609) at 2023-03-29 11:11 AM PDT -bootcamp-brian,2023-04-06T19:26:56Z,- bootcamp-brian commented on pull request: [4428](https://github.com/hackforla/website/pull/4428#issuecomment-1499517049) at 2023-04-06 12:26 PM PDT -bootcamp-brian,2023-04-06T19:28:44Z,- bootcamp-brian submitted pull request review: [4428](https://github.com/hackforla/website/pull/4428#pullrequestreview-1375449391) at 2023-04-06 12:28 PM PDT -bootcamp-brian,2023-04-06T19:36:25Z,- bootcamp-brian commented on pull request: [4430](https://github.com/hackforla/website/pull/4430#issuecomment-1499525917) at 2023-04-06 12:36 PM PDT -bootcamp-brian,2023-04-06T19:39:21Z,- bootcamp-brian submitted pull request review: [4430](https://github.com/hackforla/website/pull/4430#pullrequestreview-1375460702) at 2023-04-06 12:39 PM PDT -bootcamp-brian,2023-04-06T19:43:30Z,- bootcamp-brian commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499532482) at 2023-04-06 12:43 PM PDT -bootcamp-brian,2023-04-06T19:46:28Z,- bootcamp-brian submitted pull request review: [4433](https://github.com/hackforla/website/pull/4433#pullrequestreview-1375468548) at 2023-04-06 12:46 PM PDT -bootcamp-brian,2023-04-06T19:48:21Z,- bootcamp-brian assigned to issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1493374309) at 2023-04-06 12:48 PM PDT -bootcamp-brian,2023-04-06T19:51:56Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1499540164) at 2023-04-06 12:51 PM PDT -bootcamp-brian,2023-04-06T20:00:34Z,- bootcamp-brian commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499548400) at 2023-04-06 01:00 PM PDT -bootcamp-brian,2023-04-06T20:28:56Z,- bootcamp-brian submitted pull request review: [4433](https://github.com/hackforla/website/pull/4433#pullrequestreview-1375531568) at 2023-04-06 01:28 PM PDT -bootcamp-brian,2023-04-12T03:01:58Z,- bootcamp-brian opened issue: [4479](https://github.com/hackforla/website/issues/4479) at 2023-04-11 08:01 PM PDT -bootcamp-brian,2023-04-15T02:58:12Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1509479700) at 2023-04-14 07:58 PM PDT -bootcamp-brian,2023-04-19T03:21:50Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1514077867) at 2023-04-18 08:21 PM PDT -bootcamp-brian,2023-04-19T03:46:00Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1514091396) at 2023-04-18 08:46 PM PDT -bootcamp-brian,2023-04-22T02:13:09Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1396521415) at 2023-04-21 07:13 PM PDT -bootcamp-brian,2023-04-22T06:53:26Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1518536843) at 2023-04-21 11:53 PM PDT -bootcamp-brian,2023-04-23T18:53:46Z,- bootcamp-brian commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1519131586) at 2023-04-23 11:53 AM PDT -bootcamp-brian,2023-04-26T23:42:29Z,- bootcamp-brian opened issue: [4568](https://github.com/hackforla/website/issues/4568) at 2023-04-26 04:42 PM PDT -bootcamp-brian,2023-04-26T23:58:07Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1524234312) at 2023-04-26 04:58 PM PDT -bootcamp-brian,2023-04-27T00:11:50Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1524258489) at 2023-04-26 05:11 PM PDT -bootcamp-brian,2023-04-27T21:45:37Z,- bootcamp-brian closed issue by PR 4570: [4413](https://github.com/hackforla/website/issues/4413#event-9119036247) at 2023-04-27 02:45 PM PDT -bootcamp-brian,2023-04-27T21:50:26Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526557605) at 2023-04-27 02:50 PM PDT -bootcamp-brian,2023-04-27T21:50:35Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1404953673) at 2023-04-27 02:50 PM PDT -bootcamp-brian,2023-04-28T01:01:41Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1405096816) at 2023-04-27 06:01 PM PDT -bootcamp-brian,2023-04-28T01:26:16Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526850935) at 2023-04-27 06:26 PM PDT -bootcamp-brian,2023-04-28T01:32:47Z,- bootcamp-brian commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1526855180) at 2023-04-27 06:32 PM PDT -bootcamp-brian,2023-04-28T02:50:32Z,- bootcamp-brian commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526906517) at 2023-04-27 07:50 PM PDT -bootcamp-brian,2023-04-28T21:14:56Z,- bootcamp-brian submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1406612199) at 2023-04-28 02:14 PM PDT -bootcamp-brian,2023-04-28T21:15:13Z,- bootcamp-brian closed issue by PR 4545: [4158](https://github.com/hackforla/website/issues/4158#event-9128475122) at 2023-04-28 02:15 PM PDT -bootcamp-brian,2023-04-30T00:19:20Z,- bootcamp-brian commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1528903708) at 2023-04-29 05:19 PM PDT -bootcamp-brian,2023-05-02T21:47:14Z,- bootcamp-brian commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1532197253) at 2023-05-02 02:47 PM PDT -bootcamp-brian,2023-05-05T00:49:39Z,- bootcamp-brian opened pull request: [4600](https://github.com/hackforla/website/pull/4600) at 2023-05-04 05:49 PM PDT -bootcamp-brian,2023-05-07T16:24:22Z,- bootcamp-brian assigned to issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1537484511) at 2023-05-07 09:24 AM PDT -bootcamp-brian,2023-05-11T18:12:51Z,- bootcamp-brian assigned to issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1543751720) at 2023-05-11 11:12 AM PDT -bootcamp-brian,2023-05-11T18:13:05Z,- bootcamp-brian commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1544464036) at 2023-05-11 11:13 AM PDT -bootcamp-brian,2023-05-11T22:49:18Z,- bootcamp-brian commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1544789849) at 2023-05-11 03:49 PM PDT -bootcamp-brian,2023-05-14T03:53:42Z,- bootcamp-brian unassigned from issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1544464154) at 2023-05-13 08:53 PM PDT -bootcamp-brian,2023-05-18T20:33:15Z,- bootcamp-brian pull request merged: [4600](https://github.com/hackforla/website/pull/4600#event-9283569419) at 2023-05-18 01:33 PM PDT -bootcamp-brian,2023-05-19T06:30:43Z,- bootcamp-brian closed issue by PR 4691: [4687](https://github.com/hackforla/website/issues/4687#event-9286175735) at 2023-05-18 11:30 PM PDT -bzzz-coding,3784,SKILLS ISSUE -bzzz-coding,2023-01-04T04:47:22Z,- bzzz-coding opened issue: [3784](https://github.com/hackforla/website/issues/3784) at 2023-01-03 08:47 PM PST -bzzz-coding,2023-01-05T05:23:48Z,- bzzz-coding assigned to issue: [3784](https://github.com/hackforla/website/issues/3784) at 2023-01-04 09:23 PM PST -bzzz-coding,2023-01-05T07:05:34Z,- bzzz-coding assigned to issue: [2874](https://github.com/hackforla/website/issues/2874#issuecomment-1049006759) at 2023-01-04 11:05 PM PST -bzzz-coding,2023-01-05T08:00:45Z,- bzzz-coding opened pull request: [3795](https://github.com/hackforla/website/pull/3795) at 2023-01-05 12:00 AM PST -bzzz-coding,2023-01-09T15:21:03Z,- bzzz-coding pull request merged: [3795](https://github.com/hackforla/website/pull/3795#event-8182898918) at 2023-01-09 07:21 AM PST -bzzz-coding,2023-01-09T19:47:19Z,- bzzz-coding assigned to issue: [2278](https://github.com/hackforla/website/issues/2278#issuecomment-926948584) at 2023-01-09 11:47 AM PST -bzzz-coding,2023-01-09T19:53:12Z,- bzzz-coding commented on issue: [2278](https://github.com/hackforla/website/issues/2278#issuecomment-1376199180) at 2023-01-09 11:53 AM PST -bzzz-coding,2023-01-09T20:19:27Z,- bzzz-coding opened pull request: [3800](https://github.com/hackforla/website/pull/3800) at 2023-01-09 12:19 PM PST -bzzz-coding,2023-01-10T00:11:38Z,- bzzz-coding pull request merged: [3800](https://github.com/hackforla/website/pull/3800#event-8186990702) at 2023-01-09 04:11 PM PST -bzzz-coding,2023-01-10T18:42:35Z,- bzzz-coding assigned to issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1351734938) at 2023-01-10 10:42 AM PST -bzzz-coding,2023-01-10T18:45:20Z,- bzzz-coding commented on issue: [3755](https://github.com/hackforla/website/issues/3755#issuecomment-1377696925) at 2023-01-10 10:45 AM PST -bzzz-coding,2023-01-10T18:47:05Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1377698703) at 2023-01-10 10:47 AM PST -bzzz-coding,2023-01-10T21:09:30Z,- bzzz-coding opened pull request: [3806](https://github.com/hackforla/website/pull/3806) at 2023-01-10 01:09 PM PST -bzzz-coding,2023-01-10T21:26:30Z,- bzzz-coding commented on pull request: [3804](https://github.com/hackforla/website/pull/3804#issuecomment-1377891189) at 2023-01-10 01:26 PM PST -bzzz-coding,2023-01-10T21:39:53Z,- bzzz-coding submitted pull request review: [3804](https://github.com/hackforla/website/pull/3804#pullrequestreview-1243009340) at 2023-01-10 01:39 PM PST -bzzz-coding,2023-01-11T20:16:35Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1379432445) at 2023-01-11 12:16 PM PST -bzzz-coding,2023-01-12T12:34:46Z,- bzzz-coding pull request merged: [3806](https://github.com/hackforla/website/pull/3806#event-8210903191) at 2023-01-12 04:34 AM PST -bzzz-coding,2023-01-12T22:05:10Z,- bzzz-coding assigned to issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1321202216) at 2023-01-12 02:05 PM PST -bzzz-coding,2023-01-12T22:08:15Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1381047079) at 2023-01-12 02:08 PM PST -bzzz-coding,2023-01-13T00:46:02Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1381164332) at 2023-01-12 04:46 PM PST -bzzz-coding,2023-01-13T01:49:25Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1381208287) at 2023-01-12 05:49 PM PST -bzzz-coding,2023-01-13T01:59:20Z,- bzzz-coding commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1381215399) at 2023-01-12 05:59 PM PST -bzzz-coding,2023-01-13T02:11:05Z,- bzzz-coding submitted pull request review: [3811](https://github.com/hackforla/website/pull/3811#pullrequestreview-1246812834) at 2023-01-12 06:11 PM PST -bzzz-coding,2023-01-13T19:50:57Z,- bzzz-coding commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1382321028) at 2023-01-13 11:50 AM PST -bzzz-coding,2023-01-17T17:19:56Z,- bzzz-coding submitted pull request review: [3811](https://github.com/hackforla/website/pull/3811#pullrequestreview-1252079121) at 2023-01-17 09:19 AM PST -bzzz-coding,2023-01-17T17:21:41Z,- bzzz-coding commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1385767530) at 2023-01-17 09:21 AM PST -bzzz-coding,2023-01-18T04:51:34Z,- bzzz-coding opened pull request: [3839](https://github.com/hackforla/website/pull/3839) at 2023-01-17 08:51 PM PST -bzzz-coding,2023-01-18T04:57:42Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1386488681) at 2023-01-17 08:57 PM PST -bzzz-coding,2023-01-19T18:20:10Z,- bzzz-coding commented on pull request: [3841](https://github.com/hackforla/website/pull/3841#issuecomment-1397417205) at 2023-01-19 10:20 AM PST -bzzz-coding,2023-01-19T18:24:33Z,- bzzz-coding submitted pull request review: [3841](https://github.com/hackforla/website/pull/3841#pullrequestreview-1262366952) at 2023-01-19 10:24 AM PST -bzzz-coding,2023-01-22T01:33:16Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1399379706) at 2023-01-21 05:33 PM PST -bzzz-coding,2023-01-23T17:18:44Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1400703596) at 2023-01-23 09:18 AM PST -bzzz-coding,2023-01-25T04:30:34Z,- bzzz-coding commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1403084599) at 2023-01-24 08:30 PM PST -bzzz-coding,2023-02-01T21:06:29Z,- bzzz-coding pull request merged: [3839](https://github.com/hackforla/website/pull/3839#event-8414651432) at 2023-02-01 01:06 PM PST -bzzz-coding,2023-02-02T21:37:54Z,- bzzz-coding commented on pull request: [3924](https://github.com/hackforla/website/pull/3924#issuecomment-1414407651) at 2023-02-02 01:37 PM PST -bzzz-coding,2023-02-02T21:47:44Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1414419681) at 2023-02-02 01:47 PM PST -bzzz-coding,2023-02-02T21:52:12Z,- bzzz-coding commented on pull request: [3926](https://github.com/hackforla/website/pull/3926#issuecomment-1414424089) at 2023-02-02 01:52 PM PST -bzzz-coding,2023-02-02T23:19:18Z,- bzzz-coding submitted pull request review: [3926](https://github.com/hackforla/website/pull/3926#pullrequestreview-1282056948) at 2023-02-02 03:19 PM PST -bzzz-coding,2023-02-02T23:38:13Z,- bzzz-coding submitted pull request review: [3924](https://github.com/hackforla/website/pull/3924#pullrequestreview-1282070221) at 2023-02-02 03:38 PM PST -bzzz-coding,2023-02-02T23:56:03Z,- bzzz-coding commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1414525089) at 2023-02-02 03:56 PM PST -bzzz-coding,2023-02-03T01:28:58Z,- bzzz-coding commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1414588606) at 2023-02-02 05:28 PM PST -bzzz-coding,2023-02-07T02:00:59Z,- bzzz-coding commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1420059286) at 2023-02-06 06:00 PM PST -bzzz-coding,2023-02-07T02:02:47Z,- bzzz-coding commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1420062357) at 2023-02-06 06:02 PM PST -bzzz-coding,2023-02-07T02:21:41Z,- bzzz-coding submitted pull request review: [3927](https://github.com/hackforla/website/pull/3927#pullrequestreview-1286291801) at 2023-02-06 06:21 PM PST -bzzz-coding,2023-02-07T02:51:02Z,- bzzz-coding submitted pull request review: [3923](https://github.com/hackforla/website/pull/3923#pullrequestreview-1286309729) at 2023-02-06 06:51 PM PST -bzzz-coding,2023-02-07T03:09:25Z,- bzzz-coding assigned to issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1399385526) at 2023-02-06 07:09 PM PST -bzzz-coding,2023-02-07T03:12:34Z,- bzzz-coding commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1420135317) at 2023-02-06 07:12 PM PST -bzzz-coding,2023-02-07T18:58:57Z,- bzzz-coding commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1421293131) at 2023-02-07 10:58 AM PST -bzzz-coding,2023-02-10T21:27:14Z,- bzzz-coding commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1426365719) at 2023-02-10 01:27 PM PST -bzzz-coding,2023-02-18T01:58:52Z,- bzzz-coding commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1435449155) at 2023-02-17 05:58 PM PST -bzzz-coding,2023-02-22T18:08:52Z,- bzzz-coding commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1440531851) at 2023-02-22 10:08 AM PST -bzzz-coding,2023-02-23T00:10:08Z,- bzzz-coding submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1310459370) at 2023-02-22 04:10 PM PST -bzzz-coding,2023-02-24T23:23:39Z,- bzzz-coding submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1314375666) at 2023-02-24 03:23 PM PST -bzzz-coding,2023-03-01T03:40:28Z,- bzzz-coding commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1449285028) at 2023-02-28 07:40 PM PST -bzzz-coding,2023-03-04T03:17:33Z,- bzzz-coding commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1454355593) at 2023-03-03 07:17 PM PST -bzzz-coding,2023-03-04T07:51:43Z,- bzzz-coding opened pull request: [4109](https://github.com/hackforla/website/pull/4109) at 2023-03-03 11:51 PM PST -bzzz-coding,2023-03-04T08:34:28Z,- bzzz-coding pull request closed w/o merging: [4109](https://github.com/hackforla/website/pull/4109#event-8665566196) at 2023-03-04 12:34 AM PST -bzzz-coding,2023-03-04T17:53:14Z,- bzzz-coding opened pull request: [4110](https://github.com/hackforla/website/pull/4110) at 2023-03-04 09:53 AM PST -bzzz-coding,2023-03-04T18:06:42Z,- bzzz-coding commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454825805) at 2023-03-04 10:06 AM PST -bzzz-coding,2023-03-05T07:04:05Z,- bzzz-coding commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1455009034) at 2023-03-04 11:04 PM PST -bzzz-coding,2023-03-07T21:30:38Z,- bzzz-coding submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1329566576) at 2023-03-07 01:30 PM PST -bzzz-coding,2023-03-13T22:55:54Z,- bzzz-coding commented on pull request: [4156](https://github.com/hackforla/website/pull/4156#issuecomment-1467086638) at 2023-03-13 03:55 PM PDT -bzzz-coding,2023-03-14T00:23:10Z,- bzzz-coding commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1467160800) at 2023-03-13 05:23 PM PDT -bzzz-coding,2023-03-14T18:32:17Z,- bzzz-coding submitted pull request review: [4156](https://github.com/hackforla/website/pull/4156#pullrequestreview-1340045873) at 2023-03-14 11:32 AM PDT -bzzz-coding,2023-03-15T03:05:01Z,- bzzz-coding commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1469240775) at 2023-03-14 08:05 PM PDT -bzzz-coding,2023-03-15T21:56:20Z,- bzzz-coding submitted pull request review: [4176](https://github.com/hackforla/website/pull/4176#pullrequestreview-1342488709) at 2023-03-15 02:56 PM PDT -bzzz-coding,2023-03-18T23:47:41Z,- bzzz-coding pull request merged: [4110](https://github.com/hackforla/website/pull/4110#event-8786486927) at 2023-03-18 04:47 PM PDT -bzzz-coding,2023-03-24T04:10:25Z,- bzzz-coding assigned to issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482202468) at 2023-03-23 09:10 PM PDT -bzzz-coding,2023-03-24T04:12:57Z,- bzzz-coding commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482224065) at 2023-03-23 09:12 PM PDT -bzzz-coding,2023-03-29T02:24:38Z,- bzzz-coding unassigned from issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482224065) at 2023-03-28 07:24 PM PDT -bzzz-coding,2023-03-29T16:38:29Z,- bzzz-coding commented on pull request: [4338](https://github.com/hackforla/website/pull/4338#issuecomment-1488938084) at 2023-03-29 09:38 AM PDT -bzzz-coding,2023-03-29T19:22:26Z,- bzzz-coding submitted pull request review: [4338](https://github.com/hackforla/website/pull/4338#pullrequestreview-1363800564) at 2023-03-29 12:22 PM PDT -bzzz-coding,2023-03-29T19:39:02Z,- bzzz-coding closed issue by PR 4260: [3860](https://github.com/hackforla/website/issues/3860#event-8880087437) at 2023-03-29 12:39 PM PDT -bzzz-coding,2023-04-03T05:29:26Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1493686693) at 2023-04-02 10:29 PM PDT -bzzz-coding,2023-04-05T17:07:58Z,- bzzz-coding commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1497841175) at 2023-04-05 10:07 AM PDT -bzzz-coding,2023-04-05T19:25:53Z,- bzzz-coding commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1498004446) at 2023-04-05 12:25 PM PDT -bzzz-coding,2023-04-05T19:42:40Z,- bzzz-coding commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498022904) at 2023-04-05 12:42 PM PDT -bzzz-coding,2023-04-05T19:54:43Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498036793) at 2023-04-05 12:54 PM PDT -bzzz-coding,2023-04-05T21:15:30Z,- bzzz-coding submitted pull request review: [4339](https://github.com/hackforla/website/pull/4339#pullrequestreview-1373705403) at 2023-04-05 02:15 PM PDT -bzzz-coding,2023-04-06T04:39:39Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498483038) at 2023-04-05 09:39 PM PDT -bzzz-coding,2023-04-06T17:46:35Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499415338) at 2023-04-06 10:46 AM PDT -bzzz-coding,2023-04-06T21:13:48Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499638391) at 2023-04-06 02:13 PM PDT -bzzz-coding,2023-04-06T21:42:09Z,- bzzz-coding commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499661927) at 2023-04-06 02:42 PM PDT -bzzz-coding,2023-04-06T23:34:18Z,- bzzz-coding submitted pull request review: [4280](https://github.com/hackforla/website/pull/4280#pullrequestreview-1375684165) at 2023-04-06 04:34 PM PDT -bzzz-coding,2023-04-11T23:50:54Z,- bzzz-coding commented on issue: [2652](https://github.com/hackforla/website/issues/2652#issuecomment-1504284051) at 2023-04-11 04:50 PM PDT diff --git a/github-actions/activity-trigger/member_activity_history_bot_3.csv b/github-actions/activity-trigger/member_activity_history_bot_3.csv deleted file mode 100644 index e6af6c6c79..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_3.csv +++ /dev/null @@ -1,5169 +0,0 @@ -username,datetime,message -caz002,8128,SKILLS ISSUE -caz002,2025-05-14T02:42:19Z,- caz002 opened issue: [8128](https://github.com/hackforla/website/issues/8128) at 2025-05-13 07:42 PM PDT -caz002,2025-05-14T02:45:10Z,- caz002 assigned to issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2878467340) at 2025-05-13 07:45 PM PDT -caz002,2025-05-21T02:07:51Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896258337) at 2025-05-20 07:07 PM PDT -caz002,2025-05-21T02:10:10Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896261471) at 2025-05-20 07:10 PM PDT -caz002,2025-05-21T02:12:32Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896264848) at 2025-05-20 07:12 PM PDT -caz002,2025-05-21T02:26:00Z,- caz002 assigned to issue: [7957](https://github.com/hackforla/website/issues/7957) at 2025-05-20 07:26 PM PDT -caz002,2025-05-21T02:48:00Z,- caz002 commented on issue: [7957](https://github.com/hackforla/website/issues/7957#issuecomment-2896403664) at 2025-05-20 07:48 PM PDT -caz002,2025-05-21T03:11:20Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896433774) at 2025-05-20 08:11 PM PDT -caz002,2025-05-21T03:12:01Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896434714) at 2025-05-20 08:12 PM PDT -caz002,2025-05-21T03:24:10Z,- caz002 opened pull request: [8150](https://github.com/hackforla/website/pull/8150) at 2025-05-20 08:24 PM PDT -caz002,2025-05-21T03:27:58Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896452602) at 2025-05-20 08:27 PM PDT -caz002,2025-05-21T03:30:48Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2896455761) at 2025-05-20 08:30 PM PDT -caz002,2025-05-24T06:36:33Z,- caz002 pull request merged: [8150](https://github.com/hackforla/website/pull/8150#event-17799188717) at 2025-05-23 11:36 PM PDT -caz002,2025-05-26T01:06:31Z,- caz002 assigned to issue: [7999](https://github.com/hackforla/website/issues/7999) at 2025-05-25 06:06 PM PDT -caz002,2025-05-26T01:29:15Z,- caz002 commented on issue: [7999](https://github.com/hackforla/website/issues/7999#issuecomment-2908265070) at 2025-05-25 06:29 PM PDT -caz002,2025-05-26T01:37:58Z,- caz002 opened pull request: [8160](https://github.com/hackforla/website/pull/8160) at 2025-05-25 06:37 PM PDT -caz002,2025-05-28T03:09:03Z,- caz002 pull request merged: [8160](https://github.com/hackforla/website/pull/8160#event-17842101478) at 2025-05-27 08:09 PM PDT -caz002,2025-05-28T18:07:02Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2917187818) at 2025-05-28 11:07 AM PDT -caz002,2025-05-28T18:11:57Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2917199630) at 2025-05-28 11:11 AM PDT -caz002,2025-05-28T18:13:00Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2917202123) at 2025-05-28 11:13 AM PDT -caz002,2025-05-28T18:49:59Z,- caz002 commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2917300444) at 2025-05-28 11:49 AM PDT -caz002,2025-06-04T04:04:13Z,- caz002 commented on pull request: [8169](https://github.com/hackforla/website/pull/8169#issuecomment-2938388325) at 2025-06-03 09:04 PM PDT -caz002,2025-06-04T04:38:10Z,- caz002 submitted pull request review: [8169](https://github.com/hackforla/website/pull/8169#pullrequestreview-2895109439) at 2025-06-03 09:38 PM PDT -caz002,2025-06-04T04:43:24Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2938491281) at 2025-06-03 09:43 PM PDT -caz002,2025-06-04T22:45:17Z,- caz002 assigned to issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339270739) at 2025-06-04 03:45 PM PDT -caz002,2025-06-04T22:46:51Z,- caz002 commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2941830504) at 2025-06-04 03:46 PM PDT -caz002,2025-06-05T20:26:27Z,- caz002 opened pull request: [8171](https://github.com/hackforla/website/pull/8171) at 2025-06-05 01:26 PM PDT -caz002,2025-06-06T19:06:14Z,- caz002 pull request merged: [8171](https://github.com/hackforla/website/pull/8171#event-18027595589) at 2025-06-06 12:06 PM PDT -caz002,2025-06-06T19:32:48Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2950485976) at 2025-06-06 12:32 PM PDT -caz002,2025-06-21T00:41:28Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2993200225) at 2025-06-20 05:41 PM PDT -caz002,2025-06-21T22:01:15Z,- caz002 commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2993789765) at 2025-06-21 03:01 PM PDT -caz002,2025-06-21T22:21:51Z,- caz002 commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2993796751) at 2025-06-21 03:21 PM PDT -caz002,2025-06-25T02:38:10Z,- caz002 submitted pull request review: [8199](https://github.com/hackforla/website/pull/8199#pullrequestreview-2956086627) at 2025-06-24 07:38 PM PDT -caz002,2025-06-25T02:52:21Z,- caz002 commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-3002603471) at 2025-06-24 07:52 PM PDT -caz002,2025-06-25T20:55:00Z,- caz002 submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2959635018) at 2025-06-25 01:55 PM PDT -caz002,2025-06-26T06:08:14Z,- caz002 commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3007214341) at 2025-06-25 11:08 PM PDT -caz002,2025-06-26T06:21:08Z,- caz002 submitted pull request review: [8206](https://github.com/hackforla/website/pull/8206#pullrequestreview-2960776803) at 2025-06-25 11:21 PM PDT -caz002,2025-06-26T06:25:45Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007275253) at 2025-06-25 11:25 PM PDT -caz002,2025-06-26T06:26:10Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007276604) at 2025-06-25 11:26 PM PDT -caz002,2025-06-26T06:26:14Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007276884) at 2025-06-25 11:26 PM PDT -caz002,2025-06-26T06:26:18Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3007277212) at 2025-06-25 11:26 PM PDT -caz002,2025-07-02T17:17:00Z,- caz002 submitted pull request review: [8241](https://github.com/hackforla/website/pull/8241#pullrequestreview-2980015457) at 2025-07-02 10:17 AM PDT -caz002,2025-07-02T20:34:49Z,- caz002 commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3029244999) at 2025-07-02 01:34 PM PDT -caz002,2025-07-04T04:15:32Z,- caz002 submitted pull request review: [8241](https://github.com/hackforla/website/pull/8241#pullrequestreview-2985408278) at 2025-07-03 09:15 PM PDT -caz002,2025-07-07T04:48:15Z,- caz002 commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3043465322) at 2025-07-06 09:48 PM PDT -caz002,2025-07-07T17:22:45Z,- caz002 submitted pull request review: [8242](https://github.com/hackforla/website/pull/8242#pullrequestreview-2994764219) at 2025-07-07 10:22 AM PDT -caz002,2025-07-10T06:18:12Z,- caz002 commented on pull request: [8245](https://github.com/hackforla/website/pull/8245#issuecomment-3055757862) at 2025-07-09 11:18 PM PDT -caz002,2025-07-11T00:46:52Z,- caz002 commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3059773548) at 2025-07-10 05:46 PM PDT -caz002,2025-07-11T02:12:12Z,- caz002 submitted pull request review: [8245](https://github.com/hackforla/website/pull/8245#pullrequestreview-3008197256) at 2025-07-10 07:12 PM PDT -caz002,2025-07-11T17:20:22Z,- caz002 commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3063128901) at 2025-07-11 10:20 AM PDT -cbutcher318,2023-02-02T18:30:12Z,- cbutcher318 commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739564) at 2023-02-02 10:30 AM PST -ccelest1,5355,SKILLS ISSUE -ccelest1,2023-08-30T03:49:34Z,- ccelest1 opened issue: [5355](https://github.com/hackforla/website/issues/5355) at 2023-08-29 08:49 PM PDT -ccelest1,2023-08-30T03:49:42Z,- ccelest1 assigned to issue: [5355](https://github.com/hackforla/website/issues/5355) at 2023-08-29 08:49 PM PDT -cchrizzle,6950,SKILLS ISSUE -cchrizzle,2024-06-04T02:58:35Z,- cchrizzle opened issue: [6950](https://github.com/hackforla/website/issues/6950) at 2024-06-03 07:58 PM PDT -cchrizzle,2024-06-04T02:58:45Z,- cchrizzle assigned to issue: [6950](https://github.com/hackforla/website/issues/6950) at 2024-06-03 07:58 PM PDT -cchrizzle,2024-06-10T20:47:55Z,- cchrizzle assigned to issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2156697479) at 2024-06-10 01:47 PM PDT -cchrizzle,2024-06-10T22:37:39Z,- cchrizzle commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2159425989) at 2024-06-10 03:37 PM PDT -cchrizzle,2024-06-12T00:41:35Z,- cchrizzle commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2161851921) at 2024-06-11 05:41 PM PDT -cchrizzle,2024-06-12T17:48:54Z,- cchrizzle opened pull request: [6991](https://github.com/hackforla/website/pull/6991) at 2024-06-12 10:48 AM PDT -cchrizzle,2024-06-12T20:20:55Z,- cchrizzle commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163831551) at 2024-06-12 01:20 PM PDT -cchrizzle,2024-06-13T05:30:49Z,- cchrizzle commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2164426400) at 2024-06-12 10:30 PM PDT -cchrizzle,2024-06-13T23:04:11Z,- cchrizzle commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2166928661) at 2024-06-13 04:04 PM PDT -cchrizzle,2024-06-16T06:13:18Z,- cchrizzle pull request merged: [6991](https://github.com/hackforla/website/pull/6991#event-13173639917) at 2024-06-15 11:13 PM PDT -cchrizzle,2024-06-19T00:40:20Z,- cchrizzle commented on pull request: [7016](https://github.com/hackforla/website/pull/7016#issuecomment-2177309875) at 2024-06-18 05:40 PM PDT -cchrizzle,2024-06-19T00:41:49Z,- cchrizzle submitted pull request review: [7016](https://github.com/hackforla/website/pull/7016#pullrequestreview-2126777559) at 2024-06-18 05:41 PM PDT -cchrizzle,2024-06-24T01:25:28Z,- cchrizzle assigned to issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2183282457) at 2024-06-23 06:25 PM PDT -cchrizzle,2024-06-24T01:52:15Z,- cchrizzle commented on issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2185441890) at 2024-06-23 06:52 PM PDT -cchrizzle,2024-06-25T01:34:06Z,- cchrizzle commented on issue: [7045](https://github.com/hackforla/website/issues/7045#issuecomment-2187751347) at 2024-06-24 06:34 PM PDT -cchrizzle,2024-06-26T03:02:51Z,- cchrizzle assigned to issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2183287422) at 2024-06-25 08:02 PM PDT -cchrizzle,2024-06-27T19:16:45Z,- cchrizzle opened pull request: [7074](https://github.com/hackforla/website/pull/7074) at 2024-06-27 12:16 PM PDT -cchrizzle,2024-06-28T20:05:26Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2197554722) at 2024-06-28 01:05 PM PDT -cchrizzle,2024-06-28T21:44:23Z,- cchrizzle closed issue as completed: [6950](https://github.com/hackforla/website/issues/6950#event-13336773565) at 2024-06-28 02:44 PM PDT -cchrizzle,2024-06-28T21:45:57Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2197699785) at 2024-06-28 02:45 PM PDT -cchrizzle,2024-06-29T08:40:51Z,- cchrizzle pull request merged: [7074](https://github.com/hackforla/website/pull/7074#event-13338755965) at 2024-06-29 01:40 AM PDT -cchrizzle,2024-07-02T00:29:23Z,- cchrizzle commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2201526521) at 2024-07-01 05:29 PM PDT -cchrizzle,2024-07-02T00:49:24Z,- cchrizzle unassigned from issue: [7048](https://github.com/hackforla/website/issues/7048#event-13358067050) at 2024-07-01 05:49 PM PDT -cchrizzle,2024-07-22T21:33:14Z,- cchrizzle commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2243852466) at 2024-07-22 02:33 PM PDT -cchrizzle,2024-07-24T22:18:10Z,- cchrizzle submitted pull request review: [7130](https://github.com/hackforla/website/pull/7130#pullrequestreview-2197883152) at 2024-07-24 03:18 PM PDT -cchrizzle,2024-07-24T22:18:43Z,- cchrizzle commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2248991451) at 2024-07-24 03:18 PM PDT -cchrizzle,2024-07-24T22:25:08Z,- cchrizzle submitted pull request review: [7130](https://github.com/hackforla/website/pull/7130#pullrequestreview-2197889630) at 2024-07-24 03:25 PM PDT -cchrizzle,2024-07-30T19:01:26Z,- cchrizzle submitted pull request review: [7153](https://github.com/hackforla/website/pull/7153#pullrequestreview-2208462388) at 2024-07-30 12:01 PM PDT -cchrizzle,2024-08-07T20:00:49Z,- cchrizzle commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2274249975) at 2024-08-07 01:00 PM PDT -cchrizzle,2024-08-07T22:50:18Z,- cchrizzle submitted pull request review: [7235](https://github.com/hackforla/website/pull/7235#pullrequestreview-2226319921) at 2024-08-07 03:50 PM PDT -cchrizzle,2024-08-26T19:46:45Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2310955160) at 2024-08-26 12:46 PM PDT -cchrizzle,2024-08-26T20:04:05Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2310984554) at 2024-08-26 01:04 PM PDT -cchrizzle,2024-08-26T20:19:30Z,- cchrizzle commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2311012894) at 2024-08-26 01:19 PM PDT -ccortega2023,3783,SKILLS ISSUE -ccortega2023,2023-01-04T04:46:53Z,- ccortega2023 opened issue: [3783](https://github.com/hackforla/website/issues/3783) at 2023-01-03 08:46 PM PST -ccortega2023,2023-01-12T15:30:37Z,- ccortega2023 assigned to issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1375125708) at 2023-01-12 07:30 AM PST -celinalou92,5217,SKILLS ISSUE -celinalou92,2023-08-15T03:00:36Z,- celinalou92 opened issue: [5217](https://github.com/hackforla/website/issues/5217) at 2023-08-14 08:00 PM PDT -celinalou92,2023-08-15T03:00:44Z,- celinalou92 assigned to issue: [5217](https://github.com/hackforla/website/issues/5217) at 2023-08-14 08:00 PM PDT -celinalou92,2023-08-15T23:33:32Z,- celinalou92 commented on issue: [5217](https://github.com/hackforla/website/issues/5217#issuecomment-1679760018) at 2023-08-15 04:33 PM PDT -celinalou92,2023-08-31T17:09:54Z,- celinalou92 commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1701436321) at 2023-08-31 10:09 AM PDT -celinalou92,2023-09-01T01:52:06Z,- celinalou92 submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1605997732) at 2023-08-31 06:52 PM PDT -celinevalentine,2021-07-13T17:01:22Z,- celinevalentine assigned to issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-07-13 10:01 AM PDT -celinevalentine,2021-07-14T06:37:30Z,- celinevalentine opened pull request: [1937](https://github.com/hackforla/website/pull/1937) at 2021-07-13 11:37 PM PDT -celinevalentine,2021-07-14T06:42:28Z,- celinevalentine assigned to issue: [1876](https://github.com/hackforla/website/issues/1876) at 2021-07-13 11:42 PM PDT -celinevalentine,2021-07-15T21:35:29Z,- celinevalentine commented on pull request: [1937](https://github.com/hackforla/website/pull/1937#issuecomment-881028522) at 2021-07-15 02:35 PM PDT -celinevalentine,2021-07-15T22:32:35Z,- celinevalentine opened pull request: [1952](https://github.com/hackforla/website/pull/1952) at 2021-07-15 03:32 PM PDT -celinevalentine,2021-07-16T05:19:42Z,- celinevalentine commented on pull request: [1952](https://github.com/hackforla/website/pull/1952#issuecomment-881184757) at 2021-07-15 10:19 PM PDT -celinevalentine,2021-07-16T05:29:00Z,- celinevalentine closed issue by PR 1952: [1876](https://github.com/hackforla/website/issues/1876#event-5028931577) at 2021-07-15 10:29 PM PDT -celinevalentine,2021-07-16T05:29:20Z,- celinevalentine closed issue by PR 1937: [1581](https://github.com/hackforla/website/issues/1581#event-5028932295) at 2021-07-15 10:29 PM PDT -celinevalentine,2021-07-16T05:55:38Z,- celinevalentine assigned to issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877836926) at 2021-07-15 10:55 PM PDT -celinevalentine,2021-07-16T16:26:49Z,- celinevalentine commented on pull request: [1952](https://github.com/hackforla/website/pull/1952#issuecomment-881570208) at 2021-07-16 09:26 AM PDT -celinevalentine,2021-07-16T21:59:07Z,- celinevalentine pull request merged: [1937](https://github.com/hackforla/website/pull/1937#event-5032992203) at 2021-07-16 02:59 PM PDT -celinevalentine,2021-07-17T18:20:09Z,- celinevalentine pull request merged: [1952](https://github.com/hackforla/website/pull/1952#event-5034322829) at 2021-07-17 11:20 AM PDT -celinevalentine,2021-07-22T04:14:58Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-884645227) at 2021-07-21 09:14 PM PDT -celinevalentine,2021-07-22T04:18:40Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-884646146) at 2021-07-21 09:18 PM PDT -celinevalentine,2021-07-25T07:18:26Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-886158989) at 2021-07-25 12:18 AM PDT -celinevalentine,2021-07-26T06:29:08Z,- celinevalentine commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-886415897) at 2021-07-25 11:29 PM PDT -celinevalentine,2021-07-26T06:39:38Z,- celinevalentine commented on issue: [1916](https://github.com/hackforla/website/issues/1916#issuecomment-886421327) at 2021-07-25 11:39 PM PDT -celinevalentine,2021-07-26T17:54:23Z,- celinevalentine opened pull request: [2011](https://github.com/hackforla/website/pull/2011) at 2021-07-26 10:54 AM PDT -celinevalentine,2021-07-26T17:57:11Z,- celinevalentine commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-886908362) at 2021-07-26 10:57 AM PDT -celinevalentine,2021-07-30T06:44:01Z,- celinevalentine commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-889668767) at 2021-07-29 11:44 PM PDT -celinevalentine,2021-08-21T06:17:17Z,- celinevalentine commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-903067355) at 2021-08-20 11:17 PM PDT -celinevalentine,2021-09-13T07:18:53Z,- celinevalentine commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-917911266) at 2021-09-13 12:18 AM PDT -celinevalentine,2021-10-09T18:34:26Z,- celinevalentine pull request closed w/o merging: [2011](https://github.com/hackforla/website/pull/2011#event-5438425615) at 2021-10-09 11:34 AM PDT -cflemmonds,6830,SKILLS ISSUE -cflemmonds,2024-05-07T03:07:27Z,- cflemmonds opened issue: [6830](https://github.com/hackforla/website/issues/6830) at 2024-05-06 08:07 PM PDT -cflemmonds,2024-05-07T03:07:28Z,- cflemmonds assigned to issue: [6830](https://github.com/hackforla/website/issues/6830) at 2024-05-06 08:07 PM PDT -cflemmonds,2024-05-15T17:58:16Z,- cflemmonds assigned to issue: [6719](https://github.com/hackforla/website/issues/6719) at 2024-05-15 10:58 AM PDT -cflemmonds,2024-05-19T13:23:45Z,- cflemmonds commented on issue: [6719](https://github.com/hackforla/website/issues/6719#issuecomment-2119237804) at 2024-05-19 06:23 AM PDT -cflemmonds,2024-05-19T13:26:22Z,- cflemmonds commented on issue: [6830](https://github.com/hackforla/website/issues/6830#issuecomment-2119238502) at 2024-05-19 06:26 AM PDT -cflemmonds,2024-05-21T12:39:34Z,- cflemmonds closed issue as completed: [6830](https://github.com/hackforla/website/issues/6830#event-12879608143) at 2024-05-21 05:39 AM PDT -cflemmonds,2024-05-30T23:31:31Z,- cflemmonds opened pull request: [6916](https://github.com/hackforla/website/pull/6916) at 2024-05-30 04:31 PM PDT -cflemmonds,2024-06-06T22:28:03Z,- cflemmonds commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153502653) at 2024-06-06 03:28 PM PDT -cflemmonds,2024-06-10T22:26:32Z,- cflemmonds commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2159412986) at 2024-06-10 03:26 PM PDT -cflemmonds,2024-06-12T22:03:01Z,- cflemmonds commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2163976068) at 2024-06-12 03:03 PM PDT -cflemmonds,2024-06-13T19:14:10Z,- cflemmonds pull request merged: [6916](https://github.com/hackforla/website/pull/6916#event-13151722171) at 2024-06-13 12:14 PM PDT -CforED,2023-01-09T03:39:39Z,- CforED commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1375068737) at 2023-01-08 07:39 PM PST -chalimar,2020-03-18T02:31:56Z,- chalimar commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600393251) at 2020-03-17 07:31 PM PDT -charliepsheppard,5484,SKILLS ISSUE -charliepsheppard,2023-09-12T03:28:19Z,- charliepsheppard opened issue: [5484](https://github.com/hackforla/website/issues/5484) at 2023-09-11 08:28 PM PDT -charliepsheppard,2023-09-12T03:29:37Z,- charliepsheppard assigned to issue: [5484](https://github.com/hackforla/website/issues/5484#issuecomment-1714908313) at 2023-09-11 08:29 PM PDT -charlin99,2023-11-06T19:35:43Z,- charlin99 opened pull request: [5859](https://github.com/hackforla/website/pull/5859) at 2023-11-06 11:35 AM PST -charlin99,2023-11-06T19:49:58Z,- charlin99 pull request closed w/o merging: [5859](https://github.com/hackforla/website/pull/5859#event-10877836264) at 2023-11-06 11:49 AM PST -charlottesauce,2020-01-12T19:58:40Z,- charlottesauce assigned to issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573451086) at 2020-01-12 11:58 AM PST -charlottesauce,2020-01-13T08:26:11Z,- charlottesauce commented on issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573554594) at 2020-01-13 12:26 AM PST -charlottesauce,2020-01-13T08:34:16Z,- charlottesauce commented on issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573557238) at 2020-01-13 12:34 AM PST -charlottesauce,2020-01-19T18:30:18Z,- charlottesauce closed issue as completed: [260](https://github.com/hackforla/website/issues/260#event-2961065173) at 2020-01-19 10:30 AM PST -charlottesauce,2020-01-28T09:29:02Z,- charlottesauce assigned to issue: [272](https://github.com/hackforla/website/issues/272) at 2020-01-28 01:29 AM PST -charlottesauce,2020-01-29T04:04:40Z,- charlottesauce commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-579581805) at 2020-01-28 08:04 PM PST -charlottesauce,2020-01-31T01:18:21Z,- charlottesauce commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-580537610) at 2020-01-30 05:18 PM PST -charlottesauce,2020-02-07T01:24:16Z,- charlottesauce assigned to issue: [301](https://github.com/hackforla/website/issues/301) at 2020-02-06 05:24 PM PST -charlottesauce,2020-02-07T03:07:55Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583213269) at 2020-02-06 07:07 PM PST -charlottesauce,2020-02-08T06:58:29Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583710123) at 2020-02-07 10:58 PM PST -charlottesauce,2020-02-08T08:26:15Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583715637) at 2020-02-08 12:26 AM PST -charlottesauce,2020-02-09T18:31:47Z,- charlottesauce closed issue as completed: [272](https://github.com/hackforla/website/issues/272#event-3020782379) at 2020-02-09 10:31 AM PST -charlottesauce,2020-02-10T04:26:03Z,- charlottesauce closed issue by PR 300: [301](https://github.com/hackforla/website/issues/301#event-3021277469) at 2020-02-09 08:26 PM PST -charlottesauce,2020-03-04T06:55:08Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-594357599) at 2020-03-03 10:55 PM PST -charlottesauce,2020-03-04T06:55:08Z,- charlottesauce reopened issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-594357599) at 2020-03-03 10:55 PM PST -charlottesauce,2020-03-04T06:56:11Z,- charlottesauce commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-594357915) at 2020-03-03 10:56 PM PST -charlottesauce,2020-03-24T03:21:59Z,- charlottesauce opened pull request: [389](https://github.com/hackforla/website/pull/389) at 2020-03-23 08:21 PM PDT -charlottesauce,2020-03-26T06:02:30Z,- charlottesauce pull request merged: [389](https://github.com/hackforla/website/pull/389#event-3166815272) at 2020-03-25 11:02 PM PDT -charlottesauce,2020-04-09T22:26:17Z,- charlottesauce opened pull request: [420](https://github.com/hackforla/website/pull/420) at 2020-04-09 03:26 PM PDT -charlottesauce,2020-04-10T05:22:56Z,- charlottesauce pull request merged: [420](https://github.com/hackforla/website/pull/420#event-3220814227) at 2020-04-09 10:22 PM PDT -charlottesauce,2020-04-14T02:29:11Z,- charlottesauce commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-613191864) at 2020-04-13 07:29 PM PDT -charlottesauce,2020-04-14T03:13:15Z,- charlottesauce opened pull request: [437](https://github.com/hackforla/website/pull/437) at 2020-04-13 08:13 PM PDT -charlottesauce,2020-04-14T03:31:49Z,- charlottesauce opened pull request: [438](https://github.com/hackforla/website/pull/438) at 2020-04-13 08:31 PM PDT -charlottesauce,2020-04-14T03:41:52Z,- charlottesauce opened pull request: [439](https://github.com/hackforla/website/pull/439) at 2020-04-13 08:41 PM PDT -charlottesauce,2020-04-15T03:09:45Z,- charlottesauce pull request merged: [437](https://github.com/hackforla/website/pull/437#event-3233652606) at 2020-04-14 08:09 PM PDT -charlottesauce,2020-04-15T04:11:11Z,- charlottesauce pull request closed w/o merging: [439](https://github.com/hackforla/website/pull/439#event-3233759416) at 2020-04-14 09:11 PM PDT -charlottesauce,2020-04-15T04:11:29Z,- charlottesauce pull request closed w/o merging: [438](https://github.com/hackforla/website/pull/438#event-3233759864) at 2020-04-14 09:11 PM PDT -charlottesauce,2020-04-17T23:38:50Z,- charlottesauce opened pull request: [441](https://github.com/hackforla/website/pull/441) at 2020-04-17 04:38 PM PDT -charlottesauce,2020-04-19T16:29:32Z,- charlottesauce closed issue by PR 300: [301](https://github.com/hackforla/website/issues/301#event-3249231765) at 2020-04-19 09:29 AM PDT -charlottesauce,2020-04-19T16:52:21Z,- charlottesauce pull request merged: [441](https://github.com/hackforla/website/pull/441#event-3249253521) at 2020-04-19 09:52 AM PDT -charlottesauce,2020-04-19T20:56:39Z,- charlottesauce opened pull request: [447](https://github.com/hackforla/website/pull/447) at 2020-04-19 01:56 PM PDT -charlottesauce,2020-04-19T20:57:19Z,- charlottesauce commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616224025) at 2020-04-19 01:57 PM PDT -charlottesauce,2020-04-19T22:01:29Z,- charlottesauce commented on pull request: [447](https://github.com/hackforla/website/pull/447#issuecomment-616232103) at 2020-04-19 03:01 PM PDT -charlottesauce,2020-04-20T15:58:56Z,- charlottesauce pull request merged: [447](https://github.com/hackforla/website/pull/447#event-3252441884) at 2020-04-20 08:58 AM PDT -charmainemak09,2025-05-07T20:04:34Z,- charmainemak09 assigned to issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2715701442) at 2025-05-07 01:04 PM PDT -charmainemak09,2025-05-07T21:07:59Z,- charmainemak09 assigned to issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2715632987) at 2025-05-07 02:07 PM PDT -charmainemak09,2025-05-07T21:08:16Z,- charmainemak09 assigned to issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2749442492) at 2025-05-07 02:08 PM PDT -charmainemak09,2025-06-11T20:07:10Z,- charmainemak09 unassigned from issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2917519652) at 2025-06-11 01:07 PM PDT -charmainemak09,2025-06-11T20:32:17Z,- charmainemak09 unassigned from issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2964070445) at 2025-06-11 01:32 PM PDT -chelseybeck,2021-08-15T18:48:42Z,- chelseybeck assigned to issue: [2071](https://github.com/hackforla/website/issues/2071#issuecomment-894839590) at 2021-08-15 11:48 AM PDT -chelseybeck,2024-01-25T16:11:09Z,- chelseybeck opened issue: [6159](https://github.com/hackforla/website/issues/6159) at 2024-01-25 08:11 AM PST -chelseybeck,2024-01-25T16:56:40Z,- chelseybeck opened issue: [6160](https://github.com/hackforla/website/issues/6160) at 2024-01-25 08:56 AM PST -chelseybeck,2024-01-26T03:16:09Z,- chelseybeck opened issue: [6183](https://github.com/hackforla/website/issues/6183) at 2024-01-25 07:16 PM PST -chelseybeck,2024-01-27T04:03:08Z,- chelseybeck assigned to issue: [6166](https://github.com/hackforla/website/issues/6166) at 2024-01-26 08:03 PM PST -chelseybeck,2024-01-27T04:29:03Z,- chelseybeck opened pull request: [6186](https://github.com/hackforla/website/pull/6186) at 2024-01-26 08:29 PM PST -chelseybeck,2024-01-27T04:38:12Z,- chelseybeck commented on issue: [6166](https://github.com/hackforla/website/issues/6166#issuecomment-1912983972) at 2024-01-26 08:38 PM PST -chelseybeck,2024-01-27T05:57:28Z,- chelseybeck commented on pull request: [6151](https://github.com/hackforla/website/pull/6151#issuecomment-1913019633) at 2024-01-26 09:57 PM PST -chelseybeck,2024-01-27T06:05:47Z,- chelseybeck submitted pull request review: [6151](https://github.com/hackforla/website/pull/6151#pullrequestreview-1846890247) at 2024-01-26 10:05 PM PST -chelseybeck,2024-01-28T16:58:15Z,- chelseybeck pull request merged: [6186](https://github.com/hackforla/website/pull/6186#event-11620442446) at 2024-01-28 08:58 AM PST -chelseybeck,2024-01-29T17:07:13Z,- chelseybeck commented on issue: [6159](https://github.com/hackforla/website/issues/6159#issuecomment-1915186209) at 2024-01-29 09:07 AM PST -chelseybeck,2024-02-19T00:35:08Z,- chelseybeck commented on issue: [6183](https://github.com/hackforla/website/issues/6183#issuecomment-1951510486) at 2024-02-18 04:35 PM PST -chelseybeck,2024-02-19T00:35:22Z,- chelseybeck commented on issue: [6160](https://github.com/hackforla/website/issues/6160#issuecomment-1951510583) at 2024-02-18 04:35 PM PST -chelseybeck,2024-02-22T03:16:04Z,- chelseybeck opened issue: [6354](https://github.com/hackforla/website/issues/6354) at 2024-02-21 07:16 PM PST -chelseybeck,2025-02-13T03:18:38Z,- chelseybeck opened issue: [7905](https://github.com/hackforla/website/issues/7905) at 2025-02-12 07:18 PM PST -cherrijeong,2021-05-18T02:56:05Z,- cherrijeong assigned to issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-17 07:56 PM PDT -cherrijeong,2021-05-21T06:04:00Z,- cherrijeong assigned to issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-845517626) at 2021-05-20 11:04 PM PDT -cherrijeong,2021-05-23T10:09:27Z,- cherrijeong unassigned from issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-23 03:09 AM PDT -cherrijeong,2021-05-23T16:55:17Z,- cherrijeong commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-846593215) at 2021-05-23 09:55 AM PDT -cherrijeong,2021-05-30T08:46:36Z,- cherrijeong commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-850964576) at 2021-05-30 01:46 AM PDT -cherrijeong,2021-06-02T03:25:27Z,- cherrijeong assigned to issue: [1672](https://github.com/hackforla/website/issues/1672) at 2021-06-01 08:25 PM PDT -cherrijeong,2021-06-04T17:19:10Z,- cherrijeong commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-854886354) at 2021-06-04 10:19 AM PDT -Chetana16032002,2021-10-08T05:06:49Z,- Chetana16032002 commented on issue: [2345](https://github.com/hackforla/website/issues/2345#issuecomment-938347230) at 2021-10-07 10:06 PM PDT -Chetana16032002,2021-10-08T05:09:19Z,- Chetana16032002 opened pull request: [2350](https://github.com/hackforla/website/pull/2350) at 2021-10-07 10:09 PM PDT -Chetana16032002,2021-10-20T03:39:32Z,- Chetana16032002 commented on pull request: [2350](https://github.com/hackforla/website/pull/2350#issuecomment-947297612) at 2021-10-19 08:39 PM PDT -Chetana16032002,2021-10-20T04:52:11Z,- Chetana16032002 opened pull request: [2378](https://github.com/hackforla/website/pull/2378) at 2021-10-19 09:52 PM PDT -Chetana16032002,2021-10-20T04:54:43Z,- Chetana16032002 commented on pull request: [2378](https://github.com/hackforla/website/pull/2378#issuecomment-947327758) at 2021-10-19 09:54 PM PDT -Chetana16032002,2021-10-20T04:58:06Z,- Chetana16032002 commented on pull request: [2350](https://github.com/hackforla/website/pull/2350#issuecomment-947328857) at 2021-10-19 09:58 PM PDT -Chetana16032002,2021-10-20T04:58:16Z,- Chetana16032002 pull request closed w/o merging: [2350](https://github.com/hackforla/website/pull/2350#event-5489276006) at 2021-10-19 09:58 PM PDT -Chetana16032002,2021-10-20T15:24:44Z,- Chetana16032002 assigned to issue: [2345](https://github.com/hackforla/website/issues/2345#issuecomment-939337477) at 2021-10-20 08:24 AM PDT -Chetana16032002,2021-10-20T15:34:55Z,- Chetana16032002 pull request merged: [2378](https://github.com/hackforla/website/pull/2378#event-5492833200) at 2021-10-20 08:34 AM PDT -chrisfoose,2021-10-20T02:53:46Z,- chrisfoose assigned to issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-10-19 07:53 PM PDT -chrisfoose,2021-10-21T03:49:27Z,- chrisfoose opened pull request: [2387](https://github.com/hackforla/website/pull/2387) at 2021-10-20 08:49 PM PDT -chrisfoose,2021-10-22T21:48:14Z,- chrisfoose commented on pull request: [2387](https://github.com/hackforla/website/pull/2387#issuecomment-949977983) at 2021-10-22 02:48 PM PDT -chrisfoose,2021-10-22T23:08:27Z,- chrisfoose pull request merged: [2387](https://github.com/hackforla/website/pull/2387#event-5507466899) at 2021-10-22 04:08 PM PDT -chrisfoose,2021-10-27T21:31:07Z,- chrisfoose assigned to issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-950400542) at 2021-10-27 02:31 PM PDT -chrisfoose,2021-10-27T21:36:47Z,- chrisfoose opened pull request: [2404](https://github.com/hackforla/website/pull/2404) at 2021-10-27 02:36 PM PDT -chrisfoose,2021-10-27T22:27:46Z,- chrisfoose pull request closed w/o merging: [2404](https://github.com/hackforla/website/pull/2404#event-5530470470) at 2021-10-27 03:27 PM PDT -chrisfoose,2021-11-10T00:01:16Z,- chrisfoose opened pull request: [2467](https://github.com/hackforla/website/pull/2467) at 2021-11-09 04:01 PM PST -chrisfoose,2021-11-10T19:08:31Z,- chrisfoose opened pull request: [2470](https://github.com/hackforla/website/pull/2470) at 2021-11-10 11:08 AM PST -chrisfoose,2021-11-10T19:10:24Z,- chrisfoose pull request closed w/o merging: [2467](https://github.com/hackforla/website/pull/2467#event-5599358769) at 2021-11-10 11:10 AM PST -chrisfoose,2021-11-17T16:37:19Z,- chrisfoose pull request merged: [2470](https://github.com/hackforla/website/pull/2470#event-5633178147) at 2021-11-17 08:37 AM PST -chrisfoose,2021-11-17T22:38:02Z,- chrisfoose commented on issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-972175551) at 2021-11-17 02:38 PM PST -ChrisKildunne,5864,SKILLS ISSUE -ChrisKildunne,2023-11-07T03:59:03Z,- ChrisKildunne opened issue: [5864](https://github.com/hackforla/website/issues/5864) at 2023-11-06 07:59 PM PST -ChrisKildunne,2023-11-07T04:04:13Z,- ChrisKildunne assigned to issue: [5864](https://github.com/hackforla/website/issues/5864#issuecomment-1797710751) at 2023-11-06 08:04 PM PST -ChrisKildunne,2023-11-08T02:35:52Z,- ChrisKildunne assigned to issue: [5752](https://github.com/hackforla/website/issues/5752) at 2023-11-07 06:35 PM PST -ChrisKildunne,2023-11-08T03:02:09Z,- ChrisKildunne opened pull request: [5884](https://github.com/hackforla/website/pull/5884) at 2023-11-07 07:02 PM PST -ChrisKildunne,2023-11-08T03:06:02Z,- ChrisKildunne commented on issue: [5752](https://github.com/hackforla/website/issues/5752#issuecomment-1800937843) at 2023-11-07 07:06 PM PST -ChrisKildunne,2023-11-08T16:40:19Z,- ChrisKildunne commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1802263409) at 2023-11-08 08:40 AM PST -ChrisKildunne,2023-11-10T03:08:29Z,- ChrisKildunne assigned to issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480406046) at 2023-11-09 07:08 PM PST -ChrisKildunne,2023-11-10T16:25:47Z,- ChrisKildunne commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1806039728) at 2023-11-10 08:25 AM PST -ChrisKildunne,2023-11-10T18:51:13Z,- ChrisKildunne commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1806268820) at 2023-11-10 10:51 AM PST -ChrisKildunne,2023-11-13T03:08:42Z,- ChrisKildunne unassigned from issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1805006007) at 2023-11-12 07:08 PM PST -ChrisKildunne,2023-11-13T05:59:33Z,- ChrisKildunne pull request closed w/o merging: [5884](https://github.com/hackforla/website/pull/5884#event-10937361941) at 2023-11-12 09:59 PM PST -ChrisKildunne,2023-11-13T06:16:14Z,- ChrisKildunne opened pull request: [5894](https://github.com/hackforla/website/pull/5894) at 2023-11-12 10:16 PM PST -ChrisKildunne,2023-11-15T01:36:39Z,- ChrisKildunne pull request merged: [5894](https://github.com/hackforla/website/pull/5894#event-10961867447) at 2023-11-14 05:36 PM PST -ChrisKildunne,2023-11-16T18:59:43Z,- ChrisKildunne closed issue as completed: [5895](https://github.com/hackforla/website/issues/5895#event-10984924341) at 2023-11-16 10:59 AM PST -ChrisKildunne,2023-11-16T19:00:42Z,- ChrisKildunne assigned to issue: [5693](https://github.com/hackforla/website/issues/5693) at 2023-11-16 11:00 AM PST -ChrisKildunne,2023-11-16T19:18:55Z,- ChrisKildunne opened pull request: [5913](https://github.com/hackforla/website/pull/5913) at 2023-11-16 11:18 AM PST -ChrisKildunne,2023-11-16T19:20:18Z,- ChrisKildunne commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1815167035) at 2023-11-16 11:20 AM PST -ChrisKildunne,2023-11-20T00:06:11Z,- ChrisKildunne commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1818025173) at 2023-11-19 04:06 PM PST -ChrisKildunne,2023-11-20T17:55:14Z,- ChrisKildunne commented on issue: [5693](https://github.com/hackforla/website/issues/5693#issuecomment-1819547334) at 2023-11-20 09:55 AM PST -ChrisKildunne,2023-11-20T17:57:01Z,- ChrisKildunne commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1819549841) at 2023-11-20 09:57 AM PST -ChrisKildunne,2023-11-28T21:56:08Z,- ChrisKildunne pull request closed w/o merging: [5913](https://github.com/hackforla/website/pull/5913#event-11089206093) at 2023-11-28 01:56 PM PST -ChrisKildunne,2023-11-28T22:31:47Z,- ChrisKildunne opened pull request: [5941](https://github.com/hackforla/website/pull/5941) at 2023-11-28 02:31 PM PST -ChrisKildunne,2023-11-28T22:34:23Z,- ChrisKildunne commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1830866179) at 2023-11-28 02:34 PM PST -ChrisKildunne,2023-11-28T22:49:26Z,- ChrisKildunne commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1830881750) at 2023-11-28 02:49 PM PST -ChrisKildunne,2023-11-30T00:05:49Z,- ChrisKildunne pull request merged: [5941](https://github.com/hackforla/website/pull/5941#event-11102718285) at 2023-11-29 04:05 PM PST -ChrisKildunne,2023-11-30T23:27:31Z,- ChrisKildunne assigned to issue: [5716](https://github.com/hackforla/website/issues/5716#issuecomment-1764348660) at 2023-11-30 03:27 PM PST -ChrisKildunne,2023-11-30T23:49:33Z,- ChrisKildunne commented on issue: [5716](https://github.com/hackforla/website/issues/5716#issuecomment-1834874449) at 2023-11-30 03:49 PM PST -ChrisKildunne,2023-12-01T00:26:44Z,- ChrisKildunne opened pull request: [5952](https://github.com/hackforla/website/pull/5952) at 2023-11-30 04:26 PM PST -ChrisKildunne,2023-12-01T20:27:20Z,- ChrisKildunne assigned to issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1752028829) at 2023-12-01 12:27 PM PST -ChrisKildunne,2023-12-01T20:31:34Z,- ChrisKildunne commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1836738298) at 2023-12-01 12:31 PM PST -ChrisKildunne,2023-12-01T20:33:53Z,- ChrisKildunne opened pull request: [5954](https://github.com/hackforla/website/pull/5954) at 2023-12-01 12:33 PM PST -ChrisKildunne,2023-12-02T15:10:16Z,- ChrisKildunne unassigned from issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837177555) at 2023-12-02 07:10 AM PST -ChrisKildunne,2023-12-02T15:10:38Z,- ChrisKildunne pull request closed w/o merging: [5954](https://github.com/hackforla/website/pull/5954#event-11129178717) at 2023-12-02 07:10 AM PST -ChrisKildunne,2023-12-02T16:54:52Z,- ChrisKildunne commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837201711) at 2023-12-02 08:54 AM PST -ChrisKildunne,2023-12-02T18:38:11Z,- ChrisKildunne pull request merged: [5952](https://github.com/hackforla/website/pull/5952#event-11129555330) at 2023-12-02 10:38 AM PST -ChrisKildunne,2023-12-12T17:39:40Z,- ChrisKildunne closed issue as completed: [5864](https://github.com/hackforla/website/issues/5864#event-11226843851) at 2023-12-12 09:39 AM PST -Chrisklangley,5729,SKILLS ISSUE -Chrisklangley,2023-10-17T03:38:02Z,- Chrisklangley opened issue: [5729](https://github.com/hackforla/website/issues/5729) at 2023-10-16 08:38 PM PDT -Chrisklangley,2023-10-17T03:38:02Z,- Chrisklangley assigned to issue: [5729](https://github.com/hackforla/website/issues/5729) at 2023-10-16 08:38 PM PDT -Chrisklangley,2023-10-17T03:54:10Z,- Chrisklangley commented on issue: [5729](https://github.com/hackforla/website/issues/5729#issuecomment-1765621863) at 2023-10-16 08:54 PM PDT -Chrisklangley,2023-10-17T03:55:32Z,- Chrisklangley commented on issue: [5729](https://github.com/hackforla/website/issues/5729#issuecomment-1765622641) at 2023-10-16 08:55 PM PDT -Chrisklangley,2023-10-20T02:47:34Z,- Chrisklangley assigned to issue: [5620](https://github.com/hackforla/website/issues/5620) at 2023-10-19 07:47 PM PDT -Chrisklangley,2023-10-20T03:18:02Z,- Chrisklangley closed issue as completed: [5729](https://github.com/hackforla/website/issues/5729#event-10719236743) at 2023-10-19 08:18 PM PDT -Chrisklangley,2023-10-20T21:48:27Z,- Chrisklangley commented on issue: [5620](https://github.com/hackforla/website/issues/5620#issuecomment-1773435053) at 2023-10-20 02:48 PM PDT -Chrisklangley,2023-10-20T21:50:00Z,- Chrisklangley opened pull request: [5745](https://github.com/hackforla/website/pull/5745) at 2023-10-20 02:50 PM PDT -Chrisklangley,2023-10-22T19:12:48Z,- Chrisklangley pull request closed w/o merging: [5745](https://github.com/hackforla/website/pull/5745#event-10733849601) at 2023-10-22 12:12 PM PDT -Chrisklangley,2023-10-22T19:39:03Z,- Chrisklangley opened pull request: [5765](https://github.com/hackforla/website/pull/5765) at 2023-10-22 12:39 PM PDT -Chrisklangley,2023-10-23T01:53:48Z,- Chrisklangley closed issue by PR 5765: [5620](https://github.com/hackforla/website/issues/5620#event-10734836262) at 2023-10-22 06:53 PM PDT -Chrisklangley,2023-10-23T03:27:08Z,- Chrisklangley pull request merged: [5765](https://github.com/hackforla/website/pull/5765#event-10735298724) at 2023-10-22 08:27 PM PDT -Chrisklangley,2023-10-26T01:04:27Z,- Chrisklangley commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1780259691) at 2023-10-25 06:04 PM PDT -Chrisklangley,2023-10-26T01:18:43Z,- Chrisklangley submitted pull request review: [5771](https://github.com/hackforla/website/pull/5771#pullrequestreview-1698576622) at 2023-10-25 06:18 PM PDT -Chrisklangley,2023-10-26T01:29:26Z,- Chrisklangley assigned to issue: [5759](https://github.com/hackforla/website/issues/5759) at 2023-10-25 06:29 PM PDT -Chrisklangley,2023-10-26T01:31:29Z,- Chrisklangley commented on issue: [5759](https://github.com/hackforla/website/issues/5759#issuecomment-1780277687) at 2023-10-25 06:31 PM PDT -Chrisklangley,2023-10-27T21:37:08Z,- Chrisklangley opened pull request: [5789](https://github.com/hackforla/website/pull/5789) at 2023-10-27 02:37 PM PDT -Chrisklangley,2023-10-27T21:51:22Z,- Chrisklangley commented on pull request: [5785](https://github.com/hackforla/website/pull/5785#issuecomment-1783549638) at 2023-10-27 02:51 PM PDT -Chrisklangley,2023-10-27T22:34:55Z,- Chrisklangley submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1702617345) at 2023-10-27 03:34 PM PDT -Chrisklangley,2023-10-29T17:50:02Z,- Chrisklangley pull request merged: [5789](https://github.com/hackforla/website/pull/5789#event-10800309855) at 2023-10-29 10:50 AM PDT -Chrisklangley,2023-11-09T01:34:26Z,- Chrisklangley assigned to issue: [5854](https://github.com/hackforla/website/issues/5854) at 2023-11-08 05:34 PM PST -Chrisklangley,2023-11-09T18:48:34Z,- Chrisklangley commented on issue: [5854](https://github.com/hackforla/website/issues/5854#issuecomment-1804387064) at 2023-11-09 10:48 AM PST -Chrisklangley,2023-11-09T20:07:55Z,- Chrisklangley opened pull request: [5889](https://github.com/hackforla/website/pull/5889) at 2023-11-09 12:07 PM PST -Chrisklangley,2023-11-15T19:29:59Z,- Chrisklangley commented on pull request: [5907](https://github.com/hackforla/website/pull/5907#issuecomment-1813133984) at 2023-11-15 11:29 AM PST -Chrisklangley,2023-11-15T19:57:22Z,- Chrisklangley submitted pull request review: [5907](https://github.com/hackforla/website/pull/5907#pullrequestreview-1732844552) at 2023-11-15 11:57 AM PST -Chrisklangley,2023-11-16T04:11:41Z,- Chrisklangley commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1813761434) at 2023-11-15 08:11 PM PST -Chrisklangley,2023-11-18T01:41:51Z,- Chrisklangley commented on pull request: [5917](https://github.com/hackforla/website/pull/5917#issuecomment-1817314757) at 2023-11-17 05:41 PM PST -Chrisklangley,2023-11-18T02:17:37Z,- Chrisklangley submitted pull request review: [5917](https://github.com/hackforla/website/pull/5917#pullrequestreview-1738164083) at 2023-11-17 06:17 PM PST -Chrisklangley,2023-11-19T00:59:52Z,- Chrisklangley submitted pull request review: [5908](https://github.com/hackforla/website/pull/5908#pullrequestreview-1738518882) at 2023-11-18 04:59 PM PST -Chrisklangley,2023-11-19T19:11:25Z,- Chrisklangley commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1817949328) at 2023-11-19 11:11 AM PST -Chrisklangley,2023-11-19T22:05:19Z,- Chrisklangley pull request merged: [5889](https://github.com/hackforla/website/pull/5889#event-11004706677) at 2023-11-19 02:05 PM PST -Chrisklangley,2023-11-22T02:49:24Z,- Chrisklangley commented on pull request: [5918](https://github.com/hackforla/website/pull/5918#issuecomment-1822005763) at 2023-11-21 06:49 PM PST -Chrisklangley,2023-11-22T02:49:48Z,- Chrisklangley commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1822006054) at 2023-11-21 06:49 PM PST -Chrisklangley,2023-11-22T03:34:21Z,- Chrisklangley submitted pull request review: [5914](https://github.com/hackforla/website/pull/5914#pullrequestreview-1743492115) at 2023-11-21 07:34 PM PST -Chrisklangley,2023-11-22T03:51:43Z,- Chrisklangley submitted pull request review: [5918](https://github.com/hackforla/website/pull/5918#pullrequestreview-1743518178) at 2023-11-21 07:51 PM PST -Chrisklangley,2023-11-24T19:56:25Z,- Chrisklangley submitted pull request review: [5928](https://github.com/hackforla/website/pull/5928#pullrequestreview-1748388895) at 2023-11-24 11:56 AM PST -Chrisklangley,2023-11-26T23:46:49Z,- Chrisklangley submitted pull request review: [5914](https://github.com/hackforla/website/pull/5914#pullrequestreview-1749451953) at 2023-11-26 03:46 PM PST -Chrisklangley,2023-11-27T00:18:02Z,- Chrisklangley assigned to issue: [5831](https://github.com/hackforla/website/issues/5831#issuecomment-1791990110) at 2023-11-26 04:18 PM PST -Chrisklangley,2023-11-27T00:26:02Z,- Chrisklangley commented on issue: [5831](https://github.com/hackforla/website/issues/5831#issuecomment-1826958780) at 2023-11-26 04:26 PM PST -Chrisklangley,2023-12-14T22:37:04Z,- Chrisklangley opened pull request: [6007](https://github.com/hackforla/website/pull/6007) at 2023-12-14 02:37 PM PST -Chrisklangley,2023-12-18T08:53:42Z,- Chrisklangley pull request closed w/o merging: [6007](https://github.com/hackforla/website/pull/6007#event-11273492093) at 2023-12-18 12:53 AM PST -Chrisklangley,2023-12-21T01:27:43Z,- Chrisklangley assigned to issue: [5984](https://github.com/hackforla/website/issues/5984) at 2023-12-20 05:27 PM PST -Chrisklangley,2024-01-04T00:46:04Z,- Chrisklangley unassigned from issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-1865349657) at 2024-01-03 04:46 PM PST -Chrisklangley,2024-01-04T01:59:58Z,- Chrisklangley submitted pull request review: [6056](https://github.com/hackforla/website/pull/6056#pullrequestreview-1803328366) at 2024-01-03 05:59 PM PST -Chrisklangley,2024-01-12T21:47:37Z,- Chrisklangley commented on pull request: [6100](https://github.com/hackforla/website/pull/6100#issuecomment-1889991685) at 2024-01-12 01:47 PM PST -Chrisklangley,2024-01-16T16:15:30Z,- Chrisklangley submitted pull request review: [6100](https://github.com/hackforla/website/pull/6100#pullrequestreview-1823989495) at 2024-01-16 08:15 AM PST -Chrisklangley,2024-01-27T01:49:49Z,- Chrisklangley assigned to issue: [6137](https://github.com/hackforla/website/issues/6137#issuecomment-1902655220) at 2024-01-26 05:49 PM PST -Chrisklangley,2024-01-27T01:53:44Z,- Chrisklangley commented on issue: [6137](https://github.com/hackforla/website/issues/6137#issuecomment-1912909870) at 2024-01-26 05:53 PM PST -Chrisklangley,2024-01-29T21:21:41Z,- Chrisklangley opened pull request: [6194](https://github.com/hackforla/website/pull/6194) at 2024-01-29 01:21 PM PST -Chrisklangley,2024-01-29T22:35:46Z,- Chrisklangley commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1915695045) at 2024-01-29 02:35 PM PST -Chrisklangley,2024-01-29T22:48:54Z,- Chrisklangley submitted pull request review: [6190](https://github.com/hackforla/website/pull/6190#pullrequestreview-1849918089) at 2024-01-29 02:48 PM PST -Chrisklangley,2024-01-30T21:03:43Z,- Chrisklangley assigned to issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1848917244) at 2024-01-30 01:03 PM PST -Chrisklangley,2024-01-31T03:04:34Z,- Chrisklangley commented on pull request: [6198](https://github.com/hackforla/website/pull/6198#issuecomment-1918299040) at 2024-01-30 07:04 PM PST -Chrisklangley,2024-01-31T03:06:44Z,- Chrisklangley commented on pull request: [6197](https://github.com/hackforla/website/pull/6197#issuecomment-1918300729) at 2024-01-30 07:06 PM PST -Chrisklangley,2024-01-31T03:18:25Z,- Chrisklangley pull request merged: [6194](https://github.com/hackforla/website/pull/6194#event-11650255302) at 2024-01-30 07:18 PM PST -Chrisklangley,2024-02-02T17:05:59Z,- Chrisklangley submitted pull request review: [6197](https://github.com/hackforla/website/pull/6197#pullrequestreview-1859789849) at 2024-02-02 09:05 AM PST -Chrisklangley,2024-02-08T03:06:13Z,- Chrisklangley commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1933292567) at 2024-02-07 07:06 PM PST -Chrisklangley,2024-02-08T03:56:09Z,- Chrisklangley submitted pull request review: [6262](https://github.com/hackforla/website/pull/6262#pullrequestreview-1869228154) at 2024-02-07 07:56 PM PST -Chrisklangley,2024-02-08T04:15:32Z,- Chrisklangley commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1933337383) at 2024-02-07 08:15 PM PST -Chrisklangley,2024-02-08T04:18:03Z,- Chrisklangley submitted pull request review: [6260](https://github.com/hackforla/website/pull/6260#pullrequestreview-1869244172) at 2024-02-07 08:18 PM PST -Chrisklangley,2024-02-08T23:53:49Z,- Chrisklangley unassigned from issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1917889892) at 2024-02-08 03:53 PM PST -Chrisklangley,2024-02-09T00:25:11Z,- Chrisklangley assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-02-08 04:25 PM PST -Chrisklangley,2024-02-09T00:25:41Z,- Chrisklangley unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-02-08 04:25 PM PST -Chrisklangley,2024-02-09T00:33:24Z,- Chrisklangley commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1935146008) at 2024-02-08 04:33 PM PST -Chrisklangley,2024-02-14T01:46:13Z,- Chrisklangley submitted pull request review: [6283](https://github.com/hackforla/website/pull/6283#pullrequestreview-1879235817) at 2024-02-13 05:46 PM PST -Chrisklangley,2024-04-18T01:00:48Z,- Chrisklangley commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2062801232) at 2024-04-17 06:00 PM PDT -Chrisklangley,2024-05-06T03:37:51Z,- Chrisklangley commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2095136514) at 2024-05-05 08:37 PM PDT -Chrisklangley,2024-05-06T03:39:52Z,- Chrisklangley submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2039916247) at 2024-05-05 08:39 PM PDT -chriskong217,2023-02-25T22:31:15Z,- chriskong217 commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1445218953) at 2023-02-25 02:31 PM PST -chriskong217,2023-02-25T22:38:00Z,- chriskong217 commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1445219861) at 2023-02-25 02:38 PM PST -chriskong217,2023-02-25T22:42:12Z,- chriskong217 commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1445220468) at 2023-02-25 02:42 PM PST -chriskong217,2023-02-25T22:43:13Z,- chriskong217 commented on issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1445220593) at 2023-02-25 02:43 PM PST -chriskong217,2023-02-26T19:15:20Z,- chriskong217 opened issue: [4051](https://github.com/hackforla/website/issues/4051) at 2023-02-26 11:15 AM PST -chriskong217,2023-03-03T20:06:24Z,- chriskong217 opened issue: [4104](https://github.com/hackforla/website/issues/4104) at 2023-03-03 12:06 PM PST -chriskong217,2023-03-07T02:49:25Z,- chriskong217 commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1457422867) at 2023-03-06 06:49 PM PST -chriskong217,2023-03-12T15:53:18Z,- chriskong217 opened issue: [4151](https://github.com/hackforla/website/issues/4151) at 2023-03-12 08:53 AM PDT -chriskong217,2023-03-12T15:53:19Z,- chriskong217 assigned to issue: [4151](https://github.com/hackforla/website/issues/4151) at 2023-03-12 08:53 AM PDT -chriskong217,2023-03-13T01:09:56Z,- chriskong217 opened issue: [4155](https://github.com/hackforla/website/issues/4155) at 2023-03-12 06:09 PM PDT -chriskong217,2023-03-26T15:36:46Z,- chriskong217 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1484133830) at 2023-03-26 08:36 AM PDT -chriskong217,2023-05-15T02:49:09Z,- chriskong217 unassigned from issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1545289347) at 2023-05-14 07:49 PM PDT -chrismenke45,3828,SKILLS ISSUE -chrismenke45,2023-01-17T03:47:50Z,- chrismenke45 opened issue: [3828](https://github.com/hackforla/website/issues/3828) at 2023-01-16 07:47 PM PST -chrismenke45,2023-01-17T04:05:47Z,- chrismenke45 assigned to issue: [3828](https://github.com/hackforla/website/issues/3828) at 2023-01-16 08:05 PM PST -chrismenke45,2023-01-18T04:18:34Z,- chrismenke45 commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1386464635) at 2023-01-17 08:18 PM PST -chrismenke45,2023-01-18T16:49:09Z,- chrismenke45 submitted pull request review: [3835](https://github.com/hackforla/website/pull/3835#pullrequestreview-1253896785) at 2023-01-18 08:49 AM PST -chrismenke45,2023-01-18T17:10:45Z,- chrismenke45 assigned to issue: [2868](https://github.com/hackforla/website/issues/2868#issuecomment-1048471373) at 2023-01-18 09:10 AM PST -chrismenke45,2023-01-18T17:12:52Z,- chrismenke45 commented on issue: [2868](https://github.com/hackforla/website/issues/2868#issuecomment-1387432271) at 2023-01-18 09:12 AM PST -chrismenke45,2023-01-18T23:03:13Z,- chrismenke45 opened pull request: [3841](https://github.com/hackforla/website/pull/3841) at 2023-01-18 03:03 PM PST -chrismenke45,2023-01-18T23:59:02Z,- chrismenke45 commented on issue: [3828](https://github.com/hackforla/website/issues/3828#issuecomment-1396249209) at 2023-01-18 03:59 PM PST -chrismenke45,2023-01-21T08:43:14Z,- chrismenke45 pull request merged: [3841](https://github.com/hackforla/website/pull/3841#event-8327008568) at 2023-01-21 12:43 AM PST -chrismenke45,2023-01-21T16:18:34Z,- chrismenke45 assigned to issue: [3399](https://github.com/hackforla/website/issues/3399) at 2023-01-21 08:18 AM PST -chrismenke45,2023-01-21T16:42:17Z,- chrismenke45 opened pull request: [3847](https://github.com/hackforla/website/pull/3847) at 2023-01-21 08:42 AM PST -chrismenke45,2023-01-24T00:55:00Z,- chrismenke45 pull request merged: [3847](https://github.com/hackforla/website/pull/3847#event-8339587200) at 2023-01-23 04:55 PM PST -chrismenke45,2023-01-27T03:27:23Z,- chrismenke45 assigned to issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1306296320) at 2023-01-26 07:27 PM PST -chrismenke45,2023-01-27T18:47:12Z,- chrismenke45 commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1406938188) at 2023-01-27 10:47 AM PST -chrismenke45,2023-01-31T22:24:05Z,- chrismenke45 commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1411150837) at 2023-01-31 02:24 PM PST -chrismenke45,2023-02-08T04:39:50Z,- chrismenke45 commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1421991109) at 2023-02-07 08:39 PM PST -chrismenke45,2023-02-14T20:38:00Z,- chrismenke45 commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1430343772) at 2023-02-14 12:38 PM PST -chrismenke45,2023-02-14T20:50:12Z,- chrismenke45 submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1298399441) at 2023-02-14 12:50 PM PST -chrismenke45,2023-02-14T20:56:35Z,- chrismenke45 assigned to issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1407299488) at 2023-02-14 12:56 PM PST -chrismenke45,2023-02-14T20:58:39Z,- chrismenke45 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1430369172) at 2023-02-14 12:58 PM PST -chrismenke45,2023-02-14T22:48:09Z,- chrismenke45 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1430493696) at 2023-02-14 02:48 PM PST -chrismenke45,2023-02-15T03:40:35Z,- chrismenke45 commented on pull request: [3977](https://github.com/hackforla/website/pull/3977#issuecomment-1430705721) at 2023-02-14 07:40 PM PST -chrismenke45,2023-02-15T16:39:31Z,- chrismenke45 submitted pull request review: [3977](https://github.com/hackforla/website/pull/3977#pullrequestreview-1299875043) at 2023-02-15 08:39 AM PST -chrismenke45,2023-02-15T17:28:57Z,- chrismenke45 opened pull request: [3984](https://github.com/hackforla/website/pull/3984) at 2023-02-15 09:28 AM PST -chrismenke45,2023-02-15T17:43:54Z,- chrismenke45 submitted pull request review: [3982](https://github.com/hackforla/website/pull/3982#pullrequestreview-1300051309) at 2023-02-15 09:43 AM PST -chrismenke45,2023-02-19T17:50:00Z,- chrismenke45 pull request merged: [3984](https://github.com/hackforla/website/pull/3984#event-8555686624) at 2023-02-19 09:50 AM PST -chrismenke45,2023-02-21T00:31:17Z,- chrismenke45 commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1437700370) at 2023-02-20 04:31 PM PST -chrismenke45,2023-02-21T00:36:05Z,- chrismenke45 submitted pull request review: [4011](https://github.com/hackforla/website/pull/4011#pullrequestreview-1306457182) at 2023-02-20 04:36 PM PST -chrismenke45,2023-02-21T00:38:24Z,- chrismenke45 assigned to issue: [3985](https://github.com/hackforla/website/issues/3985) at 2023-02-20 04:38 PM PST -chrismenke45,2023-02-21T00:40:55Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1437704544) at 2023-02-20 04:40 PM PST -chrismenke45,2023-02-22T03:39:24Z,- chrismenke45 commented on pull request: [4022](https://github.com/hackforla/website/pull/4022#issuecomment-1439394627) at 2023-02-21 07:39 PM PST -chrismenke45,2023-02-22T16:58:06Z,- chrismenke45 submitted pull request review: [4022](https://github.com/hackforla/website/pull/4022#pullrequestreview-1309726781) at 2023-02-22 08:58 AM PST -chrismenke45,2023-02-27T23:44:12Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1447291552) at 2023-02-27 03:44 PM PST -chrismenke45,2023-03-01T03:50:53Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1449290406) at 2023-02-28 07:50 PM PST -chrismenke45,2023-03-10T22:27:10Z,- chrismenke45 commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1464558902) at 2023-03-10 02:27 PM PST -chrismenke45,2023-03-12T17:27:52Z,- chrismenke45 commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1465254039) at 2023-03-12 10:27 AM PDT -chrismenke45,2023-03-12T18:19:44Z,- chrismenke45 assigned to issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1463381616) at 2023-03-12 11:19 AM PDT -chrismenke45,2023-03-12T18:19:51Z,- chrismenke45 unassigned from issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1464558902) at 2023-03-12 11:19 AM PDT -chrismenke45,2023-03-13T19:12:23Z,- chrismenke45 submitted pull request review: [4135](https://github.com/hackforla/website/pull/4135#pullrequestreview-1337776826) at 2023-03-13 12:12 PM PDT -chrismenke45,2023-03-13T21:01:07Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1466950654) at 2023-03-13 02:01 PM PDT -chrismenke45,2023-03-17T23:20:57Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1474506290) at 2023-03-17 04:20 PM PDT -chrismenke45,2023-03-24T19:56:21Z,- chrismenke45 opened pull request: [4280](https://github.com/hackforla/website/pull/4280) at 2023-03-24 12:56 PM PDT -chrismenke45,2023-03-24T19:58:04Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1483340620) at 2023-03-24 12:58 PM PDT -chrismenke45,2023-03-24T23:19:13Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1483568945) at 2023-03-24 04:19 PM PDT -chrismenke45,2023-03-24T23:39:25Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1483593225) at 2023-03-24 04:39 PM PDT -chrismenke45,2023-03-29T02:56:19Z,- chrismenke45 commented on pull request: [4308](https://github.com/hackforla/website/pull/4308#issuecomment-1487875894) at 2023-03-28 07:56 PM PDT -chrismenke45,2023-03-29T14:43:07Z,- chrismenke45 submitted pull request review: [4308](https://github.com/hackforla/website/pull/4308#pullrequestreview-1363297032) at 2023-03-29 07:43 AM PDT -chrismenke45,2023-03-30T17:12:18Z,- chrismenke45 commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490650224) at 2023-03-30 10:12 AM PDT -chrismenke45,2023-03-30T17:30:01Z,- chrismenke45 submitted pull request review: [4347](https://github.com/hackforla/website/pull/4347#pullrequestreview-1365598918) at 2023-03-30 10:30 AM PDT -chrismenke45,2023-03-30T18:07:39Z,- chrismenke45 commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490716370) at 2023-03-30 11:07 AM PDT -chrismenke45,2023-04-04T16:46:35Z,- chrismenke45 commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1496291746) at 2023-04-04 09:46 AM PDT -chrismenke45,2023-04-06T03:17:16Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498435851) at 2023-04-05 08:17 PM PDT -chrismenke45,2023-04-06T04:19:19Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1498472254) at 2023-04-05 09:19 PM PDT -chrismenke45,2023-04-06T14:48:11Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499191037) at 2023-04-06 07:48 AM PDT -chrismenke45,2023-04-06T18:18:23Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499447528) at 2023-04-06 11:18 AM PDT -chrismenke45,2023-04-06T23:38:37Z,- chrismenke45 commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1499759578) at 2023-04-06 04:38 PM PDT -chrismenke45,2023-04-11T23:51:21Z,- chrismenke45 commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1504284464) at 2023-04-11 04:51 PM PDT -chrismenke45,2023-04-12T02:31:06Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1504460330) at 2023-04-11 07:31 PM PDT -chrismenke45,2023-04-12T03:04:23Z,- chrismenke45 opened issue: [4483](https://github.com/hackforla/website/issues/4483) at 2023-04-11 08:04 PM PDT -chrismenke45,2023-04-12T16:26:46Z,- chrismenke45 submitted pull request review: [4468](https://github.com/hackforla/website/pull/4468#pullrequestreview-1381683741) at 2023-04-12 09:26 AM PDT -chrismenke45,2023-04-13T00:32:26Z,- chrismenke45 commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1506141773) at 2023-04-12 05:32 PM PDT -chrismenke45,2023-04-19T03:06:36Z,- chrismenke45 commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1514069891) at 2023-04-18 08:06 PM PDT -chrismenke45,2023-04-19T16:46:22Z,- chrismenke45 closed issue by PR 4517: [4448](https://github.com/hackforla/website/issues/4448#event-9048817330) at 2023-04-19 09:46 AM PDT -chrismenke45,2023-04-19T16:47:40Z,- chrismenke45 closed issue by PR 4497: [4445](https://github.com/hackforla/website/issues/4445#event-9048828389) at 2023-04-19 09:47 AM PDT -chrismenke45,2023-04-19T17:00:25Z,- chrismenke45 closed issue by PR 4524: [4383](https://github.com/hackforla/website/issues/4383#event-9048942822) at 2023-04-19 10:00 AM PDT -chrismenke45,2023-04-19T17:09:58Z,- chrismenke45 closed issue by PR 4518: [4422](https://github.com/hackforla/website/issues/4422#event-9049025729) at 2023-04-19 10:09 AM PDT -chrismenke45,2023-04-19T22:43:09Z,- chrismenke45 submitted pull request review: [4545](https://github.com/hackforla/website/pull/4545#pullrequestreview-1392976760) at 2023-04-19 03:43 PM PDT -chrismenke45,2023-04-21T14:10:58Z,- chrismenke45 commented on pull request: [4468](https://github.com/hackforla/website/pull/4468#issuecomment-1517896750) at 2023-04-21 07:10 AM PDT -chrismenke45,2023-04-22T00:15:22Z,- chrismenke45 commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1518438309) at 2023-04-21 05:15 PM PDT -chrismenke45,2023-04-22T00:16:17Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1518438640) at 2023-04-21 05:16 PM PDT -chrismenke45,2023-04-24T02:18:31Z,- chrismenke45 commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1519289252) at 2023-04-23 07:18 PM PDT -chrismenke45,2023-04-24T02:18:54Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1519289567) at 2023-04-23 07:18 PM PDT -chrismenke45,2023-04-24T17:35:56Z,- chrismenke45 submitted pull request review: [4554](https://github.com/hackforla/website/pull/4554#pullrequestreview-1398510469) at 2023-04-24 10:35 AM PDT -chrismenke45,2023-04-25T15:54:25Z,- chrismenke45 commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1522039222) at 2023-04-25 08:54 AM PDT -chrismenke45,2023-04-26T00:52:02Z,- chrismenke45 opened issue: [4567](https://github.com/hackforla/website/issues/4567) at 2023-04-25 05:52 PM PDT -chrismenke45,2023-04-26T02:05:35Z,- chrismenke45 assigned to issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1521032707) at 2023-04-25 07:05 PM PDT -chrismenke45,2023-04-26T02:33:37Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1522677022) at 2023-04-25 07:33 PM PDT -chrismenke45,2023-04-26T20:40:32Z,- chrismenke45 submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1402785573) at 2023-04-26 01:40 PM PDT -chrismenke45,2023-04-26T20:50:55Z,- chrismenke45 submitted pull request review: [4561](https://github.com/hackforla/website/pull/4561#pullrequestreview-1402799942) at 2023-04-26 01:50 PM PDT -chrismenke45,2023-04-26T20:51:06Z,- chrismenke45 closed issue by PR 4561: [4414](https://github.com/hackforla/website/issues/4414#event-9107826237) at 2023-04-26 01:51 PM PDT -chrismenke45,2023-04-26T20:52:09Z,- chrismenke45 closed issue by PR 4558: [4394](https://github.com/hackforla/website/issues/4394#event-9107834579) at 2023-04-26 01:52 PM PDT -chrismenke45,2023-04-26T21:01:00Z,- chrismenke45 unassigned from issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1522657973) at 2023-04-26 02:01 PM PDT -chrismenke45,2023-05-03T18:36:31Z,- chrismenke45 closed issue as completed: [4567](https://github.com/hackforla/website/issues/4567#event-9158778296) at 2023-05-03 11:36 AM PDT -chrismenke45,2023-05-03T18:39:22Z,- chrismenke45 commented on issue: [4567](https://github.com/hackforla/website/issues/4567#issuecomment-1533523810) at 2023-05-03 11:39 AM PDT -chrismenke45,2023-05-24T16:15:04Z,- chrismenke45 submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1442301823) at 2023-05-24 09:15 AM PDT -chrismenke45,2023-05-24T16:15:15Z,- chrismenke45 closed issue by PR 4680: [4375](https://github.com/hackforla/website/issues/4375#event-9330015387) at 2023-05-24 09:15 AM PDT -chrismenke45,2023-05-30T15:56:47Z,- chrismenke45 assigned to issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1567670460) at 2023-05-30 08:56 AM PDT -chrismenke45,2023-05-30T15:58:07Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1568688077) at 2023-05-30 08:58 AM PDT -chrismenke45,2023-05-30T16:20:34Z,- chrismenke45 opened issue: [4756](https://github.com/hackforla/website/issues/4756) at 2023-05-30 09:20 AM PDT -chrismenke45,2023-05-30T16:21:51Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1568723744) at 2023-05-30 09:21 AM PDT -chrismenke45,2023-05-30T16:22:19Z,- chrismenke45 commented on issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-05-30 09:22 AM PDT -chrismenke45,2023-05-31T02:24:03Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1569403110) at 2023-05-30 07:24 PM PDT -chrismenke45,2023-05-31T14:47:15Z,- chrismenke45 submitted pull request review: [4745](https://github.com/hackforla/website/pull/4745#pullrequestreview-1453429089) at 2023-05-31 07:47 AM PDT -chrismenke45,2023-05-31T14:47:27Z,- chrismenke45 closed issue by PR 4745: [4491](https://github.com/hackforla/website/issues/4491#event-9391606197) at 2023-05-31 07:47 AM PDT -chrismenke45,2023-05-31T14:49:03Z,- chrismenke45 submitted pull request review: [4748](https://github.com/hackforla/website/pull/4748#pullrequestreview-1453433290) at 2023-05-31 07:49 AM PDT -chrismenke45,2023-05-31T14:49:55Z,- chrismenke45 closed issue by PR 4748: [4419](https://github.com/hackforla/website/issues/4419#event-9391638269) at 2023-05-31 07:49 AM PDT -chrismenke45,2023-05-31T15:03:44Z,- chrismenke45 submitted pull request review: [4754](https://github.com/hackforla/website/pull/4754#pullrequestreview-1453469246) at 2023-05-31 08:03 AM PDT -chrismenke45,2023-05-31T15:03:56Z,- chrismenke45 closed issue by PR 4754: [3998](https://github.com/hackforla/website/issues/3998#event-9391820662) at 2023-05-31 08:03 AM PDT -chrismenke45,2023-05-31T15:22:23Z,- chrismenke45 submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1453529481) at 2023-05-31 08:22 AM PDT -chrismenke45,2023-06-01T16:35:15Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1572377068) at 2023-06-01 09:35 AM PDT -chrismenke45,2023-06-04T18:32:38Z,- chrismenke45 commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1575668353) at 2023-06-04 11:32 AM PDT -chrismenke45,2023-06-05T23:32:49Z,- chrismenke45 commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1577686671) at 2023-06-05 04:32 PM PDT -chrismenke45,2023-06-06T15:03:05Z,- chrismenke45 submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1465432536) at 2023-06-06 08:03 AM PDT -chrismenke45,2023-06-07T02:09:35Z,- chrismenke45 commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1579759266) at 2023-06-06 07:09 PM PDT -chrismenke45,2023-06-07T02:09:36Z,- chrismenke45 closed issue as completed: [4538](https://github.com/hackforla/website/issues/4538#event-9452651323) at 2023-06-06 07:09 PM PDT -chrismenke45,2023-06-07T13:20:57Z,- chrismenke45 commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1580809226) at 2023-06-07 06:20 AM PDT -chrismenke45,2023-06-07T13:27:26Z,- chrismenke45 commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1580823991) at 2023-06-07 06:27 AM PDT -chrismenke45,2023-06-18T03:27:28Z,- chrismenke45 commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1595938725) at 2023-06-17 08:27 PM PDT -chrismenke45,2023-06-18T21:58:09Z,- chrismenke45 submitted pull request review: [4764](https://github.com/hackforla/website/pull/4764#pullrequestreview-1485203840) at 2023-06-18 02:58 PM PDT -chrismenke45,2023-06-19T15:02:34Z,- chrismenke45 assigned to issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1586226100) at 2023-06-19 08:02 AM PDT -chrismenke45,2023-06-19T15:03:12Z,- chrismenke45 commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1597345764) at 2023-06-19 08:03 AM PDT -chrismenke45,2023-06-20T16:12:19Z,- chrismenke45 opened issue: [4864](https://github.com/hackforla/website/issues/4864) at 2023-06-20 09:12 AM PDT -chrismenke45,2023-06-20T16:13:04Z,- chrismenke45 commented on issue: [4864](https://github.com/hackforla/website/issues/4864#issuecomment-1599102462) at 2023-06-20 09:13 AM PDT -chrismenke45,2023-06-20T16:13:48Z,- chrismenke45 commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1599103480) at 2023-06-20 09:13 AM PDT -chrismenke45,2023-06-22T19:40:28Z,- chrismenke45 commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1603215419) at 2023-06-22 12:40 PM PDT -chrismenke45,2023-06-27T23:56:35Z,- chrismenke45 assigned to issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1592092127) at 2023-06-27 04:56 PM PDT -chrismenke45,2023-06-27T23:58:22Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1610379583) at 2023-06-27 04:58 PM PDT -chrismenke45,2023-06-29T16:55:57Z,- chrismenke45 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1613530900) at 2023-06-29 09:55 AM PDT -chrismenke45,2023-06-29T16:59:24Z,- chrismenke45 commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1613535211) at 2023-06-29 09:59 AM PDT -chrismenke45,2023-06-29T17:05:58Z,- chrismenke45 commented on pull request: [4897](https://github.com/hackforla/website/pull/4897#issuecomment-1613543848) at 2023-06-29 10:05 AM PDT -chrismenke45,2023-06-29T17:15:07Z,- chrismenke45 submitted pull request review: [4897](https://github.com/hackforla/website/pull/4897#pullrequestreview-1505764498) at 2023-06-29 10:15 AM PDT -chrismenke45,2023-06-30T22:36:11Z,- chrismenke45 opened issue: [4903](https://github.com/hackforla/website/issues/4903) at 2023-06-30 03:36 PM PDT -chrismenke45,2023-06-30T22:36:43Z,- chrismenke45 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1615250418) at 2023-06-30 03:36 PM PDT -chrismenke45,2023-06-30T22:38:02Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1615251047) at 2023-06-30 03:38 PM PDT -chrismenke45,2023-07-02T01:04:48Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1616249486) at 2023-07-01 06:04 PM PDT -chrismenke45,2023-07-02T01:04:49Z,- chrismenke45 closed issue as completed: [4769](https://github.com/hackforla/website/issues/4769#event-9698192090) at 2023-07-01 06:04 PM PDT -chrismenke45,2023-07-02T16:54:51Z,- chrismenke45 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1616730238) at 2023-07-02 09:54 AM PDT -chrismenke45,2023-07-03T17:41:08Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1618933370) at 2023-07-03 10:41 AM PDT -chrismenke45,2023-07-05T19:55:38Z,- chrismenke45 submitted pull request review: [4911](https://github.com/hackforla/website/pull/4911#pullrequestreview-1515263527) at 2023-07-05 12:55 PM PDT -chrismenke45,2023-07-05T19:55:55Z,- chrismenke45 closed issue by PR 4911: [2288](https://github.com/hackforla/website/issues/2288#event-9735853720) at 2023-07-05 12:55 PM PDT -chrismenke45,2023-07-05T19:56:27Z,- chrismenke45 commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1622406004) at 2023-07-05 12:56 PM PDT -chrismenke45,2023-07-05T20:18:34Z,- chrismenke45 opened issue: [4912](https://github.com/hackforla/website/issues/4912) at 2023-07-05 01:18 PM PDT -chrismenke45,2023-07-05T20:36:42Z,- chrismenke45 commented on issue: [4912](https://github.com/hackforla/website/issues/4912#issuecomment-1622464392) at 2023-07-05 01:36 PM PDT -chrismenke45,2023-07-11T00:06:07Z,- chrismenke45 unassigned from issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1618933370) at 2023-07-10 05:06 PM PDT -chrismenke45,2023-07-11T00:06:56Z,- chrismenke45 commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1629899672) at 2023-07-10 05:06 PM PDT -chrismenke45,2023-07-11T00:07:21Z,- chrismenke45 closed issue as completed: [4912](https://github.com/hackforla/website/issues/4912#event-9780996210) at 2023-07-10 05:07 PM PDT -chrismenke45,2023-07-11T00:08:08Z,- chrismenke45 commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1629900519) at 2023-07-10 05:08 PM PDT -chrismenke45,2023-07-11T00:08:08Z,- chrismenke45 closed issue by PR 5298: [4903](https://github.com/hackforla/website/issues/4903#event-9781000374) at 2023-07-10 05:08 PM PDT -chrismenke45,2023-07-11T00:08:13Z,- chrismenke45 commented on issue: [4912](https://github.com/hackforla/website/issues/4912#issuecomment-1629900573) at 2023-07-10 05:08 PM PDT -christina245,2020-11-08T18:50:34Z,- christina245 assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-08 10:50 AM PST -christina245,2020-11-13T05:46:06Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-726535663) at 2020-11-12 09:46 PM PST -christina245,2020-12-13T19:18:18Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-744054964) at 2020-12-13 11:18 AM PST -christina245,2020-12-27T18:36:58Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-751501795) at 2020-12-27 10:36 AM PST -christina245,2021-01-24T18:30:11Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-766408647) at 2021-01-24 10:30 AM PST -christina245,2021-02-07T18:31:51Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-774728123) at 2021-02-07 10:31 AM PST -christina245,2021-02-07T20:43:23Z,- christina245 commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-774757211) at 2021-02-07 12:43 PM PST -christina245,2021-02-21T18:33:10Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-782903721) at 2021-02-21 10:33 AM PST -christina245,2021-02-28T08:36:04Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-787417009) at 2021-02-28 12:36 AM PST -christina245,2021-03-21T17:41:18Z,- christina245 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-803630058) at 2021-03-21 10:41 AM PDT -christina245,2021-03-21T20:32:17Z,- christina245 assigned to issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-21 01:32 PM PDT -christina245,2021-04-02T04:54:47Z,- christina245 unassigned from issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-04-01 09:54 PM PDT -christina245,2021-04-28T22:03:56Z,- christina245 assigned to issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-674546549) at 2021-04-28 03:03 PM PDT -christina245,2021-05-09T17:36:24Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-835850104) at 2021-05-09 10:36 AM PDT -christina245,2021-05-30T18:08:55Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-851039039) at 2021-05-30 11:08 AM PDT -christina245,2021-06-08T19:52:10Z,- christina245 unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-803630058) at 2021-06-08 12:52 PM PDT -christina245,2021-06-20T17:32:44Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-864587151) at 2021-06-20 10:32 AM PDT -christina245,2021-06-27T04:18:41Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-869097923) at 2021-06-26 09:18 PM PDT -christina245,2021-07-25T18:24:06Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-886239930) at 2021-07-25 11:24 AM PDT -christina245,2021-08-06T01:18:11Z,- christina245 assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-822814496) at 2021-08-05 06:18 PM PDT -christina245,2021-08-12T23:42:10Z,- christina245 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-898044374) at 2021-08-12 04:42 PM PDT -christina245,2021-08-13T00:08:46Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-898054619) at 2021-08-12 05:08 PM PDT -christina245,2021-08-24T17:44:34Z,- christina245 commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-08-24 10:44 AM PDT -christina245,2021-08-25T19:51:12Z,- christina245 unassigned from issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-904847245) at 2021-08-25 12:51 PM PDT -christina245,2021-09-19T23:23:50Z,- christina245 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-922554661) at 2021-09-19 04:23 PM PDT -christina245,2021-10-10T17:24:40Z,- christina245 unassigned from issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-938397004) at 2021-10-10 10:24 AM PDT -christinaor,3827,SKILLS ISSUE -christinaor,2023-01-17T03:47:21Z,- christinaor opened issue: [3827](https://github.com/hackforla/website/issues/3827) at 2023-01-16 07:47 PM PST -christinaor,2023-01-17T04:04:54Z,- christinaor assigned to issue: [3827](https://github.com/hackforla/website/issues/3827) at 2023-01-16 08:04 PM PST -christinaor,2023-01-29T23:43:27Z,- christinaor assigned to issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1385988822) at 2023-01-29 03:43 PM PST -christinaor,2023-01-30T00:58:33Z,- christinaor opened pull request: [3894](https://github.com/hackforla/website/pull/3894) at 2023-01-29 04:58 PM PST -christinaor,2023-01-30T01:05:50Z,- christinaor commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1407838074) at 2023-01-29 05:05 PM PST -christinaor,2023-01-30T01:09:32Z,- christinaor commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1407842166) at 2023-01-29 05:09 PM PST -christinaor,2023-01-31T18:33:24Z,- christinaor pull request merged: [3894](https://github.com/hackforla/website/pull/3894#event-8402658890) at 2023-01-31 10:33 AM PST -christinaor,2023-02-01T03:27:54Z,- christinaor commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1411410797) at 2023-01-31 07:27 PM PST -christinaor,2023-02-01T03:36:39Z,- christinaor submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1278387817) at 2023-01-31 07:36 PM PST -christinaor,2023-02-01T03:45:36Z,- christinaor commented on pull request: [3901](https://github.com/hackforla/website/pull/3901#issuecomment-1411419894) at 2023-01-31 07:45 PM PST -christinaor,2023-02-01T05:25:49Z,- christinaor submitted pull request review: [3901](https://github.com/hackforla/website/pull/3901#pullrequestreview-1278450280) at 2023-01-31 09:25 PM PST -christinaor,2023-02-01T05:28:55Z,- christinaor assigned to issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1192033274) at 2023-01-31 09:28 PM PST -christinaor,2023-02-01T05:30:12Z,- christinaor commented on issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1411490485) at 2023-01-31 09:30 PM PST -christinaor,2023-02-02T21:46:23Z,- christinaor opened pull request: [3926](https://github.com/hackforla/website/pull/3926) at 2023-02-02 01:46 PM PST -christinaor,2023-02-02T21:51:25Z,- christinaor commented on issue: [3360](https://github.com/hackforla/website/issues/3360#issuecomment-1414423314) at 2023-02-02 01:51 PM PST -christinaor,2023-02-02T21:54:48Z,- christinaor closed issue as completed: [3827](https://github.com/hackforla/website/issues/3827#event-8425904716) at 2023-02-02 01:54 PM PST -christinaor,2023-02-02T22:30:36Z,- christinaor assigned to issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407846561) at 2023-02-02 02:30 PM PST -christinaor,2023-02-02T22:32:08Z,- christinaor commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1414463005) at 2023-02-02 02:32 PM PST -christinaor,2023-02-03T04:02:03Z,- christinaor opened pull request: [3928](https://github.com/hackforla/website/pull/3928) at 2023-02-02 08:02 PM PST -christinaor,2023-02-06T22:53:09Z,- christinaor pull request merged: [3926](https://github.com/hackforla/website/pull/3926#event-8452546471) at 2023-02-06 02:53 PM PST -christinaor,2023-02-07T02:02:28Z,- christinaor commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420061818) at 2023-02-06 06:02 PM PST -christinaor,2023-02-07T02:05:23Z,- christinaor commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420068613) at 2023-02-06 06:05 PM PST -christinaor,2023-02-07T04:09:22Z,- christinaor commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420171507) at 2023-02-06 08:09 PM PST -christinaor,2023-02-08T07:53:44Z,- christinaor pull request merged: [3928](https://github.com/hackforla/website/pull/3928#event-8465775348) at 2023-02-07 11:53 PM PST -christinaor,2023-02-11T00:12:25Z,- christinaor assigned to issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1304901119) at 2023-02-10 04:12 PM PST -christinaor,2023-02-11T00:15:08Z,- christinaor commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1426517805) at 2023-02-10 04:15 PM PST -christinaor,2023-02-15T22:14:11Z,- christinaor commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1432116661) at 2023-02-15 02:14 PM PST -christinaor,2023-02-16T18:03:04Z,- christinaor commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1433498511) at 2023-02-16 10:03 AM PST -christinaor,2023-02-16T20:54:42Z,- christinaor commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1433701720) at 2023-02-16 12:54 PM PST -christinaor,2023-02-16T21:36:02Z,- christinaor submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1302313156) at 2023-02-16 01:36 PM PST -christinaor,2023-02-17T03:29:52Z,- christinaor opened pull request: [3994](https://github.com/hackforla/website/pull/3994) at 2023-02-16 07:29 PM PST -christinaor,2023-02-17T03:50:09Z,- christinaor commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1434057796) at 2023-02-16 07:50 PM PST -christinaor,2023-02-17T18:21:34Z,- christinaor commented on pull request: [3984](https://github.com/hackforla/website/pull/3984#issuecomment-1435065406) at 2023-02-17 10:21 AM PST -christinaor,2023-02-17T20:58:00Z,- christinaor submitted pull request review: [3984](https://github.com/hackforla/website/pull/3984#pullrequestreview-1304192572) at 2023-02-17 12:58 PM PST -christinaor,2023-02-17T22:21:46Z,- christinaor submitted pull request review: [4002](https://github.com/hackforla/website/pull/4002#pullrequestreview-1304270116) at 2023-02-17 02:21 PM PST -christinaor,2023-02-21T00:58:33Z,- christinaor commented on pull request: [3994](https://github.com/hackforla/website/pull/3994#issuecomment-1437717016) at 2023-02-20 04:58 PM PST -christinaor,2023-02-21T01:15:19Z,- christinaor pull request merged: [3994](https://github.com/hackforla/website/pull/3994#event-8565955177) at 2023-02-20 05:15 PM PST -christinaor,2023-02-21T02:22:12Z,- christinaor assigned to issue: [3976](https://github.com/hackforla/website/issues/3976) at 2023-02-20 06:22 PM PST -christinaor,2023-02-21T02:37:22Z,- christinaor commented on issue: [3976](https://github.com/hackforla/website/issues/3976#issuecomment-1437779328) at 2023-02-20 06:37 PM PST -christinaor,2023-02-21T04:42:19Z,- christinaor opened pull request: [4018](https://github.com/hackforla/website/pull/4018) at 2023-02-20 08:42 PM PST -christinaor,2023-02-24T07:06:30Z,- christinaor pull request merged: [4018](https://github.com/hackforla/website/pull/4018#event-8598812544) at 2023-02-23 11:06 PM PST -christinaor,2023-02-24T18:00:24Z,- christinaor commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1444152258) at 2023-02-24 10:00 AM PST -christinaor,2023-02-25T16:29:42Z,- christinaor submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1314539723) at 2023-02-25 08:29 AM PST -christinaor,2023-03-03T17:56:19Z,- christinaor opened issue: [4101](https://github.com/hackforla/website/issues/4101) at 2023-03-03 09:56 AM PST -christinaor,2023-03-15T16:52:59Z,- christinaor commented on pull request: [4178](https://github.com/hackforla/website/pull/4178#issuecomment-1470398978) at 2023-03-15 09:52 AM PDT -christinaor,2023-03-15T17:53:08Z,- christinaor submitted pull request review: [4178](https://github.com/hackforla/website/pull/4178#pullrequestreview-1342079628) at 2023-03-15 10:53 AM PDT -christinaor,2023-03-22T00:32:01Z,- christinaor assigned to issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1477059261) at 2023-03-21 05:32 PM PDT -christinaor,2023-03-22T02:13:15Z,- christinaor commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1478827612) at 2023-03-21 07:13 PM PDT -christinaor,2023-03-29T16:26:08Z,- christinaor commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1488922411) at 2023-03-29 09:26 AM PDT -christinaor,2023-03-30T22:01:06Z,- christinaor commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1491019609) at 2023-03-30 03:01 PM PDT -christinaor,2023-04-03T02:06:24Z,- christinaor commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1493535080) at 2023-04-02 07:06 PM PDT -christinaor,2023-04-03T02:10:27Z,- christinaor closed issue by PR 4346: [2830](https://github.com/hackforla/website/issues/2830#event-8907763110) at 2023-04-02 07:10 PM PDT -christinaor,2023-04-04T23:19:26Z,- christinaor unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1496715092) at 2023-04-04 04:19 PM PDT -christinaor,2023-04-06T17:06:33Z,- christinaor assigned to issue: [4357](https://github.com/hackforla/website/issues/4357) at 2023-04-06 10:06 AM PDT -christinaor,2023-04-06T18:54:15Z,- christinaor commented on issue: [4357](https://github.com/hackforla/website/issues/4357#issuecomment-1499484764) at 2023-04-06 11:54 AM PDT -christinaor,2023-04-11T06:01:40Z,- christinaor commented on issue: [4357](https://github.com/hackforla/website/issues/4357#issuecomment-1502731125) at 2023-04-10 11:01 PM PDT -christinaor,2023-04-21T05:17:42Z,- christinaor opened pull request: [4550](https://github.com/hackforla/website/pull/4550) at 2023-04-20 10:17 PM PDT -christinaor,2023-04-21T20:43:22Z,- christinaor assigned to issue: [4277](https://github.com/hackforla/website/issues/4277) at 2023-04-21 01:43 PM PDT -christinaor,2023-04-21T21:24:14Z,- christinaor commented on issue: [4277](https://github.com/hackforla/website/issues/4277#issuecomment-1518348358) at 2023-04-21 02:24 PM PDT -christinaor,2023-04-21T21:57:59Z,- christinaor opened issue: [4555](https://github.com/hackforla/website/issues/4555) at 2023-04-21 02:57 PM PDT -christinaor,2023-04-21T22:02:06Z,- christinaor commented on issue: [4277](https://github.com/hackforla/website/issues/4277#issuecomment-1518372927) at 2023-04-21 03:02 PM PDT -christinaor,2023-05-04T19:50:44Z,- christinaor pull request merged: [4550](https://github.com/hackforla/website/pull/4550#event-9171031612) at 2023-05-04 12:50 PM PDT -christinaor,2023-05-10T15:45:39Z,- christinaor assigned to issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1537511149) at 2023-05-10 08:45 AM PDT -christinaor,2023-05-10T15:50:37Z,- christinaor commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1542438412) at 2023-05-10 08:50 AM PDT -christinaor,2023-05-10T16:46:20Z,- christinaor opened issue: [4647](https://github.com/hackforla/website/issues/4647) at 2023-05-10 09:46 AM PDT -christinaor,2023-05-10T16:52:17Z,- christinaor commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1542522615) at 2023-05-10 09:52 AM PDT -christinaor,2023-05-10T16:57:38Z,- christinaor assigned to issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1535525103) at 2023-05-10 09:57 AM PDT -christinaor,2023-05-10T16:58:14Z,- christinaor commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1542529473) at 2023-05-10 09:58 AM PDT -christinaor,2023-05-10T17:20:18Z,- christinaor opened issue: [4648](https://github.com/hackforla/website/issues/4648) at 2023-05-10 10:20 AM PDT -christinaor,2023-05-10T17:25:15Z,- christinaor commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1542560264) at 2023-05-10 10:25 AM PDT -christinaor,2023-05-10T17:30:57Z,- christinaor commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1542567331) at 2023-05-10 10:30 AM PDT -christinaor,2023-05-15T17:28:17Z,- christinaor commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1548263062) at 2023-05-15 10:28 AM PDT -christinaor,2023-08-08T21:40:05Z,- christinaor submitted pull request review: [5161](https://github.com/hackforla/website/pull/5161#pullrequestreview-1568283271) at 2023-08-08 02:40 PM PDT -christinaor,2023-08-09T03:33:54Z,- christinaor closed issue by PR 5161: [5137](https://github.com/hackforla/website/issues/5137#event-10041971414) at 2023-08-08 08:33 PM PDT -christinaor,2023-08-09T03:50:33Z,- christinaor commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1670611355) at 2023-08-08 08:50 PM PDT -christinaor,2023-08-09T03:50:44Z,- christinaor closed issue by PR 5152: [5131](https://github.com/hackforla/website/issues/5131#event-10042037162) at 2023-08-08 08:50 PM PDT -christinaor,2023-08-22T21:55:45Z,- christinaor commented on pull request: [5275](https://github.com/hackforla/website/pull/5275#issuecomment-1688982188) at 2023-08-22 02:55 PM PDT -christinaor,2023-08-22T21:55:57Z,- christinaor closed issue by PR 5275: [5266](https://github.com/hackforla/website/issues/5266#event-10163488790) at 2023-08-22 02:55 PM PDT -christinaor,2023-08-22T22:00:41Z,- christinaor commented on pull request: [5261](https://github.com/hackforla/website/pull/5261#issuecomment-1688986738) at 2023-08-22 03:00 PM PDT -christinaor,2023-08-22T22:00:55Z,- christinaor closed issue by PR 5261: [5198](https://github.com/hackforla/website/issues/5198#event-10163516215) at 2023-08-22 03:00 PM PDT -christinaor,2023-08-22T22:24:34Z,- christinaor commented on pull request: [5259](https://github.com/hackforla/website/pull/5259#issuecomment-1689006815) at 2023-08-22 03:24 PM PDT -christinaor,2023-08-22T22:24:49Z,- christinaor closed issue by PR 5259: [5255](https://github.com/hackforla/website/issues/5255#event-10163646147) at 2023-08-22 03:24 PM PDT -christinaor,2023-08-30T02:01:15Z,- christinaor commented on pull request: [5335](https://github.com/hackforla/website/pull/5335#issuecomment-1698380284) at 2023-08-29 07:01 PM PDT -christinaor,2023-08-30T02:01:29Z,- christinaor closed issue by PR 5335: [5281](https://github.com/hackforla/website/issues/5281#event-10227505231) at 2023-08-29 07:01 PM PDT -christinaor,2023-08-30T02:05:26Z,- christinaor commented on pull request: [5331](https://github.com/hackforla/website/pull/5331#issuecomment-1698382978) at 2023-08-29 07:05 PM PDT -christinaor,2023-08-30T02:05:34Z,- christinaor closed issue by PR 5331: [5154](https://github.com/hackforla/website/issues/5154#event-10227523109) at 2023-08-29 07:05 PM PDT -christinaor,2023-08-30T02:12:49Z,- christinaor commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1698387486) at 2023-08-29 07:12 PM PDT -christinaor,2023-08-30T02:13:05Z,- christinaor submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1601756711) at 2023-08-29 07:13 PM PDT -christinaor,2023-08-30T02:13:46Z,- christinaor submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1601757119) at 2023-08-29 07:13 PM PDT -christinaor,2023-08-30T02:16:28Z,- christinaor closed issue by PR 5296: [5253](https://github.com/hackforla/website/issues/5253#event-10227569633) at 2023-08-29 07:16 PM PDT -christinaor,2023-09-27T01:27:32Z,- christinaor submitted pull request review: [5593](https://github.com/hackforla/website/pull/5593#pullrequestreview-1645431457) at 2023-09-26 06:27 PM PDT -christinaor,2023-09-27T01:27:50Z,- christinaor closed issue by PR 5593: [5329](https://github.com/hackforla/website/issues/5329#event-10481500310) at 2023-09-26 06:27 PM PDT -christinaor,2023-09-27T01:36:01Z,- christinaor submitted pull request review: [5586](https://github.com/hackforla/website/pull/5586#pullrequestreview-1645437724) at 2023-09-26 06:36 PM PDT -christinaor,2023-09-27T01:36:16Z,- christinaor closed issue by PR 5586: [4961](https://github.com/hackforla/website/issues/4961#event-10481543243) at 2023-09-26 06:36 PM PDT -christinaor,2023-09-27T02:21:27Z,- christinaor submitted pull request review: [5570](https://github.com/hackforla/website/pull/5570#pullrequestreview-1645482653) at 2023-09-26 07:21 PM PDT -christinaor,2024-03-26T22:36:39Z,- christinaor unassigned from issue: [4277](https://github.com/hackforla/website/issues/4277#issuecomment-1518372927) at 2024-03-26 03:36 PM PDT -Christopher-Chhim,7889,SKILLS ISSUE -Christopher-Chhim,2025-02-05T04:19:56Z,- Christopher-Chhim opened issue: [7889](https://github.com/hackforla/website/issues/7889) at 2025-02-04 08:19 PM PST -Christopher-Chhim,2025-02-05T04:20:09Z,- Christopher-Chhim assigned to issue: [7889](https://github.com/hackforla/website/issues/7889) at 2025-02-04 08:20 PM PST -Christopher-Chhim,2025-02-22T01:33:26Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2675920920) at 2025-02-21 05:33 PM PST -Christopher-Chhim,2025-02-22T01:34:58Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2675921818) at 2025-02-21 05:34 PM PST -Christopher-Chhim,2025-02-23T03:58:26Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676548961) at 2025-02-22 07:58 PM PST -Christopher-Chhim,2025-02-23T04:09:36Z,- Christopher-Chhim opened issue: [7934](https://github.com/hackforla/website/issues/7934) at 2025-02-22 08:09 PM PST -Christopher-Chhim,2025-02-23T04:09:36Z,- Christopher-Chhim assigned to issue: [7934](https://github.com/hackforla/website/issues/7934) at 2025-02-22 08:09 PM PST -Christopher-Chhim,2025-02-23T04:59:02Z,- Christopher-Chhim opened pull request: [7935](https://github.com/hackforla/website/pull/7935) at 2025-02-22 08:59 PM PST -Christopher-Chhim,2025-02-23T05:03:40Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676574597) at 2025-02-22 09:03 PM PST -Christopher-Chhim,2025-02-23T05:09:33Z,- Christopher-Chhim assigned to issue: [7484](https://github.com/hackforla/website/issues/7484) at 2025-02-22 09:09 PM PST -Christopher-Chhim,2025-02-23T05:21:16Z,- Christopher-Chhim opened pull request: [7936](https://github.com/hackforla/website/pull/7936) at 2025-02-22 09:21 PM PST -Christopher-Chhim,2025-02-23T05:22:24Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676628846) at 2025-02-22 09:22 PM PST -Christopher-Chhim,2025-02-23T05:23:40Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2676629199) at 2025-02-22 09:23 PM PST -Christopher-Chhim,2025-02-23T18:51:40Z,- Christopher-Chhim pull request closed w/o merging: [7935](https://github.com/hackforla/website/pull/7935#event-16422066949) at 2025-02-23 10:51 AM PST -Christopher-Chhim,2025-02-28T05:07:04Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2689735629) at 2025-02-27 09:07 PM PST -Christopher-Chhim,2025-02-28T05:19:22Z,- Christopher-Chhim pull request merged: [7936](https://github.com/hackforla/website/pull/7936#event-16506998057) at 2025-02-27 09:19 PM PST -Christopher-Chhim,2025-03-26T02:59:57Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2753119581) at 2025-03-25 07:59 PM PDT -Christopher-Chhim,2025-03-26T03:08:32Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2753129067) at 2025-03-25 08:08 PM PDT -Christopher-Chhim,2025-04-04T04:02:06Z,- Christopher-Chhim commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2777503249) at 2025-04-03 09:02 PM PDT -Christopher-Chhim,2025-04-07T02:17:15Z,- Christopher-Chhim pull request merged: [7936](https://github.com/hackforla/website/pull/7936#event-17145393758) at 2025-04-06 07:17 PM PDT -Christopher-Chhim,2025-04-09T00:26:22Z,- Christopher-Chhim commented on pull request: [8047](https://github.com/hackforla/website/pull/8047#issuecomment-2787930752) at 2025-04-08 05:26 PM PDT -Christopher-Chhim,2025-04-11T01:06:39Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795571698) at 2025-04-10 06:06 PM PDT -Christopher-Chhim,2025-04-11T01:06:39Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795571698) at 2025-04-10 06:06 PM PDT -Christopher-Chhim,2025-04-11T01:15:18Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795579964) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:15:18Z,- Christopher-Chhim commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795579964) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:15:50Z,- Christopher-Chhim submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758911054) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:15:50Z,- Christopher-Chhim submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758911054) at 2025-04-10 06:15 PM PDT -Christopher-Chhim,2025-04-11T01:23:39Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795588226) at 2025-04-10 06:23 PM PDT -Christopher-Chhim,2025-04-11T01:29:20Z,- Christopher-Chhim submitted pull request review: [8047](https://github.com/hackforla/website/pull/8047#pullrequestreview-2758925674) at 2025-04-10 06:29 PM PDT -Christopher-Chhim,2025-04-11T01:30:13Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795594905) at 2025-04-10 06:30 PM PDT -Christopher-Chhim,2025-04-11T01:38:53Z,- Christopher-Chhim submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2758935631) at 2025-04-10 06:38 PM PDT -Christopher-Chhim,2025-04-11T01:43:31Z,- Christopher-Chhim commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2795608246) at 2025-04-10 06:43 PM PDT -Christopher-Chhim,2025-04-11T01:44:17Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795608919) at 2025-04-10 06:44 PM PDT -Christopher-Chhim,2025-04-11T01:46:36Z,- Christopher-Chhim commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2795611069) at 2025-04-10 06:46 PM PDT -Christopher-Chhim,2025-04-11T01:48:42Z,- Christopher-Chhim assigned to issue: [8050](https://github.com/hackforla/website/issues/8050) at 2025-04-10 06:48 PM PDT -Christopher-Chhim,2025-04-11T01:48:56Z,- Christopher-Chhim unassigned from issue: [8050](https://github.com/hackforla/website/issues/8050#issuecomment-2795613377) at 2025-04-10 06:48 PM PDT -Christopher-Chhim,2025-04-11T01:49:35Z,- Christopher-Chhim assigned to issue: [7548](https://github.com/hackforla/website/issues/7548) at 2025-04-10 06:49 PM PDT -Christopher-Chhim,2025-04-11T02:01:09Z,- Christopher-Chhim commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2795634756) at 2025-04-10 07:01 PM PDT -Christopher-Chhim,2025-04-11T02:36:51Z,- Christopher-Chhim opened pull request: [8057](https://github.com/hackforla/website/pull/8057) at 2025-04-10 07:36 PM PDT -Christopher-Chhim,2025-06-01T16:21:37Z,- Christopher-Chhim pull request closed w/o merging: [8057](https://github.com/hackforla/website/pull/8057#event-17915673526) at 2025-06-01 09:21 AM PDT -Christopher-Chhim,2025-06-01T16:21:53Z,- Christopher-Chhim unassigned from issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2800088489) at 2025-06-01 09:21 AM PDT -chrjl,7426,SKILLS ISSUE -chrjl,2024-02-06T04:06:42Z,- chrjl opened issue: [6251](https://github.com/hackforla/website/issues/6251) at 2024-02-05 08:06 PM PST -chrjl,2024-02-07T00:43:50Z,- chrjl assigned to issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1928754968) at 2024-02-06 04:43 PM PST -chrjl,2024-09-10T02:35:31Z,- chrjl opened issue: [7426](https://github.com/hackforla/website/issues/7426) at 2024-09-09 07:35 PM PDT -chrjl,2024-09-10T02:35:44Z,- chrjl assigned to issue: [7426](https://github.com/hackforla/website/issues/7426) at 2024-09-09 07:35 PM PDT -chrjl,2024-09-10T03:03:12Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2339515319) at 2024-09-09 08:03 PM PDT -chrjl,2024-09-21T16:36:49Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2365247124) at 2024-09-21 09:36 AM PDT -chrjl,2024-09-21T17:48:40Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2365267138) at 2024-09-21 10:48 AM PDT -chrjl,2024-09-21T18:59:42Z,- chrjl assigned to issue: [7488](https://github.com/hackforla/website/issues/7488) at 2024-09-21 11:59 AM PDT -chrjl,2024-09-21T19:11:52Z,- chrjl commented on issue: [7488](https://github.com/hackforla/website/issues/7488#issuecomment-2365291844) at 2024-09-21 12:11 PM PDT -chrjl,2024-09-21T19:12:33Z,- chrjl commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2365292020) at 2024-09-21 12:12 PM PDT -chrjl,2024-09-24T00:27:53Z,- chrjl opened pull request: [7511](https://github.com/hackforla/website/pull/7511) at 2024-09-23 05:27 PM PDT -chrjl,2024-09-25T13:49:03Z,- chrjl pull request merged: [7511](https://github.com/hackforla/website/pull/7511#event-14399624981) at 2024-09-25 06:49 AM PDT -chrzano12,2019-07-24T02:21:54Z,- chrzano12 assigned to issue: [137](https://github.com/hackforla/website/issues/137) at 2019-07-23 07:21 PM PDT -chrzano12,2019-07-24T06:29:32Z,- chrzano12 unassigned from issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-514464523) at 2019-07-23 11:29 PM PDT -cicyhou,2020-05-19T01:25:13Z,- cicyhou commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-630520449) at 2020-05-18 06:25 PM PDT -Claudiahamilton-png,3051,SKILLS ISSUE -Claudiahamilton-png,2022-04-13T21:54:57Z,- Claudiahamilton-png opened issue: [3051](https://github.com/hackforla/website/issues/3051) at 2022-04-13 02:54 PM PDT -Claudiahamilton-png,2022-04-13T21:56:21Z,- Claudiahamilton-png assigned to issue: [3051](https://github.com/hackforla/website/issues/3051#issuecomment-1098523855) at 2022-04-13 02:56 PM PDT -Claudiahamilton-png,2022-04-20T22:25:42Z,- Claudiahamilton-png assigned to issue: [2945](https://github.com/hackforla/website/issues/2945#issuecomment-1063258221) at 2022-04-20 03:25 PM PDT -Claudiahamilton-png,2022-04-20T22:28:06Z,- Claudiahamilton-png commented on issue: [3051](https://github.com/hackforla/website/issues/3051#issuecomment-1104518974) at 2022-04-20 03:28 PM PDT -Claudiahamilton-png,2022-04-20T22:30:02Z,- Claudiahamilton-png closed issue as completed: [3051](https://github.com/hackforla/website/issues/3051#event-6466691868) at 2022-04-20 03:30 PM PDT -Claudiahamilton-png,2022-05-11T21:59:57Z,- Claudiahamilton-png closed issue as completed: [2945](https://github.com/hackforla/website/issues/2945#event-6593882013) at 2022-05-11 02:59 PM PDT -Claudiahamilton-png,2022-05-11T22:00:11Z,- Claudiahamilton-png unassigned from issue: [2945](https://github.com/hackforla/website/issues/2945#event-6593882013) at 2022-05-11 03:00 PM PDT -Claudiahamilton-png,2022-05-19T15:17:05Z,- Claudiahamilton-png assigned to issue: [2946](https://github.com/hackforla/website/issues/2946#issuecomment-1063260310) at 2022-05-19 08:17 AM PDT -Claudiahamilton-png,2022-10-04T01:12:53Z,- Claudiahamilton-png unassigned from issue: [2946](https://github.com/hackforla/website/issues/2946#issuecomment-1063260310) at 2022-10-03 06:12 PM PDT -clayton1111,3266,SKILLS ISSUE -clayton1111,2022-06-20T21:41:33Z,- clayton1111 opened issue: [3266](https://github.com/hackforla/website/issues/3266) at 2022-06-20 02:41 PM PDT -clayton1111,2022-06-20T21:56:49Z,- clayton1111 assigned to issue: [3266](https://github.com/hackforla/website/issues/3266#issuecomment-1160868444) at 2022-06-20 02:56 PM PDT -clayton1111,2022-06-22T02:49:32Z,- clayton1111 assigned to issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1046314101) at 2022-06-21 07:49 PM PDT -clayton1111,2022-06-22T02:52:35Z,- clayton1111 commented on issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1162575334) at 2022-06-21 07:52 PM PDT -clayton1111,2022-06-23T18:32:22Z,- clayton1111 opened pull request: [3293](https://github.com/hackforla/website/pull/3293) at 2022-06-23 11:32 AM PDT -clayton1111,2022-06-23T18:38:58Z,- clayton1111 commented on issue: [3266](https://github.com/hackforla/website/issues/3266#issuecomment-1164745294) at 2022-06-23 11:38 AM PDT -clayton1111,2022-06-23T18:40:03Z,- clayton1111 commented on issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1164746170) at 2022-06-23 11:40 AM PDT -clayton1111,2022-06-23T21:09:27Z,- clayton1111 opened pull request: [3297](https://github.com/hackforla/website/pull/3297) at 2022-06-23 02:09 PM PDT -clayton1111,2022-06-23T21:12:27Z,- clayton1111 commented on pull request: [3293](https://github.com/hackforla/website/pull/3293#issuecomment-1164877805) at 2022-06-23 02:12 PM PDT -clayton1111,2022-06-24T02:52:48Z,- clayton1111 pull request closed w/o merging: [3293](https://github.com/hackforla/website/pull/3293#event-6871103815) at 2022-06-23 07:52 PM PDT -clayton1111,2022-06-26T05:05:46Z,- clayton1111 pull request merged: [3297](https://github.com/hackforla/website/pull/3297#event-6879792015) at 2022-06-25 10:05 PM PDT -clayton1111,2022-06-26T16:13:14Z,- clayton1111 assigned to issue: [3103](https://github.com/hackforla/website/issues/3103#issuecomment-1116854613) at 2022-06-26 09:13 AM PDT -clayton1111,2022-06-26T16:26:40Z,- clayton1111 commented on issue: [3103](https://github.com/hackforla/website/issues/3103#issuecomment-1166579797) at 2022-06-26 09:26 AM PDT -clayton1111,2022-06-26T17:29:13Z,- clayton1111 commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166595367) at 2022-06-26 10:29 AM PDT -clayton1111,2022-06-26T17:33:05Z,- clayton1111 submitted pull request review: [3304](https://github.com/hackforla/website/pull/3304#pullrequestreview-1019460564) at 2022-06-26 10:33 AM PDT -clayton1111,2022-06-27T19:09:09Z,- clayton1111 opened pull request: [3320](https://github.com/hackforla/website/pull/3320) at 2022-06-27 12:09 PM PDT -clayton1111,2022-06-27T19:12:45Z,- clayton1111 commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1167773094) at 2022-06-27 12:12 PM PDT -clayton1111,2022-06-28T17:27:13Z,- clayton1111 closed issue by PR 3702: [3165](https://github.com/hackforla/website/issues/3165#event-6896001587) at 2022-06-28 10:27 AM PDT -clayton1111,2022-06-28T17:27:16Z,- clayton1111 reopened issue: [3165](https://github.com/hackforla/website/issues/3165#event-6896001587) at 2022-06-28 10:27 AM PDT -clayton1111,2022-06-28T17:32:54Z,- clayton1111 assigned to issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1164984320) at 2022-06-28 10:32 AM PDT -clayton1111,2022-06-28T17:34:19Z,- clayton1111 commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1169024934) at 2022-06-28 10:34 AM PDT -clayton1111,2022-06-28T18:10:53Z,- clayton1111 commented on pull request: [3317](https://github.com/hackforla/website/pull/3317#issuecomment-1169060351) at 2022-06-28 11:10 AM PDT -clayton1111,2022-06-28T18:12:58Z,- clayton1111 submitted pull request review: [3317](https://github.com/hackforla/website/pull/3317#pullrequestreview-1022198980) at 2022-06-28 11:12 AM PDT -clayton1111,2022-06-28T20:43:29Z,- clayton1111 pull request merged: [3320](https://github.com/hackforla/website/pull/3320#event-6897198878) at 2022-06-28 01:43 PM PDT -clayton1111,2022-06-29T18:44:09Z,- clayton1111 commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1170362581) at 2022-06-29 11:44 AM PDT -clayton1111,2022-06-30T17:51:52Z,- clayton1111 opened pull request: [3325](https://github.com/hackforla/website/pull/3325) at 2022-06-30 10:51 AM PDT -clayton1111,2022-06-30T17:52:04Z,- clayton1111 pull request closed w/o merging: [3325](https://github.com/hackforla/website/pull/3325#event-6912884520) at 2022-06-30 10:52 AM PDT -clayton1111,2022-06-30T17:57:51Z,- clayton1111 opened pull request: [3326](https://github.com/hackforla/website/pull/3326) at 2022-06-30 10:57 AM PDT -clayton1111,2022-06-30T18:09:25Z,- clayton1111 commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1171526601) at 2022-06-30 11:09 AM PDT -clayton1111,2022-06-30T21:34:58Z,- clayton1111 pull request merged: [3326](https://github.com/hackforla/website/pull/3326#event-6914166066) at 2022-06-30 02:34 PM PDT -clayton1111,2022-07-01T18:19:22Z,- clayton1111 assigned to issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-907767061) at 2022-07-01 11:19 AM PDT -clayton1111,2022-07-05T16:08:29Z,- clayton1111 commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1175234336) at 2022-07-05 09:08 AM PDT -clayton1111,2022-07-05T16:29:33Z,- clayton1111 opened pull request: [3329](https://github.com/hackforla/website/pull/3329) at 2022-07-05 09:29 AM PDT -clayton1111,2022-07-06T02:12:29Z,- clayton1111 commented on pull request: [3325](https://github.com/hackforla/website/pull/3325#issuecomment-1175699508) at 2022-07-05 07:12 PM PDT -clayton1111,2022-07-06T16:03:21Z,- clayton1111 commented on pull request: [3330](https://github.com/hackforla/website/pull/3330#issuecomment-1176405443) at 2022-07-06 09:03 AM PDT -clayton1111,2022-07-06T16:10:24Z,- clayton1111 submitted pull request review: [3330](https://github.com/hackforla/website/pull/3330#pullrequestreview-1030360978) at 2022-07-06 09:10 AM PDT -clayton1111,2022-07-08T16:07:03Z,- clayton1111 commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1179152794) at 2022-07-08 09:07 AM PDT -clayton1111,2022-07-08T16:09:10Z,- clayton1111 commented on pull request: [3340](https://github.com/hackforla/website/pull/3340#issuecomment-1179154926) at 2022-07-08 09:09 AM PDT -clayton1111,2022-07-08T16:24:20Z,- clayton1111 submitted pull request review: [3340](https://github.com/hackforla/website/pull/3340#pullrequestreview-1033136814) at 2022-07-08 09:24 AM PDT -clayton1111,2022-07-10T00:05:32Z,- clayton1111 pull request merged: [3329](https://github.com/hackforla/website/pull/3329#event-6964460690) at 2022-07-09 05:05 PM PDT -clayton1111,2022-07-11T16:06:25Z,- clayton1111 assigned to issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1098564333) at 2022-07-11 09:06 AM PDT -clayton1111,2022-07-11T16:07:36Z,- clayton1111 commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1180597103) at 2022-07-11 09:07 AM PDT -clayton1111,2022-07-14T18:12:53Z,- clayton1111 commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1184753877) at 2022-07-14 11:12 AM PDT -clayton1111,2022-07-14T18:44:44Z,- clayton1111 submitted pull request review: [3368](https://github.com/hackforla/website/pull/3368#pullrequestreview-1039331693) at 2022-07-14 11:44 AM PDT -clayton1111,2022-07-15T17:08:23Z,- clayton1111 opened pull request: [3373](https://github.com/hackforla/website/pull/3373) at 2022-07-15 10:08 AM PDT -clayton1111,2022-07-15T17:10:41Z,- clayton1111 commented on pull request: [3373](https://github.com/hackforla/website/pull/3373#issuecomment-1185739314) at 2022-07-15 10:10 AM PDT -clayton1111,2022-07-17T21:43:04Z,- clayton1111 pull request merged: [3373](https://github.com/hackforla/website/pull/3373#event-7007989707) at 2022-07-17 02:43 PM PDT -clayton1111,2022-07-18T17:14:55Z,- clayton1111 assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-926850763) at 2022-07-18 10:14 AM PDT -clayton1111,2022-07-18T17:15:48Z,- clayton1111 commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1187811250) at 2022-07-18 10:15 AM PDT -clayton1111,2022-07-20T15:07:54Z,- clayton1111 commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1190406064) at 2022-07-20 08:07 AM PDT -clayton1111,2022-07-27T22:29:23Z,- clayton1111 commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1197438771) at 2022-07-27 03:29 PM PDT -clayton1111,2022-07-28T18:14:53Z,- clayton1111 commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1198483596) at 2022-07-28 11:14 AM PDT -clayton1111,2022-07-28T18:15:15Z,- clayton1111 unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1198483596) at 2022-07-28 11:15 AM PDT -clayton1111,2022-07-28T18:39:20Z,- clayton1111 closed issue as completed: [3266](https://github.com/hackforla/website/issues/3266#event-7084043020) at 2022-07-28 11:39 AM PDT -clayton1111,2022-11-06T18:35:24Z,- clayton1111 unassigned from issue: [2112](https://github.com/hackforla/website/issues/2112#event-6964460687) at 2022-11-06 10:35 AM PST -clockwerkz,2020-09-17T22:28:40Z,- clockwerkz commented on issue: [735](https://github.com/hackforla/website/issues/735#issuecomment-694533442) at 2020-09-17 03:28 PM PDT -clockwerkz,2020-09-17T22:39:34Z,- clockwerkz commented on issue: [735](https://github.com/hackforla/website/issues/735#issuecomment-694537496) at 2020-09-17 03:39 PM PDT -Cloid,6599,SKILLS ISSUE -Cloid,2024-04-09T02:51:34Z,- Cloid opened issue: [6599](https://github.com/hackforla/website/issues/6599) at 2024-04-08 07:51 PM PDT -Cloid,2024-04-09T02:51:47Z,- Cloid assigned to issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2044060870) at 2024-04-08 07:51 PM PDT -Cloid,2024-04-10T18:15:46Z,- Cloid assigned to issue: [6124](https://github.com/hackforla/website/issues/6124) at 2024-04-10 11:15 AM PDT -Cloid,2024-04-11T17:14:12Z,- Cloid opened pull request: [6625](https://github.com/hackforla/website/pull/6625) at 2024-04-11 10:14 AM PDT -Cloid,2024-04-12T20:12:03Z,- Cloid commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2052460087) at 2024-04-12 01:12 PM PDT -Cloid,2024-04-15T05:20:48Z,- Cloid pull request closed w/o merging: [6625](https://github.com/hackforla/website/pull/6625#event-12463169351) at 2024-04-14 10:20 PM PDT -Cloid,2024-04-16T15:26:11Z,- Cloid opened pull request: [6657](https://github.com/hackforla/website/pull/6657) at 2024-04-16 08:26 AM PDT -Cloid,2024-04-18T22:20:19Z,- Cloid pull request merged: [6657](https://github.com/hackforla/website/pull/6657#event-12529832917) at 2024-04-18 03:20 PM PDT -Cloid,2024-04-19T05:37:22Z,- Cloid assigned to issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-2010637562) at 2024-04-18 10:37 PM PDT -Cloid,2024-04-21T00:27:34Z,- Cloid opened pull request: [6693](https://github.com/hackforla/website/pull/6693) at 2024-04-20 05:27 PM PDT -Cloid,2024-04-22T01:50:12Z,- Cloid pull request merged: [6693](https://github.com/hackforla/website/pull/6693#event-12552841587) at 2024-04-21 06:50 PM PDT -Cloid,2024-04-22T22:59:13Z,- Cloid assigned to issue: [6632](https://github.com/hackforla/website/issues/6632) at 2024-04-22 03:59 PM PDT -Cloid,2024-04-23T00:33:10Z,- Cloid opened pull request: [6711](https://github.com/hackforla/website/pull/6711) at 2024-04-22 05:33 PM PDT -Cloid,2024-04-25T19:07:06Z,- Cloid pull request merged: [6711](https://github.com/hackforla/website/pull/6711#event-12614116593) at 2024-04-25 12:07 PM PDT -Cloid,2024-04-26T16:13:46Z,- Cloid assigned to issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2076530348) at 2024-04-26 09:13 AM PDT -Cloid,2024-04-29T14:30:40Z,- Cloid commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2082906320) at 2024-04-29 07:30 AM PDT -Cloid,2024-05-01T20:36:54Z,- Cloid commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2089093123) at 2024-05-01 01:36 PM PDT -Cloid,2024-05-30T05:47:36Z,- Cloid commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2138728763) at 2024-05-29 10:47 PM PDT -Cloid,2024-05-30T06:04:30Z,- Cloid opened pull request: [6915](https://github.com/hackforla/website/pull/6915) at 2024-05-29 11:04 PM PDT -Cloid,2024-07-30T03:14:44Z,- Cloid commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2257376617) at 2024-07-29 08:14 PM PDT -Cloid,2024-08-08T19:35:31Z,- Cloid commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2276521972) at 2024-08-08 12:35 PM PDT -Cloid,2024-08-19T19:17:29Z,- Cloid pull request merged: [6915](https://github.com/hackforla/website/pull/6915#event-13934777273) at 2024-08-19 12:17 PM PDT -Cloid,2024-10-11T10:15:26Z,- Cloid commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2407094654) at 2024-10-11 03:15 AM PDT -Cloid,2024-10-11T10:28:47Z,- Cloid commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2407117010) at 2024-10-11 03:28 AM PDT -Cloid,2024-12-31T07:31:20Z,- Cloid commented on issue: [7790](https://github.com/hackforla/website/issues/7790#issuecomment-2566203453) at 2024-12-30 11:31 PM PST -Cloid,2024-12-31T07:31:26Z,- Cloid opened issue: [7814](https://github.com/hackforla/website/issues/7814) at 2024-12-30 11:31 PM PST -Cloid,2025-01-20T03:35:53Z,- Cloid commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2601255964) at 2025-01-19 07:35 PM PST -Cloid,2025-01-20T04:15:57Z,- Cloid commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2601293144) at 2025-01-19 08:15 PM PST -Cloid,2025-01-20T04:16:42Z,- Cloid submitted pull request review: [7832](https://github.com/hackforla/website/pull/7832#pullrequestreview-2561283481) at 2025-01-19 08:16 PM PST -Cloid,2025-01-20T04:29:39Z,- Cloid commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2601305215) at 2025-01-19 08:29 PM PST -Cloid,2025-01-30T21:19:36Z,- Cloid commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2625618173) at 2025-01-30 01:19 PM PST -Cloid,2025-01-30T21:59:21Z,- Cloid submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2585145439) at 2025-01-30 01:59 PM PST -Cloid,2025-01-31T05:30:49Z,- Cloid submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2585702016) at 2025-01-30 09:30 PM PST -Cloid,2025-01-31T06:18:25Z,- Cloid commented on pull request: [7861](https://github.com/hackforla/website/pull/7861#issuecomment-2626394979) at 2025-01-30 10:18 PM PST -Cloid,2025-01-31T06:30:20Z,- Cloid submitted pull request review: [7861](https://github.com/hackforla/website/pull/7861#pullrequestreview-2585768565) at 2025-01-30 10:30 PM PST -Cloid,2025-01-31T06:34:31Z,- Cloid commented on pull request: [7852](https://github.com/hackforla/website/pull/7852#issuecomment-2626413547) at 2025-01-30 10:34 PM PST -Cloid,2025-01-31T06:41:07Z,- Cloid submitted pull request review: [7852](https://github.com/hackforla/website/pull/7852#pullrequestreview-2585781078) at 2025-01-30 10:41 PM PST -Cloid,2025-01-31T06:51:29Z,- Cloid commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2626433760) at 2025-01-30 10:51 PM PST -Cloid,2025-01-31T06:58:43Z,- Cloid submitted pull request review: [7851](https://github.com/hackforla/website/pull/7851#pullrequestreview-2585815337) at 2025-01-30 10:58 PM PST -Cloid,2025-02-01T00:23:13Z,- Cloid commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2628611508) at 2025-01-31 04:23 PM PST -Cloid,2025-02-01T00:23:24Z,- Cloid submitted pull request review: [7817](https://github.com/hackforla/website/pull/7817#pullrequestreview-2588098192) at 2025-01-31 04:23 PM PST -Cloid,2025-02-03T01:57:11Z,- Cloid commented on pull request: [7871](https://github.com/hackforla/website/pull/7871#issuecomment-2629724059) at 2025-02-02 05:57 PM PST -Cloid,2025-02-03T02:01:17Z,- Cloid submitted pull request review: [7871](https://github.com/hackforla/website/pull/7871#pullrequestreview-2588751786) at 2025-02-02 06:01 PM PST -Cloid,2025-02-03T02:08:41Z,- Cloid commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2629736825) at 2025-02-02 06:08 PM PST -Cloid,2025-02-08T21:44:37Z,- Cloid submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2604054878) at 2025-02-08 01:44 PM PST -Cloid,2025-02-09T19:30:56Z,- Cloid commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2646551533) at 2025-02-09 11:30 AM PST -Cloid,2025-02-14T20:37:33Z,- Cloid commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2660219679) at 2025-02-14 12:37 PM PST -Cloid,2025-02-25T05:02:14Z,- Cloid opened issue: [7943](https://github.com/hackforla/website/issues/7943) at 2025-02-24 09:02 PM PST -Cloid,2025-02-25T05:34:18Z,- Cloid opened issue: [7944](https://github.com/hackforla/website/issues/7944) at 2025-02-24 09:34 PM PST -Cloid,2025-02-27T23:33:21Z,- Cloid opened issue: [7953](https://github.com/hackforla/website/issues/7953) at 2025-02-27 03:33 PM PST -Cloid,2025-02-27T23:37:05Z,- Cloid opened issue: [7954](https://github.com/hackforla/website/issues/7954) at 2025-02-27 03:37 PM PST -Cloid,2025-02-27T23:38:29Z,- Cloid opened issue: [7955](https://github.com/hackforla/website/issues/7955) at 2025-02-27 03:38 PM PST -Cloid,2025-02-27T23:40:04Z,- Cloid opened issue: [7956](https://github.com/hackforla/website/issues/7956) at 2025-02-27 03:40 PM PST -Cloid,2025-02-27T23:59:08Z,- Cloid opened issue: [7957](https://github.com/hackforla/website/issues/7957) at 2025-02-27 03:59 PM PST -Cloid,2025-02-28T03:51:50Z,- Cloid submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2649649621) at 2025-02-27 07:51 PM PST -Cloid,2025-02-28T15:56:18Z,- Cloid commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2691003814) at 2025-02-28 07:56 AM PST -Cloid,2025-03-10T19:31:50Z,- Cloid commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2711624114) at 2025-03-10 12:31 PM PDT -Cloid,2025-03-18T05:06:15Z,- Cloid commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731656385) at 2025-03-17 10:06 PM PDT -Cloid,2025-03-21T14:47:10Z,- Cloid commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2743585572) at 2025-03-21 07:47 AM PDT -Cloid,2025-03-21T19:40:11Z,- Cloid assigned to issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2148133017) at 2025-03-21 12:40 PM PDT -Cloid,2025-03-21T19:40:44Z,- Cloid commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2744290417) at 2025-03-21 12:40 PM PDT -Cloid,2025-03-25T19:25:15Z,- Cloid submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2714956910) at 2025-03-25 12:25 PM PDT -Cloid,2025-06-01T16:06:18Z,- Cloid unassigned from issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2845288490) at 2025-06-01 09:06 AM PDT -clydeautin,7692,SKILLS ISSUE -clydeautin,2024-11-05T03:06:39Z,- clydeautin opened issue: [7692](https://github.com/hackforla/website/issues/7692) at 2024-11-04 07:06 PM PST -clydeautin,2024-11-05T03:06:49Z,- clydeautin assigned to issue: [7692](https://github.com/hackforla/website/issues/7692) at 2024-11-04 07:06 PM PST -cmedina-dev,4317,SKILLS ISSUE -cmedina-dev,2023-03-29T03:25:06Z,- cmedina-dev opened issue: [4317](https://github.com/hackforla/website/issues/4317) at 2023-03-28 08:25 PM PDT -cmedina-dev,2023-03-29T03:25:23Z,- cmedina-dev assigned to issue: [4317](https://github.com/hackforla/website/issues/4317) at 2023-03-28 08:25 PM PDT -cmedina-dev,2023-04-10T20:28:04Z,- cmedina-dev assigned to issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1501248341) at 2023-04-10 01:28 PM PDT -cmedina-dev,2023-04-10T20:42:16Z,- cmedina-dev commented on issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1502294331) at 2023-04-10 01:42 PM PDT -cmedina-dev,2023-04-10T23:08:46Z,- cmedina-dev opened pull request: [4461](https://github.com/hackforla/website/pull/4461) at 2023-04-10 04:08 PM PDT -cmedina-dev,2023-04-10T23:13:49Z,- cmedina-dev commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1502455993) at 2023-04-10 04:13 PM PDT -cmedina-dev,2023-04-10T23:34:33Z,- cmedina-dev commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1502470795) at 2023-04-10 04:34 PM PDT -cmedina-dev,2023-04-10T23:39:16Z,- cmedina-dev commented on issue: [4317](https://github.com/hackforla/website/issues/4317#issuecomment-1502473403) at 2023-04-10 04:39 PM PDT -cmedina-dev,2023-04-11T19:05:59Z,- cmedina-dev commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1503955522) at 2023-04-11 12:05 PM PDT -cmedina-dev,2023-04-12T03:00:27Z,- cmedina-dev opened issue: [4475](https://github.com/hackforla/website/issues/4475) at 2023-04-11 08:00 PM PDT -cmedina-dev,2023-04-13T03:15:54Z,- cmedina-dev pull request merged: [4461](https://github.com/hackforla/website/pull/4461#event-8992069857) at 2023-04-12 08:15 PM PDT -cmedina-dev,2023-04-13T05:05:20Z,- cmedina-dev assigned to issue: [4396](https://github.com/hackforla/website/issues/4396) at 2023-04-12 10:05 PM PDT -cmedina-dev,2023-04-13T05:06:31Z,- cmedina-dev commented on issue: [4396](https://github.com/hackforla/website/issues/4396#issuecomment-1506352254) at 2023-04-12 10:06 PM PDT -cmedina-dev,2023-04-14T01:37:31Z,- cmedina-dev opened pull request: [4511](https://github.com/hackforla/website/pull/4511) at 2023-04-13 06:37 PM PDT -cmedina-dev,2023-04-14T23:32:14Z,- cmedina-dev commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1509391005) at 2023-04-14 04:32 PM PDT -cmedina-dev,2023-04-15T00:37:33Z,- cmedina-dev submitted pull request review: [4518](https://github.com/hackforla/website/pull/4518#pullrequestreview-1386278944) at 2023-04-14 05:37 PM PDT -cmedina-dev,2023-04-15T01:24:44Z,- cmedina-dev submitted pull request review: [4519](https://github.com/hackforla/website/pull/4519#pullrequestreview-1386286107) at 2023-04-14 06:24 PM PDT -cmedina-dev,2023-04-15T15:24:09Z,- cmedina-dev submitted pull request review: [4519](https://github.com/hackforla/website/pull/4519#pullrequestreview-1386541154) at 2023-04-15 08:24 AM PDT -cmedina-dev,2023-04-15T15:31:09Z,- cmedina-dev commented on pull request: [4517](https://github.com/hackforla/website/pull/4517#issuecomment-1509872313) at 2023-04-15 08:31 AM PDT -cmedina-dev,2023-04-15T15:39:59Z,- cmedina-dev submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1386543755) at 2023-04-15 08:39 AM PDT -cmedina-dev,2023-04-16T15:29:31Z,- cmedina-dev submitted pull request review: [4521](https://github.com/hackforla/website/pull/4521#pullrequestreview-1386985884) at 2023-04-16 08:29 AM PDT -cmedina-dev,2023-04-18T16:10:09Z,- cmedina-dev commented on pull request: [4511](https://github.com/hackforla/website/pull/4511#issuecomment-1513441438) at 2023-04-18 09:10 AM PDT -cmedina-dev,2023-04-19T02:34:05Z,- cmedina-dev submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1391180027) at 2023-04-18 07:34 PM PDT -cmedina-dev,2023-04-19T03:42:24Z,- cmedina-dev pull request merged: [4511](https://github.com/hackforla/website/pull/4511#event-9041936133) at 2023-04-18 08:42 PM PDT -cng008,4319,SKILLS ISSUE -cng008,2023-03-29T03:29:30Z,- cng008 opened issue: [4319](https://github.com/hackforla/website/issues/4319) at 2023-03-28 08:29 PM PDT -cng008,2023-03-29T03:35:22Z,- cng008 assigned to issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1487895768) at 2023-03-28 08:35 PM PDT -cng008,2023-04-02T23:06:25Z,- cng008 assigned to issue: [4366](https://github.com/hackforla/website/issues/4366#issuecomment-1493273041) at 2023-04-02 04:06 PM PDT -cng008,2023-04-02T23:23:08Z,- cng008 commented on issue: [4366](https://github.com/hackforla/website/issues/4366#issuecomment-1493465679) at 2023-04-02 04:23 PM PDT -cng008,2023-04-03T00:09:19Z,- cng008 opened pull request: [4374](https://github.com/hackforla/website/pull/4374) at 2023-04-02 05:09 PM PDT -cng008,2023-04-03T18:29:38Z,- cng008 commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1494785927) at 2023-04-03 11:29 AM PDT -cng008,2023-04-03T18:42:07Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1494801431) at 2023-04-03 11:42 AM PDT -cng008,2023-04-04T00:51:01Z,- cng008 submitted pull request review: [4402](https://github.com/hackforla/website/pull/4402#pullrequestreview-1370004572) at 2023-04-03 05:51 PM PDT -cng008,2023-04-04T06:06:23Z,- cng008 commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1495400957) at 2023-04-03 11:06 PM PDT -cng008,2023-04-04T23:01:03Z,- cng008 pull request merged: [4374](https://github.com/hackforla/website/pull/4374#event-8929488250) at 2023-04-04 04:01 PM PDT -cng008,2023-04-04T23:24:28Z,- cng008 assigned to issue: [4358](https://github.com/hackforla/website/issues/4358) at 2023-04-04 04:24 PM PDT -cng008,2023-04-04T23:25:57Z,- cng008 commented on issue: [4358](https://github.com/hackforla/website/issues/4358#issuecomment-1496719138) at 2023-04-04 04:25 PM PDT -cng008,2023-04-04T23:52:43Z,- cng008 opened pull request: [4412](https://github.com/hackforla/website/pull/4412) at 2023-04-04 04:52 PM PDT -cng008,2023-04-07T03:59:06Z,- cng008 pull request merged: [4412](https://github.com/hackforla/website/pull/4412#event-8951284477) at 2023-04-06 08:59 PM PDT -cng008,2023-04-08T02:14:50Z,- cng008 assigned to issue: [4254](https://github.com/hackforla/website/issues/4254#issuecomment-1480465245) at 2023-04-07 07:14 PM PDT -cng008,2023-04-08T02:15:48Z,- cng008 commented on issue: [4254](https://github.com/hackforla/website/issues/4254#issuecomment-1500764574) at 2023-04-07 07:15 PM PDT -cng008,2023-04-08T02:53:59Z,- cng008 opened pull request: [4443](https://github.com/hackforla/website/pull/4443) at 2023-04-07 07:53 PM PDT -cng008,2023-04-10T00:47:38Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1501258943) at 2023-04-09 05:47 PM PDT -cng008,2023-04-11T08:05:05Z,- cng008 pull request merged: [4443](https://github.com/hackforla/website/pull/4443#event-8970540691) at 2023-04-11 01:05 AM PDT -cng008,2023-04-12T03:01:07Z,- cng008 opened issue: [4477](https://github.com/hackforla/website/issues/4477) at 2023-04-11 08:01 PM PDT -cng008,2023-04-12T15:33:30Z,- cng008 assigned to issue: [4253](https://github.com/hackforla/website/issues/4253#issuecomment-1480446659) at 2023-04-12 08:33 AM PDT -cng008,2023-04-12T15:34:36Z,- cng008 commented on issue: [4253](https://github.com/hackforla/website/issues/4253#issuecomment-1505485797) at 2023-04-12 08:34 AM PDT -cng008,2023-04-12T20:13:03Z,- cng008 opened pull request: [4495](https://github.com/hackforla/website/pull/4495) at 2023-04-12 01:13 PM PDT -cng008,2023-04-12T20:24:47Z,- cng008 submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1382064363) at 2023-04-12 01:24 PM PDT -cng008,2023-04-13T20:29:43Z,- cng008 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1507574430) at 2023-04-13 01:29 PM PDT -cng008,2023-04-14T01:28:04Z,- cng008 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1507803944) at 2023-04-13 06:28 PM PDT -cng008,2023-04-18T22:33:10Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1513869075) at 2023-04-18 03:33 PM PDT -cng008,2023-04-21T07:02:45Z,- cng008 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517362964) at 2023-04-21 12:02 AM PDT -cng008,2023-04-27T08:05:03Z,- cng008 pull request merged: [4495](https://github.com/hackforla/website/pull/4495#event-9111354757) at 2023-04-27 01:05 AM PDT -cng008,2023-05-04T00:56:01Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1533927051) at 2023-05-03 05:56 PM PDT -cng008,2023-05-10T03:07:57Z,- cng008 commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1541266617) at 2023-05-09 08:07 PM PDT -cng008,2023-05-10T20:42:16Z,- cng008 submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1421349990) at 2023-05-10 01:42 PM PDT -cng008,2023-05-12T03:01:22Z,- cng008 submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1423700703) at 2023-05-11 08:01 PM PDT -cng008,2023-05-15T22:57:53Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1548724039) at 2023-05-15 03:57 PM PDT -cng008,2023-05-21T19:25:40Z,- cng008 opened issue: [4705](https://github.com/hackforla/website/issues/4705) at 2023-05-21 12:25 PM PDT -cng008,2023-05-22T03:54:22Z,- cng008 opened issue: [4706](https://github.com/hackforla/website/issues/4706) at 2023-05-21 08:54 PM PDT -cng008,2023-05-22T22:51:53Z,- cng008 assigned to issue: [4705](https://github.com/hackforla/website/issues/4705) at 2023-05-22 03:51 PM PDT -cng008,2023-05-22T23:03:56Z,- cng008 commented on issue: [4705](https://github.com/hackforla/website/issues/4705#issuecomment-1558155493) at 2023-05-22 04:03 PM PDT -cng008,2023-05-23T03:55:06Z,- cng008 closed issue as completed: [4705](https://github.com/hackforla/website/issues/4705#event-9310581660) at 2023-05-22 08:55 PM PDT -cng008,2023-05-26T16:22:41Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1564633051) at 2023-05-26 09:22 AM PDT -cng008,2023-06-10T17:18:02Z,- cng008 commented on issue: [4319](https://github.com/hackforla/website/issues/4319#issuecomment-1585742944) at 2023-06-10 10:18 AM PDT -cng008,2023-08-08T21:44:02Z,- cng008 closed issue as completed: [4319](https://github.com/hackforla/website/issues/4319#event-10040384996) at 2023-08-08 02:44 PM PDT -cnk,2020-01-19T19:34:23Z,- cnk assigned to issue: [228](https://github.com/hackforla/website/issues/228) at 2020-01-19 11:34 AM PST -cnk,2020-01-19T19:44:04Z,- cnk assigned to issue: [269](https://github.com/hackforla/website/issues/269) at 2020-01-19 11:44 AM PST -cnk,2020-01-21T01:01:29Z,- cnk opened pull request: [279](https://github.com/hackforla/website/pull/279) at 2020-01-20 05:01 PM PST -cnk,2020-01-21T01:02:18Z,- cnk pull request merged: [279](https://github.com/hackforla/website/pull/279#event-2964539834) at 2020-01-20 05:02 PM PST -cnk,2020-01-21T01:06:03Z,- cnk commented on issue: [269](https://github.com/hackforla/website/issues/269#issuecomment-576475683) at 2020-01-20 05:06 PM PST -cnk,2020-01-21T03:54:47Z,- cnk commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-576507476) at 2020-01-20 07:54 PM PST -cnk,2020-01-21T16:20:44Z,- cnk closed issue as completed: [269](https://github.com/hackforla/website/issues/269#event-2966857341) at 2020-01-21 08:20 AM PST -cnk,2020-01-27T22:49:07Z,- cnk assigned to issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-578534005) at 2020-01-27 02:49 PM PST -cnk,2020-02-05T03:14:51Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-582221400) at 2020-02-04 07:14 PM PST -cnk,2020-02-09T03:15:32Z,- cnk submitted pull request review: [300](https://github.com/hackforla/website/pull/300#pullrequestreview-355581008) at 2020-02-08 07:15 PM PST -cnk,2020-02-09T18:30:40Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-583877344) at 2020-02-09 10:30 AM PST -cnk,2020-02-09T19:29:45Z,- cnk commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-583883354) at 2020-02-09 11:29 AM PST -cnk,2020-02-09T20:09:27Z,- cnk opened issue: [304](https://github.com/hackforla/website/issues/304) at 2020-02-09 12:09 PM PST -cnk,2020-02-09T20:46:24Z,- cnk commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-583891244) at 2020-02-09 12:46 PM PST -cnk,2020-02-11T04:35:29Z,- cnk assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-584446021) at 2020-02-10 08:35 PM PST -cnk,2020-02-12T02:48:32Z,- cnk commented on issue: [304](https://github.com/hackforla/website/issues/304#issuecomment-584993198) at 2020-02-11 06:48 PM PST -cnk,2020-02-12T03:54:12Z,- cnk commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-585015065) at 2020-02-11 07:54 PM PST -cnk,2020-02-12T04:01:42Z,- cnk commented on issue: [302](https://github.com/hackforla/website/issues/302#issuecomment-585016780) at 2020-02-11 08:01 PM PST -cnk,2020-02-16T18:54:54Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-586740052) at 2020-02-16 10:54 AM PST -cnk,2020-02-16T18:57:14Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-586740311) at 2020-02-16 10:57 AM PST -cnk,2020-02-16T19:19:21Z,- cnk opened issue: [311](https://github.com/hackforla/website/issues/311) at 2020-02-16 11:19 AM PST -cnk,2020-02-19T04:52:55Z,- cnk opened pull request: [320](https://github.com/hackforla/website/pull/320) at 2020-02-18 08:52 PM PST -cnk,2020-02-19T04:56:36Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-588035631) at 2020-02-18 08:56 PM PST -cnk,2020-03-01T18:43:32Z,- cnk assigned to issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-590114601) at 2020-03-01 10:43 AM PST -cnk,2020-03-02T03:33:29Z,- cnk opened pull request: [334](https://github.com/hackforla/website/pull/334) at 2020-03-01 07:33 PM PST -cnk,2020-03-02T03:33:40Z,- cnk pull request merged: [334](https://github.com/hackforla/website/pull/334#event-3086286163) at 2020-03-01 07:33 PM PST -cnk,2020-03-02T03:36:27Z,- cnk opened pull request: [335](https://github.com/hackforla/website/pull/335) at 2020-03-01 07:36 PM PST -cnk,2020-03-02T04:06:51Z,- cnk commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-593208997) at 2020-03-01 08:06 PM PST -cnk,2020-03-02T04:08:59Z,- cnk commented on pull request: [320](https://github.com/hackforla/website/pull/320#issuecomment-593209365) at 2020-03-01 08:08 PM PST -cnk,2020-03-02T04:08:59Z,- cnk pull request closed w/o merging: [320](https://github.com/hackforla/website/pull/320#event-3086339640) at 2020-03-01 08:08 PM PST -cnk,2020-03-02T05:09:55Z,- cnk pull request merged: [335](https://github.com/hackforla/website/pull/335#event-3086431014) at 2020-03-01 09:09 PM PST -cnk,2020-03-02T05:54:21Z,- cnk opened pull request: [336](https://github.com/hackforla/website/pull/336) at 2020-03-01 09:54 PM PST -cnk,2020-03-02T05:54:37Z,- cnk pull request merged: [336](https://github.com/hackforla/website/pull/336#event-3086513091) at 2020-03-01 09:54 PM PST -cnk,2020-03-02T05:55:31Z,- cnk commented on pull request: [317](https://github.com/hackforla/website/pull/317#issuecomment-593233547) at 2020-03-01 09:55 PM PST -cnk,2020-03-03T02:42:00Z,- cnk reopened pull request: [310](https://github.com/hackforla/website/pull/310#event-3028954963) at 2020-03-02 06:42 PM PST -cnk,2020-03-03T03:17:13Z,- cnk opened pull request: [341](https://github.com/hackforla/website/pull/341) at 2020-03-02 07:17 PM PST -cnk,2020-03-03T03:23:19Z,- cnk commented on pull request: [310](https://github.com/hackforla/website/pull/310#issuecomment-593747421) at 2020-03-02 07:23 PM PST -cnk,2020-03-03T03:24:51Z,- cnk commented on pull request: [315](https://github.com/hackforla/website/pull/315#issuecomment-593747804) at 2020-03-02 07:24 PM PST -cnk,2020-03-03T21:15:07Z,- cnk opened pull request: [343](https://github.com/hackforla/website/pull/343) at 2020-03-03 01:15 PM PST -cnk,2020-03-04T01:05:51Z,- cnk pull request merged: [343](https://github.com/hackforla/website/pull/343#event-3094499702) at 2020-03-03 05:05 PM PST -cnk,2020-03-04T02:43:04Z,- cnk opened pull request: [345](https://github.com/hackforla/website/pull/345) at 2020-03-03 06:43 PM PST -cnk,2020-03-04T02:43:13Z,- cnk pull request merged: [345](https://github.com/hackforla/website/pull/345#event-3094754222) at 2020-03-03 06:43 PM PST -cnk,2020-03-04T03:00:37Z,- cnk assigned to issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-593677710) at 2020-03-03 07:00 PM PST -cnk,2020-03-04T03:29:31Z,- cnk commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-594306649) at 2020-03-03 07:29 PM PST -cnk,2020-03-04T04:11:24Z,- cnk opened issue: [346](https://github.com/hackforla/website/issues/346) at 2020-03-03 08:11 PM PST -cnk,2020-03-04T04:19:17Z,- cnk opened pull request: [348](https://github.com/hackforla/website/pull/348) at 2020-03-03 08:19 PM PST -cnk,2020-03-04T04:21:48Z,- cnk pull request merged: [348](https://github.com/hackforla/website/pull/348#event-3094922960) at 2020-03-03 08:21 PM PST -cnk,2020-03-04T04:22:40Z,- cnk closed issue by PR 341: [303](https://github.com/hackforla/website/issues/303#event-3094924286) at 2020-03-03 08:22 PM PST -cnk,2020-03-04T04:22:40Z,- cnk pull request merged: [341](https://github.com/hackforla/website/pull/341#event-3094924288) at 2020-03-03 08:22 PM PST -cnk,2020-03-04T04:26:45Z,- cnk commented on pull request: [341](https://github.com/hackforla/website/pull/341#issuecomment-594319869) at 2020-03-03 08:26 PM PST -cnk,2020-03-04T04:41:03Z,- cnk commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-594323221) at 2020-03-03 08:41 PM PST -cnk,2020-03-05T03:35:15Z,- cnk opened pull request: [350](https://github.com/hackforla/website/pull/350) at 2020-03-04 07:35 PM PST -cnk,2020-03-05T03:40:24Z,- cnk commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-595012348) at 2020-03-04 07:40 PM PST -cnk,2020-03-05T03:40:25Z,- cnk closed issue as completed: [282](https://github.com/hackforla/website/issues/282#event-3099546783) at 2020-03-04 07:40 PM PST -cnk,2020-03-05T04:24:45Z,- cnk closed issue by PR 350: [288](https://github.com/hackforla/website/issues/288#event-3099614235) at 2020-03-04 08:24 PM PST -cnk,2020-03-05T04:24:45Z,- cnk pull request merged: [350](https://github.com/hackforla/website/pull/350#event-3099614244) at 2020-03-04 08:24 PM PST -cnk,2020-03-06T17:33:42Z,- cnk opened pull request: [353](https://github.com/hackforla/website/pull/353) at 2020-03-06 09:33 AM PST -cnk,2020-03-06T21:34:54Z,- cnk commented on issue: [304](https://github.com/hackforla/website/issues/304#issuecomment-595974980) at 2020-03-06 01:34 PM PST -cnk,2020-03-08T16:28:06Z,- cnk commented on issue: [352](https://github.com/hackforla/website/issues/352#issuecomment-596223845) at 2020-03-08 09:28 AM PDT -cnk,2020-03-08T17:49:01Z,- cnk pull request merged: [353](https://github.com/hackforla/website/pull/353#event-3108584245) at 2020-03-08 10:49 AM PDT -cnk,2020-03-08T17:58:54Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-596232831) at 2020-03-08 10:58 AM PDT -cnk,2020-03-08T18:05:35Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-596233467) at 2020-03-08 11:05 AM PDT -cnk,2020-03-08T18:06:28Z,- cnk assigned to issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-596233467) at 2020-03-08 11:06 AM PDT -cnk,2020-03-09T00:55:23Z,- cnk commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596275478) at 2020-03-08 05:55 PM PDT -cnk,2020-03-09T03:19:11Z,- cnk opened pull request: [354](https://github.com/hackforla/website/pull/354) at 2020-03-08 08:19 PM PDT -cnk,2020-03-09T03:22:10Z,- cnk commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596313516) at 2020-03-08 08:22 PM PDT -cnk,2020-03-10T21:24:01Z,- cnk pull request merged: [354](https://github.com/hackforla/website/pull/354#event-3116509344) at 2020-03-10 02:24 PM PDT -cnk,2020-03-11T07:12:35Z,- cnk commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-597478604) at 2020-03-11 12:12 AM PDT -cnk,2020-03-15T03:21:09Z,- cnk commented on pull request: [363](https://github.com/hackforla/website/pull/363#issuecomment-599162510) at 2020-03-14 08:21 PM PDT -cnk,2020-03-15T03:26:26Z,- cnk commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-14 08:26 PM PDT -cnk,2020-03-15T03:31:24Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-599163118) at 2020-03-14 08:31 PM PDT -cnk,2020-03-15T04:11:47Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-599165542) at 2020-03-14 09:11 PM PDT -cnk,2020-03-15T06:18:35Z,- cnk commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-599173019) at 2020-03-14 11:18 PM PDT -cnk,2020-03-15T17:11:27Z,- cnk opened issue: [367](https://github.com/hackforla/website/issues/367) at 2020-03-15 10:11 AM PDT -cnk,2020-03-15T17:56:01Z,- cnk opened issue: [368](https://github.com/hackforla/website/issues/368) at 2020-03-15 10:56 AM PDT -cnk,2020-03-15T18:02:43Z,- cnk commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:02 AM PDT -cnk,2020-03-15T18:14:00Z,- cnk assigned to issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -cnk,2020-03-15T18:14:07Z,- cnk assigned to issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-15 11:14 AM PDT -cnk,2020-03-15T18:14:17Z,- cnk unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -cnk,2020-03-15T18:14:17Z,- cnk unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -cnk,2020-03-16T02:57:24Z,- cnk commented on pull request: [369](https://github.com/hackforla/website/pull/369#issuecomment-599321945) at 2020-03-15 07:57 PM PDT -cnk,2020-03-22T17:14:45Z,- cnk opened issue: [384](https://github.com/hackforla/website/issues/384) at 2020-03-22 10:14 AM PDT -cnk,2020-03-22T17:47:26Z,- cnk opened issue: [385](https://github.com/hackforla/website/issues/385) at 2020-03-22 10:47 AM PDT -cnk,2020-03-22T17:47:30Z,- cnk assigned to issue: [385](https://github.com/hackforla/website/issues/385) at 2020-03-22 10:47 AM PDT -cnk,2020-03-22T17:56:30Z,- cnk commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-602247393) at 2020-03-22 10:56 AM PDT -cnk,2020-03-22T18:07:38Z,- cnk opened issue: [386](https://github.com/hackforla/website/issues/386) at 2020-03-22 11:07 AM PDT -cnk,2020-03-29T19:24:22Z,- cnk commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-605686463) at 2020-03-29 12:24 PM PDT -cnk,2020-04-05T17:26:11Z,- cnk unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -cnk,2020-04-05T18:47:55Z,- cnk opened issue: [413](https://github.com/hackforla/website/issues/413) at 2020-04-05 11:47 AM PDT -cnk,2020-04-05T18:48:06Z,- cnk assigned to issue: [413](https://github.com/hackforla/website/issues/413) at 2020-04-05 11:48 AM PDT -cnk,2020-04-10T05:41:41Z,- cnk commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-09 10:41 PM PDT -cnk,2020-04-11T04:14:56Z,- cnk opened pull request: [422](https://github.com/hackforla/website/pull/422) at 2020-04-10 09:14 PM PDT -cnk,2020-04-12T04:27:06Z,- cnk commented on issue: [402](https://github.com/hackforla/website/issues/402#issuecomment-612562561) at 2020-04-11 09:27 PM PDT -cnk,2020-04-12T04:27:06Z,- cnk reopened issue: [402](https://github.com/hackforla/website/issues/402#issuecomment-612562561) at 2020-04-11 09:27 PM PDT -cnk,2020-04-12T17:09:32Z,- cnk assigned to issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-12 10:09 AM PDT -cnk,2020-04-12T17:17:46Z,- cnk closed issue by PR 422: [413](https://github.com/hackforla/website/issues/413#event-3225282994) at 2020-04-12 10:17 AM PDT -cnk,2020-04-12T17:17:46Z,- cnk pull request merged: [422](https://github.com/hackforla/website/pull/422#event-3225282996) at 2020-04-12 10:17 AM PDT -cnk,2020-04-12T17:59:15Z,- cnk unassigned from issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-612653514) at 2020-04-12 10:59 AM PDT -cnk,2020-04-12T18:00:25Z,- cnk opened issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-12 11:00 AM PDT -cnk,2020-04-12T18:02:02Z,- cnk opened pull request: [426](https://github.com/hackforla/website/pull/426) at 2020-04-12 11:02 AM PDT -cnk,2020-04-12T18:02:36Z,- cnk opened pull request: [427](https://github.com/hackforla/website/pull/427) at 2020-04-12 11:02 AM PDT -cnk,2020-04-12T18:04:23Z,- cnk commented on pull request: [427](https://github.com/hackforla/website/pull/427#issuecomment-612654164) at 2020-04-12 11:04 AM PDT -cnk,2020-04-12T18:06:27Z,- cnk opened pull request: [428](https://github.com/hackforla/website/pull/428) at 2020-04-12 11:06 AM PDT -cnk,2020-04-12T19:39:44Z,- cnk assigned to issue: [429](https://github.com/hackforla/website/issues/429) at 2020-04-12 12:39 PM PDT -cnk,2020-04-12T20:42:12Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-612673174) at 2020-04-12 01:42 PM PDT -cnk,2020-04-12T21:10:31Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-612676425) at 2020-04-12 02:10 PM PDT -cnk,2020-04-13T00:42:07Z,- cnk commented on pull request: [433](https://github.com/hackforla/website/pull/433#issuecomment-612700993) at 2020-04-12 05:42 PM PDT -cnk,2020-04-13T02:42:21Z,- cnk closed issue by PR 426: [252](https://github.com/hackforla/website/issues/252#event-3225755868) at 2020-04-12 07:42 PM PDT -cnk,2020-04-13T02:42:22Z,- cnk pull request merged: [426](https://github.com/hackforla/website/pull/426#event-3225755869) at 2020-04-12 07:42 PM PDT -cnk,2020-04-13T02:43:07Z,- cnk pull request merged: [428](https://github.com/hackforla/website/pull/428#event-3225756979) at 2020-04-12 07:43 PM PDT -cnk,2020-04-13T16:08:12Z,- cnk assigned to issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T16:08:19Z,- cnk unassigned from issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T16:08:19Z,- cnk unassigned from issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T16:08:34Z,- cnk assigned to issue: [425](https://github.com/hackforla/website/issues/425) at 2020-04-13 09:08 AM PDT -cnk,2020-04-13T19:23:23Z,- cnk commented on issue: [425](https://github.com/hackforla/website/issues/425#issuecomment-613053483) at 2020-04-13 12:23 PM PDT -cnk,2020-04-13T23:04:16Z,- cnk pull request merged: [427](https://github.com/hackforla/website/pull/427#event-3228861245) at 2020-04-13 04:04 PM PDT -cnk,2020-04-15T04:11:10Z,- cnk commented on pull request: [439](https://github.com/hackforla/website/pull/439#issuecomment-613805156) at 2020-04-14 09:11 PM PDT -cnk,2020-04-15T04:11:29Z,- cnk commented on pull request: [438](https://github.com/hackforla/website/pull/438#issuecomment-613805225) at 2020-04-14 09:11 PM PDT -cnk,2020-04-19T16:53:19Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-616181421) at 2020-04-19 09:53 AM PDT -cnk,2020-04-19T16:56:02Z,- cnk commented on issue: [425](https://github.com/hackforla/website/issues/425#issuecomment-616181980) at 2020-04-19 09:56 AM PDT -cnk,2020-04-19T17:50:48Z,- cnk commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-616194604) at 2020-04-19 10:50 AM PDT -cnk,2020-04-19T18:20:23Z,- cnk closed issue by PR 443: [425](https://github.com/hackforla/website/issues/425#event-3249336552) at 2020-04-19 11:20 AM PDT -cnk,2020-04-20T16:00:33Z,- cnk commented on pull request: [452](https://github.com/hackforla/website/pull/452#issuecomment-616647708) at 2020-04-20 09:00 AM PDT -cnk,2020-04-22T02:07:06Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-617503969) at 2020-04-21 07:07 PM PDT -cnk,2020-04-22T04:01:12Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-617535325) at 2020-04-21 09:01 PM PDT -cnk,2020-04-22T04:25:09Z,- cnk commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-617541264) at 2020-04-21 09:25 PM PDT -cnk,2020-04-22T04:30:54Z,- cnk opened pull request: [462](https://github.com/hackforla/website/pull/462) at 2020-04-21 09:30 PM PDT -cnk,2020-04-24T21:52:25Z,- cnk closed issue by PR 464: [463](https://github.com/hackforla/website/issues/463#event-3271149188) at 2020-04-24 02:52 PM PDT -cnk,2020-04-24T21:53:16Z,- cnk pull request merged: [462](https://github.com/hackforla/website/pull/462#event-3271150805) at 2020-04-24 02:53 PM PDT -cnk,2020-04-24T23:40:06Z,- cnk opened pull request: [465](https://github.com/hackforla/website/pull/465) at 2020-04-24 04:40 PM PDT -cnk,2020-04-24T23:40:12Z,- cnk pull request merged: [465](https://github.com/hackforla/website/pull/465#event-3271341444) at 2020-04-24 04:40 PM PDT -cnk,2020-04-26T17:07:59Z,- cnk assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-619575488) at 2020-04-26 10:07 AM PDT -cnk,2020-04-26T17:56:00Z,- cnk commented on issue: [466](https://github.com/hackforla/website/issues/466#issuecomment-619594952) at 2020-04-26 10:56 AM PDT -cnk,2020-04-26T17:56:00Z,- cnk closed issue as completed: [466](https://github.com/hackforla/website/issues/466#event-3273198682) at 2020-04-26 10:56 AM PDT -cnk,2020-04-26T21:33:50Z,- cnk commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619628473) at 2020-04-26 02:33 PM PDT -cnk,2020-04-28T23:06:55Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-620900800) at 2020-04-28 04:06 PM PDT -cnk,2020-04-30T05:42:18Z,- cnk opened pull request: [475](https://github.com/hackforla/website/pull/475) at 2020-04-29 10:42 PM PDT -cnk,2020-05-01T01:57:55Z,- cnk opened issue: [478](https://github.com/hackforla/website/issues/478) at 2020-04-30 06:57 PM PDT -cnk,2020-05-01T01:58:00Z,- cnk assigned to issue: [478](https://github.com/hackforla/website/issues/478) at 2020-04-30 06:58 PM PDT -cnk,2020-05-01T04:38:39Z,- cnk opened pull request: [479](https://github.com/hackforla/website/pull/479) at 2020-04-30 09:38 PM PDT -cnk,2020-05-01T04:39:38Z,- cnk pull request merged: [479](https://github.com/hackforla/website/pull/479#event-3292212846) at 2020-04-30 09:39 PM PDT -cnk,2020-05-01T04:39:55Z,- cnk pull request merged: [475](https://github.com/hackforla/website/pull/475#event-3292213276) at 2020-04-30 09:39 PM PDT -cnk,2020-05-01T04:56:46Z,- cnk commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-622248375) at 2020-04-30 09:56 PM PDT -cnk,2020-05-01T05:13:09Z,- cnk commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-622251882) at 2020-04-30 10:13 PM PDT -cnk,2020-05-01T15:40:05Z,- cnk commented on issue: [478](https://github.com/hackforla/website/issues/478#issuecomment-622439000) at 2020-05-01 08:40 AM PDT -cnk,2020-05-01T20:13:14Z,- cnk submitted pull request review: [480](https://github.com/hackforla/website/pull/480#pullrequestreview-404376253) at 2020-05-01 01:13 PM PDT -cnk,2020-05-03T18:03:12Z,- cnk assigned to issue: [477](https://github.com/hackforla/website/issues/477#issuecomment-623153799) at 2020-05-03 11:03 AM PDT -cnk,2020-05-03T22:20:50Z,- cnk opened pull request: [491](https://github.com/hackforla/website/pull/491) at 2020-05-03 03:20 PM PDT -cnk,2020-05-03T22:20:59Z,- cnk pull request merged: [491](https://github.com/hackforla/website/pull/491#event-3297898387) at 2020-05-03 03:20 PM PDT -cnk,2020-05-03T22:21:55Z,- cnk commented on pull request: [480](https://github.com/hackforla/website/pull/480#issuecomment-623191847) at 2020-05-03 03:21 PM PDT -cnk,2020-05-04T02:59:21Z,- cnk commented on issue: [477](https://github.com/hackforla/website/issues/477#issuecomment-623235750) at 2020-05-03 07:59 PM PDT -cnk,2020-05-04T02:59:21Z,- cnk closed issue as completed: [477](https://github.com/hackforla/website/issues/477#event-3298152009) at 2020-05-03 07:59 PM PDT -cnk,2020-05-04T23:09:56Z,- cnk opened issue: [494](https://github.com/hackforla/website/issues/494) at 2020-05-04 04:09 PM PDT -cnk,2020-05-05T16:18:36Z,- cnk commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-624153531) at 2020-05-05 09:18 AM PDT -cnk,2020-05-05T18:05:33Z,- cnk opened pull request: [495](https://github.com/hackforla/website/pull/495) at 2020-05-05 11:05 AM PDT -cnk,2020-05-06T03:10:01Z,- cnk commented on pull request: [495](https://github.com/hackforla/website/pull/495#issuecomment-624419226) at 2020-05-05 08:10 PM PDT -cnk,2020-05-06T03:12:45Z,- cnk opened issue: [496](https://github.com/hackforla/website/issues/496) at 2020-05-05 08:12 PM PDT -cnk,2020-05-06T03:13:07Z,- cnk assigned to issue: [496](https://github.com/hackforla/website/issues/496) at 2020-05-05 08:13 PM PDT -cnk,2020-05-06T03:19:51Z,- cnk opened issue: [497](https://github.com/hackforla/website/issues/497) at 2020-05-05 08:19 PM PDT -cnk,2020-05-06T03:29:49Z,- cnk opened pull request: [498](https://github.com/hackforla/website/pull/498) at 2020-05-05 08:29 PM PDT -cnk,2020-05-06T03:32:43Z,- cnk closed issue by PR 498: [496](https://github.com/hackforla/website/issues/496#event-3306766279) at 2020-05-05 08:32 PM PDT -cnk,2020-05-06T03:32:43Z,- cnk pull request merged: [498](https://github.com/hackforla/website/pull/498#event-3306766285) at 2020-05-05 08:32 PM PDT -cnk,2020-05-07T22:06:32Z,- cnk pull request merged: [495](https://github.com/hackforla/website/pull/495#event-3314831486) at 2020-05-07 03:06 PM PDT -cnk,2020-05-09T23:25:32Z,- cnk closed issue by PR 502: [501](https://github.com/hackforla/website/issues/501#event-3319832427) at 2020-05-09 04:25 PM PDT -cnk,2020-05-11T14:21:24Z,- cnk opened issue: [507](https://github.com/hackforla/website/issues/507) at 2020-05-11 07:21 AM PDT -cnk,2020-05-14T02:46:29Z,- cnk commented on pull request: [512](https://github.com/hackforla/website/pull/512#issuecomment-628353062) at 2020-05-13 07:46 PM PDT -cnk,2020-05-14T03:07:36Z,- cnk opened pull request: [513](https://github.com/hackforla/website/pull/513) at 2020-05-13 08:07 PM PDT -cnk,2020-05-14T05:14:50Z,- cnk pull request merged: [513](https://github.com/hackforla/website/pull/513#event-3334876670) at 2020-05-13 10:14 PM PDT -cnk,2020-05-14T23:10:13Z,- cnk commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-628933114) at 2020-05-14 04:10 PM PDT -cnk,2020-05-15T05:57:41Z,- cnk commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-629044159) at 2020-05-14 10:57 PM PDT -cnk,2020-05-15T20:23:24Z,- cnk opened issue: [520](https://github.com/hackforla/website/issues/520) at 2020-05-15 01:23 PM PDT -cnk,2020-05-16T00:38:04Z,- cnk commented on issue: [520](https://github.com/hackforla/website/issues/520#issuecomment-629561749) at 2020-05-15 05:38 PM PDT -cnk,2020-05-16T00:57:39Z,- cnk commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-629564623) at 2020-05-15 05:57 PM PDT -cnk,2020-05-17T16:53:36Z,- cnk closed issue by PR 523: [521](https://github.com/hackforla/website/issues/521#event-3344736257) at 2020-05-17 09:53 AM PDT -cnk,2020-05-17T17:50:39Z,- cnk assigned to issue: [507](https://github.com/hackforla/website/issues/507) at 2020-05-17 10:50 AM PDT -cnk,2020-05-17T18:09:14Z,- cnk assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-629754997) at 2020-05-17 11:09 AM PDT -cnk,2020-05-17T18:22:42Z,- cnk commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-629839788) at 2020-05-17 11:22 AM PDT -cnk,2020-05-17T18:22:42Z,- cnk closed issue as completed: [429](https://github.com/hackforla/website/issues/429#event-3344805819) at 2020-05-17 11:22 AM PDT -cnk,2020-05-18T00:45:55Z,- cnk commented on pull request: [524](https://github.com/hackforla/website/pull/524#issuecomment-629889677) at 2020-05-17 05:45 PM PDT -cnk,2020-05-21T02:35:58Z,- cnk closed issue as completed: [520](https://github.com/hackforla/website/issues/520#event-3359011842) at 2020-05-20 07:35 PM PDT -cnk,2020-05-21T02:41:25Z,- cnk commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-631844548) at 2020-05-20 07:41 PM PDT -cnk,2020-05-24T16:58:48Z,- cnk unassigned from issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-24 09:58 AM PDT -cnk,2020-05-24T19:34:13Z,- cnk opened pull request: [537](https://github.com/hackforla/website/pull/537) at 2020-05-24 12:34 PM PDT -cnk,2020-05-24T19:37:54Z,- cnk pull request merged: [537](https://github.com/hackforla/website/pull/537#event-3368238818) at 2020-05-24 12:37 PM PDT -cnk,2020-05-25T15:33:39Z,- cnk opened issue: [541](https://github.com/hackforla/website/issues/541) at 2020-05-25 08:33 AM PDT -cnk,2020-05-25T15:37:12Z,- cnk closed issue by PR 540: [534](https://github.com/hackforla/website/issues/534#event-3370659523) at 2020-05-25 08:37 AM PDT -cnk,2020-05-27T17:06:29Z,- cnk submitted pull request review: [543](https://github.com/hackforla/website/pull/543#pullrequestreview-419435826) at 2020-05-27 10:06 AM PDT -cnk,2020-05-27T18:38:45Z,- cnk submitted pull request review: [543](https://github.com/hackforla/website/pull/543#pullrequestreview-419506315) at 2020-05-27 11:38 AM PDT -cnk,2020-05-30T20:03:44Z,- cnk closed issue by PR 543: [541](https://github.com/hackforla/website/issues/541#event-3390018164) at 2020-05-30 01:03 PM PDT -cnk,2020-05-30T20:39:06Z,- cnk opened issue: [547](https://github.com/hackforla/website/issues/547) at 2020-05-30 01:39 PM PDT -cnk,2020-05-30T21:54:23Z,- cnk opened pull request: [548](https://github.com/hackforla/website/pull/548) at 2020-05-30 02:54 PM PDT -cnk,2020-05-30T23:07:00Z,- cnk pull request merged: [548](https://github.com/hackforla/website/pull/548#event-3390135333) at 2020-05-30 04:07 PM PDT -cnk,2020-05-31T21:05:46Z,- cnk commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-636529892) at 2020-05-31 02:05 PM PDT -cnk,2020-05-31T22:24:20Z,- cnk opened pull request: [554](https://github.com/hackforla/website/pull/554) at 2020-05-31 03:24 PM PDT -cnk,2020-06-01T00:21:54Z,- cnk assigned to issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636554300) at 2020-05-31 05:21 PM PDT -cnk,2020-06-01T03:02:27Z,- cnk assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-31 08:02 PM PDT -cnk,2020-06-01T17:06:22Z,- cnk unassigned from issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636554300) at 2020-06-01 10:06 AM PDT -cnk,2020-06-01T17:08:38Z,- cnk commented on issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636991537) at 2020-06-01 10:08 AM PDT -cnk,2020-06-06T23:45:18Z,- cnk commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-640132892) at 2020-06-06 04:45 PM PDT -cnk,2020-06-07T03:11:52Z,- cnk commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-640150149) at 2020-06-06 08:11 PM PDT -cnk,2020-06-07T17:37:27Z,- cnk assigned to issue: [550](https://github.com/hackforla/website/issues/550) at 2020-06-07 10:37 AM PDT -cnk,2020-06-10T01:43:57Z,- cnk closed issue by PR 561: [556](https://github.com/hackforla/website/issues/556#event-3427451473) at 2020-06-09 06:43 PM PDT -cnk,2020-06-10T02:10:22Z,- cnk closed issue by PR 564: [533](https://github.com/hackforla/website/issues/533#event-3427499327) at 2020-06-09 07:10 PM PDT -cnk,2020-06-10T02:31:21Z,- cnk commented on pull request: [569](https://github.com/hackforla/website/pull/569#issuecomment-641682740) at 2020-06-09 07:31 PM PDT -cnk,2020-06-10T02:34:52Z,- cnk commented on pull request: [573](https://github.com/hackforla/website/pull/573#issuecomment-641683690) at 2020-06-09 07:34 PM PDT -cnk,2020-06-11T01:01:03Z,- cnk pull request merged: [554](https://github.com/hackforla/website/pull/554#event-3431990241) at 2020-06-10 06:01 PM PDT -cnk,2020-06-11T01:01:03Z,- cnk closed issue by PR 554: [550](https://github.com/hackforla/website/issues/550#event-3431990235) at 2020-06-10 06:01 PM PDT -cnk,2020-06-12T04:36:57Z,- cnk commented on pull request: [572](https://github.com/hackforla/website/pull/572#issuecomment-643060009) at 2020-06-11 09:36 PM PDT -cnk,2020-06-12T04:37:08Z,- cnk closed issue as completed: [547](https://github.com/hackforla/website/issues/547#event-3436866894) at 2020-06-11 09:37 PM PDT -cnk,2020-06-14T17:10:39Z,- cnk closed issue by PR 565: [503](https://github.com/hackforla/website/issues/503#event-3441867714) at 2020-06-14 10:10 AM PDT -cnk,2020-06-14T17:10:50Z,- cnk reopened issue: [503](https://github.com/hackforla/website/issues/503#event-3441867714) at 2020-06-14 10:10 AM PDT -cnk,2020-06-21T17:27:23Z,- cnk assigned to issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-647153287) at 2020-06-21 10:27 AM PDT -cnk,2020-06-21T19:42:13Z,- cnk submitted pull request review: [581](https://github.com/hackforla/website/pull/581#pullrequestreview-434527330) at 2020-06-21 12:42 PM PDT -cnk,2020-06-22T00:36:57Z,- cnk closed issue by PR 581: [558](https://github.com/hackforla/website/issues/558#event-3466004028) at 2020-06-21 05:36 PM PDT -cnk,2020-06-22T00:55:42Z,- cnk commented on pull request: [566](https://github.com/hackforla/website/pull/566#issuecomment-647209079) at 2020-06-21 05:55 PM PDT -cnk,2020-06-24T06:50:41Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-648629007) at 2020-06-23 11:50 PM PDT -cnk,2020-06-24T14:48:59Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-648868068) at 2020-06-24 07:48 AM PDT -cnk,2020-06-24T21:28:02Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-649082100) at 2020-06-24 02:28 PM PDT -cnk,2020-06-26T23:06:05Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-650442204) at 2020-06-26 04:06 PM PDT -cnk,2020-06-28T17:34:42Z,- cnk closed issue by PR 619: [254](https://github.com/hackforla/website/issues/254#event-3490525008) at 2020-06-28 10:34 AM PDT -cnk,2020-06-29T23:13:52Z,- cnk commented on pull request: [589](https://github.com/hackforla/website/pull/589#issuecomment-651416365) at 2020-06-29 04:13 PM PDT -cnk,2020-06-29T23:20:17Z,- cnk commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-651418304) at 2020-06-29 04:20 PM PDT -cnk,2020-06-30T02:47:13Z,- cnk closed issue by PR 590: [559](https://github.com/hackforla/website/issues/559#event-3495451988) at 2020-06-29 07:47 PM PDT -cnk,2020-07-04T18:52:12Z,- cnk closed issue by PR 592: [514](https://github.com/hackforla/website/issues/514#event-3512768147) at 2020-07-04 11:52 AM PDT -cnk,2020-07-05T17:59:25Z,- cnk commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-653919386) at 2020-07-05 10:59 AM PDT -cnk,2020-07-11T12:46:47Z,- cnk commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-657057881) at 2020-07-11 05:46 AM PDT -cnk,2020-07-20T02:26:39Z,- cnk commented on pull request: [619](https://github.com/hackforla/website/pull/619#issuecomment-660764619) at 2020-07-19 07:26 PM PDT -cnk,2020-07-22T14:34:14Z,- cnk commented on pull request: [624](https://github.com/hackforla/website/pull/624#issuecomment-662489523) at 2020-07-22 07:34 AM PDT -cnk,2020-07-22T14:38:17Z,- cnk commented on pull request: [566](https://github.com/hackforla/website/pull/566#issuecomment-662491707) at 2020-07-22 07:38 AM PDT -cnk,2020-07-22T17:18:23Z,- cnk opened issue: [628](https://github.com/hackforla/website/issues/628) at 2020-07-22 10:18 AM PDT -cnk,2020-07-26T18:44:35Z,- cnk opened pull request: [644](https://github.com/hackforla/website/pull/644) at 2020-07-26 11:44 AM PDT -cnk,2020-07-26T19:48:29Z,- cnk closed issue by PR 641: [562](https://github.com/hackforla/website/issues/562#event-3587355612) at 2020-07-26 12:48 PM PDT -cnk,2020-07-27T07:28:43Z,- cnk commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664170941) at 2020-07-27 12:28 AM PDT -cnk,2020-07-27T23:27:09Z,- cnk pull request merged: [644](https://github.com/hackforla/website/pull/644#event-3592001945) at 2020-07-27 04:27 PM PDT -cnk,2020-07-31T04:42:01Z,- cnk opened issue: [660](https://github.com/hackforla/website/issues/660) at 2020-07-30 09:42 PM PDT -cnk,2020-07-31T04:42:11Z,- cnk assigned to issue: [660](https://github.com/hackforla/website/issues/660) at 2020-07-30 09:42 PM PDT -cnk,2020-07-31T04:44:16Z,- cnk commented on issue: [660](https://github.com/hackforla/website/issues/660#issuecomment-666916248) at 2020-07-30 09:44 PM PDT -cnk,2020-07-31T04:53:49Z,- cnk opened pull request: [661](https://github.com/hackforla/website/pull/661) at 2020-07-30 09:53 PM PDT -cnk,2020-07-31T04:54:04Z,- cnk closed issue by PR 661: [660](https://github.com/hackforla/website/issues/660#event-3606855894) at 2020-07-30 09:54 PM PDT -cnk,2020-07-31T04:54:04Z,- cnk pull request merged: [661](https://github.com/hackforla/website/pull/661#event-3606855898) at 2020-07-30 09:54 PM PDT -cnk,2020-08-04T15:45:38Z,- cnk opened pull request: [668](https://github.com/hackforla/website/pull/668) at 2020-08-04 08:45 AM PDT -cnk,2020-08-04T15:46:02Z,- cnk pull request merged: [668](https://github.com/hackforla/website/pull/668#event-3620877447) at 2020-08-04 08:46 AM PDT -cnk,2020-08-16T23:10:30Z,- cnk assigned to issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-674549962) at 2020-08-16 04:10 PM PDT -cnk,2020-08-17T23:10:46Z,- cnk opened pull request: [686](https://github.com/hackforla/website/pull/686) at 2020-08-17 04:10 PM PDT -cnk,2020-08-17T23:11:54Z,- cnk commented on pull request: [686](https://github.com/hackforla/website/pull/686#issuecomment-675159712) at 2020-08-17 04:11 PM PDT -cnk,2020-08-17T23:11:54Z,- cnk pull request closed w/o merging: [686](https://github.com/hackforla/website/pull/686#event-3663930391) at 2020-08-17 04:11 PM PDT -cnk,2020-08-18T21:54:33Z,- cnk submitted pull request review: [685](https://github.com/hackforla/website/pull/685#pullrequestreview-469857605) at 2020-08-18 02:54 PM PDT -cnk,2020-08-22T21:17:08Z,- cnk closed issue by PR 694: [658](https://github.com/hackforla/website/issues/658#event-3682331980) at 2020-08-22 02:17 PM PDT -cnk,2020-08-22T21:23:37Z,- cnk opened pull request: [696](https://github.com/hackforla/website/pull/696) at 2020-08-22 02:23 PM PDT -cnk,2020-08-22T21:33:23Z,- cnk opened pull request: [697](https://github.com/hackforla/website/pull/697) at 2020-08-22 02:33 PM PDT -cnk,2020-08-22T22:00:22Z,- cnk assigned to issue: [692](https://github.com/hackforla/website/issues/692#issuecomment-675621229) at 2020-08-22 03:00 PM PDT -cnk,2020-08-22T22:40:19Z,- cnk commented on pull request: [697](https://github.com/hackforla/website/pull/697#issuecomment-678704019) at 2020-08-22 03:40 PM PDT -cnk,2020-08-23T18:41:40Z,- cnk pull request merged: [697](https://github.com/hackforla/website/pull/697#event-3683046953) at 2020-08-23 11:41 AM PDT -cnk,2020-08-23T18:54:23Z,- cnk assigned to issue: [698](https://github.com/hackforla/website/issues/698) at 2020-08-23 11:54 AM PDT -cnk,2020-08-23T19:58:35Z,- cnk submitted pull request review: [685](https://github.com/hackforla/website/pull/685#pullrequestreview-473037884) at 2020-08-23 12:58 PM PDT -cnk,2020-08-26T01:55:10Z,- cnk commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-680413478) at 2020-08-25 06:55 PM PDT -cnk,2020-08-30T18:38:28Z,- cnk unassigned from issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-683454932) at 2020-08-30 11:38 AM PDT -cnk,2020-09-03T00:36:49Z,- cnk opened pull request: [714](https://github.com/hackforla/website/pull/714) at 2020-09-02 05:36 PM PDT -cnk,2020-09-03T17:32:37Z,- cnk commented on pull request: [714](https://github.com/hackforla/website/pull/714#issuecomment-686642555) at 2020-09-03 10:32 AM PDT -cnk,2020-09-04T17:45:59Z,- cnk pull request merged: [714](https://github.com/hackforla/website/pull/714#event-3730887045) at 2020-09-04 10:45 AM PDT -cnk,2020-09-06T21:06:00Z,- cnk commented on issue: [688](https://github.com/hackforla/website/issues/688#issuecomment-687901562) at 2020-09-06 02:06 PM PDT -cnk,2020-09-06T22:08:54Z,- cnk opened pull request: [720](https://github.com/hackforla/website/pull/720) at 2020-09-06 03:08 PM PDT -cnk,2020-09-06T22:37:13Z,- cnk commented on pull request: [720](https://github.com/hackforla/website/pull/720#issuecomment-687921243) at 2020-09-06 03:37 PM PDT -cnk,2020-09-07T18:13:15Z,- cnk closed issue by PR 721: [571](https://github.com/hackforla/website/issues/571#event-3738110626) at 2020-09-07 11:13 AM PDT -cnk,2020-09-07T18:13:47Z,- cnk commented on pull request: [721](https://github.com/hackforla/website/pull/721#issuecomment-688462561) at 2020-09-07 11:13 AM PDT -cnk,2020-09-11T17:25:27Z,- cnk pull request merged: [720](https://github.com/hackforla/website/pull/720#event-3757273048) at 2020-09-11 10:25 AM PDT -cnk,2020-09-13T17:44:38Z,- cnk opened issue: [730](https://github.com/hackforla/website/issues/730) at 2020-09-13 10:44 AM PDT -cnk,2020-09-13T17:45:03Z,- cnk opened issue: [731](https://github.com/hackforla/website/issues/731) at 2020-09-13 10:45 AM PDT -cnk,2020-09-13T21:01:57Z,- cnk opened pull request: [732](https://github.com/hackforla/website/pull/732) at 2020-09-13 02:01 PM PDT -cnk,2020-09-16T19:02:18Z,- cnk pull request merged: [732](https://github.com/hackforla/website/pull/732#event-3774638874) at 2020-09-16 12:02 PM PDT -cnk,2020-09-18T17:28:15Z,- cnk commented on pull request: [736](https://github.com/hackforla/website/pull/736#issuecomment-694991893) at 2020-09-18 10:28 AM PDT -cnk,2020-09-18T18:32:49Z,- cnk opened pull request: [737](https://github.com/hackforla/website/pull/737) at 2020-09-18 11:32 AM PDT -cnk,2020-09-19T20:35:02Z,- cnk closed issue as completed: [703](https://github.com/hackforla/website/issues/703#event-3785510812) at 2020-09-19 01:35 PM PDT -cnk,2020-09-19T20:35:48Z,- cnk commented on pull request: [736](https://github.com/hackforla/website/pull/736#issuecomment-695353634) at 2020-09-19 01:35 PM PDT -cnk,2020-09-20T18:20:45Z,- cnk pull request merged: [737](https://github.com/hackforla/website/pull/737#event-3786299302) at 2020-09-20 11:20 AM PDT -cnk,2020-09-20T19:17:22Z,- cnk opened pull request: [741](https://github.com/hackforla/website/pull/741) at 2020-09-20 12:17 PM PDT -cnk,2020-09-20T19:18:56Z,- cnk commented on pull request: [741](https://github.com/hackforla/website/pull/741#issuecomment-695824947) at 2020-09-20 12:18 PM PDT -cnk,2020-09-25T00:41:03Z,- cnk pull request merged: [741](https://github.com/hackforla/website/pull/741#event-3805569897) at 2020-09-24 05:41 PM PDT -cnk,2020-09-27T02:57:50Z,- cnk submitted pull request review: [749](https://github.com/hackforla/website/pull/749#pullrequestreview-497045816) at 2020-09-26 07:57 PM PDT -cnk,2020-09-27T03:21:58Z,- cnk commented on pull request: [749](https://github.com/hackforla/website/pull/749#issuecomment-699579112) at 2020-09-26 08:21 PM PDT -cnk,2020-09-29T22:23:29Z,- cnk opened issue: [756](https://github.com/hackforla/website/issues/756) at 2020-09-29 03:23 PM PDT -cnk,2020-10-01T03:45:34Z,- cnk opened issue: [759](https://github.com/hackforla/website/issues/759) at 2020-09-30 08:45 PM PDT -cnk,2020-10-01T03:54:22Z,- cnk closed issue by PR 758: [748](https://github.com/hackforla/website/issues/748#event-3827357610) at 2020-09-30 08:54 PM PDT -cnk,2020-10-01T04:09:58Z,- cnk submitted pull request review: [757](https://github.com/hackforla/website/pull/757#pullrequestreview-499996011) at 2020-09-30 09:09 PM PDT -cnk,2020-10-02T01:01:24Z,- cnk commented on pull request: [757](https://github.com/hackforla/website/pull/757#issuecomment-702472922) at 2020-10-01 06:01 PM PDT -cnk,2020-10-16T00:47:22Z,- cnk closed issue by PR 779: [616](https://github.com/hackforla/website/issues/616#event-3884107086) at 2020-10-15 05:47 PM PDT -cnk,2020-10-16T02:11:18Z,- cnk opened pull request: [783](https://github.com/hackforla/website/pull/783) at 2020-10-15 07:11 PM PDT -cnk,2020-10-16T02:11:35Z,- cnk pull request merged: [783](https://github.com/hackforla/website/pull/783#event-3884258488) at 2020-10-15 07:11 PM PDT -cnk,2020-10-16T02:17:48Z,- cnk opened pull request: [784](https://github.com/hackforla/website/pull/784) at 2020-10-15 07:17 PM PDT -cnk,2020-10-16T02:17:55Z,- cnk pull request merged: [784](https://github.com/hackforla/website/pull/784#event-3884270972) at 2020-10-15 07:17 PM PDT -cnk,2020-10-17T21:49:37Z,- cnk commented on pull request: [783](https://github.com/hackforla/website/pull/783#issuecomment-711084602) at 2020-10-17 02:49 PM PDT -cnk,2020-10-28T02:42:39Z,- cnk pull request merged: [696](https://github.com/hackforla/website/pull/696#event-3929084394) at 2020-10-27 07:42 PM PDT -cnk,2020-12-06T07:50:02Z,- cnk opened pull request: [829](https://github.com/hackforla/website/pull/829) at 2020-12-05 11:50 PM PST -cnk,2020-12-06T07:51:14Z,- cnk assigned to issue: [657](https://github.com/hackforla/website/issues/657#issuecomment-735434450) at 2020-12-05 11:51 PM PST -cnk,2020-12-06T14:27:16Z,- cnk pull request merged: [829](https://github.com/hackforla/website/pull/829#event-4076656043) at 2020-12-06 06:27 AM PST -cnk,2021-01-13T02:53:02Z,- cnk assigned to issue: [934](https://github.com/hackforla/website/issues/934) at 2021-01-12 06:53 PM PST -cnk,2021-02-17T19:30:16Z,- cnk commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780797066) at 2021-02-17 11:30 AM PST -cnk,2021-02-21T17:29:22Z,- cnk commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782893388) at 2021-02-21 09:29 AM PST -cnk,2021-02-21T23:28:03Z,- cnk commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782949587) at 2021-02-21 03:28 PM PST -cnk,2021-02-22T20:26:36Z,- cnk commented on pull request: [1092](https://github.com/hackforla/website/pull/1092#issuecomment-783652485) at 2021-02-22 12:26 PM PST -cnk,2021-02-24T04:30:27Z,- cnk closed issue by PR 1095: [1093](https://github.com/hackforla/website/issues/1093#event-4368733281) at 2021-02-23 08:30 PM PST -cnk,2021-02-27T19:43:13Z,- cnk unassigned from issue: [657](https://github.com/hackforla/website/issues/657#event-4076656042) at 2021-02-27 11:43 AM PST -cnk,2021-03-04T23:37:38Z,- cnk commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791030657) at 2021-03-04 03:37 PM PST -cnk,2021-03-05T00:59:34Z,- cnk commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-791064664) at 2021-03-04 04:59 PM PST -cnk,2021-03-19T17:32:57Z,- cnk submitted pull request review: [1260](https://github.com/hackforla/website/pull/1260#pullrequestreview-616644127) at 2021-03-19 10:32 AM PDT -cnk,2021-03-19T19:24:22Z,- cnk submitted pull request review: [1260](https://github.com/hackforla/website/pull/1260#pullrequestreview-616728573) at 2021-03-19 12:24 PM PDT -cnk,2021-03-19T19:26:06Z,- cnk opened issue: [1264](https://github.com/hackforla/website/issues/1264) at 2021-03-19 12:26 PM PDT -cnk,2021-03-19T19:28:27Z,- cnk opened issue: [1265](https://github.com/hackforla/website/issues/1265) at 2021-03-19 12:28 PM PDT -cnk,2021-03-19T19:34:10Z,- cnk closed issue by PR 1260: [1255](https://github.com/hackforla/website/issues/1255#event-4483960294) at 2021-03-19 12:34 PM PDT -cnk,2021-03-19T21:25:43Z,- cnk commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803142740) at 2021-03-19 02:25 PM PDT -cnk,2021-03-19T21:28:53Z,- cnk commented on issue: [1268](https://github.com/hackforla/website/issues/1268#issuecomment-803144062) at 2021-03-19 02:28 PM PDT -cnk,2021-03-19T21:33:41Z,- cnk commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803146299) at 2021-03-19 02:33 PM PDT -cnk,2021-03-20T20:31:47Z,- cnk commented on pull request: [1269](https://github.com/hackforla/website/pull/1269#issuecomment-803459170) at 2021-03-20 01:31 PM PDT -cnk,2021-03-20T20:34:35Z,- cnk commented on pull request: [1267](https://github.com/hackforla/website/pull/1267#issuecomment-803459483) at 2021-03-20 01:34 PM PDT -cnk,2021-03-21T17:25:54Z,- cnk commented on issue: [1274](https://github.com/hackforla/website/issues/1274#issuecomment-803627798) at 2021-03-21 10:25 AM PDT -cnk,2021-04-13T21:09:15Z,- cnk commented on pull request: [1387](https://github.com/hackforla/website/pull/1387#issuecomment-819056721) at 2021-04-13 02:09 PM PDT -cnk,2021-05-31T15:34:15Z,- cnk commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-851563483) at 2021-05-31 08:34 AM PDT -cnk,2021-08-01T05:45:40Z,- cnk commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890455741) at 2021-07-31 10:45 PM PDT -cnk,2021-08-17T15:58:13Z,- cnk commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-900421823) at 2021-08-17 08:58 AM PDT -coderight1,2024-09-12T10:31:28Z,- coderight1 opened pull request: [7444](https://github.com/hackforla/website/pull/7444) at 2024-09-12 03:31 AM PDT -coderight1,2024-09-12T16:54:09Z,- coderight1 pull request closed w/o merging: [7444](https://github.com/hackforla/website/pull/7444#event-14236171491) at 2024-09-12 09:54 AM PDT -codessi,2747,SKILLS ISSUE -codessi,2021-06-08T03:30:57Z,- codessi assigned to issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-06-07 08:30 PM PDT -codessi,2021-06-15T22:05:37Z,- codessi opened pull request: [1744](https://github.com/hackforla/website/pull/1744) at 2021-06-15 03:05 PM PDT -codessi,2021-06-23T17:43:21Z,- codessi pull request closed w/o merging: [1744](https://github.com/hackforla/website/pull/1744#event-4930331461) at 2021-06-23 10:43 AM PDT -codessi,2021-06-29T19:46:39Z,- codessi opened pull request: [1857](https://github.com/hackforla/website/pull/1857) at 2021-06-29 12:46 PM PDT -codessi,2021-07-02T16:43:38Z,- codessi commented on pull request: [1857](https://github.com/hackforla/website/pull/1857#issuecomment-873126853) at 2021-07-02 09:43 AM PDT -codessi,2021-07-02T16:44:12Z,- codessi pull request merged: [1857](https://github.com/hackforla/website/pull/1857#event-4972430755) at 2021-07-02 09:44 AM PDT -codessi,2022-02-08T03:23:19Z,- codessi opened issue: [2747](https://github.com/hackforla/website/issues/2747) at 2022-02-07 07:23 PM PST -codessi,2022-02-15T22:59:51Z,- codessi assigned to issue: [2747](https://github.com/hackforla/website/issues/2747#issuecomment-1032968237) at 2022-02-15 02:59 PM PST -codewithbharat,2023-01-27T05:07:34Z,- codewithbharat opened pull request: [3884](https://github.com/hackforla/website/pull/3884) at 2023-01-26 09:07 PM PST -codewithbharat,2023-01-28T17:27:55Z,- codewithbharat pull request closed w/o merging: [3884](https://github.com/hackforla/website/pull/3884#event-8380154685) at 2023-01-28 09:27 AM PST -coding-yost,6038,SKILLS ISSUE -coding-yost,2024-01-03T04:04:20Z,- coding-yost opened issue: [6038](https://github.com/hackforla/website/issues/6038) at 2024-01-02 08:04 PM PST -coding-yost,2024-01-03T04:04:33Z,- coding-yost assigned to issue: [6038](https://github.com/hackforla/website/issues/6038) at 2024-01-02 08:04 PM PST -coding-yost,2024-01-08T01:49:03Z,- coding-yost assigned to issue: [5709](https://github.com/hackforla/website/issues/5709#issuecomment-1763723604) at 2024-01-07 05:49 PM PST -coding-yost,2024-01-08T02:23:02Z,- coding-yost opened pull request: [6076](https://github.com/hackforla/website/pull/6076) at 2024-01-07 06:23 PM PST -coding-yost,2024-01-08T02:56:06Z,- coding-yost assigned to issue: [5982](https://github.com/hackforla/website/issues/5982) at 2024-01-07 06:56 PM PST -coding-yost,2024-01-08T03:04:13Z,- coding-yost unassigned from issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1880320764) at 2024-01-07 07:04 PM PST -coding-yost,2024-01-10T03:26:51Z,- coding-yost commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1884132479) at 2024-01-09 07:26 PM PST -coding-yost,2024-01-10T03:42:49Z,- coding-yost commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1884142951) at 2024-01-09 07:42 PM PST -coding-yost,2024-01-10T05:33:03Z,- coding-yost pull request merged: [6076](https://github.com/hackforla/website/pull/6076#event-11438670497) at 2024-01-09 09:33 PM PST -coding-yost,2025-02-07T20:01:37Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2644012266) at 2025-02-07 12:01 PM PST -coding-yost,2025-02-07T20:44:05Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2644090433) at 2025-02-07 12:44 PM PST -coding-yost,2025-02-07T21:06:36Z,- coding-yost assigned to issue: [7878](https://github.com/hackforla/website/issues/7878) at 2025-02-07 01:06 PM PST -coding-yost,2025-02-07T22:36:46Z,- coding-yost opened pull request: [7901](https://github.com/hackforla/website/pull/7901) at 2025-02-07 02:36 PM PST -coding-yost,2025-02-07T22:41:12Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2644261284) at 2025-02-07 02:41 PM PST -coding-yost,2025-02-08T23:58:40Z,- coding-yost commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2645988427) at 2025-02-08 03:58 PM PST -coding-yost,2025-02-10T00:39:29Z,- coding-yost commented on issue: [7878](https://github.com/hackforla/website/issues/7878#issuecomment-2646692688) at 2025-02-09 04:39 PM PST -coding-yost,2025-02-13T06:00:39Z,- coding-yost pull request merged: [7901](https://github.com/hackforla/website/pull/7901#event-16291002599) at 2025-02-12 10:00 PM PST -coding-yost,2025-02-14T18:25:57Z,- coding-yost assigned to issue: [7812](https://github.com/hackforla/website/issues/7812) at 2025-02-14 10:25 AM PST -coding-yost,2025-02-14T18:26:11Z,- coding-yost unassigned from issue: [7812](https://github.com/hackforla/website/issues/7812) at 2025-02-14 10:26 AM PST -coding-yost,2025-02-14T18:28:24Z,- coding-yost assigned to issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660002268) at 2025-02-14 10:28 AM PST -coding-yost,2025-02-14T18:28:37Z,- coding-yost unassigned from issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660002268) at 2025-02-14 10:28 AM PST -coding-yost,2025-02-14T18:45:53Z,- coding-yost assigned to issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2448143759) at 2025-02-14 10:45 AM PST -coding-yost,2025-02-14T18:57:08Z,- coding-yost opened pull request: [7910](https://github.com/hackforla/website/pull/7910) at 2025-02-14 10:57 AM PST -coding-yost,2025-02-14T19:09:22Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2660076228) at 2025-02-14 11:09 AM PST -coding-yost,2025-02-14T19:58:11Z,- coding-yost commented on issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2660156521) at 2025-02-14 11:58 AM PST -coding-yost,2025-02-15T00:04:13Z,- coding-yost submitted pull request review: [7908](https://github.com/hackforla/website/pull/7908#pullrequestreview-2619116435) at 2025-02-14 04:04 PM PST -coding-yost,2025-02-15T00:35:28Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2660573685) at 2025-02-14 04:35 PM PST -coding-yost,2025-02-16T23:09:53Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2661668471) at 2025-02-16 03:09 PM PST -coding-yost,2025-02-20T03:11:58Z,- coding-yost submitted pull request review: [7928](https://github.com/hackforla/website/pull/7928#pullrequestreview-2628615545) at 2025-02-19 07:11 PM PST -coding-yost,2025-02-23T03:38:05Z,- coding-yost submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2635403362) at 2025-02-22 07:38 PM PST -coding-yost,2025-02-23T04:04:36Z,- coding-yost submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2635406622) at 2025-02-22 08:04 PM PST -coding-yost,2025-02-23T04:09:15Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2676552571) at 2025-02-22 08:09 PM PST -coding-yost,2025-02-23T04:13:16Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2676556612) at 2025-02-22 08:13 PM PST -coding-yost,2025-02-23T04:13:55Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2676556780) at 2025-02-22 08:13 PM PST -coding-yost,2025-02-23T19:56:24Z,- coding-yost pull request merged: [7910](https://github.com/hackforla/website/pull/7910#event-16422324022) at 2025-02-23 11:56 AM PST -coding-yost,2025-02-23T21:34:25Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677128944) at 2025-02-23 01:34 PM PST -coding-yost,2025-02-23T21:37:15Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677129854) at 2025-02-23 01:37 PM PST -coding-yost,2025-02-23T21:49:18Z,- coding-yost submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2635768608) at 2025-02-23 01:49 PM PST -coding-yost,2025-02-23T21:53:17Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677135177) at 2025-02-23 01:53 PM PST -coding-yost,2025-02-24T02:35:45Z,- coding-yost submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2635928422) at 2025-02-23 06:35 PM PST -coding-yost,2025-02-24T02:40:47Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677323277) at 2025-02-23 06:40 PM PST -coding-yost,2025-02-24T02:43:31Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677325429) at 2025-02-23 06:43 PM PST -coding-yost,2025-02-24T02:49:51Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2677330231) at 2025-02-23 06:49 PM PST -coding-yost,2025-02-26T03:26:42Z,- coding-yost submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2642950466) at 2025-02-25 07:26 PM PST -coding-yost,2025-03-01T18:56:54Z,- coding-yost submitted pull request review: [7951](https://github.com/hackforla/website/pull/7951#pullrequestreview-2652561094) at 2025-03-01 10:56 AM PST -coding-yost,2025-03-01T18:58:28Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2692366861) at 2025-03-01 10:58 AM PST -coding-yost,2025-03-01T21:13:25Z,- coding-yost submitted pull request review: [7950](https://github.com/hackforla/website/pull/7950#pullrequestreview-2652581011) at 2025-03-01 01:13 PM PST -coding-yost,2025-03-01T21:14:29Z,- coding-yost commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2692422980) at 2025-03-01 01:14 PM PST -codinghorizons,4075,SKILLS ISSUE -codinghorizons,2023-03-01T04:38:03Z,- codinghorizons opened issue: [4075](https://github.com/hackforla/website/issues/4075) at 2023-02-28 08:38 PM PST -codinghorizons,2023-03-01T04:38:13Z,- codinghorizons assigned to issue: [4075](https://github.com/hackforla/website/issues/4075) at 2023-02-28 08:38 PM PST -codinghorizons,2023-03-06T03:03:18Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1455362978) at 2023-03-05 07:03 PM PST -codinghorizons,2023-03-27T06:02:41Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1484544013) at 2023-03-26 11:02 PM PDT -codinghorizons,2023-03-28T04:10:24Z,- codinghorizons assigned to issue: [3861](https://github.com/hackforla/website/issues/3861) at 2023-03-27 09:10 PM PDT -codinghorizons,2023-04-18T04:44:38Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1512426261) at 2023-04-17 09:44 PM PDT -codinghorizons,2023-05-07T03:57:54Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1537282503) at 2023-05-06 08:57 PM PDT -codinghorizons,2023-05-07T04:10:09Z,- codinghorizons assigned to issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1529109509) at 2023-05-06 09:10 PM PDT -codinghorizons,2023-05-07T04:13:15Z,- codinghorizons commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1537284582) at 2023-05-06 09:13 PM PDT -codinghorizons,2023-05-16T05:33:13Z,- codinghorizons commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1549016033) at 2023-05-15 10:33 PM PDT -codinghorizons,2023-05-22T04:33:23Z,- codinghorizons commented on issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1556512419) at 2023-05-21 09:33 PM PDT -codinghorizons,2023-06-23T14:40:53Z,- codinghorizons unassigned from issue: [4529](https://github.com/hackforla/website/issues/4529#issuecomment-1594228537) at 2023-06-23 07:40 AM PDT -codinghorizons,2024-01-28T05:36:09Z,- codinghorizons unassigned from issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-01-27 09:36 PM PST -codyjohnsontx,7697,SKILLS ISSUE -codyjohnsontx,2024-11-05T04:09:26Z,- codyjohnsontx opened issue: [7697](https://github.com/hackforla/website/issues/7697) at 2024-11-04 08:09 PM PST -codyjohnsontx,2024-11-05T04:09:27Z,- codyjohnsontx assigned to issue: [7697](https://github.com/hackforla/website/issues/7697) at 2024-11-04 08:09 PM PST -codyjohnsontx,2024-11-05T04:39:03Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2456217833) at 2024-11-04 08:39 PM PST -codyjohnsontx,2024-11-13T02:25:14Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2472223072) at 2024-11-12 06:25 PM PST -codyjohnsontx,2024-11-13T02:26:07Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2472224266) at 2024-11-12 06:26 PM PST -codyjohnsontx,2024-11-13T19:38:02Z,- codyjohnsontx assigned to issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2351437951) at 2024-11-13 11:38 AM PST -codyjohnsontx,2024-11-13T20:29:46Z,- codyjohnsontx commented on issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2474722837) at 2024-11-13 12:29 PM PST -codyjohnsontx,2024-11-13T20:41:52Z,- codyjohnsontx opened pull request: [7718](https://github.com/hackforla/website/pull/7718) at 2024-11-13 12:41 PM PST -codyjohnsontx,2024-11-13T21:03:57Z,- codyjohnsontx commented on issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2474781638) at 2024-11-13 01:03 PM PST -codyjohnsontx,2024-11-14T23:34:24Z,- codyjohnsontx commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2477622998) at 2024-11-14 03:34 PM PST -codyjohnsontx,2024-11-17T17:26:15Z,- codyjohnsontx pull request merged: [7718](https://github.com/hackforla/website/pull/7718#event-15325553203) at 2024-11-17 09:26 AM PST -codyjohnsontx,2024-11-19T21:46:21Z,- codyjohnsontx assigned to issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2462764818) at 2024-11-19 01:46 PM PST -codyjohnsontx,2024-11-19T21:51:18Z,- codyjohnsontx commented on issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2486825514) at 2024-11-19 01:51 PM PST -codyjohnsontx,2024-11-19T22:36:24Z,- codyjohnsontx opened pull request: [7733](https://github.com/hackforla/website/pull/7733) at 2024-11-19 02:36 PM PST -codyjohnsontx,2024-11-20T17:30:31Z,- codyjohnsontx commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489179918) at 2024-11-20 09:30 AM PST -codyjohnsontx,2024-11-20T18:05:02Z,- codyjohnsontx commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489242714) at 2024-11-20 10:05 AM PST -codyjohnsontx,2024-11-20T20:44:43Z,- codyjohnsontx commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489509262) at 2024-11-20 12:44 PM PST -codyjohnsontx,2024-11-20T20:55:25Z,- codyjohnsontx submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2449680572) at 2024-11-20 12:55 PM PST -codyjohnsontx,2024-11-20T21:04:00Z,- codyjohnsontx commented on pull request: [7744](https://github.com/hackforla/website/pull/7744#issuecomment-2489538376) at 2024-11-20 01:04 PM PST -codyjohnsontx,2024-11-20T21:07:50Z,- codyjohnsontx submitted pull request review: [7744](https://github.com/hackforla/website/pull/7744#pullrequestreview-2449700249) at 2024-11-20 01:07 PM PST -codyjohnsontx,2024-11-21T21:51:09Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2492410764) at 2024-11-21 01:51 PM PST -codyjohnsontx,2024-11-21T21:54:22Z,- codyjohnsontx commented on pull request: [7733](https://github.com/hackforla/website/pull/7733#issuecomment-2492415836) at 2024-11-21 01:54 PM PST -codyjohnsontx,2024-11-21T21:58:33Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2492422494) at 2024-11-21 01:58 PM PST -codyjohnsontx,2024-11-21T22:00:34Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2492425500) at 2024-11-21 02:00 PM PST -codyjohnsontx,2024-11-22T05:41:04Z,- codyjohnsontx pull request merged: [7733](https://github.com/hackforla/website/pull/7733#event-15392413704) at 2024-11-21 09:41 PM PST -codyjohnsontx,2024-11-22T07:05:12Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493015523) at 2024-11-21 11:05 PM PST -codyjohnsontx,2024-11-22T07:08:19Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493019909) at 2024-11-21 11:08 PM PST -codyjohnsontx,2024-11-22T07:13:36Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493029103) at 2024-11-21 11:13 PM PST -codyjohnsontx,2024-11-22T07:16:44Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2493034576) at 2024-11-21 11:16 PM PST -codyjohnsontx,2024-11-25T05:40:19Z,- codyjohnsontx commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2496909371) at 2024-11-24 09:40 PM PST -codyjohnsontx,2024-11-25T05:54:41Z,- codyjohnsontx submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2457244382) at 2024-11-24 09:54 PM PST -codyjohnsontx,2024-11-25T05:58:34Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2496931304) at 2024-11-24 09:58 PM PST -codyjohnsontx,2024-11-26T21:59:17Z,- codyjohnsontx commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2502020262) at 2024-11-26 01:59 PM PST -codyjohnsontx,2024-11-26T22:49:37Z,- codyjohnsontx submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462842096) at 2024-11-26 02:49 PM PST -codyjohnsontx,2024-11-26T22:50:47Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2502103683) at 2024-11-26 02:50 PM PST -codyjohnsontx,2024-12-09T15:50:17Z,- codyjohnsontx commented on pull request: [7798](https://github.com/hackforla/website/pull/7798#issuecomment-2528471065) at 2024-12-09 07:50 AM PST -codyjohnsontx,2024-12-10T04:22:58Z,- codyjohnsontx submitted pull request review: [7798](https://github.com/hackforla/website/pull/7798#pullrequestreview-2490928282) at 2024-12-09 08:22 PM PST -codyjohnsontx,2024-12-10T04:25:23Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2530287654) at 2024-12-09 08:25 PM PST -codyjohnsontx,2024-12-13T01:13:16Z,- codyjohnsontx assigned to issue: [7797](https://github.com/hackforla/website/issues/7797) at 2024-12-12 05:13 PM PST -codyjohnsontx,2024-12-13T01:13:31Z,- codyjohnsontx unassigned from issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2540323552) at 2024-12-12 05:13 PM PST -codyjohnsontx,2024-12-13T17:47:24Z,- codyjohnsontx assigned to issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2496203291) at 2024-12-13 09:47 AM PST -codyjohnsontx,2024-12-13T17:50:04Z,- codyjohnsontx commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2541960271) at 2024-12-13 09:50 AM PST -codyjohnsontx,2024-12-13T19:02:30Z,- codyjohnsontx opened pull request: [7803](https://github.com/hackforla/website/pull/7803) at 2024-12-13 11:02 AM PST -codyjohnsontx,2024-12-18T06:14:58Z,- codyjohnsontx pull request merged: [7803](https://github.com/hackforla/website/pull/7803#event-15698105778) at 2024-12-17 10:14 PM PST -codyjohnsontx,2024-12-18T19:09:47Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2552076130) at 2024-12-18 11:09 AM PST -codyjohnsontx,2024-12-18T19:11:15Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2552078761) at 2024-12-18 11:11 AM PST -codyjohnsontx,2025-01-08T05:51:31Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2576807525) at 2025-01-07 09:51 PM PST -codyjohnsontx,2025-03-25T22:47:00Z,- codyjohnsontx commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2752711601) at 2025-03-25 03:47 PM PDT -codyyjxn,7219,SKILLS ISSUE -codyyjxn,2024-08-06T04:00:13Z,- codyyjxn opened issue: [7219](https://github.com/hackforla/website/issues/7219) at 2024-08-05 09:00 PM PDT -codyyjxn,2024-08-06T04:01:15Z,- codyyjxn assigned to issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2270336082) at 2024-08-05 09:01 PM PDT -codyyjxn,2024-08-06T04:31:28Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2270360742) at 2024-08-05 09:31 PM PDT -codyyjxn,2024-08-06T04:43:46Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2270370930) at 2024-08-05 09:43 PM PDT -codyyjxn,2024-08-07T17:05:42Z,- codyyjxn assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2212632594) at 2024-08-07 10:05 AM PDT -codyyjxn,2024-08-07T17:26:43Z,- codyyjxn opened pull request: [7243](https://github.com/hackforla/website/pull/7243) at 2024-08-07 10:26 AM PDT -codyyjxn,2024-08-07T17:29:13Z,- codyyjxn commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2273973340) at 2024-08-07 10:29 AM PDT -codyyjxn,2024-08-07T17:34:14Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2273982289) at 2024-08-07 10:34 AM PDT -codyyjxn,2024-08-07T17:48:05Z,- codyyjxn commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2274005931) at 2024-08-07 10:48 AM PDT -codyyjxn,2024-08-08T01:24:21Z,- codyyjxn commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2274726371) at 2024-08-07 06:24 PM PDT -codyyjxn,2024-08-08T03:25:18Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2274879949) at 2024-08-07 08:25 PM PDT -codyyjxn,2024-08-08T21:47:17Z,- codyyjxn commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2276706479) at 2024-08-08 02:47 PM PDT -codyyjxn,2024-08-08T23:54:30Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2276910963) at 2024-08-08 04:54 PM PDT -codyyjxn,2024-08-09T00:00:46Z,- codyyjxn closed issue as completed: [7095](https://github.com/hackforla/website/issues/7095#event-13814037573) at 2024-08-08 05:00 PM PDT -codyyjxn,2024-08-09T00:27:13Z,- codyyjxn assigned to issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2274874337) at 2024-08-08 05:27 PM PDT -codyyjxn,2024-08-09T00:30:42Z,- codyyjxn commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276942408) at 2024-08-08 05:30 PM PDT -codyyjxn,2024-08-09T03:38:29Z,- codyyjxn opened pull request: [7256](https://github.com/hackforla/website/pull/7256) at 2024-08-08 08:38 PM PDT -codyyjxn,2024-08-09T21:01:31Z,- codyyjxn commented on pull request: [7256](https://github.com/hackforla/website/pull/7256#issuecomment-2278751447) at 2024-08-09 02:01 PM PDT -codyyjxn,2024-08-10T20:27:34Z,- codyyjxn unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 01:27 PM PDT -codyyjxn,2024-08-10T20:31:14Z,- codyyjxn pull request closed w/o merging: [7243](https://github.com/hackforla/website/pull/7243#event-13829111226) at 2024-08-10 01:31 PM PDT -codyyjxn,2024-08-10T20:57:49Z,- codyyjxn pull request closed w/o merging: [7256](https://github.com/hackforla/website/pull/7256#event-13829252317) at 2024-08-10 01:57 PM PDT -codyyjxn,2024-08-10T21:32:04Z,- codyyjxn assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 02:32 PM PDT -codyyjxn,2024-08-10T21:32:19Z,- codyyjxn unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282282343) at 2024-08-10 02:32 PM PDT -codyyjxn,2024-08-10T21:34:24Z,- codyyjxn unassigned from issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276942408) at 2024-08-10 02:34 PM PDT -codyyjxn,2024-08-10T21:39:34Z,- codyyjxn assigned to issue: [7185](https://github.com/hackforla/website/issues/7185) at 2024-08-10 02:39 PM PDT -codyyjxn,2024-08-10T22:27:05Z,- codyyjxn opened pull request: [7264](https://github.com/hackforla/website/pull/7264) at 2024-08-10 03:27 PM PDT -codyyjxn,2024-08-13T03:25:53Z,- codyyjxn commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2285270402) at 2024-08-12 08:25 PM PDT -codyyjxn,2024-08-16T00:53:48Z,- codyyjxn commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2292526408) at 2024-08-15 05:53 PM PDT -codyyjxn,2024-08-19T23:52:18Z,- codyyjxn pull request closed w/o merging: [7264](https://github.com/hackforla/website/pull/7264#event-13937425858) at 2024-08-19 04:52 PM PDT -codyyjxn,2024-08-20T00:17:11Z,- codyyjxn opened pull request: [7320](https://github.com/hackforla/website/pull/7320) at 2024-08-19 05:17 PM PDT -codyyjxn,2024-08-20T00:24:41Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2297741729) at 2024-08-19 05:24 PM PDT -codyyjxn,2024-08-20T01:31:36Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2297795219) at 2024-08-19 06:31 PM PDT -codyyjxn,2024-08-20T18:05:43Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299443876) at 2024-08-20 11:05 AM PDT -codyyjxn,2024-08-20T18:14:48Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2299459081) at 2024-08-20 11:14 AM PDT -codyyjxn,2024-08-20T18:17:22Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2299463952) at 2024-08-20 11:17 AM PDT -codyyjxn,2024-08-20T18:24:00Z,- codyyjxn commented on issue: [7185](https://github.com/hackforla/website/issues/7185#issuecomment-2299475422) at 2024-08-20 11:24 AM PDT -codyyjxn,2024-08-20T21:06:16Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299765949) at 2024-08-20 02:06 PM PDT -codyyjxn,2024-08-20T22:42:06Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299881771) at 2024-08-20 03:42 PM PDT -codyyjxn,2024-08-21T02:51:37Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2300408484) at 2024-08-20 07:51 PM PDT -codyyjxn,2024-08-21T12:43:15Z,- codyyjxn commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2301963173) at 2024-08-21 05:43 AM PDT -codyyjxn,2024-08-22T06:09:06Z,- codyyjxn pull request merged: [7320](https://github.com/hackforla/website/pull/7320#event-13971783197) at 2024-08-21 11:09 PM PDT -codyyjxn,2024-08-22T16:59:00Z,- codyyjxn commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2305230662) at 2024-08-22 09:59 AM PDT -codyyjxn,2024-08-22T17:25:45Z,- codyyjxn submitted pull request review: [7309](https://github.com/hackforla/website/pull/7309#pullrequestreview-2255242909) at 2024-08-22 10:25 AM PDT -codyyjxn,2024-08-22T17:29:20Z,- codyyjxn unassigned from issue: [7185](https://github.com/hackforla/website/issues/7185#event-13971783358) at 2024-08-22 10:29 AM PDT -codyyjxn,2024-08-22T17:31:06Z,- codyyjxn assigned to issue: [7288](https://github.com/hackforla/website/issues/7288) at 2024-08-22 10:31 AM PDT -codyyjxn,2024-08-22T18:46:15Z,- codyyjxn opened pull request: [7342](https://github.com/hackforla/website/pull/7342) at 2024-08-22 11:46 AM PDT -codyyjxn,2024-08-22T22:10:08Z,- codyyjxn commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2305833782) at 2024-08-22 03:10 PM PDT -codyyjxn,2024-08-23T19:01:57Z,- codyyjxn commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2307651517) at 2024-08-23 12:01 PM PDT -codyyjxn,2024-08-23T19:02:54Z,- codyyjxn commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2307653005) at 2024-08-23 12:02 PM PDT -codyyjxn,2024-08-25T15:30:09Z,- codyyjxn pull request merged: [7342](https://github.com/hackforla/website/pull/7342#event-14004625408) at 2024-08-25 08:30 AM PDT -codyyjxn,2024-08-25T21:30:43Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2309001500) at 2024-08-25 02:30 PM PDT -codyyjxn,2024-08-25T21:39:02Z,- codyyjxn submitted pull request review: [7346](https://github.com/hackforla/website/pull/7346#pullrequestreview-2259377723) at 2024-08-25 02:39 PM PDT -codyyjxn,2024-08-27T02:04:40Z,- codyyjxn submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2261950070) at 2024-08-26 07:04 PM PDT -codyyjxn,2024-08-27T02:09:50Z,- codyyjxn submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2261953859) at 2024-08-26 07:09 PM PDT -codyyjxn,2024-08-27T02:10:22Z,- codyyjxn commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2311432263) at 2024-08-26 07:10 PM PDT -codyyjxn,2024-08-27T02:10:31Z,- codyyjxn commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2311432385) at 2024-08-26 07:10 PM PDT -codyyjxn,2024-08-27T02:12:53Z,- codyyjxn commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2311434246) at 2024-08-26 07:12 PM PDT -codyyjxn,2024-08-27T02:16:22Z,- codyyjxn submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2261958816) at 2024-08-26 07:16 PM PDT -codyyjxn,2024-08-27T02:23:01Z,- codyyjxn submitted pull request review: [7298](https://github.com/hackforla/website/pull/7298#pullrequestreview-2261963937) at 2024-08-26 07:23 PM PDT -codyyjxn,2024-08-27T02:29:02Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311448245) at 2024-08-26 07:29 PM PDT -codyyjxn,2024-08-27T02:31:00Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311449964) at 2024-08-26 07:31 PM PDT -codyyjxn,2024-08-27T02:34:04Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311452601) at 2024-08-26 07:34 PM PDT -codyyjxn,2024-08-27T02:36:57Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311454947) at 2024-08-26 07:36 PM PDT -codyyjxn,2024-08-27T02:41:04Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2311458554) at 2024-08-26 07:41 PM PDT -codyyjxn,2024-08-28T00:55:59Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2313878078) at 2024-08-27 05:55 PM PDT -codyyjxn,2024-08-28T00:58:02Z,- codyyjxn assigned to issue: [7282](https://github.com/hackforla/website/issues/7282) at 2024-08-27 05:58 PM PDT -codyyjxn,2024-08-28T01:06:40Z,- codyyjxn commented on issue: [7282](https://github.com/hackforla/website/issues/7282#issuecomment-2313886699) at 2024-08-27 06:06 PM PDT -codyyjxn,2024-08-28T01:35:02Z,- codyyjxn opened pull request: [7361](https://github.com/hackforla/website/pull/7361) at 2024-08-27 06:35 PM PDT -codyyjxn,2024-08-29T04:38:53Z,- codyyjxn commented on pull request: [7361](https://github.com/hackforla/website/pull/7361#issuecomment-2316700477) at 2024-08-28 09:38 PM PDT -codyyjxn,2024-08-29T22:17:02Z,- codyyjxn pull request merged: [7361](https://github.com/hackforla/website/pull/7361#event-14071090829) at 2024-08-29 03:17 PM PDT -codyyjxn,2024-08-30T00:36:46Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2319556203) at 2024-08-29 05:36 PM PDT -codyyjxn,2024-08-30T00:42:49Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2319565491) at 2024-08-29 05:42 PM PDT -codyyjxn,2024-08-30T00:48:29Z,- codyyjxn assigned to issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2282835716) at 2024-08-29 05:48 PM PDT -codyyjxn,2024-08-30T01:10:22Z,- codyyjxn opened issue: [7366](https://github.com/hackforla/website/issues/7366) at 2024-08-29 06:10 PM PDT -codyyjxn,2024-08-30T01:15:38Z,- codyyjxn commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2319612466) at 2024-08-29 06:15 PM PDT -codyyjxn,2024-09-02T21:06:18Z,- codyyjxn submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2276151933) at 2024-09-02 02:06 PM PDT -codyyjxn,2024-09-02T21:18:34Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2325308884) at 2024-09-02 02:18 PM PDT -codyyjxn,2024-09-02T21:24:04Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2325312110) at 2024-09-02 02:24 PM PDT -codyyjxn,2024-09-02T21:25:57Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2325313293) at 2024-09-02 02:25 PM PDT -codyyjxn,2024-09-02T22:50:41Z,- codyyjxn commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2325359555) at 2024-09-02 03:50 PM PDT -codyyjxn,2024-09-03T18:58:25Z,- codyyjxn opened issue: [7380](https://github.com/hackforla/website/issues/7380) at 2024-09-03 11:58 AM PDT -codyyjxn,2024-09-03T19:00:49Z,- codyyjxn opened issue: [7381](https://github.com/hackforla/website/issues/7381) at 2024-09-03 12:00 PM PDT -codyyjxn,2024-09-03T19:03:07Z,- codyyjxn opened issue: [7382](https://github.com/hackforla/website/issues/7382) at 2024-09-03 12:03 PM PDT -codyyjxn,2024-09-03T19:10:58Z,- codyyjxn commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2327234090) at 2024-09-03 12:10 PM PDT -codyyjxn,2024-09-03T20:29:47Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2327380441) at 2024-09-03 01:29 PM PDT -codyyjxn,2024-09-03T20:39:41Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2327396889) at 2024-09-03 01:39 PM PDT -codyyjxn,2024-09-05T16:11:42Z,- codyyjxn submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2283527428) at 2024-09-05 09:11 AM PDT -codyyjxn,2024-09-05T16:34:03Z,- codyyjxn submitted pull request review: [7385](https://github.com/hackforla/website/pull/7385#pullrequestreview-2283579403) at 2024-09-05 09:34 AM PDT -codyyjxn,2024-09-05T16:54:55Z,- codyyjxn submitted pull request review: [7375](https://github.com/hackforla/website/pull/7375#pullrequestreview-2283621671) at 2024-09-05 09:54 AM PDT -codyyjxn,2024-09-05T16:56:07Z,- codyyjxn submitted pull request review: [7375](https://github.com/hackforla/website/pull/7375#pullrequestreview-2283623972) at 2024-09-05 09:56 AM PDT -codyyjxn,2024-09-05T17:07:40Z,- codyyjxn assigned to issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2264084224) at 2024-09-05 10:07 AM PDT -codyyjxn,2024-09-05T17:13:09Z,- codyyjxn assigned to issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2259972530) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:13:27Z,- codyyjxn unassigned from issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:13:35Z,- codyyjxn assigned to issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:13:51Z,- codyyjxn unassigned from issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -codyyjxn,2024-09-05T17:54:15Z,- codyyjxn opened issue: [7393](https://github.com/hackforla/website/issues/7393) at 2024-09-05 10:54 AM PDT -codyyjxn,2024-09-05T17:56:37Z,- codyyjxn opened issue: [7394](https://github.com/hackforla/website/issues/7394) at 2024-09-05 10:56 AM PDT -codyyjxn,2024-09-05T18:01:43Z,- codyyjxn opened issue: [7395](https://github.com/hackforla/website/issues/7395) at 2024-09-05 11:01 AM PDT -codyyjxn,2024-09-05T18:03:11Z,- codyyjxn opened issue: [7396](https://github.com/hackforla/website/issues/7396) at 2024-09-05 11:03 AM PDT -codyyjxn,2024-09-05T18:04:49Z,- codyyjxn opened issue: [7397](https://github.com/hackforla/website/issues/7397) at 2024-09-05 11:04 AM PDT -codyyjxn,2024-09-05T18:05:23Z,- codyyjxn opened issue: [7398](https://github.com/hackforla/website/issues/7398) at 2024-09-05 11:05 AM PDT -codyyjxn,2024-09-05T18:05:51Z,- codyyjxn opened issue: [7399](https://github.com/hackforla/website/issues/7399) at 2024-09-05 11:05 AM PDT -codyyjxn,2024-09-05T18:06:38Z,- codyyjxn opened issue: [7400](https://github.com/hackforla/website/issues/7400) at 2024-09-05 11:06 AM PDT -codyyjxn,2024-09-05T18:17:11Z,- codyyjxn submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2283781435) at 2024-09-05 11:17 AM PDT -codyyjxn,2024-09-05T19:03:15Z,- codyyjxn commented on issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2332442991) at 2024-09-05 12:03 PM PDT -codyyjxn,2024-09-06T04:00:45Z,- codyyjxn submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2284620153) at 2024-09-05 09:00 PM PDT -codyyjxn,2024-09-06T15:50:02Z,- codyyjxn submitted pull request review: [7405](https://github.com/hackforla/website/pull/7405#pullrequestreview-2286617514) at 2024-09-06 08:50 AM PDT -codyyjxn,2024-09-06T21:42:20Z,- codyyjxn submitted pull request review: [7406](https://github.com/hackforla/website/pull/7406#pullrequestreview-2287196392) at 2024-09-06 02:42 PM PDT -codyyjxn,2024-09-07T19:52:19Z,- codyyjxn submitted pull request review: [7408](https://github.com/hackforla/website/pull/7408#pullrequestreview-2288364760) at 2024-09-07 12:52 PM PDT -codyyjxn,2024-09-09T01:43:18Z,- codyyjxn assigned to issue: [7412](https://github.com/hackforla/website/issues/7412) at 2024-09-08 06:43 PM PDT -codyyjxn,2024-09-09T01:45:01Z,- codyyjxn unassigned from issue: [7412](https://github.com/hackforla/website/issues/7412) at 2024-09-08 06:45 PM PDT -codyyjxn,2024-09-09T01:47:39Z,- codyyjxn assigned to issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2316647539) at 2024-09-08 06:47 PM PDT -codyyjxn,2024-09-09T01:47:56Z,- codyyjxn unassigned from issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2336956265) at 2024-09-08 06:47 PM PDT -codyyjxn,2024-09-09T22:16:49Z,- codyyjxn submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2291047646) at 2024-09-09 03:16 PM PDT -codyyjxn,2024-09-10T02:32:31Z,- codyyjxn assigned to issue: [7089](https://github.com/hackforla/website/issues/7089#issuecomment-2212528075) at 2024-09-09 07:32 PM PDT -codyyjxn,2024-09-10T03:11:55Z,- codyyjxn opened issue: [7429](https://github.com/hackforla/website/issues/7429) at 2024-09-09 08:11 PM PDT -codyyjxn,2024-09-10T17:48:21Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2341592262) at 2024-09-10 10:48 AM PDT -codyyjxn,2024-09-11T00:58:55Z,- codyyjxn submitted pull request review: [7436](https://github.com/hackforla/website/pull/7436#pullrequestreview-2294637279) at 2024-09-10 05:58 PM PDT -codyyjxn,2024-09-11T01:10:59Z,- codyyjxn submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2294684202) at 2024-09-10 06:10 PM PDT -codyyjxn,2024-09-12T01:03:58Z,- codyyjxn submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2299026222) at 2024-09-11 06:03 PM PDT -codyyjxn,2024-09-12T01:17:12Z,- codyyjxn commented on pull request: [7437](https://github.com/hackforla/website/pull/7437#issuecomment-2345064770) at 2024-09-11 06:17 PM PDT -codyyjxn,2024-09-12T01:20:26Z,- codyyjxn submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2299039475) at 2024-09-11 06:20 PM PDT -codyyjxn,2024-09-12T01:26:04Z,- codyyjxn submitted pull request review: [7437](https://github.com/hackforla/website/pull/7437#pullrequestreview-2299043610) at 2024-09-11 06:26 PM PDT -codyyjxn,2024-09-13T03:06:58Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2347949350) at 2024-09-12 08:06 PM PDT -codyyjxn,2024-09-13T03:08:07Z,- codyyjxn submitted pull request review: [7436](https://github.com/hackforla/website/pull/7436#pullrequestreview-2302041369) at 2024-09-12 08:08 PM PDT -codyyjxn,2024-09-13T03:09:45Z,- codyyjxn commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2347951316) at 2024-09-12 08:09 PM PDT -codyyjxn,2024-09-13T03:10:55Z,- codyyjxn assigned to issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2347949350) at 2024-09-12 08:10 PM PDT -codyyjxn,2024-09-13T23:54:50Z,- codyyjxn submitted pull request review: [7445](https://github.com/hackforla/website/pull/7445#pullrequestreview-2304313972) at 2024-09-13 04:54 PM PDT -codyyjxn,2024-09-14T01:07:55Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2350757952) at 2024-09-13 06:07 PM PDT -codyyjxn,2024-09-14T18:15:43Z,- codyyjxn submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2304971736) at 2024-09-14 11:15 AM PDT -codyyjxn,2024-09-14T21:25:57Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2351161002) at 2024-09-14 02:25 PM PDT -codyyjxn,2024-09-14T21:37:22Z,- codyyjxn submitted pull request review: [7447](https://github.com/hackforla/website/pull/7447#pullrequestreview-2305204944) at 2024-09-14 02:37 PM PDT -codyyjxn,2024-09-14T22:03:35Z,- codyyjxn submitted pull request review: [7446](https://github.com/hackforla/website/pull/7446#pullrequestreview-2305206907) at 2024-09-14 03:03 PM PDT -codyyjxn,2024-09-15T20:20:27Z,- codyyjxn submitted pull request review: [7461](https://github.com/hackforla/website/pull/7461#pullrequestreview-2305607103) at 2024-09-15 01:20 PM PDT -codyyjxn,2024-09-15T20:59:26Z,- codyyjxn commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2351789557) at 2024-09-15 01:59 PM PDT -codyyjxn,2024-09-18T00:57:26Z,- codyyjxn submitted pull request review: [7468](https://github.com/hackforla/website/pull/7468#pullrequestreview-2311406420) at 2024-09-17 05:57 PM PDT -codyyjxn,2024-09-18T00:58:59Z,- codyyjxn submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2311407475) at 2024-09-17 05:58 PM PDT -codyyjxn,2024-09-18T01:05:08Z,- codyyjxn submitted pull request review: [7463](https://github.com/hackforla/website/pull/7463#pullrequestreview-2311411632) at 2024-09-17 06:05 PM PDT -codyyjxn,2024-09-19T04:36:26Z,- codyyjxn submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2314385545) at 2024-09-18 09:36 PM PDT -codyyjxn,2024-09-20T00:51:04Z,- codyyjxn submitted pull request review: [7498](https://github.com/hackforla/website/pull/7498#pullrequestreview-2317002569) at 2024-09-19 05:51 PM PDT -codyyjxn,2024-09-20T00:51:42Z,- codyyjxn commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362499339) at 2024-09-19 05:51 PM PDT -codyyjxn,2024-09-20T01:27:29Z,- codyyjxn opened pull request: [7499](https://github.com/hackforla/website/pull/7499) at 2024-09-19 06:27 PM PDT -codyyjxn,2024-09-20T01:28:23Z,- codyyjxn pull request closed w/o merging: [7499](https://github.com/hackforla/website/pull/7499#event-14332439245) at 2024-09-19 06:28 PM PDT -codyyjxn,2024-09-20T20:34:01Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2364578704) at 2024-09-20 01:34 PM PDT -codyyjxn,2024-09-20T23:01:16Z,- codyyjxn opened pull request: [7501](https://github.com/hackforla/website/pull/7501) at 2024-09-20 04:01 PM PDT -codyyjxn,2024-09-21T20:32:26Z,- codyyjxn submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2319900282) at 2024-09-21 01:32 PM PDT -codyyjxn,2024-09-21T20:42:09Z,- codyyjxn submitted pull request review: [7504](https://github.com/hackforla/website/pull/7504#pullrequestreview-2319901161) at 2024-09-21 01:42 PM PDT -codyyjxn,2024-09-21T20:52:32Z,- codyyjxn submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2319901982) at 2024-09-21 01:52 PM PDT -codyyjxn,2024-09-23T16:56:57Z,- codyyjxn submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2322843045) at 2024-09-23 09:56 AM PDT -codyyjxn,2024-09-23T17:34:02Z,- codyyjxn submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2322912563) at 2024-09-23 10:34 AM PDT -codyyjxn,2024-09-23T20:15:39Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2369285029) at 2024-09-23 01:15 PM PDT -codyyjxn,2024-09-23T21:19:09Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2369412506) at 2024-09-23 02:19 PM PDT -codyyjxn,2024-09-24T00:23:04Z,- codyyjxn submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2323734760) at 2024-09-23 05:23 PM PDT -codyyjxn,2024-09-24T17:55:15Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2371944124) at 2024-09-24 10:55 AM PDT -codyyjxn,2024-09-24T19:52:22Z,- codyyjxn submitted pull request review: [7514](https://github.com/hackforla/website/pull/7514#pullrequestreview-2326304334) at 2024-09-24 12:52 PM PDT -codyyjxn,2024-09-24T21:13:55Z,- codyyjxn submitted pull request review: [7511](https://github.com/hackforla/website/pull/7511#pullrequestreview-2326492132) at 2024-09-24 02:13 PM PDT -codyyjxn,2024-09-26T04:39:39Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2375856353) at 2024-09-25 09:39 PM PDT -codyyjxn,2024-09-26T04:51:45Z,- codyyjxn submitted pull request review: [7523](https://github.com/hackforla/website/pull/7523#pullrequestreview-2330058985) at 2024-09-25 09:51 PM PDT -codyyjxn,2024-09-26T04:59:29Z,- codyyjxn submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2330066294) at 2024-09-25 09:59 PM PDT -codyyjxn,2024-09-27T02:50:43Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2378306888) at 2024-09-26 07:50 PM PDT -codyyjxn,2024-09-27T03:24:12Z,- codyyjxn submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2332678172) at 2024-09-26 08:24 PM PDT -codyyjxn,2024-09-27T03:41:57Z,- codyyjxn commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2378342579) at 2024-09-26 08:41 PM PDT -codyyjxn,2024-09-27T17:32:26Z,- codyyjxn commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2379754950) at 2024-09-27 10:32 AM PDT -codyyjxn,2024-09-27T17:44:11Z,- codyyjxn submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2334298145) at 2024-09-27 10:44 AM PDT -codyyjxn,2024-09-27T17:49:51Z,- codyyjxn commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2379780138) at 2024-09-27 10:49 AM PDT -codyyjxn,2024-09-27T18:01:32Z,- codyyjxn submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2334326849) at 2024-09-27 11:01 AM PDT -codyyjxn,2024-09-27T21:48:38Z,- codyyjxn commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2380127203) at 2024-09-27 02:48 PM PDT -codyyjxn,2024-09-27T21:53:30Z,- codyyjxn submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2334706813) at 2024-09-27 02:53 PM PDT -codyyjxn,2024-09-28T20:08:31Z,- codyyjxn submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2335407914) at 2024-09-28 01:08 PM PDT -codyyjxn,2024-09-30T02:31:59Z,- codyyjxn submitted pull request review: [7543](https://github.com/hackforla/website/pull/7543#pullrequestreview-2336229926) at 2024-09-29 07:31 PM PDT -codyyjxn,2024-09-30T02:32:26Z,- codyyjxn commented on pull request: [7543](https://github.com/hackforla/website/pull/7543#issuecomment-2381886558) at 2024-09-29 07:32 PM PDT -codyyjxn,2024-10-01T00:50:30Z,- codyyjxn submitted pull request review: [7546](https://github.com/hackforla/website/pull/7546#pullrequestreview-2338931026) at 2024-09-30 05:50 PM PDT -codyyjxn,2024-10-01T04:02:19Z,- codyyjxn commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2384738045) at 2024-09-30 09:02 PM PDT -codyyjxn,2024-10-02T03:40:46Z,- codyyjxn commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2387566419) at 2024-10-01 08:40 PM PDT -codyyjxn,2024-10-02T03:43:59Z,- codyyjxn submitted pull request review: [7554](https://github.com/hackforla/website/pull/7554#pullrequestreview-2341854085) at 2024-10-01 08:43 PM PDT -codyyjxn,2024-10-03T00:18:13Z,- codyyjxn commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2390221706) at 2024-10-02 05:18 PM PDT -codyyjxn,2024-10-03T00:22:52Z,- codyyjxn submitted pull request review: [7558](https://github.com/hackforla/website/pull/7558#pullrequestreview-2344429543) at 2024-10-02 05:22 PM PDT -codyyjxn,2024-10-04T02:49:38Z,- codyyjxn submitted pull request review: [7559](https://github.com/hackforla/website/pull/7559#pullrequestreview-2347000255) at 2024-10-03 07:49 PM PDT -codyyjxn,2024-10-04T16:41:40Z,- codyyjxn commented on pull request: [7560](https://github.com/hackforla/website/pull/7560#issuecomment-2394090252) at 2024-10-04 09:41 AM PDT -codyyjxn,2024-10-04T16:44:49Z,- codyyjxn submitted pull request review: [7560](https://github.com/hackforla/website/pull/7560#pullrequestreview-2348511580) at 2024-10-04 09:44 AM PDT -codyyjxn,2024-10-05T19:44:31Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2395170326) at 2024-10-05 12:44 PM PDT -codyyjxn,2024-10-05T19:53:35Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2395172589) at 2024-10-05 12:53 PM PDT -codyyjxn,2024-10-05T20:00:07Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2395174025) at 2024-10-05 01:00 PM PDT -codyyjxn,2024-10-05T20:03:59Z,- codyyjxn assigned to issue: [7540](https://github.com/hackforla/website/issues/7540) at 2024-10-05 01:03 PM PDT -codyyjxn,2024-10-05T20:06:29Z,- codyyjxn commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2395175805) at 2024-10-05 01:06 PM PDT -codyyjxn,2024-10-05T22:04:55Z,- codyyjxn opened issue: [7565](https://github.com/hackforla/website/issues/7565) at 2024-10-05 03:04 PM PDT -codyyjxn,2024-10-06T15:27:13Z,- codyyjxn assigned to issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395475289) at 2024-10-06 08:27 AM PDT -codyyjxn,2024-10-06T15:27:26Z,- codyyjxn unassigned from issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395478878) at 2024-10-06 08:27 AM PDT -codyyjxn,2024-10-06T15:28:31Z,- codyyjxn assigned to issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395478878) at 2024-10-06 08:28 AM PDT -codyyjxn,2024-10-08T01:40:11Z,- codyyjxn commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2398443435) at 2024-10-07 06:40 PM PDT -codyyjxn,2024-10-08T01:51:50Z,- codyyjxn submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2353214158) at 2024-10-07 06:51 PM PDT -codyyjxn,2024-10-08T02:04:23Z,- codyyjxn commented on pull request: [7568](https://github.com/hackforla/website/pull/7568#issuecomment-2398497191) at 2024-10-07 07:04 PM PDT -codyyjxn,2024-10-08T02:08:28Z,- codyyjxn submitted pull request review: [7568](https://github.com/hackforla/website/pull/7568#pullrequestreview-2353226735) at 2024-10-07 07:08 PM PDT -codyyjxn,2024-10-08T02:13:04Z,- codyyjxn submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2353230207) at 2024-10-07 07:13 PM PDT -codyyjxn,2024-10-08T03:19:53Z,- codyyjxn submitted pull request review: [7538](https://github.com/hackforla/website/pull/7538#pullrequestreview-2353290870) at 2024-10-07 08:19 PM PDT -codyyjxn,2024-10-08T15:57:18Z,- codyyjxn opened issue: [7577](https://github.com/hackforla/website/issues/7577) at 2024-10-08 08:57 AM PDT -codyyjxn,2024-10-08T16:01:57Z,- codyyjxn commented on issue: [7577](https://github.com/hackforla/website/issues/7577#issuecomment-2400245541) at 2024-10-08 09:01 AM PDT -codyyjxn,2024-10-09T16:08:21Z,- codyyjxn commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2402745098) at 2024-10-09 09:08 AM PDT -codyyjxn,2024-10-09T16:12:24Z,- codyyjxn submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2357611505) at 2024-10-09 09:12 AM PDT -codyyjxn,2024-10-09T23:19:50Z,- codyyjxn submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2358540209) at 2024-10-09 04:19 PM PDT -codyyjxn,2024-10-10T19:19:03Z,- codyyjxn submitted pull request review: [7579](https://github.com/hackforla/website/pull/7579#pullrequestreview-2361214739) at 2024-10-10 12:19 PM PDT -codyyjxn,2024-10-15T03:59:14Z,- codyyjxn submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2368106189) at 2024-10-14 08:59 PM PDT -codyyjxn,2024-10-15T04:00:56Z,- codyyjxn commented on pull request: [7591](https://github.com/hackforla/website/pull/7591#issuecomment-2412846887) at 2024-10-14 09:00 PM PDT -codyyjxn,2024-10-15T04:08:04Z,- codyyjxn submitted pull request review: [7591](https://github.com/hackforla/website/pull/7591#pullrequestreview-2368116262) at 2024-10-14 09:08 PM PDT -codyyjxn,2024-10-15T23:54:40Z,- codyyjxn submitted pull request review: [7538](https://github.com/hackforla/website/pull/7538#pullrequestreview-2370880135) at 2024-10-15 04:54 PM PDT -codyyjxn,2024-10-16T00:21:31Z,- codyyjxn submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2370899392) at 2024-10-15 05:21 PM PDT -codyyjxn,2024-10-16T00:24:15Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2415388366) at 2024-10-15 05:24 PM PDT -codyyjxn,2024-10-16T00:26:22Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2415390492) at 2024-10-15 05:26 PM PDT -codyyjxn,2024-10-17T02:29:51Z,- codyyjxn commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2418362259) at 2024-10-16 07:29 PM PDT -codyyjxn,2024-10-17T02:31:11Z,- codyyjxn commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2418363632) at 2024-10-16 07:31 PM PDT -codyyjxn,2024-10-18T02:52:58Z,- codyyjxn submitted pull request review: [7598](https://github.com/hackforla/website/pull/7598#pullrequestreview-2376846794) at 2024-10-17 07:52 PM PDT -codyyjxn,2024-10-18T02:54:25Z,- codyyjxn submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2376848385) at 2024-10-17 07:54 PM PDT -codyyjxn,2024-10-21T19:37:27Z,- codyyjxn submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2383153424) at 2024-10-21 12:37 PM PDT -codyyjxn,2024-10-24T02:22:59Z,- codyyjxn submitted pull request review: [7628](https://github.com/hackforla/website/pull/7628#pullrequestreview-2391075426) at 2024-10-23 07:22 PM PDT -codyyjxn,2024-10-24T02:36:30Z,- codyyjxn submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2391088118) at 2024-10-23 07:36 PM PDT -codyyjxn,2024-10-24T20:21:11Z,- codyyjxn submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2393635540) at 2024-10-24 01:21 PM PDT -codyyjxn,2024-10-25T16:51:51Z,- codyyjxn submitted pull request review: [7634](https://github.com/hackforla/website/pull/7634#pullrequestreview-2395870039) at 2024-10-25 09:51 AM PDT -codyyjxn,2024-10-26T22:56:11Z,- codyyjxn submitted pull request review: [7639](https://github.com/hackforla/website/pull/7639#pullrequestreview-2397371311) at 2024-10-26 03:56 PM PDT -codyyjxn,2024-10-26T23:34:24Z,- codyyjxn submitted pull request review: [7638](https://github.com/hackforla/website/pull/7638#pullrequestreview-2397374379) at 2024-10-26 04:34 PM PDT -codyyjxn,2024-10-29T23:08:27Z,- codyyjxn submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2403231656) at 2024-10-29 04:08 PM PDT -codyyjxn,2024-10-31T04:46:44Z,- codyyjxn commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2449002984) at 2024-10-30 09:46 PM PDT -codyyjxn,2024-11-03T19:36:31Z,- codyyjxn submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2411929990) at 2024-11-03 11:36 AM PST -codyyjxn,2024-11-03T19:41:38Z,- codyyjxn submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2411930826) at 2024-11-03 11:41 AM PST -codyyjxn,2024-11-03T19:45:30Z,- codyyjxn submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2411931430) at 2024-11-03 11:45 AM PST -codyyjxn,2024-11-03T20:01:53Z,- codyyjxn submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2411933758) at 2024-11-03 12:01 PM PST -codyyjxn,2024-11-03T21:40:11Z,- codyyjxn commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2453586226) at 2024-11-03 01:40 PM PST -codyyjxn,2024-11-05T04:54:21Z,- codyyjxn submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2414619339) at 2024-11-04 08:54 PM PST -codyyjxn,2024-11-05T22:19:09Z,- codyyjxn commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2458255838) at 2024-11-05 02:19 PM PST -codyyjxn,2024-11-05T23:55:55Z,- codyyjxn submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2417005546) at 2024-11-05 03:55 PM PST -codyyjxn,2024-11-08T23:34:09Z,- codyyjxn submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2425068539) at 2024-11-08 03:34 PM PST -codyyjxn,2024-11-12T17:13:12Z,- codyyjxn submitted pull request review: [7717](https://github.com/hackforla/website/pull/7717#pullrequestreview-2430234908) at 2024-11-12 09:13 AM PST -codyyjxn,2024-11-12T17:14:18Z,- codyyjxn commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2471122954) at 2024-11-12 09:14 AM PST -codyyjxn,2024-11-12T17:26:03Z,- codyyjxn submitted pull request review: [7716](https://github.com/hackforla/website/pull/7716#pullrequestreview-2430262594) at 2024-11-12 09:26 AM PST -codyyjxn,2024-11-12T17:31:03Z,- codyyjxn submitted pull request review: [7715](https://github.com/hackforla/website/pull/7715#pullrequestreview-2430273763) at 2024-11-12 09:31 AM PST -codyyjxn,2024-11-12T17:41:52Z,- codyyjxn submitted pull request review: [7714](https://github.com/hackforla/website/pull/7714#pullrequestreview-2430298872) at 2024-11-12 09:41 AM PST -codyyjxn,2024-11-12T18:05:49Z,- codyyjxn submitted pull request review: [7712](https://github.com/hackforla/website/pull/7712#pullrequestreview-2430347589) at 2024-11-12 10:05 AM PST -codyyjxn,2024-11-12T18:11:49Z,- codyyjxn commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2471241446) at 2024-11-12 10:11 AM PST -codyyjxn,2024-11-14T04:05:15Z,- codyyjxn submitted pull request review: [7714](https://github.com/hackforla/website/pull/7714#pullrequestreview-2434999913) at 2024-11-13 08:05 PM PST -codyyjxn,2024-11-15T03:08:41Z,- codyyjxn submitted pull request review: [7721](https://github.com/hackforla/website/pull/7721#pullrequestreview-2437572834) at 2024-11-14 07:08 PM PST -codyyjxn,2024-11-15T03:12:42Z,- codyyjxn submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2437575791) at 2024-11-14 07:12 PM PST -codyyjxn,2024-11-21T02:15:16Z,- codyyjxn submitted pull request review: [7748](https://github.com/hackforla/website/pull/7748#pullrequestreview-2450080066) at 2024-11-20 06:15 PM PST -codyyjxn,2024-11-21T02:22:05Z,- codyyjxn submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2450086089) at 2024-11-20 06:22 PM PST -codyyjxn,2024-11-21T02:50:40Z,- codyyjxn submitted pull request review: [7744](https://github.com/hackforla/website/pull/7744#pullrequestreview-2450112406) at 2024-11-20 06:50 PM PST -codyyjxn,2024-11-24T17:36:55Z,- codyyjxn submitted pull request review: [7748](https://github.com/hackforla/website/pull/7748#pullrequestreview-2456760344) at 2024-11-24 09:36 AM PST -codyyjxn,2024-11-26T00:17:40Z,- codyyjxn submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2459875324) at 2024-11-25 04:17 PM PST -codyyjxn,2024-11-26T00:20:18Z,- codyyjxn submitted pull request review: [7729](https://github.com/hackforla/website/pull/7729#pullrequestreview-2459877715) at 2024-11-25 04:20 PM PST -codyyjxn,2024-11-26T17:08:38Z,- codyyjxn submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462216952) at 2024-11-26 09:08 AM PST -codyyjxn,2024-12-05T05:24:33Z,- codyyjxn submitted pull request review: [7791](https://github.com/hackforla/website/pull/7791#pullrequestreview-2480497545) at 2024-12-04 09:24 PM PST -codyyjxn,2024-12-08T19:29:18Z,- codyyjxn submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2487250588) at 2024-12-08 11:29 AM PST -codyyjxn,2024-12-10T21:50:29Z,- codyyjxn commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2532975345) at 2024-12-10 01:50 PM PST -codyyjxn,2025-03-18T01:09:52Z,- codyyjxn unassigned from issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2731318935) at 2025-03-17 06:09 PM PDT -codyyjxn,2025-03-18T01:10:34Z,- codyyjxn unassigned from issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2603652942) at 2025-03-17 06:10 PM PDT -colin-macrae,5782,SKILLS ISSUE -colin-macrae,2023-10-25T03:13:01Z,- colin-macrae opened issue: [5782](https://github.com/hackforla/website/issues/5782) at 2023-10-24 08:13 PM PDT -colin-macrae,2023-10-25T03:13:18Z,- colin-macrae assigned to issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1778437064) at 2023-10-24 08:13 PM PDT -colin-macrae,2023-11-15T02:18:13Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1811695654) at 2023-11-14 06:18 PM PST -colin-macrae,2023-11-21T03:58:14Z,- colin-macrae assigned to issue: [5799](https://github.com/hackforla/website/issues/5799) at 2023-11-20 07:58 PM PST -colin-macrae,2023-11-21T04:01:45Z,- colin-macrae commented on issue: [5799](https://github.com/hackforla/website/issues/5799#issuecomment-1820203338) at 2023-11-20 08:01 PM PST -colin-macrae,2023-11-21T04:22:47Z,- colin-macrae unassigned from issue: [5799](https://github.com/hackforla/website/issues/5799#issuecomment-1820203338) at 2023-11-20 08:22 PM PST -colin-macrae,2023-11-21T04:24:14Z,- colin-macrae assigned to issue: [5799](https://github.com/hackforla/website/issues/5799#issuecomment-1820203338) at 2023-11-20 08:24 PM PST -colin-macrae,2023-11-21T23:55:07Z,- colin-macrae opened pull request: [5928](https://github.com/hackforla/website/pull/5928) at 2023-11-21 03:55 PM PST -colin-macrae,2023-11-22T02:30:27Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1821992583) at 2023-11-21 06:30 PM PST -colin-macrae,2023-11-26T02:09:32Z,- colin-macrae pull request merged: [5928](https://github.com/hackforla/website/pull/5928#event-11061757619) at 2023-11-25 06:09 PM PST -colin-macrae,2023-11-30T05:29:48Z,- colin-macrae commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1833132977) at 2023-11-29 09:29 PM PST -colin-macrae,2023-12-01T00:53:02Z,- colin-macrae commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1835205647) at 2023-11-30 04:53 PM PST -colin-macrae,2023-12-01T16:37:38Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1836433080) at 2023-12-01 08:37 AM PST -colin-macrae,2023-12-07T21:07:44Z,- colin-macrae submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1771132175) at 2023-12-07 01:07 PM PST -colin-macrae,2023-12-07T22:35:43Z,- colin-macrae commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-1846214274) at 2023-12-07 02:35 PM PST -colin-macrae,2023-12-12T20:51:59Z,- colin-macrae submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1778415825) at 2023-12-12 12:51 PM PST -colin-macrae,2023-12-13T00:05:01Z,- colin-macrae closed issue as completed: [5782](https://github.com/hackforla/website/issues/5782#event-11229784477) at 2023-12-12 04:05 PM PST -colin-macrae,2023-12-13T03:25:13Z,- colin-macrae commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1853208054) at 2023-12-12 07:25 PM PST -colin-macrae,2023-12-13T03:39:40Z,- colin-macrae assigned to issue: [5686](https://github.com/hackforla/website/issues/5686#issuecomment-1752409895) at 2023-12-12 07:39 PM PST -colin-macrae,2023-12-13T03:41:37Z,- colin-macrae commented on issue: [5686](https://github.com/hackforla/website/issues/5686#issuecomment-1853218087) at 2023-12-12 07:41 PM PST -colin-macrae,2023-12-13T22:37:22Z,- colin-macrae submitted pull request review: [6003](https://github.com/hackforla/website/pull/6003#pullrequestreview-1780604756) at 2023-12-13 02:37 PM PST -colin-macrae,2023-12-13T23:51:07Z,- colin-macrae opened pull request: [6006](https://github.com/hackforla/website/pull/6006) at 2023-12-13 03:51 PM PST -colin-macrae,2023-12-15T03:12:19Z,- colin-macrae submitted pull request review: [6003](https://github.com/hackforla/website/pull/6003#pullrequestreview-1783061432) at 2023-12-14 07:12 PM PST -colin-macrae,2023-12-18T22:03:48Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1861763438) at 2023-12-18 02:03 PM PST -colin-macrae,2023-12-18T22:43:31Z,- colin-macrae submitted pull request review: [6004](https://github.com/hackforla/website/pull/6004#pullrequestreview-1787825010) at 2023-12-18 02:43 PM PST -colin-macrae,2023-12-20T20:11:13Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1865069764) at 2023-12-20 12:11 PM PST -colin-macrae,2023-12-20T21:54:23Z,- colin-macrae submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1791723092) at 2023-12-20 01:54 PM PST -colin-macrae,2023-12-21T18:50:55Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1866786362) at 2023-12-21 10:50 AM PST -colin-macrae,2023-12-21T22:12:27Z,- colin-macrae commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1866995529) at 2023-12-21 02:12 PM PST -colin-macrae,2023-12-22T18:00:38Z,- colin-macrae pull request merged: [6006](https://github.com/hackforla/website/pull/6006#event-11328546120) at 2023-12-22 10:00 AM PST -colin-macrae,2024-01-10T18:50:12Z,- colin-macrae commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1885430214) at 2024-01-10 10:50 AM PST -colin-macrae,2024-01-12T03:22:13Z,- colin-macrae submitted pull request review: [6055](https://github.com/hackforla/website/pull/6055#pullrequestreview-1817301298) at 2024-01-11 07:22 PM PST -colin-macrae,2024-01-19T01:40:07Z,- colin-macrae assigned to issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1880516166) at 2024-01-18 05:40 PM PST -colin-macrae,2024-01-19T01:42:00Z,- colin-macrae commented on issue: [6078](https://github.com/hackforla/website/issues/6078#issuecomment-1899500139) at 2024-01-18 05:42 PM PST -colin-macrae,2024-01-19T01:44:49Z,- colin-macrae commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1899502543) at 2024-01-18 05:44 PM PST -colin-macrae,2024-01-19T01:49:46Z,- colin-macrae assigned to issue: [6065](https://github.com/hackforla/website/issues/6065) at 2024-01-18 05:49 PM PST -colin-macrae,2024-01-19T01:50:32Z,- colin-macrae commented on issue: [6065](https://github.com/hackforla/website/issues/6065#issuecomment-1899509063) at 2024-01-18 05:50 PM PST -colin-macrae,2024-01-21T02:54:43Z,- colin-macrae submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1834755648) at 2024-01-20 06:54 PM PST -colin-macrae,2024-01-21T04:05:40Z,- colin-macrae opened pull request: [6134](https://github.com/hackforla/website/pull/6134) at 2024-01-20 08:05 PM PST -colin-macrae,2024-01-21T04:26:02Z,- colin-macrae opened pull request: [6135](https://github.com/hackforla/website/pull/6135) at 2024-01-20 08:26 PM PST -colin-macrae,2024-01-23T00:01:31Z,- colin-macrae commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1905049664) at 2024-01-22 04:01 PM PST -colin-macrae,2024-01-24T02:29:50Z,- colin-macrae submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1840281835) at 2024-01-23 06:29 PM PST -colin-macrae,2024-01-24T03:15:32Z,- colin-macrae submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1840315065) at 2024-01-23 07:15 PM PST -colin-macrae,2024-01-24T17:54:01Z,- colin-macrae pull request merged: [6134](https://github.com/hackforla/website/pull/6134#event-11587736098) at 2024-01-24 09:54 AM PST -colin-macrae,2024-01-26T00:02:27Z,- colin-macrae commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1911193032) at 2024-01-25 04:02 PM PST -colin-macrae,2024-01-26T20:39:43Z,- colin-macrae commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1912667490) at 2024-01-26 12:39 PM PST -colin-macrae,2024-01-30T02:39:08Z,- colin-macrae commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1915960765) at 2024-01-29 06:39 PM PST -colin-macrae,2024-01-31T07:54:18Z,- colin-macrae pull request merged: [6135](https://github.com/hackforla/website/pull/6135#event-11651961078) at 2024-01-30 11:54 PM PST -colin-macrae,2024-03-12T19:40:15Z,- colin-macrae commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1992403017) at 2024-03-12 12:40 PM PDT -colin-macrae,2024-03-13T02:36:51Z,- colin-macrae commented on pull request: [6457](https://github.com/hackforla/website/pull/6457#issuecomment-1993194302) at 2024-03-12 07:36 PM PDT -colin-macrae,2024-03-14T22:40:53Z,- colin-macrae submitted pull request review: [6457](https://github.com/hackforla/website/pull/6457#pullrequestreview-1937848999) at 2024-03-14 03:40 PM PDT -colin-macrae,2024-03-15T17:49:24Z,- colin-macrae commented on pull request: [6465](https://github.com/hackforla/website/pull/6465#issuecomment-2000156045) at 2024-03-15 10:49 AM PDT -colin-macrae,2024-03-16T23:32:44Z,- colin-macrae commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2002184039) at 2024-03-16 04:32 PM PDT -colin-macrae,2024-03-19T16:30:04Z,- colin-macrae submitted pull request review: [6465](https://github.com/hackforla/website/pull/6465#pullrequestreview-1946784469) at 2024-03-19 09:30 AM PDT -colin-macrae,2024-03-27T04:29:34Z,- colin-macrae submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1962260572) at 2024-03-26 09:29 PM PDT -colin-macrae,2024-04-04T03:14:40Z,- colin-macrae opened issue: [6563](https://github.com/hackforla/website/issues/6563) at 2024-04-03 08:14 PM PDT -colin-macrae,2024-06-03T02:39:40Z,- colin-macrae assigned to issue: [6920](https://github.com/hackforla/website/issues/6920) at 2024-06-02 07:39 PM PDT -colin-macrae,2024-06-03T05:05:21Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2144288435) at 2024-06-02 10:05 PM PDT -colin-macrae,2024-06-07T03:58:11Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2153842549) at 2024-06-06 08:58 PM PDT -colin-macrae,2024-06-07T22:35:06Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2155657077) at 2024-06-07 03:35 PM PDT -colin-macrae,2024-06-11T04:24:55Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2159755505) at 2024-06-10 09:24 PM PDT -colin-macrae,2024-06-12T01:41:19Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2161910621) at 2024-06-11 06:41 PM PDT -colin-macrae,2024-06-14T02:10:55Z,- colin-macrae unassigned from issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2161910621) at 2024-06-13 07:10 PM PDT -colin-macrae,2024-06-14T02:22:00Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2167091428) at 2024-06-13 07:22 PM PDT -colin-macrae,2024-06-14T04:34:56Z,- colin-macrae commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2167194048) at 2024-06-13 09:34 PM PDT -ColinBeuttler,7027,SKILLS ISSUE -ColinBeuttler,2024-06-19T03:06:48Z,- ColinBeuttler opened issue: [7026](https://github.com/hackforla/website/issues/7026) at 2024-06-18 08:06 PM PDT -ColinBeuttler,2024-06-19T03:08:43Z,- ColinBeuttler opened issue: [7027](https://github.com/hackforla/website/issues/7027) at 2024-06-18 08:08 PM PDT -ColinBeuttler,2024-06-23T20:18:39Z,- ColinBeuttler assigned to issue: [7027](https://github.com/hackforla/website/issues/7027) at 2024-06-23 01:18 PM PDT -combinatorist,2020-11-02T20:09:56Z,- combinatorist opened issue: [803](https://github.com/hackforla/website/issues/803) at 2020-11-02 12:09 PM PST -combinatorist,2020-11-03T15:19:40Z,- combinatorist commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-721193559) at 2020-11-03 07:19 AM PST -connie-yu-dotcom,2021-06-16T01:57:15Z,- connie-yu-dotcom opened issue: [1748](https://github.com/hackforla/website/issues/1748) at 2021-06-15 06:57 PM PDT -connie-yu-dotcom,2021-06-16T01:57:15Z,- connie-yu-dotcom assigned to issue: [1748](https://github.com/hackforla/website/issues/1748) at 2021-06-15 06:57 PM PDT -connie-yu-dotcom,2021-06-16T02:00:54Z,- connie-yu-dotcom commented on issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-15 07:00 PM PDT -connie-yu-dotcom,2021-06-16T04:09:12Z,- connie-yu-dotcom unassigned from issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-15 09:09 PM PDT -connie-yu-dotcom,2021-06-16T04:09:53Z,- connie-yu-dotcom assigned to issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-15 09:09 PM PDT -connie-yu-dotcom,2021-06-16T23:35:03Z,- connie-yu-dotcom unassigned from issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-861964152) at 2021-06-16 04:35 PM PDT -connortessaro,5351,SKILLS ISSUE -connortessaro,2023-08-30T03:41:42Z,- connortessaro opened issue: [5351](https://github.com/hackforla/website/issues/5351) at 2023-08-29 08:41 PM PDT -connortessaro,2023-08-30T04:08:30Z,- connortessaro assigned to issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1698441801) at 2023-08-29 09:08 PM PDT -connortessaro,2023-09-01T01:47:37Z,- connortessaro assigned to issue: [5317](https://github.com/hackforla/website/issues/5317#issuecomment-1694731801) at 2023-08-31 06:47 PM PDT -connortessaro,2023-09-01T07:24:05Z,- connortessaro opened pull request: [5405](https://github.com/hackforla/website/pull/5405) at 2023-09-01 12:24 AM PDT -connortessaro,2023-09-01T23:40:59Z,- connortessaro commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1703525647) at 2023-09-01 04:40 PM PDT -connortessaro,2023-09-02T00:46:37Z,- connortessaro commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1703592179) at 2023-09-01 05:46 PM PDT -connortessaro,2023-09-02T02:16:30Z,- connortessaro assigned to issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1685831197) at 2023-09-01 07:16 PM PDT -connortessaro,2023-09-02T02:20:41Z,- connortessaro commented on issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1703649613) at 2023-09-01 07:20 PM PDT -connortessaro,2023-09-02T20:52:41Z,- connortessaro opened pull request: [5421](https://github.com/hackforla/website/pull/5421) at 2023-09-02 01:52 PM PDT -connortessaro,2023-09-02T21:30:14Z,- connortessaro commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1703945685) at 2023-09-02 02:30 PM PDT -connortessaro,2023-09-02T21:30:46Z,- connortessaro commented on issue: [5351](https://github.com/hackforla/website/issues/5351#issuecomment-1703945913) at 2023-09-02 02:30 PM PDT -connortessaro,2023-09-03T18:14:32Z,- connortessaro pull request closed w/o merging: [5421](https://github.com/hackforla/website/pull/5421#event-10266935704) at 2023-09-03 11:14 AM PDT -connortessaro,2023-09-03T18:15:34Z,- connortessaro unassigned from issue: [5271](https://github.com/hackforla/website/issues/5271#issuecomment-1703649613) at 2023-09-03 11:15 AM PDT -connortessaro,2023-09-03T19:25:42Z,- connortessaro commented on pull request: [5421](https://github.com/hackforla/website/pull/5421#issuecomment-1704381984) at 2023-09-03 12:25 PM PDT -connortessaro,2023-09-04T03:02:00Z,- connortessaro pull request merged: [5405](https://github.com/hackforla/website/pull/5405#event-10268786260) at 2023-09-03 08:02 PM PDT -connortessaro,2024-01-11T05:54:09Z,- connortessaro closed issue as completed: [5351](https://github.com/hackforla/website/issues/5351#event-11451867764) at 2024-01-10 09:54 PM PST -ControlAltTea,3829,SKILLS ISSUE -ControlAltTea,2023-01-17T04:17:01Z,- ControlAltTea opened issue: [3829](https://github.com/hackforla/website/issues/3829) at 2023-01-16 08:17 PM PST -ControlAltTea,2023-01-17T04:17:01Z,- ControlAltTea assigned to issue: [3829](https://github.com/hackforla/website/issues/3829) at 2023-01-16 08:17 PM PST -copilot-pull-request-reviewer,2025-04-12T19:28:50Z,- copilot-pull-request-reviewer submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2762240543) at 2025-04-12 12:28 PM PDT -crachal,4315,SKILLS ISSUE -crachal,2023-03-29T03:17:25Z,- crachal opened issue: [4315](https://github.com/hackforla/website/issues/4315) at 2023-03-28 08:17 PM PDT -crachal,2023-03-29T03:58:33Z,- crachal assigned to issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1487889139) at 2023-03-28 08:58 PM PDT -crachal,2023-04-14T22:40:26Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1509364355) at 2023-04-14 03:40 PM PDT -crachal,2023-04-25T22:49:08Z,- crachal assigned to issue: [4413](https://github.com/hackforla/website/issues/4413#issuecomment-1501102586) at 2023-04-25 03:49 PM PDT -crachal,2023-04-25T23:07:26Z,- crachal commented on issue: [4413](https://github.com/hackforla/website/issues/4413#issuecomment-1522528291) at 2023-04-25 04:07 PM PDT -crachal,2023-04-27T01:41:54Z,- crachal opened pull request: [4570](https://github.com/hackforla/website/pull/4570) at 2023-04-26 06:41 PM PDT -crachal,2023-04-27T20:21:39Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1526370855) at 2023-04-27 01:21 PM PDT -crachal,2023-04-27T21:45:35Z,- crachal pull request merged: [4570](https://github.com/hackforla/website/pull/4570#event-9119036119) at 2023-04-27 02:45 PM PDT -crachal,2023-05-15T01:13:14Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1547061176) at 2023-05-14 06:13 PM PDT -crachal,2023-06-15T04:13:40Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1592324900) at 2023-06-14 09:13 PM PDT -crachal,2023-06-15T04:15:12Z,- crachal commented on issue: [4315](https://github.com/hackforla/website/issues/4315#issuecomment-1592326098) at 2023-06-14 09:15 PM PDT -CreslinDev,7519,SKILLS ISSUE -CreslinDev,2024-09-25T02:58:34Z,- CreslinDev opened issue: [7519](https://github.com/hackforla/website/issues/7519) at 2024-09-24 07:58 PM PDT -CreslinDev,2024-09-25T02:58:39Z,- CreslinDev assigned to issue: [7519](https://github.com/hackforla/website/issues/7519) at 2024-09-24 07:58 PM PDT -CreslinDev,2024-09-25T03:09:10Z,- CreslinDev commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2372814522) at 2024-09-24 08:09 PM PDT -CreslinDev,2024-09-25T03:24:59Z,- CreslinDev commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2372830846) at 2024-09-24 08:24 PM PDT -CreslinDev,2024-09-25T03:25:47Z,- CreslinDev commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2372831732) at 2024-09-24 08:25 PM PDT -cristinadz,4325,SKILLS ISSUE -cristinadz,2023-03-29T03:41:52Z,- cristinadz opened issue: [4325](https://github.com/hackforla/website/issues/4325) at 2023-03-28 08:41 PM PDT -cristinadz,2023-03-29T03:42:42Z,- cristinadz assigned to issue: [4325](https://github.com/hackforla/website/issues/4325#issuecomment-1487902071) at 2023-03-28 08:42 PM PDT -Crocodile-Lyle,7967,SKILLS ISSUE -Crocodile-Lyle,2025-03-04T03:55:13Z,- Crocodile-Lyle opened issue: [7966](https://github.com/hackforla/website/issues/7966) at 2025-03-03 07:55 PM PST -Crocodile-Lyle,2025-03-04T03:55:14Z,- Crocodile-Lyle opened issue: [7967](https://github.com/hackforla/website/issues/7967) at 2025-03-03 07:55 PM PST -Crocodile-Lyle,2025-03-04T03:55:47Z,- Crocodile-Lyle assigned to issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696126930) at 2025-03-03 07:55 PM PST -Crocodile-Lyle,2025-03-04T04:10:51Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696142358) at 2025-03-03 08:10 PM PST -Crocodile-Lyle,2025-03-04T04:19:55Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696151333) at 2025-03-03 08:19 PM PST -Crocodile-Lyle,2025-03-04T04:48:32Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2696188936) at 2025-03-03 08:48 PM PST -Crocodile-Lyle,2025-03-04T05:02:13Z,- Crocodile-Lyle assigned to issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2682859582) at 2025-03-03 09:02 PM PST -Crocodile-Lyle,2025-03-07T03:21:06Z,- Crocodile-Lyle commented on issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2705429771) at 2025-03-06 07:21 PM PST -Crocodile-Lyle,2025-03-07T03:51:36Z,- Crocodile-Lyle closed issue as completed: [7848](https://github.com/hackforla/website/issues/7848#event-16626268207) at 2025-03-06 07:51 PM PST -Crocodile-Lyle,2025-03-07T03:59:10Z,- Crocodile-Lyle assigned to issue: [7877](https://github.com/hackforla/website/issues/7877#issuecomment-2671194411) at 2025-03-06 07:59 PM PST -Crocodile-Lyle,2025-03-07T04:41:29Z,- Crocodile-Lyle opened pull request: [7981](https://github.com/hackforla/website/pull/7981) at 2025-03-06 08:41 PM PST -Crocodile-Lyle,2025-03-07T05:00:16Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2671192286) at 2025-03-06 09:00 PM PST -Crocodile-Lyle,2025-03-07T05:00:30Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2671192286) at 2025-03-06 09:00 PM PST -Crocodile-Lyle,2025-03-07T05:03:14Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705534298) at 2025-03-06 09:03 PM PST -Crocodile-Lyle,2025-03-07T05:03:30Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705534298) at 2025-03-06 09:03 PM PST -Crocodile-Lyle,2025-03-07T05:08:29Z,- Crocodile-Lyle unassigned from issue: [7848](https://github.com/hackforla/website/issues/7848#event-16626268207) at 2025-03-06 09:08 PM PST -Crocodile-Lyle,2025-03-07T05:08:40Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705537480) at 2025-03-06 09:08 PM PST -Crocodile-Lyle,2025-03-07T05:08:56Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705537480) at 2025-03-06 09:08 PM PST -Crocodile-Lyle,2025-03-07T05:09:33Z,- Crocodile-Lyle assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705542954) at 2025-03-06 09:09 PM PST -Crocodile-Lyle,2025-03-07T05:09:45Z,- Crocodile-Lyle unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705543713) at 2025-03-06 09:09 PM PST -Crocodile-Lyle,2025-03-07T05:11:04Z,- Crocodile-Lyle opened pull request: [7982](https://github.com/hackforla/website/pull/7982) at 2025-03-06 09:11 PM PST -Crocodile-Lyle,2025-03-07T05:18:01Z,- Crocodile-Lyle commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705552522) at 2025-03-06 09:18 PM PST -Crocodile-Lyle,2025-03-07T05:21:47Z,- Crocodile-Lyle commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2705556684) at 2025-03-06 09:21 PM PST -Crocodile-Lyle,2025-03-07T05:27:20Z,- Crocodile-Lyle pull request closed w/o merging: [7982](https://github.com/hackforla/website/pull/7982#event-16626887905) at 2025-03-06 09:27 PM PST -Crocodile-Lyle,2025-03-07T22:44:36Z,- Crocodile-Lyle commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2707648350) at 2025-03-07 02:44 PM PST -Crocodile-Lyle,2025-03-12T01:59:31Z,- Crocodile-Lyle closed issue as duplicate: [7966](https://github.com/hackforla/website/issues/7966#event-16703282902) at 2025-03-11 06:59 PM PDT -Crocodile-Lyle,2025-03-12T02:27:17Z,- Crocodile-Lyle commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2716229809) at 2025-03-11 07:27 PM PDT -Crocodile-Lyle,2025-03-25T07:58:00Z,- Crocodile-Lyle commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2750394664) at 2025-03-25 12:58 AM PDT -Crocodile-Lyle,2025-03-26T17:27:32Z,- Crocodile-Lyle pull request merged: [7981](https://github.com/hackforla/website/pull/7981#event-16997251093) at 2025-03-26 10:27 AM PDT -crystallyyy,5357,SKILLS ISSUE -crystallyyy,2023-08-30T04:01:27Z,- crystallyyy opened issue: [5357](https://github.com/hackforla/website/issues/5357) at 2023-08-29 09:01 PM PDT -crystallyyy,2023-08-30T04:01:56Z,- crystallyyy assigned to issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1698453268) at 2023-08-29 09:01 PM PDT -crystallyyy,2023-09-16T02:55:06Z,- crystallyyy commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1722114800) at 2023-09-15 07:55 PM PDT -crystallyyy,2023-09-21T22:56:04Z,- crystallyyy assigned to issue: [5506](https://github.com/hackforla/website/issues/5506#issuecomment-1716259181) at 2023-09-21 03:56 PM PDT -crystallyyy,2023-09-21T23:03:42Z,- crystallyyy commented on issue: [5506](https://github.com/hackforla/website/issues/5506#issuecomment-1730465590) at 2023-09-21 04:03 PM PDT -crystallyyy,2023-09-21T23:13:33Z,- crystallyyy commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1730474289) at 2023-09-21 04:13 PM PDT -crystallyyy,2023-09-21T23:13:33Z,- crystallyyy closed issue as completed: [5357](https://github.com/hackforla/website/issues/5357#event-10441242340) at 2023-09-21 04:13 PM PDT -crystallyyy,2023-09-25T23:07:36Z,- crystallyyy opened pull request: [5583](https://github.com/hackforla/website/pull/5583) at 2023-09-25 04:07 PM PDT -crystallyyy,2023-10-09T22:41:57Z,- crystallyyy commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1754007060) at 2023-10-09 03:41 PM PDT -crystallyyy,2023-10-11T22:29:43Z,- crystallyyy assigned to issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1736632454) at 2023-10-11 03:29 PM PDT -crystallyyy,2023-10-11T22:34:02Z,- crystallyyy commented on issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1758638866) at 2023-10-11 03:34 PM PDT -crystallyyy,2023-10-14T23:21:44Z,- crystallyyy pull request merged: [5583](https://github.com/hackforla/website/pull/5583#event-10656119716) at 2023-10-14 04:21 PM PDT -crystallyyy,2023-11-03T13:57:16Z,- crystallyyy unassigned from issue: [5595](https://github.com/hackforla/website/issues/5595#issuecomment-1791971858) at 2023-11-03 06:57 AM PDT -crystalogy,6954,SKILLS ISSUE -crystalogy,2024-06-04T03:20:02Z,- crystalogy opened issue: [6954](https://github.com/hackforla/website/issues/6954) at 2024-06-03 08:20 PM PDT -crystalogy,2024-06-09T01:23:34Z,- crystalogy assigned to issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2147895750) at 2024-06-08 06:23 PM PDT -csseu,2021-02-24T05:14:38Z,- csseu assigned to issue: [1056](https://github.com/hackforla/website/issues/1056) at 2021-02-23 09:14 PM PST -csseu,2021-02-24T05:32:20Z,- csseu opened pull request: [1101](https://github.com/hackforla/website/pull/1101) at 2021-02-23 09:32 PM PST -csseu,2021-02-24T05:39:13Z,- csseu commented on issue: [1056](https://github.com/hackforla/website/issues/1056#issuecomment-784794462) at 2021-02-23 09:39 PM PST -csseu,2021-02-24T05:39:43Z,- csseu pull request merged: [1101](https://github.com/hackforla/website/pull/1101#event-4368922812) at 2021-02-23 09:39 PM PST -csseu,2021-02-24T06:03:42Z,- csseu opened issue: [1102](https://github.com/hackforla/website/issues/1102) at 2021-02-23 10:03 PM PST -csseu,2021-02-24T06:05:27Z,- csseu commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-784808301) at 2021-02-23 10:05 PM PST -csseu,2021-02-24T06:08:53Z,- csseu opened issue: [1103](https://github.com/hackforla/website/issues/1103) at 2021-02-23 10:08 PM PST -csseu,2021-02-24T06:10:32Z,- csseu commented on issue: [1103](https://github.com/hackforla/website/issues/1103#issuecomment-784811971) at 2021-02-23 10:10 PM PST -csseu,2021-02-25T18:27:58Z,- csseu assigned to issue: [1047](https://github.com/hackforla/website/issues/1047) at 2021-02-25 10:27 AM PST -csseu,2021-02-25T18:31:36Z,- csseu opened pull request: [1120](https://github.com/hackforla/website/pull/1120) at 2021-02-25 10:31 AM PST -csseu,2021-02-25T18:33:51Z,- csseu closed issue as completed: [1096](https://github.com/hackforla/website/issues/1096#event-4378114191) at 2021-02-25 10:33 AM PST -csseu,2021-02-26T05:12:53Z,- csseu assigned to issue: [1045](https://github.com/hackforla/website/issues/1045) at 2021-02-25 09:12 PM PST -csseu,2021-02-26T05:32:59Z,- csseu unassigned from issue: [1045](https://github.com/hackforla/website/issues/1045) at 2021-02-25 09:32 PM PST -csseu,2021-02-26T05:33:04Z,- csseu closed issue by PR 1306: [1045](https://github.com/hackforla/website/issues/1045#event-4380102816) at 2021-02-25 09:33 PM PST -csseu,2021-02-26T05:33:06Z,- csseu reopened issue: [1045](https://github.com/hackforla/website/issues/1045#event-4380102816) at 2021-02-25 09:33 PM PST -csseu,2021-02-26T22:38:39Z,- csseu pull request merged: [1120](https://github.com/hackforla/website/pull/1120#event-4384057710) at 2021-02-26 02:38 PM PST -csseu,2021-02-28T18:39:53Z,- csseu assigned to issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-782896427) at 2021-02-28 10:39 AM PST -csseu,2021-02-28T20:20:47Z,- csseu assigned to issue: [1139](https://github.com/hackforla/website/issues/1139) at 2021-02-28 12:20 PM PST -csseu,2021-02-28T21:02:09Z,- csseu commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787522431) at 2021-02-28 01:02 PM PST -csseu,2021-02-28T22:00:20Z,- csseu commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787530928) at 2021-02-28 02:00 PM PST -csseu,2021-02-28T22:08:08Z,- csseu commented on issue: [1139](https://github.com/hackforla/website/issues/1139#issuecomment-787532056) at 2021-02-28 02:08 PM PST -csseu,2021-03-01T01:46:30Z,- csseu opened pull request: [1143](https://github.com/hackforla/website/pull/1143) at 2021-02-28 05:46 PM PST -csseu,2021-03-01T04:49:40Z,- csseu commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-787633980) at 2021-02-28 08:49 PM PST -csseu,2021-03-01T18:29:26Z,- csseu commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788170361) at 2021-03-01 10:29 AM PST -csseu,2021-03-02T07:58:01Z,- csseu commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788700941) at 2021-03-01 11:58 PM PST -csseu,2021-03-07T02:20:45Z,- csseu commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-792172256) at 2021-03-06 06:20 PM PST -csseu,2021-03-17T04:01:47Z,- csseu commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-800776393) at 2021-03-16 09:01 PM PDT -csseu,2021-03-17T04:05:39Z,- csseu commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-800777535) at 2021-03-16 09:05 PM PDT -csseu,2021-03-17T16:31:59Z,- csseu commented on pull request: [1137](https://github.com/hackforla/website/pull/1137#issuecomment-801229014) at 2021-03-17 09:31 AM PDT -csseu,2021-03-18T04:06:42Z,- csseu opened pull request: [1250](https://github.com/hackforla/website/pull/1250) at 2021-03-17 09:06 PM PDT -csseu,2021-03-18T04:10:19Z,- csseu commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-801606909) at 2021-03-17 09:10 PM PDT -csseu,2021-03-18T17:24:02Z,- csseu commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802143179) at 2021-03-18 10:24 AM PDT -csseu,2021-03-18T18:11:13Z,- csseu pull request merged: [1250](https://github.com/hackforla/website/pull/1250#event-4477838959) at 2021-03-18 11:11 AM PDT -csseu,2021-03-28T02:36:44Z,- csseu commented on issue: [1102](https://github.com/hackforla/website/issues/1102#issuecomment-808834421) at 2021-03-27 07:36 PM PDT -csseu,2021-03-28T05:09:37Z,- csseu opened issue: [1337](https://github.com/hackforla/website/issues/1337) at 2021-03-27 10:09 PM PDT -csseu,2021-03-28T05:15:14Z,- csseu commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-808846231) at 2021-03-27 10:15 PM PDT -csseu,2021-04-05T00:44:15Z,- csseu pull request closed w/o merging: [1143](https://github.com/hackforla/website/pull/1143#event-4549682558) at 2021-04-04 05:44 PM PDT -csseu,2021-04-05T06:55:50Z,- csseu opened pull request: [1357](https://github.com/hackforla/website/pull/1357) at 2021-04-04 11:55 PM PDT -csseu,2021-04-05T20:49:12Z,- csseu pull request merged: [1357](https://github.com/hackforla/website/pull/1357#event-4553353437) at 2021-04-05 01:49 PM PDT -csseu,2021-04-05T21:48:31Z,- csseu commented on pull request: [1357](https://github.com/hackforla/website/pull/1357#issuecomment-813670394) at 2021-04-05 02:48 PM PDT -csseu,2021-04-06T05:53:42Z,- csseu commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-813843590) at 2021-04-05 10:53 PM PDT -csseu,2021-04-15T07:00:23Z,- csseu closed issue as completed: [1138](https://github.com/hackforla/website/issues/1138#event-4597455704) at 2021-04-15 12:00 AM PDT -csseu,2021-04-18T16:21:41Z,- csseu assigned to issue: [1416](https://github.com/hackforla/website/issues/1416) at 2021-04-18 09:21 AM PDT -csseu,2021-06-13T17:39:25Z,- csseu assigned to issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-860245851) at 2021-06-13 10:39 AM PDT -csseu,2021-06-16T19:53:40Z,- csseu commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862669255) at 2021-06-16 12:53 PM PDT -csseu,2021-06-16T20:07:23Z,- csseu commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862677730) at 2021-06-16 01:07 PM PDT -csseu,2021-06-21T07:03:39Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-864782536) at 2021-06-21 12:03 AM PDT -csseu,2021-06-21T21:15:55Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-865349451) at 2021-06-21 02:15 PM PDT -csseu,2021-06-23T21:00:32Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867155309) at 2021-06-23 02:00 PM PDT -csseu,2021-06-24T16:18:39Z,- csseu commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867773487) at 2021-06-24 09:18 AM PDT -csseu,2021-06-27T16:24:43Z,- csseu unassigned from issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862677730) at 2021-06-27 09:24 AM PDT -ctsexton,2018-06-29T00:22:32Z,- ctsexton opened pull request: [2](https://github.com/hackforla/website/pull/2) at 2018-06-28 05:22 PM PDT -ctsexton,2018-07-03T03:52:06Z,- ctsexton commented on pull request: [2](https://github.com/hackforla/website/pull/2#issuecomment-402005356) at 2018-07-02 08:52 PM PDT -ctsexton,2018-07-18T02:30:39Z,- ctsexton pull request merged: [2](https://github.com/hackforla/website/pull/2#event-1739105985) at 2018-07-17 07:30 PM PDT -ctsexton,2018-07-18T08:40:18Z,- ctsexton commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-405855893) at 2018-07-18 01:40 AM PDT -ctsexton,2020-01-26T19:39:32Z,- ctsexton assigned to issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578535363) at 2020-01-26 11:39 AM PST -ctsexton,2020-01-26T23:13:59Z,- ctsexton commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578553260) at 2020-01-26 03:13 PM PST -ctsexton,2020-01-27T03:00:16Z,- ctsexton commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578576529) at 2020-01-26 07:00 PM PST -ctsexton,2020-02-02T18:08:48Z,- ctsexton unassigned from issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578576529) at 2020-02-02 10:08 AM PST -ctsexton,2020-02-16T21:36:50Z,- ctsexton assigned to issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-586756931) at 2020-02-16 01:36 PM PST -ctsexton,2020-02-24T17:52:44Z,- ctsexton commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-590464074) at 2020-02-24 09:52 AM PST -ctsexton,2020-03-02T03:52:22Z,- ctsexton unassigned from issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-590464074) at 2020-03-01 07:52 PM PST -ctsexton,2020-11-12T23:51:21Z,- ctsexton closed issue as completed: [266](https://github.com/hackforla/website/issues/266#event-3991161328) at 2020-11-12 03:51 PM PST -curbeammonae,6881,SKILLS ISSUE -curbeammonae,2024-05-22T03:02:29Z,- curbeammonae opened issue: [6881](https://github.com/hackforla/website/issues/6881) at 2024-05-21 08:02 PM PDT -curbeammonae,2024-05-22T03:02:32Z,- curbeammonae assigned to issue: [6881](https://github.com/hackforla/website/issues/6881) at 2024-05-21 08:02 PM PDT -curbeammonae,2024-05-23T18:46:49Z,- curbeammonae assigned to issue: [6734](https://github.com/hackforla/website/issues/6734) at 2024-05-23 11:46 AM PDT -curbeammonae,2024-05-24T03:36:32Z,- curbeammonae opened pull request: [6891](https://github.com/hackforla/website/pull/6891) at 2024-05-23 08:36 PM PDT -curbeammonae,2024-05-26T14:36:35Z,- curbeammonae commented on issue: [6734](https://github.com/hackforla/website/issues/6734#issuecomment-2132244890) at 2024-05-26 07:36 AM PDT -curbeammonae,2024-05-26T15:05:10Z,- curbeammonae commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2132252867) at 2024-05-26 08:05 AM PDT -curbeammonae,2024-05-27T18:52:57Z,- curbeammonae assigned to issue: [6725](https://github.com/hackforla/website/issues/6725) at 2024-05-27 11:52 AM PDT -curbeammonae,2024-05-29T20:38:00Z,- curbeammonae pull request merged: [6891](https://github.com/hackforla/website/pull/6891#event-12977053304) at 2024-05-29 01:38 PM PDT -curbeammonae,2024-05-30T00:31:45Z,- curbeammonae commented on issue: [6725](https://github.com/hackforla/website/issues/6725#issuecomment-2138461349) at 2024-05-29 05:31 PM PDT -curbeammonae,2024-06-02T14:19:53Z,- curbeammonae opened pull request: [6925](https://github.com/hackforla/website/pull/6925) at 2024-06-02 07:19 AM PDT -curbeammonae,2024-06-02T14:21:43Z,- curbeammonae commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2143875381) at 2024-06-02 07:21 AM PDT -curbeammonae,2024-06-05T19:07:19Z,- curbeammonae pull request merged: [6925](https://github.com/hackforla/website/pull/6925#event-13056210298) at 2024-06-05 12:07 PM PDT -curtis-chung,4310,SKILLS ISSUE -curtis-chung,2023-03-29T03:15:25Z,- curtis-chung opened issue: [4310](https://github.com/hackforla/website/issues/4310) at 2023-03-28 08:15 PM PDT -curtis-chung,2023-04-25T02:01:55Z,- curtis-chung assigned to issue: [4310](https://github.com/hackforla/website/issues/4310) at 2023-04-24 07:01 PM PDT -cwvivianlin,2951,SKILLS ISSUE -cwvivianlin,2022-03-09T23:04:29Z,- cwvivianlin opened issue: [2951](https://github.com/hackforla/website/issues/2951) at 2022-03-09 03:04 PM PST -cwvivianlin,2022-03-09T23:08:21Z,- cwvivianlin assigned to issue: [2951](https://github.com/hackforla/website/issues/2951#issuecomment-1063467713) at 2022-03-09 03:08 PM PST -cwvivianlin,2022-03-09T23:11:46Z,- cwvivianlin assigned to issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-864590949) at 2022-03-09 03:11 PM PST -cwvivianlin,2022-03-09T23:13:47Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1063473259) at 2022-03-09 03:13 PM PST -cwvivianlin,2022-03-09T23:15:32Z,- cwvivianlin closed issue as completed: [2951](https://github.com/hackforla/website/issues/2951#event-6213654721) at 2022-03-09 03:15 PM PST -cwvivianlin,2022-03-10T17:37:36Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1064323404) at 2022-03-10 09:37 AM PST -cwvivianlin,2022-03-13T07:05:35Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1066040783) at 2022-03-13 12:05 AM PDT -cwvivianlin,2022-03-13T07:20:33Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1066042756) at 2022-03-13 12:20 AM PDT -cwvivianlin,2022-03-16T19:28:29Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1069533151) at 2022-03-16 12:28 PM PDT -cwvivianlin,2022-03-22T22:44:08Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1075724236) at 2022-03-22 03:44 PM PDT -cwvivianlin,2022-03-29T23:18:49Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1082460298) at 2022-03-29 04:18 PM PDT -cwvivianlin,2022-03-30T21:15:54Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1083632582) at 2022-03-30 02:15 PM PDT -cwvivianlin,2022-04-02T17:39:04Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1086687201) at 2022-04-02 10:39 AM PDT -cwvivianlin,2022-04-03T15:59:15Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1086897222) at 2022-04-03 08:59 AM PDT -cwvivianlin,2022-04-13T19:19:02Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1098397855) at 2022-04-13 12:19 PM PDT -cwvivianlin,2022-04-15T21:26:26Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1100420662) at 2022-04-15 02:26 PM PDT -cwvivianlin,2022-04-20T15:09:35Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1104046028) at 2022-04-20 08:09 AM PDT -cwvivianlin,2022-04-25T15:44:49Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1108741901) at 2022-04-25 08:44 AM PDT -cwvivianlin,2022-05-08T17:57:12Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1120461243) at 2022-05-08 10:57 AM PDT -cwvivianlin,2022-05-15T16:13:05Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1126971841) at 2022-05-15 09:13 AM PDT -cwvivianlin,2022-05-15T16:34:01Z,- cwvivianlin opened issue: [3139](https://github.com/hackforla/website/issues/3139) at 2022-05-15 09:34 AM PDT -cwvivianlin,2022-05-15T16:50:12Z,- cwvivianlin opened issue: [3140](https://github.com/hackforla/website/issues/3140) at 2022-05-15 09:50 AM PDT -cwvivianlin,2022-05-15T17:02:36Z,- cwvivianlin opened issue: [3142](https://github.com/hackforla/website/issues/3142) at 2022-05-15 10:02 AM PDT -cwvivianlin,2022-05-15T17:45:42Z,- cwvivianlin opened issue: [3143](https://github.com/hackforla/website/issues/3143) at 2022-05-15 10:45 AM PDT -cwvivianlin,2022-05-16T16:54:28Z,- cwvivianlin opened issue: [3145](https://github.com/hackforla/website/issues/3145) at 2022-05-16 09:54 AM PDT -cwvivianlin,2022-05-16T17:02:41Z,- cwvivianlin commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1127915966) at 2022-05-16 10:02 AM PDT -cwvivianlin,2022-05-16T17:02:41Z,- cwvivianlin closed issue as completed: [1789](https://github.com/hackforla/website/issues/1789#event-6617911865) at 2022-05-16 10:02 AM PDT -cwvivianlin,2022-05-19T21:14:26Z,- cwvivianlin commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1132213910) at 2022-05-19 02:14 PM PDT -d-perez-8,3388,SKILLS ISSUE -d-perez-8,2022-07-19T02:46:54Z,- d-perez-8 opened issue: [3388](https://github.com/hackforla/website/issues/3388) at 2022-07-18 07:46 PM PDT -d-perez-8,2022-07-22T21:07:27Z,- d-perez-8 assigned to issue: [3388](https://github.com/hackforla/website/issues/3388) at 2022-07-22 02:07 PM PDT -d-perez-8,2022-07-25T17:34:28Z,- d-perez-8 assigned to issue: [2815](https://github.com/hackforla/website/issues/2815#issuecomment-1046316414) at 2022-07-25 10:34 AM PDT -d-perez-8,2022-07-25T18:02:19Z,- d-perez-8 commented on issue: [2815](https://github.com/hackforla/website/issues/2815#issuecomment-1194423423) at 2022-07-25 11:02 AM PDT -d-perez-8,2022-07-25T18:55:46Z,- d-perez-8 commented on issue: [3388](https://github.com/hackforla/website/issues/3388#issuecomment-1194483292) at 2022-07-25 11:55 AM PDT -d-perez-8,2022-07-25T19:29:13Z,- d-perez-8 opened pull request: [3427](https://github.com/hackforla/website/pull/3427) at 2022-07-25 12:29 PM PDT -d-perez-8,2022-07-25T19:47:04Z,- d-perez-8 commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194544105) at 2022-07-25 12:47 PM PDT -d-perez-8,2022-07-26T23:46:22Z,- d-perez-8 pull request merged: [3427](https://github.com/hackforla/website/pull/3427#event-7068760501) at 2022-07-26 04:46 PM PDT -d-perez-8,2022-07-27T02:40:14Z,- d-perez-8 closed issue as completed: [3388](https://github.com/hackforla/website/issues/3388#event-7069295977) at 2022-07-26 07:40 PM PDT -d-perez-8,2022-07-28T15:54:26Z,- d-perez-8 assigned to issue: [3102](https://github.com/hackforla/website/issues/3102#issuecomment-1116852709) at 2022-07-28 08:54 AM PDT -d-perez-8,2022-07-28T18:28:24Z,- d-perez-8 opened pull request: [3438](https://github.com/hackforla/website/pull/3438) at 2022-07-28 11:28 AM PDT -d-perez-8,2022-07-28T18:33:43Z,- d-perez-8 pull request closed w/o merging: [3438](https://github.com/hackforla/website/pull/3438#event-7084003307) at 2022-07-28 11:33 AM PDT -d-perez-8,2022-07-29T02:33:01Z,- d-perez-8 opened pull request: [3441](https://github.com/hackforla/website/pull/3441) at 2022-07-28 07:33 PM PDT -d-perez-8,2022-07-29T02:52:44Z,- d-perez-8 commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198826952) at 2022-07-28 07:52 PM PDT -d-perez-8,2022-08-01T18:20:14Z,- d-perez-8 pull request merged: [3441](https://github.com/hackforla/website/pull/3441#event-7103815628) at 2022-08-01 11:20 AM PDT -d-perez-8,2022-08-08T21:35:03Z,- d-perez-8 assigned to issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1178240374) at 2022-08-08 02:35 PM PDT -d-perez-8,2022-08-08T21:38:30Z,- d-perez-8 commented on issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1208639456) at 2022-08-08 02:38 PM PDT -d-perez-8,2022-08-08T23:54:06Z,- d-perez-8 opened pull request: [3454](https://github.com/hackforla/website/pull/3454) at 2022-08-08 04:54 PM PDT -d-perez-8,2022-08-10T00:03:51Z,- d-perez-8 commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1210007479) at 2022-08-09 05:03 PM PDT -d-perez-8,2022-08-10T02:02:32Z,- d-perez-8 commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1210065337) at 2022-08-09 07:02 PM PDT -d-perez-8,2022-08-11T03:57:05Z,- d-perez-8 pull request merged: [3454](https://github.com/hackforla/website/pull/3454#event-7168558040) at 2022-08-10 08:57 PM PDT -d-perez-8,2022-08-12T03:10:00Z,- d-perez-8 commented on pull request: [3463](https://github.com/hackforla/website/pull/3463#issuecomment-1212686663) at 2022-08-11 08:10 PM PDT -d-perez-8,2022-08-12T03:27:42Z,- d-perez-8 submitted pull request review: [3463](https://github.com/hackforla/website/pull/3463#pullrequestreview-1070558909) at 2022-08-11 08:27 PM PDT -d-perez-8,2022-08-12T15:37:54Z,- d-perez-8 assigned to issue: [3336](https://github.com/hackforla/website/issues/3336#issuecomment-1177001753) at 2022-08-12 08:37 AM PDT -d-perez-8,2022-08-12T16:24:47Z,- d-perez-8 opened pull request: [3466](https://github.com/hackforla/website/pull/3466) at 2022-08-12 09:24 AM PDT -d-perez-8,2022-08-12T16:26:30Z,- d-perez-8 commented on issue: [3336](https://github.com/hackforla/website/issues/3336#issuecomment-1213299843) at 2022-08-12 09:26 AM PDT -d-perez-8,2022-08-13T02:51:04Z,- d-perez-8 commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1213638432) at 2022-08-12 07:51 PM PDT -d-perez-8,2022-08-13T05:59:12Z,- d-perez-8 pull request merged: [3466](https://github.com/hackforla/website/pull/3466#event-7182841602) at 2022-08-12 10:59 PM PDT -d-perez-8,2022-08-13T14:32:25Z,- d-perez-8 commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1214168891) at 2022-08-13 07:32 AM PDT -d-perez-8,2022-08-17T02:59:36Z,- d-perez-8 assigned to issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-907765914) at 2022-08-16 07:59 PM PDT -d-perez-8,2022-08-17T03:06:54Z,- d-perez-8 commented on issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1217405355) at 2022-08-16 08:06 PM PDT -d-perez-8,2022-08-17T03:13:31Z,- d-perez-8 closed issue by PR 3466: [3336](https://github.com/hackforla/website/issues/3336#event-7201906248) at 2022-08-16 08:13 PM PDT -d-perez-8,2022-08-17T05:30:38Z,- d-perez-8 opened pull request: [3471](https://github.com/hackforla/website/pull/3471) at 2022-08-16 10:30 PM PDT -d-perez-8,2022-08-17T17:12:49Z,- d-perez-8 commented on pull request: [3471](https://github.com/hackforla/website/pull/3471#issuecomment-1218286271) at 2022-08-17 10:12 AM PDT -d-perez-8,2022-08-21T18:31:22Z,- d-perez-8 pull request merged: [3471](https://github.com/hackforla/website/pull/3471#event-7228040505) at 2022-08-21 11:31 AM PDT -d-perez-8,2022-08-27T17:07:53Z,- d-perez-8 commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229228876) at 2022-08-27 10:07 AM PDT -d-perez-8,2022-08-27T17:38:31Z,- d-perez-8 submitted pull request review: [3490](https://github.com/hackforla/website/pull/3490#pullrequestreview-1087704606) at 2022-08-27 10:38 AM PDT -d-perez-8,2022-08-27T18:04:35Z,- d-perez-8 commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229237944) at 2022-08-27 11:04 AM PDT -d-perez-8,2022-08-27T18:36:59Z,- d-perez-8 commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229243060) at 2022-08-27 11:36 AM PDT -d-perez-8,2022-08-28T18:29:47Z,- d-perez-8 submitted pull request review: [3490](https://github.com/hackforla/website/pull/3490#pullrequestreview-1087897477) at 2022-08-28 11:29 AM PDT -d-perez-8,2022-08-29T17:26:58Z,- d-perez-8 assigned to issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-907766320) at 2022-08-29 10:26 AM PDT -d-perez-8,2022-08-29T17:29:00Z,- d-perez-8 commented on issue: [2199](https://github.com/hackforla/website/issues/2199#issuecomment-1230618486) at 2022-08-29 10:29 AM PDT -d-perez-8,2022-08-29T17:46:03Z,- d-perez-8 opened pull request: [3497](https://github.com/hackforla/website/pull/3497) at 2022-08-29 10:46 AM PDT -d-perez-8,2022-08-29T22:03:54Z,- d-perez-8 pull request merged: [3497](https://github.com/hackforla/website/pull/3497#event-7282462531) at 2022-08-29 03:03 PM PDT -d-perez-8,2022-09-06T20:49:56Z,- d-perez-8 assigned to issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-922516418) at 2022-09-06 01:49 PM PDT -d-perez-8,2022-09-06T20:51:56Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1238636738) at 2022-09-06 01:51 PM PDT -d-perez-8,2022-09-06T21:13:59Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1238655483) at 2022-09-06 02:13 PM PDT -d-perez-8,2022-09-13T15:29:53Z,- d-perez-8 commented on pull request: [3534](https://github.com/hackforla/website/pull/3534#issuecomment-1245581150) at 2022-09-13 08:29 AM PDT -d-perez-8,2022-09-13T15:45:26Z,- d-perez-8 submitted pull request review: [3534](https://github.com/hackforla/website/pull/3534#pullrequestreview-1106050362) at 2022-09-13 08:45 AM PDT -d-perez-8,2022-09-18T17:03:25Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1250348436) at 2022-09-18 10:03 AM PDT -d-perez-8,2022-09-27T00:46:52Z,- d-perez-8 commented on pull request: [3585](https://github.com/hackforla/website/pull/3585#issuecomment-1258829426) at 2022-09-26 05:46 PM PDT -d-perez-8,2022-09-27T00:55:38Z,- d-perez-8 submitted pull request review: [3585](https://github.com/hackforla/website/pull/3585#pullrequestreview-1121081231) at 2022-09-26 05:55 PM PDT -d-perez-8,2022-09-27T00:57:31Z,- d-perez-8 commented on pull request: [3580](https://github.com/hackforla/website/pull/3580#issuecomment-1258834855) at 2022-09-26 05:57 PM PDT -d-perez-8,2022-09-27T01:13:46Z,- d-perez-8 submitted pull request review: [3580](https://github.com/hackforla/website/pull/3580#pullrequestreview-1121090058) at 2022-09-26 06:13 PM PDT -d-perez-8,2022-10-04T17:12:26Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1267310366) at 2022-10-04 10:12 AM PDT -d-perez-8,2022-10-04T20:14:20Z,- d-perez-8 commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1267526197) at 2022-10-04 01:14 PM PDT -d-perez-8,2022-10-04T22:23:20Z,- d-perez-8 submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1130678586) at 2022-10-04 03:23 PM PDT -d-perez-8,2022-10-08T17:33:07Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1272364476) at 2022-10-08 10:33 AM PDT -d-perez-8,2022-10-09T17:15:27Z,- d-perez-8 commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1272587782) at 2022-10-09 10:15 AM PDT -d-perez-8,2022-10-10T17:04:01Z,- d-perez-8 commented on pull request: [3601](https://github.com/hackforla/website/pull/3601#issuecomment-1273599122) at 2022-10-10 10:04 AM PDT -d-perez-8,2022-10-10T17:24:39Z,- d-perez-8 submitted pull request review: [3601](https://github.com/hackforla/website/pull/3601#pullrequestreview-1136341154) at 2022-10-10 10:24 AM PDT -d-perez-8,2022-10-12T18:34:22Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1276577690) at 2022-10-12 11:34 AM PDT -d-perez-8,2022-10-14T22:30:16Z,- d-perez-8 commented on pull request: [3620](https://github.com/hackforla/website/pull/3620#issuecomment-1279540360) at 2022-10-14 03:30 PM PDT -d-perez-8,2022-10-14T22:46:52Z,- d-perez-8 submitted pull request review: [3620](https://github.com/hackforla/website/pull/3620#pullrequestreview-1143082885) at 2022-10-14 03:46 PM PDT -d-perez-8,2022-10-17T23:21:07Z,- d-perez-8 commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1281620730) at 2022-10-17 04:21 PM PDT -d-perez-8,2022-10-17T23:22:34Z,- d-perez-8 commented on pull request: [3629](https://github.com/hackforla/website/pull/3629#issuecomment-1281621743) at 2022-10-17 04:22 PM PDT -d-perez-8,2022-10-17T23:36:58Z,- d-perez-8 submitted pull request review: [3629](https://github.com/hackforla/website/pull/3629#pullrequestreview-1144920966) at 2022-10-17 04:36 PM PDT -d-perez-8,2022-10-17T23:44:35Z,- d-perez-8 commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1281636086) at 2022-10-17 04:44 PM PDT -d-perez-8,2022-10-19T01:44:21Z,- d-perez-8 submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1146737001) at 2022-10-18 06:44 PM PDT -d-perez-8,2022-10-23T17:52:48Z,- d-perez-8 unassigned from issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1286080470) at 2022-10-23 10:52 AM PDT -d-perez-8,2022-11-06T19:15:05Z,- d-perez-8 unassigned from issue: [2198](https://github.com/hackforla/website/issues/2198#event-7228040529) at 2022-11-06 11:15 AM PST -d-perez-8,2022-11-06T19:15:13Z,- d-perez-8 unassigned from issue: [2199](https://github.com/hackforla/website/issues/2199#event-7282462601) at 2022-11-06 11:15 AM PST -d-perez-8,2022-11-08T19:57:51Z,- d-perez-8 assigned to issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1304874482) at 2022-11-08 11:57 AM PST -d-perez-8,2022-11-15T01:30:52Z,- d-perez-8 commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314634006) at 2022-11-14 05:30 PM PST -d-perez-8,2022-11-15T01:46:22Z,- d-perez-8 submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1180081974) at 2022-11-14 05:46 PM PST -d-perez-8,2023-01-20T00:36:53Z,- d-perez-8 assigned to issue: [3761](https://github.com/hackforla/website/issues/3761#issuecomment-1336128568) at 2023-01-19 04:36 PM PST -d-perez-8,2023-01-20T00:37:56Z,- d-perez-8 commented on issue: [3761](https://github.com/hackforla/website/issues/3761#issuecomment-1397786950) at 2023-01-19 04:37 PM PST -d-perez-8,2023-01-20T01:57:19Z,- d-perez-8 opened pull request: [3845](https://github.com/hackforla/website/pull/3845) at 2023-01-19 05:57 PM PST -d-perez-8,2023-01-22T19:31:29Z,- d-perez-8 opened issue: [3852](https://github.com/hackforla/website/issues/3852) at 2023-01-22 11:31 AM PST -d-perez-8,2023-01-22T19:37:04Z,- d-perez-8 assigned to issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1272583281) at 2023-01-22 11:37 AM PST -d-perez-8,2023-01-22T20:00:22Z,- d-perez-8 opened issue: [3853](https://github.com/hackforla/website/issues/3853) at 2023-01-22 12:00 PM PST -d-perez-8,2023-01-22T20:03:56Z,- d-perez-8 opened issue: [3854](https://github.com/hackforla/website/issues/3854) at 2023-01-22 12:03 PM PST -d-perez-8,2023-01-22T20:05:46Z,- d-perez-8 opened issue: [3855](https://github.com/hackforla/website/issues/3855) at 2023-01-22 12:05 PM PST -d-perez-8,2023-01-22T20:11:00Z,- d-perez-8 opened issue: [3856](https://github.com/hackforla/website/issues/3856) at 2023-01-22 12:11 PM PST -d-perez-8,2023-01-22T20:13:26Z,- d-perez-8 opened issue: [3857](https://github.com/hackforla/website/issues/3857) at 2023-01-22 12:13 PM PST -d-perez-8,2023-01-22T20:21:57Z,- d-perez-8 commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399597413) at 2023-01-22 12:21 PM PST -d-perez-8,2023-01-22T21:33:06Z,- d-perez-8 unassigned from issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399614108) at 2023-01-22 01:33 PM PST -d-perez-8,2023-01-23T23:05:48Z,- d-perez-8 commented on pull request: [3847](https://github.com/hackforla/website/pull/3847#issuecomment-1401126521) at 2023-01-23 03:05 PM PST -d-perez-8,2023-01-23T23:42:38Z,- d-perez-8 submitted pull request review: [3847](https://github.com/hackforla/website/pull/3847#pullrequestreview-1266600511) at 2023-01-23 03:42 PM PST -d-perez-8,2023-01-23T23:44:49Z,- d-perez-8 commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1401158710) at 2023-01-23 03:44 PM PST -d-perez-8,2023-01-24T00:00:11Z,- d-perez-8 submitted pull request review: [3850](https://github.com/hackforla/website/pull/3850#pullrequestreview-1266613042) at 2023-01-23 04:00 PM PST -d-perez-8,2023-01-28T04:21:09Z,- d-perez-8 commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1407283446) at 2023-01-27 08:21 PM PST -d-perez-8,2023-01-29T18:14:58Z,- d-perez-8 commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1407733079) at 2023-01-29 10:14 AM PST -d-perez-8,2023-01-29T18:40:22Z,- d-perez-8 commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1407739131) at 2023-01-29 10:40 AM PST -d-perez-8,2023-01-30T22:19:32Z,- d-perez-8 submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1276123558) at 2023-01-30 02:19 PM PST -d-perez-8,2023-01-30T23:22:05Z,- d-perez-8 opened issue: [3903](https://github.com/hackforla/website/issues/3903) at 2023-01-30 03:22 PM PST -d-perez-8,2023-01-31T22:16:55Z,- d-perez-8 commented on pull request: [3896](https://github.com/hackforla/website/pull/3896#issuecomment-1411143510) at 2023-01-31 02:16 PM PST -d-perez-8,2023-01-31T22:32:47Z,- d-perez-8 submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1278122507) at 2023-01-31 02:32 PM PST -d-perez-8,2023-01-31T22:54:49Z,- d-perez-8 submitted pull request review: [3896](https://github.com/hackforla/website/pull/3896#pullrequestreview-1278147870) at 2023-01-31 02:54 PM PST -d-perez-8,2023-01-31T23:09:36Z,- d-perez-8 commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1411199005) at 2023-01-31 03:09 PM PST -d-perez-8,2023-01-31T23:50:54Z,- d-perez-8 submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1278196868) at 2023-01-31 03:50 PM PST -d-perez-8,2023-02-01T02:15:32Z,- d-perez-8 pull request merged: [3845](https://github.com/hackforla/website/pull/3845#event-8405553638) at 2023-01-31 06:15 PM PST -d-perez-8,2023-02-04T23:59:53Z,- d-perez-8 commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1416879632) at 2023-02-04 03:59 PM PST -d-perez-8,2023-02-07T22:52:19Z,- d-perez-8 commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1421579595) at 2023-02-07 02:52 PM PST -d-perez-8,2023-02-21T17:38:34Z,- d-perez-8 assigned to issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1427107968) at 2023-02-21 09:38 AM PST -d-perez-8,2023-02-21T17:45:44Z,- d-perez-8 commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1438874061) at 2023-02-21 09:45 AM PST -d-perez-8,2023-02-21T18:38:03Z,- d-perez-8 opened pull request: [4020](https://github.com/hackforla/website/pull/4020) at 2023-02-21 10:38 AM PST -d-perez-8,2023-02-21T19:05:39Z,- d-perez-8 submitted pull request review: [4019](https://github.com/hackforla/website/pull/4019#pullrequestreview-1308018388) at 2023-02-21 11:05 AM PST -d-perez-8,2023-02-22T22:31:04Z,- d-perez-8 commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1440905087) at 2023-02-22 02:31 PM PST -d-perez-8,2023-02-24T16:38:23Z,- d-perez-8 pull request closed w/o merging: [4020](https://github.com/hackforla/website/pull/4020#event-8603742243) at 2023-02-24 08:38 AM PST -d-perez-8,2023-02-24T16:52:14Z,- d-perez-8 commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1444007126) at 2023-02-24 08:52 AM PST -d-perez-8,2023-02-24T16:55:12Z,- d-perez-8 opened pull request: [4034](https://github.com/hackforla/website/pull/4034) at 2023-02-24 08:55 AM PST -d-perez-8,2023-02-26T20:16:30Z,- d-perez-8 pull request merged: [4034](https://github.com/hackforla/website/pull/4034#event-8610114438) at 2023-02-26 12:16 PM PST -d-perez-8,2023-03-01T22:56:28Z,- d-perez-8 assigned to issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1444584350) at 2023-03-01 02:56 PM PST -d-perez-8,2023-03-01T22:57:55Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1450978723) at 2023-03-01 02:57 PM PST -d-perez-8,2023-03-02T01:54:35Z,- d-perez-8 commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1451156157) at 2023-03-01 05:54 PM PST -d-perez-8,2023-03-02T02:54:41Z,- d-perez-8 commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1451196763) at 2023-03-01 06:54 PM PST -d-perez-8,2023-03-02T19:07:33Z,- d-perez-8 commented on pull request: [4091](https://github.com/hackforla/website/pull/4091#issuecomment-1452415011) at 2023-03-02 11:07 AM PST -d-perez-8,2023-03-02T19:22:04Z,- d-perez-8 submitted pull request review: [4091](https://github.com/hackforla/website/pull/4091#pullrequestreview-1322476139) at 2023-03-02 11:22 AM PST -d-perez-8,2023-03-02T19:23:14Z,- d-perez-8 commented on pull request: [4086](https://github.com/hackforla/website/pull/4086#issuecomment-1452432108) at 2023-03-02 11:23 AM PST -d-perez-8,2023-03-02T19:37:35Z,- d-perez-8 submitted pull request review: [4086](https://github.com/hackforla/website/pull/4086#pullrequestreview-1322496597) at 2023-03-02 11:37 AM PST -d-perez-8,2023-03-03T22:33:54Z,- d-perez-8 commented on pull request: [4093](https://github.com/hackforla/website/pull/4093#issuecomment-1454216535) at 2023-03-03 02:33 PM PST -d-perez-8,2023-03-03T22:46:33Z,- d-perez-8 submitted pull request review: [4093](https://github.com/hackforla/website/pull/4093#pullrequestreview-1324701863) at 2023-03-03 02:46 PM PST -d-perez-8,2023-03-04T00:36:02Z,- d-perez-8 submitted pull request review: [4093](https://github.com/hackforla/website/pull/4093#pullrequestreview-1324789954) at 2023-03-03 04:36 PM PST -d-perez-8,2023-03-05T00:06:04Z,- d-perez-8 commented on pull request: [4094](https://github.com/hackforla/website/pull/4094#issuecomment-1454930123) at 2023-03-04 04:06 PM PST -d-perez-8,2023-03-05T00:15:30Z,- d-perez-8 submitted pull request review: [4094](https://github.com/hackforla/website/pull/4094#pullrequestreview-1325138692) at 2023-03-04 04:15 PM PST -d-perez-8,2023-03-07T01:14:08Z,- d-perez-8 commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1457316842) at 2023-03-06 05:14 PM PST -d-perez-8,2023-03-07T01:51:28Z,- d-perez-8 submitted pull request review: [4106](https://github.com/hackforla/website/pull/4106#pullrequestreview-1327509133) at 2023-03-06 05:51 PM PST -d-perez-8,2023-03-07T01:59:57Z,- d-perez-8 commented on pull request: [4107](https://github.com/hackforla/website/pull/4107#issuecomment-1457372859) at 2023-03-06 05:59 PM PST -d-perez-8,2023-03-07T02:15:26Z,- d-perez-8 submitted pull request review: [4107](https://github.com/hackforla/website/pull/4107#pullrequestreview-1327530812) at 2023-03-06 06:15 PM PST -d-perez-8,2023-03-08T18:12:02Z,- d-perez-8 submitted pull request review: [4106](https://github.com/hackforla/website/pull/4106#pullrequestreview-1331193825) at 2023-03-08 10:12 AM PST -d-perez-8,2023-03-20T23:22:48Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1477079736) at 2023-03-20 04:22 PM PDT -d-perez-8,2023-03-29T02:06:12Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1487845034) at 2023-03-28 07:06 PM PDT -d-perez-8,2023-03-29T03:19:09Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1487889927) at 2023-03-28 08:19 PM PDT -d-perez-8,2023-03-29T03:32:09Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1487897003) at 2023-03-28 08:32 PM PDT -d-perez-8,2023-04-25T21:32:38Z,- d-perez-8 commented on issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1522449302) at 2023-04-25 02:32 PM PDT -d-perez-8,2023-05-15T02:46:55Z,- d-perez-8 unassigned from issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1545289300) at 2023-05-14 07:46 PM PDT -DABSOLUTERRITORY,6425,SKILLS ISSUE -DABSOLUTERRITORY,2024-03-05T03:55:04Z,- DABSOLUTERRITORY opened issue: [6425](https://github.com/hackforla/website/issues/6425) at 2024-03-04 07:55 PM PST -DABSOLUTERRITORY,2024-03-05T03:59:00Z,- DABSOLUTERRITORY assigned to issue: [6425](https://github.com/hackforla/website/issues/6425) at 2024-03-04 07:59 PM PST -dakahn93,4626,SKILLS ISSUE -dakahn93,2023-05-09T03:34:15Z,- dakahn93 opened issue: [4626](https://github.com/hackforla/website/issues/4626) at 2023-05-08 08:34 PM PDT -dakahn93,2023-05-09T04:02:57Z,- dakahn93 assigned to issue: [4626](https://github.com/hackforla/website/issues/4626) at 2023-05-08 09:02 PM PDT -dakahn93,2023-06-21T00:39:19Z,- dakahn93 assigned to issue: [4793](https://github.com/hackforla/website/issues/4793) at 2023-06-20 05:39 PM PDT -dakahn93,2023-06-21T03:32:21Z,- dakahn93 unassigned from issue: [4793](https://github.com/hackforla/website/issues/4793) at 2023-06-20 08:32 PM PDT -dakahn93,2023-07-10T06:04:19Z,- dakahn93 commented on issue: [4626](https://github.com/hackforla/website/issues/4626#issuecomment-1628296302) at 2023-07-09 11:04 PM PDT - REPLACED - 7593 (DakuwoN),4723,SKILLS ISSUE -DakuwoN,7593,SKILLS ISSUE -DakuwoN,2023-05-24T03:46:16Z,- DakuwoN opened issue: [4723](https://github.com/hackforla/website/issues/4723) at 2023-05-23 08:46 PM PDT -DakuwoN,2023-05-24T22:31:38Z,- DakuwoN assigned to issue: [4723](https://github.com/hackforla/website/issues/4723) at 2023-05-24 03:31 PM PDT -DakuwoN,2023-05-27T19:39:14Z,- DakuwoN assigned to issue: [4482](https://github.com/hackforla/website/issues/4482) at 2023-05-27 12:39 PM PDT -DakuwoN,2023-05-27T23:58:56Z,- DakuwoN commented on issue: [4482](https://github.com/hackforla/website/issues/4482#issuecomment-1565747296) at 2023-05-27 04:58 PM PDT -DakuwoN,2023-05-28T02:48:10Z,- DakuwoN commented on issue: [4482](https://github.com/hackforla/website/issues/4482#issuecomment-1565820335) at 2023-05-27 07:48 PM PDT -DakuwoN,2023-05-29T02:02:56Z,- DakuwoN opened pull request: [4750](https://github.com/hackforla/website/pull/4750) at 2023-05-28 07:02 PM PDT -DakuwoN,2023-05-29T02:20:07Z,- DakuwoN commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1566401704) at 2023-05-28 07:20 PM PDT -DakuwoN,2023-05-29T02:22:39Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1566403099) at 2023-05-28 07:22 PM PDT -DakuwoN,2023-06-13T22:03:24Z,- DakuwoN commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1590083726) at 2023-06-13 03:03 PM PDT -DakuwoN,2023-06-18T02:30:20Z,- DakuwoN commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1595929023) at 2023-06-17 07:30 PM PDT -DakuwoN,2023-06-18T04:55:41Z,- DakuwoN pull request merged: [4750](https://github.com/hackforla/website/pull/4750#event-9560139931) at 2023-06-17 09:55 PM PDT -DakuwoN,2023-07-21T16:58:10Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1645993585) at 2023-07-21 09:58 AM PDT -DakuwoN,2023-07-21T18:13:42Z,- DakuwoN closed issue by PR 5006: [4954](https://github.com/hackforla/website/issues/4954#event-9887826187) at 2023-07-21 11:13 AM PDT -DakuwoN,2023-07-21T18:14:09Z,- DakuwoN reopened issue: [4954](https://github.com/hackforla/website/issues/4954#event-9887826187) at 2023-07-21 11:14 AM PDT -DakuwoN,2023-07-25T01:34:28Z,- DakuwoN commented on pull request: [5052](https://github.com/hackforla/website/pull/5052#issuecomment-1648835293) at 2023-07-24 06:34 PM PDT -DakuwoN,2023-07-26T23:13:49Z,- DakuwoN submitted pull request review: [5052](https://github.com/hackforla/website/pull/5052#pullrequestreview-1548748844) at 2023-07-26 04:13 PM PDT -DakuwoN,2023-07-30T21:54:59Z,- DakuwoN commented on pull request: [5114](https://github.com/hackforla/website/pull/5114#issuecomment-1657274873) at 2023-07-30 02:54 PM PDT -DakuwoN,2023-08-02T23:37:05Z,- DakuwoN submitted pull request review: [5114](https://github.com/hackforla/website/pull/5114#pullrequestreview-1559971395) at 2023-08-02 04:37 PM PDT -DakuwoN,2023-08-06T21:11:03Z,- DakuwoN commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1666968701) at 2023-08-06 02:11 PM PDT -DakuwoN,2023-08-08T02:10:05Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1668804081) at 2023-08-07 07:10 PM PDT -DakuwoN,2023-08-09T00:56:45Z,- DakuwoN submitted pull request review: [5152](https://github.com/hackforla/website/pull/5152#pullrequestreview-1568548055) at 2023-08-08 05:56 PM PDT -DakuwoN,2023-08-22T02:23:44Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1687317053) at 2023-08-21 07:23 PM PDT -DakuwoN,2023-09-06T23:13:20Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1709243063) at 2023-09-06 04:13 PM PDT -DakuwoN,2023-10-22T02:56:44Z,- DakuwoN commented on issue: [4723](https://github.com/hackforla/website/issues/4723#issuecomment-1773978155) at 2023-10-21 07:56 PM PDT -DakuwoN,2023-10-24T02:03:59Z,- DakuwoN commented on pull request: [5768](https://github.com/hackforla/website/pull/5768#issuecomment-1776373583) at 2023-10-23 07:03 PM PDT -DakuwoN,2023-10-31T01:07:20Z,- DakuwoN assigned to issue: [5809](https://github.com/hackforla/website/issues/5809) at 2023-10-30 06:07 PM PDT -DakuwoN,2023-10-31T01:08:20Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1786277104) at 2023-10-30 06:08 PM PDT -DakuwoN,2023-10-31T02:40:39Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1786347532) at 2023-10-30 07:40 PM PDT -DakuwoN,2023-11-04T02:44:31Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1793313195) at 2023-11-03 06:44 PM PST -DakuwoN,2023-11-05T03:55:01Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1793627678) at 2023-11-04 07:55 PM PST -DakuwoN,2023-11-10T02:11:13Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1804968159) at 2023-11-09 06:11 PM PST -DakuwoN,2023-11-21T02:28:02Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1820114116) at 2023-11-20 06:28 PM PST -DakuwoN,2023-12-05T13:09:16Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1840763331) at 2023-12-05 05:09 AM PST -DakuwoN,2023-12-05T13:09:25Z,- DakuwoN commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1840763585) at 2023-12-05 05:09 AM PST -DakuwoN,2024-01-24T01:13:01Z,- DakuwoN unassigned from issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1899881564) at 2024-01-23 05:13 PM PST -DakuwoN,2024-03-23T04:31:43Z,- DakuwoN assigned to issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2008941720) at 2024-03-22 09:31 PM PDT -DakuwoN,2024-03-23T04:34:42Z,- DakuwoN commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2016344312) at 2024-03-22 09:34 PM PDT -DakuwoN,2024-03-23T05:24:29Z,- DakuwoN opened pull request: [6508](https://github.com/hackforla/website/pull/6508) at 2024-03-22 10:24 PM PDT -DakuwoN,2024-03-24T16:17:59Z,- DakuwoN commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2016858614) at 2024-03-24 09:17 AM PDT -DakuwoN,2024-03-31T03:10:33Z,- DakuwoN pull request merged: [6508](https://github.com/hackforla/website/pull/6508#event-12302225373) at 2024-03-30 08:10 PM PDT -DakuwoN,2024-06-08T01:47:07Z,- DakuwoN closed issue as completed: [3526](https://github.com/hackforla/website/issues/3526#event-13086673505) at 2024-06-07 06:47 PM PDT -DakuwoN,2024-06-26T01:44:55Z,- DakuwoN assigned to issue: [7046](https://github.com/hackforla/website/issues/7046#issuecomment-2183283496) at 2024-06-25 06:44 PM PDT -DakuwoN,2024-06-26T01:46:40Z,- DakuwoN commented on issue: [7046](https://github.com/hackforla/website/issues/7046#issuecomment-2190376331) at 2024-06-25 06:46 PM PDT -DakuwoN,2024-06-26T03:04:28Z,- DakuwoN opened pull request: [7065](https://github.com/hackforla/website/pull/7065) at 2024-06-25 08:04 PM PDT -DakuwoN,2024-06-27T16:36:08Z,- DakuwoN pull request merged: [7065](https://github.com/hackforla/website/pull/7065#event-13320342976) at 2024-06-27 09:36 AM PDT -DakuwoN,2024-10-14T20:55:15Z,- DakuwoN opened issue: [7593](https://github.com/hackforla/website/issues/7593) at 2024-10-14 01:55 PM PDT -DakuwoN,2024-10-14T20:55:53Z,- DakuwoN assigned to issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2412329553) at 2024-10-14 01:55 PM PDT -DakuwoN,2024-10-14T21:08:12Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2412347128) at 2024-10-14 02:08 PM PDT -DakuwoN,2024-10-14T21:23:17Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2412366225) at 2024-10-14 02:23 PM PDT -DakuwoN,2024-10-18T02:36:11Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2421152262) at 2024-10-17 07:36 PM PDT -DakuwoN,2024-10-18T03:07:25Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2421187755) at 2024-10-17 08:07 PM PDT -DakuwoN,2024-10-24T02:49:35Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434130457) at 2024-10-23 07:49 PM PDT -DakuwoN,2024-10-24T02:56:21Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434136830) at 2024-10-23 07:56 PM PDT -DakuwoN,2024-10-24T03:03:11Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434142832) at 2024-10-23 08:03 PM PDT -DakuwoN,2024-10-24T03:06:20Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2434145630) at 2024-10-23 08:06 PM PDT -DakuwoN,2024-10-25T03:47:27Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2436762762) at 2024-10-24 08:47 PM PDT -DakuwoN,2024-10-25T03:51:06Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2436765344) at 2024-10-24 08:51 PM PDT -DakuwoN,2024-10-25T03:54:05Z,- DakuwoN assigned to issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423158875) at 2024-10-24 08:54 PM PDT -DakuwoN,2024-10-25T03:56:53Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2436769402) at 2024-10-24 08:56 PM PDT -DakuwoN,2024-10-26T03:31:54Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2439238712) at 2024-10-25 08:31 PM PDT -DakuwoN,2024-10-29T01:50:39Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2442999058) at 2024-10-28 06:50 PM PDT -DakuwoN,2024-10-29T17:12:15Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2444884124) at 2024-10-29 10:12 AM PDT -DakuwoN,2024-10-30T15:29:33Z,- DakuwoN commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2447554722) at 2024-10-30 08:29 AM PDT -DakuwoN,2024-10-30T19:16:07Z,- DakuwoN assigned to issue: [7438](https://github.com/hackforla/website/issues/7438) at 2024-10-30 12:16 PM PDT -DakuwoN,2024-10-30T19:16:22Z,- DakuwoN unassigned from issue: [7438](https://github.com/hackforla/website/issues/7438) at 2024-10-30 12:16 PM PDT -DakuwoN,2024-10-31T01:24:23Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2448814197) at 2024-10-30 06:24 PM PDT -DakuwoN,2024-10-31T19:14:24Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2450640539) at 2024-10-31 12:14 PM PDT -DakuwoN,2024-10-31T19:17:03Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2450644744) at 2024-10-31 12:17 PM PDT -DakuwoN,2024-10-31T22:55:18Z,- DakuwoN assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2437816624) at 2024-10-31 03:55 PM PDT -DakuwoN,2024-10-31T23:07:34Z,- DakuwoN commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2450997271) at 2024-10-31 04:07 PM PDT -DakuwoN,2024-11-01T00:55:18Z,- DakuwoN opened issue: [7681](https://github.com/hackforla/website/issues/7681) at 2024-10-31 05:55 PM PDT -DakuwoN,2024-11-03T00:23:31Z,- DakuwoN closed issue as completed: [7681](https://github.com/hackforla/website/issues/7681#event-15088694333) at 2024-11-02 04:23 PM PST -DakuwoN,2024-11-03T00:23:40Z,- DakuwoN reopened issue: [7681](https://github.com/hackforla/website/issues/7681#event-15088694333) at 2024-11-02 04:23 PM PST -DakuwoN,2024-11-03T00:27:50Z,- DakuwoN closed issue as not planned: [7681](https://github.com/hackforla/website/issues/7681#event-15088778504) at 2024-11-02 04:27 PM PST -DakuwoN,2024-11-03T01:03:21Z,- DakuwoN opened issue: [7686](https://github.com/hackforla/website/issues/7686) at 2024-11-02 05:03 PM PST -DakuwoN,2024-11-03T01:07:40Z,- DakuwoN commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2453248040) at 2024-11-02 05:07 PM PST -DakuwoN,2024-11-12T00:42:45Z,- DakuwoN unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#event-15257001601) at 2024-11-11 04:42 PM PST -DakuwoN,2024-11-12T00:55:31Z,- DakuwoN commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469370868) at 2024-11-11 04:55 PM PST -DakuwoN,2024-11-15T18:55:24Z,- DakuwoN commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2479721321) at 2024-11-15 10:55 AM PST -DakuwoN,2024-12-01T03:16:05Z,- DakuwoN assigned to issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2408803970) at 2024-11-30 07:16 PM PST -DakuwoN,2024-12-01T03:20:07Z,- DakuwoN commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2509547034) at 2024-11-30 07:20 PM PST -DakuwoN,2024-12-01T04:31:47Z,- DakuwoN opened issue: [7783](https://github.com/hackforla/website/issues/7783) at 2024-11-30 08:31 PM PST -DakuwoN,2024-12-01T04:45:46Z,- DakuwoN opened issue: [7784](https://github.com/hackforla/website/issues/7784) at 2024-11-30 08:45 PM PST -DakuwoN,2024-12-01T04:51:53Z,- DakuwoN opened issue: [7785](https://github.com/hackforla/website/issues/7785) at 2024-11-30 08:51 PM PST -DakuwoN,2024-12-01T04:54:13Z,- DakuwoN opened issue: [7786](https://github.com/hackforla/website/issues/7786) at 2024-11-30 08:54 PM PST -DakuwoN,2024-12-01T04:56:02Z,- DakuwoN opened issue: [7787](https://github.com/hackforla/website/issues/7787) at 2024-11-30 08:56 PM PST -DakuwoN,2024-12-01T04:58:47Z,- DakuwoN opened issue: [7788](https://github.com/hackforla/website/issues/7788) at 2024-11-30 08:58 PM PST -DakuwoN,2024-12-01T05:00:22Z,- DakuwoN opened issue: [7789](https://github.com/hackforla/website/issues/7789) at 2024-11-30 09:00 PM PST -DakuwoN,2024-12-08T22:38:30Z,- DakuwoN commented on issue: [7789](https://github.com/hackforla/website/issues/7789#issuecomment-2526416667) at 2024-12-08 02:38 PM PST -DakuwoN,2024-12-15T03:06:51Z,- DakuwoN commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2543426071) at 2024-12-14 07:06 PM PST -DakuwoN,2024-12-15T03:10:21Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2543426782) at 2024-12-14 07:10 PM PST -DakuwoN,2024-12-15T03:12:01Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2543427126) at 2024-12-14 07:12 PM PST -DakuwoN,2025-01-25T00:28:14Z,- DakuwoN commented on pull request: [7846](https://github.com/hackforla/website/pull/7846#issuecomment-2613651518) at 2025-01-24 04:28 PM PST -DakuwoN,2025-01-25T22:00:48Z,- DakuwoN submitted pull request review: [7846](https://github.com/hackforla/website/pull/7846#pullrequestreview-2574092865) at 2025-01-25 02:00 PM PST -DakuwoN,2025-01-31T19:47:38Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2628247583) at 2025-01-31 11:47 AM PST -DakuwoN,2025-01-31T20:51:16Z,- DakuwoN commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2628377606) at 2025-01-31 12:51 PM PST -DakuwoN,2025-02-02T00:03:46Z,- DakuwoN submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2588433712) at 2025-02-01 04:03 PM PST -DakuwoN,2025-02-20T00:19:19Z,- DakuwoN commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2670073704) at 2025-02-19 04:19 PM PST -DakuwoN,2025-02-20T00:21:06Z,- DakuwoN commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2670076292) at 2025-02-19 04:21 PM PST -DakuwoN,2025-05-24T01:00:52Z,- DakuwoN commented on pull request: [8156](https://github.com/hackforla/website/pull/8156#issuecomment-2906213552) at 2025-05-23 06:00 PM PDT -DakuwoN,2025-05-24T22:27:30Z,- DakuwoN submitted pull request review: [8156](https://github.com/hackforla/website/pull/8156#pullrequestreview-2866553312) at 2025-05-24 03:27 PM PDT -DakuwoN,2025-06-07T20:05:39Z,- DakuwoN assigned to issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2603652942) at 2025-06-07 01:05 PM PDT -DakuwoN,2025-06-07T20:20:51Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2952968462) at 2025-06-07 01:20 PM PDT -DakuwoN,2025-06-26T00:57:24Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3006649970) at 2025-06-25 05:57 PM PDT -DakuwoN,2025-07-07T17:37:31Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046028484) at 2025-07-07 10:37 AM PDT -DakuwoN,2025-07-07T17:42:10Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046039672) at 2025-07-07 10:42 AM PDT -DakuwoN,2025-07-07T17:47:28Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046052378) at 2025-07-07 10:47 AM PDT -DakuwoN,2025-07-07T18:05:44Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3046098099) at 2025-07-07 11:05 AM PDT -DakuwoN,2025-07-15T23:07:21Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3076011038) at 2025-07-15 04:07 PM PDT -DakuwoN,2025-08-03T02:21:23Z,- DakuwoN commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3146922204) at 2025-08-02 07:21 PM PDT -danajeon,6526,SKILLS ISSUE -danajeon,2024-03-27T03:13:24Z,- danajeon opened issue: [6526](https://github.com/hackforla/website/issues/6526) at 2024-03-26 08:13 PM PDT -danajeon,2024-03-27T03:13:29Z,- danajeon assigned to issue: [6526](https://github.com/hackforla/website/issues/6526) at 2024-03-26 08:13 PM PDT -danajeon,2024-04-10T09:51:08Z,- danajeon assigned to issue: [6172](https://github.com/hackforla/website/issues/6172) at 2024-04-10 02:51 AM PDT -danajeon,2024-04-10T20:22:48Z,- danajeon commented on issue: [6172](https://github.com/hackforla/website/issues/6172#issuecomment-2048373784) at 2024-04-10 01:22 PM PDT -danajeon,2024-04-10T20:23:25Z,- danajeon commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2048374799) at 2024-04-10 01:23 PM PDT -danajeon,2024-04-10T20:50:48Z,- danajeon opened pull request: [6616](https://github.com/hackforla/website/pull/6616) at 2024-04-10 01:50 PM PDT -danajeon,2024-04-12T04:59:11Z,- danajeon pull request merged: [6616](https://github.com/hackforla/website/pull/6616#event-12444434286) at 2024-04-11 09:59 PM PDT -danajeon,2024-04-12T09:10:55Z,- danajeon assigned to issue: [6177](https://github.com/hackforla/website/issues/6177) at 2024-04-12 02:10 AM PDT -danajeon,2024-04-12T22:40:59Z,- danajeon opened pull request: [6631](https://github.com/hackforla/website/pull/6631) at 2024-04-12 03:40 PM PDT -danajeon,2024-04-12T22:43:33Z,- danajeon commented on issue: [6177](https://github.com/hackforla/website/issues/6177#issuecomment-2052647958) at 2024-04-12 03:43 PM PDT -danajeon,2024-04-14T04:53:50Z,- danajeon pull request merged: [6631](https://github.com/hackforla/website/pull/6631#event-12459470358) at 2024-04-13 09:53 PM PDT -danajeon,2024-04-15T08:18:58Z,- danajeon assigned to issue: [6498](https://github.com/hackforla/website/issues/6498) at 2024-04-15 01:18 AM PDT -danajeon,2024-04-15T08:43:44Z,- danajeon commented on issue: [6498](https://github.com/hackforla/website/issues/6498#issuecomment-2056230857) at 2024-04-15 01:43 AM PDT -danajeon,2024-04-17T19:39:10Z,- danajeon assigned to issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2049021209) at 2024-04-17 12:39 PM PDT -danajeon,2024-04-17T19:46:15Z,- danajeon commented on issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2062093286) at 2024-04-17 12:46 PM PDT -danajeon,2024-04-17T20:13:17Z,- danajeon commented on issue: [6621](https://github.com/hackforla/website/issues/6621#issuecomment-2062139729) at 2024-04-17 01:13 PM PDT -danajeon,2024-04-17T23:30:18Z,- danajeon opened pull request: [6660](https://github.com/hackforla/website/pull/6660) at 2024-04-17 04:30 PM PDT -danajeon,2024-04-23T17:50:19Z,- danajeon pull request merged: [6660](https://github.com/hackforla/website/pull/6660#event-12579436307) at 2024-04-23 10:50 AM PDT -danarchen,2020-07-31T01:15:42Z,- danarchen commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666856182) at 2020-07-30 06:15 PM PDT -DanielekPark,2021-01-20T03:11:14Z,- DanielekPark assigned to issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-761840267) at 2021-01-19 07:11 PM PST -DanielekPark,2021-01-24T00:09:43Z,- DanielekPark opened pull request: [956](https://github.com/hackforla/website/pull/956) at 2021-01-23 04:09 PM PST -DanielekPark,2021-01-24T19:48:44Z,- DanielekPark pull request merged: [956](https://github.com/hackforla/website/pull/956#event-4242859387) at 2021-01-24 11:48 AM PST -DanielekPark,2021-01-27T04:01:31Z,- DanielekPark assigned to issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-26 08:01 PM PST -DanielekPark,2021-01-27T04:03:59Z,- DanielekPark unassigned from issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-26 08:03 PM PST -DanielekPark,2021-01-27T04:05:00Z,- DanielekPark assigned to issue: [904](https://github.com/hackforla/website/issues/904) at 2021-01-26 08:05 PM PST -DanielekPark,2021-01-30T18:41:44Z,- DanielekPark commented on issue: [904](https://github.com/hackforla/website/issues/904#issuecomment-770261749) at 2021-01-30 10:41 AM PST -DanielekPark,2021-01-31T19:28:37Z,- DanielekPark assigned to issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-31 11:28 AM PST -DanielekPark,2021-01-31T19:28:47Z,- DanielekPark unassigned from issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-31 11:28 AM PST -DanielekPark,2021-01-31T20:36:40Z,- DanielekPark opened pull request: [983](https://github.com/hackforla/website/pull/983) at 2021-01-31 12:36 PM PST -DanielekPark,2021-01-31T20:40:03Z,- DanielekPark assigned to issue: [894](https://github.com/hackforla/website/issues/894) at 2021-01-31 12:40 PM PST -DanielekPark,2021-02-01T01:38:22Z,- DanielekPark pull request merged: [983](https://github.com/hackforla/website/pull/983#event-4271084862) at 2021-01-31 05:38 PM PST -DanielekPark,2021-02-03T01:35:56Z,- DanielekPark opened pull request: [986](https://github.com/hackforla/website/pull/986) at 2021-02-02 05:35 PM PST -DanielekPark,2021-02-05T02:29:01Z,- DanielekPark commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-773739324) at 2021-02-04 06:29 PM PST -DanielekPark,2021-02-08T17:44:41Z,- DanielekPark pull request merged: [986](https://github.com/hackforla/website/pull/986#event-4304797781) at 2021-02-08 09:44 AM PST -daniellen00,2020-05-12T18:49:22Z,- daniellen00 opened issue: [511](https://github.com/hackforla/website/issues/511) at 2020-05-12 11:49 AM PDT -daniellen00,2020-05-12T18:49:59Z,- daniellen00 assigned to issue: [511](https://github.com/hackforla/website/issues/511) at 2020-05-12 11:49 AM PDT -daniellen00,2020-05-13T02:18:54Z,- daniellen00 commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627704015) at 2020-05-12 07:18 PM PDT -daniellen00,2020-05-13T02:19:05Z,- daniellen00 unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627704015) at 2020-05-12 07:19 PM PDT -daniellen00,2020-05-14T21:33:58Z,- daniellen00 opened issue: [514](https://github.com/hackforla/website/issues/514) at 2020-05-14 02:33 PM PDT -daniellen00,2020-05-14T21:33:59Z,- daniellen00 assigned to issue: [514](https://github.com/hackforla/website/issues/514) at 2020-05-14 02:33 PM PDT -daniellen00,2020-05-17T18:15:17Z,- daniellen00 commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-629838730) at 2020-05-17 11:15 AM PDT -daniellen00,2020-05-19T20:49:40Z,- daniellen00 commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-631074658) at 2020-05-19 01:49 PM PDT -daniellen00,2020-05-31T20:22:43Z,- daniellen00 unassigned from issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-636516102) at 2020-05-31 01:22 PM PDT -daniellen00,2020-06-07T18:14:34Z,- daniellen00 assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-640257991) at 2020-06-07 11:14 AM PDT -daniellen00,2020-06-21T17:11:11Z,- daniellen00 unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-21 10:11 AM PDT -daniellen00,2020-06-21T17:18:00Z,- daniellen00 assigned to issue: [577](https://github.com/hackforla/website/issues/577) at 2020-06-21 10:18 AM PDT -daniellen00,2020-06-28T17:21:10Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-650796400) at 2020-06-28 10:21 AM PDT -daniellen00,2020-06-28T18:20:57Z,- daniellen00 assigned to issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640707386) at 2020-06-28 11:20 AM PDT -daniellen00,2020-07-05T17:02:41Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-653912891) at 2020-07-05 10:02 AM PDT -daniellen00,2020-07-12T17:01:07Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-657249458) at 2020-07-12 10:01 AM PDT -daniellen00,2020-07-19T16:44:23Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-660674190) at 2020-07-19 09:44 AM PDT -daniellen00,2020-07-26T16:42:11Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-664011536) at 2020-07-26 09:42 AM PDT -daniellen00,2020-07-26T17:32:35Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-664017779) at 2020-07-26 10:32 AM PDT -daniellen00,2020-08-02T06:49:50Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-667636713) at 2020-08-01 11:49 PM PDT -daniellen00,2020-08-09T16:56:25Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-671075717) at 2020-08-09 09:56 AM PDT -daniellen00,2020-08-16T16:51:00Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-674549962) at 2020-08-16 09:51 AM PDT -daniellen00,2020-08-23T16:52:37Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-678797622) at 2020-08-23 09:52 AM PDT -daniellen00,2020-08-23T17:27:50Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-678801553) at 2020-08-23 10:27 AM PDT -daniellen00,2020-08-23T18:18:53Z,- daniellen00 assigned to issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-678798581) at 2020-08-23 11:18 AM PDT -daniellen00,2020-08-25T04:42:41Z,- daniellen00 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679614051) at 2020-08-24 09:42 PM PDT -daniellen00,2020-08-30T16:46:18Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-683442913) at 2020-08-30 09:46 AM PDT -daniellen00,2020-08-30T17:51:15Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-683449801) at 2020-08-30 10:51 AM PDT -daniellen00,2020-09-06T16:58:14Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-687841442) at 2020-09-06 09:58 AM PDT -daniellen00,2020-09-19T01:44:37Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695147422) at 2020-09-18 06:44 PM PDT -daniellen00,2020-09-19T18:23:42Z,- daniellen00 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695341128) at 2020-09-19 11:23 AM PDT -daniellen00,2020-09-27T17:17:27Z,- daniellen00 unassigned from issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -daniellen00,2020-10-11T16:58:20Z,- daniellen00 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-706734667) at 2020-10-11 09:58 AM PDT -daniellen00,2020-10-11T17:45:10Z,- daniellen00 assigned to issue: [759](https://github.com/hackforla/website/issues/759) at 2020-10-11 10:45 AM PDT -daniellen00,2020-10-18T17:05:26Z,- daniellen00 unassigned from issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-711293458) at 2020-10-18 10:05 AM PDT -daniellen00,2021-01-24T23:41:02Z,- daniellen00 unassigned from issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766398175) at 2021-01-24 03:41 PM PST -daniellex0,2020-10-14T20:52:04Z,- daniellex0 opened issue: [780](https://github.com/hackforla/website/issues/780) at 2020-10-14 01:52 PM PDT -daniellex0,2020-10-15T18:58:46Z,- daniellex0 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-709528842) at 2020-10-15 11:58 AM PDT -daniellex0,2020-10-17T23:56:53Z,- daniellex0 commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711095244) at 2020-10-17 04:56 PM PDT -daniellex0,2020-10-18T17:05:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-711293458) at 2020-10-18 10:05 AM PDT -daniellex0,2020-10-18T17:05:27Z,- daniellex0 assigned to issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-711293458) at 2020-10-18 10:05 AM PDT -daniellex0,2020-10-25T16:47:33Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-716176907) at 2020-10-25 09:47 AM PDT -daniellex0,2020-10-25T17:07:19Z,- daniellex0 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-716179404) at 2020-10-25 10:07 AM PDT -daniellex0,2020-11-01T18:08:24Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-720128916) at 2020-11-01 10:08 AM PST -daniellex0,2020-11-01T19:24:25Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-720138512) at 2020-11-01 11:24 AM PST -daniellex0,2020-11-08T17:38:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-723642048) at 2020-11-08 09:38 AM PST -daniellex0,2020-11-10T18:12:24Z,- daniellex0 commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724875607) at 2020-11-10 10:12 AM PST -daniellex0,2020-11-15T18:01:07Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-727610682) at 2020-11-15 10:01 AM PST -daniellex0,2020-11-22T18:02:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-731785636) at 2020-11-22 10:02 AM PST -daniellex0,2020-11-25T04:16:41Z,- daniellex0 commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-733452961) at 2020-11-24 08:16 PM PST -daniellex0,2020-11-29T17:56:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-735431645) at 2020-11-29 09:56 AM PST -daniellex0,2020-11-29T19:27:29Z,- daniellex0 assigned to issue: [793](https://github.com/hackforla/website/issues/793) at 2020-11-29 11:27 AM PST -daniellex0,2020-11-29T19:28:41Z,- daniellex0 assigned to issue: [801](https://github.com/hackforla/website/issues/801) at 2020-11-29 11:28 AM PST -daniellex0,2020-11-29T19:30:07Z,- daniellex0 assigned to issue: [693](https://github.com/hackforla/website/issues/693#issuecomment-718334198) at 2020-11-29 11:30 AM PST -daniellex0,2020-11-29T19:30:35Z,- daniellex0 unassigned from issue: [793](https://github.com/hackforla/website/issues/793) at 2020-11-29 11:30 AM PST -daniellex0,2020-12-02T02:49:23Z,- daniellex0 opened pull request: [823](https://github.com/hackforla/website/pull/823) at 2020-12-01 06:49 PM PST -daniellex0,2020-12-02T03:41:03Z,- daniellex0 commented on pull request: [823](https://github.com/hackforla/website/pull/823#issuecomment-736969733) at 2020-12-01 07:41 PM PST -daniellex0,2020-12-02T09:12:25Z,- daniellex0 opened pull request: [824](https://github.com/hackforla/website/pull/824) at 2020-12-02 01:12 AM PST -daniellex0,2020-12-04T22:28:14Z,- daniellex0 pull request merged: [823](https://github.com/hackforla/website/pull/823#event-4074728438) at 2020-12-04 02:28 PM PST -daniellex0,2020-12-05T07:20:27Z,- daniellex0 commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-739138606) at 2020-12-04 11:20 PM PST -daniellex0,2020-12-06T17:29:03Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-739535162) at 2020-12-06 09:29 AM PST -daniellex0,2020-12-06T17:37:26Z,- daniellex0 commented on pull request: [825](https://github.com/hackforla/website/pull/825#issuecomment-739536292) at 2020-12-06 09:37 AM PST -daniellex0,2020-12-09T01:53:37Z,- daniellex0 opened pull request: [841](https://github.com/hackforla/website/pull/841) at 2020-12-08 05:53 PM PST -daniellex0,2020-12-09T02:46:19Z,- daniellex0 pull request closed w/o merging: [824](https://github.com/hackforla/website/pull/824#event-4087695459) at 2020-12-08 06:46 PM PST -daniellex0,2020-12-09T18:33:04Z,- daniellex0 pull request merged: [841](https://github.com/hackforla/website/pull/841#event-4091396403) at 2020-12-09 10:33 AM PST -daniellex0,2020-12-13T17:47:26Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-744043095) at 2020-12-13 09:47 AM PST -daniellex0,2020-12-16T00:25:11Z,- daniellex0 commented on pull request: [845](https://github.com/hackforla/website/pull/845#issuecomment-745676690) at 2020-12-15 04:25 PM PST -daniellex0,2020-12-17T05:40:55Z,- daniellex0 commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747218769) at 2020-12-16 09:40 PM PST -daniellex0,2020-12-17T05:45:24Z,- daniellex0 commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747220673) at 2020-12-16 09:45 PM PST -daniellex0,2020-12-20T17:53:44Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-748639143) at 2020-12-20 09:53 AM PST -daniellex0,2020-12-23T02:55:30Z,- daniellex0 commented on pull request: [855](https://github.com/hackforla/website/pull/855#issuecomment-749896841) at 2020-12-22 06:55 PM PST -daniellex0,2020-12-25T00:13:16Z,- daniellex0 commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-751133436) at 2020-12-24 04:13 PM PST -daniellex0,2020-12-27T17:46:04Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-751496301) at 2020-12-27 09:46 AM PST -daniellex0,2021-01-03T12:11:48Z,- daniellex0 opened issue: [902](https://github.com/hackforla/website/issues/902) at 2021-01-03 04:11 AM PST -daniellex0,2021-01-03T12:13:10Z,- daniellex0 assigned to issue: [902](https://github.com/hackforla/website/issues/902) at 2021-01-03 04:13 AM PST -daniellex0,2021-01-03T12:27:47Z,- daniellex0 opened pull request: [903](https://github.com/hackforla/website/pull/903) at 2021-01-03 04:27 AM PST -daniellex0,2021-01-03T17:30:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-753650023) at 2021-01-03 09:30 AM PST -daniellex0,2021-01-03T20:20:08Z,- daniellex0 pull request merged: [903](https://github.com/hackforla/website/pull/903#event-4162770505) at 2021-01-03 12:20 PM PST -daniellex0,2021-01-06T23:48:10Z,- daniellex0 commented on issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-755783334) at 2021-01-06 03:48 PM PST -daniellex0,2021-01-10T17:15:25Z,- daniellex0 opened issue: [923](https://github.com/hackforla/website/issues/923) at 2021-01-10 09:15 AM PST -daniellex0,2021-01-10T17:15:26Z,- daniellex0 assigned to issue: [923](https://github.com/hackforla/website/issues/923) at 2021-01-10 09:15 AM PST -daniellex0,2021-01-10T17:25:54Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-757512244) at 2021-01-10 09:25 AM PST -daniellex0,2021-01-11T23:54:48Z,- daniellex0 submitted pull request review: [929](https://github.com/hackforla/website/pull/929#pullrequestreview-565829278) at 2021-01-11 03:54 PM PST -daniellex0,2021-01-13T05:22:56Z,- daniellex0 opened issue: [936](https://github.com/hackforla/website/issues/936) at 2021-01-12 09:22 PM PST -daniellex0,2021-01-17T10:29:12Z,- daniellex0 opened pull request: [944](https://github.com/hackforla/website/pull/944) at 2021-01-17 02:29 AM PST -daniellex0,2021-01-17T17:33:01Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-761848752) at 2021-01-17 09:33 AM PST -daniellex0,2021-01-20T03:35:10Z,- daniellex0 commented on pull request: [944](https://github.com/hackforla/website/pull/944#issuecomment-763306272) at 2021-01-19 07:35 PM PST -daniellex0,2021-01-21T02:22:29Z,- daniellex0 commented on issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-764188225) at 2021-01-20 06:22 PM PST -daniellex0,2021-01-22T19:21:39Z,- daniellex0 pull request merged: [944](https://github.com/hackforla/website/pull/944#event-4240050897) at 2021-01-22 11:21 AM PST -daniellex0,2021-01-24T12:05:07Z,- daniellex0 opened issue: [958](https://github.com/hackforla/website/issues/958) at 2021-01-24 04:05 AM PST -daniellex0,2021-01-24T12:05:07Z,- daniellex0 assigned to issue: [958](https://github.com/hackforla/website/issues/958) at 2021-01-24 04:05 AM PST -daniellex0,2021-01-24T12:20:08Z,- daniellex0 opened issue: [959](https://github.com/hackforla/website/issues/959) at 2021-01-24 04:20 AM PST -daniellex0,2021-01-24T17:24:00Z,- daniellex0 opened issue: [960](https://github.com/hackforla/website/issues/960) at 2021-01-24 09:24 AM PST -daniellex0,2021-01-24T17:48:30Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-766401851) at 2021-01-24 09:48 AM PST -daniellex0,2021-01-24T18:38:18Z,- daniellex0 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-766409985) at 2021-01-24 10:38 AM PST -daniellex0,2021-01-24T23:41:02Z,- daniellex0 assigned to issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766398175) at 2021-01-24 03:41 PM PST -daniellex0,2021-01-24T23:43:52Z,- daniellex0 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766461739) at 2021-01-24 03:43 PM PST -daniellex0,2021-01-29T19:30:43Z,- daniellex0 opened issue: [976](https://github.com/hackforla/website/issues/976) at 2021-01-29 11:30 AM PST -daniellex0,2021-01-30T23:42:56Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-579839553) at 2021-01-30 03:42 PM PST -daniellex0,2021-01-30T23:46:12Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-579839694) at 2021-01-30 03:46 PM PST -daniellex0,2021-01-31T17:37:25Z,- daniellex0 closed issue by PR 978: [976](https://github.com/hackforla/website/issues/976#event-4270564434) at 2021-01-31 09:37 AM PST -daniellex0,2021-01-31T17:41:17Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-770419754) at 2021-01-31 09:41 AM PST -daniellex0,2021-01-31T17:52:32Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-770421452) at 2021-01-31 09:52 AM PST -daniellex0,2021-01-31T18:39:14Z,- daniellex0 assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770427972) at 2021-01-31 10:39 AM PST -daniellex0,2021-02-03T00:16:56Z,- daniellex0 commented on pull request: [977](https://github.com/hackforla/website/pull/977#issuecomment-772106556) at 2021-02-02 04:16 PM PST -daniellex0,2021-02-07T01:48:34Z,- daniellex0 submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-584932491) at 2021-02-06 05:48 PM PST -daniellex0,2021-02-07T09:53:44Z,- daniellex0 submitted pull request review: [988](https://github.com/hackforla/website/pull/988#pullrequestreview-584995864) at 2021-02-07 01:53 AM PST -daniellex0,2021-02-07T10:15:54Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-584997818) at 2021-02-07 02:15 AM PST -daniellex0,2021-02-07T17:36:45Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-774715631) at 2021-02-07 09:36 AM PST -daniellex0,2021-02-07T17:42:52Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-774716676) at 2021-02-07 09:42 AM PST -daniellex0,2021-02-07T18:30:40Z,- daniellex0 unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-772784187) at 2021-02-07 10:30 AM PST -daniellex0,2021-02-07T20:58:19Z,- daniellex0 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-774761253) at 2021-02-07 12:58 PM PST -daniellex0,2021-02-07T21:17:12Z,- daniellex0 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-774769509) at 2021-02-07 01:17 PM PST -daniellex0,2021-02-07T21:25:17Z,- daniellex0 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-774770761) at 2021-02-07 01:25 PM PST -daniellex0,2021-02-09T22:56:54Z,- daniellex0 commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-776299832) at 2021-02-09 02:56 PM PST -daniellex0,2021-02-09T23:39:02Z,- daniellex0 commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-776319531) at 2021-02-09 03:39 PM PST -daniellex0,2021-02-10T00:16:00Z,- daniellex0 commented on pull request: [977](https://github.com/hackforla/website/pull/977#issuecomment-776334207) at 2021-02-09 04:16 PM PST -daniellex0,2021-02-10T00:16:18Z,- daniellex0 submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-587136953) at 2021-02-09 04:16 PM PST -daniellex0,2021-02-10T02:51:01Z,- daniellex0 opened issue: [1027](https://github.com/hackforla/website/issues/1027) at 2021-02-09 06:51 PM PST -daniellex0,2021-02-13T19:00:45Z,- daniellex0 commented on pull request: [988](https://github.com/hackforla/website/pull/988#issuecomment-778662790) at 2021-02-13 11:00 AM PST -daniellex0,2021-02-14T02:34:37Z,- daniellex0 commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778711541) at 2021-02-13 06:34 PM PST -daniellex0,2021-02-14T02:37:47Z,- daniellex0 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-778711840) at 2021-02-13 06:37 PM PST -daniellex0,2021-02-14T02:58:38Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-778713943) at 2021-02-13 06:58 PM PST -daniellex0,2021-02-14T03:03:24Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-778714503) at 2021-02-13 07:03 PM PST -daniellex0,2021-02-14T03:33:05Z,- daniellex0 submitted pull request review: [988](https://github.com/hackforla/website/pull/988#pullrequestreview-590012280) at 2021-02-13 07:33 PM PST -daniellex0,2021-02-14T06:08:47Z,- daniellex0 commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778733254) at 2021-02-13 10:08 PM PST -daniellex0,2021-02-14T07:00:34Z,- daniellex0 opened issue: [1041](https://github.com/hackforla/website/issues/1041) at 2021-02-13 11:00 PM PST -daniellex0,2021-02-14T07:24:30Z,- daniellex0 opened issue: [1042](https://github.com/hackforla/website/issues/1042) at 2021-02-13 11:24 PM PST -daniellex0,2021-02-14T07:44:27Z,- daniellex0 opened issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-13 11:44 PM PST -daniellex0,2021-02-14T10:02:53Z,- daniellex0 opened issue: [1044](https://github.com/hackforla/website/issues/1044) at 2021-02-14 02:02 AM PST -daniellex0,2021-02-14T10:14:55Z,- daniellex0 opened issue: [1045](https://github.com/hackforla/website/issues/1045) at 2021-02-14 02:14 AM PST -daniellex0,2021-02-14T10:30:08Z,- daniellex0 opened issue: [1046](https://github.com/hackforla/website/issues/1046) at 2021-02-14 02:30 AM PST -daniellex0,2021-02-14T16:37:55Z,- daniellex0 assigned to issue: [981](https://github.com/hackforla/website/issues/981) at 2021-02-14 08:37 AM PST -daniellex0,2021-02-14T16:38:37Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-778803076) at 2021-02-14 08:38 AM PST -daniellex0,2021-02-14T17:09:00Z,- daniellex0 opened issue: [1051](https://github.com/hackforla/website/issues/1051) at 2021-02-14 09:09 AM PST -daniellex0,2021-02-14T17:17:38Z,- daniellex0 opened issue: [1052](https://github.com/hackforla/website/issues/1052) at 2021-02-14 09:17 AM PST -daniellex0,2021-02-14T21:53:46Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-778847803) at 2021-02-14 01:53 PM PST -daniellex0,2021-02-15T00:56:24Z,- daniellex0 commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778877435) at 2021-02-14 04:56 PM PST -daniellex0,2021-02-16T20:07:54Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-780087063) at 2021-02-16 12:07 PM PST -daniellex0,2021-02-16T22:12:36Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-780151365) at 2021-02-16 02:12 PM PST -daniellex0,2021-02-17T01:36:44Z,- daniellex0 opened issue: [1063](https://github.com/hackforla/website/issues/1063) at 2021-02-16 05:36 PM PST -daniellex0,2021-02-17T01:46:39Z,- daniellex0 opened issue: [1064](https://github.com/hackforla/website/issues/1064) at 2021-02-16 05:46 PM PST -daniellex0,2021-02-19T08:33:50Z,- daniellex0 commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-781921632) at 2021-02-19 12:33 AM PST -daniellex0,2021-02-19T08:36:05Z,- daniellex0 commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-781922751) at 2021-02-19 12:36 AM PST -daniellex0,2021-02-21T04:00:25Z,- daniellex0 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-782792307) at 2021-02-20 08:00 PM PST -daniellex0,2021-02-21T17:07:00Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-782889961) at 2021-02-21 09:07 AM PST -daniellex0,2021-02-21T17:10:30Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-782890486) at 2021-02-21 09:10 AM PST -daniellex0,2021-02-21T17:13:48Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-782891083) at 2021-02-21 09:13 AM PST -daniellex0,2021-02-21T17:22:30Z,- daniellex0 opened issue: [1079](https://github.com/hackforla/website/issues/1079) at 2021-02-21 09:22 AM PST -daniellex0,2021-02-21T17:32:33Z,- daniellex0 opened issue: [1080](https://github.com/hackforla/website/issues/1080) at 2021-02-21 09:32 AM PST -daniellex0,2021-02-21T17:39:08Z,- daniellex0 opened issue: [1081](https://github.com/hackforla/website/issues/1081) at 2021-02-21 09:39 AM PST -daniellex0,2021-02-21T17:46:59Z,- daniellex0 opened issue: [1082](https://github.com/hackforla/website/issues/1082) at 2021-02-21 09:46 AM PST -daniellex0,2021-02-21T17:56:40Z,- daniellex0 assigned to issue: [765](https://github.com/hackforla/website/issues/765) at 2021-02-21 09:56 AM PST -daniellex0,2021-02-21T17:58:18Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-782897793) at 2021-02-21 09:58 AM PST -daniellex0,2021-02-22T03:01:16Z,- daniellex0 commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783005597) at 2021-02-21 07:01 PM PST -daniellex0,2021-02-22T17:37:10Z,- daniellex0 commented on pull request: [1091](https://github.com/hackforla/website/pull/1091#issuecomment-783545055) at 2021-02-22 09:37 AM PST -daniellex0,2021-02-22T18:04:48Z,- daniellex0 submitted pull request review: [1091](https://github.com/hackforla/website/pull/1091#pullrequestreview-595631187) at 2021-02-22 10:04 AM PST -daniellex0,2021-02-23T04:32:51Z,- daniellex0 commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783869986) at 2021-02-22 08:32 PM PST -daniellex0,2021-02-25T01:50:29Z,- daniellex0 commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-785515977) at 2021-02-24 05:50 PM PST -daniellex0,2021-02-26T06:35:08Z,- daniellex0 submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599286960) at 2021-02-25 10:35 PM PST -daniellex0,2021-02-26T06:47:40Z,- daniellex0 commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-786449826) at 2021-02-25 10:47 PM PST -daniellex0,2021-02-26T07:30:54Z,- daniellex0 opened issue: [1122](https://github.com/hackforla/website/issues/1122) at 2021-02-25 11:30 PM PST -daniellex0,2021-02-26T08:38:48Z,- daniellex0 submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599356178) at 2021-02-26 12:38 AM PST -daniellex0,2021-02-26T17:38:00Z,- daniellex0 submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599797239) at 2021-02-26 09:38 AM PST -daniellex0,2021-02-26T17:39:31Z,- daniellex0 commented on pull request: [1117](https://github.com/hackforla/website/pull/1117#issuecomment-786791713) at 2021-02-26 09:39 AM PST -daniellex0,2021-02-26T19:02:47Z,- daniellex0 opened issue: [1123](https://github.com/hackforla/website/issues/1123) at 2021-02-26 11:02 AM PST -daniellex0,2021-02-26T19:19:32Z,- daniellex0 opened issue: [1125](https://github.com/hackforla/website/issues/1125) at 2021-02-26 11:19 AM PST -daniellex0,2021-02-26T19:35:58Z,- daniellex0 opened issue: [1126](https://github.com/hackforla/website/issues/1126) at 2021-02-26 11:35 AM PST -daniellex0,2021-02-26T19:37:56Z,- daniellex0 closed issue as completed: [1123](https://github.com/hackforla/website/issues/1123#event-4383451548) at 2021-02-26 11:37 AM PST -daniellex0,2021-02-26T19:56:37Z,- daniellex0 opened issue: [1127](https://github.com/hackforla/website/issues/1127) at 2021-02-26 11:56 AM PST -daniellex0,2021-02-26T20:17:49Z,- daniellex0 opened issue: [1128](https://github.com/hackforla/website/issues/1128) at 2021-02-26 12:17 PM PST -daniellex0,2021-02-28T16:33:06Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-787479574) at 2021-02-28 08:33 AM PST -daniellex0,2021-02-28T16:36:03Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-787480007) at 2021-02-28 08:36 AM PST -daniellex0,2021-02-28T16:38:14Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-787480336) at 2021-02-28 08:38 AM PST -daniellex0,2021-02-28T17:26:28Z,- daniellex0 opened issue: [1133](https://github.com/hackforla/website/issues/1133) at 2021-02-28 09:26 AM PST -daniellex0,2021-02-28T17:32:48Z,- daniellex0 opened issue: [1134](https://github.com/hackforla/website/issues/1134) at 2021-02-28 09:32 AM PST -daniellex0,2021-02-28T17:36:29Z,- daniellex0 opened issue: [1135](https://github.com/hackforla/website/issues/1135) at 2021-02-28 09:36 AM PST -daniellex0,2021-02-28T17:45:33Z,- daniellex0 opened issue: [1136](https://github.com/hackforla/website/issues/1136) at 2021-02-28 09:45 AM PST -daniellex0,2021-02-28T22:56:34Z,- daniellex0 opened issue: [1142](https://github.com/hackforla/website/issues/1142) at 2021-02-28 02:56 PM PST -daniellex0,2021-03-01T18:32:15Z,- daniellex0 assigned to issue: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-03-01 10:32 AM PST -daniellex0,2021-03-01T21:24:30Z,- daniellex0 assigned to issue: [1107](https://github.com/hackforla/website/issues/1107) at 2021-03-01 01:24 PM PST -daniellex0,2021-03-01T21:24:36Z,- daniellex0 unassigned from issue: [1107](https://github.com/hackforla/website/issues/1107) at 2021-03-01 01:24 PM PST -daniellex0,2021-03-01T23:18:35Z,- daniellex0 commented on issue: [1107](https://github.com/hackforla/website/issues/1107#issuecomment-788386514) at 2021-03-01 03:18 PM PST -daniellex0,2021-03-02T07:33:40Z,- daniellex0 commented on pull request: [1148](https://github.com/hackforla/website/pull/1148#issuecomment-788687780) at 2021-03-01 11:33 PM PST -daniellex0,2021-03-03T01:45:34Z,- daniellex0 opened issue: [1154](https://github.com/hackforla/website/issues/1154) at 2021-03-02 05:45 PM PST -daniellex0,2021-03-03T03:35:30Z,- daniellex0 assigned to issue: [1154](https://github.com/hackforla/website/issues/1154) at 2021-03-02 07:35 PM PST -daniellex0,2021-03-07T02:29:29Z,- daniellex0 unassigned from issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-788172848) at 2021-03-06 06:29 PM PST -daniellex0,2021-03-07T02:36:20Z,- daniellex0 commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-792176883) at 2021-03-06 06:36 PM PST -daniellex0,2021-03-07T03:20:45Z,- daniellex0 commented on pull request: [1158](https://github.com/hackforla/website/pull/1158#issuecomment-792188459) at 2021-03-06 07:20 PM PST -daniellex0,2021-03-07T03:43:04Z,- daniellex0 commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-792193174) at 2021-03-06 07:43 PM PST -daniellex0,2021-03-07T04:46:46Z,- daniellex0 opened issue: [1164](https://github.com/hackforla/website/issues/1164) at 2021-03-06 08:46 PM PST -daniellex0,2021-03-07T05:20:35Z,- daniellex0 opened issue: [1165](https://github.com/hackforla/website/issues/1165) at 2021-03-06 09:20 PM PST -daniellex0,2021-03-07T05:54:22Z,- daniellex0 opened issue: [1166](https://github.com/hackforla/website/issues/1166) at 2021-03-06 09:54 PM PST -daniellex0,2021-03-07T06:05:08Z,- daniellex0 opened issue: [1167](https://github.com/hackforla/website/issues/1167) at 2021-03-06 10:05 PM PST -daniellex0,2021-03-07T06:14:54Z,- daniellex0 opened issue: [1168](https://github.com/hackforla/website/issues/1168) at 2021-03-06 10:14 PM PST -daniellex0,2021-03-07T06:25:13Z,- daniellex0 opened issue: [1169](https://github.com/hackforla/website/issues/1169) at 2021-03-06 10:25 PM PST -daniellex0,2021-03-07T16:19:09Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-792304128) at 2021-03-07 08:19 AM PST -daniellex0,2021-03-07T16:22:49Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-792305245) at 2021-03-07 08:22 AM PST -daniellex0,2021-03-07T16:32:14Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-792306601) at 2021-03-07 08:32 AM PST -daniellex0,2021-03-07T17:56:14Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-792323796) at 2021-03-07 09:56 AM PST -daniellex0,2021-03-07T18:59:12Z,- daniellex0 assigned to issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-787488238) at 2021-03-07 10:59 AM PST -daniellex0,2021-03-09T22:31:00Z,- daniellex0 submitted pull request review: [1158](https://github.com/hackforla/website/pull/1158#pullrequestreview-608169845) at 2021-03-09 02:31 PM PST -daniellex0,2021-03-09T23:16:28Z,- daniellex0 commented on issue: [1167](https://github.com/hackforla/website/issues/1167#issuecomment-794589494) at 2021-03-09 03:16 PM PST -daniellex0,2021-03-10T01:13:19Z,- daniellex0 commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794692645) at 2021-03-09 05:13 PM PST -daniellex0,2021-03-10T02:29:08Z,- daniellex0 commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794759534) at 2021-03-09 06:29 PM PST -daniellex0,2021-03-10T02:29:26Z,- daniellex0 assigned to issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-794759534) at 2021-03-09 06:29 PM PST -daniellex0,2021-03-10T18:51:13Z,- daniellex0 assigned to issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-795904141) at 2021-03-10 10:51 AM PST -daniellex0,2021-03-13T04:09:21Z,- daniellex0 commented on issue: [1166](https://github.com/hackforla/website/issues/1166#issuecomment-797862651) at 2021-03-12 09:09 PM PDT -daniellex0,2021-03-13T07:02:23Z,- daniellex0 submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-611574477) at 2021-03-13 12:02 AM PDT -daniellex0,2021-03-14T00:49:55Z,- daniellex0 opened issue: [1201](https://github.com/hackforla/website/issues/1201) at 2021-03-13 05:49 PM PDT -daniellex0,2021-03-14T00:52:39Z,- daniellex0 commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-798809755) at 2021-03-13 05:52 PM PDT -daniellex0,2021-03-14T01:50:43Z,- daniellex0 opened issue: [1202](https://github.com/hackforla/website/issues/1202) at 2021-03-13 06:50 PM PDT -daniellex0,2021-03-14T12:52:23Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-798901706) at 2021-03-14 05:52 AM PDT -daniellex0,2021-03-14T12:54:49Z,- daniellex0 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-798902020) at 2021-03-14 05:54 AM PDT -daniellex0,2021-03-14T12:59:00Z,- daniellex0 commented on issue: [1171](https://github.com/hackforla/website/issues/1171#issuecomment-798902606) at 2021-03-14 05:59 AM PDT -daniellex0,2021-03-14T13:03:44Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-798903332) at 2021-03-14 06:03 AM PDT -daniellex0,2021-03-14T13:10:47Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-798904267) at 2021-03-14 06:10 AM PDT -daniellex0,2021-03-14T16:53:11Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-798940282) at 2021-03-14 09:53 AM PDT -daniellex0,2021-03-17T00:10:49Z,- daniellex0 commented on pull request: [1211](https://github.com/hackforla/website/pull/1211#issuecomment-800696189) at 2021-03-16 05:10 PM PDT -daniellex0,2021-03-18T04:05:39Z,- daniellex0 submitted pull request review: [1211](https://github.com/hackforla/website/pull/1211#pullrequestreview-614963991) at 2021-03-17 09:05 PM PDT -daniellex0,2021-03-18T05:26:11Z,- daniellex0 opened issue: [1251](https://github.com/hackforla/website/issues/1251) at 2021-03-17 10:26 PM PDT -daniellex0,2021-03-18T06:21:41Z,- daniellex0 opened issue: [1252](https://github.com/hackforla/website/issues/1252) at 2021-03-17 11:21 PM PDT -daniellex0,2021-03-18T06:34:50Z,- daniellex0 opened issue: [1253](https://github.com/hackforla/website/issues/1253) at 2021-03-17 11:34 PM PDT -daniellex0,2021-03-18T06:50:06Z,- daniellex0 opened issue: [1254](https://github.com/hackforla/website/issues/1254) at 2021-03-17 11:50 PM PDT -daniellex0,2021-03-18T06:59:26Z,- daniellex0 opened issue: [1255](https://github.com/hackforla/website/issues/1255) at 2021-03-17 11:59 PM PDT -daniellex0,2021-03-18T07:13:48Z,- daniellex0 opened issue: [1256](https://github.com/hackforla/website/issues/1256) at 2021-03-18 12:13 AM PDT -daniellex0,2021-03-18T07:16:31Z,- daniellex0 opened issue: [1257](https://github.com/hackforla/website/issues/1257) at 2021-03-18 12:16 AM PDT -daniellex0,2021-03-18T07:36:17Z,- daniellex0 opened issue: [1258](https://github.com/hackforla/website/issues/1258) at 2021-03-18 12:36 AM PDT -daniellex0,2021-03-18T07:45:40Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-801706568) at 2021-03-18 12:45 AM PDT -daniellex0,2021-03-18T16:00:39Z,- daniellex0 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-802046277) at 2021-03-18 09:00 AM PDT -daniellex0,2021-03-19T00:54:38Z,- daniellex0 submitted pull request review: [1210](https://github.com/hackforla/website/pull/1210#pullrequestreview-615984201) at 2021-03-18 05:54 PM PDT -daniellex0,2021-03-19T01:41:15Z,- daniellex0 commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802449935) at 2021-03-18 06:41 PM PDT -daniellex0,2021-03-19T03:03:57Z,- daniellex0 commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802508185) at 2021-03-18 08:03 PM PDT -daniellex0,2021-03-19T06:54:43Z,- daniellex0 commented on pull request: [1250](https://github.com/hackforla/website/pull/1250#issuecomment-802601200) at 2021-03-18 11:54 PM PDT -daniellex0,2021-03-19T17:27:42Z,- daniellex0 assigned to issue: [1135](https://github.com/hackforla/website/issues/1135) at 2021-03-19 10:27 AM PDT -daniellex0,2021-03-21T08:43:42Z,- daniellex0 opened pull request: [1277](https://github.com/hackforla/website/pull/1277) at 2021-03-21 01:43 AM PDT -daniellex0,2021-03-21T09:41:33Z,- daniellex0 commented on issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-803543032) at 2021-03-21 02:41 AM PDT -daniellex0,2021-03-21T09:54:27Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-803545133) at 2021-03-21 02:54 AM PDT -daniellex0,2021-03-21T09:58:36Z,- daniellex0 commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-803545834) at 2021-03-21 02:58 AM PDT -daniellex0,2021-03-21T15:30:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-803604306) at 2021-03-21 08:30 AM PDT -daniellex0,2021-03-21T15:33:21Z,- daniellex0 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-803604904) at 2021-03-21 08:33 AM PDT -daniellex0,2021-03-21T15:38:31Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-803605901) at 2021-03-21 08:38 AM PDT -daniellex0,2021-03-21T15:43:29Z,- daniellex0 closed issue as completed: [1082](https://github.com/hackforla/website/issues/1082#event-4486878827) at 2021-03-21 08:43 AM PDT -daniellex0,2021-03-21T20:32:17Z,- daniellex0 opened issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-21 01:32 PM PDT -daniellex0,2021-03-21T20:32:17Z,- daniellex0 assigned to issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-21 01:32 PM PDT -daniellex0,2021-03-23T08:40:44Z,- daniellex0 commented on issue: [1063](https://github.com/hackforla/website/issues/1063#issuecomment-804722325) at 2021-03-23 01:40 AM PDT -daniellex0,2021-03-23T17:46:24Z,- daniellex0 opened issue: [1313](https://github.com/hackforla/website/issues/1313) at 2021-03-23 10:46 AM PDT -daniellex0,2021-03-23T17:50:06Z,- daniellex0 submitted pull request review: [1312](https://github.com/hackforla/website/pull/1312#pullrequestreview-618899781) at 2021-03-23 10:50 AM PDT -daniellex0,2021-03-23T17:56:17Z,- daniellex0 closed issue by PR 1312: [1311](https://github.com/hackforla/website/issues/1311#event-4497720974) at 2021-03-23 10:56 AM PDT -daniellex0,2021-03-24T08:15:47Z,- daniellex0 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-805598342) at 2021-03-24 01:15 AM PDT -daniellex0,2021-03-24T08:46:12Z,- daniellex0 opened issue: [1322](https://github.com/hackforla/website/issues/1322) at 2021-03-24 01:46 AM PDT -daniellex0,2021-03-24T09:10:50Z,- daniellex0 opened issue: [1323](https://github.com/hackforla/website/issues/1323) at 2021-03-24 02:10 AM PDT -daniellex0,2021-03-24T09:22:10Z,- daniellex0 opened issue: [1324](https://github.com/hackforla/website/issues/1324) at 2021-03-24 02:22 AM PDT -daniellex0,2021-03-24T17:33:35Z,- daniellex0 opened issue: [1326](https://github.com/hackforla/website/issues/1326) at 2021-03-24 10:33 AM PDT -daniellex0,2021-03-26T16:35:13Z,- daniellex0 opened issue: [1329](https://github.com/hackforla/website/issues/1329) at 2021-03-26 09:35 AM PDT -daniellex0,2021-03-26T17:49:52Z,- daniellex0 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-808408344) at 2021-03-26 10:49 AM PDT -daniellex0,2021-03-27T06:26:51Z,- daniellex0 opened issue: [1330](https://github.com/hackforla/website/issues/1330) at 2021-03-26 11:26 PM PDT -daniellex0,2021-03-27T19:18:16Z,- daniellex0 commented on pull request: [1277](https://github.com/hackforla/website/pull/1277#issuecomment-808789266) at 2021-03-27 12:18 PM PDT -daniellex0,2021-03-27T21:54:37Z,- daniellex0 opened issue: [1331](https://github.com/hackforla/website/issues/1331) at 2021-03-27 02:54 PM PDT -daniellex0,2021-03-27T22:48:03Z,- daniellex0 opened issue: [1332](https://github.com/hackforla/website/issues/1332) at 2021-03-27 03:48 PM PDT -daniellex0,2021-03-27T22:57:19Z,- daniellex0 opened issue: [1333](https://github.com/hackforla/website/issues/1333) at 2021-03-27 03:57 PM PDT -daniellex0,2021-03-27T22:57:38Z,- daniellex0 closed issue as completed: [1330](https://github.com/hackforla/website/issues/1330#event-4517616654) at 2021-03-27 03:57 PM PDT -daniellex0,2021-03-27T22:57:53Z,- daniellex0 closed issue as completed: [1324](https://github.com/hackforla/website/issues/1324#event-4517616821) at 2021-03-27 03:57 PM PDT -daniellex0,2021-03-28T00:52:20Z,- daniellex0 opened issue: [1335](https://github.com/hackforla/website/issues/1335) at 2021-03-27 05:52 PM PDT -daniellex0,2021-03-28T01:21:55Z,- daniellex0 opened issue: [1336](https://github.com/hackforla/website/issues/1336) at 2021-03-27 06:21 PM PDT -daniellex0,2021-03-28T01:38:10Z,- daniellex0 commented on pull request: [1327](https://github.com/hackforla/website/pull/1327#issuecomment-808829723) at 2021-03-27 06:38 PM PDT -daniellex0,2021-03-28T01:41:20Z,- daniellex0 commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-808829934) at 2021-03-27 06:41 PM PDT -daniellex0,2021-03-28T08:37:02Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-808865984) at 2021-03-28 01:37 AM PDT -daniellex0,2021-03-28T08:45:15Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-808866750) at 2021-03-28 01:45 AM PDT -daniellex0,2021-03-28T08:59:42Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808867883) at 2021-03-28 01:59 AM PDT -daniellex0,2021-03-28T09:11:14Z,- daniellex0 commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-808869173) at 2021-03-28 02:11 AM PDT -daniellex0,2021-03-28T09:13:54Z,- daniellex0 commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-808869426) at 2021-03-28 02:13 AM PDT -daniellex0,2021-03-28T09:20:01Z,- daniellex0 commented on issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-03-28 02:20 AM PDT -daniellex0,2021-03-28T09:31:34Z,- daniellex0 assigned to issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-03-28 02:31 AM PDT -daniellex0,2021-03-28T09:31:54Z,- daniellex0 unassigned from issue: [1151](https://github.com/hackforla/website/issues/1151#issuecomment-808870017) at 2021-03-28 02:31 AM PDT -daniellex0,2021-03-28T16:29:45Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-808920643) at 2021-03-28 09:29 AM PDT -daniellex0,2021-03-28T16:34:20Z,- daniellex0 commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-808921357) at 2021-03-28 09:34 AM PDT -daniellex0,2021-03-28T16:36:01Z,- daniellex0 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-808921555) at 2021-03-28 09:36 AM PDT -daniellex0,2021-03-28T17:35:45Z,- daniellex0 assigned to issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808867883) at 2021-03-28 10:35 AM PDT -daniellex0,2021-03-28T17:36:27Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808929786) at 2021-03-28 10:36 AM PDT -daniellex0,2021-03-29T02:14:34Z,- daniellex0 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-809018995) at 2021-03-28 07:14 PM PDT -daniellex0,2021-03-31T02:52:18Z,- daniellex0 pull request merged: [1277](https://github.com/hackforla/website/pull/1277#event-4531603673) at 2021-03-30 07:52 PM PDT -daniellex0,2021-04-01T07:33:58Z,- daniellex0 unassigned from issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-770400258) at 2021-04-01 12:33 AM PDT -daniellex0,2021-04-02T04:52:57Z,- daniellex0 unassigned from issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-808929786) at 2021-04-01 09:52 PM PDT -daniellex0,2021-04-02T04:54:01Z,- daniellex0 unassigned from issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-808921555) at 2021-04-01 09:54 PM PDT -daniellex0,2021-04-02T04:54:47Z,- daniellex0 unassigned from issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-04-01 09:54 PM PDT -daniellex0,2021-04-02T04:56:29Z,- daniellex0 unassigned from issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-808869426) at 2021-04-01 09:56 PM PDT -daniellex0,2021-04-02T04:57:05Z,- daniellex0 unassigned from issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-808921357) at 2021-04-01 09:57 PM PDT -daniellex0,2021-04-03T23:31:19Z,- daniellex0 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-812940676) at 2021-04-03 04:31 PM PDT -daniellex0,2021-04-04T09:36:00Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-813003441) at 2021-04-04 02:36 AM PDT -daniellex0,2021-04-04T09:44:33Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-813004416) at 2021-04-04 02:44 AM PDT -daniellex0,2021-04-04T16:32:41Z,- daniellex0 submitted pull request review: [1288](https://github.com/hackforla/website/pull/1288#pullrequestreview-627554611) at 2021-04-04 09:32 AM PDT -daniellex0,2021-04-05T18:20:55Z,- daniellex0 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-813555999) at 2021-04-05 11:20 AM PDT -daniellex0,2021-04-05T19:49:24Z,- daniellex0 commented on issue: [1253](https://github.com/hackforla/website/issues/1253#issuecomment-813611111) at 2021-04-05 12:49 PM PDT -daniellex0,2021-04-05T22:24:47Z,- daniellex0 commented on issue: [1253](https://github.com/hackforla/website/issues/1253#issuecomment-813685022) at 2021-04-05 03:24 PM PDT -daniellex0,2021-04-06T18:10:27Z,- daniellex0 commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-814331312) at 2021-04-06 11:10 AM PDT -daniellex0,2021-04-07T00:44:05Z,- daniellex0 commented on issue: [1331](https://github.com/hackforla/website/issues/1331#issuecomment-814522084) at 2021-04-06 05:44 PM PDT -daniellex0,2021-04-08T16:58:17Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-815985535) at 2021-04-08 09:58 AM PDT -daniellex0,2021-04-08T17:29:21Z,- daniellex0 commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816006238) at 2021-04-08 10:29 AM PDT -daniellex0,2021-04-08T19:57:44Z,- daniellex0 commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816127054) at 2021-04-08 12:57 PM PDT -daniellex0,2021-04-08T19:59:19Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816128653) at 2021-04-08 12:59 PM PDT -daniellex0,2021-04-08T20:36:57Z,- daniellex0 commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816168932) at 2021-04-08 01:36 PM PDT -daniellex0,2021-04-08T21:11:32Z,- daniellex0 opened issue: [1379](https://github.com/hackforla/website/issues/1379) at 2021-04-08 02:11 PM PDT -daniellex0,2021-04-08T21:13:13Z,- daniellex0 commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-816206454) at 2021-04-08 02:13 PM PDT -daniellex0,2021-04-08T21:14:44Z,- daniellex0 commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-816207979) at 2021-04-08 02:14 PM PDT -daniellex0,2021-04-08T21:18:54Z,- daniellex0 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-816212225) at 2021-04-08 02:18 PM PDT -daniellex0,2021-04-08T21:26:02Z,- daniellex0 opened issue: [1380](https://github.com/hackforla/website/issues/1380) at 2021-04-08 02:26 PM PDT -daniellex0,2021-04-08T21:45:52Z,- daniellex0 opened issue: [1381](https://github.com/hackforla/website/issues/1381) at 2021-04-08 02:45 PM PDT -daniellex0,2021-04-08T21:51:00Z,- daniellex0 commented on issue: [1381](https://github.com/hackforla/website/issues/1381#issuecomment-816247959) at 2021-04-08 02:51 PM PDT -daniellex0,2021-04-10T02:33:38Z,- daniellex0 submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-632881282) at 2021-04-09 07:33 PM PDT -daniellex0,2021-04-10T02:44:18Z,- daniellex0 commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-817066275) at 2021-04-09 07:44 PM PDT -daniellex0,2021-04-10T02:49:39Z,- daniellex0 commented on pull request: [1377](https://github.com/hackforla/website/pull/1377#issuecomment-817066775) at 2021-04-09 07:49 PM PDT -daniellex0,2021-04-10T02:49:52Z,- daniellex0 submitted pull request review: [1377](https://github.com/hackforla/website/pull/1377#pullrequestreview-632882284) at 2021-04-09 07:49 PM PDT -daniellex0,2021-04-10T02:51:07Z,- daniellex0 commented on pull request: [1377](https://github.com/hackforla/website/pull/1377#issuecomment-817066941) at 2021-04-09 07:51 PM PDT -daniellex0,2021-04-10T02:52:19Z,- daniellex0 commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-817067068) at 2021-04-09 07:52 PM PDT -daniellex0,2021-04-10T03:36:30Z,- daniellex0 submitted pull request review: [1288](https://github.com/hackforla/website/pull/1288#pullrequestreview-632885312) at 2021-04-09 08:36 PM PDT -daniellex0,2021-04-11T05:12:41Z,- daniellex0 opened issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-10 10:12 PM PDT -daniellex0,2021-04-11T05:21:17Z,- daniellex0 commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-817250461) at 2021-04-10 10:21 PM PDT -daniellex0,2021-04-11T05:41:55Z,- daniellex0 opened issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-10 10:41 PM PDT -daniellex0,2021-04-11T05:54:01Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-817253949) at 2021-04-10 10:54 PM PDT -daniellex0,2021-04-11T05:55:41Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-817254112) at 2021-04-10 10:55 PM PDT -daniellex0,2021-04-11T14:50:15Z,- daniellex0 submitted pull request review: [1386](https://github.com/hackforla/website/pull/1386#pullrequestreview-633021524) at 2021-04-11 07:50 AM PDT -daniellex0,2021-04-12T03:02:22Z,- daniellex0 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-817446071) at 2021-04-11 08:02 PM PDT -daniellex0,2021-04-13T18:06:51Z,- daniellex0 submitted pull request review: [1386](https://github.com/hackforla/website/pull/1386#pullrequestreview-634886843) at 2021-04-13 11:06 AM PDT -daniellex0,2021-04-13T18:49:46Z,- daniellex0 opened issue: [1402](https://github.com/hackforla/website/issues/1402) at 2021-04-13 11:49 AM PDT -daniellex0,2021-04-13T20:23:06Z,- daniellex0 submitted pull request review: [1362](https://github.com/hackforla/website/pull/1362#pullrequestreview-634993609) at 2021-04-13 01:23 PM PDT -daniellex0,2021-04-13T21:34:03Z,- daniellex0 commented on pull request: [1362](https://github.com/hackforla/website/pull/1362#issuecomment-819069274) at 2021-04-13 02:34 PM PDT -daniellex0,2021-04-15T00:58:08Z,- daniellex0 commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819943514) at 2021-04-14 05:58 PM PDT -daniellex0,2021-04-18T05:20:08Z,- daniellex0 submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-638294296) at 2021-04-17 10:20 PM PDT -daniellex0,2021-04-18T06:31:53Z,- daniellex0 submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-638297744) at 2021-04-17 11:31 PM PDT -daniellex0,2021-04-18T06:44:10Z,- daniellex0 commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-821943465) at 2021-04-17 11:44 PM PDT -daniellex0,2021-04-18T07:06:01Z,- daniellex0 commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-821945590) at 2021-04-18 12:06 AM PDT -daniellex0,2021-04-18T07:47:03Z,- daniellex0 commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-821949657) at 2021-04-18 12:47 AM PDT -daniellex0,2021-04-18T07:54:22Z,- daniellex0 commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-821950485) at 2021-04-18 12:54 AM PDT -daniellex0,2021-04-18T09:50:29Z,- daniellex0 submitted pull request review: [1406](https://github.com/hackforla/website/pull/1406#pullrequestreview-638312655) at 2021-04-18 02:50 AM PDT -daniellex0,2021-04-18T10:19:45Z,- daniellex0 opened issue: [1413](https://github.com/hackforla/website/issues/1413) at 2021-04-18 03:19 AM PDT -daniellex0,2021-04-18T10:24:39Z,- daniellex0 reopened issue: [1346](https://github.com/hackforla/website/issues/1346#event-4590048717) at 2021-04-18 03:24 AM PDT -daniellex0,2021-04-18T10:26:36Z,- daniellex0 commented on issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-821969415) at 2021-04-18 03:26 AM PDT -daniellex0,2021-04-18T10:39:30Z,- daniellex0 opened issue: [1414](https://github.com/hackforla/website/issues/1414) at 2021-04-18 03:39 AM PDT -daniellex0,2021-04-18T10:51:50Z,- daniellex0 opened issue: [1415](https://github.com/hackforla/website/issues/1415) at 2021-04-18 03:51 AM PDT -daniellex0,2021-04-18T16:09:17Z,- daniellex0 commented on issue: [1381](https://github.com/hackforla/website/issues/1381#issuecomment-822016427) at 2021-04-18 09:09 AM PDT -daniellex0,2021-04-18T16:09:22Z,- daniellex0 closed issue as completed: [1381](https://github.com/hackforla/website/issues/1381#event-4609243345) at 2021-04-18 09:09 AM PDT -daniellex0,2021-04-18T16:16:23Z,- daniellex0 commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-822017491) at 2021-04-18 09:16 AM PDT -daniellex0,2021-04-18T16:21:21Z,- daniellex0 opened issue: [1416](https://github.com/hackforla/website/issues/1416) at 2021-04-18 09:21 AM PDT -daniellex0,2021-04-18T16:24:26Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-822018631) at 2021-04-18 09:24 AM PDT -daniellex0,2021-04-18T16:29:40Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-822019366) at 2021-04-18 09:29 AM PDT -daniellex0,2021-04-18T16:30:52Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-822019562) at 2021-04-18 09:30 AM PDT -daniellex0,2021-04-19T21:16:27Z,- daniellex0 commented on pull request: [1421](https://github.com/hackforla/website/pull/1421#issuecomment-822790317) at 2021-04-19 02:16 PM PDT -daniellex0,2021-04-21T00:44:09Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-823695084) at 2021-04-20 05:44 PM PDT -daniellex0,2021-04-21T00:44:54Z,- daniellex0 commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-823695302) at 2021-04-20 05:44 PM PDT -daniellex0,2021-04-21T00:50:05Z,- daniellex0 commented on pull request: [1423](https://github.com/hackforla/website/pull/1423#issuecomment-823696917) at 2021-04-20 05:50 PM PDT -daniellex0,2021-04-24T07:10:39Z,- daniellex0 commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826048010) at 2021-04-24 12:10 AM PDT -daniellex0,2021-04-24T08:04:27Z,- daniellex0 opened issue: [1452](https://github.com/hackforla/website/issues/1452) at 2021-04-24 01:04 AM PDT -daniellex0,2021-04-24T21:06:15Z,- daniellex0 opened issue: [1456](https://github.com/hackforla/website/issues/1456) at 2021-04-24 02:06 PM PDT -daniellex0,2021-04-24T21:52:17Z,- daniellex0 opened issue: [1457](https://github.com/hackforla/website/issues/1457) at 2021-04-24 02:52 PM PDT -daniellex0,2021-04-24T22:19:12Z,- daniellex0 opened issue: [1458](https://github.com/hackforla/website/issues/1458) at 2021-04-24 03:19 PM PDT -daniellex0,2021-04-25T15:04:07Z,- daniellex0 commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826339101) at 2021-04-25 08:04 AM PDT -daniellex0,2021-04-25T15:19:39Z,- daniellex0 submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-644151724) at 2021-04-25 08:19 AM PDT -daniellex0,2021-04-25T15:34:30Z,- daniellex0 opened issue: [1459](https://github.com/hackforla/website/issues/1459) at 2021-04-25 08:34 AM PDT -daniellex0,2021-04-25T15:42:59Z,- daniellex0 opened issue: [1460](https://github.com/hackforla/website/issues/1460) at 2021-04-25 08:42 AM PDT -daniellex0,2021-04-25T15:47:02Z,- daniellex0 opened issue: [1461](https://github.com/hackforla/website/issues/1461) at 2021-04-25 08:47 AM PDT -daniellex0,2021-04-25T15:51:23Z,- daniellex0 commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826346087) at 2021-04-25 08:51 AM PDT -daniellex0,2021-04-25T16:00:33Z,- daniellex0 opened issue: [1462](https://github.com/hackforla/website/issues/1462) at 2021-04-25 09:00 AM PDT -daniellex0,2021-04-25T16:10:30Z,- daniellex0 opened issue: [1463](https://github.com/hackforla/website/issues/1463) at 2021-04-25 09:10 AM PDT -daniellex0,2021-04-27T16:23:10Z,- daniellex0 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-04-27 09:23 AM PDT -daniellex0,2021-04-27T23:56:54Z,- daniellex0 submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-646486458) at 2021-04-27 04:56 PM PDT -daniellex0,2021-04-28T00:09:16Z,- daniellex0 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646491171) at 2021-04-27 05:09 PM PDT -daniellex0,2021-04-28T00:46:41Z,- daniellex0 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-828057168) at 2021-04-27 05:46 PM PDT -daniellex0,2021-04-28T00:51:08Z,- daniellex0 submitted pull request review: [1467](https://github.com/hackforla/website/pull/1467#pullrequestreview-646508623) at 2021-04-27 05:51 PM PDT -daniellex0,2021-04-28T00:52:30Z,- daniellex0 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828059175) at 2021-04-27 05:52 PM PDT -daniellex0,2021-04-28T01:00:21Z,- daniellex0 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-828061818) at 2021-04-27 06:00 PM PDT -daniellex0,2021-04-28T01:22:13Z,- daniellex0 submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-646519332) at 2021-04-27 06:22 PM PDT -daniellex0,2021-04-28T01:53:15Z,- daniellex0 opened issue: [1479](https://github.com/hackforla/website/issues/1479) at 2021-04-27 06:53 PM PDT -daniellex0,2021-04-28T03:59:42Z,- daniellex0 assigned to issue: [1483](https://github.com/hackforla/website/issues/1483) at 2021-04-27 08:59 PM PDT -daniellex0,2021-04-28T07:26:35Z,- daniellex0 opened issue: [1487](https://github.com/hackforla/website/issues/1487) at 2021-04-28 12:26 AM PDT -daniellex0,2021-04-28T07:46:26Z,- daniellex0 opened issue: [1488](https://github.com/hackforla/website/issues/1488) at 2021-04-28 12:46 AM PDT -daniellex0,2021-04-28T07:54:15Z,- daniellex0 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828235863) at 2021-04-28 12:54 AM PDT -daniellex0,2021-04-28T08:04:24Z,- daniellex0 commented on pull request: [1484](https://github.com/hackforla/website/pull/1484#issuecomment-828243424) at 2021-04-28 01:04 AM PDT -daniellex0,2021-04-28T08:31:11Z,- daniellex0 commented on pull request: [1468](https://github.com/hackforla/website/pull/1468#issuecomment-828262110) at 2021-04-28 01:31 AM PDT -daniellex0,2021-04-28T17:18:59Z,- daniellex0 commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-828633121) at 2021-04-28 10:18 AM PDT -daniellex0,2021-04-29T00:57:20Z,- daniellex0 closed issue as completed: [1475](https://github.com/hackforla/website/issues/1475#event-4659919719) at 2021-04-28 05:57 PM PDT -daniellex0,2021-04-30T07:34:43Z,- daniellex0 commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-829904063) at 2021-04-30 12:34 AM PDT -daniellex0,2021-04-30T07:47:07Z,- daniellex0 submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-648965496) at 2021-04-30 12:47 AM PDT -daniellex0,2021-04-30T07:52:15Z,- daniellex0 submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-648969122) at 2021-04-30 12:52 AM PDT -daniellex0,2021-04-30T08:14:57Z,- daniellex0 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-829926083) at 2021-04-30 01:14 AM PDT -daniellex0,2021-04-30T08:19:17Z,- daniellex0 submitted pull request review: [1491](https://github.com/hackforla/website/pull/1491#pullrequestreview-648988802) at 2021-04-30 01:19 AM PDT -daniellex0,2021-05-01T01:16:51Z,- daniellex0 opened issue: [1497](https://github.com/hackforla/website/issues/1497) at 2021-04-30 06:16 PM PDT -daniellex0,2021-05-01T01:25:22Z,- daniellex0 opened issue: [1498](https://github.com/hackforla/website/issues/1498) at 2021-04-30 06:25 PM PDT -daniellex0,2021-05-01T01:34:48Z,- daniellex0 opened issue: [1499](https://github.com/hackforla/website/issues/1499) at 2021-04-30 06:34 PM PDT -daniellex0,2021-05-02T04:39:26Z,- daniellex0 commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830738882) at 2021-05-01 09:39 PM PDT -daniellex0,2021-05-02T16:23:42Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-830834536) at 2021-05-02 09:23 AM PDT -daniellex0,2021-05-02T16:25:44Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-830834806) at 2021-05-02 09:25 AM PDT -daniellex0,2021-05-02T17:12:56Z,- daniellex0 assigned to issue: [1469](https://github.com/hackforla/website/issues/1469) at 2021-05-02 10:12 AM PDT -daniellex0,2021-05-03T23:34:11Z,- daniellex0 closed issue as completed: [1487](https://github.com/hackforla/website/issues/1487#event-4680655844) at 2021-05-03 04:34 PM PDT -daniellex0,2021-05-03T23:34:47Z,- daniellex0 commented on issue: [1487](https://github.com/hackforla/website/issues/1487#issuecomment-831599699) at 2021-05-03 04:34 PM PDT -daniellex0,2021-05-04T07:20:13Z,- daniellex0 commented on pull request: [1502](https://github.com/hackforla/website/pull/1502#issuecomment-831734385) at 2021-05-04 12:20 AM PDT -daniellex0,2021-05-04T08:04:33Z,- daniellex0 opened issue: [1504](https://github.com/hackforla/website/issues/1504) at 2021-05-04 01:04 AM PDT -daniellex0,2021-05-04T08:08:50Z,- daniellex0 opened issue: [1505](https://github.com/hackforla/website/issues/1505) at 2021-05-04 01:08 AM PDT -daniellex0,2021-05-04T08:11:39Z,- daniellex0 commented on issue: [1505](https://github.com/hackforla/website/issues/1505#issuecomment-831760990) at 2021-05-04 01:11 AM PDT -daniellex0,2021-05-04T08:24:23Z,- daniellex0 opened issue: [1506](https://github.com/hackforla/website/issues/1506) at 2021-05-04 01:24 AM PDT -daniellex0,2021-05-04T08:25:26Z,- daniellex0 commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-831768425) at 2021-05-04 01:25 AM PDT -daniellex0,2021-05-04T08:28:11Z,- daniellex0 opened issue: [1507](https://github.com/hackforla/website/issues/1507) at 2021-05-04 01:28 AM PDT -daniellex0,2021-05-04T08:29:12Z,- daniellex0 commented on issue: [1507](https://github.com/hackforla/website/issues/1507#issuecomment-831770752) at 2021-05-04 01:29 AM PDT -daniellex0,2021-05-04T08:39:18Z,- daniellex0 reopened issue: [1249](https://github.com/hackforla/website/issues/1249#event-4674975713) at 2021-05-04 01:39 AM PDT -daniellex0,2021-05-04T08:39:56Z,- daniellex0 closed issue by PR 1493: [1249](https://github.com/hackforla/website/issues/1249#event-4682034918) at 2021-05-04 01:39 AM PDT -daniellex0,2021-05-04T08:42:45Z,- daniellex0 commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-831778794) at 2021-05-04 01:42 AM PDT -daniellex0,2021-05-05T02:12:57Z,- daniellex0 opened issue: [1511](https://github.com/hackforla/website/issues/1511) at 2021-05-04 07:12 PM PDT -daniellex0,2021-05-07T17:51:36Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-834653606) at 2021-05-07 10:51 AM PDT -daniellex0,2021-05-07T18:08:03Z,- daniellex0 commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-834663697) at 2021-05-07 11:08 AM PDT -daniellex0,2021-05-09T14:58:34Z,- daniellex0 commented on issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-835823117) at 2021-05-09 07:58 AM PDT -daniellex0,2021-05-09T15:10:17Z,- daniellex0 commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-835825288) at 2021-05-09 08:10 AM PDT -daniellex0,2021-05-09T15:10:36Z,- daniellex0 closed issue as completed: [1379](https://github.com/hackforla/website/issues/1379#event-4711107004) at 2021-05-09 08:10 AM PDT -daniellex0,2021-05-09T16:15:41Z,- daniellex0 closed issue as completed: [1079](https://github.com/hackforla/website/issues/1079#event-4711242045) at 2021-05-09 09:15 AM PDT -daniellex0,2021-05-09T16:25:55Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-835838638) at 2021-05-09 09:25 AM PDT -daniellex0,2021-05-09T17:07:46Z,- daniellex0 commented on issue: [1510](https://github.com/hackforla/website/issues/1510#issuecomment-835845319) at 2021-05-09 10:07 AM PDT -daniellex0,2021-05-09T17:10:05Z,- daniellex0 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-835845759) at 2021-05-09 10:10 AM PDT -daniellex0,2021-05-09T17:11:40Z,- daniellex0 submitted pull request review: [1491](https://github.com/hackforla/website/pull/1491#pullrequestreview-655096717) at 2021-05-09 10:11 AM PDT -daniellex0,2021-05-10T03:53:44Z,- daniellex0 submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-655211083) at 2021-05-09 08:53 PM PDT -daniellex0,2021-05-10T23:06:47Z,- daniellex0 submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-656151618) at 2021-05-10 04:06 PM PDT -daniellex0,2021-05-10T23:58:53Z,- daniellex0 commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837520280) at 2021-05-10 04:58 PM PDT -daniellex0,2021-05-16T09:12:24Z,- daniellex0 opened issue: [1548](https://github.com/hackforla/website/issues/1548) at 2021-05-16 02:12 AM PDT -daniellex0,2021-05-16T09:30:27Z,- daniellex0 opened issue: [1549](https://github.com/hackforla/website/issues/1549) at 2021-05-16 02:30 AM PDT -daniellex0,2021-05-16T09:45:18Z,- daniellex0 opened issue: [1550](https://github.com/hackforla/website/issues/1550) at 2021-05-16 02:45 AM PDT -daniellex0,2021-05-16T15:03:27Z,- daniellex0 opened issue: [1551](https://github.com/hackforla/website/issues/1551) at 2021-05-16 08:03 AM PDT -daniellex0,2021-05-16T15:21:55Z,- daniellex0 opened issue: [1552](https://github.com/hackforla/website/issues/1552) at 2021-05-16 08:21 AM PDT -daniellex0,2021-05-16T15:26:45Z,- daniellex0 closed issue as completed: [1134](https://github.com/hackforla/website/issues/1134#event-4751106410) at 2021-05-16 08:26 AM PDT -daniellex0,2021-05-16T15:27:53Z,- daniellex0 closed issue as completed: [1133](https://github.com/hackforla/website/issues/1133#event-4751107374) at 2021-05-16 08:27 AM PDT -daniellex0,2021-05-16T15:42:54Z,- daniellex0 opened issue: [1553](https://github.com/hackforla/website/issues/1553) at 2021-05-16 08:42 AM PDT -daniellex0,2021-05-16T15:56:51Z,- daniellex0 opened issue: [1554](https://github.com/hackforla/website/issues/1554) at 2021-05-16 08:56 AM PDT -daniellex0,2021-05-16T16:21:32Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-841839712) at 2021-05-16 09:21 AM PDT -daniellex0,2021-05-16T16:23:32Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-841839964) at 2021-05-16 09:23 AM PDT -daniellex0,2021-05-16T16:42:43Z,- daniellex0 opened issue: [1555](https://github.com/hackforla/website/issues/1555) at 2021-05-16 09:42 AM PDT -daniellex0,2021-05-18T02:55:23Z,- daniellex0 commented on issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-17 07:55 PM PDT -daniellex0,2021-05-19T20:10:27Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-844433943) at 2021-05-19 01:10 PM PDT -daniellex0,2021-05-19T20:31:07Z,- daniellex0 opened issue: [1592](https://github.com/hackforla/website/issues/1592) at 2021-05-19 01:31 PM PDT -daniellex0,2021-05-20T04:51:08Z,- daniellex0 commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-844690633) at 2021-05-19 09:51 PM PDT -daniellex0,2021-05-20T06:01:59Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-844726515) at 2021-05-19 11:01 PM PDT -daniellex0,2021-05-20T06:25:53Z,- daniellex0 opened issue: [1593](https://github.com/hackforla/website/issues/1593) at 2021-05-19 11:25 PM PDT -daniellex0,2021-05-20T06:30:05Z,- daniellex0 commented on issue: [1593](https://github.com/hackforla/website/issues/1593#issuecomment-844747990) at 2021-05-19 11:30 PM PDT -daniellex0,2021-05-20T06:58:14Z,- daniellex0 opened issue: [1594](https://github.com/hackforla/website/issues/1594) at 2021-05-19 11:58 PM PDT -daniellex0,2021-05-20T07:48:24Z,- daniellex0 opened issue: [1595](https://github.com/hackforla/website/issues/1595) at 2021-05-20 12:48 AM PDT -daniellex0,2021-05-20T08:21:27Z,- daniellex0 opened issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-05-20 01:21 AM PDT -daniellex0,2021-05-20T08:30:53Z,- daniellex0 opened issue: [1597](https://github.com/hackforla/website/issues/1597) at 2021-05-20 01:30 AM PDT -daniellex0,2021-05-20T08:55:03Z,- daniellex0 opened issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-05-20 01:55 AM PDT -daniellex0,2021-05-20T09:16:06Z,- daniellex0 opened issue: [1599](https://github.com/hackforla/website/issues/1599) at 2021-05-20 02:16 AM PDT -daniellex0,2021-05-20T22:18:01Z,- daniellex0 opened issue: [1600](https://github.com/hackforla/website/issues/1600) at 2021-05-20 03:18 PM PDT -daniellex0,2021-05-20T22:18:10Z,- daniellex0 commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-845517626) at 2021-05-20 03:18 PM PDT -daniellex0,2021-05-21T18:08:55Z,- daniellex0 closed issue as completed: [1555](https://github.com/hackforla/website/issues/1555#event-4780698161) at 2021-05-21 11:08 AM PDT -daniellex0,2021-05-21T18:09:05Z,- daniellex0 commented on issue: [1555](https://github.com/hackforla/website/issues/1555#issuecomment-846143479) at 2021-05-21 11:09 AM PDT -daniellex0,2021-05-23T02:05:31Z,- daniellex0 opened issue: [1605](https://github.com/hackforla/website/issues/1605) at 2021-05-22 07:05 PM PDT -daniellex0,2021-05-23T02:23:30Z,- daniellex0 opened issue: [1606](https://github.com/hackforla/website/issues/1606) at 2021-05-22 07:23 PM PDT -daniellex0,2021-05-23T02:49:43Z,- daniellex0 opened issue: [1607](https://github.com/hackforla/website/issues/1607) at 2021-05-22 07:49 PM PDT -daniellex0,2021-05-23T02:58:08Z,- daniellex0 opened issue: [1608](https://github.com/hackforla/website/issues/1608) at 2021-05-22 07:58 PM PDT -daniellex0,2021-05-23T05:33:19Z,- daniellex0 opened issue: [1610](https://github.com/hackforla/website/issues/1610) at 2021-05-22 10:33 PM PDT -daniellex0,2021-05-23T05:52:24Z,- daniellex0 opened issue: [1611](https://github.com/hackforla/website/issues/1611) at 2021-05-22 10:52 PM PDT -daniellex0,2021-05-23T06:21:37Z,- daniellex0 opened issue: [1612](https://github.com/hackforla/website/issues/1612) at 2021-05-22 11:21 PM PDT -daniellex0,2021-05-23T06:32:43Z,- daniellex0 opened issue: [1613](https://github.com/hackforla/website/issues/1613) at 2021-05-22 11:32 PM PDT -daniellex0,2021-05-23T07:19:11Z,- daniellex0 opened issue: [1614](https://github.com/hackforla/website/issues/1614) at 2021-05-23 12:19 AM PDT -daniellex0,2021-05-23T07:26:13Z,- daniellex0 opened issue: [1615](https://github.com/hackforla/website/issues/1615) at 2021-05-23 12:26 AM PDT -daniellex0,2021-05-23T07:35:23Z,- daniellex0 opened issue: [1616](https://github.com/hackforla/website/issues/1616) at 2021-05-23 12:35 AM PDT -daniellex0,2021-05-23T07:45:19Z,- daniellex0 opened issue: [1617](https://github.com/hackforla/website/issues/1617) at 2021-05-23 12:45 AM PDT -daniellex0,2021-05-23T09:09:21Z,- daniellex0 commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846530096) at 2021-05-23 02:09 AM PDT -daniellex0,2021-05-23T10:21:50Z,- daniellex0 opened issue: [1618](https://github.com/hackforla/website/issues/1618) at 2021-05-23 03:21 AM PDT -daniellex0,2021-05-23T10:27:40Z,- daniellex0 opened issue: [1619](https://github.com/hackforla/website/issues/1619) at 2021-05-23 03:27 AM PDT -daniellex0,2021-05-23T16:05:11Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-846586322) at 2021-05-23 09:05 AM PDT -daniellex0,2021-05-23T16:07:06Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-846586652) at 2021-05-23 09:07 AM PDT -daniellex0,2021-05-23T16:09:00Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-846586953) at 2021-05-23 09:09 AM PDT -daniellex0,2021-05-25T22:17:31Z,- daniellex0 opened issue: [1635](https://github.com/hackforla/website/issues/1635) at 2021-05-25 03:17 PM PDT -daniellex0,2021-05-25T22:23:28Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-848308752) at 2021-05-25 03:23 PM PDT -daniellex0,2021-05-25T22:31:02Z,- daniellex0 commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-848311809) at 2021-05-25 03:31 PM PDT -daniellex0,2021-05-25T22:38:15Z,- daniellex0 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-668429836) at 2021-05-25 03:38 PM PDT -daniellex0,2021-05-28T09:10:32Z,- daniellex0 submitted pull request review: [1636](https://github.com/hackforla/website/pull/1636#pullrequestreview-671095244) at 2021-05-28 02:10 AM PDT -daniellex0,2021-05-28T09:28:57Z,- daniellex0 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-671111044) at 2021-05-28 02:28 AM PDT -daniellex0,2021-05-28T09:42:51Z,- daniellex0 submitted pull request review: [1628](https://github.com/hackforla/website/pull/1628#pullrequestreview-671123135) at 2021-05-28 02:42 AM PDT -daniellex0,2021-05-28T09:57:07Z,- daniellex0 commented on pull request: [1620](https://github.com/hackforla/website/pull/1620#issuecomment-850302266) at 2021-05-28 02:57 AM PDT -daniellex0,2021-05-30T09:32:29Z,- daniellex0 opened issue: [1671](https://github.com/hackforla/website/issues/1671) at 2021-05-30 02:32 AM PDT -daniellex0,2021-05-30T16:09:44Z,- daniellex0 opened issue: [1672](https://github.com/hackforla/website/issues/1672) at 2021-05-30 09:09 AM PDT -daniellex0,2021-05-30T16:27:45Z,- daniellex0 commented on issue: [1593](https://github.com/hackforla/website/issues/1593#issuecomment-851025907) at 2021-05-30 09:27 AM PDT -daniellex0,2021-05-30T16:27:51Z,- daniellex0 closed issue as completed: [1593](https://github.com/hackforla/website/issues/1593#event-4817330731) at 2021-05-30 09:27 AM PDT -daniellex0,2021-05-30T16:48:10Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-851028469) at 2021-05-30 09:48 AM PDT -daniellex0,2021-05-30T16:51:05Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-851028849) at 2021-05-30 09:51 AM PDT -daniellex0,2021-05-30T16:53:01Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-851029151) at 2021-05-30 09:53 AM PDT -daniellex0,2021-06-02T02:52:24Z,- daniellex0 opened issue: [1680](https://github.com/hackforla/website/issues/1680) at 2021-06-01 07:52 PM PDT -daniellex0,2021-06-02T06:58:58Z,- daniellex0 opened issue: [2473](https://github.com/hackforla/website/issues/2473) at 2021-06-01 11:58 PM PDT -daniellex0,2021-06-02T06:58:58Z,- daniellex0 opened issue: [2473](https://github.com/hackforla/website/issues/2473) at 2021-06-01 11:58 PM PDT -daniellex0,2021-06-02T07:41:56Z,- daniellex0 submitted pull request review: [1624](https://github.com/hackforla/website/pull/1624#pullrequestreview-673884016) at 2021-06-02 12:41 AM PDT -daniellex0,2021-06-02T07:56:48Z,- daniellex0 submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-673898109) at 2021-06-02 12:56 AM PDT -daniellex0,2021-06-02T08:11:07Z,- daniellex0 submitted pull request review: [1620](https://github.com/hackforla/website/pull/1620#pullrequestreview-673911709) at 2021-06-02 01:11 AM PDT -daniellex0,2021-06-02T08:20:11Z,- daniellex0 submitted pull request review: [1636](https://github.com/hackforla/website/pull/1636#pullrequestreview-673920606) at 2021-06-02 01:20 AM PDT -daniellex0,2021-06-04T03:24:17Z,- daniellex0 commented on issue: [1635](https://github.com/hackforla/website/issues/1635#issuecomment-854330084) at 2021-06-03 08:24 PM PDT -daniellex0,2021-06-04T05:01:26Z,- daniellex0 assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:01 PM PDT -daniellex0,2021-06-04T05:15:39Z,- daniellex0 assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -daniellex0,2021-06-06T04:53:42Z,- daniellex0 commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-855337178) at 2021-06-05 09:53 PM PDT -daniellex0,2021-06-06T04:53:42Z,- daniellex0 closed issue as completed: [1600](https://github.com/hackforla/website/issues/1600#event-4847588444) at 2021-06-05 09:53 PM PDT -daniellex0,2021-06-06T05:20:19Z,- daniellex0 submitted pull request review: [1675](https://github.com/hackforla/website/pull/1675#pullrequestreview-676827441) at 2021-06-05 10:20 PM PDT -daniellex0,2021-06-06T05:25:45Z,- daniellex0 commented on issue: [1687](https://github.com/hackforla/website/issues/1687#issuecomment-855340760) at 2021-06-05 10:25 PM PDT -daniellex0,2021-06-06T05:28:40Z,- daniellex0 assigned to issue: [1680](https://github.com/hackforla/website/issues/1680) at 2021-06-05 10:28 PM PDT -daniellex0,2021-06-06T05:28:51Z,- daniellex0 commented on issue: [1680](https://github.com/hackforla/website/issues/1680#issuecomment-855341141) at 2021-06-05 10:28 PM PDT -daniellex0,2021-06-06T05:36:12Z,- daniellex0 commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-05 10:36 PM PDT -daniellex0,2021-06-06T05:53:33Z,- daniellex0 opened issue: [1688](https://github.com/hackforla/website/issues/1688) at 2021-06-05 10:53 PM PDT -daniellex0,2021-06-06T06:46:46Z,- daniellex0 opened issue: [1689](https://github.com/hackforla/website/issues/1689) at 2021-06-05 11:46 PM PDT -daniellex0,2021-06-06T06:55:46Z,- daniellex0 opened issue: [1690](https://github.com/hackforla/website/issues/1690) at 2021-06-05 11:55 PM PDT -daniellex0,2021-06-06T07:06:24Z,- daniellex0 opened issue: [1691](https://github.com/hackforla/website/issues/1691) at 2021-06-06 12:06 AM PDT -daniellex0,2021-06-06T07:28:43Z,- daniellex0 opened issue: [1692](https://github.com/hackforla/website/issues/1692) at 2021-06-06 12:28 AM PDT -daniellex0,2021-06-06T07:32:24Z,- daniellex0 closed issue as completed: [979](https://github.com/hackforla/website/issues/979#event-4847753527) at 2021-06-06 12:32 AM PDT -daniellex0,2021-06-06T07:32:56Z,- daniellex0 closed issue as completed: [1052](https://github.com/hackforla/website/issues/1052#event-4847754188) at 2021-06-06 12:32 AM PDT -daniellex0,2021-06-06T07:34:24Z,- daniellex0 closed issue as completed: [1504](https://github.com/hackforla/website/issues/1504#event-4847755740) at 2021-06-06 12:34 AM PDT -daniellex0,2021-06-06T07:36:07Z,- daniellex0 closed issue as completed: [1635](https://github.com/hackforla/website/issues/1635#event-4847757853) at 2021-06-06 12:36 AM PDT -daniellex0,2021-06-06T07:44:05Z,- daniellex0 opened issue: [1693](https://github.com/hackforla/website/issues/1693) at 2021-06-06 12:44 AM PDT -daniellex0,2021-06-06T07:58:42Z,- daniellex0 opened issue: [1694](https://github.com/hackforla/website/issues/1694) at 2021-06-06 12:58 AM PDT -daniellex0,2021-06-06T08:11:48Z,- daniellex0 opened issue: [1695](https://github.com/hackforla/website/issues/1695) at 2021-06-06 01:11 AM PDT -daniellex0,2021-06-06T09:14:55Z,- daniellex0 opened issue: [1696](https://github.com/hackforla/website/issues/1696) at 2021-06-06 02:14 AM PDT -daniellex0,2021-06-06T09:24:13Z,- daniellex0 opened issue: [1697](https://github.com/hackforla/website/issues/1697) at 2021-06-06 02:24 AM PDT -daniellex0,2021-06-06T09:24:37Z,- daniellex0 commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-855367804) at 2021-06-06 02:24 AM PDT -daniellex0,2021-06-06T09:35:22Z,- daniellex0 opened issue: [1698](https://github.com/hackforla/website/issues/1698) at 2021-06-06 02:35 AM PDT -daniellex0,2021-06-06T09:35:51Z,- daniellex0 commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-855369183) at 2021-06-06 02:35 AM PDT -daniellex0,2021-06-06T09:58:43Z,- daniellex0 opened issue: [1699](https://github.com/hackforla/website/issues/1699) at 2021-06-06 02:58 AM PDT -daniellex0,2021-06-06T16:10:10Z,- daniellex0 commented on issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-855422617) at 2021-06-06 09:10 AM PDT -daniellex0,2021-06-06T16:20:33Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-855423942) at 2021-06-06 09:20 AM PDT -daniellex0,2021-06-06T16:24:58Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-855424519) at 2021-06-06 09:24 AM PDT -daniellex0,2021-06-06T16:26:18Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-855424704) at 2021-06-06 09:26 AM PDT -daniellex0,2021-06-06T19:49:20Z,- daniellex0 unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -daniellex0,2021-06-06T21:16:33Z,- daniellex0 assigned to issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855436590) at 2021-06-06 02:16 PM PDT -daniellex0,2021-06-06T21:16:55Z,- daniellex0 unassigned from issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855436590) at 2021-06-06 02:16 PM PDT -daniellex0,2021-06-06T21:19:27Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-855464676) at 2021-06-06 02:19 PM PDT -daniellex0,2021-06-07T17:10:19Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-856112378) at 2021-06-07 10:10 AM PDT -daniellex0,2021-06-07T21:06:37Z,- daniellex0 commented on pull request: [1700](https://github.com/hackforla/website/pull/1700#issuecomment-856257319) at 2021-06-07 02:06 PM PDT -daniellex0,2021-06-07T21:32:38Z,- daniellex0 commented on pull request: [1700](https://github.com/hackforla/website/pull/1700#issuecomment-856278152) at 2021-06-07 02:32 PM PDT -daniellex0,2021-06-08T19:53:10Z,- daniellex0 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-857068077) at 2021-06-08 12:53 PM PDT -daniellex0,2021-06-08T20:05:04Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-857081135) at 2021-06-08 01:05 PM PDT -daniellex0,2021-06-08T20:05:05Z,- daniellex0 closed issue as completed: [1135](https://github.com/hackforla/website/issues/1135#event-4860827270) at 2021-06-08 01:05 PM PDT -daniellex0,2021-06-08T20:06:28Z,- daniellex0 commented on issue: [1672](https://github.com/hackforla/website/issues/1672#issuecomment-857082682) at 2021-06-08 01:06 PM PDT -daniellex0,2021-06-08T20:15:11Z,- daniellex0 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-857091752) at 2021-06-08 01:15 PM PDT -daniellex0,2021-06-08T23:57:16Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-857269602) at 2021-06-08 04:57 PM PDT -daniellex0,2021-06-09T02:13:17Z,- daniellex0 assigned to issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-857158746) at 2021-06-08 07:13 PM PDT -daniellex0,2021-06-09T02:13:23Z,- daniellex0 unassigned from issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-857158746) at 2021-06-08 07:13 PM PDT -daniellex0,2021-06-09T23:38:40Z,- daniellex0 closed issue as completed: [1672](https://github.com/hackforla/website/issues/1672#event-4868164368) at 2021-06-09 04:38 PM PDT -daniellex0,2021-06-11T03:00:48Z,- daniellex0 commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-859226294) at 2021-06-10 08:00 PM PDT -daniellex0,2021-06-11T03:08:32Z,- daniellex0 commented on issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-859228890) at 2021-06-10 08:08 PM PDT -daniellex0,2021-06-11T03:19:12Z,- daniellex0 commented on issue: [1614](https://github.com/hackforla/website/issues/1614#issuecomment-859232481) at 2021-06-10 08:19 PM PDT -daniellex0,2021-06-11T03:21:15Z,- daniellex0 commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-859233178) at 2021-06-10 08:21 PM PDT -daniellex0,2021-06-11T03:21:15Z,- daniellex0 closed issue as completed: [1289](https://github.com/hackforla/website/issues/1289#event-4875399700) at 2021-06-10 08:21 PM PDT -daniellex0,2021-06-11T03:22:43Z,- daniellex0 commented on issue: [1695](https://github.com/hackforla/website/issues/1695#issuecomment-859233623) at 2021-06-10 08:22 PM PDT -daniellex0,2021-06-11T03:29:57Z,- daniellex0 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859236115) at 2021-06-10 08:29 PM PDT -daniellex0,2021-06-11T03:31:26Z,- daniellex0 commented on issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-859236590) at 2021-06-10 08:31 PM PDT -daniellex0,2021-06-11T03:33:48Z,- daniellex0 submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-681418057) at 2021-06-10 08:33 PM PDT -daniellex0,2021-06-11T05:32:14Z,- daniellex0 submitted pull request review: [1703](https://github.com/hackforla/website/pull/1703#pullrequestreview-681462426) at 2021-06-10 10:32 PM PDT -daniellex0,2021-06-11T08:22:08Z,- daniellex0 submitted pull request review: [1701](https://github.com/hackforla/website/pull/1701#pullrequestreview-681575670) at 2021-06-11 01:22 AM PDT -daniellex0,2021-06-11T09:28:17Z,- daniellex0 opened issue: [1708](https://github.com/hackforla/website/issues/1708) at 2021-06-11 02:28 AM PDT -daniellex0,2021-06-11T17:48:39Z,- daniellex0 opened issue: [1711](https://github.com/hackforla/website/issues/1711) at 2021-06-11 10:48 AM PDT -daniellex0,2021-06-12T00:56:05Z,- daniellex0 commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859973010) at 2021-06-11 05:56 PM PDT -daniellex0,2021-06-12T19:58:54Z,- daniellex0 commented on issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-860101661) at 2021-06-12 12:58 PM PDT -daniellex0,2021-06-12T19:58:54Z,- daniellex0 closed issue as completed: [1469](https://github.com/hackforla/website/issues/1469#event-4881616711) at 2021-06-12 12:58 PM PDT -daniellex0,2021-06-12T22:39:54Z,- daniellex0 reopened issue: [1692](https://github.com/hackforla/website/issues/1692#event-4881473812) at 2021-06-12 03:39 PM PDT -daniellex0,2021-06-13T16:16:36Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-860236040) at 2021-06-13 09:16 AM PDT -daniellex0,2021-06-13T16:18:16Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-860236265) at 2021-06-13 09:18 AM PDT -daniellex0,2021-06-13T16:26:22Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-860237359) at 2021-06-13 09:26 AM PDT -daniellex0,2021-06-13T16:54:23Z,- daniellex0 opened issue: [1733](https://github.com/hackforla/website/issues/1733) at 2021-06-13 09:54 AM PDT -daniellex0,2021-06-15T06:53:35Z,- daniellex0 opened issue: [1739](https://github.com/hackforla/website/issues/1739) at 2021-06-14 11:53 PM PDT -daniellex0,2021-06-15T18:57:19Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-861754071) at 2021-06-15 11:57 AM PDT -daniellex0,2021-06-15T18:58:30Z,- daniellex0 commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-861754890) at 2021-06-15 11:58 AM PDT -daniellex0,2021-06-16T00:53:48Z,- daniellex0 submitted pull request review: [1314](https://github.com/hackforla/website/pull/1314#pullrequestreview-684631457) at 2021-06-15 05:53 PM PDT -daniellex0,2021-06-16T00:55:28Z,- daniellex0 commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-861929027) at 2021-06-15 05:55 PM PDT -daniellex0,2021-06-16T01:09:10Z,- daniellex0 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-861933624) at 2021-06-15 06:09 PM PDT -daniellex0,2021-06-16T02:47:51Z,- daniellex0 opened issue: [1749](https://github.com/hackforla/website/issues/1749) at 2021-06-15 07:47 PM PDT -daniellex0,2021-06-17T22:59:41Z,- daniellex0 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-863613978) at 2021-06-17 03:59 PM PDT -daniellex0,2021-06-18T01:24:06Z,- daniellex0 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-863663636) at 2021-06-17 06:24 PM PDT -daniellex0,2021-06-18T01:38:43Z,- daniellex0 commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-863668134) at 2021-06-17 06:38 PM PDT -daniellex0,2021-06-20T05:02:05Z,- daniellex0 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-864499952) at 2021-06-19 10:02 PM PDT -daniellex0,2021-06-20T05:49:54Z,- daniellex0 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-864503566) at 2021-06-19 10:49 PM PDT -daniellex0,2021-06-20T06:51:03Z,- daniellex0 commented on pull request: [1731](https://github.com/hackforla/website/pull/1731#issuecomment-864508484) at 2021-06-19 11:51 PM PDT -daniellex0,2021-06-20T07:22:25Z,- daniellex0 opened issue: [1791](https://github.com/hackforla/website/issues/1791) at 2021-06-20 12:22 AM PDT -daniellex0,2021-06-20T07:37:35Z,- daniellex0 opened issue: [1792](https://github.com/hackforla/website/issues/1792) at 2021-06-20 12:37 AM PDT -daniellex0,2021-06-20T07:48:35Z,- daniellex0 opened issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-20 12:48 AM PDT -daniellex0,2021-06-20T08:15:03Z,- daniellex0 opened issue: [1794](https://github.com/hackforla/website/issues/1794) at 2021-06-20 01:15 AM PDT -daniellex0,2021-06-20T16:45:30Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-864581404) at 2021-06-20 09:45 AM PDT -daniellex0,2021-06-20T16:56:12Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-864582674) at 2021-06-20 09:56 AM PDT -daniellex0,2021-06-21T21:10:32Z,- daniellex0 commented on pull request: [1798](https://github.com/hackforla/website/pull/1798#issuecomment-865346359) at 2021-06-21 02:10 PM PDT -daniellex0,2021-06-24T05:32:16Z,- daniellex0 opened issue: [1823](https://github.com/hackforla/website/issues/1823) at 2021-06-23 10:32 PM PDT -daniellex0,2021-06-24T05:32:37Z,- daniellex0 commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-867348107) at 2021-06-23 10:32 PM PDT -daniellex0,2021-06-24T06:55:53Z,- daniellex0 opened issue: [1824](https://github.com/hackforla/website/issues/1824) at 2021-06-23 11:55 PM PDT -daniellex0,2021-06-24T07:46:50Z,- daniellex0 opened issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-24 12:46 AM PDT -daniellex0,2021-06-24T21:48:29Z,- daniellex0 commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-867973581) at 2021-06-24 02:48 PM PDT -daniellex0,2021-06-27T02:23:44Z,- daniellex0 commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-869089433) at 2021-06-26 07:23 PM PDT -daniellex0,2021-06-27T02:46:56Z,- daniellex0 submitted pull request review: [1819](https://github.com/hackforla/website/pull/1819#pullrequestreview-693372676) at 2021-06-26 07:46 PM PDT -daniellex0,2021-06-27T02:54:07Z,- daniellex0 commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-869091599) at 2021-06-26 07:54 PM PDT -daniellex0,2021-06-27T03:33:36Z,- daniellex0 opened issue: [1835](https://github.com/hackforla/website/issues/1835) at 2021-06-26 08:33 PM PDT -daniellex0,2021-06-27T03:56:12Z,- daniellex0 opened issue: [1836](https://github.com/hackforla/website/issues/1836) at 2021-06-26 08:56 PM PDT -daniellex0,2021-06-27T15:49:52Z,- daniellex0 commented on issue: [1699](https://github.com/hackforla/website/issues/1699#issuecomment-869184579) at 2021-06-27 08:49 AM PDT -daniellex0,2021-06-27T15:50:00Z,- daniellex0 closed issue as completed: [1699](https://github.com/hackforla/website/issues/1699#event-4944067261) at 2021-06-27 08:50 AM PDT -daniellex0,2021-06-27T16:01:13Z,- daniellex0 commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-869186265) at 2021-06-27 09:01 AM PDT -daniellex0,2021-06-27T16:01:13Z,- daniellex0 closed issue as completed: [1622](https://github.com/hackforla/website/issues/1622#event-4944077792) at 2021-06-27 09:01 AM PDT -daniellex0,2021-06-27T16:14:59Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-869188331) at 2021-06-27 09:14 AM PDT -daniellex0,2021-06-27T16:24:57Z,- daniellex0 assigned to issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862677730) at 2021-06-27 09:24 AM PDT -daniellex0,2021-06-27T16:26:48Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-869189791) at 2021-06-27 09:26 AM PDT -daniellex0,2021-06-27T16:54:11Z,- daniellex0 opened issue: [1838](https://github.com/hackforla/website/issues/1838) at 2021-06-27 09:54 AM PDT -daniellex0,2021-06-28T02:40:44Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-869295629) at 2021-06-27 07:40 PM PDT -daniellex0,2021-06-28T18:08:39Z,- daniellex0 commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-869904741) at 2021-06-28 11:08 AM PDT -daniellex0,2021-06-29T00:02:34Z,- daniellex0 commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870125934) at 2021-06-28 05:02 PM PDT -daniellex0,2021-06-29T05:59:32Z,- daniellex0 commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-870261064) at 2021-06-28 10:59 PM PDT -daniellex0,2021-06-29T06:01:56Z,- daniellex0 commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870262161) at 2021-06-28 11:01 PM PDT -daniellex0,2021-06-29T08:42:13Z,- daniellex0 opened issue: [1856](https://github.com/hackforla/website/issues/1856) at 2021-06-29 01:42 AM PDT -daniellex0,2021-06-30T01:58:41Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-871039223) at 2021-06-29 06:58 PM PDT -daniellex0,2021-06-30T23:59:04Z,- daniellex0 commented on pull request: [1819](https://github.com/hackforla/website/pull/1819#issuecomment-871801685) at 2021-06-30 04:59 PM PDT -daniellex0,2021-07-01T00:22:32Z,- daniellex0 commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-871813193) at 2021-06-30 05:22 PM PDT -daniellex0,2021-07-01T00:27:24Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-871815274) at 2021-06-30 05:27 PM PDT -daniellex0,2021-07-01T08:43:19Z,- daniellex0 opened issue: [1871](https://github.com/hackforla/website/issues/1871) at 2021-07-01 01:43 AM PDT -daniellex0,2021-07-01T09:02:29Z,- daniellex0 opened issue: [1872](https://github.com/hackforla/website/issues/1872) at 2021-07-01 02:02 AM PDT -daniellex0,2021-07-01T09:06:30Z,- daniellex0 opened issue: [1873](https://github.com/hackforla/website/issues/1873) at 2021-07-01 02:06 AM PDT -daniellex0,2021-07-01T09:08:20Z,- daniellex0 opened issue: [1874](https://github.com/hackforla/website/issues/1874) at 2021-07-01 02:08 AM PDT -daniellex0,2021-07-01T09:10:16Z,- daniellex0 opened issue: [1875](https://github.com/hackforla/website/issues/1875) at 2021-07-01 02:10 AM PDT -daniellex0,2021-07-01T09:11:37Z,- daniellex0 opened issue: [1876](https://github.com/hackforla/website/issues/1876) at 2021-07-01 02:11 AM PDT -daniellex0,2021-07-01T09:45:32Z,- daniellex0 opened issue: [1877](https://github.com/hackforla/website/issues/1877) at 2021-07-01 02:45 AM PDT -daniellex0,2021-07-01T19:30:05Z,- daniellex0 opened issue: [1878](https://github.com/hackforla/website/issues/1878) at 2021-07-01 12:30 PM PDT -daniellex0,2021-07-01T21:09:52Z,- daniellex0 opened issue: [1879](https://github.com/hackforla/website/issues/1879) at 2021-07-01 02:09 PM PDT -daniellex0,2021-07-04T03:54:03Z,- daniellex0 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-873516206) at 2021-07-03 08:54 PM PDT -daniellex0,2021-07-04T04:02:47Z,- daniellex0 commented on pull request: [1861](https://github.com/hackforla/website/pull/1861#issuecomment-873516966) at 2021-07-03 09:02 PM PDT -daniellex0,2021-07-04T04:16:52Z,- daniellex0 opened issue: [1887](https://github.com/hackforla/website/issues/1887) at 2021-07-03 09:16 PM PDT -daniellex0,2021-07-04T04:42:39Z,- daniellex0 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873520726) at 2021-07-03 09:42 PM PDT -daniellex0,2021-07-04T16:36:19Z,- daniellex0 commented on issue: [1794](https://github.com/hackforla/website/issues/1794#issuecomment-873622581) at 2021-07-04 09:36 AM PDT -daniellex0,2021-07-04T16:45:06Z,- daniellex0 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-873623729) at 2021-07-04 09:45 AM PDT -daniellex0,2021-07-04T16:47:09Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-873624011) at 2021-07-04 09:47 AM PDT -daniellex0,2021-07-04T16:48:22Z,- daniellex0 commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-873624152) at 2021-07-04 09:48 AM PDT -daniellex0,2021-07-04T16:48:22Z,- daniellex0 closed issue as completed: [1698](https://github.com/hackforla/website/issues/1698#event-4975310166) at 2021-07-04 09:48 AM PDT -daniellex0,2021-07-06T18:18:38Z,- daniellex0 commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-874980997) at 2021-07-06 11:18 AM PDT -daniellex0,2021-07-06T23:06:40Z,- daniellex0 commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-875140056) at 2021-07-06 04:06 PM PDT -daniellex0,2021-07-07T01:42:19Z,- daniellex0 commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-875203026) at 2021-07-06 06:42 PM PDT -daniellex0,2021-07-07T01:48:42Z,- daniellex0 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-875205348) at 2021-07-06 06:48 PM PDT -daniellex0,2021-07-07T16:25:50Z,- daniellex0 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-875746761) at 2021-07-07 09:25 AM PDT -daniellex0,2021-07-09T15:50:37Z,- daniellex0 commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-877283135) at 2021-07-09 08:50 AM PDT -daniellex0,2021-07-09T17:55:14Z,- daniellex0 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-877358221) at 2021-07-09 10:55 AM PDT -daniellex0,2021-07-11T15:23:17Z,- daniellex0 commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-877820347) at 2021-07-11 08:23 AM PDT -daniellex0,2021-07-11T15:38:16Z,- daniellex0 commented on issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-877822174) at 2021-07-11 08:38 AM PDT -daniellex0,2021-07-11T15:54:59Z,- daniellex0 opened issue: [1919](https://github.com/hackforla/website/issues/1919) at 2021-07-11 08:54 AM PDT -daniellex0,2021-07-11T16:06:42Z,- daniellex0 opened issue: [1920](https://github.com/hackforla/website/issues/1920) at 2021-07-11 09:06 AM PDT -daniellex0,2021-07-11T16:14:11Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-877826771) at 2021-07-11 09:14 AM PDT -daniellex0,2021-07-13T18:21:01Z,- daniellex0 commented on issue: [1596](https://github.com/hackforla/website/issues/1596#issuecomment-879302707) at 2021-07-13 11:21 AM PDT -daniellex0,2021-07-14T02:31:29Z,- daniellex0 commented on issue: [1933](https://github.com/hackforla/website/issues/1933#issuecomment-879537727) at 2021-07-13 07:31 PM PDT -daniellex0,2021-07-14T09:25:50Z,- daniellex0 commented on issue: [1919](https://github.com/hackforla/website/issues/1919#issuecomment-879740450) at 2021-07-14 02:25 AM PDT -daniellex0,2021-07-14T09:36:33Z,- daniellex0 commented on issue: [1887](https://github.com/hackforla/website/issues/1887#issuecomment-879747283) at 2021-07-14 02:36 AM PDT -daniellex0,2021-07-14T09:51:05Z,- daniellex0 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-879756024) at 2021-07-14 02:51 AM PDT -daniellex0,2021-07-15T18:47:17Z,- daniellex0 opened issue: [1948](https://github.com/hackforla/website/issues/1948) at 2021-07-15 11:47 AM PDT -daniellex0,2021-07-16T05:53:26Z,- daniellex0 submitted pull request review: [1949](https://github.com/hackforla/website/pull/1949#pullrequestreview-708028601) at 2021-07-15 10:53 PM PDT -daniellex0,2021-07-18T16:20:47Z,- daniellex0 commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-882081638) at 2021-07-18 09:20 AM PDT -daniellex0,2021-07-20T16:44:39Z,- daniellex0 commented on pull request: [1912](https://github.com/hackforla/website/pull/1912#issuecomment-883539455) at 2021-07-20 09:44 AM PDT -daniellex0,2021-07-20T16:49:09Z,- daniellex0 commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-883542329) at 2021-07-20 09:49 AM PDT -daniellex0,2021-07-20T16:49:25Z,- daniellex0 commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-883542495) at 2021-07-20 09:49 AM PDT -daniellex0,2021-07-20T17:56:06Z,- daniellex0 commented on issue: [1323](https://github.com/hackforla/website/issues/1323#issuecomment-883584058) at 2021-07-20 10:56 AM PDT -daniellex0,2021-07-21T14:44:43Z,- daniellex0 opened issue: [1993](https://github.com/hackforla/website/issues/1993) at 2021-07-21 07:44 AM PDT -daniellex0,2021-07-21T15:06:01Z,- daniellex0 commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-884263865) at 2021-07-21 08:06 AM PDT -daniellex0,2021-07-21T15:08:15Z,- daniellex0 submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-711798565) at 2021-07-21 08:08 AM PDT -daniellex0,2021-07-21T23:33:59Z,- daniellex0 commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884563649) at 2021-07-21 04:33 PM PDT -daniellex0,2021-07-22T23:01:50Z,- daniellex0 closed issue as completed: [1416](https://github.com/hackforla/website/issues/1416#event-5058474448) at 2021-07-22 04:01 PM PDT -daniellex0,2021-07-22T23:17:54Z,- daniellex0 opened issue: [2000](https://github.com/hackforla/website/issues/2000) at 2021-07-22 04:17 PM PDT -daniellex0,2021-08-03T17:12:47Z,- daniellex0 commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892017989) at 2021-08-03 10:12 AM PDT -daniellex0,2021-08-03T18:00:41Z,- daniellex0 assigned to issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892048780) at 2021-08-03 11:00 AM PDT -daniellex0,2021-08-08T16:23:18Z,- daniellex0 closed issue as completed: [1027](https://github.com/hackforla/website/issues/1027#event-5126816212) at 2021-08-08 09:23 AM PDT -daniellex0,2021-08-27T17:51:48Z,- daniellex0 commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-907371652) at 2021-08-27 10:51 AM PDT -danielmshawn,5211,SKILLS ISSUE -danielmshawn,2023-08-15T02:42:56Z,- danielmshawn opened issue: [5211](https://github.com/hackforla/website/issues/5211) at 2023-08-14 07:42 PM PDT -danielmshawn,2023-08-15T02:43:56Z,- danielmshawn assigned to issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1678351151) at 2023-08-14 07:43 PM PDT -danielmshawn,2023-09-12T23:20:10Z,- danielmshawn assigned to issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1707233483) at 2023-09-12 04:20 PM PDT -danielmshawn,2023-09-14T07:21:20Z,- danielmshawn commented on issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1718900553) at 2023-09-14 12:21 AM PDT -danielmshawn,2023-09-15T00:46:48Z,- danielmshawn commented on issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1720333764) at 2023-09-14 05:46 PM PDT -danielmshawn,2023-09-15T01:18:53Z,- danielmshawn opened pull request: [5534](https://github.com/hackforla/website/pull/5534) at 2023-09-14 06:18 PM PDT -danielmshawn,2023-09-20T16:19:54Z,- danielmshawn commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1728060817) at 2023-09-20 09:19 AM PDT -danielmshawn,2023-09-22T18:17:50Z,- danielmshawn pull request closed w/o merging: [5534](https://github.com/hackforla/website/pull/5534#event-10450110329) at 2023-09-22 11:17 AM PDT -danielmshawn,2023-09-22T18:23:04Z,- danielmshawn commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1731864652) at 2023-09-22 11:23 AM PDT -danielmshawn,2023-09-23T02:27:25Z,- danielmshawn opened pull request: [5572](https://github.com/hackforla/website/pull/5572) at 2023-09-22 07:27 PM PDT -danielmshawn,2023-10-03T18:26:23Z,- danielmshawn commented on pull request: [5572](https://github.com/hackforla/website/pull/5572#issuecomment-1745502476) at 2023-10-03 11:26 AM PDT -danielmshawn,2023-10-03T18:34:31Z,- danielmshawn pull request merged: [5572](https://github.com/hackforla/website/pull/5572#event-10541998639) at 2023-10-03 11:34 AM PDT -danielridgebot,2024-05-14T18:50:25Z,- danielridgebot commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2110916198) at 2024-05-14 11:50 AM PDT -dannycpham,2023-07-03T06:34:55Z,- dannycpham opened issue: [4909](https://github.com/hackforla/website/issues/4909) at 2023-07-02 11:34 PM PDT -dannycpham,2023-09-05T18:19:45Z,- dannycpham commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1707100068) at 2023-09-05 11:19 AM PDT -dannycpham,2023-09-19T01:12:10Z,- dannycpham commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1724686914) at 2023-09-18 06:12 PM PDT -dannycpham,2024-02-14T03:02:58Z,- dannycpham commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1943013857) at 2024-02-13 07:02 PM PST -dantor09,5727,SKILLS ISSUE -dantor09,2023-10-17T03:18:22Z,- dantor09 opened issue: [5727](https://github.com/hackforla/website/issues/5727) at 2023-10-16 08:18 PM PDT -dantor09,2023-10-17T03:18:22Z,- dantor09 assigned to issue: [5727](https://github.com/hackforla/website/issues/5727) at 2023-10-16 08:18 PM PDT -dantor09,2023-10-25T05:12:18Z,- dantor09 commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1778525381) at 2023-10-24 10:12 PM PDT -dantor09,2023-11-19T17:46:15Z,- dantor09 commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1817928663) at 2023-11-19 09:46 AM PST -dantor09,2023-11-26T04:12:31Z,- dantor09 commented on issue: [5727](https://github.com/hackforla/website/issues/5727#issuecomment-1826484377) at 2023-11-25 08:12 PM PST -danvgar,6032,SKILLS ISSUE -danvgar,2024-01-03T03:47:59Z,- danvgar opened issue: [6032](https://github.com/hackforla/website/issues/6032) at 2024-01-02 07:47 PM PST -danvgar,2024-01-03T03:48:02Z,- danvgar assigned to issue: [6032](https://github.com/hackforla/website/issues/6032) at 2024-01-02 07:48 PM PST -danvgar,2024-01-03T05:04:28Z,- danvgar opened issue: [6041](https://github.com/hackforla/website/issues/6041) at 2024-01-02 09:04 PM PST -danvgar,2024-02-01T23:48:03Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1922502121) at 2024-02-01 03:48 PM PST -danvgar,2024-02-02T00:53:24Z,- danvgar assigned to issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1752132456) at 2024-02-01 04:53 PM PST -danvgar,2024-02-02T01:19:14Z,- danvgar commented on issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1922615125) at 2024-02-01 05:19 PM PST -danvgar,2024-02-02T01:24:42Z,- danvgar assigned to issue: [6046](https://github.com/hackforla/website/issues/6046#issuecomment-1874998247) at 2024-02-01 05:24 PM PST -danvgar,2024-02-02T01:54:50Z,- danvgar opened pull request: [6207](https://github.com/hackforla/website/pull/6207) at 2024-02-01 05:54 PM PST -danvgar,2024-02-02T01:57:42Z,- danvgar commented on issue: [6046](https://github.com/hackforla/website/issues/6046#issuecomment-1922648406) at 2024-02-01 05:57 PM PST -danvgar,2024-02-02T01:59:43Z,- danvgar assigned to issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922232023) at 2024-02-01 05:59 PM PST -danvgar,2024-02-02T02:09:56Z,- danvgar opened issue: [6208](https://github.com/hackforla/website/issues/6208) at 2024-02-01 06:09 PM PST -danvgar,2024-02-02T02:23:44Z,- danvgar opened issue: [6209](https://github.com/hackforla/website/issues/6209) at 2024-02-01 06:23 PM PST -danvgar,2024-02-02T02:28:37Z,- danvgar opened pull request: [6210](https://github.com/hackforla/website/pull/6210) at 2024-02-01 06:28 PM PST -danvgar,2024-02-02T02:30:46Z,- danvgar commented on issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922678786) at 2024-02-01 06:30 PM PST -danvgar,2024-02-02T05:09:30Z,- danvgar commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922837668) at 2024-02-01 09:09 PM PST -danvgar,2024-02-02T05:19:41Z,- danvgar commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922849118) at 2024-02-01 09:19 PM PST -danvgar,2024-02-03T19:10:51Z,- danvgar pull request merged: [6207](https://github.com/hackforla/website/pull/6207#event-11693315163) at 2024-02-03 11:10 AM PST -danvgar,2024-02-03T19:23:20Z,- danvgar pull request merged: [6210](https://github.com/hackforla/website/pull/6210#event-11693334662) at 2024-02-03 11:23 AM PST -danvgar,2024-02-03T21:43:33Z,- danvgar commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1925462968) at 2024-02-03 01:43 PM PST -danvgar,2024-02-09T03:35:54Z,- danvgar commented on issue: [5679](https://github.com/hackforla/website/issues/5679#issuecomment-1935286195) at 2024-02-08 07:35 PM PST -danvgar,2024-02-09T03:57:17Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1935297687) at 2024-02-08 07:57 PM PST -danvgar,2024-02-09T07:17:54Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1935440538) at 2024-02-08 11:17 PM PST -danvgar,2024-02-11T22:58:13Z,- danvgar commented on pull request: [6276](https://github.com/hackforla/website/pull/6276#issuecomment-1937903306) at 2024-02-11 02:58 PM PST -danvgar,2024-02-14T03:17:31Z,- danvgar assigned to issue: [5988](https://github.com/hackforla/website/issues/5988) at 2024-02-13 07:17 PM PST -danvgar,2024-02-14T03:18:07Z,- danvgar commented on issue: [5988](https://github.com/hackforla/website/issues/5988#issuecomment-1943023050) at 2024-02-13 07:18 PM PST -danvgar,2024-02-14T03:18:39Z,- danvgar commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1943023385) at 2024-02-13 07:18 PM PST -danvgar,2024-02-16T21:17:12Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1949347440) at 2024-02-16 01:17 PM PST -danvgar,2024-02-16T21:20:15Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1949350481) at 2024-02-16 01:20 PM PST -danvgar,2024-02-16T21:49:33Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1949382554) at 2024-02-16 01:49 PM PST -danvgar,2024-02-19T01:41:45Z,- danvgar commented on issue: [5988](https://github.com/hackforla/website/issues/5988#issuecomment-1951552157) at 2024-02-18 05:41 PM PST -danvgar,2024-02-19T02:07:24Z,- danvgar opened issue: [6319](https://github.com/hackforla/website/issues/6319) at 2024-02-18 06:07 PM PST -danvgar,2024-02-19T02:23:41Z,- danvgar submitted pull request review: [6302](https://github.com/hackforla/website/pull/6302#pullrequestreview-1887448001) at 2024-02-18 06:23 PM PST -danvgar,2024-02-19T02:27:58Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1951587395) at 2024-02-18 06:27 PM PST -danvgar,2024-02-20T01:32:09Z,- danvgar assigned to issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1949350481) at 2024-02-19 05:32 PM PST -danvgar,2024-02-20T01:33:13Z,- danvgar unassigned from issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1953349659) at 2024-02-19 05:33 PM PST -danvgar,2024-02-20T01:38:42Z,- danvgar assigned to issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1953353185) at 2024-02-19 05:38 PM PST -danvgar,2024-02-20T01:45:15Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1953358107) at 2024-02-19 05:45 PM PST -danvgar,2024-02-28T03:08:01Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1968109305) at 2024-02-27 07:08 PM PST -danvgar,2024-02-28T03:37:34Z,- danvgar commented on pull request: [6385](https://github.com/hackforla/website/pull/6385#issuecomment-1968156103) at 2024-02-27 07:37 PM PST -danvgar,2024-02-28T22:22:47Z,- danvgar submitted pull request review: [6385](https://github.com/hackforla/website/pull/6385#pullrequestreview-1907542220) at 2024-02-28 02:22 PM PST -danvgar,2024-02-29T01:58:13Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1970260326) at 2024-02-28 05:58 PM PST -danvgar,2024-02-29T02:02:35Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1970264129) at 2024-02-28 06:02 PM PST -danvgar,2024-02-29T02:08:22Z,- danvgar assigned to issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1953583231) at 2024-02-28 06:08 PM PST -danvgar,2024-02-29T02:09:00Z,- danvgar commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1970269137) at 2024-02-28 06:09 PM PST -danvgar,2024-02-29T05:26:21Z,- danvgar commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1970431151) at 2024-02-28 09:26 PM PST -danvgar,2024-03-06T00:08:40Z,- danvgar commented on pull request: [6436](https://github.com/hackforla/website/pull/6436#issuecomment-1979844961) at 2024-03-05 04:08 PM PST -danvgar,2024-03-07T00:40:44Z,- danvgar submitted pull request review: [6436](https://github.com/hackforla/website/pull/6436#pullrequestreview-1921103731) at 2024-03-06 04:40 PM PST -danvgar,2024-03-11T00:51:16Z,- danvgar commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1987446509) at 2024-03-10 05:51 PM PDT -danvgar,2024-03-11T01:03:28Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1987455348) at 2024-03-10 06:03 PM PDT -danvgar,2024-03-11T03:50:07Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987588327) at 2024-03-10 08:50 PM PDT -danvgar,2024-03-11T03:51:43Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987589379) at 2024-03-10 08:51 PM PDT -danvgar,2024-03-11T03:55:35Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987591964) at 2024-03-10 08:55 PM PDT -danvgar,2024-03-11T03:57:00Z,- danvgar assigned to issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987591964) at 2024-03-10 08:57 PM PDT -danvgar,2024-03-11T04:15:34Z,- danvgar opened issue: [6449](https://github.com/hackforla/website/issues/6449) at 2024-03-10 09:15 PM PDT -danvgar,2024-03-11T04:18:08Z,- danvgar commented on issue: [6449](https://github.com/hackforla/website/issues/6449#issuecomment-1987607046) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:18:12Z,- danvgar closed issue as completed: [6449](https://github.com/hackforla/website/issues/6449#event-12067950745) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:18:19Z,- danvgar closed issue as not planned: [6449](https://github.com/hackforla/website/issues/6449#event-12067951276) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:18:32Z,- danvgar opened issue: [6450](https://github.com/hackforla/website/issues/6450) at 2024-03-10 09:18 PM PDT -danvgar,2024-03-11T04:28:44Z,- danvgar commented on issue: [6449](https://github.com/hackforla/website/issues/6449#issuecomment-1987614646) at 2024-03-10 09:28 PM PDT -danvgar,2024-03-11T04:42:41Z,- danvgar opened issue: [6451](https://github.com/hackforla/website/issues/6451) at 2024-03-10 09:42 PM PDT -danvgar,2024-03-11T04:45:14Z,- danvgar opened issue: [6452](https://github.com/hackforla/website/issues/6452) at 2024-03-10 09:45 PM PDT -danvgar,2024-03-11T04:47:09Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-1987627879) at 2024-03-10 09:47 PM PDT -danvgar,2024-03-11T22:23:34Z,- danvgar commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-1989550005) at 2024-03-11 03:23 PM PDT -danvgar,2024-03-14T06:43:06Z,- danvgar opened pull request: [6462](https://github.com/hackforla/website/pull/6462) at 2024-03-13 11:43 PM PDT -danvgar,2024-03-14T06:58:46Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-1996677188) at 2024-03-13 11:58 PM PDT -danvgar,2024-03-17T05:43:38Z,- danvgar pull request merged: [6462](https://github.com/hackforla/website/pull/6462#event-12141991474) at 2024-03-16 10:43 PM PDT -danvgar,2024-03-19T16:40:00Z,- danvgar commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2007653130) at 2024-03-19 09:40 AM PDT -danvgar,2024-03-24T01:29:32Z,- danvgar submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1956457817) at 2024-03-23 06:29 PM PDT -danvgar,2024-03-25T21:58:05Z,- danvgar commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-2018991241) at 2024-03-25 02:58 PM PDT -danvgar,2024-03-26T00:40:05Z,- danvgar commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2019182348) at 2024-03-25 05:40 PM PDT -danvgar,2024-03-26T01:04:13Z,- danvgar submitted pull request review: [6467](https://github.com/hackforla/website/pull/6467#pullrequestreview-1959103784) at 2024-03-25 06:04 PM PDT -danvgar,2024-03-26T01:37:38Z,- danvgar assigned to issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2019228385) at 2024-03-25 06:37 PM PDT -danvgar,2024-03-27T00:11:29Z,- danvgar commented on issue: [6452](https://github.com/hackforla/website/issues/6452#issuecomment-2021690622) at 2024-03-26 05:11 PM PDT -danvgar,2024-03-27T00:14:33Z,- danvgar commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2021694011) at 2024-03-26 05:14 PM PDT -danvgar,2024-04-02T02:05:42Z,- danvgar assigned to issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1960595575) at 2024-04-01 07:05 PM PDT -danvgar,2024-04-02T23:55:21Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2033297090) at 2024-04-02 04:55 PM PDT -danvgar,2024-04-05T23:31:32Z,- danvgar commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2040763128) at 2024-04-05 04:31 PM PDT -danvgar,2024-04-05T23:33:41Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2040764363) at 2024-04-05 04:33 PM PDT -danvgar,2024-04-06T00:26:29Z,- danvgar opened issue: [6581](https://github.com/hackforla/website/issues/6581) at 2024-04-05 05:26 PM PDT -danvgar,2024-04-06T00:39:41Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2040828083) at 2024-04-05 05:39 PM PDT -danvgar,2024-04-06T00:44:06Z,- danvgar opened issue: [6582](https://github.com/hackforla/website/issues/6582) at 2024-04-05 05:44 PM PDT -danvgar,2024-04-06T00:49:31Z,- danvgar commented on issue: [6582](https://github.com/hackforla/website/issues/6582#issuecomment-2040833387) at 2024-04-05 05:49 PM PDT -danvgar,2024-04-06T00:53:51Z,- danvgar commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-2040834615) at 2024-04-05 05:53 PM PDT -danvgar,2024-04-06T01:33:18Z,- danvgar commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2040846888) at 2024-04-05 06:33 PM PDT -danvgar,2024-04-06T01:44:26Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2040850071) at 2024-04-05 06:44 PM PDT -danvgar,2024-04-26T08:38:55Z,- danvgar commented on issue: [6032](https://github.com/hackforla/website/issues/6032#issuecomment-2078915416) at 2024-04-26 01:38 AM PDT -danvgar,2024-04-26T20:44:51Z,- danvgar unassigned from issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2060724382) at 2024-04-26 01:44 PM PDT -danvgar,2024-06-11T05:33:35Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2159829637) at 2024-06-10 10:33 PM PDT -danvgar,2024-06-14T07:53:42Z,- danvgar commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2167451616) at 2024-06-14 12:53 AM PDT -danvgar,2024-09-02T21:54:54Z,- danvgar assigned to issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2305910403) at 2024-09-02 02:54 PM PDT -danvgar,2024-09-02T21:55:10Z,- danvgar unassigned from issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2325329602) at 2024-09-02 02:55 PM PDT -danvgar,2024-09-02T22:02:13Z,- danvgar opened issue: [7378](https://github.com/hackforla/website/issues/7378) at 2024-09-02 03:02 PM PDT -danvgar,2024-09-16T18:42:21Z,- danvgar commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2353652068) at 2024-09-16 11:42 AM PDT -danyc23,2021-01-24T19:39:03Z,- danyc23 assigned to issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-24 11:39 AM PST -danyc23,2021-01-29T02:39:11Z,- danyc23 opened pull request: [974](https://github.com/hackforla/website/pull/974) at 2021-01-28 06:39 PM PST -danyc23,2021-01-29T02:39:57Z,- danyc23 pull request merged: [974](https://github.com/hackforla/website/pull/974#event-4264120633) at 2021-01-28 06:39 PM PST -danyc23,2021-01-29T03:21:07Z,- danyc23 opened pull request: [975](https://github.com/hackforla/website/pull/975) at 2021-01-28 07:21 PM PST -danyc23,2021-01-29T03:31:09Z,- danyc23 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-769550905) at 2021-01-28 07:31 PM PST -danyc23,2021-01-31T19:28:54Z,- danyc23 assigned to issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-31 11:28 AM PST -danyc23,2021-02-01T01:19:15Z,- danyc23 pull request merged: [975](https://github.com/hackforla/website/pull/975#event-4271052966) at 2021-01-31 05:19 PM PST -danyc23,2021-02-05T01:26:43Z,- danyc23 commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-773716963) at 2021-02-04 05:26 PM PST -danyc23,2021-02-05T01:27:56Z,- danyc23 commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-773717342) at 2021-02-04 05:27 PM PST -danyc23,2021-02-07T18:47:31Z,- danyc23 commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-774731193) at 2021-02-07 10:47 AM PST -danyc23,2021-02-07T19:16:38Z,- danyc23 opened pull request: [1009](https://github.com/hackforla/website/pull/1009) at 2021-02-07 11:16 AM PST -danyc23,2021-02-07T19:46:37Z,- danyc23 submitted pull request review: [1008](https://github.com/hackforla/website/pull/1008#pullrequestreview-585061147) at 2021-02-07 11:46 AM PST -danyc23,2021-02-07T19:52:58Z,- danyc23 commented on pull request: [1008](https://github.com/hackforla/website/pull/1008#issuecomment-774747575) at 2021-02-07 11:52 AM PST -danyc23,2021-02-07T19:53:04Z,- danyc23 closed issue by PR 1008: [989](https://github.com/hackforla/website/issues/989#event-4300608360) at 2021-02-07 11:53 AM PST -danyc23,2021-02-08T20:08:47Z,- danyc23 commented on pull request: [1009](https://github.com/hackforla/website/pull/1009#issuecomment-775411781) at 2021-02-08 12:08 PM PST -danyc23,2021-02-09T01:19:34Z,- danyc23 commented on pull request: [1009](https://github.com/hackforla/website/pull/1009#issuecomment-775580944) at 2021-02-08 05:19 PM PST -danyc23,2021-02-10T03:08:39Z,- danyc23 pull request closed w/o merging: [1009](https://github.com/hackforla/website/pull/1009#event-4312575448) at 2021-02-09 07:08 PM PST -danyc23,2021-02-10T04:21:49Z,- danyc23 assigned to issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-775180799) at 2021-02-09 08:21 PM PST -danyc23,2021-02-10T05:14:36Z,- danyc23 opened pull request: [1032](https://github.com/hackforla/website/pull/1032) at 2021-02-09 09:14 PM PST -danyc23,2021-02-10T17:11:57Z,- danyc23 pull request merged: [1032](https://github.com/hackforla/website/pull/1032#event-4315968391) at 2021-02-10 09:11 AM PST -danyc23,2021-02-21T19:38:15Z,- danyc23 commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-782913114) at 2021-02-21 11:38 AM PST -danyc23,2021-02-21T21:46:01Z,- danyc23 opened pull request: [1087](https://github.com/hackforla/website/pull/1087) at 2021-02-21 01:46 PM PST -danyc23,2021-02-22T18:01:49Z,- danyc23 pull request merged: [1087](https://github.com/hackforla/website/pull/1087#event-4361138038) at 2021-02-22 10:01 AM PST -danyc23,2021-02-24T03:59:47Z,- danyc23 assigned to issue: [1064](https://github.com/hackforla/website/issues/1064) at 2021-02-23 07:59 PM PST -danyc23,2021-02-28T18:12:31Z,- danyc23 commented on issue: [1064](https://github.com/hackforla/website/issues/1064#issuecomment-787495249) at 2021-02-28 10:12 AM PST -danyc23,2021-03-06T03:48:15Z,- danyc23 commented on issue: [1064](https://github.com/hackforla/website/issues/1064#issuecomment-791858579) at 2021-03-05 07:48 PM PST -danyc23,2021-03-06T04:16:01Z,- danyc23 opened pull request: [1162](https://github.com/hackforla/website/pull/1162) at 2021-03-05 08:16 PM PST -danyc23,2021-03-06T19:50:42Z,- danyc23 pull request merged: [1162](https://github.com/hackforla/website/pull/1162#event-4417228345) at 2021-03-06 11:50 AM PST -danyc23,2021-03-07T18:44:19Z,- danyc23 assigned to issue: [1067](https://github.com/hackforla/website/issues/1067) at 2021-03-07 10:44 AM PST -danyc23,2021-03-17T02:24:34Z,- danyc23 commented on issue: [1067](https://github.com/hackforla/website/issues/1067#issuecomment-800743034) at 2021-03-16 07:24 PM PDT -danyc23,2021-03-20T01:01:53Z,- danyc23 opened pull request: [1275](https://github.com/hackforla/website/pull/1275) at 2021-03-19 06:01 PM PDT -danyc23,2021-03-20T23:55:17Z,- danyc23 pull request merged: [1275](https://github.com/hackforla/website/pull/1275#event-4486130167) at 2021-03-20 04:55 PM PDT -danyc23,2021-03-23T17:46:24Z,- danyc23 assigned to issue: [1313](https://github.com/hackforla/website/issues/1313) at 2021-03-23 10:46 AM PDT -danyc23,2021-03-29T22:02:47Z,- danyc23 commented on pull request: [1327](https://github.com/hackforla/website/pull/1327#issuecomment-809742987) at 2021-03-29 03:02 PM PDT -danyc23,2021-03-31T21:22:03Z,- danyc23 commented on pull request: [1327](https://github.com/hackforla/website/pull/1327#issuecomment-811474165) at 2021-03-31 02:22 PM PDT -danyc23,2021-03-31T21:22:20Z,- danyc23 closed issue by PR 1327: [1063](https://github.com/hackforla/website/issues/1063#event-4537473229) at 2021-03-31 02:22 PM PDT -danyc23,2021-04-04T16:53:58Z,- danyc23 commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-813064338) at 2021-04-04 09:53 AM PDT -danyc23,2021-04-05T18:53:03Z,- danyc23 commented on pull request: [1360](https://github.com/hackforla/website/pull/1360#issuecomment-813574181) at 2021-04-05 11:53 AM PDT -danyc23,2021-04-05T18:53:15Z,- danyc23 closed issue by PR 1360: [1251](https://github.com/hackforla/website/issues/1251#event-4552922117) at 2021-04-05 11:53 AM PDT -danyc23,2021-04-05T19:02:07Z,- danyc23 commented on pull request: [1359](https://github.com/hackforla/website/pull/1359#issuecomment-813579205) at 2021-04-05 12:02 PM PDT -danyc23,2021-04-05T19:02:17Z,- danyc23 closed issue by PR 1359: [1252](https://github.com/hackforla/website/issues/1252#event-4552956227) at 2021-04-05 12:02 PM PDT -danyc23,2021-04-05T19:06:55Z,- danyc23 commented on pull request: [1358](https://github.com/hackforla/website/pull/1358#issuecomment-813582306) at 2021-04-05 12:06 PM PDT -danyc23,2021-04-05T19:06:59Z,- danyc23 closed issue by PR 1358: [1253](https://github.com/hackforla/website/issues/1253#event-4552973736) at 2021-04-05 12:06 PM PDT -danyc23,2021-04-14T00:21:39Z,- danyc23 assigned to issue: [1392](https://github.com/hackforla/website/issues/1392) at 2021-04-13 05:21 PM PDT -danyc23,2021-04-14T00:22:16Z,- danyc23 unassigned from issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-818409060) at 2021-04-13 05:22 PM PDT -danyc23,2021-04-14T19:22:27Z,- danyc23 commented on issue: [1392](https://github.com/hackforla/website/issues/1392#issuecomment-819771868) at 2021-04-14 12:22 PM PDT -danyc23,2021-04-14T19:55:01Z,- danyc23 opened pull request: [1405](https://github.com/hackforla/website/pull/1405) at 2021-04-14 12:55 PM PDT -danyc23,2021-04-17T03:14:48Z,- danyc23 commented on pull request: [1405](https://github.com/hackforla/website/pull/1405#issuecomment-821756937) at 2021-04-16 08:14 PM PDT -danyc23,2021-04-17T03:27:31Z,- danyc23 submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-638193930) at 2021-04-16 08:27 PM PDT -danyc23,2021-04-18T16:25:18Z,- danyc23 pull request merged: [1405](https://github.com/hackforla/website/pull/1405#event-4609258650) at 2021-04-18 09:25 AM PDT -danyc23,2021-04-21T03:50:30Z,- danyc23 assigned to issue: [1426](https://github.com/hackforla/website/issues/1426) at 2021-04-20 08:50 PM PDT -danyc23,2021-04-25T17:12:48Z,- danyc23 commented on issue: [1426](https://github.com/hackforla/website/issues/1426#issuecomment-826357174) at 2021-04-25 10:12 AM PDT -danyc23,2021-04-29T19:00:53Z,- danyc23 opened pull request: [1492](https://github.com/hackforla/website/pull/1492) at 2021-04-29 12:00 PM PDT -danyc23,2021-04-30T18:34:11Z,- danyc23 commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-830284418) at 2021-04-30 11:34 AM PDT -danyc23,2021-05-07T02:28:30Z,- danyc23 commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-834013217) at 2021-05-06 07:28 PM PDT -danyc23,2021-05-07T20:14:59Z,- danyc23 pull request merged: [1492](https://github.com/hackforla/website/pull/1492#event-4704437237) at 2021-05-07 01:14 PM PDT -danyc23,2021-05-12T02:53:58Z,- danyc23 assigned to issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-05-11 07:53 PM PDT -danyc23,2021-05-17T22:18:59Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-842678878) at 2021-05-17 03:18 PM PDT -danyc23,2021-05-29T03:13:21Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-850759797) at 2021-05-28 08:13 PM PDT -danyc23,2021-06-13T19:39:15Z,- danyc23 unassigned from issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-860259483) at 2021-06-13 12:39 PM PDT -danyc23,2021-07-19T17:50:01Z,- danyc23 assigned to issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-882694329) at 2021-07-19 10:50 AM PDT -danyc23,2021-07-20T21:15:38Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-883713645) at 2021-07-20 02:15 PM PDT -danyc23,2021-07-21T19:38:28Z,- danyc23 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-884446284) at 2021-07-21 12:38 PM PDT -daras-cu,6948,SKILLS ISSUE -daras-cu,2024-06-04T02:56:12Z,- daras-cu opened issue: [6948](https://github.com/hackforla/website/issues/6948) at 2024-06-03 07:56 PM PDT -daras-cu,2024-06-04T02:56:31Z,- daras-cu assigned to issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2146474634) at 2024-06-03 07:56 PM PDT -daras-cu,2024-06-10T16:37:38Z,- daras-cu assigned to issue: [6936](https://github.com/hackforla/website/issues/6936) at 2024-06-10 09:37 AM PDT -daras-cu,2024-06-10T16:45:15Z,- daras-cu commented on issue: [6936](https://github.com/hackforla/website/issues/6936#issuecomment-2158850660) at 2024-06-10 09:45 AM PDT -daras-cu,2024-06-10T16:47:46Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2158855142) at 2024-06-10 09:47 AM PDT -daras-cu,2024-06-10T20:46:36Z,- daras-cu opened pull request: [6983](https://github.com/hackforla/website/pull/6983) at 2024-06-10 01:46 PM PDT -daras-cu,2024-06-11T18:02:54Z,- daras-cu pull request merged: [6983](https://github.com/hackforla/website/pull/6983#event-13120940795) at 2024-06-11 11:02 AM PDT -daras-cu,2024-06-17T18:00:59Z,- daras-cu assigned to issue: [6939](https://github.com/hackforla/website/issues/6939) at 2024-06-17 11:00 AM PDT -daras-cu,2024-06-17T18:28:22Z,- daras-cu commented on issue: [6939](https://github.com/hackforla/website/issues/6939#issuecomment-2174108189) at 2024-06-17 11:28 AM PDT -daras-cu,2024-06-17T18:53:35Z,- daras-cu opened pull request: [7016](https://github.com/hackforla/website/pull/7016) at 2024-06-17 11:53 AM PDT -daras-cu,2024-06-17T18:59:07Z,- daras-cu commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2174214404) at 2024-06-17 11:59 AM PDT -daras-cu,2024-06-17T19:29:10Z,- daras-cu submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2123751001) at 2024-06-17 12:29 PM PDT -daras-cu,2024-06-17T20:29:33Z,- daras-cu submitted pull request review: [7012](https://github.com/hackforla/website/pull/7012#pullrequestreview-2123848422) at 2024-06-17 01:29 PM PDT -daras-cu,2024-06-18T02:43:29Z,- daras-cu submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2124310068) at 2024-06-17 07:43 PM PDT -daras-cu,2024-06-20T18:44:15Z,- daras-cu pull request merged: [7016](https://github.com/hackforla/website/pull/7016#event-13233151927) at 2024-06-20 11:44 AM PDT -daras-cu,2024-07-03T18:56:13Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2206990707) at 2024-07-03 11:56 AM PDT -daras-cu,2024-07-03T18:57:22Z,- daras-cu closed issue as completed: [6948](https://github.com/hackforla/website/issues/6948#event-13384806076) at 2024-07-03 11:57 AM PDT -daras-cu,2024-07-13T01:02:31Z,- daras-cu assigned to issue: [7101](https://github.com/hackforla/website/issues/7101) at 2024-07-12 06:02 PM PDT -daras-cu,2024-07-13T01:04:08Z,- daras-cu commented on issue: [7101](https://github.com/hackforla/website/issues/7101#issuecomment-2226639191) at 2024-07-12 06:04 PM PDT -daras-cu,2024-07-13T22:31:17Z,- daras-cu opened pull request: [7106](https://github.com/hackforla/website/pull/7106) at 2024-07-13 03:31 PM PDT -daras-cu,2024-07-14T20:47:10Z,- daras-cu pull request merged: [7106](https://github.com/hackforla/website/pull/7106#event-13498710519) at 2024-07-14 01:47 PM PDT -daras-cu,2024-07-16T02:33:08Z,- daras-cu submitted pull request review: [7121](https://github.com/hackforla/website/pull/7121#pullrequestreview-2179084135) at 2024-07-15 07:33 PM PDT -daras-cu,2024-07-21T17:12:54Z,- daras-cu assigned to issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2227786076) at 2024-07-21 10:12 AM PDT -daras-cu,2024-07-21T17:13:47Z,- daras-cu commented on issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2241716535) at 2024-07-21 10:13 AM PDT -daras-cu,2024-07-21T20:24:44Z,- daras-cu commented on issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2241764156) at 2024-07-21 01:24 PM PDT -daras-cu,2024-07-21T20:36:53Z,- daras-cu opened pull request: [7131](https://github.com/hackforla/website/pull/7131) at 2024-07-21 01:36 PM PDT -daras-cu,2024-07-21T20:56:05Z,- daras-cu submitted pull request review: [7128](https://github.com/hackforla/website/pull/7128#pullrequestreview-2190397887) at 2024-07-21 01:56 PM PDT -daras-cu,2024-07-21T21:03:25Z,- daras-cu submitted pull request review: [7129](https://github.com/hackforla/website/pull/7129#pullrequestreview-2190398649) at 2024-07-21 02:03 PM PDT -daras-cu,2024-07-22T04:34:50Z,- daras-cu submitted pull request review: [7128](https://github.com/hackforla/website/pull/7128#pullrequestreview-2190594712) at 2024-07-21 09:34 PM PDT -daras-cu,2024-07-29T22:13:46Z,- daras-cu submitted pull request review: [7136](https://github.com/hackforla/website/pull/7136#pullrequestreview-2206189502) at 2024-07-29 03:13 PM PDT -daras-cu,2024-07-29T22:25:36Z,- daras-cu submitted pull request review: [7141](https://github.com/hackforla/website/pull/7141#pullrequestreview-2206200819) at 2024-07-29 03:25 PM PDT -daras-cu,2024-07-29T22:43:18Z,- daras-cu submitted pull request review: [7150](https://github.com/hackforla/website/pull/7150#pullrequestreview-2206225486) at 2024-07-29 03:43 PM PDT -daras-cu,2024-07-31T21:25:00Z,- daras-cu pull request merged: [7131](https://github.com/hackforla/website/pull/7131#event-13716482905) at 2024-07-31 02:25 PM PDT -daras-cu,2024-07-31T23:09:30Z,- daras-cu submitted pull request review: [7150](https://github.com/hackforla/website/pull/7150#pullrequestreview-2211277031) at 2024-07-31 04:09 PM PDT -daras-cu,2024-07-31T23:27:20Z,- daras-cu assigned to issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2229109182) at 2024-07-31 04:27 PM PDT -daras-cu,2024-07-31T23:28:58Z,- daras-cu commented on issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2261653827) at 2024-07-31 04:28 PM PDT -daras-cu,2024-08-10T21:11:20Z,- daras-cu opened pull request: [7262](https://github.com/hackforla/website/pull/7262) at 2024-08-10 02:11 PM PDT -daras-cu,2024-08-10T21:40:26Z,- daras-cu commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2282283792) at 2024-08-10 02:40 PM PDT -daras-cu,2024-08-10T22:25:01Z,- daras-cu submitted pull request review: [7228](https://github.com/hackforla/website/pull/7228#pullrequestreview-2231711921) at 2024-08-10 03:25 PM PDT -daras-cu,2024-08-10T23:00:29Z,- daras-cu submitted pull request review: [7255](https://github.com/hackforla/website/pull/7255#pullrequestreview-2231714195) at 2024-08-10 04:00 PM PDT -daras-cu,2024-08-11T17:56:08Z,- daras-cu commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2282839310) at 2024-08-11 10:56 AM PDT -daras-cu,2024-08-11T17:57:08Z,- daras-cu commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2282839573) at 2024-08-11 10:57 AM PDT -daras-cu,2024-08-11T18:21:14Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846116) at 2024-08-11 11:21 AM PDT -daras-cu,2024-08-11T18:21:49Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846262) at 2024-08-11 11:21 AM PDT -daras-cu,2024-08-11T18:23:29Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846620) at 2024-08-11 11:23 AM PDT -daras-cu,2024-08-11T18:24:19Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282846800) at 2024-08-11 11:24 AM PDT -daras-cu,2024-08-11T18:25:15Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282847007) at 2024-08-11 11:25 AM PDT -daras-cu,2024-08-11T18:27:12Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282847490) at 2024-08-11 11:27 AM PDT -daras-cu,2024-08-11T19:50:12Z,- daras-cu submitted pull request review: [7264](https://github.com/hackforla/website/pull/7264#pullrequestreview-2231880333) at 2024-08-11 12:50 PM PDT -daras-cu,2024-08-11T20:23:44Z,- daras-cu submitted pull request review: [7261](https://github.com/hackforla/website/pull/7261#pullrequestreview-2231885031) at 2024-08-11 01:23 PM PDT -daras-cu,2024-08-11T20:25:18Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282878893) at 2024-08-11 01:25 PM PDT -daras-cu,2024-08-11T20:27:41Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282879506) at 2024-08-11 01:27 PM PDT -daras-cu,2024-08-11T20:44:40Z,- daras-cu submitted pull request review: [7234](https://github.com/hackforla/website/pull/7234#pullrequestreview-2231887547) at 2024-08-11 01:44 PM PDT -daras-cu,2024-08-11T20:48:08Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282885244) at 2024-08-11 01:48 PM PDT -daras-cu,2024-08-11T20:52:07Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282886117) at 2024-08-11 01:52 PM PDT -daras-cu,2024-08-11T20:53:45Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282886564) at 2024-08-11 01:53 PM PDT -daras-cu,2024-08-11T20:55:27Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282886976) at 2024-08-11 01:55 PM PDT -daras-cu,2024-08-11T20:56:01Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282887116) at 2024-08-11 01:56 PM PDT -daras-cu,2024-08-11T20:57:49Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282887482) at 2024-08-11 01:57 PM PDT -daras-cu,2024-08-11T20:59:48Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282887967) at 2024-08-11 01:59 PM PDT -daras-cu,2024-08-11T21:01:39Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282888561) at 2024-08-11 02:01 PM PDT -daras-cu,2024-08-11T21:02:46Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282888882) at 2024-08-11 02:02 PM PDT -daras-cu,2024-08-11T21:03:44Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282889126) at 2024-08-11 02:03 PM PDT -daras-cu,2024-08-11T21:11:16Z,- daras-cu assigned to issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2132285814) at 2024-08-11 02:11 PM PDT -daras-cu,2024-08-11T21:11:30Z,- daras-cu unassigned from issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2282891038) at 2024-08-11 02:11 PM PDT -daras-cu,2024-08-12T17:18:56Z,- daras-cu submitted pull request review: [7261](https://github.com/hackforla/website/pull/7261#pullrequestreview-2233630711) at 2024-08-12 10:18 AM PDT -daras-cu,2024-08-13T02:10:30Z,- daras-cu submitted pull request review: [7264](https://github.com/hackforla/website/pull/7264#pullrequestreview-2234331824) at 2024-08-12 07:10 PM PDT -daras-cu,2024-08-14T00:08:06Z,- daras-cu commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2287462665) at 2024-08-13 05:08 PM PDT -daras-cu,2024-08-14T00:25:04Z,- daras-cu commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2287488650) at 2024-08-13 05:25 PM PDT -daras-cu,2024-08-14T01:14:09Z,- daras-cu submitted pull request review: [7269](https://github.com/hackforla/website/pull/7269#pullrequestreview-2236946207) at 2024-08-13 06:14 PM PDT -daras-cu,2024-08-14T02:25:53Z,- daras-cu submitted pull request review: [7234](https://github.com/hackforla/website/pull/7234#pullrequestreview-2237045949) at 2024-08-13 07:25 PM PDT -daras-cu,2024-08-17T17:51:42Z,- daras-cu submitted pull request review: [7310](https://github.com/hackforla/website/pull/7310#pullrequestreview-2244129982) at 2024-08-17 10:51 AM PDT -daras-cu,2024-08-17T18:26:54Z,- daras-cu commented on issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2294935602) at 2024-08-17 11:26 AM PDT -daras-cu,2024-08-18T17:35:09Z,- daras-cu commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2295335233) at 2024-08-18 10:35 AM PDT -daras-cu,2024-08-18T17:37:42Z,- daras-cu commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2295335956) at 2024-08-18 10:37 AM PDT -daras-cu,2024-08-18T18:26:09Z,- daras-cu submitted pull request review: [7298](https://github.com/hackforla/website/pull/7298#pullrequestreview-2244376266) at 2024-08-18 11:26 AM PDT -daras-cu,2024-08-18T18:58:53Z,- daras-cu submitted pull request review: [7308](https://github.com/hackforla/website/pull/7308#pullrequestreview-2244379906) at 2024-08-18 11:58 AM PDT -daras-cu,2024-08-20T20:59:41Z,- daras-cu pull request merged: [7262](https://github.com/hackforla/website/pull/7262#event-13950853905) at 2024-08-20 01:59 PM PDT -daras-cu,2024-08-21T02:58:51Z,- daras-cu assigned to issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2282831116) at 2024-08-20 07:58 PM PDT -daras-cu,2024-08-21T03:00:57Z,- daras-cu commented on issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2300441335) at 2024-08-20 08:00 PM PDT -daras-cu,2024-08-21T03:10:52Z,- daras-cu opened issue: [7332](https://github.com/hackforla/website/issues/7332) at 2024-08-20 08:10 PM PDT -daras-cu,2024-08-21T03:15:11Z,- daras-cu opened issue: [7333](https://github.com/hackforla/website/issues/7333) at 2024-08-20 08:15 PM PDT -daras-cu,2024-08-21T03:20:24Z,- daras-cu opened issue: [7334](https://github.com/hackforla/website/issues/7334) at 2024-08-20 08:20 PM PDT -daras-cu,2024-08-21T03:22:03Z,- daras-cu opened issue: [7335](https://github.com/hackforla/website/issues/7335) at 2024-08-20 08:22 PM PDT -daras-cu,2024-08-21T03:24:17Z,- daras-cu opened issue: [7336](https://github.com/hackforla/website/issues/7336) at 2024-08-20 08:24 PM PDT -daras-cu,2024-08-21T03:26:01Z,- daras-cu opened issue: [7337](https://github.com/hackforla/website/issues/7337) at 2024-08-20 08:26 PM PDT -daras-cu,2024-08-24T03:07:53Z,- daras-cu submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2258303285) at 2024-08-23 08:07 PM PDT -daras-cu,2024-08-24T03:24:37Z,- daras-cu submitted pull request review: [7343](https://github.com/hackforla/website/pull/7343#pullrequestreview-2258317112) at 2024-08-23 08:24 PM PDT -daras-cu,2024-08-26T17:29:48Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310710187) at 2024-08-26 10:29 AM PDT -daras-cu,2024-08-26T17:34:43Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310719227) at 2024-08-26 10:34 AM PDT -daras-cu,2024-08-26T17:37:21Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310724826) at 2024-08-26 10:37 AM PDT -daras-cu,2024-08-26T17:39:05Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310727663) at 2024-08-26 10:39 AM PDT -daras-cu,2024-08-26T17:40:28Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2310729838) at 2024-08-26 10:40 AM PDT -daras-cu,2024-08-26T18:11:33Z,- daras-cu assigned to issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2153288969) at 2024-08-26 11:11 AM PDT -daras-cu,2024-08-26T18:13:06Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2310785952) at 2024-08-26 11:13 AM PDT -daras-cu,2024-08-29T00:46:27Z,- daras-cu submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2267485240) at 2024-08-28 05:46 PM PDT -daras-cu,2024-08-29T01:41:18Z,- daras-cu opened issue: [7363](https://github.com/hackforla/website/issues/7363) at 2024-08-28 06:41 PM PDT -daras-cu,2024-08-29T02:12:29Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2316581307) at 2024-08-28 07:12 PM PDT -daras-cu,2024-08-29T04:22:22Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2316686567) at 2024-08-28 09:22 PM PDT -daras-cu,2024-08-29T04:36:18Z,- daras-cu submitted pull request review: [7361](https://github.com/hackforla/website/pull/7361#pullrequestreview-2267662057) at 2024-08-28 09:36 PM PDT -daras-cu,2024-08-29T04:46:41Z,- daras-cu commented on pull request: [7361](https://github.com/hackforla/website/pull/7361#issuecomment-2316707494) at 2024-08-28 09:46 PM PDT -daras-cu,2024-08-30T03:12:49Z,- daras-cu commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2319828847) at 2024-08-29 08:12 PM PDT -daras-cu,2024-08-30T03:31:34Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2319925719) at 2024-08-29 08:31 PM PDT -daras-cu,2024-08-30T03:38:23Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2319938558) at 2024-08-29 08:38 PM PDT -daras-cu,2024-09-01T18:44:06Z,- daras-cu submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2274469663) at 2024-09-01 11:44 AM PDT -daras-cu,2024-09-07T18:54:51Z,- daras-cu submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2288332024) at 2024-09-07 11:54 AM PDT -daras-cu,2024-09-07T19:00:38Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2336407009) at 2024-09-07 12:00 PM PDT -daras-cu,2024-09-07T19:28:54Z,- daras-cu submitted pull request review: [7405](https://github.com/hackforla/website/pull/7405#pullrequestreview-2288335317) at 2024-09-07 12:28 PM PDT -daras-cu,2024-09-08T18:53:26Z,- daras-cu submitted pull request review: [7367](https://github.com/hackforla/website/pull/7367#pullrequestreview-2288587236) at 2024-09-08 11:53 AM PDT -daras-cu,2024-09-08T18:54:51Z,- daras-cu submitted pull request review: [7367](https://github.com/hackforla/website/pull/7367#pullrequestreview-2288587419) at 2024-09-08 11:54 AM PDT -daras-cu,2024-09-08T19:09:26Z,- daras-cu assigned to issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2215746206) at 2024-09-08 12:09 PM PDT -daras-cu,2024-09-08T19:20:44Z,- daras-cu commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2336795572) at 2024-09-08 12:20 PM PDT -daras-cu,2024-09-09T01:38:51Z,- daras-cu opened issue: [7413](https://github.com/hackforla/website/issues/7413) at 2024-09-08 06:38 PM PDT -daras-cu,2024-09-09T01:43:11Z,- daras-cu opened issue: [7414](https://github.com/hackforla/website/issues/7414) at 2024-09-08 06:43 PM PDT -daras-cu,2024-09-09T01:48:13Z,- daras-cu opened issue: [7415](https://github.com/hackforla/website/issues/7415) at 2024-09-08 06:48 PM PDT -daras-cu,2024-09-09T01:52:21Z,- daras-cu opened issue: [7416](https://github.com/hackforla/website/issues/7416) at 2024-09-08 06:52 PM PDT -daras-cu,2024-09-09T02:24:51Z,- daras-cu opened issue: [7417](https://github.com/hackforla/website/issues/7417) at 2024-09-08 07:24 PM PDT -daras-cu,2024-09-09T02:41:06Z,- daras-cu opened issue: [7418](https://github.com/hackforla/website/issues/7418) at 2024-09-08 07:41 PM PDT -daras-cu,2024-09-09T02:49:36Z,- daras-cu opened issue: [7419](https://github.com/hackforla/website/issues/7419) at 2024-09-08 07:49 PM PDT -daras-cu,2024-09-09T03:00:27Z,- daras-cu opened issue: [7420](https://github.com/hackforla/website/issues/7420) at 2024-09-08 08:00 PM PDT -daras-cu,2024-09-09T03:15:59Z,- daras-cu opened issue: [7421](https://github.com/hackforla/website/issues/7421) at 2024-09-08 08:15 PM PDT -daras-cu,2024-09-09T03:21:10Z,- daras-cu commented on issue: [7421](https://github.com/hackforla/website/issues/7421#issuecomment-2337034171) at 2024-09-08 08:21 PM PDT -daras-cu,2024-09-09T03:25:45Z,- daras-cu opened issue: [7422](https://github.com/hackforla/website/issues/7422) at 2024-09-08 08:25 PM PDT -daras-cu,2024-09-09T03:28:47Z,- daras-cu opened issue: [7423](https://github.com/hackforla/website/issues/7423) at 2024-09-08 08:28 PM PDT -daras-cu,2024-09-09T04:16:24Z,- daras-cu submitted pull request review: [7367](https://github.com/hackforla/website/pull/7367#pullrequestreview-2288784047) at 2024-09-08 09:16 PM PDT -daras-cu,2024-09-09T04:29:11Z,- daras-cu commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2337089462) at 2024-09-08 09:29 PM PDT -daras-cu,2024-09-09T21:33:11Z,- daras-cu commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2339192192) at 2024-09-09 02:33 PM PDT -daras-cu,2024-09-12T03:04:35Z,- daras-cu commented on issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2345174485) at 2024-09-11 08:04 PM PDT -daras-cu,2024-09-12T03:06:34Z,- daras-cu commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2345176234) at 2024-09-11 08:06 PM PDT -daras-cu,2024-09-12T03:40:34Z,- daras-cu opened issue: [7438](https://github.com/hackforla/website/issues/7438) at 2024-09-11 08:40 PM PDT -daras-cu,2024-09-12T03:47:37Z,- daras-cu opened issue: [7439](https://github.com/hackforla/website/issues/7439) at 2024-09-11 08:47 PM PDT -daras-cu,2024-09-12T03:55:07Z,- daras-cu opened issue: [7440](https://github.com/hackforla/website/issues/7440) at 2024-09-11 08:55 PM PDT -daras-cu,2024-09-12T04:02:54Z,- daras-cu opened issue: [7441](https://github.com/hackforla/website/issues/7441) at 2024-09-11 09:02 PM PDT -daras-cu,2024-09-12T04:07:23Z,- daras-cu opened issue: [7442](https://github.com/hackforla/website/issues/7442) at 2024-09-11 09:07 PM PDT -daras-cu,2024-09-12T04:09:50Z,- daras-cu opened issue: [7443](https://github.com/hackforla/website/issues/7443) at 2024-09-11 09:09 PM PDT -daras-cu,2024-09-12T04:36:48Z,- daras-cu commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2345254790) at 2024-09-11 09:36 PM PDT -daras-cu,2024-09-14T22:02:32Z,- daras-cu commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2351173400) at 2024-09-14 03:02 PM PDT -daras-cu,2024-09-14T22:20:13Z,- daras-cu submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2305212222) at 2024-09-14 03:20 PM PDT -daras-cu,2024-09-16T19:49:37Z,- daras-cu closed issue by PR 7461: [7411](https://github.com/hackforla/website/issues/7411#event-14279051028) at 2024-09-16 12:49 PM PDT -daras-cu,2024-09-16T19:53:12Z,- daras-cu commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2353790597) at 2024-09-16 12:53 PM PDT -daras-cu,2024-09-16T19:53:25Z,- daras-cu closed issue by PR 7428: [7291](https://github.com/hackforla/website/issues/7291#event-14279096562) at 2024-09-16 12:53 PM PDT -daras-cu,2024-09-19T01:15:03Z,- daras-cu opened issue: [7494](https://github.com/hackforla/website/issues/7494) at 2024-09-18 06:15 PM PDT -daras-cu,2024-09-19T01:19:26Z,- daras-cu opened issue: [7495](https://github.com/hackforla/website/issues/7495) at 2024-09-18 06:19 PM PDT -daras-cu,2024-09-20T17:36:48Z,- daras-cu submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2318873850) at 2024-09-20 10:36 AM PDT -daras-cu,2024-09-21T03:32:07Z,- daras-cu submitted pull request review: [7503](https://github.com/hackforla/website/pull/7503#pullrequestreview-2319642671) at 2024-09-20 08:32 PM PDT -daras-cu,2024-09-23T19:45:41Z,- daras-cu commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2369223353) at 2024-09-23 12:45 PM PDT -daras-cu,2024-09-23T19:54:17Z,- daras-cu commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2369241554) at 2024-09-23 12:54 PM PDT -daras-cu,2024-09-23T20:30:59Z,- daras-cu commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2369319533) at 2024-09-23 01:30 PM PDT -daras-cu,2024-09-23T20:41:16Z,- daras-cu commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2369340696) at 2024-09-23 01:41 PM PDT -daras-cu,2024-09-23T21:45:14Z,- daras-cu commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2369532522) at 2024-09-23 02:45 PM PDT -daras-cu,2024-09-24T00:49:37Z,- daras-cu closed issue by PR 7464: [6369](https://github.com/hackforla/website/issues/6369#event-14372889484) at 2024-09-23 05:49 PM PDT -daras-cu,2024-09-24T01:04:33Z,- daras-cu submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2323771526) at 2024-09-23 06:04 PM PDT -daras-cu,2024-09-24T01:25:22Z,- daras-cu submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2323813450) at 2024-09-23 06:25 PM PDT -daras-cu,2024-09-24T01:39:43Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2369931420) at 2024-09-23 06:39 PM PDT -daras-cu,2024-09-25T01:50:22Z,- daras-cu submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2326806009) at 2024-09-24 06:50 PM PDT -daras-cu,2024-10-01T01:03:13Z,- daras-cu closed issue by PR 7522: [7097](https://github.com/hackforla/website/issues/7097#event-14464461046) at 2024-09-30 06:03 PM PDT -daras-cu,2024-10-01T01:07:13Z,- daras-cu closed issue as completed: [6453](https://github.com/hackforla/website/issues/6453#event-14464489889) at 2024-09-30 06:07 PM PDT -daras-cu,2024-10-07T19:08:11Z,- daras-cu closed issue by PR 7559: [7549](https://github.com/hackforla/website/issues/7549#event-14545548852) at 2024-10-07 12:08 PM PDT -daras-cu,2024-10-07T21:01:21Z,- daras-cu commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2397887657) at 2024-10-07 02:01 PM PDT -daras-cu,2024-10-13T00:29:03Z,- daras-cu assigned to issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2401584474) at 2024-10-12 05:29 PM PDT -daras-cu,2024-10-15T02:00:57Z,- daras-cu closed issue by PR 7588: [7477](https://github.com/hackforla/website/issues/7477#event-14649328473) at 2024-10-14 07:00 PM PDT -daras-cu,2024-10-16T03:35:24Z,- daras-cu commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2415657621) at 2024-10-15 08:35 PM PDT -daras-cu,2024-10-16T03:36:55Z,- daras-cu closed issue by PR 7592: [7473](https://github.com/hackforla/website/issues/7473#event-14667652140) at 2024-10-15 08:36 PM PDT -daras-cu,2024-10-16T03:43:07Z,- daras-cu commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2415665038) at 2024-10-15 08:43 PM PDT -daras-cu,2024-10-16T03:46:58Z,- daras-cu commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2415668025) at 2024-10-15 08:46 PM PDT -daras-cu,2024-10-21T23:34:12Z,- daras-cu closed issue by PR 7599: [7563](https://github.com/hackforla/website/issues/7563#event-14772739732) at 2024-10-21 04:34 PM PDT -daras-cu,2024-10-23T03:10:51Z,- daras-cu commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2430753234) at 2024-10-22 08:10 PM PDT -daras-cu,2024-10-23T03:12:29Z,- daras-cu commented on issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2430754976) at 2024-10-22 08:12 PM PDT -daras-cu,2024-10-23T03:24:52Z,- daras-cu commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2430769672) at 2024-10-22 08:24 PM PDT -daras-cu,2024-11-04T04:54:42Z,- daras-cu commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2453827738) at 2024-11-03 08:54 PM PST -daras-cu,2024-11-11T22:20:16Z,- daras-cu commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2469184742) at 2024-11-11 02:20 PM PST -daras-cu,2024-11-17T22:10:47Z,- daras-cu commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2481620909) at 2024-11-17 02:10 PM PST -daras-cu,2024-11-20T02:50:55Z,- daras-cu closed issue by PR 7728: [7650](https://github.com/hackforla/website/issues/7650#event-15358056128) at 2024-11-19 06:50 PM PST -daras-cu,2024-11-25T03:12:13Z,- daras-cu submitted pull request review: [7729](https://github.com/hackforla/website/pull/7729#pullrequestreview-2457023060) at 2024-11-24 07:12 PM PST -daras-cu,2024-11-26T00:43:41Z,- daras-cu commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2499323801) at 2024-11-25 04:43 PM PST -daras-cu,2024-11-27T03:35:20Z,- daras-cu closed issue by PR 7768: [7651](https://github.com/hackforla/website/issues/7651#event-15446031663) at 2024-11-26 07:35 PM PST -daras-cu,2024-11-27T04:23:08Z,- daras-cu closed issue by PR 7757: [7703](https://github.com/hackforla/website/issues/7703#event-15446434885) at 2024-11-26 08:23 PM PST -daras-cu,2024-11-27T05:10:30Z,- daras-cu opened issue: [7774](https://github.com/hackforla/website/issues/7774) at 2024-11-26 09:10 PM PST -daras-cu,2024-11-27T06:18:36Z,- daras-cu commented on issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2503000956) at 2024-11-26 10:18 PM PST -daras-cu,2025-01-20T22:15:34Z,- daras-cu closed issue by PR 7832: [7742](https://github.com/hackforla/website/issues/7742#event-16004941663) at 2025-01-20 02:15 PM PST -daras-cu,2025-01-21T04:53:11Z,- daras-cu commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2603652942) at 2025-01-20 08:53 PM PST -daras-cu,2025-01-22T03:23:07Z,- daras-cu commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2606204496) at 2025-01-21 07:23 PM PST -daras-cu,2025-01-22T04:20:35Z,- daras-cu commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2606257939) at 2025-01-21 08:20 PM PST -daras-cu,2025-01-22T04:23:26Z,- daras-cu commented on issue: [7835](https://github.com/hackforla/website/issues/7835#issuecomment-2606263825) at 2025-01-21 08:23 PM PST -daras-cu,2025-01-22T05:06:03Z,- daras-cu opened issue: [7843](https://github.com/hackforla/website/issues/7843) at 2025-01-21 09:06 PM PST -daras-cu,2025-02-06T04:05:09Z,- daras-cu commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2638775376) at 2025-02-05 08:05 PM PST -daras-cu,2025-02-06T04:29:17Z,- daras-cu commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2638797098) at 2025-02-05 08:29 PM PST -daras-cu,2025-02-11T02:10:59Z,- daras-cu closed issue by PR 7902: [7844](https://github.com/hackforla/website/issues/7844#event-16257648781) at 2025-02-10 06:10 PM PST -daras-cu,2025-02-19T02:47:38Z,- daras-cu closed issue by PR 7908: [7850](https://github.com/hackforla/website/issues/7850#event-16358290563) at 2025-02-18 06:47 PM PST -daras-cu,2025-03-07T04:35:59Z,- daras-cu commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2705508164) at 2025-03-06 08:35 PM PST -daras-cu,2025-03-10T19:29:30Z,- daras-cu commented on pull request: [7984](https://github.com/hackforla/website/pull/7984#issuecomment-2711619234) at 2025-03-10 12:29 PM PDT -daras-cu,2025-03-10T19:30:58Z,- daras-cu commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2711622277) at 2025-03-10 12:30 PM PDT -daras-cu,2025-03-17T20:02:34Z,- daras-cu submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2691845975) at 2025-03-17 01:02 PM PDT -daras-cu,2025-03-17T22:19:08Z,- daras-cu commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2731062652) at 2025-03-17 03:19 PM PDT -daras-cu,2025-03-18T00:46:21Z,- daras-cu assigned to issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2646444422) at 2025-03-17 05:46 PM PDT -daras-cu,2025-03-23T18:28:28Z,- daras-cu submitted pull request review: [7987](https://github.com/hackforla/website/pull/7987#pullrequestreview-2708681698) at 2025-03-23 11:28 AM PDT -daras-cu,2025-03-24T20:49:05Z,- daras-cu submitted pull request review: [7987](https://github.com/hackforla/website/pull/7987#pullrequestreview-2711647035) at 2025-03-24 01:49 PM PDT -daras-cu,2025-03-24T20:49:29Z,- daras-cu closed issue by PR 7987: [7533](https://github.com/hackforla/website/issues/7533#event-16962956027) at 2025-03-24 01:49 PM PDT -daras-cu,2025-03-26T05:29:31Z,- daras-cu closed issue by PR 7985: [7866](https://github.com/hackforla/website/issues/7866#event-16986106314) at 2025-03-25 10:29 PM PDT -daras-cu,2025-03-26T05:38:39Z,- daras-cu commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2753299798) at 2025-03-25 10:38 PM PDT -daras-cu,2025-03-26T05:38:39Z,- daras-cu reopened issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2753299798) at 2025-03-25 10:38 PM PDT -daras-cu,2025-03-30T01:11:33Z,- daras-cu commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2764325362) at 2025-03-29 06:11 PM PDT -daras-cu,2025-04-02T02:35:29Z,- daras-cu closed issue by PR 7985: [7866](https://github.com/hackforla/website/issues/7866#event-17085467952) at 2025-04-01 07:35 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu commented on issue: [8051](https://github.com/hackforla/website/issues/8051#issuecomment-2781836372) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu closed issue as completed: [8051](https://github.com/hackforla/website/issues/8051#event-17145264467) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu commented on issue: [8051](https://github.com/hackforla/website/issues/8051#issuecomment-2781836372) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-07T01:55:16Z,- daras-cu closed issue as completed: [8051](https://github.com/hackforla/website/issues/8051#event-17145264467) at 2025-04-06 06:55 PM PDT -daras-cu,2025-04-16T02:44:28Z,- daras-cu commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2808077985) at 2025-04-15 07:44 PM PDT -daras-cu,2025-04-16T02:44:28Z,- daras-cu closed issue as completed: [7907](https://github.com/hackforla/website/issues/7907#event-17280159123) at 2025-04-15 07:44 PM PDT -daras-cu,2025-04-16T03:30:17Z,- daras-cu closed issue by PR 8046: [7879](https://github.com/hackforla/website/issues/7879#event-17280520905) at 2025-04-15 08:30 PM PDT -daras-cu,2025-04-16T03:36:08Z,- daras-cu commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2808142422) at 2025-04-15 08:36 PM PDT -daras-cu,2025-04-25T01:51:20Z,- daras-cu closed issue by PR 8069: [7581](https://github.com/hackforla/website/issues/7581#event-17399253419) at 2025-04-24 06:51 PM PDT -daras-cu,2025-04-25T02:23:42Z,- daras-cu commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2829233552) at 2025-04-24 07:23 PM PDT -daras-cu,2025-04-25T02:23:42Z,- daras-cu closed issue as completed: [7391](https://github.com/hackforla/website/issues/7391#event-17399468471) at 2025-04-24 07:23 PM PDT -daras-cu,2025-04-28T01:30:53Z,- daras-cu commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2833777579) at 2025-04-27 06:30 PM PDT -daras-cu,2025-04-28T22:21:33Z,- daras-cu commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2836868311) at 2025-04-28 03:21 PM PDT -daras-cu,2025-04-30T01:55:45Z,- daras-cu closed issue by PR 8090: [7443](https://github.com/hackforla/website/issues/7443#event-17465091121) at 2025-04-29 06:55 PM PDT -daras-cu,2025-04-30T01:57:36Z,- daras-cu closed issue by PR 8091: [7909](https://github.com/hackforla/website/issues/7909#event-17465105412) at 2025-04-29 06:57 PM PDT -daras-cu,2025-04-30T02:37:05Z,- daras-cu commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2840657170) at 2025-04-29 07:37 PM PDT -daras-cu,2025-04-30T02:37:05Z,- daras-cu closed issue as completed: [7390](https://github.com/hackforla/website/issues/7390#event-17465395004) at 2025-04-29 07:37 PM PDT -daras-cu,2025-05-05T03:13:41Z,- daras-cu commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2849803450) at 2025-05-04 08:13 PM PDT -daras-cu,2025-05-06T01:27:59Z,- daras-cu commented on issue: [8055](https://github.com/hackforla/website/issues/8055#issuecomment-2852951091) at 2025-05-05 06:27 PM PDT -daras-cu,2025-05-06T01:27:59Z,- daras-cu commented on issue: [8055](https://github.com/hackforla/website/issues/8055#issuecomment-2852951091) at 2025-05-05 06:27 PM PDT -daras-cu,2025-05-11T18:34:30Z,- daras-cu commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2870042749) at 2025-05-11 11:34 AM PDT -daras-cu,2025-05-11T19:56:42Z,- daras-cu opened pull request: [8121](https://github.com/hackforla/website/pull/8121) at 2025-05-11 12:56 PM PDT -daras-cu,2025-05-13T01:44:36Z,- daras-cu commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2874785507) at 2025-05-12 06:44 PM PDT -daras-cu,2025-05-13T01:46:37Z,- daras-cu commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2874788457) at 2025-05-12 06:46 PM PDT -daras-cu,2025-05-13T01:46:38Z,- daras-cu closed issue by PR 7615: [2147](https://github.com/hackforla/website/issues/2147#event-17626743395) at 2025-05-12 06:46 PM PDT -daras-cu,2025-05-17T22:51:28Z,- daras-cu commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2888619556) at 2025-05-17 03:51 PM PDT -daras-cu,2025-05-17T23:12:09Z,- daras-cu commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2888631142) at 2025-05-17 04:12 PM PDT -daras-cu,2025-05-18T02:17:46Z,- daras-cu pull request merged: [8121](https://github.com/hackforla/website/pull/8121#event-17701369624) at 2025-05-17 07:17 PM PDT -daras-cu,2025-05-19T19:21:39Z,- daras-cu commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2892044505) at 2025-05-19 12:21 PM PDT -daras-cu,2025-05-20T00:47:40Z,- daras-cu assigned to issue: [6919](https://github.com/hackforla/website/issues/6919#event-17723933701) at 2025-05-19 05:47 PM PDT -daras-cu,2025-05-21T02:23:29Z,- daras-cu closed issue by PR 8146: [7995](https://github.com/hackforla/website/issues/7995#event-17744365133) at 2025-05-20 07:23 PM PDT -daras-cu,2025-05-21T02:24:21Z,- daras-cu closed issue by PR 8140: [7782](https://github.com/hackforla/website/issues/7782#event-17744371021) at 2025-05-20 07:24 PM PDT -daras-cu,2025-05-28T01:54:34Z,- daras-cu closed issue by PR 8156: [7998](https://github.com/hackforla/website/issues/7998#event-17841450071) at 2025-05-27 06:54 PM PDT -daras-cu,2025-05-28T01:55:30Z,- daras-cu closed issue by PR 8159: [7954](https://github.com/hackforla/website/issues/7954#event-17841462594) at 2025-05-27 06:55 PM PDT -daras-cu,2025-05-28T02:00:34Z,- daras-cu commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2914654454) at 2025-05-27 07:00 PM PDT -daras-cu,2025-05-28T02:23:15Z,- daras-cu commented on issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2914691265) at 2025-05-27 07:23 PM PDT -daras-cu,2025-05-28T02:24:22Z,- daras-cu commented on issue: [8087](https://github.com/hackforla/website/issues/8087#issuecomment-2914692639) at 2025-05-27 07:24 PM PDT -daras-cu,2025-05-28T02:24:22Z,- daras-cu closed issue as completed: [8087](https://github.com/hackforla/website/issues/8087#event-17841730731) at 2025-05-27 07:24 PM PDT -daras-cu,2025-05-28T03:08:57Z,- daras-cu commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2914754554) at 2025-05-27 08:08 PM PDT -daras-cu,2025-05-28T03:09:05Z,- daras-cu closed issue by PR 8160: [7999](https://github.com/hackforla/website/issues/7999#event-17842101649) at 2025-05-27 08:09 PM PDT -daras-cu,2025-06-02T21:51:30Z,- daras-cu commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2932637222) at 2025-06-02 02:51 PM PDT -daras-cu,2025-06-27T02:06:16Z,- daras-cu commented on issue: [7635](https://github.com/hackforla/website/issues/7635#issuecomment-3011108524) at 2025-06-26 07:06 PM PDT -daras-cu,2025-06-27T02:06:16Z,- daras-cu closed issue as completed: [7635](https://github.com/hackforla/website/issues/7635#event-18347621839) at 2025-06-26 07:06 PM PDT -daras-cu,2025-06-30T04:07:58Z,- daras-cu commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3017707967) at 2025-06-29 09:07 PM PDT -daras-cu,2025-06-30T23:25:13Z,- daras-cu commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-3021141805) at 2025-06-30 04:25 PM PDT -daras-cu,2025-06-30T23:27:21Z,- daras-cu closed issue as not planned: [8205](https://github.com/hackforla/website/issues/8205#event-18396698574) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:22Z,- daras-cu closed issue as not planned: [8207](https://github.com/hackforla/website/issues/8207#event-18396698663) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:53Z,- daras-cu closed issue as not planned: [8208](https://github.com/hackforla/website/issues/8208#event-18396702798) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:54Z,- daras-cu closed issue as not planned: [8209](https://github.com/hackforla/website/issues/8209#event-18396702881) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:54Z,- daras-cu closed issue as not planned: [8210](https://github.com/hackforla/website/issues/8210#event-18396702920) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:54Z,- daras-cu closed issue as not planned: [8211](https://github.com/hackforla/website/issues/8211#event-18396702974) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:55Z,- daras-cu closed issue as not planned: [8212](https://github.com/hackforla/website/issues/8212#event-18396703030) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:55Z,- daras-cu closed issue as not planned: [8213](https://github.com/hackforla/website/issues/8213#event-18396703074) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:55Z,- daras-cu closed issue as not planned: [8214](https://github.com/hackforla/website/issues/8214#event-18396703115) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8215](https://github.com/hackforla/website/issues/8215#event-18396703147) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8216](https://github.com/hackforla/website/issues/8216#event-18396703180) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8217](https://github.com/hackforla/website/issues/8217#event-18396703206) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:56Z,- daras-cu closed issue as not planned: [8218](https://github.com/hackforla/website/issues/8218#event-18396703242) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:57Z,- daras-cu closed issue as not planned: [8219](https://github.com/hackforla/website/issues/8219#event-18396703274) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:57Z,- daras-cu closed issue as not planned: [8220](https://github.com/hackforla/website/issues/8220#event-18396703327) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:57Z,- daras-cu closed issue as not planned: [8221](https://github.com/hackforla/website/issues/8221#event-18396703375) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8222](https://github.com/hackforla/website/issues/8222#event-18396703412) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8223](https://github.com/hackforla/website/issues/8223#event-18396703461) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8224](https://github.com/hackforla/website/issues/8224#event-18396703505) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:58Z,- daras-cu closed issue as not planned: [8225](https://github.com/hackforla/website/issues/8225#event-18396703564) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:59Z,- daras-cu closed issue as not planned: [8226](https://github.com/hackforla/website/issues/8226#event-18396703753) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:59Z,- daras-cu closed issue as not planned: [8227](https://github.com/hackforla/website/issues/8227#event-18396703797) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:27:59Z,- daras-cu closed issue as not planned: [8228](https://github.com/hackforla/website/issues/8228#event-18396703830) at 2025-06-30 04:27 PM PDT -daras-cu,2025-06-30T23:28:00Z,- daras-cu closed issue as not planned: [8229](https://github.com/hackforla/website/issues/8229#event-18396703857) at 2025-06-30 04:28 PM PDT -daras-cu,2025-06-30T23:28:00Z,- daras-cu closed issue as not planned: [8230](https://github.com/hackforla/website/issues/8230#event-18396703892) at 2025-06-30 04:28 PM PDT -Dartis4,6597,SKILLS ISSUE -Dartis4,2024-04-09T02:50:26Z,- Dartis4 opened issue: [6597](https://github.com/hackforla/website/issues/6597) at 2024-04-08 07:50 PM PDT -Dartis4,2024-04-09T02:50:41Z,- Dartis4 assigned to issue: [6597](https://github.com/hackforla/website/issues/6597#issuecomment-2044060166) at 2024-04-08 07:50 PM PDT -Dartis4,2024-04-12T20:37:02Z,- Dartis4 assigned to issue: [6218](https://github.com/hackforla/website/issues/6218) at 2024-04-12 01:37 PM PDT -Dartis4,2024-04-12T20:37:46Z,- Dartis4 unassigned from issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052495140) at 2024-04-12 01:37 PM PDT -Dartis4,2024-04-12T20:57:39Z,- Dartis4 assigned to issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052495140) at 2024-04-12 01:57 PM PDT -Dartis4,2024-04-14T19:21:07Z,- Dartis4 unassigned from issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2052518804) at 2024-04-14 12:21 PM PDT -Dartis4,2024-04-14T19:39:14Z,- Dartis4 assigned to issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2016945295) at 2024-04-14 12:39 PM PDT -Dartis4,2024-04-14T19:40:28Z,- Dartis4 commented on issue: [6512](https://github.com/hackforla/website/issues/6512#issuecomment-2054164765) at 2024-04-14 12:40 PM PDT -Dartis4,2024-04-14T22:04:33Z,- Dartis4 opened pull request: [6646](https://github.com/hackforla/website/pull/6646) at 2024-04-14 03:04 PM PDT -Dartis4,2024-04-14T22:13:01Z,- Dartis4 commented on issue: [6597](https://github.com/hackforla/website/issues/6597#issuecomment-2054200391) at 2024-04-14 03:13 PM PDT -Dartis4,2024-04-18T21:55:48Z,- Dartis4 pull request merged: [6646](https://github.com/hackforla/website/pull/6646#event-12529615166) at 2024-04-18 02:55 PM PDT -Dartis4,2024-04-21T19:25:20Z,- Dartis4 commented on pull request: [6694](https://github.com/hackforla/website/pull/6694#issuecomment-2068173011) at 2024-04-21 12:25 PM PDT -Dartis4,2024-04-21T19:32:17Z,- Dartis4 submitted pull request review: [6694](https://github.com/hackforla/website/pull/6694#pullrequestreview-2013504914) at 2024-04-21 12:32 PM PDT -Dartis4,2024-04-21T19:41:59Z,- Dartis4 assigned to issue: [6696](https://github.com/hackforla/website/issues/6696) at 2024-04-21 12:41 PM PDT -Dartis4,2024-04-21T19:44:16Z,- Dartis4 commented on issue: [6696](https://github.com/hackforla/website/issues/6696#issuecomment-2068177952) at 2024-04-21 12:44 PM PDT -Dartis4,2024-04-21T20:57:55Z,- Dartis4 opened pull request: [6707](https://github.com/hackforla/website/pull/6707) at 2024-04-21 01:57 PM PDT -Dartis4,2024-04-23T13:48:59Z,- Dartis4 pull request merged: [6707](https://github.com/hackforla/website/pull/6707#event-12576057750) at 2024-04-23 06:48 AM PDT -Dartis4,2024-04-23T18:12:06Z,- Dartis4 assigned to issue: [6091](https://github.com/hackforla/website/issues/6091) at 2024-04-23 11:12 AM PDT -Dartis4,2024-04-23T18:14:50Z,- Dartis4 commented on issue: [6091](https://github.com/hackforla/website/issues/6091#issuecomment-2073080961) at 2024-04-23 11:14 AM PDT -Dartis4,2024-04-27T20:02:06Z,- Dartis4 closed issue as completed: [6597](https://github.com/hackforla/website/issues/6597#event-12633040765) at 2024-04-27 01:02 PM PDT -Dartis4,2024-05-06T02:09:26Z,- Dartis4 assigned to issue: [6665](https://github.com/hackforla/website/issues/6665) at 2024-05-05 07:09 PM PDT -Dartis4,2024-05-06T21:21:47Z,- Dartis4 commented on issue: [6665](https://github.com/hackforla/website/issues/6665#issuecomment-2096945604) at 2024-05-06 02:21 PM PDT -Dartis4,2024-05-06T22:59:32Z,- Dartis4 commented on issue: [6665](https://github.com/hackforla/website/issues/6665#issuecomment-2097066269) at 2024-05-06 03:59 PM PDT -Dartis4,2024-05-06T23:20:01Z,- Dartis4 opened pull request: [6824](https://github.com/hackforla/website/pull/6824) at 2024-05-06 04:20 PM PDT -Dartis4,2024-05-07T02:10:53Z,- Dartis4 pull request merged: [6824](https://github.com/hackforla/website/pull/6824#event-12722395915) at 2024-05-06 07:10 PM PDT -das-mittel,6040,SKILLS ISSUE -das-mittel,2024-01-03T04:23:13Z,- das-mittel opened issue: [6040](https://github.com/hackforla/website/issues/6040) at 2024-01-02 08:23 PM PST -das-mittel,2024-01-03T04:23:14Z,- das-mittel assigned to issue: [6040](https://github.com/hackforla/website/issues/6040) at 2024-01-02 08:23 PM PST -das-mittel,2024-01-06T01:18:27Z,- das-mittel assigned to issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1874740969) at 2024-01-05 05:18 PM PST -das-mittel,2024-01-06T01:21:35Z,- das-mittel commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1879479719) at 2024-01-05 05:21 PM PST -das-mittel,2024-01-28T04:00:22Z,- das-mittel commented on issue: [5707](https://github.com/hackforla/website/issues/5707#issuecomment-1913439716) at 2024-01-27 08:00 PM PST -das-mittel,2024-02-01T01:03:22Z,- das-mittel opened pull request: [6202](https://github.com/hackforla/website/pull/6202) at 2024-01-31 05:03 PM PST -das-mittel,2024-02-02T08:21:46Z,- das-mittel pull request merged: [6202](https://github.com/hackforla/website/pull/6202#event-11680825923) at 2024-02-02 12:21 AM PST -das-mittel,2024-02-02T19:37:14Z,- das-mittel assigned to issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1875015788) at 2024-02-02 11:37 AM PST -das-mittel,2024-02-05T22:19:13Z,- das-mittel commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1928238008) at 2024-02-05 02:19 PM PST -das-mittel,2024-02-06T21:43:32Z,- das-mittel opened pull request: [6261](https://github.com/hackforla/website/pull/6261) at 2024-02-06 01:43 PM PST -das-mittel,2024-02-07T18:29:11Z,- das-mittel pull request closed w/o merging: [6261](https://github.com/hackforla/website/pull/6261#event-11736271962) at 2024-02-07 10:29 AM PST -das-mittel,2024-02-29T01:55:32Z,- das-mittel unassigned from issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1970257195) at 2024-02-28 05:55 PM PST -das-mittel,2024-03-03T05:04:19Z,- das-mittel commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1975023713) at 2024-03-02 09:04 PM PST -das-mittel,2024-03-08T08:14:01Z,- das-mittel closed issue as completed: [6040](https://github.com/hackforla/website/issues/6040#event-12052548787) at 2024-03-08 12:14 AM PST -das-mittel,2024-03-12T07:32:14Z,- das-mittel assigned to issue: [6095](https://github.com/hackforla/website/issues/6095) at 2024-03-12 12:32 AM PDT -das-mittel,2024-03-12T07:34:09Z,- das-mittel commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-1990951872) at 2024-03-12 12:34 AM PDT -das-mittel,2024-03-21T00:00:07Z,- das-mittel commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-2010935822) at 2024-03-20 05:00 PM PDT -davidwiese,5070,SKILLS ISSUE -davidwiese,2023-07-26T02:59:37Z,- davidwiese opened issue: [5070](https://github.com/hackforla/website/issues/5070) at 2023-07-25 07:59 PM PDT -davidwiese,2023-07-26T02:59:38Z,- davidwiese assigned to issue: [5070](https://github.com/hackforla/website/issues/5070) at 2023-07-25 07:59 PM PDT -davidwiese,2023-07-26T20:37:58Z,- davidwiese assigned to issue: [4802](https://github.com/hackforla/website/issues/4802) at 2023-07-26 01:37 PM PDT -davidwiese,2023-07-26T20:42:46Z,- davidwiese commented on issue: [4802](https://github.com/hackforla/website/issues/4802#issuecomment-1652466013) at 2023-07-26 01:42 PM PDT -davidwiese,2023-07-26T20:45:15Z,- davidwiese commented on issue: [5070](https://github.com/hackforla/website/issues/5070#issuecomment-1652469128) at 2023-07-26 01:45 PM PDT -davidwiese,2023-07-26T21:59:16Z,- davidwiese commented on issue: [4802](https://github.com/hackforla/website/issues/4802#issuecomment-1652555050) at 2023-07-26 02:59 PM PDT -davidwiese,2023-07-26T22:37:06Z,- davidwiese opened pull request: [5097](https://github.com/hackforla/website/pull/5097) at 2023-07-26 03:37 PM PDT -davidwiese,2023-07-27T01:55:10Z,- davidwiese pull request merged: [5097](https://github.com/hackforla/website/pull/5097#event-9930433136) at 2023-07-26 06:55 PM PDT -davidwiese,2023-07-27T20:46:17Z,- davidwiese closed issue as completed: [5070](https://github.com/hackforla/website/issues/5070#event-9940445597) at 2023-07-27 01:46 PM PDT -davidwiese,2023-07-27T20:48:07Z,- davidwiese reopened issue: [5070](https://github.com/hackforla/website/issues/5070#event-9940445597) at 2023-07-27 01:48 PM PDT -davidwiese,2023-07-29T11:12:58Z,- davidwiese pull request merged: [5097](https://github.com/hackforla/website/pull/5097#event-9954302237) at 2023-07-29 04:12 AM PDT -davidwiese,2023-07-31T19:08:58Z,- davidwiese closed issue as completed: [5070](https://github.com/hackforla/website/issues/5070#event-9967873848) at 2023-07-31 12:08 PM PDT -davidwiese,2023-07-31T19:34:37Z,- davidwiese assigned to issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1651176262) at 2023-07-31 12:34 PM PDT -davidwiese,2023-07-31T19:36:24Z,- davidwiese commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659016083) at 2023-07-31 12:36 PM PDT -davidwiese,2023-07-31T20:10:12Z,- davidwiese commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659061455) at 2023-07-31 01:10 PM PDT -davidwiese,2023-07-31T20:18:17Z,- davidwiese opened pull request: [5121](https://github.com/hackforla/website/pull/5121) at 2023-07-31 01:18 PM PDT -davidwiese,2023-08-04T20:12:46Z,- davidwiese commented on pull request: [5141](https://github.com/hackforla/website/pull/5141#issuecomment-1666123564) at 2023-08-04 01:12 PM PDT -davidwiese,2023-08-04T21:19:09Z,- davidwiese submitted pull request review: [5141](https://github.com/hackforla/website/pull/5141#pullrequestreview-1563576004) at 2023-08-04 02:19 PM PDT -davidwiese,2023-08-06T15:29:15Z,- davidwiese pull request merged: [5121](https://github.com/hackforla/website/pull/5121#event-10017508786) at 2023-08-06 08:29 AM PDT -davidwiese,2023-08-06T15:36:17Z,- davidwiese assigned to issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1641394638) at 2023-08-06 08:36 AM PDT -davidwiese,2023-08-06T15:37:24Z,- davidwiese commented on issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1666898796) at 2023-08-06 08:37 AM PDT -davidwiese,2023-08-09T02:19:08Z,- davidwiese commented on issue: [5016](https://github.com/hackforla/website/issues/5016#issuecomment-1670557506) at 2023-08-08 07:19 PM PDT -davidwiese,2023-08-09T20:18:24Z,- davidwiese opened pull request: [5168](https://github.com/hackforla/website/pull/5168) at 2023-08-09 01:18 PM PDT -davidwiese,2023-08-10T04:13:10Z,- davidwiese pull request closed w/o merging: [5168](https://github.com/hackforla/website/pull/5168#event-10054431838) at 2023-08-09 09:13 PM PDT -davidwiese,2023-08-10T04:19:36Z,- davidwiese commented on pull request: [5168](https://github.com/hackforla/website/pull/5168#issuecomment-1672530745) at 2023-08-09 09:19 PM PDT -davidwiese,2023-08-10T18:32:13Z,- davidwiese assigned to issue: [5017](https://github.com/hackforla/website/issues/5017#issuecomment-1641395420) at 2023-08-10 11:32 AM PDT -davidwiese,2023-08-10T18:34:15Z,- davidwiese commented on issue: [5017](https://github.com/hackforla/website/issues/5017#issuecomment-1673713614) at 2023-08-10 11:34 AM PDT -davidwiese,2023-08-29T21:58:02Z,- davidwiese assigned to issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1697631292) at 2023-08-29 02:58 PM PDT -davidwiese,2023-08-29T21:59:33Z,- davidwiese commented on issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1698201463) at 2023-08-29 02:59 PM PDT -davidwiese,2023-08-30T20:12:29Z,- davidwiese opened pull request: [5380](https://github.com/hackforla/website/pull/5380) at 2023-08-30 01:12 PM PDT -davidwiese,2023-08-31T00:26:18Z,- davidwiese assigned to issue: [5231](https://github.com/hackforla/website/issues/5231) at 2023-08-30 05:26 PM PDT -davidwiese,2023-08-31T00:26:49Z,- davidwiese commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700072682) at 2023-08-30 05:26 PM PDT -davidwiese,2023-08-31T05:02:12Z,- davidwiese unassigned from issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700370898) at 2023-08-30 10:02 PM PDT -davidwiese,2023-08-31T17:03:36Z,- davidwiese pull request merged: [5380](https://github.com/hackforla/website/pull/5380#event-10247506691) at 2023-08-31 10:03 AM PDT -davidwiese,2023-08-31T17:11:43Z,- davidwiese assigned to issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700370898) at 2023-08-31 10:11 AM PDT -davidwiese,2023-08-31T17:12:26Z,- davidwiese commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1701439512) at 2023-08-31 10:12 AM PDT -davidwiese,2023-09-01T19:07:29Z,- davidwiese opened pull request: [5412](https://github.com/hackforla/website/pull/5412) at 2023-09-01 12:07 PM PDT -davidwiese,2023-09-01T19:13:20Z,- davidwiese commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1703216414) at 2023-09-01 12:13 PM PDT -davidwiese,2023-09-04T03:50:24Z,- davidwiese pull request merged: [5412](https://github.com/hackforla/website/pull/5412#event-10269030243) at 2023-09-03 08:50 PM PDT -davidwiese,2023-09-26T19:11:12Z,- davidwiese assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1699595296) at 2023-09-26 12:11 PM PDT -davidwiese,2023-09-26T19:12:09Z,- davidwiese commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1736141319) at 2023-09-26 12:12 PM PDT -davidwiese,2023-10-03T15:46:09Z,- davidwiese commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745248809) at 2023-10-03 08:46 AM PDT -davidwiese,2023-10-03T15:47:19Z,- davidwiese unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745248809) at 2023-10-03 08:47 AM PDT -dcotelessa,6879,SKILLS ISSUE -dcotelessa,2024-05-22T02:59:22Z,- dcotelessa opened issue: [6879](https://github.com/hackforla/website/issues/6879) at 2024-05-21 07:59 PM PDT -dcotelessa,2024-05-22T02:59:26Z,- dcotelessa assigned to issue: [6879](https://github.com/hackforla/website/issues/6879) at 2024-05-21 07:59 PM PDT -dcotelessa,2024-05-26T03:18:36Z,- dcotelessa assigned to issue: [6723](https://github.com/hackforla/website/issues/6723) at 2024-05-25 08:18 PM PDT -dcotelessa,2024-05-26T04:04:01Z,- dcotelessa opened pull request: [6898](https://github.com/hackforla/website/pull/6898) at 2024-05-25 09:04 PM PDT -dcotelessa,2024-05-26T17:27:00Z,- dcotelessa submitted pull request review: [6897](https://github.com/hackforla/website/pull/6897#pullrequestreview-2079759752) at 2024-05-26 10:27 AM PDT -dcotelessa,2024-05-26T17:43:09Z,- dcotelessa submitted pull request review: [6891](https://github.com/hackforla/website/pull/6891#pullrequestreview-2079761608) at 2024-05-26 10:43 AM PDT -dcotelessa,2024-05-27T04:15:18Z,- dcotelessa submitted pull request review: [6899](https://github.com/hackforla/website/pull/6899#pullrequestreview-2079954942) at 2024-05-26 09:15 PM PDT -dcotelessa,2024-05-27T04:25:00Z,- dcotelessa commented on issue: [6723](https://github.com/hackforla/website/issues/6723#issuecomment-2132617511) at 2024-05-26 09:25 PM PDT -dcotelessa,2024-05-29T19:49:56Z,- dcotelessa commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2138151991) at 2024-05-29 12:49 PM PDT -dcotelessa,2024-05-30T00:01:37Z,- dcotelessa commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2138436860) at 2024-05-29 05:01 PM PDT -dcotelessa,2024-05-30T16:11:26Z,- dcotelessa pull request merged: [6898](https://github.com/hackforla/website/pull/6898#event-12988600173) at 2024-05-30 09:11 AM PDT -dcotelessa,2024-05-31T02:50:13Z,- dcotelessa assigned to issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2138313063) at 2024-05-30 07:50 PM PDT -dcotelessa,2024-06-01T03:53:31Z,- dcotelessa submitted pull request review: [6917](https://github.com/hackforla/website/pull/6917#pullrequestreview-2092002521) at 2024-05-31 08:53 PM PDT -dcotelessa,2024-06-01T06:17:14Z,- dcotelessa opened pull request: [6921](https://github.com/hackforla/website/pull/6921) at 2024-05-31 11:17 PM PDT -dcotelessa,2024-06-02T04:53:16Z,- dcotelessa commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143696663) at 2024-06-01 09:53 PM PDT -dcotelessa,2024-06-02T04:58:38Z,- dcotelessa pull request closed w/o merging: [6921](https://github.com/hackforla/website/pull/6921#event-13010789790) at 2024-06-01 09:58 PM PDT -dcotelessa,2024-06-02T05:00:30Z,- dcotelessa opened pull request: [6924](https://github.com/hackforla/website/pull/6924) at 2024-06-01 10:00 PM PDT -dcotelessa,2024-06-02T05:08:33Z,- dcotelessa commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2143699956) at 2024-06-01 10:08 PM PDT -dcotelessa,2024-06-05T20:27:02Z,- dcotelessa pull request merged: [6924](https://github.com/hackforla/website/pull/6924#event-13057117739) at 2024-06-05 01:27 PM PDT -dcotelessa,2024-06-05T21:13:48Z,- dcotelessa submitted pull request review: [6961](https://github.com/hackforla/website/pull/6961#pullrequestreview-2100301393) at 2024-06-05 02:13 PM PDT -dcotelessa,2024-06-05T23:28:15Z,- dcotelessa submitted pull request review: [6963](https://github.com/hackforla/website/pull/6963#pullrequestreview-2100463695) at 2024-06-05 04:28 PM PDT -dcotelessa,2024-06-05T23:30:11Z,- dcotelessa commented on pull request: [6961](https://github.com/hackforla/website/pull/6961#issuecomment-2151121568) at 2024-06-05 04:30 PM PDT -dcotelessa,2024-06-05T23:30:47Z,- dcotelessa commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2151122046) at 2024-06-05 04:30 PM PDT -dcotelessa,2024-06-06T18:17:47Z,- dcotelessa assigned to issue: [6750](https://github.com/hackforla/website/issues/6750) at 2024-06-06 11:17 AM PDT -dcotelessa,2024-06-07T20:26:22Z,- dcotelessa submitted pull request review: [6965](https://github.com/hackforla/website/pull/6965#pullrequestreview-2105310817) at 2024-06-07 01:26 PM PDT -dcotelessa,2024-06-08T01:53:39Z,- dcotelessa commented on issue: [6750](https://github.com/hackforla/website/issues/6750#issuecomment-2155754181) at 2024-06-07 06:53 PM PDT -dcotelessa,2024-06-11T04:41:21Z,- dcotelessa commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2159780160) at 2024-06-10 09:41 PM PDT -dcotelessa,2024-06-11T04:51:00Z,- dcotelessa commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2159788451) at 2024-06-10 09:51 PM PDT -dcotelessa,2024-06-11T04:54:14Z,- dcotelessa submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2109314396) at 2024-06-10 09:54 PM PDT -dcotelessa,2024-06-11T21:20:36Z,- dcotelessa submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2111474105) at 2024-06-11 02:20 PM PDT -dcotelessa,2024-06-11T21:30:52Z,- dcotelessa submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2111486443) at 2024-06-11 02:30 PM PDT -dcotelessa,2024-06-11T23:11:06Z,- dcotelessa assigned to issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2119336517) at 2024-06-11 04:11 PM PDT -dcotelessa,2024-06-11T23:11:51Z,- dcotelessa commented on issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2161749872) at 2024-06-11 04:11 PM PDT -dcotelessa,2024-06-12T00:20:14Z,- dcotelessa opened pull request: [6989](https://github.com/hackforla/website/pull/6989) at 2024-06-11 05:20 PM PDT -dcotelessa,2024-06-12T02:57:07Z,- dcotelessa submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2111846261) at 2024-06-11 07:57 PM PDT -dcotelessa,2024-06-13T01:44:07Z,- dcotelessa pull request merged: [6989](https://github.com/hackforla/website/pull/6989#event-13139161778) at 2024-06-12 06:44 PM PDT -dcotelessa,2024-06-17T22:53:53Z,- dcotelessa assigned to issue: [6918](https://github.com/hackforla/website/issues/6918) at 2024-06-17 03:53 PM PDT -dcotelessa,2024-06-18T07:10:16Z,- dcotelessa commented on issue: [6918](https://github.com/hackforla/website/issues/6918#issuecomment-2175331401) at 2024-06-18 12:10 AM PDT -dcotelessa,2024-06-18T07:38:40Z,- dcotelessa opened pull request: [7017](https://github.com/hackforla/website/pull/7017) at 2024-06-18 12:38 AM PDT -dcotelessa,2024-06-19T22:30:08Z,- dcotelessa assigned to issue: [6932](https://github.com/hackforla/website/issues/6932) at 2024-06-19 03:30 PM PDT -dcotelessa,2024-06-19T22:52:39Z,- dcotelessa commented on issue: [6932](https://github.com/hackforla/website/issues/6932#issuecomment-2179543026) at 2024-06-19 03:52 PM PDT -dcotelessa,2024-06-19T23:01:00Z,- dcotelessa opened pull request: [7038](https://github.com/hackforla/website/pull/7038) at 2024-06-19 04:01 PM PDT -dcotelessa,2024-06-20T18:47:43Z,- dcotelessa pull request merged: [7017](https://github.com/hackforla/website/pull/7017#event-13233199258) at 2024-06-20 11:47 AM PDT -dcotelessa,2024-06-23T04:17:48Z,- dcotelessa pull request merged: [7038](https://github.com/hackforla/website/pull/7038#event-13253123626) at 2024-06-22 09:17 PM PDT -dcotelessa,2024-06-29T02:59:17Z,- dcotelessa assigned to issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2195396302) at 2024-06-28 07:59 PM PDT -dcotelessa,2024-06-29T05:13:28Z,- dcotelessa opened pull request: [7082](https://github.com/hackforla/website/pull/7082) at 2024-06-28 10:13 PM PDT -dcotelessa,2024-06-29T05:59:04Z,- dcotelessa commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2197996425) at 2024-06-28 10:59 PM PDT -dcotelessa,2024-06-30T17:28:47Z,- dcotelessa assigned to issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2097188674) at 2024-06-30 10:28 AM PDT -dcotelessa,2024-06-30T17:28:55Z,- dcotelessa unassigned from issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2097188674) at 2024-06-30 10:28 AM PDT -dcotelessa,2024-06-30T17:29:41Z,- dcotelessa assigned to issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2198629846) at 2024-06-30 10:29 AM PDT -dcotelessa,2024-07-01T04:40:00Z,- dcotelessa pull request merged: [7082](https://github.com/hackforla/website/pull/7082#event-13344901347) at 2024-06-30 09:40 PM PDT -dcotelessa,2024-07-01T06:17:01Z,- dcotelessa commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2199325171) at 2024-06-30 11:17 PM PDT -dcotelessa,2024-07-01T06:17:20Z,- dcotelessa submitted pull request review: [7081](https://github.com/hackforla/website/pull/7081#pullrequestreview-2150507864) at 2024-06-30 11:17 PM PDT -dcotelessa,2024-07-17T06:30:17Z,- dcotelessa closed issue as completed: [6879](https://github.com/hackforla/website/issues/6879#event-13531506900) at 2024-07-16 11:30 PM PDT -dcotelessa,2024-08-12T00:30:48Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282950525) at 2024-08-11 05:30 PM PDT -dcotelessa,2024-08-12T00:45:03Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282957746) at 2024-08-11 05:45 PM PDT -dcotelessa,2024-08-12T01:03:19Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282966905) at 2024-08-11 06:03 PM PDT -dcotelessa,2024-08-12T01:05:26Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282968062) at 2024-08-11 06:05 PM PDT -dcotelessa,2024-08-12T01:11:50Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282971725) at 2024-08-11 06:11 PM PDT -dcotelessa,2024-08-12T01:49:06Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282992248) at 2024-08-11 06:49 PM PDT -dcotelessa,2024-08-12T01:50:55Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282993409) at 2024-08-11 06:50 PM PDT -dcotelessa,2024-08-12T01:59:27Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283000114) at 2024-08-11 06:59 PM PDT -dcotelessa,2024-08-12T02:20:12Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283012119) at 2024-08-11 07:20 PM PDT -dcotelessa,2024-08-12T02:25:24Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283015870) at 2024-08-11 07:25 PM PDT -dcotelessa,2024-08-12T02:26:41Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283016649) at 2024-08-11 07:26 PM PDT -dcotelessa,2024-08-12T02:26:45Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283016692) at 2024-08-11 07:26 PM PDT -dcotelessa,2024-08-12T02:26:50Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283016736) at 2024-08-11 07:26 PM PDT -dcotelessa,2024-08-12T03:06:22Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283039814) at 2024-08-11 08:06 PM PDT -dcotelessa,2024-08-12T03:14:14Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283044348) at 2024-08-11 08:14 PM PDT -dcotelessa,2024-08-12T04:34:16Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283097103) at 2024-08-11 09:34 PM PDT -dcotelessa,2024-08-12T04:35:20Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2283097789) at 2024-08-11 09:35 PM PDT -dcotelessa,2024-08-12T04:50:51Z,- dcotelessa assigned to issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2212646963) at 2024-08-11 09:50 PM PDT -dcotelessa,2024-08-12T04:51:04Z,- dcotelessa unassigned from issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283108883) at 2024-08-11 09:51 PM PDT -dcotelessa,2024-08-12T06:53:49Z,- dcotelessa assigned to issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283108883) at 2024-08-11 11:53 PM PDT -dcotelessa,2024-08-12T06:54:04Z,- dcotelessa unassigned from issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283227775) at 2024-08-11 11:54 PM PDT -dcotelessa,2024-08-12T06:56:24Z,- dcotelessa unassigned from issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2282828276) at 2024-08-11 11:56 PM PDT -dcotelessa,2024-08-12T06:59:42Z,- dcotelessa assigned to issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2212600792) at 2024-08-11 11:59 PM PDT -dcotelessa,2024-08-12T07:33:37Z,- dcotelessa opened pull request: [7274](https://github.com/hackforla/website/pull/7274) at 2024-08-12 12:33 AM PDT -dcotelessa,2024-08-13T04:25:31Z,- dcotelessa commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2285315077) at 2024-08-12 09:25 PM PDT -dcotelessa,2024-08-13T04:51:16Z,- dcotelessa opened pull request: [7275](https://github.com/hackforla/website/pull/7275) at 2024-08-12 09:51 PM PDT -dcotelessa,2024-08-13T05:05:07Z,- dcotelessa pull request closed w/o merging: [7275](https://github.com/hackforla/website/pull/7275#event-13857677665) at 2024-08-12 10:05 PM PDT -dcotelessa,2024-08-13T05:06:29Z,- dcotelessa pull request closed w/o merging: [7274](https://github.com/hackforla/website/pull/7274#event-13857686268) at 2024-08-12 10:06 PM PDT -dcotelessa,2024-08-14T04:02:07Z,- dcotelessa unassigned from issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2285315077) at 2024-08-13 09:02 PM PDT -dcotelessa,2024-08-14T05:20:33Z,- dcotelessa commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2287877522) at 2024-08-13 10:20 PM PDT -dcotelessa,2024-08-14T06:37:33Z,- dcotelessa assigned to issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2282828276) at 2024-08-13 11:37 PM PDT -dcotelessa,2024-08-14T23:50:09Z,- dcotelessa commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2290094176) at 2024-08-14 04:50 PM PDT -dcotelessa,2024-08-15T00:06:08Z,- dcotelessa opened issue: [7286](https://github.com/hackforla/website/issues/7286) at 2024-08-14 05:06 PM PDT -dcotelessa,2024-08-15T00:18:31Z,- dcotelessa opened issue: [7287](https://github.com/hackforla/website/issues/7287) at 2024-08-14 05:18 PM PDT -dcotelessa,2024-08-15T00:20:36Z,- dcotelessa opened issue: [7288](https://github.com/hackforla/website/issues/7288) at 2024-08-14 05:20 PM PDT -dcotelessa,2024-08-15T00:22:18Z,- dcotelessa opened issue: [7289](https://github.com/hackforla/website/issues/7289) at 2024-08-14 05:22 PM PDT -dcotelessa,2024-08-15T00:23:47Z,- dcotelessa opened issue: [7290](https://github.com/hackforla/website/issues/7290) at 2024-08-14 05:23 PM PDT -dcotelessa,2024-08-15T00:25:52Z,- dcotelessa opened issue: [7291](https://github.com/hackforla/website/issues/7291) at 2024-08-14 05:25 PM PDT -dcotelessa,2024-08-15T00:36:00Z,- dcotelessa opened issue: [7292](https://github.com/hackforla/website/issues/7292) at 2024-08-14 05:36 PM PDT -dcotelessa,2024-08-18T17:13:23Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2295329975) at 2024-08-18 10:13 AM PDT -dcotelessa,2024-08-18T17:14:36Z,- dcotelessa assigned to issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2291440268) at 2024-08-18 10:14 AM PDT -dcotelessa,2024-08-18T17:14:49Z,- dcotelessa unassigned from issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2295330331) at 2024-08-18 10:14 AM PDT -dcotelessa,2024-08-18T17:19:23Z,- dcotelessa commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2295331475) at 2024-08-18 10:19 AM PDT -dcotelessa,2024-08-18T17:19:28Z,- dcotelessa commented on pull request: [7311](https://github.com/hackforla/website/pull/7311#issuecomment-2295331497) at 2024-08-18 10:19 AM PDT -dcotelessa,2024-08-21T00:37:47Z,- dcotelessa commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2299994531) at 2024-08-20 05:37 PM PDT -dcotelessa,2024-08-21T00:38:06Z,- dcotelessa submitted pull request review: [7308](https://github.com/hackforla/website/pull/7308#pullrequestreview-2249337556) at 2024-08-20 05:38 PM PDT -dcotelessa,2024-08-21T01:54:02Z,- dcotelessa submitted pull request review: [7311](https://github.com/hackforla/website/pull/7311#pullrequestreview-2249412381) at 2024-08-20 06:54 PM PDT -dcotelessa,2024-08-22T22:23:39Z,- dcotelessa commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2305849951) at 2024-08-22 03:23 PM PDT -dcotelessa,2024-08-22T22:27:54Z,- dcotelessa submitted pull request review: [7279](https://github.com/hackforla/website/pull/7279#pullrequestreview-2255911119) at 2024-08-22 03:27 PM PDT -dcotelessa,2024-08-25T17:43:56Z,- dcotelessa assigned to issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148607672) at 2024-08-25 10:43 AM PDT -dcotelessa,2024-08-25T17:47:29Z,- dcotelessa unassigned from issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308937772) at 2024-08-25 10:47 AM PDT -dcotelessa,2024-08-25T17:57:59Z,- dcotelessa assigned to issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308937772) at 2024-08-25 10:57 AM PDT -dcotelessa,2024-08-25T18:03:51Z,- dcotelessa unassigned from issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308941749) at 2024-08-25 11:03 AM PDT -dcotelessa,2024-08-25T18:43:40Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2308954573) at 2024-08-25 11:43 AM PDT -dcotelessa,2024-08-25T18:46:11Z,- dcotelessa assigned to issue: [7108](https://github.com/hackforla/website/issues/7108) at 2024-08-25 11:46 AM PDT -dcotelessa,2024-09-08T18:46:02Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2336785121) at 2024-09-08 11:46 AM PDT -dcotelessa,2024-09-08T18:47:01Z,- dcotelessa opened issue: [7410](https://github.com/hackforla/website/issues/7410) at 2024-09-08 11:47 AM PDT -dcotelessa,2024-09-08T18:51:07Z,- dcotelessa opened issue: [7411](https://github.com/hackforla/website/issues/7411) at 2024-09-08 11:51 AM PDT -dcotelessa,2024-09-08T18:53:54Z,- dcotelessa opened issue: [7412](https://github.com/hackforla/website/issues/7412) at 2024-09-08 11:53 AM PDT -dcotelessa,2024-09-08T18:58:03Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2336788935) at 2024-09-08 11:58 AM PDT -dcotelessa,2024-09-12T22:50:05Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2347373279) at 2024-09-12 03:50 PM PDT -dcotelessa,2024-09-13T20:19:43Z,- dcotelessa commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2350092110) at 2024-09-13 01:19 PM PDT -dcotelessa,2024-09-15T17:20:34Z,- dcotelessa assigned to issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2172337604) at 2024-09-15 10:20 AM PDT -dcotelessa,2024-09-16T00:46:08Z,- dcotelessa commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2351868651) at 2024-09-15 05:46 PM PDT -dcotelessa,2024-09-16T03:12:13Z,- dcotelessa opened pull request: [7464](https://github.com/hackforla/website/pull/7464) at 2024-09-15 08:12 PM PDT -dcotelessa,2024-09-16T18:29:00Z,- dcotelessa commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2353618295) at 2024-09-16 11:29 AM PDT -dcotelessa,2024-09-17T01:08:37Z,- dcotelessa assigned to issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354291697) at 2024-09-16 06:08 PM PDT -dcotelessa,2024-09-20T19:11:06Z,- dcotelessa commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2364364982) at 2024-09-20 12:11 PM PDT -dcotelessa,2024-09-24T00:49:36Z,- dcotelessa pull request merged: [7464](https://github.com/hackforla/website/pull/7464#event-14372889361) at 2024-09-23 05:49 PM PDT -dcotelessa,2024-09-24T07:07:07Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2370368767) at 2024-09-24 12:07 AM PDT -dcotelessa,2024-09-29T17:33:57Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2381437234) at 2024-09-29 10:33 AM PDT -dcotelessa,2024-10-15T20:23:50Z,- dcotelessa opened pull request: [7597](https://github.com/hackforla/website/pull/7597) at 2024-10-15 01:23 PM PDT -dcotelessa,2024-10-15T22:04:28Z,- dcotelessa pull request closed w/o merging: [7597](https://github.com/hackforla/website/pull/7597#event-14665158871) at 2024-10-15 03:04 PM PDT -dcotelessa,2024-10-15T22:05:37Z,- dcotelessa commented on pull request: [7597](https://github.com/hackforla/website/pull/7597#issuecomment-2415253138) at 2024-10-15 03:05 PM PDT -dcotelessa,2024-10-21T06:52:51Z,- dcotelessa opened pull request: [7615](https://github.com/hackforla/website/pull/7615) at 2024-10-20 11:52 PM PDT -dcotelessa,2024-10-21T06:54:39Z,- dcotelessa commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2425762934) at 2024-10-20 11:54 PM PDT -dcotelessa,2024-10-30T01:55:55Z,- dcotelessa commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2445656209) at 2024-10-29 06:55 PM PDT -dcotelessa,2024-10-30T02:09:25Z,- dcotelessa pull request merged: [7615](https://github.com/hackforla/website/pull/7615#event-14994711110) at 2024-10-29 07:09 PM PDT -dcotelessa,2024-10-30T02:22:26Z,- dcotelessa commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2445686853) at 2024-10-29 07:22 PM PDT -dcotelessa,2024-10-30T02:22:35Z,- dcotelessa commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2445687008) at 2024-10-29 07:22 PM PDT -dcotelessa,2024-10-31T20:01:57Z,- dcotelessa commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2450715239) at 2024-10-31 01:01 PM PDT -dcotelessa,2024-10-31T20:12:18Z,- dcotelessa commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2450731708) at 2024-10-31 01:12 PM PDT -dcotelessa,2024-10-31T20:12:32Z,- dcotelessa submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2408990599) at 2024-10-31 01:12 PM PDT -dcotelessa,2024-10-31T20:26:23Z,- dcotelessa submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2409015039) at 2024-10-31 01:26 PM PDT -dcotelessa,2024-11-05T23:08:21Z,- dcotelessa assigned to issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458326331) at 2024-11-05 03:08 PM PST -dcotelessa,2024-11-06T22:23:29Z,- dcotelessa commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2460912686) at 2024-11-06 02:23 PM PST -dcotelessa,2024-11-06T22:37:49Z,- dcotelessa opened issue: [7707](https://github.com/hackforla/website/issues/7707) at 2024-11-06 02:37 PM PST -dcotelessa,2024-11-06T22:39:27Z,- dcotelessa commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2460936951) at 2024-11-06 02:39 PM PST -dcotelessa,2024-11-06T22:40:27Z,- dcotelessa commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2460938211) at 2024-11-06 02:40 PM PST -dcotelessa,2024-11-22T22:33:13Z,- dcotelessa commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2494982252) at 2024-11-22 02:33 PM PST -dcotelessa,2025-02-09T18:09:58Z,- dcotelessa commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2646444422) at 2025-02-09 10:09 AM PST -dcotelessa,2025-02-09T23:12:24Z,- dcotelessa submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2604487507) at 2025-02-09 03:12 PM PST -dcotelessa,2025-05-20T00:12:48Z,- dcotelessa unassigned from issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458380444) at 2025-05-19 05:12 PM PDT -ddfridley,2020-01-07T16:57:31Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-571675717) at 2020-01-07 08:57 AM PST -ddfridley,2020-01-27T18:42:17Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-578892188) at 2020-01-27 10:42 AM PST -ddfridley,2020-01-28T04:29:31Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-579074051) at 2020-01-27 08:29 PM PST -ddfridley,2020-03-03T01:47:53Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593723501) at 2020-03-02 05:47 PM PST -ddfridley,2020-03-09T02:06:31Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-596299752) at 2020-03-08 07:06 PM PDT -ddfridley,2020-04-03T04:46:12Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-608226848) at 2020-04-02 09:46 PM PDT -ddfridley,2020-04-04T21:24:52Z,- ddfridley commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-609091177) at 2020-04-04 02:24 PM PDT -ddfridley,2020-04-20T19:40:47Z,- ddfridley commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-616767615) at 2020-04-20 12:40 PM PDT -ddfridley,2020-04-21T18:00:37Z,- ddfridley commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-617321655) at 2020-04-21 11:00 AM PDT -ddfridley,2021-01-13T19:54:37Z,- ddfridley assigned to issue: [954](https://github.com/hackforla/website/issues/954) at 2021-01-13 11:54 AM PST -ddfridley,2021-01-17T18:33:28Z,- ddfridley commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-761858492) at 2021-01-17 10:33 AM PST -ddfridley,2021-01-21T23:04:28Z,- ddfridley commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-764997454) at 2021-01-21 03:04 PM PST -ddfridley,2021-01-22T03:32:06Z,- ddfridley unassigned from issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-21 07:32 PM PST -ddfridley,2021-01-29T03:35:31Z,- ddfridley commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-769552250) at 2021-01-28 07:35 PM PST -ddrosario,2019-04-10T04:18:21Z,- ddrosario opened pull request: [60](https://github.com/hackforla/website/pull/60) at 2019-04-09 09:18 PM PDT -ddrosario,2019-04-17T05:24:18Z,- ddrosario commented on pull request: [60](https://github.com/hackforla/website/pull/60#issuecomment-483941601) at 2019-04-16 10:24 PM PDT -ddrosario,2019-04-23T05:46:43Z,- ddrosario pull request merged: [60](https://github.com/hackforla/website/pull/60#event-2292977695) at 2019-04-22 10:46 PM PDT -ddrosario,2019-05-04T00:36:23Z,- ddrosario opened pull request: [87](https://github.com/hackforla/website/pull/87) at 2019-05-03 05:36 PM PDT -ddrosario,2019-05-04T01:27:39Z,- ddrosario pull request closed w/o merging: [87](https://github.com/hackforla/website/pull/87#event-2318766068) at 2019-05-03 06:27 PM PDT -ddrosario,2019-05-08T02:43:37Z,- ddrosario opened pull request: [94](https://github.com/hackforla/website/pull/94) at 2019-05-07 07:43 PM PDT -ddrosario,2019-05-08T03:50:24Z,- ddrosario pull request merged: [94](https://github.com/hackforla/website/pull/94#event-2326074485) at 2019-05-07 08:50 PM PDT -ddrosario,2019-05-08T23:34:57Z,- ddrosario assigned to issue: [75](https://github.com/hackforla/website/issues/75#event-2315674328) at 2019-05-08 04:34 PM PDT -ddrosario,2019-05-11T00:53:13Z,- ddrosario assigned to issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-10 05:53 PM PDT -ddrosario,2019-05-13T02:52:36Z,- ddrosario opened pull request: [104](https://github.com/hackforla/website/pull/104) at 2019-05-12 07:52 PM PDT -ddrosario,2019-05-13T03:11:47Z,- ddrosario pull request merged: [104](https://github.com/hackforla/website/pull/104#event-2335660597) at 2019-05-12 08:11 PM PDT -ddrosario,2019-05-13T03:16:20Z,- ddrosario unassigned from issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:16 PM PDT -ddrosario,2019-05-22T03:40:25Z,- ddrosario opened pull request: [115](https://github.com/hackforla/website/pull/115) at 2019-05-21 08:40 PM PDT -ddrosario,2019-05-23T03:36:19Z,- ddrosario assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -ddrosario,2019-06-05T01:37:52Z,- ddrosario commented on issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2019-06-04 06:37 PM PDT -ddrosario,2019-06-06T02:55:48Z,- ddrosario opened pull request: [125](https://github.com/hackforla/website/pull/125) at 2019-06-05 07:55 PM PDT -ddrosario,2019-06-06T03:04:49Z,- ddrosario pull request closed w/o merging: [115](https://github.com/hackforla/website/pull/115#event-2393051097) at 2019-06-05 08:04 PM PDT -ddrosario,2019-06-06T03:48:50Z,- ddrosario pull request merged: [125](https://github.com/hackforla/website/pull/125#event-2393099090) at 2019-06-05 08:48 PM PDT -ddrosario,2019-06-12T01:24:36Z,- ddrosario opened pull request: [129](https://github.com/hackforla/website/pull/129) at 2019-06-11 06:24 PM PDT -ddrosario,2019-06-12T03:46:36Z,- ddrosario commented on issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501109564) at 2019-06-11 08:46 PM PDT -ddrosario,2019-06-12T22:49:08Z,- ddrosario pull request merged: [129](https://github.com/hackforla/website/pull/129#event-2408919654) at 2019-06-12 03:49 PM PDT -ddrosario,2019-06-12T22:49:38Z,- ddrosario assigned to issue: [127](https://github.com/hackforla/website/issues/127#event-2408919649) at 2019-06-12 03:49 PM PDT -ddrosario,2020-06-01T02:33:13Z,- ddrosario unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -ddrosario,2020-06-01T03:17:10Z,- ddrosario unassigned from issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2020-05-31 08:17 PM PDT -DDVVPP,7885,SKILLS ISSUE -DDVVPP,2025-02-05T03:55:28Z,- DDVVPP opened issue: [7885](https://github.com/hackforla/website/issues/7885) at 2025-02-04 07:55 PM PST -DDVVPP,2025-02-05T03:55:28Z,- DDVVPP assigned to issue: [7885](https://github.com/hackforla/website/issues/7885) at 2025-02-04 07:55 PM PST -DDVVPP,2025-02-05T04:19:05Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2635667685) at 2025-02-04 08:19 PM PST -DDVVPP,2025-02-06T19:11:55Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2640768211) at 2025-02-06 11:11 AM PST -DDVVPP,2025-02-06T19:12:40Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2640770078) at 2025-02-06 11:12 AM PST -DDVVPP,2025-02-06T19:21:28Z,- DDVVPP assigned to issue: [7774](https://github.com/hackforla/website/issues/7774) at 2025-02-06 11:21 AM PST -DDVVPP,2025-02-06T19:29:16Z,- DDVVPP commented on issue: [7774](https://github.com/hackforla/website/issues/7774#issuecomment-2640804226) at 2025-02-06 11:29 AM PST -DDVVPP,2025-02-06T20:08:23Z,- DDVVPP opened pull request: [7899](https://github.com/hackforla/website/pull/7899) at 2025-02-06 12:08 PM PST -DDVVPP,2025-02-06T20:11:28Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2640895948) at 2025-02-06 12:11 PM PST -DDVVPP,2025-02-12T01:05:26Z,- DDVVPP commented on issue: [7774](https://github.com/hackforla/website/issues/7774#issuecomment-2652407785) at 2025-02-11 05:05 PM PST -DDVVPP,2025-02-12T01:06:12Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2652408703) at 2025-02-11 05:06 PM PST -DDVVPP,2025-02-13T05:50:25Z,- DDVVPP pull request merged: [7899](https://github.com/hackforla/website/pull/7899#event-16290916645) at 2025-02-12 09:50 PM PST -DDVVPP,2025-02-13T22:33:56Z,- DDVVPP submitted pull request review: [7899](https://github.com/hackforla/website/pull/7899#pullrequestreview-2616368625) at 2025-02-13 02:33 PM PST -DDVVPP,2025-02-14T02:33:05Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2658127814) at 2025-02-13 06:33 PM PST -DDVVPP,2025-02-14T03:13:01Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2658168494) at 2025-02-13 07:13 PM PST -DDVVPP,2025-02-14T03:13:59Z,- DDVVPP assigned to issue: [7850](https://github.com/hackforla/website/issues/7850) at 2025-02-13 07:13 PM PST -DDVVPP,2025-02-14T03:37:56Z,- DDVVPP opened pull request: [7908](https://github.com/hackforla/website/pull/7908) at 2025-02-13 07:37 PM PST -DDVVPP,2025-02-19T02:47:37Z,- DDVVPP pull request merged: [7908](https://github.com/hackforla/website/pull/7908#event-16358290415) at 2025-02-18 06:47 PM PST -DDVVPP,2025-02-19T20:50:19Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2669730232) at 2025-02-19 12:50 PM PST -DDVVPP,2025-02-21T21:14:23Z,- DDVVPP commented on pull request: [7932](https://github.com/hackforla/website/pull/7932#issuecomment-2675554544) at 2025-02-21 01:14 PM PST -DDVVPP,2025-02-21T21:41:59Z,- DDVVPP submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2634324569) at 2025-02-21 01:41 PM PST -DDVVPP,2025-02-21T21:45:46Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2675612484) at 2025-02-21 01:45 PM PST -DDVVPP,2025-02-21T21:50:56Z,- DDVVPP commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2675619807) at 2025-02-21 01:50 PM PST -DDVVPP,2025-02-21T23:05:53Z,- DDVVPP submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2634447789) at 2025-02-21 03:05 PM PST -DDVVPP,2025-02-21T23:08:34Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2675795716) at 2025-02-21 03:08 PM PST -DDVVPP,2025-02-25T04:07:14Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2680386736) at 2025-02-24 08:07 PM PST -DDVVPP,2025-02-25T18:42:14Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2682960452) at 2025-02-25 10:42 AM PST -DDVVPP,2025-02-26T01:48:56Z,- DDVVPP assigned to issue: [7824](https://github.com/hackforla/website/issues/7824) at 2025-02-25 05:48 PM PST -DDVVPP,2025-02-26T01:53:43Z,- DDVVPP commented on issue: [7824](https://github.com/hackforla/website/issues/7824#issuecomment-2683694138) at 2025-02-25 05:53 PM PST -DDVVPP,2025-02-26T02:17:02Z,- DDVVPP submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2642861914) at 2025-02-25 06:17 PM PST -DDVVPP,2025-02-26T03:29:01Z,- DDVVPP commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2683804506) at 2025-02-25 07:29 PM PST -DDVVPP,2025-02-26T21:19:05Z,- DDVVPP opened pull request: [7950](https://github.com/hackforla/website/pull/7950) at 2025-02-26 01:19 PM PST -DDVVPP,2025-02-28T01:03:55Z,- DDVVPP submitted pull request review: [7947](https://github.com/hackforla/website/pull/7947#pullrequestreview-2649452667) at 2025-02-27 05:03 PM PST -DDVVPP,2025-02-28T01:06:37Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2689470129) at 2025-02-27 05:06 PM PST -DDVVPP,2025-03-07T01:27:49Z,- DDVVPP pull request merged: [7950](https://github.com/hackforla/website/pull/7950#event-16625359011) at 2025-03-06 05:27 PM PST -DDVVPP,2025-03-07T02:23:21Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2705370113) at 2025-03-06 06:23 PM PST -DDVVPP,2025-03-07T02:26:21Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2705373124) at 2025-03-06 06:26 PM PST -DDVVPP,2025-03-07T21:50:06Z,- DDVVPP commented on pull request: [7983](https://github.com/hackforla/website/pull/7983#issuecomment-2707525636) at 2025-03-07 01:50 PM PST -DDVVPP,2025-03-07T21:50:27Z,- DDVVPP commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2707526104) at 2025-03-07 01:50 PM PST -DDVVPP,2025-03-07T22:03:56Z,- DDVVPP submitted pull request review: [7983](https://github.com/hackforla/website/pull/7983#pullrequestreview-2668479667) at 2025-03-07 02:03 PM PST -DDVVPP,2025-03-07T22:12:58Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2707584627) at 2025-03-07 02:12 PM PST -DDVVPP,2025-03-07T22:31:13Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668529452) at 2025-03-07 02:31 PM PST -DDVVPP,2025-03-07T22:32:42Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668531001) at 2025-03-07 02:32 PM PST -DDVVPP,2025-03-07T22:36:05Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668535175) at 2025-03-07 02:36 PM PST -DDVVPP,2025-03-07T22:51:10Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668571255) at 2025-03-07 02:51 PM PST -DDVVPP,2025-03-07T23:05:03Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2707675754) at 2025-03-07 03:05 PM PST -DDVVPP,2025-03-12T16:43:53Z,- DDVVPP assigned to issue: [7907](https://github.com/hackforla/website/issues/7907) at 2025-03-12 09:43 AM PDT -DDVVPP,2025-03-15T17:26:18Z,- DDVVPP opened issue: [7990](https://github.com/hackforla/website/issues/7990) at 2025-03-15 10:26 AM PDT -DDVVPP,2025-03-15T17:39:15Z,- DDVVPP commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2726820260) at 2025-03-15 10:39 AM PDT -DDVVPP,2025-03-17T16:59:02Z,- DDVVPP commented on pull request: [7992](https://github.com/hackforla/website/pull/7992#issuecomment-2730244331) at 2025-03-17 09:59 AM PDT -DDVVPP,2025-03-17T18:26:57Z,- DDVVPP submitted pull request review: [7992](https://github.com/hackforla/website/pull/7992#pullrequestreview-2691619977) at 2025-03-17 11:26 AM PDT -DDVVPP,2025-03-17T18:28:00Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2730477666) at 2025-03-17 11:28 AM PDT -DDVVPP,2025-03-24T17:42:04Z,- DDVVPP assigned to issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2731318935) at 2025-03-24 10:42 AM PDT -DDVVPP,2025-03-24T17:42:17Z,- DDVVPP unassigned from issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2748940827) at 2025-03-24 10:42 AM PDT -DDVVPP,2025-03-24T17:56:05Z,- DDVVPP commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2748976485) at 2025-03-24 10:56 AM PDT -DDVVPP,2025-03-25T19:47:13Z,- DDVVPP assigned to issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2745913516) at 2025-03-25 12:47 PM PDT -DDVVPP,2025-03-25T19:47:28Z,- DDVVPP unassigned from issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2752351823) at 2025-03-25 12:47 PM PDT -DDVVPP,2025-03-26T02:15:29Z,- DDVVPP submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2715732044) at 2025-03-25 07:15 PM PDT -DDVVPP,2025-04-03T18:55:43Z,- DDVVPP commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2776665424) at 2025-04-03 11:55 AM PDT -DDVVPP,2025-04-04T04:39:37Z,- DDVVPP submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2741757711) at 2025-04-03 09:39 PM PDT -DDVVPP,2025-04-04T04:45:53Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2777545313) at 2025-04-03 09:45 PM PDT -DDVVPP,2025-04-07T22:17:46Z,- DDVVPP commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2784755746) at 2025-04-07 03:17 PM PDT -DDVVPP,2025-04-07T22:17:46Z,- DDVVPP commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2784755746) at 2025-04-07 03:17 PM PDT -DDVVPP,2025-04-10T15:50:14Z,- DDVVPP submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2757354375) at 2025-04-10 08:50 AM PDT -DDVVPP,2025-04-10T15:50:14Z,- DDVVPP submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2757354375) at 2025-04-10 08:50 AM PDT -DDVVPP,2025-04-10T15:55:39Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2794338619) at 2025-04-10 08:55 AM PDT -DDVVPP,2025-04-16T16:41:34Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2810140595) at 2025-04-16 09:41 AM PDT -DDVVPP,2025-04-20T00:14:18Z,- DDVVPP assigned to issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2784538221) at 2025-04-19 05:14 PM PDT -DDVVPP,2025-04-20T00:17:28Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2816917004) at 2025-04-19 05:17 PM PDT -DDVVPP,2025-04-21T17:12:37Z,- DDVVPP submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2781803670) at 2025-04-21 10:12 AM PDT -DDVVPP,2025-04-28T20:47:39Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2836552652) at 2025-04-28 01:47 PM PDT -DDVVPP,2025-05-01T01:04:29Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2843842633) at 2025-04-30 06:04 PM PDT -DDVVPP,2025-05-01T03:01:11Z,- DDVVPP opened pull request: [8103](https://github.com/hackforla/website/pull/8103) at 2025-04-30 08:01 PM PDT -DDVVPP,2025-05-01T03:04:43Z,- DDVVPP commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2843979559) at 2025-04-30 08:04 PM PDT -DDVVPP,2025-05-06T21:41:53Z,- DDVVPP pull request merged: [8103](https://github.com/hackforla/website/pull/8103#event-17544923385) at 2025-05-06 02:41 PM PDT -DDVVPP,2025-05-06T22:44:10Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2856375093) at 2025-05-06 03:44 PM PDT -DDVVPP,2025-05-06T22:46:43Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2856379196) at 2025-05-06 03:46 PM PDT -DDVVPP,2025-05-06T22:48:53Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2856384866) at 2025-05-06 03:48 PM PDT -DDVVPP,2025-05-12T21:18:53Z,- DDVVPP commented on pull request: [8121](https://github.com/hackforla/website/pull/8121#issuecomment-2874140207) at 2025-05-12 02:18 PM PDT -DDVVPP,2025-05-14T23:33:34Z,- DDVVPP submitted pull request review: [8121](https://github.com/hackforla/website/pull/8121#pullrequestreview-2841736852) at 2025-05-14 04:33 PM PDT -DDVVPP,2025-05-19T17:54:47Z,- DDVVPP commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2891832188) at 2025-05-19 10:54 AM PDT -DDVVPP,2025-06-08T21:51:06Z,- DDVVPP assigned to issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2892605953) at 2025-06-08 02:51 PM PDT -DDVVPP,2025-06-18T04:40:39Z,- DDVVPP commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2982649949) at 2025-06-17 09:40 PM PDT -debasistripathy01,2023-02-05T12:56:52Z,- debasistripathy01 opened issue: [3937](https://github.com/hackforla/website/issues/3937) at 2023-02-05 04:56 AM PST -deepak-getpu,6727,SKILLS ISSUE -deepak-getpu,2024-04-24T03:54:30Z,- deepak-getpu opened issue: [6727](https://github.com/hackforla/website/issues/6727) at 2024-04-23 08:54 PM PDT -deepak-getpu,2024-04-24T04:15:45Z,- deepak-getpu assigned to issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2073975284) at 2024-04-23 09:15 PM PDT -deepak-getpu,2024-04-27T02:44:17Z,- deepak-getpu commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2080331180) at 2024-04-26 07:44 PM PDT -deepak-getpu,2024-05-15T02:04:07Z,- deepak-getpu opened pull request: [6856](https://github.com/hackforla/website/pull/6856) at 2024-05-14 07:04 PM PDT -deepak-getpu,2024-05-16T18:50:46Z,- deepak-getpu assigned to issue: [6718](https://github.com/hackforla/website/issues/6718#issuecomment-2115839260) at 2024-05-16 11:50 AM PDT -deepak-getpu,2024-05-16T18:52:57Z,- deepak-getpu commented on issue: [6718](https://github.com/hackforla/website/issues/6718#issuecomment-2115972110) at 2024-05-16 11:52 AM PDT -deepak-getpu,2024-05-21T04:02:10Z,- deepak-getpu commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2121680467) at 2024-05-20 09:02 PM PDT -deepak-getpu,2024-05-21T14:00:45Z,- deepak-getpu commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2122709847) at 2024-05-21 07:00 AM PDT -deepak-getpu,2024-05-22T17:25:51Z,- deepak-getpu opened pull request: [6886](https://github.com/hackforla/website/pull/6886) at 2024-05-22 10:25 AM PDT -deepak-getpu,2024-05-22T17:30:54Z,- deepak-getpu commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2125386903) at 2024-05-22 10:30 AM PDT -deepak-getpu,2024-05-22T17:30:54Z,- deepak-getpu pull request closed w/o merging: [6856](https://github.com/hackforla/website/pull/6856#event-12898395900) at 2024-05-22 10:30 AM PDT -deepak-getpu,2024-05-23T01:52:46Z,- deepak-getpu commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2126048467) at 2024-05-22 06:52 PM PDT -deepak-getpu,2024-05-23T01:54:58Z,- deepak-getpu assigned to issue: [6799](https://github.com/hackforla/website/issues/6799) at 2024-05-22 06:54 PM PDT -deepak-getpu,2024-05-23T01:55:23Z,- deepak-getpu unassigned from issue: [6799](https://github.com/hackforla/website/issues/6799#issuecomment-2126050194) at 2024-05-22 06:55 PM PDT -deepak-getpu,2024-05-23T02:10:08Z,- deepak-getpu assigned to issue: [6845](https://github.com/hackforla/website/issues/6845) at 2024-05-22 07:10 PM PDT -deepak-getpu,2024-05-23T02:17:45Z,- deepak-getpu commented on issue: [6845](https://github.com/hackforla/website/issues/6845#issuecomment-2126068773) at 2024-05-22 07:17 PM PDT -deepak-getpu,2024-05-23T20:37:51Z,- deepak-getpu pull request merged: [6886](https://github.com/hackforla/website/pull/6886#event-12914951084) at 2024-05-23 01:37 PM PDT -deepak-getpu,2024-05-24T03:42:21Z,- deepak-getpu opened pull request: [6892](https://github.com/hackforla/website/pull/6892) at 2024-05-23 08:42 PM PDT -deepak-getpu,2024-05-24T18:28:25Z,- deepak-getpu opened pull request: [6893](https://github.com/hackforla/website/pull/6893) at 2024-05-24 11:28 AM PDT -deepak-getpu,2024-05-24T18:33:05Z,- deepak-getpu pull request closed w/o merging: [6892](https://github.com/hackforla/website/pull/6892#event-12928419292) at 2024-05-24 11:33 AM PDT -deepak-getpu,2024-05-24T18:34:08Z,- deepak-getpu commented on pull request: [6892](https://github.com/hackforla/website/pull/6892#issuecomment-2130143791) at 2024-05-24 11:34 AM PDT -deepak-getpu,2024-05-24T18:34:08Z,- deepak-getpu reopened pull request: [6892](https://github.com/hackforla/website/pull/6892#issuecomment-2130143791) at 2024-05-24 11:34 AM PDT -deepak-getpu,2024-05-24T18:34:50Z,- deepak-getpu pull request closed w/o merging: [6892](https://github.com/hackforla/website/pull/6892#event-12928432670) at 2024-05-24 11:34 AM PDT -deepak-getpu,2024-05-25T16:56:02Z,- deepak-getpu pull request merged: [6893](https://github.com/hackforla/website/pull/6893#event-12933526311) at 2024-05-25 09:56 AM PDT -deepak-getpu,2024-05-27T21:27:42Z,- deepak-getpu closed issue as completed: [6751](https://github.com/hackforla/website/issues/6751#event-12949702515) at 2024-05-27 02:27 PM PDT -deepak-getpu,2024-06-09T18:01:34Z,- deepak-getpu assigned to issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2119379659) at 2024-06-09 11:01 AM PDT -deepak-getpu,2024-06-09T18:03:51Z,- deepak-getpu commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2156721423) at 2024-06-09 11:03 AM PDT -deepak-getpu,2024-06-09T18:06:06Z,- deepak-getpu closed issue as completed: [6578](https://github.com/hackforla/website/issues/6578#event-13092166190) at 2024-06-09 11:06 AM PDT -deepak-getpu,2024-06-09T18:08:52Z,- deepak-getpu commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2156723144) at 2024-06-09 11:08 AM PDT -deepak-getpu,2024-06-12T02:32:01Z,- deepak-getpu reopened issue: [6578](https://github.com/hackforla/website/issues/6578#event-13092166190) at 2024-06-11 07:32 PM PDT -deepak-getpu,2024-06-14T02:18:10Z,- deepak-getpu opened pull request: [7003](https://github.com/hackforla/website/pull/7003) at 2024-06-13 07:18 PM PDT -deepak-getpu,2024-06-14T02:19:26Z,- deepak-getpu pull request closed w/o merging: [7003](https://github.com/hackforla/website/pull/7003#event-13154635057) at 2024-06-13 07:19 PM PDT -deepak-getpu,2024-06-14T02:27:10Z,- deepak-getpu reopened pull request: [7003](https://github.com/hackforla/website/pull/7003#event-13154635057) at 2024-06-13 07:27 PM PDT -deepak-getpu,2024-06-15T02:39:08Z,- deepak-getpu pull request closed w/o merging: [7003](https://github.com/hackforla/website/pull/7003#event-13167202885) at 2024-06-14 07:39 PM PDT -Deepkha,2023-12-10T05:59:44Z,- Deepkha opened pull request: [5980](https://github.com/hackforla/website/pull/5980) at 2023-12-09 09:59 PM PST -Deepkha,2023-12-10T06:18:12Z,- Deepkha commented on issue: [5965](https://github.com/hackforla/website/issues/5965#issuecomment-1848871188) at 2023-12-09 10:18 PM PST -Deepkha,2023-12-11T01:29:16Z,- Deepkha pull request closed w/o merging: [5980](https://github.com/hackforla/website/pull/5980#event-11204356696) at 2023-12-10 05:29 PM PST -del9ra,6716,SKILLS ISSUE -del9ra,2024-04-24T03:07:18Z,- del9ra opened issue: [6716](https://github.com/hackforla/website/issues/6716) at 2024-04-23 08:07 PM PDT -del9ra,2024-04-24T03:07:57Z,- del9ra assigned to issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2073926179) at 2024-04-23 08:07 PM PDT -del9ra,2024-04-28T23:20:22Z,- del9ra assigned to issue: [6704](https://github.com/hackforla/website/issues/6704) at 2024-04-28 04:20 PM PDT -del9ra,2024-04-29T01:57:00Z,- del9ra opened pull request: [6776](https://github.com/hackforla/website/pull/6776) at 2024-04-28 06:57 PM PDT -del9ra,2024-04-30T05:47:00Z,- del9ra pull request merged: [6776](https://github.com/hackforla/website/pull/6776#event-12652540576) at 2024-04-29 10:47 PM PDT -del9ra,2024-04-30T16:21:47Z,- del9ra commented on issue: [6704](https://github.com/hackforla/website/issues/6704#issuecomment-2085855631) at 2024-04-30 09:21 AM PDT -del9ra,2024-04-30T16:50:36Z,- del9ra commented on issue: [6704](https://github.com/hackforla/website/issues/6704#issuecomment-2085969130) at 2024-04-30 09:50 AM PDT -del9ra,2024-04-30T17:15:15Z,- del9ra submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2032056437) at 2024-04-30 10:15 AM PDT -del9ra,2024-04-30T18:06:38Z,- del9ra submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2032153334) at 2024-04-30 11:06 AM PDT -del9ra,2024-04-30T18:10:53Z,- del9ra submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2032160139) at 2024-04-30 11:10 AM PDT -del9ra,2024-04-30T20:16:11Z,- del9ra assigned to issue: [6702](https://github.com/hackforla/website/issues/6702) at 2024-04-30 01:16 PM PDT -del9ra,2024-04-30T21:17:15Z,- del9ra commented on issue: [6702](https://github.com/hackforla/website/issues/6702#issuecomment-2087354134) at 2024-04-30 02:17 PM PDT -del9ra,2024-04-30T21:51:32Z,- del9ra opened pull request: [6792](https://github.com/hackforla/website/pull/6792) at 2024-04-30 02:51 PM PDT -del9ra,2024-05-01T02:23:04Z,- del9ra commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2087881877) at 2024-04-30 07:23 PM PDT -del9ra,2024-05-01T22:36:52Z,- del9ra submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2034567372) at 2024-05-01 03:36 PM PDT -del9ra,2024-05-02T20:07:01Z,- del9ra pull request merged: [6792](https://github.com/hackforla/website/pull/6792#event-12688635310) at 2024-05-02 01:07 PM PDT -del9ra,2024-05-03T15:41:44Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2093267350) at 2024-05-03 08:41 AM PDT -del9ra,2024-05-08T01:28:50Z,- del9ra commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2099564981) at 2024-05-07 06:28 PM PDT -del9ra,2024-05-08T01:46:44Z,- del9ra submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2044474197) at 2024-05-07 06:46 PM PDT -del9ra,2024-05-10T01:14:44Z,- del9ra submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2049077672) at 2024-05-09 06:14 PM PDT -del9ra,2024-05-10T01:17:14Z,- del9ra commented on pull request: [6841](https://github.com/hackforla/website/pull/6841#issuecomment-2103678976) at 2024-05-09 06:17 PM PDT -del9ra,2024-05-10T01:47:08Z,- del9ra submitted pull request review: [6841](https://github.com/hackforla/website/pull/6841#pullrequestreview-2049113551) at 2024-05-09 06:47 PM PDT -del9ra,2024-05-18T02:00:37Z,- del9ra assigned to issue: [6574](https://github.com/hackforla/website/issues/6574) at 2024-05-17 07:00 PM PDT -del9ra,2024-05-20T01:09:41Z,- del9ra commented on issue: [6574](https://github.com/hackforla/website/issues/6574#issuecomment-2119497195) at 2024-05-19 06:09 PM PDT -del9ra,2024-05-20T22:31:02Z,- del9ra opened pull request: [6865](https://github.com/hackforla/website/pull/6865) at 2024-05-20 03:31 PM PDT -del9ra,2024-05-22T02:16:42Z,- del9ra pull request closed w/o merging: [6865](https://github.com/hackforla/website/pull/6865#event-12887392950) at 2024-05-21 07:16 PM PDT -del9ra,2024-05-22T15:01:22Z,- del9ra commented on pull request: [6883](https://github.com/hackforla/website/pull/6883#issuecomment-2125025977) at 2024-05-22 08:01 AM PDT -del9ra,2024-05-22T15:39:07Z,- del9ra submitted pull request review: [6883](https://github.com/hackforla/website/pull/6883#pullrequestreview-2071652660) at 2024-05-22 08:39 AM PDT -del9ra,2024-05-23T19:14:31Z,- del9ra commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2127860225) at 2024-05-23 12:14 PM PDT -del9ra,2024-05-23T19:58:27Z,- del9ra submitted pull request review: [6888](https://github.com/hackforla/website/pull/6888#pullrequestreview-2074887343) at 2024-05-23 12:58 PM PDT -del9ra,2024-05-23T21:32:45Z,- del9ra commented on pull request: [6890](https://github.com/hackforla/website/pull/6890#issuecomment-2128053581) at 2024-05-23 02:32 PM PDT -del9ra,2024-05-23T22:25:12Z,- del9ra submitted pull request review: [6890](https://github.com/hackforla/website/pull/6890#pullrequestreview-2075239610) at 2024-05-23 03:25 PM PDT -del9ra,2024-05-23T22:35:55Z,- del9ra commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2128147353) at 2024-05-23 03:35 PM PDT -del9ra,2024-05-23T23:03:41Z,- del9ra submitted pull request review: [6860](https://github.com/hackforla/website/pull/6860#pullrequestreview-2075275689) at 2024-05-23 04:03 PM PDT -del9ra,2024-05-24T01:13:54Z,- del9ra commented on pull request: [6874](https://github.com/hackforla/website/pull/6874#issuecomment-2128306678) at 2024-05-23 06:13 PM PDT -del9ra,2024-05-24T01:44:17Z,- del9ra submitted pull request review: [6874](https://github.com/hackforla/website/pull/6874#pullrequestreview-2075449906) at 2024-05-23 06:44 PM PDT -del9ra,2024-05-24T02:06:12Z,- del9ra commented on pull request: [6887](https://github.com/hackforla/website/pull/6887#issuecomment-2128354444) at 2024-05-23 07:06 PM PDT -del9ra,2024-05-24T02:37:06Z,- del9ra submitted pull request review: [6887](https://github.com/hackforla/website/pull/6887#pullrequestreview-2075530707) at 2024-05-23 07:37 PM PDT -del9ra,2024-05-24T15:20:12Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2129802271) at 2024-05-24 08:20 AM PDT -del9ra,2024-05-30T13:49:17Z,- del9ra commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2139601278) at 2024-05-30 06:49 AM PDT -del9ra,2024-05-30T17:12:26Z,- del9ra submitted pull request review: [6900](https://github.com/hackforla/website/pull/6900#pullrequestreview-2088906671) at 2024-05-30 10:12 AM PDT -del9ra,2024-05-30T17:36:46Z,- del9ra submitted pull request review: [6897](https://github.com/hackforla/website/pull/6897#pullrequestreview-2089002925) at 2024-05-30 10:36 AM PDT -del9ra,2024-05-30T17:37:27Z,- del9ra commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2140416191) at 2024-05-30 10:37 AM PDT -del9ra,2024-05-30T20:19:02Z,- del9ra commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2140800646) at 2024-05-30 01:19 PM PDT -del9ra,2024-05-30T20:30:24Z,- del9ra submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2089312837) at 2024-05-30 01:30 PM PDT -del9ra,2024-05-30T20:56:47Z,- del9ra commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2140852323) at 2024-05-30 01:56 PM PDT -del9ra,2024-05-30T21:11:58Z,- del9ra submitted pull request review: [6913](https://github.com/hackforla/website/pull/6913#pullrequestreview-2089384520) at 2024-05-30 02:11 PM PDT -del9ra,2024-05-30T21:22:02Z,- del9ra commented on pull request: [6914](https://github.com/hackforla/website/pull/6914#issuecomment-2140884944) at 2024-05-30 02:22 PM PDT -del9ra,2024-05-30T22:00:06Z,- del9ra submitted pull request review: [6914](https://github.com/hackforla/website/pull/6914#pullrequestreview-2089438084) at 2024-05-30 03:00 PM PDT -del9ra,2024-05-31T15:36:23Z,- del9ra assigned to issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2104155654) at 2024-05-31 08:36 AM PDT -del9ra,2024-05-31T15:37:24Z,- del9ra commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2142518257) at 2024-05-31 08:37 AM PDT -del9ra,2024-05-31T18:52:46Z,- del9ra opened issue: [6918](https://github.com/hackforla/website/issues/6918) at 2024-05-31 11:52 AM PDT -del9ra,2024-05-31T19:05:08Z,- del9ra commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2142832732) at 2024-05-31 12:05 PM PDT -del9ra,2024-06-01T15:43:55Z,- del9ra commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2143492362) at 2024-06-01 08:43 AM PDT -del9ra,2024-06-02T14:43:34Z,- del9ra submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2092369462) at 2024-06-02 07:43 AM PDT -del9ra,2024-06-03T17:04:37Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2145714887) at 2024-06-03 10:04 AM PDT -del9ra,2024-06-03T19:34:46Z,- del9ra opened issue: [6931](https://github.com/hackforla/website/issues/6931) at 2024-06-03 12:34 PM PDT -del9ra,2024-06-03T19:38:24Z,- del9ra opened issue: [6932](https://github.com/hackforla/website/issues/6932) at 2024-06-03 12:38 PM PDT -del9ra,2024-06-03T19:41:38Z,- del9ra assigned to issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2060041087) at 2024-06-03 12:41 PM PDT -del9ra,2024-06-04T01:34:26Z,- del9ra commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2146400033) at 2024-06-03 06:34 PM PDT -del9ra,2024-06-09T01:43:18Z,- del9ra opened pull request: [6975](https://github.com/hackforla/website/pull/6975) at 2024-06-08 06:43 PM PDT -del9ra,2024-06-10T01:18:43Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2157008122) at 2024-06-09 06:18 PM PDT -del9ra,2024-06-10T03:46:50Z,- del9ra pull request merged: [6975](https://github.com/hackforla/website/pull/6975#event-13094456353) at 2024-06-09 08:46 PM PDT -del9ra,2024-06-10T18:03:07Z,- del9ra commented on pull request: [6972](https://github.com/hackforla/website/pull/6972#issuecomment-2158979867) at 2024-06-10 11:03 AM PDT -del9ra,2024-06-10T22:01:24Z,- del9ra submitted pull request review: [6972](https://github.com/hackforla/website/pull/6972#pullrequestreview-2108840225) at 2024-06-10 03:01 PM PDT -del9ra,2024-06-13T17:53:15Z,- del9ra commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2166443626) at 2024-06-13 10:53 AM PDT -del9ra,2024-06-13T18:07:13Z,- del9ra submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2116582848) at 2024-06-13 11:07 AM PDT -del9ra,2024-06-13T18:39:52Z,- del9ra commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2166531536) at 2024-06-13 11:39 AM PDT -del9ra,2024-06-13T18:46:20Z,- del9ra submitted pull request review: [6982](https://github.com/hackforla/website/pull/6982#pullrequestreview-2116664029) at 2024-06-13 11:46 AM PDT -del9ra,2024-06-14T00:31:59Z,- del9ra commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2167002620) at 2024-06-13 05:31 PM PDT -del9ra,2024-06-14T00:33:58Z,- del9ra submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2117222125) at 2024-06-13 05:33 PM PDT -del9ra,2024-06-14T00:44:55Z,- del9ra submitted pull request review: [6991](https://github.com/hackforla/website/pull/6991#pullrequestreview-2117229105) at 2024-06-13 05:44 PM PDT -del9ra,2024-06-14T01:20:00Z,- del9ra commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2167041103) at 2024-06-13 06:20 PM PDT -del9ra,2024-06-14T01:28:23Z,- del9ra submitted pull request review: [7001](https://github.com/hackforla/website/pull/7001#pullrequestreview-2117259586) at 2024-06-13 06:28 PM PDT -del9ra,2024-06-14T14:26:46Z,- del9ra commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168164933) at 2024-06-14 07:26 AM PDT -del9ra,2024-06-14T17:50:07Z,- del9ra commented on pull request: [6999](https://github.com/hackforla/website/pull/6999#issuecomment-2168497589) at 2024-06-14 10:50 AM PDT -del9ra,2024-06-14T17:55:29Z,- del9ra submitted pull request review: [6999](https://github.com/hackforla/website/pull/6999#pullrequestreview-2118962766) at 2024-06-14 10:55 AM PDT -del9ra,2024-06-14T18:03:39Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2168516715) at 2024-06-14 11:03 AM PDT -del9ra,2024-06-14T19:34:51Z,- del9ra unassigned from issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168642781) at 2024-06-14 12:34 PM PDT -del9ra,2024-06-18T14:54:11Z,- del9ra commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2176308949) at 2024-06-18 07:54 AM PDT -del9ra,2024-06-18T20:39:43Z,- del9ra submitted pull request review: [6984](https://github.com/hackforla/website/pull/6984#pullrequestreview-2126452256) at 2024-06-18 01:39 PM PDT -del9ra,2024-06-23T17:06:13Z,- del9ra assigned to issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168642781) at 2024-06-23 10:06 AM PDT -del9ra,2024-06-23T17:08:14Z,- del9ra assigned to issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1937883463) at 2024-06-23 10:08 AM PDT -del9ra,2024-06-27T17:00:38Z,- del9ra opened issue: [7072](https://github.com/hackforla/website/issues/7072) at 2024-06-27 10:00 AM PDT -del9ra,2024-06-27T17:00:39Z,- del9ra assigned to issue: [7072](https://github.com/hackforla/website/issues/7072) at 2024-06-27 10:00 AM PDT -del9ra,2024-06-27T17:02:34Z,- del9ra commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2195227679) at 2024-06-27 10:02 AM PDT -del9ra,2024-06-30T18:07:33Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2198638845) at 2024-06-30 11:07 AM PDT -del9ra,2024-07-01T15:20:10Z,- del9ra commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2200442661) at 2024-07-01 08:20 AM PDT -del9ra,2024-07-09T18:47:15Z,- del9ra commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2218412328) at 2024-07-09 11:47 AM PDT -del9ra,2024-08-03T01:50:15Z,- del9ra opened pull request: [7169](https://github.com/hackforla/website/pull/7169) at 2024-08-02 06:50 PM PDT -del9ra,2024-08-08T15:57:39Z,- del9ra commented on pull request: [7169](https://github.com/hackforla/website/pull/7169#issuecomment-2276167443) at 2024-08-08 08:57 AM PDT -del9ra,2024-08-09T13:27:15Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2277945270) at 2024-08-09 06:27 AM PDT -del9ra,2024-08-10T19:43:58Z,- del9ra pull request merged: [7169](https://github.com/hackforla/website/pull/7169#event-13828860171) at 2024-08-10 12:43 PM PDT -del9ra,2024-08-12T02:14:57Z,- del9ra opened issue: [7273](https://github.com/hackforla/website/issues/7273) at 2024-08-11 07:14 PM PDT -del9ra,2024-08-12T21:28:03Z,- del9ra commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2284936767) at 2024-08-12 02:28 PM PDT -del9ra,2024-08-15T20:58:02Z,- del9ra commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2292227584) at 2024-08-15 01:58 PM PDT -del9ra,2024-08-16T21:03:07Z,- del9ra commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2294269081) at 2024-08-16 02:03 PM PDT -del9ra,2024-08-18T17:58:52Z,- del9ra commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2295342089) at 2024-08-18 10:58 AM PDT -del9ra,2024-08-18T17:58:52Z,- del9ra closed issue as completed: [5328](https://github.com/hackforla/website/issues/5328#event-13922619902) at 2024-08-18 10:58 AM PDT -del9ra,2024-08-20T00:41:57Z,- del9ra commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2297755162) at 2024-08-19 05:41 PM PDT -delaradaryaei,6600,SKILLS ISSUE -delaradaryaei,2024-04-09T02:52:14Z,- delaradaryaei opened issue: [6600](https://github.com/hackforla/website/issues/6600) at 2024-04-08 07:52 PM PDT -delaradaryaei,2024-04-09T02:52:47Z,- delaradaryaei assigned to issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2044061333) at 2024-04-08 07:52 PM PDT -DeniseLewis1,6525,SKILLS ISSUE -DeniseLewis1,2024-03-27T03:08:40Z,- DeniseLewis1 opened issue: [6525](https://github.com/hackforla/website/issues/6525) at 2024-03-26 08:08 PM PDT -DeniseLewis1,2024-03-27T03:08:49Z,- DeniseLewis1 assigned to issue: [6525](https://github.com/hackforla/website/issues/6525) at 2024-03-26 08:08 PM PDT -DeniseLewis1,2024-04-03T19:01:19Z,- DeniseLewis1 assigned to issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-2007823099) at 2024-04-03 12:01 PM PDT -DeniseLewis1,2024-04-03T19:05:11Z,- DeniseLewis1 commented on issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-2035376326) at 2024-04-03 12:05 PM PDT -DeniseLewis1,2024-04-03T19:17:18Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2035399939) at 2024-04-03 12:17 PM PDT -DeniseLewis1,2024-04-03T20:36:40Z,- DeniseLewis1 opened pull request: [6560](https://github.com/hackforla/website/pull/6560) at 2024-04-03 01:36 PM PDT -DeniseLewis1,2024-04-05T04:46:01Z,- DeniseLewis1 pull request merged: [6560](https://github.com/hackforla/website/pull/6560#event-12367733902) at 2024-04-04 09:46 PM PDT -DeniseLewis1,2024-04-10T22:39:12Z,- DeniseLewis1 assigned to issue: [6173](https://github.com/hackforla/website/issues/6173) at 2024-04-10 03:39 PM PDT -DeniseLewis1,2024-04-10T22:43:08Z,- DeniseLewis1 commented on issue: [6173](https://github.com/hackforla/website/issues/6173#issuecomment-2048554356) at 2024-04-10 03:43 PM PDT -DeniseLewis1,2024-04-10T23:28:51Z,- DeniseLewis1 opened pull request: [6618](https://github.com/hackforla/website/pull/6618) at 2024-04-10 04:28 PM PDT -DeniseLewis1,2024-04-12T05:03:57Z,- DeniseLewis1 pull request merged: [6618](https://github.com/hackforla/website/pull/6618#event-12444464488) at 2024-04-11 10:03 PM PDT -DeniseLewis1,2024-04-15T18:21:17Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2057539474) at 2024-04-15 11:21 AM PDT -DeniseLewis1,2024-04-17T19:17:14Z,- DeniseLewis1 assigned to issue: [6539](https://github.com/hackforla/website/issues/6539#issuecomment-2030895981) at 2024-04-17 12:17 PM PDT -DeniseLewis1,2024-04-17T19:19:13Z,- DeniseLewis1 commented on issue: [6539](https://github.com/hackforla/website/issues/6539#issuecomment-2062034746) at 2024-04-17 12:19 PM PDT -DeniseLewis1,2024-04-17T21:41:28Z,- DeniseLewis1 opened pull request: [6659](https://github.com/hackforla/website/pull/6659) at 2024-04-17 02:41 PM PDT -DeniseLewis1,2024-04-19T22:47:16Z,- DeniseLewis1 pull request merged: [6659](https://github.com/hackforla/website/pull/6659#event-12545612980) at 2024-04-19 03:47 PM PDT -DeniseLewis1,2024-04-30T22:52:39Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2087663334) at 2024-04-30 03:52 PM PDT -DeniseLewis1,2024-05-03T18:39:58Z,- DeniseLewis1 commented on pull request: [6808](https://github.com/hackforla/website/pull/6808#issuecomment-2093561056) at 2024-05-03 11:39 AM PDT -DeniseLewis1,2024-05-03T19:21:10Z,- DeniseLewis1 submitted pull request review: [6808](https://github.com/hackforla/website/pull/6808#pullrequestreview-2038866060) at 2024-05-03 12:21 PM PDT -DeniseLewis1,2024-05-10T15:57:31Z,- DeniseLewis1 commented on pull request: [6841](https://github.com/hackforla/website/pull/6841#issuecomment-2104850458) at 2024-05-10 08:57 AM PDT -DeniseLewis1,2024-05-10T16:50:01Z,- DeniseLewis1 submitted pull request review: [6841](https://github.com/hackforla/website/pull/6841#pullrequestreview-2050479166) at 2024-05-10 09:50 AM PDT -DeniseLewis1,2024-05-10T16:57:11Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2104940322) at 2024-05-10 09:57 AM PDT -DeniseLewis1,2024-05-24T16:49:00Z,- DeniseLewis1 commented on pull request: [6890](https://github.com/hackforla/website/pull/6890#issuecomment-2129981742) at 2024-05-24 09:49 AM PDT -DeniseLewis1,2024-05-24T19:41:50Z,- DeniseLewis1 submitted pull request review: [6890](https://github.com/hackforla/website/pull/6890#pullrequestreview-2077760616) at 2024-05-24 12:41 PM PDT -DeniseLewis1,2024-05-29T23:24:59Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2138410491) at 2024-05-29 04:24 PM PDT -DeniseLewis1,2024-06-04T18:44:52Z,- DeniseLewis1 commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2148182570) at 2024-06-04 11:44 AM PDT -DeniseLewis1,2024-06-04T19:10:19Z,- DeniseLewis1 submitted pull request review: [6925](https://github.com/hackforla/website/pull/6925#pullrequestreview-2097200086) at 2024-06-04 12:10 PM PDT -DeniseLewis1,2024-06-14T19:47:07Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2168659437) at 2024-06-14 12:47 PM PDT -DeniseLewis1,2024-09-03T16:09:01Z,- DeniseLewis1 commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2326907014) at 2024-09-03 09:09 AM PDT -dependabot,2020-04-29T18:00:55Z,- dependabot opened pull request: [474](https://github.com/hackforla/website/pull/474) at 2020-04-29 11:00 AM PDT -dependabot,2020-04-30T05:51:34Z,- dependabot pull request merged: [474](https://github.com/hackforla/website/pull/474#event-3287645291) at 2020-04-29 10:51 PM PDT -dependabot,2020-07-19T18:20:15Z,- dependabot opened pull request: [613](https://github.com/hackforla/website/pull/613) at 2020-07-19 11:20 AM PDT -dependabot,2020-07-23T04:41:04Z,- dependabot pull request merged: [613](https://github.com/hackforla/website/pull/613#event-3578404727) at 2020-07-22 09:41 PM PDT -dependabot,2020-09-12T16:02:49Z,- dependabot opened pull request: [727](https://github.com/hackforla/website/pull/727) at 2020-09-12 09:02 AM PDT -dependabot,2020-09-13T04:00:37Z,- dependabot pull request merged: [727](https://github.com/hackforla/website/pull/727#event-3760061545) at 2020-09-12 09:00 PM PDT -dependabot,2020-10-01T17:32:35Z,- dependabot opened pull request: [762](https://github.com/hackforla/website/pull/762) at 2020-10-01 10:32 AM PDT -dependabot,2020-10-16T01:10:26Z,- dependabot pull request merged: [762](https://github.com/hackforla/website/pull/762#event-3884149557) at 2020-10-15 06:10 PM PDT -dependabot,2022-04-23T10:09:17Z,- dependabot opened pull request: [3077](https://github.com/hackforla/website/pull/3077) at 2022-04-23 03:09 AM PDT -dependabot,2022-06-26T19:34:16Z,- dependabot commented on pull request: [3077](https://github.com/hackforla/website/pull/3077#issuecomment-1166624841) at 2022-06-26 12:34 PM PDT -dependabot,2022-06-26T19:34:17Z,- dependabot pull request closed w/o merging: [3077](https://github.com/hackforla/website/pull/3077#event-6880798158) at 2022-06-26 12:34 PM PDT -dependabot,2022-08-18T19:59:31Z,- dependabot opened pull request: [3474](https://github.com/hackforla/website/pull/3474) at 2022-08-18 12:59 PM PDT -dependabot,2022-08-24T01:17:15Z,- dependabot pull request merged: [3474](https://github.com/hackforla/website/pull/3474#event-7246563425) at 2022-08-23 06:17 PM PDT -dependabot,2023-05-26T02:58:00Z,- dependabot opened pull request: [4734](https://github.com/hackforla/website/pull/4734) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:03Z,- dependabot opened pull request: [4735](https://github.com/hackforla/website/pull/4735) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:06Z,- dependabot opened pull request: [4736](https://github.com/hackforla/website/pull/4736) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:08Z,- dependabot opened pull request: [4737](https://github.com/hackforla/website/pull/4737) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:10Z,- dependabot opened pull request: [4738](https://github.com/hackforla/website/pull/4738) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:11Z,- dependabot opened pull request: [4739](https://github.com/hackforla/website/pull/4739) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:20Z,- dependabot opened pull request: [4740](https://github.com/hackforla/website/pull/4740) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:31Z,- dependabot opened pull request: [4741](https://github.com/hackforla/website/pull/4741) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:39Z,- dependabot opened pull request: [4742](https://github.com/hackforla/website/pull/4742) at 2023-05-25 07:58 PM PDT -dependabot,2023-05-26T02:58:46Z,- dependabot opened pull request: [4743](https://github.com/hackforla/website/pull/4743) at 2023-05-25 07:58 PM PDT -dependabot,2023-06-08T19:13:17Z,- dependabot pull request merged: [4736](https://github.com/hackforla/website/pull/4736#event-9476022106) at 2023-06-08 12:13 PM PDT -dependabot,2023-06-09T00:05:09Z,- dependabot opened pull request: [4791](https://github.com/hackforla/website/pull/4791) at 2023-06-08 05:05 PM PDT -dependabot,2023-06-17T00:00:33Z,- dependabot opened pull request: [4849](https://github.com/hackforla/website/pull/4849) at 2023-06-16 05:00 PM PDT -dependabot,2023-06-17T00:00:37Z,- dependabot commented on pull request: [4741](https://github.com/hackforla/website/pull/4741#issuecomment-1595495786) at 2023-06-16 05:00 PM PDT -dependabot,2023-06-17T00:00:38Z,- dependabot pull request closed w/o merging: [4741](https://github.com/hackforla/website/pull/4741#event-9556971694) at 2023-06-16 05:00 PM PDT -dependabot,2023-07-09T21:29:26Z,- dependabot commented on pull request: [4737](https://github.com/hackforla/website/pull/4737#issuecomment-1627830215) at 2023-07-09 02:29 PM PDT -dependabot,2023-07-09T21:29:28Z,- dependabot pull request closed w/o merging: [4737](https://github.com/hackforla/website/pull/4737#event-9767907787) at 2023-07-09 02:29 PM PDT -dependabot,2023-07-10T05:02:23Z,- dependabot pull request merged: [4743](https://github.com/hackforla/website/pull/4743#event-9769862259) at 2023-07-09 10:02 PM PDT -dependabot,2023-07-10T05:43:16Z,- dependabot pull request merged: [4735](https://github.com/hackforla/website/pull/4735#event-9770083592) at 2023-07-09 10:43 PM PDT -dependabot,2023-07-10T05:46:17Z,- dependabot pull request merged: [4739](https://github.com/hackforla/website/pull/4739#event-9770100715) at 2023-07-09 10:46 PM PDT -dependabot,2023-07-10T06:04:19Z,- dependabot pull request merged: [4740](https://github.com/hackforla/website/pull/4740#event-9770219657) at 2023-07-09 11:04 PM PDT -dependabot,2023-07-10T21:49:24Z,- dependabot pull request merged: [4742](https://github.com/hackforla/website/pull/4742#event-9780175165) at 2023-07-10 02:49 PM PDT -dependabot,2023-07-10T23:31:35Z,- dependabot opened pull request: [4929](https://github.com/hackforla/website/pull/4929) at 2023-07-10 04:31 PM PDT -dependabot,2023-07-10T23:31:39Z,- dependabot opened pull request: [4930](https://github.com/hackforla/website/pull/4930) at 2023-07-10 04:31 PM PDT -dependabot,2023-07-11T23:31:15Z,- dependabot opened pull request: [4940](https://github.com/hackforla/website/pull/4940) at 2023-07-11 04:31 PM PDT -dependabot,2023-07-11T23:31:18Z,- dependabot commented on pull request: [4849](https://github.com/hackforla/website/pull/4849#issuecomment-1631635271) at 2023-07-11 04:31 PM PDT -dependabot,2023-07-11T23:31:19Z,- dependabot pull request closed w/o merging: [4849](https://github.com/hackforla/website/pull/4849#event-9793049587) at 2023-07-11 04:31 PM PDT -dependabot,2023-07-12T06:16:21Z,- dependabot pull request merged: [4791](https://github.com/hackforla/website/pull/4791#event-9794931332) at 2023-07-11 11:16 PM PDT -dependabot,2023-07-12T06:17:08Z,- dependabot opened pull request: [4941](https://github.com/hackforla/website/pull/4941) at 2023-07-11 11:17 PM PDT -dependabot,2023-07-12T06:42:20Z,- dependabot pull request merged: [4941](https://github.com/hackforla/website/pull/4941#event-9795118497) at 2023-07-11 11:42 PM PDT -dependabot,2023-07-14T04:08:54Z,- dependabot pull request merged: [4929](https://github.com/hackforla/website/pull/4929#event-9817626703) at 2023-07-13 09:08 PM PDT -dependabot,2023-07-14T04:37:24Z,- dependabot pull request merged: [4930](https://github.com/hackforla/website/pull/4930#event-9817762097) at 2023-07-13 09:37 PM PDT -dependabot,2023-07-14T05:33:01Z,- dependabot pull request merged: [4940](https://github.com/hackforla/website/pull/4940#event-9818032033) at 2023-07-13 10:33 PM PDT -dependabot,2023-07-15T06:05:55Z,- dependabot pull request merged: [4738](https://github.com/hackforla/website/pull/4738#event-9827718190) at 2023-07-14 11:05 PM PDT -dependabot,2023-07-17T18:26:54Z,- dependabot commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1638656114) at 2023-07-17 11:26 AM PDT -dependabot,2023-07-17T18:26:57Z,- dependabot pull request closed w/o merging: [4734](https://github.com/hackforla/website/pull/4734#event-9841209002) at 2023-07-17 11:26 AM PDT -dependabot,2023-08-04T23:58:23Z,- dependabot opened pull request: [5143](https://github.com/hackforla/website/pull/5143) at 2023-08-04 04:58 PM PDT -dependabot,2023-08-08T17:53:25Z,- dependabot pull request merged: [5143](https://github.com/hackforla/website/pull/5143#event-10038496239) at 2023-08-08 10:53 AM PDT -dependabot,2023-09-04T23:28:38Z,- dependabot opened pull request: [5443](https://github.com/hackforla/website/pull/5443) at 2023-09-04 04:28 PM PDT -dependabot,2023-09-11T23:33:18Z,- dependabot opened pull request: [5478](https://github.com/hackforla/website/pull/5478) at 2023-09-11 04:33 PM PDT -dependabot,2023-09-13T05:24:38Z,- dependabot pull request merged: [5478](https://github.com/hackforla/website/pull/5478#event-10354961508) at 2023-09-12 10:24 PM PDT -dependabot,2023-09-25T23:05:02Z,- dependabot opened pull request: [5582](https://github.com/hackforla/website/pull/5582) at 2023-09-25 04:05 PM PDT -dependabot,2023-09-30T03:40:04Z,- dependabot commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1741647434) at 2023-09-29 08:40 PM PDT -dependabot,2023-09-30T04:04:17Z,- dependabot pull request merged: [5582](https://github.com/hackforla/website/pull/5582#event-10516538834) at 2023-09-29 09:04 PM PDT -dependabot,2023-10-06T23:08:07Z,- dependabot opened pull request: [5669](https://github.com/hackforla/website/pull/5669) at 2023-10-06 04:08 PM PDT -dependabot,2023-10-06T23:57:24Z,- dependabot opened pull request: [5670](https://github.com/hackforla/website/pull/5670) at 2023-10-06 04:57 PM PDT -dependabot,2023-10-09T23:57:53Z,- dependabot opened pull request: [5689](https://github.com/hackforla/website/pull/5689) at 2023-10-09 04:57 PM PDT -dependabot,2023-10-10T23:46:58Z,- dependabot opened pull request: [5700](https://github.com/hackforla/website/pull/5700) at 2023-10-10 04:46 PM PDT -dependabot,2023-10-14T21:51:06Z,- dependabot pull request merged: [5689](https://github.com/hackforla/website/pull/5689#event-10655971929) at 2023-10-14 02:51 PM PDT -dependabot,2023-10-20T02:13:52Z,- dependabot pull request merged: [5670](https://github.com/hackforla/website/pull/5670#event-10718879800) at 2023-10-19 07:13 PM PDT -dependabot,2023-10-20T02:48:06Z,- dependabot pull request merged: [5669](https://github.com/hackforla/website/pull/5669#event-10719083197) at 2023-10-19 07:48 PM PDT -dependabot,2023-10-20T02:49:11Z,- dependabot opened pull request: [5741](https://github.com/hackforla/website/pull/5741) at 2023-10-19 07:49 PM PDT -dependabot,2023-10-20T03:16:33Z,- dependabot pull request merged: [5700](https://github.com/hackforla/website/pull/5700#event-10719230500) at 2023-10-19 08:16 PM PDT -dependabot,2023-10-21T21:47:11Z,- dependabot pull request merged: [5741](https://github.com/hackforla/website/pull/5741#event-10732166386) at 2023-10-21 02:47 PM PDT -dependabot,2023-10-23T23:54:31Z,- dependabot opened pull request: [5769](https://github.com/hackforla/website/pull/5769) at 2023-10-23 04:54 PM PDT -dependabot,2023-10-29T17:58:03Z,- dependabot pull request merged: [5769](https://github.com/hackforla/website/pull/5769#event-10800321452) at 2023-10-29 10:58 AM PDT -dependabot,2023-11-07T04:03:14Z,- dependabot pull request merged: [5443](https://github.com/hackforla/website/pull/5443#event-10881575713) at 2023-11-06 08:03 PM PST -dependabot,2023-11-13T23:10:44Z,- dependabot opened pull request: [5899](https://github.com/hackforla/website/pull/5899) at 2023-11-13 03:10 PM PST -dependabot,2023-11-23T05:08:21Z,- dependabot pull request merged: [5899](https://github.com/hackforla/website/pull/5899#event-11043280991) at 2023-11-22 09:08 PM PST -dependabot,2023-12-13T23:37:38Z,- dependabot opened pull request: [6005](https://github.com/hackforla/website/pull/6005) at 2023-12-13 03:37 PM PST -dependabot,2023-12-14T23:39:59Z,- dependabot opened pull request: [6008](https://github.com/hackforla/website/pull/6008) at 2023-12-14 03:39 PM PST -dependabot,2023-12-14T23:40:04Z,- dependabot opened pull request: [6009](https://github.com/hackforla/website/pull/6009) at 2023-12-14 03:40 PM PST -dependabot,2023-12-21T04:41:01Z,- dependabot pull request merged: [6005](https://github.com/hackforla/website/pull/6005#event-11310168269) at 2023-12-20 08:41 PM PST -dependabot,2023-12-21T05:02:47Z,- dependabot pull request merged: [6009](https://github.com/hackforla/website/pull/6009#event-11310299566) at 2023-12-20 09:02 PM PST -dependabot,2023-12-21T05:17:39Z,- dependabot pull request merged: [6008](https://github.com/hackforla/website/pull/6008#event-11310402531) at 2023-12-20 09:17 PM PST -dependabot,2024-01-03T23:26:19Z,- dependabot opened pull request: [6057](https://github.com/hackforla/website/pull/6057) at 2024-01-03 03:26 PM PST -dependabot,2024-01-07T04:11:23Z,- dependabot pull request merged: [6057](https://github.com/hackforla/website/pull/6057#event-11410238658) at 2024-01-06 08:11 PM PST -dependabot,2024-02-16T18:11:29Z,- dependabot opened pull request: [6304](https://github.com/hackforla/website/pull/6304) at 2024-02-16 10:11 AM PST -dependabot,2024-02-25T02:48:47Z,- dependabot pull request merged: [6304](https://github.com/hackforla/website/pull/6304#event-11912046202) at 2024-02-24 06:48 PM PST -dependabot,2024-03-04T23:17:41Z,- dependabot opened pull request: [6415](https://github.com/hackforla/website/pull/6415) at 2024-03-04 03:17 PM PST -dependabot,2024-03-10T03:27:06Z,- dependabot pull request merged: [6415](https://github.com/hackforla/website/pull/6415#event-12064429482) at 2024-03-09 08:27 PM PDT -dependabot,2024-04-03T23:19:14Z,- dependabot opened pull request: [6562](https://github.com/hackforla/website/pull/6562) at 2024-04-03 04:19 PM PDT -dependabot,2024-04-04T17:28:02Z,- dependabot opened pull request: [6565](https://github.com/hackforla/website/pull/6565) at 2024-04-04 10:28 AM PDT -dependabot,2024-04-12T23:56:15Z,- dependabot opened pull request: [6634](https://github.com/hackforla/website/pull/6634) at 2024-04-12 04:56 PM PDT -dependabot,2024-04-15T01:38:50Z,- dependabot pull request merged: [6562](https://github.com/hackforla/website/pull/6562#event-12461973584) at 2024-04-14 06:38 PM PDT -dependabot,2024-04-15T01:47:14Z,- dependabot pull request merged: [6565](https://github.com/hackforla/website/pull/6565#event-12462022633) at 2024-04-14 06:47 PM PDT -dependabot,2024-04-15T02:15:29Z,- dependabot pull request merged: [6634](https://github.com/hackforla/website/pull/6634#event-12462189286) at 2024-04-14 07:15 PM PDT -dependabot,2024-04-23T23:42:16Z,- dependabot opened pull request: [6713](https://github.com/hackforla/website/pull/6713) at 2024-04-23 04:42 PM PDT -dependabot,2024-04-29T23:59:37Z,- dependabot opened pull request: [6785](https://github.com/hackforla/website/pull/6785) at 2024-04-29 04:59 PM PDT -dependabot,2024-05-02T02:57:03Z,- dependabot pull request merged: [6785](https://github.com/hackforla/website/pull/6785#event-12676910002) at 2024-05-01 07:57 PM PDT -dependabot,2024-05-03T23:50:34Z,- dependabot opened pull request: [6813](https://github.com/hackforla/website/pull/6813) at 2024-05-03 04:50 PM PDT -dependabot,2024-05-05T17:18:35Z,- dependabot pull request merged: [6813](https://github.com/hackforla/website/pull/6813#event-12707917144) at 2024-05-05 10:18 AM PDT -dependabot,2024-05-21T04:18:24Z,- dependabot pull request closed w/o merging: [6713](https://github.com/hackforla/website/pull/6713#event-12873610675) at 2024-05-20 09:18 PM PDT -dependabot,2024-05-21T04:18:25Z,- dependabot commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2121708463) at 2024-05-20 09:18 PM PDT -dependabot,2024-05-24T23:59:45Z,- dependabot opened pull request: [6895](https://github.com/hackforla/website/pull/6895) at 2024-05-24 04:59 PM PDT -dependabot,2024-05-25T02:32:12Z,- dependabot pull request closed w/o merging: [6895](https://github.com/hackforla/website/pull/6895#event-12930941688) at 2024-05-24 07:32 PM PDT -dependabot,2024-05-25T02:32:13Z,- dependabot commented on pull request: [6895](https://github.com/hackforla/website/pull/6895#issuecomment-2130681744) at 2024-05-24 07:32 PM PDT -dependabot,2024-06-20T23:29:00Z,- dependabot opened pull request: [7041](https://github.com/hackforla/website/pull/7041) at 2024-06-20 04:29 PM PDT -dependabot,2024-07-17T23:27:46Z,- dependabot opened pull request: [7127](https://github.com/hackforla/website/pull/7127) at 2024-07-17 04:27 PM PDT -dependabot,2024-07-19T20:50:52Z,- dependabot commented on pull request: [7041](https://github.com/hackforla/website/pull/7041#issuecomment-2240086301) at 2024-07-19 01:50 PM PDT -dependabot,2024-07-19T20:50:52Z,- dependabot commented on pull request: [7127](https://github.com/hackforla/website/pull/7127#issuecomment-2240086294) at 2024-07-19 01:50 PM PDT -dependabot,2024-07-19T20:50:53Z,- dependabot pull request closed w/o merging: [7041](https://github.com/hackforla/website/pull/7041#event-13581006851) at 2024-07-19 01:50 PM PDT -dependabot,2024-07-19T20:50:53Z,- dependabot pull request closed w/o merging: [7127](https://github.com/hackforla/website/pull/7127#event-13581006775) at 2024-07-19 01:50 PM PDT -dependabot,2025-02-17T17:24:12Z,- dependabot opened pull request: [7913](https://github.com/hackforla/website/pull/7913) at 2025-02-17 09:24 AM PST -dependabot,2025-02-17T17:51:02Z,- dependabot pull request merged: [7913](https://github.com/hackforla/website/pull/7913#event-16337359323) at 2025-02-17 09:51 AM PST -dependabot,2025-02-17T17:52:05Z,- dependabot opened pull request: [7914](https://github.com/hackforla/website/pull/7914) at 2025-02-17 09:52 AM PST -dependabot,2025-02-17T17:52:05Z,- dependabot opened pull request: [7915](https://github.com/hackforla/website/pull/7915) at 2025-02-17 09:52 AM PST -dependabot,2025-02-17T18:49:16Z,- dependabot pull request merged: [7914](https://github.com/hackforla/website/pull/7914#event-16337869580) at 2025-02-17 10:49 AM PST -dependabot,2025-02-17T19:07:27Z,- dependabot pull request merged: [7915](https://github.com/hackforla/website/pull/7915#event-16338017534) at 2025-02-17 11:07 AM PST -dependabot,2025-02-17T23:28:52Z,- dependabot opened pull request: [7916](https://github.com/hackforla/website/pull/7916) at 2025-02-17 03:28 PM PST -dependabot,2025-02-18T00:02:21Z,- dependabot opened pull request: [7917](https://github.com/hackforla/website/pull/7917) at 2025-02-17 04:02 PM PST -dependabot,2025-02-18T00:02:25Z,- dependabot opened pull request: [7918](https://github.com/hackforla/website/pull/7918) at 2025-02-17 04:02 PM PST -dependabot,2025-02-18T19:22:43Z,- dependabot opened pull request: [7920](https://github.com/hackforla/website/pull/7920) at 2025-02-18 11:22 AM PST -dependabot,2025-03-02T04:26:06Z,- dependabot pull request merged: [7917](https://github.com/hackforla/website/pull/7917#event-16524069492) at 2025-03-01 08:26 PM PST -dependabot,2025-03-02T04:27:02Z,- dependabot opened pull request: [7961](https://github.com/hackforla/website/pull/7961) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:27:12Z,- dependabot commented on pull request: [7920](https://github.com/hackforla/website/pull/7920#issuecomment-2692551342) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:27:13Z,- dependabot pull request closed w/o merging: [7920](https://github.com/hackforla/website/pull/7920#event-16524070889) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:27:19Z,- dependabot commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2692551369) at 2025-03-01 08:27 PM PST -dependabot,2025-03-02T04:32:30Z,- dependabot pull request merged: [7918](https://github.com/hackforla/website/pull/7918#event-16524077740) at 2025-03-01 08:32 PM PST -dependabot,2025-03-02T04:45:21Z,- dependabot pull request merged: [7916](https://github.com/hackforla/website/pull/7916#event-16524095181) at 2025-03-01 08:45 PM PST -dependabot,2025-03-02T04:56:43Z,- dependabot pull request merged: [7961](https://github.com/hackforla/website/pull/7961#event-16524110074) at 2025-03-01 08:56 PM PST -dependabot,2025-04-21T23:43:24Z,- dependabot opened pull request: [8076](https://github.com/hackforla/website/pull/8076) at 2025-04-21 04:43 PM PDT -dependabot,2025-04-27T19:21:37Z,- dependabot pull request merged: [8076](https://github.com/hackforla/website/pull/8076#event-17424689383) at 2025-04-27 12:21 PM PDT -dependabot,2025-05-15T16:31:28Z,- dependabot opened pull request: [8144](https://github.com/hackforla/website/pull/8144) at 2025-05-15 09:31 AM PDT -dependabot,2025-05-19T03:27:52Z,- dependabot pull request merged: [8144](https://github.com/hackforla/website/pull/8144#event-17706405231) at 2025-05-18 08:27 PM PDT -dependabot,2025-05-26T23:12:53Z,- dependabot opened pull request: [8161](https://github.com/hackforla/website/pull/8161) at 2025-05-26 04:12 PM PDT -dependabot,2025-06-04T17:46:59Z,- dependabot pull request merged: [8161](https://github.com/hackforla/website/pull/8161#event-17986432968) at 2025-06-04 10:46 AM PDT -dependabot,2025-06-10T23:31:22Z,- dependabot opened pull request: [8179](https://github.com/hackforla/website/pull/8179) at 2025-06-10 04:31 PM PDT -dependabot,2025-06-11T23:22:05Z,- dependabot opened pull request: [8182](https://github.com/hackforla/website/pull/8182) at 2025-06-11 04:22 PM PDT -dependabot,2025-06-11T23:22:07Z,- dependabot commented on pull request: [8179](https://github.com/hackforla/website/pull/8179#issuecomment-2964528812) at 2025-06-11 04:22 PM PDT -dependabot,2025-06-11T23:22:07Z,- dependabot pull request closed w/o merging: [8179](https://github.com/hackforla/website/pull/8179#event-18103171116) at 2025-06-11 04:22 PM PDT -dependabot,2025-06-14T20:42:05Z,- dependabot pull request merged: [8182](https://github.com/hackforla/website/pull/8182#event-18152285048) at 2025-06-14 01:42 PM PDT -DeviantSchemist,4987,SKILLS ISSUE -DeviantSchemist,2023-07-18T02:01:20Z,- DeviantSchemist opened issue: [4987](https://github.com/hackforla/website/issues/4987) at 2023-07-17 07:01 PM PDT -DeviantSchemist,2023-07-18T02:41:12Z,- DeviantSchemist assigned to issue: [4987](https://github.com/hackforla/website/issues/4987) at 2023-07-17 07:41 PM PDT -DeviantSchemist,2023-07-20T00:41:09Z,- DeviantSchemist assigned to issue: [4920](https://github.com/hackforla/website/issues/4920#issuecomment-1624445286) at 2023-07-19 05:41 PM PDT -DeviantSchemist,2023-07-20T07:10:09Z,- DeviantSchemist commented on issue: [4920](https://github.com/hackforla/website/issues/4920#issuecomment-1643396229) at 2023-07-20 12:10 AM PDT -DeviantSchemist,2023-07-21T02:14:32Z,- DeviantSchemist opened pull request: [5044](https://github.com/hackforla/website/pull/5044) at 2023-07-20 07:14 PM PDT -DeviantSchemist,2023-07-23T03:48:23Z,- DeviantSchemist commented on issue: [4987](https://github.com/hackforla/website/issues/4987#issuecomment-1646738451) at 2023-07-22 08:48 PM PDT -DeviantSchemist,2023-07-23T04:23:25Z,- DeviantSchemist pull request merged: [5044](https://github.com/hackforla/website/pull/5044#event-9892093712) at 2023-07-22 09:23 PM PDT -DevRishiJain,4627,SKILLS ISSUE -DevRishiJain,2023-05-09T03:34:23Z,- DevRishiJain opened issue: [4627](https://github.com/hackforla/website/issues/4627) at 2023-05-08 08:34 PM PDT -DevRishiJain,2023-05-09T04:04:57Z,- DevRishiJain assigned to issue: [4627](https://github.com/hackforla/website/issues/4627) at 2023-05-08 09:04 PM PDT -DevRishiJain,2023-05-14T10:40:32Z,- DevRishiJain assigned to issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1491166498) at 2023-05-14 03:40 AM PDT -DevRishiJain,2023-05-14T14:52:59Z,- DevRishiJain opened pull request: [4664](https://github.com/hackforla/website/pull/4664) at 2023-05-14 07:52 AM PDT -DevRishiJain,2023-05-14T15:05:48Z,- DevRishiJain submitted pull request review: [4665](https://github.com/hackforla/website/pull/4665#pullrequestreview-1425565278) at 2023-05-14 08:05 AM PDT -DevRishiJain,2023-05-16T06:14:29Z,- DevRishiJain pull request closed w/o merging: [4664](https://github.com/hackforla/website/pull/4664#event-9253816445) at 2023-05-15 11:14 PM PDT -DevRishiJain,2023-05-16T15:45:10Z,- DevRishiJain assigned to issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1526642953) at 2023-05-16 08:45 AM PDT -DevRishiJain,2023-05-16T15:47:08Z,- DevRishiJain commented on issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1549927320) at 2023-05-16 08:47 AM PDT -DevRishiJain,2023-05-16T19:14:56Z,- DevRishiJain opened pull request: [4683](https://github.com/hackforla/website/pull/4683) at 2023-05-16 12:14 PM PDT -DevRishiJain,2023-05-18T10:34:34Z,- DevRishiJain commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1552860569) at 2023-05-18 03:34 AM PDT -DevRishiJain,2023-05-21T10:07:45Z,- DevRishiJain commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1556138109) at 2023-05-21 03:07 AM PDT -DevRishiJain,2023-05-21T19:28:09Z,- DevRishiJain commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1556268479) at 2023-05-21 12:28 PM PDT -DevRishiJain,2023-05-23T23:57:02Z,- DevRishiJain pull request merged: [4683](https://github.com/hackforla/website/pull/4683#event-9321647658) at 2023-05-23 04:57 PM PDT -DevRishiJain,2023-05-24T01:17:34Z,- DevRishiJain assigned to issue: [4699](https://github.com/hackforla/website/issues/4699) at 2023-05-23 06:17 PM PDT -DevRishiJain,2023-05-24T01:19:09Z,- DevRishiJain commented on issue: [4699](https://github.com/hackforla/website/issues/4699#issuecomment-1560326585) at 2023-05-23 06:19 PM PDT -DevRishiJain,2023-05-24T01:27:44Z,- DevRishiJain opened pull request: [4709](https://github.com/hackforla/website/pull/4709) at 2023-05-23 06:27 PM PDT -DevRishiJain,2023-05-25T18:52:21Z,- DevRishiJain pull request merged: [4709](https://github.com/hackforla/website/pull/4709#event-9343462084) at 2023-05-25 11:52 AM PDT -DevRishiJain,2023-05-30T06:54:32Z,- DevRishiJain closed issue as completed: [4627](https://github.com/hackforla/website/issues/4627#event-9374504592) at 2023-05-29 11:54 PM PDT -DevRishiJain,2023-07-05T17:44:13Z,- DevRishiJain assigned to issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1491107679) at 2023-07-05 10:44 AM PDT -DevRishiJain,2023-07-05T17:46:44Z,- DevRishiJain commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1622211652) at 2023-07-05 10:46 AM PDT -DevRishiJain,2023-07-09T17:21:06Z,- DevRishiJain unassigned from issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-1549054904) at 2023-07-09 10:21 AM PDT -DevRishiJain,2023-07-09T17:21:38Z,- DevRishiJain unassigned from issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1622211652) at 2023-07-09 10:21 AM PDT -DexinJ,7020,SKILLS ISSUE -DexinJ,2024-06-19T02:46:25Z,- DexinJ opened issue: [7020](https://github.com/hackforla/website/issues/7020) at 2024-06-18 07:46 PM PDT -DexinJ,2024-06-19T02:46:34Z,- DexinJ assigned to issue: [7020](https://github.com/hackforla/website/issues/7020) at 2024-06-18 07:46 PM PDT -DexinJ,2024-07-04T23:42:57Z,- DexinJ commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2209644496) at 2024-07-04 04:42 PM PDT -DGnzl,2021-04-23T22:32:36Z,- DGnzl assigned to issue: [1444](https://github.com/hackforla/website/issues/1444) at 2021-04-23 03:32 PM PDT -DGnzl,2021-04-28T07:02:02Z,- DGnzl opened pull request: [1486](https://github.com/hackforla/website/pull/1486) at 2021-04-28 12:02 AM PDT -DGnzl,2021-04-28T15:43:13Z,- DGnzl commented on pull request: [1486](https://github.com/hackforla/website/pull/1486#issuecomment-828561557) at 2021-04-28 08:43 AM PDT -DGnzl,2021-04-28T22:50:23Z,- DGnzl commented on pull request: [1486](https://github.com/hackforla/website/pull/1486#issuecomment-828831417) at 2021-04-28 03:50 PM PDT -DGnzl,2021-04-29T00:29:21Z,- DGnzl pull request merged: [1486](https://github.com/hackforla/website/pull/1486#event-4659853083) at 2021-04-28 05:29 PM PDT -DGnzl,2021-06-01T21:01:35Z,- DGnzl assigned to issue: [1616](https://github.com/hackforla/website/issues/1616) at 2021-06-01 02:01 PM PDT -DGnzl,2021-06-01T21:10:59Z,- DGnzl opened pull request: [1678](https://github.com/hackforla/website/pull/1678) at 2021-06-01 02:10 PM PDT -DGnzl,2021-06-02T19:16:47Z,- DGnzl pull request merged: [1678](https://github.com/hackforla/website/pull/1678#event-4833654948) at 2021-06-02 12:16 PM PDT -DGnzl,2021-06-02T23:01:11Z,- DGnzl assigned to issue: [1618](https://github.com/hackforla/website/issues/1618) at 2021-06-02 04:01 PM PDT -DGnzl,2021-06-03T00:37:09Z,- DGnzl opened pull request: [1683](https://github.com/hackforla/website/pull/1683) at 2021-06-02 05:37 PM PDT -DGnzl,2021-06-06T06:41:50Z,- DGnzl pull request merged: [1683](https://github.com/hackforla/website/pull/1683#event-4847698124) at 2021-06-05 11:41 PM PDT -dheerajkoppu,5207,SKILLS ISSUE -dheerajkoppu,2023-08-15T02:23:31Z,- dheerajkoppu opened issue: [5207](https://github.com/hackforla/website/issues/5207) at 2023-08-14 07:23 PM PDT -dheerajkoppu,2024-02-13T21:51:45Z,- dheerajkoppu assigned to issue: [5207](https://github.com/hackforla/website/issues/5207#event-11651555544) at 2024-02-13 01:51 PM PST -dhruvdy,2023-12-19T18:21:50Z,- dhruvdy commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1863272898) at 2023-12-19 10:21 AM PST -dimiprousalis,5867,SKILLS ISSUE -dimiprousalis,2023-11-07T04:02:51Z,- dimiprousalis opened issue: [5867](https://github.com/hackforla/website/issues/5867) at 2023-11-06 08:02 PM PST -dimiprousalis,2023-11-07T04:05:15Z,- dimiprousalis assigned to issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1797714527) at 2023-11-06 08:05 PM PST -dimiprousalis,2023-11-21T19:31:52Z,- dimiprousalis assigned to issue: [5680](https://github.com/hackforla/website/issues/5680#issuecomment-1752133159) at 2023-11-21 11:31 AM PST -dimiprousalis,2023-11-22T16:43:55Z,- dimiprousalis opened pull request: [5931](https://github.com/hackforla/website/pull/5931) at 2023-11-22 08:43 AM PST -dimiprousalis,2023-11-22T18:22:55Z,- dimiprousalis commented on issue: [5867](https://github.com/hackforla/website/issues/5867#issuecomment-1823264922) at 2023-11-22 10:22 AM PST -dimiprousalis,2023-11-28T01:00:06Z,- dimiprousalis commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1828893305) at 2023-11-27 05:00 PM PST -dimiprousalis,2023-11-28T01:39:35Z,- dimiprousalis pull request merged: [5931](https://github.com/hackforla/website/pull/5931#event-11077786404) at 2023-11-27 05:39 PM PST -dimiprousalis,2023-11-30T18:47:25Z,- dimiprousalis assigned to issue: [5685](https://github.com/hackforla/website/issues/5685#issuecomment-1752407022) at 2023-11-30 10:47 AM PST -dimiprousalis,2023-12-04T20:10:24Z,- dimiprousalis opened pull request: [5957](https://github.com/hackforla/website/pull/5957) at 2023-12-04 12:10 PM PST -dimiprousalis,2023-12-07T01:01:59Z,- dimiprousalis commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1843963569) at 2023-12-06 05:01 PM PST -dimiprousalis,2023-12-08T02:55:32Z,- dimiprousalis pull request merged: [5957](https://github.com/hackforla/website/pull/5957#event-11188923597) at 2023-12-07 06:55 PM PST -dimiprousalis,2023-12-13T20:07:48Z,- dimiprousalis assigned to issue: [5849](https://github.com/hackforla/website/issues/5849) at 2023-12-13 12:07 PM PST -dimiprousalis,2023-12-13T20:50:13Z,- dimiprousalis commented on issue: [5849](https://github.com/hackforla/website/issues/5849#issuecomment-1854681379) at 2023-12-13 12:50 PM PST -dimiprousalis,2023-12-21T15:55:46Z,- dimiprousalis opened pull request: [6014](https://github.com/hackforla/website/pull/6014) at 2023-12-21 07:55 AM PST -dimiprousalis,2023-12-21T16:09:26Z,- dimiprousalis commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1866576986) at 2023-12-21 08:09 AM PST -dimiprousalis,2023-12-24T04:01:38Z,- dimiprousalis pull request merged: [6014](https://github.com/hackforla/website/pull/6014#event-11331869497) at 2023-12-23 08:01 PM PST -dimiprousalis,2023-12-26T19:49:27Z,- dimiprousalis submitted pull request review: [6013](https://github.com/hackforla/website/pull/6013#pullrequestreview-1796562419) at 2023-12-26 11:49 AM PST -dimiprousalis,2023-12-27T20:03:37Z,- dimiprousalis closed issue as completed: [5867](https://github.com/hackforla/website/issues/5867#event-11346991244) at 2023-12-27 12:03 PM PST -dineshsk98,5536,SKILLS ISSUE -dineshsk98,2023-09-15T02:29:08Z,- dineshsk98 opened issue: [5536](https://github.com/hackforla/website/issues/5536) at 2023-09-14 07:29 PM PDT -dineshsk98,2023-09-15T02:29:09Z,- dineshsk98 assigned to issue: [5536](https://github.com/hackforla/website/issues/5536) at 2023-09-14 07:29 PM PDT -dineshsk98,2023-10-01T19:09:31Z,- dineshsk98 assigned to issue: [5624](https://github.com/hackforla/website/issues/5624) at 2023-10-01 12:09 PM PDT -dineshsk98,2023-10-02T01:08:57Z,- dineshsk98 opened pull request: [5640](https://github.com/hackforla/website/pull/5640) at 2023-10-01 06:08 PM PDT -dineshsk98,2023-10-02T16:52:33Z,- dineshsk98 assigned to issue: [5622](https://github.com/hackforla/website/issues/5622) at 2023-10-02 09:52 AM PDT -dineshsk98,2023-10-02T16:58:08Z,- dineshsk98 commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1743405617) at 2023-10-02 09:58 AM PDT -dineshsk98,2023-10-02T16:59:01Z,- dineshsk98 commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1743408330) at 2023-10-02 09:59 AM PDT -dineshsk98,2023-10-03T23:34:43Z,- dineshsk98 commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1745886882) at 2023-10-03 04:34 PM PDT -dineshsk98,2023-10-03T23:36:13Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745887879) at 2023-10-03 04:36 PM PDT -dineshsk98,2023-10-04T01:43:36Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745999115) at 2023-10-03 06:43 PM PDT -dineshsk98,2023-10-04T22:36:40Z,- dineshsk98 opened pull request: [5662](https://github.com/hackforla/website/pull/5662) at 2023-10-04 03:36 PM PDT -dineshsk98,2023-10-07T15:58:52Z,- dineshsk98 opened pull request: [5672](https://github.com/hackforla/website/pull/5672) at 2023-10-07 08:58 AM PDT -dineshsk98,2023-10-07T16:05:34Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1751746483) at 2023-10-07 09:05 AM PDT -dineshsk98,2023-10-07T16:07:02Z,- dineshsk98 commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1751746866) at 2023-10-07 09:07 AM PDT -dineshsk98,2023-10-08T02:13:55Z,- dineshsk98 pull request closed w/o merging: [5640](https://github.com/hackforla/website/pull/5640#event-10583074243) at 2023-10-07 07:13 PM PDT -dineshsk98,2023-10-08T02:22:08Z,- dineshsk98 pull request closed w/o merging: [5662](https://github.com/hackforla/website/pull/5662#event-10583083053) at 2023-10-07 07:22 PM PDT -dineshsk98,2023-10-09T17:21:38Z,- dineshsk98 pull request merged: [5672](https://github.com/hackforla/website/pull/5672#event-10593815488) at 2023-10-09 10:21 AM PDT -dineshsk98,2023-10-10T00:03:50Z,- dineshsk98 opened pull request: [5690](https://github.com/hackforla/website/pull/5690) at 2023-10-09 05:03 PM PDT -dineshsk98,2023-10-11T04:27:41Z,- dineshsk98 commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1756762609) at 2023-10-10 09:27 PM PDT -dineshsk98,2023-10-14T23:01:38Z,- dineshsk98 pull request merged: [5690](https://github.com/hackforla/website/pull/5690#event-10656083498) at 2023-10-14 04:01 PM PDT -dineshsk98,2023-10-17T05:11:11Z,- dineshsk98 commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1765679046) at 2023-10-16 10:11 PM PDT -dineshsk98,2023-10-17T20:09:27Z,- dineshsk98 commented on issue: [5536](https://github.com/hackforla/website/issues/5536#issuecomment-1767093405) at 2023-10-17 01:09 PM PDT -dineshsk98,2023-10-17T20:09:27Z,- dineshsk98 closed issue as completed: [5536](https://github.com/hackforla/website/issues/5536#event-10683252620) at 2023-10-17 01:09 PM PDT -dionw412,2917,SKILLS ISSUE -dionw412,2022-03-02T22:13:08Z,- dionw412 opened issue: [2917](https://github.com/hackforla/website/issues/2917) at 2022-03-02 02:13 PM PST -dionw412,2022-03-02T22:13:09Z,- dionw412 assigned to issue: [2917](https://github.com/hackforla/website/issues/2917) at 2022-03-02 02:13 PM PST -dionw412,2022-03-02T22:40:28Z,- dionw412 assigned to issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-03-02 02:40 PM PST -dionw412,2022-03-07T22:09:14Z,- dionw412 assigned to issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-971962314) at 2022-03-07 02:09 PM PST -dionw412,2022-03-09T22:28:15Z,- dionw412 unassigned from issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-03-09 02:28 PM PST -dionw412,2022-03-13T15:32:39Z,- dionw412 unassigned from issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-971962314) at 2022-03-13 08:32 AM PDT -dionw412,2022-04-27T17:22:04Z,- dionw412 closed issue as completed: [3005](https://github.com/hackforla/website/issues/3005#event-6508901055) at 2022-04-27 10:22 AM PDT -dionw412,2022-04-27T17:22:11Z,- dionw412 reopened issue: [3005](https://github.com/hackforla/website/issues/3005#event-6508901055) at 2022-04-27 10:22 AM PDT -dionw412,2022-04-27T17:22:57Z,- dionw412 closed issue as completed: [3005](https://github.com/hackforla/website/issues/3005#event-6508906629) at 2022-04-27 10:22 AM PDT -dionw412,2022-04-27T17:23:18Z,- dionw412 reopened issue: [3005](https://github.com/hackforla/website/issues/3005#event-6508906629) at 2022-04-27 10:23 AM PDT -dionw412,2022-04-27T17:24:50Z,- dionw412 assigned to issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1063263528) at 2022-04-27 10:24 AM PDT -dionw412,2022-06-08T18:36:57Z,- dionw412 unassigned from issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1145667475) at 2022-06-08 11:36 AM PDT -djbradleyii,5875,SKILLS ISSUE -djbradleyii,2023-11-07T05:13:38Z,- djbradleyii opened issue: [5875](https://github.com/hackforla/website/issues/5875) at 2023-11-06 09:13 PM PST -djbradleyii,2023-11-07T05:13:45Z,- djbradleyii assigned to issue: [5875](https://github.com/hackforla/website/issues/5875) at 2023-11-06 09:13 PM PST -djbradleyii,2023-11-14T19:38:34Z,- djbradleyii assigned to issue: [5800](https://github.com/hackforla/website/issues/5800) at 2023-11-14 11:38 AM PST -djbradleyii,2023-11-14T21:46:42Z,- djbradleyii commented on issue: [5800](https://github.com/hackforla/website/issues/5800#issuecomment-1811374920) at 2023-11-14 01:46 PM PST -djbradleyii,2023-11-14T22:00:55Z,- djbradleyii opened pull request: [5904](https://github.com/hackforla/website/pull/5904) at 2023-11-14 02:00 PM PST -djbradleyii,2023-11-19T18:45:41Z,- djbradleyii commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1817943156) at 2023-11-19 10:45 AM PST -djbradleyii,2023-11-21T01:38:28Z,- djbradleyii commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1820075898) at 2023-11-20 05:38 PM PST -djbradleyii,2023-11-28T01:47:58Z,- djbradleyii commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1828931015) at 2023-11-27 05:47 PM PST -djbradleyii,2023-11-28T01:50:51Z,- djbradleyii pull request merged: [5904](https://github.com/hackforla/website/pull/5904#event-11077844400) at 2023-11-27 05:50 PM PST -djbradleyii,2023-11-28T03:13:55Z,- djbradleyii assigned to issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1797619845) at 2023-11-27 07:13 PM PST -djbradleyii,2023-11-28T03:15:05Z,- djbradleyii commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1829003627) at 2023-11-27 07:15 PM PST -djbradleyii,2023-11-29T00:31:12Z,- djbradleyii commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1830999162) at 2023-11-28 04:31 PM PST -djbradleyii,2023-11-29T20:09:12Z,- djbradleyii commented on issue: [5511](https://github.com/hackforla/website/issues/5511#issuecomment-1832628290) at 2023-11-29 12:09 PM PST -djbradleyii,2023-11-29T20:10:59Z,- djbradleyii opened pull request: [5945](https://github.com/hackforla/website/pull/5945) at 2023-11-29 12:10 PM PST -djbradleyii,2023-11-29T23:46:35Z,- djbradleyii opened issue: [5948](https://github.com/hackforla/website/issues/5948) at 2023-11-29 03:46 PM PST -djbradleyii,2023-11-29T23:51:33Z,- djbradleyii assigned to issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-1832876728) at 2023-11-29 03:51 PM PST -djbradleyii,2023-11-30T14:51:18Z,- djbradleyii pull request merged: [5945](https://github.com/hackforla/website/pull/5945#event-11110123884) at 2023-11-30 06:51 AM PST -djbradleyii,2023-12-01T17:02:12Z,- djbradleyii closed issue as completed: [5875](https://github.com/hackforla/website/issues/5875#event-11124531711) at 2023-12-01 09:02 AM PST -djbradleyii,2024-01-03T23:50:12Z,- djbradleyii assigned to issue: [6022](https://github.com/hackforla/website/issues/6022) at 2024-01-03 03:50 PM PST -djbradleyii,2024-01-04T00:50:29Z,- djbradleyii commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1876163540) at 2024-01-03 04:50 PM PST -djbradleyii,2024-01-09T01:51:30Z,- djbradleyii commented on issue: [6024](https://github.com/hackforla/website/issues/6024#issuecomment-1882148859) at 2024-01-08 05:51 PM PST -djbradleyii,2024-01-10T00:23:39Z,- djbradleyii opened pull request: [6085](https://github.com/hackforla/website/pull/6085) at 2024-01-09 04:23 PM PST -djbradleyii,2024-01-10T21:03:26Z,- djbradleyii commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1885728864) at 2024-01-10 01:03 PM PST -djbradleyii,2024-01-17T21:29:15Z,- djbradleyii opened issue: [6129](https://github.com/hackforla/website/issues/6129) at 2024-01-17 01:29 PM PST -djbradleyii,2024-01-23T03:31:34Z,- djbradleyii commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1905232816) at 2024-01-22 07:31 PM PST -djbradleyii,2024-01-23T09:21:31Z,- djbradleyii commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1905631106) at 2024-01-23 01:21 AM PST -djbradleyii,2024-01-23T19:41:01Z,- djbradleyii pull request merged: [6085](https://github.com/hackforla/website/pull/6085#event-11575314949) at 2024-01-23 11:41 AM PST -djbradleyii,2024-03-05T01:36:12Z,- djbradleyii commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1977784008) at 2024-03-04 05:36 PM PST -djbradleyii,2024-03-25T17:27:47Z,- djbradleyii commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-2018528994) at 2024-03-25 10:27 AM PDT -djbradleyii,2024-04-30T01:27:25Z,- djbradleyii unassigned from issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-1832883385) at 2024-04-29 06:27 PM PDT -dmcneary,2021-01-03T19:52:18Z,- dmcneary assigned to issue: [902](https://github.com/hackforla/website/issues/902#issuecomment-753657049) at 2021-01-03 11:52 AM PST -dmcneary,2021-01-03T21:03:01Z,- dmcneary assigned to issue: [912](https://github.com/hackforla/website/issues/912) at 2021-01-03 01:03 PM PST -dmcneary,2021-01-03T23:14:44Z,- dmcneary opened pull request: [913](https://github.com/hackforla/website/pull/913) at 2021-01-03 03:14 PM PST -dmcneary,2021-01-06T03:28:57Z,- dmcneary pull request merged: [913](https://github.com/hackforla/website/pull/913#event-4173190298) at 2021-01-05 07:28 PM PST -dmcneary,2021-01-06T03:46:16Z,- dmcneary closed issue as completed: [912](https://github.com/hackforla/website/issues/912#event-4173232794) at 2021-01-05 07:46 PM PST -dmcneary,2021-01-06T04:08:36Z,- dmcneary assigned to issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-05 08:08 PM PST -dmcneary,2021-01-06T16:53:27Z,- dmcneary unassigned from issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-06 08:53 AM PST -dmcneary,2021-01-07T21:54:26Z,- dmcneary assigned to issue: [922](https://github.com/hackforla/website/issues/922) at 2021-01-07 01:54 PM PST -dmcneary,2021-01-10T02:52:44Z,- dmcneary commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757403941) at 2021-01-09 06:52 PM PST -dmcneary,2021-01-10T18:25:23Z,- dmcneary commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757521215) at 2021-01-10 10:25 AM PST -dmcneary,2021-01-10T18:43:44Z,- dmcneary opened pull request: [924](https://github.com/hackforla/website/pull/924) at 2021-01-10 10:43 AM PST -dmcneary,2021-01-10T19:08:03Z,- dmcneary commented on pull request: [924](https://github.com/hackforla/website/pull/924#issuecomment-757527083) at 2021-01-10 11:08 AM PST -dmcneary,2021-01-10T19:57:14Z,- dmcneary submitted pull request review: [919](https://github.com/hackforla/website/pull/919#pullrequestreview-564895489) at 2021-01-10 11:57 AM PST -dmcneary,2021-01-10T19:57:29Z,- dmcneary closed issue by PR 919: [796](https://github.com/hackforla/website/issues/796#event-4188374485) at 2021-01-10 11:57 AM PST -dmcneary,2021-01-10T20:08:25Z,- dmcneary commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757535702) at 2021-01-10 12:08 PM PST -dmcneary,2021-01-10T20:41:28Z,- dmcneary assigned to issue: [925](https://github.com/hackforla/website/issues/925) at 2021-01-10 12:41 PM PST -dmcneary,2021-01-10T21:04:38Z,- dmcneary pull request merged: [924](https://github.com/hackforla/website/pull/924#event-4188432483) at 2021-01-10 01:04 PM PST -dmcneary,2021-01-10T23:09:13Z,- dmcneary opened pull request: [928](https://github.com/hackforla/website/pull/928) at 2021-01-10 03:09 PM PST -dmcneary,2021-01-11T21:02:59Z,- dmcneary pull request merged: [928](https://github.com/hackforla/website/pull/928#event-4192793996) at 2021-01-11 01:02 PM PST -dmcneary,2021-01-15T21:26:58Z,- dmcneary commented on issue: [925](https://github.com/hackforla/website/issues/925#issuecomment-761205956) at 2021-01-15 01:26 PM PST -dmcneary,2021-01-15T21:30:06Z,- dmcneary opened pull request: [943](https://github.com/hackforla/website/pull/943) at 2021-01-15 01:30 PM PST -dmcneary,2021-01-17T18:06:04Z,- dmcneary commented on issue: [925](https://github.com/hackforla/website/issues/925#issuecomment-761854083) at 2021-01-17 10:06 AM PST -dmcneary,2021-01-17T19:16:56Z,- dmcneary assigned to issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716202808) at 2021-01-17 11:16 AM PST -dmcneary,2021-01-17T20:20:06Z,- dmcneary commented on pull request: [943](https://github.com/hackforla/website/pull/943#issuecomment-761873324) at 2021-01-17 12:20 PM PST -dmcneary,2021-01-20T05:16:19Z,- dmcneary commented on issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-763338967) at 2021-01-19 09:16 PM PST -dmcneary,2021-01-20T15:07:30Z,- dmcneary pull request merged: [943](https://github.com/hackforla/website/pull/943#event-4228394586) at 2021-01-20 07:07 AM PST -dmcneary,2021-01-24T17:58:42Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-766403298) at 2021-01-24 09:58 AM PST -dmcneary,2021-02-01T21:15:14Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-771163120) at 2021-02-01 01:15 PM PST -dmcneary,2021-02-05T04:48:46Z,- dmcneary commented on pull request: [998](https://github.com/hackforla/website/pull/998#issuecomment-773785449) at 2021-02-04 08:48 PM PST -dmcneary,2021-02-05T04:48:57Z,- dmcneary closed issue by PR 998: [990](https://github.com/hackforla/website/issues/990#event-4294261322) at 2021-02-04 08:48 PM PST -dmcneary,2021-02-05T05:01:38Z,- dmcneary submitted pull request review: [1002](https://github.com/hackforla/website/pull/1002#pullrequestreview-584024274) at 2021-02-04 09:01 PM PST -dmcneary,2021-02-07T03:00:36Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-774581671) at 2021-02-06 07:00 PM PST -dmcneary,2021-02-16T19:33:16Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-780068581) at 2021-02-16 11:33 AM PST -dmcneary,2021-02-17T03:41:52Z,- dmcneary opened issue: [1071](https://github.com/hackforla/website/issues/1071) at 2021-02-16 07:41 PM PST -dmcneary,2021-02-20T07:09:30Z,- dmcneary commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782576465) at 2021-02-19 11:09 PM PST -dmcneary,2021-02-21T04:54:49Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-782797128) at 2021-02-20 08:54 PM PST -dmcneary,2021-02-28T18:42:35Z,- dmcneary opened pull request: [1137](https://github.com/hackforla/website/pull/1137) at 2021-02-28 10:42 AM PST -dmcneary,2021-02-28T19:03:52Z,- dmcneary commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-787503625) at 2021-02-28 11:03 AM PST -dmcneary,2021-03-18T16:44:05Z,- dmcneary pull request closed w/o merging: [1137](https://github.com/hackforla/website/pull/1137#event-4477350221) at 2021-03-18 09:44 AM PDT -DmitriiTsy,3606,SKILLS ISSUE -DmitriiTsy,2022-10-11T02:53:30Z,- DmitriiTsy opened issue: [3606](https://github.com/hackforla/website/issues/3606) at 2022-10-10 07:53 PM PDT -DmitriiTsy,2022-10-13T02:43:57Z,- DmitriiTsy assigned to issue: [3606](https://github.com/hackforla/website/issues/3606) at 2022-10-12 07:43 PM PDT -DmitriiTsy,2022-10-13T02:49:31Z,- DmitriiTsy assigned to issue: [2850](https://github.com/hackforla/website/issues/2850#issuecomment-1048319128) at 2022-10-12 07:49 PM PDT -DmitriiTsy,2022-10-13T02:57:23Z,- DmitriiTsy commented on issue: [2850](https://github.com/hackforla/website/issues/2850#issuecomment-1276962075) at 2022-10-12 07:57 PM PDT -DmitriiTsy,2022-10-13T03:25:30Z,- DmitriiTsy opened pull request: [3616](https://github.com/hackforla/website/pull/3616) at 2022-10-12 08:25 PM PDT -DmitriiTsy,2022-10-14T02:16:10Z,- DmitriiTsy assigned to issue: [3197](https://github.com/hackforla/website/issues/3197#issuecomment-1145803474) at 2022-10-13 07:16 PM PDT -DmitriiTsy,2022-10-14T02:17:23Z,- DmitriiTsy commented on issue: [3197](https://github.com/hackforla/website/issues/3197#issuecomment-1278382088) at 2022-10-13 07:17 PM PDT -DmitriiTsy,2022-10-14T03:22:48Z,- DmitriiTsy pull request merged: [3616](https://github.com/hackforla/website/pull/3616#event-7586630057) at 2022-10-13 08:22 PM PDT -DmitriiTsy,2022-10-14T20:16:02Z,- DmitriiTsy opened pull request: [3622](https://github.com/hackforla/website/pull/3622) at 2022-10-14 01:16 PM PDT -DmitriiTsy,2022-10-15T20:49:06Z,- DmitriiTsy pull request merged: [3622](https://github.com/hackforla/website/pull/3622#event-7595497051) at 2022-10-15 01:49 PM PDT -DmitriiTsy,2022-10-16T14:55:34Z,- DmitriiTsy commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1279985714) at 2022-10-16 07:55 AM PDT -DmitriiTsy,2022-10-22T01:12:01Z,- DmitriiTsy assigned to issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1284829795) at 2022-10-21 06:12 PM PDT -DmitriiTsy,2022-10-22T01:18:27Z,- DmitriiTsy commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1287570838) at 2022-10-21 06:18 PM PDT -DmitriiTsy,2022-10-22T02:04:47Z,- DmitriiTsy commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1287580008) at 2022-10-21 07:04 PM PDT -DmitriiTsy,2022-10-23T16:35:29Z,- DmitriiTsy unassigned from issue: [1982](https://github.com/hackforla/website/issues/1982#event-7648618094) at 2022-10-23 09:35 AM PDT -DmitriiTsy,2022-10-25T23:43:42Z,- DmitriiTsy assigned to issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1289634879) at 2022-10-25 04:43 PM PDT -DmitriiTsy,2022-10-25T23:45:09Z,- DmitriiTsy commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1291255922) at 2022-10-25 04:45 PM PDT -DmitriiTsy,2022-10-26T01:29:56Z,- DmitriiTsy opened pull request: [3662](https://github.com/hackforla/website/pull/3662) at 2022-10-25 06:29 PM PDT -DmitriiTsy,2022-10-28T19:19:54Z,- DmitriiTsy commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1295366969) at 2022-10-28 12:19 PM PDT -DmitriiTsy,2022-10-28T20:17:09Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1295423241) at 2022-10-28 01:17 PM PDT -DmitriiTsy,2022-10-28T20:37:02Z,- DmitriiTsy commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1295442089) at 2022-10-28 01:37 PM PDT -DmitriiTsy,2022-10-29T17:29:53Z,- DmitriiTsy submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1161020404) at 2022-10-29 10:29 AM PDT -DmitriiTsy,2022-11-12T17:26:27Z,- DmitriiTsy commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1312533120) at 2022-11-12 09:26 AM PST -DmitriiTsy,2022-11-12T17:51:46Z,- DmitriiTsy commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1312537894) at 2022-11-12 09:51 AM PST -DmitriiTsy,2022-11-12T18:13:17Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1312542321) at 2022-11-12 10:13 AM PST -DmitriiTsy,2022-11-12T18:14:43Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1312542617) at 2022-11-12 10:14 AM PST -DmitriiTsy,2022-11-12T18:24:24Z,- DmitriiTsy commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1312544488) at 2022-11-12 10:24 AM PST -DmitriiTsy,2022-11-12T18:36:43Z,- DmitriiTsy submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1178152040) at 2022-11-12 10:36 AM PST -DmitriiTsy,2022-11-12T18:56:52Z,- DmitriiTsy commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312550707) at 2022-11-12 10:56 AM PST -DmitriiTsy,2022-11-12T19:47:55Z,- DmitriiTsy submitted pull request review: [3716](https://github.com/hackforla/website/pull/3716#pullrequestreview-1178157495) at 2022-11-12 11:47 AM PST -DmitriiTsy,2022-11-12T19:49:15Z,- DmitriiTsy commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1312559156) at 2022-11-12 11:49 AM PST -DmitriiTsy,2022-11-20T17:17:43Z,- DmitriiTsy commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1321191038) at 2022-11-20 09:17 AM PST -DmitriiTsy,2022-12-06T20:41:13Z,- DmitriiTsy pull request closed w/o merging: [3662](https://github.com/hackforla/website/pull/3662#event-7970724213) at 2022-12-06 12:41 PM PST -DmitriiTsy,2022-12-12T20:42:41Z,- DmitriiTsy unassigned from issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1347279715) at 2022-12-12 12:42 PM PST -dmuoio,5221,SKILLS ISSUE -dmuoio,2023-08-15T03:03:22Z,- dmuoio opened issue: [5221](https://github.com/hackforla/website/issues/5221) at 2023-08-14 08:03 PM PDT -dmuoio,2023-08-15T03:03:31Z,- dmuoio assigned to issue: [5221](https://github.com/hackforla/website/issues/5221) at 2023-08-14 08:03 PM PDT -dmuoio,2023-09-11T22:14:56Z,- dmuoio closed issue as completed: [5221](https://github.com/hackforla/website/issues/5221#event-10339453355) at 2023-09-11 03:14 PM PDT -doboianh,2021-11-04T12:16:22Z,- doboianh commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-960779523) at 2021-11-04 05:16 AM PDT -DomenicScozz,5218,SKILLS ISSUE -DomenicScozz,2023-08-15T03:01:24Z,- DomenicScozz opened issue: [5218](https://github.com/hackforla/website/issues/5218) at 2023-08-14 08:01 PM PDT -DomenicScozz,2023-08-15T03:01:29Z,- DomenicScozz assigned to issue: [5218](https://github.com/hackforla/website/issues/5218) at 2023-08-14 08:01 PM PDT -DomenicScozz,2023-08-20T16:38:56Z,- DomenicScozz assigned to issue: [5267](https://github.com/hackforla/website/issues/5267) at 2023-08-20 09:38 AM PDT -DomenicScozz,2023-08-21T00:15:55Z,- DomenicScozz opened pull request: [5276](https://github.com/hackforla/website/pull/5276) at 2023-08-20 05:15 PM PDT -DomenicScozz,2023-08-21T00:24:35Z,- DomenicScozz commented on issue: [5267](https://github.com/hackforla/website/issues/5267#issuecomment-1685443717) at 2023-08-20 05:24 PM PDT -DomenicScozz,2023-08-21T00:28:08Z,- DomenicScozz commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1685447717) at 2023-08-20 05:28 PM PDT -DomenicScozz,2023-08-27T02:29:51Z,- DomenicScozz pull request merged: [5276](https://github.com/hackforla/website/pull/5276#event-10201014279) at 2023-08-26 07:29 PM PDT -DomenicScozz,2023-09-17T18:17:27Z,- DomenicScozz assigned to issue: [5189](https://github.com/hackforla/website/issues/5189#issuecomment-1675598633) at 2023-09-17 11:17 AM PDT -DomenicScozz,2023-09-17T20:18:07Z,- DomenicScozz opened pull request: [5549](https://github.com/hackforla/website/pull/5549) at 2023-09-17 01:18 PM PDT -DomenicScozz,2023-09-17T20:23:58Z,- DomenicScozz commented on pull request: [5549](https://github.com/hackforla/website/pull/5549#issuecomment-1722560621) at 2023-09-17 01:23 PM PDT -DomenicScozz,2023-09-17T20:30:16Z,- DomenicScozz commented on issue: [5189](https://github.com/hackforla/website/issues/5189#issuecomment-1722561743) at 2023-09-17 01:30 PM PDT -DomenicScozz,2023-09-17T20:43:28Z,- DomenicScozz commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1722564524) at 2023-09-17 01:43 PM PDT -DomenicScozz,2023-09-17T23:36:32Z,- DomenicScozz closed issue as completed: [5218](https://github.com/hackforla/website/issues/5218#event-10392218537) at 2023-09-17 04:36 PM PDT -DomenicScozz,2023-09-22T04:38:33Z,- DomenicScozz pull request merged: [5549](https://github.com/hackforla/website/pull/5549#event-10442960599) at 2023-09-21 09:38 PM PDT -DonaldBrower,3188,SKILLS ISSUE -DonaldBrower,2022-06-01T03:14:42Z,- DonaldBrower opened issue: [3188](https://github.com/hackforla/website/issues/3188) at 2022-05-31 08:14 PM PDT -DonaldBrower,2022-06-02T03:47:21Z,- DonaldBrower assigned to issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1143072322) at 2022-06-01 08:47 PM PDT -DonaldBrower,2022-06-04T19:58:56Z,- DonaldBrower commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1146677190) at 2022-06-04 12:58 PM PDT -DonaldBrower,2022-06-04T20:29:37Z,- DonaldBrower assigned to issue: [2877](https://github.com/hackforla/website/issues/2877#issuecomment-1049094817) at 2022-06-04 01:29 PM PDT -DonaldBrower,2022-06-04T21:02:49Z,- DonaldBrower commented on issue: [2877](https://github.com/hackforla/website/issues/2877#issuecomment-1146685251) at 2022-06-04 02:02 PM PDT -DonaldBrower,2022-06-04T21:09:06Z,- DonaldBrower commented on issue: [2877](https://github.com/hackforla/website/issues/2877#issuecomment-1146685942) at 2022-06-04 02:09 PM PDT -DonaldBrower,2022-06-04T21:28:50Z,- DonaldBrower opened pull request: [3218](https://github.com/hackforla/website/pull/3218) at 2022-06-04 02:28 PM PDT -DonaldBrower,2022-06-05T00:08:46Z,- DonaldBrower pull request merged: [3218](https://github.com/hackforla/website/pull/3218#event-6742566848) at 2022-06-04 05:08 PM PDT -DonaldBrower,2022-06-07T05:29:35Z,- DonaldBrower assigned to issue: [3214](https://github.com/hackforla/website/issues/3214#issuecomment-1145857701) at 2022-06-06 10:29 PM PDT -DonaldBrower,2022-06-07T05:46:08Z,- DonaldBrower commented on issue: [3214](https://github.com/hackforla/website/issues/3214#issuecomment-1148222618) at 2022-06-06 10:46 PM PDT -DonaldBrower,2022-06-07T06:03:03Z,- DonaldBrower opened pull request: [3226](https://github.com/hackforla/website/pull/3226) at 2022-06-06 11:03 PM PDT -DonaldBrower,2022-06-11T01:22:53Z,- DonaldBrower pull request merged: [3226](https://github.com/hackforla/website/pull/3226#event-6789394653) at 2022-06-10 06:22 PM PDT -DonaldBrower,2022-06-11T03:12:45Z,- DonaldBrower commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1152843793) at 2022-06-10 08:12 PM PDT -DonaldBrower,2022-06-14T02:43:57Z,- DonaldBrower commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1154647750) at 2022-06-13 07:43 PM PDT -doppedheart,2023-10-08T13:24:30Z,- doppedheart commented on issue: [5675](https://github.com/hackforla/website/issues/5675#issuecomment-1752028095) at 2023-10-08 06:24 AM PDT -doppedheart,2023-10-08T13:28:00Z,- doppedheart commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1752028829) at 2023-10-08 06:28 AM PDT -DorianDeptuch,5092,SKILLS ISSUE -DorianDeptuch,2023-07-26T03:01:31Z,- DorianDeptuch opened issue: [5073](https://github.com/hackforla/website/issues/5073) at 2023-07-25 08:01 PM PDT -DorianDeptuch,2023-07-26T03:58:02Z,- DorianDeptuch opened issue: [5092](https://github.com/hackforla/website/issues/5092) at 2023-07-25 08:58 PM PDT -DorianDeptuch,2023-07-26T04:02:14Z,- DorianDeptuch assigned to issue: [5092](https://github.com/hackforla/website/issues/5092) at 2023-07-25 09:02 PM PDT -DorianDeptuch,2023-07-28T21:49:36Z,- DorianDeptuch assigned to issue: [4814](https://github.com/hackforla/website/issues/4814) at 2023-07-28 02:49 PM PDT -DorianDeptuch,2023-07-28T22:43:25Z,- DorianDeptuch opened pull request: [5109](https://github.com/hackforla/website/pull/5109) at 2023-07-28 03:43 PM PDT -DorianDeptuch,2023-07-28T23:28:56Z,- DorianDeptuch commented on issue: [5092](https://github.com/hackforla/website/issues/5092#issuecomment-1656435700) at 2023-07-28 04:28 PM PDT -DorianDeptuch,2023-07-29T01:54:24Z,- DorianDeptuch submitted pull request review: [5108](https://github.com/hackforla/website/pull/5108#pullrequestreview-1553156174) at 2023-07-28 06:54 PM PDT -DorianDeptuch,2023-07-29T02:00:15Z,- DorianDeptuch submitted pull request review: [5111](https://github.com/hackforla/website/pull/5111#pullrequestreview-1553157549) at 2023-07-28 07:00 PM PDT -DorianDeptuch,2023-07-30T18:50:23Z,- DorianDeptuch pull request merged: [5109](https://github.com/hackforla/website/pull/5109#event-9957231595) at 2023-07-30 11:50 AM PDT -DorianDeptuch,2023-07-30T21:46:37Z,- DorianDeptuch assigned to issue: [5101](https://github.com/hackforla/website/issues/5101) at 2023-07-30 02:46 PM PDT -DorianDeptuch,2023-07-30T21:48:26Z,- DorianDeptuch commented on issue: [5101](https://github.com/hackforla/website/issues/5101#issuecomment-1657273922) at 2023-07-30 02:48 PM PDT -DorianDeptuch,2023-07-30T21:54:11Z,- DorianDeptuch commented on issue: [5101](https://github.com/hackforla/website/issues/5101#issuecomment-1657274733) at 2023-07-30 02:54 PM PDT -DorianDeptuch,2023-08-01T04:31:38Z,- DorianDeptuch opened pull request: [5125](https://github.com/hackforla/website/pull/5125) at 2023-07-31 09:31 PM PDT -DorianDeptuch,2023-08-01T05:29:10Z,- DorianDeptuch commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1659591787) at 2023-07-31 10:29 PM PDT -DorianDeptuch,2023-08-01T05:38:03Z,- DorianDeptuch submitted pull request review: [5119](https://github.com/hackforla/website/pull/5119#pullrequestreview-1556196498) at 2023-07-31 10:38 PM PDT -DorianDeptuch,2023-08-01T05:47:09Z,- DorianDeptuch commented on pull request: [5121](https://github.com/hackforla/website/pull/5121#issuecomment-1659606392) at 2023-07-31 10:47 PM PDT -DorianDeptuch,2023-08-01T05:56:32Z,- DorianDeptuch submitted pull request review: [5121](https://github.com/hackforla/website/pull/5121#pullrequestreview-1556213180) at 2023-07-31 10:56 PM PDT -DorianDeptuch,2023-08-07T02:08:32Z,- DorianDeptuch commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1667082245) at 2023-08-06 07:08 PM PDT -DorianDeptuch,2023-08-07T05:05:21Z,- DorianDeptuch commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1667191940) at 2023-08-06 10:05 PM PDT -DorianDeptuch,2023-08-07T18:55:23Z,- DorianDeptuch opened pull request: [5157](https://github.com/hackforla/website/pull/5157) at 2023-08-07 11:55 AM PDT -DorianDeptuch,2023-08-07T18:58:21Z,- DorianDeptuch pull request merged: [5157](https://github.com/hackforla/website/pull/5157#event-10027765910) at 2023-08-07 11:58 AM PDT -DorianDeptuch,2023-08-07T19:02:10Z,- DorianDeptuch pull request closed w/o merging: [5125](https://github.com/hackforla/website/pull/5125#event-10027794067) at 2023-08-07 12:02 PM PDT -DorianDeptuch,2023-08-07T22:00:25Z,- DorianDeptuch assigned to issue: [4959](https://github.com/hackforla/website/issues/4959) at 2023-08-07 03:00 PM PDT -DorianDeptuch,2023-08-07T22:05:40Z,- DorianDeptuch commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1668637701) at 2023-08-07 03:05 PM PDT -DorianDeptuch,2023-08-10T07:37:44Z,- DorianDeptuch commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1672715342) at 2023-08-10 12:37 AM PDT -DorianDeptuch,2023-08-13T17:51:28Z,- DorianDeptuch commented on issue: [5092](https://github.com/hackforla/website/issues/5092#issuecomment-1676423534) at 2023-08-13 10:51 AM PDT -DorianDeptuch,2023-08-13T17:51:56Z,- DorianDeptuch closed issue as completed: [5092](https://github.com/hackforla/website/issues/5092#event-10080307984) at 2023-08-13 10:51 AM PDT -DorianDeptuch,2023-08-17T23:28:01Z,- DorianDeptuch commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1683108022) at 2023-08-17 04:28 PM PDT -DorianDeptuch,2023-08-17T23:52:28Z,- DorianDeptuch submitted pull request review: [5245](https://github.com/hackforla/website/pull/5245#pullrequestreview-1583650955) at 2023-08-17 04:52 PM PDT -DorianDeptuch,2023-08-17T23:55:41Z,- DorianDeptuch commented on pull request: [5241](https://github.com/hackforla/website/pull/5241#issuecomment-1683129903) at 2023-08-17 04:55 PM PDT -DorianDeptuch,2023-08-18T00:19:22Z,- DorianDeptuch submitted pull request review: [5241](https://github.com/hackforla/website/pull/5241#pullrequestreview-1583667193) at 2023-08-17 05:19 PM PDT -DorianDeptuch,2023-08-23T03:06:48Z,- DorianDeptuch commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1689206913) at 2023-08-22 08:06 PM PDT -DorianDeptuch,2023-08-23T06:47:16Z,- DorianDeptuch submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1590865613) at 2023-08-22 11:47 PM PDT -DorianDeptuch,2023-08-28T19:41:55Z,- DorianDeptuch commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1696276041) at 2023-08-28 12:41 PM PDT -DorianDeptuch,2023-08-29T05:53:15Z,- DorianDeptuch submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1599551332) at 2023-08-28 10:53 PM PDT -DorianDeptuch,2023-09-06T00:29:18Z,- DorianDeptuch commented on pull request: [5442](https://github.com/hackforla/website/pull/5442#issuecomment-1707477539) at 2023-09-05 05:29 PM PDT -DorianDeptuch,2023-09-06T00:52:52Z,- DorianDeptuch submitted pull request review: [5442](https://github.com/hackforla/website/pull/5442#pullrequestreview-1612151937) at 2023-09-05 05:52 PM PDT -DorianDeptuch,2023-10-01T16:55:20Z,- DorianDeptuch commented on pull request: [5634](https://github.com/hackforla/website/pull/5634#issuecomment-1742137914) at 2023-10-01 09:55 AM PDT -DorianDeptuch,2023-10-03T04:37:35Z,- DorianDeptuch submitted pull request review: [5634](https://github.com/hackforla/website/pull/5634#pullrequestreview-1654340826) at 2023-10-02 09:37 PM PDT -DorianDeptuch,2023-10-03T04:49:00Z,- DorianDeptuch assigned to issue: [5628](https://github.com/hackforla/website/issues/5628#issuecomment-1740160222) at 2023-10-02 09:49 PM PDT -DorianDeptuch,2023-10-03T04:49:40Z,- DorianDeptuch commented on issue: [5628](https://github.com/hackforla/website/issues/5628#issuecomment-1744205926) at 2023-10-02 09:49 PM PDT -DorianDeptuch,2023-10-05T04:11:49Z,- DorianDeptuch opened pull request: [5663](https://github.com/hackforla/website/pull/5663) at 2023-10-04 09:11 PM PDT -DorianDeptuch,2023-10-05T04:20:10Z,- DorianDeptuch commented on pull request: [5658](https://github.com/hackforla/website/pull/5658#issuecomment-1748009286) at 2023-10-04 09:20 PM PDT -DorianDeptuch,2023-10-05T04:24:12Z,- DorianDeptuch commented on pull request: [5659](https://github.com/hackforla/website/pull/5659#issuecomment-1748011627) at 2023-10-04 09:24 PM PDT -DorianDeptuch,2023-10-05T04:31:37Z,- DorianDeptuch submitted pull request review: [5659](https://github.com/hackforla/website/pull/5659#pullrequestreview-1658859193) at 2023-10-04 09:31 PM PDT -DorianDeptuch,2023-10-06T17:36:15Z,- DorianDeptuch submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1662518619) at 2023-10-06 10:36 AM PDT -DorianDeptuch,2023-10-08T09:41:17Z,- DorianDeptuch pull request merged: [5663](https://github.com/hackforla/website/pull/5663#event-10583687013) at 2023-10-08 02:41 AM PDT -DorianDeptuch,2023-10-18T02:24:37Z,- DorianDeptuch commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1767510716) at 2023-10-17 07:24 PM PDT -DorianDeptuch,2023-10-19T05:09:59Z,- DorianDeptuch submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1686683791) at 2023-10-18 10:09 PM PDT -DorianDeptuch,2023-10-23T20:27:38Z,- DorianDeptuch commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1775967597) at 2023-10-23 01:27 PM PDT -DorianDeptuch,2023-10-23T20:29:23Z,- DorianDeptuch submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1693470781) at 2023-10-23 01:29 PM PDT -Dprosser4,4711,SKILLS ISSUE -Dprosser4,2023-05-24T02:43:04Z,- Dprosser4 opened issue: [4711](https://github.com/hackforla/website/issues/4711) at 2023-05-23 07:43 PM PDT -Dprosser4,2023-05-24T02:59:14Z,- Dprosser4 assigned to issue: [4711](https://github.com/hackforla/website/issues/4711) at 2023-05-23 07:59 PM PDT -Dprosser4,2023-05-26T21:44:02Z,- Dprosser4 assigned to issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547146250) at 2023-05-26 02:44 PM PDT -Dprosser4,2023-05-26T21:46:44Z,- Dprosser4 commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1564993656) at 2023-05-26 02:46 PM PDT -Dprosser4,2023-05-26T22:28:13Z,- Dprosser4 opened pull request: [4747](https://github.com/hackforla/website/pull/4747) at 2023-05-26 03:28 PM PDT -Dprosser4,2023-05-27T15:23:08Z,- Dprosser4 commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565496547) at 2023-05-27 08:23 AM PDT -Dprosser4,2023-05-30T01:17:36Z,- Dprosser4 pull request merged: [4747](https://github.com/hackforla/website/pull/4747#event-9372744344) at 2023-05-29 06:17 PM PDT -Dprosser4,2023-05-30T18:39:12Z,- Dprosser4 assigned to issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1565219916) at 2023-05-30 11:39 AM PDT -Dprosser4,2023-05-30T18:41:18Z,- Dprosser4 commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1568900832) at 2023-05-30 11:41 AM PDT -Dprosser4,2023-05-30T19:07:07Z,- Dprosser4 opened pull request: [4757](https://github.com/hackforla/website/pull/4757) at 2023-05-30 12:07 PM PDT -Dprosser4,2023-06-04T02:29:08Z,- Dprosser4 pull request merged: [4757](https://github.com/hackforla/website/pull/4757#event-9423457217) at 2023-06-03 07:29 PM PDT -Dprosser4,2023-06-06T19:12:57Z,- Dprosser4 assigned to issue: [4758](https://github.com/hackforla/website/issues/4758) at 2023-06-06 12:12 PM PDT -Dprosser4,2023-06-06T19:14:53Z,- Dprosser4 commented on issue: [4758](https://github.com/hackforla/website/issues/4758#issuecomment-1579314678) at 2023-06-06 12:14 PM PDT -Dprosser4,2023-06-06T19:49:24Z,- Dprosser4 opened pull request: [4789](https://github.com/hackforla/website/pull/4789) at 2023-06-06 12:49 PM PDT -Dprosser4,2023-06-14T06:35:11Z,- Dprosser4 pull request merged: [4789](https://github.com/hackforla/website/pull/4789#event-9524167668) at 2023-06-13 11:35 PM PDT -DrAcula27,6598,SKILLS ISSUE -DrAcula27,2024-04-09T02:51:17Z,- DrAcula27 opened issue: [6598](https://github.com/hackforla/website/issues/6598) at 2024-04-08 07:51 PM PDT -DrAcula27,2024-04-09T02:51:22Z,- DrAcula27 assigned to issue: [6598](https://github.com/hackforla/website/issues/6598) at 2024-04-08 07:51 PM PDT -DrAcula27,2024-04-16T02:32:08Z,- DrAcula27 assigned to issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-04-15 07:32 PM PDT -DrAcula27,2024-04-16T02:32:13Z,- DrAcula27 unassigned from issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-04-15 07:32 PM PDT -DrAcula27,2024-04-16T02:32:17Z,- DrAcula27 assigned to issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-04-15 07:32 PM PDT -DrAcula27,2024-04-16T02:35:28Z,- DrAcula27 unassigned from issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058123867) at 2024-04-15 07:35 PM PDT -DrAcula27,2024-04-16T02:35:37Z,- DrAcula27 assigned to issue: [6181](https://github.com/hackforla/website/issues/6181) at 2024-04-15 07:35 PM PDT -DrAcula27,2024-04-16T02:36:05Z,- DrAcula27 unassigned from issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2058126241) at 2024-04-15 07:36 PM PDT -DrAcula27,2024-04-16T02:42:50Z,- DrAcula27 assigned to issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058123867) at 2024-04-15 07:42 PM PDT -DrAcula27,2024-04-16T02:51:25Z,- DrAcula27 commented on issue: [6179](https://github.com/hackforla/website/issues/6179#issuecomment-2058137459) at 2024-04-15 07:51 PM PDT -DrAcula27,2024-04-16T02:54:46Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2058139956) at 2024-04-15 07:54 PM PDT -DrAcula27,2024-04-16T02:59:01Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2058143009) at 2024-04-15 07:59 PM PDT -DrAcula27,2024-04-16T04:17:32Z,- DrAcula27 opened pull request: [6656](https://github.com/hackforla/website/pull/6656) at 2024-04-15 09:17 PM PDT -DrAcula27,2024-04-18T00:35:31Z,- DrAcula27 pull request closed w/o merging: [6656](https://github.com/hackforla/website/pull/6656#event-12516219356) at 2024-04-17 05:35 PM PDT -DrAcula27,2024-04-18T19:31:12Z,- DrAcula27 opened pull request: [6681](https://github.com/hackforla/website/pull/6681) at 2024-04-18 12:31 PM PDT -DrAcula27,2024-04-18T21:14:43Z,- DrAcula27 pull request merged: [6681](https://github.com/hackforla/website/pull/6681#event-12529163452) at 2024-04-18 02:14 PM PDT -DrAcula27,2024-04-19T03:24:33Z,- DrAcula27 closed issue as completed: [6598](https://github.com/hackforla/website/issues/6598#event-12531987438) at 2024-04-18 08:24 PM PDT -DrAcula27,2024-04-23T00:12:00Z,- DrAcula27 opened issue: [6710](https://github.com/hackforla/website/issues/6710) at 2024-04-22 05:12 PM PDT -DrAcula27,2024-04-29T23:35:10Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2083864307) at 2024-04-29 04:35 PM PDT -DrAcula27,2024-05-01T02:17:41Z,- DrAcula27 commented on pull request: [6792](https://github.com/hackforla/website/pull/6792#issuecomment-2087877305) at 2024-04-30 07:17 PM PDT -DrAcula27,2024-05-01T02:39:56Z,- DrAcula27 assigned to issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2083864307) at 2024-04-30 07:39 PM PDT -DrAcula27,2024-05-01T02:41:13Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2087893211) at 2024-04-30 07:41 PM PDT -DrAcula27,2024-05-02T03:20:52Z,- DrAcula27 submitted pull request review: [6792](https://github.com/hackforla/website/pull/6792#pullrequestreview-2034747526) at 2024-05-01 08:20 PM PDT -DrAcula27,2024-05-03T06:04:17Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2092361544) at 2024-05-02 11:04 PM PDT -DrAcula27,2024-05-07T18:25:17Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2099049384) at 2024-05-07 11:25 AM PDT -DrAcula27,2024-05-14T21:03:27Z,- DrAcula27 assigned to issue: [6724](https://github.com/hackforla/website/issues/6724) at 2024-05-14 02:03 PM PDT -DrAcula27,2024-05-14T21:05:11Z,- DrAcula27 commented on issue: [6724](https://github.com/hackforla/website/issues/6724#issuecomment-2111140756) at 2024-05-14 02:05 PM PDT -DrAcula27,2024-05-14T21:45:47Z,- DrAcula27 opened pull request: [6855](https://github.com/hackforla/website/pull/6855) at 2024-05-14 02:45 PM PDT -DrAcula27,2024-05-14T21:48:36Z,- DrAcula27 commented on issue: [6724](https://github.com/hackforla/website/issues/6724#issuecomment-2111193910) at 2024-05-14 02:48 PM PDT -DrAcula27,2024-05-15T02:29:53Z,- DrAcula27 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2111466762) at 2024-05-14 07:29 PM PDT -DrAcula27,2024-05-15T23:12:30Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2113629723) at 2024-05-15 04:12 PM PDT -DrAcula27,2024-05-15T23:40:54Z,- DrAcula27 submitted pull request review: [6852](https://github.com/hackforla/website/pull/6852#pullrequestreview-2059229265) at 2024-05-15 04:40 PM PDT -DrAcula27,2024-05-16T00:09:58Z,- DrAcula27 assigned to issue: [6573](https://github.com/hackforla/website/issues/6573) at 2024-05-15 05:09 PM PDT -DrAcula27,2024-05-16T00:34:43Z,- DrAcula27 commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2113698715) at 2024-05-15 05:34 PM PDT -DrAcula27,2024-05-16T17:58:39Z,- DrAcula27 pull request merged: [6855](https://github.com/hackforla/website/pull/6855#event-12837823697) at 2024-05-16 10:58 AM PDT -DrAcula27,2024-05-22T03:58:11Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2123821033) at 2024-05-21 08:58 PM PDT -DrAcula27,2024-05-24T22:23:55Z,- DrAcula27 commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2130439437) at 2024-05-24 03:23 PM PDT -DrAcula27,2024-05-30T19:06:23Z,- DrAcula27 commented on pull request: [6914](https://github.com/hackforla/website/pull/6914#issuecomment-2140703107) at 2024-05-30 12:06 PM PDT -DrAcula27,2024-05-30T19:10:10Z,- DrAcula27 commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2140709623) at 2024-05-30 12:10 PM PDT -DrAcula27,2024-06-06T20:15:43Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2153335697) at 2024-06-06 01:15 PM PDT -DrAcula27,2024-06-06T20:37:40Z,- DrAcula27 assigned to issue: [6862](https://github.com/hackforla/website/issues/6862) at 2024-06-06 01:37 PM PDT -DrAcula27,2024-06-06T20:45:01Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2153378363) at 2024-06-06 01:45 PM PDT -DrAcula27,2024-06-15T03:46:39Z,- DrAcula27 commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2169089257) at 2024-06-14 08:46 PM PDT -DrAcula27,2024-06-15T04:23:32Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2169118991) at 2024-06-14 09:23 PM PDT -DrAcula27,2024-06-20T19:50:07Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2181415285) at 2024-06-20 12:50 PM PDT -DrAcula27,2024-06-21T02:55:30Z,- DrAcula27 opened issue: [7042](https://github.com/hackforla/website/issues/7042) at 2024-06-20 07:55 PM PDT -DrAcula27,2024-06-21T02:55:31Z,- DrAcula27 assigned to issue: [7042](https://github.com/hackforla/website/issues/7042) at 2024-06-20 07:55 PM PDT -DrAcula27,2024-06-23T23:28:38Z,- DrAcula27 unassigned from issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2173919677) at 2024-06-23 04:28 PM PDT -DrAcula27,2024-06-23T23:30:59Z,- DrAcula27 unassigned from issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2181899671) at 2024-06-23 04:30 PM PDT -DrAcula27,2024-06-25T23:05:31Z,- DrAcula27 commented on issue: [6862](https://github.com/hackforla/website/issues/6862#issuecomment-2190156154) at 2024-06-25 04:05 PM PDT -DrAcula27,2024-06-28T03:02:00Z,- DrAcula27 opened pull request: [7077](https://github.com/hackforla/website/pull/7077) at 2024-06-27 08:02 PM PDT -DrAcula27,2024-07-05T17:37:22Z,- DrAcula27 pull request merged: [7077](https://github.com/hackforla/website/pull/7077#event-13408293773) at 2024-07-05 10:37 AM PDT -DrAcula27,2024-08-23T02:15:35Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2306058678) at 2024-08-22 07:15 PM PDT -DrAcula27,2024-08-23T02:21:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2306063274) at 2024-08-22 07:21 PM PDT -DrAcula27,2024-08-23T02:23:19Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2306064900) at 2024-08-22 07:23 PM PDT -DrAcula27,2024-08-23T20:09:58Z,- DrAcula27 assigned to issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2196118205) at 2024-08-23 01:09 PM PDT -DrAcula27,2024-08-23T20:14:56Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2307750006) at 2024-08-23 01:14 PM PDT -DrAcula27,2024-09-03T16:01:10Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2326891046) at 2024-09-03 09:01 AM PDT -DrAcula27,2024-09-04T00:00:16Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2327648672) at 2024-09-03 05:00 PM PDT -DrAcula27,2024-09-04T02:08:37Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2327768189) at 2024-09-03 07:08 PM PDT -DrAcula27,2024-09-08T19:00:33Z,- DrAcula27 assigned to issue: [6710](https://github.com/hackforla/website/issues/6710#event-13510534456) at 2024-09-08 12:00 PM PDT -DrAcula27,2024-09-08T22:59:10Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336852900) at 2024-09-08 03:59 PM PDT -DrAcula27,2024-09-08T23:11:18Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336856538) at 2024-09-08 04:11 PM PDT -DrAcula27,2024-09-08T23:12:35Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336856865) at 2024-09-08 04:12 PM PDT -DrAcula27,2024-09-08T23:20:22Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336859212) at 2024-09-08 04:20 PM PDT -DrAcula27,2024-09-08T23:33:32Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336863203) at 2024-09-08 04:33 PM PDT -DrAcula27,2024-09-08T23:37:38Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336864607) at 2024-09-08 04:37 PM PDT -DrAcula27,2024-09-08T23:40:07Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2336865827) at 2024-09-08 04:40 PM PDT -DrAcula27,2024-09-10T00:19:16Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2339373317) at 2024-09-09 05:19 PM PDT -DrAcula27,2024-09-11T01:02:58Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2342416743) at 2024-09-10 06:02 PM PDT -DrAcula27,2024-09-11T02:17:54Z,- DrAcula27 commented on pull request: [7436](https://github.com/hackforla/website/pull/7436#issuecomment-2342480955) at 2024-09-10 07:17 PM PDT -DrAcula27,2024-09-14T02:36:07Z,- DrAcula27 submitted pull request review: [7436](https://github.com/hackforla/website/pull/7436#pullrequestreview-2304356195) at 2024-09-13 07:36 PM PDT -DrAcula27,2024-09-14T04:22:18Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2350826996) at 2024-09-13 09:22 PM PDT -DrAcula27,2024-09-16T23:26:38Z,- DrAcula27 commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2354203023) at 2024-09-16 04:26 PM PDT -DrAcula27,2024-09-18T20:14:02Z,- DrAcula27 commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2359323585) at 2024-09-18 01:14 PM PDT -DrAcula27,2024-09-18T23:20:30Z,- DrAcula27 opened pull request: [7493](https://github.com/hackforla/website/pull/7493) at 2024-09-18 04:20 PM PDT -DrAcula27,2024-09-21T01:22:44Z,- DrAcula27 commented on pull request: [7493](https://github.com/hackforla/website/pull/7493#issuecomment-2364800731) at 2024-09-20 06:22 PM PDT -DrAcula27,2024-09-21T01:28:25Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2364802503) at 2024-09-20 06:28 PM PDT -DrAcula27,2024-09-21T02:15:15Z,- DrAcula27 pull request merged: [7493](https://github.com/hackforla/website/pull/7493#event-14347597552) at 2024-09-20 07:15 PM PDT -DrAcula27,2024-09-23T23:00:52Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369715085) at 2024-09-23 04:00 PM PDT -DrAcula27,2024-09-23T23:07:45Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369729674) at 2024-09-23 04:07 PM PDT -DrAcula27,2024-09-23T23:09:56Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369734509) at 2024-09-23 04:09 PM PDT -DrAcula27,2024-09-23T23:11:50Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2369738797) at 2024-09-23 04:11 PM PDT -DrAcula27,2024-10-02T01:36:39Z,- DrAcula27 submitted pull request review: [7557](https://github.com/hackforla/website/pull/7557#pullrequestreview-2341770042) at 2024-10-01 06:36 PM PDT -DrAcula27,2024-10-02T01:38:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2387468707) at 2024-10-01 06:38 PM PDT -DrAcula27,2024-10-08T01:39:49Z,- DrAcula27 submitted pull request review: [7568](https://github.com/hackforla/website/pull/7568#pullrequestreview-2353205515) at 2024-10-07 06:39 PM PDT -DrAcula27,2024-10-08T01:40:49Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2398444988) at 2024-10-07 06:40 PM PDT -DrAcula27,2024-10-15T02:36:50Z,- DrAcula27 submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2367988645) at 2024-10-14 07:36 PM PDT -DrAcula27,2024-10-15T02:39:52Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2412693102) at 2024-10-14 07:39 PM PDT -DrAcula27,2024-10-18T02:15:29Z,- DrAcula27 assigned to issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2167157849) at 2024-10-17 07:15 PM PDT -DrAcula27,2024-10-18T02:18:43Z,- DrAcula27 commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2421119881) at 2024-10-17 07:18 PM PDT -DrAcula27,2024-10-19T03:08:59Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2423530617) at 2024-10-18 08:08 PM PDT -DrAcula27,2024-10-19T04:59:23Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2423571556) at 2024-10-18 09:59 PM PDT -DrAcula27,2024-10-27T23:43:35Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2440223129) at 2024-10-27 04:43 PM PDT -DrAcula27,2024-10-27T23:46:35Z,- DrAcula27 assigned to issue: [7490](https://github.com/hackforla/website/issues/7490) at 2024-10-27 04:46 PM PDT -DrAcula27,2024-10-27T23:46:50Z,- DrAcula27 unassigned from issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224295) at 2024-10-27 04:46 PM PDT -DrAcula27,2024-10-27T23:47:42Z,- DrAcula27 assigned to issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224295) at 2024-10-27 04:47 PM PDT -DrAcula27,2024-10-27T23:47:56Z,- DrAcula27 unassigned from issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224668) at 2024-10-27 04:47 PM PDT -DrAcula27,2024-10-27T23:48:18Z,- DrAcula27 assigned to issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224668) at 2024-10-27 04:48 PM PDT -DrAcula27,2024-10-27T23:48:32Z,- DrAcula27 unassigned from issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224870) at 2024-10-27 04:48 PM PDT -DrAcula27,2024-10-28T00:03:10Z,- DrAcula27 opened issue: [7641](https://github.com/hackforla/website/issues/7641) at 2024-10-27 05:03 PM PDT -DrAcula27,2024-10-28T00:05:07Z,- DrAcula27 commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2440231582) at 2024-10-27 05:05 PM PDT -DrAcula27,2024-10-28T00:11:47Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2440235676) at 2024-10-27 05:11 PM PDT -DrAcula27,2024-10-28T17:38:14Z,- DrAcula27 assigned to issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442223140) at 2024-10-28 10:38 AM PDT -DrAcula27,2024-10-28T20:44:46Z,- DrAcula27 commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442592500) at 2024-10-28 01:44 PM PDT -DrAcula27,2024-10-28T22:49:10Z,- DrAcula27 unassigned from issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442592500) at 2024-10-28 03:49 PM PDT -DrAcula27,2024-10-30T02:20:35Z,- DrAcula27 commented on pull request: [7665](https://github.com/hackforla/website/pull/7665#issuecomment-2445682873) at 2024-10-29 07:20 PM PDT -DrAcula27,2024-10-30T02:56:02Z,- DrAcula27 commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2445722043) at 2024-10-29 07:56 PM PDT -DrAcula27,2024-10-30T03:17:47Z,- DrAcula27 submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2403478471) at 2024-10-29 08:17 PM PDT -DrAcula27,2024-11-05T01:30:22Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2456038492) at 2024-11-04 05:30 PM PST -DrAcula27,2024-11-05T01:33:43Z,- DrAcula27 assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2406166623) at 2024-11-04 05:33 PM PST -DrAcula27,2024-11-05T01:33:57Z,- DrAcula27 unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2456042065) at 2024-11-04 05:33 PM PST -DrAcula27,2024-11-16T20:34:06Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2480802136) at 2024-11-16 12:34 PM PST -DrAcula27,2024-11-21T02:57:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2489964132) at 2024-11-20 06:57 PM PST -DrAcula27,2024-11-21T03:04:51Z,- DrAcula27 assigned to issue: [7661](https://github.com/hackforla/website/issues/7661) at 2024-11-20 07:04 PM PST -DrAcula27,2024-11-21T03:07:10Z,- DrAcula27 commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2489972891) at 2024-11-20 07:07 PM PST -DrAcula27,2024-11-21T22:24:18Z,- DrAcula27 opened issue: [7750](https://github.com/hackforla/website/issues/7750) at 2024-11-21 02:24 PM PST -DrAcula27,2024-11-21T22:26:15Z,- DrAcula27 commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2492471668) at 2024-11-21 02:26 PM PST -DrAcula27,2024-11-21T22:35:36Z,- DrAcula27 opened issue: [7751](https://github.com/hackforla/website/issues/7751) at 2024-11-21 02:35 PM PST -DrAcula27,2024-11-21T22:37:02Z,- DrAcula27 commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2492493162) at 2024-11-21 02:37 PM PST -DrAcula27,2024-11-21T22:42:03Z,- DrAcula27 opened issue: [7752](https://github.com/hackforla/website/issues/7752) at 2024-11-21 02:42 PM PST -DrAcula27,2024-11-21T22:45:43Z,- DrAcula27 opened issue: [7753](https://github.com/hackforla/website/issues/7753) at 2024-11-21 02:45 PM PST -DrAcula27,2024-11-21T22:48:44Z,- DrAcula27 opened issue: [7754](https://github.com/hackforla/website/issues/7754) at 2024-11-21 02:48 PM PST -DrAcula27,2024-11-21T22:51:53Z,- DrAcula27 opened issue: [7755](https://github.com/hackforla/website/issues/7755) at 2024-11-21 02:51 PM PST -DrAcula27,2024-12-02T21:49:29Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2512997173) at 2024-12-02 01:49 PM PST -DrAcula27,2024-12-10T01:40:40Z,- DrAcula27 submitted pull request review: [7798](https://github.com/hackforla/website/pull/7798#pullrequestreview-2490579014) at 2024-12-09 05:40 PM PST -DrAcula27,2024-12-10T01:41:20Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2530007724) at 2024-12-09 05:41 PM PST -DrAcula27,2024-12-12T23:37:01Z,- DrAcula27 submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2500976922) at 2024-12-12 03:37 PM PST -DrAcula27,2024-12-12T23:37:51Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2540221309) at 2024-12-12 03:37 PM PST -DrAcula27,2024-12-16T18:54:46Z,- DrAcula27 submitted pull request review: [7803](https://github.com/hackforla/website/pull/7803#pullrequestreview-2507017527) at 2024-12-16 10:54 AM PST -DrAcula27,2024-12-16T18:56:28Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2546399624) at 2024-12-16 10:56 AM PST -DrAcula27,2025-01-03T19:38:34Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2569724566) at 2025-01-03 11:38 AM PST -DrAcula27,2025-01-03T19:43:47Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2569730066) at 2025-01-03 11:43 AM PST -DrAcula27,2025-01-06T23:02:28Z,- DrAcula27 submitted pull request review: [7816](https://github.com/hackforla/website/pull/7816#pullrequestreview-2533115165) at 2025-01-06 03:02 PM PST -DrAcula27,2025-01-06T23:03:39Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2574080061) at 2025-01-06 03:03 PM PST -DrAcula27,2025-01-13T22:03:34Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2588316943) at 2025-01-13 02:03 PM PST -DrAcula27,2025-01-21T20:34:31Z,- DrAcula27 submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2565639821) at 2025-01-21 12:34 PM PST -DrAcula27,2025-01-21T21:00:28Z,- DrAcula27 submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2565682898) at 2025-01-21 01:00 PM PST -DrAcula27,2025-01-21T21:02:19Z,- DrAcula27 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518894122) at 2025-01-21 01:02 PM PST -DrAcula27,2025-01-21T21:02:37Z,- DrAcula27 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 01:02 PM PST -DrAcula27,2025-01-21T23:48:34Z,- DrAcula27 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 03:48 PM PST -DrAcula27,2025-01-21T23:48:48Z,- DrAcula27 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 03:48 PM PST -DrAcula27,2025-01-21T23:51:58Z,- DrAcula27 assigned to issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2521235751) at 2025-01-21 03:51 PM PST -DrAcula27,2025-01-22T18:53:31Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2608022617) at 2025-01-22 10:53 AM PST -DrAcula27,2025-01-24T03:15:45Z,- DrAcula27 submitted pull request review: [7846](https://github.com/hackforla/website/pull/7846#pullrequestreview-2571555424) at 2025-01-23 07:15 PM PST -DrAcula27,2025-01-24T03:22:50Z,- DrAcula27 submitted pull request review: [7846](https://github.com/hackforla/website/pull/7846#pullrequestreview-2571560607) at 2025-01-23 07:22 PM PST -DrAcula27,2025-01-29T03:36:05Z,- DrAcula27 submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2579932663) at 2025-01-28 07:36 PM PST -DrAcula27,2025-01-29T03:38:29Z,- DrAcula27 submitted pull request review: [7856](https://github.com/hackforla/website/pull/7856#pullrequestreview-2579933958) at 2025-01-28 07:38 PM PST -DrAcula27,2025-02-01T02:43:18Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2628718438) at 2025-01-31 06:43 PM PST -DrAcula27,2025-02-01T02:59:08Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2628726162) at 2025-01-31 06:59 PM PST -DrAcula27,2025-02-01T03:05:54Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2628730100) at 2025-01-31 07:05 PM PST -DrAcula27,2025-02-01T03:39:39Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2628744521) at 2025-01-31 07:39 PM PST -DrAcula27,2025-02-06T16:41:29Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2640377681) at 2025-02-06 08:41 AM PST -DrAcula27,2025-02-06T17:11:43Z,- DrAcula27 commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2640501913) at 2025-02-06 09:11 AM PST -DrAcula27,2025-02-06T17:26:26Z,- DrAcula27 opened pull request: [7897](https://github.com/hackforla/website/pull/7897) at 2025-02-06 09:26 AM PST -DrAcula27,2025-02-10T23:05:19Z,- DrAcula27 submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2607374895) at 2025-02-10 03:05 PM PST -DrAcula27,2025-02-11T00:48:47Z,- DrAcula27 commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2649577841) at 2025-02-10 04:48 PM PST -DrAcula27,2025-02-12T05:45:11Z,- DrAcula27 pull request merged: [7897](https://github.com/hackforla/website/pull/7897#event-16275286229) at 2025-02-11 09:45 PM PST -DrAcula27,2025-02-12T23:28:21Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2655067603) at 2025-02-12 03:28 PM PST -DrAcula27,2025-02-13T01:43:52Z,- DrAcula27 submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2613621958) at 2025-02-12 05:43 PM PST -DrAcula27,2025-02-15T03:18:45Z,- DrAcula27 submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2619276354) at 2025-02-14 07:18 PM PST -DrAcula27,2025-02-17T22:52:38Z,- DrAcula27 submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2622057175) at 2025-02-17 02:52 PM PST -DrAcula27,2025-02-17T22:54:21Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2664192929) at 2025-02-17 02:54 PM PST -DrAcula27,2025-02-17T23:09:16Z,- DrAcula27 submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2622069888) at 2025-02-17 03:09 PM PST -DrAcula27,2025-02-17T23:37:01Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2664232004) at 2025-02-17 03:37 PM PST -DrAcula27,2025-02-19T18:28:40Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2669446832) at 2025-02-19 10:28 AM PST -DrAcula27,2025-02-24T19:14:07Z,- DrAcula27 commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2679418066) at 2025-02-24 11:14 AM PST -DrAcula27,2025-02-24T20:05:05Z,- DrAcula27 submitted pull request review: [7931](https://github.com/hackforla/website/pull/7931#pullrequestreview-2638323701) at 2025-02-24 12:05 PM PST -DrAcula27,2025-02-25T19:18:04Z,- DrAcula27 submitted pull request review: [7945](https://github.com/hackforla/website/pull/7945#pullrequestreview-2642173255) at 2025-02-25 11:18 AM PST -DrAcula27,2025-03-03T21:39:49Z,- DrAcula27 submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2655410965) at 2025-03-03 01:39 PM PST -DrAcula27,2025-03-10T21:38:15Z,- DrAcula27 submitted pull request review: [7986](https://github.com/hackforla/website/pull/7986#pullrequestreview-2672265526) at 2025-03-10 02:38 PM PDT -DrAcula27,2025-03-31T22:37:39Z,- DrAcula27 submitted pull request review: [8022](https://github.com/hackforla/website/pull/8022#pullrequestreview-2730675668) at 2025-03-31 03:37 PM PDT -DrAcula27,2025-04-07T22:28:47Z,- DrAcula27 submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2748252685) at 2025-04-07 03:28 PM PDT -DrAcula27,2025-04-12T00:25:28Z,- DrAcula27 submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2761847812) at 2025-04-11 05:25 PM PDT -DrAcula27,2025-04-21T20:46:21Z,- DrAcula27 submitted pull request review: [8072](https://github.com/hackforla/website/pull/8072#pullrequestreview-2782215113) at 2025-04-21 01:46 PM PDT -DrAcula27,2025-05-01T20:45:05Z,- DrAcula27 commented on issue: [8105](https://github.com/hackforla/website/issues/8105#issuecomment-2845734403) at 2025-05-01 01:45 PM PDT -drakenguyen4000,4174,SKILLS ISSUE -drakenguyen4000,2023-03-14T03:43:37Z,- drakenguyen4000 opened issue: [4174](https://github.com/hackforla/website/issues/4174) at 2023-03-13 08:43 PM PDT -drakenguyen4000,2023-03-14T03:45:26Z,- drakenguyen4000 assigned to issue: [4174](https://github.com/hackforla/website/issues/4174) at 2023-03-13 08:45 PM PDT -drakenguyen4000,2023-03-17T03:57:26Z,- drakenguyen4000 assigned to issue: [3877](https://github.com/hackforla/website/issues/3877) at 2023-03-16 08:57 PM PDT -drakenguyen4000,2023-03-17T04:04:42Z,- drakenguyen4000 unassigned from issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1473089388) at 2023-03-16 09:04 PM PDT -drakenguyen4000,2023-03-17T04:06:31Z,- drakenguyen4000 assigned to issue: [3904](https://github.com/hackforla/website/issues/3904) at 2023-03-16 09:06 PM PDT -drakenguyen4000,2023-03-18T03:52:53Z,- drakenguyen4000 commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1474673313) at 2023-03-17 08:52 PM PDT -drakenguyen4000,2023-03-18T04:06:11Z,- drakenguyen4000 commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1474679450) at 2023-03-17 09:06 PM PDT -drakenguyen4000,2023-03-18T04:10:52Z,- drakenguyen4000 commented on issue: [3904](https://github.com/hackforla/website/issues/3904#issuecomment-1474684638) at 2023-03-17 09:10 PM PDT -drakenguyen4000,2023-03-19T22:22:34Z,- drakenguyen4000 opened pull request: [4214](https://github.com/hackforla/website/pull/4214) at 2023-03-19 03:22 PM PDT -drakenguyen4000,2023-03-21T03:09:56Z,- drakenguyen4000 commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1477222751) at 2023-03-20 08:09 PM PDT -drakenguyen4000,2023-03-22T18:00:22Z,- drakenguyen4000 pull request merged: [4214](https://github.com/hackforla/website/pull/4214#event-8819797967) at 2023-03-22 11:00 AM PDT -drakenguyen4000,2023-03-24T03:58:24Z,- drakenguyen4000 assigned to issue: [4268](https://github.com/hackforla/website/issues/4268) at 2023-03-23 08:58 PM PDT -drakenguyen4000,2023-03-26T04:54:04Z,- drakenguyen4000 commented on issue: [4268](https://github.com/hackforla/website/issues/4268#issuecomment-1483995312) at 2023-03-25 09:54 PM PDT -drakenguyen4000,2023-03-26T04:55:27Z,- drakenguyen4000 opened pull request: [4290](https://github.com/hackforla/website/pull/4290) at 2023-03-25 09:55 PM PDT -drakenguyen4000,2023-03-27T02:54:53Z,- drakenguyen4000 commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1484405732) at 2023-03-26 07:54 PM PDT -drakenguyen4000,2023-03-27T04:42:17Z,- drakenguyen4000 submitted pull request review: [4295](https://github.com/hackforla/website/pull/4295#pullrequestreview-1358315229) at 2023-03-26 09:42 PM PDT -drakenguyen4000,2023-03-27T04:51:13Z,- drakenguyen4000 commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1484484753) at 2023-03-26 09:51 PM PDT -drakenguyen4000,2023-03-28T03:57:51Z,- drakenguyen4000 commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1486167198) at 2023-03-27 08:57 PM PDT -drakenguyen4000,2023-03-28T22:51:52Z,- drakenguyen4000 pull request merged: [4290](https://github.com/hackforla/website/pull/4290#event-8870290067) at 2023-03-28 03:51 PM PDT -drakenguyen4000,2023-03-29T02:21:12Z,- drakenguyen4000 assigned to issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1484277046) at 2023-03-28 07:21 PM PDT -drakenguyen4000,2023-03-29T04:15:57Z,- drakenguyen4000 commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1487922495) at 2023-03-28 09:15 PM PDT -drakenguyen4000,2023-03-31T05:05:08Z,- drakenguyen4000 opened pull request: [4353](https://github.com/hackforla/website/pull/4353) at 2023-03-30 10:05 PM PDT -drakenguyen4000,2023-04-03T02:46:13Z,- drakenguyen4000 pull request merged: [4353](https://github.com/hackforla/website/pull/4353#event-8907891785) at 2023-04-02 07:46 PM PDT -drakenguyen4000,2023-04-03T05:03:01Z,- drakenguyen4000 commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1493664892) at 2023-04-02 10:03 PM PDT -drakenguyen4000,2023-04-03T05:08:29Z,- drakenguyen4000 commented on pull request: [4384](https://github.com/hackforla/website/pull/4384#issuecomment-1493670671) at 2023-04-02 10:08 PM PDT -drakenguyen4000,2023-04-04T03:07:24Z,- drakenguyen4000 submitted pull request review: [4384](https://github.com/hackforla/website/pull/4384#pullrequestreview-1370117555) at 2023-04-03 08:07 PM PDT -drakenguyen4000,2023-04-04T03:09:22Z,- drakenguyen4000 commented on pull request: [4384](https://github.com/hackforla/website/pull/4384#issuecomment-1495281714) at 2023-04-03 08:09 PM PDT -drakenguyen4000,2023-04-04T03:39:37Z,- drakenguyen4000 assigned to issue: [4351](https://github.com/hackforla/website/issues/4351) at 2023-04-03 08:39 PM PDT -drakenguyen4000,2023-04-04T03:40:30Z,- drakenguyen4000 commented on issue: [4351](https://github.com/hackforla/website/issues/4351#issuecomment-1495300299) at 2023-04-03 08:40 PM PDT -drakenguyen4000,2023-04-04T04:18:11Z,- drakenguyen4000 submitted pull request review: [4374](https://github.com/hackforla/website/pull/4374#pullrequestreview-1370167366) at 2023-04-03 09:18 PM PDT -drakenguyen4000,2023-04-04T04:23:49Z,- drakenguyen4000 commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1495326944) at 2023-04-03 09:23 PM PDT -drakenguyen4000,2023-04-08T04:16:17Z,- drakenguyen4000 commented on issue: [4351](https://github.com/hackforla/website/issues/4351#issuecomment-1500785418) at 2023-04-07 09:16 PM PDT -drakenguyen4000,2023-04-09T03:55:13Z,- drakenguyen4000 opened pull request: [4444](https://github.com/hackforla/website/pull/4444) at 2023-04-08 08:55 PM PDT -drakenguyen4000,2023-04-10T04:24:01Z,- drakenguyen4000 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1501375828) at 2023-04-09 09:24 PM PDT -drakenguyen4000,2023-04-10T05:17:17Z,- drakenguyen4000 submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1377091297) at 2023-04-09 10:17 PM PDT -drakenguyen4000,2023-04-12T01:12:50Z,- drakenguyen4000 pull request merged: [4444](https://github.com/hackforla/website/pull/4444#event-8979550812) at 2023-04-11 06:12 PM PDT -drakenguyen4000,2023-04-13T02:31:14Z,- drakenguyen4000 submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1382485781) at 2023-04-12 07:31 PM PDT -drakenguyen4000,2023-04-15T04:27:02Z,- drakenguyen4000 commented on pull request: [4518](https://github.com/hackforla/website/pull/4518#issuecomment-1509497986) at 2023-04-14 09:27 PM PDT -drakenguyen4000,2023-04-15T04:28:01Z,- drakenguyen4000 submitted pull request review: [4518](https://github.com/hackforla/website/pull/4518#pullrequestreview-1386304878) at 2023-04-14 09:28 PM PDT -drakenguyen4000,2023-04-15T04:57:20Z,- drakenguyen4000 commented on pull request: [4516](https://github.com/hackforla/website/pull/4516#issuecomment-1509509609) at 2023-04-14 09:57 PM PDT -drakenguyen4000,2023-04-15T05:01:31Z,- drakenguyen4000 submitted pull request review: [4516](https://github.com/hackforla/website/pull/4516#pullrequestreview-1386311842) at 2023-04-14 10:01 PM PDT -drakenguyen4000,2023-04-26T01:54:11Z,- drakenguyen4000 commented on issue: [4174](https://github.com/hackforla/website/issues/4174#issuecomment-1522648344) at 2023-04-25 06:54 PM PDT -drakenguyen4000,2023-04-29T22:25:20Z,- drakenguyen4000 assigned to issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1526855180) at 2023-04-29 03:25 PM PDT -drakenguyen4000,2023-04-30T22:00:16Z,- drakenguyen4000 assigned to issue: [4527](https://github.com/hackforla/website/issues/4527) at 2023-04-30 03:00 PM PDT -drakenguyen4000,2023-04-30T22:02:15Z,- drakenguyen4000 commented on issue: [4527](https://github.com/hackforla/website/issues/4527#issuecomment-1529149476) at 2023-04-30 03:02 PM PDT -drakenguyen4000,2023-05-01T02:38:25Z,- drakenguyen4000 commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1529275002) at 2023-04-30 07:38 PM PDT -drakenguyen4000,2023-05-02T02:38:21Z,- drakenguyen4000 commented on pull request: [4586](https://github.com/hackforla/website/pull/4586#issuecomment-1530788898) at 2023-05-01 07:38 PM PDT -drakenguyen4000,2023-05-02T03:39:13Z,- drakenguyen4000 submitted pull request review: [4586](https://github.com/hackforla/website/pull/4586#pullrequestreview-1408350292) at 2023-05-01 08:39 PM PDT -drakenguyen4000,2023-05-03T02:32:09Z,- drakenguyen4000 submitted pull request review: [4586](https://github.com/hackforla/website/pull/4586#pullrequestreview-1410109090) at 2023-05-02 07:32 PM PDT -drakenguyen4000,2023-05-03T03:19:11Z,- drakenguyen4000 opened issue: [4594](https://github.com/hackforla/website/issues/4594) at 2023-05-02 08:19 PM PDT -drakenguyen4000,2023-05-03T03:19:11Z,- drakenguyen4000 assigned to issue: [4594](https://github.com/hackforla/website/issues/4594) at 2023-05-02 08:19 PM PDT -drakenguyen4000,2023-05-03T03:19:24Z,- drakenguyen4000 closed issue as completed: [4568](https://github.com/hackforla/website/issues/4568#event-9151268034) at 2023-05-02 08:19 PM PDT -drakenguyen4000,2023-05-03T22:55:14Z,- drakenguyen4000 commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1533855474) at 2023-05-03 03:55 PM PDT -drakenguyen4000,2023-05-06T02:00:32Z,- drakenguyen4000 commented on issue: [4527](https://github.com/hackforla/website/issues/4527#issuecomment-1536981659) at 2023-05-05 07:00 PM PDT -drakenguyen4000,2023-05-07T16:42:53Z,- drakenguyen4000 unassigned from issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537488312) at 2023-05-07 09:42 AM PDT -drakenguyen4000,2023-05-09T03:20:24Z,- drakenguyen4000 opened pull request: [4613](https://github.com/hackforla/website/pull/4613) at 2023-05-08 08:20 PM PDT -drakenguyen4000,2023-05-15T04:05:49Z,- drakenguyen4000 pull request merged: [4613](https://github.com/hackforla/website/pull/4613#event-9241835232) at 2023-05-14 09:05 PM PDT -drakenguyen4000,2023-06-04T02:15:14Z,- drakenguyen4000 commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1575331710) at 2023-06-03 07:15 PM PDT -drakenguyen4000,2023-06-04T02:15:25Z,- drakenguyen4000 closed issue by PR 4751: [4669](https://github.com/hackforla/website/issues/4669#event-9423432713) at 2023-06-03 07:15 PM PDT -drakenguyen4000,2023-06-04T02:28:43Z,- drakenguyen4000 commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1575336013) at 2023-06-03 07:28 PM PDT -drakenguyen4000,2023-06-04T02:29:10Z,- drakenguyen4000 closed issue by PR 4757: [4670](https://github.com/hackforla/website/issues/4670#event-9423457327) at 2023-06-03 07:29 PM PDT -drakenguyen4000,2023-06-11T01:49:13Z,- drakenguyen4000 commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1585969291) at 2023-06-10 06:49 PM PDT -drakenguyen4000,2023-06-11T01:49:40Z,- drakenguyen4000 closed issue by PR 4772: [4416](https://github.com/hackforla/website/issues/4416#event-9492138629) at 2023-06-10 06:49 PM PDT -drakenguyen4000,2023-06-18T03:18:11Z,- drakenguyen4000 commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1595937554) at 2023-06-17 08:18 PM PDT -drakenguyen4000,2023-06-18T03:18:52Z,- drakenguyen4000 closed issue by PR 4796: [3975](https://github.com/hackforla/website/issues/3975#event-9560042438) at 2023-06-17 08:18 PM PDT -drakenguyen4000,2023-06-18T03:37:08Z,- drakenguyen4000 commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1595939867) at 2023-06-17 08:37 PM PDT -drakenguyen4000,2023-06-18T03:37:19Z,- drakenguyen4000 closed issue by PR 4817: [4514](https://github.com/hackforla/website/issues/4514#event-9560059144) at 2023-06-17 08:37 PM PDT -drakenguyen4000,2023-06-25T04:00:36Z,- drakenguyen4000 commented on pull request: [4875](https://github.com/hackforla/website/pull/4875#issuecomment-1605858410) at 2023-06-24 09:00 PM PDT -drakenguyen4000,2023-06-25T04:01:05Z,- drakenguyen4000 closed issue by PR 4875: [4551](https://github.com/hackforla/website/issues/4551#event-9628582936) at 2023-06-24 09:01 PM PDT -drakenguyen4000,2023-06-25T04:16:55Z,- drakenguyen4000 commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1605861299) at 2023-06-24 09:16 PM PDT -drakenguyen4000,2023-06-25T04:17:08Z,- drakenguyen4000 closed issue by PR 4866: [4787](https://github.com/hackforla/website/issues/4787#event-9628600660) at 2023-06-24 09:17 PM PDT -drakenguyen4000,2023-07-02T03:36:04Z,- drakenguyen4000 commented on pull request: [4897](https://github.com/hackforla/website/pull/4897#issuecomment-1616332576) at 2023-07-01 08:36 PM PDT -drakenguyen4000,2023-07-02T03:36:30Z,- drakenguyen4000 closed issue by PR 4897: [4859](https://github.com/hackforla/website/issues/4859#event-9698572317) at 2023-07-01 08:36 PM PDT -drakenguyen4000,2023-07-02T03:39:47Z,- drakenguyen4000 commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1616336586) at 2023-07-01 08:39 PM PDT -drakenguyen4000,2023-07-02T03:40:14Z,- drakenguyen4000 closed issue by PR 4890: [4883](https://github.com/hackforla/website/issues/4883#event-9698583250) at 2023-07-01 08:40 PM PDT -drakenguyen4000,2023-07-08T02:38:08Z,- drakenguyen4000 closed issue as completed: [4174](https://github.com/hackforla/website/issues/4174#event-9761058881) at 2023-07-07 07:38 PM PDT -drakenguyen4000,2023-07-16T03:06:32Z,- drakenguyen4000 commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1636967930) at 2023-07-15 08:06 PM PDT -drakenguyen4000,2023-07-16T03:06:50Z,- drakenguyen4000 closed issue by PR 4926: [4507](https://github.com/hackforla/website/issues/4507#event-9830276847) at 2023-07-15 08:06 PM PDT -drakenguyen4000,2023-07-23T04:23:27Z,- drakenguyen4000 closed issue by PR 5044: [4920](https://github.com/hackforla/website/issues/4920#event-9892093727) at 2023-07-22 09:23 PM PDT -drakenguyen4000,2023-07-30T04:18:29Z,- drakenguyen4000 commented on pull request: [5105](https://github.com/hackforla/website/pull/5105#issuecomment-1657038326) at 2023-07-29 09:18 PM PDT -drakenguyen4000,2023-07-30T04:18:53Z,- drakenguyen4000 closed issue by PR 5105: [5032](https://github.com/hackforla/website/issues/5032#event-9956076026) at 2023-07-29 09:18 PM PDT -drakenguyen4000,2023-08-20T03:34:01Z,- drakenguyen4000 commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1685166438) at 2023-08-19 08:34 PM PDT -drakenguyen4000,2023-08-20T03:34:19Z,- drakenguyen4000 closed issue by PR 5249: [5174](https://github.com/hackforla/website/issues/5174#event-10137383022) at 2023-08-19 08:34 PM PDT -drakenguyen4000,2023-08-27T05:09:14Z,- drakenguyen4000 closed issue by PR 5251: [5042](https://github.com/hackforla/website/issues/5042#event-10201145903) at 2023-08-26 10:09 PM PDT -drakenguyen4000,2023-09-10T04:07:32Z,- drakenguyen4000 closed issue by PR 5454: [5411](https://github.com/hackforla/website/issues/5411#event-10325447836) at 2023-09-09 09:07 PM PDT -drakenguyen4000,2023-09-17T01:30:23Z,- drakenguyen4000 closed issue by PR 5457: [5368](https://github.com/hackforla/website/issues/5368#event-10390589236) at 2023-09-16 06:30 PM PDT -drakenguyen4000,2023-09-17T01:32:32Z,- drakenguyen4000 closed issue by PR 5523: [5459](https://github.com/hackforla/website/issues/5459#event-10390591225) at 2023-09-16 06:32 PM PDT -drakenguyen4000,2023-10-14T23:01:39Z,- drakenguyen4000 closed issue by PR 5690: [5622](https://github.com/hackforla/website/issues/5622#event-10656083516) at 2023-10-14 04:01 PM PDT -drakenguyen4000,2023-10-14T23:04:38Z,- drakenguyen4000 closed issue by PR 5688: [5633](https://github.com/hackforla/website/issues/5633#event-10656086513) at 2023-10-14 04:04 PM PDT -drakenguyen4000,2023-10-14T23:06:49Z,- drakenguyen4000 closed issue by PR 5683: [5336](https://github.com/hackforla/website/issues/5336#event-10656088589) at 2023-10-14 04:06 PM PDT -drakenguyen4000,2023-10-14T23:11:42Z,- drakenguyen4000 closed issue by PR 5682: [5617](https://github.com/hackforla/website/issues/5617#event-10656092881) at 2023-10-14 04:11 PM PDT -drakenguyen4000,2023-10-14T23:21:46Z,- drakenguyen4000 closed issue by PR 5583: [5506](https://github.com/hackforla/website/issues/5506#event-10656119740) at 2023-10-14 04:21 PM PDT -drakenguyen4000,2023-11-19T07:04:06Z,- drakenguyen4000 commented on pull request: [5916](https://github.com/hackforla/website/pull/5916#issuecomment-1817768732) at 2023-11-18 11:04 PM PST -drakenguyen4000,2023-11-19T07:04:15Z,- drakenguyen4000 closed issue by PR 5916: [5791](https://github.com/hackforla/website/issues/5791#event-11003174341) at 2023-11-18 11:04 PM PST -drakenguyen4000,2023-11-19T07:13:35Z,- drakenguyen4000 commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1817770573) at 2023-11-18 11:13 PM PST -drakenguyen4000,2023-11-19T07:13:45Z,- drakenguyen4000 closed issue by PR 5887: [5808](https://github.com/hackforla/website/issues/5808#event-11003188367) at 2023-11-18 11:13 PM PST -drakenguyen4000,2023-11-19T07:18:30Z,- drakenguyen4000 closed issue by PR 5893: [5803](https://github.com/hackforla/website/issues/5803#event-11003195035) at 2023-11-18 11:18 PM PST -drakenguyen4000,2023-12-24T04:01:40Z,- drakenguyen4000 closed issue by PR 6014: [5849](https://github.com/hackforla/website/issues/5849#event-11331869513) at 2023-12-23 08:01 PM PST -drakenguyen4000,2024-02-25T12:38:57Z,- drakenguyen4000 commented on pull request: [6360](https://github.com/hackforla/website/pull/6360#issuecomment-1962925353) at 2024-02-25 04:38 AM PST -drakenguyen4000,2024-02-25T12:39:24Z,- drakenguyen4000 closed issue by PR 6360: [5711](https://github.com/hackforla/website/issues/5711#event-11912915476) at 2024-02-25 04:39 AM PST -drakenguyen4000,2024-03-17T05:42:41Z,- drakenguyen4000 commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-2002319754) at 2024-03-16 10:42 PM PDT -drakenguyen4000,2024-03-17T05:43:39Z,- drakenguyen4000 closed issue by PR 6462: [6303](https://github.com/hackforla/website/issues/6303#event-12141991498) at 2024-03-16 10:43 PM PDT -drakenguyen4000,2024-03-31T03:05:44Z,- drakenguyen4000 closed issue by PR 6411: [6299](https://github.com/hackforla/website/issues/6299#event-12302220578) at 2024-03-30 08:05 PM PDT -drakenguyen4000,2024-03-31T03:08:32Z,- drakenguyen4000 closed issue by PR 6467: [4648](https://github.com/hackforla/website/issues/4648#event-12302223454) at 2024-03-30 08:08 PM PDT -drakenguyen4000,2024-03-31T03:10:35Z,- drakenguyen4000 closed issue by PR 6508: [6484](https://github.com/hackforla/website/issues/6484#event-12302225388) at 2024-03-30 08:10 PM PDT -drakenguyen4000,2024-03-31T03:11:03Z,- drakenguyen4000 closed issue by PR 6521: [6510](https://github.com/hackforla/website/issues/6510#event-12302225950) at 2024-03-30 08:11 PM PDT -drakenguyen4000,2024-03-31T03:12:35Z,- drakenguyen4000 closed issue by PR 6536: [6479](https://github.com/hackforla/website/issues/6479#event-12302227381) at 2024-03-30 08:12 PM PDT -drakenguyen4000,2024-03-31T03:15:24Z,- drakenguyen4000 closed issue by PR 6543: [5473](https://github.com/hackforla/website/issues/5473#event-12302229943) at 2024-03-30 08:15 PM PDT -drakenguyen4000,2024-04-14T04:53:51Z,- drakenguyen4000 closed issue by PR 6631: [6177](https://github.com/hackforla/website/issues/6177#event-12459470426) at 2024-04-13 09:53 PM PDT -drakenguyen4000,2024-04-14T04:55:35Z,- drakenguyen4000 closed issue by PR 6630: [6178](https://github.com/hackforla/website/issues/6178#event-12459475775) at 2024-04-13 09:55 PM PDT -drakenguyen4000,2024-04-17T02:59:51Z,- drakenguyen4000 commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2060257248) at 2024-04-16 07:59 PM PDT -drakenguyen4000,2024-04-17T03:06:59Z,- drakenguyen4000 commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2060263672) at 2024-04-16 08:06 PM PDT -drakenguyen4000,2024-05-26T04:29:18Z,- drakenguyen4000 closed issue by PR 6890: [6847](https://github.com/hackforla/website/issues/6847#event-12934976007) at 2024-05-25 09:29 PM PDT -drakenguyen4000,2024-05-26T04:37:33Z,- drakenguyen4000 closed issue by PR 6874: [6720](https://github.com/hackforla/website/issues/6720#event-12935000100) at 2024-05-25 09:37 PM PDT -drakenguyen4000,2024-06-16T06:13:19Z,- drakenguyen4000 closed issue by PR 6991: [6737](https://github.com/hackforla/website/issues/6737#event-13173639988) at 2024-06-15 11:13 PM PDT -drakenguyen4000,2024-06-23T04:17:49Z,- drakenguyen4000 closed issue by PR 7038: [6932](https://github.com/hackforla/website/issues/6932#event-13253123646) at 2024-06-22 09:17 PM PDT -drakenguyen4000,2024-06-30T03:16:03Z,- drakenguyen4000 closed issue by PR 7040: [6986](https://github.com/hackforla/website/issues/6986#event-13341168949) at 2024-06-29 08:16 PM PDT -dreams0ng,2019-07-31T02:33:08Z,- dreams0ng assigned to issue: [148](https://github.com/hackforla/website/issues/148) at 2019-07-30 07:33 PM PDT -dreams0ng,2019-08-24T23:34:23Z,- dreams0ng commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-524588222) at 2019-08-24 04:34 PM PDT -DrIffathsultana,2021-10-21T02:06:43Z,- DrIffathsultana opened issue: [2386](https://github.com/hackforla/website/issues/2386) at 2021-10-20 07:06 PM PDT -DrIffathsultana,2021-10-25T06:09:27Z,- DrIffathsultana commented on issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-950561100) at 2021-10-24 11:09 PM PDT -drubgrubby,2020-07-19T18:00:05Z,- drubgrubby assigned to issue: [599](https://github.com/hackforla/website/issues/599) at 2020-07-19 11:00 AM PDT -drubgrubby,2020-07-21T21:26:57Z,- drubgrubby opened pull request: [624](https://github.com/hackforla/website/pull/624) at 2020-07-21 02:26 PM PDT -drubgrubby,2020-07-22T14:31:41Z,- drubgrubby pull request merged: [624](https://github.com/hackforla/website/pull/624#event-3576066511) at 2020-07-22 07:31 AM PDT -drubgrubby,2020-07-23T02:22:51Z,- drubgrubby opened pull request: [630](https://github.com/hackforla/website/pull/630) at 2020-07-22 07:22 PM PDT -drubgrubby,2020-07-23T21:05:12Z,- drubgrubby opened pull request: [631](https://github.com/hackforla/website/pull/631) at 2020-07-23 02:05 PM PDT -drubgrubby,2020-07-23T22:01:00Z,- drubgrubby pull request merged: [631](https://github.com/hackforla/website/pull/631#event-3581876892) at 2020-07-23 03:01 PM PDT -drubgrubby,2020-07-24T14:44:52Z,- drubgrubby commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663574494) at 2020-07-24 07:44 AM PDT -drubgrubby,2020-07-24T22:10:23Z,- drubgrubby commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663754078) at 2020-07-24 03:10 PM PDT -drubgrubby,2020-07-27T16:47:16Z,- drubgrubby commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-664510876) at 2020-07-27 09:47 AM PDT -drubgrubby,2020-07-27T17:31:46Z,- drubgrubby commented on issue: [599](https://github.com/hackforla/website/issues/599#issuecomment-664534349) at 2020-07-27 10:31 AM PDT -drubgrubby,2020-07-27T19:15:06Z,- drubgrubby pull request merged: [630](https://github.com/hackforla/website/pull/630#event-3591277743) at 2020-07-27 12:15 PM PDT -drubgrubby,2020-07-29T03:33:40Z,- drubgrubby assigned to issue: [625](https://github.com/hackforla/website/issues/625) at 2020-07-28 08:33 PM PDT -drubgrubby,2020-07-29T19:29:58Z,- drubgrubby opened issue: [657](https://github.com/hackforla/website/issues/657) at 2020-07-29 12:29 PM PDT -drubgrubby,2020-07-31T15:47:57Z,- drubgrubby opened pull request: [662](https://github.com/hackforla/website/pull/662) at 2020-07-31 08:47 AM PDT -drubgrubby,2020-08-02T12:31:59Z,- drubgrubby commented on pull request: [662](https://github.com/hackforla/website/pull/662#issuecomment-667668429) at 2020-08-02 05:31 AM PDT -drubgrubby,2020-08-02T13:35:47Z,- drubgrubby opened pull request: [663](https://github.com/hackforla/website/pull/663) at 2020-08-02 06:35 AM PDT -drubgrubby,2020-08-02T16:53:41Z,- drubgrubby commented on issue: [625](https://github.com/hackforla/website/issues/625#issuecomment-667698112) at 2020-08-02 09:53 AM PDT -drubgrubby,2020-08-02T18:04:33Z,- drubgrubby assigned to issue: [664](https://github.com/hackforla/website/issues/664) at 2020-08-02 11:04 AM PDT -drubgrubby,2020-08-03T16:09:55Z,- drubgrubby pull request closed w/o merging: [662](https://github.com/hackforla/website/pull/662#event-3616614219) at 2020-08-03 09:09 AM PDT -drubgrubby,2020-08-03T18:40:26Z,- drubgrubby assigned to issue: [659](https://github.com/hackforla/website/issues/659) at 2020-08-03 11:40 AM PDT -drubgrubby,2020-08-03T20:11:38Z,- drubgrubby pull request merged: [663](https://github.com/hackforla/website/pull/663#event-3617426300) at 2020-08-03 01:11 PM PDT -drubgrubby,2020-08-04T23:09:22Z,- drubgrubby opened pull request: [669](https://github.com/hackforla/website/pull/669) at 2020-08-04 04:09 PM PDT -drubgrubby,2020-08-04T23:10:47Z,- drubgrubby commented on issue: [664](https://github.com/hackforla/website/issues/664#issuecomment-668871477) at 2020-08-04 04:10 PM PDT -drubgrubby,2020-08-05T00:27:18Z,- drubgrubby opened pull request: [670](https://github.com/hackforla/website/pull/670) at 2020-08-04 05:27 PM PDT -drubgrubby,2020-08-05T02:52:44Z,- drubgrubby pull request merged: [669](https://github.com/hackforla/website/pull/669#event-3622780740) at 2020-08-04 07:52 PM PDT -drubgrubby,2020-08-05T02:59:14Z,- drubgrubby pull request merged: [670](https://github.com/hackforla/website/pull/670#event-3622793300) at 2020-08-04 07:59 PM PDT -drubgrubby,2020-08-05T03:04:36Z,- drubgrubby assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-08-04 08:04 PM PDT -drubgrubby,2020-08-05T03:08:10Z,- drubgrubby assigned to issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-08-04 08:08 PM PDT -drubgrubby,2020-08-05T22:28:38Z,- drubgrubby unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-08-05 03:28 PM PDT -drubgrubby,2020-08-08T21:32:13Z,- drubgrubby unassigned from issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-670976011) at 2020-08-08 02:32 PM PDT -drubgrubby,2020-08-12T12:01:20Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-672828906) at 2020-08-12 05:01 AM PDT -drubgrubby,2020-08-16T04:41:12Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-674478121) at 2020-08-15 09:41 PM PDT -drubgrubby,2020-08-17T22:40:01Z,- drubgrubby submitted pull request review: [682](https://github.com/hackforla/website/pull/682#pullrequestreview-468878332) at 2020-08-17 03:40 PM PDT -drubgrubby,2020-08-17T22:42:41Z,- drubgrubby closed issue by PR 670: [659](https://github.com/hackforla/website/issues/659#event-3663868494) at 2020-08-17 03:42 PM PDT -drubgrubby,2020-08-23T16:27:23Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-678794946) at 2020-08-23 09:27 AM PDT -drubgrubby,2020-08-30T15:59:30Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-683437674) at 2020-08-30 08:59 AM PDT -drubgrubby,2020-09-04T18:25:32Z,- drubgrubby commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-687310053) at 2020-09-04 11:25 AM PDT -drubgrubby,2020-09-04T18:33:36Z,- drubgrubby opened pull request: [716](https://github.com/hackforla/website/pull/716) at 2020-09-04 11:33 AM PDT -drubgrubby,2020-09-04T18:43:12Z,- drubgrubby opened issue: [717](https://github.com/hackforla/website/issues/717) at 2020-09-04 11:43 AM PDT -drubgrubby,2020-09-06T18:10:13Z,- drubgrubby assigned to issue: [690](https://github.com/hackforla/website/issues/690) at 2020-09-06 11:10 AM PDT -drubgrubby,2020-09-06T18:11:29Z,- drubgrubby assigned to issue: [708](https://github.com/hackforla/website/issues/708#issuecomment-683149905) at 2020-09-06 11:11 AM PDT -drubgrubby,2020-09-08T23:07:08Z,- drubgrubby commented on issue: [708](https://github.com/hackforla/website/issues/708#issuecomment-689182198) at 2020-09-08 04:07 PM PDT -drubgrubby,2020-09-08T23:09:08Z,- drubgrubby opened pull request: [723](https://github.com/hackforla/website/pull/723) at 2020-09-08 04:09 PM PDT -drubgrubby,2020-09-10T22:15:44Z,- drubgrubby pull request merged: [723](https://github.com/hackforla/website/pull/723#event-3753388042) at 2020-09-10 03:15 PM PDT -drubgrubby,2020-09-11T02:59:13Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-690843728) at 2020-09-10 07:59 PM PDT -drubgrubby,2020-09-11T03:22:27Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-690850216) at 2020-09-10 08:22 PM PDT -drubgrubby,2020-09-11T04:57:02Z,- drubgrubby commented on issue: [690](https://github.com/hackforla/website/issues/690#issuecomment-690873316) at 2020-09-10 09:57 PM PDT -drubgrubby,2020-09-11T05:05:51Z,- drubgrubby opened pull request: [726](https://github.com/hackforla/website/pull/726) at 2020-09-10 10:05 PM PDT -drubgrubby,2020-09-11T12:27:13Z,- drubgrubby commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-691063807) at 2020-09-11 05:27 AM PDT -drubgrubby,2020-09-11T19:49:31Z,- drubgrubby commented on issue: [690](https://github.com/hackforla/website/issues/690#issuecomment-691282409) at 2020-09-11 12:49 PM PDT -drubgrubby,2020-09-15T00:12:34Z,- drubgrubby submitted pull request review: [724](https://github.com/hackforla/website/pull/724#pullrequestreview-488236996) at 2020-09-14 05:12 PM PDT -drubgrubby,2020-09-15T00:32:30Z,- drubgrubby commented on pull request: [724](https://github.com/hackforla/website/pull/724#issuecomment-692389792) at 2020-09-14 05:32 PM PDT -drubgrubby,2020-09-15T00:37:45Z,- drubgrubby commented on pull request: [724](https://github.com/hackforla/website/pull/724#issuecomment-692391247) at 2020-09-14 05:37 PM PDT -drubgrubby,2020-09-16T01:58:46Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-693123171) at 2020-09-15 06:58 PM PDT -drubgrubby,2020-09-17T02:51:49Z,- drubgrubby assigned to issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-687437005) at 2020-09-16 07:51 PM PDT -drubgrubby,2020-09-17T02:59:15Z,- drubgrubby commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-693778498) at 2020-09-16 07:59 PM PDT -drubgrubby,2020-09-18T02:30:35Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-694611677) at 2020-09-17 07:30 PM PDT -drubgrubby,2020-09-18T02:39:27Z,- drubgrubby commented on pull request: [716](https://github.com/hackforla/website/pull/716#issuecomment-694614112) at 2020-09-17 07:39 PM PDT -drubgrubby,2020-09-18T02:59:52Z,- drubgrubby commented on pull request: [726](https://github.com/hackforla/website/pull/726#issuecomment-694619353) at 2020-09-17 07:59 PM PDT -drubgrubby,2020-09-19T23:03:58Z,- drubgrubby pull request merged: [716](https://github.com/hackforla/website/pull/716#event-3785585857) at 2020-09-19 04:03 PM PDT -drubgrubby,2020-09-20T18:22:10Z,- drubgrubby pull request merged: [726](https://github.com/hackforla/website/pull/726#event-3786300231) at 2020-09-20 11:22 AM PDT -drubgrubby,2020-09-21T18:19:38Z,- drubgrubby assigned to issue: [616](https://github.com/hackforla/website/issues/616) at 2020-09-21 11:19 AM PDT -drubgrubby,2020-09-21T18:31:34Z,- drubgrubby unassigned from issue: [616](https://github.com/hackforla/website/issues/616) at 2020-09-21 11:31 AM PDT -drubgrubby,2020-09-23T03:53:01Z,- drubgrubby submitted pull request review: [741](https://github.com/hackforla/website/pull/741#pullrequestreview-494010612) at 2020-09-22 08:53 PM PDT -drubgrubby,2020-09-24T21:01:22Z,- drubgrubby opened issue: [748](https://github.com/hackforla/website/issues/748) at 2020-09-24 02:01 PM PDT -drubgrubby,2020-09-25T00:15:12Z,- drubgrubby opened pull request: [749](https://github.com/hackforla/website/pull/749) at 2020-09-24 05:15 PM PDT -drubgrubby,2020-09-27T17:25:18Z,- drubgrubby assigned to issue: [748](https://github.com/hackforla/website/issues/748) at 2020-09-27 10:25 AM PDT -drubgrubby,2020-09-27T18:38:41Z,- drubgrubby commented on pull request: [749](https://github.com/hackforla/website/pull/749#issuecomment-699671559) at 2020-09-27 11:38 AM PDT -drubgrubby,2020-09-27T18:52:10Z,- drubgrubby pull request merged: [749](https://github.com/hackforla/website/pull/749#event-3811907868) at 2020-09-27 11:52 AM PDT -drubgrubby,2020-09-30T03:34:33Z,- drubgrubby opened pull request: [758](https://github.com/hackforla/website/pull/758) at 2020-09-29 08:34 PM PDT -drubgrubby,2020-09-30T03:34:51Z,- drubgrubby commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-701136986) at 2020-09-29 08:34 PM PDT -drubgrubby,2020-10-01T03:54:22Z,- drubgrubby pull request merged: [758](https://github.com/hackforla/website/pull/758#event-3827357618) at 2020-09-30 08:54 PM PDT -drubgrubby,2020-10-01T12:02:45Z,- drubgrubby commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-702087166) at 2020-10-01 05:02 AM PDT -drubgrubby,2020-10-02T17:05:06Z,- drubgrubby opened pull request: [764](https://github.com/hackforla/website/pull/764) at 2020-10-02 10:05 AM PDT -drubgrubby,2020-10-06T23:44:32Z,- drubgrubby commented on pull request: [764](https://github.com/hackforla/website/pull/764#issuecomment-704610311) at 2020-10-06 04:44 PM PDT -drubgrubby,2020-10-07T02:31:38Z,- drubgrubby assigned to issue: [616](https://github.com/hackforla/website/issues/616#issuecomment-696294935) at 2020-10-06 07:31 PM PDT -drubgrubby,2020-10-08T22:39:06Z,- drubgrubby pull request merged: [764](https://github.com/hackforla/website/pull/764#event-3857645011) at 2020-10-08 03:39 PM PDT -drubgrubby,2020-10-14T00:05:55Z,- drubgrubby opened pull request: [779](https://github.com/hackforla/website/pull/779) at 2020-10-13 05:05 PM PDT -drubgrubby,2020-10-14T01:12:54Z,- drubgrubby commented on pull request: [779](https://github.com/hackforla/website/pull/779#issuecomment-708094318) at 2020-10-13 06:12 PM PDT -drubgrubby,2020-10-14T01:54:44Z,- drubgrubby commented on issue: [616](https://github.com/hackforla/website/issues/616#issuecomment-708105909) at 2020-10-13 06:54 PM PDT -drubgrubby,2020-10-14T13:42:52Z,- drubgrubby assigned to issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-10-14 06:42 AM PDT -drubgrubby,2020-10-15T02:59:13Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-708863955) at 2020-10-14 07:59 PM PDT -drubgrubby,2020-10-15T19:07:14Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-709533429) at 2020-10-15 12:07 PM PDT -drubgrubby,2020-10-16T00:47:22Z,- drubgrubby pull request merged: [779](https://github.com/hackforla/website/pull/779#event-3884107095) at 2020-10-15 05:47 PM PDT -drubgrubby,2020-10-16T01:50:24Z,- drubgrubby commented on pull request: [782](https://github.com/hackforla/website/pull/782#issuecomment-709681439) at 2020-10-15 06:50 PM PDT -drubgrubby,2020-10-18T13:40:05Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-711169599) at 2020-10-18 06:40 AM PDT -drubgrubby,2020-10-19T17:11:24Z,- drubgrubby submitted pull request review: [788](https://github.com/hackforla/website/pull/788#pullrequestreview-511980016) at 2020-10-19 10:11 AM PDT -drubgrubby,2020-10-21T17:31:51Z,- drubgrubby submitted pull request review: [792](https://github.com/hackforla/website/pull/792#pullrequestreview-514004482) at 2020-10-21 10:31 AM PDT -drubgrubby,2020-10-21T18:05:24Z,- drubgrubby submitted pull request review: [791](https://github.com/hackforla/website/pull/791#pullrequestreview-514040600) at 2020-10-21 11:05 AM PDT -drubgrubby,2020-10-25T14:18:30Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-716155726) at 2020-10-25 07:18 AM PDT -drubgrubby,2020-11-01T17:47:52Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-720125524) at 2020-11-01 09:47 AM PST -drubgrubby,2020-11-06T16:48:32Z,- drubgrubby submitted pull request review: [790](https://github.com/hackforla/website/pull/790#pullrequestreview-525323849) at 2020-11-06 08:48 AM PST -drubgrubby,2020-11-08T17:31:41Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-723641173) at 2020-11-08 09:31 AM PST -drubgrubby,2020-11-09T01:42:09Z,- drubgrubby commented on pull request: [790](https://github.com/hackforla/website/pull/790#issuecomment-723707027) at 2020-11-08 05:42 PM PST -drubgrubby,2020-11-09T01:42:23Z,- drubgrubby closed issue by PR 790: [700](https://github.com/hackforla/website/issues/700#event-3971451864) at 2020-11-08 05:42 PM PST -drubgrubby,2020-11-10T02:28:05Z,- drubgrubby commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724408884) at 2020-11-09 06:28 PM PST -drubgrubby,2020-11-12T22:32:56Z,- drubgrubby commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-726382527) at 2020-11-12 02:32 PM PST -drubgrubby,2020-11-17T04:22:59Z,- drubgrubby submitted pull request review: [808](https://github.com/hackforla/website/pull/808#pullrequestreview-532011856) at 2020-11-16 08:22 PM PST -drubgrubby,2020-11-22T17:15:50Z,- drubgrubby submitted pull request review: [808](https://github.com/hackforla/website/pull/808#pullrequestreview-536082586) at 2020-11-22 09:15 AM PST -drubgrubby,2020-11-22T17:22:44Z,- drubgrubby commented on pull request: [808](https://github.com/hackforla/website/pull/808#issuecomment-731780417) at 2020-11-22 09:22 AM PST -drubgrubby,2020-11-22T17:44:16Z,- drubgrubby opened pull request: [811](https://github.com/hackforla/website/pull/811) at 2020-11-22 09:44 AM PST -drubgrubby,2020-11-29T14:19:23Z,- drubgrubby commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-735401950) at 2020-11-29 06:19 AM PST -drubgrubby,2020-11-29T23:02:43Z,- drubgrubby submitted pull request review: [808](https://github.com/hackforla/website/pull/808#pullrequestreview-540532359) at 2020-11-29 03:02 PM PST -drubgrubby,2020-12-01T21:23:51Z,- drubgrubby commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-736829406) at 2020-12-01 01:23 PM PST -drubgrubby,2020-12-01T21:48:07Z,- drubgrubby submitted pull request review: [820](https://github.com/hackforla/website/pull/820#pullrequestreview-542323833) at 2020-12-01 01:48 PM PST -drubgrubby,2020-12-02T02:41:27Z,- drubgrubby commented on pull request: [820](https://github.com/hackforla/website/pull/820#issuecomment-736951191) at 2020-12-01 06:41 PM PST -drubgrubby,2020-12-02T03:22:58Z,- drubgrubby closed issue by PR 816: [817](https://github.com/hackforla/website/issues/817#event-4060227886) at 2020-12-01 07:22 PM PST -drubgrubby,2020-12-04T17:36:55Z,- drubgrubby commented on pull request: [811](https://github.com/hackforla/website/pull/811#issuecomment-738916849) at 2020-12-04 09:36 AM PST -drubgrubby,2020-12-04T19:14:24Z,- drubgrubby pull request merged: [811](https://github.com/hackforla/website/pull/811#event-4074100403) at 2020-12-04 11:14 AM PST -drubgrubby,2020-12-04T22:17:44Z,- drubgrubby commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-739053409) at 2020-12-04 02:17 PM PST -drubgrubby,2020-12-04T22:27:49Z,- drubgrubby submitted pull request review: [823](https://github.com/hackforla/website/pull/823#pullrequestreview-545339989) at 2020-12-04 02:27 PM PST -drubgrubby,2020-12-04T22:28:14Z,- drubgrubby closed issue by PR 823: [801](https://github.com/hackforla/website/issues/801#event-4074728433) at 2020-12-04 02:28 PM PST -drubgrubby,2020-12-04T22:50:08Z,- drubgrubby opened pull request: [825](https://github.com/hackforla/website/pull/825) at 2020-12-04 02:50 PM PST -drubgrubby,2020-12-06T01:38:15Z,- drubgrubby commented on pull request: [825](https://github.com/hackforla/website/pull/825#issuecomment-739441594) at 2020-12-05 05:38 PM PST -drubgrubby,2020-12-06T01:50:31Z,- drubgrubby commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-739442528) at 2020-12-05 05:50 PM PST -drubgrubby,2020-12-06T14:11:18Z,- drubgrubby commented on pull request: [825](https://github.com/hackforla/website/pull/825#issuecomment-739508171) at 2020-12-06 06:11 AM PST -drubgrubby,2020-12-06T14:26:35Z,- drubgrubby submitted pull request review: [829](https://github.com/hackforla/website/pull/829#pullrequestreview-545710897) at 2020-12-06 06:26 AM PST -drubgrubby,2020-12-06T14:27:16Z,- drubgrubby closed issue by PR 829: [657](https://github.com/hackforla/website/issues/657#event-4076656042) at 2020-12-06 06:27 AM PST -drubgrubby,2020-12-06T19:04:03Z,- drubgrubby pull request merged: [825](https://github.com/hackforla/website/pull/825#event-4076901479) at 2020-12-06 11:04 AM PST -drubgrubby,2020-12-06T19:07:02Z,- drubgrubby closed issue by PR 828: [827](https://github.com/hackforla/website/issues/827#event-4076904189) at 2020-12-06 11:07 AM PST -drubgrubby,2020-12-07T17:46:36Z,- drubgrubby opened issue: [835](https://github.com/hackforla/website/issues/835) at 2020-12-07 09:46 AM PST -drubgrubby,2020-12-07T17:46:37Z,- drubgrubby assigned to issue: [835](https://github.com/hackforla/website/issues/835) at 2020-12-07 09:46 AM PST -drubgrubby,2020-12-07T17:51:51Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-740077177) at 2020-12-07 09:51 AM PST -drubgrubby,2020-12-07T17:59:10Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-740081272) at 2020-12-07 09:59 AM PST -drubgrubby,2020-12-09T02:45:37Z,- drubgrubby submitted pull request review: [841](https://github.com/hackforla/website/pull/841#pullrequestreview-547794709) at 2020-12-08 06:45 PM PST -drubgrubby,2020-12-09T02:49:01Z,- drubgrubby commented on pull request: [824](https://github.com/hackforla/website/pull/824#issuecomment-741491056) at 2020-12-08 06:49 PM PST -drubgrubby,2020-12-09T18:32:42Z,- drubgrubby commented on pull request: [841](https://github.com/hackforla/website/pull/841#issuecomment-741966046) at 2020-12-09 10:32 AM PST -drubgrubby,2020-12-09T18:33:04Z,- drubgrubby closed issue by PR 841: [693](https://github.com/hackforla/website/issues/693#event-4091396388) at 2020-12-09 10:33 AM PST -drubgrubby,2020-12-09T18:51:20Z,- drubgrubby commented on pull request: [820](https://github.com/hackforla/website/pull/820#issuecomment-741976181) at 2020-12-09 10:51 AM PST -drubgrubby,2020-12-09T18:51:31Z,- drubgrubby closed issue by PR 820: [698](https://github.com/hackforla/website/issues/698#event-4091468302) at 2020-12-09 10:51 AM PST -drubgrubby,2020-12-10T20:35:28Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742782635) at 2020-12-10 12:35 PM PST -drubgrubby,2020-12-10T20:45:34Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742788073) at 2020-12-10 12:45 PM PST -drubgrubby,2020-12-10T21:01:50Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742796773) at 2020-12-10 01:01 PM PST -drubgrubby,2020-12-10T21:05:08Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742798470) at 2020-12-10 01:05 PM PST -drubgrubby,2020-12-10T21:08:07Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742799934) at 2020-12-10 01:08 PM PST -drubgrubby,2020-12-10T21:12:39Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742802218) at 2020-12-10 01:12 PM PST -drubgrubby,2020-12-10T21:17:01Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742804608) at 2020-12-10 01:17 PM PST -drubgrubby,2020-12-10T22:06:34Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742829885) at 2020-12-10 02:06 PM PST -drubgrubby,2020-12-10T22:08:04Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-742830634) at 2020-12-10 02:08 PM PST -drubgrubby,2020-12-13T02:06:51Z,- drubgrubby opened issue: [842](https://github.com/hackforla/website/issues/842) at 2020-12-12 06:06 PM PST -drubgrubby,2020-12-13T02:06:56Z,- drubgrubby assigned to issue: [842](https://github.com/hackforla/website/issues/842) at 2020-12-12 06:06 PM PST -drubgrubby,2020-12-13T03:23:09Z,- drubgrubby commented on issue: [842](https://github.com/hackforla/website/issues/842#issuecomment-743941812) at 2020-12-12 07:23 PM PST -drubgrubby,2020-12-13T17:54:09Z,- drubgrubby commented on issue: [842](https://github.com/hackforla/website/issues/842#issuecomment-744044030) at 2020-12-13 09:54 AM PST -drubgrubby,2020-12-13T19:25:21Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744055821) at 2020-12-13 11:25 AM PST -drubgrubby,2020-12-13T19:35:04Z,- drubgrubby assigned to issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-744057015) at 2020-12-13 11:35 AM PST -drubgrubby,2020-12-13T20:13:46Z,- drubgrubby commented on pull request: [843](https://github.com/hackforla/website/pull/843#issuecomment-744061906) at 2020-12-13 12:13 PM PST -drubgrubby,2020-12-15T01:25:53Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744961692) at 2020-12-14 05:25 PM PST -drubgrubby,2020-12-15T01:26:40Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744962748) at 2020-12-14 05:26 PM PST -drubgrubby,2020-12-15T01:27:13Z,- drubgrubby commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-744963500) at 2020-12-14 05:27 PM PST -drubgrubby,2020-12-15T01:39:28Z,- drubgrubby opened issue: [844](https://github.com/hackforla/website/issues/844) at 2020-12-14 05:39 PM PST -drubgrubby,2020-12-15T03:02:21Z,- drubgrubby commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-745020817) at 2020-12-14 07:02 PM PST -drubgrubby,2020-12-15T04:25:07Z,- drubgrubby commented on issue: [842](https://github.com/hackforla/website/issues/842#issuecomment-745043406) at 2020-12-14 08:25 PM PST -drubgrubby,2020-12-15T04:41:53Z,- drubgrubby opened pull request: [845](https://github.com/hackforla/website/pull/845) at 2020-12-14 08:41 PM PST -drubgrubby,2020-12-15T22:13:49Z,- drubgrubby opened issue: [846](https://github.com/hackforla/website/issues/846) at 2020-12-15 02:13 PM PST -drubgrubby,2020-12-15T22:13:49Z,- drubgrubby assigned to issue: [846](https://github.com/hackforla/website/issues/846) at 2020-12-15 02:13 PM PST -drubgrubby,2020-12-15T22:55:34Z,- drubgrubby opened pull request: [847](https://github.com/hackforla/website/pull/847) at 2020-12-15 02:55 PM PST -drubgrubby,2020-12-16T01:02:22Z,- drubgrubby opened issue: [848](https://github.com/hackforla/website/issues/848) at 2020-12-15 05:02 PM PST -drubgrubby,2020-12-16T01:04:06Z,- drubgrubby assigned to issue: [848](https://github.com/hackforla/website/issues/848) at 2020-12-15 05:04 PM PST -drubgrubby,2020-12-16T02:09:07Z,- drubgrubby commented on issue: [848](https://github.com/hackforla/website/issues/848#issuecomment-745716436) at 2020-12-15 06:09 PM PST -drubgrubby,2020-12-16T02:14:34Z,- drubgrubby opened pull request: [849](https://github.com/hackforla/website/pull/849) at 2020-12-15 06:14 PM PST -drubgrubby,2020-12-16T03:19:01Z,- drubgrubby pull request merged: [845](https://github.com/hackforla/website/pull/845#event-4117632223) at 2020-12-15 07:19 PM PST -drubgrubby,2020-12-17T02:02:32Z,- drubgrubby commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747155338) at 2020-12-16 06:02 PM PST -drubgrubby,2020-12-17T03:31:40Z,- drubgrubby commented on pull request: [849](https://github.com/hackforla/website/pull/849#issuecomment-747182037) at 2020-12-16 07:31 PM PST -drubgrubby,2020-12-17T22:12:18Z,- drubgrubby commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-747733289) at 2020-12-17 02:12 PM PST -drubgrubby,2020-12-18T02:17:38Z,- drubgrubby opened issue: [851](https://github.com/hackforla/website/issues/851) at 2020-12-17 06:17 PM PST -drubgrubby,2020-12-18T02:17:44Z,- drubgrubby assigned to issue: [851](https://github.com/hackforla/website/issues/851) at 2020-12-17 06:17 PM PST -drubgrubby,2020-12-20T02:42:43Z,- drubgrubby commented on pull request: [847](https://github.com/hackforla/website/pull/847#issuecomment-748554773) at 2020-12-19 06:42 PM PST -drubgrubby,2020-12-20T03:56:22Z,- drubgrubby pull request merged: [849](https://github.com/hackforla/website/pull/849#event-4132984522) at 2020-12-19 07:56 PM PST -drubgrubby,2020-12-20T04:30:21Z,- drubgrubby pull request merged: [847](https://github.com/hackforla/website/pull/847#event-4132998114) at 2020-12-19 08:30 PM PST -drubgrubby,2020-12-20T18:12:25Z,- drubgrubby unassigned from issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-748641396) at 2020-12-20 10:12 AM PST -drubgrubby,2020-12-20T19:21:39Z,- drubgrubby opened issue: [854](https://github.com/hackforla/website/issues/854) at 2020-12-20 11:21 AM PST -drubgrubby,2020-12-20T20:26:16Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-748666467) at 2020-12-20 12:26 PM PST -drubgrubby,2020-12-20T20:29:52Z,- drubgrubby opened pull request: [855](https://github.com/hackforla/website/pull/855) at 2020-12-20 12:29 PM PST -drubgrubby,2020-12-20T20:33:23Z,- drubgrubby commented on pull request: [855](https://github.com/hackforla/website/pull/855#issuecomment-748667221) at 2020-12-20 12:33 PM PST -drubgrubby,2020-12-22T02:22:13Z,- drubgrubby commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-749300431) at 2020-12-21 06:22 PM PST -drubgrubby,2020-12-22T02:50:25Z,- drubgrubby opened issue: [860](https://github.com/hackforla/website/issues/860) at 2020-12-21 06:50 PM PST -drubgrubby,2020-12-22T02:53:46Z,- drubgrubby opened issue: [861](https://github.com/hackforla/website/issues/861) at 2020-12-21 06:53 PM PST -drubgrubby,2020-12-22T03:04:28Z,- drubgrubby opened issue: [862](https://github.com/hackforla/website/issues/862) at 2020-12-21 07:04 PM PST -drubgrubby,2020-12-22T03:12:20Z,- drubgrubby assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 07:12 PM PST -drubgrubby,2020-12-22T03:12:30Z,- drubgrubby unassigned from issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 07:12 PM PST -drubgrubby,2020-12-22T03:22:43Z,- drubgrubby opened issue: [863](https://github.com/hackforla/website/issues/863) at 2020-12-21 07:22 PM PST -drubgrubby,2020-12-22T03:27:12Z,- drubgrubby opened issue: [864](https://github.com/hackforla/website/issues/864) at 2020-12-21 07:27 PM PST -drubgrubby,2020-12-22T03:27:46Z,- drubgrubby closed issue as completed: [835](https://github.com/hackforla/website/issues/835#event-4138419926) at 2020-12-21 07:27 PM PST -drubgrubby,2020-12-23T03:25:06Z,- drubgrubby submitted pull request review: [858](https://github.com/hackforla/website/pull/858#pullrequestreview-557499288) at 2020-12-22 07:25 PM PST -drubgrubby,2020-12-27T17:55:35Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-751497211) at 2020-12-27 09:55 AM PST -drubgrubby,2020-12-30T03:20:33Z,- drubgrubby pull request merged: [855](https://github.com/hackforla/website/pull/855#event-4156180034) at 2020-12-29 07:20 PM PST -drubgrubby,2021-01-17T17:48:38Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-761851060) at 2021-01-17 09:48 AM PST -drubgrubby,2021-01-18T15:23:14Z,- drubgrubby submitted pull request review: [933](https://github.com/hackforla/website/pull/933#pullrequestreview-570586200) at 2021-01-18 07:23 AM PST -drubgrubby,2021-01-20T02:07:17Z,- drubgrubby submitted pull request review: [944](https://github.com/hackforla/website/pull/944#pullrequestreview-571813776) at 2021-01-19 06:07 PM PST -drubgrubby,2021-01-20T02:22:30Z,- drubgrubby commented on pull request: [944](https://github.com/hackforla/website/pull/944#issuecomment-763282608) at 2021-01-19 06:22 PM PST -drubgrubby,2021-01-20T03:28:31Z,- drubgrubby commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-763304332) at 2021-01-19 07:28 PM PST -drubgrubby,2021-01-22T02:09:53Z,- drubgrubby submitted pull request review: [951](https://github.com/hackforla/website/pull/951#pullrequestreview-573900867) at 2021-01-21 06:09 PM PST -drubgrubby,2021-01-22T19:21:39Z,- drubgrubby closed issue by PR 944: [923](https://github.com/hackforla/website/issues/923#event-4240050887) at 2021-01-22 11:21 AM PST -drubgrubby,2021-01-22T19:24:35Z,- drubgrubby closed issue by PR 945: [921](https://github.com/hackforla/website/issues/921#event-4240060875) at 2021-01-22 11:24 AM PST -drubgrubby,2021-01-24T17:40:10Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-766400559) at 2021-01-24 09:40 AM PST -drubgrubby,2021-01-24T19:49:00Z,- drubgrubby closed issue as completed: [927](https://github.com/hackforla/website/issues/927#event-4242859622) at 2021-01-24 11:49 AM PST -drubgrubby,2021-01-25T03:18:39Z,- drubgrubby commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-766513294) at 2021-01-24 07:18 PM PST -drubgrubby,2021-01-25T03:18:46Z,- drubgrubby closed issue as completed: [851](https://github.com/hackforla/website/issues/851#event-4243399476) at 2021-01-24 07:18 PM PST -drubgrubby,2021-01-25T03:24:31Z,- drubgrubby commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-766514891) at 2021-01-24 07:24 PM PST -drubgrubby,2021-01-25T03:37:38Z,- drubgrubby opened issue: [966](https://github.com/hackforla/website/issues/966) at 2021-01-24 07:37 PM PST -drubgrubby,2021-01-25T03:57:22Z,- drubgrubby opened issue: [967](https://github.com/hackforla/website/issues/967) at 2021-01-24 07:57 PM PST -drubgrubby,2021-01-25T04:07:25Z,- drubgrubby opened issue: [968](https://github.com/hackforla/website/issues/968) at 2021-01-24 08:07 PM PST -drubgrubby,2021-01-27T03:12:48Z,- drubgrubby closed issue as completed: [906](https://github.com/hackforla/website/issues/906#event-4253725765) at 2021-01-26 07:12 PM PST -drubgrubby,2021-01-27T03:12:53Z,- drubgrubby reopened issue: [906](https://github.com/hackforla/website/issues/906#event-4253725765) at 2021-01-26 07:12 PM PST -drubgrubby,2021-01-27T03:17:00Z,- drubgrubby closed issue by PR 941: [830](https://github.com/hackforla/website/issues/830#event-4253734809) at 2021-01-26 07:17 PM PST -drubgrubby,2021-01-29T19:30:43Z,- drubgrubby assigned to issue: [976](https://github.com/hackforla/website/issues/976) at 2021-01-29 11:30 AM PST -drubgrubby,2021-01-31T03:54:02Z,- drubgrubby opened pull request: [978](https://github.com/hackforla/website/pull/978) at 2021-01-30 07:54 PM PST -drubgrubby,2021-01-31T03:55:50Z,- drubgrubby commented on issue: [976](https://github.com/hackforla/website/issues/976#issuecomment-770321208) at 2021-01-30 07:55 PM PST -drubgrubby,2021-01-31T03:56:23Z,- drubgrubby assigned to issue: [968](https://github.com/hackforla/website/issues/968) at 2021-01-30 07:56 PM PST -drubgrubby,2021-01-31T17:22:36Z,- drubgrubby commented on issue: [968](https://github.com/hackforla/website/issues/968#issuecomment-770416929) at 2021-01-31 09:22 AM PST -drubgrubby,2021-01-31T20:11:44Z,- drubgrubby pull request merged: [978](https://github.com/hackforla/website/pull/978#event-4270715278) at 2021-01-31 12:11 PM PST -drubgrubby,2021-01-31T20:25:55Z,- drubgrubby closed issue by PR 980: [939](https://github.com/hackforla/website/issues/939#event-4270727946) at 2021-01-31 12:25 PM PST -drubgrubby,2021-02-01T17:28:11Z,- drubgrubby commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-771022608) at 2021-02-01 09:28 AM PST -drubgrubby,2021-02-02T19:26:29Z,- drubgrubby opened pull request: [985](https://github.com/hackforla/website/pull/985) at 2021-02-02 11:26 AM PST -drubgrubby,2021-02-03T02:45:51Z,- drubgrubby submitted pull request review: [986](https://github.com/hackforla/website/pull/986#pullrequestreview-581960959) at 2021-02-02 06:45 PM PST -drubgrubby,2021-02-03T02:51:07Z,- drubgrubby commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-772177893) at 2021-02-02 06:51 PM PST -drubgrubby,2021-02-03T03:20:04Z,- drubgrubby commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-772189705) at 2021-02-02 07:20 PM PST -drubgrubby,2021-02-03T03:25:42Z,- drubgrubby pull request merged: [985](https://github.com/hackforla/website/pull/985#event-4282957713) at 2021-02-02 07:25 PM PST -drubgrubby,2021-02-03T03:43:12Z,- drubgrubby closed issue as completed: [895](https://github.com/hackforla/website/issues/895#event-4283000395) at 2021-02-02 07:43 PM PST -drubgrubby,2021-02-03T17:09:27Z,- drubgrubby commented on pull request: [993](https://github.com/hackforla/website/pull/993#issuecomment-772670233) at 2021-02-03 09:09 AM PST -drubgrubby,2021-02-03T17:09:35Z,- drubgrubby closed issue by PR 993: [991](https://github.com/hackforla/website/issues/991#event-4286483146) at 2021-02-03 09:09 AM PST -drubgrubby,2021-02-04T00:15:25Z,- drubgrubby assigned to issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-756501661) at 2021-02-03 04:15 PM PST -drubgrubby,2021-02-04T00:37:33Z,- drubgrubby assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -drubgrubby,2021-02-04T00:40:49Z,- drubgrubby assigned to issue: [935](https://github.com/hackforla/website/issues/935) at 2021-02-03 04:40 PM PST -drubgrubby,2021-02-04T16:42:08Z,- drubgrubby commented on pull request: [1001](https://github.com/hackforla/website/pull/1001#issuecomment-773445774) at 2021-02-04 08:42 AM PST -drubgrubby,2021-02-04T23:51:51Z,- drubgrubby commented on issue: [990](https://github.com/hackforla/website/issues/990#issuecomment-773679980) at 2021-02-04 03:51 PM PST -drubgrubby,2021-02-05T17:57:18Z,- drubgrubby commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-774190163) at 2021-02-05 09:57 AM PST -drubgrubby,2021-02-05T17:57:35Z,- drubgrubby assigned to issue: [966](https://github.com/hackforla/website/issues/966) at 2021-02-05 09:57 AM PST -drubgrubby,2021-02-07T02:39:24Z,- drubgrubby submitted pull request review: [1000](https://github.com/hackforla/website/pull/1000#pullrequestreview-584934891) at 2021-02-06 06:39 PM PST -drubgrubby,2021-02-07T02:39:43Z,- drubgrubby closed issue by PR 1000: [946](https://github.com/hackforla/website/issues/946#event-4299741333) at 2021-02-06 06:39 PM PST -drubgrubby,2021-02-07T02:42:38Z,- drubgrubby commented on pull request: [986](https://github.com/hackforla/website/pull/986#issuecomment-774579858) at 2021-02-06 06:42 PM PST -drubgrubby,2021-02-07T02:46:29Z,- drubgrubby closed issue by PR 1001: [905](https://github.com/hackforla/website/issues/905#event-4299745094) at 2021-02-06 06:46 PM PST -drubgrubby,2021-02-07T02:48:06Z,- drubgrubby reopened issue: [905](https://github.com/hackforla/website/issues/905#event-4299745094) at 2021-02-06 06:48 PM PST -drubgrubby,2021-02-07T02:48:50Z,- drubgrubby commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-774580390) at 2021-02-06 06:48 PM PST -drubgrubby,2021-02-07T02:53:24Z,- drubgrubby commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774580766) at 2021-02-06 06:53 PM PST -drubgrubby,2021-02-07T17:02:15Z,- drubgrubby commented on issue: [966](https://github.com/hackforla/website/issues/966#issuecomment-774709323) at 2021-02-07 09:02 AM PST -drubgrubby,2021-02-07T17:31:32Z,- drubgrubby commented on issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-774714636) at 2021-02-07 09:31 AM PST -drubgrubby,2021-02-07T17:33:57Z,- drubgrubby submitted pull request review: [1007](https://github.com/hackforla/website/pull/1007#pullrequestreview-585037357) at 2021-02-07 09:33 AM PST -drubgrubby,2021-02-07T17:44:29Z,- drubgrubby commented on issue: [989](https://github.com/hackforla/website/issues/989#issuecomment-774716969) at 2021-02-07 09:44 AM PST -drubgrubby,2021-02-07T20:26:56Z,- drubgrubby commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-774754685) at 2021-02-07 12:26 PM PST -drubgrubby,2021-02-07T20:26:56Z,- drubgrubby closed issue as completed: [938](https://github.com/hackforla/website/issues/938#event-4300642529) at 2021-02-07 12:26 PM PST -drubgrubby,2021-02-08T14:17:38Z,- drubgrubby commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-775180799) at 2021-02-08 06:17 AM PST -drubgrubby,2021-02-08T18:06:47Z,- drubgrubby submitted pull request review: [1015](https://github.com/hackforla/website/pull/1015#pullrequestreview-585780116) at 2021-02-08 10:06 AM PST -drubgrubby,2021-02-08T18:07:40Z,- drubgrubby closed issue by PR 1015: [1004](https://github.com/hackforla/website/issues/1004#event-4304902098) at 2021-02-08 10:07 AM PST -drubgrubby,2021-02-08T18:10:54Z,- drubgrubby submitted pull request review: [1016](https://github.com/hackforla/website/pull/1016#pullrequestreview-585783572) at 2021-02-08 10:10 AM PST -drubgrubby,2021-02-09T19:28:59Z,- drubgrubby submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-586925894) at 2021-02-09 11:28 AM PST -drubgrubby,2021-02-09T20:03:25Z,- drubgrubby submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-586954851) at 2021-02-09 12:03 PM PST -drubgrubby,2021-02-09T20:05:55Z,- drubgrubby commented on pull request: [1009](https://github.com/hackforla/website/pull/1009#issuecomment-776206886) at 2021-02-09 12:05 PM PST -drubgrubby,2021-02-09T21:28:53Z,- drubgrubby submitted pull request review: [1018](https://github.com/hackforla/website/pull/1018#pullrequestreview-587027297) at 2021-02-09 01:28 PM PST -drubgrubby,2021-02-10T02:34:14Z,- drubgrubby commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-776395756) at 2021-02-09 06:34 PM PST -drubgrubby,2021-02-10T02:46:37Z,- drubgrubby opened issue: [1026](https://github.com/hackforla/website/issues/1026) at 2021-02-09 06:46 PM PST -drubgrubby,2021-02-10T03:18:39Z,- drubgrubby closed issue as completed: [957](https://github.com/hackforla/website/issues/957#event-4312595995) at 2021-02-09 07:18 PM PST -drubgrubby,2021-02-10T04:32:36Z,- drubgrubby closed issue by PR 977: [595](https://github.com/hackforla/website/issues/595#event-4312748019) at 2021-02-09 08:32 PM PST -drubgrubby,2021-02-10T17:11:57Z,- drubgrubby closed issue by PR 1032: [932](https://github.com/hackforla/website/issues/932#event-4315968382) at 2021-02-10 09:11 AM PST -drubgrubby,2021-02-14T03:37:38Z,- drubgrubby closed issue by PR 1007: [965](https://github.com/hackforla/website/issues/965#event-4328367333) at 2021-02-13 07:37 PM PST -drubgrubby,2021-02-14T03:47:30Z,- drubgrubby commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778718707) at 2021-02-13 07:47 PM PST -drubgrubby,2021-02-14T03:47:36Z,- drubgrubby closed issue by PR 1018: [936](https://github.com/hackforla/website/issues/936#event-4328372192) at 2021-02-13 07:47 PM PST -drubgrubby,2021-02-14T04:19:17Z,- drubgrubby assigned to issue: [1040](https://github.com/hackforla/website/issues/1040) at 2021-02-13 08:19 PM PST -drubgrubby,2021-02-14T04:37:15Z,- drubgrubby submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590014645) at 2021-02-13 08:37 PM PST -drubgrubby,2021-02-14T17:05:55Z,- drubgrubby commented on issue: [966](https://github.com/hackforla/website/issues/966#issuecomment-778806743) at 2021-02-14 09:05 AM PST -drubgrubby,2021-02-14T17:41:28Z,- drubgrubby commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778812047) at 2021-02-14 09:41 AM PST -drubgrubby,2021-02-14T17:43:22Z,- drubgrubby commented on pull request: [1034](https://github.com/hackforla/website/pull/1034#issuecomment-778812388) at 2021-02-14 09:43 AM PST -drubgrubby,2021-02-14T18:55:44Z,- drubgrubby closed issue by PR 988: [960](https://github.com/hackforla/website/issues/960#event-4329011882) at 2021-02-14 10:55 AM PST -drubgrubby,2021-02-14T19:03:12Z,- drubgrubby commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-778824919) at 2021-02-14 11:03 AM PST -drubgrubby,2021-02-14T19:10:59Z,- drubgrubby commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-778825966) at 2021-02-14 11:10 AM PST -drubgrubby,2021-02-14T20:05:57Z,- drubgrubby commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-778833990) at 2021-02-14 12:05 PM PST -drubgrubby,2021-02-16T02:55:16Z,- drubgrubby submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590853405) at 2021-02-15 06:55 PM PST -drubgrubby,2021-02-16T02:56:11Z,- drubgrubby submitted pull request review: [1034](https://github.com/hackforla/website/pull/1034#pullrequestreview-590853661) at 2021-02-15 06:56 PM PST -drubgrubby,2021-02-16T02:56:48Z,- drubgrubby closed issue by PR 1034: [1030](https://github.com/hackforla/website/issues/1030#event-4334097302) at 2021-02-15 06:56 PM PST -drubgrubby,2021-02-16T18:23:42Z,- drubgrubby commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-780029674) at 2021-02-16 10:23 AM PST -drubgrubby,2021-02-16T18:26:49Z,- drubgrubby commented on issue: [1010](https://github.com/hackforla/website/issues/1010#issuecomment-780031710) at 2021-02-16 10:26 AM PST -drubgrubby,2021-02-16T18:36:11Z,- drubgrubby commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780037081) at 2021-02-16 10:36 AM PST -drubgrubby,2021-02-16T19:30:06Z,- drubgrubby opened pull request: [1058](https://github.com/hackforla/website/pull/1058) at 2021-02-16 11:30 AM PST -drubgrubby,2021-02-16T19:31:43Z,- drubgrubby assigned to issue: [1050](https://github.com/hackforla/website/issues/1050) at 2021-02-16 11:31 AM PST -drubgrubby,2021-02-16T19:33:47Z,- drubgrubby commented on issue: [1050](https://github.com/hackforla/website/issues/1050#issuecomment-780068872) at 2021-02-16 11:33 AM PST -drubgrubby,2021-02-17T01:55:38Z,- drubgrubby commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780240958) at 2021-02-16 05:55 PM PST -drubgrubby,2021-02-17T02:02:38Z,- drubgrubby commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780243837) at 2021-02-16 06:02 PM PST -drubgrubby,2021-02-17T03:11:19Z,- drubgrubby pull request merged: [1058](https://github.com/hackforla/website/pull/1058#event-4339240164) at 2021-02-16 07:11 PM PST -drubgrubby,2021-02-17T18:30:30Z,- drubgrubby commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780758983) at 2021-02-17 10:30 AM PST -drubgrubby,2021-02-17T22:48:57Z,- drubgrubby commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-780905822) at 2021-02-17 02:48 PM PST -drubgrubby,2021-02-18T00:22:03Z,- drubgrubby opened pull request: [1073](https://github.com/hackforla/website/pull/1073) at 2021-02-17 04:22 PM PST -drubgrubby,2021-02-18T00:24:32Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-780943808) at 2021-02-17 04:24 PM PST -drubgrubby,2021-02-18T03:12:52Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781014452) at 2021-02-17 07:12 PM PST -drubgrubby,2021-02-18T05:34:21Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781067962) at 2021-02-17 09:34 PM PST -drubgrubby,2021-02-18T16:22:27Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781463092) at 2021-02-18 08:22 AM PST -drubgrubby,2021-02-18T16:24:29Z,- drubgrubby commented on issue: [966](https://github.com/hackforla/website/issues/966#issuecomment-781464686) at 2021-02-18 08:24 AM PST -drubgrubby,2021-02-18T23:14:50Z,- drubgrubby pull request merged: [1073](https://github.com/hackforla/website/pull/1073#event-4349404732) at 2021-02-18 03:14 PM PST -drubgrubby,2021-02-18T23:41:24Z,- drubgrubby commented on pull request: [1073](https://github.com/hackforla/website/pull/1073#issuecomment-781707810) at 2021-02-18 03:41 PM PST -drubgrubby,2021-02-19T02:04:11Z,- drubgrubby commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-781762541) at 2021-02-18 06:04 PM PST -drubgrubby,2021-02-19T02:08:28Z,- drubgrubby commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-781763977) at 2021-02-18 06:08 PM PST -drubgrubby,2021-02-19T02:12:17Z,- drubgrubby commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-781765186) at 2021-02-18 06:12 PM PST -drubgrubby,2021-02-19T19:31:45Z,- drubgrubby commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782293824) at 2021-02-19 11:31 AM PST -drubgrubby,2021-02-21T03:31:28Z,- drubgrubby commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782789723) at 2021-02-20 07:31 PM PST -drubgrubby,2021-02-21T17:37:41Z,- drubgrubby closed issue as completed: [894](https://github.com/hackforla/website/issues/894#event-4356588287) at 2021-02-21 09:37 AM PST -drubgrubby,2021-02-21T20:21:26Z,- drubgrubby commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-782919882) at 2021-02-21 12:21 PM PST -drubgrubby,2021-02-22T18:01:19Z,- drubgrubby submitted pull request review: [1087](https://github.com/hackforla/website/pull/1087#pullrequestreview-595628200) at 2021-02-22 10:01 AM PST -drubgrubby,2021-02-22T18:01:49Z,- drubgrubby closed issue by PR 1087: [862](https://github.com/hackforla/website/issues/862#event-4361138022) at 2021-02-22 10:01 AM PST -drubgrubby,2021-02-22T19:49:38Z,- drubgrubby commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783629607) at 2021-02-22 11:49 AM PST -drubgrubby,2021-02-22T22:39:15Z,- drubgrubby commented on issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-783727450) at 2021-02-22 02:39 PM PST -drubgrubby,2021-02-23T21:37:38Z,- drubgrubby commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-784530047) at 2021-02-23 01:37 PM PST -drubgrubby,2021-02-26T00:21:03Z,- drubgrubby submitted pull request review: [1117](https://github.com/hackforla/website/pull/1117#pullrequestreview-599155637) at 2021-02-25 04:21 PM PST -drubgrubby,2021-02-26T17:33:08Z,- drubgrubby commented on issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786788081) at 2021-02-26 09:33 AM PST -drubgrubby,2021-02-28T17:35:08Z,- drubgrubby commented on issue: [1118](https://github.com/hackforla/website/issues/1118#issuecomment-787488934) at 2021-02-28 09:35 AM PST -drubgrubby,2021-03-01T16:58:22Z,- drubgrubby submitted pull request review: [1140](https://github.com/hackforla/website/pull/1140#pullrequestreview-600957143) at 2021-03-01 08:58 AM PST -drubgrubby,2021-03-01T16:58:33Z,- drubgrubby closed issue by PR 1140: [864](https://github.com/hackforla/website/issues/864#event-4390770982) at 2021-03-01 08:58 AM PST -drubgrubby,2021-03-01T17:32:19Z,- drubgrubby submitted pull request review: [1143](https://github.com/hackforla/website/pull/1143#pullrequestreview-600991029) at 2021-03-01 09:32 AM PST -drubgrubby,2021-03-01T17:38:33Z,- drubgrubby commented on pull request: [1143](https://github.com/hackforla/website/pull/1143#issuecomment-788135733) at 2021-03-01 09:38 AM PST -drubgrubby,2021-03-01T19:05:49Z,- drubgrubby commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788194195) at 2021-03-01 11:05 AM PST -drubgrubby,2021-03-07T17:25:36Z,- drubgrubby submitted pull request review: [1132](https://github.com/hackforla/website/pull/1132#pullrequestreview-605867277) at 2021-03-07 09:25 AM PST -drubgrubby,2021-03-08T20:29:29Z,- drubgrubby commented on pull request: [1132](https://github.com/hackforla/website/pull/1132#issuecomment-793054069) at 2021-03-08 12:29 PM PST -drubgrubby,2021-03-08T23:13:55Z,- drubgrubby commented on pull request: [1175](https://github.com/hackforla/website/pull/1175#issuecomment-793158349) at 2021-03-08 03:13 PM PST -drubgrubby,2021-03-10T01:41:06Z,- drubgrubby commented on issue: [1184](https://github.com/hackforla/website/issues/1184#issuecomment-794717311) at 2021-03-09 05:41 PM PST -drubgrubby,2021-03-10T02:10:09Z,- drubgrubby submitted pull request review: [1186](https://github.com/hackforla/website/pull/1186#pullrequestreview-608272528) at 2021-03-09 06:10 PM PST -drubgrubby,2021-03-10T20:48:44Z,- drubgrubby commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-796080622) at 2021-03-10 12:48 PM PST -drubgrubby,2021-03-12T21:31:23Z,- drubgrubby submitted pull request review: [1199](https://github.com/hackforla/website/pull/1199#pullrequestreview-611166676) at 2021-03-12 01:31 PM PST -drubgrubby,2021-03-15T20:13:58Z,- drubgrubby commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-799720432) at 2021-03-15 01:13 PM PDT -drubgrubby,2021-03-15T21:53:30Z,- drubgrubby commented on issue: [1207](https://github.com/hackforla/website/issues/1207#issuecomment-799779786) at 2021-03-15 02:53 PM PDT -drubgrubby,2021-03-17T01:37:16Z,- drubgrubby submitted pull request review: [1211](https://github.com/hackforla/website/pull/1211#pullrequestreview-613853614) at 2021-03-16 06:37 PM PDT -drubgrubby,2021-03-17T18:13:19Z,- drubgrubby submitted pull request review: [1218](https://github.com/hackforla/website/pull/1218#pullrequestreview-614643827) at 2021-03-17 11:13 AM PDT -drubgrubby,2021-03-17T18:38:53Z,- drubgrubby commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-801320659) at 2021-03-17 11:38 AM PDT -drubgrubby,2021-03-17T21:01:02Z,- drubgrubby opened issue: [1236](https://github.com/hackforla/website/issues/1236) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:09Z,- drubgrubby opened issue: [1237](https://github.com/hackforla/website/issues/1237) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:12Z,- drubgrubby opened issue: [1238](https://github.com/hackforla/website/issues/1238) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:36Z,- drubgrubby opened issue: [1239](https://github.com/hackforla/website/issues/1239) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:37Z,- drubgrubby opened issue: [1240](https://github.com/hackforla/website/issues/1240) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:01:56Z,- drubgrubby opened issue: [1242](https://github.com/hackforla/website/issues/1242) at 2021-03-17 02:01 PM PDT -drubgrubby,2021-03-17T21:02:05Z,- drubgrubby opened issue: [1243](https://github.com/hackforla/website/issues/1243) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:06Z,- drubgrubby opened issue: [1244](https://github.com/hackforla/website/issues/1244) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:06Z,- drubgrubby opened issue: [1245](https://github.com/hackforla/website/issues/1245) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:07Z,- drubgrubby opened issue: [1246](https://github.com/hackforla/website/issues/1246) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-17T21:02:09Z,- drubgrubby opened issue: [1247](https://github.com/hackforla/website/issues/1247) at 2021-03-17 02:02 PM PDT -drubgrubby,2021-03-18T16:42:03Z,- drubgrubby submitted pull request review: [1217](https://github.com/hackforla/website/pull/1217#pullrequestreview-615631236) at 2021-03-18 09:42 AM PDT -drubgrubby,2021-03-18T16:43:48Z,- drubgrubby closed issue by PR 1217: [1212](https://github.com/hackforla/website/issues/1212#event-4477348140) at 2021-03-18 09:43 AM PDT -drubgrubby,2021-03-18T17:18:49Z,- drubgrubby submitted pull request review: [1211](https://github.com/hackforla/website/pull/1211#pullrequestreview-615671311) at 2021-03-18 10:18 AM PDT -drubgrubby,2021-03-18T17:19:07Z,- drubgrubby closed issue by PR 1211: [1171](https://github.com/hackforla/website/issues/1171#event-4477581355) at 2021-03-18 10:19 AM PDT -drubgrubby,2021-03-18T23:56:27Z,- drubgrubby submitted pull request review: [1260](https://github.com/hackforla/website/pull/1260#pullrequestreview-615963630) at 2021-03-18 04:56 PM PDT -drubgrubby,2021-04-04T23:48:41Z,- drubgrubby commented on issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-813118264) at 2021-04-04 04:48 PM PDT -drubgrubby,2021-04-07T23:04:40Z,- drubgrubby commented on pull request: [1372](https://github.com/hackforla/website/pull/1372#issuecomment-815316212) at 2021-04-07 04:04 PM PDT -drubgrubby,2021-04-07T23:05:05Z,- drubgrubby commented on pull request: [1371](https://github.com/hackforla/website/pull/1371#issuecomment-815316369) at 2021-04-07 04:05 PM PDT -drubgrubby,2021-04-07T23:07:28Z,- drubgrubby commented on pull request: [1370](https://github.com/hackforla/website/pull/1370#issuecomment-815317243) at 2021-04-07 04:07 PM PDT -drubgrubby,2021-06-09T04:31:24Z,- drubgrubby commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857363952) at 2021-06-08 09:31 PM PDT -duojet2ez,6037,SKILLS ISSUE -duojet2ez,2024-01-03T03:59:02Z,- duojet2ez opened issue: [6037](https://github.com/hackforla/website/issues/6037) at 2024-01-02 07:59 PM PST -duojet2ez,2024-01-03T04:00:17Z,- duojet2ez assigned to issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-1874821628) at 2024-01-02 08:00 PM PST -duojet2ez,2024-01-26T03:12:25Z,- duojet2ez assigned to issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1874982475) at 2024-01-25 07:12 PM PST -duojet2ez,2024-01-26T03:14:56Z,- duojet2ez commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1911348272) at 2024-01-25 07:14 PM PST -duojet2ez,2024-02-02T03:21:07Z,- duojet2ez commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1922736158) at 2024-02-01 07:21 PM PST -duojet2ez,2024-02-10T20:48:51Z,- duojet2ez commented on issue: [6044](https://github.com/hackforla/website/issues/6044#issuecomment-1937117223) at 2024-02-10 12:48 PM PST -duojet2ez,2024-02-23T04:07:40Z,- duojet2ez opened pull request: [6362](https://github.com/hackforla/website/pull/6362) at 2024-02-22 08:07 PM PST -duojet2ez,2024-02-23T19:17:03Z,- duojet2ez closed issue as completed: [6037](https://github.com/hackforla/website/issues/6037#event-11907336285) at 2024-02-23 11:17 AM PST -duojet2ez,2024-02-25T20:39:31Z,- duojet2ez commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1963054723) at 2024-02-25 12:39 PM PST -duojet2ez,2024-02-29T22:40:12Z,- duojet2ez commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1972093449) at 2024-02-29 02:40 PM PST -duojet2ez,2024-03-01T07:00:55Z,- duojet2ez pull request merged: [6362](https://github.com/hackforla/website/pull/6362#event-11975406944) at 2024-02-29 11:00 PM PST -duojet2ez,2024-03-03T01:07:08Z,- duojet2ez assigned to issue: [6110](https://github.com/hackforla/website/issues/6110) at 2024-03-02 05:07 PM PST -duojet2ez,2024-03-08T01:28:10Z,- duojet2ez commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-1984887060) at 2024-03-07 05:28 PM PST -duojet2ez,2024-03-20T16:44:28Z,- duojet2ez commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-2010030890) at 2024-03-20 09:44 AM PDT -duojet2ez,2024-03-27T04:47:51Z,- duojet2ez opened pull request: [6533](https://github.com/hackforla/website/pull/6533) at 2024-03-26 09:47 PM PDT -duojet2ez,2024-03-30T11:28:12Z,- duojet2ez pull request merged: [6533](https://github.com/hackforla/website/pull/6533#event-12300409595) at 2024-03-30 04:28 AM PDT -duojet2ez,2024-04-09T20:33:34Z,- duojet2ez assigned to issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2016579316) at 2024-04-09 01:33 PM PDT -duojet2ez,2024-04-09T20:37:14Z,- duojet2ez commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2046008362) at 2024-04-09 01:37 PM PDT -duojet2ez,2024-04-13T00:35:11Z,- duojet2ez opened pull request: [6635](https://github.com/hackforla/website/pull/6635) at 2024-04-12 05:35 PM PDT -duojet2ez,2024-04-13T00:36:54Z,- duojet2ez commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2052729585) at 2024-04-12 05:36 PM PDT -duojet2ez,2024-04-15T01:15:28Z,- duojet2ez pull request merged: [6635](https://github.com/hackforla/website/pull/6635#event-12461860500) at 2024-04-14 06:15 PM PDT -duojet2ez,2024-04-24T15:35:32Z,- duojet2ez commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2075235203) at 2024-04-24 08:35 AM PDT -duojet2ez,2024-06-17T04:26:16Z,- duojet2ez assigned to issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2159515453) at 2024-06-16 09:26 PM PDT -duojet2ez,2024-06-17T04:31:26Z,- duojet2ez commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2172217162) at 2024-06-16 09:31 PM PDT -duojet2ez,2024-06-18T16:34:13Z,- duojet2ez commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2176523809) at 2024-06-18 09:34 AM PDT -duojet2ez,2024-06-20T22:03:52Z,- duojet2ez opened pull request: [7040](https://github.com/hackforla/website/pull/7040) at 2024-06-20 03:03 PM PDT -duojet2ez,2024-06-20T22:04:55Z,- duojet2ez commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2181633453) at 2024-06-20 03:04 PM PDT -duojet2ez,2024-06-30T03:16:02Z,- duojet2ez pull request merged: [7040](https://github.com/hackforla/website/pull/7040#event-13341168933) at 2024-06-29 08:16 PM PDT -duojet2ez,2024-08-13T18:16:20Z,- duojet2ez commented on pull request: [7263](https://github.com/hackforla/website/pull/7263#issuecomment-2286847844) at 2024-08-13 11:16 AM PDT -duojet2ez,2024-08-13T22:39:20Z,- duojet2ez submitted pull request review: [7263](https://github.com/hackforla/website/pull/7263#pullrequestreview-2236744973) at 2024-08-13 03:39 PM PDT -DUPLICATE - 2950,2938,SKILLS ISSUE -dustinowen,5724,SKILLS ISSUE -dustinowen,2023-10-17T02:48:12Z,- dustinowen opened issue: [5724](https://github.com/hackforla/website/issues/5724) at 2023-10-16 07:48 PM PDT -dustinowen,2023-11-01T20:58:11Z,- dustinowen assigned to issue: [5790](https://github.com/hackforla/website/issues/5790#issuecomment-1784194086) at 2023-11-01 01:58 PM PDT -dustinowen,2023-11-01T21:17:42Z,- dustinowen opened pull request: [5820](https://github.com/hackforla/website/pull/5820) at 2023-11-01 02:17 PM PDT -dustinowen,2023-11-01T21:19:50Z,- dustinowen commented on issue: [5790](https://github.com/hackforla/website/issues/5790#issuecomment-1789704480) at 2023-11-01 02:19 PM PDT -dustinowen,2023-11-01T21:29:36Z,- dustinowen commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1789715455) at 2023-11-01 02:29 PM PDT -dustinowen,2023-11-06T03:50:36Z,- dustinowen pull request closed w/o merging: [5820](https://github.com/hackforla/website/pull/5820#event-10867329522) at 2023-11-05 07:50 PM PST -dustinowen,2023-11-06T04:07:07Z,- dustinowen opened pull request: [5858](https://github.com/hackforla/website/pull/5858) at 2023-11-05 08:07 PM PST -dustinowen,2023-11-06T04:07:50Z,- dustinowen commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1794053157) at 2023-11-05 08:07 PM PST -dustinowen,2023-11-06T04:09:54Z,- dustinowen commented on pull request: [5858](https://github.com/hackforla/website/pull/5858#issuecomment-1794054507) at 2023-11-05 08:09 PM PST -dustinowen,2023-11-08T04:08:41Z,- dustinowen commented on pull request: [5858](https://github.com/hackforla/website/pull/5858#issuecomment-1801008214) at 2023-11-07 08:08 PM PST -dustinowen,2023-11-08T05:25:12Z,- dustinowen pull request merged: [5858](https://github.com/hackforla/website/pull/5858#event-10895747242) at 2023-11-07 09:25 PM PST -dustinowen,2023-11-14T21:11:18Z,- dustinowen closed issue by PR 5917: [5876](https://github.com/hackforla/website/issues/5876#event-10960153397) at 2023-11-14 01:11 PM PST -dustinowen,2023-11-14T21:19:21Z,- dustinowen assigned to issue: [5874](https://github.com/hackforla/website/issues/5874#issuecomment-1797823731) at 2023-11-14 01:19 PM PST -dustinowen,2023-11-14T21:21:27Z,- dustinowen commented on issue: [5874](https://github.com/hackforla/website/issues/5874#issuecomment-1811334326) at 2023-11-14 01:21 PM PST -dustinowen,2023-11-14T21:40:46Z,- dustinowen opened pull request: [5903](https://github.com/hackforla/website/pull/5903) at 2023-11-14 01:40 PM PST -dustinowen,2023-11-15T22:33:32Z,- dustinowen pull request merged: [5903](https://github.com/hackforla/website/pull/5903#event-10973045721) at 2023-11-15 02:33 PM PST -dustinowen,2023-11-16T03:22:34Z,- dustinowen assigned to issue: [5855](https://github.com/hackforla/website/issues/5855) at 2023-11-15 07:22 PM PST -dustinowen,2023-11-16T03:24:17Z,- dustinowen commented on issue: [5855](https://github.com/hackforla/website/issues/5855#issuecomment-1813731451) at 2023-11-15 07:24 PM PST -dustinowen,2023-11-16T04:17:20Z,- dustinowen opened pull request: [5911](https://github.com/hackforla/website/pull/5911) at 2023-11-15 08:17 PM PST -dustinowen,2023-11-16T21:31:09Z,- dustinowen assigned to issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1815166659) at 2023-11-16 01:31 PM PST -dustinowen,2023-11-16T23:15:32Z,- dustinowen commented on pull request: [5911](https://github.com/hackforla/website/pull/5911#issuecomment-1815467922) at 2023-11-16 03:15 PM PST -dustinowen,2023-11-16T23:28:37Z,- dustinowen commented on issue: [5724](https://github.com/hackforla/website/issues/5724#issuecomment-1815491798) at 2023-11-16 03:28 PM PST -dustinowen,2023-11-17T21:56:52Z,- dustinowen pull request merged: [5911](https://github.com/hackforla/website/pull/5911#event-10999505098) at 2023-11-17 01:56 PM PST -dustinowen,2023-11-28T23:57:20Z,- dustinowen closed issue as completed: [5724](https://github.com/hackforla/website/issues/5724#event-11090004913) at 2023-11-28 03:57 PM PST -dvernon5,7745,SKILLS ISSUE -dvernon5,2024-11-20T04:18:46Z,- dvernon5 opened issue: [7745](https://github.com/hackforla/website/issues/7745) at 2024-11-19 08:18 PM PST -dvernon5,2024-11-20T04:19:54Z,- dvernon5 assigned to issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2487379898) at 2024-11-19 08:19 PM PST -dvernon5,2024-11-24T19:14:19Z,- dvernon5 assigned to issue: [7651](https://github.com/hackforla/website/issues/7651) at 2024-11-24 11:14 AM PST -dvernon5,2024-11-26T02:38:07Z,- dvernon5 opened pull request: [7768](https://github.com/hackforla/website/pull/7768) at 2024-11-25 06:38 PM PST -dvernon5,2024-11-26T17:26:47Z,- dvernon5 commented on issue: [7651](https://github.com/hackforla/website/issues/7651#issuecomment-2501537191) at 2024-11-26 09:26 AM PST -dvernon5,2024-11-26T17:41:51Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501566379) at 2024-11-26 09:41 AM PST -dvernon5,2024-11-26T19:17:37Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501739520) at 2024-11-26 11:17 AM PST -dvernon5,2024-11-26T21:34:00Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501976098) at 2024-11-26 01:34 PM PST -dvernon5,2024-11-26T23:48:57Z,- dvernon5 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2502202718) at 2024-11-26 03:48 PM PST -dvernon5,2024-11-27T01:32:21Z,- dvernon5 commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2502433956) at 2024-11-26 05:32 PM PST -dvernon5,2024-11-27T01:39:57Z,- dvernon5 submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2463355927) at 2024-11-26 05:39 PM PST -dvernon5,2024-11-27T02:03:20Z,- dvernon5 commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2502496223) at 2024-11-26 06:03 PM PST -dvernon5,2024-11-27T02:05:55Z,- dvernon5 submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2463424473) at 2024-11-26 06:05 PM PST -dvernon5,2024-11-27T03:35:19Z,- dvernon5 pull request merged: [7768](https://github.com/hackforla/website/pull/7768#event-15446031603) at 2024-11-26 07:35 PM PST -dvernon5,2024-11-27T04:09:53Z,- dvernon5 assigned to issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487236019) at 2024-11-26 08:09 PM PST -dvernon5,2024-11-27T04:12:05Z,- dvernon5 commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2502684429) at 2024-11-26 08:12 PM PST -dvernon5,2024-11-27T04:50:07Z,- dvernon5 opened pull request: [7773](https://github.com/hackforla/website/pull/7773) at 2024-11-26 08:50 PM PST -dvernon5,2024-11-27T16:49:45Z,- dvernon5 commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504348069) at 2024-11-27 08:49 AM PST -dvernon5,2024-11-27T16:50:30Z,- dvernon5 commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504349696) at 2024-11-27 08:50 AM PST -dvernon5,2024-11-27T22:15:38Z,- dvernon5 pull request merged: [7773](https://github.com/hackforla/website/pull/7773#event-15458078622) at 2024-11-27 02:15 PM PST -dvernon5,2024-11-28T00:46:34Z,- dvernon5 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2471502408) at 2024-11-27 04:46 PM PST -dvernon5,2024-11-28T00:49:29Z,- dvernon5 commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2505060156) at 2024-11-27 04:49 PM PST -dvernon5,2024-11-28T01:38:35Z,- dvernon5 opened pull request: [7776](https://github.com/hackforla/website/pull/7776) at 2024-11-27 05:38 PM PST -dvernon5,2024-11-30T02:49:43Z,- dvernon5 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2508799800) at 2024-11-29 06:49 PM PST -dvernon5,2024-12-01T00:55:24Z,- dvernon5 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2509502738) at 2024-11-30 04:55 PM PST -dvernon5,2024-12-01T00:56:36Z,- dvernon5 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2509503116) at 2024-11-30 04:56 PM PST -dvernon5,2024-12-01T02:34:07Z,- dvernon5 pull request merged: [7776](https://github.com/hackforla/website/pull/7776#event-15483050697) at 2024-11-30 06:34 PM PST -dvernon5,2024-12-02T22:38:44Z,- dvernon5 assigned to issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2501662276) at 2024-12-02 02:38 PM PST -dvernon5,2024-12-02T22:40:48Z,- dvernon5 commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2513124597) at 2024-12-02 02:40 PM PST -dvernon5,2024-12-05T01:30:52Z,- dvernon5 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605) at 2024-12-04 05:30 PM PST -dvernon5,2024-12-05T01:31:09Z,- dvernon5 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:31 PM PST -dvernon5,2024-12-05T01:31:48Z,- dvernon5 assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:31 PM PST -dvernon5,2024-12-05T01:32:06Z,- dvernon5 unassigned from issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:32 PM PST -dvernon5,2024-12-05T19:32:28Z,- dvernon5 assigned to issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2387218702) at 2024-12-05 11:32 AM PST -dvernon5,2024-12-05T19:32:48Z,- dvernon5 unassigned from issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2521235751) at 2024-12-05 11:32 AM PST -dvernon5,2024-12-08T03:26:23Z,- dvernon5 opened issue: [7797](https://github.com/hackforla/website/issues/7797) at 2024-12-07 07:26 PM PST -dvernon5,2025-01-03T18:46:29Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2569667288) at 2025-01-03 10:46 AM PST -dvernon5,2025-01-17T04:42:55Z,- dvernon5 commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2597423771) at 2025-01-16 08:42 PM PST -dvernon5,2025-01-19T19:10:44Z,- dvernon5 opened issue: [7835](https://github.com/hackforla/website/issues/7835) at 2025-01-19 11:10 AM PST -dvernon5,2025-01-19T20:10:41Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2601005010) at 2025-01-19 12:10 PM PST -dvernon5,2025-01-22T04:32:11Z,- dvernon5 commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2606272426) at 2025-01-21 08:32 PM PST -dvernon5,2025-01-22T04:33:26Z,- dvernon5 commented on issue: [7835](https://github.com/hackforla/website/issues/7835#issuecomment-2606273502) at 2025-01-21 08:33 PM PST -dvernon5,2025-01-24T03:26:09Z,- dvernon5 assigned to issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-1989698218) at 2025-01-23 07:26 PM PST -dvernon5,2025-01-24T03:26:26Z,- dvernon5 unassigned from issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2611469774) at 2025-01-23 07:26 PM PST -dvernon5,2025-01-26T18:43:57Z,- dvernon5 assigned to issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2078024067) at 2025-01-26 10:43 AM PST -dvernon5,2025-01-26T18:51:16Z,- dvernon5 commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2614546399) at 2025-01-26 10:51 AM PST -dvernon5,2025-01-29T04:49:06Z,- dvernon5 commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2620715393) at 2025-01-28 08:49 PM PST -dvernon5,2025-01-29T20:42:15Z,- dvernon5 submitted pull request review: [7851](https://github.com/hackforla/website/pull/7851#pullrequestreview-2582202072) at 2025-01-29 12:42 PM PST -dvernon5,2025-01-31T03:08:22Z,- dvernon5 opened issue: [7866](https://github.com/hackforla/website/issues/7866) at 2025-01-30 07:08 PM PST -dvernon5,2025-01-31T03:21:05Z,- dvernon5 assigned to issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2626205477) at 2025-01-30 07:21 PM PST -dvernon5,2025-01-31T03:39:20Z,- dvernon5 unassigned from issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2614546399) at 2025-01-30 07:39 PM PST -dvernon5,2025-02-07T07:34:46Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2642139312) at 2025-02-06 11:34 PM PST -dvernon5,2025-03-03T19:59:38Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2695410913) at 2025-03-03 11:59 AM PST -dvernon5,2025-03-09T17:51:03Z,- dvernon5 opened pull request: [7985](https://github.com/hackforla/website/pull/7985) at 2025-03-09 10:51 AM PDT -dvernon5,2025-03-11T21:52:20Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2715786426) at 2025-03-11 02:52 PM PDT -dvernon5,2025-03-11T22:23:40Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2715837152) at 2025-03-11 03:23 PM PDT -dvernon5,2025-03-14T15:45:07Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2725076388) at 2025-03-14 08:45 AM PDT -dvernon5,2025-03-16T05:04:17Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727194658) at 2025-03-15 10:04 PM PDT -dvernon5,2025-03-16T06:09:22Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727216549) at 2025-03-15 11:09 PM PDT -dvernon5,2025-03-16T16:59:07Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727542511) at 2025-03-16 09:59 AM PDT -dvernon5,2025-03-16T16:59:50Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727542775) at 2025-03-16 09:59 AM PDT -dvernon5,2025-03-16T17:30:57Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727554737) at 2025-03-16 10:30 AM PDT -dvernon5,2025-03-16T17:55:48Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727566046) at 2025-03-16 10:55 AM PDT -dvernon5,2025-03-16T17:58:32Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727567139) at 2025-03-16 10:58 AM PDT -dvernon5,2025-03-16T17:59:17Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2727567444) at 2025-03-16 10:59 AM PDT -dvernon5,2025-03-16T19:15:40Z,- dvernon5 commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2727602669) at 2025-03-16 12:15 PM PDT -dvernon5,2025-03-16T21:17:24Z,- dvernon5 submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2688799815) at 2025-03-16 02:17 PM PDT -dvernon5,2025-03-16T21:39:31Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727660815) at 2025-03-16 02:39 PM PDT -dvernon5,2025-03-18T00:33:04Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731267485) at 2025-03-17 05:33 PM PDT -dvernon5,2025-03-18T01:40:17Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731366704) at 2025-03-17 06:40 PM PDT -dvernon5,2025-03-18T16:16:40Z,- dvernon5 commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2733867345) at 2025-03-18 09:16 AM PDT -dvernon5,2025-03-19T03:53:32Z,- dvernon5 commented on pull request: [7992](https://github.com/hackforla/website/pull/7992#issuecomment-2735255766) at 2025-03-18 08:53 PM PDT -dvernon5,2025-03-19T04:11:54Z,- dvernon5 submitted pull request review: [7992](https://github.com/hackforla/website/pull/7992#pullrequestreview-2696846796) at 2025-03-18 09:11 PM PDT -dvernon5,2025-03-19T04:54:42Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735331396) at 2025-03-18 09:54 PM PDT -dvernon5,2025-03-19T04:57:12Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735336485) at 2025-03-18 09:57 PM PDT -dvernon5,2025-03-19T04:58:08Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735337503) at 2025-03-18 09:58 PM PDT -dvernon5,2025-03-19T04:58:58Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735338415) at 2025-03-18 09:58 PM PDT -dvernon5,2025-03-19T04:59:48Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2735339451) at 2025-03-18 09:59 PM PDT -dvernon5,2025-03-26T02:41:59Z,- dvernon5 assigned to issue: [6327](https://github.com/hackforla/website/issues/6327#event-16144900751) at 2025-03-25 07:41 PM PDT -dvernon5,2025-03-26T05:09:12Z,- dvernon5 commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2753258823) at 2025-03-25 10:09 PM PDT -dvernon5,2025-03-26T06:08:27Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2753338201) at 2025-03-25 11:08 PM PDT -dvernon5,2025-03-26T20:46:22Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2755710071) at 2025-03-26 01:46 PM PDT -dvernon5,2025-03-26T20:47:13Z,- dvernon5 commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2755711694) at 2025-03-26 01:47 PM PDT -dvernon5,2025-03-26T23:29:25Z,- dvernon5 submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2718840131) at 2025-03-26 04:29 PM PDT -dvernon5,2025-04-02T02:31:36Z,- dvernon5 opened issue: [8036](https://github.com/hackforla/website/issues/8036) at 2025-04-01 07:31 PM PDT -dvernon5,2025-04-02T03:16:17Z,- dvernon5 assigned to issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2770260872) at 2025-04-01 08:16 PM PDT -dvernon5,2025-04-02T03:18:44Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2771241897) at 2025-04-01 08:18 PM PDT -dvernon5,2025-04-03T02:28:31Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2774210362) at 2025-04-02 07:28 PM PDT -dvernon5,2025-04-04T05:22:16Z,- dvernon5 commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2777586623) at 2025-04-03 10:22 PM PDT -dvernon5,2025-04-04T05:35:47Z,- dvernon5 submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2741822257) at 2025-04-03 10:35 PM PDT -dvernon5,2025-04-06T04:27:45Z,- dvernon5 submitted pull request review: [8039](https://github.com/hackforla/website/pull/8039#pullrequestreview-2745035052) at 2025-04-05 09:27 PM PDT -dvernon5,2025-04-06T21:49:41Z,- dvernon5 submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2745285575) at 2025-04-06 02:49 PM PDT -dvernon5,2025-04-09T02:19:19Z,- dvernon5 commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2788119077) at 2025-04-08 07:19 PM PDT -dvernon5,2025-04-09T02:19:19Z,- dvernon5 commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2788119077) at 2025-04-08 07:19 PM PDT -dvernon5,2025-04-09T02:54:24Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751911667) at 2025-04-08 07:54 PM PDT -dvernon5,2025-04-09T02:54:24Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751911667) at 2025-04-08 07:54 PM PDT -dvernon5,2025-04-09T02:56:36Z,- dvernon5 commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2788156317) at 2025-04-08 07:56 PM PDT -dvernon5,2025-04-09T03:24:24Z,- dvernon5 submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2751938878) at 2025-04-08 08:24 PM PDT -dvernon5,2025-04-09T04:25:33Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788244428) at 2025-04-08 09:25 PM PDT -dvernon5,2025-04-09T04:25:48Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788244654) at 2025-04-08 09:25 PM PDT -dvernon5,2025-04-09T04:26:37Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788245492) at 2025-04-08 09:26 PM PDT -dvernon5,2025-04-09T04:26:49Z,- dvernon5 commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2788245709) at 2025-04-08 09:26 PM PDT -dvernon5,2025-04-09T16:07:37Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2754017735) at 2025-04-09 09:07 AM PDT -dvernon5,2025-04-09T16:07:37Z,- dvernon5 submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2754017735) at 2025-04-09 09:07 AM PDT -dvernon5,2025-04-14T20:35:03Z,- dvernon5 submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2765592402) at 2025-04-14 01:35 PM PDT -dvernon5,2025-04-18T16:11:22Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2815730059) at 2025-04-18 09:11 AM PDT -dvernon5,2025-04-21T19:05:23Z,- dvernon5 submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2782033035) at 2025-04-21 12:05 PM PDT -dvernon5,2025-04-24T17:41:57Z,- dvernon5 commented on pull request: [8085](https://github.com/hackforla/website/pull/8085#issuecomment-2828381528) at 2025-04-24 10:41 AM PDT -dvernon5,2025-04-24T22:46:58Z,- dvernon5 submitted pull request review: [8085](https://github.com/hackforla/website/pull/8085#pullrequestreview-2792679506) at 2025-04-24 03:46 PM PDT -dvernon5,2025-04-25T21:33:25Z,- dvernon5 commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2831468844) at 2025-04-25 02:33 PM PDT -dvernon5,2025-04-25T23:14:59Z,- dvernon5 opened pull request: [8089](https://github.com/hackforla/website/pull/8089) at 2025-04-25 04:14 PM PDT -dvernon5,2025-04-26T17:26:29Z,- dvernon5 assigned to issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-04-26 10:26 AM PDT -dvernon5,2025-04-26T17:26:41Z,- dvernon5 unassigned from issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832455617) at 2025-04-26 10:26 AM PDT -dvernon5,2025-04-27T03:41:34Z,- dvernon5 commented on pull request: [8089](https://github.com/hackforla/website/pull/8089#issuecomment-2832943508) at 2025-04-26 08:41 PM PDT -dvernon5,2025-04-27T18:58:08Z,- dvernon5 pull request merged: [8089](https://github.com/hackforla/website/pull/8089#event-17424635685) at 2025-04-27 11:58 AM PDT -dvernon5,2025-05-06T02:23:31Z,- dvernon5 assigned to issue: [6291](https://github.com/hackforla/website/issues/6291) at 2025-05-05 07:23 PM PDT -dvernon5,2025-05-06T02:46:42Z,- dvernon5 commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2853126211) at 2025-05-05 07:46 PM PDT -dvernon5,2025-05-06T02:54:23Z,- dvernon5 commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2853134711) at 2025-05-05 07:54 PM PDT -dvernon5,2025-05-14T03:03:06Z,- dvernon5 commented on pull request: [8121](https://github.com/hackforla/website/pull/8121#issuecomment-2878496360) at 2025-05-13 08:03 PM PDT -dvernon5,2025-05-14T16:47:20Z,- dvernon5 opened issue: [8139](https://github.com/hackforla/website/issues/8139) at 2025-05-14 09:47 AM PDT -dvernon5,2025-05-14T21:12:19Z,- dvernon5 commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2881592345) at 2025-05-14 02:12 PM PDT -dvernon5,2025-05-15T21:49:12Z,- dvernon5 submitted pull request review: [8121](https://github.com/hackforla/website/pull/8121#pullrequestreview-2845042755) at 2025-05-15 02:49 PM PDT -dvernon5,2025-05-16T06:19:12Z,- dvernon5 opened issue: [8147](https://github.com/hackforla/website/issues/8147) at 2025-05-15 11:19 PM PDT -dvernon5,2025-05-18T03:13:22Z,- dvernon5 commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2888736451) at 2025-05-17 08:13 PM PDT -dvernon5,2025-05-20T00:58:41Z,- dvernon5 commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2892605953) at 2025-05-19 05:58 PM PDT -dvernon5,2025-06-24T23:15:02Z,- dvernon5 opened issue: [8205](https://github.com/hackforla/website/issues/8205) at 2025-06-24 04:15 PM PDT -dvernon5,2025-06-25T12:08:56Z,- dvernon5 opened issue: [8207](https://github.com/hackforla/website/issues/8207) at 2025-06-25 05:08 AM PDT -dvernon5,2025-06-25T12:19:23Z,- dvernon5 opened issue: [8208](https://github.com/hackforla/website/issues/8208) at 2025-06-25 05:19 AM PDT -dvernon5,2025-06-25T12:27:15Z,- dvernon5 opened issue: [8209](https://github.com/hackforla/website/issues/8209) at 2025-06-25 05:27 AM PDT -dvernon5,2025-06-25T12:32:42Z,- dvernon5 opened issue: [8210](https://github.com/hackforla/website/issues/8210) at 2025-06-25 05:32 AM PDT -dvernon5,2025-06-25T13:10:53Z,- dvernon5 opened issue: [8211](https://github.com/hackforla/website/issues/8211) at 2025-06-25 06:10 AM PDT -dvernon5,2025-06-25T13:34:47Z,- dvernon5 opened issue: [8212](https://github.com/hackforla/website/issues/8212) at 2025-06-25 06:34 AM PDT -dvernon5,2025-06-25T13:42:31Z,- dvernon5 opened issue: [8213](https://github.com/hackforla/website/issues/8213) at 2025-06-25 06:42 AM PDT -dvernon5,2025-06-25T18:55:10Z,- dvernon5 opened issue: [8214](https://github.com/hackforla/website/issues/8214) at 2025-06-25 11:55 AM PDT -dvernon5,2025-06-25T18:58:40Z,- dvernon5 opened issue: [8215](https://github.com/hackforla/website/issues/8215) at 2025-06-25 11:58 AM PDT -dvernon5,2025-06-25T18:58:59Z,- dvernon5 opened issue: [8216](https://github.com/hackforla/website/issues/8216) at 2025-06-25 11:58 AM PDT -dvernon5,2025-06-25T18:59:05Z,- dvernon5 opened issue: [8217](https://github.com/hackforla/website/issues/8217) at 2025-06-25 11:59 AM PDT -dvernon5,2025-06-25T18:59:48Z,- dvernon5 opened issue: [8218](https://github.com/hackforla/website/issues/8218) at 2025-06-25 11:59 AM PDT -dvernon5,2025-06-25T19:03:39Z,- dvernon5 opened issue: [8219](https://github.com/hackforla/website/issues/8219) at 2025-06-25 12:03 PM PDT -dvernon5,2025-06-25T19:05:41Z,- dvernon5 opened issue: [8220](https://github.com/hackforla/website/issues/8220) at 2025-06-25 12:05 PM PDT -dvernon5,2025-06-25T19:06:15Z,- dvernon5 opened issue: [8221](https://github.com/hackforla/website/issues/8221) at 2025-06-25 12:06 PM PDT -dvernon5,2025-06-25T19:06:40Z,- dvernon5 opened issue: [8222](https://github.com/hackforla/website/issues/8222) at 2025-06-25 12:06 PM PDT -dvernon5,2025-06-25T19:06:59Z,- dvernon5 opened issue: [8223](https://github.com/hackforla/website/issues/8223) at 2025-06-25 12:06 PM PDT -dvernon5,2025-06-25T19:07:20Z,- dvernon5 opened issue: [8224](https://github.com/hackforla/website/issues/8224) at 2025-06-25 12:07 PM PDT -dvernon5,2025-06-25T19:08:17Z,- dvernon5 opened issue: [8225](https://github.com/hackforla/website/issues/8225) at 2025-06-25 12:08 PM PDT -dvernon5,2025-06-25T19:08:29Z,- dvernon5 opened issue: [8226](https://github.com/hackforla/website/issues/8226) at 2025-06-25 12:08 PM PDT -dvernon5,2025-06-25T19:08:39Z,- dvernon5 opened issue: [8227](https://github.com/hackforla/website/issues/8227) at 2025-06-25 12:08 PM PDT -dvernon5,2025-06-25T23:11:59Z,- dvernon5 opened issue: [8228](https://github.com/hackforla/website/issues/8228) at 2025-06-25 04:11 PM PDT -dvernon5,2025-06-25T23:39:15Z,- dvernon5 opened issue: [8229](https://github.com/hackforla/website/issues/8229) at 2025-06-25 04:39 PM PDT -dvernon5,2025-06-25T23:44:54Z,- dvernon5 opened issue: [8230](https://github.com/hackforla/website/issues/8230) at 2025-06-25 04:44 PM PDT -dvernon5,2025-06-27T05:38:22Z,- dvernon5 opened pull request: [8232](https://github.com/hackforla/website/pull/8232) at 2025-06-26 10:38 PM PDT -dwightdiesmo,2022-10-11T02:59:33Z,- dwightdiesmo opened issue: [3614](https://github.com/hackforla/website/issues/3614) at 2022-10-10 07:59 PM PDT -eb46,2020-06-24T04:07:03Z,- eb46 assigned to issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647152171) at 2020-06-23 09:07 PM PDT -eb46,2020-06-25T00:31:23Z,- eb46 commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-649144501) at 2020-06-24 05:31 PM PDT -eb46,2020-06-25T00:31:35Z,- eb46 unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-649144501) at 2020-06-24 05:31 PM PDT -ebele-oputa,2021-04-30T02:59:26Z,- ebele-oputa opened issue: [1851](https://github.com/hackforla/website/issues/1851) at 2021-04-29 07:59 PM PDT -ebele-oputa,2021-04-30T02:59:26Z,- ebele-oputa assigned to issue: [1851](https://github.com/hackforla/website/issues/1851) at 2021-04-29 07:59 PM PDT -ebele-oputa,2021-06-14T16:34:20Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-860824357) at 2021-06-14 09:34 AM PDT -ebele-oputa,2021-06-22T01:26:07Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865452023) at 2021-06-21 06:26 PM PDT -ebele-oputa,2021-06-22T01:32:03Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865453782) at 2021-06-21 06:32 PM PDT -ebele-oputa,2021-06-22T01:34:15Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865454495) at 2021-06-21 06:34 PM PDT -ebele-oputa,2021-06-28T19:12:55Z,- ebele-oputa unassigned from issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-865454495) at 2021-06-28 12:12 PM PDT -ebele-oputa,2021-06-28T19:45:02Z,- ebele-oputa closed issue by PR 1915: [1851](https://github.com/hackforla/website/issues/1851#event-4949482556) at 2021-06-28 12:45 PM PDT -ebele-oputa,2021-07-08T17:30:49Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-876617488) at 2021-07-08 10:30 AM PDT -ebele-oputa,2021-07-10T07:09:48Z,- ebele-oputa commented on issue: [1851](https://github.com/hackforla/website/issues/1851#issuecomment-877584691) at 2021-07-10 12:09 AM PDT -ebele-oputa,2021-10-12T01:26:49Z,- ebele-oputa assigned to issue: [2364](https://github.com/hackforla/website/issues/2364) at 2021-10-11 06:26 PM PDT -ebele-oputa,2021-10-12T02:24:15Z,- ebele-oputa commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-940599162) at 2021-10-11 07:24 PM PDT -ebele-oputa,2021-10-12T02:32:43Z,- ebele-oputa unassigned from issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-940599162) at 2021-10-11 07:32 PM PDT -ebele-oputa,2021-10-12T02:34:49Z,- ebele-oputa commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-940602924) at 2021-10-11 07:34 PM PDT -eburdekin,6331,SKILLS ISSUE -eburdekin,2024-02-21T03:28:56Z,- eburdekin opened issue: [6331](https://github.com/hackforla/website/issues/6331) at 2024-02-20 07:28 PM PST -eburdekin,2024-02-21T04:13:11Z,- eburdekin assigned to issue: [6331](https://github.com/hackforla/website/issues/6331) at 2024-02-20 08:13 PM PST -eburdekin,2024-02-22T18:40:45Z,- eburdekin closed issue as completed: [6041](https://github.com/hackforla/website/issues/6041#event-11895194517) at 2024-02-22 10:40 AM PST -eburdekin,2024-02-22T18:40:48Z,- eburdekin reopened issue: [6041](https://github.com/hackforla/website/issues/6041#event-11895194517) at 2024-02-22 10:40 AM PST -eburdekin,2024-02-22T18:59:36Z,- eburdekin assigned to issue: [6107](https://github.com/hackforla/website/issues/6107) at 2024-02-22 10:59 AM PST -eburdekin,2024-02-22T19:00:29Z,- eburdekin commented on issue: [6107](https://github.com/hackforla/website/issues/6107#issuecomment-1960071082) at 2024-02-22 11:00 AM PST -eburdekin,2024-02-22T19:25:53Z,- eburdekin opened pull request: [6359](https://github.com/hackforla/website/pull/6359) at 2024-02-22 11:25 AM PST -eburdekin,2024-02-22T23:47:51Z,- eburdekin commented on issue: [6331](https://github.com/hackforla/website/issues/6331#issuecomment-1960524749) at 2024-02-22 03:47 PM PST -eburdekin,2024-02-23T06:30:58Z,- eburdekin pull request merged: [6359](https://github.com/hackforla/website/pull/6359#event-11899815872) at 2024-02-22 10:30 PM PST -eburdekin,2024-02-23T20:32:16Z,- eburdekin assigned to issue: [5838](https://github.com/hackforla/website/issues/5838) at 2024-02-23 12:32 PM PST -eburdekin,2024-02-23T20:33:54Z,- eburdekin commented on issue: [5838](https://github.com/hackforla/website/issues/5838#issuecomment-1961954675) at 2024-02-23 12:33 PM PST -eburdekin,2024-02-23T20:49:44Z,- eburdekin opened pull request: [6366](https://github.com/hackforla/website/pull/6366) at 2024-02-23 12:49 PM PST -eburdekin,2024-02-24T23:50:10Z,- eburdekin commented on issue: [6331](https://github.com/hackforla/website/issues/6331#issuecomment-1962759901) at 2024-02-24 03:50 PM PST -eburdekin,2024-02-26T03:52:10Z,- eburdekin pull request merged: [6366](https://github.com/hackforla/website/pull/6366#event-11915300666) at 2024-02-25 07:52 PM PST -eburdekin,2024-02-27T01:04:16Z,- eburdekin assigned to issue: [6372](https://github.com/hackforla/website/issues/6372) at 2024-02-26 05:04 PM PST -eburdekin,2024-02-27T01:06:03Z,- eburdekin commented on issue: [6372](https://github.com/hackforla/website/issues/6372#issuecomment-1965608812) at 2024-02-26 05:06 PM PST -eburdekin,2024-02-27T01:23:25Z,- eburdekin opened pull request: [6383](https://github.com/hackforla/website/pull/6383) at 2024-02-26 05:23 PM PST -eburdekin,2024-02-27T02:31:52Z,- eburdekin commented on pull request: [6381](https://github.com/hackforla/website/pull/6381#issuecomment-1965678346) at 2024-02-26 06:31 PM PST -eburdekin,2024-02-27T02:37:50Z,- eburdekin submitted pull request review: [6381](https://github.com/hackforla/website/pull/6381#pullrequestreview-1902409638) at 2024-02-26 06:37 PM PST -eburdekin,2024-02-27T03:11:03Z,- eburdekin closed issue as completed: [6331](https://github.com/hackforla/website/issues/6331#event-11930280460) at 2024-02-26 07:11 PM PST -eburdekin,2024-03-01T07:06:12Z,- eburdekin pull request merged: [6383](https://github.com/hackforla/website/pull/6383#event-11975447346) at 2024-02-29 11:06 PM PST -EchoProject,2023-01-30T17:55:39Z,- EchoProject opened issue: [3900](https://github.com/hackforla/website/issues/3900) at 2023-01-30 09:55 AM PST -EdASalazar,4336,SKILLS ISSUE -EdASalazar,2023-03-29T04:11:08Z,- EdASalazar assigned to issue: [3870](https://github.com/hackforla/website/issues/3870) at 2023-03-28 09:11 PM PDT -EdASalazar,2023-03-29T04:22:11Z,- EdASalazar opened issue: [4336](https://github.com/hackforla/website/issues/4336) at 2023-03-28 09:22 PM PDT -EdASalazar,2023-03-29T04:24:16Z,- EdASalazar unassigned from issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1487919594) at 2023-03-28 09:24 PM PDT -EdASalazar,2023-03-29T04:28:46Z,- EdASalazar assigned to issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1487925935) at 2023-03-28 09:28 PM PDT -EdASalazar,2023-04-11T01:19:42Z,- EdASalazar assigned to issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1484410244) at 2023-04-10 06:19 PM PDT -EdASalazar,2023-04-11T01:41:06Z,- EdASalazar commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1502565076) at 2023-04-10 06:41 PM PDT -EdASalazar,2023-04-11T02:07:30Z,- EdASalazar opened pull request: [4465](https://github.com/hackforla/website/pull/4465) at 2023-04-10 07:07 PM PDT -EdASalazar,2023-04-11T16:51:00Z,- EdASalazar commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1503767366) at 2023-04-11 09:51 AM PDT -EdASalazar,2023-04-11T18:54:38Z,- EdASalazar pull request merged: [4465](https://github.com/hackforla/website/pull/4465#event-8977183395) at 2023-04-11 11:54 AM PDT -EdASalazar,2023-04-12T03:10:23Z,- EdASalazar opened issue: [4486](https://github.com/hackforla/website/issues/4486) at 2023-04-11 08:10 PM PDT -EdASalazar,2023-04-13T05:24:45Z,- EdASalazar assigned to issue: [4393](https://github.com/hackforla/website/issues/4393) at 2023-04-12 10:24 PM PDT -EdASalazar,2023-04-13T05:25:46Z,- EdASalazar commented on issue: [4393](https://github.com/hackforla/website/issues/4393#issuecomment-1506365948) at 2023-04-12 10:25 PM PDT -EdASalazar,2023-04-13T14:05:21Z,- EdASalazar opened pull request: [4500](https://github.com/hackforla/website/pull/4500) at 2023-04-13 07:05 AM PDT -EdASalazar,2023-04-14T01:33:30Z,- EdASalazar pull request merged: [4500](https://github.com/hackforla/website/pull/4500#event-9002657356) at 2023-04-13 06:33 PM PDT -EdASalazar,2023-04-25T00:48:24Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1521009883) at 2023-04-24 05:48 PM PDT -EdASalazar,2023-05-03T00:39:30Z,- EdASalazar assigned to issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1525181643) at 2023-05-02 05:39 PM PDT -EdASalazar,2023-05-03T00:43:02Z,- EdASalazar commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1532318414) at 2023-05-02 05:43 PM PDT -EdASalazar,2023-05-04T00:31:28Z,- EdASalazar commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1533913727) at 2023-05-03 05:31 PM PDT -EdASalazar,2023-05-05T06:42:02Z,- EdASalazar commented on issue: [4574](https://github.com/hackforla/website/issues/4574#issuecomment-1535787623) at 2023-05-04 11:42 PM PDT -EdASalazar,2023-05-05T07:25:08Z,- EdASalazar opened pull request: [4603](https://github.com/hackforla/website/pull/4603) at 2023-05-05 12:25 AM PDT -EdASalazar,2023-05-08T23:41:04Z,- EdASalazar commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1539196424) at 2023-05-08 04:41 PM PDT -EdASalazar,2023-05-09T00:21:39Z,- EdASalazar unassigned from issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1539196424) at 2023-05-08 05:21 PM PDT -EdASalazar,2023-05-09T21:07:33Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1540892121) at 2023-05-09 02:07 PM PDT -EdASalazar,2023-05-10T02:57:26Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1541247590) at 2023-05-09 07:57 PM PDT -EdASalazar,2023-05-11T23:01:52Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1544802991) at 2023-05-11 04:01 PM PDT -EdASalazar,2023-05-13T07:35:41Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1546586634) at 2023-05-13 12:35 AM PDT -EdASalazar,2023-05-13T07:45:17Z,- EdASalazar commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1546588238) at 2023-05-13 12:45 AM PDT -EdASalazar,2023-05-14T02:04:47Z,- EdASalazar pull request merged: [4603](https://github.com/hackforla/website/pull/4603#event-9239444298) at 2023-05-13 07:04 PM PDT -EdASalazar,2023-05-14T19:45:13Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1546986512) at 2023-05-14 12:45 PM PDT -EdASalazar,2023-05-15T01:28:43Z,- EdASalazar assigned to issue: [4012](https://github.com/hackforla/website/issues/4012#event-9241187725) at 2023-05-14 06:28 PM PDT -EdASalazar,2023-05-24T02:34:12Z,- EdASalazar assigned to issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1548862779) at 2023-05-23 07:34 PM PDT -EdASalazar,2023-05-24T02:36:19Z,- EdASalazar commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1560376077) at 2023-05-23 07:36 PM PDT -EdASalazar,2023-05-27T07:23:50Z,- EdASalazar commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1565249991) at 2023-05-27 12:23 AM PDT -EdASalazar,2023-05-30T03:42:24Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1567716513) at 2023-05-29 08:42 PM PDT -EdASalazar,2023-05-30T04:33:46Z,- EdASalazar opened pull request: [4755](https://github.com/hackforla/website/pull/4755) at 2023-05-29 09:33 PM PDT -EdASalazar,2023-05-31T18:44:32Z,- EdASalazar submitted pull request review: [4750](https://github.com/hackforla/website/pull/4750#pullrequestreview-1453923568) at 2023-05-31 11:44 AM PDT -EdASalazar,2023-05-31T23:52:26Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1571105830) at 2023-05-31 04:52 PM PDT -EdASalazar,2023-06-05T04:04:09Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1576006459) at 2023-06-04 09:04 PM PDT -EdASalazar,2023-06-06T02:55:53Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1577820033) at 2023-06-05 07:55 PM PDT -EdASalazar,2023-06-06T18:42:23Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579275181) at 2023-06-06 11:42 AM PDT -EdASalazar,2023-06-06T23:03:17Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579574171) at 2023-06-06 04:03 PM PDT -EdASalazar,2023-06-06T23:11:39Z,- EdASalazar commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1579580221) at 2023-06-06 04:11 PM PDT -EdASalazar,2023-06-07T18:20:18Z,- EdASalazar assigned to issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1547131193) at 2023-06-07 11:20 AM PDT -EdASalazar,2023-06-07T18:22:25Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1581305348) at 2023-06-07 11:22 AM PDT -EdASalazar,2023-06-09T04:04:35Z,- EdASalazar pull request merged: [4755](https://github.com/hackforla/website/pull/4755#event-9480020370) at 2023-06-08 09:04 PM PDT -EdASalazar,2023-06-12T00:39:14Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1586401764) at 2023-06-11 05:39 PM PDT -EdASalazar,2023-06-12T17:58:51Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1587812718) at 2023-06-12 10:58 AM PDT -EdASalazar,2023-06-20T07:28:34Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1598260931) at 2023-06-20 12:28 AM PDT -EdASalazar,2023-06-21T17:10:39Z,- EdASalazar commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1601255747) at 2023-06-21 10:10 AM PDT -EdASalazar,2023-06-26T18:01:06Z,- EdASalazar unassigned from issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1601255747) at 2023-06-26 11:01 AM PDT -EdASalazar,2023-07-06T23:09:27Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1624417300) at 2023-07-06 04:09 PM PDT -EdASalazar,2023-07-28T23:07:19Z,- EdASalazar commented on issue: [4336](https://github.com/hackforla/website/issues/4336#issuecomment-1656426197) at 2023-07-28 04:07 PM PDT \ No newline at end of file diff --git a/github-actions/activity-trigger/member_activity_history_bot_4.csv b/github-actions/activity-trigger/member_activity_history_bot_4.csv deleted file mode 100644 index ccca03cde3..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_4.csv +++ /dev/null @@ -1,13810 +0,0 @@ -username,datetime,message -Eddysunday012,7836,SKILLS ISSUE -Eddysunday012,2025-01-21T03:50:28Z,- Eddysunday012 opened issue: [7836](https://github.com/hackforla/website/issues/7836) at 2025-01-20 07:50 PM PST -Eddysunday012,2025-01-21T03:51:21Z,- Eddysunday012 assigned to issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2603602057) at 2025-01-20 07:51 PM PST -Eddysunday012,2025-01-21T04:11:28Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2603618735) at 2025-01-20 08:11 PM PST -Eddysunday012,2025-01-22T00:09:15Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2605996771) at 2025-01-21 04:09 PM PST -Eddysunday012,2025-01-22T00:11:44Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2605999602) at 2025-01-21 04:11 PM PST -Eddysunday012,2025-01-22T19:57:22Z,- Eddysunday012 assigned to issue: [7754](https://github.com/hackforla/website/issues/7754) at 2025-01-22 11:57 AM PST -Eddysunday012,2025-01-22T19:59:16Z,- Eddysunday012 commented on issue: [7754](https://github.com/hackforla/website/issues/7754#issuecomment-2608148027) at 2025-01-22 11:59 AM PST -Eddysunday012,2025-01-22T20:00:16Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2608149804) at 2025-01-22 12:00 PM PST -Eddysunday012,2025-01-22T22:25:52Z,- Eddysunday012 opened pull request: [7845](https://github.com/hackforla/website/pull/7845) at 2025-01-22 02:25 PM PST -Eddysunday012,2025-01-22T22:35:19Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2608408198) at 2025-01-22 02:35 PM PST -Eddysunday012,2025-01-22T22:36:44Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2608410154) at 2025-01-22 02:36 PM PST -Eddysunday012,2025-01-28T02:19:26Z,- Eddysunday012 commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2617605034) at 2025-01-27 06:19 PM PST -Eddysunday012,2025-02-03T01:49:58Z,- Eddysunday012 pull request merged: [7845](https://github.com/hackforla/website/pull/7845#event-16154739456) at 2025-02-02 05:49 PM PST -Eddysunday012,2025-02-03T23:25:52Z,- Eddysunday012 assigned to issue: [7479](https://github.com/hackforla/website/issues/7479) at 2025-02-03 03:25 PM PST -Eddysunday012,2025-02-03T23:26:41Z,- Eddysunday012 commented on issue: [7479](https://github.com/hackforla/website/issues/7479#issuecomment-2632405743) at 2025-02-03 03:26 PM PST -Eddysunday012,2025-02-03T23:58:20Z,- Eddysunday012 opened pull request: [7880](https://github.com/hackforla/website/pull/7880) at 2025-02-03 03:58 PM PST -Eddysunday012,2025-02-04T00:22:59Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2632479271) at 2025-02-03 04:22 PM PST -Eddysunday012,2025-02-06T19:58:29Z,- Eddysunday012 commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2640868079) at 2025-02-06 11:58 AM PST -Eddysunday012,2025-02-09T21:06:07Z,- Eddysunday012 pull request merged: [7880](https://github.com/hackforla/website/pull/7880#event-16239359374) at 2025-02-09 01:06 PM PST -Eddysunday012,2025-02-12T19:47:41Z,- Eddysunday012 commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2654695278) at 2025-02-12 11:47 AM PST -edeneault,2021-10-20T12:50:26Z,- edeneault assigned to issue: [2347](https://github.com/hackforla/website/issues/2347#issuecomment-939056090) at 2021-10-20 05:50 AM PDT -edeneault,2021-10-20T15:01:51Z,- edeneault opened pull request: [2381](https://github.com/hackforla/website/pull/2381) at 2021-10-20 08:01 AM PDT -edeneault,2021-10-22T22:17:00Z,- edeneault pull request merged: [2381](https://github.com/hackforla/website/pull/2381#event-5507350843) at 2021-10-22 03:17 PM PDT -edeneault,2021-10-22T23:45:55Z,- edeneault commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-950016731) at 2021-10-22 04:45 PM PDT -edeneault,2021-10-23T01:16:39Z,- edeneault commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-950034179) at 2021-10-22 06:16 PM PDT -edeneault,2021-10-23T04:01:43Z,- edeneault pull request merged: [2381](https://github.com/hackforla/website/pull/2381#event-5507790617) at 2021-10-22 09:01 PM PDT -edeneault,2021-10-24T13:22:28Z,- edeneault assigned to issue: [2048](https://github.com/hackforla/website/issues/2048) at 2021-10-24 06:22 AM PDT -edeneault,2021-10-24T14:42:27Z,- edeneault opened pull request: [2394](https://github.com/hackforla/website/pull/2394) at 2021-10-24 07:42 AM PDT -edeneault,2021-10-26T23:15:09Z,- edeneault commented on pull request: [2394](https://github.com/hackforla/website/pull/2394#issuecomment-952400448) at 2021-10-26 04:15 PM PDT -edeneault,2021-10-27T02:33:45Z,- edeneault pull request merged: [2394](https://github.com/hackforla/website/pull/2394#event-5524395736) at 2021-10-26 07:33 PM PDT -edeneault,2021-10-28T11:33:04Z,- edeneault assigned to issue: [2091](https://github.com/hackforla/website/issues/2091) at 2021-10-28 04:33 AM PDT -edeneault,2021-10-30T13:50:31Z,- edeneault commented on issue: [2091](https://github.com/hackforla/website/issues/2091#issuecomment-955237378) at 2021-10-30 06:50 AM PDT -edeneault,2021-11-01T16:40:21Z,- edeneault commented on issue: [1743](https://github.com/hackforla/website/issues/1743#issuecomment-956393424) at 2021-11-01 09:40 AM PDT -edeneault,2021-11-01T21:03:54Z,- edeneault opened pull request: [2420](https://github.com/hackforla/website/pull/2420) at 2021-11-01 02:03 PM PDT -edeneault,2021-11-04T13:43:06Z,- edeneault submitted pull request review: [2432](https://github.com/hackforla/website/pull/2432#pullrequestreview-797755720) at 2021-11-04 06:43 AM PDT -edeneault,2021-11-04T15:13:25Z,- edeneault assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-950470116) at 2021-11-04 08:13 AM PDT -edeneault,2021-11-04T16:25:27Z,- edeneault pull request merged: [2420](https://github.com/hackforla/website/pull/2420#event-5569481903) at 2021-11-04 09:25 AM PDT -edeneault,2021-11-05T21:54:05Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-962244321) at 2021-11-05 02:54 PM PDT -edeneault,2021-11-09T22:40:49Z,- edeneault submitted pull request review: [2452](https://github.com/hackforla/website/pull/2452#pullrequestreview-801958983) at 2021-11-09 02:40 PM PST -edeneault,2021-11-10T20:42:20Z,- edeneault submitted pull request review: [2469](https://github.com/hackforla/website/pull/2469#pullrequestreview-803123832) at 2021-11-10 12:42 PM PST -edeneault,2021-11-10T21:24:47Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-965757517) at 2021-11-10 01:24 PM PST -edeneault,2021-11-16T23:49:02Z,- edeneault opened pull request: [2494](https://github.com/hackforla/website/pull/2494) at 2021-11-16 03:49 PM PST -edeneault,2021-11-22T02:59:32Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651094776) at 2021-11-21 06:59 PM PST -edeneault,2021-11-22T06:17:01Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-975164735) at 2021-11-21 10:17 PM PST -edeneault,2021-11-22T06:17:01Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651619244) at 2021-11-21 10:17 PM PST -edeneault,2021-11-22T06:17:05Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651619244) at 2021-11-21 10:17 PM PST -edeneault,2021-11-22T06:23:12Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651640231) at 2021-11-21 10:23 PM PST -edeneault,2021-11-22T06:23:16Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651640231) at 2021-11-21 10:23 PM PST -edeneault,2021-11-22T06:46:30Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651727033) at 2021-11-21 10:46 PM PST -edeneault,2021-11-22T06:46:32Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651727033) at 2021-11-21 10:46 PM PST -edeneault,2021-11-22T06:50:29Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651739327) at 2021-11-21 10:50 PM PST -edeneault,2021-11-22T06:50:31Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651739327) at 2021-11-21 10:50 PM PST -edeneault,2021-11-22T07:04:24Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651787847) at 2021-11-21 11:04 PM PST -edeneault,2021-11-22T07:04:26Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651787847) at 2021-11-21 11:04 PM PST -edeneault,2021-11-22T07:06:54Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651799208) at 2021-11-21 11:06 PM PST -edeneault,2021-11-22T07:06:56Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651799208) at 2021-11-21 11:06 PM PST -edeneault,2021-11-22T07:08:33Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651806635) at 2021-11-21 11:08 PM PST -edeneault,2021-11-22T07:08:37Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651806635) at 2021-11-21 11:08 PM PST -edeneault,2021-11-22T07:14:31Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5651831723) at 2021-11-21 11:14 PM PST -edeneault,2021-11-22T07:14:34Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5651831723) at 2021-11-21 11:14 PM PST -edeneault,2021-11-22T07:31:02Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-975203533) at 2021-11-21 11:31 PM PST -edeneault,2021-11-24T17:51:07Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668584136) at 2021-11-24 09:51 AM PST -edeneault,2021-11-24T17:51:10Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668584136) at 2021-11-24 09:51 AM PST -edeneault,2021-11-24T17:56:14Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-978103530) at 2021-11-24 09:56 AM PST -edeneault,2021-11-24T18:02:57Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668640039) at 2021-11-24 10:02 AM PST -edeneault,2021-11-24T18:03:00Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668640039) at 2021-11-24 10:03 AM PST -edeneault,2021-11-24T18:06:54Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668658921) at 2021-11-24 10:06 AM PST -edeneault,2021-11-24T18:06:57Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668658921) at 2021-11-24 10:06 AM PST -edeneault,2021-11-24T18:15:54Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668699215) at 2021-11-24 10:15 AM PST -edeneault,2021-11-24T18:15:56Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668699215) at 2021-11-24 10:15 AM PST -edeneault,2021-11-24T18:21:57Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668726946) at 2021-11-24 10:21 AM PST -edeneault,2021-11-24T18:21:59Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668726946) at 2021-11-24 10:21 AM PST -edeneault,2021-11-24T18:23:55Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668735948) at 2021-11-24 10:23 AM PST -edeneault,2021-11-24T18:23:57Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668735948) at 2021-11-24 10:23 AM PST -edeneault,2021-11-24T18:25:48Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668744689) at 2021-11-24 10:25 AM PST -edeneault,2021-11-24T18:25:51Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668744689) at 2021-11-24 10:25 AM PST -edeneault,2021-11-24T18:27:34Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668752122) at 2021-11-24 10:27 AM PST -edeneault,2021-11-24T18:27:36Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668752122) at 2021-11-24 10:27 AM PST -edeneault,2021-11-24T18:49:51Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5668845232) at 2021-11-24 10:49 AM PST -edeneault,2021-11-24T18:49:54Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5668845232) at 2021-11-24 10:49 AM PST -edeneault,2021-11-29T18:57:01Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-981921457) at 2021-11-29 10:57 AM PST -edeneault,2021-11-29T18:57:48Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5687036542) at 2021-11-29 10:57 AM PST -edeneault,2021-11-29T18:57:50Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5687036542) at 2021-11-29 10:57 AM PST -edeneault,2021-11-29T18:59:55Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5687046693) at 2021-11-29 10:59 AM PST -edeneault,2021-11-29T18:59:57Z,- edeneault reopened pull request: [2494](https://github.com/hackforla/website/pull/2494#event-5687046693) at 2021-11-29 10:59 AM PST -edeneault,2021-12-04T14:25:58Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-986036340) at 2021-12-04 06:25 AM PST -edeneault,2021-12-13T01:07:27Z,- edeneault pull request closed w/o merging: [2494](https://github.com/hackforla/website/pull/2494#event-5753611496) at 2021-12-12 05:07 PM PST -edeneault,2021-12-13T13:25:13Z,- edeneault commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-992474121) at 2021-12-13 05:25 AM PST -edeneault,2021-12-13T13:28:16Z,- edeneault commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-992476795) at 2021-12-13 05:28 AM PST -edeneault,2021-12-30T09:21:45Z,- edeneault unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1002941219) at 2021-12-30 01:21 AM PST -edwarddim,8137,SKILLS ISSUE -edwarddim,2025-05-14T03:10:55Z,- edwarddim opened issue: [8137](https://github.com/hackforla/website/issues/8137) at 2025-05-13 08:10 PM PDT -edwarddim,2025-05-14T03:10:55Z,- edwarddim assigned to issue: [8137](https://github.com/hackforla/website/issues/8137) at 2025-05-13 08:10 PM PDT -edwarddim,2025-06-26T23:37:21Z,- edwarddim commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-3010636739) at 2025-06-26 04:37 PM PDT -edwarddim,2025-06-26T23:39:06Z,- edwarddim commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-3010644168) at 2025-06-26 04:39 PM PDT -edwarddim,2025-06-26T23:43:57Z,- edwarddim assigned to issue: [8015](https://github.com/hackforla/website/issues/8015) at 2025-06-26 04:43 PM PDT -edwarddim,2025-06-27T00:05:09Z,- edwarddim opened pull request: [8231](https://github.com/hackforla/website/pull/8231) at 2025-06-26 05:05 PM PDT -edwarddim,2025-06-27T23:50:02Z,- edwarddim commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014665803) at 2025-06-27 04:50 PM PDT -edwarddim,2025-06-28T02:45:57Z,- edwarddim commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014860495) at 2025-06-27 07:45 PM PDT -edwarddim,2025-07-06T10:46:17Z,- edwarddim pull request merged: [8231](https://github.com/hackforla/website/pull/8231#event-18490987526) at 2025-07-06 03:46 AM PDT -edwarddim,2025-08-01T23:04:33Z,- edwarddim assigned to issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-3014991321) at 2025-08-01 04:04 PM PDT -edwarddim,2025-08-02T04:05:24Z,- edwarddim opened pull request: [8253](https://github.com/hackforla/website/pull/8253) at 2025-08-01 09:05 PM PDT -edwarddim,2025-08-05T06:03:22Z,- edwarddim commented on pull request: [8253](https://github.com/hackforla/website/pull/8253#issuecomment-3153496039) at 2025-08-04 11:03 PM PDT -edwardsarah,2023-02-02T19:27:37Z,- edwardsarah opened issue: [3925](https://github.com/hackforla/website/issues/3925) at 2023-02-02 11:27 AM PST -edwardsarah,2023-04-17T06:37:29Z,- edwardsarah opened issue: [4529](https://github.com/hackforla/website/issues/4529) at 2023-04-16 11:37 PM PDT -edwardsarah,2023-09-01T12:53:20Z,- edwardsarah opened issue: [5407](https://github.com/hackforla/website/issues/5407) at 2023-09-01 05:53 AM PDT -edwardsarah,2023-11-01T09:15:30Z,- edwardsarah commented on issue: [5407](https://github.com/hackforla/website/issues/5407#issuecomment-1788642960) at 2023-11-01 02:15 AM PDT -edwardsarah,2024-02-23T13:58:34Z,- edwardsarah opened issue: [6364](https://github.com/hackforla/website/issues/6364) at 2024-02-23 05:58 AM PST -edwardsarah,2024-03-15T15:35:27Z,- edwardsarah opened issue: [6466](https://github.com/hackforla/website/issues/6466) at 2024-03-15 08:35 AM PDT -edwardsarah,2024-08-09T15:01:46Z,- edwardsarah opened issue: [7259](https://github.com/hackforla/website/issues/7259) at 2024-08-09 08:01 AM PDT -efranzener,5226,SKILLS ISSUE -efranzener,2023-08-15T03:43:11Z,- efranzener opened issue: [5226](https://github.com/hackforla/website/issues/5226) at 2023-08-14 08:43 PM PDT -efranzener,2023-08-15T03:43:36Z,- efranzener assigned to issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1678385410) at 2023-08-14 08:43 PM PDT -efranzener,2023-08-27T21:35:08Z,- efranzener assigned to issue: [5286](https://github.com/hackforla/website/issues/5286#issuecomment-1689197581) at 2023-08-27 02:35 PM PDT -efranzener,2023-08-28T16:26:46Z,- efranzener commented on issue: [5286](https://github.com/hackforla/website/issues/5286#issuecomment-1695986341) at 2023-08-28 09:26 AM PDT -efranzener,2023-08-28T16:33:29Z,- efranzener commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1695999055) at 2023-08-28 09:33 AM PDT -efranzener,2023-09-04T01:45:41Z,- efranzener opened pull request: [5434](https://github.com/hackforla/website/pull/5434) at 2023-09-03 06:45 PM PDT -efranzener,2023-09-09T06:46:34Z,- efranzener commented on pull request: [5434](https://github.com/hackforla/website/pull/5434#issuecomment-1712434694) at 2023-09-08 11:46 PM PDT -efranzener,2023-09-13T03:58:36Z,- efranzener commented on pull request: [5434](https://github.com/hackforla/website/pull/5434#issuecomment-1716904484) at 2023-09-12 08:58 PM PDT -efranzener,2023-09-13T05:45:39Z,- efranzener assigned to issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1711075060) at 2023-09-12 10:45 PM PDT -efranzener,2023-09-13T05:56:45Z,- efranzener commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1716993152) at 2023-09-12 10:56 PM PDT -efranzener,2023-09-19T21:12:01Z,- efranzener pull request merged: [5434](https://github.com/hackforla/website/pull/5434#event-10415367077) at 2023-09-19 02:12 PM PDT -efranzener,2023-09-20T01:53:13Z,- efranzener opened pull request: [5558](https://github.com/hackforla/website/pull/5558) at 2023-09-19 06:53 PM PDT -efranzener,2023-09-24T15:48:16Z,- efranzener pull request merged: [5558](https://github.com/hackforla/website/pull/5558#event-10455445731) at 2023-09-24 08:48 AM PDT -efranzener,2023-09-28T13:26:11Z,- efranzener assigned to issue: [5596](https://github.com/hackforla/website/issues/5596) at 2023-09-28 06:26 AM PDT -efranzener,2023-09-28T13:34:45Z,- efranzener commented on issue: [5596](https://github.com/hackforla/website/issues/5596#issuecomment-1739199234) at 2023-09-28 06:34 AM PDT -efranzener,2023-10-07T04:53:34Z,- efranzener commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1751600485) at 2023-10-06 09:53 PM PDT -efrenmarin45,2020-07-05T19:08:45Z,- efrenmarin45 assigned to issue: [593](https://github.com/hackforla/website/issues/593) at 2020-07-05 12:08 PM PDT -efrenmarin45,2020-07-06T02:40:28Z,- efrenmarin45 opened pull request: [596](https://github.com/hackforla/website/pull/596) at 2020-07-05 07:40 PM PDT -efrenmarin45,2020-07-06T02:42:11Z,- efrenmarin45 commented on issue: [593](https://github.com/hackforla/website/issues/593#issuecomment-653985664) at 2020-07-05 07:42 PM PDT -efrenmarin45,2020-07-07T22:09:22Z,- efrenmarin45 pull request merged: [596](https://github.com/hackforla/website/pull/596#event-3522504768) at 2020-07-07 03:09 PM PDT -efrenmarin45,2020-07-19T17:59:27Z,- efrenmarin45 assigned to issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-650898496) at 2020-07-19 10:59 AM PDT -efrenmarin45,2020-07-22T10:58:00Z,- efrenmarin45 opened pull request: [627](https://github.com/hackforla/website/pull/627) at 2020-07-22 03:58 AM PDT -efrenmarin45,2020-07-22T11:00:55Z,- efrenmarin45 pull request closed w/o merging: [627](https://github.com/hackforla/website/pull/627#event-3575244963) at 2020-07-22 04:00 AM PDT -efrenmarin45,2020-07-22T11:15:47Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-662395406) at 2020-07-22 04:15 AM PDT -efrenmarin45,2020-07-26T08:15:59Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-663957140) at 2020-07-26 01:15 AM PDT -efrenmarin45,2020-07-26T08:29:33Z,- efrenmarin45 opened pull request: [633](https://github.com/hackforla/website/pull/633) at 2020-07-26 01:29 AM PDT -efrenmarin45,2020-07-26T17:52:38Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-664020062) at 2020-07-26 10:52 AM PDT -efrenmarin45,2020-07-26T17:55:22Z,- efrenmarin45 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-664020328) at 2020-07-26 10:55 AM PDT -efrenmarin45,2020-07-26T17:55:49Z,- efrenmarin45 pull request closed w/o merging: [633](https://github.com/hackforla/website/pull/633#event-3587279712) at 2020-07-26 10:55 AM PDT -efrenmarin45,2020-07-26T18:04:39Z,- efrenmarin45 opened pull request: [640](https://github.com/hackforla/website/pull/640) at 2020-07-26 11:04 AM PDT -efrenmarin45,2020-07-28T02:43:50Z,- efrenmarin45 opened issue: [651](https://github.com/hackforla/website/issues/651) at 2020-07-27 07:43 PM PDT -efrenmarin45,2020-07-28T02:56:46Z,- efrenmarin45 assigned to issue: [651](https://github.com/hackforla/website/issues/651) at 2020-07-27 07:56 PM PDT -efrenmarin45,2020-07-29T02:15:28Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-665390317) at 2020-07-28 07:15 PM PDT -efrenmarin45,2020-07-29T02:19:44Z,- efrenmarin45 opened pull request: [654](https://github.com/hackforla/website/pull/654) at 2020-07-28 07:19 PM PDT -efrenmarin45,2020-07-29T02:45:12Z,- efrenmarin45 pull request closed w/o merging: [654](https://github.com/hackforla/website/pull/654#event-3597021094) at 2020-07-28 07:45 PM PDT -efrenmarin45,2020-07-29T02:47:17Z,- efrenmarin45 opened pull request: [655](https://github.com/hackforla/website/pull/655) at 2020-07-28 07:47 PM PDT -efrenmarin45,2020-07-29T03:04:34Z,- efrenmarin45 pull request merged: [640](https://github.com/hackforla/website/pull/640#event-3597056148) at 2020-07-28 08:04 PM PDT -efrenmarin45,2020-07-29T03:07:46Z,- efrenmarin45 pull request merged: [655](https://github.com/hackforla/website/pull/655#event-3597061449) at 2020-07-28 08:07 PM PDT -efrenmarin45,2020-08-06T23:04:54Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-670233304) at 2020-08-06 04:04 PM PDT -efrenmarin45,2020-08-06T23:06:14Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-670233688) at 2020-08-06 04:06 PM PDT -efrenmarin45,2020-08-06T23:10:12Z,- efrenmarin45 opened pull request: [673](https://github.com/hackforla/website/pull/673) at 2020-08-06 04:10 PM PDT -efrenmarin45,2020-08-13T23:06:45Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-673752550) at 2020-08-13 04:06 PM PDT -efrenmarin45,2020-08-16T12:54:05Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-674523170) at 2020-08-16 05:54 AM PDT -efrenmarin45,2020-08-16T13:00:05Z,- efrenmarin45 commented on pull request: [673](https://github.com/hackforla/website/pull/673#issuecomment-674523794) at 2020-08-16 06:00 AM PDT -efrenmarin45,2020-08-16T18:23:23Z,- efrenmarin45 assigned to issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-674478603) at 2020-08-16 11:23 AM PDT -efrenmarin45,2020-08-18T03:41:24Z,- efrenmarin45 closed issue by PR 673: [651](https://github.com/hackforla/website/issues/651#event-3664412839) at 2020-08-17 08:41 PM PDT -efrenmarin45,2020-08-18T03:41:24Z,- efrenmarin45 pull request merged: [673](https://github.com/hackforla/website/pull/673#event-3664412842) at 2020-08-17 08:41 PM PDT -efrenmarin45,2020-08-18T03:52:12Z,- efrenmarin45 opened pull request: [687](https://github.com/hackforla/website/pull/687) at 2020-08-17 08:52 PM PDT -efrenmarin45,2020-08-24T21:41:46Z,- efrenmarin45 pull request closed w/o merging: [687](https://github.com/hackforla/website/pull/687#event-3687338133) at 2020-08-24 02:41 PM PDT -efrenmarin45,2020-08-29T06:14:59Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683244068) at 2020-08-28 11:14 PM PDT -efrenmarin45,2020-08-29T06:16:12Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683244196) at 2020-08-28 11:16 PM PDT -efrenmarin45,2020-08-29T06:23:08Z,- efrenmarin45 opened pull request: [709](https://github.com/hackforla/website/pull/709) at 2020-08-28 11:23 PM PDT -efrenmarin45,2020-08-29T06:38:54Z,- efrenmarin45 pull request closed w/o merging: [709](https://github.com/hackforla/website/pull/709#event-3706242682) at 2020-08-28 11:38 PM PDT -efrenmarin45,2020-08-29T06:42:41Z,- efrenmarin45 opened pull request: [710](https://github.com/hackforla/website/pull/710) at 2020-08-28 11:42 PM PDT -efrenmarin45,2020-08-29T06:52:59Z,- efrenmarin45 pull request closed w/o merging: [710](https://github.com/hackforla/website/pull/710#event-3706250213) at 2020-08-28 11:52 PM PDT -efrenmarin45,2020-08-29T06:54:55Z,- efrenmarin45 opened pull request: [711](https://github.com/hackforla/website/pull/711) at 2020-08-28 11:54 PM PDT -efrenmarin45,2020-08-29T08:09:55Z,- efrenmarin45 commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683255014) at 2020-08-29 01:09 AM PDT -efrenmarin45,2020-08-30T09:56:21Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683400395) at 2020-08-30 02:56 AM PDT -efrenmarin45,2020-08-30T12:38:53Z,- efrenmarin45 commented on pull request: [711](https://github.com/hackforla/website/pull/711#issuecomment-683415690) at 2020-08-30 05:38 AM PDT -efrenmarin45,2020-08-30T12:38:53Z,- efrenmarin45 pull request closed w/o merging: [711](https://github.com/hackforla/website/pull/711#event-3707275286) at 2020-08-30 05:38 AM PDT -efrenmarin45,2020-08-30T12:40:14Z,- efrenmarin45 opened pull request: [712](https://github.com/hackforla/website/pull/712) at 2020-08-30 05:40 AM PDT -efrenmarin45,2020-08-30T12:43:44Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683416183) at 2020-08-30 05:43 AM PDT -efrenmarin45,2020-08-30T12:45:44Z,- efrenmarin45 commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-683416398) at 2020-08-30 05:45 AM PDT -efrenmarin45,2020-09-06T07:45:59Z,- efrenmarin45 commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-687718419) at 2020-09-06 12:45 AM PDT -efrenmarin45,2020-09-11T03:39:50Z,- efrenmarin45 commented on pull request: [712](https://github.com/hackforla/website/pull/712#issuecomment-690854661) at 2020-09-10 08:39 PM PDT -efrenmarin45,2020-09-11T04:26:08Z,- efrenmarin45 opened issue: [725](https://github.com/hackforla/website/issues/725) at 2020-09-10 09:26 PM PDT -efrenmarin45,2020-09-11T20:26:41Z,- efrenmarin45 pull request merged: [712](https://github.com/hackforla/website/pull/712#event-3757915140) at 2020-09-11 01:26 PM PDT -efrenmarin45,2020-09-21T17:47:54Z,- efrenmarin45 commented on pull request: [742](https://github.com/hackforla/website/pull/742#issuecomment-696268906) at 2020-09-21 10:47 AM PDT -efrenmarin45,2020-09-21T17:48:54Z,- efrenmarin45 submitted pull request review: [742](https://github.com/hackforla/website/pull/742#pullrequestreview-492847128) at 2020-09-21 10:48 AM PDT -efrenmarin45,2020-12-06T07:12:19Z,- efrenmarin45 opened issue: [827](https://github.com/hackforla/website/issues/827) at 2020-12-05 11:12 PM PST -efrenmarin45,2020-12-08T03:52:31Z,- efrenmarin45 submitted pull request review: [837](https://github.com/hackforla/website/pull/837#pullrequestreview-546725771) at 2020-12-07 07:52 PM PST -efrenmarin45,2021-03-08T20:59:53Z,- efrenmarin45 commented on issue: [1167](https://github.com/hackforla/website/issues/1167#issuecomment-793073205) at 2021-03-08 12:59 PM PST -efrenmarin45,2021-03-08T20:59:58Z,- efrenmarin45 assigned to issue: [1167](https://github.com/hackforla/website/issues/1167#issuecomment-793073205) at 2021-03-08 12:59 PM PST -efrenmarin45,2021-03-08T21:05:23Z,- efrenmarin45 opened pull request: [1173](https://github.com/hackforla/website/pull/1173) at 2021-03-08 01:05 PM PST -efrenmarin45,2021-03-08T22:38:29Z,- efrenmarin45 pull request closed w/o merging: [1173](https://github.com/hackforla/website/pull/1173#event-4423966873) at 2021-03-08 02:38 PM PST -efrenmarin45,2021-03-08T23:34:20Z,- efrenmarin45 opened pull request: [1176](https://github.com/hackforla/website/pull/1176) at 2021-03-08 03:34 PM PST -efrenmarin45,2021-03-09T23:10:45Z,- efrenmarin45 commented on pull request: [1176](https://github.com/hackforla/website/pull/1176#issuecomment-794584181) at 2021-03-09 03:10 PM PST -efrenmarin45,2021-03-10T01:11:40Z,- efrenmarin45 pull request merged: [1176](https://github.com/hackforla/website/pull/1176#event-4432555859) at 2021-03-09 05:11 PM PST -Ekuo79,2024-02-12T00:44:05Z,- Ekuo79 opened pull request: [6280](https://github.com/hackforla/website/pull/6280) at 2024-02-11 04:44 PM PST -Ekuo79,2024-02-12T05:00:06Z,- Ekuo79 pull request closed w/o merging: [6280](https://github.com/hackforla/website/pull/6280#event-11769950017) at 2024-02-11 09:00 PM PST -Eleftherios01,2024-09-22T18:38:46Z,- Eleftherios01 opened issue: [7506](https://github.com/hackforla/website/issues/7506) at 2024-09-22 11:38 AM PDT -Eleftherios01,2024-09-22T18:38:50Z,- Eleftherios01 assigned to issue: [7506](https://github.com/hackforla/website/issues/7506) at 2024-09-22 11:38 AM PDT -Eleftherios01,2024-10-06T17:17:26Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2395514084) at 2024-10-06 10:17 AM PDT -Eleftherios01,2024-11-10T15:40:43Z,- Eleftherios01 commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-2466781931) at 2024-11-10 07:40 AM PST -Eleftherios01,2024-11-10T17:10:28Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2466812656) at 2024-11-10 09:10 AM PST -Eleftherios01,2024-11-17T10:43:50Z,- Eleftherios01 opened issue: [7725](https://github.com/hackforla/website/issues/7725) at 2024-11-17 02:43 AM PST -Eleftherios01,2024-11-17T10:43:51Z,- Eleftherios01 assigned to issue: [7725](https://github.com/hackforla/website/issues/7725) at 2024-11-17 02:43 AM PST -Eleftherios01,2024-11-24T17:28:02Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2496123255) at 2024-11-24 09:28 AM PST -Eleftherios01,2025-01-12T09:37:24Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2585660800) at 2025-01-12 01:37 AM PST -Eleftherios01,2025-01-19T18:42:01Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2600976125) at 2025-01-19 10:42 AM PST -Eleftherios01,2025-01-26T10:19:23Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2614312762) at 2025-01-26 02:19 AM PST -Eleftherios01,2025-02-02T16:51:37Z,- Eleftherios01 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2629469838) at 2025-02-02 08:51 AM PST -Eleftherios01,2025-02-02T16:52:59Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2629470277) at 2025-02-02 08:52 AM PST -Eleftherios01,2025-02-23T13:34:00Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2676865457) at 2025-02-23 05:34 AM PST -Eleftherios01,2025-03-09T16:31:06Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2708948369) at 2025-03-09 09:31 AM PDT -Eleftherios01,2025-03-30T12:56:37Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764551715) at 2025-03-30 05:56 AM PDT -Eleftherios01,2025-03-30T13:41:33Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764569216) at 2025-03-30 06:41 AM PDT -Eleftherios01,2025-04-13T10:15:36Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2799892538) at 2025-04-13 03:15 AM PDT -Eleftherios01,2025-05-02T20:47:32Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2848093475) at 2025-05-02 01:47 PM PDT -Eleftherios01,2025-05-02T21:01:35Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2848114090) at 2025-05-02 02:01 PM PDT -Eleftherios01,2025-05-04T16:22:01Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2849299267) at 2025-05-04 09:22 AM PDT -Eleftherios01,2025-06-08T08:58:58Z,- Eleftherios01 commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2953782663) at 2025-06-08 01:58 AM PDT -Eleftherios06,2024-06-26T19:26:33Z,- Eleftherios06 assigned to issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2184186285) at 2024-06-26 12:26 PM PDT -elenanewbrough,2020-12-08T21:53:55Z,- elenanewbrough assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:53 PM PST -elenanewbrough,2020-12-08T21:54:12Z,- elenanewbrough unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -elenanewbrough,2020-12-08T21:54:35Z,- elenanewbrough assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -elenanewbrough,2021-01-10T20:38:35Z,- elenanewbrough unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -elisetvy,6601,SKILLS ISSUE -elisetvy,2024-04-09T02:52:19Z,- elisetvy opened issue: [6601](https://github.com/hackforla/website/issues/6601) at 2024-04-08 07:52 PM PDT -elisetvy,2024-04-09T02:52:47Z,- elisetvy assigned to issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2044061380) at 2024-04-08 07:52 PM PDT -elisetvy,2024-04-09T20:21:09Z,- elisetvy assigned to issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2035422466) at 2024-04-09 01:21 PM PDT -elisetvy,2024-04-09T21:39:22Z,- elisetvy commented on issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2046093211) at 2024-04-09 02:39 PM PDT -elisetvy,2024-04-10T22:56:55Z,- elisetvy opened pull request: [6617](https://github.com/hackforla/website/pull/6617) at 2024-04-10 03:56 PM PDT -elisetvy,2024-04-10T23:00:40Z,- elisetvy commented on issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2048570512) at 2024-04-10 04:00 PM PDT -elisetvy,2024-04-12T21:09:41Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2052536289) at 2024-04-12 02:09 PM PDT -elisetvy,2024-04-13T14:54:16Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053669010) at 2024-04-13 07:54 AM PDT -elisetvy,2024-04-17T17:04:29Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2061783126) at 2024-04-17 10:04 AM PDT -elisetvy,2024-04-17T17:14:18Z,- elisetvy commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2061798782) at 2024-04-17 10:14 AM PDT -elisetvy,2024-04-17T17:23:03Z,- elisetvy commented on pull request: [6656](https://github.com/hackforla/website/pull/6656#issuecomment-2061812692) at 2024-04-17 10:23 AM PDT -elisetvy,2024-04-17T17:41:23Z,- elisetvy submitted pull request review: [6656](https://github.com/hackforla/website/pull/6656#pullrequestreview-2006715314) at 2024-04-17 10:41 AM PDT -elisetvy,2024-04-18T19:54:19Z,- elisetvy submitted pull request review: [6681](https://github.com/hackforla/website/pull/6681#pullrequestreview-2009763743) at 2024-04-18 12:54 PM PDT -elisetvy,2024-04-18T21:54:22Z,- elisetvy pull request merged: [6617](https://github.com/hackforla/website/pull/6617#event-12529601574) at 2024-04-18 02:54 PM PDT -elisetvy,2024-04-18T22:51:58Z,- elisetvy assigned to issue: [6238](https://github.com/hackforla/website/issues/6238) at 2024-04-18 03:51 PM PDT -elisetvy,2024-04-18T22:55:54Z,- elisetvy commented on issue: [6238](https://github.com/hackforla/website/issues/6238#issuecomment-2065454017) at 2024-04-18 03:55 PM PDT -elisetvy,2024-04-22T20:01:42Z,- elisetvy commented on issue: [6601](https://github.com/hackforla/website/issues/6601#issuecomment-2070853892) at 2024-04-22 01:01 PM PDT -elisetvy,2024-04-24T16:20:33Z,- elisetvy opened pull request: [6744](https://github.com/hackforla/website/pull/6744) at 2024-04-24 09:20 AM PDT -elisetvy,2024-04-24T17:01:22Z,- elisetvy closed issue as completed: [6601](https://github.com/hackforla/website/issues/6601#event-12595322683) at 2024-04-24 10:01 AM PDT -elisetvy,2024-04-28T19:10:23Z,- elisetvy commented on pull request: [6744](https://github.com/hackforla/website/pull/6744#issuecomment-2081606316) at 2024-04-28 12:10 PM PDT -elisetvy,2024-04-28T19:29:02Z,- elisetvy pull request merged: [6744](https://github.com/hackforla/website/pull/6744#event-12635653121) at 2024-04-28 12:29 PM PDT -elisetvy,2024-04-29T20:43:42Z,- elisetvy assigned to issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059537181) at 2024-04-29 01:43 PM PDT -elisetvy,2024-04-29T20:56:40Z,- elisetvy submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2029621582) at 2024-04-29 01:56 PM PDT -elisetvy,2024-04-29T21:00:22Z,- elisetvy commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2083653651) at 2024-04-29 02:00 PM PDT -elisetvy,2024-05-01T19:18:56Z,- elisetvy opened pull request: [6802](https://github.com/hackforla/website/pull/6802) at 2024-05-01 12:18 PM PDT -elisetvy,2024-05-02T00:02:20Z,- elisetvy commented on pull request: [6802](https://github.com/hackforla/website/pull/6802#issuecomment-2089312695) at 2024-05-01 05:02 PM PDT -elisetvy,2024-05-02T00:51:49Z,- elisetvy pull request merged: [6802](https://github.com/hackforla/website/pull/6802#event-12676375066) at 2024-05-01 05:51 PM PDT -elisetvy,2024-05-02T01:22:26Z,- elisetvy assigned to issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-1928584033) at 2024-05-01 06:22 PM PDT -elisetvy,2024-05-02T01:23:33Z,- elisetvy commented on issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-2089375732) at 2024-05-01 06:23 PM PDT -elisetvy,2024-05-02T01:30:55Z,- elisetvy submitted pull request review: [6781](https://github.com/hackforla/website/pull/6781#pullrequestreview-2034681384) at 2024-05-01 06:30 PM PDT -elisetvy,2024-05-08T16:20:14Z,- elisetvy opened pull request: [6839](https://github.com/hackforla/website/pull/6839) at 2024-05-08 09:20 AM PDT -elisetvy,2024-05-09T19:44:51Z,- elisetvy pull request merged: [6839](https://github.com/hackforla/website/pull/6839#event-12761393321) at 2024-05-09 12:44 PM PDT -elisetvy,2024-06-05T18:56:01Z,- elisetvy assigned to issue: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-05 11:56 AM PDT -elisetvy,2024-06-05T19:25:33Z,- elisetvy commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-2150798160) at 2024-06-05 12:25 PM PDT -elisetvy,2024-06-05T19:45:19Z,- elisetvy opened pull request: [6961](https://github.com/hackforla/website/pull/6961) at 2024-06-05 12:45 PM PDT -elisetvy,2024-06-06T17:06:21Z,- elisetvy pull request merged: [6961](https://github.com/hackforla/website/pull/6961#event-13069824967) at 2024-06-06 10:06 AM PDT -elizabethhonest,2021-09-30T04:15:11Z,- elizabethhonest opened issue: [2318](https://github.com/hackforla/website/issues/2318) at 2021-09-29 09:15 PM PDT -elizabethhonest,2021-09-30T04:27:54Z,- elizabethhonest opened issue: [2319](https://github.com/hackforla/website/issues/2319) at 2021-09-29 09:27 PM PDT -elizabethhonest,2021-09-30T04:30:47Z,- elizabethhonest opened pull request: [2320](https://github.com/hackforla/website/pull/2320) at 2021-09-29 09:30 PM PDT -elizabethhonest,2021-09-30T04:31:14Z,- elizabethhonest pull request closed w/o merging: [2320](https://github.com/hackforla/website/pull/2320#event-5384888671) at 2021-09-29 09:31 PM PDT -elizabethhonest,2021-09-30T04:56:10Z,- elizabethhonest opened pull request: [2321](https://github.com/hackforla/website/pull/2321) at 2021-09-29 09:56 PM PDT -elizabethhonest,2021-09-30T04:56:54Z,- elizabethhonest pull request closed w/o merging: [2321](https://github.com/hackforla/website/pull/2321#event-5384958199) at 2021-09-29 09:56 PM PDT -elizabethhonest,2021-10-01T01:46:00Z,- elizabethhonest opened pull request: [2322](https://github.com/hackforla/website/pull/2322) at 2021-09-30 06:46 PM PDT -elizabethhonest,2021-10-01T01:46:38Z,- elizabethhonest pull request closed w/o merging: [2322](https://github.com/hackforla/website/pull/2322#event-5391270557) at 2021-09-30 06:46 PM PDT -elizabethhonest,2021-10-01T02:07:15Z,- elizabethhonest opened pull request: [2323](https://github.com/hackforla/website/pull/2323) at 2021-09-30 07:07 PM PDT -elizabethhonest,2021-10-03T15:57:10Z,- elizabethhonest pull request closed w/o merging: [2323](https://github.com/hackforla/website/pull/2323#event-5399997864) at 2021-10-03 08:57 AM PDT -elizabethhonest,2021-10-03T15:58:28Z,- elizabethhonest opened pull request: [2325](https://github.com/hackforla/website/pull/2325) at 2021-10-03 08:58 AM PDT -elizabethhonest,2021-10-03T15:58:58Z,- elizabethhonest opened issue: [2326](https://github.com/hackforla/website/issues/2326) at 2021-10-03 08:58 AM PDT -elizabethhonest,2021-10-03T16:11:33Z,- elizabethhonest opened issue: [2327](https://github.com/hackforla/website/issues/2327) at 2021-10-03 09:11 AM PDT -elizabethhonest,2021-10-03T16:30:15Z,- elizabethhonest opened issue: [2329](https://github.com/hackforla/website/issues/2329) at 2021-10-03 09:30 AM PDT -elizabethhonest,2021-10-03T16:36:34Z,- elizabethhonest opened issue: [2330](https://github.com/hackforla/website/issues/2330) at 2021-10-03 09:36 AM PDT -elizabethhonest,2021-10-03T16:38:49Z,- elizabethhonest opened issue: [2331](https://github.com/hackforla/website/issues/2331) at 2021-10-03 09:38 AM PDT -elizabethhonest,2021-10-05T18:04:43Z,- elizabethhonest opened issue: [2335](https://github.com/hackforla/website/issues/2335) at 2021-10-05 11:04 AM PDT -elizabethhonest,2021-10-05T18:17:09Z,- elizabethhonest opened issue: [2336](https://github.com/hackforla/website/issues/2336) at 2021-10-05 11:17 AM PDT -elizabethhonest,2021-10-05T18:27:11Z,- elizabethhonest opened issue: [2337](https://github.com/hackforla/website/issues/2337) at 2021-10-05 11:27 AM PDT -elizabethhonest,2021-10-05T18:35:08Z,- elizabethhonest pull request closed w/o merging: [2325](https://github.com/hackforla/website/pull/2325#event-5412681116) at 2021-10-05 11:35 AM PDT -elizabethhonest,2021-10-07T03:17:14Z,- elizabethhonest opened pull request: [2343](https://github.com/hackforla/website/pull/2343) at 2021-10-06 08:17 PM PDT -elizabethhonest,2021-10-07T13:50:19Z,- elizabethhonest pull request merged: [2343](https://github.com/hackforla/website/pull/2343#event-5428690153) at 2021-10-07 06:50 AM PDT -elizabethhonest,2021-11-01T22:29:37Z,- elizabethhonest opened issue: [2422](https://github.com/hackforla/website/issues/2422) at 2021-11-01 03:29 PM PDT -elizabethhonest,2021-11-05T18:42:26Z,- elizabethhonest opened issue: [2454](https://github.com/hackforla/website/issues/2454) at 2021-11-05 11:42 AM PDT -elizabethhonest,2021-11-14T16:09:36Z,- elizabethhonest opened pull request: [2478](https://github.com/hackforla/website/pull/2478) at 2021-11-14 08:09 AM PST -elizabethhonest,2021-11-14T16:30:53Z,- elizabethhonest pull request merged: [2478](https://github.com/hackforla/website/pull/2478#event-5614469802) at 2021-11-14 08:30 AM PST -elizabethhonest,2021-11-21T16:12:04Z,- elizabethhonest opened issue: [2503](https://github.com/hackforla/website/issues/2503) at 2021-11-21 08:12 AM PST -elizabethhonest,2021-11-21T16:17:27Z,- elizabethhonest opened pull request: [2504](https://github.com/hackforla/website/pull/2504) at 2021-11-21 08:17 AM PST -elizabethhonest,2021-12-03T00:10:38Z,- elizabethhonest pull request merged: [2504](https://github.com/hackforla/website/pull/2504#event-5709180022) at 2021-12-02 04:10 PM PST -elizabethhonest,2021-12-07T00:56:32Z,- elizabethhonest opened issue: [2550](https://github.com/hackforla/website/issues/2550) at 2021-12-06 04:56 PM PST -elizabethhonest,2021-12-17T03:27:14Z,- elizabethhonest opened issue: [2595](https://github.com/hackforla/website/issues/2595) at 2021-12-16 07:27 PM PST -elizabethhonest,2021-12-23T08:38:00Z,- elizabethhonest opened pull request: [2623](https://github.com/hackforla/website/pull/2623) at 2021-12-23 12:38 AM PST -elizabethhonest,2022-01-04T00:08:46Z,- elizabethhonest opened issue: [2655](https://github.com/hackforla/website/issues/2655) at 2022-01-03 04:08 PM PST -elizabethhonest,2022-01-07T04:13:56Z,- elizabethhonest opened issue: [2666](https://github.com/hackforla/website/issues/2666) at 2022-01-06 08:13 PM PST -elizabethhonest,2022-01-08T02:47:49Z,- elizabethhonest opened issue: [2671](https://github.com/hackforla/website/issues/2671) at 2022-01-07 06:47 PM PST -elizabethhonest,2022-02-05T03:00:04Z,- elizabethhonest opened issue: [2737](https://github.com/hackforla/website/issues/2737) at 2022-02-04 07:00 PM PST -elizabethhonest,2022-02-11T18:46:06Z,- elizabethhonest pull request closed w/o merging: [2623](https://github.com/hackforla/website/pull/2623#event-6053282763) at 2022-02-11 10:46 AM PST -elizabethhonest,2022-02-11T18:50:08Z,- elizabethhonest opened pull request: [2765](https://github.com/hackforla/website/pull/2765) at 2022-02-11 10:50 AM PST -elizabethhonest,2022-02-16T03:18:51Z,- elizabethhonest opened issue: [2781](https://github.com/hackforla/website/issues/2781) at 2022-02-15 07:18 PM PST -elizabethhonest,2022-03-02T00:44:42Z,- elizabethhonest pull request closed w/o merging: [2765](https://github.com/hackforla/website/pull/2765#event-6165950248) at 2022-03-01 04:44 PM PST -elizabethhonest,2022-04-01T07:34:31Z,- elizabethhonest opened pull request: [3024](https://github.com/hackforla/website/pull/3024) at 2022-04-01 12:34 AM PDT -elizabethhonest,2022-04-03T17:16:18Z,- elizabethhonest opened issue: [3032](https://github.com/hackforla/website/issues/3032) at 2022-04-03 10:16 AM PDT -elizabethhonest,2022-04-10T20:24:56Z,- elizabethhonest opened issue: [3041](https://github.com/hackforla/website/issues/3041) at 2022-04-10 01:24 PM PDT -elizabethhonest,2022-04-24T22:02:01Z,- elizabethhonest opened issue: [3080](https://github.com/hackforla/website/issues/3080) at 2022-04-24 03:02 PM PDT -elizabethhonest,2022-05-29T19:27:04Z,- elizabethhonest opened issue: [3180](https://github.com/hackforla/website/issues/3180) at 2022-05-29 12:27 PM PDT -elizabethhonest,2023-01-23T19:37:40Z,- elizabethhonest opened issue: [3862](https://github.com/hackforla/website/issues/3862) at 2023-01-23 11:37 AM PST -elizabethhonest,2023-02-06T03:54:56Z,- elizabethhonest opened pull request: [3941](https://github.com/hackforla/website/pull/3941) at 2023-02-05 07:54 PM PST -elizabethhonest,2023-02-06T03:56:42Z,- elizabethhonest pull request merged: [3941](https://github.com/hackforla/website/pull/3941#event-8443315580) at 2023-02-05 07:56 PM PST -elizabethhonest,2023-02-06T04:08:29Z,- elizabethhonest opened pull request: [3942](https://github.com/hackforla/website/pull/3942) at 2023-02-05 08:08 PM PST -elizabethhonest,2023-02-06T04:13:42Z,- elizabethhonest pull request closed w/o merging: [3942](https://github.com/hackforla/website/pull/3942#event-8443395057) at 2023-02-05 08:13 PM PST -elizabethhonest,2023-02-06T22:46:00Z,- elizabethhonest opened pull request: [3943](https://github.com/hackforla/website/pull/3943) at 2023-02-06 02:46 PM PST -elizabethhonest,2023-02-07T02:29:09Z,- elizabethhonest pull request merged: [3943](https://github.com/hackforla/website/pull/3943#event-8453495450) at 2023-02-06 06:29 PM PST -elizabethhonest,2023-02-14T07:41:54Z,- elizabethhonest opened issue: [3974](https://github.com/hackforla/website/issues/3974) at 2023-02-13 11:41 PM PST -elizabethhonest,2023-02-21T08:29:31Z,- elizabethhonest opened pull request: [4019](https://github.com/hackforla/website/pull/4019) at 2023-02-21 12:29 AM PST -elizabethhonest,2023-02-22T22:19:14Z,- elizabethhonest pull request merged: [4019](https://github.com/hackforla/website/pull/4019#event-8585954457) at 2023-02-22 02:19 PM PST -elizabethhonest,2023-02-23T08:29:31Z,- elizabethhonest opened pull request: [4029](https://github.com/hackforla/website/pull/4029) at 2023-02-23 12:29 AM PST -elizabethhonest,2023-02-24T05:38:17Z,- elizabethhonest pull request merged: [4029](https://github.com/hackforla/website/pull/4029#event-8598366088) at 2023-02-23 09:38 PM PST -elizabethhonest,2023-02-25T08:29:30Z,- elizabethhonest opened pull request: [4039](https://github.com/hackforla/website/pull/4039) at 2023-02-25 12:29 AM PST -elizabethhonest,2023-03-01T05:24:01Z,- elizabethhonest pull request merged: [4039](https://github.com/hackforla/website/pull/4039#event-8634131328) at 2023-02-28 09:24 PM PST -elizabethhonest,2023-03-01T08:29:32Z,- elizabethhonest opened pull request: [4079](https://github.com/hackforla/website/pull/4079) at 2023-03-01 12:29 AM PST -elizabethhonest,2023-03-03T08:29:32Z,- elizabethhonest opened pull request: [4098](https://github.com/hackforla/website/pull/4098) at 2023-03-03 12:29 AM PST -elizabethhonest,2023-03-07T08:29:31Z,- elizabethhonest opened pull request: [4124](https://github.com/hackforla/website/pull/4124) at 2023-03-07 12:29 AM PST -elizabethhonest,2023-03-11T08:29:31Z,- elizabethhonest opened pull request: [4149](https://github.com/hackforla/website/pull/4149) at 2023-03-11 01:29 AM PDT -elizabethhonest,2023-03-17T07:29:31Z,- elizabethhonest opened pull request: [4200](https://github.com/hackforla/website/pull/4200) at 2023-03-17 12:29 AM PDT -elizabethhonest,2023-03-19T07:29:30Z,- elizabethhonest opened pull request: [4212](https://github.com/hackforla/website/pull/4212) at 2023-03-19 12:29 AM PDT -elizabethhonest,2023-03-20T07:29:34Z,- elizabethhonest opened pull request: [4216](https://github.com/hackforla/website/pull/4216) at 2023-03-20 12:29 AM PDT -elizabethhonest,2023-03-22T07:29:31Z,- elizabethhonest opened pull request: [4237](https://github.com/hackforla/website/pull/4237) at 2023-03-22 12:29 AM PDT -elizabethhonest,2023-03-22T19:18:30Z,- elizabethhonest opened issue: [4245](https://github.com/hackforla/website/issues/4245) at 2023-03-22 12:18 PM PDT -elizabethhonest,2023-03-30T07:29:31Z,- elizabethhonest opened pull request: [4345](https://github.com/hackforla/website/pull/4345) at 2023-03-30 12:29 AM PDT -elizabethhonest,2023-04-01T07:29:31Z,- elizabethhonest opened pull request: [4360](https://github.com/hackforla/website/pull/4360) at 2023-04-01 12:29 AM PDT -elizabethhonest,2023-04-06T07:29:31Z,- elizabethhonest opened pull request: [4429](https://github.com/hackforla/website/pull/4429) at 2023-04-06 12:29 AM PDT -elizabethhonest,2023-04-07T07:29:31Z,- elizabethhonest opened pull request: [4438](https://github.com/hackforla/website/pull/4438) at 2023-04-07 12:29 AM PDT -elizabethhonest,2023-04-12T07:29:29Z,- elizabethhonest opened pull request: [4493](https://github.com/hackforla/website/pull/4493) at 2023-04-12 12:29 AM PDT -elizabethhonest,2023-04-13T07:29:32Z,- elizabethhonest opened pull request: [4499](https://github.com/hackforla/website/pull/4499) at 2023-04-13 12:29 AM PDT -elizabethhonest,2023-04-16T07:29:31Z,- elizabethhonest opened pull request: [4522](https://github.com/hackforla/website/pull/4522) at 2023-04-16 12:29 AM PDT -elizabethhonest,2023-04-19T07:29:35Z,- elizabethhonest opened pull request: [4547](https://github.com/hackforla/website/pull/4547) at 2023-04-19 12:29 AM PDT -elizabethhonest,2023-04-21T07:29:30Z,- elizabethhonest opened pull request: [4553](https://github.com/hackforla/website/pull/4553) at 2023-04-21 12:29 AM PDT -elizabethhonest,2023-04-27T07:29:31Z,- elizabethhonest opened pull request: [4571](https://github.com/hackforla/website/pull/4571) at 2023-04-27 12:29 AM PDT -elizabethhonest,2023-04-28T07:29:33Z,- elizabethhonest opened pull request: [4583](https://github.com/hackforla/website/pull/4583) at 2023-04-28 12:29 AM PDT -elizabethhonest,2023-05-04T07:29:34Z,- elizabethhonest opened pull request: [4597](https://github.com/hackforla/website/pull/4597) at 2023-05-04 12:29 AM PDT -elizabethhonest,2023-05-05T07:29:34Z,- elizabethhonest opened pull request: [4604](https://github.com/hackforla/website/pull/4604) at 2023-05-05 12:29 AM PDT -elizabethhonest,2023-05-09T07:29:31Z,- elizabethhonest opened pull request: [4641](https://github.com/hackforla/website/pull/4641) at 2023-05-09 12:29 AM PDT -elizabethhonest,2023-05-12T07:29:32Z,- elizabethhonest opened pull request: [4658](https://github.com/hackforla/website/pull/4658) at 2023-05-12 12:29 AM PDT -elizabethhonest,2023-05-16T07:29:31Z,- elizabethhonest opened pull request: [4681](https://github.com/hackforla/website/pull/4681) at 2023-05-16 12:29 AM PDT -elizabethhonest,2023-05-17T07:29:33Z,- elizabethhonest opened pull request: [4684](https://github.com/hackforla/website/pull/4684) at 2023-05-17 12:29 AM PDT -elizabethhonest,2023-05-18T07:29:31Z,- elizabethhonest opened pull request: [4690](https://github.com/hackforla/website/pull/4690) at 2023-05-18 12:29 AM PDT -elizabethhonest,2023-05-19T07:29:33Z,- elizabethhonest opened pull request: [4700](https://github.com/hackforla/website/pull/4700) at 2023-05-19 12:29 AM PDT -elizabethhonest,2023-05-26T07:29:32Z,- elizabethhonest opened pull request: [4744](https://github.com/hackforla/website/pull/4744) at 2023-05-26 12:29 AM PDT -elizabethhonest,2023-05-31T07:29:33Z,- elizabethhonest opened pull request: [4761](https://github.com/hackforla/website/pull/4761) at 2023-05-31 12:29 AM PDT -elizabethhonest,2023-06-02T07:29:33Z,- elizabethhonest opened pull request: [4771](https://github.com/hackforla/website/pull/4771) at 2023-06-02 12:29 AM PDT -elizabethhonest,2023-06-05T07:29:31Z,- elizabethhonest opened pull request: [4780](https://github.com/hackforla/website/pull/4780) at 2023-06-05 12:29 AM PDT -elizabethhonest,2023-06-09T07:29:32Z,- elizabethhonest opened pull request: [4792](https://github.com/hackforla/website/pull/4792) at 2023-06-09 12:29 AM PDT -elizabethhonest,2023-06-12T07:29:32Z,- elizabethhonest opened pull request: [4816](https://github.com/hackforla/website/pull/4816) at 2023-06-12 12:29 AM PDT -elizabethhonest,2023-06-15T07:29:31Z,- elizabethhonest opened pull request: [4840](https://github.com/hackforla/website/pull/4840) at 2023-06-15 12:29 AM PDT -elizabethhonest,2023-06-18T07:29:31Z,- elizabethhonest opened pull request: [4851](https://github.com/hackforla/website/pull/4851) at 2023-06-18 12:29 AM PDT -elizabethhonest,2023-06-19T07:29:32Z,- elizabethhonest opened pull request: [4854](https://github.com/hackforla/website/pull/4854) at 2023-06-19 12:29 AM PDT -elizabethhonest,2023-06-21T07:29:31Z,- elizabethhonest opened pull request: [4871](https://github.com/hackforla/website/pull/4871) at 2023-06-21 12:29 AM PDT -elizabethhonest,2023-06-22T07:29:32Z,- elizabethhonest opened pull request: [4872](https://github.com/hackforla/website/pull/4872) at 2023-06-22 12:29 AM PDT -elizabethhonest,2023-06-29T07:29:31Z,- elizabethhonest opened pull request: [4900](https://github.com/hackforla/website/pull/4900) at 2023-06-29 12:29 AM PDT -elizabethhonest,2023-07-06T07:29:32Z,- elizabethhonest opened pull request: [4915](https://github.com/hackforla/website/pull/4915) at 2023-07-06 12:29 AM PDT -elizabethhonest,2023-07-19T07:29:31Z,- elizabethhonest opened pull request: [5026](https://github.com/hackforla/website/pull/5026) at 2023-07-19 12:29 AM PDT -elizabethhonest,2023-07-20T07:29:35Z,- elizabethhonest opened pull request: [5039](https://github.com/hackforla/website/pull/5039) at 2023-07-20 12:29 AM PDT -elizabethhonest,2023-07-21T07:29:34Z,- elizabethhonest opened pull request: [5045](https://github.com/hackforla/website/pull/5045) at 2023-07-21 12:29 AM PDT -elizabethhonest,2023-08-03T07:29:33Z,- elizabethhonest opened pull request: [5134](https://github.com/hackforla/website/pull/5134) at 2023-08-03 12:29 AM PDT -elizabethhonest,2023-08-16T07:29:31Z,- elizabethhonest opened pull request: [5237](https://github.com/hackforla/website/pull/5237) at 2023-08-16 12:29 AM PDT -elizabethhonest,2023-08-28T00:41:07Z,- elizabethhonest opened issue: [5325](https://github.com/hackforla/website/issues/5325) at 2023-08-27 05:41 PM PDT -elizabethhonest,2023-08-30T07:29:32Z,- elizabethhonest opened pull request: [5374](https://github.com/hackforla/website/pull/5374) at 2023-08-30 12:29 AM PDT -elizabethhonest,2023-08-31T07:29:31Z,- elizabethhonest opened pull request: [5395](https://github.com/hackforla/website/pull/5395) at 2023-08-31 12:29 AM PDT -elizabethhonest,2023-09-21T07:29:31Z,- elizabethhonest opened pull request: [5566](https://github.com/hackforla/website/pull/5566) at 2023-09-21 12:29 AM PDT -elizabethhonest,2023-10-20T07:29:30Z,- elizabethhonest opened pull request: [5742](https://github.com/hackforla/website/pull/5742) at 2023-10-20 12:29 AM PDT -elizabethhonest,2023-10-23T06:49:20Z,- elizabethhonest opened issue: [5766](https://github.com/hackforla/website/issues/5766) at 2023-10-22 11:49 PM PDT -elizabethhonest,2023-10-23T07:29:31Z,- elizabethhonest opened pull request: [5767](https://github.com/hackforla/website/pull/5767) at 2023-10-23 12:29 AM PDT -elizabethhonest,2024-02-02T10:27:23Z,- elizabethhonest opened pull request: [6212](https://github.com/hackforla/website/pull/6212) at 2024-02-02 02:27 AM PST -elizabethhonest,2024-02-08T08:29:31Z,- elizabethhonest opened pull request: [6264](https://github.com/hackforla/website/pull/6264) at 2024-02-08 12:29 AM PST -elizabethhonest,2024-04-04T22:38:46Z,- elizabethhonest opened pull request: [6567](https://github.com/hackforla/website/pull/6567) at 2024-04-04 03:38 PM PDT -elizabethhonest,2024-04-05T07:29:32Z,- elizabethhonest opened pull request: [6568](https://github.com/hackforla/website/pull/6568) at 2024-04-05 12:29 AM PDT -elizabethhonest,2024-05-10T07:29:32Z,- elizabethhonest opened pull request: [6846](https://github.com/hackforla/website/pull/6846) at 2024-05-10 12:29 AM PDT -elizabethhonest,2025-04-07T01:52:13Z,- elizabethhonest opened issue: [8051](https://github.com/hackforla/website/issues/8051) at 2025-04-06 06:52 PM PDT -elizabethhonest,2025-04-07T01:52:13Z,- elizabethhonest opened issue: [8051](https://github.com/hackforla/website/issues/8051) at 2025-04-06 06:52 PM PDT -elizabethhonest,2025-04-07T07:29:33Z,- elizabethhonest opened pull request: [8052](https://github.com/hackforla/website/pull/8052) at 2025-04-07 12:29 AM PDT -elizabethhonest,2025-04-07T07:29:33Z,- elizabethhonest opened pull request: [8052](https://github.com/hackforla/website/pull/8052) at 2025-04-07 12:29 AM PDT -elizabethhonest,2025-05-15T20:08:15Z,- elizabethhonest opened issue: [8145](https://github.com/hackforla/website/issues/8145) at 2025-05-15 01:08 PM PDT -EllenKellyb,3777,SKILLS ISSUE -EllenKellyb,2023-01-04T04:41:17Z,- EllenKellyb opened issue: [3777](https://github.com/hackforla/website/issues/3777) at 2023-01-03 08:41 PM PST -EllenKellyb,2023-01-09T09:17:41Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1375313604) at 2023-01-09 01:17 AM PST -EllenKellyb,2023-01-25T04:06:57Z,- EllenKellyb assigned to issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1375313604) at 2023-01-24 08:06 PM PST -EllenKellyb,2023-02-07T00:43:17Z,- EllenKellyb assigned to issue: [1878](https://github.com/hackforla/website/issues/1878#issuecomment-1310635547) at 2023-02-06 04:43 PM PST -EllenKellyb,2023-02-07T00:43:45Z,- EllenKellyb closed issue as completed: [1878](https://github.com/hackforla/website/issues/1878#event-8453070789) at 2023-02-06 04:43 PM PST -EllenKellyb,2023-02-08T03:28:33Z,- EllenKellyb assigned to issue: [3953](https://github.com/hackforla/website/issues/3953) at 2023-02-07 07:28 PM PST -EllenKellyb,2023-02-08T04:20:12Z,- EllenKellyb unassigned from issue: [3953](https://github.com/hackforla/website/issues/3953) at 2023-02-07 08:20 PM PST -EllenKellyb,2023-02-27T04:32:50Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1445691646) at 2023-02-26 08:32 PM PST -EllenKellyb,2023-02-27T18:33:09Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1446851162) at 2023-02-27 10:33 AM PST -EllenKellyb,2023-03-01T00:25:26Z,- EllenKellyb assigned to issue: [4049](https://github.com/hackforla/website/issues/4049) at 2023-02-28 04:25 PM PST -EllenKellyb,2023-03-01T01:01:44Z,- EllenKellyb commented on issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1449155878) at 2023-02-28 05:01 PM PST -EllenKellyb,2023-03-04T19:39:37Z,- EllenKellyb commented on issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1454852886) at 2023-03-04 11:39 AM PST -EllenKellyb,2023-03-04T19:40:02Z,- EllenKellyb unassigned from issue: [4049](https://github.com/hackforla/website/issues/4049#issuecomment-1454852886) at 2023-03-04 11:40 AM PST -EllenKellyb,2023-03-17T00:29:46Z,- EllenKellyb assigned to issue: [3860](https://github.com/hackforla/website/issues/3860) at 2023-03-16 05:29 PM PDT -EllenKellyb,2023-03-23T07:57:24Z,- EllenKellyb opened pull request: [4260](https://github.com/hackforla/website/pull/4260) at 2023-03-23 12:57 AM PDT -EllenKellyb,2023-03-23T08:17:43Z,- EllenKellyb commented on issue: [3860](https://github.com/hackforla/website/issues/3860#issuecomment-1480762353) at 2023-03-23 01:17 AM PDT -EllenKellyb,2023-03-24T16:59:02Z,- EllenKellyb commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1483124097) at 2023-03-24 09:59 AM PDT -EllenKellyb,2023-03-27T00:11:51Z,- EllenKellyb commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1484286183) at 2023-03-26 05:11 PM PDT -EllenKellyb,2023-03-29T19:38:59Z,- EllenKellyb pull request merged: [4260](https://github.com/hackforla/website/pull/4260#event-8880087206) at 2023-03-29 12:38 PM PDT -EllenKellyb,2023-07-14T17:19:03Z,- EllenKellyb commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1636155735) at 2023-07-14 10:19 AM PDT -elliot-d-kim,6117,SKILLS ISSUE -elliot-d-kim,2024-01-17T03:47:38Z,- elliot-d-kim opened issue: [6117](https://github.com/hackforla/website/issues/6117) at 2024-01-16 07:47 PM PST -elliot-d-kim,2024-01-17T03:48:00Z,- elliot-d-kim assigned to issue: [6117](https://github.com/hackforla/website/issues/6117#issuecomment-1894891828) at 2024-01-16 07:48 PM PST -elliot-d-kim,2024-01-23T18:39:47Z,- elliot-d-kim assigned to issue: [6112](https://github.com/hackforla/website/issues/6112#issuecomment-1891074732) at 2024-01-23 10:39 AM PST -elliot-d-kim,2024-01-23T20:20:11Z,- elliot-d-kim commented on issue: [6112](https://github.com/hackforla/website/issues/6112#issuecomment-1906856099) at 2024-01-23 12:20 PM PST -elliot-d-kim,2024-01-23T22:28:07Z,- elliot-d-kim commented on issue: [6117](https://github.com/hackforla/website/issues/6117#issuecomment-1907026812) at 2024-01-23 02:28 PM PST -elliot-d-kim,2024-01-23T22:41:49Z,- elliot-d-kim opened pull request: [6147](https://github.com/hackforla/website/pull/6147) at 2024-01-23 02:41 PM PST -elliot-d-kim,2024-01-26T05:32:13Z,- elliot-d-kim opened issue: [6185](https://github.com/hackforla/website/issues/6185) at 2024-01-25 09:32 PM PST -elliot-d-kim,2024-01-26T07:02:04Z,- elliot-d-kim pull request merged: [6147](https://github.com/hackforla/website/pull/6147#event-11605581918) at 2024-01-25 11:02 PM PST -elliot-d-kim,2024-01-28T02:21:43Z,- elliot-d-kim opened issue: [6187](https://github.com/hackforla/website/issues/6187) at 2024-01-27 06:21 PM PST -elliot-d-kim,2024-01-30T19:53:12Z,- elliot-d-kim assigned to issue: [6189](https://github.com/hackforla/website/issues/6189) at 2024-01-30 11:53 AM PST -elliot-d-kim,2024-01-30T19:58:10Z,- elliot-d-kim commented on issue: [6189](https://github.com/hackforla/website/issues/6189#issuecomment-1917788991) at 2024-01-30 11:58 AM PST -elliot-d-kim,2024-01-30T20:17:52Z,- elliot-d-kim opened pull request: [6197](https://github.com/hackforla/website/pull/6197) at 2024-01-30 12:17 PM PST -elliot-d-kim,2024-02-02T06:27:51Z,- elliot-d-kim pull request merged: [6197](https://github.com/hackforla/website/pull/6197#event-11679741739) at 2024-02-01 10:27 PM PST -elliot-d-kim,2024-02-03T01:33:51Z,- elliot-d-kim assigned to issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1837204088) at 2024-02-02 05:33 PM PST -elliot-d-kim,2024-02-03T01:45:29Z,- elliot-d-kim commented on issue: [5676](https://github.com/hackforla/website/issues/5676#issuecomment-1925009986) at 2024-02-02 05:45 PM PST -elliot-d-kim,2024-02-03T02:07:13Z,- elliot-d-kim opened pull request: [6216](https://github.com/hackforla/website/pull/6216) at 2024-02-02 06:07 PM PST -elliot-d-kim,2024-02-03T04:27:30Z,- elliot-d-kim commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1925079229) at 2024-02-02 08:27 PM PST -elliot-d-kim,2024-02-03T07:35:33Z,- elliot-d-kim submitted pull request review: [6215](https://github.com/hackforla/website/pull/6215#pullrequestreview-1860917910) at 2024-02-02 11:35 PM PST -elliot-d-kim,2024-02-04T19:43:00Z,- elliot-d-kim pull request merged: [6216](https://github.com/hackforla/website/pull/6216#event-11696389023) at 2024-02-04 11:43 AM PST -elliot-d-kim,2024-02-07T03:20:03Z,- elliot-d-kim assigned to issue: [5234](https://github.com/hackforla/website/issues/5234) at 2024-02-06 07:20 PM PST -elliot-d-kim,2024-02-07T03:21:35Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1931204191) at 2024-02-06 07:21 PM PST -elliot-d-kim,2024-02-14T04:45:20Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1943074910) at 2024-02-13 08:45 PM PST -elliot-d-kim,2024-02-14T04:46:55Z,- elliot-d-kim closed issue as completed: [6117](https://github.com/hackforla/website/issues/6117#event-11796690469) at 2024-02-13 08:46 PM PST -elliot-d-kim,2024-02-17T10:25:57Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1949927685) at 2024-02-17 02:25 AM PST -elliot-d-kim,2024-02-18T06:44:55Z,- elliot-d-kim commented on issue: [5234](https://github.com/hackforla/website/issues/5234#issuecomment-1950980857) at 2024-02-17 10:44 PM PST -elliot-d-kim,2024-02-20T05:08:01Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1953496179) at 2024-02-19 09:08 PM PST -elliot-d-kim,2024-02-25T18:20:37Z,- elliot-d-kim submitted pull request review: [6368](https://github.com/hackforla/website/pull/6368#pullrequestreview-1899726996) at 2024-02-25 10:20 AM PST -elliot-d-kim,2024-02-25T18:29:49Z,- elliot-d-kim assigned to issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1953496179) at 2024-02-25 10:29 AM PST -elliot-d-kim,2024-02-25T18:37:12Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1963024193) at 2024-02-25 10:37 AM PST -elliot-d-kim,2024-02-28T03:32:15Z,- elliot-d-kim commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1968148191) at 2024-02-27 07:32 PM PST -elliot-d-kim,2024-02-28T04:32:39Z,- elliot-d-kim submitted pull request review: [6386](https://github.com/hackforla/website/pull/6386#pullrequestreview-1905285905) at 2024-02-27 08:32 PM PST -elliot-d-kim,2024-03-04T10:14:06Z,- elliot-d-kim submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1913923286) at 2024-03-04 02:14 AM PST -elliot-d-kim,2024-03-05T20:45:24Z,- elliot-d-kim commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1979607035) at 2024-03-05 12:45 PM PST -elliot-d-kim,2024-03-05T21:52:46Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1918203705) at 2024-03-05 01:52 PM PST -elliot-d-kim,2024-03-06T20:39:08Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1981742389) at 2024-03-06 12:39 PM PST -elliot-d-kim,2024-03-07T06:11:07Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1921518484) at 2024-03-06 10:11 PM PST -elliot-d-kim,2024-03-10T05:21:57Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1926381978) at 2024-03-09 10:21 PM PDT -elliot-d-kim,2024-03-22T05:34:40Z,- elliot-d-kim commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2014389162) at 2024-03-21 10:34 PM PDT -elliot-d-kim,2024-03-22T05:34:48Z,- elliot-d-kim unassigned from issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-2014389162) at 2024-03-21 10:34 PM PDT -elliot-d-kim,2024-03-27T19:06:32Z,- elliot-d-kim submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1964500709) at 2024-03-27 12:06 PM PDT -elliot-d-kim,2024-04-11T07:05:02Z,- elliot-d-kim submitted pull request review: [6580](https://github.com/hackforla/website/pull/6580#pullrequestreview-1993416292) at 2024-04-11 12:05 AM PDT -elliot-d-kim,2024-04-18T08:43:33Z,- elliot-d-kim commented on pull request: [6651](https://github.com/hackforla/website/pull/6651#issuecomment-2063344998) at 2024-04-18 01:43 AM PDT -elliot-d-kim,2024-04-20T01:47:39Z,- elliot-d-kim commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2067507796) at 2024-04-19 06:47 PM PDT -elliot-d-kim,2024-04-20T01:55:58Z,- elliot-d-kim submitted pull request review: [6651](https://github.com/hackforla/website/pull/6651#pullrequestreview-2012989138) at 2024-04-19 06:55 PM PDT -elliot-d-kim,2024-04-20T02:15:04Z,- elliot-d-kim commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067515517) at 2024-04-19 07:15 PM PDT -elliot-d-kim,2024-04-20T16:42:19Z,- elliot-d-kim commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2067725589) at 2024-04-20 09:42 AM PDT -elliot-d-kim,2024-04-20T17:13:08Z,- elliot-d-kim commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067732813) at 2024-04-20 10:13 AM PDT -elliot-d-kim,2024-04-20T17:40:06Z,- elliot-d-kim commented on pull request: [6686](https://github.com/hackforla/website/pull/6686#issuecomment-2067738981) at 2024-04-20 10:40 AM PDT -elliot-d-kim,2024-04-23T08:30:56Z,- elliot-d-kim commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2071726339) at 2024-04-23 01:30 AM PDT -elliot-d-kim,2024-04-23T08:53:47Z,- elliot-d-kim commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2071768599) at 2024-04-23 01:53 AM PDT -elliot-d-kim,2024-04-23T09:00:17Z,- elliot-d-kim commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2071782156) at 2024-04-23 02:00 AM PDT -elliot-d-kim,2024-04-25T14:21:23Z,- elliot-d-kim commented on issue: [6485](https://github.com/hackforla/website/issues/6485#issuecomment-2077328219) at 2024-04-25 07:21 AM PDT -elliot-d-kim,2024-05-28T20:19:46Z,- elliot-d-kim opened issue: [6904](https://github.com/hackforla/website/issues/6904) at 2024-05-28 01:19 PM PDT -elliot-d-kim,2024-06-09T21:29:34Z,- elliot-d-kim commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2156798302) at 2024-06-09 02:29 PM PDT -elliot-d-kim,2024-09-15T21:26:50Z,- elliot-d-kim assigned to issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351796335) at 2024-09-15 02:26 PM PDT -elliot-d-kim,2024-09-16T16:30:54Z,- elliot-d-kim commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2353390834) at 2024-09-16 09:30 AM PDT -elliot-d-kim,2025-03-04T01:39:27Z,- elliot-d-kim unassigned from issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351797042) at 2025-03-03 05:39 PM PST -elpen84,2021-08-09T15:25:21Z,- elpen84 assigned to issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-08-09 08:25 AM PDT -elpen84,2021-08-12T22:33:38Z,- elpen84 commented on issue: [1577](https://github.com/hackforla/website/issues/1577#issuecomment-898011644) at 2021-08-12 03:33 PM PDT -elpen84,2021-08-14T02:56:57Z,- elpen84 opened pull request: [2115](https://github.com/hackforla/website/pull/2115) at 2021-08-13 07:56 PM PDT -elpen84,2021-08-16T06:50:36Z,- elpen84 pull request merged: [2115](https://github.com/hackforla/website/pull/2115#event-5161202995) at 2021-08-15 11:50 PM PDT -elseclc,7064,SKILLS ISSUE -elseclc,2024-06-25T05:07:33Z,- elseclc opened issue: [7064](https://github.com/hackforla/website/issues/7064) at 2024-06-24 10:07 PM PDT -elseclc,2024-06-25T05:08:40Z,- elseclc assigned to issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2187988727) at 2024-06-24 10:08 PM PDT -elseclc,2024-06-25T20:59:48Z,- elseclc commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2189961133) at 2024-06-25 01:59 PM PDT -elseclc,2024-06-25T21:09:22Z,- elseclc commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2189974582) at 2024-06-25 02:09 PM PDT -elsong86,6942,SKILLS ISSUE -elsong86,2024-06-04T02:38:49Z,- elsong86 opened issue: [6942](https://github.com/hackforla/website/issues/6942) at 2024-06-03 07:38 PM PDT -elsong86,2024-06-04T02:39:34Z,- elsong86 assigned to issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2146461042) at 2024-06-03 07:39 PM PDT -elsong86,2024-07-08T22:13:19Z,- elsong86 assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#event-13359847678) at 2024-07-08 03:13 PM PDT -elsong86,2024-07-08T22:14:43Z,- elsong86 unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2215440105) at 2024-07-08 03:14 PM PDT -elsong86,2024-07-15T20:43:12Z,- elsong86 assigned to issue: [7102](https://github.com/hackforla/website/issues/7102) at 2024-07-15 01:43 PM PDT -elsong86,2024-07-15T20:51:10Z,- elsong86 commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2229409186) at 2024-07-15 01:51 PM PDT -elsong86,2024-07-15T20:54:50Z,- elsong86 commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229415606) at 2024-07-15 01:54 PM PDT -elsong86,2024-07-15T23:26:28Z,- elsong86 opened pull request: [7123](https://github.com/hackforla/website/pull/7123) at 2024-07-15 04:26 PM PDT -elsong86,2024-07-16T01:42:47Z,- elsong86 pull request closed w/o merging: [7123](https://github.com/hackforla/website/pull/7123#event-13513478854) at 2024-07-15 06:42 PM PDT -elsong86,2024-07-16T01:42:56Z,- elsong86 unassigned from issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-07-15 06:42 PM PDT -elsong86,2024-07-16T05:08:43Z,- elsong86 assigned to issue: [7103](https://github.com/hackforla/website/issues/7103) at 2024-07-15 10:08 PM PDT -elsong86,2024-07-19T20:15:03Z,- elsong86 opened pull request: [7130](https://github.com/hackforla/website/pull/7130) at 2024-07-19 01:15 PM PDT -elsong86,2024-07-23T20:40:26Z,- elsong86 commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2246271374) at 2024-07-23 01:40 PM PDT -elsong86,2024-07-24T22:22:33Z,- elsong86 commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2248995478) at 2024-07-24 03:22 PM PDT -elsong86,2024-07-26T04:42:58Z,- elsong86 pull request merged: [7130](https://github.com/hackforla/website/pull/7130#event-13656041343) at 2024-07-25 09:42 PM PDT -elsong86,2024-07-29T23:14:03Z,- elsong86 closed issue as completed: [6942](https://github.com/hackforla/website/issues/6942#event-13687732754) at 2024-07-29 04:14 PM PDT -elsong86,2024-08-11T21:20:36Z,- elsong86 assigned to issue: [7188](https://github.com/hackforla/website/issues/7188) at 2024-08-11 02:20 PM PDT -elsong86,2024-08-11T22:12:14Z,- elsong86 opened pull request: [7271](https://github.com/hackforla/website/pull/7271) at 2024-08-11 03:12 PM PDT -elsong86,2024-08-15T15:09:57Z,- elsong86 pull request merged: [7271](https://github.com/hackforla/website/pull/7271#event-13897396621) at 2024-08-15 08:09 AM PDT -elsong86,2024-08-15T16:30:02Z,- elsong86 commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2291672511) at 2024-08-15 09:30 AM PDT -elsong86,2024-08-21T02:30:10Z,- elsong86 assigned to issue: [7133](https://github.com/hackforla/website/issues/7133#issuecomment-2293876900) at 2024-08-20 07:30 PM PDT -elsong86,2024-08-21T02:58:55Z,- elsong86 opened pull request: [7328](https://github.com/hackforla/website/pull/7328) at 2024-08-20 07:58 PM PDT -elsong86,2024-08-22T19:20:36Z,- elsong86 pull request merged: [7328](https://github.com/hackforla/website/pull/7328#event-13983023245) at 2024-08-22 12:20 PM PDT -elsong86,2024-08-23T19:55:30Z,- elsong86 assigned to issue: [7146](https://github.com/hackforla/website/issues/7146) at 2024-08-23 12:55 PM PDT -elsong86,2024-09-06T16:08:35Z,- elsong86 commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2334384935) at 2024-09-06 09:08 AM PDT -elvisEspinozaN,4064,SKILLS ISSUE -elvisEspinozaN,2023-03-01T04:06:28Z,- elvisEspinozaN opened issue: [4064](https://github.com/hackforla/website/issues/4064) at 2023-02-28 08:06 PM PST -elvisEspinozaN,2023-03-01T04:08:45Z,- elvisEspinozaN assigned to issue: [4064](https://github.com/hackforla/website/issues/4064) at 2023-02-28 08:08 PM PST -ememercy21,2687,SKILLS ISSUE -ememercy21,2022-01-15T01:11:12Z,- ememercy21 opened issue: [2687](https://github.com/hackforla/website/issues/2687) at 2022-01-14 05:11 PM PST -ememercy21,2022-01-15T01:30:22Z,- ememercy21 assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-999092690) at 2022-01-14 05:30 PM PST -ememercy21,2022-01-15T01:31:15Z,- ememercy21 unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-999092690) at 2022-01-14 05:31 PM PST -ememercy21,2022-01-15T01:31:22Z,- ememercy21 assigned to issue: [2687](https://github.com/hackforla/website/issues/2687#issuecomment-1013569737) at 2022-01-14 05:31 PM PST -ememercy21,2022-01-15T01:33:57Z,- ememercy21 assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-999092690) at 2022-01-14 05:33 PM PST -ememercy21,2022-01-15T01:36:35Z,- ememercy21 commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1013576245) at 2022-01-14 05:36 PM PST -ememercy21,2022-01-15T01:38:28Z,- ememercy21 closed issue as completed: [2687](https://github.com/hackforla/website/issues/2687#event-5898042648) at 2022-01-14 05:38 PM PST -ememercy21,2022-03-31T19:48:56Z,- ememercy21 unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 12:48 PM PDT -emillipede,2019-07-04T16:21:32Z,- emillipede opened pull request: [131](https://github.com/hackforla/website/pull/131) at 2019-07-04 09:21 AM PDT -emillipede,2019-08-13T05:04:04Z,- emillipede pull request merged: [131](https://github.com/hackforla/website/pull/131#event-2552175445) at 2019-08-12 10:04 PM PDT -emillipede,2020-01-14T03:48:17Z,- emillipede commented on issue: [253](https://github.com/hackforla/website/issues/253#issuecomment-573986790) at 2020-01-13 07:48 PM PST -emillipede,2020-01-26T21:41:37Z,- emillipede assigned to issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-571403621) at 2020-01-26 01:41 PM PST -emillipede,2020-01-28T04:09:13Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-579070014) at 2020-01-27 08:09 PM PST -emillipede,2020-01-28T04:11:35Z,- emillipede commented on issue: [253](https://github.com/hackforla/website/issues/253#issuecomment-579070472) at 2020-01-27 08:11 PM PST -emillipede,2020-02-02T18:10:22Z,- emillipede unassigned from issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-579070014) at 2020-02-02 10:10 AM PST -emillipede,2020-02-24T05:38:20Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-590174011) at 2020-02-23 09:38 PM PST -emillipede,2020-03-10T02:42:34Z,- emillipede commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-596872438) at 2020-03-09 07:42 PM PDT -emillipede,2020-03-12T19:13:28Z,- emillipede closed issue by PR 417: [246](https://github.com/hackforla/website/issues/246#event-3124172899) at 2020-03-12 12:13 PM PDT -emillipede,2020-03-13T05:57:41Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598563970) at 2020-03-12 10:57 PM PDT -emillipede,2020-03-13T05:58:51Z,- emillipede commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-598564305) at 2020-03-12 10:58 PM PDT -emillipede,2020-03-16T16:55:29Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-599648560) at 2020-03-16 09:55 AM PDT -emillipede,2020-03-17T01:53:00Z,- emillipede commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599837047) at 2020-03-16 06:53 PM PDT -emillipede,2020-03-25T03:39:38Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-603622704) at 2020-03-24 08:39 PM PDT -emillipede,2020-03-27T14:41:44Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-605037600) at 2020-03-27 07:41 AM PDT -emillipede,2020-04-06T16:02:14Z,- emillipede commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-609884465) at 2020-04-06 09:02 AM PDT -emillipede,2020-07-27T20:37:48Z,- emillipede commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-664625570) at 2020-07-27 01:37 PM PDT -EmilyTat,3141,SKILLS ISSUE -EmilyTat,2022-05-23T15:24:48Z,- EmilyTat assigned to issue: [3141](https://github.com/hackforla/website/issues/3141#issuecomment-1126977952) at 2022-05-23 08:24 AM PDT -EmilyTat,2022-05-23T16:17:40Z,- EmilyTat assigned to issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1122252414) at 2022-05-23 09:17 AM PDT -EmilyTat,2022-06-07T23:21:15Z,- EmilyTat commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149265126) at 2022-06-07 04:21 PM PDT -EmilyTat,2022-06-07T23:22:38Z,- EmilyTat commented on issue: [3141](https://github.com/hackforla/website/issues/3141#issuecomment-1149267244) at 2022-06-07 04:22 PM PDT -EmilyTat,2022-06-07T23:42:16Z,- EmilyTat commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279005) at 2022-06-07 04:42 PM PDT -EmilyTat,2022-06-07T23:43:10Z,- EmilyTat commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-06-07 04:43 PM PDT -EmilyTat,2022-06-08T22:28:36Z,- EmilyTat unassigned from issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-06-08 03:28 PM PDT -EmilyTat,2022-07-20T21:30:32Z,- EmilyTat opened issue: [3408](https://github.com/hackforla/website/issues/3408) at 2022-07-20 02:30 PM PDT -EmilyTat,2022-07-20T21:30:33Z,- EmilyTat assigned to issue: [3408](https://github.com/hackforla/website/issues/3408) at 2022-07-20 02:30 PM PDT -EmmaBin,4712,SKILLS ISSUE -EmmaBin,2023-05-24T02:44:50Z,- EmmaBin opened issue: [4712](https://github.com/hackforla/website/issues/4712) at 2023-05-23 07:44 PM PDT -EmmaBin,2023-05-24T03:00:52Z,- EmmaBin assigned to issue: [4712](https://github.com/hackforla/website/issues/4712) at 2023-05-23 08:00 PM PDT -emmettlsc,2021-11-09T00:57:41Z,- emmettlsc assigned to issue: [2341](https://github.com/hackforla/website/issues/2341#issuecomment-937926424) at 2021-11-08 04:57 PM PST -emmettlsc,2021-11-10T07:40:04Z,- emmettlsc opened pull request: [2469](https://github.com/hackforla/website/pull/2469) at 2021-11-09 11:40 PM PST -emmettlsc,2021-11-10T20:57:06Z,- emmettlsc unassigned from issue: [2341](https://github.com/hackforla/website/issues/2341#issuecomment-937926424) at 2021-11-10 12:57 PM PST -emmettlsc,2021-11-10T21:42:47Z,- emmettlsc pull request merged: [2469](https://github.com/hackforla/website/pull/2469#event-5600169827) at 2021-11-10 01:42 PM PST -emmettlsc,2021-11-17T05:46:16Z,- emmettlsc assigned to issue: [2462](https://github.com/hackforla/website/issues/2462) at 2021-11-16 09:46 PM PST -emmettlsc,2021-12-17T17:58:53Z,- emmettlsc unassigned from issue: [2462](https://github.com/hackforla/website/issues/2462#issuecomment-996913659) at 2021-12-17 09:58 AM PST -engmaggi,2596,SKILLS ISSUE -engmaggi,2021-12-17T08:05:59Z,- engmaggi assigned to issue: [2596](https://github.com/hackforla/website/issues/2596) at 2021-12-17 12:05 AM PST -entrotech,2019-06-12T00:46:52Z,- entrotech opened issue: [127](https://github.com/hackforla/website/issues/127) at 2019-06-11 05:46 PM PDT -entrotech,2020-07-24T15:40:25Z,- entrotech commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663600998) at 2020-07-24 08:40 AM PDT -entrotech,2020-07-24T15:42:27Z,- entrotech commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663601930) at 2020-07-24 08:42 AM PDT -entrotech,2025-02-14T03:08:02Z,- entrotech opened issue: [7907](https://github.com/hackforla/website/issues/7907) at 2025-02-13 07:08 PM PST -eodero,3074,SKILLS ISSUE -eodero,2022-04-15T02:33:51Z,- eodero opened issue: [3055](https://github.com/hackforla/website/issues/3055) at 2022-04-14 07:33 PM PDT -eodero,2022-04-15T02:34:43Z,- eodero assigned to issue: [3055](https://github.com/hackforla/website/issues/3055#issuecomment-1099795930) at 2022-04-14 07:34 PM PDT -eodero,2022-04-17T18:24:12Z,- eodero assigned to issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1057117918) at 2022-04-17 11:24 AM PDT -eodero,2022-04-17T19:21:17Z,- eodero commented on issue: [2910](https://github.com/hackforla/website/issues/2910#issuecomment-1100935602) at 2022-04-17 12:21 PM PDT -eodero,2022-04-18T01:54:52Z,- eodero opened pull request: [3061](https://github.com/hackforla/website/pull/3061) at 2022-04-17 06:54 PM PDT -eodero,2022-04-21T00:11:53Z,- eodero commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1104569473) at 2022-04-20 05:11 PM PDT -eodero,2022-04-21T00:12:34Z,- eodero commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1104569837) at 2022-04-20 05:12 PM PDT -eodero,2022-04-21T02:01:59Z,- eodero opened pull request: [3073](https://github.com/hackforla/website/pull/3073) at 2022-04-20 07:01 PM PDT -eodero,2022-04-21T02:03:31Z,- eodero opened issue: [3074](https://github.com/hackforla/website/issues/3074) at 2022-04-20 07:03 PM PDT -eodero,2022-04-21T15:58:14Z,- eodero pull request closed w/o merging: [3061](https://github.com/hackforla/website/pull/3061#event-6472286221) at 2022-04-21 08:58 AM PDT -eodero,2022-04-22T02:41:10Z,- eodero commented on pull request: [3073](https://github.com/hackforla/website/pull/3073#issuecomment-1105946134) at 2022-04-21 07:41 PM PDT -eodero,2022-04-23T19:33:14Z,- eodero pull request merged: [3073](https://github.com/hackforla/website/pull/3073#event-6484933985) at 2022-04-23 12:33 PM PDT -eodero,2022-04-28T03:54:11Z,- eodero closed issue as completed: [3055](https://github.com/hackforla/website/issues/3055#event-6511713913) at 2022-04-27 08:54 PM PDT -eodero,2022-04-28T03:55:00Z,- eodero commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1111715529) at 2022-04-27 08:55 PM PDT -eodero,2022-04-28T04:26:04Z,- eodero commented on issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1111730808) at 2022-04-27 09:26 PM PDT -eodero,2022-05-01T15:05:49Z,- eodero opened pull request: [3086](https://github.com/hackforla/website/pull/3086) at 2022-05-01 08:05 AM PDT -eodero,2022-05-02T03:56:05Z,- eodero commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114469138) at 2022-05-01 08:56 PM PDT -eodero,2022-05-02T03:57:04Z,- eodero commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114469346) at 2022-05-01 08:57 PM PDT -eodero,2022-06-01T16:49:01Z,- eodero commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1143867444) at 2022-06-01 09:49 AM PDT -eodero,2022-06-12T17:22:05Z,- eodero pull request merged: [3086](https://github.com/hackforla/website/pull/3086#event-6791732755) at 2022-06-12 10:22 AM PDT -eodero,2022-06-17T00:54:14Z,- eodero assigned to issue: [2804](https://github.com/hackforla/website/issues/2804) at 2022-06-16 05:54 PM PDT -eodero,2022-06-17T00:59:06Z,- eodero commented on issue: [2804](https://github.com/hackforla/website/issues/2804#issuecomment-1158357220) at 2022-06-16 05:59 PM PDT -eodero,2022-06-20T19:02:07Z,- eodero opened pull request: [3264](https://github.com/hackforla/website/pull/3264) at 2022-06-20 12:02 PM PDT -eodero,2022-06-23T01:45:31Z,- eodero pull request merged: [3264](https://github.com/hackforla/website/pull/3264#event-6861983756) at 2022-06-22 06:45 PM PDT -eodero,2022-06-23T03:29:08Z,- eodero commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1163884519) at 2022-06-22 08:29 PM PDT -eodero,2022-06-23T03:29:34Z,- eodero commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1163884735) at 2022-06-22 08:29 PM PDT -epierotti3,2022-06-30T16:39:36Z,- epierotti3 commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1171443658) at 2022-06-30 09:39 AM PDT -ericahagle,6831,SKILLS ISSUE -ericahagle,2024-05-07T03:09:24Z,- ericahagle opened issue: [6831](https://github.com/hackforla/website/issues/6831) at 2024-05-06 08:09 PM PDT -ericahagle,2024-05-07T03:09:25Z,- ericahagle assigned to issue: [6831](https://github.com/hackforla/website/issues/6831) at 2024-05-06 08:09 PM PDT -ericvennemeyer,3048,SKILLS ISSUE -ericvennemeyer,2022-04-13T03:10:31Z,- ericvennemeyer opened issue: [3048](https://github.com/hackforla/website/issues/3048) at 2022-04-12 08:10 PM PDT -ericvennemeyer,2022-04-13T22:23:19Z,- ericvennemeyer assigned to issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1097506136) at 2022-04-13 03:23 PM PDT -ericvennemeyer,2022-04-14T17:08:18Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1099420209) at 2022-04-14 10:08 AM PDT -ericvennemeyer,2022-04-14T23:59:43Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1099728251) at 2022-04-14 04:59 PM PDT -ericvennemeyer,2022-04-17T01:18:52Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1100781723) at 2022-04-16 06:18 PM PDT -ericvennemeyer,2022-04-19T17:07:13Z,- ericvennemeyer opened issue: [3068](https://github.com/hackforla/website/issues/3068) at 2022-04-19 10:07 AM PDT -ericvennemeyer,2022-04-19T17:07:13Z,- ericvennemeyer assigned to issue: [3068](https://github.com/hackforla/website/issues/3068) at 2022-04-19 10:07 AM PDT -ericvennemeyer,2022-04-19T17:21:11Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1102900272) at 2022-04-19 10:21 AM PDT -ericvennemeyer,2022-04-22T22:28:20Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1106949359) at 2022-04-22 03:28 PM PDT -ericvennemeyer,2022-04-28T02:39:06Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1111678732) at 2022-04-27 07:39 PM PDT -ericvennemeyer,2022-04-28T22:01:26Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1112693681) at 2022-04-28 03:01 PM PDT -ericvennemeyer,2022-05-03T17:41:19Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1116371802) at 2022-05-03 10:41 AM PDT -ericvennemeyer,2022-05-04T23:35:56Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1118027375) at 2022-05-04 04:35 PM PDT -ericvennemeyer,2022-05-07T00:20:18Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1120088083) at 2022-05-06 05:20 PM PDT -ericvennemeyer,2022-05-13T23:26:32Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1126576213) at 2022-05-13 04:26 PM PDT -ericvennemeyer,2022-05-20T23:31:30Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1133463183) at 2022-05-20 04:31 PM PDT -ericvennemeyer,2022-05-28T00:27:38Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1140117821) at 2022-05-27 05:27 PM PDT -ericvennemeyer,2022-06-10T23:12:43Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1152793930) at 2022-06-10 04:12 PM PDT -ericvennemeyer,2022-06-13T18:51:37Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1154264042) at 2022-06-13 11:51 AM PDT -ericvennemeyer,2022-06-14T17:05:23Z,- ericvennemeyer commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1155464975) at 2022-06-14 10:05 AM PDT -ericvennemeyer,2022-06-19T17:24:53Z,- ericvennemeyer commented on pull request: [3258](https://github.com/hackforla/website/pull/3258#issuecomment-1159780236) at 2022-06-19 10:24 AM PDT -ericvennemeyer,2022-06-20T23:29:15Z,- ericvennemeyer submitted pull request review: [3258](https://github.com/hackforla/website/pull/3258#pullrequestreview-1012812187) at 2022-06-20 04:29 PM PDT -ericvennemeyer,2022-06-27T18:15:19Z,- ericvennemeyer opened pull request: [3319](https://github.com/hackforla/website/pull/3319) at 2022-06-27 11:15 AM PDT -ericvennemeyer,2022-06-28T20:51:36Z,- ericvennemeyer commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1169230471) at 2022-06-28 01:51 PM PDT -ericvennemeyer,2022-06-29T02:35:26Z,- ericvennemeyer assigned to issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1090773428) at 2022-06-28 07:35 PM PDT -ericvennemeyer,2022-06-29T02:36:08Z,- ericvennemeyer unassigned from issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-1090773428) at 2022-06-28 07:36 PM PDT -ericvennemeyer,2022-06-29T02:37:39Z,- ericvennemeyer assigned to issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1167629697) at 2022-06-28 07:37 PM PDT -ericvennemeyer,2022-06-29T02:37:59Z,- ericvennemeyer unassigned from issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1169470246) at 2022-06-28 07:37 PM PDT -ericvennemeyer,2022-06-29T02:40:37Z,- ericvennemeyer assigned to issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1100374784) at 2022-06-28 07:40 PM PDT -ericvennemeyer,2022-06-29T02:45:37Z,- ericvennemeyer unassigned from issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1100374784) at 2022-06-28 07:45 PM PDT -ericvennemeyer,2022-06-29T02:46:02Z,- ericvennemeyer assigned to issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1100374784) at 2022-06-28 07:46 PM PDT -ericvennemeyer,2022-06-29T02:46:43Z,- ericvennemeyer unassigned from issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1169474354) at 2022-06-28 07:46 PM PDT -ericvennemeyer,2022-06-29T18:11:58Z,- ericvennemeyer pull request merged: [3319](https://github.com/hackforla/website/pull/3319#event-6904736668) at 2022-06-29 11:11 AM PDT -ericvennemeyer,2022-07-25T21:32:10Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1194656273) at 2022-07-25 02:32 PM PDT -ericvennemeyer,2022-07-26T23:10:42Z,- ericvennemeyer assigned to issue: [2809](https://github.com/hackforla/website/issues/2809#issuecomment-1046311281) at 2022-07-26 04:10 PM PDT -ericvennemeyer,2022-07-26T23:13:17Z,- ericvennemeyer commented on issue: [2809](https://github.com/hackforla/website/issues/2809#issuecomment-1196072629) at 2022-07-26 04:13 PM PDT -ericvennemeyer,2022-07-26T23:16:13Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1196074229) at 2022-07-26 04:16 PM PDT -ericvennemeyer,2022-07-26T23:55:51Z,- ericvennemeyer opened pull request: [3430](https://github.com/hackforla/website/pull/3430) at 2022-07-26 04:55 PM PDT -ericvennemeyer,2022-07-27T20:05:46Z,- ericvennemeyer pull request merged: [3430](https://github.com/hackforla/website/pull/3430#event-7076221057) at 2022-07-27 01:05 PM PDT -ericvennemeyer,2022-07-27T22:51:33Z,- ericvennemeyer commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1197457053) at 2022-07-27 03:51 PM PDT -ericvennemeyer,2022-07-27T22:51:34Z,- ericvennemeyer closed issue as completed: [3048](https://github.com/hackforla/website/issues/3048#event-7077001170) at 2022-07-27 03:51 PM PDT -ericvennemeyer,2022-07-27T23:25:41Z,- ericvennemeyer assigned to issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1194651649) at 2022-07-27 04:25 PM PDT -ericvennemeyer,2022-07-27T23:27:52Z,- ericvennemeyer commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1197484433) at 2022-07-27 04:27 PM PDT -ericvennemeyer,2022-07-27T23:57:45Z,- ericvennemeyer opened pull request: [3435](https://github.com/hackforla/website/pull/3435) at 2022-07-27 04:57 PM PDT -ericvennemeyer,2022-07-29T01:18:16Z,- ericvennemeyer pull request merged: [3435](https://github.com/hackforla/website/pull/3435#event-7085944914) at 2022-07-28 06:18 PM PDT -ericvennemeyer,2022-07-30T20:27:35Z,- ericvennemeyer commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200288855) at 2022-07-30 01:27 PM PDT -ericvennemeyer,2022-07-30T22:29:10Z,- ericvennemeyer submitted pull request review: [3444](https://github.com/hackforla/website/pull/3444#pullrequestreview-1056497905) at 2022-07-30 03:29 PM PDT -ericvennemeyer,2022-08-09T21:06:55Z,- ericvennemeyer commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1209897036) at 2022-08-09 02:06 PM PDT -ericvennemeyer,2022-08-10T00:02:01Z,- ericvennemeyer submitted pull request review: [3454](https://github.com/hackforla/website/pull/3454#pullrequestreview-1067507680) at 2022-08-09 05:02 PM PDT -ericvennemeyer,2022-08-11T18:39:11Z,- ericvennemeyer assigned to issue: [3331](https://github.com/hackforla/website/issues/3331#issuecomment-1175690910) at 2022-08-11 11:39 AM PDT -ericvennemeyer,2022-08-11T18:42:36Z,- ericvennemeyer commented on issue: [3331](https://github.com/hackforla/website/issues/3331#issuecomment-1212359612) at 2022-08-11 11:42 AM PDT -ericvennemeyer,2022-08-11T19:54:06Z,- ericvennemeyer opened pull request: [3462](https://github.com/hackforla/website/pull/3462) at 2022-08-11 12:54 PM PDT -ericvennemeyer,2022-08-11T20:03:48Z,- ericvennemeyer submitted pull request review: [3460](https://github.com/hackforla/website/pull/3460#pullrequestreview-1070289469) at 2022-08-11 01:03 PM PDT -ericvennemeyer,2022-08-12T04:22:31Z,- ericvennemeyer pull request merged: [3462](https://github.com/hackforla/website/pull/3462#event-7176351043) at 2022-08-11 09:22 PM PDT -ericvennemeyer,2022-08-12T16:10:06Z,- ericvennemeyer commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1213281665) at 2022-08-12 09:10 AM PDT -ericvennemeyer,2022-08-12T23:30:43Z,- ericvennemeyer assigned to issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1194658612) at 2022-08-12 04:30 PM PDT -ericvennemeyer,2022-08-12T23:33:03Z,- ericvennemeyer commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1213589225) at 2022-08-12 04:33 PM PDT -ericvennemeyer,2022-08-13T18:51:25Z,- ericvennemeyer commented on pull request: [3467](https://github.com/hackforla/website/pull/3467#issuecomment-1214205901) at 2022-08-13 11:51 AM PDT -ericvennemeyer,2022-08-13T19:12:40Z,- ericvennemeyer submitted pull request review: [3467](https://github.com/hackforla/website/pull/3467#pullrequestreview-1071990588) at 2022-08-13 12:12 PM PDT -ericvennemeyer,2022-08-16T19:33:26Z,- ericvennemeyer commented on pull request: [3470](https://github.com/hackforla/website/pull/3470#issuecomment-1217076861) at 2022-08-16 12:33 PM PDT -ericvennemeyer,2022-08-16T22:16:47Z,- ericvennemeyer submitted pull request review: [3470](https://github.com/hackforla/website/pull/3470#pullrequestreview-1074835583) at 2022-08-16 03:16 PM PDT -ericvennemeyer,2022-08-18T23:43:54Z,- ericvennemeyer commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1220083477) at 2022-08-18 04:43 PM PDT -ericvennemeyer,2022-08-23T17:16:07Z,- ericvennemeyer commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1224382184) at 2022-08-23 10:16 AM PDT -ericvennemeyer,2022-08-23T21:27:33Z,- ericvennemeyer commented on pull request: [3480](https://github.com/hackforla/website/pull/3480#issuecomment-1224904664) at 2022-08-23 02:27 PM PDT -ericvennemeyer,2022-08-23T21:58:09Z,- ericvennemeyer submitted pull request review: [3480](https://github.com/hackforla/website/pull/3480#pullrequestreview-1082888190) at 2022-08-23 02:58 PM PDT -ericvennemeyer,2022-08-24T02:36:42Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1225104563) at 2022-08-23 07:36 PM PDT -ericvennemeyer,2022-08-24T18:44:47Z,- ericvennemeyer opened pull request: [3483](https://github.com/hackforla/website/pull/3483) at 2022-08-24 11:44 AM PDT -ericvennemeyer,2022-08-24T18:58:40Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226115710) at 2022-08-24 11:58 AM PDT -ericvennemeyer,2022-08-24T19:21:21Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226143634) at 2022-08-24 12:21 PM PDT -ericvennemeyer,2022-08-24T19:34:24Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226158433) at 2022-08-24 12:34 PM PDT -ericvennemeyer,2022-08-24T19:42:24Z,- ericvennemeyer opened pull request: [3484](https://github.com/hackforla/website/pull/3484) at 2022-08-24 12:42 PM PDT -ericvennemeyer,2022-08-24T19:52:10Z,- ericvennemeyer opened pull request: [3486](https://github.com/hackforla/website/pull/3486) at 2022-08-24 12:52 PM PDT -ericvennemeyer,2022-08-24T20:01:17Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226212252) at 2022-08-24 01:01 PM PDT -ericvennemeyer,2022-08-24T20:13:58Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226238633) at 2022-08-24 01:13 PM PDT -ericvennemeyer,2022-08-24T20:23:34Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226258386) at 2022-08-24 01:23 PM PDT -ericvennemeyer,2022-08-24T21:06:01Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226346445) at 2022-08-24 02:06 PM PDT -ericvennemeyer,2022-08-24T21:39:24Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226419209) at 2022-08-24 02:39 PM PDT -ericvennemeyer,2022-08-25T01:34:02Z,- ericvennemeyer opened issue: [3488](https://github.com/hackforla/website/issues/3488) at 2022-08-24 06:34 PM PDT -ericvennemeyer,2022-08-25T18:42:10Z,- ericvennemeyer opened issue: [3489](https://github.com/hackforla/website/issues/3489) at 2022-08-25 11:42 AM PDT -ericvennemeyer,2022-08-26T03:31:23Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1228012626) at 2022-08-25 08:31 PM PDT -ericvennemeyer,2022-08-26T23:45:37Z,- ericvennemeyer submitted pull request review: [3476](https://github.com/hackforla/website/pull/3476#pullrequestreview-1087592392) at 2022-08-26 04:45 PM PDT -ericvennemeyer,2022-08-27T18:12:12Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1229239297) at 2022-08-27 11:12 AM PDT -ericvennemeyer,2022-08-27T20:56:42Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229265789) at 2022-08-27 01:56 PM PDT -ericvennemeyer,2022-08-27T21:03:05Z,- ericvennemeyer commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229266650) at 2022-08-27 02:03 PM PDT -ericvennemeyer,2022-08-28T03:34:33Z,- ericvennemeyer pull request closed w/o merging: [3484](https://github.com/hackforla/website/pull/3484#event-7272846511) at 2022-08-27 08:34 PM PDT -ericvennemeyer,2022-08-28T03:35:17Z,- ericvennemeyer pull request closed w/o merging: [3486](https://github.com/hackforla/website/pull/3486#event-7272846974) at 2022-08-27 08:35 PM PDT -ericvennemeyer,2022-08-28T18:52:15Z,- ericvennemeyer submitted pull request review: [3490](https://github.com/hackforla/website/pull/3490#pullrequestreview-1087899982) at 2022-08-28 11:52 AM PDT -ericvennemeyer,2022-08-28T23:18:44Z,- ericvennemeyer pull request merged: [3483](https://github.com/hackforla/website/pull/3483#event-7274130745) at 2022-08-28 04:18 PM PDT -ericvennemeyer,2022-08-29T02:55:52Z,- ericvennemeyer commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229691050) at 2022-08-28 07:55 PM PDT -ericvennemeyer,2022-08-29T18:22:08Z,- ericvennemeyer commented on pull request: [3497](https://github.com/hackforla/website/pull/3497#issuecomment-1230692466) at 2022-08-29 11:22 AM PDT -ericvennemeyer,2022-08-29T19:45:09Z,- ericvennemeyer submitted pull request review: [3497](https://github.com/hackforla/website/pull/3497#pullrequestreview-1089266730) at 2022-08-29 12:45 PM PDT -ericvennemeyer,2022-08-30T19:41:31Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1232088388) at 2022-08-30 12:41 PM PDT -ericvennemeyer,2022-08-31T19:19:55Z,- ericvennemeyer commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1233329231) at 2022-08-31 12:19 PM PDT -ericvennemeyer,2022-09-02T00:00:21Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1234924450) at 2022-09-01 05:00 PM PDT -ericvennemeyer,2022-09-02T17:22:20Z,- ericvennemeyer submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1095160048) at 2022-09-02 10:22 AM PDT -ericvennemeyer,2022-09-02T23:09:51Z,- ericvennemeyer submitted pull request review: [3516](https://github.com/hackforla/website/pull/3516#pullrequestreview-1095414031) at 2022-09-02 04:09 PM PDT -ericvennemeyer,2022-09-06T20:03:32Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1238596025) at 2022-09-06 01:03 PM PDT -ericvennemeyer,2022-09-07T18:35:15Z,- ericvennemeyer commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1239739318) at 2022-09-07 11:35 AM PDT -ericvennemeyer,2022-09-08T20:19:57Z,- ericvennemeyer submitted pull request review: [3476](https://github.com/hackforla/website/pull/3476#pullrequestreview-1101365344) at 2022-09-08 01:19 PM PDT -ericvennemeyer,2022-09-12T23:22:13Z,- ericvennemeyer submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1104940196) at 2022-09-12 04:22 PM PDT -ericvennemeyer,2022-09-13T22:50:27Z,- ericvennemeyer commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246025009) at 2022-09-13 03:50 PM PDT -ericvennemeyer,2022-09-13T23:09:48Z,- ericvennemeyer commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246039385) at 2022-09-13 04:09 PM PDT -ericvennemeyer,2022-09-13T23:41:44Z,- ericvennemeyer commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1246059239) at 2022-09-13 04:41 PM PDT -erikaBell,2021-03-22T00:02:37Z,- erikaBell assigned to issue: [1021](https://github.com/hackforla/website/issues/1021#event-4455740746) at 2021-03-21 05:02 PM PDT -erikaBell,2021-03-22T16:55:55Z,- erikaBell opened pull request: [1291](https://github.com/hackforla/website/pull/1291) at 2021-03-22 09:55 AM PDT -erikaBell,2021-03-22T18:30:44Z,- erikaBell pull request merged: [1291](https://github.com/hackforla/website/pull/1291#event-4491875786) at 2021-03-22 11:30 AM PDT -erikaBell,2021-03-22T19:20:11Z,- erikaBell assigned to issue: [1261](https://github.com/hackforla/website/issues/1261) at 2021-03-22 12:20 PM PDT -erikaBell,2021-03-22T19:52:53Z,- erikaBell opened pull request: [1305](https://github.com/hackforla/website/pull/1305) at 2021-03-22 12:52 PM PDT -erikaBell,2021-03-22T20:04:42Z,- erikaBell assigned to issue: [1045](https://github.com/hackforla/website/issues/1045#event-4380102816) at 2021-03-22 01:04 PM PDT -erikaBell,2021-03-22T20:54:27Z,- erikaBell pull request merged: [1305](https://github.com/hackforla/website/pull/1305#event-4492495788) at 2021-03-22 01:54 PM PDT -erikaBell,2021-03-22T22:49:49Z,- erikaBell opened pull request: [1306](https://github.com/hackforla/website/pull/1306) at 2021-03-22 03:49 PM PDT -erikaBell,2021-03-23T17:11:44Z,- erikaBell pull request merged: [1306](https://github.com/hackforla/website/pull/1306#event-4497498692) at 2021-03-23 10:11 AM PDT -erikaBell,2021-03-23T18:41:36Z,- erikaBell assigned to issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-803512443) at 2021-03-23 11:41 AM PDT -erikaBell,2021-03-23T21:15:13Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-805266006) at 2021-03-23 02:15 PM PDT -erikaBell,2021-03-23T21:41:09Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-805284629) at 2021-03-23 02:41 PM PDT -erikaBell,2021-03-24T02:33:38Z,- erikaBell closed issue by PR 1318: [1155](https://github.com/hackforla/website/issues/1155#event-4499433238) at 2021-03-23 07:33 PM PDT -erikaBell,2021-03-24T21:15:42Z,- erikaBell closed issue by PR 1320: [1164](https://github.com/hackforla/website/issues/1164#event-4504506872) at 2021-03-24 02:15 PM PDT -erikaBell,2021-03-24T21:15:47Z,- erikaBell commented on pull request: [1320](https://github.com/hackforla/website/pull/1320#issuecomment-806191295) at 2021-03-24 02:15 PM PDT -erikaBell,2021-03-28T16:10:17Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-808917933) at 2021-03-28 09:10 AM PDT -erikaBell,2021-04-04T16:51:33Z,- erikaBell commented on issue: [1201](https://github.com/hackforla/website/issues/1201#issuecomment-813063958) at 2021-04-04 09:51 AM PDT -erikaBell,2021-04-04T20:06:01Z,- erikaBell opened issue: [1353](https://github.com/hackforla/website/issues/1353) at 2021-04-04 01:06 PM PDT -erikaBell,2021-04-04T20:13:45Z,- erikaBell opened pull request: [1354](https://github.com/hackforla/website/pull/1354) at 2021-04-04 01:13 PM PDT -erikaBell,2021-04-04T20:15:21Z,- erikaBell assigned to issue: [1353](https://github.com/hackforla/website/issues/1353) at 2021-04-04 01:15 PM PDT -erikaBell,2021-04-05T00:01:28Z,- erikaBell pull request merged: [1354](https://github.com/hackforla/website/pull/1354#event-4549633393) at 2021-04-04 05:01 PM PDT -erikaBell,2021-04-06T03:29:34Z,- erikaBell commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-813795555) at 2021-04-05 08:29 PM PDT -erikaBell,2021-04-06T16:42:33Z,- erikaBell commented on issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814267789) at 2021-04-06 09:42 AM PDT -erikaBell,2021-04-07T04:32:21Z,- erikaBell assigned to issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-803543032) at 2021-04-06 09:32 PM PDT -erikaBell,2021-04-07T04:38:07Z,- erikaBell unassigned from issue: [1353](https://github.com/hackforla/website/issues/1353#issuecomment-814273649) at 2021-04-06 09:38 PM PDT -erikaBell,2021-04-07T06:08:55Z,- erikaBell commented on pull request: [1362](https://github.com/hackforla/website/pull/1362#issuecomment-814630564) at 2021-04-06 11:08 PM PDT -erikaBell,2021-04-07T18:23:09Z,- erikaBell commented on pull request: [1362](https://github.com/hackforla/website/pull/1362#issuecomment-815126709) at 2021-04-07 11:23 AM PDT -erikaBell,2021-04-07T18:39:43Z,- erikaBell commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-815137422) at 2021-04-07 11:39 AM PDT -erikaBell,2021-04-07T18:40:39Z,- erikaBell commented on pull request: [1364](https://github.com/hackforla/website/pull/1364#issuecomment-815138015) at 2021-04-07 11:40 AM PDT -erikaBell,2021-04-07T19:06:05Z,- erikaBell commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-815155274) at 2021-04-07 12:06 PM PDT -erikaBell,2021-04-08T00:36:34Z,- erikaBell commented on pull request: [1365](https://github.com/hackforla/website/pull/1365#issuecomment-815363512) at 2021-04-07 05:36 PM PDT -erikaBell,2021-04-08T01:12:14Z,- erikaBell commented on pull request: [1361](https://github.com/hackforla/website/pull/1361#issuecomment-815374990) at 2021-04-07 06:12 PM PDT -erikaBell,2021-04-08T01:34:42Z,- erikaBell commented on pull request: [1369](https://github.com/hackforla/website/pull/1369#issuecomment-815382338) at 2021-04-07 06:34 PM PDT -erikaBell,2021-04-08T03:21:07Z,- erikaBell opened pull request: [1377](https://github.com/hackforla/website/pull/1377) at 2021-04-07 08:21 PM PDT -erikaBell,2021-04-09T18:40:07Z,- erikaBell assigned to issue: [1284](https://github.com/hackforla/website/issues/1284#issuecomment-803653980) at 2021-04-09 11:40 AM PDT -erikaBell,2021-04-09T18:47:24Z,- erikaBell assigned to issue: [1336](https://github.com/hackforla/website/issues/1336) at 2021-04-09 11:47 AM PDT -erikaBell,2021-04-09T20:08:03Z,- erikaBell commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-816939161) at 2021-04-09 01:08 PM PDT -erikaBell,2021-04-10T02:47:55Z,- erikaBell commented on issue: [1336](https://github.com/hackforla/website/issues/1336#issuecomment-817066633) at 2021-04-09 07:47 PM PDT -erikaBell,2021-04-10T03:26:56Z,- erikaBell opened pull request: [1386](https://github.com/hackforla/website/pull/1386) at 2021-04-09 08:26 PM PDT -erikaBell,2021-04-10T03:30:53Z,- erikaBell submitted pull request review: [1362](https://github.com/hackforla/website/pull/1362#pullrequestreview-632885019) at 2021-04-09 08:30 PM PDT -erikaBell,2021-04-10T04:53:22Z,- erikaBell pull request merged: [1377](https://github.com/hackforla/website/pull/1377#event-4577091390) at 2021-04-09 09:53 PM PDT -erikaBell,2021-04-10T16:18:58Z,- erikaBell opened issue: [1388](https://github.com/hackforla/website/issues/1388) at 2021-04-10 09:18 AM PDT -erikaBell,2021-04-10T16:19:13Z,- erikaBell assigned to issue: [1388](https://github.com/hackforla/website/issues/1388) at 2021-04-10 09:19 AM PDT -erikaBell,2021-04-10T17:20:18Z,- erikaBell commented on issue: [1388](https://github.com/hackforla/website/issues/1388#issuecomment-817173966) at 2021-04-10 10:20 AM PDT -erikaBell,2021-04-10T17:27:15Z,- erikaBell opened pull request: [1389](https://github.com/hackforla/website/pull/1389) at 2021-04-10 10:27 AM PDT -erikaBell,2021-04-10T17:48:07Z,- erikaBell submitted pull request review: [1387](https://github.com/hackforla/website/pull/1387#pullrequestreview-632940437) at 2021-04-10 10:48 AM PDT -erikaBell,2021-04-10T21:37:29Z,- erikaBell commented on pull request: [1386](https://github.com/hackforla/website/pull/1386#issuecomment-817205553) at 2021-04-10 02:37 PM PDT -erikaBell,2021-04-10T23:01:44Z,- erikaBell submitted pull request review: [1391](https://github.com/hackforla/website/pull/1391#pullrequestreview-632958659) at 2021-04-10 04:01 PM PDT -erikaBell,2021-04-10T23:04:02Z,- erikaBell commented on pull request: [1391](https://github.com/hackforla/website/pull/1391#issuecomment-817213799) at 2021-04-10 04:04 PM PDT -erikaBell,2021-04-10T23:04:08Z,- erikaBell pull request closed w/o merging: [1389](https://github.com/hackforla/website/pull/1389#event-4577958315) at 2021-04-10 04:04 PM PDT -erikaBell,2021-04-11T16:38:04Z,- erikaBell commented on issue: [1284](https://github.com/hackforla/website/issues/1284#issuecomment-817335544) at 2021-04-11 09:38 AM PDT -erikaBell,2021-04-12T21:04:32Z,- erikaBell submitted pull request review: [1397](https://github.com/hackforla/website/pull/1397#pullrequestreview-633964963) at 2021-04-12 02:04 PM PDT -erikaBell,2021-04-12T21:30:02Z,- erikaBell submitted pull request review: [1397](https://github.com/hackforla/website/pull/1397#pullrequestreview-633982301) at 2021-04-12 02:30 PM PDT -erikaBell,2021-04-12T21:46:29Z,- erikaBell submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-633992682) at 2021-04-12 02:46 PM PDT -erikaBell,2021-04-12T21:51:42Z,- erikaBell commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818266715) at 2021-04-12 02:51 PM PDT -erikaBell,2021-04-13T00:11:43Z,- erikaBell commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818323236) at 2021-04-12 05:11 PM PDT -erikaBell,2021-04-13T00:15:28Z,- erikaBell commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-818324571) at 2021-04-12 05:15 PM PDT -erikaBell,2021-04-13T01:07:13Z,- erikaBell submitted pull request review: [1399](https://github.com/hackforla/website/pull/1399#pullrequestreview-634089320) at 2021-04-12 06:07 PM PDT -erikaBell,2021-04-13T01:55:39Z,- erikaBell opened pull request: [1401](https://github.com/hackforla/website/pull/1401) at 2021-04-12 06:55 PM PDT -erikaBell,2021-04-13T20:39:28Z,- erikaBell pull request merged: [1386](https://github.com/hackforla/website/pull/1386#event-4590174868) at 2021-04-13 01:39 PM PDT -erikaBell,2021-04-14T01:38:47Z,- erikaBell assigned to issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-818409060) at 2021-04-13 06:38 PM PDT -erikaBell,2021-04-14T02:13:49Z,- erikaBell commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-819171010) at 2021-04-13 07:13 PM PDT -erikaBell,2021-04-14T02:29:38Z,- erikaBell commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819176077) at 2021-04-13 07:29 PM PDT -erikaBell,2021-04-14T02:33:14Z,- erikaBell commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-819177126) at 2021-04-13 07:33 PM PDT -erikaBell,2021-04-14T02:33:14Z,- erikaBell closed issue as completed: [1286](https://github.com/hackforla/website/issues/1286#event-4591103744) at 2021-04-13 07:33 PM PDT -erikaBell,2021-04-14T05:43:21Z,- erikaBell commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-819244495) at 2021-04-13 10:43 PM PDT -erikaBell,2021-04-14T05:46:34Z,- erikaBell commented on pull request: [1399](https://github.com/hackforla/website/pull/1399#issuecomment-819245786) at 2021-04-13 10:46 PM PDT -erikaBell,2021-04-14T21:16:47Z,- erikaBell commented on issue: [1313](https://github.com/hackforla/website/issues/1313#issuecomment-819838458) at 2021-04-14 02:16 PM PDT -erikaBell,2021-04-14T21:38:27Z,- erikaBell submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-636102238) at 2021-04-14 02:38 PM PDT -erikaBell,2021-04-14T21:49:09Z,- erikaBell commented on pull request: [1403](https://github.com/hackforla/website/pull/1403#issuecomment-819870657) at 2021-04-14 02:49 PM PDT -erikaBell,2021-04-14T21:57:15Z,- erikaBell closed issue by PR 1403: [1152](https://github.com/hackforla/website/issues/1152#event-4596031306) at 2021-04-14 02:57 PM PDT -erikaBell,2021-04-14T22:10:28Z,- erikaBell commented on pull request: [1403](https://github.com/hackforla/website/pull/1403#issuecomment-819881249) at 2021-04-14 03:10 PM PDT -erikaBell,2021-04-15T01:59:45Z,- erikaBell pull request merged: [1401](https://github.com/hackforla/website/pull/1401#event-4596666068) at 2021-04-14 06:59 PM PDT -erikaBell,2021-04-15T05:49:33Z,- erikaBell closed issue by PR 1397: [1345](https://github.com/hackforla/website/issues/1345#event-4597201805) at 2021-04-14 10:49 PM PDT -erikaBell,2021-04-15T07:21:40Z,- erikaBell commented on pull request: [1406](https://github.com/hackforla/website/pull/1406#issuecomment-820183092) at 2021-04-15 12:21 AM PDT -erikaBell,2021-04-15T07:22:28Z,- erikaBell commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-820183593) at 2021-04-15 12:22 AM PDT -erikaBell,2021-04-15T19:35:55Z,- erikaBell commented on pull request: [1409](https://github.com/hackforla/website/pull/1409#issuecomment-820682625) at 2021-04-15 12:35 PM PDT -erikaBell,2021-04-15T19:46:04Z,- erikaBell submitted pull request review: [1409](https://github.com/hackforla/website/pull/1409#pullrequestreview-637068502) at 2021-04-15 12:46 PM PDT -erikaBell,2021-04-16T01:47:53Z,- erikaBell submitted pull request review: [1408](https://github.com/hackforla/website/pull/1408#pullrequestreview-637271767) at 2021-04-15 06:47 PM PDT -erikaBell,2021-04-16T01:51:19Z,- erikaBell closed issue as completed: [1353](https://github.com/hackforla/website/issues/1353#event-4602375752) at 2021-04-15 06:51 PM PDT -erikaBell,2021-04-16T02:05:05Z,- erikaBell submitted pull request review: [1408](https://github.com/hackforla/website/pull/1408#pullrequestreview-637277182) at 2021-04-15 07:05 PM PDT -erikaBell,2021-04-16T02:08:12Z,- erikaBell closed issue by PR 1408: [1090](https://github.com/hackforla/website/issues/1090#event-4602438831) at 2021-04-15 07:08 PM PDT -erikaBell,2021-04-16T19:52:05Z,- erikaBell submitted pull request review: [1409](https://github.com/hackforla/website/pull/1409#pullrequestreview-638040984) at 2021-04-16 12:52 PM PDT -erikaBell,2021-04-18T04:38:40Z,- erikaBell submitted pull request review: [1409](https://github.com/hackforla/website/pull/1409#pullrequestreview-638292689) at 2021-04-17 09:38 PM PDT -erikaBell,2021-04-18T07:25:35Z,- erikaBell submitted pull request review: [1412](https://github.com/hackforla/website/pull/1412#pullrequestreview-638301277) at 2021-04-18 12:25 AM PDT -erikaBell,2021-04-18T16:26:43Z,- erikaBell closed issue by PR 1362: [1257](https://github.com/hackforla/website/issues/1257#event-4609260011) at 2021-04-18 09:26 AM PDT -erikaBell,2021-04-18T18:55:10Z,- erikaBell commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-18 11:55 AM PDT -erikaBell,2021-04-18T19:21:42Z,- erikaBell opened issue: [1418](https://github.com/hackforla/website/issues/1418) at 2021-04-18 12:21 PM PDT -erikaBell,2021-04-18T20:11:03Z,- erikaBell submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-638363401) at 2021-04-18 01:11 PM PDT -erikaBell,2021-04-19T01:03:58Z,- erikaBell submitted pull request review: [1420](https://github.com/hackforla/website/pull/1420#pullrequestreview-638399778) at 2021-04-18 06:03 PM PDT -erikaBell,2021-04-21T00:37:46Z,- erikaBell submitted pull request review: [1422](https://github.com/hackforla/website/pull/1422#pullrequestreview-640538362) at 2021-04-20 05:37 PM PDT -erikaBell,2021-04-21T17:17:00Z,- erikaBell submitted pull request review: [1394](https://github.com/hackforla/website/pull/1394#pullrequestreview-641342615) at 2021-04-21 10:17 AM PDT -erikaBell,2021-04-21T17:17:11Z,- erikaBell closed issue by PR 1394: [1142](https://github.com/hackforla/website/issues/1142#event-4626303991) at 2021-04-21 10:17 AM PDT -erikaBell,2021-04-21T17:23:08Z,- erikaBell commented on pull request: [1428](https://github.com/hackforla/website/pull/1428#issuecomment-824229236) at 2021-04-21 10:23 AM PDT -erikaBell,2021-04-22T16:13:39Z,- erikaBell submitted pull request review: [1429](https://github.com/hackforla/website/pull/1429#pullrequestreview-642408467) at 2021-04-22 09:13 AM PDT -erikaBell,2021-04-22T16:13:47Z,- erikaBell closed issue by PR 1429: [1150](https://github.com/hackforla/website/issues/1150#event-4631885598) at 2021-04-22 09:13 AM PDT -erikaBell,2021-04-23T16:17:56Z,- erikaBell opened pull request: [1437](https://github.com/hackforla/website/pull/1437) at 2021-04-23 09:17 AM PDT -erikaBell,2021-04-23T16:20:06Z,- erikaBell commented on pull request: [1437](https://github.com/hackforla/website/pull/1437#issuecomment-825768637) at 2021-04-23 09:20 AM PDT -erikaBell,2021-04-23T16:27:23Z,- erikaBell submitted pull request review: [1419](https://github.com/hackforla/website/pull/1419#pullrequestreview-643472207) at 2021-04-23 09:27 AM PDT -erikaBell,2021-04-23T16:34:01Z,- erikaBell closed issue by PR 1419: [1322](https://github.com/hackforla/website/issues/1322#event-4637855212) at 2021-04-23 09:34 AM PDT -erikaBell,2021-04-23T16:48:59Z,- erikaBell submitted pull request review: [1438](https://github.com/hackforla/website/pull/1438#pullrequestreview-643489349) at 2021-04-23 09:48 AM PDT -erikaBell,2021-04-23T17:09:29Z,- erikaBell opened issue: [1439](https://github.com/hackforla/website/issues/1439) at 2021-04-23 10:09 AM PDT -erikaBell,2021-04-23T18:01:24Z,- erikaBell opened pull request: [1440](https://github.com/hackforla/website/pull/1440) at 2021-04-23 11:01 AM PDT -erikaBell,2021-04-23T18:04:25Z,- erikaBell pull request merged: [1440](https://github.com/hackforla/website/pull/1440#event-4638215999) at 2021-04-23 11:04 AM PDT -erikaBell,2021-04-24T01:58:56Z,- erikaBell opened pull request: [1448](https://github.com/hackforla/website/pull/1448) at 2021-04-23 06:58 PM PDT -erikaBell,2021-04-24T01:59:21Z,- erikaBell commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826016926) at 2021-04-23 06:59 PM PDT -erikaBell,2021-04-24T03:33:18Z,- erikaBell commented on pull request: [1448](https://github.com/hackforla/website/pull/1448#issuecomment-826027204) at 2021-04-23 08:33 PM PDT -erikaBell,2021-04-24T04:12:09Z,- erikaBell submitted pull request review: [1433](https://github.com/hackforla/website/pull/1433#pullrequestreview-643759505) at 2021-04-23 09:12 PM PDT -erikaBell,2021-04-24T04:23:37Z,- erikaBell submitted pull request review: [1449](https://github.com/hackforla/website/pull/1449#pullrequestreview-643760244) at 2021-04-23 09:23 PM PDT -erikaBell,2021-04-24T04:23:56Z,- erikaBell submitted pull request review: [1449](https://github.com/hackforla/website/pull/1449#pullrequestreview-643760273) at 2021-04-23 09:23 PM PDT -erikaBell,2021-04-24T04:24:26Z,- erikaBell closed issue by PR 1449: [1151](https://github.com/hackforla/website/issues/1151#event-4639519339) at 2021-04-23 09:24 PM PDT -erikaBell,2021-04-24T19:12:23Z,- erikaBell commented on pull request: [1454](https://github.com/hackforla/website/pull/1454#issuecomment-826140225) at 2021-04-24 12:12 PM PDT -erikaBell,2021-04-24T19:12:44Z,- erikaBell closed issue as completed: [1453](https://github.com/hackforla/website/issues/1453#event-4640280822) at 2021-04-24 12:12 PM PDT -erikaBell,2021-04-24T19:17:16Z,- erikaBell pull request closed w/o merging: [1437](https://github.com/hackforla/website/pull/1437#event-4640284434) at 2021-04-24 12:17 PM PDT -erikaBell,2021-04-24T19:19:08Z,- erikaBell submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-644059867) at 2021-04-24 12:19 PM PDT -erikaBell,2021-04-24T23:38:48Z,- erikaBell submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-644075000) at 2021-04-24 04:38 PM PDT -erikaBell,2021-04-24T23:45:23Z,- erikaBell submitted pull request review: [1451](https://github.com/hackforla/website/pull/1451#pullrequestreview-644075299) at 2021-04-24 04:45 PM PDT -erikaBell,2021-04-24T23:45:37Z,- erikaBell closed issue by PR 1451: [1450](https://github.com/hackforla/website/issues/1450#event-4640474103) at 2021-04-24 04:45 PM PDT -erikaBell,2021-04-25T19:45:40Z,- erikaBell opened pull request: [1466](https://github.com/hackforla/website/pull/1466) at 2021-04-25 12:45 PM PDT -erikaBell,2021-04-25T19:52:50Z,- erikaBell pull request merged: [1466](https://github.com/hackforla/website/pull/1466#event-4641573126) at 2021-04-25 12:52 PM PDT -erikaBell,2021-04-25T20:01:46Z,- erikaBell pull request closed w/o merging: [1448](https://github.com/hackforla/website/pull/1448#event-4641581919) at 2021-04-25 01:01 PM PDT -erikaBell,2021-04-25T20:02:44Z,- erikaBell closed issue as completed: [1431](https://github.com/hackforla/website/issues/1431#event-4641582841) at 2021-04-25 01:02 PM PDT -erikaBell,2021-04-25T20:02:55Z,- erikaBell closed issue as completed: [1313](https://github.com/hackforla/website/issues/1313#event-4641583006) at 2021-04-25 01:02 PM PDT -erikaBell,2021-04-25T20:03:00Z,- erikaBell commented on pull request: [1466](https://github.com/hackforla/website/pull/1466#issuecomment-826381690) at 2021-04-25 01:03 PM PDT -erikaBell,2021-04-25T20:14:40Z,- erikaBell submitted pull request review: [1464](https://github.com/hackforla/website/pull/1464#pullrequestreview-644177301) at 2021-04-25 01:14 PM PDT -erikaBell,2021-04-25T20:14:45Z,- erikaBell closed issue by PR 1464: [1342](https://github.com/hackforla/website/issues/1342#event-4641594256) at 2021-04-25 01:14 PM PDT -erikaBell,2021-04-25T20:18:26Z,- erikaBell submitted pull request review: [1465](https://github.com/hackforla/website/pull/1465#pullrequestreview-644177586) at 2021-04-25 01:18 PM PDT -erikaBell,2021-04-25T20:18:43Z,- erikaBell closed issue by PR 1465: [1022](https://github.com/hackforla/website/issues/1022#event-4641597760) at 2021-04-25 01:18 PM PDT -erikaBell,2021-04-27T02:07:59Z,- erikaBell submitted pull request review: [1424](https://github.com/hackforla/website/pull/1424#pullrequestreview-645279619) at 2021-04-26 07:07 PM PDT -erikaBell,2021-04-27T02:24:00Z,- erikaBell submitted pull request review: [1468](https://github.com/hackforla/website/pull/1468#pullrequestreview-645289441) at 2021-04-26 07:24 PM PDT -erikaBell,2021-04-27T05:53:26Z,- erikaBell submitted pull request review: [1433](https://github.com/hackforla/website/pull/1433#pullrequestreview-645461050) at 2021-04-26 10:53 PM PDT -erikaBell,2021-04-27T05:53:38Z,- erikaBell closed issue by PR 1433: [1414](https://github.com/hackforla/website/issues/1414#event-4648730041) at 2021-04-26 10:53 PM PDT -erikaBell,2021-04-27T18:50:18Z,- erikaBell submitted pull request review: [1470](https://github.com/hackforla/website/pull/1470#pullrequestreview-646241315) at 2021-04-27 11:50 AM PDT -erikaBell,2021-04-27T18:55:04Z,- erikaBell commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-827840036) at 2021-04-27 11:55 AM PDT -erikaBell,2021-04-27T18:55:09Z,- erikaBell closed issue by PR 1470: [1460](https://github.com/hackforla/website/issues/1460#event-4652617931) at 2021-04-27 11:55 AM PDT -erikaBell,2021-04-27T18:57:41Z,- erikaBell commented on pull request: [1472](https://github.com/hackforla/website/pull/1472#issuecomment-827841736) at 2021-04-27 11:57 AM PDT -erikaBell,2021-04-27T19:00:17Z,- erikaBell commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-827843239) at 2021-04-27 12:00 PM PDT -erikaBell,2021-04-28T04:12:39Z,- erikaBell submitted pull request review: [1472](https://github.com/hackforla/website/pull/1472#pullrequestreview-646579602) at 2021-04-27 09:12 PM PDT -erikaBell,2021-04-28T04:12:45Z,- erikaBell closed issue by PR 1472: [1459](https://github.com/hackforla/website/issues/1459#event-4654313351) at 2021-04-27 09:12 PM PDT -erikaBell,2021-04-28T04:17:34Z,- erikaBell submitted pull request review: [1480](https://github.com/hackforla/website/pull/1480#pullrequestreview-646581137) at 2021-04-27 09:17 PM PDT -erikaBell,2021-04-28T04:18:48Z,- erikaBell closed issue by PR 1480: [1315](https://github.com/hackforla/website/issues/1315#event-4654327381) at 2021-04-27 09:18 PM PDT -erikaBell,2021-04-28T04:32:23Z,- erikaBell submitted pull request review: [1484](https://github.com/hackforla/website/pull/1484#pullrequestreview-646585953) at 2021-04-27 09:32 PM PDT -erikaBell,2021-04-28T04:38:18Z,- erikaBell submitted pull request review: [1428](https://github.com/hackforla/website/pull/1428#pullrequestreview-646587872) at 2021-04-27 09:38 PM PDT -erikaBell,2021-04-28T04:38:27Z,- erikaBell closed issue by PR 1428: [1415](https://github.com/hackforla/website/issues/1415#event-4654371832) at 2021-04-27 09:38 PM PDT -erikaBell,2021-04-28T21:17:19Z,- erikaBell submitted pull request review: [1484](https://github.com/hackforla/website/pull/1484#pullrequestreview-647645806) at 2021-04-28 02:17 PM PDT -erikaBell,2021-04-28T21:21:45Z,- erikaBell submitted pull request review: [1467](https://github.com/hackforla/website/pull/1467#pullrequestreview-647648860) at 2021-04-28 02:21 PM PDT -erikaBell,2021-04-28T21:23:10Z,- erikaBell closed issue by PR 1467: [1335](https://github.com/hackforla/website/issues/1335#event-4659299889) at 2021-04-28 02:23 PM PDT -erikaBell,2021-04-28T21:25:11Z,- erikaBell commented on pull request: [1455](https://github.com/hackforla/website/pull/1455#issuecomment-828790237) at 2021-04-28 02:25 PM PDT -erikaBell,2021-04-28T21:32:49Z,- erikaBell submitted pull request review: [1486](https://github.com/hackforla/website/pull/1486#pullrequestreview-647656361) at 2021-04-28 02:32 PM PDT -erikaBell,2021-04-28T21:37:18Z,- erikaBell assigned to issue: [1425](https://github.com/hackforla/website/issues/1425) at 2021-04-28 02:37 PM PDT -erikaBell,2021-04-29T00:29:16Z,- erikaBell submitted pull request review: [1486](https://github.com/hackforla/website/pull/1486#pullrequestreview-647742123) at 2021-04-28 05:29 PM PDT -erikaBell,2021-04-29T00:29:21Z,- erikaBell closed issue by PR 1486: [1444](https://github.com/hackforla/website/issues/1444#event-4659853078) at 2021-04-28 05:29 PM PDT -erikaBell,2021-04-29T00:33:12Z,- erikaBell closed issue by PR 1490: [1489](https://github.com/hackforla/website/issues/1489#event-4659862320) at 2021-04-28 05:33 PM PDT -erikaBell,2021-04-29T18:55:14Z,- erikaBell assigned to issue: [1432](https://github.com/hackforla/website/issues/1432) at 2021-04-29 11:55 AM PDT -erikaBell,2021-04-30T16:37:11Z,- erikaBell submitted pull request review: [1430](https://github.com/hackforla/website/pull/1430#pullrequestreview-649393893) at 2021-04-30 09:37 AM PDT -erikaBell,2021-04-30T16:37:16Z,- erikaBell closed issue by PR 1430: [861](https://github.com/hackforla/website/issues/861#event-4670551283) at 2021-04-30 09:37 AM PDT -erikaBell,2021-04-30T16:38:18Z,- erikaBell submitted pull request review: [1455](https://github.com/hackforla/website/pull/1455#pullrequestreview-649394785) at 2021-04-30 09:38 AM PDT -erikaBell,2021-04-30T16:38:24Z,- erikaBell closed issue by PR 1455: [1326](https://github.com/hackforla/website/issues/1326#event-4670557703) at 2021-04-30 09:38 AM PDT -erikaBell,2021-04-30T17:00:48Z,- erikaBell commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-830231334) at 2021-04-30 10:00 AM PDT -erikaBell,2021-04-30T17:04:42Z,- erikaBell submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-649415573) at 2021-04-30 10:04 AM PDT -erikaBell,2021-04-30T17:06:09Z,- erikaBell submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-649416655) at 2021-04-30 10:06 AM PDT -erikaBell,2021-04-30T17:44:02Z,- erikaBell submitted pull request review: [1495](https://github.com/hackforla/website/pull/1495#pullrequestreview-649445908) at 2021-04-30 10:44 AM PDT -erikaBell,2021-04-30T17:44:08Z,- erikaBell closed issue by PR 1495: [1462](https://github.com/hackforla/website/issues/1462#event-4670914496) at 2021-04-30 10:44 AM PDT -erikaBell,2021-04-30T18:14:28Z,- erikaBell submitted pull request review: [1493](https://github.com/hackforla/website/pull/1493#pullrequestreview-649469259) at 2021-04-30 11:14 AM PDT -erikaBell,2021-04-30T18:17:00Z,- erikaBell commented on issue: [1425](https://github.com/hackforla/website/issues/1425#issuecomment-830274970) at 2021-04-30 11:17 AM PDT -erikaBell,2021-04-30T18:18:53Z,- erikaBell commented on pull request: [1492](https://github.com/hackforla/website/pull/1492#issuecomment-830276012) at 2021-04-30 11:18 AM PDT -erikaBell,2021-05-01T00:16:15Z,- erikaBell closed issue by PR 1468: [1393](https://github.com/hackforla/website/issues/1393#event-4672539077) at 2021-04-30 05:16 PM PDT -erikaBell,2021-05-02T16:12:22Z,- erikaBell submitted pull request review: [1484](https://github.com/hackforla/website/pull/1484#pullrequestreview-649931032) at 2021-05-02 09:12 AM PDT -erikaBell,2021-05-02T16:12:29Z,- erikaBell closed issue by PR 1484: [1463](https://github.com/hackforla/website/issues/1463#event-4674970273) at 2021-05-02 09:12 AM PDT -erikaBell,2021-05-02T16:16:48Z,- erikaBell submitted pull request review: [1493](https://github.com/hackforla/website/pull/1493#pullrequestreview-649931411) at 2021-05-02 09:16 AM PDT -erikaBell,2021-05-02T16:17:39Z,- erikaBell closed issue by PR 1493: [1249](https://github.com/hackforla/website/issues/1249#event-4674975713) at 2021-05-02 09:17 AM PDT -erikaBell,2021-05-02T16:20:35Z,- erikaBell opened issue: [1500](https://github.com/hackforla/website/issues/1500) at 2021-05-02 09:20 AM PDT -erikaBell,2021-05-03T20:58:23Z,- erikaBell opened pull request: [1502](https://github.com/hackforla/website/pull/1502) at 2021-05-03 01:58 PM PDT -erikaBell,2021-05-04T01:17:56Z,- erikaBell submitted pull request review: [1503](https://github.com/hackforla/website/pull/1503#pullrequestreview-650831670) at 2021-05-03 06:17 PM PDT -erikaBell,2021-05-04T19:10:51Z,- erikaBell commented on pull request: [1502](https://github.com/hackforla/website/pull/1502#issuecomment-832178003) at 2021-05-04 12:10 PM PDT -erikaBell,2021-05-04T20:48:49Z,- erikaBell submitted pull request review: [1503](https://github.com/hackforla/website/pull/1503#pullrequestreview-651655610) at 2021-05-04 01:48 PM PDT -erikaBell,2021-05-04T20:52:41Z,- erikaBell submitted pull request review: [1494](https://github.com/hackforla/website/pull/1494#pullrequestreview-651658513) at 2021-05-04 01:52 PM PDT -erikaBell,2021-05-04T20:52:46Z,- erikaBell closed issue by PR 1494: [1488](https://github.com/hackforla/website/issues/1488#event-4685633336) at 2021-05-04 01:52 PM PDT -erikaBell,2021-05-04T21:02:48Z,- erikaBell submitted pull request review: [1496](https://github.com/hackforla/website/pull/1496#pullrequestreview-651666012) at 2021-05-04 02:02 PM PDT -erikaBell,2021-05-04T21:37:54Z,- erikaBell commented on pull request: [1502](https://github.com/hackforla/website/pull/1502#issuecomment-832265066) at 2021-05-04 02:37 PM PDT -erikaBell,2021-05-05T22:47:47Z,- erikaBell opened pull request: [1516](https://github.com/hackforla/website/pull/1516) at 2021-05-05 03:47 PM PDT -erikaBell,2021-05-05T22:48:53Z,- erikaBell pull request closed w/o merging: [1502](https://github.com/hackforla/website/pull/1502#event-4691916857) at 2021-05-05 03:48 PM PDT -erikaBell,2021-05-05T23:52:07Z,- erikaBell submitted pull request review: [1517](https://github.com/hackforla/website/pull/1517#pullrequestreview-652858501) at 2021-05-05 04:52 PM PDT -erikaBell,2021-05-05T23:52:12Z,- erikaBell closed issue by PR 1517: [1457](https://github.com/hackforla/website/issues/1457#event-4692070518) at 2021-05-05 04:52 PM PDT -erikaBell,2021-05-06T00:04:11Z,- erikaBell commented on issue: [1061](https://github.com/hackforla/website/issues/1061#issuecomment-833125650) at 2021-05-05 05:04 PM PDT -erikaBell,2021-05-06T20:00:21Z,- erikaBell submitted pull request review: [1518](https://github.com/hackforla/website/pull/1518#pullrequestreview-653844620) at 2021-05-06 01:00 PM PDT -erikaBell,2021-05-06T20:00:26Z,- erikaBell closed issue by PR 1518: [1512](https://github.com/hackforla/website/issues/1512#event-4697516811) at 2021-05-06 01:00 PM PDT -erikaBell,2021-05-06T20:26:08Z,- erikaBell submitted pull request review: [1509](https://github.com/hackforla/website/pull/1509#pullrequestreview-653864330) at 2021-05-06 01:26 PM PDT -erikaBell,2021-05-06T20:29:07Z,- erikaBell opened pull request: [1520](https://github.com/hackforla/website/pull/1520) at 2021-05-06 01:29 PM PDT -erikaBell,2021-05-06T20:29:44Z,- erikaBell pull request closed w/o merging: [1520](https://github.com/hackforla/website/pull/1520#event-4697668454) at 2021-05-06 01:29 PM PDT -erikaBell,2021-05-06T21:02:19Z,- erikaBell assigned to issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831557350) at 2021-05-06 02:02 PM PDT -erikaBell,2021-05-06T22:39:22Z,- erikaBell opened issue: [1521](https://github.com/hackforla/website/issues/1521) at 2021-05-06 03:39 PM PDT -erikaBell,2021-05-07T17:57:08Z,- erikaBell commented on pull request: [1516](https://github.com/hackforla/website/pull/1516#issuecomment-834657178) at 2021-05-07 10:57 AM PDT -erikaBell,2021-05-07T20:11:28Z,- erikaBell commented on pull request: [1530](https://github.com/hackforla/website/pull/1530#issuecomment-834744789) at 2021-05-07 01:11 PM PDT -erikaBell,2021-05-07T20:20:46Z,- erikaBell pull request merged: [1516](https://github.com/hackforla/website/pull/1516#event-4704462820) at 2021-05-07 01:20 PM PDT -erikaBell,2021-05-07T23:26:10Z,- erikaBell closed issue by PR 1509: [1115](https://github.com/hackforla/website/issues/1115#event-4705185966) at 2021-05-07 04:26 PM PDT -erikaBell,2021-05-07T23:30:58Z,- erikaBell closed issue by PR 1530: [1458](https://github.com/hackforla/website/issues/1458#event-4705201798) at 2021-05-07 04:30 PM PDT -erikaBell,2021-05-08T07:23:57Z,- erikaBell closed issue by PR 1516: [1425](https://github.com/hackforla/website/issues/1425#event-4706746926) at 2021-05-08 12:23 AM PDT -erikaBell,2021-05-08T07:24:05Z,- erikaBell closed issue by PR 1516: [1432](https://github.com/hackforla/website/issues/1432#event-4706747282) at 2021-05-08 12:24 AM PDT -erikaBell,2021-05-08T07:28:49Z,- erikaBell commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-835172088) at 2021-05-08 12:28 AM PDT -erikaBell,2021-05-09T19:41:25Z,- erikaBell submitted pull request review: [1533](https://github.com/hackforla/website/pull/1533#pullrequestreview-655107476) at 2021-05-09 12:41 PM PDT -erikaBell,2021-05-09T23:47:20Z,- erikaBell submitted pull request review: [1533](https://github.com/hackforla/website/pull/1533#pullrequestreview-655126319) at 2021-05-09 04:47 PM PDT -erikaBell,2021-05-09T23:47:44Z,- erikaBell closed issue by PR 1533: [1483](https://github.com/hackforla/website/issues/1483#event-4712268662) at 2021-05-09 04:47 PM PDT -erikaBell,2021-05-10T17:09:17Z,- erikaBell commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-836982217) at 2021-05-10 10:09 AM PDT -erikaBell,2021-05-10T18:12:43Z,- erikaBell commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837076750) at 2021-05-10 11:12 AM PDT -erikaBell,2021-05-10T22:21:47Z,- erikaBell submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-656131075) at 2021-05-10 03:21 PM PDT -erikaBell,2021-05-12T03:52:07Z,- erikaBell submitted pull request review: [1491](https://github.com/hackforla/website/pull/1491#pullrequestreview-657438594) at 2021-05-11 08:52 PM PDT -erikaBell,2021-05-15T15:22:31Z,- erikaBell opened issue: [1543](https://github.com/hackforla/website/issues/1543) at 2021-05-15 08:22 AM PDT -erikaBell,2021-05-15T19:36:42Z,- erikaBell opened pull request: [1544](https://github.com/hackforla/website/pull/1544) at 2021-05-15 12:36 PM PDT -erikaBell,2021-05-15T19:37:21Z,- erikaBell pull request closed w/o merging: [1544](https://github.com/hackforla/website/pull/1544#event-4750329137) at 2021-05-15 12:37 PM PDT -erikaBell,2021-05-15T19:39:03Z,- erikaBell opened pull request: [1545](https://github.com/hackforla/website/pull/1545) at 2021-05-15 12:39 PM PDT -erikaBell,2021-05-15T19:39:31Z,- erikaBell pull request merged: [1545](https://github.com/hackforla/website/pull/1545#event-4750331200) at 2021-05-15 12:39 PM PDT -erikaBell,2021-05-15T19:52:37Z,- erikaBell opened pull request: [1546](https://github.com/hackforla/website/pull/1546) at 2021-05-15 12:52 PM PDT -erikaBell,2021-05-15T19:53:03Z,- erikaBell pull request merged: [1546](https://github.com/hackforla/website/pull/1546#event-4750343661) at 2021-05-15 12:53 PM PDT -erikaBell,2021-05-15T20:04:04Z,- erikaBell commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-841717158) at 2021-05-15 01:04 PM PDT -erikaBell,2021-05-15T20:04:07Z,- erikaBell closed issue as completed: [1130](https://github.com/hackforla/website/issues/1130#event-4750354650) at 2021-05-15 01:04 PM PDT -erikaBell,2021-05-15T22:00:39Z,- erikaBell commented on issue: [1061](https://github.com/hackforla/website/issues/1061#issuecomment-841731418) at 2021-05-15 03:00 PM PDT -erikaBell,2021-05-15T22:04:38Z,- erikaBell commented on issue: [1070](https://github.com/hackforla/website/issues/1070#issuecomment-841731801) at 2021-05-15 03:04 PM PDT -erikaBell,2021-05-15T22:49:28Z,- erikaBell submitted pull request review: [1547](https://github.com/hackforla/website/pull/1547#pullrequestreview-660393614) at 2021-05-15 03:49 PM PDT -erikaBell,2021-05-20T18:10:59Z,- erikaBell submitted pull request review: [1589](https://github.com/hackforla/website/pull/1589#pullrequestreview-664713814) at 2021-05-20 11:10 AM PDT -erikaBell,2021-05-20T18:11:18Z,- erikaBell closed issue by PR 1589: [1542](https://github.com/hackforla/website/issues/1542#event-4775126714) at 2021-05-20 11:11 AM PDT -erikaBell,2021-05-20T18:16:22Z,- erikaBell submitted pull request review: [1547](https://github.com/hackforla/website/pull/1547#pullrequestreview-664718355) at 2021-05-20 11:16 AM PDT -erikaBell,2021-05-20T18:16:41Z,- erikaBell closed issue as completed: [1521](https://github.com/hackforla/website/issues/1521#event-4775151037) at 2021-05-20 11:16 AM PDT -erikaBell,2021-05-20T18:17:58Z,- erikaBell commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-845356292) at 2021-05-20 11:17 AM PDT -erikaBell,2021-05-21T16:04:43Z,- erikaBell submitted pull request review: [1601](https://github.com/hackforla/website/pull/1601#pullrequestreview-665630177) at 2021-05-21 09:04 AM PDT -erikaBell,2021-05-24T02:04:37Z,- erikaBell assigned to issue: [1605](https://github.com/hackforla/website/issues/1605) at 2021-05-23 07:04 PM PDT -erikaBell,2021-05-24T02:24:01Z,- erikaBell opened pull request: [1624](https://github.com/hackforla/website/pull/1624) at 2021-05-23 07:24 PM PDT -erikaBell,2021-05-24T02:46:41Z,- erikaBell assigned to issue: [1607](https://github.com/hackforla/website/issues/1607) at 2021-05-23 07:46 PM PDT -erikaBell,2021-05-24T02:50:35Z,- erikaBell opened pull request: [1625](https://github.com/hackforla/website/pull/1625) at 2021-05-23 07:50 PM PDT -erikaBell,2021-05-24T03:12:54Z,- erikaBell assigned to issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-05-23 08:12 PM PDT -erikaBell,2021-05-24T03:15:54Z,- erikaBell opened pull request: [1626](https://github.com/hackforla/website/pull/1626) at 2021-05-23 08:15 PM PDT -erikaBell,2021-05-25T23:56:46Z,- erikaBell commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-848350650) at 2021-05-25 04:56 PM PDT -erikaBell,2021-05-26T00:14:38Z,- erikaBell assigned to issue: [1606](https://github.com/hackforla/website/issues/1606) at 2021-05-25 05:14 PM PDT -erikaBell,2021-05-26T00:17:44Z,- erikaBell opened pull request: [1637](https://github.com/hackforla/website/pull/1637) at 2021-05-25 05:17 PM PDT -erikaBell,2021-05-26T00:23:18Z,- erikaBell pull request closed w/o merging: [1637](https://github.com/hackforla/website/pull/1637#event-4795977883) at 2021-05-25 05:23 PM PDT -erikaBell,2021-05-26T00:23:31Z,- erikaBell commented on pull request: [1637](https://github.com/hackforla/website/pull/1637#issuecomment-848367847) at 2021-05-25 05:23 PM PDT -erikaBell,2021-05-26T00:31:23Z,- erikaBell opened pull request: [1638](https://github.com/hackforla/website/pull/1638) at 2021-05-25 05:31 PM PDT -erikaBell,2021-05-26T00:41:50Z,- erikaBell assigned to issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-05-25 05:41 PM PDT -erikaBell,2021-05-26T00:50:44Z,- erikaBell opened pull request: [1639](https://github.com/hackforla/website/pull/1639) at 2021-05-25 05:50 PM PDT -erikaBell,2021-05-26T18:10:04Z,- erikaBell pull request closed w/o merging: [1639](https://github.com/hackforla/website/pull/1639#event-4801161254) at 2021-05-26 11:10 AM PDT -erikaBell,2021-05-26T18:10:13Z,- erikaBell pull request closed w/o merging: [1638](https://github.com/hackforla/website/pull/1638#event-4801161999) at 2021-05-26 11:10 AM PDT -erikaBell,2021-05-26T18:10:33Z,- erikaBell pull request closed w/o merging: [1626](https://github.com/hackforla/website/pull/1626#event-4801163533) at 2021-05-26 11:10 AM PDT -erikaBell,2021-05-26T18:13:01Z,- erikaBell unassigned from issue: [1607](https://github.com/hackforla/website/issues/1607) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-26T18:13:14Z,- erikaBell unassigned from issue: [1606](https://github.com/hackforla/website/issues/1606) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-26T18:13:23Z,- erikaBell unassigned from issue: [1605](https://github.com/hackforla/website/issues/1605) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-26T18:13:32Z,- erikaBell unassigned from issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-05-26 11:13 AM PDT -erikaBell,2021-05-27T06:12:17Z,- erikaBell pull request closed w/o merging: [1625](https://github.com/hackforla/website/pull/1625#event-4803505227) at 2021-05-26 11:12 PM PDT -erikaBell,2021-05-27T06:13:41Z,- erikaBell commented on pull request: [1625](https://github.com/hackforla/website/pull/1625#issuecomment-849356165) at 2021-05-26 11:13 PM PDT -erikaBell,2021-05-28T18:13:39Z,- erikaBell commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-850586938) at 2021-05-28 11:13 AM PDT -erikaBell,2021-05-29T18:08:53Z,- erikaBell submitted pull request review: [1628](https://github.com/hackforla/website/pull/1628#pullrequestreview-671764247) at 2021-05-29 11:08 AM PDT -erikaBell,2021-05-29T18:09:02Z,- erikaBell closed issue by PR 1628: [1617](https://github.com/hackforla/website/issues/1617#event-4816302382) at 2021-05-29 11:09 AM PDT -erikaBell,2021-05-29T18:12:40Z,- erikaBell submitted pull request review: [1668](https://github.com/hackforla/website/pull/1668#pullrequestreview-671764514) at 2021-05-29 11:12 AM PDT -erikaBell,2021-05-29T18:13:03Z,- erikaBell closed issue by PR 1668: [1597](https://github.com/hackforla/website/issues/1597#event-4816306039) at 2021-05-29 11:13 AM PDT -erikaBell,2021-05-29T18:34:49Z,- erikaBell submitted pull request review: [1609](https://github.com/hackforla/website/pull/1609#pullrequestreview-671765890) at 2021-05-29 11:34 AM PDT -erikaBell,2021-05-29T18:40:06Z,- erikaBell submitted pull request review: [1627](https://github.com/hackforla/website/pull/1627#pullrequestreview-671766231) at 2021-05-29 11:40 AM PDT -erikaBell,2021-05-29T18:40:19Z,- erikaBell closed issue by PR 1627: [1615](https://github.com/hackforla/website/issues/1615#event-4816330694) at 2021-05-29 11:40 AM PDT -erikaBell,2021-05-30T18:17:09Z,- erikaBell assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -erikaBell,2021-06-01T03:22:33Z,- erikaBell submitted pull request review: [1675](https://github.com/hackforla/website/pull/1675#pullrequestreview-672623890) at 2021-05-31 08:22 PM PDT -erikaBell,2021-06-01T03:34:27Z,- erikaBell submitted pull request review: [1676](https://github.com/hackforla/website/pull/1676#pullrequestreview-672627200) at 2021-05-31 08:34 PM PDT -erikaBell,2021-06-01T03:34:33Z,- erikaBell closed issue by PR 1676: [1456](https://github.com/hackforla/website/issues/1456#event-4822759424) at 2021-05-31 08:34 PM PDT -erikaBell,2021-06-02T19:10:30Z,- erikaBell closed issue by PR 1636: [1608](https://github.com/hackforla/website/issues/1608#event-4833625238) at 2021-06-02 12:10 PM PDT -erikaBell,2021-06-02T19:11:43Z,- erikaBell commented on pull request: [1624](https://github.com/hackforla/website/pull/1624#issuecomment-853315918) at 2021-06-02 12:11 PM PDT -erikaBell,2021-06-02T19:16:32Z,- erikaBell submitted pull request review: [1678](https://github.com/hackforla/website/pull/1678#pullrequestreview-674595392) at 2021-06-02 12:16 PM PDT -erikaBell,2021-06-02T19:16:47Z,- erikaBell closed issue by PR 1678: [1616](https://github.com/hackforla/website/issues/1616#event-4833654941) at 2021-06-02 12:16 PM PDT -erikaBell,2021-06-02T19:19:40Z,- erikaBell submitted pull request review: [1681](https://github.com/hackforla/website/pull/1681#pullrequestreview-674597783) at 2021-06-02 12:19 PM PDT -erikaBell,2021-06-02T19:19:44Z,- erikaBell closed issue by PR 1681: [1592](https://github.com/hackforla/website/issues/1592#event-4833666862) at 2021-06-02 12:19 PM PDT -erikaBell,2021-06-03T18:44:05Z,- erikaBell pull request merged: [1624](https://github.com/hackforla/website/pull/1624#event-4839245304) at 2021-06-03 11:44 AM PDT -erikaBell,2021-06-04T03:24:46Z,- erikaBell assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -erikaBell,2021-06-04T05:15:39Z,- erikaBell assigned to issue: [1687](https://github.com/hackforla/website/issues/1687) at 2021-06-03 10:15 PM PDT -erikaBell,2021-06-04T05:17:44Z,- erikaBell assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-854359323) at 2021-06-03 10:17 PM PDT -erikaBell,2021-06-06T06:18:22Z,- erikaBell closed issue by PR 1675: [1613](https://github.com/hackforla/website/issues/1613#event-4847671918) at 2021-06-05 11:18 PM PDT -erikaBell,2021-06-06T06:30:49Z,- erikaBell submitted pull request review: [1682](https://github.com/hackforla/website/pull/1682#pullrequestreview-676831228) at 2021-06-05 11:30 PM PDT -erikaBell,2021-06-06T06:30:59Z,- erikaBell closed issue by PR 1682: [1612](https://github.com/hackforla/website/issues/1612#event-4847685100) at 2021-06-05 11:30 PM PDT -erikaBell,2021-06-06T06:41:44Z,- erikaBell submitted pull request review: [1683](https://github.com/hackforla/website/pull/1683#pullrequestreview-676831916) at 2021-06-05 11:41 PM PDT -erikaBell,2021-06-06T06:41:50Z,- erikaBell closed issue by PR 1683: [1618](https://github.com/hackforla/website/issues/1618#event-4847698119) at 2021-06-05 11:41 PM PDT -erikaBell,2021-06-06T06:46:52Z,- erikaBell commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-855348805) at 2021-06-05 11:46 PM PDT -erikaBell,2021-06-06T08:49:03Z,- erikaBell unassigned from issue: [1596](https://github.com/hackforla/website/issues/1596) at 2021-06-06 01:49 AM PDT -erikaBell,2021-06-06T19:49:20Z,- erikaBell unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855341896) at 2021-06-06 12:49 PM PDT -erikaBell,2021-06-12T16:32:03Z,- erikaBell unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -erikaBell,2021-06-29T00:16:24Z,- erikaBell assigned to issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-870084891) at 2021-06-28 05:16 PM PDT -erikaBell,2021-07-10T18:18:08Z,- erikaBell commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-877681122) at 2021-07-10 11:18 AM PDT -erikaBell,2021-07-12T15:54:56Z,- erikaBell submitted pull request review: [1924](https://github.com/hackforla/website/pull/1924#pullrequestreview-704280347) at 2021-07-12 08:54 AM PDT -erikaBell,2021-07-12T15:55:48Z,- erikaBell closed issue as completed: [1549](https://github.com/hackforla/website/issues/1549#event-5008410634) at 2021-07-12 08:55 AM PDT -erikaBell,2021-07-12T16:34:35Z,- erikaBell submitted pull request review: [1909](https://github.com/hackforla/website/pull/1909#pullrequestreview-704319949) at 2021-07-12 09:34 AM PDT -erikaBell,2021-07-13T05:23:08Z,- erikaBell submitted pull request review: [1907](https://github.com/hackforla/website/pull/1907#pullrequestreview-704755207) at 2021-07-12 10:23 PM PDT -erikaBell,2021-07-13T05:38:15Z,- erikaBell submitted pull request review: [1912](https://github.com/hackforla/website/pull/1912#pullrequestreview-704761921) at 2021-07-12 10:38 PM PDT -erikaBell,2021-07-13T05:44:06Z,- erikaBell submitted pull request review: [1935](https://github.com/hackforla/website/pull/1935#pullrequestreview-704764687) at 2021-07-12 10:44 PM PDT -erikaBell,2021-07-13T05:44:20Z,- erikaBell closed issue by PR 1935: [1910](https://github.com/hackforla/website/issues/1910#event-5011335647) at 2021-07-12 10:44 PM PDT -erikaBell,2021-07-14T05:15:33Z,- erikaBell submitted pull request review: [1909](https://github.com/hackforla/website/pull/1909#pullrequestreview-705860317) at 2021-07-13 10:15 PM PDT -erikaBell,2021-07-14T05:15:38Z,- erikaBell closed issue by PR 1909: [1824](https://github.com/hackforla/website/issues/1824#event-5017512673) at 2021-07-13 10:15 PM PDT -erikaBell,2021-07-17T18:20:04Z,- erikaBell submitted pull request review: [1952](https://github.com/hackforla/website/pull/1952#pullrequestreview-708960987) at 2021-07-17 11:20 AM PDT -erikaBell,2021-07-17T18:31:53Z,- erikaBell commented on pull request: [1949](https://github.com/hackforla/website/pull/1949#issuecomment-881940562) at 2021-07-17 11:31 AM PDT -erikaBell,2021-07-17T19:05:41Z,- erikaBell submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-708963529) at 2021-07-17 12:05 PM PDT -erikaBell,2021-07-17T19:23:36Z,- erikaBell submitted pull request review: [1949](https://github.com/hackforla/website/pull/1949#pullrequestreview-708964439) at 2021-07-17 12:23 PM PDT -erikaBell,2021-07-17T20:11:43Z,- erikaBell commented on issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-881954109) at 2021-07-17 01:11 PM PDT -erikaBell,2021-07-17T20:34:37Z,- erikaBell opened pull request: [1964](https://github.com/hackforla/website/pull/1964) at 2021-07-17 01:34 PM PDT -erikaBell,2021-07-19T16:50:43Z,- erikaBell submitted pull request review: [1971](https://github.com/hackforla/website/pull/1971#pullrequestreview-709772617) at 2021-07-19 09:50 AM PDT -erikaBell,2021-07-19T16:51:01Z,- erikaBell closed issue by PR 1971: [1875](https://github.com/hackforla/website/issues/1875#event-5039633113) at 2021-07-19 09:51 AM PDT -erikaBell,2021-07-19T16:54:37Z,- erikaBell submitted pull request review: [1946](https://github.com/hackforla/website/pull/1946#pullrequestreview-709776163) at 2021-07-19 09:54 AM PDT -erikaBell,2021-07-19T16:54:42Z,- erikaBell closed issue by PR 1946: [1923](https://github.com/hackforla/website/issues/1923#event-5039650001) at 2021-07-19 09:54 AM PDT -erikaBell,2021-07-19T19:52:38Z,- erikaBell submitted pull request review: [1949](https://github.com/hackforla/website/pull/1949#pullrequestreview-709921689) at 2021-07-19 12:52 PM PDT -erikaBell,2021-07-19T19:52:44Z,- erikaBell closed issue by PR 1949: [1739](https://github.com/hackforla/website/issues/1739#event-5040452914) at 2021-07-19 12:52 PM PDT -erikaBell,2021-07-19T20:04:05Z,- erikaBell submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-709930963) at 2021-07-19 01:04 PM PDT -erikaBell,2021-07-20T18:50:32Z,- erikaBell commented on pull request: [1964](https://github.com/hackforla/website/pull/1964#issuecomment-883616911) at 2021-07-20 11:50 AM PDT -erikaBell,2021-07-20T18:56:43Z,- erikaBell submitted pull request review: [1912](https://github.com/hackforla/website/pull/1912#pullrequestreview-710964399) at 2021-07-20 11:56 AM PDT -erikaBell,2021-07-20T18:56:58Z,- erikaBell closed issue by PR 1912: [1887](https://github.com/hackforla/website/issues/1887#event-5046057447) at 2021-07-20 11:56 AM PDT -erikaBell,2021-07-20T19:05:28Z,- erikaBell commented on pull request: [1954](https://github.com/hackforla/website/pull/1954#issuecomment-883625741) at 2021-07-20 12:05 PM PDT -erikaBell,2021-07-20T19:31:55Z,- erikaBell submitted pull request review: [1972](https://github.com/hackforla/website/pull/1972#pullrequestreview-710992119) at 2021-07-20 12:31 PM PDT -erikaBell,2021-07-21T06:44:50Z,- erikaBell submitted pull request review: [1954](https://github.com/hackforla/website/pull/1954#pullrequestreview-711307501) at 2021-07-20 11:44 PM PDT -erikaBell,2021-07-21T06:54:01Z,- erikaBell submitted pull request review: [1990](https://github.com/hackforla/website/pull/1990#pullrequestreview-711313232) at 2021-07-20 11:54 PM PDT -erikaBell,2021-07-21T06:54:17Z,- erikaBell closed issue by PR 1990: [1793](https://github.com/hackforla/website/issues/1793#event-5048374343) at 2021-07-20 11:54 PM PDT -erikaBell,2021-07-21T21:38:33Z,- erikaBell pull request merged: [1964](https://github.com/hackforla/website/pull/1964#event-5052669466) at 2021-07-21 02:38 PM PDT -erinpattison,4062,SKILLS ISSUE -erinpattison,2023-03-01T04:03:31Z,- erinpattison opened issue: [4062](https://github.com/hackforla/website/issues/4062) at 2023-02-28 08:03 PM PST -erinpattison,2023-03-01T04:19:26Z,- erinpattison assigned to issue: [4062](https://github.com/hackforla/website/issues/4062) at 2023-02-28 08:19 PM PST -erinpattison,2023-03-10T07:31:43Z,- erinpattison commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1463389349) at 2023-03-09 11:31 PM PST -erinpattison,2023-03-15T02:41:43Z,- erinpattison assigned to issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1445221249) at 2023-03-14 07:41 PM PDT -erinpattison,2023-03-15T23:06:19Z,- erinpattison commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1470958868) at 2023-03-15 04:06 PM PDT -erinpattison,2023-03-16T19:59:00Z,- erinpattison opened pull request: [4196](https://github.com/hackforla/website/pull/4196) at 2023-03-16 12:59 PM PDT -erinpattison,2023-03-16T20:00:31Z,- erinpattison commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472659848) at 2023-03-16 01:00 PM PDT -erinpattison,2023-03-16T20:05:56Z,- erinpattison commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1472666166) at 2023-03-16 01:05 PM PDT -erinpattison,2023-03-16T20:07:24Z,- erinpattison closed issue as completed: [4062](https://github.com/hackforla/website/issues/4062#event-8771662926) at 2023-03-16 01:07 PM PDT -erinpattison,2023-04-10T22:09:55Z,- erinpattison pull request closed w/o merging: [4196](https://github.com/hackforla/website/pull/4196#event-8967558026) at 2023-04-10 03:09 PM PDT -erinpattison,2023-04-10T22:10:10Z,- erinpattison unassigned from issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1484410244) at 2023-04-10 03:10 PM PDT -erinzz,5206,SKILLS ISSUE -erinzz,2023-01-04T04:55:47Z,- erinzz opened issue: [3790](https://github.com/hackforla/website/issues/3790) at 2023-01-03 08:55 PM PST -erinzz,2023-08-15T02:16:36Z,- erinzz opened issue: [5206](https://github.com/hackforla/website/issues/5206) at 2023-08-14 07:16 PM PDT -erinzz,2023-08-15T02:26:19Z,- erinzz assigned to issue: [5206](https://github.com/hackforla/website/issues/5206#issuecomment-1678334762) at 2023-08-14 07:26 PM PDT -erinzz,2023-08-16T23:17:10Z,- erinzz assigned to issue: [5186](https://github.com/hackforla/website/issues/5186#issuecomment-1675531562) at 2023-08-16 04:17 PM PDT -erinzz,2023-08-16T23:22:43Z,- erinzz commented on issue: [5186](https://github.com/hackforla/website/issues/5186#issuecomment-1681390515) at 2023-08-16 04:22 PM PDT -erinzz,2023-08-17T20:00:54Z,- erinzz opened pull request: [5245](https://github.com/hackforla/website/pull/5245) at 2023-08-17 01:00 PM PDT -erinzz,2023-08-18T17:03:03Z,- erinzz commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1684194976) at 2023-08-18 10:03 AM PDT -erinzz,2023-08-18T17:03:03Z,- erinzz pull request merged: [5245](https://github.com/hackforla/website/pull/5245#event-10131932779) at 2023-08-18 10:03 AM PDT -erinzz,2023-08-18T17:03:16Z,- erinzz reopened pull request: [5245](https://github.com/hackforla/website/pull/5245#event-10131932779) at 2023-08-18 10:03 AM PDT -erinzz,2023-08-18T17:38:28Z,- erinzz commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1684230939) at 2023-08-18 10:38 AM PDT -erinzz,2023-08-18T19:01:05Z,- erinzz submitted pull request review: [5249](https://github.com/hackforla/website/pull/5249#pullrequestreview-1585075880) at 2023-08-18 12:01 PM PDT -erinzz,2023-08-19T23:31:08Z,- erinzz assigned to issue: [5256](https://github.com/hackforla/website/issues/5256#issuecomment-1684677393) at 2023-08-19 04:31 PM PDT -erinzz,2023-08-20T06:25:46Z,- erinzz commented on issue: [5256](https://github.com/hackforla/website/issues/5256#issuecomment-1685199609) at 2023-08-19 11:25 PM PDT -erinzz,2023-08-20T06:37:08Z,- erinzz commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1685201250) at 2023-08-19 11:37 PM PDT -erinzz,2023-08-21T19:50:49Z,- erinzz opened pull request: [5280](https://github.com/hackforla/website/pull/5280) at 2023-08-21 12:50 PM PDT -erinzz,2023-08-22T04:19:06Z,- erinzz pull request merged: [5245](https://github.com/hackforla/website/pull/5245#event-10152774355) at 2023-08-21 09:19 PM PDT -erinzz,2023-08-22T20:08:09Z,- erinzz commented on pull request: [5280](https://github.com/hackforla/website/pull/5280#issuecomment-1688853334) at 2023-08-22 01:08 PM PDT -erinzz,2023-08-22T20:08:24Z,- erinzz pull request closed w/o merging: [5280](https://github.com/hackforla/website/pull/5280#event-10162688601) at 2023-08-22 01:08 PM PDT -erinzz,2023-08-22T21:12:58Z,- erinzz opened pull request: [5284](https://github.com/hackforla/website/pull/5284) at 2023-08-22 02:12 PM PDT -erinzz,2023-08-23T21:39:46Z,- erinzz commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1690681351) at 2023-08-23 02:39 PM PDT -erinzz,2023-08-24T21:50:57Z,- erinzz closed issue as completed: [5206](https://github.com/hackforla/website/issues/5206#event-10186356847) at 2023-08-24 02:50 PM PDT -erinzz,2023-08-27T02:57:51Z,- erinzz pull request merged: [5284](https://github.com/hackforla/website/pull/5284#event-10201036433) at 2023-08-26 07:57 PM PDT -erinzz,2023-08-28T23:36:28Z,- erinzz assigned to issue: [5153](https://github.com/hackforla/website/issues/5153) at 2023-08-28 04:36 PM PDT -erinzz,2023-08-28T23:37:47Z,- erinzz commented on issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1696563894) at 2023-08-28 04:37 PM PDT -erinzz,2023-08-29T05:06:52Z,- erinzz assigned to issue: [5321](https://github.com/hackforla/website/issues/5321) at 2023-08-28 10:06 PM PDT -erinzz,2023-08-29T05:27:19Z,- erinzz assigned to issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1694748683) at 2023-08-28 10:27 PM PDT -erinzz,2023-08-29T05:28:10Z,- erinzz unassigned from issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1696789972) at 2023-08-28 10:28 PM PDT -erinzz,2023-08-29T15:00:35Z,- erinzz unassigned from issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1696564848) at 2023-08-29 08:00 AM PDT -erinzz,2023-08-29T15:08:00Z,- erinzz unassigned from issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1696772503) at 2023-08-29 08:08 AM PDT -erinzz,2023-08-29T23:52:08Z,- erinzz assigned to issue: [5330](https://github.com/hackforla/website/issues/5330) at 2023-08-29 04:52 PM PDT -erinzz,2023-08-29T23:52:51Z,- erinzz commented on issue: [5330](https://github.com/hackforla/website/issues/5330#issuecomment-1698293002) at 2023-08-29 04:52 PM PDT -erinzz,2023-08-30T00:55:01Z,- erinzz opened pull request: [5346](https://github.com/hackforla/website/pull/5346) at 2023-08-29 05:55 PM PDT -erinzz,2023-09-01T02:40:15Z,- erinzz commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1702039346) at 2023-08-31 07:40 PM PDT -erinzz,2023-09-01T22:21:22Z,- erinzz pull request closed w/o merging: [5346](https://github.com/hackforla/website/pull/5346#event-10261324831) at 2023-09-01 03:21 PM PDT -erinzz,2023-09-01T22:40:50Z,- erinzz opened pull request: [5414](https://github.com/hackforla/website/pull/5414) at 2023-09-01 03:40 PM PDT -erinzz,2023-09-03T17:04:26Z,- erinzz pull request merged: [5414](https://github.com/hackforla/website/pull/5414#event-10266762023) at 2023-09-03 10:04 AM PDT -erinzz,2023-09-05T18:33:18Z,- erinzz assigned to issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1694627286) at 2023-09-05 11:33 AM PDT -erinzz,2023-09-05T18:33:43Z,- erinzz commented on issue: [5313](https://github.com/hackforla/website/issues/5313#issuecomment-1707119919) at 2023-09-05 11:33 AM PDT -erinzz,2023-09-13T03:44:52Z,- erinzz opened pull request: [5512](https://github.com/hackforla/website/pull/5512) at 2023-09-12 08:44 PM PDT -erinzz,2023-09-14T01:41:36Z,- erinzz pull request merged: [5512](https://github.com/hackforla/website/pull/5512#event-10366025905) at 2023-09-13 06:41 PM PDT -erinzz,2023-09-18T00:15:57Z,- erinzz assigned to issue: [5547](https://github.com/hackforla/website/issues/5547#issuecomment-1722424996) at 2023-09-17 05:15 PM PDT -erinzz,2023-09-18T00:16:45Z,- erinzz commented on issue: [5547](https://github.com/hackforla/website/issues/5547#issuecomment-1722611533) at 2023-09-17 05:16 PM PDT -erinzz,2023-09-22T01:26:32Z,- erinzz opened pull request: [5570](https://github.com/hackforla/website/pull/5570) at 2023-09-21 06:26 PM PDT -erinzz,2023-09-26T18:28:01Z,- erinzz commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1736066411) at 2023-09-26 11:28 AM PDT -erinzz,2023-09-27T02:09:47Z,- erinzz commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1736560591) at 2023-09-26 07:09 PM PDT -erinzz,2023-09-28T03:19:42Z,- erinzz pull request merged: [5570](https://github.com/hackforla/website/pull/5570#event-10494009992) at 2023-09-27 08:19 PM PDT -erinzz,2023-10-03T18:35:51Z,- erinzz assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745248809) at 2023-10-03 11:35 AM PDT -erinzz,2023-10-03T18:37:30Z,- erinzz commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1745519082) at 2023-10-03 11:37 AM PDT -erinzz,2023-10-13T19:37:32Z,- erinzz commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762099537) at 2023-10-13 12:37 PM PDT -erinzz,2023-10-13T19:37:41Z,- erinzz unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762099537) at 2023-10-13 12:37 PM PDT -erniep278,3607,SKILLS ISSUE -erniep278,2022-10-11T02:53:46Z,- erniep278 opened issue: [3607](https://github.com/hackforla/website/issues/3607) at 2022-10-10 07:53 PM PDT -erniep278,2022-11-27T07:13:19Z,- erniep278 assigned to issue: [3607](https://github.com/hackforla/website/issues/3607) at 2022-11-26 11:13 PM PST -erniep278,2023-01-09T13:02:10Z,- erniep278 commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1375591351) at 2023-01-09 05:02 AM PST -esantiano,3603,SKILLS ISSUE -esantiano,2022-10-11T02:41:47Z,- esantiano opened issue: [3603](https://github.com/hackforla/website/issues/3603) at 2022-10-10 07:41 PM PDT -esantiano,2022-10-12T03:01:32Z,- esantiano assigned to issue: [3603](https://github.com/hackforla/website/issues/3603) at 2022-10-11 08:01 PM PDT -esantiano,2022-10-14T01:02:02Z,- esantiano assigned to issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1275529375) at 2022-10-13 06:02 PM PDT -esantiano,2022-10-14T14:21:12Z,- esantiano commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1279078159) at 2022-10-14 07:21 AM PDT -esantiano,2022-10-14T15:01:01Z,- esantiano commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1279125324) at 2022-10-14 08:01 AM PDT -esantiano,2022-10-14T15:35:26Z,- esantiano opened pull request: [3620](https://github.com/hackforla/website/pull/3620) at 2022-10-14 08:35 AM PDT -esantiano,2022-10-16T18:10:40Z,- esantiano pull request merged: [3620](https://github.com/hackforla/website/pull/3620#event-7596730981) at 2022-10-16 11:10 AM PDT -esantiano,2022-10-17T04:53:24Z,- esantiano commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1280285783) at 2022-10-16 09:53 PM PDT -esantiano,2022-10-17T05:00:49Z,- esantiano submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1143501281) at 2022-10-16 10:00 PM PDT -esantiano,2022-10-17T05:03:38Z,- esantiano commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1280290906) at 2022-10-16 10:03 PM PDT -esantiano,2022-10-21T20:25:15Z,- esantiano assigned to issue: [3200](https://github.com/hackforla/website/issues/3200#issuecomment-1145810588) at 2022-10-21 01:25 PM PDT -esantiano,2022-10-21T20:51:29Z,- esantiano commented on issue: [3200](https://github.com/hackforla/website/issues/3200#issuecomment-1287425314) at 2022-10-21 01:51 PM PDT -esantiano,2022-10-21T21:37:59Z,- esantiano opened pull request: [3647](https://github.com/hackforla/website/pull/3647) at 2022-10-21 02:37 PM PDT -esantiano,2022-10-22T17:27:36Z,- esantiano pull request merged: [3647](https://github.com/hackforla/website/pull/3647#event-7646613045) at 2022-10-22 10:27 AM PDT -esantiano,2022-10-22T19:24:13Z,- esantiano submitted pull request review: [3648](https://github.com/hackforla/website/pull/3648#pullrequestreview-1152114282) at 2022-10-22 12:24 PM PDT -esantiano,2022-10-22T19:27:28Z,- esantiano commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287890489) at 2022-10-22 12:27 PM PDT -esantiano,2022-10-22T19:30:30Z,- esantiano commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287891780) at 2022-10-22 12:30 PM PDT -esantiano,2022-10-23T18:45:42Z,- esantiano assigned to issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1235040283) at 2022-10-23 11:45 AM PDT -esantiano,2022-10-23T18:47:13Z,- esantiano commented on issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-1288174228) at 2022-10-23 11:47 AM PDT -esantiano,2022-10-26T21:33:20Z,- esantiano opened pull request: [3666](https://github.com/hackforla/website/pull/3666) at 2022-10-26 02:33 PM PDT -esantiano,2022-10-26T21:35:14Z,- esantiano pull request closed w/o merging: [3666](https://github.com/hackforla/website/pull/3666#event-7676843263) at 2022-10-26 02:35 PM PDT -esantiano,2022-10-26T22:37:15Z,- esantiano opened pull request: [3667](https://github.com/hackforla/website/pull/3667) at 2022-10-26 03:37 PM PDT -esantiano,2022-10-29T21:12:39Z,- esantiano pull request closed w/o merging: [3667](https://github.com/hackforla/website/pull/3667#event-7697755054) at 2022-10-29 02:12 PM PDT -esantiano,2022-10-29T22:03:35Z,- esantiano opened pull request: [3674](https://github.com/hackforla/website/pull/3674) at 2022-10-29 03:03 PM PDT -esantiano,2022-10-29T22:13:04Z,- esantiano commented on pull request: [3673](https://github.com/hackforla/website/pull/3673#issuecomment-1295999677) at 2022-10-29 03:13 PM PDT -esantiano,2022-10-29T22:15:40Z,- esantiano submitted pull request review: [3673](https://github.com/hackforla/website/pull/3673#pullrequestreview-1161044018) at 2022-10-29 03:15 PM PDT -esantiano,2022-10-29T22:22:16Z,- esantiano commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1296002107) at 2022-10-29 03:22 PM PDT -esantiano,2022-10-29T22:37:23Z,- esantiano submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1161045191) at 2022-10-29 03:37 PM PDT -esantiano,2022-10-29T23:10:26Z,- esantiano commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1296015132) at 2022-10-29 04:10 PM PDT -esantiano,2022-10-29T23:13:32Z,- esantiano submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1161046953) at 2022-10-29 04:13 PM PDT -esantiano,2022-10-29T23:20:11Z,- esantiano commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1296017611) at 2022-10-29 04:20 PM PDT -esantiano,2022-10-29T23:30:36Z,- esantiano submitted pull request review: [3664](https://github.com/hackforla/website/pull/3664#pullrequestreview-1161047799) at 2022-10-29 04:30 PM PDT -esantiano,2022-10-29T23:55:49Z,- esantiano commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1296026720) at 2022-10-29 04:55 PM PDT -esantiano,2022-10-29T23:59:11Z,- esantiano commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1296027501) at 2022-10-29 04:59 PM PDT -esantiano,2022-10-31T02:04:08Z,- esantiano pull request merged: [3674](https://github.com/hackforla/website/pull/3674#event-7700332095) at 2022-10-30 07:04 PM PDT -esantiano,2022-10-31T15:11:40Z,- esantiano commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1297238083) at 2022-10-31 08:11 AM PDT -esantiano,2022-10-31T15:16:34Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162061752) at 2022-10-31 08:16 AM PDT -esantiano,2022-10-31T15:19:13Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162066196) at 2022-10-31 08:19 AM PDT -esantiano,2022-10-31T15:38:16Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162099677) at 2022-10-31 08:38 AM PDT -esantiano,2022-10-31T15:42:01Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1162105860) at 2022-10-31 08:42 AM PDT -esantiano,2022-10-31T16:46:10Z,- esantiano submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1162205621) at 2022-10-31 09:46 AM PDT -esantiano,2022-11-04T22:31:44Z,- esantiano submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1169244469) at 2022-11-04 03:31 PM PDT -esantiano,2022-11-05T15:16:15Z,- esantiano commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304565436) at 2022-11-05 07:16 AM PST -esantiano,2022-11-05T15:54:41Z,- esantiano submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1169428764) at 2022-11-05 07:54 AM PST -esantiano,2022-11-12T23:20:14Z,- esantiano commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312594901) at 2022-11-12 03:20 PM PST -esantiano,2022-11-13T01:52:45Z,- esantiano submitted pull request review: [3716](https://github.com/hackforla/website/pull/3716#pullrequestreview-1178179290) at 2022-11-12 05:52 PM PST -esantiano,2022-11-17T19:36:04Z,- esantiano assigned to issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1304866103) at 2022-11-17 11:36 AM PST -esantiano,2022-11-17T19:37:17Z,- esantiano commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1319111047) at 2022-11-17 11:37 AM PST -esantiano,2022-11-18T00:47:23Z,- esantiano opened pull request: [3730](https://github.com/hackforla/website/pull/3730) at 2022-11-17 04:47 PM PST -esantiano,2022-11-20T01:03:45Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1321004520) at 2022-11-19 05:03 PM PST -esantiano,2022-11-27T00:56:18Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1328143494) at 2022-11-26 04:56 PM PST -esantiano,2022-11-27T01:28:08Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1328147948) at 2022-11-26 05:28 PM PST -esantiano,2022-12-04T01:10:10Z,- esantiano commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1336292577) at 2022-12-03 05:10 PM PST -esantiano,2022-12-04T03:14:56Z,- esantiano commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1336310081) at 2022-12-03 07:14 PM PST -esantiano,2022-12-04T03:16:21Z,- esantiano commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1336310235) at 2022-12-03 07:16 PM PST -esantiano,2022-12-05T06:05:08Z,- esantiano submitted pull request review: [3764](https://github.com/hackforla/website/pull/3764#pullrequestreview-1203898592) at 2022-12-04 10:05 PM PST -esantiano,2022-12-05T06:07:11Z,- esantiano commented on pull request: [3762](https://github.com/hackforla/website/pull/3762#issuecomment-1336793899) at 2022-12-04 10:07 PM PST -esantiano,2022-12-06T03:11:51Z,- esantiano submitted pull request review: [3762](https://github.com/hackforla/website/pull/3762#pullrequestreview-1205706060) at 2022-12-05 07:11 PM PST -esantiano,2022-12-10T03:23:59Z,- esantiano pull request merged: [3730](https://github.com/hackforla/website/pull/3730#event-8003276908) at 2022-12-09 07:23 PM PST -esantiano,2022-12-10T23:26:40Z,- esantiano commented on pull request: [3768](https://github.com/hackforla/website/pull/3768#issuecomment-1345407603) at 2022-12-10 03:26 PM PST -esantiano,2022-12-10T23:46:34Z,- esantiano submitted pull request review: [3768](https://github.com/hackforla/website/pull/3768#pullrequestreview-1212627513) at 2022-12-10 03:46 PM PST -esantiano,2022-12-10T23:49:13Z,- esantiano commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1345410659) at 2022-12-10 03:49 PM PST -esantiano,2023-01-11T14:40:06Z,- esantiano commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1378851598) at 2023-01-11 06:40 AM PST -eselkin,2020-01-26T23:59:47Z,- eselkin assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578545722) at 2020-01-26 03:59 PM PST -eselkin,2020-01-27T00:07:22Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578557698) at 2020-01-26 04:07 PM PST -eselkin,2020-01-27T00:10:09Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578557910) at 2020-01-26 04:10 PM PST -eselkin,2020-02-23T22:13:25Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-590122549) at 2020-02-23 02:13 PM PST -eselkin,2020-03-02T04:33:36Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593214102) at 2020-03-01 08:33 PM PST -eselkin,2020-03-03T07:27:08Z,- eselkin unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593806771) at 2020-03-02 11:27 PM PST -eselkin,2020-03-03T08:04:56Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593819369) at 2020-03-03 12:04 AM PST -eselkin,2020-03-12T03:32:40Z,- eselkin assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-597988796) at 2020-03-11 08:32 PM PDT -eselkin,2020-03-29T23:47:58Z,- eselkin unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-605720708) at 2020-03-29 04:47 PM PDT -eselkin,2020-04-13T02:46:28Z,- eselkin commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-612724311) at 2020-04-12 07:46 PM PDT -eselkin,2020-04-21T19:29:47Z,- eselkin commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-617367543) at 2020-04-21 12:29 PM PDT -EShahverdian,7969,SKILLS ISSUE -EShahverdian,2025-03-04T04:13:05Z,- EShahverdian opened issue: [7969](https://github.com/hackforla/website/issues/7969) at 2025-03-03 08:13 PM PST -EShahverdian,2025-03-04T04:13:05Z,- EShahverdian assigned to issue: [7969](https://github.com/hackforla/website/issues/7969) at 2025-03-03 08:13 PM PST -EShahverdian,2025-03-12T21:30:10Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2719175775) at 2025-03-12 02:30 PM PDT -EShahverdian,2025-04-16T03:58:19Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2808164648) at 2025-04-15 08:58 PM PDT -EShahverdian,2025-05-14T03:22:11Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2878518076) at 2025-05-13 08:22 PM PDT -EShahverdian,2025-07-16T02:16:50Z,- EShahverdian commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-3076492824) at 2025-07-15 07:16 PM PDT -EShahverdian,2025-07-22T04:38:20Z,- EShahverdian assigned to issue: [8244](https://github.com/hackforla/website/issues/8244) at 2025-07-21 09:38 PM PDT -EShahverdian,2025-07-22T04:38:32Z,- EShahverdian unassigned from issue: [8244](https://github.com/hackforla/website/issues/8244#issuecomment-3100918110) at 2025-07-21 09:38 PM PDT -EShahverdian,2025-07-22T20:40:40Z,- EShahverdian opened issue: [8249](https://github.com/hackforla/website/issues/8249) at 2025-07-22 01:40 PM PDT -EShahverdian,2025-07-22T21:11:38Z,- EShahverdian commented on issue: [8249](https://github.com/hackforla/website/issues/8249#issuecomment-3104845230) at 2025-07-22 02:11 PM PDT -eshan-one,2023-12-31T08:33:05Z,- eshan-one commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1872854985) at 2023-12-31 12:33 AM PST -essbee808,3706,SKILLS ISSUE -essbee808,2022-11-09T03:31:12Z,- essbee808 opened issue: [3706](https://github.com/hackforla/website/issues/3706) at 2022-11-08 07:31 PM PST -essbee808,2022-11-27T07:37:11Z,- essbee808 assigned to issue: [3706](https://github.com/hackforla/website/issues/3706) at 2022-11-26 11:37 PM PST -essbee808,2023-01-24T17:50:27Z,- essbee808 closed issue as not planned: [3706](https://github.com/hackforla/website/issues/3706#event-8346811141) at 2023-01-24 09:50 AM PST -essencegoff,2024-09-17T17:16:22Z,- essencegoff opened issue: [7471](https://github.com/hackforla/website/issues/7471) at 2024-09-17 10:16 AM PDT -essencegoff,2024-09-17T17:36:52Z,- essencegoff opened issue: [7472](https://github.com/hackforla/website/issues/7472) at 2024-09-17 10:36 AM PDT -essencegoff,2024-09-17T17:47:06Z,- essencegoff opened issue: [7474](https://github.com/hackforla/website/issues/7474) at 2024-09-17 10:47 AM PDT -essencegoff,2024-09-17T17:59:18Z,- essencegoff opened issue: [7475](https://github.com/hackforla/website/issues/7475) at 2024-09-17 10:59 AM PDT -essencegoff,2024-09-17T18:07:50Z,- essencegoff opened issue: [7476](https://github.com/hackforla/website/issues/7476) at 2024-09-17 11:07 AM PDT -essencegoff,2024-09-17T18:12:00Z,- essencegoff opened issue: [7477](https://github.com/hackforla/website/issues/7477) at 2024-09-17 11:12 AM PDT -essencegoff,2024-09-17T18:18:40Z,- essencegoff opened issue: [7479](https://github.com/hackforla/website/issues/7479) at 2024-09-17 11:18 AM PDT -essencegoff,2024-09-17T18:24:04Z,- essencegoff opened issue: [7480](https://github.com/hackforla/website/issues/7480) at 2024-09-17 11:24 AM PDT -essencegoff,2024-09-17T18:31:47Z,- essencegoff opened issue: [7481](https://github.com/hackforla/website/issues/7481) at 2024-09-17 11:31 AM PDT -essencegoff,2024-09-17T18:36:01Z,- essencegoff opened issue: [7482](https://github.com/hackforla/website/issues/7482) at 2024-09-17 11:36 AM PDT -essencegoff,2024-09-17T18:39:49Z,- essencegoff opened issue: [7483](https://github.com/hackforla/website/issues/7483) at 2024-09-17 11:39 AM PDT -essencegoff,2024-09-17T18:39:57Z,- essencegoff assigned to issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:39 AM PDT -essencegoff,2024-09-17T18:44:08Z,- essencegoff opened issue: [7484](https://github.com/hackforla/website/issues/7484) at 2024-09-17 11:44 AM PDT -essencegoff,2024-09-17T18:47:44Z,- essencegoff opened issue: [7485](https://github.com/hackforla/website/issues/7485) at 2024-09-17 11:47 AM PDT -essencegoff,2024-09-17T19:39:57Z,- essencegoff commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2356747926) at 2024-09-17 12:39 PM PDT -essencegoff,2024-09-17T20:00:07Z,- essencegoff opened issue: [7487](https://github.com/hackforla/website/issues/7487) at 2024-09-17 01:00 PM PDT -essencegoff,2024-09-17T20:00:57Z,- essencegoff commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2356793436) at 2024-09-17 01:00 PM PDT -essencegoff,2024-09-17T20:16:04Z,- essencegoff opened issue: [7488](https://github.com/hackforla/website/issues/7488) at 2024-09-17 01:16 PM PDT -essencegoff,2024-09-17T20:18:14Z,- essencegoff commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2356839429) at 2024-09-17 01:18 PM PDT -essencegoff,2024-09-17T21:57:11Z,- essencegoff opened issue: [7489](https://github.com/hackforla/website/issues/7489) at 2024-09-17 02:57 PM PDT -essencegoff,2024-09-26T23:08:52Z,- essencegoff opened issue: [7525](https://github.com/hackforla/website/issues/7525) at 2024-09-26 04:08 PM PDT -essencegoff,2024-09-27T00:19:25Z,- essencegoff commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2378162993) at 2024-09-26 05:19 PM PDT -essencegoff,2024-09-30T23:16:28Z,- essencegoff commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2384370401) at 2024-09-30 04:16 PM PDT -essencegoff,2024-09-30T23:19:37Z,- essencegoff commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2384383471) at 2024-09-30 04:19 PM PDT -essencegoff,2024-09-30T23:22:59Z,- essencegoff commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2384394964) at 2024-09-30 04:22 PM PDT -essencegoff,2024-09-30T23:25:09Z,- essencegoff commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2384401275) at 2024-09-30 04:25 PM PDT -essencegoff,2024-09-30T23:31:09Z,- essencegoff commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2384422898) at 2024-09-30 04:31 PM PDT -essencegoff,2024-09-30T23:33:51Z,- essencegoff commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2384432972) at 2024-09-30 04:33 PM PDT -essencegoff,2024-09-30T23:34:55Z,- essencegoff commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2384437771) at 2024-09-30 04:34 PM PDT -essencegoff,2024-09-30T23:40:38Z,- essencegoff commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2384460693) at 2024-09-30 04:40 PM PDT -essencegoff,2024-09-30T23:41:52Z,- essencegoff commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2384465274) at 2024-09-30 04:41 PM PDT -essencegoff,2024-09-30T23:44:22Z,- essencegoff commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2384474865) at 2024-09-30 04:44 PM PDT -essencegoff,2024-09-30T23:45:46Z,- essencegoff commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2384480251) at 2024-09-30 04:45 PM PDT -essencegoff,2024-09-30T23:50:11Z,- essencegoff commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2384500114) at 2024-09-30 04:50 PM PDT -essencegoff,2024-09-30T23:51:37Z,- essencegoff commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2384505311) at 2024-09-30 04:51 PM PDT -essencegoff,2024-09-30T23:53:20Z,- essencegoff commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2384514408) at 2024-09-30 04:53 PM PDT -essencegoff,2024-09-30T23:54:57Z,- essencegoff commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2384516138) at 2024-09-30 04:54 PM PDT -essencegoff,2024-09-30T23:56:27Z,- essencegoff commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2384517274) at 2024-09-30 04:56 PM PDT -essencegoff,2024-09-30T23:57:28Z,- essencegoff commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2384518044) at 2024-09-30 04:57 PM PDT -essencegoff,2024-10-01T00:15:57Z,- essencegoff commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2384536144) at 2024-09-30 05:15 PM PDT -essencegoff,2024-10-01T00:29:38Z,- essencegoff commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2384549234) at 2024-09-30 05:29 PM PDT -essencegoff,2024-10-01T00:30:31Z,- essencegoff commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2384550121) at 2024-09-30 05:30 PM PDT -essencegoff,2024-10-01T02:12:11Z,- essencegoff commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2384643118) at 2024-09-30 07:12 PM PDT -essencegoff,2024-10-01T02:13:04Z,- essencegoff commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2384643843) at 2024-09-30 07:13 PM PDT -essencegoff,2024-10-01T02:14:07Z,- essencegoff commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2384644701) at 2024-09-30 07:14 PM PDT -essencegoff,2024-10-01T02:15:19Z,- essencegoff commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2384645662) at 2024-09-30 07:15 PM PDT -essencegoff,2024-10-01T02:16:42Z,- essencegoff commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2384646895) at 2024-09-30 07:16 PM PDT -essencegoff,2024-10-01T02:17:18Z,- essencegoff commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2384647390) at 2024-09-30 07:17 PM PDT -essencegoff,2024-10-01T02:18:43Z,- essencegoff commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2384648516) at 2024-09-30 07:18 PM PDT -essencegoff,2024-10-01T02:20:39Z,- essencegoff commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2384650137) at 2024-09-30 07:20 PM PDT -essencegoff,2024-10-08T00:50:00Z,- essencegoff commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2398331036) at 2024-10-07 05:50 PM PDT -essencegoff,2024-10-08T00:52:08Z,- essencegoff commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2398335865) at 2024-10-07 05:52 PM PDT -essencegoff,2024-10-08T00:54:22Z,- essencegoff commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-2398340879) at 2024-10-07 05:54 PM PDT -essencegoff,2024-10-09T16:21:12Z,- essencegoff commented on issue: [5232](https://github.com/hackforla/website/issues/5232#issuecomment-2402770229) at 2024-10-09 09:21 AM PDT -essencegoff,2024-10-09T16:39:35Z,- essencegoff commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2402809200) at 2024-10-09 09:39 AM PDT -essencegoff,2024-10-09T16:42:46Z,- essencegoff commented on issue: [6875](https://github.com/hackforla/website/issues/6875#issuecomment-2402814873) at 2024-10-09 09:42 AM PDT -essencegoff,2024-10-09T16:46:27Z,- essencegoff commented on issue: [7019](https://github.com/hackforla/website/issues/7019#issuecomment-2402821742) at 2024-10-09 09:46 AM PDT -essencegoff,2024-10-09T16:52:51Z,- essencegoff commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402833578) at 2024-10-09 09:52 AM PDT -essencegoff,2024-10-09T16:56:42Z,- essencegoff commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2402840808) at 2024-10-09 09:56 AM PDT -essencegoff,2024-10-09T17:18:52Z,- essencegoff commented on issue: [5782](https://github.com/hackforla/website/issues/5782#issuecomment-2402881657) at 2024-10-09 10:18 AM PDT -essencegoff,2024-10-09T17:20:50Z,- essencegoff commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2402885034) at 2024-10-09 10:20 AM PDT -essencegoff,2024-10-09T17:29:40Z,- essencegoff commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402900675) at 2024-10-09 10:29 AM PDT -essencegoff,2024-10-09T18:12:18Z,- essencegoff commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-2402974610) at 2024-10-09 11:12 AM PDT -essencegoff,2024-10-09T18:13:48Z,- essencegoff commented on issue: [6117](https://github.com/hackforla/website/issues/6117#issuecomment-2402976977) at 2024-10-09 11:13 AM PDT -essencegoff,2024-10-09T18:14:48Z,- essencegoff commented on issue: [6942](https://github.com/hackforla/website/issues/6942#issuecomment-2402978648) at 2024-10-09 11:14 AM PDT -essencegoff,2024-10-09T18:16:45Z,- essencegoff commented on issue: [6037](https://github.com/hackforla/website/issues/6037#issuecomment-2402981936) at 2024-10-09 11:16 AM PDT -essencegoff,2024-10-09T18:30:17Z,- essencegoff commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-2403007252) at 2024-10-09 11:30 AM PDT -essencegoff,2024-10-09T18:32:53Z,- essencegoff commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2403011578) at 2024-10-09 11:32 AM PDT -essencegoff,2024-10-09T18:42:30Z,- essencegoff commented on issue: [5777](https://github.com/hackforla/website/issues/5777#issuecomment-2403048335) at 2024-10-09 11:42 AM PDT -essencegoff,2024-10-09T18:51:36Z,- essencegoff commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2403104345) at 2024-10-09 11:51 AM PDT -essencegoff,2024-10-09T18:55:48Z,- essencegoff commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2403128951) at 2024-10-09 11:55 AM PDT -essencegoff,2024-10-09T18:58:10Z,- essencegoff commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-2403143783) at 2024-10-09 11:58 AM PDT -essencegoff,2024-10-09T19:28:40Z,- essencegoff commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-2403276170) at 2024-10-09 12:28 PM PDT -essencegoff,2024-10-09T19:30:26Z,- essencegoff commented on issue: [6330](https://github.com/hackforla/website/issues/6330#issuecomment-2403279107) at 2024-10-09 12:30 PM PDT -essencegoff,2024-10-09T19:31:11Z,- essencegoff commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-2403280446) at 2024-10-09 12:31 PM PDT -essencegoff,2024-10-09T19:35:38Z,- essencegoff commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2403287459) at 2024-10-09 12:35 PM PDT -essencegoff,2024-10-09T19:36:41Z,- essencegoff commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2403289199) at 2024-10-09 12:36 PM PDT -essencegoff,2024-10-09T19:38:13Z,- essencegoff commented on issue: [6955](https://github.com/hackforla/website/issues/6955#issuecomment-2403291433) at 2024-10-09 12:38 PM PDT -essencegoff,2024-10-09T19:40:27Z,- essencegoff commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2403294838) at 2024-10-09 12:40 PM PDT -essencegoff,2024-10-09T19:42:36Z,- essencegoff commented on issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2403298090) at 2024-10-09 12:42 PM PDT -essencegoff,2024-10-09T19:43:35Z,- essencegoff commented on issue: [5614](https://github.com/hackforla/website/issues/5614#issuecomment-2403299606) at 2024-10-09 12:43 PM PDT -essencegoff,2024-10-09T19:45:06Z,- essencegoff commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-2403301993) at 2024-10-09 12:45 PM PDT -essencegoff,2024-10-09T19:49:53Z,- essencegoff commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-2403309420) at 2024-10-09 12:49 PM PDT -essencegoff,2024-10-09T19:53:46Z,- essencegoff commented on issue: [5485](https://github.com/hackforla/website/issues/5485#issuecomment-2403315529) at 2024-10-09 12:53 PM PDT -essencegoff,2024-10-09T19:55:47Z,- essencegoff commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2403318722) at 2024-10-09 12:55 PM PDT -essencegoff,2024-10-09T20:00:57Z,- essencegoff commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-2403326747) at 2024-10-09 01:00 PM PDT -essencegoff,2024-10-09T20:03:15Z,- essencegoff commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-2403330522) at 2024-10-09 01:03 PM PDT -essencegoff,2024-10-09T20:04:23Z,- essencegoff commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2403332303) at 2024-10-09 01:04 PM PDT -essencegoff,2024-10-09T20:05:37Z,- essencegoff commented on issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2403334323) at 2024-10-09 01:05 PM PDT -essencegoff,2024-10-22T20:25:24Z,- essencegoff opened issue: [7622](https://github.com/hackforla/website/issues/7622) at 2024-10-22 01:25 PM PDT -essencegoff,2024-10-22T20:26:53Z,- essencegoff commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2430194265) at 2024-10-22 01:26 PM PDT -essencegoff,2024-10-22T20:27:37Z,- essencegoff commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2430195499) at 2024-10-22 01:27 PM PDT -essencegoff,2024-10-22T20:40:51Z,- essencegoff assigned to issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2430195499) at 2024-10-22 01:40 PM PDT -essencegoff,2024-10-22T21:24:33Z,- essencegoff opened issue: [7623](https://github.com/hackforla/website/issues/7623) at 2024-10-22 02:24 PM PDT -essencegoff,2024-10-23T20:37:14Z,- essencegoff opened issue: [7629](https://github.com/hackforla/website/issues/7629) at 2024-10-23 01:37 PM PDT -essencegoff,2024-10-25T13:41:47Z,- essencegoff commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2437816624) at 2024-10-25 06:41 AM PDT -essencegoff,2024-10-25T13:47:02Z,- essencegoff commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437828783) at 2024-10-25 06:47 AM PDT -essencegoff,2024-10-25T14:14:18Z,- essencegoff commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437927464) at 2024-10-25 07:14 AM PDT -essencegoff,2024-11-01T18:00:07Z,- essencegoff commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2452332650) at 2024-11-01 11:00 AM PDT -essencegoff,2024-11-01T18:00:16Z,- essencegoff closed issue as completed: [7622](https://github.com/hackforla/website/issues/7622#event-15073145722) at 2024-11-01 11:00 AM PDT -essencegoff,2024-11-01T18:14:45Z,- essencegoff assigned to issue: [7578](https://github.com/hackforla/website/issues/7578) at 2024-11-01 11:14 AM PDT -essencegoff,2024-11-12T00:42:45Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#event-15257001601) at 2024-11-11 04:42 PM PST -essencegoff,2024-11-12T00:42:59Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359659) at 2024-11-11 04:42 PM PST -essencegoff,2024-11-12T00:53:54Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359659) at 2024-11-11 04:53 PM PST -essencegoff,2024-11-12T00:54:08Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469369813) at 2024-11-11 04:54 PM PST -essencegoff,2024-11-22T23:32:24Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2495096435) at 2024-11-22 03:32 PM PST -essencegoff,2024-11-23T02:45:18Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2495240126) at 2024-11-22 06:45 PM PST -essencegoff,2024-11-25T19:23:36Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852165) at 2024-11-25 11:23 AM PST -essencegoff,2024-11-25T19:23:51Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852920) at 2024-11-25 11:23 AM PST -essencegoff,2025-01-26T22:34:41Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499352645) at 2025-01-26 02:34 PM PST -essencegoff,2025-01-26T22:34:54Z,- essencegoff unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614618011) at 2025-01-26 02:34 PM PST -essencegoff,2025-01-27T13:08:31Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2615719799) at 2025-01-27 05:08 AM PST -essencegoff,2025-02-01T00:58:54Z,- essencegoff assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614622577) at 2025-01-31 04:58 PM PST -essencegoff,2025-02-25T01:08:26Z,- essencegoff assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -essencegoff,2025-03-04T20:29:04Z,- essencegoff commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2698833338) at 2025-03-04 12:29 PM PST -ethanchen7,3386,SKILLS ISSUE -ethanchen7,2022-07-19T02:20:34Z,- ethanchen7 opened issue: [3386](https://github.com/hackforla/website/issues/3386) at 2022-07-18 07:20 PM PDT -ethanloh8,7021,SKILLS ISSUE -ethanloh8,2024-06-19T02:47:39Z,- ethanloh8 opened issue: [7021](https://github.com/hackforla/website/issues/7021) at 2024-06-18 07:47 PM PDT -ethanloh8,2024-06-19T02:47:58Z,- ethanloh8 assigned to issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2177442575) at 2024-06-18 07:47 PM PDT -ethanstrominger,3292,SKILLS ISSUE -ethanstrominger,2022-06-23T15:45:12Z,- ethanstrominger opened issue: [3292](https://github.com/hackforla/website/issues/3292) at 2022-06-23 08:45 AM PDT -ethanstrominger,2022-06-23T15:49:38Z,- ethanstrominger assigned to issue: [3292](https://github.com/hackforla/website/issues/3292#issuecomment-1164579032) at 2022-06-23 08:49 AM PDT -ethanstrominger,2022-06-23T16:05:04Z,- ethanstrominger closed issue as completed: [3292](https://github.com/hackforla/website/issues/3292#event-6867742048) at 2022-06-23 09:05 AM PDT -ethanstrominger,2022-06-24T19:08:36Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1165856434) at 2022-06-24 12:08 PM PDT -ethanstrominger,2022-06-26T11:19:04Z,- ethanstrominger assigned to issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1165856434) at 2022-06-26 04:19 AM PDT -ethanstrominger,2022-06-26T11:42:27Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1166505139) at 2022-06-26 04:42 AM PDT -ethanstrominger,2022-07-29T19:45:29Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1199891752) at 2022-07-29 12:45 PM PDT -ethanstrominger,2022-07-31T15:19:30Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1200445186) at 2022-07-31 08:19 AM PDT -ethanstrominger,2022-08-01T12:56:47Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1201166605) at 2022-08-01 05:56 AM PDT -ethanstrominger,2022-08-02T20:24:41Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1203179128) at 2022-08-02 01:24 PM PDT -ethanstrominger,2022-08-08T15:01:32Z,- ethanstrominger opened issue: [3453](https://github.com/hackforla/website/issues/3453) at 2022-08-08 08:01 AM PDT -ethanstrominger,2022-08-09T13:59:33Z,- ethanstrominger commented on issue: [3453](https://github.com/hackforla/website/issues/3453#issuecomment-1209421005) at 2022-08-09 06:59 AM PDT -ethanstrominger,2022-08-19T16:05:46Z,- ethanstrominger commented on issue: [2978](https://github.com/hackforla/website/issues/2978#issuecomment-1220843408) at 2022-08-19 09:05 AM PDT -ethanstrominger,2022-09-13T21:29:41Z,- ethanstrominger opened issue: [3549](https://github.com/hackforla/website/issues/3549) at 2022-09-13 02:29 PM PDT -ethanstrominger,2022-09-13T21:48:25Z,- ethanstrominger opened issue: [3550](https://github.com/hackforla/website/issues/3550) at 2022-09-13 02:48 PM PDT -ethanstrominger,2022-10-20T15:38:47Z,- ethanstrominger opened issue: [3644](https://github.com/hackforla/website/issues/3644) at 2022-10-20 08:38 AM PDT -ethanstrominger,2022-11-16T23:41:20Z,- ethanstrominger closed issue as completed: [3550](https://github.com/hackforla/website/issues/3550#event-7828911005) at 2022-11-16 03:41 PM PST -ethanstrominger,2022-11-16T23:41:53Z,- ethanstrominger closed issue as completed: [3644](https://github.com/hackforla/website/issues/3644#event-7828913431) at 2022-11-16 03:41 PM PST -ethanstrominger,2022-11-16T23:42:09Z,- ethanstrominger closed issue as completed: [3549](https://github.com/hackforla/website/issues/3549#event-7828914388) at 2022-11-16 03:42 PM PST -ethanstrominger,2022-11-18T21:54:42Z,- ethanstrominger assigned to issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1314551689) at 2022-11-18 01:54 PM PST -ethanstrominger,2022-11-19T18:08:32Z,- ethanstrominger commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1320937402) at 2022-11-19 10:08 AM PST -ethanstrominger,2025-03-18T01:11:09Z,- ethanstrominger unassigned from issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-2277297084) at 2025-03-17 06:11 PM PDT -eulloa10,4318,SKILLS ISSUE -eulloa10,2023-03-29T03:26:42Z,- eulloa10 opened issue: [4318](https://github.com/hackforla/website/issues/4318) at 2023-03-28 08:26 PM PDT -eulloa10,2023-03-29T03:55:11Z,- eulloa10 assigned to issue: [4318](https://github.com/hackforla/website/issues/4318) at 2023-03-28 08:55 PM PDT -eulloa10,2023-04-04T23:30:35Z,- eulloa10 assigned to issue: [4397](https://github.com/hackforla/website/issues/4397) at 2023-04-04 04:30 PM PDT -eulloa10,2023-04-05T01:22:40Z,- eulloa10 opened pull request: [4421](https://github.com/hackforla/website/pull/4421) at 2023-04-04 06:22 PM PDT -eulloa10,2023-04-05T01:29:18Z,- eulloa10 commented on issue: [4397](https://github.com/hackforla/website/issues/4397#issuecomment-1496800990) at 2023-04-04 06:29 PM PDT -eulloa10,2023-04-06T02:52:08Z,- eulloa10 pull request merged: [4421](https://github.com/hackforla/website/pull/4421#event-8941131824) at 2023-04-05 07:52 PM PDT -eulloa10,2023-04-06T05:12:42Z,- eulloa10 commented on issue: [4318](https://github.com/hackforla/website/issues/4318#issuecomment-1498501824) at 2023-04-05 10:12 PM PDT -eulloa10,2023-04-26T01:40:37Z,- eulloa10 commented on issue: [4318](https://github.com/hackforla/website/issues/4318#issuecomment-1522639715) at 2023-04-25 06:40 PM PDT -eulloa10,2023-04-26T01:40:48Z,- eulloa10 closed issue as completed: [4318](https://github.com/hackforla/website/issues/4318#event-9098028346) at 2023-04-25 06:40 PM PDT -eunicode,8134,SKILLS ISSUE -eunicode,2025-05-14T03:00:04Z,- eunicode opened issue: [8133](https://github.com/hackforla/website/issues/8133) at 2025-05-13 08:00 PM PDT -eunicode,2025-05-14T03:01:43Z,- eunicode opened issue: [8134](https://github.com/hackforla/website/issues/8134) at 2025-05-13 08:01 PM PDT -eunicode,2025-05-14T03:01:43Z,- eunicode assigned to issue: [8134](https://github.com/hackforla/website/issues/8134) at 2025-05-13 08:01 PM PDT -eunicode,2025-05-14T03:08:15Z,- eunicode closed issue as completed: [8133](https://github.com/hackforla/website/issues/8133#event-17645449779) at 2025-05-13 08:08 PM PDT -eunicode,2025-05-14T03:38:44Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2878535001) at 2025-05-13 08:38 PM PDT -eunicode,2025-05-14T03:44:29Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2878561152) at 2025-05-13 08:44 PM PDT -eunicode,2025-05-20T04:31:59Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2892907015) at 2025-05-19 09:31 PM PDT -eunicode,2025-05-20T04:38:06Z,- eunicode assigned to issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2722992095) at 2025-05-19 09:38 PM PDT -eunicode,2025-05-20T05:01:02Z,- eunicode commented on issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2892966890) at 2025-05-19 10:01 PM PDT -eunicode,2025-05-20T05:02:03Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2892968214) at 2025-05-19 10:02 PM PDT -eunicode,2025-05-20T17:53:12Z,- eunicode opened pull request: [8148](https://github.com/hackforla/website/pull/8148) at 2025-05-20 10:53 AM PDT -eunicode,2025-05-20T18:06:04Z,- eunicode assigned to issue: [7956](https://github.com/hackforla/website/issues/7956) at 2025-05-20 11:06 AM PDT -eunicode,2025-05-20T18:06:20Z,- eunicode unassigned from issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895372016) at 2025-05-20 11:06 AM PDT -eunicode,2025-05-23T16:25:39Z,- eunicode pull request merged: [8148](https://github.com/hackforla/website/pull/8148#event-17793025614) at 2025-05-23 09:25 AM PDT -eunicode,2025-05-23T18:37:01Z,- eunicode assigned to issue: [7998](https://github.com/hackforla/website/issues/7998) at 2025-05-23 11:37 AM PDT -eunicode,2025-05-23T18:40:59Z,- eunicode commented on issue: [7998](https://github.com/hackforla/website/issues/7998#issuecomment-2905454709) at 2025-05-23 11:40 AM PDT -eunicode,2025-05-23T22:12:17Z,- eunicode opened pull request: [8156](https://github.com/hackforla/website/pull/8156) at 2025-05-23 03:12 PM PDT -eunicode,2025-05-23T22:16:04Z,- eunicode commented on issue: [7998](https://github.com/hackforla/website/issues/7998#issuecomment-2905928626) at 2025-05-23 03:16 PM PDT -eunicode,2025-05-23T22:16:55Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905929531) at 2025-05-23 03:16 PM PDT -eunicode,2025-05-23T22:19:27Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905932152) at 2025-05-23 03:19 PM PDT -eunicode,2025-05-23T22:20:51Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905933581) at 2025-05-23 03:20 PM PDT -eunicode,2025-05-23T22:23:57Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2905936701) at 2025-05-23 03:23 PM PDT -eunicode,2025-05-28T01:54:33Z,- eunicode pull request merged: [8156](https://github.com/hackforla/website/pull/8156#event-17841449939) at 2025-05-27 06:54 PM PDT -eunicode,2025-05-28T18:47:21Z,- eunicode assigned to issue: [7452](https://github.com/hackforla/website/issues/7452) at 2025-05-28 11:47 AM PDT -eunicode,2025-05-29T00:48:43Z,- eunicode commented on issue: [7452](https://github.com/hackforla/website/issues/7452#issuecomment-2917928907) at 2025-05-28 05:48 PM PDT -eunicode,2025-06-04T16:37:35Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940692827) at 2025-06-04 09:37 AM PDT -eunicode,2025-06-04T16:40:19Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940699886) at 2025-06-04 09:40 AM PDT -eunicode,2025-06-04T16:41:24Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940702807) at 2025-06-04 09:41 AM PDT -eunicode,2025-06-04T16:41:57Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2940704376) at 2025-06-04 09:41 AM PDT -eunicode,2025-06-04T16:45:08Z,- eunicode assigned to issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2899482311) at 2025-06-04 09:45 AM PDT -eunicode,2025-06-11T01:24:59Z,- eunicode opened pull request: [8180](https://github.com/hackforla/website/pull/8180) at 2025-06-10 06:24 PM PDT -eunicode,2025-06-11T01:27:58Z,- eunicode commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2960951164) at 2025-06-10 06:27 PM PDT -eunicode,2025-06-13T20:32:23Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2971606469) at 2025-06-13 01:32 PM PDT -eunicode,2025-06-13T20:36:07Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2971618464) at 2025-06-13 01:36 PM PDT -eunicode,2025-06-13T21:19:44Z,- eunicode opened issue: [8184](https://github.com/hackforla/website/issues/8184) at 2025-06-13 02:19 PM PDT -eunicode,2025-06-22T16:19:58Z,- eunicode pull request merged: [8180](https://github.com/hackforla/website/pull/8180#event-18261855067) at 2025-06-22 09:19 AM PDT -eunicode,2025-06-27T18:59:13Z,- eunicode commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-3014092251) at 2025-06-27 11:59 AM PDT -eunicode,2025-07-03T22:39:17Z,- eunicode commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3033872371) at 2025-07-03 03:39 PM PDT -eunicode,2025-07-03T22:44:16Z,- eunicode submitted pull request review: [8231](https://github.com/hackforla/website/pull/8231#pullrequestreview-2984889329) at 2025-07-03 03:44 PM PDT -eunicode,2025-07-12T00:15:09Z,- eunicode commented on issue: [8184](https://github.com/hackforla/website/issues/8184#issuecomment-3064352168) at 2025-07-11 05:15 PM PDT -evan-ishibashi,6247,SKILLS ISSUE -evan-ishibashi,2024-02-06T03:32:13Z,- evan-ishibashi opened issue: [6247](https://github.com/hackforla/website/issues/6247) at 2024-02-05 07:32 PM PST -evan-ishibashi,2024-02-06T03:32:17Z,- evan-ishibashi assigned to issue: [6247](https://github.com/hackforla/website/issues/6247) at 2024-02-05 07:32 PM PST -evan-ishibashi,2024-02-14T01:24:25Z,- evan-ishibashi assigned to issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942349163) at 2024-02-13 05:24 PM PST -evan-ishibashi,2024-02-14T02:28:42Z,- evan-ishibashi opened pull request: [6292](https://github.com/hackforla/website/pull/6292) at 2024-02-13 06:28 PM PST -evan-ishibashi,2024-02-14T02:33:55Z,- evan-ishibashi commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942996255) at 2024-02-13 06:33 PM PST -evan-ishibashi,2024-02-14T02:37:20Z,- evan-ishibashi commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942998417) at 2024-02-13 06:37 PM PST -evan-ishibashi,2024-02-15T21:23:51Z,- evan-ishibashi commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1947363460) at 2024-02-15 01:23 PM PST -evan-ishibashi,2024-02-17T08:44:36Z,- evan-ishibashi pull request merged: [6292](https://github.com/hackforla/website/pull/6292#event-11835936854) at 2024-02-17 12:44 AM PST -evan-ishibashi,2024-02-17T18:43:10Z,- evan-ishibashi assigned to issue: [6296](https://github.com/hackforla/website/issues/6296) at 2024-02-17 10:43 AM PST -evan-ishibashi,2024-02-17T18:46:44Z,- evan-ishibashi commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1950281317) at 2024-02-17 10:46 AM PST -evan-ishibashi,2024-02-18T03:58:29Z,- evan-ishibashi opened pull request: [6314](https://github.com/hackforla/website/pull/6314) at 2024-02-17 07:58 PM PST -evan-ishibashi,2024-02-18T04:01:03Z,- evan-ishibashi commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1950944948) at 2024-02-17 08:01 PM PST -evan-ishibashi,2024-02-18T04:51:00Z,- evan-ishibashi commented on pull request: [6314](https://github.com/hackforla/website/pull/6314#issuecomment-1950961430) at 2024-02-17 08:51 PM PST -evan-ishibashi,2024-02-19T07:04:23Z,- evan-ishibashi pull request closed w/o merging: [6314](https://github.com/hackforla/website/pull/6314#event-11845145537) at 2024-02-18 11:04 PM PST -evan-ishibashi,2024-03-22T03:52:28Z,- evan-ishibashi commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-2014306188) at 2024-03-21 08:52 PM PDT -evan-ishibashi,2024-03-22T05:52:32Z,- evan-ishibashi opened pull request: [6504](https://github.com/hackforla/website/pull/6504) at 2024-03-21 10:52 PM PDT -evan-ishibashi,2024-03-27T01:46:14Z,- evan-ishibashi pull request closed w/o merging: [6504](https://github.com/hackforla/website/pull/6504#event-12258571018) at 2024-03-26 06:46 PM PDT -evan-ishibashi,2024-03-27T01:46:46Z,- evan-ishibashi commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2021772686) at 2024-03-26 06:46 PM PDT -evan-ishibashi,2024-03-27T01:49:59Z,- evan-ishibashi opened pull request: [6522](https://github.com/hackforla/website/pull/6522) at 2024-03-26 06:49 PM PDT -evan-ishibashi,2024-03-27T01:50:47Z,- evan-ishibashi commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2021776318) at 2024-03-26 06:50 PM PDT -evan-ishibashi,2024-03-29T20:33:00Z,- evan-ishibashi submitted pull request review: [6508](https://github.com/hackforla/website/pull/6508#pullrequestreview-1969578866) at 2024-03-29 01:33 PM PDT -evan-ishibashi,2024-03-30T11:25:41Z,- evan-ishibashi pull request merged: [6522](https://github.com/hackforla/website/pull/6522#event-12300406046) at 2024-03-30 04:25 AM PDT -evan-ishibashi,2024-05-23T07:10:50Z,- evan-ishibashi commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2126387516) at 2024-05-23 12:10 AM PDT -evancchen,2021-01-06T04:30:40Z,- evancchen assigned to issue: [906](https://github.com/hackforla/website/issues/906) at 2021-01-05 08:30 PM PST -evancchen,2021-01-17T18:26:16Z,- evancchen commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:26 AM PST -evancchen,2021-01-17T18:26:31Z,- evancchen unassigned from issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:26 AM PST -evancchen,2021-01-17T18:28:08Z,- evancchen assigned to issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857349) at 2021-01-17 10:28 AM PST -evancchen,2021-01-18T03:50:39Z,- evancchen opened pull request: [948](https://github.com/hackforla/website/pull/948) at 2021-01-17 07:50 PM PST -evancchen,2021-01-18T04:12:51Z,- evancchen commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761967486) at 2021-01-17 08:12 PM PST -evancchen,2021-01-20T03:27:41Z,- evancchen pull request merged: [948](https://github.com/hackforla/website/pull/948#event-4225773282) at 2021-01-19 07:27 PM PST -evancchen,2021-01-27T03:13:04Z,- evancchen unassigned from issue: [906](https://github.com/hackforla/website/issues/906#event-4253725765) at 2021-01-26 07:13 PM PST -evancchen,2021-01-27T03:14:16Z,- evancchen assigned to issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-26 07:14 PM PST -evancchen,2021-01-28T00:42:34Z,- evancchen opened pull request: [972](https://github.com/hackforla/website/pull/972) at 2021-01-27 04:42 PM PST -evancchen,2021-01-31T19:33:09Z,- evancchen assigned to issue: [959](https://github.com/hackforla/website/issues/959) at 2021-01-31 11:33 AM PST -evancchen,2021-01-31T19:37:10Z,- evancchen pull request merged: [972](https://github.com/hackforla/website/pull/972#event-4270680779) at 2021-01-31 11:37 AM PST -evancchen,2021-01-31T19:39:04Z,- evancchen unassigned from issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770427214) at 2021-01-31 11:39 AM PST -evancchen,2021-01-31T20:20:10Z,- evancchen unassigned from issue: [959](https://github.com/hackforla/website/issues/959) at 2021-01-31 12:20 PM PST -evancchen,2021-01-31T20:24:00Z,- evancchen assigned to issue: [946](https://github.com/hackforla/website/issues/946#issuecomment-764188225) at 2021-01-31 12:24 PM PST -evancchen,2021-02-04T01:00:54Z,- evancchen opened pull request: [1000](https://github.com/hackforla/website/pull/1000) at 2021-02-03 05:00 PM PST -evancchen,2021-02-04T01:01:31Z,- evancchen commented on pull request: [1000](https://github.com/hackforla/website/pull/1000#issuecomment-772943905) at 2021-02-03 05:01 PM PST -evancchen,2021-02-04T01:19:45Z,- evancchen assigned to issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-757548975) at 2021-02-03 05:19 PM PST -evancchen,2021-02-05T00:47:26Z,- evancchen assigned to issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-04 04:47 PM PST -evancchen,2021-02-07T02:39:43Z,- evancchen pull request merged: [1000](https://github.com/hackforla/website/pull/1000#event-4299741336) at 2021-02-06 06:39 PM PST -evancchen,2021-02-07T19:01:39Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 11:01 AM PST -evancchen,2021-02-07T19:51:56Z,- evancchen opened pull request: [1011](https://github.com/hackforla/website/pull/1011) at 2021-02-07 11:51 AM PST -evancchen,2021-02-07T19:52:16Z,- evancchen closed issue by PR 816: [819](https://github.com/hackforla/website/issues/819#event-4300607637) at 2021-02-07 11:52 AM PST -evancchen,2021-02-07T19:52:16Z,- evancchen pull request merged: [1011](https://github.com/hackforla/website/pull/1011#event-4300607639) at 2021-02-07 11:52 AM PST -evancchen,2021-02-07T19:55:40Z,- evancchen opened pull request: [1012](https://github.com/hackforla/website/pull/1012) at 2021-02-07 11:55 AM PST -evancchen,2021-02-07T20:04:45Z,- evancchen reopened issue: [819](https://github.com/hackforla/website/issues/819#event-4300607637) at 2021-02-07 12:04 PM PST -evancchen,2021-02-07T20:17:18Z,- evancchen pull request closed w/o merging: [1012](https://github.com/hackforla/website/pull/1012#event-4300634020) at 2021-02-07 12:17 PM PST -evancchen,2021-02-07T20:17:50Z,- evancchen closed issue by PR 816: [819](https://github.com/hackforla/website/issues/819#event-4300634542) at 2021-02-07 12:17 PM PST -evancchen,2021-02-07T20:17:58Z,- evancchen unassigned from issue: [819](https://github.com/hackforla/website/issues/819#event-4300634542) at 2021-02-07 12:17 PM PST -evancchen,2021-02-07T20:39:38Z,- evancchen assigned to issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 12:39 PM PST -evancchen,2021-02-07T20:40:57Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 12:40 PM PST -evancchen,2021-02-07T20:44:16Z,- evancchen assigned to issue: [864](https://github.com/hackforla/website/issues/864) at 2021-02-07 12:44 PM PST -evancchen,2021-02-10T02:34:33Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-776395756) at 2021-02-09 06:34 PM PST -evancchen,2021-02-10T02:34:33Z,- evancchen unassigned from issue: [864](https://github.com/hackforla/website/issues/864#issuecomment-776395756) at 2021-02-09 06:34 PM PST -evancchen,2021-02-11T03:04:39Z,- evancchen assigned to issue: [1010](https://github.com/hackforla/website/issues/1010) at 2021-02-10 07:04 PM PST -evancchen,2021-02-14T18:45:53Z,- evancchen unassigned from issue: [1010](https://github.com/hackforla/website/issues/1010) at 2021-02-14 10:45 AM PST -evancchen,2021-02-14T18:56:15Z,- evancchen assigned to issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-14 10:56 AM PST -evancchen,2021-02-14T19:07:04Z,- evancchen unassigned from issue: [1043](https://github.com/hackforla/website/issues/1043) at 2021-02-14 11:07 AM PST -evancchen,2021-02-14T19:07:50Z,- evancchen assigned to issue: [1042](https://github.com/hackforla/website/issues/1042) at 2021-02-14 11:07 AM PST -evancchen,2021-02-24T02:47:42Z,- evancchen opened pull request: [1097](https://github.com/hackforla/website/pull/1097) at 2021-02-23 06:47 PM PST -evancchen,2021-02-24T03:38:38Z,- evancchen commented on pull request: [1097](https://github.com/hackforla/website/pull/1097#issuecomment-784728366) at 2021-02-23 07:38 PM PST -evancchen,2021-02-24T03:45:20Z,- evancchen pull request merged: [1097](https://github.com/hackforla/website/pull/1097#event-4368626818) at 2021-02-23 07:45 PM PST -evancchen,2021-02-24T03:56:32Z,- evancchen assigned to issue: [1098](https://github.com/hackforla/website/issues/1098) at 2021-02-23 07:56 PM PST -evancchen,2021-02-24T04:29:46Z,- evancchen opened pull request: [1099](https://github.com/hackforla/website/pull/1099) at 2021-02-23 08:29 PM PST -evancchen,2021-02-24T04:43:55Z,- evancchen pull request merged: [1099](https://github.com/hackforla/website/pull/1099#event-4368764193) at 2021-02-23 08:43 PM PST -evancchen,2021-02-24T23:02:35Z,- evancchen assigned to issue: [1081](https://github.com/hackforla/website/issues/1081) at 2021-02-24 03:02 PM PST -evancchen,2021-02-24T23:24:14Z,- evancchen commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-785460279) at 2021-02-24 03:24 PM PST -evancchen,2021-02-27T00:59:41Z,- evancchen opened pull request: [1129](https://github.com/hackforla/website/pull/1129) at 2021-02-26 04:59 PM PST -evancchen,2021-02-28T19:06:38Z,- evancchen commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-787504506) at 2021-02-28 11:06 AM PST -evancchen,2021-02-28T19:08:35Z,- evancchen assigned to issue: [1136](https://github.com/hackforla/website/issues/1136) at 2021-02-28 11:08 AM PST -evancchen,2021-03-02T02:52:15Z,- evancchen commented on pull request: [1129](https://github.com/hackforla/website/pull/1129#issuecomment-788536186) at 2021-03-01 06:52 PM PST -evancchen,2021-03-02T03:13:16Z,- evancchen opened pull request: [1148](https://github.com/hackforla/website/pull/1148) at 2021-03-01 07:13 PM PST -evancchen,2021-03-02T05:30:17Z,- evancchen pull request merged: [1129](https://github.com/hackforla/website/pull/1129#event-4393726388) at 2021-03-01 09:30 PM PST -evancchen,2021-03-03T05:06:14Z,- evancchen pull request merged: [1148](https://github.com/hackforla/website/pull/1148#event-4399557838) at 2021-03-02 09:06 PM PST -evancchen,2021-03-07T19:20:45Z,- evancchen assigned to issue: [1169](https://github.com/hackforla/website/issues/1169) at 2021-03-07 11:20 AM PST -evancchen,2021-03-07T19:38:03Z,- evancchen opened pull request: [1172](https://github.com/hackforla/website/pull/1172) at 2021-03-07 11:38 AM PST -evancchen,2021-03-09T17:57:09Z,- evancchen pull request merged: [1172](https://github.com/hackforla/website/pull/1172#event-4430258960) at 2021-03-09 09:57 AM PST -evancchen,2021-03-10T03:10:32Z,- evancchen assigned to issue: [1189](https://github.com/hackforla/website/issues/1189) at 2021-03-09 07:10 PM PST -evancchen,2021-03-11T02:35:06Z,- evancchen commented on issue: [1189](https://github.com/hackforla/website/issues/1189#issuecomment-796387816) at 2021-03-10 06:35 PM PST -evancchen,2021-03-11T02:38:35Z,- evancchen opened pull request: [1198](https://github.com/hackforla/website/pull/1198) at 2021-03-10 06:38 PM PST -evancchen,2021-03-12T02:24:02Z,- evancchen pull request merged: [1198](https://github.com/hackforla/website/pull/1198#event-4448402951) at 2021-03-11 06:24 PM PST -evancchen,2021-03-14T18:11:49Z,- evancchen assigned to issue: [1166](https://github.com/hackforla/website/issues/1166#issuecomment-797862651) at 2021-03-14 11:11 AM PDT -evancchen,2021-03-14T18:35:31Z,- evancchen opened pull request: [1204](https://github.com/hackforla/website/pull/1204) at 2021-03-14 11:35 AM PDT -evancchen,2021-03-17T03:13:16Z,- evancchen pull request merged: [1204](https://github.com/hackforla/website/pull/1204#event-4467869456) at 2021-03-16 08:13 PM PDT -evancchen,2021-03-17T03:46:37Z,- evancchen submitted pull request review: [1214](https://github.com/hackforla/website/pull/1214#pullrequestreview-613898330) at 2021-03-16 08:46 PM PDT -evancchen,2021-03-19T00:05:23Z,- evancchen assigned to issue: [1125](https://github.com/hackforla/website/issues/1125) at 2021-03-18 05:05 PM PDT -evancchen,2021-03-19T00:19:01Z,- evancchen commented on issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-802407318) at 2021-03-18 05:19 PM PDT -evancchen,2021-03-19T00:20:59Z,- evancchen commented on issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-802408446) at 2021-03-18 05:20 PM PDT -evancchen,2021-03-21T16:38:23Z,- evancchen unassigned from issue: [1125](https://github.com/hackforla/website/issues/1125#issuecomment-803543032) at 2021-03-21 09:38 AM PDT -evancchen,2021-03-21T16:55:38Z,- evancchen assigned to issue: [1063](https://github.com/hackforla/website/issues/1063) at 2021-03-21 09:55 AM PDT -evancchen,2021-03-23T01:56:25Z,- evancchen commented on issue: [1063](https://github.com/hackforla/website/issues/1063#issuecomment-804524621) at 2021-03-22 06:56 PM PDT -evancchen,2021-03-24T23:00:54Z,- evancchen opened pull request: [1327](https://github.com/hackforla/website/pull/1327) at 2021-03-24 04:00 PM PDT -evancchen,2021-03-31T21:22:20Z,- evancchen pull request merged: [1327](https://github.com/hackforla/website/pull/1327#event-4537473236) at 2021-03-31 02:22 PM PDT -evancchen,2021-04-04T18:45:11Z,- evancchen assigned to issue: [1333](https://github.com/hackforla/website/issues/1333) at 2021-04-04 11:45 AM PDT -evancchen,2021-04-09T21:06:53Z,- evancchen opened pull request: [1385](https://github.com/hackforla/website/pull/1385) at 2021-04-09 02:06 PM PDT -evancchen,2021-04-09T21:22:45Z,- evancchen commented on pull request: [1385](https://github.com/hackforla/website/pull/1385#issuecomment-816979468) at 2021-04-09 02:22 PM PDT -evancchen,2021-04-09T21:28:50Z,- evancchen pull request merged: [1385](https://github.com/hackforla/website/pull/1385#event-4576473324) at 2021-04-09 02:28 PM PDT -evancchen,2021-04-11T19:01:58Z,- evancchen assigned to issue: [1322](https://github.com/hackforla/website/issues/1322) at 2021-04-11 12:01 PM PDT -evancchen,2021-04-18T19:30:48Z,- evancchen opened pull request: [1419](https://github.com/hackforla/website/pull/1419) at 2021-04-18 12:30 PM PDT -evancchen,2021-04-23T16:34:01Z,- evancchen pull request merged: [1419](https://github.com/hackforla/website/pull/1419#event-4637855220) at 2021-04-23 09:34 AM PDT -evancchen,2021-04-25T18:35:41Z,- evancchen assigned to issue: [1463](https://github.com/hackforla/website/issues/1463) at 2021-04-25 11:35 AM PDT -evancchen,2021-04-28T03:54:30Z,- evancchen opened pull request: [1484](https://github.com/hackforla/website/pull/1484) at 2021-04-27 08:54 PM PDT -evancchen,2021-05-02T16:12:29Z,- evancchen pull request merged: [1484](https://github.com/hackforla/website/pull/1484#event-4674970275) at 2021-05-02 09:12 AM PDT -evancchen,2021-05-05T02:14:49Z,- evancchen assigned to issue: [1498](https://github.com/hackforla/website/issues/1498) at 2021-05-04 07:14 PM PDT -evancchen,2021-05-30T18:17:09Z,- evancchen assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -evancchen,2021-06-02T01:26:37Z,- evancchen unassigned from issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-835632636) at 2021-06-01 06:26 PM PDT -evancchen,2021-06-02T01:42:27Z,- evancchen assigned to issue: [1612](https://github.com/hackforla/website/issues/1612) at 2021-06-01 06:42 PM PDT -evancchen,2021-06-02T22:18:57Z,- evancchen opened pull request: [1682](https://github.com/hackforla/website/pull/1682) at 2021-06-02 03:18 PM PDT -evancchen,2021-06-06T06:30:59Z,- evancchen pull request merged: [1682](https://github.com/hackforla/website/pull/1682#event-4847685101) at 2021-06-05 11:30 PM PDT -evancchen,2021-06-20T14:03:38Z,- evancchen assigned to issue: [1598](https://github.com/hackforla/website/issues/1598) at 2021-06-20 07:03 AM PDT -evancchen,2021-07-04T18:47:57Z,- evancchen commented on issue: [1598](https://github.com/hackforla/website/issues/1598#issuecomment-873640715) at 2021-07-04 11:47 AM PDT -evancchen,2021-07-06T21:38:38Z,- evancchen unassigned from issue: [1598](https://github.com/hackforla/website/issues/1598#issuecomment-873640715) at 2021-07-06 02:38 PM PDT -evancchen,2021-07-31T18:15:54Z,- evancchen assigned to issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-31 11:15 AM PDT -evancchen,2021-07-31T18:26:20Z,- evancchen unassigned from issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-31 11:26 AM PDT -evanhesketh,5069,SKILLS ISSUE -evanhesketh,2023-07-26T02:59:26Z,- evanhesketh opened issue: [5069](https://github.com/hackforla/website/issues/5069) at 2023-07-25 07:59 PM PDT -evanhesketh,2023-07-26T02:59:36Z,- evanhesketh assigned to issue: [5069](https://github.com/hackforla/website/issues/5069) at 2023-07-25 07:59 PM PDT -evanhesketh,2023-07-26T20:40:29Z,- evanhesketh assigned to issue: [4807](https://github.com/hackforla/website/issues/4807) at 2023-07-26 01:40 PM PDT -evanhesketh,2023-07-26T20:49:11Z,- evanhesketh commented on issue: [4807](https://github.com/hackforla/website/issues/4807#issuecomment-1652473957) at 2023-07-26 01:49 PM PDT -evanhesketh,2023-07-26T20:51:17Z,- evanhesketh commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1652476885) at 2023-07-26 01:51 PM PDT -evanhesketh,2023-07-27T21:12:27Z,- evanhesketh opened pull request: [5104](https://github.com/hackforla/website/pull/5104) at 2023-07-27 02:12 PM PDT -evanhesketh,2023-08-01T03:09:54Z,- evanhesketh pull request merged: [5104](https://github.com/hackforla/website/pull/5104#event-9971318604) at 2023-07-31 08:09 PM PDT -evanhesketh,2023-08-03T19:35:16Z,- evanhesketh commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1664531898) at 2023-08-03 12:35 PM PDT -evanhesketh,2023-08-04T18:44:14Z,- evanhesketh submitted pull request review: [5133](https://github.com/hackforla/website/pull/5133#pullrequestreview-1563387814) at 2023-08-04 11:44 AM PDT -evanhesketh,2023-08-04T18:51:27Z,- evanhesketh assigned to issue: [5136](https://github.com/hackforla/website/issues/5136) at 2023-08-04 11:51 AM PDT -evanhesketh,2023-08-04T18:53:37Z,- evanhesketh commented on issue: [5136](https://github.com/hackforla/website/issues/5136#issuecomment-1666044081) at 2023-08-04 11:53 AM PDT -evanhesketh,2023-08-04T19:37:38Z,- evanhesketh opened pull request: [5141](https://github.com/hackforla/website/pull/5141) at 2023-08-04 12:37 PM PDT -evanhesketh,2023-08-06T16:30:48Z,- evanhesketh pull request merged: [5141](https://github.com/hackforla/website/pull/5141#event-10017594719) at 2023-08-06 09:30 AM PDT -evanhesketh,2023-08-08T14:53:11Z,- evanhesketh assigned to issue: [5011](https://github.com/hackforla/website/issues/5011#issuecomment-1641390150) at 2023-08-08 07:53 AM PDT -evanhesketh,2023-08-08T14:55:50Z,- evanhesketh commented on issue: [5011](https://github.com/hackforla/website/issues/5011#issuecomment-1669781364) at 2023-08-08 07:55 AM PDT -evanhesketh,2023-08-11T19:00:43Z,- evanhesketh commented on issue: [5069](https://github.com/hackforla/website/issues/5069#issuecomment-1675232644) at 2023-08-11 12:00 PM PDT -evanhesketh,2023-08-14T13:53:41Z,- evanhesketh unassigned from issue: [4807](https://github.com/hackforla/website/issues/4807#issuecomment-1676444067) at 2023-08-14 06:53 AM PDT -evanhesketh,2023-08-16T19:40:52Z,- evanhesketh commented on pull request: [5239](https://github.com/hackforla/website/pull/5239#issuecomment-1681174592) at 2023-08-16 12:40 PM PDT -evanhesketh,2023-08-16T21:47:03Z,- evanhesketh submitted pull request review: [5239](https://github.com/hackforla/website/pull/5239#pullrequestreview-1581467523) at 2023-08-16 02:47 PM PDT -evanhesketh,2023-08-17T01:18:47Z,- evanhesketh submitted pull request review: [5239](https://github.com/hackforla/website/pull/5239#pullrequestreview-1581626559) at 2023-08-16 06:18 PM PDT -evanhesketh,2023-08-28T21:16:22Z,- evanhesketh commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1696422917) at 2023-08-28 02:16 PM PDT -evanhesketh,2023-08-28T21:33:03Z,- evanhesketh submitted pull request review: [5327](https://github.com/hackforla/website/pull/5327#pullrequestreview-1599161575) at 2023-08-28 02:33 PM PDT -evanhesketh,2023-09-04T20:47:10Z,- evanhesketh closed issue as completed: [5069](https://github.com/hackforla/website/issues/5069#event-10276983301) at 2023-09-04 01:47 PM PDT -Excursionpreneur,2020-08-13T01:17:38Z,- Excursionpreneur assigned to issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673122179) at 2020-08-12 06:17 PM PDT -Excursionpreneur,2020-08-23T17:23:05Z,- Excursionpreneur unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-678794954) at 2020-08-23 10:23 AM PDT -Excursionpreneur,2020-08-30T18:44:13Z,- Excursionpreneur assigned to issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-30 11:44 AM PDT -Excursionpreneur,2020-09-06T17:53:11Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-687854859) at 2020-09-06 10:53 AM PDT -Excursionpreneur,2020-09-09T00:12:47Z,- Excursionpreneur opened pull request: [724](https://github.com/hackforla/website/pull/724) at 2020-09-08 05:12 PM PDT -Excursionpreneur,2020-09-14T01:05:51Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691756830) at 2020-09-13 06:05 PM PDT -Excursionpreneur,2020-09-14T01:07:03Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691757088) at 2020-09-13 06:07 PM PDT -Excursionpreneur,2020-09-16T03:22:01Z,- Excursionpreneur pull request merged: [724](https://github.com/hackforla/website/pull/724#event-3771152930) at 2020-09-15 08:22 PM PDT -Excursionpreneur,2020-09-16T04:04:59Z,- Excursionpreneur commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-693156535) at 2020-09-15 09:04 PM PDT -Excursionpreneur,2020-09-18T22:07:36Z,- Excursionpreneur assigned to issue: [700](https://github.com/hackforla/website/issues/700) at 2020-09-18 03:07 PM PDT -Excursionpreneur,2020-10-04T17:52:55Z,- Excursionpreneur unassigned from issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-04 10:52 AM PDT -ExperimentsInHonesty,4873,SKILLS ISSUE -ExperimentsInHonesty,2018-12-31T23:26:17Z,- ExperimentsInHonesty opened pull request: [27](https://github.com/hackforla/website/pull/27) at 2018-12-31 03:26 PM PST -ExperimentsInHonesty,2019-01-01T01:19:17Z,- ExperimentsInHonesty pull request merged: [27](https://github.com/hackforla/website/pull/27#event-2049302305) at 2018-12-31 05:19 PM PST -ExperimentsInHonesty,2019-01-09T00:18:50Z,- ExperimentsInHonesty opened pull request: [28](https://github.com/hackforla/website/pull/28) at 2019-01-08 04:18 PM PST -ExperimentsInHonesty,2019-01-09T05:10:40Z,- ExperimentsInHonesty pull request merged: [28](https://github.com/hackforla/website/pull/28#event-2062142772) at 2019-01-08 09:10 PM PST -ExperimentsInHonesty,2019-01-09T07:08:37Z,- ExperimentsInHonesty opened pull request: [29](https://github.com/hackforla/website/pull/29) at 2019-01-08 11:08 PM PST -ExperimentsInHonesty,2019-01-09T07:13:39Z,- ExperimentsInHonesty commented on pull request: [28](https://github.com/hackforla/website/pull/28#issuecomment-452595270) at 2019-01-08 11:13 PM PST -ExperimentsInHonesty,2019-01-09T19:08:40Z,- ExperimentsInHonesty pull request closed w/o merging: [29](https://github.com/hackforla/website/pull/29#event-2063942807) at 2019-01-09 11:08 AM PST -ExperimentsInHonesty,2019-01-09T20:20:04Z,- ExperimentsInHonesty opened pull request: [30](https://github.com/hackforla/website/pull/30) at 2019-01-09 12:20 PM PST -ExperimentsInHonesty,2019-01-10T03:38:19Z,- ExperimentsInHonesty pull request merged: [30](https://github.com/hackforla/website/pull/30#event-2064857571) at 2019-01-09 07:38 PM PST -ExperimentsInHonesty,2019-01-15T04:33:49Z,- ExperimentsInHonesty opened pull request: [31](https://github.com/hackforla/website/pull/31) at 2019-01-14 08:33 PM PST -ExperimentsInHonesty,2019-03-13T19:27:35Z,- ExperimentsInHonesty opened pull request: [41](https://github.com/hackforla/website/pull/41) at 2019-03-13 12:27 PM PDT -ExperimentsInHonesty,2019-03-13T20:33:22Z,- ExperimentsInHonesty opened pull request: [42](https://github.com/hackforla/website/pull/42) at 2019-03-13 01:33 PM PDT -ExperimentsInHonesty,2019-03-13T20:35:07Z,- ExperimentsInHonesty pull request closed w/o merging: [42](https://github.com/hackforla/website/pull/42#event-2201546315) at 2019-03-13 01:35 PM PDT -ExperimentsInHonesty,2019-03-13T20:36:37Z,- ExperimentsInHonesty opened pull request: [43](https://github.com/hackforla/website/pull/43) at 2019-03-13 01:36 PM PDT -ExperimentsInHonesty,2019-03-14T03:26:23Z,- ExperimentsInHonesty opened pull request: [44](https://github.com/hackforla/website/pull/44) at 2019-03-13 08:26 PM PDT -ExperimentsInHonesty,2019-03-26T18:41:11Z,- ExperimentsInHonesty pull request closed w/o merging: [44](https://github.com/hackforla/website/pull/44#event-2230808856) at 2019-03-26 11:41 AM PDT -ExperimentsInHonesty,2019-03-26T18:41:19Z,- ExperimentsInHonesty pull request closed w/o merging: [43](https://github.com/hackforla/website/pull/43#event-2230809342) at 2019-03-26 11:41 AM PDT -ExperimentsInHonesty,2019-03-26T18:41:36Z,- ExperimentsInHonesty pull request closed w/o merging: [41](https://github.com/hackforla/website/pull/41#event-2230810142) at 2019-03-26 11:41 AM PDT -ExperimentsInHonesty,2019-03-27T23:58:43Z,- ExperimentsInHonesty opened pull request: [50](https://github.com/hackforla/website/pull/50) at 2019-03-27 04:58 PM PDT -ExperimentsInHonesty,2019-04-01T01:55:37Z,- ExperimentsInHonesty pull request closed w/o merging: [50](https://github.com/hackforla/website/pull/50#event-2241946966) at 2019-03-31 06:55 PM PDT -ExperimentsInHonesty,2019-04-01T02:47:50Z,- ExperimentsInHonesty opened pull request: [55](https://github.com/hackforla/website/pull/55) at 2019-03-31 07:47 PM PDT -ExperimentsInHonesty,2019-04-01T02:51:37Z,- ExperimentsInHonesty pull request closed w/o merging: [55](https://github.com/hackforla/website/pull/55#event-2242006747) at 2019-03-31 07:51 PM PDT -ExperimentsInHonesty,2019-04-01T03:16:29Z,- ExperimentsInHonesty opened pull request: [56](https://github.com/hackforla/website/pull/56) at 2019-03-31 08:16 PM PDT -ExperimentsInHonesty,2019-04-01T03:17:17Z,- ExperimentsInHonesty pull request closed w/o merging: [56](https://github.com/hackforla/website/pull/56#event-2242032332) at 2019-03-31 08:17 PM PDT -ExperimentsInHonesty,2019-04-01T03:20:46Z,- ExperimentsInHonesty opened pull request: [57](https://github.com/hackforla/website/pull/57) at 2019-03-31 08:20 PM PDT -ExperimentsInHonesty,2019-04-02T02:06:44Z,- ExperimentsInHonesty pull request closed w/o merging: [57](https://github.com/hackforla/website/pull/57#event-2245088536) at 2019-04-01 07:06 PM PDT -ExperimentsInHonesty,2019-04-02T02:09:03Z,- ExperimentsInHonesty opened pull request: [58](https://github.com/hackforla/website/pull/58) at 2019-04-01 07:09 PM PDT -ExperimentsInHonesty,2019-04-02T03:52:53Z,- ExperimentsInHonesty pull request merged: [58](https://github.com/hackforla/website/pull/58#event-2245223060) at 2019-04-01 08:52 PM PDT -ExperimentsInHonesty,2019-04-02T04:46:36Z,- ExperimentsInHonesty commented on pull request: [46](https://github.com/hackforla/website/pull/46#issuecomment-478842708) at 2019-04-01 09:46 PM PDT -ExperimentsInHonesty,2019-04-04T21:42:51Z,- ExperimentsInHonesty opened pull request: [59](https://github.com/hackforla/website/pull/59) at 2019-04-04 02:42 PM PDT -ExperimentsInHonesty,2019-04-05T23:21:48Z,- ExperimentsInHonesty pull request merged: [59](https://github.com/hackforla/website/pull/59#event-2257129887) at 2019-04-05 04:21 PM PDT -ExperimentsInHonesty,2019-04-12T20:47:47Z,- ExperimentsInHonesty opened pull request: [62](https://github.com/hackforla/website/pull/62) at 2019-04-12 01:47 PM PDT -ExperimentsInHonesty,2019-04-12T21:12:34Z,- ExperimentsInHonesty opened pull request: [63](https://github.com/hackforla/website/pull/63) at 2019-04-12 02:12 PM PDT -ExperimentsInHonesty,2019-04-23T02:15:55Z,- ExperimentsInHonesty pull request merged: [63](https://github.com/hackforla/website/pull/63#event-2292734110) at 2019-04-22 07:15 PM PDT -ExperimentsInHonesty,2019-04-23T02:19:03Z,- ExperimentsInHonesty pull request merged: [62](https://github.com/hackforla/website/pull/62#event-2292738145) at 2019-04-22 07:19 PM PDT -ExperimentsInHonesty,2019-04-23T06:01:05Z,- ExperimentsInHonesty closed issue as completed: [16](https://github.com/hackforla/website/issues/16#event-2292996298) at 2019-04-22 11:01 PM PDT -ExperimentsInHonesty,2019-04-23T06:10:46Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-485656867) at 2019-04-22 11:10 PM PDT -ExperimentsInHonesty,2019-04-23T06:27:51Z,- ExperimentsInHonesty opened issue: [64](https://github.com/hackforla/website/issues/64) at 2019-04-22 11:27 PM PDT -ExperimentsInHonesty,2019-04-23T06:32:24Z,- ExperimentsInHonesty opened issue: [65](https://github.com/hackforla/website/issues/65) at 2019-04-22 11:32 PM PDT -ExperimentsInHonesty,2019-04-23T06:37:45Z,- ExperimentsInHonesty opened issue: [66](https://github.com/hackforla/website/issues/66) at 2019-04-22 11:37 PM PDT -ExperimentsInHonesty,2019-04-23T06:50:59Z,- ExperimentsInHonesty opened issue: [67](https://github.com/hackforla/website/issues/67) at 2019-04-22 11:50 PM PDT -ExperimentsInHonesty,2019-04-23T08:11:47Z,- ExperimentsInHonesty opened issue: [69](https://github.com/hackforla/website/issues/69) at 2019-04-23 01:11 AM PDT -ExperimentsInHonesty,2019-04-23T08:11:47Z,- ExperimentsInHonesty assigned to issue: [69](https://github.com/hackforla/website/issues/69) at 2019-04-23 01:11 AM PDT -ExperimentsInHonesty,2019-04-25T21:26:21Z,- ExperimentsInHonesty commented on issue: [15](https://github.com/hackforla/website/issues/15#issuecomment-486843914) at 2019-04-25 02:26 PM PDT -ExperimentsInHonesty,2019-04-25T21:26:21Z,- ExperimentsInHonesty closed issue as completed: [15](https://github.com/hackforla/website/issues/15#event-2301525245) at 2019-04-25 02:26 PM PDT -ExperimentsInHonesty,2019-04-30T06:17:26Z,- ExperimentsInHonesty opened issue: [72](https://github.com/hackforla/website/issues/72) at 2019-04-29 11:17 PM PDT -ExperimentsInHonesty,2019-04-30T06:41:05Z,- ExperimentsInHonesty opened issue: [73](https://github.com/hackforla/website/issues/73) at 2019-04-29 11:41 PM PDT -ExperimentsInHonesty,2019-05-01T22:51:43Z,- ExperimentsInHonesty submitted pull request review: [76](https://github.com/hackforla/website/pull/76#pullrequestreview-232790083) at 2019-05-01 03:51 PM PDT -ExperimentsInHonesty,2019-05-01T23:03:13Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-488477159) at 2019-05-01 04:03 PM PDT -ExperimentsInHonesty,2019-05-01T23:16:49Z,- ExperimentsInHonesty commented on issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-488484918) at 2019-05-01 04:16 PM PDT -ExperimentsInHonesty,2019-05-02T00:39:16Z,- ExperimentsInHonesty opened issue: [78](https://github.com/hackforla/website/issues/78) at 2019-05-01 05:39 PM PDT -ExperimentsInHonesty,2019-05-02T03:05:34Z,- ExperimentsInHonesty pull request closed w/o merging: [31](https://github.com/hackforla/website/pull/31#event-2313443041) at 2019-05-01 08:05 PM PDT -ExperimentsInHonesty,2019-05-02T23:25:56Z,- ExperimentsInHonesty assigned to issue: [79](https://github.com/hackforla/website/issues/79) at 2019-05-02 04:25 PM PDT -ExperimentsInHonesty,2019-05-02T23:28:16Z,- ExperimentsInHonesty submitted pull request review: [85](https://github.com/hackforla/website/pull/85#pullrequestreview-233281130) at 2019-05-02 04:28 PM PDT -ExperimentsInHonesty,2019-05-03T00:04:17Z,- ExperimentsInHonesty commented on issue: [79](https://github.com/hackforla/website/issues/79#issuecomment-488874348) at 2019-05-02 05:04 PM PDT -ExperimentsInHonesty,2019-05-03T01:23:17Z,- ExperimentsInHonesty closed issue as completed: [79](https://github.com/hackforla/website/issues/79#event-2316083255) at 2019-05-02 06:23 PM PDT -ExperimentsInHonesty,2019-05-03T01:24:10Z,- ExperimentsInHonesty closed issue as completed: [79](https://github.com/hackforla/website/issues/79#event-2316084013) at 2019-05-02 06:24 PM PDT -ExperimentsInHonesty,2019-05-03T02:31:38Z,- ExperimentsInHonesty submitted pull request review: [86](https://github.com/hackforla/website/pull/86#pullrequestreview-233308214) at 2019-05-02 07:31 PM PDT -ExperimentsInHonesty,2019-05-03T02:31:55Z,- ExperimentsInHonesty submitted pull request review: [86](https://github.com/hackforla/website/pull/86#pullrequestreview-233308246) at 2019-05-02 07:31 PM PDT -ExperimentsInHonesty,2019-05-03T03:22:08Z,- ExperimentsInHonesty submitted pull request review: [84](https://github.com/hackforla/website/pull/84#pullrequestreview-233313169) at 2019-05-02 08:22 PM PDT -ExperimentsInHonesty,2019-05-04T18:06:22Z,- ExperimentsInHonesty commented on issue: [81](https://github.com/hackforla/website/issues/81#issuecomment-489350621) at 2019-05-04 11:06 AM PDT -ExperimentsInHonesty,2019-05-04T18:06:22Z,- ExperimentsInHonesty closed issue as completed: [81](https://github.com/hackforla/website/issues/81#event-2319169844) at 2019-05-04 11:06 AM PDT -ExperimentsInHonesty,2019-05-05T05:31:54Z,- ExperimentsInHonesty opened pull request: [91](https://github.com/hackforla/website/pull/91) at 2019-05-04 10:31 PM PDT -ExperimentsInHonesty,2019-05-05T23:46:11Z,- ExperimentsInHonesty pull request merged: [91](https://github.com/hackforla/website/pull/91#event-2319857656) at 2019-05-05 04:46 PM PDT -ExperimentsInHonesty,2019-05-05T23:46:56Z,- ExperimentsInHonesty closed issue as completed: [69](https://github.com/hackforla/website/issues/69#event-2319858063) at 2019-05-05 04:46 PM PDT -ExperimentsInHonesty,2019-05-08T22:41:57Z,- ExperimentsInHonesty closed issue as completed: [72](https://github.com/hackforla/website/issues/72#event-2328668731) at 2019-05-08 03:41 PM PDT -ExperimentsInHonesty,2019-05-08T23:38:18Z,- ExperimentsInHonesty commented on issue: [64](https://github.com/hackforla/website/issues/64#issuecomment-490689699) at 2019-05-08 04:38 PM PDT -ExperimentsInHonesty,2019-05-08T23:38:18Z,- ExperimentsInHonesty closed issue as completed: [64](https://github.com/hackforla/website/issues/64#event-2328752710) at 2019-05-08 04:38 PM PDT -ExperimentsInHonesty,2019-05-08T23:38:52Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-490689802) at 2019-05-08 04:38 PM PDT -ExperimentsInHonesty,2019-05-08T23:46:35Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-490691273) at 2019-05-08 04:46 PM PDT -ExperimentsInHonesty,2019-05-09T00:15:32Z,- ExperimentsInHonesty opened issue: [97](https://github.com/hackforla/website/issues/97) at 2019-05-08 05:15 PM PDT -ExperimentsInHonesty,2019-05-09T00:43:11Z,- ExperimentsInHonesty opened issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-08 05:43 PM PDT -ExperimentsInHonesty,2019-05-09T00:43:11Z,- ExperimentsInHonesty assigned to issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-08 05:43 PM PDT -ExperimentsInHonesty,2019-05-09T05:23:42Z,- ExperimentsInHonesty commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-490748213) at 2019-05-08 10:23 PM PDT -ExperimentsInHonesty,2019-05-09T05:41:31Z,- ExperimentsInHonesty commented on issue: [73](https://github.com/hackforla/website/issues/73#issuecomment-490751412) at 2019-05-08 10:41 PM PDT -ExperimentsInHonesty,2019-05-09T05:41:31Z,- ExperimentsInHonesty closed issue as completed: [73](https://github.com/hackforla/website/issues/73#event-2329185846) at 2019-05-08 10:41 PM PDT -ExperimentsInHonesty,2019-05-09T06:24:10Z,- ExperimentsInHonesty submitted pull request review: [99](https://github.com/hackforla/website/pull/99#pullrequestreview-235416156) at 2019-05-08 11:24 PM PDT -ExperimentsInHonesty,2019-05-09T19:09:04Z,- ExperimentsInHonesty commented on pull request: [100](https://github.com/hackforla/website/pull/100#issuecomment-491028971) at 2019-05-09 12:09 PM PDT -ExperimentsInHonesty,2019-05-09T19:44:25Z,- ExperimentsInHonesty submitted pull request review: [101](https://github.com/hackforla/website/pull/101#pullrequestreview-235786936) at 2019-05-09 12:44 PM PDT -ExperimentsInHonesty,2019-05-10T01:27:57Z,- ExperimentsInHonesty opened issue: [102](https://github.com/hackforla/website/issues/102) at 2019-05-09 06:27 PM PDT -ExperimentsInHonesty,2019-05-10T01:27:57Z,- ExperimentsInHonesty assigned to issue: [102](https://github.com/hackforla/website/issues/102) at 2019-05-09 06:27 PM PDT -ExperimentsInHonesty,2019-05-11T00:40:06Z,- ExperimentsInHonesty commented on issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-491464756) at 2019-05-10 05:40 PM PDT -ExperimentsInHonesty,2019-05-11T00:50:27Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491465654) at 2019-05-10 05:50 PM PDT -ExperimentsInHonesty,2019-05-11T01:04:47Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491466775) at 2019-05-10 06:04 PM PDT -ExperimentsInHonesty,2019-05-12T03:52:41Z,- ExperimentsInHonesty commented on issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-491562286) at 2019-05-11 08:52 PM PDT -ExperimentsInHonesty,2019-05-12T05:24:50Z,- ExperimentsInHonesty opened issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -ExperimentsInHonesty,2019-05-12T05:24:51Z,- ExperimentsInHonesty assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -ExperimentsInHonesty,2019-05-13T03:15:36Z,- ExperimentsInHonesty commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:15 PM PDT -ExperimentsInHonesty,2019-05-13T03:16:21Z,- ExperimentsInHonesty assigned to issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:16 PM PDT -ExperimentsInHonesty,2019-05-21T05:31:42Z,- ExperimentsInHonesty commented on issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494245577) at 2019-05-20 10:31 PM PDT -ExperimentsInHonesty,2019-05-21T05:31:57Z,- ExperimentsInHonesty assigned to issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494245577) at 2019-05-20 10:31 PM PDT -ExperimentsInHonesty,2019-05-21T18:59:15Z,- ExperimentsInHonesty opened issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 11:59 AM PDT -ExperimentsInHonesty,2019-05-21T18:59:15Z,- ExperimentsInHonesty assigned to issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 11:59 AM PDT -ExperimentsInHonesty,2019-05-22T02:57:54Z,- ExperimentsInHonesty unassigned from issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 07:57 PM PDT -ExperimentsInHonesty,2019-05-23T03:35:32Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:35 PM PDT -ExperimentsInHonesty,2019-05-23T03:36:19Z,- ExperimentsInHonesty assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -ExperimentsInHonesty,2019-05-23T03:37:41Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055343) at 2019-05-22 08:37 PM PDT -ExperimentsInHonesty,2019-05-27T19:16:16Z,- ExperimentsInHonesty commented on pull request: [108](https://github.com/hackforla/website/pull/108#issuecomment-496288994) at 2019-05-27 12:16 PM PDT -ExperimentsInHonesty,2019-05-27T19:49:13Z,- ExperimentsInHonesty opened issue: [117](https://github.com/hackforla/website/issues/117) at 2019-05-27 12:49 PM PDT -ExperimentsInHonesty,2019-05-27T20:09:59Z,- ExperimentsInHonesty opened issue: [119](https://github.com/hackforla/website/issues/119) at 2019-05-27 01:09 PM PDT -ExperimentsInHonesty,2019-05-27T20:10:00Z,- ExperimentsInHonesty assigned to issue: [119](https://github.com/hackforla/website/issues/119) at 2019-05-27 01:10 PM PDT -ExperimentsInHonesty,2019-05-27T20:20:35Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-496298833) at 2019-05-27 01:20 PM PDT -ExperimentsInHonesty,2019-05-27T20:48:23Z,- ExperimentsInHonesty closed issue as completed: [75](https://github.com/hackforla/website/issues/75#event-2370145315) at 2019-05-27 01:48 PM PDT -ExperimentsInHonesty,2019-05-27T21:05:09Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-496305459) at 2019-05-27 02:05 PM PDT -ExperimentsInHonesty,2019-05-27T21:05:15Z,- ExperimentsInHonesty assigned to issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-496305459) at 2019-05-27 02:05 PM PDT -ExperimentsInHonesty,2019-05-27T21:15:51Z,- ExperimentsInHonesty assigned to issue: [116](https://github.com/hackforla/website/issues/116) at 2019-05-27 02:15 PM PDT -ExperimentsInHonesty,2019-05-27T23:08:43Z,- ExperimentsInHonesty opened issue: [120](https://github.com/hackforla/website/issues/120) at 2019-05-27 04:08 PM PDT -ExperimentsInHonesty,2019-05-27T23:08:43Z,- ExperimentsInHonesty assigned to issue: [120](https://github.com/hackforla/website/issues/120) at 2019-05-27 04:08 PM PDT -ExperimentsInHonesty,2019-05-27T23:15:56Z,- ExperimentsInHonesty opened issue: [121](https://github.com/hackforla/website/issues/121) at 2019-05-27 04:15 PM PDT -ExperimentsInHonesty,2019-05-27T23:15:57Z,- ExperimentsInHonesty assigned to issue: [121](https://github.com/hackforla/website/issues/121) at 2019-05-27 04:15 PM PDT -ExperimentsInHonesty,2019-05-27T23:20:13Z,- ExperimentsInHonesty opened issue: [122](https://github.com/hackforla/website/issues/122) at 2019-05-27 04:20 PM PDT -ExperimentsInHonesty,2019-05-27T23:23:19Z,- ExperimentsInHonesty commented on issue: [103](https://github.com/hackforla/website/issues/103#issuecomment-496319749) at 2019-05-27 04:23 PM PDT -ExperimentsInHonesty,2019-05-28T04:45:18Z,- ExperimentsInHonesty opened issue: [123](https://github.com/hackforla/website/issues/123) at 2019-05-27 09:45 PM PDT -ExperimentsInHonesty,2019-05-28T04:45:18Z,- ExperimentsInHonesty assigned to issue: [123](https://github.com/hackforla/website/issues/123) at 2019-05-27 09:45 PM PDT -ExperimentsInHonesty,2019-05-28T16:51:08Z,- ExperimentsInHonesty closed issue as completed: [121](https://github.com/hackforla/website/issues/121#event-2372478376) at 2019-05-28 09:51 AM PDT -ExperimentsInHonesty,2019-06-04T01:16:14Z,- ExperimentsInHonesty assigned to issue: [117](https://github.com/hackforla/website/issues/117) at 2019-06-03 06:16 PM PDT -ExperimentsInHonesty,2019-06-04T01:21:06Z,- ExperimentsInHonesty assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -ExperimentsInHonesty,2019-06-04T01:54:03Z,- ExperimentsInHonesty commented on issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498488767) at 2019-06-03 06:54 PM PDT -ExperimentsInHonesty,2019-06-04T01:57:19Z,- ExperimentsInHonesty commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498489346) at 2019-06-03 06:57 PM PDT -ExperimentsInHonesty,2019-06-10T22:38:02Z,- ExperimentsInHonesty assigned to issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-498506119) at 2019-06-10 03:38 PM PDT -ExperimentsInHonesty,2019-06-10T22:40:00Z,- ExperimentsInHonesty commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-500620338) at 2019-06-10 03:40 PM PDT -ExperimentsInHonesty,2019-06-10T22:48:14Z,- ExperimentsInHonesty commented on pull request: [124](https://github.com/hackforla/website/pull/124#issuecomment-500622051) at 2019-06-10 03:48 PM PDT -ExperimentsInHonesty,2019-06-10T22:52:04Z,- ExperimentsInHonesty commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-500622834) at 2019-06-10 03:52 PM PDT -ExperimentsInHonesty,2019-06-10T22:53:01Z,- ExperimentsInHonesty closed issue as completed: [120](https://github.com/hackforla/website/issues/120#event-2402425802) at 2019-06-10 03:53 PM PDT -ExperimentsInHonesty,2019-06-10T22:59:37Z,- ExperimentsInHonesty commented on issue: [117](https://github.com/hackforla/website/issues/117#issuecomment-500624355) at 2019-06-10 03:59 PM PDT -ExperimentsInHonesty,2019-06-10T22:59:37Z,- ExperimentsInHonesty closed issue as completed: [117](https://github.com/hackforla/website/issues/117#event-2402435524) at 2019-06-10 03:59 PM PDT -ExperimentsInHonesty,2019-06-10T23:14:09Z,- ExperimentsInHonesty commented on issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-500627151) at 2019-06-10 04:14 PM PDT -ExperimentsInHonesty,2019-06-10T23:14:10Z,- ExperimentsInHonesty closed issue as completed: [109](https://github.com/hackforla/website/issues/109#event-2402456465) at 2019-06-10 04:14 PM PDT -ExperimentsInHonesty,2019-06-11T21:53:06Z,- ExperimentsInHonesty opened issue: [126](https://github.com/hackforla/website/issues/126) at 2019-06-11 02:53 PM PDT -ExperimentsInHonesty,2019-06-12T01:00:33Z,- ExperimentsInHonesty opened issue: [128](https://github.com/hackforla/website/issues/128) at 2019-06-11 06:00 PM PDT -ExperimentsInHonesty,2019-06-12T17:38:41Z,- ExperimentsInHonesty assigned to issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501109564) at 2019-06-12 10:38 AM PDT -ExperimentsInHonesty,2019-06-12T17:41:01Z,- ExperimentsInHonesty commented on issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501381032) at 2019-06-12 10:41 AM PDT -ExperimentsInHonesty,2019-06-12T17:45:17Z,- ExperimentsInHonesty commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501382565) at 2019-06-12 10:45 AM PDT -ExperimentsInHonesty,2019-06-12T17:45:17Z,- ExperimentsInHonesty closed issue as completed: [111](https://github.com/hackforla/website/issues/111#event-2408194027) at 2019-06-12 10:45 AM PDT -ExperimentsInHonesty,2019-06-12T22:49:08Z,- ExperimentsInHonesty closed issue by PR 129: [127](https://github.com/hackforla/website/issues/127#event-2408919649) at 2019-06-12 03:49 PM PDT -ExperimentsInHonesty,2019-06-12T22:49:51Z,- ExperimentsInHonesty assigned to issue: [127](https://github.com/hackforla/website/issues/127#event-2408919649) at 2019-06-12 03:49 PM PDT -ExperimentsInHonesty,2019-06-13T00:58:51Z,- ExperimentsInHonesty commented on issue: [126](https://github.com/hackforla/website/issues/126#issuecomment-501508466) at 2019-06-12 05:58 PM PDT -ExperimentsInHonesty,2019-06-13T00:58:51Z,- ExperimentsInHonesty closed issue as completed: [126](https://github.com/hackforla/website/issues/126#event-2409091995) at 2019-06-12 05:58 PM PDT -ExperimentsInHonesty,2019-06-16T20:08:15Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-502481835) at 2019-06-16 01:08 PM PDT -ExperimentsInHonesty,2019-06-24T20:04:07Z,- ExperimentsInHonesty commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-505158612) at 2019-06-24 01:04 PM PDT -ExperimentsInHonesty,2019-06-27T19:10:50Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-506474100) at 2019-06-27 12:10 PM PDT -ExperimentsInHonesty,2019-06-27T19:11:42Z,- ExperimentsInHonesty assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-503383749) at 2019-06-27 12:11 PM PDT -ExperimentsInHonesty,2019-07-13T08:55:42Z,- ExperimentsInHonesty commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-511104161) at 2019-07-13 01:55 AM PDT -ExperimentsInHonesty,2019-07-13T09:02:46Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-511104679) at 2019-07-13 02:02 AM PDT -ExperimentsInHonesty,2019-07-23T01:43:14Z,- ExperimentsInHonesty opened issue: [133](https://github.com/hackforla/website/issues/133) at 2019-07-22 06:43 PM PDT -ExperimentsInHonesty,2019-07-23T03:05:45Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-07-22 08:05 PM PDT -ExperimentsInHonesty,2019-07-30T03:24:46Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-516244909) at 2019-07-29 08:24 PM PDT -ExperimentsInHonesty,2019-08-01T05:01:09Z,- ExperimentsInHonesty assigned to issue: [134](https://github.com/hackforla/website/issues/134) at 2019-07-31 10:01 PM PDT -ExperimentsInHonesty,2019-08-13T03:42:20Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2019-08-12 08:42 PM PDT -ExperimentsInHonesty,2019-08-16T03:40:08Z,- ExperimentsInHonesty submitted pull request review: [142](https://github.com/hackforla/website/pull/142#pullrequestreview-275763010) at 2019-08-15 08:40 PM PDT -ExperimentsInHonesty,2019-08-19T18:52:38Z,- ExperimentsInHonesty commented on pull request: [142](https://github.com/hackforla/website/pull/142#issuecomment-522708171) at 2019-08-19 11:52 AM PDT -ExperimentsInHonesty,2019-08-19T18:56:59Z,- ExperimentsInHonesty commented on pull request: [142](https://github.com/hackforla/website/pull/142#issuecomment-522709661) at 2019-08-19 11:56 AM PDT -ExperimentsInHonesty,2019-08-19T18:59:02Z,- ExperimentsInHonesty commented on pull request: [141](https://github.com/hackforla/website/pull/141#issuecomment-522710383) at 2019-08-19 11:59 AM PDT -ExperimentsInHonesty,2019-08-20T02:58:27Z,- ExperimentsInHonesty opened issue: [145](https://github.com/hackforla/website/issues/145) at 2019-08-19 07:58 PM PDT -ExperimentsInHonesty,2019-08-22T18:56:49Z,- ExperimentsInHonesty commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524032853) at 2019-08-22 11:56 AM PDT -ExperimentsInHonesty,2019-08-23T01:31:51Z,- ExperimentsInHonesty commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524137934) at 2019-08-22 06:31 PM PDT -ExperimentsInHonesty,2019-08-27T19:49:55Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525455658) at 2019-08-27 12:49 PM PDT -ExperimentsInHonesty,2019-08-27T21:40:13Z,- ExperimentsInHonesty assigned to issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525493715) at 2019-08-27 02:40 PM PDT -ExperimentsInHonesty,2019-08-28T03:05:15Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525564669) at 2019-08-27 08:05 PM PDT -ExperimentsInHonesty,2019-08-28T03:42:38Z,- ExperimentsInHonesty assigned to issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525568250) at 2019-08-27 08:42 PM PDT -ExperimentsInHonesty,2019-08-28T05:10:41Z,- ExperimentsInHonesty commented on pull request: [146](https://github.com/hackforla/website/pull/146#issuecomment-525586790) at 2019-08-27 10:10 PM PDT -ExperimentsInHonesty,2019-08-28T05:18:37Z,- ExperimentsInHonesty commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525588253) at 2019-08-27 10:18 PM PDT -ExperimentsInHonesty,2019-08-28T20:23:16Z,- ExperimentsInHonesty closed issue as completed: [118](https://github.com/hackforla/website/issues/118#event-2591826989) at 2019-08-28 01:23 PM PDT -ExperimentsInHonesty,2019-08-28T21:48:09Z,- ExperimentsInHonesty opened pull request: [149](https://github.com/hackforla/website/pull/149) at 2019-08-28 02:48 PM PDT -ExperimentsInHonesty,2019-08-28T21:48:31Z,- ExperimentsInHonesty pull request merged: [149](https://github.com/hackforla/website/pull/149#event-2592042439) at 2019-08-28 02:48 PM PDT -ExperimentsInHonesty,2019-08-28T21:53:01Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525937352) at 2019-08-28 02:53 PM PDT -ExperimentsInHonesty,2019-08-28T21:53:45Z,- ExperimentsInHonesty commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525937584) at 2019-08-28 02:53 PM PDT -ExperimentsInHonesty,2019-08-28T22:43:59Z,- ExperimentsInHonesty reopened issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525937584) at 2019-08-28 03:43 PM PDT -ExperimentsInHonesty,2019-08-28T23:18:48Z,- ExperimentsInHonesty opened pull request: [151](https://github.com/hackforla/website/pull/151) at 2019-08-28 04:18 PM PDT -ExperimentsInHonesty,2019-08-28T23:19:49Z,- ExperimentsInHonesty pull request merged: [151](https://github.com/hackforla/website/pull/151#event-2592207761) at 2019-08-28 04:19 PM PDT -ExperimentsInHonesty,2019-10-08T02:07:12Z,- ExperimentsInHonesty submitted pull request review: [153](https://github.com/hackforla/website/pull/153#pullrequestreview-298500711) at 2019-10-07 07:07 PM PDT -ExperimentsInHonesty,2019-10-08T02:11:03Z,- ExperimentsInHonesty closed issue as completed: [148](https://github.com/hackforla/website/issues/148#event-2693847238) at 2019-10-07 07:11 PM PDT -ExperimentsInHonesty,2019-11-03T04:45:13Z,- ExperimentsInHonesty assigned to issue: [167](https://github.com/hackforla/website/issues/167) at 2019-11-02 08:45 PM PST -ExperimentsInHonesty,2019-11-03T20:20:42Z,- ExperimentsInHonesty commented on issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174544) at 2019-11-03 12:20 PM PST -ExperimentsInHonesty,2019-11-03T20:23:03Z,- ExperimentsInHonesty commented on issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174727) at 2019-11-03 12:23 PM PST -ExperimentsInHonesty,2019-11-04T03:29:50Z,- ExperimentsInHonesty opened issue: [168](https://github.com/hackforla/website/issues/168) at 2019-11-03 07:29 PM PST -ExperimentsInHonesty,2019-11-04T03:30:51Z,- ExperimentsInHonesty assigned to issue: [168](https://github.com/hackforla/website/issues/168) at 2019-11-03 07:30 PM PST -ExperimentsInHonesty,2019-11-07T20:59:22Z,- ExperimentsInHonesty opened issue: [177](https://github.com/hackforla/website/issues/177) at 2019-11-07 12:59 PM PST -ExperimentsInHonesty,2019-11-07T20:59:23Z,- ExperimentsInHonesty assigned to issue: [177](https://github.com/hackforla/website/issues/177) at 2019-11-07 12:59 PM PST -ExperimentsInHonesty,2019-11-10T08:55:48Z,- ExperimentsInHonesty commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552175685) at 2019-11-10 12:55 AM PST -ExperimentsInHonesty,2019-11-12T03:03:52Z,- ExperimentsInHonesty unassigned from issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552242613) at 2019-11-11 07:03 PM PST -ExperimentsInHonesty,2019-11-12T03:04:15Z,- ExperimentsInHonesty commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552713295) at 2019-11-11 07:04 PM PST -ExperimentsInHonesty,2019-11-12T03:22:54Z,- ExperimentsInHonesty commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-552717051) at 2019-11-11 07:22 PM PST -ExperimentsInHonesty,2019-11-14T03:01:56Z,- ExperimentsInHonesty commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-553702332) at 2019-11-13 07:01 PM PST -ExperimentsInHonesty,2019-11-19T03:11:25Z,- ExperimentsInHonesty commented on issue: [161](https://github.com/hackforla/website/issues/161#issuecomment-555312557) at 2019-11-18 07:11 PM PST -ExperimentsInHonesty,2019-11-19T03:11:32Z,- ExperimentsInHonesty assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-547721864) at 2019-11-18 07:11 PM PST -ExperimentsInHonesty,2019-11-20T03:12:59Z,- ExperimentsInHonesty closed issue as completed: [168](https://github.com/hackforla/website/issues/168#event-2813762759) at 2019-11-19 07:12 PM PST -ExperimentsInHonesty,2019-11-20T18:48:16Z,- ExperimentsInHonesty opened issue: [181](https://github.com/hackforla/website/issues/181) at 2019-11-20 10:48 AM PST -ExperimentsInHonesty,2019-11-20T19:45:41Z,- ExperimentsInHonesty assigned to issue: [183](https://github.com/hackforla/website/issues/183) at 2019-11-20 11:45 AM PST -ExperimentsInHonesty,2019-11-23T03:45:08Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-557763279) at 2019-11-22 07:45 PM PST -ExperimentsInHonesty,2019-11-23T04:00:11Z,- ExperimentsInHonesty opened issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -ExperimentsInHonesty,2019-11-24T03:11:23Z,- ExperimentsInHonesty commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-557853460) at 2019-11-23 07:11 PM PST -ExperimentsInHonesty,2019-11-25T23:18:47Z,- ExperimentsInHonesty assigned to issue: [186](https://github.com/hackforla/website/issues/186) at 2019-11-25 03:18 PM PST -ExperimentsInHonesty,2019-11-25T23:21:41Z,- ExperimentsInHonesty assigned to issue: [187](https://github.com/hackforla/website/issues/187) at 2019-11-25 03:21 PM PST -ExperimentsInHonesty,2019-11-25T23:48:45Z,- ExperimentsInHonesty assigned to issue: [188](https://github.com/hackforla/website/issues/188) at 2019-11-25 03:48 PM PST -ExperimentsInHonesty,2019-11-25T23:51:43Z,- ExperimentsInHonesty assigned to issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -ExperimentsInHonesty,2019-11-26T00:23:10Z,- ExperimentsInHonesty assigned to issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -ExperimentsInHonesty,2019-11-26T02:49:51Z,- ExperimentsInHonesty unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:49 PM PST -ExperimentsInHonesty,2019-11-26T02:50:06Z,- ExperimentsInHonesty assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -ExperimentsInHonesty,2019-11-26T02:50:11Z,- ExperimentsInHonesty unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -ExperimentsInHonesty,2019-11-26T02:50:35Z,- ExperimentsInHonesty assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -ExperimentsInHonesty,2019-11-26T04:13:39Z,- ExperimentsInHonesty assigned to issue: [195](https://github.com/hackforla/website/issues/195) at 2019-11-25 08:13 PM PST -ExperimentsInHonesty,2019-11-26T04:14:34Z,- ExperimentsInHonesty assigned to issue: [196](https://github.com/hackforla/website/issues/196) at 2019-11-25 08:14 PM PST -ExperimentsInHonesty,2019-11-26T04:15:25Z,- ExperimentsInHonesty assigned to issue: [197](https://github.com/hackforla/website/issues/197) at 2019-11-25 08:15 PM PST -ExperimentsInHonesty,2019-11-26T04:15:57Z,- ExperimentsInHonesty assigned to issue: [198](https://github.com/hackforla/website/issues/198) at 2019-11-25 08:15 PM PST -ExperimentsInHonesty,2019-11-26T04:16:34Z,- ExperimentsInHonesty assigned to issue: [199](https://github.com/hackforla/website/issues/199) at 2019-11-25 08:16 PM PST -ExperimentsInHonesty,2019-12-03T01:08:28Z,- ExperimentsInHonesty opened issue: [202](https://github.com/hackforla/website/issues/202) at 2019-12-02 05:08 PM PST -ExperimentsInHonesty,2019-12-03T03:09:32Z,- ExperimentsInHonesty assigned to issue: [203](https://github.com/hackforla/website/issues/203) at 2019-12-02 07:09 PM PST -ExperimentsInHonesty,2019-12-03T20:11:42Z,- ExperimentsInHonesty commented on issue: [202](https://github.com/hackforla/website/issues/202#issuecomment-561336627) at 2019-12-03 12:11 PM PST -ExperimentsInHonesty,2019-12-03T20:12:41Z,- ExperimentsInHonesty closed issue as completed: [207](https://github.com/hackforla/website/issues/207#event-2851487528) at 2019-12-03 12:12 PM PST -ExperimentsInHonesty,2019-12-04T21:39:33Z,- ExperimentsInHonesty closed issue as completed: [208](https://github.com/hackforla/website/issues/208#event-2855634215) at 2019-12-04 01:39 PM PST -ExperimentsInHonesty,2019-12-04T21:42:23Z,- ExperimentsInHonesty reopened issue: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:42 PM PST -ExperimentsInHonesty,2019-12-04T21:50:21Z,- ExperimentsInHonesty assigned to issue: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:50 PM PST -ExperimentsInHonesty,2019-12-04T21:50:28Z,- ExperimentsInHonesty commented on issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-561855115) at 2019-12-04 01:50 PM PST -ExperimentsInHonesty,2019-12-06T21:55:57Z,- ExperimentsInHonesty opened issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-06 01:55 PM PST -ExperimentsInHonesty,2019-12-10T04:43:47Z,- ExperimentsInHonesty assigned to issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-12-09 08:43 PM PST -ExperimentsInHonesty,2019-12-10T04:43:57Z,- ExperimentsInHonesty unassigned from issue: [163](https://github.com/hackforla/website/issues/163#issuecomment-547753929) at 2019-12-09 08:43 PM PST -ExperimentsInHonesty,2019-12-10T04:44:48Z,- ExperimentsInHonesty closed issue by PR 200: [163](https://github.com/hackforla/website/issues/163#event-2868773623) at 2019-12-09 08:44 PM PST -ExperimentsInHonesty,2019-12-10T23:48:00Z,- ExperimentsInHonesty assigned to issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-10 03:48 PM PST -ExperimentsInHonesty,2019-12-12T00:01:02Z,- ExperimentsInHonesty commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-564787660) at 2019-12-11 04:01 PM PST -ExperimentsInHonesty,2019-12-16T04:25:27Z,- ExperimentsInHonesty assigned to issue: [215](https://github.com/hackforla/website/issues/215) at 2019-12-15 08:25 PM PST -ExperimentsInHonesty,2019-12-16T05:31:32Z,- ExperimentsInHonesty assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:31 PM PST -ExperimentsInHonesty,2019-12-16T05:31:55Z,- ExperimentsInHonesty unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:31 PM PST -ExperimentsInHonesty,2019-12-16T05:33:22Z,- ExperimentsInHonesty assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:33 PM PST -ExperimentsInHonesty,2019-12-17T03:10:50Z,- ExperimentsInHonesty commented on issue: [215](https://github.com/hackforla/website/issues/215#issuecomment-566360324) at 2019-12-16 07:10 PM PST -ExperimentsInHonesty,2019-12-24T21:36:42Z,- ExperimentsInHonesty commented on issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804369) at 2019-12-24 01:36 PM PST -ExperimentsInHonesty,2019-12-24T21:36:56Z,- ExperimentsInHonesty unassigned from issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804369) at 2019-12-24 01:36 PM PST -ExperimentsInHonesty,2019-12-24T21:38:06Z,- ExperimentsInHonesty commented on issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804469) at 2019-12-24 01:38 PM PST -ExperimentsInHonesty,2019-12-24T23:11:47Z,- ExperimentsInHonesty opened issue: [226](https://github.com/hackforla/website/issues/226) at 2019-12-24 03:11 PM PST -ExperimentsInHonesty,2019-12-24T23:18:14Z,- ExperimentsInHonesty commented on issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-568810137) at 2019-12-24 03:18 PM PST -ExperimentsInHonesty,2019-12-24T23:19:32Z,- ExperimentsInHonesty commented on issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-568810213) at 2019-12-24 03:19 PM PST -ExperimentsInHonesty,2019-12-24T23:31:51Z,- ExperimentsInHonesty opened issue: [227](https://github.com/hackforla/website/issues/227) at 2019-12-24 03:31 PM PST -ExperimentsInHonesty,2019-12-25T02:39:52Z,- ExperimentsInHonesty opened issue: [228](https://github.com/hackforla/website/issues/228) at 2019-12-24 06:39 PM PST -ExperimentsInHonesty,2019-12-25T02:40:01Z,- ExperimentsInHonesty assigned to issue: [228](https://github.com/hackforla/website/issues/228) at 2019-12-24 06:40 PM PST -ExperimentsInHonesty,2019-12-25T02:45:37Z,- ExperimentsInHonesty opened pull request: [229](https://github.com/hackforla/website/pull/229) at 2019-12-24 06:45 PM PST -ExperimentsInHonesty,2019-12-25T02:45:47Z,- ExperimentsInHonesty pull request merged: [229](https://github.com/hackforla/website/pull/229#event-2907480866) at 2019-12-24 06:45 PM PST -ExperimentsInHonesty,2019-12-25T02:49:51Z,- ExperimentsInHonesty opened pull request: [230](https://github.com/hackforla/website/pull/230) at 2019-12-24 06:49 PM PST -ExperimentsInHonesty,2019-12-25T02:50:03Z,- ExperimentsInHonesty pull request merged: [230](https://github.com/hackforla/website/pull/230#event-2907483668) at 2019-12-24 06:50 PM PST -ExperimentsInHonesty,2019-12-25T03:02:32Z,- ExperimentsInHonesty commented on pull request: [154](https://github.com/hackforla/website/pull/154#issuecomment-568827627) at 2019-12-24 07:02 PM PST -ExperimentsInHonesty,2019-12-25T03:05:11Z,- ExperimentsInHonesty assigned to issue: [217](https://github.com/hackforla/website/issues/217) at 2019-12-24 07:05 PM PST -ExperimentsInHonesty,2019-12-25T03:06:40Z,- ExperimentsInHonesty opened pull request: [231](https://github.com/hackforla/website/pull/231) at 2019-12-24 07:06 PM PST -ExperimentsInHonesty,2019-12-25T03:07:20Z,- ExperimentsInHonesty pull request merged: [231](https://github.com/hackforla/website/pull/231#event-2907496400) at 2019-12-24 07:07 PM PST -ExperimentsInHonesty,2019-12-25T03:09:38Z,- ExperimentsInHonesty closed issue as completed: [217](https://github.com/hackforla/website/issues/217#event-2907497863) at 2019-12-24 07:09 PM PST -ExperimentsInHonesty,2019-12-25T03:14:42Z,- ExperimentsInHonesty opened pull request: [232](https://github.com/hackforla/website/pull/232) at 2019-12-24 07:14 PM PST -ExperimentsInHonesty,2019-12-25T03:14:55Z,- ExperimentsInHonesty closed issue by PR 232: [205](https://github.com/hackforla/website/issues/205#event-2907501830) at 2019-12-24 07:14 PM PST -ExperimentsInHonesty,2019-12-25T03:14:55Z,- ExperimentsInHonesty pull request merged: [232](https://github.com/hackforla/website/pull/232#event-2907501831) at 2019-12-24 07:14 PM PST -ExperimentsInHonesty,2019-12-29T06:39:04Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569479486) at 2019-12-28 10:39 PM PST -ExperimentsInHonesty,2019-12-29T07:00:41Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569480697) at 2019-12-28 11:00 PM PST -ExperimentsInHonesty,2019-12-29T21:26:13Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-569543393) at 2019-12-29 01:26 PM PST -ExperimentsInHonesty,2019-12-29T23:10:05Z,- ExperimentsInHonesty opened issue: [233](https://github.com/hackforla/website/issues/233) at 2019-12-29 03:10 PM PST -ExperimentsInHonesty,2019-12-30T23:37:23Z,- ExperimentsInHonesty closed issue as completed: [198](https://github.com/hackforla/website/issues/198#event-2914866298) at 2019-12-30 03:37 PM PST -ExperimentsInHonesty,2019-12-30T23:37:40Z,- ExperimentsInHonesty closed issue as completed: [197](https://github.com/hackforla/website/issues/197#event-2914866492) at 2019-12-30 03:37 PM PST -ExperimentsInHonesty,2019-12-30T23:37:47Z,- ExperimentsInHonesty closed issue as completed: [196](https://github.com/hackforla/website/issues/196#event-2914866578) at 2019-12-30 03:37 PM PST -ExperimentsInHonesty,2019-12-31T01:04:44Z,- ExperimentsInHonesty closed issue as completed: [195](https://github.com/hackforla/website/issues/195#event-2914934285) at 2019-12-30 05:04 PM PST -ExperimentsInHonesty,2019-12-31T01:05:18Z,- ExperimentsInHonesty closed issue as completed: [183](https://github.com/hackforla/website/issues/183#event-2914934841) at 2019-12-30 05:05 PM PST -ExperimentsInHonesty,2019-12-31T01:05:24Z,- ExperimentsInHonesty closed issue as completed: [187](https://github.com/hackforla/website/issues/187#event-2914934913) at 2019-12-30 05:05 PM PST -ExperimentsInHonesty,2019-12-31T01:07:01Z,- ExperimentsInHonesty closed issue as completed: [215](https://github.com/hackforla/website/issues/215#event-2914935939) at 2019-12-30 05:07 PM PST -ExperimentsInHonesty,2019-12-31T02:34:54Z,- ExperimentsInHonesty commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-569850701) at 2019-12-30 06:34 PM PST -ExperimentsInHonesty,2019-12-31T03:04:09Z,- ExperimentsInHonesty opened pull request: [234](https://github.com/hackforla/website/pull/234) at 2019-12-30 07:04 PM PST -ExperimentsInHonesty,2019-12-31T03:09:03Z,- ExperimentsInHonesty assigned to issue: [235](https://github.com/hackforla/website/issues/235) at 2019-12-30 07:09 PM PST -ExperimentsInHonesty,2019-12-31T03:14:52Z,- ExperimentsInHonesty assigned to issue: [236](https://github.com/hackforla/website/issues/236) at 2019-12-30 07:14 PM PST -ExperimentsInHonesty,2019-12-31T04:18:10Z,- ExperimentsInHonesty opened pull request: [238](https://github.com/hackforla/website/pull/238) at 2019-12-30 08:18 PM PST -ExperimentsInHonesty,2019-12-31T04:18:34Z,- ExperimentsInHonesty pull request merged: [238](https://github.com/hackforla/website/pull/238#event-2915068402) at 2019-12-30 08:18 PM PST -ExperimentsInHonesty,2019-12-31T18:14:01Z,- ExperimentsInHonesty assigned to issue: [239](https://github.com/hackforla/website/issues/239) at 2019-12-31 10:14 AM PST -ExperimentsInHonesty,2019-12-31T19:58:15Z,- ExperimentsInHonesty assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-31 11:58 AM PST -ExperimentsInHonesty,2020-01-02T19:04:50Z,- ExperimentsInHonesty commented on issue: [226](https://github.com/hackforla/website/issues/226#issuecomment-570308250) at 2020-01-02 11:04 AM PST -ExperimentsInHonesty,2020-01-05T23:08:34Z,- ExperimentsInHonesty commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-570957587) at 2020-01-05 03:08 PM PST -ExperimentsInHonesty,2020-01-07T02:22:30Z,- ExperimentsInHonesty assigned to issue: [246](https://github.com/hackforla/website/issues/246) at 2020-01-06 06:22 PM PST -ExperimentsInHonesty,2020-01-10T19:09:12Z,- ExperimentsInHonesty opened pull request: [258](https://github.com/hackforla/website/pull/258) at 2020-01-10 11:09 AM PST -ExperimentsInHonesty,2020-01-10T19:09:38Z,- ExperimentsInHonesty pull request merged: [258](https://github.com/hackforla/website/pull/258#event-2939565274) at 2020-01-10 11:09 AM PST -ExperimentsInHonesty,2020-01-12T00:38:41Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573368108) at 2020-01-11 04:38 PM PST -ExperimentsInHonesty,2020-01-12T17:56:02Z,- ExperimentsInHonesty assigned to issue: [259](https://github.com/hackforla/website/issues/259) at 2020-01-12 09:56 AM PST -ExperimentsInHonesty,2020-01-12T18:42:43Z,- ExperimentsInHonesty commented on issue: [224](https://github.com/hackforla/website/issues/224#issuecomment-573444660) at 2020-01-12 10:42 AM PST -ExperimentsInHonesty,2020-01-12T19:52:50Z,- ExperimentsInHonesty opened issue: [260](https://github.com/hackforla/website/issues/260) at 2020-01-12 11:52 AM PST -ExperimentsInHonesty,2020-01-12T19:57:47Z,- ExperimentsInHonesty commented on issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573451086) at 2020-01-12 11:57 AM PST -ExperimentsInHonesty,2020-01-12T19:58:40Z,- ExperimentsInHonesty assigned to issue: [260](https://github.com/hackforla/website/issues/260#issuecomment-573451086) at 2020-01-12 11:58 AM PST -ExperimentsInHonesty,2020-01-14T04:20:42Z,- ExperimentsInHonesty closed issue as completed: [259](https://github.com/hackforla/website/issues/259#event-2945624314) at 2020-01-13 08:20 PM PST -ExperimentsInHonesty,2020-01-19T18:28:25Z,- ExperimentsInHonesty commented on issue: [203](https://github.com/hackforla/website/issues/203#issuecomment-576032297) at 2020-01-19 10:28 AM PST -ExperimentsInHonesty,2020-01-19T18:28:25Z,- ExperimentsInHonesty closed issue as completed: [203](https://github.com/hackforla/website/issues/203#event-2961064022) at 2020-01-19 10:28 AM PST -ExperimentsInHonesty,2020-01-19T19:04:27Z,- ExperimentsInHonesty assigned to issue: [288](https://github.com/hackforla/website/issues/288) at 2020-01-19 11:04 AM PST -ExperimentsInHonesty,2020-01-19T19:22:15Z,- ExperimentsInHonesty pull request merged: [234](https://github.com/hackforla/website/pull/234#event-2961095344) at 2020-01-19 11:22 AM PST -ExperimentsInHonesty,2020-01-19T19:44:02Z,- ExperimentsInHonesty opened issue: [269](https://github.com/hackforla/website/issues/269) at 2020-01-19 11:44 AM PST -ExperimentsInHonesty,2020-01-19T19:46:40Z,- ExperimentsInHonesty commented on issue: [235](https://github.com/hackforla/website/issues/235#issuecomment-576039564) at 2020-01-19 11:46 AM PST -ExperimentsInHonesty,2020-01-19T19:46:41Z,- ExperimentsInHonesty closed issue as completed: [235](https://github.com/hackforla/website/issues/235#event-2961109025) at 2020-01-19 11:46 AM PST -ExperimentsInHonesty,2020-01-19T20:06:27Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-576041303) at 2020-01-19 12:06 PM PST -ExperimentsInHonesty,2020-01-20T03:29:51Z,- ExperimentsInHonesty assigned to issue: [271](https://github.com/hackforla/website/issues/271) at 2020-01-19 07:29 PM PST -ExperimentsInHonesty,2020-01-20T04:40:31Z,- ExperimentsInHonesty assigned to issue: [275](https://github.com/hackforla/website/issues/275) at 2020-01-19 08:40 PM PST -ExperimentsInHonesty,2020-01-20T04:42:56Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-576103684) at 2020-01-19 08:42 PM PST -ExperimentsInHonesty,2020-01-20T04:47:31Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-576104509) at 2020-01-19 08:47 PM PST -ExperimentsInHonesty,2020-01-20T05:03:56Z,- ExperimentsInHonesty assigned to issue: [276](https://github.com/hackforla/website/issues/276) at 2020-01-19 09:03 PM PST -ExperimentsInHonesty,2020-01-20T05:14:17Z,- ExperimentsInHonesty assigned to issue: [277](https://github.com/hackforla/website/issues/277) at 2020-01-19 09:14 PM PST -ExperimentsInHonesty,2020-01-21T03:44:20Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-576505748) at 2020-01-20 07:44 PM PST -ExperimentsInHonesty,2020-01-24T05:53:56Z,- ExperimentsInHonesty commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-01-23 09:53 PM PST -ExperimentsInHonesty,2020-01-26T18:19:27Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-578528499) at 2020-01-26 10:19 AM PST -ExperimentsInHonesty,2020-01-26T18:20:26Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-578528575) at 2020-01-26 10:20 AM PST -ExperimentsInHonesty,2020-01-26T18:21:35Z,- ExperimentsInHonesty commented on issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-578528662) at 2020-01-26 10:21 AM PST -ExperimentsInHonesty,2020-01-26T18:46:32Z,- ExperimentsInHonesty commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-578530739) at 2020-01-26 10:46 AM PST -ExperimentsInHonesty,2020-01-26T18:49:23Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578531013) at 2020-01-26 10:49 AM PST -ExperimentsInHonesty,2020-01-26T18:50:11Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-578531075) at 2020-01-26 10:50 AM PST -ExperimentsInHonesty,2020-01-26T19:02:35Z,- ExperimentsInHonesty assigned to issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-26 11:02 AM PST -ExperimentsInHonesty,2020-01-26T19:15:07Z,- ExperimentsInHonesty assigned to issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578531013) at 2020-01-26 11:15 AM PST -ExperimentsInHonesty,2020-01-26T19:17:54Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578533497) at 2020-01-26 11:17 AM PST -ExperimentsInHonesty,2020-01-26T19:23:14Z,- ExperimentsInHonesty commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-578534005) at 2020-01-26 11:23 AM PST -ExperimentsInHonesty,2020-01-26T19:32:56Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-578534853) at 2020-01-26 11:32 AM PST -ExperimentsInHonesty,2020-01-26T19:38:48Z,- ExperimentsInHonesty commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578535363) at 2020-01-26 11:38 AM PST -ExperimentsInHonesty,2020-01-26T19:43:41Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578535808) at 2020-01-26 11:43 AM PST -ExperimentsInHonesty,2020-01-26T19:45:24Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578535944) at 2020-01-26 11:45 AM PST -ExperimentsInHonesty,2020-01-26T19:46:56Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-578536096) at 2020-01-26 11:46 AM PST -ExperimentsInHonesty,2020-01-26T19:47:28Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578536135) at 2020-01-26 11:47 AM PST -ExperimentsInHonesty,2020-01-26T19:58:51Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578537160) at 2020-01-26 11:58 AM PST -ExperimentsInHonesty,2020-01-26T21:19:18Z,- ExperimentsInHonesty commented on issue: [247](https://github.com/hackforla/website/issues/247#issuecomment-578544329) at 2020-01-26 01:19 PM PST -ExperimentsInHonesty,2020-01-26T21:19:18Z,- ExperimentsInHonesty closed issue as completed: [247](https://github.com/hackforla/website/issues/247#event-2980179715) at 2020-01-26 01:19 PM PST -ExperimentsInHonesty,2020-01-26T21:24:43Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578544817) at 2020-01-26 01:24 PM PST -ExperimentsInHonesty,2020-01-26T21:27:51Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578545120) at 2020-01-26 01:27 PM PST -ExperimentsInHonesty,2020-01-26T21:34:44Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-578545722) at 2020-01-26 01:34 PM PST -ExperimentsInHonesty,2020-01-26T21:36:14Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578545853) at 2020-01-26 01:36 PM PST -ExperimentsInHonesty,2020-01-26T21:39:59Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578546144) at 2020-01-26 01:39 PM PST -ExperimentsInHonesty,2020-01-26T21:41:20Z,- ExperimentsInHonesty unassigned from issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-571403621) at 2020-01-26 01:41 PM PST -ExperimentsInHonesty,2020-01-26T21:42:25Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-578546362) at 2020-01-26 01:42 PM PST -ExperimentsInHonesty,2020-01-26T21:44:14Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578546504) at 2020-01-26 01:44 PM PST -ExperimentsInHonesty,2020-01-26T22:13:47Z,- ExperimentsInHonesty commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578548815) at 2020-01-26 02:13 PM PST -ExperimentsInHonesty,2020-01-26T22:16:39Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578549048) at 2020-01-26 02:16 PM PST -ExperimentsInHonesty,2020-01-26T22:46:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-578551283) at 2020-01-26 02:46 PM PST -ExperimentsInHonesty,2020-01-26T23:19:14Z,- ExperimentsInHonesty commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-578553684) at 2020-01-26 03:19 PM PST -ExperimentsInHonesty,2020-01-27T22:43:35Z,- ExperimentsInHonesty assigned to issue: [286](https://github.com/hackforla/website/issues/286) at 2020-01-27 02:43 PM PST -ExperimentsInHonesty,2020-01-28T09:01:32Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-579145338) at 2020-01-28 01:01 AM PST -ExperimentsInHonesty,2020-01-28T09:04:35Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-579146385) at 2020-01-28 01:04 AM PST -ExperimentsInHonesty,2020-01-28T09:32:36Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579157204) at 2020-01-28 01:32 AM PST -ExperimentsInHonesty,2020-01-28T09:41:19Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579160403) at 2020-01-28 01:41 AM PST -ExperimentsInHonesty,2020-01-28T09:42:36Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579160924) at 2020-01-28 01:42 AM PST -ExperimentsInHonesty,2020-01-28T09:44:18Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579161625) at 2020-01-28 01:44 AM PST -ExperimentsInHonesty,2020-01-28T09:45:24Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-579162045) at 2020-01-28 01:45 AM PST -ExperimentsInHonesty,2020-01-30T02:25:40Z,- ExperimentsInHonesty commented on pull request: [287](https://github.com/hackforla/website/pull/287#issuecomment-580055159) at 2020-01-29 06:25 PM PST -ExperimentsInHonesty,2020-01-30T05:07:52Z,- ExperimentsInHonesty commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-580085529) at 2020-01-29 09:07 PM PST -ExperimentsInHonesty,2020-01-30T21:53:57Z,- ExperimentsInHonesty closed issue as completed: [277](https://github.com/hackforla/website/issues/277#event-2995061656) at 2020-01-30 01:53 PM PST -ExperimentsInHonesty,2020-02-02T18:28:51Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-581163031) at 2020-02-02 10:28 AM PST -ExperimentsInHonesty,2020-02-02T18:48:08Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-581164629) at 2020-02-02 10:48 AM PST -ExperimentsInHonesty,2020-02-02T18:50:11Z,- ExperimentsInHonesty commented on pull request: [287](https://github.com/hackforla/website/pull/287#issuecomment-581164819) at 2020-02-02 10:50 AM PST -ExperimentsInHonesty,2020-02-02T19:00:16Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-581165634) at 2020-02-02 11:00 AM PST -ExperimentsInHonesty,2020-02-02T19:12:48Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-581166756) at 2020-02-02 11:12 AM PST -ExperimentsInHonesty,2020-02-04T04:52:37Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-581742064) at 2020-02-03 08:52 PM PST -ExperimentsInHonesty,2020-02-04T04:59:33Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-581743496) at 2020-02-03 08:59 PM PST -ExperimentsInHonesty,2020-02-05T18:08:22Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-582537723) at 2020-02-05 10:08 AM PST -ExperimentsInHonesty,2020-02-05T18:10:48Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-582538821) at 2020-02-05 10:10 AM PST -ExperimentsInHonesty,2020-02-05T18:28:01Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582546238) at 2020-02-05 10:28 AM PST -ExperimentsInHonesty,2020-02-05T18:36:33Z,- ExperimentsInHonesty opened pull request: [290](https://github.com/hackforla/website/pull/290) at 2020-02-05 10:36 AM PST -ExperimentsInHonesty,2020-02-05T18:36:43Z,- ExperimentsInHonesty pull request merged: [290](https://github.com/hackforla/website/pull/290#event-3011139295) at 2020-02-05 10:36 AM PST -ExperimentsInHonesty,2020-02-05T21:07:23Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582612863) at 2020-02-05 01:07 PM PST -ExperimentsInHonesty,2020-02-05T21:09:23Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582613623) at 2020-02-05 01:09 PM PST -ExperimentsInHonesty,2020-02-05T22:09:30Z,- ExperimentsInHonesty opened issue: [294](https://github.com/hackforla/website/issues/294) at 2020-02-05 02:09 PM PST -ExperimentsInHonesty,2020-02-05T22:36:17Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582646759) at 2020-02-05 02:36 PM PST -ExperimentsInHonesty,2020-02-05T23:31:24Z,- ExperimentsInHonesty opened issue: [297](https://github.com/hackforla/website/issues/297) at 2020-02-05 03:31 PM PST -ExperimentsInHonesty,2020-02-05T23:38:19Z,- ExperimentsInHonesty commented on pull request: [289](https://github.com/hackforla/website/pull/289#issuecomment-582665322) at 2020-02-05 03:38 PM PST -ExperimentsInHonesty,2020-02-05T23:40:46Z,- ExperimentsInHonesty commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582666073) at 2020-02-05 03:40 PM PST -ExperimentsInHonesty,2020-02-06T00:14:24Z,- ExperimentsInHonesty opened pull request: [298](https://github.com/hackforla/website/pull/298) at 2020-02-05 04:14 PM PST -ExperimentsInHonesty,2020-02-06T00:14:32Z,- ExperimentsInHonesty pull request merged: [298](https://github.com/hackforla/website/pull/298#event-3012063007) at 2020-02-05 04:14 PM PST -ExperimentsInHonesty,2020-02-06T00:53:45Z,- ExperimentsInHonesty commented on issue: [294](https://github.com/hackforla/website/issues/294#issuecomment-582684551) at 2020-02-05 04:53 PM PST -ExperimentsInHonesty,2020-02-07T00:59:36Z,- ExperimentsInHonesty opened issue: [301](https://github.com/hackforla/website/issues/301) at 2020-02-06 04:59 PM PST -ExperimentsInHonesty,2020-02-08T06:23:00Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583707897) at 2020-02-07 10:23 PM PST -ExperimentsInHonesty,2020-02-08T07:11:29Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583710908) at 2020-02-07 11:11 PM PST -ExperimentsInHonesty,2020-02-08T07:12:11Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583710961) at 2020-02-07 11:12 PM PST -ExperimentsInHonesty,2020-02-09T01:27:32Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583794314) at 2020-02-08 05:27 PM PST -ExperimentsInHonesty,2020-02-09T01:35:11Z,- ExperimentsInHonesty opened pull request: [300](https://github.com/hackforla/website/pull/300) at 2020-02-08 05:35 PM PST -ExperimentsInHonesty,2020-02-09T01:44:01Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-583795148) at 2020-02-08 05:44 PM PST -ExperimentsInHonesty,2020-02-09T18:15:48Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-583875891) at 2020-02-09 10:15 AM PST -ExperimentsInHonesty,2020-02-09T18:18:35Z,- ExperimentsInHonesty commented on issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-583876151) at 2020-02-09 10:18 AM PST -ExperimentsInHonesty,2020-02-09T18:23:12Z,- ExperimentsInHonesty commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-583876595) at 2020-02-09 10:23 AM PST -ExperimentsInHonesty,2020-02-09T18:26:30Z,- ExperimentsInHonesty commented on issue: [291](https://github.com/hackforla/website/issues/291#issuecomment-583876930) at 2020-02-09 10:26 AM PST -ExperimentsInHonesty,2020-02-09T18:28:52Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583877158) at 2020-02-09 10:28 AM PST -ExperimentsInHonesty,2020-02-09T18:30:11Z,- ExperimentsInHonesty closed issue as completed: [281](https://github.com/hackforla/website/issues/281#event-3020781344) at 2020-02-09 10:30 AM PST -ExperimentsInHonesty,2020-02-09T18:37:44Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-583878102) at 2020-02-09 10:37 AM PST -ExperimentsInHonesty,2020-02-09T18:41:18Z,- ExperimentsInHonesty commented on issue: [292](https://github.com/hackforla/website/issues/292#issuecomment-583878506) at 2020-02-09 10:41 AM PST -ExperimentsInHonesty,2020-02-09T18:56:06Z,- ExperimentsInHonesty commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-583880039) at 2020-02-09 10:56 AM PST -ExperimentsInHonesty,2020-02-09T19:12:54Z,- ExperimentsInHonesty commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-583881654) at 2020-02-09 11:12 AM PST -ExperimentsInHonesty,2020-02-09T19:16:50Z,- ExperimentsInHonesty commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-583882083) at 2020-02-09 11:16 AM PST -ExperimentsInHonesty,2020-02-09T19:20:47Z,- ExperimentsInHonesty commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583882528) at 2020-02-09 11:20 AM PST -ExperimentsInHonesty,2020-02-09T19:21:07Z,- ExperimentsInHonesty unassigned from issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-583882528) at 2020-02-09 11:21 AM PST -ExperimentsInHonesty,2020-02-09T20:09:56Z,- ExperimentsInHonesty assigned to issue: [304](https://github.com/hackforla/website/issues/304) at 2020-02-09 12:09 PM PST -ExperimentsInHonesty,2020-02-10T00:27:19Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-583913430) at 2020-02-09 04:27 PM PST -ExperimentsInHonesty,2020-02-10T04:26:04Z,- ExperimentsInHonesty pull request merged: [300](https://github.com/hackforla/website/pull/300#event-3021277474) at 2020-02-09 08:26 PM PST -ExperimentsInHonesty,2020-02-10T23:48:47Z,- ExperimentsInHonesty opened pull request: [305](https://github.com/hackforla/website/pull/305) at 2020-02-10 03:48 PM PST -ExperimentsInHonesty,2020-02-11T03:49:25Z,- ExperimentsInHonesty pull request merged: [305](https://github.com/hackforla/website/pull/305#event-3025149900) at 2020-02-10 07:49 PM PST -ExperimentsInHonesty,2020-02-11T19:19:20Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584805202) at 2020-02-11 11:19 AM PST -ExperimentsInHonesty,2020-02-11T19:27:01Z,- ExperimentsInHonesty opened pull request: [309](https://github.com/hackforla/website/pull/309) at 2020-02-11 11:27 AM PST -ExperimentsInHonesty,2020-02-11T19:56:09Z,- ExperimentsInHonesty pull request merged: [309](https://github.com/hackforla/website/pull/309#event-3028001127) at 2020-02-11 11:56 AM PST -ExperimentsInHonesty,2020-02-14T22:44:27Z,- ExperimentsInHonesty commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-586507614) at 2020-02-14 02:44 PM PST -ExperimentsInHonesty,2020-02-16T18:27:19Z,- ExperimentsInHonesty commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-586737065) at 2020-02-16 10:27 AM PST -ExperimentsInHonesty,2020-02-16T18:38:06Z,- ExperimentsInHonesty commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-586738161) at 2020-02-16 10:38 AM PST -ExperimentsInHonesty,2020-02-16T18:41:02Z,- ExperimentsInHonesty commented on issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-586738546) at 2020-02-16 10:41 AM PST -ExperimentsInHonesty,2020-02-16T19:37:18Z,- ExperimentsInHonesty commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586744103) at 2020-02-16 11:37 AM PST -ExperimentsInHonesty,2020-02-16T19:43:50Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586744726) at 2020-02-16 11:43 AM PST -ExperimentsInHonesty,2020-02-16T19:50:30Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586745326) at 2020-02-16 11:50 AM PST -ExperimentsInHonesty,2020-02-16T19:52:09Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-586745472) at 2020-02-16 11:52 AM PST -ExperimentsInHonesty,2020-02-16T19:56:02Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-586745834) at 2020-02-16 11:56 AM PST -ExperimentsInHonesty,2020-02-16T19:56:32Z,- ExperimentsInHonesty closed issue as completed: [253](https://github.com/hackforla/website/issues/253#event-3041799926) at 2020-02-16 11:56 AM PST -ExperimentsInHonesty,2020-02-16T19:56:49Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586745928) at 2020-02-16 11:56 AM PST -ExperimentsInHonesty,2020-02-16T19:57:37Z,- ExperimentsInHonesty unassigned from issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578864077) at 2020-02-16 11:57 AM PST -ExperimentsInHonesty,2020-02-16T19:59:07Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586746164) at 2020-02-16 11:59 AM PST -ExperimentsInHonesty,2020-02-16T20:01:02Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586746344) at 2020-02-16 12:01 PM PST -ExperimentsInHonesty,2020-02-16T20:04:55Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586746704) at 2020-02-16 12:04 PM PST -ExperimentsInHonesty,2020-02-16T20:08:31Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586747055) at 2020-02-16 12:08 PM PST -ExperimentsInHonesty,2020-02-16T20:10:09Z,- ExperimentsInHonesty opened issue: [312](https://github.com/hackforla/website/issues/312) at 2020-02-16 12:10 PM PST -ExperimentsInHonesty,2020-02-16T20:10:28Z,- ExperimentsInHonesty assigned to issue: [312](https://github.com/hackforla/website/issues/312) at 2020-02-16 12:10 PM PST -ExperimentsInHonesty,2020-02-16T20:10:58Z,- ExperimentsInHonesty commented on issue: [312](https://github.com/hackforla/website/issues/312#issuecomment-586747295) at 2020-02-16 12:10 PM PST -ExperimentsInHonesty,2020-02-16T20:11:44Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586747399) at 2020-02-16 12:11 PM PST -ExperimentsInHonesty,2020-02-16T21:36:34Z,- ExperimentsInHonesty commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-586756931) at 2020-02-16 01:36 PM PST -ExperimentsInHonesty,2020-02-16T21:37:55Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-586757054) at 2020-02-16 01:37 PM PST -ExperimentsInHonesty,2020-02-16T22:04:15Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-586759486) at 2020-02-16 02:04 PM PST -ExperimentsInHonesty,2020-02-19T02:23:58Z,- ExperimentsInHonesty assigned to issue: [318](https://github.com/hackforla/website/issues/318) at 2020-02-18 06:23 PM PST -ExperimentsInHonesty,2020-02-19T23:43:32Z,- ExperimentsInHonesty opened pull request: [321](https://github.com/hackforla/website/pull/321) at 2020-02-19 03:43 PM PST -ExperimentsInHonesty,2020-02-19T23:46:25Z,- ExperimentsInHonesty opened pull request: [322](https://github.com/hackforla/website/pull/322) at 2020-02-19 03:46 PM PST -ExperimentsInHonesty,2020-02-19T23:46:38Z,- ExperimentsInHonesty pull request merged: [322](https://github.com/hackforla/website/pull/322#event-3053842243) at 2020-02-19 03:46 PM PST -ExperimentsInHonesty,2020-02-19T23:46:57Z,- ExperimentsInHonesty pull request merged: [321](https://github.com/hackforla/website/pull/321#event-3053842842) at 2020-02-19 03:46 PM PST -ExperimentsInHonesty,2020-02-22T18:26:42Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-589984582) at 2020-02-22 10:26 AM PST -ExperimentsInHonesty,2020-02-22T18:27:20Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-589984629) at 2020-02-22 10:27 AM PST -ExperimentsInHonesty,2020-02-25T04:37:56Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-590679408) at 2020-02-24 08:37 PM PST -ExperimentsInHonesty,2020-02-29T18:24:12Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-592976988) at 2020-02-29 10:24 AM PST -ExperimentsInHonesty,2020-02-29T20:00:34Z,- ExperimentsInHonesty opened pull request: [328](https://github.com/hackforla/website/pull/328) at 2020-02-29 12:00 PM PST -ExperimentsInHonesty,2020-02-29T20:00:49Z,- ExperimentsInHonesty pull request merged: [328](https://github.com/hackforla/website/pull/328#event-3085018079) at 2020-02-29 12:00 PM PST -ExperimentsInHonesty,2020-03-01T18:11:32Z,- ExperimentsInHonesty commented on issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-593126813) at 2020-03-01 10:11 AM PST -ExperimentsInHonesty,2020-03-01T18:18:22Z,- ExperimentsInHonesty commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-593127536) at 2020-03-01 10:18 AM PST -ExperimentsInHonesty,2020-03-01T18:49:55Z,- ExperimentsInHonesty commented on issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-593130859) at 2020-03-01 10:49 AM PST -ExperimentsInHonesty,2020-03-01T19:39:45Z,- ExperimentsInHonesty commented on issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-593136419) at 2020-03-01 11:39 AM PST -ExperimentsInHonesty,2020-03-01T19:50:34Z,- ExperimentsInHonesty commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-593137507) at 2020-03-01 11:50 AM PST -ExperimentsInHonesty,2020-03-01T19:51:12Z,- ExperimentsInHonesty assigned to issue: [333](https://github.com/hackforla/website/issues/333) at 2020-03-01 11:51 AM PST -ExperimentsInHonesty,2020-03-02T03:47:51Z,- ExperimentsInHonesty commented on issue: [286](https://github.com/hackforla/website/issues/286#issuecomment-593205716) at 2020-03-01 07:47 PM PST -ExperimentsInHonesty,2020-03-02T04:02:44Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-593208326) at 2020-03-01 08:02 PM PST -ExperimentsInHonesty,2020-03-02T04:05:00Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-593208645) at 2020-03-01 08:05 PM PST -ExperimentsInHonesty,2020-03-02T04:06:13Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593208885) at 2020-03-01 08:06 PM PST -ExperimentsInHonesty,2020-03-02T05:14:10Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-593223005) at 2020-03-01 09:14 PM PST -ExperimentsInHonesty,2020-03-02T05:55:55Z,- ExperimentsInHonesty closed issue as completed: [276](https://github.com/hackforla/website/issues/276#event-3086515277) at 2020-03-01 09:55 PM PST -ExperimentsInHonesty,2020-03-02T06:07:47Z,- ExperimentsInHonesty assigned to issue: [329](https://github.com/hackforla/website/issues/329) at 2020-03-01 10:07 PM PST -ExperimentsInHonesty,2020-03-02T06:27:19Z,- ExperimentsInHonesty closed issue as completed: [189](https://github.com/hackforla/website/issues/189#event-3086574521) at 2020-03-01 10:27 PM PST -ExperimentsInHonesty,2020-03-03T06:43:00Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593794191) at 2020-03-02 10:43 PM PST -ExperimentsInHonesty,2020-03-03T07:26:24Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593806771) at 2020-03-02 11:26 PM PST -ExperimentsInHonesty,2020-03-04T01:10:24Z,- ExperimentsInHonesty opened pull request: [344](https://github.com/hackforla/website/pull/344) at 2020-03-03 05:10 PM PST -ExperimentsInHonesty,2020-03-04T01:10:31Z,- ExperimentsInHonesty pull request merged: [344](https://github.com/hackforla/website/pull/344#event-3094508633) at 2020-03-03 05:10 PM PST -ExperimentsInHonesty,2020-03-04T04:54:34Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-594326477) at 2020-03-03 08:54 PM PST -ExperimentsInHonesty,2020-03-06T01:19:58Z,- ExperimentsInHonesty opened issue: [351](https://github.com/hackforla/website/issues/351) at 2020-03-05 05:19 PM PST -ExperimentsInHonesty,2020-03-06T01:31:42Z,- ExperimentsInHonesty opened issue: [352](https://github.com/hackforla/website/issues/352) at 2020-03-05 05:31 PM PST -ExperimentsInHonesty,2020-03-06T01:35:09Z,- ExperimentsInHonesty commented on issue: [352](https://github.com/hackforla/website/issues/352#issuecomment-595552564) at 2020-03-05 05:35 PM PST -ExperimentsInHonesty,2020-03-06T21:34:54Z,- ExperimentsInHonesty closed issue as completed: [304](https://github.com/hackforla/website/issues/304#event-3106950809) at 2020-03-06 01:34 PM PST -ExperimentsInHonesty,2020-03-08T17:49:01Z,- ExperimentsInHonesty closed issue by PR 353: [352](https://github.com/hackforla/website/issues/352#event-3108584244) at 2020-03-08 10:49 AM PDT -ExperimentsInHonesty,2020-03-08T20:44:56Z,- ExperimentsInHonesty commented on issue: [285](https://github.com/hackforla/website/issues/285#issuecomment-596250532) at 2020-03-08 01:44 PM PDT -ExperimentsInHonesty,2020-03-08T20:44:57Z,- ExperimentsInHonesty closed issue as completed: [285](https://github.com/hackforla/website/issues/285#event-3108696252) at 2020-03-08 01:44 PM PDT -ExperimentsInHonesty,2020-03-08T23:51:18Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596267700) at 2020-03-08 04:51 PM PDT -ExperimentsInHonesty,2020-03-08T23:55:06Z,- ExperimentsInHonesty commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-596268006) at 2020-03-08 04:55 PM PDT -ExperimentsInHonesty,2020-03-09T00:13:21Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596270182) at 2020-03-08 05:13 PM PDT -ExperimentsInHonesty,2020-03-09T02:45:14Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596306807) at 2020-03-08 07:45 PM PDT -ExperimentsInHonesty,2020-03-09T05:41:28Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596341030) at 2020-03-08 10:41 PM PDT -ExperimentsInHonesty,2020-03-09T05:47:16Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596342254) at 2020-03-08 10:47 PM PDT -ExperimentsInHonesty,2020-03-09T05:55:41Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596344341) at 2020-03-08 10:55 PM PDT -ExperimentsInHonesty,2020-03-09T06:01:09Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596345695) at 2020-03-08 11:01 PM PDT -ExperimentsInHonesty,2020-03-09T06:05:46Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596346746) at 2020-03-08 11:05 PM PDT -ExperimentsInHonesty,2020-03-09T06:10:58Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596347977) at 2020-03-08 11:10 PM PDT -ExperimentsInHonesty,2020-03-09T06:15:36Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596349134) at 2020-03-08 11:15 PM PDT -ExperimentsInHonesty,2020-03-09T06:18:54Z,- ExperimentsInHonesty commented on issue: [318](https://github.com/hackforla/website/issues/318#issuecomment-596349944) at 2020-03-08 11:18 PM PDT -ExperimentsInHonesty,2020-03-09T17:06:55Z,- ExperimentsInHonesty closed issue by PR 355: [318](https://github.com/hackforla/website/issues/318#event-3111576152) at 2020-03-09 10:06 AM PDT -ExperimentsInHonesty,2020-03-09T19:59:37Z,- ExperimentsInHonesty assigned to issue: [356](https://github.com/hackforla/website/issues/356) at 2020-03-09 12:59 PM PDT -ExperimentsInHonesty,2020-03-10T22:02:07Z,- ExperimentsInHonesty opened pull request: [358](https://github.com/hackforla/website/pull/358) at 2020-03-10 03:02 PM PDT -ExperimentsInHonesty,2020-03-10T22:02:21Z,- ExperimentsInHonesty pull request merged: [358](https://github.com/hackforla/website/pull/358#event-3116610456) at 2020-03-10 03:02 PM PDT -ExperimentsInHonesty,2020-03-10T22:04:13Z,- ExperimentsInHonesty opened pull request: [359](https://github.com/hackforla/website/pull/359) at 2020-03-10 03:04 PM PDT -ExperimentsInHonesty,2020-03-10T22:04:28Z,- ExperimentsInHonesty pull request merged: [359](https://github.com/hackforla/website/pull/359#event-3116615320) at 2020-03-10 03:04 PM PDT -ExperimentsInHonesty,2020-03-12T02:30:12Z,- ExperimentsInHonesty commented on issue: [333](https://github.com/hackforla/website/issues/333#issuecomment-597975207) at 2020-03-11 07:30 PM PDT -ExperimentsInHonesty,2020-03-12T02:30:12Z,- ExperimentsInHonesty closed issue as completed: [333](https://github.com/hackforla/website/issues/333#event-3121183682) at 2020-03-11 07:30 PM PDT -ExperimentsInHonesty,2020-03-12T03:31:13Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-597988796) at 2020-03-11 08:31 PM PDT -ExperimentsInHonesty,2020-03-12T03:32:40Z,- ExperimentsInHonesty assigned to issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-597988796) at 2020-03-11 08:32 PM PDT -ExperimentsInHonesty,2020-03-12T03:43:58Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-597991342) at 2020-03-11 08:43 PM PDT -ExperimentsInHonesty,2020-03-12T19:05:46Z,- ExperimentsInHonesty commented on pull request: [362](https://github.com/hackforla/website/pull/362#issuecomment-598366038) at 2020-03-12 12:05 PM PDT -ExperimentsInHonesty,2020-03-12T19:06:44Z,- ExperimentsInHonesty commented on pull request: [325](https://github.com/hackforla/website/pull/325#issuecomment-598366408) at 2020-03-12 12:06 PM PDT -ExperimentsInHonesty,2020-03-12T19:11:10Z,- ExperimentsInHonesty commented on issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-598368112) at 2020-03-12 12:11 PM PDT -ExperimentsInHonesty,2020-03-12T19:13:28Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598368976) at 2020-03-12 12:13 PM PDT -ExperimentsInHonesty,2020-03-12T19:17:21Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-598370441) at 2020-03-12 12:17 PM PDT -ExperimentsInHonesty,2020-03-12T19:17:27Z,- ExperimentsInHonesty reopened issue: [252](https://github.com/hackforla/website/issues/252#event-3124183711) at 2020-03-12 12:17 PM PDT -ExperimentsInHonesty,2020-03-12T19:39:21Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-598378644) at 2020-03-12 12:39 PM PDT -ExperimentsInHonesty,2020-03-12T19:45:58Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598381138) at 2020-03-12 12:45 PM PDT -ExperimentsInHonesty,2020-03-12T19:45:58Z,- ExperimentsInHonesty reopened issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-598381138) at 2020-03-12 12:45 PM PDT -ExperimentsInHonesty,2020-03-14T19:23:00Z,- ExperimentsInHonesty opened issue: [408](https://github.com/hackforla/website/issues/408) at 2020-03-14 12:23 PM PDT -ExperimentsInHonesty,2020-03-14T20:22:22Z,- ExperimentsInHonesty commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-599130677) at 2020-03-14 01:22 PM PDT -ExperimentsInHonesty,2020-03-15T17:15:46Z,- ExperimentsInHonesty assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-596299752) at 2020-03-15 10:15 AM PDT -ExperimentsInHonesty,2020-03-15T17:19:05Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-599238922) at 2020-03-15 10:19 AM PDT -ExperimentsInHonesty,2020-03-15T18:02:40Z,- ExperimentsInHonesty commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-599243882) at 2020-03-15 11:02 AM PDT -ExperimentsInHonesty,2020-03-15T18:11:02Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-599244794) at 2020-03-15 11:11 AM PDT -ExperimentsInHonesty,2020-03-15T18:14:28Z,- ExperimentsInHonesty assigned to issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 11:14 AM PDT -ExperimentsInHonesty,2020-03-15T18:17:43Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-599245595) at 2020-03-15 11:17 AM PDT -ExperimentsInHonesty,2020-03-15T18:40:47Z,- ExperimentsInHonesty commented on pull request: [214](https://github.com/hackforla/website/pull/214#issuecomment-599248196) at 2020-03-15 11:40 AM PDT -ExperimentsInHonesty,2020-03-15T18:41:47Z,- ExperimentsInHonesty commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-599248298) at 2020-03-15 11:41 AM PDT -ExperimentsInHonesty,2020-03-16T07:20:50Z,- ExperimentsInHonesty opened pull request: [372](https://github.com/hackforla/website/pull/372) at 2020-03-16 12:20 AM PDT -ExperimentsInHonesty,2020-03-16T07:21:01Z,- ExperimentsInHonesty pull request merged: [372](https://github.com/hackforla/website/pull/372#event-3131879065) at 2020-03-16 12:21 AM PDT -ExperimentsInHonesty,2020-03-17T01:00:46Z,- ExperimentsInHonesty opened issue: [375](https://github.com/hackforla/website/issues/375) at 2020-03-16 06:00 PM PDT -ExperimentsInHonesty,2020-03-17T01:21:35Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599829924) at 2020-03-16 06:21 PM PDT -ExperimentsInHonesty,2020-03-17T01:55:36Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599837666) at 2020-03-16 06:55 PM PDT -ExperimentsInHonesty,2020-03-19T01:20:16Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-600937092) at 2020-03-18 06:20 PM PDT -ExperimentsInHonesty,2020-03-19T04:07:18Z,- ExperimentsInHonesty opened pull request: [381](https://github.com/hackforla/website/pull/381) at 2020-03-18 09:07 PM PDT -ExperimentsInHonesty,2020-03-19T04:08:18Z,- ExperimentsInHonesty pull request merged: [381](https://github.com/hackforla/website/pull/381#event-3143989709) at 2020-03-18 09:08 PM PDT -ExperimentsInHonesty,2020-03-22T18:23:42Z,- ExperimentsInHonesty commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-602250965) at 2020-03-22 11:23 AM PDT -ExperimentsInHonesty,2020-03-26T20:22:18Z,- ExperimentsInHonesty opened issue: [393](https://github.com/hackforla/website/issues/393) at 2020-03-26 01:22 PM PDT -ExperimentsInHonesty,2020-03-29T17:34:40Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-605671736) at 2020-03-29 10:34 AM PDT -ExperimentsInHonesty,2020-03-29T18:02:50Z,- ExperimentsInHonesty assigned to issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-29 11:02 AM PDT -ExperimentsInHonesty,2020-03-29T18:08:38Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-605676550) at 2020-03-29 11:08 AM PDT -ExperimentsInHonesty,2020-03-29T23:40:29Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605719909) at 2020-03-29 04:40 PM PDT -ExperimentsInHonesty,2020-03-29T23:42:43Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-605720161) at 2020-03-29 04:42 PM PDT -ExperimentsInHonesty,2020-03-29T23:47:20Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-605720708) at 2020-03-29 04:47 PM PDT -ExperimentsInHonesty,2020-03-29T23:49:09Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605720902) at 2020-03-29 04:49 PM PDT -ExperimentsInHonesty,2020-03-29T23:52:36Z,- ExperimentsInHonesty commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-605721300) at 2020-03-29 04:52 PM PDT -ExperimentsInHonesty,2020-03-29T23:53:16Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605721374) at 2020-03-29 04:53 PM PDT -ExperimentsInHonesty,2020-03-29T23:58:13Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-605721997) at 2020-03-29 04:58 PM PDT -ExperimentsInHonesty,2020-03-29T23:59:13Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605722120) at 2020-03-29 04:59 PM PDT -ExperimentsInHonesty,2020-03-30T00:01:22Z,- ExperimentsInHonesty commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-605722441) at 2020-03-29 05:01 PM PDT -ExperimentsInHonesty,2020-03-30T00:01:59Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605722546) at 2020-03-29 05:01 PM PDT -ExperimentsInHonesty,2020-03-30T00:53:59Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-605730441) at 2020-03-29 05:53 PM PDT -ExperimentsInHonesty,2020-03-30T00:57:03Z,- ExperimentsInHonesty commented on issue: [395](https://github.com/hackforla/website/issues/395#issuecomment-605730878) at 2020-03-29 05:57 PM PDT -ExperimentsInHonesty,2020-03-30T02:32:41Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-605750310) at 2020-03-29 07:32 PM PDT -ExperimentsInHonesty,2020-03-30T02:36:35Z,- ExperimentsInHonesty unassigned from issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-605720161) at 2020-03-29 07:36 PM PDT -ExperimentsInHonesty,2020-03-30T03:21:17Z,- ExperimentsInHonesty unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605705523) at 2020-03-29 08:21 PM PDT -ExperimentsInHonesty,2020-03-30T03:28:20Z,- ExperimentsInHonesty unassigned from issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-605720708) at 2020-03-29 08:28 PM PDT -ExperimentsInHonesty,2020-03-30T03:47:54Z,- ExperimentsInHonesty opened issue: [402](https://github.com/hackforla/website/issues/402) at 2020-03-29 08:47 PM PDT -ExperimentsInHonesty,2020-03-30T04:19:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605773487) at 2020-03-29 09:19 PM PDT -ExperimentsInHonesty,2020-03-30T04:39:52Z,- ExperimentsInHonesty opened issue: [403](https://github.com/hackforla/website/issues/403) at 2020-03-29 09:39 PM PDT -ExperimentsInHonesty,2020-03-30T05:00:03Z,- ExperimentsInHonesty commented on issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-605782876) at 2020-03-29 10:00 PM PDT -ExperimentsInHonesty,2020-03-31T03:04:42Z,- ExperimentsInHonesty closed issue as completed: [361](https://github.com/hackforla/website/issues/361#event-3181324757) at 2020-03-30 08:04 PM PDT -ExperimentsInHonesty,2020-04-05T03:24:26Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609225761) at 2020-04-04 08:24 PM PDT -ExperimentsInHonesty,2020-04-05T17:26:11Z,- ExperimentsInHonesty unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -ExperimentsInHonesty,2020-04-05T17:32:52Z,- ExperimentsInHonesty commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-609453037) at 2020-04-05 10:32 AM PDT -ExperimentsInHonesty,2020-04-05T18:15:58Z,- ExperimentsInHonesty commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-609459229) at 2020-04-05 11:15 AM PDT -ExperimentsInHonesty,2020-04-05T18:28:57Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609460920) at 2020-04-05 11:28 AM PDT -ExperimentsInHonesty,2020-04-05T18:47:52Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-609463483) at 2020-04-05 11:47 AM PDT -ExperimentsInHonesty,2020-04-05T18:49:42Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-609463745) at 2020-04-05 11:49 AM PDT -ExperimentsInHonesty,2020-04-05T18:50:54Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609463924) at 2020-04-05 11:50 AM PDT -ExperimentsInHonesty,2020-04-05T18:54:20Z,- ExperimentsInHonesty commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-609464428) at 2020-04-05 11:54 AM PDT -ExperimentsInHonesty,2020-04-05T18:55:27Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609464602) at 2020-04-05 11:55 AM PDT -ExperimentsInHonesty,2020-04-05T18:59:21Z,- ExperimentsInHonesty assigned to issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-05 11:59 AM PDT -ExperimentsInHonesty,2020-04-05T18:59:40Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609465192) at 2020-04-05 11:59 AM PDT -ExperimentsInHonesty,2020-04-05T19:02:52Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-609465617) at 2020-04-05 12:02 PM PDT -ExperimentsInHonesty,2020-04-05T23:33:19Z,- ExperimentsInHonesty assigned to issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-05 04:33 PM PDT -ExperimentsInHonesty,2020-04-07T21:53:38Z,- ExperimentsInHonesty commented on issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610639330) at 2020-04-07 02:53 PM PDT -ExperimentsInHonesty,2020-04-12T17:36:21Z,- ExperimentsInHonesty commented on pull request: [410](https://github.com/hackforla/website/pull/410#issuecomment-612650490) at 2020-04-12 10:36 AM PDT -ExperimentsInHonesty,2020-04-12T17:56:20Z,- ExperimentsInHonesty unassigned from issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-12 10:56 AM PDT -ExperimentsInHonesty,2020-04-12T19:26:21Z,- ExperimentsInHonesty commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-612664296) at 2020-04-12 12:26 PM PDT -ExperimentsInHonesty,2020-04-12T19:48:27Z,- ExperimentsInHonesty opened issue: [430](https://github.com/hackforla/website/issues/430) at 2020-04-12 12:48 PM PDT -ExperimentsInHonesty,2020-04-12T20:16:36Z,- ExperimentsInHonesty commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612670223) at 2020-04-12 01:16 PM PDT -ExperimentsInHonesty,2020-04-12T20:27:43Z,- ExperimentsInHonesty opened issue: [431](https://github.com/hackforla/website/issues/431) at 2020-04-12 01:27 PM PDT -ExperimentsInHonesty,2020-04-12T20:50:19Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612674079) at 2020-04-12 01:50 PM PDT -ExperimentsInHonesty,2020-04-12T20:53:55Z,- ExperimentsInHonesty commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-612674462) at 2020-04-12 01:53 PM PDT -ExperimentsInHonesty,2020-04-12T21:18:43Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-612677326) at 2020-04-12 02:18 PM PDT -ExperimentsInHonesty,2020-04-12T22:16:11Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-612684281) at 2020-04-12 03:16 PM PDT -ExperimentsInHonesty,2020-04-13T02:29:28Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-612720893) at 2020-04-12 07:29 PM PDT -ExperimentsInHonesty,2020-04-13T02:32:38Z,- ExperimentsInHonesty opened issue: [435](https://github.com/hackforla/website/issues/435) at 2020-04-12 07:32 PM PDT -ExperimentsInHonesty,2020-04-13T02:38:35Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-612722781) at 2020-04-12 07:38 PM PDT -ExperimentsInHonesty,2020-04-13T02:39:55Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-612723067) at 2020-04-12 07:39 PM PDT -ExperimentsInHonesty,2020-04-13T02:50:56Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-612725156) at 2020-04-12 07:50 PM PDT -ExperimentsInHonesty,2020-04-13T03:30:08Z,- ExperimentsInHonesty commented on issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-612733309) at 2020-04-12 08:30 PM PDT -ExperimentsInHonesty,2020-04-13T16:10:15Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-612966329) at 2020-04-13 09:10 AM PDT -ExperimentsInHonesty,2020-04-18T19:39:44Z,- ExperimentsInHonesty assigned to issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-612684281) at 2020-04-18 12:39 PM PDT -ExperimentsInHonesty,2020-04-18T20:33:12Z,- ExperimentsInHonesty commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-615942745) at 2020-04-18 01:33 PM PDT -ExperimentsInHonesty,2020-04-18T20:34:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-615943015) at 2020-04-18 01:34 PM PDT -ExperimentsInHonesty,2020-04-19T16:26:17Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-616175550) at 2020-04-19 09:26 AM PDT -ExperimentsInHonesty,2020-04-19T16:26:26Z,- ExperimentsInHonesty assigned to issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-616175550) at 2020-04-19 09:26 AM PDT -ExperimentsInHonesty,2020-04-19T16:29:32Z,- ExperimentsInHonesty commented on issue: [301](https://github.com/hackforla/website/issues/301#issuecomment-616176317) at 2020-04-19 09:29 AM PDT -ExperimentsInHonesty,2020-04-19T16:35:55Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616177640) at 2020-04-19 09:35 AM PDT -ExperimentsInHonesty,2020-04-19T16:37:18Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616177963) at 2020-04-19 09:37 AM PDT -ExperimentsInHonesty,2020-04-19T16:46:25Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616180002) at 2020-04-19 09:46 AM PDT -ExperimentsInHonesty,2020-04-19T16:48:14Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616180373) at 2020-04-19 09:48 AM PDT -ExperimentsInHonesty,2020-04-19T16:50:11Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616180763) at 2020-04-19 09:50 AM PDT -ExperimentsInHonesty,2020-04-19T17:04:39Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-616183787) at 2020-04-19 10:04 AM PDT -ExperimentsInHonesty,2020-04-19T17:17:01Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-616187021) at 2020-04-19 10:17 AM PDT -ExperimentsInHonesty,2020-04-19T17:59:05Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-616196251) at 2020-04-19 10:59 AM PDT -ExperimentsInHonesty,2020-04-19T18:01:00Z,- ExperimentsInHonesty commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-616196585) at 2020-04-19 11:01 AM PDT -ExperimentsInHonesty,2020-04-19T18:11:34Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-616198618) at 2020-04-19 11:11 AM PDT -ExperimentsInHonesty,2020-04-19T18:32:47Z,- ExperimentsInHonesty opened issue: [444](https://github.com/hackforla/website/issues/444) at 2020-04-19 11:32 AM PDT -ExperimentsInHonesty,2020-04-19T18:35:33Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616203597) at 2020-04-19 11:35 AM PDT -ExperimentsInHonesty,2020-04-19T18:38:47Z,- ExperimentsInHonesty opened issue: [445](https://github.com/hackforla/website/issues/445) at 2020-04-19 11:38 AM PDT -ExperimentsInHonesty,2020-04-19T18:41:08Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616204819) at 2020-04-19 11:41 AM PDT -ExperimentsInHonesty,2020-04-19T18:48:02Z,- ExperimentsInHonesty opened issue: [446](https://github.com/hackforla/website/issues/446) at 2020-04-19 11:48 AM PDT -ExperimentsInHonesty,2020-04-19T22:44:20Z,- ExperimentsInHonesty opened pull request: [451](https://github.com/hackforla/website/pull/451) at 2020-04-19 03:44 PM PDT -ExperimentsInHonesty,2020-04-19T22:45:25Z,- ExperimentsInHonesty pull request merged: [451](https://github.com/hackforla/website/pull/451#event-3249567867) at 2020-04-19 03:45 PM PDT -ExperimentsInHonesty,2020-04-19T23:32:14Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616243829) at 2020-04-19 04:32 PM PDT -ExperimentsInHonesty,2020-04-20T03:30:15Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616288864) at 2020-04-19 08:30 PM PDT -ExperimentsInHonesty,2020-04-20T19:20:21Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616757000) at 2020-04-20 12:20 PM PDT -ExperimentsInHonesty,2020-04-20T19:20:21Z,- ExperimentsInHonesty reopened issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616757000) at 2020-04-20 12:20 PM PDT -ExperimentsInHonesty,2020-04-20T19:39:44Z,- ExperimentsInHonesty opened pull request: [454](https://github.com/hackforla/website/pull/454) at 2020-04-20 12:39 PM PDT -ExperimentsInHonesty,2020-04-20T19:49:32Z,- ExperimentsInHonesty opened pull request: [455](https://github.com/hackforla/website/pull/455) at 2020-04-20 12:49 PM PDT -ExperimentsInHonesty,2020-04-20T20:55:40Z,- ExperimentsInHonesty pull request merged: [454](https://github.com/hackforla/website/pull/454#event-3253546794) at 2020-04-20 01:55 PM PDT -ExperimentsInHonesty,2020-04-20T21:25:42Z,- ExperimentsInHonesty opened pull request: [456](https://github.com/hackforla/website/pull/456) at 2020-04-20 02:25 PM PDT -ExperimentsInHonesty,2020-04-20T21:26:01Z,- ExperimentsInHonesty pull request merged: [456](https://github.com/hackforla/website/pull/456#event-3253642293) at 2020-04-20 02:26 PM PDT -ExperimentsInHonesty,2020-04-20T21:30:37Z,- ExperimentsInHonesty opened pull request: [457](https://github.com/hackforla/website/pull/457) at 2020-04-20 02:30 PM PDT -ExperimentsInHonesty,2020-04-20T21:30:53Z,- ExperimentsInHonesty pull request merged: [457](https://github.com/hackforla/website/pull/457#event-3253656484) at 2020-04-20 02:30 PM PDT -ExperimentsInHonesty,2020-04-20T23:56:47Z,- ExperimentsInHonesty opened issue: [458](https://github.com/hackforla/website/issues/458) at 2020-04-20 04:56 PM PDT -ExperimentsInHonesty,2020-04-20T23:57:31Z,- ExperimentsInHonesty commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-616871129) at 2020-04-20 04:57 PM PDT -ExperimentsInHonesty,2020-04-21T17:44:52Z,- ExperimentsInHonesty opened issue: [459](https://github.com/hackforla/website/issues/459) at 2020-04-21 10:44 AM PDT -ExperimentsInHonesty,2020-04-21T17:59:31Z,- ExperimentsInHonesty opened issue: [460](https://github.com/hackforla/website/issues/460) at 2020-04-21 10:59 AM PDT -ExperimentsInHonesty,2020-04-21T18:04:05Z,- ExperimentsInHonesty commented on pull request: [455](https://github.com/hackforla/website/pull/455#issuecomment-617323525) at 2020-04-21 11:04 AM PDT -ExperimentsInHonesty,2020-04-21T18:04:21Z,- ExperimentsInHonesty pull request merged: [455](https://github.com/hackforla/website/pull/455#event-3257277019) at 2020-04-21 11:04 AM PDT -ExperimentsInHonesty,2020-04-22T02:26:37Z,- ExperimentsInHonesty opened pull request: [461](https://github.com/hackforla/website/pull/461) at 2020-04-21 07:26 PM PDT -ExperimentsInHonesty,2020-04-22T02:28:30Z,- ExperimentsInHonesty pull request merged: [461](https://github.com/hackforla/website/pull/461#event-3258569911) at 2020-04-21 07:28 PM PDT -ExperimentsInHonesty,2020-04-23T23:02:17Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-618714584) at 2020-04-23 04:02 PM PDT -ExperimentsInHonesty,2020-04-24T18:33:16Z,- ExperimentsInHonesty opened issue: [463](https://github.com/hackforla/website/issues/463) at 2020-04-24 11:33 AM PDT -ExperimentsInHonesty,2020-04-24T21:24:02Z,- ExperimentsInHonesty submitted pull request review: [464](https://github.com/hackforla/website/pull/464#pullrequestreview-400279509) at 2020-04-24 02:24 PM PDT -ExperimentsInHonesty,2020-04-26T15:39:07Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-619571706) at 2020-04-26 08:39 AM PDT -ExperimentsInHonesty,2020-04-26T15:45:00Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-619572580) at 2020-04-26 08:45 AM PDT -ExperimentsInHonesty,2020-04-26T16:03:16Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-619575488) at 2020-04-26 09:03 AM PDT -ExperimentsInHonesty,2020-04-26T16:20:10Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619578711) at 2020-04-26 09:20 AM PDT -ExperimentsInHonesty,2020-04-26T16:28:00Z,- ExperimentsInHonesty opened issue: [466](https://github.com/hackforla/website/issues/466) at 2020-04-26 09:28 AM PDT -ExperimentsInHonesty,2020-04-26T16:29:49Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-619580473) at 2020-04-26 09:29 AM PDT -ExperimentsInHonesty,2020-04-26T17:02:51Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-619585940) at 2020-04-26 10:02 AM PDT -ExperimentsInHonesty,2020-04-26T17:59:59Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619595759) at 2020-04-26 10:59 AM PDT -ExperimentsInHonesty,2020-05-01T01:58:12Z,- ExperimentsInHonesty assigned to issue: [478](https://github.com/hackforla/website/issues/478) at 2020-04-30 06:58 PM PDT -ExperimentsInHonesty,2020-05-01T15:40:06Z,- ExperimentsInHonesty closed issue as completed: [478](https://github.com/hackforla/website/issues/478#event-3293556112) at 2020-05-01 08:40 AM PDT -ExperimentsInHonesty,2020-05-01T19:24:59Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-622527534) at 2020-05-01 12:24 PM PDT -ExperimentsInHonesty,2020-05-03T16:19:48Z,- ExperimentsInHonesty commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-623134640) at 2020-05-03 09:19 AM PDT -ExperimentsInHonesty,2020-05-03T16:23:00Z,- ExperimentsInHonesty commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-623135202) at 2020-05-03 09:23 AM PDT -ExperimentsInHonesty,2020-05-03T16:35:56Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-623138472) at 2020-05-03 09:35 AM PDT -ExperimentsInHonesty,2020-05-03T16:39:12Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-623139372) at 2020-05-03 09:39 AM PDT -ExperimentsInHonesty,2020-05-03T16:40:38Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-623139773) at 2020-05-03 09:40 AM PDT -ExperimentsInHonesty,2020-05-03T16:48:44Z,- ExperimentsInHonesty commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-623142043) at 2020-05-03 09:48 AM PDT -ExperimentsInHonesty,2020-05-03T16:59:42Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623144088) at 2020-05-03 09:59 AM PDT -ExperimentsInHonesty,2020-05-03T17:42:32Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:42 AM PDT -ExperimentsInHonesty,2020-05-03T17:43:20Z,- ExperimentsInHonesty assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:43 AM PDT -ExperimentsInHonesty,2020-05-03T17:47:11Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623151315) at 2020-05-03 10:47 AM PDT -ExperimentsInHonesty,2020-05-03T18:02:59Z,- ExperimentsInHonesty commented on issue: [477](https://github.com/hackforla/website/issues/477#issuecomment-623153799) at 2020-05-03 11:02 AM PDT -ExperimentsInHonesty,2020-05-03T18:39:55Z,- ExperimentsInHonesty assigned to issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-03 11:39 AM PDT -ExperimentsInHonesty,2020-05-03T18:57:10Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623162463) at 2020-05-03 11:57 AM PDT -ExperimentsInHonesty,2020-05-03T19:56:27Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623171324) at 2020-05-03 12:56 PM PDT -ExperimentsInHonesty,2020-05-03T22:08:49Z,- ExperimentsInHonesty opened pull request: [489](https://github.com/hackforla/website/pull/489) at 2020-05-03 03:08 PM PDT -ExperimentsInHonesty,2020-05-03T22:09:02Z,- ExperimentsInHonesty pull request merged: [489](https://github.com/hackforla/website/pull/489#event-3297889513) at 2020-05-03 03:09 PM PDT -ExperimentsInHonesty,2020-05-03T22:12:18Z,- ExperimentsInHonesty opened pull request: [490](https://github.com/hackforla/website/pull/490) at 2020-05-03 03:12 PM PDT -ExperimentsInHonesty,2020-05-03T22:12:29Z,- ExperimentsInHonesty pull request merged: [490](https://github.com/hackforla/website/pull/490#event-3297892034) at 2020-05-03 03:12 PM PDT -ExperimentsInHonesty,2020-05-04T00:01:31Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623205697) at 2020-05-03 05:01 PM PDT -ExperimentsInHonesty,2020-05-04T00:27:57Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623209767) at 2020-05-03 05:27 PM PDT -ExperimentsInHonesty,2020-05-05T05:55:18Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-623869169) at 2020-05-04 10:55 PM PDT -ExperimentsInHonesty,2020-05-05T21:10:43Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-624308205) at 2020-05-05 02:10 PM PDT -ExperimentsInHonesty,2020-05-05T21:30:55Z,- ExperimentsInHonesty commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-624317259) at 2020-05-05 02:30 PM PDT -ExperimentsInHonesty,2020-05-05T21:31:58Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-624317757) at 2020-05-05 02:31 PM PDT -ExperimentsInHonesty,2020-05-05T21:34:43Z,- ExperimentsInHonesty unassigned from issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-05 02:34 PM PDT -ExperimentsInHonesty,2020-05-05T21:41:22Z,- ExperimentsInHonesty commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-624321808) at 2020-05-05 02:41 PM PDT -ExperimentsInHonesty,2020-05-05T21:43:11Z,- ExperimentsInHonesty commented on issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-624322591) at 2020-05-05 02:43 PM PDT -ExperimentsInHonesty,2020-05-05T21:52:19Z,- ExperimentsInHonesty commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-624326242) at 2020-05-05 02:52 PM PDT -ExperimentsInHonesty,2020-05-05T21:53:30Z,- ExperimentsInHonesty closed issue as completed: [351](https://github.com/hackforla/website/issues/351#event-3306158034) at 2020-05-05 02:53 PM PDT -ExperimentsInHonesty,2020-05-06T03:32:35Z,- ExperimentsInHonesty submitted pull request review: [498](https://github.com/hackforla/website/pull/498#pullrequestreview-406284727) at 2020-05-05 08:32 PM PDT -ExperimentsInHonesty,2020-05-06T23:29:43Z,- ExperimentsInHonesty commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-624943640) at 2020-05-06 04:29 PM PDT -ExperimentsInHonesty,2020-05-10T16:29:20Z,- ExperimentsInHonesty commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-626353607) at 2020-05-10 09:29 AM PDT -ExperimentsInHonesty,2020-05-10T16:33:18Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-626354165) at 2020-05-10 09:33 AM PDT -ExperimentsInHonesty,2020-05-10T16:35:53Z,- ExperimentsInHonesty commented on issue: [469](https://github.com/hackforla/website/issues/469#issuecomment-626354547) at 2020-05-10 09:35 AM PDT -ExperimentsInHonesty,2020-05-10T16:46:08Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-626356017) at 2020-05-10 09:46 AM PDT -ExperimentsInHonesty,2020-05-10T16:59:22Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-626357767) at 2020-05-10 09:59 AM PDT -ExperimentsInHonesty,2020-05-10T17:07:41Z,- ExperimentsInHonesty commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-626358930) at 2020-05-10 10:07 AM PDT -ExperimentsInHonesty,2020-05-10T17:12:18Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-626359512) at 2020-05-10 10:12 AM PDT -ExperimentsInHonesty,2020-05-10T17:16:50Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-626360065) at 2020-05-10 10:16 AM PDT -ExperimentsInHonesty,2020-05-10T17:29:30Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-626361698) at 2020-05-10 10:29 AM PDT -ExperimentsInHonesty,2020-05-12T20:14:52Z,- ExperimentsInHonesty closed issue by PR 508: [404](https://github.com/hackforla/website/issues/404#event-3329154471) at 2020-05-12 01:14 PM PDT -ExperimentsInHonesty,2020-05-12T20:32:03Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-627577426) at 2020-05-12 01:32 PM PDT -ExperimentsInHonesty,2020-05-12T20:37:35Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-627580295) at 2020-05-12 01:37 PM PDT -ExperimentsInHonesty,2020-05-12T20:52:16Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-627587371) at 2020-05-12 01:52 PM PDT -ExperimentsInHonesty,2020-05-13T04:27:57Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627737796) at 2020-05-12 09:27 PM PDT -ExperimentsInHonesty,2020-05-15T22:10:46Z,- ExperimentsInHonesty commented on issue: [520](https://github.com/hackforla/website/issues/520#issuecomment-629523244) at 2020-05-15 03:10 PM PDT -ExperimentsInHonesty,2020-05-17T16:45:19Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-629826724) at 2020-05-17 09:45 AM PDT -ExperimentsInHonesty,2020-05-17T16:49:48Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-629827304) at 2020-05-17 09:49 AM PDT -ExperimentsInHonesty,2020-05-17T17:00:09Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-629828662) at 2020-05-17 10:00 AM PDT -ExperimentsInHonesty,2020-05-17T17:15:47Z,- ExperimentsInHonesty commented on issue: [458](https://github.com/hackforla/website/issues/458#issuecomment-629830836) at 2020-05-17 10:15 AM PDT -ExperimentsInHonesty,2020-05-17T17:28:32Z,- ExperimentsInHonesty commented on issue: [429](https://github.com/hackforla/website/issues/429#issuecomment-629832603) at 2020-05-17 10:28 AM PDT -ExperimentsInHonesty,2020-05-17T17:37:06Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-629833759) at 2020-05-17 10:37 AM PDT -ExperimentsInHonesty,2020-05-17T17:48:39Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-629835310) at 2020-05-17 10:48 AM PDT -ExperimentsInHonesty,2020-05-17T17:53:42Z,- ExperimentsInHonesty commented on pull request: [513](https://github.com/hackforla/website/pull/513#issuecomment-629836014) at 2020-05-17 10:53 AM PDT -ExperimentsInHonesty,2020-05-17T17:54:03Z,- ExperimentsInHonesty closed issue as completed: [507](https://github.com/hackforla/website/issues/507#event-3344783472) at 2020-05-17 10:54 AM PDT -ExperimentsInHonesty,2020-05-17T17:54:44Z,- ExperimentsInHonesty commented on issue: [507](https://github.com/hackforla/website/issues/507#issuecomment-629836139) at 2020-05-17 10:54 AM PDT -ExperimentsInHonesty,2020-05-17T17:58:35Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629836660) at 2020-05-17 10:58 AM PDT -ExperimentsInHonesty,2020-05-17T18:19:37Z,- ExperimentsInHonesty assigned to issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619662073) at 2020-05-17 11:19 AM PDT -ExperimentsInHonesty,2020-05-17T18:20:17Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-629839429) at 2020-05-17 11:20 AM PDT -ExperimentsInHonesty,2020-05-17T18:23:56Z,- ExperimentsInHonesty commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-629839960) at 2020-05-17 11:23 AM PDT -ExperimentsInHonesty,2020-05-17T18:41:51Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-629842291) at 2020-05-17 11:41 AM PDT -ExperimentsInHonesty,2020-05-17T19:09:44Z,- ExperimentsInHonesty commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-629845649) at 2020-05-17 12:09 PM PDT -ExperimentsInHonesty,2020-05-17T19:43:36Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629850056) at 2020-05-17 12:43 PM PDT -ExperimentsInHonesty,2020-05-24T16:08:13Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633253337) at 2020-05-24 09:08 AM PDT -ExperimentsInHonesty,2020-05-24T16:09:49Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-633253499) at 2020-05-24 09:09 AM PDT -ExperimentsInHonesty,2020-05-24T16:12:40Z,- ExperimentsInHonesty commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-633253931) at 2020-05-24 09:12 AM PDT -ExperimentsInHonesty,2020-05-24T16:26:18Z,- ExperimentsInHonesty commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-633255772) at 2020-05-24 09:26 AM PDT -ExperimentsInHonesty,2020-05-24T16:26:21Z,- ExperimentsInHonesty reopened issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-633255772) at 2020-05-24 09:26 AM PDT -ExperimentsInHonesty,2020-05-24T16:47:44Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-633258700) at 2020-05-24 09:47 AM PDT -ExperimentsInHonesty,2020-05-24T16:54:27Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-633259590) at 2020-05-24 09:54 AM PDT -ExperimentsInHonesty,2020-05-24T16:56:33Z,- ExperimentsInHonesty commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-24 09:56 AM PDT -ExperimentsInHonesty,2020-05-24T16:58:32Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-633260121) at 2020-05-24 09:58 AM PDT -ExperimentsInHonesty,2020-05-24T17:19:59Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633262873) at 2020-05-24 10:19 AM PDT -ExperimentsInHonesty,2020-05-24T17:26:36Z,- ExperimentsInHonesty commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-633263685) at 2020-05-24 10:26 AM PDT -ExperimentsInHonesty,2020-05-24T17:36:48Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-633264947) at 2020-05-24 10:36 AM PDT -ExperimentsInHonesty,2020-05-24T17:39:36Z,- ExperimentsInHonesty commented on issue: [510](https://github.com/hackforla/website/issues/510#issuecomment-633265275) at 2020-05-24 10:39 AM PDT -ExperimentsInHonesty,2020-05-24T17:42:07Z,- ExperimentsInHonesty commented on issue: [532](https://github.com/hackforla/website/issues/532#issuecomment-633265578) at 2020-05-24 10:42 AM PDT -ExperimentsInHonesty,2020-05-24T17:50:18Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-633266581) at 2020-05-24 10:50 AM PDT -ExperimentsInHonesty,2020-05-24T17:55:34Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-633267290) at 2020-05-24 10:55 AM PDT -ExperimentsInHonesty,2020-05-24T18:03:42Z,- ExperimentsInHonesty commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-633268554) at 2020-05-24 11:03 AM PDT -ExperimentsInHonesty,2020-05-24T18:35:06Z,- ExperimentsInHonesty commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-633273914) at 2020-05-24 11:35 AM PDT -ExperimentsInHonesty,2020-05-24T19:30:29Z,- ExperimentsInHonesty commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:30 PM PDT -ExperimentsInHonesty,2020-05-24T19:33:06Z,- ExperimentsInHonesty commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283588) at 2020-05-24 12:33 PM PDT -ExperimentsInHonesty,2020-05-24T19:34:32Z,- ExperimentsInHonesty commented on issue: [273](https://github.com/hackforla/website/issues/273#issuecomment-633283842) at 2020-05-24 12:34 PM PDT -ExperimentsInHonesty,2020-05-24T20:05:23Z,- ExperimentsInHonesty commented on issue: [436](https://github.com/hackforla/website/issues/436#issuecomment-633289489) at 2020-05-24 01:05 PM PDT -ExperimentsInHonesty,2020-05-24T20:24:34Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-633293006) at 2020-05-24 01:24 PM PDT -ExperimentsInHonesty,2020-05-24T20:29:15Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-633293832) at 2020-05-24 01:29 PM PDT -ExperimentsInHonesty,2020-05-24T20:32:38Z,- ExperimentsInHonesty unassigned from issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-624322591) at 2020-05-24 01:32 PM PDT -ExperimentsInHonesty,2020-05-24T20:39:27Z,- ExperimentsInHonesty unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2020-05-24 01:39 PM PDT -ExperimentsInHonesty,2020-05-24T20:42:42Z,- ExperimentsInHonesty commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633296069) at 2020-05-24 01:42 PM PDT -ExperimentsInHonesty,2020-05-24T20:54:43Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-633298029) at 2020-05-24 01:54 PM PDT -ExperimentsInHonesty,2020-05-24T21:00:09Z,- ExperimentsInHonesty opened issue: [538](https://github.com/hackforla/website/issues/538) at 2020-05-24 02:00 PM PDT -ExperimentsInHonesty,2020-05-24T21:00:10Z,- ExperimentsInHonesty assigned to issue: [538](https://github.com/hackforla/website/issues/538) at 2020-05-24 02:00 PM PDT -ExperimentsInHonesty,2020-05-29T21:10:26Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636193710) at 2020-05-29 02:10 PM PDT -ExperimentsInHonesty,2020-05-31T16:47:42Z,- ExperimentsInHonesty commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636496646) at 2020-05-31 09:47 AM PDT -ExperimentsInHonesty,2020-05-31T17:11:29Z,- ExperimentsInHonesty commented on issue: [535](https://github.com/hackforla/website/issues/535#issuecomment-636499809) at 2020-05-31 10:11 AM PDT -ExperimentsInHonesty,2020-05-31T17:31:09Z,- ExperimentsInHonesty commented on issue: [533](https://github.com/hackforla/website/issues/533#issuecomment-636502418) at 2020-05-31 10:31 AM PDT -ExperimentsInHonesty,2020-05-31T17:31:44Z,- ExperimentsInHonesty commented on pull request: [544](https://github.com/hackforla/website/pull/544#issuecomment-636502487) at 2020-05-31 10:31 AM PDT -ExperimentsInHonesty,2020-05-31T17:32:42Z,- ExperimentsInHonesty closed issue by PR 549: [535](https://github.com/hackforla/website/issues/535#event-3390815155) at 2020-05-31 10:32 AM PDT -ExperimentsInHonesty,2020-05-31T18:16:42Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-636507722) at 2020-05-31 11:16 AM PDT -ExperimentsInHonesty,2020-05-31T18:23:17Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-636508622) at 2020-05-31 11:23 AM PDT -ExperimentsInHonesty,2020-05-31T18:40:14Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-636510959) at 2020-05-31 11:40 AM PDT -ExperimentsInHonesty,2020-05-31T19:21:36Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-636516102) at 2020-05-31 12:21 PM PDT -ExperimentsInHonesty,2020-05-31T20:47:16Z,- ExperimentsInHonesty opened issue: [553](https://github.com/hackforla/website/issues/553) at 2020-05-31 01:47 PM PDT -ExperimentsInHonesty,2020-05-31T20:58:15Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-636528966) at 2020-05-31 01:58 PM PDT -ExperimentsInHonesty,2020-06-01T00:21:46Z,- ExperimentsInHonesty commented on issue: [547](https://github.com/hackforla/website/issues/547#issuecomment-636554300) at 2020-05-31 05:21 PM PDT -ExperimentsInHonesty,2020-06-01T00:28:14Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-636555514) at 2020-05-31 05:28 PM PDT -ExperimentsInHonesty,2020-06-01T00:53:43Z,- ExperimentsInHonesty commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-636559681) at 2020-05-31 05:53 PM PDT -ExperimentsInHonesty,2020-06-01T01:14:55Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636564351) at 2020-05-31 06:14 PM PDT -ExperimentsInHonesty,2020-06-01T01:16:52Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636564831) at 2020-05-31 06:16 PM PDT -ExperimentsInHonesty,2020-06-01T01:29:23Z,- ExperimentsInHonesty commented on issue: [210](https://github.com/hackforla/website/issues/210#issuecomment-636567891) at 2020-05-31 06:29 PM PDT -ExperimentsInHonesty,2020-06-01T01:49:07Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-636571681) at 2020-05-31 06:49 PM PDT -ExperimentsInHonesty,2020-06-01T02:13:55Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-636576691) at 2020-05-31 07:13 PM PDT -ExperimentsInHonesty,2020-06-01T02:26:06Z,- ExperimentsInHonesty commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-636579295) at 2020-05-31 07:26 PM PDT -ExperimentsInHonesty,2020-06-01T02:32:25Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:32 PM PDT -ExperimentsInHonesty,2020-06-01T02:38:02Z,- ExperimentsInHonesty unassigned from issue: [102](https://github.com/hackforla/website/issues/102) at 2020-05-31 07:38 PM PDT -ExperimentsInHonesty,2020-06-01T02:38:11Z,- ExperimentsInHonesty commented on issue: [102](https://github.com/hackforla/website/issues/102#issuecomment-636581988) at 2020-05-31 07:38 PM PDT -ExperimentsInHonesty,2020-06-01T02:38:11Z,- ExperimentsInHonesty closed issue as completed: [102](https://github.com/hackforla/website/issues/102#event-3391306997) at 2020-05-31 07:38 PM PDT -ExperimentsInHonesty,2020-06-01T02:40:07Z,- ExperimentsInHonesty unassigned from issue: [116](https://github.com/hackforla/website/issues/116) at 2020-05-31 07:40 PM PDT -ExperimentsInHonesty,2020-06-01T02:47:21Z,- ExperimentsInHonesty unassigned from issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2020-05-31 07:47 PM PDT -ExperimentsInHonesty,2020-06-01T02:49:16Z,- ExperimentsInHonesty commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-636584674) at 2020-05-31 07:49 PM PDT -ExperimentsInHonesty,2020-06-01T02:53:27Z,- ExperimentsInHonesty commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-636585768) at 2020-05-31 07:53 PM PDT -ExperimentsInHonesty,2020-06-01T02:59:47Z,- ExperimentsInHonesty commented on issue: [216](https://github.com/hackforla/website/issues/216#issuecomment-636587212) at 2020-05-31 07:59 PM PDT -ExperimentsInHonesty,2020-06-01T02:59:47Z,- ExperimentsInHonesty closed issue as completed: [216](https://github.com/hackforla/website/issues/216#event-3391343463) at 2020-05-31 07:59 PM PDT -ExperimentsInHonesty,2020-06-01T03:04:02Z,- ExperimentsInHonesty commented on issue: [469](https://github.com/hackforla/website/issues/469#issuecomment-636588205) at 2020-05-31 08:04 PM PDT -ExperimentsInHonesty,2020-06-01T03:05:31Z,- ExperimentsInHonesty commented on issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-636588497) at 2020-05-31 08:05 PM PDT -ExperimentsInHonesty,2020-06-01T03:07:22Z,- ExperimentsInHonesty unassigned from issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-624317757) at 2020-05-31 08:07 PM PDT -ExperimentsInHonesty,2020-06-01T03:07:29Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-636588901) at 2020-05-31 08:07 PM PDT -ExperimentsInHonesty,2020-06-01T03:15:08Z,- ExperimentsInHonesty commented on issue: [492](https://github.com/hackforla/website/issues/492#issuecomment-636590339) at 2020-05-31 08:15 PM PDT -ExperimentsInHonesty,2020-06-01T03:15:08Z,- ExperimentsInHonesty closed issue as completed: [492](https://github.com/hackforla/website/issues/492#event-3391369271) at 2020-05-31 08:15 PM PDT -ExperimentsInHonesty,2020-06-01T03:17:10Z,- ExperimentsInHonesty unassigned from issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2020-05-31 08:17 PM PDT -ExperimentsInHonesty,2020-06-01T03:17:54Z,- ExperimentsInHonesty commented on issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-636590955) at 2020-05-31 08:17 PM PDT -ExperimentsInHonesty,2020-06-01T03:19:03Z,- ExperimentsInHonesty commented on issue: [119](https://github.com/hackforla/website/issues/119#issuecomment-636591216) at 2020-05-31 08:19 PM PDT -ExperimentsInHonesty,2020-06-01T03:19:03Z,- ExperimentsInHonesty closed issue as completed: [119](https://github.com/hackforla/website/issues/119#event-3391376624) at 2020-05-31 08:19 PM PDT -ExperimentsInHonesty,2020-06-01T15:59:25Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636940727) at 2020-06-01 08:59 AM PDT -ExperimentsInHonesty,2020-06-01T16:06:45Z,- ExperimentsInHonesty opened issue: [556](https://github.com/hackforla/website/issues/556) at 2020-06-01 09:06 AM PDT -ExperimentsInHonesty,2020-06-01T17:13:33Z,- ExperimentsInHonesty commented on issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-636994125) at 2020-06-01 10:13 AM PDT -ExperimentsInHonesty,2020-06-03T03:14:27Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-637927104) at 2020-06-02 08:14 PM PDT -ExperimentsInHonesty,2020-06-03T05:44:49Z,- ExperimentsInHonesty commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-637968020) at 2020-06-02 10:44 PM PDT -ExperimentsInHonesty,2020-06-03T20:42:53Z,- ExperimentsInHonesty submitted pull request review: [557](https://github.com/hackforla/website/pull/557#pullrequestreview-423914259) at 2020-06-03 01:42 PM PDT -ExperimentsInHonesty,2020-06-03T20:43:13Z,- ExperimentsInHonesty closed issue by PR 557: [551](https://github.com/hackforla/website/issues/551#event-3403980559) at 2020-06-03 01:43 PM PDT -ExperimentsInHonesty,2020-06-03T21:04:39Z,- ExperimentsInHonesty commented on issue: [551](https://github.com/hackforla/website/issues/551#issuecomment-638460742) at 2020-06-03 02:04 PM PDT -ExperimentsInHonesty,2020-06-03T21:25:40Z,- ExperimentsInHonesty opened issue: [558](https://github.com/hackforla/website/issues/558) at 2020-06-03 02:25 PM PDT -ExperimentsInHonesty,2020-06-03T21:31:23Z,- ExperimentsInHonesty opened issue: [559](https://github.com/hackforla/website/issues/559) at 2020-06-03 02:31 PM PDT -ExperimentsInHonesty,2020-06-07T16:11:46Z,- ExperimentsInHonesty commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-640241905) at 2020-06-07 09:11 AM PDT -ExperimentsInHonesty,2020-06-07T16:20:59Z,- ExperimentsInHonesty submitted pull request review: [565](https://github.com/hackforla/website/pull/565#pullrequestreview-425833744) at 2020-06-07 09:20 AM PDT -ExperimentsInHonesty,2020-06-07T16:21:10Z,- ExperimentsInHonesty closed issue by PR 565: [503](https://github.com/hackforla/website/issues/503#event-3416774223) at 2020-06-07 09:21 AM PDT -ExperimentsInHonesty,2020-06-07T16:25:46Z,- ExperimentsInHonesty commented on pull request: [564](https://github.com/hackforla/website/pull/564#issuecomment-640243787) at 2020-06-07 09:25 AM PDT -ExperimentsInHonesty,2020-06-07T16:32:06Z,- ExperimentsInHonesty commented on pull request: [554](https://github.com/hackforla/website/pull/554#issuecomment-640244650) at 2020-06-07 09:32 AM PDT -ExperimentsInHonesty,2020-06-07T17:00:22Z,- ExperimentsInHonesty commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-640248482) at 2020-06-07 10:00 AM PDT -ExperimentsInHonesty,2020-06-07T17:54:31Z,- ExperimentsInHonesty commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-07 10:54 AM PDT -ExperimentsInHonesty,2020-06-07T18:04:54Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-640256843) at 2020-06-07 11:04 AM PDT -ExperimentsInHonesty,2020-06-07T18:14:11Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-640257991) at 2020-06-07 11:14 AM PDT -ExperimentsInHonesty,2020-06-08T02:03:07Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 07:03 PM PDT -ExperimentsInHonesty,2020-06-08T02:37:00Z,- ExperimentsInHonesty closed issue as completed: [356](https://github.com/hackforla/website/issues/356#event-3417741696) at 2020-06-07 07:37 PM PDT -ExperimentsInHonesty,2020-06-08T02:38:30Z,- ExperimentsInHonesty closed issue as completed: [329](https://github.com/hackforla/website/issues/329#event-3417744981) at 2020-06-07 07:38 PM PDT -ExperimentsInHonesty,2020-06-08T02:39:59Z,- ExperimentsInHonesty closed issue as completed: [271](https://github.com/hackforla/website/issues/271#event-3417748249) at 2020-06-07 07:39 PM PDT -ExperimentsInHonesty,2020-06-08T05:26:33Z,- ExperimentsInHonesty assigned to issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 10:26 PM PDT -ExperimentsInHonesty,2020-06-08T05:46:51Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640383385) at 2020-06-07 10:46 PM PDT -ExperimentsInHonesty,2020-06-14T16:14:38Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-643788074) at 2020-06-14 09:14 AM PDT -ExperimentsInHonesty,2020-06-14T16:28:57Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-643789867) at 2020-06-14 09:28 AM PDT -ExperimentsInHonesty,2020-06-14T16:31:29Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-643790191) at 2020-06-14 09:31 AM PDT -ExperimentsInHonesty,2020-06-14T16:44:52Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-643791796) at 2020-06-14 09:44 AM PDT -ExperimentsInHonesty,2020-06-14T16:54:12Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-643792946) at 2020-06-14 09:54 AM PDT -ExperimentsInHonesty,2020-06-14T17:01:51Z,- ExperimentsInHonesty commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-643793829) at 2020-06-14 10:01 AM PDT -ExperimentsInHonesty,2020-06-14T17:01:51Z,- ExperimentsInHonesty closed issue as completed: [553](https://github.com/hackforla/website/issues/553#event-3441860968) at 2020-06-14 10:01 AM PDT -ExperimentsInHonesty,2020-06-14T17:11:08Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-643794859) at 2020-06-14 10:11 AM PDT -ExperimentsInHonesty,2020-06-14T17:16:33Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-14 10:16 AM PDT -ExperimentsInHonesty,2020-06-14T17:16:40Z,- ExperimentsInHonesty assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-14 10:16 AM PDT -ExperimentsInHonesty,2020-06-14T19:41:42Z,- ExperimentsInHonesty opened issue: [577](https://github.com/hackforla/website/issues/577) at 2020-06-14 12:41 PM PDT -ExperimentsInHonesty,2020-06-16T07:04:05Z,- ExperimentsInHonesty commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-644574424) at 2020-06-16 12:04 AM PDT -ExperimentsInHonesty,2020-06-21T00:21:26Z,- ExperimentsInHonesty commented on issue: [579](https://github.com/hackforla/website/issues/579#issuecomment-647060958) at 2020-06-20 05:21 PM PDT -ExperimentsInHonesty,2020-06-21T00:24:30Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-647061211) at 2020-06-20 05:24 PM PDT -ExperimentsInHonesty,2020-06-21T04:12:02Z,- ExperimentsInHonesty submitted pull request review: [580](https://github.com/hackforla/website/pull/580#pullrequestreview-434468161) at 2020-06-20 09:12 PM PDT -ExperimentsInHonesty,2020-06-21T04:12:09Z,- ExperimentsInHonesty closed issue by PR 580: [579](https://github.com/hackforla/website/issues/579#event-3465190436) at 2020-06-20 09:12 PM PDT -ExperimentsInHonesty,2020-06-21T04:21:49Z,- ExperimentsInHonesty submitted pull request review: [578](https://github.com/hackforla/website/pull/578#pullrequestreview-434468577) at 2020-06-20 09:21 PM PDT -ExperimentsInHonesty,2020-06-21T16:38:05Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-647151691) at 2020-06-21 09:38 AM PDT -ExperimentsInHonesty,2020-06-21T16:40:21Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647151991) at 2020-06-21 09:40 AM PDT -ExperimentsInHonesty,2020-06-21T16:42:02Z,- ExperimentsInHonesty commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-647152171) at 2020-06-21 09:42 AM PDT -ExperimentsInHonesty,2020-06-21T16:51:46Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-647153287) at 2020-06-21 09:51 AM PDT -ExperimentsInHonesty,2020-06-21T17:02:18Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-647154564) at 2020-06-21 10:02 AM PDT -ExperimentsInHonesty,2020-06-21T17:11:11Z,- ExperimentsInHonesty unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-643795535) at 2020-06-21 10:11 AM PDT -ExperimentsInHonesty,2020-06-21T17:14:33Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647155926) at 2020-06-21 10:14 AM PDT -ExperimentsInHonesty,2020-06-21T17:28:56Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-647157534) at 2020-06-21 10:28 AM PDT -ExperimentsInHonesty,2020-06-21T17:40:24Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-647158781) at 2020-06-21 10:40 AM PDT -ExperimentsInHonesty,2020-06-21T17:55:49Z,- ExperimentsInHonesty commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-647160477) at 2020-06-21 10:55 AM PDT -ExperimentsInHonesty,2020-06-21T18:07:58Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-647161750) at 2020-06-21 11:07 AM PDT -ExperimentsInHonesty,2020-06-21T18:18:32Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:18 AM PDT -ExperimentsInHonesty,2020-06-21T18:22:36Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647163409) at 2020-06-21 11:22 AM PDT -ExperimentsInHonesty,2020-06-21T18:50:19Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-647166426) at 2020-06-21 11:50 AM PDT -ExperimentsInHonesty,2020-06-21T22:51:26Z,- ExperimentsInHonesty commented on issue: [292](https://github.com/hackforla/website/issues/292#issuecomment-647191790) at 2020-06-21 03:51 PM PDT -ExperimentsInHonesty,2020-06-21T22:51:26Z,- ExperimentsInHonesty closed issue as completed: [292](https://github.com/hackforla/website/issues/292#event-3465917885) at 2020-06-21 03:51 PM PDT -ExperimentsInHonesty,2020-06-24T02:49:01Z,- ExperimentsInHonesty assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-23 07:49 PM PDT -ExperimentsInHonesty,2020-06-24T02:49:44Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-648549775) at 2020-06-23 07:49 PM PDT -ExperimentsInHonesty,2020-06-24T02:59:37Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-648552632) at 2020-06-23 07:59 PM PDT -ExperimentsInHonesty,2020-06-24T03:05:33Z,- ExperimentsInHonesty commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-648554496) at 2020-06-23 08:05 PM PDT -ExperimentsInHonesty,2020-06-24T03:13:46Z,- ExperimentsInHonesty commented on pull request: [569](https://github.com/hackforla/website/pull/569#issuecomment-648556804) at 2020-06-23 08:13 PM PDT -ExperimentsInHonesty,2020-06-24T07:02:22Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-648634219) at 2020-06-24 12:02 AM PDT -ExperimentsInHonesty,2020-06-24T20:30:13Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-649054229) at 2020-06-24 01:30 PM PDT -ExperimentsInHonesty,2020-06-28T17:16:25Z,- ExperimentsInHonesty commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-650795811) at 2020-06-28 10:16 AM PDT -ExperimentsInHonesty,2020-06-28T17:19:07Z,- ExperimentsInHonesty commented on issue: [559](https://github.com/hackforla/website/issues/559#issuecomment-650796142) at 2020-06-28 10:19 AM PDT -ExperimentsInHonesty,2020-06-28T17:34:20Z,- ExperimentsInHonesty commented on pull request: [586](https://github.com/hackforla/website/pull/586#issuecomment-650797943) at 2020-06-28 10:34 AM PDT -ExperimentsInHonesty,2020-06-28T17:36:57Z,- ExperimentsInHonesty reopened issue: [254](https://github.com/hackforla/website/issues/254#event-3490525008) at 2020-06-28 10:36 AM PDT -ExperimentsInHonesty,2020-06-28T17:55:10Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-650800318) at 2020-06-28 10:55 AM PDT -ExperimentsInHonesty,2020-06-28T17:59:34Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-650800803) at 2020-06-28 10:59 AM PDT -ExperimentsInHonesty,2020-06-28T18:07:03Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-650801594) at 2020-06-28 11:07 AM PDT -ExperimentsInHonesty,2020-06-28T19:11:30Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650808846) at 2020-06-28 12:11 PM PDT -ExperimentsInHonesty,2020-06-28T19:18:41Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-650809615) at 2020-06-28 12:18 PM PDT -ExperimentsInHonesty,2020-07-02T03:52:56Z,- ExperimentsInHonesty opened issue: [591](https://github.com/hackforla/website/issues/591) at 2020-07-01 08:52 PM PDT -ExperimentsInHonesty,2020-07-05T16:11:22Z,- ExperimentsInHonesty commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-653907205) at 2020-07-05 09:11 AM PDT -ExperimentsInHonesty,2020-07-05T16:15:03Z,- ExperimentsInHonesty commented on issue: [494](https://github.com/hackforla/website/issues/494#issuecomment-653907618) at 2020-07-05 09:15 AM PDT -ExperimentsInHonesty,2020-07-05T16:15:08Z,- ExperimentsInHonesty closed issue as completed: [494](https://github.com/hackforla/website/issues/494#event-3513458415) at 2020-07-05 09:15 AM PDT -ExperimentsInHonesty,2020-07-05T16:37:15Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-653910055) at 2020-07-05 09:37 AM PDT -ExperimentsInHonesty,2020-07-05T16:43:20Z,- ExperimentsInHonesty unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-07-05 09:43 AM PDT -ExperimentsInHonesty,2020-07-05T16:47:23Z,- ExperimentsInHonesty commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-653911124) at 2020-07-05 09:47 AM PDT -ExperimentsInHonesty,2020-07-05T17:48:29Z,- ExperimentsInHonesty assigned to issue: [555](https://github.com/hackforla/website/issues/555) at 2020-07-05 10:48 AM PDT -ExperimentsInHonesty,2020-07-05T19:08:45Z,- ExperimentsInHonesty opened issue: [593](https://github.com/hackforla/website/issues/593) at 2020-07-05 12:08 PM PDT -ExperimentsInHonesty,2020-07-05T23:37:38Z,- ExperimentsInHonesty opened issue: [595](https://github.com/hackforla/website/issues/595) at 2020-07-05 04:37 PM PDT -ExperimentsInHonesty,2020-07-05T23:41:09Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653954106) at 2020-07-05 04:41 PM PDT -ExperimentsInHonesty,2020-07-06T00:39:11Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653961991) at 2020-07-05 05:39 PM PDT -ExperimentsInHonesty,2020-07-09T22:30:27Z,- ExperimentsInHonesty opened issue: [599](https://github.com/hackforla/website/issues/599) at 2020-07-09 03:30 PM PDT -ExperimentsInHonesty,2020-07-10T04:19:07Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656473589) at 2020-07-09 09:19 PM PDT -ExperimentsInHonesty,2020-07-10T04:26:24Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656475187) at 2020-07-09 09:26 PM PDT -ExperimentsInHonesty,2020-07-10T20:35:30Z,- ExperimentsInHonesty assigned to issue: [601](https://github.com/hackforla/website/issues/601) at 2020-07-10 01:35 PM PDT -ExperimentsInHonesty,2020-07-12T01:51:36Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657161440) at 2020-07-11 06:51 PM PDT -ExperimentsInHonesty,2020-07-12T02:00:59Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657162174) at 2020-07-11 07:00 PM PDT -ExperimentsInHonesty,2020-07-12T02:02:27Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-657162295) at 2020-07-11 07:02 PM PDT -ExperimentsInHonesty,2020-07-12T17:54:43Z,- ExperimentsInHonesty commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-657254996) at 2020-07-12 10:54 AM PDT -ExperimentsInHonesty,2020-07-12T18:08:59Z,- ExperimentsInHonesty commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-657256359) at 2020-07-12 11:08 AM PDT -ExperimentsInHonesty,2020-07-12T18:13:37Z,- ExperimentsInHonesty commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-657256872) at 2020-07-12 11:13 AM PDT -ExperimentsInHonesty,2020-07-12T18:25:53Z,- ExperimentsInHonesty commented on pull request: [604](https://github.com/hackforla/website/pull/604#issuecomment-657258143) at 2020-07-12 11:25 AM PDT -ExperimentsInHonesty,2020-07-17T17:32:18Z,- ExperimentsInHonesty commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-660243767) at 2020-07-17 10:32 AM PDT -ExperimentsInHonesty,2020-07-19T18:15:23Z,- ExperimentsInHonesty assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660685905) at 2020-07-19 11:15 AM PDT -ExperimentsInHonesty,2020-07-19T19:00:20Z,- ExperimentsInHonesty assigned to issue: [614](https://github.com/hackforla/website/issues/614) at 2020-07-19 12:00 PM PDT -ExperimentsInHonesty,2020-07-19T19:16:02Z,- ExperimentsInHonesty commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660693851) at 2020-07-19 12:16 PM PDT -ExperimentsInHonesty,2020-07-19T19:16:24Z,- ExperimentsInHonesty unassigned from issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-660693851) at 2020-07-19 12:16 PM PDT -ExperimentsInHonesty,2020-07-19T19:30:53Z,- ExperimentsInHonesty commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-660696020) at 2020-07-19 12:30 PM PDT -ExperimentsInHonesty,2020-07-19T19:36:32Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-660696676) at 2020-07-19 12:36 PM PDT -ExperimentsInHonesty,2020-07-19T20:02:32Z,- ExperimentsInHonesty unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660693919) at 2020-07-19 01:02 PM PDT -ExperimentsInHonesty,2020-07-21T05:15:03Z,- ExperimentsInHonesty commented on issue: [591](https://github.com/hackforla/website/issues/591#issuecomment-661638051) at 2020-07-20 10:15 PM PDT -ExperimentsInHonesty,2020-07-21T05:15:03Z,- ExperimentsInHonesty closed issue as completed: [591](https://github.com/hackforla/website/issues/591#event-3569171445) at 2020-07-20 10:15 PM PDT -ExperimentsInHonesty,2020-07-24T15:19:36Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663591301) at 2020-07-24 08:19 AM PDT -ExperimentsInHonesty,2020-07-24T15:31:16Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663596800) at 2020-07-24 08:31 AM PDT -ExperimentsInHonesty,2020-07-24T15:33:32Z,- ExperimentsInHonesty commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-663597870) at 2020-07-24 08:33 AM PDT -ExperimentsInHonesty,2020-07-25T00:37:08Z,- ExperimentsInHonesty opened issue: [632](https://github.com/hackforla/website/issues/632) at 2020-07-24 05:37 PM PDT -ExperimentsInHonesty,2020-07-25T01:24:49Z,- ExperimentsInHonesty assigned to issue: [632](https://github.com/hackforla/website/issues/632) at 2020-07-24 06:24 PM PDT -ExperimentsInHonesty,2020-07-25T21:48:25Z,- ExperimentsInHonesty commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663909528) at 2020-07-25 02:48 PM PDT -ExperimentsInHonesty,2020-07-26T16:28:30Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-664009612) at 2020-07-26 09:28 AM PDT -ExperimentsInHonesty,2020-07-26T16:30:36Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-664009946) at 2020-07-26 09:30 AM PDT -ExperimentsInHonesty,2020-07-26T18:32:57Z,- ExperimentsInHonesty assigned to issue: [642](https://github.com/hackforla/website/issues/642) at 2020-07-26 11:32 AM PDT -ExperimentsInHonesty,2020-07-26T19:21:18Z,- ExperimentsInHonesty commented on issue: [294](https://github.com/hackforla/website/issues/294#issuecomment-664029448) at 2020-07-26 12:21 PM PDT -ExperimentsInHonesty,2020-07-26T19:21:18Z,- ExperimentsInHonesty closed issue as completed: [294](https://github.com/hackforla/website/issues/294#event-3587337395) at 2020-07-26 12:21 PM PDT -ExperimentsInHonesty,2020-07-26T19:49:05Z,- ExperimentsInHonesty assigned to issue: [387](https://github.com/hackforla/website/issues/387) at 2020-07-26 12:49 PM PDT -ExperimentsInHonesty,2020-07-26T20:30:58Z,- ExperimentsInHonesty commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-664036474) at 2020-07-26 01:30 PM PDT -ExperimentsInHonesty,2020-07-29T03:05:08Z,- ExperimentsInHonesty submitted pull request review: [640](https://github.com/hackforla/website/pull/640#pullrequestreview-457163085) at 2020-07-28 08:05 PM PDT -ExperimentsInHonesty,2020-07-29T03:37:21Z,- ExperimentsInHonesty commented on issue: [643](https://github.com/hackforla/website/issues/643#issuecomment-665411749) at 2020-07-28 08:37 PM PDT -ExperimentsInHonesty,2020-07-29T03:37:24Z,- ExperimentsInHonesty closed issue as completed: [643](https://github.com/hackforla/website/issues/643#event-3597114688) at 2020-07-28 08:37 PM PDT -ExperimentsInHonesty,2020-07-29T22:09:20Z,- ExperimentsInHonesty assigned to issue: [658](https://github.com/hackforla/website/issues/658) at 2020-07-29 03:09 PM PDT -ExperimentsInHonesty,2020-07-29T23:54:41Z,- ExperimentsInHonesty opened issue: [659](https://github.com/hackforla/website/issues/659) at 2020-07-29 04:54 PM PDT -ExperimentsInHonesty,2020-07-30T04:14:45Z,- ExperimentsInHonesty commented on issue: [658](https://github.com/hackforla/website/issues/658#issuecomment-666091824) at 2020-07-29 09:14 PM PDT -ExperimentsInHonesty,2020-07-30T04:17:08Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666092836) at 2020-07-29 09:17 PM PDT -ExperimentsInHonesty,2020-08-04T01:07:41Z,- ExperimentsInHonesty submitted pull request review: [666](https://github.com/hackforla/website/pull/666#pullrequestreview-460430908) at 2020-08-03 06:07 PM PDT -ExperimentsInHonesty,2020-08-04T01:07:55Z,- ExperimentsInHonesty closed issue by PR 665: [607](https://github.com/hackforla/website/issues/607#event-3618106413) at 2020-08-03 06:07 PM PDT -ExperimentsInHonesty,2020-08-05T03:04:36Z,- ExperimentsInHonesty unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-666929388) at 2020-08-04 08:04 PM PDT -ExperimentsInHonesty,2020-08-07T20:20:25Z,- ExperimentsInHonesty commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-670697065) at 2020-08-07 01:20 PM PDT -ExperimentsInHonesty,2020-08-08T21:32:02Z,- ExperimentsInHonesty commented on issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-670976011) at 2020-08-08 02:32 PM PDT -ExperimentsInHonesty,2020-08-08T21:32:02Z,- ExperimentsInHonesty reopened issue: [659](https://github.com/hackforla/website/issues/659#issuecomment-670976011) at 2020-08-08 02:32 PM PDT -ExperimentsInHonesty,2020-08-08T21:46:02Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-670977197) at 2020-08-08 02:46 PM PDT -ExperimentsInHonesty,2020-08-09T17:32:08Z,- ExperimentsInHonesty unassigned from issue: [642](https://github.com/hackforla/website/issues/642) at 2020-08-09 10:32 AM PDT -ExperimentsInHonesty,2020-08-09T17:49:37Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-671081487) at 2020-08-09 10:49 AM PDT -ExperimentsInHonesty,2020-08-12T21:22:32Z,- ExperimentsInHonesty commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-673117794) at 2020-08-12 02:22 PM PDT -ExperimentsInHonesty,2020-08-16T02:36:03Z,- ExperimentsInHonesty commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-674469787) at 2020-08-15 07:36 PM PDT -ExperimentsInHonesty,2020-08-16T04:48:49Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-674478603) at 2020-08-15 09:48 PM PDT -ExperimentsInHonesty,2020-08-16T16:41:05Z,- ExperimentsInHonesty commented on issue: [645](https://github.com/hackforla/website/issues/645#issuecomment-674548845) at 2020-08-16 09:41 AM PDT -ExperimentsInHonesty,2020-08-16T16:41:17Z,- ExperimentsInHonesty commented on pull request: [675](https://github.com/hackforla/website/pull/675#issuecomment-674548868) at 2020-08-16 09:41 AM PDT -ExperimentsInHonesty,2020-08-16T16:47:06Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674549558) at 2020-08-16 09:47 AM PDT -ExperimentsInHonesty,2020-08-16T19:25:58Z,- ExperimentsInHonesty assigned to issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-664397854) at 2020-08-16 12:25 PM PDT -ExperimentsInHonesty,2020-08-19T00:47:15Z,- ExperimentsInHonesty opened issue: [703](https://github.com/hackforla/website/issues/703) at 2020-08-18 05:47 PM PDT -ExperimentsInHonesty,2020-08-19T23:06:05Z,- ExperimentsInHonesty commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-676800941) at 2020-08-19 04:06 PM PDT -ExperimentsInHonesty,2020-08-19T23:09:27Z,- ExperimentsInHonesty commented on pull request: [681](https://github.com/hackforla/website/pull/681#issuecomment-676801962) at 2020-08-19 04:09 PM PDT -ExperimentsInHonesty,2020-08-22T22:00:35Z,- ExperimentsInHonesty submitted pull request review: [697](https://github.com/hackforla/website/pull/697#pullrequestreview-472965092) at 2020-08-22 03:00 PM PDT -ExperimentsInHonesty,2020-08-22T22:11:59Z,- ExperimentsInHonesty submitted pull request review: [696](https://github.com/hackforla/website/pull/696#pullrequestreview-472965522) at 2020-08-22 03:11 PM PDT -ExperimentsInHonesty,2020-08-23T00:02:13Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678711114) at 2020-08-22 05:02 PM PDT -ExperimentsInHonesty,2020-08-23T00:51:19Z,- ExperimentsInHonesty assigned to issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-678711114) at 2020-08-22 05:51 PM PDT -ExperimentsInHonesty,2020-08-23T18:41:24Z,- ExperimentsInHonesty submitted pull request review: [697](https://github.com/hackforla/website/pull/697#pullrequestreview-473033404) at 2020-08-23 11:41 AM PDT -ExperimentsInHonesty,2020-08-23T18:41:40Z,- ExperimentsInHonesty closed issue by PR 697: [692](https://github.com/hackforla/website/issues/692#event-3683046952) at 2020-08-23 11:41 AM PDT -ExperimentsInHonesty,2020-08-23T18:58:46Z,- ExperimentsInHonesty opened issue: [699](https://github.com/hackforla/website/issues/699) at 2020-08-23 11:58 AM PDT -ExperimentsInHonesty,2020-08-23T22:00:30Z,- ExperimentsInHonesty commented on pull request: [685](https://github.com/hackforla/website/pull/685#issuecomment-678830181) at 2020-08-23 03:00 PM PDT -ExperimentsInHonesty,2020-08-24T01:57:15Z,- ExperimentsInHonesty opened issue: [701](https://github.com/hackforla/website/issues/701) at 2020-08-23 06:57 PM PDT -ExperimentsInHonesty,2020-08-24T03:12:30Z,- ExperimentsInHonesty assigned to issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-678880864) at 2020-08-23 08:12 PM PDT -ExperimentsInHonesty,2020-08-24T19:19:29Z,- ExperimentsInHonesty commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679316669) at 2020-08-24 12:19 PM PDT -ExperimentsInHonesty,2020-08-24T21:48:55Z,- ExperimentsInHonesty reopened issue: [651](https://github.com/hackforla/website/issues/651#event-3664412839) at 2020-08-24 02:48 PM PDT -ExperimentsInHonesty,2020-08-24T21:49:14Z,- ExperimentsInHonesty commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679384177) at 2020-08-24 02:49 PM PDT -ExperimentsInHonesty,2020-08-24T22:09:47Z,- ExperimentsInHonesty commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679391882) at 2020-08-24 03:09 PM PDT -ExperimentsInHonesty,2020-08-25T01:10:01Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679443953) at 2020-08-24 06:10 PM PDT -ExperimentsInHonesty,2020-08-25T01:39:16Z,- ExperimentsInHonesty commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-679451846) at 2020-08-24 06:39 PM PDT -ExperimentsInHonesty,2020-08-25T01:49:04Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-24 06:49 PM PDT -ExperimentsInHonesty,2020-08-25T01:49:23Z,- ExperimentsInHonesty unassigned from issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-24 06:49 PM PDT -ExperimentsInHonesty,2020-08-25T02:01:50Z,- ExperimentsInHonesty commented on issue: [651](https://github.com/hackforla/website/issues/651#issuecomment-679457770) at 2020-08-24 07:01 PM PDT -ExperimentsInHonesty,2020-08-29T17:11:18Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683317391) at 2020-08-29 10:11 AM PDT -ExperimentsInHonesty,2020-08-30T02:37:12Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-683368271) at 2020-08-29 07:37 PM PDT -ExperimentsInHonesty,2020-08-30T18:11:25Z,- ExperimentsInHonesty commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-683452119) at 2020-08-30 11:11 AM PDT -ExperimentsInHonesty,2020-08-30T18:16:20Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-683452604) at 2020-08-30 11:16 AM PDT -ExperimentsInHonesty,2020-08-30T18:23:40Z,- ExperimentsInHonesty commented on issue: [684](https://github.com/hackforla/website/issues/684#issuecomment-683453389) at 2020-08-30 11:23 AM PDT -ExperimentsInHonesty,2020-08-30T18:33:38Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-683454473) at 2020-08-30 11:33 AM PDT -ExperimentsInHonesty,2020-08-30T18:38:20Z,- ExperimentsInHonesty commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-683454932) at 2020-08-30 11:38 AM PDT -ExperimentsInHonesty,2020-09-02T22:29:45Z,- ExperimentsInHonesty commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-686062209) at 2020-09-02 03:29 PM PDT -ExperimentsInHonesty,2020-09-04T20:35:58Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-687369890) at 2020-09-04 01:35 PM PDT -ExperimentsInHonesty,2020-09-04T22:35:02Z,- ExperimentsInHonesty commented on issue: [717](https://github.com/hackforla/website/issues/717#issuecomment-687437005) at 2020-09-04 03:35 PM PDT -ExperimentsInHonesty,2020-09-05T15:30:10Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-687625976) at 2020-09-05 08:30 AM PDT -ExperimentsInHonesty,2020-09-06T17:33:26Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-687850177) at 2020-09-06 10:33 AM PDT -ExperimentsInHonesty,2020-09-06T18:04:39Z,- ExperimentsInHonesty commented on pull request: [718](https://github.com/hackforla/website/pull/718#issuecomment-687857600) at 2020-09-06 11:04 AM PDT -ExperimentsInHonesty,2020-09-06T18:16:56Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-687860614) at 2020-09-06 11:16 AM PDT -ExperimentsInHonesty,2020-09-07T16:08:08Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-688414197) at 2020-09-07 09:08 AM PDT -ExperimentsInHonesty,2020-09-07T16:38:46Z,- ExperimentsInHonesty commented on issue: [162](https://github.com/hackforla/website/issues/162#issuecomment-688428430) at 2020-09-07 09:38 AM PDT -ExperimentsInHonesty,2020-09-08T20:30:16Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-689118667) at 2020-09-08 01:30 PM PDT -ExperimentsInHonesty,2020-09-12T16:40:52Z,- ExperimentsInHonesty submitted pull request review: [726](https://github.com/hackforla/website/pull/726#pullrequestreview-487240979) at 2020-09-12 09:40 AM PDT -ExperimentsInHonesty,2020-09-12T17:00:04Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691517085) at 2020-09-12 10:00 AM PDT -ExperimentsInHonesty,2020-09-13T17:18:01Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691698669) at 2020-09-13 10:18 AM PDT -ExperimentsInHonesty,2020-09-13T17:27:20Z,- ExperimentsInHonesty commented on issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-691699675) at 2020-09-13 10:27 AM PDT -ExperimentsInHonesty,2020-09-13T18:05:33Z,- ExperimentsInHonesty commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-691704080) at 2020-09-13 11:05 AM PDT -ExperimentsInHonesty,2020-09-13T19:30:04Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691714195) at 2020-09-13 12:30 PM PDT -ExperimentsInHonesty,2020-09-13T22:56:21Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-691737224) at 2020-09-13 03:56 PM PDT -ExperimentsInHonesty,2020-09-14T20:24:46Z,- ExperimentsInHonesty submitted pull request review: [729](https://github.com/hackforla/website/pull/729#pullrequestreview-488114108) at 2020-09-14 01:24 PM PDT -ExperimentsInHonesty,2020-09-14T20:37:10Z,- ExperimentsInHonesty opened issue: [733](https://github.com/hackforla/website/issues/733) at 2020-09-14 01:37 PM PDT -ExperimentsInHonesty,2020-09-15T05:19:04Z,- ExperimentsInHonesty submitted pull request review: [724](https://github.com/hackforla/website/pull/724#pullrequestreview-488331837) at 2020-09-14 10:19 PM PDT -ExperimentsInHonesty,2020-09-17T23:32:35Z,- ExperimentsInHonesty assigned to issue: [209](https://github.com/hackforla/website/issues/209) at 2020-09-17 04:32 PM PDT -ExperimentsInHonesty,2020-09-18T02:23:31Z,- ExperimentsInHonesty commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694609797) at 2020-09-17 07:23 PM PDT -ExperimentsInHonesty,2020-09-19T01:33:24Z,- ExperimentsInHonesty opened issue: [738](https://github.com/hackforla/website/issues/738) at 2020-09-18 06:33 PM PDT -ExperimentsInHonesty,2020-09-19T01:44:00Z,- ExperimentsInHonesty opened issue: [739](https://github.com/hackforla/website/issues/739) at 2020-09-18 06:44 PM PDT -ExperimentsInHonesty,2020-09-19T15:56:52Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-695299465) at 2020-09-19 08:56 AM PDT -ExperimentsInHonesty,2020-09-20T17:25:02Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-695813065) at 2020-09-20 10:25 AM PDT -ExperimentsInHonesty,2020-09-20T17:36:48Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695814271) at 2020-09-20 10:36 AM PDT -ExperimentsInHonesty,2020-09-20T17:44:00Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-695814959) at 2020-09-20 10:44 AM PDT -ExperimentsInHonesty,2020-09-20T18:20:33Z,- ExperimentsInHonesty submitted pull request review: [737](https://github.com/hackforla/website/pull/737#pullrequestreview-492212784) at 2020-09-20 11:20 AM PDT -ExperimentsInHonesty,2020-09-20T18:22:00Z,- ExperimentsInHonesty submitted pull request review: [726](https://github.com/hackforla/website/pull/726#pullrequestreview-492212899) at 2020-09-20 11:22 AM PDT -ExperimentsInHonesty,2020-09-20T18:22:10Z,- ExperimentsInHonesty closed issue by PR 726: [690](https://github.com/hackforla/website/issues/690#event-3786300230) at 2020-09-20 11:22 AM PDT -ExperimentsInHonesty,2020-09-21T18:31:18Z,- ExperimentsInHonesty commented on pull request: [741](https://github.com/hackforla/website/pull/741#issuecomment-696292213) at 2020-09-21 11:31 AM PDT -ExperimentsInHonesty,2020-09-21T18:36:15Z,- ExperimentsInHonesty commented on issue: [616](https://github.com/hackforla/website/issues/616#issuecomment-696294935) at 2020-09-21 11:36 AM PDT -ExperimentsInHonesty,2020-09-21T22:23:47Z,- ExperimentsInHonesty assigned to issue: [744](https://github.com/hackforla/website/issues/744) at 2020-09-21 03:23 PM PDT -ExperimentsInHonesty,2020-09-27T17:17:18Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -ExperimentsInHonesty,2020-09-27T17:17:27Z,- ExperimentsInHonesty unassigned from issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -ExperimentsInHonesty,2020-09-27T17:17:50Z,- ExperimentsInHonesty assigned to issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:17 AM PDT -ExperimentsInHonesty,2020-09-27T17:19:01Z,- ExperimentsInHonesty unassigned from issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-699662384) at 2020-09-27 10:19 AM PDT -ExperimentsInHonesty,2020-09-27T17:26:19Z,- ExperimentsInHonesty commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-699663386) at 2020-09-27 10:26 AM PDT -ExperimentsInHonesty,2020-09-27T17:49:02Z,- ExperimentsInHonesty commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-699665894) at 2020-09-27 10:49 AM PDT -ExperimentsInHonesty,2020-09-27T18:05:22Z,- ExperimentsInHonesty opened issue: [751](https://github.com/hackforla/website/issues/751) at 2020-09-27 11:05 AM PDT -ExperimentsInHonesty,2020-09-27T18:59:29Z,- ExperimentsInHonesty opened issue: [752](https://github.com/hackforla/website/issues/752) at 2020-09-27 11:59 AM PDT -ExperimentsInHonesty,2020-09-27T19:19:29Z,- ExperimentsInHonesty commented on issue: [695](https://github.com/hackforla/website/issues/695#issuecomment-699676629) at 2020-09-27 12:19 PM PDT -ExperimentsInHonesty,2020-09-27T19:19:32Z,- ExperimentsInHonesty closed issue as completed: [695](https://github.com/hackforla/website/issues/695#event-3811928466) at 2020-09-27 12:19 PM PDT -ExperimentsInHonesty,2020-09-28T03:12:17Z,- ExperimentsInHonesty commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-699745319) at 2020-09-27 08:12 PM PDT -ExperimentsInHonesty,2020-10-01T05:05:06Z,- ExperimentsInHonesty commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-701886652) at 2020-09-30 10:05 PM PDT -ExperimentsInHonesty,2020-10-01T14:32:42Z,- ExperimentsInHonesty commented on issue: [748](https://github.com/hackforla/website/issues/748#issuecomment-702177313) at 2020-10-01 07:32 AM PDT -ExperimentsInHonesty,2020-10-04T01:29:26Z,- ExperimentsInHonesty submitted pull request review: [764](https://github.com/hackforla/website/pull/764#pullrequestreview-501584193) at 2020-10-03 06:29 PM PDT -ExperimentsInHonesty,2020-10-04T01:39:17Z,- ExperimentsInHonesty submitted pull request review: [763](https://github.com/hackforla/website/pull/763#pullrequestreview-501584498) at 2020-10-03 06:39 PM PDT -ExperimentsInHonesty,2020-10-04T01:48:42Z,- ExperimentsInHonesty submitted pull request review: [760](https://github.com/hackforla/website/pull/760#pullrequestreview-501584776) at 2020-10-03 06:48 PM PDT -ExperimentsInHonesty,2020-10-05T18:58:42Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-703825673) at 2020-10-05 11:58 AM PDT -ExperimentsInHonesty,2020-10-08T14:56:23Z,- ExperimentsInHonesty commented on issue: [745](https://github.com/hackforla/website/issues/745#issuecomment-705627231) at 2020-10-08 07:56 AM PDT -ExperimentsInHonesty,2020-10-08T23:40:11Z,- ExperimentsInHonesty reopened issue: [156](https://github.com/hackforla/website/issues/156#event-3857778129) at 2020-10-08 04:40 PM PDT -ExperimentsInHonesty,2020-10-11T17:30:55Z,- ExperimentsInHonesty commented on issue: [705](https://github.com/hackforla/website/issues/705#issuecomment-706738990) at 2020-10-11 10:30 AM PDT -ExperimentsInHonesty,2020-10-11T17:31:03Z,- ExperimentsInHonesty closed issue as completed: [705](https://github.com/hackforla/website/issues/705#event-3863904336) at 2020-10-11 10:31 AM PDT -ExperimentsInHonesty,2020-10-12T07:32:16Z,- ExperimentsInHonesty commented on issue: [751](https://github.com/hackforla/website/issues/751#issuecomment-706934480) at 2020-10-12 12:32 AM PDT -ExperimentsInHonesty,2020-10-12T08:48:42Z,- ExperimentsInHonesty commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-706978109) at 2020-10-12 01:48 AM PDT -ExperimentsInHonesty,2020-10-16T00:37:09Z,- ExperimentsInHonesty commented on pull request: [782](https://github.com/hackforla/website/pull/782#issuecomment-709661600) at 2020-10-15 05:37 PM PDT -ExperimentsInHonesty,2020-10-18T18:07:16Z,- ExperimentsInHonesty commented on issue: [780](https://github.com/hackforla/website/issues/780#issuecomment-711345122) at 2020-10-18 11:07 AM PDT -ExperimentsInHonesty,2020-10-18T18:16:43Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-711352398) at 2020-10-18 11:16 AM PDT -ExperimentsInHonesty,2020-10-22T22:16:29Z,- ExperimentsInHonesty closed issue as completed: [116](https://github.com/hackforla/website/issues/116#event-3911353157) at 2020-10-22 03:16 PM PDT -ExperimentsInHonesty,2020-10-23T18:58:59Z,- ExperimentsInHonesty assigned to issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:58 AM PDT -ExperimentsInHonesty,2020-10-23T18:59:05Z,- ExperimentsInHonesty unassigned from issue: [798](https://github.com/hackforla/website/issues/798) at 2020-10-23 11:59 AM PDT -ExperimentsInHonesty,2020-10-24T20:16:01Z,- ExperimentsInHonesty commented on issue: [311](https://github.com/hackforla/website/issues/311#issuecomment-716049520) at 2020-10-24 01:16 PM PDT -ExperimentsInHonesty,2020-10-24T20:16:08Z,- ExperimentsInHonesty closed issue as completed: [311](https://github.com/hackforla/website/issues/311#event-3917169440) at 2020-10-24 01:16 PM PDT -ExperimentsInHonesty,2020-10-24T23:50:19Z,- ExperimentsInHonesty opened issue: [800](https://github.com/hackforla/website/issues/800) at 2020-10-24 04:50 PM PDT -ExperimentsInHonesty,2020-10-25T17:06:14Z,- ExperimentsInHonesty commented on issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-716179253) at 2020-10-25 10:06 AM PDT -ExperimentsInHonesty,2020-10-25T17:08:20Z,- ExperimentsInHonesty assigned to issue: [615](https://github.com/hackforla/website/issues/615#issuecomment-716179253) at 2020-10-25 10:08 AM PDT -ExperimentsInHonesty,2020-10-25T17:16:28Z,- ExperimentsInHonesty commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-716180735) at 2020-10-25 10:16 AM PDT -ExperimentsInHonesty,2020-10-25T19:57:20Z,- ExperimentsInHonesty commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716202808) at 2020-10-25 12:57 PM PDT -ExperimentsInHonesty,2020-10-25T20:03:45Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-716203722) at 2020-10-25 01:03 PM PDT -ExperimentsInHonesty,2020-10-25T20:08:48Z,- ExperimentsInHonesty commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-716204383) at 2020-10-25 01:08 PM PDT -ExperimentsInHonesty,2020-10-29T01:53:43Z,- ExperimentsInHonesty commented on issue: [693](https://github.com/hackforla/website/issues/693#issuecomment-718308706) at 2020-10-28 06:53 PM PDT -ExperimentsInHonesty,2020-10-29T02:26:46Z,- ExperimentsInHonesty opened issue: [801](https://github.com/hackforla/website/issues/801) at 2020-10-28 07:26 PM PDT -ExperimentsInHonesty,2020-11-01T18:06:18Z,- ExperimentsInHonesty closed issue as completed: [699](https://github.com/hackforla/website/issues/699#event-3945438652) at 2020-11-01 10:06 AM PST -ExperimentsInHonesty,2020-11-01T19:32:58Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-720139598) at 2020-11-01 11:32 AM PST -ExperimentsInHonesty,2020-11-01T19:56:28Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-720142440) at 2020-11-01 11:56 AM PST -ExperimentsInHonesty,2020-11-03T00:28:06Z,- ExperimentsInHonesty commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-720803302) at 2020-11-02 04:28 PM PST -ExperimentsInHonesty,2020-11-03T00:28:16Z,- ExperimentsInHonesty assigned to issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-720803302) at 2020-11-02 04:28 PM PST -ExperimentsInHonesty,2020-11-07T02:20:01Z,- ExperimentsInHonesty opened issue: [804](https://github.com/hackforla/website/issues/804) at 2020-11-06 06:20 PM PST -ExperimentsInHonesty,2020-11-07T02:25:10Z,- ExperimentsInHonesty commented on issue: [680](https://github.com/hackforla/website/issues/680#issuecomment-723376425) at 2020-11-06 06:25 PM PST -ExperimentsInHonesty,2020-11-07T02:25:23Z,- ExperimentsInHonesty closed issue as completed: [680](https://github.com/hackforla/website/issues/680#event-3969475084) at 2020-11-06 06:25 PM PST -ExperimentsInHonesty,2020-11-07T22:01:53Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-723500649) at 2020-11-07 02:01 PM PST -ExperimentsInHonesty,2020-11-08T19:00:49Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-723651497) at 2020-11-08 11:00 AM PST -ExperimentsInHonesty,2020-11-08T19:09:58Z,- ExperimentsInHonesty commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-723652558) at 2020-11-08 11:09 AM PST -ExperimentsInHonesty,2020-11-08T19:15:57Z,- ExperimentsInHonesty commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-723653228) at 2020-11-08 11:15 AM PST -ExperimentsInHonesty,2020-11-10T06:04:45Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-724477512) at 2020-11-09 10:04 PM PST -ExperimentsInHonesty,2020-11-11T02:56:29Z,- ExperimentsInHonesty commented on issue: [614](https://github.com/hackforla/website/issues/614#issuecomment-725096406) at 2020-11-10 06:56 PM PST -ExperimentsInHonesty,2020-11-13T19:15:48Z,- ExperimentsInHonesty commented on issue: [800](https://github.com/hackforla/website/issues/800#issuecomment-726984053) at 2020-11-13 11:15 AM PST -ExperimentsInHonesty,2020-11-13T20:00:47Z,- ExperimentsInHonesty opened issue: [807](https://github.com/hackforla/website/issues/807) at 2020-11-13 12:00 PM PST -ExperimentsInHonesty,2020-11-15T18:15:55Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-727612718) at 2020-11-15 10:15 AM PST -ExperimentsInHonesty,2020-11-15T18:53:54Z,- ExperimentsInHonesty commented on issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-727618209) at 2020-11-15 10:53 AM PST -ExperimentsInHonesty,2020-11-16T20:44:53Z,- ExperimentsInHonesty commented on issue: [800](https://github.com/hackforla/website/issues/800#issuecomment-728318979) at 2020-11-16 12:44 PM PST -ExperimentsInHonesty,2020-11-22T21:06:26Z,- ExperimentsInHonesty commented on pull request: [808](https://github.com/hackforla/website/pull/808#issuecomment-731847161) at 2020-11-22 01:06 PM PST -ExperimentsInHonesty,2020-11-29T09:58:49Z,- ExperimentsInHonesty submitted pull request review: [814](https://github.com/hackforla/website/pull/814#pullrequestreview-540464067) at 2020-11-29 01:58 AM PST -ExperimentsInHonesty,2020-11-29T10:01:17Z,- ExperimentsInHonesty submitted pull request review: [812](https://github.com/hackforla/website/pull/812#pullrequestreview-540464248) at 2020-11-29 02:01 AM PST -ExperimentsInHonesty,2020-11-29T10:01:39Z,- ExperimentsInHonesty submitted pull request review: [812](https://github.com/hackforla/website/pull/812#pullrequestreview-540464273) at 2020-11-29 02:01 AM PST -ExperimentsInHonesty,2020-11-29T10:16:07Z,- ExperimentsInHonesty commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-735370664) at 2020-11-29 02:16 AM PST -ExperimentsInHonesty,2020-11-29T18:20:05Z,- ExperimentsInHonesty commented on issue: [657](https://github.com/hackforla/website/issues/657#issuecomment-735434450) at 2020-11-29 10:20 AM PST -ExperimentsInHonesty,2020-11-29T19:36:58Z,- ExperimentsInHonesty commented on issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-11-29 11:36 AM PST -ExperimentsInHonesty,2020-11-29T21:27:16Z,- ExperimentsInHonesty opened issue: [815](https://github.com/hackforla/website/issues/815) at 2020-11-29 01:27 PM PST -ExperimentsInHonesty,2020-12-02T05:09:46Z,- ExperimentsInHonesty commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-736994036) at 2020-12-01 09:09 PM PST -ExperimentsInHonesty,2020-12-05T00:24:52Z,- ExperimentsInHonesty opened issue: [826](https://github.com/hackforla/website/issues/826) at 2020-12-04 04:24 PM PST -ExperimentsInHonesty,2020-12-06T18:14:35Z,- ExperimentsInHonesty commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-739541206) at 2020-12-06 10:14 AM PST -ExperimentsInHonesty,2020-12-06T18:16:03Z,- ExperimentsInHonesty commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-739541407) at 2020-12-06 10:16 AM PST -ExperimentsInHonesty,2020-12-06T18:44:13Z,- ExperimentsInHonesty commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-739545032) at 2020-12-06 10:44 AM PST -ExperimentsInHonesty,2020-12-06T19:13:00Z,- ExperimentsInHonesty commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739548771) at 2020-12-06 11:13 AM PST -ExperimentsInHonesty,2020-12-08T21:12:10Z,- ExperimentsInHonesty commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-741039360) at 2020-12-08 01:12 PM PST -ExperimentsInHonesty,2020-12-08T21:31:18Z,- ExperimentsInHonesty unassigned from issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-657116227) at 2020-12-08 01:31 PM PST -ExperimentsInHonesty,2020-12-08T21:48:52Z,- ExperimentsInHonesty assigned to issue: [838](https://github.com/hackforla/website/issues/838) at 2020-12-08 01:48 PM PST -ExperimentsInHonesty,2020-12-08T21:51:25Z,- ExperimentsInHonesty unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -ExperimentsInHonesty,2020-12-09T04:26:17Z,- ExperimentsInHonesty commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-741518187) at 2020-12-08 08:26 PM PST -ExperimentsInHonesty,2020-12-13T20:41:00Z,- ExperimentsInHonesty submitted pull request review: [840](https://github.com/hackforla/website/pull/840#pullrequestreview-550957840) at 2020-12-13 12:41 PM PST -ExperimentsInHonesty,2020-12-14T20:54:25Z,- ExperimentsInHonesty commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704487) at 2020-12-14 12:54 PM PST -ExperimentsInHonesty,2020-12-14T20:55:09Z,- ExperimentsInHonesty commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-14 12:55 PM PST -ExperimentsInHonesty,2020-12-15T21:28:46Z,- ExperimentsInHonesty unassigned from issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-744062103) at 2020-12-15 01:28 PM PST -ExperimentsInHonesty,2020-12-16T03:26:51Z,- ExperimentsInHonesty closed issue by PR 850: [747](https://github.com/hackforla/website/issues/747#event-4117650703) at 2020-12-15 07:26 PM PST -ExperimentsInHonesty,2020-12-20T01:18:42Z,- ExperimentsInHonesty unassigned from issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2020-12-19 05:18 PM PST -ExperimentsInHonesty,2020-12-21T03:37:17Z,- ExperimentsInHonesty commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-748739013) at 2020-12-20 07:37 PM PST -ExperimentsInHonesty,2020-12-21T16:59:02Z,- ExperimentsInHonesty commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-749081693) at 2020-12-21 08:59 AM PST -ExperimentsInHonesty,2020-12-21T17:59:17Z,- ExperimentsInHonesty commented on issue: [804](https://github.com/hackforla/website/issues/804#issuecomment-749112577) at 2020-12-21 09:59 AM PST -ExperimentsInHonesty,2020-12-21T18:07:35Z,- ExperimentsInHonesty commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-749116587) at 2020-12-21 10:07 AM PST -ExperimentsInHonesty,2020-12-21T18:13:12Z,- ExperimentsInHonesty opened pull request: [858](https://github.com/hackforla/website/pull/858) at 2020-12-21 10:13 AM PST -ExperimentsInHonesty,2020-12-22T02:50:26Z,- ExperimentsInHonesty assigned to issue: [860](https://github.com/hackforla/website/issues/860) at 2020-12-21 06:50 PM PST -ExperimentsInHonesty,2020-12-23T03:35:43Z,- ExperimentsInHonesty pull request merged: [858](https://github.com/hackforla/website/pull/858#event-4142541311) at 2020-12-22 07:35 PM PST -ExperimentsInHonesty,2020-12-27T01:13:01Z,- ExperimentsInHonesty opened pull request: [872](https://github.com/hackforla/website/pull/872) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-27T01:13:09Z,- ExperimentsInHonesty pull request merged: [872](https://github.com/hackforla/website/pull/872#event-4149950993) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-27T01:13:40Z,- ExperimentsInHonesty opened pull request: [873](https://github.com/hackforla/website/pull/873) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-27T01:13:47Z,- ExperimentsInHonesty pull request merged: [873](https://github.com/hackforla/website/pull/873#event-4149951186) at 2020-12-26 05:13 PM PST -ExperimentsInHonesty,2020-12-30T03:02:03Z,- ExperimentsInHonesty opened issue: [891](https://github.com/hackforla/website/issues/891) at 2020-12-29 07:02 PM PST -ExperimentsInHonesty,2020-12-30T03:22:39Z,- ExperimentsInHonesty opened issue: [892](https://github.com/hackforla/website/issues/892) at 2020-12-29 07:22 PM PST -ExperimentsInHonesty,2020-12-30T04:03:04Z,- ExperimentsInHonesty opened issue: [893](https://github.com/hackforla/website/issues/893) at 2020-12-29 08:03 PM PST -ExperimentsInHonesty,2020-12-30T04:16:46Z,- ExperimentsInHonesty opened issue: [894](https://github.com/hackforla/website/issues/894) at 2020-12-29 08:16 PM PST -ExperimentsInHonesty,2020-12-30T04:19:58Z,- ExperimentsInHonesty opened issue: [895](https://github.com/hackforla/website/issues/895) at 2020-12-29 08:19 PM PST -ExperimentsInHonesty,2020-12-30T04:35:02Z,- ExperimentsInHonesty opened issue: [896](https://github.com/hackforla/website/issues/896) at 2020-12-29 08:35 PM PST -ExperimentsInHonesty,2021-01-03T20:31:07Z,- ExperimentsInHonesty commented on issue: [795](https://github.com/hackforla/website/issues/795#issuecomment-753671917) at 2021-01-03 12:31 PM PST -ExperimentsInHonesty,2021-01-03T20:31:07Z,- ExperimentsInHonesty closed issue as completed: [795](https://github.com/hackforla/website/issues/795#event-4162778114) at 2021-01-03 12:31 PM PST -ExperimentsInHonesty,2021-01-05T05:41:08Z,- ExperimentsInHonesty commented on issue: [312](https://github.com/hackforla/website/issues/312#issuecomment-754410501) at 2021-01-04 09:41 PM PST -ExperimentsInHonesty,2021-01-05T09:32:47Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-754520077) at 2021-01-05 01:32 AM PST -ExperimentsInHonesty,2021-01-05T22:37:31Z,- ExperimentsInHonesty assigned to issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 02:37 PM PST -ExperimentsInHonesty,2021-01-05T22:37:53Z,- ExperimentsInHonesty unassigned from issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 02:37 PM PST -ExperimentsInHonesty,2021-01-05T22:39:57Z,- ExperimentsInHonesty assigned to issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-752212279) at 2021-01-05 02:39 PM PST -ExperimentsInHonesty,2021-01-05T23:22:43Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-754961182) at 2021-01-05 03:22 PM PST -ExperimentsInHonesty,2021-01-06T01:03:03Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-754997620) at 2021-01-05 05:03 PM PST -ExperimentsInHonesty,2021-01-07T04:03:56Z,- ExperimentsInHonesty opened issue: [922](https://github.com/hackforla/website/issues/922) at 2021-01-06 08:03 PM PST -ExperimentsInHonesty,2021-01-10T21:30:17Z,- ExperimentsInHonesty assigned to issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2021-01-10 01:30 PM PST -ExperimentsInHonesty,2021-01-10T21:35:06Z,- ExperimentsInHonesty unassigned from issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-748641824) at 2021-01-10 01:35 PM PST -ExperimentsInHonesty,2021-01-10T21:42:18Z,- ExperimentsInHonesty assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-753667535) at 2021-01-10 01:42 PM PST -ExperimentsInHonesty,2021-01-10T21:43:52Z,- ExperimentsInHonesty commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-757548975) at 2021-01-10 01:43 PM PST -ExperimentsInHonesty,2021-01-10T22:02:54Z,- ExperimentsInHonesty commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757551615) at 2021-01-10 02:02 PM PST -ExperimentsInHonesty,2021-01-11T20:25:02Z,- ExperimentsInHonesty opened issue: [932](https://github.com/hackforla/website/issues/932) at 2021-01-11 12:25 PM PST -ExperimentsInHonesty,2021-01-13T18:15:19Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-759628170) at 2021-01-13 10:15 AM PST -ExperimentsInHonesty,2021-01-13T18:18:35Z,- ExperimentsInHonesty commented on issue: [893](https://github.com/hackforla/website/issues/893#issuecomment-759629981) at 2021-01-13 10:18 AM PST -ExperimentsInHonesty,2021-01-13T18:18:35Z,- ExperimentsInHonesty closed issue as completed: [893](https://github.com/hackforla/website/issues/893#event-4202590569) at 2021-01-13 10:18 AM PST -ExperimentsInHonesty,2021-01-13T20:31:46Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-759721995) at 2021-01-13 12:31 PM PST -ExperimentsInHonesty,2021-01-13T20:35:08Z,- ExperimentsInHonesty closed issue as completed: [915](https://github.com/hackforla/website/issues/915#event-4203112330) at 2021-01-13 12:35 PM PST -ExperimentsInHonesty,2021-01-18T17:53:46Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-762395117) at 2021-01-18 09:53 AM PST -ExperimentsInHonesty,2021-01-22T19:08:00Z,- ExperimentsInHonesty assigned to issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-757540777) at 2021-01-22 11:08 AM PST -ExperimentsInHonesty,2021-01-24T19:55:35Z,- ExperimentsInHonesty opened issue: [963](https://github.com/hackforla/website/issues/963) at 2021-01-24 11:55 AM PST -ExperimentsInHonesty,2021-01-24T20:36:51Z,- ExperimentsInHonesty assigned to issue: [964](https://github.com/hackforla/website/issues/964) at 2021-01-24 12:36 PM PST -ExperimentsInHonesty,2021-01-24T20:54:58Z,- ExperimentsInHonesty opened issue: [965](https://github.com/hackforla/website/issues/965) at 2021-01-24 12:54 PM PST -ExperimentsInHonesty,2021-01-24T20:55:50Z,- ExperimentsInHonesty assigned to issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-766430442) at 2021-01-24 12:55 PM PST -ExperimentsInHonesty,2021-01-24T20:57:20Z,- ExperimentsInHonesty assigned to issue: [879](https://github.com/hackforla/website/issues/879#issuecomment-766307893) at 2021-01-24 12:57 PM PST -ExperimentsInHonesty,2021-01-27T01:57:17Z,- ExperimentsInHonesty commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-767956609) at 2021-01-26 05:57 PM PST -ExperimentsInHonesty,2021-01-30T10:07:14Z,- ExperimentsInHonesty unassigned from issue: [965](https://github.com/hackforla/website/issues/965#issuecomment-766430442) at 2021-01-30 02:07 AM PST -ExperimentsInHonesty,2021-01-31T20:39:02Z,- ExperimentsInHonesty commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770446849) at 2021-01-31 12:39 PM PST -ExperimentsInHonesty,2021-01-31T20:39:03Z,- ExperimentsInHonesty closed issue as completed: [937](https://github.com/hackforla/website/issues/937#event-4270741609) at 2021-01-31 12:39 PM PST -ExperimentsInHonesty,2021-01-31T20:42:21Z,- ExperimentsInHonesty commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770447358) at 2021-01-31 12:42 PM PST -ExperimentsInHonesty,2021-01-31T20:42:21Z,- ExperimentsInHonesty reopened issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770447358) at 2021-01-31 12:42 PM PST -ExperimentsInHonesty,2021-01-31T20:42:24Z,- ExperimentsInHonesty closed issue as completed: [937](https://github.com/hackforla/website/issues/937#event-4270745002) at 2021-01-31 12:42 PM PST -ExperimentsInHonesty,2021-02-03T05:12:21Z,- ExperimentsInHonesty opened issue: [989](https://github.com/hackforla/website/issues/989) at 2021-02-02 09:12 PM PST -ExperimentsInHonesty,2021-02-03T05:28:31Z,- ExperimentsInHonesty opened issue: [990](https://github.com/hackforla/website/issues/990) at 2021-02-02 09:28 PM PST -ExperimentsInHonesty,2021-02-03T05:40:40Z,- ExperimentsInHonesty opened issue: [991](https://github.com/hackforla/website/issues/991) at 2021-02-02 09:40 PM PST -ExperimentsInHonesty,2021-02-03T17:11:44Z,- ExperimentsInHonesty unassigned from issue: [192](https://github.com/hackforla/website/issues/192) at 2021-02-03 09:11 AM PST -ExperimentsInHonesty,2021-02-03T17:53:49Z,- ExperimentsInHonesty commented on issue: [188](https://github.com/hackforla/website/issues/188#issuecomment-772701066) at 2021-02-03 09:53 AM PST -ExperimentsInHonesty,2021-02-03T17:58:27Z,- ExperimentsInHonesty closed issue as completed: [188](https://github.com/hackforla/website/issues/188#event-4286731206) at 2021-02-03 09:58 AM PST -ExperimentsInHonesty,2021-02-03T20:02:03Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-772784187) at 2021-02-03 12:02 PM PST -ExperimentsInHonesty,2021-02-03T23:55:19Z,- ExperimentsInHonesty opened issue: [999](https://github.com/hackforla/website/issues/999) at 2021-02-03 03:55 PM PST -ExperimentsInHonesty,2021-02-04T00:16:15Z,- ExperimentsInHonesty commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-772919366) at 2021-02-03 04:16 PM PST -ExperimentsInHonesty,2021-02-04T00:37:32Z,- ExperimentsInHonesty assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -ExperimentsInHonesty,2021-02-04T00:37:59Z,- ExperimentsInHonesty commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-772934983) at 2021-02-03 04:37 PM PST -ExperimentsInHonesty,2021-02-04T01:03:12Z,- ExperimentsInHonesty commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-772944550) at 2021-02-03 05:03 PM PST -ExperimentsInHonesty,2021-02-04T01:06:07Z,- ExperimentsInHonesty closed issue as completed: [984](https://github.com/hackforla/website/issues/984#event-4288330262) at 2021-02-03 05:06 PM PST -ExperimentsInHonesty,2021-02-04T01:09:17Z,- ExperimentsInHonesty commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-772946748) at 2021-02-03 05:09 PM PST -ExperimentsInHonesty,2021-02-08T01:54:04Z,- ExperimentsInHonesty commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774816933) at 2021-02-07 05:54 PM PST -ExperimentsInHonesty,2021-02-08T20:53:22Z,- ExperimentsInHonesty commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-775453646) at 2021-02-08 12:53 PM PST -ExperimentsInHonesty,2021-02-08T22:39:25Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585990030) at 2021-02-08 02:39 PM PST -ExperimentsInHonesty,2021-02-08T22:39:38Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585990160) at 2021-02-08 02:39 PM PST -ExperimentsInHonesty,2021-02-08T22:39:46Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585990254) at 2021-02-08 02:39 PM PST -ExperimentsInHonesty,2021-02-08T22:44:02Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585992667) at 2021-02-08 02:44 PM PST -ExperimentsInHonesty,2021-02-08T22:44:45Z,- ExperimentsInHonesty submitted pull request review: [1009](https://github.com/hackforla/website/pull/1009#pullrequestreview-585993054) at 2021-02-08 02:44 PM PST -ExperimentsInHonesty,2021-02-08T22:48:40Z,- ExperimentsInHonesty commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-775515422) at 2021-02-08 02:48 PM PST -ExperimentsInHonesty,2021-02-09T06:23:47Z,- ExperimentsInHonesty commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-775702069) at 2021-02-08 10:23 PM PST -ExperimentsInHonesty,2021-02-09T06:40:33Z,- ExperimentsInHonesty opened issue: [1024](https://github.com/hackforla/website/issues/1024) at 2021-02-08 10:40 PM PST -ExperimentsInHonesty,2021-02-10T19:50:06Z,- ExperimentsInHonesty closed issue as completed: [950](https://github.com/hackforla/website/issues/950#event-4316665487) at 2021-02-10 11:50 AM PST -ExperimentsInHonesty,2021-02-10T19:50:09Z,- ExperimentsInHonesty reopened issue: [950](https://github.com/hackforla/website/issues/950#event-4316665487) at 2021-02-10 11:50 AM PST -ExperimentsInHonesty,2021-02-10T20:11:53Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-776993156) at 2021-02-10 12:11 PM PST -ExperimentsInHonesty,2021-02-10T20:15:39Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-776996800) at 2021-02-10 12:15 PM PST -ExperimentsInHonesty,2021-02-10T20:17:01Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-776999473) at 2021-02-10 12:17 PM PST -ExperimentsInHonesty,2021-02-10T20:17:28Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777000366) at 2021-02-10 12:17 PM PST -ExperimentsInHonesty,2021-02-10T20:20:07Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777003286) at 2021-02-10 12:20 PM PST -ExperimentsInHonesty,2021-02-10T20:21:55Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777004278) at 2021-02-10 12:21 PM PST -ExperimentsInHonesty,2021-02-10T20:26:08Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777006641) at 2021-02-10 12:26 PM PST -ExperimentsInHonesty,2021-02-10T20:29:17Z,- ExperimentsInHonesty commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-777008362) at 2021-02-10 12:29 PM PST -ExperimentsInHonesty,2021-02-14T04:19:17Z,- ExperimentsInHonesty assigned to issue: [1040](https://github.com/hackforla/website/issues/1040) at 2021-02-13 08:19 PM PST -ExperimentsInHonesty,2021-02-14T18:18:04Z,- ExperimentsInHonesty opened issue: [1053](https://github.com/hackforla/website/issues/1053) at 2021-02-14 10:18 AM PST -ExperimentsInHonesty,2021-02-14T18:21:58Z,- ExperimentsInHonesty commented on issue: [1053](https://github.com/hackforla/website/issues/1053#issuecomment-778818493) at 2021-02-14 10:21 AM PST -ExperimentsInHonesty,2021-02-14T18:24:38Z,- ExperimentsInHonesty commented on issue: [1013](https://github.com/hackforla/website/issues/1013#issuecomment-778818940) at 2021-02-14 10:24 AM PST -ExperimentsInHonesty,2021-02-14T18:24:38Z,- ExperimentsInHonesty closed issue as completed: [1013](https://github.com/hackforla/website/issues/1013#event-4328982871) at 2021-02-14 10:24 AM PST -ExperimentsInHonesty,2021-02-19T02:30:16Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-781771017) at 2021-02-18 06:30 PM PST -ExperimentsInHonesty,2021-02-19T02:39:36Z,- ExperimentsInHonesty opened issue: [1077](https://github.com/hackforla/website/issues/1077) at 2021-02-18 06:39 PM PST -ExperimentsInHonesty,2021-02-21T18:23:59Z,- ExperimentsInHonesty commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-782902247) at 2021-02-21 10:23 AM PST -ExperimentsInHonesty,2021-02-21T18:24:42Z,- ExperimentsInHonesty commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-782902354) at 2021-02-21 10:24 AM PST -ExperimentsInHonesty,2021-02-21T18:47:56Z,- ExperimentsInHonesty commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782905744) at 2021-02-21 10:47 AM PST -ExperimentsInHonesty,2021-02-21T19:02:05Z,- ExperimentsInHonesty commented on issue: [863](https://github.com/hackforla/website/issues/863#issuecomment-782907845) at 2021-02-21 11:02 AM PST -ExperimentsInHonesty,2021-02-21T19:39:04Z,- ExperimentsInHonesty commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-782913229) at 2021-02-21 11:39 AM PST -ExperimentsInHonesty,2021-02-24T01:06:50Z,- ExperimentsInHonesty opened issue: [1096](https://github.com/hackforla/website/issues/1096) at 2021-02-23 05:06 PM PST -ExperimentsInHonesty,2021-02-24T18:42:43Z,- ExperimentsInHonesty commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-785289923) at 2021-02-24 10:42 AM PST -ExperimentsInHonesty,2021-02-24T22:30:53Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-785427876) at 2021-02-24 02:30 PM PST -ExperimentsInHonesty,2021-02-24T22:52:26Z,- ExperimentsInHonesty commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-785437722) at 2021-02-24 02:52 PM PST -ExperimentsInHonesty,2021-02-24T23:13:57Z,- ExperimentsInHonesty commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-785456279) at 2021-02-24 03:13 PM PST -ExperimentsInHonesty,2021-02-24T23:17:36Z,- ExperimentsInHonesty commented on issue: [915](https://github.com/hackforla/website/issues/915#issuecomment-785457740) at 2021-02-24 03:17 PM PST -ExperimentsInHonesty,2021-02-26T20:30:14Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-786877971) at 2021-02-26 12:30 PM PST -ExperimentsInHonesty,2021-02-26T21:48:23Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-786911703) at 2021-02-26 01:48 PM PST -ExperimentsInHonesty,2021-02-26T22:39:11Z,- ExperimentsInHonesty assigned to issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-786571819) at 2021-02-26 02:39 PM PST -ExperimentsInHonesty,2021-02-28T21:42:01Z,- ExperimentsInHonesty commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-787528153) at 2021-02-28 01:42 PM PST -ExperimentsInHonesty,2021-02-28T21:43:01Z,- ExperimentsInHonesty unassigned from issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-787528153) at 2021-02-28 01:43 PM PST -ExperimentsInHonesty,2021-02-28T21:59:19Z,- ExperimentsInHonesty commented on issue: [1131](https://github.com/hackforla/website/issues/1131#issuecomment-787530780) at 2021-02-28 01:59 PM PST -ExperimentsInHonesty,2021-02-28T22:28:36Z,- ExperimentsInHonesty commented on issue: [1131](https://github.com/hackforla/website/issues/1131#issuecomment-787535979) at 2021-02-28 02:28 PM PST -ExperimentsInHonesty,2021-02-28T22:44:23Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-787538263) at 2021-02-28 02:44 PM PST -ExperimentsInHonesty,2021-03-01T17:39:30Z,- ExperimentsInHonesty commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-788136400) at 2021-03-01 09:39 AM PST -ExperimentsInHonesty,2021-03-01T17:39:30Z,- ExperimentsInHonesty closed issue as completed: [867](https://github.com/hackforla/website/issues/867#event-4390985864) at 2021-03-01 09:39 AM PST -ExperimentsInHonesty,2021-03-01T17:55:05Z,- ExperimentsInHonesty opened issue: [1144](https://github.com/hackforla/website/issues/1144) at 2021-03-01 09:55 AM PST -ExperimentsInHonesty,2021-03-01T18:06:30Z,- ExperimentsInHonesty commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-788154694) at 2021-03-01 10:06 AM PST -ExperimentsInHonesty,2021-03-01T18:32:52Z,- ExperimentsInHonesty commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-788172848) at 2021-03-01 10:32 AM PST -ExperimentsInHonesty,2021-03-01T18:35:22Z,- ExperimentsInHonesty commented on issue: [964](https://github.com/hackforla/website/issues/964#issuecomment-788174568) at 2021-03-01 10:35 AM PST -ExperimentsInHonesty,2021-03-01T18:35:22Z,- ExperimentsInHonesty closed issue as completed: [964](https://github.com/hackforla/website/issues/964#event-4391251652) at 2021-03-01 10:35 AM PST -ExperimentsInHonesty,2021-03-01T18:36:40Z,- ExperimentsInHonesty unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-03-01 10:36 AM PST -ExperimentsInHonesty,2021-03-01T18:48:39Z,- ExperimentsInHonesty commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788182866) at 2021-03-01 10:48 AM PST -ExperimentsInHonesty,2021-03-01T19:47:42Z,- ExperimentsInHonesty commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-788221965) at 2021-03-01 11:47 AM PST -ExperimentsInHonesty,2021-03-05T18:11:24Z,- ExperimentsInHonesty opened pull request: [1161](https://github.com/hackforla/website/pull/1161) at 2021-03-05 10:11 AM PST -ExperimentsInHonesty,2021-03-05T18:18:02Z,- ExperimentsInHonesty pull request merged: [1161](https://github.com/hackforla/website/pull/1161#event-4414883176) at 2021-03-05 10:18 AM PST -ExperimentsInHonesty,2021-03-07T18:10:07Z,- ExperimentsInHonesty assigned to issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-792326190) at 2021-03-07 10:10 AM PST -ExperimentsInHonesty,2021-03-10T19:02:52Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-795919783) at 2021-03-10 11:02 AM PST -ExperimentsInHonesty,2021-03-10T19:09:38Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-795929145) at 2021-03-10 11:09 AM PST -ExperimentsInHonesty,2021-03-10T19:15:43Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-795938097) at 2021-03-10 11:15 AM PST -ExperimentsInHonesty,2021-03-10T20:18:39Z,- ExperimentsInHonesty unassigned from issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-795582340) at 2021-03-10 12:18 PM PST -ExperimentsInHonesty,2021-03-10T21:01:52Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796099383) at 2021-03-10 01:01 PM PST -ExperimentsInHonesty,2021-03-10T21:03:03Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796101634) at 2021-03-10 01:03 PM PST -ExperimentsInHonesty,2021-03-11T00:02:08Z,- ExperimentsInHonesty commented on issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796304739) at 2021-03-10 04:02 PM PST -ExperimentsInHonesty,2021-03-11T04:44:37Z,- ExperimentsInHonesty unassigned from issue: [940](https://github.com/hackforla/website/issues/940#issuecomment-796304739) at 2021-03-10 08:44 PM PST -ExperimentsInHonesty,2021-03-16T03:44:05Z,- ExperimentsInHonesty commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-799921647) at 2021-03-15 08:44 PM PDT -ExperimentsInHonesty,2021-03-17T18:44:26Z,- ExperimentsInHonesty commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-801324216) at 2021-03-17 11:44 AM PDT -ExperimentsInHonesty,2021-03-17T18:56:20Z,- ExperimentsInHonesty commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-801331285) at 2021-03-17 11:56 AM PDT -ExperimentsInHonesty,2021-03-17T19:05:06Z,- ExperimentsInHonesty commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-801336814) at 2021-03-17 12:05 PM PDT -ExperimentsInHonesty,2021-03-17T19:05:06Z,- ExperimentsInHonesty closed issue as completed: [854](https://github.com/hackforla/website/issues/854#event-4472083355) at 2021-03-17 12:05 PM PDT -ExperimentsInHonesty,2021-03-17T20:10:54Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-801406331) at 2021-03-17 01:10 PM PDT -ExperimentsInHonesty,2021-03-17T21:05:03Z,- ExperimentsInHonesty commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801442257) at 2021-03-17 02:05 PM PDT -ExperimentsInHonesty,2021-03-17T21:05:45Z,- ExperimentsInHonesty commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801442651) at 2021-03-17 02:05 PM PDT -ExperimentsInHonesty,2021-03-18T19:26:38Z,- ExperimentsInHonesty commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-802225984) at 2021-03-18 12:26 PM PDT -ExperimentsInHonesty,2021-03-21T19:47:40Z,- ExperimentsInHonesty assigned to issue: [1287](https://github.com/hackforla/website/issues/1287) at 2021-03-21 12:47 PM PDT -ExperimentsInHonesty,2021-03-23T21:57:21Z,- ExperimentsInHonesty opened issue: [1315](https://github.com/hackforla/website/issues/1315) at 2021-03-23 02:57 PM PDT -ExperimentsInHonesty,2021-03-24T02:34:54Z,- ExperimentsInHonesty commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-805436640) at 2021-03-23 07:34 PM PDT -ExperimentsInHonesty,2021-03-24T22:28:48Z,- ExperimentsInHonesty commented on issue: [618](https://github.com/hackforla/website/issues/618#issuecomment-806225940) at 2021-03-24 03:28 PM PDT -ExperimentsInHonesty,2021-03-24T22:29:58Z,- ExperimentsInHonesty commented on issue: [765](https://github.com/hackforla/website/issues/765#issuecomment-806226442) at 2021-03-24 03:29 PM PDT -ExperimentsInHonesty,2021-03-24T22:33:04Z,- ExperimentsInHonesty commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-806227703) at 2021-03-24 03:33 PM PDT -ExperimentsInHonesty,2021-03-25T00:00:32Z,- ExperimentsInHonesty commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-806259667) at 2021-03-24 05:00 PM PDT -ExperimentsInHonesty,2021-03-26T01:28:25Z,- ExperimentsInHonesty commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-807862490) at 2021-03-25 06:28 PM PDT -ExperimentsInHonesty,2021-03-26T04:11:36Z,- ExperimentsInHonesty commented on issue: [1321](https://github.com/hackforla/website/issues/1321#issuecomment-807922030) at 2021-03-25 09:11 PM PDT -ExperimentsInHonesty,2021-03-31T17:44:46Z,- ExperimentsInHonesty commented on issue: [1341](https://github.com/hackforla/website/issues/1341#issuecomment-811283794) at 2021-03-31 10:44 AM PDT -ExperimentsInHonesty,2021-03-31T18:30:26Z,- ExperimentsInHonesty unassigned from issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811310035) at 2021-03-31 11:30 AM PDT -ExperimentsInHonesty,2021-03-31T21:16:07Z,- ExperimentsInHonesty opened issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-03-31 02:16 PM PDT -ExperimentsInHonesty,2021-03-31T22:29:12Z,- ExperimentsInHonesty opened issue: [1346](https://github.com/hackforla/website/issues/1346) at 2021-03-31 03:29 PM PDT -ExperimentsInHonesty,2021-04-04T17:06:55Z,- ExperimentsInHonesty commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-813066304) at 2021-04-04 10:06 AM PDT -ExperimentsInHonesty,2021-04-04T17:15:39Z,- ExperimentsInHonesty commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-813067473) at 2021-04-04 10:15 AM PDT -ExperimentsInHonesty,2021-04-04T17:46:25Z,- ExperimentsInHonesty commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-813071999) at 2021-04-04 10:46 AM PDT -ExperimentsInHonesty,2021-04-04T17:48:18Z,- ExperimentsInHonesty commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-813072237) at 2021-04-04 10:48 AM PDT -ExperimentsInHonesty,2021-04-07T17:30:05Z,- ExperimentsInHonesty opened pull request: [1369](https://github.com/hackforla/website/pull/1369) at 2021-04-07 10:30 AM PDT -ExperimentsInHonesty,2021-04-07T17:37:59Z,- ExperimentsInHonesty commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-815097979) at 2021-04-07 10:37 AM PDT -ExperimentsInHonesty,2021-04-07T17:42:16Z,- ExperimentsInHonesty commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-815100652) at 2021-04-07 10:42 AM PDT -ExperimentsInHonesty,2021-04-07T17:52:39Z,- ExperimentsInHonesty commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-815107125) at 2021-04-07 10:52 AM PDT -ExperimentsInHonesty,2021-04-07T17:52:39Z,- ExperimentsInHonesty closed issue as completed: [602](https://github.com/hackforla/website/issues/602#event-4563962725) at 2021-04-07 10:52 AM PDT -ExperimentsInHonesty,2021-04-07T17:52:54Z,- ExperimentsInHonesty commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-815107277) at 2021-04-07 10:52 AM PDT -ExperimentsInHonesty,2021-04-07T17:53:12Z,- ExperimentsInHonesty commented on issue: [594](https://github.com/hackforla/website/issues/594#issuecomment-815107465) at 2021-04-07 10:53 AM PDT -ExperimentsInHonesty,2021-04-07T17:53:12Z,- ExperimentsInHonesty closed issue as completed: [594](https://github.com/hackforla/website/issues/594#event-4563965118) at 2021-04-07 10:53 AM PDT -ExperimentsInHonesty,2021-04-07T17:56:37Z,- ExperimentsInHonesty commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-815109680) at 2021-04-07 10:56 AM PDT -ExperimentsInHonesty,2021-04-07T18:22:25Z,- ExperimentsInHonesty commented on issue: [1202](https://github.com/hackforla/website/issues/1202#issuecomment-815126267) at 2021-04-07 11:22 AM PDT -ExperimentsInHonesty,2021-04-07T18:26:55Z,- ExperimentsInHonesty commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-815129199) at 2021-04-07 11:26 AM PDT -ExperimentsInHonesty,2021-04-07T18:41:10Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-815138371) at 2021-04-07 11:41 AM PDT -ExperimentsInHonesty,2021-04-08T02:24:46Z,- ExperimentsInHonesty opened pull request: [1373](https://github.com/hackforla/website/pull/1373) at 2021-04-07 07:24 PM PDT -ExperimentsInHonesty,2021-04-08T02:31:10Z,- ExperimentsInHonesty pull request merged: [1373](https://github.com/hackforla/website/pull/1373#event-4565991789) at 2021-04-07 07:31 PM PDT -ExperimentsInHonesty,2021-04-08T02:38:29Z,- ExperimentsInHonesty pull request merged: [1369](https://github.com/hackforla/website/pull/1369#event-4566008183) at 2021-04-07 07:38 PM PDT -ExperimentsInHonesty,2021-04-08T21:45:52Z,- ExperimentsInHonesty assigned to issue: [1381](https://github.com/hackforla/website/issues/1381) at 2021-04-08 02:45 PM PDT -ExperimentsInHonesty,2021-04-11T16:29:10Z,- ExperimentsInHonesty assigned to issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-817333918) at 2021-04-11 09:29 AM PDT -ExperimentsInHonesty,2021-04-13T23:14:12Z,- ExperimentsInHonesty commented on pull request: [1400](https://github.com/hackforla/website/pull/1400#issuecomment-819110449) at 2021-04-13 04:14 PM PDT -ExperimentsInHonesty,2021-04-14T18:43:29Z,- ExperimentsInHonesty commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-819748459) at 2021-04-14 11:43 AM PDT -ExperimentsInHonesty,2021-04-14T18:49:41Z,- ExperimentsInHonesty commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-819752121) at 2021-04-14 11:49 AM PDT -ExperimentsInHonesty,2021-04-18T16:08:48Z,- ExperimentsInHonesty unassigned from issue: [1381](https://github.com/hackforla/website/issues/1381#issuecomment-816247959) at 2021-04-18 09:08 AM PDT -ExperimentsInHonesty,2021-04-23T00:45:20Z,- ExperimentsInHonesty commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-825304909) at 2021-04-22 05:45 PM PDT -ExperimentsInHonesty,2021-04-23T03:29:48Z,- ExperimentsInHonesty commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-825360799) at 2021-04-22 08:29 PM PDT -ExperimentsInHonesty,2021-04-26T17:12:45Z,- ExperimentsInHonesty commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-827006971) at 2021-04-26 10:12 AM PDT -ExperimentsInHonesty,2021-04-26T17:49:17Z,- ExperimentsInHonesty commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-827029843) at 2021-04-26 10:49 AM PDT -ExperimentsInHonesty,2021-04-28T00:26:11Z,- ExperimentsInHonesty opened pull request: [1476](https://github.com/hackforla/website/pull/1476) at 2021-04-27 05:26 PM PDT -ExperimentsInHonesty,2021-04-28T00:35:09Z,- ExperimentsInHonesty pull request merged: [1476](https://github.com/hackforla/website/pull/1476#event-4653803082) at 2021-04-27 05:35 PM PDT -ExperimentsInHonesty,2021-05-15T15:23:48Z,- ExperimentsInHonesty assigned to issue: [1543](https://github.com/hackforla/website/issues/1543) at 2021-05-15 08:23 AM PDT -ExperimentsInHonesty,2021-05-25T19:55:53Z,- ExperimentsInHonesty opened issue: [1630](https://github.com/hackforla/website/issues/1630) at 2021-05-25 12:55 PM PDT -ExperimentsInHonesty,2021-05-25T20:05:28Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-848223610) at 2021-05-25 01:05 PM PDT -ExperimentsInHonesty,2021-05-25T20:11:09Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-848227034) at 2021-05-25 01:11 PM PDT -ExperimentsInHonesty,2021-05-25T20:19:26Z,- ExperimentsInHonesty opened pull request: [1631](https://github.com/hackforla/website/pull/1631) at 2021-05-25 01:19 PM PDT -ExperimentsInHonesty,2021-05-25T20:20:03Z,- ExperimentsInHonesty pull request merged: [1631](https://github.com/hackforla/website/pull/1631#event-4795027424) at 2021-05-25 01:20 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:01Z,- ExperimentsInHonesty opened pull request: [1632](https://github.com/hackforla/website/pull/1632) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:07Z,- ExperimentsInHonesty pull request merged: [1632](https://github.com/hackforla/website/pull/1632#event-4795082531) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:43Z,- ExperimentsInHonesty opened pull request: [1633](https://github.com/hackforla/website/pull/1633) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:32:54Z,- ExperimentsInHonesty pull request merged: [1633](https://github.com/hackforla/website/pull/1633#event-4795086013) at 2021-05-25 01:32 PM PDT -ExperimentsInHonesty,2021-05-25T20:34:18Z,- ExperimentsInHonesty opened pull request: [1634](https://github.com/hackforla/website/pull/1634) at 2021-05-25 01:34 PM PDT -ExperimentsInHonesty,2021-05-25T20:34:30Z,- ExperimentsInHonesty pull request merged: [1634](https://github.com/hackforla/website/pull/1634#event-4795093140) at 2021-05-25 01:34 PM PDT -ExperimentsInHonesty,2021-05-30T17:22:08Z,- ExperimentsInHonesty assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:22 AM PDT -ExperimentsInHonesty,2021-06-08T19:52:23Z,- ExperimentsInHonesty unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-803630058) at 2021-06-08 12:52 PM PDT -ExperimentsInHonesty,2021-06-12T10:09:12Z,- ExperimentsInHonesty closed issue as completed: [312](https://github.com/hackforla/website/issues/312#event-4881095493) at 2021-06-12 03:09 AM PDT -ExperimentsInHonesty,2021-06-20T20:56:25Z,- ExperimentsInHonesty assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -ExperimentsInHonesty,2021-06-20T22:15:50Z,- ExperimentsInHonesty assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -ExperimentsInHonesty,2021-06-24T23:36:03Z,- ExperimentsInHonesty commented on issue: [1748](https://github.com/hackforla/website/issues/1748#issuecomment-868037751) at 2021-06-24 04:36 PM PDT -ExperimentsInHonesty,2021-06-28T16:22:47Z,- ExperimentsInHonesty commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-869824830) at 2021-06-28 09:22 AM PDT -ExperimentsInHonesty,2021-06-28T20:47:43Z,- ExperimentsInHonesty commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-870030263) at 2021-06-28 01:47 PM PDT -ExperimentsInHonesty,2021-07-01T00:49:30Z,- ExperimentsInHonesty reopened issue: [1851](https://github.com/hackforla/website/issues/1851#event-4949482556) at 2021-06-30 05:49 PM PDT -ExperimentsInHonesty,2021-07-06T01:25:14Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-874395859) at 2021-07-05 06:25 PM PDT -ExperimentsInHonesty,2021-07-06T01:25:54Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-874396008) at 2021-07-05 06:25 PM PDT -ExperimentsInHonesty,2021-07-11T17:30:17Z,- ExperimentsInHonesty commented on issue: [1843](https://github.com/hackforla/website/issues/1843#issuecomment-877835897) at 2021-07-11 10:30 AM PDT -ExperimentsInHonesty,2021-07-11T17:30:17Z,- ExperimentsInHonesty closed issue as completed: [1843](https://github.com/hackforla/website/issues/1843#event-5004370674) at 2021-07-11 10:30 AM PDT -ExperimentsInHonesty,2021-07-11T17:37:50Z,- ExperimentsInHonesty commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877836825) at 2021-07-11 10:37 AM PDT -ExperimentsInHonesty,2021-07-11T17:38:52Z,- ExperimentsInHonesty commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877836926) at 2021-07-11 10:38 AM PDT -ExperimentsInHonesty,2021-07-11T17:42:08Z,- ExperimentsInHonesty commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-877837319) at 2021-07-11 10:42 AM PDT -ExperimentsInHonesty,2021-07-11T17:43:27Z,- ExperimentsInHonesty commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-877837446) at 2021-07-11 10:43 AM PDT -ExperimentsInHonesty,2021-07-11T17:51:35Z,- ExperimentsInHonesty commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-877838271) at 2021-07-11 10:51 AM PDT -ExperimentsInHonesty,2021-07-11T20:09:08Z,- ExperimentsInHonesty opened issue: [1921](https://github.com/hackforla/website/issues/1921) at 2021-07-11 01:09 PM PDT -ExperimentsInHonesty,2021-07-11T20:10:30Z,- ExperimentsInHonesty commented on issue: [1850](https://github.com/hackforla/website/issues/1850#issuecomment-877854201) at 2021-07-11 01:10 PM PDT -ExperimentsInHonesty,2021-07-11T23:30:11Z,- ExperimentsInHonesty opened issue: [1923](https://github.com/hackforla/website/issues/1923) at 2021-07-11 04:30 PM PDT -ExperimentsInHonesty,2021-07-12T16:07:49Z,- ExperimentsInHonesty assigned to issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-877836659) at 2021-07-12 09:07 AM PDT -ExperimentsInHonesty,2021-07-13T00:06:50Z,- ExperimentsInHonesty commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-878677907) at 2021-07-12 05:06 PM PDT -ExperimentsInHonesty,2021-07-13T00:06:50Z,- ExperimentsInHonesty closed issue by PR 1837: [1671](https://github.com/hackforla/website/issues/1671#event-5010421573) at 2021-07-12 05:06 PM PDT -ExperimentsInHonesty,2021-07-13T16:47:44Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-879243171) at 2021-07-13 09:47 AM PDT -ExperimentsInHonesty,2021-07-13T16:54:10Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-879247288) at 2021-07-13 09:54 AM PDT -ExperimentsInHonesty,2021-07-13T16:55:54Z,- ExperimentsInHonesty unassigned from issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-879247288) at 2021-07-13 09:55 AM PDT -ExperimentsInHonesty,2021-07-14T01:23:48Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-879510071) at 2021-07-13 06:23 PM PDT -ExperimentsInHonesty,2021-07-14T01:26:52Z,- ExperimentsInHonesty commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-879511001) at 2021-07-13 06:26 PM PDT -ExperimentsInHonesty,2021-07-14T01:26:52Z,- ExperimentsInHonesty closed issue as completed: [797](https://github.com/hackforla/website/issues/797#event-5016972148) at 2021-07-13 06:26 PM PDT -ExperimentsInHonesty,2021-07-14T01:54:21Z,- ExperimentsInHonesty closed issue as completed: [525](https://github.com/hackforla/website/issues/525#event-5017030989) at 2021-07-13 06:54 PM PDT -ExperimentsInHonesty,2021-07-14T01:55:05Z,- ExperimentsInHonesty reopened issue: [525](https://github.com/hackforla/website/issues/525#event-5017030989) at 2021-07-13 06:55 PM PDT -ExperimentsInHonesty,2021-07-14T03:53:45Z,- ExperimentsInHonesty commented on issue: [1887](https://github.com/hackforla/website/issues/1887#issuecomment-879564848) at 2021-07-13 08:53 PM PDT -ExperimentsInHonesty,2021-07-19T16:24:36Z,- ExperimentsInHonesty commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-882684713) at 2021-07-19 09:24 AM PDT -ExperimentsInHonesty,2021-07-19T16:31:16Z,- ExperimentsInHonesty commented on issue: [1323](https://github.com/hackforla/website/issues/1323#issuecomment-882689053) at 2021-07-19 09:31 AM PDT -ExperimentsInHonesty,2021-07-19T20:12:34Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-882828208) at 2021-07-19 01:12 PM PDT -ExperimentsInHonesty,2021-07-19T20:14:34Z,- ExperimentsInHonesty commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-882829554) at 2021-07-19 01:14 PM PDT -ExperimentsInHonesty,2021-07-19T20:16:52Z,- ExperimentsInHonesty commented on issue: [1086](https://github.com/hackforla/website/issues/1086#issuecomment-882831068) at 2021-07-19 01:16 PM PDT -ExperimentsInHonesty,2021-07-19T20:24:41Z,- ExperimentsInHonesty commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-882835911) at 2021-07-19 01:24 PM PDT -ExperimentsInHonesty,2021-07-19T20:27:01Z,- ExperimentsInHonesty commented on issue: [1697](https://github.com/hackforla/website/issues/1697#issuecomment-882837264) at 2021-07-19 01:27 PM PDT -ExperimentsInHonesty,2021-07-19T20:28:36Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-882838108) at 2021-07-19 01:28 PM PDT -ExperimentsInHonesty,2021-07-19T20:52:53Z,- ExperimentsInHonesty opened issue: [1975](https://github.com/hackforla/website/issues/1975) at 2021-07-19 01:52 PM PDT -ExperimentsInHonesty,2021-07-20T16:58:34Z,- ExperimentsInHonesty commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-883548369) at 2021-07-20 09:58 AM PDT -ExperimentsInHonesty,2021-07-20T19:31:32Z,- ExperimentsInHonesty opened issue: [1987](https://github.com/hackforla/website/issues/1987) at 2021-07-20 12:31 PM PDT -ExperimentsInHonesty,2021-07-20T19:33:22Z,- ExperimentsInHonesty commented on issue: [1987](https://github.com/hackforla/website/issues/1987#issuecomment-883642356) at 2021-07-20 12:33 PM PDT -ExperimentsInHonesty,2021-07-20T20:28:20Z,- ExperimentsInHonesty commented on issue: [1402](https://github.com/hackforla/website/issues/1402#issuecomment-883678796) at 2021-07-20 01:28 PM PDT -ExperimentsInHonesty,2021-07-20T20:28:20Z,- ExperimentsInHonesty closed issue as completed: [1402](https://github.com/hackforla/website/issues/1402#event-5046473190) at 2021-07-20 01:28 PM PDT -ExperimentsInHonesty,2021-07-20T20:30:44Z,- ExperimentsInHonesty commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-883682408) at 2021-07-20 01:30 PM PDT -ExperimentsInHonesty,2021-07-20T20:31:07Z,- ExperimentsInHonesty closed issue as completed: [1989](https://github.com/hackforla/website/issues/1989#event-5046484780) at 2021-07-20 01:31 PM PDT -ExperimentsInHonesty,2021-07-20T20:34:53Z,- ExperimentsInHonesty commented on issue: [1692](https://github.com/hackforla/website/issues/1692#issuecomment-883686810) at 2021-07-20 01:34 PM PDT -ExperimentsInHonesty,2021-07-20T20:34:53Z,- ExperimentsInHonesty closed issue as completed: [1692](https://github.com/hackforla/website/issues/1692#event-5046500685) at 2021-07-20 01:34 PM PDT -ExperimentsInHonesty,2021-07-20T20:41:56Z,- ExperimentsInHonesty commented on issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-883694809) at 2021-07-20 01:41 PM PDT -ExperimentsInHonesty,2021-07-21T14:47:03Z,- ExperimentsInHonesty opened issue: [1994](https://github.com/hackforla/website/issues/1994) at 2021-07-21 07:47 AM PDT -ExperimentsInHonesty,2021-07-21T14:54:14Z,- ExperimentsInHonesty commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-884254547) at 2021-07-21 07:54 AM PDT -ExperimentsInHonesty,2021-07-21T16:09:42Z,- ExperimentsInHonesty commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-884311123) at 2021-07-21 09:09 AM PDT -ExperimentsInHonesty,2021-07-21T16:17:37Z,- ExperimentsInHonesty commented on issue: [1985](https://github.com/hackforla/website/issues/1985#issuecomment-884316852) at 2021-07-21 09:17 AM PDT -ExperimentsInHonesty,2021-07-21T19:57:55Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-884458557) at 2021-07-21 12:57 PM PDT -ExperimentsInHonesty,2021-07-21T20:09:35Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-884466170) at 2021-07-21 01:09 PM PDT -ExperimentsInHonesty,2021-07-21T22:23:49Z,- ExperimentsInHonesty commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884537708) at 2021-07-21 03:23 PM PDT -ExperimentsInHonesty,2021-07-21T22:24:39Z,- ExperimentsInHonesty commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884538047) at 2021-07-21 03:24 PM PDT -ExperimentsInHonesty,2021-07-21T22:51:40Z,- ExperimentsInHonesty commented on issue: [1996](https://github.com/hackforla/website/issues/1996#issuecomment-884547791) at 2021-07-21 03:51 PM PDT -ExperimentsInHonesty,2021-07-24T14:56:03Z,- ExperimentsInHonesty commented on pull request: [2005](https://github.com/hackforla/website/pull/2005#issuecomment-886064519) at 2021-07-24 07:56 AM PDT -ExperimentsInHonesty,2021-07-25T17:06:40Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-886230904) at 2021-07-25 10:06 AM PDT -ExperimentsInHonesty,2021-07-25T17:14:19Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-886231967) at 2021-07-25 10:14 AM PDT -ExperimentsInHonesty,2021-07-25T18:01:46Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-886237421) at 2021-07-25 11:01 AM PDT -ExperimentsInHonesty,2021-07-25T18:26:48Z,- ExperimentsInHonesty commented on issue: [1710](https://github.com/hackforla/website/issues/1710#issuecomment-886240212) at 2021-07-25 11:26 AM PDT -ExperimentsInHonesty,2021-07-25T20:04:01Z,- ExperimentsInHonesty commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-886250856) at 2021-07-25 01:04 PM PDT -ExperimentsInHonesty,2021-07-25T20:15:47Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-886252289) at 2021-07-25 01:15 PM PDT -ExperimentsInHonesty,2021-07-25T20:20:54Z,- ExperimentsInHonesty commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-886252808) at 2021-07-25 01:20 PM PDT -ExperimentsInHonesty,2021-07-25T20:51:53Z,- ExperimentsInHonesty commented on issue: [192](https://github.com/hackforla/website/issues/192#issuecomment-886256196) at 2021-07-25 01:51 PM PDT -ExperimentsInHonesty,2021-07-25T20:51:53Z,- ExperimentsInHonesty closed issue as completed: [192](https://github.com/hackforla/website/issues/192#event-5065313736) at 2021-07-25 01:51 PM PDT -ExperimentsInHonesty,2021-07-25T21:16:38Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-886258887) at 2021-07-25 02:16 PM PDT -ExperimentsInHonesty,2021-07-26T02:50:51Z,- ExperimentsInHonesty unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-07-25 07:50 PM PDT -ExperimentsInHonesty,2021-07-26T02:56:17Z,- ExperimentsInHonesty closed issue as completed: [525](https://github.com/hackforla/website/issues/525#event-5065794667) at 2021-07-25 07:56 PM PDT -ExperimentsInHonesty,2021-07-31T02:23:13Z,- ExperimentsInHonesty opened issue: [2023](https://github.com/hackforla/website/issues/2023) at 2021-07-30 07:23 PM PDT -ExperimentsInHonesty,2021-07-31T03:25:22Z,- ExperimentsInHonesty opened issue: [2025](https://github.com/hackforla/website/issues/2025) at 2021-07-30 08:25 PM PDT -ExperimentsInHonesty,2021-07-31T03:30:18Z,- ExperimentsInHonesty commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890284371) at 2021-07-30 08:30 PM PDT -ExperimentsInHonesty,2021-07-31T03:36:22Z,- ExperimentsInHonesty commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-890284833) at 2021-07-30 08:36 PM PDT -ExperimentsInHonesty,2021-07-31T03:47:36Z,- ExperimentsInHonesty commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-890285648) at 2021-07-30 08:47 PM PDT -ExperimentsInHonesty,2021-07-31T03:47:57Z,- ExperimentsInHonesty assigned to issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-890285648) at 2021-07-30 08:47 PM PDT -ExperimentsInHonesty,2021-07-31T04:08:02Z,- ExperimentsInHonesty commented on issue: [1216](https://github.com/hackforla/website/issues/1216#issuecomment-890287470) at 2021-07-30 09:08 PM PDT -ExperimentsInHonesty,2021-07-31T04:08:02Z,- ExperimentsInHonesty closed issue as completed: [1216](https://github.com/hackforla/website/issues/1216#event-5093989497) at 2021-07-30 09:08 PM PDT -ExperimentsInHonesty,2021-07-31T04:19:10Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-890288461) at 2021-07-30 09:19 PM PDT -ExperimentsInHonesty,2021-07-31T04:24:38Z,- ExperimentsInHonesty unassigned from issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-890288461) at 2021-07-30 09:24 PM PDT -ExperimentsInHonesty,2021-08-01T17:16:18Z,- ExperimentsInHonesty commented on issue: [1901](https://github.com/hackforla/website/issues/1901#issuecomment-890556963) at 2021-08-01 10:16 AM PDT -ExperimentsInHonesty,2021-08-01T17:25:06Z,- ExperimentsInHonesty commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-890558149) at 2021-08-01 10:25 AM PDT -ExperimentsInHonesty,2021-08-01T17:33:24Z,- ExperimentsInHonesty commented on issue: [1347](https://github.com/hackforla/website/issues/1347#issuecomment-890559137) at 2021-08-01 10:33 AM PDT -ExperimentsInHonesty,2021-08-01T18:21:31Z,- ExperimentsInHonesty commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-890565400) at 2021-08-01 11:21 AM PDT -ExperimentsInHonesty,2021-08-02T00:50:33Z,- ExperimentsInHonesty commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-890627703) at 2021-08-01 05:50 PM PDT -ExperimentsInHonesty,2021-08-02T00:56:24Z,- ExperimentsInHonesty commented on issue: [1273](https://github.com/hackforla/website/issues/1273#issuecomment-890630527) at 2021-08-01 05:56 PM PDT -ExperimentsInHonesty,2021-08-02T00:56:24Z,- ExperimentsInHonesty closed issue as completed: [1273](https://github.com/hackforla/website/issues/1273#event-5096133902) at 2021-08-01 05:56 PM PDT -ExperimentsInHonesty,2021-08-02T01:29:46Z,- ExperimentsInHonesty commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-890645395) at 2021-08-01 06:29 PM PDT -ExperimentsInHonesty,2021-08-02T16:21:32Z,- ExperimentsInHonesty commented on issue: [1980](https://github.com/hackforla/website/issues/1980#issuecomment-891157832) at 2021-08-02 09:21 AM PDT -ExperimentsInHonesty,2021-08-02T16:28:15Z,- ExperimentsInHonesty opened issue: [2033](https://github.com/hackforla/website/issues/2033) at 2021-08-02 09:28 AM PDT -ExperimentsInHonesty,2021-08-02T16:33:05Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-891165745) at 2021-08-02 09:33 AM PDT -ExperimentsInHonesty,2021-08-02T16:37:41Z,- ExperimentsInHonesty opened issue: [2034](https://github.com/hackforla/website/issues/2034) at 2021-08-02 09:37 AM PDT -ExperimentsInHonesty,2021-08-02T22:06:46Z,- ExperimentsInHonesty opened issue: [2037](https://github.com/hackforla/website/issues/2037) at 2021-08-02 03:06 PM PDT -ExperimentsInHonesty,2021-08-02T22:14:22Z,- ExperimentsInHonesty commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-891369616) at 2021-08-02 03:14 PM PDT -ExperimentsInHonesty,2021-08-03T17:01:21Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-892010406) at 2021-08-03 10:01 AM PDT -ExperimentsInHonesty,2021-08-03T19:28:36Z,- ExperimentsInHonesty commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-892106095) at 2021-08-03 12:28 PM PDT -ExperimentsInHonesty,2021-08-03T21:38:09Z,- ExperimentsInHonesty commented on issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-892183607) at 2021-08-03 02:38 PM PDT -ExperimentsInHonesty,2021-08-05T03:09:17Z,- ExperimentsInHonesty opened issue: [2064](https://github.com/hackforla/website/issues/2064) at 2021-08-04 08:09 PM PDT -ExperimentsInHonesty,2021-08-08T18:31:34Z,- ExperimentsInHonesty commented on issue: [1993](https://github.com/hackforla/website/issues/1993#issuecomment-894836917) at 2021-08-08 11:31 AM PDT -ExperimentsInHonesty,2021-08-08T18:35:53Z,- ExperimentsInHonesty commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-894837449) at 2021-08-08 11:35 AM PDT -ExperimentsInHonesty,2021-08-09T04:25:25Z,- ExperimentsInHonesty commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-894941855) at 2021-08-08 09:25 PM PDT -ExperimentsInHonesty,2021-08-09T18:17:59Z,- ExperimentsInHonesty assigned to issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-848227034) at 2021-08-09 11:17 AM PDT -ExperimentsInHonesty,2021-08-10T17:54:56Z,- ExperimentsInHonesty assigned to issue: [2096](https://github.com/hackforla/website/issues/2096) at 2021-08-10 10:54 AM PDT -ExperimentsInHonesty,2021-08-10T19:55:29Z,- ExperimentsInHonesty commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-896276578) at 2021-08-10 12:55 PM PDT -ExperimentsInHonesty,2021-08-10T19:56:20Z,- ExperimentsInHonesty commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-896277137) at 2021-08-10 12:56 PM PDT -ExperimentsInHonesty,2021-08-10T20:00:09Z,- ExperimentsInHonesty closed issue as completed: [1823](https://github.com/hackforla/website/issues/1823#event-5137498277) at 2021-08-10 01:00 PM PDT -ExperimentsInHonesty,2021-08-10T20:00:51Z,- ExperimentsInHonesty closed issue as completed: [1845](https://github.com/hackforla/website/issues/1845#event-5137502366) at 2021-08-10 01:00 PM PDT -ExperimentsInHonesty,2021-08-10T20:04:40Z,- ExperimentsInHonesty closed issue as completed: [2020](https://github.com/hackforla/website/issues/2020#event-5137522852) at 2021-08-10 01:04 PM PDT -ExperimentsInHonesty,2021-08-12T20:32:32Z,- ExperimentsInHonesty opened issue: [2105](https://github.com/hackforla/website/issues/2105) at 2021-08-12 01:32 PM PDT -ExperimentsInHonesty,2021-08-12T22:27:43Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-898009148) at 2021-08-12 03:27 PM PDT -ExperimentsInHonesty,2021-08-15T17:25:15Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-899084775) at 2021-08-15 10:25 AM PDT -ExperimentsInHonesty,2021-08-15T18:27:08Z,- ExperimentsInHonesty commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-899092317) at 2021-08-15 11:27 AM PDT -ExperimentsInHonesty,2021-08-15T18:47:35Z,- ExperimentsInHonesty commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-899094463) at 2021-08-15 11:47 AM PDT -ExperimentsInHonesty,2021-08-15T19:07:34Z,- ExperimentsInHonesty commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-899096644) at 2021-08-15 12:07 PM PDT -ExperimentsInHonesty,2021-08-15T19:31:30Z,- ExperimentsInHonesty commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-899099306) at 2021-08-15 12:31 PM PDT -ExperimentsInHonesty,2021-08-15T19:39:47Z,- ExperimentsInHonesty unassigned from issue: [2096](https://github.com/hackforla/website/issues/2096) at 2021-08-15 12:39 PM PDT -ExperimentsInHonesty,2021-08-15T19:46:53Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899100930) at 2021-08-15 12:46 PM PDT -ExperimentsInHonesty,2021-08-15T23:49:24Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899129475) at 2021-08-15 04:49 PM PDT -ExperimentsInHonesty,2021-08-16T16:34:43Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-899651077) at 2021-08-16 09:34 AM PDT -ExperimentsInHonesty,2021-08-16T16:49:42Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-899660477) at 2021-08-16 09:49 AM PDT -ExperimentsInHonesty,2021-08-17T19:48:59Z,- ExperimentsInHonesty closed issue as completed: [1697](https://github.com/hackforla/website/issues/1697#event-5170970907) at 2021-08-17 12:48 PM PDT -ExperimentsInHonesty,2021-08-17T20:04:46Z,- ExperimentsInHonesty reopened issue: [2096](https://github.com/hackforla/website/issues/2096#event-5171019965) at 2021-08-17 01:04 PM PDT -ExperimentsInHonesty,2021-08-17T20:08:00Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-900595702) at 2021-08-17 01:08 PM PDT -ExperimentsInHonesty,2021-08-18T16:48:31Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-901268976) at 2021-08-18 09:48 AM PDT -ExperimentsInHonesty,2021-08-18T16:58:05Z,- ExperimentsInHonesty commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-901275320) at 2021-08-18 09:58 AM PDT -ExperimentsInHonesty,2021-08-18T19:26:41Z,- ExperimentsInHonesty opened issue: [2128](https://github.com/hackforla/website/issues/2128) at 2021-08-18 12:26 PM PDT -ExperimentsInHonesty,2021-08-18T19:27:16Z,- ExperimentsInHonesty commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-901372018) at 2021-08-18 12:27 PM PDT -ExperimentsInHonesty,2021-08-19T16:09:37Z,- ExperimentsInHonesty commented on issue: [2008](https://github.com/hackforla/website/issues/2008#issuecomment-902041554) at 2021-08-19 09:09 AM PDT -ExperimentsInHonesty,2021-08-20T03:41:15Z,- ExperimentsInHonesty commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-902407089) at 2021-08-19 08:41 PM PDT -ExperimentsInHonesty,2021-08-21T16:48:31Z,- ExperimentsInHonesty commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-903143529) at 2021-08-21 09:48 AM PDT -ExperimentsInHonesty,2021-08-22T18:44:44Z,- ExperimentsInHonesty closed issue as completed: [2077](https://github.com/hackforla/website/issues/2077#event-5191133824) at 2021-08-22 11:44 AM PDT -ExperimentsInHonesty,2021-08-22T18:50:38Z,- ExperimentsInHonesty commented on issue: [1911](https://github.com/hackforla/website/issues/1911#issuecomment-903313669) at 2021-08-22 11:50 AM PDT -ExperimentsInHonesty,2021-08-22T19:24:45Z,- ExperimentsInHonesty closed issue as completed: [2142](https://github.com/hackforla/website/issues/2142#event-5191168138) at 2021-08-22 12:24 PM PDT -ExperimentsInHonesty,2021-08-22T19:45:19Z,- ExperimentsInHonesty commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-903320653) at 2021-08-22 12:45 PM PDT -ExperimentsInHonesty,2021-08-23T23:26:56Z,- ExperimentsInHonesty opened issue: [2169](https://github.com/hackforla/website/issues/2169) at 2021-08-23 04:26 PM PDT -ExperimentsInHonesty,2021-08-23T23:28:16Z,- ExperimentsInHonesty commented on issue: [2163](https://github.com/hackforla/website/issues/2163#issuecomment-904202293) at 2021-08-23 04:28 PM PDT -ExperimentsInHonesty,2021-08-24T01:07:56Z,- ExperimentsInHonesty commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-904240007) at 2021-08-23 06:07 PM PDT -ExperimentsInHonesty,2021-08-25T19:34:59Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-905816873) at 2021-08-25 12:34 PM PDT -ExperimentsInHonesty,2021-08-27T05:32:20Z,- ExperimentsInHonesty commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-906937385) at 2021-08-26 10:32 PM PDT -ExperimentsInHonesty,2021-08-27T21:23:21Z,- ExperimentsInHonesty commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-907484054) at 2021-08-27 02:23 PM PDT -ExperimentsInHonesty,2021-08-27T21:25:27Z,- ExperimentsInHonesty commented on issue: [1135](https://github.com/hackforla/website/issues/1135#issuecomment-907485051) at 2021-08-27 02:25 PM PDT -ExperimentsInHonesty,2021-08-29T02:26:13Z,- ExperimentsInHonesty commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-907718418) at 2021-08-28 07:26 PM PDT -ExperimentsInHonesty,2021-08-29T18:27:53Z,- ExperimentsInHonesty commented on issue: [2135](https://github.com/hackforla/website/issues/2135#issuecomment-907844049) at 2021-08-29 11:27 AM PDT -ExperimentsInHonesty,2021-08-29T18:45:17Z,- ExperimentsInHonesty opened issue: [2202](https://github.com/hackforla/website/issues/2202) at 2021-08-29 11:45 AM PDT -ExperimentsInHonesty,2021-08-29T18:49:14Z,- ExperimentsInHonesty commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-907848919) at 2021-08-29 11:49 AM PDT -ExperimentsInHonesty,2021-08-29T19:44:13Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-907858407) at 2021-08-29 12:44 PM PDT -ExperimentsInHonesty,2021-08-29T22:17:45Z,- ExperimentsInHonesty commented on issue: [2203](https://github.com/hackforla/website/issues/2203#issuecomment-907884929) at 2021-08-29 03:17 PM PDT -ExperimentsInHonesty,2021-09-01T16:19:41Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-910443097) at 2021-09-01 09:19 AM PDT -ExperimentsInHonesty,2021-09-01T16:32:04Z,- ExperimentsInHonesty unassigned from issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-910443097) at 2021-09-01 09:32 AM PDT -ExperimentsInHonesty,2021-09-03T15:17:34Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-912615326) at 2021-09-03 08:17 AM PDT -ExperimentsInHonesty,2021-09-05T16:16:48Z,- ExperimentsInHonesty commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-913183831) at 2021-09-05 09:16 AM PDT -ExperimentsInHonesty,2021-09-05T16:19:23Z,- ExperimentsInHonesty commented on issue: [2145](https://github.com/hackforla/website/issues/2145#issuecomment-913184223) at 2021-09-05 09:19 AM PDT -ExperimentsInHonesty,2021-09-05T18:36:23Z,- ExperimentsInHonesty commented on issue: [1996](https://github.com/hackforla/website/issues/1996#issuecomment-913204054) at 2021-09-05 11:36 AM PDT -ExperimentsInHonesty,2021-09-05T18:37:08Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-913204138) at 2021-09-05 11:37 AM PDT -ExperimentsInHonesty,2021-09-05T18:39:12Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-913204386) at 2021-09-05 11:39 AM PDT -ExperimentsInHonesty,2021-09-05T20:57:44Z,- ExperimentsInHonesty commented on issue: [2016](https://github.com/hackforla/website/issues/2016#issuecomment-913226301) at 2021-09-05 01:57 PM PDT -ExperimentsInHonesty,2021-09-06T14:34:10Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-913695460) at 2021-09-06 07:34 AM PDT -ExperimentsInHonesty,2021-09-06T18:44:31Z,- ExperimentsInHonesty reopened issue: [916](https://github.com/hackforla/website/issues/916#event-4881229626) at 2021-09-06 11:44 AM PDT -ExperimentsInHonesty,2021-09-06T19:00:46Z,- ExperimentsInHonesty reopened issue: [918](https://github.com/hackforla/website/issues/918#event-4881135273) at 2021-09-06 12:00 PM PDT -ExperimentsInHonesty,2021-09-06T19:01:11Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-913813465) at 2021-09-06 12:01 PM PDT -ExperimentsInHonesty,2021-09-07T00:05:29Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-913905075) at 2021-09-06 05:05 PM PDT -ExperimentsInHonesty,2021-09-07T00:09:06Z,- ExperimentsInHonesty commented on issue: [2188](https://github.com/hackforla/website/issues/2188#issuecomment-913906162) at 2021-09-06 05:09 PM PDT -ExperimentsInHonesty,2021-09-07T00:20:31Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-913909062) at 2021-09-06 05:20 PM PDT -ExperimentsInHonesty,2021-09-07T00:24:23Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-913910010) at 2021-09-06 05:24 PM PDT -ExperimentsInHonesty,2021-09-07T19:37:49Z,- ExperimentsInHonesty commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-914573921) at 2021-09-07 12:37 PM PDT -ExperimentsInHonesty,2021-09-07T19:46:48Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-914578453) at 2021-09-07 12:46 PM PDT -ExperimentsInHonesty,2021-09-07T19:55:16Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-914583010) at 2021-09-07 12:55 PM PDT -ExperimentsInHonesty,2021-09-07T20:28:27Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-914609135) at 2021-09-07 01:28 PM PDT -ExperimentsInHonesty,2021-09-08T19:12:54Z,- ExperimentsInHonesty submitted pull request review: [2241](https://github.com/hackforla/website/pull/2241#pullrequestreview-749521542) at 2021-09-08 12:12 PM PDT -ExperimentsInHonesty,2021-09-08T19:31:14Z,- ExperimentsInHonesty commented on issue: [2211](https://github.com/hackforla/website/issues/2211#issuecomment-915512188) at 2021-09-08 12:31 PM PDT -ExperimentsInHonesty,2021-09-08T19:31:55Z,- ExperimentsInHonesty commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-915512624) at 2021-09-08 12:31 PM PDT -ExperimentsInHonesty,2021-09-08T19:44:13Z,- ExperimentsInHonesty commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-915519861) at 2021-09-08 12:44 PM PDT -ExperimentsInHonesty,2021-09-08T19:50:14Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-915523412) at 2021-09-08 12:50 PM PDT -ExperimentsInHonesty,2021-09-08T19:56:00Z,- ExperimentsInHonesty assigned to issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-912950639) at 2021-09-08 12:56 PM PDT -ExperimentsInHonesty,2021-09-08T19:56:52Z,- ExperimentsInHonesty commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-915527644) at 2021-09-08 12:56 PM PDT -ExperimentsInHonesty,2021-09-08T20:21:40Z,- ExperimentsInHonesty commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915542974) at 2021-09-08 01:21 PM PDT -ExperimentsInHonesty,2021-09-08T23:06:25Z,- ExperimentsInHonesty commented on issue: [2127](https://github.com/hackforla/website/issues/2127#issuecomment-915630828) at 2021-09-08 04:06 PM PDT -ExperimentsInHonesty,2021-09-09T16:05:08Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-916234559) at 2021-09-09 09:05 AM PDT -ExperimentsInHonesty,2021-09-10T17:31:17Z,- ExperimentsInHonesty commented on issue: [1842](https://github.com/hackforla/website/issues/1842#issuecomment-917083414) at 2021-09-10 10:31 AM PDT -ExperimentsInHonesty,2021-09-10T22:32:10Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-917251499) at 2021-09-10 03:32 PM PDT -ExperimentsInHonesty,2021-09-12T17:54:40Z,- ExperimentsInHonesty commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-917681123) at 2021-09-12 10:54 AM PDT -ExperimentsInHonesty,2021-09-12T18:32:39Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-917686983) at 2021-09-12 11:32 AM PDT -ExperimentsInHonesty,2021-09-12T18:48:11Z,- ExperimentsInHonesty commented on issue: [2014](https://github.com/hackforla/website/issues/2014#issuecomment-917689389) at 2021-09-12 11:48 AM PDT -ExperimentsInHonesty,2021-09-12T18:50:42Z,- ExperimentsInHonesty commented on issue: [2009](https://github.com/hackforla/website/issues/2009#issuecomment-917689781) at 2021-09-12 11:50 AM PDT -ExperimentsInHonesty,2021-09-13T14:44:07Z,- ExperimentsInHonesty commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-918266431) at 2021-09-13 07:44 AM PDT -ExperimentsInHonesty,2021-09-13T20:36:04Z,- ExperimentsInHonesty opened issue: [2255](https://github.com/hackforla/website/issues/2255) at 2021-09-13 01:36 PM PDT -ExperimentsInHonesty,2021-09-14T19:20:42Z,- ExperimentsInHonesty commented on issue: [2015](https://github.com/hackforla/website/issues/2015#issuecomment-919446430) at 2021-09-14 12:20 PM PDT -ExperimentsInHonesty,2021-09-15T19:09:01Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-920303375) at 2021-09-15 12:09 PM PDT -ExperimentsInHonesty,2021-09-15T19:14:16Z,- ExperimentsInHonesty commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-920306682) at 2021-09-15 12:14 PM PDT -ExperimentsInHonesty,2021-09-15T19:52:45Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-920330101) at 2021-09-15 12:52 PM PDT -ExperimentsInHonesty,2021-09-15T19:55:14Z,- ExperimentsInHonesty commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-920331613) at 2021-09-15 12:55 PM PDT -ExperimentsInHonesty,2021-09-15T21:35:43Z,- ExperimentsInHonesty opened issue: [2269](https://github.com/hackforla/website/issues/2269) at 2021-09-15 02:35 PM PDT -ExperimentsInHonesty,2021-09-15T21:39:53Z,- ExperimentsInHonesty commented on issue: [2269](https://github.com/hackforla/website/issues/2269#issuecomment-920401843) at 2021-09-15 02:39 PM PDT -ExperimentsInHonesty,2021-09-15T21:55:34Z,- ExperimentsInHonesty commented on issue: [2069](https://github.com/hackforla/website/issues/2069#issuecomment-920410010) at 2021-09-15 02:55 PM PDT -ExperimentsInHonesty,2021-09-15T22:56:00Z,- ExperimentsInHonesty opened issue: [2270](https://github.com/hackforla/website/issues/2270) at 2021-09-15 03:56 PM PDT -ExperimentsInHonesty,2021-09-15T23:05:29Z,- ExperimentsInHonesty opened issue: [2271](https://github.com/hackforla/website/issues/2271) at 2021-09-15 04:05 PM PDT -ExperimentsInHonesty,2021-09-15T23:08:57Z,- ExperimentsInHonesty opened issue: [2272](https://github.com/hackforla/website/issues/2272) at 2021-09-15 04:08 PM PDT -ExperimentsInHonesty,2021-09-15T23:11:28Z,- ExperimentsInHonesty opened issue: [2273](https://github.com/hackforla/website/issues/2273) at 2021-09-15 04:11 PM PDT -ExperimentsInHonesty,2021-09-15T23:16:40Z,- ExperimentsInHonesty opened issue: [2274](https://github.com/hackforla/website/issues/2274) at 2021-09-15 04:16 PM PDT -ExperimentsInHonesty,2021-09-15T23:28:01Z,- ExperimentsInHonesty opened issue: [2275](https://github.com/hackforla/website/issues/2275) at 2021-09-15 04:28 PM PDT -ExperimentsInHonesty,2021-09-15T23:31:03Z,- ExperimentsInHonesty opened issue: [2276](https://github.com/hackforla/website/issues/2276) at 2021-09-15 04:31 PM PDT -ExperimentsInHonesty,2021-09-15T23:40:38Z,- ExperimentsInHonesty opened issue: [2277](https://github.com/hackforla/website/issues/2277) at 2021-09-15 04:40 PM PDT -ExperimentsInHonesty,2021-09-15T23:44:04Z,- ExperimentsInHonesty opened issue: [2278](https://github.com/hackforla/website/issues/2278) at 2021-09-15 04:44 PM PDT -ExperimentsInHonesty,2021-09-15T23:47:12Z,- ExperimentsInHonesty opened issue: [2279](https://github.com/hackforla/website/issues/2279) at 2021-09-15 04:47 PM PDT -ExperimentsInHonesty,2021-09-15T23:50:18Z,- ExperimentsInHonesty opened issue: [2280](https://github.com/hackforla/website/issues/2280) at 2021-09-15 04:50 PM PDT -ExperimentsInHonesty,2021-09-16T21:59:59Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-921283924) at 2021-09-16 02:59 PM PDT -ExperimentsInHonesty,2021-09-17T16:18:18Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-921920962) at 2021-09-17 09:18 AM PDT -ExperimentsInHonesty,2021-09-17T16:22:01Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-921923284) at 2021-09-17 09:22 AM PDT -ExperimentsInHonesty,2021-09-17T16:40:57Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-921934656) at 2021-09-17 09:40 AM PDT -ExperimentsInHonesty,2021-09-19T00:41:11Z,- ExperimentsInHonesty commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-922394751) at 2021-09-18 05:41 PM PDT -ExperimentsInHonesty,2021-09-20T00:20:35Z,- ExperimentsInHonesty opened issue: [2287](https://github.com/hackforla/website/issues/2287) at 2021-09-19 05:20 PM PDT -ExperimentsInHonesty,2021-09-20T03:18:50Z,- ExperimentsInHonesty opened issue: [2288](https://github.com/hackforla/website/issues/2288) at 2021-09-19 08:18 PM PDT -ExperimentsInHonesty,2021-09-20T04:22:22Z,- ExperimentsInHonesty opened issue: [2289](https://github.com/hackforla/website/issues/2289) at 2021-09-19 09:22 PM PDT -ExperimentsInHonesty,2021-09-21T20:02:29Z,- ExperimentsInHonesty closed issue as completed: [2016](https://github.com/hackforla/website/issues/2016#event-5338386600) at 2021-09-21 01:02 PM PDT -ExperimentsInHonesty,2021-09-22T18:45:59Z,- ExperimentsInHonesty opened issue: [2301](https://github.com/hackforla/website/issues/2301) at 2021-09-22 11:45 AM PDT -ExperimentsInHonesty,2021-09-22T18:47:39Z,- ExperimentsInHonesty commented on issue: [2301](https://github.com/hackforla/website/issues/2301#issuecomment-925201665) at 2021-09-22 11:47 AM PDT -ExperimentsInHonesty,2021-09-24T15:17:47Z,- ExperimentsInHonesty commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-926709908) at 2021-09-24 08:17 AM PDT -ExperimentsInHonesty,2021-09-24T16:46:06Z,- ExperimentsInHonesty opened issue: [2304](https://github.com/hackforla/website/issues/2304) at 2021-09-24 09:46 AM PDT -ExperimentsInHonesty,2021-09-24T19:51:18Z,- ExperimentsInHonesty commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-926882186) at 2021-09-24 12:51 PM PDT -ExperimentsInHonesty,2021-09-26T14:34:41Z,- ExperimentsInHonesty commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-927316195) at 2021-09-26 07:34 AM PDT -ExperimentsInHonesty,2021-09-26T18:14:15Z,- ExperimentsInHonesty assigned to issue: [2309](https://github.com/hackforla/website/issues/2309) at 2021-09-26 11:14 AM PDT -ExperimentsInHonesty,2021-09-26T19:05:30Z,- ExperimentsInHonesty commented on issue: [2045](https://github.com/hackforla/website/issues/2045#issuecomment-927354528) at 2021-09-26 12:05 PM PDT -ExperimentsInHonesty,2021-09-26T23:01:53Z,- ExperimentsInHonesty commented on issue: [2206](https://github.com/hackforla/website/issues/2206#issuecomment-927387023) at 2021-09-26 04:01 PM PDT -ExperimentsInHonesty,2021-09-26T23:08:52Z,- ExperimentsInHonesty commented on issue: [1842](https://github.com/hackforla/website/issues/1842#issuecomment-927388481) at 2021-09-26 04:08 PM PDT -ExperimentsInHonesty,2021-09-26T23:24:33Z,- ExperimentsInHonesty commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-927392020) at 2021-09-26 04:24 PM PDT -ExperimentsInHonesty,2021-10-03T23:52:39Z,- ExperimentsInHonesty commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-933053132) at 2021-10-03 04:52 PM PDT -ExperimentsInHonesty,2021-10-04T00:02:00Z,- ExperimentsInHonesty commented on issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-933054519) at 2021-10-03 05:02 PM PDT -ExperimentsInHonesty,2021-10-04T00:12:18Z,- ExperimentsInHonesty reopened issue: [2128](https://github.com/hackforla/website/issues/2128#issuecomment-933054519) at 2021-10-03 05:12 PM PDT -ExperimentsInHonesty,2021-10-04T00:40:31Z,- ExperimentsInHonesty commented on issue: [2078](https://github.com/hackforla/website/issues/2078#issuecomment-933062398) at 2021-10-03 05:40 PM PDT -ExperimentsInHonesty,2021-10-04T05:02:50Z,- ExperimentsInHonesty closed issue as completed: [2207](https://github.com/hackforla/website/issues/2207#event-5401349369) at 2021-10-03 10:02 PM PDT -ExperimentsInHonesty,2021-10-06T16:20:30Z,- ExperimentsInHonesty commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-936600925) at 2021-10-06 09:20 AM PDT -ExperimentsInHonesty,2021-10-06T16:20:30Z,- ExperimentsInHonesty reopened issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-936600925) at 2021-10-06 09:20 AM PDT -ExperimentsInHonesty,2021-10-06T19:24:47Z,- ExperimentsInHonesty commented on issue: [2336](https://github.com/hackforla/website/issues/2336#issuecomment-936960331) at 2021-10-06 12:24 PM PDT -ExperimentsInHonesty,2021-10-06T19:24:59Z,- ExperimentsInHonesty commented on issue: [2336](https://github.com/hackforla/website/issues/2336#issuecomment-936960671) at 2021-10-06 12:24 PM PDT -ExperimentsInHonesty,2021-10-06T19:24:59Z,- ExperimentsInHonesty closed issue as completed: [2336](https://github.com/hackforla/website/issues/2336#event-5423373869) at 2021-10-06 12:24 PM PDT -ExperimentsInHonesty,2021-10-07T15:54:48Z,- ExperimentsInHonesty commented on issue: [2341](https://github.com/hackforla/website/issues/2341#issuecomment-937926424) at 2021-10-07 08:54 AM PDT -ExperimentsInHonesty,2021-10-07T16:31:09Z,- ExperimentsInHonesty commented on issue: [2342](https://github.com/hackforla/website/issues/2342#issuecomment-937961584) at 2021-10-07 09:31 AM PDT -ExperimentsInHonesty,2021-10-10T17:40:47Z,- ExperimentsInHonesty commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-939522461) at 2021-10-10 10:40 AM PDT -ExperimentsInHonesty,2021-10-10T17:40:47Z,- ExperimentsInHonesty reopened issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-939522461) at 2021-10-10 10:40 AM PDT -ExperimentsInHonesty,2021-10-10T17:48:43Z,- ExperimentsInHonesty commented on issue: [1950](https://github.com/hackforla/website/issues/1950#issuecomment-939523577) at 2021-10-10 10:48 AM PDT -ExperimentsInHonesty,2021-10-10T23:07:20Z,- ExperimentsInHonesty commented on issue: [2202](https://github.com/hackforla/website/issues/2202#issuecomment-939568729) at 2021-10-10 04:07 PM PDT -ExperimentsInHonesty,2021-10-11T03:28:02Z,- ExperimentsInHonesty opened issue: [2362](https://github.com/hackforla/website/issues/2362) at 2021-10-10 08:28 PM PDT -ExperimentsInHonesty,2021-10-11T20:04:30Z,- ExperimentsInHonesty commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-940403731) at 2021-10-11 01:04 PM PDT -ExperimentsInHonesty,2021-10-11T21:27:05Z,- ExperimentsInHonesty commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-940455128) at 2021-10-11 02:27 PM PDT -ExperimentsInHonesty,2021-10-12T19:24:01Z,- ExperimentsInHonesty commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-941341203) at 2021-10-12 12:24 PM PDT -ExperimentsInHonesty,2021-10-12T19:30:29Z,- ExperimentsInHonesty commented on issue: [2129](https://github.com/hackforla/website/issues/2129#issuecomment-941352359) at 2021-10-12 12:30 PM PDT -ExperimentsInHonesty,2021-10-12T19:34:09Z,- ExperimentsInHonesty closed issue as completed: [1842](https://github.com/hackforla/website/issues/1842#event-5451901512) at 2021-10-12 12:34 PM PDT -ExperimentsInHonesty,2021-10-13T19:36:59Z,- ExperimentsInHonesty commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-942654372) at 2021-10-13 12:36 PM PDT -ExperimentsInHonesty,2021-10-15T15:05:53Z,- ExperimentsInHonesty commented on issue: [1630](https://github.com/hackforla/website/issues/1630#issuecomment-944375921) at 2021-10-15 08:05 AM PDT -ExperimentsInHonesty,2021-10-17T18:20:59Z,- ExperimentsInHonesty opened pull request: [2369](https://github.com/hackforla/website/pull/2369) at 2021-10-17 11:20 AM PDT -ExperimentsInHonesty,2021-10-17T18:31:57Z,- ExperimentsInHonesty pull request merged: [2369](https://github.com/hackforla/website/pull/2369#event-5474575711) at 2021-10-17 11:31 AM PDT -ExperimentsInHonesty,2021-10-17T19:19:18Z,- ExperimentsInHonesty commented on issue: [1927](https://github.com/hackforla/website/issues/1927#issuecomment-945179635) at 2021-10-17 12:19 PM PDT -ExperimentsInHonesty,2021-10-17T19:19:20Z,- ExperimentsInHonesty closed issue by PR 2070: [1927](https://github.com/hackforla/website/issues/1927#event-5474621655) at 2021-10-17 12:19 PM PDT -ExperimentsInHonesty,2021-10-17T22:28:56Z,- ExperimentsInHonesty commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-945206081) at 2021-10-17 03:28 PM PDT -ExperimentsInHonesty,2021-10-17T22:28:56Z,- ExperimentsInHonesty reopened issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-945206081) at 2021-10-17 03:28 PM PDT -ExperimentsInHonesty,2021-10-17T23:33:37Z,- ExperimentsInHonesty commented on issue: [2368](https://github.com/hackforla/website/issues/2368#issuecomment-945217166) at 2021-10-17 04:33 PM PDT -ExperimentsInHonesty,2021-10-17T23:39:50Z,- ExperimentsInHonesty commented on issue: [2368](https://github.com/hackforla/website/issues/2368#issuecomment-945218220) at 2021-10-17 04:39 PM PDT -ExperimentsInHonesty,2021-10-18T04:25:11Z,- ExperimentsInHonesty opened issue: [2370](https://github.com/hackforla/website/issues/2370) at 2021-10-17 09:25 PM PDT -ExperimentsInHonesty,2021-10-20T19:08:10Z,- ExperimentsInHonesty commented on issue: [1879](https://github.com/hackforla/website/issues/1879#issuecomment-947957190) at 2021-10-20 12:08 PM PDT -ExperimentsInHonesty,2021-10-20T19:08:12Z,- ExperimentsInHonesty closed issue as completed: [1879](https://github.com/hackforla/website/issues/1879#event-5494005571) at 2021-10-20 12:08 PM PDT -ExperimentsInHonesty,2021-10-20T19:16:38Z,- ExperimentsInHonesty commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-947963137) at 2021-10-20 12:16 PM PDT -ExperimentsInHonesty,2021-10-20T19:18:13Z,- ExperimentsInHonesty commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-947964221) at 2021-10-20 12:18 PM PDT -ExperimentsInHonesty,2021-10-20T20:23:58Z,- ExperimentsInHonesty commented on issue: [2037](https://github.com/hackforla/website/issues/2037#issuecomment-948008806) at 2021-10-20 01:23 PM PDT -ExperimentsInHonesty,2021-10-20T21:09:31Z,- ExperimentsInHonesty opened issue: [2382](https://github.com/hackforla/website/issues/2382) at 2021-10-20 02:09 PM PDT -ExperimentsInHonesty,2021-10-20T21:27:48Z,- ExperimentsInHonesty opened issue: [2383](https://github.com/hackforla/website/issues/2383) at 2021-10-20 02:27 PM PDT -ExperimentsInHonesty,2021-10-20T21:56:02Z,- ExperimentsInHonesty opened issue: [2384](https://github.com/hackforla/website/issues/2384) at 2021-10-20 02:56 PM PDT -ExperimentsInHonesty,2021-10-21T00:45:54Z,- ExperimentsInHonesty commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-948142755) at 2021-10-20 05:45 PM PDT -ExperimentsInHonesty,2021-10-24T18:43:20Z,- ExperimentsInHonesty commented on issue: [2213](https://github.com/hackforla/website/issues/2213#issuecomment-950374042) at 2021-10-24 11:43 AM PDT -ExperimentsInHonesty,2021-10-24T21:35:41Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-950398947) at 2021-10-24 02:35 PM PDT -ExperimentsInHonesty,2021-10-24T21:42:50Z,- ExperimentsInHonesty commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-950399921) at 2021-10-24 02:42 PM PDT -ExperimentsInHonesty,2021-10-24T21:47:46Z,- ExperimentsInHonesty commented on issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-950400542) at 2021-10-24 02:47 PM PDT -ExperimentsInHonesty,2021-10-24T22:27:46Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-950406006) at 2021-10-24 03:27 PM PDT -ExperimentsInHonesty,2021-10-24T22:27:48Z,- ExperimentsInHonesty reopened issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-950406006) at 2021-10-24 03:27 PM PDT -ExperimentsInHonesty,2021-10-26T19:14:12Z,- ExperimentsInHonesty commented on issue: [2389](https://github.com/hackforla/website/issues/2389#issuecomment-952234495) at 2021-10-26 12:14 PM PDT -ExperimentsInHonesty,2021-10-26T21:42:59Z,- ExperimentsInHonesty opened issue: [2401](https://github.com/hackforla/website/issues/2401) at 2021-10-26 02:42 PM PDT -ExperimentsInHonesty,2021-10-29T02:52:32Z,- ExperimentsInHonesty opened issue: [2407](https://github.com/hackforla/website/issues/2407) at 2021-10-28 07:52 PM PDT -ExperimentsInHonesty,2021-10-31T22:34:47Z,- ExperimentsInHonesty commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-955803705) at 2021-10-31 03:34 PM PDT -ExperimentsInHonesty,2021-10-31T22:36:57Z,- ExperimentsInHonesty commented on issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-955803991) at 2021-10-31 03:36 PM PDT -ExperimentsInHonesty,2021-10-31T22:36:58Z,- ExperimentsInHonesty reopened issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-955803991) at 2021-10-31 03:36 PM PDT -ExperimentsInHonesty,2021-10-31T23:05:22Z,- ExperimentsInHonesty commented on issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-955807865) at 2021-10-31 04:05 PM PDT -ExperimentsInHonesty,2021-10-31T23:05:22Z,- ExperimentsInHonesty reopened issue: [2364](https://github.com/hackforla/website/issues/2364#issuecomment-955807865) at 2021-10-31 04:05 PM PDT -ExperimentsInHonesty,2021-10-31T23:08:59Z,- ExperimentsInHonesty commented on issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-955808538) at 2021-10-31 04:08 PM PDT -ExperimentsInHonesty,2021-10-31T23:09:02Z,- ExperimentsInHonesty reopened issue: [2386](https://github.com/hackforla/website/issues/2386#issuecomment-955808538) at 2021-10-31 04:09 PM PDT -ExperimentsInHonesty,2021-11-01T03:22:29Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-955895641) at 2021-10-31 08:22 PM PDT -ExperimentsInHonesty,2021-11-01T03:25:34Z,- ExperimentsInHonesty commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-955896887) at 2021-10-31 08:25 PM PDT -ExperimentsInHonesty,2021-11-01T03:25:34Z,- ExperimentsInHonesty closed issue as completed: [1995](https://github.com/hackforla/website/issues/1995#event-5546396792) at 2021-10-31 08:25 PM PDT -ExperimentsInHonesty,2021-11-01T03:32:10Z,- ExperimentsInHonesty commented on issue: [798](https://github.com/hackforla/website/issues/798#issuecomment-955899056) at 2021-10-31 08:32 PM PDT -ExperimentsInHonesty,2021-11-01T03:32:10Z,- ExperimentsInHonesty closed issue as completed: [798](https://github.com/hackforla/website/issues/798#event-5546411953) at 2021-10-31 08:32 PM PDT -ExperimentsInHonesty,2021-11-01T03:45:29Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-955902595) at 2021-10-31 08:45 PM PDT -ExperimentsInHonesty,2021-11-01T04:09:50Z,- ExperimentsInHonesty unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2021-10-31 09:09 PM PDT -ExperimentsInHonesty,2021-11-01T05:06:12Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-955935531) at 2021-10-31 10:06 PM PDT -ExperimentsInHonesty,2021-11-01T05:19:59Z,- ExperimentsInHonesty commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-955942070) at 2021-10-31 10:19 PM PDT -ExperimentsInHonesty,2021-11-01T05:21:16Z,- ExperimentsInHonesty assigned to issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-955942070) at 2021-10-31 10:21 PM PDT -ExperimentsInHonesty,2021-11-01T06:34:55Z,- ExperimentsInHonesty commented on issue: [2383](https://github.com/hackforla/website/issues/2383#issuecomment-955971504) at 2021-10-31 11:34 PM PDT -ExperimentsInHonesty,2021-11-01T08:21:53Z,- ExperimentsInHonesty commented on issue: [2383](https://github.com/hackforla/website/issues/2383#issuecomment-956029832) at 2021-11-01 01:21 AM PDT -ExperimentsInHonesty,2021-11-01T08:41:04Z,- ExperimentsInHonesty commented on issue: [2396](https://github.com/hackforla/website/issues/2396#issuecomment-956040984) at 2021-11-01 01:41 AM PDT -ExperimentsInHonesty,2021-11-01T20:15:15Z,- ExperimentsInHonesty opened issue: [2419](https://github.com/hackforla/website/issues/2419) at 2021-11-01 01:15 PM PDT -ExperimentsInHonesty,2021-11-03T02:20:14Z,- ExperimentsInHonesty commented on issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-958603000) at 2021-11-02 07:20 PM PDT -ExperimentsInHonesty,2021-11-03T02:23:32Z,- ExperimentsInHonesty reopened issue: [2232](https://github.com/hackforla/website/issues/2232#issuecomment-958603000) at 2021-11-02 07:23 PM PDT -ExperimentsInHonesty,2021-11-03T02:52:29Z,- ExperimentsInHonesty commented on issue: [1256](https://github.com/hackforla/website/issues/1256#issuecomment-958612586) at 2021-11-02 07:52 PM PDT -ExperimentsInHonesty,2021-11-03T02:52:29Z,- ExperimentsInHonesty closed issue as completed: [1256](https://github.com/hackforla/website/issues/1256#event-5559230273) at 2021-11-02 07:52 PM PDT -ExperimentsInHonesty,2021-11-03T02:55:30Z,- ExperimentsInHonesty closed issue as completed: [2422](https://github.com/hackforla/website/issues/2422#event-5559236268) at 2021-11-02 07:55 PM PDT -ExperimentsInHonesty,2021-11-03T02:56:44Z,- ExperimentsInHonesty commented on issue: [2422](https://github.com/hackforla/website/issues/2422#issuecomment-958613680) at 2021-11-02 07:56 PM PDT -ExperimentsInHonesty,2021-11-03T02:58:58Z,- ExperimentsInHonesty commented on issue: [2154](https://github.com/hackforla/website/issues/2154#issuecomment-958614209) at 2021-11-02 07:58 PM PDT -ExperimentsInHonesty,2021-11-03T02:58:58Z,- ExperimentsInHonesty closed issue as completed: [2154](https://github.com/hackforla/website/issues/2154#event-5559243031) at 2021-11-02 07:58 PM PDT -ExperimentsInHonesty,2021-11-03T23:56:33Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-960303560) at 2021-11-03 04:56 PM PDT -ExperimentsInHonesty,2021-11-04T23:23:40Z,- ExperimentsInHonesty commented on issue: [2450](https://github.com/hackforla/website/issues/2450#issuecomment-961505914) at 2021-11-04 04:23 PM PDT -ExperimentsInHonesty,2021-11-07T18:20:47Z,- ExperimentsInHonesty closed issue as completed: [2460](https://github.com/hackforla/website/issues/2460#event-5579379442) at 2021-11-07 10:20 AM PST -ExperimentsInHonesty,2021-11-07T18:20:53Z,- ExperimentsInHonesty reopened issue: [2460](https://github.com/hackforla/website/issues/2460#event-5579379442) at 2021-11-07 10:20 AM PST -ExperimentsInHonesty,2021-11-07T18:57:43Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-962662864) at 2021-11-07 10:57 AM PST -ExperimentsInHonesty,2021-11-08T15:41:14Z,- ExperimentsInHonesty opened issue: [2462](https://github.com/hackforla/website/issues/2462) at 2021-11-08 07:41 AM PST -ExperimentsInHonesty,2021-11-09T18:57:34Z,- ExperimentsInHonesty commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-964442519) at 2021-11-09 10:57 AM PST -ExperimentsInHonesty,2021-11-09T18:57:35Z,- ExperimentsInHonesty closed issue as completed: [1989](https://github.com/hackforla/website/issues/1989#event-5591955588) at 2021-11-09 10:57 AM PST -ExperimentsInHonesty,2021-11-10T16:19:08Z,- ExperimentsInHonesty commented on issue: [2295](https://github.com/hackforla/website/issues/2295#issuecomment-965504764) at 2021-11-10 08:19 AM PST -ExperimentsInHonesty,2021-11-10T20:20:55Z,- ExperimentsInHonesty commented on issue: [2468](https://github.com/hackforla/website/issues/2468#issuecomment-965714297) at 2021-11-10 12:20 PM PST -ExperimentsInHonesty,2021-11-10T20:39:50Z,- ExperimentsInHonesty opened pull request: [2472](https://github.com/hackforla/website/pull/2472) at 2021-11-10 12:39 PM PST -ExperimentsInHonesty,2021-11-10T20:41:16Z,- ExperimentsInHonesty closed issue by PR 2472: [2389](https://github.com/hackforla/website/issues/2389#event-5599866758) at 2021-11-10 12:41 PM PST -ExperimentsInHonesty,2021-11-10T20:41:16Z,- ExperimentsInHonesty pull request merged: [2472](https://github.com/hackforla/website/pull/2472#event-5599866772) at 2021-11-10 12:41 PM PST -ExperimentsInHonesty,2021-11-10T21:06:47Z,- ExperimentsInHonesty commented on issue: [221](https://github.com/hackforla/website/issues/221#issuecomment-965745770) at 2021-11-10 01:06 PM PST -ExperimentsInHonesty,2021-11-10T21:16:54Z,- ExperimentsInHonesty commented on issue: [2360](https://github.com/hackforla/website/issues/2360#issuecomment-965752506) at 2021-11-10 01:16 PM PST -ExperimentsInHonesty,2021-11-10T21:16:54Z,- ExperimentsInHonesty closed issue as completed: [2360](https://github.com/hackforla/website/issues/2360#event-5600029650) at 2021-11-10 01:16 PM PST -ExperimentsInHonesty,2021-11-11T00:53:34Z,- ExperimentsInHonesty commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-965895271) at 2021-11-10 04:53 PM PST -ExperimentsInHonesty,2021-11-12T18:32:11Z,- ExperimentsInHonesty opened issue: [2477](https://github.com/hackforla/website/issues/2477) at 2021-11-12 10:32 AM PST -ExperimentsInHonesty,2021-11-12T18:33:28Z,- ExperimentsInHonesty commented on issue: [2477](https://github.com/hackforla/website/issues/2477#issuecomment-967330027) at 2021-11-12 10:33 AM PST -ExperimentsInHonesty,2021-11-14T18:15:15Z,- ExperimentsInHonesty commented on issue: [1708](https://github.com/hackforla/website/issues/1708#issuecomment-968339562) at 2021-11-14 10:15 AM PST -ExperimentsInHonesty,2021-11-14T18:20:17Z,- ExperimentsInHonesty opened issue: [2481](https://github.com/hackforla/website/issues/2481) at 2021-11-14 10:20 AM PST -ExperimentsInHonesty,2021-11-14T18:49:02Z,- ExperimentsInHonesty commented on issue: [2130](https://github.com/hackforla/website/issues/2130#issuecomment-968343733) at 2021-11-14 10:49 AM PST -ExperimentsInHonesty,2021-11-14T18:49:02Z,- ExperimentsInHonesty closed issue as completed: [2130](https://github.com/hackforla/website/issues/2130#event-5614601659) at 2021-11-14 10:49 AM PST -ExperimentsInHonesty,2021-11-14T19:22:05Z,- ExperimentsInHonesty commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-968348767) at 2021-11-14 11:22 AM PST -ExperimentsInHonesty,2021-11-14T19:27:45Z,- ExperimentsInHonesty commented on issue: [2357](https://github.com/hackforla/website/issues/2357#issuecomment-968349565) at 2021-11-14 11:27 AM PST -ExperimentsInHonesty,2021-11-14T19:30:22Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-968349924) at 2021-11-14 11:30 AM PST -ExperimentsInHonesty,2021-11-14T23:32:15Z,- ExperimentsInHonesty commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-968386451) at 2021-11-14 03:32 PM PST -ExperimentsInHonesty,2021-11-16T05:18:41Z,- ExperimentsInHonesty commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-969869484) at 2021-11-15 09:18 PM PST -ExperimentsInHonesty,2021-11-16T05:18:41Z,- ExperimentsInHonesty reopened issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-969869484) at 2021-11-15 09:18 PM PST -ExperimentsInHonesty,2021-11-17T20:21:07Z,- ExperimentsInHonesty commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-971954262) at 2021-11-17 12:21 PM PST -ExperimentsInHonesty,2021-11-17T20:26:29Z,- ExperimentsInHonesty commented on issue: [186](https://github.com/hackforla/website/issues/186#issuecomment-971962314) at 2021-11-17 12:26 PM PST -ExperimentsInHonesty,2021-11-17T20:43:30Z,- ExperimentsInHonesty commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-971988754) at 2021-11-17 12:43 PM PST -ExperimentsInHonesty,2021-11-21T23:31:03Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-974919766) at 2021-11-21 03:31 PM PST -ExperimentsInHonesty,2021-11-21T23:32:08Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-974919932) at 2021-11-21 03:32 PM PST -ExperimentsInHonesty,2021-11-21T23:50:04Z,- ExperimentsInHonesty opened pull request: [2508](https://github.com/hackforla/website/pull/2508) at 2021-11-21 03:50 PM PST -ExperimentsInHonesty,2021-11-21T23:50:34Z,- ExperimentsInHonesty pull request merged: [2508](https://github.com/hackforla/website/pull/2508#event-5650681292) at 2021-11-21 03:50 PM PST -ExperimentsInHonesty,2021-11-21T23:51:52Z,- ExperimentsInHonesty opened pull request: [2509](https://github.com/hackforla/website/pull/2509) at 2021-11-21 03:51 PM PST -ExperimentsInHonesty,2021-11-21T23:51:59Z,- ExperimentsInHonesty pull request merged: [2509](https://github.com/hackforla/website/pull/2509#event-5650684054) at 2021-11-21 03:51 PM PST -ExperimentsInHonesty,2021-11-21T23:59:14Z,- ExperimentsInHonesty commented on issue: [2291](https://github.com/hackforla/website/issues/2291#issuecomment-974924313) at 2021-11-21 03:59 PM PST -ExperimentsInHonesty,2021-11-21T23:59:21Z,- ExperimentsInHonesty closed issue as completed: [2291](https://github.com/hackforla/website/issues/2291#event-5650697388) at 2021-11-21 03:59 PM PST -ExperimentsInHonesty,2021-11-24T20:54:18Z,- ExperimentsInHonesty opened issue: [2515](https://github.com/hackforla/website/issues/2515) at 2021-11-24 12:54 PM PST -ExperimentsInHonesty,2021-11-24T20:56:11Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-978213787) at 2021-11-24 12:56 PM PST -ExperimentsInHonesty,2021-11-24T21:22:06Z,- ExperimentsInHonesty commented on issue: [2447](https://github.com/hackforla/website/issues/2447#issuecomment-978235511) at 2021-11-24 01:22 PM PST -ExperimentsInHonesty,2021-11-24T21:26:11Z,- ExperimentsInHonesty commented on issue: [2448](https://github.com/hackforla/website/issues/2448#issuecomment-978243150) at 2021-11-24 01:26 PM PST -ExperimentsInHonesty,2021-11-24T21:31:32Z,- ExperimentsInHonesty commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-978252890) at 2021-11-24 01:31 PM PST -ExperimentsInHonesty,2021-11-24T21:32:34Z,- ExperimentsInHonesty closed issue as completed: [1708](https://github.com/hackforla/website/issues/1708#event-5669472966) at 2021-11-24 01:32 PM PST -ExperimentsInHonesty,2021-11-28T18:15:25Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-981128477) at 2021-11-28 10:15 AM PST -ExperimentsInHonesty,2021-11-28T18:23:02Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-981129406) at 2021-11-28 10:23 AM PST -ExperimentsInHonesty,2021-11-28T18:37:34Z,- ExperimentsInHonesty commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-981131319) at 2021-11-28 10:37 AM PST -ExperimentsInHonesty,2021-11-28T19:01:32Z,- ExperimentsInHonesty commented on issue: [2486](https://github.com/hackforla/website/issues/2486#issuecomment-981134650) at 2021-11-28 11:01 AM PST -ExperimentsInHonesty,2021-11-28T19:07:55Z,- ExperimentsInHonesty commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-981135530) at 2021-11-28 11:07 AM PST -ExperimentsInHonesty,2021-11-28T20:15:15Z,- ExperimentsInHonesty commented on issue: [2446](https://github.com/hackforla/website/issues/2446#issuecomment-981144886) at 2021-11-28 12:15 PM PST -ExperimentsInHonesty,2021-12-05T19:15:36Z,- ExperimentsInHonesty commented on issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-986284750) at 2021-12-05 11:15 AM PST -ExperimentsInHonesty,2021-12-05T19:15:36Z,- ExperimentsInHonesty reopened issue: [2496](https://github.com/hackforla/website/issues/2496#issuecomment-986284750) at 2021-12-05 11:15 AM PST -ExperimentsInHonesty,2021-12-05T19:23:43Z,- ExperimentsInHonesty closed issue as completed: [2486](https://github.com/hackforla/website/issues/2486#event-5717131529) at 2021-12-05 11:23 AM PST -ExperimentsInHonesty,2021-12-05T23:14:22Z,- ExperimentsInHonesty commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-986319595) at 2021-12-05 03:14 PM PST -ExperimentsInHonesty,2021-12-05T23:14:22Z,- ExperimentsInHonesty reopened issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-986319595) at 2021-12-05 03:14 PM PST -ExperimentsInHonesty,2021-12-05T23:30:51Z,- ExperimentsInHonesty commented on issue: [2544](https://github.com/hackforla/website/issues/2544#issuecomment-986323170) at 2021-12-05 03:30 PM PST -ExperimentsInHonesty,2021-12-06T00:07:28Z,- ExperimentsInHonesty commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-986329902) at 2021-12-05 04:07 PM PST -ExperimentsInHonesty,2021-12-06T00:07:32Z,- ExperimentsInHonesty assigned to issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-986329902) at 2021-12-05 04:07 PM PST -ExperimentsInHonesty,2021-12-07T03:32:46Z,- ExperimentsInHonesty opened issue: [2552](https://github.com/hackforla/website/issues/2552) at 2021-12-06 07:32 PM PST -ExperimentsInHonesty,2021-12-07T03:35:07Z,- ExperimentsInHonesty commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-987538036) at 2021-12-06 07:35 PM PST -ExperimentsInHonesty,2021-12-08T20:47:36Z,- ExperimentsInHonesty commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-989182930) at 2021-12-08 12:47 PM PST -ExperimentsInHonesty,2021-12-09T03:47:52Z,- ExperimentsInHonesty opened pull request: [2565](https://github.com/hackforla/website/pull/2565) at 2021-12-08 07:47 PM PST -ExperimentsInHonesty,2021-12-09T04:12:36Z,- ExperimentsInHonesty pull request merged: [2565](https://github.com/hackforla/website/pull/2565#event-5738182540) at 2021-12-08 08:12 PM PST -ExperimentsInHonesty,2021-12-11T18:55:22Z,- ExperimentsInHonesty opened issue: [2576](https://github.com/hackforla/website/issues/2576) at 2021-12-11 10:55 AM PST -ExperimentsInHonesty,2021-12-11T19:08:28Z,- ExperimentsInHonesty commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-991752279) at 2021-12-11 11:08 AM PST -ExperimentsInHonesty,2021-12-12T18:52:31Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-991951023) at 2021-12-12 10:52 AM PST -ExperimentsInHonesty,2021-12-12T18:52:31Z,- ExperimentsInHonesty reopened issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-991951023) at 2021-12-12 10:52 AM PST -ExperimentsInHonesty,2021-12-12T18:55:25Z,- ExperimentsInHonesty commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-991951443) at 2021-12-12 10:55 AM PST -ExperimentsInHonesty,2021-12-12T18:55:25Z,- ExperimentsInHonesty reopened issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-991951443) at 2021-12-12 10:55 AM PST -ExperimentsInHonesty,2021-12-12T23:16:35Z,- ExperimentsInHonesty commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-991990130) at 2021-12-12 03:16 PM PST -ExperimentsInHonesty,2021-12-12T23:16:43Z,- ExperimentsInHonesty reopened issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-991990130) at 2021-12-12 03:16 PM PST -ExperimentsInHonesty,2021-12-12T23:17:44Z,- ExperimentsInHonesty commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-991990335) at 2021-12-12 03:17 PM PST -ExperimentsInHonesty,2021-12-12T23:36:14Z,- ExperimentsInHonesty commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-991993753) at 2021-12-12 03:36 PM PST -ExperimentsInHonesty,2021-12-12T23:57:18Z,- ExperimentsInHonesty commented on pull request: [2540](https://github.com/hackforla/website/pull/2540#issuecomment-991996705) at 2021-12-12 03:57 PM PST -ExperimentsInHonesty,2021-12-13T00:23:18Z,- ExperimentsInHonesty commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-992003343) at 2021-12-12 04:23 PM PST -ExperimentsInHonesty,2021-12-13T00:27:28Z,- ExperimentsInHonesty commented on issue: [2444](https://github.com/hackforla/website/issues/2444#issuecomment-992004414) at 2021-12-12 04:27 PM PST -ExperimentsInHonesty,2021-12-13T00:33:01Z,- ExperimentsInHonesty commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-992006018) at 2021-12-12 04:33 PM PST -ExperimentsInHonesty,2021-12-13T00:34:50Z,- ExperimentsInHonesty commented on issue: [2487](https://github.com/hackforla/website/issues/2487#issuecomment-992006575) at 2021-12-12 04:34 PM PST -ExperimentsInHonesty,2021-12-13T00:41:40Z,- ExperimentsInHonesty assigned to issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-12-12 04:41 PM PST -ExperimentsInHonesty,2021-12-13T00:41:44Z,- ExperimentsInHonesty unassigned from issue: [2311](https://github.com/hackforla/website/issues/2311#issuecomment-950029160) at 2021-12-12 04:41 PM PST -ExperimentsInHonesty,2021-12-13T00:42:03Z,- ExperimentsInHonesty closed issue as completed: [2311](https://github.com/hackforla/website/issues/2311#event-5753550171) at 2021-12-12 04:42 PM PST -ExperimentsInHonesty,2021-12-13T00:43:35Z,- ExperimentsInHonesty commented on issue: [2312](https://github.com/hackforla/website/issues/2312#issuecomment-992009154) at 2021-12-12 04:43 PM PST -ExperimentsInHonesty,2021-12-13T01:32:53Z,- ExperimentsInHonesty commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-992031363) at 2021-12-12 05:32 PM PST -ExperimentsInHonesty,2021-12-13T01:37:05Z,- ExperimentsInHonesty commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-992033003) at 2021-12-12 05:37 PM PST -ExperimentsInHonesty,2021-12-13T01:41:58Z,- ExperimentsInHonesty commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-992034966) at 2021-12-12 05:41 PM PST -ExperimentsInHonesty,2021-12-14T00:11:02Z,- ExperimentsInHonesty opened issue: [2585](https://github.com/hackforla/website/issues/2585) at 2021-12-13 04:11 PM PST -ExperimentsInHonesty,2021-12-15T20:27:57Z,- ExperimentsInHonesty commented on issue: [2533](https://github.com/hackforla/website/issues/2533#issuecomment-995188563) at 2021-12-15 12:27 PM PST -ExperimentsInHonesty,2021-12-15T21:11:05Z,- ExperimentsInHonesty commented on issue: [2515](https://github.com/hackforla/website/issues/2515#issuecomment-995216618) at 2021-12-15 01:11 PM PST -ExperimentsInHonesty,2021-12-18T18:11:57Z,- ExperimentsInHonesty commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-997241408) at 2021-12-18 10:11 AM PST -ExperimentsInHonesty,2021-12-18T23:27:37Z,- ExperimentsInHonesty unassigned from issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-991941531) at 2021-12-18 03:27 PM PST -ExperimentsInHonesty,2021-12-19T19:46:01Z,- ExperimentsInHonesty reopened issue: [2361](https://github.com/hackforla/website/issues/2361#event-5788132194) at 2021-12-19 11:46 AM PST -ExperimentsInHonesty,2021-12-19T19:46:46Z,- ExperimentsInHonesty commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-997450208) at 2021-12-19 11:46 AM PST -ExperimentsInHonesty,2021-12-19T20:16:33Z,- ExperimentsInHonesty commented on issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-997454007) at 2021-12-19 12:16 PM PST -ExperimentsInHonesty,2021-12-19T20:16:43Z,- ExperimentsInHonesty reopened issue: [2417](https://github.com/hackforla/website/issues/2417#issuecomment-997454007) at 2021-12-19 12:16 PM PST -ExperimentsInHonesty,2021-12-19T20:16:46Z,- ExperimentsInHonesty closed issue by PR 2577: [2417](https://github.com/hackforla/website/issues/2417#event-5789506439) at 2021-12-19 12:16 PM PST -ExperimentsInHonesty,2021-12-19T20:50:36Z,- ExperimentsInHonesty opened issue: [2607](https://github.com/hackforla/website/issues/2607) at 2021-12-19 12:50 PM PST -ExperimentsInHonesty,2021-12-19T21:06:39Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997461322) at 2021-12-19 01:06 PM PST -ExperimentsInHonesty,2021-12-19T21:19:32Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 01:19 PM PST -ExperimentsInHonesty,2021-12-19T21:39:31Z,- ExperimentsInHonesty opened issue: [2608](https://github.com/hackforla/website/issues/2608) at 2021-12-19 01:39 PM PST -ExperimentsInHonesty,2021-12-19T21:40:51Z,- ExperimentsInHonesty commented on issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-997465987) at 2021-12-19 01:40 PM PST -ExperimentsInHonesty,2021-12-19T22:58:25Z,- ExperimentsInHonesty commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-997477244) at 2021-12-19 02:58 PM PST -ExperimentsInHonesty,2021-12-20T00:15:03Z,- ExperimentsInHonesty commented on issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-997490870) at 2021-12-19 04:15 PM PST -ExperimentsInHonesty,2021-12-20T00:17:57Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-997491553) at 2021-12-19 04:17 PM PST -ExperimentsInHonesty,2021-12-20T01:25:31Z,- ExperimentsInHonesty commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-997513785) at 2021-12-19 05:25 PM PST -ExperimentsInHonesty,2021-12-20T01:28:07Z,- ExperimentsInHonesty assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 05:28 PM PST -ExperimentsInHonesty,2021-12-21T00:08:41Z,- ExperimentsInHonesty assigned to issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-997465987) at 2021-12-20 04:08 PM PST -ExperimentsInHonesty,2021-12-21T00:10:08Z,- ExperimentsInHonesty commented on issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2021-12-20 04:10 PM PST -ExperimentsInHonesty,2021-12-21T00:24:43Z,- ExperimentsInHonesty commented on issue: [2020](https://github.com/hackforla/website/issues/2020#issuecomment-998368007) at 2021-12-20 04:24 PM PST -ExperimentsInHonesty,2021-12-21T00:24:43Z,- ExperimentsInHonesty closed issue as completed: [2020](https://github.com/hackforla/website/issues/2020#event-5795886775) at 2021-12-20 04:24 PM PST -ExperimentsInHonesty,2021-12-21T00:32:20Z,- ExperimentsInHonesty commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-998371099) at 2021-12-20 04:32 PM PST -ExperimentsInHonesty,2021-12-24T00:22:02Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1000576921) at 2021-12-23 04:22 PM PST -ExperimentsInHonesty,2021-12-26T17:35:24Z,- ExperimentsInHonesty commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1001218168) at 2021-12-26 09:35 AM PST -ExperimentsInHonesty,2021-12-26T18:41:11Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1001226283) at 2021-12-26 10:41 AM PST -ExperimentsInHonesty,2021-12-26T18:56:13Z,- ExperimentsInHonesty opened issue: [2631](https://github.com/hackforla/website/issues/2631) at 2021-12-26 10:56 AM PST -ExperimentsInHonesty,2021-12-26T18:59:38Z,- ExperimentsInHonesty commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1001227893) at 2021-12-26 10:59 AM PST -ExperimentsInHonesty,2021-12-26T19:10:14Z,- ExperimentsInHonesty commented on issue: [1323](https://github.com/hackforla/website/issues/1323#issuecomment-1001229052) at 2021-12-26 11:10 AM PST -ExperimentsInHonesty,2021-12-26T19:10:14Z,- ExperimentsInHonesty closed issue as completed: [1323](https://github.com/hackforla/website/issues/1323#event-5815846978) at 2021-12-26 11:10 AM PST -ExperimentsInHonesty,2021-12-29T20:23:05Z,- ExperimentsInHonesty commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-1002763549) at 2021-12-29 12:23 PM PST -ExperimentsInHonesty,2021-12-29T20:26:40Z,- ExperimentsInHonesty closed issue as completed: [2328](https://github.com/hackforla/website/issues/2328#event-5825991553) at 2021-12-29 12:26 PM PST -ExperimentsInHonesty,2021-12-29T20:30:10Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1002766018) at 2021-12-29 12:30 PM PST -ExperimentsInHonesty,2021-12-29T20:54:28Z,- ExperimentsInHonesty commented on issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-1002772918) at 2021-12-29 12:54 PM PST -ExperimentsInHonesty,2022-01-02T17:53:26Z,- ExperimentsInHonesty commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1003752150) at 2022-01-02 09:53 AM PST -ExperimentsInHonesty,2022-01-02T17:55:54Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1003752500) at 2022-01-02 09:55 AM PST -ExperimentsInHonesty,2022-01-02T17:58:52Z,- ExperimentsInHonesty commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003752864) at 2022-01-02 09:58 AM PST -ExperimentsInHonesty,2022-01-02T18:24:58Z,- ExperimentsInHonesty commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1003755937) at 2022-01-02 10:24 AM PST -ExperimentsInHonesty,2022-01-02T18:39:16Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1003757576) at 2022-01-02 10:39 AM PST -ExperimentsInHonesty,2022-01-02T18:42:51Z,- ExperimentsInHonesty commented on issue: [2419](https://github.com/hackforla/website/issues/2419#issuecomment-1003758008) at 2022-01-02 10:42 AM PST -ExperimentsInHonesty,2022-01-02T18:42:51Z,- ExperimentsInHonesty closed issue by PR 2556: [2419](https://github.com/hackforla/website/issues/2419#event-5832939176) at 2022-01-02 10:42 AM PST -ExperimentsInHonesty,2022-01-02T18:54:03Z,- ExperimentsInHonesty commented on issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1003759301) at 2022-01-02 10:54 AM PST -ExperimentsInHonesty,2022-01-02T18:54:03Z,- ExperimentsInHonesty reopened issue: [2513](https://github.com/hackforla/website/issues/2513#issuecomment-1003759301) at 2022-01-02 10:54 AM PST -ExperimentsInHonesty,2022-01-02T18:55:31Z,- ExperimentsInHonesty commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1003759458) at 2022-01-02 10:55 AM PST -ExperimentsInHonesty,2022-01-02T18:57:12Z,- ExperimentsInHonesty commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1003759670) at 2022-01-02 10:57 AM PST -ExperimentsInHonesty,2022-01-02T18:57:12Z,- ExperimentsInHonesty reopened issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1003759670) at 2022-01-02 10:57 AM PST -ExperimentsInHonesty,2022-01-02T19:56:25Z,- ExperimentsInHonesty commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003766779) at 2022-01-02 11:56 AM PST -ExperimentsInHonesty,2022-01-02T20:17:21Z,- ExperimentsInHonesty commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1003769340) at 2022-01-02 12:17 PM PST -ExperimentsInHonesty,2022-01-02T20:42:27Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1003772221) at 2022-01-02 12:42 PM PST -ExperimentsInHonesty,2022-01-02T20:56:52Z,- ExperimentsInHonesty commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003774061) at 2022-01-02 12:56 PM PST -ExperimentsInHonesty,2022-01-02T22:56:09Z,- ExperimentsInHonesty commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1003788176) at 2022-01-02 02:56 PM PST -ExperimentsInHonesty,2022-01-02T22:56:10Z,- ExperimentsInHonesty reopened issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1003788176) at 2022-01-02 02:56 PM PST -ExperimentsInHonesty,2022-01-05T20:29:17Z,- ExperimentsInHonesty opened issue: [2662](https://github.com/hackforla/website/issues/2662) at 2022-01-05 12:29 PM PST -ExperimentsInHonesty,2022-01-05T20:38:05Z,- ExperimentsInHonesty commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1006059938) at 2022-01-05 12:38 PM PST -ExperimentsInHonesty,2022-01-05T21:16:23Z,- ExperimentsInHonesty commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1006083245) at 2022-01-05 01:16 PM PST -ExperimentsInHonesty,2022-01-06T02:38:19Z,- ExperimentsInHonesty commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1006238215) at 2022-01-05 06:38 PM PST -ExperimentsInHonesty,2022-01-09T18:24:27Z,- ExperimentsInHonesty commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-09 10:24 AM PST -ExperimentsInHonesty,2022-01-11T04:18:31Z,- ExperimentsInHonesty unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -ExperimentsInHonesty,2022-01-11T04:18:40Z,- ExperimentsInHonesty assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -ExperimentsInHonesty,2022-01-12T20:22:42Z,- ExperimentsInHonesty commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1011420037) at 2022-01-12 12:22 PM PST -ExperimentsInHonesty,2022-01-12T20:38:00Z,- ExperimentsInHonesty commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1011431913) at 2022-01-12 12:38 PM PST -ExperimentsInHonesty,2022-01-12T20:45:24Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1011437076) at 2022-01-12 12:45 PM PST -ExperimentsInHonesty,2022-01-12T21:05:46Z,- ExperimentsInHonesty commented on issue: [2190](https://github.com/hackforla/website/issues/2190#issuecomment-1011450792) at 2022-01-12 01:05 PM PST -ExperimentsInHonesty,2022-01-15T23:16:52Z,- ExperimentsInHonesty reopened issue: [2664](https://github.com/hackforla/website/issues/2664#event-5888732675) at 2022-01-15 03:16 PM PST -ExperimentsInHonesty,2022-01-15T23:18:13Z,- ExperimentsInHonesty commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1013769729) at 2022-01-15 03:18 PM PST -ExperimentsInHonesty,2022-01-15T23:55:37Z,- ExperimentsInHonesty commented on issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-1013777193) at 2022-01-15 03:55 PM PST -ExperimentsInHonesty,2022-01-16T00:26:43Z,- ExperimentsInHonesty commented on issue: [2656](https://github.com/hackforla/website/issues/2656#issuecomment-1013781729) at 2022-01-15 04:26 PM PST -ExperimentsInHonesty,2022-01-16T19:28:42Z,- ExperimentsInHonesty commented on issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1013937116) at 2022-01-16 11:28 AM PST -ExperimentsInHonesty,2022-01-16T19:28:42Z,- ExperimentsInHonesty closed issue by PR 2594: [2408](https://github.com/hackforla/website/issues/2408#event-5900708128) at 2022-01-16 11:28 AM PST -ExperimentsInHonesty,2022-01-16T19:28:45Z,- ExperimentsInHonesty reopened issue: [2408](https://github.com/hackforla/website/issues/2408#event-5900708128) at 2022-01-16 11:28 AM PST -ExperimentsInHonesty,2022-01-16T19:29:31Z,- ExperimentsInHonesty commented on issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1013937251) at 2022-01-16 11:29 AM PST -ExperimentsInHonesty,2022-01-16T19:34:30Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1013938006) at 2022-01-16 11:34 AM PST -ExperimentsInHonesty,2022-01-16T19:55:34Z,- ExperimentsInHonesty commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1013941235) at 2022-01-16 11:55 AM PST -ExperimentsInHonesty,2022-01-16T20:07:33Z,- ExperimentsInHonesty commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1013943263) at 2022-01-16 12:07 PM PST -ExperimentsInHonesty,2022-01-16T22:16:13Z,- ExperimentsInHonesty opened issue: [2688](https://github.com/hackforla/website/issues/2688) at 2022-01-16 02:16 PM PST -ExperimentsInHonesty,2022-01-16T22:22:23Z,- ExperimentsInHonesty opened issue: [2689](https://github.com/hackforla/website/issues/2689) at 2022-01-16 02:22 PM PST -ExperimentsInHonesty,2022-01-16T22:29:43Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1013965643) at 2022-01-16 02:29 PM PST -ExperimentsInHonesty,2022-01-16T22:46:08Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1013968144) at 2022-01-16 02:46 PM PST -ExperimentsInHonesty,2022-01-16T22:48:05Z,- ExperimentsInHonesty commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1013968447) at 2022-01-16 02:48 PM PST -ExperimentsInHonesty,2022-01-16T22:50:53Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1013968892) at 2022-01-16 02:50 PM PST -ExperimentsInHonesty,2022-01-16T23:03:40Z,- ExperimentsInHonesty commented on issue: [2374](https://github.com/hackforla/website/issues/2374#issuecomment-1013970971) at 2022-01-16 03:03 PM PST -ExperimentsInHonesty,2022-01-16T23:03:41Z,- ExperimentsInHonesty closed issue as completed: [2374](https://github.com/hackforla/website/issues/2374#event-5900923707) at 2022-01-16 03:03 PM PST -ExperimentsInHonesty,2022-01-18T19:27:30Z,- ExperimentsInHonesty opened issue: [2698](https://github.com/hackforla/website/issues/2698) at 2022-01-18 11:27 AM PST -ExperimentsInHonesty,2022-01-18T20:27:50Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1015807358) at 2022-01-18 12:27 PM PST -ExperimentsInHonesty,2022-01-18T20:43:40Z,- ExperimentsInHonesty commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1015818331) at 2022-01-18 12:43 PM PST -ExperimentsInHonesty,2022-01-18T20:51:04Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1015823228) at 2022-01-18 12:51 PM PST -ExperimentsInHonesty,2022-01-18T21:02:41Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1015830884) at 2022-01-18 01:02 PM PST -ExperimentsInHonesty,2022-01-19T20:22:41Z,- ExperimentsInHonesty commented on issue: [2685](https://github.com/hackforla/website/issues/2685#issuecomment-1016838085) at 2022-01-19 12:22 PM PST -ExperimentsInHonesty,2022-01-20T21:08:53Z,- ExperimentsInHonesty commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1017929598) at 2022-01-20 01:08 PM PST -ExperimentsInHonesty,2022-01-22T16:24:01Z,- ExperimentsInHonesty opened issue: [2711](https://github.com/hackforla/website/issues/2711) at 2022-01-22 08:24 AM PST -ExperimentsInHonesty,2022-01-22T16:29:07Z,- ExperimentsInHonesty commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1019303343) at 2022-01-22 08:29 AM PST -ExperimentsInHonesty,2022-01-23T18:27:24Z,- ExperimentsInHonesty commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1019540777) at 2022-01-23 10:27 AM PST -ExperimentsInHonesty,2022-01-23T19:03:30Z,- ExperimentsInHonesty reopened issue: [2500](https://github.com/hackforla/website/issues/2500#event-5927927110) at 2022-01-23 11:03 AM PST -ExperimentsInHonesty,2022-01-23T19:05:21Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1019547059) at 2022-01-23 11:05 AM PST -ExperimentsInHonesty,2022-01-23T19:05:21Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1019547059) at 2022-01-23 11:05 AM PST -ExperimentsInHonesty,2022-01-23T19:44:44Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1019553870) at 2022-01-23 11:44 AM PST -ExperimentsInHonesty,2022-01-23T19:48:11Z,- ExperimentsInHonesty commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1019554354) at 2022-01-23 11:48 AM PST -ExperimentsInHonesty,2022-01-23T20:16:45Z,- ExperimentsInHonesty commented on issue: [2287](https://github.com/hackforla/website/issues/2287#issuecomment-1019559014) at 2022-01-23 12:16 PM PST -ExperimentsInHonesty,2022-01-25T00:24:34Z,- ExperimentsInHonesty commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1020684231) at 2022-01-24 04:24 PM PST -ExperimentsInHonesty,2022-01-25T00:26:28Z,- ExperimentsInHonesty closed issue as completed: [2585](https://github.com/hackforla/website/issues/2585#event-5946337041) at 2022-01-24 04:26 PM PST -ExperimentsInHonesty,2022-01-25T00:44:47Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1020694782) at 2022-01-24 04:44 PM PST -ExperimentsInHonesty,2022-01-25T19:46:37Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1021547504) at 2022-01-25 11:46 AM PST -ExperimentsInHonesty,2022-01-25T20:06:25Z,- ExperimentsInHonesty commented on issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021562766) at 2022-01-25 12:06 PM PST -ExperimentsInHonesty,2022-01-27T22:40:30Z,- ExperimentsInHonesty commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1023707635) at 2022-01-27 02:40 PM PST -ExperimentsInHonesty,2022-01-28T03:09:24Z,- ExperimentsInHonesty commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-1023844303) at 2022-01-27 07:09 PM PST -ExperimentsInHonesty,2022-01-31T19:48:22Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1026145964) at 2022-01-31 11:48 AM PST -ExperimentsInHonesty,2022-01-31T19:56:08Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1026151766) at 2022-01-31 11:56 AM PST -ExperimentsInHonesty,2022-02-01T20:43:53Z,- ExperimentsInHonesty commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1027269389) at 2022-02-01 12:43 PM PST -ExperimentsInHonesty,2022-02-02T16:53:37Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1028143671) at 2022-02-02 08:53 AM PST -ExperimentsInHonesty,2022-02-02T20:00:27Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1028308101) at 2022-02-02 12:00 PM PST -ExperimentsInHonesty,2022-02-02T21:30:30Z,- ExperimentsInHonesty opened issue: [2733](https://github.com/hackforla/website/issues/2733) at 2022-02-02 01:30 PM PST -ExperimentsInHonesty,2022-02-02T21:31:39Z,- ExperimentsInHonesty commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1028376909) at 2022-02-02 01:31 PM PST -ExperimentsInHonesty,2022-02-02T21:43:13Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1028385806) at 2022-02-02 01:43 PM PST -ExperimentsInHonesty,2022-02-02T21:47:17Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1028388959) at 2022-02-02 01:47 PM PST -ExperimentsInHonesty,2022-02-02T22:00:41Z,- ExperimentsInHonesty closed issue as completed: [2500](https://github.com/hackforla/website/issues/2500#event-5998902139) at 2022-02-02 02:00 PM PST -ExperimentsInHonesty,2022-02-05T00:58:06Z,- ExperimentsInHonesty commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1030472118) at 2022-02-04 04:58 PM PST -ExperimentsInHonesty,2022-02-06T18:25:46Z,- ExperimentsInHonesty commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1030887357) at 2022-02-06 10:25 AM PST -ExperimentsInHonesty,2022-02-06T18:52:14Z,- ExperimentsInHonesty commented on issue: [2497](https://github.com/hackforla/website/issues/2497#issuecomment-1030891657) at 2022-02-06 10:52 AM PST -ExperimentsInHonesty,2022-02-06T18:52:14Z,- ExperimentsInHonesty closed issue as completed: [2497](https://github.com/hackforla/website/issues/2497#event-6015401553) at 2022-02-06 10:52 AM PST -ExperimentsInHonesty,2022-02-06T18:53:49Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1030891877) at 2022-02-06 10:53 AM PST -ExperimentsInHonesty,2022-02-06T18:53:49Z,- ExperimentsInHonesty closed issue as completed: [2606](https://github.com/hackforla/website/issues/2606#event-6015403062) at 2022-02-06 10:53 AM PST -ExperimentsInHonesty,2022-02-08T19:51:52Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1033000940) at 2022-02-08 11:51 AM PST -ExperimentsInHonesty,2022-02-08T19:52:11Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1033001160) at 2022-02-08 11:52 AM PST -ExperimentsInHonesty,2022-02-09T01:36:17Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1033241006) at 2022-02-08 05:36 PM PST -ExperimentsInHonesty,2022-02-09T01:47:54Z,- ExperimentsInHonesty opened issue: [2754](https://github.com/hackforla/website/issues/2754) at 2022-02-08 05:47 PM PST -ExperimentsInHonesty,2022-02-09T01:52:55Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1033250666) at 2022-02-08 05:52 PM PST -ExperimentsInHonesty,2022-02-09T02:17:37Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1033269085) at 2022-02-08 06:17 PM PST -ExperimentsInHonesty,2022-02-09T20:13:13Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1034152051) at 2022-02-09 12:13 PM PST -ExperimentsInHonesty,2022-02-09T20:13:24Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1034152226) at 2022-02-09 12:13 PM PST -ExperimentsInHonesty,2022-02-11T01:43:16Z,- ExperimentsInHonesty opened issue: [2763](https://github.com/hackforla/website/issues/2763) at 2022-02-10 05:43 PM PST -ExperimentsInHonesty,2022-02-11T01:43:25Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1035708480) at 2022-02-10 05:43 PM PST -ExperimentsInHonesty,2022-02-11T01:45:17Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1035709161) at 2022-02-10 05:45 PM PST -ExperimentsInHonesty,2022-02-11T01:45:17Z,- ExperimentsInHonesty closed issue as completed: [2763](https://github.com/hackforla/website/issues/2763#event-6047300984) at 2022-02-10 05:45 PM PST -ExperimentsInHonesty,2022-02-11T01:45:21Z,- ExperimentsInHonesty reopened issue: [2763](https://github.com/hackforla/website/issues/2763#event-6047300984) at 2022-02-10 05:45 PM PST -ExperimentsInHonesty,2022-02-20T18:09:39Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1046291929) at 2022-02-20 10:09 AM PST -ExperimentsInHonesty,2022-02-20T18:17:49Z,- ExperimentsInHonesty commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1046293286) at 2022-02-20 10:17 AM PST -ExperimentsInHonesty,2022-02-20T18:20:13Z,- ExperimentsInHonesty commented on issue: [2703](https://github.com/hackforla/website/issues/2703#issuecomment-1046293657) at 2022-02-20 10:20 AM PST -ExperimentsInHonesty,2022-02-20T18:21:42Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1046293917) at 2022-02-20 10:21 AM PST -ExperimentsInHonesty,2022-02-23T03:16:31Z,- ExperimentsInHonesty commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1048413831) at 2022-02-22 07:16 PM PST -ExperimentsInHonesty,2022-02-26T23:48:49Z,- ExperimentsInHonesty commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1052804602) at 2022-02-26 03:48 PM PST -ExperimentsInHonesty,2022-02-26T23:50:11Z,- ExperimentsInHonesty commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1052806142) at 2022-02-26 03:50 PM PST -ExperimentsInHonesty,2022-02-26T23:50:51Z,- ExperimentsInHonesty commented on issue: [2681](https://github.com/hackforla/website/issues/2681#issuecomment-1052806897) at 2022-02-26 03:50 PM PST -ExperimentsInHonesty,2022-02-26T23:53:05Z,- ExperimentsInHonesty commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1052809357) at 2022-02-26 03:53 PM PST -ExperimentsInHonesty,2022-02-26T23:53:22Z,- ExperimentsInHonesty commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1052809684) at 2022-02-26 03:53 PM PST -ExperimentsInHonesty,2022-02-26T23:55:13Z,- ExperimentsInHonesty commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1052811747) at 2022-02-26 03:55 PM PST -ExperimentsInHonesty,2022-02-26T23:56:48Z,- ExperimentsInHonesty commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1052813625) at 2022-02-26 03:56 PM PST -ExperimentsInHonesty,2022-02-27T18:21:25Z,- ExperimentsInHonesty commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1053637657) at 2022-02-27 10:21 AM PST -ExperimentsInHonesty,2022-02-27T18:54:43Z,- ExperimentsInHonesty opened issue: [2900](https://github.com/hackforla/website/issues/2900) at 2022-02-27 10:54 AM PST -ExperimentsInHonesty,2022-03-01T19:52:24Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1055800960) at 2022-03-01 11:52 AM PST -ExperimentsInHonesty,2022-03-01T19:56:25Z,- ExperimentsInHonesty commented on issue: [1996](https://github.com/hackforla/website/issues/1996#issuecomment-1055803921) at 2022-03-01 11:56 AM PST -ExperimentsInHonesty,2022-03-01T19:56:26Z,- ExperimentsInHonesty closed issue as completed: [1996](https://github.com/hackforla/website/issues/1996#event-6164533627) at 2022-03-01 11:56 AM PST -ExperimentsInHonesty,2022-03-01T20:00:53Z,- ExperimentsInHonesty assigned to issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-884326655) at 2022-03-01 12:00 PM PST -ExperimentsInHonesty,2022-03-02T20:06:12Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1057330885) at 2022-03-02 12:06 PM PST -ExperimentsInHonesty,2022-03-02T20:23:37Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1057343771) at 2022-03-02 12:23 PM PST -ExperimentsInHonesty,2022-03-02T20:34:50Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1057353091) at 2022-03-02 12:34 PM PST -ExperimentsInHonesty,2022-03-03T21:52:06Z,- ExperimentsInHonesty opened issue: [2919](https://github.com/hackforla/website/issues/2919) at 2022-03-03 01:52 PM PST -ExperimentsInHonesty,2022-03-05T23:20:04Z,- ExperimentsInHonesty commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1059849162) at 2022-03-05 03:20 PM PST -ExperimentsInHonesty,2022-03-05T23:21:43Z,- ExperimentsInHonesty commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1059849611) at 2022-03-05 03:21 PM PST -ExperimentsInHonesty,2022-03-05T23:28:05Z,- ExperimentsInHonesty commented on issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1059850250) at 2022-03-05 03:28 PM PST -ExperimentsInHonesty,2022-03-05T23:32:42Z,- ExperimentsInHonesty commented on issue: [2838](https://github.com/hackforla/website/issues/2838#issuecomment-1059850869) at 2022-03-05 03:32 PM PST -ExperimentsInHonesty,2022-03-05T23:34:29Z,- ExperimentsInHonesty commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1059851100) at 2022-03-05 03:34 PM PST -ExperimentsInHonesty,2022-03-05T23:38:47Z,- ExperimentsInHonesty commented on issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1059851741) at 2022-03-05 03:38 PM PST -ExperimentsInHonesty,2022-03-06T00:07:26Z,- ExperimentsInHonesty closed issue as completed: [2773](https://github.com/hackforla/website/issues/2773#event-6189989281) at 2022-03-05 04:07 PM PST -ExperimentsInHonesty,2022-03-06T00:11:05Z,- ExperimentsInHonesty commented on issue: [2749](https://github.com/hackforla/website/issues/2749#issuecomment-1059857194) at 2022-03-05 04:11 PM PST -ExperimentsInHonesty,2022-03-06T00:11:05Z,- ExperimentsInHonesty closed issue as completed: [2749](https://github.com/hackforla/website/issues/2749#event-6189992849) at 2022-03-05 04:11 PM PST -ExperimentsInHonesty,2022-03-06T19:04:23Z,- ExperimentsInHonesty commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1060020246) at 2022-03-06 11:04 AM PST -ExperimentsInHonesty,2022-03-08T20:47:54Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1062193721) at 2022-03-08 12:47 PM PST -ExperimentsInHonesty,2022-03-10T21:16:46Z,- ExperimentsInHonesty commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1064512417) at 2022-03-10 01:16 PM PST -ExperimentsInHonesty,2022-03-10T21:51:38Z,- ExperimentsInHonesty commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1064538117) at 2022-03-10 01:51 PM PST -ExperimentsInHonesty,2022-03-10T22:03:55Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1064546734) at 2022-03-10 02:03 PM PST -ExperimentsInHonesty,2022-03-10T22:09:12Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064553024) at 2022-03-10 02:09 PM PST -ExperimentsInHonesty,2022-03-10T22:34:59Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064577346) at 2022-03-10 02:34 PM PST -ExperimentsInHonesty,2022-03-10T23:05:52Z,- ExperimentsInHonesty commented on issue: [2666](https://github.com/hackforla/website/issues/2666#issuecomment-1064597637) at 2022-03-10 03:05 PM PST -ExperimentsInHonesty,2022-03-10T23:05:52Z,- ExperimentsInHonesty closed issue as completed: [2666](https://github.com/hackforla/website/issues/2666#event-6221317159) at 2022-03-10 03:05 PM PST -ExperimentsInHonesty,2022-03-11T00:04:04Z,- ExperimentsInHonesty commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1064637926) at 2022-03-10 04:04 PM PST -ExperimentsInHonesty,2022-03-11T00:04:31Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064638179) at 2022-03-10 04:04 PM PST -ExperimentsInHonesty,2022-03-12T17:00:30Z,- ExperimentsInHonesty commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065919217) at 2022-03-12 10:00 AM PDT -ExperimentsInHonesty,2022-03-12T21:12:12Z,- ExperimentsInHonesty commented on issue: [2655](https://github.com/hackforla/website/issues/2655#issuecomment-1065963543) at 2022-03-12 02:12 PM PDT -ExperimentsInHonesty,2022-03-12T21:12:12Z,- ExperimentsInHonesty closed issue as completed: [2655](https://github.com/hackforla/website/issues/2655#event-6230280305) at 2022-03-12 02:12 PM PDT -ExperimentsInHonesty,2022-03-12T21:20:41Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1065964652) at 2022-03-12 02:20 PM PDT -ExperimentsInHonesty,2022-03-12T21:21:45Z,- ExperimentsInHonesty assigned to issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1065964652) at 2022-03-12 02:21 PM PDT -ExperimentsInHonesty,2022-03-12T21:28:50Z,- ExperimentsInHonesty commented on issue: [2450](https://github.com/hackforla/website/issues/2450#issuecomment-1065965724) at 2022-03-12 02:28 PM PDT -ExperimentsInHonesty,2022-03-12T21:28:50Z,- ExperimentsInHonesty closed issue as completed: [2450](https://github.com/hackforla/website/issues/2450#event-6230292905) at 2022-03-12 02:28 PM PDT -ExperimentsInHonesty,2022-03-12T21:31:51Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1065966125) at 2022-03-12 02:31 PM PDT -ExperimentsInHonesty,2022-03-12T21:34:50Z,- ExperimentsInHonesty commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-1065966533) at 2022-03-12 02:34 PM PDT -ExperimentsInHonesty,2022-03-12T21:34:50Z,- ExperimentsInHonesty closed issue as completed: [2473](https://github.com/hackforla/website/issues/2473#event-6230297619) at 2022-03-12 02:34 PM PDT -ExperimentsInHonesty,2022-03-12T21:46:47Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1065970255) at 2022-03-12 02:46 PM PDT -ExperimentsInHonesty,2022-03-16T14:26:53Z,- ExperimentsInHonesty commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1069189264) at 2022-03-16 07:26 AM PDT -ExperimentsInHonesty,2022-03-16T19:47:49Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069550621) at 2022-03-16 12:47 PM PDT -ExperimentsInHonesty,2022-03-16T19:48:26Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069551132) at 2022-03-16 12:48 PM PDT -ExperimentsInHonesty,2022-03-18T01:44:37Z,- ExperimentsInHonesty opened issue: [2987](https://github.com/hackforla/website/issues/2987) at 2022-03-17 06:44 PM PDT -ExperimentsInHonesty,2022-03-18T01:51:34Z,- ExperimentsInHonesty commented on issue: [2987](https://github.com/hackforla/website/issues/2987#issuecomment-1071942949) at 2022-03-17 06:51 PM PDT -ExperimentsInHonesty,2022-03-21T21:01:31Z,- ExperimentsInHonesty commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1074413562) at 2022-03-21 02:01 PM PDT -ExperimentsInHonesty,2022-03-23T19:15:30Z,- ExperimentsInHonesty commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1076727605) at 2022-03-23 12:15 PM PDT -ExperimentsInHonesty,2022-03-23T19:49:18Z,- ExperimentsInHonesty commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1076755973) at 2022-03-23 12:49 PM PDT -ExperimentsInHonesty,2022-03-24T21:16:49Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1078346079) at 2022-03-24 02:16 PM PDT -ExperimentsInHonesty,2022-03-30T20:12:31Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1083579148) at 2022-03-30 01:12 PM PDT -ExperimentsInHonesty,2022-03-30T20:36:47Z,- ExperimentsInHonesty commented on issue: [3019](https://github.com/hackforla/website/issues/3019#issuecomment-1083600812) at 2022-03-30 01:36 PM PDT -ExperimentsInHonesty,2022-03-31T19:32:24Z,- ExperimentsInHonesty commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1085018438) at 2022-03-31 12:32 PM PDT -ExperimentsInHonesty,2022-03-31T19:41:48Z,- ExperimentsInHonesty commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1085026219) at 2022-03-31 12:41 PM PDT -ExperimentsInHonesty,2022-03-31T19:45:35Z,- ExperimentsInHonesty commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1085029386) at 2022-03-31 12:45 PM PDT -ExperimentsInHonesty,2022-03-31T19:49:49Z,- ExperimentsInHonesty commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1085033492) at 2022-03-31 12:49 PM PDT -ExperimentsInHonesty,2022-03-31T20:11:51Z,- ExperimentsInHonesty closed issue as completed: [2570](https://github.com/hackforla/website/issues/2570#event-6346959215) at 2022-03-31 01:11 PM PDT -ExperimentsInHonesty,2022-04-02T01:14:52Z,- ExperimentsInHonesty assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1085525076) at 2022-04-01 06:14 PM PDT -ExperimentsInHonesty,2022-04-02T22:05:02Z,- ExperimentsInHonesty commented on issue: [2960](https://github.com/hackforla/website/issues/2960#issuecomment-1086732073) at 2022-04-02 03:05 PM PDT -ExperimentsInHonesty,2022-04-02T22:05:06Z,- ExperimentsInHonesty closed issue as completed: [2960](https://github.com/hackforla/website/issues/2960#event-6357460860) at 2022-04-02 03:05 PM PDT -ExperimentsInHonesty,2022-04-02T22:06:05Z,- ExperimentsInHonesty commented on issue: [2674](https://github.com/hackforla/website/issues/2674#issuecomment-1086732205) at 2022-04-02 03:06 PM PDT -ExperimentsInHonesty,2022-04-02T22:06:05Z,- ExperimentsInHonesty closed issue as completed: [2674](https://github.com/hackforla/website/issues/2674#event-6357461581) at 2022-04-02 03:06 PM PDT -ExperimentsInHonesty,2022-04-02T22:46:12Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086737209) at 2022-04-02 03:46 PM PDT -ExperimentsInHonesty,2022-04-03T16:31:29Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086902818) at 2022-04-03 09:31 AM PDT -ExperimentsInHonesty,2022-04-03T16:34:18Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086903359) at 2022-04-03 09:34 AM PDT -ExperimentsInHonesty,2022-04-04T18:05:50Z,- ExperimentsInHonesty opened pull request: [3033](https://github.com/hackforla/website/pull/3033) at 2022-04-04 11:05 AM PDT -ExperimentsInHonesty,2022-04-04T23:53:08Z,- ExperimentsInHonesty pull request merged: [3033](https://github.com/hackforla/website/pull/3033#event-6366949247) at 2022-04-04 04:53 PM PDT -ExperimentsInHonesty,2022-04-05T19:23:12Z,- ExperimentsInHonesty commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-1089225029) at 2022-04-05 12:23 PM PDT -ExperimentsInHonesty,2022-04-05T21:52:51Z,- ExperimentsInHonesty commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-1089406710) at 2022-04-05 02:52 PM PDT -ExperimentsInHonesty,2022-04-06T19:41:04Z,- ExperimentsInHonesty commented on issue: [3025](https://github.com/hackforla/website/issues/3025#issuecomment-1090691445) at 2022-04-06 12:41 PM PDT -ExperimentsInHonesty,2022-04-06T20:02:22Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090720745) at 2022-04-06 01:02 PM PDT -ExperimentsInHonesty,2022-04-06T20:09:26Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090726358) at 2022-04-06 01:09 PM PDT -ExperimentsInHonesty,2022-04-06T20:11:44Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090728357) at 2022-04-06 01:11 PM PDT -ExperimentsInHonesty,2022-04-06T21:27:22Z,- ExperimentsInHonesty commented on pull request: [3033](https://github.com/hackforla/website/pull/3033#issuecomment-1090825294) at 2022-04-06 02:27 PM PDT -ExperimentsInHonesty,2022-04-07T20:42:30Z,- ExperimentsInHonesty commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1092182565) at 2022-04-07 01:42 PM PDT -ExperimentsInHonesty,2022-04-07T20:54:02Z,- ExperimentsInHonesty closed issue as completed: [3032](https://github.com/hackforla/website/issues/3032#event-6392003922) at 2022-04-07 01:54 PM PDT -ExperimentsInHonesty,2022-04-07T20:54:07Z,- ExperimentsInHonesty closed issue as completed: [2781](https://github.com/hackforla/website/issues/2781#event-6392004199) at 2022-04-07 01:54 PM PDT -ExperimentsInHonesty,2022-04-07T20:54:10Z,- ExperimentsInHonesty closed issue as completed: [2550](https://github.com/hackforla/website/issues/2550#event-6392004489) at 2022-04-07 01:54 PM PDT -ExperimentsInHonesty,2022-04-07T21:12:20Z,- ExperimentsInHonesty closed issue as completed: [2671](https://github.com/hackforla/website/issues/2671#event-6392092678) at 2022-04-07 02:12 PM PDT -ExperimentsInHonesty,2022-04-07T21:16:13Z,- ExperimentsInHonesty commented on issue: [803](https://github.com/hackforla/website/issues/803#issuecomment-1092206890) at 2022-04-07 02:16 PM PDT -ExperimentsInHonesty,2022-04-07T21:16:21Z,- ExperimentsInHonesty closed issue as completed: [803](https://github.com/hackforla/website/issues/803#event-6392111463) at 2022-04-07 02:16 PM PDT -ExperimentsInHonesty,2022-04-07T21:18:31Z,- ExperimentsInHonesty closed issue as completed: [2562](https://github.com/hackforla/website/issues/2562#event-6392121449) at 2022-04-07 02:18 PM PDT -ExperimentsInHonesty,2022-04-07T21:19:10Z,- ExperimentsInHonesty closed issue as completed: [2361](https://github.com/hackforla/website/issues/2361#event-6392124455) at 2022-04-07 02:19 PM PDT -ExperimentsInHonesty,2022-04-07T21:32:17Z,- ExperimentsInHonesty commented on issue: [2272](https://github.com/hackforla/website/issues/2272#issuecomment-1092218788) at 2022-04-07 02:32 PM PDT -ExperimentsInHonesty,2022-04-07T21:32:17Z,- ExperimentsInHonesty closed issue as completed: [2272](https://github.com/hackforla/website/issues/2272#event-6392183896) at 2022-04-07 02:32 PM PDT -ExperimentsInHonesty,2022-04-07T21:34:15Z,- ExperimentsInHonesty closed issue as completed: [2737](https://github.com/hackforla/website/issues/2737#event-6392192127) at 2022-04-07 02:34 PM PDT -ExperimentsInHonesty,2022-04-07T21:36:41Z,- ExperimentsInHonesty commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1092221869) at 2022-04-07 02:36 PM PDT -ExperimentsInHonesty,2022-04-09T16:43:26Z,- ExperimentsInHonesty commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1094082073) at 2022-04-09 09:43 AM PDT -ExperimentsInHonesty,2022-04-09T16:44:29Z,- ExperimentsInHonesty commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1094082242) at 2022-04-09 09:44 AM PDT -ExperimentsInHonesty,2022-04-10T17:10:41Z,- ExperimentsInHonesty commented on issue: [2975](https://github.com/hackforla/website/issues/2975#issuecomment-1094329546) at 2022-04-10 10:10 AM PDT -ExperimentsInHonesty,2022-04-10T17:12:44Z,- ExperimentsInHonesty commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1094330014) at 2022-04-10 10:12 AM PDT -ExperimentsInHonesty,2022-04-10T17:15:51Z,- ExperimentsInHonesty commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1094330685) at 2022-04-10 10:15 AM PDT -ExperimentsInHonesty,2022-04-10T17:22:54Z,- ExperimentsInHonesty commented on issue: [2529](https://github.com/hackforla/website/issues/2529#issuecomment-1094331963) at 2022-04-10 10:22 AM PDT -ExperimentsInHonesty,2022-04-10T17:22:54Z,- ExperimentsInHonesty closed issue as completed: [2529](https://github.com/hackforla/website/issues/2529#event-6404444853) at 2022-04-10 10:22 AM PDT -ExperimentsInHonesty,2022-04-10T17:28:37Z,- ExperimentsInHonesty commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1094332853) at 2022-04-10 10:28 AM PDT -ExperimentsInHonesty,2022-04-10T17:40:16Z,- ExperimentsInHonesty assigned to issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094333447) at 2022-04-10 10:40 AM PDT -ExperimentsInHonesty,2022-04-10T17:40:57Z,- ExperimentsInHonesty commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1094334610) at 2022-04-10 10:40 AM PDT -ExperimentsInHonesty,2022-04-12T15:09:09Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1096854122) at 2022-04-12 08:09 AM PDT -ExperimentsInHonesty,2022-04-14T19:38:56Z,- ExperimentsInHonesty commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-04-14 12:38 PM PDT -ExperimentsInHonesty,2022-04-14T20:23:40Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1099590613) at 2022-04-14 01:23 PM PDT -ExperimentsInHonesty,2022-04-15T19:39:55Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1100318709) at 2022-04-15 12:39 PM PDT -ExperimentsInHonesty,2022-04-15T20:18:47Z,- ExperimentsInHonesty opened issue: [3058](https://github.com/hackforla/website/issues/3058) at 2022-04-15 01:18 PM PDT -ExperimentsInHonesty,2022-04-17T17:14:49Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1100918222) at 2022-04-17 10:14 AM PDT -ExperimentsInHonesty,2022-04-17T20:28:51Z,- ExperimentsInHonesty commented on issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1100944874) at 2022-04-17 01:28 PM PDT -ExperimentsInHonesty,2022-04-20T19:12:50Z,- ExperimentsInHonesty commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1104361357) at 2022-04-20 12:12 PM PDT -ExperimentsInHonesty,2022-04-20T22:14:05Z,- ExperimentsInHonesty assigned to issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1063270297) at 2022-04-20 03:14 PM PDT -ExperimentsInHonesty,2022-04-20T22:17:38Z,- ExperimentsInHonesty unassigned from issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1063270297) at 2022-04-20 03:17 PM PDT -ExperimentsInHonesty,2022-04-23T20:59:33Z,- ExperimentsInHonesty commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1107648652) at 2022-04-23 01:59 PM PDT -ExperimentsInHonesty,2022-04-30T22:08:09Z,- ExperimentsInHonesty commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1114061855) at 2022-04-30 03:08 PM PDT -ExperimentsInHonesty,2022-04-30T22:12:14Z,- ExperimentsInHonesty commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1114062439) at 2022-04-30 03:12 PM PDT -ExperimentsInHonesty,2022-04-30T22:22:41Z,- ExperimentsInHonesty commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1114063632) at 2022-04-30 03:22 PM PDT -ExperimentsInHonesty,2022-04-30T22:22:41Z,- ExperimentsInHonesty reopened issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1114063632) at 2022-04-30 03:22 PM PDT -ExperimentsInHonesty,2022-05-01T04:34:39Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1114130139) at 2022-04-30 09:34 PM PDT -ExperimentsInHonesty,2022-05-01T04:40:53Z,- ExperimentsInHonesty closed issue as completed: [3041](https://github.com/hackforla/website/issues/3041#event-6528911819) at 2022-04-30 09:40 PM PDT -ExperimentsInHonesty,2022-05-03T02:42:09Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1115559051) at 2022-05-02 07:42 PM PDT -ExperimentsInHonesty,2022-05-04T19:13:56Z,- ExperimentsInHonesty commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1117718620) at 2022-05-04 12:13 PM PDT -ExperimentsInHonesty,2022-05-04T19:46:39Z,- ExperimentsInHonesty commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1117788097) at 2022-05-04 12:46 PM PDT -ExperimentsInHonesty,2022-05-05T20:06:55Z,- ExperimentsInHonesty commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-1118999286) at 2022-05-05 01:06 PM PDT -ExperimentsInHonesty,2022-05-05T20:27:19Z,- ExperimentsInHonesty commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1119015346) at 2022-05-05 01:27 PM PDT -ExperimentsInHonesty,2022-05-08T04:29:08Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1120347893) at 2022-05-07 09:29 PM PDT -ExperimentsInHonesty,2022-05-08T04:34:11Z,- ExperimentsInHonesty reopened issue: [312](https://github.com/hackforla/website/issues/312#event-4881095493) at 2022-05-07 09:34 PM PDT -ExperimentsInHonesty,2022-05-08T04:47:14Z,- ExperimentsInHonesty commented on issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1120349481) at 2022-05-07 09:47 PM PDT -ExperimentsInHonesty,2022-05-08T04:47:14Z,- ExperimentsInHonesty reopened issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1120349481) at 2022-05-07 09:47 PM PDT -ExperimentsInHonesty,2022-05-08T04:50:57Z,- ExperimentsInHonesty closed issue by PR 3000: [2927](https://github.com/hackforla/website/issues/2927#event-6568209309) at 2022-05-07 09:50 PM PDT -ExperimentsInHonesty,2022-05-08T05:00:17Z,- ExperimentsInHonesty commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1120350513) at 2022-05-07 10:00 PM PDT -ExperimentsInHonesty,2022-05-08T18:51:46Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1120468995) at 2022-05-08 11:51 AM PDT -ExperimentsInHonesty,2022-05-08T19:46:06Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1120476625) at 2022-05-08 12:46 PM PDT -ExperimentsInHonesty,2022-05-10T22:14:43Z,- ExperimentsInHonesty commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1122945325) at 2022-05-10 03:14 PM PDT -ExperimentsInHonesty,2022-05-11T20:38:53Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1124274032) at 2022-05-11 01:38 PM PDT -ExperimentsInHonesty,2022-05-11T20:51:30Z,- ExperimentsInHonesty commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1124283720) at 2022-05-11 01:51 PM PDT -ExperimentsInHonesty,2022-05-12T21:55:14Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1125455623) at 2022-05-12 02:55 PM PDT -ExperimentsInHonesty,2022-05-12T21:58:13Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1125457988) at 2022-05-12 02:58 PM PDT -ExperimentsInHonesty,2022-05-12T22:09:05Z,- ExperimentsInHonesty commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1125465041) at 2022-05-12 03:09 PM PDT -ExperimentsInHonesty,2022-05-18T19:12:06Z,- ExperimentsInHonesty reopened issue: [2945](https://github.com/hackforla/website/issues/2945#event-6593882013) at 2022-05-18 12:12 PM PDT -ExperimentsInHonesty,2022-05-28T20:27:31Z,- ExperimentsInHonesty commented on issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1140325232) at 2022-05-28 01:27 PM PDT -ExperimentsInHonesty,2022-05-28T20:27:32Z,- ExperimentsInHonesty reopened issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1140325232) at 2022-05-28 01:27 PM PDT -ExperimentsInHonesty,2022-05-28T20:43:29Z,- ExperimentsInHonesty commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1140327068) at 2022-05-28 01:43 PM PDT -ExperimentsInHonesty,2022-05-28T20:43:29Z,- ExperimentsInHonesty reopened issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1140327068) at 2022-05-28 01:43 PM PDT -ExperimentsInHonesty,2022-05-28T21:27:55Z,- ExperimentsInHonesty commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1140331711) at 2022-05-28 02:27 PM PDT -ExperimentsInHonesty,2022-05-28T21:34:13Z,- ExperimentsInHonesty opened issue: [3177](https://github.com/hackforla/website/issues/3177) at 2022-05-28 02:34 PM PDT -ExperimentsInHonesty,2022-05-28T21:38:07Z,- ExperimentsInHonesty commented on issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1140332736) at 2022-05-28 02:38 PM PDT -ExperimentsInHonesty,2022-05-28T21:39:51Z,- ExperimentsInHonesty commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1140332916) at 2022-05-28 02:39 PM PDT -ExperimentsInHonesty,2022-05-28T22:17:07Z,- ExperimentsInHonesty commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1140336841) at 2022-05-28 03:17 PM PDT -ExperimentsInHonesty,2022-05-28T22:21:17Z,- ExperimentsInHonesty commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1140337248) at 2022-05-28 03:21 PM PDT -ExperimentsInHonesty,2022-05-28T22:33:17Z,- ExperimentsInHonesty commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1140338337) at 2022-05-28 03:33 PM PDT -ExperimentsInHonesty,2022-05-28T22:38:53Z,- ExperimentsInHonesty commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1140338832) at 2022-05-28 03:38 PM PDT -ExperimentsInHonesty,2022-05-28T22:41:09Z,- ExperimentsInHonesty commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1140339021) at 2022-05-28 03:41 PM PDT -ExperimentsInHonesty,2022-05-28T23:06:45Z,- ExperimentsInHonesty closed issue by PR 3075: [2802](https://github.com/hackforla/website/issues/2802#event-6697626294) at 2022-05-28 04:06 PM PDT -ExperimentsInHonesty,2022-05-29T17:44:19Z,- ExperimentsInHonesty commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1140494486) at 2022-05-29 10:44 AM PDT -ExperimentsInHonesty,2022-05-29T18:39:42Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1140503112) at 2022-05-29 11:39 AM PDT -ExperimentsInHonesty,2022-05-29T18:39:42Z,- ExperimentsInHonesty reopened issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1140503112) at 2022-05-29 11:39 AM PDT -ExperimentsInHonesty,2022-05-30T14:35:40Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1141230473) at 2022-05-30 07:35 AM PDT -ExperimentsInHonesty,2022-06-02T20:07:33Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1145293399) at 2022-06-02 01:07 PM PDT -ExperimentsInHonesty,2022-06-02T20:07:40Z,- ExperimentsInHonesty closed issue as completed: [2958](https://github.com/hackforla/website/issues/2958#event-6731306347) at 2022-06-02 01:07 PM PDT -ExperimentsInHonesty,2022-06-04T22:09:25Z,- ExperimentsInHonesty opened pull request: [3219](https://github.com/hackforla/website/pull/3219) at 2022-06-04 03:09 PM PDT -ExperimentsInHonesty,2022-06-04T22:11:30Z,- ExperimentsInHonesty pull request merged: [3219](https://github.com/hackforla/website/pull/3219#event-6742491627) at 2022-06-04 03:11 PM PDT -ExperimentsInHonesty,2022-06-04T22:35:00Z,- ExperimentsInHonesty commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1146695412) at 2022-06-04 03:35 PM PDT -ExperimentsInHonesty,2022-06-05T00:43:14Z,- ExperimentsInHonesty opened issue: [3220](https://github.com/hackforla/website/issues/3220) at 2022-06-04 05:43 PM PDT -ExperimentsInHonesty,2022-06-05T01:50:13Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1146721700) at 2022-06-04 06:50 PM PDT -ExperimentsInHonesty,2022-06-05T17:25:59Z,- ExperimentsInHonesty opened issue: [3222](https://github.com/hackforla/website/issues/3222) at 2022-06-05 10:25 AM PDT -ExperimentsInHonesty,2022-06-05T18:12:15Z,- ExperimentsInHonesty opened issue: [3223](https://github.com/hackforla/website/issues/3223) at 2022-06-05 11:12 AM PDT -ExperimentsInHonesty,2022-06-08T19:42:58Z,- ExperimentsInHonesty commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1150327821) at 2022-06-08 12:42 PM PDT -ExperimentsInHonesty,2022-06-13T21:17:14Z,- ExperimentsInHonesty commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1154448472) at 2022-06-13 02:17 PM PDT -ExperimentsInHonesty,2022-06-13T21:23:36Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1154453588) at 2022-06-13 02:23 PM PDT -ExperimentsInHonesty,2022-06-13T22:00:40Z,- ExperimentsInHonesty commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1154481790) at 2022-06-13 03:00 PM PDT -ExperimentsInHonesty,2022-06-19T17:37:57Z,- ExperimentsInHonesty commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1159782031) at 2022-06-19 10:37 AM PDT -ExperimentsInHonesty,2022-06-19T18:10:33Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1159786486) at 2022-06-19 11:10 AM PDT -ExperimentsInHonesty,2022-06-19T18:10:36Z,- ExperimentsInHonesty closed issue as completed: [2401](https://github.com/hackforla/website/issues/2401#event-6835039597) at 2022-06-19 11:10 AM PDT -ExperimentsInHonesty,2022-06-19T19:25:32Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1159796750) at 2022-06-19 12:25 PM PDT -ExperimentsInHonesty,2022-06-23T19:39:18Z,- ExperimentsInHonesty commented on issue: [2935](https://github.com/hackforla/website/issues/2935#issuecomment-1164797394) at 2022-06-23 12:39 PM PDT -ExperimentsInHonesty,2022-06-23T21:12:39Z,- ExperimentsInHonesty commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1164877942) at 2022-06-23 02:12 PM PDT -ExperimentsInHonesty,2022-06-23T21:41:16Z,- ExperimentsInHonesty commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1164906488) at 2022-06-23 02:41 PM PDT -ExperimentsInHonesty,2022-06-23T21:41:16Z,- ExperimentsInHonesty closed issue as completed: [2955](https://github.com/hackforla/website/issues/2955#event-6869810713) at 2022-06-23 02:41 PM PDT -ExperimentsInHonesty,2022-06-26T15:49:09Z,- ExperimentsInHonesty commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1166569926) at 2022-06-26 08:49 AM PDT -ExperimentsInHonesty,2022-06-26T15:52:22Z,- ExperimentsInHonesty commented on issue: [3289](https://github.com/hackforla/website/issues/3289#issuecomment-1166570722) at 2022-06-26 08:52 AM PDT -ExperimentsInHonesty,2022-06-27T21:15:16Z,- ExperimentsInHonesty commented on issue: [3167](https://github.com/hackforla/website/issues/3167#issuecomment-1167908619) at 2022-06-27 02:15 PM PDT -ExperimentsInHonesty,2022-06-27T21:15:16Z,- ExperimentsInHonesty closed issue as completed: [3167](https://github.com/hackforla/website/issues/3167#event-6888652526) at 2022-06-27 02:15 PM PDT -ExperimentsInHonesty,2022-06-27T21:17:34Z,- ExperimentsInHonesty closed issue as completed: [3272](https://github.com/hackforla/website/issues/3272#event-6888666603) at 2022-06-27 02:17 PM PDT -ExperimentsInHonesty,2022-06-27T21:18:10Z,- ExperimentsInHonesty commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1167911620) at 2022-06-27 02:18 PM PDT -ExperimentsInHonesty,2022-06-29T05:13:39Z,- ExperimentsInHonesty assigned to issue: [7460](https://github.com/hackforla/website/issues/7460) at 2022-06-28 10:13 PM PDT -ExperimentsInHonesty,2022-06-29T18:17:55Z,- ExperimentsInHonesty commented on issue: [3294](https://github.com/hackforla/website/issues/3294#issuecomment-1170334760) at 2022-06-29 11:17 AM PDT -ExperimentsInHonesty,2022-07-03T18:03:54Z,- ExperimentsInHonesty commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1173145624) at 2022-07-03 11:03 AM PDT -ExperimentsInHonesty,2022-07-03T18:22:42Z,- ExperimentsInHonesty commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1173148805) at 2022-07-03 11:22 AM PDT -ExperimentsInHonesty,2022-07-06T18:28:18Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1176541515) at 2022-07-06 11:28 AM PDT -ExperimentsInHonesty,2022-07-06T18:30:48Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1176543459) at 2022-07-06 11:30 AM PDT -ExperimentsInHonesty,2022-07-07T18:36:27Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178053761) at 2022-07-07 11:36 AM PDT -ExperimentsInHonesty,2022-07-07T18:49:04Z,- ExperimentsInHonesty reopened issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178053761) at 2022-07-07 11:49 AM PDT -ExperimentsInHonesty,2022-07-07T18:51:08Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178074538) at 2022-07-07 11:51 AM PDT -ExperimentsInHonesty,2022-07-07T19:01:36Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178086590) at 2022-07-07 12:01 PM PDT -ExperimentsInHonesty,2022-07-07T19:45:30Z,- ExperimentsInHonesty commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1178141966) at 2022-07-07 12:45 PM PDT -ExperimentsInHonesty,2022-07-07T20:31:57Z,- ExperimentsInHonesty commented on issue: [3257](https://github.com/hackforla/website/issues/3257#issuecomment-1178192054) at 2022-07-07 01:31 PM PDT -ExperimentsInHonesty,2022-07-10T17:59:42Z,- ExperimentsInHonesty opened issue: [3343](https://github.com/hackforla/website/issues/3343) at 2022-07-10 10:59 AM PDT -ExperimentsInHonesty,2022-07-11T16:00:59Z,- ExperimentsInHonesty opened issue: [3356](https://github.com/hackforla/website/issues/3356) at 2022-07-11 09:00 AM PDT -ExperimentsInHonesty,2022-07-11T16:10:01Z,- ExperimentsInHonesty opened issue: [3357](https://github.com/hackforla/website/issues/3357) at 2022-07-11 09:10 AM PDT -ExperimentsInHonesty,2022-07-11T21:52:54Z,- ExperimentsInHonesty commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1180906439) at 2022-07-11 02:52 PM PDT -ExperimentsInHonesty,2022-07-12T20:25:35Z,- ExperimentsInHonesty commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1182468692) at 2022-07-12 01:25 PM PDT -ExperimentsInHonesty,2022-07-12T21:15:39Z,- ExperimentsInHonesty commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1182507813) at 2022-07-12 02:15 PM PDT -ExperimentsInHonesty,2022-07-15T14:46:51Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1185618519) at 2022-07-15 07:46 AM PDT -ExperimentsInHonesty,2022-07-15T15:04:31Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1185634230) at 2022-07-15 08:04 AM PDT -ExperimentsInHonesty,2022-07-17T18:23:59Z,- ExperimentsInHonesty commented on issue: [3379](https://github.com/hackforla/website/issues/3379#issuecomment-1186584878) at 2022-07-17 11:23 AM PDT -ExperimentsInHonesty,2022-07-17T18:24:11Z,- ExperimentsInHonesty commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1186584915) at 2022-07-17 11:24 AM PDT -ExperimentsInHonesty,2022-07-18T21:37:50Z,- ExperimentsInHonesty closed issue by PR 3717: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-07-18 02:37 PM PDT -ExperimentsInHonesty,2022-07-18T21:38:10Z,- ExperimentsInHonesty reopened issue: [2904](https://github.com/hackforla/website/issues/2904#event-7015838163) at 2022-07-18 02:38 PM PDT -ExperimentsInHonesty,2022-07-18T21:57:23Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-1188362004) at 2022-07-18 02:57 PM PDT -ExperimentsInHonesty,2022-07-19T13:28:41Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1189055116) at 2022-07-19 06:28 AM PDT -ExperimentsInHonesty,2022-07-19T18:25:02Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189416830) at 2022-07-19 11:25 AM PDT -ExperimentsInHonesty,2022-07-19T18:43:55Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189433746) at 2022-07-19 11:43 AM PDT -ExperimentsInHonesty,2022-07-19T19:03:04Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189449698) at 2022-07-19 12:03 PM PDT -ExperimentsInHonesty,2022-07-19T19:05:26Z,- ExperimentsInHonesty commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1189451672) at 2022-07-19 12:05 PM PDT -ExperimentsInHonesty,2022-07-24T18:44:01Z,- ExperimentsInHonesty commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1193372681) at 2022-07-24 11:44 AM PDT -ExperimentsInHonesty,2022-07-25T21:25:30Z,- ExperimentsInHonesty commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1194649355) at 2022-07-25 02:25 PM PDT -ExperimentsInHonesty,2022-07-25T21:27:46Z,- ExperimentsInHonesty commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1194651649) at 2022-07-25 02:27 PM PDT -ExperimentsInHonesty,2022-07-25T21:30:27Z,- ExperimentsInHonesty commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1194654272) at 2022-07-25 02:30 PM PDT -ExperimentsInHonesty,2022-07-25T21:30:27Z,- ExperimentsInHonesty closed issue as completed: [3070](https://github.com/hackforla/website/issues/3070#event-7059858054) at 2022-07-25 02:30 PM PDT -ExperimentsInHonesty,2022-07-25T21:31:45Z,- ExperimentsInHonesty commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1194655633) at 2022-07-25 02:31 PM PDT -ExperimentsInHonesty,2022-07-25T21:31:46Z,- ExperimentsInHonesty closed issue as completed: [3144](https://github.com/hackforla/website/issues/3144#event-7059864367) at 2022-07-25 02:31 PM PDT -ExperimentsInHonesty,2022-07-25T21:34:03Z,- ExperimentsInHonesty commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1194658612) at 2022-07-25 02:34 PM PDT -ExperimentsInHonesty,2022-07-25T21:36:28Z,- ExperimentsInHonesty commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1194661868) at 2022-07-25 02:36 PM PDT -ExperimentsInHonesty,2022-07-25T21:36:29Z,- ExperimentsInHonesty closed issue as completed: [3122](https://github.com/hackforla/website/issues/3122#event-7059890650) at 2022-07-25 02:36 PM PDT -ExperimentsInHonesty,2022-07-25T21:39:01Z,- ExperimentsInHonesty commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1194664520) at 2022-07-25 02:39 PM PDT -ExperimentsInHonesty,2022-07-25T21:39:54Z,- ExperimentsInHonesty commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1194665413) at 2022-07-25 02:39 PM PDT -ExperimentsInHonesty,2022-07-25T21:42:07Z,- ExperimentsInHonesty commented on issue: [2816](https://github.com/hackforla/website/issues/2816#issuecomment-1194667732) at 2022-07-25 02:42 PM PDT -ExperimentsInHonesty,2022-07-25T21:43:55Z,- ExperimentsInHonesty commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194669406) at 2022-07-25 02:43 PM PDT -ExperimentsInHonesty,2022-07-25T21:49:42Z,- ExperimentsInHonesty commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1194674868) at 2022-07-25 02:49 PM PDT -ExperimentsInHonesty,2022-07-25T21:58:08Z,- ExperimentsInHonesty commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1194682335) at 2022-07-25 02:58 PM PDT -ExperimentsInHonesty,2022-07-27T22:06:36Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197421483) at 2022-07-27 03:06 PM PDT -ExperimentsInHonesty,2022-07-27T22:09:17Z,- ExperimentsInHonesty commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1197423714) at 2022-07-27 03:09 PM PDT -ExperimentsInHonesty,2022-07-27T22:15:00Z,- ExperimentsInHonesty closed issue as completed: [3273](https://github.com/hackforla/website/issues/3273#event-7076862009) at 2022-07-27 03:15 PM PDT -ExperimentsInHonesty,2022-07-27T22:20:45Z,- ExperimentsInHonesty commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197432546) at 2022-07-27 03:20 PM PDT -ExperimentsInHonesty,2022-07-27T22:23:54Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1197434782) at 2022-07-27 03:23 PM PDT -ExperimentsInHonesty,2022-07-28T17:31:21Z,- ExperimentsInHonesty closed issue as completed: [3267](https://github.com/hackforla/website/issues/3267#event-7083516246) at 2022-07-28 10:31 AM PDT -ExperimentsInHonesty,2022-07-28T17:34:36Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1198440696) at 2022-07-28 10:34 AM PDT -ExperimentsInHonesty,2022-07-28T17:39:29Z,- ExperimentsInHonesty commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1198444881) at 2022-07-28 10:39 AM PDT -ExperimentsInHonesty,2022-07-28T17:41:57Z,- ExperimentsInHonesty commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198446844) at 2022-07-28 10:41 AM PDT -ExperimentsInHonesty,2022-07-28T17:42:52Z,- ExperimentsInHonesty commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198447660) at 2022-07-28 10:42 AM PDT -ExperimentsInHonesty,2022-08-08T18:11:40Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1208448284) at 2022-08-08 11:11 AM PDT -ExperimentsInHonesty,2022-08-11T01:11:56Z,- ExperimentsInHonesty commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1211455580) at 2022-08-10 06:11 PM PDT -ExperimentsInHonesty,2022-08-14T22:49:56Z,- ExperimentsInHonesty commented on issue: [3469](https://github.com/hackforla/website/issues/3469#issuecomment-1214464150) at 2022-08-14 03:49 PM PDT -ExperimentsInHonesty,2022-08-14T22:49:56Z,- ExperimentsInHonesty closed issue as completed: [3469](https://github.com/hackforla/website/issues/3469#event-7185275556) at 2022-08-14 03:49 PM PDT -ExperimentsInHonesty,2022-08-15T21:09:56Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1215816956) at 2022-08-15 02:09 PM PDT -ExperimentsInHonesty,2022-08-15T21:10:44Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1215818747) at 2022-08-15 02:10 PM PDT -ExperimentsInHonesty,2022-09-01T21:44:54Z,- ExperimentsInHonesty commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1234813973) at 2022-09-01 02:44 PM PDT -ExperimentsInHonesty,2022-09-04T16:08:48Z,- ExperimentsInHonesty assigned to issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021562766) at 2022-09-04 09:08 AM PDT -ExperimentsInHonesty,2022-09-04T16:47:54Z,- ExperimentsInHonesty commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1236377717) at 2022-09-04 09:47 AM PDT -ExperimentsInHonesty,2022-09-04T17:48:07Z,- ExperimentsInHonesty commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1236387022) at 2022-09-04 10:48 AM PDT -ExperimentsInHonesty,2022-09-04T17:51:36Z,- ExperimentsInHonesty commented on issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1236387462) at 2022-09-04 10:51 AM PDT -ExperimentsInHonesty,2022-09-04T18:48:55Z,- ExperimentsInHonesty commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1236395239) at 2022-09-04 11:48 AM PDT -ExperimentsInHonesty,2022-09-04T19:00:26Z,- ExperimentsInHonesty commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1236396829) at 2022-09-04 12:00 PM PDT -ExperimentsInHonesty,2022-09-05T18:29:18Z,- ExperimentsInHonesty opened issue: [3520](https://github.com/hackforla/website/issues/3520) at 2022-09-05 11:29 AM PDT -ExperimentsInHonesty,2022-09-05T18:34:11Z,- ExperimentsInHonesty commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1237380191) at 2022-09-05 11:34 AM PDT -ExperimentsInHonesty,2022-09-05T18:36:52Z,- ExperimentsInHonesty commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1237381656) at 2022-09-05 11:36 AM PDT -ExperimentsInHonesty,2022-09-08T19:53:52Z,- ExperimentsInHonesty commented on issue: [3523](https://github.com/hackforla/website/issues/3523#issuecomment-1241166011) at 2022-09-08 12:53 PM PDT -ExperimentsInHonesty,2022-09-08T21:20:23Z,- ExperimentsInHonesty commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1241245735) at 2022-09-08 02:20 PM PDT -ExperimentsInHonesty,2022-09-08T21:48:06Z,- ExperimentsInHonesty commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1241267822) at 2022-09-08 02:48 PM PDT -ExperimentsInHonesty,2022-09-08T21:56:53Z,- ExperimentsInHonesty commented on issue: [3530](https://github.com/hackforla/website/issues/3530#issuecomment-1241275256) at 2022-09-08 02:56 PM PDT -ExperimentsInHonesty,2022-09-11T16:05:00Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1242994675) at 2022-09-11 09:05 AM PDT -ExperimentsInHonesty,2022-09-11T16:07:19Z,- ExperimentsInHonesty commented on issue: [3145](https://github.com/hackforla/website/issues/3145#issuecomment-1242995130) at 2022-09-11 09:07 AM PDT -ExperimentsInHonesty,2022-09-11T16:10:25Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1242995663) at 2022-09-11 09:10 AM PDT -ExperimentsInHonesty,2022-09-11T16:21:15Z,- ExperimentsInHonesty commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1242997513) at 2022-09-11 09:21 AM PDT -ExperimentsInHonesty,2022-09-11T16:26:38Z,- ExperimentsInHonesty commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1242998395) at 2022-09-11 09:26 AM PDT -ExperimentsInHonesty,2022-09-11T16:41:42Z,- ExperimentsInHonesty commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1243000675) at 2022-09-11 09:41 AM PDT -ExperimentsInHonesty,2022-09-11T16:49:13Z,- ExperimentsInHonesty commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1243001773) at 2022-09-11 09:49 AM PDT -ExperimentsInHonesty,2022-09-11T16:50:25Z,- ExperimentsInHonesty commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1243001950) at 2022-09-11 09:50 AM PDT -ExperimentsInHonesty,2022-09-11T16:51:30Z,- ExperimentsInHonesty commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1243002103) at 2022-09-11 09:51 AM PDT -ExperimentsInHonesty,2022-09-11T16:56:03Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1243002746) at 2022-09-11 09:56 AM PDT -ExperimentsInHonesty,2022-09-11T18:28:50Z,- ExperimentsInHonesty commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1243017926) at 2022-09-11 11:28 AM PDT -ExperimentsInHonesty,2022-09-11T18:33:18Z,- ExperimentsInHonesty commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-1243018723) at 2022-09-11 11:33 AM PDT -ExperimentsInHonesty,2022-09-12T21:17:10Z,- ExperimentsInHonesty commented on issue: [3473](https://github.com/hackforla/website/issues/3473#issuecomment-1244490780) at 2022-09-12 02:17 PM PDT -ExperimentsInHonesty,2022-09-12T21:18:03Z,- ExperimentsInHonesty closed issue as completed: [3473](https://github.com/hackforla/website/issues/3473#event-7371167586) at 2022-09-12 02:18 PM PDT -ExperimentsInHonesty,2022-09-12T21:23:40Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1244500959) at 2022-09-12 02:23 PM PDT -ExperimentsInHonesty,2022-09-12T21:28:40Z,- ExperimentsInHonesty opened issue: [3539](https://github.com/hackforla/website/issues/3539) at 2022-09-12 02:28 PM PDT -ExperimentsInHonesty,2022-09-12T21:32:53Z,- ExperimentsInHonesty commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1244516641) at 2022-09-12 02:32 PM PDT -ExperimentsInHonesty,2022-09-12T21:44:47Z,- ExperimentsInHonesty commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1244537560) at 2022-09-12 02:44 PM PDT -ExperimentsInHonesty,2022-09-12T22:11:03Z,- ExperimentsInHonesty commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1244581760) at 2022-09-12 03:11 PM PDT -ExperimentsInHonesty,2022-09-12T22:17:21Z,- ExperimentsInHonesty assigned to issue: [3540](https://github.com/hackforla/website/issues/3540) at 2022-09-12 03:17 PM PDT -ExperimentsInHonesty,2022-09-12T22:17:34Z,- ExperimentsInHonesty unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540) at 2022-09-12 03:17 PM PDT -ExperimentsInHonesty,2022-09-18T16:13:08Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1250340225) at 2022-09-18 09:13 AM PDT -ExperimentsInHonesty,2022-09-19T16:36:09Z,- ExperimentsInHonesty commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1251264027) at 2022-09-19 09:36 AM PDT -ExperimentsInHonesty,2022-09-19T16:39:41Z,- ExperimentsInHonesty commented on issue: [3253](https://github.com/hackforla/website/issues/3253#issuecomment-1251267753) at 2022-09-19 09:39 AM PDT -ExperimentsInHonesty,2022-09-19T16:43:14Z,- ExperimentsInHonesty commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1251271207) at 2022-09-19 09:43 AM PDT -ExperimentsInHonesty,2022-09-19T16:48:01Z,- ExperimentsInHonesty commented on issue: [3380](https://github.com/hackforla/website/issues/3380#issuecomment-1251278175) at 2022-09-19 09:48 AM PDT -ExperimentsInHonesty,2022-09-19T16:56:57Z,- ExperimentsInHonesty commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1251291350) at 2022-09-19 09:56 AM PDT -ExperimentsInHonesty,2022-09-19T16:56:57Z,- ExperimentsInHonesty closed issue as completed: [3507](https://github.com/hackforla/website/issues/3507#event-7415402335) at 2022-09-19 09:56 AM PDT -ExperimentsInHonesty,2022-09-19T17:00:17Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1251294849) at 2022-09-19 10:00 AM PDT -ExperimentsInHonesty,2022-09-19T21:30:20Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1251582503) at 2022-09-19 02:30 PM PDT -ExperimentsInHonesty,2022-09-19T21:41:47Z,- ExperimentsInHonesty commented on issue: [3549](https://github.com/hackforla/website/issues/3549#issuecomment-1251592302) at 2022-09-19 02:41 PM PDT -ExperimentsInHonesty,2022-09-19T22:09:19Z,- ExperimentsInHonesty commented on issue: [3434](https://github.com/hackforla/website/issues/3434#issuecomment-1251619948) at 2022-09-19 03:09 PM PDT -ExperimentsInHonesty,2022-09-20T12:59:14Z,- ExperimentsInHonesty assigned to issue: [3550](https://github.com/hackforla/website/issues/3550) at 2022-09-20 05:59 AM PDT -ExperimentsInHonesty,2022-09-21T16:18:05Z,- ExperimentsInHonesty commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1253935127) at 2022-09-21 09:18 AM PDT -ExperimentsInHonesty,2022-09-21T16:23:43Z,- ExperimentsInHonesty commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1253941222) at 2022-09-21 09:23 AM PDT -ExperimentsInHonesty,2022-09-21T16:41:20Z,- ExperimentsInHonesty commented on issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-1253963184) at 2022-09-21 09:41 AM PDT -ExperimentsInHonesty,2022-09-21T16:48:05Z,- ExperimentsInHonesty commented on issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1253972878) at 2022-09-21 09:48 AM PDT -ExperimentsInHonesty,2022-09-21T17:03:50Z,- ExperimentsInHonesty commented on issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1253988018) at 2022-09-21 10:03 AM PDT -ExperimentsInHonesty,2022-09-25T16:41:54Z,- ExperimentsInHonesty commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1257231436) at 2022-09-25 09:41 AM PDT -ExperimentsInHonesty,2022-09-25T17:28:12Z,- ExperimentsInHonesty commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1257240182) at 2022-09-25 10:28 AM PDT -ExperimentsInHonesty,2022-09-25T17:36:13Z,- ExperimentsInHonesty reopened issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1257240182) at 2022-09-25 10:36 AM PDT -ExperimentsInHonesty,2022-09-25T18:16:32Z,- ExperimentsInHonesty commented on issue: [3563](https://github.com/hackforla/website/issues/3563#issuecomment-1257248783) at 2022-09-25 11:16 AM PDT -ExperimentsInHonesty,2022-10-02T16:36:14Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1264683488) at 2022-10-02 09:36 AM PDT -ExperimentsInHonesty,2022-10-02T16:47:32Z,- ExperimentsInHonesty commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1264685669) at 2022-10-02 09:47 AM PDT -ExperimentsInHonesty,2022-10-02T16:47:32Z,- ExperimentsInHonesty reopened issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1264685669) at 2022-10-02 09:47 AM PDT -ExperimentsInHonesty,2022-10-02T16:59:42Z,- ExperimentsInHonesty commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1264688037) at 2022-10-02 09:59 AM PDT -ExperimentsInHonesty,2022-10-02T16:59:42Z,- ExperimentsInHonesty reopened issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1264688037) at 2022-10-02 09:59 AM PDT -ExperimentsInHonesty,2022-10-02T17:08:34Z,- ExperimentsInHonesty commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1264689921) at 2022-10-02 10:08 AM PDT -ExperimentsInHonesty,2022-10-02T17:08:34Z,- ExperimentsInHonesty reopened issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1264689921) at 2022-10-02 10:08 AM PDT -ExperimentsInHonesty,2022-10-02T17:45:36Z,- ExperimentsInHonesty closed issue by PR 3574: [3351](https://github.com/hackforla/website/issues/3351#event-7502351228) at 2022-10-02 10:45 AM PDT -ExperimentsInHonesty,2022-10-02T17:46:32Z,- ExperimentsInHonesty commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1264697201) at 2022-10-02 10:46 AM PDT -ExperimentsInHonesty,2022-10-02T17:46:47Z,- ExperimentsInHonesty commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1264697247) at 2022-10-02 10:46 AM PDT -ExperimentsInHonesty,2022-10-02T17:46:50Z,- ExperimentsInHonesty closed issue as completed: [3377](https://github.com/hackforla/website/issues/3377#event-7502352628) at 2022-10-02 10:46 AM PDT -ExperimentsInHonesty,2022-10-02T18:17:41Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1264703224) at 2022-10-02 11:17 AM PDT -ExperimentsInHonesty,2022-10-02T18:45:17Z,- ExperimentsInHonesty commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1264708163) at 2022-10-02 11:45 AM PDT -ExperimentsInHonesty,2022-10-05T16:14:21Z,- ExperimentsInHonesty closed issue as completed: [2617](https://github.com/hackforla/website/issues/2617#event-7526635413) at 2022-10-05 09:14 AM PDT -ExperimentsInHonesty,2022-10-05T16:21:31Z,- ExperimentsInHonesty commented on issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-1268654709) at 2022-10-05 09:21 AM PDT -ExperimentsInHonesty,2022-10-05T16:21:31Z,- ExperimentsInHonesty closed issue as completed: [2615](https://github.com/hackforla/website/issues/2615#event-7526681009) at 2022-10-05 09:21 AM PDT -ExperimentsInHonesty,2022-10-09T16:40:37Z,- ExperimentsInHonesty commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1272580704) at 2022-10-09 09:40 AM PDT -ExperimentsInHonesty,2022-10-09T16:50:18Z,- ExperimentsInHonesty commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1272582500) at 2022-10-09 09:50 AM PDT -ExperimentsInHonesty,2022-10-09T16:52:24Z,- ExperimentsInHonesty commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1272582847) at 2022-10-09 09:52 AM PDT -ExperimentsInHonesty,2022-10-09T16:55:19Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1272583281) at 2022-10-09 09:55 AM PDT -ExperimentsInHonesty,2022-10-09T17:11:28Z,- ExperimentsInHonesty commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1272587026) at 2022-10-09 10:11 AM PDT -ExperimentsInHonesty,2022-10-09T17:35:14Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1272591464) at 2022-10-09 10:35 AM PDT -ExperimentsInHonesty,2022-10-09T18:39:51Z,- ExperimentsInHonesty commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272603882) at 2022-10-09 11:39 AM PDT -ExperimentsInHonesty,2022-10-09T18:41:03Z,- ExperimentsInHonesty reopened issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1272603882) at 2022-10-09 11:41 AM PDT -ExperimentsInHonesty,2022-10-12T16:40:17Z,- ExperimentsInHonesty commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1276457318) at 2022-10-12 09:40 AM PDT -ExperimentsInHonesty,2022-10-12T16:43:42Z,- ExperimentsInHonesty commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1276460970) at 2022-10-12 09:43 AM PDT -ExperimentsInHonesty,2022-10-16T23:01:17Z,- ExperimentsInHonesty commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1280079521) at 2022-10-16 04:01 PM PDT -ExperimentsInHonesty,2022-10-17T21:22:58Z,- ExperimentsInHonesty commented on issue: [3630](https://github.com/hackforla/website/issues/3630#issuecomment-1281512796) at 2022-10-17 02:22 PM PDT -ExperimentsInHonesty,2022-10-17T21:23:20Z,- ExperimentsInHonesty commented on issue: [3238](https://github.com/hackforla/website/issues/3238#issuecomment-1281513162) at 2022-10-17 02:23 PM PDT -ExperimentsInHonesty,2022-10-23T16:16:03Z,- ExperimentsInHonesty commented on issue: [3610](https://github.com/hackforla/website/issues/3610#issuecomment-1288146796) at 2022-10-23 09:16 AM PDT -ExperimentsInHonesty,2022-10-23T16:16:03Z,- ExperimentsInHonesty closed issue as completed: [3610](https://github.com/hackforla/website/issues/3610#event-7648594318) at 2022-10-23 09:16 AM PDT -ExperimentsInHonesty,2022-10-23T16:25:46Z,- ExperimentsInHonesty commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1288148754) at 2022-10-23 09:25 AM PDT -ExperimentsInHonesty,2022-10-23T16:34:07Z,- ExperimentsInHonesty commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1288150158) at 2022-10-23 09:34 AM PDT -ExperimentsInHonesty,2022-10-23T16:34:48Z,- ExperimentsInHonesty commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-1288150274) at 2022-10-23 09:34 AM PDT -ExperimentsInHonesty,2022-10-23T16:34:48Z,- ExperimentsInHonesty closed issue as completed: [1982](https://github.com/hackforla/website/issues/1982#event-7648618094) at 2022-10-23 09:34 AM PDT -ExperimentsInHonesty,2022-10-23T16:41:07Z,- ExperimentsInHonesty commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1288151348) at 2022-10-23 09:41 AM PDT -ExperimentsInHonesty,2022-10-23T17:12:14Z,- ExperimentsInHonesty commented on issue: [3554](https://github.com/hackforla/website/issues/3554#issuecomment-1288157028) at 2022-10-23 10:12 AM PDT -ExperimentsInHonesty,2022-10-23T17:12:14Z,- ExperimentsInHonesty closed issue as completed: [3554](https://github.com/hackforla/website/issues/3554#event-7648662072) at 2022-10-23 10:12 AM PDT -ExperimentsInHonesty,2022-10-23T17:15:28Z,- ExperimentsInHonesty reopened issue: [3124](https://github.com/hackforla/website/issues/3124#event-6749322766) at 2022-10-23 10:15 AM PDT -ExperimentsInHonesty,2022-10-23T17:15:30Z,- ExperimentsInHonesty closed issue as completed: [3124](https://github.com/hackforla/website/issues/3124#event-7648665962) at 2022-10-23 10:15 AM PDT -ExperimentsInHonesty,2022-10-24T22:04:49Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1289678834) at 2022-10-24 03:04 PM PDT -ExperimentsInHonesty,2022-10-24T22:43:51Z,- ExperimentsInHonesty commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1289725365) at 2022-10-24 03:43 PM PDT -ExperimentsInHonesty,2022-10-24T22:53:34Z,- ExperimentsInHonesty commented on issue: [3165](https://github.com/hackforla/website/issues/3165#issuecomment-1289732834) at 2022-10-24 03:53 PM PDT -ExperimentsInHonesty,2022-10-24T22:59:24Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1289736535) at 2022-10-24 03:59 PM PDT -ExperimentsInHonesty,2022-10-25T00:35:52Z,- ExperimentsInHonesty assigned to issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-10-24 05:35 PM PDT -ExperimentsInHonesty,2022-10-25T00:35:59Z,- ExperimentsInHonesty unassigned from issue: [3634](https://github.com/hackforla/website/issues/3634) at 2022-10-24 05:35 PM PDT -ExperimentsInHonesty,2022-10-26T16:48:50Z,- ExperimentsInHonesty commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1292327167) at 2022-10-26 09:48 AM PDT -ExperimentsInHonesty,2022-10-28T16:07:44Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1295178212) at 2022-10-28 09:07 AM PDT -ExperimentsInHonesty,2022-10-30T16:34:33Z,- ExperimentsInHonesty commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1296297453) at 2022-10-30 09:34 AM PDT -ExperimentsInHonesty,2022-10-30T17:19:26Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1296306881) at 2022-10-30 10:19 AM PDT -ExperimentsInHonesty,2022-10-30T17:34:37Z,- ExperimentsInHonesty commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1296310277) at 2022-10-30 10:34 AM PDT -ExperimentsInHonesty,2022-10-31T16:45:13Z,- ExperimentsInHonesty commented on issue: [2401](https://github.com/hackforla/website/issues/2401#issuecomment-1297374338) at 2022-10-31 09:45 AM PDT -ExperimentsInHonesty,2022-10-31T16:47:35Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1297377081) at 2022-10-31 09:47 AM PDT -ExperimentsInHonesty,2022-10-31T16:56:04Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1297386781) at 2022-10-31 09:56 AM PDT -ExperimentsInHonesty,2022-10-31T17:06:25Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1297399517) at 2022-10-31 10:06 AM PDT -ExperimentsInHonesty,2022-10-31T21:54:18Z,- ExperimentsInHonesty commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1297732631) at 2022-10-31 02:54 PM PDT -ExperimentsInHonesty,2022-10-31T21:55:54Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1297734118) at 2022-10-31 02:55 PM PDT -ExperimentsInHonesty,2022-10-31T21:59:09Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-1297737227) at 2022-10-31 02:59 PM PDT -ExperimentsInHonesty,2022-10-31T22:56:59Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1297790151) at 2022-10-31 03:56 PM PDT -ExperimentsInHonesty,2022-11-06T18:04:01Z,- ExperimentsInHonesty commented on issue: [3356](https://github.com/hackforla/website/issues/3356#issuecomment-1304859025) at 2022-11-06 10:04 AM PST -ExperimentsInHonesty,2022-11-06T18:21:06Z,- ExperimentsInHonesty commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304862689) at 2022-11-06 10:21 AM PST -ExperimentsInHonesty,2022-11-06T18:40:03Z,- ExperimentsInHonesty commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1304866103) at 2022-11-06 10:40 AM PST -ExperimentsInHonesty,2022-11-06T18:42:04Z,- ExperimentsInHonesty reopened issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1304866103) at 2022-11-06 10:42 AM PST -ExperimentsInHonesty,2022-11-06T19:14:52Z,- ExperimentsInHonesty reopened issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1304867526) at 2022-11-06 11:14 AM PST -ExperimentsInHonesty,2022-11-06T19:15:09Z,- ExperimentsInHonesty reopened issue: [2198](https://github.com/hackforla/website/issues/2198#event-7228040529) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:17Z,- ExperimentsInHonesty reopened issue: [2199](https://github.com/hackforla/website/issues/2199#event-7282462601) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:25Z,- ExperimentsInHonesty reopened issue: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:44Z,- ExperimentsInHonesty reopened issue: [2204](https://github.com/hackforla/website/issues/2204#event-6114501569) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:15:52Z,- ExperimentsInHonesty reopened issue: [2205](https://github.com/hackforla/website/issues/2205#event-7274007592) at 2022-11-06 11:15 AM PST -ExperimentsInHonesty,2022-11-06T19:18:21Z,- ExperimentsInHonesty commented on issue: [2114](https://github.com/hackforla/website/issues/2114#issuecomment-1304873372) at 2022-11-06 11:18 AM PST -ExperimentsInHonesty,2022-11-06T19:24:40Z,- ExperimentsInHonesty closed issue by PR 3471: [2198](https://github.com/hackforla/website/issues/2198#event-7747786281) at 2022-11-06 11:24 AM PST -ExperimentsInHonesty,2022-11-06T19:24:59Z,- ExperimentsInHonesty commented on issue: [2198](https://github.com/hackforla/website/issues/2198#issuecomment-1304874482) at 2022-11-06 11:24 AM PST -ExperimentsInHonesty,2022-11-06T19:28:30Z,- ExperimentsInHonesty closed issue by PR 3490: [2205](https://github.com/hackforla/website/issues/2205#event-7747792572) at 2022-11-06 11:28 AM PST -ExperimentsInHonesty,2022-11-06T19:29:31Z,- ExperimentsInHonesty commented on issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-1304875243) at 2022-11-06 11:29 AM PST -ExperimentsInHonesty,2022-11-06T19:40:44Z,- ExperimentsInHonesty closed issue by PR 2767: [2204](https://github.com/hackforla/website/issues/2204#event-7747808850) at 2022-11-06 11:40 AM PST -ExperimentsInHonesty,2022-11-06T20:06:20Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1304882665) at 2022-11-06 12:06 PM PST -ExperimentsInHonesty,2022-11-06T20:44:19Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1304889600) at 2022-11-06 12:44 PM PST -ExperimentsInHonesty,2022-11-06T20:50:45Z,- ExperimentsInHonesty commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1304890595) at 2022-11-06 12:50 PM PST -ExperimentsInHonesty,2022-11-06T21:02:33Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1304892925) at 2022-11-06 01:02 PM PST -ExperimentsInHonesty,2022-11-06T21:16:03Z,- ExperimentsInHonesty commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1304895709) at 2022-11-06 01:16 PM PST -ExperimentsInHonesty,2022-11-06T21:42:49Z,- ExperimentsInHonesty commented on issue: [3546](https://github.com/hackforla/website/issues/3546#issuecomment-1304901119) at 2022-11-06 01:42 PM PST -ExperimentsInHonesty,2022-11-06T21:47:16Z,- ExperimentsInHonesty commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1304901975) at 2022-11-06 01:47 PM PST -ExperimentsInHonesty,2022-11-06T21:47:45Z,- ExperimentsInHonesty closed issue as completed: [3056](https://github.com/hackforla/website/issues/3056#event-7747970387) at 2022-11-06 01:47 PM PST -ExperimentsInHonesty,2022-11-06T22:07:22Z,- ExperimentsInHonesty commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1304906631) at 2022-11-06 02:07 PM PST -ExperimentsInHonesty,2022-11-06T22:07:59Z,- ExperimentsInHonesty commented on issue: [3691](https://github.com/hackforla/website/issues/3691#issuecomment-1304906769) at 2022-11-06 02:07 PM PST -ExperimentsInHonesty,2022-11-06T22:21:15Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1304909356) at 2022-11-06 02:21 PM PST -ExperimentsInHonesty,2022-11-07T17:14:25Z,- ExperimentsInHonesty commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1305933275) at 2022-11-07 09:14 AM PST -ExperimentsInHonesty,2022-11-07T17:18:51Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1305938853) at 2022-11-07 09:18 AM PST -ExperimentsInHonesty,2022-11-07T17:31:33Z,- ExperimentsInHonesty commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1305953304) at 2022-11-07 09:31 AM PST -ExperimentsInHonesty,2022-11-07T17:43:41Z,- ExperimentsInHonesty commented on issue: [3080](https://github.com/hackforla/website/issues/3080#issuecomment-1305967445) at 2022-11-07 09:43 AM PST -ExperimentsInHonesty,2022-11-07T17:43:42Z,- ExperimentsInHonesty closed issue as completed: [3080](https://github.com/hackforla/website/issues/3080#event-7754944191) at 2022-11-07 09:43 AM PST -ExperimentsInHonesty,2022-11-07T17:44:34Z,- ExperimentsInHonesty commented on issue: [3180](https://github.com/hackforla/website/issues/3180#issuecomment-1305968036) at 2022-11-07 09:44 AM PST -ExperimentsInHonesty,2022-11-07T17:44:34Z,- ExperimentsInHonesty closed issue as completed: [3180](https://github.com/hackforla/website/issues/3180#event-7754946525) at 2022-11-07 09:44 AM PST -ExperimentsInHonesty,2022-11-07T18:05:36Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1305992546) at 2022-11-07 10:05 AM PST -ExperimentsInHonesty,2022-11-07T18:05:40Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1305992671) at 2022-11-07 10:05 AM PST -ExperimentsInHonesty,2022-11-07T22:28:38Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1306314762) at 2022-11-07 02:28 PM PST -ExperimentsInHonesty,2022-11-07T23:37:06Z,- ExperimentsInHonesty opened pull request: [3698](https://github.com/hackforla/website/pull/3698) at 2022-11-07 03:37 PM PST -ExperimentsInHonesty,2022-11-08T00:00:20Z,- ExperimentsInHonesty commented on pull request: [3698](https://github.com/hackforla/website/pull/3698#issuecomment-1306390703) at 2022-11-07 04:00 PM PST -ExperimentsInHonesty,2022-11-08T01:39:33Z,- ExperimentsInHonesty pull request merged: [3698](https://github.com/hackforla/website/pull/3698#event-7757933774) at 2022-11-07 05:39 PM PST -ExperimentsInHonesty,2022-11-08T15:50:35Z,- ExperimentsInHonesty opened issue: [3701](https://github.com/hackforla/website/issues/3701) at 2022-11-08 07:50 AM PST -ExperimentsInHonesty,2022-11-09T18:25:16Z,- ExperimentsInHonesty commented on issue: [1878](https://github.com/hackforla/website/issues/1878#issuecomment-1309188339) at 2022-11-09 10:25 AM PST -ExperimentsInHonesty,2022-11-09T18:41:30Z,- ExperimentsInHonesty commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1309204731) at 2022-11-09 10:41 AM PST -ExperimentsInHonesty,2022-11-09T20:26:53Z,- ExperimentsInHonesty closed issue as completed: [3252](https://github.com/hackforla/website/issues/3252#event-7777042956) at 2022-11-09 12:26 PM PST -ExperimentsInHonesty,2022-11-09T20:27:23Z,- ExperimentsInHonesty closed issue as completed: [3408](https://github.com/hackforla/website/issues/3408#event-7777046078) at 2022-11-09 12:27 PM PST -ExperimentsInHonesty,2022-11-09T20:27:47Z,- ExperimentsInHonesty closed issue as completed: [3412](https://github.com/hackforla/website/issues/3412#event-7777048787) at 2022-11-09 12:27 PM PST -ExperimentsInHonesty,2022-11-10T01:08:18Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1309628230) at 2022-11-09 05:08 PM PST -ExperimentsInHonesty,2022-11-13T17:09:57Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1312778461) at 2022-11-13 09:09 AM PST -ExperimentsInHonesty,2022-11-13T17:24:45Z,- ExperimentsInHonesty commented on issue: [3167](https://github.com/hackforla/website/issues/3167#issuecomment-1312780953) at 2022-11-13 09:24 AM PST -ExperimentsInHonesty,2022-11-13T17:26:24Z,- ExperimentsInHonesty commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1312781247) at 2022-11-13 09:26 AM PST -ExperimentsInHonesty,2022-11-13T17:29:49Z,- ExperimentsInHonesty commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1312781782) at 2022-11-13 09:29 AM PST -ExperimentsInHonesty,2022-11-13T17:30:36Z,- ExperimentsInHonesty commented on issue: [3545](https://github.com/hackforla/website/issues/3545#issuecomment-1312781926) at 2022-11-13 09:30 AM PST -ExperimentsInHonesty,2022-11-13T17:31:11Z,- ExperimentsInHonesty commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1312782011) at 2022-11-13 09:31 AM PST -ExperimentsInHonesty,2022-11-13T17:31:37Z,- ExperimentsInHonesty commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1312782080) at 2022-11-13 09:31 AM PST -ExperimentsInHonesty,2022-11-13T17:32:02Z,- ExperimentsInHonesty commented on issue: [3512](https://github.com/hackforla/website/issues/3512#issuecomment-1312782152) at 2022-11-13 09:32 AM PST -ExperimentsInHonesty,2022-11-13T17:33:54Z,- ExperimentsInHonesty commented on issue: [3245](https://github.com/hackforla/website/issues/3245#issuecomment-1312782466) at 2022-11-13 09:33 AM PST -ExperimentsInHonesty,2022-11-13T17:34:53Z,- ExperimentsInHonesty commented on issue: [3246](https://github.com/hackforla/website/issues/3246#issuecomment-1312782678) at 2022-11-13 09:34 AM PST -ExperimentsInHonesty,2022-11-13T17:35:15Z,- ExperimentsInHonesty commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1312782738) at 2022-11-13 09:35 AM PST -ExperimentsInHonesty,2022-11-13T17:43:36Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1312784099) at 2022-11-13 09:43 AM PST -ExperimentsInHonesty,2022-11-13T17:59:38Z,- ExperimentsInHonesty commented on issue: [3691](https://github.com/hackforla/website/issues/3691#issuecomment-1312786670) at 2022-11-13 09:59 AM PST -ExperimentsInHonesty,2022-11-13T18:23:41Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1312791601) at 2022-11-13 10:23 AM PST -ExperimentsInHonesty,2022-11-13T18:30:27Z,- ExperimentsInHonesty commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1312792831) at 2022-11-13 10:30 AM PST -ExperimentsInHonesty,2022-11-14T17:26:24Z,- ExperimentsInHonesty commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1314120661) at 2022-11-14 09:26 AM PST -ExperimentsInHonesty,2022-11-14T17:27:07Z,- ExperimentsInHonesty commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1314121364) at 2022-11-14 09:27 AM PST -ExperimentsInHonesty,2022-11-14T17:33:34Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1314129039) at 2022-11-14 09:33 AM PST -ExperimentsInHonesty,2022-11-14T17:33:39Z,- ExperimentsInHonesty unassigned from issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1314129039) at 2022-11-14 09:33 AM PST -ExperimentsInHonesty,2022-11-14T23:32:06Z,- ExperimentsInHonesty commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1314546517) at 2022-11-14 03:32 PM PST -ExperimentsInHonesty,2022-11-14T23:38:47Z,- ExperimentsInHonesty commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1314551689) at 2022-11-14 03:38 PM PST -ExperimentsInHonesty,2022-11-16T17:45:25Z,- ExperimentsInHonesty commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1317413949) at 2022-11-16 09:45 AM PST -ExperimentsInHonesty,2022-11-16T17:45:25Z,- ExperimentsInHonesty closed issue as completed: [3661](https://github.com/hackforla/website/issues/3661#event-7826498690) at 2022-11-16 09:45 AM PST -ExperimentsInHonesty,2022-11-16T17:52:40Z,- ExperimentsInHonesty commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1317423556) at 2022-11-16 09:52 AM PST -ExperimentsInHonesty,2022-11-19T19:01:05Z,- ExperimentsInHonesty commented on issue: [2576](https://github.com/hackforla/website/issues/2576#issuecomment-1320947774) at 2022-11-19 11:01 AM PST -ExperimentsInHonesty,2022-11-19T19:01:05Z,- ExperimentsInHonesty closed issue as completed: [2576](https://github.com/hackforla/website/issues/2576#event-7850107031) at 2022-11-19 11:01 AM PST -ExperimentsInHonesty,2022-11-20T18:44:40Z,- ExperimentsInHonesty closed issue as completed: [3434](https://github.com/hackforla/website/issues/3434#event-7851992624) at 2022-11-20 10:44 AM PST -ExperimentsInHonesty,2022-11-20T18:50:03Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1321212365) at 2022-11-20 10:50 AM PST -ExperimentsInHonesty,2022-11-21T15:34:56Z,- ExperimentsInHonesty opened issue: [3735](https://github.com/hackforla/website/issues/3735) at 2022-11-21 07:34 AM PST -ExperimentsInHonesty,2022-11-26T18:48:50Z,- ExperimentsInHonesty commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1328096306) at 2022-11-26 10:48 AM PST -ExperimentsInHonesty,2022-11-26T18:48:50Z,- ExperimentsInHonesty closed issue as completed: [3571](https://github.com/hackforla/website/issues/3571#event-7896607212) at 2022-11-26 10:48 AM PST -ExperimentsInHonesty,2022-11-26T19:03:19Z,- ExperimentsInHonesty commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1328098258) at 2022-11-26 11:03 AM PST -ExperimentsInHonesty,2022-11-26T19:20:15Z,- ExperimentsInHonesty commented on issue: [3735](https://github.com/hackforla/website/issues/3735#issuecomment-1328100470) at 2022-11-26 11:20 AM PST -ExperimentsInHonesty,2022-11-26T19:24:38Z,- ExperimentsInHonesty commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1328101052) at 2022-11-26 11:24 AM PST -ExperimentsInHonesty,2022-11-26T19:31:37Z,- ExperimentsInHonesty commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328101902) at 2022-11-26 11:31 AM PST -ExperimentsInHonesty,2022-11-26T19:53:12Z,- ExperimentsInHonesty commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1328104511) at 2022-11-26 11:53 AM PST -ExperimentsInHonesty,2022-11-26T20:17:40Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328107516) at 2022-11-26 12:17 PM PST -ExperimentsInHonesty,2022-11-26T21:00:47Z,- ExperimentsInHonesty commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1328113671) at 2022-11-26 01:00 PM PST -ExperimentsInHonesty,2022-11-27T03:50:11Z,- ExperimentsInHonesty commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1328164934) at 2022-11-26 07:50 PM PST -ExperimentsInHonesty,2022-11-27T04:04:35Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1328166495) at 2022-11-26 08:04 PM PST -ExperimentsInHonesty,2022-11-27T04:24:26Z,- ExperimentsInHonesty commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1328168818) at 2022-11-26 08:24 PM PST -ExperimentsInHonesty,2022-11-27T04:25:44Z,- ExperimentsInHonesty commented on issue: [3341](https://github.com/hackforla/website/issues/3341#issuecomment-1328168935) at 2022-11-26 08:25 PM PST -ExperimentsInHonesty,2022-11-27T04:33:35Z,- ExperimentsInHonesty commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1328169584) at 2022-11-26 08:33 PM PST -ExperimentsInHonesty,2022-11-27T04:39:04Z,- ExperimentsInHonesty commented on issue: [2299](https://github.com/hackforla/website/issues/2299#issuecomment-1328170089) at 2022-11-26 08:39 PM PST -ExperimentsInHonesty,2022-11-27T04:41:40Z,- ExperimentsInHonesty commented on issue: [2298](https://github.com/hackforla/website/issues/2298#issuecomment-1328170337) at 2022-11-26 08:41 PM PST -ExperimentsInHonesty,2022-11-27T04:43:11Z,- ExperimentsInHonesty commented on issue: [3166](https://github.com/hackforla/website/issues/3166#issuecomment-1328170490) at 2022-11-26 08:43 PM PST -ExperimentsInHonesty,2022-11-27T04:48:33Z,- ExperimentsInHonesty commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1328170999) at 2022-11-26 08:48 PM PST -ExperimentsInHonesty,2022-11-27T04:59:20Z,- ExperimentsInHonesty commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1328171964) at 2022-11-26 08:59 PM PST -ExperimentsInHonesty,2022-11-27T05:22:26Z,- ExperimentsInHonesty commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1328174510) at 2022-11-26 09:22 PM PST -ExperimentsInHonesty,2022-11-27T05:31:26Z,- ExperimentsInHonesty commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1328175300) at 2022-11-26 09:31 PM PST -ExperimentsInHonesty,2022-11-27T05:40:31Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1328176150) at 2022-11-26 09:40 PM PST -ExperimentsInHonesty,2022-11-27T05:43:06Z,- ExperimentsInHonesty closed issue as completed: [3153](https://github.com/hackforla/website/issues/3153#event-7897083642) at 2022-11-26 09:43 PM PST -ExperimentsInHonesty,2022-11-27T05:51:23Z,- ExperimentsInHonesty commented on issue: [3734](https://github.com/hackforla/website/issues/3734#issuecomment-1328177133) at 2022-11-26 09:51 PM PST -ExperimentsInHonesty,2022-11-27T06:01:07Z,- ExperimentsInHonesty commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328178099) at 2022-11-26 10:01 PM PST -ExperimentsInHonesty,2022-11-27T06:09:11Z,- ExperimentsInHonesty commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1328179044) at 2022-11-26 10:09 PM PST -ExperimentsInHonesty,2022-11-27T06:34:49Z,- ExperimentsInHonesty commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-1328181683) at 2022-11-26 10:34 PM PST -ExperimentsInHonesty,2022-11-27T06:37:39Z,- ExperimentsInHonesty commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1328181981) at 2022-11-26 10:37 PM PST -ExperimentsInHonesty,2022-11-27T06:55:38Z,- ExperimentsInHonesty commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1328183793) at 2022-11-26 10:55 PM PST -ExperimentsInHonesty,2022-11-27T07:00:47Z,- ExperimentsInHonesty commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1328184353) at 2022-11-26 11:00 PM PST -ExperimentsInHonesty,2022-11-27T07:03:21Z,- ExperimentsInHonesty closed issue as completed: [3406](https://github.com/hackforla/website/issues/3406#event-7897141913) at 2022-11-26 11:03 PM PST -ExperimentsInHonesty,2022-11-27T07:06:14Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1328185038) at 2022-11-26 11:06 PM PST -ExperimentsInHonesty,2022-11-27T07:11:49Z,- ExperimentsInHonesty commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1328185738) at 2022-11-26 11:11 PM PST -ExperimentsInHonesty,2022-11-27T07:15:59Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1328186274) at 2022-11-26 11:15 PM PST -ExperimentsInHonesty,2022-11-27T07:16:33Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1328186326) at 2022-11-26 11:16 PM PST -ExperimentsInHonesty,2022-11-27T07:19:25Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1328186672) at 2022-11-26 11:19 PM PST -ExperimentsInHonesty,2022-11-27T07:24:02Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1328187176) at 2022-11-26 11:24 PM PST -ExperimentsInHonesty,2022-11-27T07:25:55Z,- ExperimentsInHonesty commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1328187360) at 2022-11-26 11:25 PM PST -ExperimentsInHonesty,2022-11-27T07:35:02Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1328188313) at 2022-11-26 11:35 PM PST -ExperimentsInHonesty,2022-11-27T07:36:38Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1328188461) at 2022-11-26 11:36 PM PST -ExperimentsInHonesty,2022-11-27T07:38:15Z,- ExperimentsInHonesty commented on issue: [3706](https://github.com/hackforla/website/issues/3706#issuecomment-1328188612) at 2022-11-26 11:38 PM PST -ExperimentsInHonesty,2022-11-27T07:56:29Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1328190837) at 2022-11-26 11:56 PM PST -ExperimentsInHonesty,2022-11-27T08:00:49Z,- ExperimentsInHonesty commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1328191391) at 2022-11-27 12:00 AM PST -ExperimentsInHonesty,2022-11-27T08:07:35Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1328192541) at 2022-11-27 12:07 AM PST -ExperimentsInHonesty,2022-11-27T08:12:47Z,- ExperimentsInHonesty commented on issue: [3634](https://github.com/hackforla/website/issues/3634#issuecomment-1328193361) at 2022-11-27 12:12 AM PST -ExperimentsInHonesty,2022-11-27T08:26:11Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1328195050) at 2022-11-27 12:26 AM PST -ExperimentsInHonesty,2022-11-27T08:41:57Z,- ExperimentsInHonesty commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1328197383) at 2022-11-27 12:41 AM PST -ExperimentsInHonesty,2022-11-27T09:04:58Z,- ExperimentsInHonesty commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1328200974) at 2022-11-27 01:04 AM PST -ExperimentsInHonesty,2022-11-27T09:20:56Z,- ExperimentsInHonesty commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1328204261) at 2022-11-27 01:20 AM PST -ExperimentsInHonesty,2022-11-27T09:22:32Z,- ExperimentsInHonesty commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1328204529) at 2022-11-27 01:22 AM PST -ExperimentsInHonesty,2022-11-27T09:29:47Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328205643) at 2022-11-27 01:29 AM PST -ExperimentsInHonesty,2022-11-27T09:33:02Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328206170) at 2022-11-27 01:33 AM PST -ExperimentsInHonesty,2022-11-27T09:49:58Z,- ExperimentsInHonesty reopened issue: [3604](https://github.com/hackforla/website/issues/3604#event-7798922045) at 2022-11-27 01:49 AM PST -ExperimentsInHonesty,2022-11-27T09:51:01Z,- ExperimentsInHonesty commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328208839) at 2022-11-27 01:51 AM PST -ExperimentsInHonesty,2022-11-27T18:33:20Z,- ExperimentsInHonesty commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1328312902) at 2022-11-27 10:33 AM PST -ExperimentsInHonesty,2022-11-27T19:00:00Z,- ExperimentsInHonesty opened issue: [3748](https://github.com/hackforla/website/issues/3748) at 2022-11-27 11:00 AM PST -ExperimentsInHonesty,2022-11-27T19:09:05Z,- ExperimentsInHonesty commented on issue: [3734](https://github.com/hackforla/website/issues/3734#issuecomment-1328319044) at 2022-11-27 11:09 AM PST -ExperimentsInHonesty,2022-11-27T19:20:06Z,- ExperimentsInHonesty commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328320992) at 2022-11-27 11:20 AM PST -ExperimentsInHonesty,2022-11-27T19:27:10Z,- ExperimentsInHonesty commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1328322289) at 2022-11-27 11:27 AM PST -ExperimentsInHonesty,2022-11-27T19:36:23Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-11-27 11:36 AM PST -ExperimentsInHonesty,2022-11-27T19:36:25Z,- ExperimentsInHonesty reopened issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-11-27 11:36 AM PST -ExperimentsInHonesty,2022-11-27T19:41:52Z,- ExperimentsInHonesty commented on issue: [3634](https://github.com/hackforla/website/issues/3634#issuecomment-1328324752) at 2022-11-27 11:41 AM PST -ExperimentsInHonesty,2022-11-27T19:47:07Z,- ExperimentsInHonesty commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1328325640) at 2022-11-27 11:47 AM PST -ExperimentsInHonesty,2022-11-27T19:53:16Z,- ExperimentsInHonesty commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1328326660) at 2022-11-27 11:53 AM PST -ExperimentsInHonesty,2022-11-27T20:04:29Z,- ExperimentsInHonesty commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1328328768) at 2022-11-27 12:04 PM PST -ExperimentsInHonesty,2022-11-27T20:06:21Z,- ExperimentsInHonesty reopened issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328206170) at 2022-11-27 12:06 PM PST -ExperimentsInHonesty,2022-11-27T20:09:16Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1328329813) at 2022-11-27 12:09 PM PST -ExperimentsInHonesty,2022-11-27T20:21:59Z,- ExperimentsInHonesty commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328332173) at 2022-11-27 12:21 PM PST -ExperimentsInHonesty,2022-11-27T20:22:01Z,- ExperimentsInHonesty reopened issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328332173) at 2022-11-27 12:22 PM PST -ExperimentsInHonesty,2022-11-27T20:42:50Z,- ExperimentsInHonesty commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1328335715) at 2022-11-27 12:42 PM PST -ExperimentsInHonesty,2022-11-28T17:36:11Z,- ExperimentsInHonesty commented on issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1329482194) at 2022-11-28 09:36 AM PST -ExperimentsInHonesty,2022-11-29T01:54:23Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1329972156) at 2022-11-28 05:54 PM PST -ExperimentsInHonesty,2022-11-29T01:57:58Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1329973906) at 2022-11-28 05:57 PM PST -ExperimentsInHonesty,2022-11-29T02:01:28Z,- ExperimentsInHonesty commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1329975785) at 2022-11-28 06:01 PM PST -ExperimentsInHonesty,2022-11-29T02:28:35Z,- ExperimentsInHonesty commented on issue: [2435](https://github.com/hackforla/website/issues/2435#issuecomment-1329993757) at 2022-11-28 06:28 PM PST -ExperimentsInHonesty,2022-11-29T14:47:50Z,- ExperimentsInHonesty commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1330763184) at 2022-11-29 06:47 AM PST -ExperimentsInHonesty,2022-11-29T14:48:34Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1330764858) at 2022-11-29 06:48 AM PST -ExperimentsInHonesty,2022-11-29T14:53:03Z,- ExperimentsInHonesty commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1330771382) at 2022-11-29 06:53 AM PST -ExperimentsInHonesty,2022-11-29T14:57:03Z,- ExperimentsInHonesty closed issue as completed: [3606](https://github.com/hackforla/website/issues/3606#event-7913439691) at 2022-11-29 06:57 AM PST -ExperimentsInHonesty,2022-11-29T14:57:56Z,- ExperimentsInHonesty closed issue as completed: [3553](https://github.com/hackforla/website/issues/3553#event-7913448608) at 2022-11-29 06:57 AM PST -ExperimentsInHonesty,2022-11-29T14:58:14Z,- ExperimentsInHonesty closed issue as completed: [3569](https://github.com/hackforla/website/issues/3569#event-7913451593) at 2022-11-29 06:58 AM PST -ExperimentsInHonesty,2022-11-29T15:02:39Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1330786611) at 2022-11-29 07:02 AM PST -ExperimentsInHonesty,2022-11-29T15:26:58Z,- ExperimentsInHonesty commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1330824787) at 2022-11-29 07:26 AM PST -ExperimentsInHonesty,2022-12-02T15:49:45Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1335450887) at 2022-12-02 07:49 AM PST -ExperimentsInHonesty,2022-12-02T16:09:28Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1335479529) at 2022-12-02 08:09 AM PST -ExperimentsInHonesty,2022-12-02T20:09:56Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1335792087) at 2022-12-02 12:09 PM PST -ExperimentsInHonesty,2022-12-02T20:44:31Z,- ExperimentsInHonesty commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1335827358) at 2022-12-02 12:44 PM PST -ExperimentsInHonesty,2022-12-02T20:47:04Z,- ExperimentsInHonesty commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-1335829061) at 2022-12-02 12:47 PM PST -ExperimentsInHonesty,2022-12-02T20:52:34Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1335835546) at 2022-12-02 12:52 PM PST -ExperimentsInHonesty,2022-12-02T20:56:05Z,- ExperimentsInHonesty commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1335837974) at 2022-12-02 12:56 PM PST -ExperimentsInHonesty,2022-12-02T21:00:21Z,- ExperimentsInHonesty commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1335840746) at 2022-12-02 01:00 PM PST -ExperimentsInHonesty,2022-12-02T21:06:47Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1335845685) at 2022-12-02 01:06 PM PST -ExperimentsInHonesty,2022-12-02T21:09:57Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1335847822) at 2022-12-02 01:09 PM PST -ExperimentsInHonesty,2022-12-02T21:16:41Z,- ExperimentsInHonesty commented on issue: [3608](https://github.com/hackforla/website/issues/3608#issuecomment-1335852309) at 2022-12-02 01:16 PM PST -ExperimentsInHonesty,2022-12-02T21:16:46Z,- ExperimentsInHonesty closed issue as completed: [3608](https://github.com/hackforla/website/issues/3608#event-7943838982) at 2022-12-02 01:16 PM PST -ExperimentsInHonesty,2022-12-02T21:20:59Z,- ExperimentsInHonesty commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1335855453) at 2022-12-02 01:20 PM PST -ExperimentsInHonesty,2022-12-02T21:26:44Z,- ExperimentsInHonesty commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1335859441) at 2022-12-02 01:26 PM PST -ExperimentsInHonesty,2022-12-02T21:29:23Z,- ExperimentsInHonesty commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1335861286) at 2022-12-02 01:29 PM PST -ExperimentsInHonesty,2022-12-02T21:34:25Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1335864572) at 2022-12-02 01:34 PM PST -ExperimentsInHonesty,2022-12-02T21:36:05Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1335865789) at 2022-12-02 01:36 PM PST -ExperimentsInHonesty,2022-12-02T21:39:49Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1335868749) at 2022-12-02 01:39 PM PST -ExperimentsInHonesty,2022-12-02T21:42:36Z,- ExperimentsInHonesty commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1335870961) at 2022-12-02 01:42 PM PST -ExperimentsInHonesty,2022-12-02T21:59:39Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1335888414) at 2022-12-02 01:59 PM PST -ExperimentsInHonesty,2022-12-03T00:24:14Z,- ExperimentsInHonesty commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1335983599) at 2022-12-02 04:24 PM PST -ExperimentsInHonesty,2022-12-03T00:32:10Z,- ExperimentsInHonesty commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1335986237) at 2022-12-02 04:32 PM PST -ExperimentsInHonesty,2022-12-05T21:21:52Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1338185396) at 2022-12-05 01:21 PM PST -ExperimentsInHonesty,2023-01-04T17:43:11Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1371231710) at 2023-01-04 09:43 AM PST -ExperimentsInHonesty,2023-01-08T17:08:59Z,- ExperimentsInHonesty commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1374883013) at 2023-01-08 09:08 AM PST -ExperimentsInHonesty,2023-01-08T17:31:40Z,- ExperimentsInHonesty commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1374887337) at 2023-01-08 09:31 AM PST -ExperimentsInHonesty,2023-01-08T18:55:24Z,- ExperimentsInHonesty commented on issue: [3796](https://github.com/hackforla/website/issues/3796#issuecomment-1374902948) at 2023-01-08 10:55 AM PST -ExperimentsInHonesty,2023-01-08T19:05:19Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1374905033) at 2023-01-08 11:05 AM PST -ExperimentsInHonesty,2023-01-09T03:04:20Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1375047981) at 2023-01-08 07:04 PM PST -ExperimentsInHonesty,2023-01-09T03:06:04Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1375049581) at 2023-01-08 07:06 PM PST -ExperimentsInHonesty,2023-01-09T03:09:26Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1375052262) at 2023-01-08 07:09 PM PST -ExperimentsInHonesty,2023-01-09T03:12:01Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1375054207) at 2023-01-08 07:12 PM PST -ExperimentsInHonesty,2023-01-09T03:20:30Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1375060441) at 2023-01-08 07:20 PM PST -ExperimentsInHonesty,2023-01-09T03:22:36Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1375061745) at 2023-01-08 07:22 PM PST -ExperimentsInHonesty,2023-01-09T03:25:06Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1375062979) at 2023-01-08 07:25 PM PST -ExperimentsInHonesty,2023-01-09T03:30:51Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1375065765) at 2023-01-08 07:30 PM PST -ExperimentsInHonesty,2023-01-09T03:33:30Z,- ExperimentsInHonesty commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1375066761) at 2023-01-08 07:33 PM PST -ExperimentsInHonesty,2023-01-09T03:49:01Z,- ExperimentsInHonesty commented on issue: [3509](https://github.com/hackforla/website/issues/3509#issuecomment-1375071684) at 2023-01-08 07:49 PM PST -ExperimentsInHonesty,2023-01-09T04:00:51Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1375075347) at 2023-01-08 08:00 PM PST -ExperimentsInHonesty,2023-01-09T04:01:13Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1375075620) at 2023-01-08 08:01 PM PST -ExperimentsInHonesty,2023-01-09T04:08:36Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1375082474) at 2023-01-08 08:08 PM PST -ExperimentsInHonesty,2023-01-09T04:13:10Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1375085928) at 2023-01-08 08:13 PM PST -ExperimentsInHonesty,2023-01-09T04:22:06Z,- ExperimentsInHonesty commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1375091905) at 2023-01-08 08:22 PM PST -ExperimentsInHonesty,2023-01-09T04:22:06Z,- ExperimentsInHonesty closed issue as completed: [3613](https://github.com/hackforla/website/issues/3613#event-8178107585) at 2023-01-08 08:22 PM PST -ExperimentsInHonesty,2023-01-09T04:25:13Z,- ExperimentsInHonesty commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1375093824) at 2023-01-08 08:25 PM PST -ExperimentsInHonesty,2023-01-09T04:25:13Z,- ExperimentsInHonesty closed issue as completed: [3637](https://github.com/hackforla/website/issues/3637#event-8178118131) at 2023-01-08 08:25 PM PST -ExperimentsInHonesty,2023-01-09T04:27:38Z,- ExperimentsInHonesty commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1375095174) at 2023-01-08 08:27 PM PST -ExperimentsInHonesty,2023-01-09T04:27:38Z,- ExperimentsInHonesty closed issue as completed: [3639](https://github.com/hackforla/website/issues/3639#event-8178126476) at 2023-01-08 08:27 PM PST -ExperimentsInHonesty,2023-01-09T04:31:19Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1375097061) at 2023-01-08 08:31 PM PST -ExperimentsInHonesty,2023-01-09T04:34:17Z,- ExperimentsInHonesty commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1375098436) at 2023-01-08 08:34 PM PST -ExperimentsInHonesty,2023-01-09T04:38:13Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1375099931) at 2023-01-08 08:38 PM PST -ExperimentsInHonesty,2023-01-09T04:41:23Z,- ExperimentsInHonesty commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1375101119) at 2023-01-08 08:41 PM PST -ExperimentsInHonesty,2023-01-09T04:41:59Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1375101371) at 2023-01-08 08:41 PM PST -ExperimentsInHonesty,2023-01-09T04:44:04Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1375102082) at 2023-01-08 08:44 PM PST -ExperimentsInHonesty,2023-01-09T04:49:59Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1375104044) at 2023-01-08 08:49 PM PST -ExperimentsInHonesty,2023-01-09T04:52:26Z,- ExperimentsInHonesty commented on issue: [3706](https://github.com/hackforla/website/issues/3706#issuecomment-1375104788) at 2023-01-08 08:52 PM PST -ExperimentsInHonesty,2023-01-09T04:56:19Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1375106017) at 2023-01-08 08:56 PM PST -ExperimentsInHonesty,2023-01-09T05:11:19Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1375115877) at 2023-01-08 09:11 PM PST -ExperimentsInHonesty,2023-01-09T05:15:31Z,- ExperimentsInHonesty commented on issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1375118859) at 2023-01-08 09:15 PM PST -ExperimentsInHonesty,2023-01-09T05:17:47Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1375120273) at 2023-01-08 09:17 PM PST -ExperimentsInHonesty,2023-01-09T05:19:26Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1375121122) at 2023-01-08 09:19 PM PST -ExperimentsInHonesty,2023-01-09T05:21:08Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1375121804) at 2023-01-08 09:21 PM PST -ExperimentsInHonesty,2023-01-09T05:23:58Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1375122938) at 2023-01-08 09:23 PM PST -ExperimentsInHonesty,2023-01-09T05:28:44Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1375124725) at 2023-01-08 09:28 PM PST -ExperimentsInHonesty,2023-01-09T05:31:14Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1375125708) at 2023-01-08 09:31 PM PST -ExperimentsInHonesty,2023-01-09T05:33:06Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1375126422) at 2023-01-08 09:33 PM PST -ExperimentsInHonesty,2023-01-09T05:35:58Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1375127560) at 2023-01-08 09:35 PM PST -ExperimentsInHonesty,2023-01-09T05:39:05Z,- ExperimentsInHonesty commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1375128769) at 2023-01-08 09:39 PM PST -ExperimentsInHonesty,2023-01-09T05:41:49Z,- ExperimentsInHonesty commented on issue: [3796](https://github.com/hackforla/website/issues/3796#issuecomment-1375129770) at 2023-01-08 09:41 PM PST -ExperimentsInHonesty,2023-01-10T21:45:33Z,- ExperimentsInHonesty commented on issue: [2947](https://github.com/hackforla/website/issues/2947#issuecomment-1377929246) at 2023-01-10 01:45 PM PST -ExperimentsInHonesty,2023-01-11T17:40:35Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1379252206) at 2023-01-11 09:40 AM PST -ExperimentsInHonesty,2023-01-11T17:44:33Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1379258194) at 2023-01-11 09:44 AM PST -ExperimentsInHonesty,2023-01-15T16:55:45Z,- ExperimentsInHonesty commented on issue: [3803](https://github.com/hackforla/website/issues/3803#issuecomment-1383199526) at 2023-01-15 08:55 AM PST -ExperimentsInHonesty,2023-01-15T16:59:12Z,- ExperimentsInHonesty commented on issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1383200218) at 2023-01-15 08:59 AM PST -ExperimentsInHonesty,2023-01-15T17:07:19Z,- ExperimentsInHonesty commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1383202116) at 2023-01-15 09:07 AM PST -ExperimentsInHonesty,2023-01-15T17:07:23Z,- ExperimentsInHonesty reopened issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1383202116) at 2023-01-15 09:07 AM PST -ExperimentsInHonesty,2023-01-15T17:09:34Z,- ExperimentsInHonesty commented on issue: [2861](https://github.com/hackforla/website/issues/2861#issuecomment-1383202902) at 2023-01-15 09:09 AM PST -ExperimentsInHonesty,2023-01-15T17:22:10Z,- ExperimentsInHonesty commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1383205729) at 2023-01-15 09:22 AM PST -ExperimentsInHonesty,2023-01-15T17:33:24Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1383207871) at 2023-01-15 09:33 AM PST -ExperimentsInHonesty,2023-01-15T17:33:39Z,- ExperimentsInHonesty reopened issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1383207871) at 2023-01-15 09:33 AM PST -ExperimentsInHonesty,2023-01-15T17:35:13Z,- ExperimentsInHonesty commented on issue: [3710](https://github.com/hackforla/website/issues/3710#issuecomment-1383208179) at 2023-01-15 09:35 AM PST -ExperimentsInHonesty,2023-01-15T17:41:25Z,- ExperimentsInHonesty commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1383209455) at 2023-01-15 09:41 AM PST -ExperimentsInHonesty,2023-01-15T17:43:49Z,- ExperimentsInHonesty commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1383210061) at 2023-01-15 09:43 AM PST -ExperimentsInHonesty,2023-01-15T17:47:48Z,- ExperimentsInHonesty commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1383210995) at 2023-01-15 09:47 AM PST -ExperimentsInHonesty,2023-01-15T17:47:48Z,- ExperimentsInHonesty reopened issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1383210995) at 2023-01-15 09:47 AM PST -ExperimentsInHonesty,2023-01-15T17:54:43Z,- ExperimentsInHonesty commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1383212318) at 2023-01-15 09:54 AM PST -ExperimentsInHonesty,2023-01-15T18:28:49Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1383219592) at 2023-01-15 10:28 AM PST -ExperimentsInHonesty,2023-01-15T18:38:07Z,- ExperimentsInHonesty commented on issue: [3748](https://github.com/hackforla/website/issues/3748#issuecomment-1383221254) at 2023-01-15 10:38 AM PST -ExperimentsInHonesty,2023-01-15T18:40:13Z,- ExperimentsInHonesty commented on issue: [3417](https://github.com/hackforla/website/issues/3417#issuecomment-1383221677) at 2023-01-15 10:40 AM PST -ExperimentsInHonesty,2023-01-15T18:45:38Z,- ExperimentsInHonesty commented on issue: [2958](https://github.com/hackforla/website/issues/2958#issuecomment-1383222682) at 2023-01-15 10:45 AM PST -ExperimentsInHonesty,2023-01-22T17:23:13Z,- ExperimentsInHonesty commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1399552035) at 2023-01-22 09:23 AM PST -ExperimentsInHonesty,2023-01-22T17:32:03Z,- ExperimentsInHonesty assigned to issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1379258194) at 2023-01-22 09:32 AM PST -ExperimentsInHonesty,2023-01-22T19:16:27Z,- ExperimentsInHonesty commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1399579073) at 2023-01-22 11:16 AM PST -ExperimentsInHonesty,2023-01-22T19:20:11Z,- ExperimentsInHonesty opened issue: [3851](https://github.com/hackforla/website/issues/3851) at 2023-01-22 11:20 AM PST -ExperimentsInHonesty,2023-01-22T19:55:27Z,- ExperimentsInHonesty closed issue as completed: [3089](https://github.com/hackforla/website/issues/3089#event-8329458421) at 2023-01-22 11:55 AM PST -ExperimentsInHonesty,2023-01-22T21:07:37Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399608678) at 2023-01-22 01:07 PM PST -ExperimentsInHonesty,2023-01-22T21:28:58Z,- ExperimentsInHonesty opened issue: [3858](https://github.com/hackforla/website/issues/3858) at 2023-01-22 01:28 PM PST -ExperimentsInHonesty,2023-01-22T21:31:46Z,- ExperimentsInHonesty commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399614108) at 2023-01-22 01:31 PM PST -ExperimentsInHonesty,2023-01-22T21:36:03Z,- ExperimentsInHonesty commented on issue: [3858](https://github.com/hackforla/website/issues/3858#issuecomment-1399615005) at 2023-01-22 01:36 PM PST -ExperimentsInHonesty,2023-01-22T22:16:33Z,- ExperimentsInHonesty opened issue: [3859](https://github.com/hackforla/website/issues/3859) at 2023-01-22 02:16 PM PST -ExperimentsInHonesty,2023-01-22T22:31:23Z,- ExperimentsInHonesty commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1399626813) at 2023-01-22 02:31 PM PST -ExperimentsInHonesty,2023-01-22T22:59:58Z,- ExperimentsInHonesty commented on issue: [3858](https://github.com/hackforla/website/issues/3858#issuecomment-1399632664) at 2023-01-22 02:59 PM PST -ExperimentsInHonesty,2023-01-24T01:36:25Z,- ExperimentsInHonesty commented on issue: [2567](https://github.com/hackforla/website/issues/2567#issuecomment-1401290140) at 2023-01-23 05:36 PM PST -ExperimentsInHonesty,2023-01-24T01:42:22Z,- ExperimentsInHonesty commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1401293557) at 2023-01-23 05:42 PM PST -ExperimentsInHonesty,2023-01-24T02:10:57Z,- ExperimentsInHonesty commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1401310301) at 2023-01-23 06:10 PM PST -ExperimentsInHonesty,2023-01-24T02:22:42Z,- ExperimentsInHonesty commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1401316234) at 2023-01-23 06:22 PM PST -ExperimentsInHonesty,2023-01-24T02:34:28Z,- ExperimentsInHonesty commented on issue: [3855](https://github.com/hackforla/website/issues/3855#issuecomment-1401321885) at 2023-01-23 06:34 PM PST -ExperimentsInHonesty,2023-01-24T02:34:29Z,- ExperimentsInHonesty closed issue as completed: [3855](https://github.com/hackforla/website/issues/3855#event-8340109975) at 2023-01-23 06:34 PM PST -ExperimentsInHonesty,2023-01-29T18:50:06Z,- ExperimentsInHonesty opened issue: [3890](https://github.com/hackforla/website/issues/3890) at 2023-01-29 10:50 AM PST -ExperimentsInHonesty,2023-01-29T18:53:38Z,- ExperimentsInHonesty assigned to issue: [3890](https://github.com/hackforla/website/issues/3890) at 2023-01-29 10:53 AM PST -ExperimentsInHonesty,2023-01-29T19:17:37Z,- ExperimentsInHonesty commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1407747225) at 2023-01-29 11:17 AM PST -ExperimentsInHonesty,2023-01-29T19:26:33Z,- ExperimentsInHonesty unassigned from issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1407747225) at 2023-01-29 11:26 AM PST -ExperimentsInHonesty,2023-01-29T23:09:08Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1407796831) at 2023-01-29 03:09 PM PST -ExperimentsInHonesty,2023-01-29T23:41:19Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407805181) at 2023-01-29 03:41 PM PST -ExperimentsInHonesty,2023-01-29T23:44:17Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407805861) at 2023-01-29 03:44 PM PST -ExperimentsInHonesty,2023-01-29T23:53:19Z,- ExperimentsInHonesty commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1407807995) at 2023-01-29 03:53 PM PST -ExperimentsInHonesty,2023-01-30T00:04:12Z,- ExperimentsInHonesty unassigned from issue: [312](https://github.com/hackforla/website/issues/312#event-4881095493) at 2023-01-29 04:04 PM PST -ExperimentsInHonesty,2023-01-30T00:41:09Z,- ExperimentsInHonesty opened issue: [3891](https://github.com/hackforla/website/issues/3891) at 2023-01-29 04:41 PM PST -ExperimentsInHonesty,2023-01-30T00:42:34Z,- ExperimentsInHonesty assigned to issue: [3891](https://github.com/hackforla/website/issues/3891) at 2023-01-29 04:42 PM PST -ExperimentsInHonesty,2023-01-30T00:47:13Z,- ExperimentsInHonesty opened issue: [3892](https://github.com/hackforla/website/issues/3892) at 2023-01-29 04:47 PM PST -ExperimentsInHonesty,2023-01-30T00:55:24Z,- ExperimentsInHonesty opened issue: [3893](https://github.com/hackforla/website/issues/3893) at 2023-01-29 04:55 PM PST -ExperimentsInHonesty,2023-01-30T01:13:45Z,- ExperimentsInHonesty opened issue: [3895](https://github.com/hackforla/website/issues/3895) at 2023-01-29 05:13 PM PST -ExperimentsInHonesty,2023-01-30T01:19:58Z,- ExperimentsInHonesty commented on issue: [3891](https://github.com/hackforla/website/issues/3891#issuecomment-1407848476) at 2023-01-29 05:19 PM PST -ExperimentsInHonesty,2023-01-30T01:19:58Z,- ExperimentsInHonesty closed issue as completed: [3891](https://github.com/hackforla/website/issues/3891#event-8383227698) at 2023-01-29 05:19 PM PST -ExperimentsInHonesty,2023-01-30T04:16:48Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1407971553) at 2023-01-29 08:16 PM PST -ExperimentsInHonesty,2023-01-30T04:21:59Z,- ExperimentsInHonesty commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1407975561) at 2023-01-29 08:21 PM PST -ExperimentsInHonesty,2023-01-30T04:29:41Z,- ExperimentsInHonesty commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1407981561) at 2023-01-29 08:29 PM PST -ExperimentsInHonesty,2023-01-30T04:45:08Z,- ExperimentsInHonesty commented on issue: [2485](https://github.com/hackforla/website/issues/2485#issuecomment-1407993011) at 2023-01-29 08:45 PM PST -ExperimentsInHonesty,2023-01-31T01:29:22Z,- ExperimentsInHonesty commented on issue: [3634](https://github.com/hackforla/website/issues/3634#issuecomment-1409612161) at 2023-01-30 05:29 PM PST -ExperimentsInHonesty,2023-01-31T01:35:12Z,- ExperimentsInHonesty closed issue as completed: [3634](https://github.com/hackforla/website/issues/3634#event-8394208016) at 2023-01-30 05:35 PM PST -ExperimentsInHonesty,2023-01-31T01:35:19Z,- ExperimentsInHonesty assigned to issue: [3634](https://github.com/hackforla/website/issues/3634#event-8394208016) at 2023-01-30 05:35 PM PST -ExperimentsInHonesty,2023-01-31T03:00:40Z,- ExperimentsInHonesty commented on issue: [3720](https://github.com/hackforla/website/issues/3720#issuecomment-1409670518) at 2023-01-30 07:00 PM PST -ExperimentsInHonesty,2023-01-31T15:34:11Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1410597638) at 2023-01-31 07:34 AM PST -ExperimentsInHonesty,2023-02-03T18:45:57Z,- ExperimentsInHonesty commented on issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416262079) at 2023-02-03 10:45 AM PST -ExperimentsInHonesty,2023-02-03T18:49:58Z,- ExperimentsInHonesty commented on issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416265727) at 2023-02-03 10:49 AM PST -ExperimentsInHonesty,2023-02-04T00:09:18Z,- ExperimentsInHonesty commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1416547323) at 2023-02-03 04:09 PM PST -ExperimentsInHonesty,2023-02-04T16:47:53Z,- ExperimentsInHonesty commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416798094) at 2023-02-04 08:47 AM PST -ExperimentsInHonesty,2023-02-05T19:47:20Z,- ExperimentsInHonesty commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1418248653) at 2023-02-05 11:47 AM PST -ExperimentsInHonesty,2023-02-05T19:48:17Z,- ExperimentsInHonesty commented on issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1418248835) at 2023-02-05 11:48 AM PST -ExperimentsInHonesty,2023-02-07T01:30:18Z,- ExperimentsInHonesty commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1420038144) at 2023-02-06 05:30 PM PST -ExperimentsInHonesty,2023-02-07T01:34:03Z,- ExperimentsInHonesty commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1420040545) at 2023-02-06 05:34 PM PST -ExperimentsInHonesty,2023-02-07T01:42:01Z,- ExperimentsInHonesty commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1420045154) at 2023-02-06 05:42 PM PST -ExperimentsInHonesty,2023-02-07T01:46:46Z,- ExperimentsInHonesty commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1420047683) at 2023-02-06 05:46 PM PST -ExperimentsInHonesty,2023-02-07T01:51:30Z,- ExperimentsInHonesty commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1420050148) at 2023-02-06 05:51 PM PST -ExperimentsInHonesty,2023-02-07T02:02:36Z,- ExperimentsInHonesty opened pull request: [3945](https://github.com/hackforla/website/pull/3945) at 2023-02-06 06:02 PM PST -ExperimentsInHonesty,2023-02-07T02:14:36Z,- ExperimentsInHonesty pull request merged: [3945](https://github.com/hackforla/website/pull/3945#event-8453436869) at 2023-02-06 06:14 PM PST -ExperimentsInHonesty,2023-02-08T22:07:18Z,- ExperimentsInHonesty commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1423301660) at 2023-02-08 02:07 PM PST -ExperimentsInHonesty,2023-02-12T17:33:00Z,- ExperimentsInHonesty commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1427088430) at 2023-02-12 09:33 AM PST -ExperimentsInHonesty,2023-02-12T18:26:45Z,- ExperimentsInHonesty commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1427099997) at 2023-02-12 10:26 AM PST -ExperimentsInHonesty,2023-02-12T23:32:09Z,- ExperimentsInHonesty commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1427163718) at 2023-02-12 03:32 PM PST -ExperimentsInHonesty,2023-02-12T23:32:09Z,- ExperimentsInHonesty reopened issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1427163718) at 2023-02-12 03:32 PM PST -ExperimentsInHonesty,2023-02-12T23:35:57Z,- ExperimentsInHonesty commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1427164538) at 2023-02-12 03:35 PM PST -ExperimentsInHonesty,2023-02-12T23:35:58Z,- ExperimentsInHonesty reopened issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1427164538) at 2023-02-12 03:35 PM PST -ExperimentsInHonesty,2023-02-12T23:42:24Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1427165958) at 2023-02-12 03:42 PM PST -ExperimentsInHonesty,2023-02-12T23:42:25Z,- ExperimentsInHonesty reopened issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1427165958) at 2023-02-12 03:42 PM PST -ExperimentsInHonesty,2023-02-12T23:45:33Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1427166630) at 2023-02-12 03:45 PM PST -ExperimentsInHonesty,2023-02-12T23:45:33Z,- ExperimentsInHonesty reopened issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1427166630) at 2023-02-12 03:45 PM PST -ExperimentsInHonesty,2023-02-12T23:47:30Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1427167014) at 2023-02-12 03:47 PM PST -ExperimentsInHonesty,2023-02-12T23:47:30Z,- ExperimentsInHonesty reopened issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1427167014) at 2023-02-12 03:47 PM PST -ExperimentsInHonesty,2023-02-12T23:49:23Z,- ExperimentsInHonesty commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1427167330) at 2023-02-12 03:49 PM PST -ExperimentsInHonesty,2023-02-12T23:49:23Z,- ExperimentsInHonesty reopened issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1427167330) at 2023-02-12 03:49 PM PST -ExperimentsInHonesty,2023-02-12T23:59:54Z,- ExperimentsInHonesty commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1427169494) at 2023-02-12 03:59 PM PST -ExperimentsInHonesty,2023-02-13T00:03:04Z,- ExperimentsInHonesty commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1427170779) at 2023-02-12 04:03 PM PST -ExperimentsInHonesty,2023-02-13T00:03:04Z,- ExperimentsInHonesty reopened issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1427170779) at 2023-02-12 04:03 PM PST -ExperimentsInHonesty,2023-02-13T00:08:04Z,- ExperimentsInHonesty commented on issue: [3958](https://github.com/hackforla/website/issues/3958#issuecomment-1427172910) at 2023-02-12 04:08 PM PST -ExperimentsInHonesty,2023-02-13T00:10:23Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1427173736) at 2023-02-12 04:10 PM PST -ExperimentsInHonesty,2023-02-13T00:10:23Z,- ExperimentsInHonesty reopened issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1427173736) at 2023-02-12 04:10 PM PST -ExperimentsInHonesty,2023-02-13T00:12:25Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1427174514) at 2023-02-12 04:12 PM PST -ExperimentsInHonesty,2023-02-13T00:12:26Z,- ExperimentsInHonesty reopened issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1427174514) at 2023-02-12 04:12 PM PST -ExperimentsInHonesty,2023-02-13T00:17:25Z,- ExperimentsInHonesty commented on issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1427176253) at 2023-02-12 04:17 PM PST -ExperimentsInHonesty,2023-02-13T00:17:25Z,- ExperimentsInHonesty reopened issue: [3818](https://github.com/hackforla/website/issues/3818#issuecomment-1427176253) at 2023-02-12 04:17 PM PST -ExperimentsInHonesty,2023-02-13T00:22:34Z,- ExperimentsInHonesty commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1427177919) at 2023-02-12 04:22 PM PST -ExperimentsInHonesty,2023-02-13T00:22:34Z,- ExperimentsInHonesty reopened issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1427177919) at 2023-02-12 04:22 PM PST -ExperimentsInHonesty,2023-02-13T00:39:49Z,- ExperimentsInHonesty commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1427183118) at 2023-02-12 04:39 PM PST -ExperimentsInHonesty,2023-02-13T00:54:46Z,- ExperimentsInHonesty commented on issue: [3957](https://github.com/hackforla/website/issues/3957#issuecomment-1427187208) at 2023-02-12 04:54 PM PST -ExperimentsInHonesty,2023-02-13T01:14:56Z,- ExperimentsInHonesty commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-1427194537) at 2023-02-12 05:14 PM PST -ExperimentsInHonesty,2023-02-13T01:20:52Z,- ExperimentsInHonesty commented on issue: [3862](https://github.com/hackforla/website/issues/3862#issuecomment-1427198720) at 2023-02-12 05:20 PM PST -ExperimentsInHonesty,2023-02-13T03:00:22Z,- ExperimentsInHonesty commented on issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1427262247) at 2023-02-12 07:00 PM PST -ExperimentsInHonesty,2023-02-13T03:00:34Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-1427262391) at 2023-02-12 07:00 PM PST -ExperimentsInHonesty,2023-02-13T03:06:27Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1427265093) at 2023-02-12 07:06 PM PST -ExperimentsInHonesty,2023-02-13T03:15:53Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1427272227) at 2023-02-12 07:15 PM PST -ExperimentsInHonesty,2023-02-13T04:33:50Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1427330169) at 2023-02-12 08:33 PM PST -ExperimentsInHonesty,2023-02-13T04:34:37Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1427330527) at 2023-02-12 08:34 PM PST -ExperimentsInHonesty,2023-02-13T04:35:15Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1427330839) at 2023-02-12 08:35 PM PST -ExperimentsInHonesty,2023-02-13T04:35:31Z,- ExperimentsInHonesty commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1427330989) at 2023-02-12 08:35 PM PST -ExperimentsInHonesty,2023-02-13T04:38:03Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1427332280) at 2023-02-12 08:38 PM PST -ExperimentsInHonesty,2023-02-14T01:32:53Z,- ExperimentsInHonesty commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1428973185) at 2023-02-13 05:32 PM PST -ExperimentsInHonesty,2023-02-14T01:43:35Z,- ExperimentsInHonesty reopened issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-1427194537) at 2023-02-13 05:43 PM PST -ExperimentsInHonesty,2023-02-19T18:34:12Z,- ExperimentsInHonesty commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1436060855) at 2023-02-19 10:34 AM PST -ExperimentsInHonesty,2023-02-20T01:03:16Z,- ExperimentsInHonesty commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1436159914) at 2023-02-19 05:03 PM PST -ExperimentsInHonesty,2023-02-20T01:18:07Z,- ExperimentsInHonesty commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1436167092) at 2023-02-19 05:18 PM PST -ExperimentsInHonesty,2023-02-21T02:16:06Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1437767954) at 2023-02-20 06:16 PM PST -ExperimentsInHonesty,2023-02-21T02:20:26Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1437770470) at 2023-02-20 06:20 PM PST -ExperimentsInHonesty,2023-02-21T02:23:15Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1437772008) at 2023-02-20 06:23 PM PST -ExperimentsInHonesty,2023-02-21T02:24:26Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1437772588) at 2023-02-20 06:24 PM PST -ExperimentsInHonesty,2023-02-21T02:25:50Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1437773318) at 2023-02-20 06:25 PM PST -ExperimentsInHonesty,2023-02-21T02:36:34Z,- ExperimentsInHonesty commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1437778853) at 2023-02-20 06:36 PM PST -ExperimentsInHonesty,2023-02-25T22:13:24Z,- ExperimentsInHonesty commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1445216650) at 2023-02-25 02:13 PM PST -ExperimentsInHonesty,2023-02-25T23:26:10Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1445226283) at 2023-02-25 03:26 PM PST -ExperimentsInHonesty,2023-02-26T02:47:36Z,- ExperimentsInHonesty commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1445254455) at 2023-02-25 06:47 PM PST -ExperimentsInHonesty,2023-02-26T03:06:51Z,- ExperimentsInHonesty commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1445256946) at 2023-02-25 07:06 PM PST -ExperimentsInHonesty,2023-02-26T03:06:54Z,- ExperimentsInHonesty closed issue by PR 3947: [3731](https://github.com/hackforla/website/issues/3731#event-8608842827) at 2023-02-25 07:06 PM PST -ExperimentsInHonesty,2023-02-26T03:14:15Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1445257700) at 2023-02-25 07:14 PM PST -ExperimentsInHonesty,2023-02-26T03:15:03Z,- ExperimentsInHonesty reopened issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1445257700) at 2023-02-25 07:15 PM PST -ExperimentsInHonesty,2023-02-26T03:18:26Z,- ExperimentsInHonesty commented on issue: [3996](https://github.com/hackforla/website/issues/3996#issuecomment-1445258136) at 2023-02-25 07:18 PM PST -ExperimentsInHonesty,2023-02-26T03:27:39Z,- ExperimentsInHonesty commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1445259148) at 2023-02-25 07:27 PM PST -ExperimentsInHonesty,2023-02-26T03:27:39Z,- ExperimentsInHonesty reopened issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1445259148) at 2023-02-25 07:27 PM PST -ExperimentsInHonesty,2023-02-26T03:35:16Z,- ExperimentsInHonesty commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1445259944) at 2023-02-25 07:35 PM PST -ExperimentsInHonesty,2023-02-26T03:45:00Z,- ExperimentsInHonesty commented on issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1445261001) at 2023-02-25 07:45 PM PST -ExperimentsInHonesty,2023-02-26T03:45:11Z,- ExperimentsInHonesty reopened issue: [3831](https://github.com/hackforla/website/issues/3831#issuecomment-1445261001) at 2023-02-25 07:45 PM PST -ExperimentsInHonesty,2023-02-26T03:58:15Z,- ExperimentsInHonesty commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1445262375) at 2023-02-25 07:58 PM PST -ExperimentsInHonesty,2023-02-26T03:58:15Z,- ExperimentsInHonesty reopened issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1445262375) at 2023-02-25 07:58 PM PST -ExperimentsInHonesty,2023-02-26T04:03:08Z,- ExperimentsInHonesty reopened issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1428916188) at 2023-02-25 08:03 PM PST -ExperimentsInHonesty,2023-02-26T04:03:45Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1445263167) at 2023-02-25 08:03 PM PST -ExperimentsInHonesty,2023-02-26T04:06:35Z,- ExperimentsInHonesty reopened issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1445259944) at 2023-02-25 08:06 PM PST -ExperimentsInHonesty,2023-02-26T04:09:18Z,- ExperimentsInHonesty commented on issue: [3790](https://github.com/hackforla/website/issues/3790#issuecomment-1445263955) at 2023-02-25 08:09 PM PST -ExperimentsInHonesty,2023-02-26T04:13:53Z,- ExperimentsInHonesty commented on issue: [3781](https://github.com/hackforla/website/issues/3781#issuecomment-1445264497) at 2023-02-25 08:13 PM PST -ExperimentsInHonesty,2023-02-26T04:14:40Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1445264583) at 2023-02-25 08:14 PM PST -ExperimentsInHonesty,2023-02-26T04:17:42Z,- ExperimentsInHonesty commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1445264963) at 2023-02-25 08:17 PM PST -ExperimentsInHonesty,2023-02-26T04:19:16Z,- ExperimentsInHonesty closed issue as completed: [3825](https://github.com/hackforla/website/issues/3825#event-8608899072) at 2023-02-25 08:19 PM PST -ExperimentsInHonesty,2023-02-26T04:21:06Z,- ExperimentsInHonesty commented on issue: [4028](https://github.com/hackforla/website/issues/4028#issuecomment-1445265371) at 2023-02-25 08:21 PM PST -ExperimentsInHonesty,2023-02-26T04:42:59Z,- ExperimentsInHonesty commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1445267582) at 2023-02-25 08:42 PM PST -ExperimentsInHonesty,2023-02-26T04:59:03Z,- ExperimentsInHonesty commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1445269310) at 2023-02-25 08:59 PM PST -ExperimentsInHonesty,2023-02-26T05:13:30Z,- ExperimentsInHonesty commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1445270972) at 2023-02-25 09:13 PM PST -ExperimentsInHonesty,2023-02-26T05:21:50Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1445271867) at 2023-02-25 09:21 PM PST -ExperimentsInHonesty,2023-02-26T05:33:55Z,- ExperimentsInHonesty commented on issue: [3603](https://github.com/hackforla/website/issues/3603#issuecomment-1445273094) at 2023-02-25 09:33 PM PST -ExperimentsInHonesty,2023-02-26T05:37:35Z,- ExperimentsInHonesty commented on issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1445273430) at 2023-02-25 09:37 PM PST -ExperimentsInHonesty,2023-02-26T05:40:59Z,- ExperimentsInHonesty commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1445273765) at 2023-02-25 09:40 PM PST -ExperimentsInHonesty,2023-02-26T05:46:18Z,- ExperimentsInHonesty commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1445274278) at 2023-02-25 09:46 PM PST -ExperimentsInHonesty,2023-02-26T05:50:00Z,- ExperimentsInHonesty commented on issue: [3542](https://github.com/hackforla/website/issues/3542#issuecomment-1445274669) at 2023-02-25 09:50 PM PST -ExperimentsInHonesty,2023-02-26T05:50:00Z,- ExperimentsInHonesty closed issue as completed: [3542](https://github.com/hackforla/website/issues/3542#event-8608966248) at 2023-02-25 09:50 PM PST -ExperimentsInHonesty,2023-02-26T05:52:10Z,- ExperimentsInHonesty commented on issue: [3544](https://github.com/hackforla/website/issues/3544#issuecomment-1445274901) at 2023-02-25 09:52 PM PST -ExperimentsInHonesty,2023-02-26T05:52:10Z,- ExperimentsInHonesty closed issue as completed: [3544](https://github.com/hackforla/website/issues/3544#event-8608967771) at 2023-02-25 09:52 PM PST -ExperimentsInHonesty,2023-02-26T05:56:55Z,- ExperimentsInHonesty commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1445275448) at 2023-02-25 09:56 PM PST -ExperimentsInHonesty,2023-02-26T05:56:55Z,- ExperimentsInHonesty closed issue as completed: [3690](https://github.com/hackforla/website/issues/3690#event-8608970983) at 2023-02-25 09:56 PM PST -ExperimentsInHonesty,2023-02-26T06:02:55Z,- ExperimentsInHonesty commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1445276250) at 2023-02-25 10:02 PM PST -ExperimentsInHonesty,2023-02-26T06:04:10Z,- ExperimentsInHonesty closed issue as completed: [3688](https://github.com/hackforla/website/issues/3688#event-8608977102) at 2023-02-25 10:04 PM PST -ExperimentsInHonesty,2023-02-26T06:14:58Z,- ExperimentsInHonesty commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1445277800) at 2023-02-25 10:14 PM PST -ExperimentsInHonesty,2023-02-26T06:18:40Z,- ExperimentsInHonesty commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1445278244) at 2023-02-25 10:18 PM PST -ExperimentsInHonesty,2023-02-26T06:23:10Z,- ExperimentsInHonesty commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1445278752) at 2023-02-25 10:23 PM PST -ExperimentsInHonesty,2023-02-26T06:27:26Z,- ExperimentsInHonesty commented on issue: [3791](https://github.com/hackforla/website/issues/3791#issuecomment-1445279208) at 2023-02-25 10:27 PM PST -ExperimentsInHonesty,2023-02-26T06:32:35Z,- ExperimentsInHonesty commented on issue: [3784](https://github.com/hackforla/website/issues/3784#issuecomment-1445279784) at 2023-02-25 10:32 PM PST -ExperimentsInHonesty,2023-02-26T06:32:35Z,- ExperimentsInHonesty closed issue as completed: [3784](https://github.com/hackforla/website/issues/3784#event-8609001402) at 2023-02-25 10:32 PM PST -ExperimentsInHonesty,2023-02-26T06:36:59Z,- ExperimentsInHonesty commented on issue: [3786](https://github.com/hackforla/website/issues/3786#issuecomment-1445280260) at 2023-02-25 10:36 PM PST -ExperimentsInHonesty,2023-02-26T06:41:03Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1445280741) at 2023-02-25 10:41 PM PST -ExperimentsInHonesty,2023-02-26T06:48:04Z,- ExperimentsInHonesty commented on issue: [3606](https://github.com/hackforla/website/issues/3606#issuecomment-1445281545) at 2023-02-25 10:48 PM PST -ExperimentsInHonesty,2023-02-26T06:50:24Z,- ExperimentsInHonesty closed issue by PR 3907: [3818](https://github.com/hackforla/website/issues/3818#event-8609017504) at 2023-02-25 10:50 PM PST -ExperimentsInHonesty,2023-02-26T06:54:33Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1445282375) at 2023-02-25 10:54 PM PST -ExperimentsInHonesty,2023-02-26T06:59:09Z,- ExperimentsInHonesty commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1445283071) at 2023-02-25 10:59 PM PST -ExperimentsInHonesty,2023-02-26T06:59:10Z,- ExperimentsInHonesty closed issue as completed: [3553](https://github.com/hackforla/website/issues/3553#event-8609025922) at 2023-02-25 10:59 PM PST -ExperimentsInHonesty,2023-02-26T07:00:50Z,- ExperimentsInHonesty commented on issue: [3607](https://github.com/hackforla/website/issues/3607#issuecomment-1445283362) at 2023-02-25 11:00 PM PST -ExperimentsInHonesty,2023-02-26T07:05:02Z,- ExperimentsInHonesty commented on issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1445283959) at 2023-02-25 11:05 PM PST -ExperimentsInHonesty,2023-02-26T07:09:43Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1445284641) at 2023-02-25 11:09 PM PST -ExperimentsInHonesty,2023-02-26T07:13:06Z,- ExperimentsInHonesty commented on issue: [3783](https://github.com/hackforla/website/issues/3783#issuecomment-1445285121) at 2023-02-25 11:13 PM PST -ExperimentsInHonesty,2023-02-26T07:14:48Z,- ExperimentsInHonesty commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1445285327) at 2023-02-25 11:14 PM PST -ExperimentsInHonesty,2023-02-26T07:15:41Z,- ExperimentsInHonesty closed issue as completed: [3409](https://github.com/hackforla/website/issues/3409#event-8609041919) at 2023-02-25 11:15 PM PST -ExperimentsInHonesty,2023-02-26T07:21:02Z,- ExperimentsInHonesty commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1445286129) at 2023-02-25 11:21 PM PST -ExperimentsInHonesty,2023-02-26T07:21:08Z,- ExperimentsInHonesty closed issue as completed: [3683](https://github.com/hackforla/website/issues/3683#event-8609047083) at 2023-02-25 11:21 PM PST -ExperimentsInHonesty,2023-02-26T07:30:50Z,- ExperimentsInHonesty commented on issue: [3828](https://github.com/hackforla/website/issues/3828#issuecomment-1445287341) at 2023-02-25 11:30 PM PST -ExperimentsInHonesty,2023-02-26T07:30:53Z,- ExperimentsInHonesty closed issue as completed: [3828](https://github.com/hackforla/website/issues/3828#event-8609055952) at 2023-02-25 11:30 PM PST -ExperimentsInHonesty,2023-02-26T07:35:10Z,- ExperimentsInHonesty commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1445287983) at 2023-02-25 11:35 PM PST -ExperimentsInHonesty,2023-02-26T07:35:59Z,- ExperimentsInHonesty commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1445288091) at 2023-02-25 11:35 PM PST -ExperimentsInHonesty,2023-02-26T07:39:58Z,- ExperimentsInHonesty commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1445288677) at 2023-02-25 11:39 PM PST -ExperimentsInHonesty,2023-02-26T07:41:06Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1445288874) at 2023-02-25 11:41 PM PST -ExperimentsInHonesty,2023-02-26T07:43:43Z,- ExperimentsInHonesty commented on issue: [3910](https://github.com/hackforla/website/issues/3910#issuecomment-1445289244) at 2023-02-25 11:43 PM PST -ExperimentsInHonesty,2023-02-26T07:48:37Z,- ExperimentsInHonesty commented on issue: [3915](https://github.com/hackforla/website/issues/3915#issuecomment-1445289997) at 2023-02-25 11:48 PM PST -ExperimentsInHonesty,2023-02-26T07:49:35Z,- ExperimentsInHonesty commented on issue: [3919](https://github.com/hackforla/website/issues/3919#issuecomment-1445290145) at 2023-02-25 11:49 PM PST -ExperimentsInHonesty,2023-02-26T07:50:28Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1445290287) at 2023-02-25 11:50 PM PST -ExperimentsInHonesty,2023-02-26T07:51:48Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1445290478) at 2023-02-25 11:51 PM PST -ExperimentsInHonesty,2023-02-26T07:54:46Z,- ExperimentsInHonesty commented on issue: [3684](https://github.com/hackforla/website/issues/3684#issuecomment-1445290898) at 2023-02-25 11:54 PM PST -ExperimentsInHonesty,2023-02-26T07:56:43Z,- ExperimentsInHonesty commented on issue: [3971](https://github.com/hackforla/website/issues/3971#issuecomment-1445291147) at 2023-02-25 11:56 PM PST -ExperimentsInHonesty,2023-02-26T07:59:31Z,- ExperimentsInHonesty commented on issue: [3970](https://github.com/hackforla/website/issues/3970#issuecomment-1445291671) at 2023-02-25 11:59 PM PST -ExperimentsInHonesty,2023-02-26T08:00:15Z,- ExperimentsInHonesty commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1445291911) at 2023-02-26 12:00 AM PST -ExperimentsInHonesty,2023-02-26T08:10:15Z,- ExperimentsInHonesty commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1445294271) at 2023-02-26 12:10 AM PST -ExperimentsInHonesty,2023-02-26T08:17:33Z,- ExperimentsInHonesty commented on issue: [3777](https://github.com/hackforla/website/issues/3777#issuecomment-1445295432) at 2023-02-26 12:17 AM PST -ExperimentsInHonesty,2023-02-26T08:28:31Z,- ExperimentsInHonesty commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1445297065) at 2023-02-26 12:28 AM PST -ExperimentsInHonesty,2023-02-26T08:39:11Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1445299193) at 2023-02-26 12:39 AM PST -ExperimentsInHonesty,2023-02-26T08:55:08Z,- ExperimentsInHonesty commented on issue: [3976](https://github.com/hackforla/website/issues/3976#issuecomment-1445301818) at 2023-02-26 12:55 AM PST -ExperimentsInHonesty,2023-02-26T09:06:58Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1445304170) at 2023-02-26 01:06 AM PST -ExperimentsInHonesty,2023-02-26T18:54:43Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1445435515) at 2023-02-26 10:54 AM PST -ExperimentsInHonesty,2023-02-26T22:57:23Z,- ExperimentsInHonesty commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1445490986) at 2023-02-26 02:57 PM PST -ExperimentsInHonesty,2023-02-28T01:51:22Z,- ExperimentsInHonesty commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1447443213) at 2023-02-27 05:51 PM PST -ExperimentsInHonesty,2023-02-28T02:04:32Z,- ExperimentsInHonesty commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1447455328) at 2023-02-27 06:04 PM PST -ExperimentsInHonesty,2023-02-28T02:34:33Z,- ExperimentsInHonesty reopened issue: [3611](https://github.com/hackforla/website/issues/3611#event-7698517039) at 2023-02-27 06:34 PM PST -ExperimentsInHonesty,2023-02-28T02:35:17Z,- ExperimentsInHonesty closed issue as completed: [3611](https://github.com/hackforla/website/issues/3611#event-8622182252) at 2023-02-27 06:35 PM PST -ExperimentsInHonesty,2023-03-05T17:34:45Z,- ExperimentsInHonesty commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1455153986) at 2023-03-05 09:34 AM PST -ExperimentsInHonesty,2023-03-05T18:25:52Z,- ExperimentsInHonesty commented on issue: [2651](https://github.com/hackforla/website/issues/2651#issuecomment-1455166215) at 2023-03-05 10:25 AM PST -ExperimentsInHonesty,2023-03-05T18:41:40Z,- ExperimentsInHonesty reopened issue: [2112](https://github.com/hackforla/website/issues/2112#event-8003276962) at 2023-03-05 10:41 AM PST -ExperimentsInHonesty,2023-03-05T18:42:04Z,- ExperimentsInHonesty closed issue by PR 3329: [2112](https://github.com/hackforla/website/issues/2112#event-8668466266) at 2023-03-05 10:42 AM PST -ExperimentsInHonesty,2023-03-05T19:07:06Z,- ExperimentsInHonesty commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1455175736) at 2023-03-05 11:07 AM PST -ExperimentsInHonesty,2023-03-05T19:21:34Z,- ExperimentsInHonesty commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-1455179697) at 2023-03-05 11:21 AM PST -ExperimentsInHonesty,2023-03-05T20:09:34Z,- ExperimentsInHonesty commented on issue: [2204](https://github.com/hackforla/website/issues/2204#issuecomment-1455191634) at 2023-03-05 12:09 PM PST -ExperimentsInHonesty,2023-03-05T20:29:30Z,- ExperimentsInHonesty commented on issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1455196756) at 2023-03-05 12:29 PM PST -ExperimentsInHonesty,2023-03-05T20:56:28Z,- ExperimentsInHonesty commented on issue: [4081](https://github.com/hackforla/website/issues/4081#issuecomment-1455203225) at 2023-03-05 12:56 PM PST -ExperimentsInHonesty,2023-03-05T21:09:51Z,- ExperimentsInHonesty commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1455207236) at 2023-03-05 01:09 PM PST -ExperimentsInHonesty,2023-03-05T21:18:24Z,- ExperimentsInHonesty commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1455209200) at 2023-03-05 01:18 PM PST -ExperimentsInHonesty,2023-03-05T21:27:37Z,- ExperimentsInHonesty commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1455211583) at 2023-03-05 01:27 PM PST -ExperimentsInHonesty,2023-03-05T21:29:09Z,- ExperimentsInHonesty commented on issue: [4112](https://github.com/hackforla/website/issues/4112#issuecomment-1455212005) at 2023-03-05 01:29 PM PST -ExperimentsInHonesty,2023-03-05T21:30:19Z,- ExperimentsInHonesty commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1455212308) at 2023-03-05 01:30 PM PST -ExperimentsInHonesty,2023-03-06T01:31:17Z,- ExperimentsInHonesty commented on issue: [4010](https://github.com/hackforla/website/issues/4010#issuecomment-1455294793) at 2023-03-05 05:31 PM PST -ExperimentsInHonesty,2023-03-06T01:32:24Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-1455295619) at 2023-03-05 05:32 PM PST -ExperimentsInHonesty,2023-03-07T03:14:41Z,- ExperimentsInHonesty commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1457447102) at 2023-03-06 07:14 PM PST -ExperimentsInHonesty,2023-03-07T03:15:15Z,- ExperimentsInHonesty commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1457447525) at 2023-03-06 07:15 PM PST -ExperimentsInHonesty,2023-03-07T23:54:10Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1459048549) at 2023-03-07 03:54 PM PST -ExperimentsInHonesty,2023-03-07T23:54:15Z,- ExperimentsInHonesty closed issue by PR 3928: [3572](https://github.com/hackforla/website/issues/3572#event-8691600687) at 2023-03-07 03:54 PM PST -ExperimentsInHonesty,2023-03-09T23:25:29Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1462970335) at 2023-03-09 03:25 PM PST -ExperimentsInHonesty,2023-03-09T23:46:26Z,- ExperimentsInHonesty commented on issue: [4087](https://github.com/hackforla/website/issues/4087#issuecomment-1463002265) at 2023-03-09 03:46 PM PST -ExperimentsInHonesty,2023-03-09T23:50:11Z,- ExperimentsInHonesty commented on issue: [3974](https://github.com/hackforla/website/issues/3974#issuecomment-1463004543) at 2023-03-09 03:50 PM PST -ExperimentsInHonesty,2023-03-10T16:24:27Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1464052635) at 2023-03-10 08:24 AM PST -ExperimentsInHonesty,2023-03-10T18:36:12Z,- ExperimentsInHonesty commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1464227244) at 2023-03-10 10:36 AM PST -ExperimentsInHonesty,2023-03-10T18:44:14Z,- ExperimentsInHonesty commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1464236591) at 2023-03-10 10:44 AM PST -ExperimentsInHonesty,2023-03-10T19:29:10Z,- ExperimentsInHonesty commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1464305506) at 2023-03-10 11:29 AM PST -ExperimentsInHonesty,2023-03-12T19:56:31Z,- ExperimentsInHonesty assigned to issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465105865) at 2023-03-12 12:56 PM PDT -ExperimentsInHonesty,2023-03-12T19:56:47Z,- ExperimentsInHonesty unassigned from issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1465285478) at 2023-03-12 12:56 PM PDT -ExperimentsInHonesty,2023-03-13T01:19:17Z,- ExperimentsInHonesty commented on issue: [4155](https://github.com/hackforla/website/issues/4155#issuecomment-1465366349) at 2023-03-12 06:19 PM PDT -ExperimentsInHonesty,2023-03-14T01:54:42Z,- ExperimentsInHonesty commented on issue: [4155](https://github.com/hackforla/website/issues/4155#issuecomment-1467224540) at 2023-03-13 06:54 PM PDT -ExperimentsInHonesty,2023-03-15T19:38:20Z,- ExperimentsInHonesty commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1470725416) at 2023-03-15 12:38 PM PDT -ExperimentsInHonesty,2023-03-15T19:59:30Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1470756030) at 2023-03-15 12:59 PM PDT -ExperimentsInHonesty,2023-03-15T20:13:08Z,- ExperimentsInHonesty commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1470776361) at 2023-03-15 01:13 PM PDT -ExperimentsInHonesty,2023-03-15T20:23:22Z,- ExperimentsInHonesty commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1470788835) at 2023-03-15 01:23 PM PDT -ExperimentsInHonesty,2023-03-15T20:27:55Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1470794519) at 2023-03-15 01:27 PM PDT -ExperimentsInHonesty,2023-03-15T21:01:07Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1470836116) at 2023-03-15 02:01 PM PDT -ExperimentsInHonesty,2023-03-16T00:44:54Z,- ExperimentsInHonesty commented on issue: [4187](https://github.com/hackforla/website/issues/4187#issuecomment-1471092961) at 2023-03-15 05:44 PM PDT -ExperimentsInHonesty,2023-03-16T00:49:44Z,- ExperimentsInHonesty commented on issue: [4186](https://github.com/hackforla/website/issues/4186#issuecomment-1471103761) at 2023-03-15 05:49 PM PDT -ExperimentsInHonesty,2023-03-16T00:53:56Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1471107307) at 2023-03-15 05:53 PM PDT -ExperimentsInHonesty,2023-03-16T00:59:48Z,- ExperimentsInHonesty commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1471112841) at 2023-03-15 05:59 PM PDT -ExperimentsInHonesty,2023-03-16T15:33:14Z,- ExperimentsInHonesty commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1472207957) at 2023-03-16 08:33 AM PDT -ExperimentsInHonesty,2023-03-16T15:47:24Z,- ExperimentsInHonesty commented on issue: [4054](https://github.com/hackforla/website/issues/4054#issuecomment-1472231817) at 2023-03-16 08:47 AM PDT -ExperimentsInHonesty,2023-03-16T15:50:45Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1472237696) at 2023-03-16 08:50 AM PDT -ExperimentsInHonesty,2023-03-16T16:01:30Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1472256165) at 2023-03-16 09:01 AM PDT -ExperimentsInHonesty,2023-03-16T16:07:28Z,- ExperimentsInHonesty commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1472265863) at 2023-03-16 09:07 AM PDT -ExperimentsInHonesty,2023-03-16T16:08:15Z,- ExperimentsInHonesty commented on issue: [4168](https://github.com/hackforla/website/issues/4168#issuecomment-1472267169) at 2023-03-16 09:08 AM PDT -ExperimentsInHonesty,2023-03-16T16:09:15Z,- ExperimentsInHonesty closed issue as completed: [4167](https://github.com/hackforla/website/issues/4167#event-8769293088) at 2023-03-16 09:09 AM PDT -ExperimentsInHonesty,2023-03-16T16:38:00Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-1472319888) at 2023-03-16 09:38 AM PDT -ExperimentsInHonesty,2023-03-16T17:41:01Z,- ExperimentsInHonesty commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1472430437) at 2023-03-16 10:41 AM PDT -ExperimentsInHonesty,2023-03-16T17:45:22Z,- ExperimentsInHonesty commented on issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1472436357) at 2023-03-16 10:45 AM PDT -ExperimentsInHonesty,2023-03-16T17:51:20Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1472444325) at 2023-03-16 10:51 AM PDT -ExperimentsInHonesty,2023-03-16T17:53:37Z,- ExperimentsInHonesty closed issue as not planned: [3433](https://github.com/hackforla/website/issues/3433#event-8770441516) at 2023-03-16 10:53 AM PDT -ExperimentsInHonesty,2023-03-16T17:54:00Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1472449795) at 2023-03-16 10:54 AM PDT -ExperimentsInHonesty,2023-03-16T18:39:07Z,- ExperimentsInHonesty commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1472550773) at 2023-03-16 11:39 AM PDT -ExperimentsInHonesty,2023-03-16T19:17:17Z,- ExperimentsInHonesty closed issue as completed: [2978](https://github.com/hackforla/website/issues/2978#event-8771230921) at 2023-03-16 12:17 PM PDT -ExperimentsInHonesty,2023-03-16T21:56:15Z,- ExperimentsInHonesty commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1472800616) at 2023-03-16 02:56 PM PDT -ExperimentsInHonesty,2023-03-16T21:56:15Z,- ExperimentsInHonesty reopened issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1472800616) at 2023-03-16 02:56 PM PDT -ExperimentsInHonesty,2023-03-16T22:59:27Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1472871208) at 2023-03-16 03:59 PM PDT -ExperimentsInHonesty,2023-03-16T23:03:00Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1472874369) at 2023-03-16 04:03 PM PDT -ExperimentsInHonesty,2023-03-18T15:04:16Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1474873508) at 2023-03-18 08:04 AM PDT -ExperimentsInHonesty,2023-03-18T15:06:46Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1474874103) at 2023-03-18 08:06 AM PDT -ExperimentsInHonesty,2023-03-18T15:24:06Z,- ExperimentsInHonesty commented on issue: [4145](https://github.com/hackforla/website/issues/4145#issuecomment-1474877812) at 2023-03-18 08:24 AM PDT -ExperimentsInHonesty,2023-03-18T15:44:35Z,- ExperimentsInHonesty commented on issue: [4113](https://github.com/hackforla/website/issues/4113#issuecomment-1474882059) at 2023-03-18 08:44 AM PDT -ExperimentsInHonesty,2023-03-18T23:53:53Z,- ExperimentsInHonesty commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1475036305) at 2023-03-18 04:53 PM PDT -ExperimentsInHonesty,2023-03-18T23:58:15Z,- ExperimentsInHonesty commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1475037586) at 2023-03-18 04:58 PM PDT -ExperimentsInHonesty,2023-03-19T00:08:44Z,- ExperimentsInHonesty commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1475040270) at 2023-03-18 05:08 PM PDT -ExperimentsInHonesty,2023-03-19T00:31:32Z,- ExperimentsInHonesty commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1475047783) at 2023-03-18 05:31 PM PDT -ExperimentsInHonesty,2023-03-19T00:38:13Z,- ExperimentsInHonesty commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1475049450) at 2023-03-18 05:38 PM PDT -ExperimentsInHonesty,2023-03-19T00:54:20Z,- ExperimentsInHonesty commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1475053272) at 2023-03-18 05:54 PM PDT -ExperimentsInHonesty,2023-03-19T15:08:45Z,- ExperimentsInHonesty commented on issue: [4047](https://github.com/hackforla/website/issues/4047#issuecomment-1475287643) at 2023-03-19 08:08 AM PDT -ExperimentsInHonesty,2023-03-19T15:20:56Z,- ExperimentsInHonesty commented on issue: [3757](https://github.com/hackforla/website/issues/3757#issuecomment-1475292110) at 2023-03-19 08:20 AM PDT -ExperimentsInHonesty,2023-03-19T15:42:46Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1475297767) at 2023-03-19 08:42 AM PDT -ExperimentsInHonesty,2023-03-19T16:11:53Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1475307515) at 2023-03-19 09:11 AM PDT -ExperimentsInHonesty,2023-03-19T16:27:59Z,- ExperimentsInHonesty reopened issue: [3917](https://github.com/hackforla/website/issues/3917#event-8786355309) at 2023-03-19 09:27 AM PDT -ExperimentsInHonesty,2023-03-19T16:29:14Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1475312116) at 2023-03-19 09:29 AM PDT -ExperimentsInHonesty,2023-03-19T17:02:50Z,- ExperimentsInHonesty reopened issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1475053272) at 2023-03-19 10:02 AM PDT -ExperimentsInHonesty,2023-03-19T17:08:13Z,- ExperimentsInHonesty commented on issue: [3722](https://github.com/hackforla/website/issues/3722#issuecomment-1475324190) at 2023-03-19 10:08 AM PDT -ExperimentsInHonesty,2023-03-19T17:08:13Z,- ExperimentsInHonesty closed issue as completed: [3722](https://github.com/hackforla/website/issues/3722#event-8788268695) at 2023-03-19 10:08 AM PDT -ExperimentsInHonesty,2023-03-20T17:42:43Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1476672283) at 2023-03-20 10:42 AM PDT -ExperimentsInHonesty,2023-03-21T15:43:52Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1478073222) at 2023-03-21 08:43 AM PDT -ExperimentsInHonesty,2023-03-21T15:46:10Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1478076874) at 2023-03-21 08:46 AM PDT -ExperimentsInHonesty,2023-03-21T15:46:10Z,- ExperimentsInHonesty reopened issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1478076874) at 2023-03-21 08:46 AM PDT -ExperimentsInHonesty,2023-03-21T15:59:28Z,- ExperimentsInHonesty commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1478104997) at 2023-03-21 08:59 AM PDT -ExperimentsInHonesty,2023-03-21T17:29:39Z,- ExperimentsInHonesty commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1478313235) at 2023-03-21 10:29 AM PDT -ExperimentsInHonesty,2023-03-21T17:29:40Z,- ExperimentsInHonesty reopened issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1478313235) at 2023-03-21 10:29 AM PDT -ExperimentsInHonesty,2023-03-21T17:48:11Z,- ExperimentsInHonesty commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1478338899) at 2023-03-21 10:48 AM PDT -ExperimentsInHonesty,2023-03-21T17:53:29Z,- ExperimentsInHonesty commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1478345659) at 2023-03-21 10:53 AM PDT -ExperimentsInHonesty,2023-03-21T17:55:10Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1478347776) at 2023-03-21 10:55 AM PDT -ExperimentsInHonesty,2023-03-21T17:55:11Z,- ExperimentsInHonesty reopened issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1478347776) at 2023-03-21 10:55 AM PDT -ExperimentsInHonesty,2023-03-21T18:09:05Z,- ExperimentsInHonesty commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1478369304) at 2023-03-21 11:09 AM PDT -ExperimentsInHonesty,2023-03-21T18:09:12Z,- ExperimentsInHonesty reopened issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1478369304) at 2023-03-21 11:09 AM PDT -ExperimentsInHonesty,2023-03-21T18:20:46Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1478384702) at 2023-03-21 11:20 AM PDT -ExperimentsInHonesty,2023-03-21T18:23:22Z,- ExperimentsInHonesty commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1478387979) at 2023-03-21 11:23 AM PDT -ExperimentsInHonesty,2023-03-21T18:58:11Z,- ExperimentsInHonesty commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1478431024) at 2023-03-21 11:58 AM PDT -ExperimentsInHonesty,2023-03-21T19:30:34Z,- ExperimentsInHonesty commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1478468551) at 2023-03-21 12:30 PM PDT -ExperimentsInHonesty,2023-03-21T20:23:23Z,- ExperimentsInHonesty commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1478533148) at 2023-03-21 01:23 PM PDT -ExperimentsInHonesty,2023-03-21T21:28:52Z,- ExperimentsInHonesty commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1478607253) at 2023-03-21 02:28 PM PDT -ExperimentsInHonesty,2023-03-21T22:04:00Z,- ExperimentsInHonesty commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1478649095) at 2023-03-21 03:04 PM PDT -ExperimentsInHonesty,2023-03-21T22:16:51Z,- ExperimentsInHonesty commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1478663986) at 2023-03-21 03:16 PM PDT -ExperimentsInHonesty,2023-03-21T22:37:21Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1478685437) at 2023-03-21 03:37 PM PDT -ExperimentsInHonesty,2023-03-21T22:53:26Z,- ExperimentsInHonesty commented on issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1478698753) at 2023-03-21 03:53 PM PDT -ExperimentsInHonesty,2023-03-21T22:59:21Z,- ExperimentsInHonesty commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1478703394) at 2023-03-21 03:59 PM PDT -ExperimentsInHonesty,2023-03-21T23:07:00Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1478709708) at 2023-03-21 04:07 PM PDT -ExperimentsInHonesty,2023-03-21T23:07:06Z,- ExperimentsInHonesty reopened issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1478709708) at 2023-03-21 04:07 PM PDT -ExperimentsInHonesty,2023-03-21T23:07:32Z,- ExperimentsInHonesty commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1478710094) at 2023-03-21 04:07 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:10Z,- ExperimentsInHonesty commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1478710538) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:10Z,- ExperimentsInHonesty reopened issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1478710538) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:57Z,- ExperimentsInHonesty commented on issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1478711132) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:08:57Z,- ExperimentsInHonesty reopened issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1478711132) at 2023-03-21 04:08 PM PDT -ExperimentsInHonesty,2023-03-21T23:09:06Z,- ExperimentsInHonesty reopened issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1478710094) at 2023-03-21 04:09 PM PDT -ExperimentsInHonesty,2023-03-21T23:12:04Z,- ExperimentsInHonesty commented on issue: [4183](https://github.com/hackforla/website/issues/4183#issuecomment-1478713220) at 2023-03-21 04:12 PM PDT -ExperimentsInHonesty,2023-03-21T23:17:50Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1478717068) at 2023-03-21 04:17 PM PDT -ExperimentsInHonesty,2023-03-21T23:30:13Z,- ExperimentsInHonesty commented on issue: [4168](https://github.com/hackforla/website/issues/4168#issuecomment-1478724756) at 2023-03-21 04:30 PM PDT -ExperimentsInHonesty,2023-03-21T23:30:14Z,- ExperimentsInHonesty closed issue as completed: [4168](https://github.com/hackforla/website/issues/4168#event-8811076578) at 2023-03-21 04:30 PM PDT -ExperimentsInHonesty,2023-03-22T15:43:40Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1479808595) at 2023-03-22 08:43 AM PDT -ExperimentsInHonesty,2023-03-22T15:44:36Z,- ExperimentsInHonesty commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1479810137) at 2023-03-22 08:44 AM PDT -ExperimentsInHonesty,2023-03-22T16:02:33Z,- ExperimentsInHonesty opened issue: [4240](https://github.com/hackforla/website/issues/4240) at 2023-03-22 09:02 AM PDT -ExperimentsInHonesty,2023-03-22T16:15:54Z,- ExperimentsInHonesty opened issue: [4241](https://github.com/hackforla/website/issues/4241) at 2023-03-22 09:15 AM PDT -ExperimentsInHonesty,2023-03-22T16:16:45Z,- ExperimentsInHonesty commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1479870606) at 2023-03-22 09:16 AM PDT -ExperimentsInHonesty,2023-03-22T16:26:49Z,- ExperimentsInHonesty opened issue: [4242](https://github.com/hackforla/website/issues/4242) at 2023-03-22 09:26 AM PDT -ExperimentsInHonesty,2023-03-22T16:28:49Z,- ExperimentsInHonesty commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1479892705) at 2023-03-22 09:28 AM PDT -ExperimentsInHonesty,2023-03-22T16:41:42Z,- ExperimentsInHonesty commented on issue: [4025](https://github.com/hackforla/website/issues/4025#issuecomment-1479911127) at 2023-03-22 09:41 AM PDT -ExperimentsInHonesty,2023-03-22T17:20:17Z,- ExperimentsInHonesty commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1479970237) at 2023-03-22 10:20 AM PDT -ExperimentsInHonesty,2023-03-22T17:31:41Z,- ExperimentsInHonesty commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1479986896) at 2023-03-22 10:31 AM PDT -ExperimentsInHonesty,2023-03-22T17:47:02Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1480007331) at 2023-03-22 10:47 AM PDT -ExperimentsInHonesty,2023-03-22T17:57:08Z,- ExperimentsInHonesty commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1480020394) at 2023-03-22 10:57 AM PDT -ExperimentsInHonesty,2023-03-22T17:59:42Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1480023909) at 2023-03-22 10:59 AM PDT -ExperimentsInHonesty,2023-03-22T18:16:38Z,- ExperimentsInHonesty opened issue: [4243](https://github.com/hackforla/website/issues/4243) at 2023-03-22 11:16 AM PDT -ExperimentsInHonesty,2023-03-22T18:18:17Z,- ExperimentsInHonesty opened issue: [4244](https://github.com/hackforla/website/issues/4244) at 2023-03-22 11:18 AM PDT -ExperimentsInHonesty,2023-03-22T18:58:21Z,- ExperimentsInHonesty commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-1480104428) at 2023-03-22 11:58 AM PDT -ExperimentsInHonesty,2023-03-22T19:04:30Z,- ExperimentsInHonesty commented on issue: [4244](https://github.com/hackforla/website/issues/4244#issuecomment-1480112022) at 2023-03-22 12:04 PM PDT -ExperimentsInHonesty,2023-03-22T19:40:14Z,- ExperimentsInHonesty opened issue: [4246](https://github.com/hackforla/website/issues/4246) at 2023-03-22 12:40 PM PDT -ExperimentsInHonesty,2023-03-22T20:11:54Z,- ExperimentsInHonesty commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1480200755) at 2023-03-22 01:11 PM PDT -ExperimentsInHonesty,2023-03-22T20:48:11Z,- ExperimentsInHonesty opened issue: [4247](https://github.com/hackforla/website/issues/4247) at 2023-03-22 01:48 PM PDT -ExperimentsInHonesty,2023-03-23T00:45:49Z,- ExperimentsInHonesty opened issue: [4252](https://github.com/hackforla/website/issues/4252) at 2023-03-22 05:45 PM PDT -ExperimentsInHonesty,2023-03-23T01:01:23Z,- ExperimentsInHonesty commented on issue: [4236](https://github.com/hackforla/website/issues/4236#issuecomment-1480440129) at 2023-03-22 06:01 PM PDT -ExperimentsInHonesty,2023-03-23T01:01:41Z,- ExperimentsInHonesty commented on issue: [4235](https://github.com/hackforla/website/issues/4235#issuecomment-1480440319) at 2023-03-22 06:01 PM PDT -ExperimentsInHonesty,2023-03-23T01:06:46Z,- ExperimentsInHonesty commented on issue: [3860](https://github.com/hackforla/website/issues/3860#issuecomment-1480443747) at 2023-03-22 06:06 PM PDT -ExperimentsInHonesty,2023-03-23T04:53:36Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1480599904) at 2023-03-22 09:53 PM PDT -ExperimentsInHonesty,2023-03-23T04:59:41Z,- ExperimentsInHonesty commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1480603641) at 2023-03-22 09:59 PM PDT -ExperimentsInHonesty,2023-03-23T05:02:24Z,- ExperimentsInHonesty commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1480605637) at 2023-03-22 10:02 PM PDT -ExperimentsInHonesty,2023-03-23T05:17:43Z,- ExperimentsInHonesty commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1480616137) at 2023-03-22 10:17 PM PDT -ExperimentsInHonesty,2023-03-23T05:26:07Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1480622140) at 2023-03-22 10:26 PM PDT -ExperimentsInHonesty,2023-03-23T15:52:48Z,- ExperimentsInHonesty commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1481442498) at 2023-03-23 08:52 AM PDT -ExperimentsInHonesty,2023-03-23T15:53:38Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1481444365) at 2023-03-23 08:53 AM PDT -ExperimentsInHonesty,2023-03-23T16:44:51Z,- ExperimentsInHonesty opened issue: [4261](https://github.com/hackforla/website/issues/4261) at 2023-03-23 09:44 AM PDT -ExperimentsInHonesty,2023-03-23T16:56:07Z,- ExperimentsInHonesty opened issue: [4262](https://github.com/hackforla/website/issues/4262) at 2023-03-23 09:56 AM PDT -ExperimentsInHonesty,2023-03-23T17:28:05Z,- ExperimentsInHonesty commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1481597627) at 2023-03-23 10:28 AM PDT -ExperimentsInHonesty,2023-03-24T01:02:29Z,- ExperimentsInHonesty commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1482107731) at 2023-03-23 06:02 PM PDT -ExperimentsInHonesty,2023-03-24T03:35:20Z,- ExperimentsInHonesty commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482202468) at 2023-03-23 08:35 PM PDT -ExperimentsInHonesty,2023-03-24T03:45:15Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482207533) at 2023-03-23 08:45 PM PDT -ExperimentsInHonesty,2023-03-24T03:45:30Z,- ExperimentsInHonesty reopened issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482207533) at 2023-03-23 08:45 PM PDT -ExperimentsInHonesty,2023-03-24T03:46:04Z,- ExperimentsInHonesty commented on issue: [4269](https://github.com/hackforla/website/issues/4269#issuecomment-1482207948) at 2023-03-23 08:46 PM PDT -ExperimentsInHonesty,2023-03-24T04:05:29Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1482219221) at 2023-03-23 09:05 PM PDT -ExperimentsInHonesty,2023-03-24T04:14:59Z,- ExperimentsInHonesty closed issue as completed: [4241](https://github.com/hackforla/website/issues/4241#event-8834525328) at 2023-03-23 09:14 PM PDT -ExperimentsInHonesty,2023-03-24T05:35:49Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1482276713) at 2023-03-23 10:35 PM PDT -ExperimentsInHonesty,2023-03-24T05:39:25Z,- ExperimentsInHonesty closed issue as completed: [4244](https://github.com/hackforla/website/issues/4244#event-8834873583) at 2023-03-23 10:39 PM PDT -ExperimentsInHonesty,2023-03-24T05:46:05Z,- ExperimentsInHonesty commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1482284175) at 2023-03-23 10:46 PM PDT -ExperimentsInHonesty,2023-03-24T05:48:39Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1482288649) at 2023-03-23 10:48 PM PDT -ExperimentsInHonesty,2023-03-24T05:53:14Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1482291544) at 2023-03-23 10:53 PM PDT -ExperimentsInHonesty,2023-03-24T05:55:37Z,- ExperimentsInHonesty commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1482292795) at 2023-03-23 10:55 PM PDT -ExperimentsInHonesty,2023-03-24T06:01:24Z,- ExperimentsInHonesty commented on issue: [3370](https://github.com/hackforla/website/issues/3370#issuecomment-1482297139) at 2023-03-23 11:01 PM PDT -ExperimentsInHonesty,2023-03-24T06:01:25Z,- ExperimentsInHonesty closed issue as completed: [3370](https://github.com/hackforla/website/issues/3370#event-8834999252) at 2023-03-23 11:01 PM PDT -ExperimentsInHonesty,2023-03-24T06:02:37Z,- ExperimentsInHonesty commented on issue: [3533](https://github.com/hackforla/website/issues/3533#issuecomment-1482298163) at 2023-03-23 11:02 PM PDT -ExperimentsInHonesty,2023-03-24T06:02:37Z,- ExperimentsInHonesty closed issue as completed: [3533](https://github.com/hackforla/website/issues/3533#event-8835007443) at 2023-03-23 11:02 PM PDT -ExperimentsInHonesty,2023-03-24T06:23:55Z,- ExperimentsInHonesty commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-1482313306) at 2023-03-23 11:23 PM PDT -ExperimentsInHonesty,2023-03-24T06:48:44Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1482333765) at 2023-03-23 11:48 PM PDT -ExperimentsInHonesty,2023-03-24T15:03:57Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1482951990) at 2023-03-24 08:03 AM PDT -ExperimentsInHonesty,2023-03-24T15:42:44Z,- ExperimentsInHonesty opened issue: [4276](https://github.com/hackforla/website/issues/4276) at 2023-03-24 08:42 AM PDT -ExperimentsInHonesty,2023-03-24T15:47:26Z,- ExperimentsInHonesty commented on issue: [2776](https://github.com/hackforla/website/issues/2776#issuecomment-1483023208) at 2023-03-24 08:47 AM PDT -ExperimentsInHonesty,2023-03-24T16:19:47Z,- ExperimentsInHonesty opened issue: [4277](https://github.com/hackforla/website/issues/4277) at 2023-03-24 09:19 AM PDT -ExperimentsInHonesty,2023-03-24T16:20:16Z,- ExperimentsInHonesty commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1483073060) at 2023-03-24 09:20 AM PDT -ExperimentsInHonesty,2023-03-24T16:37:48Z,- ExperimentsInHonesty commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1483095718) at 2023-03-24 09:37 AM PDT -ExperimentsInHonesty,2023-03-24T17:05:42Z,- ExperimentsInHonesty commented on issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1483134101) at 2023-03-24 10:05 AM PDT -ExperimentsInHonesty,2023-03-24T17:49:57Z,- ExperimentsInHonesty assigned to issue: [3058](https://github.com/hackforla/website/issues/3058#issuecomment-1483134101) at 2023-03-24 10:49 AM PDT -ExperimentsInHonesty,2023-03-24T21:11:39Z,- ExperimentsInHonesty commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1483411014) at 2023-03-24 02:11 PM PDT -ExperimentsInHonesty,2023-03-24T21:11:43Z,- ExperimentsInHonesty closed issue as completed: [3885](https://github.com/hackforla/website/issues/3885#event-8842834407) at 2023-03-24 02:11 PM PDT -ExperimentsInHonesty,2023-03-24T21:15:55Z,- ExperimentsInHonesty commented on issue: [4281](https://github.com/hackforla/website/issues/4281#issuecomment-1483414237) at 2023-03-24 02:15 PM PDT -ExperimentsInHonesty,2023-03-24T21:37:33Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1483437556) at 2023-03-24 02:37 PM PDT -ExperimentsInHonesty,2023-03-24T22:15:46Z,- ExperimentsInHonesty commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1483496383) at 2023-03-24 03:15 PM PDT -ExperimentsInHonesty,2023-03-24T22:19:23Z,- ExperimentsInHonesty commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1483502810) at 2023-03-24 03:19 PM PDT -ExperimentsInHonesty,2023-03-24T23:59:36Z,- ExperimentsInHonesty opened issue: [4282](https://github.com/hackforla/website/issues/4282) at 2023-03-24 04:59 PM PDT -ExperimentsInHonesty,2023-03-25T01:15:24Z,- ExperimentsInHonesty opened issue: [4283](https://github.com/hackforla/website/issues/4283) at 2023-03-24 06:15 PM PDT -ExperimentsInHonesty,2023-03-25T01:35:02Z,- ExperimentsInHonesty opened issue: [4285](https://github.com/hackforla/website/issues/4285) at 2023-03-24 06:35 PM PDT -ExperimentsInHonesty,2023-03-25T01:45:09Z,- ExperimentsInHonesty commented on issue: [3912](https://github.com/hackforla/website/issues/3912#issuecomment-1483672874) at 2023-03-24 06:45 PM PDT -ExperimentsInHonesty,2023-03-25T06:00:22Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1483736599) at 2023-03-24 11:00 PM PDT -ExperimentsInHonesty,2023-03-26T07:15:16Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1484016722) at 2023-03-26 12:15 AM PDT -ExperimentsInHonesty,2023-03-26T07:17:35Z,- ExperimentsInHonesty commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1484017168) at 2023-03-26 12:17 AM PDT -ExperimentsInHonesty,2023-03-26T16:36:54Z,- ExperimentsInHonesty opened issue: [4294](https://github.com/hackforla/website/issues/4294) at 2023-03-26 09:36 AM PDT -ExperimentsInHonesty,2023-03-26T16:40:32Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484153105) at 2023-03-26 09:40 AM PDT -ExperimentsInHonesty,2023-03-26T16:41:25Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484153332) at 2023-03-26 09:41 AM PDT -ExperimentsInHonesty,2023-03-26T17:16:24Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484162168) at 2023-03-26 10:16 AM PDT -ExperimentsInHonesty,2023-03-26T17:19:06Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484162883) at 2023-03-26 10:19 AM PDT -ExperimentsInHonesty,2023-03-26T18:34:52Z,- ExperimentsInHonesty commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1484182141) at 2023-03-26 11:34 AM PDT -ExperimentsInHonesty,2023-03-26T20:49:33Z,- ExperimentsInHonesty assigned to issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484162883) at 2023-03-26 01:49 PM PDT -ExperimentsInHonesty,2023-03-26T22:11:40Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1484239501) at 2023-03-26 03:11 PM PDT -ExperimentsInHonesty,2023-03-26T22:15:12Z,- ExperimentsInHonesty commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1484240225) at 2023-03-26 03:15 PM PDT -ExperimentsInHonesty,2023-03-26T22:23:33Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1484242149) at 2023-03-26 03:23 PM PDT -ExperimentsInHonesty,2023-03-26T22:58:24Z,- ExperimentsInHonesty commented on issue: [3611](https://github.com/hackforla/website/issues/3611#issuecomment-1484251190) at 2023-03-26 03:58 PM PDT -ExperimentsInHonesty,2023-03-26T22:58:25Z,- ExperimentsInHonesty closed issue as completed: [3611](https://github.com/hackforla/website/issues/3611#event-8848317207) at 2023-03-26 03:58 PM PDT -ExperimentsInHonesty,2023-03-26T23:08:40Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1484254478) at 2023-03-26 04:08 PM PDT -ExperimentsInHonesty,2023-03-26T23:26:07Z,- ExperimentsInHonesty commented on issue: [3778](https://github.com/hackforla/website/issues/3778#issuecomment-1484270060) at 2023-03-26 04:26 PM PDT -ExperimentsInHonesty,2023-03-26T23:32:19Z,- ExperimentsInHonesty commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1484271417) at 2023-03-26 04:32 PM PDT -ExperimentsInHonesty,2023-03-26T23:36:04Z,- ExperimentsInHonesty commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1484272263) at 2023-03-26 04:36 PM PDT -ExperimentsInHonesty,2023-03-26T23:39:46Z,- ExperimentsInHonesty commented on issue: [4239](https://github.com/hackforla/website/issues/4239#issuecomment-1484276572) at 2023-03-26 04:39 PM PDT -ExperimentsInHonesty,2023-03-26T23:41:42Z,- ExperimentsInHonesty commented on issue: [4159](https://github.com/hackforla/website/issues/4159#issuecomment-1484277046) at 2023-03-26 04:41 PM PDT -ExperimentsInHonesty,2023-03-26T23:52:33Z,- ExperimentsInHonesty commented on issue: [3787](https://github.com/hackforla/website/issues/3787#issuecomment-1484279461) at 2023-03-26 04:52 PM PDT -ExperimentsInHonesty,2023-03-26T23:58:40Z,- ExperimentsInHonesty commented on issue: [3788](https://github.com/hackforla/website/issues/3788#issuecomment-1484280877) at 2023-03-26 04:58 PM PDT -ExperimentsInHonesty,2023-03-27T00:09:05Z,- ExperimentsInHonesty commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1484285108) at 2023-03-26 05:09 PM PDT -ExperimentsInHonesty,2023-03-27T00:09:12Z,- ExperimentsInHonesty closed issue as completed: [3820](https://github.com/hackforla/website/issues/3820#event-8848457750) at 2023-03-26 05:09 PM PDT -ExperimentsInHonesty,2023-03-27T00:11:12Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1484285907) at 2023-03-26 05:11 PM PDT -ExperimentsInHonesty,2023-03-27T00:14:43Z,- ExperimentsInHonesty commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1484287840) at 2023-03-26 05:14 PM PDT -ExperimentsInHonesty,2023-03-27T00:20:34Z,- ExperimentsInHonesty commented on issue: [3882](https://github.com/hackforla/website/issues/3882#issuecomment-1484290194) at 2023-03-26 05:20 PM PDT -ExperimentsInHonesty,2023-03-27T00:20:35Z,- ExperimentsInHonesty closed issue as completed: [3882](https://github.com/hackforla/website/issues/3882#event-8848487333) at 2023-03-26 05:20 PM PDT -ExperimentsInHonesty,2023-03-27T00:21:49Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1484290661) at 2023-03-26 05:21 PM PDT -ExperimentsInHonesty,2023-03-27T00:27:20Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1484293271) at 2023-03-26 05:27 PM PDT -ExperimentsInHonesty,2023-03-27T00:27:43Z,- ExperimentsInHonesty commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1484293419) at 2023-03-26 05:27 PM PDT -ExperimentsInHonesty,2023-03-27T00:36:15Z,- ExperimentsInHonesty commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1484303686) at 2023-03-26 05:36 PM PDT -ExperimentsInHonesty,2023-03-27T00:49:33Z,- ExperimentsInHonesty commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1484310918) at 2023-03-26 05:49 PM PDT -ExperimentsInHonesty,2023-03-27T00:49:34Z,- ExperimentsInHonesty closed issue as completed: [3916](https://github.com/hackforla/website/issues/3916#event-8848562733) at 2023-03-26 05:49 PM PDT -ExperimentsInHonesty,2023-03-27T00:53:09Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1484312343) at 2023-03-26 05:53 PM PDT -ExperimentsInHonesty,2023-03-27T00:59:07Z,- ExperimentsInHonesty commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1484316737) at 2023-03-26 05:59 PM PDT -ExperimentsInHonesty,2023-03-27T01:01:56Z,- ExperimentsInHonesty commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1484318070) at 2023-03-26 06:01 PM PDT -ExperimentsInHonesty,2023-03-27T01:06:32Z,- ExperimentsInHonesty commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1484320041) at 2023-03-26 06:06 PM PDT -ExperimentsInHonesty,2023-03-27T01:21:47Z,- ExperimentsInHonesty commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1484328976) at 2023-03-26 06:21 PM PDT -ExperimentsInHonesty,2023-03-27T01:27:40Z,- ExperimentsInHonesty commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1484334242) at 2023-03-26 06:27 PM PDT -ExperimentsInHonesty,2023-03-27T01:45:06Z,- ExperimentsInHonesty commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1484346168) at 2023-03-26 06:45 PM PDT -ExperimentsInHonesty,2023-03-27T01:46:20Z,- ExperimentsInHonesty commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1484348023) at 2023-03-26 06:46 PM PDT -ExperimentsInHonesty,2023-03-27T01:54:42Z,- ExperimentsInHonesty commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1484356166) at 2023-03-26 06:54 PM PDT -ExperimentsInHonesty,2023-03-27T02:54:02Z,- ExperimentsInHonesty commented on issue: [4060](https://github.com/hackforla/website/issues/4060#issuecomment-1484405290) at 2023-03-26 07:54 PM PDT -ExperimentsInHonesty,2023-03-27T02:55:32Z,- ExperimentsInHonesty commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1484406037) at 2023-03-26 07:55 PM PDT -ExperimentsInHonesty,2023-03-27T03:01:03Z,- ExperimentsInHonesty commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1484410244) at 2023-03-26 08:01 PM PDT -ExperimentsInHonesty,2023-03-27T03:01:30Z,- ExperimentsInHonesty commented on issue: [4062](https://github.com/hackforla/website/issues/4062#issuecomment-1484410637) at 2023-03-26 08:01 PM PDT -ExperimentsInHonesty,2023-03-27T03:04:18Z,- ExperimentsInHonesty commented on issue: [4064](https://github.com/hackforla/website/issues/4064#issuecomment-1484413065) at 2023-03-26 08:04 PM PDT -ExperimentsInHonesty,2023-03-27T03:06:44Z,- ExperimentsInHonesty commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1484415193) at 2023-03-26 08:06 PM PDT -ExperimentsInHonesty,2023-03-27T03:10:13Z,- ExperimentsInHonesty commented on issue: [4066](https://github.com/hackforla/website/issues/4066#issuecomment-1484418102) at 2023-03-26 08:10 PM PDT -ExperimentsInHonesty,2023-03-27T03:14:57Z,- ExperimentsInHonesty commented on issue: [4068](https://github.com/hackforla/website/issues/4068#issuecomment-1484421675) at 2023-03-26 08:14 PM PDT -ExperimentsInHonesty,2023-03-27T03:16:01Z,- ExperimentsInHonesty commented on issue: [4069](https://github.com/hackforla/website/issues/4069#issuecomment-1484422289) at 2023-03-26 08:16 PM PDT -ExperimentsInHonesty,2023-03-27T03:17:52Z,- ExperimentsInHonesty commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1484423292) at 2023-03-26 08:17 PM PDT -ExperimentsInHonesty,2023-03-27T03:25:41Z,- ExperimentsInHonesty commented on issue: [4072](https://github.com/hackforla/website/issues/4072#issuecomment-1484427592) at 2023-03-26 08:25 PM PDT -ExperimentsInHonesty,2023-03-27T03:35:02Z,- ExperimentsInHonesty commented on issue: [4075](https://github.com/hackforla/website/issues/4075#issuecomment-1484432261) at 2023-03-26 08:35 PM PDT -ExperimentsInHonesty,2023-03-27T03:39:12Z,- ExperimentsInHonesty commented on issue: [4160](https://github.com/hackforla/website/issues/4160#issuecomment-1484436745) at 2023-03-26 08:39 PM PDT -ExperimentsInHonesty,2023-03-27T03:42:50Z,- ExperimentsInHonesty commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1484442509) at 2023-03-26 08:42 PM PDT -ExperimentsInHonesty,2023-03-27T03:44:59Z,- ExperimentsInHonesty commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1484444854) at 2023-03-26 08:44 PM PDT -ExperimentsInHonesty,2023-03-27T03:46:31Z,- ExperimentsInHonesty commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1484445511) at 2023-03-26 08:46 PM PDT -ExperimentsInHonesty,2023-03-27T03:53:36Z,- ExperimentsInHonesty commented on issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1484448750) at 2023-03-26 08:53 PM PDT -ExperimentsInHonesty,2023-03-27T03:54:44Z,- ExperimentsInHonesty commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1484449249) at 2023-03-26 08:54 PM PDT -ExperimentsInHonesty,2023-03-27T03:57:18Z,- ExperimentsInHonesty commented on issue: [4172](https://github.com/hackforla/website/issues/4172#issuecomment-1484450619) at 2023-03-26 08:57 PM PDT -ExperimentsInHonesty,2023-03-27T04:01:32Z,- ExperimentsInHonesty commented on issue: [1478](https://github.com/hackforla/website/issues/1478#issuecomment-1484453980) at 2023-03-26 09:01 PM PDT -ExperimentsInHonesty,2023-03-27T04:06:19Z,- ExperimentsInHonesty commented on issue: [4173](https://github.com/hackforla/website/issues/4173#issuecomment-1484458905) at 2023-03-26 09:06 PM PDT -ExperimentsInHonesty,2023-03-27T04:11:00Z,- ExperimentsInHonesty commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1484463005) at 2023-03-26 09:11 PM PDT -ExperimentsInHonesty,2023-03-27T04:21:56Z,- ExperimentsInHonesty commented on issue: [3825](https://github.com/hackforla/website/issues/3825#issuecomment-1484469891) at 2023-03-26 09:21 PM PDT -ExperimentsInHonesty,2023-03-27T04:23:18Z,- ExperimentsInHonesty commented on issue: [4073](https://github.com/hackforla/website/issues/4073#issuecomment-1484470560) at 2023-03-26 09:23 PM PDT -ExperimentsInHonesty,2023-03-27T04:25:31Z,- ExperimentsInHonesty commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1484471726) at 2023-03-26 09:25 PM PDT -ExperimentsInHonesty,2023-03-27T04:32:38Z,- ExperimentsInHonesty commented on issue: [3782](https://github.com/hackforla/website/issues/3782#issuecomment-1484475858) at 2023-03-26 09:32 PM PDT -ExperimentsInHonesty,2023-03-27T04:33:50Z,- ExperimentsInHonesty commented on issue: [3813](https://github.com/hackforla/website/issues/3813#issuecomment-1484476418) at 2023-03-26 09:33 PM PDT -ExperimentsInHonesty,2023-03-27T04:34:20Z,- ExperimentsInHonesty commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1484476662) at 2023-03-26 09:34 PM PDT -ExperimentsInHonesty,2023-03-27T04:34:46Z,- ExperimentsInHonesty commented on issue: [4090](https://github.com/hackforla/website/issues/4090#issuecomment-1484476869) at 2023-03-26 09:34 PM PDT -ExperimentsInHonesty,2023-03-27T04:49:24Z,- ExperimentsInHonesty commented on issue: [4240](https://github.com/hackforla/website/issues/4240#issuecomment-1484483900) at 2023-03-26 09:49 PM PDT -ExperimentsInHonesty,2023-03-27T04:51:42Z,- ExperimentsInHonesty commented on issue: [4269](https://github.com/hackforla/website/issues/4269#issuecomment-1484484986) at 2023-03-26 09:51 PM PDT -ExperimentsInHonesty,2023-03-27T05:00:04Z,- ExperimentsInHonesty commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1484491167) at 2023-03-26 10:00 PM PDT -ExperimentsInHonesty,2023-03-27T05:01:28Z,- ExperimentsInHonesty commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1484494520) at 2023-03-26 10:01 PM PDT -ExperimentsInHonesty,2023-03-27T05:59:48Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484540784) at 2023-03-26 10:59 PM PDT -ExperimentsInHonesty,2023-03-27T06:28:24Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1484573601) at 2023-03-26 11:28 PM PDT -ExperimentsInHonesty,2023-03-27T06:42:52Z,- ExperimentsInHonesty unassigned from issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1484540784) at 2023-03-26 11:42 PM PDT -ExperimentsInHonesty,2023-03-27T07:05:26Z,- ExperimentsInHonesty commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1484612385) at 2023-03-27 12:05 AM PDT -ExperimentsInHonesty,2023-03-27T07:30:59Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1484644038) at 2023-03-27 12:30 AM PDT -ExperimentsInHonesty,2023-03-27T07:46:43Z,- ExperimentsInHonesty commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1484662456) at 2023-03-27 12:46 AM PDT -ExperimentsInHonesty,2023-03-27T08:00:50Z,- ExperimentsInHonesty commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1484680290) at 2023-03-27 01:00 AM PDT -ExperimentsInHonesty,2023-03-28T00:33:59Z,- ExperimentsInHonesty commented on issue: [4167](https://github.com/hackforla/website/issues/4167#issuecomment-1486042925) at 2023-03-27 05:33 PM PDT -ExperimentsInHonesty,2023-03-28T01:35:55Z,- ExperimentsInHonesty commented on issue: [3500](https://github.com/hackforla/website/issues/3500#issuecomment-1486082425) at 2023-03-27 06:35 PM PDT -ExperimentsInHonesty,2023-03-28T01:36:43Z,- ExperimentsInHonesty closed issue as completed: [3501](https://github.com/hackforla/website/issues/3501#event-8859870429) at 2023-03-27 06:36 PM PDT -ExperimentsInHonesty,2023-03-28T01:37:00Z,- ExperimentsInHonesty closed issue as completed: [3500](https://github.com/hackforla/website/issues/3500#event-8859871742) at 2023-03-27 06:37 PM PDT -ExperimentsInHonesty,2023-03-28T01:41:48Z,- ExperimentsInHonesty commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-1486085956) at 2023-03-27 06:41 PM PDT -ExperimentsInHonesty,2023-03-29T23:54:41Z,- ExperimentsInHonesty opened issue: [4342](https://github.com/hackforla/website/issues/4342) at 2023-03-29 04:54 PM PDT -ExperimentsInHonesty,2023-04-02T15:30:43Z,- ExperimentsInHonesty opened issue: [4367](https://github.com/hackforla/website/issues/4367) at 2023-04-02 08:30 AM PDT -ExperimentsInHonesty,2023-04-02T15:36:59Z,- ExperimentsInHonesty commented on issue: [4249](https://github.com/hackforla/website/issues/4249#issuecomment-1493374309) at 2023-04-02 08:36 AM PDT -ExperimentsInHonesty,2023-04-02T15:40:04Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1493374953) at 2023-04-02 08:40 AM PDT -ExperimentsInHonesty,2023-04-02T15:44:39Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1493375886) at 2023-04-02 08:44 AM PDT -ExperimentsInHonesty,2023-04-02T15:45:25Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1493376054) at 2023-04-02 08:45 AM PDT -ExperimentsInHonesty,2023-04-02T15:55:59Z,- ExperimentsInHonesty commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493378268) at 2023-04-02 08:55 AM PDT -ExperimentsInHonesty,2023-04-02T16:00:46Z,- ExperimentsInHonesty opened issue: [4368](https://github.com/hackforla/website/issues/4368) at 2023-04-02 09:00 AM PDT -ExperimentsInHonesty,2023-04-02T16:21:57Z,- ExperimentsInHonesty commented on issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1493383822) at 2023-04-02 09:21 AM PDT -ExperimentsInHonesty,2023-04-02T16:29:46Z,- ExperimentsInHonesty commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1493385344) at 2023-04-02 09:29 AM PDT -ExperimentsInHonesty,2023-04-02T16:45:42Z,- ExperimentsInHonesty opened issue: [4369](https://github.com/hackforla/website/issues/4369) at 2023-04-02 09:45 AM PDT -ExperimentsInHonesty,2023-04-02T16:48:53Z,- ExperimentsInHonesty commented on issue: [4350](https://github.com/hackforla/website/issues/4350#issuecomment-1493388903) at 2023-04-02 09:48 AM PDT -ExperimentsInHonesty,2023-04-02T16:53:04Z,- ExperimentsInHonesty commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1493389723) at 2023-04-02 09:53 AM PDT -ExperimentsInHonesty,2023-04-02T17:48:54Z,- ExperimentsInHonesty commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1493401332) at 2023-04-02 10:48 AM PDT -ExperimentsInHonesty,2023-04-02T18:52:21Z,- ExperimentsInHonesty commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1493414075) at 2023-04-02 11:52 AM PDT -ExperimentsInHonesty,2023-04-02T19:06:25Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493417001) at 2023-04-02 12:06 PM PDT -ExperimentsInHonesty,2023-04-02T19:09:34Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493417628) at 2023-04-02 12:09 PM PDT -ExperimentsInHonesty,2023-04-02T19:17:08Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493419037) at 2023-04-02 12:17 PM PDT -ExperimentsInHonesty,2023-04-02T20:05:15Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493428321) at 2023-04-02 01:05 PM PDT -ExperimentsInHonesty,2023-04-02T20:34:35Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493434319) at 2023-04-02 01:34 PM PDT -ExperimentsInHonesty,2023-04-02T20:46:25Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493436362) at 2023-04-02 01:46 PM PDT -ExperimentsInHonesty,2023-04-02T21:03:59Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493439717) at 2023-04-02 02:03 PM PDT -ExperimentsInHonesty,2023-04-03T00:58:53Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493494956) at 2023-04-02 05:58 PM PDT -ExperimentsInHonesty,2023-04-03T00:59:20Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493495104) at 2023-04-02 05:59 PM PDT -ExperimentsInHonesty,2023-04-03T04:23:38Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493641922) at 2023-04-02 09:23 PM PDT -ExperimentsInHonesty,2023-04-03T04:27:58Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493645397) at 2023-04-02 09:27 PM PDT -ExperimentsInHonesty,2023-04-03T04:35:00Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493648757) at 2023-04-02 09:35 PM PDT -ExperimentsInHonesty,2023-04-03T05:16:46Z,- ExperimentsInHonesty opened issue: [4385](https://github.com/hackforla/website/issues/4385) at 2023-04-02 10:16 PM PDT -ExperimentsInHonesty,2023-04-03T05:25:45Z,- ExperimentsInHonesty commented on issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1493684387) at 2023-04-02 10:25 PM PDT -ExperimentsInHonesty,2023-04-03T06:09:08Z,- ExperimentsInHonesty commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493716472) at 2023-04-02 11:09 PM PDT -ExperimentsInHonesty,2023-04-03T06:21:53Z,- ExperimentsInHonesty commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1493727759) at 2023-04-02 11:21 PM PDT -ExperimentsInHonesty,2023-04-03T06:29:04Z,- ExperimentsInHonesty commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1493741627) at 2023-04-02 11:29 PM PDT -ExperimentsInHonesty,2023-04-03T06:29:04Z,- ExperimentsInHonesty closed issue as completed: [3758](https://github.com/hackforla/website/issues/3758#event-8908912472) at 2023-04-02 11:29 PM PDT -ExperimentsInHonesty,2023-04-03T06:38:09Z,- ExperimentsInHonesty commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1493760332) at 2023-04-02 11:38 PM PDT -ExperimentsInHonesty,2023-04-03T16:28:33Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494630931) at 2023-04-03 09:28 AM PDT -ExperimentsInHonesty,2023-04-03T16:55:31Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494665636) at 2023-04-03 09:55 AM PDT -ExperimentsInHonesty,2023-04-03T16:56:05Z,- ExperimentsInHonesty assigned to issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494665636) at 2023-04-03 09:56 AM PDT -ExperimentsInHonesty,2023-04-03T17:02:56Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494676630) at 2023-04-03 10:02 AM PDT -ExperimentsInHonesty,2023-04-03T17:14:46Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494693228) at 2023-04-03 10:14 AM PDT -ExperimentsInHonesty,2023-04-03T17:22:48Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494702870) at 2023-04-03 10:22 AM PDT -ExperimentsInHonesty,2023-04-03T17:54:18Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494739533) at 2023-04-03 10:54 AM PDT -ExperimentsInHonesty,2023-04-03T17:56:23Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494741922) at 2023-04-03 10:56 AM PDT -ExperimentsInHonesty,2023-04-03T22:47:12Z,- ExperimentsInHonesty commented on issue: [4387](https://github.com/hackforla/website/issues/4387#issuecomment-1495083801) at 2023-04-03 03:47 PM PDT -ExperimentsInHonesty,2023-04-03T23:43:05Z,- ExperimentsInHonesty commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1495131102) at 2023-04-03 04:43 PM PDT -ExperimentsInHonesty,2023-04-03T23:57:41Z,- ExperimentsInHonesty commented on issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1495143197) at 2023-04-03 04:57 PM PDT -ExperimentsInHonesty,2023-04-04T00:06:25Z,- ExperimentsInHonesty commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1495151351) at 2023-04-03 05:06 PM PDT -ExperimentsInHonesty,2023-04-04T00:27:04Z,- ExperimentsInHonesty commented on pull request: [4273](https://github.com/hackforla/website/pull/4273#issuecomment-1495170008) at 2023-04-03 05:27 PM PDT -ExperimentsInHonesty,2023-04-04T00:27:36Z,- ExperimentsInHonesty commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1495170363) at 2023-04-03 05:27 PM PDT -ExperimentsInHonesty,2023-04-04T00:29:46Z,- ExperimentsInHonesty commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1495172551) at 2023-04-03 05:29 PM PDT -ExperimentsInHonesty,2023-04-04T01:51:20Z,- ExperimentsInHonesty commented on issue: [3744](https://github.com/hackforla/website/issues/3744#issuecomment-1495225001) at 2023-04-03 06:51 PM PDT -ExperimentsInHonesty,2023-04-04T02:23:42Z,- ExperimentsInHonesty commented on issue: [3829](https://github.com/hackforla/website/issues/3829#issuecomment-1495248796) at 2023-04-03 07:23 PM PDT -ExperimentsInHonesty,2023-04-04T02:23:43Z,- ExperimentsInHonesty closed issue as completed: [3829](https://github.com/hackforla/website/issues/3829#event-8919329569) at 2023-04-03 07:23 PM PDT -ExperimentsInHonesty,2023-04-04T18:44:30Z,- ExperimentsInHonesty opened issue: [4407](https://github.com/hackforla/website/issues/4407) at 2023-04-04 11:44 AM PDT -ExperimentsInHonesty,2023-04-04T19:05:09Z,- ExperimentsInHonesty commented on issue: [4263](https://github.com/hackforla/website/issues/4263#issuecomment-1496461466) at 2023-04-04 12:05 PM PDT -ExperimentsInHonesty,2023-04-04T21:43:45Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1496642310) at 2023-04-04 02:43 PM PDT -ExperimentsInHonesty,2023-04-04T21:52:50Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1496650077) at 2023-04-04 02:52 PM PDT -ExperimentsInHonesty,2023-04-04T21:59:02Z,- ExperimentsInHonesty commented on issue: [4342](https://github.com/hackforla/website/issues/4342#issuecomment-1496655562) at 2023-04-04 02:59 PM PDT -ExperimentsInHonesty,2023-04-04T22:11:14Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1496666502) at 2023-04-04 03:11 PM PDT -ExperimentsInHonesty,2023-04-04T22:48:40Z,- ExperimentsInHonesty commented on issue: [4271](https://github.com/hackforla/website/issues/4271#issuecomment-1496694092) at 2023-04-04 03:48 PM PDT -ExperimentsInHonesty,2023-04-06T14:47:50Z,- ExperimentsInHonesty commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1499189544) at 2023-04-06 07:47 AM PDT -ExperimentsInHonesty,2023-04-06T15:43:45Z,- ExperimentsInHonesty commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1499272225) at 2023-04-06 08:43 AM PDT -ExperimentsInHonesty,2023-04-06T16:00:04Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1499293575) at 2023-04-06 09:00 AM PDT -ExperimentsInHonesty,2023-04-06T16:02:19Z,- ExperimentsInHonesty unassigned from issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1494746839) at 2023-04-06 09:02 AM PDT -ExperimentsInHonesty,2023-04-06T16:07:28Z,- ExperimentsInHonesty commented on issue: [4349](https://github.com/hackforla/website/issues/4349#issuecomment-1499303662) at 2023-04-06 09:07 AM PDT -ExperimentsInHonesty,2023-04-06T17:03:53Z,- ExperimentsInHonesty opened issue: [4431](https://github.com/hackforla/website/issues/4431) at 2023-04-06 10:03 AM PDT -ExperimentsInHonesty,2023-04-06T17:41:51Z,- ExperimentsInHonesty opened issue: [4432](https://github.com/hackforla/website/issues/4432) at 2023-04-06 10:41 AM PDT -ExperimentsInHonesty,2023-04-06T18:19:15Z,- ExperimentsInHonesty commented on issue: [4432](https://github.com/hackforla/website/issues/4432#issuecomment-1499448531) at 2023-04-06 11:19 AM PDT -ExperimentsInHonesty,2023-04-06T18:23:09Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1499453729) at 2023-04-06 11:23 AM PDT -ExperimentsInHonesty,2023-04-06T18:29:39Z,- ExperimentsInHonesty commented on issue: [4431](https://github.com/hackforla/website/issues/4431#issuecomment-1499460170) at 2023-04-06 11:29 AM PDT -ExperimentsInHonesty,2023-04-06T18:38:04Z,- ExperimentsInHonesty commented on issue: [4152](https://github.com/hackforla/website/issues/4152#issuecomment-1499468391) at 2023-04-06 11:38 AM PDT -ExperimentsInHonesty,2023-04-06T19:09:47Z,- ExperimentsInHonesty reopened issue: [4261](https://github.com/hackforla/website/issues/4261#event-8941104878) at 2023-04-06 12:09 PM PDT -ExperimentsInHonesty,2023-04-06T19:15:51Z,- ExperimentsInHonesty commented on issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499506499) at 2023-04-06 12:15 PM PDT -ExperimentsInHonesty,2023-04-06T19:17:32Z,- ExperimentsInHonesty commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1499508041) at 2023-04-06 12:17 PM PDT -ExperimentsInHonesty,2023-04-06T19:27:36Z,- ExperimentsInHonesty assigned to issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499506499) at 2023-04-06 12:27 PM PDT -ExperimentsInHonesty,2023-04-06T19:28:31Z,- ExperimentsInHonesty commented on issue: [4261](https://github.com/hackforla/website/issues/4261#issuecomment-1499518464) at 2023-04-06 12:28 PM PDT -ExperimentsInHonesty,2023-04-06T19:30:50Z,- ExperimentsInHonesty opened issue: [4434](https://github.com/hackforla/website/issues/4434) at 2023-04-06 12:30 PM PDT -ExperimentsInHonesty,2023-04-06T19:49:11Z,- ExperimentsInHonesty closed issue as completed: [4261](https://github.com/hackforla/website/issues/4261#event-8949211505) at 2023-04-06 12:49 PM PDT -ExperimentsInHonesty,2023-04-06T20:21:10Z,- ExperimentsInHonesty commented on issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1499575444) at 2023-04-06 01:21 PM PDT -ExperimentsInHonesty,2023-04-06T20:37:20Z,- ExperimentsInHonesty commented on issue: [4357](https://github.com/hackforla/website/issues/4357#issuecomment-1499594375) at 2023-04-06 01:37 PM PDT -ExperimentsInHonesty,2023-04-06T20:43:04Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1499600016) at 2023-04-06 01:43 PM PDT -ExperimentsInHonesty,2023-04-06T21:00:50Z,- ExperimentsInHonesty commented on issue: [4335](https://github.com/hackforla/website/issues/4335#issuecomment-1499625967) at 2023-04-06 02:00 PM PDT -ExperimentsInHonesty,2023-04-09T07:19:01Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1501060907) at 2023-04-09 12:19 AM PDT -ExperimentsInHonesty,2023-04-09T16:57:29Z,- ExperimentsInHonesty opened issue: [4452](https://github.com/hackforla/website/issues/4452) at 2023-04-09 09:57 AM PDT -ExperimentsInHonesty,2023-04-12T15:53:44Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1505521858) at 2023-04-12 08:53 AM PDT -ExperimentsInHonesty,2023-04-12T15:57:32Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1505531408) at 2023-04-12 08:57 AM PDT -ExperimentsInHonesty,2023-04-12T15:59:31Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1505535910) at 2023-04-12 08:59 AM PDT -ExperimentsInHonesty,2023-04-13T18:16:57Z,- ExperimentsInHonesty commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1507419944) at 2023-04-13 11:16 AM PDT -ExperimentsInHonesty,2023-04-23T16:54:52Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1519109556) at 2023-04-23 09:54 AM PDT -ExperimentsInHonesty,2023-04-25T01:29:48Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-1521032707) at 2023-04-24 06:29 PM PDT -ExperimentsInHonesty,2023-04-30T14:41:44Z,- ExperimentsInHonesty commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1529040949) at 2023-04-30 07:41 AM PDT -ExperimentsInHonesty,2023-04-30T14:54:48Z,- ExperimentsInHonesty commented on issue: [4557](https://github.com/hackforla/website/issues/4557#issuecomment-1529043522) at 2023-04-30 07:54 AM PDT -ExperimentsInHonesty,2023-04-30T15:34:11Z,- ExperimentsInHonesty commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1529055394) at 2023-04-30 08:34 AM PDT -ExperimentsInHonesty,2023-04-30T16:46:56Z,- ExperimentsInHonesty commented on issue: [4362](https://github.com/hackforla/website/issues/4362#issuecomment-1529075067) at 2023-04-30 09:46 AM PDT -ExperimentsInHonesty,2023-04-30T16:50:29Z,- ExperimentsInHonesty commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1529075976) at 2023-04-30 09:50 AM PDT -ExperimentsInHonesty,2023-04-30T17:04:28Z,- ExperimentsInHonesty commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1529080237) at 2023-04-30 10:04 AM PDT -ExperimentsInHonesty,2023-04-30T17:57:11Z,- ExperimentsInHonesty commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1529097673) at 2023-04-30 10:57 AM PDT -ExperimentsInHonesty,2023-04-30T18:47:57Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1529113213) at 2023-04-30 11:47 AM PDT -ExperimentsInHonesty,2023-04-30T18:48:25Z,- ExperimentsInHonesty commented on issue: [4369](https://github.com/hackforla/website/issues/4369#issuecomment-1529113278) at 2023-04-30 11:48 AM PDT -ExperimentsInHonesty,2023-05-02T00:47:12Z,- ExperimentsInHonesty commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1530707266) at 2023-05-01 05:47 PM PDT -ExperimentsInHonesty,2023-05-07T16:07:31Z,- ExperimentsInHonesty commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1537479876) at 2023-05-07 09:07 AM PDT -ExperimentsInHonesty,2023-05-07T16:14:09Z,- ExperimentsInHonesty commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1537481644) at 2023-05-07 09:14 AM PDT -ExperimentsInHonesty,2023-05-07T16:20:34Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537483602) at 2023-05-07 09:20 AM PDT -ExperimentsInHonesty,2023-05-07T16:20:35Z,- ExperimentsInHonesty closed issue as completed: [4594](https://github.com/hackforla/website/issues/4594#event-9184569791) at 2023-05-07 09:20 AM PDT -ExperimentsInHonesty,2023-05-07T16:20:59Z,- ExperimentsInHonesty reopened issue: [4568](https://github.com/hackforla/website/issues/4568#event-9151268034) at 2023-05-07 09:20 AM PDT -ExperimentsInHonesty,2023-05-07T16:24:08Z,- ExperimentsInHonesty commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1537484511) at 2023-05-07 09:24 AM PDT -ExperimentsInHonesty,2023-05-07T16:40:05Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537488312) at 2023-05-07 09:40 AM PDT -ExperimentsInHonesty,2023-05-07T16:40:06Z,- ExperimentsInHonesty reopened issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1537488312) at 2023-05-07 09:40 AM PDT -ExperimentsInHonesty,2023-05-07T16:49:04Z,- ExperimentsInHonesty commented on issue: [4568](https://github.com/hackforla/website/issues/4568#issuecomment-1537490398) at 2023-05-07 09:49 AM PDT -ExperimentsInHonesty,2023-05-07T16:49:04Z,- ExperimentsInHonesty closed issue as completed: [4568](https://github.com/hackforla/website/issues/4568#event-9184606701) at 2023-05-07 09:49 AM PDT -ExperimentsInHonesty,2023-05-07T17:46:40Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1537502732) at 2023-05-07 10:46 AM PDT -ExperimentsInHonesty,2023-05-07T17:47:52Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1537502921) at 2023-05-07 10:47 AM PDT -ExperimentsInHonesty,2023-05-07T18:24:20Z,- ExperimentsInHonesty commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1537511149) at 2023-05-07 11:24 AM PDT -ExperimentsInHonesty,2023-05-07T19:06:14Z,- ExperimentsInHonesty commented on issue: [4577](https://github.com/hackforla/website/issues/4577#issuecomment-1537519148) at 2023-05-07 12:06 PM PDT -ExperimentsInHonesty,2023-05-07T19:12:49Z,- ExperimentsInHonesty commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1537520291) at 2023-05-07 12:12 PM PDT -ExperimentsInHonesty,2023-05-07T19:16:33Z,- ExperimentsInHonesty commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1537520892) at 2023-05-07 12:16 PM PDT -ExperimentsInHonesty,2023-05-07T19:28:01Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1537522872) at 2023-05-07 12:28 PM PDT -ExperimentsInHonesty,2023-05-07T20:24:00Z,- ExperimentsInHonesty opened issue: [4606](https://github.com/hackforla/website/issues/4606) at 2023-05-07 01:24 PM PDT -ExperimentsInHonesty,2023-05-07T20:27:00Z,- ExperimentsInHonesty commented on issue: [3934](https://github.com/hackforla/website/issues/3934#issuecomment-1537533579) at 2023-05-07 01:27 PM PDT -ExperimentsInHonesty,2023-05-07T21:24:44Z,- ExperimentsInHonesty commented on issue: [3934](https://github.com/hackforla/website/issues/3934#issuecomment-1537543909) at 2023-05-07 02:24 PM PDT -ExperimentsInHonesty,2023-05-08T02:14:43Z,- ExperimentsInHonesty opened issue: [4607](https://github.com/hackforla/website/issues/4607) at 2023-05-07 07:14 PM PDT -ExperimentsInHonesty,2023-05-08T04:00:27Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1537704857) at 2023-05-07 09:00 PM PDT -ExperimentsInHonesty,2023-05-09T00:30:33Z,- ExperimentsInHonesty commented on issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1539229664) at 2023-05-08 05:30 PM PDT -ExperimentsInHonesty,2023-05-09T00:47:48Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1539238424) at 2023-05-08 05:47 PM PDT -ExperimentsInHonesty,2023-05-14T03:51:13Z,- ExperimentsInHonesty commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1546800007) at 2023-05-13 08:51 PM PDT -ExperimentsInHonesty,2023-05-14T04:20:53Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1546803333) at 2023-05-13 09:20 PM PDT -ExperimentsInHonesty,2023-05-14T05:01:51Z,- ExperimentsInHonesty commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1546808261) at 2023-05-13 10:01 PM PDT -ExperimentsInHonesty,2023-05-14T05:28:38Z,- ExperimentsInHonesty commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1546811735) at 2023-05-13 10:28 PM PDT -ExperimentsInHonesty,2023-05-14T15:55:44Z,- ExperimentsInHonesty commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1546930217) at 2023-05-14 08:55 AM PDT -ExperimentsInHonesty,2023-05-14T15:57:39Z,- ExperimentsInHonesty commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1546930844) at 2023-05-14 08:57 AM PDT -ExperimentsInHonesty,2023-05-14T16:59:52Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1546946975) at 2023-05-14 09:59 AM PDT -ExperimentsInHonesty,2023-05-14T17:47:19Z,- ExperimentsInHonesty commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1546958629) at 2023-05-14 10:47 AM PDT -ExperimentsInHonesty,2023-05-14T18:00:17Z,- ExperimentsInHonesty commented on issue: [4514](https://github.com/hackforla/website/issues/4514#issuecomment-1546961942) at 2023-05-14 11:00 AM PDT -ExperimentsInHonesty,2023-05-14T18:51:02Z,- ExperimentsInHonesty commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1546974791) at 2023-05-14 11:51 AM PDT -ExperimentsInHonesty,2023-05-14T18:55:29Z,- ExperimentsInHonesty commented on issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1546975471) at 2023-05-14 11:55 AM PDT -ExperimentsInHonesty,2023-05-14T19:26:07Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1546982001) at 2023-05-14 12:26 PM PDT -ExperimentsInHonesty,2023-05-14T22:33:31Z,- ExperimentsInHonesty commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1547015924) at 2023-05-14 03:33 PM PDT -ExperimentsInHonesty,2023-05-14T23:49:45Z,- ExperimentsInHonesty commented on issue: [1992](https://github.com/hackforla/website/issues/1992#issuecomment-1547032537) at 2023-05-14 04:49 PM PDT -ExperimentsInHonesty,2023-05-14T23:49:48Z,- ExperimentsInHonesty closed issue as completed: [1992](https://github.com/hackforla/website/issues/1992#event-9240947982) at 2023-05-14 04:49 PM PDT -ExperimentsInHonesty,2023-05-14T23:52:18Z,- ExperimentsInHonesty commented on issue: [4589](https://github.com/hackforla/website/issues/4589#issuecomment-1547033248) at 2023-05-14 04:52 PM PDT -ExperimentsInHonesty,2023-05-14T23:52:24Z,- ExperimentsInHonesty closed issue as completed: [4589](https://github.com/hackforla/website/issues/4589#event-9240952151) at 2023-05-14 04:52 PM PDT -ExperimentsInHonesty,2023-05-15T00:30:38Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-1547046658) at 2023-05-14 05:30 PM PDT -ExperimentsInHonesty,2023-05-15T00:33:14Z,- ExperimentsInHonesty commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1547047689) at 2023-05-14 05:33 PM PDT -ExperimentsInHonesty,2023-05-15T01:19:27Z,- ExperimentsInHonesty commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1547063903) at 2023-05-14 06:19 PM PDT -ExperimentsInHonesty,2023-05-15T01:28:28Z,- ExperimentsInHonesty commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1547068754) at 2023-05-14 06:28 PM PDT -ExperimentsInHonesty,2023-05-15T01:28:29Z,- ExperimentsInHonesty closed issue as completed: [4012](https://github.com/hackforla/website/issues/4012#event-9241187725) at 2023-05-14 06:28 PM PDT -ExperimentsInHonesty,2023-05-15T02:15:42Z,- ExperimentsInHonesty commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1547100517) at 2023-05-14 07:15 PM PDT -ExperimentsInHonesty,2023-05-15T02:23:05Z,- ExperimentsInHonesty commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1547104482) at 2023-05-14 07:23 PM PDT -ExperimentsInHonesty,2023-05-15T02:57:44Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1547120133) at 2023-05-14 07:57 PM PDT -ExperimentsInHonesty,2023-05-15T03:03:58Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1547125558) at 2023-05-14 08:03 PM PDT -ExperimentsInHonesty,2023-05-15T03:08:43Z,- ExperimentsInHonesty commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1547129609) at 2023-05-14 08:08 PM PDT -ExperimentsInHonesty,2023-05-15T03:10:39Z,- ExperimentsInHonesty commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1547131193) at 2023-05-14 08:10 PM PDT -ExperimentsInHonesty,2023-05-15T03:17:54Z,- ExperimentsInHonesty commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547135751) at 2023-05-14 08:17 PM PDT -ExperimentsInHonesty,2023-05-15T03:20:34Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1547137070) at 2023-05-14 08:20 PM PDT -ExperimentsInHonesty,2023-05-15T03:24:11Z,- ExperimentsInHonesty commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1547138979) at 2023-05-14 08:24 PM PDT -ExperimentsInHonesty,2023-05-15T03:27:42Z,- ExperimentsInHonesty commented on issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1547140586) at 2023-05-14 08:27 PM PDT -ExperimentsInHonesty,2023-05-15T03:31:56Z,- ExperimentsInHonesty commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1547142489) at 2023-05-14 08:31 PM PDT -ExperimentsInHonesty,2023-05-15T15:02:29Z,- ExperimentsInHonesty commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1548037594) at 2023-05-15 08:02 AM PDT -ExperimentsInHonesty,2023-05-15T15:23:10Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1548073153) at 2023-05-15 08:23 AM PDT -ExperimentsInHonesty,2023-05-15T16:31:55Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1548182267) at 2023-05-15 09:31 AM PDT -ExperimentsInHonesty,2023-05-15T16:33:36Z,- ExperimentsInHonesty closed issue as completed: [4369](https://github.com/hackforla/website/issues/4369#event-9248752318) at 2023-05-15 09:33 AM PDT -ExperimentsInHonesty,2023-05-16T00:35:47Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1548798611) at 2023-05-15 05:35 PM PDT -ExperimentsInHonesty,2023-05-16T00:52:40Z,- ExperimentsInHonesty commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1548809729) at 2023-05-15 05:52 PM PDT -ExperimentsInHonesty,2023-05-16T01:19:36Z,- ExperimentsInHonesty commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1548829750) at 2023-05-15 06:19 PM PDT -ExperimentsInHonesty,2023-05-16T01:25:27Z,- ExperimentsInHonesty commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1548832976) at 2023-05-15 06:25 PM PDT -ExperimentsInHonesty,2023-05-16T01:33:34Z,- ExperimentsInHonesty commented on issue: [3488](https://github.com/hackforla/website/issues/3488#issuecomment-1548837791) at 2023-05-15 06:33 PM PDT -ExperimentsInHonesty,2023-05-16T01:37:23Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1548840185) at 2023-05-15 06:37 PM PDT -ExperimentsInHonesty,2023-05-16T01:40:41Z,- ExperimentsInHonesty commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1548842383) at 2023-05-15 06:40 PM PDT -ExperimentsInHonesty,2023-05-16T01:40:49Z,- ExperimentsInHonesty closed issue as not planned: [3334](https://github.com/hackforla/website/issues/3334#event-9252471213) at 2023-05-15 06:40 PM PDT -ExperimentsInHonesty,2023-05-16T02:07:15Z,- ExperimentsInHonesty commented on issue: [4659](https://github.com/hackforla/website/issues/4659#issuecomment-1548862779) at 2023-05-15 07:07 PM PDT -ExperimentsInHonesty,2023-05-17T22:18:29Z,- ExperimentsInHonesty opened issue: [4687](https://github.com/hackforla/website/issues/4687) at 2023-05-17 03:18 PM PDT -ExperimentsInHonesty,2023-05-21T18:01:51Z,- ExperimentsInHonesty commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1556242895) at 2023-05-21 11:01 AM PDT -ExperimentsInHonesty,2023-05-23T00:13:22Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1558248720) at 2023-05-22 05:13 PM PDT -ExperimentsInHonesty,2023-05-23T00:21:10Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1558260181) at 2023-05-22 05:21 PM PDT -ExperimentsInHonesty,2023-05-23T00:24:11Z,- ExperimentsInHonesty commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1558262605) at 2023-05-22 05:24 PM PDT -ExperimentsInHonesty,2023-05-23T00:51:40Z,- ExperimentsInHonesty commented on issue: [3985](https://github.com/hackforla/website/issues/3985#issuecomment-1558290569) at 2023-05-22 05:51 PM PDT -ExperimentsInHonesty,2023-05-23T00:53:13Z,- ExperimentsInHonesty commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1558291471) at 2023-05-22 05:53 PM PDT -ExperimentsInHonesty,2023-05-23T00:54:49Z,- ExperimentsInHonesty commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1558292332) at 2023-05-22 05:54 PM PDT -ExperimentsInHonesty,2023-05-23T01:06:58Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1558309191) at 2023-05-22 06:06 PM PDT -ExperimentsInHonesty,2023-05-23T01:13:04Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1558313276) at 2023-05-22 06:13 PM PDT -ExperimentsInHonesty,2023-05-23T01:24:51Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1558322101) at 2023-05-22 06:24 PM PDT -ExperimentsInHonesty,2023-05-23T01:30:07Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1558339257) at 2023-05-22 06:30 PM PDT -ExperimentsInHonesty,2023-05-28T17:13:44Z,- ExperimentsInHonesty commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1566203169) at 2023-05-28 10:13 AM PDT -ExperimentsInHonesty,2023-05-30T01:40:28Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1567654887) at 2023-05-29 06:40 PM PDT -ExperimentsInHonesty,2023-05-30T02:10:00Z,- ExperimentsInHonesty commented on issue: [4538](https://github.com/hackforla/website/issues/4538#issuecomment-1567670460) at 2023-05-29 07:10 PM PDT -ExperimentsInHonesty,2023-05-30T02:13:10Z,- ExperimentsInHonesty commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1567672354) at 2023-05-29 07:13 PM PDT -ExperimentsInHonesty,2023-06-01T17:48:35Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1572524499) at 2023-06-01 10:48 AM PDT -ExperimentsInHonesty,2023-06-01T17:51:20Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1572527495) at 2023-06-01 10:51 AM PDT -ExperimentsInHonesty,2023-06-04T13:58:55Z,- ExperimentsInHonesty commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1575580469) at 2023-06-04 06:58 AM PDT -ExperimentsInHonesty,2023-06-04T14:04:45Z,- ExperimentsInHonesty commented on issue: [4565](https://github.com/hackforla/website/issues/4565#issuecomment-1575582340) at 2023-06-04 07:04 AM PDT -ExperimentsInHonesty,2023-06-04T15:40:20Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1575614815) at 2023-06-04 08:40 AM PDT -ExperimentsInHonesty,2023-06-04T15:57:00Z,- ExperimentsInHonesty opened issue: [4778](https://github.com/hackforla/website/issues/4778) at 2023-06-04 08:57 AM PDT -ExperimentsInHonesty,2023-06-04T16:18:22Z,- ExperimentsInHonesty assigned to issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1566235512) at 2023-06-04 09:18 AM PDT -ExperimentsInHonesty,2023-06-04T16:23:45Z,- ExperimentsInHonesty commented on issue: [4765](https://github.com/hackforla/website/issues/4765#issuecomment-1575629037) at 2023-06-04 09:23 AM PDT -ExperimentsInHonesty,2023-06-04T16:24:05Z,- ExperimentsInHonesty commented on issue: [4766](https://github.com/hackforla/website/issues/4766#issuecomment-1575629109) at 2023-06-04 09:24 AM PDT -ExperimentsInHonesty,2023-06-04T16:26:52Z,- ExperimentsInHonesty commented on issue: [4724](https://github.com/hackforla/website/issues/4724#issuecomment-1575629839) at 2023-06-04 09:26 AM PDT -ExperimentsInHonesty,2023-06-04T16:31:36Z,- ExperimentsInHonesty commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1575631260) at 2023-06-04 09:31 AM PDT -ExperimentsInHonesty,2023-06-04T16:40:41Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1575633887) at 2023-06-04 09:40 AM PDT -ExperimentsInHonesty,2023-06-04T16:51:23Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575637126) at 2023-06-04 09:51 AM PDT -ExperimentsInHonesty,2023-06-04T18:06:43Z,- ExperimentsInHonesty commented on issue: [4770](https://github.com/hackforla/website/issues/4770#issuecomment-1575659941) at 2023-06-04 11:06 AM PDT -ExperimentsInHonesty,2023-06-04T18:36:36Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1575669216) at 2023-06-04 11:36 AM PDT -ExperimentsInHonesty,2023-06-04T18:49:38Z,- ExperimentsInHonesty commented on issue: [4707](https://github.com/hackforla/website/issues/4707#issuecomment-1575672350) at 2023-06-04 11:49 AM PDT -ExperimentsInHonesty,2023-06-04T18:50:04Z,- ExperimentsInHonesty closed issue as completed: [4707](https://github.com/hackforla/website/issues/4707#event-9425580388) at 2023-06-04 11:50 AM PDT -ExperimentsInHonesty,2023-06-04T18:50:15Z,- ExperimentsInHonesty closed issue as not planned: [4707](https://github.com/hackforla/website/issues/4707#event-9425580725) at 2023-06-04 11:50 AM PDT -ExperimentsInHonesty,2023-06-04T18:56:47Z,- ExperimentsInHonesty commented on issue: [4405](https://github.com/hackforla/website/issues/4405#issuecomment-1575674003) at 2023-06-04 11:56 AM PDT -ExperimentsInHonesty,2023-06-04T18:58:12Z,- ExperimentsInHonesty commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1575674721) at 2023-06-04 11:58 AM PDT -ExperimentsInHonesty,2023-06-04T19:14:38Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575679047) at 2023-06-04 12:14 PM PDT -ExperimentsInHonesty,2023-06-04T19:16:35Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575679729) at 2023-06-04 12:16 PM PDT -ExperimentsInHonesty,2023-06-04T19:47:37Z,- ExperimentsInHonesty commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-1575689404) at 2023-06-04 12:47 PM PDT -ExperimentsInHonesty,2023-06-04T19:47:37Z,- ExperimentsInHonesty closed issue as completed: [1686](https://github.com/hackforla/website/issues/1686#event-9425684837) at 2023-06-04 12:47 PM PDT -ExperimentsInHonesty,2023-06-04T21:40:36Z,- ExperimentsInHonesty commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575744162) at 2023-06-04 02:40 PM PDT -ExperimentsInHonesty,2023-06-04T21:58:48Z,- ExperimentsInHonesty commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575748515) at 2023-06-04 02:58 PM PDT -ExperimentsInHonesty,2023-06-04T22:11:52Z,- ExperimentsInHonesty commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575752838) at 2023-06-04 03:11 PM PDT -ExperimentsInHonesty,2023-06-06T00:50:42Z,- ExperimentsInHonesty commented on issue: [4785](https://github.com/hackforla/website/issues/4785#issuecomment-1577737413) at 2023-06-05 05:50 PM PDT -ExperimentsInHonesty,2023-06-06T01:34:30Z,- ExperimentsInHonesty commented on issue: [4564](https://github.com/hackforla/website/issues/4564#issuecomment-1577763926) at 2023-06-05 06:34 PM PDT -ExperimentsInHonesty,2023-06-06T01:56:24Z,- ExperimentsInHonesty commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1577775606) at 2023-06-05 06:56 PM PDT -ExperimentsInHonesty,2023-06-11T15:42:55Z,- ExperimentsInHonesty commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1586218869) at 2023-06-11 08:42 AM PDT -ExperimentsInHonesty,2023-06-11T15:48:46Z,- ExperimentsInHonesty commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1586221219) at 2023-06-11 08:48 AM PDT -ExperimentsInHonesty,2023-06-11T15:58:33Z,- ExperimentsInHonesty commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1586226100) at 2023-06-11 08:58 AM PDT -ExperimentsInHonesty,2023-06-11T16:29:39Z,- ExperimentsInHonesty commented on issue: [4787](https://github.com/hackforla/website/issues/4787#issuecomment-1586239364) at 2023-06-11 09:29 AM PDT -ExperimentsInHonesty,2023-06-11T16:47:54Z,- ExperimentsInHonesty commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1586244643) at 2023-06-11 09:47 AM PDT -ExperimentsInHonesty,2023-06-11T16:57:42Z,- ExperimentsInHonesty commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1586246785) at 2023-06-11 09:57 AM PDT -ExperimentsInHonesty,2023-06-11T17:06:25Z,- ExperimentsInHonesty submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1473762350) at 2023-06-11 10:06 AM PDT -ExperimentsInHonesty,2023-06-11T17:09:30Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1586250052) at 2023-06-11 10:09 AM PDT -ExperimentsInHonesty,2023-06-11T17:16:25Z,- ExperimentsInHonesty commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1586253209) at 2023-06-11 10:16 AM PDT -ExperimentsInHonesty,2023-06-11T17:42:35Z,- ExperimentsInHonesty commented on issue: [4795](https://github.com/hackforla/website/issues/4795#issuecomment-1586259122) at 2023-06-11 10:42 AM PDT -ExperimentsInHonesty,2023-06-11T17:43:10Z,- ExperimentsInHonesty closed issue as not planned: [4795](https://github.com/hackforla/website/issues/4795#event-9494943221) at 2023-06-11 10:43 AM PDT -ExperimentsInHonesty,2023-06-11T17:55:22Z,- ExperimentsInHonesty commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586262316) at 2023-06-11 10:55 AM PDT -ExperimentsInHonesty,2023-06-11T18:53:28Z,- ExperimentsInHonesty commented on issue: [2740](https://github.com/hackforla/website/issues/2740#issuecomment-1586292383) at 2023-06-11 11:53 AM PDT -ExperimentsInHonesty,2023-06-11T18:59:59Z,- ExperimentsInHonesty commented on issue: [2740](https://github.com/hackforla/website/issues/2740#issuecomment-1586293788) at 2023-06-11 11:59 AM PDT -ExperimentsInHonesty,2023-06-13T00:10:05Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588275782) at 2023-06-12 05:10 PM PDT -ExperimentsInHonesty,2023-06-13T00:24:06Z,- ExperimentsInHonesty commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-1588286233) at 2023-06-12 05:24 PM PDT -ExperimentsInHonesty,2023-06-13T01:29:47Z,- ExperimentsInHonesty commented on issue: [4704](https://github.com/hackforla/website/issues/4704#issuecomment-1588370872) at 2023-06-12 06:29 PM PDT -ExperimentsInHonesty,2023-06-18T16:05:33Z,- ExperimentsInHonesty commented on issue: [4782](https://github.com/hackforla/website/issues/4782#issuecomment-1596192894) at 2023-06-18 09:05 AM PDT -ExperimentsInHonesty,2023-06-18T16:09:07Z,- ExperimentsInHonesty commented on issue: [4784](https://github.com/hackforla/website/issues/4784#issuecomment-1596193602) at 2023-06-18 09:09 AM PDT -ExperimentsInHonesty,2023-06-18T16:58:06Z,- ExperimentsInHonesty commented on issue: [4469](https://github.com/hackforla/website/issues/4469#issuecomment-1596207225) at 2023-06-18 09:58 AM PDT -ExperimentsInHonesty,2023-06-18T17:10:46Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1596211325) at 2023-06-18 10:10 AM PDT -ExperimentsInHonesty,2023-06-18T18:50:31Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1596235976) at 2023-06-18 11:50 AM PDT -ExperimentsInHonesty,2023-06-20T01:11:32Z,- ExperimentsInHonesty closed issue as completed: [4781](https://github.com/hackforla/website/issues/4781#event-9573652706) at 2023-06-19 06:11 PM PDT -ExperimentsInHonesty,2023-06-22T13:57:24Z,- ExperimentsInHonesty opened issue: [4873](https://github.com/hackforla/website/issues/4873) at 2023-06-22 06:57 AM PDT -ExperimentsInHonesty,2023-06-22T13:57:47Z,- ExperimentsInHonesty assigned to issue: [4873](https://github.com/hackforla/website/issues/4873) at 2023-06-22 06:57 AM PDT -ExperimentsInHonesty,2023-06-23T17:17:52Z,- ExperimentsInHonesty assigned to issue: [4874](https://github.com/hackforla/website/issues/4874) at 2023-06-23 10:17 AM PDT -ExperimentsInHonesty,2023-06-25T16:12:17Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1606146438) at 2023-06-25 09:12 AM PDT -ExperimentsInHonesty,2023-06-25T16:51:54Z,- ExperimentsInHonesty commented on issue: [4874](https://github.com/hackforla/website/issues/4874#issuecomment-1606155521) at 2023-06-25 09:51 AM PDT -ExperimentsInHonesty,2023-06-25T16:51:58Z,- ExperimentsInHonesty closed issue as completed: [4874](https://github.com/hackforla/website/issues/4874#event-9630273655) at 2023-06-25 09:51 AM PDT -ExperimentsInHonesty,2023-06-25T16:54:45Z,- ExperimentsInHonesty closed issue as completed: [4873](https://github.com/hackforla/website/issues/4873#event-9630278392) at 2023-06-25 09:54 AM PDT -ExperimentsInHonesty,2023-06-26T23:51:00Z,- ExperimentsInHonesty commented on issue: [4857](https://github.com/hackforla/website/issues/4857#issuecomment-1608479810) at 2023-06-26 04:51 PM PDT -ExperimentsInHonesty,2023-06-26T23:51:00Z,- ExperimentsInHonesty closed issue as completed: [4857](https://github.com/hackforla/website/issues/4857#event-9645275525) at 2023-06-26 04:51 PM PDT -ExperimentsInHonesty,2023-06-27T00:15:27Z,- ExperimentsInHonesty commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1608512542) at 2023-06-26 05:15 PM PDT -ExperimentsInHonesty,2023-06-27T01:27:27Z,- ExperimentsInHonesty commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1608566987) at 2023-06-26 06:27 PM PDT -ExperimentsInHonesty,2023-06-27T01:39:39Z,- ExperimentsInHonesty commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1608575872) at 2023-06-26 06:39 PM PDT -ExperimentsInHonesty,2023-06-27T01:52:06Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1608583462) at 2023-06-26 06:52 PM PDT -ExperimentsInHonesty,2023-06-27T01:53:49Z,- ExperimentsInHonesty commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1608584916) at 2023-06-26 06:53 PM PDT -ExperimentsInHonesty,2023-06-27T01:56:44Z,- ExperimentsInHonesty commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1608587496) at 2023-06-26 06:56 PM PDT -ExperimentsInHonesty,2023-07-02T16:27:56Z,- ExperimentsInHonesty commented on issue: [4903](https://github.com/hackforla/website/issues/4903#issuecomment-1616720980) at 2023-07-02 09:27 AM PDT -ExperimentsInHonesty,2023-07-02T16:28:45Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1616721949) at 2023-07-02 09:28 AM PDT -ExperimentsInHonesty,2023-07-02T16:28:45Z,- ExperimentsInHonesty reopened issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1616721949) at 2023-07-02 09:28 AM PDT -ExperimentsInHonesty,2023-07-02T16:44:41Z,- ExperimentsInHonesty commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1616728149) at 2023-07-02 09:44 AM PDT -ExperimentsInHonesty,2023-07-02T16:54:28Z,- ExperimentsInHonesty commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1616730166) at 2023-07-02 09:54 AM PDT -ExperimentsInHonesty,2023-07-02T17:51:52Z,- ExperimentsInHonesty opened issue: [4907](https://github.com/hackforla/website/issues/4907) at 2023-07-02 10:51 AM PDT -ExperimentsInHonesty,2023-07-02T17:52:20Z,- ExperimentsInHonesty assigned to issue: [4907](https://github.com/hackforla/website/issues/4907) at 2023-07-02 10:52 AM PDT -ExperimentsInHonesty,2023-07-02T18:09:08Z,- ExperimentsInHonesty commented on issue: [4492](https://github.com/hackforla/website/issues/4492#issuecomment-1616756533) at 2023-07-02 11:09 AM PDT -ExperimentsInHonesty,2023-07-02T18:09:50Z,- ExperimentsInHonesty commented on issue: [4407](https://github.com/hackforla/website/issues/4407#issuecomment-1616756649) at 2023-07-02 11:09 AM PDT -ExperimentsInHonesty,2023-07-02T18:09:51Z,- ExperimentsInHonesty closed issue as completed: [4407](https://github.com/hackforla/website/issues/4407#event-9700816351) at 2023-07-02 11:09 AM PDT -ExperimentsInHonesty,2023-07-04T00:59:58Z,- ExperimentsInHonesty commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1619312877) at 2023-07-03 05:59 PM PDT -ExperimentsInHonesty,2023-07-04T01:01:48Z,- ExperimentsInHonesty commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1619313846) at 2023-07-03 06:01 PM PDT -ExperimentsInHonesty,2023-07-04T01:47:45Z,- ExperimentsInHonesty commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1619343987) at 2023-07-03 06:47 PM PDT -ExperimentsInHonesty,2023-07-11T00:39:11Z,- ExperimentsInHonesty commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1629923279) at 2023-07-10 05:39 PM PDT -ExperimentsInHonesty,2023-07-11T00:43:32Z,- ExperimentsInHonesty opened issue: [4932](https://github.com/hackforla/website/issues/4932) at 2023-07-10 05:43 PM PDT -ExperimentsInHonesty,2023-07-11T00:43:32Z,- ExperimentsInHonesty assigned to issue: [4932](https://github.com/hackforla/website/issues/4932) at 2023-07-10 05:43 PM PDT -ExperimentsInHonesty,2023-07-12T02:32:36Z,- ExperimentsInHonesty commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1631760951) at 2023-07-11 07:32 PM PDT -ExperimentsInHonesty,2023-07-16T16:27:25Z,- ExperimentsInHonesty unassigned from issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2023-07-16 09:27 AM PDT -ExperimentsInHonesty,2023-07-16T16:29:10Z,- ExperimentsInHonesty unassigned from issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2023-07-16 09:29 AM PDT -ExperimentsInHonesty,2023-07-16T16:36:10Z,- ExperimentsInHonesty commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1637134254) at 2023-07-16 09:36 AM PDT -ExperimentsInHonesty,2023-07-16T16:39:22Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1637134823) at 2023-07-16 09:39 AM PDT -ExperimentsInHonesty,2023-07-16T17:24:09Z,- ExperimentsInHonesty commented on issue: [3549](https://github.com/hackforla/website/issues/3549#issuecomment-1637144487) at 2023-07-16 10:24 AM PDT -ExperimentsInHonesty,2023-07-16T17:40:09Z,- ExperimentsInHonesty commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1637147606) at 2023-07-16 10:40 AM PDT -ExperimentsInHonesty,2023-07-16T17:40:11Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1637147615) at 2023-07-16 10:40 AM PDT -ExperimentsInHonesty,2023-07-16T17:47:29Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1637150223) at 2023-07-16 10:47 AM PDT -ExperimentsInHonesty,2023-07-18T00:10:26Z,- ExperimentsInHonesty commented on issue: [4938](https://github.com/hackforla/website/issues/4938#issuecomment-1639062515) at 2023-07-17 05:10 PM PDT -ExperimentsInHonesty,2023-07-18T00:10:33Z,- ExperimentsInHonesty closed issue as completed: [4938](https://github.com/hackforla/website/issues/4938#event-9843905541) at 2023-07-17 05:10 PM PDT -ExperimentsInHonesty,2023-07-18T00:10:39Z,- ExperimentsInHonesty closed issue as not planned: [4938](https://github.com/hackforla/website/issues/4938#event-9843906872) at 2023-07-17 05:10 PM PDT -ExperimentsInHonesty,2023-07-18T00:22:15Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1639077809) at 2023-07-17 05:22 PM PDT -ExperimentsInHonesty,2023-07-18T00:54:03Z,- ExperimentsInHonesty commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1639112562) at 2023-07-17 05:54 PM PDT -ExperimentsInHonesty,2023-07-23T16:35:29Z,- ExperimentsInHonesty commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1646884594) at 2023-07-23 09:35 AM PDT -ExperimentsInHonesty,2023-07-23T16:54:04Z,- ExperimentsInHonesty commented on issue: [4985](https://github.com/hackforla/website/issues/4985#issuecomment-1646889592) at 2023-07-23 09:54 AM PDT -ExperimentsInHonesty,2023-07-23T18:54:29Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-1646931151) at 2023-07-23 11:54 AM PDT -ExperimentsInHonesty,2023-07-23T19:28:10Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1646940101) at 2023-07-23 12:28 PM PDT -ExperimentsInHonesty,2023-07-23T19:38:30Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-1646942709) at 2023-07-23 12:38 PM PDT -ExperimentsInHonesty,2023-07-25T00:55:34Z,- ExperimentsInHonesty commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1648812159) at 2023-07-24 05:55 PM PDT -ExperimentsInHonesty,2023-07-26T04:47:32Z,- ExperimentsInHonesty commented on issue: [5060](https://github.com/hackforla/website/issues/5060#issuecomment-1650974185) at 2023-07-25 09:47 PM PDT -ExperimentsInHonesty,2023-07-26T04:50:08Z,- ExperimentsInHonesty commented on issue: [5005](https://github.com/hackforla/website/issues/5005#issuecomment-1650976056) at 2023-07-25 09:50 PM PDT -ExperimentsInHonesty,2023-07-26T22:20:46Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1652605476) at 2023-07-26 03:20 PM PDT -ExperimentsInHonesty,2023-07-26T22:53:02Z,- ExperimentsInHonesty opened issue: [5098](https://github.com/hackforla/website/issues/5098) at 2023-07-26 03:53 PM PDT -ExperimentsInHonesty,2023-07-26T22:56:42Z,- ExperimentsInHonesty commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1652651437) at 2023-07-26 03:56 PM PDT -ExperimentsInHonesty,2023-07-26T22:56:42Z,- ExperimentsInHonesty closed issue as completed: [4151](https://github.com/hackforla/website/issues/4151#event-9929562731) at 2023-07-26 03:56 PM PDT -ExperimentsInHonesty,2023-07-30T15:33:06Z,- ExperimentsInHonesty commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1657202377) at 2023-07-30 08:33 AM PDT -ExperimentsInHonesty,2023-07-30T15:44:50Z,- ExperimentsInHonesty commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1657204952) at 2023-07-30 08:44 AM PDT -ExperimentsInHonesty,2023-07-30T15:58:24Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1657207814) at 2023-07-30 08:58 AM PDT -ExperimentsInHonesty,2023-07-30T16:45:42Z,- ExperimentsInHonesty commented on issue: [4660](https://github.com/hackforla/website/issues/4660#issuecomment-1657217412) at 2023-07-30 09:45 AM PDT -ExperimentsInHonesty,2023-07-30T16:45:42Z,- ExperimentsInHonesty closed issue as completed: [4660](https://github.com/hackforla/website/issues/4660#event-9957066140) at 2023-07-30 09:45 AM PDT -ExperimentsInHonesty,2023-07-30T16:50:34Z,- ExperimentsInHonesty opened issue: [5115](https://github.com/hackforla/website/issues/5115) at 2023-07-30 09:50 AM PDT -ExperimentsInHonesty,2023-08-04T00:45:44Z,- ExperimentsInHonesty commented on issue: [4799](https://github.com/hackforla/website/issues/4799#issuecomment-1664818625) at 2023-08-03 05:45 PM PDT -ExperimentsInHonesty,2023-08-06T16:31:26Z,- ExperimentsInHonesty commented on issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666913046) at 2023-08-06 09:31 AM PDT -ExperimentsInHonesty,2023-08-06T16:34:07Z,- ExperimentsInHonesty commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1666913763) at 2023-08-06 09:34 AM PDT -ExperimentsInHonesty,2023-08-06T16:40:05Z,- ExperimentsInHonesty commented on issue: [5132](https://github.com/hackforla/website/issues/5132#issuecomment-1666915240) at 2023-08-06 09:40 AM PDT -ExperimentsInHonesty,2023-08-06T16:43:39Z,- ExperimentsInHonesty commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1666916314) at 2023-08-06 09:43 AM PDT -ExperimentsInHonesty,2023-08-06T16:44:59Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1666916643) at 2023-08-06 09:44 AM PDT -ExperimentsInHonesty,2023-08-06T16:54:02Z,- ExperimentsInHonesty opened issue: [5151](https://github.com/hackforla/website/issues/5151) at 2023-08-06 09:54 AM PDT -ExperimentsInHonesty,2023-08-06T18:50:26Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1666943325) at 2023-08-06 11:50 AM PDT -ExperimentsInHonesty,2023-08-07T02:18:47Z,- ExperimentsInHonesty commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1667089040) at 2023-08-06 07:18 PM PDT -ExperimentsInHonesty,2023-08-08T00:26:56Z,- ExperimentsInHonesty closed issue as completed: [3830](https://github.com/hackforla/website/issues/3830#event-10029720265) at 2023-08-07 05:26 PM PDT -ExperimentsInHonesty,2023-08-08T00:47:01Z,- ExperimentsInHonesty commented on issue: [5146](https://github.com/hackforla/website/issues/5146#issuecomment-1668751998) at 2023-08-07 05:47 PM PDT -ExperimentsInHonesty,2023-08-08T00:57:01Z,- ExperimentsInHonesty commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1668757958) at 2023-08-07 05:57 PM PDT -ExperimentsInHonesty,2023-08-09T15:28:18Z,- ExperimentsInHonesty opened issue: [5167](https://github.com/hackforla/website/issues/5167) at 2023-08-09 08:28 AM PDT -ExperimentsInHonesty,2023-08-09T15:47:39Z,- ExperimentsInHonesty commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1671661728) at 2023-08-09 08:47 AM PDT -ExperimentsInHonesty,2023-08-13T16:55:14Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1676411860) at 2023-08-13 09:55 AM PDT -ExperimentsInHonesty,2023-08-13T19:10:10Z,- ExperimentsInHonesty commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1676439366) at 2023-08-13 12:10 PM PDT -ExperimentsInHonesty,2023-08-13T19:17:40Z,- ExperimentsInHonesty commented on issue: [4805](https://github.com/hackforla/website/issues/4805#issuecomment-1676440789) at 2023-08-13 12:17 PM PDT -ExperimentsInHonesty,2023-08-13T19:20:05Z,- ExperimentsInHonesty commented on issue: [4913](https://github.com/hackforla/website/issues/4913#issuecomment-1676441392) at 2023-08-13 12:20 PM PDT -ExperimentsInHonesty,2023-08-13T19:24:40Z,- ExperimentsInHonesty commented on issue: [4800](https://github.com/hackforla/website/issues/4800#issuecomment-1676442480) at 2023-08-13 12:24 PM PDT -ExperimentsInHonesty,2023-08-13T19:32:14Z,- ExperimentsInHonesty commented on issue: [4807](https://github.com/hackforla/website/issues/4807#issuecomment-1676444067) at 2023-08-13 12:32 PM PDT -ExperimentsInHonesty,2023-08-13T19:35:04Z,- ExperimentsInHonesty commented on issue: [4806](https://github.com/hackforla/website/issues/4806#issuecomment-1676444558) at 2023-08-13 12:35 PM PDT -ExperimentsInHonesty,2023-08-13T19:37:28Z,- ExperimentsInHonesty commented on issue: [4798](https://github.com/hackforla/website/issues/4798#issuecomment-1676445018) at 2023-08-13 12:37 PM PDT -ExperimentsInHonesty,2023-08-13T19:43:46Z,- ExperimentsInHonesty commented on issue: [4813](https://github.com/hackforla/website/issues/4813#issuecomment-1676446208) at 2023-08-13 12:43 PM PDT -ExperimentsInHonesty,2023-08-13T19:48:44Z,- ExperimentsInHonesty commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1676447353) at 2023-08-13 12:48 PM PDT -ExperimentsInHonesty,2023-08-13T19:48:54Z,- ExperimentsInHonesty commented on issue: [4924](https://github.com/hackforla/website/issues/4924#issuecomment-1676447392) at 2023-08-13 12:48 PM PDT -ExperimentsInHonesty,2023-08-13T19:49:40Z,- ExperimentsInHonesty commented on issue: [4594](https://github.com/hackforla/website/issues/4594#issuecomment-1676447544) at 2023-08-13 12:49 PM PDT -ExperimentsInHonesty,2023-08-13T19:53:14Z,- ExperimentsInHonesty commented on issue: [4939](https://github.com/hackforla/website/issues/4939#issuecomment-1676448291) at 2023-08-13 12:53 PM PDT -ExperimentsInHonesty,2023-08-13T20:37:20Z,- ExperimentsInHonesty commented on issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1676457241) at 2023-08-13 01:37 PM PDT -ExperimentsInHonesty,2023-08-13T20:37:22Z,- ExperimentsInHonesty reopened issue: [4248](https://github.com/hackforla/website/issues/4248#issuecomment-1676457241) at 2023-08-13 01:37 PM PDT -ExperimentsInHonesty,2023-08-13T21:28:26Z,- ExperimentsInHonesty commented on issue: [4484](https://github.com/hackforla/website/issues/4484#issuecomment-1676467250) at 2023-08-13 02:28 PM PDT -ExperimentsInHonesty,2023-08-13T21:36:09Z,- ExperimentsInHonesty commented on issue: [4480](https://github.com/hackforla/website/issues/4480#issuecomment-1676468790) at 2023-08-13 02:36 PM PDT -ExperimentsInHonesty,2023-08-13T21:44:06Z,- ExperimentsInHonesty commented on issue: [4914](https://github.com/hackforla/website/issues/4914#issuecomment-1676470225) at 2023-08-13 02:44 PM PDT -ExperimentsInHonesty,2023-08-13T22:52:36Z,- ExperimentsInHonesty opened issue: [5195](https://github.com/hackforla/website/issues/5195) at 2023-08-13 03:52 PM PDT -ExperimentsInHonesty,2023-08-13T23:16:50Z,- ExperimentsInHonesty commented on issue: [4895](https://github.com/hackforla/website/issues/4895#issuecomment-1676490918) at 2023-08-13 04:16 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:06Z,- ExperimentsInHonesty commented on issue: [4894](https://github.com/hackforla/website/issues/4894#issuecomment-1676491182) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:18Z,- ExperimentsInHonesty commented on issue: [4893](https://github.com/hackforla/website/issues/4893#issuecomment-1676491229) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:26Z,- ExperimentsInHonesty commented on issue: [4892](https://github.com/hackforla/website/issues/4892#issuecomment-1676491250) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:18:49Z,- ExperimentsInHonesty commented on issue: [4891](https://github.com/hackforla/website/issues/4891#issuecomment-1676491320) at 2023-08-13 04:18 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:03Z,- ExperimentsInHonesty commented on issue: [4779](https://github.com/hackforla/website/issues/4779#issuecomment-1676491365) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:14Z,- ExperimentsInHonesty commented on issue: [4797](https://github.com/hackforla/website/issues/4797#issuecomment-1676491408) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:38Z,- ExperimentsInHonesty commented on issue: [4766](https://github.com/hackforla/website/issues/4766#issuecomment-1676491485) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:19:54Z,- ExperimentsInHonesty commented on issue: [4765](https://github.com/hackforla/website/issues/4765#issuecomment-1676491545) at 2023-08-13 04:19 PM PDT -ExperimentsInHonesty,2023-08-13T23:33:05Z,- ExperimentsInHonesty commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1676495117) at 2023-08-13 04:33 PM PDT -ExperimentsInHonesty,2023-08-27T17:13:47Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1694717822) at 2023-08-27 10:13 AM PDT -ExperimentsInHonesty,2023-08-27T17:57:33Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1694726155) at 2023-08-27 10:57 AM PDT -ExperimentsInHonesty,2023-08-27T18:06:39Z,- ExperimentsInHonesty commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1694727875) at 2023-08-27 11:06 AM PDT -ExperimentsInHonesty,2023-09-01T18:38:22Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1703178647) at 2023-09-01 11:38 AM PDT -ExperimentsInHonesty,2023-09-01T18:46:03Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1703186729) at 2023-09-01 11:46 AM PDT -ExperimentsInHonesty,2023-09-01T19:24:33Z,- ExperimentsInHonesty commented on issue: [1900](https://github.com/hackforla/website/issues/1900#issuecomment-1703227282) at 2023-09-01 12:24 PM PDT -ExperimentsInHonesty,2023-09-05T19:33:46Z,- ExperimentsInHonesty commented on issue: [5411](https://github.com/hackforla/website/issues/5411#issuecomment-1707202389) at 2023-09-05 12:33 PM PDT -ExperimentsInHonesty,2023-09-05T20:00:21Z,- ExperimentsInHonesty commented on issue: [5410](https://github.com/hackforla/website/issues/5410#issuecomment-1707233483) at 2023-09-05 01:00 PM PDT -ExperimentsInHonesty,2023-09-05T20:08:17Z,- ExperimentsInHonesty commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1707242755) at 2023-09-05 01:08 PM PDT -ExperimentsInHonesty,2023-09-05T20:12:28Z,- ExperimentsInHonesty commented on issue: [5403](https://github.com/hackforla/website/issues/5403#issuecomment-1707248855) at 2023-09-05 01:12 PM PDT -ExperimentsInHonesty,2023-09-05T20:23:32Z,- ExperimentsInHonesty commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1707261592) at 2023-09-05 01:23 PM PDT -ExperimentsInHonesty,2023-09-05T20:25:41Z,- ExperimentsInHonesty commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1707263980) at 2023-09-05 01:25 PM PDT -ExperimentsInHonesty,2023-09-05T20:45:42Z,- ExperimentsInHonesty commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1707288362) at 2023-09-05 01:45 PM PDT -ExperimentsInHonesty,2023-09-05T20:51:15Z,- ExperimentsInHonesty commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1707294204) at 2023-09-05 01:51 PM PDT -ExperimentsInHonesty,2023-09-05T20:56:23Z,- ExperimentsInHonesty commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1707299675) at 2023-09-05 01:56 PM PDT -ExperimentsInHonesty,2023-09-10T17:15:30Z,- ExperimentsInHonesty commented on issue: [5171](https://github.com/hackforla/website/issues/5171#issuecomment-1712882377) at 2023-09-10 10:15 AM PDT -ExperimentsInHonesty,2023-09-10T17:16:49Z,- ExperimentsInHonesty commented on issue: [5177](https://github.com/hackforla/website/issues/5177#issuecomment-1712882689) at 2023-09-10 10:16 AM PDT -ExperimentsInHonesty,2023-09-10T17:17:07Z,- ExperimentsInHonesty commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1712882887) at 2023-09-10 10:17 AM PDT -ExperimentsInHonesty,2023-09-10T18:00:17Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1712898192) at 2023-09-10 11:00 AM PDT -ExperimentsInHonesty,2023-09-10T18:04:58Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1712899041) at 2023-09-10 11:04 AM PDT -ExperimentsInHonesty,2023-09-17T18:01:36Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1722531668) at 2023-09-17 11:01 AM PDT -ExperimentsInHonesty,2023-09-17T18:05:32Z,- ExperimentsInHonesty commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1722532412) at 2023-09-17 11:05 AM PDT -ExperimentsInHonesty,2023-09-17T18:05:33Z,- ExperimentsInHonesty closed issue as completed: [3139](https://github.com/hackforla/website/issues/3139#event-10391768930) at 2023-09-17 11:05 AM PDT -ExperimentsInHonesty,2023-09-17T18:28:36Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1722536912) at 2023-09-17 11:28 AM PDT -ExperimentsInHonesty,2023-09-24T16:23:21Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1732612849) at 2023-09-24 09:23 AM PDT -ExperimentsInHonesty,2023-09-24T16:25:39Z,- ExperimentsInHonesty commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1732613359) at 2023-09-24 09:25 AM PDT -ExperimentsInHonesty,2023-09-24T16:26:03Z,- ExperimentsInHonesty commented on issue: [5528](https://github.com/hackforla/website/issues/5528#issuecomment-1732613445) at 2023-09-24 09:26 AM PDT -ExperimentsInHonesty,2023-09-24T16:51:43Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1732618558) at 2023-09-24 09:51 AM PDT -ExperimentsInHonesty,2023-09-26T00:36:53Z,- ExperimentsInHonesty commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1734650107) at 2023-09-25 05:36 PM PDT -ExperimentsInHonesty,2023-09-26T00:48:06Z,- ExperimentsInHonesty commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1734661979) at 2023-09-25 05:48 PM PDT -ExperimentsInHonesty,2023-09-26T01:15:28Z,- ExperimentsInHonesty commented on issue: [5325](https://github.com/hackforla/website/issues/5325#issuecomment-1734683557) at 2023-09-25 06:15 PM PDT -ExperimentsInHonesty,2023-09-26T01:15:28Z,- ExperimentsInHonesty closed issue as completed: [5325](https://github.com/hackforla/website/issues/5325#event-10468910535) at 2023-09-25 06:15 PM PDT -ExperimentsInHonesty,2023-09-26T15:54:28Z,- ExperimentsInHonesty opened issue: [5592](https://github.com/hackforla/website/issues/5592) at 2023-09-26 08:54 AM PDT -ExperimentsInHonesty,2023-09-26T15:56:08Z,- ExperimentsInHonesty assigned to issue: [5592](https://github.com/hackforla/website/issues/5592) at 2023-09-26 08:56 AM PDT -ExperimentsInHonesty,2023-10-01T16:12:34Z,- ExperimentsInHonesty commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1742127472) at 2023-10-01 09:12 AM PDT -ExperimentsInHonesty,2023-10-01T16:27:43Z,- ExperimentsInHonesty commented on issue: [5639](https://github.com/hackforla/website/issues/5639#issuecomment-1742131119) at 2023-10-01 09:27 AM PDT -ExperimentsInHonesty,2023-10-01T17:53:22Z,- ExperimentsInHonesty commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1742152551) at 2023-10-01 10:53 AM PDT -ExperimentsInHonesty,2023-10-01T18:06:19Z,- ExperimentsInHonesty commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1742155759) at 2023-10-01 11:06 AM PDT -ExperimentsInHonesty,2023-10-02T22:55:35Z,- ExperimentsInHonesty commented on issue: [5165](https://github.com/hackforla/website/issues/5165#issuecomment-1743883857) at 2023-10-02 03:55 PM PDT -ExperimentsInHonesty,2023-10-02T23:09:46Z,- ExperimentsInHonesty commented on issue: [5642](https://github.com/hackforla/website/issues/5642#issuecomment-1743898049) at 2023-10-02 04:09 PM PDT -ExperimentsInHonesty,2023-10-02T23:13:16Z,- ExperimentsInHonesty commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1743900894) at 2023-10-02 04:13 PM PDT -ExperimentsInHonesty,2023-10-02T23:52:51Z,- ExperimentsInHonesty commented on issue: [5622](https://github.com/hackforla/website/issues/5622#issuecomment-1743934323) at 2023-10-02 04:52 PM PDT -ExperimentsInHonesty,2023-10-03T14:48:59Z,- ExperimentsInHonesty commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1745138050) at 2023-10-03 07:48 AM PDT -ExperimentsInHonesty,2023-10-08T16:22:17Z,- ExperimentsInHonesty commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1752097750) at 2023-10-08 09:22 AM PDT -ExperimentsInHonesty,2023-10-08T16:22:17Z,- ExperimentsInHonesty closed issue as completed: [4623](https://github.com/hackforla/website/issues/4623#event-10584530548) at 2023-10-08 09:22 AM PDT -ExperimentsInHonesty,2023-10-08T16:33:07Z,- ExperimentsInHonesty commented on issue: [4649](https://github.com/hackforla/website/issues/4649#issuecomment-1752100101) at 2023-10-08 09:33 AM PDT -ExperimentsInHonesty,2023-10-08T16:33:10Z,- ExperimentsInHonesty closed issue as completed: [4649](https://github.com/hackforla/website/issues/4649#event-10584578258) at 2023-10-08 09:33 AM PDT -ExperimentsInHonesty,2023-10-08T16:38:12Z,- ExperimentsInHonesty commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1752101167) at 2023-10-08 09:38 AM PDT -ExperimentsInHonesty,2023-10-08T16:57:45Z,- ExperimentsInHonesty commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1752105078) at 2023-10-08 09:57 AM PDT -ExperimentsInHonesty,2023-10-08T17:03:09Z,- ExperimentsInHonesty opened issue: [5677](https://github.com/hackforla/website/issues/5677) at 2023-10-08 10:03 AM PDT -ExperimentsInHonesty,2023-10-10T01:09:44Z,- ExperimentsInHonesty commented on issue: [4901](https://github.com/hackforla/website/issues/4901#issuecomment-1754153598) at 2023-10-09 06:09 PM PDT -ExperimentsInHonesty,2023-10-10T01:11:23Z,- ExperimentsInHonesty commented on issue: [4901](https://github.com/hackforla/website/issues/4901#issuecomment-1754154569) at 2023-10-09 06:11 PM PDT -ExperimentsInHonesty,2023-10-10T01:30:13Z,- ExperimentsInHonesty closed issue as completed: [4918](https://github.com/hackforla/website/issues/4918#event-10597549015) at 2023-10-09 06:30 PM PDT -ExperimentsInHonesty,2023-10-10T01:34:02Z,- ExperimentsInHonesty commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1754168019) at 2023-10-09 06:34 PM PDT -ExperimentsInHonesty,2023-10-10T01:52:10Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1754194788) at 2023-10-09 06:52 PM PDT -ExperimentsInHonesty,2023-10-10T01:54:04Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1754197048) at 2023-10-09 06:54 PM PDT -ExperimentsInHonesty,2023-10-10T01:56:52Z,- ExperimentsInHonesty commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1754200066) at 2023-10-09 06:56 PM PDT -ExperimentsInHonesty,2023-10-10T01:56:52Z,- ExperimentsInHonesty closed issue as completed: [4562](https://github.com/hackforla/website/issues/4562#event-10597696534) at 2023-10-09 06:56 PM PDT -ExperimentsInHonesty,2023-10-10T01:57:46Z,- ExperimentsInHonesty commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1754200941) at 2023-10-09 06:57 PM PDT -ExperimentsInHonesty,2023-10-17T00:06:31Z,- ExperimentsInHonesty commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1765453946) at 2023-10-16 05:06 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:39Z,- ExperimentsInHonesty commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1765459570) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:39Z,- ExperimentsInHonesty closed issue as completed: [2498](https://github.com/hackforla/website/issues/2498#event-10671823045) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:53Z,- ExperimentsInHonesty commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1765459747) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:13:54Z,- ExperimentsInHonesty closed issue as completed: [3040](https://github.com/hackforla/website/issues/3040#event-10671824295) at 2023-10-16 05:13 PM PDT -ExperimentsInHonesty,2023-10-17T00:36:41Z,- ExperimentsInHonesty commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1765476348) at 2023-10-16 05:36 PM PDT -ExperimentsInHonesty,2023-10-17T00:56:02Z,- ExperimentsInHonesty commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1765488579) at 2023-10-16 05:56 PM PDT -ExperimentsInHonesty,2023-10-20T15:04:48Z,- ExperimentsInHonesty opened issue: [5743](https://github.com/hackforla/website/issues/5743) at 2023-10-20 08:04 AM PDT -ExperimentsInHonesty,2023-10-20T15:08:20Z,- ExperimentsInHonesty commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1772919665) at 2023-10-20 08:08 AM PDT -ExperimentsInHonesty,2023-10-22T17:45:09Z,- ExperimentsInHonesty opened issue: [5758](https://github.com/hackforla/website/issues/5758) at 2023-10-22 10:45 AM PDT -ExperimentsInHonesty,2023-10-22T18:03:27Z,- ExperimentsInHonesty commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1774159530) at 2023-10-22 11:03 AM PDT -ExperimentsInHonesty,2023-10-22T18:08:13Z,- ExperimentsInHonesty commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-1774160739) at 2023-10-22 11:08 AM PDT -ExperimentsInHonesty,2023-10-24T01:12:11Z,- ExperimentsInHonesty commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1776306588) at 2023-10-23 06:12 PM PDT -ExperimentsInHonesty,2023-10-24T01:15:06Z,- ExperimentsInHonesty reopened issue: [5747](https://github.com/hackforla/website/issues/5747#event-10733084482) at 2023-10-23 06:15 PM PDT -ExperimentsInHonesty,2023-10-24T01:15:23Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-1776308841) at 2023-10-23 06:15 PM PDT -ExperimentsInHonesty,2023-10-24T01:53:40Z,- ExperimentsInHonesty commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1776360465) at 2023-10-23 06:53 PM PDT -ExperimentsInHonesty,2023-10-24T03:10:27Z,- ExperimentsInHonesty commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1776430622) at 2023-10-23 08:10 PM PDT -ExperimentsInHonesty,2023-10-29T16:39:48Z,- ExperimentsInHonesty commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1784162359) at 2023-10-29 09:39 AM PDT -ExperimentsInHonesty,2023-10-29T16:45:52Z,- ExperimentsInHonesty commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1784164013) at 2023-10-29 09:45 AM PDT -ExperimentsInHonesty,2023-10-31T01:40:50Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786302078) at 2023-10-30 06:40 PM PDT -ExperimentsInHonesty,2023-10-31T01:41:52Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786302732) at 2023-10-30 06:41 PM PDT -ExperimentsInHonesty,2023-10-31T01:42:36Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786303203) at 2023-10-30 06:42 PM PDT -ExperimentsInHonesty,2023-10-31T01:52:52Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786311641) at 2023-10-30 06:52 PM PDT -ExperimentsInHonesty,2023-10-31T01:57:37Z,- ExperimentsInHonesty commented on issue: [5813](https://github.com/hackforla/website/issues/5813#issuecomment-1786314988) at 2023-10-30 06:57 PM PDT -ExperimentsInHonesty,2023-10-31T01:57:46Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786315086) at 2023-10-30 06:57 PM PDT -ExperimentsInHonesty,2023-10-31T02:28:33Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-1786338632) at 2023-10-30 07:28 PM PDT -ExperimentsInHonesty,2023-11-03T16:51:41Z,- ExperimentsInHonesty commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1792799986) at 2023-11-03 09:51 AM PDT -ExperimentsInHonesty,2023-11-03T16:55:26Z,- ExperimentsInHonesty commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1792805332) at 2023-11-03 09:55 AM PDT -ExperimentsInHonesty,2023-11-03T17:00:17Z,- ExperimentsInHonesty commented on issue: [5824](https://github.com/hackforla/website/issues/5824#issuecomment-1792812866) at 2023-11-03 10:00 AM PDT -ExperimentsInHonesty,2023-11-03T17:14:23Z,- ExperimentsInHonesty commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1792833226) at 2023-11-03 10:14 AM PDT -ExperimentsInHonesty,2023-11-03T17:29:40Z,- ExperimentsInHonesty commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1792855194) at 2023-11-03 10:29 AM PDT -ExperimentsInHonesty,2023-11-03T17:44:06Z,- ExperimentsInHonesty commented on issue: [4909](https://github.com/hackforla/website/issues/4909#issuecomment-1792874928) at 2023-11-03 10:44 AM PDT -ExperimentsInHonesty,2023-11-03T18:13:19Z,- ExperimentsInHonesty commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792915165) at 2023-11-03 11:13 AM PDT -ExperimentsInHonesty,2023-11-03T18:22:47Z,- ExperimentsInHonesty commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1792930599) at 2023-11-03 11:22 AM PDT -ExperimentsInHonesty,2023-11-06T18:30:12Z,- ExperimentsInHonesty commented on issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1795855938) at 2023-11-06 10:30 AM PST -ExperimentsInHonesty,2023-11-06T18:34:09Z,- ExperimentsInHonesty commented on issue: [5696](https://github.com/hackforla/website/issues/5696#issuecomment-1795881435) at 2023-11-06 10:34 AM PST -ExperimentsInHonesty,2023-11-06T18:44:30Z,- ExperimentsInHonesty commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1795909848) at 2023-11-06 10:44 AM PST -ExperimentsInHonesty,2023-11-06T20:00:55Z,- ExperimentsInHonesty commented on issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1796293621) at 2023-11-06 12:00 PM PST -ExperimentsInHonesty,2023-11-06T21:02:53Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1796429136) at 2023-11-06 01:02 PM PST -ExperimentsInHonesty,2023-11-06T21:07:16Z,- ExperimentsInHonesty commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-1796454453) at 2023-11-06 01:07 PM PST -ExperimentsInHonesty,2023-11-06T21:31:34Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1796524281) at 2023-11-06 01:31 PM PST -ExperimentsInHonesty,2023-11-07T02:34:56Z,- ExperimentsInHonesty commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1797317918) at 2023-11-06 06:34 PM PST -ExperimentsInHonesty,2023-11-07T22:58:51Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1800335792) at 2023-11-07 02:58 PM PST -ExperimentsInHonesty,2023-11-07T23:24:27Z,- ExperimentsInHonesty commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1800404637) at 2023-11-07 03:24 PM PST -ExperimentsInHonesty,2023-11-07T23:56:08Z,- ExperimentsInHonesty commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1800466574) at 2023-11-07 03:56 PM PST -ExperimentsInHonesty,2023-11-08T00:08:28Z,- ExperimentsInHonesty commented on issue: [4368](https://github.com/hackforla/website/issues/4368#issuecomment-1800617590) at 2023-11-07 04:08 PM PST -ExperimentsInHonesty,2023-11-08T00:15:53Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1800686279) at 2023-11-07 04:15 PM PST -ExperimentsInHonesty,2023-11-08T00:38:09Z,- ExperimentsInHonesty commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-1800747526) at 2023-11-07 04:38 PM PST -ExperimentsInHonesty,2023-11-08T00:47:44Z,- ExperimentsInHonesty commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1800802546) at 2023-11-07 04:47 PM PST -ExperimentsInHonesty,2023-11-08T00:55:40Z,- ExperimentsInHonesty commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-1800822538) at 2023-11-07 04:55 PM PST -ExperimentsInHonesty,2023-11-08T00:57:24Z,- ExperimentsInHonesty commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-1800824630) at 2023-11-07 04:57 PM PST -ExperimentsInHonesty,2023-11-08T01:31:28Z,- ExperimentsInHonesty commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1800859608) at 2023-11-07 05:31 PM PST -ExperimentsInHonesty,2023-11-08T01:53:24Z,- ExperimentsInHonesty commented on issue: [5875](https://github.com/hackforla/website/issues/5875#issuecomment-1800878523) at 2023-11-07 05:53 PM PST -ExperimentsInHonesty,2023-11-08T02:33:23Z,- ExperimentsInHonesty commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-1800912954) at 2023-11-07 06:33 PM PST -ExperimentsInHonesty,2023-11-09T18:45:36Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739568) at 2023-11-09 10:45 AM PST -ExperimentsInHonesty,2023-11-12T17:26:26Z,- ExperimentsInHonesty commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1807189654) at 2023-11-12 09:26 AM PST -ExperimentsInHonesty,2023-11-14T01:08:35Z,- ExperimentsInHonesty commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1809381162) at 2023-11-13 05:08 PM PST -ExperimentsInHonesty,2023-11-14T01:38:14Z,- ExperimentsInHonesty commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-1809402458) at 2023-11-13 05:38 PM PST -ExperimentsInHonesty,2023-11-14T02:12:58Z,- ExperimentsInHonesty commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1809431319) at 2023-11-13 06:12 PM PST -ExperimentsInHonesty,2023-11-14T02:37:41Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-1809452564) at 2023-11-13 06:37 PM PST -ExperimentsInHonesty,2023-11-14T02:50:39Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1809462592) at 2023-11-13 06:50 PM PST -ExperimentsInHonesty,2023-11-17T21:11:12Z,- ExperimentsInHonesty opened issue: [5919](https://github.com/hackforla/website/issues/5919) at 2023-11-17 01:11 PM PST -ExperimentsInHonesty,2023-11-17T21:13:56Z,- ExperimentsInHonesty commented on issue: [5855](https://github.com/hackforla/website/issues/5855#issuecomment-1817113975) at 2023-11-17 01:13 PM PST -ExperimentsInHonesty,2023-11-17T21:15:08Z,- ExperimentsInHonesty commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1817115171) at 2023-11-17 01:15 PM PST -ExperimentsInHonesty,2023-11-19T16:37:42Z,- ExperimentsInHonesty commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1817907972) at 2023-11-19 08:37 AM PST -ExperimentsInHonesty,2023-11-19T18:49:35Z,- ExperimentsInHonesty commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1817944117) at 2023-11-19 10:49 AM PST -ExperimentsInHonesty,2023-11-20T01:52:17Z,- ExperimentsInHonesty commented on issue: [5921](https://github.com/hackforla/website/issues/5921#issuecomment-1818089692) at 2023-11-19 05:52 PM PST -ExperimentsInHonesty,2023-11-20T22:04:23Z,- ExperimentsInHonesty commented on issue: [5777](https://github.com/hackforla/website/issues/5777#issuecomment-1819878149) at 2023-11-20 02:04 PM PST -ExperimentsInHonesty,2023-11-20T22:15:37Z,- ExperimentsInHonesty commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1819891873) at 2023-11-20 02:15 PM PST -ExperimentsInHonesty,2023-11-21T02:21:44Z,- ExperimentsInHonesty commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1820109653) at 2023-11-20 06:21 PM PST -ExperimentsInHonesty,2023-11-24T21:17:56Z,- ExperimentsInHonesty commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1826089811) at 2023-11-24 01:17 PM PST -ExperimentsInHonesty,2023-11-28T01:15:43Z,- ExperimentsInHonesty commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1828906348) at 2023-11-27 05:15 PM PST -ExperimentsInHonesty,2023-11-28T01:24:41Z,- ExperimentsInHonesty commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1828913065) at 2023-11-27 05:24 PM PST -ExperimentsInHonesty,2023-11-28T01:30:12Z,- ExperimentsInHonesty commented on issue: [5007](https://github.com/hackforla/website/issues/5007#issuecomment-1828917368) at 2023-11-27 05:30 PM PST -ExperimentsInHonesty,2023-11-28T01:38:22Z,- ExperimentsInHonesty commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1828923509) at 2023-11-27 05:38 PM PST -ExperimentsInHonesty,2023-11-28T01:57:26Z,- ExperimentsInHonesty commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1828938541) at 2023-11-27 05:57 PM PST -ExperimentsInHonesty,2023-11-28T02:31:31Z,- ExperimentsInHonesty closed issue as completed: [4907](https://github.com/hackforla/website/issues/4907#event-11078049074) at 2023-11-27 06:31 PM PST -ExperimentsInHonesty,2023-11-28T02:35:50Z,- ExperimentsInHonesty closed issue as completed: [4492](https://github.com/hackforla/website/issues/4492#event-11078071237) at 2023-11-27 06:35 PM PST -ExperimentsInHonesty,2023-12-01T15:41:06Z,- ExperimentsInHonesty commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1836326761) at 2023-12-01 07:41 AM PST -ExperimentsInHonesty,2024-01-01T00:45:51Z,- ExperimentsInHonesty commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1873075118) at 2023-12-31 04:45 PM PST -ExperimentsInHonesty,2024-01-01T23:11:02Z,- ExperimentsInHonesty commented on issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1873518510) at 2024-01-01 03:11 PM PST -ExperimentsInHonesty,2024-01-03T23:48:42Z,- ExperimentsInHonesty opened issue: [6058](https://github.com/hackforla/website/issues/6058) at 2024-01-03 03:48 PM PST -ExperimentsInHonesty,2024-01-03T23:53:32Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1876123987) at 2024-01-03 03:53 PM PST -ExperimentsInHonesty,2024-01-07T18:44:30Z,- ExperimentsInHonesty commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1880139107) at 2024-01-07 10:44 AM PST -ExperimentsInHonesty,2024-01-16T02:31:58Z,- ExperimentsInHonesty commented on issue: [6114](https://github.com/hackforla/website/issues/6114#issuecomment-1892982310) at 2024-01-15 06:31 PM PST -ExperimentsInHonesty,2024-01-17T21:43:35Z,- ExperimentsInHonesty commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1896906256) at 2024-01-17 01:43 PM PST -ExperimentsInHonesty,2024-01-17T21:45:57Z,- ExperimentsInHonesty reopened issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1896906256) at 2024-01-17 01:45 PM PST -ExperimentsInHonesty,2024-01-17T21:46:04Z,- ExperimentsInHonesty closed issue as completed: [5949](https://github.com/hackforla/website/issues/5949#event-11516824554) at 2024-01-17 01:46 PM PST -ExperimentsInHonesty,2024-01-18T01:36:10Z,- ExperimentsInHonesty commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1897619452) at 2024-01-17 05:36 PM PST -ExperimentsInHonesty,2024-01-21T19:50:53Z,- ExperimentsInHonesty opened issue: [6140](https://github.com/hackforla/website/issues/6140) at 2024-01-21 11:50 AM PST -ExperimentsInHonesty,2024-01-23T01:11:21Z,- ExperimentsInHonesty commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1905114103) at 2024-01-22 05:11 PM PST -ExperimentsInHonesty,2024-01-23T01:51:20Z,- ExperimentsInHonesty commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1905148455) at 2024-01-22 05:51 PM PST -ExperimentsInHonesty,2024-01-23T02:02:21Z,- ExperimentsInHonesty opened issue: [6145](https://github.com/hackforla/website/issues/6145) at 2024-01-22 06:02 PM PST -ExperimentsInHonesty,2024-01-23T03:25:17Z,- ExperimentsInHonesty commented on issue: [5746](https://github.com/hackforla/website/issues/5746#issuecomment-1905228436) at 2024-01-22 07:25 PM PST -ExperimentsInHonesty,2024-01-23T04:36:23Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-1905279037) at 2024-01-22 08:36 PM PST -ExperimentsInHonesty,2024-01-23T23:32:25Z,- ExperimentsInHonesty commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1907089711) at 2024-01-23 03:32 PM PST -ExperimentsInHonesty,2024-01-23T23:59:02Z,- ExperimentsInHonesty commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1907114320) at 2024-01-23 03:59 PM PST -ExperimentsInHonesty,2024-01-24T01:05:29Z,- ExperimentsInHonesty commented on issue: [1983](https://github.com/hackforla/website/issues/1983#issuecomment-1907177222) at 2024-01-23 05:05 PM PST -ExperimentsInHonesty,2024-01-24T01:06:11Z,- ExperimentsInHonesty commented on issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-1907177739) at 2024-01-23 05:06 PM PST -ExperimentsInHonesty,2024-01-24T01:07:35Z,- ExperimentsInHonesty commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1907179035) at 2024-01-23 05:07 PM PST -ExperimentsInHonesty,2024-01-24T01:08:31Z,- ExperimentsInHonesty commented on issue: [4850](https://github.com/hackforla/website/issues/4850#issuecomment-1907179823) at 2024-01-23 05:08 PM PST -ExperimentsInHonesty,2024-01-24T01:09:38Z,- ExperimentsInHonesty commented on issue: [1068](https://github.com/hackforla/website/issues/1068#issuecomment-1907180813) at 2024-01-23 05:09 PM PST -ExperimentsInHonesty,2024-01-24T01:10:43Z,- ExperimentsInHonesty commented on issue: [1904](https://github.com/hackforla/website/issues/1904#issuecomment-1907181696) at 2024-01-23 05:10 PM PST -ExperimentsInHonesty,2024-01-24T01:11:20Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-1907182189) at 2024-01-23 05:11 PM PST -ExperimentsInHonesty,2024-01-24T01:11:56Z,- ExperimentsInHonesty commented on issue: [2188](https://github.com/hackforla/website/issues/2188#issuecomment-1907182707) at 2024-01-23 05:11 PM PST -ExperimentsInHonesty,2024-01-24T01:25:44Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1907195357) at 2024-01-23 05:25 PM PST -ExperimentsInHonesty,2024-01-24T01:27:31Z,- ExperimentsInHonesty commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1907196945) at 2024-01-23 05:27 PM PST -ExperimentsInHonesty,2024-01-24T01:33:48Z,- ExperimentsInHonesty commented on issue: [5826](https://github.com/hackforla/website/issues/5826#issuecomment-1907202103) at 2024-01-23 05:33 PM PST -ExperimentsInHonesty,2024-01-24T01:34:53Z,- ExperimentsInHonesty commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1907202949) at 2024-01-23 05:34 PM PST -ExperimentsInHonesty,2024-01-24T01:36:51Z,- ExperimentsInHonesty commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1907204421) at 2024-01-23 05:36 PM PST -ExperimentsInHonesty,2024-01-24T01:40:33Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1907207320) at 2024-01-23 05:40 PM PST -ExperimentsInHonesty,2024-01-24T21:09:27Z,- ExperimentsInHonesty closed issue as completed: [3813](https://github.com/hackforla/website/issues/3813#event-11589641365) at 2024-01-24 01:09 PM PST -ExperimentsInHonesty,2024-01-24T21:34:53Z,- ExperimentsInHonesty opened issue: [6150](https://github.com/hackforla/website/issues/6150) at 2024-01-24 01:34 PM PST -ExperimentsInHonesty,2024-01-24T21:39:53Z,- ExperimentsInHonesty commented on issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1908959975) at 2024-01-24 01:39 PM PST -ExperimentsInHonesty,2024-01-25T20:00:41Z,- ExperimentsInHonesty opened issue: [6161](https://github.com/hackforla/website/issues/6161) at 2024-01-25 12:00 PM PST -ExperimentsInHonesty,2024-01-25T20:37:09Z,- ExperimentsInHonesty opened issue: [6162](https://github.com/hackforla/website/issues/6162) at 2024-01-25 12:37 PM PST -ExperimentsInHonesty,2024-01-25T21:00:28Z,- ExperimentsInHonesty opened issue: [6163](https://github.com/hackforla/website/issues/6163) at 2024-01-25 01:00 PM PST -ExperimentsInHonesty,2024-01-26T21:35:04Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1912726743) at 2024-01-26 01:35 PM PST -ExperimentsInHonesty,2024-01-28T04:49:30Z,- ExperimentsInHonesty opened issue: [6188](https://github.com/hackforla/website/issues/6188) at 2024-01-27 08:49 PM PST -ExperimentsInHonesty,2024-01-28T05:36:02Z,- ExperimentsInHonesty commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-01-27 09:36 PM PST -ExperimentsInHonesty,2024-01-28T05:36:17Z,- ExperimentsInHonesty reopened issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-01-27 09:36 PM PST -ExperimentsInHonesty,2024-01-28T06:12:10Z,- ExperimentsInHonesty commented on issue: [4531](https://github.com/hackforla/website/issues/4531#issuecomment-1913466919) at 2024-01-27 10:12 PM PST -ExperimentsInHonesty,2024-01-28T06:18:19Z,- ExperimentsInHonesty reopened issue: [5749](https://github.com/hackforla/website/issues/5749#event-10732929922) at 2024-01-27 10:18 PM PST -ExperimentsInHonesty,2024-01-28T18:26:05Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1913682683) at 2024-01-28 10:26 AM PST -ExperimentsInHonesty,2024-01-28T18:36:36Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1913685305) at 2024-01-28 10:36 AM PST -ExperimentsInHonesty,2024-01-28T23:25:13Z,- ExperimentsInHonesty commented on issue: [2246](https://github.com/hackforla/website/issues/2246#issuecomment-1913757349) at 2024-01-28 03:25 PM PST -ExperimentsInHonesty,2024-01-29T07:04:16Z,- ExperimentsInHonesty commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1914081154) at 2024-01-28 11:04 PM PST -ExperimentsInHonesty,2024-01-29T07:04:30Z,- ExperimentsInHonesty commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1914081408) at 2024-01-28 11:04 PM PST -ExperimentsInHonesty,2024-01-29T23:34:16Z,- ExperimentsInHonesty opened issue: [6195](https://github.com/hackforla/website/issues/6195) at 2024-01-29 03:34 PM PST -ExperimentsInHonesty,2024-01-29T23:35:06Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915801260) at 2024-01-29 03:35 PM PST -ExperimentsInHonesty,2024-01-30T00:00:27Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915801269) at 2024-01-29 04:00 PM PST -ExperimentsInHonesty,2024-01-30T00:07:38Z,- ExperimentsInHonesty assigned to issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915801269) at 2024-01-29 04:07 PM PST -ExperimentsInHonesty,2024-01-30T00:28:32Z,- ExperimentsInHonesty commented on issue: [6150](https://github.com/hackforla/website/issues/6150#issuecomment-1915825035) at 2024-01-29 04:28 PM PST -ExperimentsInHonesty,2024-01-30T00:35:56Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915835782) at 2024-01-29 04:35 PM PST -ExperimentsInHonesty,2024-01-30T00:53:18Z,- ExperimentsInHonesty commented on issue: [4850](https://github.com/hackforla/website/issues/4850#issuecomment-1915853086) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T00:53:18Z,- ExperimentsInHonesty closed issue as completed: [4850](https://github.com/hackforla/website/issues/4850#event-11635093194) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T00:53:35Z,- ExperimentsInHonesty reopened issue: [4850](https://github.com/hackforla/website/issues/4850#event-11635093194) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T00:53:42Z,- ExperimentsInHonesty closed issue as not planned: [4850](https://github.com/hackforla/website/issues/4850#event-11635095309) at 2024-01-29 04:53 PM PST -ExperimentsInHonesty,2024-01-30T01:08:18Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1915870368) at 2024-01-29 05:08 PM PST -ExperimentsInHonesty,2024-01-30T02:50:38Z,- ExperimentsInHonesty reopened issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1915979086) at 2024-01-29 06:50 PM PST -ExperimentsInHonesty,2024-01-30T02:52:13Z,- ExperimentsInHonesty commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1915980640) at 2024-01-29 06:52 PM PST -ExperimentsInHonesty,2024-02-03T20:45:46Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1925451261) at 2024-02-03 12:45 PM PST -ExperimentsInHonesty,2024-02-04T18:21:36Z,- ExperimentsInHonesty opened issue: [6224](https://github.com/hackforla/website/issues/6224) at 2024-02-04 10:21 AM PST -ExperimentsInHonesty,2024-02-04T19:29:06Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1925890137) at 2024-02-04 11:29 AM PST -ExperimentsInHonesty,2024-02-05T05:44:12Z,- ExperimentsInHonesty opened issue: [6229](https://github.com/hackforla/website/issues/6229) at 2024-02-04 09:44 PM PST -ExperimentsInHonesty,2024-02-05T06:23:01Z,- ExperimentsInHonesty commented on issue: [2108](https://github.com/hackforla/website/issues/2108#issuecomment-1926305759) at 2024-02-04 10:23 PM PST -ExperimentsInHonesty,2024-02-05T06:23:01Z,- ExperimentsInHonesty closed issue as completed: [2108](https://github.com/hackforla/website/issues/2108#event-11699209535) at 2024-02-04 10:23 PM PST -ExperimentsInHonesty,2024-02-05T06:39:23Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1926320789) at 2024-02-04 10:39 PM PST -ExperimentsInHonesty,2024-02-06T00:57:52Z,- ExperimentsInHonesty commented on issue: [6240](https://github.com/hackforla/website/issues/6240#issuecomment-1928584033) at 2024-02-05 04:57 PM PST -ExperimentsInHonesty,2024-02-06T01:53:20Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1928639921) at 2024-02-05 05:53 PM PST -ExperimentsInHonesty,2024-02-08T03:51:00Z,- ExperimentsInHonesty commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-1933320952) at 2024-02-07 07:51 PM PST -ExperimentsInHonesty,2024-02-08T03:54:10Z,- ExperimentsInHonesty commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1933322843) at 2024-02-07 07:54 PM PST -ExperimentsInHonesty,2024-02-08T03:56:25Z,- ExperimentsInHonesty commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1933324099) at 2024-02-07 07:56 PM PST -ExperimentsInHonesty,2024-02-09T17:16:47Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1936298234) at 2024-02-09 09:16 AM PST -ExperimentsInHonesty,2024-02-11T17:27:00Z,- ExperimentsInHonesty opened issue: [6277](https://github.com/hackforla/website/issues/6277) at 2024-02-11 09:27 AM PST -ExperimentsInHonesty,2024-02-11T18:32:40Z,- ExperimentsInHonesty opened issue: [6278](https://github.com/hackforla/website/issues/6278) at 2024-02-11 10:32 AM PST -ExperimentsInHonesty,2024-02-11T19:04:53Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1937840152) at 2024-02-11 11:04 AM PST -ExperimentsInHonesty,2024-02-11T19:09:54Z,- ExperimentsInHonesty commented on issue: [4294](https://github.com/hackforla/website/issues/4294#issuecomment-1937841409) at 2024-02-11 11:09 AM PST -ExperimentsInHonesty,2024-02-11T19:23:07Z,- ExperimentsInHonesty commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1937844888) at 2024-02-11 11:23 AM PST -ExperimentsInHonesty,2024-02-11T19:35:37Z,- ExperimentsInHonesty commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-1937847844) at 2024-02-11 11:35 AM PST -ExperimentsInHonesty,2024-02-11T19:49:39Z,- ExperimentsInHonesty assigned to issue: [6278](https://github.com/hackforla/website/issues/6278) at 2024-02-11 11:49 AM PST -ExperimentsInHonesty,2024-02-11T20:34:15Z,- ExperimentsInHonesty assigned to issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1828952297) at 2024-02-11 12:34 PM PST -ExperimentsInHonesty,2024-02-11T20:34:19Z,- ExperimentsInHonesty unassigned from issue: [3328](https://github.com/hackforla/website/issues/3328#issuecomment-1828952297) at 2024-02-11 12:34 PM PST -ExperimentsInHonesty,2024-02-12T17:24:16Z,- nelsonuprety1 assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-02-12 09:24 AM PST -ExperimentsInHonesty,2024-02-13T00:42:48Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-1939908950) at 2024-02-12 04:42 PM PST -ExperimentsInHonesty,2024-02-13T01:35:04Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1940112615) at 2024-02-12 05:35 PM PST -ExperimentsInHonesty,2024-02-13T01:53:32Z,- ExperimentsInHonesty commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1940189455) at 2024-02-12 05:53 PM PST -ExperimentsInHonesty,2024-02-13T02:19:16Z,- ExperimentsInHonesty commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1940272351) at 2024-02-12 06:19 PM PST -ExperimentsInHonesty,2024-02-13T02:34:08Z,- ExperimentsInHonesty commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-1940306837) at 2024-02-12 06:34 PM PST -ExperimentsInHonesty,2024-02-13T16:43:36Z,- ExperimentsInHonesty closed issue as completed: [6278](https://github.com/hackforla/website/issues/6278#event-11791474360) at 2024-02-13 08:43 AM PST -ExperimentsInHonesty,2024-02-13T16:49:34Z,- ExperimentsInHonesty commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1941992435) at 2024-02-13 08:49 AM PST -ExperimentsInHonesty,2024-02-13T16:57:16Z,- ExperimentsInHonesty opened issue: [6288](https://github.com/hackforla/website/issues/6288) at 2024-02-13 08:57 AM PST -ExperimentsInHonesty,2024-02-13T19:03:36Z,- ExperimentsInHonesty opened issue: [6289](https://github.com/hackforla/website/issues/6289) at 2024-02-13 11:03 AM PST -ExperimentsInHonesty,2024-02-13T19:20:56Z,- ExperimentsInHonesty opened issue: [6290](https://github.com/hackforla/website/issues/6290) at 2024-02-13 11:20 AM PST -ExperimentsInHonesty,2024-02-13T19:47:46Z,- ExperimentsInHonesty reopened issue: [3523](https://github.com/hackforla/website/issues/3523#event-8880282627) at 2024-02-13 11:47 AM PST -ExperimentsInHonesty,2024-02-13T20:06:26Z,- ExperimentsInHonesty commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1942349163) at 2024-02-13 12:06 PM PST -ExperimentsInHonesty,2024-02-13T20:06:42Z,- ExperimentsInHonesty reopened issue: [5776](https://github.com/hackforla/website/issues/5776#event-11679277194) at 2024-02-13 12:06 PM PST -ExperimentsInHonesty,2024-02-13T20:11:28Z,- ExperimentsInHonesty commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1942364169) at 2024-02-13 12:11 PM PST -ExperimentsInHonesty,2024-02-13T20:15:53Z,- ExperimentsInHonesty commented on issue: [5726](https://github.com/hackforla/website/issues/5726#issuecomment-1942377131) at 2024-02-13 12:15 PM PST -ExperimentsInHonesty,2024-02-13T20:20:49Z,- ExperimentsInHonesty commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1942391261) at 2024-02-13 12:20 PM PST -ExperimentsInHonesty,2024-02-13T21:02:27Z,- ExperimentsInHonesty commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1942523276) at 2024-02-13 01:02 PM PST -ExperimentsInHonesty,2024-02-13T21:07:22Z,- ExperimentsInHonesty commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1942536564) at 2024-02-13 01:07 PM PST -ExperimentsInHonesty,2024-02-13T21:15:14Z,- ExperimentsInHonesty commented on issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1942558241) at 2024-02-13 01:15 PM PST -ExperimentsInHonesty,2024-02-13T21:49:39Z,- ExperimentsInHonesty commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1942685997) at 2024-02-13 01:49 PM PST -ExperimentsInHonesty,2024-02-13T23:22:20Z,- ExperimentsInHonesty commented on issue: [5082](https://github.com/hackforla/website/issues/5082#issuecomment-1942828249) at 2024-02-13 03:22 PM PST -ExperimentsInHonesty,2024-02-13T23:33:41Z,- ExperimentsInHonesty commented on issue: [5074](https://github.com/hackforla/website/issues/5074#issuecomment-1942853312) at 2024-02-13 03:33 PM PST -ExperimentsInHonesty,2024-02-13T23:38:38Z,- ExperimentsInHonesty commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1942857270) at 2024-02-13 03:38 PM PST -ExperimentsInHonesty,2024-02-14T00:11:10Z,- ExperimentsInHonesty commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1942885093) at 2024-02-13 04:11 PM PST -ExperimentsInHonesty,2024-02-14T00:31:01Z,- ExperimentsInHonesty commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1942903388) at 2024-02-13 04:31 PM PST -ExperimentsInHonesty,2024-02-14T00:34:33Z,- ExperimentsInHonesty commented on issue: [4729](https://github.com/hackforla/website/issues/4729#issuecomment-1942906310) at 2024-02-13 04:34 PM PST -ExperimentsInHonesty,2024-02-14T00:48:18Z,- ExperimentsInHonesty commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1942917364) at 2024-02-13 04:48 PM PST -ExperimentsInHonesty,2024-02-14T01:27:22Z,- ExperimentsInHonesty commented on issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1942947551) at 2024-02-13 05:27 PM PST -ExperimentsInHonesty,2024-02-14T01:53:58Z,- ExperimentsInHonesty commented on issue: [4619](https://github.com/hackforla/website/issues/4619#issuecomment-1942968783) at 2024-02-13 05:53 PM PST -ExperimentsInHonesty,2024-02-14T05:01:14Z,- ExperimentsInHonesty commented on issue: [4968](https://github.com/hackforla/website/issues/4968#issuecomment-1943085566) at 2024-02-13 09:01 PM PST -ExperimentsInHonesty,2024-02-14T05:04:52Z,- ExperimentsInHonesty commented on issue: [5605](https://github.com/hackforla/website/issues/5605#issuecomment-1943088133) at 2024-02-13 09:04 PM PST -ExperimentsInHonesty,2024-02-14T05:28:39Z,- ExperimentsInHonesty commented on issue: [5481](https://github.com/hackforla/website/issues/5481#issuecomment-1943107564) at 2024-02-13 09:28 PM PST -ExperimentsInHonesty,2024-02-14T05:43:26Z,- ExperimentsInHonesty commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1943120238) at 2024-02-13 09:43 PM PST -ExperimentsInHonesty,2024-02-14T05:49:24Z,- ExperimentsInHonesty commented on issue: [5357](https://github.com/hackforla/website/issues/5357#issuecomment-1943124446) at 2024-02-13 09:49 PM PST -ExperimentsInHonesty,2024-02-14T05:54:08Z,- ExperimentsInHonesty commented on issue: [5559](https://github.com/hackforla/website/issues/5559#issuecomment-1943127981) at 2024-02-13 09:54 PM PST -ExperimentsInHonesty,2024-02-14T05:59:28Z,- ExperimentsInHonesty commented on issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1943132491) at 2024-02-13 09:59 PM PST -ExperimentsInHonesty,2024-02-14T06:02:03Z,- ExperimentsInHonesty commented on issue: [5218](https://github.com/hackforla/website/issues/5218#issuecomment-1943134606) at 2024-02-13 10:02 PM PST -ExperimentsInHonesty,2024-02-14T06:10:13Z,- ExperimentsInHonesty commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1943142027) at 2024-02-13 10:10 PM PST -ExperimentsInHonesty,2024-02-14T18:04:53Z,- ExperimentsInHonesty commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1944338517) at 2024-02-14 10:04 AM PST -ExperimentsInHonesty,2024-02-15T17:49:08Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739570) at 2024-02-15 09:49 AM PST -ExperimentsInHonesty,2024-02-15T19:56:51Z,- ExperimentsInHonesty commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1947178429) at 2024-02-15 11:56 AM PST -ExperimentsInHonesty,2024-02-15T20:32:37Z,- ExperimentsInHonesty commented on issue: [4987](https://github.com/hackforla/website/issues/4987#issuecomment-1947295689) at 2024-02-15 12:32 PM PST -ExperimentsInHonesty,2024-02-15T20:57:54Z,- ExperimentsInHonesty commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1947328299) at 2024-02-15 12:57 PM PST -ExperimentsInHonesty,2024-02-16T00:41:19Z,- ExperimentsInHonesty commented on issue: [4333](https://github.com/hackforla/website/issues/4333#issuecomment-1947566013) at 2024-02-15 04:41 PM PST -ExperimentsInHonesty,2024-02-16T00:44:39Z,- ExperimentsInHonesty commented on issue: [4629](https://github.com/hackforla/website/issues/4629#issuecomment-1947568519) at 2024-02-15 04:44 PM PST -ExperimentsInHonesty,2024-02-16T01:02:44Z,- ExperimentsInHonesty commented on issue: [3908](https://github.com/hackforla/website/issues/3908#issuecomment-1947582784) at 2024-02-15 05:02 PM PST -ExperimentsInHonesty,2024-02-16T02:27:16Z,- ExperimentsInHonesty closed issue as completed: [4331](https://github.com/hackforla/website/issues/4331#event-11823456798) at 2024-02-15 06:27 PM PST -ExperimentsInHonesty,2024-02-16T02:31:36Z,- ExperimentsInHonesty closed issue as completed: [4162](https://github.com/hackforla/website/issues/4162#event-11823486152) at 2024-02-15 06:31 PM PST -ExperimentsInHonesty,2024-02-16T02:35:47Z,- ExperimentsInHonesty commented on issue: [4627](https://github.com/hackforla/website/issues/4627#issuecomment-1947668177) at 2024-02-15 06:35 PM PST -ExperimentsInHonesty,2024-02-16T04:00:24Z,- ExperimentsInHonesty commented on issue: [4337](https://github.com/hackforla/website/issues/4337#issuecomment-1947720779) at 2024-02-15 08:00 PM PST -ExperimentsInHonesty,2024-02-16T04:01:47Z,- ExperimentsInHonesty commented on issue: [4171](https://github.com/hackforla/website/issues/4171#issuecomment-1947721618) at 2024-02-15 08:01 PM PST -ExperimentsInHonesty,2024-02-16T04:02:45Z,- ExperimentsInHonesty closed issue as completed: [4172](https://github.com/hackforla/website/issues/4172#event-11824017046) at 2024-02-15 08:02 PM PST -ExperimentsInHonesty,2024-02-16T04:04:15Z,- ExperimentsInHonesty closed issue as completed: [4324](https://github.com/hackforla/website/issues/4324#event-11824026009) at 2024-02-15 08:04 PM PST -ExperimentsInHonesty,2024-02-16T04:05:22Z,- ExperimentsInHonesty commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1947723969) at 2024-02-15 08:05 PM PST -ExperimentsInHonesty,2024-02-16T17:35:11Z,- ExperimentsInHonesty reopened issue: [4563](https://github.com/hackforla/website/issues/4563#event-9490654208) at 2024-02-16 09:35 AM PST -ExperimentsInHonesty,2024-02-16T17:35:22Z,- ExperimentsInHonesty closed issue as completed: [4563](https://github.com/hackforla/website/issues/4563#event-11831724924) at 2024-02-16 09:35 AM PST -ExperimentsInHonesty,2024-02-16T17:50:56Z,- ExperimentsInHonesty commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1948981472) at 2024-02-16 09:50 AM PST -ExperimentsInHonesty,2024-02-16T17:53:59Z,- ExperimentsInHonesty commented on issue: [5365](https://github.com/hackforla/website/issues/5365#issuecomment-1948985516) at 2024-02-16 09:53 AM PST -ExperimentsInHonesty,2024-02-16T19:43:39Z,- ExperimentsInHonesty commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1949219687) at 2024-02-16 11:43 AM PST -ExperimentsInHonesty,2024-02-16T19:50:22Z,- ExperimentsInHonesty commented on issue: [6208](https://github.com/hackforla/website/issues/6208#issuecomment-1949228578) at 2024-02-16 11:50 AM PST -ExperimentsInHonesty,2024-02-18T18:52:42Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-1951413151) at 2024-02-18 10:52 AM PST -ExperimentsInHonesty,2024-02-18T19:37:51Z,- ExperimentsInHonesty commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1951424985) at 2024-02-18 11:37 AM PST -ExperimentsInHonesty,2024-02-19T06:27:10Z,- ExperimentsInHonesty opened issue: [6320](https://github.com/hackforla/website/issues/6320) at 2024-02-18 10:27 PM PST -ExperimentsInHonesty,2024-02-19T21:05:12Z,- ExperimentsInHonesty opened issue: [6321](https://github.com/hackforla/website/issues/6321) at 2024-02-19 01:05 PM PST -ExperimentsInHonesty,2024-02-19T21:39:32Z,- ExperimentsInHonesty assigned to issue: [6321](https://github.com/hackforla/website/issues/6321) at 2024-02-19 01:39 PM PST -ExperimentsInHonesty,2024-02-19T21:53:36Z,- ExperimentsInHonesty unassigned from issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1953188039) at 2024-02-19 01:53 PM PST -ExperimentsInHonesty,2024-02-19T22:23:00Z,- ExperimentsInHonesty closed issue as not planned: [4835](https://github.com/hackforla/website/issues/4835#event-11854753133) at 2024-02-19 02:23 PM PST -ExperimentsInHonesty,2024-02-19T23:40:26Z,- ExperimentsInHonesty commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1953280229) at 2024-02-19 03:40 PM PST -ExperimentsInHonesty,2024-02-20T00:38:16Z,- ExperimentsInHonesty commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1953316798) at 2024-02-19 04:38 PM PST -ExperimentsInHonesty,2024-02-20T00:42:52Z,- ExperimentsInHonesty commented on issue: [4321](https://github.com/hackforla/website/issues/4321#issuecomment-1953319300) at 2024-02-19 04:42 PM PST -ExperimentsInHonesty,2024-02-20T00:49:57Z,- ExperimentsInHonesty commented on issue: [3991](https://github.com/hackforla/website/issues/3991#issuecomment-1953323900) at 2024-02-19 04:49 PM PST -ExperimentsInHonesty,2024-02-20T00:54:26Z,- ExperimentsInHonesty commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1953326881) at 2024-02-19 04:54 PM PST -ExperimentsInHonesty,2024-02-20T00:58:19Z,- ExperimentsInHonesty commented on issue: [3981](https://github.com/hackforla/website/issues/3981#issuecomment-1953329173) at 2024-02-19 04:58 PM PST -ExperimentsInHonesty,2024-02-20T00:59:41Z,- ExperimentsInHonesty commented on issue: [4618](https://github.com/hackforla/website/issues/4618#issuecomment-1953329939) at 2024-02-19 04:59 PM PST -ExperimentsInHonesty,2024-02-20T01:02:11Z,- ExperimentsInHonesty commented on issue: [4332](https://github.com/hackforla/website/issues/4332#issuecomment-1953331374) at 2024-02-19 05:02 PM PST -ExperimentsInHonesty,2024-02-20T01:38:20Z,- ExperimentsInHonesty commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-1953353185) at 2024-02-19 05:38 PM PST -ExperimentsInHonesty,2024-02-20T01:41:16Z,- ExperimentsInHonesty commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1953355091) at 2024-02-19 05:41 PM PST -ExperimentsInHonesty,2024-02-20T02:19:28Z,- ExperimentsInHonesty commented on issue: [5677](https://github.com/hackforla/website/issues/5677#issuecomment-1953381772) at 2024-02-19 06:19 PM PST -ExperimentsInHonesty,2024-02-20T02:19:35Z,- ExperimentsInHonesty closed issue as completed: [5677](https://github.com/hackforla/website/issues/5677#event-11855833964) at 2024-02-19 06:19 PM PST -ExperimentsInHonesty,2024-02-20T02:26:17Z,- ExperimentsInHonesty commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1953386051) at 2024-02-19 06:26 PM PST -ExperimentsInHonesty,2024-02-20T02:26:17Z,- ExperimentsInHonesty closed issue as completed: [4931](https://github.com/hackforla/website/issues/4931#event-11855866329) at 2024-02-19 06:26 PM PST -ExperimentsInHonesty,2024-02-20T02:57:01Z,- ExperimentsInHonesty commented on issue: [4630](https://github.com/hackforla/website/issues/4630#issuecomment-1953405701) at 2024-02-19 06:57 PM PST -ExperimentsInHonesty,2024-02-20T03:02:32Z,- ExperimentsInHonesty commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1953409889) at 2024-02-19 07:02 PM PST -ExperimentsInHonesty,2024-02-20T03:13:53Z,- ExperimentsInHonesty commented on issue: [6028](https://github.com/hackforla/website/issues/6028#issuecomment-1953417897) at 2024-02-19 07:13 PM PST -ExperimentsInHonesty,2024-02-20T03:35:50Z,- ExperimentsInHonesty commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1953434363) at 2024-02-19 07:35 PM PST -ExperimentsInHonesty,2024-02-20T03:37:27Z,- ExperimentsInHonesty commented on issue: [5777](https://github.com/hackforla/website/issues/5777#issuecomment-1953435331) at 2024-02-19 07:37 PM PST -ExperimentsInHonesty,2024-02-20T03:37:27Z,- ExperimentsInHonesty closed issue as not planned: [5777](https://github.com/hackforla/website/issues/5777#event-11856252932) at 2024-02-19 07:37 PM PST -ExperimentsInHonesty,2024-02-20T23:01:40Z,- ExperimentsInHonesty opened issue: [6326](https://github.com/hackforla/website/issues/6326) at 2024-02-20 03:01 PM PST -ExperimentsInHonesty,2024-02-20T23:39:15Z,- ExperimentsInHonesty commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1955364698) at 2024-02-20 03:39 PM PST -ExperimentsInHonesty,2024-02-20T23:39:23Z,- ExperimentsInHonesty reopened issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1955364698) at 2024-02-20 03:39 PM PST -ExperimentsInHonesty,2024-02-21T01:29:34Z,- ExperimentsInHonesty opened issue: [6327](https://github.com/hackforla/website/issues/6327) at 2024-02-20 05:29 PM PST -ExperimentsInHonesty,2024-02-25T18:00:33Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1963014491) at 2024-02-25 10:00 AM PST -ExperimentsInHonesty,2024-02-25T18:08:09Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1963016857) at 2024-02-25 10:08 AM PST -ExperimentsInHonesty,2024-02-25T18:16:04Z,- ExperimentsInHonesty commented on issue: [6256](https://github.com/hackforla/website/issues/6256#issuecomment-1963018905) at 2024-02-25 10:16 AM PST -ExperimentsInHonesty,2024-02-25T18:16:04Z,- ExperimentsInHonesty closed issue as not planned: [6256](https://github.com/hackforla/website/issues/6256#event-11913562363) at 2024-02-25 10:16 AM PST -ExperimentsInHonesty,2024-02-25T18:37:15Z,- ExperimentsInHonesty closed issue as not planned: [6355](https://github.com/hackforla/website/issues/6355#event-11913601253) at 2024-02-25 10:37 AM PST -ExperimentsInHonesty,2024-02-25T18:46:47Z,- ExperimentsInHonesty commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1963026461) at 2024-02-25 10:46 AM PST -ExperimentsInHonesty,2024-02-25T18:49:37Z,- ExperimentsInHonesty commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1963027201) at 2024-02-25 10:49 AM PST -ExperimentsInHonesty,2024-02-25T19:35:36Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1963038991) at 2024-02-25 11:35 AM PST -ExperimentsInHonesty,2024-02-26T23:47:12Z,- ExperimentsInHonesty commented on issue: [4542](https://github.com/hackforla/website/issues/4542#issuecomment-1965530837) at 2024-02-26 03:47 PM PST -ExperimentsInHonesty,2024-02-27T00:20:45Z,- ExperimentsInHonesty commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1965568163) at 2024-02-26 04:20 PM PST -ExperimentsInHonesty,2024-02-27T00:41:10Z,- ExperimentsInHonesty closed issue as completed: [6195](https://github.com/hackforla/website/issues/6195#event-11929416601) at 2024-02-26 04:41 PM PST -ExperimentsInHonesty,2024-02-27T02:56:18Z,- ExperimentsInHonesty commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1965697267) at 2024-02-26 06:56 PM PST -ExperimentsInHonesty,2024-02-27T03:00:38Z,- ExperimentsInHonesty assigned to issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1953188039) at 2024-02-26 07:00 PM PST -ExperimentsInHonesty,2024-02-28T18:02:47Z,- ExperimentsInHonesty commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-1969548282) at 2024-02-28 10:02 AM PST -ExperimentsInHonesty,2024-02-28T18:05:27Z,- ExperimentsInHonesty commented on issue: [6030](https://github.com/hackforla/website/issues/6030#issuecomment-1969552817) at 2024-02-28 10:05 AM PST -ExperimentsInHonesty,2024-02-28T18:57:56Z,- ExperimentsInHonesty commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-1969647286) at 2024-02-28 10:57 AM PST -ExperimentsInHonesty,2024-02-28T18:59:56Z,- ExperimentsInHonesty commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1969651598) at 2024-02-28 10:59 AM PST -ExperimentsInHonesty,2024-02-28T19:04:44Z,- ExperimentsInHonesty closed issue as completed: [5116](https://github.com/hackforla/website/issues/5116#event-11956114315) at 2024-02-28 11:04 AM PST -ExperimentsInHonesty,2024-02-28T19:22:18Z,- ExperimentsInHonesty closed issue as completed: [5727](https://github.com/hackforla/website/issues/5727#event-11956302011) at 2024-02-28 11:22 AM PST -ExperimentsInHonesty,2024-02-28T19:30:12Z,- ExperimentsInHonesty commented on issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1969699478) at 2024-02-28 11:30 AM PST -ExperimentsInHonesty,2024-02-28T19:31:28Z,- ExperimentsInHonesty commented on issue: [5182](https://github.com/hackforla/website/issues/5182#issuecomment-1969701421) at 2024-02-28 11:31 AM PST -ExperimentsInHonesty,2024-02-28T19:35:56Z,- ExperimentsInHonesty commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-1969708848) at 2024-02-28 11:35 AM PST -ExperimentsInHonesty,2024-02-28T19:40:17Z,- ExperimentsInHonesty commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969716797) at 2024-02-28 11:40 AM PST -ExperimentsInHonesty,2024-02-28T19:50:25Z,- ExperimentsInHonesty commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969734687) at 2024-02-28 11:50 AM PST -ExperimentsInHonesty,2024-02-28T19:53:34Z,- ExperimentsInHonesty commented on issue: [5772](https://github.com/hackforla/website/issues/5772#issuecomment-1969741969) at 2024-02-28 11:53 AM PST -ExperimentsInHonesty,2024-02-28T19:53:34Z,- ExperimentsInHonesty closed issue as completed: [5772](https://github.com/hackforla/website/issues/5772#event-11956612278) at 2024-02-28 11:53 AM PST -ExperimentsInHonesty,2024-02-28T19:55:50Z,- ExperimentsInHonesty commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1969746680) at 2024-02-28 11:55 AM PST -ExperimentsInHonesty,2024-02-28T19:57:51Z,- ExperimentsInHonesty commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1969752179) at 2024-02-28 11:57 AM PST -ExperimentsInHonesty,2024-02-28T20:13:28Z,- ExperimentsInHonesty commented on issue: [5778](https://github.com/hackforla/website/issues/5778#issuecomment-1969814318) at 2024-02-28 12:13 PM PST -ExperimentsInHonesty,2024-02-28T20:50:42Z,- ExperimentsInHonesty opened issue: [6389](https://github.com/hackforla/website/issues/6389) at 2024-02-28 12:50 PM PST -ExperimentsInHonesty,2024-02-28T20:56:34Z,- ExperimentsInHonesty closed issue as completed: [5861](https://github.com/hackforla/website/issues/5861#event-11957454757) at 2024-02-28 12:56 PM PST -ExperimentsInHonesty,2024-02-28T20:58:00Z,- ExperimentsInHonesty closed issue as completed: [5862](https://github.com/hackforla/website/issues/5862#event-11957467818) at 2024-02-28 12:58 PM PST -ExperimentsInHonesty,2024-02-28T21:24:25Z,- ExperimentsInHonesty commented on issue: [5865](https://github.com/hackforla/website/issues/5865#issuecomment-1969945515) at 2024-02-28 01:24 PM PST -ExperimentsInHonesty,2024-02-28T21:25:58Z,- ExperimentsInHonesty closed issue as completed: [5866](https://github.com/hackforla/website/issues/5866#event-11957747625) at 2024-02-28 01:25 PM PST -ExperimentsInHonesty,2024-02-28T21:26:56Z,- ExperimentsInHonesty closed issue as completed: [5871](https://github.com/hackforla/website/issues/5871#event-11957756718) at 2024-02-28 01:26 PM PST -ExperimentsInHonesty,2024-02-28T21:27:42Z,- ExperimentsInHonesty closed issue as completed: [5870](https://github.com/hackforla/website/issues/5870#event-11957763914) at 2024-02-28 01:27 PM PST -ExperimentsInHonesty,2024-02-28T21:29:31Z,- ExperimentsInHonesty commented on issue: [5924](https://github.com/hackforla/website/issues/5924#issuecomment-1969951931) at 2024-02-28 01:29 PM PST -ExperimentsInHonesty,2024-02-28T21:29:34Z,- ExperimentsInHonesty closed issue as completed: [5924](https://github.com/hackforla/website/issues/5924#event-11957781360) at 2024-02-28 01:29 PM PST -ExperimentsInHonesty,2024-02-28T21:35:33Z,- ExperimentsInHonesty commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1969959747) at 2024-02-28 01:35 PM PST -ExperimentsInHonesty,2024-02-28T21:35:42Z,- ExperimentsInHonesty reopened issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1969959747) at 2024-02-28 01:35 PM PST -ExperimentsInHonesty,2024-02-28T21:42:50Z,- ExperimentsInHonesty commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1969969798) at 2024-02-28 01:42 PM PST -ExperimentsInHonesty,2024-02-28T21:45:02Z,- ExperimentsInHonesty commented on issue: [6040](https://github.com/hackforla/website/issues/6040#issuecomment-1969972654) at 2024-02-28 01:45 PM PST -ExperimentsInHonesty,2024-02-28T21:49:59Z,- ExperimentsInHonesty commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-1969978885) at 2024-02-28 01:49 PM PST -ExperimentsInHonesty,2024-02-28T21:55:31Z,- ExperimentsInHonesty commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1969985963) at 2024-02-28 01:55 PM PST -ExperimentsInHonesty,2024-02-28T21:55:32Z,- ExperimentsInHonesty closed issue as completed: [4326](https://github.com/hackforla/website/issues/4326#event-11958012773) at 2024-02-28 01:55 PM PST -ExperimentsInHonesty,2024-02-28T21:57:56Z,- ExperimentsInHonesty commented on issue: [6036](https://github.com/hackforla/website/issues/6036#issuecomment-1969988765) at 2024-02-28 01:57 PM PST -ExperimentsInHonesty,2024-02-28T21:57:56Z,- ExperimentsInHonesty closed issue as completed: [6036](https://github.com/hackforla/website/issues/6036#event-11958032888) at 2024-02-28 01:57 PM PST -ExperimentsInHonesty,2024-02-28T22:00:40Z,- ExperimentsInHonesty commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1969992092) at 2024-02-28 02:00 PM PST -ExperimentsInHonesty,2024-02-28T22:00:40Z,- ExperimentsInHonesty closed issue as completed: [6034](https://github.com/hackforla/website/issues/6034#event-11958055181) at 2024-02-28 02:00 PM PST -ExperimentsInHonesty,2024-02-28T22:09:40Z,- ExperimentsInHonesty commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-1970003410) at 2024-02-28 02:09 PM PST -ExperimentsInHonesty,2024-02-28T22:12:55Z,- ExperimentsInHonesty commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-1970007309) at 2024-02-28 02:12 PM PST -ExperimentsInHonesty,2024-02-28T22:16:35Z,- ExperimentsInHonesty commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-1970012484) at 2024-02-28 02:16 PM PST -ExperimentsInHonesty,2024-02-28T22:19:31Z,- ExperimentsInHonesty commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-1970016052) at 2024-02-28 02:19 PM PST -ExperimentsInHonesty,2024-02-28T22:20:46Z,- ExperimentsInHonesty commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-1970017489) at 2024-02-28 02:20 PM PST -ExperimentsInHonesty,2024-02-28T22:22:18Z,- ExperimentsInHonesty commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-1970019297) at 2024-02-28 02:22 PM PST -ExperimentsInHonesty,2024-02-28T22:22:54Z,- ExperimentsInHonesty commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-1970020000) at 2024-02-28 02:22 PM PST -ExperimentsInHonesty,2024-02-28T22:24:26Z,- ExperimentsInHonesty commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1970021984) at 2024-02-28 02:24 PM PST -ExperimentsInHonesty,2024-02-28T23:11:07Z,- ExperimentsInHonesty commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-1970072202) at 2024-02-28 03:11 PM PST -ExperimentsInHonesty,2024-02-28T23:13:03Z,- ExperimentsInHonesty commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1970074100) at 2024-02-28 03:13 PM PST -ExperimentsInHonesty,2024-02-28T23:19:58Z,- ExperimentsInHonesty commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1970080855) at 2024-02-28 03:19 PM PST -ExperimentsInHonesty,2024-02-28T23:21:33Z,- ExperimentsInHonesty commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1970082390) at 2024-02-28 03:21 PM PST -ExperimentsInHonesty,2024-02-28T23:31:36Z,- ExperimentsInHonesty commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1970091461) at 2024-02-28 03:31 PM PST -ExperimentsInHonesty,2024-02-28T23:31:36Z,- ExperimentsInHonesty closed issue as completed: [6116](https://github.com/hackforla/website/issues/6116#event-11958734086) at 2024-02-28 03:31 PM PST -ExperimentsInHonesty,2024-02-28T23:31:54Z,- ExperimentsInHonesty commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-02-28 03:31 PM PST -ExperimentsInHonesty,2024-02-28T23:48:30Z,- ExperimentsInHonesty commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1970108547) at 2024-02-28 03:48 PM PST -ExperimentsInHonesty,2024-02-28T23:55:04Z,- ExperimentsInHonesty commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1970120406) at 2024-02-28 03:55 PM PST -ExperimentsInHonesty,2024-02-29T00:09:54Z,- ExperimentsInHonesty commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-1970143091) at 2024-02-28 04:09 PM PST -ExperimentsInHonesty,2024-02-29T01:13:01Z,- ExperimentsInHonesty commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1970201231) at 2024-02-28 05:13 PM PST -ExperimentsInHonesty,2024-02-29T01:14:14Z,- ExperimentsInHonesty closed issue as completed: [5208](https://github.com/hackforla/website/issues/5208#event-11959341019) at 2024-02-28 05:14 PM PST -ExperimentsInHonesty,2024-02-29T01:20:22Z,- ExperimentsInHonesty commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1970206954) at 2024-02-28 05:20 PM PST -ExperimentsInHonesty,2024-02-29T01:31:33Z,- ExperimentsInHonesty commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1970227528) at 2024-02-28 05:31 PM PST -ExperimentsInHonesty,2024-02-29T01:35:19Z,- ExperimentsInHonesty commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-1970235023) at 2024-02-28 05:35 PM PST -ExperimentsInHonesty,2024-02-29T01:43:41Z,- ExperimentsInHonesty commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-1970242163) at 2024-02-28 05:43 PM PST -ExperimentsInHonesty,2024-02-29T01:46:12Z,- ExperimentsInHonesty closed issue as completed: [5872](https://github.com/hackforla/website/issues/5872#event-11959538317) at 2024-02-28 05:46 PM PST -ExperimentsInHonesty,2024-02-29T01:47:07Z,- ExperimentsInHonesty closed issue as completed: [5869](https://github.com/hackforla/website/issues/5869#event-11959544917) at 2024-02-28 05:47 PM PST -ExperimentsInHonesty,2024-02-29T01:51:22Z,- ExperimentsInHonesty commented on issue: [4616](https://github.com/hackforla/website/issues/4616#issuecomment-1970249439) at 2024-02-28 05:51 PM PST -ExperimentsInHonesty,2024-02-29T01:55:27Z,- ExperimentsInHonesty commented on issue: [6049](https://github.com/hackforla/website/issues/6049#issuecomment-1970257195) at 2024-02-28 05:55 PM PST -ExperimentsInHonesty,2024-02-29T03:42:22Z,- ExperimentsInHonesty commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1970342149) at 2024-02-28 07:42 PM PST -ExperimentsInHonesty,2024-02-29T03:59:40Z,- ExperimentsInHonesty commented on issue: [5587](https://github.com/hackforla/website/issues/5587#issuecomment-1970353831) at 2024-02-28 07:59 PM PST -ExperimentsInHonesty,2024-02-29T03:59:40Z,- ExperimentsInHonesty closed issue as completed: [5587](https://github.com/hackforla/website/issues/5587#event-11960294821) at 2024-02-28 07:59 PM PST -ExperimentsInHonesty,2024-02-29T03:59:45Z,- ExperimentsInHonesty assigned to issue: [5587](https://github.com/hackforla/website/issues/5587#event-11960294821) at 2024-02-28 07:59 PM PST -ExperimentsInHonesty,2024-02-29T04:01:35Z,- ExperimentsInHonesty commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-1970355174) at 2024-02-28 08:01 PM PST -ExperimentsInHonesty,2024-02-29T04:23:59Z,- ExperimentsInHonesty commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1970371496) at 2024-02-28 08:23 PM PST -ExperimentsInHonesty,2024-02-29T04:24:45Z,- ExperimentsInHonesty commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1970372008) at 2024-02-28 08:24 PM PST -ExperimentsInHonesty,2024-02-29T04:25:08Z,- ExperimentsInHonesty commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1970372310) at 2024-02-28 08:25 PM PST -ExperimentsInHonesty,2024-02-29T04:25:52Z,- ExperimentsInHonesty commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-1970372819) at 2024-02-28 08:25 PM PST -ExperimentsInHonesty,2024-02-29T04:26:31Z,- ExperimentsInHonesty commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1970373274) at 2024-02-28 08:26 PM PST -ExperimentsInHonesty,2024-02-29T04:27:13Z,- ExperimentsInHonesty commented on issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1970373708) at 2024-02-28 08:27 PM PST -ExperimentsInHonesty,2024-02-29T23:34:56Z,- ExperimentsInHonesty commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-1972150605) at 2024-02-29 03:34 PM PST -ExperimentsInHonesty,2024-02-29T23:44:43Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-1972160104) at 2024-02-29 03:44 PM PST -ExperimentsInHonesty,2024-02-29T23:47:24Z,- ExperimentsInHonesty commented on issue: [6142](https://github.com/hackforla/website/issues/6142#issuecomment-1972162447) at 2024-02-29 03:47 PM PST -ExperimentsInHonesty,2024-02-29T23:47:24Z,- ExperimentsInHonesty closed issue as completed: [6142](https://github.com/hackforla/website/issues/6142#event-11972690846) at 2024-02-29 03:47 PM PST -ExperimentsInHonesty,2024-03-01T00:58:28Z,- ExperimentsInHonesty opened issue: [6402](https://github.com/hackforla/website/issues/6402) at 2024-02-29 04:58 PM PST -ExperimentsInHonesty,2024-03-01T01:03:19Z,- ExperimentsInHonesty opened issue: [6403](https://github.com/hackforla/website/issues/6403) at 2024-02-29 05:03 PM PST -ExperimentsInHonesty,2024-03-01T01:07:10Z,- ExperimentsInHonesty commented on issue: [6402](https://github.com/hackforla/website/issues/6402#issuecomment-1972259178) at 2024-02-29 05:07 PM PST -ExperimentsInHonesty,2024-03-01T01:07:17Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-1972259280) at 2024-02-29 05:07 PM PST -ExperimentsInHonesty,2024-03-01T01:21:47Z,- ExperimentsInHonesty commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1972273333) at 2024-02-29 05:21 PM PST -ExperimentsInHonesty,2024-03-01T01:21:47Z,- ExperimentsInHonesty closed issue as completed: [5644](https://github.com/hackforla/website/issues/5644#event-11973294429) at 2024-02-29 05:21 PM PST -ExperimentsInHonesty,2024-03-01T01:27:38Z,- ExperimentsInHonesty commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1972279146) at 2024-02-29 05:27 PM PST -ExperimentsInHonesty,2024-03-01T02:06:04Z,- ExperimentsInHonesty commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-1972321839) at 2024-02-29 06:06 PM PST -ExperimentsInHonesty,2024-03-01T02:20:54Z,- ExperimentsInHonesty commented on issue: [6017](https://github.com/hackforla/website/issues/6017#issuecomment-1972336348) at 2024-02-29 06:20 PM PST -ExperimentsInHonesty,2024-03-01T17:11:34Z,- ExperimentsInHonesty opened issue: [6404](https://github.com/hackforla/website/issues/6404) at 2024-03-01 09:11 AM PST -ExperimentsInHonesty,2024-03-01T17:32:46Z,- ExperimentsInHonesty assigned to issue: [6404](https://github.com/hackforla/website/issues/6404) at 2024-03-01 09:32 AM PST -ExperimentsInHonesty,2024-03-01T17:38:34Z,- ExperimentsInHonesty closed issue as completed: [6404](https://github.com/hackforla/website/issues/6404#event-11982309617) at 2024-03-01 09:38 AM PST -ExperimentsInHonesty,2024-03-01T17:41:00Z,- ExperimentsInHonesty commented on issue: [4153](https://github.com/hackforla/website/issues/4153#issuecomment-1973614943) at 2024-03-01 09:41 AM PST -ExperimentsInHonesty,2024-03-01T17:45:40Z,- ExperimentsInHonesty commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-1973621705) at 2024-03-01 09:45 AM PST -ExperimentsInHonesty,2024-03-03T17:13:05Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1975233734) at 2024-03-03 09:13 AM PST -ExperimentsInHonesty,2024-03-03T17:24:19Z,- ExperimentsInHonesty commented on issue: [4227](https://github.com/hackforla/website/issues/4227#issuecomment-1975236387) at 2024-03-03 09:24 AM PST -ExperimentsInHonesty,2024-03-03T17:47:59Z,- ExperimentsInHonesty commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-1975242862) at 2024-03-03 09:47 AM PST -ExperimentsInHonesty,2024-03-03T17:49:28Z,- ExperimentsInHonesty commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1975243208) at 2024-03-03 09:49 AM PST -ExperimentsInHonesty,2024-03-03T19:11:02Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1975267449) at 2024-03-03 11:11 AM PST -ExperimentsInHonesty,2024-03-04T00:04:26Z,- ExperimentsInHonesty commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1975410198) at 2024-03-03 04:04 PM PST -ExperimentsInHonesty,2024-03-04T00:04:50Z,- ExperimentsInHonesty commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1975410408) at 2024-03-03 04:04 PM PST -ExperimentsInHonesty,2024-03-04T00:26:08Z,- ExperimentsInHonesty commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975455167) at 2024-03-03 04:26 PM PST -ExperimentsInHonesty,2024-03-04T00:31:07Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1975457357) at 2024-03-03 04:31 PM PST -ExperimentsInHonesty,2024-03-04T00:56:24Z,- ExperimentsInHonesty opened issue: [6412](https://github.com/hackforla/website/issues/6412) at 2024-03-03 04:56 PM PST -ExperimentsInHonesty,2024-03-04T01:00:34Z,- ExperimentsInHonesty commented on issue: [4862](https://github.com/hackforla/website/issues/4862#issuecomment-1975472477) at 2024-03-03 05:00 PM PST -ExperimentsInHonesty,2024-03-04T01:06:39Z,- ExperimentsInHonesty commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1975476048) at 2024-03-03 05:06 PM PST -ExperimentsInHonesty,2024-03-04T01:07:55Z,- ExperimentsInHonesty closed issue as not planned: [5062](https://github.com/hackforla/website/issues/5062#event-11991966597) at 2024-03-03 05:07 PM PST -ExperimentsInHonesty,2024-03-04T01:20:07Z,- ExperimentsInHonesty commented on issue: [5159](https://github.com/hackforla/website/issues/5159#issuecomment-1975487082) at 2024-03-03 05:20 PM PST -ExperimentsInHonesty,2024-03-04T01:35:36Z,- ExperimentsInHonesty commented on issue: [5334](https://github.com/hackforla/website/issues/5334#issuecomment-1975501567) at 2024-03-03 05:35 PM PST -ExperimentsInHonesty,2024-03-04T01:58:52Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1975521879) at 2024-03-03 05:58 PM PST -ExperimentsInHonesty,2024-03-04T02:07:29Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1975528471) at 2024-03-03 06:07 PM PST -ExperimentsInHonesty,2024-03-04T03:01:55Z,- ExperimentsInHonesty commented on issue: [4876](https://github.com/hackforla/website/issues/4876#issuecomment-1975569205) at 2024-03-03 07:01 PM PST -ExperimentsInHonesty,2024-03-04T03:10:48Z,- ExperimentsInHonesty commented on issue: [5202](https://github.com/hackforla/website/issues/5202#issuecomment-1975585776) at 2024-03-03 07:10 PM PST -ExperimentsInHonesty,2024-03-04T03:14:56Z,- ExperimentsInHonesty commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1975594589) at 2024-03-03 07:14 PM PST -ExperimentsInHonesty,2024-03-04T04:00:00Z,- ExperimentsInHonesty commented on issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-1975655651) at 2024-03-03 08:00 PM PST -ExperimentsInHonesty,2024-03-04T04:04:06Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1975658529) at 2024-03-03 08:04 PM PST -ExperimentsInHonesty,2024-03-04T04:16:36Z,- ExperimentsInHonesty commented on issue: [5995](https://github.com/hackforla/website/issues/5995#issuecomment-1975667654) at 2024-03-03 08:16 PM PST -ExperimentsInHonesty,2024-03-04T04:45:30Z,- ExperimentsInHonesty closed issue as not planned: [1796](https://github.com/hackforla/website/issues/1796#event-11993166722) at 2024-03-03 08:45 PM PST -ExperimentsInHonesty,2024-03-04T05:30:31Z,- ExperimentsInHonesty commented on issue: [6114](https://github.com/hackforla/website/issues/6114#issuecomment-1975762014) at 2024-03-03 09:30 PM PST -ExperimentsInHonesty,2024-03-04T05:30:33Z,- ExperimentsInHonesty closed issue as completed: [6114](https://github.com/hackforla/website/issues/6114#event-11993458666) at 2024-03-03 09:30 PM PST -ExperimentsInHonesty,2024-03-04T05:46:05Z,- ExperimentsInHonesty commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1975776628) at 2024-03-03 09:46 PM PST -ExperimentsInHonesty,2024-03-04T06:00:19Z,- ExperimentsInHonesty commented on issue: [4470](https://github.com/hackforla/website/issues/4470#issuecomment-1975790547) at 2024-03-03 10:00 PM PST -ExperimentsInHonesty,2024-03-04T06:03:22Z,- ExperimentsInHonesty commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-1975794131) at 2024-03-03 10:03 PM PST -ExperimentsInHonesty,2024-03-04T06:03:39Z,- ExperimentsInHonesty commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-1975794398) at 2024-03-03 10:03 PM PST -ExperimentsInHonesty,2024-03-04T06:21:04Z,- ExperimentsInHonesty commented on issue: [6404](https://github.com/hackforla/website/issues/6404#issuecomment-1975811615) at 2024-03-03 10:21 PM PST -ExperimentsInHonesty,2024-03-04T06:24:31Z,- ExperimentsInHonesty commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-1975815576) at 2024-03-03 10:24 PM PST -ExperimentsInHonesty,2024-03-04T06:49:07Z,- ExperimentsInHonesty commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1975845128) at 2024-03-03 10:49 PM PST -ExperimentsInHonesty,2024-03-04T06:52:18Z,- ExperimentsInHonesty commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-1975848582) at 2024-03-03 10:52 PM PST -ExperimentsInHonesty,2024-03-04T07:01:48Z,- ExperimentsInHonesty commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-1975858949) at 2024-03-03 11:01 PM PST -ExperimentsInHonesty,2024-03-04T07:12:07Z,- ExperimentsInHonesty commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1975870438) at 2024-03-03 11:12 PM PST -ExperimentsInHonesty,2024-03-04T07:14:39Z,- ExperimentsInHonesty commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1975873272) at 2024-03-03 11:14 PM PST -ExperimentsInHonesty,2024-03-04T07:15:03Z,- ExperimentsInHonesty commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1975873747) at 2024-03-03 11:15 PM PST -ExperimentsInHonesty,2024-03-04T07:20:26Z,- ExperimentsInHonesty commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1975880105) at 2024-03-03 11:20 PM PST -ExperimentsInHonesty,2024-03-04T07:20:33Z,- ExperimentsInHonesty assigned to issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1975880105) at 2024-03-03 11:20 PM PST -ExperimentsInHonesty,2024-03-05T01:26:10Z,- ExperimentsInHonesty commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1977775515) at 2024-03-04 05:26 PM PST -ExperimentsInHonesty,2024-03-05T01:33:27Z,- ExperimentsInHonesty commented on issue: [5202](https://github.com/hackforla/website/issues/5202#issuecomment-1977781752) at 2024-03-04 05:33 PM PST -ExperimentsInHonesty,2024-03-05T01:43:14Z,- ExperimentsInHonesty commented on issue: [4242](https://github.com/hackforla/website/issues/4242#issuecomment-1977790710) at 2024-03-04 05:43 PM PST -ExperimentsInHonesty,2024-03-05T01:46:18Z,- ExperimentsInHonesty commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1977794023) at 2024-03-04 05:46 PM PST -ExperimentsInHonesty,2024-03-08T21:21:33Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1986436520) at 2024-03-08 01:21 PM PST -ExperimentsInHonesty,2024-03-08T21:35:23Z,- ExperimentsInHonesty commented on issue: [6380](https://github.com/hackforla/website/issues/6380#issuecomment-1986453258) at 2024-03-08 01:35 PM PST -ExperimentsInHonesty,2024-03-08T21:39:19Z,- ExperimentsInHonesty commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1986457424) at 2024-03-08 01:39 PM PST -ExperimentsInHonesty,2024-03-13T00:25:39Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-1992820039) at 2024-03-12 05:25 PM PDT -ExperimentsInHonesty,2024-03-15T07:08:27Z,- ExperimentsInHonesty commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1999060052) at 2024-03-15 12:08 AM PDT -ExperimentsInHonesty,2024-03-15T07:23:08Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1999076857) at 2024-03-15 12:23 AM PDT -ExperimentsInHonesty,2024-03-15T07:23:43Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1999077419) at 2024-03-15 12:23 AM PDT -ExperimentsInHonesty,2024-03-15T07:29:56Z,- ExperimentsInHonesty closed issue as completed: [6039](https://github.com/hackforla/website/issues/6039#event-12127687461) at 2024-03-15 12:29 AM PDT -ExperimentsInHonesty,2024-03-15T07:30:20Z,- ExperimentsInHonesty commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1999084385) at 2024-03-15 12:30 AM PDT -ExperimentsInHonesty,2024-03-15T08:02:59Z,- ExperimentsInHonesty commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1999123534) at 2024-03-15 01:02 AM PDT -ExperimentsInHonesty,2024-03-15T08:06:16Z,- ExperimentsInHonesty commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1999127995) at 2024-03-15 01:06 AM PDT -ExperimentsInHonesty,2024-03-15T08:10:50Z,- ExperimentsInHonesty commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-1999133863) at 2024-03-15 01:10 AM PDT -ExperimentsInHonesty,2024-03-15T08:21:24Z,- ExperimentsInHonesty commented on issue: [5953](https://github.com/hackforla/website/issues/5953#issuecomment-1999148153) at 2024-03-15 01:21 AM PDT -ExperimentsInHonesty,2024-03-15T08:43:37Z,- ExperimentsInHonesty commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-1999182111) at 2024-03-15 01:43 AM PDT -ExperimentsInHonesty,2024-03-15T09:00:57Z,- ExperimentsInHonesty commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-1999210575) at 2024-03-15 02:00 AM PDT -ExperimentsInHonesty,2024-03-19T00:22:38Z,- ExperimentsInHonesty unassigned from issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-1989712362) at 2024-03-18 05:22 PM PDT -ExperimentsInHonesty,2024-03-19T00:31:50Z,- ExperimentsInHonesty commented on issue: [5242](https://github.com/hackforla/website/issues/5242#issuecomment-2005469220) at 2024-03-18 05:31 PM PDT -ExperimentsInHonesty,2024-03-19T00:49:04Z,- ExperimentsInHonesty commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-2005514397) at 2024-03-18 05:49 PM PDT -ExperimentsInHonesty,2024-03-19T01:02:17Z,- ExperimentsInHonesty commented on issue: [6342](https://github.com/hackforla/website/issues/6342#issuecomment-2005540568) at 2024-03-18 06:02 PM PDT -ExperimentsInHonesty,2024-03-19T01:02:57Z,- ExperimentsInHonesty commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2005541155) at 2024-03-18 06:02 PM PDT -ExperimentsInHonesty,2024-03-19T01:34:27Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2005578473) at 2024-03-18 06:34 PM PDT -ExperimentsInHonesty,2024-03-24T16:15:32Z,- ExperimentsInHonesty commented on issue: [6484](https://github.com/hackforla/website/issues/6484#issuecomment-2016857951) at 2024-03-24 09:15 AM PDT -ExperimentsInHonesty,2024-03-24T16:38:29Z,- ExperimentsInHonesty commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2016863723) at 2024-03-24 09:38 AM PDT -ExperimentsInHonesty,2024-03-24T16:45:09Z,- ExperimentsInHonesty commented on issue: [6446](https://github.com/hackforla/website/issues/6446#issuecomment-2016865637) at 2024-03-24 09:45 AM PDT -ExperimentsInHonesty,2024-03-24T17:54:00Z,- ExperimentsInHonesty reopened issue: [6478](https://github.com/hackforla/website/issues/6478#event-12207703051) at 2024-03-24 10:54 AM PDT -ExperimentsInHonesty,2024-03-25T21:03:16Z,- ExperimentsInHonesty commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2018910722) at 2024-03-25 02:03 PM PDT -ExperimentsInHonesty,2024-03-25T21:40:11Z,- ExperimentsInHonesty commented on issue: [6510](https://github.com/hackforla/website/issues/6510#issuecomment-2018966461) at 2024-03-25 02:40 PM PDT -ExperimentsInHonesty,2024-03-25T21:41:10Z,- ExperimentsInHonesty commented on issue: [6482](https://github.com/hackforla/website/issues/6482#issuecomment-2018967756) at 2024-03-25 02:41 PM PDT -ExperimentsInHonesty,2024-03-25T21:41:54Z,- ExperimentsInHonesty commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2018968669) at 2024-03-25 02:41 PM PDT -ExperimentsInHonesty,2024-03-25T21:42:53Z,- ExperimentsInHonesty commented on issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-2018969992) at 2024-03-25 02:42 PM PDT -ExperimentsInHonesty,2024-03-25T21:51:02Z,- ExperimentsInHonesty commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-2018980789) at 2024-03-25 02:51 PM PDT -ExperimentsInHonesty,2024-03-25T23:51:48Z,- ExperimentsInHonesty commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2019120148) at 2024-03-25 04:51 PM PDT -ExperimentsInHonesty,2024-03-25T23:51:49Z,- ExperimentsInHonesty reopened issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2019120148) at 2024-03-25 04:51 PM PDT -ExperimentsInHonesty,2024-03-26T01:12:20Z,- ExperimentsInHonesty commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2019208970) at 2024-03-25 06:12 PM PDT -ExperimentsInHonesty,2024-03-26T01:37:29Z,- ExperimentsInHonesty commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2019228385) at 2024-03-25 06:37 PM PDT -ExperimentsInHonesty,2024-03-26T01:56:37Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2019246917) at 2024-03-25 06:56 PM PDT -ExperimentsInHonesty,2024-03-26T21:53:43Z,- ExperimentsInHonesty commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-2021537292) at 2024-03-26 02:53 PM PDT -ExperimentsInHonesty,2024-03-26T21:56:07Z,- ExperimentsInHonesty commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2021539978) at 2024-03-26 02:56 PM PDT -ExperimentsInHonesty,2024-03-26T21:57:27Z,- ExperimentsInHonesty commented on issue: [6420](https://github.com/hackforla/website/issues/6420#issuecomment-2021542027) at 2024-03-26 02:57 PM PDT -ExperimentsInHonesty,2024-03-26T21:59:35Z,- ExperimentsInHonesty commented on issue: [6418](https://github.com/hackforla/website/issues/6418#issuecomment-2021544268) at 2024-03-26 02:59 PM PDT -ExperimentsInHonesty,2024-03-26T22:09:47Z,- ExperimentsInHonesty commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2021556298) at 2024-03-26 03:09 PM PDT -ExperimentsInHonesty,2024-03-26T22:17:51Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-2021565194) at 2024-03-26 03:17 PM PDT -ExperimentsInHonesty,2024-03-26T22:33:33Z,- ExperimentsInHonesty commented on issue: [4276](https://github.com/hackforla/website/issues/4276#issuecomment-2021583182) at 2024-03-26 03:33 PM PDT -ExperimentsInHonesty,2024-03-26T22:33:33Z,- ExperimentsInHonesty closed issue as completed: [4276](https://github.com/hackforla/website/issues/4276#event-12257435552) at 2024-03-26 03:33 PM PDT -ExperimentsInHonesty,2024-03-26T22:40:11Z,- ExperimentsInHonesty assigned to issue: [4342](https://github.com/hackforla/website/issues/4342#issuecomment-1496655562) at 2024-03-26 03:40 PM PDT -ExperimentsInHonesty,2024-03-26T22:46:14Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2021595207) at 2024-03-26 03:46 PM PDT -ExperimentsInHonesty,2024-03-26T23:27:14Z,- ExperimentsInHonesty commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2021634520) at 2024-03-26 04:27 PM PDT -ExperimentsInHonesty,2024-03-26T23:28:58Z,- ExperimentsInHonesty commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2021636339) at 2024-03-26 04:28 PM PDT -ExperimentsInHonesty,2024-03-26T23:30:11Z,- ExperimentsInHonesty commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2021639632) at 2024-03-26 04:30 PM PDT -ExperimentsInHonesty,2024-03-27T00:14:36Z,- ExperimentsInHonesty commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2021694053) at 2024-03-26 05:14 PM PDT -ExperimentsInHonesty,2024-03-28T16:27:58Z,- ExperimentsInHonesty commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2025628314) at 2024-03-28 09:27 AM PDT -ExperimentsInHonesty,2024-03-31T17:10:05Z,- ExperimentsInHonesty commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2028826172) at 2024-03-31 10:10 AM PDT -ExperimentsInHonesty,2024-03-31T17:21:57Z,- ExperimentsInHonesty commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2028832372) at 2024-03-31 10:21 AM PDT -ExperimentsInHonesty,2024-03-31T17:45:48Z,- ExperimentsInHonesty commented on issue: [6361](https://github.com/hackforla/website/issues/6361#issuecomment-2028841737) at 2024-03-31 10:45 AM PDT -ExperimentsInHonesty,2024-03-31T17:45:48Z,- ExperimentsInHonesty closed issue as completed: [6361](https://github.com/hackforla/website/issues/6361#event-12304352457) at 2024-03-31 10:45 AM PDT -ExperimentsInHonesty,2024-03-31T17:51:35Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2028843176) at 2024-03-31 10:51 AM PDT -ExperimentsInHonesty,2024-04-02T01:00:41Z,- ExperimentsInHonesty commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2030891263) at 2024-04-01 06:00 PM PDT -ExperimentsInHonesty,2024-04-02T01:41:57Z,- ExperimentsInHonesty commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2030922088) at 2024-04-01 06:41 PM PDT -ExperimentsInHonesty,2024-04-02T01:44:42Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2030924477) at 2024-04-01 06:44 PM PDT -ExperimentsInHonesty,2024-04-02T02:01:21Z,- ExperimentsInHonesty commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2030940916) at 2024-04-01 07:01 PM PDT -ExperimentsInHonesty,2024-04-02T02:05:10Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2030944823) at 2024-04-01 07:05 PM PDT -ExperimentsInHonesty,2024-04-02T21:29:13Z,- ExperimentsInHonesty opened issue: [6558](https://github.com/hackforla/website/issues/6558) at 2024-04-02 02:29 PM PDT -ExperimentsInHonesty,2024-04-02T21:37:27Z,- ExperimentsInHonesty commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2033142071) at 2024-04-02 02:37 PM PDT -ExperimentsInHonesty,2024-04-02T21:59:21Z,- ExperimentsInHonesty commented on issue: [5844](https://github.com/hackforla/website/issues/5844#issuecomment-2033175798) at 2024-04-02 02:59 PM PDT -ExperimentsInHonesty,2024-04-02T22:01:34Z,- ExperimentsInHonesty commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2033178992) at 2024-04-02 03:01 PM PDT -ExperimentsInHonesty,2024-04-02T22:14:00Z,- ExperimentsInHonesty commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2033192876) at 2024-04-02 03:14 PM PDT -ExperimentsInHonesty,2024-04-02T22:24:42Z,- ExperimentsInHonesty commented on issue: [5780](https://github.com/hackforla/website/issues/5780#issuecomment-2033204502) at 2024-04-02 03:24 PM PDT -ExperimentsInHonesty,2024-04-02T22:48:08Z,- ExperimentsInHonesty commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2033230019) at 2024-04-02 03:48 PM PDT -ExperimentsInHonesty,2024-04-02T22:50:54Z,- ExperimentsInHonesty commented on issue: [5885](https://github.com/hackforla/website/issues/5885#issuecomment-2033232807) at 2024-04-02 03:50 PM PDT -ExperimentsInHonesty,2024-04-02T22:51:44Z,- ExperimentsInHonesty commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2033234940) at 2024-04-02 03:51 PM PDT -ExperimentsInHonesty,2024-04-03T20:11:02Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-03 01:11 PM PDT -ExperimentsInHonesty,2024-04-03T20:16:13Z,- ExperimentsInHonesty commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2035501645) at 2024-04-03 01:16 PM PDT -ExperimentsInHonesty,2024-04-03T21:30:59Z,- ExperimentsInHonesty commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2035630760) at 2024-04-03 02:30 PM PDT -ExperimentsInHonesty,2024-04-04T18:20:01Z,- ExperimentsInHonesty commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2037889757) at 2024-04-04 11:20 AM PDT -ExperimentsInHonesty,2024-04-05T17:33:16Z,- ExperimentsInHonesty commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2040310588) at 2024-04-05 10:33 AM PDT -ExperimentsInHonesty,2024-04-07T18:08:50Z,- ExperimentsInHonesty commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2041548567) at 2024-04-07 11:08 AM PDT -ExperimentsInHonesty,2024-04-07T18:31:19Z,- ExperimentsInHonesty commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2041555977) at 2024-04-07 11:31 AM PDT -ExperimentsInHonesty,2024-04-07T18:36:36Z,- ExperimentsInHonesty commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2041557229) at 2024-04-07 11:36 AM PDT -ExperimentsInHonesty,2024-04-07T18:45:40Z,- ExperimentsInHonesty commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2041559199) at 2024-04-07 11:45 AM PDT -ExperimentsInHonesty,2024-04-07T19:02:26Z,- ExperimentsInHonesty commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-2041571529) at 2024-04-07 12:02 PM PDT -ExperimentsInHonesty,2024-04-07T19:02:26Z,- ExperimentsInHonesty closed issue as completed: [6225](https://github.com/hackforla/website/issues/6225#event-12384886070) at 2024-04-07 12:02 PM PDT -ExperimentsInHonesty,2024-04-08T00:54:29Z,- ExperimentsInHonesty commented on issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-2041682576) at 2024-04-07 05:54 PM PDT -ExperimentsInHonesty,2024-04-08T00:54:29Z,- ExperimentsInHonesty reopened issue: [5758](https://github.com/hackforla/website/issues/5758#issuecomment-2041682576) at 2024-04-07 05:54 PM PDT -ExperimentsInHonesty,2024-04-08T00:59:12Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2041685637) at 2024-04-07 05:59 PM PDT -ExperimentsInHonesty,2024-04-08T21:00:19Z,- ExperimentsInHonesty commented on issue: [5233](https://github.com/hackforla/website/issues/5233#issuecomment-2043633848) at 2024-04-08 02:00 PM PDT -ExperimentsInHonesty,2024-04-09T00:44:45Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2043940837) at 2024-04-08 05:44 PM PDT -ExperimentsInHonesty,2024-04-09T20:42:08Z,- ExperimentsInHonesty opened issue: [6614](https://github.com/hackforla/website/issues/6614) at 2024-04-09 01:42 PM PDT -ExperimentsInHonesty,2024-04-09T20:44:26Z,- ExperimentsInHonesty assigned to issue: [6614](https://github.com/hackforla/website/issues/6614) at 2024-04-09 01:44 PM PDT -ExperimentsInHonesty,2024-04-09T22:04:39Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2046120452) at 2024-04-09 03:04 PM PDT -ExperimentsInHonesty,2024-04-09T22:07:47Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2046123766) at 2024-04-09 03:07 PM PDT -ExperimentsInHonesty,2024-04-09T23:02:25Z,- ExperimentsInHonesty commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2046173895) at 2024-04-09 04:02 PM PDT -ExperimentsInHonesty,2024-04-09T23:50:20Z,- ExperimentsInHonesty commented on issue: [6326](https://github.com/hackforla/website/issues/6326#issuecomment-2046211680) at 2024-04-09 04:50 PM PDT -ExperimentsInHonesty,2024-04-10T01:38:18Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2046304370) at 2024-04-09 06:38 PM PDT -ExperimentsInHonesty,2024-04-10T01:49:27Z,- ExperimentsInHonesty commented on issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2046313581) at 2024-04-09 06:49 PM PDT -ExperimentsInHonesty,2024-04-10T01:52:08Z,- ExperimentsInHonesty closed issue as completed: [6389](https://github.com/hackforla/website/issues/6389#event-12415045685) at 2024-04-09 06:52 PM PDT -ExperimentsInHonesty,2024-04-10T02:12:12Z,- ExperimentsInHonesty commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2046334159) at 2024-04-09 07:12 PM PDT -ExperimentsInHonesty,2024-04-10T02:13:16Z,- ExperimentsInHonesty commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2046334879) at 2024-04-09 07:13 PM PDT -ExperimentsInHonesty,2024-04-10T02:14:31Z,- ExperimentsInHonesty commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2046335793) at 2024-04-09 07:14 PM PDT -ExperimentsInHonesty,2024-04-10T02:20:20Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2046340021) at 2024-04-09 07:20 PM PDT -ExperimentsInHonesty,2024-04-10T02:37:29Z,- ExperimentsInHonesty opened issue: [6615](https://github.com/hackforla/website/issues/6615) at 2024-04-09 07:37 PM PDT -ExperimentsInHonesty,2024-04-10T02:47:47Z,- ExperimentsInHonesty commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2046424757) at 2024-04-09 07:47 PM PDT -ExperimentsInHonesty,2024-04-10T22:01:31Z,- ExperimentsInHonesty closed issue as completed: [6296](https://github.com/hackforla/website/issues/6296#event-12428673439) at 2024-04-10 03:01 PM PDT -ExperimentsInHonesty,2024-04-10T22:01:53Z,- ExperimentsInHonesty commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-2048511426) at 2024-04-10 03:01 PM PDT -ExperimentsInHonesty,2024-04-10T23:07:29Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2048576438) at 2024-04-10 04:07 PM PDT -ExperimentsInHonesty,2024-04-14T18:01:42Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2054135875) at 2024-04-14 11:01 AM PDT -ExperimentsInHonesty,2024-04-14T18:09:42Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2054137735) at 2024-04-14 11:09 AM PDT -ExperimentsInHonesty,2024-04-14T19:01:46Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2054155370) at 2024-04-14 12:01 PM PDT -ExperimentsInHonesty,2024-04-15T20:21:41Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057736401) at 2024-04-15 01:21 PM PDT -ExperimentsInHonesty,2024-04-15T20:56:13Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057792260) at 2024-04-15 01:56 PM PDT -ExperimentsInHonesty,2024-04-15T21:13:55Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057820250) at 2024-04-15 02:13 PM PDT -ExperimentsInHonesty,2024-04-15T21:57:07Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2057879755) at 2024-04-15 02:57 PM PDT -ExperimentsInHonesty,2024-04-16T00:14:21Z,- ExperimentsInHonesty commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2058018157) at 2024-04-15 05:14 PM PDT -ExperimentsInHonesty,2024-04-16T01:35:14Z,- ExperimentsInHonesty commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2058078988) at 2024-04-15 06:35 PM PDT -ExperimentsInHonesty,2024-04-16T01:36:32Z,- ExperimentsInHonesty closed issue as completed: [5758](https://github.com/hackforla/website/issues/5758#event-12480261266) at 2024-04-15 06:36 PM PDT -ExperimentsInHonesty,2024-04-16T01:38:53Z,- ExperimentsInHonesty commented on issue: [5747](https://github.com/hackforla/website/issues/5747#issuecomment-2058081836) at 2024-04-15 06:38 PM PDT -ExperimentsInHonesty,2024-04-16T16:37:08Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2059505858) at 2024-04-16 09:37 AM PDT -ExperimentsInHonesty,2024-04-16T16:39:10Z,- ExperimentsInHonesty commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2059509192) at 2024-04-16 09:39 AM PDT -ExperimentsInHonesty,2024-04-16T16:42:09Z,- ExperimentsInHonesty commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2059514362) at 2024-04-16 09:42 AM PDT -ExperimentsInHonesty,2024-04-16T16:56:33Z,- ExperimentsInHonesty commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059537181) at 2024-04-16 09:56 AM PDT -ExperimentsInHonesty,2024-04-16T17:14:13Z,- ExperimentsInHonesty commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2059566587) at 2024-04-16 10:14 AM PDT -ExperimentsInHonesty,2024-04-16T17:28:37Z,- ExperimentsInHonesty commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2059588039) at 2024-04-16 10:28 AM PDT -ExperimentsInHonesty,2024-04-16T22:35:28Z,- ExperimentsInHonesty commented on issue: [6124](https://github.com/hackforla/website/issues/6124#issuecomment-2060022178) at 2024-04-16 03:35 PM PDT -ExperimentsInHonesty,2024-04-16T22:36:09Z,- ExperimentsInHonesty commented on issue: [6494](https://github.com/hackforla/website/issues/6494#issuecomment-2060022796) at 2024-04-16 03:36 PM PDT -ExperimentsInHonesty,2024-04-16T22:42:07Z,- ExperimentsInHonesty assigned to issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-2005514397) at 2024-04-16 03:42 PM PDT -ExperimentsInHonesty,2024-04-16T22:50:59Z,- ExperimentsInHonesty assigned to issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2054129686) at 2024-04-16 03:50 PM PDT -ExperimentsInHonesty,2024-04-16T22:55:43Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2060040648) at 2024-04-16 03:55 PM PDT -ExperimentsInHonesty,2024-04-16T22:55:57Z,- ExperimentsInHonesty assigned to issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-1989550005) at 2024-04-16 03:55 PM PDT -ExperimentsInHonesty,2024-04-16T22:56:08Z,- ExperimentsInHonesty assigned to issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1913746149) at 2024-04-16 03:56 PM PDT -ExperimentsInHonesty,2024-04-16T22:57:46Z,- ExperimentsInHonesty assigned to issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2060040648) at 2024-04-16 03:57 PM PDT -ExperimentsInHonesty,2024-04-17T18:30:33Z,- ExperimentsInHonesty commented on issue: [6642](https://github.com/hackforla/website/issues/6642#issuecomment-2061954860) at 2024-04-17 11:30 AM PDT -ExperimentsInHonesty,2024-04-17T18:33:04Z,- ExperimentsInHonesty commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2061961305) at 2024-04-17 11:33 AM PDT -ExperimentsInHonesty,2024-04-22T22:35:30Z,- ExperimentsInHonesty commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2071063699) at 2024-04-22 03:35 PM PDT -ExperimentsInHonesty,2024-04-22T22:57:32Z,- ExperimentsInHonesty commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2071088728) at 2024-04-22 03:57 PM PDT -ExperimentsInHonesty,2024-04-23T00:13:31Z,- ExperimentsInHonesty commented on pull request: [6660](https://github.com/hackforla/website/pull/6660#issuecomment-2071157320) at 2024-04-22 05:13 PM PDT -ExperimentsInHonesty,2024-04-23T00:16:49Z,- ExperimentsInHonesty commented on pull request: [6660](https://github.com/hackforla/website/pull/6660#issuecomment-2071160336) at 2024-04-22 05:16 PM PDT -ExperimentsInHonesty,2024-04-23T01:17:42Z,- ExperimentsInHonesty commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2071220826) at 2024-04-22 06:17 PM PDT -ExperimentsInHonesty,2024-04-23T17:58:07Z,- ExperimentsInHonesty commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2073047735) at 2024-04-23 10:58 AM PDT -ExperimentsInHonesty,2024-04-23T18:24:21Z,- ExperimentsInHonesty commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2073098283) at 2024-04-23 11:24 AM PDT -ExperimentsInHonesty,2024-04-23T18:30:50Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2073118589) at 2024-04-23 11:30 AM PDT -ExperimentsInHonesty,2024-04-23T22:52:45Z,- ExperimentsInHonesty commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2073608896) at 2024-04-23 03:52 PM PDT -ExperimentsInHonesty,2024-04-23T22:56:03Z,- ExperimentsInHonesty assigned to issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2028832372) at 2024-04-23 03:56 PM PDT -ExperimentsInHonesty,2024-04-24T00:02:52Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2073682298) at 2024-04-23 05:02 PM PDT -ExperimentsInHonesty,2024-04-24T00:08:37Z,- ExperimentsInHonesty commented on issue: [6403](https://github.com/hackforla/website/issues/6403#issuecomment-2073687635) at 2024-04-23 05:08 PM PDT -ExperimentsInHonesty,2024-04-24T00:15:54Z,- ExperimentsInHonesty commented on issue: [6700](https://github.com/hackforla/website/issues/6700#issuecomment-2073694582) at 2024-04-23 05:15 PM PDT -ExperimentsInHonesty,2024-04-25T00:40:03Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2076106376) at 2024-04-24 05:40 PM PDT -ExperimentsInHonesty,2024-04-25T01:15:35Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2076129649) at 2024-04-24 06:15 PM PDT -ExperimentsInHonesty,2024-04-25T02:23:22Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2076203968) at 2024-04-24 07:23 PM PDT -ExperimentsInHonesty,2024-04-25T16:40:47Z,- ExperimentsInHonesty unassigned from issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739570) at 2024-04-25 09:40 AM PDT -ExperimentsInHonesty,2024-04-26T18:50:24Z,- ExperimentsInHonesty commented on issue: [6765](https://github.com/hackforla/website/issues/6765#issuecomment-2079952460) at 2024-04-26 11:50 AM PDT -ExperimentsInHonesty,2024-04-26T18:50:24Z,- ExperimentsInHonesty closed issue as completed: [6765](https://github.com/hackforla/website/issues/6765#event-12627336971) at 2024-04-26 11:50 AM PDT -ExperimentsInHonesty,2024-04-26T18:57:51Z,- ExperimentsInHonesty commented on issue: [6763](https://github.com/hackforla/website/issues/6763#issuecomment-2079962377) at 2024-04-26 11:57 AM PDT -ExperimentsInHonesty,2024-04-26T19:55:50Z,- ExperimentsInHonesty unassigned from issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2078024067) at 2024-04-26 12:55 PM PDT -ExperimentsInHonesty,2024-04-28T16:43:04Z,- ExperimentsInHonesty commented on issue: [6639](https://github.com/hackforla/website/issues/6639#issuecomment-2081548524) at 2024-04-28 09:43 AM PDT -ExperimentsInHonesty,2024-04-28T16:44:49Z,- ExperimentsInHonesty commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2081550481) at 2024-04-28 09:44 AM PDT -ExperimentsInHonesty,2024-04-28T17:04:07Z,- ExperimentsInHonesty commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2081556895) at 2024-04-28 10:04 AM PDT -ExperimentsInHonesty,2024-04-28T17:07:04Z,- ExperimentsInHonesty commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081557664) at 2024-04-28 10:07 AM PDT -ExperimentsInHonesty,2024-04-28T17:13:47Z,- ExperimentsInHonesty commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2081559554) at 2024-04-28 10:13 AM PDT -ExperimentsInHonesty,2024-04-28T17:25:08Z,- ExperimentsInHonesty commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2081562604) at 2024-04-28 10:25 AM PDT -ExperimentsInHonesty,2024-04-29T23:07:05Z,- ExperimentsInHonesty opened issue: [6783](https://github.com/hackforla/website/issues/6783) at 2024-04-29 04:07 PM PDT -ExperimentsInHonesty,2024-04-29T23:56:01Z,- ExperimentsInHonesty opened issue: [6784](https://github.com/hackforla/website/issues/6784) at 2024-04-29 04:56 PM PDT -ExperimentsInHonesty,2024-04-30T00:47:02Z,- ExperimentsInHonesty commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2083982045) at 2024-04-29 05:47 PM PDT -ExperimentsInHonesty,2024-04-30T01:11:42Z,- ExperimentsInHonesty commented on issue: [4533](https://github.com/hackforla/website/issues/4533#issuecomment-2084044357) at 2024-04-29 06:11 PM PDT -ExperimentsInHonesty,2024-04-30T01:18:27Z,- ExperimentsInHonesty commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-2084059689) at 2024-04-29 06:18 PM PDT -ExperimentsInHonesty,2024-04-30T01:18:27Z,- ExperimentsInHonesty closed issue as not planned: [6269](https://github.com/hackforla/website/issues/6269#event-12650969510) at 2024-04-29 06:18 PM PDT -ExperimentsInHonesty,2024-04-30T01:19:56Z,- ExperimentsInHonesty unassigned from issue: [4932](https://github.com/hackforla/website/issues/4932) at 2024-04-29 06:19 PM PDT -ExperimentsInHonesty,2024-04-30T01:30:06Z,- ExperimentsInHonesty commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2084087409) at 2024-04-29 06:30 PM PDT -ExperimentsInHonesty,2024-04-30T01:35:18Z,- ExperimentsInHonesty commented on issue: [4679](https://github.com/hackforla/website/issues/4679#issuecomment-2084098415) at 2024-04-29 06:35 PM PDT -ExperimentsInHonesty,2024-04-30T01:42:09Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2084112675) at 2024-04-29 06:42 PM PDT -ExperimentsInHonesty,2024-04-30T18:34:32Z,- ExperimentsInHonesty commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2086484338) at 2024-04-30 11:34 AM PDT -ExperimentsInHonesty,2024-05-03T21:54:55Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2093812219) at 2024-05-03 02:54 PM PDT -ExperimentsInHonesty,2024-05-03T22:40:06Z,- ExperimentsInHonesty commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2093850057) at 2024-05-03 03:40 PM PDT -ExperimentsInHonesty,2024-05-03T22:49:48Z,- ExperimentsInHonesty commented on issue: [6805](https://github.com/hackforla/website/issues/6805#issuecomment-2093857862) at 2024-05-03 03:49 PM PDT -ExperimentsInHonesty,2024-05-03T22:54:32Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2093861444) at 2024-05-03 03:54 PM PDT -ExperimentsInHonesty,2024-05-03T23:30:57Z,- ExperimentsInHonesty commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2093883924) at 2024-05-03 04:30 PM PDT -ExperimentsInHonesty,2024-05-03T23:34:34Z,- ExperimentsInHonesty commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2093885537) at 2024-05-03 04:34 PM PDT -ExperimentsInHonesty,2024-05-03T23:37:43Z,- ExperimentsInHonesty commented on issue: [6321](https://github.com/hackforla/website/issues/6321#issuecomment-2093887232) at 2024-05-03 04:37 PM PDT -ExperimentsInHonesty,2024-05-03T23:40:45Z,- ExperimentsInHonesty commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2093888903) at 2024-05-03 04:40 PM PDT -ExperimentsInHonesty,2024-05-05T17:41:25Z,- ExperimentsInHonesty opened issue: [6819](https://github.com/hackforla/website/issues/6819) at 2024-05-05 10:41 AM PDT -ExperimentsInHonesty,2024-05-05T17:42:10Z,- ExperimentsInHonesty assigned to issue: [6819](https://github.com/hackforla/website/issues/6819) at 2024-05-05 10:42 AM PDT -ExperimentsInHonesty,2024-05-05T18:48:14Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2094910273) at 2024-05-05 11:48 AM PDT -ExperimentsInHonesty,2024-05-06T01:57:56Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2095072936) at 2024-05-05 06:57 PM PDT -ExperimentsInHonesty,2024-05-06T04:22:53Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2095175216) at 2024-05-05 09:22 PM PDT -ExperimentsInHonesty,2024-05-06T04:25:08Z,- ExperimentsInHonesty commented on issue: [5948](https://github.com/hackforla/website/issues/5948#issuecomment-2095176583) at 2024-05-05 09:25 PM PDT -ExperimentsInHonesty,2024-05-06T04:25:08Z,- ExperimentsInHonesty closed issue as not planned: [5948](https://github.com/hackforla/website/issues/5948#event-12709794809) at 2024-05-05 09:25 PM PDT -ExperimentsInHonesty,2024-05-06T04:31:39Z,- ExperimentsInHonesty commented on issue: [6787](https://github.com/hackforla/website/issues/6787#issuecomment-2095180971) at 2024-05-05 09:31 PM PDT -ExperimentsInHonesty,2024-05-06T22:37:12Z,- ExperimentsInHonesty commented on issue: [6807](https://github.com/hackforla/website/issues/6807#issuecomment-2097043959) at 2024-05-06 03:37 PM PDT -ExperimentsInHonesty,2024-05-06T22:53:24Z,- ExperimentsInHonesty commented on issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2097060377) at 2024-05-06 03:53 PM PDT -ExperimentsInHonesty,2024-05-07T00:20:57Z,- ExperimentsInHonesty commented on issue: [6805](https://github.com/hackforla/website/issues/6805#issuecomment-2097137975) at 2024-05-06 05:20 PM PDT -ExperimentsInHonesty,2024-05-07T00:24:57Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2097141267) at 2024-05-06 05:24 PM PDT -ExperimentsInHonesty,2024-05-07T00:36:35Z,- ExperimentsInHonesty commented on issue: [6819](https://github.com/hackforla/website/issues/6819#issuecomment-2097149996) at 2024-05-06 05:36 PM PDT -ExperimentsInHonesty,2024-05-07T00:55:46Z,- ExperimentsInHonesty closed issue as completed: [4470](https://github.com/hackforla/website/issues/4470#event-12721972464) at 2024-05-06 05:55 PM PDT -ExperimentsInHonesty,2024-05-07T16:46:08Z,- ExperimentsInHonesty commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2098886061) at 2024-05-07 09:46 AM PDT -ExperimentsInHonesty,2024-05-07T16:50:32Z,- ExperimentsInHonesty opened issue: [6833](https://github.com/hackforla/website/issues/6833) at 2024-05-07 09:50 AM PDT -ExperimentsInHonesty,2024-05-07T16:55:21Z,- ExperimentsInHonesty closed issue as completed: [6289](https://github.com/hackforla/website/issues/6289#event-12732609625) at 2024-05-07 09:55 AM PDT -ExperimentsInHonesty,2024-05-07T16:58:08Z,- ExperimentsInHonesty commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2098905705) at 2024-05-07 09:58 AM PDT -ExperimentsInHonesty,2024-05-07T17:00:27Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2098909438) at 2024-05-07 10:00 AM PDT -ExperimentsInHonesty,2024-05-07T17:09:08Z,- ExperimentsInHonesty commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2098924231) at 2024-05-07 10:09 AM PDT -ExperimentsInHonesty,2024-05-07T17:28:08Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2098955375) at 2024-05-07 10:28 AM PDT -ExperimentsInHonesty,2024-05-07T17:32:46Z,- ExperimentsInHonesty commented on issue: [3881](https://github.com/hackforla/website/issues/3881#issuecomment-2098963127) at 2024-05-07 10:32 AM PDT -ExperimentsInHonesty,2024-05-07T17:55:02Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2098998183) at 2024-05-07 10:55 AM PDT -ExperimentsInHonesty,2024-05-07T21:02:59Z,- ExperimentsInHonesty commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-2099305953) at 2024-05-07 02:02 PM PDT -ExperimentsInHonesty,2024-05-07T21:12:39Z,- ExperimentsInHonesty commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2099318913) at 2024-05-07 02:12 PM PDT -ExperimentsInHonesty,2024-05-08T18:06:19Z,- ExperimentsInHonesty commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2101126228) at 2024-05-08 11:06 AM PDT -ExperimentsInHonesty,2024-05-08T18:06:22Z,- ExperimentsInHonesty reopened issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2101126228) at 2024-05-08 11:06 AM PDT -ExperimentsInHonesty,2024-05-10T00:59:53Z,- ExperimentsInHonesty commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2103666187) at 2024-05-09 05:59 PM PDT -ExperimentsInHonesty,2024-05-19T16:50:40Z,- ExperimentsInHonesty commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2119298242) at 2024-05-19 09:50 AM PDT -ExperimentsInHonesty,2024-05-19T16:53:05Z,- ExperimentsInHonesty commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2119298802) at 2024-05-19 09:53 AM PDT -ExperimentsInHonesty,2024-05-19T17:07:33Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119302757) at 2024-05-19 10:07 AM PDT -ExperimentsInHonesty,2024-05-19T17:34:04Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119308826) at 2024-05-19 10:34 AM PDT -ExperimentsInHonesty,2024-05-19T17:46:32Z,- ExperimentsInHonesty commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119311601) at 2024-05-19 10:46 AM PDT -ExperimentsInHonesty,2024-05-20T17:16:45Z,- ExperimentsInHonesty opened issue: [6863](https://github.com/hackforla/website/issues/6863) at 2024-05-20 10:16 AM PDT -ExperimentsInHonesty,2024-05-21T01:37:14Z,- ExperimentsInHonesty assigned to issue: [4155](https://github.com/hackforla/website/issues/4155#issuecomment-1467224540) at 2024-05-20 06:37 PM PDT -ExperimentsInHonesty,2024-05-21T01:47:02Z,- ExperimentsInHonesty commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-2121548998) at 2024-05-20 06:47 PM PDT -ExperimentsInHonesty,2024-05-21T01:47:26Z,- ExperimentsInHonesty closed issue as not planned: [5375](https://github.com/hackforla/website/issues/5375#event-12872744752) at 2024-05-20 06:47 PM PDT -ExperimentsInHonesty,2024-05-21T01:59:10Z,- ExperimentsInHonesty commented on issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-2121563569) at 2024-05-20 06:59 PM PDT -ExperimentsInHonesty,2024-05-21T02:00:23Z,- ExperimentsInHonesty assigned to issue: [6140](https://github.com/hackforla/website/issues/6140#issuecomment-2121563569) at 2024-05-20 07:00 PM PDT -ExperimentsInHonesty,2024-05-21T02:02:39Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2121566909) at 2024-05-20 07:02 PM PDT -ExperimentsInHonesty,2024-05-26T16:28:34Z,- ExperimentsInHonesty commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2132278024) at 2024-05-26 09:28 AM PDT -ExperimentsInHonesty,2024-05-26T16:59:23Z,- ExperimentsInHonesty commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2132285814) at 2024-05-26 09:59 AM PDT -ExperimentsInHonesty,2024-05-26T18:42:54Z,- ExperimentsInHonesty commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2132343262) at 2024-05-26 11:42 AM PDT -ExperimentsInHonesty,2024-05-26T18:50:49Z,- ExperimentsInHonesty commented on issue: [6864](https://github.com/hackforla/website/issues/6864#issuecomment-2132356023) at 2024-05-26 11:50 AM PDT -ExperimentsInHonesty,2024-05-29T22:28:12Z,- ExperimentsInHonesty commented on issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-2138360625) at 2024-05-29 03:28 PM PDT -ExperimentsInHonesty,2024-05-29T22:28:12Z,- ExperimentsInHonesty reopened issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-2138360625) at 2024-05-29 03:28 PM PDT -ExperimentsInHonesty,2024-06-02T16:48:54Z,- ExperimentsInHonesty commented on issue: [6838](https://github.com/hackforla/website/issues/6838#issuecomment-2143939191) at 2024-06-02 09:48 AM PDT -ExperimentsInHonesty,2024-06-02T16:57:35Z,- ExperimentsInHonesty commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2143942627) at 2024-06-02 09:57 AM PDT -ExperimentsInHonesty,2024-06-02T20:46:05Z,- ExperimentsInHonesty commented on issue: [6903](https://github.com/hackforla/website/issues/6903#issuecomment-2144015615) at 2024-06-02 01:46 PM PDT -ExperimentsInHonesty,2024-06-02T20:52:18Z,- ExperimentsInHonesty commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2144017219) at 2024-06-02 01:52 PM PDT -ExperimentsInHonesty,2024-06-02T21:23:27Z,- ExperimentsInHonesty commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2144025602) at 2024-06-02 02:23 PM PDT -ExperimentsInHonesty,2024-06-02T21:27:14Z,- ExperimentsInHonesty commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2144026457) at 2024-06-02 02:27 PM PDT -ExperimentsInHonesty,2024-06-02T21:29:12Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2144026930) at 2024-06-02 02:29 PM PDT -ExperimentsInHonesty,2024-06-03T03:13:50Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2144199281) at 2024-06-02 08:13 PM PDT -ExperimentsInHonesty,2024-06-03T07:21:26Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2144457123) at 2024-06-03 12:21 AM PDT -ExperimentsInHonesty,2024-06-03T07:32:31Z,- ExperimentsInHonesty commented on issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2144476129) at 2024-06-03 12:32 AM PDT -ExperimentsInHonesty,2024-06-03T07:33:33Z,- ExperimentsInHonesty unassigned from issue: [6645](https://github.com/hackforla/website/issues/6645#issuecomment-2144476918) at 2024-06-03 12:33 AM PDT -ExperimentsInHonesty,2024-06-03T07:59:38Z,- ExperimentsInHonesty commented on issue: [6451](https://github.com/hackforla/website/issues/6451#issuecomment-2144525131) at 2024-06-03 12:59 AM PDT -ExperimentsInHonesty,2024-06-03T07:59:38Z,- ExperimentsInHonesty closed issue by PR 6961: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-03 12:59 AM PDT -ExperimentsInHonesty,2024-06-03T08:02:43Z,- ExperimentsInHonesty unassigned from issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-2060041087) at 2024-06-03 01:02 AM PDT -ExperimentsInHonesty,2024-06-03T08:07:58Z,- ExperimentsInHonesty unassigned from issue: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-03 01:07 AM PDT -ExperimentsInHonesty,2024-06-03T08:08:08Z,- ExperimentsInHonesty reopened issue: [6451](https://github.com/hackforla/website/issues/6451#event-13016516844) at 2024-06-03 01:08 AM PDT -ExperimentsInHonesty,2024-06-04T00:44:09Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2146359961) at 2024-06-03 05:44 PM PDT -ExperimentsInHonesty,2024-06-04T16:01:58Z,- ExperimentsInHonesty commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2147895750) at 2024-06-04 09:01 AM PDT -ExperimentsInHonesty,2024-06-04T16:13:02Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2147918890) at 2024-06-04 09:13 AM PDT -ExperimentsInHonesty,2024-06-04T17:21:12Z,- ExperimentsInHonesty commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-2148041144) at 2024-06-04 10:21 AM PDT -ExperimentsInHonesty,2024-06-04T17:56:39Z,- ExperimentsInHonesty commented on issue: [4678](https://github.com/hackforla/website/issues/4678#issuecomment-2148099781) at 2024-06-04 10:56 AM PDT -ExperimentsInHonesty,2024-06-04T18:09:03Z,- ExperimentsInHonesty commented on issue: [6903](https://github.com/hackforla/website/issues/6903#issuecomment-2148119803) at 2024-06-04 11:09 AM PDT -ExperimentsInHonesty,2024-06-04T22:09:35Z,- ExperimentsInHonesty closed issue as completed: [5926](https://github.com/hackforla/website/issues/5926#event-13042389291) at 2024-06-04 03:09 PM PDT -ExperimentsInHonesty,2024-06-04T22:54:44Z,- ExperimentsInHonesty commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2148545318) at 2024-06-04 03:54 PM PDT -ExperimentsInHonesty,2024-06-04T22:54:44Z,- ExperimentsInHonesty closed issue as not planned: [6859](https://github.com/hackforla/website/issues/6859#event-13042732950) at 2024-06-04 03:54 PM PDT -ExperimentsInHonesty,2024-06-04T22:54:58Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148545693) at 2024-06-04 03:54 PM PDT -ExperimentsInHonesty,2024-06-04T22:55:33Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148546246) at 2024-06-04 03:55 PM PDT -ExperimentsInHonesty,2024-06-04T23:20:42Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2148567579) at 2024-06-04 04:20 PM PDT -ExperimentsInHonesty,2024-06-05T00:10:41Z,- ExperimentsInHonesty commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2148607672) at 2024-06-04 05:10 PM PDT -ExperimentsInHonesty,2024-06-05T00:26:38Z,- ExperimentsInHonesty commented on issue: [5630](https://github.com/hackforla/website/issues/5630#issuecomment-2148622166) at 2024-06-04 05:26 PM PDT -ExperimentsInHonesty,2024-06-05T00:35:18Z,- ExperimentsInHonesty commented on issue: [4778](https://github.com/hackforla/website/issues/4778#issuecomment-2148628780) at 2024-06-04 05:35 PM PDT -ExperimentsInHonesty,2024-06-08T23:02:16Z,- ExperimentsInHonesty commented on issue: [6223](https://github.com/hackforla/website/issues/6223#issuecomment-2156218162) at 2024-06-08 04:02 PM PDT -ExperimentsInHonesty,2024-06-08T23:02:36Z,- ExperimentsInHonesty commented on issue: [6222](https://github.com/hackforla/website/issues/6222#issuecomment-2156218235) at 2024-06-08 04:02 PM PDT -ExperimentsInHonesty,2024-06-08T23:02:51Z,- ExperimentsInHonesty commented on issue: [6221](https://github.com/hackforla/website/issues/6221#issuecomment-2156218270) at 2024-06-08 04:02 PM PDT -ExperimentsInHonesty,2024-06-08T23:03:58Z,- ExperimentsInHonesty commented on issue: [6220](https://github.com/hackforla/website/issues/6220#issuecomment-2156218544) at 2024-06-08 04:03 PM PDT -ExperimentsInHonesty,2024-06-09T00:56:33Z,- ExperimentsInHonesty commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2156250300) at 2024-06-08 05:56 PM PDT -ExperimentsInHonesty,2024-06-09T01:19:54Z,- ExperimentsInHonesty commented on issue: [6185](https://github.com/hackforla/website/issues/6185#issuecomment-2156256508) at 2024-06-08 06:19 PM PDT -ExperimentsInHonesty,2024-06-09T01:21:00Z,- ExperimentsInHonesty commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2156256813) at 2024-06-08 06:21 PM PDT -ExperimentsInHonesty,2024-06-09T01:21:22Z,- ExperimentsInHonesty commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2156256892) at 2024-06-08 06:21 PM PDT -ExperimentsInHonesty,2024-06-09T01:31:18Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156260076) at 2024-06-08 06:31 PM PDT -ExperimentsInHonesty,2024-06-09T01:34:33Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156261605) at 2024-06-08 06:34 PM PDT -ExperimentsInHonesty,2024-06-09T01:41:58Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156263610) at 2024-06-08 06:41 PM PDT -ExperimentsInHonesty,2024-06-09T01:44:11Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156264132) at 2024-06-08 06:44 PM PDT -ExperimentsInHonesty,2024-06-09T01:49:37Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156265561) at 2024-06-08 06:49 PM PDT -ExperimentsInHonesty,2024-06-09T01:55:09Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156268649) at 2024-06-08 06:55 PM PDT -ExperimentsInHonesty,2024-06-09T02:05:00Z,- ExperimentsInHonesty commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2156271665) at 2024-06-08 07:05 PM PDT -ExperimentsInHonesty,2024-06-09T02:09:59Z,- ExperimentsInHonesty commented on issue: [5450](https://github.com/hackforla/website/issues/5450#issuecomment-2156272797) at 2024-06-08 07:09 PM PDT -ExperimentsInHonesty,2024-06-09T02:14:08Z,- ExperimentsInHonesty commented on issue: [4841](https://github.com/hackforla/website/issues/4841#issuecomment-2156273851) at 2024-06-08 07:14 PM PDT -ExperimentsInHonesty,2024-06-09T02:17:58Z,- ExperimentsInHonesty commented on issue: [4370](https://github.com/hackforla/website/issues/4370#issuecomment-2156275036) at 2024-06-08 07:17 PM PDT -ExperimentsInHonesty,2024-06-09T02:40:14Z,- ExperimentsInHonesty commented on issue: [1029](https://github.com/hackforla/website/issues/1029#issuecomment-2156280589) at 2024-06-08 07:40 PM PDT -ExperimentsInHonesty,2024-06-09T02:47:55Z,- ExperimentsInHonesty commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-2156282889) at 2024-06-08 07:47 PM PDT -ExperimentsInHonesty,2024-06-09T02:51:37Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156283806) at 2024-06-08 07:51 PM PDT -ExperimentsInHonesty,2024-06-09T02:53:46Z,- ExperimentsInHonesty commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2156284296) at 2024-06-08 07:53 PM PDT -ExperimentsInHonesty,2024-06-09T16:27:24Z,- ExperimentsInHonesty commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2156688309) at 2024-06-09 09:27 AM PDT -ExperimentsInHonesty,2024-06-09T16:28:42Z,- ExperimentsInHonesty commented on issue: [6812](https://github.com/hackforla/website/issues/6812#issuecomment-2156688660) at 2024-06-09 09:28 AM PDT -ExperimentsInHonesty,2024-06-09T16:28:42Z,- ExperimentsInHonesty closed issue as completed: [6812](https://github.com/hackforla/website/issues/6812#event-13091981689) at 2024-06-09 09:28 AM PDT -ExperimentsInHonesty,2024-06-09T16:41:37Z,- ExperimentsInHonesty commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2156693378) at 2024-06-09 09:41 AM PDT -ExperimentsInHonesty,2024-06-09T16:55:39Z,- ExperimentsInHonesty commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2156697479) at 2024-06-09 09:55 AM PDT -ExperimentsInHonesty,2024-06-10T21:00:23Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-2159275047) at 2024-06-10 02:00 PM PDT -ExperimentsInHonesty,2024-06-11T00:16:45Z,- ExperimentsInHonesty commented on issue: [4229](https://github.com/hackforla/website/issues/4229#issuecomment-2159534869) at 2024-06-10 05:16 PM PDT -ExperimentsInHonesty,2024-06-11T00:16:45Z,- ExperimentsInHonesty closed issue as not planned: [4229](https://github.com/hackforla/website/issues/4229#event-13108822251) at 2024-06-10 05:16 PM PDT -ExperimentsInHonesty,2024-06-11T01:00:11Z,- ExperimentsInHonesty closed issue as not planned: [5244](https://github.com/hackforla/website/issues/5244#event-13109052451) at 2024-06-10 06:00 PM PDT -ExperimentsInHonesty,2024-06-11T01:05:39Z,- ExperimentsInHonesty commented on issue: [5277](https://github.com/hackforla/website/issues/5277#issuecomment-2159577711) at 2024-06-10 06:05 PM PDT -ExperimentsInHonesty,2024-06-11T01:11:31Z,- ExperimentsInHonesty commented on issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-2159582716) at 2024-06-10 06:11 PM PDT -ExperimentsInHonesty,2024-06-11T01:16:20Z,- ExperimentsInHonesty closed issue as completed: [5450](https://github.com/hackforla/website/issues/5450#event-13109140323) at 2024-06-10 06:16 PM PDT -ExperimentsInHonesty,2024-06-11T01:22:23Z,- ExperimentsInHonesty commented on issue: [4190](https://github.com/hackforla/website/issues/4190#issuecomment-2159591888) at 2024-06-10 06:22 PM PDT -ExperimentsInHonesty,2024-06-11T16:20:00Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2161154914) at 2024-06-11 09:20 AM PDT -ExperimentsInHonesty,2024-06-11T16:20:00Z,- ExperimentsInHonesty closed issue as completed: [3222](https://github.com/hackforla/website/issues/3222#event-13119810744) at 2024-06-11 09:20 AM PDT -ExperimentsInHonesty,2024-06-11T16:21:37Z,- ExperimentsInHonesty opened issue: [6987](https://github.com/hackforla/website/issues/6987) at 2024-06-11 09:21 AM PDT -ExperimentsInHonesty,2024-06-11T16:45:52Z,- ExperimentsInHonesty reopened issue: [3222](https://github.com/hackforla/website/issues/3222#event-13119810744) at 2024-06-11 09:45 AM PDT -ExperimentsInHonesty,2024-06-13T02:41:55Z,- ExperimentsInHonesty closed issue as completed: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-12 07:41 PM PDT -ExperimentsInHonesty,2024-06-13T02:46:50Z,- ExperimentsInHonesty assigned to issue: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-12 07:46 PM PDT -ExperimentsInHonesty,2024-06-13T02:46:58Z,- ExperimentsInHonesty unassigned from issue: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-12 07:46 PM PDT -ExperimentsInHonesty,2024-06-13T23:57:40Z,- ExperimentsInHonesty reopened issue: [6987](https://github.com/hackforla/website/issues/6987#event-13139520754) at 2024-06-13 04:57 PM PDT -ExperimentsInHonesty,2024-06-14T14:54:28Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2168215081) at 2024-06-14 07:54 AM PDT -ExperimentsInHonesty,2024-06-14T18:15:56Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2168533893) at 2024-06-14 11:15 AM PDT -ExperimentsInHonesty,2024-06-14T18:33:11Z,- ExperimentsInHonesty commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2168559544) at 2024-06-14 11:33 AM PDT -ExperimentsInHonesty,2024-06-14T18:43:07Z,- ExperimentsInHonesty opened issue: [7005](https://github.com/hackforla/website/issues/7005) at 2024-06-14 11:43 AM PDT -ExperimentsInHonesty,2024-06-14T18:46:25Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2168576181) at 2024-06-14 11:46 AM PDT -ExperimentsInHonesty,2024-06-14T18:48:49Z,- ExperimentsInHonesty assigned to issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2168576181) at 2024-06-14 11:48 AM PDT -ExperimentsInHonesty,2024-06-14T19:37:20Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2168645971) at 2024-06-14 12:37 PM PDT -ExperimentsInHonesty,2024-06-14T19:45:46Z,- ExperimentsInHonesty opened issue: [7007](https://github.com/hackforla/website/issues/7007) at 2024-06-14 12:45 PM PDT -ExperimentsInHonesty,2024-06-14T19:46:08Z,- ExperimentsInHonesty assigned to issue: [7007](https://github.com/hackforla/website/issues/7007) at 2024-06-14 12:46 PM PDT -ExperimentsInHonesty,2024-06-15T18:25:17Z,- ExperimentsInHonesty commented on issue: [7004](https://github.com/hackforla/website/issues/7004#issuecomment-2170471384) at 2024-06-15 11:25 AM PDT -ExperimentsInHonesty,2024-06-15T18:54:30Z,- ExperimentsInHonesty commented on issue: [6940](https://github.com/hackforla/website/issues/6940#issuecomment-2170523725) at 2024-06-15 11:54 AM PDT -ExperimentsInHonesty,2024-06-15T19:11:28Z,- ExperimentsInHonesty commented on issue: [6967](https://github.com/hackforla/website/issues/6967#issuecomment-2170537215) at 2024-06-15 12:11 PM PDT -ExperimentsInHonesty,2024-06-15T19:11:29Z,- ExperimentsInHonesty closed issue as completed: [6967](https://github.com/hackforla/website/issues/6967#event-13171169243) at 2024-06-15 12:11 PM PDT -ExperimentsInHonesty,2024-06-15T19:17:01Z,- ExperimentsInHonesty commented on issue: [6209](https://github.com/hackforla/website/issues/6209#issuecomment-2170543205) at 2024-06-15 12:17 PM PDT -ExperimentsInHonesty,2024-06-15T19:43:02Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2170595357) at 2024-06-15 12:43 PM PDT -ExperimentsInHonesty,2024-06-15T20:18:50Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2170632943) at 2024-06-15 01:18 PM PDT -ExperimentsInHonesty,2024-06-17T23:58:52Z,- ExperimentsInHonesty commented on issue: [6986](https://github.com/hackforla/website/issues/6986#issuecomment-2174649947) at 2024-06-17 04:58 PM PDT -ExperimentsInHonesty,2024-06-17T23:59:19Z,- ExperimentsInHonesty commented on issue: [6918](https://github.com/hackforla/website/issues/6918#issuecomment-2174650424) at 2024-06-17 04:59 PM PDT -ExperimentsInHonesty,2024-06-18T00:04:06Z,- ExperimentsInHonesty commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2174655794) at 2024-06-17 05:04 PM PDT -ExperimentsInHonesty,2024-06-18T01:03:47Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2174712162) at 2024-06-17 06:03 PM PDT -ExperimentsInHonesty,2024-06-18T01:07:33Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2174715860) at 2024-06-17 06:07 PM PDT -ExperimentsInHonesty,2024-06-18T01:43:34Z,- ExperimentsInHonesty commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2174750623) at 2024-06-17 06:43 PM PDT -ExperimentsInHonesty,2024-06-18T01:55:29Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174764652) at 2024-06-17 06:55 PM PDT -ExperimentsInHonesty,2024-06-18T01:55:30Z,- ExperimentsInHonesty reopened issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174764652) at 2024-06-17 06:55 PM PDT -ExperimentsInHonesty,2024-06-18T01:57:46Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2174767374) at 2024-06-17 06:57 PM PDT -ExperimentsInHonesty,2024-06-19T21:04:24Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2179454587) at 2024-06-19 02:04 PM PDT -ExperimentsInHonesty,2024-06-22T00:18:00Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2183602973) at 2024-06-21 05:18 PM PDT -ExperimentsInHonesty,2024-06-22T00:20:17Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2183604150) at 2024-06-21 05:20 PM PDT -ExperimentsInHonesty,2024-06-22T22:15:48Z,- ExperimentsInHonesty commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2184212181) at 2024-06-22 03:15 PM PDT -ExperimentsInHonesty,2024-06-22T22:22:24Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2184213781) at 2024-06-22 03:22 PM PDT -ExperimentsInHonesty,2024-06-23T16:31:54Z,- ExperimentsInHonesty closed issue as completed: [7034](https://github.com/hackforla/website/issues/7034#event-13256825514) at 2024-06-23 09:31 AM PDT -ExperimentsInHonesty,2024-06-23T16:33:37Z,- ExperimentsInHonesty commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2185145971) at 2024-06-23 09:33 AM PDT -ExperimentsInHonesty,2024-06-23T16:38:15Z,- ExperimentsInHonesty commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2185147329) at 2024-06-23 09:38 AM PDT -ExperimentsInHonesty,2024-06-23T17:06:18Z,- ExperimentsInHonesty closed issue as completed: [6844](https://github.com/hackforla/website/issues/6844#event-13256919956) at 2024-06-23 10:06 AM PDT -ExperimentsInHonesty,2024-06-23T17:15:53Z,- ExperimentsInHonesty commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2185167370) at 2024-06-23 10:15 AM PDT -ExperimentsInHonesty,2024-06-23T18:34:57Z,- ExperimentsInHonesty assigned to issue: [6995](https://github.com/hackforla/website/issues/6995#issuecomment-2163953646) at 2024-06-23 11:34 AM PDT -ExperimentsInHonesty,2024-06-23T18:35:09Z,- ExperimentsInHonesty unassigned from issue: [6995](https://github.com/hackforla/website/issues/6995#issuecomment-2163953646) at 2024-06-23 11:35 AM PDT -ExperimentsInHonesty,2024-06-23T18:36:46Z,- ExperimentsInHonesty commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2185264899) at 2024-06-23 11:36 AM PDT -ExperimentsInHonesty,2024-06-23T18:45:35Z,- ExperimentsInHonesty reopened issue: [6998](https://github.com/hackforla/website/issues/6998#event-13257788708) at 2024-06-23 11:45 AM PDT -ExperimentsInHonesty,2024-06-23T18:45:50Z,- ExperimentsInHonesty commented on issue: [6998](https://github.com/hackforla/website/issues/6998#issuecomment-2185267286) at 2024-06-23 11:45 AM PDT -ExperimentsInHonesty,2024-06-23T18:48:33Z,- ExperimentsInHonesty commented on issue: [6997](https://github.com/hackforla/website/issues/6997#issuecomment-2185267991) at 2024-06-23 11:48 AM PDT -ExperimentsInHonesty,2024-06-23T18:48:36Z,- ExperimentsInHonesty reopened issue: [6997](https://github.com/hackforla/website/issues/6997#issuecomment-2185267991) at 2024-06-23 11:48 AM PDT -ExperimentsInHonesty,2024-06-23T18:49:14Z,- ExperimentsInHonesty commented on issue: [6996](https://github.com/hackforla/website/issues/6996#issuecomment-2185268163) at 2024-06-23 11:49 AM PDT -ExperimentsInHonesty,2024-06-23T18:49:16Z,- ExperimentsInHonesty reopened issue: [6996](https://github.com/hackforla/website/issues/6996#issuecomment-2185268163) at 2024-06-23 11:49 AM PDT -ExperimentsInHonesty,2024-06-23T18:51:01Z,- ExperimentsInHonesty closed issue as completed: [6995](https://github.com/hackforla/website/issues/6995#event-13257805701) at 2024-06-23 11:51 AM PDT -ExperimentsInHonesty,2024-06-23T18:52:31Z,- ExperimentsInHonesty closed issue by PR 7053: [6996](https://github.com/hackforla/website/issues/6996#event-13257808058) at 2024-06-23 11:52 AM PDT -ExperimentsInHonesty,2024-06-24T17:13:59Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2187041982) at 2024-06-24 10:13 AM PDT -ExperimentsInHonesty,2024-06-24T17:16:29Z,- ExperimentsInHonesty commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2187046084) at 2024-06-24 10:16 AM PDT -ExperimentsInHonesty,2024-06-24T17:21:30Z,- ExperimentsInHonesty commented on issue: [6628](https://github.com/hackforla/website/issues/6628#issuecomment-2187054102) at 2024-06-24 10:21 AM PDT -ExperimentsInHonesty,2024-06-24T17:22:24Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2187055561) at 2024-06-24 10:22 AM PDT -ExperimentsInHonesty,2024-06-24T17:36:09Z,- ExperimentsInHonesty commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2187079775) at 2024-06-24 10:36 AM PDT -ExperimentsInHonesty,2024-06-25T00:57:44Z,- ExperimentsInHonesty commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2187709493) at 2024-06-24 05:57 PM PDT -ExperimentsInHonesty,2024-06-25T00:58:29Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2187710008) at 2024-06-24 05:58 PM PDT -ExperimentsInHonesty,2024-06-25T01:17:47Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2187729076) at 2024-06-24 06:17 PM PDT -ExperimentsInHonesty,2024-06-25T20:44:10Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189935530) at 2024-06-25 01:44 PM PDT -ExperimentsInHonesty,2024-06-25T20:56:39Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189954519) at 2024-06-25 01:56 PM PDT -ExperimentsInHonesty,2024-06-25T21:01:17Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189963289) at 2024-06-25 02:01 PM PDT -ExperimentsInHonesty,2024-06-25T21:14:39Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2189981945) at 2024-06-25 02:14 PM PDT -ExperimentsInHonesty,2024-06-27T16:30:30Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2195172423) at 2024-06-27 09:30 AM PDT -ExperimentsInHonesty,2024-07-01T19:16:40Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2200855368) at 2024-07-01 12:16 PM PDT -ExperimentsInHonesty,2024-07-01T19:21:57Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2200863113) at 2024-07-01 12:21 PM PDT -ExperimentsInHonesty,2024-07-02T00:27:56Z,- ExperimentsInHonesty commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2201524234) at 2024-07-01 05:27 PM PDT -ExperimentsInHonesty,2024-07-02T00:49:26Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2201563412) at 2024-07-01 05:49 PM PDT -ExperimentsInHonesty,2024-07-02T01:10:07Z,- ExperimentsInHonesty commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2201593251) at 2024-07-01 06:10 PM PDT -ExperimentsInHonesty,2024-07-02T01:22:50Z,- ExperimentsInHonesty commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2201609275) at 2024-07-01 06:22 PM PDT -ExperimentsInHonesty,2024-07-02T18:04:43Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2203986920) at 2024-07-02 11:04 AM PDT -ExperimentsInHonesty,2024-07-08T20:11:41Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2215167527) at 2024-07-08 01:11 PM PDT -ExperimentsInHonesty,2024-07-08T20:13:23Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2215176094) at 2024-07-08 01:13 PM PDT -ExperimentsInHonesty,2024-07-08T20:13:54Z,- ExperimentsInHonesty commented on issue: [6614](https://github.com/hackforla/website/issues/6614#issuecomment-2215178381) at 2024-07-08 01:13 PM PDT -ExperimentsInHonesty,2024-07-09T00:28:17Z,- ExperimentsInHonesty commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2215746206) at 2024-07-08 05:28 PM PDT -ExperimentsInHonesty,2024-07-09T01:43:56Z,- ExperimentsInHonesty opened issue: [7100](https://github.com/hackforla/website/issues/7100) at 2024-07-08 06:43 PM PDT -ExperimentsInHonesty,2024-07-09T01:44:19Z,- ExperimentsInHonesty assigned to issue: [7100](https://github.com/hackforla/website/issues/7100) at 2024-07-08 06:44 PM PDT -ExperimentsInHonesty,2024-07-09T01:44:25Z,- ExperimentsInHonesty unassigned from issue: [7100](https://github.com/hackforla/website/issues/7100) at 2024-07-08 06:44 PM PDT -ExperimentsInHonesty,2024-07-13T02:22:32Z,- ExperimentsInHonesty commented on issue: [7092](https://github.com/hackforla/website/issues/7092#issuecomment-2226725169) at 2024-07-12 07:22 PM PDT -ExperimentsInHonesty,2024-07-13T02:25:38Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2226726028) at 2024-07-12 07:25 PM PDT -ExperimentsInHonesty,2024-07-13T02:28:04Z,- ExperimentsInHonesty commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2226726572) at 2024-07-12 07:28 PM PDT -ExperimentsInHonesty,2024-07-13T02:28:04Z,- ExperimentsInHonesty closed issue as not planned: [7011](https://github.com/hackforla/website/issues/7011#event-13494215535) at 2024-07-12 07:28 PM PDT -ExperimentsInHonesty,2024-07-16T00:17:59Z,- ExperimentsInHonesty closed issue as completed: [3265](https://github.com/hackforla/website/issues/3265#event-13512755989) at 2024-07-15 05:17 PM PDT -ExperimentsInHonesty,2024-07-16T00:58:23Z,- ExperimentsInHonesty commented on issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2229774533) at 2024-07-15 05:58 PM PDT -ExperimentsInHonesty,2024-07-23T02:11:08Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2244117121) at 2024-07-22 07:11 PM PDT -ExperimentsInHonesty,2024-07-23T03:10:05Z,- ExperimentsInHonesty commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2244165598) at 2024-07-22 08:10 PM PDT -ExperimentsInHonesty,2024-07-30T01:09:33Z,- ExperimentsInHonesty commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2257272094) at 2024-07-29 06:09 PM PDT -ExperimentsInHonesty,2024-08-05T03:49:46Z,- ExperimentsInHonesty commented on issue: [7144](https://github.com/hackforla/website/issues/7144#issuecomment-2268118125) at 2024-08-04 08:49 PM PDT -ExperimentsInHonesty,2024-08-05T22:15:52Z,- ExperimentsInHonesty commented on issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2270011834) at 2024-08-05 03:15 PM PDT -ExperimentsInHonesty,2024-08-06T00:05:15Z,- ExperimentsInHonesty commented on issue: [4944](https://github.com/hackforla/website/issues/4944#issuecomment-2270125173) at 2024-08-05 05:05 PM PDT -ExperimentsInHonesty,2024-08-06T16:11:10Z,- ExperimentsInHonesty commented on issue: [6607](https://github.com/hackforla/website/issues/6607#issuecomment-2271655137) at 2024-08-06 09:11 AM PDT -ExperimentsInHonesty,2024-08-06T16:11:11Z,- ExperimentsInHonesty closed issue as completed: [6607](https://github.com/hackforla/website/issues/6607#event-13781081220) at 2024-08-06 09:11 AM PDT -ExperimentsInHonesty,2024-08-06T16:12:27Z,- ExperimentsInHonesty commented on issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2271657526) at 2024-08-06 09:12 AM PDT -ExperimentsInHonesty,2024-08-06T16:12:28Z,- ExperimentsInHonesty closed issue as completed: [6964](https://github.com/hackforla/website/issues/6964#event-13781095748) at 2024-08-06 09:12 AM PDT -ExperimentsInHonesty,2024-08-06T16:15:10Z,- ExperimentsInHonesty commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271662341) at 2024-08-06 09:15 AM PDT -ExperimentsInHonesty,2024-08-06T16:16:57Z,- ExperimentsInHonesty commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2271665635) at 2024-08-06 09:16 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:10Z,- ExperimentsInHonesty commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2282841295) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:10Z,- ExperimentsInHonesty reopened issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2282841295) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:42Z,- ExperimentsInHonesty commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282841411) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:04:42Z,- ExperimentsInHonesty reopened issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2282841411) at 2024-08-11 11:04 AM PDT -ExperimentsInHonesty,2024-08-11T18:05:22Z,- ExperimentsInHonesty commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282841579) at 2024-08-11 11:05 AM PDT -ExperimentsInHonesty,2024-08-11T18:05:22Z,- ExperimentsInHonesty reopened issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2282841579) at 2024-08-11 11:05 AM PDT -ExperimentsInHonesty,2024-08-11T18:06:34Z,- ExperimentsInHonesty commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2282841902) at 2024-08-11 11:06 AM PDT -ExperimentsInHonesty,2024-08-11T18:15:15Z,- ExperimentsInHonesty commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2282844635) at 2024-08-11 11:15 AM PDT -ExperimentsInHonesty,2024-08-13T00:24:28Z,- ExperimentsInHonesty commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2285120477) at 2024-08-12 05:24 PM PDT -ExperimentsInHonesty,2024-08-13T00:31:36Z,- ExperimentsInHonesty commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2285126544) at 2024-08-12 05:31 PM PDT -ExperimentsInHonesty,2024-08-13T00:41:11Z,- ExperimentsInHonesty commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2285134185) at 2024-08-12 05:41 PM PDT -ExperimentsInHonesty,2024-08-13T00:42:49Z,- ExperimentsInHonesty commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2285135595) at 2024-08-12 05:42 PM PDT -ExperimentsInHonesty,2024-08-13T00:42:49Z,- ExperimentsInHonesty closed issue as completed: [6949](https://github.com/hackforla/website/issues/6949#event-13856201691) at 2024-08-12 05:42 PM PDT -ExperimentsInHonesty,2024-08-13T00:45:11Z,- ExperimentsInHonesty commented on issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-2285137660) at 2024-08-12 05:45 PM PDT -ExperimentsInHonesty,2024-08-18T15:24:40Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2295300286) at 2024-08-18 08:24 AM PDT -ExperimentsInHonesty,2024-08-18T15:32:41Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2295302820) at 2024-08-18 08:32 AM PDT -ExperimentsInHonesty,2024-08-18T15:33:56Z,- ExperimentsInHonesty commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2295303122) at 2024-08-18 08:33 AM PDT -ExperimentsInHonesty,2024-08-18T17:52:47Z,- ExperimentsInHonesty opened issue: [7313](https://github.com/hackforla/website/issues/7313) at 2024-08-18 10:52 AM PDT -ExperimentsInHonesty,2024-08-19T20:24:17Z,- ExperimentsInHonesty commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2297386212) at 2024-08-19 01:24 PM PDT -ExperimentsInHonesty,2024-08-20T00:03:17Z,- ExperimentsInHonesty commented on issue: [7253](https://github.com/hackforla/website/issues/7253#issuecomment-2297721180) at 2024-08-19 05:03 PM PDT -ExperimentsInHonesty,2024-08-20T00:20:40Z,- ExperimentsInHonesty commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2297738129) at 2024-08-19 05:20 PM PDT -ExperimentsInHonesty,2024-08-20T00:38:05Z,- ExperimentsInHonesty commented on issue: [7215](https://github.com/hackforla/website/issues/7215#issuecomment-2297752207) at 2024-08-19 05:38 PM PDT -ExperimentsInHonesty,2024-08-20T00:38:05Z,- ExperimentsInHonesty closed issue as not planned: [7215](https://github.com/hackforla/website/issues/7215#event-13937723299) at 2024-08-19 05:38 PM PDT -ExperimentsInHonesty,2024-08-20T00:40:09Z,- ExperimentsInHonesty commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2297753826) at 2024-08-19 05:40 PM PDT -ExperimentsInHonesty,2024-08-20T00:45:18Z,- ExperimentsInHonesty commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2297757820) at 2024-08-19 05:45 PM PDT -ExperimentsInHonesty,2024-08-20T00:49:22Z,- ExperimentsInHonesty commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2297760856) at 2024-08-19 05:49 PM PDT -ExperimentsInHonesty,2024-08-20T00:50:21Z,- ExperimentsInHonesty closed issue as completed: [7201](https://github.com/hackforla/website/issues/7201#event-13937789762) at 2024-08-19 05:50 PM PDT -ExperimentsInHonesty,2024-08-20T00:52:13Z,- ExperimentsInHonesty commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2297762888) at 2024-08-19 05:52 PM PDT -ExperimentsInHonesty,2024-08-20T00:54:39Z,- ExperimentsInHonesty commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2297764739) at 2024-08-19 05:54 PM PDT -ExperimentsInHonesty,2024-08-21T17:21:26Z,- ExperimentsInHonesty closed issue as completed: [6943](https://github.com/hackforla/website/issues/6943#event-13964064501) at 2024-08-21 10:21 AM PDT -ExperimentsInHonesty,2024-08-21T17:21:51Z,- ExperimentsInHonesty closed issue as completed: [6953](https://github.com/hackforla/website/issues/6953#event-13964069323) at 2024-08-21 10:21 AM PDT -ExperimentsInHonesty,2024-08-25T18:06:59Z,- ExperimentsInHonesty commented on issue: [6229](https://github.com/hackforla/website/issues/6229#issuecomment-2308944670) at 2024-08-25 11:06 AM PDT -ExperimentsInHonesty,2024-08-27T00:48:05Z,- ExperimentsInHonesty commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2311358700) at 2024-08-26 05:48 PM PDT -ExperimentsInHonesty,2024-08-27T01:25:06Z,- ExperimentsInHonesty commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2311391464) at 2024-08-26 06:25 PM PDT -ExperimentsInHonesty,2024-08-27T01:48:19Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2311411859) at 2024-08-26 06:48 PM PDT -ExperimentsInHonesty,2024-09-03T01:14:03Z,- ExperimentsInHonesty commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-2325436051) at 2024-09-02 06:14 PM PDT -ExperimentsInHonesty,2024-09-03T01:14:08Z,- ExperimentsInHonesty closed issue as not planned: [4146](https://github.com/hackforla/website/issues/4146#event-14108109961) at 2024-09-02 06:14 PM PDT -ExperimentsInHonesty,2024-09-03T01:27:44Z,- ExperimentsInHonesty commented on issue: [7144](https://github.com/hackforla/website/issues/7144#issuecomment-2325444020) at 2024-09-02 06:27 PM PDT -ExperimentsInHonesty,2024-09-03T01:27:44Z,- ExperimentsInHonesty closed issue as not planned: [7144](https://github.com/hackforla/website/issues/7144#event-14108167244) at 2024-09-02 06:27 PM PDT -ExperimentsInHonesty,2024-09-03T22:16:47Z,- ExperimentsInHonesty commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2327538889) at 2024-09-03 03:16 PM PDT -ExperimentsInHonesty,2024-09-06T18:13:54Z,- ExperimentsInHonesty commented on issue: [7291](https://github.com/hackforla/website/issues/7291#issuecomment-2334585201) at 2024-09-06 11:13 AM PDT -ExperimentsInHonesty,2024-09-08T18:36:46Z,- ExperimentsInHonesty commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2336782608) at 2024-09-08 11:36 AM PDT -ExperimentsInHonesty,2024-09-09T21:01:35Z,- ExperimentsInHonesty commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2339083021) at 2024-09-09 02:01 PM PDT -ExperimentsInHonesty,2024-09-10T00:10:44Z,- ExperimentsInHonesty commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2339365630) at 2024-09-09 05:10 PM PDT -ExperimentsInHonesty,2024-09-10T00:33:33Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2339386230) at 2024-09-09 05:33 PM PDT -ExperimentsInHonesty,2024-09-10T00:44:26Z,- ExperimentsInHonesty commented on issue: [7424](https://github.com/hackforla/website/issues/7424#issuecomment-2339395291) at 2024-09-09 05:44 PM PDT -ExperimentsInHonesty,2024-09-13T18:28:09Z,- ExperimentsInHonesty commented on issue: [7421](https://github.com/hackforla/website/issues/7421#issuecomment-2349805885) at 2024-09-13 11:28 AM PDT -ExperimentsInHonesty,2024-09-13T18:51:59Z,- ExperimentsInHonesty commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2349894955) at 2024-09-13 11:51 AM PDT -ExperimentsInHonesty,2024-09-13T18:55:03Z,- ExperimentsInHonesty commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2349907730) at 2024-09-13 11:55 AM PDT -ExperimentsInHonesty,2024-09-13T23:22:32Z,- ExperimentsInHonesty commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2350694858) at 2024-09-13 04:22 PM PDT -ExperimentsInHonesty,2024-09-14T01:04:21Z,- ExperimentsInHonesty commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2350756398) at 2024-09-13 06:04 PM PDT -ExperimentsInHonesty,2024-09-14T01:17:18Z,- ExperimentsInHonesty commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2350761862) at 2024-09-13 06:17 PM PDT -ExperimentsInHonesty,2024-09-14T03:24:53Z,- ExperimentsInHonesty commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2350811035) at 2024-09-13 08:24 PM PDT -ExperimentsInHonesty,2024-09-14T03:25:22Z,- ExperimentsInHonesty commented on issue: [7089](https://github.com/hackforla/website/issues/7089#issuecomment-2350811169) at 2024-09-13 08:25 PM PDT -ExperimentsInHonesty,2024-09-14T03:25:22Z,- ExperimentsInHonesty closed issue as completed: [7089](https://github.com/hackforla/website/issues/7089#event-14256651258) at 2024-09-13 08:25 PM PDT -ExperimentsInHonesty,2024-09-15T18:37:28Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739573) at 2024-09-15 11:37 AM PDT -ExperimentsInHonesty,2024-09-15T21:24:12Z,- ExperimentsInHonesty commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351796335) at 2024-09-15 02:24 PM PDT -ExperimentsInHonesty,2024-09-15T21:30:13Z,- ExperimentsInHonesty commented on issue: [7090](https://github.com/hackforla/website/issues/7090#issuecomment-2351797821) at 2024-09-15 02:30 PM PDT -ExperimentsInHonesty,2024-09-15T21:30:13Z,- ExperimentsInHonesty closed issue as completed: [7090](https://github.com/hackforla/website/issues/7090#event-14264715942) at 2024-09-15 02:30 PM PDT -ExperimentsInHonesty,2024-09-15T21:35:57Z,- ExperimentsInHonesty commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2351799432) at 2024-09-15 02:35 PM PDT -ExperimentsInHonesty,2024-09-16T04:50:49Z,- ExperimentsInHonesty commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2352015587) at 2024-09-15 09:50 PM PDT -ExperimentsInHonesty,2024-09-16T04:50:50Z,- ExperimentsInHonesty closed issue as completed: [7219](https://github.com/hackforla/website/issues/7219#event-14266510253) at 2024-09-15 09:50 PM PDT -ExperimentsInHonesty,2024-09-16T04:50:52Z,- ExperimentsInHonesty reopened issue: [7219](https://github.com/hackforla/website/issues/7219#event-14266510253) at 2024-09-15 09:50 PM PDT -ExperimentsInHonesty,2024-09-16T16:13:34Z,- ExperimentsInHonesty opened issue: [7465](https://github.com/hackforla/website/issues/7465) at 2024-09-16 09:13 AM PDT -ExperimentsInHonesty,2024-09-16T16:13:45Z,- ExperimentsInHonesty assigned to issue: [7465](https://github.com/hackforla/website/issues/7465) at 2024-09-16 09:13 AM PDT -ExperimentsInHonesty,2024-09-16T16:15:22Z,- ExperimentsInHonesty commented on issue: [7465](https://github.com/hackforla/website/issues/7465#issuecomment-2353357642) at 2024-09-16 09:15 AM PDT -ExperimentsInHonesty,2024-09-16T16:28:31Z,- ExperimentsInHonesty closed issue as completed: [7465](https://github.com/hackforla/website/issues/7465#event-14276230712) at 2024-09-16 09:28 AM PDT -ExperimentsInHonesty,2024-09-17T00:16:37Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2354251309) at 2024-09-16 05:16 PM PDT -ExperimentsInHonesty,2024-09-17T00:25:40Z,- ExperimentsInHonesty commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2354260226) at 2024-09-16 05:25 PM PDT -ExperimentsInHonesty,2024-09-17T00:35:35Z,- ExperimentsInHonesty commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2354269065) at 2024-09-16 05:35 PM PDT -ExperimentsInHonesty,2024-09-17T00:46:58Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2354277475) at 2024-09-16 05:46 PM PDT -ExperimentsInHonesty,2024-09-17T00:58:14Z,- ExperimentsInHonesty commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2354285684) at 2024-09-16 05:58 PM PDT -ExperimentsInHonesty,2024-09-17T01:06:42Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354291697) at 2024-09-16 06:06 PM PDT -ExperimentsInHonesty,2024-09-17T01:52:26Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354349889) at 2024-09-16 06:52 PM PDT -ExperimentsInHonesty,2024-09-17T16:44:31Z,- ExperimentsInHonesty opened issue: [7469](https://github.com/hackforla/website/issues/7469) at 2024-09-17 09:44 AM PDT -ExperimentsInHonesty,2024-09-17T17:05:41Z,- ExperimentsInHonesty opened issue: [7470](https://github.com/hackforla/website/issues/7470) at 2024-09-17 10:05 AM PDT -ExperimentsInHonesty,2024-09-17T17:34:45Z,- ExperimentsInHonesty commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2356527903) at 2024-09-17 10:34 AM PDT -ExperimentsInHonesty,2024-09-17T17:43:25Z,- ExperimentsInHonesty opened issue: [7473](https://github.com/hackforla/website/issues/7473) at 2024-09-17 10:43 AM PDT -ExperimentsInHonesty,2024-09-17T18:12:47Z,- ExperimentsInHonesty opened issue: [7478](https://github.com/hackforla/website/issues/7478) at 2024-09-17 11:12 AM PDT -ExperimentsInHonesty,2024-09-17T18:15:36Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356600221) at 2024-09-17 11:15 AM PDT -ExperimentsInHonesty,2024-09-17T18:22:16Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356611920) at 2024-09-17 11:22 AM PDT -ExperimentsInHonesty,2024-09-17T18:25:52Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356617696) at 2024-09-17 11:25 AM PDT -ExperimentsInHonesty,2024-09-17T18:31:24Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:31 AM PDT -ExperimentsInHonesty,2024-09-17T18:39:56Z,- ExperimentsInHonesty assigned to issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:39 AM PDT -ExperimentsInHonesty,2024-09-17T19:14:50Z,- ExperimentsInHonesty commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2356704529) at 2024-09-17 12:14 PM PDT -ExperimentsInHonesty,2024-09-17T21:15:41Z,- ExperimentsInHonesty commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2356949663) at 2024-09-17 02:15 PM PDT -ExperimentsInHonesty,2024-09-17T21:15:41Z,- ExperimentsInHonesty reopened issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2356949663) at 2024-09-17 02:15 PM PDT -ExperimentsInHonesty,2024-09-17T22:51:33Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2357066233) at 2024-09-17 03:51 PM PDT -ExperimentsInHonesty,2024-09-18T03:52:47Z,- ExperimentsInHonesty commented on issue: [7318](https://github.com/hackforla/website/issues/7318#issuecomment-2357439135) at 2024-09-17 08:52 PM PDT -ExperimentsInHonesty,2024-09-18T03:52:47Z,- ExperimentsInHonesty closed issue as completed: [7318](https://github.com/hackforla/website/issues/7318#event-14300927584) at 2024-09-17 08:52 PM PDT -ExperimentsInHonesty,2024-09-18T03:57:14Z,- ExperimentsInHonesty commented on issue: [7313](https://github.com/hackforla/website/issues/7313#issuecomment-2357442928) at 2024-09-17 08:57 PM PDT -ExperimentsInHonesty,2024-09-18T03:57:15Z,- ExperimentsInHonesty closed issue as completed: [7313](https://github.com/hackforla/website/issues/7313#event-14300952322) at 2024-09-17 08:57 PM PDT -ExperimentsInHonesty,2024-09-18T03:57:21Z,- ExperimentsInHonesty closed issue as not planned: [7313](https://github.com/hackforla/website/issues/7313#event-14300952855) at 2024-09-17 08:57 PM PDT -ExperimentsInHonesty,2024-09-18T04:16:02Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2357459731) at 2024-09-17 09:16 PM PDT -ExperimentsInHonesty,2024-09-18T04:17:54Z,- ExperimentsInHonesty opened issue: [7490](https://github.com/hackforla/website/issues/7490) at 2024-09-17 09:17 PM PDT -ExperimentsInHonesty,2024-09-18T04:22:15Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2357464918) at 2024-09-17 09:22 PM PDT -ExperimentsInHonesty,2024-09-19T15:50:29Z,- ExperimentsInHonesty opened issue: [7497](https://github.com/hackforla/website/issues/7497) at 2024-09-19 08:50 AM PDT -ExperimentsInHonesty,2024-09-19T16:04:57Z,- ExperimentsInHonesty commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2361428744) at 2024-09-19 09:04 AM PDT -ExperimentsInHonesty,2024-09-19T16:06:33Z,- ExperimentsInHonesty commented on issue: [7294](https://github.com/hackforla/website/issues/7294#issuecomment-2361431946) at 2024-09-19 09:06 AM PDT -ExperimentsInHonesty,2024-09-23T15:53:55Z,- ExperimentsInHonesty commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2368708562) at 2024-09-23 08:53 AM PDT -ExperimentsInHonesty,2024-09-24T00:10:46Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2369818889) at 2024-09-23 05:10 PM PDT -ExperimentsInHonesty,2024-09-24T00:43:12Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2369872169) at 2024-09-23 05:43 PM PDT -ExperimentsInHonesty,2024-09-24T16:56:32Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2371834851) at 2024-09-24 09:56 AM PDT -ExperimentsInHonesty,2024-09-24T16:58:37Z,- ExperimentsInHonesty opened issue: [7515](https://github.com/hackforla/website/issues/7515) at 2024-09-24 09:58 AM PDT -ExperimentsInHonesty,2024-09-24T18:21:25Z,- ExperimentsInHonesty commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2371997004) at 2024-09-24 11:21 AM PDT -ExperimentsInHonesty,2024-09-26T21:28:03Z,- ExperimentsInHonesty commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2377970516) at 2024-09-26 02:28 PM PDT -ExperimentsInHonesty,2024-09-26T22:31:56Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2378049564) at 2024-09-26 03:31 PM PDT -ExperimentsInHonesty,2024-09-26T23:20:19Z,- ExperimentsInHonesty commented on issue: [7486](https://github.com/hackforla/website/issues/7486#issuecomment-2378108208) at 2024-09-26 04:20 PM PDT -ExperimentsInHonesty,2024-09-26T23:20:19Z,- ExperimentsInHonesty closed issue as not planned: [7486](https://github.com/hackforla/website/issues/7486#event-14423557496) at 2024-09-26 04:20 PM PDT -ExperimentsInHonesty,2024-09-27T21:00:29Z,- ExperimentsInHonesty commented on issue: [4530](https://github.com/hackforla/website/issues/4530#issuecomment-2380053184) at 2024-09-27 02:00 PM PDT -ExperimentsInHonesty,2024-09-27T21:00:40Z,- ExperimentsInHonesty closed issue as completed: [4530](https://github.com/hackforla/website/issues/4530#event-14436250789) at 2024-09-27 02:00 PM PDT -ExperimentsInHonesty,2024-09-27T21:21:01Z,- ExperimentsInHonesty commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380074797) at 2024-09-27 02:21 PM PDT -ExperimentsInHonesty,2024-09-27T21:22:03Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2380075801) at 2024-09-27 02:22 PM PDT -ExperimentsInHonesty,2024-09-29T17:31:17Z,- ExperimentsInHonesty reopened issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2200598709) at 2024-09-29 10:31 AM PDT -ExperimentsInHonesty,2024-09-29T17:35:19Z,- ExperimentsInHonesty commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2381437601) at 2024-09-29 10:35 AM PDT -ExperimentsInHonesty,2024-09-29T17:39:20Z,- ExperimentsInHonesty commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2381438840) at 2024-09-29 10:39 AM PDT -ExperimentsInHonesty,2024-09-29T17:50:20Z,- ExperimentsInHonesty opened issue: [7540](https://github.com/hackforla/website/issues/7540) at 2024-09-29 10:50 AM PDT -ExperimentsInHonesty,2024-09-29T18:05:36Z,- ExperimentsInHonesty commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2381446832) at 2024-09-29 11:05 AM PDT -ExperimentsInHonesty,2024-09-29T18:34:35Z,- ExperimentsInHonesty commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2381455731) at 2024-09-29 11:34 AM PDT -ExperimentsInHonesty,2024-09-29T19:32:59Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2381575569) at 2024-09-29 12:32 PM PDT -ExperimentsInHonesty,2024-09-30T22:16:02Z,- ExperimentsInHonesty commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2384277028) at 2024-09-30 03:16 PM PDT -ExperimentsInHonesty,2024-09-30T22:16:28Z,- ExperimentsInHonesty commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2384277572) at 2024-09-30 03:16 PM PDT -ExperimentsInHonesty,2024-09-30T22:18:17Z,- ExperimentsInHonesty commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2384279635) at 2024-09-30 03:18 PM PDT -ExperimentsInHonesty,2024-09-30T22:18:17Z,- ExperimentsInHonesty closed issue as completed: [7544](https://github.com/hackforla/website/issues/7544#event-14463039052) at 2024-09-30 03:18 PM PDT -ExperimentsInHonesty,2024-09-30T22:18:22Z,- ExperimentsInHonesty closed issue as not planned: [7544](https://github.com/hackforla/website/issues/7544#event-14463039615) at 2024-09-30 03:18 PM PDT -ExperimentsInHonesty,2024-09-30T22:29:14Z,- ExperimentsInHonesty commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2384290512) at 2024-09-30 03:29 PM PDT -ExperimentsInHonesty,2024-09-30T23:08:15Z,- ExperimentsInHonesty commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2384338641) at 2024-09-30 04:08 PM PDT -ExperimentsInHonesty,2024-09-30T23:12:10Z,- ExperimentsInHonesty commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2384352506) at 2024-09-30 04:12 PM PDT -ExperimentsInHonesty,2024-09-30T23:24:08Z,- ExperimentsInHonesty commented on issue: [2753](https://github.com/hackforla/website/issues/2753#issuecomment-2384397261) at 2024-09-30 04:24 PM PDT -ExperimentsInHonesty,2024-09-30T23:24:08Z,- ExperimentsInHonesty closed issue as completed: [2753](https://github.com/hackforla/website/issues/2753#event-14463588518) at 2024-09-30 04:24 PM PDT -ExperimentsInHonesty,2024-09-30T23:46:10Z,- ExperimentsInHonesty commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2384480675) at 2024-09-30 04:46 PM PDT -ExperimentsInHonesty,2024-10-01T00:52:03Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2384568985) at 2024-09-30 05:52 PM PDT -ExperimentsInHonesty,2024-10-01T00:56:30Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2384572890) at 2024-09-30 05:56 PM PDT -ExperimentsInHonesty,2024-10-01T01:07:41Z,- ExperimentsInHonesty reopened issue: [7014](https://github.com/hackforla/website/issues/7014#event-13874195431) at 2024-09-30 06:07 PM PDT -ExperimentsInHonesty,2024-10-01T01:07:44Z,- ExperimentsInHonesty closed issue as completed: [7014](https://github.com/hackforla/website/issues/7014#event-14464494626) at 2024-09-30 06:07 PM PDT -ExperimentsInHonesty,2024-10-01T01:16:24Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2384590549) at 2024-09-30 06:16 PM PDT -ExperimentsInHonesty,2024-10-02T22:52:49Z,- ExperimentsInHonesty commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2389841213) at 2024-10-02 03:52 PM PDT -ExperimentsInHonesty,2024-10-02T22:52:49Z,- ExperimentsInHonesty closed issue as completed: [7521](https://github.com/hackforla/website/issues/7521#event-14496175646) at 2024-10-02 03:52 PM PDT -ExperimentsInHonesty,2024-10-02T23:01:53Z,- ExperimentsInHonesty commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2389911422) at 2024-10-02 04:01 PM PDT -ExperimentsInHonesty,2024-10-02T23:01:53Z,- ExperimentsInHonesty closed issue as completed: [7301](https://github.com/hackforla/website/issues/7301#event-14496317793) at 2024-10-02 04:01 PM PDT -ExperimentsInHonesty,2024-10-02T23:29:23Z,- ExperimentsInHonesty commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2389975235) at 2024-10-02 04:29 PM PDT -ExperimentsInHonesty,2024-10-02T23:53:46Z,- ExperimentsInHonesty commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2389994965) at 2024-10-02 04:53 PM PDT -ExperimentsInHonesty,2024-10-03T15:14:57Z,- ExperimentsInHonesty commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2391684399) at 2024-10-03 08:14 AM PDT -ExperimentsInHonesty,2024-10-03T15:15:00Z,- ExperimentsInHonesty reopened issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2391684399) at 2024-10-03 08:15 AM PDT -ExperimentsInHonesty,2024-10-03T15:16:02Z,- ExperimentsInHonesty commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2391686959) at 2024-10-03 08:16 AM PDT -ExperimentsInHonesty,2024-10-03T15:45:09Z,- ExperimentsInHonesty commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2391751685) at 2024-10-03 08:45 AM PDT -ExperimentsInHonesty,2024-10-03T17:12:50Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2391922726) at 2024-10-03 10:12 AM PDT -ExperimentsInHonesty,2024-10-05T22:59:58Z,- ExperimentsInHonesty commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2395220071) at 2024-10-05 03:59 PM PDT -ExperimentsInHonesty,2024-10-05T22:59:58Z,- ExperimentsInHonesty closed issue as completed: [6145](https://github.com/hackforla/website/issues/6145#event-14529151816) at 2024-10-05 03:59 PM PDT -ExperimentsInHonesty,2024-10-06T15:14:43Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395474970) at 2024-10-06 08:14 AM PDT -ExperimentsInHonesty,2024-10-06T15:15:35Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395475289) at 2024-10-06 08:15 AM PDT -ExperimentsInHonesty,2024-10-06T15:54:24Z,- ExperimentsInHonesty commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2395487367) at 2024-10-06 08:54 AM PDT -ExperimentsInHonesty,2024-10-06T16:07:46Z,- ExperimentsInHonesty closed issue as not planned: [1029](https://github.com/hackforla/website/issues/1029#event-14530940748) at 2024-10-06 09:07 AM PDT -ExperimentsInHonesty,2024-10-06T16:28:16Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2395498554) at 2024-10-06 09:28 AM PDT -ExperimentsInHonesty,2024-10-06T16:39:38Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2395502130) at 2024-10-06 09:39 AM PDT -ExperimentsInHonesty,2024-10-06T16:41:24Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2395502705) at 2024-10-06 09:41 AM PDT -ExperimentsInHonesty,2024-10-06T17:00:38Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2395508778) at 2024-10-06 10:00 AM PDT -ExperimentsInHonesty,2024-10-06T18:02:33Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2395527731) at 2024-10-06 11:02 AM PDT -ExperimentsInHonesty,2024-10-06T19:22:33Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2395552676) at 2024-10-06 12:22 PM PDT -ExperimentsInHonesty,2024-10-07T15:18:40Z,- ExperimentsInHonesty commented on issue: [7528](https://github.com/hackforla/website/issues/7528#issuecomment-2397226154) at 2024-10-07 08:18 AM PDT -ExperimentsInHonesty,2024-10-07T15:18:40Z,- ExperimentsInHonesty closed issue as completed: [7528](https://github.com/hackforla/website/issues/7528#event-14542654362) at 2024-10-07 08:18 AM PDT -ExperimentsInHonesty,2024-10-07T15:50:34Z,- ExperimentsInHonesty opened issue: [7566](https://github.com/hackforla/website/issues/7566) at 2024-10-07 08:50 AM PDT -ExperimentsInHonesty,2024-10-07T15:51:33Z,- ExperimentsInHonesty commented on issue: [7294](https://github.com/hackforla/website/issues/7294#issuecomment-2397303376) at 2024-10-07 08:51 AM PDT -ExperimentsInHonesty,2024-10-07T16:00:26Z,- ExperimentsInHonesty opened issue: [7567](https://github.com/hackforla/website/issues/7567) at 2024-10-07 09:00 AM PDT -ExperimentsInHonesty,2024-10-07T16:03:00Z,- ExperimentsInHonesty commented on issue: [7087](https://github.com/hackforla/website/issues/7087#issuecomment-2397328931) at 2024-10-07 09:03 AM PDT -ExperimentsInHonesty,2024-10-07T23:34:07Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2398160671) at 2024-10-07 04:34 PM PDT -ExperimentsInHonesty,2024-10-08T00:55:43Z,- ExperimentsInHonesty commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2398343972) at 2024-10-07 05:55 PM PDT -ExperimentsInHonesty,2024-10-08T15:58:51Z,- ExperimentsInHonesty commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2400238861) at 2024-10-08 08:58 AM PDT -ExperimentsInHonesty,2024-10-08T22:57:36Z,- ExperimentsInHonesty commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2400958400) at 2024-10-08 03:57 PM PDT -ExperimentsInHonesty,2024-10-09T18:11:16Z,- ExperimentsInHonesty opened issue: [7578](https://github.com/hackforla/website/issues/7578) at 2024-10-09 11:11 AM PDT -ExperimentsInHonesty,2024-10-10T22:44:50Z,- ExperimentsInHonesty commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2406166623) at 2024-10-10 03:44 PM PDT -ExperimentsInHonesty,2024-10-14T23:51:56Z,- ExperimentsInHonesty commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2412539722) at 2024-10-14 04:51 PM PDT -ExperimentsInHonesty,2024-10-14T23:54:27Z,- ExperimentsInHonesty commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2412541708) at 2024-10-14 04:54 PM PDT -ExperimentsInHonesty,2024-10-15T00:04:11Z,- ExperimentsInHonesty commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2412555855) at 2024-10-14 05:04 PM PDT -ExperimentsInHonesty,2024-10-15T00:51:26Z,- ExperimentsInHonesty commented on issue: [4264](https://github.com/hackforla/website/issues/4264#issuecomment-2412602114) at 2024-10-14 05:51 PM PDT -ExperimentsInHonesty,2024-10-15T01:44:29Z,- ExperimentsInHonesty commented on issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2412646265) at 2024-10-14 06:44 PM PDT -ExperimentsInHonesty,2024-10-15T01:48:57Z,- ExperimentsInHonesty commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2412649894) at 2024-10-14 06:48 PM PDT -ExperimentsInHonesty,2024-10-15T01:50:19Z,- ExperimentsInHonesty commented on issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2412650919) at 2024-10-14 06:50 PM PDT -ExperimentsInHonesty,2024-10-15T17:08:12Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2414568871) at 2024-10-15 10:08 AM PDT -ExperimentsInHonesty,2024-10-15T17:59:43Z,- ExperimentsInHonesty commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2414672007) at 2024-10-15 10:59 AM PDT -ExperimentsInHonesty,2024-10-15T19:16:09Z,- ExperimentsInHonesty opened issue: [7596](https://github.com/hackforla/website/issues/7596) at 2024-10-15 12:16 PM PDT -ExperimentsInHonesty,2024-10-15T19:19:06Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2414823314) at 2024-10-15 12:19 PM PDT -ExperimentsInHonesty,2024-10-15T19:19:08Z,- ExperimentsInHonesty closed issue as completed: [7478](https://github.com/hackforla/website/issues/7478#event-14662994002) at 2024-10-15 12:19 PM PDT -ExperimentsInHonesty,2024-10-15T19:42:33Z,- ExperimentsInHonesty commented on issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2414863384) at 2024-10-15 12:42 PM PDT -ExperimentsInHonesty,2024-10-15T19:42:54Z,- ExperimentsInHonesty assigned to issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2414863384) at 2024-10-15 12:42 PM PDT -ExperimentsInHonesty,2024-10-15T20:38:33Z,- ExperimentsInHonesty reopened issue: [3526](https://github.com/hackforla/website/issues/3526#event-13086673505) at 2024-10-15 01:38 PM PDT -ExperimentsInHonesty,2024-10-15T22:02:54Z,- ExperimentsInHonesty commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2415249962) at 2024-10-15 03:02 PM PDT -ExperimentsInHonesty,2024-10-16T20:43:07Z,- ExperimentsInHonesty commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2417923954) at 2024-10-16 01:43 PM PDT -ExperimentsInHonesty,2024-10-16T20:43:07Z,- ExperimentsInHonesty closed issue as completed: [7259](https://github.com/hackforla/website/issues/7259#event-14689169161) at 2024-10-16 01:43 PM PDT -ExperimentsInHonesty,2024-10-19T23:28:11Z,- ExperimentsInHonesty commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2424285391) at 2024-10-19 04:28 PM PDT -ExperimentsInHonesty,2024-10-19T23:50:21Z,- ExperimentsInHonesty commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2424296345) at 2024-10-19 04:50 PM PDT -ExperimentsInHonesty,2024-10-20T00:46:11Z,- ExperimentsInHonesty opened issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-19 05:46 PM PDT -ExperimentsInHonesty,2024-10-20T00:46:34Z,- ExperimentsInHonesty assigned to issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-19 05:46 PM PDT -ExperimentsInHonesty,2024-10-20T01:03:45Z,- ExperimentsInHonesty opened issue: [7601](https://github.com/hackforla/website/issues/7601) at 2024-10-19 06:03 PM PDT -ExperimentsInHonesty,2024-10-20T01:08:58Z,- ExperimentsInHonesty opened issue: [7602](https://github.com/hackforla/website/issues/7602) at 2024-10-19 06:08 PM PDT -ExperimentsInHonesty,2024-10-20T01:14:39Z,- ExperimentsInHonesty assigned to issue: [7602](https://github.com/hackforla/website/issues/7602) at 2024-10-19 06:14 PM PDT -ExperimentsInHonesty,2024-10-20T01:15:39Z,- ExperimentsInHonesty opened issue: [7603](https://github.com/hackforla/website/issues/7603) at 2024-10-19 06:15 PM PDT -ExperimentsInHonesty,2024-10-20T01:20:58Z,- ExperimentsInHonesty opened issue: [7604](https://github.com/hackforla/website/issues/7604) at 2024-10-19 06:20 PM PDT -ExperimentsInHonesty,2024-10-20T01:25:56Z,- ExperimentsInHonesty opened issue: [7605](https://github.com/hackforla/website/issues/7605) at 2024-10-19 06:25 PM PDT -ExperimentsInHonesty,2024-10-20T01:28:24Z,- ExperimentsInHonesty opened issue: [7606](https://github.com/hackforla/website/issues/7606) at 2024-10-19 06:28 PM PDT -ExperimentsInHonesty,2024-10-20T01:38:18Z,- ExperimentsInHonesty closed issue as completed: [7602](https://github.com/hackforla/website/issues/7602#event-14742548269) at 2024-10-19 06:38 PM PDT -ExperimentsInHonesty,2024-10-20T01:46:36Z,- ExperimentsInHonesty unassigned from issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-19 06:46 PM PDT -ExperimentsInHonesty,2024-10-20T02:01:18Z,- ExperimentsInHonesty commented on issue: [4778](https://github.com/hackforla/website/issues/4778#issuecomment-2424404088) at 2024-10-19 07:01 PM PDT -ExperimentsInHonesty,2024-10-20T02:01:18Z,- ExperimentsInHonesty closed issue as completed: [4778](https://github.com/hackforla/website/issues/4778#event-14742657256) at 2024-10-19 07:01 PM PDT -ExperimentsInHonesty,2024-10-20T16:10:10Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2425091541) at 2024-10-20 09:10 AM PDT -ExperimentsInHonesty,2024-10-20T16:36:26Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2425107256) at 2024-10-20 09:36 AM PDT -ExperimentsInHonesty,2024-10-20T16:37:22Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2425108021) at 2024-10-20 09:37 AM PDT -ExperimentsInHonesty,2024-10-20T17:01:22Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2425122891) at 2024-10-20 10:01 AM PDT -ExperimentsInHonesty,2024-10-20T17:09:21Z,- ExperimentsInHonesty commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2425130523) at 2024-10-20 10:09 AM PDT -ExperimentsInHonesty,2024-10-20T17:26:11Z,- ExperimentsInHonesty commented on issue: [3549](https://github.com/hackforla/website/issues/3549#issuecomment-2425139147) at 2024-10-20 10:26 AM PDT -ExperimentsInHonesty,2024-10-20T17:28:44Z,- ExperimentsInHonesty closed issue as completed: [3005](https://github.com/hackforla/website/issues/3005#event-14754746037) at 2024-10-20 10:28 AM PDT -ExperimentsInHonesty,2024-10-20T17:46:48Z,- ExperimentsInHonesty commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2425149610) at 2024-10-20 10:46 AM PDT -ExperimentsInHonesty,2024-10-20T17:46:48Z,- ExperimentsInHonesty closed issue as completed: [7220](https://github.com/hackforla/website/issues/7220#event-14754849551) at 2024-10-20 10:46 AM PDT -ExperimentsInHonesty,2024-10-20T18:41:31Z,- ExperimentsInHonesty commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2425173813) at 2024-10-20 11:41 AM PDT -ExperimentsInHonesty,2024-10-20T18:48:20Z,- ExperimentsInHonesty opened issue: [7607](https://github.com/hackforla/website/issues/7607) at 2024-10-20 11:48 AM PDT -ExperimentsInHonesty,2024-10-20T19:04:35Z,- ExperimentsInHonesty commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2425180273) at 2024-10-20 12:04 PM PDT -ExperimentsInHonesty,2024-10-22T01:02:28Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2428006202) at 2024-10-21 06:02 PM PDT -ExperimentsInHonesty,2024-10-22T01:10:41Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2428013217) at 2024-10-21 06:10 PM PDT -ExperimentsInHonesty,2024-10-25T17:46:18Z,- ExperimentsInHonesty commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2438436178) at 2024-10-25 10:46 AM PDT -ExperimentsInHonesty,2024-10-25T17:56:33Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2438452005) at 2024-10-25 10:56 AM PDT -ExperimentsInHonesty,2024-10-25T17:59:56Z,- ExperimentsInHonesty commented on issue: [7577](https://github.com/hackforla/website/issues/7577#issuecomment-2438458153) at 2024-10-25 10:59 AM PDT -ExperimentsInHonesty,2024-10-25T17:59:57Z,- ExperimentsInHonesty closed issue as not planned: [7577](https://github.com/hackforla/website/issues/7577#event-14881075894) at 2024-10-25 10:59 AM PDT -ExperimentsInHonesty,2024-10-25T23:35:22Z,- ExperimentsInHonesty closed issue as completed: [7024](https://github.com/hackforla/website/issues/7024#event-14887362495) at 2024-10-25 04:35 PM PDT -ExperimentsInHonesty,2024-10-25T23:35:58Z,- ExperimentsInHonesty closed issue as completed: [7224](https://github.com/hackforla/website/issues/7224#event-14887367538) at 2024-10-25 04:35 PM PDT -ExperimentsInHonesty,2024-10-25T23:42:42Z,- ExperimentsInHonesty commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2439047005) at 2024-10-25 04:42 PM PDT -ExperimentsInHonesty,2024-10-27T16:18:56Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440084990) at 2024-10-27 09:18 AM PDT -ExperimentsInHonesty,2024-10-27T16:29:12Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440088499) at 2024-10-27 09:29 AM PDT -ExperimentsInHonesty,2024-10-27T16:31:53Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440089451) at 2024-10-27 09:31 AM PDT -ExperimentsInHonesty,2024-10-27T16:34:04Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440090197) at 2024-10-27 09:34 AM PDT -ExperimentsInHonesty,2024-10-27T16:58:38Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2440098816) at 2024-10-27 09:58 AM PDT -ExperimentsInHonesty,2024-10-27T17:32:42Z,- ExperimentsInHonesty reopened issue: [6751](https://github.com/hackforla/website/issues/6751#event-12949702515) at 2024-10-27 10:32 AM PDT -ExperimentsInHonesty,2024-10-29T00:50:11Z,- ExperimentsInHonesty closed issue as completed: [7331](https://github.com/hackforla/website/issues/7331#event-14971309907) at 2024-10-28 05:50 PM PDT -ExperimentsInHonesty,2024-10-29T01:49:15Z,- ExperimentsInHonesty commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2442997922) at 2024-10-28 06:49 PM PDT -ExperimentsInHonesty,2024-10-29T01:57:23Z,- ExperimentsInHonesty commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2443005322) at 2024-10-28 06:57 PM PDT -ExperimentsInHonesty,2024-10-29T17:05:13Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2444867021) at 2024-10-29 10:05 AM PDT -ExperimentsInHonesty,2024-10-29T18:52:57Z,- ExperimentsInHonesty opened issue: [7661](https://github.com/hackforla/website/issues/7661) at 2024-10-29 11:52 AM PDT -ExperimentsInHonesty,2024-10-29T19:00:42Z,- ExperimentsInHonesty commented on issue: [7621](https://github.com/hackforla/website/issues/7621#issuecomment-2445099851) at 2024-10-29 12:00 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:03Z,- ExperimentsInHonesty commented on issue: [7620](https://github.com/hackforla/website/issues/7620#issuecomment-2445100476) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:05Z,- ExperimentsInHonesty closed issue as completed: [7620](https://github.com/hackforla/website/issues/7620#event-14989965599) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:11Z,- ExperimentsInHonesty closed issue as not planned: [7620](https://github.com/hackforla/website/issues/7620#event-14989966710) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:01:19Z,- ExperimentsInHonesty closed issue as not planned: [7621](https://github.com/hackforla/website/issues/7621#event-14989968179) at 2024-10-29 12:01 PM PDT -ExperimentsInHonesty,2024-10-29T19:06:28Z,- ExperimentsInHonesty commented on issue: [7319](https://github.com/hackforla/website/issues/7319#issuecomment-2445110524) at 2024-10-29 12:06 PM PDT -ExperimentsInHonesty,2024-10-29T19:06:28Z,- ExperimentsInHonesty closed issue as not planned: [7319](https://github.com/hackforla/website/issues/7319#event-14990026208) at 2024-10-29 12:06 PM PDT -ExperimentsInHonesty,2024-10-29T19:18:19Z,- ExperimentsInHonesty commented on issue: [7644](https://github.com/hackforla/website/issues/7644#issuecomment-2445131436) at 2024-10-29 12:18 PM PDT -ExperimentsInHonesty,2024-10-29T19:18:19Z,- ExperimentsInHonesty closed issue as not planned: [7644](https://github.com/hackforla/website/issues/7644#event-14990155933) at 2024-10-29 12:18 PM PDT -ExperimentsInHonesty,2024-10-30T18:58:27Z,- ExperimentsInHonesty commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2448097140) at 2024-10-30 11:58 AM PDT -ExperimentsInHonesty,2024-10-30T21:33:26Z,- ExperimentsInHonesty commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2448448573) at 2024-10-30 02:33 PM PDT -ExperimentsInHonesty,2024-10-30T22:19:33Z,- ExperimentsInHonesty commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2448565184) at 2024-10-30 03:19 PM PDT -ExperimentsInHonesty,2024-11-01T19:00:20Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2452428244) at 2024-11-01 12:00 PM PDT -ExperimentsInHonesty,2024-11-03T17:07:56Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2453498659) at 2024-11-03 09:07 AM PST -ExperimentsInHonesty,2024-11-03T18:07:27Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2453515171) at 2024-11-03 10:07 AM PST -ExperimentsInHonesty,2024-11-03T18:30:07Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2453521636) at 2024-11-03 10:30 AM PST -ExperimentsInHonesty,2024-11-03T18:30:29Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2453521749) at 2024-11-03 10:30 AM PST -ExperimentsInHonesty,2024-11-03T20:02:02Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2453559497) at 2024-11-03 12:02 PM PST -ExperimentsInHonesty,2024-11-03T21:01:24Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2453575671) at 2024-11-03 01:01 PM PST -ExperimentsInHonesty,2024-11-04T20:32:16Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2455644731) at 2024-11-04 12:32 PM PST -ExperimentsInHonesty,2024-11-05T22:55:59Z,- ExperimentsInHonesty commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458326331) at 2024-11-05 02:55 PM PST -ExperimentsInHonesty,2024-11-06T19:00:07Z,- ExperimentsInHonesty reopened issue: [2147](https://github.com/hackforla/website/issues/2147#event-14994711313) at 2024-11-06 11:00 AM PST -ExperimentsInHonesty,2024-11-06T19:01:06Z,- ExperimentsInHonesty commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2460552255) at 2024-11-06 11:01 AM PST -ExperimentsInHonesty,2024-11-06T20:19:57Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2460699990) at 2024-11-06 12:19 PM PST -ExperimentsInHonesty,2024-11-06T20:46:14Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2460745726) at 2024-11-06 12:46 PM PST -ExperimentsInHonesty,2024-11-08T19:50:47Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2465639238) at 2024-11-08 11:50 AM PST -ExperimentsInHonesty,2024-11-10T17:51:21Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2466825281) at 2024-11-10 09:51 AM PST -ExperimentsInHonesty,2024-11-10T18:38:38Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2466840601) at 2024-11-10 10:38 AM PST -ExperimentsInHonesty,2024-11-10T18:45:26Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2466842623) at 2024-11-10 10:45 AM PST -ExperimentsInHonesty,2024-11-10T19:22:54Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2466854411) at 2024-11-10 11:22 AM PST -ExperimentsInHonesty,2024-11-12T00:42:35Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359332) at 2024-11-11 04:42 PM PST -ExperimentsInHonesty,2024-11-12T00:42:35Z,- ExperimentsInHonesty closed issue as completed: [7321](https://github.com/hackforla/website/issues/7321#event-15257001601) at 2024-11-11 04:42 PM PST -ExperimentsInHonesty,2024-11-12T00:43:22Z,- ExperimentsInHonesty commented on issue: [7686](https://github.com/hackforla/website/issues/7686#issuecomment-2469359964) at 2024-11-11 04:43 PM PST -ExperimentsInHonesty,2024-11-12T00:43:23Z,- ExperimentsInHonesty closed issue as not planned: [7686](https://github.com/hackforla/website/issues/7686#event-15257005482) at 2024-11-11 04:43 PM PST -ExperimentsInHonesty,2024-11-12T00:52:51Z,- ExperimentsInHonesty commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2469367744) at 2024-11-11 04:52 PM PST -ExperimentsInHonesty,2024-11-12T00:52:51Z,- ExperimentsInHonesty closed issue as completed: [7580](https://github.com/hackforla/website/issues/7580#event-15257057212) at 2024-11-11 04:52 PM PST -ExperimentsInHonesty,2024-11-12T00:53:23Z,- ExperimentsInHonesty commented on issue: [7704](https://github.com/hackforla/website/issues/7704#issuecomment-2469368341) at 2024-11-11 04:53 PM PST -ExperimentsInHonesty,2024-11-12T00:54:47Z,- ExperimentsInHonesty closed issue as not planned: [7704](https://github.com/hackforla/website/issues/7704#event-15257066530) at 2024-11-11 04:54 PM PST -ExperimentsInHonesty,2024-11-12T01:11:39Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2469386992) at 2024-11-11 05:11 PM PST -ExperimentsInHonesty,2024-11-12T01:11:39Z,- ExperimentsInHonesty reopened issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2469386992) at 2024-11-11 05:11 PM PST -ExperimentsInHonesty,2024-11-12T21:43:01Z,- ExperimentsInHonesty commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2471644558) at 2024-11-12 01:43 PM PST -ExperimentsInHonesty,2024-11-13T03:28:26Z,- ExperimentsInHonesty commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2472295856) at 2024-11-12 07:28 PM PST -ExperimentsInHonesty,2024-11-13T03:28:26Z,- ExperimentsInHonesty closed issue as completed: [6771](https://github.com/hackforla/website/issues/6771#event-15275182186) at 2024-11-12 07:28 PM PST -ExperimentsInHonesty,2024-11-13T03:51:34Z,- ExperimentsInHonesty closed issue as completed: [7314](https://github.com/hackforla/website/issues/7314#event-15275321907) at 2024-11-12 07:51 PM PST -ExperimentsInHonesty,2024-11-13T04:00:36Z,- ExperimentsInHonesty commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2472325268) at 2024-11-12 08:00 PM PST -ExperimentsInHonesty,2024-11-13T04:03:31Z,- ExperimentsInHonesty commented on issue: [7668](https://github.com/hackforla/website/issues/7668#issuecomment-2472327895) at 2024-11-12 08:03 PM PST -ExperimentsInHonesty,2024-11-13T04:04:39Z,- ExperimentsInHonesty commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2472328892) at 2024-11-12 08:04 PM PST -ExperimentsInHonesty,2024-11-13T04:10:43Z,- ExperimentsInHonesty commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2472334120) at 2024-11-12 08:10 PM PST -ExperimentsInHonesty,2024-11-13T04:10:43Z,- ExperimentsInHonesty closed issue as completed: [7454](https://github.com/hackforla/website/issues/7454#event-15275436727) at 2024-11-12 08:10 PM PST -ExperimentsInHonesty,2024-11-13T21:51:12Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2474893901) at 2024-11-13 01:51 PM PST -ExperimentsInHonesty,2024-11-14T23:50:48Z,- ExperimentsInHonesty commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477645955) at 2024-11-14 03:50 PM PST -ExperimentsInHonesty,2024-11-15T19:09:52Z,- ExperimentsInHonesty commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2479744135) at 2024-11-15 11:09 AM PST -ExperimentsInHonesty,2024-11-15T19:18:54Z,- ExperimentsInHonesty submitted pull request review: [7714](https://github.com/hackforla/website/pull/7714#pullrequestreview-2439437519) at 2024-11-15 11:18 AM PST -ExperimentsInHonesty,2024-11-15T19:21:35Z,- ExperimentsInHonesty commented on issue: [7648](https://github.com/hackforla/website/issues/7648#issuecomment-2479763796) at 2024-11-15 11:21 AM PST -ExperimentsInHonesty,2024-11-15T19:24:25Z,- ExperimentsInHonesty commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2479768081) at 2024-11-15 11:24 AM PST -ExperimentsInHonesty,2024-11-15T19:24:33Z,- ExperimentsInHonesty closed issue by PR 7714: [7648](https://github.com/hackforla/website/issues/7648#event-15316660375) at 2024-11-15 11:24 AM PST -ExperimentsInHonesty,2024-11-15T19:26:41Z,- ExperimentsInHonesty commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2479771075) at 2024-11-15 11:26 AM PST -ExperimentsInHonesty,2024-11-17T18:50:17Z,- ExperimentsInHonesty commented on issue: [7724](https://github.com/hackforla/website/issues/7724#issuecomment-2481425679) at 2024-11-17 10:50 AM PST -ExperimentsInHonesty,2024-11-17T19:29:09Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2481454157) at 2024-11-17 11:29 AM PST -ExperimentsInHonesty,2024-11-18T19:58:41Z,- ExperimentsInHonesty opened issue: [7726](https://github.com/hackforla/website/issues/7726) at 2024-11-18 11:58 AM PST -ExperimentsInHonesty,2024-11-19T19:12:04Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2486539343) at 2024-11-19 11:12 AM PST -ExperimentsInHonesty,2024-11-19T19:25:20Z,- ExperimentsInHonesty commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2486569404) at 2024-11-19 11:25 AM PST -ExperimentsInHonesty,2024-11-19T19:33:35Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2486583954) at 2024-11-19 11:33 AM PST -ExperimentsInHonesty,2024-11-24T17:21:07Z,- ExperimentsInHonesty opened issue: [7760](https://github.com/hackforla/website/issues/7760) at 2024-11-24 09:21 AM PST -ExperimentsInHonesty,2024-11-24T17:21:33Z,- ExperimentsInHonesty assigned to issue: [7760](https://github.com/hackforla/website/issues/7760) at 2024-11-24 09:21 AM PST -ExperimentsInHonesty,2024-11-24T18:00:53Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2496140719) at 2024-11-24 10:00 AM PST -ExperimentsInHonesty,2024-11-24T18:07:10Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2496142893) at 2024-11-24 10:07 AM PST -ExperimentsInHonesty,2024-11-24T19:10:50Z,- ExperimentsInHonesty commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2496179645) at 2024-11-24 11:10 AM PST -ExperimentsInHonesty,2024-11-24T19:13:11Z,- ExperimentsInHonesty commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2496181213) at 2024-11-24 11:13 AM PST -ExperimentsInHonesty,2024-11-24T19:13:11Z,- ExperimentsInHonesty closed issue as completed: [7490](https://github.com/hackforla/website/issues/7490#event-15411276959) at 2024-11-24 11:13 AM PST -ExperimentsInHonesty,2024-11-24T19:43:47Z,- ExperimentsInHonesty commented on issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2496199234) at 2024-11-24 11:43 AM PST -ExperimentsInHonesty,2024-11-24T19:43:47Z,- ExperimentsInHonesty reopened issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2496199234) at 2024-11-24 11:43 AM PST -ExperimentsInHonesty,2024-11-25T19:23:27Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852165) at 2024-11-25 11:23 AM PST -ExperimentsInHonesty,2024-11-25T19:28:17Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498861238) at 2024-11-25 11:28 AM PST -ExperimentsInHonesty,2024-11-26T00:07:49Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2499286400) at 2024-11-25 04:07 PM PST -ExperimentsInHonesty,2024-11-26T01:19:07Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2499365116) at 2024-11-25 05:19 PM PST -ExperimentsInHonesty,2024-11-26T16:04:04Z,- ExperimentsInHonesty commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2501255362) at 2024-11-26 08:04 AM PST -ExperimentsInHonesty,2024-11-26T16:50:03Z,- ExperimentsInHonesty commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2501395523) at 2024-11-26 08:50 AM PST -ExperimentsInHonesty,2024-11-26T16:50:03Z,- ExperimentsInHonesty closed issue as completed: [7159](https://github.com/hackforla/website/issues/7159#event-15439399437) at 2024-11-26 08:50 AM PST -ExperimentsInHonesty,2024-11-26T18:33:32Z,- ExperimentsInHonesty commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2501662276) at 2024-11-26 10:33 AM PST -ExperimentsInHonesty,2024-11-27T00:54:07Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2502365614) at 2024-11-26 04:54 PM PST -ExperimentsInHonesty,2024-11-27T04:08:43Z,- ExperimentsInHonesty closed issue as completed: [6058](https://github.com/hackforla/website/issues/6058#event-15446260018) at 2024-11-26 08:08 PM PST -ExperimentsInHonesty,2024-11-27T04:10:56Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2502683374) at 2024-11-26 08:10 PM PST -ExperimentsInHonesty,2024-11-27T21:29:58Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2504797807) at 2024-11-27 01:29 PM PST -ExperimentsInHonesty,2024-11-27T21:57:31Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2504863483) at 2024-11-27 01:57 PM PST -ExperimentsInHonesty,2024-11-27T21:58:58Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2504867946) at 2024-11-27 01:58 PM PST -ExperimentsInHonesty,2024-11-27T21:59:05Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2504868299) at 2024-11-27 01:59 PM PST -ExperimentsInHonesty,2024-11-27T22:02:46Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2504873436) at 2024-11-27 02:02 PM PST -ExperimentsInHonesty,2024-12-20T19:01:50Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2557561087) at 2024-12-20 11:01 AM PST -ExperimentsInHonesty,2024-12-31T18:49:00Z,- ExperimentsInHonesty commented on issue: [7574](https://github.com/hackforla/website/issues/7574#issuecomment-2566657251) at 2024-12-31 10:49 AM PST -ExperimentsInHonesty,2024-12-31T18:49:17Z,- ExperimentsInHonesty closed issue as completed: [7574](https://github.com/hackforla/website/issues/7574#event-15791617523) at 2024-12-31 10:49 AM PST -ExperimentsInHonesty,2025-01-19T17:17:59Z,- ExperimentsInHonesty commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2600949132) at 2025-01-19 09:17 AM PST -ExperimentsInHonesty,2025-01-19T17:18:54Z,- ExperimentsInHonesty unassigned from issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2277284985) at 2025-01-19 09:18 AM PST -ExperimentsInHonesty,2025-01-19T17:23:42Z,- ExperimentsInHonesty commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2600950830) at 2025-01-19 09:23 AM PST -ExperimentsInHonesty,2025-01-21T01:40:15Z,- ExperimentsInHonesty commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2603457201) at 2025-01-20 05:40 PM PST -ExperimentsInHonesty,2025-01-21T17:48:13Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2605381318) at 2025-01-21 09:48 AM PST -ExperimentsInHonesty,2025-01-21T19:18:03Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2605548603) at 2025-01-21 11:18 AM PST -ExperimentsInHonesty,2025-01-21T19:27:28Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2605565227) at 2025-01-21 11:27 AM PST -ExperimentsInHonesty,2025-01-21T23:16:44Z,- ExperimentsInHonesty commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2605935006) at 2025-01-21 03:16 PM PST -ExperimentsInHonesty,2025-01-21T23:16:45Z,- ExperimentsInHonesty closed issue as completed: [7661](https://github.com/hackforla/website/issues/7661#event-16021322686) at 2025-01-21 03:16 PM PST -ExperimentsInHonesty,2025-01-23T17:46:14Z,- ExperimentsInHonesty commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2610554821) at 2025-01-23 09:46 AM PST -ExperimentsInHonesty,2025-01-26T17:18:49Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2614513523) at 2025-01-26 09:18 AM PST -ExperimentsInHonesty,2025-01-26T17:36:37Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2614519911) at 2025-01-26 09:36 AM PST -ExperimentsInHonesty,2025-01-26T17:51:50Z,- ExperimentsInHonesty commented on issue: [7853](https://github.com/hackforla/website/issues/7853#issuecomment-2614525756) at 2025-01-26 09:51 AM PST -ExperimentsInHonesty,2025-01-26T17:53:38Z,- ExperimentsInHonesty commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2614526376) at 2025-01-26 09:53 AM PST -ExperimentsInHonesty,2025-01-26T18:17:56Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2614536032) at 2025-01-26 10:17 AM PST -ExperimentsInHonesty,2025-01-26T18:20:00Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2614536624) at 2025-01-26 10:20 AM PST -ExperimentsInHonesty,2025-01-26T19:21:42Z,- ExperimentsInHonesty opened issue: [7854](https://github.com/hackforla/website/issues/7854) at 2025-01-26 11:21 AM PST -ExperimentsInHonesty,2025-01-26T22:24:47Z,- ExperimentsInHonesty opened issue: [7855](https://github.com/hackforla/website/issues/7855) at 2025-01-26 02:24 PM PST -ExperimentsInHonesty,2025-01-26T22:30:12Z,- ExperimentsInHonesty commented on issue: [7854](https://github.com/hackforla/website/issues/7854#issuecomment-2614616705) at 2025-01-26 02:30 PM PST -ExperimentsInHonesty,2025-01-26T22:30:12Z,- ExperimentsInHonesty closed issue as completed: [7854](https://github.com/hackforla/website/issues/7854#event-16071232939) at 2025-01-26 02:30 PM PST -ExperimentsInHonesty,2025-01-26T22:32:20Z,- ExperimentsInHonesty commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2614617347) at 2025-01-26 02:32 PM PST -ExperimentsInHonesty,2025-01-26T22:35:34Z,- ExperimentsInHonesty commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614618196) at 2025-01-26 02:35 PM PST -ExperimentsInHonesty,2025-01-28T01:12:07Z,- ExperimentsInHonesty opened issue: [7859](https://github.com/hackforla/website/issues/7859) at 2025-01-27 05:12 PM PST -ExperimentsInHonesty,2025-01-28T01:12:32Z,- ExperimentsInHonesty commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2617388206) at 2025-01-27 05:12 PM PST -ExperimentsInHonesty,2025-01-28T01:29:11Z,- ExperimentsInHonesty commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2617432597) at 2025-01-27 05:29 PM PST -ExperimentsInHonesty,2025-01-28T01:29:12Z,- ExperimentsInHonesty closed issue as completed: [7377](https://github.com/hackforla/website/issues/7377#event-16086200041) at 2025-01-27 05:29 PM PST -ExperimentsInHonesty,2025-01-28T01:35:07Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2617451571) at 2025-01-27 05:35 PM PST -ExperimentsInHonesty,2025-01-28T17:14:42Z,- ExperimentsInHonesty commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2619604868) at 2025-01-28 09:14 AM PST -ExperimentsInHonesty,2025-02-04T01:22:54Z,- ExperimentsInHonesty commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2632548239) at 2025-02-03 05:22 PM PST -ExperimentsInHonesty,2025-02-04T23:16:43Z,- ExperimentsInHonesty commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2635276877) at 2025-02-04 03:16 PM PST -ExperimentsInHonesty,2025-02-07T04:41:14Z,- ExperimentsInHonesty commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2641933007) at 2025-02-06 08:41 PM PST -ExperimentsInHonesty,2025-02-09T18:41:18Z,- ExperimentsInHonesty closed issue as completed: [7710](https://github.com/hackforla/website/issues/7710#event-16238995199) at 2025-02-09 10:41 AM PST -ExperimentsInHonesty,2025-02-09T18:44:28Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2646476192) at 2025-02-09 10:44 AM PST -ExperimentsInHonesty,2025-02-09T18:58:33Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2646500765) at 2025-02-09 10:58 AM PST -ExperimentsInHonesty,2025-02-09T20:05:00Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2646563084) at 2025-02-09 12:05 PM PST -ExperimentsInHonesty,2025-02-09T20:10:44Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2646565323) at 2025-02-09 12:10 PM PST -ExperimentsInHonesty,2025-02-11T21:39:51Z,- ExperimentsInHonesty commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2652128063) at 2025-02-11 01:39 PM PST -ExperimentsInHonesty,2025-02-12T18:41:42Z,- ExperimentsInHonesty commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2654557583) at 2025-02-12 10:41 AM PST -ExperimentsInHonesty,2025-02-12T19:09:07Z,- ExperimentsInHonesty opened issue: [7904](https://github.com/hackforla/website/issues/7904) at 2025-02-12 11:09 AM PST -ExperimentsInHonesty,2025-02-12T19:31:19Z,- ExperimentsInHonesty commented on issue: [7663](https://github.com/hackforla/website/issues/7663#issuecomment-2654661699) at 2025-02-12 11:31 AM PST -ExperimentsInHonesty,2025-02-12T19:32:46Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2654664621) at 2025-02-12 11:32 AM PST -ExperimentsInHonesty,2025-02-13T23:39:18Z,- ExperimentsInHonesty commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2657932692) at 2025-02-13 03:39 PM PST -ExperimentsInHonesty,2025-02-16T18:25:58Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2661558222) at 2025-02-16 10:25 AM PST -ExperimentsInHonesty,2025-02-16T18:47:58Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2661566800) at 2025-02-16 10:47 AM PST -ExperimentsInHonesty,2025-02-16T19:43:37Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2661586397) at 2025-02-16 11:43 AM PST -ExperimentsInHonesty,2025-02-16T20:11:57Z,- ExperimentsInHonesty commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2661596813) at 2025-02-16 12:11 PM PST -ExperimentsInHonesty,2025-02-16T20:37:43Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2661607467) at 2025-02-16 12:37 PM PST -ExperimentsInHonesty,2025-02-24T17:17:44Z,- ExperimentsInHonesty commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2679148663) at 2025-02-24 09:17 AM PST -ExperimentsInHonesty,2025-02-25T01:08:07Z,- ExperimentsInHonesty commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2680095103) at 2025-02-24 05:08 PM PST -ExperimentsInHonesty,2025-02-25T01:08:14Z,- ExperimentsInHonesty closed issue as completed: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -ExperimentsInHonesty,2025-02-25T01:08:26Z,- ExperimentsInHonesty assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -ExperimentsInHonesty,2025-02-25T01:32:46Z,- ExperimentsInHonesty closed issue by PR 8118: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-02-24 05:32 PM PST -ExperimentsInHonesty,2025-02-25T01:37:34Z,- ExperimentsInHonesty commented on issue: [7921](https://github.com/hackforla/website/issues/7921#issuecomment-2680143288) at 2025-02-24 05:37 PM PST -ExperimentsInHonesty,2025-02-25T01:37:34Z,- ExperimentsInHonesty closed issue as duplicate: [7921](https://github.com/hackforla/website/issues/7921#event-16442795926) at 2025-02-24 05:37 PM PST -ExperimentsInHonesty,2025-02-25T01:37:42Z,- ExperimentsInHonesty closed issue as not planned: [7921](https://github.com/hackforla/website/issues/7921#event-16442817402) at 2025-02-24 05:37 PM PST -ExperimentsInHonesty,2025-02-25T01:38:09Z,- ExperimentsInHonesty reopened issue: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-02-24 05:38 PM PST -ExperimentsInHonesty,2025-02-25T02:04:14Z,- ExperimentsInHonesty commented on issue: [7573](https://github.com/hackforla/website/issues/7573#issuecomment-2680185377) at 2025-02-24 06:04 PM PST -ExperimentsInHonesty,2025-02-25T02:09:18Z,- ExperimentsInHonesty commented on issue: [7841](https://github.com/hackforla/website/issues/7841#issuecomment-2680192143) at 2025-02-24 06:09 PM PST -ExperimentsInHonesty,2025-02-27T20:41:52Z,- ExperimentsInHonesty assigned to issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-02-27 12:41 PM PST -ExperimentsInHonesty,2025-03-02T18:11:53Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2692843083) at 2025-03-02 10:11 AM PST -ExperimentsInHonesty,2025-03-02T18:31:25Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2692850045) at 2025-03-02 10:31 AM PST -ExperimentsInHonesty,2025-03-02T18:46:41Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692855413) at 2025-03-02 10:46 AM PST -ExperimentsInHonesty,2025-03-02T19:20:46Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692867455) at 2025-03-02 11:20 AM PST -ExperimentsInHonesty,2025-03-02T19:40:30Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692874344) at 2025-03-02 11:40 AM PST -ExperimentsInHonesty,2025-03-02T19:59:30Z,- ExperimentsInHonesty commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2692881231) at 2025-03-02 11:59 AM PST -ExperimentsInHonesty,2025-03-03T20:16:26Z,- ExperimentsInHonesty unassigned from issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-03-03 12:16 PM PST -ExperimentsInHonesty,2025-03-04T01:29:58Z,- ExperimentsInHonesty commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2695954699) at 2025-03-03 05:29 PM PST -ExperimentsInHonesty,2025-03-04T01:36:05Z,- ExperimentsInHonesty closed issue as completed: [6689](https://github.com/hackforla/website/issues/6689#event-16543177143) at 2025-03-03 05:36 PM PST -ExperimentsInHonesty,2025-03-04T01:38:27Z,- ExperimentsInHonesty commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2695964353) at 2025-03-03 05:38 PM PST -ExperimentsInHonesty,2025-03-04T01:39:51Z,- ExperimentsInHonesty commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2695965897) at 2025-03-03 05:39 PM PST -ExperimentsInHonesty,2025-03-04T01:41:20Z,- ExperimentsInHonesty commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-2695967567) at 2025-03-03 05:41 PM PST -ExperimentsInHonesty,2025-03-04T01:43:42Z,- ExperimentsInHonesty opened pull request: [7964](https://github.com/hackforla/website/pull/7964) at 2025-03-03 05:43 PM PST -ExperimentsInHonesty,2025-03-04T01:48:48Z,- ExperimentsInHonesty pull request closed w/o merging: [7964](https://github.com/hackforla/website/pull/7964#event-16543259729) at 2025-03-03 05:48 PM PST -ExperimentsInHonesty,2025-03-04T17:02:18Z,- ExperimentsInHonesty closed issue as completed: [7007](https://github.com/hackforla/website/issues/7007#event-16567092335) at 2025-03-04 09:02 AM PST -ExperimentsInHonesty,2025-03-05T21:18:02Z,- ExperimentsInHonesty commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2702100522) at 2025-03-05 01:18 PM PST -ExperimentsInHonesty,2025-03-09T17:10:30Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2708966670) at 2025-03-09 10:10 AM PDT -ExperimentsInHonesty,2025-03-09T17:11:53Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2708967223) at 2025-03-09 10:11 AM PDT -ExperimentsInHonesty,2025-03-09T17:35:47Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2708978731) at 2025-03-09 10:35 AM PDT -ExperimentsInHonesty,2025-03-09T18:06:04Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2708993504) at 2025-03-09 11:06 AM PDT -ExperimentsInHonesty,2025-03-09T18:29:06Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709004329) at 2025-03-09 11:29 AM PDT -ExperimentsInHonesty,2025-03-09T18:31:31Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709005422) at 2025-03-09 11:31 AM PDT -ExperimentsInHonesty,2025-03-09T18:53:39Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709015584) at 2025-03-09 11:53 AM PDT -ExperimentsInHonesty,2025-03-09T18:55:45Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2709016387) at 2025-03-09 11:55 AM PDT -ExperimentsInHonesty,2025-03-11T01:04:33Z,- ExperimentsInHonesty commented on issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2712192146) at 2025-03-10 06:04 PM PDT -ExperimentsInHonesty,2025-03-16T17:27:54Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2727553398) at 2025-03-16 10:27 AM PDT -ExperimentsInHonesty,2025-03-16T17:41:59Z,- ExperimentsInHonesty commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2727559798) at 2025-03-16 10:41 AM PDT -ExperimentsInHonesty,2025-03-18T00:54:36Z,- ExperimentsInHonesty commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2731297512) at 2025-03-17 05:54 PM PDT -ExperimentsInHonesty,2025-03-18T00:54:36Z,- ExperimentsInHonesty closed issue as completed: [6129](https://github.com/hackforla/website/issues/6129#event-16816829973) at 2025-03-17 05:54 PM PDT -ExperimentsInHonesty,2025-03-18T01:07:44Z,- ExperimentsInHonesty commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2731316345) at 2025-03-17 06:07 PM PDT -ExperimentsInHonesty,2025-03-18T01:09:39Z,- ExperimentsInHonesty commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2731318935) at 2025-03-17 06:09 PM PDT -ExperimentsInHonesty,2025-03-19T21:10:37Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2738122919) at 2025-03-19 02:10 PM PDT -ExperimentsInHonesty,2025-03-30T16:08:54Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764629155) at 2025-03-30 09:08 AM PDT -ExperimentsInHonesty,2025-03-30T16:42:38Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2764641268) at 2025-03-30 09:42 AM PDT -ExperimentsInHonesty,2025-04-06T16:15:20Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781495596) at 2025-04-06 09:15 AM PDT -ExperimentsInHonesty,2025-04-06T16:58:38Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781511936) at 2025-04-06 09:58 AM PDT -ExperimentsInHonesty,2025-04-06T17:07:42Z,- ExperimentsInHonesty commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781515348) at 2025-04-06 10:07 AM PDT -ExperimentsInHonesty,2025-04-13T19:13:51Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2800083657) at 2025-04-13 12:13 PM PDT -ExperimentsInHonesty,2025-04-13T19:16:33Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2800084814) at 2025-04-13 12:16 PM PDT -ExperimentsInHonesty,2025-04-13T19:31:10Z,- ExperimentsInHonesty commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2800090128) at 2025-04-13 12:31 PM PDT -ExperimentsInHonesty,2025-04-14T18:43:35Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2802627306) at 2025-04-14 11:43 AM PDT -ExperimentsInHonesty,2025-04-14T18:59:30Z,- ExperimentsInHonesty commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2802685507) at 2025-04-14 11:59 AM PDT -ExperimentsInHonesty,2025-04-15T00:14:49Z,- ExperimentsInHonesty commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2803384770) at 2025-04-14 05:14 PM PDT -ExperimentsInHonesty,2025-04-27T17:48:50Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2833567742) at 2025-04-27 10:48 AM PDT -ExperimentsInHonesty,2025-04-27T18:01:51Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2833572669) at 2025-04-27 11:01 AM PDT -ExperimentsInHonesty,2025-05-04T18:14:05Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2849346855) at 2025-05-04 11:14 AM PDT -ExperimentsInHonesty,2025-05-04T18:24:20Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2849351028) at 2025-05-04 11:24 AM PDT -ExperimentsInHonesty,2025-05-06T17:09:04Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2855330337) at 2025-05-06 10:09 AM PDT -ExperimentsInHonesty,2025-05-07T20:38:07Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860281028) at 2025-05-07 01:38 PM PDT -ExperimentsInHonesty,2025-05-07T20:42:23Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860297309) at 2025-05-07 01:42 PM PDT -ExperimentsInHonesty,2025-05-07T20:47:33Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860311497) at 2025-05-07 01:47 PM PDT -ExperimentsInHonesty,2025-05-07T20:50:41Z,- ExperimentsInHonesty commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2860319071) at 2025-05-07 01:50 PM PDT -ExperimentsInHonesty,2025-05-13T00:49:13Z,- ExperimentsInHonesty commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2874680163) at 2025-05-12 05:49 PM PDT -ExperimentsInHonesty,2025-05-14T20:13:29Z,- ExperimentsInHonesty commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2881443593) at 2025-05-14 01:13 PM PDT -ExperimentsInHonesty,2025-05-19T16:08:26Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2891566352) at 2025-05-19 09:08 AM PDT -ExperimentsInHonesty,2025-05-20T00:11:48Z,- ExperimentsInHonesty commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892551537) at 2025-05-19 05:11 PM PDT -ExperimentsInHonesty,2025-05-20T00:47:08Z,- ExperimentsInHonesty closed issue as completed: [6919](https://github.com/hackforla/website/issues/6919#event-17723933701) at 2025-05-19 05:47 PM PDT -ExperimentsInHonesty,2025-05-28T20:24:22Z,- ExperimentsInHonesty commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2917519652) at 2025-05-28 01:24 PM PDT -ExperimentsInHonesty,2025-05-28T20:26:54Z,- ExperimentsInHonesty commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2917525402) at 2025-05-28 01:26 PM PDT -ExperimentsInHonesty,2025-05-28T20:27:28Z,- ExperimentsInHonesty commented on issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2917527404) at 2025-05-28 01:27 PM PDT -ExperimentsInHonesty,2025-05-28T20:28:08Z,- ExperimentsInHonesty commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2917529464) at 2025-05-28 01:28 PM PDT -ExperimentsInHonesty,2025-05-28T20:28:35Z,- ExperimentsInHonesty commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2917531083) at 2025-05-28 01:28 PM PDT -ExperimentsInHonesty,2025-06-03T00:35:31Z,- ExperimentsInHonesty closed issue as completed: [8168](https://github.com/hackforla/website/issues/8168#event-17945561153) at 2025-06-02 05:35 PM PDT -ExperimentsInHonesty,2025-06-03T00:35:41Z,- ExperimentsInHonesty closed issue as completed: [8165](https://github.com/hackforla/website/issues/8165#event-17945564853) at 2025-06-02 05:35 PM PDT -ExperimentsInHonesty,2025-06-08T16:58:59Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2954176779) at 2025-06-08 09:58 AM PDT -ExperimentsInHonesty,2025-06-11T20:05:44Z,- ExperimentsInHonesty commented on issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2964007788) at 2025-06-11 01:05 PM PDT -ExperimentsInHonesty,2025-06-22T16:48:45Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2994313899) at 2025-06-22 09:48 AM PDT -ExperimentsInHonesty,2025-06-22T17:14:16Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2994329904) at 2025-06-22 10:14 AM PDT -ExperimentsInHonesty,2025-06-22T17:36:11Z,- ExperimentsInHonesty commented on issue: [7725](https://github.com/hackforla/website/issues/7725#issuecomment-2994340043) at 2025-06-22 10:36 AM PDT -eyaaoo,6428,SKILLS ISSUE -eyaaoo,2024-03-05T04:07:07Z,- eyaaoo opened issue: [6428](https://github.com/hackforla/website/issues/6428) at 2024-03-04 08:07 PM PST -eyaaoo,2024-03-05T04:12:21Z,- eyaaoo assigned to issue: [6428](https://github.com/hackforla/website/issues/6428) at 2024-03-04 08:12 PM PST -eyaaoo,2024-03-14T18:14:44Z,- eyaaoo commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-1998055485) at 2024-03-14 11:14 AM PDT -eyaaoo,2024-03-31T21:43:56Z,- eyaaoo assigned to issue: [6235](https://github.com/hackforla/website/issues/6235) at 2024-03-31 02:43 PM PDT -eyaaoo,2024-03-31T22:22:44Z,- eyaaoo commented on issue: [6235](https://github.com/hackforla/website/issues/6235#issuecomment-2028931805) at 2024-03-31 03:22 PM PDT -eyaaoo,2024-03-31T22:23:44Z,- eyaaoo commented on issue: [6428](https://github.com/hackforla/website/issues/6428#issuecomment-2028931986) at 2024-03-31 03:23 PM PDT -eyaaoo,2024-03-31T22:23:44Z,- eyaaoo closed issue as completed: [6428](https://github.com/hackforla/website/issues/6428#event-12304943959) at 2024-03-31 03:23 PM PDT -eyaaoo,2024-04-04T05:58:07Z,- eyaaoo opened pull request: [6564](https://github.com/hackforla/website/pull/6564) at 2024-04-03 10:58 PM PDT -eyaaoo,2024-04-05T05:30:33Z,- eyaaoo pull request merged: [6564](https://github.com/hackforla/website/pull/6564#event-12368097819) at 2024-04-04 10:30 PM PDT -eyaaoo,2024-04-06T17:33:08Z,- eyaaoo assigned to issue: [6537](https://github.com/hackforla/website/issues/6537) at 2024-04-06 10:33 AM PDT -eyaaoo,2024-04-06T17:37:12Z,- eyaaoo commented on issue: [6537](https://github.com/hackforla/website/issues/6537#issuecomment-2041147111) at 2024-04-06 10:37 AM PDT -eyaaoo,2024-04-06T17:38:27Z,- eyaaoo commented on issue: [6537](https://github.com/hackforla/website/issues/6537#issuecomment-2041147335) at 2024-04-06 10:38 AM PDT -ezchung,4609,SKILLS ISSUE -ezchung,2023-05-09T02:58:25Z,- ezchung opened issue: [4609](https://github.com/hackforla/website/issues/4609) at 2023-05-08 07:58 PM PDT -ezchung,2023-05-09T04:08:56Z,- ezchung assigned to issue: [4609](https://github.com/hackforla/website/issues/4609) at 2023-05-08 09:08 PM PDT -fahimicodes,5726,SKILLS ISSUE -fahimicodes,2023-10-17T03:11:20Z,- fahimicodes opened issue: [5726](https://github.com/hackforla/website/issues/5726) at 2023-10-16 08:11 PM PDT -fahimicodes,2023-10-17T03:11:21Z,- fahimicodes assigned to issue: [5726](https://github.com/hackforla/website/issues/5726) at 2023-10-16 08:11 PM PDT -fahimicodes,2023-10-17T18:18:14Z,- fahimicodes assigned to issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1738367332) at 2023-10-17 11:18 AM PDT -fahimicodes,2023-10-17T18:26:58Z,- fahimicodes commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1766944554) at 2023-10-17 11:26 AM PDT -fahimicodes,2023-10-17T18:57:22Z,- fahimicodes commented on issue: [5370](https://github.com/hackforla/website/issues/5370#issuecomment-1766988529) at 2023-10-17 11:57 AM PDT -fahimicodes,2023-10-17T20:08:03Z,- fahimicodes opened pull request: [5732](https://github.com/hackforla/website/pull/5732) at 2023-10-17 01:08 PM PDT -fahimicodes,2023-10-18T23:24:27Z,- fahimicodes commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1769572645) at 2023-10-18 04:24 PM PDT -fahimicodes,2023-10-20T13:51:38Z,- fahimicodes pull request merged: [5732](https://github.com/hackforla/website/pull/5732#event-10724811238) at 2023-10-20 06:51 AM PDT -FamousHero,7327,SKILLS ISSUE -FamousHero,2024-06-05T21:19:49Z,- FamousHero opened issue: [6964](https://github.com/hackforla/website/issues/6964) at 2024-06-05 02:19 PM PDT -FamousHero,2024-06-23T16:33:57Z,- FamousHero assigned to issue: [6964](https://github.com/hackforla/website/issues/6964#issuecomment-2185145971) at 2024-06-23 09:33 AM PDT -FamousHero,2024-08-21T02:58:30Z,- FamousHero opened issue: [7327](https://github.com/hackforla/website/issues/7327) at 2024-08-20 07:58 PM PDT -FamousHero,2024-08-21T02:58:41Z,- FamousHero assigned to issue: [7327](https://github.com/hackforla/website/issues/7327) at 2024-08-20 07:58 PM PDT -FamousHero,2024-08-21T03:19:16Z,- FamousHero assigned to issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2282848346) at 2024-08-20 08:19 PM PDT -FamousHero,2024-08-21T03:40:04Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2300602215) at 2024-08-20 08:40 PM PDT -FamousHero,2024-08-23T18:12:09Z,- FamousHero assigned to issue: [7189](https://github.com/hackforla/website/issues/7189) at 2024-08-23 11:12 AM PDT -FamousHero,2024-08-23T18:12:29Z,- FamousHero unassigned from issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307578482) at 2024-08-23 11:12 AM PDT -FamousHero,2024-08-23T18:20:48Z,- FamousHero assigned to issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307578482) at 2024-08-23 11:20 AM PDT -FamousHero,2024-08-23T18:21:05Z,- FamousHero unassigned from issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307590162) at 2024-08-23 11:21 AM PDT -FamousHero,2024-08-23T18:21:58Z,- FamousHero unassigned from issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2300512055) at 2024-08-23 11:21 AM PDT -FamousHero,2024-08-23T18:22:38Z,- FamousHero assigned to issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307590162) at 2024-08-23 11:22 AM PDT -FamousHero,2024-08-23T19:32:26Z,- FamousHero opened pull request: [7345](https://github.com/hackforla/website/pull/7345) at 2024-08-23 12:32 PM PDT -FamousHero,2024-08-23T21:31:44Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2307837053) at 2024-08-23 02:31 PM PDT -FamousHero,2024-08-23T21:34:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2307839689) at 2024-08-23 02:34 PM PDT -FamousHero,2024-08-23T21:36:10Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2307841405) at 2024-08-23 02:36 PM PDT -FamousHero,2024-08-23T21:38:03Z,- FamousHero commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307843266) at 2024-08-23 02:38 PM PDT -FamousHero,2024-08-24T01:27:05Z,- FamousHero commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2307977571) at 2024-08-23 06:27 PM PDT -FamousHero,2024-08-29T23:17:50Z,- FamousHero pull request merged: [7345](https://github.com/hackforla/website/pull/7345#event-14072096650) at 2024-08-29 04:17 PM PDT -FamousHero,2024-08-30T06:05:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2320164442) at 2024-08-29 11:05 PM PDT -FamousHero,2024-08-30T06:07:05Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2320167687) at 2024-08-29 11:07 PM PDT -FamousHero,2024-08-30T06:08:23Z,- FamousHero assigned to issue: [7286](https://github.com/hackforla/website/issues/7286) at 2024-08-29 11:08 PM PDT -FamousHero,2024-08-30T06:10:48Z,- FamousHero commented on issue: [7286](https://github.com/hackforla/website/issues/7286#issuecomment-2320175108) at 2024-08-29 11:10 PM PDT -FamousHero,2024-09-01T23:58:47Z,- FamousHero opened pull request: [7376](https://github.com/hackforla/website/pull/7376) at 2024-09-01 04:58 PM PDT -FamousHero,2024-09-04T22:05:01Z,- FamousHero pull request merged: [7376](https://github.com/hackforla/website/pull/7376#event-14138080045) at 2024-09-04 03:05 PM PDT -FamousHero,2024-09-06T09:20:00Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2333632091) at 2024-09-06 02:20 AM PDT -FamousHero,2024-09-06T09:26:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2333644041) at 2024-09-06 02:26 AM PDT -FamousHero,2024-09-10T04:24:10Z,- FamousHero assigned to issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2259995516) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:24:20Z,- FamousHero assigned to issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2260003698) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:24:24Z,- FamousHero unassigned from issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2339580789) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:24:29Z,- FamousHero unassigned from issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2260003698) at 2024-09-09 09:24 PM PDT -FamousHero,2024-09-10T04:25:12Z,- FamousHero assigned to issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339580938) at 2024-09-09 09:25 PM PDT -FamousHero,2024-09-10T04:38:53Z,- FamousHero opened issue: [7430](https://github.com/hackforla/website/issues/7430) at 2024-09-09 09:38 PM PDT -FamousHero,2024-09-10T04:45:04Z,- FamousHero opened issue: [7431](https://github.com/hackforla/website/issues/7431) at 2024-09-09 09:45 PM PDT -FamousHero,2024-09-10T04:48:02Z,- FamousHero opened issue: [7432](https://github.com/hackforla/website/issues/7432) at 2024-09-09 09:48 PM PDT -FamousHero,2024-09-10T04:49:46Z,- FamousHero opened issue: [7433](https://github.com/hackforla/website/issues/7433) at 2024-09-09 09:49 PM PDT -FamousHero,2024-09-10T04:51:22Z,- FamousHero opened issue: [7434](https://github.com/hackforla/website/issues/7434) at 2024-09-09 09:51 PM PDT -FamousHero,2024-09-10T04:52:44Z,- FamousHero opened issue: [7435](https://github.com/hackforla/website/issues/7435) at 2024-09-09 09:52 PM PDT -FamousHero,2024-09-10T04:58:23Z,- FamousHero commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339619053) at 2024-09-09 09:58 PM PDT -FamousHero,2024-09-10T05:18:35Z,- FamousHero commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2339642814) at 2024-09-09 10:18 PM PDT -FamousHero,2024-09-11T15:26:19Z,- FamousHero commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2343990836) at 2024-09-11 08:26 AM PDT -FamousHero,2024-09-11T15:34:03Z,- FamousHero submitted pull request review: [7427](https://github.com/hackforla/website/pull/7427#pullrequestreview-2297621161) at 2024-09-11 08:34 AM PDT -FamousHero,2024-09-11T20:22:05Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2344631376) at 2024-09-11 01:22 PM PDT -FamousHero,2024-09-11T20:24:03Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2344634384) at 2024-09-11 01:24 PM PDT -FamousHero,2024-09-11T20:27:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2344639635) at 2024-09-11 01:27 PM PDT -FamousHero,2024-09-13T23:58:55Z,- FamousHero assigned to issue: [7379](https://github.com/hackforla/website/issues/7379) at 2024-09-13 04:58 PM PDT -FamousHero,2024-09-14T02:48:37Z,- FamousHero submitted pull request review: [7445](https://github.com/hackforla/website/pull/7445#pullrequestreview-2304360666) at 2024-09-13 07:48 PM PDT -FamousHero,2024-09-14T03:51:55Z,- FamousHero opened pull request: [7446](https://github.com/hackforla/website/pull/7446) at 2024-09-13 08:51 PM PDT -FamousHero,2024-09-15T02:57:32Z,- FamousHero pull request merged: [7446](https://github.com/hackforla/website/pull/7446#event-14262096861) at 2024-09-14 07:57 PM PDT -FamousHero,2024-09-15T11:21:41Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2351546481) at 2024-09-15 04:21 AM PDT -FamousHero,2024-09-15T11:22:37Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2351546809) at 2024-09-15 04:22 AM PDT -FamousHero,2024-09-15T22:24:58Z,- FamousHero assigned to issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2345174485) at 2024-09-15 03:24 PM PDT -FamousHero,2024-09-16T00:55:53Z,- FamousHero opened pull request: [7463](https://github.com/hackforla/website/pull/7463) at 2024-09-15 05:55 PM PDT -FamousHero,2024-09-16T17:53:25Z,- FamousHero commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2353552112) at 2024-09-16 10:53 AM PDT -FamousHero,2024-09-17T00:55:44Z,- FamousHero submitted pull request review: [7462](https://github.com/hackforla/website/pull/7462#pullrequestreview-2308047754) at 2024-09-16 05:55 PM PDT -FamousHero,2024-09-17T15:46:05Z,- FamousHero submitted pull request review: [7462](https://github.com/hackforla/website/pull/7462#pullrequestreview-2310149466) at 2024-09-17 08:46 AM PDT -FamousHero,2024-09-18T18:52:38Z,- FamousHero pull request merged: [7463](https://github.com/hackforla/website/pull/7463#event-14312282936) at 2024-09-18 11:52 AM PDT -FamousHero,2024-09-19T22:58:43Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2362341795) at 2024-09-19 03:58 PM PDT -FamousHero,2024-09-19T23:03:14Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2362346510) at 2024-09-19 04:03 PM PDT -FamousHero,2024-09-19T23:08:49Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2362351930) at 2024-09-19 04:08 PM PDT -FamousHero,2024-09-19T23:17:24Z,- FamousHero commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362359866) at 2024-09-19 04:17 PM PDT -FamousHero,2024-09-19T23:23:43Z,- FamousHero commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2362365817) at 2024-09-19 04:23 PM PDT -FamousHero,2024-09-21T02:40:24Z,- FamousHero submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2319636647) at 2024-09-20 07:40 PM PDT -FamousHero,2024-09-21T03:02:48Z,- FamousHero submitted pull request review: [7498](https://github.com/hackforla/website/pull/7498#pullrequestreview-2319639312) at 2024-09-20 08:02 PM PDT -FamousHero,2024-09-21T19:54:45Z,- FamousHero submitted pull request review: [7504](https://github.com/hackforla/website/pull/7504#pullrequestreview-2319896729) at 2024-09-21 12:54 PM PDT -FamousHero,2024-09-21T20:13:51Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2365307522) at 2024-09-21 01:13 PM PDT -FamousHero,2024-09-22T17:27:13Z,- FamousHero assigned to issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2257211841) at 2024-09-22 10:27 AM PDT -FamousHero,2024-09-22T17:47:12Z,- FamousHero unassigned from issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2366883244) at 2024-09-22 10:47 AM PDT -FamousHero,2024-09-22T18:03:11Z,- FamousHero assigned to issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2031082340) at 2024-09-22 11:03 AM PDT -FamousHero,2024-09-24T05:25:01Z,- FamousHero submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2324073855) at 2024-09-23 10:25 PM PDT -FamousHero,2024-09-24T05:29:01Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2370220251) at 2024-09-23 10:29 PM PDT -FamousHero,2024-09-24T05:31:10Z,- FamousHero commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2370224456) at 2024-09-23 10:31 PM PDT -FamousHero,2024-09-25T02:00:30Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2372731327) at 2024-09-24 07:00 PM PDT -FamousHero,2024-09-26T02:23:04Z,- FamousHero submitted pull request review: [7514](https://github.com/hackforla/website/pull/7514#pullrequestreview-2329874264) at 2024-09-25 07:23 PM PDT -FamousHero,2024-09-26T21:27:22Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2377969603) at 2024-09-26 02:27 PM PDT -FamousHero,2024-09-26T22:09:36Z,- FamousHero opened issue: [7524](https://github.com/hackforla/website/issues/7524) at 2024-09-26 03:09 PM PDT -FamousHero,2024-09-27T02:49:55Z,- FamousHero commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2378306304) at 2024-09-26 07:49 PM PDT -FamousHero,2024-09-27T04:17:04Z,- FamousHero opened issue: [7527](https://github.com/hackforla/website/issues/7527) at 2024-09-26 09:17 PM PDT -FamousHero,2024-09-27T04:22:56Z,- FamousHero commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2378373349) at 2024-09-26 09:22 PM PDT -FamousHero,2024-09-27T04:52:54Z,- FamousHero commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2378396726) at 2024-09-26 09:52 PM PDT -FamousHero,2024-09-27T21:21:32Z,- FamousHero assigned to issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380074797) at 2024-09-27 02:21 PM PDT -FamousHero,2024-09-28T02:37:39Z,- FamousHero commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380371655) at 2024-09-27 07:37 PM PDT -FamousHero,2024-09-28T02:56:39Z,- FamousHero submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2334864647) at 2024-09-27 07:56 PM PDT -FamousHero,2024-09-28T03:05:43Z,- FamousHero submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2334865616) at 2024-09-27 08:05 PM PDT -FamousHero,2024-09-29T23:49:01Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2381656729) at 2024-09-29 04:49 PM PDT -FamousHero,2024-09-29T23:51:30Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2381657458) at 2024-09-29 04:51 PM PDT -FamousHero,2024-10-03T23:41:00Z,- FamousHero commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392516161) at 2024-10-03 04:41 PM PDT -FamousHero,2024-10-03T23:42:55Z,- FamousHero commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2392517698) at 2024-10-03 04:42 PM PDT -FamousHero,2024-10-05T15:05:51Z,- FamousHero submitted pull request review: [7558](https://github.com/hackforla/website/pull/7558#pullrequestreview-2349621934) at 2024-10-05 08:05 AM PDT -FamousHero,2024-10-05T15:11:35Z,- FamousHero commented on pull request: [7564](https://github.com/hackforla/website/pull/7564#issuecomment-2395088241) at 2024-10-05 08:11 AM PDT -FamousHero,2024-10-05T22:58:39Z,- FamousHero unassigned from issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392752116) at 2024-10-05 03:58 PM PDT -FamousHero,2024-10-07T06:28:28Z,- FamousHero submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2350964275) at 2024-10-06 11:28 PM PDT -FamousHero,2024-10-08T01:34:47Z,- FamousHero commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2398431519) at 2024-10-07 06:34 PM PDT -FamousHero,2024-10-08T03:43:27Z,- FamousHero commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2398735451) at 2024-10-07 08:43 PM PDT -FamousHero,2024-10-08T03:43:40Z,- FamousHero submitted pull request review: [7558](https://github.com/hackforla/website/pull/7558#pullrequestreview-2353307665) at 2024-10-07 08:43 PM PDT -FamousHero,2024-10-08T18:24:07Z,- FamousHero submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2355225254) at 2024-10-08 11:24 AM PDT -FamousHero,2024-10-22T02:17:43Z,- FamousHero submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2383620670) at 2024-10-21 07:17 PM PDT -FamousHero,2024-10-22T02:24:14Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2428078492) at 2024-10-21 07:24 PM PDT -FamousHero,2024-10-22T02:26:25Z,- FamousHero commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2428080290) at 2024-10-21 07:26 PM PDT -FamousHero,2024-10-25T05:40:59Z,- FamousHero submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394225834) at 2024-10-24 10:40 PM PDT -FamousHero,2024-11-01T02:12:48Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2451163278) at 2024-10-31 07:12 PM PDT -FamousHero,2024-11-01T02:18:05Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2451167459) at 2024-10-31 07:18 PM PDT -FamousHero,2024-11-01T02:28:34Z,- FamousHero assigned to issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2366883244) at 2024-10-31 07:28 PM PDT -FamousHero,2024-11-15T23:27:08Z,- FamousHero commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2480122314) at 2024-11-15 03:27 PM PST -FamousHero,2024-11-15T23:34:21Z,- FamousHero submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2439928139) at 2024-11-15 03:34 PM PST -FamousHero,2024-11-15T23:36:41Z,- FamousHero commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2480130910) at 2024-11-15 03:36 PM PST -FamousHero,2024-11-15T23:45:44Z,- FamousHero submitted pull request review: [7719](https://github.com/hackforla/website/pull/7719#pullrequestreview-2439939092) at 2024-11-15 03:45 PM PST -FamousHero,2024-12-07T20:33:23Z,- FamousHero closed issue by PR 7791: [7604](https://github.com/hackforla/website/issues/7604#event-15570616804) at 2024-12-07 12:33 PM PST -FamousHero,2025-01-13T22:47:43Z,- FamousHero commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2588386246) at 2025-01-13 02:47 PM PST -FamousHero,2025-01-17T04:33:25Z,- FamousHero commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2597415776) at 2025-01-16 08:33 PM PST -FamousHero,2025-02-14T02:45:46Z,- FamousHero closed issue as completed: [7327](https://github.com/hackforla/website/issues/7327#event-16305242774) at 2025-02-13 06:45 PM PST -FamousHero,2025-02-26T02:56:31Z,- FamousHero commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2683767887) at 2025-02-25 06:56 PM PST -fancyham,2022-09-21T06:02:42Z,- fancyham commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1253243896) at 2022-09-20 11:02 PM PDT -FatCatLikesBeer,8094,SKILLS ISSUE -FatCatLikesBeer,2025-04-29T02:46:48Z,- FatCatLikesBeer opened issue: [8094](https://github.com/hackforla/website/issues/8094) at 2025-04-28 07:46 PM PDT -FatCatLikesBeer,2025-04-29T02:46:57Z,- FatCatLikesBeer assigned to issue: [8094](https://github.com/hackforla/website/issues/8094) at 2025-04-28 07:46 PM PDT -FatCatLikesBeer,2025-04-29T03:59:32Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2837380629) at 2025-04-28 08:59 PM PDT -FatCatLikesBeer,2025-04-30T06:02:19Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2840894152) at 2025-04-29 11:02 PM PDT -FatCatLikesBeer,2025-05-05T05:39:23Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2849961512) at 2025-05-04 10:39 PM PDT -FatCatLikesBeer,2025-05-06T02:53:49Z,- FatCatLikesBeer assigned to issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705552522) at 2025-05-05 07:53 PM PDT -FatCatLikesBeer,2025-05-06T02:57:01Z,- FatCatLikesBeer commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2853136725) at 2025-05-05 07:57 PM PDT -FatCatLikesBeer,2025-05-06T02:58:27Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2853137829) at 2025-05-05 07:58 PM PDT -FatCatLikesBeer,2025-05-06T03:51:38Z,- FatCatLikesBeer opened pull request: [8116](https://github.com/hackforla/website/pull/8116) at 2025-05-05 08:51 PM PDT -FatCatLikesBeer,2025-05-11T17:07:52Z,- FatCatLikesBeer pull request merged: [8116](https://github.com/hackforla/website/pull/8116#event-17606135888) at 2025-05-11 10:07 AM PDT -FatCatLikesBeer,2025-05-13T05:15:17Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2875073355) at 2025-05-12 10:15 PM PDT -FatCatLikesBeer,2025-05-13T23:15:48Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2878160975) at 2025-05-13 04:15 PM PDT -FatCatLikesBeer,2025-05-14T00:12:31Z,- FatCatLikesBeer assigned to issue: [7944](https://github.com/hackforla/website/issues/7944) at 2025-05-13 05:12 PM PDT -FatCatLikesBeer,2025-05-14T00:16:03Z,- FatCatLikesBeer commented on issue: [7944](https://github.com/hackforla/website/issues/7944#issuecomment-2878247577) at 2025-05-13 05:16 PM PDT -FatCatLikesBeer,2025-05-15T05:41:56Z,- FatCatLikesBeer opened pull request: [8143](https://github.com/hackforla/website/pull/8143) at 2025-05-14 10:41 PM PDT -FatCatLikesBeer,2025-05-18T02:07:08Z,- FatCatLikesBeer commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2888708614) at 2025-05-17 07:07 PM PDT -FatCatLikesBeer,2025-05-18T02:33:04Z,- FatCatLikesBeer pull request merged: [8143](https://github.com/hackforla/website/pull/8143#event-17701412398) at 2025-05-17 07:33 PM PDT -FatCatLikesBeer,2025-05-18T02:50:35Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2888728084) at 2025-05-17 07:50 PM PDT -FatCatLikesBeer,2025-05-18T02:53:13Z,- FatCatLikesBeer unassigned from issue: [7944](https://github.com/hackforla/website/issues/7944#event-17701412438) at 2025-05-17 07:53 PM PDT -FatCatLikesBeer,2025-05-18T02:53:44Z,- FatCatLikesBeer unassigned from issue: [7876](https://github.com/hackforla/website/issues/7876#event-17606135928) at 2025-05-17 07:53 PM PDT -FatCatLikesBeer,2025-06-04T19:57:02Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2941291606) at 2025-06-04 12:57 PM PDT -FatCatLikesBeer,2025-06-12T23:37:23Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2968447596) at 2025-06-12 04:37 PM PDT -FatCatLikesBeer,2025-06-19T06:52:39Z,- FatCatLikesBeer commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2986845618) at 2025-06-18 11:52 PM PDT -FatCatLikesBeer,2025-06-20T09:38:46Z,- FatCatLikesBeer submitted pull request review: [8197](https://github.com/hackforla/website/pull/8197#pullrequestreview-2945291355) at 2025-06-20 02:38 AM PDT -FatCatLikesBeer,2025-06-20T17:58:25Z,- FatCatLikesBeer commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2992401433) at 2025-06-20 10:58 AM PDT -FatCatLikesBeer,2025-06-25T03:12:43Z,- FatCatLikesBeer submitted pull request review: [8197](https://github.com/hackforla/website/pull/8197#pullrequestreview-2956208114) at 2025-06-24 08:12 PM PDT -FatCatLikesBeer,2025-06-25T03:18:54Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3002757057) at 2025-06-24 08:18 PM PDT -FatCatLikesBeer,2025-06-25T03:22:49Z,- FatCatLikesBeer commented on pull request: [8204](https://github.com/hackforla/website/pull/8204#issuecomment-3002772719) at 2025-06-24 08:22 PM PDT -FatCatLikesBeer,2025-06-25T03:32:02Z,- FatCatLikesBeer submitted pull request review: [8204](https://github.com/hackforla/website/pull/8204#pullrequestreview-2956268981) at 2025-06-24 08:32 PM PDT -FatCatLikesBeer,2025-06-25T03:34:04Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3002825658) at 2025-06-24 08:34 PM PDT -FatCatLikesBeer,2025-06-25T21:37:20Z,- FatCatLikesBeer commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3006220727) at 2025-06-25 02:37 PM PDT -FatCatLikesBeer,2025-06-26T03:41:26Z,- FatCatLikesBeer submitted pull request review: [8206](https://github.com/hackforla/website/pull/8206#pullrequestreview-2960444393) at 2025-06-25 08:41 PM PDT -FatCatLikesBeer,2025-06-26T03:45:46Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3006943048) at 2025-06-25 08:45 PM PDT -FatCatLikesBeer,2025-06-27T23:00:33Z,- FatCatLikesBeer commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014583161) at 2025-06-27 04:00 PM PDT -FatCatLikesBeer,2025-06-28T00:53:52Z,- FatCatLikesBeer commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3014780841) at 2025-06-27 05:53 PM PDT -FatCatLikesBeer,2025-06-28T02:18:06Z,- FatCatLikesBeer submitted pull request review: [8231](https://github.com/hackforla/website/pull/8231#pullrequestreview-2968319866) at 2025-06-27 07:18 PM PDT -FatCatLikesBeer,2025-06-28T04:16:52Z,- FatCatLikesBeer submitted pull request review: [8231](https://github.com/hackforla/website/pull/8231#pullrequestreview-2968354167) at 2025-06-27 09:16 PM PDT -FatCatLikesBeer,2025-06-28T04:30:18Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3014939109) at 2025-06-27 09:30 PM PDT -FatCatLikesBeer,2025-07-01T10:04:57Z,- FatCatLikesBeer commented on pull request: [8236](https://github.com/hackforla/website/pull/8236#issuecomment-3023135826) at 2025-07-01 03:04 AM PDT -FatCatLikesBeer,2025-07-02T06:09:49Z,- FatCatLikesBeer submitted pull request review: [8236](https://github.com/hackforla/website/pull/8236#pullrequestreview-2977860542) at 2025-07-01 11:09 PM PDT -FatCatLikesBeer,2025-07-02T06:11:01Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3026580128) at 2025-07-01 11:11 PM PDT -FatCatLikesBeer,2025-07-02T06:25:58Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3026611607) at 2025-07-01 11:25 PM PDT -FatCatLikesBeer,2025-07-17T06:28:20Z,- FatCatLikesBeer assigned to issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-2673476000) at 2025-07-16 11:28 PM PDT -FatCatLikesBeer,2025-07-17T06:29:54Z,- FatCatLikesBeer commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3082750089) at 2025-07-16 11:29 PM PDT -FatCatLikesBeer,2025-07-20T20:12:52Z,- FatCatLikesBeer commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3094744352) at 2025-07-20 01:12 PM PDT -FatCatLikesBeer,2025-07-20T20:15:42Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3094745683) at 2025-07-20 01:15 PM PDT -FatCatLikesBeer,2025-08-05T06:15:14Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3153594456) at 2025-08-04 11:15 PM PDT -FatCatLikesBeer,2025-08-05T06:29:46Z,- FatCatLikesBeer assigned to issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998293493) at 2025-08-04 11:29 PM PDT -FatCatLikesBeer,2025-08-05T06:29:58Z,- FatCatLikesBeer unassigned from issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998293493) at 2025-08-04 11:29 PM PDT -FatCatLikesBeer,2025-08-05T06:39:43Z,- FatCatLikesBeer commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3153700567) at 2025-08-04 11:39 PM PDT -fchan218,2024-10-25T12:53:20Z,- fchan218 opened issue: [7635](https://github.com/hackforla/website/issues/7635) at 2024-10-25 05:53 AM PDT -fchan218,2025-04-06T19:57:28Z,- fchan218 opened issue: [8050](https://github.com/hackforla/website/issues/8050) at 2025-04-06 12:57 PM PDT -fernandoqueue,2985,SKILLS ISSUE -fernandoqueue,2022-03-16T02:57:48Z,- fernandoqueue opened issue: [2985](https://github.com/hackforla/website/issues/2985) at 2022-03-15 07:57 PM PDT -fernandoqueue,2022-03-16T02:58:55Z,- fernandoqueue assigned to issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1068679555) at 2022-03-15 07:58 PM PDT -flashcabaja64,5077,SKILLS ISSUE -flashcabaja64,2023-07-26T03:04:32Z,- flashcabaja64 opened issue: [5077](https://github.com/hackforla/website/issues/5077) at 2023-07-25 08:04 PM PDT -flashcabaja64,2023-07-26T03:04:44Z,- flashcabaja64 assigned to issue: [5077](https://github.com/hackforla/website/issues/5077) at 2023-07-25 08:04 PM PDT -floydferrer,7517,SKILLS ISSUE -floydferrer,2024-09-25T02:52:26Z,- floydferrer opened issue: [7517](https://github.com/hackforla/website/issues/7517) at 2024-09-24 07:52 PM PDT -floydferrer,2024-09-25T02:52:46Z,- floydferrer assigned to issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2372786225) at 2024-09-24 07:52 PM PDT -floydferrer,2024-09-25T02:59:29Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2372804002) at 2024-09-24 07:59 PM PDT -floydferrer,2024-09-27T02:45:46Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2378303015) at 2024-09-26 07:45 PM PDT -floydferrer,2024-09-27T03:05:42Z,- floydferrer assigned to issue: [7515](https://github.com/hackforla/website/issues/7515) at 2024-09-26 08:05 PM PDT -floydferrer,2024-09-27T03:43:07Z,- floydferrer opened pull request: [7526](https://github.com/hackforla/website/pull/7526) at 2024-09-26 08:43 PM PDT -floydferrer,2024-09-29T17:33:23Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381437078) at 2024-09-29 10:33 AM PDT -floydferrer,2024-09-29T19:45:09Z,- floydferrer pull request merged: [7526](https://github.com/hackforla/website/pull/7526#event-14446481635) at 2024-09-29 12:45 PM PDT -floydferrer,2024-09-29T21:41:14Z,- floydferrer assigned to issue: [7521](https://github.com/hackforla/website/issues/7521) at 2024-09-29 02:41 PM PDT -floydferrer,2024-09-29T21:43:58Z,- floydferrer commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381621147) at 2024-09-29 02:43 PM PDT -floydferrer,2024-09-29T21:45:00Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381621406) at 2024-09-29 02:45 PM PDT -floydferrer,2024-09-29T21:47:04Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381622029) at 2024-09-29 02:47 PM PDT -floydferrer,2024-09-29T21:53:20Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2381623969) at 2024-09-29 02:53 PM PDT -floydferrer,2024-09-29T22:45:50Z,- floydferrer opened pull request: [7543](https://github.com/hackforla/website/pull/7543) at 2024-09-29 03:45 PM PDT -floydferrer,2024-09-30T00:03:10Z,- floydferrer opened issue: [7544](https://github.com/hackforla/website/issues/7544) at 2024-09-29 05:03 PM PDT -floydferrer,2024-09-30T00:09:45Z,- floydferrer opened issue: [7545](https://github.com/hackforla/website/issues/7545) at 2024-09-29 05:09 PM PDT -floydferrer,2024-09-30T00:11:22Z,- floydferrer commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381666380) at 2024-09-29 05:11 PM PDT -floydferrer,2024-09-30T04:26:07Z,- floydferrer pull request closed w/o merging: [7543](https://github.com/hackforla/website/pull/7543#event-14448732590) at 2024-09-29 09:26 PM PDT -floydferrer,2024-09-30T04:56:24Z,- floydferrer commented on issue: [7545](https://github.com/hackforla/website/issues/7545#issuecomment-2382070486) at 2024-09-29 09:56 PM PDT -floydferrer,2024-09-30T04:56:52Z,- floydferrer closed issue as completed: [7545](https://github.com/hackforla/website/issues/7545#event-14449090677) at 2024-09-29 09:56 PM PDT -floydferrer,2024-09-30T04:57:49Z,- floydferrer commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2382075981) at 2024-09-29 09:57 PM PDT -floydferrer,2024-09-30T05:02:46Z,- floydferrer commented on issue: [7544](https://github.com/hackforla/website/issues/7544#issuecomment-2382101433) at 2024-09-29 10:02 PM PDT -floydferrer,2024-09-30T22:20:35Z,- floydferrer unassigned from issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381666380) at 2024-09-30 03:20 PM PDT -floydferrer,2024-10-04T02:32:59Z,- floydferrer assigned to issue: [7355](https://github.com/hackforla/website/issues/7355) at 2024-10-03 07:32 PM PDT -floydferrer,2024-10-04T02:33:45Z,- floydferrer commented on issue: [7355](https://github.com/hackforla/website/issues/7355#issuecomment-2392671544) at 2024-10-03 07:33 PM PDT -floydferrer,2024-10-04T03:20:05Z,- floydferrer opened pull request: [7560](https://github.com/hackforla/website/pull/7560) at 2024-10-03 08:20 PM PDT -floydferrer,2024-10-06T17:32:22Z,- floydferrer pull request merged: [7560](https://github.com/hackforla/website/pull/7560#event-14531117558) at 2024-10-06 10:32 AM PDT -floydferrer,2024-10-07T20:12:48Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2397803248) at 2024-10-07 01:12 PM PDT -floydferrer,2024-10-13T22:23:17Z,- floydferrer commented on pull request: [7588](https://github.com/hackforla/website/pull/7588#issuecomment-2409202598) at 2024-10-13 03:23 PM PDT -floydferrer,2024-10-14T21:43:47Z,- floydferrer submitted pull request review: [7588](https://github.com/hackforla/website/pull/7588#pullrequestreview-2367707169) at 2024-10-14 02:43 PM PDT -floydferrer,2024-10-14T21:49:27Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2412397058) at 2024-10-14 02:49 PM PDT -floydferrer,2024-10-20T17:26:21Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2425139203) at 2024-10-20 10:26 AM PDT -floydferrer,2024-10-23T19:21:23Z,- floydferrer commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2433251065) at 2024-10-23 12:21 PM PDT -floydferrer,2024-10-24T02:50:01Z,- floydferrer commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2434130838) at 2024-10-23 07:50 PM PDT -floydferrer,2024-10-24T02:50:57Z,- floydferrer submitted pull request review: [7628](https://github.com/hackforla/website/pull/7628#pullrequestreview-2391101787) at 2024-10-23 07:50 PM PDT -floydferrer,2024-10-24T03:01:07Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2434141008) at 2024-10-23 08:01 PM PDT -floydferrer,2024-10-29T04:57:18Z,- floydferrer commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2443213563) at 2024-10-28 09:57 PM PDT -floydferrer,2024-11-04T17:59:55Z,- floydferrer submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2413766851) at 2024-11-04 09:59 AM PST -floydferrer,2024-11-04T18:02:53Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2455371719) at 2024-11-04 10:02 AM PST -floydferrer,2024-11-04T18:04:55Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2455375513) at 2024-11-04 10:04 AM PST -floydferrer,2024-11-04T18:08:00Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2455381466) at 2024-11-04 10:08 AM PST -floydferrer,2024-11-05T17:33:52Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2457786014) at 2024-11-05 09:33 AM PST -floydferrer,2024-11-07T18:09:42Z,- floydferrer commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2462912989) at 2024-11-07 10:09 AM PST -floydferrer,2024-11-07T18:31:42Z,- floydferrer submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2421831485) at 2024-11-07 10:31 AM PST -floydferrer,2024-11-07T18:33:22Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2462954218) at 2024-11-07 10:33 AM PST -floydferrer,2024-11-08T23:33:20Z,- floydferrer commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2465899870) at 2024-11-08 03:33 PM PST -floydferrer,2024-11-08T23:43:25Z,- floydferrer submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2425076074) at 2024-11-08 03:43 PM PST -floydferrer,2024-11-08T23:57:45Z,- floydferrer submitted pull request review: [7711](https://github.com/hackforla/website/pull/7711#pullrequestreview-2425083238) at 2024-11-08 03:57 PM PST -floydferrer,2024-11-09T00:00:09Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2465917320) at 2024-11-08 04:00 PM PST -floydferrer,2024-11-10T18:25:35Z,- floydferrer submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2425822699) at 2024-11-10 10:25 AM PST -floydferrer,2024-11-13T01:05:53Z,- floydferrer assigned to issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2436693785) at 2024-11-12 05:05 PM PST -floydferrer,2024-11-13T01:07:04Z,- floydferrer commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2472070076) at 2024-11-12 05:07 PM PST -floydferrer,2024-11-14T01:38:21Z,- floydferrer opened pull request: [7719](https://github.com/hackforla/website/pull/7719) at 2024-11-13 05:38 PM PST -floydferrer,2024-11-17T17:21:43Z,- floydferrer pull request merged: [7719](https://github.com/hackforla/website/pull/7719#event-15325544425) at 2024-11-17 09:21 AM PST -floydferrer,2024-11-19T19:13:47Z,- floydferrer assigned to issue: [7399](https://github.com/hackforla/website/issues/7399) at 2024-11-19 11:13 AM PST -floydferrer,2024-11-19T19:14:47Z,- floydferrer unassigned from issue: [7399](https://github.com/hackforla/website/issues/7399#issuecomment-2486544320) at 2024-11-19 11:14 AM PST -floydferrer,2024-11-19T19:16:01Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2486549449) at 2024-11-19 11:16 AM PST -floydferrer,2024-11-19T21:20:15Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2486775928) at 2024-11-19 01:20 PM PST -floydferrer,2024-11-19T21:23:36Z,- floydferrer assigned to issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224870) at 2024-11-19 01:23 PM PST -floydferrer,2024-11-19T21:32:08Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2486795439) at 2024-11-19 01:32 PM PST -floydferrer,2024-11-19T21:59:43Z,- floydferrer opened issue: [7730](https://github.com/hackforla/website/issues/7730) at 2024-11-19 01:59 PM PST -floydferrer,2024-11-19T22:03:13Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2486844617) at 2024-11-19 02:03 PM PST -floydferrer,2024-11-19T22:18:24Z,- floydferrer opened issue: [7731](https://github.com/hackforla/website/issues/7731) at 2024-11-19 02:18 PM PST -floydferrer,2024-11-19T22:19:46Z,- floydferrer opened issue: [7732](https://github.com/hackforla/website/issues/7732) at 2024-11-19 02:19 PM PST -floydferrer,2024-11-20T01:11:43Z,- floydferrer opened issue: [7734](https://github.com/hackforla/website/issues/7734) at 2024-11-19 05:11 PM PST -floydferrer,2024-11-20T01:12:25Z,- floydferrer opened issue: [7735](https://github.com/hackforla/website/issues/7735) at 2024-11-19 05:12 PM PST -floydferrer,2024-11-20T01:12:57Z,- floydferrer opened issue: [7736](https://github.com/hackforla/website/issues/7736) at 2024-11-19 05:12 PM PST -floydferrer,2024-11-20T01:13:26Z,- floydferrer opened issue: [7737](https://github.com/hackforla/website/issues/7737) at 2024-11-19 05:13 PM PST -floydferrer,2024-11-20T01:14:54Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2487106957) at 2024-11-19 05:14 PM PST -floydferrer,2024-11-20T02:01:15Z,- floydferrer commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2487161876) at 2024-11-19 06:01 PM PST -floydferrer,2024-11-20T03:29:03Z,- floydferrer opened issue: [7742](https://github.com/hackforla/website/issues/7742) at 2024-11-19 07:29 PM PST -floydferrer,2024-11-24T18:37:14Z,- floydferrer assigned to issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392514174) at 2024-11-24 10:37 AM PST -floydferrer,2024-11-24T18:37:29Z,- floydferrer unassigned from issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2496161660) at 2024-11-24 10:37 AM PST -floydferrer,2024-11-25T06:45:10Z,- floydferrer assigned to issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2422845169) at 2024-11-24 10:45 PM PST -floydferrer,2024-11-25T06:46:02Z,- floydferrer commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2496996616) at 2024-11-24 10:46 PM PST -floydferrer,2024-11-26T02:09:49Z,- floydferrer commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2499473671) at 2024-11-25 06:09 PM PST -floydferrer,2024-11-27T03:27:04Z,- floydferrer commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2502625252) at 2024-11-26 07:27 PM PST -floydferrer,2025-03-16T22:36:56Z,- floydferrer unassigned from issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2723826147) at 2025-03-16 03:36 PM PDT -frankstepanski,2660,SKILLS ISSUE -frankstepanski,2022-01-05T03:32:11Z,- frankstepanski opened issue: [2660](https://github.com/hackforla/website/issues/2660) at 2022-01-04 07:32 PM PST -frankstepanski,2022-01-08T03:58:42Z,- frankstepanski opened issue: [2673](https://github.com/hackforla/website/issues/2673) at 2022-01-07 07:58 PM PST -frankstepanski,2022-01-08T21:18:06Z,- frankstepanski commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1008156253) at 2022-01-08 01:18 PM PST -frankstepanski,2022-02-06T15:52:31Z,- frankstepanski assigned to issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1023707635) at 2022-02-06 07:52 AM PST -frankstepanski,2022-02-06T16:47:54Z,- frankstepanski opened pull request: [2741](https://github.com/hackforla/website/pull/2741) at 2022-02-06 08:47 AM PST -frankstepanski,2022-02-06T16:56:00Z,- frankstepanski commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1030871404) at 2022-02-06 08:56 AM PST -frankstepanski,2022-02-06T17:00:18Z,- frankstepanski commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1030872112) at 2022-02-06 09:00 AM PST -frankstepanski,2022-02-06T17:41:01Z,- frankstepanski closed issue as completed: [2666](https://github.com/hackforla/website/issues/2666#event-6015324898) at 2022-02-06 09:41 AM PST -frankstepanski,2022-02-06T17:41:09Z,- frankstepanski reopened issue: [2666](https://github.com/hackforla/website/issues/2666#event-6015324898) at 2022-02-06 09:41 AM PST -frankstepanski,2022-02-06T19:00:26Z,- frankstepanski assigned to issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-995353120) at 2022-02-06 11:00 AM PST -frankstepanski,2022-02-06T19:00:50Z,- frankstepanski unassigned from issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-995353120) at 2022-02-06 11:00 AM PST -frankstepanski,2022-02-06T19:01:22Z,- frankstepanski assigned to issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-995353120) at 2022-02-06 11:01 AM PST -frankstepanski,2022-02-06T19:08:43Z,- frankstepanski closed issue as completed: [2660](https://github.com/hackforla/website/issues/2660#event-6015418443) at 2022-02-06 11:08 AM PST -frankstepanski,2022-02-06T19:09:36Z,- frankstepanski closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-6015419445) at 2022-02-06 11:09 AM PST -frankstepanski,2022-02-06T19:39:27Z,- frankstepanski opened pull request: [2742](https://github.com/hackforla/website/pull/2742) at 2022-02-06 11:39 AM PST -frankstepanski,2022-02-06T19:41:34Z,- frankstepanski commented on issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-1030899957) at 2022-02-06 11:41 AM PST -frankstepanski,2022-02-06T19:41:52Z,- frankstepanski closed issue by PR 2742: [2591](https://github.com/hackforla/website/issues/2591#event-6015453941) at 2022-02-06 11:41 AM PST -frankstepanski,2022-02-07T05:40:46Z,- frankstepanski pull request merged: [2741](https://github.com/hackforla/website/pull/2741#event-6016628534) at 2022-02-06 09:40 PM PST -frankstepanski,2022-02-07T07:18:42Z,- frankstepanski pull request merged: [2742](https://github.com/hackforla/website/pull/2742#event-6016992439) at 2022-02-06 11:18 PM PST -frankstepanski,2022-02-28T09:26:33Z,- frankstepanski assigned to issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1031148862) at 2022-02-28 01:26 AM PST -frankstepanski,2022-03-20T16:27:02Z,- frankstepanski commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1073285595) at 2022-03-20 09:27 AM PDT -frankstepanski,2022-03-20T16:27:06Z,- frankstepanski closed issue as completed: [2660](https://github.com/hackforla/website/issues/2660#event-6271414705) at 2022-03-20 09:27 AM PDT -frankstepanski,2022-03-20T17:20:37Z,- frankstepanski commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073295508) at 2022-03-20 10:20 AM PDT -frankstepanski,2022-03-22T02:12:00Z,- frankstepanski submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-916579861) at 2022-03-21 07:12 PM PDT -frankstepanski,2022-03-26T17:29:11Z,- frankstepanski assigned to issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1065786460) at 2022-03-26 10:29 AM PDT -frankstepanski,2022-03-26T18:38:24Z,- frankstepanski commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1079751170) at 2022-03-26 11:38 AM PDT -frankstepanski,2022-03-27T15:33:25Z,- frankstepanski commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1079954782) at 2022-03-27 08:33 AM PDT -frankstepanski,2022-04-03T05:16:37Z,- frankstepanski opened pull request: [3030](https://github.com/hackforla/website/pull/3030) at 2022-04-02 10:16 PM PDT -frankstepanski,2022-04-03T05:19:32Z,- frankstepanski commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1086779054) at 2022-04-02 10:19 PM PDT -frankstepanski,2022-04-05T15:24:00Z,- frankstepanski pull request merged: [3030](https://github.com/hackforla/website/pull/3030#event-6372241827) at 2022-04-05 08:24 AM PDT -frankstepanski,2022-04-21T21:51:49Z,- frankstepanski closed issue as completed: [1878](https://github.com/hackforla/website/issues/1878#event-6474262247) at 2022-04-21 02:51 PM PDT -frankstepanski,2022-04-21T21:51:55Z,- frankstepanski reopened issue: [1878](https://github.com/hackforla/website/issues/1878#event-6474262247) at 2022-04-21 02:51 PM PDT -frankstepanski,2022-05-14T20:15:45Z,- frankstepanski assigned to issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1104696934) at 2022-05-14 01:15 PM PDT -frankstepanski,2022-05-14T20:24:22Z,- frankstepanski commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1126805949) at 2022-05-14 01:24 PM PDT -frankstepanski,2022-05-19T20:40:29Z,- frankstepanski commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1132186162) at 2022-05-19 01:40 PM PDT -frankstepanski,2022-05-29T17:21:22Z,- frankstepanski opened pull request: [3179](https://github.com/hackforla/website/pull/3179) at 2022-05-29 10:21 AM PDT -frankstepanski,2022-08-13T03:27:15Z,- frankstepanski commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1213643104) at 2022-08-12 08:27 PM PDT -frankstepanski,2022-08-19T21:10:31Z,- frankstepanski unassigned from issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1140203060) at 2022-08-19 02:10 PM PDT -frankstepanski,2022-08-19T21:17:13Z,- frankstepanski pull request closed w/o merging: [3179](https://github.com/hackforla/website/pull/3179#event-7225076507) at 2022-08-19 02:17 PM PDT -frankstepanski,2022-11-09T18:40:13Z,- frankstepanski unassigned from issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1289853218) at 2022-11-09 10:40 AM PST -freaky4wrld,5614,SKILLS ISSUE -freaky4wrld,2023-09-27T08:33:48Z,- freaky4wrld opened issue: [5614](https://github.com/hackforla/website/issues/5614) at 2023-09-27 01:33 AM PDT -freaky4wrld,2023-09-29T03:43:55Z,- freaky4wrld assigned to issue: [5614](https://github.com/hackforla/website/issues/5614) at 2023-09-28 08:43 PM PDT -freaky4wrld,2023-09-30T05:37:04Z,- freaky4wrld commented on issue: [5614](https://github.com/hackforla/website/issues/5614#issuecomment-1741685486) at 2023-09-29 10:37 PM PDT -freaky4wrld,2023-09-30T05:59:52Z,- freaky4wrld assigned to issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1694737441) at 2023-09-29 10:59 PM PDT -freaky4wrld,2023-09-30T07:18:06Z,- freaky4wrld commented on issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1741702171) at 2023-09-30 12:18 AM PDT -freaky4wrld,2023-09-30T07:22:26Z,- freaky4wrld commented on issue: [5614](https://github.com/hackforla/website/issues/5614#issuecomment-1741702892) at 2023-09-30 12:22 AM PDT -freaky4wrld,2023-10-03T08:57:25Z,- freaky4wrld commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1744526027) at 2023-10-03 01:57 AM PDT -freaky4wrld,2023-10-05T05:15:46Z,- freaky4wrld opened pull request: [5664](https://github.com/hackforla/website/pull/5664) at 2023-10-04 10:15 PM PDT -freaky4wrld,2023-10-05T05:25:43Z,- freaky4wrld commented on issue: [5319](https://github.com/hackforla/website/issues/5319#issuecomment-1748053178) at 2023-10-04 10:25 PM PDT -freaky4wrld,2023-10-06T04:06:09Z,- freaky4wrld commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1749954024) at 2023-10-05 09:06 PM PDT -freaky4wrld,2023-10-07T10:19:43Z,- freaky4wrld commented on pull request: [5649](https://github.com/hackforla/website/pull/5649#issuecomment-1751673944) at 2023-10-07 03:19 AM PDT -freaky4wrld,2023-10-07T10:40:20Z,- freaky4wrld submitted pull request review: [5649](https://github.com/hackforla/website/pull/5649#pullrequestreview-1663038248) at 2023-10-07 03:40 AM PDT -freaky4wrld,2023-10-08T10:05:10Z,- freaky4wrld pull request merged: [5664](https://github.com/hackforla/website/pull/5664#event-10583722898) at 2023-10-08 03:05 AM PDT -freaky4wrld,2023-10-08T17:32:38Z,- freaky4wrld commented on pull request: [5661](https://github.com/hackforla/website/pull/5661#issuecomment-1752112983) at 2023-10-08 10:32 AM PDT -freaky4wrld,2023-10-09T03:54:43Z,- freaky4wrld submitted pull request review: [5661](https://github.com/hackforla/website/pull/5661#pullrequestreview-1663696794) at 2023-10-08 08:54 PM PDT -freaky4wrld,2023-10-09T04:38:16Z,- freaky4wrld assigned to issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1741671729) at 2023-10-08 09:38 PM PDT -freaky4wrld,2023-10-09T04:43:13Z,- freaky4wrld commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1752338896) at 2023-10-08 09:43 PM PDT -freaky4wrld,2023-10-11T03:48:14Z,- freaky4wrld commented on pull request: [5702](https://github.com/hackforla/website/pull/5702#issuecomment-1756721633) at 2023-10-10 08:48 PM PDT -freaky4wrld,2023-10-11T03:48:31Z,- freaky4wrld commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1756721849) at 2023-10-10 08:48 PM PDT -freaky4wrld,2023-10-11T04:32:21Z,- freaky4wrld submitted pull request review: [5702](https://github.com/hackforla/website/pull/5702#pullrequestreview-1669858789) at 2023-10-10 09:32 PM PDT -freaky4wrld,2023-10-11T04:33:52Z,- freaky4wrld submitted pull request review: [5702](https://github.com/hackforla/website/pull/5702#pullrequestreview-1669865290) at 2023-10-10 09:33 PM PDT -freaky4wrld,2023-10-11T10:14:26Z,- freaky4wrld commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1757330041) at 2023-10-11 03:14 AM PDT -freaky4wrld,2023-10-11T11:23:41Z,- freaky4wrld submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1670923120) at 2023-10-11 04:23 AM PDT -freaky4wrld,2023-10-12T02:17:08Z,- freaky4wrld commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1758808346) at 2023-10-11 07:17 PM PDT -freaky4wrld,2023-10-12T07:50:45Z,- freaky4wrld closed issue as completed: [5614](https://github.com/hackforla/website/issues/5614#event-10628118244) at 2023-10-12 12:50 AM PDT -freaky4wrld,2023-10-12T07:55:11Z,- freaky4wrld assigned to issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1758681203) at 2023-10-12 12:55 AM PDT -freaky4wrld,2023-10-12T07:56:10Z,- freaky4wrld unassigned from issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1759116583) at 2023-10-12 12:56 AM PDT -freaky4wrld,2023-10-21T04:23:12Z,- freaky4wrld submitted pull request review: [5744](https://github.com/hackforla/website/pull/5744#pullrequestreview-1691160119) at 2023-10-20 09:23 PM PDT -freaky4wrld,2023-10-22T13:38:11Z,- freaky4wrld submitted pull request review: [5744](https://github.com/hackforla/website/pull/5744#pullrequestreview-1691436378) at 2023-10-22 06:38 AM PDT -freaky4wrld,2023-10-25T23:15:20Z,- freaky4wrld opened pull request: [5784](https://github.com/hackforla/website/pull/5784) at 2023-10-25 04:15 PM PDT -freaky4wrld,2023-10-25T23:19:47Z,- freaky4wrld pull request closed w/o merging: [5784](https://github.com/hackforla/website/pull/5784#event-10773233605) at 2023-10-25 04:19 PM PDT -freaky4wrld,2023-10-26T09:18:18Z,- freaky4wrld opened pull request: [5787](https://github.com/hackforla/website/pull/5787) at 2023-10-26 02:18 AM PDT -freaky4wrld,2023-10-26T09:20:09Z,- freaky4wrld pull request closed w/o merging: [5787](https://github.com/hackforla/website/pull/5787#event-10777130167) at 2023-10-26 02:20 AM PDT -freaky4wrld,2023-11-05T13:08:30Z,- freaky4wrld assigned to issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1715246452) at 2023-11-05 05:08 AM PST -freaky4wrld,2023-11-05T13:21:07Z,- freaky4wrld commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1793735922) at 2023-11-05 05:21 AM PST -freaky4wrld,2023-11-05T13:28:24Z,- freaky4wrld opened issue: [5838](https://github.com/hackforla/website/issues/5838) at 2023-11-05 05:28 AM PST -freaky4wrld,2023-11-05T13:32:44Z,- freaky4wrld opened issue: [5839](https://github.com/hackforla/website/issues/5839) at 2023-11-05 05:32 AM PST -freaky4wrld,2023-11-05T13:35:53Z,- freaky4wrld opened issue: [5840](https://github.com/hackforla/website/issues/5840) at 2023-11-05 05:35 AM PST -freaky4wrld,2023-11-05T13:38:28Z,- freaky4wrld opened issue: [5841](https://github.com/hackforla/website/issues/5841) at 2023-11-05 05:38 AM PST -freaky4wrld,2023-11-05T13:41:25Z,- freaky4wrld opened issue: [5842](https://github.com/hackforla/website/issues/5842) at 2023-11-05 05:41 AM PST -freaky4wrld,2023-11-05T13:46:12Z,- freaky4wrld opened issue: [5843](https://github.com/hackforla/website/issues/5843) at 2023-11-05 05:46 AM PST -freaky4wrld,2023-11-05T13:48:08Z,- freaky4wrld opened issue: [5844](https://github.com/hackforla/website/issues/5844) at 2023-11-05 05:48 AM PST -freaky4wrld,2023-11-05T13:50:02Z,- freaky4wrld opened issue: [5845](https://github.com/hackforla/website/issues/5845) at 2023-11-05 05:50 AM PST -freaky4wrld,2023-11-05T13:51:55Z,- freaky4wrld opened issue: [5846](https://github.com/hackforla/website/issues/5846) at 2023-11-05 05:51 AM PST -freaky4wrld,2023-11-05T13:54:02Z,- freaky4wrld opened issue: [5847](https://github.com/hackforla/website/issues/5847) at 2023-11-05 05:54 AM PST -freaky4wrld,2023-11-05T13:57:58Z,- freaky4wrld opened issue: [5848](https://github.com/hackforla/website/issues/5848) at 2023-11-05 05:57 AM PST -freaky4wrld,2023-11-05T14:00:22Z,- freaky4wrld opened issue: [5849](https://github.com/hackforla/website/issues/5849) at 2023-11-05 06:00 AM PST -freaky4wrld,2023-11-05T14:02:19Z,- freaky4wrld opened issue: [5850](https://github.com/hackforla/website/issues/5850) at 2023-11-05 06:02 AM PST -freaky4wrld,2023-11-05T14:17:44Z,- freaky4wrld commented on issue: [5501](https://github.com/hackforla/website/issues/5501#issuecomment-1793750576) at 2023-11-05 06:17 AM PST -freaky4wrld,2023-11-05T17:07:22Z,- freaky4wrld commented on pull request: [5837](https://github.com/hackforla/website/pull/5837#issuecomment-1793793006) at 2023-11-05 09:07 AM PST -freaky4wrld,2023-11-05T17:46:17Z,- freaky4wrld submitted pull request review: [5837](https://github.com/hackforla/website/pull/5837#pullrequestreview-1714028547) at 2023-11-05 09:46 AM PST -freaky4wrld,2023-11-06T13:54:16Z,- freaky4wrld commented on pull request: [5853](https://github.com/hackforla/website/pull/5853#issuecomment-1794876244) at 2023-11-06 05:54 AM PST -freaky4wrld,2023-11-06T14:00:30Z,- freaky4wrld submitted pull request review: [5853](https://github.com/hackforla/website/pull/5853#pullrequestreview-1715246681) at 2023-11-06 06:00 AM PST -freaky4wrld,2023-11-08T15:29:02Z,- freaky4wrld submitted pull request review: [5884](https://github.com/hackforla/website/pull/5884#pullrequestreview-1720647040) at 2023-11-08 07:29 AM PST -freaky4wrld,2023-11-08T22:17:16Z,- freaky4wrld submitted pull request review: [5884](https://github.com/hackforla/website/pull/5884#pullrequestreview-1721370902) at 2023-11-08 02:17 PM PST -freaky4wrld,2023-11-08T22:48:27Z,- freaky4wrld assigned to issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1690929863) at 2023-11-08 02:48 PM PST -freaky4wrld,2023-11-08T22:58:11Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1802840021) at 2023-11-08 02:58 PM PST -freaky4wrld,2023-11-10T05:48:32Z,- freaky4wrld submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1724053480) at 2023-11-09 09:48 PM PST -freaky4wrld,2023-11-11T07:30:35Z,- freaky4wrld submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1725994993) at 2023-11-10 11:30 PM PST -freaky4wrld,2023-11-11T07:31:35Z,- freaky4wrld submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1725995080) at 2023-11-10 11:31 PM PST -freaky4wrld,2023-11-12T12:04:34Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1807106584) at 2023-11-12 04:04 AM PST -freaky4wrld,2023-11-13T04:45:03Z,- freaky4wrld commented on pull request: [5893](https://github.com/hackforla/website/pull/5893#issuecomment-1807470657) at 2023-11-12 08:45 PM PST -freaky4wrld,2023-11-13T04:46:39Z,- freaky4wrld commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1807471731) at 2023-11-12 08:46 PM PST -freaky4wrld,2023-11-13T06:33:47Z,- freaky4wrld submitted pull request review: [5893](https://github.com/hackforla/website/pull/5893#pullrequestreview-1726612918) at 2023-11-12 10:33 PM PST -freaky4wrld,2023-11-13T06:39:52Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1807552428) at 2023-11-12 10:39 PM PST -freaky4wrld,2023-11-13T22:48:06Z,- freaky4wrld commented on pull request: [5894](https://github.com/hackforla/website/pull/5894#issuecomment-1809257124) at 2023-11-13 02:48 PM PST -freaky4wrld,2023-11-14T10:42:08Z,- freaky4wrld submitted pull request review: [5894](https://github.com/hackforla/website/pull/5894#pullrequestreview-1729437631) at 2023-11-14 02:42 AM PST -freaky4wrld,2023-11-15T03:56:42Z,- freaky4wrld commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1811770261) at 2023-11-14 07:56 PM PST -freaky4wrld,2023-11-15T08:26:56Z,- freaky4wrld commented on issue: [5297](https://github.com/hackforla/website/issues/5297#issuecomment-1812004398) at 2023-11-15 12:26 AM PST -freaky4wrld,2023-11-15T10:35:16Z,- freaky4wrld commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1812210777) at 2023-11-15 02:35 AM PST -freaky4wrld,2023-11-16T06:24:21Z,- freaky4wrld submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1733589148) at 2023-11-15 10:24 PM PST -freaky4wrld,2023-11-16T07:43:30Z,- freaky4wrld submitted pull request review: [5906](https://github.com/hackforla/website/pull/5906#pullrequestreview-1733702273) at 2023-11-15 11:43 PM PST -freaky4wrld,2023-11-17T10:40:08Z,- freaky4wrld commented on pull request: [5918](https://github.com/hackforla/website/pull/5918#issuecomment-1816132852) at 2023-11-17 02:40 AM PST -freaky4wrld,2023-11-17T11:05:20Z,- freaky4wrld submitted pull request review: [5918](https://github.com/hackforla/website/pull/5918#pullrequestreview-1736651476) at 2023-11-17 03:05 AM PST -freaky4wrld,2023-11-17T11:06:48Z,- freaky4wrld commented on pull request: [5917](https://github.com/hackforla/website/pull/5917#issuecomment-1816171595) at 2023-11-17 03:06 AM PST -freaky4wrld,2023-11-18T07:23:47Z,- freaky4wrld submitted pull request review: [5917](https://github.com/hackforla/website/pull/5917#pullrequestreview-1738282581) at 2023-11-17 11:23 PM PST -freaky4wrld,2023-11-18T07:26:15Z,- freaky4wrld commented on pull request: [5916](https://github.com/hackforla/website/pull/5916#issuecomment-1817423554) at 2023-11-17 11:26 PM PST -freaky4wrld,2023-11-18T07:37:49Z,- freaky4wrld submitted pull request review: [5916](https://github.com/hackforla/website/pull/5916#pullrequestreview-1738284692) at 2023-11-17 11:37 PM PST -freaky4wrld,2023-11-20T10:09:41Z,- freaky4wrld commented on pull request: [5922](https://github.com/hackforla/website/pull/5922#issuecomment-1818743657) at 2023-11-20 02:09 AM PST -freaky4wrld,2023-11-20T10:22:45Z,- freaky4wrld submitted pull request review: [5922](https://github.com/hackforla/website/pull/5922#pullrequestreview-1739444049) at 2023-11-20 02:22 AM PST -freaky4wrld,2023-11-21T05:41:24Z,- freaky4wrld commented on pull request: [5925](https://github.com/hackforla/website/pull/5925#issuecomment-1820275900) at 2023-11-20 09:41 PM PST -freaky4wrld,2023-11-21T06:06:01Z,- freaky4wrld submitted pull request review: [5925](https://github.com/hackforla/website/pull/5925#pullrequestreview-1741178015) at 2023-11-20 10:06 PM PST -freaky4wrld,2023-11-21T06:12:31Z,- freaky4wrld assigned to issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1820006678) at 2023-11-20 10:12 PM PST -freaky4wrld,2023-11-21T06:13:47Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1820302037) at 2023-11-20 10:13 PM PST -freaky4wrld,2023-11-21T22:22:03Z,- freaky4wrld commented on pull request: [5927](https://github.com/hackforla/website/pull/5927#issuecomment-1821794821) at 2023-11-21 02:22 PM PST -freaky4wrld,2023-11-21T22:32:02Z,- freaky4wrld submitted pull request review: [5927](https://github.com/hackforla/website/pull/5927#pullrequestreview-1743260024) at 2023-11-21 02:32 PM PST -freaky4wrld,2023-11-21T22:35:13Z,- freaky4wrld commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1821807788) at 2023-11-21 02:35 PM PST -freaky4wrld,2023-11-21T22:45:34Z,- freaky4wrld submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1743280327) at 2023-11-21 02:45 PM PST -freaky4wrld,2023-11-23T05:05:23Z,- freaky4wrld submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1745710240) at 2023-11-22 09:05 PM PST -freaky4wrld,2023-11-23T05:08:22Z,- freaky4wrld commented on pull request: [5933](https://github.com/hackforla/website/pull/5933#issuecomment-1823826907) at 2023-11-22 09:08 PM PST -freaky4wrld,2023-11-23T05:19:46Z,- freaky4wrld submitted pull request review: [5933](https://github.com/hackforla/website/pull/5933#pullrequestreview-1745718380) at 2023-11-22 09:19 PM PST -freaky4wrld,2023-11-23T05:21:52Z,- freaky4wrld commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1823833762) at 2023-11-22 09:21 PM PST -freaky4wrld,2023-11-23T05:30:36Z,- freaky4wrld submitted pull request review: [5931](https://github.com/hackforla/website/pull/5931#pullrequestreview-1745725507) at 2023-11-22 09:30 PM PST -freaky4wrld,2023-11-25T04:28:28Z,- freaky4wrld commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826211110) at 2023-11-24 08:28 PM PST -freaky4wrld,2023-11-25T04:42:14Z,- freaky4wrld submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1748776183) at 2023-11-24 08:42 PM PST -freaky4wrld,2023-11-26T11:19:21Z,- freaky4wrld submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749325618) at 2023-11-26 03:19 AM PST -freaky4wrld,2023-11-26T12:03:12Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1826765209) at 2023-11-26 04:03 AM PST -freaky4wrld,2023-11-26T23:23:51Z,- freaky4wrld commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1826935921) at 2023-11-26 03:23 PM PST -freaky4wrld,2023-11-26T23:37:37Z,- freaky4wrld submitted pull request review: [5936](https://github.com/hackforla/website/pull/5936#pullrequestreview-1749450217) at 2023-11-26 03:37 PM PST -freaky4wrld,2023-11-27T02:30:59Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1827033600) at 2023-11-26 06:30 PM PST -freaky4wrld,2023-11-28T11:01:44Z,- freaky4wrld submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1752614649) at 2023-11-28 03:01 AM PST -freaky4wrld,2023-12-06T05:08:17Z,- freaky4wrld commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1842095529) at 2023-12-05 09:08 PM PST -freaky4wrld,2023-12-06T05:09:43Z,- freaky4wrld commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1842096522) at 2023-12-05 09:09 PM PST -freaky4wrld,2023-12-06T05:11:31Z,- freaky4wrld commented on pull request: [5947](https://github.com/hackforla/website/pull/5947#issuecomment-1842097670) at 2023-12-05 09:11 PM PST -freaky4wrld,2023-12-06T12:43:23Z,- freaky4wrld submitted pull request review: [5961](https://github.com/hackforla/website/pull/5961#pullrequestreview-1767450137) at 2023-12-06 04:43 AM PST -freaky4wrld,2023-12-06T12:58:17Z,- freaky4wrld commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1842832292) at 2023-12-06 04:58 AM PST -freaky4wrld,2023-12-06T13:42:44Z,- freaky4wrld submitted pull request review: [5947](https://github.com/hackforla/website/pull/5947#pullrequestreview-1767605376) at 2023-12-06 05:42 AM PST -freaky4wrld,2023-12-06T14:23:27Z,- freaky4wrld submitted pull request review: [5967](https://github.com/hackforla/website/pull/5967#pullrequestreview-1767706660) at 2023-12-06 06:23 AM PST -freaky4wrld,2023-12-07T02:03:46Z,- freaky4wrld submitted pull request review: [5957](https://github.com/hackforla/website/pull/5957#pullrequestreview-1768977203) at 2023-12-06 06:03 PM PST -freaky4wrld,2023-12-09T09:06:07Z,- freaky4wrld opened issue: [5979](https://github.com/hackforla/website/issues/5979) at 2023-12-09 01:06 AM PST -freaky4wrld,2023-12-09T09:06:08Z,- freaky4wrld assigned to issue: [5979](https://github.com/hackforla/website/issues/5979) at 2023-12-09 01:06 AM PST -freaky4wrld,2023-12-09T09:13:23Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1848338741) at 2023-12-09 01:13 AM PST -freaky4wrld,2023-12-09T09:59:29Z,- freaky4wrld assigned to issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1837257078) at 2023-12-09 01:59 AM PST -freaky4wrld,2023-12-09T10:00:21Z,- freaky4wrld commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1848357675) at 2023-12-09 02:00 AM PST -freaky4wrld,2023-12-10T03:21:35Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1848845213) at 2023-12-09 07:21 PM PST -freaky4wrld,2023-12-10T05:10:57Z,- freaky4wrld commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1848860566) at 2023-12-09 09:10 PM PST -freaky4wrld,2023-12-11T08:40:13Z,- freaky4wrld submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1774538556) at 2023-12-11 12:40 AM PST -freaky4wrld,2023-12-13T12:37:34Z,- freaky4wrld commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1853842026) at 2023-12-13 04:37 AM PST -freaky4wrld,2023-12-13T12:40:13Z,- freaky4wrld submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1779551946) at 2023-12-13 04:40 AM PST -freaky4wrld,2023-12-13T12:47:08Z,- freaky4wrld submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1779563823) at 2023-12-13 04:47 AM PST -freaky4wrld,2023-12-14T11:01:30Z,- freaky4wrld commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1855636627) at 2023-12-14 03:01 AM PST -freaky4wrld,2023-12-15T14:06:36Z,- freaky4wrld submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1784128732) at 2023-12-15 06:06 AM PST -freaky4wrld,2023-12-16T06:36:12Z,- freaky4wrld commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1858739401) at 2023-12-15 10:36 PM PST -freaky4wrld,2023-12-16T14:16:22Z,- freaky4wrld commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1858829241) at 2023-12-16 06:16 AM PST -freaky4wrld,2023-12-17T05:01:22Z,- freaky4wrld submitted pull request review: [6010](https://github.com/hackforla/website/pull/6010#pullrequestreview-1785338118) at 2023-12-16 09:01 PM PST -freaky4wrld,2023-12-18T21:57:40Z,- freaky4wrld submitted pull request review: [6010](https://github.com/hackforla/website/pull/6010#pullrequestreview-1787778324) at 2023-12-18 01:57 PM PST -freaky4wrld,2023-12-20T03:38:22Z,- freaky4wrld commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1863798386) at 2023-12-19 07:38 PM PST -freaky4wrld,2023-12-20T03:39:10Z,- freaky4wrld commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1863798805) at 2023-12-19 07:39 PM PST -freaky4wrld,2023-12-20T03:40:11Z,- freaky4wrld commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1863799383) at 2023-12-19 07:40 PM PST -freaky4wrld,2023-12-20T08:20:18Z,- freaky4wrld commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1864048121) at 2023-12-20 12:20 AM PST -freaky4wrld,2023-12-20T09:52:18Z,- freaky4wrld commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1864172788) at 2023-12-20 01:52 AM PST -freaky4wrld,2023-12-20T10:09:04Z,- freaky4wrld submitted pull request review: [6004](https://github.com/hackforla/website/pull/6004#pullrequestreview-1790572391) at 2023-12-20 02:09 AM PST -freaky4wrld,2023-12-21T03:37:39Z,- freaky4wrld submitted pull request review: [6013](https://github.com/hackforla/website/pull/6013#pullrequestreview-1792137508) at 2023-12-20 07:37 PM PST -freaky4wrld,2023-12-21T03:44:52Z,- freaky4wrld commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1865433370) at 2023-12-20 07:44 PM PST -freaky4wrld,2023-12-22T17:13:19Z,- freaky4wrld submitted pull request review: [6006](https://github.com/hackforla/website/pull/6006#pullrequestreview-1794756340) at 2023-12-22 09:13 AM PST -freaky4wrld,2023-12-27T07:30:49Z,- freaky4wrld commented on pull request: [6016](https://github.com/hackforla/website/pull/6016#issuecomment-1870028680) at 2023-12-26 11:30 PM PST -freaky4wrld,2023-12-28T04:11:42Z,- freaky4wrld submitted pull request review: [6016](https://github.com/hackforla/website/pull/6016#pullrequestreview-1797650141) at 2023-12-27 08:11 PM PST -freaky4wrld,2024-01-03T04:28:19Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1874834239) at 2024-01-02 08:28 PM PST -freaky4wrld,2024-01-06T04:52:53Z,- freaky4wrld commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879549650) at 2024-01-05 08:52 PM PST -freaky4wrld,2024-01-06T05:09:42Z,- freaky4wrld commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879553583) at 2024-01-05 09:09 PM PST -freaky4wrld,2024-01-06T05:17:27Z,- freaky4wrld assigned to issue: [6019](https://github.com/hackforla/website/issues/6019#issuecomment-1879523318) at 2024-01-05 09:17 PM PST -freaky4wrld,2024-01-06T05:18:36Z,- freaky4wrld unassigned from issue: [6019](https://github.com/hackforla/website/issues/6019#issuecomment-1879523318) at 2024-01-05 09:18 PM PST -freaky4wrld,2024-01-06T05:19:28Z,- freaky4wrld commented on pull request: [6068](https://github.com/hackforla/website/pull/6068#issuecomment-1879555841) at 2024-01-05 09:19 PM PST -freaky4wrld,2024-01-06T05:30:44Z,- freaky4wrld submitted pull request review: [6068](https://github.com/hackforla/website/pull/6068#pullrequestreview-1807257816) at 2024-01-05 09:30 PM PST -freaky4wrld,2024-01-06T10:29:36Z,- freaky4wrld submitted pull request review: [6070](https://github.com/hackforla/website/pull/6070#pullrequestreview-1807336485) at 2024-01-06 02:29 AM PST -freaky4wrld,2024-01-09T07:04:46Z,- freaky4wrld commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1882514611) at 2024-01-08 11:04 PM PST -freaky4wrld,2024-01-09T07:19:04Z,- freaky4wrld commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1882528323) at 2024-01-08 11:19 PM PST -freaky4wrld,2024-01-09T10:11:07Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1882777168) at 2024-01-09 02:11 AM PST -freaky4wrld,2024-01-10T04:01:01Z,- freaky4wrld submitted pull request review: [6076](https://github.com/hackforla/website/pull/6076#pullrequestreview-1812373297) at 2024-01-09 08:01 PM PST -freaky4wrld,2024-01-13T06:59:35Z,- freaky4wrld commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1890349766) at 2024-01-12 10:59 PM PST -freaky4wrld,2024-01-13T07:29:54Z,- freaky4wrld commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1890359756) at 2024-01-12 11:29 PM PST -freaky4wrld,2024-01-14T04:01:25Z,- freaky4wrld submitted pull request review: [6099](https://github.com/hackforla/website/pull/6099#pullrequestreview-1820141695) at 2024-01-13 08:01 PM PST -freaky4wrld,2024-01-15T22:47:41Z,- freaky4wrld commented on pull request: [6100](https://github.com/hackforla/website/pull/6100#issuecomment-1892843013) at 2024-01-15 02:47 PM PST -freaky4wrld,2024-01-15T23:00:38Z,- freaky4wrld submitted pull request review: [6100](https://github.com/hackforla/website/pull/6100#pullrequestreview-1822325562) at 2024-01-15 03:00 PM PST -freaky4wrld,2024-01-17T04:19:52Z,- freaky4wrld opened issue: [6120](https://github.com/hackforla/website/issues/6120) at 2024-01-16 08:19 PM PST -freaky4wrld,2024-01-18T09:54:01Z,- freaky4wrld commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1898148861) at 2024-01-18 01:54 AM PST -freaky4wrld,2024-01-18T10:47:25Z,- freaky4wrld commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1898237540) at 2024-01-18 02:47 AM PST -freaky4wrld,2024-01-19T11:21:32Z,- freaky4wrld commented on pull request: [6131](https://github.com/hackforla/website/pull/6131#issuecomment-1900226036) at 2024-01-19 03:21 AM PST -freaky4wrld,2024-01-19T11:31:16Z,- freaky4wrld submitted pull request review: [6131](https://github.com/hackforla/website/pull/6131#pullrequestreview-1832227191) at 2024-01-19 03:31 AM PST -freaky4wrld,2024-01-20T04:26:49Z,- freaky4wrld commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1901740761) at 2024-01-19 08:26 PM PST -freaky4wrld,2024-01-21T07:27:19Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1902540919) at 2024-01-20 11:27 PM PST -freaky4wrld,2024-01-21T08:15:07Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1902550553) at 2024-01-21 12:15 AM PST -freaky4wrld,2024-01-22T07:34:21Z,- freaky4wrld commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1903410878) at 2024-01-21 11:34 PM PST -freaky4wrld,2024-01-23T23:51:54Z,- freaky4wrld submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1840138954) at 2024-01-23 03:51 PM PST -freaky4wrld,2024-01-24T04:12:45Z,- freaky4wrld commented on pull request: [6146](https://github.com/hackforla/website/pull/6146#issuecomment-1907347876) at 2024-01-23 08:12 PM PST -freaky4wrld,2024-01-24T06:21:37Z,- freaky4wrld commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1907447126) at 2024-01-23 10:21 PM PST -freaky4wrld,2024-01-24T10:39:42Z,- freaky4wrld submitted pull request review: [6149](https://github.com/hackforla/website/pull/6149#pullrequestreview-1841061127) at 2024-01-24 02:39 AM PST -freaky4wrld,2024-01-24T11:10:48Z,- freaky4wrld commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1907915932) at 2024-01-24 03:10 AM PST -freaky4wrld,2024-01-25T06:46:26Z,- freaky4wrld commented on pull request: [6152](https://github.com/hackforla/website/pull/6152#issuecomment-1909450521) at 2024-01-24 10:46 PM PST -freaky4wrld,2024-01-25T09:26:00Z,- freaky4wrld submitted pull request review: [6152](https://github.com/hackforla/website/pull/6152#pullrequestreview-1843219606) at 2024-01-25 01:26 AM PST -freaky4wrld,2024-01-28T04:41:06Z,- freaky4wrld commented on pull request: [6151](https://github.com/hackforla/website/pull/6151#issuecomment-1913447179) at 2024-01-27 08:41 PM PST -freaky4wrld,2024-01-28T05:36:43Z,- freaky4wrld submitted pull request review: [6151](https://github.com/hackforla/website/pull/6151#pullrequestreview-1847401088) at 2024-01-27 09:36 PM PST -freaky4wrld,2024-01-28T12:15:24Z,- freaky4wrld submitted pull request review: [6186](https://github.com/hackforla/website/pull/6186#pullrequestreview-1847520587) at 2024-01-28 04:15 AM PST -freaky4wrld,2024-01-29T08:35:49Z,- freaky4wrld commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1914205081) at 2024-01-29 12:35 AM PST -freaky4wrld,2024-01-29T09:54:42Z,- freaky4wrld submitted pull request review: [6158](https://github.com/hackforla/website/pull/6158#pullrequestreview-1848261676) at 2024-01-29 01:54 AM PST -freaky4wrld,2024-01-30T04:33:34Z,- freaky4wrld commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1916057940) at 2024-01-29 08:33 PM PST -freaky4wrld,2024-01-30T05:41:07Z,- freaky4wrld commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1916116541) at 2024-01-29 09:41 PM PST -freaky4wrld,2024-01-31T04:28:46Z,- freaky4wrld submitted pull request review: [6158](https://github.com/hackforla/website/pull/6158#pullrequestreview-1852872054) at 2024-01-30 08:28 PM PST -freaky4wrld,2024-02-02T05:50:08Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1922883487) at 2024-02-01 09:50 PM PST -freaky4wrld,2024-02-02T06:14:06Z,- freaky4wrld commented on pull request: [6201](https://github.com/hackforla/website/pull/6201#issuecomment-1922935965) at 2024-02-01 10:14 PM PST -freaky4wrld,2024-02-02T06:20:35Z,- freaky4wrld submitted pull request review: [6201](https://github.com/hackforla/website/pull/6201#pullrequestreview-1858412740) at 2024-02-01 10:20 PM PST -freaky4wrld,2024-02-03T04:15:04Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1925064713) at 2024-02-02 08:15 PM PST -freaky4wrld,2024-02-03T10:18:02Z,- freaky4wrld submitted pull request review: [6216](https://github.com/hackforla/website/pull/6216#pullrequestreview-1860972542) at 2024-02-03 02:18 AM PST -freaky4wrld,2024-02-04T16:18:57Z,- freaky4wrld submitted pull request review: [6141](https://github.com/hackforla/website/pull/6141#pullrequestreview-1861469367) at 2024-02-04 08:18 AM PST -freaky4wrld,2024-02-05T06:06:25Z,- freaky4wrld commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1926290952) at 2024-02-04 10:06 PM PST -freaky4wrld,2024-02-06T04:51:14Z,- freaky4wrld commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1928781064) at 2024-02-05 08:51 PM PST -freaky4wrld,2024-02-07T07:45:49Z,- freaky4wrld commented on issue: [5979](https://github.com/hackforla/website/issues/5979#issuecomment-1931458807) at 2024-02-06 11:45 PM PST -freaky4wrld,2024-02-07T07:55:53Z,- freaky4wrld submitted pull request review: [6243](https://github.com/hackforla/website/pull/6243#pullrequestreview-1867121384) at 2024-02-06 11:55 PM PST -freaky4wrld,2024-02-07T08:45:29Z,- freaky4wrld commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1931545018) at 2024-02-07 12:45 AM PST -freaky4wrld,2024-02-08T09:24:35Z,- freaky4wrld submitted pull request review: [6263](https://github.com/hackforla/website/pull/6263#pullrequestreview-1869643211) at 2024-02-08 01:24 AM PST -freaky4wrld,2024-02-09T13:25:03Z,- freaky4wrld submitted pull request review: [6271](https://github.com/hackforla/website/pull/6271#pullrequestreview-1872386595) at 2024-02-09 05:25 AM PST -freaky4wrld,2024-02-10T05:28:33Z,- freaky4wrld commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1936877417) at 2024-02-09 09:28 PM PST -freaky4wrld,2024-02-10T05:30:04Z,- freaky4wrld commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1936877947) at 2024-02-09 09:30 PM PST -freaky4wrld,2024-02-10T08:33:03Z,- freaky4wrld submitted pull request review: [6271](https://github.com/hackforla/website/pull/6271#pullrequestreview-1873582385) at 2024-02-10 12:33 AM PST -freaky4wrld,2024-02-11T05:15:08Z,- freaky4wrld submitted pull request review: [6267](https://github.com/hackforla/website/pull/6267#pullrequestreview-1874304211) at 2024-02-10 09:15 PM PST -freaky4wrld,2024-02-14T05:04:00Z,- freaky4wrld commented on pull request: [6293](https://github.com/hackforla/website/pull/6293#issuecomment-1943087497) at 2024-02-13 09:04 PM PST -freaky4wrld,2024-02-15T04:46:11Z,- freaky4wrld submitted pull request review: [6293](https://github.com/hackforla/website/pull/6293#pullrequestreview-1881754737) at 2024-02-14 08:46 PM PST -freaky4wrld,2024-02-16T05:39:18Z,- freaky4wrld commented on pull request: [6301](https://github.com/hackforla/website/pull/6301#issuecomment-1947790422) at 2024-02-15 09:39 PM PST -freaky4wrld,2024-02-16T06:41:24Z,- freaky4wrld opened issue: [6303](https://github.com/hackforla/website/issues/6303) at 2024-02-15 10:41 PM PST -freaky4wrld,2024-02-16T06:42:32Z,- freaky4wrld commented on issue: [6303](https://github.com/hackforla/website/issues/6303#issuecomment-1947839702) at 2024-02-15 10:42 PM PST -freaky4wrld,2024-02-17T05:54:19Z,- freaky4wrld commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949700770) at 2024-02-16 09:54 PM PST -freaky4wrld,2024-02-17T06:08:51Z,- freaky4wrld submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1886482412) at 2024-02-16 10:08 PM PST -freaky4wrld,2024-02-17T06:13:37Z,- freaky4wrld commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1949764135) at 2024-02-16 10:13 PM PST -freaky4wrld,2024-02-17T08:44:37Z,- freaky4wrld closed issue by PR 6292: [5365](https://github.com/hackforla/website/issues/5365#event-11835936888) at 2024-02-17 12:44 AM PST -freaky4wrld,2024-02-17T08:48:14Z,- freaky4wrld commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1949904821) at 2024-02-17 12:48 AM PST -freaky4wrld,2024-02-18T06:06:20Z,- freaky4wrld submitted pull request review: [6307](https://github.com/hackforla/website/pull/6307#pullrequestreview-1887094584) at 2024-02-17 10:06 PM PST -freaky4wrld,2024-02-18T06:45:16Z,- freaky4wrld commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950980923) at 2024-02-17 10:45 PM PST -freaky4wrld,2024-02-18T06:45:20Z,- freaky4wrld closed issue by PR 6307: [6052](https://github.com/hackforla/website/issues/6052#event-11838274168) at 2024-02-17 10:45 PM PST -freaky4wrld,2024-02-19T07:04:23Z,- freaky4wrld commented on pull request: [6314](https://github.com/hackforla/website/pull/6314#issuecomment-1951822644) at 2024-02-18 11:04 PM PST -freaky4wrld,2024-02-20T06:34:56Z,- freaky4wrld assigned to issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1940112615) at 2024-02-19 10:34 PM PST -freaky4wrld,2024-02-20T06:35:23Z,- freaky4wrld commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1953570303) at 2024-02-19 10:35 PM PST -freaky4wrld,2024-02-24T04:07:25Z,- freaky4wrld submitted pull request review: [6366](https://github.com/hackforla/website/pull/6366#pullrequestreview-1899208811) at 2024-02-23 08:07 PM PST -freaky4wrld,2024-02-24T04:30:05Z,- freaky4wrld assigned to issue: [6289](https://github.com/hackforla/website/issues/6289) at 2024-02-23 08:30 PM PST -freaky4wrld,2024-02-24T04:44:58Z,- freaky4wrld opened issue: [6369](https://github.com/hackforla/website/issues/6369) at 2024-02-23 08:44 PM PST -freaky4wrld,2024-02-24T04:53:06Z,- freaky4wrld commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-1962253742) at 2024-02-23 08:53 PM PST -freaky4wrld,2024-02-25T06:36:28Z,- freaky4wrld commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1962831820) at 2024-02-24 10:36 PM PST -freaky4wrld,2024-02-26T03:52:11Z,- freaky4wrld closed issue by PR 6366: [5838](https://github.com/hackforla/website/issues/5838#event-11915300742) at 2024-02-25 07:52 PM PST -freaky4wrld,2024-02-26T04:15:19Z,- freaky4wrld commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1963287917) at 2024-02-25 08:15 PM PST -freaky4wrld,2024-02-26T04:18:08Z,- freaky4wrld submitted pull request review: [6365](https://github.com/hackforla/website/pull/6365#pullrequestreview-1899929690) at 2024-02-25 08:18 PM PST -freaky4wrld,2024-02-26T04:19:44Z,- freaky4wrld closed issue by PR 6365: [6111](https://github.com/hackforla/website/issues/6111#event-11915441906) at 2024-02-25 08:19 PM PST -freaky4wrld,2024-02-26T04:25:58Z,- freaky4wrld commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1963295674) at 2024-02-25 08:25 PM PST -freaky4wrld,2024-02-27T14:50:52Z,- freaky4wrld commented on pull request: [6381](https://github.com/hackforla/website/pull/6381#issuecomment-1966723157) at 2024-02-27 06:50 AM PST -freaky4wrld,2024-02-28T06:05:18Z,- freaky4wrld submitted pull request review: [6381](https://github.com/hackforla/website/pull/6381#pullrequestreview-1905387929) at 2024-02-27 10:05 PM PST -freaky4wrld,2024-02-28T06:05:36Z,- freaky4wrld closed issue by PR 6381: [5839](https://github.com/hackforla/website/issues/5839#event-11946818626) at 2024-02-27 10:05 PM PST -freaky4wrld,2024-02-28T06:25:21Z,- freaky4wrld submitted pull request review: [6363](https://github.com/hackforla/website/pull/6363#pullrequestreview-1905408883) at 2024-02-27 10:25 PM PST -freaky4wrld,2024-02-28T06:25:28Z,- freaky4wrld closed issue by PR 6363: [5878](https://github.com/hackforla/website/issues/5878#event-11946953924) at 2024-02-27 10:25 PM PST -freaky4wrld,2024-03-01T03:18:10Z,- freaky4wrld closed issue by PR 6385: [6257](https://github.com/hackforla/website/issues/6257#event-11974037182) at 2024-02-29 07:18 PM PST -freaky4wrld,2024-03-02T08:03:21Z,- freaky4wrld closed issue by PR 6393: [6311](https://github.com/hackforla/website/issues/6311#event-11986793260) at 2024-03-02 12:03 AM PST -freaky4wrld,2024-03-02T08:13:50Z,- freaky4wrld submitted pull request review: [6406](https://github.com/hackforla/website/pull/6406#pullrequestreview-1912612763) at 2024-03-02 12:13 AM PST -freaky4wrld,2024-03-02T08:13:59Z,- freaky4wrld closed issue by PR 6406: [6377](https://github.com/hackforla/website/issues/6377#event-11986837575) at 2024-03-02 12:13 AM PST -freaky4wrld,2024-03-03T16:54:47Z,- freaky4wrld submitted pull request review: [6388](https://github.com/hackforla/website/pull/6388#pullrequestreview-1913042415) at 2024-03-03 08:54 AM PST -freaky4wrld,2024-03-04T05:46:55Z,- freaky4wrld assigned to issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-1975776628) at 2024-03-03 09:46 PM PST -freaky4wrld,2024-03-04T10:08:02Z,- freaky4wrld commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1976219020) at 2024-03-04 02:08 AM PST -freaky4wrld,2024-03-04T10:20:30Z,- freaky4wrld commented on issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-1976243620) at 2024-03-04 02:20 AM PST -freaky4wrld,2024-03-07T05:09:53Z,- freaky4wrld closed issue by PR 6436: [5850](https://github.com/hackforla/website/issues/5850#event-12036550580) at 2024-03-06 09:09 PM PST -freaky4wrld,2024-03-12T01:55:53Z,- freaky4wrld commented on pull request: [6448](https://github.com/hackforla/website/pull/6448#issuecomment-1989774203) at 2024-03-11 06:55 PM PDT -freaky4wrld,2024-03-14T03:48:14Z,- freaky4wrld submitted pull request review: [6448](https://github.com/hackforla/website/pull/6448#pullrequestreview-1935593119) at 2024-03-13 08:48 PM PDT -freaky4wrld,2024-03-14T03:48:26Z,- freaky4wrld closed issue by PR 6448: [6167](https://github.com/hackforla/website/issues/6167#event-12111802977) at 2024-03-13 08:48 PM PDT -freaky4wrld,2024-03-15T05:45:46Z,- freaky4wrld closed issue by PR 6461: [6171](https://github.com/hackforla/website/issues/6171#event-12126963059) at 2024-03-14 10:45 PM PDT -freaky4wrld,2024-03-15T06:05:40Z,- freaky4wrld closed issue by PR 6443: [5507](https://github.com/hackforla/website/issues/5507#event-12127087125) at 2024-03-14 11:05 PM PDT -freaky4wrld,2024-03-15T10:07:04Z,- freaky4wrld closed issue by PR 6457: [6154](https://github.com/hackforla/website/issues/6154#event-12129377817) at 2024-03-15 03:07 AM PDT -freaky4wrld,2024-03-16T04:07:30Z,- freaky4wrld commented on pull request: [6469](https://github.com/hackforla/website/pull/6469#issuecomment-2001555617) at 2024-03-15 09:07 PM PDT -freaky4wrld,2024-03-16T04:28:13Z,- freaky4wrld submitted pull request review: [6469](https://github.com/hackforla/website/pull/6469#pullrequestreview-1940947198) at 2024-03-15 09:28 PM PDT -freaky4wrld,2024-03-16T06:31:50Z,- freaky4wrld commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-2001850278) at 2024-03-15 11:31 PM PDT -freaky4wrld,2024-03-19T04:11:31Z,- freaky4wrld commented on pull request: [6471](https://github.com/hackforla/website/pull/6471#issuecomment-2005719271) at 2024-03-18 09:11 PM PDT -freaky4wrld,2024-03-21T15:57:06Z,- freaky4wrld submitted pull request review: [6486](https://github.com/hackforla/website/pull/6486#pullrequestreview-1952668835) at 2024-03-21 08:57 AM PDT -freaky4wrld,2024-03-21T15:57:26Z,- freaky4wrld closed issue by PR 6486: [6395](https://github.com/hackforla/website/issues/6395#event-12203194855) at 2024-03-21 08:57 AM PDT -freaky4wrld,2024-03-30T03:14:36Z,- freaky4wrld commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2027893318) at 2024-03-29 08:14 PM PDT -freaky4wrld,2024-03-30T11:28:13Z,- freaky4wrld closed issue by PR 6533: [6110](https://github.com/hackforla/website/issues/6110#event-12300409625) at 2024-03-30 04:28 AM PDT -freaky4wrld,2024-03-30T11:28:47Z,- freaky4wrld closed issue by PR 6547: [6450](https://github.com/hackforla/website/issues/6450#event-12300410494) at 2024-03-30 04:28 AM PDT -freaky4wrld,2024-04-10T05:04:49Z,- freaky4wrld submitted pull request review: [6566](https://github.com/hackforla/website/pull/6566#pullrequestreview-1990800015) at 2024-04-09 10:04 PM PDT -freaky4wrld,2024-04-10T05:14:09Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2046552045) at 2024-04-09 10:14 PM PDT -freaky4wrld,2024-04-10T05:14:38Z,- freaky4wrld closed issue by PR 6566: [6309](https://github.com/hackforla/website/issues/6309#event-12416460175) at 2024-04-09 10:14 PM PDT -freaky4wrld,2024-04-11T05:52:13Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2048971577) at 2024-04-10 10:52 PM PDT -freaky4wrld,2024-04-11T11:26:04Z,- freaky4wrld submitted pull request review: [6620](https://github.com/hackforla/website/pull/6620#pullrequestreview-1993924779) at 2024-04-11 04:26 AM PDT -freaky4wrld,2024-04-12T05:19:32Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2050996923) at 2024-04-11 10:19 PM PDT -freaky4wrld,2024-04-13T07:59:15Z,- freaky4wrld submitted pull request review: [6631](https://github.com/hackforla/website/pull/6631#pullrequestreview-1999182436) at 2024-04-13 12:59 AM PDT -freaky4wrld,2024-04-15T09:30:00Z,- freaky4wrld submitted pull request review: [6647](https://github.com/hackforla/website/pull/6647#pullrequestreview-2000528661) at 2024-04-15 02:30 AM PDT -freaky4wrld,2024-04-15T09:30:09Z,- freaky4wrld closed issue by PR 6647: [6170](https://github.com/hackforla/website/issues/6170#event-12466180134) at 2024-04-15 02:30 AM PDT -freaky4wrld,2024-04-20T04:20:13Z,- freaky4wrld commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2067545031) at 2024-04-19 09:20 PM PDT -freaky4wrld,2024-04-21T06:01:12Z,- freaky4wrld submitted pull request review: [6520](https://github.com/hackforla/website/pull/6520#pullrequestreview-2013328500) at 2024-04-20 11:01 PM PDT -freaky4wrld,2024-04-23T05:12:39Z,- freaky4wrld commented on issue: [6289](https://github.com/hackforla/website/issues/6289#issuecomment-2071421851) at 2024-04-22 10:12 PM PDT -freaky4wrld,2024-04-23T05:17:39Z,- freaky4wrld commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2071426667) at 2024-04-22 10:17 PM PDT -freaky4wrld,2024-04-23T05:24:50Z,- freaky4wrld closed issue by PR 6708: [6642](https://github.com/hackforla/website/issues/6642#event-12569366781) at 2024-04-22 10:24 PM PDT -freaky4wrld,2024-04-23T13:49:00Z,- freaky4wrld closed issue by PR 6707: [6696](https://github.com/hackforla/website/issues/6696#event-12576058168) at 2024-04-23 06:49 AM PDT -freaky4wrld,2024-04-25T04:30:51Z,- freaky4wrld submitted pull request review: [6748](https://github.com/hackforla/website/pull/6748#pullrequestreview-2021467498) at 2024-04-24 09:30 PM PDT -freaky4wrld,2024-04-25T05:59:32Z,- freaky4wrld commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2076428826) at 2024-04-24 10:59 PM PDT -freaky4wrld,2024-04-30T10:33:12Z,- freaky4wrld commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2084945936) at 2024-04-30 03:33 AM PDT -freaky4wrld,2024-04-30T16:06:57Z,- freaky4wrld commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-2085798486) at 2024-04-30 09:06 AM PDT -freaky4wrld,2024-05-01T04:08:17Z,- freaky4wrld submitted pull request review: [6788](https://github.com/hackforla/website/pull/6788#pullrequestreview-2033010248) at 2024-04-30 09:08 PM PDT -freaky4wrld,2024-05-10T03:24:07Z,- freaky4wrld commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2103788671) at 2024-05-09 08:24 PM PDT -freaky4wrld,2024-06-02T05:52:29Z,- freaky4wrld submitted pull request review: [6923](https://github.com/hackforla/website/pull/6923#pullrequestreview-2092220603) at 2024-06-01 10:52 PM PDT -freaky4wrld,2024-06-02T05:52:49Z,- freaky4wrld closed issue by PR 6923: [6922](https://github.com/hackforla/website/issues/6922#event-13010856879) at 2024-06-01 10:52 PM PDT -freaky4wrld,2024-06-04T01:08:33Z,- freaky4wrld submitted pull request review: [6928](https://github.com/hackforla/website/pull/6928#pullrequestreview-2095105508) at 2024-06-03 06:08 PM PDT -freaky4wrld,2024-06-11T03:11:33Z,- freaky4wrld submitted pull request review: [6985](https://github.com/hackforla/website/pull/6985#pullrequestreview-2109203907) at 2024-06-10 08:11 PM PDT -freaky4wrld,2024-06-12T00:40:25Z,- freaky4wrld submitted pull request review: [6989](https://github.com/hackforla/website/pull/6989#pullrequestreview-2111686367) at 2024-06-11 05:40 PM PDT -freaky4wrld,2024-06-13T00:07:29Z,- freaky4wrld submitted pull request review: [6992](https://github.com/hackforla/website/pull/6992#pullrequestreview-2114433927) at 2024-06-12 05:07 PM PDT -freaky4wrld,2024-06-13T00:07:38Z,- freaky4wrld closed issue by PR 6992: [6858](https://github.com/hackforla/website/issues/6858#event-13138635025) at 2024-06-12 05:07 PM PDT -freaky4wrld,2024-06-13T01:44:08Z,- freaky4wrld closed issue by PR 6989: [6848](https://github.com/hackforla/website/issues/6848#event-13139161863) at 2024-06-12 06:44 PM PDT -freaky4wrld,2024-06-14T02:03:48Z,- freaky4wrld submitted pull request review: [6999](https://github.com/hackforla/website/pull/6999#pullrequestreview-2117287708) at 2024-06-13 07:03 PM PDT -freaky4wrld,2024-06-14T23:19:40Z,- freaky4wrld closed issue by PR 6999: [6850](https://github.com/hackforla/website/issues/6850#event-13166269937) at 2024-06-14 04:19 PM PDT -freaky4wrld,2024-08-13T04:57:45Z,- freaky4wrld submitted pull request review: [7272](https://github.com/hackforla/website/pull/7272#pullrequestreview-2234500317) at 2024-08-12 09:57 PM PDT -freaky4wrld,2024-08-13T04:57:53Z,- freaky4wrld closed issue by PR 7272: [7251](https://github.com/hackforla/website/issues/7251#event-13857635595) at 2024-08-12 09:57 PM PDT -freaky4wrld,2024-08-13T05:05:07Z,- freaky4wrld commented on pull request: [7275](https://github.com/hackforla/website/pull/7275#issuecomment-2285347077) at 2024-08-12 10:05 PM PDT -freaky4wrld,2024-08-13T05:06:29Z,- freaky4wrld commented on pull request: [7274](https://github.com/hackforla/website/pull/7274#issuecomment-2285348170) at 2024-08-12 10:06 PM PDT -freaky4wrld,2024-09-09T08:53:18Z,- freaky4wrld unassigned from issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2172337604) at 2024-09-09 01:53 AM PDT -freaky4wrld,2025-03-04T01:41:26Z,- freaky4wrld unassigned from issue: [5654](https://github.com/hackforla/website/issues/5654#issuecomment-2695967567) at 2025-03-03 05:41 PM PST -ftblmagician,3918,SKILLS ISSUE -ftblmagician,2023-02-01T05:00:55Z,- ftblmagician opened issue: [3918](https://github.com/hackforla/website/issues/3918) at 2023-01-31 09:00 PM PST -ftblmagician,2023-02-01T05:00:56Z,- ftblmagician assigned to issue: [3918](https://github.com/hackforla/website/issues/3918) at 2023-01-31 09:00 PM PST -ftblmagician,2023-02-26T19:08:51Z,- ftblmagician assigned to issue: [3837](https://github.com/hackforla/website/issues/3837#event-8453047120) at 2023-02-26 11:08 AM PST -ftblmagician,2023-02-27T00:35:26Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1445520144) at 2023-02-26 04:35 PM PST -ftblmagician,2023-02-28T15:07:07Z,- ftblmagician commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1448349600) at 2023-02-28 07:07 AM PST -ftblmagician,2023-02-28T16:06:10Z,- ftblmagician unassigned from issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1448446187) at 2023-02-28 08:06 AM PST -ftblmagician,2023-03-01T02:46:40Z,- ftblmagician assigned to issue: [4007](https://github.com/hackforla/website/issues/4007) at 2023-02-28 06:46 PM PST -ftblmagician,2023-03-02T04:06:56Z,- ftblmagician opened pull request: [4086](https://github.com/hackforla/website/pull/4086) at 2023-03-01 08:06 PM PST -ftblmagician,2023-03-02T14:41:29Z,- ftblmagician unassigned from issue: [4007](https://github.com/hackforla/website/issues/4007#issuecomment-1449249575) at 2023-03-02 06:41 AM PST -ftblmagician,2023-03-04T15:44:17Z,- ftblmagician commented on issue: [4007](https://github.com/hackforla/website/issues/4007#issuecomment-1454781739) at 2023-03-04 07:44 AM PST -ftblmagician,2023-03-04T15:46:44Z,- ftblmagician commented on pull request: [4086](https://github.com/hackforla/website/pull/4086#issuecomment-1454782470) at 2023-03-04 07:46 AM PST -ftblmagician,2023-03-08T04:22:51Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1459420719) at 2023-03-07 08:22 PM PST -ftblmagician,2023-03-09T18:56:24Z,- ftblmagician pull request merged: [4086](https://github.com/hackforla/website/pull/4086#event-8711482107) at 2023-03-09 10:56 AM PST -ftblmagician,2023-03-10T04:04:33Z,- ftblmagician assigned to issue: [4141](https://github.com/hackforla/website/issues/4141) at 2023-03-09 08:04 PM PST -ftblmagician,2023-03-11T14:44:34Z,- ftblmagician commented on issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1464926417) at 2023-03-11 07:44 AM PDT -ftblmagician,2023-03-11T15:13:45Z,- ftblmagician opened pull request: [4150](https://github.com/hackforla/website/pull/4150) at 2023-03-11 08:13 AM PDT -ftblmagician,2023-03-11T15:17:48Z,- ftblmagician commented on issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1464932982) at 2023-03-11 08:17 AM PDT -ftblmagician,2023-03-14T14:57:21Z,- ftblmagician commented on pull request: [4150](https://github.com/hackforla/website/pull/4150#issuecomment-1468258111) at 2023-03-14 07:57 AM PDT -ftblmagician,2023-03-15T02:02:16Z,- ftblmagician unassigned from issue: [4141](https://github.com/hackforla/website/issues/4141#issuecomment-1464932982) at 2023-03-14 07:02 PM PDT -ftblmagician,2023-03-15T02:15:47Z,- ftblmagician assigned to issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1437720862) at 2023-03-14 07:15 PM PDT -ftblmagician,2023-03-15T04:41:48Z,- ftblmagician pull request merged: [4150](https://github.com/hackforla/website/pull/4150#event-8750936531) at 2023-03-14 09:41 PM PDT -ftblmagician,2023-03-21T04:08:14Z,- ftblmagician commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1477254936) at 2023-03-20 09:08 PM PDT -ftblmagician,2023-03-24T18:05:49Z,- ftblmagician opened pull request: [4278](https://github.com/hackforla/website/pull/4278) at 2023-03-24 11:05 AM PDT -ftblmagician,2023-03-27T00:59:21Z,- ftblmagician unassigned from issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1484316737) at 2023-03-26 05:59 PM PDT -ftblmagician,2023-03-28T02:04:57Z,- ftblmagician commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1486100887) at 2023-03-27 07:04 PM PDT -ftblmagician,2023-03-28T02:10:13Z,- ftblmagician commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1486104331) at 2023-03-27 07:10 PM PDT -ftblmagician,2023-03-29T04:06:13Z,- ftblmagician assigned to issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1484316737) at 2023-03-28 09:06 PM PDT -ftblmagician,2023-03-29T04:07:49Z,- ftblmagician commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1487917125) at 2023-03-28 09:07 PM PDT -ftblmagician,2023-03-29T22:09:06Z,- ftblmagician pull request merged: [4278](https://github.com/hackforla/website/pull/4278#event-8881231050) at 2023-03-29 03:09 PM PDT -ftblmagician,2023-03-31T02:31:35Z,- ftblmagician assigned to issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1483559227) at 2023-03-30 07:31 PM PDT -ftblmagician,2023-04-07T19:25:46Z,- ftblmagician assigned to issue: [4007](https://github.com/hackforla/website/issues/4007#event-8711482335) at 2023-04-07 12:25 PM PDT -ftblmagician,2023-04-07T19:27:20Z,- ftblmagician assigned to issue: [4141](https://github.com/hackforla/website/issues/4141#event-8750936606) at 2023-04-07 12:27 PM PDT -ftblmagician,2023-04-09T15:33:33Z,- ftblmagician commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1501154765) at 2023-04-09 08:33 AM PDT -ftblmagician,2023-04-11T14:55:31Z,- ftblmagician commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1503529561) at 2023-04-11 07:55 AM PDT -ftblmagician,2023-04-11T14:56:53Z,- ftblmagician commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1503533098) at 2023-04-11 07:56 AM PDT -ftblmagician,2023-04-12T02:24:54Z,- ftblmagician opened pull request: [4474](https://github.com/hackforla/website/pull/4474) at 2023-04-11 07:24 PM PDT -ftblmagician,2023-04-21T17:44:21Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1518148386) at 2023-04-21 10:44 AM PDT -ftblmagician,2023-04-26T02:29:04Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1522673588) at 2023-04-25 07:29 PM PDT -ftblmagician,2023-05-02T01:49:10Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1530758503) at 2023-05-01 06:49 PM PDT -ftblmagician,2023-05-22T14:39:59Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1557342442) at 2023-05-22 07:39 AM PDT -ftblmagician,2023-05-22T14:41:37Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1557345001) at 2023-05-22 07:41 AM PDT -ftblmagician,2023-05-29T19:48:12Z,- ftblmagician commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1567462571) at 2023-05-29 12:48 PM PDT -ftblmagician,2023-06-27T00:13:55Z,- ftblmagician pull request closed w/o merging: [4474](https://github.com/hackforla/website/pull/4474#event-9645440059) at 2023-06-26 05:13 PM PDT -ftblmagician,2023-06-27T00:17:35Z,- ftblmagician unassigned from issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1586250052) at 2023-06-26 05:17 PM PDT -ftblmagician,2023-07-09T16:24:21Z,- ftblmagician commented on issue: [3918](https://github.com/hackforla/website/issues/3918#issuecomment-1627764193) at 2023-07-09 09:24 AM PDT -fusionxx23,8066,SKILLS ISSUE -fusionxx23,2025-04-16T03:05:46Z,- fusionxx23 opened issue: [8066](https://github.com/hackforla/website/issues/8066) at 2025-04-15 08:05 PM PDT -fusionxx23,2025-04-16T03:05:47Z,- fusionxx23 assigned to issue: [8066](https://github.com/hackforla/website/issues/8066) at 2025-04-15 08:05 PM PDT -fusionxx23,2025-04-16T03:18:54Z,- fusionxx23 commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2808121896) at 2025-04-15 08:18 PM PDT -fusionxx23,2025-04-16T03:25:44Z,- fusionxx23 commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2808130385) at 2025-04-15 08:25 PM PDT -fyliu,2022-08-14T22:49:05Z,- fyliu opened issue: [3469](https://github.com/hackforla/website/issues/3469) at 2022-08-14 03:49 PM PDT -fyliu,2023-07-31T04:33:57Z,- fyliu commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1657550602) at 2023-07-30 09:33 PM PDT -fyliu,2023-11-27T04:39:34Z,- fyliu commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1827114392) at 2023-11-26 08:39 PM PST -fyliu,2024-01-26T22:45:01Z,- fyliu commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1912793042) at 2024-01-26 02:45 PM PST -fyliu,2024-02-07T10:07:10Z,- fyliu commented on issue: [5926](https://github.com/hackforla/website/issues/5926#issuecomment-1931699246) at 2024-02-07 02:07 AM PST -fyliu,2024-02-09T01:43:35Z,- fyliu commented on issue: [5644](https://github.com/hackforla/website/issues/5644#issuecomment-1935212336) at 2024-02-08 05:43 PM PST -fyliu,2024-02-26T21:45:32Z,- fyliu commented on issue: [6269](https://github.com/hackforla/website/issues/6269#issuecomment-1965350895) at 2024-02-26 01:45 PM PST -Garcia1416,2638,SKILLS ISSUE -Garcia1416,2021-12-28T03:40:22Z,- Garcia1416 opened issue: [2638](https://github.com/hackforla/website/issues/2638) at 2021-12-27 07:40 PM PST -Garcia1416,2022-01-21T16:01:08Z,- Garcia1416 assigned to issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1018074008) at 2022-01-21 08:01 AM PST -Garcia1416,2022-02-07T06:34:21Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1031122805) at 2022-02-06 10:34 PM PST -Garcia1416,2022-02-08T09:30:05Z,- Garcia1416 assigned to issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1005329755) at 2022-02-08 01:30 AM PST -Garcia1416,2022-02-08T09:31:47Z,- Garcia1416 commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1032397066) at 2022-02-08 01:31 AM PST -Garcia1416,2022-02-17T05:47:20Z,- Garcia1416 assigned to issue: [2442](https://github.com/hackforla/website/issues/2442#issuecomment-960300953) at 2022-02-16 09:47 PM PST -Garcia1416,2022-02-17T05:48:11Z,- Garcia1416 commented on issue: [2442](https://github.com/hackforla/website/issues/2442#issuecomment-1042597711) at 2022-02-16 09:48 PM PST -Garcia1416,2022-02-17T22:00:40Z,- Garcia1416 opened pull request: [2788](https://github.com/hackforla/website/pull/2788) at 2022-02-17 02:00 PM PST -Garcia1416,2022-02-18T00:27:03Z,- Garcia1416 unassigned from issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1043672010) at 2022-02-17 04:27 PM PST -Garcia1416,2022-02-18T16:40:19Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1044808947) at 2022-02-18 08:40 AM PST -Garcia1416,2022-02-18T22:50:38Z,- Garcia1416 pull request merged: [2788](https://github.com/hackforla/website/pull/2788#event-6103084688) at 2022-02-18 02:50 PM PST -Garcia1416,2022-02-19T19:19:42Z,- Garcia1416 closed issue as completed: [2638](https://github.com/hackforla/website/issues/2638#event-6106326804) at 2022-02-19 11:19 AM PST -Garcia1416,2022-03-02T04:22:40Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1056175242) at 2022-03-01 08:22 PM PST -Garcia1416,2022-03-12T00:49:26Z,- Garcia1416 assigned to issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1037524345) at 2022-03-11 05:49 PM PDT -Garcia1416,2022-03-12T00:51:05Z,- Garcia1416 commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1065754086) at 2022-03-11 05:51 PM PDT -Garcia1416,2022-03-13T03:10:42Z,- Garcia1416 commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1066012174) at 2022-03-12 08:10 PM PDT -Garcia1416,2022-03-13T17:30:39Z,- Garcia1416 commented on pull request: [2973](https://github.com/hackforla/website/pull/2973#issuecomment-1066146938) at 2022-03-13 10:30 AM PDT -Garcia1416,2022-03-20T05:40:58Z,- Garcia1416 commented on issue: [2768](https://github.com/hackforla/website/issues/2768#issuecomment-1073173005) at 2022-03-19 10:40 PM PDT -Garcia1416,2022-03-22T02:56:19Z,- Garcia1416 opened pull request: [2998](https://github.com/hackforla/website/pull/2998) at 2022-03-21 07:56 PM PDT -Garcia1416,2022-03-22T18:41:19Z,- Garcia1416 pull request merged: [2998](https://github.com/hackforla/website/pull/2998#event-6285921891) at 2022-03-22 11:41 AM PDT -Garcia1416,2022-03-27T19:16:48Z,- Garcia1416 closed issue as completed: [2638](https://github.com/hackforla/website/issues/2638#event-6314128565) at 2022-03-27 12:16 PM PDT -gardenqu,3052,SKILLS ISSUE -gardenqu,2022-04-13T23:07:55Z,- gardenqu opened issue: [3052](https://github.com/hackforla/website/issues/3052) at 2022-04-13 04:07 PM PDT -gardenqu,2022-04-13T23:30:10Z,- gardenqu assigned to issue: [3052](https://github.com/hackforla/website/issues/3052#issuecomment-1098561528) at 2022-04-13 04:30 PM PDT -gardenqu,2022-04-18T18:26:08Z,- gardenqu assigned to issue: [2910](https://github.com/hackforla/website/issues/2910#issuecomment-1100935602) at 2022-04-18 11:26 AM PDT -gardenqu,2022-04-19T06:28:58Z,- gardenqu opened pull request: [3067](https://github.com/hackforla/website/pull/3067) at 2022-04-18 11:28 PM PDT -gardenqu,2022-04-19T18:01:49Z,- gardenqu pull request merged: [3067](https://github.com/hackforla/website/pull/3067#event-6457325323) at 2022-04-19 11:01 AM PDT -gardenqu,2022-04-19T22:39:09Z,- gardenqu commented on issue: [3052](https://github.com/hackforla/website/issues/3052#issuecomment-1103233513) at 2022-04-19 03:39 PM PDT -gardenqu,2022-04-19T22:55:32Z,- gardenqu assigned to issue: [2215](https://github.com/hackforla/website/issues/2215) at 2022-04-19 03:55 PM PDT -gardenqu,2022-04-19T22:58:41Z,- gardenqu commented on issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1103242389) at 2022-04-19 03:58 PM PDT -gardenqu,2022-04-22T22:22:59Z,- gardenqu unassigned from issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1103242389) at 2022-04-22 03:22 PM PDT -garrettallen0,4061,SKILLS ISSUE -garrettallen0,2023-03-01T04:02:33Z,- garrettallen0 opened issue: [4061](https://github.com/hackforla/website/issues/4061) at 2023-02-28 08:02 PM PST -garrettallen0,2023-03-01T04:08:14Z,- garrettallen0 assigned to issue: [4061](https://github.com/hackforla/website/issues/4061) at 2023-02-28 08:08 PM PST -garrettallen0,2023-03-31T03:58:50Z,- garrettallen0 commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1491252308) at 2023-03-30 08:58 PM PDT -garrettallen0,2023-04-12T03:34:41Z,- garrettallen0 closed issue as completed: [2908](https://github.com/hackforla/website/issues/2908#event-8980455784) at 2023-04-11 08:34 PM PDT -garrettallen0,2023-04-12T03:34:52Z,- garrettallen0 reopened issue: [2908](https://github.com/hackforla/website/issues/2908#event-8980455784) at 2023-04-11 08:34 PM PDT -garrettallen0,2023-04-12T03:36:04Z,- garrettallen0 assigned to issue: [2908](https://github.com/hackforla/website/issues/2908#event-8980455784) at 2023-04-11 08:36 PM PDT -garrettallen0,2023-04-12T03:54:48Z,- garrettallen0 commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1504552787) at 2023-04-11 08:54 PM PDT -garrettallen0,2023-04-12T03:55:52Z,- garrettallen0 commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1504553771) at 2023-04-11 08:55 PM PDT -garrettallen0,2023-04-12T04:34:26Z,- garrettallen0 commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1504594927) at 2023-04-11 09:34 PM PDT -garrettallen0,2023-04-14T02:39:47Z,- garrettallen0 unassigned from issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1504594927) at 2023-04-13 07:39 PM PDT -garrettallen0,2023-04-14T02:43:42Z,- garrettallen0 assigned to issue: [4394](https://github.com/hackforla/website/issues/4394) at 2023-04-13 07:43 PM PDT -garrettallen0,2023-04-14T02:45:48Z,- garrettallen0 commented on issue: [4394](https://github.com/hackforla/website/issues/4394#issuecomment-1507853319) at 2023-04-13 07:45 PM PDT -garrettallen0,2023-04-18T01:42:06Z,- garrettallen0 commented on issue: [4394](https://github.com/hackforla/website/issues/4394#issuecomment-1512316324) at 2023-04-17 06:42 PM PDT -garrettallen0,2023-04-19T03:09:19Z,- garrettallen0 opened pull request: [4546](https://github.com/hackforla/website/pull/4546) at 2023-04-18 08:09 PM PDT -garrettallen0,2023-04-20T04:49:04Z,- garrettallen0 commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1515708377) at 2023-04-19 09:49 PM PDT -garrettallen0,2023-04-21T00:25:27Z,- garrettallen0 pull request closed w/o merging: [4546](https://github.com/hackforla/website/pull/4546#event-9062497718) at 2023-04-20 05:25 PM PDT -garrettallen0,2023-04-23T16:47:06Z,- garrettallen0 opened pull request: [4558](https://github.com/hackforla/website/pull/4558) at 2023-04-23 09:47 AM PDT -garrettallen0,2023-04-23T18:16:57Z,- garrettallen0 opened issue: [4559](https://github.com/hackforla/website/issues/4559) at 2023-04-23 11:16 AM PDT -garrettallen0,2023-04-23T18:24:14Z,- garrettallen0 commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1519126362) at 2023-04-23 11:24 AM PDT -garrettallen0,2023-04-23T22:42:46Z,- garrettallen0 commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519185161) at 2023-04-23 03:42 PM PDT -garrettallen0,2023-04-26T20:52:07Z,- garrettallen0 pull request merged: [4558](https://github.com/hackforla/website/pull/4558#event-9107834388) at 2023-04-26 01:52 PM PDT -garrettallen0,2023-05-08T20:13:01Z,- garrettallen0 commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1538986182) at 2023-05-08 01:13 PM PDT -garrettallen0,2023-05-08T20:18:53Z,- garrettallen0 commented on issue: [4061](https://github.com/hackforla/website/issues/4061#issuecomment-1538995183) at 2023-05-08 01:18 PM PDT -Gauravvpnd,2023-05-10T17:08:07Z,- Gauravvpnd commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1542541247) at 2023-05-10 10:08 AM PDT -Gauravvpnd,2023-05-10T17:47:31Z,- Gauravvpnd commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1542585630) at 2023-05-10 10:47 AM PDT -gawaragcha,2019-06-25T21:15:43Z,- gawaragcha commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-505625778) at 2019-06-25 02:15 PM PDT -gaylem,6246,SKILLS ISSUE -gaylem,2024-02-06T03:30:27Z,- gaylem opened issue: [6246](https://github.com/hackforla/website/issues/6246) at 2024-02-05 07:30 PM PST -gaylem,2024-02-06T03:30:33Z,- gaylem assigned to issue: [6246](https://github.com/hackforla/website/issues/6246) at 2024-02-05 07:30 PM PST -gaylem,2024-02-06T18:01:13Z,- gaylem assigned to issue: [6050](https://github.com/hackforla/website/issues/6050#issuecomment-1875023354) at 2024-02-06 10:01 AM PST -gaylem,2024-02-06T18:04:49Z,- gaylem commented on issue: [6050](https://github.com/hackforla/website/issues/6050#issuecomment-1930488166) at 2024-02-06 10:04 AM PST -gaylem,2024-02-06T19:16:46Z,- gaylem opened pull request: [6260](https://github.com/hackforla/website/pull/6260) at 2024-02-06 11:16 AM PST -gaylem,2024-02-06T19:20:38Z,- gaylem commented on issue: [6246](https://github.com/hackforla/website/issues/6246#issuecomment-1930603459) at 2024-02-06 11:20 AM PST -gaylem,2024-02-06T23:17:58Z,- gaylem commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1930931161) at 2024-02-06 03:17 PM PST -gaylem,2024-02-07T16:03:18Z,- gaylem commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1932367945) at 2024-02-07 08:03 AM PST -gaylem,2024-02-09T06:43:59Z,- gaylem pull request merged: [6260](https://github.com/hackforla/website/pull/6260#event-11754415939) at 2024-02-08 10:43 PM PST -gaylem,2024-02-10T14:53:36Z,- gaylem commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1937025101) at 2024-02-10 06:53 AM PST -gaylem,2024-02-10T14:59:25Z,- gaylem submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1873725212) at 2024-02-10 06:59 AM PST -gaylem,2024-02-10T15:04:24Z,- gaylem assigned to issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1913460430) at 2024-02-10 07:04 AM PST -gaylem,2024-02-10T15:07:16Z,- gaylem commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1937037326) at 2024-02-10 07:07 AM PST -gaylem,2024-02-11T14:44:49Z,- gaylem submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1874381939) at 2024-02-11 06:44 AM PST -gaylem,2024-02-12T16:29:04Z,- gaylem opened pull request: [6281](https://github.com/hackforla/website/pull/6281) at 2024-02-12 08:29 AM PST -gaylem,2024-02-12T16:29:35Z,- gaylem commented on issue: [3861](https://github.com/hackforla/website/issues/3861#issuecomment-1939085012) at 2024-02-12 08:29 AM PST -gaylem,2024-02-12T16:29:48Z,- gaylem commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939085398) at 2024-02-12 08:29 AM PST -gaylem,2024-02-12T16:35:45Z,- gaylem commented on pull request: [6279](https://github.com/hackforla/website/pull/6279#issuecomment-1939104924) at 2024-02-12 08:35 AM PST -gaylem,2024-02-12T16:56:53Z,- gaylem submitted pull request review: [6279](https://github.com/hackforla/website/pull/6279#pullrequestreview-1875736041) at 2024-02-12 08:56 AM PST -gaylem,2024-02-13T22:16:55Z,- gaylem assigned to issue: [5985](https://github.com/hackforla/website/issues/5985) at 2024-02-13 02:16 PM PST -gaylem,2024-02-13T22:19:35Z,- gaylem unassigned from issue: [5985](https://github.com/hackforla/website/issues/5985) at 2024-02-13 02:19 PM PST -gaylem,2024-02-14T02:59:39Z,- gaylem closed issue as completed: [6246](https://github.com/hackforla/website/issues/6246#event-11796224619) at 2024-02-13 06:59 PM PST -gaylem,2024-02-14T03:26:41Z,- gaylem commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1943028187) at 2024-02-13 07:26 PM PST -gaylem,2024-02-14T14:59:06Z,- gaylem submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1880528276) at 2024-02-14 06:59 AM PST -gaylem,2024-02-15T14:09:31Z,- gaylem opened pull request: [6300](https://github.com/hackforla/website/pull/6300) at 2024-02-15 06:09 AM PST -gaylem,2024-02-15T14:11:05Z,- gaylem commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1946174697) at 2024-02-15 06:11 AM PST -gaylem,2024-02-15T14:11:09Z,- gaylem pull request closed w/o merging: [6281](https://github.com/hackforla/website/pull/6281#event-11816041206) at 2024-02-15 06:11 AM PST -gaylem,2024-02-16T05:27:05Z,- gaylem pull request merged: [6300](https://github.com/hackforla/website/pull/6300#event-11824529073) at 2024-02-15 09:27 PM PST -gaylem,2024-02-17T07:15:28Z,- gaylem submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1886489594) at 2024-02-16 11:15 PM PST -gaylem,2024-02-19T19:47:27Z,- gaylem assigned to issue: [5991](https://github.com/hackforla/website/issues/5991) at 2024-02-19 11:47 AM PST -gaylem,2024-02-19T19:48:03Z,- gaylem commented on issue: [5991](https://github.com/hackforla/website/issues/5991#issuecomment-1953077225) at 2024-02-19 11:48 AM PST -gaylem,2024-02-20T17:24:19Z,- gaylem commented on issue: [5991](https://github.com/hackforla/website/issues/5991#issuecomment-1954693240) at 2024-02-20 09:24 AM PST -gaylem,2024-02-20T17:33:41Z,- gaylem commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1954709017) at 2024-02-20 09:33 AM PST -gaylem,2024-02-20T17:44:07Z,- gaylem submitted pull request review: [6324](https://github.com/hackforla/website/pull/6324#pullrequestreview-1891088131) at 2024-02-20 09:44 AM PST -gaylem,2024-02-20T17:47:56Z,- gaylem commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1954738156) at 2024-02-20 09:47 AM PST -gaylem,2024-02-20T17:50:09Z,- gaylem commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1954745951) at 2024-02-20 09:50 AM PST -gaylem,2024-02-20T18:10:48Z,- gaylem submitted pull request review: [6322](https://github.com/hackforla/website/pull/6322#pullrequestreview-1891139190) at 2024-02-20 10:10 AM PST -gaylem,2024-02-21T06:29:33Z,- gaylem commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955979696) at 2024-02-20 10:29 PM PST -gaylem,2024-02-21T21:30:23Z,- gaylem commented on pull request: [6352](https://github.com/hackforla/website/pull/6352#issuecomment-1957991614) at 2024-02-21 01:30 PM PST -gaylem,2024-02-21T21:30:26Z,- gaylem commented on pull request: [6351](https://github.com/hackforla/website/pull/6351#issuecomment-1957992013) at 2024-02-21 01:30 PM PST -gaylem,2024-02-21T21:46:39Z,- gaylem submitted pull request review: [6352](https://github.com/hackforla/website/pull/6352#pullrequestreview-1894479186) at 2024-02-21 01:46 PM PST -gaylem,2024-02-21T21:56:35Z,- gaylem submitted pull request review: [6351](https://github.com/hackforla/website/pull/6351#pullrequestreview-1894492788) at 2024-02-21 01:56 PM PST -gaylem,2024-02-28T14:43:47Z,- gaylem commented on pull request: [6383](https://github.com/hackforla/website/pull/6383#issuecomment-1969137305) at 2024-02-28 06:43 AM PST -gaylem,2024-02-28T14:43:51Z,- gaylem commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1969137399) at 2024-02-28 06:43 AM PST -gaylem,2024-02-28T22:06:53Z,- gaylem submitted pull request review: [6383](https://github.com/hackforla/website/pull/6383#pullrequestreview-1907521136) at 2024-02-28 02:06 PM PST -gaylem,2024-02-28T22:15:17Z,- gaylem submitted pull request review: [6362](https://github.com/hackforla/website/pull/6362#pullrequestreview-1907532707) at 2024-02-28 02:15 PM PST -gaylem,2024-02-28T22:24:59Z,- gaylem commented on pull request: [6390](https://github.com/hackforla/website/pull/6390#issuecomment-1970022639) at 2024-02-28 02:24 PM PST -gaylem,2024-02-28T22:58:43Z,- gaylem submitted pull request review: [6390](https://github.com/hackforla/website/pull/6390#pullrequestreview-1907611416) at 2024-02-28 02:58 PM PST -gaylem,2024-02-28T23:10:24Z,- gaylem assigned to issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1839169663) at 2024-02-28 03:10 PM PST -gaylem,2024-02-28T23:11:22Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1970072440) at 2024-02-28 03:11 PM PST -gaylem,2024-02-29T16:30:42Z,- gaylem opened issue: [6397](https://github.com/hackforla/website/issues/6397) at 2024-02-29 08:30 AM PST -gaylem,2024-03-01T16:10:20Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1973463593) at 2024-03-01 08:10 AM PST -gaylem,2024-03-01T18:13:34Z,- gaylem commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-1973682123) at 2024-03-01 10:13 AM PST -gaylem,2024-03-02T15:14:11Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1974826346) at 2024-03-02 07:14 AM PST -gaylem,2024-03-02T15:16:55Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1974827105) at 2024-03-02 07:16 AM PST -gaylem,2024-03-06T23:12:15Z,- gaylem commented on pull request: [6436](https://github.com/hackforla/website/pull/6436#issuecomment-1982012691) at 2024-03-06 03:12 PM PST -gaylem,2024-03-06T23:12:21Z,- gaylem commented on pull request: [6435](https://github.com/hackforla/website/pull/6435#issuecomment-1982012789) at 2024-03-06 03:12 PM PST -gaylem,2024-03-06T23:23:33Z,- gaylem submitted pull request review: [6436](https://github.com/hackforla/website/pull/6436#pullrequestreview-1921026304) at 2024-03-06 03:23 PM PST -gaylem,2024-03-06T23:30:54Z,- gaylem submitted pull request review: [6435](https://github.com/hackforla/website/pull/6435#pullrequestreview-1921033414) at 2024-03-06 03:30 PM PST -gaylem,2024-03-06T23:32:07Z,- gaylem commented on pull request: [6433](https://github.com/hackforla/website/pull/6433#issuecomment-1982034322) at 2024-03-06 03:32 PM PST -gaylem,2024-03-06T23:44:52Z,- gaylem submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1921046079) at 2024-03-06 03:44 PM PST -gaylem,2024-03-06T23:48:09Z,- gaylem commented on pull request: [6431](https://github.com/hackforla/website/pull/6431#issuecomment-1982058298) at 2024-03-06 03:48 PM PST -gaylem,2024-03-06T23:48:19Z,- gaylem commented on pull request: [6417](https://github.com/hackforla/website/pull/6417#issuecomment-1982058447) at 2024-03-06 03:48 PM PST -gaylem,2024-03-07T00:09:07Z,- gaylem submitted pull request review: [6431](https://github.com/hackforla/website/pull/6431#pullrequestreview-1921067108) at 2024-03-06 04:09 PM PST -gaylem,2024-03-07T00:41:04Z,- gaylem submitted pull request review: [6417](https://github.com/hackforla/website/pull/6417#pullrequestreview-1921103998) at 2024-03-06 04:41 PM PST -gaylem,2024-03-07T00:51:28Z,- gaylem submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1921114991) at 2024-03-06 04:51 PM PST -gaylem,2024-03-07T01:42:14Z,- gaylem submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1921192959) at 2024-03-06 05:42 PM PST -gaylem,2024-03-07T01:56:32Z,- gaylem commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1982198269) at 2024-03-06 05:56 PM PST -gaylem,2024-03-07T14:21:20Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983607252) at 2024-03-07 06:21 AM PST -gaylem,2024-03-07T15:00:40Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983692505) at 2024-03-07 07:00 AM PST -gaylem,2024-03-07T15:07:06Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983710459) at 2024-03-07 07:07 AM PST -gaylem,2024-03-07T15:29:54Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983762477) at 2024-03-07 07:29 AM PST -gaylem,2024-03-08T01:41:34Z,- gaylem submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1923880459) at 2024-03-07 05:41 PM PST -gaylem,2024-03-08T21:05:23Z,- gaylem commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1986419244) at 2024-03-08 01:05 PM PST -gaylem,2024-03-13T18:32:19Z,- gaylem commented on pull request: [6458](https://github.com/hackforla/website/pull/6458#issuecomment-1995309008) at 2024-03-13 11:32 AM PDT -gaylem,2024-03-13T18:32:24Z,- gaylem commented on pull request: [6448](https://github.com/hackforla/website/pull/6448#issuecomment-1995309327) at 2024-03-13 11:32 AM PDT -gaylem,2024-03-13T19:45:45Z,- gaylem submitted pull request review: [6448](https://github.com/hackforla/website/pull/6448#pullrequestreview-1935074067) at 2024-03-13 12:45 PM PDT -gaylem,2024-03-13T20:57:39Z,- gaylem submitted pull request review: [6458](https://github.com/hackforla/website/pull/6458#pullrequestreview-1935194353) at 2024-03-13 01:57 PM PDT -gaylem,2024-03-13T21:35:26Z,- gaylem submitted pull request review: [6448](https://github.com/hackforla/website/pull/6448#pullrequestreview-1935258914) at 2024-03-13 02:35 PM PDT -gaylem,2024-03-20T02:17:44Z,- gaylem assigned to issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-1986582600) at 2024-03-19 07:17 PM PDT -gaylem,2024-03-20T02:19:29Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2008570476) at 2024-03-19 07:19 PM PDT -gaylem,2024-03-20T22:38:44Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2010781311) at 2024-03-20 03:38 PM PDT -gaylem,2024-03-21T15:24:17Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2012624495) at 2024-03-21 08:24 AM PDT -gaylem,2024-03-22T02:22:47Z,- gaylem opened pull request: [6503](https://github.com/hackforla/website/pull/6503) at 2024-03-21 07:22 PM PDT -gaylem,2024-03-25T00:18:18Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017007368) at 2024-03-24 05:18 PM PDT -gaylem,2024-03-25T00:31:08Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017018193) at 2024-03-24 05:31 PM PDT -gaylem,2024-03-27T02:34:50Z,- gaylem commented on pull request: [6517](https://github.com/hackforla/website/pull/6517#issuecomment-2021810056) at 2024-03-26 07:34 PM PDT -gaylem,2024-03-27T15:27:59Z,- gaylem commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2023058767) at 2024-03-27 08:27 AM PDT -gaylem,2024-03-27T19:17:02Z,- gaylem submitted pull request review: [6517](https://github.com/hackforla/website/pull/6517#pullrequestreview-1964546393) at 2024-03-27 12:17 PM PDT -gaylem,2024-03-27T19:41:01Z,- gaylem commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2023827590) at 2024-03-27 12:41 PM PDT -gaylem,2024-03-27T21:10:16Z,- gaylem commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2023996097) at 2024-03-27 02:10 PM PDT -gaylem,2024-03-27T21:54:08Z,- gaylem submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1964837461) at 2024-03-27 02:54 PM PDT -gaylem,2024-03-27T22:02:45Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2024067640) at 2024-03-27 03:02 PM PDT -gaylem,2024-03-28T18:31:37Z,- gaylem commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2025861379) at 2024-03-28 11:31 AM PDT -gaylem,2024-03-28T20:30:11Z,- gaylem submitted pull request review: [6543](https://github.com/hackforla/website/pull/6543#pullrequestreview-1967220328) at 2024-03-28 01:30 PM PDT -gaylem,2024-03-28T20:43:55Z,- gaylem commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026082873) at 2024-03-28 01:43 PM PDT -gaylem,2024-03-28T21:49:20Z,- gaylem commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2026191584) at 2024-03-28 02:49 PM PDT -gaylem,2024-03-29T14:49:56Z,- gaylem opened issue: [6548](https://github.com/hackforla/website/issues/6548) at 2024-03-29 07:49 AM PDT -gaylem,2024-03-29T14:55:28Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2027349578) at 2024-03-29 07:55 AM PDT -gaylem,2024-03-29T20:18:36Z,- gaylem assigned to issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-1988828224) at 2024-03-29 01:18 PM PDT -gaylem,2024-03-29T20:18:59Z,- gaylem assigned to issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2027349578) at 2024-03-29 01:18 PM PDT -gaylem,2024-03-29T20:22:18Z,- gaylem submitted pull request review: [6536](https://github.com/hackforla/website/pull/6536#pullrequestreview-1969570551) at 2024-03-29 01:22 PM PDT -gaylem,2024-03-29T21:41:12Z,- gaylem commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2027762141) at 2024-03-29 02:41 PM PDT -gaylem,2024-03-29T22:04:04Z,- gaylem commented on issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2027777765) at 2024-03-29 03:04 PM PDT -gaylem,2024-03-30T18:51:55Z,- gaylem opened pull request: [6551](https://github.com/hackforla/website/pull/6551) at 2024-03-30 11:51 AM PDT -gaylem,2024-03-30T18:52:02Z,- gaylem pull request closed w/o merging: [6551](https://github.com/hackforla/website/pull/6551#event-12301448408) at 2024-03-30 11:52 AM PDT -gaylem,2024-03-30T18:52:15Z,- gaylem commented on pull request: [6551](https://github.com/hackforla/website/pull/6551#issuecomment-2028441052) at 2024-03-30 11:52 AM PDT -gaylem,2024-03-30T23:03:28Z,- gaylem opened issue: [6552](https://github.com/hackforla/website/issues/6552) at 2024-03-30 04:03 PM PDT -gaylem,2024-04-02T02:01:40Z,- gaylem assigned to issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2030940916) at 2024-04-01 07:01 PM PDT -gaylem,2024-04-02T02:11:01Z,- gaylem commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2030949807) at 2024-04-01 07:11 PM PDT -gaylem,2024-04-02T14:46:31Z,- gaylem commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2032248243) at 2024-04-02 07:46 AM PDT -gaylem,2024-04-02T14:47:46Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2032252820) at 2024-04-02 07:47 AM PDT -gaylem,2024-04-05T14:12:41Z,- gaylem commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2039912865) at 2024-04-05 07:12 AM PDT -gaylem,2024-04-05T14:21:09Z,- gaylem submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1983340492) at 2024-04-05 07:21 AM PDT -gaylem,2024-04-05T14:34:09Z,- gaylem commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2039959726) at 2024-04-05 07:34 AM PDT -gaylem,2024-04-05T14:50:19Z,- gaylem commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2039996985) at 2024-04-05 07:50 AM PDT -gaylem,2024-04-05T14:50:19Z,- gaylem closed issue as completed: [6489](https://github.com/hackforla/website/issues/6489#event-12375444222) at 2024-04-05 07:50 AM PDT -gaylem,2024-04-05T16:42:28Z,- gaylem commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2040239751) at 2024-04-05 09:42 AM PDT -gaylem,2024-04-05T19:52:31Z,- gaylem unassigned from issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2040529751) at 2024-04-05 12:52 PM PDT -gaylem,2024-04-05T19:54:30Z,- gaylem unassigned from issue: [6378](https://github.com/hackforla/website/issues/6378#issuecomment-2027777765) at 2024-04-05 12:54 PM PDT -gaylem,2024-04-05T20:15:32Z,- gaylem commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2040562049) at 2024-04-05 01:15 PM PDT -gaylem,2024-04-05T20:15:39Z,- gaylem submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1984114500) at 2024-04-05 01:15 PM PDT -gaylem,2024-04-05T23:52:11Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2040790973) at 2024-04-05 04:52 PM PDT -gaylem,2024-04-07T16:28:57Z,- gaylem commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2041522366) at 2024-04-07 09:28 AM PDT -gaylem,2024-04-10T17:27:02Z,- gaylem commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2048102569) at 2024-04-10 10:27 AM PDT -gaylem,2024-04-12T17:00:18Z,- gaylem closed issue by PR 6506: [5840](https://github.com/hackforla/website/issues/5840#event-12452039842) at 2024-04-12 10:00 AM PDT -gaylem,2024-04-12T17:05:44Z,- gaylem closed issue by PR 6549: [6196](https://github.com/hackforla/website/issues/6196#event-12452091940) at 2024-04-12 10:05 AM PDT -gaylem,2024-04-12T17:44:00Z,- gaylem commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2052202743) at 2024-04-12 10:44 AM PDT -gaylem,2024-04-12T17:45:02Z,- gaylem commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2052204419) at 2024-04-12 10:45 AM PDT -gaylem,2024-04-12T17:50:08Z,- gaylem assigned to issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2046335793) at 2024-04-12 10:50 AM PDT -gaylem,2024-04-12T17:51:27Z,- gaylem commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2052212789) at 2024-04-12 10:51 AM PDT -gaylem,2024-04-12T23:08:30Z,- gaylem closed issue by PR 6629: [6174](https://github.com/hackforla/website/issues/6174#event-12454960725) at 2024-04-12 04:08 PM PDT -gaylem,2024-04-12T23:14:12Z,- gaylem assigned to issue: [4752](https://github.com/hackforla/website/issues/4752#issuecomment-1776030382) at 2024-04-12 04:14 PM PDT -gaylem,2024-04-12T23:48:08Z,- gaylem opened issue: [6633](https://github.com/hackforla/website/issues/6633) at 2024-04-12 04:48 PM PDT -gaylem,2024-04-13T00:09:46Z,- gaylem commented on issue: [4752](https://github.com/hackforla/website/issues/4752#issuecomment-2052715567) at 2024-04-12 05:09 PM PDT -gaylem,2024-04-13T00:13:54Z,- gaylem closed issue as completed: [4752](https://github.com/hackforla/website/issues/4752#event-12455274972) at 2024-04-12 05:13 PM PDT -gaylem,2024-04-13T00:42:04Z,- gaylem opened issue: [6637](https://github.com/hackforla/website/issues/6637) at 2024-04-12 05:42 PM PDT -gaylem,2024-04-13T01:00:15Z,- gaylem commented on issue: [6397](https://github.com/hackforla/website/issues/6397#issuecomment-2052785002) at 2024-04-12 06:00 PM PDT -gaylem,2024-04-13T01:00:17Z,- gaylem closed issue as completed: [6397](https://github.com/hackforla/website/issues/6397#event-12455398453) at 2024-04-12 06:00 PM PDT -gaylem,2024-04-13T01:03:18Z,- gaylem assigned to issue: [6397](https://github.com/hackforla/website/issues/6397#event-12455398453) at 2024-04-12 06:03 PM PDT -gaylem,2024-04-15T00:07:51Z,- gaylem unassigned from issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2041393563) at 2024-04-14 05:07 PM PDT -gaylem,2024-04-15T16:12:17Z,- gaylem opened issue: [6649](https://github.com/hackforla/website/issues/6649) at 2024-04-15 09:12 AM PDT -gaylem,2024-04-15T16:45:30Z,- gaylem commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2057349454) at 2024-04-15 09:45 AM PDT -gaylem,2024-04-16T00:39:57Z,- gaylem unassigned from issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2058018157) at 2024-04-15 05:39 PM PDT -gaylem,2024-04-16T01:02:59Z,- gaylem commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2058055037) at 2024-04-15 06:02 PM PDT -gaylem,2024-04-19T14:33:31Z,- gaylem commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2066714065) at 2024-04-19 07:33 AM PDT -gaylem,2024-04-19T22:47:17Z,- gaylem closed issue by PR 6659: [6539](https://github.com/hackforla/website/issues/6539#event-12545613065) at 2024-04-19 03:47 PM PDT -gaylem,2024-04-20T14:33:49Z,- gaylem opened issue: [6691](https://github.com/hackforla/website/issues/6691) at 2024-04-20 07:33 AM PDT -gaylem,2024-04-20T14:36:54Z,- gaylem assigned to issue: [6691](https://github.com/hackforla/website/issues/6691) at 2024-04-20 07:36 AM PDT -gaylem,2024-04-20T18:21:45Z,- gaylem opened pull request: [6692](https://github.com/hackforla/website/pull/6692) at 2024-04-20 11:21 AM PDT -gaylem,2024-04-20T20:00:14Z,- gaylem commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2067768469) at 2024-04-20 01:00 PM PDT -gaylem,2024-04-20T20:10:36Z,- gaylem commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2067770732) at 2024-04-20 01:10 PM PDT -gaylem,2024-04-21T19:03:33Z,- gaylem commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2068167566) at 2024-04-21 12:03 PM PDT -gaylem,2024-04-23T13:20:22Z,- gaylem commented on issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2072308517) at 2024-04-23 06:20 AM PDT -gaylem,2024-04-23T17:58:25Z,- gaylem assigned to issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2073047735) at 2024-04-23 10:58 AM PDT -gaylem,2024-04-24T19:08:11Z,- gaylem unassigned from issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2073048654) at 2024-04-24 12:08 PM PDT -gaylem,2024-04-26T23:05:49Z,- gaylem closed issue by PR 6520: [6193](https://github.com/hackforla/website/issues/6193#event-12629137915) at 2024-04-26 04:05 PM PDT -gaylem,2024-04-28T17:14:00Z,- gaylem assigned to issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2081559554) at 2024-04-28 10:14 AM PDT -gaylem,2024-04-29T16:11:41Z,- gaylem commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2083137865) at 2024-04-29 09:11 AM PDT -gaylem,2024-04-29T16:12:00Z,- gaylem unassigned from issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2083137865) at 2024-04-29 09:12 AM PDT -gaylem,2024-04-30T14:03:57Z,- gaylem commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2085425110) at 2024-04-30 07:03 AM PDT -gaylem,2024-04-30T17:31:50Z,- gaylem unassigned from issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2072308517) at 2024-04-30 10:31 AM PDT -gaylem,2024-04-30T18:03:38Z,- gaylem submitted pull request review: [6777](https://github.com/hackforla/website/pull/6777#pullrequestreview-2032148319) at 2024-04-30 11:03 AM PDT -gaylem,2024-04-30T18:06:57Z,- gaylem commented on pull request: [6777](https://github.com/hackforla/website/pull/6777#issuecomment-2086337672) at 2024-04-30 11:06 AM PDT -gaylem,2024-04-30T23:31:29Z,- gaylem commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2087714803) at 2024-04-30 04:31 PM PDT -gaylem,2024-04-30T23:34:07Z,- gaylem assigned to issue: [6691](https://github.com/hackforla/website/issues/6691#issuecomment-2072308517) at 2024-04-30 04:34 PM PDT -gaylem,2024-05-02T12:11:50Z,- gaylem submitted pull request review: [6777](https://github.com/hackforla/website/pull/6777#pullrequestreview-2035573913) at 2024-05-02 05:11 AM PDT -gaylem,2024-05-02T12:12:01Z,- gaylem closed issue by PR 6777: [6775](https://github.com/hackforla/website/issues/6775#event-12682356399) at 2024-05-02 05:12 AM PDT -gaylem,2024-05-03T01:26:55Z,- gaylem submitted pull request review: [6804](https://github.com/hackforla/website/pull/6804#pullrequestreview-2037217017) at 2024-05-02 06:26 PM PDT -gaylem,2024-05-03T20:55:11Z,- gaylem closed issue by PR 6808: [6705](https://github.com/hackforla/website/issues/6705#event-12701068407) at 2024-05-03 01:55 PM PDT -gaylem,2024-05-06T13:25:53Z,- gaylem closed issue by PR 6692: [6691](https://github.com/hackforla/website/issues/6691#event-12715027731) at 2024-05-06 06:25 AM PDT -gaylem,2024-05-10T14:31:59Z,- gaylem closed issue by PR 6821: [6759](https://github.com/hackforla/website/issues/6759#event-12770555264) at 2024-05-10 07:31 AM PDT -gaylem,2024-05-10T21:39:44Z,- gaylem closed issue by PR 6841: [6717](https://github.com/hackforla/website/issues/6717#event-12774264060) at 2024-05-10 02:39 PM PDT -gaylem,2024-05-13T21:01:55Z,- gaylem commented on issue: [6548](https://github.com/hackforla/website/issues/6548#issuecomment-2108793894) at 2024-05-13 02:01 PM PDT -gaylem,2024-05-14T23:03:28Z,- gaylem commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2111302403) at 2024-05-14 04:03 PM PDT -gaylem,2024-05-31T19:49:30Z,- gaylem closed issue by PR 6913: [6735](https://github.com/hackforla/website/issues/6735#event-13005179468) at 2024-05-31 12:49 PM PDT -gaylem,2024-05-31T19:50:11Z,- gaylem closed issue by PR 6900: [6731](https://github.com/hackforla/website/issues/6731#event-13005187238) at 2024-05-31 12:50 PM PDT -gdkoo,6034,SKILLS ISSUE -gdkoo,2024-01-03T03:48:42Z,- gdkoo opened issue: [6034](https://github.com/hackforla/website/issues/6034) at 2024-01-02 07:48 PM PST -gdkoo,2024-01-03T03:48:42Z,- gdkoo assigned to issue: [6034](https://github.com/hackforla/website/issues/6034) at 2024-01-02 07:48 PM PST -gdkoo,2024-03-06T01:52:46Z,- gdkoo reopened issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1979315506) at 2024-03-05 05:52 PM PST -gdkoo,2024-03-06T01:53:20Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1979936862) at 2024-03-05 05:53 PM PST -gdkoo,2024-03-18T02:35:07Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2002768944) at 2024-03-17 07:35 PM PDT -gdkoo,2024-03-21T06:10:52Z,- gdkoo assigned to issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007914581) at 2024-03-20 11:10 PM PDT -gdkoo,2024-03-22T03:51:11Z,- gdkoo commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2014305326) at 2024-03-21 08:51 PM PDT -gdkoo,2024-03-22T07:11:07Z,- gdkoo opened pull request: [6505](https://github.com/hackforla/website/pull/6505) at 2024-03-22 12:11 AM PDT -gdkoo,2024-03-22T07:17:44Z,- gdkoo commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2014491883) at 2024-03-22 12:17 AM PDT -gdkoo,2024-03-22T07:19:44Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2014494067) at 2024-03-22 12:19 AM PDT -gdkoo,2024-03-24T21:36:16Z,- gdkoo pull request merged: [6505](https://github.com/hackforla/website/pull/6505#event-12227638706) at 2024-03-24 02:36 PM PDT -gdkoo,2024-03-25T03:10:48Z,- gdkoo commented on pull request: [6505](https://github.com/hackforla/website/pull/6505#issuecomment-2017132269) at 2024-03-24 08:10 PM PDT -gdkoo,2024-03-25T03:16:03Z,- gdkoo assigned to issue: [6509](https://github.com/hackforla/website/issues/6509#issuecomment-2016720549) at 2024-03-24 08:16 PM PDT -gdkoo,2024-03-25T03:19:33Z,- gdkoo commented on issue: [6509](https://github.com/hackforla/website/issues/6509#issuecomment-2017138280) at 2024-03-24 08:19 PM PDT -gdkoo,2024-03-25T03:56:04Z,- gdkoo opened pull request: [6518](https://github.com/hackforla/website/pull/6518) at 2024-03-24 08:56 PM PDT -gdkoo,2024-03-28T18:32:21Z,- gdkoo pull request merged: [6518](https://github.com/hackforla/website/pull/6518#event-12285877731) at 2024-03-28 11:32 AM PDT -gdkoo,2024-03-29T03:48:09Z,- gdkoo closed issue as completed: [6466](https://github.com/hackforla/website/issues/6466#event-12290680130) at 2024-03-28 08:48 PM PDT -gdkoo,2024-03-29T03:48:46Z,- gdkoo reopened issue: [6466](https://github.com/hackforla/website/issues/6466#event-12290680130) at 2024-03-28 08:48 PM PDT -gdkoo,2024-03-29T03:50:27Z,- gdkoo commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2026591735) at 2024-03-28 08:50 PM PDT -gdkoo,2024-03-29T04:03:44Z,- gdkoo assigned to issue: [6450](https://github.com/hackforla/website/issues/6450#issuecomment-2009725259) at 2024-03-28 09:03 PM PDT -gdkoo,2024-03-29T04:05:58Z,- gdkoo commented on issue: [6450](https://github.com/hackforla/website/issues/6450#issuecomment-2026615083) at 2024-03-28 09:05 PM PDT -gdkoo,2024-03-29T04:27:40Z,- gdkoo opened pull request: [6547](https://github.com/hackforla/website/pull/6547) at 2024-03-28 09:27 PM PDT -gdkoo,2024-03-29T04:32:07Z,- gdkoo closed issue as completed: [6034](https://github.com/hackforla/website/issues/6034#event-12290961850) at 2024-03-28 09:32 PM PDT -gdkoo,2024-03-30T11:28:45Z,- gdkoo pull request merged: [6547](https://github.com/hackforla/website/pull/6547#event-12300410464) at 2024-03-30 04:28 AM PDT -gdkoo,2024-04-09T02:56:20Z,- gdkoo assigned to issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2041559199) at 2024-04-08 07:56 PM PDT -gdkoo,2024-04-09T02:58:21Z,- gdkoo commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2044065412) at 2024-04-08 07:58 PM PDT -gdkoo,2024-04-12T06:30:28Z,- gdkoo commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2051077099) at 2024-04-11 11:30 PM PDT -gdkoo,2024-04-21T13:36:02Z,- gdkoo commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2068046313) at 2024-04-21 06:36 AM PDT -gdkoo,2024-04-26T05:21:37Z,- gdkoo opened pull request: [6766](https://github.com/hackforla/website/pull/6766) at 2024-04-25 10:21 PM PDT -gdkoo,2024-04-29T05:20:05Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2081907546) at 2024-04-28 10:20 PM PDT -gdkoo,2024-04-29T05:31:27Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2081917563) at 2024-04-28 10:31 PM PDT -gdkoo,2024-04-30T13:34:06Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2085350690) at 2024-04-30 06:34 AM PDT -gdkoo,2024-05-09T04:05:51Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2101895145) at 2024-05-08 09:05 PM PDT -gdkoo,2024-05-16T03:33:44Z,- gdkoo commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2113963120) at 2024-05-15 08:33 PM PDT -gdkoo,2024-06-19T07:37:47Z,- gdkoo pull request merged: [6766](https://github.com/hackforla/website/pull/6766#event-13211615291) at 2024-06-19 12:37 AM PDT -gdkoo,2024-08-15T03:51:19Z,- gdkoo assigned to issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2270010275) at 2024-08-14 08:51 PM PDT -gdkoo,2024-08-15T03:53:14Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2290517908) at 2024-08-14 08:53 PM PDT -gdkoo,2024-08-15T04:16:01Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2290539686) at 2024-08-14 09:16 PM PDT -gdkoo,2024-08-30T08:22:22Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2320464217) at 2024-08-30 01:22 AM PDT -gdkoo,2024-09-18T03:57:35Z,- gdkoo commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2357443235) at 2024-09-17 08:57 PM PDT -gdkoo,2024-09-18T04:04:37Z,- gdkoo commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2357449790) at 2024-09-17 09:04 PM PDT -gdkoo,2024-09-18T04:05:45Z,- gdkoo unassigned from issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2357449790) at 2024-09-17 09:05 PM PDT -ge-andrew,5360,SKILLS ISSUE -ge-andrew,2023-08-30T04:07:15Z,- ge-andrew opened issue: [5360](https://github.com/hackforla/website/issues/5360) at 2023-08-29 09:07 PM PDT -ge-andrew,2023-08-30T04:07:16Z,- ge-andrew assigned to issue: [5360](https://github.com/hackforla/website/issues/5360) at 2023-08-29 09:07 PM PDT -ge-andrew,2023-08-31T03:13:35Z,- ge-andrew assigned to issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1698560854) at 2023-08-30 08:13 PM PDT -ge-andrew,2023-09-01T18:58:17Z,- ge-andrew commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1703198802) at 2023-09-01 11:58 AM PDT -ge-andrew,2023-10-16T17:12:03Z,- ge-andrew unassigned from issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1761018592) at 2023-10-16 10:12 AM PDT -geedtd,3123,SKILLS ISSUE -geedtd,2022-05-11T03:21:37Z,- geedtd opened issue: [3123](https://github.com/hackforla/website/issues/3123) at 2022-05-10 08:21 PM PDT -geedtd,2022-05-19T00:37:32Z,- geedtd assigned to issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1126974285) at 2022-05-18 05:37 PM PDT -geedtd,2022-05-19T00:47:16Z,- geedtd assigned to issue: [2796](https://github.com/hackforla/website/issues/2796#issuecomment-1045528515) at 2022-05-18 05:47 PM PDT -geedtd,2022-05-19T00:55:11Z,- geedtd commented on issue: [2796](https://github.com/hackforla/website/issues/2796#issuecomment-1130881272) at 2022-05-18 05:55 PM PDT -geedtd,2022-05-19T00:57:20Z,- geedtd commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1130884337) at 2022-05-18 05:57 PM PDT -geedtd,2022-05-19T03:36:04Z,- geedtd opened pull request: [3159](https://github.com/hackforla/website/pull/3159) at 2022-05-18 08:36 PM PDT -geedtd,2022-05-19T03:48:07Z,- geedtd commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1131170304) at 2022-05-18 08:48 PM PDT -geedtd,2022-05-19T19:37:18Z,- geedtd commented on pull request: [3159](https://github.com/hackforla/website/pull/3159#issuecomment-1132124651) at 2022-05-19 12:37 PM PDT -geedtd,2022-05-20T16:05:33Z,- geedtd pull request merged: [3159](https://github.com/hackforla/website/pull/3159#event-6651908256) at 2022-05-20 09:05 AM PDT -geedtd,2022-05-20T19:07:33Z,- geedtd assigned to issue: [3105](https://github.com/hackforla/website/issues/3105#issuecomment-1116858255) at 2022-05-20 12:07 PM PDT -geedtd,2022-05-20T23:45:50Z,- geedtd opened pull request: [3163](https://github.com/hackforla/website/pull/3163) at 2022-05-20 04:45 PM PDT -geedtd,2022-05-20T23:51:04Z,- geedtd closed issue as completed: [3123](https://github.com/hackforla/website/issues/3123#event-6654087758) at 2022-05-20 04:51 PM PDT -geedtd,2022-05-21T00:49:17Z,- geedtd commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133486461) at 2022-05-20 05:49 PM PDT -geedtd,2022-05-21T15:10:36Z,- geedtd pull request merged: [3163](https://github.com/hackforla/website/pull/3163#event-6655046261) at 2022-05-21 08:10 AM PDT -geedtd,2022-05-24T07:11:54Z,- geedtd assigned to issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1120444851) at 2022-05-24 12:11 AM PDT -geedtd,2022-07-25T21:40:54Z,- geedtd unassigned from issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1194666034) at 2022-07-25 02:40 PM PDT -geedtd,2022-08-11T09:47:46Z,- geedtd unassigned from issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194669406) at 2022-08-11 02:47 AM PDT -geedtd,2022-08-15T20:33:00Z,- geedtd assigned to issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-907766739) at 2022-08-15 01:33 PM PDT -geedtd,2022-08-17T21:07:28Z,- geedtd commented on issue: [2200](https://github.com/hackforla/website/issues/2200#issuecomment-1218491333) at 2022-08-17 02:07 PM PDT -geedtd,2022-08-22T06:39:33Z,- geedtd opened pull request: [3480](https://github.com/hackforla/website/pull/3480) at 2022-08-21 11:39 PM PDT -geedtd,2022-08-24T00:43:21Z,- geedtd pull request merged: [3480](https://github.com/hackforla/website/pull/3480#event-7246418609) at 2022-08-23 05:43 PM PDT -geedtd,2022-09-16T00:22:56Z,- geedtd assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1178645901) at 2022-09-15 05:22 PM PDT -geedtd,2022-09-16T00:25:10Z,- geedtd commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1248781511) at 2022-09-15 05:25 PM PDT -geedtd,2022-11-03T20:53:09Z,- geedtd unassigned from issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1302649451) at 2022-11-03 01:53 PM PDT -geedtd,2022-11-06T19:15:21Z,- geedtd unassigned from issue: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-11-06 11:15 AM PST -geedtd,2022-11-06T19:30:28Z,- geedtd assigned to issue: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-11-06 11:30 AM PST -geedtd,2023-03-19T18:15:17Z,- geedtd assigned to issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194669406) at 2023-03-19 11:15 AM PDT -Georgema20,2559,SKILLS ISSUE -Georgema20,2021-12-08T03:58:55Z,- Georgema20 assigned to issue: [2559](https://github.com/hackforla/website/issues/2559) at 2021-12-07 07:58 PM PST -Georgema20,2021-12-12T16:06:09Z,- Georgema20 assigned to issue: [2348](https://github.com/hackforla/website/issues/2348#issuecomment-938228116) at 2021-12-12 08:06 AM PST -Georgema20,2021-12-12T23:04:54Z,- Georgema20 opened pull request: [2582](https://github.com/hackforla/website/pull/2582) at 2021-12-12 03:04 PM PST -Georgema20,2021-12-12T23:20:49Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-991991000) at 2021-12-12 03:20 PM PST -Georgema20,2021-12-13T00:45:57Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-992009957) at 2021-12-12 04:45 PM PST -Georgema20,2021-12-13T00:57:05Z,- Georgema20 assigned to issue: [2087](https://github.com/hackforla/website/issues/2087) at 2021-12-12 04:57 PM PST -Georgema20,2021-12-13T16:14:54Z,- Georgema20 commented on pull request: [2582](https://github.com/hackforla/website/pull/2582#issuecomment-992636392) at 2021-12-13 08:14 AM PST -Georgema20,2021-12-13T17:20:52Z,- Georgema20 opened pull request: [2584](https://github.com/hackforla/website/pull/2584) at 2021-12-13 09:20 AM PST -Georgema20,2021-12-13T19:54:13Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-992827312) at 2021-12-13 11:54 AM PST -Georgema20,2021-12-14T01:53:45Z,- Georgema20 pull request merged: [2582](https://github.com/hackforla/website/pull/2582#event-5760937845) at 2021-12-13 05:53 PM PST -Georgema20,2021-12-14T04:08:57Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-993138647) at 2021-12-13 08:08 PM PST -Georgema20,2021-12-16T17:58:53Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996050046) at 2021-12-16 09:58 AM PST -Georgema20,2021-12-16T20:42:08Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996179156) at 2021-12-16 12:42 PM PST -Georgema20,2021-12-17T02:35:00Z,- Georgema20 commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-996387158) at 2021-12-16 06:35 PM PST -Georgema20,2021-12-17T02:37:55Z,- Georgema20 closed issue as completed: [2559](https://github.com/hackforla/website/issues/2559#event-5782087807) at 2021-12-16 06:37 PM PST -Georgema20,2021-12-17T18:12:45Z,- Georgema20 pull request merged: [2584](https://github.com/hackforla/website/pull/2584#event-5786162524) at 2021-12-17 10:12 AM PST -Georgema20,2021-12-22T19:35:52Z,- Georgema20 assigned to issue: [2544](https://github.com/hackforla/website/issues/2544#issuecomment-989575961) at 2021-12-22 11:35 AM PST -Georgema20,2021-12-22T20:28:10Z,- Georgema20 opened pull request: [2620](https://github.com/hackforla/website/pull/2620) at 2021-12-22 12:28 PM PST -Georgema20,2021-12-24T21:53:35Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000937588) at 2021-12-24 01:53 PM PST -Georgema20,2021-12-24T22:28:09Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000941319) at 2021-12-24 02:28 PM PST -Georgema20,2021-12-24T22:30:02Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000941467) at 2021-12-24 02:30 PM PST -Georgema20,2021-12-24T22:49:57Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000943060) at 2021-12-24 02:49 PM PST -Georgema20,2021-12-25T02:23:27Z,- Georgema20 commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-1000960597) at 2021-12-24 06:23 PM PST -Georgema20,2021-12-27T06:27:35Z,- Georgema20 pull request merged: [2620](https://github.com/hackforla/website/pull/2620#event-5816672769) at 2021-12-26 10:27 PM PST -Georgema20,2021-12-28T15:57:18Z,- Georgema20 assigned to issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-997490870) at 2021-12-28 07:57 AM PST -Georgema20,2021-12-28T16:53:11Z,- Georgema20 opened pull request: [2640](https://github.com/hackforla/website/pull/2640) at 2021-12-28 08:53 AM PST -Georgema20,2021-12-29T21:06:11Z,- Georgema20 commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1002776157) at 2021-12-29 01:06 PM PST -Georgema20,2021-12-29T21:08:16Z,- Georgema20 commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1002776760) at 2021-12-29 01:08 PM PST -Georgema20,2021-12-30T15:20:50Z,- Georgema20 commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1003073608) at 2021-12-30 07:20 AM PST -Georgema20,2021-12-31T00:45:12Z,- Georgema20 commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1003225274) at 2021-12-30 04:45 PM PST -Georgema20,2021-12-31T02:09:31Z,- Georgema20 commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1003240687) at 2021-12-30 06:09 PM PST -Georgema20,2022-01-01T19:38:02Z,- Georgema20 submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-842356148) at 2022-01-01 11:38 AM PST -Georgema20,2022-01-01T19:38:17Z,- Georgema20 commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1003607123) at 2022-01-01 11:38 AM PST -Georgema20,2022-01-01T19:39:23Z,- Georgema20 submitted pull request review: [2611](https://github.com/hackforla/website/pull/2611#pullrequestreview-842356199) at 2022-01-01 11:39 AM PST -Georgema20,2022-01-01T19:39:28Z,- Georgema20 commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003607241) at 2022-01-01 11:39 AM PST -Georgema20,2022-01-01T23:46:30Z,- Georgema20 pull request closed w/o merging: [2640](https://github.com/hackforla/website/pull/2640#event-5832150541) at 2022-01-01 03:46 PM PST -Georgema20,2022-01-01T23:53:03Z,- Georgema20 unassigned from issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-01 03:53 PM PST -Georgema20,2022-01-04T15:47:58Z,- Georgema20 assigned to issue: [2598](https://github.com/hackforla/website/issues/2598#issuecomment-997095473) at 2022-01-04 07:47 AM PST -Georgema20,2022-01-07T03:45:21Z,- Georgema20 opened pull request: [2665](https://github.com/hackforla/website/pull/2665) at 2022-01-06 07:45 PM PST -Georgema20,2022-01-11T23:01:17Z,- Georgema20 commented on pull request: [2665](https://github.com/hackforla/website/pull/2665#issuecomment-1010443344) at 2022-01-11 03:01 PM PST -Georgema20,2022-01-20T01:08:30Z,- Georgema20 commented on pull request: [2665](https://github.com/hackforla/website/pull/2665#issuecomment-1017017775) at 2022-01-19 05:08 PM PST -Georgema20,2022-01-20T18:30:20Z,- Georgema20 pull request merged: [2665](https://github.com/hackforla/website/pull/2665#event-5927247618) at 2022-01-20 10:30 AM PST -Georgema20,2022-01-21T03:09:41Z,- Georgema20 assigned to issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-20 07:09 PM PST -Georgema20,2022-01-21T03:09:45Z,- Georgema20 unassigned from issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-20 07:09 PM PST -Georgema20,2022-01-21T03:31:15Z,- Georgema20 assigned to issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-20 07:31 PM PST -Georgema20,2022-01-21T03:34:11Z,- Georgema20 opened pull request: [2710](https://github.com/hackforla/website/pull/2710) at 2022-01-20 07:34 PM PST -Georgema20,2022-01-21T03:42:30Z,- Georgema20 submitted pull request review: [2696](https://github.com/hackforla/website/pull/2696#pullrequestreview-859081217) at 2022-01-20 07:42 PM PST -Georgema20,2022-01-21T18:57:10Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1018776842) at 2022-01-21 10:57 AM PST -Georgema20,2022-01-21T18:58:02Z,- Georgema20 closed issue as completed: [2559](https://github.com/hackforla/website/issues/2559#event-5934126770) at 2022-01-21 10:58 AM PST -Georgema20,2022-01-23T00:21:45Z,- Georgema20 commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1019382859) at 2022-01-22 04:21 PM PST -Georgema20,2022-01-26T19:59:23Z,- Georgema20 commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1022552907) at 2022-01-26 11:59 AM PST -Georgema20,2022-01-26T19:59:51Z,- Georgema20 commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1022553226) at 2022-01-26 11:59 AM PST -Georgema20,2022-01-26T20:49:55Z,- Georgema20 commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1022590352) at 2022-01-26 12:49 PM PST -Georgema20,2022-01-26T21:02:02Z,- Georgema20 commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1022598849) at 2022-01-26 01:02 PM PST -Georgema20,2022-01-29T09:01:59Z,- Georgema20 pull request merged: [2710](https://github.com/hackforla/website/pull/2710#event-5974796380) at 2022-01-29 01:01 AM PST -Georgema20,2022-02-02T21:41:08Z,- Georgema20 assigned to issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1024815778) at 2022-02-02 01:41 PM PST -Georgema20,2022-03-05T08:19:56Z,- Georgema20 unassigned from issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1059719546) at 2022-03-05 12:19 AM PST -GeorgeSu,2019-12-04T04:08:05Z,- GeorgeSu commented on issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-561467691) at 2019-12-03 08:08 PM PST -GeorgeSu,2019-12-04T04:24:34Z,- GeorgeSu opened pull request: [211](https://github.com/hackforla/website/pull/211) at 2019-12-03 08:24 PM PST -GeorgeSu,2019-12-04T04:35:04Z,- GeorgeSu opened pull request: [212](https://github.com/hackforla/website/pull/212) at 2019-12-03 08:35 PM PST -GeorgeSu,2019-12-04T21:39:31Z,- GeorgeSu pull request merged: [212](https://github.com/hackforla/website/pull/212#event-2855634142) at 2019-12-04 01:39 PM PST -GeorgeSu,2019-12-04T21:50:13Z,- GeorgeSu assigned to issue: [205](https://github.com/hackforla/website/issues/205#event-2855634203) at 2019-12-04 01:50 PM PST -GeorgeSu,2019-12-11T03:22:05Z,- GeorgeSu pull request merged: [211](https://github.com/hackforla/website/pull/211#event-2872808609) at 2019-12-10 07:22 PM PST -GeorgeSu,2019-12-24T23:17:26Z,- GeorgeSu unassigned from issue: [205](https://github.com/hackforla/website/issues/205#issuecomment-561855115) at 2019-12-24 03:17 PM PST -ggrrettcchhenn,2021-01-18T23:33:08Z,- ggrrettcchhenn commented on issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762513526) at 2021-01-18 03:33 PM PST -ggrrettcchhenn,2021-02-26T00:40:21Z,- ggrrettcchhenn commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-786327914) at 2021-02-25 04:40 PM PST -ggrrettcchhenn,2021-03-18T03:59:49Z,- ggrrettcchhenn opened issue: [1249](https://github.com/hackforla/website/issues/1249) at 2021-03-17 08:59 PM PDT -ggrrettcchhenn,2021-03-18T19:41:13Z,- ggrrettcchhenn assigned to issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-802225984) at 2021-03-18 12:41 PM PDT -ggrrettcchhenn,2021-04-06T04:40:53Z,- ggrrettcchhenn commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-813815899) at 2021-04-05 09:40 PM PDT -ggrrettcchhenn,2021-04-06T17:33:48Z,- ggrrettcchhenn commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-814302412) at 2021-04-06 10:33 AM PDT -ggrrettcchhenn,2021-05-18T03:37:07Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-842800413) at 2021-05-17 08:37 PM PDT -ggrrettcchhenn,2021-05-25T16:16:40Z,- ggrrettcchhenn opened issue: [1629](https://github.com/hackforla/website/issues/1629) at 2021-05-25 09:16 AM PDT -ggrrettcchhenn,2021-05-25T16:25:45Z,- ggrrettcchhenn commented on issue: [1629](https://github.com/hackforla/website/issues/1629#issuecomment-848023478) at 2021-05-25 09:25 AM PDT -ggrrettcchhenn,2021-06-11T17:10:42Z,- ggrrettcchhenn commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859723531) at 2021-06-11 10:10 AM PDT -ggrrettcchhenn,2021-06-11T17:10:42Z,- ggrrettcchhenn commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859723531) at 2021-06-11 10:10 AM PDT -ggrrettcchhenn,2021-06-13T19:23:22Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860258322) at 2021-06-13 12:23 PM PDT -ggrrettcchhenn,2021-06-13T19:46:27Z,- ggrrettcchhenn assigned to issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860258322) at 2021-06-13 12:46 PM PDT -ggrrettcchhenn,2021-06-16T01:52:10Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-861948132) at 2021-06-15 06:52 PM PDT -ggrrettcchhenn,2021-06-18T17:36:01Z,- ggrrettcchhenn commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-864184487) at 2021-06-18 10:36 AM PDT -GinaCastromonte,6340,SKILLS ISSUE -GinaCastromonte,2024-02-21T03:42:37Z,- GinaCastromonte opened issue: [6340](https://github.com/hackforla/website/issues/6340) at 2024-02-20 07:42 PM PST -GinaCastromonte,2024-02-21T04:11:22Z,- GinaCastromonte assigned to issue: [6340](https://github.com/hackforla/website/issues/6340) at 2024-02-20 08:11 PM PST -GioMogi,6343,SKILLS ISSUE -GioMogi,2024-02-21T03:49:06Z,- GioMogi opened issue: [6343](https://github.com/hackforla/website/issues/6343) at 2024-02-20 07:49 PM PST -GioMogi,2024-02-21T03:49:11Z,- GioMogi assigned to issue: [6343](https://github.com/hackforla/website/issues/6343) at 2024-02-20 07:49 PM PST -giroz,3459,SKILLS ISSUE -giroz,2022-08-10T03:35:13Z,- giroz opened issue: [3459](https://github.com/hackforla/website/issues/3459) at 2022-08-09 08:35 PM PDT -giroz,2022-08-12T02:35:51Z,- giroz assigned to issue: [2821](https://github.com/hackforla/website/issues/2821#issuecomment-1046372753) at 2022-08-11 07:35 PM PDT -giroz,2022-08-13T05:17:55Z,- giroz commented on issue: [2821](https://github.com/hackforla/website/issues/2821#issuecomment-1213719284) at 2022-08-12 10:17 PM PDT -giroz,2022-08-14T22:32:48Z,- giroz assigned to issue: [3459](https://github.com/hackforla/website/issues/3459#issuecomment-1210112001) at 2022-08-14 03:32 PM PDT -giroz,2022-08-19T03:57:42Z,- giroz opened pull request: [3475](https://github.com/hackforla/website/pull/3475) at 2022-08-18 08:57 PM PDT -giroz,2022-08-19T21:07:44Z,- giroz pull request merged: [3475](https://github.com/hackforla/website/pull/3475#event-7225039802) at 2022-08-19 02:07 PM PDT -giroz,2022-08-26T03:26:02Z,- giroz commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1228009904) at 2022-08-25 08:26 PM PDT -giroz,2022-08-29T00:27:59Z,- giroz commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1229598402) at 2022-08-28 05:27 PM PDT -giroz,2022-09-02T00:37:34Z,- giroz commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1234942863) at 2022-09-01 05:37 PM PDT -giroz,2022-09-04T18:18:37Z,- giroz submitted pull request review: [3515](https://github.com/hackforla/website/pull/3515#pullrequestreview-1095699926) at 2022-09-04 11:18 AM PDT -giroz,2022-09-04T18:25:18Z,- giroz commented on pull request: [3518](https://github.com/hackforla/website/pull/3518#issuecomment-1236391900) at 2022-09-04 11:25 AM PDT -giroz,2022-09-04T18:46:21Z,- giroz submitted pull request review: [3518](https://github.com/hackforla/website/pull/3518#pullrequestreview-1095702333) at 2022-09-04 11:46 AM PDT -giroz,2022-09-08T09:02:26Z,- giroz commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1240434926) at 2022-09-08 02:02 AM PDT -giroz,2022-09-08T09:50:01Z,- giroz submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1100430779) at 2022-09-08 02:50 AM PDT -giroz,2022-09-14T01:24:48Z,- giroz commented on pull request: [3551](https://github.com/hackforla/website/pull/3551#issuecomment-1246116191) at 2022-09-13 06:24 PM PDT -giroz,2022-09-16T17:06:17Z,- giroz submitted pull request review: [3551](https://github.com/hackforla/website/pull/3551#pullrequestreview-1110981598) at 2022-09-16 10:06 AM PDT -giroz,2022-09-18T01:25:50Z,- giroz commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1250170466) at 2022-09-17 06:25 PM PDT -giroz,2022-09-18T02:06:23Z,- giroz submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1111483501) at 2022-09-17 07:06 PM PDT -giroz,2022-09-21T02:28:29Z,- giroz commented on pull request: [3568](https://github.com/hackforla/website/pull/3568#issuecomment-1253128842) at 2022-09-20 07:28 PM PDT -giroz,2022-09-21T03:15:06Z,- giroz submitted pull request review: [3568](https://github.com/hackforla/website/pull/3568#pullrequestreview-1114704014) at 2022-09-20 08:15 PM PDT -giroz,2022-09-25T05:46:32Z,- giroz commented on pull request: [3579](https://github.com/hackforla/website/pull/3579#issuecomment-1257126306) at 2022-09-24 10:46 PM PDT -giroz,2022-09-25T21:34:54Z,- giroz submitted pull request review: [3579](https://github.com/hackforla/website/pull/3579#pullrequestreview-1119457553) at 2022-09-25 02:34 PM PDT -giroz,2022-09-30T02:39:07Z,- giroz commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1263036009) at 2022-09-29 07:39 PM PDT -giroz,2022-09-30T15:26:43Z,- giroz submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1127000392) at 2022-09-30 08:26 AM PDT -giroz,2022-10-12T19:47:35Z,- giroz commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276658818) at 2022-10-12 12:47 PM PDT -giroz,2022-10-14T06:50:34Z,- giroz submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1141902446) at 2022-10-13 11:50 PM PDT -giroz,2022-10-16T17:20:08Z,- giroz commented on pull request: [3623](https://github.com/hackforla/website/pull/3623#issuecomment-1280013563) at 2022-10-16 10:20 AM PDT -giroz,2022-10-16T17:21:42Z,- giroz commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1280013842) at 2022-10-16 10:21 AM PDT -giroz,2022-10-17T00:07:55Z,- giroz submitted pull request review: [3623](https://github.com/hackforla/website/pull/3623#pullrequestreview-1143386046) at 2022-10-16 05:07 PM PDT -giroz,2022-10-26T02:32:27Z,- giroz commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1291414298) at 2022-10-25 07:32 PM PDT -giroz,2022-10-27T01:08:10Z,- giroz submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1157465981) at 2022-10-26 06:08 PM PDT -giroz,2022-10-27T01:27:33Z,- giroz submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1157476743) at 2022-10-26 06:27 PM PDT -giroz,2022-10-29T18:02:12Z,- giroz submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1161023527) at 2022-10-29 11:02 AM PDT -giroz,2022-10-30T17:20:01Z,- giroz commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1296307054) at 2022-10-30 10:20 AM PDT -giroz,2022-10-30T17:20:46Z,- giroz commented on pull request: [3676](https://github.com/hackforla/website/pull/3676#issuecomment-1296307236) at 2022-10-30 10:20 AM PDT -giroz,2022-10-31T04:40:44Z,- giroz submitted pull request review: [3676](https://github.com/hackforla/website/pull/3676#pullrequestreview-1161318776) at 2022-10-30 09:40 PM PDT -giroz,2022-10-31T05:06:44Z,- giroz submitted pull request review: [3675](https://github.com/hackforla/website/pull/3675#pullrequestreview-1161331324) at 2022-10-30 10:06 PM PDT -giroz,2022-11-18T01:15:57Z,- giroz commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319425892) at 2022-11-17 05:15 PM PST -giroz,2022-11-19T00:07:00Z,- giroz submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186959088) at 2022-11-18 04:07 PM PST -giroz,2022-11-20T18:21:49Z,- giroz commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321206797) at 2022-11-20 10:21 AM PST -giroz,2022-11-23T01:34:55Z,- giroz submitted pull request review: [3733](https://github.com/hackforla/website/pull/3733#pullrequestreview-1190955153) at 2022-11-22 05:34 PM PST -githelsui,7968,SKILLS ISSUE -githelsui,2025-03-04T03:59:32Z,- githelsui opened issue: [7968](https://github.com/hackforla/website/issues/7968) at 2025-03-03 07:59 PM PST -githelsui,2025-03-04T04:00:18Z,- githelsui assigned to issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2696131209) at 2025-03-03 08:00 PM PST -githelsui,2025-03-04T04:12:09Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2696143694) at 2025-03-03 08:12 PM PST -githelsui,2025-03-12T02:20:35Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2716222393) at 2025-03-11 07:20 PM PDT -githelsui,2025-03-16T05:23:06Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2727202605) at 2025-03-15 10:23 PM PDT -githelsui,2025-03-16T05:24:39Z,- githelsui assigned to issue: [7939](https://github.com/hackforla/website/issues/7939) at 2025-03-15 10:24 PM PDT -githelsui,2025-03-16T05:28:23Z,- githelsui commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2727204177) at 2025-03-15 10:28 PM PDT -githelsui,2025-03-16T05:29:15Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2727204760) at 2025-03-15 10:29 PM PDT -githelsui,2025-04-06T02:54:39Z,- githelsui opened pull request: [8047](https://github.com/hackforla/website/pull/8047) at 2025-04-05 07:54 PM PDT -githelsui,2025-04-06T02:56:15Z,- githelsui commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2781190209) at 2025-04-05 07:56 PM PDT -githelsui,2025-04-13T03:24:44Z,- githelsui pull request closed w/o merging: [8047](https://github.com/hackforla/website/pull/8047#event-17237023250) at 2025-04-12 08:24 PM PDT -githelsui,2025-04-13T03:31:20Z,- githelsui opened pull request: [8062](https://github.com/hackforla/website/pull/8062) at 2025-04-12 08:31 PM PDT -githelsui,2025-04-13T03:33:17Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2799574148) at 2025-04-12 08:33 PM PDT -githelsui,2025-04-16T14:51:09Z,- githelsui pull request merged: [8062](https://github.com/hackforla/website/pull/8062#event-17290796859) at 2025-04-16 07:51 AM PDT -githelsui,2025-04-27T03:34:58Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2832940881) at 2025-04-26 08:34 PM PDT -githelsui,2025-04-27T03:34:58Z,- githelsui closed issue as completed: [7968](https://github.com/hackforla/website/issues/7968#event-17420699623) at 2025-04-26 08:34 PM PDT -githelsui,2025-05-06T20:46:21Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2855933292) at 2025-05-06 01:46 PM PDT -githelsui,2025-05-06T20:48:49Z,- githelsui commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2855938592) at 2025-05-06 01:48 PM PDT -github-actions,2021-07-18T05:54:41Z,- github-actions commented on pull request: [1966](https://github.com/hackforla/website/pull/1966#issuecomment-882003616) at 2021-07-17 10:54 PM PDT -github-actions,2021-07-18T17:16:19Z,- github-actions commented on pull request: [1967](https://github.com/hackforla/website/pull/1967#issuecomment-882089546) at 2021-07-18 10:16 AM PDT -github-actions,2021-07-19T12:58:36Z,- github-actions commented on pull request: [1971](https://github.com/hackforla/website/pull/1971#issuecomment-882525393) at 2021-07-19 05:58 AM PDT -github-actions,2021-07-19T18:38:23Z,- github-actions commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-882771162) at 2021-07-19 11:38 AM PDT -github-actions,2021-07-20T04:05:20Z,- github-actions commented on pull request: [1986](https://github.com/hackforla/website/pull/1986#issuecomment-883034489) at 2021-07-19 09:05 PM PDT -github-actions,2021-07-20T23:52:07Z,- github-actions commented on pull request: [1990](https://github.com/hackforla/website/pull/1990#issuecomment-883778596) at 2021-07-20 04:52 PM PDT -github-actions,2021-07-21T04:42:35Z,- github-actions commented on pull request: [1991](https://github.com/hackforla/website/pull/1991#issuecomment-883883062) at 2021-07-20 09:42 PM PDT -github-actions,2021-07-22T19:58:50Z,- github-actions commented on pull request: [1999](https://github.com/hackforla/website/pull/1999#issuecomment-885193597) at 2021-07-22 12:58 PM PDT -github-actions,2021-07-23T01:57:42Z,- github-actions commented on pull request: [2001](https://github.com/hackforla/website/pull/2001#issuecomment-885348162) at 2021-07-22 06:57 PM PDT -github-actions,2021-07-23T02:48:46Z,- github-actions commented on pull request: [2002](https://github.com/hackforla/website/pull/2002#issuecomment-885362561) at 2021-07-22 07:48 PM PDT -github-actions,2021-07-23T03:43:53Z,- github-actions commented on pull request: [2003](https://github.com/hackforla/website/pull/2003#issuecomment-885378024) at 2021-07-22 08:43 PM PDT -github-actions,2021-07-23T05:43:20Z,- github-actions commented on pull request: [2004](https://github.com/hackforla/website/pull/2004#issuecomment-885413651) at 2021-07-22 10:43 PM PDT -github-actions,2021-07-24T04:23:50Z,- github-actions commented on pull request: [2005](https://github.com/hackforla/website/pull/2005#issuecomment-885997449) at 2021-07-23 09:23 PM PDT -github-actions,2021-07-24T16:34:05Z,- github-actions commented on pull request: [2006](https://github.com/hackforla/website/pull/2006#issuecomment-886077014) at 2021-07-24 09:34 AM PDT -github-actions,2021-07-26T17:55:02Z,- github-actions commented on pull request: [2011](https://github.com/hackforla/website/pull/2011#issuecomment-886907045) at 2021-07-26 10:55 AM PDT -github-actions,2021-07-27T01:13:50Z,- github-actions commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-887134177) at 2021-07-26 06:13 PM PDT -github-actions,2021-07-30T22:45:52Z,- github-actions commented on pull request: [2022](https://github.com/hackforla/website/pull/2022#issuecomment-890224208) at 2021-07-30 03:45 PM PDT -github-actions,2021-07-31T02:24:50Z,- github-actions commented on pull request: [2024](https://github.com/hackforla/website/pull/2024#issuecomment-890278511) at 2021-07-30 07:24 PM PDT -github-actions,2021-08-01T04:11:37Z,- github-actions commented on pull request: [2028](https://github.com/hackforla/website/pull/2028#issuecomment-890445667) at 2021-07-31 09:11 PM PDT -github-actions,2021-08-01T21:35:18Z,- github-actions commented on pull request: [2030](https://github.com/hackforla/website/pull/2030#issuecomment-890590522) at 2021-08-01 02:35 PM PDT -github-actions,2021-08-01T22:29:54Z,- github-actions commented on pull request: [2031](https://github.com/hackforla/website/pull/2031#issuecomment-890597307) at 2021-08-01 03:29 PM PDT -github-actions,2021-08-02T18:58:19Z,- github-actions commented on pull request: [2036](https://github.com/hackforla/website/pull/2036#issuecomment-891256807) at 2021-08-02 11:58 AM PDT -github-actions,2021-08-03T08:15:33Z,- github-actions commented on pull request: [2038](https://github.com/hackforla/website/pull/2038#issuecomment-891637478) at 2021-08-03 01:15 AM PDT -github-actions,2021-08-03T15:31:57Z,- github-actions commented on pull request: [2039](https://github.com/hackforla/website/pull/2039#issuecomment-891945528) at 2021-08-03 08:31 AM PDT -github-actions,2021-08-04T01:39:02Z,- github-actions commented on pull request: [2059](https://github.com/hackforla/website/pull/2059#issuecomment-892291302) at 2021-08-03 06:39 PM PDT -github-actions,2021-08-04T02:05:15Z,- github-actions commented on pull request: [2060](https://github.com/hackforla/website/pull/2060#issuecomment-892301128) at 2021-08-03 07:05 PM PDT -github-actions,2021-08-04T18:27:11Z,- github-actions commented on pull request: [2062](https://github.com/hackforla/website/pull/2062#issuecomment-892876977) at 2021-08-04 11:27 AM PDT -github-actions,2021-08-08T19:41:44Z,- github-actions commented on pull request: [2072](https://github.com/hackforla/website/pull/2072#issuecomment-894845410) at 2021-08-08 12:41 PM PDT -github-actions,2021-08-09T05:34:34Z,- github-actions commented on pull request: [2074](https://github.com/hackforla/website/pull/2074#issuecomment-894962758) at 2021-08-08 10:34 PM PDT -github-actions,2021-08-11T01:01:26Z,- github-actions commented on pull request: [2098](https://github.com/hackforla/website/pull/2098#issuecomment-896414517) at 2021-08-10 06:01 PM PDT -github-actions,2021-08-11T22:10:26Z,- github-actions commented on pull request: [2102](https://github.com/hackforla/website/pull/2102#issuecomment-897195025) at 2021-08-11 03:10 PM PDT -github-actions,2021-08-12T05:01:20Z,- github-actions commented on pull request: [2103](https://github.com/hackforla/website/pull/2103#issuecomment-897349837) at 2021-08-11 10:01 PM PDT -github-actions,2021-08-13T03:55:23Z,- github-actions commented on pull request: [2107](https://github.com/hackforla/website/pull/2107#issuecomment-898172846) at 2021-08-12 08:55 PM PDT -github-actions,2021-08-14T02:57:29Z,- github-actions commented on pull request: [2115](https://github.com/hackforla/website/pull/2115#issuecomment-898805116) at 2021-08-13 07:57 PM PDT -github-actions,2021-08-15T00:07:41Z,- github-actions commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-898973894) at 2021-08-14 05:07 PM PDT -github-actions,2021-08-15T05:46:23Z,- github-actions commented on pull request: [2119](https://github.com/hackforla/website/pull/2119#issuecomment-898999402) at 2021-08-14 10:46 PM PDT -github-actions,2021-08-15T20:35:15Z,- github-actions commented on pull request: [2120](https://github.com/hackforla/website/pull/2120#issuecomment-899106450) at 2021-08-15 01:35 PM PDT -github-actions,2021-08-15T23:52:57Z,- github-actions commented on pull request: [2121](https://github.com/hackforla/website/pull/2121#issuecomment-899129973) at 2021-08-15 04:52 PM PDT -github-actions,2021-08-16T23:19:51Z,- github-actions commented on pull request: [2123](https://github.com/hackforla/website/pull/2123#issuecomment-899880034) at 2021-08-16 04:19 PM PDT -github-actions,2021-08-17T00:48:40Z,- github-actions commented on pull request: [2124](https://github.com/hackforla/website/pull/2124#issuecomment-899911399) at 2021-08-16 05:48 PM PDT -github-actions,2021-08-18T01:25:50Z,- github-actions commented on pull request: [2126](https://github.com/hackforla/website/pull/2126#issuecomment-900742532) at 2021-08-17 06:25 PM PDT -github-actions,2021-08-20T03:49:38Z,- github-actions commented on pull request: [2131](https://github.com/hackforla/website/pull/2131#issuecomment-902409395) at 2021-08-19 08:49 PM PDT -github-actions,2021-08-20T04:23:02Z,- github-actions commented on pull request: [2132](https://github.com/hackforla/website/pull/2132#issuecomment-902420042) at 2021-08-19 09:23 PM PDT -github-actions,2021-08-20T05:12:28Z,- github-actions commented on pull request: [2134](https://github.com/hackforla/website/pull/2134#issuecomment-902436159) at 2021-08-19 10:12 PM PDT -github-actions,2021-08-20T05:18:31Z,- github-actions commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902438265) at 2021-08-19 10:18 PM PDT -github-actions,2021-08-20T05:43:29Z,- github-actions commented on pull request: [2139](https://github.com/hackforla/website/pull/2139#issuecomment-902446813) at 2021-08-19 10:43 PM PDT -github-actions,2021-08-20T17:26:14Z,- github-actions commented on pull request: [2144](https://github.com/hackforla/website/pull/2144#issuecomment-902844599) at 2021-08-20 10:26 AM PDT -github-actions,2021-08-20T20:20:17Z,- github-actions commented on pull request: [2149](https://github.com/hackforla/website/pull/2149#issuecomment-902935650) at 2021-08-20 01:20 PM PDT -github-actions,2021-08-20T23:35:59Z,- github-actions commented on pull request: [2150](https://github.com/hackforla/website/pull/2150#issuecomment-903008412) at 2021-08-20 04:35 PM PDT -github-actions,2021-08-21T01:38:27Z,- github-actions commented on pull request: [2152](https://github.com/hackforla/website/pull/2152#issuecomment-903033288) at 2021-08-20 06:38 PM PDT -github-actions,2021-08-21T19:24:18Z,- github-actions commented on pull request: [2156](https://github.com/hackforla/website/pull/2156#issuecomment-903164659) at 2021-08-21 12:24 PM PDT -github-actions,2021-08-21T23:02:34Z,- github-actions commented on pull request: [2157](https://github.com/hackforla/website/pull/2157#issuecomment-903186343) at 2021-08-21 04:02 PM PDT -github-actions,2021-08-23T17:05:36Z,- github-actions commented on pull request: [2166](https://github.com/hackforla/website/pull/2166#issuecomment-903953815) at 2021-08-23 10:05 AM PDT -github-actions,2021-08-25T06:49:54Z,- github-actions commented on pull request: [2178](https://github.com/hackforla/website/pull/2178#issuecomment-905231541) at 2021-08-24 11:49 PM PDT -github-actions,2021-08-26T04:55:29Z,- github-actions commented on pull request: [2181](https://github.com/hackforla/website/pull/2181#issuecomment-906093881) at 2021-08-25 09:55 PM PDT -github-actions,2021-08-27T04:24:22Z,- github-actions commented on pull request: [2186](https://github.com/hackforla/website/pull/2186#issuecomment-906915499) at 2021-08-26 09:24 PM PDT -github-actions,2021-08-27T18:54:08Z,- github-actions commented on pull request: [2189](https://github.com/hackforla/website/pull/2189#issuecomment-907406530) at 2021-08-27 11:54 AM PDT -github-actions,2021-08-28T04:14:27Z,- github-actions commented on pull request: [2195](https://github.com/hackforla/website/pull/2195#issuecomment-907564522) at 2021-08-27 09:14 PM PDT -github-actions,2021-08-28T19:50:56Z,- github-actions commented on pull request: [2196](https://github.com/hackforla/website/pull/2196#issuecomment-907681105) at 2021-08-28 12:50 PM PDT -github-actions,2021-08-29T08:59:30Z,- github-actions commented on pull request: [2197](https://github.com/hackforla/website/pull/2197#issuecomment-907755863) at 2021-08-29 01:59 AM PDT -github-actions,2021-08-31T04:27:35Z,- github-actions commented on pull request: [2209](https://github.com/hackforla/website/pull/2209#issuecomment-908889123) at 2021-08-30 09:27 PM PDT -github-actions,2021-09-02T07:22:57Z,- github-actions commented on pull request: [2214](https://github.com/hackforla/website/pull/2214#issuecomment-911307590) at 2021-09-02 12:22 AM PDT -github-actions,2021-09-03T06:32:05Z,- github-actions commented on pull request: [2217](https://github.com/hackforla/website/pull/2217#issuecomment-912293154) at 2021-09-02 11:32 PM PDT -github-actions,2021-09-03T10:12:52Z,- github-actions commented on pull request: [2218](https://github.com/hackforla/website/pull/2218#issuecomment-912425623) at 2021-09-03 03:12 AM PDT -github-actions,2021-09-03T14:26:41Z,- github-actions commented on pull request: [2219](https://github.com/hackforla/website/pull/2219#issuecomment-912580710) at 2021-09-03 07:26 AM PDT -github-actions,2021-09-04T00:31:00Z,- github-actions commented on pull request: [2223](https://github.com/hackforla/website/pull/2223#issuecomment-912875395) at 2021-09-03 05:31 PM PDT -github-actions,2021-09-05T07:02:57Z,- github-actions commented on pull request: [2225](https://github.com/hackforla/website/pull/2225#issuecomment-913098039) at 2021-09-05 12:02 AM PDT -github-actions,2021-09-07T23:07:44Z,- github-actions commented on pull request: [2229](https://github.com/hackforla/website/pull/2229#issuecomment-914682868) at 2021-09-07 04:07 PM PDT -github-actions,2021-09-08T00:57:54Z,- github-actions commented on pull request: [2230](https://github.com/hackforla/website/pull/2230#issuecomment-914745645) at 2021-09-07 05:57 PM PDT -github-actions,2021-09-08T19:13:17Z,- github-actions commented on pull request: [2241](https://github.com/hackforla/website/pull/2241#issuecomment-915500672) at 2021-09-08 12:13 PM PDT -github-actions,2021-09-09T21:07:44Z,- github-actions commented on pull request: [2245](https://github.com/hackforla/website/pull/2245#issuecomment-916437224) at 2021-09-09 02:07 PM PDT -github-actions,2021-09-11T17:05:38Z,- github-actions commented on pull request: [2247](https://github.com/hackforla/website/pull/2247#issuecomment-917439756) at 2021-09-11 10:05 AM PDT -github-actions,2021-09-12T19:52:33Z,- github-actions commented on pull request: [2250](https://github.com/hackforla/website/pull/2250#issuecomment-917699503) at 2021-09-12 12:52 PM PDT -github-actions,2021-09-12T22:16:34Z,- github-actions commented on pull request: [2252](https://github.com/hackforla/website/pull/2252#issuecomment-917720425) at 2021-09-12 03:16 PM PDT -github-actions,2021-09-13T00:26:01Z,- github-actions commented on pull request: [2253](https://github.com/hackforla/website/pull/2253#issuecomment-917743770) at 2021-09-12 05:26 PM PDT -github-actions,2021-09-13T03:55:55Z,- github-actions commented on pull request: [2254](https://github.com/hackforla/website/pull/2254#issuecomment-917816515) at 2021-09-12 08:55 PM PDT -github-actions,2021-09-13T22:03:47Z,- github-actions commented on pull request: [2256](https://github.com/hackforla/website/pull/2256#issuecomment-918612241) at 2021-09-13 03:03 PM PDT -github-actions,2021-09-14T04:46:07Z,- github-actions commented on pull request: [2260](https://github.com/hackforla/website/pull/2260#issuecomment-918797601) at 2021-09-13 09:46 PM PDT -github-actions,2021-09-14T21:55:35Z,- github-actions commented on pull request: [2261](https://github.com/hackforla/website/pull/2261#issuecomment-919540462) at 2021-09-14 02:55 PM PDT -github-actions,2021-09-14T21:57:11Z,- github-actions commented on pull request: [2262](https://github.com/hackforla/website/pull/2262#issuecomment-919541265) at 2021-09-14 02:57 PM PDT -github-actions,2021-09-14T22:19:12Z,- github-actions commented on pull request: [2263](https://github.com/hackforla/website/pull/2263#issuecomment-919552862) at 2021-09-14 03:19 PM PDT -github-actions,2021-09-16T00:38:17Z,- github-actions commented on pull request: [2281](https://github.com/hackforla/website/pull/2281#issuecomment-920486504) at 2021-09-15 05:38 PM PDT -github-actions,2021-09-17T02:39:02Z,- github-actions commented on pull request: [2284](https://github.com/hackforla/website/pull/2284#issuecomment-921409682) at 2021-09-16 07:39 PM PDT -github-actions,2021-09-19T06:41:48Z,- github-actions commented on pull request: [2285](https://github.com/hackforla/website/pull/2285#issuecomment-922423856) at 2021-09-18 11:41 PM PDT -github-actions,2021-09-22T07:20:27Z,- github-actions commented on pull request: [2300](https://github.com/hackforla/website/pull/2300#issuecomment-924656212) at 2021-09-22 12:20 AM PDT -github-actions,2021-09-22T19:50:37Z,- github-actions commented on pull request: [2302](https://github.com/hackforla/website/pull/2302#issuecomment-925278097) at 2021-09-22 12:50 PM PDT -github-actions,2021-09-24T17:17:05Z,- github-actions commented on pull request: [2305](https://github.com/hackforla/website/pull/2305#issuecomment-926794038) at 2021-09-24 10:17 AM PDT -github-actions,2021-09-25T05:25:44Z,- github-actions commented on pull request: [2308](https://github.com/hackforla/website/pull/2308#issuecomment-927013743) at 2021-09-24 10:25 PM PDT -github-actions,2021-09-26T21:36:06Z,- github-actions commented on pull request: [2310](https://github.com/hackforla/website/pull/2310#issuecomment-927375694) at 2021-09-26 02:36 PM PDT -github-actions,2021-09-29T03:26:27Z,- github-actions commented on pull request: [2313](https://github.com/hackforla/website/pull/2313#issuecomment-929797107) at 2021-09-28 08:26 PM PDT -github-actions,2021-09-29T05:01:48Z,- github-actions commented on pull request: [2314](https://github.com/hackforla/website/pull/2314#issuecomment-929837532) at 2021-09-28 10:01 PM PDT -github-actions,2021-09-29T07:25:07Z,- github-actions commented on pull request: [2315](https://github.com/hackforla/website/pull/2315#issuecomment-929911477) at 2021-09-29 12:25 AM PDT -github-actions,2021-09-30T04:31:19Z,- github-actions commented on pull request: [2320](https://github.com/hackforla/website/pull/2320#issuecomment-930773436) at 2021-09-29 09:31 PM PDT -github-actions,2021-09-30T04:56:44Z,- github-actions commented on pull request: [2321](https://github.com/hackforla/website/pull/2321#issuecomment-930782699) at 2021-09-29 09:56 PM PDT -github-actions,2021-10-01T01:46:32Z,- github-actions commented on pull request: [2322](https://github.com/hackforla/website/pull/2322#issuecomment-931828430) at 2021-09-30 06:46 PM PDT -github-actions,2021-10-01T02:07:52Z,- github-actions commented on pull request: [2323](https://github.com/hackforla/website/pull/2323#issuecomment-931837728) at 2021-09-30 07:07 PM PDT -github-actions,2021-10-01T22:05:44Z,- github-actions commented on pull request: [2324](https://github.com/hackforla/website/pull/2324#issuecomment-932604060) at 2021-10-01 03:05 PM PDT -github-actions,2021-10-03T15:59:00Z,- github-actions commented on pull request: [2325](https://github.com/hackforla/website/pull/2325#issuecomment-932978396) at 2021-10-03 08:59 AM PDT -github-actions,2021-10-04T07:05:27Z,- github-actions commented on pull request: [2333](https://github.com/hackforla/website/pull/2333#issuecomment-933202962) at 2021-10-04 12:05 AM PDT -github-actions,2021-10-05T20:29:05Z,- github-actions commented on pull request: [2338](https://github.com/hackforla/website/pull/2338#issuecomment-934782009) at 2021-10-05 01:29 PM PDT -github-actions,2021-10-06T05:34:12Z,- github-actions commented on pull request: [2340](https://github.com/hackforla/website/pull/2340#issuecomment-935498109) at 2021-10-05 10:34 PM PDT -github-actions,2021-10-07T03:17:48Z,- github-actions commented on pull request: [2343](https://github.com/hackforla/website/pull/2343#issuecomment-937410542) at 2021-10-06 08:17 PM PDT -github-actions,2021-10-10T01:51:34Z,- github-actions commented on pull request: [2352](https://github.com/hackforla/website/pull/2352#issuecomment-939390775) at 2021-10-09 06:51 PM PDT -github-actions,2021-10-12T05:12:29Z,- github-actions commented on pull request: [2365](https://github.com/hackforla/website/pull/2365#issuecomment-940668935) at 2021-10-11 10:12 PM PDT -github-actions,2021-10-14T03:21:39Z,- github-actions commented on pull request: [2367](https://github.com/hackforla/website/pull/2367#issuecomment-942910884) at 2021-10-13 08:21 PM PDT -github-actions,2021-10-17T18:21:31Z,- github-actions commented on pull request: [2369](https://github.com/hackforla/website/pull/2369#issuecomment-945171275) at 2021-10-17 11:21 AM PDT -github-actions,2021-10-18T15:46:41Z,- github-actions commented on pull request: [2371](https://github.com/hackforla/website/pull/2371#issuecomment-945913038) at 2021-10-18 08:46 AM PDT -github-actions,2021-10-18T18:34:57Z,- github-actions commented on pull request: [2372](https://github.com/hackforla/website/pull/2372#issuecomment-946052133) at 2021-10-18 11:34 AM PDT -github-actions,2021-10-18T18:52:11Z,- github-actions commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-946065960) at 2021-10-18 11:52 AM PDT -github-actions,2021-10-19T19:50:18Z,- github-actions commented on pull request: [2375](https://github.com/hackforla/website/pull/2375#issuecomment-947054183) at 2021-10-19 12:50 PM PDT -github-actions,2021-10-19T22:32:12Z,- github-actions commented on pull request: [2376](https://github.com/hackforla/website/pull/2376#issuecomment-947154799) at 2021-10-19 03:32 PM PDT -github-actions,2021-10-19T23:56:12Z,- github-actions commented on pull request: [2358](https://github.com/hackforla/website/pull/2358#issuecomment-947192478) at 2021-10-19 04:56 PM PDT -github-actions,2021-10-20T03:42:57Z,- github-actions commented on pull request: [2377](https://github.com/hackforla/website/pull/2377#issuecomment-947298573) at 2021-10-19 08:42 PM PDT -github-actions,2021-10-20T06:18:14Z,- github-actions commented on pull request: [2380](https://github.com/hackforla/website/pull/2380#issuecomment-947362623) at 2021-10-19 11:18 PM PDT -github-actions,2021-10-20T15:02:50Z,- github-actions commented on pull request: [2381](https://github.com/hackforla/website/pull/2381#issuecomment-947756444) at 2021-10-20 08:02 AM PDT -github-actions,2021-10-20T15:26:41Z,- github-actions commented on pull request: [2378](https://github.com/hackforla/website/pull/2378#issuecomment-947779880) at 2021-10-20 08:26 AM PDT -github-actions,2021-10-21T03:50:00Z,- github-actions commented on pull request: [2387](https://github.com/hackforla/website/pull/2387#issuecomment-948233486) at 2021-10-20 08:50 PM PDT -github-actions,2021-10-22T20:45:39Z,- github-actions commented on pull request: [2390](https://github.com/hackforla/website/pull/2390#issuecomment-949949203) at 2021-10-22 01:45 PM PDT -github-actions,2021-10-24T14:43:00Z,- github-actions commented on pull request: [2394](https://github.com/hackforla/website/pull/2394#issuecomment-950337210) at 2021-10-24 07:43 AM PDT -github-actions,2021-10-26T08:08:37Z,- github-actions commented on pull request: [2398](https://github.com/hackforla/website/pull/2398#issuecomment-951668572) at 2021-10-26 01:08 AM PDT -github-actions,2021-10-26T09:50:48Z,- github-actions commented on pull request: [2399](https://github.com/hackforla/website/pull/2399#issuecomment-951771386) at 2021-10-26 02:50 AM PDT -github-actions,2021-10-27T05:27:53Z,- github-actions commented on pull request: [2402](https://github.com/hackforla/website/pull/2402#issuecomment-952550629) at 2021-10-26 10:27 PM PDT -github-actions,2021-10-27T06:06:24Z,- github-actions commented on pull request: [2403](https://github.com/hackforla/website/pull/2403#issuecomment-952568433) at 2021-10-26 11:06 PM PDT -github-actions,2021-10-27T21:41:53Z,- github-actions commented on pull request: [2405](https://github.com/hackforla/website/pull/2405#issuecomment-953333079) at 2021-10-27 02:41 PM PDT -github-actions,2021-10-28T09:38:02Z,- github-actions commented on pull request: [2406](https://github.com/hackforla/website/pull/2406#issuecomment-953680564) at 2021-10-28 02:38 AM PDT -github-actions,2021-10-31T05:14:40Z,- github-actions commented on pull request: [2411](https://github.com/hackforla/website/pull/2411#issuecomment-955638741) at 2021-10-30 10:14 PM PDT -github-actions,2021-10-31T19:41:13Z,- github-actions commented on pull request: [2412](https://github.com/hackforla/website/pull/2412#issuecomment-955779994) at 2021-10-31 12:41 PM PDT -github-actions,2021-11-01T16:15:43Z,- github-actions commented on pull request: [2413](https://github.com/hackforla/website/pull/2413#issuecomment-956373672) at 2021-11-01 09:15 AM PDT -github-actions,2021-11-01T16:47:03Z,- github-actions commented on pull request: [2414](https://github.com/hackforla/website/pull/2414#issuecomment-956398237) at 2021-11-01 09:47 AM PDT -github-actions,2021-11-01T17:27:22Z,- github-actions commented on pull request: [2415](https://github.com/hackforla/website/pull/2415#issuecomment-956431973) at 2021-11-01 10:27 AM PDT -github-actions,2021-11-01T17:58:18Z,- github-actions commented on pull request: [2416](https://github.com/hackforla/website/pull/2416#issuecomment-956454013) at 2021-11-01 10:58 AM PDT -github-actions,2021-11-01T19:38:16Z,- github-actions commented on pull request: [2418](https://github.com/hackforla/website/pull/2418#issuecomment-956530631) at 2021-11-01 12:38 PM PDT -github-actions,2021-11-01T21:04:56Z,- github-actions commented on pull request: [2420](https://github.com/hackforla/website/pull/2420#issuecomment-956589083) at 2021-11-01 02:04 PM PDT -github-actions,2021-11-02T20:37:36Z,- github-actions commented on pull request: [2432](https://github.com/hackforla/website/pull/2432#issuecomment-958147939) at 2021-11-02 01:37 PM PDT -github-actions,2021-11-05T02:50:00Z,- github-actions commented on pull request: [2452](https://github.com/hackforla/website/pull/2452#issuecomment-961586873) at 2021-11-04 07:50 PM PDT -github-actions,2021-11-05T04:25:07Z,- github-actions commented on pull request: [2453](https://github.com/hackforla/website/pull/2453#issuecomment-961618649) at 2021-11-04 09:25 PM PDT -github-actions,2021-11-10T07:40:44Z,- github-actions commented on pull request: [2469](https://github.com/hackforla/website/pull/2469#issuecomment-964860759) at 2021-11-09 11:40 PM PST -github-actions,2021-11-10T19:09:17Z,- github-actions commented on pull request: [2470](https://github.com/hackforla/website/pull/2470#issuecomment-965654304) at 2021-11-10 11:09 AM PST -github-actions,2021-11-10T20:40:31Z,- github-actions commented on pull request: [2472](https://github.com/hackforla/website/pull/2472#issuecomment-965728725) at 2021-11-10 12:40 PM PST -github-actions,2021-11-14T16:23:18Z,- github-actions commented on pull request: [2478](https://github.com/hackforla/website/pull/2478#issuecomment-968321819) at 2021-11-14 08:23 AM PST -github-actions,2021-11-14T20:46:22Z,- github-actions commented on pull request: [2482](https://github.com/hackforla/website/pull/2482#issuecomment-968360457) at 2021-11-14 12:46 PM PST -github-actions,2021-11-16T03:46:04Z,- github-actions commented on pull request: [2491](https://github.com/hackforla/website/pull/2491#issuecomment-969827000) at 2021-11-15 07:46 PM PST -github-actions,2021-11-16T04:42:41Z,- github-actions commented on pull request: [2492](https://github.com/hackforla/website/pull/2492#issuecomment-969854706) at 2021-11-15 08:42 PM PST -github-actions,2021-11-16T05:05:57Z,- github-actions commented on pull request: [2493](https://github.com/hackforla/website/pull/2493#issuecomment-969863565) at 2021-11-15 09:05 PM PST -github-actions,2021-11-16T23:49:35Z,- github-actions commented on pull request: [2494](https://github.com/hackforla/website/pull/2494#issuecomment-970866866) at 2021-11-16 03:49 PM PST -github-actions,2021-11-17T02:52:45Z,- github-actions commented on pull request: [2495](https://github.com/hackforla/website/pull/2495#issuecomment-971126635) at 2021-11-16 06:52 PM PST -github-actions,2021-11-21T16:17:55Z,- github-actions commented on pull request: [2504](https://github.com/hackforla/website/pull/2504#issuecomment-974847590) at 2021-11-21 08:17 AM PST -github-actions,2021-11-21T22:55:47Z,- github-actions commented on pull request: [2506](https://github.com/hackforla/website/pull/2506#issuecomment-974912995) at 2021-11-21 02:55 PM PST -github-actions,2021-11-21T23:32:44Z,- github-actions commented on pull request: [2507](https://github.com/hackforla/website/pull/2507#issuecomment-974920007) at 2021-11-21 03:32 PM PST -github-actions,2021-11-21T23:50:38Z,- github-actions commented on pull request: [2508](https://github.com/hackforla/website/pull/2508#issuecomment-974923029) at 2021-11-21 03:50 PM PST -github-actions,2021-11-21T23:52:26Z,- github-actions commented on pull request: [2509](https://github.com/hackforla/website/pull/2509#issuecomment-974923291) at 2021-11-21 03:52 PM PST -github-actions,2021-11-22T00:32:55Z,- github-actions commented on pull request: [2510](https://github.com/hackforla/website/pull/2510#issuecomment-974937859) at 2021-11-21 04:32 PM PST -github-actions,2021-11-22T19:54:08Z,- github-actions commented on pull request: [2514](https://github.com/hackforla/website/pull/2514#issuecomment-975867014) at 2021-11-22 11:54 AM PST -github-actions,2021-11-28T09:58:59Z,- github-actions commented on pull request: [2516](https://github.com/hackforla/website/pull/2516#issuecomment-981056112) at 2021-11-28 01:58 AM PST -github-actions,2021-11-30T18:54:21Z,- github-actions commented on pull request: [2525](https://github.com/hackforla/website/pull/2525#issuecomment-982922803) at 2021-11-30 10:54 AM PST -github-actions,2021-12-01T19:24:39Z,- github-actions commented on pull request: [2526](https://github.com/hackforla/website/pull/2526#issuecomment-983982118) at 2021-12-01 11:24 AM PST -github-actions,2021-12-01T22:33:04Z,- github-actions commented on pull request: [2530](https://github.com/hackforla/website/pull/2530#issuecomment-984113400) at 2021-12-01 02:33 PM PST -github-actions,2021-12-01T23:13:30Z,- github-actions commented on pull request: [2532](https://github.com/hackforla/website/pull/2532#issuecomment-984143693) at 2021-12-01 03:13 PM PST -github-actions,2021-12-02T02:31:02Z,- github-actions commented on pull request: [2534](https://github.com/hackforla/website/pull/2534#issuecomment-984236027) at 2021-12-01 06:31 PM PST -github-actions,2021-12-02T05:19:49Z,- github-actions commented on pull request: [2535](https://github.com/hackforla/website/pull/2535#issuecomment-984302618) at 2021-12-01 09:19 PM PST -github-actions,2021-12-02T20:22:46Z,- github-actions commented on pull request: [2538](https://github.com/hackforla/website/pull/2538#issuecomment-984972353) at 2021-12-02 12:22 PM PST -github-actions,2021-12-03T01:59:11Z,- github-actions commented on pull request: [2540](https://github.com/hackforla/website/pull/2540#issuecomment-985151041) at 2021-12-02 05:59 PM PST -github-actions,2021-12-03T17:41:10Z,- github-actions commented on pull request: [2541](https://github.com/hackforla/website/pull/2541#issuecomment-985707512) at 2021-12-03 09:41 AM PST -github-actions,2021-12-04T20:14:09Z,- github-actions commented on pull request: [2543](https://github.com/hackforla/website/pull/2543#issuecomment-986086624) at 2021-12-04 12:14 PM PST -github-actions,2021-12-05T06:43:28Z,- github-actions commented on pull request: [2545](https://github.com/hackforla/website/pull/2545#issuecomment-986176267) at 2021-12-04 10:43 PM PST -github-actions,2021-12-05T16:24:55Z,- github-actions commented on pull request: [2546](https://github.com/hackforla/website/pull/2546#issuecomment-986259869) at 2021-12-05 08:24 AM PST -github-actions,2021-12-06T04:14:36Z,- github-actions commented on pull request: [2548](https://github.com/hackforla/website/pull/2548#issuecomment-986422476) at 2021-12-05 08:14 PM PST -github-actions,2021-12-06T04:27:42Z,- github-actions commented on pull request: [2549](https://github.com/hackforla/website/pull/2549#issuecomment-986428515) at 2021-12-05 08:27 PM PST -github-actions,2021-12-07T02:20:32Z,- github-actions commented on pull request: [2551](https://github.com/hackforla/website/pull/2551#issuecomment-987506657) at 2021-12-06 06:20 PM PST -github-actions,2021-12-07T23:52:45Z,- github-actions commented on pull request: [2556](https://github.com/hackforla/website/pull/2556#issuecomment-988352032) at 2021-12-07 03:52 PM PST -github-actions,2021-12-08T02:07:14Z,- github-actions commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-988429834) at 2021-12-07 06:07 PM PST -github-actions,2021-12-08T23:56:58Z,- github-actions commented on pull request: [2564](https://github.com/hackforla/website/pull/2564#issuecomment-989323094) at 2021-12-08 03:56 PM PST -github-actions,2021-12-09T03:48:29Z,- github-actions commented on pull request: [2565](https://github.com/hackforla/website/pull/2565#issuecomment-989483337) at 2021-12-08 07:48 PM PST -github-actions,2021-12-09T21:27:27Z,- github-actions commented on pull request: [2566](https://github.com/hackforla/website/pull/2566#issuecomment-990278146) at 2021-12-09 01:27 PM PST -github-actions,2021-12-10T02:10:55Z,- github-actions commented on pull request: [2573](https://github.com/hackforla/website/pull/2573#issuecomment-990536570) at 2021-12-09 06:10 PM PST -github-actions,2021-12-10T19:00:35Z,- github-actions commented on pull request: [2574](https://github.com/hackforla/website/pull/2574#issuecomment-991219812) at 2021-12-10 11:00 AM PST -github-actions,2021-12-11T00:08:47Z,- github-actions commented on pull request: [2575](https://github.com/hackforla/website/pull/2575#issuecomment-991384980) at 2021-12-10 04:08 PM PST -github-actions,2021-12-12T09:25:02Z,- github-actions commented on pull request: [2577](https://github.com/hackforla/website/pull/2577#issuecomment-991862277) at 2021-12-12 01:25 AM PST -github-actions,2021-12-12T22:31:43Z,- github-actions commented on pull request: [2578](https://github.com/hackforla/website/pull/2578#issuecomment-991983109) at 2021-12-12 02:31 PM PST -github-actions,2021-12-12T23:05:29Z,- github-actions commented on pull request: [2582](https://github.com/hackforla/website/pull/2582#issuecomment-991988095) at 2021-12-12 03:05 PM PST -github-actions,2021-12-13T03:18:23Z,- github-actions commented on pull request: [2583](https://github.com/hackforla/website/pull/2583#issuecomment-992072172) at 2021-12-12 07:18 PM PST -github-actions,2021-12-13T17:21:33Z,- github-actions commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-992699543) at 2021-12-13 09:21 AM PST -github-actions,2021-12-14T06:35:34Z,- github-actions commented on pull request: [2587](https://github.com/hackforla/website/pull/2587#issuecomment-993205025) at 2021-12-13 10:35 PM PST -github-actions,2021-12-15T13:42:04Z,- github-actions commented on pull request: [2588](https://github.com/hackforla/website/pull/2588#issuecomment-994802970) at 2021-12-15 05:42 AM PST -github-actions,2021-12-15T23:07:40Z,- github-actions commented on pull request: [2590](https://github.com/hackforla/website/pull/2590#issuecomment-995284475) at 2021-12-15 03:07 PM PST -github-actions,2021-12-16T19:15:20Z,- github-actions commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-996104436) at 2021-12-16 11:15 AM PST -github-actions,2021-12-17T01:28:10Z,- github-actions commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-996350336) at 2021-12-16 05:28 PM PST -github-actions,2021-12-18T19:23:10Z,- github-actions commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-997272977) at 2021-12-18 11:23 AM PST -github-actions,2021-12-18T22:31:02Z,- github-actions commented on pull request: [2602](https://github.com/hackforla/website/pull/2602#issuecomment-997293705) at 2021-12-18 02:31 PM PST -github-actions,2021-12-18T23:00:13Z,- github-actions commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-997296749) at 2021-12-18 03:00 PM PST -github-actions,2021-12-21T00:10:13Z,- github-actions commented on pull request: [2609](https://github.com/hackforla/website/pull/2609#issuecomment-998361946) at 2021-12-20 04:10 PM PST -github-actions,2021-12-22T20:28:51Z,- github-actions commented on pull request: [2620](https://github.com/hackforla/website/pull/2620#issuecomment-999848565) at 2021-12-22 12:28 PM PST -github-actions,2021-12-22T21:32:47Z,- github-actions commented on pull request: [2621](https://github.com/hackforla/website/pull/2621#issuecomment-999893288) at 2021-12-22 01:32 PM PST -github-actions,2021-12-24T01:23:36Z,- github-actions commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1000597812) at 2021-12-23 05:23 PM PST -github-actions,2021-12-26T09:53:50Z,- github-actions commented on pull request: [2630](https://github.com/hackforla/website/pull/2630#issuecomment-1001140303) at 2021-12-26 01:53 AM PST -github-actions,2021-12-27T20:24:29Z,- github-actions commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1001739783) at 2021-12-27 12:24 PM PST -github-actions,2021-12-28T16:53:43Z,- github-actions commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1002195355) at 2021-12-28 08:53 AM PST -github-actions,2021-12-29T03:20:41Z,- github-actions commented on pull request: [2643](https://github.com/hackforla/website/pull/2643#issuecomment-1002377530) at 2021-12-28 07:20 PM PST -github-actions,2021-12-30T00:58:47Z,- github-actions commented on pull request: [2644](https://github.com/hackforla/website/pull/2644#issuecomment-1002829950) at 2021-12-29 04:58 PM PST -github-actions,2021-12-30T04:24:15Z,- github-actions commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1002867234) at 2021-12-29 08:24 PM PST -github-actions,2021-12-30T21:52:37Z,- github-actions commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1003192613) at 2021-12-30 01:52 PM PST -github-actions,2021-12-31T01:50:35Z,- github-actions commented on pull request: [2647](https://github.com/hackforla/website/pull/2647#issuecomment-1003237357) at 2021-12-30 05:50 PM PST -github-actions,2021-12-31T08:23:09Z,- github-actions commented on pull request: [2648](https://github.com/hackforla/website/pull/2648#issuecomment-1003306619) at 2021-12-31 12:23 AM PST -github-actions,2022-01-07T03:46:01Z,- github-actions commented on pull request: [2665](https://github.com/hackforla/website/pull/2665#issuecomment-1007117863) at 2022-01-06 07:46 PM PST -github-actions,2022-01-08T03:18:45Z,- github-actions commented on pull request: [2672](https://github.com/hackforla/website/pull/2672#issuecomment-1007876122) at 2022-01-07 07:18 PM PST -github-actions,2022-01-09T10:25:28Z,- github-actions commented on pull request: [2678](https://github.com/hackforla/website/pull/2678#issuecomment-1008270408) at 2022-01-09 02:25 AM PST -github-actions,2022-01-10T01:08:26Z,- github-actions commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1008468324) at 2022-01-09 05:08 PM PST -github-actions,2022-01-17T19:01:18Z,- github-actions commented on pull request: [2693](https://github.com/hackforla/website/pull/2693#issuecomment-1014818216) at 2022-01-17 11:01 AM PST -github-actions,2022-01-18T03:28:32Z,- github-actions commented on pull request: [2696](https://github.com/hackforla/website/pull/2696#issuecomment-1015040347) at 2022-01-17 07:28 PM PST -github-actions,2022-01-19T03:45:47Z,- github-actions commented on pull request: [2700](https://github.com/hackforla/website/pull/2700#issuecomment-1016052450) at 2022-01-18 07:45 PM PST -github-actions,2022-01-21T02:34:45Z,- github-actions commented on pull request: [2709](https://github.com/hackforla/website/pull/2709#issuecomment-1018110465) at 2022-01-20 06:34 PM PST -github-actions,2022-01-21T03:34:46Z,- github-actions commented on pull request: [2710](https://github.com/hackforla/website/pull/2710#issuecomment-1018137151) at 2022-01-20 07:34 PM PST -github-actions,2022-01-23T20:23:09Z,- github-actions commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1019559988) at 2022-01-23 12:23 PM PST -github-actions,2022-01-24T01:05:41Z,- github-actions commented on pull request: [2714](https://github.com/hackforla/website/pull/2714#issuecomment-1019620033) at 2022-01-23 05:05 PM PST -github-actions,2022-01-26T02:48:55Z,- github-actions commented on pull request: [2718](https://github.com/hackforla/website/pull/2718#issuecomment-1021811526) at 2022-01-25 06:48 PM PST -github-actions,2022-01-26T23:37:39Z,- github-actions commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1022702689) at 2022-01-26 03:37 PM PST -github-actions,2022-01-28T14:40:12Z,- github-actions commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1024286211) at 2022-01-28 06:40 AM PST -github-actions,2022-01-29T20:02:12Z,- github-actions commented on pull request: [2724](https://github.com/hackforla/website/pull/2724#issuecomment-1024977242) at 2022-01-29 12:02 PM PST -github-actions,2022-01-29T20:28:25Z,- github-actions commented on pull request: [2725](https://github.com/hackforla/website/pull/2725#issuecomment-1024980876) at 2022-01-29 12:28 PM PST -github-actions,2022-01-31T16:00:25Z,- github-actions commented on pull request: [2729](https://github.com/hackforla/website/pull/2729#issuecomment-1025935521) at 2022-01-31 08:00 AM PST -github-actions,2022-02-01T05:16:36Z,- github-actions commented on pull request: [2730](https://github.com/hackforla/website/pull/2730#issuecomment-1026486828) at 2022-01-31 09:16 PM PST -github-actions,2022-02-02T19:59:12Z,- github-actions commented on pull request: [2732](https://github.com/hackforla/website/pull/2732#issuecomment-1028307094) at 2022-02-02 11:59 AM PST -github-actions,2022-02-02T22:44:34Z,- github-actions commented on pull request: [2734](https://github.com/hackforla/website/pull/2734#issuecomment-1028428136) at 2022-02-02 02:44 PM PST -github-actions,2022-02-03T05:52:40Z,- github-actions commented on pull request: [2735](https://github.com/hackforla/website/pull/2735#issuecomment-1028626154) at 2022-02-02 09:52 PM PST -github-actions,2022-02-04T02:34:17Z,- github-actions commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1029584390) at 2022-02-03 06:34 PM PST -github-actions,2022-02-05T06:10:24Z,- github-actions commented on pull request: [2738](https://github.com/hackforla/website/pull/2738#issuecomment-1030535823) at 2022-02-04 10:10 PM PST -github-actions,2022-02-06T16:48:25Z,- github-actions commented on pull request: [2741](https://github.com/hackforla/website/pull/2741#issuecomment-1030870010) at 2022-02-06 08:48 AM PST -github-actions,2022-02-06T19:39:57Z,- github-actions commented on pull request: [2742](https://github.com/hackforla/website/pull/2742#issuecomment-1030899708) at 2022-02-06 11:39 AM PST -github-actions,2022-02-08T20:59:06Z,- github-actions commented on pull request: [2752](https://github.com/hackforla/website/pull/2752#issuecomment-1033055943) at 2022-02-08 12:59 PM PST -github-actions,2022-02-09T04:47:11Z,- github-actions commented on pull request: [2755](https://github.com/hackforla/website/pull/2755#issuecomment-1033345036) at 2022-02-08 08:47 PM PST -github-actions,2022-02-09T04:47:36Z,- github-actions commented on pull request: [2756](https://github.com/hackforla/website/pull/2756#issuecomment-1033345252) at 2022-02-08 08:47 PM PST -github-actions,2022-02-09T05:37:12Z,- github-actions commented on pull request: [2757](https://github.com/hackforla/website/pull/2757#issuecomment-1033370601) at 2022-02-08 09:37 PM PST -github-actions,2022-02-10T00:54:38Z,- github-actions commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1034369407) at 2022-02-09 04:54 PM PST -github-actions,2022-02-10T01:41:30Z,- github-actions commented on pull request: [2762](https://github.com/hackforla/website/pull/2762#issuecomment-1034397438) at 2022-02-09 05:41 PM PST -github-actions,2022-02-11T18:50:47Z,- github-actions commented on pull request: [2765](https://github.com/hackforla/website/pull/2765#issuecomment-1036515066) at 2022-02-11 10:50 AM PST -github-actions,2022-02-12T07:18:43Z,- github-actions commented on pull request: [2767](https://github.com/hackforla/website/pull/2767#issuecomment-1037037557) at 2022-02-11 11:18 PM PST -github-actions,2022-02-12T22:32:59Z,- github-actions commented on pull request: [2769](https://github.com/hackforla/website/pull/2769#issuecomment-1037536653) at 2022-02-12 02:32 PM PST -github-actions,2022-02-13T02:57:55Z,- github-actions commented on pull request: [2772](https://github.com/hackforla/website/pull/2772#issuecomment-1037704001) at 2022-02-12 06:57 PM PST -github-actions,2022-02-14T18:04:14Z,- github-actions commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1039390096) at 2022-02-14 10:04 AM PST -github-actions,2022-02-16T01:41:38Z,- github-actions commented on pull request: [2779](https://github.com/hackforla/website/pull/2779#issuecomment-1041004641) at 2022-02-15 05:41 PM PST -github-actions,2022-02-16T02:23:07Z,- github-actions commented on pull request: [2780](https://github.com/hackforla/website/pull/2780#issuecomment-1041026224) at 2022-02-15 06:23 PM PST -github-actions,2022-02-16T06:34:37Z,- github-actions commented on pull request: [2785](https://github.com/hackforla/website/pull/2785#issuecomment-1041155553) at 2022-02-15 10:34 PM PST -github-actions,2022-02-16T19:55:24Z,- github-actions commented on pull request: [2786](https://github.com/hackforla/website/pull/2786#issuecomment-1042106878) at 2022-02-16 11:55 AM PST -github-actions,2022-02-17T01:59:01Z,- github-actions commented on pull request: [2787](https://github.com/hackforla/website/pull/2787#issuecomment-1042491204) at 2022-02-16 05:59 PM PST -github-actions,2022-02-17T22:02:11Z,- github-actions commented on pull request: [2788](https://github.com/hackforla/website/pull/2788#issuecomment-1043511948) at 2022-02-17 02:02 PM PST -github-actions,2022-02-18T03:51:08Z,- github-actions commented on pull request: [2789](https://github.com/hackforla/website/pull/2789#issuecomment-1043841257) at 2022-02-17 07:51 PM PST -github-actions,2022-02-18T19:05:40Z,- github-actions commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1045030595) at 2022-02-18 11:05 AM PST -github-actions,2022-02-19T21:19:28Z,- github-actions commented on pull request: [2801](https://github.com/hackforla/website/pull/2801#issuecomment-1046105027) at 2022-02-19 01:19 PM PST -github-actions,2022-02-19T21:59:32Z,- github-actions commented on pull request: [2803](https://github.com/hackforla/website/pull/2803#issuecomment-1046111298) at 2022-02-19 01:59 PM PST -github-actions,2022-02-20T21:07:37Z,- github-actions commented on pull request: [2819](https://github.com/hackforla/website/pull/2819#issuecomment-1046321082) at 2022-02-20 01:07 PM PST -github-actions,2022-02-22T19:11:12Z,- github-actions commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1048124079) at 2022-02-22 11:11 AM PST -github-actions,2022-02-23T05:13:24Z,- github-actions commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1048455170) at 2022-02-22 09:13 PM PST -github-actions,2022-02-23T13:33:45Z,- github-actions commented on pull request: [2872](https://github.com/hackforla/website/pull/2872#issuecomment-1048787353) at 2022-02-23 05:33 AM PST -github-actions,2022-02-23T19:26:57Z,- github-actions commented on pull request: [2879](https://github.com/hackforla/website/pull/2879#issuecomment-1049134617) at 2022-02-23 11:26 AM PST -github-actions,2022-02-23T23:23:53Z,- github-actions commented on pull request: [2880](https://github.com/hackforla/website/pull/2880#issuecomment-1049319559) at 2022-02-23 03:23 PM PST -github-actions,2022-02-24T03:18:50Z,- github-actions commented on pull request: [2881](https://github.com/hackforla/website/pull/2881#issuecomment-1049454707) at 2022-02-23 07:18 PM PST -github-actions,2022-02-24T07:23:18Z,- github-actions commented on pull request: [2882](https://github.com/hackforla/website/pull/2882#issuecomment-1049566055) at 2022-02-23 11:23 PM PST -github-actions,2022-02-24T11:09:49Z,- github-actions commented on pull request: [2883](https://github.com/hackforla/website/pull/2883#issuecomment-1049747947) at 2022-02-24 03:09 AM PST -github-actions,2022-02-24T21:07:43Z,- github-actions commented on pull request: [2884](https://github.com/hackforla/website/pull/2884#issuecomment-1050265436) at 2022-02-24 01:07 PM PST -github-actions,2022-02-25T02:32:25Z,- github-actions commented on pull request: [2885](https://github.com/hackforla/website/pull/2885#issuecomment-1050458789) at 2022-02-24 06:32 PM PST -github-actions,2022-02-25T21:45:38Z,- github-actions commented on pull request: [2889](https://github.com/hackforla/website/pull/2889#issuecomment-1051294405) at 2022-02-25 01:45 PM PST -github-actions,2022-02-26T22:15:00Z,- github-actions commented on pull request: [2893](https://github.com/hackforla/website/pull/2893#issuecomment-1052697410) at 2022-02-26 02:15 PM PST -github-actions,2022-02-27T04:27:13Z,- github-actions commented on pull request: [2894](https://github.com/hackforla/website/pull/2894#issuecomment-1053101241) at 2022-02-26 08:27 PM PST -github-actions,2022-02-27T17:10:04Z,- github-actions commented on pull request: [2899](https://github.com/hackforla/website/pull/2899#issuecomment-1053618209) at 2022-02-27 09:10 AM PST -github-actions,2022-02-28T11:10:00Z,- github-actions commented on pull request: [2903](https://github.com/hackforla/website/pull/2903#issuecomment-1054144631) at 2022-02-28 03:10 AM PST -github-actions,2022-03-01T06:00:14Z,- github-actions commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055052324) at 2022-02-28 10:00 PM PST -github-actions,2022-03-08T22:49:30Z,- github-actions commented on pull request: [2943](https://github.com/hackforla/website/pull/2943#issuecomment-1062308376) at 2022-03-08 02:49 PM PST -github-actions,2022-03-09T18:45:33Z,- github-actions commented on pull request: [2944](https://github.com/hackforla/website/pull/2944#issuecomment-1063244320) at 2022-03-09 10:45 AM PST -github-actions,2022-03-10T19:10:22Z,- github-actions commented on pull request: [2957](https://github.com/hackforla/website/pull/2957#issuecomment-1064399833) at 2022-03-10 11:10 AM PST -github-actions,2022-03-10T22:10:51Z,- github-actions commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1064556982) at 2022-03-10 02:10 PM PST -github-actions,2022-03-11T04:34:33Z,- github-actions commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1064763718) at 2022-03-10 08:34 PM PST -github-actions,2022-03-11T06:05:56Z,- github-actions commented on pull request: [2963](https://github.com/hackforla/website/pull/2963#issuecomment-1064803057) at 2022-03-10 10:05 PM PST -github-actions,2022-03-11T09:49:36Z,- github-actions commented on pull request: [2965](https://github.com/hackforla/website/pull/2965#issuecomment-1064948682) at 2022-03-11 01:49 AM PST -github-actions,2022-03-11T18:51:20Z,- github-actions commented on pull request: [2966](https://github.com/hackforla/website/pull/2966#issuecomment-1065395503) at 2022-03-11 10:51 AM PST -github-actions,2022-03-11T20:29:56Z,- github-actions commented on pull request: [2967](https://github.com/hackforla/website/pull/2967#issuecomment-1065494054) at 2022-03-11 12:29 PM PST -github-actions,2022-03-11T21:49:17Z,- github-actions commented on pull request: [2968](https://github.com/hackforla/website/pull/2968#issuecomment-1065561397) at 2022-03-11 01:49 PM PST -github-actions,2022-03-12T11:20:52Z,- github-actions commented on pull request: [2970](https://github.com/hackforla/website/pull/2970#issuecomment-1065865133) at 2022-03-12 04:20 AM PDT -github-actions,2022-03-12T14:38:20Z,- github-actions commented on pull request: [2971](https://github.com/hackforla/website/pull/2971#issuecomment-1065894401) at 2022-03-12 07:38 AM PDT -github-actions,2022-03-13T03:53:41Z,- github-actions commented on pull request: [2973](https://github.com/hackforla/website/pull/2973#issuecomment-1066016460) at 2022-03-12 08:53 PM PDT -github-actions,2022-03-13T19:55:57Z,- github-actions commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1066170794) at 2022-03-13 12:55 PM PDT -github-actions,2022-03-13T23:55:56Z,- github-actions commented on pull request: [2979](https://github.com/hackforla/website/pull/2979#issuecomment-1066211211) at 2022-03-13 04:55 PM PDT -github-actions,2022-03-14T17:20:03Z,- github-actions commented on pull request: [2980](https://github.com/hackforla/website/pull/2980#issuecomment-1067086113) at 2022-03-14 10:20 AM PDT -github-actions,2022-03-14T23:34:20Z,- github-actions commented on pull request: [2981](https://github.com/hackforla/website/pull/2981#issuecomment-1067411974) at 2022-03-14 04:34 PM PDT -github-actions,2022-03-15T00:04:08Z,- github-actions commented on pull request: [2982](https://github.com/hackforla/website/pull/2982#issuecomment-1067425932) at 2022-03-14 05:04 PM PDT -github-actions,2022-03-15T05:53:54Z,- github-actions commented on pull request: [2983](https://github.com/hackforla/website/pull/2983#issuecomment-1067590666) at 2022-03-14 10:53 PM PDT -github-actions,2022-03-16T00:55:56Z,- github-actions commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1068617408) at 2022-03-15 05:55 PM PDT -github-actions,2022-03-16T03:53:48Z,- github-actions commented on pull request: [2986](https://github.com/hackforla/website/pull/2986#issuecomment-1068704018) at 2022-03-15 08:53 PM PDT -github-actions,2022-03-18T13:12:18Z,- github-actions commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1072396865) at 2022-03-18 06:12 AM PDT -github-actions,2022-03-18T17:49:10Z,- github-actions commented on pull request: [2989](https://github.com/hackforla/website/pull/2989#issuecomment-1072650838) at 2022-03-18 10:49 AM PDT -github-actions,2022-03-19T06:35:03Z,- github-actions commented on pull request: [2991](https://github.com/hackforla/website/pull/2991#issuecomment-1072953738) at 2022-03-18 11:35 PM PDT -github-actions,2022-03-19T18:03:52Z,- github-actions commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073054819) at 2022-03-19 11:03 AM PDT -github-actions,2022-03-20T20:19:00Z,- github-actions commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1073341510) at 2022-03-20 01:19 PM PDT -github-actions,2022-03-20T22:26:55Z,- github-actions commented on pull request: [2995](https://github.com/hackforla/website/pull/2995#issuecomment-1073361278) at 2022-03-20 03:26 PM PDT -github-actions,2022-03-21T01:08:26Z,- github-actions commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1073396749) at 2022-03-20 06:08 PM PDT -github-actions,2022-03-21T20:53:17Z,- github-actions commented on pull request: [2997](https://github.com/hackforla/website/pull/2997#issuecomment-1074407178) at 2022-03-21 01:53 PM PDT -github-actions,2022-03-22T02:57:00Z,- github-actions commented on pull request: [2998](https://github.com/hackforla/website/pull/2998#issuecomment-1074672865) at 2022-03-21 07:57 PM PDT -github-actions,2022-03-22T06:02:33Z,- github-actions commented on pull request: [3000](https://github.com/hackforla/website/pull/3000#issuecomment-1074771988) at 2022-03-21 11:02 PM PDT -github-actions,2022-03-22T21:58:04Z,- github-actions commented on pull request: [3001](https://github.com/hackforla/website/pull/3001#issuecomment-1075682920) at 2022-03-22 02:58 PM PDT -github-actions,2022-03-22T23:04:55Z,- github-actions commented on pull request: [3002](https://github.com/hackforla/website/pull/3002#issuecomment-1075735145) at 2022-03-22 04:04 PM PDT -github-actions,2022-03-23T21:06:25Z,- github-actions commented on pull request: [3006](https://github.com/hackforla/website/pull/3006#issuecomment-1076820701) at 2022-03-23 02:06 PM PDT -github-actions,2022-03-23T21:18:55Z,- github-actions commented on pull request: [3007](https://github.com/hackforla/website/pull/3007#issuecomment-1076830384) at 2022-03-23 02:18 PM PDT -github-actions,2022-03-24T19:38:04Z,- github-actions commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1078035864) at 2022-03-24 12:38 PM PDT -github-actions,2022-03-25T16:26:34Z,- github-actions commented on pull request: [3010](https://github.com/hackforla/website/pull/3010#issuecomment-1079192762) at 2022-03-25 09:26 AM PDT -github-actions,2022-03-26T01:18:36Z,- github-actions commented on pull request: [3012](https://github.com/hackforla/website/pull/3012#issuecomment-1079546758) at 2022-03-25 06:18 PM PDT -github-actions,2022-03-26T02:02:30Z,- github-actions commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079563042) at 2022-03-25 07:02 PM PDT -github-actions,2022-03-26T13:17:21Z,- github-actions commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1079692729) at 2022-03-26 06:17 AM PDT -github-actions,2022-03-26T16:55:10Z,- github-actions commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1079732163) at 2022-03-26 09:55 AM PDT -github-actions,2022-03-27T01:11:00Z,- github-actions commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1079807940) at 2022-03-26 06:11 PM PDT -github-actions,2022-03-28T16:47:35Z,- github-actions commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1080896197) at 2022-03-28 09:47 AM PDT -github-actions,2022-04-01T07:35:05Z,- github-actions commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1085535755) at 2022-04-01 12:35 AM PDT -github-actions,2022-04-02T23:18:29Z,- github-actions commented on pull request: [3029](https://github.com/hackforla/website/pull/3029#issuecomment-1086740613) at 2022-04-02 04:18 PM PDT -github-actions,2022-04-03T05:17:09Z,- github-actions commented on pull request: [3030](https://github.com/hackforla/website/pull/3030#issuecomment-1086778783) at 2022-04-02 10:17 PM PDT -github-actions,2022-04-04T18:06:39Z,- github-actions commented on pull request: [3033](https://github.com/hackforla/website/pull/3033#issuecomment-1087857728) at 2022-04-04 11:06 AM PDT -github-actions,2022-04-07T23:03:41Z,- github-actions commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1092286924) at 2022-04-07 04:03 PM PDT -github-actions,2022-04-08T02:32:18Z,- github-actions commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1092383566) at 2022-04-07 07:32 PM PDT -github-actions,2022-04-10T23:42:23Z,- github-actions commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1094411464) at 2022-04-10 04:42 PM PDT -github-actions,2022-04-11T21:29:26Z,- github-actions commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1095585058) at 2022-04-11 02:29 PM PDT -github-actions,2022-04-11T22:42:08Z,- github-actions commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1095661321) at 2022-04-11 03:42 PM PDT -github-actions,2022-04-12T21:42:34Z,- github-actions commented on pull request: [3046](https://github.com/hackforla/website/pull/3046#issuecomment-1097250197) at 2022-04-12 02:42 PM PDT -github-actions,2022-04-15T19:26:20Z,- github-actions commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1100307979) at 2022-04-15 12:26 PM PDT -github-actions,2022-04-18T01:55:27Z,- github-actions commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1101019694) at 2022-04-17 06:55 PM PDT -github-actions,2022-04-18T03:43:13Z,- github-actions commented on pull request: [3062](https://github.com/hackforla/website/pull/3062#issuecomment-1101062663) at 2022-04-17 08:43 PM PDT -github-actions,2022-04-19T06:29:36Z,- github-actions commented on pull request: [3067](https://github.com/hackforla/website/pull/3067#issuecomment-1102144136) at 2022-04-18 11:29 PM PDT -github-actions,2022-04-20T23:40:51Z,- github-actions commented on pull request: [3072](https://github.com/hackforla/website/pull/3072#issuecomment-1104555700) at 2022-04-20 04:40 PM PDT -github-actions,2022-04-21T02:02:40Z,- github-actions commented on pull request: [3073](https://github.com/hackforla/website/pull/3073#issuecomment-1104630370) at 2022-04-20 07:02 PM PDT -github-actions,2022-04-21T04:11:29Z,- github-actions commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1104687751) at 2022-04-20 09:11 PM PDT -github-actions,2022-04-21T20:58:43Z,- github-actions commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1105753214) at 2022-04-21 01:58 PM PDT -github-actions,2022-04-23T10:09:48Z,- github-actions commented on pull request: [3077](https://github.com/hackforla/website/pull/3077#issuecomment-1107446406) at 2022-04-23 03:09 AM PDT -github-actions,2022-04-23T21:22:07Z,- github-actions commented on pull request: [3078](https://github.com/hackforla/website/pull/3078#issuecomment-1107651320) at 2022-04-23 02:22 PM PDT -github-actions,2022-04-24T13:20:07Z,- github-actions commented on pull request: [3079](https://github.com/hackforla/website/pull/3079#issuecomment-1107840852) at 2022-04-24 06:20 AM PDT -github-actions,2022-04-25T03:00:19Z,- github-actions commented on pull request: [3081](https://github.com/hackforla/website/pull/3081#issuecomment-1108015178) at 2022-04-24 08:00 PM PDT -github-actions,2022-04-27T01:33:24Z,- github-actions commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1110435989) at 2022-04-26 06:33 PM PDT -github-actions,2022-05-01T04:06:00Z,- github-actions commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1114123628) at 2022-04-30 09:06 PM PDT -github-actions,2022-05-01T15:06:29Z,- github-actions commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1114260649) at 2022-05-01 08:06 AM PDT -github-actions,2022-05-06T21:20:34Z,- github-actions commented on pull request: [3108](https://github.com/hackforla/website/pull/3108#issuecomment-1120015912) at 2022-05-06 02:20 PM PDT -github-actions,2022-05-09T01:51:56Z,- github-actions commented on pull request: [3114](https://github.com/hackforla/website/pull/3114#issuecomment-1120550292) at 2022-05-08 06:51 PM PDT -github-actions,2022-05-12T20:01:49Z,- github-actions commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1125373857) at 2022-05-12 01:01 PM PDT -github-actions,2022-05-14T02:13:21Z,- github-actions commented on pull request: [3137](https://github.com/hackforla/website/pull/3137#issuecomment-1126612529) at 2022-05-13 07:13 PM PDT -github-actions,2022-05-17T00:28:58Z,- github-actions commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1128270611) at 2022-05-16 05:28 PM PDT -github-actions,2022-05-18T22:16:29Z,- github-actions commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1130615324) at 2022-05-18 03:16 PM PDT -github-actions,2022-05-19T03:36:38Z,- github-actions commented on pull request: [3159](https://github.com/hackforla/website/pull/3159#issuecomment-1131163198) at 2022-05-18 08:36 PM PDT -github-actions,2022-05-20T03:18:06Z,- github-actions commented on pull request: [3160](https://github.com/hackforla/website/pull/3160#issuecomment-1132414906) at 2022-05-19 08:18 PM PDT -github-actions,2022-05-20T03:58:25Z,- github-actions commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1132432147) at 2022-05-19 08:58 PM PDT -github-actions,2022-05-20T08:08:05Z,- github-actions commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1132607721) at 2022-05-20 01:08 AM PDT -github-actions,2022-05-20T23:46:46Z,- github-actions commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133468637) at 2022-05-20 04:46 PM PDT -github-actions,2022-05-23T06:40:17Z,- github-actions commented on pull request: [3168](https://github.com/hackforla/website/pull/3168#issuecomment-1134244297) at 2022-05-22 11:40 PM PDT -github-actions,2022-05-23T18:46:32Z,- github-actions commented on pull request: [3169](https://github.com/hackforla/website/pull/3169#issuecomment-1135020183) at 2022-05-23 11:46 AM PDT -github-actions,2022-05-23T22:28:54Z,- github-actions commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135199053) at 2022-05-23 03:28 PM PDT -github-actions,2022-05-24T04:23:09Z,- github-actions commented on pull request: [3172](https://github.com/hackforla/website/pull/3172#issuecomment-1135389326) at 2022-05-23 09:23 PM PDT -github-actions,2022-05-24T08:57:54Z,- github-actions commented on pull request: [3173](https://github.com/hackforla/website/pull/3173#issuecomment-1135597503) at 2022-05-24 01:57 AM PDT -github-actions,2022-05-24T19:59:36Z,- github-actions commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1136375622) at 2022-05-24 12:59 PM PDT -github-actions,2022-05-26T22:02:18Z,- github-actions commented on pull request: [3176](https://github.com/hackforla/website/pull/3176#issuecomment-1139098914) at 2022-05-26 03:02 PM PDT -github-actions,2022-05-29T11:29:49Z,- github-actions commented on pull request: [3178](https://github.com/hackforla/website/pull/3178#issuecomment-1140429022) at 2022-05-29 04:29 AM PDT -github-actions,2022-05-29T17:22:27Z,- github-actions commented on pull request: [3179](https://github.com/hackforla/website/pull/3179#issuecomment-1140491101) at 2022-05-29 10:22 AM PDT -github-actions,2022-05-29T20:53:27Z,- github-actions commented on pull request: [3181](https://github.com/hackforla/website/pull/3181#issuecomment-1140522595) at 2022-05-29 01:53 PM PDT -github-actions,2022-05-30T02:21:06Z,- github-actions commented on pull request: [3182](https://github.com/hackforla/website/pull/3182#issuecomment-1140614871) at 2022-05-29 07:21 PM PDT -github-actions,2022-05-30T13:38:22Z,- github-actions commented on pull request: [3183](https://github.com/hackforla/website/pull/3183#issuecomment-1141172156) at 2022-05-30 06:38 AM PDT -github-actions,2022-05-31T08:40:44Z,- github-actions commented on pull request: [3184](https://github.com/hackforla/website/pull/3184#issuecomment-1141846188) at 2022-05-31 01:40 AM PDT -github-actions,2022-05-31T15:39:12Z,- github-actions commented on pull request: [3185](https://github.com/hackforla/website/pull/3185#issuecomment-1142299050) at 2022-05-31 08:39 AM PDT -github-actions,2022-06-01T18:07:46Z,- github-actions commented on pull request: [3192](https://github.com/hackforla/website/pull/3192#issuecomment-1143972038) at 2022-06-01 11:07 AM PDT -github-actions,2022-06-02T06:20:07Z,- github-actions commented on pull request: [3193](https://github.com/hackforla/website/pull/3193#issuecomment-1144481345) at 2022-06-01 11:20 PM PDT -github-actions,2022-06-04T21:29:23Z,- github-actions commented on pull request: [3218](https://github.com/hackforla/website/pull/3218#issuecomment-1146688103) at 2022-06-04 02:29 PM PDT -github-actions,2022-06-04T22:10:04Z,- github-actions commented on pull request: [3219](https://github.com/hackforla/website/pull/3219#issuecomment-1146693027) at 2022-06-04 03:10 PM PDT -github-actions,2022-06-05T16:24:22Z,- github-actions commented on pull request: [3221](https://github.com/hackforla/website/pull/3221#issuecomment-1146842927) at 2022-06-05 09:24 AM PDT -github-actions,2022-06-05T21:32:07Z,- github-actions commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1146887146) at 2022-06-05 02:32 PM PDT -github-actions,2022-06-06T20:35:41Z,- github-actions commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1147897708) at 2022-06-06 01:35 PM PDT -github-actions,2022-06-07T06:03:44Z,- github-actions commented on pull request: [3226](https://github.com/hackforla/website/pull/3226#issuecomment-1148231851) at 2022-06-06 11:03 PM PDT -github-actions,2022-06-07T18:01:51Z,- github-actions commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1148999368) at 2022-06-07 11:01 AM PDT -github-actions,2022-06-08T19:39:04Z,- github-actions commented on pull request: [3235](https://github.com/hackforla/website/pull/3235#issuecomment-1150324500) at 2022-06-08 12:39 PM PDT -github-actions,2022-06-12T05:58:44Z,- github-actions commented on pull request: [3237](https://github.com/hackforla/website/pull/3237#issuecomment-1153079732) at 2022-06-11 10:58 PM PDT -github-actions,2022-06-14T02:16:41Z,- github-actions commented on pull request: [3241](https://github.com/hackforla/website/pull/3241#issuecomment-1154634567) at 2022-06-13 07:16 PM PDT -github-actions,2022-06-17T03:04:13Z,- github-actions commented on pull request: [3258](https://github.com/hackforla/website/pull/3258#issuecomment-1158439756) at 2022-06-16 08:04 PM PDT -github-actions,2022-06-18T22:14:35Z,- github-actions commented on pull request: [3259](https://github.com/hackforla/website/pull/3259#issuecomment-1159574023) at 2022-06-18 03:14 PM PDT -github-actions,2022-06-18T22:21:02Z,- github-actions commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159574780) at 2022-06-18 03:21 PM PDT -github-actions,2022-06-18T22:36:50Z,- github-actions commented on pull request: [3261](https://github.com/hackforla/website/pull/3261#issuecomment-1159576345) at 2022-06-18 03:36 PM PDT -github-actions,2022-06-20T06:28:49Z,- github-actions commented on pull request: [3262](https://github.com/hackforla/website/pull/3262#issuecomment-1160028154) at 2022-06-19 11:28 PM PDT -github-actions,2022-06-20T16:37:00Z,- github-actions commented on pull request: [3263](https://github.com/hackforla/website/pull/3263#issuecomment-1160653328) at 2022-06-20 09:37 AM PDT -github-actions,2022-06-20T19:02:42Z,- github-actions commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1160758651) at 2022-06-20 12:02 PM PDT -github-actions,2022-06-21T18:49:23Z,- github-actions commented on pull request: [3276](https://github.com/hackforla/website/pull/3276#issuecomment-1162187673) at 2022-06-21 11:49 AM PDT -github-actions,2022-06-22T03:15:24Z,- github-actions commented on pull request: [3285](https://github.com/hackforla/website/pull/3285#issuecomment-1162588701) at 2022-06-21 08:15 PM PDT -github-actions,2022-06-22T18:51:24Z,- github-actions commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1163487959) at 2022-06-22 11:51 AM PDT -github-actions,2022-06-22T22:54:02Z,- github-actions commented on pull request: [3288](https://github.com/hackforla/website/pull/3288#issuecomment-1163728707) at 2022-06-22 03:54 PM PDT -github-actions,2022-06-23T04:13:24Z,- github-actions commented on pull request: [3291](https://github.com/hackforla/website/pull/3291#issuecomment-1163906960) at 2022-06-22 09:13 PM PDT -github-actions,2022-06-23T18:33:05Z,- github-actions commented on pull request: [3293](https://github.com/hackforla/website/pull/3293#issuecomment-1164740333) at 2022-06-23 11:33 AM PDT -github-actions,2022-06-23T21:10:12Z,- github-actions commented on pull request: [3297](https://github.com/hackforla/website/pull/3297#issuecomment-1164876104) at 2022-06-23 02:10 PM PDT -github-actions,2022-06-23T23:37:58Z,- github-actions commented on pull request: [3298](https://github.com/hackforla/website/pull/3298#issuecomment-1165013747) at 2022-06-23 04:37 PM PDT -github-actions,2022-06-24T15:54:26Z,- github-actions commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1165707888) at 2022-06-24 08:54 AM PDT -github-actions,2022-06-25T15:15:39Z,- github-actions commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166308332) at 2022-06-25 08:15 AM PDT -github-actions,2022-06-26T07:26:07Z,- github-actions commented on pull request: [3303](https://github.com/hackforla/website/pull/3303#issuecomment-1166438824) at 2022-06-26 12:26 AM PDT -github-actions,2022-06-26T16:41:35Z,- github-actions commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166583564) at 2022-06-26 09:41 AM PDT -github-actions,2022-06-27T06:24:19Z,- github-actions commented on pull request: [3317](https://github.com/hackforla/website/pull/3317#issuecomment-1166926604) at 2022-06-26 11:24 PM PDT -github-actions,2022-06-27T18:16:03Z,- github-actions commented on pull request: [3319](https://github.com/hackforla/website/pull/3319#issuecomment-1167709619) at 2022-06-27 11:16 AM PDT -github-actions,2022-06-27T19:09:51Z,- github-actions commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1167770383) at 2022-06-27 12:09 PM PDT -github-actions,2022-06-27T21:20:12Z,- github-actions commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1167913742) at 2022-06-27 02:20 PM PDT -github-actions,2022-06-29T01:39:00Z,- github-actions commented on pull request: [3322](https://github.com/hackforla/website/pull/3322#issuecomment-1169442873) at 2022-06-28 06:39 PM PDT -github-actions,2022-06-29T02:38:01Z,- github-actions commented on pull request: [3323](https://github.com/hackforla/website/pull/3323#issuecomment-1169470282) at 2022-06-28 07:38 PM PDT -github-actions,2022-06-29T03:08:51Z,- github-actions commented on pull request: [3324](https://github.com/hackforla/website/pull/3324#issuecomment-1169485291) at 2022-06-28 08:08 PM PDT -github-actions,2022-06-30T17:58:48Z,- github-actions commented on pull request: [3326](https://github.com/hackforla/website/pull/3326#issuecomment-1171517561) at 2022-06-30 10:58 AM PDT -github-actions,2022-07-01T03:21:47Z,- github-actions commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1171888393) at 2022-06-30 08:21 PM PDT -github-actions,2022-07-05T16:30:13Z,- github-actions commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1175254528) at 2022-07-05 09:30 AM PDT -github-actions,2022-07-05T20:04:19Z,- github-actions commented on pull request: [3330](https://github.com/hackforla/website/pull/3330#issuecomment-1175450995) at 2022-07-05 01:04 PM PDT -github-actions,2022-07-06T02:27:27Z,- github-actions commented on pull request: [3332](https://github.com/hackforla/website/pull/3332#issuecomment-1175708098) at 2022-07-05 07:27 PM PDT -github-actions,2022-07-06T05:03:44Z,- github-actions commented on pull request: [3333](https://github.com/hackforla/website/pull/3333#issuecomment-1175784539) at 2022-07-05 10:03 PM PDT -github-actions,2022-07-07T17:34:55Z,- github-actions commented on pull request: [3338](https://github.com/hackforla/website/pull/3338#issuecomment-1177977743) at 2022-07-07 10:34 AM PDT -github-actions,2022-07-10T18:33:18Z,- github-actions commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1179777425) at 2022-07-10 11:33 AM PDT -github-actions,2022-07-11T21:18:14Z,- github-actions commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1180880051) at 2022-07-11 02:18 PM PDT -github-actions,2022-07-13T01:04:38Z,- github-actions commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1182648611) at 2022-07-12 06:04 PM PDT -github-actions,2022-07-13T01:20:39Z,- github-actions commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182656418) at 2022-07-12 06:20 PM PDT -github-actions,2022-07-13T17:15:14Z,- github-actions commented on pull request: [3367](https://github.com/hackforla/website/pull/3367#issuecomment-1183480174) at 2022-07-13 10:15 AM PDT -github-actions,2022-07-13T18:52:18Z,- github-actions commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1183565101) at 2022-07-13 11:52 AM PDT -github-actions,2022-07-14T00:42:57Z,- github-actions commented on pull request: [3369](https://github.com/hackforla/website/pull/3369#issuecomment-1183821555) at 2022-07-13 05:42 PM PDT -github-actions,2022-07-15T02:57:25Z,- github-actions commented on pull request: [3371](https://github.com/hackforla/website/pull/3371#issuecomment-1185116867) at 2022-07-14 07:57 PM PDT -github-actions,2022-07-15T04:15:47Z,- github-actions commented on pull request: [3372](https://github.com/hackforla/website/pull/3372#issuecomment-1185155624) at 2022-07-14 09:15 PM PDT -github-actions,2022-07-15T17:09:03Z,- github-actions commented on pull request: [3373](https://github.com/hackforla/website/pull/3373#issuecomment-1185738008) at 2022-07-15 10:09 AM PDT -github-actions,2022-07-16T22:18:25Z,- github-actions commented on pull request: [3375](https://github.com/hackforla/website/pull/3375#issuecomment-1186308520) at 2022-07-16 03:18 PM PDT -github-actions,2022-07-18T18:45:03Z,- github-actions commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1188107217) at 2022-07-18 11:45 AM PDT -github-actions,2022-07-18T18:53:59Z,- github-actions commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1188127884) at 2022-07-18 11:53 AM PDT -github-actions,2022-07-19T04:55:32Z,- github-actions commented on pull request: [3390](https://github.com/hackforla/website/pull/3390#issuecomment-1188598277) at 2022-07-18 09:55 PM PDT -github-actions,2022-07-19T16:49:24Z,- github-actions commented on pull request: [3391](https://github.com/hackforla/website/pull/3391#issuecomment-1189326075) at 2022-07-19 09:49 AM PDT -github-actions,2022-07-19T18:56:59Z,- github-actions commented on pull request: [3392](https://github.com/hackforla/website/pull/3392#issuecomment-1189444586) at 2022-07-19 11:56 AM PDT -github-actions,2022-07-19T19:09:26Z,- github-actions commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1189454921) at 2022-07-19 12:09 PM PDT -github-actions,2022-07-19T21:33:34Z,- github-actions commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1189572575) at 2022-07-19 02:33 PM PDT -github-actions,2022-07-20T01:49:10Z,- github-actions commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1189714906) at 2022-07-19 06:49 PM PDT -github-actions,2022-07-20T03:35:31Z,- github-actions commented on pull request: [3405](https://github.com/hackforla/website/pull/3405#issuecomment-1189779776) at 2022-07-19 08:35 PM PDT -github-actions,2022-07-20T19:38:43Z,- github-actions commented on pull request: [3407](https://github.com/hackforla/website/pull/3407#issuecomment-1190679252) at 2022-07-20 12:38 PM PDT -github-actions,2022-07-22T20:26:29Z,- github-actions commented on pull request: [3421](https://github.com/hackforla/website/pull/3421#issuecomment-1192910926) at 2022-07-22 01:26 PM PDT -github-actions,2022-07-22T22:04:04Z,- github-actions commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1192963903) at 2022-07-22 03:04 PM PDT -github-actions,2022-07-24T17:27:56Z,- github-actions commented on pull request: [3424](https://github.com/hackforla/website/pull/3424#issuecomment-1193361840) at 2022-07-24 10:27 AM PDT -github-actions,2022-07-24T23:05:59Z,- github-actions commented on pull request: [3425](https://github.com/hackforla/website/pull/3425#issuecomment-1193411782) at 2022-07-24 04:05 PM PDT -github-actions,2022-07-25T05:25:43Z,- github-actions commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1193596512) at 2022-07-24 10:25 PM PDT -github-actions,2022-07-25T19:29:50Z,- github-actions commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194523356) at 2022-07-25 12:29 PM PDT -github-actions,2022-07-26T00:53:37Z,- github-actions commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1194839180) at 2022-07-25 05:53 PM PDT -github-actions,2022-07-26T23:56:25Z,- github-actions commented on pull request: [3430](https://github.com/hackforla/website/pull/3430#issuecomment-1196109139) at 2022-07-26 04:56 PM PDT -github-actions,2022-07-27T01:13:39Z,- github-actions commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1196160312) at 2022-07-26 06:13 PM PDT -github-actions,2022-07-27T23:58:17Z,- github-actions commented on pull request: [3435](https://github.com/hackforla/website/pull/3435#issuecomment-1197500090) at 2022-07-27 04:58 PM PDT -github-actions,2022-07-28T04:27:44Z,- github-actions commented on pull request: [3436](https://github.com/hackforla/website/pull/3436#issuecomment-1197644540) at 2022-07-27 09:27 PM PDT -github-actions,2022-07-28T20:12:08Z,- github-actions commented on pull request: [3439](https://github.com/hackforla/website/pull/3439#issuecomment-1198586410) at 2022-07-28 01:12 PM PDT -github-actions,2022-07-29T02:33:34Z,- github-actions commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198818982) at 2022-07-28 07:33 PM PDT -github-actions,2022-07-29T02:38:59Z,- github-actions commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1198821272) at 2022-07-28 07:38 PM PDT -github-actions,2022-07-29T02:47:22Z,- github-actions commented on pull request: [3443](https://github.com/hackforla/website/pull/3443#issuecomment-1198824768) at 2022-07-28 07:47 PM PDT -github-actions,2022-07-30T05:34:04Z,- github-actions commented on pull request: [3444](https://github.com/hackforla/website/pull/3444#issuecomment-1200095415) at 2022-07-29 10:34 PM PDT -github-actions,2022-08-01T05:09:57Z,- github-actions commented on pull request: [3445](https://github.com/hackforla/website/pull/3445#issuecomment-1200714460) at 2022-07-31 10:09 PM PDT -github-actions,2022-08-01T09:06:28Z,- github-actions commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1200926004) at 2022-08-01 02:06 AM PDT -github-actions,2022-08-04T03:28:45Z,- github-actions commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1204713849) at 2022-08-03 08:28 PM PDT -github-actions,2022-08-05T06:09:55Z,- github-actions commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1206079962) at 2022-08-04 11:09 PM PDT -github-actions,2022-08-07T18:42:02Z,- github-actions commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1207463520) at 2022-08-07 11:42 AM PDT -github-actions,2022-08-08T23:54:40Z,- github-actions commented on pull request: [3454](https://github.com/hackforla/website/pull/3454#issuecomment-1208737998) at 2022-08-08 04:54 PM PDT -github-actions,2022-08-09T00:22:14Z,- github-actions commented on pull request: [3455](https://github.com/hackforla/website/pull/3455#issuecomment-1208753161) at 2022-08-08 05:22 PM PDT -github-actions,2022-08-09T23:55:49Z,- github-actions commented on pull request: [3456](https://github.com/hackforla/website/pull/3456#issuecomment-1210003587) at 2022-08-09 04:55 PM PDT -github-actions,2022-08-10T00:33:27Z,- github-actions commented on pull request: [3457](https://github.com/hackforla/website/pull/3457#issuecomment-1210022308) at 2022-08-09 05:33 PM PDT -github-actions,2022-08-11T07:04:10Z,- github-actions commented on pull request: [3460](https://github.com/hackforla/website/pull/3460#issuecomment-1211622476) at 2022-08-11 12:04 AM PDT -github-actions,2022-08-11T19:54:43Z,- github-actions commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1212425649) at 2022-08-11 12:54 PM PDT -github-actions,2022-08-12T02:34:08Z,- github-actions commented on pull request: [3463](https://github.com/hackforla/website/pull/3463#issuecomment-1212672958) at 2022-08-11 07:34 PM PDT -github-actions,2022-08-12T16:25:29Z,- github-actions commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1213298686) at 2022-08-12 09:25 AM PDT -github-actions,2022-08-13T16:37:06Z,- github-actions commented on pull request: [3467](https://github.com/hackforla/website/pull/3467#issuecomment-1214186631) at 2022-08-13 09:37 AM PDT -github-actions,2022-08-14T18:13:27Z,- github-actions commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214425486) at 2022-08-14 11:13 AM PDT -github-actions,2022-08-16T05:02:51Z,- github-actions commented on pull request: [3470](https://github.com/hackforla/website/pull/3470#issuecomment-1216150267) at 2022-08-15 10:02 PM PDT -github-actions,2022-08-17T05:31:20Z,- github-actions commented on pull request: [3471](https://github.com/hackforla/website/pull/3471#issuecomment-1217479543) at 2022-08-16 10:31 PM PDT -github-actions,2022-08-17T18:59:50Z,- github-actions commented on pull request: [3472](https://github.com/hackforla/website/pull/3472#issuecomment-1218383497) at 2022-08-17 11:59 AM PDT -github-actions,2022-08-18T20:00:14Z,- github-actions commented on pull request: [3474](https://github.com/hackforla/website/pull/3474#issuecomment-1219901408) at 2022-08-18 01:00 PM PDT -github-actions,2022-08-19T03:58:19Z,- github-actions commented on pull request: [3475](https://github.com/hackforla/website/pull/3475#issuecomment-1220222214) at 2022-08-18 08:58 PM PDT -github-actions,2022-08-19T04:55:29Z,- github-actions commented on pull request: [3476](https://github.com/hackforla/website/pull/3476#issuecomment-1220249344) at 2022-08-18 09:55 PM PDT -github-actions,2022-08-19T23:57:47Z,- github-actions commented on pull request: [3477](https://github.com/hackforla/website/pull/3477#issuecomment-1221178228) at 2022-08-19 04:57 PM PDT -github-actions,2022-08-20T00:13:52Z,- github-actions commented on pull request: [3478](https://github.com/hackforla/website/pull/3478#issuecomment-1221182965) at 2022-08-19 05:13 PM PDT -github-actions,2022-08-22T04:11:21Z,- github-actions commented on pull request: [3479](https://github.com/hackforla/website/pull/3479#issuecomment-1221783275) at 2022-08-21 09:11 PM PDT -github-actions,2022-08-22T06:40:07Z,- github-actions commented on pull request: [3480](https://github.com/hackforla/website/pull/3480#issuecomment-1221915779) at 2022-08-21 11:40 PM PDT -github-actions,2022-08-24T01:53:14Z,- github-actions commented on pull request: [3482](https://github.com/hackforla/website/pull/3482#issuecomment-1225080511) at 2022-08-23 06:53 PM PDT -github-actions,2022-08-24T18:45:18Z,- github-actions commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1226102254) at 2022-08-24 11:45 AM PDT -github-actions,2022-08-24T19:42:58Z,- github-actions commented on pull request: [3484](https://github.com/hackforla/website/pull/3484#issuecomment-1226169648) at 2022-08-24 12:42 PM PDT -github-actions,2022-08-24T19:50:43Z,- github-actions commented on pull request: [3485](https://github.com/hackforla/website/pull/3485#issuecomment-1226189762) at 2022-08-24 12:50 PM PDT -github-actions,2022-08-24T19:52:40Z,- github-actions commented on pull request: [3486](https://github.com/hackforla/website/pull/3486#issuecomment-1226194062) at 2022-08-24 12:52 PM PDT -github-actions,2022-08-26T20:45:09Z,- github-actions commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1228932857) at 2022-08-26 01:45 PM PDT -github-actions,2022-08-27T20:25:38Z,- github-actions commented on pull request: [3491](https://github.com/hackforla/website/pull/3491#issuecomment-1229260310) at 2022-08-27 01:25 PM PDT -github-actions,2022-08-28T03:28:10Z,- github-actions commented on pull request: [3495](https://github.com/hackforla/website/pull/3495#issuecomment-1229365839) at 2022-08-27 08:28 PM PDT -github-actions,2022-08-29T14:59:21Z,- github-actions commented on pull request: [3496](https://github.com/hackforla/website/pull/3496#issuecomment-1230431762) at 2022-08-29 07:59 AM PDT -github-actions,2022-08-29T17:46:41Z,- github-actions commented on pull request: [3497](https://github.com/hackforla/website/pull/3497#issuecomment-1230646342) at 2022-08-29 10:46 AM PDT -github-actions,2022-08-30T13:02:50Z,- github-actions commented on pull request: [3498](https://github.com/hackforla/website/pull/3498#issuecomment-1231637606) at 2022-08-30 06:02 AM PDT -github-actions,2022-08-30T23:24:33Z,- github-actions commented on pull request: [3502](https://github.com/hackforla/website/pull/3502#issuecomment-1232270467) at 2022-08-30 04:24 PM PDT -github-actions,2022-08-30T23:26:31Z,- github-actions commented on pull request: [3503](https://github.com/hackforla/website/pull/3503#issuecomment-1232271620) at 2022-08-30 04:26 PM PDT -github-actions,2022-08-30T23:36:16Z,- github-actions commented on pull request: [3505](https://github.com/hackforla/website/pull/3505#issuecomment-1232277700) at 2022-08-30 04:36 PM PDT -github-actions,2022-08-31T22:31:24Z,- github-actions commented on pull request: [3513](https://github.com/hackforla/website/pull/3513#issuecomment-1233486645) at 2022-08-31 03:31 PM PDT -github-actions,2022-09-01T18:23:40Z,- github-actions commented on pull request: [3514](https://github.com/hackforla/website/pull/3514#issuecomment-1234632341) at 2022-09-01 11:23 AM PDT -github-actions,2022-09-01T23:44:01Z,- github-actions commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1234915340) at 2022-09-01 04:44 PM PDT -github-actions,2022-09-02T22:42:54Z,- github-actions commented on pull request: [3516](https://github.com/hackforla/website/pull/3516#issuecomment-1235951131) at 2022-09-02 03:42 PM PDT -github-actions,2022-09-03T00:06:20Z,- github-actions commented on pull request: [3517](https://github.com/hackforla/website/pull/3517#issuecomment-1235991698) at 2022-09-02 05:06 PM PDT -github-actions,2022-09-03T21:17:03Z,- github-actions commented on pull request: [3518](https://github.com/hackforla/website/pull/3518#issuecomment-1236199775) at 2022-09-03 02:17 PM PDT -github-actions,2022-09-05T01:46:18Z,- github-actions commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1236471304) at 2022-09-04 06:46 PM PDT -github-actions,2022-09-07T02:47:18Z,- github-actions commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1238845980) at 2022-09-06 07:47 PM PDT -github-actions,2022-09-09T02:35:59Z,- github-actions commented on pull request: [3531](https://github.com/hackforla/website/pull/3531#issuecomment-1241431328) at 2022-09-08 07:35 PM PDT -github-actions,2022-09-11T16:57:57Z,- github-actions commented on pull request: [3534](https://github.com/hackforla/website/pull/3534#issuecomment-1243002991) at 2022-09-11 09:57 AM PDT -github-actions,2022-09-12T01:26:45Z,- github-actions commented on pull request: [3536](https://github.com/hackforla/website/pull/3536#issuecomment-1243106726) at 2022-09-11 06:26 PM PDT -github-actions,2022-09-13T05:49:45Z,- github-actions commented on pull request: [3548](https://github.com/hackforla/website/pull/3548#issuecomment-1244931349) at 2022-09-12 10:49 PM PDT -github-actions,2022-09-13T22:00:37Z,- github-actions commented on pull request: [3551](https://github.com/hackforla/website/pull/3551#issuecomment-1245994890) at 2022-09-13 03:00 PM PDT -github-actions,2022-09-14T20:45:04Z,- github-actions commented on pull request: [3556](https://github.com/hackforla/website/pull/3556#issuecomment-1247283715) at 2022-09-14 01:45 PM PDT -github-actions,2022-09-16T01:46:14Z,- github-actions commented on pull request: [3557](https://github.com/hackforla/website/pull/3557#issuecomment-1248820528) at 2022-09-15 06:46 PM PDT -github-actions,2022-09-16T04:49:21Z,- github-actions commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1248916000) at 2022-09-15 09:49 PM PDT -github-actions,2022-09-16T17:36:33Z,- github-actions commented on pull request: [3559](https://github.com/hackforla/website/pull/3559#issuecomment-1249618592) at 2022-09-16 10:36 AM PDT -github-actions,2022-09-16T18:26:42Z,- github-actions commented on pull request: [3560](https://github.com/hackforla/website/pull/3560#issuecomment-1249676098) at 2022-09-16 11:26 AM PDT -github-actions,2022-09-17T01:44:44Z,- github-actions commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1249973108) at 2022-09-16 06:44 PM PDT -github-actions,2022-09-19T20:16:23Z,- github-actions commented on pull request: [3564](https://github.com/hackforla/website/pull/3564#issuecomment-1251504915) at 2022-09-19 01:16 PM PDT -github-actions,2022-09-19T22:57:41Z,- github-actions commented on pull request: [3566](https://github.com/hackforla/website/pull/3566#issuecomment-1251653140) at 2022-09-19 03:57 PM PDT -github-actions,2022-09-20T18:11:58Z,- github-actions commented on pull request: [3567](https://github.com/hackforla/website/pull/3567#issuecomment-1252728628) at 2022-09-20 11:11 AM PDT -github-actions,2022-09-21T00:28:29Z,- github-actions commented on pull request: [3568](https://github.com/hackforla/website/pull/3568#issuecomment-1253049208) at 2022-09-20 05:28 PM PDT -github-actions,2022-09-21T18:24:56Z,- github-actions commented on pull request: [3573](https://github.com/hackforla/website/pull/3573#issuecomment-1254072156) at 2022-09-21 11:24 AM PDT -github-actions,2022-09-22T22:56:04Z,- github-actions commented on pull request: [3574](https://github.com/hackforla/website/pull/3574#issuecomment-1255638486) at 2022-09-22 03:56 PM PDT -github-actions,2022-09-23T01:23:56Z,- github-actions commented on pull request: [3575](https://github.com/hackforla/website/pull/3575#issuecomment-1255708724) at 2022-09-22 06:23 PM PDT -github-actions,2022-09-23T02:58:20Z,- github-actions commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1255750718) at 2022-09-22 07:58 PM PDT -github-actions,2022-09-23T14:23:14Z,- github-actions commented on pull request: [3577](https://github.com/hackforla/website/pull/3577#issuecomment-1256281369) at 2022-09-23 07:23 AM PDT -github-actions,2022-09-23T22:00:29Z,- github-actions commented on pull request: [3578](https://github.com/hackforla/website/pull/3578#issuecomment-1256716822) at 2022-09-23 03:00 PM PDT -github-actions,2022-09-24T00:15:45Z,- github-actions commented on pull request: [3579](https://github.com/hackforla/website/pull/3579#issuecomment-1256811212) at 2022-09-23 05:15 PM PDT -github-actions,2022-09-25T06:29:53Z,- github-actions commented on pull request: [3580](https://github.com/hackforla/website/pull/3580#issuecomment-1257131637) at 2022-09-24 11:29 PM PDT -github-actions,2022-09-26T16:32:51Z,- github-actions commented on pull request: [3582](https://github.com/hackforla/website/pull/3582#issuecomment-1258317284) at 2022-09-26 09:32 AM PDT -github-actions,2022-09-26T20:19:43Z,- github-actions commented on pull request: [3585](https://github.com/hackforla/website/pull/3585#issuecomment-1258575556) at 2022-09-26 01:19 PM PDT -github-actions,2022-09-27T18:39:16Z,- github-actions commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1259905686) at 2022-09-27 11:39 AM PDT -github-actions,2022-09-28T20:19:22Z,- github-actions commented on pull request: [3588](https://github.com/hackforla/website/pull/3588#issuecomment-1261422136) at 2022-09-28 01:19 PM PDT -github-actions,2022-09-29T00:07:21Z,- github-actions commented on pull request: [3589](https://github.com/hackforla/website/pull/3589#issuecomment-1261587408) at 2022-09-28 05:07 PM PDT -github-actions,2022-09-29T16:56:20Z,- github-actions commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1262550068) at 2022-09-29 09:56 AM PDT -github-actions,2022-09-29T23:42:32Z,- github-actions commented on pull request: [3591](https://github.com/hackforla/website/pull/3591#issuecomment-1262940574) at 2022-09-29 04:42 PM PDT -github-actions,2022-09-30T04:04:30Z,- github-actions commented on pull request: [3593](https://github.com/hackforla/website/pull/3593#issuecomment-1263075962) at 2022-09-29 09:04 PM PDT -github-actions,2022-10-01T01:43:01Z,- github-actions commented on pull request: [3594](https://github.com/hackforla/website/pull/3594#issuecomment-1264191291) at 2022-09-30 06:43 PM PDT -github-actions,2022-10-01T07:36:36Z,- github-actions commented on pull request: [3595](https://github.com/hackforla/website/pull/3595#issuecomment-1264277964) at 2022-10-01 12:36 AM PDT -github-actions,2022-10-02T21:25:42Z,- github-actions commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1264736564) at 2022-10-02 02:25 PM PDT -github-actions,2022-10-04T01:41:08Z,- github-actions commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1266289972) at 2022-10-03 06:41 PM PDT -github-actions,2022-10-07T15:24:28Z,- github-actions commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1271738365) at 2022-10-07 08:24 AM PDT -github-actions,2022-10-09T23:48:57Z,- github-actions commented on pull request: [3601](https://github.com/hackforla/website/pull/3601#issuecomment-1272655988) at 2022-10-09 04:48 PM PDT -github-actions,2022-10-12T04:24:47Z,- github-actions commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1275569520) at 2022-10-11 09:24 PM PDT -github-actions,2022-10-13T03:26:04Z,- github-actions commented on pull request: [3616](https://github.com/hackforla/website/pull/3616#issuecomment-1276977365) at 2022-10-12 08:26 PM PDT -github-actions,2022-10-13T21:41:45Z,- github-actions commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278208203) at 2022-10-13 02:41 PM PDT -github-actions,2022-10-13T22:35:00Z,- github-actions commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278248886) at 2022-10-13 03:35 PM PDT -github-actions,2022-10-14T15:36:02Z,- github-actions commented on pull request: [3620](https://github.com/hackforla/website/pull/3620#issuecomment-1279163983) at 2022-10-14 08:36 AM PDT -github-actions,2022-10-14T18:29:31Z,- github-actions commented on pull request: [3621](https://github.com/hackforla/website/pull/3621#issuecomment-1279331222) at 2022-10-14 11:29 AM PDT -github-actions,2022-10-14T20:16:34Z,- github-actions commented on pull request: [3622](https://github.com/hackforla/website/pull/3622#issuecomment-1279419271) at 2022-10-14 01:16 PM PDT -github-actions,2022-10-14T21:10:57Z,- github-actions commented on pull request: [3623](https://github.com/hackforla/website/pull/3623#issuecomment-1279471226) at 2022-10-14 02:10 PM PDT -github-actions,2022-10-14T23:02:35Z,- github-actions commented on pull request: [3624](https://github.com/hackforla/website/pull/3624#issuecomment-1279562656) at 2022-10-14 04:02 PM PDT -github-actions,2022-10-16T01:10:33Z,- github-actions commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1279864371) at 2022-10-15 06:10 PM PDT -github-actions,2022-10-16T07:26:30Z,- github-actions commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1279911326) at 2022-10-16 12:26 AM PDT -github-actions,2022-10-16T19:23:35Z,- github-actions commented on pull request: [3629](https://github.com/hackforla/website/pull/3629#issuecomment-1280036248) at 2022-10-16 12:23 PM PDT -github-actions,2022-10-17T01:40:40Z,- github-actions commented on pull request: [3631](https://github.com/hackforla/website/pull/3631#issuecomment-1280154021) at 2022-10-16 06:40 PM PDT -github-actions,2022-10-17T10:18:35Z,- github-actions commented on pull request: [3632](https://github.com/hackforla/website/pull/3632#issuecomment-1280627591) at 2022-10-17 03:18 AM PDT -github-actions,2022-10-17T23:02:58Z,- github-actions commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1281607535) at 2022-10-17 04:02 PM PDT -github-actions,2022-10-19T05:18:28Z,- github-actions commented on pull request: [3642](https://github.com/hackforla/website/pull/3642#issuecomment-1283443851) at 2022-10-18 10:18 PM PDT -github-actions,2022-10-20T03:16:19Z,- github-actions commented on pull request: [3643](https://github.com/hackforla/website/pull/3643#issuecomment-1284857753) at 2022-10-19 08:16 PM PDT -github-actions,2022-10-20T20:13:35Z,- github-actions commented on pull request: [3645](https://github.com/hackforla/website/pull/3645#issuecomment-1286086410) at 2022-10-20 01:13 PM PDT -github-actions,2022-10-21T03:00:59Z,- github-actions commented on pull request: [3646](https://github.com/hackforla/website/pull/3646#issuecomment-1286395259) at 2022-10-20 08:00 PM PDT -github-actions,2022-10-21T21:38:33Z,- github-actions commented on pull request: [3647](https://github.com/hackforla/website/pull/3647#issuecomment-1287461383) at 2022-10-21 02:38 PM PDT -github-actions,2022-10-22T01:43:10Z,- github-actions commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287575835) at 2022-10-21 06:43 PM PDT -github-actions,2022-10-22T18:54:54Z,- github-actions commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1287883348) at 2022-10-22 11:54 AM PDT -github-actions,2022-10-23T21:19:58Z,- github-actions commented on pull request: [3650](https://github.com/hackforla/website/pull/3650#issuecomment-1288203691) at 2022-10-23 02:19 PM PDT -github-actions,2022-10-24T07:54:11Z,- github-actions commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1288570526) at 2022-10-24 12:54 AM PDT -github-actions,2022-10-24T22:51:43Z,- github-actions commented on pull request: [3653](https://github.com/hackforla/website/pull/3653#issuecomment-1289731227) at 2022-10-24 03:51 PM PDT -github-actions,2022-10-25T00:22:09Z,- github-actions commented on pull request: [3654](https://github.com/hackforla/website/pull/3654#issuecomment-1289809946) at 2022-10-24 05:22 PM PDT -github-actions,2022-10-25T01:20:42Z,- github-actions commented on pull request: [3655](https://github.com/hackforla/website/pull/3655#issuecomment-1289852669) at 2022-10-24 06:20 PM PDT -github-actions,2022-10-25T02:05:48Z,- github-actions commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1289878356) at 2022-10-24 07:05 PM PDT -github-actions,2022-10-25T02:46:21Z,- github-actions commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1289903423) at 2022-10-24 07:46 PM PDT -github-actions,2022-10-25T07:41:29Z,- github-actions commented on pull request: [3658](https://github.com/hackforla/website/pull/3658#issuecomment-1290126342) at 2022-10-25 12:41 AM PDT -github-actions,2022-10-25T21:48:50Z,- github-actions commented on pull request: [3659](https://github.com/hackforla/website/pull/3659#issuecomment-1291180010) at 2022-10-25 02:48 PM PDT -github-actions,2022-10-26T01:30:34Z,- github-actions commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1291350193) at 2022-10-25 06:30 PM PDT -github-actions,2022-10-26T08:06:34Z,- github-actions commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1291653197) at 2022-10-26 01:06 AM PDT -github-actions,2022-10-26T21:33:54Z,- github-actions commented on pull request: [3666](https://github.com/hackforla/website/pull/3666#issuecomment-1292677267) at 2022-10-26 02:33 PM PDT -github-actions,2022-10-27T06:42:29Z,- github-actions commented on pull request: [3668](https://github.com/hackforla/website/pull/3668#issuecomment-1293065616) at 2022-10-26 11:42 PM PDT -github-actions,2022-10-28T06:17:22Z,- github-actions commented on pull request: [3671](https://github.com/hackforla/website/pull/3671#issuecomment-1294512789) at 2022-10-27 11:17 PM PDT -github-actions,2022-10-28T19:27:27Z,- github-actions commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1295373357) at 2022-10-28 12:27 PM PDT -github-actions,2022-10-29T01:33:26Z,- github-actions commented on pull request: [3673](https://github.com/hackforla/website/pull/3673#issuecomment-1295680655) at 2022-10-28 06:33 PM PDT -github-actions,2022-10-29T22:04:15Z,- github-actions commented on pull request: [3674](https://github.com/hackforla/website/pull/3674#issuecomment-1295997067) at 2022-10-29 03:04 PM PDT -github-actions,2022-10-30T08:46:25Z,- github-actions commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1296171449) at 2022-10-30 01:46 AM PDT -github-actions,2022-10-30T08:50:48Z,- github-actions commented on pull request: [3676](https://github.com/hackforla/website/pull/3676#issuecomment-1296172836) at 2022-10-30 01:50 AM PDT -github-actions,2022-10-31T03:19:30Z,- github-actions commented on pull request: [3677](https://github.com/hackforla/website/pull/3677#issuecomment-1296485517) at 2022-10-30 08:19 PM PDT -github-actions,2022-10-31T19:52:11Z,- github-actions commented on pull request: [3679](https://github.com/hackforla/website/pull/3679#issuecomment-1297597126) at 2022-10-31 12:52 PM PDT -github-actions,2022-10-31T19:57:14Z,- github-actions commented on pull request: [3680](https://github.com/hackforla/website/pull/3680#issuecomment-1297602579) at 2022-10-31 12:57 PM PDT -github-actions,2022-11-01T01:02:11Z,- github-actions commented on pull request: [3681](https://github.com/hackforla/website/pull/3681#issuecomment-1297872366) at 2022-10-31 06:02 PM PDT -github-actions,2022-11-01T05:26:26Z,- github-actions commented on pull request: [3686](https://github.com/hackforla/website/pull/3686#issuecomment-1298047276) at 2022-10-31 10:26 PM PDT -github-actions,2022-11-01T17:04:17Z,- github-actions commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1298840403) at 2022-11-01 10:04 AM PDT -github-actions,2022-11-02T05:06:15Z,- github-actions commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1299577185) at 2022-11-01 10:06 PM PDT -github-actions,2022-11-03T04:03:04Z,- github-actions commented on pull request: [3692](https://github.com/hackforla/website/pull/3692#issuecomment-1301615172) at 2022-11-02 09:03 PM PDT -github-actions,2022-11-05T05:08:19Z,- github-actions commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304408471) at 2022-11-04 09:08 PM PST -github-actions,2022-11-05T07:05:26Z,- github-actions commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304427514) at 2022-11-04 11:05 PM PST -github-actions,2022-11-07T23:37:37Z,- github-actions commented on pull request: [3698](https://github.com/hackforla/website/pull/3698#issuecomment-1306376424) at 2022-11-07 03:37 PM PST -github-actions,2022-11-08T06:52:50Z,- github-actions commented on pull request: [3699](https://github.com/hackforla/website/pull/3699#issuecomment-1306716920) at 2022-11-07 10:52 PM PST -github-actions,2022-11-08T12:53:43Z,- github-actions commented on pull request: [3700](https://github.com/hackforla/website/pull/3700#issuecomment-1307169225) at 2022-11-08 04:53 AM PST -github-actions,2022-11-08T23:30:55Z,- github-actions commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1307976027) at 2022-11-08 03:30 PM PST -github-actions,2022-11-09T00:24:52Z,- github-actions commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1308021271) at 2022-11-08 04:24 PM PST -github-actions,2022-11-09T02:38:59Z,- github-actions commented on pull request: [3705](https://github.com/hackforla/website/pull/3705#issuecomment-1308122043) at 2022-11-08 06:38 PM PST -github-actions,2022-11-10T21:22:40Z,- github-actions commented on pull request: [3713](https://github.com/hackforla/website/pull/3713#issuecomment-1310907599) at 2022-11-10 01:22 PM PST -github-actions,2022-11-11T02:11:18Z,- github-actions commented on pull request: [3714](https://github.com/hackforla/website/pull/3714#issuecomment-1311138562) at 2022-11-10 06:11 PM PST -github-actions,2022-11-11T03:53:05Z,- github-actions commented on pull request: [3715](https://github.com/hackforla/website/pull/3715#issuecomment-1311198134) at 2022-11-10 07:53 PM PST -github-actions,2022-11-12T07:56:32Z,- github-actions commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312403138) at 2022-11-11 11:56 PM PST -github-actions,2022-11-14T04:54:59Z,- github-actions commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1313095078) at 2022-11-13 08:54 PM PST -github-actions,2022-11-15T00:33:27Z,- github-actions commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314594651) at 2022-11-14 04:33 PM PST -github-actions,2022-11-15T06:44:57Z,- github-actions commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1314847589) at 2022-11-14 10:44 PM PST -github-actions,2022-11-15T18:39:13Z,- github-actions commented on pull request: [3721](https://github.com/hackforla/website/pull/3721#issuecomment-1315718247) at 2022-11-15 10:39 AM PST -github-actions,2022-11-16T08:50:25Z,- github-actions commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1316618661) at 2022-11-16 12:50 AM PST -github-actions,2022-11-16T19:38:48Z,- github-actions commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1317571560) at 2022-11-16 11:38 AM PST -github-actions,2022-11-16T21:58:39Z,- github-actions commented on pull request: [3727](https://github.com/hackforla/website/pull/3727#issuecomment-1317725259) at 2022-11-16 01:58 PM PST -github-actions,2022-11-17T01:08:52Z,- github-actions commented on pull request: [3728](https://github.com/hackforla/website/pull/3728#issuecomment-1317909553) at 2022-11-16 05:08 PM PST -github-actions,2022-11-17T19:57:23Z,- github-actions commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319131274) at 2022-11-17 11:57 AM PST -github-actions,2022-11-18T00:47:59Z,- github-actions commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319405778) at 2022-11-17 04:47 PM PST -github-actions,2022-11-20T01:07:44Z,- github-actions commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321005358) at 2022-11-19 05:07 PM PST -github-actions,2022-11-21T21:56:25Z,- github-actions commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1322702043) at 2022-11-21 01:56 PM PST -github-actions,2022-11-21T22:23:08Z,- github-actions commented on pull request: [3737](https://github.com/hackforla/website/pull/3737#issuecomment-1322729626) at 2022-11-21 02:23 PM PST -github-actions,2022-11-22T02:42:29Z,- github-actions commented on pull request: [3739](https://github.com/hackforla/website/pull/3739#issuecomment-1322946215) at 2022-11-21 06:42 PM PST -github-actions,2022-11-22T02:42:56Z,- github-actions commented on pull request: [3740](https://github.com/hackforla/website/pull/3740#issuecomment-1322946594) at 2022-11-21 06:42 PM PST -github-actions,2022-11-22T07:25:01Z,- github-actions commented on pull request: [3741](https://github.com/hackforla/website/pull/3741#issuecomment-1323222699) at 2022-11-21 11:25 PM PST -github-actions,2022-11-23T03:43:17Z,- github-actions commented on pull request: [3743](https://github.com/hackforla/website/pull/3743#issuecomment-1324511609) at 2022-11-22 07:43 PM PST -github-actions,2022-11-25T03:57:23Z,- github-actions commented on pull request: [3745](https://github.com/hackforla/website/pull/3745#issuecomment-1326997721) at 2022-11-24 07:57 PM PST -github-actions,2022-11-27T22:13:35Z,- github-actions commented on pull request: [3749](https://github.com/hackforla/website/pull/3749#issuecomment-1328352655) at 2022-11-27 02:13 PM PST -github-actions,2022-11-28T06:29:09Z,- github-actions commented on pull request: [3751](https://github.com/hackforla/website/pull/3751#issuecomment-1328605843) at 2022-11-27 10:29 PM PST -github-actions,2022-11-28T18:30:26Z,- github-actions commented on pull request: [3752](https://github.com/hackforla/website/pull/3752#issuecomment-1329555233) at 2022-11-28 10:30 AM PST -github-actions,2022-11-28T21:59:43Z,- github-actions commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1329809392) at 2022-11-28 01:59 PM PST -github-actions,2022-11-30T01:15:09Z,- github-actions commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1331520428) at 2022-11-29 05:15 PM PST -github-actions,2022-12-02T04:10:29Z,- github-actions commented on pull request: [3762](https://github.com/hackforla/website/pull/3762#issuecomment-1334740191) at 2022-12-01 08:10 PM PST -github-actions,2022-12-02T21:55:50Z,- github-actions commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1335883373) at 2022-12-02 01:55 PM PST -github-actions,2022-12-06T01:13:32Z,- github-actions commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1338520787) at 2022-12-05 05:13 PM PST -github-actions,2022-12-09T06:33:41Z,- github-actions commented on pull request: [3768](https://github.com/hackforla/website/pull/3768#issuecomment-1343911309) at 2022-12-08 10:33 PM PST -github-actions,2022-12-27T19:49:00Z,- github-actions commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1366135336) at 2022-12-27 11:49 AM PST -github-actions,2023-01-05T08:01:20Z,- github-actions commented on pull request: [3795](https://github.com/hackforla/website/pull/3795#issuecomment-1371892524) at 2023-01-05 12:01 AM PST -github-actions,2023-01-06T23:23:32Z,- github-actions commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1374249934) at 2023-01-06 03:23 PM PST -github-actions,2023-01-09T17:38:00Z,- github-actions commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1376004145) at 2023-01-09 09:38 AM PST -github-actions,2023-01-09T20:20:07Z,- github-actions commented on pull request: [3800](https://github.com/hackforla/website/pull/3800#issuecomment-1376266543) at 2023-01-09 12:20 PM PST -github-actions,2023-01-09T22:20:10Z,- github-actions commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1376410119) at 2023-01-09 02:20 PM PST -github-actions,2023-01-10T16:04:53Z,- github-actions commented on pull request: [3804](https://github.com/hackforla/website/pull/3804#issuecomment-1377495195) at 2023-01-10 08:04 AM PST -github-actions,2023-01-10T21:10:08Z,- github-actions commented on pull request: [3806](https://github.com/hackforla/website/pull/3806#issuecomment-1377858924) at 2023-01-10 01:10 PM PST -github-actions,2023-01-10T21:54:38Z,- github-actions commented on pull request: [3807](https://github.com/hackforla/website/pull/3807#issuecomment-1377941654) at 2023-01-10 01:54 PM PST -github-actions,2023-01-11T01:09:09Z,- github-actions commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378106251) at 2023-01-10 05:09 PM PST -github-actions,2023-01-11T06:48:15Z,- github-actions commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1378307723) at 2023-01-10 10:48 PM PST -github-actions,2023-01-11T22:46:17Z,- github-actions commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1379580108) at 2023-01-11 02:46 PM PST -github-actions,2023-01-12T23:33:49Z,- github-actions commented on pull request: [3811](https://github.com/hackforla/website/pull/3811#issuecomment-1381106162) at 2023-01-12 03:33 PM PST -github-actions,2023-01-13T00:40:55Z,- github-actions commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1381160651) at 2023-01-12 04:40 PM PST -github-actions,2023-01-13T20:14:58Z,- github-actions commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1382342761) at 2023-01-13 12:14 PM PST -github-actions,2023-01-13T21:27:36Z,- github-actions commented on pull request: [3815](https://github.com/hackforla/website/pull/3815#issuecomment-1382410466) at 2023-01-13 01:27 PM PST -github-actions,2023-01-14T00:23:36Z,- github-actions commented on pull request: [3816](https://github.com/hackforla/website/pull/3816#issuecomment-1382603701) at 2023-01-13 04:23 PM PST -github-actions,2023-01-15T17:25:00Z,- github-actions commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1383206274) at 2023-01-15 09:25 AM PST -github-actions,2023-01-15T18:21:36Z,- github-actions commented on pull request: [3819](https://github.com/hackforla/website/pull/3819#issuecomment-1383218024) at 2023-01-15 10:21 AM PST -github-actions,2023-01-17T06:14:59Z,- github-actions commented on pull request: [3832](https://github.com/hackforla/website/pull/3832#issuecomment-1384885020) at 2023-01-16 10:14 PM PST -github-actions,2023-01-17T06:57:21Z,- github-actions commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1384915458) at 2023-01-16 10:57 PM PST -github-actions,2023-01-17T16:42:28Z,- github-actions commented on pull request: [3834](https://github.com/hackforla/website/pull/3834#issuecomment-1385710265) at 2023-01-17 08:42 AM PST -github-actions,2023-01-17T18:38:23Z,- github-actions commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1385863994) at 2023-01-17 10:38 AM PST -github-actions,2023-01-17T19:18:27Z,- github-actions commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1385928091) at 2023-01-17 11:18 AM PST -github-actions,2023-01-18T02:45:31Z,- github-actions commented on pull request: [3838](https://github.com/hackforla/website/pull/3838#issuecomment-1386396399) at 2023-01-17 06:45 PM PST -github-actions,2023-01-18T04:52:08Z,- github-actions commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1386485113) at 2023-01-17 08:52 PM PST -github-actions,2023-01-18T23:03:51Z,- github-actions commented on pull request: [3841](https://github.com/hackforla/website/pull/3841#issuecomment-1396209307) at 2023-01-18 03:03 PM PST -github-actions,2023-01-19T05:40:10Z,- github-actions commented on pull request: [3842](https://github.com/hackforla/website/pull/3842#issuecomment-1396465759) at 2023-01-18 09:40 PM PST -github-actions,2023-01-19T22:18:01Z,- github-actions commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1397686880) at 2023-01-19 02:18 PM PST -github-actions,2023-01-20T01:58:06Z,- github-actions commented on pull request: [3845](https://github.com/hackforla/website/pull/3845#issuecomment-1397832547) at 2023-01-19 05:58 PM PST -github-actions,2023-01-21T04:28:46Z,- github-actions commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1399175346) at 2023-01-20 08:28 PM PST -github-actions,2023-01-21T16:42:46Z,- github-actions commented on pull request: [3847](https://github.com/hackforla/website/pull/3847#issuecomment-1399285890) at 2023-01-21 08:42 AM PST -github-actions,2023-01-22T03:22:19Z,- github-actions commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1399394599) at 2023-01-21 07:22 PM PST -github-actions,2023-01-24T04:20:32Z,- github-actions commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1401376985) at 2023-01-23 08:20 PM PST -github-actions,2023-01-24T17:28:58Z,- github-actions commented on pull request: [3865](https://github.com/hackforla/website/pull/3865#issuecomment-1402323723) at 2023-01-24 09:28 AM PST -github-actions,2023-01-24T20:01:05Z,- github-actions commented on pull request: [3867](https://github.com/hackforla/website/pull/3867#issuecomment-1402538163) at 2023-01-24 12:01 PM PST -github-actions,2023-01-27T00:25:34Z,- github-actions commented on pull request: [3880](https://github.com/hackforla/website/pull/3880#issuecomment-1405853079) at 2023-01-26 04:25 PM PST -github-actions,2023-01-27T04:12:12Z,- github-actions commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1405995034) at 2023-01-26 08:12 PM PST -github-actions,2023-01-28T18:01:30Z,- github-actions commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1407453049) at 2023-01-28 10:01 AM PST -github-actions,2023-01-29T03:01:11Z,- github-actions commented on pull request: [3888](https://github.com/hackforla/website/pull/3888#issuecomment-1407546024) at 2023-01-28 07:01 PM PST -github-actions,2023-01-30T00:59:07Z,- github-actions commented on pull request: [3894](https://github.com/hackforla/website/pull/3894#issuecomment-1407834568) at 2023-01-29 04:59 PM PST -github-actions,2023-01-30T05:19:00Z,- github-actions commented on pull request: [3896](https://github.com/hackforla/website/pull/3896#issuecomment-1408015507) at 2023-01-29 09:19 PM PST -github-actions,2023-01-30T05:38:52Z,- github-actions commented on pull request: [3897](https://github.com/hackforla/website/pull/3897#issuecomment-1408028435) at 2023-01-29 09:38 PM PST -github-actions,2023-01-30T18:08:23Z,- github-actions commented on pull request: [3901](https://github.com/hackforla/website/pull/3901#issuecomment-1409084728) at 2023-01-30 10:08 AM PST -github-actions,2023-01-31T03:45:59Z,- github-actions commented on pull request: [3905](https://github.com/hackforla/website/pull/3905#issuecomment-1409710645) at 2023-01-30 07:45 PM PST -github-actions,2023-01-31T23:52:59Z,- github-actions commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1411230946) at 2023-01-31 03:52 PM PST -github-actions,2023-02-02T07:24:16Z,- github-actions commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1413264808) at 2023-02-01 11:24 PM PST -github-actions,2023-02-02T09:47:43Z,- github-actions commented on pull request: [3924](https://github.com/hackforla/website/pull/3924#issuecomment-1413437521) at 2023-02-02 01:47 AM PST -github-actions,2023-02-02T21:46:57Z,- github-actions commented on pull request: [3926](https://github.com/hackforla/website/pull/3926#issuecomment-1414418891) at 2023-02-02 01:46 PM PST -github-actions,2023-02-03T01:15:06Z,- github-actions commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1414580689) at 2023-02-02 05:15 PM PST -github-actions,2023-02-03T04:02:41Z,- github-actions commented on pull request: [3928](https://github.com/hackforla/website/pull/3928#issuecomment-1414855629) at 2023-02-02 08:02 PM PST -github-actions,2023-02-03T21:33:34Z,- github-actions commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1416425272) at 2023-02-03 01:33 PM PST -github-actions,2023-02-04T00:40:21Z,- github-actions commented on pull request: [3932](https://github.com/hackforla/website/pull/3932#issuecomment-1416561758) at 2023-02-03 04:40 PM PST -github-actions,2023-02-05T01:50:56Z,- github-actions commented on pull request: [3935](https://github.com/hackforla/website/pull/3935#issuecomment-1416897837) at 2023-02-04 05:50 PM PST -github-actions,2023-02-05T22:39:37Z,- github-actions commented on pull request: [3939](https://github.com/hackforla/website/pull/3939#issuecomment-1418284490) at 2023-02-05 02:39 PM PST -github-actions,2023-02-05T22:44:36Z,- github-actions commented on pull request: [3940](https://github.com/hackforla/website/pull/3940#issuecomment-1418285523) at 2023-02-05 02:44 PM PST -github-actions,2023-02-06T03:55:28Z,- github-actions commented on pull request: [3941](https://github.com/hackforla/website/pull/3941#issuecomment-1418471802) at 2023-02-05 07:55 PM PST -github-actions,2023-02-07T02:03:09Z,- github-actions commented on pull request: [3945](https://github.com/hackforla/website/pull/3945#issuecomment-1420062946) at 2023-02-06 06:03 PM PST -github-actions,2023-02-07T08:36:58Z,- github-actions commented on pull request: [3947](https://github.com/hackforla/website/pull/3947#issuecomment-1420390108) at 2023-02-07 12:36 AM PST -github-actions,2023-02-07T23:06:37Z,- github-actions commented on pull request: [3954](https://github.com/hackforla/website/pull/3954#issuecomment-1421593534) at 2023-02-07 03:06 PM PST -github-actions,2023-02-09T00:11:31Z,- github-actions commented on pull request: [3956](https://github.com/hackforla/website/pull/3956#issuecomment-1423404621) at 2023-02-08 04:11 PM PST -github-actions,2023-02-10T20:09:57Z,- github-actions commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1426284952) at 2023-02-10 12:09 PM PST -github-actions,2023-02-11T02:03:22Z,- github-actions commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1426571686) at 2023-02-10 06:03 PM PST -github-actions,2023-02-11T18:38:24Z,- github-actions commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1426848940) at 2023-02-11 10:38 AM PST -github-actions,2023-02-13T02:41:58Z,- github-actions commented on pull request: [3965](https://github.com/hackforla/website/pull/3965#issuecomment-1427248413) at 2023-02-12 06:41 PM PST -github-actions,2023-02-15T00:28:13Z,- github-actions commented on pull request: [3977](https://github.com/hackforla/website/pull/3977#issuecomment-1430578483) at 2023-02-14 04:28 PM PST -github-actions,2023-02-15T01:52:29Z,- github-actions commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1430639199) at 2023-02-14 05:52 PM PST -github-actions,2023-02-15T03:00:09Z,- github-actions commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1430682407) at 2023-02-14 07:00 PM PST -github-actions,2023-02-15T05:15:52Z,- github-actions commented on pull request: [3982](https://github.com/hackforla/website/pull/3982#issuecomment-1430769117) at 2023-02-14 09:15 PM PST -github-actions,2023-02-15T17:29:35Z,- github-actions commented on pull request: [3984](https://github.com/hackforla/website/pull/3984#issuecomment-1431743483) at 2023-02-15 09:29 AM PST -github-actions,2023-02-16T19:00:35Z,- github-actions commented on pull request: [3988](https://github.com/hackforla/website/pull/3988#issuecomment-1433574599) at 2023-02-16 11:00 AM PST -github-actions,2023-02-17T01:24:16Z,- github-actions commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1433964648) at 2023-02-16 05:24 PM PST -github-actions,2023-02-17T03:26:05Z,- github-actions commented on pull request: [3993](https://github.com/hackforla/website/pull/3993#issuecomment-1434044906) at 2023-02-16 07:26 PM PST -github-actions,2023-02-17T03:30:23Z,- github-actions commented on pull request: [3994](https://github.com/hackforla/website/pull/3994#issuecomment-1434047512) at 2023-02-16 07:30 PM PST -github-actions,2023-02-17T04:43:10Z,- github-actions commented on pull request: [3995](https://github.com/hackforla/website/pull/3995#issuecomment-1434094904) at 2023-02-16 08:43 PM PST -github-actions,2023-02-17T19:55:31Z,- github-actions commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435167029) at 2023-02-17 11:55 AM PST -github-actions,2023-02-17T20:02:20Z,- github-actions commented on pull request: [4003](https://github.com/hackforla/website/pull/4003#issuecomment-1435174290) at 2023-02-17 12:02 PM PST -github-actions,2023-02-17T21:32:37Z,- github-actions commented on pull request: [4004](https://github.com/hackforla/website/pull/4004#issuecomment-1435294945) at 2023-02-17 01:32 PM PST -github-actions,2023-02-18T05:30:36Z,- github-actions commented on pull request: [4005](https://github.com/hackforla/website/pull/4005#issuecomment-1435489858) at 2023-02-17 09:30 PM PST -github-actions,2023-02-20T03:07:54Z,- github-actions commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1436249448) at 2023-02-19 07:07 PM PST -github-actions,2023-02-20T23:06:48Z,- github-actions commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1437654314) at 2023-02-20 03:06 PM PST -github-actions,2023-02-21T04:43:09Z,- github-actions commented on pull request: [4018](https://github.com/hackforla/website/pull/4018#issuecomment-1437850770) at 2023-02-20 08:43 PM PST -github-actions,2023-02-21T08:30:05Z,- github-actions commented on pull request: [4019](https://github.com/hackforla/website/pull/4019#issuecomment-1438040049) at 2023-02-21 12:30 AM PST -github-actions,2023-02-21T18:38:46Z,- github-actions commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1438934159) at 2023-02-21 10:38 AM PST -github-actions,2023-02-22T01:02:01Z,- github-actions commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1439291166) at 2023-02-21 05:02 PM PST -github-actions,2023-02-22T01:17:58Z,- github-actions commented on pull request: [4022](https://github.com/hackforla/website/pull/4022#issuecomment-1439303017) at 2023-02-21 05:17 PM PST -github-actions,2023-02-23T06:10:37Z,- github-actions commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1441256465) at 2023-02-22 10:10 PM PST -github-actions,2023-02-23T08:30:03Z,- github-actions commented on pull request: [4029](https://github.com/hackforla/website/pull/4029#issuecomment-1441369929) at 2023-02-23 12:30 AM PST -github-actions,2023-02-23T18:21:42Z,- github-actions commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442230517) at 2023-02-23 10:21 AM PST -github-actions,2023-02-24T16:55:51Z,- github-actions commented on pull request: [4034](https://github.com/hackforla/website/pull/4034#issuecomment-1444014261) at 2023-02-24 08:55 AM PST -github-actions,2023-02-25T05:15:47Z,- github-actions commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1444997364) at 2023-02-24 09:15 PM PST -github-actions,2023-02-25T08:30:04Z,- github-actions commented on pull request: [4039](https://github.com/hackforla/website/pull/4039#issuecomment-1445029897) at 2023-02-25 12:30 AM PST -github-actions,2023-02-25T21:04:59Z,- github-actions commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1445206332) at 2023-02-25 01:04 PM PST -github-actions,2023-02-26T22:13:23Z,- github-actions commented on pull request: [4052](https://github.com/hackforla/website/pull/4052#issuecomment-1445481595) at 2023-02-26 02:13 PM PST -github-actions,2023-02-28T02:21:58Z,- github-actions commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1447468696) at 2023-02-27 06:21 PM PST -github-actions,2023-02-28T18:08:46Z,- github-actions commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1448641762) at 2023-02-28 10:08 AM PST -github-actions,2023-02-28T18:22:23Z,- github-actions commented on pull request: [4057](https://github.com/hackforla/website/pull/4057#issuecomment-1448658289) at 2023-02-28 10:22 AM PST -github-actions,2023-02-28T23:44:16Z,- github-actions commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1449094947) at 2023-02-28 03:44 PM PST -github-actions,2023-03-01T05:55:57Z,- github-actions commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1449392056) at 2023-02-28 09:55 PM PST -github-actions,2023-03-01T07:45:49Z,- github-actions commented on pull request: [4078](https://github.com/hackforla/website/pull/4078#issuecomment-1449497552) at 2023-02-28 11:45 PM PST -github-actions,2023-03-01T08:30:08Z,- github-actions commented on pull request: [4079](https://github.com/hackforla/website/pull/4079#issuecomment-1449554164) at 2023-03-01 12:30 AM PST -github-actions,2023-03-01T19:44:05Z,- github-actions commented on pull request: [4080](https://github.com/hackforla/website/pull/4080#issuecomment-1450751613) at 2023-03-01 11:44 AM PST -github-actions,2023-03-02T04:07:34Z,- github-actions commented on pull request: [4086](https://github.com/hackforla/website/pull/4086#issuecomment-1451271129) at 2023-03-01 08:07 PM PST -github-actions,2023-03-02T09:19:43Z,- github-actions commented on pull request: [4089](https://github.com/hackforla/website/pull/4089#issuecomment-1451548281) at 2023-03-02 01:19 AM PST -github-actions,2023-03-02T18:26:29Z,- github-actions commented on pull request: [4091](https://github.com/hackforla/website/pull/4091#issuecomment-1452341611) at 2023-03-02 10:26 AM PST -github-actions,2023-03-03T01:35:58Z,- github-actions commented on pull request: [4092](https://github.com/hackforla/website/pull/4092#issuecomment-1452808316) at 2023-03-02 05:35 PM PST -github-actions,2023-03-03T02:32:11Z,- github-actions commented on pull request: [4093](https://github.com/hackforla/website/pull/4093#issuecomment-1452867696) at 2023-03-02 06:32 PM PST -github-actions,2023-03-03T02:40:38Z,- github-actions commented on pull request: [4094](https://github.com/hackforla/website/pull/4094#issuecomment-1452872755) at 2023-03-02 06:40 PM PST -github-actions,2023-03-03T05:46:21Z,- github-actions commented on pull request: [4096](https://github.com/hackforla/website/pull/4096#issuecomment-1453008152) at 2023-03-02 09:46 PM PST -github-actions,2023-03-03T06:08:23Z,- github-actions commented on pull request: [4097](https://github.com/hackforla/website/pull/4097#issuecomment-1453025988) at 2023-03-02 10:08 PM PST -github-actions,2023-03-03T08:30:06Z,- github-actions commented on pull request: [4098](https://github.com/hackforla/website/pull/4098#issuecomment-1453157130) at 2023-03-03 12:30 AM PST -github-actions,2023-03-03T09:51:46Z,- github-actions commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1453258079) at 2023-03-03 01:51 AM PST -github-actions,2023-03-03T16:55:25Z,- github-actions commented on pull request: [4100](https://github.com/hackforla/website/pull/4100#issuecomment-1453818423) at 2023-03-03 08:55 AM PST -github-actions,2023-03-03T18:03:21Z,- github-actions commented on pull request: [4102](https://github.com/hackforla/website/pull/4102#issuecomment-1453900929) at 2023-03-03 10:03 AM PST -github-actions,2023-03-03T18:32:36Z,- github-actions commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1453931898) at 2023-03-03 10:32 AM PST -github-actions,2023-03-04T00:47:56Z,- github-actions commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1454305865) at 2023-03-03 04:47 PM PST -github-actions,2023-03-04T01:54:12Z,- github-actions commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1454331647) at 2023-03-03 05:54 PM PST -github-actions,2023-03-04T04:53:38Z,- github-actions commented on pull request: [4107](https://github.com/hackforla/website/pull/4107#issuecomment-1454430971) at 2023-03-03 08:53 PM PST -github-actions,2023-03-04T07:52:17Z,- github-actions commented on pull request: [4109](https://github.com/hackforla/website/pull/4109#issuecomment-1454657179) at 2023-03-03 11:52 PM PST -github-actions,2023-03-04T17:53:47Z,- github-actions commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454821169) at 2023-03-04 09:53 AM PST -github-actions,2023-03-05T16:47:42Z,- github-actions commented on pull request: [4114](https://github.com/hackforla/website/pull/4114#issuecomment-1455143124) at 2023-03-05 08:47 AM PST -github-actions,2023-03-05T20:42:47Z,- github-actions commented on pull request: [4115](https://github.com/hackforla/website/pull/4115#issuecomment-1455200007) at 2023-03-05 12:42 PM PST -github-actions,2023-03-06T17:55:05Z,- github-actions commented on pull request: [4119](https://github.com/hackforla/website/pull/4119#issuecomment-1456647766) at 2023-03-06 09:55 AM PST -github-actions,2023-03-07T00:10:58Z,- github-actions commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1457250012) at 2023-03-06 04:10 PM PST -github-actions,2023-03-07T00:57:04Z,- github-actions commented on pull request: [4122](https://github.com/hackforla/website/pull/4122#issuecomment-1457297820) at 2023-03-06 04:57 PM PST -github-actions,2023-03-07T04:23:06Z,- github-actions commented on pull request: [4123](https://github.com/hackforla/website/pull/4123#issuecomment-1457506094) at 2023-03-06 08:23 PM PST -github-actions,2023-03-07T17:19:39Z,- github-actions commented on pull request: [4125](https://github.com/hackforla/website/pull/4125#issuecomment-1458545448) at 2023-03-07 09:19 AM PST -github-actions,2023-03-07T22:44:55Z,- github-actions commented on pull request: [4126](https://github.com/hackforla/website/pull/4126#issuecomment-1458981320) at 2023-03-07 02:44 PM PST -github-actions,2023-03-08T05:52:28Z,- github-actions commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1459583013) at 2023-03-07 09:52 PM PST -github-actions,2023-03-08T08:10:35Z,- github-actions commented on pull request: [4133](https://github.com/hackforla/website/pull/4133#issuecomment-1459699405) at 2023-03-08 12:10 AM PST -github-actions,2023-03-09T02:39:31Z,- github-actions commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1461181275) at 2023-03-08 06:39 PM PST -github-actions,2023-03-09T03:33:07Z,- github-actions commented on pull request: [4137](https://github.com/hackforla/website/pull/4137#issuecomment-1461216906) at 2023-03-08 07:33 PM PST -github-actions,2023-03-09T06:37:08Z,- github-actions commented on pull request: [4139](https://github.com/hackforla/website/pull/4139#issuecomment-1461385695) at 2023-03-08 10:37 PM PST -github-actions,2023-03-09T07:23:26Z,- github-actions commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1461465255) at 2023-03-08 11:23 PM PST -github-actions,2023-03-09T23:38:43Z,- github-actions commented on pull request: [4143](https://github.com/hackforla/website/pull/4143#issuecomment-1462996208) at 2023-03-09 03:38 PM PST -github-actions,2023-03-10T04:43:30Z,- github-actions commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1463253185) at 2023-03-09 08:43 PM PST -github-actions,2023-03-10T23:29:18Z,- github-actions commented on pull request: [4147](https://github.com/hackforla/website/pull/4147#issuecomment-1464638811) at 2023-03-10 03:29 PM PST -github-actions,2023-03-11T06:26:48Z,- github-actions commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1464841088) at 2023-03-10 11:26 PM PDT -github-actions,2023-03-11T15:14:23Z,- github-actions commented on pull request: [4150](https://github.com/hackforla/website/pull/4150#issuecomment-1464932296) at 2023-03-11 08:14 AM PDT -github-actions,2023-03-13T04:17:17Z,- github-actions commented on pull request: [4156](https://github.com/hackforla/website/pull/4156#issuecomment-1465488145) at 2023-03-12 09:17 PM PDT -github-actions,2023-03-13T16:49:01Z,- github-actions commented on pull request: [4157](https://github.com/hackforla/website/pull/4157#issuecomment-1466512136) at 2023-03-13 09:49 AM PDT -github-actions,2023-03-14T05:24:43Z,- github-actions commented on pull request: [4175](https://github.com/hackforla/website/pull/4175#issuecomment-1467380670) at 2023-03-13 10:24 PM PDT -github-actions,2023-03-14T13:37:28Z,- github-actions commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1468119776) at 2023-03-14 06:37 AM PDT -github-actions,2023-03-14T17:19:52Z,- github-actions commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1468514653) at 2023-03-14 10:19 AM PDT -github-actions,2023-03-14T20:31:56Z,- github-actions commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1468798989) at 2023-03-14 01:31 PM PDT -github-actions,2023-03-14T21:05:27Z,- github-actions commented on pull request: [4182](https://github.com/hackforla/website/pull/4182#issuecomment-1468844278) at 2023-03-14 02:05 PM PDT -github-actions,2023-03-14T22:13:49Z,- github-actions commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1468911402) at 2023-03-14 03:13 PM PDT -github-actions,2023-03-15T03:03:46Z,- github-actions commented on pull request: [4191](https://github.com/hackforla/website/pull/4191#issuecomment-1469239739) at 2023-03-14 08:03 PM PDT -github-actions,2023-03-16T03:35:44Z,- github-actions commented on pull request: [4194](https://github.com/hackforla/website/pull/4194#issuecomment-1471248115) at 2023-03-15 08:35 PM PDT -github-actions,2023-03-16T17:59:43Z,- github-actions commented on pull request: [4195](https://github.com/hackforla/website/pull/4195#issuecomment-1472457990) at 2023-03-16 10:59 AM PDT -github-actions,2023-03-16T19:59:40Z,- github-actions commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472658796) at 2023-03-16 12:59 PM PDT -github-actions,2023-03-16T20:32:21Z,- github-actions commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1472700535) at 2023-03-16 01:32 PM PDT -github-actions,2023-03-16T21:27:50Z,- github-actions commented on pull request: [4198](https://github.com/hackforla/website/pull/4198#issuecomment-1472768054) at 2023-03-16 02:27 PM PDT -github-actions,2023-03-17T02:51:34Z,- github-actions commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1473040546) at 2023-03-16 07:51 PM PDT -github-actions,2023-03-17T08:12:14Z,- github-actions commented on pull request: [4201](https://github.com/hackforla/website/pull/4201#issuecomment-1473354591) at 2023-03-17 01:12 AM PDT -github-actions,2023-03-17T17:44:57Z,- github-actions commented on pull request: [4202](https://github.com/hackforla/website/pull/4202#issuecomment-1474193921) at 2023-03-17 10:44 AM PDT -github-actions,2023-03-17T21:20:37Z,- github-actions commented on pull request: [4203](https://github.com/hackforla/website/pull/4203#issuecomment-1474413478) at 2023-03-17 02:20 PM PDT -github-actions,2023-03-18T00:28:26Z,- github-actions commented on pull request: [4204](https://github.com/hackforla/website/pull/4204#issuecomment-1474542180) at 2023-03-17 05:28 PM PDT -github-actions,2023-03-18T02:08:22Z,- github-actions commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1474596173) at 2023-03-17 07:08 PM PDT -github-actions,2023-03-18T09:19:40Z,- github-actions commented on pull request: [4207](https://github.com/hackforla/website/pull/4207#issuecomment-1474785101) at 2023-03-18 02:19 AM PDT -github-actions,2023-03-18T22:11:04Z,- github-actions commented on pull request: [4209](https://github.com/hackforla/website/pull/4209#issuecomment-1475012000) at 2023-03-18 03:11 PM PDT -github-actions,2023-03-19T02:01:14Z,- github-actions commented on pull request: [4210](https://github.com/hackforla/website/pull/4210#issuecomment-1475069089) at 2023-03-18 07:01 PM PDT -github-actions,2023-03-19T20:23:39Z,- github-actions commented on pull request: [4213](https://github.com/hackforla/website/pull/4213#issuecomment-1475387054) at 2023-03-19 01:23 PM PDT -github-actions,2023-03-19T22:23:12Z,- github-actions commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1475416967) at 2023-03-19 03:23 PM PDT -github-actions,2023-03-20T03:49:45Z,- github-actions commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1475577834) at 2023-03-19 08:49 PM PDT -github-actions,2023-03-21T02:40:42Z,- github-actions commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1477202802) at 2023-03-20 07:40 PM PDT -github-actions,2023-03-21T08:40:10Z,- github-actions commented on pull request: [4223](https://github.com/hackforla/website/pull/4223#issuecomment-1477450257) at 2023-03-21 01:40 AM PDT -github-actions,2023-03-21T17:21:01Z,- github-actions commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478299623) at 2023-03-21 10:21 AM PDT -github-actions,2023-03-21T23:33:31Z,- github-actions commented on pull request: [4228](https://github.com/hackforla/website/pull/4228#issuecomment-1478726670) at 2023-03-21 04:33 PM PDT -github-actions,2023-03-22T04:55:55Z,- github-actions commented on pull request: [4234](https://github.com/hackforla/website/pull/4234#issuecomment-1478916723) at 2023-03-21 09:55 PM PDT -github-actions,2023-03-23T07:44:04Z,- github-actions commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1480727483) at 2023-03-23 12:44 AM PDT -github-actions,2023-03-23T07:58:00Z,- github-actions commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1480741494) at 2023-03-23 12:58 AM PDT -github-actions,2023-03-23T23:02:37Z,- github-actions commented on pull request: [4265](https://github.com/hackforla/website/pull/4265#issuecomment-1482022341) at 2023-03-23 04:02 PM PDT -github-actions,2023-03-24T00:55:04Z,- github-actions commented on pull request: [4266](https://github.com/hackforla/website/pull/4266#issuecomment-1482103022) at 2023-03-23 05:55 PM PDT -github-actions,2023-03-24T01:03:47Z,- github-actions commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1482108519) at 2023-03-23 06:03 PM PDT -github-actions,2023-03-24T01:37:29Z,- github-actions commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1482132433) at 2023-03-23 06:37 PM PDT -github-actions,2023-03-24T02:03:41Z,- github-actions commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482148599) at 2023-03-23 07:03 PM PDT -github-actions,2023-03-24T03:03:08Z,- github-actions commented on pull request: [4273](https://github.com/hackforla/website/pull/4273#issuecomment-1482184441) at 2023-03-23 08:03 PM PDT -github-actions,2023-03-24T05:09:06Z,- github-actions commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1482259449) at 2023-03-23 10:09 PM PDT -github-actions,2023-03-24T07:45:31Z,- github-actions commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1482384168) at 2023-03-24 12:45 AM PDT -github-actions,2023-03-24T18:06:30Z,- github-actions commented on pull request: [4278](https://github.com/hackforla/website/pull/4278#issuecomment-1483213642) at 2023-03-24 11:06 AM PDT -github-actions,2023-03-24T19:56:54Z,- github-actions commented on pull request: [4280](https://github.com/hackforla/website/pull/4280#issuecomment-1483339260) at 2023-03-24 12:56 PM PDT -github-actions,2023-03-25T21:04:51Z,- github-actions commented on pull request: [4289](https://github.com/hackforla/website/pull/4289#issuecomment-1483921851) at 2023-03-25 02:04 PM PDT -github-actions,2023-03-26T04:56:04Z,- github-actions commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1483995522) at 2023-03-25 09:56 PM PDT -github-actions,2023-03-26T15:01:14Z,- github-actions commented on pull request: [4292](https://github.com/hackforla/website/pull/4292#issuecomment-1484122980) at 2023-03-26 08:01 AM PDT -github-actions,2023-03-26T21:22:57Z,- github-actions commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1484228096) at 2023-03-26 02:22 PM PDT -github-actions,2023-03-27T23:23:21Z,- github-actions commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1485990504) at 2023-03-27 04:23 PM PDT -github-actions,2023-03-28T20:47:43Z,- github-actions commented on pull request: [4304](https://github.com/hackforla/website/pull/4304#issuecomment-1487571705) at 2023-03-28 01:47 PM PDT -github-actions,2023-03-28T21:06:49Z,- github-actions commented on pull request: [4305](https://github.com/hackforla/website/pull/4305#issuecomment-1487592144) at 2023-03-28 02:06 PM PDT -github-actions,2023-03-29T01:24:07Z,- github-actions commented on pull request: [4308](https://github.com/hackforla/website/pull/4308#issuecomment-1487816383) at 2023-03-28 06:24 PM PDT -github-actions,2023-03-29T03:13:37Z,- github-actions commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1487886787) at 2023-03-28 08:13 PM PDT -github-actions,2023-03-29T05:24:06Z,- github-actions commented on pull request: [4338](https://github.com/hackforla/website/pull/4338#issuecomment-1487965295) at 2023-03-28 10:24 PM PDT -github-actions,2023-03-29T09:49:31Z,- github-actions commented on pull request: [4340](https://github.com/hackforla/website/pull/4340#issuecomment-1488284971) at 2023-03-29 02:49 AM PDT -github-actions,2023-03-29T22:32:39Z,- github-actions commented on pull request: [4341](https://github.com/hackforla/website/pull/4341#issuecomment-1489423184) at 2023-03-29 03:32 PM PDT -github-actions,2023-03-30T09:31:55Z,- github-actions commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1489990912) at 2023-03-30 02:31 AM PDT -github-actions,2023-03-30T17:02:40Z,- github-actions commented on pull request: [4347](https://github.com/hackforla/website/pull/4347#issuecomment-1490637399) at 2023-03-30 10:02 AM PDT -github-actions,2023-03-30T21:20:40Z,- github-actions commented on pull request: [4348](https://github.com/hackforla/website/pull/4348#issuecomment-1490977960) at 2023-03-30 02:20 PM PDT -github-actions,2023-03-31T05:05:44Z,- github-actions commented on pull request: [4353](https://github.com/hackforla/website/pull/4353#issuecomment-1491302485) at 2023-03-30 10:05 PM PDT -github-actions,2023-03-31T20:52:26Z,- github-actions commented on pull request: [4355](https://github.com/hackforla/website/pull/4355#issuecomment-1492594057) at 2023-03-31 01:52 PM PDT -github-actions,2023-03-31T21:15:48Z,- github-actions commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1492615476) at 2023-03-31 02:15 PM PDT -github-actions,2023-04-01T00:55:41Z,- github-actions commented on pull request: [4359](https://github.com/hackforla/website/pull/4359#issuecomment-1492764963) at 2023-03-31 05:55 PM PDT -github-actions,2023-04-01T17:12:34Z,- github-actions commented on pull request: [4361](https://github.com/hackforla/website/pull/4361#issuecomment-1493049510) at 2023-04-01 10:12 AM PDT -github-actions,2023-04-02T04:03:32Z,- github-actions commented on pull request: [4365](https://github.com/hackforla/website/pull/4365#issuecomment-1493217236) at 2023-04-01 09:03 PM PDT -github-actions,2023-04-02T19:34:57Z,- github-actions commented on pull request: [4372](https://github.com/hackforla/website/pull/4372#issuecomment-1493422356) at 2023-04-02 12:34 PM PDT -github-actions,2023-04-02T19:35:52Z,- github-actions commented on pull request: [4373](https://github.com/hackforla/website/pull/4373#issuecomment-1493422527) at 2023-04-02 12:35 PM PDT -github-actions,2023-04-03T00:09:54Z,- github-actions commented on pull request: [4374](https://github.com/hackforla/website/pull/4374#issuecomment-1493479704) at 2023-04-02 05:09 PM PDT -github-actions,2023-04-03T04:13:21Z,- github-actions commented on pull request: [4384](https://github.com/hackforla/website/pull/4384#issuecomment-1493624928) at 2023-04-02 09:13 PM PDT -github-actions,2023-04-03T18:48:07Z,- github-actions commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1494808310) at 2023-04-03 11:48 AM PDT -github-actions,2023-04-03T22:39:13Z,- github-actions commented on pull request: [4391](https://github.com/hackforla/website/pull/4391#issuecomment-1495078013) at 2023-04-03 03:39 PM PDT -github-actions,2023-04-04T00:25:57Z,- github-actions commented on pull request: [4402](https://github.com/hackforla/website/pull/4402#issuecomment-1495169182) at 2023-04-03 05:25 PM PDT -github-actions,2023-04-04T04:02:30Z,- github-actions commented on pull request: [4403](https://github.com/hackforla/website/pull/4403#issuecomment-1495314570) at 2023-04-03 09:02 PM PDT -github-actions,2023-04-04T05:29:07Z,- github-actions commented on pull request: [4404](https://github.com/hackforla/website/pull/4404#issuecomment-1495367988) at 2023-04-03 10:29 PM PDT -github-actions,2023-04-04T16:48:47Z,- github-actions commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496294283) at 2023-04-04 09:48 AM PDT -github-actions,2023-04-04T20:03:58Z,- github-actions commented on pull request: [4408](https://github.com/hackforla/website/pull/4408#issuecomment-1496526297) at 2023-04-04 01:03 PM PDT -github-actions,2023-04-04T23:23:15Z,- github-actions commented on pull request: [4411](https://github.com/hackforla/website/pull/4411#issuecomment-1496717572) at 2023-04-04 04:23 PM PDT -github-actions,2023-04-04T23:53:15Z,- github-actions commented on pull request: [4412](https://github.com/hackforla/website/pull/4412#issuecomment-1496737095) at 2023-04-04 04:53 PM PDT -github-actions,2023-04-05T01:23:17Z,- github-actions commented on pull request: [4421](https://github.com/hackforla/website/pull/4421#issuecomment-1496797625) at 2023-04-04 06:23 PM PDT -github-actions,2023-04-05T02:07:22Z,- github-actions commented on pull request: [4424](https://github.com/hackforla/website/pull/4424#issuecomment-1496823569) at 2023-04-04 07:07 PM PDT -github-actions,2023-04-05T02:42:27Z,- github-actions commented on pull request: [4425](https://github.com/hackforla/website/pull/4425#issuecomment-1496842398) at 2023-04-04 07:42 PM PDT -github-actions,2023-04-06T04:10:51Z,- github-actions commented on pull request: [4428](https://github.com/hackforla/website/pull/4428#issuecomment-1498465197) at 2023-04-05 09:10 PM PDT -github-actions,2023-04-06T16:47:22Z,- github-actions commented on pull request: [4430](https://github.com/hackforla/website/pull/4430#issuecomment-1499347352) at 2023-04-06 09:47 AM PDT -github-actions,2023-04-06T17:42:47Z,- github-actions commented on pull request: [4433](https://github.com/hackforla/website/pull/4433#issuecomment-1499411118) at 2023-04-06 10:42 AM PDT -github-actions,2023-04-06T23:07:12Z,- github-actions commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1499732774) at 2023-04-06 04:07 PM PDT -github-actions,2023-04-07T05:46:57Z,- github-actions commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1499960374) at 2023-04-06 10:46 PM PDT -github-actions,2023-04-08T02:54:32Z,- github-actions commented on pull request: [4443](https://github.com/hackforla/website/pull/4443#issuecomment-1500771749) at 2023-04-07 07:54 PM PDT -github-actions,2023-04-09T03:55:48Z,- github-actions commented on pull request: [4444](https://github.com/hackforla/website/pull/4444#issuecomment-1501033051) at 2023-04-08 08:55 PM PDT -github-actions,2023-04-09T11:09:30Z,- github-actions commented on pull request: [4441](https://github.com/hackforla/website/pull/4441#issuecomment-1501103512) at 2023-04-09 04:09 AM PDT -github-actions,2023-04-09T18:08:17Z,- github-actions commented on pull request: [4453](https://github.com/hackforla/website/pull/4453#issuecomment-1501183400) at 2023-04-09 11:08 AM PDT -github-actions,2023-04-10T23:09:26Z,- github-actions commented on pull request: [4461](https://github.com/hackforla/website/pull/4461#issuecomment-1502452098) at 2023-04-10 04:09 PM PDT -github-actions,2023-04-10T23:49:41Z,- github-actions commented on pull request: [4462](https://github.com/hackforla/website/pull/4462#issuecomment-1502480380) at 2023-04-10 04:49 PM PDT -github-actions,2023-04-10T23:52:06Z,- github-actions commented on pull request: [4463](https://github.com/hackforla/website/pull/4463#issuecomment-1502481591) at 2023-04-10 04:52 PM PDT -github-actions,2023-04-10T23:54:15Z,- github-actions commented on pull request: [4464](https://github.com/hackforla/website/pull/4464#issuecomment-1502482982) at 2023-04-10 04:54 PM PDT -github-actions,2023-04-11T02:08:03Z,- github-actions commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1502586616) at 2023-04-10 07:08 PM PDT -github-actions,2023-04-11T17:51:12Z,- github-actions commented on pull request: [4467](https://github.com/hackforla/website/pull/4467#issuecomment-1503841901) at 2023-04-11 10:51 AM PDT -github-actions,2023-04-12T00:42:19Z,- github-actions commented on pull request: [4472](https://github.com/hackforla/website/pull/4472#issuecomment-1504342304) at 2023-04-11 05:42 PM PDT -github-actions,2023-04-12T02:25:27Z,- github-actions commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1504453690) at 2023-04-11 07:25 PM PDT -github-actions,2023-04-12T20:13:41Z,- github-actions commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1505868480) at 2023-04-12 01:13 PM PDT -github-actions,2023-04-13T04:26:04Z,- github-actions commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1506324580) at 2023-04-12 09:26 PM PDT -github-actions,2023-04-13T06:25:56Z,- github-actions commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1506416096) at 2023-04-12 11:25 PM PDT -github-actions,2023-04-13T14:05:58Z,- github-actions commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507033368) at 2023-04-13 07:05 AM PDT -github-actions,2023-04-13T17:19:26Z,- github-actions commented on pull request: [4501](https://github.com/hackforla/website/pull/4501#issuecomment-1507330992) at 2023-04-13 10:19 AM PDT -github-actions,2023-04-14T01:38:07Z,- github-actions commented on pull request: [4511](https://github.com/hackforla/website/pull/4511#issuecomment-1507809418) at 2023-04-13 06:38 PM PDT -github-actions,2023-04-14T19:00:32Z,- github-actions commented on pull request: [4516](https://github.com/hackforla/website/pull/4516#issuecomment-1509092374) at 2023-04-14 12:00 PM PDT -github-actions,2023-04-14T23:39:14Z,- github-actions commented on pull request: [4519](https://github.com/hackforla/website/pull/4519#issuecomment-1509394631) at 2023-04-14 04:39 PM PDT -github-actions,2023-04-15T19:52:23Z,- github-actions commented on pull request: [4520](https://github.com/hackforla/website/pull/4520#issuecomment-1509944375) at 2023-04-15 12:52 PM PDT -github-actions,2023-04-16T06:14:39Z,- github-actions commented on pull request: [4521](https://github.com/hackforla/website/pull/4521#issuecomment-1510102483) at 2023-04-15 11:14 PM PDT -github-actions,2023-04-16T20:24:37Z,- github-actions commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1510478000) at 2023-04-16 01:24 PM PDT -github-actions,2023-04-17T04:31:00Z,- github-actions commented on pull request: [4528](https://github.com/hackforla/website/pull/4528#issuecomment-1510682304) at 2023-04-16 09:31 PM PDT -github-actions,2023-04-17T17:14:53Z,- github-actions commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1511769602) at 2023-04-17 10:14 AM PDT -github-actions,2023-04-18T22:54:23Z,- github-actions commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1513885153) at 2023-04-18 03:54 PM PDT -github-actions,2023-04-19T19:09:52Z,- github-actions commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515236964) at 2023-04-19 12:09 PM PDT -github-actions,2023-04-20T02:54:06Z,- github-actions commented on pull request: [4549](https://github.com/hackforla/website/pull/4549#issuecomment-1515638716) at 2023-04-19 07:54 PM PDT -github-actions,2023-04-21T05:18:19Z,- github-actions commented on pull request: [4550](https://github.com/hackforla/website/pull/4550#issuecomment-1517274881) at 2023-04-20 10:18 PM PDT -github-actions,2023-04-21T21:51:11Z,- github-actions commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1518365655) at 2023-04-21 02:51 PM PDT -github-actions,2023-04-23T16:47:43Z,- github-actions commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519108363) at 2023-04-23 09:47 AM PDT -github-actions,2023-04-24T04:51:38Z,- github-actions commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1519378908) at 2023-04-23 09:51 PM PDT -github-actions,2023-04-24T20:05:52Z,- github-actions commented on pull request: [4561](https://github.com/hackforla/website/pull/4561#issuecomment-1520758200) at 2023-04-24 01:05 PM PDT -github-actions,2023-04-27T01:28:29Z,- github-actions commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1524385622) at 2023-04-26 06:28 PM PDT -github-actions,2023-04-27T01:42:28Z,- github-actions commented on pull request: [4570](https://github.com/hackforla/website/pull/4570#issuecomment-1524414037) at 2023-04-26 06:42 PM PDT -github-actions,2023-04-27T08:43:50Z,- github-actions commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1525147195) at 2023-04-27 01:43 AM PDT -github-actions,2023-04-27T21:24:47Z,- github-actions commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1526508076) at 2023-04-27 02:24 PM PDT -github-actions,2023-04-27T23:19:42Z,- github-actions commented on pull request: [4576](https://github.com/hackforla/website/pull/4576#issuecomment-1526734871) at 2023-04-27 04:19 PM PDT -github-actions,2023-04-28T01:39:23Z,- github-actions commented on pull request: [4580](https://github.com/hackforla/website/pull/4580#issuecomment-1526859033) at 2023-04-27 06:39 PM PDT -github-actions,2023-04-28T02:27:30Z,- github-actions commented on pull request: [4581](https://github.com/hackforla/website/pull/4581#issuecomment-1526890250) at 2023-04-27 07:27 PM PDT -github-actions,2023-04-28T02:49:33Z,- github-actions commented on pull request: [4582](https://github.com/hackforla/website/pull/4582#issuecomment-1526905947) at 2023-04-27 07:49 PM PDT -github-actions,2023-04-28T20:13:18Z,- github-actions commented on pull request: [4584](https://github.com/hackforla/website/pull/4584#issuecomment-1528042394) at 2023-04-28 01:13 PM PDT -github-actions,2023-05-01T00:50:09Z,- github-actions commented on pull request: [4586](https://github.com/hackforla/website/pull/4586#issuecomment-1529204164) at 2023-04-30 05:50 PM PDT -github-actions,2023-05-04T07:24:07Z,- github-actions commented on pull request: [4596](https://github.com/hackforla/website/pull/4596#issuecomment-1534214620) at 2023-05-04 12:24 AM PDT -github-actions,2023-05-04T19:29:50Z,- github-actions commented on pull request: [4598](https://github.com/hackforla/website/pull/4598#issuecomment-1535299473) at 2023-05-04 12:29 PM PDT -github-actions,2023-05-04T23:41:15Z,- github-actions commented on pull request: [4599](https://github.com/hackforla/website/pull/4599#issuecomment-1535531700) at 2023-05-04 04:41 PM PDT -github-actions,2023-05-05T00:50:15Z,- github-actions commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1535565863) at 2023-05-04 05:50 PM PDT -github-actions,2023-05-05T04:58:48Z,- github-actions commented on pull request: [4602](https://github.com/hackforla/website/pull/4602#issuecomment-1535695059) at 2023-05-04 09:58 PM PDT -github-actions,2023-05-05T07:25:39Z,- github-actions commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1535837941) at 2023-05-05 12:25 AM PDT -github-actions,2023-05-08T23:21:43Z,- github-actions commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1539186241) at 2023-05-08 04:21 PM PDT -github-actions,2023-05-09T03:20:54Z,- github-actions commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1539330795) at 2023-05-08 08:20 PM PDT -github-actions,2023-05-09T07:02:12Z,- github-actions commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1539573646) at 2023-05-09 12:02 AM PDT -github-actions,2023-05-09T14:33:29Z,- github-actions commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1540247992) at 2023-05-09 07:33 AM PDT -github-actions,2023-05-10T00:52:30Z,- github-actions commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1541078895) at 2023-05-09 05:52 PM PDT -github-actions,2023-05-10T04:50:55Z,- github-actions commented on pull request: [4645](https://github.com/hackforla/website/pull/4645#issuecomment-1541348195) at 2023-05-09 09:50 PM PDT -github-actions,2023-05-10T10:40:22Z,- github-actions commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1541904407) at 2023-05-10 03:40 AM PDT -github-actions,2023-05-11T04:47:30Z,- github-actions commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1543326145) at 2023-05-10 09:47 PM PDT -github-actions,2023-05-11T05:08:13Z,- github-actions commented on pull request: [4651](https://github.com/hackforla/website/pull/4651#issuecomment-1543344178) at 2023-05-10 10:08 PM PDT -github-actions,2023-05-11T16:33:22Z,- github-actions commented on pull request: [4656](https://github.com/hackforla/website/pull/4656#issuecomment-1544312759) at 2023-05-11 09:33 AM PDT -github-actions,2023-05-11T21:40:16Z,- github-actions commented on pull request: [4657](https://github.com/hackforla/website/pull/4657#issuecomment-1544716138) at 2023-05-11 02:40 PM PDT -github-actions,2023-05-13T01:56:09Z,- github-actions commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1546492777) at 2023-05-12 06:56 PM PDT -github-actions,2023-05-14T11:03:28Z,- github-actions commented on pull request: [4663](https://github.com/hackforla/website/pull/4663#issuecomment-1546872474) at 2023-05-14 04:03 AM PDT -github-actions,2023-05-14T15:00:15Z,- github-actions commented on pull request: [4665](https://github.com/hackforla/website/pull/4665#issuecomment-1546919515) at 2023-05-14 08:00 AM PDT -github-actions,2023-05-14T17:17:28Z,- github-actions commented on pull request: [4666](https://github.com/hackforla/website/pull/4666#issuecomment-1546951371) at 2023-05-14 10:17 AM PDT -github-actions,2023-05-14T23:21:00Z,- github-actions commented on pull request: [4667](https://github.com/hackforla/website/pull/4667#issuecomment-1547025345) at 2023-05-14 04:21 PM PDT -github-actions,2023-05-15T02:12:56Z,- github-actions commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1547098625) at 2023-05-14 07:12 PM PDT -github-actions,2023-05-15T18:13:31Z,- github-actions commented on pull request: [4674](https://github.com/hackforla/website/pull/4674#issuecomment-1548333664) at 2023-05-15 11:13 AM PDT -github-actions,2023-05-15T20:32:59Z,- github-actions commented on pull request: [4675](https://github.com/hackforla/website/pull/4675#issuecomment-1548535003) at 2023-05-15 01:32 PM PDT -github-actions,2023-05-15T20:57:19Z,- github-actions commented on pull request: [4677](https://github.com/hackforla/website/pull/4677#issuecomment-1548564470) at 2023-05-15 01:57 PM PDT -github-actions,2023-05-16T00:58:43Z,- github-actions commented on pull request: [4680](https://github.com/hackforla/website/pull/4680#issuecomment-1548814891) at 2023-05-15 05:58 PM PDT -github-actions,2023-05-16T19:15:28Z,- github-actions commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1550222052) at 2023-05-16 12:15 PM PDT -github-actions,2023-05-17T21:39:25Z,- github-actions commented on pull request: [4686](https://github.com/hackforla/website/pull/4686#issuecomment-1552119739) at 2023-05-17 02:39 PM PDT -github-actions,2023-05-18T06:50:14Z,- github-actions commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1552568382) at 2023-05-17 11:50 PM PDT -github-actions,2023-05-18T10:59:14Z,- github-actions commented on pull request: [4691](https://github.com/hackforla/website/pull/4691#issuecomment-1552886942) at 2023-05-18 03:59 AM PDT -github-actions,2023-05-18T19:23:41Z,- github-actions commented on pull request: [4693](https://github.com/hackforla/website/pull/4693#issuecomment-1553531299) at 2023-05-18 12:23 PM PDT -github-actions,2023-05-18T21:27:07Z,- github-actions commented on pull request: [4694](https://github.com/hackforla/website/pull/4694#issuecomment-1553667418) at 2023-05-18 02:27 PM PDT -github-actions,2023-05-19T00:54:25Z,- github-actions commented on pull request: [4696](https://github.com/hackforla/website/pull/4696#issuecomment-1553860499) at 2023-05-18 05:54 PM PDT -github-actions,2023-05-19T01:23:48Z,- github-actions commented on pull request: [4697](https://github.com/hackforla/website/pull/4697#issuecomment-1553883479) at 2023-05-18 06:23 PM PDT -github-actions,2023-05-19T04:04:12Z,- github-actions commented on pull request: [4698](https://github.com/hackforla/website/pull/4698#issuecomment-1553964869) at 2023-05-18 09:04 PM PDT -github-actions,2023-05-19T18:48:49Z,- github-actions commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1555091586) at 2023-05-19 11:48 AM PDT -github-actions,2023-05-20T18:24:21Z,- github-actions commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1555966843) at 2023-05-20 11:24 AM PDT -github-actions,2023-05-23T10:19:08Z,- github-actions commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1558991712) at 2023-05-23 03:19 AM PDT -github-actions,2023-05-24T01:28:26Z,- github-actions commented on pull request: [4709](https://github.com/hackforla/website/pull/4709#issuecomment-1560333877) at 2023-05-23 06:28 PM PDT -github-actions,2023-05-24T02:15:35Z,- github-actions commented on pull request: [4710](https://github.com/hackforla/website/pull/4710#issuecomment-1560363516) at 2023-05-23 07:15 PM PDT -github-actions,2023-05-24T20:01:01Z,- github-actions commented on pull request: [4725](https://github.com/hackforla/website/pull/4725#issuecomment-1561853194) at 2023-05-24 01:01 PM PDT -github-actions,2023-05-25T00:31:44Z,- github-actions commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562094504) at 2023-05-24 05:31 PM PDT -github-actions,2023-05-25T02:21:17Z,- github-actions commented on pull request: [4727](https://github.com/hackforla/website/pull/4727#issuecomment-1562165788) at 2023-05-24 07:21 PM PDT -github-actions,2023-05-25T20:25:41Z,- github-actions commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1563465205) at 2023-05-25 01:25 PM PDT -github-actions,2023-05-25T23:04:45Z,- github-actions commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1563613777) at 2023-05-25 04:04 PM PDT -github-actions,2023-05-26T00:28:15Z,- github-actions commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1563661858) at 2023-05-25 05:28 PM PDT -github-actions,2023-05-26T02:47:03Z,- github-actions commented on pull request: [4733](https://github.com/hackforla/website/pull/4733#issuecomment-1563742798) at 2023-05-25 07:47 PM PDT -github-actions,2023-05-26T02:58:37Z,- github-actions commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1563749658) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:47Z,- github-actions commented on pull request: [4735](https://github.com/hackforla/website/pull/4735#issuecomment-1563749786) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:47Z,- github-actions commented on pull request: [4736](https://github.com/hackforla/website/pull/4736#issuecomment-1563749780) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:54Z,- github-actions commented on pull request: [4737](https://github.com/hackforla/website/pull/4737#issuecomment-1563749871) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:58:59Z,- github-actions commented on pull request: [4739](https://github.com/hackforla/website/pull/4739#issuecomment-1563749923) at 2023-05-25 07:58 PM PDT -github-actions,2023-05-26T02:59:04Z,- github-actions commented on pull request: [4740](https://github.com/hackforla/website/pull/4740#issuecomment-1563749970) at 2023-05-25 07:59 PM PDT -github-actions,2023-05-26T02:59:27Z,- github-actions commented on pull request: [4743](https://github.com/hackforla/website/pull/4743#issuecomment-1563750240) at 2023-05-25 07:59 PM PDT -github-actions,2023-05-26T02:59:50Z,- github-actions commented on pull request: [4738](https://github.com/hackforla/website/pull/4738#issuecomment-1563750464) at 2023-05-25 07:59 PM PDT -github-actions,2023-05-26T03:00:01Z,- github-actions commented on pull request: [4741](https://github.com/hackforla/website/pull/4741#issuecomment-1563750573) at 2023-05-25 08:00 PM PDT -github-actions,2023-05-26T03:00:14Z,- github-actions commented on pull request: [4742](https://github.com/hackforla/website/pull/4742#issuecomment-1563750685) at 2023-05-25 08:00 PM PDT -github-actions,2023-05-26T19:29:51Z,- github-actions commented on pull request: [4745](https://github.com/hackforla/website/pull/4745#issuecomment-1564835483) at 2023-05-26 12:29 PM PDT -github-actions,2023-05-26T20:11:22Z,- github-actions commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1564893492) at 2023-05-26 01:11 PM PDT -github-actions,2023-05-26T22:28:49Z,- github-actions commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565026982) at 2023-05-26 03:28 PM PDT -github-actions,2023-05-27T06:47:08Z,- github-actions commented on pull request: [4748](https://github.com/hackforla/website/pull/4748#issuecomment-1565237268) at 2023-05-26 11:47 PM PDT -github-actions,2023-05-29T02:04:34Z,- github-actions commented on pull request: [4750](https://github.com/hackforla/website/pull/4750#issuecomment-1566388037) at 2023-05-28 07:04 PM PDT -github-actions,2023-05-29T02:09:45Z,- github-actions commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1566392642) at 2023-05-28 07:09 PM PDT -github-actions,2023-05-30T03:16:05Z,- github-actions commented on pull request: [4754](https://github.com/hackforla/website/pull/4754#issuecomment-1567704257) at 2023-05-29 08:16 PM PDT -github-actions,2023-05-30T04:34:19Z,- github-actions commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1567742163) at 2023-05-29 09:34 PM PDT -github-actions,2023-05-30T19:07:39Z,- github-actions commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1568936911) at 2023-05-30 12:07 PM PDT -github-actions,2023-05-31T04:21:58Z,- github-actions commented on pull request: [4759](https://github.com/hackforla/website/pull/4759#issuecomment-1569475030) at 2023-05-30 09:21 PM PDT -github-actions,2023-05-31T05:35:41Z,- github-actions commented on pull request: [4760](https://github.com/hackforla/website/pull/4760#issuecomment-1569524245) at 2023-05-30 10:35 PM PDT -github-actions,2023-05-31T09:23:27Z,- github-actions commented on pull request: [4763](https://github.com/hackforla/website/pull/4763#issuecomment-1569822879) at 2023-05-31 02:23 AM PDT -github-actions,2023-06-01T02:25:59Z,- github-actions commented on pull request: [4764](https://github.com/hackforla/website/pull/4764#issuecomment-1571228758) at 2023-05-31 07:25 PM PDT -github-actions,2023-06-01T19:20:34Z,- github-actions commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1572646398) at 2023-06-01 12:20 PM PDT -github-actions,2023-06-02T22:34:02Z,- github-actions commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1574391528) at 2023-06-02 03:34 PM PDT -github-actions,2023-06-02T22:49:40Z,- github-actions commented on pull request: [4773](https://github.com/hackforla/website/pull/4773#issuecomment-1574406159) at 2023-06-02 03:49 PM PDT -github-actions,2023-06-03T00:32:55Z,- github-actions commented on pull request: [4774](https://github.com/hackforla/website/pull/4774#issuecomment-1574489396) at 2023-06-02 05:32 PM PDT -github-actions,2023-06-03T01:51:05Z,- github-actions commented on pull request: [4775](https://github.com/hackforla/website/pull/4775#issuecomment-1574546434) at 2023-06-02 06:51 PM PDT -github-actions,2023-06-05T10:51:15Z,- github-actions commented on pull request: [4783](https://github.com/hackforla/website/pull/4783#issuecomment-1576564349) at 2023-06-05 03:51 AM PDT -github-actions,2023-06-06T19:49:59Z,- github-actions commented on pull request: [4789](https://github.com/hackforla/website/pull/4789#issuecomment-1579354117) at 2023-06-06 12:49 PM PDT -github-actions,2023-06-09T00:06:00Z,- github-actions commented on pull request: [4791](https://github.com/hackforla/website/pull/4791#issuecomment-1583638352) at 2023-06-08 05:06 PM PDT -github-actions,2023-06-10T20:54:17Z,- github-actions commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1585814051) at 2023-06-10 01:54 PM PDT -github-actions,2023-06-12T07:57:39Z,- github-actions commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1586783657) at 2023-06-12 12:57 AM PDT -github-actions,2023-06-13T23:01:01Z,- github-actions commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1590167611) at 2023-06-13 04:01 PM PDT -github-actions,2023-06-13T23:46:45Z,- github-actions commented on pull request: [4833](https://github.com/hackforla/website/pull/4833#issuecomment-1590212519) at 2023-06-13 04:46 PM PDT -github-actions,2023-06-14T17:39:04Z,- github-actions commented on pull request: [4836](https://github.com/hackforla/website/pull/4836#issuecomment-1591721621) at 2023-06-14 10:39 AM PDT -github-actions,2023-06-14T17:59:17Z,- github-actions commented on pull request: [4837](https://github.com/hackforla/website/pull/4837#issuecomment-1591745101) at 2023-06-14 10:59 AM PDT -github-actions,2023-06-14T18:44:56Z,- github-actions commented on pull request: [4838](https://github.com/hackforla/website/pull/4838#issuecomment-1591804232) at 2023-06-14 11:44 AM PDT -github-actions,2023-06-15T21:57:15Z,- github-actions commented on pull request: [4842](https://github.com/hackforla/website/pull/4842#issuecomment-1593770457) at 2023-06-15 02:57 PM PDT -github-actions,2023-06-16T01:44:02Z,- github-actions commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1593959911) at 2023-06-15 06:44 PM PDT -github-actions,2023-06-16T03:46:04Z,- github-actions commented on pull request: [4844](https://github.com/hackforla/website/pull/4844#issuecomment-1594043854) at 2023-06-15 08:46 PM PDT -github-actions,2023-06-16T04:40:10Z,- github-actions commented on pull request: [4845](https://github.com/hackforla/website/pull/4845#issuecomment-1594088311) at 2023-06-15 09:40 PM PDT -github-actions,2023-06-16T04:58:05Z,- github-actions commented on pull request: [4846](https://github.com/hackforla/website/pull/4846#issuecomment-1594097497) at 2023-06-15 09:58 PM PDT -github-actions,2023-06-16T05:11:00Z,- github-actions commented on pull request: [4847](https://github.com/hackforla/website/pull/4847#issuecomment-1594107426) at 2023-06-15 10:11 PM PDT -github-actions,2023-06-16T05:33:31Z,- github-actions commented on pull request: [4848](https://github.com/hackforla/website/pull/4848#issuecomment-1594128594) at 2023-06-15 10:33 PM PDT -github-actions,2023-06-17T00:01:08Z,- github-actions commented on pull request: [4849](https://github.com/hackforla/website/pull/4849#issuecomment-1595496140) at 2023-06-16 05:01 PM PDT -github-actions,2023-06-18T23:31:58Z,- github-actions commented on pull request: [4853](https://github.com/hackforla/website/pull/4853#issuecomment-1596306423) at 2023-06-18 04:31 PM PDT -github-actions,2023-06-20T00:09:27Z,- github-actions commented on pull request: [4863](https://github.com/hackforla/website/pull/4863#issuecomment-1597896571) at 2023-06-19 05:09 PM PDT -github-actions,2023-06-20T19:28:42Z,- github-actions commented on pull request: [4865](https://github.com/hackforla/website/pull/4865#issuecomment-1599384531) at 2023-06-20 12:28 PM PDT -github-actions,2023-06-20T21:26:50Z,- github-actions commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1599582718) at 2023-06-20 02:26 PM PDT -github-actions,2023-06-22T23:29:03Z,- github-actions commented on pull request: [4875](https://github.com/hackforla/website/pull/4875#issuecomment-1603434329) at 2023-06-22 04:29 PM PDT -github-actions,2023-06-23T20:05:22Z,- github-actions commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1604880596) at 2023-06-23 01:05 PM PDT -github-actions,2023-06-24T05:05:37Z,- github-actions commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1605269889) at 2023-06-23 10:05 PM PDT -github-actions,2023-06-24T16:49:31Z,- github-actions commented on pull request: [4880](https://github.com/hackforla/website/pull/4880#issuecomment-1605637630) at 2023-06-24 09:49 AM PDT -github-actions,2023-06-24T20:19:01Z,- github-actions commented on pull request: [4881](https://github.com/hackforla/website/pull/4881#issuecomment-1605714896) at 2023-06-24 01:19 PM PDT -github-actions,2023-06-26T05:42:06Z,- github-actions commented on pull request: [4882](https://github.com/hackforla/website/pull/4882#issuecomment-1606689662) at 2023-06-25 10:42 PM PDT -github-actions,2023-06-27T01:27:54Z,- github-actions commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1608567409) at 2023-06-26 06:27 PM PDT -github-actions,2023-06-27T18:40:50Z,- github-actions commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1610036366) at 2023-06-27 11:40 AM PDT -github-actions,2023-06-28T07:21:49Z,- github-actions commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1610901670) at 2023-06-28 12:21 AM PDT -github-actions,2023-06-28T18:44:22Z,- github-actions commented on pull request: [4897](https://github.com/hackforla/website/pull/4897#issuecomment-1611907651) at 2023-06-28 11:44 AM PDT -github-actions,2023-06-28T19:34:19Z,- github-actions commented on pull request: [4899](https://github.com/hackforla/website/pull/4899#issuecomment-1611994606) at 2023-06-28 12:34 PM PDT -github-actions,2023-06-30T21:39:48Z,- github-actions commented on pull request: [4902](https://github.com/hackforla/website/pull/4902#issuecomment-1615218773) at 2023-06-30 02:39 PM PDT -github-actions,2023-07-01T04:02:07Z,- github-actions commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1615448979) at 2023-06-30 09:02 PM PDT -github-actions,2023-07-02T04:29:11Z,- github-actions commented on pull request: [4905](https://github.com/hackforla/website/pull/4905#issuecomment-1616352238) at 2023-07-01 09:29 PM PDT -github-actions,2023-07-02T22:59:05Z,- github-actions commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1616930913) at 2023-07-02 03:59 PM PDT -github-actions,2023-07-05T00:12:27Z,- github-actions commented on pull request: [4911](https://github.com/hackforla/website/pull/4911#issuecomment-1620849144) at 2023-07-04 05:12 PM PDT -github-actions,2023-07-07T23:49:29Z,- github-actions commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1626368711) at 2023-07-07 04:49 PM PDT -github-actions,2023-07-09T09:15:22Z,- github-actions commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1627657013) at 2023-07-09 02:15 AM PDT -github-actions,2023-07-10T06:12:39Z,- github-actions commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1628304196) at 2023-07-09 11:12 PM PDT -github-actions,2023-07-10T22:52:52Z,- github-actions commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1629838324) at 2023-07-10 03:52 PM PDT -github-actions,2023-07-10T23:32:14Z,- github-actions commented on pull request: [4929](https://github.com/hackforla/website/pull/4929#issuecomment-1629870513) at 2023-07-10 04:32 PM PDT -github-actions,2023-07-10T23:32:20Z,- github-actions commented on pull request: [4930](https://github.com/hackforla/website/pull/4930#issuecomment-1629870587) at 2023-07-10 04:32 PM PDT -github-actions,2023-07-11T03:07:47Z,- github-actions commented on pull request: [4935](https://github.com/hackforla/website/pull/4935#issuecomment-1630035509) at 2023-07-10 08:07 PM PDT -github-actions,2023-07-11T03:48:32Z,- github-actions commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1630065839) at 2023-07-10 08:48 PM PDT -github-actions,2023-07-11T04:19:38Z,- github-actions commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1630088668) at 2023-07-10 09:19 PM PDT -github-actions,2023-07-11T23:31:50Z,- github-actions commented on pull request: [4940](https://github.com/hackforla/website/pull/4940#issuecomment-1631635677) at 2023-07-11 04:31 PM PDT -github-actions,2023-07-12T06:17:40Z,- github-actions commented on pull request: [4941](https://github.com/hackforla/website/pull/4941#issuecomment-1631912444) at 2023-07-11 11:17 PM PDT -github-actions,2023-07-12T16:54:19Z,- github-actions commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1632887718) at 2023-07-12 09:54 AM PDT -github-actions,2023-07-13T03:32:49Z,- github-actions commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1633495270) at 2023-07-12 08:32 PM PDT -github-actions,2023-07-13T17:36:45Z,- github-actions commented on pull request: [4947](https://github.com/hackforla/website/pull/4947#issuecomment-1634641840) at 2023-07-13 10:36 AM PDT -github-actions,2023-07-14T17:23:46Z,- github-actions commented on pull request: [4949](https://github.com/hackforla/website/pull/4949#issuecomment-1636160583) at 2023-07-14 10:23 AM PDT -github-actions,2023-07-15T18:32:54Z,- github-actions commented on pull request: [4950](https://github.com/hackforla/website/pull/4950#issuecomment-1636851776) at 2023-07-15 11:32 AM PDT -github-actions,2023-07-16T13:57:25Z,- github-actions commented on pull request: [4952](https://github.com/hackforla/website/pull/4952#issuecomment-1637091301) at 2023-07-16 06:57 AM PDT -github-actions,2023-07-16T14:06:34Z,- github-actions commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1637093478) at 2023-07-16 07:06 AM PDT -github-actions,2023-07-19T00:36:29Z,- github-actions commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1641201358) at 2023-07-18 05:36 PM PDT -github-actions,2023-07-19T05:54:15Z,- github-actions commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641459769) at 2023-07-18 10:54 PM PDT -github-actions,2023-07-19T06:14:26Z,- github-actions commented on pull request: [5025](https://github.com/hackforla/website/pull/5025#issuecomment-1641479499) at 2023-07-18 11:14 PM PDT -github-actions,2023-07-19T17:54:05Z,- github-actions commented on pull request: [5034](https://github.com/hackforla/website/pull/5034#issuecomment-1642511110) at 2023-07-19 10:54 AM PDT -github-actions,2023-07-20T04:35:45Z,- github-actions commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1643148228) at 2023-07-19 09:35 PM PDT -github-actions,2023-07-20T22:31:45Z,- github-actions commented on pull request: [5043](https://github.com/hackforla/website/pull/5043#issuecomment-1644707265) at 2023-07-20 03:31 PM PDT -github-actions,2023-07-21T02:15:06Z,- github-actions commented on pull request: [5044](https://github.com/hackforla/website/pull/5044#issuecomment-1644892226) at 2023-07-20 07:15 PM PDT -github-actions,2023-07-21T21:50:24Z,- github-actions commented on pull request: [5046](https://github.com/hackforla/website/pull/5046#issuecomment-1646271535) at 2023-07-21 02:50 PM PDT -github-actions,2023-07-22T00:13:08Z,- github-actions commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646350435) at 2023-07-21 05:13 PM PDT -github-actions,2023-07-22T03:03:54Z,- github-actions commented on pull request: [5049](https://github.com/hackforla/website/pull/5049#issuecomment-1646438788) at 2023-07-21 08:03 PM PDT -github-actions,2023-07-22T19:01:28Z,- github-actions commented on pull request: [5050](https://github.com/hackforla/website/pull/5050#issuecomment-1646651434) at 2023-07-22 12:01 PM PDT -github-actions,2023-07-23T05:52:39Z,- github-actions commented on pull request: [5051](https://github.com/hackforla/website/pull/5051#issuecomment-1646753985) at 2023-07-22 10:52 PM PDT -github-actions,2023-07-23T14:59:31Z,- github-actions commented on pull request: [5052](https://github.com/hackforla/website/pull/5052#issuecomment-1646863061) at 2023-07-23 07:59 AM PDT -github-actions,2023-07-23T16:55:44Z,- github-actions commented on pull request: [5053](https://github.com/hackforla/website/pull/5053#issuecomment-1646890087) at 2023-07-23 09:55 AM PDT -github-actions,2023-07-23T19:30:21Z,- github-actions commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1646940739) at 2023-07-23 12:30 PM PDT -github-actions,2023-07-24T00:40:06Z,- github-actions commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1647031206) at 2023-07-23 05:40 PM PDT -github-actions,2023-07-24T06:07:31Z,- github-actions commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1647271597) at 2023-07-23 11:07 PM PDT -github-actions,2023-07-25T21:49:22Z,- github-actions commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1650607813) at 2023-07-25 02:49 PM PDT -github-actions,2023-07-26T01:38:55Z,- github-actions commented on pull request: [5063](https://github.com/hackforla/website/pull/5063#issuecomment-1650835323) at 2023-07-25 06:38 PM PDT -github-actions,2023-07-26T04:18:01Z,- github-actions commented on pull request: [5093](https://github.com/hackforla/website/pull/5093#issuecomment-1650954988) at 2023-07-25 09:18 PM PDT -github-actions,2023-07-26T13:11:52Z,- github-actions commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1651779048) at 2023-07-26 06:11 AM PDT -github-actions,2023-07-26T20:22:46Z,- github-actions commented on pull request: [5096](https://github.com/hackforla/website/pull/5096#issuecomment-1652440475) at 2023-07-26 01:22 PM PDT -github-actions,2023-07-26T22:37:43Z,- github-actions commented on pull request: [5097](https://github.com/hackforla/website/pull/5097#issuecomment-1652631355) at 2023-07-26 03:37 PM PDT -github-actions,2023-07-27T17:41:04Z,- github-actions commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1654098144) at 2023-07-27 10:41 AM PDT -github-actions,2023-07-27T21:13:02Z,- github-actions commented on pull request: [5104](https://github.com/hackforla/website/pull/5104#issuecomment-1654593358) at 2023-07-27 02:13 PM PDT -github-actions,2023-07-27T23:54:37Z,- github-actions commented on pull request: [5105](https://github.com/hackforla/website/pull/5105#issuecomment-1654773362) at 2023-07-27 04:54 PM PDT -github-actions,2023-07-28T01:14:51Z,- github-actions commented on pull request: [5106](https://github.com/hackforla/website/pull/5106#issuecomment-1654832291) at 2023-07-27 06:14 PM PDT -github-actions,2023-07-28T07:13:03Z,- github-actions commented on pull request: [5107](https://github.com/hackforla/website/pull/5107#issuecomment-1655163969) at 2023-07-28 12:13 AM PDT -github-actions,2023-07-28T18:36:31Z,- github-actions commented on pull request: [5108](https://github.com/hackforla/website/pull/5108#issuecomment-1656162771) at 2023-07-28 11:36 AM PDT -github-actions,2023-07-28T22:43:53Z,- github-actions commented on pull request: [5109](https://github.com/hackforla/website/pull/5109#issuecomment-1656408465) at 2023-07-28 03:43 PM PDT -github-actions,2023-07-28T23:13:41Z,- github-actions commented on pull request: [5110](https://github.com/hackforla/website/pull/5110#issuecomment-1656429480) at 2023-07-28 04:13 PM PDT -github-actions,2023-07-29T00:02:15Z,- github-actions commented on pull request: [5111](https://github.com/hackforla/website/pull/5111#issuecomment-1656475728) at 2023-07-28 05:02 PM PDT -github-actions,2023-07-29T06:01:28Z,- github-actions commented on pull request: [5112](https://github.com/hackforla/website/pull/5112#issuecomment-1656568596) at 2023-07-28 11:01 PM PDT -github-actions,2023-07-30T02:25:53Z,- github-actions commented on pull request: [5114](https://github.com/hackforla/website/pull/5114#issuecomment-1656999430) at 2023-07-29 07:25 PM PDT -github-actions,2023-07-30T18:03:40Z,- github-actions commented on pull request: [5117](https://github.com/hackforla/website/pull/5117#issuecomment-1657232270) at 2023-07-30 11:03 AM PDT -github-actions,2023-07-31T15:05:14Z,- github-actions commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1658558474) at 2023-07-31 08:05 AM PDT -github-actions,2023-07-31T16:16:16Z,- github-actions commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1658709520) at 2023-07-31 09:16 AM PDT -github-actions,2023-07-31T19:42:27Z,- github-actions commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659025406) at 2023-07-31 12:42 PM PDT -github-actions,2023-07-31T20:18:58Z,- github-actions commented on pull request: [5121](https://github.com/hackforla/website/pull/5121#issuecomment-1659073927) at 2023-07-31 01:18 PM PDT -github-actions,2023-07-31T20:20:51Z,- github-actions commented on pull request: [5122](https://github.com/hackforla/website/pull/5122#issuecomment-1659080990) at 2023-07-31 01:20 PM PDT -github-actions,2023-07-31T23:55:36Z,- github-actions commented on pull request: [5123](https://github.com/hackforla/website/pull/5123#issuecomment-1659362942) at 2023-07-31 04:55 PM PDT -github-actions,2023-08-01T04:07:13Z,- github-actions commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1659533083) at 2023-07-31 09:07 PM PDT -github-actions,2023-08-01T04:32:11Z,- github-actions commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1659549727) at 2023-07-31 09:32 PM PDT -github-actions,2023-08-01T17:44:56Z,- github-actions commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1660806728) at 2023-08-01 10:44 AM PDT -github-actions,2023-08-02T18:05:31Z,- github-actions commented on pull request: [5130](https://github.com/hackforla/website/pull/5130#issuecomment-1662710136) at 2023-08-02 11:05 AM PDT -github-actions,2023-08-03T05:01:19Z,- github-actions commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1663293101) at 2023-08-02 10:01 PM PDT -github-actions,2023-08-04T19:38:13Z,- github-actions commented on pull request: [5141](https://github.com/hackforla/website/pull/5141#issuecomment-1666084988) at 2023-08-04 12:38 PM PDT -github-actions,2023-08-04T20:55:09Z,- github-actions commented on pull request: [5142](https://github.com/hackforla/website/pull/5142#issuecomment-1666171032) at 2023-08-04 01:55 PM PDT -github-actions,2023-08-04T23:58:55Z,- github-actions commented on pull request: [5143](https://github.com/hackforla/website/pull/5143#issuecomment-1666289398) at 2023-08-04 04:58 PM PDT -github-actions,2023-08-05T00:37:06Z,- github-actions commented on pull request: [5144](https://github.com/hackforla/website/pull/5144#issuecomment-1666306733) at 2023-08-04 05:37 PM PDT -github-actions,2023-08-05T03:10:28Z,- github-actions commented on pull request: [5145](https://github.com/hackforla/website/pull/5145#issuecomment-1666367543) at 2023-08-04 08:10 PM PDT -github-actions,2023-08-06T17:56:28Z,- github-actions commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1666933333) at 2023-08-06 10:56 AM PDT -github-actions,2023-08-07T06:36:18Z,- github-actions commented on pull request: [5155](https://github.com/hackforla/website/pull/5155#issuecomment-1667269729) at 2023-08-06 11:36 PM PDT -github-actions,2023-08-07T07:54:54Z,- github-actions commented on pull request: [5156](https://github.com/hackforla/website/pull/5156#issuecomment-1667375083) at 2023-08-07 12:54 AM PDT -github-actions,2023-08-07T18:55:56Z,- github-actions commented on pull request: [5157](https://github.com/hackforla/website/pull/5157#issuecomment-1668420741) at 2023-08-07 11:55 AM PDT -github-actions,2023-08-07T22:09:22Z,- github-actions commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1668640901) at 2023-08-07 03:09 PM PDT -github-actions,2023-08-08T01:06:22Z,- github-actions commented on pull request: [5161](https://github.com/hackforla/website/pull/5161#issuecomment-1668763295) at 2023-08-07 06:06 PM PDT -github-actions,2023-08-08T02:10:11Z,- github-actions commented on pull request: [5162](https://github.com/hackforla/website/pull/5162#issuecomment-1668804147) at 2023-08-07 07:10 PM PDT -github-actions,2023-08-09T20:18:56Z,- github-actions commented on pull request: [5168](https://github.com/hackforla/website/pull/5168#issuecomment-1672088613) at 2023-08-09 01:18 PM PDT -github-actions,2023-08-09T20:35:08Z,- github-actions commented on pull request: [5169](https://github.com/hackforla/website/pull/5169#issuecomment-1672110613) at 2023-08-09 01:35 PM PDT -github-actions,2023-08-09T22:34:08Z,- github-actions commented on pull request: [5170](https://github.com/hackforla/website/pull/5170#issuecomment-1672265949) at 2023-08-09 03:34 PM PDT -github-actions,2023-08-11T17:28:18Z,- github-actions commented on pull request: [5183](https://github.com/hackforla/website/pull/5183#issuecomment-1675139616) at 2023-08-11 10:28 AM PDT -github-actions,2023-08-15T00:48:42Z,- github-actions commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1678276735) at 2023-08-14 05:48 PM PDT -github-actions,2023-08-15T01:44:25Z,- github-actions commented on pull request: [5204](https://github.com/hackforla/website/pull/5204#issuecomment-1678310423) at 2023-08-14 06:44 PM PDT -github-actions,2023-08-15T22:52:16Z,- github-actions commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1679730139) at 2023-08-15 03:52 PM PDT -github-actions,2023-08-16T01:54:22Z,- github-actions commented on pull request: [5236](https://github.com/hackforla/website/pull/5236#issuecomment-1679852219) at 2023-08-15 06:54 PM PDT -github-actions,2023-08-16T19:27:20Z,- github-actions commented on pull request: [5239](https://github.com/hackforla/website/pull/5239#issuecomment-1681158811) at 2023-08-16 12:27 PM PDT -github-actions,2023-08-16T23:27:19Z,- github-actions commented on pull request: [5240](https://github.com/hackforla/website/pull/5240#issuecomment-1681393371) at 2023-08-16 04:27 PM PDT -github-actions,2023-08-17T00:42:54Z,- github-actions commented on pull request: [5241](https://github.com/hackforla/website/pull/5241#issuecomment-1681442772) at 2023-08-16 05:42 PM PDT -github-actions,2023-08-17T14:03:39Z,- github-actions commented on pull request: [5243](https://github.com/hackforla/website/pull/5243#issuecomment-1682347398) at 2023-08-17 07:03 AM PDT -github-actions,2023-08-17T20:01:37Z,- github-actions commented on pull request: [5245](https://github.com/hackforla/website/pull/5245#issuecomment-1682898700) at 2023-08-17 01:01 PM PDT -github-actions,2023-08-17T22:57:06Z,- github-actions commented on pull request: [5247](https://github.com/hackforla/website/pull/5247#issuecomment-1683082728) at 2023-08-17 03:57 PM PDT -github-actions,2023-08-18T00:41:53Z,- github-actions commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1683161554) at 2023-08-17 05:41 PM PDT -github-actions,2023-08-18T18:09:19Z,- github-actions commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1684261740) at 2023-08-18 11:09 AM PDT -github-actions,2023-08-19T06:02:09Z,- github-actions commented on pull request: [5257](https://github.com/hackforla/website/pull/5257#issuecomment-1684844881) at 2023-08-18 11:02 PM PDT -github-actions,2023-08-19T09:34:59Z,- github-actions commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1684904877) at 2023-08-19 02:34 AM PDT -github-actions,2023-08-19T16:39:48Z,- github-actions commented on pull request: [5259](https://github.com/hackforla/website/pull/5259#issuecomment-1685041675) at 2023-08-19 09:39 AM PDT -github-actions,2023-08-20T02:59:26Z,- github-actions commented on pull request: [5261](https://github.com/hackforla/website/pull/5261#issuecomment-1685162101) at 2023-08-19 07:59 PM PDT -github-actions,2023-08-20T03:02:33Z,- github-actions commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1685162605) at 2023-08-19 08:02 PM PDT -github-actions,2023-08-20T04:27:47Z,- github-actions commented on pull request: [5263](https://github.com/hackforla/website/pull/5263#issuecomment-1685173145) at 2023-08-19 09:27 PM PDT -github-actions,2023-08-20T22:47:13Z,- github-actions commented on pull request: [5275](https://github.com/hackforla/website/pull/5275#issuecomment-1685416464) at 2023-08-20 03:47 PM PDT -github-actions,2023-08-21T00:16:27Z,- github-actions commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1685438477) at 2023-08-20 05:16 PM PDT -github-actions,2023-08-21T19:51:23Z,- github-actions commented on pull request: [5280](https://github.com/hackforla/website/pull/5280#issuecomment-1686946630) at 2023-08-21 12:51 PM PDT -github-actions,2023-08-22T16:36:48Z,- github-actions commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1688555972) at 2023-08-22 09:36 AM PDT -github-actions,2023-08-22T21:13:34Z,- github-actions commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1688940453) at 2023-08-22 02:13 PM PDT -github-actions,2023-08-23T14:44:50Z,- github-actions commented on pull request: [5294](https://github.com/hackforla/website/pull/5294#issuecomment-1690097577) at 2023-08-23 07:44 AM PDT -github-actions,2023-08-23T19:05:46Z,- github-actions commented on pull request: [5295](https://github.com/hackforla/website/pull/5295#issuecomment-1690493765) at 2023-08-23 12:05 PM PDT -github-actions,2023-08-23T23:19:40Z,- github-actions commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1690765793) at 2023-08-23 04:19 PM PDT -github-actions,2023-08-24T08:33:49Z,- github-actions commented on pull request: [5298](https://github.com/hackforla/website/pull/5298#issuecomment-1691250044) at 2023-08-24 01:33 AM PDT -github-actions,2023-08-24T18:52:29Z,- github-actions commented on pull request: [5299](https://github.com/hackforla/website/pull/5299#issuecomment-1692240640) at 2023-08-24 11:52 AM PDT -github-actions,2023-08-28T14:38:02Z,- github-actions commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1695818453) at 2023-08-28 07:38 AM PDT -github-actions,2023-08-29T04:09:01Z,- github-actions commented on pull request: [5331](https://github.com/hackforla/website/pull/5331#issuecomment-1696735808) at 2023-08-28 09:09 PM PDT -github-actions,2023-08-29T19:09:02Z,- github-actions commented on pull request: [5335](https://github.com/hackforla/website/pull/5335#issuecomment-1697987166) at 2023-08-29 12:09 PM PDT -github-actions,2023-08-29T20:20:22Z,- github-actions commented on pull request: [5339](https://github.com/hackforla/website/pull/5339#issuecomment-1698073294) at 2023-08-29 01:20 PM PDT -github-actions,2023-08-29T21:13:11Z,- github-actions commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1698152805) at 2023-08-29 02:13 PM PDT -github-actions,2023-08-29T21:16:32Z,- github-actions commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698156564) at 2023-08-29 02:16 PM PDT -github-actions,2023-08-30T00:55:34Z,- github-actions commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1698336383) at 2023-08-29 05:55 PM PDT -github-actions,2023-08-30T03:50:07Z,- github-actions commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1698446727) at 2023-08-29 08:50 PM PDT -github-actions,2023-08-30T20:13:14Z,- github-actions commented on pull request: [5380](https://github.com/hackforla/website/pull/5380#issuecomment-1699774951) at 2023-08-30 01:13 PM PDT -github-actions,2023-08-30T21:05:06Z,- github-actions commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1699841659) at 2023-08-30 02:05 PM PDT -github-actions,2023-08-31T03:03:19Z,- github-actions commented on pull request: [5392](https://github.com/hackforla/website/pull/5392#issuecomment-1700302189) at 2023-08-30 08:03 PM PDT -github-actions,2023-08-31T17:57:04Z,- github-actions commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1701514038) at 2023-08-31 10:57 AM PDT -github-actions,2023-08-31T18:31:56Z,- github-actions commented on pull request: [5397](https://github.com/hackforla/website/pull/5397#issuecomment-1701562294) at 2023-08-31 11:31 AM PDT -github-actions,2023-08-31T19:39:02Z,- github-actions commented on pull request: [5398](https://github.com/hackforla/website/pull/5398#issuecomment-1701678000) at 2023-08-31 12:39 PM PDT -github-actions,2023-08-31T19:41:20Z,- github-actions commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1701681276) at 2023-08-31 12:41 PM PDT -github-actions,2023-08-31T20:08:55Z,- github-actions commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701713434) at 2023-08-31 01:08 PM PDT -github-actions,2023-08-31T22:24:43Z,- github-actions commented on pull request: [5402](https://github.com/hackforla/website/pull/5402#issuecomment-1701860602) at 2023-08-31 03:24 PM PDT -github-actions,2023-09-01T07:24:38Z,- github-actions commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1702293838) at 2023-09-01 12:24 AM PDT -github-actions,2023-09-01T19:08:11Z,- github-actions commented on pull request: [5412](https://github.com/hackforla/website/pull/5412#issuecomment-1703208785) at 2023-09-01 12:08 PM PDT -github-actions,2023-09-01T20:46:30Z,- github-actions commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1703302659) at 2023-09-01 01:46 PM PDT -github-actions,2023-09-01T22:41:21Z,- github-actions commented on pull request: [5414](https://github.com/hackforla/website/pull/5414#issuecomment-1703397484) at 2023-09-01 03:41 PM PDT -github-actions,2023-09-01T23:18:05Z,- github-actions commented on pull request: [5415](https://github.com/hackforla/website/pull/5415#issuecomment-1703466691) at 2023-09-01 04:18 PM PDT -github-actions,2023-09-02T01:58:09Z,- github-actions commented on pull request: [5416](https://github.com/hackforla/website/pull/5416#issuecomment-1703642359) at 2023-09-01 06:58 PM PDT -github-actions,2023-09-02T02:37:29Z,- github-actions commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1703655467) at 2023-09-01 07:37 PM PDT -github-actions,2023-09-02T04:49:26Z,- github-actions commented on pull request: [5418](https://github.com/hackforla/website/pull/5418#issuecomment-1703695531) at 2023-09-01 09:49 PM PDT -github-actions,2023-09-02T05:45:54Z,- github-actions commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1703718183) at 2023-09-01 10:45 PM PDT -github-actions,2023-09-02T20:53:11Z,- github-actions commented on pull request: [5421](https://github.com/hackforla/website/pull/5421#issuecomment-1703938643) at 2023-09-02 01:53 PM PDT -github-actions,2023-09-03T00:12:14Z,- github-actions commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1703969598) at 2023-09-02 05:12 PM PDT -github-actions,2023-09-03T00:52:20Z,- github-actions commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1703975805) at 2023-09-02 05:52 PM PDT -github-actions,2023-09-03T06:43:25Z,- github-actions commented on pull request: [5424](https://github.com/hackforla/website/pull/5424#issuecomment-1704027401) at 2023-09-02 11:43 PM PDT -github-actions,2023-09-03T07:38:06Z,- github-actions commented on pull request: [5425](https://github.com/hackforla/website/pull/5425#issuecomment-1704037379) at 2023-09-03 12:38 AM PDT -github-actions,2023-09-03T10:12:30Z,- github-actions commented on pull request: [5430](https://github.com/hackforla/website/pull/5430#issuecomment-1704091761) at 2023-09-03 03:12 AM PDT -github-actions,2023-09-03T18:21:00Z,- github-actions commented on pull request: [5431](https://github.com/hackforla/website/pull/5431#issuecomment-1704368338) at 2023-09-03 11:21 AM PDT -github-actions,2023-09-03T20:54:07Z,- github-actions commented on pull request: [5430](https://github.com/hackforla/website/pull/5430#issuecomment-1704399162) at 2023-09-03 01:54 PM PDT -github-actions,2023-09-03T23:26:48Z,- github-actions commented on pull request: [5432](https://github.com/hackforla/website/pull/5432#issuecomment-1704434017) at 2023-09-03 04:26 PM PDT -github-actions,2023-09-03T23:28:58Z,- github-actions commented on pull request: [5432](https://github.com/hackforla/website/pull/5432#issuecomment-1704434463) at 2023-09-03 04:28 PM PDT -github-actions,2023-09-03T23:51:04Z,- github-actions commented on pull request: [5432](https://github.com/hackforla/website/pull/5432#issuecomment-1704439063) at 2023-09-03 04:51 PM PDT -github-actions,2023-09-04T00:10:19Z,- github-actions commented on pull request: [5433](https://github.com/hackforla/website/pull/5433#issuecomment-1704444563) at 2023-09-03 05:10 PM PDT -github-actions,2023-09-04T04:18:25Z,- github-actions commented on pull request: [5436](https://github.com/hackforla/website/pull/5436#issuecomment-1704586672) at 2023-09-03 09:18 PM PDT -github-actions,2023-09-04T04:21:49Z,- github-actions commented on pull request: [5436](https://github.com/hackforla/website/pull/5436#issuecomment-1704588624) at 2023-09-03 09:21 PM PDT -github-actions,2023-09-04T05:26:01Z,- github-actions commented on pull request: [5437](https://github.com/hackforla/website/pull/5437#issuecomment-1704631894) at 2023-09-03 10:26 PM PDT -github-actions,2023-09-04T07:21:39Z,- github-actions commented on pull request: [5438](https://github.com/hackforla/website/pull/5438#issuecomment-1704744324) at 2023-09-04 12:21 AM PDT -github-actions,2023-09-04T23:29:15Z,- github-actions commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1705764686) at 2023-09-04 04:29 PM PDT -github-actions,2023-09-05T02:30:40Z,- github-actions commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1705861378) at 2023-09-04 07:30 PM PDT -github-actions,2023-09-05T20:39:48Z,- github-actions commented on pull request: [5449](https://github.com/hackforla/website/pull/5449#issuecomment-1707279980) at 2023-09-05 01:39 PM PDT -github-actions,2023-09-05T22:54:48Z,- github-actions commented on pull request: [5451](https://github.com/hackforla/website/pull/5451#issuecomment-1707413962) at 2023-09-05 03:54 PM PDT -github-actions,2023-09-07T04:52:46Z,- github-actions commented on pull request: [5454](https://github.com/hackforla/website/pull/5454#issuecomment-1709473060) at 2023-09-06 09:52 PM PDT -github-actions,2023-09-07T19:56:00Z,- github-actions commented on pull request: [5455](https://github.com/hackforla/website/pull/5455#issuecomment-1710694772) at 2023-09-07 12:56 PM PDT -github-actions,2023-09-07T20:22:53Z,- github-actions commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1710724563) at 2023-09-07 01:22 PM PDT -github-actions,2023-09-08T04:09:33Z,- github-actions commented on pull request: [5457](https://github.com/hackforla/website/pull/5457#issuecomment-1711046838) at 2023-09-07 09:09 PM PDT -github-actions,2023-09-08T04:34:22Z,- github-actions commented on pull request: [5458](https://github.com/hackforla/website/pull/5458#issuecomment-1711060792) at 2023-09-07 09:34 PM PDT -github-actions,2023-09-08T16:04:42Z,- github-actions commented on pull request: [5464](https://github.com/hackforla/website/pull/5464#issuecomment-1711905628) at 2023-09-08 09:04 AM PDT -github-actions,2023-09-08T18:39:43Z,- github-actions commented on pull request: [5465](https://github.com/hackforla/website/pull/5465#issuecomment-1712081577) at 2023-09-08 11:39 AM PDT -github-actions,2023-09-08T22:50:47Z,- github-actions commented on pull request: [5466](https://github.com/hackforla/website/pull/5466#issuecomment-1712310691) at 2023-09-08 03:50 PM PDT -github-actions,2023-09-09T02:23:39Z,- github-actions commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1712388934) at 2023-09-08 07:23 PM PDT -github-actions,2023-09-09T14:44:12Z,- github-actions commented on pull request: [5468](https://github.com/hackforla/website/pull/5468#issuecomment-1712528253) at 2023-09-09 07:44 AM PDT -github-actions,2023-09-10T02:58:33Z,- github-actions commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712695852) at 2023-09-09 07:58 PM PDT -github-actions,2023-09-11T23:33:58Z,- github-actions commented on pull request: [5478](https://github.com/hackforla/website/pull/5478#issuecomment-1714740115) at 2023-09-11 04:33 PM PDT -github-actions,2023-09-12T05:01:53Z,- github-actions commented on pull request: [5488](https://github.com/hackforla/website/pull/5488#issuecomment-1714971591) at 2023-09-11 10:01 PM PDT -github-actions,2023-09-12T19:15:47Z,- github-actions commented on pull request: [5510](https://github.com/hackforla/website/pull/5510#issuecomment-1716281558) at 2023-09-12 12:15 PM PDT -github-actions,2023-09-13T03:45:28Z,- github-actions commented on pull request: [5512](https://github.com/hackforla/website/pull/5512#issuecomment-1716896567) at 2023-09-12 08:45 PM PDT -github-actions,2023-09-13T05:07:23Z,- github-actions commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1716951756) at 2023-09-12 10:07 PM PDT -github-actions,2023-09-13T16:37:00Z,- github-actions commented on pull request: [5521](https://github.com/hackforla/website/pull/5521#issuecomment-1717965568) at 2023-09-13 09:37 AM PDT -github-actions,2023-09-13T21:15:11Z,- github-actions commented on pull request: [5522](https://github.com/hackforla/website/pull/5522#issuecomment-1718327057) at 2023-09-13 02:15 PM PDT -github-actions,2023-09-14T22:33:32Z,- github-actions commented on pull request: [5523](https://github.com/hackforla/website/pull/5523#issuecomment-1720242078) at 2023-09-14 03:33 PM PDT -github-actions,2023-09-15T01:19:24Z,- github-actions commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1720353022) at 2023-09-14 06:19 PM PDT -github-actions,2023-09-15T02:11:29Z,- github-actions commented on pull request: [5535](https://github.com/hackforla/website/pull/5535#issuecomment-1720388216) at 2023-09-14 07:11 PM PDT -github-actions,2023-09-15T03:24:57Z,- github-actions commented on pull request: [5537](https://github.com/hackforla/website/pull/5537#issuecomment-1720430368) at 2023-09-14 08:24 PM PDT -github-actions,2023-09-15T06:26:49Z,- github-actions commented on pull request: [5538](https://github.com/hackforla/website/pull/5538#issuecomment-1720744380) at 2023-09-14 11:26 PM PDT -github-actions,2023-09-15T16:56:17Z,- github-actions commented on pull request: [5542](https://github.com/hackforla/website/pull/5542#issuecomment-1721580987) at 2023-09-15 09:56 AM PDT -github-actions,2023-09-16T10:38:24Z,- github-actions commented on pull request: [5543](https://github.com/hackforla/website/pull/5543#issuecomment-1722200527) at 2023-09-16 03:38 AM PDT -github-actions,2023-09-17T04:29:32Z,- github-actions commented on pull request: [5544](https://github.com/hackforla/website/pull/5544#issuecomment-1722388873) at 2023-09-16 09:29 PM PDT -github-actions,2023-09-17T05:31:37Z,- github-actions commented on pull request: [5545](https://github.com/hackforla/website/pull/5545#issuecomment-1722397291) at 2023-09-16 10:31 PM PDT -github-actions,2023-09-17T06:13:53Z,- github-actions commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722403136) at 2023-09-16 11:13 PM PDT -github-actions,2023-09-17T20:18:46Z,- github-actions commented on pull request: [5549](https://github.com/hackforla/website/pull/5549#issuecomment-1722559496) at 2023-09-17 01:18 PM PDT -github-actions,2023-09-18T01:31:19Z,- github-actions commented on pull request: [5550](https://github.com/hackforla/website/pull/5550#issuecomment-1722646501) at 2023-09-17 06:31 PM PDT -github-actions,2023-09-18T17:06:50Z,- github-actions commented on pull request: [5552](https://github.com/hackforla/website/pull/5552#issuecomment-1724015956) at 2023-09-18 10:06 AM PDT -github-actions,2023-09-18T18:49:17Z,- github-actions commented on pull request: [5553](https://github.com/hackforla/website/pull/5553#issuecomment-1724188250) at 2023-09-18 11:49 AM PDT -github-actions,2023-09-18T19:25:20Z,- github-actions commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1724238135) at 2023-09-18 12:25 PM PDT -github-actions,2023-09-18T19:51:01Z,- github-actions commented on pull request: [5555](https://github.com/hackforla/website/pull/5555#issuecomment-1724272604) at 2023-09-18 12:51 PM PDT -github-actions,2023-09-18T21:14:02Z,- github-actions commented on pull request: [5556](https://github.com/hackforla/website/pull/5556#issuecomment-1724439376) at 2023-09-18 02:14 PM PDT -github-actions,2023-09-19T19:34:35Z,- github-actions commented on pull request: [5557](https://github.com/hackforla/website/pull/5557#issuecomment-1726358769) at 2023-09-19 12:34 PM PDT -github-actions,2023-09-20T01:53:43Z,- github-actions commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1726766004) at 2023-09-19 06:53 PM PDT -github-actions,2023-09-20T04:00:33Z,- github-actions commented on pull request: [5560](https://github.com/hackforla/website/pull/5560#issuecomment-1726891007) at 2023-09-19 09:00 PM PDT -github-actions,2023-09-20T22:17:41Z,- github-actions commented on pull request: [5563](https://github.com/hackforla/website/pull/5563#issuecomment-1728498465) at 2023-09-20 03:17 PM PDT -github-actions,2023-09-21T00:22:07Z,- github-actions commented on pull request: [5564](https://github.com/hackforla/website/pull/5564#issuecomment-1728587184) at 2023-09-20 05:22 PM PDT -github-actions,2023-09-21T07:19:12Z,- github-actions commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1728995110) at 2023-09-21 12:19 AM PDT -github-actions,2023-09-21T08:30:31Z,- github-actions commented on pull request: [5568](https://github.com/hackforla/website/pull/5568#issuecomment-1729102454) at 2023-09-21 01:30 AM PDT -github-actions,2023-09-21T19:00:21Z,- github-actions commented on pull request: [5569](https://github.com/hackforla/website/pull/5569#issuecomment-1730138103) at 2023-09-21 12:00 PM PDT -github-actions,2023-09-22T01:27:07Z,- github-actions commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1730635618) at 2023-09-21 06:27 PM PDT -github-actions,2023-09-22T20:54:10Z,- github-actions commented on pull request: [5571](https://github.com/hackforla/website/pull/5571#issuecomment-1732022155) at 2023-09-22 01:54 PM PDT -github-actions,2023-09-23T02:27:56Z,- github-actions commented on pull request: [5572](https://github.com/hackforla/website/pull/5572#issuecomment-1732185678) at 2023-09-22 07:27 PM PDT -github-actions,2023-09-24T04:03:16Z,- github-actions commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1732470493) at 2023-09-23 09:03 PM PDT -github-actions,2023-09-24T04:35:14Z,- github-actions commented on pull request: [5574](https://github.com/hackforla/website/pull/5574#issuecomment-1732474707) at 2023-09-23 09:35 PM PDT -github-actions,2023-09-24T05:20:00Z,- github-actions commented on pull request: [5575](https://github.com/hackforla/website/pull/5575#issuecomment-1732480603) at 2023-09-23 10:20 PM PDT -github-actions,2023-09-24T05:43:18Z,- github-actions commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1732490921) at 2023-09-23 10:43 PM PDT -github-actions,2023-09-24T09:20:36Z,- github-actions commented on pull request: [5577](https://github.com/hackforla/website/pull/5577#issuecomment-1732528755) at 2023-09-24 02:20 AM PDT -github-actions,2023-09-25T05:20:08Z,- github-actions commented on pull request: [5580](https://github.com/hackforla/website/pull/5580#issuecomment-1732934871) at 2023-09-24 10:20 PM PDT -github-actions,2023-09-25T23:05:35Z,- github-actions commented on pull request: [5582](https://github.com/hackforla/website/pull/5582#issuecomment-1734581604) at 2023-09-25 04:05 PM PDT -github-actions,2023-09-25T23:08:10Z,- github-actions commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1734583800) at 2023-09-25 04:08 PM PDT -github-actions,2023-09-26T02:05:25Z,- github-actions commented on pull request: [5585](https://github.com/hackforla/website/pull/5585#issuecomment-1734717793) at 2023-09-25 07:05 PM PDT -github-actions,2023-09-26T06:49:10Z,- github-actions commented on pull request: [5586](https://github.com/hackforla/website/pull/5586#issuecomment-1734929721) at 2023-09-25 11:49 PM PDT -github-actions,2023-09-26T20:34:15Z,- github-actions commented on pull request: [5593](https://github.com/hackforla/website/pull/5593#issuecomment-1736255292) at 2023-09-26 01:34 PM PDT -github-actions,2023-09-27T03:25:55Z,- github-actions commented on pull request: [5610](https://github.com/hackforla/website/pull/5610#issuecomment-1736615139) at 2023-09-26 08:25 PM PDT -github-actions,2023-09-27T03:46:44Z,- github-actions commented on pull request: [5611](https://github.com/hackforla/website/pull/5611#issuecomment-1736627228) at 2023-09-26 08:46 PM PDT -github-actions,2023-09-27T03:57:45Z,- github-actions commented on pull request: [5612](https://github.com/hackforla/website/pull/5612#issuecomment-1736633599) at 2023-09-26 08:57 PM PDT -github-actions,2023-09-27T23:07:20Z,- github-actions commented on pull request: [5616](https://github.com/hackforla/website/pull/5616#issuecomment-1738221333) at 2023-09-27 04:07 PM PDT -github-actions,2023-09-30T01:30:49Z,- github-actions commented on pull request: [5634](https://github.com/hackforla/website/pull/5634#issuecomment-1741619407) at 2023-09-29 06:30 PM PDT -github-actions,2023-09-30T22:48:37Z,- github-actions commented on pull request: [5636](https://github.com/hackforla/website/pull/5636#issuecomment-1741875674) at 2023-09-30 03:48 PM PDT -github-actions,2023-10-01T00:44:35Z,- github-actions commented on pull request: [5637](https://github.com/hackforla/website/pull/5637#issuecomment-1741897509) at 2023-09-30 05:44 PM PDT -github-actions,2023-10-02T01:09:38Z,- github-actions commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1742275799) at 2023-10-01 06:09 PM PDT -github-actions,2023-10-02T02:52:44Z,- github-actions commented on pull request: [5641](https://github.com/hackforla/website/pull/5641#issuecomment-1742335498) at 2023-10-01 07:52 PM PDT -github-actions,2023-10-02T04:59:42Z,- github-actions commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1742401677) at 2023-10-01 09:59 PM PDT -github-actions,2023-10-02T06:28:33Z,- github-actions commented on pull request: [5645](https://github.com/hackforla/website/pull/5645#issuecomment-1742460662) at 2023-10-01 11:28 PM PDT -github-actions,2023-10-02T19:27:29Z,- github-actions commented on pull request: [5646](https://github.com/hackforla/website/pull/5646#issuecomment-1743628130) at 2023-10-02 12:27 PM PDT -github-actions,2023-10-03T00:17:20Z,- github-actions commented on pull request: [5648](https://github.com/hackforla/website/pull/5648#issuecomment-1743961485) at 2023-10-02 05:17 PM PDT -github-actions,2023-10-03T09:31:09Z,- github-actions commented on pull request: [5649](https://github.com/hackforla/website/pull/5649#issuecomment-1744588583) at 2023-10-03 02:31 AM PDT -github-actions,2023-10-03T19:58:25Z,- github-actions commented on pull request: [5658](https://github.com/hackforla/website/pull/5658#issuecomment-1745635393) at 2023-10-03 12:58 PM PDT -github-actions,2023-10-04T01:49:04Z,- github-actions commented on pull request: [5659](https://github.com/hackforla/website/pull/5659#issuecomment-1746003904) at 2023-10-03 06:49 PM PDT -github-actions,2023-10-04T19:01:11Z,- github-actions commented on pull request: [5661](https://github.com/hackforla/website/pull/5661#issuecomment-1747471137) at 2023-10-04 12:01 PM PDT -github-actions,2023-10-04T22:37:17Z,- github-actions commented on pull request: [5662](https://github.com/hackforla/website/pull/5662#issuecomment-1747742706) at 2023-10-04 03:37 PM PDT -github-actions,2023-10-05T04:12:24Z,- github-actions commented on pull request: [5663](https://github.com/hackforla/website/pull/5663#issuecomment-1748004868) at 2023-10-04 09:12 PM PDT -github-actions,2023-10-05T05:16:24Z,- github-actions commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1748046132) at 2023-10-04 10:16 PM PDT -github-actions,2023-10-05T18:35:55Z,- github-actions commented on pull request: [5665](https://github.com/hackforla/website/pull/5665#issuecomment-1749444408) at 2023-10-05 11:35 AM PDT -github-actions,2023-10-06T22:59:03Z,- github-actions commented on pull request: [5668](https://github.com/hackforla/website/pull/5668#issuecomment-1751483471) at 2023-10-06 03:59 PM PDT -github-actions,2023-10-06T23:08:44Z,- github-actions commented on pull request: [5669](https://github.com/hackforla/website/pull/5669#issuecomment-1751488225) at 2023-10-06 04:08 PM PDT -github-actions,2023-10-06T23:57:59Z,- github-actions commented on pull request: [5670](https://github.com/hackforla/website/pull/5670#issuecomment-1751511188) at 2023-10-06 04:57 PM PDT -github-actions,2023-10-07T09:36:55Z,- github-actions commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1751665483) at 2023-10-07 02:36 AM PDT -github-actions,2023-10-07T15:59:25Z,- github-actions commented on pull request: [5672](https://github.com/hackforla/website/pull/5672#issuecomment-1751745159) at 2023-10-07 08:59 AM PDT -github-actions,2023-10-08T19:14:40Z,- github-actions commented on pull request: [5682](https://github.com/hackforla/website/pull/5682#issuecomment-1752136801) at 2023-10-08 12:14 PM PDT -github-actions,2023-10-09T01:49:48Z,- github-actions commented on pull request: [5683](https://github.com/hackforla/website/pull/5683#issuecomment-1752248788) at 2023-10-08 06:49 PM PDT -github-actions,2023-10-09T14:40:52Z,- github-actions commented on pull request: [5688](https://github.com/hackforla/website/pull/5688#issuecomment-1753142606) at 2023-10-09 07:40 AM PDT -github-actions,2023-10-09T23:58:37Z,- github-actions commented on pull request: [5689](https://github.com/hackforla/website/pull/5689#issuecomment-1754075041) at 2023-10-09 04:58 PM PDT -github-actions,2023-10-10T00:04:32Z,- github-actions commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1754082450) at 2023-10-09 05:04 PM PDT -github-actions,2023-10-10T06:11:51Z,- github-actions commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1754465292) at 2023-10-09 11:11 PM PDT -github-actions,2023-10-10T23:47:37Z,- github-actions commented on pull request: [5700](https://github.com/hackforla/website/pull/5700#issuecomment-1756473234) at 2023-10-10 04:47 PM PDT -github-actions,2023-10-11T01:52:59Z,- github-actions commented on pull request: [5701](https://github.com/hackforla/website/pull/5701#issuecomment-1756611643) at 2023-10-10 06:52 PM PDT -github-actions,2023-10-11T02:34:23Z,- github-actions commented on pull request: [5702](https://github.com/hackforla/website/pull/5702#issuecomment-1756653665) at 2023-10-10 07:34 PM PDT -github-actions,2023-10-13T21:39:12Z,- github-actions commented on pull request: [5704](https://github.com/hackforla/website/pull/5704#issuecomment-1762255675) at 2023-10-13 02:39 PM PDT -github-actions,2023-10-16T18:07:26Z,- github-actions commented on pull request: [5718](https://github.com/hackforla/website/pull/5718#issuecomment-1765012845) at 2023-10-16 11:07 AM PDT -github-actions,2023-10-16T19:52:10Z,- github-actions commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1765171218) at 2023-10-16 12:52 PM PDT -github-actions,2023-10-17T18:27:46Z,- github-actions commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1766946532) at 2023-10-17 11:27 AM PDT -github-actions,2023-10-17T20:08:43Z,- github-actions commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1767092499) at 2023-10-17 01:08 PM PDT -github-actions,2023-10-20T00:56:17Z,- github-actions commented on pull request: [5740](https://github.com/hackforla/website/pull/5740#issuecomment-1771904241) at 2023-10-19 05:56 PM PDT -github-actions,2023-10-20T02:49:43Z,- github-actions commented on pull request: [5741](https://github.com/hackforla/website/pull/5741#issuecomment-1771994069) at 2023-10-19 07:49 PM PDT -github-actions,2023-10-20T18:53:14Z,- github-actions commented on pull request: [5744](https://github.com/hackforla/website/pull/5744#issuecomment-1773240352) at 2023-10-20 11:53 AM PDT -github-actions,2023-10-20T21:50:41Z,- github-actions commented on pull request: [5745](https://github.com/hackforla/website/pull/5745#issuecomment-1773437228) at 2023-10-20 02:50 PM PDT -github-actions,2023-10-22T06:02:17Z,- github-actions commented on pull request: [5750](https://github.com/hackforla/website/pull/5750#issuecomment-1774004314) at 2023-10-21 11:02 PM PDT -github-actions,2023-10-22T13:36:21Z,- github-actions commented on pull request: [5751](https://github.com/hackforla/website/pull/5751#issuecomment-1774097945) at 2023-10-22 06:36 AM PDT -github-actions,2023-10-22T19:39:39Z,- github-actions commented on pull request: [5765](https://github.com/hackforla/website/pull/5765#issuecomment-1774181166) at 2023-10-22 12:39 PM PDT -github-actions,2023-10-23T22:52:11Z,- github-actions commented on pull request: [5768](https://github.com/hackforla/website/pull/5768#issuecomment-1776147443) at 2023-10-23 03:52 PM PDT -github-actions,2023-10-23T23:55:07Z,- github-actions commented on pull request: [5769](https://github.com/hackforla/website/pull/5769#issuecomment-1776236123) at 2023-10-23 04:55 PM PDT -github-actions,2023-10-24T19:12:52Z,- github-actions commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1777867967) at 2023-10-24 12:12 PM PDT -github-actions,2023-10-25T23:15:59Z,- github-actions commented on pull request: [5784](https://github.com/hackforla/website/pull/5784#issuecomment-1780184550) at 2023-10-25 04:15 PM PDT -github-actions,2023-10-25T23:18:13Z,- github-actions commented on pull request: [5785](https://github.com/hackforla/website/pull/5785#issuecomment-1780186176) at 2023-10-25 04:18 PM PDT -github-actions,2023-10-26T09:18:59Z,- github-actions commented on pull request: [5787](https://github.com/hackforla/website/pull/5787#issuecomment-1780732353) at 2023-10-26 02:18 AM PDT -github-actions,2023-10-26T18:24:43Z,- github-actions commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1781628875) at 2023-10-26 11:24 AM PDT -github-actions,2023-10-27T21:37:43Z,- github-actions commented on pull request: [5789](https://github.com/hackforla/website/pull/5789#issuecomment-1783539575) at 2023-10-27 02:37 PM PDT -github-actions,2023-10-29T21:55:44Z,- github-actions commented on pull request: [5793](https://github.com/hackforla/website/pull/5793#issuecomment-1784235835) at 2023-10-29 02:55 PM PDT -github-actions,2023-10-30T05:34:38Z,- github-actions commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1784513551) at 2023-10-29 10:34 PM PDT -github-actions,2023-11-01T21:18:20Z,- github-actions commented on pull request: [5820](https://github.com/hackforla/website/pull/5820#issuecomment-1789701733) at 2023-11-01 02:18 PM PDT -github-actions,2023-11-03T03:28:49Z,- github-actions commented on pull request: [5828](https://github.com/hackforla/website/pull/5828#issuecomment-1791851787) at 2023-11-02 08:28 PM PDT -github-actions,2023-11-03T08:08:11Z,- github-actions commented on pull request: [5833](https://github.com/hackforla/website/pull/5833#issuecomment-1792018516) at 2023-11-03 01:08 AM PDT -github-actions,2023-11-03T09:02:44Z,- github-actions commented on pull request: [5834](https://github.com/hackforla/website/pull/5834#issuecomment-1792079047) at 2023-11-03 02:02 AM PDT -github-actions,2023-11-04T05:31:54Z,- github-actions commented on pull request: [5835](https://github.com/hackforla/website/pull/5835#issuecomment-1793349209) at 2023-11-03 09:31 PM PST -github-actions,2023-11-05T09:26:54Z,- github-actions commented on pull request: [5836](https://github.com/hackforla/website/pull/5836#issuecomment-1793671900) at 2023-11-05 01:26 AM PST -github-actions,2023-11-05T09:56:02Z,- github-actions commented on pull request: [5837](https://github.com/hackforla/website/pull/5837#issuecomment-1793677172) at 2023-11-05 01:56 AM PST -github-actions,2023-11-05T19:36:02Z,- github-actions commented on pull request: [5853](https://github.com/hackforla/website/pull/5853#issuecomment-1793825822) at 2023-11-05 11:36 AM PST -github-actions,2023-11-06T04:07:45Z,- github-actions commented on pull request: [5858](https://github.com/hackforla/website/pull/5858#issuecomment-1794053104) at 2023-11-05 08:07 PM PST -github-actions,2023-11-08T02:54:51Z,- github-actions commented on pull request: [5883](https://github.com/hackforla/website/pull/5883#issuecomment-1800929081) at 2023-11-07 06:54 PM PST -github-actions,2023-11-08T03:02:42Z,- github-actions commented on pull request: [5884](https://github.com/hackforla/website/pull/5884#issuecomment-1800935431) at 2023-11-07 07:02 PM PST -github-actions,2023-11-08T20:59:25Z,- github-actions commented on pull request: [5886](https://github.com/hackforla/website/pull/5886#issuecomment-1802665390) at 2023-11-08 12:59 PM PST -github-actions,2023-11-09T01:32:41Z,- github-actions commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1803023124) at 2023-11-08 05:32 PM PST -github-actions,2023-11-09T02:24:31Z,- github-actions commented on pull request: [5888](https://github.com/hackforla/website/pull/5888#issuecomment-1803063179) at 2023-11-08 06:24 PM PST -github-actions,2023-11-09T20:08:33Z,- github-actions commented on pull request: [5889](https://github.com/hackforla/website/pull/5889#issuecomment-1804587578) at 2023-11-09 12:08 PM PST -github-actions,2023-11-09T21:57:54Z,- github-actions commented on pull request: [5890](https://github.com/hackforla/website/pull/5890#issuecomment-1804747215) at 2023-11-09 01:57 PM PST -github-actions,2023-11-11T06:37:59Z,- github-actions commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1806716043) at 2023-11-10 10:37 PM PST -github-actions,2023-11-12T06:41:52Z,- github-actions commented on pull request: [5892](https://github.com/hackforla/website/pull/5892#issuecomment-1807020923) at 2023-11-11 10:41 PM PST -github-actions,2023-11-12T20:15:06Z,- github-actions commented on pull request: [5893](https://github.com/hackforla/website/pull/5893#issuecomment-1807227520) at 2023-11-12 12:15 PM PST -github-actions,2023-11-13T06:16:43Z,- github-actions commented on pull request: [5894](https://github.com/hackforla/website/pull/5894#issuecomment-1807534071) at 2023-11-12 10:16 PM PST -github-actions,2023-11-13T08:47:00Z,- github-actions commented on pull request: [5896](https://github.com/hackforla/website/pull/5896#issuecomment-1807692740) at 2023-11-13 12:47 AM PST -github-actions,2023-11-13T23:12:45Z,- github-actions commented on pull request: [5899](https://github.com/hackforla/website/pull/5899#issuecomment-1809281850) at 2023-11-13 03:12 PM PST -github-actions,2023-11-14T00:26:57Z,- github-actions commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1809346827) at 2023-11-13 04:26 PM PST -github-actions,2023-11-14T01:25:32Z,- github-actions commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1809393634) at 2023-11-13 05:25 PM PST -github-actions,2023-11-14T21:10:38Z,- github-actions commented on pull request: [5902](https://github.com/hackforla/website/pull/5902#issuecomment-1811316240) at 2023-11-14 01:10 PM PST -github-actions,2023-11-14T21:41:24Z,- github-actions commented on pull request: [5903](https://github.com/hackforla/website/pull/5903#issuecomment-1811368507) at 2023-11-14 01:41 PM PST -github-actions,2023-11-14T22:01:30Z,- github-actions commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1811432086) at 2023-11-14 02:01 PM PST -github-actions,2023-11-14T22:35:13Z,- github-actions commented on pull request: [5905](https://github.com/hackforla/website/pull/5905#issuecomment-1811500646) at 2023-11-14 02:35 PM PST -github-actions,2023-11-14T22:56:30Z,- github-actions commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1811523200) at 2023-11-14 02:56 PM PST -github-actions,2023-11-15T04:01:04Z,- github-actions commented on pull request: [5907](https://github.com/hackforla/website/pull/5907#issuecomment-1811772847) at 2023-11-14 08:01 PM PST -github-actions,2023-11-15T19:25:09Z,- github-actions commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1813125777) at 2023-11-15 11:25 AM PST -github-actions,2023-11-16T03:27:48Z,- github-actions commented on pull request: [5910](https://github.com/hackforla/website/pull/5910#issuecomment-1813733853) at 2023-11-15 07:27 PM PST -github-actions,2023-11-16T04:17:52Z,- github-actions commented on pull request: [5911](https://github.com/hackforla/website/pull/5911#issuecomment-1813764960) at 2023-11-15 08:17 PM PST -github-actions,2023-11-16T19:05:33Z,- github-actions commented on pull request: [5912](https://github.com/hackforla/website/pull/5912#issuecomment-1815137298) at 2023-11-16 11:05 AM PST -github-actions,2023-11-16T19:19:25Z,- github-actions commented on pull request: [5913](https://github.com/hackforla/website/pull/5913#issuecomment-1815165761) at 2023-11-16 11:19 AM PST -github-actions,2023-11-16T19:20:34Z,- github-actions commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815167437) at 2023-11-16 11:20 AM PST -github-actions,2023-11-16T21:13:46Z,- github-actions commented on pull request: [5915](https://github.com/hackforla/website/pull/5915#issuecomment-1815324132) at 2023-11-16 01:13 PM PST -github-actions,2023-11-16T22:09:44Z,- github-actions commented on pull request: [5916](https://github.com/hackforla/website/pull/5916#issuecomment-1815393586) at 2023-11-16 02:09 PM PST -github-actions,2023-11-17T03:40:13Z,- github-actions commented on pull request: [5917](https://github.com/hackforla/website/pull/5917#issuecomment-1815700228) at 2023-11-16 07:40 PM PST -github-actions,2023-11-17T08:11:10Z,- github-actions commented on pull request: [5918](https://github.com/hackforla/website/pull/5918#issuecomment-1815911939) at 2023-11-17 12:11 AM PST -github-actions,2023-11-17T22:15:17Z,- github-actions commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1817185398) at 2023-11-17 02:15 PM PST -github-actions,2023-11-19T21:54:23Z,- github-actions commented on pull request: [5922](https://github.com/hackforla/website/pull/5922#issuecomment-1817989450) at 2023-11-19 01:54 PM PST -github-actions,2023-11-20T23:25:01Z,- github-actions commented on pull request: [5925](https://github.com/hackforla/website/pull/5925#issuecomment-1819964708) at 2023-11-20 03:25 PM PST -github-actions,2023-11-21T06:23:22Z,- github-actions commented on pull request: [5927](https://github.com/hackforla/website/pull/5927#issuecomment-1820310465) at 2023-11-20 10:23 PM PST -github-actions,2023-11-21T23:55:55Z,- github-actions commented on pull request: [5928](https://github.com/hackforla/website/pull/5928#issuecomment-1821877574) at 2023-11-21 03:55 PM PST -github-actions,2023-11-22T04:11:43Z,- github-actions commented on pull request: [5929](https://github.com/hackforla/website/pull/5929#issuecomment-1822074199) at 2023-11-21 08:11 PM PST -github-actions,2023-11-22T16:44:38Z,- github-actions commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1823127441) at 2023-11-22 08:44 AM PST -github-actions,2023-11-22T19:12:46Z,- github-actions commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1823348809) at 2023-11-22 11:12 AM PST -github-actions,2023-11-22T19:30:09Z,- github-actions commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1823392880) at 2023-11-22 11:30 AM PST -github-actions,2023-11-22T21:01:16Z,- github-actions commented on pull request: [5933](https://github.com/hackforla/website/pull/5933#issuecomment-1823497340) at 2023-11-22 01:01 PM PST -github-actions,2023-11-25T00:22:54Z,- github-actions commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826165033) at 2023-11-24 04:22 PM PST -github-actions,2023-11-25T07:00:02Z,- github-actions commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1826234890) at 2023-11-24 11:00 PM PST -github-actions,2023-11-27T18:14:29Z,- github-actions commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1828371682) at 2023-11-27 10:14 AM PST -github-actions,2023-11-28T07:38:56Z,- github-actions commented on pull request: [5940](https://github.com/hackforla/website/pull/5940#issuecomment-1829264550) at 2023-11-27 11:38 PM PST -github-actions,2023-11-28T22:32:41Z,- github-actions commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1830864463) at 2023-11-28 02:32 PM PST -github-actions,2023-11-29T02:29:25Z,- github-actions commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1831113803) at 2023-11-28 06:29 PM PST -github-actions,2023-11-29T05:04:24Z,- github-actions commented on pull request: [5943](https://github.com/hackforla/website/pull/5943#issuecomment-1831228716) at 2023-11-28 09:04 PM PST -github-actions,2023-11-29T07:59:21Z,- github-actions commented on pull request: [5944](https://github.com/hackforla/website/pull/5944#issuecomment-1831393011) at 2023-11-28 11:59 PM PST -github-actions,2023-11-29T20:11:31Z,- github-actions commented on pull request: [5945](https://github.com/hackforla/website/pull/5945#issuecomment-1832631346) at 2023-11-29 12:11 PM PST -github-actions,2023-11-29T21:12:07Z,- github-actions commented on pull request: [5946](https://github.com/hackforla/website/pull/5946#issuecomment-1832706977) at 2023-11-29 01:12 PM PST -github-actions,2023-11-29T21:27:24Z,- github-actions commented on pull request: [5947](https://github.com/hackforla/website/pull/5947#issuecomment-1832726159) at 2023-11-29 01:27 PM PST -github-actions,2023-11-30T20:56:23Z,- github-actions commented on pull request: [5950](https://github.com/hackforla/website/pull/5950#issuecomment-1834548233) at 2023-11-30 12:56 PM PST -github-actions,2023-11-30T21:40:12Z,- github-actions commented on pull request: [5951](https://github.com/hackforla/website/pull/5951#issuecomment-1834602211) at 2023-11-30 01:40 PM PST -github-actions,2023-12-01T00:27:23Z,- github-actions commented on pull request: [5952](https://github.com/hackforla/website/pull/5952#issuecomment-1835086486) at 2023-11-30 04:27 PM PST -github-actions,2023-12-01T20:34:33Z,- github-actions commented on pull request: [5954](https://github.com/hackforla/website/pull/5954#issuecomment-1836741452) at 2023-12-01 12:34 PM PST -github-actions,2023-12-02T01:15:17Z,- github-actions commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1836976795) at 2023-12-01 05:15 PM PST -github-actions,2023-12-04T20:11:38Z,- github-actions commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1839398789) at 2023-12-04 12:11 PM PST -github-actions,2023-12-05T00:49:44Z,- github-actions commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1839812122) at 2023-12-04 04:49 PM PST -github-actions,2023-12-05T03:40:06Z,- github-actions commented on pull request: [5967](https://github.com/hackforla/website/pull/5967#issuecomment-1839948825) at 2023-12-04 07:40 PM PST -github-actions,2023-12-07T04:42:23Z,- github-actions commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1844371563) at 2023-12-06 08:42 PM PST -github-actions,2023-12-08T06:18:22Z,- github-actions commented on pull request: [5976](https://github.com/hackforla/website/pull/5976#issuecomment-1846604658) at 2023-12-07 10:18 PM PST -github-actions,2023-12-08T07:22:32Z,- github-actions commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1846675176) at 2023-12-07 11:22 PM PST -github-actions,2023-12-09T00:19:01Z,- github-actions commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1847997822) at 2023-12-08 04:19 PM PST -github-actions,2023-12-12T08:59:48Z,- github-actions commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1851568259) at 2023-12-12 12:59 AM PST -github-actions,2023-12-13T02:32:14Z,- github-actions commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1853171541) at 2023-12-12 06:32 PM PST -github-actions,2023-12-13T23:38:09Z,- github-actions commented on pull request: [6005](https://github.com/hackforla/website/pull/6005#issuecomment-1854859289) at 2023-12-13 03:38 PM PST -github-actions,2023-12-14T22:37:35Z,- github-actions commented on pull request: [6007](https://github.com/hackforla/website/pull/6007#issuecomment-1856832145) at 2023-12-14 02:37 PM PST -github-actions,2023-12-14T23:40:29Z,- github-actions commented on pull request: [6008](https://github.com/hackforla/website/pull/6008#issuecomment-1856978366) at 2023-12-14 03:40 PM PST -github-actions,2023-12-14T23:40:36Z,- github-actions commented on pull request: [6009](https://github.com/hackforla/website/pull/6009#issuecomment-1856978625) at 2023-12-14 03:40 PM PST -github-actions,2023-12-15T21:50:11Z,- github-actions commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1858529951) at 2023-12-15 01:50 PM PST -github-actions,2023-12-17T04:59:17Z,- github-actions commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1859038614) at 2023-12-16 08:59 PM PST -github-actions,2023-12-19T08:16:27Z,- github-actions commented on pull request: [6012](https://github.com/hackforla/website/pull/6012#issuecomment-1862306389) at 2023-12-19 12:16 AM PST -github-actions,2023-12-19T23:23:20Z,- github-actions commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1863608386) at 2023-12-19 03:23 PM PST -github-actions,2023-12-21T15:56:20Z,- github-actions commented on pull request: [6014](https://github.com/hackforla/website/pull/6014#issuecomment-1866550882) at 2023-12-21 07:56 AM PST -github-actions,2023-12-26T20:14:59Z,- github-actions commented on pull request: [6016](https://github.com/hackforla/website/pull/6016#issuecomment-1869752451) at 2023-12-26 12:14 PM PST -github-actions,2023-12-28T22:12:47Z,- github-actions commented on pull request: [6021](https://github.com/hackforla/website/pull/6021#issuecomment-1871536315) at 2023-12-28 02:12 PM PST -github-actions,2024-01-02T02:35:16Z,- github-actions commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1873576439) at 2024-01-01 06:35 PM PST -github-actions,2024-01-03T00:50:08Z,- github-actions commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1874732169) at 2024-01-02 04:50 PM PST -github-actions,2024-01-03T22:09:39Z,- github-actions commented on pull request: [6056](https://github.com/hackforla/website/pull/6056#issuecomment-1876036158) at 2024-01-03 02:09 PM PST -github-actions,2024-01-03T23:26:49Z,- github-actions commented on pull request: [6057](https://github.com/hackforla/website/pull/6057#issuecomment-1876105039) at 2024-01-03 03:26 PM PST -github-actions,2024-01-04T20:08:18Z,- github-actions commented on pull request: [6061](https://github.com/hackforla/website/pull/6061#issuecomment-1877695274) at 2024-01-04 12:08 PM PST -github-actions,2024-01-05T00:14:01Z,- github-actions commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1877936423) at 2024-01-04 04:14 PM PST -github-actions,2024-01-05T05:23:49Z,- github-actions commented on pull request: [6067](https://github.com/hackforla/website/pull/6067#issuecomment-1878142982) at 2024-01-04 09:23 PM PST -github-actions,2024-01-05T08:10:19Z,- github-actions commented on pull request: [6068](https://github.com/hackforla/website/pull/6068#issuecomment-1878280727) at 2024-01-05 12:10 AM PST -github-actions,2024-01-05T22:43:10Z,- github-actions commented on pull request: [6069](https://github.com/hackforla/website/pull/6069#issuecomment-1879346000) at 2024-01-05 02:43 PM PST -github-actions,2024-01-05T23:10:27Z,- github-actions commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879365619) at 2024-01-05 03:10 PM PST -github-actions,2024-01-06T16:52:12Z,- github-actions commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879753049) at 2024-01-06 08:52 AM PST -github-actions,2024-01-07T01:12:36Z,- github-actions commented on pull request: [6073](https://github.com/hackforla/website/pull/6073#issuecomment-1879903118) at 2024-01-06 05:12 PM PST -github-actions,2024-01-07T23:07:53Z,- github-actions commented on pull request: [6075](https://github.com/hackforla/website/pull/6075#issuecomment-1880208583) at 2024-01-07 03:07 PM PST -github-actions,2024-01-08T02:23:31Z,- github-actions commented on pull request: [6076](https://github.com/hackforla/website/pull/6076#issuecomment-1880304981) at 2024-01-07 06:23 PM PST -github-actions,2024-01-08T03:10:36Z,- github-actions commented on pull request: [6077](https://github.com/hackforla/website/pull/6077#issuecomment-1880328172) at 2024-01-07 07:10 PM PST -github-actions,2024-01-09T03:37:31Z,- github-actions commented on pull request: [6079](https://github.com/hackforla/website/pull/6079#issuecomment-1882352405) at 2024-01-08 07:37 PM PST -github-actions,2024-01-09T03:52:01Z,- github-actions commented on pull request: [6080](https://github.com/hackforla/website/pull/6080#issuecomment-1882372090) at 2024-01-08 07:52 PM PST -github-actions,2024-01-09T04:10:12Z,- github-actions commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1882383713) at 2024-01-08 08:10 PM PST -github-actions,2024-01-10T00:24:13Z,- github-actions commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1884001285) at 2024-01-09 04:24 PM PST -github-actions,2024-01-11T01:24:32Z,- github-actions commented on pull request: [6098](https://github.com/hackforla/website/pull/6098#issuecomment-1886045931) at 2024-01-10 05:24 PM PST -github-actions,2024-01-11T01:27:47Z,- github-actions commented on pull request: [6099](https://github.com/hackforla/website/pull/6099#issuecomment-1886048383) at 2024-01-10 05:27 PM PST -github-actions,2024-01-11T23:59:25Z,- github-actions commented on pull request: [6100](https://github.com/hackforla/website/pull/6100#issuecomment-1888158512) at 2024-01-11 03:59 PM PST -github-actions,2024-01-12T22:56:57Z,- github-actions commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1890088843) at 2024-01-12 02:56 PM PST -github-actions,2024-01-18T20:43:49Z,- github-actions commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1899176344) at 2024-01-18 12:43 PM PST -github-actions,2024-01-19T02:19:01Z,- github-actions commented on pull request: [6131](https://github.com/hackforla/website/pull/6131#issuecomment-1899535690) at 2024-01-18 06:19 PM PST -github-actions,2024-01-19T05:49:38Z,- github-actions commented on pull request: [6132](https://github.com/hackforla/website/pull/6132#issuecomment-1899809488) at 2024-01-18 09:49 PM PST -github-actions,2024-01-20T19:24:17Z,- github-actions commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1902245685) at 2024-01-20 11:24 AM PST -github-actions,2024-01-21T04:06:20Z,- github-actions commented on pull request: [6134](https://github.com/hackforla/website/pull/6134#issuecomment-1902494920) at 2024-01-20 08:06 PM PST -github-actions,2024-01-21T04:26:35Z,- github-actions commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1902500989) at 2024-01-20 08:26 PM PST -github-actions,2024-01-21T08:32:46Z,- github-actions commented on pull request: [6136](https://github.com/hackforla/website/pull/6136#issuecomment-1902554362) at 2024-01-21 12:32 AM PST -github-actions,2024-01-22T07:37:11Z,- github-actions commented on pull request: [6141](https://github.com/hackforla/website/pull/6141#issuecomment-1903414056) at 2024-01-21 11:37 PM PST -github-actions,2024-01-23T22:06:41Z,- github-actions commented on pull request: [6146](https://github.com/hackforla/website/pull/6146#issuecomment-1906999668) at 2024-01-23 02:06 PM PST -github-actions,2024-01-23T22:42:24Z,- github-actions commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1907042343) at 2024-01-23 02:42 PM PST -github-actions,2024-01-24T01:04:44Z,- github-actions commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1907176564) at 2024-01-23 05:04 PM PST -github-actions,2024-01-24T04:38:06Z,- github-actions commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1907363715) at 2024-01-23 08:38 PM PST -github-actions,2024-01-24T23:40:50Z,- github-actions commented on pull request: [6151](https://github.com/hackforla/website/pull/6151#issuecomment-1909105830) at 2024-01-24 03:40 PM PST -github-actions,2024-01-25T01:24:53Z,- github-actions commented on pull request: [6152](https://github.com/hackforla/website/pull/6152#issuecomment-1909193256) at 2024-01-24 05:24 PM PST -github-actions,2024-01-25T03:50:50Z,- github-actions commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1909299512) at 2024-01-24 07:50 PM PST -github-actions,2024-01-25T22:33:25Z,- github-actions commented on pull request: [6164](https://github.com/hackforla/website/pull/6164#issuecomment-1911105535) at 2024-01-25 02:33 PM PST -github-actions,2024-01-27T04:29:32Z,- github-actions commented on pull request: [6186](https://github.com/hackforla/website/pull/6186#issuecomment-1912980706) at 2024-01-26 08:29 PM PST -github-actions,2024-01-29T00:31:07Z,- github-actions commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1913781679) at 2024-01-28 04:31 PM PST -github-actions,2024-01-29T21:22:10Z,- github-actions commented on pull request: [6194](https://github.com/hackforla/website/pull/6194#issuecomment-1915594372) at 2024-01-29 01:22 PM PST -github-actions,2024-01-30T20:18:24Z,- github-actions commented on pull request: [6197](https://github.com/hackforla/website/pull/6197#issuecomment-1917822399) at 2024-01-30 12:18 PM PST -github-actions,2024-01-30T20:53:11Z,- github-actions commented on pull request: [6198](https://github.com/hackforla/website/pull/6198#issuecomment-1917874226) at 2024-01-30 12:53 PM PST -github-actions,2024-01-31T23:37:10Z,- github-actions commented on pull request: [6201](https://github.com/hackforla/website/pull/6201#issuecomment-1920180949) at 2024-01-31 03:37 PM PST -github-actions,2024-02-01T01:03:52Z,- github-actions commented on pull request: [6202](https://github.com/hackforla/website/pull/6202#issuecomment-1920281628) at 2024-01-31 05:03 PM PST -github-actions,2024-02-01T01:56:02Z,- github-actions commented on pull request: [6203](https://github.com/hackforla/website/pull/6203#issuecomment-1920348626) at 2024-01-31 05:56 PM PST -github-actions,2024-02-01T04:48:02Z,- github-actions commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1920506494) at 2024-01-31 08:48 PM PST -github-actions,2024-02-01T20:38:30Z,- github-actions commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1922205046) at 2024-02-01 12:38 PM PST -github-actions,2024-02-01T22:01:10Z,- github-actions commented on pull request: [6206](https://github.com/hackforla/website/pull/6206#issuecomment-1922334471) at 2024-02-01 02:01 PM PST -github-actions,2024-02-02T01:55:25Z,- github-actions commented on pull request: [6207](https://github.com/hackforla/website/pull/6207#issuecomment-1922646631) at 2024-02-01 05:55 PM PST -github-actions,2024-02-02T02:29:03Z,- github-actions commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922677621) at 2024-02-01 06:29 PM PST -github-actions,2024-02-02T18:58:47Z,- github-actions commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1924500469) at 2024-02-02 10:58 AM PST -github-actions,2024-02-03T01:15:19Z,- github-actions commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1924994278) at 2024-02-02 05:15 PM PST -github-actions,2024-02-03T02:07:42Z,- github-actions commented on pull request: [6216](https://github.com/hackforla/website/pull/6216#issuecomment-1925020302) at 2024-02-02 06:07 PM PST -github-actions,2024-02-03T05:41:54Z,- github-actions commented on pull request: [6217](https://github.com/hackforla/website/pull/6217#issuecomment-1925141602) at 2024-02-02 09:41 PM PST -github-actions,2024-02-06T01:59:14Z,- github-actions commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1928645058) at 2024-02-05 05:59 PM PST -github-actions,2024-02-06T02:59:29Z,- github-actions commented on pull request: [6243](https://github.com/hackforla/website/pull/6243#issuecomment-1928694932) at 2024-02-05 06:59 PM PST -github-actions,2024-02-06T08:13:45Z,- github-actions commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1928985376) at 2024-02-06 12:13 AM PST -github-actions,2024-02-06T19:17:18Z,- github-actions commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1930598796) at 2024-02-06 11:17 AM PST -github-actions,2024-02-06T21:44:02Z,- github-actions commented on pull request: [6261](https://github.com/hackforla/website/pull/6261#issuecomment-1930801037) at 2024-02-06 01:44 PM PST -github-actions,2024-02-07T19:26:06Z,- github-actions commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1932722635) at 2024-02-07 11:26 AM PST -github-actions,2024-02-08T04:37:20Z,- github-actions commented on pull request: [6263](https://github.com/hackforla/website/pull/6263#issuecomment-1933351540) at 2024-02-07 08:37 PM PST -github-actions,2024-02-09T03:28:43Z,- github-actions commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1935282534) at 2024-02-08 07:28 PM PST -github-actions,2024-02-09T05:43:13Z,- github-actions commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1935367310) at 2024-02-08 09:43 PM PST -github-actions,2024-02-09T23:35:47Z,- github-actions commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1936740284) at 2024-02-09 03:35 PM PST -github-actions,2024-02-11T01:17:58Z,- github-actions commented on pull request: [6275](https://github.com/hackforla/website/pull/6275#issuecomment-1937381739) at 2024-02-10 05:17 PM PST -github-actions,2024-02-11T03:26:18Z,- github-actions commented on pull request: [6276](https://github.com/hackforla/website/pull/6276#issuecomment-1937408688) at 2024-02-10 07:26 PM PST -github-actions,2024-02-11T23:35:07Z,- github-actions commented on pull request: [6279](https://github.com/hackforla/website/pull/6279#issuecomment-1937913026) at 2024-02-11 03:35 PM PST -github-actions,2024-02-12T16:29:37Z,- github-actions commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1939085075) at 2024-02-12 08:29 AM PST -github-actions,2024-02-12T20:10:45Z,- github-actions commented on pull request: [6282](https://github.com/hackforla/website/pull/6282#issuecomment-1939482316) at 2024-02-12 12:10 PM PST -github-actions,2024-02-13T16:49:01Z,- github-actions commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1941991374) at 2024-02-13 08:49 AM PST -github-actions,2024-02-14T02:29:13Z,- github-actions commented on pull request: [6292](https://github.com/hackforla/website/pull/6292#issuecomment-1942993200) at 2024-02-13 06:29 PM PST -github-actions,2024-02-14T03:54:18Z,- github-actions commented on pull request: [6293](https://github.com/hackforla/website/pull/6293#issuecomment-1943043820) at 2024-02-13 07:54 PM PST -github-actions,2024-02-15T14:10:05Z,- github-actions commented on pull request: [6300](https://github.com/hackforla/website/pull/6300#issuecomment-1946172880) at 2024-02-15 06:10 AM PST -github-actions,2024-02-16T00:04:57Z,- github-actions commented on pull request: [6301](https://github.com/hackforla/website/pull/6301#issuecomment-1947533557) at 2024-02-15 04:04 PM PST -github-actions,2024-02-16T06:20:55Z,- github-actions commented on pull request: [6302](https://github.com/hackforla/website/pull/6302#issuecomment-1947822420) at 2024-02-15 10:20 PM PST -github-actions,2024-02-16T18:12:12Z,- github-actions commented on pull request: [6304](https://github.com/hackforla/website/pull/6304#issuecomment-1949024588) at 2024-02-16 10:12 AM PST -github-actions,2024-02-16T18:29:02Z,- github-actions commented on pull request: [6305](https://github.com/hackforla/website/pull/6305#issuecomment-1949070602) at 2024-02-16 10:29 AM PST -github-actions,2024-02-17T00:56:21Z,- github-actions commented on pull request: [6306](https://github.com/hackforla/website/pull/6306#issuecomment-1949553567) at 2024-02-16 04:56 PM PST -github-actions,2024-02-17T02:07:54Z,- github-actions commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949602273) at 2024-02-16 06:07 PM PST -github-actions,2024-02-17T02:11:35Z,- github-actions commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1949605151) at 2024-02-16 06:11 PM PST -github-actions,2024-02-18T06:49:46Z,- github-actions commented on pull request: [6315](https://github.com/hackforla/website/pull/6315#issuecomment-1950981709) at 2024-02-17 10:49 PM PST -github-actions,2024-02-18T19:22:46Z,- github-actions commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1951420751) at 2024-02-18 11:22 AM PST -github-actions,2024-02-20T01:57:43Z,- github-actions commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1953367048) at 2024-02-19 05:57 PM PST -github-actions,2024-02-20T06:06:57Z,- github-actions commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1953545274) at 2024-02-19 10:06 PM PST -github-actions,2024-02-20T19:29:13Z,- github-actions commented on pull request: [6325](https://github.com/hackforla/website/pull/6325#issuecomment-1954915555) at 2024-02-20 11:29 AM PST -github-actions,2024-02-21T02:16:54Z,- github-actions commented on pull request: [6328](https://github.com/hackforla/website/pull/6328#issuecomment-1955746403) at 2024-02-20 06:16 PM PST -github-actions,2024-02-21T19:40:38Z,- github-actions commented on pull request: [6351](https://github.com/hackforla/website/pull/6351#issuecomment-1957773409) at 2024-02-21 11:40 AM PST -github-actions,2024-02-21T20:46:07Z,- github-actions commented on pull request: [6352](https://github.com/hackforla/website/pull/6352#issuecomment-1957881388) at 2024-02-21 12:46 PM PST -github-actions,2024-02-22T07:38:01Z,- github-actions commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1958865450) at 2024-02-21 11:38 PM PST -github-actions,2024-02-22T18:28:50Z,- github-actions commented on pull request: [6358](https://github.com/hackforla/website/pull/6358#issuecomment-1960024326) at 2024-02-22 10:28 AM PST -github-actions,2024-02-22T19:26:22Z,- github-actions commented on pull request: [6359](https://github.com/hackforla/website/pull/6359#issuecomment-1960108335) at 2024-02-22 11:26 AM PST -github-actions,2024-02-23T00:01:31Z,- github-actions commented on pull request: [6360](https://github.com/hackforla/website/pull/6360#issuecomment-1960536101) at 2024-02-22 04:01 PM PST -github-actions,2024-02-23T04:08:13Z,- github-actions commented on pull request: [6362](https://github.com/hackforla/website/pull/6362#issuecomment-1960706318) at 2024-02-22 08:08 PM PST -github-actions,2024-02-23T06:13:33Z,- github-actions commented on pull request: [6363](https://github.com/hackforla/website/pull/6363#issuecomment-1960784712) at 2024-02-22 10:13 PM PST -github-actions,2024-02-23T16:56:11Z,- github-actions commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1961673673) at 2024-02-23 08:56 AM PST -github-actions,2024-02-23T20:50:15Z,- github-actions commented on pull request: [6366](https://github.com/hackforla/website/pull/6366#issuecomment-1961972212) at 2024-02-23 12:50 PM PST -github-actions,2024-02-24T00:58:05Z,- github-actions commented on pull request: [6368](https://github.com/hackforla/website/pull/6368#issuecomment-1962187358) at 2024-02-23 04:58 PM PST -github-actions,2024-02-25T03:00:14Z,- github-actions commented on pull request: [6371](https://github.com/hackforla/website/pull/6371#issuecomment-1962795829) at 2024-02-24 07:00 PM PST -github-actions,2024-02-25T22:53:46Z,- github-actions commented on pull request: [6374](https://github.com/hackforla/website/pull/6374#issuecomment-1963090021) at 2024-02-25 02:53 PM PST -github-actions,2024-02-26T07:55:33Z,- github-actions commented on pull request: [6379](https://github.com/hackforla/website/pull/6379#issuecomment-1963511066) at 2024-02-25 11:55 PM PST -github-actions,2024-02-26T22:30:12Z,- github-actions commented on pull request: [6381](https://github.com/hackforla/website/pull/6381#issuecomment-1965432782) at 2024-02-26 02:30 PM PST -github-actions,2024-02-27T01:23:56Z,- github-actions commented on pull request: [6383](https://github.com/hackforla/website/pull/6383#issuecomment-1965623928) at 2024-02-26 05:23 PM PST -github-actions,2024-02-27T20:39:20Z,- github-actions commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1967551274) at 2024-02-27 12:39 PM PST -github-actions,2024-02-27T23:27:03Z,- github-actions commented on pull request: [6385](https://github.com/hackforla/website/pull/6385#issuecomment-1967902580) at 2024-02-27 03:27 PM PST -github-actions,2024-02-28T00:37:38Z,- github-actions commented on pull request: [6386](https://github.com/hackforla/website/pull/6386#issuecomment-1967972757) at 2024-02-27 04:37 PM PST -github-actions,2024-02-28T15:25:07Z,- github-actions commented on pull request: [6387](https://github.com/hackforla/website/pull/6387#issuecomment-1969223311) at 2024-02-28 07:25 AM PST -github-actions,2024-02-28T18:18:37Z,- github-actions commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1969574057) at 2024-02-28 10:18 AM PST -github-actions,2024-02-28T21:33:53Z,- github-actions commented on pull request: [6390](https://github.com/hackforla/website/pull/6390#issuecomment-1969957547) at 2024-02-28 01:33 PM PST -github-actions,2024-02-29T03:37:06Z,- github-actions commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1970337810) at 2024-02-28 07:37 PM PST -github-actions,2024-02-29T04:40:38Z,- github-actions commented on pull request: [6394](https://github.com/hackforla/website/pull/6394#issuecomment-1970383773) at 2024-02-28 08:40 PM PST -github-actions,2024-02-29T19:23:31Z,- github-actions commented on pull request: [6400](https://github.com/hackforla/website/pull/6400#issuecomment-1971810882) at 2024-02-29 11:23 AM PST -github-actions,2024-02-29T23:18:06Z,- github-actions commented on pull request: [6401](https://github.com/hackforla/website/pull/6401#issuecomment-1972134633) at 2024-02-29 03:18 PM PST -github-actions,2024-03-01T22:09:33Z,- github-actions commented on pull request: [6406](https://github.com/hackforla/website/pull/6406#issuecomment-1973995692) at 2024-03-01 02:09 PM PST -github-actions,2024-03-02T04:12:11Z,- github-actions commented on pull request: [6407](https://github.com/hackforla/website/pull/6407#issuecomment-1974264259) at 2024-03-01 08:12 PM PST -github-actions,2024-03-02T07:43:24Z,- github-actions commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1974667802) at 2024-03-01 11:43 PM PST -github-actions,2024-03-03T01:25:12Z,- github-actions commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1974968249) at 2024-03-02 05:25 PM PST -github-actions,2024-03-03T19:23:19Z,- github-actions commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1975271053) at 2024-03-03 11:23 AM PST -github-actions,2024-03-04T05:47:47Z,- github-actions commented on pull request: [6414](https://github.com/hackforla/website/pull/6414#issuecomment-1975778143) at 2024-03-03 09:47 PM PST -github-actions,2024-03-04T23:18:09Z,- github-actions commented on pull request: [6415](https://github.com/hackforla/website/pull/6415#issuecomment-1977636708) at 2024-03-04 03:18 PM PST -github-actions,2024-03-05T02:27:36Z,- github-actions commented on pull request: [6417](https://github.com/hackforla/website/pull/6417#issuecomment-1977833663) at 2024-03-04 06:27 PM PST -github-actions,2024-03-05T06:07:47Z,- github-actions commented on pull request: [6431](https://github.com/hackforla/website/pull/6431#issuecomment-1978030451) at 2024-03-04 10:07 PM PST -github-actions,2024-03-05T17:08:44Z,- github-actions commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1979246130) at 2024-03-05 09:08 AM PST -github-actions,2024-03-05T19:37:01Z,- github-actions commented on pull request: [6433](https://github.com/hackforla/website/pull/6433#issuecomment-1979499481) at 2024-03-05 11:37 AM PST -github-actions,2024-03-05T21:10:49Z,- github-actions commented on pull request: [6434](https://github.com/hackforla/website/pull/6434#issuecomment-1979641456) at 2024-03-05 01:10 PM PST -github-actions,2024-03-05T22:52:07Z,- github-actions commented on pull request: [6435](https://github.com/hackforla/website/pull/6435#issuecomment-1979771927) at 2024-03-05 02:52 PM PST -github-actions,2024-03-05T23:05:23Z,- github-actions commented on pull request: [6436](https://github.com/hackforla/website/pull/6436#issuecomment-1979788470) at 2024-03-05 03:05 PM PST -github-actions,2024-03-07T18:17:42Z,- github-actions commented on pull request: [6437](https://github.com/hackforla/website/pull/6437#issuecomment-1984157882) at 2024-03-07 10:17 AM PST -github-actions,2024-03-07T21:21:09Z,- github-actions commented on pull request: [6438](https://github.com/hackforla/website/pull/6438#issuecomment-1984520460) at 2024-03-07 01:21 PM PST -github-actions,2024-03-08T04:00:05Z,- github-actions commented on pull request: [6439](https://github.com/hackforla/website/pull/6439#issuecomment-1984999508) at 2024-03-07 08:00 PM PST -github-actions,2024-03-08T17:13:08Z,- github-actions commented on pull request: [6440](https://github.com/hackforla/website/pull/6440#issuecomment-1986088899) at 2024-03-08 09:13 AM PST -github-actions,2024-03-08T20:45:17Z,- github-actions commented on pull request: [6441](https://github.com/hackforla/website/pull/6441#issuecomment-1986391958) at 2024-03-08 12:45 PM PST -github-actions,2024-03-09T05:39:55Z,- github-actions commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-1986739828) at 2024-03-08 10:39 PM PDT -github-actions,2024-03-10T03:17:25Z,- github-actions commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1987054054) at 2024-03-09 08:17 PM PDT -github-actions,2024-03-10T19:09:27Z,- github-actions commented on pull request: [6445](https://github.com/hackforla/website/pull/6445#issuecomment-1987334363) at 2024-03-10 12:09 PM PDT -github-actions,2024-03-11T00:08:58Z,- github-actions commented on pull request: [6447](https://github.com/hackforla/website/pull/6447#issuecomment-1987424300) at 2024-03-10 05:08 PM PDT -github-actions,2024-03-11T03:18:41Z,- github-actions commented on pull request: [6448](https://github.com/hackforla/website/pull/6448#issuecomment-1987553704) at 2024-03-10 08:18 PM PDT -github-actions,2024-03-11T22:27:33Z,- github-actions commented on pull request: [6455](https://github.com/hackforla/website/pull/6455#issuecomment-1989554448) at 2024-03-11 03:27 PM PDT -github-actions,2024-03-11T23:44:03Z,- github-actions commented on pull request: [6456](https://github.com/hackforla/website/pull/6456#issuecomment-1989647678) at 2024-03-11 04:44 PM PDT -github-actions,2024-03-13T02:22:24Z,- github-actions commented on pull request: [6457](https://github.com/hackforla/website/pull/6457#issuecomment-1993157861) at 2024-03-12 07:22 PM PDT -github-actions,2024-03-13T18:26:04Z,- github-actions commented on pull request: [6458](https://github.com/hackforla/website/pull/6458#issuecomment-1995287188) at 2024-03-13 11:26 AM PDT -github-actions,2024-03-14T05:45:30Z,- github-actions commented on pull request: [6461](https://github.com/hackforla/website/pull/6461#issuecomment-1996573011) at 2024-03-13 10:45 PM PDT -github-actions,2024-03-14T06:43:39Z,- github-actions commented on pull request: [6462](https://github.com/hackforla/website/pull/6462#issuecomment-1996628319) at 2024-03-13 11:43 PM PDT -github-actions,2024-03-14T23:19:31Z,- github-actions commented on pull request: [6464](https://github.com/hackforla/website/pull/6464#issuecomment-1998633203) at 2024-03-14 04:19 PM PDT -github-actions,2024-03-15T13:28:39Z,- github-actions commented on pull request: [6465](https://github.com/hackforla/website/pull/6465#issuecomment-1999667008) at 2024-03-15 06:28 AM PDT -github-actions,2024-03-15T23:24:07Z,- github-actions commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2000621117) at 2024-03-15 04:24 PM PDT -github-actions,2024-03-15T23:40:09Z,- github-actions commented on pull request: [6468](https://github.com/hackforla/website/pull/6468#issuecomment-2000659744) at 2024-03-15 04:40 PM PDT -github-actions,2024-03-16T01:56:56Z,- github-actions commented on pull request: [6469](https://github.com/hackforla/website/pull/6469#issuecomment-2001090451) at 2024-03-15 06:56 PM PDT -github-actions,2024-03-16T19:58:18Z,- github-actions commented on pull request: [6470](https://github.com/hackforla/website/pull/6470#issuecomment-2002108690) at 2024-03-16 12:58 PM PDT -github-actions,2024-03-17T22:54:17Z,- github-actions commented on pull request: [6471](https://github.com/hackforla/website/pull/6471#issuecomment-2002646137) at 2024-03-17 03:54 PM PDT -github-actions,2024-03-19T23:23:17Z,- github-actions commented on pull request: [6476](https://github.com/hackforla/website/pull/6476#issuecomment-2008333128) at 2024-03-19 04:23 PM PDT -github-actions,2024-03-20T00:43:42Z,- github-actions commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008433852) at 2024-03-19 05:43 PM PDT -github-actions,2024-03-20T19:37:28Z,- github-actions commented on pull request: [6486](https://github.com/hackforla/website/pull/6486#issuecomment-2010472382) at 2024-03-20 12:37 PM PDT -github-actions,2024-03-21T22:49:42Z,- github-actions commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2013982626) at 2024-03-21 03:49 PM PDT -github-actions,2024-03-22T02:23:15Z,- github-actions commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2014195134) at 2024-03-21 07:23 PM PDT -github-actions,2024-03-22T05:53:04Z,- github-actions commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2014407014) at 2024-03-21 10:53 PM PDT -github-actions,2024-03-22T07:11:34Z,- github-actions commented on pull request: [6505](https://github.com/hackforla/website/pull/6505#issuecomment-2014484756) at 2024-03-22 12:11 AM PDT -github-actions,2024-03-23T03:16:33Z,- github-actions commented on pull request: [6507](https://github.com/hackforla/website/pull/6507#issuecomment-2016325051) at 2024-03-22 08:16 PM PDT -github-actions,2024-03-23T05:25:02Z,- github-actions commented on pull request: [6508](https://github.com/hackforla/website/pull/6508#issuecomment-2016357603) at 2024-03-22 10:25 PM PDT -github-actions,2024-03-25T00:47:41Z,- github-actions commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2017025970) at 2024-03-24 05:47 PM PDT -github-actions,2024-03-25T03:16:39Z,- github-actions commented on pull request: [6517](https://github.com/hackforla/website/pull/6517#issuecomment-2017136300) at 2024-03-24 08:16 PM PDT -github-actions,2024-03-25T03:56:34Z,- github-actions commented on pull request: [6518](https://github.com/hackforla/website/pull/6518#issuecomment-2017164316) at 2024-03-24 08:56 PM PDT -github-actions,2024-03-26T19:14:42Z,- github-actions commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2021278319) at 2024-03-26 12:14 PM PDT -github-actions,2024-03-27T00:18:07Z,- github-actions commented on pull request: [6521](https://github.com/hackforla/website/pull/6521#issuecomment-2021697094) at 2024-03-26 05:18 PM PDT -github-actions,2024-03-27T01:50:31Z,- github-actions commented on pull request: [6522](https://github.com/hackforla/website/pull/6522#issuecomment-2021776140) at 2024-03-26 06:50 PM PDT -github-actions,2024-03-27T04:48:23Z,- github-actions commented on pull request: [6533](https://github.com/hackforla/website/pull/6533#issuecomment-2021926101) at 2024-03-26 09:48 PM PDT -github-actions,2024-03-27T05:01:00Z,- github-actions commented on pull request: [6534](https://github.com/hackforla/website/pull/6534#issuecomment-2021938093) at 2024-03-26 10:01 PM PDT -github-actions,2024-03-27T05:21:16Z,- github-actions commented on pull request: [6535](https://github.com/hackforla/website/pull/6535#issuecomment-2021962787) at 2024-03-26 10:21 PM PDT -github-actions,2024-03-27T18:19:28Z,- github-actions commented on pull request: [6536](https://github.com/hackforla/website/pull/6536#issuecomment-2023513711) at 2024-03-27 11:19 AM PDT -github-actions,2024-03-27T21:59:24Z,- github-actions commented on pull request: [6538](https://github.com/hackforla/website/pull/6538#issuecomment-2024063248) at 2024-03-27 02:59 PM PDT -github-actions,2024-03-28T02:31:06Z,- github-actions commented on pull request: [6540](https://github.com/hackforla/website/pull/6540#issuecomment-2024290196) at 2024-03-27 07:31 PM PDT -github-actions,2024-03-28T17:05:48Z,- github-actions commented on pull request: [6542](https://github.com/hackforla/website/pull/6542#issuecomment-2025707105) at 2024-03-28 10:05 AM PDT -github-actions,2024-03-28T20:05:04Z,- github-actions commented on pull request: [6543](https://github.com/hackforla/website/pull/6543#issuecomment-2026016637) at 2024-03-28 01:05 PM PDT -github-actions,2024-03-29T04:23:31Z,- github-actions commented on pull request: [6546](https://github.com/hackforla/website/pull/6546#issuecomment-2026625114) at 2024-03-28 09:23 PM PDT -github-actions,2024-03-29T04:28:10Z,- github-actions commented on pull request: [6547](https://github.com/hackforla/website/pull/6547#issuecomment-2026627786) at 2024-03-28 09:28 PM PDT -github-actions,2024-03-30T00:35:19Z,- github-actions commented on pull request: [6549](https://github.com/hackforla/website/pull/6549#issuecomment-2027845841) at 2024-03-29 05:35 PM PDT -github-actions,2024-03-30T03:25:43Z,- github-actions commented on pull request: [6550](https://github.com/hackforla/website/pull/6550#issuecomment-2027895549) at 2024-03-29 08:25 PM PDT -github-actions,2024-03-30T18:52:28Z,- github-actions commented on pull request: [6551](https://github.com/hackforla/website/pull/6551#issuecomment-2028441100) at 2024-03-30 11:52 AM PDT -github-actions,2024-04-01T02:04:23Z,- github-actions commented on pull request: [6553](https://github.com/hackforla/website/pull/6553#issuecomment-2029031341) at 2024-03-31 07:04 PM PDT -github-actions,2024-04-02T04:50:56Z,- github-actions commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2031079423) at 2024-04-01 09:50 PM PDT -github-actions,2024-04-02T17:55:56Z,- github-actions commented on pull request: [6557](https://github.com/hackforla/website/pull/6557#issuecomment-2032698715) at 2024-04-02 10:55 AM PDT -github-actions,2024-04-03T20:37:22Z,- github-actions commented on pull request: [6560](https://github.com/hackforla/website/pull/6560#issuecomment-2035536381) at 2024-04-03 01:37 PM PDT -github-actions,2024-04-03T22:08:25Z,- github-actions commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2035686306) at 2024-04-03 03:08 PM PDT -github-actions,2024-04-03T23:19:43Z,- github-actions commented on pull request: [6562](https://github.com/hackforla/website/pull/6562#issuecomment-2035796611) at 2024-04-03 04:19 PM PDT -github-actions,2024-04-04T05:58:41Z,- github-actions commented on pull request: [6564](https://github.com/hackforla/website/pull/6564#issuecomment-2036249941) at 2024-04-03 10:58 PM PDT -github-actions,2024-04-04T17:28:30Z,- github-actions commented on pull request: [6565](https://github.com/hackforla/website/pull/6565#issuecomment-2037787812) at 2024-04-04 10:28 AM PDT -github-actions,2024-04-04T20:49:22Z,- github-actions commented on pull request: [6566](https://github.com/hackforla/website/pull/6566#issuecomment-2038190441) at 2024-04-04 01:49 PM PDT -github-actions,2024-04-05T22:13:05Z,- github-actions commented on pull request: [6580](https://github.com/hackforla/website/pull/6580#issuecomment-2040696826) at 2024-04-05 03:13 PM PDT -github-actions,2024-04-09T19:52:28Z,- github-actions commented on pull request: [6612](https://github.com/hackforla/website/pull/6612#issuecomment-2045947112) at 2024-04-09 12:52 PM PDT -github-actions,2024-04-09T20:41:29Z,- github-actions commented on pull request: [6613](https://github.com/hackforla/website/pull/6613#issuecomment-2046014243) at 2024-04-09 01:41 PM PDT -github-actions,2024-04-10T20:51:18Z,- github-actions commented on pull request: [6616](https://github.com/hackforla/website/pull/6616#issuecomment-2048415227) at 2024-04-10 01:51 PM PDT -github-actions,2024-04-10T22:57:28Z,- github-actions commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2048567148) at 2024-04-10 03:57 PM PDT -github-actions,2024-04-10T23:29:24Z,- github-actions commented on pull request: [6618](https://github.com/hackforla/website/pull/6618#issuecomment-2048597076) at 2024-04-10 04:29 PM PDT -github-actions,2024-04-11T00:44:19Z,- github-actions commented on pull request: [6620](https://github.com/hackforla/website/pull/6620#issuecomment-2048662573) at 2024-04-10 05:44 PM PDT -github-actions,2024-04-11T15:44:26Z,- github-actions commented on pull request: [6624](https://github.com/hackforla/website/pull/6624#issuecomment-2049996635) at 2024-04-11 08:44 AM PDT -github-actions,2024-04-11T17:14:49Z,- github-actions commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2050147660) at 2024-04-11 10:14 AM PDT -github-actions,2024-04-11T23:18:16Z,- github-actions commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2050704045) at 2024-04-11 04:18 PM PDT -github-actions,2024-04-12T00:53:26Z,- github-actions commented on pull request: [6627](https://github.com/hackforla/website/pull/6627#issuecomment-2050779925) at 2024-04-11 05:53 PM PDT -github-actions,2024-04-12T01:43:25Z,- github-actions commented on pull request: [6629](https://github.com/hackforla/website/pull/6629#issuecomment-2050817948) at 2024-04-11 06:43 PM PDT -github-actions,2024-04-12T18:06:18Z,- github-actions commented on pull request: [6630](https://github.com/hackforla/website/pull/6630#issuecomment-2052232617) at 2024-04-12 11:06 AM PDT -github-actions,2024-04-12T22:41:34Z,- github-actions commented on pull request: [6631](https://github.com/hackforla/website/pull/6631#issuecomment-2052646888) at 2024-04-12 03:41 PM PDT -github-actions,2024-04-12T23:56:46Z,- github-actions commented on pull request: [6634](https://github.com/hackforla/website/pull/6634#issuecomment-2052706915) at 2024-04-12 04:56 PM PDT -github-actions,2024-04-13T00:35:43Z,- github-actions commented on pull request: [6635](https://github.com/hackforla/website/pull/6635#issuecomment-2052729209) at 2024-04-12 05:35 PM PDT -github-actions,2024-04-14T22:05:05Z,- github-actions commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2054198296) at 2024-04-14 03:05 PM PDT -github-actions,2024-04-15T00:27:32Z,- github-actions commented on pull request: [6647](https://github.com/hackforla/website/pull/6647#issuecomment-2054240838) at 2024-04-14 05:27 PM PDT -github-actions,2024-04-15T20:07:54Z,- github-actions commented on pull request: [6651](https://github.com/hackforla/website/pull/6651#issuecomment-2057715272) at 2024-04-15 01:07 PM PDT -github-actions,2024-04-15T23:25:01Z,- github-actions commented on pull request: [6652](https://github.com/hackforla/website/pull/6652#issuecomment-2057975190) at 2024-04-15 04:25 PM PDT -github-actions,2024-04-16T04:18:01Z,- github-actions commented on pull request: [6656](https://github.com/hackforla/website/pull/6656#issuecomment-2058198842) at 2024-04-15 09:18 PM PDT -github-actions,2024-04-16T15:26:44Z,- github-actions commented on pull request: [6657](https://github.com/hackforla/website/pull/6657#issuecomment-2059363842) at 2024-04-16 08:26 AM PDT -github-actions,2024-04-16T20:19:05Z,- github-actions commented on pull request: [6658](https://github.com/hackforla/website/pull/6658#issuecomment-2059857996) at 2024-04-16 01:19 PM PDT -github-actions,2024-04-17T21:42:05Z,- github-actions commented on pull request: [6659](https://github.com/hackforla/website/pull/6659#issuecomment-2062454692) at 2024-04-17 02:42 PM PDT -github-actions,2024-04-17T23:30:49Z,- github-actions commented on pull request: [6660](https://github.com/hackforla/website/pull/6660#issuecomment-2062664748) at 2024-04-17 04:30 PM PDT -github-actions,2024-04-18T00:49:01Z,- github-actions commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2062791009) at 2024-04-17 05:49 PM PDT -github-actions,2024-04-18T19:31:45Z,- github-actions commented on pull request: [6681](https://github.com/hackforla/website/pull/6681#issuecomment-2065071588) at 2024-04-18 12:31 PM PDT -github-actions,2024-04-18T21:06:28Z,- github-actions commented on pull request: [6682](https://github.com/hackforla/website/pull/6682#issuecomment-2065324165) at 2024-04-18 02:06 PM PDT -github-actions,2024-04-19T02:36:57Z,- github-actions commented on pull request: [6686](https://github.com/hackforla/website/pull/6686#issuecomment-2065647786) at 2024-04-18 07:36 PM PDT -github-actions,2024-04-19T10:15:19Z,- github-actions commented on pull request: [6688](https://github.com/hackforla/website/pull/6688#issuecomment-2066266081) at 2024-04-19 03:15 AM PDT -github-actions,2024-04-20T09:46:09Z,- github-actions commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2067620871) at 2024-04-20 02:46 AM PDT -github-actions,2024-04-20T18:22:14Z,- github-actions commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2067748890) at 2024-04-20 11:22 AM PDT -github-actions,2024-04-21T00:28:02Z,- github-actions commented on pull request: [6693](https://github.com/hackforla/website/pull/6693#issuecomment-2067825190) at 2024-04-20 05:28 PM PDT -github-actions,2024-04-21T00:39:58Z,- github-actions commented on pull request: [6694](https://github.com/hackforla/website/pull/6694#issuecomment-2067827260) at 2024-04-20 05:39 PM PDT -github-actions,2024-04-21T20:58:24Z,- github-actions commented on pull request: [6707](https://github.com/hackforla/website/pull/6707#issuecomment-2068195940) at 2024-04-21 01:58 PM PDT -github-actions,2024-04-21T21:16:25Z,- github-actions commented on pull request: [6708](https://github.com/hackforla/website/pull/6708#issuecomment-2068203028) at 2024-04-21 02:16 PM PDT -github-actions,2024-04-23T00:33:37Z,- github-actions commented on pull request: [6711](https://github.com/hackforla/website/pull/6711#issuecomment-2071173895) at 2024-04-22 05:33 PM PDT -github-actions,2024-04-23T20:55:23Z,- github-actions commented on pull request: [6712](https://github.com/hackforla/website/pull/6712#issuecomment-2073428692) at 2024-04-23 01:55 PM PDT -github-actions,2024-04-23T23:42:44Z,- github-actions commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2073663261) at 2024-04-23 04:42 PM PDT -github-actions,2024-04-24T16:21:10Z,- github-actions commented on pull request: [6744](https://github.com/hackforla/website/pull/6744#issuecomment-2075358392) at 2024-04-24 09:21 AM PDT -github-actions,2024-04-24T20:02:39Z,- github-actions commented on pull request: [6745](https://github.com/hackforla/website/pull/6745#issuecomment-2075743187) at 2024-04-24 01:02 PM PDT -github-actions,2024-04-24T20:16:08Z,- github-actions commented on pull request: [6746](https://github.com/hackforla/website/pull/6746#issuecomment-2075765917) at 2024-04-24 01:16 PM PDT -github-actions,2024-04-24T22:51:10Z,- github-actions commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2075983673) at 2024-04-24 03:51 PM PDT -github-actions,2024-04-25T00:09:10Z,- github-actions commented on pull request: [6748](https://github.com/hackforla/website/pull/6748#issuecomment-2076074889) at 2024-04-24 05:09 PM PDT -github-actions,2024-04-26T03:00:37Z,- github-actions commented on pull request: [6764](https://github.com/hackforla/website/pull/6764#issuecomment-2078549019) at 2024-04-25 08:00 PM PDT -github-actions,2024-04-26T05:22:11Z,- github-actions commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2078652712) at 2024-04-25 10:22 PM PDT -github-actions,2024-04-26T15:57:43Z,- github-actions commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2079667084) at 2024-04-26 08:57 AM PDT -github-actions,2024-04-26T18:33:09Z,- github-actions commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2079928635) at 2024-04-26 11:33 AM PDT -github-actions,2024-04-27T00:30:30Z,- github-actions commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2080267648) at 2024-04-26 05:30 PM PDT -github-actions,2024-04-27T10:45:18Z,- github-actions commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2080448766) at 2024-04-27 03:45 AM PDT -github-actions,2024-04-28T02:17:26Z,- github-actions commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2081294046) at 2024-04-27 07:17 PM PDT -github-actions,2024-04-28T02:26:42Z,- github-actions commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2081296162) at 2024-04-27 07:26 PM PDT -github-actions,2024-04-29T04:25:48Z,- github-actions commented on pull request: [6779](https://github.com/hackforla/website/pull/6779#issuecomment-2081868567) at 2024-04-28 09:25 PM PDT -github-actions,2024-04-29T08:17:52Z,- github-actions commented on pull request: [6780](https://github.com/hackforla/website/pull/6780#issuecomment-2082130866) at 2024-04-29 01:17 AM PDT -github-actions,2024-04-29T20:19:01Z,- github-actions commented on pull request: [6781](https://github.com/hackforla/website/pull/6781#issuecomment-2083590254) at 2024-04-29 01:19 PM PDT -github-actions,2024-04-29T22:00:55Z,- github-actions commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2083758072) at 2024-04-29 03:00 PM PDT -github-actions,2024-04-30T00:00:02Z,- github-actions commented on pull request: [6785](https://github.com/hackforla/website/pull/6785#issuecomment-2083896514) at 2024-04-29 05:00 PM PDT -github-actions,2024-04-30T07:02:49Z,- github-actions commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2084526099) at 2024-04-30 12:02 AM PDT -github-actions,2024-04-30T19:14:19Z,- github-actions commented on pull request: [6790](https://github.com/hackforla/website/pull/6790#issuecomment-2086711609) at 2024-04-30 12:14 PM PDT -github-actions,2024-04-30T20:00:15Z,- github-actions commented on pull request: [6791](https://github.com/hackforla/website/pull/6791#issuecomment-2086979330) at 2024-04-30 01:00 PM PDT -github-actions,2024-04-30T22:08:29Z,- github-actions commented on pull request: [6795](https://github.com/hackforla/website/pull/6795#issuecomment-2087530428) at 2024-04-30 03:08 PM PDT -github-actions,2024-05-01T00:52:56Z,- github-actions commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2087786041) at 2024-04-30 05:52 PM PDT -github-actions,2024-05-01T18:56:12Z,- github-actions commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2088924979) at 2024-05-01 11:56 AM PDT -github-actions,2024-05-01T19:19:27Z,- github-actions commented on pull request: [6802](https://github.com/hackforla/website/pull/6802#issuecomment-2088962146) at 2024-05-01 12:19 PM PDT -github-actions,2024-05-01T22:03:40Z,- github-actions commented on pull request: [6804](https://github.com/hackforla/website/pull/6804#issuecomment-2089207857) at 2024-05-01 03:03 PM PDT -github-actions,2024-05-02T07:14:18Z,- github-actions commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2089773421) at 2024-05-02 12:14 AM PDT -github-actions,2024-05-02T21:48:05Z,- github-actions commented on pull request: [6808](https://github.com/hackforla/website/pull/6808#issuecomment-2091796166) at 2024-05-02 02:48 PM PDT -github-actions,2024-05-03T19:46:30Z,- github-actions commented on pull request: [6810](https://github.com/hackforla/website/pull/6810#issuecomment-2093664290) at 2024-05-03 12:46 PM PDT -github-actions,2024-05-03T20:14:34Z,- github-actions commented on pull request: [6811](https://github.com/hackforla/website/pull/6811#issuecomment-2093699906) at 2024-05-03 01:14 PM PDT -github-actions,2024-05-03T23:51:04Z,- github-actions commented on pull request: [6813](https://github.com/hackforla/website/pull/6813#issuecomment-2093893750) at 2024-05-03 04:51 PM PDT -github-actions,2024-05-04T00:05:25Z,- github-actions commented on pull request: [6814](https://github.com/hackforla/website/pull/6814#issuecomment-2093900526) at 2024-05-03 05:05 PM PDT -github-actions,2024-05-04T00:35:40Z,- github-actions commented on pull request: [6815](https://github.com/hackforla/website/pull/6815#issuecomment-2093917919) at 2024-05-03 05:35 PM PDT -github-actions,2024-05-04T01:06:40Z,- github-actions commented on pull request: [6816](https://github.com/hackforla/website/pull/6816#issuecomment-2093935376) at 2024-05-03 06:06 PM PDT -github-actions,2024-05-04T06:39:44Z,- github-actions commented on pull request: [6817](https://github.com/hackforla/website/pull/6817#issuecomment-2094050358) at 2024-05-03 11:39 PM PDT -github-actions,2024-05-04T06:54:33Z,- github-actions commented on pull request: [6818](https://github.com/hackforla/website/pull/6818#issuecomment-2094054716) at 2024-05-03 11:54 PM PDT -github-actions,2024-05-06T00:52:21Z,- github-actions commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2095029254) at 2024-05-05 05:52 PM PDT -github-actions,2024-05-06T03:24:48Z,- github-actions commented on pull request: [6822](https://github.com/hackforla/website/pull/6822#issuecomment-2095127712) at 2024-05-05 08:24 PM PDT -github-actions,2024-05-06T23:20:33Z,- github-actions commented on pull request: [6824](https://github.com/hackforla/website/pull/6824#issuecomment-2097084743) at 2024-05-06 04:20 PM PDT -github-actions,2024-05-08T02:31:41Z,- github-actions commented on pull request: [6836](https://github.com/hackforla/website/pull/6836#issuecomment-2099620528) at 2024-05-07 07:31 PM PDT -github-actions,2024-05-08T16:20:52Z,- github-actions commented on pull request: [6839](https://github.com/hackforla/website/pull/6839#issuecomment-2100944045) at 2024-05-08 09:20 AM PDT -github-actions,2024-05-09T20:23:51Z,- github-actions commented on pull request: [6841](https://github.com/hackforla/website/pull/6841#issuecomment-2103361908) at 2024-05-09 01:23 PM PDT -github-actions,2024-05-10T07:30:04Z,- github-actions commented on pull request: [6846](https://github.com/hackforla/website/pull/6846#issuecomment-2104079468) at 2024-05-10 12:30 AM PDT -github-actions,2024-05-12T01:35:21Z,- github-actions commented on pull request: [6851](https://github.com/hackforla/website/pull/6851#issuecomment-2106083054) at 2024-05-11 06:35 PM PDT -github-actions,2024-05-13T17:10:12Z,- github-actions commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2108274626) at 2024-05-13 10:10 AM PDT -github-actions,2024-05-14T00:52:04Z,- github-actions commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2109071421) at 2024-05-13 05:52 PM PDT -github-actions,2024-05-14T19:41:25Z,- github-actions commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2111012556) at 2024-05-14 12:41 PM PDT -github-actions,2024-05-14T21:46:19Z,- github-actions commented on pull request: [6855](https://github.com/hackforla/website/pull/6855#issuecomment-2111191335) at 2024-05-14 02:46 PM PDT -github-actions,2024-05-15T02:04:36Z,- github-actions commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2111446853) at 2024-05-14 07:04 PM PDT -github-actions,2024-05-18T18:13:50Z,- github-actions commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2118906227) at 2024-05-18 11:13 AM PDT -github-actions,2024-05-20T22:31:28Z,- github-actions commented on pull request: [6865](https://github.com/hackforla/website/pull/6865#issuecomment-2121324378) at 2024-05-20 03:31 PM PDT -github-actions,2024-05-21T06:01:53Z,- github-actions commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2121811225) at 2024-05-20 11:01 PM PDT -github-actions,2024-05-21T18:24:42Z,- github-actions commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2123195537) at 2024-05-21 11:24 AM PDT -github-actions,2024-05-21T20:42:12Z,- github-actions commented on pull request: [6874](https://github.com/hackforla/website/pull/6874#issuecomment-2123408417) at 2024-05-21 01:42 PM PDT -github-actions,2024-05-22T03:24:50Z,- github-actions commented on pull request: [6883](https://github.com/hackforla/website/pull/6883#issuecomment-2123798181) at 2024-05-21 08:24 PM PDT -github-actions,2024-05-22T17:26:19Z,- github-actions commented on pull request: [6886](https://github.com/hackforla/website/pull/6886#issuecomment-2125379834) at 2024-05-22 10:26 AM PDT -github-actions,2024-05-22T20:56:34Z,- github-actions commented on pull request: [6887](https://github.com/hackforla/website/pull/6887#issuecomment-2125730270) at 2024-05-22 01:56 PM PDT -github-actions,2024-05-23T00:35:43Z,- github-actions commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2125991212) at 2024-05-22 05:35 PM PDT -github-actions,2024-05-23T20:05:19Z,- github-actions commented on pull request: [6890](https://github.com/hackforla/website/pull/6890#issuecomment-2127932458) at 2024-05-23 01:05 PM PDT -github-actions,2024-05-24T03:37:13Z,- github-actions commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2128464307) at 2024-05-23 08:37 PM PDT -github-actions,2024-05-24T03:42:53Z,- github-actions commented on pull request: [6892](https://github.com/hackforla/website/pull/6892#issuecomment-2128467987) at 2024-05-23 08:42 PM PDT -github-actions,2024-05-24T18:28:51Z,- github-actions commented on pull request: [6893](https://github.com/hackforla/website/pull/6893#issuecomment-2130136934) at 2024-05-24 11:28 AM PDT -github-actions,2024-05-24T23:23:07Z,- github-actions commented on pull request: [6894](https://github.com/hackforla/website/pull/6894#issuecomment-2130507705) at 2024-05-24 04:23 PM PDT -github-actions,2024-05-25T00:00:12Z,- github-actions commented on pull request: [6895](https://github.com/hackforla/website/pull/6895#issuecomment-2130529308) at 2024-05-24 05:00 PM PDT -github-actions,2024-05-25T17:46:28Z,- github-actions commented on pull request: [6896](https://github.com/hackforla/website/pull/6896#issuecomment-2131372696) at 2024-05-25 10:46 AM PDT -github-actions,2024-05-26T02:06:42Z,- github-actions commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2131963477) at 2024-05-25 07:06 PM PDT -github-actions,2024-05-26T04:04:34Z,- github-actions commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2132054377) at 2024-05-25 09:04 PM PDT -github-actions,2024-05-26T17:56:35Z,- github-actions commented on pull request: [6899](https://github.com/hackforla/website/pull/6899#issuecomment-2132299748) at 2024-05-26 10:56 AM PDT -github-actions,2024-05-27T16:33:25Z,- github-actions commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2133808627) at 2024-05-27 09:33 AM PDT -github-actions,2024-05-27T18:51:25Z,- github-actions commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2133935802) at 2024-05-27 11:51 AM PDT -github-actions,2024-05-28T21:11:01Z,- github-actions commented on pull request: [6905](https://github.com/hackforla/website/pull/6905#issuecomment-2136113828) at 2024-05-28 02:11 PM PDT -github-actions,2024-05-28T21:40:51Z,- github-actions commented on pull request: [6906](https://github.com/hackforla/website/pull/6906#issuecomment-2136155400) at 2024-05-28 02:40 PM PDT -github-actions,2024-05-29T03:18:21Z,- github-actions commented on pull request: [6907](https://github.com/hackforla/website/pull/6907#issuecomment-2136441231) at 2024-05-28 08:18 PM PDT -github-actions,2024-05-30T01:20:25Z,- github-actions commented on pull request: [6912](https://github.com/hackforla/website/pull/6912#issuecomment-2138501037) at 2024-05-29 06:20 PM PDT -github-actions,2024-05-30T03:03:24Z,- github-actions commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2138586535) at 2024-05-29 08:03 PM PDT -github-actions,2024-05-30T03:06:51Z,- github-actions commented on pull request: [6914](https://github.com/hackforla/website/pull/6914#issuecomment-2138589268) at 2024-05-29 08:06 PM PDT -github-actions,2024-05-30T23:31:57Z,- github-actions commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2141001444) at 2024-05-30 04:31 PM PDT -github-actions,2024-05-31T06:13:58Z,- github-actions commented on pull request: [6917](https://github.com/hackforla/website/pull/6917#issuecomment-2141300990) at 2024-05-30 11:13 PM PDT -github-actions,2024-06-01T06:17:39Z,- github-actions commented on pull request: [6921](https://github.com/hackforla/website/pull/6921#issuecomment-2143318199) at 2024-05-31 11:17 PM PDT -github-actions,2024-06-01T20:28:55Z,- github-actions commented on pull request: [6923](https://github.com/hackforla/website/pull/6923#issuecomment-2143576741) at 2024-06-01 01:28 PM PDT -github-actions,2024-06-02T05:01:03Z,- github-actions commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2143698137) at 2024-06-01 10:01 PM PDT -github-actions,2024-06-02T14:20:18Z,- github-actions commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2143874945) at 2024-06-02 07:20 AM PDT -github-actions,2024-06-02T17:35:49Z,- github-actions commented on pull request: [6928](https://github.com/hackforla/website/pull/6928#issuecomment-2143960276) at 2024-06-02 10:35 AM PDT -github-actions,2024-06-04T03:33:56Z,- github-actions commented on pull request: [6958](https://github.com/hackforla/website/pull/6958#issuecomment-2146521760) at 2024-06-03 08:33 PM PDT -github-actions,2024-06-05T19:45:45Z,- github-actions commented on pull request: [6961](https://github.com/hackforla/website/pull/6961#issuecomment-2150831007) at 2024-06-05 12:45 PM PDT -github-actions,2024-06-05T21:13:18Z,- github-actions commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2150972171) at 2024-06-05 02:13 PM PDT -github-actions,2024-06-05T23:30:47Z,- github-actions commented on pull request: [6965](https://github.com/hackforla/website/pull/6965#issuecomment-2151122040) at 2024-06-05 04:30 PM PDT -github-actions,2024-06-06T22:33:58Z,- github-actions commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2153508435) at 2024-06-06 03:33 PM PDT -github-actions,2024-06-07T05:16:31Z,- github-actions commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2154045075) at 2024-06-06 10:16 PM PDT -github-actions,2024-06-07T05:54:49Z,- github-actions commented on pull request: [6972](https://github.com/hackforla/website/pull/6972#issuecomment-2154134497) at 2024-06-06 10:54 PM PDT -github-actions,2024-06-08T00:05:37Z,- github-actions commented on pull request: [6973](https://github.com/hackforla/website/pull/6973#issuecomment-2155710274) at 2024-06-07 05:05 PM PDT -github-actions,2024-06-08T04:56:50Z,- github-actions commented on pull request: [6974](https://github.com/hackforla/website/pull/6974#issuecomment-2155809125) at 2024-06-07 09:56 PM PDT -github-actions,2024-06-09T01:43:51Z,- github-actions commented on pull request: [6975](https://github.com/hackforla/website/pull/6975#issuecomment-2156264046) at 2024-06-08 06:43 PM PDT -github-actions,2024-06-10T10:15:33Z,- github-actions commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2157942899) at 2024-06-10 03:15 AM PDT -github-actions,2024-06-10T20:02:46Z,- github-actions commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2159186441) at 2024-06-10 01:02 PM PDT -github-actions,2024-06-10T20:47:09Z,- github-actions commented on pull request: [6983](https://github.com/hackforla/website/pull/6983#issuecomment-2159255564) at 2024-06-10 01:47 PM PDT -github-actions,2024-06-10T22:13:11Z,- github-actions commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2159396512) at 2024-06-10 03:13 PM PDT -github-actions,2024-06-10T22:45:47Z,- github-actions commented on pull request: [6985](https://github.com/hackforla/website/pull/6985#issuecomment-2159434983) at 2024-06-10 03:45 PM PDT -github-actions,2024-06-12T00:20:54Z,- github-actions commented on pull request: [6989](https://github.com/hackforla/website/pull/6989#issuecomment-2161835264) at 2024-06-11 05:20 PM PDT -github-actions,2024-06-12T17:49:28Z,- github-actions commented on pull request: [6991](https://github.com/hackforla/website/pull/6991#issuecomment-2163600129) at 2024-06-12 10:49 AM PDT -github-actions,2024-06-12T17:57:33Z,- github-actions commented on pull request: [6992](https://github.com/hackforla/website/pull/6992#issuecomment-2163613401) at 2024-06-12 10:57 AM PDT -github-actions,2024-06-13T00:04:34Z,- github-actions commented on pull request: [6999](https://github.com/hackforla/website/pull/6999#issuecomment-2164112296) at 2024-06-12 05:04 PM PDT -github-actions,2024-06-13T19:28:31Z,- github-actions commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2166616511) at 2024-06-13 12:28 PM PDT -github-actions,2024-06-13T19:57:27Z,- github-actions commented on pull request: [7002](https://github.com/hackforla/website/pull/7002#issuecomment-2166660934) at 2024-06-13 12:57 PM PDT -github-actions,2024-06-14T02:18:39Z,- github-actions commented on pull request: [7003](https://github.com/hackforla/website/pull/7003#issuecomment-2167088221) at 2024-06-13 07:18 PM PDT -github-actions,2024-06-15T23:18:52Z,- github-actions commented on pull request: [7008](https://github.com/hackforla/website/pull/7008#issuecomment-2170967661) at 2024-06-15 04:18 PM PDT -github-actions,2024-06-15T23:38:18Z,- github-actions commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2170971218) at 2024-06-15 04:38 PM PDT -github-actions,2024-06-17T11:33:35Z,- github-actions commented on pull request: [7012](https://github.com/hackforla/website/pull/7012#issuecomment-2173146761) at 2024-06-17 04:33 AM PDT -github-actions,2024-06-17T18:54:11Z,- github-actions commented on pull request: [7016](https://github.com/hackforla/website/pull/7016#issuecomment-2174206487) at 2024-06-17 11:54 AM PDT -github-actions,2024-06-18T07:39:14Z,- github-actions commented on pull request: [7017](https://github.com/hackforla/website/pull/7017#issuecomment-2175411219) at 2024-06-18 12:39 AM PDT -github-actions,2024-06-19T15:20:27Z,- github-actions commented on pull request: [7036](https://github.com/hackforla/website/pull/7036#issuecomment-2178965760) at 2024-06-19 08:20 AM PDT -github-actions,2024-06-19T20:10:08Z,- github-actions commented on pull request: [7037](https://github.com/hackforla/website/pull/7037#issuecomment-2179399337) at 2024-06-19 01:10 PM PDT -github-actions,2024-06-19T23:01:39Z,- github-actions commented on pull request: [7038](https://github.com/hackforla/website/pull/7038#issuecomment-2179547981) at 2024-06-19 04:01 PM PDT -github-actions,2024-06-20T22:04:17Z,- github-actions commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2181632670) at 2024-06-20 03:04 PM PDT -github-actions,2024-06-20T23:29:30Z,- github-actions commented on pull request: [7041](https://github.com/hackforla/website/pull/7041#issuecomment-2181714011) at 2024-06-20 04:29 PM PDT -github-actions,2024-06-21T02:59:34Z,- github-actions commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2181905389) at 2024-06-20 07:59 PM PDT -github-actions,2024-06-23T03:50:12Z,- github-actions commented on pull request: [7052](https://github.com/hackforla/website/pull/7052#issuecomment-2184489197) at 2024-06-22 08:50 PM PDT -github-actions,2024-06-23T04:41:33Z,- github-actions commented on pull request: [7053](https://github.com/hackforla/website/pull/7053#issuecomment-2184527368) at 2024-06-22 09:41 PM PDT -github-actions,2024-06-23T04:43:29Z,- github-actions commented on pull request: [7054](https://github.com/hackforla/website/pull/7054#issuecomment-2184527744) at 2024-06-22 09:43 PM PDT -github-actions,2024-06-23T04:45:04Z,- github-actions commented on pull request: [7055](https://github.com/hackforla/website/pull/7055#issuecomment-2184529469) at 2024-06-22 09:45 PM PDT -github-actions,2024-06-23T04:46:36Z,- github-actions commented on pull request: [7056](https://github.com/hackforla/website/pull/7056#issuecomment-2184530913) at 2024-06-22 09:46 PM PDT -github-actions,2024-06-24T02:48:35Z,- github-actions commented on pull request: [7057](https://github.com/hackforla/website/pull/7057#issuecomment-2185486875) at 2024-06-23 07:48 PM PDT -github-actions,2024-06-24T04:19:48Z,- github-actions commented on pull request: [7058](https://github.com/hackforla/website/pull/7058#issuecomment-2185574658) at 2024-06-23 09:19 PM PDT -github-actions,2024-06-24T04:26:16Z,- github-actions commented on pull request: [7059](https://github.com/hackforla/website/pull/7059#issuecomment-2185580462) at 2024-06-23 09:26 PM PDT -github-actions,2024-06-24T19:13:48Z,- github-actions commented on pull request: [7063](https://github.com/hackforla/website/pull/7063#issuecomment-2187237226) at 2024-06-24 12:13 PM PDT -github-actions,2024-06-26T03:04:55Z,- github-actions commented on pull request: [7065](https://github.com/hackforla/website/pull/7065#issuecomment-2190456469) at 2024-06-25 08:04 PM PDT -github-actions,2024-06-26T20:05:38Z,- github-actions commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2192534306) at 2024-06-26 01:05 PM PDT -github-actions,2024-06-26T21:38:57Z,- github-actions commented on pull request: [7068](https://github.com/hackforla/website/pull/7068#issuecomment-2192669914) at 2024-06-26 02:38 PM PDT -github-actions,2024-06-26T21:47:14Z,- github-actions commented on pull request: [7069](https://github.com/hackforla/website/pull/7069#issuecomment-2192680129) at 2024-06-26 02:47 PM PDT -github-actions,2024-06-27T09:02:40Z,- github-actions commented on pull request: [7070](https://github.com/hackforla/website/pull/7070#issuecomment-2194163643) at 2024-06-27 02:02 AM PDT -github-actions,2024-06-27T16:35:32Z,- github-actions commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195181179) at 2024-06-27 09:35 AM PDT -github-actions,2024-06-27T18:25:47Z,- github-actions commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2195417457) at 2024-06-27 11:25 AM PDT -github-actions,2024-06-27T19:17:12Z,- github-actions commented on pull request: [7074](https://github.com/hackforla/website/pull/7074#issuecomment-2195500276) at 2024-06-27 12:17 PM PDT -github-actions,2024-06-28T03:02:31Z,- github-actions commented on pull request: [7077](https://github.com/hackforla/website/pull/7077#issuecomment-2196019732) at 2024-06-27 08:02 PM PDT -github-actions,2024-06-28T23:19:30Z,- github-actions commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2197763070) at 2024-06-28 04:19 PM PDT -github-actions,2024-06-29T05:14:00Z,- github-actions commented on pull request: [7082](https://github.com/hackforla/website/pull/7082#issuecomment-2197968366) at 2024-06-28 10:14 PM PDT -github-actions,2024-07-02T03:59:26Z,- github-actions commented on pull request: [7086](https://github.com/hackforla/website/pull/7086#issuecomment-2201844003) at 2024-07-01 08:59 PM PDT -github-actions,2024-07-05T06:03:29Z,- github-actions commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2210235766) at 2024-07-04 11:03 PM PDT -github-actions,2024-07-13T02:12:27Z,- github-actions commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2226721346) at 2024-07-12 07:12 PM PDT -github-actions,2024-07-13T22:31:49Z,- github-actions commented on pull request: [7106](https://github.com/hackforla/website/pull/7106#issuecomment-2227120527) at 2024-07-13 03:31 PM PDT -github-actions,2024-07-15T02:18:40Z,- github-actions commented on pull request: [7109](https://github.com/hackforla/website/pull/7109#issuecomment-2227602578) at 2024-07-14 07:18 PM PDT -github-actions,2024-07-15T09:48:21Z,- github-actions commented on pull request: [7119](https://github.com/hackforla/website/pull/7119#issuecomment-2228104033) at 2024-07-15 02:48 AM PDT -github-actions,2024-07-15T22:20:57Z,- github-actions commented on pull request: [7121](https://github.com/hackforla/website/pull/7121#issuecomment-2229534807) at 2024-07-15 03:20 PM PDT -github-actions,2024-07-15T22:25:50Z,- github-actions commented on pull request: [7122](https://github.com/hackforla/website/pull/7122#issuecomment-2229539854) at 2024-07-15 03:25 PM PDT -github-actions,2024-07-15T23:26:58Z,- github-actions commented on pull request: [7123](https://github.com/hackforla/website/pull/7123#issuecomment-2229612830) at 2024-07-15 04:26 PM PDT -github-actions,2024-07-15T23:34:46Z,- github-actions commented on pull request: [7124](https://github.com/hackforla/website/pull/7124#issuecomment-2229619938) at 2024-07-15 04:34 PM PDT -github-actions,2024-07-16T05:43:52Z,- github-actions commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2230070816) at 2024-07-15 10:43 PM PDT -github-actions,2024-07-17T00:46:57Z,- github-actions commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2232079872) at 2024-07-16 05:46 PM PDT -github-actions,2024-07-17T23:28:17Z,- github-actions commented on pull request: [7127](https://github.com/hackforla/website/pull/7127#issuecomment-2234704039) at 2024-07-17 04:28 PM PDT -github-actions,2024-07-18T22:31:48Z,- github-actions commented on pull request: [7128](https://github.com/hackforla/website/pull/7128#issuecomment-2237730127) at 2024-07-18 03:31 PM PDT -github-actions,2024-07-19T01:55:51Z,- github-actions commented on pull request: [7129](https://github.com/hackforla/website/pull/7129#issuecomment-2237892874) at 2024-07-18 06:55 PM PDT -github-actions,2024-07-19T20:15:37Z,- github-actions commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2240046249) at 2024-07-19 01:15 PM PDT -github-actions,2024-07-21T20:37:19Z,- github-actions commented on pull request: [7131](https://github.com/hackforla/website/pull/7131#issuecomment-2241767162) at 2024-07-21 01:37 PM PDT -github-actions,2024-07-21T21:06:50Z,- github-actions commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2241774358) at 2024-07-21 02:06 PM PDT -github-actions,2024-07-23T08:07:49Z,- github-actions commented on pull request: [7136](https://github.com/hackforla/website/pull/7136#issuecomment-2244536910) at 2024-07-23 01:07 AM PDT -github-actions,2024-07-25T23:51:19Z,- github-actions commented on pull request: [7141](https://github.com/hackforla/website/pull/7141#issuecomment-2251586563) at 2024-07-25 04:51 PM PDT -github-actions,2024-07-27T17:49:27Z,- github-actions commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2254212271) at 2024-07-27 10:49 AM PDT -github-actions,2024-07-29T20:19:00Z,- github-actions commented on pull request: [7153](https://github.com/hackforla/website/pull/7153#issuecomment-2256820037) at 2024-07-29 01:19 PM PDT -github-actions,2024-08-03T01:50:44Z,- github-actions commented on pull request: [7169](https://github.com/hackforla/website/pull/7169#issuecomment-2266325172) at 2024-08-02 06:50 PM PDT -github-actions,2024-08-06T19:14:51Z,- github-actions commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2271972854) at 2024-08-06 12:14 PM PDT -github-actions,2024-08-06T19:16:29Z,- github-actions commented on pull request: [7228](https://github.com/hackforla/website/pull/7228#issuecomment-2271975655) at 2024-08-06 12:16 PM PDT -github-actions,2024-08-06T20:30:45Z,- github-actions commented on pull request: [7229](https://github.com/hackforla/website/pull/7229#issuecomment-2272095538) at 2024-08-06 01:30 PM PDT -github-actions,2024-08-07T00:21:33Z,- github-actions commented on pull request: [7230](https://github.com/hackforla/website/pull/7230#issuecomment-2272389355) at 2024-08-06 05:21 PM PDT -github-actions,2024-08-07T03:12:53Z,- github-actions commented on pull request: [7233](https://github.com/hackforla/website/pull/7233#issuecomment-2272533688) at 2024-08-06 08:12 PM PDT -github-actions,2024-08-07T03:25:06Z,- github-actions commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2272542948) at 2024-08-06 08:25 PM PDT -github-actions,2024-08-07T03:46:11Z,- github-actions commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2272558628) at 2024-08-06 08:46 PM PDT -github-actions,2024-08-07T06:49:11Z,- github-actions commented on pull request: [7238](https://github.com/hackforla/website/pull/7238#issuecomment-2272745293) at 2024-08-06 11:49 PM PDT -github-actions,2024-08-08T02:39:03Z,- github-actions commented on pull request: [7244](https://github.com/hackforla/website/pull/7244#issuecomment-2274837666) at 2024-08-07 07:39 PM PDT -github-actions,2024-08-08T21:50:32Z,- github-actions commented on pull request: [7255](https://github.com/hackforla/website/pull/7255#issuecomment-2276727607) at 2024-08-08 02:50 PM PDT -github-actions,2024-08-09T03:39:00Z,- github-actions commented on pull request: [7256](https://github.com/hackforla/website/pull/7256#issuecomment-2277080644) at 2024-08-08 08:39 PM PDT -github-actions,2024-08-09T06:21:57Z,- github-actions commented on pull request: [7257](https://github.com/hackforla/website/pull/7257#issuecomment-2277230295) at 2024-08-08 11:21 PM PDT -github-actions,2024-08-09T13:21:25Z,- github-actions commented on pull request: [7258](https://github.com/hackforla/website/pull/7258#issuecomment-2277934255) at 2024-08-09 06:21 AM PDT -github-actions,2024-08-09T23:19:48Z,- github-actions commented on pull request: [7260](https://github.com/hackforla/website/pull/7260#issuecomment-2278870069) at 2024-08-09 04:19 PM PDT -github-actions,2024-08-10T15:36:59Z,- github-actions commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2282188663) at 2024-08-10 08:36 AM PDT -github-actions,2024-08-10T21:11:49Z,- github-actions commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2282278643) at 2024-08-10 02:11 PM PDT -github-actions,2024-08-10T22:17:57Z,- github-actions commented on pull request: [7263](https://github.com/hackforla/website/pull/7263#issuecomment-2282297939) at 2024-08-10 03:17 PM PDT -github-actions,2024-08-10T22:27:36Z,- github-actions commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2282300185) at 2024-08-10 03:27 PM PDT -github-actions,2024-08-11T18:24:05Z,- github-actions commented on pull request: [7269](https://github.com/hackforla/website/pull/7269#issuecomment-2282846749) at 2024-08-11 11:24 AM PDT -github-actions,2024-08-11T20:02:51Z,- github-actions commented on pull request: [7270](https://github.com/hackforla/website/pull/7270#issuecomment-2282873255) at 2024-08-11 01:02 PM PDT -github-actions,2024-08-11T22:12:48Z,- github-actions commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2282905586) at 2024-08-11 03:12 PM PDT -github-actions,2024-08-11T22:19:42Z,- github-actions commented on pull request: [7272](https://github.com/hackforla/website/pull/7272#issuecomment-2282907237) at 2024-08-11 03:19 PM PDT -github-actions,2024-08-12T07:34:15Z,- github-actions commented on pull request: [7274](https://github.com/hackforla/website/pull/7274#issuecomment-2283286049) at 2024-08-12 12:34 AM PDT -github-actions,2024-08-13T04:51:44Z,- github-actions commented on pull request: [7275](https://github.com/hackforla/website/pull/7275#issuecomment-2285336191) at 2024-08-12 09:51 PM PDT -github-actions,2024-08-13T07:50:14Z,- github-actions commented on pull request: [7276](https://github.com/hackforla/website/pull/7276#issuecomment-2285586350) at 2024-08-13 12:50 AM PDT -github-actions,2024-08-13T17:17:54Z,- github-actions commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2286742436) at 2024-08-13 10:17 AM PDT -github-actions,2024-08-13T19:45:13Z,- github-actions commented on pull request: [7280](https://github.com/hackforla/website/pull/7280#issuecomment-2287004251) at 2024-08-13 12:45 PM PDT -github-actions,2024-08-14T17:57:09Z,- github-actions commented on pull request: [7285](https://github.com/hackforla/website/pull/7285#issuecomment-2289482349) at 2024-08-14 10:57 AM PDT -github-actions,2024-08-15T02:37:42Z,- github-actions commented on pull request: [7293](https://github.com/hackforla/website/pull/7293#issuecomment-2290412474) at 2024-08-14 07:37 PM PDT -github-actions,2024-08-15T18:49:17Z,- github-actions commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2291984863) at 2024-08-15 11:49 AM PDT -github-actions,2024-08-15T20:17:35Z,- github-actions commented on pull request: [7297](https://github.com/hackforla/website/pull/7297#issuecomment-2292156431) at 2024-08-15 01:17 PM PDT -github-actions,2024-08-15T20:42:11Z,- github-actions commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2292201418) at 2024-08-15 01:42 PM PDT -github-actions,2024-08-15T20:47:36Z,- github-actions commented on pull request: [7299](https://github.com/hackforla/website/pull/7299#issuecomment-2292209696) at 2024-08-15 01:47 PM PDT -github-actions,2024-08-16T11:35:53Z,- github-actions commented on pull request: [7302](https://github.com/hackforla/website/pull/7302#issuecomment-2293344599) at 2024-08-16 04:35 AM PDT -github-actions,2024-08-16T22:50:25Z,- github-actions commented on pull request: [7306](https://github.com/hackforla/website/pull/7306#issuecomment-2294415418) at 2024-08-16 03:50 PM PDT -github-actions,2024-08-17T00:30:24Z,- github-actions commented on pull request: [7307](https://github.com/hackforla/website/pull/7307#issuecomment-2294497693) at 2024-08-16 05:30 PM PDT -github-actions,2024-08-17T00:34:52Z,- github-actions commented on pull request: [7308](https://github.com/hackforla/website/pull/7308#issuecomment-2294499395) at 2024-08-16 05:34 PM PDT -github-actions,2024-08-17T03:23:13Z,- github-actions commented on pull request: [7309](https://github.com/hackforla/website/pull/7309#issuecomment-2294605058) at 2024-08-16 08:23 PM PDT -github-actions,2024-08-17T05:59:05Z,- github-actions commented on pull request: [7310](https://github.com/hackforla/website/pull/7310#issuecomment-2294658418) at 2024-08-16 10:59 PM PDT -github-actions,2024-08-18T02:19:26Z,- github-actions commented on pull request: [7311](https://github.com/hackforla/website/pull/7311#issuecomment-2295066921) at 2024-08-17 07:19 PM PDT -github-actions,2024-08-18T05:56:47Z,- github-actions commented on pull request: [7312](https://github.com/hackforla/website/pull/7312#issuecomment-2295124709) at 2024-08-17 10:56 PM PDT -github-actions,2024-08-19T16:40:32Z,- github-actions commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2296992951) at 2024-08-19 09:40 AM PDT -github-actions,2024-08-20T00:17:51Z,- github-actions commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2297735724) at 2024-08-19 05:17 PM PDT -github-actions,2024-08-20T22:35:52Z,- github-actions commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2299875427) at 2024-08-20 03:35 PM PDT -github-actions,2024-08-21T02:18:24Z,- github-actions commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2300255767) at 2024-08-20 07:18 PM PDT -github-actions,2024-08-21T02:59:29Z,- github-actions commented on pull request: [7328](https://github.com/hackforla/website/pull/7328#issuecomment-2300435627) at 2024-08-20 07:59 PM PDT -github-actions,2024-08-21T23:53:21Z,- github-actions commented on pull request: [7340](https://github.com/hackforla/website/pull/7340#issuecomment-2303310242) at 2024-08-21 04:53 PM PDT -github-actions,2024-08-22T08:05:08Z,- github-actions commented on pull request: [7341](https://github.com/hackforla/website/pull/7341#issuecomment-2304037405) at 2024-08-22 01:05 AM PDT -github-actions,2024-08-22T18:46:47Z,- github-actions commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2305416794) at 2024-08-22 11:46 AM PDT -github-actions,2024-08-22T23:06:22Z,- github-actions commented on pull request: [7343](https://github.com/hackforla/website/pull/7343#issuecomment-2305892915) at 2024-08-22 04:06 PM PDT -github-actions,2024-08-23T19:33:00Z,- github-actions commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2307696887) at 2024-08-23 12:33 PM PDT -github-actions,2024-08-23T20:08:03Z,- github-actions commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2307741499) at 2024-08-23 01:08 PM PDT -github-actions,2024-08-24T04:45:00Z,- github-actions commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308090115) at 2024-08-23 09:45 PM PDT -github-actions,2024-08-24T05:33:57Z,- github-actions commented on pull request: [7348](https://github.com/hackforla/website/pull/7348#issuecomment-2308134107) at 2024-08-23 10:33 PM PDT -github-actions,2024-08-25T23:18:19Z,- github-actions commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2309035123) at 2024-08-25 04:18 PM PDT -github-actions,2024-08-26T23:26:20Z,- github-actions commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2311281205) at 2024-08-26 04:26 PM PDT -github-actions,2024-08-27T03:45:08Z,- github-actions commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2311511242) at 2024-08-26 08:45 PM PDT -github-actions,2024-08-28T01:35:34Z,- github-actions commented on pull request: [7361](https://github.com/hackforla/website/pull/7361#issuecomment-2313915645) at 2024-08-27 06:35 PM PDT -github-actions,2024-08-29T05:14:56Z,- github-actions commented on pull request: [7364](https://github.com/hackforla/website/pull/7364#issuecomment-2316731967) at 2024-08-28 10:14 PM PDT -github-actions,2024-08-29T15:50:37Z,- github-actions commented on pull request: [7365](https://github.com/hackforla/website/pull/7365#issuecomment-2318206219) at 2024-08-29 08:50 AM PDT -github-actions,2024-08-30T04:02:53Z,- github-actions commented on pull request: [7367](https://github.com/hackforla/website/pull/7367#issuecomment-2319969047) at 2024-08-29 09:02 PM PDT -github-actions,2024-08-30T09:13:54Z,- github-actions commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2320602542) at 2024-08-30 02:13 AM PDT -github-actions,2024-08-30T21:35:54Z,- github-actions commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2322370370) at 2024-08-30 02:35 PM PDT -github-actions,2024-08-30T22:40:21Z,- github-actions commented on pull request: [7370](https://github.com/hackforla/website/pull/7370#issuecomment-2322508486) at 2024-08-30 03:40 PM PDT -github-actions,2024-08-31T02:24:24Z,- github-actions commented on pull request: [7371](https://github.com/hackforla/website/pull/7371#issuecomment-2322734403) at 2024-08-30 07:24 PM PDT -github-actions,2024-08-31T21:56:26Z,- github-actions commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2323052938) at 2024-08-31 02:56 PM PDT -github-actions,2024-09-01T17:51:39Z,- github-actions commented on pull request: [7375](https://github.com/hackforla/website/pull/7375#issuecomment-2323440754) at 2024-09-01 10:51 AM PDT -github-actions,2024-09-01T23:59:21Z,- github-actions commented on pull request: [7376](https://github.com/hackforla/website/pull/7376#issuecomment-2323549816) at 2024-09-01 04:59 PM PDT -github-actions,2024-09-04T20:35:10Z,- github-actions commented on pull request: [7385](https://github.com/hackforla/website/pull/7385#issuecomment-2329921521) at 2024-09-04 01:35 PM PDT -github-actions,2024-09-06T00:43:16Z,- github-actions commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2332968290) at 2024-09-05 05:43 PM PDT -github-actions,2024-09-06T17:55:27Z,- github-actions commented on pull request: [7406](https://github.com/hackforla/website/pull/7406#issuecomment-2334558142) at 2024-09-06 10:55 AM PDT -github-actions,2024-09-07T14:42:09Z,- github-actions commented on pull request: [7408](https://github.com/hackforla/website/pull/7408#issuecomment-2335298417) at 2024-09-07 07:42 AM PDT -github-actions,2024-09-07T22:17:57Z,- github-actions commented on pull request: [7409](https://github.com/hackforla/website/pull/7409#issuecomment-2336467191) at 2024-09-07 03:17 PM PDT -github-actions,2024-09-10T02:37:28Z,- github-actions commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2339493707) at 2024-09-09 07:37 PM PDT -github-actions,2024-09-10T02:49:43Z,- github-actions commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2339504000) at 2024-09-09 07:49 PM PDT -github-actions,2024-09-10T19:09:23Z,- github-actions commented on pull request: [7436](https://github.com/hackforla/website/pull/7436#issuecomment-2341812449) at 2024-09-10 12:09 PM PDT -github-actions,2024-09-12T00:22:42Z,- github-actions commented on pull request: [7437](https://github.com/hackforla/website/pull/7437#issuecomment-2345017370) at 2024-09-11 05:22 PM PDT -github-actions,2024-09-12T19:12:41Z,- github-actions commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2347050279) at 2024-09-12 12:12 PM PDT -github-actions,2024-09-13T02:37:48Z,- github-actions commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2347927364) at 2024-09-12 07:37 PM PDT -github-actions,2024-09-13T18:22:59Z,- github-actions commented on pull request: [7445](https://github.com/hackforla/website/pull/7445#issuecomment-2349785162) at 2024-09-13 11:22 AM PDT -github-actions,2024-09-14T03:52:28Z,- github-actions commented on pull request: [7446](https://github.com/hackforla/website/pull/7446#issuecomment-2350818391) at 2024-09-13 08:52 PM PDT -github-actions,2024-09-14T05:44:00Z,- github-actions commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2350854853) at 2024-09-13 10:44 PM PDT -github-actions,2024-09-15T19:20:22Z,- github-actions commented on pull request: [7461](https://github.com/hackforla/website/pull/7461#issuecomment-2351754723) at 2024-09-15 12:20 PM PDT -github-actions,2024-09-15T23:45:12Z,- github-actions commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2351837139) at 2024-09-15 04:45 PM PDT -github-actions,2024-09-16T00:56:29Z,- github-actions commented on pull request: [7463](https://github.com/hackforla/website/pull/7463#issuecomment-2351874312) at 2024-09-15 05:56 PM PDT -github-actions,2024-09-16T03:12:50Z,- github-actions commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2351953329) at 2024-09-15 08:12 PM PDT -github-actions,2024-09-17T00:14:07Z,- github-actions commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2354248933) at 2024-09-16 05:14 PM PDT -github-actions,2024-09-17T01:47:18Z,- github-actions commented on pull request: [7466](https://github.com/hackforla/website/pull/7466#issuecomment-2354344333) at 2024-09-16 06:47 PM PDT -github-actions,2024-09-17T06:26:11Z,- github-actions commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2354636113) at 2024-09-16 11:26 PM PDT -github-actions,2024-09-17T09:14:26Z,- github-actions commented on pull request: [7468](https://github.com/hackforla/website/pull/7468#issuecomment-2354985199) at 2024-09-17 02:14 AM PDT -github-actions,2024-09-18T06:48:13Z,- github-actions commented on pull request: [7491](https://github.com/hackforla/website/pull/7491#issuecomment-2357640692) at 2024-09-17 11:48 PM PDT -github-actions,2024-09-18T23:21:03Z,- github-actions commented on pull request: [7493](https://github.com/hackforla/website/pull/7493#issuecomment-2359615134) at 2024-09-18 04:21 PM PDT -github-actions,2024-09-19T14:23:15Z,- github-actions commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2361139206) at 2024-09-19 07:23 AM PDT -github-actions,2024-09-19T21:31:34Z,- github-actions commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362237837) at 2024-09-19 02:31 PM PDT -github-actions,2024-09-20T01:28:04Z,- github-actions commented on pull request: [7499](https://github.com/hackforla/website/pull/7499#issuecomment-2362529357) at 2024-09-19 06:28 PM PDT -github-actions,2024-09-20T23:01:52Z,- github-actions commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2364732006) at 2024-09-20 04:01 PM PDT -github-actions,2024-09-21T02:51:54Z,- github-actions commented on pull request: [7503](https://github.com/hackforla/website/pull/7503#issuecomment-2364959329) at 2024-09-20 07:51 PM PDT -github-actions,2024-09-21T19:25:01Z,- github-actions commented on pull request: [7504](https://github.com/hackforla/website/pull/7504#issuecomment-2365295514) at 2024-09-21 12:25 PM PDT -github-actions,2024-09-23T05:41:28Z,- github-actions commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2367276702) at 2024-09-22 10:41 PM PDT -github-actions,2024-09-24T00:28:22Z,- github-actions commented on pull request: [7511](https://github.com/hackforla/website/pull/7511#issuecomment-2369849935) at 2024-09-23 05:28 PM PDT -github-actions,2024-09-24T02:05:16Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369963202) at 2024-09-23 07:05 PM PDT -github-actions,2024-09-24T02:08:25Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369966225) at 2024-09-23 07:08 PM PDT -github-actions,2024-09-24T02:12:24Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369970055) at 2024-09-23 07:12 PM PDT -github-actions,2024-09-24T02:14:27Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369971813) at 2024-09-23 07:14 PM PDT -github-actions,2024-09-24T02:14:31Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369971886) at 2024-09-23 07:14 PM PDT -github-actions,2024-09-24T02:14:48Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369972130) at 2024-09-23 07:14 PM PDT -github-actions,2024-09-24T02:20:35Z,- github-actions commented on pull request: [7513](https://github.com/hackforla/website/pull/7513#issuecomment-2369977227) at 2024-09-23 07:20 PM PDT -github-actions,2024-09-24T02:51:12Z,- github-actions commented on pull request: [7514](https://github.com/hackforla/website/pull/7514#issuecomment-2370006333) at 2024-09-23 07:51 PM PDT -github-actions,2024-09-25T06:20:42Z,- github-actions commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2373129672) at 2024-09-24 11:20 PM PDT -github-actions,2024-09-25T18:03:30Z,- github-actions commented on pull request: [7523](https://github.com/hackforla/website/pull/7523#issuecomment-2374813499) at 2024-09-25 11:03 AM PDT -github-actions,2024-09-27T03:43:38Z,- github-actions commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2378343680) at 2024-09-26 08:43 PM PDT -github-actions,2024-09-27T17:43:30Z,- github-actions commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2379770548) at 2024-09-27 10:43 AM PDT -github-actions,2024-09-29T03:59:08Z,- github-actions commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2381096324) at 2024-09-28 08:59 PM PDT -github-actions,2024-09-29T22:46:20Z,- github-actions commented on pull request: [7543](https://github.com/hackforla/website/pull/7543#issuecomment-2381639196) at 2024-09-29 03:46 PM PDT -github-actions,2024-09-30T19:55:15Z,- github-actions commented on pull request: [7546](https://github.com/hackforla/website/pull/7546#issuecomment-2384035160) at 2024-09-30 12:55 PM PDT -github-actions,2024-10-01T15:20:57Z,- github-actions commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2386300713) at 2024-10-01 08:20 AM PDT -github-actions,2024-10-01T22:24:35Z,- github-actions commented on pull request: [7557](https://github.com/hackforla/website/pull/7557#issuecomment-2387191420) at 2024-10-01 03:24 PM PDT -github-actions,2024-10-02T21:30:04Z,- github-actions commented on pull request: [7558](https://github.com/hackforla/website/pull/7558#issuecomment-2389728839) at 2024-10-02 02:30 PM PDT -github-actions,2024-10-03T16:20:00Z,- github-actions commented on pull request: [7559](https://github.com/hackforla/website/pull/7559#issuecomment-2391823853) at 2024-10-03 09:20 AM PDT -github-actions,2024-10-04T03:20:34Z,- github-actions commented on pull request: [7560](https://github.com/hackforla/website/pull/7560#issuecomment-2392717338) at 2024-10-03 08:20 PM PDT -github-actions,2024-10-05T06:38:06Z,- github-actions commented on pull request: [7564](https://github.com/hackforla/website/pull/7564#issuecomment-2394951393) at 2024-10-04 11:38 PM PDT -github-actions,2024-10-07T21:02:21Z,- github-actions commented on pull request: [7568](https://github.com/hackforla/website/pull/7568#issuecomment-2397889325) at 2024-10-07 02:02 PM PDT -github-actions,2024-10-08T00:23:22Z,- github-actions commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2398273443) at 2024-10-07 05:23 PM PDT -github-actions,2024-10-10T01:06:34Z,- github-actions commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2403695725) at 2024-10-09 06:06 PM PDT -github-actions,2024-10-13T21:40:51Z,- github-actions commented on pull request: [7588](https://github.com/hackforla/website/pull/7588#issuecomment-2409141192) at 2024-10-13 02:40 PM PDT -github-actions,2024-10-14T00:33:56Z,- github-actions commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2409488153) at 2024-10-13 05:33 PM PDT -github-actions,2024-10-14T20:46:43Z,- github-actions commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2412294325) at 2024-10-14 01:46 PM PDT -github-actions,2024-10-15T15:43:03Z,- github-actions commented on pull request: [7595](https://github.com/hackforla/website/pull/7595#issuecomment-2414384648) at 2024-10-15 08:43 AM PDT -github-actions,2024-10-15T20:24:25Z,- github-actions commented on pull request: [7597](https://github.com/hackforla/website/pull/7597#issuecomment-2414937327) at 2024-10-15 01:24 PM PDT -github-actions,2024-10-19T22:23:52Z,- github-actions commented on pull request: [7599](https://github.com/hackforla/website/pull/7599#issuecomment-2424246802) at 2024-10-19 03:23 PM PDT -github-actions,2024-10-21T06:53:19Z,- github-actions commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2425757625) at 2024-10-20 11:53 PM PDT -github-actions,2024-10-21T17:55:54Z,- github-actions commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2427367934) at 2024-10-21 10:55 AM PDT -github-actions,2024-10-23T18:25:52Z,- github-actions commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2433102292) at 2024-10-23 11:25 AM PDT -github-actions,2024-10-23T22:59:11Z,- github-actions commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2433694483) at 2024-10-23 03:59 PM PDT -github-actions,2024-10-25T03:49:17Z,- github-actions commented on pull request: [7634](https://github.com/hackforla/website/pull/7634#issuecomment-2436764039) at 2024-10-24 08:49 PM PDT -github-actions,2024-10-25T23:40:51Z,- github-actions commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2439045860) at 2024-10-25 04:40 PM PDT -github-actions,2024-10-26T18:03:51Z,- github-actions commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2439677332) at 2024-10-26 11:03 AM PDT -github-actions,2024-10-26T18:29:21Z,- github-actions commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2439686055) at 2024-10-26 11:29 AM PDT -github-actions,2024-10-28T23:03:12Z,- github-actions commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2442834046) at 2024-10-28 04:03 PM PDT -github-actions,2024-10-29T00:47:59Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442942743) at 2024-10-28 05:47 PM PDT -github-actions,2024-10-29T00:48:14Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442942940) at 2024-10-28 05:48 PM PDT -github-actions,2024-10-29T00:48:30Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442943126) at 2024-10-28 05:48 PM PDT -github-actions,2024-10-29T00:49:05Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442943639) at 2024-10-28 05:49 PM PDT -github-actions,2024-10-29T01:03:36Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442956885) at 2024-10-28 06:03 PM PDT -github-actions,2024-10-29T01:03:56Z,- github-actions commented on pull request: [7659](https://github.com/hackforla/website/pull/7659#issuecomment-2442957210) at 2024-10-28 06:03 PM PDT -github-actions,2024-10-29T16:47:24Z,- github-actions commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2444822974) at 2024-10-29 09:47 AM PDT -github-actions,2024-10-29T22:38:38Z,- github-actions commented on pull request: [7665](https://github.com/hackforla/website/pull/7665#issuecomment-2445454313) at 2024-10-29 03:38 PM PDT -github-actions,2024-11-01T02:53:35Z,- github-actions commented on pull request: [7683](https://github.com/hackforla/website/pull/7683#issuecomment-2451197991) at 2024-10-31 07:53 PM PDT -github-actions,2024-11-02T18:30:35Z,- github-actions commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453086693) at 2024-11-02 10:30 AM PST -github-actions,2024-11-04T22:10:40Z,- github-actions commented on pull request: [7688](https://github.com/hackforla/website/pull/7688#issuecomment-2455804138) at 2024-11-04 02:10 PM PST -github-actions,2024-11-05T01:50:08Z,- github-actions commented on pull request: [7691](https://github.com/hackforla/website/pull/7691#issuecomment-2456056812) at 2024-11-04 05:50 PM PST -github-actions,2024-11-05T05:23:57Z,- github-actions commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2456262140) at 2024-11-04 09:23 PM PST -github-actions,2024-11-06T20:26:00Z,- github-actions commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460710591) at 2024-11-06 12:26 PM PST -github-actions,2024-11-07T00:29:11Z,- github-actions commented on pull request: [7708](https://github.com/hackforla/website/pull/7708#issuecomment-2461077777) at 2024-11-06 04:29 PM PST -github-actions,2024-11-08T15:22:26Z,- github-actions commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2465026298) at 2024-11-08 07:22 AM PST -github-actions,2024-11-09T21:35:11Z,- github-actions commented on pull request: [7712](https://github.com/hackforla/website/pull/7712#issuecomment-2466466787) at 2024-11-09 01:35 PM PST -github-actions,2024-11-09T23:57:54Z,- github-actions commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2466514708) at 2024-11-09 03:57 PM PST -github-actions,2024-11-10T00:04:35Z,- github-actions commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2466516318) at 2024-11-09 04:04 PM PST -github-actions,2024-11-10T20:56:40Z,- github-actions commented on pull request: [7715](https://github.com/hackforla/website/pull/7715#issuecomment-2466914998) at 2024-11-10 12:56 PM PST -github-actions,2024-11-10T20:57:07Z,- github-actions commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2466915118) at 2024-11-10 12:57 PM PST -github-actions,2024-11-12T02:16:24Z,- github-actions commented on pull request: [7717](https://github.com/hackforla/website/pull/7717#issuecomment-2469453577) at 2024-11-11 06:16 PM PST -github-actions,2024-11-13T20:42:29Z,- github-actions commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2474743794) at 2024-11-13 12:42 PM PST -github-actions,2024-11-14T01:38:51Z,- github-actions commented on pull request: [7719](https://github.com/hackforla/website/pull/7719#issuecomment-2475173207) at 2024-11-13 05:38 PM PST -github-actions,2024-11-15T00:13:41Z,- github-actions commented on pull request: [7720](https://github.com/hackforla/website/pull/7720#issuecomment-2477672637) at 2024-11-14 04:13 PM PST -github-actions,2024-11-15T02:50:44Z,- github-actions commented on pull request: [7721](https://github.com/hackforla/website/pull/7721#issuecomment-2477848882) at 2024-11-14 06:50 PM PST -github-actions,2024-11-17T00:09:18Z,- github-actions commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2480859462) at 2024-11-16 04:09 PM PST -github-actions,2024-11-19T01:15:10Z,- github-actions commented on pull request: [7728](https://github.com/hackforla/website/pull/7728#issuecomment-2484504160) at 2024-11-18 05:15 PM PST -github-actions,2024-11-19T02:37:18Z,- github-actions commented on pull request: [7729](https://github.com/hackforla/website/pull/7729#issuecomment-2484584464) at 2024-11-18 06:37 PM PST -github-actions,2024-11-19T22:36:57Z,- github-actions commented on pull request: [7733](https://github.com/hackforla/website/pull/7733#issuecomment-2486892694) at 2024-11-19 02:36 PM PST -github-actions,2024-11-20T02:12:34Z,- github-actions commented on pull request: [7738](https://github.com/hackforla/website/pull/7738#issuecomment-2487176771) at 2024-11-19 06:12 PM PST -github-actions,2024-11-20T02:19:43Z,- github-actions commented on pull request: [7739](https://github.com/hackforla/website/pull/7739#issuecomment-2487187271) at 2024-11-19 06:19 PM PST -github-actions,2024-11-20T04:17:01Z,- github-actions commented on pull request: [7744](https://github.com/hackforla/website/pull/7744#issuecomment-2487377184) at 2024-11-19 08:17 PM PST -github-actions,2024-11-20T06:20:46Z,- github-actions commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2487595225) at 2024-11-19 10:20 PM PST -github-actions,2024-11-20T16:16:48Z,- github-actions commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2489015208) at 2024-11-20 08:16 AM PST -github-actions,2024-11-22T08:34:26Z,- github-actions commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2493178188) at 2024-11-22 12:34 AM PST -github-actions,2024-11-26T02:38:33Z,- github-actions commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2499527238) at 2024-11-25 06:38 PM PST -github-actions,2024-11-27T04:50:40Z,- github-actions commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2502767191) at 2024-11-26 08:50 PM PST -github-actions,2024-11-28T01:39:04Z,- github-actions commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2505100861) at 2024-11-27 05:39 PM PST -github-actions,2024-11-28T18:50:01Z,- github-actions commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2506647814) at 2024-11-28 10:50 AM PST -github-actions,2024-12-04T18:50:40Z,- github-actions commented on pull request: [7791](https://github.com/hackforla/website/pull/7791#issuecomment-2518271081) at 2024-12-04 10:50 AM PST -github-actions,2024-12-04T19:16:21Z,- github-actions commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2518352719) at 2024-12-04 11:16 AM PST -github-actions,2024-12-09T11:39:31Z,- github-actions commented on pull request: [7798](https://github.com/hackforla/website/pull/7798#issuecomment-2527681430) at 2024-12-09 03:39 AM PST -github-actions,2024-12-13T19:03:04Z,- github-actions commented on pull request: [7803](https://github.com/hackforla/website/pull/7803#issuecomment-2542073002) at 2024-12-13 11:03 AM PST -github-actions,2025-01-06T19:58:42Z,- github-actions commented on pull request: [7816](https://github.com/hackforla/website/pull/7816#issuecomment-2573819336) at 2025-01-06 11:58 AM PST -github-actions,2025-01-06T23:06:55Z,- github-actions commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2574083465) at 2025-01-06 03:06 PM PST -github-actions,2025-01-06T23:54:42Z,- github-actions commented on pull request: [7818](https://github.com/hackforla/website/pull/7818#issuecomment-2574132611) at 2025-01-06 03:54 PM PST -github-actions,2025-01-09T03:37:28Z,- github-actions commented on pull request: [7821](https://github.com/hackforla/website/pull/7821#issuecomment-2579117735) at 2025-01-08 07:37 PM PST -github-actions,2025-01-10T22:49:32Z,- github-actions commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2584641502) at 2025-01-10 02:49 PM PST -github-actions,2025-01-15T04:56:05Z,- github-actions commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2591651781) at 2025-01-14 08:56 PM PST -github-actions,2025-01-18T02:37:40Z,- github-actions commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2599482325) at 2025-01-17 06:37 PM PST -github-actions,2025-01-21T04:36:27Z,- github-actions commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2603638675) at 2025-01-20 08:36 PM PST -github-actions,2025-01-22T22:26:26Z,- github-actions commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2608396951) at 2025-01-22 02:26 PM PST -github-actions,2025-01-23T01:44:37Z,- github-actions commented on pull request: [7846](https://github.com/hackforla/website/pull/7846#issuecomment-2608666185) at 2025-01-22 05:44 PM PST -github-actions,2025-01-25T07:58:03Z,- github-actions commented on pull request: [7851](https://github.com/hackforla/website/pull/7851#issuecomment-2613832012) at 2025-01-24 11:58 PM PST -github-actions,2025-01-26T00:47:56Z,- github-actions commented on pull request: [7852](https://github.com/hackforla/website/pull/7852#issuecomment-2614154912) at 2025-01-25 04:47 PM PST -github-actions,2025-01-27T01:48:26Z,- github-actions commented on pull request: [7856](https://github.com/hackforla/website/pull/7856#issuecomment-2614711863) at 2025-01-26 05:48 PM PST -github-actions,2025-01-28T02:27:16Z,- github-actions commented on pull request: [7861](https://github.com/hackforla/website/pull/7861#issuecomment-2617634269) at 2025-01-27 06:27 PM PST -github-actions,2025-01-29T06:03:04Z,- github-actions commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2620790198) at 2025-01-28 10:03 PM PST -github-actions,2025-02-01T19:21:14Z,- github-actions commented on pull request: [7871](https://github.com/hackforla/website/pull/7871#issuecomment-2629078689) at 2025-02-01 11:21 AM PST -github-actions,2025-02-02T03:43:43Z,- github-actions commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2629227852) at 2025-02-01 07:43 PM PST -github-actions,2025-02-03T05:49:10Z,- github-actions commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2630033201) at 2025-02-02 09:49 PM PST -github-actions,2025-02-03T23:58:51Z,- github-actions commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2632445467) at 2025-02-03 03:58 PM PST -github-actions,2025-02-05T05:40:15Z,- github-actions commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2635750026) at 2025-02-04 09:40 PM PST -github-actions,2025-02-06T17:27:00Z,- github-actions commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2640536233) at 2025-02-06 09:27 AM PST -github-actions,2025-02-06T19:34:01Z,- github-actions commented on pull request: [7898](https://github.com/hackforla/website/pull/7898#issuecomment-2640816979) at 2025-02-06 11:34 AM PST -github-actions,2025-02-06T20:08:52Z,- github-actions commented on pull request: [7899](https://github.com/hackforla/website/pull/7899#issuecomment-2640891304) at 2025-02-06 12:08 PM PST -github-actions,2025-02-06T22:05:59Z,- github-actions commented on pull request: [7900](https://github.com/hackforla/website/pull/7900#issuecomment-2641164657) at 2025-02-06 02:05 PM PST -github-actions,2025-02-07T22:37:18Z,- github-actions commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2644254845) at 2025-02-07 02:37 PM PST -github-actions,2025-02-08T10:18:16Z,- github-actions commented on pull request: [7902](https://github.com/hackforla/website/pull/7902#issuecomment-2644820554) at 2025-02-08 02:18 AM PST -github-actions,2025-02-10T06:25:58Z,- github-actions commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2647041483) at 2025-02-09 10:25 PM PST -github-actions,2025-02-13T22:30:43Z,- github-actions commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2657845982) at 2025-02-13 02:30 PM PST -github-actions,2025-02-14T03:38:25Z,- github-actions commented on pull request: [7908](https://github.com/hackforla/website/pull/7908#issuecomment-2658192694) at 2025-02-13 07:38 PM PST -github-actions,2025-02-14T18:57:36Z,- github-actions commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2660054708) at 2025-02-14 10:57 AM PST -github-actions,2025-02-16T10:17:30Z,- github-actions commented on pull request: [7912](https://github.com/hackforla/website/pull/7912#issuecomment-2661362406) at 2025-02-16 02:17 AM PST -github-actions,2025-02-17T17:24:46Z,- github-actions commented on pull request: [7913](https://github.com/hackforla/website/pull/7913#issuecomment-2663722550) at 2025-02-17 09:24 AM PST -github-actions,2025-02-17T17:52:32Z,- github-actions commented on pull request: [7914](https://github.com/hackforla/website/pull/7914#issuecomment-2663789579) at 2025-02-17 09:52 AM PST -github-actions,2025-02-17T17:52:34Z,- github-actions commented on pull request: [7915](https://github.com/hackforla/website/pull/7915#issuecomment-2663789628) at 2025-02-17 09:52 AM PST -github-actions,2025-02-17T23:29:20Z,- github-actions commented on pull request: [7916](https://github.com/hackforla/website/pull/7916#issuecomment-2664225224) at 2025-02-17 03:29 PM PST -github-actions,2025-02-18T00:02:49Z,- github-actions commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2664253701) at 2025-02-17 04:02 PM PST -github-actions,2025-02-18T00:02:52Z,- github-actions commented on pull request: [7917](https://github.com/hackforla/website/pull/7917#issuecomment-2664253745) at 2025-02-17 04:02 PM PST -github-actions,2025-02-18T19:23:13Z,- github-actions commented on pull request: [7920](https://github.com/hackforla/website/pull/7920#issuecomment-2666732904) at 2025-02-18 11:23 AM PST -github-actions,2025-02-19T05:25:19Z,- github-actions commented on pull request: [7928](https://github.com/hackforla/website/pull/7928#issuecomment-2667541014) at 2025-02-18 09:25 PM PST -github-actions,2025-02-21T02:01:00Z,- github-actions commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2673166553) at 2025-02-20 06:01 PM PST -github-actions,2025-02-21T02:03:15Z,- github-actions commented on pull request: [7932](https://github.com/hackforla/website/pull/7932#issuecomment-2673170209) at 2025-02-20 06:03 PM PST -github-actions,2025-02-21T21:37:40Z,- github-actions commented on pull request: [7933](https://github.com/hackforla/website/pull/7933#issuecomment-2675597719) at 2025-02-21 01:37 PM PST -github-actions,2025-02-23T04:59:33Z,- github-actions commented on pull request: [7935](https://github.com/hackforla/website/pull/7935#issuecomment-2676573403) at 2025-02-22 08:59 PM PST -github-actions,2025-02-23T05:21:43Z,- github-actions commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2676628627) at 2025-02-22 09:21 PM PST -github-actions,2025-02-25T06:03:53Z,- github-actions commented on pull request: [7945](https://github.com/hackforla/website/pull/7945#issuecomment-2680704211) at 2025-02-24 10:03 PM PST -github-actions,2025-02-25T18:45:06Z,- github-actions commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2682966267) at 2025-02-25 10:45 AM PST -github-actions,2025-02-26T04:03:45Z,- github-actions commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2683838770) at 2025-02-25 08:03 PM PST -github-actions,2025-02-26T21:19:40Z,- github-actions commented on pull request: [7950](https://github.com/hackforla/website/pull/7950#issuecomment-2686222189) at 2025-02-26 01:19 PM PST -github-actions,2025-02-27T07:59:48Z,- github-actions commented on pull request: [7951](https://github.com/hackforla/website/pull/7951#issuecomment-2687178277) at 2025-02-26 11:59 PM PST -github-actions,2025-03-02T04:27:29Z,- github-actions commented on pull request: [7961](https://github.com/hackforla/website/pull/7961#issuecomment-2692551406) at 2025-03-01 08:27 PM PST -github-actions,2025-03-03T05:32:46Z,- github-actions commented on pull request: [7962](https://github.com/hackforla/website/pull/7962#issuecomment-2693321214) at 2025-03-02 09:32 PM PST -github-actions,2025-03-04T01:35:47Z,- github-actions commented on pull request: [7963](https://github.com/hackforla/website/pull/7963#issuecomment-2695961515) at 2025-03-03 05:35 PM PST -github-actions,2025-03-04T01:44:09Z,- github-actions commented on pull request: [7964](https://github.com/hackforla/website/pull/7964#issuecomment-2695970549) at 2025-03-03 05:44 PM PST -github-actions,2025-03-04T02:11:27Z,- github-actions commented on pull request: [7965](https://github.com/hackforla/website/pull/7965#issuecomment-2696001335) at 2025-03-03 06:11 PM PST -github-actions,2025-03-04T22:53:16Z,- github-actions commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2699161182) at 2025-03-04 02:53 PM PST -github-actions,2025-03-07T04:41:58Z,- github-actions commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2705515370) at 2025-03-06 08:41 PM PST -github-actions,2025-03-07T05:11:32Z,- github-actions commented on pull request: [7982](https://github.com/hackforla/website/pull/7982#issuecomment-2705545501) at 2025-03-06 09:11 PM PST -github-actions,2025-03-07T16:23:01Z,- github-actions commented on pull request: [7983](https://github.com/hackforla/website/pull/7983#issuecomment-2706879372) at 2025-03-07 08:23 AM PST -github-actions,2025-03-07T16:49:51Z,- github-actions commented on pull request: [7984](https://github.com/hackforla/website/pull/7984#issuecomment-2706936301) at 2025-03-07 08:49 AM PST -github-actions,2025-03-09T17:51:34Z,- github-actions commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2708986282) at 2025-03-09 10:51 AM PDT -github-actions,2025-03-10T17:55:37Z,- github-actions commented on pull request: [7986](https://github.com/hackforla/website/pull/7986#issuecomment-2711395614) at 2025-03-10 10:55 AM PDT -github-actions,2025-03-10T18:49:15Z,- github-actions commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2711522263) at 2025-03-10 11:49 AM PDT -github-actions,2025-03-14T01:42:04Z,- github-actions commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2723113418) at 2025-03-13 06:42 PM PDT -github-actions,2025-03-17T15:53:10Z,- github-actions commented on pull request: [7992](https://github.com/hackforla/website/pull/7992#issuecomment-2730034224) at 2025-03-17 08:53 AM PDT -github-actions,2025-03-24T15:26:36Z,- github-actions commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2748524670) at 2025-03-24 08:26 AM PDT -github-actions,2025-03-29T12:59:39Z,- github-actions commented on pull request: [8020](https://github.com/hackforla/website/pull/8020#issuecomment-2763354255) at 2025-03-29 05:59 AM PDT -github-actions,2025-03-29T21:53:12Z,- github-actions commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2764256558) at 2025-03-29 02:53 PM PDT -github-actions,2025-03-29T23:27:53Z,- github-actions commented on pull request: [8022](https://github.com/hackforla/website/pull/8022#issuecomment-2764288243) at 2025-03-29 04:27 PM PDT -github-actions,2025-04-01T00:22:37Z,- github-actions commented on pull request: [8026](https://github.com/hackforla/website/pull/8026#issuecomment-2767705235) at 2025-03-31 05:22 PM PDT -github-actions,2025-04-01T00:22:52Z,- github-actions commented on pull request: [8026](https://github.com/hackforla/website/pull/8026#issuecomment-2767705524) at 2025-03-31 05:22 PM PDT -github-actions,2025-04-02T19:01:01Z,- github-actions commented on pull request: [8037](https://github.com/hackforla/website/pull/8037#issuecomment-2773447201) at 2025-04-02 12:01 PM PDT -github-actions,2025-04-03T03:02:33Z,- github-actions commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2774312485) at 2025-04-02 08:02 PM PDT -github-actions,2025-04-03T03:30:43Z,- github-actions commented on pull request: [8039](https://github.com/hackforla/website/pull/8039#issuecomment-2774380154) at 2025-04-02 08:30 PM PDT -github-actions,2025-04-03T14:46:52Z,- github-actions commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2776041070) at 2025-04-03 07:46 AM PDT -github-actions,2025-04-04T02:08:32Z,- github-actions commented on pull request: [8043](https://github.com/hackforla/website/pull/8043#issuecomment-2777379528) at 2025-04-03 07:08 PM PDT -github-actions,2025-04-05T09:01:26Z,- github-actions commented on pull request: [8045](https://github.com/hackforla/website/pull/8045#issuecomment-2780606936) at 2025-04-05 02:01 AM PDT -github-actions,2025-04-05T20:40:16Z,- github-actions commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2781086558) at 2025-04-05 01:40 PM PDT -github-actions,2025-04-06T02:55:06Z,- github-actions commented on pull request: [8047](https://github.com/hackforla/website/pull/8047#issuecomment-2781189933) at 2025-04-05 07:55 PM PDT -github-actions,2025-04-06T19:01:38Z,- github-actions commented on pull request: [8049](https://github.com/hackforla/website/pull/8049#issuecomment-2781569452) at 2025-04-06 12:01 PM PDT -github-actions,2025-04-07T13:08:58Z,- github-actions commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2783284401) at 2025-04-07 06:08 AM PDT -github-actions,2025-04-07T13:08:58Z,- github-actions commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2783284401) at 2025-04-07 06:08 AM PDT -github-actions,2025-04-09T03:14:18Z,- github-actions commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2788174868) at 2025-04-08 08:14 PM PDT -github-actions,2025-04-09T03:14:18Z,- github-actions commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2788174868) at 2025-04-08 08:14 PM PDT -github-actions,2025-04-11T02:37:16Z,- github-actions commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2795697147) at 2025-04-10 07:37 PM PDT -github-actions,2025-04-12T03:06:35Z,- github-actions commented on pull request: [8058](https://github.com/hackforla/website/pull/8058#issuecomment-2798412928) at 2025-04-11 08:06 PM PDT -github-actions,2025-04-12T06:43:48Z,- github-actions commented on pull request: [8059](https://github.com/hackforla/website/pull/8059#issuecomment-2798678614) at 2025-04-11 11:43 PM PDT -github-actions,2025-04-12T20:55:46Z,- github-actions commented on pull request: [8060](https://github.com/hackforla/website/pull/8060#issuecomment-2799035964) at 2025-04-12 01:55 PM PDT -github-actions,2025-04-12T20:58:08Z,- github-actions commented on pull request: [8061](https://github.com/hackforla/website/pull/8061#issuecomment-2799036590) at 2025-04-12 01:58 PM PDT -github-actions,2025-04-13T03:31:45Z,- github-actions commented on pull request: [8062](https://github.com/hackforla/website/pull/8062#issuecomment-2799573620) at 2025-04-12 08:31 PM PDT -github-actions,2025-04-17T16:08:43Z,- github-actions commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2813449973) at 2025-04-17 09:08 AM PDT -github-actions,2025-04-17T23:56:44Z,- github-actions commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2814220516) at 2025-04-17 04:56 PM PDT -github-actions,2025-04-21T19:53:57Z,- github-actions commented on pull request: [8072](https://github.com/hackforla/website/pull/8072#issuecomment-2819373473) at 2025-04-21 12:53 PM PDT -github-actions,2025-04-21T21:47:31Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819569659) at 2025-04-21 02:47 PM PDT -github-actions,2025-04-21T21:47:44Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819569942) at 2025-04-21 02:47 PM PDT -github-actions,2025-04-21T21:59:59Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819586239) at 2025-04-21 02:59 PM PDT -github-actions,2025-04-21T22:13:31Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819603838) at 2025-04-21 03:13 PM PDT -github-actions,2025-04-21T22:15:48Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819607063) at 2025-04-21 03:15 PM PDT -github-actions,2025-04-21T22:21:55Z,- github-actions commented on pull request: [8073](https://github.com/hackforla/website/pull/8073#issuecomment-2819614651) at 2025-04-21 03:21 PM PDT -github-actions,2025-04-21T23:43:52Z,- github-actions commented on pull request: [8076](https://github.com/hackforla/website/pull/8076#issuecomment-2819718703) at 2025-04-21 04:43 PM PDT -github-actions,2025-04-22T01:45:24Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819847383) at 2025-04-21 06:45 PM PDT -github-actions,2025-04-22T01:45:35Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819847585) at 2025-04-21 06:45 PM PDT -github-actions,2025-04-22T01:51:40Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819853475) at 2025-04-21 06:51 PM PDT -github-actions,2025-04-22T02:00:31Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819864459) at 2025-04-21 07:00 PM PDT -github-actions,2025-04-22T02:15:38Z,- github-actions commented on pull request: [8077](https://github.com/hackforla/website/pull/8077#issuecomment-2819884860) at 2025-04-21 07:15 PM PDT -github-actions,2025-04-22T21:16:21Z,- github-actions commented on pull request: [8082](https://github.com/hackforla/website/pull/8082#issuecomment-2822502713) at 2025-04-22 02:16 PM PDT -github-actions,2025-04-23T05:29:46Z,- github-actions commented on pull request: [8085](https://github.com/hackforla/website/pull/8085#issuecomment-2823106871) at 2025-04-22 10:29 PM PDT -github-actions,2025-04-25T04:37:37Z,- github-actions commented on pull request: [8088](https://github.com/hackforla/website/pull/8088#issuecomment-2829353438) at 2025-04-24 09:37 PM PDT -github-actions,2025-04-25T23:15:23Z,- github-actions commented on pull request: [8089](https://github.com/hackforla/website/pull/8089#issuecomment-2831588319) at 2025-04-25 04:15 PM PDT -github-actions,2025-04-26T20:46:01Z,- github-actions commented on pull request: [8090](https://github.com/hackforla/website/pull/8090#issuecomment-2832606328) at 2025-04-26 01:46 PM PDT -github-actions,2025-04-26T23:13:35Z,- github-actions commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2832726457) at 2025-04-26 04:13 PM PDT -github-actions,2025-04-28T03:37:52Z,- github-actions commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2833900811) at 2025-04-27 08:37 PM PDT -github-actions,2025-04-29T09:04:47Z,- github-actions commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2838020677) at 2025-04-29 02:04 AM PDT -github-actions,2025-04-30T05:24:53Z,- github-actions commented on pull request: [8101](https://github.com/hackforla/website/pull/8101#issuecomment-2840843374) at 2025-04-29 10:24 PM PDT -github-actions,2025-05-01T03:01:37Z,- github-actions commented on pull request: [8103](https://github.com/hackforla/website/pull/8103#issuecomment-2843976422) at 2025-04-30 08:01 PM PDT -github-actions,2025-05-01T05:14:37Z,- github-actions commented on pull request: [8104](https://github.com/hackforla/website/pull/8104#issuecomment-2844123288) at 2025-04-30 10:14 PM PDT -github-actions,2025-05-02T01:09:01Z,- github-actions commented on pull request: [8106](https://github.com/hackforla/website/pull/8106#issuecomment-2846092592) at 2025-05-01 06:09 PM PDT -github-actions,2025-05-02T02:10:35Z,- github-actions commented on pull request: [8107](https://github.com/hackforla/website/pull/8107#issuecomment-2846144466) at 2025-05-01 07:10 PM PDT -github-actions,2025-05-03T01:10:14Z,- github-actions commented on pull request: [8114](https://github.com/hackforla/website/pull/8114#issuecomment-2848338206) at 2025-05-02 06:10 PM PDT -github-actions,2025-05-04T07:56:55Z,- github-actions commented on pull request: [8115](https://github.com/hackforla/website/pull/8115#issuecomment-2849067443) at 2025-05-04 12:56 AM PDT -github-actions,2025-05-06T03:52:02Z,- github-actions commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2853199997) at 2025-05-05 08:52 PM PDT -github-actions,2025-05-06T22:59:31Z,- github-actions commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2856403711) at 2025-05-06 03:59 PM PDT -github-actions,2025-05-11T19:57:10Z,- github-actions commented on pull request: [8121](https://github.com/hackforla/website/pull/8121#issuecomment-2870071601) at 2025-05-11 12:57 PM PDT -github-actions,2025-05-12T22:10:16Z,- github-actions commented on pull request: [8124](https://github.com/hackforla/website/pull/8124#issuecomment-2874315246) at 2025-05-12 03:10 PM PDT -github-actions,2025-05-13T21:58:05Z,- github-actions commented on pull request: [8126](https://github.com/hackforla/website/pull/8126#issuecomment-2878046799) at 2025-05-13 02:58 PM PDT -github-actions,2025-05-13T23:40:31Z,- github-actions commented on pull request: [8127](https://github.com/hackforla/website/pull/8127#issuecomment-2878192162) at 2025-05-13 04:40 PM PDT -github-actions,2025-05-14T21:49:15Z,- github-actions commented on pull request: [8140](https://github.com/hackforla/website/pull/8140#issuecomment-2881666651) at 2025-05-14 02:49 PM PDT -github-actions,2025-05-15T04:06:15Z,- github-actions commented on pull request: [8141](https://github.com/hackforla/website/pull/8141#issuecomment-2882176995) at 2025-05-14 09:06 PM PDT -github-actions,2025-05-15T04:28:11Z,- github-actions commented on pull request: [8142](https://github.com/hackforla/website/pull/8142#issuecomment-2882204127) at 2025-05-14 09:28 PM PDT -github-actions,2025-05-15T05:42:16Z,- github-actions commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2882568027) at 2025-05-14 10:42 PM PDT -github-actions,2025-05-15T16:31:57Z,- github-actions commented on pull request: [8144](https://github.com/hackforla/website/pull/8144#issuecomment-2884427438) at 2025-05-15 09:31 AM PDT -github-actions,2025-05-16T00:56:44Z,- github-actions commented on pull request: [8146](https://github.com/hackforla/website/pull/8146#issuecomment-2885368988) at 2025-05-15 05:56 PM PDT -github-actions,2025-05-20T17:53:42Z,- github-actions commented on pull request: [8148](https://github.com/hackforla/website/pull/8148#issuecomment-2895342059) at 2025-05-20 10:53 AM PDT -github-actions,2025-05-20T22:55:00Z,- github-actions commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2896008924) at 2025-05-20 03:55 PM PDT -github-actions,2025-05-21T03:24:38Z,- github-actions commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2896448831) at 2025-05-20 08:24 PM PDT -github-actions,2025-05-22T18:38:52Z,- github-actions commented on pull request: [8153](https://github.com/hackforla/website/pull/8153#issuecomment-2902215281) at 2025-05-22 11:38 AM PDT -github-actions,2025-05-23T01:15:04Z,- github-actions commented on pull request: [8154](https://github.com/hackforla/website/pull/8154#issuecomment-2902992930) at 2025-05-22 06:15 PM PDT -github-actions,2025-05-23T05:45:49Z,- github-actions commented on pull request: [8155](https://github.com/hackforla/website/pull/8155#issuecomment-2903332443) at 2025-05-22 10:45 PM PDT -github-actions,2025-05-23T22:12:44Z,- github-actions commented on pull request: [8156](https://github.com/hackforla/website/pull/8156#issuecomment-2905925298) at 2025-05-23 03:12 PM PDT -github-actions,2025-05-24T21:47:43Z,- github-actions commented on pull request: [8158](https://github.com/hackforla/website/pull/8158#issuecomment-2907119231) at 2025-05-24 02:47 PM PDT -github-actions,2025-05-25T17:07:14Z,- github-actions commented on pull request: [8159](https://github.com/hackforla/website/pull/8159#issuecomment-2907949179) at 2025-05-25 10:07 AM PDT -github-actions,2025-05-26T01:38:26Z,- github-actions commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2908277063) at 2025-05-25 06:38 PM PDT -github-actions,2025-05-26T23:13:22Z,- github-actions commented on pull request: [8161](https://github.com/hackforla/website/pull/8161#issuecomment-2910747578) at 2025-05-26 04:13 PM PDT -github-actions,2025-05-27T21:48:51Z,- github-actions commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2914203244) at 2025-05-27 02:48 PM PDT -github-actions,2025-06-04T01:36:26Z,- github-actions commented on pull request: [8169](https://github.com/hackforla/website/pull/8169#issuecomment-2937990216) at 2025-06-03 06:36 PM PDT -github-actions,2025-06-05T20:26:55Z,- github-actions commented on pull request: [8171](https://github.com/hackforla/website/pull/8171#issuecomment-2946089930) at 2025-06-05 01:26 PM PDT -github-actions,2025-06-05T23:28:07Z,- github-actions commented on pull request: [8172](https://github.com/hackforla/website/pull/8172#issuecomment-2946901642) at 2025-06-05 04:28 PM PDT -github-actions,2025-06-08T07:21:12Z,- github-actions commented on pull request: [8173](https://github.com/hackforla/website/pull/8173#issuecomment-2953665687) at 2025-06-08 12:21 AM PDT -github-actions,2025-06-10T04:07:13Z,- github-actions commented on pull request: [8175](https://github.com/hackforla/website/pull/8175#issuecomment-2957616856) at 2025-06-09 09:07 PM PDT -github-actions,2025-06-10T18:51:06Z,- github-actions commented on pull request: [8177](https://github.com/hackforla/website/pull/8177#issuecomment-2960285780) at 2025-06-10 11:51 AM PDT -github-actions,2025-06-10T23:31:45Z,- github-actions commented on pull request: [8179](https://github.com/hackforla/website/pull/8179#issuecomment-2960809150) at 2025-06-10 04:31 PM PDT -github-actions,2025-06-11T01:25:23Z,- github-actions commented on pull request: [8180](https://github.com/hackforla/website/pull/8180#issuecomment-2960948258) at 2025-06-10 06:25 PM PDT -github-actions,2025-06-11T19:50:30Z,- github-actions commented on pull request: [8181](https://github.com/hackforla/website/pull/8181#issuecomment-2963973633) at 2025-06-11 12:50 PM PDT -github-actions,2025-06-11T23:22:28Z,- github-actions commented on pull request: [8182](https://github.com/hackforla/website/pull/8182#issuecomment-2964529389) at 2025-06-11 04:22 PM PDT -github-actions,2025-06-18T21:22:25Z,- github-actions commented on pull request: [8193](https://github.com/hackforla/website/pull/8193#issuecomment-2985731200) at 2025-06-18 02:22 PM PDT -github-actions,2025-06-18T21:38:22Z,- github-actions commented on pull request: [8194](https://github.com/hackforla/website/pull/8194#issuecomment-2985767614) at 2025-06-18 02:38 PM PDT -github-actions,2025-06-18T21:42:18Z,- github-actions commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-2985775020) at 2025-06-18 02:42 PM PDT -github-actions,2025-06-18T22:43:39Z,- github-actions commented on pull request: [8196](https://github.com/hackforla/website/pull/8196#issuecomment-2985928676) at 2025-06-18 03:43 PM PDT -github-actions,2025-06-19T03:18:04Z,- github-actions commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2986459412) at 2025-06-18 08:18 PM PDT -github-actions,2025-06-19T17:26:25Z,- github-actions commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2988765341) at 2025-06-19 10:26 AM PDT -github-actions,2025-06-21T18:21:51Z,- github-actions commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2993709189) at 2025-06-21 11:21 AM PDT -github-actions,2025-06-24T08:14:02Z,- github-actions commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-2999286696) at 2025-06-24 01:14 AM PDT -github-actions,2025-06-24T22:56:26Z,- github-actions commented on pull request: [8204](https://github.com/hackforla/website/pull/8204#issuecomment-3002096709) at 2025-06-24 03:56 PM PDT -github-actions,2025-06-25T08:15:38Z,- github-actions commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3003814913) at 2025-06-25 01:15 AM PDT -github-actions,2025-06-27T00:05:43Z,- github-actions commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3010759699) at 2025-06-26 05:05 PM PDT -github-actions,2025-06-27T05:38:49Z,- github-actions commented on pull request: [8232](https://github.com/hackforla/website/pull/8232#issuecomment-3011739478) at 2025-06-26 10:38 PM PDT -github-actions,2025-06-28T20:32:36Z,- github-actions commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3016019392) at 2025-06-28 01:32 PM PDT -github-actions,2025-07-01T06:03:47Z,- github-actions commented on pull request: [8236](https://github.com/hackforla/website/pull/8236#issuecomment-3021950118) at 2025-06-30 11:03 PM PDT -github-actions,2025-07-02T02:57:48Z,- github-actions commented on pull request: [8240](https://github.com/hackforla/website/pull/8240#issuecomment-3026186161) at 2025-07-01 07:57 PM PDT -github-actions,2025-07-02T09:28:36Z,- github-actions commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3027137348) at 2025-07-02 02:28 AM PDT -github-actions,2025-07-04T18:25:27Z,- github-actions commented on pull request: [8243](https://github.com/hackforla/website/pull/8243#issuecomment-3037027067) at 2025-07-04 11:25 AM PDT -github-actions,2025-07-08T06:30:29Z,- github-actions commented on pull request: [8245](https://github.com/hackforla/website/pull/8245#issuecomment-3047542637) at 2025-07-07 11:30 PM PDT -github-actions,2025-07-10T05:55:35Z,- github-actions commented on pull request: [8246](https://github.com/hackforla/website/pull/8246#issuecomment-3055693518) at 2025-07-09 10:55 PM PDT -github-actions,2025-07-22T03:33:22Z,- github-actions commented on pull request: [8248](https://github.com/hackforla/website/pull/8248#issuecomment-3100685919) at 2025-07-21 08:33 PM PDT -github-actions,2025-07-22T22:50:54Z,- github-actions commented on pull request: [8250](https://github.com/hackforla/website/pull/8250#issuecomment-3105054147) at 2025-07-22 03:50 PM PDT -github-actions,2025-08-02T04:05:51Z,- github-actions commented on pull request: [8253](https://github.com/hackforla/website/pull/8253#issuecomment-3146193000) at 2025-08-01 09:05 PM PDT -github-advanced-security,2023-06-27T01:29:24Z,- github-advanced-security commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1608568372) at 2023-06-26 06:29 PM PDT -github-advanced-security,2023-07-20T14:41:22Z,- github-advanced-security submitted pull request review: [5024](https://github.com/hackforla/website/pull/5024#pullrequestreview-1539437635) at 2023-07-20 07:41 AM PDT -github-advanced-security,2023-08-07T07:56:00Z,- github-advanced-security submitted pull request review: [5156](https://github.com/hackforla/website/pull/5156#pullrequestreview-1564764085) at 2023-08-07 12:56 AM PDT -github-advanced-security,2023-08-07T22:10:25Z,- github-advanced-security submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1566210580) at 2023-08-07 03:10 PM PDT -github-advanced-security,2023-08-19T09:36:10Z,- github-advanced-security submitted pull request review: [5258](https://github.com/hackforla/website/pull/5258#pullrequestreview-1585620727) at 2023-08-19 02:36 AM PDT -github-advanced-security,2023-08-21T19:32:48Z,- github-advanced-security submitted pull request review: [5204](https://github.com/hackforla/website/pull/5204#pullrequestreview-1587726126) at 2023-08-21 12:32 PM PDT -github-advanced-security,2023-08-21T19:52:34Z,- github-advanced-security submitted pull request review: [5280](https://github.com/hackforla/website/pull/5280#pullrequestreview-1587764076) at 2023-08-21 12:52 PM PDT -github-advanced-security,2023-08-31T22:26:30Z,- github-advanced-security submitted pull request review: [5402](https://github.com/hackforla/website/pull/5402#pullrequestreview-1605855594) at 2023-08-31 03:26 PM PDT -github-advanced-security,2023-09-09T02:24:36Z,- github-advanced-security submitted pull request review: [5467](https://github.com/hackforla/website/pull/5467#pullrequestreview-1618547666) at 2023-09-08 07:24 PM PDT -github-advanced-security,2023-09-24T09:21:37Z,- github-advanced-security submitted pull request review: [5577](https://github.com/hackforla/website/pull/5577#pullrequestreview-1641026973) at 2023-09-24 02:21 AM PDT -github-advanced-security,2024-01-20T04:33:49Z,- github-advanced-security submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1834611689) at 2024-01-19 08:33 PM PST -github-advanced-security,2024-02-06T21:44:40Z,- github-advanced-security submitted pull request review: [6261](https://github.com/hackforla/website/pull/6261#pullrequestreview-1866375154) at 2024-02-06 01:44 PM PST -github-advanced-security,2024-02-09T23:36:36Z,- github-advanced-security submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1873332087) at 2024-02-09 03:36 PM PST -github-advanced-security,2024-02-12T20:11:37Z,- github-advanced-security submitted pull request review: [6282](https://github.com/hackforla/website/pull/6282#pullrequestreview-1876133919) at 2024-02-12 12:11 PM PST -github-advanced-security,2024-03-25T00:48:46Z,- github-advanced-security submitted pull request review: [6516](https://github.com/hackforla/website/pull/6516#pullrequestreview-1956711967) at 2024-03-24 05:48 PM PDT -github-advanced-security,2024-03-28T15:41:03Z,- github-advanced-security submitted pull request review: [6503](https://github.com/hackforla/website/pull/6503#pullrequestreview-1966574891) at 2024-03-28 08:41 AM PDT -github-advanced-security,2024-03-30T03:26:30Z,- github-advanced-security submitted pull request review: [6550](https://github.com/hackforla/website/pull/6550#pullrequestreview-1969739257) at 2024-03-29 08:26 PM PDT -github-advanced-security,2024-04-20T18:58:34Z,- github-advanced-security submitted pull request review: [6692](https://github.com/hackforla/website/pull/6692#pullrequestreview-2013134859) at 2024-04-20 11:58 AM PDT -github-advanced-security,2024-05-04T00:36:47Z,- github-advanced-security submitted pull request review: [6815](https://github.com/hackforla/website/pull/6815#pullrequestreview-2039171629) at 2024-05-03 05:36 PM PDT -github-advanced-security,2024-05-21T18:25:40Z,- github-advanced-security submitted pull request review: [6873](https://github.com/hackforla/website/pull/6873#pullrequestreview-2069328025) at 2024-05-21 11:25 AM PDT -github-advanced-security,2024-06-02T02:25:10Z,- github-advanced-security submitted pull request review: [6442](https://github.com/hackforla/website/pull/6442#pullrequestreview-2092201429) at 2024-06-01 07:25 PM PDT -github-advanced-security,2024-06-06T22:35:03Z,- github-advanced-security submitted pull request review: [6969](https://github.com/hackforla/website/pull/6969#pullrequestreview-2103317955) at 2024-06-06 03:35 PM PDT -github-advanced-security,2024-06-21T13:20:40Z,- github-advanced-security submitted pull request review: [6971](https://github.com/hackforla/website/pull/6971#pullrequestreview-2132646943) at 2024-06-21 06:20 AM PDT -github-advanced-security,2024-06-23T04:45:39Z,- github-advanced-security submitted pull request review: [7055](https://github.com/hackforla/website/pull/7055#pullrequestreview-2134071004) at 2024-06-22 09:45 PM PDT -github-advanced-security,2024-07-21T21:07:29Z,- github-advanced-security submitted pull request review: [7132](https://github.com/hackforla/website/pull/7132#pullrequestreview-2190399077) at 2024-07-21 02:07 PM PDT -github-advanced-security,2024-07-31T10:18:57Z,- github-advanced-security submitted pull request review: [6971](https://github.com/hackforla/website/pull/6971#pullrequestreview-2209767511) at 2024-07-31 03:18 AM PDT -github-advanced-security,2024-08-03T01:51:36Z,- github-advanced-security submitted pull request review: [7169](https://github.com/hackforla/website/pull/7169#pullrequestreview-2216576711) at 2024-08-02 06:51 PM PDT -github-advanced-security,2024-08-06T19:17:28Z,- github-advanced-security submitted pull request review: [7228](https://github.com/hackforla/website/pull/7228#pullrequestreview-2222062432) at 2024-08-06 12:17 PM PDT -github-advanced-security,2024-08-22T21:54:56Z,- github-advanced-security submitted pull request review: [6442](https://github.com/hackforla/website/pull/6442#pullrequestreview-2255865193) at 2024-08-22 02:54 PM PDT -github-advanced-security,2024-08-31T21:57:33Z,- github-advanced-security submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2274144614) at 2024-08-31 02:57 PM PDT -github-advanced-security,2024-09-07T22:18:29Z,- github-advanced-security submitted pull request review: [7409](https://github.com/hackforla/website/pull/7409#pullrequestreview-2288417163) at 2024-09-07 03:18 PM PDT -github-advanced-security,2024-09-16T17:45:57Z,- github-advanced-security submitted pull request review: [7373](https://github.com/hackforla/website/pull/7373#pullrequestreview-2307328599) at 2024-09-16 10:45 AM PDT -github-advanced-security,2024-09-18T23:21:40Z,- github-advanced-security submitted pull request review: [7493](https://github.com/hackforla/website/pull/7493#pullrequestreview-2314013924) at 2024-09-18 04:21 PM PDT -github-advanced-security,2024-10-15T15:44:17Z,- github-advanced-security submitted pull request review: [7595](https://github.com/hackforla/website/pull/7595#pullrequestreview-2369841291) at 2024-10-15 08:44 AM PDT -github-advanced-security,2024-10-21T06:54:08Z,- github-advanced-security submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2381089631) at 2024-10-20 11:54 PM PDT -github-advanced-security,2024-10-27T21:30:24Z,- github-advanced-security submitted pull request review: [7595](https://github.com/hackforla/website/pull/7595#pullrequestreview-2397631645) at 2024-10-27 02:30 PM PDT -github-advanced-security,2024-11-04T22:11:48Z,- github-advanced-security submitted pull request review: [7688](https://github.com/hackforla/website/pull/7688#pullrequestreview-2414226550) at 2024-11-04 02:11 PM PST -github-advanced-security,2025-04-23T05:30:27Z,- github-advanced-security submitted pull request review: [8085](https://github.com/hackforla/website/pull/8085#pullrequestreview-2785974436) at 2025-04-22 10:30 PM PDT -github-advanced-security,2025-04-25T23:16:26Z,- github-advanced-security submitted pull request review: [8089](https://github.com/hackforla/website/pull/8089#pullrequestreview-2795491827) at 2025-04-25 04:16 PM PDT -github-advanced-security,2025-06-10T04:08:02Z,- github-advanced-security submitted pull request review: [8175](https://github.com/hackforla/website/pull/8175#pullrequestreview-2911901086) at 2025-06-09 09:08 PM PDT -github-advanced-security,2025-06-14T21:12:58Z,- github-advanced-security submitted pull request review: [8175](https://github.com/hackforla/website/pull/8175#pullrequestreview-2928846821) at 2025-06-14 02:12 PM PDT -github-advanced-security,2025-06-27T05:39:38Z,- github-advanced-security submitted pull request review: [8232](https://github.com/hackforla/website/pull/8232#pullrequestreview-2964822646) at 2025-06-26 10:39 PM PDT -github-advanced-security,2025-07-22T03:34:10Z,- github-advanced-security submitted pull request review: [8248](https://github.com/hackforla/website/pull/8248#pullrequestreview-3040744318) at 2025-07-21 08:34 PM PDT -gitklu,2019-07-23T02:39:59Z,- gitklu commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514030382) at 2019-07-22 07:39 PM PDT -gitklu,2019-07-23T03:25:41Z,- gitklu opened issue: [134](https://github.com/hackforla/website/issues/134) at 2019-07-22 08:25 PM PDT -gitklu,2019-07-23T03:45:00Z,- gitklu opened issue: [137](https://github.com/hackforla/website/issues/137) at 2019-07-22 08:45 PM PDT -gitklu,2019-07-23T03:46:09Z,- gitklu opened issue: [148](https://github.com/hackforla/website/issues/148) at 2019-07-22 08:46 PM PDT -GitPeebles,3786,SKILLS ISSUE -GitPeebles,2023-01-04T04:47:47Z,- GitPeebles opened issue: [3786](https://github.com/hackforla/website/issues/3786) at 2023-01-03 08:47 PM PST -GitPeebles,2023-01-07T14:26:16Z,- GitPeebles assigned to issue: [3786](https://github.com/hackforla/website/issues/3786) at 2023-01-07 06:26 AM PST -glenflorendo,2021-04-29T00:49:37Z,- glenflorendo assigned to issue: [1475](https://github.com/hackforla/website/issues/1475) at 2021-04-28 05:49 PM PDT -glenflorendo,2021-04-29T18:25:07Z,- glenflorendo assigned to issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823750826) at 2021-04-29 11:25 AM PDT -glenflorendo,2021-05-02T08:45:39Z,- glenflorendo commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-830773591) at 2021-05-02 01:45 AM PDT -glenflorendo,2021-05-02T21:22:32Z,- glenflorendo assigned to issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-826405242) at 2021-05-02 02:22 PM PDT -glenflorendo,2021-05-02T21:23:49Z,- glenflorendo unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-826405242) at 2021-05-02 02:23 PM PDT -glenflorendo,2021-05-07T23:06:39Z,- glenflorendo commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-834848075) at 2021-05-07 04:06 PM PDT -glenflorendo,2021-05-14T06:30:13Z,- glenflorendo commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-841041249) at 2021-05-13 11:30 PM PDT -glenflorendo,2021-05-20T21:31:59Z,- glenflorendo assigned to issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-20 02:31 PM PDT -glenflorendo,2021-05-22T15:56:21Z,- glenflorendo opened pull request: [1603](https://github.com/hackforla/website/pull/1603) at 2021-05-22 08:56 AM PDT -glenflorendo,2021-05-22T16:20:37Z,- glenflorendo opened pull request: [1604](https://github.com/hackforla/website/pull/1604) at 2021-05-22 09:20 AM PDT -glenflorendo,2021-05-22T21:07:49Z,- glenflorendo pull request merged: [1604](https://github.com/hackforla/website/pull/1604#event-4782712332) at 2021-05-22 02:07 PM PDT -glenflorendo,2021-05-28T07:35:19Z,- glenflorendo commented on pull request: [1603](https://github.com/hackforla/website/pull/1603#issuecomment-850215655) at 2021-05-28 12:35 AM PDT -glenflorendo,2021-06-06T19:16:41Z,- glenflorendo commented on pull request: [1603](https://github.com/hackforla/website/pull/1603#issuecomment-855448198) at 2021-06-06 12:16 PM PDT -glenflorendo,2021-06-09T01:19:02Z,- glenflorendo closed issue by PR 1603: [1031](https://github.com/hackforla/website/issues/1031#event-4862048136) at 2021-06-08 06:19 PM PDT -glenflorendo,2021-06-09T01:19:02Z,- glenflorendo pull request merged: [1603](https://github.com/hackforla/website/pull/1603#event-4862048145) at 2021-06-08 06:19 PM PDT -glenflorendo,2021-06-09T05:13:35Z,- glenflorendo assigned to issue: [1689](https://github.com/hackforla/website/issues/1689) at 2021-06-08 10:13 PM PDT -glenflorendo,2021-06-09T05:46:45Z,- glenflorendo opened pull request: [1703](https://github.com/hackforla/website/pull/1703) at 2021-06-08 10:46 PM PDT -glenflorendo,2021-06-11T04:30:46Z,- glenflorendo submitted pull request review: [1704](https://github.com/hackforla/website/pull/1704#pullrequestreview-681440409) at 2021-06-10 09:30 PM PDT -glenflorendo,2021-06-11T06:30:58Z,- glenflorendo closed issue by PR 1703: [1689](https://github.com/hackforla/website/issues/1689#event-4875958700) at 2021-06-10 11:30 PM PDT -glenflorendo,2021-06-11T06:30:58Z,- glenflorendo pull request merged: [1703](https://github.com/hackforla/website/pull/1703#event-4875958705) at 2021-06-10 11:30 PM PDT -glenflorendo,2021-06-22T00:22:42Z,- glenflorendo assigned to issue: [1794](https://github.com/hackforla/website/issues/1794) at 2021-06-21 05:22 PM PDT -glenflorendo,2021-06-22T06:35:55Z,- glenflorendo unassigned from issue: [1794](https://github.com/hackforla/website/issues/1794) at 2021-06-21 11:35 PM PDT -glenflorendo,2021-06-30T01:57:31Z,- glenflorendo assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-870026744) at 2021-06-29 06:57 PM PDT -glenflorendo,2021-07-05T00:10:14Z,- glenflorendo commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-873691854) at 2021-07-04 05:10 PM PDT -glenflorendo,2021-07-16T19:32:03Z,- glenflorendo commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-881671692) at 2021-07-16 12:32 PM PDT -glenflorendo,2021-07-18T19:09:35Z,- glenflorendo unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-882103738) at 2021-07-18 12:09 PM PDT -glenflorendo,2021-08-11T23:51:51Z,- glenflorendo assigned to issue: [1892](https://github.com/hackforla/website/issues/1892) at 2021-08-11 04:51 PM PDT -glenflorendo,2021-08-25T01:34:47Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-905099421) at 2021-08-24 06:34 PM PDT -glenflorendo,2021-09-14T05:13:29Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-918809548) at 2021-09-13 10:13 PM PDT -glenflorendo,2021-09-15T22:02:57Z,- glenflorendo assigned to issue: [2269](https://github.com/hackforla/website/issues/2269#issuecomment-920401843) at 2021-09-15 03:02 PM PDT -glenflorendo,2021-09-16T00:37:43Z,- glenflorendo opened pull request: [2281](https://github.com/hackforla/website/pull/2281) at 2021-09-15 05:37 PM PDT -glenflorendo,2021-09-17T02:11:42Z,- glenflorendo commented on pull request: [2281](https://github.com/hackforla/website/pull/2281#issuecomment-921399658) at 2021-09-16 07:11 PM PDT -glenflorendo,2021-09-17T05:30:47Z,- glenflorendo pull request merged: [2281](https://github.com/hackforla/website/pull/2281#event-5316734453) at 2021-09-16 10:30 PM PDT -glenflorendo,2021-09-20T19:55:41Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-923248182) at 2021-09-20 12:55 PM PDT -glenflorendo,2021-10-05T21:14:50Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-934851473) at 2021-10-05 02:14 PM PDT -glenflorendo,2021-10-06T02:48:50Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-935308069) at 2021-10-05 07:48 PM PDT -glenflorendo,2021-10-22T07:28:18Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-949362460) at 2021-10-22 12:28 AM PDT -glenflorendo,2021-11-05T04:24:31Z,- glenflorendo opened pull request: [2453](https://github.com/hackforla/website/pull/2453) at 2021-11-04 09:24 PM PDT -glenflorendo,2021-11-10T20:31:33Z,- glenflorendo submitted pull request review: [2469](https://github.com/hackforla/website/pull/2469#pullrequestreview-803114660) at 2021-11-10 12:31 PM PST -glenflorendo,2021-11-11T01:41:03Z,- glenflorendo submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-803334548) at 2021-11-10 05:41 PM PST -glenflorendo,2021-11-12T17:40:55Z,- glenflorendo commented on issue: [1892](https://github.com/hackforla/website/issues/1892#issuecomment-967296950) at 2021-11-12 09:40 AM PST -glenflorendo,2021-11-14T03:22:44Z,- glenflorendo commented on pull request: [2453](https://github.com/hackforla/website/pull/2453#issuecomment-968198404) at 2021-11-13 07:22 PM PST -glenflorendo,2021-11-16T04:24:56Z,- glenflorendo pull request merged: [2453](https://github.com/hackforla/website/pull/2453#event-5622297387) at 2021-11-15 08:24 PM PST -glenflorendo,2021-11-16T18:22:10Z,- glenflorendo submitted pull request review: [2491](https://github.com/hackforla/website/pull/2491#pullrequestreview-807679136) at 2021-11-16 10:22 AM PST -glenflorendo,2021-11-16T18:55:17Z,- glenflorendo submitted pull request review: [2482](https://github.com/hackforla/website/pull/2482#pullrequestreview-807712078) at 2021-11-16 10:55 AM PST -glenflorendo,2021-11-16T19:24:25Z,- glenflorendo submitted pull request review: [2482](https://github.com/hackforla/website/pull/2482#pullrequestreview-807740579) at 2021-11-16 11:24 AM PST -glenflorendo,2021-11-17T00:08:28Z,- glenflorendo submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-807988430) at 2021-11-16 04:08 PM PST -glenflorendo,2021-11-17T02:17:56Z,- glenflorendo submitted pull request review: [2470](https://github.com/hackforla/website/pull/2470#pullrequestreview-808048834) at 2021-11-16 06:17 PM PST -glenflorendo,2021-11-22T00:32:15Z,- glenflorendo opened pull request: [2510](https://github.com/hackforla/website/pull/2510) at 2021-11-21 04:32 PM PST -glenflorendo,2021-11-22T00:44:24Z,- glenflorendo submitted pull request review: [2507](https://github.com/hackforla/website/pull/2507#pullrequestreview-811995208) at 2021-11-21 04:44 PM PST -glenflorendo,2021-11-22T00:46:20Z,- glenflorendo pull request merged: [2510](https://github.com/hackforla/website/pull/2510#event-5650774356) at 2021-11-21 04:46 PM PST -glenflorendo,2021-12-01T02:24:46Z,- glenflorendo submitted pull request review: [2525](https://github.com/hackforla/website/pull/2525#pullrequestreview-819744111) at 2021-11-30 06:24 PM PST -GLRJr,2021-04-11T18:39:11Z,- GLRJr assigned to issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-11 11:39 AM PDT -GLRJr,2021-04-12T00:56:34Z,- GLRJr opened pull request: [1397](https://github.com/hackforla/website/pull/1397) at 2021-04-11 05:56 PM PDT -GLRJr,2021-04-12T00:59:59Z,- GLRJr commented on issue: [1345](https://github.com/hackforla/website/issues/1345#issuecomment-817412800) at 2021-04-11 05:59 PM PDT -GLRJr,2021-04-12T21:40:01Z,- GLRJr commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818261143) at 2021-04-12 02:40 PM PDT -GLRJr,2021-04-12T22:15:22Z,- GLRJr commented on pull request: [1397](https://github.com/hackforla/website/pull/1397#issuecomment-818278100) at 2021-04-12 03:15 PM PDT -GLRJr,2021-04-14T21:17:14Z,- GLRJr submitted pull request review: [1403](https://github.com/hackforla/website/pull/1403#pullrequestreview-636088135) at 2021-04-14 02:17 PM PDT -GLRJr,2021-04-14T22:08:19Z,- GLRJr commented on pull request: [1403](https://github.com/hackforla/website/pull/1403#issuecomment-819880217) at 2021-04-14 03:08 PM PDT -GLRJr,2021-04-15T05:49:33Z,- GLRJr pull request merged: [1397](https://github.com/hackforla/website/pull/1397#event-4597201816) at 2021-04-14 10:49 PM PDT -GLRJr,2021-04-18T18:57:28Z,- GLRJr assigned to issue: [1315](https://github.com/hackforla/website/issues/1315) at 2021-04-18 11:57 AM PDT -GLRJr,2021-04-25T02:40:48Z,- GLRJr commented on issue: [1315](https://github.com/hackforla/website/issues/1315#issuecomment-826226549) at 2021-04-24 07:40 PM PDT -GLRJr,2021-04-28T02:34:10Z,- GLRJr opened pull request: [1480](https://github.com/hackforla/website/pull/1480) at 2021-04-27 07:34 PM PDT -GLRJr,2021-04-28T04:18:48Z,- GLRJr pull request merged: [1480](https://github.com/hackforla/website/pull/1480#event-4654327389) at 2021-04-27 09:18 PM PDT -GLRJr,2021-05-12T01:12:17Z,- GLRJr closed issue by PR 1677: [1427](https://github.com/hackforla/website/issues/1427#event-4733124396) at 2021-05-11 06:12 PM PDT -GLRJr,2021-05-12T01:12:24Z,- GLRJr reopened issue: [1427](https://github.com/hackforla/website/issues/1427#event-4733124396) at 2021-05-11 06:12 PM PDT -GLRJr,2021-05-12T01:12:40Z,- GLRJr assigned to issue: [1427](https://github.com/hackforla/website/issues/1427#event-4733124396) at 2021-05-11 06:12 PM PDT -GLRJr,2021-05-15T16:45:24Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-841690813) at 2021-05-15 09:45 AM PDT -GLRJr,2021-05-16T02:17:21Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-841755018) at 2021-05-15 07:17 PM PDT -GLRJr,2021-05-26T23:36:29Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-849189282) at 2021-05-26 04:36 PM PDT -GLRJr,2021-05-30T18:17:09Z,- GLRJr assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -GLRJr,2021-05-30T18:19:32Z,- GLRJr commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040453) at 2021-05-30 11:19 AM PDT -GLRJr,2021-05-30T18:41:13Z,- GLRJr commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-851043027) at 2021-05-30 11:41 AM PDT -GLRJr,2021-06-01T01:54:56Z,- GLRJr opened pull request: [1677](https://github.com/hackforla/website/pull/1677) at 2021-05-31 06:54 PM PDT -GLRJr,2021-06-13T17:15:44Z,- GLRJr commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-860243371) at 2021-06-13 10:15 AM PDT -GLRJr,2021-06-13T17:36:18Z,- GLRJr commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-860245851) at 2021-06-13 10:36 AM PDT -GLRJr,2021-06-13T17:51:15Z,- GLRJr commented on issue: [1709](https://github.com/hackforla/website/issues/1709#issuecomment-860247579) at 2021-06-13 10:51 AM PDT -GLRJr,2021-06-17T21:59:07Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-863590089) at 2021-06-17 02:59 PM PDT -GLRJr,2021-06-25T23:07:51Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-868876043) at 2021-06-25 04:07 PM PDT -GLRJr,2021-06-27T01:10:21Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-869082575) at 2021-06-26 06:10 PM PDT -GLRJr,2021-06-29T21:50:01Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-870942194) at 2021-06-29 02:50 PM PDT -GLRJr,2021-06-29T23:13:43Z,- GLRJr commented on pull request: [1677](https://github.com/hackforla/website/pull/1677#issuecomment-870978370) at 2021-06-29 04:13 PM PDT -GLRJr,2021-07-02T15:02:42Z,- GLRJr pull request merged: [1677](https://github.com/hackforla/website/pull/1677#event-4971958501) at 2021-07-02 08:02 AM PDT -GLRJr,2021-07-07T21:49:57Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-875958068) at 2021-07-07 02:49 PM PDT -GLRJr,2021-07-13T22:37:40Z,- GLRJr commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-879451504) at 2021-07-13 03:37 PM PDT -GLRJr,2021-07-15T20:47:57Z,- GLRJr opened pull request: [1951](https://github.com/hackforla/website/pull/1951) at 2021-07-15 01:47 PM PDT -GLRJr,2021-07-21T02:38:02Z,- GLRJr commented on pull request: [1951](https://github.com/hackforla/website/pull/1951#issuecomment-883840563) at 2021-07-20 07:38 PM PDT -GLRJr,2021-08-01T17:04:57Z,- GLRJr commented on pull request: [1951](https://github.com/hackforla/website/pull/1951#issuecomment-890554791) at 2021-08-01 10:04 AM PDT -GLRJr,2021-08-01T18:00:54Z,- GLRJr commented on pull request: [1917](https://github.com/hackforla/website/pull/1917#issuecomment-890562384) at 2021-08-01 11:00 AM PDT -GLRJr,2021-08-01T18:21:33Z,- GLRJr commented on pull request: [1957](https://github.com/hackforla/website/pull/1957#issuecomment-890565405) at 2021-08-01 11:21 AM PDT -GLRJr,2021-08-05T18:35:24Z,- GLRJr pull request merged: [1951](https://github.com/hackforla/website/pull/1951#event-5119144000) at 2021-08-05 11:35 AM PDT -GLRJr,2021-09-01T02:09:46Z,- GLRJr assigned to issue: [2182](https://github.com/hackforla/website/issues/2182) at 2021-08-31 07:09 PM PDT -GLRJr,2021-09-01T02:48:21Z,- GLRJr unassigned from issue: [2182](https://github.com/hackforla/website/issues/2182) at 2021-08-31 07:48 PM PDT -GLRJr,2021-09-01T03:00:26Z,- GLRJr assigned to issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-899662109) at 2021-08-31 08:00 PM PDT -GLRJr,2021-09-12T19:39:15Z,- GLRJr commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-917697576) at 2021-09-12 12:39 PM PDT -GLRJr,2021-09-12T19:52:00Z,- GLRJr opened pull request: [2250](https://github.com/hackforla/website/pull/2250) at 2021-09-12 12:52 PM PDT -GLRJr,2021-09-19T17:08:35Z,- GLRJr commented on issue: [2117](https://github.com/hackforla/website/issues/2117#issuecomment-922506032) at 2021-09-19 10:08 AM PDT -GLRJr,2021-09-19T18:38:01Z,- GLRJr assigned to issue: [2141](https://github.com/hackforla/website/issues/2141) at 2021-09-19 11:38 AM PDT -GLRJr,2021-09-23T15:03:20Z,- GLRJr unassigned from issue: [2141](https://github.com/hackforla/website/issues/2141) at 2021-09-23 08:03 AM PDT -GLRJr,2021-09-24T22:33:58Z,- GLRJr commented on pull request: [2250](https://github.com/hackforla/website/pull/2250#issuecomment-926953524) at 2021-09-24 03:33 PM PDT -GLRJr,2021-09-25T01:24:10Z,- GLRJr pull request merged: [2250](https://github.com/hackforla/website/pull/2250#event-5358930754) at 2021-09-24 06:24 PM PDT -gmgonzal,7743,SKILLS ISSUE -gmgonzal,2024-11-20T03:46:10Z,- gmgonzal opened issue: [7743](https://github.com/hackforla/website/issues/7743) at 2024-11-19 07:46 PM PST -gmgonzal,2024-11-20T03:46:25Z,- gmgonzal assigned to issue: [7743](https://github.com/hackforla/website/issues/7743) at 2024-11-19 07:46 PM PST -gmgonzal,2024-11-20T03:58:00Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2487355914) at 2024-11-19 07:58 PM PST -gmgonzal,2024-12-13T01:32:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2540341592) at 2024-12-12 05:32 PM PST -gmgonzal,2024-12-13T02:01:27Z,- gmgonzal assigned to issue: [7732](https://github.com/hackforla/website/issues/7732) at 2024-12-12 06:01 PM PST -gmgonzal,2025-01-04T00:15:06Z,- gmgonzal commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2569955127) at 2025-01-03 04:15 PM PST -gmgonzal,2025-01-04T00:37:37Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2569966408) at 2025-01-03 04:37 PM PST -gmgonzal,2025-01-04T00:39:59Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2569967360) at 2025-01-03 04:39 PM PST -gmgonzal,2025-01-21T18:49:35Z,- gmgonzal commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2605497252) at 2025-01-21 10:49 AM PST -gmgonzal,2025-01-21T18:54:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2605506110) at 2025-01-21 10:54 AM PST -gmgonzal,2025-01-28T02:26:44Z,- gmgonzal opened pull request: [7861](https://github.com/hackforla/website/pull/7861) at 2025-01-27 06:26 PM PST -gmgonzal,2025-01-28T02:36:55Z,- gmgonzal commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2617664851) at 2025-01-27 06:36 PM PST -gmgonzal,2025-01-28T02:42:29Z,- gmgonzal commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2617681224) at 2025-01-27 06:42 PM PST -gmgonzal,2025-01-28T23:53:46Z,- gmgonzal submitted pull request review: [7840](https://github.com/hackforla/website/pull/7840#pullrequestreview-2579660845) at 2025-01-28 03:53 PM PST -gmgonzal,2025-01-29T00:02:11Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2620299835) at 2025-01-28 04:02 PM PST -gmgonzal,2025-01-29T00:09:00Z,- gmgonzal commented on pull request: [7852](https://github.com/hackforla/website/pull/7852#issuecomment-2620307850) at 2025-01-28 04:09 PM PST -gmgonzal,2025-02-02T22:37:55Z,- gmgonzal pull request merged: [7861](https://github.com/hackforla/website/pull/7861#event-16153924019) at 2025-02-02 02:37 PM PST -gmgonzal,2025-02-04T20:27:46Z,- gmgonzal submitted pull request review: [7852](https://github.com/hackforla/website/pull/7852#pullrequestreview-2593960163) at 2025-02-04 12:27 PM PST -gmgonzal,2025-02-04T20:40:34Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2635023383) at 2025-02-04 12:40 PM PST -gmgonzal,2025-02-05T19:22:27Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2637833271) at 2025-02-05 11:22 AM PST -gmgonzal,2025-02-06T19:02:38Z,- gmgonzal assigned to issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2462788218) at 2025-02-06 11:02 AM PST -gmgonzal,2025-02-06T19:16:25Z,- gmgonzal commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2640776822) at 2025-02-06 11:16 AM PST -gmgonzal,2025-02-06T19:33:29Z,- gmgonzal opened pull request: [7898](https://github.com/hackforla/website/pull/7898) at 2025-02-06 11:33 AM PST -gmgonzal,2025-02-06T19:38:33Z,- gmgonzal commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2640825525) at 2025-02-06 11:38 AM PST -gmgonzal,2025-02-06T20:17:30Z,- gmgonzal submitted pull request review: [7880](https://github.com/hackforla/website/pull/7880#pullrequestreview-2599809736) at 2025-02-06 12:17 PM PST -gmgonzal,2025-02-06T20:19:50Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2640911370) at 2025-02-06 12:19 PM PST -gmgonzal,2025-02-10T17:13:07Z,- gmgonzal pull request merged: [7898](https://github.com/hackforla/website/pull/7898#event-16251638407) at 2025-02-10 09:13 AM PST -gmgonzal,2025-02-10T19:32:01Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2649044136) at 2025-02-10 11:32 AM PST -gmgonzal,2025-02-10T20:01:14Z,- gmgonzal submitted pull request review: [7902](https://github.com/hackforla/website/pull/7902#pullrequestreview-2607025557) at 2025-02-10 12:01 PM PST -gmgonzal,2025-02-10T20:06:43Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2649119620) at 2025-02-10 12:06 PM PST -gmgonzal,2025-02-10T20:08:03Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2649122600) at 2025-02-10 12:08 PM PST -gmgonzal,2025-02-10T23:39:51Z,- gmgonzal submitted pull request review: [7902](https://github.com/hackforla/website/pull/7902#pullrequestreview-2607411503) at 2025-02-10 03:39 PM PST -gmgonzal,2025-02-11T20:08:34Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2651958407) at 2025-02-11 12:08 PM PST -gmgonzal,2025-02-11T20:10:23Z,- gmgonzal assigned to issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2387226214) at 2025-02-11 12:10 PM PST -gmgonzal,2025-02-11T20:15:42Z,- gmgonzal commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2651971734) at 2025-02-11 12:15 PM PST -gmgonzal,2025-02-11T23:38:22Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2652301888) at 2025-02-11 03:38 PM PST -gmgonzal,2025-02-11T23:39:12Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2652302825) at 2025-02-11 03:39 PM PST -gmgonzal,2025-02-12T17:15:24Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2654367486) at 2025-02-12 09:15 AM PST -gmgonzal,2025-02-12T17:31:40Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2654406713) at 2025-02-12 09:31 AM PST -gmgonzal,2025-02-14T18:40:25Z,- gmgonzal commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2660025505) at 2025-02-14 10:40 AM PST -gmgonzal,2025-02-17T19:09:07Z,- gmgonzal commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2663909905) at 2025-02-17 11:09 AM PST -gmgonzal,2025-02-17T22:46:47Z,- gmgonzal submitted pull request review: [7906](https://github.com/hackforla/website/pull/7906#pullrequestreview-2622053021) at 2025-02-17 02:46 PM PST -gmgonzal,2025-02-17T22:51:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2664190237) at 2025-02-17 02:51 PM PST -gmgonzal,2025-02-17T22:54:21Z,- gmgonzal commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2664192924) at 2025-02-17 02:54 PM PST -gmgonzal,2025-02-17T23:04:38Z,- gmgonzal submitted pull request review: [7910](https://github.com/hackforla/website/pull/7910#pullrequestreview-2622066609) at 2025-02-17 03:04 PM PST -gmgonzal,2025-02-17T23:06:28Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2664204589) at 2025-02-17 03:06 PM PST -gmgonzal,2025-02-17T23:08:03Z,- gmgonzal assigned to issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2641933007) at 2025-02-17 03:08 PM PST -gmgonzal,2025-02-17T23:08:20Z,- gmgonzal unassigned from issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2641933007) at 2025-02-17 03:08 PM PST -gmgonzal,2025-02-17T23:12:38Z,- gmgonzal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2664210236) at 2025-02-17 03:12 PM PST -gmgonzal,2025-02-17T23:32:40Z,- gmgonzal assigned to issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2381010498) at 2025-02-17 03:32 PM PST -gmgonzal,2025-02-17T23:34:43Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2664229993) at 2025-02-17 03:34 PM PST -gmgonzal,2025-02-20T03:02:16Z,- gmgonzal submitted pull request review: [7906](https://github.com/hackforla/website/pull/7906#pullrequestreview-2628605790) at 2025-02-19 07:02 PM PST -gmgonzal,2025-02-24T22:02:51Z,- gmgonzal submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2638545674) at 2025-02-24 02:02 PM PST -gmgonzal,2025-02-24T22:05:29Z,- gmgonzal submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2638549949) at 2025-02-24 02:05 PM PST -gmgonzal,2025-02-24T22:12:25Z,- gmgonzal submitted pull request review: [7933](https://github.com/hackforla/website/pull/7933#pullrequestreview-2638563861) at 2025-02-24 02:12 PM PST -gmgonzal,2025-02-24T22:14:19Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2679781644) at 2025-02-24 02:14 PM PST -gmgonzal,2025-02-25T23:25:41Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2683517077) at 2025-02-25 03:25 PM PST -gmgonzal,2025-02-26T03:14:18Z,- gmgonzal commented on pull request: [7945](https://github.com/hackforla/website/pull/7945#issuecomment-2683789640) at 2025-02-25 07:14 PM PST -gmgonzal,2025-02-26T03:49:51Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2683824846) at 2025-02-25 07:49 PM PST -gmgonzal,2025-03-01T01:14:32Z,- gmgonzal commented on pull request: [7948](https://github.com/hackforla/website/pull/7948#issuecomment-2691807362) at 2025-02-28 05:14 PM PST -gmgonzal,2025-03-01T01:17:19Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2691809521) at 2025-02-28 05:17 PM PST -gmgonzal,2025-03-01T01:36:56Z,- gmgonzal submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2652088828) at 2025-02-28 05:36 PM PST -gmgonzal,2025-03-01T01:43:31Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2691827964) at 2025-02-28 05:43 PM PST -gmgonzal,2025-03-01T01:46:12Z,- gmgonzal commented on pull request: [7951](https://github.com/hackforla/website/pull/7951#issuecomment-2691829439) at 2025-02-28 05:46 PM PST -gmgonzal,2025-03-01T01:53:31Z,- gmgonzal submitted pull request review: [7951](https://github.com/hackforla/website/pull/7951#pullrequestreview-2652096877) at 2025-02-28 05:53 PM PST -gmgonzal,2025-03-01T01:55:57Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2691835963) at 2025-02-28 05:55 PM PST -gmgonzal,2025-03-05T03:56:43Z,- gmgonzal submitted pull request review: [7948](https://github.com/hackforla/website/pull/7948#pullrequestreview-2659803023) at 2025-03-04 07:56 PM PST -gmgonzal,2025-03-05T05:05:04Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2699850665) at 2025-03-04 09:05 PM PST -gmgonzal,2025-03-05T10:06:22Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2700446309) at 2025-03-05 02:06 AM PST -gmgonzal,2025-03-11T22:00:59Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2715799556) at 2025-03-11 03:00 PM PDT -gmgonzal,2025-03-11T22:12:20Z,- gmgonzal assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2412459670) at 2025-03-11 03:12 PM PDT -gmgonzal,2025-03-11T22:12:34Z,- gmgonzal unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2715818467) at 2025-03-11 03:12 PM PDT -gmgonzal,2025-03-11T22:13:52Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2715822740) at 2025-03-11 03:13 PM PDT -gmgonzal,2025-03-12T21:47:06Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2719206058) at 2025-03-12 02:47 PM PDT -gmgonzal,2025-03-17T07:43:57Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2728470159) at 2025-03-17 12:43 AM PDT -gmgonzal,2025-03-17T10:17:52Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2689896690) at 2025-03-17 03:17 AM PDT -gmgonzal,2025-03-18T01:19:44Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731340990) at 2025-03-17 06:19 PM PDT -gmgonzal,2025-03-18T06:21:17Z,- gmgonzal commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2731809242) at 2025-03-17 11:21 PM PDT -gmgonzal,2025-03-18T06:38:56Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2731842910) at 2025-03-17 11:38 PM PDT -gmgonzal,2025-03-18T07:16:40Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2693257727) at 2025-03-18 12:16 AM PDT -gmgonzal,2025-03-18T07:18:56Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2693262539) at 2025-03-18 12:18 AM PDT -gmgonzal,2025-03-18T07:20:07Z,- gmgonzal submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2693264790) at 2025-03-18 12:20 AM PDT -gmgonzal,2025-03-25T23:02:05Z,- gmgonzal commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2752730552) at 2025-03-25 04:02 PM PDT -gmgonzal,2025-03-25T23:03:16Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2752731912) at 2025-03-25 04:03 PM PDT -gmgonzal,2025-03-26T00:45:13Z,- gmgonzal submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2715515602) at 2025-03-25 05:45 PM PDT -gmgonzal,2025-03-26T00:47:19Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2752878519) at 2025-03-25 05:47 PM PDT -gmgonzal,2025-04-04T01:03:40Z,- gmgonzal commented on pull request: [8037](https://github.com/hackforla/website/pull/8037#issuecomment-2777312427) at 2025-04-03 06:03 PM PDT -gmgonzal,2025-04-04T01:41:06Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2777352355) at 2025-04-03 06:41 PM PDT -gmgonzal,2025-04-04T02:08:04Z,- gmgonzal opened pull request: [8043](https://github.com/hackforla/website/pull/8043) at 2025-04-03 07:08 PM PDT -gmgonzal,2025-04-04T02:08:54Z,- gmgonzal pull request closed w/o merging: [8043](https://github.com/hackforla/website/pull/8043#event-17122943973) at 2025-04-03 07:08 PM PDT -gmgonzal,2025-04-04T02:09:23Z,- gmgonzal commented on pull request: [8043](https://github.com/hackforla/website/pull/8043#issuecomment-2777380416) at 2025-04-03 07:09 PM PDT -gmgonzal,2025-04-09T20:30:21Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754742828) at 2025-04-09 01:30 PM PDT -gmgonzal,2025-04-09T20:34:13Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754750571) at 2025-04-09 01:34 PM PDT -gmgonzal,2025-04-09T20:34:27Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754751057) at 2025-04-09 01:34 PM PDT -gmgonzal,2025-04-09T20:54:45Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2754790889) at 2025-04-09 01:54 PM PDT -gmgonzal,2025-04-10T01:42:39Z,- gmgonzal submitted pull request review: [8037](https://github.com/hackforla/website/pull/8037#pullrequestreview-2755131395) at 2025-04-09 06:42 PM PDT -gmgonzal,2025-04-10T01:43:51Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2791342535) at 2025-04-09 06:43 PM PDT -gmgonzal,2025-04-18T22:55:18Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2816320975) at 2025-04-18 03:55 PM PDT -gmgonzal,2025-04-18T22:59:29Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2816324292) at 2025-04-18 03:59 PM PDT -gmgonzal,2025-05-02T00:47:21Z,- gmgonzal commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2846074676) at 2025-05-01 05:47 PM PDT -gmgonzal,2025-05-02T01:08:32Z,- gmgonzal opened pull request: [8106](https://github.com/hackforla/website/pull/8106) at 2025-05-01 06:08 PM PDT -gmgonzal,2025-05-02T20:48:07Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2848094281) at 2025-05-02 01:48 PM PDT -gmgonzal,2025-05-05T21:10:12Z,- gmgonzal pull request merged: [8106](https://github.com/hackforla/website/pull/8106#event-17526339534) at 2025-05-05 02:10 PM PDT -gmgonzal,2025-05-08T19:49:02Z,- gmgonzal commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2864110919) at 2025-05-08 12:49 PM PDT -gold-o,3069,SKILLS ISSUE -gold-o,2022-04-19T17:26:36Z,- gold-o opened issue: [3069](https://github.com/hackforla/website/issues/3069) at 2022-04-19 10:26 AM PDT -gold-o,2022-04-20T22:36:30Z,- gold-o assigned to issue: [3069](https://github.com/hackforla/website/issues/3069#issuecomment-1102905420) at 2022-04-20 03:36 PM PDT -gold-o,2022-04-20T22:46:17Z,- gold-o assigned to issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1091394048) at 2022-04-20 03:46 PM PDT -gold-o,2022-04-27T20:29:57Z,- gold-o commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1111451291) at 2022-04-27 01:29 PM PDT -gold-o,2022-04-27T22:06:12Z,- gold-o closed issue as completed: [3069](https://github.com/hackforla/website/issues/3069#event-6510454340) at 2022-04-27 03:06 PM PDT -gold-o,2022-05-29T18:49:55Z,- gold-o commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1140504416) at 2022-05-29 11:49 AM PDT -gold-o,2022-06-20T07:39:10Z,- gold-o commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1160086251) at 2022-06-20 12:39 AM PDT -gold-o,2022-06-20T07:39:10Z,- gold-o closed issue as completed: [3034](https://github.com/hackforla/website/issues/3034#event-6836996427) at 2022-06-20 12:39 AM PDT -gold-o,2022-06-22T20:59:55Z,- gold-o assigned to issue: [1848](https://github.com/hackforla/website/issues/1848#issuecomment-894829423) at 2022-06-22 01:59 PM PDT -gold-o,2022-06-22T22:22:44Z,- gold-o assigned to issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-999099692) at 2022-06-22 03:22 PM PDT -gold-o,2022-06-22T22:22:54Z,- gold-o unassigned from issue: [1848](https://github.com/hackforla/website/issues/1848#issuecomment-894829423) at 2022-06-22 03:22 PM PDT -gold-o,2022-06-26T17:20:14Z,- gold-o commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1166593171) at 2022-06-26 10:20 AM PDT -gold-o,2022-07-06T19:02:53Z,- gold-o assigned to issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-07-06 12:02 PM PDT -gold-o,2022-07-06T19:02:58Z,- gold-o unassigned from issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-07-06 12:02 PM PDT -gold-o,2022-07-06T19:03:01Z,- gold-o assigned to issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1149279469) at 2022-07-06 12:03 PM PDT -gold-o,2022-07-07T22:10:24Z,- gold-o commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1178280519) at 2022-07-07 03:10 PM PDT -gold-o,2022-07-17T22:18:46Z,- gold-o commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1186617457) at 2022-07-17 03:18 PM PDT -gold-o,2022-09-12T22:40:27Z,- gold-o commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1244636993) at 2022-09-12 03:40 PM PDT -gold-o,2022-09-12T22:43:17Z,- gold-o commented on issue: [3117](https://github.com/hackforla/website/issues/3117#issuecomment-1244645781) at 2022-09-12 03:43 PM PDT -gold-o,2022-09-12T22:43:17Z,- gold-o closed issue as completed: [3117](https://github.com/hackforla/website/issues/3117#event-7371598729) at 2022-09-12 03:43 PM PDT -gold-o,2022-10-05T16:10:34Z,- gold-o unassigned from issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1263227729) at 2022-10-05 09:10 AM PDT -Gourav2609,2023-08-18T19:05:27Z,- Gourav2609 commented on issue: [5248](https://github.com/hackforla/website/issues/5248#issuecomment-1684327412) at 2023-08-18 12:05 PM PDT -gr4ssman,2021-06-30T03:40:47Z,- gr4ssman assigned to issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-06-29 08:40 PM PDT -gr4ssman,2021-08-20T20:25:02Z,- gr4ssman unassigned from issue: [1571](https://github.com/hackforla/website/issues/1571#issuecomment-902938080) at 2021-08-20 01:25 PM PDT -graycodesnu,4312,SKILLS ISSUE -graycodesnu,2023-03-29T03:16:12Z,- graycodesnu opened issue: [4312](https://github.com/hackforla/website/issues/4312) at 2023-03-28 08:16 PM PDT -graycodesnu,2023-03-29T03:33:06Z,- graycodesnu assigned to issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1487888544) at 2023-03-28 08:33 PM PDT -graycodesnu,2023-04-03T18:08:35Z,- graycodesnu assigned to issue: [4376](https://github.com/hackforla/website/issues/4376) at 2023-04-03 11:08 AM PDT -graycodesnu,2023-04-03T18:14:17Z,- graycodesnu commented on issue: [4376](https://github.com/hackforla/website/issues/4376#issuecomment-1494766697) at 2023-04-03 11:14 AM PDT -graycodesnu,2023-04-03T18:16:20Z,- graycodesnu commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1494769515) at 2023-04-03 11:16 AM PDT -graycodesnu,2023-04-03T18:47:31Z,- graycodesnu opened pull request: [4386](https://github.com/hackforla/website/pull/4386) at 2023-04-03 11:47 AM PDT -graycodesnu,2023-04-06T02:51:27Z,- graycodesnu pull request merged: [4386](https://github.com/hackforla/website/pull/4386#event-8941129602) at 2023-04-05 07:51 PM PDT -graycodesnu,2023-04-09T07:19:31Z,- graycodesnu submitted pull request review: [4441](https://github.com/hackforla/website/pull/4441#pullrequestreview-1376868590) at 2023-04-09 12:19 AM PDT -graycodesnu,2023-04-09T07:31:09Z,- graycodesnu commented on pull request: [4441](https://github.com/hackforla/website/pull/4441#issuecomment-1501062507) at 2023-04-09 12:31 AM PDT -graycodesnu,2023-04-16T05:35:05Z,- graycodesnu assigned to issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1509090621) at 2023-04-15 10:35 PM PDT -graycodesnu,2023-04-16T05:39:01Z,- graycodesnu commented on issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1510088302) at 2023-04-15 10:39 PM PDT -graycodesnu,2023-04-16T06:14:02Z,- graycodesnu opened pull request: [4521](https://github.com/hackforla/website/pull/4521) at 2023-04-15 11:14 PM PDT -graycodesnu,2023-04-16T20:14:34Z,- graycodesnu pull request closed w/o merging: [4521](https://github.com/hackforla/website/pull/4521#event-9018212711) at 2023-04-16 01:14 PM PDT -graycodesnu,2023-04-16T20:24:03Z,- graycodesnu opened pull request: [4524](https://github.com/hackforla/website/pull/4524) at 2023-04-16 01:24 PM PDT -graycodesnu,2023-04-16T20:28:44Z,- graycodesnu commented on pull request: [4521](https://github.com/hackforla/website/pull/4521#issuecomment-1510478702) at 2023-04-16 01:28 PM PDT -graycodesnu,2023-04-16T20:29:23Z,- graycodesnu commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1510478796) at 2023-04-16 01:29 PM PDT -graycodesnu,2023-04-17T05:51:57Z,- graycodesnu commented on pull request: [4528](https://github.com/hackforla/website/pull/4528#issuecomment-1510744101) at 2023-04-16 10:51 PM PDT -graycodesnu,2023-04-18T01:23:22Z,- graycodesnu submitted pull request review: [4528](https://github.com/hackforla/website/pull/4528#pullrequestreview-1389137525) at 2023-04-17 06:23 PM PDT -graycodesnu,2023-04-19T17:00:23Z,- graycodesnu pull request merged: [4524](https://github.com/hackforla/website/pull/4524#event-9048942563) at 2023-04-19 10:00 AM PDT -graycodesnu,2023-04-20T22:14:17Z,- graycodesnu commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1517010097) at 2023-04-20 03:14 PM PDT -graycodesnu,2023-04-27T00:26:37Z,- graycodesnu assigned to issue: [4401](https://github.com/hackforla/website/issues/4401) at 2023-04-26 05:26 PM PDT -graycodesnu,2023-04-27T00:47:42Z,- graycodesnu commented on issue: [4401](https://github.com/hackforla/website/issues/4401#issuecomment-1524318255) at 2023-04-26 05:47 PM PDT -graycodesnu,2023-04-27T01:27:52Z,- graycodesnu opened pull request: [4569](https://github.com/hackforla/website/pull/4569) at 2023-04-26 06:27 PM PDT -graycodesnu,2023-04-30T00:16:23Z,- graycodesnu commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1528903151) at 2023-04-29 05:16 PM PDT -graycodesnu,2023-04-30T16:53:32Z,- graycodesnu commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1529076667) at 2023-04-30 09:53 AM PDT -graycodesnu,2023-04-30T17:24:44Z,- graycodesnu pull request merged: [4569](https://github.com/hackforla/website/pull/4569#event-9132683857) at 2023-04-30 10:24 AM PDT -graycodesnu,2023-04-30T17:31:19Z,- graycodesnu assigned to issue: [4513](https://github.com/hackforla/website/issues/4513#issuecomment-1509624686) at 2023-04-30 10:31 AM PDT -graycodesnu,2023-04-30T17:32:59Z,- graycodesnu commented on issue: [4513](https://github.com/hackforla/website/issues/4513#issuecomment-1529088753) at 2023-04-30 10:32 AM PDT -graycodesnu,2023-05-04T07:23:34Z,- graycodesnu opened pull request: [4596](https://github.com/hackforla/website/pull/4596) at 2023-05-04 12:23 AM PDT -graycodesnu,2023-05-04T18:37:58Z,- graycodesnu pull request merged: [4596](https://github.com/hackforla/website/pull/4596#event-9170404017) at 2023-05-04 11:37 AM PDT -graycodesnu,2023-05-09T00:36:55Z,- graycodesnu assigned to issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1533494584) at 2023-05-08 05:36 PM PDT -graycodesnu,2023-05-09T00:39:34Z,- graycodesnu commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1539234255) at 2023-05-08 05:39 PM PDT -graycodesnu,2023-05-15T04:09:21Z,- graycodesnu commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1547165007) at 2023-05-14 09:09 PM PDT -graycodesnu,2023-05-15T04:11:07Z,- graycodesnu commented on issue: [4312](https://github.com/hackforla/website/issues/4312#issuecomment-1547166329) at 2023-05-14 09:11 PM PDT -graycodesnu,2023-05-15T04:11:07Z,- graycodesnu closed issue as completed: [4312](https://github.com/hackforla/website/issues/4312#event-9241859881) at 2023-05-14 09:11 PM PDT -graycodesnu,2023-05-17T02:13:59Z,- graycodesnu commented on pull request: [4683](https://github.com/hackforla/website/pull/4683#issuecomment-1550587795) at 2023-05-16 07:13 PM PDT -graycodesnu,2023-05-29T22:49:23Z,- graycodesnu commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 03:49 PM PDT -graycodesnu,2023-05-29T22:51:03Z,- graycodesnu unassigned from issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 03:51 PM PDT -graycodesnu,2023-05-29T22:51:03Z,- graycodesnu unassigned from issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 03:51 PM PDT -graycodesnu,2023-06-01T19:06:02Z,- graycodesnu commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1572627121) at 2023-06-01 12:06 PM PDT -graycodesnu,2023-06-01T19:26:04Z,- graycodesnu submitted pull request review: [4757](https://github.com/hackforla/website/pull/4757#pullrequestreview-1456167804) at 2023-06-01 12:26 PM PDT -graycodesnu,2023-06-01T19:28:13Z,- graycodesnu commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1572654890) at 2023-06-01 12:28 PM PDT -graycodesnu,2023-06-01T19:36:01Z,- graycodesnu commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1572663914) at 2023-06-01 12:36 PM PDT -graycodesnu,2023-06-02T07:02:47Z,- graycodesnu submitted pull request review: [4751](https://github.com/hackforla/website/pull/4751#pullrequestreview-1456770112) at 2023-06-02 12:02 AM PDT -graycodesnu,2023-06-09T02:33:53Z,- graycodesnu commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1583856947) at 2023-06-08 07:33 PM PDT -graycodesnu,2023-06-09T02:57:27Z,- graycodesnu submitted pull request review: [4772](https://github.com/hackforla/website/pull/4772#pullrequestreview-1471122970) at 2023-06-08 07:57 PM PDT -graycodesnu,2023-06-16T03:57:02Z,- graycodesnu commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1594051441) at 2023-06-15 08:57 PM PDT -graycodesnu,2023-06-16T05:39:12Z,- graycodesnu submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1482750473) at 2023-06-15 10:39 PM PDT -greg-nice,3050,SKILLS ISSUE -greg-nice,2022-04-13T03:10:42Z,- greg-nice opened issue: [3050](https://github.com/hackforla/website/issues/3050) at 2022-04-12 08:10 PM PDT -greg-nice,2022-04-13T03:18:12Z,- greg-nice assigned to issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1097506203) at 2022-04-12 08:18 PM PDT -gregpawin,2020-07-26T22:24:44Z,- gregpawin commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-664048034) at 2020-07-26 03:24 PM PDT -gregpawin,2020-08-03T03:51:05Z,- gregpawin commented on issue: [442](https://github.com/hackforla/website/issues/442#issuecomment-667788585) at 2020-08-02 08:51 PM PDT -gregpawin,2020-08-21T01:25:13Z,- gregpawin opened issue: [693](https://github.com/hackforla/website/issues/693) at 2020-08-20 06:25 PM PDT -gregpawin,2020-10-29T03:21:28Z,- gregpawin commented on issue: [693](https://github.com/hackforla/website/issues/693#issuecomment-718334198) at 2020-10-28 08:21 PM PDT -gregpawin,2021-01-10T20:53:11Z,- gregpawin assigned to issue: [937](https://github.com/hackforla/website/issues/937) at 2021-01-10 12:53 PM PST -gregpawin,2021-01-11T05:45:35Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-757636737) at 2021-01-10 09:45 PM PST -gregpawin,2021-01-13T01:07:11Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759136019) at 2021-01-12 05:07 PM PST -gregpawin,2021-01-13T01:39:29Z,- gregpawin closed issue as completed: [937](https://github.com/hackforla/website/issues/937#event-4198992921) at 2021-01-12 05:39 PM PST -gregpawin,2021-01-13T01:39:36Z,- gregpawin reopened issue: [937](https://github.com/hackforla/website/issues/937#event-4198992921) at 2021-01-12 05:39 PM PST -gregpawin,2021-01-13T01:39:48Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-12 05:39 PM PST -gregpawin,2021-01-13T19:22:21Z,- gregpawin unassigned from issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-13 11:22 AM PST -gregpawin,2021-01-31T20:46:30Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770448037) at 2021-01-31 12:46 PM PST -gregpawin,2021-01-31T20:59:03Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770449757) at 2021-01-31 12:59 PM PST -gregpawin,2021-01-31T21:02:48Z,- gregpawin commented on issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-770450360) at 2021-01-31 01:02 PM PST -gregpawin,2022-04-15T16:20:30Z,- gregpawin opened issue: [3056](https://github.com/hackforla/website/issues/3056) at 2022-04-15 09:20 AM PDT -gregpawin,2022-04-20T19:57:25Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104402022) at 2022-04-20 12:57 PM PDT -gregpawin,2022-05-26T19:55:56Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1138953636) at 2022-05-26 12:55 PM PDT -gregpawin,2022-07-21T01:39:39Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1190940215) at 2022-07-20 06:39 PM PDT -gregpawin,2022-09-11T20:28:08Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1243037048) at 2022-09-11 01:28 PM PDT -gregpawin,2022-10-31T23:26:49Z,- gregpawin commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1297810524) at 2022-10-31 04:26 PM PDT -greylaw89,2837,SKILLS ISSUE -greylaw89,2022-02-22T03:18:52Z,- greylaw89 opened issue: [2837](https://github.com/hackforla/website/issues/2837) at 2022-02-21 07:18 PM PST -greylaw89,2022-02-22T03:23:04Z,- greylaw89 assigned to issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1047387113) at 2022-02-21 07:23 PM PST -greylaw89,2022-02-23T03:33:31Z,- greylaw89 assigned to issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-22 07:33 PM PST -greylaw89,2022-02-23T03:55:17Z,- greylaw89 assigned to issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-957988338) at 2022-02-22 07:55 PM PST -greylaw89,2022-02-23T03:58:27Z,- greylaw89 unassigned from issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-22 07:58 PM PST -greylaw89,2022-02-23T05:12:50Z,- greylaw89 opened pull request: [2862](https://github.com/hackforla/website/pull/2862) at 2022-02-22 09:12 PM PST -greylaw89,2022-02-23T05:13:35Z,- greylaw89 pull request closed w/o merging: [2862](https://github.com/hackforla/website/pull/2862#event-6122552135) at 2022-02-22 09:13 PM PST -greylaw89,2022-02-23T05:13:44Z,- greylaw89 reopened pull request: [2862](https://github.com/hackforla/website/pull/2862#event-6122552135) at 2022-02-22 09:13 PM PST -greylaw89,2022-02-23T20:28:20Z,- greylaw89 commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1049185275) at 2022-02-23 12:28 PM PST -greylaw89,2022-02-24T20:30:25Z,- greylaw89 commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1050236339) at 2022-02-24 12:30 PM PST -greylaw89,2022-02-26T23:14:17Z,- greylaw89 commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1052768187) at 2022-02-26 03:14 PM PST -greylaw89,2022-03-26T21:28:05Z,- greylaw89 pull request closed w/o merging: [2862](https://github.com/hackforla/website/pull/2862#event-6312583412) at 2022-03-26 02:28 PM PDT -greylaw89,2022-03-26T21:29:53Z,- greylaw89 unassigned from issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1073045830) at 2022-03-26 02:29 PM PDT -grhhhh,2021-04-25T18:48:55Z,- grhhhh assigned to issue: [1436](https://github.com/hackforla/website/issues/1436#issuecomment-826152022) at 2021-04-25 11:48 AM PDT -grhhhh,2021-04-27T22:46:39Z,- grhhhh opened pull request: [1474](https://github.com/hackforla/website/pull/1474) at 2021-04-27 03:46 PM PDT -grhhhh,2021-04-28T02:09:14Z,- grhhhh pull request merged: [1474](https://github.com/hackforla/website/pull/1474#event-4654025167) at 2021-04-27 07:09 PM PDT -grhhhh,2021-04-28T07:26:52Z,- grhhhh assigned to issue: [1487](https://github.com/hackforla/website/issues/1487) at 2021-04-28 12:26 AM PDT -grhhhh,2021-05-03T19:12:22Z,- grhhhh assigned to issue: [1499](https://github.com/hackforla/website/issues/1499) at 2021-05-03 12:12 PM PDT -grhhhh,2021-05-03T23:56:36Z,- grhhhh opened pull request: [1503](https://github.com/hackforla/website/pull/1503) at 2021-05-03 04:56 PM PDT -grhhhh,2021-05-04T21:10:24Z,- grhhhh pull request merged: [1503](https://github.com/hackforla/website/pull/1503#event-4685708322) at 2021-05-04 02:10 PM PDT -grhhhh,2021-05-04T21:14:36Z,- grhhhh assigned to issue: [1457](https://github.com/hackforla/website/issues/1457) at 2021-05-04 02:14 PM PDT -grhhhh,2021-05-04T23:56:19Z,- grhhhh opened pull request: [1508](https://github.com/hackforla/website/pull/1508) at 2021-05-04 04:56 PM PDT -grhhhh,2021-05-05T23:40:40Z,- grhhhh opened pull request: [1517](https://github.com/hackforla/website/pull/1517) at 2021-05-05 04:40 PM PDT -grhhhh,2021-05-05T23:41:02Z,- grhhhh pull request closed w/o merging: [1508](https://github.com/hackforla/website/pull/1508#event-4692046029) at 2021-05-05 04:41 PM PDT -grhhhh,2021-05-05T23:52:13Z,- grhhhh pull request merged: [1517](https://github.com/hackforla/website/pull/1517#event-4692070526) at 2021-05-05 04:52 PM PDT -grhhhh,2021-05-06T00:28:49Z,- grhhhh assigned to issue: [1507](https://github.com/hackforla/website/issues/1507#issuecomment-831770752) at 2021-05-05 05:28 PM PDT -grhhhh,2021-05-06T22:57:56Z,- grhhhh opened pull request: [1522](https://github.com/hackforla/website/pull/1522) at 2021-05-06 03:57 PM PDT -grhhhh,2021-05-07T03:16:14Z,- grhhhh opened issue: [1524](https://github.com/hackforla/website/issues/1524) at 2021-05-06 08:16 PM PDT -grhhhh,2021-05-08T00:47:45Z,- grhhhh commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-834911116) at 2021-05-07 05:47 PM PDT -grhhhh,2021-05-10T19:31:20Z,- grhhhh commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837202528) at 2021-05-10 12:31 PM PDT -grhhhh,2021-05-10T20:03:58Z,- grhhhh commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837250546) at 2021-05-10 01:03 PM PDT -grhhhh,2021-05-11T01:19:38Z,- grhhhh pull request merged: [1522](https://github.com/hackforla/website/pull/1522#event-4722108579) at 2021-05-10 06:19 PM PDT -grhhhh,2021-05-11T21:50:18Z,- grhhhh assigned to issue: [1537](https://github.com/hackforla/website/issues/1537) at 2021-05-11 02:50 PM PDT -grhhhh,2021-05-11T22:35:46Z,- grhhhh opened pull request: [1540](https://github.com/hackforla/website/pull/1540) at 2021-05-11 03:35 PM PDT -grhhhh,2021-05-12T00:35:10Z,- grhhhh assigned to issue: [1531](https://github.com/hackforla/website/issues/1531) at 2021-05-11 05:35 PM PDT -grhhhh,2021-05-13T18:24:09Z,- grhhhh pull request merged: [1540](https://github.com/hackforla/website/pull/1540#event-4743264388) at 2021-05-13 11:24 AM PDT -grhhhh,2021-05-16T17:19:03Z,- grhhhh commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-841847345) at 2021-05-16 10:19 AM PDT -grhhhh,2021-05-20T23:07:10Z,- grhhhh commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-845539213) at 2021-05-20 04:07 PM PDT -grhhhh,2021-05-24T21:44:56Z,- grhhhh assigned to issue: [1617](https://github.com/hackforla/website/issues/1617) at 2021-05-24 02:44 PM PDT -grhhhh,2021-05-24T22:40:19Z,- grhhhh opened pull request: [1628](https://github.com/hackforla/website/pull/1628) at 2021-05-24 03:40 PM PDT -grhhhh,2021-05-25T22:31:39Z,- grhhhh assigned to issue: [1608](https://github.com/hackforla/website/issues/1608) at 2021-05-25 03:31 PM PDT -grhhhh,2021-05-25T23:09:03Z,- grhhhh opened pull request: [1636](https://github.com/hackforla/website/pull/1636) at 2021-05-25 04:09 PM PDT -grhhhh,2021-05-29T18:09:02Z,- grhhhh pull request merged: [1628](https://github.com/hackforla/website/pull/1628#event-4816302383) at 2021-05-29 11:09 AM PDT -grhhhh,2021-06-01T23:27:45Z,- grhhhh opened pull request: [1679](https://github.com/hackforla/website/pull/1679) at 2021-06-01 04:27 PM PDT -grhhhh,2021-06-02T19:10:30Z,- grhhhh pull request merged: [1636](https://github.com/hackforla/website/pull/1636#event-4833625247) at 2021-06-02 12:10 PM PDT -grhhhh,2021-06-04T03:24:47Z,- grhhhh assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -grhhhh,2021-06-05T21:24:05Z,- grhhhh commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855297728) at 2021-06-05 02:24 PM PDT -grhhhh,2021-06-05T21:47:56Z,- grhhhh commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-855300068) at 2021-06-05 02:47 PM PDT -grhhhh,2021-06-09T00:41:18Z,- grhhhh commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-857286064) at 2021-06-08 05:41 PM PDT -grhhhh,2021-06-10T21:50:35Z,- grhhhh commented on pull request: [1679](https://github.com/hackforla/website/pull/1679#issuecomment-859101293) at 2021-06-10 02:50 PM PDT -grhhhh,2021-06-12T16:32:03Z,- grhhhh unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -grhhhh,2021-06-15T04:24:42Z,- grhhhh pull request merged: [1679](https://github.com/hackforla/website/pull/1679#event-4889109554) at 2021-06-14 09:24 PM PDT -grhhhh,2021-08-07T01:31:56Z,- grhhhh assigned to issue: [2064](https://github.com/hackforla/website/issues/2064) at 2021-08-06 06:31 PM PDT -grhhhh,2021-08-15T00:07:02Z,- grhhhh opened pull request: [2118](https://github.com/hackforla/website/pull/2118) at 2021-08-14 05:07 PM PDT -grhhhh,2021-08-15T00:10:34Z,- grhhhh commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-898974265) at 2021-08-14 05:10 PM PDT -grhhhh,2021-08-18T18:46:34Z,- grhhhh commented on pull request: [2118](https://github.com/hackforla/website/pull/2118#issuecomment-901346847) at 2021-08-18 11:46 AM PDT -grhhhh,2021-08-22T16:51:43Z,- grhhhh pull request merged: [2118](https://github.com/hackforla/website/pull/2118#event-5191037816) at 2021-08-22 09:51 AM PDT -grhhhh,2021-08-22T20:11:39Z,- grhhhh commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-903324086) at 2021-08-22 01:11 PM PDT -GRISONRF,3544,SKILLS ISSUE -GRISONRF,2022-09-13T02:44:34Z,- GRISONRF opened issue: [3544](https://github.com/hackforla/website/issues/3544) at 2022-09-12 07:44 PM PDT -GRISONRF,2022-09-16T03:02:29Z,- GRISONRF assigned to issue: [3544](https://github.com/hackforla/website/issues/3544) at 2022-09-15 08:02 PM PDT -GRISONRF,2022-09-21T17:27:24Z,- GRISONRF assigned to issue: [2834](https://github.com/hackforla/website/issues/2834#issuecomment-1047139925) at 2022-09-21 10:27 AM PDT -GRISONRF,2022-09-21T17:58:21Z,- GRISONRF commented on issue: [2834](https://github.com/hackforla/website/issues/2834#issuecomment-1254042946) at 2022-09-21 10:58 AM PDT -GRISONRF,2022-09-21T18:24:10Z,- GRISONRF opened pull request: [3573](https://github.com/hackforla/website/pull/3573) at 2022-09-21 11:24 AM PDT -GRISONRF,2022-09-21T22:26:30Z,- GRISONRF pull request merged: [3573](https://github.com/hackforla/website/pull/3573#event-7434714127) at 2022-09-21 03:26 PM PDT -GRISONRF,2022-09-22T22:52:05Z,- GRISONRF assigned to issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1116814402) at 2022-09-22 03:52 PM PDT -GRISONRF,2022-09-22T22:53:48Z,- GRISONRF commented on issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1255637239) at 2022-09-22 03:53 PM PDT -GRISONRF,2022-09-22T23:38:05Z,- GRISONRF commented on issue: [3099](https://github.com/hackforla/website/issues/3099#issuecomment-1255660623) at 2022-09-22 04:38 PM PDT -GRISONRF,2022-09-23T14:22:29Z,- GRISONRF opened pull request: [3577](https://github.com/hackforla/website/pull/3577) at 2022-09-23 07:22 AM PDT -GRISONRF,2022-09-23T14:26:07Z,- GRISONRF commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1256284762) at 2022-09-23 07:26 AM PDT -GRISONRF,2022-09-23T14:32:28Z,- GRISONRF submitted pull request review: [3576](https://github.com/hackforla/website/pull/3576#pullrequestreview-1118575082) at 2022-09-23 07:32 AM PDT -GRISONRF,2022-09-23T22:50:01Z,- GRISONRF commented on pull request: [3578](https://github.com/hackforla/website/pull/3578#issuecomment-1256771664) at 2022-09-23 03:50 PM PDT -GRISONRF,2022-09-23T22:52:26Z,- GRISONRF submitted pull request review: [3578](https://github.com/hackforla/website/pull/3578#pullrequestreview-1119101070) at 2022-09-23 03:52 PM PDT -GRISONRF,2022-09-24T00:44:18Z,- GRISONRF pull request merged: [3577](https://github.com/hackforla/website/pull/3577#event-7451040893) at 2022-09-23 05:44 PM PDT -GRISONRF,2022-09-25T17:13:17Z,- GRISONRF commented on pull request: [3580](https://github.com/hackforla/website/pull/3580#issuecomment-1257237342) at 2022-09-25 10:13 AM PDT -GRISONRF,2022-09-25T18:31:07Z,- GRISONRF submitted pull request review: [3580](https://github.com/hackforla/website/pull/3580#pullrequestreview-1119438559) at 2022-09-25 11:31 AM PDT -GRISONRF,2022-09-26T15:34:27Z,- GRISONRF assigned to issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1254305375) at 2022-09-26 08:34 AM PDT -GRISONRF,2022-09-26T15:44:31Z,- GRISONRF commented on issue: [3377](https://github.com/hackforla/website/issues/3377#issuecomment-1258239738) at 2022-09-26 08:44 AM PDT -GRISONRF,2022-09-26T16:32:06Z,- GRISONRF opened pull request: [3582](https://github.com/hackforla/website/pull/3582) at 2022-09-26 09:32 AM PDT -GRISONRF,2022-09-27T16:15:40Z,- GRISONRF closed issue as completed: [3544](https://github.com/hackforla/website/issues/3544#event-7470192289) at 2022-09-27 09:15 AM PDT -GRISONRF,2022-09-28T01:02:37Z,- GRISONRF pull request merged: [3582](https://github.com/hackforla/website/pull/3582#event-7473343483) at 2022-09-27 06:02 PM PDT -GRISONRF,2022-10-12T17:45:30Z,- GRISONRF commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1276528886) at 2022-10-12 10:45 AM PDT -GRISONRF,2022-10-12T17:51:49Z,- GRISONRF submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1139504874) at 2022-10-12 10:51 AM PDT -GRK1998,5000,SKILLS ISSUE -GRK1998,2023-07-18T03:08:03Z,- GRK1998 opened issue: [5000](https://github.com/hackforla/website/issues/5000) at 2023-07-17 08:08 PM PDT -GRK1998,2023-07-18T03:59:57Z,- GRK1998 assigned to issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1639246093) at 2023-07-17 08:59 PM PDT -GRK1998,2023-08-16T23:39:48Z,- GRK1998 assigned to issue: [5185](https://github.com/hackforla/website/issues/5185#issuecomment-1675514515) at 2023-08-16 04:39 PM PDT -GRK1998,2023-08-17T00:09:21Z,- GRK1998 commented on issue: [5185](https://github.com/hackforla/website/issues/5185#issuecomment-1681420647) at 2023-08-16 05:09 PM PDT -GRK1998,2023-08-20T02:58:59Z,- GRK1998 opened pull request: [5262](https://github.com/hackforla/website/pull/5262) at 2023-08-19 07:58 PM PDT -GRK1998,2023-08-27T03:08:55Z,- GRK1998 pull request merged: [5262](https://github.com/hackforla/website/pull/5262#event-10201045904) at 2023-08-26 08:08 PM PDT -GRK1998,2023-08-29T15:57:45Z,- GRK1998 assigned to issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1696789972) at 2023-08-29 08:57 AM PDT -GRK1998,2023-08-29T21:59:55Z,- GRK1998 commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1698201996) at 2023-08-29 02:59 PM PDT -GRK1998,2023-09-02T02:37:00Z,- GRK1998 opened pull request: [5417](https://github.com/hackforla/website/pull/5417) at 2023-09-01 07:37 PM PDT -GRK1998,2023-09-05T15:45:26Z,- GRK1998 assigned to issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1684546506) at 2023-09-05 08:45 AM PDT -GRK1998,2023-09-05T15:47:27Z,- GRK1998 unassigned from issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1706872893) at 2023-09-05 08:47 AM PDT -GRK1998,2023-09-05T15:47:27Z,- GRK1998 unassigned from issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1706872893) at 2023-09-05 08:47 AM PDT -GRK1998,2023-09-16T16:48:17Z,- GRK1998 assigned to issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1720324283) at 2023-09-16 09:48 AM PDT -GRK1998,2023-09-17T01:12:45Z,- GRK1998 commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1722359457) at 2023-09-16 06:12 PM PDT -GRK1998,2023-09-23T23:30:59Z,- GRK1998 unassigned from issue: [5525](https://github.com/hackforla/website/issues/5525#event-10405063320) at 2023-09-23 04:30 PM PDT -GRK1998,2023-09-25T17:58:34Z,- GRK1998 assigned to issue: [5525](https://github.com/hackforla/website/issues/5525#event-10405063320) at 2023-09-25 10:58 AM PDT -GRK1998,2023-09-25T17:58:53Z,- GRK1998 unassigned from issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1734219960) at 2023-09-25 10:58 AM PDT -GRK1998,2023-09-27T16:27:52Z,- GRK1998 assigned to issue: [5599](https://github.com/hackforla/website/issues/5599) at 2023-09-27 09:27 AM PDT -GRK1998,2023-09-27T16:29:11Z,- GRK1998 commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1737723775) at 2023-09-27 09:29 AM PDT -GRK1998,2023-09-30T04:15:51Z,- GRK1998 unassigned from issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1737723775) at 2023-09-29 09:15 PM PDT -GRK1998,2023-09-30T15:38:57Z,- GRK1998 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1741792746) at 2023-09-30 08:38 AM PDT -GRK1998,2023-09-30T19:27:34Z,- GRK1998 unassigned from issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1700363797) at 2023-09-30 12:27 PM PDT -GRK1998,2023-09-30T19:29:45Z,- GRK1998 assigned to issue: [5602](https://github.com/hackforla/website/issues/5602) at 2023-09-30 12:29 PM PDT -GRK1998,2023-09-30T19:33:07Z,- GRK1998 commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741843558) at 2023-09-30 12:33 PM PDT -GRK1998,2023-09-30T19:56:44Z,- GRK1998 unassigned from issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741847713) at 2023-09-30 12:56 PM PDT -GRK1998,2023-09-30T19:59:55Z,- GRK1998 assigned to issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1741848223) at 2023-09-30 12:59 PM PDT -GRK1998,2023-10-01T01:44:32Z,- GRK1998 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1741919252) at 2023-09-30 06:44 PM PDT -GRK1998,2023-10-01T02:05:03Z,- GRK1998 pull request merged: [5417](https://github.com/hackforla/website/pull/5417#event-10518453781) at 2023-09-30 07:05 PM PDT -GRK1998,2023-10-04T01:12:18Z,- GRK1998 assigned to issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1743900894) at 2023-10-03 06:12 PM PDT -GRK1998,2023-10-04T01:14:10Z,- GRK1998 commented on issue: [5633](https://github.com/hackforla/website/issues/5633#issuecomment-1745978623) at 2023-10-03 06:14 PM PDT -GRK1998,2023-10-09T14:40:10Z,- GRK1998 opened pull request: [5688](https://github.com/hackforla/website/pull/5688) at 2023-10-09 07:40 AM PDT -GRK1998,2023-10-12T01:08:26Z,- GRK1998 commented on pull request: [5688](https://github.com/hackforla/website/pull/5688#issuecomment-1758759794) at 2023-10-11 06:08 PM PDT -GRK1998,2023-10-14T23:04:37Z,- GRK1998 pull request merged: [5688](https://github.com/hackforla/website/pull/5688#event-10656086483) at 2023-10-14 04:04 PM PDT -GRK1998,2023-11-12T01:34:31Z,- GRK1998 assigned to issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1745395363) at 2023-11-11 05:34 PM PST -GRK1998,2023-11-12T01:38:59Z,- GRK1998 unassigned from issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1806969073) at 2023-11-11 05:38 PM PST -GRK1998,2023-11-12T01:39:16Z,- GRK1998 assigned to issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1790264857) at 2023-11-11 05:39 PM PST -GRK1998,2023-11-15T21:28:14Z,- GRK1998 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1810929161) at 2023-11-15 01:28 PM PST -GRK1998,2023-11-15T21:28:26Z,- GRK1998 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1810929161) at 2023-11-15 01:28 PM PST -GRK1998,2023-11-17T22:14:39Z,- GRK1998 opened pull request: [5920](https://github.com/hackforla/website/pull/5920) at 2023-11-17 02:14 PM PST -GRK1998,2023-11-21T17:17:15Z,- GRK1998 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1821338352) at 2023-11-21 09:17 AM PST -GRK1998,2023-11-25T19:23:34Z,- GRK1998 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826403482) at 2023-11-25 11:23 AM PST -GRK1998,2024-01-13T22:19:19Z,- GRK1998 assigned to issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1865412759) at 2024-01-13 02:19 PM PST -GRK1998,2024-01-17T01:01:51Z,- GRK1998 commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1894764561) at 2024-01-16 05:01 PM PST -GRK1998,2024-01-18T16:00:59Z,- GRK1998 unassigned from issue: [5827](https://github.com/hackforla/website/issues/5827#issuecomment-1825234935) at 2024-01-18 08:00 AM PST -GRK1998,2024-01-18T16:04:09Z,- GRK1998 commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1898770385) at 2024-01-18 08:04 AM PST -GRK1998,2024-01-19T06:25:38Z,- GRK1998 pull request closed w/o merging: [5920](https://github.com/hackforla/website/pull/5920#event-11533471674) at 2024-01-18 10:25 PM PST -GRK1998,2024-01-19T07:10:42Z,- GRK1998 assigned to issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1541143884) at 2024-01-18 11:10 PM PST -GRK1998,2024-01-21T18:54:08Z,- GRK1998 commented on issue: [6002](https://github.com/hackforla/website/issues/6002#issuecomment-1902727124) at 2024-01-21 10:54 AM PST -GRK1998,2024-01-26T01:56:42Z,- GRK1998 opened issue: [6167](https://github.com/hackforla/website/issues/6167) at 2024-01-25 05:56 PM PST -GRK1998,2024-01-26T01:59:40Z,- GRK1998 opened issue: [6168](https://github.com/hackforla/website/issues/6168) at 2024-01-25 05:59 PM PST -GRK1998,2024-01-26T02:01:38Z,- GRK1998 opened issue: [6169](https://github.com/hackforla/website/issues/6169) at 2024-01-25 06:01 PM PST -GRK1998,2024-01-26T02:04:11Z,- GRK1998 opened issue: [6170](https://github.com/hackforla/website/issues/6170) at 2024-01-25 06:04 PM PST -GRK1998,2024-01-26T02:05:46Z,- GRK1998 opened issue: [6171](https://github.com/hackforla/website/issues/6171) at 2024-01-25 06:05 PM PST -GRK1998,2024-01-26T02:07:27Z,- GRK1998 opened issue: [6172](https://github.com/hackforla/website/issues/6172) at 2024-01-25 06:07 PM PST -GRK1998,2024-01-26T02:08:46Z,- GRK1998 opened issue: [6173](https://github.com/hackforla/website/issues/6173) at 2024-01-25 06:08 PM PST -GRK1998,2024-01-26T02:09:57Z,- GRK1998 opened issue: [6174](https://github.com/hackforla/website/issues/6174) at 2024-01-25 06:09 PM PST -GRK1998,2024-01-26T02:11:18Z,- GRK1998 opened issue: [6175](https://github.com/hackforla/website/issues/6175) at 2024-01-25 06:11 PM PST -GRK1998,2024-01-26T02:14:24Z,- GRK1998 opened issue: [6176](https://github.com/hackforla/website/issues/6176) at 2024-01-25 06:14 PM PST -GRK1998,2024-01-26T02:16:04Z,- GRK1998 opened issue: [6177](https://github.com/hackforla/website/issues/6177) at 2024-01-25 06:16 PM PST -GRK1998,2024-01-26T02:17:13Z,- GRK1998 opened issue: [6178](https://github.com/hackforla/website/issues/6178) at 2024-01-25 06:17 PM PST -GRK1998,2024-01-26T02:18:28Z,- GRK1998 opened issue: [6179](https://github.com/hackforla/website/issues/6179) at 2024-01-25 06:18 PM PST -GRK1998,2024-01-26T02:19:28Z,- GRK1998 opened issue: [6180](https://github.com/hackforla/website/issues/6180) at 2024-01-25 06:19 PM PST -GRK1998,2024-01-26T02:20:30Z,- GRK1998 opened issue: [6181](https://github.com/hackforla/website/issues/6181) at 2024-01-25 06:20 PM PST -GRK1998,2024-01-26T02:21:47Z,- GRK1998 opened issue: [6182](https://github.com/hackforla/website/issues/6182) at 2024-01-25 06:21 PM PST -GRK1998,2024-03-03T03:36:21Z,- GRK1998 unassigned from issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1974983198) at 2024-03-02 07:36 PM PST -GRK1998,2024-03-03T19:25:28Z,- GRK1998 assigned to issue: [5995](https://github.com/hackforla/website/issues/5995) at 2024-03-03 11:25 AM PST -GRK1998,2024-03-03T21:11:43Z,- GRK1998 commented on issue: [5995](https://github.com/hackforla/website/issues/5995#issuecomment-1975327342) at 2024-03-03 01:11 PM PST -GRK1998,2024-03-07T03:13:01Z,- GRK1998 commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-1982266105) at 2024-03-06 07:13 PM PST -GRK1998,2024-04-16T00:12:51Z,- GRK1998 assigned to issue: [6495](https://github.com/hackforla/website/issues/6495) at 2024-04-15 05:12 PM PDT -GRK1998,2024-04-16T00:13:56Z,- GRK1998 commented on issue: [6495](https://github.com/hackforla/website/issues/6495#issuecomment-2058017769) at 2024-04-15 05:13 PM PDT -GRK1998,2024-04-23T14:53:14Z,- GRK1998 commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2072567852) at 2024-04-23 07:53 AM PDT -GRK1998,2024-05-11T00:20:34Z,- GRK1998 assigned to issue: [6757](https://github.com/hackforla/website/issues/6757) at 2024-05-10 05:20 PM PDT -GRK1998,2024-05-11T00:21:36Z,- GRK1998 commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2105404178) at 2024-05-10 05:21 PM PDT -GRK1998,2024-05-11T00:25:01Z,- GRK1998 commented on issue: [5000](https://github.com/hackforla/website/issues/5000#issuecomment-2105405746) at 2024-05-10 05:25 PM PDT -GRK1998,2024-06-09T01:29:06Z,- GRK1998 commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2156259022) at 2024-06-08 06:29 PM PDT -gsh3729,6949,SKILLS ISSUE -gsh3729,2024-06-04T02:56:43Z,- gsh3729 opened issue: [6949](https://github.com/hackforla/website/issues/6949) at 2024-06-03 07:56 PM PDT -gsh3729,2024-06-04T02:56:58Z,- gsh3729 assigned to issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2146474989) at 2024-06-03 07:56 PM PDT -gsh3729,2024-06-18T23:28:21Z,- gsh3729 assigned to issue: [6933](https://github.com/hackforla/website/issues/6933) at 2024-06-18 04:28 PM PDT -gsh3729,2024-06-25T00:01:00Z,- gsh3729 commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2187655479) at 2024-06-24 05:01 PM PDT -gsh3729,2024-06-25T00:01:01Z,- gsh3729 closed issue as completed: [6933](https://github.com/hackforla/website/issues/6933#event-13273136134) at 2024-06-24 05:01 PM PDT -gsh3729,2024-06-25T00:01:17Z,- gsh3729 reopened issue: [6933](https://github.com/hackforla/website/issues/6933#event-13273136134) at 2024-06-24 05:01 PM PDT -gsh3729,2024-07-02T05:30:20Z,- gsh3729 unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#event-13273136134) at 2024-07-01 10:30 PM PDT -gsh3729,2024-08-09T12:11:33Z,- gsh3729 unassigned from issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2277285662) at 2024-08-09 05:11 AM PDT -gsh3729,2024-08-13T00:42:55Z,- gsh3729 assigned to issue: [6949](https://github.com/hackforla/website/issues/6949#event-13856201691) at 2024-08-12 05:42 PM PDT -gstemmann,3604,SKILLS ISSUE -gstemmann,2022-10-11T02:43:39Z,- gstemmann opened issue: [3604](https://github.com/hackforla/website/issues/3604) at 2022-10-10 07:43 PM PDT -gstemmann,2022-10-12T03:00:11Z,- gstemmann assigned to issue: [3614](https://github.com/hackforla/website/issues/3614) at 2022-10-11 08:00 PM PDT -gstemmann,2022-10-12T03:00:14Z,- gstemmann unassigned from issue: [3614](https://github.com/hackforla/website/issues/3614) at 2022-10-11 08:00 PM PDT -gstemmann,2022-10-12T03:09:38Z,- gstemmann assigned to issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1275519629) at 2022-10-11 08:09 PM PDT -gstemmann,2022-10-12T03:15:56Z,- gstemmann assigned to issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1048311439) at 2022-10-11 08:15 PM PDT -gstemmann,2022-10-12T03:19:27Z,- gstemmann commented on issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1275529375) at 2022-10-11 08:19 PM PDT -gstemmann,2022-10-13T17:53:51Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277974513) at 2022-10-13 10:53 AM PDT -gstemmann,2022-10-13T17:54:24Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277975069) at 2022-10-13 10:54 AM PDT -gstemmann,2022-10-13T18:44:34Z,- gstemmann unassigned from issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277975069) at 2022-10-13 11:44 AM PDT -gstemmann,2022-10-13T18:47:58Z,- gstemmann assigned to issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1048148664) at 2022-10-13 11:47 AM PDT -gstemmann,2022-10-13T18:49:38Z,- gstemmann commented on issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278039444) at 2022-10-13 11:49 AM PDT -gstemmann,2022-10-13T19:19:20Z,- gstemmann unassigned from issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278039444) at 2022-10-13 12:19 PM PDT -gstemmann,2022-10-13T21:41:12Z,- gstemmann opened pull request: [3617](https://github.com/hackforla/website/pull/3617) at 2022-10-13 02:41 PM PDT -gstemmann,2022-10-13T21:57:46Z,- gstemmann assigned to issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1277975069) at 2022-10-13 02:57 PM PDT -gstemmann,2022-10-13T22:04:14Z,- gstemmann assigned to issue: [2846](https://github.com/hackforla/website/issues/2846#issuecomment-1278039444) at 2022-10-13 03:04 PM PDT -gstemmann,2022-10-13T22:05:15Z,- gstemmann unassigned from issue: [2848](https://github.com/hackforla/website/issues/2848#issuecomment-1275529375) at 2022-10-13 03:05 PM PDT -gstemmann,2022-10-13T22:33:43Z,- gstemmann commented on pull request: [3615](https://github.com/hackforla/website/pull/3615#issuecomment-1278248103) at 2022-10-13 03:33 PM PDT -gstemmann,2022-10-13T22:49:11Z,- gstemmann submitted pull request review: [3615](https://github.com/hackforla/website/pull/3615#pullrequestreview-1141596618) at 2022-10-13 03:49 PM PDT -gstemmann,2022-10-13T23:22:55Z,- gstemmann commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278277820) at 2022-10-13 04:22 PM PDT -gstemmann,2022-10-14T02:27:24Z,- gstemmann commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278387877) at 2022-10-13 07:27 PM PDT -gstemmann,2022-10-14T02:34:50Z,- gstemmann submitted pull request review: [3618](https://github.com/hackforla/website/pull/3618#pullrequestreview-1141734836) at 2022-10-13 07:34 PM PDT -gstemmann,2022-10-14T03:16:32Z,- gstemmann pull request merged: [3617](https://github.com/hackforla/website/pull/3617#event-7586604529) at 2022-10-13 08:16 PM PDT -gstemmann,2022-10-14T19:16:29Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1279369507) at 2022-10-14 12:16 PM PDT -gstemmann,2022-10-14T19:34:18Z,- gstemmann assigned to issue: [3397](https://github.com/hackforla/website/issues/3397) at 2022-10-14 12:34 PM PDT -gstemmann,2022-10-14T19:35:13Z,- gstemmann commented on issue: [3397](https://github.com/hackforla/website/issues/3397#issuecomment-1279384230) at 2022-10-14 12:35 PM PDT -gstemmann,2022-10-14T21:10:27Z,- gstemmann opened pull request: [3623](https://github.com/hackforla/website/pull/3623) at 2022-10-14 02:10 PM PDT -gstemmann,2022-10-15T21:37:48Z,- gstemmann commented on pull request: [3624](https://github.com/hackforla/website/pull/3624#issuecomment-1279836511) at 2022-10-15 02:37 PM PDT -gstemmann,2022-10-15T21:49:32Z,- gstemmann submitted pull request review: [3624](https://github.com/hackforla/website/pull/3624#pullrequestreview-1143230489) at 2022-10-15 02:49 PM PDT -gstemmann,2022-10-16T17:20:56Z,- gstemmann commented on pull request: [3625](https://github.com/hackforla/website/pull/3625#issuecomment-1280013703) at 2022-10-16 10:20 AM PDT -gstemmann,2022-10-16T17:34:22Z,- gstemmann submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1143318530) at 2022-10-16 10:34 AM PDT -gstemmann,2022-10-17T20:27:37Z,- gstemmann pull request merged: [3623](https://github.com/hackforla/website/pull/3623#event-7605630950) at 2022-10-17 01:27 PM PDT -gstemmann,2022-10-19T00:55:28Z,- gstemmann commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1283201475) at 2022-10-18 05:55 PM PDT -gstemmann,2022-10-19T01:08:11Z,- gstemmann submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1146704617) at 2022-10-18 06:08 PM PDT -gstemmann,2022-10-19T03:21:13Z,- gstemmann assigned to issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1003693750) at 2022-10-18 08:21 PM PDT -gstemmann,2022-10-19T03:23:09Z,- gstemmann commented on issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1283363218) at 2022-10-18 08:23 PM PDT -gstemmann,2022-10-19T03:32:08Z,- gstemmann unassigned from issue: [2649](https://github.com/hackforla/website/issues/2649#issuecomment-1283363218) at 2022-10-18 08:32 PM PDT -gstemmann,2022-10-19T03:40:31Z,- gstemmann assigned to issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1250483942) at 2022-10-18 08:40 PM PDT -gstemmann,2022-10-19T03:41:25Z,- gstemmann commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1283377088) at 2022-10-18 08:41 PM PDT -gstemmann,2022-10-21T04:47:24Z,- gstemmann commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1286455083) at 2022-10-20 09:47 PM PDT -gstemmann,2022-10-23T18:37:55Z,- gstemmann commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288172670) at 2022-10-23 11:37 AM PDT -gstemmann,2022-10-23T19:13:12Z,- gstemmann commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1288178979) at 2022-10-23 12:13 PM PDT -gstemmann,2022-10-23T19:21:56Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1288180688) at 2022-10-23 12:21 PM PDT -gstemmann,2022-10-23T21:12:08Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1152374654) at 2022-10-23 02:12 PM PDT -gstemmann,2022-10-23T23:58:08Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1152400279) at 2022-10-23 04:58 PM PDT -gstemmann,2022-10-24T02:56:59Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1152490311) at 2022-10-23 07:56 PM PDT -gstemmann,2022-10-24T21:40:27Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1153839962) at 2022-10-24 02:40 PM PDT -gstemmann,2022-10-28T00:25:20Z,- gstemmann commented on pull request: [3668](https://github.com/hackforla/website/pull/3668#issuecomment-1294261173) at 2022-10-27 05:25 PM PDT -gstemmann,2022-10-28T00:27:02Z,- gstemmann submitted pull request review: [3668](https://github.com/hackforla/website/pull/3668#pullrequestreview-1159178165) at 2022-10-27 05:27 PM PDT -gstemmann,2022-10-28T00:41:55Z,- gstemmann commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1294271220) at 2022-10-27 05:41 PM PDT -gstemmann,2022-10-28T00:46:41Z,- gstemmann submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1159194600) at 2022-10-27 05:46 PM PDT -gstemmann,2022-10-30T16:47:43Z,- gstemmann assigned to issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1288164384) at 2022-10-30 09:47 AM PDT -gstemmann,2022-10-30T16:49:15Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1296300207) at 2022-10-30 09:49 AM PDT -gstemmann,2022-10-30T17:48:11Z,- gstemmann commented on pull request: [3676](https://github.com/hackforla/website/pull/3676#issuecomment-1296312950) at 2022-10-30 10:48 AM PDT -gstemmann,2022-10-30T17:50:13Z,- gstemmann submitted pull request review: [3676](https://github.com/hackforla/website/pull/3676#pullrequestreview-1161170721) at 2022-10-30 10:50 AM PDT -gstemmann,2022-10-30T17:50:45Z,- gstemmann commented on pull request: [3675](https://github.com/hackforla/website/pull/3675#issuecomment-1296313449) at 2022-10-30 10:50 AM PDT -gstemmann,2022-10-30T17:54:12Z,- gstemmann submitted pull request review: [3675](https://github.com/hackforla/website/pull/3675#pullrequestreview-1161171187) at 2022-10-30 10:54 AM PDT -gstemmann,2022-10-31T16:11:07Z,- gstemmann submitted pull request review: [3677](https://github.com/hackforla/website/pull/3677#pullrequestreview-1162152986) at 2022-10-31 09:11 AM PDT -gstemmann,2022-10-31T16:52:08Z,- gstemmann commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1297382197) at 2022-10-31 09:52 AM PDT -gstemmann,2022-10-31T20:36:29Z,- gstemmann submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1162525535) at 2022-10-31 01:36 PM PDT -gstemmann,2022-11-02T16:48:25Z,- gstemmann commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1300884984) at 2022-11-02 09:48 AM PDT -gstemmann,2022-11-02T20:06:06Z,- gstemmann commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301168124) at 2022-11-02 01:06 PM PDT -gstemmann,2022-11-02T21:37:16Z,- gstemmann commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301323757) at 2022-11-02 02:37 PM PDT -gstemmann,2022-11-02T21:37:43Z,- gstemmann submitted pull request review: [3689](https://github.com/hackforla/website/pull/3689#pullrequestreview-1166042745) at 2022-11-02 02:37 PM PDT -gstemmann,2022-11-06T17:37:24Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1304853459) at 2022-11-06 09:37 AM PST -gstemmann,2022-11-06T23:24:48Z,- gstemmann submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1169671527) at 2022-11-06 03:24 PM PST -gstemmann,2022-11-13T17:57:32Z,- gstemmann commented on issue: [3614](https://github.com/hackforla/website/issues/3614#issuecomment-1312786347) at 2022-11-13 09:57 AM PST -gstemmann,2022-11-13T18:45:29Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7798857769) at 2022-11-13 10:45 AM PST -gstemmann,2022-11-13T18:48:07Z,- gstemmann closed issue as completed: [3614](https://github.com/hackforla/website/issues/3614#event-7798861057) at 2022-11-13 10:48 AM PST -gstemmann,2022-11-13T18:57:43Z,- gstemmann reopened issue: [3604](https://github.com/hackforla/website/issues/3604#event-7798857769) at 2022-11-13 10:57 AM PST -gstemmann,2022-11-13T19:35:45Z,- gstemmann commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1312804417) at 2022-11-13 11:35 AM PST -gstemmann,2022-11-13T19:35:45Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7798922045) at 2022-11-13 11:35 AM PST -gstemmann,2022-11-14T01:38:11Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1312929189) at 2022-11-13 05:38 PM PST -gstemmann,2022-11-25T21:54:24Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1327903391) at 2022-11-25 01:54 PM PST -gstemmann,2022-11-27T01:08:16Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1328145114) at 2022-11-26 05:08 PM PST -gstemmann,2022-11-27T09:49:50Z,- gstemmann assigned to issue: [3604](https://github.com/hackforla/website/issues/3604#event-7798922045) at 2022-11-27 01:49 AM PST -gstemmann,2022-11-27T17:10:48Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7897893973) at 2022-11-27 09:10 AM PST -gstemmann,2022-11-27T20:24:34Z,- gstemmann closed issue as completed: [3604](https://github.com/hackforla/website/issues/3604#event-7898118176) at 2022-11-27 12:24 PM PST -gstemmann,2022-11-27T23:53:15Z,- gstemmann commented on issue: [3604](https://github.com/hackforla/website/issues/3604#issuecomment-1328372991) at 2022-11-27 03:53 PM PST -gstemmann,2022-12-03T09:46:46Z,- gstemmann commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1336124569) at 2022-12-03 01:46 AM PST -gstemmann,2023-01-08T18:33:01Z,- gstemmann commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1374898813) at 2023-01-08 10:33 AM PST -gstemmann,2023-01-09T04:14:26Z,- gstemmann commented on pull request: [3798](https://github.com/hackforla/website/pull/3798#issuecomment-1375086857) at 2023-01-08 08:14 PM PST -gurjot03,2023-10-30T10:20:50Z,- gurjot03 opened pull request: [5795](https://github.com/hackforla/website/pull/5795) at 2023-10-30 03:20 AM PDT -gurjot03,2023-10-30T20:42:16Z,- gurjot03 pull request closed w/o merging: [5795](https://github.com/hackforla/website/pull/5795#event-10812851649) at 2023-10-30 01:42 PM PDT -H1Angela,2019-11-18T18:24:37Z,- H1Angela assigned to issue: [499](https://github.com/hackforla/website/issues/499) at 2019-11-18 10:24 AM PST -H1Angela,2020-01-24T02:12:43Z,- H1Angela commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-577963240) at 2020-01-23 06:12 PM PST -H1Angela,2020-01-24T05:54:23Z,- H1Angela unassigned from issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-578001448) at 2020-01-23 09:54 PM PST -H1Angela,2020-03-10T02:20:20Z,- H1Angela commented on issue: [499](https://github.com/hackforla/website/issues/499#issuecomment-596867262) at 2020-03-09 07:20 PM PDT -h3nry-m,3612,SKILLS ISSUE -h3nry-m,2022-10-11T02:55:45Z,- h3nry-m opened issue: [3612](https://github.com/hackforla/website/issues/3612) at 2022-10-10 07:55 PM PDT -h3nry-m,2022-10-12T03:02:25Z,- h3nry-m assigned to issue: [3612](https://github.com/hackforla/website/issues/3612) at 2022-10-11 08:02 PM PDT -h3nry-m,2022-10-12T03:09:29Z,- h3nry-m assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1232437217) at 2022-10-11 08:09 PM PDT -h3nry-m,2022-10-18T00:48:24Z,- h3nry-m commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1281671883) at 2022-10-17 05:48 PM PDT -h3nry-m,2022-10-19T02:31:20Z,- h3nry-m unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1281671883) at 2022-10-18 07:31 PM PDT -h3nry-m,2022-10-19T15:50:37Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1284229625) at 2022-10-19 08:50 AM PDT -h3nry-m,2022-10-25T20:35:06Z,- h3nry-m assigned to issue: [2857](https://github.com/hackforla/website/issues/2857#issuecomment-1048434128) at 2022-10-25 01:35 PM PDT -h3nry-m,2022-10-25T21:48:10Z,- h3nry-m opened pull request: [3659](https://github.com/hackforla/website/pull/3659) at 2022-10-25 02:48 PM PDT -h3nry-m,2022-10-25T21:54:54Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1291184821) at 2022-10-25 02:54 PM PDT -h3nry-m,2022-10-25T21:55:45Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1291185443) at 2022-10-25 02:55 PM PDT -h3nry-m,2022-10-26T00:13:00Z,- h3nry-m pull request merged: [3659](https://github.com/hackforla/website/pull/3659#event-7668021141) at 2022-10-25 05:13 PM PDT -h3nry-m,2022-11-16T22:13:25Z,- h3nry-m assigned to issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1145848740) at 2022-11-16 02:13 PM PST -h3nry-m,2022-11-28T06:28:37Z,- h3nry-m opened pull request: [3751](https://github.com/hackforla/website/pull/3751) at 2022-11-27 10:28 PM PST -h3nry-m,2022-11-28T06:36:37Z,- h3nry-m commented on issue: [3209](https://github.com/hackforla/website/issues/3209#issuecomment-1328610070) at 2022-11-27 10:36 PM PST -h3nry-m,2022-11-29T02:38:27Z,- h3nry-m pull request merged: [3751](https://github.com/hackforla/website/pull/3751#event-7908409081) at 2022-11-28 06:38 PM PST -h3nry-m,2022-11-29T07:08:43Z,- h3nry-m assigned to issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1327102635) at 2022-11-28 11:08 PM PST -h3nry-m,2022-11-30T01:14:36Z,- h3nry-m opened pull request: [3754](https://github.com/hackforla/website/pull/3754) at 2022-11-29 05:14 PM PST -h3nry-m,2022-11-30T01:23:34Z,- h3nry-m commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1331526866) at 2022-11-29 05:23 PM PST -h3nry-m,2022-12-06T06:18:35Z,- h3nry-m commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1338824012) at 2022-12-05 10:18 PM PST -h3nry-m,2022-12-20T01:07:21Z,- h3nry-m commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1358698437) at 2022-12-19 05:07 PM PST -h3nry-m,2022-12-20T01:07:53Z,- h3nry-m commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1358698845) at 2022-12-19 05:07 PM PST -h3nry-m,2022-12-20T01:21:28Z,- h3nry-m pull request closed w/o merging: [3754](https://github.com/hackforla/website/pull/3754#event-8074143133) at 2022-12-19 05:21 PM PST -h3nry-m,2022-12-20T01:23:57Z,- h3nry-m unassigned from issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1331526866) at 2022-12-19 05:23 PM PST -h3nry-m,2023-01-06T20:44:16Z,- h3nry-m closed issue as not planned: [3612](https://github.com/hackforla/website/issues/3612#event-8172275051) at 2023-01-06 12:44 PM PST -ha-bach,5086,SKILLS ISSUE -ha-bach,2023-07-26T03:21:51Z,- ha-bach opened issue: [5086](https://github.com/hackforla/website/issues/5086) at 2023-07-25 08:21 PM PDT -ha-bach,2023-07-26T03:21:52Z,- ha-bach assigned to issue: [5086](https://github.com/hackforla/website/issues/5086) at 2023-07-25 08:21 PM PDT -ha-bach,2023-07-29T09:20:23Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1656675628) at 2023-07-29 02:20 AM PDT -ha-bach,2023-07-30T06:15:07Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1657054972) at 2023-07-29 11:15 PM PDT -ha-bach,2023-08-06T15:49:46Z,- ha-bach assigned to issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1641392054) at 2023-08-06 08:49 AM PDT -ha-bach,2023-08-06T15:53:35Z,- ha-bach commented on issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1666903195) at 2023-08-06 08:53 AM PDT -ha-bach,2023-08-06T16:15:52Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1666909195) at 2023-08-06 09:15 AM PDT -ha-bach,2023-08-06T16:20:25Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1666910372) at 2023-08-06 09:20 AM PDT -ha-bach,2023-08-06T16:45:06Z,- ha-bach closed issue as completed: [5086](https://github.com/hackforla/website/issues/5086#event-10017613270) at 2023-08-06 09:45 AM PDT -ha-bach,2023-08-06T16:56:41Z,- ha-bach assigned to issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666913046) at 2023-08-06 09:56 AM PDT -ha-bach,2023-08-06T16:57:17Z,- ha-bach commented on issue: [5131](https://github.com/hackforla/website/issues/5131#issuecomment-1666920020) at 2023-08-06 09:57 AM PDT -ha-bach,2023-08-06T17:55:59Z,- ha-bach opened pull request: [5152](https://github.com/hackforla/website/pull/5152) at 2023-08-06 10:55 AM PDT -ha-bach,2023-08-09T03:50:43Z,- ha-bach pull request merged: [5152](https://github.com/hackforla/website/pull/5152#event-10042037090) at 2023-08-08 08:50 PM PDT -ha-bach,2023-08-12T02:22:19Z,- ha-bach reopened issue: [5086](https://github.com/hackforla/website/issues/5086#event-10017613270) at 2023-08-11 07:22 PM PDT -ha-bach,2023-08-12T02:22:21Z,- ha-bach closed issue as completed: [5086](https://github.com/hackforla/website/issues/5086#event-10075194330) at 2023-08-11 07:22 PM PDT -ha-bach,2023-08-12T02:24:16Z,- ha-bach commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1675627875) at 2023-08-11 07:24 PM PDT -ha-bach,2023-08-23T02:40:42Z,- ha-bach commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1689175018) at 2023-08-22 07:40 PM PDT -ha-bach,2023-08-26T19:52:00Z,- ha-bach submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1597041035) at 2023-08-26 12:52 PM PDT -ha-bach,2023-09-10T17:21:32Z,- ha-bach commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712886843) at 2023-09-10 10:21 AM PDT -ha-bach,2023-09-10T18:27:58Z,- ha-bach commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712905803) at 2023-09-10 11:27 AM PDT -ha-bach,2023-09-10T21:43:03Z,- ha-bach commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712946668) at 2023-09-10 02:43 PM PDT -ha-bach,2023-09-10T21:43:13Z,- ha-bach submitted pull request review: [5469](https://github.com/hackforla/website/pull/5469#pullrequestreview-1618923094) at 2023-09-10 02:43 PM PDT -ha-bach,2023-09-24T17:19:34Z,- ha-bach commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1732623982) at 2023-09-24 10:19 AM PDT -ha-bach,2023-09-24T17:20:01Z,- ha-bach commented on pull request: [5570](https://github.com/hackforla/website/pull/5570#issuecomment-1732624077) at 2023-09-24 10:20 AM PDT -ha-bach,2023-09-28T03:39:35Z,- ha-bach submitted pull request review: [5576](https://github.com/hackforla/website/pull/5576#pullrequestreview-1647838081) at 2023-09-27 08:39 PM PDT -ha-bach,2024-05-22T02:36:14Z,- ha-bach reopened issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1675627875) at 2024-05-21 07:36 PM PDT -ha-bach,2024-05-27T22:03:45Z,- ha-bach assigned to issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2119379952) at 2024-05-27 03:03 PM PDT -ha-bach,2024-05-27T22:10:35Z,- ha-bach commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2134094681) at 2024-05-27 03:10 PM PDT -ha-bach,2024-05-27T22:18:12Z,- ha-bach closed issue as completed: [5086](https://github.com/hackforla/website/issues/5086#event-12949907673) at 2024-05-27 03:18 PM PDT -ha-bach,2024-05-27T22:21:09Z,- ha-bach commented on issue: [6731](https://github.com/hackforla/website/issues/6731#issuecomment-2134101872) at 2024-05-27 03:21 PM PDT -ha-bach,2024-05-27T22:48:39Z,- ha-bach submitted pull request review: [6900](https://github.com/hackforla/website/pull/6900#pullrequestreview-2081512690) at 2024-05-27 03:48 PM PDT -ha-bach,2024-05-27T23:50:19Z,- ha-bach opened issue: [6902](https://github.com/hackforla/website/issues/6902) at 2024-05-27 04:50 PM PDT -ha-bach,2024-05-30T23:59:05Z,- ha-bach commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2141019922) at 2024-05-30 04:59 PM PDT -ha-bach,2024-05-31T00:25:42Z,- ha-bach submitted pull request review: [6900](https://github.com/hackforla/website/pull/6900#pullrequestreview-2089553068) at 2024-05-30 05:25 PM PDT -ha-bach,2024-05-31T17:42:15Z,- ha-bach commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2142712068) at 2024-05-31 10:42 AM PDT -ha-bach,2024-06-01T19:30:19Z,- ha-bach submitted pull request review: [6915](https://github.com/hackforla/website/pull/6915#pullrequestreview-2092164494) at 2024-06-01 12:30 PM PDT -ha-bach,2024-06-01T19:52:43Z,- ha-bach assigned to issue: [6754](https://github.com/hackforla/website/issues/6754) at 2024-06-01 12:52 PM PDT -ha-bach,2024-06-01T19:53:34Z,- ha-bach commented on issue: [6754](https://github.com/hackforla/website/issues/6754#issuecomment-2143565456) at 2024-06-01 12:53 PM PDT -ha-bach,2024-06-02T16:50:59Z,- ha-bach assigned to issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2134148437) at 2024-06-02 09:50 AM PDT -ha-bach,2024-06-02T17:19:11Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2143950496) at 2024-06-02 10:19 AM PDT -ha-bach,2024-06-06T17:07:27Z,- ha-bach assigned to issue: [6909](https://github.com/hackforla/website/issues/6909#issuecomment-2136837472) at 2024-06-06 10:07 AM PDT -ha-bach,2024-06-06T17:09:41Z,- ha-bach commented on issue: [6909](https://github.com/hackforla/website/issues/6909#issuecomment-2153017347) at 2024-06-06 10:09 AM PDT -ha-bach,2024-06-08T00:05:10Z,- ha-bach opened pull request: [6973](https://github.com/hackforla/website/pull/6973) at 2024-06-07 05:05 PM PDT -ha-bach,2024-06-13T20:44:20Z,- ha-bach pull request merged: [6973](https://github.com/hackforla/website/pull/6973#event-13152590421) at 2024-06-13 01:44 PM PDT -ha-bach,2024-06-19T14:13:14Z,- ha-bach commented on pull request: [7016](https://github.com/hackforla/website/pull/7016#issuecomment-2178824831) at 2024-06-19 07:13 AM PDT -ha-bach,2024-06-19T14:13:34Z,- ha-bach commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2178825518) at 2024-06-19 07:13 AM PDT -ha-bach,2024-06-19T18:43:35Z,- ha-bach submitted pull request review: [6976](https://github.com/hackforla/website/pull/6976#pullrequestreview-2128892458) at 2024-06-19 11:43 AM PDT -ha-bach,2024-06-19T18:49:47Z,- ha-bach submitted pull request review: [7016](https://github.com/hackforla/website/pull/7016#pullrequestreview-2128898580) at 2024-06-19 11:49 AM PDT -ha-bach,2024-06-19T19:24:33Z,- ha-bach assigned to issue: [6931](https://github.com/hackforla/website/issues/6931) at 2024-06-19 12:24 PM PDT -ha-bach,2024-06-19T19:26:01Z,- ha-bach commented on issue: [6931](https://github.com/hackforla/website/issues/6931#issuecomment-2179352048) at 2024-06-19 12:26 PM PDT -ha-bach,2024-06-19T20:09:35Z,- ha-bach opened pull request: [7037](https://github.com/hackforla/website/pull/7037) at 2024-06-19 01:09 PM PDT -ha-bach,2024-06-20T20:07:59Z,- ha-bach pull request merged: [7037](https://github.com/hackforla/website/pull/7037#event-13233990665) at 2024-06-20 01:07 PM PDT -ha-bach,2024-06-28T18:06:16Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2197411730) at 2024-06-28 11:06 AM PDT -ha-bach,2024-06-28T18:07:42Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2197413250) at 2024-06-28 11:07 AM PDT -ha-bach,2024-06-28T18:07:42Z,- ha-bach closed issue as completed: [6902](https://github.com/hackforla/website/issues/6902#event-13334835199) at 2024-06-28 11:07 AM PDT -ha-bach,2024-06-28T18:11:44Z,- ha-bach commented on pull request: [7077](https://github.com/hackforla/website/pull/7077#issuecomment-2197417561) at 2024-06-28 11:11 AM PDT -ha-bach,2024-07-01T17:02:05Z,- ha-bach submitted pull request review: [7077](https://github.com/hackforla/website/pull/7077#pullrequestreview-2151849549) at 2024-07-01 10:02 AM PDT -ha-bach,2024-07-07T17:02:27Z,- ha-bach commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2212509858) at 2024-07-07 10:02 AM PDT -ha-bach,2024-07-07T18:02:15Z,- ha-bach submitted pull request review: [7088](https://github.com/hackforla/website/pull/7088#pullrequestreview-2161901002) at 2024-07-07 11:02 AM PDT -ha-bach,2024-07-07T18:12:53Z,- ha-bach opened issue: [7089](https://github.com/hackforla/website/issues/7089) at 2024-07-07 11:12 AM PDT -ha-bach,2024-07-07T18:21:42Z,- ha-bach commented on issue: [6902](https://github.com/hackforla/website/issues/6902#issuecomment-2212530298) at 2024-07-07 11:21 AM PDT -ha-bach,2024-07-07T18:30:02Z,- ha-bach opened issue: [7090](https://github.com/hackforla/website/issues/7090) at 2024-07-07 11:30 AM PDT -ha-bach,2024-07-13T22:22:03Z,- ha-bach submitted pull request review: [7088](https://github.com/hackforla/website/pull/7088#pullrequestreview-2176553442) at 2024-07-13 03:22 PM PDT -ha-bach,2024-07-28T20:04:47Z,- ha-bach commented on pull request: [7141](https://github.com/hackforla/website/pull/7141#issuecomment-2254629445) at 2024-07-28 01:04 PM PDT -ha-bach,2024-07-28T20:15:02Z,- ha-bach submitted pull request review: [7141](https://github.com/hackforla/website/pull/7141#pullrequestreview-2203567081) at 2024-07-28 01:15 PM PDT -ha-bach,2024-08-10T18:58:02Z,- ha-bach commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2282246075) at 2024-08-10 11:58 AM PDT -ha-bach,2024-08-10T19:15:20Z,- ha-bach submitted pull request review: [6915](https://github.com/hackforla/website/pull/6915#pullrequestreview-2231631299) at 2024-08-10 12:15 PM PDT -HackforLABot,2021-05-26T14:41:16Z,- HackforLABot opened issue: [1642](https://github.com/hackforla/website/issues/1642) at 2021-05-26 07:41 AM PDT -HackforLABot,2021-05-26T14:44:58Z,- HackforLABot opened issue: [1643](https://github.com/hackforla/website/issues/1643) at 2021-05-26 07:44 AM PDT -HackforLABot,2021-05-26T15:20:47Z,- HackforLABot opened issue: [1644](https://github.com/hackforla/website/issues/1644) at 2021-05-26 08:20 AM PDT -HackforLABot,2021-05-26T15:35:19Z,- HackforLABot opened issue: [1646](https://github.com/hackforla/website/issues/1646) at 2021-05-26 08:35 AM PDT -HackforLABot,2021-05-26T15:36:59Z,- HackforLABot opened issue: [1647](https://github.com/hackforla/website/issues/1647) at 2021-05-26 08:36 AM PDT -HackforLABot,2021-05-26T15:38:40Z,- HackforLABot opened issue: [1648](https://github.com/hackforla/website/issues/1648) at 2021-05-26 08:38 AM PDT -HackforLABot,2021-05-26T15:39:14Z,- HackforLABot opened issue: [1649](https://github.com/hackforla/website/issues/1649) at 2021-05-26 08:39 AM PDT -HackforLABot,2021-05-26T15:59:06Z,- HackforLABot opened issue: [1650](https://github.com/hackforla/website/issues/1650) at 2021-05-26 08:59 AM PDT -HackforLABot,2021-05-26T16:09:10Z,- HackforLABot opened issue: [1651](https://github.com/hackforla/website/issues/1651) at 2021-05-26 09:09 AM PDT -HackforLABot,2021-05-26T16:12:45Z,- HackforLABot opened issue: [1652](https://github.com/hackforla/website/issues/1652) at 2021-05-26 09:12 AM PDT -HackforLABot,2021-05-26T16:14:59Z,- HackforLABot opened issue: [1653](https://github.com/hackforla/website/issues/1653) at 2021-05-26 09:14 AM PDT -HackforLABot,2021-05-26T16:15:47Z,- HackforLABot opened issue: [1654](https://github.com/hackforla/website/issues/1654) at 2021-05-26 09:15 AM PDT -HackforLABot,2021-05-26T16:16:11Z,- HackforLABot opened issue: [1655](https://github.com/hackforla/website/issues/1655) at 2021-05-26 09:16 AM PDT -HackforLABot,2021-05-26T16:16:36Z,- HackforLABot opened issue: [1656](https://github.com/hackforla/website/issues/1656) at 2021-05-26 09:16 AM PDT -HackforLABot,2021-05-26T16:20:29Z,- HackforLABot opened issue: [1657](https://github.com/hackforla/website/issues/1657) at 2021-05-26 09:20 AM PDT -HackforLABot,2021-05-26T16:21:04Z,- HackforLABot opened issue: [1658](https://github.com/hackforla/website/issues/1658) at 2021-05-26 09:21 AM PDT -HackforLABot,2021-05-26T16:22:39Z,- HackforLABot opened issue: [1659](https://github.com/hackforla/website/issues/1659) at 2021-05-26 09:22 AM PDT -HackforLABot,2021-05-26T16:24:04Z,- HackforLABot opened issue: [1660](https://github.com/hackforla/website/issues/1660) at 2021-05-26 09:24 AM PDT -HackforLABot,2021-05-26T16:24:46Z,- HackforLABot opened issue: [1661](https://github.com/hackforla/website/issues/1661) at 2021-05-26 09:24 AM PDT -HackforLABot,2021-05-26T16:32:00Z,- HackforLABot opened issue: [1662](https://github.com/hackforla/website/issues/1662) at 2021-05-26 09:32 AM PDT -HackforLABot,2021-05-26T16:32:28Z,- HackforLABot opened issue: [1663](https://github.com/hackforla/website/issues/1663) at 2021-05-26 09:32 AM PDT -HackforLABot,2021-05-26T17:17:22Z,- HackforLABot opened issue: [1664](https://github.com/hackforla/website/issues/1664) at 2021-05-26 10:17 AM PDT -HackforLABot,2021-05-26T17:26:13Z,- HackforLABot opened issue: [1665](https://github.com/hackforla/website/issues/1665) at 2021-05-26 10:26 AM PDT -HackforLABot,2021-05-26T17:32:41Z,- HackforLABot opened issue: [1666](https://github.com/hackforla/website/issues/1666) at 2021-05-26 10:32 AM PDT -HackforLABot,2021-05-26T17:51:37Z,- HackforLABot opened issue: [1667](https://github.com/hackforla/website/issues/1667) at 2021-05-26 10:51 AM PDT -HackforLABot,2021-05-30T17:32:34Z,- HackforLABot opened issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-05-30 10:32 AM PDT -HackforLABot,2021-06-11T21:13:47Z,- HackforLABot opened issue: [1714](https://github.com/hackforla/website/issues/1714) at 2021-06-11 02:13 PM PDT -HackforLABot,2021-06-12T16:32:20Z,- HackforLABot assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -HackforLABot,2021-06-12T16:32:31Z,- HackforLABot unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -HackforLABot,2021-06-12T19:40:20Z,- HackforLABot closed issue as completed: [1723](https://github.com/hackforla/website/issues/1723#event-4881603719) at 2021-06-12 12:40 PM PDT -HackforLABot,2021-06-12T19:54:25Z,- HackforLABot opened issue: [1727](https://github.com/hackforla/website/issues/1727) at 2021-06-12 12:54 PM PDT -HackforLABot,2021-06-12T19:54:27Z,- HackforLABot assigned to issue: [1727](https://github.com/hackforla/website/issues/1727) at 2021-06-12 12:54 PM PDT -HackforLABot,2021-06-12T19:54:34Z,- HackforLABot unassigned from issue: [1727](https://github.com/hackforla/website/issues/1727) at 2021-06-12 12:54 PM PDT -HackforLABot,2021-06-17T23:47:37Z,- HackforLABot opened issue: [1766](https://github.com/hackforla/website/issues/1766) at 2021-06-17 04:47 PM PDT -HackforLABot,2021-06-18T00:06:15Z,- HackforLABot opened issue: [1767](https://github.com/hackforla/website/issues/1767) at 2021-06-17 05:06 PM PDT -HackforLABot,2021-06-18T00:20:11Z,- HackforLABot opened issue: [1768](https://github.com/hackforla/website/issues/1768) at 2021-06-17 05:20 PM PDT -HackforLABot,2021-06-18T00:30:48Z,- HackforLABot opened issue: [1769](https://github.com/hackforla/website/issues/1769) at 2021-06-17 05:30 PM PDT -HackforLABot,2021-06-18T00:35:04Z,- HackforLABot opened issue: [1770](https://github.com/hackforla/website/issues/1770) at 2021-06-17 05:35 PM PDT -HackforLABot,2021-06-18T02:13:15Z,- HackforLABot opened issue: [1772](https://github.com/hackforla/website/issues/1772) at 2021-06-17 07:13 PM PDT -HackforLABot,2021-06-18T15:25:49Z,- HackforLABot opened issue: [1776](https://github.com/hackforla/website/issues/1776) at 2021-06-18 08:25 AM PDT -HackforLABot,2021-06-18T15:27:41Z,- HackforLABot opened issue: [1777](https://github.com/hackforla/website/issues/1777) at 2021-06-18 08:27 AM PDT -HackforLABot,2021-06-18T15:41:42Z,- HackforLABot opened issue: [1778](https://github.com/hackforla/website/issues/1778) at 2021-06-18 08:41 AM PDT -HackforLABot,2021-06-18T16:48:00Z,- HackforLABot opened issue: [1779](https://github.com/hackforla/website/issues/1779) at 2021-06-18 09:48 AM PDT -HackforLABot,2021-06-18T21:00:12Z,- HackforLABot opened issue: [1781](https://github.com/hackforla/website/issues/1781) at 2021-06-18 02:00 PM PDT -HackforLABot,2021-06-19T16:10:12Z,- HackforLABot opened issue: [1786](https://github.com/hackforla/website/issues/1786) at 2021-06-19 09:10 AM PDT -HackforLABot,2021-06-22T06:07:56Z,- HackforLABot opened pull request: [1808](https://github.com/hackforla/website/pull/1808) at 2021-06-21 11:07 PM PDT -HackforLABot,2021-06-22T06:11:39Z,- HackforLABot pull request closed w/o merging: [1808](https://github.com/hackforla/website/pull/1808#event-4920553918) at 2021-06-21 11:11 PM PDT -HackforLABot,2021-06-22T06:17:02Z,- HackforLABot reopened pull request: [1809](https://github.com/hackforla/website/pull/1809#event-4920573132) at 2021-06-21 11:17 PM PDT -HackforLABot,2021-06-22T06:26:26Z,- HackforLABot opened pull request: [1811](https://github.com/hackforla/website/pull/1811) at 2021-06-21 11:26 PM PDT -HackforLABot,2021-06-22T06:26:30Z,- HackforLABot pull request closed w/o merging: [1811](https://github.com/hackforla/website/pull/1811#event-4920608348) at 2021-06-21 11:26 PM PDT -HackforLABot,2021-06-22T06:26:46Z,- HackforLABot opened pull request: [1812](https://github.com/hackforla/website/pull/1812) at 2021-06-21 11:26 PM PDT -HackforLABot,2021-06-22T06:27:32Z,- HackforLABot pull request closed w/o merging: [1812](https://github.com/hackforla/website/pull/1812#event-4920612439) at 2021-06-21 11:27 PM PDT -HackforLABot,2021-07-02T19:34:19Z,- HackforLABot opened issue: [1881](https://github.com/hackforla/website/issues/1881) at 2021-07-02 12:34 PM PDT -HackforLABot,2021-07-10T22:46:47Z,- HackforLABot opened issue: [1916](https://github.com/hackforla/website/issues/1916) at 2021-07-10 03:46 PM PDT -HackforLABot,2021-07-28T17:15:39Z,- HackforLABot opened issue: [2017](https://github.com/hackforla/website/issues/2017) at 2021-07-28 10:15 AM PDT -HackforLABot,2021-08-20T06:42:50Z,- HackforLABot opened issue: [2142](https://github.com/hackforla/website/issues/2142) at 2021-08-19 11:42 PM PDT -HackforLABot,2021-08-20T06:47:32Z,- HackforLABot opened issue: [2143](https://github.com/hackforla/website/issues/2143) at 2021-08-19 11:47 PM PDT -HackforLABot,2022-09-16T03:58:08Z,- HackforLABot closed issue by PR 3551: [2824](https://github.com/hackforla/website/issues/2824#event-7399843254) at 2022-09-15 08:58 PM PDT -HackforLABot,2024-04-17T23:41:30Z,- HackforLABot opened issue: [6662](https://github.com/hackforla/website/issues/6662) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:31Z,- HackforLABot opened issue: [6663](https://github.com/hackforla/website/issues/6663) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:32Z,- HackforLABot opened issue: [6664](https://github.com/hackforla/website/issues/6664) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:33Z,- HackforLABot opened issue: [6665](https://github.com/hackforla/website/issues/6665) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:33Z,- HackforLABot opened issue: [6666](https://github.com/hackforla/website/issues/6666) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:35Z,- HackforLABot opened issue: [6668](https://github.com/hackforla/website/issues/6668) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:35Z,- HackforLABot opened issue: [6669](https://github.com/hackforla/website/issues/6669) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:36Z,- HackforLABot opened issue: [6670](https://github.com/hackforla/website/issues/6670) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:37Z,- HackforLABot opened issue: [6671](https://github.com/hackforla/website/issues/6671) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:37Z,- HackforLABot opened issue: [6672](https://github.com/hackforla/website/issues/6672) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:38Z,- HackforLABot opened issue: [6673](https://github.com/hackforla/website/issues/6673) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:39Z,- HackforLABot opened issue: [6674](https://github.com/hackforla/website/issues/6674) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:39Z,- HackforLABot opened issue: [6675](https://github.com/hackforla/website/issues/6675) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-04-17T23:41:41Z,- HackforLABot opened issue: [6677](https://github.com/hackforla/website/issues/6677) at 2024-04-17 04:41 PM PDT -HackforLABot,2024-05-05T17:47:06Z,- HackforLABot closed issue as completed: [6344](https://github.com/hackforla/website/issues/6344#event-12707977425) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:07Z,- HackforLABot commented on issue: [6254](https://github.com/hackforla/website/issues/6254#issuecomment-2094891371) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:07Z,- HackforLABot closed issue as completed: [6254](https://github.com/hackforla/website/issues/6254#event-12707977446) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:07Z,- HackforLABot commented on issue: [6344](https://github.com/hackforla/website/issues/6344#issuecomment-2094891367) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:08Z,- HackforLABot commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2094891377) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:08Z,- HackforLABot closed issue as completed: [6348](https://github.com/hackforla/website/issues/6348#event-12707977469) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:09Z,- HackforLABot commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-2094891380) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:09Z,- HackforLABot closed issue as completed: [6251](https://github.com/hackforla/website/issues/6251#event-12707977507) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:09Z,- HackforLABot closed issue as completed: [6332](https://github.com/hackforla/website/issues/6332#event-12707977517) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:10Z,- HackforLABot closed issue as completed: [6128](https://github.com/hackforla/website/issues/6128#event-12707977554) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:10Z,- HackforLABot commented on issue: [6332](https://github.com/hackforla/website/issues/6332#issuecomment-2094891381) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:11Z,- HackforLABot commented on issue: [6128](https://github.com/hackforla/website/issues/6128#issuecomment-2094891385) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:11Z,- HackforLABot closed issue as completed: [6335](https://github.com/hackforla/website/issues/6335#event-12707977582) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:12Z,- HackforLABot closed issue as completed: [6244](https://github.com/hackforla/website/issues/6244#event-12707977604) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:12Z,- HackforLABot commented on issue: [6335](https://github.com/hackforla/website/issues/6335#issuecomment-2094891390) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:13Z,- HackforLABot commented on issue: [6244](https://github.com/hackforla/website/issues/6244#issuecomment-2094891393) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:13Z,- HackforLABot commented on issue: [6250](https://github.com/hackforla/website/issues/6250#issuecomment-2094891398) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:13Z,- HackforLABot closed issue as completed: [6250](https://github.com/hackforla/website/issues/6250#event-12707977640) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:14Z,- HackforLABot closed issue as completed: [5909](https://github.com/hackforla/website/issues/5909#event-12707977705) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:14Z,- HackforLABot closed issue as completed: [6340](https://github.com/hackforla/website/issues/6340#event-12707977686) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-2094891405) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot commented on issue: [6338](https://github.com/hackforla/website/issues/6338#issuecomment-2094891410) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot closed issue as completed: [6338](https://github.com/hackforla/website/issues/6338#event-12707977727) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot commented on issue: [6340](https://github.com/hackforla/website/issues/6340#issuecomment-2094891402) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:15Z,- HackforLABot closed issue as completed: [6343](https://github.com/hackforla/website/issues/6343#event-12707977745) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:16Z,- HackforLABot commented on issue: [5863](https://github.com/hackforla/website/issues/5863#issuecomment-2094891418) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:16Z,- HackforLABot closed issue as completed: [5863](https://github.com/hackforla/website/issues/5863#event-12707977782) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-05T17:47:16Z,- HackforLABot commented on issue: [6343](https://github.com/hackforla/website/issues/6343#issuecomment-2094891414) at 2024-05-05 10:47 AM PDT -HackforLABot,2024-05-07T00:52:21Z,- HackforLABot opened issue: [6825](https://github.com/hackforla/website/issues/6825) at 2024-05-06 05:52 PM PDT -HackforLABot,2024-05-07T00:52:22Z,- HackforLABot opened issue: [6826](https://github.com/hackforla/website/issues/6826) at 2024-05-06 05:52 PM PDT -HackforLABot,2024-05-07T00:52:22Z,- HackforLABot opened issue: [6827](https://github.com/hackforla/website/issues/6827) at 2024-05-06 05:52 PM PDT -HackforLABot,2024-06-01T11:07:22Z,- HackforLABot closed issue as completed: [6424](https://github.com/hackforla/website/issues/6424#event-13008918393) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:23Z,- HackforLABot closed issue as completed: [6245](https://github.com/hackforla/website/issues/6245#event-13008918433) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:23Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2143408203) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:24Z,- HackforLABot commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-2143408208) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:25Z,- HackforLABot commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-2143408218) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:25Z,- HackforLABot closed issue as completed: [5090](https://github.com/hackforla/website/issues/5090#event-13008918493) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:26Z,- HackforLABot closed issue as completed: [6413](https://github.com/hackforla/website/issues/6413#event-13008918537) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:27Z,- HackforLABot commented on issue: [6413](https://github.com/hackforla/website/issues/6413#issuecomment-2143408225) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:27Z,- HackforLABot commented on issue: [6545](https://github.com/hackforla/website/issues/6545#issuecomment-2143408228) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:27Z,- HackforLABot closed issue as completed: [6545](https://github.com/hackforla/website/issues/6545#event-13008918564) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:28Z,- HackforLABot commented on issue: [6252](https://github.com/hackforla/website/issues/6252#issuecomment-2143408231) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:28Z,- HackforLABot closed issue as completed: [6252](https://github.com/hackforla/website/issues/6252#event-13008918593) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:28Z,- HackforLABot closed issue as completed: [6425](https://github.com/hackforla/website/issues/6425#event-13008918621) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-01T11:07:29Z,- HackforLABot commented on issue: [6425](https://github.com/hackforla/website/issues/6425#issuecomment-2143408233) at 2024-06-01 04:07 AM PDT -HackforLABot,2024-06-02T16:35:22Z,- HackforLABot opened issue: [6926](https://github.com/hackforla/website/issues/6926) at 2024-06-02 09:35 AM PDT -HackforLABot,2024-06-02T16:35:36Z,- HackforLABot closed issue as completed: [6926](https://github.com/hackforla/website/issues/6926#event-13012347692) at 2024-06-02 09:35 AM PDT -HackforLABot,2024-06-17T17:30:40Z,- HackforLABot opened issue: [7013](https://github.com/hackforla/website/issues/7013) at 2024-06-17 10:30 AM PDT -HackforLABot,2024-06-17T17:30:41Z,- HackforLABot opened issue: [7014](https://github.com/hackforla/website/issues/7014) at 2024-06-17 10:30 AM PDT -HackforLABot,2024-06-17T17:30:41Z,- HackforLABot opened issue: [7015](https://github.com/hackforla/website/issues/7015) at 2024-06-17 10:30 AM PDT -HackforLABot,2024-07-01T11:07:40Z,- HackforLABot closed issue as completed: [6345](https://github.com/hackforla/website/issues/6345#event-13349586883) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:41Z,- HackforLABot commented on issue: [6345](https://github.com/hackforla/website/issues/6345#issuecomment-2199859187) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:41Z,- HackforLABot commented on issue: [6604](https://github.com/hackforla/website/issues/6604#issuecomment-2199859199) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:41Z,- HackforLABot closed issue as completed: [6604](https://github.com/hackforla/website/issues/6604#event-13349586974) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:43Z,- HackforLABot commented on issue: [6600](https://github.com/hackforla/website/issues/6600#issuecomment-2199859285) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:43Z,- HackforLABot closed issue as completed: [6600](https://github.com/hackforla/website/issues/6600#event-13349587442) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:44Z,- HackforLABot closed issue as completed: [6478](https://github.com/hackforla/website/issues/6478#event-13349587705) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:44Z,- HackforLABot closed issue as completed: [6605](https://github.com/hackforla/website/issues/6605#event-13349587770) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2199859327) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot closed issue as completed: [6532](https://github.com/hackforla/website/issues/6532#event-13349587956) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2199859335) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot commented on issue: [6609](https://github.com/hackforla/website/issues/6609#issuecomment-2199859354) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:45Z,- HackforLABot closed issue as completed: [6609](https://github.com/hackforla/website/issues/6609#event-13349587854) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2199859371) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot commented on issue: [6596](https://github.com/hackforla/website/issues/6596#issuecomment-2199859396) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot closed issue as completed: [6596](https://github.com/hackforla/website/issues/6596#event-13349588118) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot commented on issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2199859383) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:46Z,- HackforLABot closed issue as completed: [6728](https://github.com/hackforla/website/issues/6728#event-13349588039) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:47Z,- HackforLABot closed issue as completed: [4999](https://github.com/hackforla/website/issues/4999#event-13349588495) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:48Z,- HackforLABot commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2199859461) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:48Z,- HackforLABot closed issue as completed: [6628](https://github.com/hackforla/website/issues/6628#event-13349588651) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:07:49Z,- HackforLABot commented on issue: [6628](https://github.com/hackforla/website/issues/6628#issuecomment-2199859483) at 2024-07-01 04:07 AM PDT -HackforLABot,2024-07-01T11:08:20Z,- HackforLABot opened issue: [7084](https://github.com/hackforla/website/issues/7084) at 2024-07-01 04:08 AM PDT -HackforLABot,2024-07-15T22:28:00Z,- HackforLABot commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229542020) at 2024-07-15 03:28 PM PDT -HackforLABot,2024-07-15T23:24:40Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-07-15 04:24 PM PDT -HackforLABot,2024-07-16T00:33:44Z,- HackforLABot commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229736172) at 2024-07-15 05:33 PM PDT -HackforLABot,2024-07-16T05:08:59Z,- HackforLABot commented on issue: [7103](https://github.com/hackforla/website/issues/7103#issuecomment-2230036389) at 2024-07-15 10:08 PM PDT -HackforLABot,2024-07-16T22:24:59Z,- HackforLABot commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2231921551) at 2024-07-16 03:24 PM PDT -HackforLABot,2024-07-18T19:14:55Z,- HackforLABot commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2237353616) at 2024-07-18 12:14 PM PDT -HackforLABot,2024-07-19T01:55:35Z,- HackforLABot commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2237891433) at 2024-07-18 06:55 PM PDT -HackforLABot,2024-07-19T01:55:38Z,- HackforLABot commented on issue: [3525](https://github.com/hackforla/website/issues/3525#issuecomment-2237891776) at 2024-07-18 06:55 PM PDT -HackforLABot,2024-07-19T01:55:53Z,- HackforLABot commented on issue: [7096](https://github.com/hackforla/website/issues/7096#issuecomment-2237893026) at 2024-07-18 06:55 PM PDT -HackforLABot,2024-07-20T08:29:08Z,- HackforLABot commented on issue: [7117](https://github.com/hackforla/website/issues/7117#issuecomment-2241043992) at 2024-07-20 01:29 AM PDT -HackforLABot,2024-07-21T17:13:07Z,- HackforLABot commented on issue: [7115](https://github.com/hackforla/website/issues/7115#issuecomment-2241716403) at 2024-07-21 10:13 AM PDT -HackforLABot,2024-07-22T17:05:23Z,- HackforLABot commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2243424678) at 2024-07-22 10:05 AM PDT -HackforLABot,2024-07-22T19:23:46Z,- HackforLABot commented on issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2243657939) at 2024-07-22 12:23 PM PDT -HackforLABot,2024-07-23T19:44:14Z,- HackforLABot commented on issue: [7110](https://github.com/hackforla/website/issues/7110#issuecomment-2246148598) at 2024-07-23 12:44 PM PDT -HackforLABot,2024-07-25T02:38:02Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2249249211) at 2024-07-24 07:38 PM PDT -HackforLABot,2024-07-27T01:13:41Z,- HackforLABot commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253690494) at 2024-07-26 06:13 PM PDT -HackforLABot,2024-07-27T01:30:21Z,- HackforLABot commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253695746) at 2024-07-26 06:30 PM PDT -HackforLABot,2024-07-29T20:24:40Z,- HackforLABot commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2256828735) at 2024-07-29 01:24 PM PDT -HackforLABot,2024-07-29T23:56:29Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2257211841) at 2024-07-29 04:56 PM PDT -HackforLABot,2024-07-31T00:24:44Z,- HackforLABot commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2259410695) at 2024-07-30 05:24 PM PDT -HackforLABot,2024-07-31T23:27:33Z,- HackforLABot commented on issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2261652732) at 2024-07-31 04:27 PM PDT -HackforLABot,2024-08-03T00:11:54Z,- HackforLABot commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2266290875) at 2024-08-02 05:11 PM PDT -HackforLABot,2024-08-05T07:17:42Z,- HackforLABot commented on issue: [7164](https://github.com/hackforla/website/issues/7164#issuecomment-2268347330) at 2024-08-05 12:17 AM PDT -HackforLABot,2024-08-05T09:00:42Z,- HackforLABot commented on issue: [7157](https://github.com/hackforla/website/issues/7157#issuecomment-2268540449) at 2024-08-05 02:00 AM PDT -HackforLABot,2024-08-05T22:13:47Z,- HackforLABot commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2270009567) at 2024-08-05 03:13 PM PDT -HackforLABot,2024-08-05T22:16:15Z,- HackforLABot commented on issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2270012267) at 2024-08-05 03:16 PM PDT -HackforLABot,2024-08-06T00:24:37Z,- HackforLABot commented on issue: [7197](https://github.com/hackforla/website/issues/7197#issuecomment-2270142221) at 2024-08-05 05:24 PM PDT -HackforLABot,2024-08-06T03:10:17Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2270299402) at 2024-08-05 08:10 PM PDT -HackforLABot,2024-08-06T03:26:17Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2270310844) at 2024-08-05 08:26 PM PDT -HackforLABot,2024-08-06T03:39:26Z,- HackforLABot commented on issue: [7191](https://github.com/hackforla/website/issues/7191#issuecomment-2270321002) at 2024-08-05 08:39 PM PDT -HackforLABot,2024-08-06T03:57:03Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2270333508) at 2024-08-05 08:57 PM PDT -HackforLABot,2024-08-06T18:42:17Z,- HackforLABot commented on issue: [7138](https://github.com/hackforla/website/issues/7138#issuecomment-2271920307) at 2024-08-06 11:42 AM PDT -HackforLABot,2024-08-06T18:42:41Z,- HackforLABot commented on issue: [7138](https://github.com/hackforla/website/issues/7138#issuecomment-2271921033) at 2024-08-06 11:42 AM PDT -HackforLABot,2024-08-06T18:48:30Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2271930485) at 2024-08-06 11:48 AM PDT -HackforLABot,2024-08-06T19:56:53Z,- HackforLABot commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2272041048) at 2024-08-06 12:56 PM PDT -HackforLABot,2024-08-07T02:08:02Z,- HackforLABot commented on issue: [7139](https://github.com/hackforla/website/issues/7139#issuecomment-2272481885) at 2024-08-06 07:08 PM PDT -HackforLABot,2024-08-07T02:11:52Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2272485014) at 2024-08-06 07:11 PM PDT -HackforLABot,2024-08-07T02:21:10Z,- HackforLABot commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-2272492214) at 2024-08-06 07:21 PM PDT -HackforLABot,2024-08-07T02:27:07Z,- HackforLABot commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272497239) at 2024-08-06 07:27 PM PDT -HackforLABot,2024-08-07T02:29:24Z,- HackforLABot commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272499172) at 2024-08-06 07:29 PM PDT -HackforLABot,2024-08-07T02:38:34Z,- HackforLABot commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2272507065) at 2024-08-06 07:38 PM PDT -HackforLABot,2024-08-07T02:40:50Z,- HackforLABot commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-2272508879) at 2024-08-06 07:40 PM PDT -HackforLABot,2024-08-07T02:45:45Z,- HackforLABot commented on issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2272512702) at 2024-08-06 07:45 PM PDT -HackforLABot,2024-08-07T02:47:55Z,- HackforLABot commented on issue: [7171](https://github.com/hackforla/website/issues/7171#issuecomment-2272514388) at 2024-08-06 07:47 PM PDT -HackforLABot,2024-08-07T02:55:06Z,- HackforLABot commented on issue: [7174](https://github.com/hackforla/website/issues/7174#issuecomment-2272519685) at 2024-08-06 07:55 PM PDT -HackforLABot,2024-08-07T02:58:58Z,- HackforLABot commented on issue: [7176](https://github.com/hackforla/website/issues/7176#issuecomment-2272522605) at 2024-08-06 07:58 PM PDT -HackforLABot,2024-08-07T02:59:04Z,- HackforLABot commented on issue: [7175](https://github.com/hackforla/website/issues/7175#issuecomment-2272522668) at 2024-08-06 07:59 PM PDT -HackforLABot,2024-08-07T05:21:42Z,- HackforLABot commented on issue: [7236](https://github.com/hackforla/website/issues/7236#issuecomment-2272640269) at 2024-08-06 10:21 PM PDT -HackforLABot,2024-08-07T05:27:39Z,- HackforLABot commented on issue: [7237](https://github.com/hackforla/website/issues/7237#issuecomment-2272646172) at 2024-08-06 10:27 PM PDT -HackforLABot,2024-08-07T08:32:20Z,- HackforLABot commented on issue: [7160](https://github.com/hackforla/website/issues/7160#issuecomment-2272922365) at 2024-08-07 01:32 AM PDT -HackforLABot,2024-08-07T17:06:09Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2273928523) at 2024-08-07 10:06 AM PDT -HackforLABot,2024-08-08T03:17:18Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2274874337) at 2024-08-07 08:17 PM PDT -HackforLABot,2024-08-08T20:53:23Z,- HackforLABot commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2276633831) at 2024-08-08 01:53 PM PDT -HackforLABot,2024-08-09T00:27:26Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276939762) at 2024-08-08 05:27 PM PDT -HackforLABot,2024-08-09T05:18:52Z,- HackforLABot commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2277170724) at 2024-08-08 10:18 PM PDT -HackforLABot,2024-08-09T05:31:00Z,- HackforLABot commented on issue: [7178](https://github.com/hackforla/website/issues/7178#issuecomment-2277181058) at 2024-08-08 10:31 PM PDT -HackforLABot,2024-08-09T12:56:07Z,- HackforLABot commented on issue: [7249](https://github.com/hackforla/website/issues/7249#issuecomment-2277884879) at 2024-08-09 05:56 AM PDT -HackforLABot,2024-08-09T21:04:02Z,- HackforLABot commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2278754268) at 2024-08-09 02:04 PM PDT -HackforLABot,2024-08-10T14:48:02Z,- HackforLABot commented on issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2282176041) at 2024-08-10 07:48 AM PDT -HackforLABot,2024-08-10T14:50:24Z,- HackforLABot commented on issue: [7181](https://github.com/hackforla/website/issues/7181#issuecomment-2282176583) at 2024-08-10 07:50 AM PDT -HackforLABot,2024-08-10T14:50:50Z,- HackforLABot commented on issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2282176682) at 2024-08-10 07:50 AM PDT -HackforLABot,2024-08-10T15:01:36Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2282179548) at 2024-08-10 08:01 AM PDT -HackforLABot,2024-08-10T15:07:30Z,- HackforLABot commented on issue: [7181](https://github.com/hackforla/website/issues/7181#issuecomment-2282181214) at 2024-08-10 08:07 AM PDT -HackforLABot,2024-08-10T20:59:41Z,- HackforLABot commented on issue: [7184](https://github.com/hackforla/website/issues/7184#issuecomment-2282276188) at 2024-08-10 01:59 PM PDT -HackforLABot,2024-08-10T21:32:19Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282282343) at 2024-08-10 02:32 PM PDT -HackforLABot,2024-08-10T21:39:48Z,- HackforLABot commented on issue: [7185](https://github.com/hackforla/website/issues/7185#issuecomment-2282283693) at 2024-08-10 02:39 PM PDT -HackforLABot,2024-08-11T17:32:32Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2282833231) at 2024-08-11 10:32 AM PDT -HackforLABot,2024-08-11T17:36:22Z,- HackforLABot commented on issue: [7186](https://github.com/hackforla/website/issues/7186#issuecomment-2282834274) at 2024-08-11 10:36 AM PDT -HackforLABot,2024-08-11T18:30:43Z,- HackforLABot commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2282848346) at 2024-08-11 11:30 AM PDT -HackforLABot,2024-08-11T18:48:43Z,- HackforLABot commented on issue: [7187](https://github.com/hackforla/website/issues/7187#issuecomment-2282853357) at 2024-08-11 11:48 AM PDT -HackforLABot,2024-08-11T19:38:57Z,- HackforLABot commented on issue: [7251](https://github.com/hackforla/website/issues/7251#issuecomment-2282866916) at 2024-08-11 12:38 PM PDT -HackforLABot,2024-08-11T21:11:30Z,- HackforLABot commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2282891038) at 2024-08-11 02:11 PM PDT -HackforLABot,2024-08-11T21:20:50Z,- HackforLABot commented on issue: [7188](https://github.com/hackforla/website/issues/7188#issuecomment-2282893464) at 2024-08-11 02:20 PM PDT -HackforLABot,2024-08-12T04:51:04Z,- HackforLABot commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283108883) at 2024-08-11 09:51 PM PDT -HackforLABot,2024-08-12T06:54:04Z,- HackforLABot commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283227775) at 2024-08-11 11:54 PM PDT -HackforLABot,2024-08-12T06:59:57Z,- HackforLABot commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2283235626) at 2024-08-11 11:59 PM PDT -HackforLABot,2024-08-13T00:43:11Z,- HackforLABot commented on issue: [6949](https://github.com/hackforla/website/issues/6949#issuecomment-2285135894) at 2024-08-12 05:43 PM PDT -HackforLABot,2024-08-13T04:32:17Z,- HackforLABot commented on issue: [7192](https://github.com/hackforla/website/issues/7192#issuecomment-2285320418) at 2024-08-12 09:32 PM PDT -HackforLABot,2024-08-13T15:14:40Z,- HackforLABot commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2286504190) at 2024-08-13 08:14 AM PDT -HackforLABot,2024-08-13T15:34:48Z,- HackforLABot commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2286548491) at 2024-08-13 08:34 AM PDT -HackforLABot,2024-08-13T22:22:51Z,- HackforLABot commented on issue: [7246](https://github.com/hackforla/website/issues/7246#issuecomment-2287242704) at 2024-08-13 03:22 PM PDT -HackforLABot,2024-08-13T23:53:10Z,- HackforLABot commented on issue: [7148](https://github.com/hackforla/website/issues/7148#issuecomment-2287414748) at 2024-08-13 04:53 PM PDT -HackforLABot,2024-08-14T01:06:51Z,- HackforLABot commented on issue: [7253](https://github.com/hackforla/website/issues/7253#issuecomment-2287583508) at 2024-08-13 06:06 PM PDT -HackforLABot,2024-08-14T02:03:21Z,- HackforLABot commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2287693130) at 2024-08-13 07:03 PM PDT -HackforLABot,2024-08-14T02:39:46Z,- HackforLABot commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2287725460) at 2024-08-13 07:39 PM PDT -HackforLABot,2024-08-14T06:37:47Z,- HackforLABot commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2287965726) at 2024-08-13 11:37 PM PDT -HackforLABot,2024-08-14T08:21:49Z,- HackforLABot commented on issue: [7193](https://github.com/hackforla/website/issues/7193#issuecomment-2288136576) at 2024-08-14 01:21 AM PDT -HackforLABot,2024-08-14T17:35:19Z,- HackforLABot commented on issue: [7254](https://github.com/hackforla/website/issues/7254#issuecomment-2289418936) at 2024-08-14 10:35 AM PDT -HackforLABot,2024-08-14T22:10:41Z,- HackforLABot commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2290006846) at 2024-08-14 03:10 PM PDT -HackforLABot,2024-08-14T22:17:27Z,- HackforLABot commented on issue: [7252](https://github.com/hackforla/website/issues/7252#issuecomment-2290014902) at 2024-08-14 03:17 PM PDT -HackforLABot,2024-08-15T02:33:13Z,- HackforLABot commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2290397697) at 2024-08-14 07:33 PM PDT -HackforLABot,2024-08-15T03:51:33Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2290516194) at 2024-08-14 08:51 PM PDT -HackforLABot,2024-08-15T17:56:32Z,- HackforLABot commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2291860442) at 2024-08-15 10:56 AM PDT -HackforLABot,2024-08-15T18:41:14Z,- HackforLABot commented on issue: [7295](https://github.com/hackforla/website/issues/7295#issuecomment-2291971460) at 2024-08-15 11:41 AM PDT -HackforLABot,2024-08-15T19:56:27Z,- HackforLABot commented on issue: [7250](https://github.com/hackforla/website/issues/7250#issuecomment-2292090789) at 2024-08-15 12:56 PM PDT -HackforLABot,2024-08-16T00:07:09Z,- HackforLABot commented on issue: [7111](https://github.com/hackforla/website/issues/7111#issuecomment-2292485530) at 2024-08-15 05:07 PM PDT -HackforLABot,2024-08-16T02:25:54Z,- HackforLABot commented on issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2292617588) at 2024-08-15 07:25 PM PDT -HackforLABot,2024-08-16T10:57:09Z,- HackforLABot commented on issue: [7247](https://github.com/hackforla/website/issues/7247#issuecomment-2293292754) at 2024-08-16 03:57 AM PDT -HackforLABot,2024-08-16T17:19:55Z,- HackforLABot commented on issue: [7133](https://github.com/hackforla/website/issues/7133#issuecomment-2293876900) at 2024-08-16 10:19 AM PDT -HackforLABot,2024-08-16T19:15:41Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2294030747) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:45Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2294030982) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:47Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2294031081) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:50Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2294031195) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:52Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2294031244) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:54Z,- HackforLABot commented on issue: [7215](https://github.com/hackforla/website/issues/7215#issuecomment-2294031284) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:56Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2294031323) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:15:58Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2294031364) at 2024-08-16 12:15 PM PDT -HackforLABot,2024-08-16T19:16:03Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2294031456) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:06Z,- HackforLABot commented on issue: [7201](https://github.com/hackforla/website/issues/7201#issuecomment-2294031509) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:16Z,- HackforLABot commented on issue: [7175](https://github.com/hackforla/website/issues/7175#issuecomment-2294031719) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:24Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2294031937) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:26Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2294032018) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:28Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2294032093) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:30Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2294032184) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:32Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2294032249) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:35Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2294032387) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:38Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2294032547) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:40Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2294032604) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:42Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2294032658) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:44Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2294032741) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:46Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2294032805) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:47Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2294032859) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:49Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2294032903) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:51Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2294032958) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:55Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2294033065) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:57Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2294033117) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:16:59Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2294033188) at 2024-08-16 12:16 PM PDT -HackforLABot,2024-08-16T19:17:02Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2294033278) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:03Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2294033341) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:05Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2294033402) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:08Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2294033500) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:11Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2294033557) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:12Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2294033615) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:14Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2294033675) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:18Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294033762) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:20Z,- HackforLABot commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2294033817) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:22Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2294033886) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:24Z,- HackforLABot commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2294033931) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:27Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2294034026) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:29Z,- HackforLABot commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2294034076) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:31Z,- HackforLABot commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2294034119) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:33Z,- HackforLABot commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2294034158) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:35Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2294034200) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:40Z,- HackforLABot commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2294034296) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:42Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2294034339) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:44Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2294034381) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:46Z,- HackforLABot commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2294034419) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:48Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2294034451) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:50Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2294034493) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:52Z,- HackforLABot commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2294034540) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:54Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2294034580) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:17:56Z,- HackforLABot commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2294034617) at 2024-08-16 12:17 PM PDT -HackforLABot,2024-08-16T19:18:09Z,- HackforLABot commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2294034991) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:12Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2294035074) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:14Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2294035143) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:16Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2294035234) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:18Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2294035341) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:20Z,- HackforLABot commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2294035431) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:33Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2294035926) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T19:18:43Z,- HackforLABot commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2294036255) at 2024-08-16 12:18 PM PDT -HackforLABot,2024-08-16T22:36:05Z,- HackforLABot commented on issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2294406124) at 2024-08-16 03:36 PM PDT -HackforLABot,2024-08-16T23:16:31Z,- HackforLABot commented on issue: [7173](https://github.com/hackforla/website/issues/7173#issuecomment-2294434859) at 2024-08-16 04:16 PM PDT -HackforLABot,2024-08-17T05:36:36Z,- HackforLABot commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2294636412) at 2024-08-16 10:36 PM PDT -HackforLABot,2024-08-18T05:46:34Z,- HackforLABot commented on issue: [7245](https://github.com/hackforla/website/issues/7245#issuecomment-2295122977) at 2024-08-17 10:46 PM PDT -HackforLABot,2024-08-18T17:14:48Z,- HackforLABot commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2295330331) at 2024-08-18 10:14 AM PDT -HackforLABot,2024-08-19T05:19:21Z,- HackforLABot commented on issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2295690508) at 2024-08-18 10:19 PM PDT -HackforLABot,2024-08-19T15:58:53Z,- HackforLABot commented on issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2296916498) at 2024-08-19 08:58 AM PDT -HackforLABot,2024-08-20T06:25:47Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2298062013) at 2024-08-19 11:25 PM PDT -HackforLABot,2024-08-20T12:02:25Z,- HackforLABot commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-08-20 05:02 AM PDT -HackforLABot,2024-08-20T21:12:55Z,- HackforLABot commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2299776363) at 2024-08-20 02:12 PM PDT -HackforLABot,2024-08-20T22:12:34Z,- HackforLABot commented on issue: [7322](https://github.com/hackforla/website/issues/7322#issuecomment-2299850612) at 2024-08-20 03:12 PM PDT -HackforLABot,2024-08-21T01:59:02Z,- HackforLABot commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2300157054) at 2024-08-20 06:59 PM PDT -HackforLABot,2024-08-21T02:30:23Z,- HackforLABot commented on issue: [7133](https://github.com/hackforla/website/issues/7133#issuecomment-2300324644) at 2024-08-20 07:30 PM PDT -HackforLABot,2024-08-21T02:33:38Z,- HackforLABot commented on issue: [1899](https://github.com/hackforla/website/issues/1899#issuecomment-2300340736) at 2024-08-20 07:33 PM PDT -HackforLABot,2024-08-21T02:41:40Z,- HackforLABot commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2300370289) at 2024-08-20 07:41 PM PDT -HackforLABot,2024-08-21T02:59:03Z,- HackforLABot commented on issue: [7265](https://github.com/hackforla/website/issues/7265#issuecomment-2300434782) at 2024-08-20 07:59 PM PDT -HackforLABot,2024-08-21T03:19:29Z,- HackforLABot commented on issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2300512055) at 2024-08-20 08:19 PM PDT -HackforLABot,2024-08-21T19:53:42Z,- HackforLABot commented on issue: [7094](https://github.com/hackforla/website/issues/7094#issuecomment-2302902168) at 2024-08-21 12:53 PM PDT -HackforLABot,2024-08-21T22:32:45Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2303178955) at 2024-08-21 03:32 PM PDT -HackforLABot,2024-08-21T22:55:42Z,- HackforLABot commented on issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303251610) at 2024-08-21 03:55 PM PDT -HackforLABot,2024-08-21T22:58:23Z,- HackforLABot commented on issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303254023) at 2024-08-21 03:58 PM PDT -HackforLABot,2024-08-22T17:31:24Z,- HackforLABot commented on issue: [7288](https://github.com/hackforla/website/issues/7288#issuecomment-2305289145) at 2024-08-22 10:31 AM PDT -HackforLABot,2024-08-22T22:29:56Z,- HackforLABot commented on issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2305856402) at 2024-08-22 03:29 PM PDT -HackforLABot,2024-08-22T23:25:32Z,- HackforLABot commented on issue: [7337](https://github.com/hackforla/website/issues/7337#issuecomment-2305909946) at 2024-08-22 04:25 PM PDT -HackforLABot,2024-08-22T23:26:02Z,- HackforLABot commented on issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2305910335) at 2024-08-22 04:26 PM PDT -HackforLABot,2024-08-22T23:26:09Z,- HackforLABot commented on issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2305910403) at 2024-08-22 04:26 PM PDT -HackforLABot,2024-08-23T05:46:11Z,- HackforLABot commented on issue: [7172](https://github.com/hackforla/website/issues/7172#issuecomment-2306336231) at 2024-08-22 10:46 PM PDT -HackforLABot,2024-08-23T18:12:29Z,- HackforLABot commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307578482) at 2024-08-23 11:12 AM PDT -HackforLABot,2024-08-23T18:21:05Z,- HackforLABot commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307590162) at 2024-08-23 11:21 AM PDT -HackforLABot,2024-08-23T18:21:16Z,- HackforLABot commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2307590477) at 2024-08-23 11:21 AM PDT -HackforLABot,2024-08-23T18:22:50Z,- HackforLABot commented on issue: [7189](https://github.com/hackforla/website/issues/7189#issuecomment-2307592918) at 2024-08-23 11:22 AM PDT -HackforLABot,2024-08-23T19:55:43Z,- HackforLABot commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2307725928) at 2024-08-23 12:55 PM PDT -HackforLABot,2024-08-23T20:10:12Z,- HackforLABot commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2307744263) at 2024-08-23 01:10 PM PDT -HackforLABot,2024-08-24T04:07:22Z,- HackforLABot commented on issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2308043583) at 2024-08-23 09:07 PM PDT -HackforLABot,2024-08-24T14:09:36Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308407830) at 2024-08-24 07:09 AM PDT -HackforLABot,2024-08-24T14:17:44Z,- HackforLABot commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2308410676) at 2024-08-24 07:17 AM PDT -HackforLABot,2024-08-24T22:08:26Z,- HackforLABot commented on issue: [7349](https://github.com/hackforla/website/issues/7349#issuecomment-2308554132) at 2024-08-24 03:08 PM PDT -HackforLABot,2024-08-25T03:38:08Z,- HackforLABot commented on issue: [7149](https://github.com/hackforla/website/issues/7149#issuecomment-2308640516) at 2024-08-24 08:38 PM PDT -HackforLABot,2024-08-25T04:21:06Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308648976) at 2024-08-24 09:21 PM PDT -HackforLABot,2024-08-25T14:07:03Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308865084) at 2024-08-25 07:07 AM PDT -HackforLABot,2024-08-25T14:07:28Z,- HackforLABot commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2308865372) at 2024-08-25 07:07 AM PDT -HackforLABot,2024-08-25T14:07:44Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308865503) at 2024-08-25 07:07 AM PDT -HackforLABot,2024-08-25T14:38:25Z,- HackforLABot commented on issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2308877793) at 2024-08-25 07:38 AM PDT -HackforLABot,2024-08-25T17:44:09Z,- HackforLABot commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308937772) at 2024-08-25 10:44 AM PDT -HackforLABot,2024-08-25T17:58:13Z,- HackforLABot commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308941749) at 2024-08-25 10:58 AM PDT -HackforLABot,2024-08-25T18:46:23Z,- HackforLABot commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2308955275) at 2024-08-25 11:46 AM PDT -HackforLABot,2024-08-25T20:55:13Z,- HackforLABot commented on issue: [7240](https://github.com/hackforla/website/issues/7240#issuecomment-2308990409) at 2024-08-25 01:55 PM PDT -HackforLABot,2024-08-26T05:11:33Z,- HackforLABot commented on issue: [7242](https://github.com/hackforla/website/issues/7242#issuecomment-2309330603) at 2024-08-25 10:11 PM PDT -HackforLABot,2024-08-26T16:21:26Z,- HackforLABot commented on issue: [7292](https://github.com/hackforla/website/issues/7292#issuecomment-2310588857) at 2024-08-26 09:21 AM PDT -HackforLABot,2024-08-26T18:11:50Z,- HackforLABot commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2310783733) at 2024-08-26 11:11 AM PDT -HackforLABot,2024-08-26T21:47:33Z,- HackforLABot commented on issue: [7266](https://github.com/hackforla/website/issues/7266#issuecomment-2311158274) at 2024-08-26 02:47 PM PDT -HackforLABot,2024-08-26T22:54:48Z,- HackforLABot commented on issue: [7358](https://github.com/hackforla/website/issues/7358#issuecomment-2311247592) at 2024-08-26 03:54 PM PDT -HackforLABot,2024-08-27T02:53:16Z,- HackforLABot commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2311468205) at 2024-08-26 07:53 PM PDT -HackforLABot,2024-08-27T03:08:11Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2311480634) at 2024-08-26 08:08 PM PDT -HackforLABot,2024-08-27T03:14:52Z,- HackforLABot commented on issue: [7092](https://github.com/hackforla/website/issues/7092#issuecomment-2311486074) at 2024-08-26 08:14 PM PDT -HackforLABot,2024-08-27T05:09:46Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:09 PM PDT -HackforLABot,2024-08-27T05:14:22Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311588429) at 2024-08-26 10:14 PM PDT -HackforLABot,2024-08-27T15:22:20Z,- HackforLABot commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2312865962) at 2024-08-27 08:22 AM PDT -HackforLABot,2024-08-27T22:07:50Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2313660517) at 2024-08-27 03:07 PM PDT -HackforLABot,2024-08-28T00:58:15Z,- HackforLABot commented on issue: [7282](https://github.com/hackforla/website/issues/7282#issuecomment-2313879750) at 2024-08-27 05:58 PM PDT -HackforLABot,2024-08-28T01:16:08Z,- HackforLABot commented on issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2313895504) at 2024-08-27 06:16 PM PDT -HackforLABot,2024-08-28T03:24:22Z,- HackforLABot commented on issue: [7287](https://github.com/hackforla/website/issues/7287#issuecomment-2314124378) at 2024-08-27 08:24 PM PDT -HackforLABot,2024-08-28T06:36:34Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2314435631) at 2024-08-27 11:36 PM PDT -HackforLABot,2024-08-29T02:37:49Z,- HackforLABot commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2316603112) at 2024-08-28 07:37 PM PDT -HackforLABot,2024-08-29T15:18:50Z,- HackforLABot commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318072259) at 2024-08-29 08:18 AM PDT -HackforLABot,2024-08-30T00:48:46Z,- HackforLABot commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2319574349) at 2024-08-29 05:48 PM PDT -HackforLABot,2024-08-30T02:07:46Z,- HackforLABot commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2319686102) at 2024-08-29 07:07 PM PDT -HackforLABot,2024-08-30T06:08:36Z,- HackforLABot commented on issue: [7286](https://github.com/hackforla/website/issues/7286#issuecomment-2320170582) at 2024-08-29 11:08 PM PDT -HackforLABot,2024-08-30T07:04:59Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2320282008) at 2024-08-30 12:04 AM PDT -HackforLABot,2024-08-30T07:05:00Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2320282084) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:02Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2320282156) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:07Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2320282351) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:12Z,- HackforLABot commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2320282513) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:13Z,- HackforLABot commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2320282576) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:16Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2320282665) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:18Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2320282747) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:20Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2320282815) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:21Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2320282873) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:23Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2320282927) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:26Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2320283034) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:28Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2320283103) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:31Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2320283196) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:32Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2320283259) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:34Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2320283323) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:37Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2320283444) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:43Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2320283646) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:49Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2320283876) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:51Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2320283969) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:56Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2320284166) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:58Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2320284237) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:05:59Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2320284289) at 2024-08-30 12:05 AM PDT -HackforLABot,2024-08-30T07:06:01Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2320284346) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:03Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2320284404) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:05Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2320284469) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:07Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2320284560) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:09Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2320284632) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:11Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2320284691) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:13Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2320284759) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:15Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2320284812) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:16Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2320284888) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:18Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2320284947) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:20Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2320285005) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:21Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2320285067) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:23Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2320285115) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:26Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2320285187) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:28Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2320285265) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:29Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2320285325) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:31Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2320285390) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:33Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2320285449) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:34Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2320285502) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:38Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2320285622) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:40Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2320285706) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:41Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2320285773) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:43Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2320285863) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:45Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2320285958) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:47Z,- HackforLABot commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2320286033) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:49Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2320286105) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:51Z,- HackforLABot commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2320286159) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:53Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2320286260) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:55Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2320286323) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:57Z,- HackforLABot commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2320286382) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:06:59Z,- HackforLABot commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2320286461) at 2024-08-30 12:06 AM PDT -HackforLABot,2024-08-30T07:07:01Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2320286529) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:02Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2320286602) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:06Z,- HackforLABot commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2320286743) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:08Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2320286802) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:10Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2320286858) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:11Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2320286921) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:16Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2320287109) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:17Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2320287176) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:19Z,- HackforLABot commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2320287245) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:21Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2320287322) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:23Z,- HackforLABot commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2320287371) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:34Z,- HackforLABot commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2320287785) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:36Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2320287853) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:38Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2320287908) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:40Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2320287973) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:42Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2320288031) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:43Z,- HackforLABot commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2320288096) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:46Z,- HackforLABot commented on issue: [6247](https://github.com/hackforla/website/issues/6247#issuecomment-2320288163) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:07:58Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2320288565) at 2024-08-30 12:07 AM PDT -HackforLABot,2024-08-30T07:08:09Z,- HackforLABot commented on issue: [5779](https://github.com/hackforla/website/issues/5779#issuecomment-2320288900) at 2024-08-30 12:08 AM PDT -HackforLABot,2024-08-30T07:09:03Z,- HackforLABot commented on issue: [4154](https://github.com/hackforla/website/issues/4154#issuecomment-2320290962) at 2024-08-30 12:09 AM PDT -HackforLABot,2024-08-30T07:09:14Z,- HackforLABot commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2320291363) at 2024-08-30 12:09 AM PDT -HackforLABot,2024-08-30T17:41:39Z,- HackforLABot commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2322046458) at 2024-08-30 10:41 AM PDT -HackforLABot,2024-08-30T18:36:13Z,- HackforLABot commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2322125583) at 2024-08-30 11:36 AM PDT -HackforLABot,2024-08-30T19:53:46Z,- HackforLABot commented on issue: [7179](https://github.com/hackforla/website/issues/7179#issuecomment-2322240897) at 2024-08-30 12:53 PM PDT -HackforLABot,2024-08-31T03:49:51Z,- HackforLABot commented on issue: [7372](https://github.com/hackforla/website/issues/7372#issuecomment-2322754322) at 2024-08-30 08:49 PM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot commented on issue: [6829](https://github.com/hackforla/website/issues/6829#issuecomment-2323290717) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot closed issue as completed: [6829](https://github.com/hackforla/website/issues/6829#event-14094275095) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2323290714) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:34Z,- HackforLABot closed issue as completed: [6882](https://github.com/hackforla/website/issues/6882#event-14094275090) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:35Z,- HackforLABot commented on issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2323290727) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:35Z,- HackforLABot closed issue as completed: [6880](https://github.com/hackforla/website/issues/6880#event-14094275165) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:37Z,- HackforLABot closed issue as completed: [6423](https://github.com/hackforla/website/issues/6423#event-14094275288) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:38Z,- HackforLABot commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2323290745) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:38Z,- HackforLABot closed issue as completed: [6603](https://github.com/hackforla/website/issues/6603#event-14094275373) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot closed issue as completed: [5361](https://github.com/hackforla/website/issues/5361#event-14094275429) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot commented on issue: [6526](https://github.com/hackforla/website/issues/6526#issuecomment-2323290758) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot closed issue as completed: [6526](https://github.com/hackforla/website/issues/6526#event-14094275400) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:39Z,- HackforLABot commented on issue: [6603](https://github.com/hackforla/website/issues/6603#issuecomment-2323290755) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:40Z,- HackforLABot commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-2323290764) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:41Z,- HackforLABot commented on issue: [6831](https://github.com/hackforla/website/issues/6831#issuecomment-2323290777) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:41Z,- HackforLABot closed issue as completed: [6831](https://github.com/hackforla/website/issues/6831#event-14094275523) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:42Z,- HackforLABot closed issue as completed: [6524](https://github.com/hackforla/website/issues/6524#event-14094275563) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:07:43Z,- HackforLABot commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2323290784) at 2024-09-01 04:07 AM PDT -HackforLABot,2024-09-01T11:08:18Z,- HackforLABot opened issue: [7374](https://github.com/hackforla/website/issues/7374) at 2024-09-01 04:08 AM PDT -HackforLABot,2024-09-02T21:55:10Z,- HackforLABot commented on issue: [7335](https://github.com/hackforla/website/issues/7335#issuecomment-2325329602) at 2024-09-02 02:55 PM PDT -HackforLABot,2024-09-03T18:49:23Z,- HackforLABot commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2327195713) at 2024-09-03 11:49 AM PDT -HackforLABot,2024-09-03T19:44:31Z,- HackforLABot commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2327298542) at 2024-09-03 12:44 PM PDT -HackforLABot,2024-09-04T01:16:18Z,- HackforLABot commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2327722272) at 2024-09-03 06:16 PM PDT -HackforLABot,2024-09-04T01:31:15Z,- HackforLABot commented on issue: [7383](https://github.com/hackforla/website/issues/7383#issuecomment-2327734854) at 2024-09-03 06:31 PM PDT -HackforLABot,2024-09-04T20:30:21Z,- HackforLABot commented on issue: [7156](https://github.com/hackforla/website/issues/7156#issuecomment-2329914056) at 2024-09-04 01:30 PM PDT -HackforLABot,2024-09-04T21:42:34Z,- HackforLABot commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2330196364) at 2024-09-04 02:42 PM PDT -HackforLABot,2024-09-05T03:45:47Z,- HackforLABot commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2330537237) at 2024-09-04 08:45 PM PDT -HackforLABot,2024-09-05T17:07:54Z,- HackforLABot commented on issue: [7166](https://github.com/hackforla/website/issues/7166#issuecomment-2332239994) at 2024-09-05 10:07 AM PDT -HackforLABot,2024-09-05T17:13:26Z,- HackforLABot commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249073) at 2024-09-05 10:13 AM PDT -HackforLABot,2024-09-05T17:13:52Z,- HackforLABot commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2332249761) at 2024-09-05 10:13 AM PDT -HackforLABot,2024-09-05T23:57:42Z,- HackforLABot commented on issue: [7404](https://github.com/hackforla/website/issues/7404#issuecomment-2332917767) at 2024-09-05 04:57 PM PDT -HackforLABot,2024-09-06T04:03:14Z,- HackforLABot commented on issue: [7291](https://github.com/hackforla/website/issues/7291#issuecomment-2333191357) at 2024-09-05 09:03 PM PDT -HackforLABot,2024-09-06T07:04:57Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2333387703) at 2024-09-06 12:04 AM PDT -HackforLABot,2024-09-06T07:04:59Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2333387783) at 2024-09-06 12:04 AM PDT -HackforLABot,2024-09-06T07:05:01Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2333387875) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:03Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2333387932) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:05Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2333387974) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:09Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2333388075) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:14Z,- HackforLABot commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2333388210) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:16Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2333388257) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:18Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2333388309) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:19Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2333388354) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:23Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2333388446) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:25Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2333388487) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:27Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2333388552) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:29Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2333388616) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:33Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2333388681) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:34Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2333388716) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:36Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2333388765) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:38Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2333388815) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:41Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2333388899) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:43Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2333388970) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:45Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2333389011) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:50Z,- HackforLABot commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2333389168) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:54Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2333389287) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:57Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2333389366) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:05:58Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2333389400) at 2024-09-06 12:05 AM PDT -HackforLABot,2024-09-06T07:06:00Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2333389437) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:02Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2333389484) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:03Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2333389524) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:06Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2333389600) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:09Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2333389673) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:11Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2333389719) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:12Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2333389758) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:14Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2333389802) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:15Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2333389845) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:17Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2333389896) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:19Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2333389931) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:20Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2333389982) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:24Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2333390078) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:26Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2333390151) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:28Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2333390200) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:30Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2333390245) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:31Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2333390279) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:33Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2333390333) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:35Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2333390404) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:37Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2333390450) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:38Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2333390497) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:40Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2333390535) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:42Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2333390575) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:44Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2333390638) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:46Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2333390690) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:47Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2333390748) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:49Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2333390809) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:51Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2333390858) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:53Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2333390907) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:55Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2333390985) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:06:59Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2333391093) at 2024-09-06 12:06 AM PDT -HackforLABot,2024-09-06T07:07:01Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2333391168) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:07Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2333391315) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:08Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2333391371) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:19Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2333391660) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:21Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2333391707) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:23Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2333391756) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:25Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2333391800) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T07:07:37Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2333392134) at 2024-09-06 12:07 AM PDT -HackforLABot,2024-09-06T17:48:33Z,- HackforLABot commented on issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2334548498) at 2024-09-06 10:48 AM PDT -HackforLABot,2024-09-07T13:39:52Z,- HackforLABot commented on issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2335191023) at 2024-09-07 06:39 AM PDT -HackforLABot,2024-09-08T19:00:47Z,- HackforLABot commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2336789779) at 2024-09-08 12:00 PM PDT -HackforLABot,2024-09-08T19:09:39Z,- HackforLABot commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2336792448) at 2024-09-08 12:09 PM PDT -HackforLABot,2024-09-09T01:45:34Z,- HackforLABot commented on issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2336954430) at 2024-09-08 06:45 PM PDT -HackforLABot,2024-09-09T01:47:56Z,- HackforLABot commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2336956265) at 2024-09-08 06:47 PM PDT -HackforLABot,2024-09-09T22:13:06Z,- HackforLABot commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339245566) at 2024-09-09 03:13 PM PDT -HackforLABot,2024-09-09T22:35:29Z,- HackforLABot commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2339270739) at 2024-09-09 03:35 PM PDT -HackforLABot,2024-09-10T02:32:44Z,- HackforLABot commented on issue: [7089](https://github.com/hackforla/website/issues/7089#issuecomment-2339489751) at 2024-09-09 07:32 PM PDT -HackforLABot,2024-09-10T04:24:23Z,- HackforLABot commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2339580789) at 2024-09-09 09:24 PM PDT -HackforLABot,2024-09-10T04:24:31Z,- HackforLABot commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339580938) at 2024-09-09 09:24 PM PDT -HackforLABot,2024-09-10T04:25:23Z,- HackforLABot commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2339581670) at 2024-09-09 09:25 PM PDT -HackforLABot,2024-09-10T18:38:38Z,- HackforLABot commented on issue: [7180](https://github.com/hackforla/website/issues/7180#issuecomment-2341744425) at 2024-09-10 11:38 AM PDT -HackforLABot,2024-09-10T23:23:23Z,- HackforLABot commented on issue: [7176](https://github.com/hackforla/website/issues/7176#issuecomment-2342328653) at 2024-09-10 04:23 PM PDT -HackforLABot,2024-09-12T16:53:03Z,- HackforLABot commented on issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2346796076) at 2024-09-12 09:53 AM PDT -HackforLABot,2024-09-13T02:19:13Z,- HackforLABot commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2347912038) at 2024-09-12 07:19 PM PDT -HackforLABot,2024-09-13T03:11:12Z,- HackforLABot commented on issue: [7429](https://github.com/hackforla/website/issues/7429#issuecomment-2347952497) at 2024-09-12 08:11 PM PDT -HackforLABot,2024-09-13T07:05:14Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2348188226) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:17Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2348188309) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:19Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2348188340) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:22Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2348188427) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:27Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2348188566) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:29Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2348188607) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:30Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2348188657) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:33Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2348188715) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:35Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2348188769) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:38Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2348188848) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:40Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2348188898) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:41Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2348188943) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:43Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2348188987) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:45Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2348189037) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:48Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2348189099) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:50Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2348189145) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:52Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2348189196) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:54Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2348189265) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:57Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2348189350) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:05:59Z,- HackforLABot commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2348189403) at 2024-09-13 12:05 AM PDT -HackforLABot,2024-09-13T07:06:01Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2348189462) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:03Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2348189503) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:05Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2348189539) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:06Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2348189576) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:08Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2348189610) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:10Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2348189668) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:12Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2348189704) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:13Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2348189750) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:15Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2348189796) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:17Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2348189840) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:18Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2348189891) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:20Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2348189928) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:21Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2348189965) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:23Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2348190015) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:24Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2348190050) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:27Z,- HackforLABot commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2348190123) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:29Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2348190173) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:31Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2348190212) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:32Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2348190256) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:34Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2348190291) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:35Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2348190338) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:38Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2348190396) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:40Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2348190479) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:42Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2348190512) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:43Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2348190549) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:45Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2348190578) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:47Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2348190612) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:48Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2348190656) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:50Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2348190718) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:52Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2348190781) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:54Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2348190845) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:06:56Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2348190868) at 2024-09-13 12:06 AM PDT -HackforLABot,2024-09-13T07:07:00Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2348190935) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:03Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2348191012) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:08Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2348191133) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:10Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2348191187) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:21Z,- HackforLABot commented on issue: [6421](https://github.com/hackforla/website/issues/6421#issuecomment-2348191483) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:23Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2348191568) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:25Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2348191677) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:27Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2348191733) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:29Z,- HackforLABot commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2348191816) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T07:07:39Z,- HackforLABot commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-2348192165) at 2024-09-13 12:07 AM PDT -HackforLABot,2024-09-13T23:59:07Z,- HackforLABot commented on issue: [7379](https://github.com/hackforla/website/issues/7379#issuecomment-2350720235) at 2024-09-13 04:59 PM PDT -HackforLABot,2024-09-14T04:54:52Z,- HackforLABot commented on issue: [7410](https://github.com/hackforla/website/issues/7410#issuecomment-2350835165) at 2024-09-13 09:54 PM PDT -HackforLABot,2024-09-14T14:26:46Z,- HackforLABot commented on issue: [7167](https://github.com/hackforla/website/issues/7167#issuecomment-2351010945) at 2024-09-14 07:26 AM PDT -HackforLABot,2024-09-14T16:48:44Z,- HackforLABot commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2351057207) at 2024-09-14 09:48 AM PDT -HackforLABot,2024-09-14T23:20:20Z,- HackforLABot commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2351214594) at 2024-09-14 04:20 PM PDT -HackforLABot,2024-09-15T01:42:15Z,- HackforLABot commented on issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2351279538) at 2024-09-14 06:42 PM PDT -HackforLABot,2024-09-15T17:12:16Z,- HackforLABot commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2351683035) at 2024-09-15 10:12 AM PDT -HackforLABot,2024-09-15T17:20:48Z,- HackforLABot commented on issue: [6369](https://github.com/hackforla/website/issues/6369#issuecomment-2351686467) at 2024-09-15 10:20 AM PDT -HackforLABot,2024-09-15T18:01:17Z,- HackforLABot commented on issue: [7411](https://github.com/hackforla/website/issues/7411#issuecomment-2351704098) at 2024-09-15 11:01 AM PDT -HackforLABot,2024-09-15T19:43:18Z,- HackforLABot commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2351766961) at 2024-09-15 12:43 PM PDT -HackforLABot,2024-09-15T21:27:02Z,- HackforLABot commented on issue: [6904](https://github.com/hackforla/website/issues/6904#issuecomment-2351797042) at 2024-09-15 02:27 PM PDT -HackforLABot,2024-09-15T21:43:04Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2351801203) at 2024-09-15 02:43 PM PDT -HackforLABot,2024-09-15T22:25:14Z,- HackforLABot commented on issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2351813346) at 2024-09-15 03:25 PM PDT -HackforLABot,2024-09-15T22:57:13Z,- HackforLABot commented on issue: [7412](https://github.com/hackforla/website/issues/7412#issuecomment-2351822253) at 2024-09-15 03:57 PM PDT -HackforLABot,2024-09-16T04:25:24Z,- HackforLABot commented on issue: [7011](https://github.com/hackforla/website/issues/7011#issuecomment-2351997782) at 2024-09-15 09:25 PM PDT -HackforLABot,2024-09-16T07:41:01Z,- HackforLABot commented on issue: [7415](https://github.com/hackforla/website/issues/7415#issuecomment-2352212583) at 2024-09-16 12:41 AM PDT -HackforLABot,2024-09-16T17:18:10Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2353485874) at 2024-09-16 10:18 AM PDT -HackforLABot,2024-09-17T00:23:40Z,- HackforLABot commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2354258346) at 2024-09-16 05:23 PM PDT -HackforLABot,2024-09-17T00:47:46Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2354278064) at 2024-09-16 05:47 PM PDT -HackforLABot,2024-09-17T00:57:40Z,- HackforLABot commented on issue: [2033](https://github.com/hackforla/website/issues/2033#issuecomment-2354285288) at 2024-09-16 05:57 PM PDT -HackforLABot,2024-09-17T01:02:51Z,- HackforLABot commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354289044) at 2024-09-16 06:02 PM PDT -HackforLABot,2024-09-17T01:08:54Z,- HackforLABot commented on issue: [2147](https://github.com/hackforla/website/issues/2147#issuecomment-2354293281) at 2024-09-16 06:08 PM PDT -HackforLABot,2024-09-18T19:32:05Z,- HackforLABot commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2359252794) at 2024-09-18 12:32 PM PDT -HackforLABot,2024-09-19T14:04:33Z,- HackforLABot commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2361082302) at 2024-09-19 07:04 AM PDT -HackforLABot,2024-09-19T14:04:33Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2361082333) at 2024-09-19 07:04 AM PDT -HackforLABot,2024-09-19T20:29:23Z,- HackforLABot commented on issue: [7497](https://github.com/hackforla/website/issues/7497#issuecomment-2362117009) at 2024-09-19 01:29 PM PDT -HackforLABot,2024-09-20T02:13:31Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2362570171) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:13:31Z,- HackforLABot commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2362570168) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:13:31Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2362570158) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:13:32Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2362570179) at 2024-09-19 07:13 PM PDT -HackforLABot,2024-09-20T02:58:52Z,- HackforLABot commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362662638) at 2024-09-19 07:58 PM PDT -HackforLABot,2024-09-20T07:05:20Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2362981398) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:28Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2362981593) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:30Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2362981684) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:33Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2362981756) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:39Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2362981911) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:41Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2362981964) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:43Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2362982015) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:45Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2362982077) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:47Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2362982150) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:49Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2362982213) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:51Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2362982274) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:53Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2362982315) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:55Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2362982389) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:05:57Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2362982433) at 2024-09-20 12:05 AM PDT -HackforLABot,2024-09-20T07:06:03Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2362982574) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:06Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2362982654) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:10Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2362982776) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:12Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2362982819) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:13Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2362982855) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:15Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2362982896) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:17Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2362982960) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:19Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2362983021) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:21Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2362983064) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:23Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2362983134) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:25Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2362983178) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:26Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2362983226) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:28Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2362983271) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:30Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2362983304) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:31Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2362983357) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:33Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2362983402) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:34Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2362983447) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:36Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2362983499) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:40Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2362983603) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:42Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2362983653) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:43Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2362983676) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:45Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2362983719) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:46Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2362983755) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:48Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2362983807) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:50Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2362983858) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:52Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2362983916) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:53Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2362983966) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:55Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2362984026) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:57Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2362984063) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:06:58Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2362984111) at 2024-09-20 12:06 AM PDT -HackforLABot,2024-09-20T07:07:00Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2362984163) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:03Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2362984226) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:05Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2362984273) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:06Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2362984317) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:10Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2362984417) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:12Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2362984477) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:14Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2362984531) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:19Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2362984648) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:21Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2362984706) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:33Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2362985010) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:35Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2362985060) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:36Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2362985114) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:38Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2362985158) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T07:07:40Z,- HackforLABot commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2362985217) at 2024-09-20 12:07 AM PDT -HackforLABot,2024-09-20T18:01:38Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2364253402) at 2024-09-20 11:01 AM PDT -HackforLABot,2024-09-20T23:59:50Z,- HackforLABot reopened issue: [6715](https://github.com/hackforla/website/issues/6715#event-12842005024) at 2024-09-20 04:59 PM PDT -HackforLABot,2024-09-20T23:59:56Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2364764798) at 2024-09-20 04:59 PM PDT -HackforLABot,2024-09-20T23:59:56Z,- HackforLABot commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2364764802) at 2024-09-20 04:59 PM PDT -HackforLABot,2024-09-21T16:48:22Z,- HackforLABot commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2365250049) at 2024-09-21 09:48 AM PDT -HackforLABot,2024-09-21T18:59:55Z,- HackforLABot commented on issue: [7488](https://github.com/hackforla/website/issues/7488#issuecomment-2365288779) at 2024-09-21 11:59 AM PDT -HackforLABot,2024-09-21T19:14:57Z,- HackforLABot commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2365292643) at 2024-09-21 12:14 PM PDT -HackforLABot,2024-09-21T19:14:57Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365292647) at 2024-09-21 12:14 PM PDT -HackforLABot,2024-09-22T17:27:27Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2366883244) at 2024-09-22 10:27 AM PDT -HackforLABot,2024-09-22T18:03:25Z,- HackforLABot commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2366897267) at 2024-09-22 11:03 AM PDT -HackforLABot,2024-09-23T01:55:23Z,- HackforLABot commented on issue: [7442](https://github.com/hackforla/website/issues/7442#issuecomment-2367108207) at 2024-09-22 06:55 PM PDT -HackforLABot,2024-09-23T01:55:24Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2367108211) at 2024-09-22 06:55 PM PDT -HackforLABot,2024-09-23T03:18:56Z,- HackforLABot commented on pull request: [7507](https://github.com/hackforla/website/pull/7507#issuecomment-2367164097) at 2024-09-22 08:18 PM PDT -HackforLABot,2024-09-23T14:29:51Z,- HackforLABot commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2368459995) at 2024-09-23 07:29 AM PDT -HackforLABot,2024-09-23T15:58:10Z,- HackforLABot commented on issue: [7194](https://github.com/hackforla/website/issues/7194#issuecomment-2368718468) at 2024-09-23 08:58 AM PDT -HackforLABot,2024-09-23T18:25:16Z,- HackforLABot reopened issue: [6426](https://github.com/hackforla/website/issues/6426#event-12865964727) at 2024-09-23 11:25 AM PDT -HackforLABot,2024-09-23T18:25:22Z,- HackforLABot commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2369048734) at 2024-09-23 11:25 AM PDT -HackforLABot,2024-09-23T18:25:23Z,- HackforLABot commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2369048754) at 2024-09-23 11:25 AM PDT -HackforLABot,2024-09-25T02:26:07Z,- HackforLABot commented on issue: [7494](https://github.com/hackforla/website/issues/7494#issuecomment-2372759527) at 2024-09-24 07:26 PM PDT -HackforLABot,2024-09-25T02:54:30Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2372798413) at 2024-09-24 07:54 PM PDT -HackforLABot,2024-09-25T02:54:31Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2372798432) at 2024-09-24 07:54 PM PDT -HackforLABot,2024-09-25T02:56:09Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2372800389) at 2024-09-24 07:56 PM PDT -HackforLABot,2024-09-26T15:11:41Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2377253709) at 2024-09-26 08:11 AM PDT -HackforLABot,2024-09-26T15:11:42Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2377253723) at 2024-09-26 08:11 AM PDT -HackforLABot,2024-09-27T03:05:58Z,- HackforLABot commented on issue: [7515](https://github.com/hackforla/website/issues/7515#issuecomment-2378318196) at 2024-09-26 08:05 PM PDT -HackforLABot,2024-09-27T07:05:07Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2378548473) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:09Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2378548512) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:15Z,- HackforLABot commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2378548691) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:17Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2378548725) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:19Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2378548789) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:20Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2378548831) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:25Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2378548955) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:27Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2378549030) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:29Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2378549076) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:30Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2378549130) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:33Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2378549207) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:36Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2378549293) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:39Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2378549380) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:42Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2378549444) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:44Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2378549506) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:46Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2378549571) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:48Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2378549703) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:50Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2378549867) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:52Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2378549918) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:55Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2378549991) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:57Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2378550080) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:05:59Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2378550134) at 2024-09-27 12:05 AM PDT -HackforLABot,2024-09-27T07:06:01Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2378550171) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:02Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2378550213) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:04Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2378550254) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:07Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2378550328) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:09Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2378550377) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:10Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2378550424) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:12Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2378550460) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:14Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2378550492) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:15Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2378550532) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:17Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2378550581) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:19Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2378550628) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:20Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2378550666) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:23Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2378550720) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:25Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2378550812) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:27Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2378551069) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:28Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2378551201) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:30Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2378551280) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:34Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2378551491) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:37Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2378551606) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:39Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2378551656) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:41Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2378551712) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:42Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2378551754) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:44Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2378551819) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:46Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2378551891) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:51Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2378552036) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:53Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2378552076) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:55Z,- HackforLABot commented on issue: [6715](https://github.com/hackforla/website/issues/6715#issuecomment-2378552132) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:06:58Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2378552222) at 2024-09-27 12:06 AM PDT -HackforLABot,2024-09-27T07:07:02Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2378552305) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:05Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2378552415) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:07Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2378552461) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:09Z,- HackforLABot commented on issue: [6525](https://github.com/hackforla/website/issues/6525#issuecomment-2378552520) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:18Z,- HackforLABot commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2378552764) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:23Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2378552881) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:25Z,- HackforLABot commented on issue: [6398](https://github.com/hackforla/website/issues/6398#issuecomment-2378552940) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:28Z,- HackforLABot commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2378553008) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T07:07:30Z,- HackforLABot commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2378553087) at 2024-09-27 12:07 AM PDT -HackforLABot,2024-09-27T14:31:11Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2379421752) at 2024-09-27 07:31 AM PDT -HackforLABot,2024-09-27T16:18:15Z,- HackforLABot commented on issue: [7403](https://github.com/hackforla/website/issues/7403#issuecomment-2379639973) at 2024-09-27 09:18 AM PDT -HackforLABot,2024-09-27T21:21:46Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2380075545) at 2024-09-27 02:21 PM PDT -HackforLABot,2024-09-28T22:22:03Z,- HackforLABot commented on issue: [7537](https://github.com/hackforla/website/issues/7537#issuecomment-2381010475) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:10Z,- HackforLABot commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2381010498) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:36Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2381010597) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:41Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2381010607) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:42Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2381010610) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:51Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2381010652) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:52Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2381010666) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-28T22:22:54Z,- HackforLABot commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2381010672) at 2024-09-28 03:22 PM PDT -HackforLABot,2024-09-29T18:41:36Z,- HackforLABot commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381457811) at 2024-09-29 11:41 AM PDT -HackforLABot,2024-09-29T21:41:27Z,- HackforLABot commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381620539) at 2024-09-29 02:41 PM PDT -HackforLABot,2024-10-01T00:42:18Z,- HackforLABot commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2384560649) at 2024-09-30 05:42 PM PDT -HackforLABot,2024-10-01T03:52:16Z,- HackforLABot commented on issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2384729676) at 2024-09-30 08:52 PM PDT -HackforLABot,2024-10-01T11:07:53Z,- HackforLABot commented on issue: [7027](https://github.com/hackforla/website/issues/7027#issuecomment-2385487775) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:53Z,- HackforLABot closed issue as completed: [7027](https://github.com/hackforla/website/issues/7027#event-14470548716) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:53Z,- HackforLABot closed issue as completed: [7064](https://github.com/hackforla/website/issues/7064#event-14470548840) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot closed issue as completed: [7031](https://github.com/hackforla/website/issues/7031#event-14470549014) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot commented on issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2385487812) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot closed issue as completed: [7033](https://github.com/hackforla/website/issues/7033#event-14470548919) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:54Z,- HackforLABot commented on issue: [7064](https://github.com/hackforla/website/issues/7064#issuecomment-2385487793) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:55Z,- HackforLABot commented on issue: [7025](https://github.com/hackforla/website/issues/7025#issuecomment-2385487835) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:55Z,- HackforLABot closed issue as completed: [7025](https://github.com/hackforla/website/issues/7025#event-14470549132) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:55Z,- HackforLABot commented on issue: [7031](https://github.com/hackforla/website/issues/7031#issuecomment-2385487823) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:57Z,- HackforLABot closed issue as completed: [7023](https://github.com/hackforla/website/issues/7023#event-14470549761) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:58Z,- HackforLABot commented on issue: [6944](https://github.com/hackforla/website/issues/6944#issuecomment-2385487922) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:58Z,- HackforLABot closed issue as completed: [6944](https://github.com/hackforla/website/issues/6944#event-14470549871) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:58Z,- HackforLABot commented on issue: [7023](https://github.com/hackforla/website/issues/7023#issuecomment-2385487895) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:07:59Z,- HackforLABot closed issue as completed: [6945](https://github.com/hackforla/website/issues/6945#event-14470550140) at 2024-10-01 04:07 AM PDT -HackforLABot,2024-10-01T11:08:00Z,- HackforLABot commented on issue: [6945](https://github.com/hackforla/website/issues/6945#issuecomment-2385487961) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:03Z,- HackforLABot closed issue as completed: [6881](https://github.com/hackforla/website/issues/6881#event-14470550979) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:03Z,- HackforLABot commented on issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2385488062) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:03Z,- HackforLABot closed issue as completed: [6952](https://github.com/hackforla/website/issues/6952#event-14470550828) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:04Z,- HackforLABot commented on issue: [6881](https://github.com/hackforla/website/issues/6881#issuecomment-2385488079) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:04Z,- HackforLABot closed issue as completed: [7021](https://github.com/hackforla/website/issues/7021#event-14470551216) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:05Z,- HackforLABot commented on issue: [7021](https://github.com/hackforla/website/issues/7021#issuecomment-2385488118) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:06Z,- HackforLABot closed issue as completed: [7022](https://github.com/hackforla/website/issues/7022#event-14470551603) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:07Z,- HackforLABot closed issue as completed: [6954](https://github.com/hackforla/website/issues/6954#event-14470551810) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:07Z,- HackforLABot commented on issue: [7022](https://github.com/hackforla/website/issues/7022#issuecomment-2385488176) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:08Z,- HackforLABot commented on issue: [6954](https://github.com/hackforla/website/issues/6954#issuecomment-2385488205) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:08Z,- HackforLABot closed issue as completed: [7032](https://github.com/hackforla/website/issues/7032#event-14470551970) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:09Z,- HackforLABot commented on issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2385488249) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:09Z,- HackforLABot closed issue as completed: [6951](https://github.com/hackforla/website/issues/6951#event-14470552094) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:09Z,- HackforLABot commented on issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2385488234) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:11Z,- HackforLABot commented on issue: [7035](https://github.com/hackforla/website/issues/7035#issuecomment-2385488317) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:11Z,- HackforLABot closed issue as completed: [7035](https://github.com/hackforla/website/issues/7035#event-14470552534) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T11:08:45Z,- HackforLABot opened issue: [7553](https://github.com/hackforla/website/issues/7553) at 2024-10-01 04:08 AM PDT -HackforLABot,2024-10-01T13:53:35Z,- HackforLABot reopened issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2088597236) at 2024-10-01 06:53 AM PDT -HackforLABot,2024-10-01T13:53:41Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386022923) at 2024-10-01 06:53 AM PDT -HackforLABot,2024-10-01T13:53:41Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386022875) at 2024-10-01 06:53 AM PDT -HackforLABot,2024-10-01T13:57:21Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 06:57 AM PDT -HackforLABot,2024-10-01T14:00:23Z,- HackforLABot reopened issue: [6419](https://github.com/hackforla/website/issues/6419#event-14473533870) at 2024-10-01 07:00 AM PDT -HackforLABot,2024-10-01T14:00:29Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386057061) at 2024-10-01 07:00 AM PDT -HackforLABot,2024-10-01T14:00:30Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386057081) at 2024-10-01 07:00 AM PDT -HackforLABot,2024-10-01T14:41:13Z,- HackforLABot reopened issue: [6419](https://github.com/hackforla/website/issues/6419#event-14473843734) at 2024-10-01 07:41 AM PDT -HackforLABot,2024-10-01T14:41:19Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386185500) at 2024-10-01 07:41 AM PDT -HackforLABot,2024-10-01T14:41:19Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386185462) at 2024-10-01 07:41 AM PDT -HackforLABot,2024-10-01T14:52:05Z,- HackforLABot commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386224583) at 2024-10-01 07:52 AM PDT -HackforLABot,2024-10-01T18:52:29Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2386730247) at 2024-10-01 11:52 AM PDT -HackforLABot,2024-10-01T20:46:53Z,- HackforLABot commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387043951) at 2024-10-01 01:46 PM PDT -HackforLABot,2024-10-01T21:30:48Z,- HackforLABot commented on issue: [7442](https://github.com/hackforla/website/issues/7442#issuecomment-2387111672) at 2024-10-01 02:30 PM PDT -HackforLABot,2024-10-01T22:49:02Z,- HackforLABot reopened issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2050820621) at 2024-10-01 03:49 PM PDT -HackforLABot,2024-10-01T22:49:08Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2387218710) at 2024-10-01 03:49 PM PDT -HackforLABot,2024-10-01T22:49:08Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2387218702) at 2024-10-01 03:49 PM PDT -HackforLABot,2024-10-01T22:56:32Z,- HackforLABot commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2387226214) at 2024-10-01 03:56 PM PDT -HackforLABot,2024-10-01T22:56:33Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2387226224) at 2024-10-01 03:56 PM PDT -HackforLABot,2024-10-02T23:20:22Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2389968144) at 2024-10-02 04:20 PM PDT -HackforLABot,2024-10-02T23:20:22Z,- HackforLABot commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2389968138) at 2024-10-02 04:20 PM PDT -HackforLABot,2024-10-02T23:31:45Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2389977380) at 2024-10-02 04:31 PM PDT -HackforLABot,2024-10-03T06:24:56Z,- HackforLABot reopened issue: [6956](https://github.com/hackforla/website/issues/6956#event-13954113563) at 2024-10-02 11:24 PM PDT -HackforLABot,2024-10-03T06:25:02Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2390620039) at 2024-10-02 11:25 PM PDT -HackforLABot,2024-10-03T06:25:02Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2390620049) at 2024-10-02 11:25 PM PDT -HackforLABot,2024-10-03T15:40:56Z,- HackforLABot commented on issue: [7549](https://github.com/hackforla/website/issues/7549#issuecomment-2391742689) at 2024-10-03 08:40 AM PDT -HackforLABot,2024-10-03T15:41:49Z,- HackforLABot commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2391744519) at 2024-10-03 08:41 AM PDT -HackforLABot,2024-10-03T23:37:05Z,- HackforLABot commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392513105) at 2024-10-03 04:37 PM PDT -HackforLABot,2024-10-04T02:33:16Z,- HackforLABot commented on issue: [7355](https://github.com/hackforla/website/issues/7355#issuecomment-2392671168) at 2024-10-03 07:33 PM PDT -HackforLABot,2024-10-04T03:30:20Z,- HackforLABot commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2392723934) at 2024-10-03 08:30 PM PDT -HackforLABot,2024-10-04T07:05:25Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2392973595) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:27Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2392973654) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:31Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2392973763) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:34Z,- HackforLABot commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2392973822) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:38Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2392973938) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:41Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2392974013) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:43Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2392974077) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:51Z,- HackforLABot commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2392974254) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:53Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2392974317) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:56Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2392974391) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:05:58Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2392974438) at 2024-10-04 12:05 AM PDT -HackforLABot,2024-10-04T07:06:00Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2392974506) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:04Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2392974621) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:08Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2392974717) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:11Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2392974773) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:13Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2392974828) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:15Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2392974883) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:17Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2392974940) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:19Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2392975023) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:21Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2392975089) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:24Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2392975152) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:27Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2392975262) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:29Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2392975314) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:31Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2392975368) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:38Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2392975522) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:40Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2392975580) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:43Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2392975646) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:45Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2392975697) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:47Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2392975763) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:52Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2392975878) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:06:57Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2392976033) at 2024-10-04 12:06 AM PDT -HackforLABot,2024-10-04T07:07:01Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2392976120) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:03Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2392976177) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:05Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2392976250) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:08Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2392976330) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:16Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2392976572) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:21Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2392976698) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:26Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2392976812) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:29Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2392976899) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:34Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2392977029) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:37Z,- HackforLABot commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2392977086) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:50Z,- HackforLABot commented on issue: [6416](https://github.com/hackforla/website/issues/6416#issuecomment-2392977389) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:07:56Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2392977536) at 2024-10-04 12:07 AM PDT -HackforLABot,2024-10-04T07:08:01Z,- HackforLABot commented on issue: [6219](https://github.com/hackforla/website/issues/6219#issuecomment-2392977688) at 2024-10-04 12:08 AM PDT -HackforLABot,2024-10-05T08:45:01Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2394984031) at 2024-10-05 01:45 AM PDT -HackforLABot,2024-10-05T20:04:12Z,- HackforLABot commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2395175114) at 2024-10-05 01:04 PM PDT -HackforLABot,2024-10-06T15:27:25Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395478878) at 2024-10-06 08:27 AM PDT -HackforLABot,2024-10-06T15:28:44Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2395479262) at 2024-10-06 08:28 AM PDT -HackforLABot,2024-10-07T20:26:50Z,- HackforLABot commented on issue: [7566](https://github.com/hackforla/website/issues/7566#issuecomment-2397827082) at 2024-10-07 01:26 PM PDT -HackforLABot,2024-10-07T20:42:06Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2397855008) at 2024-10-07 01:42 PM PDT -HackforLABot,2024-10-08T00:13:08Z,- HackforLABot commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398250655) at 2024-10-07 05:13 PM PDT -HackforLABot,2024-10-08T00:26:23Z,- HackforLABot commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2398279924) at 2024-10-07 05:26 PM PDT -HackforLABot,2024-10-08T00:52:37Z,- HackforLABot commented on issue: [7570](https://github.com/hackforla/website/issues/7570#issuecomment-2398336889) at 2024-10-07 05:52 PM PDT -HackforLABot,2024-10-08T00:55:31Z,- HackforLABot commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2398343501) at 2024-10-07 05:55 PM PDT -HackforLABot,2024-10-08T01:05:38Z,- HackforLABot commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398366013) at 2024-10-07 06:05 PM PDT -HackforLABot,2024-10-08T09:20:18Z,- HackforLABot commented on issue: [7576](https://github.com/hackforla/website/issues/7576#issuecomment-2399317571) at 2024-10-08 02:20 AM PDT -HackforLABot,2024-10-08T23:38:02Z,- HackforLABot commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2400994155) at 2024-10-08 04:38 PM PDT -HackforLABot,2024-10-09T07:46:08Z,- HackforLABot commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2401584474) at 2024-10-09 12:46 AM PDT -HackforLABot,2024-10-09T21:04:47Z,- HackforLABot commented on issue: [7555](https://github.com/hackforla/website/issues/7555#issuecomment-2403427183) at 2024-10-09 02:04 PM PDT -HackforLABot,2024-10-10T04:18:44Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2403936188) at 2024-10-09 09:18 PM PDT -HackforLABot,2024-10-10T17:14:11Z,- HackforLABot commented on issue: [7259](https://github.com/hackforla/website/issues/7259#issuecomment-2405649238) at 2024-10-10 10:14 AM PDT -HackforLABot,2024-10-11T07:05:59Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2406687562) at 2024-10-11 12:05 AM PDT -HackforLABot,2024-10-11T07:06:02Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2406687652) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:04Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2406687708) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:09Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2406687834) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:13Z,- HackforLABot commented on issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2406687934) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:15Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2406688005) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:18Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2406688062) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:20Z,- HackforLABot commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2406688119) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:27Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2406688269) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:30Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2406688342) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:33Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2406688413) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:36Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2406688461) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:39Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2406688537) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:41Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2406688615) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:43Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2406688654) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:46Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2406688711) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:48Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2406688769) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:50Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2406688807) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:54Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2406688888) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:06:57Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2406688962) at 2024-10-11 12:06 AM PDT -HackforLABot,2024-10-11T07:07:02Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2406689092) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:04Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2406689141) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:07Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2406689188) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:09Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2406689238) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:14Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2406689371) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:17Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2406689442) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:20Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2406689513) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:22Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2406689577) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:25Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2406689640) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:27Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2406689696) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:29Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2406689756) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:31Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2406689812) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:34Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2406689864) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:36Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2406689910) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:38Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2406689958) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:40Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2406690018) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:44Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2406690094) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:48Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2406690191) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:50Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2406690249) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:55Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2406690358) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:07:58Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2406690408) at 2024-10-11 12:07 AM PDT -HackforLABot,2024-10-11T07:08:02Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2406690530) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:05Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2406690605) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:07Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2406690650) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:12Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2406690765) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:21Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2406691001) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:26Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2406691095) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:08:45Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2406691631) at 2024-10-11 12:08 AM PDT -HackforLABot,2024-10-11T07:09:30Z,- HackforLABot commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2406692794) at 2024-10-11 12:09 AM PDT -HackforLABot,2024-10-11T07:10:07Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2406693728) at 2024-10-11 12:10 AM PDT -HackforLABot,2024-10-13T00:29:18Z,- HackforLABot commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-2408758819) at 2024-10-12 05:29 PM PDT -HackforLABot,2024-10-13T18:25:11Z,- HackforLABot commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2409076885) at 2024-10-13 11:25 AM PDT -HackforLABot,2024-10-13T21:12:29Z,- HackforLABot commented on issue: [7477](https://github.com/hackforla/website/issues/7477#issuecomment-2409133046) at 2024-10-13 02:12 PM PDT -HackforLABot,2024-10-14T20:15:08Z,- HackforLABot commented on issue: [7473](https://github.com/hackforla/website/issues/7473#issuecomment-2412121934) at 2024-10-14 01:15 PM PDT -HackforLABot,2024-10-14T22:40:51Z,- HackforLABot commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2412459670) at 2024-10-14 03:40 PM PDT -HackforLABot,2024-10-15T08:54:52Z,- HackforLABot commented on issue: [7594](https://github.com/hackforla/website/issues/7594#issuecomment-2413289520) at 2024-10-15 01:54 AM PDT -HackforLABot,2024-10-15T19:43:19Z,- HackforLABot commented on issue: [7596](https://github.com/hackforla/website/issues/7596#issuecomment-2414864601) at 2024-10-15 12:43 PM PDT -HackforLABot,2024-10-16T10:34:53Z,- HackforLABot reopened issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2403289199) at 2024-10-16 03:34 AM PDT -HackforLABot,2024-10-17T20:12:11Z,- HackforLABot commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2420465247) at 2024-10-17 01:12 PM PDT -HackforLABot,2024-10-18T02:15:44Z,- HackforLABot commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2421105636) at 2024-10-17 07:15 PM PDT -HackforLABot,2024-10-18T07:05:10Z,- HackforLABot commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2421599030) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:13Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2421599128) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:15Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2421599174) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:17Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2421599238) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:21Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2421599443) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:23Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2421599617) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:25Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2421599715) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:30Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2421599983) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:32Z,- HackforLABot commented on issue: [7331](https://github.com/hackforla/website/issues/7331#issuecomment-2421600059) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:34Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2421600138) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:36Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2421600218) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:38Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2421600298) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:42Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2421600455) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:44Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2421600554) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:46Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2421600690) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:48Z,- HackforLABot commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2421600881) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:51Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2421601032) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:53Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2421601125) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:55Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2421601190) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:57Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2421601269) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:05:59Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2421601335) at 2024-10-18 12:05 AM PDT -HackforLABot,2024-10-18T07:06:01Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2421601381) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:06Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2421601564) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:08Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2421601605) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:12Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2421601710) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:14Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2421601786) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:16Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2421601855) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:18Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2421601942) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:20Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2421602034) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:22Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2421602112) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:25Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2421602201) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:27Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2421602282) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:29Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2421602364) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:31Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2421602460) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:33Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2421602521) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:34Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2421602571) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:40Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2421602761) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:42Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2421602832) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:44Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2421602899) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:47Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2421603017) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:49Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2421603102) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:51Z,- HackforLABot commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2421603177) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:54Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2421603266) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:56Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2421603343) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:06:58Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2421603412) at 2024-10-18 12:06 AM PDT -HackforLABot,2024-10-18T07:07:06Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2421603691) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:09Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2421603840) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:15Z,- HackforLABot commented on issue: [6530](https://github.com/hackforla/website/issues/6530#issuecomment-2421604069) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:27Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2421604429) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:07:34Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2421604688) at 2024-10-18 12:07 AM PDT -HackforLABot,2024-10-18T07:08:42Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2421606651) at 2024-10-18 12:08 AM PDT -HackforLABot,2024-10-18T16:32:28Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2422845169) at 2024-10-18 09:32 AM PDT -HackforLABot,2024-10-18T19:55:12Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2423141084) at 2024-10-18 12:55 PM PDT -HackforLABot,2024-10-18T19:55:12Z,- HackforLABot commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2423141080) at 2024-10-18 12:55 PM PDT -HackforLABot,2024-10-18T20:07:05Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2423157176) at 2024-10-18 01:07 PM PDT -HackforLABot,2024-10-18T20:07:05Z,- HackforLABot commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423157170) at 2024-10-18 01:07 PM PDT -HackforLABot,2024-10-18T20:08:14Z,- HackforLABot commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2423158875) at 2024-10-18 01:08 PM PDT -HackforLABot,2024-10-18T20:09:40Z,- HackforLABot commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2423160800) at 2024-10-18 01:09 PM PDT -HackforLABot,2024-10-18T20:09:41Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2423160806) at 2024-10-18 01:09 PM PDT -HackforLABot,2024-10-18T22:08:58Z,- HackforLABot commented on issue: [7576](https://github.com/hackforla/website/issues/7576#issuecomment-2423307337) at 2024-10-18 03:08 PM PDT -HackforLABot,2024-10-19T22:02:21Z,- HackforLABot commented on issue: [7563](https://github.com/hackforla/website/issues/7563#issuecomment-2424232746) at 2024-10-19 03:02 PM PDT -HackforLABot,2024-10-20T01:14:57Z,- HackforLABot commented on issue: [7602](https://github.com/hackforla/website/issues/7602#issuecomment-2424373571) at 2024-10-19 06:14 PM PDT -HackforLABot,2024-10-20T17:28:39Z,- HackforLABot commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2425140170) at 2024-10-20 10:28 AM PDT -HackforLABot,2024-10-20T17:31:03Z,- HackforLABot commented on issue: [2900](https://github.com/hackforla/website/issues/2900#issuecomment-2425142712) at 2024-10-20 10:31 AM PDT -HackforLABot,2024-10-20T22:05:12Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2425247835) at 2024-10-20 03:05 PM PDT -HackforLABot,2024-10-20T22:05:12Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2425247831) at 2024-10-20 03:05 PM PDT -HackforLABot,2024-10-21T17:47:35Z,- HackforLABot commented on issue: [7614](https://github.com/hackforla/website/issues/7614#issuecomment-2427352357) at 2024-10-21 10:47 AM PDT -HackforLABot,2024-10-21T21:01:07Z,- HackforLABot commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2427709841) at 2024-10-21 02:01 PM PDT -HackforLABot,2024-10-22T00:52:03Z,- HackforLABot commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2427997171) at 2024-10-21 05:52 PM PDT -HackforLABot,2024-10-22T23:12:57Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2430485803) at 2024-10-22 04:12 PM PDT -HackforLABot,2024-10-22T23:12:57Z,- HackforLABot commented on issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2430485796) at 2024-10-22 04:12 PM PDT -HackforLABot,2024-10-23T01:22:19Z,- HackforLABot commented on issue: [7541](https://github.com/hackforla/website/issues/7541#issuecomment-2430607030) at 2024-10-22 06:22 PM PDT -HackforLABot,2024-10-23T17:44:16Z,- HackforLABot commented on issue: [7489](https://github.com/hackforla/website/issues/7489#issuecomment-2432985047) at 2024-10-23 10:44 AM PDT -HackforLABot,2024-10-23T21:55:26Z,- HackforLABot commented on pull request: [7630](https://github.com/hackforla/website/pull/7630#issuecomment-2433537852) at 2024-10-23 02:55 PM PDT -HackforLABot,2024-10-24T06:44:41Z,- HackforLABot commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2434430602) at 2024-10-23 11:44 PM PDT -HackforLABot,2024-10-24T16:57:28Z,- HackforLABot commented on issue: [7500](https://github.com/hackforla/website/issues/7500#issuecomment-2435793910) at 2024-10-24 09:57 AM PDT -HackforLABot,2024-10-25T02:27:30Z,- HackforLABot commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436684617) at 2024-10-24 07:27 PM PDT -HackforLABot,2024-10-25T02:33:42Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2436689864) at 2024-10-24 07:33 PM PDT -HackforLABot,2024-10-25T02:35:22Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2436691276) at 2024-10-24 07:35 PM PDT -HackforLABot,2024-10-25T02:35:22Z,- HackforLABot commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2436691275) at 2024-10-24 07:35 PM PDT -HackforLABot,2024-10-25T02:37:57Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2436693434) at 2024-10-24 07:37 PM PDT -HackforLABot,2024-10-25T02:37:57Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2436693437) at 2024-10-24 07:37 PM PDT -HackforLABot,2024-10-25T02:43:09Z,- HackforLABot commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436697674) at 2024-10-24 07:43 PM PDT -HackforLABot,2024-10-25T03:54:21Z,- HackforLABot commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2436767645) at 2024-10-24 08:54 PM PDT -HackforLABot,2024-10-25T07:05:34Z,- HackforLABot commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2437050930) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:39Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2437051067) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:44Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2437051229) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:49Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2437051343) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:52Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2437051422) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:05:55Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2437051522) at 2024-10-25 12:05 AM PDT -HackforLABot,2024-10-25T07:06:00Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2437051667) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:02Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2437051714) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:04Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2437051771) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:06Z,- HackforLABot commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2437051830) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:08Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2437051888) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:12Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2437051977) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:14Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2437052036) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:16Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2437052090) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:21Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2437052208) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:23Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2437052253) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:25Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2437052308) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:29Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2437052385) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:32Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2437052483) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:35Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2437052576) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:38Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2437052634) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:40Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2437052670) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:57Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2437053130) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:06:59Z,- HackforLABot commented on issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2437053188) at 2024-10-25 12:06 AM PDT -HackforLABot,2024-10-25T07:07:02Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2437053252) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:04Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2437053296) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:06Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2437053358) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:08Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2437053435) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:11Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2437053499) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:13Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2437053554) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:16Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2437053615) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:18Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2437053668) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:20Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2437053731) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:22Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2437053798) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:24Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2437053846) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:28Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2437053943) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:30Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2437053999) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:32Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2437054064) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:34Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2437054103) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:40Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2437054275) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:45Z,- HackforLABot commented on issue: [6595](https://github.com/hackforla/website/issues/6595#issuecomment-2437054407) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:07:50Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2437054572) at 2024-10-25 12:07 AM PDT -HackforLABot,2024-10-25T07:08:08Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2437055098) at 2024-10-25 12:08 AM PDT -HackforLABot,2024-10-25T07:08:58Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2437056686) at 2024-10-25 12:08 AM PDT -HackforLABot,2024-10-25T15:39:41Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2438154888) at 2024-10-25 08:39 AM PDT -HackforLABot,2024-10-25T17:57:12Z,- HackforLABot commented on issue: [7542](https://github.com/hackforla/website/issues/7542#issuecomment-2438453248) at 2024-10-25 10:57 AM PDT -HackforLABot,2024-10-26T20:49:32Z,- HackforLABot commented on issue: [7561](https://github.com/hackforla/website/issues/7561#issuecomment-2439732465) at 2024-10-26 01:49 PM PDT -HackforLABot,2024-10-27T18:00:04Z,- HackforLABot commented on issue: [6919](https://github.com/hackforla/website/issues/6919#issuecomment-2440118727) at 2024-10-27 11:00 AM PDT -HackforLABot,2024-10-27T23:46:49Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224295) at 2024-10-27 04:46 PM PDT -HackforLABot,2024-10-27T23:47:55Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224668) at 2024-10-27 04:47 PM PDT -HackforLABot,2024-10-27T23:48:31Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2440224870) at 2024-10-27 04:48 PM PDT -HackforLABot,2024-10-28T17:38:31Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442224857) at 2024-10-28 10:38 AM PDT -HackforLABot,2024-10-28T21:33:27Z,- HackforLABot commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2442674523) at 2024-10-28 02:33 PM PDT -HackforLABot,2024-10-28T21:39:44Z,- HackforLABot commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2442684031) at 2024-10-28 02:39 PM PDT -HackforLABot,2024-10-29T02:57:46Z,- HackforLABot commented on issue: [7510](https://github.com/hackforla/website/issues/7510#issuecomment-2443082725) at 2024-10-28 07:57 PM PDT -HackforLABot,2024-10-29T20:53:29Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2445309975) at 2024-10-29 01:53 PM PDT -HackforLABot,2024-10-29T21:42:08Z,- HackforLABot commented on issue: [7584](https://github.com/hackforla/website/issues/7584#issuecomment-2445384741) at 2024-10-29 02:42 PM PDT -HackforLABot,2024-10-30T19:16:25Z,- HackforLABot commented on issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2448143759) at 2024-10-30 12:16 PM PDT -HackforLABot,2024-10-30T19:16:25Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2448143771) at 2024-10-30 12:16 PM PDT -HackforLABot,2024-10-31T11:30:04Z,- HackforLABot reopened issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2398331036) at 2024-10-31 04:30 AM PDT -HackforLABot,2024-10-31T11:39:58Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2449647523) at 2024-10-31 04:39 AM PDT -HackforLABot,2024-10-31T11:39:59Z,- HackforLABot commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2449647535) at 2024-10-31 04:39 AM PDT -HackforLABot,2024-10-31T11:53:19Z,- HackforLABot commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2449668943) at 2024-10-31 04:53 AM PDT -HackforLABot,2024-10-31T22:55:31Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2450986350) at 2024-10-31 03:55 PM PDT -HackforLABot,2024-11-01T02:28:51Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2451176734) at 2024-10-31 07:28 PM PDT -HackforLABot,2024-11-01T02:34:31Z,- HackforLABot commented on issue: [7682](https://github.com/hackforla/website/issues/7682#issuecomment-2451181885) at 2024-10-31 07:34 PM PDT -HackforLABot,2024-11-01T07:05:21Z,- HackforLABot commented on issue: [7622](https://github.com/hackforla/website/issues/7622#issuecomment-2451408214) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:28Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2451408315) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:29Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2451408345) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:32Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2451408376) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:34Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2451408411) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:37Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2451408462) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:39Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2451408506) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:42Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2451408541) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:44Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2451408574) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:48Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2451408637) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:49Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2451408661) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:51Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2451408697) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:54Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2451408738) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:55Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2451408763) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:57Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2451408782) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:05:59Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2451408816) at 2024-11-01 12:05 AM PDT -HackforLABot,2024-11-01T07:06:01Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2451408853) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:03Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2451408877) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:06Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2451408920) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:08Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2451408959) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:10Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2451408990) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:11Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2451409016) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:13Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2451409046) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:16Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2451409076) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:17Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2451409103) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:19Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2451409132) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:20Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2451409161) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:22Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2451409184) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:23Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2451409208) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:26Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2451409251) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:28Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2451409289) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:30Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2451409320) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:32Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2451409334) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:33Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2451409367) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:35Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2451409404) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:39Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2451409459) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:40Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2451409490) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:42Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2451409528) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:46Z,- HackforLABot commented on issue: [6599](https://github.com/hackforla/website/issues/6599#issuecomment-2451409602) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:06:53Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2451409702) at 2024-11-01 12:06 AM PDT -HackforLABot,2024-11-01T07:07:07Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2451409956) at 2024-11-01 12:07 AM PDT -HackforLABot,2024-11-01T07:07:13Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2451410036) at 2024-11-01 12:07 AM PDT -HackforLABot,2024-11-01T11:07:35Z,- HackforLABot closed issue as completed: [6947](https://github.com/hackforla/website/issues/6947#event-15064564632) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:36Z,- HackforLABot commented on issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2451703167) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:36Z,- HackforLABot closed issue as completed: [7225](https://github.com/hackforla/website/issues/7225#event-15064564763) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:37Z,- HackforLABot commented on issue: [7225](https://github.com/hackforla/website/issues/7225#issuecomment-2451703190) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot commented on issue: [7209](https://github.com/hackforla/website/issues/7209#issuecomment-2451703214) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot closed issue as completed: [7209](https://github.com/hackforla/website/issues/7209#event-15064565436) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2451703224) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:38Z,- HackforLABot closed issue as completed: [7338](https://github.com/hackforla/website/issues/7338#event-15064565477) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:40Z,- HackforLABot closed issue as completed: [6950](https://github.com/hackforla/website/issues/6950#event-15064566751) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:40Z,- HackforLABot commented on issue: [7208](https://github.com/hackforla/website/issues/7208#issuecomment-2451703248) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:40Z,- HackforLABot closed issue as completed: [7208](https://github.com/hackforla/website/issues/7208#event-15064566717) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:41Z,- HackforLABot commented on issue: [6950](https://github.com/hackforla/website/issues/6950#issuecomment-2451703258) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:42Z,- HackforLABot commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2451703281) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:42Z,- HackforLABot closed issue as completed: [7202](https://github.com/hackforla/website/issues/7202#event-15064567471) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:44Z,- HackforLABot commented on issue: [7231](https://github.com/hackforla/website/issues/7231#issuecomment-2451703340) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:44Z,- HackforLABot closed issue as completed: [7231](https://github.com/hackforla/website/issues/7231#event-15064568695) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:45Z,- HackforLABot commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2451703371) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:45Z,- HackforLABot closed issue as completed: [6532](https://github.com/hackforla/website/issues/6532#event-15064569317) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:45Z,- HackforLABot closed issue as completed: [6716](https://github.com/hackforla/website/issues/6716#event-15064569372) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:46Z,- HackforLABot commented on issue: [6716](https://github.com/hackforla/website/issues/6716#issuecomment-2451703375) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:46Z,- HackforLABot closed issue as completed: [7066](https://github.com/hackforla/website/issues/7066#event-15064569968) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:47Z,- HackforLABot commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2451703395) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:48Z,- HackforLABot closed issue as completed: [7330](https://github.com/hackforla/website/issues/7330#event-15064570745) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:49Z,- HackforLABot commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2451703444) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:49Z,- HackforLABot closed issue as completed: [7218](https://github.com/hackforla/website/issues/7218#event-15064571301) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:07:49Z,- HackforLABot commented on issue: [7330](https://github.com/hackforla/website/issues/7330#issuecomment-2451703434) at 2024-11-01 04:07 AM PDT -HackforLABot,2024-11-01T11:08:21Z,- HackforLABot opened issue: [7684](https://github.com/hackforla/website/issues/7684) at 2024-11-01 04:08 AM PDT -HackforLABot,2024-11-02T16:56:20Z,- HackforLABot commented on issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2453047390) at 2024-11-02 08:56 AM PST -HackforLABot,2024-11-04T04:57:06Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2453829592) at 2024-11-03 08:57 PM PST -HackforLABot,2024-11-04T21:48:41Z,- HackforLABot commented on issue: [7619](https://github.com/hackforla/website/issues/7619#issuecomment-2455769779) at 2024-11-04 01:48 PM PST -HackforLABot,2024-11-04T22:11:44Z,- HackforLABot commented on issue: [7687](https://github.com/hackforla/website/issues/7687#issuecomment-2455805808) at 2024-11-04 02:11 PM PST -HackforLABot,2024-11-04T22:46:22Z,- HackforLABot commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455855588) at 2024-11-04 02:46 PM PST -HackforLABot,2024-11-05T00:17:45Z,- HackforLABot commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2455965752) at 2024-11-04 04:17 PM PST -HackforLABot,2024-11-05T01:33:56Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2456042065) at 2024-11-04 05:33 PM PST -HackforLABot,2024-11-05T01:44:41Z,- HackforLABot commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-2456051866) at 2024-11-04 05:44 PM PST -HackforLABot,2024-11-05T13:34:30Z,- HackforLABot commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2457199661) at 2024-11-05 05:34 AM PST -HackforLABot,2024-11-05T23:08:40Z,- HackforLABot commented on issue: [6649](https://github.com/hackforla/website/issues/6649#issuecomment-2458380444) at 2024-11-05 03:08 PM PST -HackforLABot,2024-11-06T14:37:05Z,- HackforLABot commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2459924396) at 2024-11-06 06:37 AM PST -HackforLABot,2024-11-06T17:50:33Z,- HackforLABot commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460418975) at 2024-11-06 09:50 AM PST -HackforLABot,2024-11-06T20:01:51Z,- HackforLABot commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2460664575) at 2024-11-06 12:01 PM PST -HackforLABot,2024-11-07T16:57:34Z,- HackforLABot commented on issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2462764818) at 2024-11-07 08:57 AM PST -HackforLABot,2024-11-07T17:08:28Z,- HackforLABot commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2462788218) at 2024-11-07 09:08 AM PST -HackforLABot,2024-11-07T17:15:07Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2462802842) at 2024-11-07 09:15 AM PST -HackforLABot,2024-11-07T17:19:48Z,- HackforLABot commented on issue: [7646](https://github.com/hackforla/website/issues/7646#issuecomment-2462814466) at 2024-11-07 09:19 AM PST -HackforLABot,2024-11-07T21:20:27Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2463238412) at 2024-11-07 01:20 PM PST -HackforLABot,2024-11-07T21:20:28Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2463238434) at 2024-11-07 01:20 PM PST -HackforLABot,2024-11-07T21:30:57Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2463259105) at 2024-11-07 01:30 PM PST -HackforLABot,2024-11-07T21:30:57Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2463259089) at 2024-11-07 01:30 PM PST -HackforLABot,2024-11-07T21:53:19Z,- HackforLABot commented on issue: [7601](https://github.com/hackforla/website/issues/7601#issuecomment-2463303433) at 2024-11-07 01:53 PM PST -HackforLABot,2024-11-08T07:05:06Z,- HackforLABot commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2463919349) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:11Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2463919461) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:16Z,- HackforLABot commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2463919557) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:18Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2463919597) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:20Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2463919622) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:24Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2463919683) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:26Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2463919724) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:29Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2463919790) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:31Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2463919832) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:34Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2463919907) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:37Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2463919966) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:39Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2463920008) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:41Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2463920054) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:43Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2463920105) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:45Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2463920160) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:48Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2463920203) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:50Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2463920252) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:52Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2463920292) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:05:55Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2463920344) at 2024-11-07 11:05 PM PST -HackforLABot,2024-11-08T07:06:01Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2463920481) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:03Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2463920523) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:05Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2463920574) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:07Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2463920614) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:09Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2463920654) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:11Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2463920696) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:13Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2463920741) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:15Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2463920781) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:17Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2463920826) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:19Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2463920858) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:21Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2463920899) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:23Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2463920933) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:25Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2463920984) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:29Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2463921045) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:31Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2463921076) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:06:57Z,- HackforLABot commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2463921582) at 2024-11-07 11:06 PM PST -HackforLABot,2024-11-08T07:07:06Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2463921749) at 2024-11-07 11:07 PM PST -HackforLABot,2024-11-08T15:54:26Z,- HackforLABot commented on issue: [7647](https://github.com/hackforla/website/issues/7647#issuecomment-2465101317) at 2024-11-08 07:54 AM PST -HackforLABot,2024-11-08T19:38:24Z,- HackforLABot commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2465619534) at 2024-11-08 11:38 AM PST -HackforLABot,2024-11-09T19:52:04Z,- HackforLABot commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2466434786) at 2024-11-09 11:52 AM PST -HackforLABot,2024-11-09T23:27:08Z,- HackforLABot commented on issue: [7648](https://github.com/hackforla/website/issues/7648#issuecomment-2466501148) at 2024-11-09 03:27 PM PST -HackforLABot,2024-11-10T05:19:24Z,- HackforLABot commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2466591798) at 2024-11-09 09:19 PM PST -HackforLABot,2024-11-10T20:10:55Z,- HackforLABot commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2466893855) at 2024-11-10 12:10 PM PST -HackforLABot,2024-11-10T20:22:14Z,- HackforLABot commented on issue: [7649](https://github.com/hackforla/website/issues/7649#issuecomment-2466905103) at 2024-11-10 12:22 PM PST -HackforLABot,2024-11-11T17:09:55Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-11 09:09 AM PST -HackforLABot,2024-11-11T17:37:48Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2468707994) at 2024-11-11 09:37 AM PST -HackforLABot,2024-11-12T00:42:58Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469359659) at 2024-11-11 04:42 PM PST -HackforLABot,2024-11-12T00:46:00Z,- HackforLABot commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2469362050) at 2024-11-11 04:46 PM PST -HackforLABot,2024-11-12T00:54:07Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2469369813) at 2024-11-11 04:54 PM PST -HackforLABot,2024-11-12T00:59:54Z,- HackforLABot commented on issue: [7458](https://github.com/hackforla/website/issues/7458#issuecomment-2469374387) at 2024-11-11 04:59 PM PST -HackforLABot,2024-11-12T20:19:45Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2471502408) at 2024-11-12 12:19 PM PST -HackforLABot,2024-11-12T21:53:28Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2471660253) at 2024-11-12 01:53 PM PST -HackforLABot,2024-11-13T01:06:11Z,- HackforLABot commented on issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2472068819) at 2024-11-12 05:06 PM PST -HackforLABot,2024-11-13T04:01:09Z,- HackforLABot commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2472325755) at 2024-11-12 08:01 PM PST -HackforLABot,2024-11-13T04:03:53Z,- HackforLABot commented on issue: [7668](https://github.com/hackforla/website/issues/7668#issuecomment-2472328170) at 2024-11-12 08:03 PM PST -HackforLABot,2024-11-13T04:25:17Z,- HackforLABot commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2472346947) at 2024-11-12 08:25 PM PST -HackforLABot,2024-11-13T16:09:22Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2474058622) at 2024-11-13 08:09 AM PST -HackforLABot,2024-11-13T19:38:22Z,- HackforLABot commented on issue: [7459](https://github.com/hackforla/website/issues/7459#issuecomment-2474576620) at 2024-11-13 11:38 AM PST -HackforLABot,2024-11-14T00:48:56Z,- HackforLABot commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2475121450) at 2024-11-13 04:48 PM PST -HackforLABot,2024-11-15T02:08:13Z,- HackforLABot commented on issue: [7474](https://github.com/hackforla/website/issues/7474#issuecomment-2477809285) at 2024-11-14 06:08 PM PST -HackforLABot,2024-11-15T03:38:25Z,- HackforLABot commented on issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2477888340) at 2024-11-14 07:38 PM PST -HackforLABot,2024-11-15T07:05:39Z,- HackforLABot commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2478100085) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:41Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2478100146) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:46Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2478100265) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:49Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2478100310) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:51Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2478100351) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:55Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2478100444) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:05:57Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2478100482) at 2024-11-14 11:05 PM PST -HackforLABot,2024-11-15T07:06:08Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2478100679) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:13Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2478100799) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:20Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2478100943) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:24Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2478101016) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:29Z,- HackforLABot commented on issue: [7212](https://github.com/hackforla/website/issues/7212#issuecomment-2478101109) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:34Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2478101219) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:37Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2478101279) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:39Z,- HackforLABot commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2478101324) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:42Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2478101371) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:46Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2478101455) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:49Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2478101508) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:51Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2478101553) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:53Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2478101603) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:06:55Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2478101639) at 2024-11-14 11:06 PM PST -HackforLABot,2024-11-15T07:07:00Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2478101758) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:02Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2478101803) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:05Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2478101868) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:08Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2478101928) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:12Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2478102006) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:15Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2478102074) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:17Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2478102129) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:20Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2478102195) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:23Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2478102265) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:07:32Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2478102458) at 2024-11-14 11:07 PM PST -HackforLABot,2024-11-15T07:08:05Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2478103160) at 2024-11-14 11:08 PM PST -HackforLABot,2024-11-15T19:10:29Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2479744996) at 2024-11-15 11:10 AM PST -HackforLABot,2024-11-16T22:26:11Z,- HackforLABot commented on issue: [7647](https://github.com/hackforla/website/issues/7647#issuecomment-2480831717) at 2024-11-16 02:26 PM PST -HackforLABot,2024-11-17T17:32:25Z,- HackforLABot commented on issue: [7650](https://github.com/hackforla/website/issues/7650#issuecomment-2481394469) at 2024-11-17 09:32 AM PST -HackforLABot,2024-11-17T18:12:36Z,- HackforLABot commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2481413580) at 2024-11-17 10:12 AM PST -HackforLABot,2024-11-18T19:12:24Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2483894498) at 2024-11-18 11:12 AM PST -HackforLABot,2024-11-19T16:29:50Z,- HackforLABot commented on issue: [7603](https://github.com/hackforla/website/issues/7603#issuecomment-2486192232) at 2024-11-19 08:29 AM PST -HackforLABot,2024-11-19T19:14:02Z,- HackforLABot commented on issue: [7399](https://github.com/hackforla/website/issues/7399#issuecomment-2486544320) at 2024-11-19 11:14 AM PST -HackforLABot,2024-11-19T21:23:51Z,- HackforLABot commented on issue: [7490](https://github.com/hackforla/website/issues/7490#issuecomment-2486781697) at 2024-11-19 01:23 PM PST -HackforLABot,2024-11-19T21:46:35Z,- HackforLABot commented on issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2486817802) at 2024-11-19 01:46 PM PST -HackforLABot,2024-11-20T02:27:03Z,- HackforLABot commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487197087) at 2024-11-19 06:27 PM PST -HackforLABot,2024-11-20T02:52:37Z,- HackforLABot commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2487236019) at 2024-11-19 06:52 PM PST -HackforLABot,2024-11-20T03:07:57Z,- HackforLABot commented on issue: [7701](https://github.com/hackforla/website/issues/7701#issuecomment-2487251353) at 2024-11-19 07:07 PM PST -HackforLABot,2024-11-20T05:42:54Z,- HackforLABot commented on issue: [7702](https://github.com/hackforla/website/issues/7702#issuecomment-2487502809) at 2024-11-19 09:42 PM PST -HackforLABot,2024-11-21T03:05:04Z,- HackforLABot commented on issue: [7661](https://github.com/hackforla/website/issues/7661#issuecomment-2489971058) at 2024-11-20 07:05 PM PST -HackforLABot,2024-11-22T07:05:28Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2493015858) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:32Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2493015949) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:34Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2493015994) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:37Z,- HackforLABot commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2493016034) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:41Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2493016136) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:43Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2493016202) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:47Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2493016309) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:50Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2493016389) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:52Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2493016423) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:05:57Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2493016536) at 2024-11-21 11:05 PM PST -HackforLABot,2024-11-22T07:06:01Z,- HackforLABot commented on issue: [7219](https://github.com/hackforla/website/issues/7219#issuecomment-2493016651) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:03Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2493016700) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:05Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2493016748) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:09Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2493016836) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:12Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2493016910) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:17Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2493017019) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:19Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2493017070) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:21Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2493017110) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:23Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2493017149) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:25Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2493017186) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:27Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2493017240) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:29Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2493017285) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:31Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2493017332) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:33Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2493017379) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:35Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2493017417) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:38Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2493017489) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:40Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2493017534) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:42Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2493017577) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:06:44Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2493017611) at 2024-11-21 11:06 PM PST -HackforLABot,2024-11-22T07:07:17Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2493018474) at 2024-11-21 11:07 PM PST -HackforLABot,2024-11-22T07:29:53Z,- HackforLABot commented on issue: [7703](https://github.com/hackforla/website/issues/7703#issuecomment-2493054208) at 2024-11-21 11:29 PM PST -HackforLABot,2024-11-22T21:02:26Z,- HackforLABot commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2494794081) at 2024-11-22 01:02 PM PST -HackforLABot,2024-11-23T09:20:19Z,- HackforLABot commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2495413093) at 2024-11-23 01:20 AM PST -HackforLABot,2024-11-24T17:22:44Z,- HackforLABot commented on issue: [7760](https://github.com/hackforla/website/issues/7760#issuecomment-2496119633) at 2024-11-24 09:22 AM PST -HackforLABot,2024-11-24T18:37:28Z,- HackforLABot commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2496161660) at 2024-11-24 10:37 AM PST -HackforLABot,2024-11-24T19:14:31Z,- HackforLABot commented on issue: [7651](https://github.com/hackforla/website/issues/7651#issuecomment-2496181644) at 2024-11-24 11:14 AM PST -HackforLABot,2024-11-25T06:45:26Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2496995849) at 2024-11-24 10:45 PM PST -HackforLABot,2024-11-25T13:40:30Z,- HackforLABot commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2498052502) at 2024-11-25 05:40 AM PST -HackforLABot,2024-11-25T19:23:51Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498852920) at 2024-11-25 11:23 AM PST -HackforLABot,2024-11-26T01:09:47Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499349652) at 2024-11-25 05:09 PM PST -HackforLABot,2024-11-26T01:12:38Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499352645) at 2024-11-25 05:12 PM PST -HackforLABot,2024-11-26T03:40:57Z,- HackforLABot commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2499587714) at 2024-11-25 07:40 PM PST -HackforLABot,2024-11-26T03:54:43Z,- HackforLABot commented on issue: [7770](https://github.com/hackforla/website/issues/7770#issuecomment-2499600355) at 2024-11-25 07:54 PM PST -HackforLABot,2024-11-26T04:24:02Z,- HackforLABot commented on issue: [7771](https://github.com/hackforla/website/issues/7771#issuecomment-2499628462) at 2024-11-25 08:24 PM PST -HackforLABot,2024-11-27T04:10:06Z,- HackforLABot commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2502682581) at 2024-11-26 08:10 PM PST -HackforLABot,2024-11-27T04:10:33Z,- HackforLABot commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2502683010) at 2024-11-26 08:10 PM PST -HackforLABot,2024-11-27T16:11:44Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2504268912) at 2024-11-27 08:11 AM PST -HackforLABot,2024-11-28T00:46:50Z,- HackforLABot commented on issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2505058126) at 2024-11-27 04:46 PM PST -HackforLABot,2024-11-28T01:57:13Z,- HackforLABot commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2505115462) at 2024-11-27 05:57 PM PST -HackforLABot,2024-11-29T07:05:28Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2507206094) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:30Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2507206137) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:32Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2507206176) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:34Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2507206213) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:36Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2507206252) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:38Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2507206286) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:44Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2507206405) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:45Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2507206441) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:47Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2507206475) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:50Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2507206522) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:51Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2507206559) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:54Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2507206610) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:56Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2507206647) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:05:58Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2507206681) at 2024-11-28 11:05 PM PST -HackforLABot,2024-11-29T07:06:00Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2507206722) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:04Z,- HackforLABot commented on issue: [7574](https://github.com/hackforla/website/issues/7574#issuecomment-2507206785) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:06Z,- HackforLABot commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2507206816) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:08Z,- HackforLABot commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2507206851) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:11Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2507206922) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:14Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2507206982) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:15Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2507207007) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:22Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2507207126) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:26Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2507207198) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:30Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2507207269) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:35Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2507207362) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:37Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2507207408) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:42Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2507207511) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:44Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2507207553) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:46Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2507207584) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:49Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2507207671) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:51Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2507207710) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:52Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2507207748) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:54Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2507207773) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:56Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2507207813) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:58Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2507207843) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:06:59Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2507207876) at 2024-11-28 11:06 PM PST -HackforLABot,2024-11-29T07:07:01Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2507207914) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:03Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2507207941) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:05Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2507207985) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:08Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2507208030) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:10Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2507208062) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:11Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2507208112) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:13Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2507208146) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:16Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2507208194) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:17Z,- HackforLABot commented on issue: [6832](https://github.com/hackforla/website/issues/6832#issuecomment-2507208234) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:19Z,- HackforLABot commented on issue: [6727](https://github.com/hackforla/website/issues/6727#issuecomment-2507208268) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:26Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2507208380) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:47Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2507208763) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:56Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2507208909) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:07:58Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2507208945) at 2024-11-28 11:07 PM PST -HackforLABot,2024-11-29T07:08:03Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2507209051) at 2024-11-28 11:08 PM PST -HackforLABot,2024-11-29T08:55:00Z,- HackforLABot commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2507352482) at 2024-11-29 12:55 AM PST -HackforLABot,2024-12-01T03:16:22Z,- HackforLABot commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2509545960) at 2024-11-30 07:16 PM PST -HackforLABot,2024-12-01T11:07:14Z,- HackforLABot closed issue as completed: [7020](https://github.com/hackforla/website/issues/7020#event-15484025688) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:15Z,- HackforLABot commented on issue: [7020](https://github.com/hackforla/website/issues/7020#issuecomment-2509707920) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:15Z,- HackforLABot commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2509707962) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:15Z,- HackforLABot closed issue as completed: [7028](https://github.com/hackforla/website/issues/7028#event-15484026155) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:16Z,- HackforLABot closed issue as completed: [7426](https://github.com/hackforla/website/issues/7426#event-15484026942) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:17Z,- HackforLABot commented on issue: [7426](https://github.com/hackforla/website/issues/7426#issuecomment-2509708209) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:21Z,- HackforLABot closed issue as completed: [7519](https://github.com/hackforla/website/issues/7519#event-15484027139) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:22Z,- HackforLABot closed issue as completed: [6957](https://github.com/hackforla/website/issues/6957#event-15484027196) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:22Z,- HackforLABot commented on issue: [7519](https://github.com/hackforla/website/issues/7519#issuecomment-2509708610) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:23Z,- HackforLABot commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2509708658) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:23Z,- HackforLABot closed issue as completed: [7029](https://github.com/hackforla/website/issues/7029#event-15484027238) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:24Z,- HackforLABot commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2509708712) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:25Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2509708764) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:25Z,- HackforLABot closed issue as completed: [7217](https://github.com/hackforla/website/issues/7217#event-15484027276) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:07:51Z,- HackforLABot opened issue: [7790](https://github.com/hackforla/website/issues/7790) at 2024-12-01 03:07 AM PST -HackforLABot,2024-12-01T11:08:08Z,- HackforLABot closed issue as completed: [7790](https://github.com/hackforla/website/issues/7790#event-15484031697) at 2024-12-01 03:08 AM PST -HackforLABot,2024-12-02T17:40:57Z,- HackforLABot commented on issue: [7789](https://github.com/hackforla/website/issues/7789#issuecomment-2512258416) at 2024-12-02 09:40 AM PST -HackforLABot,2024-12-02T17:43:30Z,- HackforLABot commented on issue: [7689](https://github.com/hackforla/website/issues/7689#issuecomment-2512263868) at 2024-12-02 09:43 AM PST -HackforLABot,2024-12-02T22:38:59Z,- HackforLABot commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2513119805) at 2024-12-02 02:38 PM PST -HackforLABot,2024-12-03T19:35:33Z,- HackforLABot commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2515422686) at 2024-12-03 11:35 AM PST -HackforLABot,2024-12-03T21:18:08Z,- HackforLABot commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2515570394) at 2024-12-03 01:18 PM PST -HackforLABot,2024-12-03T23:56:05Z,- HackforLABot commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2515825922) at 2024-12-03 03:56 PM PST -HackforLABot,2024-12-04T17:58:28Z,- HackforLABot commented on issue: [7604](https://github.com/hackforla/website/issues/7604#issuecomment-2518158177) at 2024-12-04 09:58 AM PST -HackforLABot,2024-12-04T18:05:36Z,- HackforLABot commented on issue: [7396](https://github.com/hackforla/website/issues/7396#issuecomment-2518172291) at 2024-12-04 10:05 AM PST -HackforLABot,2024-12-05T01:31:09Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518893161) at 2024-12-04 05:31 PM PST -HackforLABot,2024-12-05T01:32:07Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2518894122) at 2024-12-04 05:32 PM PST -HackforLABot,2024-12-05T19:32:47Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2521235751) at 2024-12-05 11:32 AM PST -HackforLABot,2024-12-06T08:11:22Z,- HackforLABot commented on issue: [7731](https://github.com/hackforla/website/issues/7731#issuecomment-2522468747) at 2024-12-06 12:11 AM PST -HackforLABot,2024-12-12T05:21:08Z,- HackforLABot commented on issue: [7780](https://github.com/hackforla/website/issues/7780#issuecomment-2537839534) at 2024-12-11 09:21 PM PST -HackforLABot,2024-12-12T05:31:03Z,- HackforLABot commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2537850961) at 2024-12-11 09:31 PM PST -HackforLABot,2024-12-13T00:48:15Z,- HackforLABot commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2540298558) at 2024-12-12 04:48 PM PST -HackforLABot,2024-12-13T01:13:31Z,- HackforLABot commented on issue: [7797](https://github.com/hackforla/website/issues/7797#issuecomment-2540323552) at 2024-12-12 05:13 PM PST -HackforLABot,2024-12-13T02:01:41Z,- HackforLABot commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2540370339) at 2024-12-12 06:01 PM PST -HackforLABot,2024-12-13T17:47:43Z,- HackforLABot commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2541956189) at 2024-12-13 09:47 AM PST -HackforLABot,2024-12-20T03:56:01Z,- HackforLABot commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2556236554) at 2024-12-19 07:56 PM PST -HackforLABot,2025-01-03T07:05:07Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2568774771) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:10Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2568774804) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:12Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2568774833) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:15Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2568774881) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:17Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2568774921) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:20Z,- HackforLABot commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2568774949) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:22Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2568774981) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:24Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2568775012) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:26Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2568775051) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:29Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2568775088) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:30Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2568775115) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:32Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2568775144) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:35Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2568775185) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:37Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2568775225) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:38Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2568775245) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:40Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2568775284) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:42Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2568775314) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:44Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2568775344) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:46Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2568775375) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:49Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2568775411) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:51Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2568775436) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:53Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2568775462) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:55Z,- HackforLABot commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2568775487) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:58Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2568775541) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:05:59Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2568775563) at 2025-01-02 11:05 PM PST -HackforLABot,2025-01-03T07:06:02Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2568775593) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:04Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2568775620) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:06Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2568775650) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:08Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2568775679) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:10Z,- HackforLABot commented on issue: [7433](https://github.com/hackforla/website/issues/7433#issuecomment-2568775707) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:13Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2568775756) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:16Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2568775778) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:18Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2568775808) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:20Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2568775835) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:25Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2568775895) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:31Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2568775986) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:33Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2568776015) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:35Z,- HackforLABot commented on issue: [7203](https://github.com/hackforla/website/issues/7203#issuecomment-2568776043) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:37Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2568776069) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:39Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2568776087) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:41Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2568776111) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:43Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2568776140) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:45Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2568776162) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:47Z,- HackforLABot commented on issue: [6948](https://github.com/hackforla/website/issues/6948#issuecomment-2568776191) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:50Z,- HackforLABot commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2568776216) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:52Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2568776250) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:54Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2568776281) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:55Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2568776303) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:06:58Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2568776331) at 2025-01-02 11:06 PM PST -HackforLABot,2025-01-03T07:07:08Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2568776470) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:24Z,- HackforLABot commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2568776685) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:33Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2568776805) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:36Z,- HackforLABot commented on issue: [6341](https://github.com/hackforla/website/issues/6341#issuecomment-2568776841) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-03T07:07:41Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2568776915) at 2025-01-02 11:07 PM PST -HackforLABot,2025-01-06T18:35:10Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2573685937) at 2025-01-06 10:35 AM PST -HackforLABot,2025-01-10T00:09:17Z,- HackforLABot commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2581482448) at 2025-01-09 04:09 PM PST -HackforLABot,2025-01-10T07:05:25Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2581928547) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:31Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2581928660) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:33Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2581928721) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:38Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2581928847) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:42Z,- HackforLABot commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2581928979) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:47Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2581929103) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:49Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2581929156) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:51Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2581929219) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:54Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2581929277) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:05:58Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2581929444) at 2025-01-09 11:05 PM PST -HackforLABot,2025-01-10T07:06:03Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2581929585) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:05Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2581929649) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:08Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2581929702) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:12Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2581929787) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:16Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2581929952) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:22Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2581930091) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:25Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2581930147) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:29Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2581930250) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:34Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2581930376) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:40Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2581930554) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:45Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2581930664) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:53Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2581930839) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:06:58Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2581931044) at 2025-01-09 11:06 PM PST -HackforLABot,2025-01-10T07:07:01Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2581931115) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:04Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2581931193) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:08Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2581931306) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:11Z,- HackforLABot commented on issue: [7030](https://github.com/hackforla/website/issues/7030#issuecomment-2581931359) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:15Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2581931473) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:23Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2581931634) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:25Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2581931677) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:28Z,- HackforLABot commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2581931732) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:07:30Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2581931776) at 2025-01-09 11:07 PM PST -HackforLABot,2025-01-10T07:08:09Z,- HackforLABot commented on issue: [6350](https://github.com/hackforla/website/issues/6350#issuecomment-2581932519) at 2025-01-09 11:08 PM PST -HackforLABot,2025-01-10T07:08:43Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2581933176) at 2025-01-09 11:08 PM PST -HackforLABot,2025-01-14T04:24:36Z,- HackforLABot commented on issue: [7611](https://github.com/hackforla/website/issues/7611#issuecomment-2588918122) at 2025-01-13 08:24 PM PST -HackforLABot,2025-01-15T03:54:30Z,- HackforLABot commented on issue: [7742](https://github.com/hackforla/website/issues/7742#issuecomment-2591590351) at 2025-01-14 07:54 PM PST -HackforLABot,2025-01-17T02:17:03Z,- HackforLABot commented on issue: [7833](https://github.com/hackforla/website/issues/7833#issuecomment-2597292897) at 2025-01-16 06:17 PM PST -HackforLABot,2025-01-17T02:53:51Z,- HackforLABot reopened issue: [6885](https://github.com/hackforla/website/issues/6885#event-12920899109) at 2025-01-16 06:53 PM PST -HackforLABot,2025-01-17T02:53:57Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2597327304) at 2025-01-16 06:53 PM PST -HackforLABot,2025-01-17T02:53:57Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2597327297) at 2025-01-16 06:53 PM PST -HackforLABot,2025-01-17T05:58:15Z,- HackforLABot commented on issue: [7751](https://github.com/hackforla/website/issues/7751#issuecomment-2597494520) at 2025-01-16 09:58 PM PST -HackforLABot,2025-01-17T07:05:29Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2597570759) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:32Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2597570811) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:36Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2597570878) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:38Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2597570929) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:40Z,- HackforLABot commented on issue: [7732](https://github.com/hackforla/website/issues/7732#issuecomment-2597570989) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:43Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2597571043) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:48Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2597571130) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:51Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2597571192) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:55Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2597571278) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:05:58Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2597571342) at 2025-01-16 11:05 PM PST -HackforLABot,2025-01-17T07:06:00Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2597571386) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:03Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2597571439) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:05Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2597571493) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:09Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2597571580) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:12Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2597571652) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:16Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2597571735) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:18Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2597571793) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:21Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2597571856) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:25Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2597571941) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:27Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2597572001) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:30Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2597572058) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:34Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2597572137) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:36Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2597572188) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:38Z,- HackforLABot commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2597572231) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:44Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2597572336) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:46Z,- HackforLABot commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2597572391) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:49Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2597572451) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:51Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2597572514) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:06:57Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2597572629) at 2025-01-16 11:06 PM PST -HackforLABot,2025-01-17T07:07:04Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2597572792) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:06Z,- HackforLABot commented on issue: [7205](https://github.com/hackforla/website/issues/7205#issuecomment-2597572831) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:10Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2597572937) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:16Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2597573063) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:18Z,- HackforLABot commented on issue: [6956](https://github.com/hackforla/website/issues/6956#issuecomment-2597573108) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:29Z,- HackforLABot commented on issue: [6879](https://github.com/hackforla/website/issues/6879#issuecomment-2597573333) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:07:34Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2597573440) at 2025-01-16 11:07 PM PST -HackforLABot,2025-01-17T07:08:31Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2597574617) at 2025-01-16 11:08 PM PST -HackforLABot,2025-01-21T02:33:07Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2603502874) at 2025-01-20 06:33 PM PST -HackforLABot,2025-01-21T02:34:17Z,- HackforLABot commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2603503970) at 2025-01-20 06:34 PM PST -HackforLABot,2025-01-21T03:23:22Z,- HackforLABot commented on issue: [7752](https://github.com/hackforla/website/issues/7752#issuecomment-2603551611) at 2025-01-20 07:23 PM PST -HackforLABot,2025-01-21T04:05:19Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2603613439) at 2025-01-20 08:05 PM PST -HackforLABot,2025-01-21T21:02:37Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605733134) at 2025-01-21 01:02 PM PST -HackforLABot,2025-01-21T23:48:49Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605972760) at 2025-01-21 03:48 PM PST -HackforLABot,2025-01-21T23:52:14Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2605976501) at 2025-01-21 03:52 PM PST -HackforLABot,2025-01-22T02:32:47Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2606151364) at 2025-01-21 06:32 PM PST -HackforLABot,2025-01-22T03:42:43Z,- HackforLABot commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2606221893) at 2025-01-21 07:42 PM PST -HackforLABot,2025-01-22T07:19:39Z,- HackforLABot commented on issue: [7753](https://github.com/hackforla/website/issues/7753#issuecomment-2606470145) at 2025-01-21 11:19 PM PST -HackforLABot,2025-01-22T19:57:42Z,- HackforLABot commented on issue: [7754](https://github.com/hackforla/website/issues/7754#issuecomment-2608145140) at 2025-01-22 11:57 AM PST -HackforLABot,2025-01-22T21:03:03Z,- HackforLABot commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2608262989) at 2025-01-22 01:03 PM PST -HackforLABot,2025-01-23T00:39:11Z,- HackforLABot commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2608589724) at 2025-01-22 04:39 PM PST -HackforLABot,2025-01-24T03:26:26Z,- HackforLABot commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2611469774) at 2025-01-23 07:26 PM PST -HackforLABot,2025-01-24T07:05:11Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2611745069) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:13Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2611745144) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:20Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2611745323) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:22Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2611745384) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:25Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2611745519) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:27Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2611745574) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:29Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2611745669) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:32Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2611745737) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:35Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2611745903) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:37Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2611746041) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:39Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2611746113) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:42Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2611746206) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:46Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2611746347) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:50Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2611746455) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:52Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2611746505) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:54Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2611746564) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:05:57Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2611746611) at 2025-01-23 11:05 PM PST -HackforLABot,2025-01-24T07:06:04Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2611746771) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:09Z,- HackforLABot commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2611747078) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:14Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2611747248) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:18Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2611747341) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:20Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2611747393) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:27Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2611747607) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:32Z,- HackforLABot commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2611747738) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:40Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2611748116) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:06:42Z,- HackforLABot commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2611748181) at 2025-01-23 11:06 PM PST -HackforLABot,2025-01-24T07:07:28Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2611749434) at 2025-01-23 11:07 PM PST -HackforLABot,2025-01-25T23:02:26Z,- HackforLABot commented on issue: [7356](https://github.com/hackforla/website/issues/7356#issuecomment-2614127085) at 2025-01-25 03:02 PM PST -HackforLABot,2025-01-26T18:44:13Z,- HackforLABot commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2614544230) at 2025-01-26 10:44 AM PST -HackforLABot,2025-01-26T22:34:53Z,- HackforLABot commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614618011) at 2025-01-26 02:34 PM PST -HackforLABot,2025-01-27T00:48:51Z,- HackforLABot commented on issue: [7567](https://github.com/hackforla/website/issues/7567#issuecomment-2614671584) at 2025-01-26 04:48 PM PST -HackforLABot,2025-01-31T03:21:21Z,- HackforLABot commented on issue: [7866](https://github.com/hackforla/website/issues/7866#issuecomment-2626216264) at 2025-01-30 07:21 PM PST -HackforLABot,2025-01-31T04:50:37Z,- HackforLABot commented on issue: [7855](https://github.com/hackforla/website/issues/7855#issuecomment-2626294989) at 2025-01-30 08:50 PM PST -HackforLABot,2025-01-31T07:05:18Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2626450662) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:22Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2626450738) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:24Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2626450783) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:29Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2626450915) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:33Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2626450993) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:35Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2626451038) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:38Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2626451090) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:39Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2626451136) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:42Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2626451185) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:44Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2626451223) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:47Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2626451300) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:50Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2626451353) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:53Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2626451419) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:55Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2626451468) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:05:57Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2626451510) at 2025-01-30 11:05 PM PST -HackforLABot,2025-01-31T07:06:01Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2626451584) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:05Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2626451662) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:09Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2626451745) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:11Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2626451784) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:13Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2626451838) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:17Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2626451918) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:24Z,- HackforLABot commented on issue: [7495](https://github.com/hackforla/website/issues/7495#issuecomment-2626452045) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:29Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2626452135) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:34Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2626452233) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:43Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2626452384) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:49Z,- HackforLABot commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2626452484) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:51Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2626452528) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:06:58Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2626452647) at 2025-01-30 11:06 PM PST -HackforLABot,2025-01-31T07:07:22Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2626453148) at 2025-01-30 11:07 PM PST -HackforLABot,2025-01-31T07:07:33Z,- HackforLABot commented on issue: [6598](https://github.com/hackforla/website/issues/6598#issuecomment-2626453391) at 2025-01-30 11:07 PM PST -HackforLABot,2025-01-31T07:08:12Z,- HackforLABot commented on issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2626454104) at 2025-01-30 11:08 PM PST -HackforLABot,2025-02-01T11:06:45Z,- HackforLABot closed issue as completed: [7339](https://github.com/hackforla/website/issues/7339#event-16149851649) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:46Z,- HackforLABot commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2628907062) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:46Z,- HackforLABot closed issue as completed: [7625](https://github.com/hackforla/website/issues/7625#event-16149851656) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:47Z,- HackforLABot closed issue as completed: [7624](https://github.com/hackforla/website/issues/7624#event-16149851684) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:47Z,- HackforLABot commented on issue: [7625](https://github.com/hackforla/website/issues/7625#issuecomment-2628907072) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:48Z,- HackforLABot commented on issue: [7520](https://github.com/hackforla/website/issues/7520#issuecomment-2628907098) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:48Z,- HackforLABot closed issue as completed: [7520](https://github.com/hackforla/website/issues/7520#event-16149851701) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:06:48Z,- HackforLABot commented on issue: [7624](https://github.com/hackforla/website/issues/7624#issuecomment-2628907089) at 2025-02-01 03:06 AM PST -HackforLABot,2025-02-01T11:07:21Z,- HackforLABot opened issue: [7869](https://github.com/hackforla/website/issues/7869) at 2025-02-01 03:07 AM PST -HackforLABot,2025-02-01T11:07:38Z,- HackforLABot closed issue as completed: [7869](https://github.com/hackforla/website/issues/7869#event-16149853462) at 2025-02-01 03:07 AM PST -HackforLABot,2025-02-01T18:02:56Z,- HackforLABot commented on issue: [7870](https://github.com/hackforla/website/issues/7870#issuecomment-2629050099) at 2025-02-01 10:02 AM PST -HackforLABot,2025-02-03T04:09:54Z,- HackforLABot reopened issue: [6885](https://github.com/hackforla/website/issues/6885#event-16066803811) at 2025-02-02 08:09 PM PST -HackforLABot,2025-02-03T04:09:59Z,- HackforLABot commented on issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2629862978) at 2025-02-02 08:09 PM PST -HackforLABot,2025-02-03T04:10:02Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2629863012) at 2025-02-02 08:10 PM PST -HackforLABot,2025-02-03T04:16:18Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2629871649) at 2025-02-02 08:16 PM PST -HackforLABot,2025-02-03T04:16:18Z,- HackforLABot commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2629871636) at 2025-02-02 08:16 PM PST -HackforLABot,2025-02-03T23:26:06Z,- HackforLABot commented on issue: [7479](https://github.com/hackforla/website/issues/7479#issuecomment-2632405054) at 2025-02-03 03:26 PM PST -HackforLABot,2025-02-04T01:23:45Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2632549099) at 2025-02-03 05:23 PM PST -HackforLABot,2025-02-04T04:41:22Z,- HackforLABot commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2632844998) at 2025-02-03 08:41 PM PST -HackforLABot,2025-02-04T05:09:48Z,- HackforLABot commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2632892917) at 2025-02-03 09:09 PM PST -HackforLABot,2025-02-05T03:55:45Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2635645948) at 2025-02-04 07:55 PM PST -HackforLABot,2025-02-05T05:32:55Z,- HackforLABot commented on issue: [7480](https://github.com/hackforla/website/issues/7480#issuecomment-2635742057) at 2025-02-04 09:32 PM PST -HackforLABot,2025-02-05T05:37:26Z,- HackforLABot commented on issue: [7480](https://github.com/hackforla/website/issues/7480#issuecomment-2635746973) at 2025-02-04 09:37 PM PST -HackforLABot,2025-02-05T09:19:07Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2636168613) at 2025-02-05 01:19 AM PST -HackforLABot,2025-02-05T12:22:29Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2636583978) at 2025-02-05 04:22 AM PST -HackforLABot,2025-02-05T23:21:31Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2638256811) at 2025-02-05 03:21 PM PST -HackforLABot,2025-02-06T19:02:53Z,- HackforLABot commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2640751428) at 2025-02-06 11:02 AM PST -HackforLABot,2025-02-06T19:21:41Z,- HackforLABot commented on issue: [7774](https://github.com/hackforla/website/issues/7774#issuecomment-2640786580) at 2025-02-06 11:21 AM PST -HackforLABot,2025-02-06T20:54:36Z,- HackforLABot commented on issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2640997244) at 2025-02-06 12:54 PM PST -HackforLABot,2025-02-06T20:57:27Z,- HackforLABot commented on issue: [7855](https://github.com/hackforla/website/issues/7855#issuecomment-2641004431) at 2025-02-06 12:57 PM PST -HackforLABot,2025-02-07T07:05:24Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2642098792) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:27Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2642098863) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:29Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2642098911) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:31Z,- HackforLABot commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2642098959) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:36Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2642099058) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:38Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2642099110) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:41Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2642099170) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:45Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2642099237) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:47Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2642099272) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:49Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2642099350) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:52Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2642099402) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:57Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2642099555) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:05:59Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2642099615) at 2025-02-06 11:05 PM PST -HackforLABot,2025-02-07T07:06:02Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2642099671) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:05Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2642099712) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:07Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2642099776) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:10Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2642099830) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:13Z,- HackforLABot commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2642099894) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:17Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2642099993) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:23Z,- HackforLABot commented on issue: [7327](https://github.com/hackforla/website/issues/7327#issuecomment-2642100138) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:26Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2642100201) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:32Z,- HackforLABot commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2642100332) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:40Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2642100522) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:06:48Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2642100688) at 2025-02-06 11:06 PM PST -HackforLABot,2025-02-07T07:07:04Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2642101094) at 2025-02-06 11:07 PM PST -HackforLABot,2025-02-07T07:07:14Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2642101315) at 2025-02-06 11:07 PM PST -HackforLABot,2025-02-07T07:08:06Z,- HackforLABot commented on issue: [6033](https://github.com/hackforla/website/issues/6033#issuecomment-2642102498) at 2025-02-06 11:08 PM PST -HackforLABot,2025-02-07T07:08:31Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2642103031) at 2025-02-06 11:08 PM PST -HackforLABot,2025-02-07T12:47:04Z,- HackforLABot commented on issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2642823300) at 2025-02-07 04:47 AM PST -HackforLABot,2025-02-07T21:06:54Z,- HackforLABot commented on issue: [7878](https://github.com/hackforla/website/issues/7878#issuecomment-2644129184) at 2025-02-07 01:06 PM PST -HackforLABot,2025-02-10T05:49:27Z,- HackforLABot commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2646978071) at 2025-02-09 09:49 PM PST -HackforLABot,2025-02-11T20:10:37Z,- HackforLABot commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2651962293) at 2025-02-11 12:10 PM PST -HackforLABot,2025-02-12T00:09:07Z,- HackforLABot commented on issue: [7766](https://github.com/hackforla/website/issues/7766#issuecomment-2652337020) at 2025-02-11 04:09 PM PST -HackforLABot,2025-02-13T11:58:32Z,- HackforLABot commented on issue: [7395](https://github.com/hackforla/website/issues/7395#issuecomment-2656378888) at 2025-02-13 03:58 AM PST -HackforLABot,2025-02-14T03:08:49Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:08 PM PST -HackforLABot,2025-02-14T03:09:34Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165098) at 2025-02-13 07:09 PM PST -HackforLABot,2025-02-14T03:09:58Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165556) at 2025-02-13 07:09 PM PST -HackforLABot,2025-02-14T03:14:16Z,- HackforLABot commented on issue: [7850](https://github.com/hackforla/website/issues/7850#issuecomment-2658169638) at 2025-02-13 07:14 PM PST -HackforLABot,2025-02-14T03:23:00Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658178106) at 2025-02-13 07:23 PM PST -HackforLABot,2025-02-14T03:30:51Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658185774) at 2025-02-13 07:30 PM PST -HackforLABot,2025-02-14T03:31:45Z,- HackforLABot commented on issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658186571) at 2025-02-13 07:31 PM PST -HackforLABot,2025-02-14T03:59:25Z,- HackforLABot commented on issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2658210594) at 2025-02-13 07:59 PM PST -HackforLABot,2025-02-14T07:05:07Z,- HackforLABot commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2658437593) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:09Z,- HackforLABot commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2658437684) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:13Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2658437934) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:17Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2658438168) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:19Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2658438261) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:21Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2658438370) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:23Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2658438543) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:25Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2658438642) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:28Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2658438803) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:30Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2658438920) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:31Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2658439017) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:33Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2658439115) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:36Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2658439274) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:38Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2658439395) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:40Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2658439528) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:41Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2658439616) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:43Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2658439703) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:46Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2658439871) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:51Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2658440103) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:05:54Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2658440256) at 2025-02-13 11:05 PM PST -HackforLABot,2025-02-14T07:06:08Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2658441111) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T07:06:14Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2658441477) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T07:06:25Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2658442189) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T07:06:34Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2658442685) at 2025-02-13 11:06 PM PST -HackforLABot,2025-02-14T18:26:12Z,- HackforLABot commented on issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660002268) at 2025-02-14 10:26 AM PST -HackforLABot,2025-02-14T18:28:38Z,- HackforLABot commented on issue: [7812](https://github.com/hackforla/website/issues/7812#issuecomment-2660006259) at 2025-02-14 10:28 AM PST -HackforLABot,2025-02-14T18:46:09Z,- HackforLABot commented on issue: [7438](https://github.com/hackforla/website/issues/7438#issuecomment-2660034278) at 2025-02-14 10:46 AM PST -HackforLABot,2025-02-16T09:55:41Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661351382) at 2025-02-16 01:55 AM PST -HackforLABot,2025-02-16T09:55:42Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2661351386) at 2025-02-16 01:55 AM PST -HackforLABot,2025-02-16T10:18:24Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661362678) at 2025-02-16 02:18 AM PST -HackforLABot,2025-02-16T10:20:56Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661363589) at 2025-02-16 02:20 AM PST -HackforLABot,2025-02-16T19:14:22Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2661576139) at 2025-02-16 11:14 AM PST -HackforLABot,2025-02-16T19:20:03Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 11:20 AM PST -HackforLABot,2025-02-16T20:21:39Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661600532) at 2025-02-16 12:21 PM PST -HackforLABot,2025-02-16T20:24:43Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661601504) at 2025-02-16 12:24 PM PST -HackforLABot,2025-02-17T07:29:45Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2662269756) at 2025-02-16 11:29 PM PST -HackforLABot,2025-02-17T23:08:22Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2664206389) at 2025-02-17 03:08 PM PST -HackforLABot,2025-02-17T23:08:22Z,- HackforLABot commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2664206379) at 2025-02-17 03:08 PM PST -HackforLABot,2025-02-17T23:32:55Z,- HackforLABot commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2664228310) at 2025-02-17 03:32 PM PST -HackforLABot,2025-02-18T18:36:17Z,- HackforLABot commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2666570545) at 2025-02-18 10:36 AM PST -HackforLABot,2025-02-19T03:32:58Z,- HackforLABot commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2667427189) at 2025-02-18 07:32 PM PST -HackforLABot,2025-02-19T03:42:29Z,- HackforLABot commented on issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2667436272) at 2025-02-18 07:42 PM PST -HackforLABot,2025-02-19T03:55:01Z,- HackforLABot commented on issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2667448949) at 2025-02-18 07:55 PM PST -HackforLABot,2025-02-19T04:05:53Z,- HackforLABot commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2667458957) at 2025-02-18 08:05 PM PST -HackforLABot,2025-02-19T04:13:08Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2667466340) at 2025-02-18 08:13 PM PST -HackforLABot,2025-02-19T04:56:46Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2667508857) at 2025-02-18 08:56 PM PST -HackforLABot,2025-02-19T04:58:08Z,- HackforLABot commented on issue: [7476](https://github.com/hackforla/website/issues/7476#issuecomment-2667510298) at 2025-02-18 08:58 PM PST -HackforLABot,2025-02-20T11:13:50Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2671192286) at 2025-02-20 03:13 AM PST -HackforLABot,2025-02-20T11:13:50Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2671192296) at 2025-02-20 03:13 AM PST -HackforLABot,2025-02-20T11:14:52Z,- HackforLABot commented on issue: [7877](https://github.com/hackforla/website/issues/7877#issuecomment-2671194411) at 2025-02-20 03:14 AM PST -HackforLABot,2025-02-20T11:14:53Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2671194432) at 2025-02-20 03:14 AM PST -HackforLABot,2025-02-20T11:16:01Z,- HackforLABot commented on issue: [7393](https://github.com/hackforla/website/issues/7393#issuecomment-2671196817) at 2025-02-20 03:16 AM PST -HackforLABot,2025-02-20T13:57:30Z,- HackforLABot commented on pull request: [7930](https://github.com/hackforla/website/pull/7930#issuecomment-2671578401) at 2025-02-20 05:57 AM PST -HackforLABot,2025-02-20T17:46:33Z,- HackforLABot commented on issue: [7843](https://github.com/hackforla/website/issues/7843#issuecomment-2672235850) at 2025-02-20 09:46 AM PST -HackforLABot,2025-02-20T22:07:19Z,- HackforLABot commented on issue: [7387](https://github.com/hackforla/website/issues/7387#issuecomment-2672798348) at 2025-02-20 02:07 PM PST -HackforLABot,2025-02-20T23:16:02Z,- HackforLABot commented on issue: [7775](https://github.com/hackforla/website/issues/7775#issuecomment-2672920053) at 2025-02-20 03:16 PM PST -HackforLABot,2025-02-21T05:16:05Z,- HackforLABot commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-2673476000) at 2025-02-20 09:16 PM PST -HackforLABot,2025-02-21T05:16:06Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2673476009) at 2025-02-20 09:16 PM PST -HackforLABot,2025-02-21T07:05:17Z,- HackforLABot commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2673750811) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:21Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2673750902) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:24Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2673750978) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:25Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2673751031) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:29Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2673751114) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:31Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2673751152) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:34Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2673751210) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:36Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2673751267) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:38Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2673751308) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:40Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2673751367) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:43Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2673751622) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:46Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2673751811) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:48Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2673751884) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:50Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2673751987) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:05:54Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2673752191) at 2025-02-20 11:05 PM PST -HackforLABot,2025-02-21T07:06:00Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2673752462) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:15Z,- HackforLABot commented on issue: [7206](https://github.com/hackforla/website/issues/7206#issuecomment-2673752879) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:21Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2673753010) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:34Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2673753547) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:06:41Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2673753742) at 2025-02-20 11:06 PM PST -HackforLABot,2025-02-21T07:07:47Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2673755588) at 2025-02-20 11:07 PM PST -HackforLABot,2025-02-23T01:15:56Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2676485799) at 2025-02-22 05:15 PM PST -HackforLABot,2025-02-23T04:09:54Z,- HackforLABot commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2676552746) at 2025-02-22 08:09 PM PST -HackforLABot,2025-02-23T05:09:48Z,- HackforLABot commented on issue: [7484](https://github.com/hackforla/website/issues/7484#issuecomment-2676593873) at 2025-02-22 09:09 PM PST -HackforLABot,2025-02-23T19:13:35Z,- HackforLABot commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2677068275) at 2025-02-23 11:13 AM PST -HackforLABot,2025-02-25T04:40:24Z,- HackforLABot commented on issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2680472331) at 2025-02-24 08:40 PM PST -HackforLABot,2025-02-25T04:54:27Z,- HackforLABot commented on issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2680509133) at 2025-02-24 08:54 PM PST -HackforLABot,2025-02-25T17:55:51Z,- HackforLABot commented on issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2682859582) at 2025-02-25 09:55 AM PST -HackforLABot,2025-02-25T18:17:52Z,- HackforLABot commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2682910344) at 2025-02-25 10:17 AM PST -HackforLABot,2025-02-26T01:49:12Z,- HackforLABot commented on issue: [7824](https://github.com/hackforla/website/issues/7824#issuecomment-2683689454) at 2025-02-25 05:49 PM PST -HackforLABot,2025-02-26T03:39:23Z,- HackforLABot commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2683814657) at 2025-02-25 07:39 PM PST -HackforLABot,2025-02-26T03:39:24Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2683814673) at 2025-02-25 07:39 PM PST -HackforLABot,2025-02-26T03:42:50Z,- HackforLABot commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2683818162) at 2025-02-25 07:42 PM PST -HackforLABot,2025-02-26T03:42:51Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2683818179) at 2025-02-25 07:42 PM PST -HackforLABot,2025-02-26T03:44:14Z,- HackforLABot commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2683819611) at 2025-02-25 07:44 PM PST -HackforLABot,2025-02-26T03:44:15Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2683819618) at 2025-02-25 07:44 PM PST -HackforLABot,2025-02-26T21:22:34Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2686227549) at 2025-02-26 01:22 PM PST -HackforLABot,2025-02-27T00:20:46Z,- HackforLABot commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2686499942) at 2025-02-26 04:20 PM PST -HackforLABot,2025-02-27T02:30:52Z,- HackforLABot commented on issue: [7440](https://github.com/hackforla/website/issues/7440#issuecomment-2686699070) at 2025-02-26 06:30 PM PST -HackforLABot,2025-02-28T07:05:57Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2689895366) at 2025-02-27 11:05 PM PST -HackforLABot,2025-02-28T07:06:01Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2689895440) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:05Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2689895514) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:07Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2689895566) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:11Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2689895653) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:13Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2689895702) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:17Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2689895793) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:20Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2689895858) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:23Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2689895923) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:27Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2689896009) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:30Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2689896075) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:33Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2689896136) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:36Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2689896211) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:38Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2689896277) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:41Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2689896345) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:43Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2689896410) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:46Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2689896477) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:52Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2689896600) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:56Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2689896709) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:06:58Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2689896762) at 2025-02-27 11:06 PM PST -HackforLABot,2025-02-28T07:07:04Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2689896867) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:06Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2689896943) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:10Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2689897052) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:13Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2689897097) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:15Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2689897150) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:18Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2689897207) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:20Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2689897285) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:23Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2689897347) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:27Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2689897451) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:30Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2689897516) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:33Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2689897572) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:39Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2689897721) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:42Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2689897779) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:44Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2689897832) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:49Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2689897944) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:07:56Z,- HackforLABot commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2689898109) at 2025-02-27 11:07 PM PST -HackforLABot,2025-02-28T07:08:03Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2689898361) at 2025-02-27 11:08 PM PST -HackforLABot,2025-02-28T07:08:39Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2689899459) at 2025-02-27 11:08 PM PST -HackforLABot,2025-03-01T11:07:14Z,- HackforLABot commented on issue: [7692](https://github.com/hackforla/website/issues/7692#issuecomment-2692147150) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:14Z,- HackforLABot closed issue as completed: [7692](https://github.com/hackforla/website/issues/7692#event-16521928738) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:15Z,- HackforLABot closed issue as completed: [7694](https://github.com/hackforla/website/issues/7694#event-16521928792) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:16Z,- HackforLABot closed issue as completed: [7329](https://github.com/hackforla/website/issues/7329#event-16521928854) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:16Z,- HackforLABot closed issue as completed: [7573](https://github.com/hackforla/website/issues/7573#event-16521928844) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:16Z,- HackforLABot commented on issue: [7694](https://github.com/hackforla/website/issues/7694#issuecomment-2692147156) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:17Z,- HackforLABot commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2692147168) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:17Z,- HackforLABot commented on issue: [7573](https://github.com/hackforla/website/issues/7573#issuecomment-2692147164) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:19Z,- HackforLABot commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2692147187) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:19Z,- HackforLABot closed issue as completed: [7740](https://github.com/hackforla/website/issues/7740#event-16521928947) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:22Z,- HackforLABot commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2692147213) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:22Z,- HackforLABot closed issue as completed: [7633](https://github.com/hackforla/website/issues/7633#event-16521929052) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:23Z,- HackforLABot closed issue as completed: [7517](https://github.com/hackforla/website/issues/7517#event-16521929090) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:23Z,- HackforLABot commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2692147218) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:23Z,- HackforLABot closed issue as completed: [7741](https://github.com/hackforla/website/issues/7741#event-16521929072) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:24Z,- HackforLABot commented on issue: [7517](https://github.com/hackforla/website/issues/7517#issuecomment-2692147219) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:52Z,- HackforLABot opened issue: [7958](https://github.com/hackforla/website/issues/7958) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:07:54Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2692147388) at 2025-03-01 03:07 AM PST -HackforLABot,2025-03-01T11:08:10Z,- HackforLABot closed issue as completed: [7958](https://github.com/hackforla/website/issues/7958#event-16521930948) at 2025-03-01 03:08 AM PST -HackforLABot,2025-03-01T11:14:15Z,- HackforLABot commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2692152404) at 2025-03-01 03:14 AM PST -HackforLABot,2025-03-01T11:16:31Z,- HackforLABot commented on issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2692153370) at 2025-03-01 03:16 AM PST -HackforLABot,2025-03-01T11:22:59Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692155712) at 2025-03-01 03:22 AM PST -HackforLABot,2025-03-02T23:43:26Z,- HackforLABot commented on issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2692971806) at 2025-03-02 03:43 PM PST -HackforLABot,2025-03-04T04:13:22Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2696144840) at 2025-03-03 08:13 PM PST -HackforLABot,2025-03-04T04:23:41Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2696155160) at 2025-03-03 08:23 PM PST -HackforLABot,2025-03-04T04:39:23Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2696174883) at 2025-03-03 08:39 PM PST -HackforLABot,2025-03-04T05:02:30Z,- HackforLABot commented on issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2696211147) at 2025-03-03 09:02 PM PST -HackforLABot,2025-03-04T22:19:50Z,- HackforLABot commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2699081078) at 2025-03-04 02:19 PM PST -HackforLABot,2025-03-06T15:16:43Z,- HackforLABot commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2704146019) at 2025-03-06 07:16 AM PST -HackforLABot,2025-03-06T19:50:47Z,- HackforLABot commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2704800163) at 2025-03-06 11:50 AM PST -HackforLABot,2025-03-07T03:59:21Z,- HackforLABot commented on issue: [7877](https://github.com/hackforla/website/issues/7877#issuecomment-2705473836) at 2025-03-06 07:59 PM PST -HackforLABot,2025-03-07T05:00:32Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705534298) at 2025-03-06 09:00 PM PST -HackforLABot,2025-03-07T05:00:32Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2705534310) at 2025-03-06 09:00 PM PST -HackforLABot,2025-03-07T05:03:32Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705537480) at 2025-03-06 09:03 PM PST -HackforLABot,2025-03-07T05:03:32Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2705537491) at 2025-03-06 09:03 PM PST -HackforLABot,2025-03-07T05:08:57Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705542954) at 2025-03-06 09:08 PM PST -HackforLABot,2025-03-07T05:09:44Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2705543713) at 2025-03-06 09:09 PM PST -HackforLABot,2025-03-07T07:05:43Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2705688903) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:48Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2705689013) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:50Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2705689057) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:52Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2705689116) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:57Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2705689223) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:05:58Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2705689269) at 2025-03-06 11:05 PM PST -HackforLABot,2025-03-07T07:06:01Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2705689328) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:03Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2705689393) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:06Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2705689455) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:08Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2705689529) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:15Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2705689697) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:19Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2705689801) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:22Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2705689852) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:24Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2705689907) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:26Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2705689966) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:29Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2705690008) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:31Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2705690045) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:40Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2705690264) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:44Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2705690349) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:46Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2705690401) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:48Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2705690471) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:51Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2705690526) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:54Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2705690606) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:56Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2705690667) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:06:59Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2705690729) at 2025-03-06 11:06 PM PST -HackforLABot,2025-03-07T07:07:07Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2705690939) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:11Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2705691023) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:19Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2705691238) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:29Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2705691475) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:41Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2705691763) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:07:57Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2705692155) at 2025-03-06 11:07 PM PST -HackforLABot,2025-03-07T07:08:06Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2705692348) at 2025-03-06 11:08 PM PST -HackforLABot,2025-03-07T07:33:16Z,- HackforLABot reopened issue: [7018](https://github.com/hackforla/website/issues/7018#event-15830232824) at 2025-03-06 11:33 PM PST -HackforLABot,2025-03-07T07:33:21Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2705733409) at 2025-03-06 11:33 PM PST -HackforLABot,2025-03-07T07:33:22Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2705733423) at 2025-03-06 11:33 PM PST -HackforLABot,2025-03-07T07:54:49Z,- HackforLABot commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2705769117) at 2025-03-06 11:54 PM PST -HackforLABot,2025-03-07T07:54:49Z,- HackforLABot commented on issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2705769103) at 2025-03-06 11:54 PM PST -HackforLABot,2025-03-09T04:49:54Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2708670607) at 2025-03-08 09:49 PM PDT -HackforLABot,2025-03-10T07:37:18Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2709675335) at 2025-03-10 12:37 AM PDT -HackforLABot,2025-03-10T16:18:04Z,- HackforLABot commented on issue: [7938](https://github.com/hackforla/website/issues/7938#issuecomment-2711133468) at 2025-03-10 09:18 AM PDT -HackforLABot,2025-03-10T20:46:05Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2711784507) at 2025-03-10 01:46 PM PDT -HackforLABot,2025-03-11T22:12:33Z,- HackforLABot commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2715818467) at 2025-03-11 03:12 PM PDT -HackforLABot,2025-03-12T16:44:07Z,- HackforLABot commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2718497141) at 2025-03-12 09:44 AM PDT -HackforLABot,2025-03-14T00:23:00Z,- HackforLABot commented on issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2722992095) at 2025-03-13 05:23 PM PDT -HackforLABot,2025-03-14T00:51:47Z,- HackforLABot commented on issue: [7475](https://github.com/hackforla/website/issues/7475#issuecomment-2723039253) at 2025-03-13 05:51 PM PDT -HackforLABot,2025-03-14T07:05:49Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2723823265) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:53Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2723823352) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:55Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2723823435) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:57Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2723823505) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:05:59Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2723823581) at 2025-03-14 12:05 AM PDT -HackforLABot,2025-03-14T07:06:04Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2723823722) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:06Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2723823783) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:08Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2723823854) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:11Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2723823945) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:15Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2723824034) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:17Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2723824124) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:22Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2723824248) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:25Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2723824334) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:27Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2723824385) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:29Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2723824449) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:32Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2723824517) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:34Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2723824576) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:42Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2723824834) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:45Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2723824919) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:47Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2723824977) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:49Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2723825034) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:51Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2723825067) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:54Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2723825126) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:56Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2723825169) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:06:58Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2723825226) at 2025-03-14 12:06 AM PDT -HackforLABot,2025-03-14T07:07:02Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2723825313) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:04Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2723825385) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:11Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2723825575) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:14Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2723825614) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:17Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2723825693) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:20Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2723825743) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:22Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2723825795) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:25Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2723825859) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:27Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2723825917) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:30Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2723825991) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:32Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2723826044) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:36Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2723826147) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:38Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2723826224) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:43Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2723826363) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:07:58Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2723826732) at 2025-03-14 12:07 AM PDT -HackforLABot,2025-03-14T07:08:09Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2723826999) at 2025-03-14 12:08 AM PDT -HackforLABot,2025-03-14T07:08:27Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2723827404) at 2025-03-14 12:08 AM PDT -HackforLABot,2025-03-14T07:08:35Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2723827627) at 2025-03-14 12:08 AM PDT -HackforLABot,2025-03-14T07:09:19Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2723828739) at 2025-03-14 12:09 AM PDT -HackforLABot,2025-03-14T07:09:39Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2723829185) at 2025-03-14 12:09 AM PDT -HackforLABot,2025-03-16T05:24:52Z,- HackforLABot commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2727203034) at 2025-03-15 10:24 PM PDT -HackforLABot,2025-03-16T14:58:24Z,- HackforLABot commented on issue: [7991](https://github.com/hackforla/website/issues/7991#issuecomment-2727485564) at 2025-03-16 07:58 AM PDT -HackforLABot,2025-03-16T15:54:38Z,- HackforLABot commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2727512863) at 2025-03-16 08:54 AM PDT -HackforLABot,2025-03-17T15:06:09Z,- HackforLABot commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2729879947) at 2025-03-17 08:06 AM PDT -HackforLABot,2025-03-18T04:23:55Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2731586032) at 2025-03-17 09:23 PM PDT -HackforLABot,2025-03-19T03:43:33Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2735244336) at 2025-03-18 08:43 PM PDT -HackforLABot,2025-03-19T03:46:24Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2735247000) at 2025-03-18 08:46 PM PDT -HackforLABot,2025-03-19T22:22:41Z,- HackforLABot commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2738307755) at 2025-03-19 03:22 PM PDT -HackforLABot,2025-03-19T22:25:19Z,- HackforLABot commented on issue: [7450](https://github.com/hackforla/website/issues/7450#issuecomment-2738313420) at 2025-03-19 03:25 PM PDT -HackforLABot,2025-03-21T00:00:48Z,- HackforLABot commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2741912688) at 2025-03-20 05:00 PM PDT -HackforLABot,2025-03-21T07:05:41Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2742529357) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:44Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2742529431) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:46Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2742529478) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:49Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2742529542) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:51Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2742529579) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:57Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2742529745) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:05:59Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2742529782) at 2025-03-21 12:05 AM PDT -HackforLABot,2025-03-21T07:06:02Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2742529860) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:03Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2742529906) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:06Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2742529969) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:08Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2742530012) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:11Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2742530089) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:14Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2742530157) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:16Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2742530185) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:18Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2742530233) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:20Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2742530285) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:22Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2742530327) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:24Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2742530368) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:27Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2742530416) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:30Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2742530494) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:32Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2742530546) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:36Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2742530636) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:39Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2742530697) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:41Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2742530741) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:43Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2742530795) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:44Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2742530843) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:46Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2742530890) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:48Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2742530935) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:50Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2742530983) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:57Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2742531160) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:06:59Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2742531201) at 2025-03-21 12:06 AM PDT -HackforLABot,2025-03-21T07:07:03Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2742531279) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:05Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2742531340) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:07Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2742531436) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:10Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2742531582) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:13Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2742531688) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:16Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2742531749) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:25Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2742531902) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:28Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2742531980) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:36Z,- HackforLABot commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2742532146) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:07:46Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2742532349) at 2025-03-21 12:07 AM PDT -HackforLABot,2025-03-21T07:08:03Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2742532749) at 2025-03-21 12:08 AM PDT -HackforLABot,2025-03-21T07:08:53Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2742533962) at 2025-03-21 12:08 AM PDT -HackforLABot,2025-03-21T18:55:14Z,- HackforLABot commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2744207838) at 2025-03-21 11:55 AM PDT -HackforLABot,2025-03-21T19:40:24Z,- HackforLABot commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2744289880) at 2025-03-21 12:40 PM PDT -HackforLABot,2025-03-22T16:11:21Z,- HackforLABot commented on pull request: [8013](https://github.com/hackforla/website/pull/8013#issuecomment-2745337066) at 2025-03-22 09:11 AM PDT -HackforLABot,2025-03-23T16:21:39Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2746296623) at 2025-03-23 09:21 AM PDT -HackforLABot,2025-03-24T17:42:17Z,- HackforLABot commented on issue: [7540](https://github.com/hackforla/website/issues/7540#issuecomment-2748940827) at 2025-03-24 10:42 AM PDT -HackforLABot,2025-03-25T02:02:46Z,- HackforLABot commented on issue: [7940](https://github.com/hackforla/website/issues/7940#issuecomment-2749852635) at 2025-03-24 07:02 PM PDT -HackforLABot,2025-03-25T19:47:28Z,- HackforLABot commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2752351823) at 2025-03-25 12:47 PM PDT -HackforLABot,2025-03-26T22:12:09Z,- HackforLABot commented on issue: [7469](https://github.com/hackforla/website/issues/7469#issuecomment-2755858278) at 2025-03-26 03:12 PM PDT -HackforLABot,2025-03-26T22:18:22Z,- HackforLABot commented on issue: [7472](https://github.com/hackforla/website/issues/7472#issuecomment-2755867104) at 2025-03-26 03:18 PM PDT -HackforLABot,2025-03-28T07:06:15Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2760399293) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:18Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2760399362) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:20Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2760399415) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:23Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2760399479) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:26Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2760399552) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:28Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2760399593) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:30Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2760399649) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:33Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2760399702) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:35Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2760399758) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:38Z,- HackforLABot commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2760399818) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:43Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2760399953) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:46Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2760400006) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:48Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2760400063) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:51Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2760400116) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:53Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2760400180) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:56Z,- HackforLABot commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2760400241) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:06:58Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2760400290) at 2025-03-28 12:06 AM PDT -HackforLABot,2025-03-28T07:07:03Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2760400417) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:05Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2760400476) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:09Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2760400540) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:11Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2760400604) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:14Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2760400652) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:16Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2760400702) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:18Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2760400753) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:21Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2760400803) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:23Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2760400863) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:26Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2760400939) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:29Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2760401015) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:33Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2760401098) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:36Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2760401188) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:40Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2760401290) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:43Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2760401349) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:45Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2760401424) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:48Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2760401484) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:50Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2760401536) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:52Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2760401595) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:55Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2760401657) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:07:59Z,- HackforLABot commented on issue: [7745](https://github.com/hackforla/website/issues/7745#issuecomment-2760401749) at 2025-03-28 12:07 AM PDT -HackforLABot,2025-03-28T07:08:04Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2760401831) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:11Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2760402007) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:14Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2760402059) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:17Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2760402124) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:19Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2760402192) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:22Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2760402244) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:24Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2760402308) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:27Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2760402366) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:30Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2760402427) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:32Z,- HackforLABot commented on issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2760402488) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:37Z,- HackforLABot commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2760402578) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:08:49Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2760402851) at 2025-03-28 12:08 AM PDT -HackforLABot,2025-03-28T07:09:09Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2760403335) at 2025-03-28 12:09 AM PDT -HackforLABot,2025-03-28T07:09:31Z,- HackforLABot commented on issue: [6885](https://github.com/hackforla/website/issues/6885#issuecomment-2760403869) at 2025-03-28 12:09 AM PDT -HackforLABot,2025-03-28T07:09:39Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2760404122) at 2025-03-28 12:09 AM PDT -HackforLABot,2025-03-28T07:10:23Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2760405193) at 2025-03-28 12:10 AM PDT -HackforLABot,2025-03-28T07:10:44Z,- HackforLABot commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2760405692) at 2025-03-28 12:10 AM PDT -HackforLABot,2025-03-28T20:54:05Z,- HackforLABot commented on issue: [7470](https://github.com/hackforla/website/issues/7470#issuecomment-2762485067) at 2025-03-28 01:54 PM PDT -HackforLABot,2025-03-30T16:39:41Z,- HackforLABot commented on issue: [8023](https://github.com/hackforla/website/issues/8023#issuecomment-2764640224) at 2025-03-30 09:39 AM PDT -HackforLABot,2025-03-31T22:55:21Z,- HackforLABot commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2767603092) at 2025-03-31 03:55 PM PDT -HackforLABot,2025-04-01T01:50:27Z,- HackforLABot commented on issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2767832889) at 2025-03-31 06:50 PM PDT -HackforLABot,2025-04-01T02:18:21Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2767880222) at 2025-03-31 07:18 PM PDT -HackforLABot,2025-04-01T03:18:10Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2767966528) at 2025-03-31 08:18 PM PDT -HackforLABot,2025-04-01T11:08:02Z,- HackforLABot closed issue as completed: [7626](https://github.com/hackforla/website/issues/7626#event-17073407304) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot commented on issue: [7626](https://github.com/hackforla/website/issues/7626#issuecomment-2769001478) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot closed issue as completed: [7825](https://github.com/hackforla/website/issues/7825#event-17073407506) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot commented on issue: [7838](https://github.com/hackforla/website/issues/7838#issuecomment-2769001511) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:03Z,- HackforLABot closed issue as completed: [7838](https://github.com/hackforla/website/issues/7838#event-17073407365) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:04Z,- HackforLABot commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2769001532) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:05Z,- HackforLABot closed issue as completed: [7830](https://github.com/hackforla/website/issues/7830#event-17073408088) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:05Z,- HackforLABot closed issue as completed: [7837](https://github.com/hackforla/website/issues/7837#event-17073407984) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:06Z,- HackforLABot commented on issue: [7830](https://github.com/hackforla/website/issues/7830#issuecomment-2769001673) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:06Z,- HackforLABot commented on issue: [7837](https://github.com/hackforla/website/issues/7837#issuecomment-2769001650) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:08Z,- HackforLABot closed issue as completed: [7696](https://github.com/hackforla/website/issues/7696#event-17073408669) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:08Z,- HackforLABot closed issue as completed: [7842](https://github.com/hackforla/website/issues/7842#event-17073408891) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:09Z,- HackforLABot commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2769001846) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:09Z,- HackforLABot commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2769001872) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:38Z,- HackforLABot opened issue: [8034](https://github.com/hackforla/website/issues/8034) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:39Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2769003009) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-01T11:08:50Z,- HackforLABot closed issue as completed: [8034](https://github.com/hackforla/website/issues/8034#event-17073420405) at 2025-04-01 04:08 AM PDT -HackforLABot,2025-04-02T03:16:32Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2771239668) at 2025-04-01 08:16 PM PDT -HackforLABot,2025-04-02T23:00:42Z,- HackforLABot commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2773915987) at 2025-04-02 04:00 PM PDT -HackforLABot,2025-04-02T23:48:41Z,- HackforLABot commented on issue: [7487](https://github.com/hackforla/website/issues/7487#issuecomment-2773985616) at 2025-04-02 04:48 PM PDT -HackforLABot,2025-04-03T12:34:05Z,- HackforLABot commented on issue: [7485](https://github.com/hackforla/website/issues/7485#issuecomment-2775646055) at 2025-04-03 05:34 AM PDT -HackforLABot,2025-04-03T15:25:41Z,- HackforLABot commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2776170524) at 2025-04-03 08:25 AM PDT -HackforLABot,2025-04-03T21:16:06Z,- HackforLABot commented on issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2776936689) at 2025-04-03 02:16 PM PDT -HackforLABot,2025-04-03T22:53:30Z,- HackforLABot commented on issue: [7483](https://github.com/hackforla/website/issues/7483#issuecomment-2777166158) at 2025-04-03 03:53 PM PDT -HackforLABot,2025-04-04T07:05:51Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2777733201) at 2025-04-04 12:05 AM PDT -HackforLABot,2025-04-04T07:05:56Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2777733325) at 2025-04-04 12:05 AM PDT -HackforLABot,2025-04-04T07:06:00Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2777733454) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:02Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2777733519) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:04Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2777733579) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:06Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2777733635) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:08Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2777733708) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:10Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2777733778) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:13Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2777733868) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:16Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2777733946) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:18Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2777734005) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:20Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2777734064) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:22Z,- HackforLABot commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2777734119) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:24Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2777734179) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:26Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2777734245) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:29Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2777734309) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:31Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2777734362) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:34Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2777734455) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:36Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2777734501) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:38Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2777734559) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:40Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2777734606) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:42Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2777734654) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:45Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2777734717) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:46Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2777734752) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:50Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2777734858) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:52Z,- HackforLABot commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2777734917) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:54Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2777734978) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:56Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2777735026) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:06:58Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2777735075) at 2025-04-04 12:06 AM PDT -HackforLABot,2025-04-04T07:07:00Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2777735160) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:04Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2777735260) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:06Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2777735334) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:09Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2777735394) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:13Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2777735506) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:16Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2777735598) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:20Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2777735701) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:22Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2777735777) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:24Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2777735863) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:27Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2777735939) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:37Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2777736255) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:43Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2777736405) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:07:57Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2777736822) at 2025-04-04 12:07 AM PDT -HackforLABot,2025-04-04T07:08:14Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2777737330) at 2025-04-04 12:08 AM PDT -HackforLABot,2025-04-04T07:08:51Z,- HackforLABot commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2777738347) at 2025-04-04 12:08 AM PDT -HackforLABot,2025-04-05T01:30:39Z,- HackforLABot commented on issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2780117671) at 2025-04-04 06:30 PM PDT -HackforLABot,2025-04-05T01:42:48Z,- HackforLABot commented on issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-2780124517) at 2025-04-04 06:42 PM PDT -HackforLABot,2025-04-06T18:53:49Z,- HackforLABot commented on issue: [8048](https://github.com/hackforla/website/issues/8048#issuecomment-2781563331) at 2025-04-06 11:53 AM PDT -HackforLABot,2025-04-07T12:37:00Z,- HackforLABot commented on issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2783192875) at 2025-04-07 05:37 AM PDT -HackforLABot,2025-04-07T22:33:07Z,- HackforLABot commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2784778660) at 2025-04-07 03:33 PM PDT -HackforLABot,2025-04-07T22:33:15Z,- HackforLABot commented on issue: [7482](https://github.com/hackforla/website/issues/7482#issuecomment-2784778833) at 2025-04-07 03:33 PM PDT -HackforLABot,2025-04-07T22:33:15Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2784778843) at 2025-04-07 03:33 PM PDT -HackforLABot,2025-04-07T22:37:21Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2784784449) at 2025-04-07 03:37 PM PDT -HackforLABot,2025-04-07T22:43:31Z,- HackforLABot commented on issue: [7424](https://github.com/hackforla/website/issues/7424#issuecomment-2784792287) at 2025-04-07 03:43 PM PDT -HackforLABot,2025-04-09T02:40:47Z,- HackforLABot commented on issue: [7482](https://github.com/hackforla/website/issues/7482#issuecomment-2788140772) at 2025-04-08 07:40 PM PDT -HackforLABot,2025-04-10T21:43:39Z,- HackforLABot commented on issue: [7547](https://github.com/hackforla/website/issues/7547#issuecomment-2795232210) at 2025-04-10 02:43 PM PDT -HackforLABot,2025-04-11T01:48:56Z,- HackforLABot commented on issue: [8050](https://github.com/hackforla/website/issues/8050#issuecomment-2795613377) at 2025-04-10 06:48 PM PDT -HackforLABot,2025-04-11T01:49:49Z,- HackforLABot commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2795614163) at 2025-04-10 06:49 PM PDT -HackforLABot,2025-04-11T07:05:43Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2796037565) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:46Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2796037648) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:48Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2796037703) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:50Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2796037770) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:52Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2796037834) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:05:54Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2796037888) at 2025-04-11 12:05 AM PDT -HackforLABot,2025-04-11T07:06:00Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2796038047) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:02Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2796038126) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:04Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2796038208) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:07Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2796038270) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:12Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2796038434) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:16Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2796038672) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:19Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2796038755) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:21Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2796038819) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:23Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2796038882) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:26Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2796038940) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:28Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2796039009) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:31Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2796039101) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:35Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2796039217) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:38Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2796039314) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:40Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2796039378) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:42Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2796039443) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:48Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2796039610) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:50Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2796039695) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:54Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2796039834) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:57Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2796039920) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:06:59Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2796040007) at 2025-04-11 12:06 AM PDT -HackforLABot,2025-04-11T07:07:03Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2796040157) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:05Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2796040263) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:08Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2796040357) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:11Z,- HackforLABot commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2796040442) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:23Z,- HackforLABot commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2796040854) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:07:46Z,- HackforLABot commented on issue: [7152](https://github.com/hackforla/website/issues/7152#issuecomment-2796041601) at 2025-04-11 12:07 AM PDT -HackforLABot,2025-04-11T07:08:04Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2796042159) at 2025-04-11 12:08 AM PDT -HackforLABot,2025-04-11T15:34:56Z,- HackforLABot commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2797253710) at 2025-04-11 08:34 AM PDT -HackforLABot,2025-04-12T01:14:25Z,- HackforLABot commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2798356300) at 2025-04-11 06:14 PM PDT -HackforLABot,2025-04-12T06:21:24Z,- HackforLABot commented on issue: [7550](https://github.com/hackforla/website/issues/7550#issuecomment-2798521414) at 2025-04-11 11:21 PM PDT -HackforLABot,2025-04-16T03:05:59Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2808107093) at 2025-04-15 08:05 PM PDT -HackforLABot,2025-04-16T03:27:36Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2808132256) at 2025-04-15 08:27 PM PDT -HackforLABot,2025-04-16T23:39:22Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2811133955) at 2025-04-16 04:39 PM PDT -HackforLABot,2025-04-17T04:31:30Z,- HackforLABot commented on issue: [7581](https://github.com/hackforla/website/issues/7581#issuecomment-2811710525) at 2025-04-16 09:31 PM PDT -HackforLABot,2025-04-18T07:05:54Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2814725027) at 2025-04-18 12:05 AM PDT -HackforLABot,2025-04-18T07:05:57Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2814725350) at 2025-04-18 12:05 AM PDT -HackforLABot,2025-04-18T07:05:59Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2814725426) at 2025-04-18 12:05 AM PDT -HackforLABot,2025-04-18T07:06:01Z,- HackforLABot commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2814725515) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:07Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2814725789) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:09Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2814725864) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:13Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2814725957) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:18Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2814726390) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:21Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2814726467) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:24Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2814726545) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:27Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2814726664) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:30Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2814726839) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:35Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2814726997) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:38Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2814727358) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:42Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2814727468) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:44Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2814727524) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:47Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2814727597) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:49Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2814727666) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:51Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2814727760) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:53Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2814727878) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:55Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2814727957) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:06:57Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2814728023) at 2025-04-18 12:06 AM PDT -HackforLABot,2025-04-18T07:07:00Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2814728093) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:02Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2814728163) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:06Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2814728226) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:08Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2814728286) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:10Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2814728364) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:12Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2814728445) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:19Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2814728722) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:21Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2814728797) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:27Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2814728956) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:31Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2814729042) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:35Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2814729156) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:37Z,- HackforLABot commented on issue: [7593](https://github.com/hackforla/website/issues/7593#issuecomment-2814729219) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:41Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2814729299) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:48Z,- HackforLABot commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2814729595) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:07:50Z,- HackforLABot commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2814729668) at 2025-04-18 12:07 AM PDT -HackforLABot,2025-04-18T07:08:03Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2814730250) at 2025-04-18 12:08 AM PDT -HackforLABot,2025-04-18T07:08:34Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2814731437) at 2025-04-18 12:08 AM PDT -HackforLABot,2025-04-19T09:35:35Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2816630959) at 2025-04-19 02:35 AM PDT -HackforLABot,2025-04-20T00:14:31Z,- HackforLABot commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2816916053) at 2025-04-19 05:14 PM PDT -HackforLABot,2025-04-20T19:43:33Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2817311510) at 2025-04-20 12:43 PM PDT -HackforLABot,2025-04-21T01:07:27Z,- HackforLABot commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2817439407) at 2025-04-20 06:07 PM PDT -HackforLABot,2025-04-21T06:24:21Z,- HackforLABot commented on issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2817739220) at 2025-04-20 11:24 PM PDT -HackforLABot,2025-04-21T19:30:36Z,- HackforLABot commented on issue: [7755](https://github.com/hackforla/website/issues/7755#issuecomment-2819331552) at 2025-04-21 12:30 PM PDT -HackforLABot,2025-04-21T21:31:02Z,- HackforLABot commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-2819546542) at 2025-04-21 02:31 PM PDT -HackforLABot,2025-04-21T22:08:12Z,- HackforLABot commented on issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2819597217) at 2025-04-21 03:08 PM PDT -HackforLABot,2025-04-22T23:18:39Z,- HackforLABot commented on issue: [8083](https://github.com/hackforla/website/issues/8083#issuecomment-2822688997) at 2025-04-22 04:18 PM PDT -HackforLABot,2025-04-22T23:43:59Z,- HackforLABot commented on issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822720546) at 2025-04-22 04:43 PM PDT -HackforLABot,2025-04-23T01:19:02Z,- HackforLABot commented on issue: [7635](https://github.com/hackforla/website/issues/7635#issuecomment-2822826635) at 2025-04-22 06:19 PM PDT -HackforLABot,2025-04-23T01:34:53Z,- HackforLABot commented on issue: [7582](https://github.com/hackforla/website/issues/7582#issuecomment-2822842623) at 2025-04-22 06:34 PM PDT -HackforLABot,2025-04-25T03:44:24Z,- HackforLABot commented on issue: [7734](https://github.com/hackforla/website/issues/7734#issuecomment-2829307122) at 2025-04-24 08:44 PM PDT -HackforLABot,2025-04-25T07:05:51Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2829551650) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:05:53Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2829551712) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:05:55Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2829551777) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:05:58Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2829551899) at 2025-04-25 12:05 AM PDT -HackforLABot,2025-04-25T07:06:00Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2829551943) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:03Z,- HackforLABot commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2829552044) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:05Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2829552130) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:07Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2829552199) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:09Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2829552265) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:11Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2829552340) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:13Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2829552381) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:15Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2829552445) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:17Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2829552515) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:19Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2829552568) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:21Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2829552622) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:23Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2829552705) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:29Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2829552901) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:31Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2829552957) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:33Z,- HackforLABot commented on issue: [7968](https://github.com/hackforla/website/issues/7968#issuecomment-2829553004) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:35Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2829553072) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:38Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2829553166) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:41Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2829553281) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:43Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2829553332) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:45Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2829553396) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:47Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2829553450) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:49Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2829553525) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:51Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2829553580) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:53Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2829553638) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:55Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2829553718) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:06:57Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2829553794) at 2025-04-25 12:06 AM PDT -HackforLABot,2025-04-25T07:07:00Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2829553895) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:02Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2829553965) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:05Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2829554047) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:07Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2829554108) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:15Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2829554314) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:17Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2829554385) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:21Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2829554507) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:25Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2829554627) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:28Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2829554740) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:33Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2829554891) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:07:51Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2829555412) at 2025-04-25 12:07 AM PDT -HackforLABot,2025-04-25T07:08:22Z,- HackforLABot commented on issue: [6877](https://github.com/hackforla/website/issues/6877#issuecomment-2829556384) at 2025-04-25 12:08 AM PDT -HackforLABot,2025-04-26T17:26:41Z,- HackforLABot commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832455617) at 2025-04-26 10:26 AM PDT -HackforLABot,2025-04-26T17:38:25Z,- HackforLABot commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2832467048) at 2025-04-26 10:38 AM PDT -HackforLABot,2025-04-26T21:38:29Z,- HackforLABot commented on issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2832635374) at 2025-04-26 02:38 PM PDT -HackforLABot,2025-04-28T02:09:29Z,- HackforLABot commented on issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2833812934) at 2025-04-27 07:09 PM PDT -HackforLABot,2025-04-29T18:16:50Z,- HackforLABot commented on issue: [8064](https://github.com/hackforla/website/issues/8064#issuecomment-2839784532) at 2025-04-29 11:16 AM PDT -HackforLABot,2025-04-30T00:58:45Z,- HackforLABot commented on issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2840557430) at 2025-04-29 05:58 PM PDT -HackforLABot,2025-04-30T02:15:20Z,- HackforLABot commented on issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2840634132) at 2025-04-29 07:15 PM PDT -HackforLABot,2025-04-30T02:28:23Z,- HackforLABot commented on issue: [8100](https://github.com/hackforla/website/issues/8100#issuecomment-2840646650) at 2025-04-29 07:28 PM PDT -HackforLABot,2025-04-30T16:58:22Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2842646025) at 2025-04-30 09:58 AM PDT -HackforLABot,2025-05-01T11:08:18Z,- HackforLABot closed issue as completed: [7827](https://github.com/hackforla/website/issues/7827#event-17486389405) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:18Z,- HackforLABot closed issue as completed: [7836](https://github.com/hackforla/website/issues/7836#event-17486389448) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:19Z,- HackforLABot commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2844655263) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:19Z,- HackforLABot commented on issue: [7836](https://github.com/hackforla/website/issues/7836#issuecomment-2844655268) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:19Z,- HackforLABot closed issue as completed: [7891](https://github.com/hackforla/website/issues/7891#event-17486389562) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:20Z,- HackforLABot commented on issue: [7891](https://github.com/hackforla/website/issues/7891#issuecomment-2844655285) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:20Z,- HackforLABot commented on issue: [7893](https://github.com/hackforla/website/issues/7893#issuecomment-2844655291) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:20Z,- HackforLABot closed issue as completed: [7893](https://github.com/hackforla/website/issues/7893#event-17486389602) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:22Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2844655334) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:22Z,- HackforLABot closed issue as completed: [7693](https://github.com/hackforla/website/issues/7693#event-17486389762) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:22Z,- HackforLABot closed issue as completed: [7890](https://github.com/hackforla/website/issues/7890#event-17486389800) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:23Z,- HackforLABot closed issue as completed: [7828](https://github.com/hackforla/website/issues/7828#event-17486389915) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:23Z,- HackforLABot commented on issue: [7890](https://github.com/hackforla/website/issues/7890#issuecomment-2844655340) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:24Z,- HackforLABot closed issue as completed: [7627](https://github.com/hackforla/website/issues/7627#event-17486390009) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:24Z,- HackforLABot commented on issue: [7828](https://github.com/hackforla/website/issues/7828#issuecomment-2844655365) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:25Z,- HackforLABot commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2844655382) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:25Z,- HackforLABot closed issue as completed: [7888](https://github.com/hackforla/website/issues/7888#event-17486390076) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:26Z,- HackforLABot commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2844655396) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:56Z,- HackforLABot opened issue: [8105](https://github.com/hackforla/website/issues/8105) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:08:57Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2844656009) at 2025-05-01 04:08 AM PDT -HackforLABot,2025-05-01T11:09:08Z,- HackforLABot closed issue as completed: [8105](https://github.com/hackforla/website/issues/8105#event-17486394839) at 2025-05-01 04:09 AM PDT -HackforLABot,2025-05-02T07:05:52Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2846519780) at 2025-05-02 12:05 AM PDT -HackforLABot,2025-05-02T07:05:55Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2846519847) at 2025-05-02 12:05 AM PDT -HackforLABot,2025-05-02T07:05:57Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2846519917) at 2025-05-02 12:05 AM PDT -HackforLABot,2025-05-02T07:06:03Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2846520057) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:05Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2846520112) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:06Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2846520163) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:11Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2846520258) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:13Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2846520324) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:16Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2846520404) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:19Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2846520461) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:22Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2846520529) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:23Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2846520578) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:26Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2846520645) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:28Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2846520692) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:32Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2846520772) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:35Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2846520829) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:37Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2846520883) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:40Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2846520971) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:42Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2846521008) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:47Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2846521112) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:49Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2846521163) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:06:53Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2846521254) at 2025-05-02 12:06 AM PDT -HackforLABot,2025-05-02T07:07:03Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2846521472) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:07Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2846521540) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:16Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2846521728) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:22Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2846521841) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:27Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2846521975) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:31Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2846522065) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:35Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2846522195) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:38Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2846522263) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:48Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2846522483) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:52Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2846522559) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:55Z,- HackforLABot commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2846522638) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:07:59Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2846522749) at 2025-05-02 12:07 AM PDT -HackforLABot,2025-05-02T07:08:02Z,- HackforLABot commented on issue: [7695](https://github.com/hackforla/website/issues/7695#issuecomment-2846522856) at 2025-05-02 12:08 AM PDT -HackforLABot,2025-05-02T07:08:11Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2846523054) at 2025-05-02 12:08 AM PDT -HackforLABot,2025-05-02T07:08:29Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2846523508) at 2025-05-02 12:08 AM PDT -HackforLABot,2025-05-02T20:38:17Z,- HackforLABot commented on issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848078749) at 2025-05-02 01:38 PM PDT -HackforLABot,2025-05-02T20:41:46Z,- HackforLABot commented on issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848084742) at 2025-05-02 01:41 PM PDT -HackforLABot,2025-05-02T20:43:50Z,- HackforLABot commented on issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848087769) at 2025-05-02 01:43 PM PDT -HackforLABot,2025-05-02T20:52:40Z,- HackforLABot commented on issue: [7737](https://github.com/hackforla/website/issues/7737#issuecomment-2848100878) at 2025-05-02 01:52 PM PDT -HackforLABot,2025-05-04T22:32:24Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2849474313) at 2025-05-04 03:32 PM PDT -HackforLABot,2025-05-04T22:32:24Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-2849474315) at 2025-05-04 03:32 PM PDT -HackforLABot,2025-05-05T23:33:47Z,- HackforLABot commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2852664512) at 2025-05-05 04:33 PM PDT -HackforLABot,2025-05-06T02:23:46Z,- HackforLABot commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2853097192) at 2025-05-05 07:23 PM PDT -HackforLABot,2025-05-06T02:54:05Z,- HackforLABot commented on issue: [7876](https://github.com/hackforla/website/issues/7876#issuecomment-2853134462) at 2025-05-05 07:54 PM PDT -HackforLABot,2025-05-06T03:30:44Z,- HackforLABot commented on issue: [8087](https://github.com/hackforla/website/issues/8087#issuecomment-2853173989) at 2025-05-05 08:30 PM PDT -HackforLABot,2025-05-06T03:36:47Z,- HackforLABot commented on issue: [8113](https://github.com/hackforla/website/issues/8113#issuecomment-2853181983) at 2025-05-05 08:36 PM PDT -HackforLABot,2025-05-06T03:44:43Z,- HackforLABot commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2853191875) at 2025-05-05 08:44 PM PDT -HackforLABot,2025-05-06T20:07:52Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2855815871) at 2025-05-06 01:07 PM PDT -HackforLABot,2025-05-08T03:12:55Z,- HackforLABot commented on issue: [7990](https://github.com/hackforla/website/issues/7990#issuecomment-2861515428) at 2025-05-07 08:12 PM PDT -HackforLABot,2025-05-09T07:05:51Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2865383082) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:05:53Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2865383162) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:05:55Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2865383221) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:05:57Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2865383295) at 2025-05-09 12:05 AM PDT -HackforLABot,2025-05-09T07:06:00Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2865383389) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:02Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2865383439) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:04Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2865383502) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:06Z,- HackforLABot commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2865383564) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:10Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2865383733) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:12Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2865384391) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:15Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2865384805) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:17Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2865384930) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:19Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2865385006) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:22Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2865385102) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:24Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2865385168) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:25Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2865385226) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:28Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2865385282) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:29Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2865385350) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:36Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2865386451) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:38Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2865386593) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:41Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2865386676) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:43Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2865386795) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:45Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2865386900) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:49Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2865387011) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:53Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2865387162) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:55Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2865387250) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:57Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2865387756) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:06:59Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2865388253) at 2025-05-09 12:06 AM PDT -HackforLABot,2025-05-09T07:07:01Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2865388400) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:04Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2865388523) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:08Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2865388661) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:11Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-2865388721) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:17Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2865388928) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:23Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2865389861) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:31Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2865390485) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-09T07:07:45Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2865391070) at 2025-05-09 12:07 AM PDT -HackforLABot,2025-05-12T21:34:17Z,- HackforLABot commented on issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2874210786) at 2025-05-12 02:34 PM PDT -HackforLABot,2025-05-13T03:55:01Z,- HackforLABot commented on issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2874982926) at 2025-05-12 08:55 PM PDT -HackforLABot,2025-05-13T21:29:57Z,- HackforLABot commented on issue: [7943](https://github.com/hackforla/website/issues/7943#issuecomment-2877999329) at 2025-05-13 02:29 PM PDT -HackforLABot,2025-05-14T00:12:44Z,- HackforLABot commented on issue: [7944](https://github.com/hackforla/website/issues/7944#issuecomment-2878241097) at 2025-05-13 05:12 PM PDT -HackforLABot,2025-05-14T03:01:55Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2878494831) at 2025-05-13 08:01 PM PDT -HackforLABot,2025-05-14T03:11:07Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-2878506795) at 2025-05-13 08:11 PM PDT -HackforLABot,2025-05-14T03:16:32Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2878512204) at 2025-05-13 08:16 PM PDT -HackforLABot,2025-05-14T21:07:39Z,- HackforLABot commented on issue: [7782](https://github.com/hackforla/website/issues/7782#issuecomment-2881580765) at 2025-05-14 02:07 PM PDT -HackforLABot,2025-05-15T03:34:57Z,- HackforLABot commented on issue: [7953](https://github.com/hackforla/website/issues/7953#issuecomment-2882131881) at 2025-05-14 08:34 PM PDT -HackforLABot,2025-05-15T22:49:03Z,- HackforLABot commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2885217556) at 2025-05-15 03:49 PM PDT -HackforLABot,2025-05-16T00:07:20Z,- HackforLABot commented on issue: [7995](https://github.com/hackforla/website/issues/7995#issuecomment-2885312888) at 2025-05-15 05:07 PM PDT -HackforLABot,2025-05-16T07:06:01Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2885838536) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:02Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2885838585) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:04Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2885838650) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:06Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2885838691) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:07Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2885838758) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:09Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2885838804) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:11Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2885838882) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:13Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2885838962) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:15Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2885839016) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:16Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2885839071) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:19Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2885839169) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:22Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2885839279) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:24Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2885839332) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:25Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2885839388) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:27Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2885839439) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:29Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2885839488) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:30Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2885839545) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:34Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2885839659) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:36Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2885839755) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:39Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2885839836) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:45Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2885840076) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:48Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2885840181) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:51Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2885840314) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:53Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2885840411) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:55Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2885840488) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:57Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2885840549) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:06:58Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2885840611) at 2025-05-16 12:06 AM PDT -HackforLABot,2025-05-16T07:07:00Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2885840683) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:05Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2885840839) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:06Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2885840896) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:12Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2885841124) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:14Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2885841202) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:18Z,- HackforLABot commented on issue: [7697](https://github.com/hackforla/website/issues/7697#issuecomment-2885841347) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:26Z,- HackforLABot commented on issue: [7578](https://github.com/hackforla/website/issues/7578#issuecomment-2885841606) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:31Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2885841825) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-16T07:07:40Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2885842190) at 2025-05-16 12:07 AM PDT -HackforLABot,2025-05-18T17:41:15Z,- HackforLABot commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2889117015) at 2025-05-18 10:41 AM PDT -HackforLABot,2025-05-18T18:13:03Z,- HackforLABot commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889134342) at 2025-05-18 11:13 AM PDT -HackforLABot,2025-05-18T18:15:01Z,- HackforLABot commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889135248) at 2025-05-18 11:15 AM PDT -HackforLABot,2025-05-19T02:25:02Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2889434213) at 2025-05-18 07:25 PM PDT -HackforLABot,2025-05-19T19:55:35Z,- HackforLABot commented on issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892123866) at 2025-05-19 12:55 PM PDT -HackforLABot,2025-05-19T19:55:35Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2892123878) at 2025-05-19 12:55 PM PDT -HackforLABot,2025-05-19T19:56:22Z,- HackforLABot commented on issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892125433) at 2025-05-19 12:56 PM PDT -HackforLABot,2025-05-19T19:57:13Z,- HackforLABot commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2892127019) at 2025-05-19 12:57 PM PDT -HackforLABot,2025-05-19T19:57:13Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2892127042) at 2025-05-19 12:57 PM PDT -HackforLABot,2025-05-19T20:00:17Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2892132648) at 2025-05-19 01:00 PM PDT -HackforLABot,2025-05-19T23:21:10Z,- HackforLABot commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892496126) at 2025-05-19 04:21 PM PDT -HackforLABot,2025-05-19T23:34:02Z,- HackforLABot commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892510323) at 2025-05-19 04:34 PM PDT -HackforLABot,2025-05-20T00:45:48Z,- HackforLABot commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892592217) at 2025-05-19 05:45 PM PDT -HackforLABot,2025-05-20T04:38:20Z,- HackforLABot commented on issue: [7955](https://github.com/hackforla/website/issues/7955#issuecomment-2892914874) at 2025-05-19 09:38 PM PDT -HackforLABot,2025-05-20T16:51:38Z,- HackforLABot commented on issue: [8035](https://github.com/hackforla/website/issues/8035#issuecomment-2895190267) at 2025-05-20 09:51 AM PDT -HackforLABot,2025-05-20T18:06:20Z,- HackforLABot commented on issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895372016) at 2025-05-20 11:06 AM PDT -HackforLABot,2025-05-20T20:45:17Z,- HackforLABot commented on issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895789203) at 2025-05-20 01:45 PM PDT -HackforLABot,2025-05-21T02:26:14Z,- HackforLABot commented on issue: [7957](https://github.com/hackforla/website/issues/7957#issuecomment-2896282275) at 2025-05-20 07:26 PM PDT -HackforLABot,2025-05-21T16:56:08Z,- HackforLABot commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2898628859) at 2025-05-21 09:56 AM PDT -HackforLABot,2025-05-21T23:18:27Z,- HackforLABot commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2899482311) at 2025-05-21 04:18 PM PDT -HackforLABot,2025-05-22T18:10:16Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2902125568) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:18Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2902125626) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:20Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2902125714) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:22Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2902125793) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:25Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2902125928) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:27Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2902125986) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:29Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2902126063) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:34Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2902126229) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:36Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2902126320) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:39Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2902126429) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:41Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2902126526) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:43Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2902126612) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:45Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2902126688) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:47Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2902126757) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:48Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2902126830) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:51Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2902126965) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:55Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2902127343) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:57Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2902127672) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:10:59Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2902128051) at 2025-05-22 11:10 AM PDT -HackforLABot,2025-05-22T18:11:05Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2902128980) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:07Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2902129211) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:10Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2902129608) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:13Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2902129903) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:15Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2902130087) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:17Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2902130221) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:18Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2902130333) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:20Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2902130448) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:23Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2902130645) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:25Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2902130934) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:31Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2902132069) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:11:33Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2902132477) at 2025-05-22 11:11 AM PDT -HackforLABot,2025-05-22T18:12:03Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2902136962) at 2025-05-22 11:12 AM PDT -HackforLABot,2025-05-22T18:33:03Z,- HackforLABot commented on issue: [8152](https://github.com/hackforla/website/issues/8152#issuecomment-2902202279) at 2025-05-22 11:33 AM PDT -HackforLABot,2025-05-22T21:55:20Z,- HackforLABot commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902661940) at 2025-05-22 02:55 PM PDT -HackforLABot,2025-05-23T01:00:21Z,- HackforLABot commented on issue: [7996](https://github.com/hackforla/website/issues/7996#issuecomment-2902977020) at 2025-05-22 06:00 PM PDT -HackforLABot,2025-05-23T02:20:19Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2903068772) at 2025-05-22 07:20 PM PDT -HackforLABot,2025-05-23T02:23:27Z,- HackforLABot commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2903072073) at 2025-05-22 07:23 PM PDT -HackforLABot,2025-05-23T07:06:02Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2903479542) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:04Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2903479614) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:06Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2903479665) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:07Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2903479723) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:09Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2903479791) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:11Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2903479851) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:13Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2903479905) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:17Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2903480040) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:19Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2903480157) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:22Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2903480240) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:23Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2903480301) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:25Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2903480347) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:27Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2903480384) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:28Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2903480439) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:30Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2903480488) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:34Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2903480603) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:35Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2903480655) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:37Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2903480721) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:41Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2903480954) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:43Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2903480992) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:45Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2903481084) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:48Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2903481160) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:49Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2903481219) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:51Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2903481280) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:53Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2903481356) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:54Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2903481396) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:57Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2903481465) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:06:58Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2903481509) at 2025-05-23 12:06 AM PDT -HackforLABot,2025-05-23T07:07:04Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2903481709) at 2025-05-23 12:07 AM PDT -HackforLABot,2025-05-23T07:07:06Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2903481755) at 2025-05-23 12:07 AM PDT -HackforLABot,2025-05-23T07:07:32Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2903482604) at 2025-05-23 12:07 AM PDT -HackforLABot,2025-05-23T18:37:17Z,- HackforLABot commented on issue: [7998](https://github.com/hackforla/website/issues/7998#issuecomment-2905444474) at 2025-05-23 11:37 AM PDT -HackforLABot,2025-05-24T21:39:47Z,- HackforLABot commented on issue: [8157](https://github.com/hackforla/website/issues/8157#issuecomment-2907098148) at 2025-05-24 02:39 PM PDT -HackforLABot,2025-05-25T04:44:42Z,- HackforLABot commented on issue: [7451](https://github.com/hackforla/website/issues/7451#issuecomment-2907606621) at 2025-05-24 09:44 PM PDT -HackforLABot,2025-05-26T01:06:45Z,- HackforLABot commented on issue: [7999](https://github.com/hackforla/website/issues/7999#issuecomment-2908240835) at 2025-05-25 06:06 PM PDT -HackforLABot,2025-05-27T19:39:44Z,- HackforLABot commented on issue: [8000](https://github.com/hackforla/website/issues/8000#issuecomment-2913788858) at 2025-05-27 12:39 PM PDT -HackforLABot,2025-05-28T18:47:36Z,- HackforLABot commented on issue: [7452](https://github.com/hackforla/website/issues/7452#issuecomment-2917294250) at 2025-05-28 11:47 AM PDT -HackforLABot,2025-05-29T22:54:58Z,- HackforLABot commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2920762507) at 2025-05-29 03:54 PM PDT -HackforLABot,2025-05-30T07:06:01Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2921427830) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:04Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2921427935) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:06Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2921427988) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:08Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2921428031) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:10Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2921428091) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:13Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2921428194) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:15Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2921428251) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:19Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2921428385) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:23Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2921428503) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:26Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2921428586) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:28Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2921428653) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:30Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2921428718) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:32Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2921428782) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:34Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2921428842) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:37Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2921428899) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:41Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2921429045) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:44Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2921429134) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:46Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2921429194) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:49Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2921429262) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:53Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2921429418) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:55Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2921429481) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:57Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2921429528) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:06:59Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2921429591) at 2025-05-30 12:06 AM PDT -HackforLABot,2025-05-30T07:07:02Z,- HackforLABot commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2921429686) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:04Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2921429758) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:06Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2921429827) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:08Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2921429911) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:11Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2921429989) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:13Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2921430056) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:15Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2921430124) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:17Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2921430187) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:25Z,- HackforLABot commented on issue: [7743](https://github.com/hackforla/website/issues/7743#issuecomment-2921430451) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:27Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2921430515) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:47Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2921431128) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-05-30T07:07:57Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2921431470) at 2025-05-30 12:07 AM PDT -HackforLABot,2025-06-01T11:08:13Z,- HackforLABot closed issue as completed: [7979](https://github.com/hackforla/website/issues/7979#event-17912979924) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:13Z,- HackforLABot closed issue as completed: [8032](https://github.com/hackforla/website/issues/8032#event-17912979913) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:14Z,- HackforLABot commented on issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2927034872) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:14Z,- HackforLABot commented on issue: [8032](https://github.com/hackforla/website/issues/8032#issuecomment-2927034868) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:16Z,- HackforLABot closed issue as completed: [7974](https://github.com/hackforla/website/issues/7974#event-17912981034) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:17Z,- HackforLABot closed issue as completed: [7887](https://github.com/hackforla/website/issues/7887#event-17912981633) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:17Z,- HackforLABot commented on issue: [7974](https://github.com/hackforla/website/issues/7974#issuecomment-2927035068) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:17Z,- HackforLABot closed issue as completed: [7976](https://github.com/hackforla/website/issues/7976#event-17912982168) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2927035124) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot closed issue as completed: [7967](https://github.com/hackforla/website/issues/7967#event-17912983403) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot commented on issue: [7976](https://github.com/hackforla/website/issues/7976#issuecomment-2927035132) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:18Z,- HackforLABot closed issue as completed: [8007](https://github.com/hackforla/website/issues/8007#event-17912983632) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot commented on issue: [7967](https://github.com/hackforla/website/issues/7967#issuecomment-2927035186) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot commented on issue: [8007](https://github.com/hackforla/website/issues/8007#issuecomment-2927035196) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot commented on issue: [8030](https://github.com/hackforla/website/issues/8030#issuecomment-2927035222) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:19Z,- HackforLABot closed issue as completed: [8030](https://github.com/hackforla/website/issues/8030#event-17912983681) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:46Z,- HackforLABot opened issue: [8166](https://github.com/hackforla/website/issues/8166) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:08:47Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2927035921) at 2025-06-01 04:08 AM PDT -HackforLABot,2025-06-01T11:09:00Z,- HackforLABot closed issue as completed: [8166](https://github.com/hackforla/website/issues/8166#event-17912991541) at 2025-06-01 04:09 AM PDT -HackforLABot,2025-06-01T21:34:04Z,- HackforLABot commented on issue: [8167](https://github.com/hackforla/website/issues/8167#issuecomment-2927931222) at 2025-06-01 02:34 PM PDT -HackforLABot,2025-06-02T23:24:13Z,- HackforLABot commented on issue: [8167](https://github.com/hackforla/website/issues/8167#issuecomment-2932855978) at 2025-06-02 04:24 PM PDT -HackforLABot,2025-06-03T17:33:54Z,- HackforLABot commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2936432683) at 2025-06-03 10:33 AM PDT -HackforLABot,2025-06-04T03:30:48Z,- HackforLABot commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2938279290) at 2025-06-03 08:30 PM PDT -HackforLABot,2025-06-04T16:45:23Z,- HackforLABot commented on issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2940713001) at 2025-06-04 09:45 AM PDT -HackforLABot,2025-06-04T17:46:19Z,- HackforLABot commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2940876209) at 2025-06-04 10:46 AM PDT -HackforLABot,2025-06-04T22:45:32Z,- HackforLABot commented on issue: [7425](https://github.com/hackforla/website/issues/7425#issuecomment-2941826775) at 2025-06-04 03:45 PM PDT -HackforLABot,2025-06-06T07:05:54Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2948305665) at 2025-06-06 12:05 AM PDT -HackforLABot,2025-06-06T07:05:56Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2948305728) at 2025-06-06 12:05 AM PDT -HackforLABot,2025-06-06T07:05:58Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2948305779) at 2025-06-06 12:05 AM PDT -HackforLABot,2025-06-06T07:06:00Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2948305832) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:01Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2948305898) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:04Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2948305981) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:06Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-2948306041) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:09Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2948306144) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:12Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2948306239) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:14Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2948306302) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:16Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2948306362) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:17Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2948306421) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:23Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2948306602) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:26Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2948306672) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:29Z,- HackforLABot commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2948306773) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:31Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2948306865) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:33Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2948306939) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:36Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2948307023) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:38Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2948307092) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:40Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2948307156) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:41Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2948307211) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:43Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2948307264) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:46Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2948307336) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:06:49Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2948307431) at 2025-06-06 12:06 AM PDT -HackforLABot,2025-06-06T07:07:17Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2948308361) at 2025-06-06 12:07 AM PDT -HackforLABot,2025-06-06T07:07:19Z,- HackforLABot commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2948308442) at 2025-06-06 12:07 AM PDT -HackforLABot,2025-06-06T07:07:31Z,- HackforLABot commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2948308860) at 2025-06-06 12:07 AM PDT -HackforLABot,2025-06-07T20:05:56Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2952958182) at 2025-06-07 01:05 PM PDT -HackforLABot,2025-06-08T01:33:58Z,- HackforLABot commented on issue: [4980](https://github.com/hackforla/website/issues/4980#issuecomment-2953376566) at 2025-06-07 06:33 PM PDT -HackforLABot,2025-06-08T01:33:58Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2953376564) at 2025-06-07 06:33 PM PDT -HackforLABot,2025-06-08T21:51:23Z,- HackforLABot commented on issue: [8147](https://github.com/hackforla/website/issues/8147#issuecomment-2954292248) at 2025-06-08 02:51 PM PDT -HackforLABot,2025-06-08T22:41:51Z,- HackforLABot commented on issue: [7994](https://github.com/hackforla/website/issues/7994#issuecomment-2954310886) at 2025-06-08 03:41 PM PDT -HackforLABot,2025-06-08T22:44:50Z,- HackforLABot commented on issue: [8174](https://github.com/hackforla/website/issues/8174#issuecomment-2954311905) at 2025-06-08 03:44 PM PDT -HackforLABot,2025-06-09T20:59:07Z,- HackforLABot commented on issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2957020447) at 2025-06-09 01:59 PM PDT -HackforLABot,2025-06-09T21:02:51Z,- HackforLABot commented on issue: [6751](https://github.com/hackforla/website/issues/6751#issuecomment-2957028281) at 2025-06-09 02:02 PM PDT -HackforLABot,2025-06-10T18:27:01Z,- HackforLABot commented on issue: [8176](https://github.com/hackforla/website/issues/8176#issuecomment-2960231337) at 2025-06-10 11:27 AM PDT -HackforLABot,2025-06-10T21:33:32Z,- HackforLABot commented on issue: [8178](https://github.com/hackforla/website/issues/8178#issuecomment-2960635368) at 2025-06-10 02:33 PM PDT -HackforLABot,2025-06-11T00:45:50Z,- HackforLABot commented on issue: [7609](https://github.com/hackforla/website/issues/7609#issuecomment-2960903617) at 2025-06-10 05:45 PM PDT -HackforLABot,2025-06-11T00:45:51Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2960903626) at 2025-06-10 05:45 PM PDT -HackforLABot,2025-06-13T07:06:09Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2969320369) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:11Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-2969320799) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:15Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-2969321131) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:17Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-2969321315) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:20Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2969321537) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:22Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2969321711) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:25Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-2969321837) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:27Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2969321926) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:31Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2969322080) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:33Z,- HackforLABot commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2969322172) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:37Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2969322340) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:41Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2969322474) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:43Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2969322582) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:46Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2969322663) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:48Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2969322735) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:51Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2969322825) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:53Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2969322907) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:06:57Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2969323053) at 2025-06-13 12:06 AM PDT -HackforLABot,2025-06-13T07:07:02Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2969323208) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:04Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2969323314) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:07Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2969323404) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:09Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2969323491) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:15Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2969323969) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:19Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2969324278) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:22Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2969324361) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:25Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2969324474) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:27Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2969324571) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:30Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2969324658) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:32Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2969324739) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:36Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2969325523) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:39Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2969325724) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:41Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2969325879) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:44Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2969325993) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:47Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2969326362) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:50Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2969326655) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:52Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2969326904) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:07:55Z,- HackforLABot commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2969327085) at 2025-06-13 12:07 AM PDT -HackforLABot,2025-06-13T07:08:06Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2969328024) at 2025-06-13 12:08 AM PDT -HackforLABot,2025-06-13T07:08:17Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2969328627) at 2025-06-13 12:08 AM PDT -HackforLABot,2025-06-13T07:08:50Z,- HackforLABot commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2969330799) at 2025-06-13 12:08 AM PDT -HackforLABot,2025-06-13T19:28:33Z,- HackforLABot commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2971423732) at 2025-06-13 12:28 PM PDT -HackforLABot,2025-06-17T03:10:09Z,- HackforLABot commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2978780686) at 2025-06-16 08:10 PM PDT -HackforLABot,2025-06-17T03:23:39Z,- HackforLABot commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-2978798391) at 2025-06-16 08:23 PM PDT -HackforLABot,2025-06-17T04:17:21Z,- HackforLABot commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2978877066) at 2025-06-16 09:17 PM PDT -HackforLABot,2025-06-18T00:49:03Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2982244263) at 2025-06-17 05:49 PM PDT -HackforLABot,2025-06-19T02:26:18Z,- HackforLABot commented on issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2986379037) at 2025-06-18 07:26 PM PDT -HackforLABot,2025-06-20T07:05:49Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2990053264) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:51Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-2990053590) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:53Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2990053890) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:54Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-2990054173) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:57Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-2990054514) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:05:58Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-2990054651) at 2025-06-20 12:05 AM PDT -HackforLABot,2025-06-20T07:06:00Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-2990054739) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:02Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2990054830) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:04Z,- HackforLABot commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-2990054917) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:05Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2990054982) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:08Z,- HackforLABot commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2990055103) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:10Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2990055162) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:12Z,- HackforLABot commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-2990055301) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:14Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2990055792) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:16Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2990056266) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:18Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2990056462) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:19Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-2990056545) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:21Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2990056676) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:23Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-2990056813) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:26Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2990057143) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:29Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2990057314) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:31Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-2990057413) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:33Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2990057509) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:35Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2990057579) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:36Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2990057665) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:38Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2990057732) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:44Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-2990058708) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:46Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2990058837) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:48Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2990058985) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:49Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-2990059222) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:51Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2990059596) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:53Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2990059986) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:55Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-2990060299) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:56Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-2990060540) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:06:58Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2990060725) at 2025-06-20 12:06 AM PDT -HackforLABot,2025-06-20T07:07:00Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-2990060855) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:03Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2990061066) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:05Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2990061157) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:14Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-2990062299) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:20Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2990062785) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:30Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-2990064618) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-20T07:07:32Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2990064805) at 2025-06-20 12:07 AM PDT -HackforLABot,2025-06-21T16:53:04Z,- HackforLABot commented on issue: [8004](https://github.com/hackforla/website/issues/8004#issuecomment-2993671333) at 2025-06-21 09:53 AM PDT -HackforLABot,2025-06-22T17:45:54Z,- HackforLABot commented on issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-2994344197) at 2025-06-22 10:45 AM PDT -HackforLABot,2025-06-22T17:46:31Z,- HackforLABot commented on issue: [8003](https://github.com/hackforla/website/issues/8003#issuecomment-2994344492) at 2025-06-22 10:46 AM PDT -HackforLABot,2025-06-23T19:40:03Z,- HackforLABot commented on issue: [8201](https://github.com/hackforla/website/issues/8201#issuecomment-2997732121) at 2025-06-23 12:40 PM PDT -HackforLABot,2025-06-23T23:28:44Z,- HackforLABot commented on issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-2998270083) at 2025-06-23 04:28 PM PDT -HackforLABot,2025-06-24T06:34:45Z,- HackforLABot commented on issue: [8011](https://github.com/hackforla/website/issues/8011#issuecomment-2999001224) at 2025-06-23 11:34 PM PDT -HackforLABot,2025-06-24T08:32:13Z,- HackforLABot commented on issue: [8012](https://github.com/hackforla/website/issues/8012#issuecomment-2999343380) at 2025-06-24 01:32 AM PDT -HackforLABot,2025-06-26T23:43:50Z,- HackforLABot commented on issue: [8014](https://github.com/hackforla/website/issues/8014#issuecomment-3010669713) at 2025-06-26 04:43 PM PDT -HackforLABot,2025-06-26T23:44:07Z,- HackforLABot commented on issue: [8015](https://github.com/hackforla/website/issues/8015#issuecomment-3010670372) at 2025-06-26 04:44 PM PDT -HackforLABot,2025-06-27T07:06:21Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-3011940131) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:24Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3011940271) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:27Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-3011940368) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:29Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-3011940452) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:31Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-3011940532) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:33Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-3011940607) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:35Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-3011940692) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:37Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-3011940761) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:40Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-3011940847) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:42Z,- HackforLABot commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-3011940943) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:45Z,- HackforLABot commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-3011941044) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:47Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-3011941107) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:50Z,- HackforLABot commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-3011941237) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:53Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-3011941359) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:55Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-3011941449) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:57Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-3011941533) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:06:59Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-3011941597) at 2025-06-27 12:06 AM PDT -HackforLABot,2025-06-27T07:07:01Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-3011941685) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:07Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-3011941923) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:10Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-3011942026) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:12Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-3011942121) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:18Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-3011942335) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:19Z,- HackforLABot commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-3011942411) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:22Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-3011942494) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:26Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3011942660) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:30Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-3011942768) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:31Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-3011942831) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:33Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-3011942907) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:35Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-3011942971) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:37Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-3011943044) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:39Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-3011943114) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:42Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-3011943236) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:44Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-3011943329) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:46Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-3011943427) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:48Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-3011943506) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:50Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-3011943572) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:52Z,- HackforLABot commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-3011943651) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:54Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-3011943724) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:07:56Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-3011943794) at 2025-06-27 12:07 AM PDT -HackforLABot,2025-06-27T07:08:05Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-3011944147) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-27T07:08:14Z,- HackforLABot commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-3011944474) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-27T07:08:25Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3011944843) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-27T07:08:36Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-3011945185) at 2025-06-27 12:08 AM PDT -HackforLABot,2025-06-28T18:43:23Z,- HackforLABot commented on issue: [7380](https://github.com/hackforla/website/issues/7380#issuecomment-3015979211) at 2025-06-28 11:43 AM PDT -HackforLABot,2025-07-01T03:59:47Z,- HackforLABot commented on issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-3021667627) at 2025-06-30 08:59 PM PDT -HackforLABot,2025-07-01T11:07:49Z,- HackforLABot closed issue as completed: [7839](https://github.com/hackforla/website/issues/7839#event-18408186566) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:49Z,- HackforLABot closed issue as completed: [8066](https://github.com/hackforla/website/issues/8066#event-18408186600) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:50Z,- HackforLABot commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-3023448143) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:50Z,- HackforLABot commented on issue: [8066](https://github.com/hackforla/website/issues/8066#issuecomment-3023448147) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:51Z,- HackforLABot commented on issue: [7923](https://github.com/hackforla/website/issues/7923#issuecomment-3023448368) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:51Z,- HackforLABot closed issue as completed: [7923](https://github.com/hackforla/website/issues/7923#event-18408187007) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:55Z,- HackforLABot closed issue as completed: [8067](https://github.com/hackforla/website/issues/8067#event-18408188421) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:56Z,- HackforLABot commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-3023448968) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:57Z,- HackforLABot closed issue as completed: [7889](https://github.com/hackforla/website/issues/7889#event-18408188795) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:57Z,- HackforLABot closed issue as completed: [7894](https://github.com/hackforla/website/issues/7894#event-18408188979) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:58Z,- HackforLABot commented on issue: [7889](https://github.com/hackforla/website/issues/7889#issuecomment-3023449160) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:58Z,- HackforLABot commented on issue: [7894](https://github.com/hackforla/website/issues/7894#issuecomment-3023449222) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:58Z,- HackforLABot closed issue as completed: [7978](https://github.com/hackforla/website/issues/7978#event-18408189179) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:07:59Z,- HackforLABot commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-3023449287) at 2025-07-01 04:07 AM PDT -HackforLABot,2025-07-01T11:08:00Z,- HackforLABot commented on issue: [8098](https://github.com/hackforla/website/issues/8098#issuecomment-3023449462) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:00Z,- HackforLABot closed issue as completed: [8098](https://github.com/hackforla/website/issues/8098#event-18408190041) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:01Z,- HackforLABot closed issue as completed: [7975](https://github.com/hackforla/website/issues/7975#event-18408190426) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:02Z,- HackforLABot commented on issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-3023449569) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:27Z,- HackforLABot opened issue: [8237](https://github.com/hackforla/website/issues/8237) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:28Z,- HackforLABot commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-3023452654) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-01T11:08:37Z,- HackforLABot closed issue as completed: [8237](https://github.com/hackforla/website/issues/8237#event-18408203241) at 2025-07-01 04:08 AM PDT -HackforLABot,2025-07-02T02:32:16Z,- HackforLABot commented on issue: [8239](https://github.com/hackforla/website/issues/8239#issuecomment-3026141917) at 2025-07-01 07:32 PM PDT -HackforLABot,2025-07-02T07:15:42Z,- HackforLABot commented on issue: [8122](https://github.com/hackforla/website/issues/8122#issuecomment-3026728752) at 2025-07-02 12:15 AM PDT -HackforLABot,2025-07-04T18:57:22Z,- HackforLABot commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037067245) at 2025-07-04 11:57 AM PDT -HackforLABot,2025-07-10T05:09:38Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055576826) at 2025-07-09 10:09 PM PDT -HackforLABot,2025-07-10T05:12:08Z,- HackforLABot commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055580425) at 2025-07-09 10:12 PM PDT -HackforLABot,2025-07-17T06:28:39Z,- HackforLABot commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3082747619) at 2025-07-16 11:28 PM PDT -HackforLABot,2025-07-18T19:14:30Z,- HackforLABot commented on issue: [7417](https://github.com/hackforla/website/issues/7417#issuecomment-3090467079) at 2025-07-18 12:14 PM PDT -HackforLABot,2025-07-19T10:31:39Z,- HackforLABot commented on issue: [7612](https://github.com/hackforla/website/issues/7612#issuecomment-3092248012) at 2025-07-19 03:31 AM PDT -HackforLABot,2025-07-22T02:35:58Z,- HackforLABot commented on issue: [8247](https://github.com/hackforla/website/issues/8247#issuecomment-3100543232) at 2025-07-21 07:35 PM PDT -HackforLABot,2025-07-22T04:38:32Z,- HackforLABot commented on issue: [8244](https://github.com/hackforla/website/issues/8244#issuecomment-3100918110) at 2025-07-21 09:38 PM PDT -HackforLABot,2025-08-01T06:04:52Z,- HackforLABot commented on issue: [7613](https://github.com/hackforla/website/issues/7613#issuecomment-3142564994) at 2025-07-31 11:04 PM PDT -HackforLABot,2025-08-01T07:09:46Z,- HackforLABot commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3143188192) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:48Z,- HackforLABot commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-3143188620) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:50Z,- HackforLABot commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-3143189083) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:52Z,- HackforLABot commented on issue: [8188](https://github.com/hackforla/website/issues/8188#issuecomment-3143189732) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:54Z,- HackforLABot commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-3143190163) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:56Z,- HackforLABot commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3143190438) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:09:58Z,- HackforLABot commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-3143190714) at 2025-08-01 12:09 AM PDT -HackforLABot,2025-08-01T07:10:00Z,- HackforLABot commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-3143191001) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:02Z,- HackforLABot commented on issue: [8137](https://github.com/hackforla/website/issues/8137#issuecomment-3143191076) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:04Z,- HackforLABot commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3143191484) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:06Z,- HackforLABot commented on issue: [8135](https://github.com/hackforla/website/issues/8135#issuecomment-3143191829) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:08Z,- HackforLABot commented on issue: [8134](https://github.com/hackforla/website/issues/8134#issuecomment-3143192408) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:10Z,- HackforLABot commented on issue: [8132](https://github.com/hackforla/website/issues/8132#issuecomment-3143192733) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:12Z,- HackforLABot commented on issue: [8131](https://github.com/hackforla/website/issues/8131#issuecomment-3143193172) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:14Z,- HackforLABot commented on issue: [8130](https://github.com/hackforla/website/issues/8130#issuecomment-3143193628) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:16Z,- HackforLABot commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-3143194019) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:18Z,- HackforLABot commented on issue: [8128](https://github.com/hackforla/website/issues/8128#issuecomment-3143194519) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:21Z,- HackforLABot commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-3143195075) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:23Z,- HackforLABot commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-3143195629) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:25Z,- HackforLABot commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-3143196112) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:27Z,- HackforLABot commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-3143196556) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:30Z,- HackforLABot commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3143197136) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:32Z,- HackforLABot commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-3143197728) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:34Z,- HackforLABot commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-3143198096) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:36Z,- HackforLABot commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-3143198466) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:38Z,- HackforLABot commented on issue: [8028](https://github.com/hackforla/website/issues/8028#issuecomment-3143199044) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:41Z,- HackforLABot commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-3143199690) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:43Z,- HackforLABot commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-3143200249) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:45Z,- HackforLABot commented on issue: [8005](https://github.com/hackforla/website/issues/8005#issuecomment-3143200647) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:48Z,- HackforLABot commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-3143201484) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:51Z,- HackforLABot commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3143202077) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:54Z,- HackforLABot commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3143202670) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:56Z,- HackforLABot commented on issue: [7971](https://github.com/hackforla/website/issues/7971#issuecomment-3143203108) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:10:58Z,- HackforLABot commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-3143203718) at 2025-08-01 12:10 AM PDT -HackforLABot,2025-08-01T07:11:00Z,- HackforLABot commented on issue: [7969](https://github.com/hackforla/website/issues/7969#issuecomment-3143204178) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:03Z,- HackforLABot commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-3143204709) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:04Z,- HackforLABot commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-3143205102) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:07Z,- HackforLABot commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-3143205637) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:09Z,- HackforLABot commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-3143206080) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:10Z,- HackforLABot commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-3143206504) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:12Z,- HackforLABot commented on issue: [7885](https://github.com/hackforla/website/issues/7885#issuecomment-3143206947) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:17Z,- HackforLABot commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-3143208130) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:20Z,- HackforLABot commented on issue: [7746](https://github.com/hackforla/website/issues/7746#issuecomment-3143208586) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:26Z,- HackforLABot commented on issue: [7707](https://github.com/hackforla/website/issues/7707#issuecomment-3143210106) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:43Z,- HackforLABot commented on issue: [7565](https://github.com/hackforla/website/issues/7565#issuecomment-3143213800) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:45Z,- HackforLABot commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3143214299) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T07:11:58Z,- HackforLABot commented on issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-3143217261) at 2025-08-01 12:11 AM PDT -HackforLABot,2025-08-01T23:04:45Z,- HackforLABot commented on issue: [8002](https://github.com/hackforla/website/issues/8002#issuecomment-3145965344) at 2025-08-01 04:04 PM PDT -HackforLABot,2025-08-05T06:29:59Z,- HackforLABot commented on issue: [8202](https://github.com/hackforla/website/issues/8202#issuecomment-3153673373) at 2025-08-04 11:29 PM PDT -HackforLABot,2025-08-05T06:30:00Z,- HackforLABot commented on issue: [8094](https://github.com/hackforla/website/issues/8094#issuecomment-3153673397) at 2025-08-04 11:30 PM PDT -Hallecsy,2021-11-02T22:05:11Z,- Hallecsy opened pull request: [2436](https://github.com/hackforla/website/pull/2436) at 2021-11-02 03:05 PM PDT -Hallecsy,2021-11-02T22:23:15Z,- Hallecsy pull request closed w/o merging: [2436](https://github.com/hackforla/website/pull/2436#event-5558550441) at 2021-11-02 03:23 PM PDT -hanapotski,2024-02-13T03:31:27Z,- hanapotski opened issue: [6284](https://github.com/hackforla/website/issues/6284) at 2024-02-12 07:31 PM PST -Hanastevenson,2021-09-24T21:47:20Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-926936982) at 2021-09-24 02:47 PM PDT -Hanastevenson,2021-09-24T21:50:28Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-926938120) at 2021-09-24 02:50 PM PDT -Hanastevenson,2021-09-28T18:11:53Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-929503788) at 2021-09-28 11:11 AM PDT -Hanastevenson,2021-10-13T21:02:08Z,- Hanastevenson commented on issue: [2255](https://github.com/hackforla/website/issues/2255#issuecomment-942717603) at 2021-10-13 02:02 PM PDT -hang-justin,4161,SKILLS ISSUE -hang-justin,2023-03-14T03:00:31Z,- hang-justin opened issue: [4161](https://github.com/hackforla/website/issues/4161) at 2023-03-13 08:00 PM PDT -hang-justin,2023-03-14T03:38:37Z,- hang-justin assigned to issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1467278196) at 2023-03-13 08:38 PM PDT -hang-justin,2023-03-18T08:23:23Z,- hang-justin assigned to issue: [3951](https://github.com/hackforla/website/issues/3951) at 2023-03-18 01:23 AM PDT -hang-justin,2023-03-18T08:39:28Z,- hang-justin commented on issue: [3951](https://github.com/hackforla/website/issues/3951#issuecomment-1474774349) at 2023-03-18 01:39 AM PDT -hang-justin,2023-03-18T09:19:07Z,- hang-justin opened pull request: [4207](https://github.com/hackforla/website/pull/4207) at 2023-03-18 02:19 AM PDT -hang-justin,2023-03-18T09:24:10Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1474786005) at 2023-03-18 02:24 AM PDT -hang-justin,2023-03-18T09:26:25Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1474786971) at 2023-03-18 02:26 AM PDT -hang-justin,2023-03-18T09:29:21Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1474787429) at 2023-03-18 02:29 AM PDT -hang-justin,2023-03-19T04:06:39Z,- hang-justin pull request merged: [4207](https://github.com/hackforla/website/pull/4207#event-8786882915) at 2023-03-18 09:06 PM PDT -hang-justin,2023-03-28T20:22:13Z,- hang-justin assigned to issue: [3869](https://github.com/hackforla/website/issues/3869) at 2023-03-28 01:22 PM PDT -hang-justin,2023-03-28T20:41:45Z,- hang-justin commented on issue: [3869](https://github.com/hackforla/website/issues/3869#issuecomment-1487565694) at 2023-03-28 01:41 PM PDT -hang-justin,2023-03-28T20:47:05Z,- hang-justin opened pull request: [4304](https://github.com/hackforla/website/pull/4304) at 2023-03-28 01:47 PM PDT -hang-justin,2023-03-28T20:54:50Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1487579114) at 2023-03-28 01:54 PM PDT -hang-justin,2023-03-29T20:29:09Z,- hang-justin commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1489264371) at 2023-03-29 01:29 PM PDT -hang-justin,2023-03-29T20:41:45Z,- hang-justin submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1363926656) at 2023-03-29 01:41 PM PDT -hang-justin,2023-03-29T22:09:39Z,- hang-justin pull request merged: [4304](https://github.com/hackforla/website/pull/4304#event-8881233947) at 2023-03-29 03:09 PM PDT -hang-justin,2023-03-30T19:41:13Z,- hang-justin submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1365812499) at 2023-03-30 12:41 PM PDT -hang-justin,2023-03-30T19:41:20Z,- hang-justin commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490839983) at 2023-03-30 12:41 PM PDT -hang-justin,2023-04-04T08:01:15Z,- hang-justin submitted pull request review: [4402](https://github.com/hackforla/website/pull/4402#pullrequestreview-1370417599) at 2023-04-04 01:01 AM PDT -hang-justin,2023-04-04T08:02:26Z,- hang-justin commented on pull request: [4402](https://github.com/hackforla/website/pull/4402#issuecomment-1495523096) at 2023-04-04 01:02 AM PDT -hang-justin,2023-04-04T08:03:40Z,- hang-justin commented on pull request: [4402](https://github.com/hackforla/website/pull/4402#issuecomment-1495524654) at 2023-04-04 01:03 AM PDT -hang-justin,2023-04-07T21:02:20Z,- hang-justin commented on issue: [4161](https://github.com/hackforla/website/issues/4161#issuecomment-1500644172) at 2023-04-07 02:02 PM PDT -hang-justin,2023-04-07T21:02:20Z,- hang-justin closed issue as completed: [4161](https://github.com/hackforla/website/issues/4161#event-8956125703) at 2023-04-07 02:02 PM PDT -hangjoyce,2022-03-15T19:06:32Z,- hangjoyce assigned to issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1064573278) at 2022-03-15 12:06 PM PDT -hangjoyce,2022-03-15T19:12:01Z,- hangjoyce commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1068363783) at 2022-03-15 12:12 PM PDT -hangjoyce,2022-03-31T22:25:32Z,- hangjoyce commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1085188478) at 2022-03-31 03:25 PM PDT -Happyashbunny,2024-02-05T03:44:36Z,- Happyashbunny commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-1926180047) at 2024-02-04 07:44 PM PST -harimwoo,2024-03-19T18:56:57Z,- harimwoo assigned to issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007851060) at 2024-03-19 11:56 AM PDT -harimwoo,2024-03-19T18:57:07Z,- harimwoo unassigned from issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007851060) at 2024-03-19 11:57 AM PDT -harishlingam,2019-08-13T03:22:47Z,- harishlingam opened pull request: [139](https://github.com/hackforla/website/pull/139) at 2019-08-12 08:22 PM PDT -harishlingam,2019-08-13T03:48:30Z,- harishlingam assigned to issue: [138](https://github.com/hackforla/website/issues/138) at 2019-08-12 08:48 PM PDT -harishlingam,2019-08-15T05:14:54Z,- harishlingam closed issue by PR 139: [138](https://github.com/hackforla/website/issues/138#event-2558577954) at 2019-08-14 10:14 PM PDT -harishlingam,2019-08-15T05:14:54Z,- harishlingam pull request merged: [139](https://github.com/hackforla/website/pull/139#event-2558577956) at 2019-08-14 10:14 PM PDT -harishlingam,2019-09-17T02:25:56Z,- harishlingam assigned to issue: [143](https://github.com/hackforla/website/issues/143#issuecomment-523758475) at 2019-09-16 07:25 PM PDT -harishlingam,2019-10-13T22:06:56Z,- harishlingam opened pull request: [155](https://github.com/hackforla/website/pull/155) at 2019-10-13 03:06 PM PDT -harishlingam,2019-10-15T02:37:19Z,- harishlingam closed issue by PR 155: [143](https://github.com/hackforla/website/issues/143#event-2712353626) at 2019-10-14 07:37 PM PDT -harishlingam,2019-10-15T02:37:19Z,- harishlingam pull request merged: [155](https://github.com/hackforla/website/pull/155#event-2712353629) at 2019-10-14 07:37 PM PDT -harishlingam,2019-11-04T18:53:33Z,- harishlingam opened issue: [170](https://github.com/hackforla/website/issues/170) at 2019-11-04 10:53 AM PST -harishlingam,2019-11-04T18:56:45Z,- harishlingam assigned to issue: [170](https://github.com/hackforla/website/issues/170) at 2019-11-04 10:56 AM PST -harishlingam,2019-11-05T03:00:57Z,- harishlingam assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-11-04 07:00 PM PST -harishlingam,2019-11-05T03:46:22Z,- harishlingam opened issue: [172](https://github.com/hackforla/website/issues/172) at 2019-11-04 07:46 PM PST -harishlingam,2019-11-05T03:46:22Z,- harishlingam assigned to issue: [172](https://github.com/hackforla/website/issues/172) at 2019-11-04 07:46 PM PST -harishlingam,2019-11-05T03:52:26Z,- harishlingam opened issue: [173](https://github.com/hackforla/website/issues/173) at 2019-11-04 07:52 PM PST -harishlingam,2019-11-05T03:52:27Z,- harishlingam assigned to issue: [173](https://github.com/hackforla/website/issues/173) at 2019-11-04 07:52 PM PST -harishlingam,2019-11-05T03:55:26Z,- harishlingam opened issue: [174](https://github.com/hackforla/website/issues/174) at 2019-11-04 07:55 PM PST -harishlingam,2019-11-05T03:55:26Z,- harishlingam assigned to issue: [174](https://github.com/hackforla/website/issues/174) at 2019-11-04 07:55 PM PST -harishlingam,2019-11-05T04:03:51Z,- harishlingam opened issue: [175](https://github.com/hackforla/website/issues/175) at 2019-11-04 08:03 PM PST -harishlingam,2019-11-05T04:04:00Z,- harishlingam assigned to issue: [175](https://github.com/hackforla/website/issues/175) at 2019-11-04 08:04 PM PST -harishlingam,2019-11-05T19:15:33Z,- harishlingam opened issue: [176](https://github.com/hackforla/website/issues/176) at 2019-11-05 11:15 AM PST -harishlingam,2019-11-05T19:15:34Z,- harishlingam assigned to issue: [176](https://github.com/hackforla/website/issues/176) at 2019-11-05 11:15 AM PST -harishlingam,2019-11-12T03:01:35Z,- harishlingam assigned to issue: [177](https://github.com/hackforla/website/issues/177#issuecomment-552242613) at 2019-11-11 07:01 PM PST -harishlingam,2019-11-12T04:04:47Z,- harishlingam opened issue: [178](https://github.com/hackforla/website/issues/178) at 2019-11-11 08:04 PM PST -harishlingam,2019-11-12T04:04:47Z,- harishlingam assigned to issue: [178](https://github.com/hackforla/website/issues/178) at 2019-11-11 08:04 PM PST -harishlingam,2019-11-12T04:11:07Z,- harishlingam opened issue: [179](https://github.com/hackforla/website/issues/179) at 2019-11-11 08:11 PM PST -harishlingam,2019-11-12T04:11:07Z,- harishlingam assigned to issue: [179](https://github.com/hackforla/website/issues/179) at 2019-11-11 08:11 PM PST -harishlingam,2019-11-20T03:33:54Z,- harishlingam closed issue as completed: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-19 07:33 PM PST -harishlingam,2019-11-20T17:58:03Z,- harishlingam unassigned from issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 09:58 AM PST -harishlingam,2019-11-20T17:58:28Z,- harishlingam assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 09:58 AM PST -harishlingam,2019-11-20T18:48:17Z,- harishlingam assigned to issue: [181](https://github.com/hackforla/website/issues/181) at 2019-11-20 10:48 AM PST -harishlingam,2019-11-20T18:57:56Z,- harishlingam opened issue: [182](https://github.com/hackforla/website/issues/182) at 2019-11-20 10:57 AM PST -harishlingam,2019-11-20T18:57:57Z,- harishlingam assigned to issue: [182](https://github.com/hackforla/website/issues/182) at 2019-11-20 10:57 AM PST -harishlingam,2019-11-20T19:45:41Z,- harishlingam opened issue: [183](https://github.com/hackforla/website/issues/183) at 2019-11-20 11:45 AM PST -harishlingam,2019-11-25T23:16:13Z,- harishlingam opened issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -harishlingam,2019-11-25T23:16:13Z,- harishlingam assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -harishlingam,2019-11-25T23:18:46Z,- harishlingam opened issue: [186](https://github.com/hackforla/website/issues/186) at 2019-11-25 03:18 PM PST -harishlingam,2019-11-25T23:18:47Z,- harishlingam assigned to issue: [186](https://github.com/hackforla/website/issues/186) at 2019-11-25 03:18 PM PST -harishlingam,2019-11-25T23:21:40Z,- harishlingam opened issue: [187](https://github.com/hackforla/website/issues/187) at 2019-11-25 03:21 PM PST -harishlingam,2019-11-25T23:21:41Z,- harishlingam assigned to issue: [187](https://github.com/hackforla/website/issues/187) at 2019-11-25 03:21 PM PST -harishlingam,2019-11-25T23:48:44Z,- harishlingam opened issue: [188](https://github.com/hackforla/website/issues/188) at 2019-11-25 03:48 PM PST -harishlingam,2019-11-25T23:51:43Z,- harishlingam opened issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -harishlingam,2019-11-25T23:51:43Z,- harishlingam assigned to issue: [189](https://github.com/hackforla/website/issues/189) at 2019-11-25 03:51 PM PST -harishlingam,2019-11-25T23:57:04Z,- harishlingam opened issue: [190](https://github.com/hackforla/website/issues/190) at 2019-11-25 03:57 PM PST -harishlingam,2019-11-25T23:57:04Z,- harishlingam assigned to issue: [190](https://github.com/hackforla/website/issues/190) at 2019-11-25 03:57 PM PST -harishlingam,2019-11-26T00:11:22Z,- harishlingam opened issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -harishlingam,2019-11-26T00:11:22Z,- harishlingam assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -harishlingam,2019-11-26T00:23:09Z,- harishlingam opened issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -harishlingam,2019-11-26T03:19:10Z,- harishlingam opened issue: [193](https://github.com/hackforla/website/issues/193) at 2019-11-25 07:19 PM PST -harishlingam,2019-11-26T03:19:10Z,- harishlingam assigned to issue: [193](https://github.com/hackforla/website/issues/193) at 2019-11-25 07:19 PM PST -harishlingam,2019-11-26T03:56:53Z,- harishlingam opened issue: [194](https://github.com/hackforla/website/issues/194) at 2019-11-25 07:56 PM PST -harishlingam,2019-11-26T04:13:38Z,- harishlingam opened issue: [195](https://github.com/hackforla/website/issues/195) at 2019-11-25 08:13 PM PST -harishlingam,2019-11-26T04:14:34Z,- harishlingam opened issue: [196](https://github.com/hackforla/website/issues/196) at 2019-11-25 08:14 PM PST -harishlingam,2019-11-26T04:15:24Z,- harishlingam opened issue: [197](https://github.com/hackforla/website/issues/197) at 2019-11-25 08:15 PM PST -harishlingam,2019-11-26T04:15:57Z,- harishlingam opened issue: [198](https://github.com/hackforla/website/issues/198) at 2019-11-25 08:15 PM PST -harishlingam,2019-11-26T04:16:34Z,- harishlingam opened issue: [199](https://github.com/hackforla/website/issues/199) at 2019-11-25 08:16 PM PST -harishlingam,2019-12-03T03:09:32Z,- harishlingam opened issue: [203](https://github.com/hackforla/website/issues/203) at 2019-12-02 07:09 PM PST -harishlingam,2019-12-03T03:09:32Z,- harishlingam assigned to issue: [203](https://github.com/hackforla/website/issues/203) at 2019-12-02 07:09 PM PST -harishlingam,2019-12-03T18:25:11Z,- harishlingam opened issue: [205](https://github.com/hackforla/website/issues/205) at 2019-12-03 10:25 AM PST -harishlingam,2019-12-03T18:29:40Z,- harishlingam commented on issue: [173](https://github.com/hackforla/website/issues/173#issuecomment-561296620) at 2019-12-03 10:29 AM PST -harishlingam,2019-12-03T18:37:25Z,- harishlingam assigned to issue: [202](https://github.com/hackforla/website/issues/202) at 2019-12-03 10:37 AM PST -harishlingam,2019-12-03T18:47:13Z,- harishlingam opened issue: [206](https://github.com/hackforla/website/issues/206) at 2019-12-03 10:47 AM PST -harishlingam,2019-12-03T18:58:29Z,- harishlingam commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2019-12-03 10:58 AM PST -harishlingam,2019-12-03T19:10:51Z,- harishlingam opened issue: [209](https://github.com/hackforla/website/issues/209) at 2019-12-03 11:10 AM PST -harishlingam,2019-12-03T19:16:49Z,- harishlingam opened issue: [210](https://github.com/hackforla/website/issues/210) at 2019-12-03 11:16 AM PST -harishlingam,2019-12-03T20:11:42Z,- harishlingam closed issue as completed: [202](https://github.com/hackforla/website/issues/202#event-2851484360) at 2019-12-03 12:11 PM PST -harishlingam,2019-12-06T00:32:13Z,- harishlingam commented on pull request: [213](https://github.com/hackforla/website/pull/213#issuecomment-562379926) at 2019-12-05 04:32 PM PST -harishlingam,2019-12-06T00:38:10Z,- harishlingam commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-05 04:38 PM PST -harishlingam,2019-12-06T00:42:57Z,- harishlingam assigned to issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-05 04:42 PM PST -harishlingam,2019-12-08T19:37:35Z,- harishlingam assigned to issue: [209](https://github.com/hackforla/website/issues/209) at 2019-12-08 11:37 AM PST -harishlingam,2019-12-12T00:18:33Z,- harishlingam commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-564792279) at 2019-12-11 04:18 PM PST -harishlingam,2019-12-16T01:23:33Z,- harishlingam assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-15 05:23 PM PST -harishlingam,2019-12-16T04:25:26Z,- harishlingam opened issue: [215](https://github.com/hackforla/website/issues/215) at 2019-12-15 08:25 PM PST -harishlingam,2019-12-16T04:27:01Z,- harishlingam unassigned from issue: [186](https://github.com/hackforla/website/issues/186) at 2019-12-15 08:27 PM PST -harishlingam,2019-12-16T05:23:58Z,- harishlingam opened issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:23 PM PST -harishlingam,2019-12-16T05:23:58Z,- harishlingam assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:23 PM PST -harishlingam,2019-12-17T02:29:44Z,- harishlingam unassigned from issue: [193](https://github.com/hackforla/website/issues/193) at 2019-12-16 06:29 PM PST -harishlingam,2019-12-22T06:18:05Z,- harishlingam opened issue: [220](https://github.com/hackforla/website/issues/220) at 2019-12-21 10:18 PM PST -harishlingam,2019-12-22T06:18:05Z,- harishlingam assigned to issue: [220](https://github.com/hackforla/website/issues/220) at 2019-12-21 10:18 PM PST -harishlingam,2019-12-22T06:24:08Z,- harishlingam assigned to issue: [210](https://github.com/hackforla/website/issues/210) at 2019-12-21 10:24 PM PST -harishlingam,2019-12-22T16:33:39Z,- harishlingam opened issue: [221](https://github.com/hackforla/website/issues/221) at 2019-12-22 08:33 AM PST -harishlingam,2019-12-22T16:33:40Z,- harishlingam assigned to issue: [221](https://github.com/hackforla/website/issues/221) at 2019-12-22 08:33 AM PST -harishlingam,2019-12-23T00:19:32Z,- harishlingam opened issue: [222](https://github.com/hackforla/website/issues/222) at 2019-12-22 04:19 PM PST -harishlingam,2019-12-23T00:25:47Z,- harishlingam opened issue: [223](https://github.com/hackforla/website/issues/223) at 2019-12-22 04:25 PM PST -harishlingam,2019-12-23T00:25:48Z,- harishlingam assigned to issue: [223](https://github.com/hackforla/website/issues/223) at 2019-12-22 04:25 PM PST -harishlingam,2019-12-23T00:29:43Z,- harishlingam opened issue: [224](https://github.com/hackforla/website/issues/224) at 2019-12-22 04:29 PM PST -harishlingam,2019-12-23T00:29:43Z,- harishlingam assigned to issue: [224](https://github.com/hackforla/website/issues/224) at 2019-12-22 04:29 PM PST -harishlingam,2019-12-23T01:04:23Z,- harishlingam opened issue: [225](https://github.com/hackforla/website/issues/225) at 2019-12-22 05:04 PM PST -harishlingam,2019-12-23T01:04:23Z,- harishlingam assigned to issue: [225](https://github.com/hackforla/website/issues/225) at 2019-12-22 05:04 PM PST -harishlingam,2019-12-24T21:36:52Z,- harishlingam assigned to issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-568804369) at 2019-12-24 01:36 PM PST -harishlingam,2019-12-30T23:36:32Z,- harishlingam commented on issue: [199](https://github.com/hackforla/website/issues/199#issuecomment-569827372) at 2019-12-30 03:36 PM PST -harishlingam,2019-12-30T23:36:36Z,- harishlingam closed issue as completed: [199](https://github.com/hackforla/website/issues/199#event-2914865704) at 2019-12-30 03:36 PM PST -harishlingam,2019-12-30T23:54:10Z,- harishlingam assigned to issue: [162](https://github.com/hackforla/website/issues/162) at 2019-12-30 03:54 PM PST -harishlingam,2019-12-31T00:07:12Z,- harishlingam closed issue as completed: [220](https://github.com/hackforla/website/issues/220#event-2914892235) at 2019-12-30 04:07 PM PST -harishlingam,2019-12-31T00:21:55Z,- harishlingam commented on issue: [225](https://github.com/hackforla/website/issues/225#issuecomment-569834993) at 2019-12-30 04:21 PM PST -harishlingam,2019-12-31T01:03:50Z,- harishlingam commented on issue: [227](https://github.com/hackforla/website/issues/227#issuecomment-569840410) at 2019-12-30 05:03 PM PST -harishlingam,2019-12-31T01:03:50Z,- harishlingam closed issue as completed: [227](https://github.com/hackforla/website/issues/227#event-2914933616) at 2019-12-30 05:03 PM PST -harishlingam,2019-12-31T01:04:20Z,- harishlingam closed issue as completed: [181](https://github.com/hackforla/website/issues/181#event-2914933948) at 2019-12-30 05:04 PM PST -harishlingam,2019-12-31T01:04:54Z,- harishlingam closed issue as completed: [182](https://github.com/hackforla/website/issues/182#event-2914934447) at 2019-12-30 05:04 PM PST -harishlingam,2019-12-31T01:05:10Z,- harishlingam closed issue as completed: [190](https://github.com/hackforla/website/issues/190#event-2914934745) at 2019-12-30 05:05 PM PST -harishlingam,2019-12-31T01:05:49Z,- harishlingam closed issue as completed: [158](https://github.com/hackforla/website/issues/158#event-2914935185) at 2019-12-30 05:05 PM PST -harishlingam,2019-12-31T01:06:09Z,- harishlingam closed issue as completed: [170](https://github.com/hackforla/website/issues/170#event-2914935405) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:06:19Z,- harishlingam closed issue as completed: [175](https://github.com/hackforla/website/issues/175#event-2914935503) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:06:28Z,- harishlingam closed issue as completed: [174](https://github.com/hackforla/website/issues/174#event-2914935594) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:06:48Z,- harishlingam closed issue as completed: [194](https://github.com/hackforla/website/issues/194#event-2914935797) at 2019-12-30 05:06 PM PST -harishlingam,2019-12-31T01:07:39Z,- harishlingam closed issue as completed: [177](https://github.com/hackforla/website/issues/177#event-2914936412) at 2019-12-30 05:07 PM PST -harishlingam,2019-12-31T01:08:01Z,- harishlingam closed issue as completed: [159](https://github.com/hackforla/website/issues/159#event-2914936659) at 2019-12-30 05:08 PM PST -harishlingam,2019-12-31T03:09:02Z,- harishlingam opened issue: [235](https://github.com/hackforla/website/issues/235) at 2019-12-30 07:09 PM PST -harishlingam,2019-12-31T03:14:52Z,- harishlingam opened issue: [236](https://github.com/hackforla/website/issues/236) at 2019-12-30 07:14 PM PST -harishlingam,2019-12-31T03:40:11Z,- harishlingam opened issue: [237](https://github.com/hackforla/website/issues/237) at 2019-12-30 07:40 PM PST -harishlingam,2019-12-31T03:45:44Z,- harishlingam closed issue as completed: [222](https://github.com/hackforla/website/issues/222#event-2915046122) at 2019-12-30 07:45 PM PST -harishlingam,2019-12-31T05:55:33Z,- harishlingam opened issue: [239](https://github.com/hackforla/website/issues/239) at 2019-12-30 09:55 PM PST -harishlingam,2019-12-31T05:55:34Z,- harishlingam assigned to issue: [239](https://github.com/hackforla/website/issues/239) at 2019-12-30 09:55 PM PST -harishlingam,2019-12-31T05:57:40Z,- harishlingam opened issue: [240](https://github.com/hackforla/website/issues/240) at 2019-12-30 09:57 PM PST -harishlingam,2019-12-31T05:57:41Z,- harishlingam assigned to issue: [240](https://github.com/hackforla/website/issues/240) at 2019-12-30 09:57 PM PST -harishlingam,2019-12-31T06:00:22Z,- harishlingam opened issue: [241](https://github.com/hackforla/website/issues/241) at 2019-12-30 10:00 PM PST -harishlingam,2019-12-31T06:00:23Z,- harishlingam assigned to issue: [241](https://github.com/hackforla/website/issues/241) at 2019-12-30 10:00 PM PST -harishlingam,2019-12-31T06:04:53Z,- harishlingam opened issue: [242](https://github.com/hackforla/website/issues/242) at 2019-12-30 10:04 PM PST -harishlingam,2019-12-31T06:04:53Z,- harishlingam assigned to issue: [242](https://github.com/hackforla/website/issues/242) at 2019-12-30 10:04 PM PST -harishlingam,2019-12-31T18:19:19Z,- harishlingam opened issue: [244](https://github.com/hackforla/website/issues/244) at 2019-12-31 10:19 AM PST -harishlingam,2019-12-31T18:24:06Z,- harishlingam commented on issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-569970107) at 2019-12-31 10:24 AM PST -harishlingam,2019-12-31T19:55:45Z,- harishlingam closed issue as completed: [241](https://github.com/hackforla/website/issues/241#event-2916042888) at 2019-12-31 11:55 AM PST -harishlingam,2020-01-05T22:21:10Z,- harishlingam commented on issue: [201](https://github.com/hackforla/website/issues/201#issuecomment-570953843) at 2020-01-05 02:21 PM PST -harishlingam,2020-01-06T01:33:53Z,- harishlingam assigned to issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-570107258) at 2020-01-05 05:33 PM PST -harishlingam,2020-01-07T02:22:30Z,- harishlingam assigned to issue: [246](https://github.com/hackforla/website/issues/246) at 2020-01-06 06:22 PM PST -harishlingam,2020-01-07T04:19:21Z,- harishlingam opened issue: [247](https://github.com/hackforla/website/issues/247) at 2020-01-06 08:19 PM PST -harishlingam,2020-01-07T04:25:15Z,- harishlingam opened issue: [250](https://github.com/hackforla/website/issues/250) at 2020-01-06 08:25 PM PST -harishlingam,2020-01-07T04:25:58Z,- harishlingam opened issue: [251](https://github.com/hackforla/website/issues/251) at 2020-01-06 08:25 PM PST -harishlingam,2020-01-07T04:26:49Z,- harishlingam opened issue: [252](https://github.com/hackforla/website/issues/252) at 2020-01-06 08:26 PM PST -harishlingam,2020-01-07T04:27:41Z,- harishlingam opened issue: [253](https://github.com/hackforla/website/issues/253) at 2020-01-06 08:27 PM PST -harishlingam,2020-01-07T04:34:24Z,- harishlingam opened issue: [254](https://github.com/hackforla/website/issues/254) at 2020-01-06 08:34 PM PST -harishlingam,2020-01-07T04:43:43Z,- harishlingam opened issue: [255](https://github.com/hackforla/website/issues/255) at 2020-01-06 08:43 PM PST -harishlingam,2020-01-07T18:56:34Z,- harishlingam opened issue: [288](https://github.com/hackforla/website/issues/288) at 2020-01-07 10:56 AM PST -harishlingam,2020-01-11T20:06:57Z,- harishlingam commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573349992) at 2020-01-11 12:06 PM PST -harishlingam,2020-01-11T20:15:16Z,- harishlingam commented on issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573350595) at 2020-01-11 12:15 PM PST -harishlingam,2020-01-12T17:56:02Z,- harishlingam opened issue: [259](https://github.com/hackforla/website/issues/259) at 2020-01-12 09:56 AM PST -harishlingam,2020-01-12T18:38:01Z,- harishlingam assigned to issue: [236](https://github.com/hackforla/website/issues/236#issuecomment-570003137) at 2020-01-12 10:38 AM PST -harishlingam,2020-01-12T18:42:46Z,- harishlingam closed issue as completed: [224](https://github.com/hackforla/website/issues/224#event-2941424836) at 2020-01-12 10:42 AM PST -harishlingam,2020-01-14T03:47:35Z,- harishlingam commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-573986669) at 2020-01-13 07:47 PM PST -harishlingam,2020-01-15T01:11:38Z,- harishlingam opened issue: [308](https://github.com/hackforla/website/issues/308) at 2020-01-14 05:11 PM PST -harishlingam,2020-01-15T01:12:15Z,- harishlingam opened issue: [264](https://github.com/hackforla/website/issues/264) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:12:15Z,- harishlingam assigned to issue: [264](https://github.com/hackforla/website/issues/264) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:12:46Z,- harishlingam opened issue: [265](https://github.com/hackforla/website/issues/265) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:12:47Z,- harishlingam assigned to issue: [265](https://github.com/hackforla/website/issues/265) at 2020-01-14 05:12 PM PST -harishlingam,2020-01-15T01:13:19Z,- harishlingam opened issue: [266](https://github.com/hackforla/website/issues/266) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:13:19Z,- harishlingam assigned to issue: [266](https://github.com/hackforla/website/issues/266) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:13:47Z,- harishlingam opened issue: [327](https://github.com/hackforla/website/issues/327) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:13:47Z,- harishlingam assigned to issue: [327](https://github.com/hackforla/website/issues/327) at 2020-01-14 05:13 PM PST -harishlingam,2020-01-15T01:14:15Z,- harishlingam opened issue: [268](https://github.com/hackforla/website/issues/268) at 2020-01-14 05:14 PM PST -harishlingam,2020-01-15T01:14:15Z,- harishlingam assigned to issue: [268](https://github.com/hackforla/website/issues/268) at 2020-01-14 05:14 PM PST -harishlingam,2020-01-15T01:14:54Z,- harishlingam assigned to issue: [308](https://github.com/hackforla/website/issues/308) at 2020-01-14 05:14 PM PST -harishlingam,2020-01-15T01:16:32Z,- harishlingam unassigned from issue: [268](https://github.com/hackforla/website/issues/268) at 2020-01-14 05:16 PM PST -harishlingam,2020-01-15T01:17:02Z,- harishlingam unassigned from issue: [264](https://github.com/hackforla/website/issues/264) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:09Z,- harishlingam unassigned from issue: [265](https://github.com/hackforla/website/issues/265) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:15Z,- harishlingam unassigned from issue: [266](https://github.com/hackforla/website/issues/266) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:18Z,- harishlingam unassigned from issue: [327](https://github.com/hackforla/website/issues/327) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-15T01:17:29Z,- harishlingam unassigned from issue: [308](https://github.com/hackforla/website/issues/308) at 2020-01-14 05:17 PM PST -harishlingam,2020-01-19T19:17:35Z,- harishlingam assigned to issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-570106964) at 2020-01-19 11:17 AM PST -harishlingam,2020-01-19T19:18:48Z,- harishlingam unassigned from issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-575852901) at 2020-01-19 11:18 AM PST -harishlingam,2020-01-19T19:29:24Z,- harishlingam unassigned from issue: [210](https://github.com/hackforla/website/issues/210) at 2020-01-19 11:29 AM PST -harishlingam,2020-01-20T03:19:14Z,- harishlingam opened issue: [270](https://github.com/hackforla/website/issues/270) at 2020-01-19 07:19 PM PST -harishlingam,2020-01-20T03:19:15Z,- harishlingam assigned to issue: [270](https://github.com/hackforla/website/issues/270) at 2020-01-19 07:19 PM PST -harishlingam,2020-01-20T03:19:37Z,- harishlingam closed issue as completed: [236](https://github.com/hackforla/website/issues/236#event-2961456020) at 2020-01-19 07:19 PM PST -harishlingam,2020-01-20T03:29:50Z,- harishlingam opened issue: [271](https://github.com/hackforla/website/issues/271) at 2020-01-19 07:29 PM PST -harishlingam,2020-01-20T03:29:51Z,- harishlingam assigned to issue: [271](https://github.com/hackforla/website/issues/271) at 2020-01-19 07:29 PM PST -harishlingam,2020-01-20T03:35:44Z,- harishlingam opened issue: [272](https://github.com/hackforla/website/issues/272) at 2020-01-19 07:35 PM PST -harishlingam,2020-01-20T03:43:17Z,- harishlingam opened issue: [273](https://github.com/hackforla/website/issues/273) at 2020-01-19 07:43 PM PST -harishlingam,2020-01-20T03:43:18Z,- harishlingam assigned to issue: [273](https://github.com/hackforla/website/issues/273) at 2020-01-19 07:43 PM PST -harishlingam,2020-01-20T03:45:01Z,- harishlingam closed issue as completed: [225](https://github.com/hackforla/website/issues/225#event-2961487074) at 2020-01-19 07:45 PM PST -harishlingam,2020-01-20T04:40:30Z,- harishlingam opened issue: [275](https://github.com/hackforla/website/issues/275) at 2020-01-19 08:40 PM PST -harishlingam,2020-01-20T04:40:31Z,- harishlingam assigned to issue: [275](https://github.com/hackforla/website/issues/275) at 2020-01-19 08:40 PM PST -harishlingam,2020-01-20T05:03:56Z,- harishlingam opened issue: [276](https://github.com/hackforla/website/issues/276) at 2020-01-19 09:03 PM PST -harishlingam,2020-01-20T05:03:56Z,- harishlingam assigned to issue: [276](https://github.com/hackforla/website/issues/276) at 2020-01-19 09:03 PM PST -harishlingam,2020-01-20T05:14:17Z,- harishlingam opened issue: [277](https://github.com/hackforla/website/issues/277) at 2020-01-19 09:14 PM PST -harishlingam,2020-01-20T05:14:17Z,- harishlingam assigned to issue: [277](https://github.com/hackforla/website/issues/277) at 2020-01-19 09:14 PM PST -harishlingam,2020-01-20T05:19:47Z,- harishlingam opened issue: [278](https://github.com/hackforla/website/issues/278) at 2020-01-19 09:19 PM PST -harishlingam,2020-01-20T05:19:48Z,- harishlingam assigned to issue: [278](https://github.com/hackforla/website/issues/278) at 2020-01-19 09:19 PM PST -harishlingam,2020-01-25T19:23:36Z,- harishlingam opened issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-25 11:23 AM PST -harishlingam,2020-01-25T19:23:37Z,- harishlingam assigned to issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-25 11:23 AM PST -harishlingam,2020-01-26T17:24:01Z,- harishlingam closed issue as completed: [278](https://github.com/hackforla/website/issues/278#event-2980049912) at 2020-01-26 09:24 AM PST -harishlingam,2020-01-26T18:41:40Z,- harishlingam opened issue: [282](https://github.com/hackforla/website/issues/282) at 2020-01-26 10:41 AM PST -harishlingam,2020-01-26T18:41:41Z,- harishlingam assigned to issue: [282](https://github.com/hackforla/website/issues/282) at 2020-01-26 10:41 AM PST -harishlingam,2020-01-26T19:02:40Z,- harishlingam unassigned from issue: [281](https://github.com/hackforla/website/issues/281) at 2020-01-26 11:02 AM PST -harishlingam,2020-01-26T19:15:07Z,- harishlingam unassigned from issue: [244](https://github.com/hackforla/website/issues/244#issuecomment-578531013) at 2020-01-26 11:15 AM PST -harishlingam,2020-01-26T20:15:24Z,- harishlingam opened issue: [284](https://github.com/hackforla/website/issues/284) at 2020-01-26 12:15 PM PST -harishlingam,2020-01-26T20:15:24Z,- harishlingam assigned to issue: [284](https://github.com/hackforla/website/issues/284) at 2020-01-26 12:15 PM PST -harishlingam,2020-01-26T21:41:18Z,- harishlingam unassigned from issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-571403621) at 2020-01-26 01:41 PM PST -harishlingam,2020-01-27T22:08:51Z,- harishlingam opened issue: [285](https://github.com/hackforla/website/issues/285) at 2020-01-27 02:08 PM PST -harishlingam,2020-01-27T22:43:01Z,- harishlingam opened issue: [286](https://github.com/hackforla/website/issues/286) at 2020-01-27 02:43 PM PST -harishlingam,2020-01-27T22:49:12Z,- harishlingam unassigned from issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-578534005) at 2020-01-27 02:49 PM PST -harishlingam,2020-01-27T22:57:39Z,- harishlingam closed issue as completed: [250](https://github.com/hackforla/website/issues/250#event-2983707097) at 2020-01-27 02:57 PM PST -harishlingam,2020-01-30T22:11:37Z,- harishlingam commented on issue: [272](https://github.com/hackforla/website/issues/272#issuecomment-580485825) at 2020-01-30 02:11 PM PST -harishlingam,2020-02-09T18:35:13Z,- harishlingam opened issue: [302](https://github.com/hackforla/website/issues/302) at 2020-02-09 10:35 AM PST -harishlingam,2020-02-09T19:01:32Z,- harishlingam opened issue: [303](https://github.com/hackforla/website/issues/303) at 2020-02-09 11:01 AM PST -harishlingam,2020-02-11T01:50:33Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-584446021) at 2020-02-10 05:50 PM PST -harishlingam,2020-02-15T22:48:39Z,- harishlingam commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586648596) at 2020-02-15 02:48 PM PST -harishlingam,2020-02-15T23:53:43Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-586652823) at 2020-02-15 03:53 PM PST -harishlingam,2020-02-15T23:54:19Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-586652854) at 2020-02-15 03:54 PM PST -harishlingam,2020-02-16T00:01:05Z,- harishlingam commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586653264) at 2020-02-15 04:01 PM PST -harishlingam,2020-02-16T17:26:20Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-586731210) at 2020-02-16 09:26 AM PST -harishlingam,2020-02-16T18:38:06Z,- harishlingam closed issue as completed: [237](https://github.com/hackforla/website/issues/237#event-3041748568) at 2020-02-16 10:38 AM PST -harishlingam,2020-02-17T22:01:06Z,- harishlingam commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-587172231) at 2020-02-17 02:01 PM PST -harishlingam,2020-02-17T22:30:48Z,- harishlingam opened issue: [316](https://github.com/hackforla/website/issues/316) at 2020-02-17 02:30 PM PST -harishlingam,2020-02-17T23:12:34Z,- harishlingam commented on issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-587186656) at 2020-02-17 03:12 PM PST -harishlingam,2020-02-17T23:15:17Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-587187147) at 2020-02-17 03:15 PM PST -harishlingam,2020-02-22T20:08:44Z,- harishlingam commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-589993591) at 2020-02-22 12:08 PM PST -harishlingam,2020-02-22T20:13:17Z,- harishlingam commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-589993994) at 2020-02-22 12:13 PM PST -harishlingam,2020-02-23T18:45:07Z,- harishlingam commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-590102319) at 2020-02-23 10:45 AM PST -harishlingam,2020-02-23T19:07:57Z,- harishlingam commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-590104617) at 2020-02-23 11:07 AM PST -harishlingam,2020-02-23T19:18:24Z,- harishlingam commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-590105602) at 2020-02-23 11:18 AM PST -harishlingam,2020-02-23T19:19:33Z,- harishlingam commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-590105711) at 2020-02-23 11:19 AM PST -harishlingam,2020-02-23T19:23:50Z,- harishlingam commented on issue: [266](https://github.com/hackforla/website/issues/266#issuecomment-590106152) at 2020-02-23 11:23 AM PST -harishlingam,2020-02-23T20:46:28Z,- harishlingam opened issue: [323](https://github.com/hackforla/website/issues/323) at 2020-02-23 12:46 PM PST -harishlingam,2020-02-23T20:47:01Z,- harishlingam assigned to issue: [323](https://github.com/hackforla/website/issues/323) at 2020-02-23 12:47 PM PST -harishlingam,2020-02-23T20:54:09Z,- harishlingam commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-590114854) at 2020-02-23 12:54 PM PST -harishlingam,2020-02-29T21:44:17Z,- harishlingam opened issue: [329](https://github.com/hackforla/website/issues/329) at 2020-02-29 01:44 PM PST -harishlingam,2020-03-01T19:48:05Z,- harishlingam opened issue: [332](https://github.com/hackforla/website/issues/332) at 2020-03-01 11:48 AM PST -harishlingam,2020-03-01T19:51:12Z,- harishlingam opened issue: [333](https://github.com/hackforla/website/issues/333) at 2020-03-01 11:51 AM PST -harishlingam,2020-03-02T04:32:42Z,- harishlingam commented on issue: [251](https://github.com/hackforla/website/issues/251#issuecomment-593213925) at 2020-03-01 08:32 PM PST -harishlingam,2020-03-02T04:35:54Z,- harishlingam commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-593214576) at 2020-03-01 08:35 PM PST -harishlingam,2020-03-02T05:55:54Z,- harishlingam commented on issue: [276](https://github.com/hackforla/website/issues/276#issuecomment-593233636) at 2020-03-01 09:55 PM PST -harishlingam,2020-03-02T06:05:12Z,- harishlingam commented on issue: [264](https://github.com/hackforla/website/issues/264#issuecomment-593236006) at 2020-03-01 10:05 PM PST -harishlingam,2020-03-02T06:05:13Z,- harishlingam closed issue as completed: [264](https://github.com/hackforla/website/issues/264#event-3086532095) at 2020-03-01 10:05 PM PST -harishlingam,2020-03-02T06:07:47Z,- harishlingam assigned to issue: [329](https://github.com/hackforla/website/issues/329) at 2020-03-01 10:07 PM PST -harishlingam,2020-03-02T06:27:15Z,- harishlingam commented on issue: [189](https://github.com/hackforla/website/issues/189#issuecomment-593241654) at 2020-03-01 10:27 PM PST -harishlingam,2020-03-03T02:10:52Z,- harishlingam commented on issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-593729322) at 2020-03-02 06:10 PM PST -harishlingam,2020-03-03T03:11:11Z,- harishlingam opened issue: [340](https://github.com/hackforla/website/issues/340) at 2020-03-02 07:11 PM PST -harishlingam,2020-03-03T03:11:11Z,- harishlingam assigned to issue: [340](https://github.com/hackforla/website/issues/340) at 2020-03-02 07:11 PM PST -harishlingam,2020-03-08T18:21:15Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-596235039) at 2020-03-08 11:21 AM PDT -harishlingam,2020-03-09T19:59:36Z,- harishlingam opened issue: [356](https://github.com/hackforla/website/issues/356) at 2020-03-09 12:59 PM PDT -harishlingam,2020-03-09T19:59:37Z,- harishlingam assigned to issue: [356](https://github.com/hackforla/website/issues/356) at 2020-03-09 12:59 PM PDT -harishlingam,2020-03-13T23:17:38Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969379) at 2020-03-13 04:17 PM PDT -harishlingam,2020-03-13T23:18:34Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969580) at 2020-03-13 04:18 PM PDT -harishlingam,2020-03-13T23:22:15Z,- harishlingam opened issue: [365](https://github.com/hackforla/website/issues/365) at 2020-03-13 04:22 PM PDT -harishlingam,2020-03-13T23:22:15Z,- harishlingam assigned to issue: [365](https://github.com/hackforla/website/issues/365) at 2020-03-13 04:22 PM PDT -harishlingam,2020-03-13T23:22:30Z,- harishlingam commented on issue: [365](https://github.com/hackforla/website/issues/365#issuecomment-598970344) at 2020-03-13 04:22 PM PDT -harishlingam,2020-03-13T23:49:13Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-598975424) at 2020-03-13 04:49 PM PDT -harishlingam,2020-03-16T03:49:39Z,- harishlingam assigned to issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599243892) at 2020-03-15 08:49 PM PDT -harishlingam,2020-03-16T03:50:09Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-599332116) at 2020-03-15 08:50 PM PDT -harishlingam,2020-03-16T07:12:57Z,- harishlingam closed issue by PR 371: [368](https://github.com/hackforla/website/issues/368#event-3131843295) at 2020-03-16 12:12 AM PDT -harishlingam,2020-03-21T20:14:57Z,- harishlingam closed issue as completed: [365](https://github.com/hackforla/website/issues/365#event-3152057634) at 2020-03-21 01:14 PM PDT -harishlingam,2020-03-21T20:18:59Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-602098628) at 2020-03-21 01:18 PM PDT -harishlingam,2020-03-21T20:19:00Z,- harishlingam reopened issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-602098628) at 2020-03-21 01:19 PM PDT -harishlingam,2020-03-22T18:23:46Z,- harishlingam closed issue by PR 371: [368](https://github.com/hackforla/website/issues/368#event-3152939776) at 2020-03-22 11:23 AM PDT -harishlingam,2020-03-26T19:07:28Z,- harishlingam commented on issue: [271](https://github.com/hackforla/website/issues/271#issuecomment-604627368) at 2020-03-26 12:07 PM PDT -harishlingam,2020-03-26T19:18:42Z,- harishlingam commented on issue: [247](https://github.com/hackforla/website/issues/247#issuecomment-604632579) at 2020-03-26 12:18 PM PDT -harishlingam,2020-03-26T19:18:42Z,- harishlingam reopened issue: [247](https://github.com/hackforla/website/issues/247#issuecomment-604632579) at 2020-03-26 12:18 PM PDT -harishlingam,2020-03-26T19:33:38Z,- harishlingam commented on issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-604640549) at 2020-03-26 12:33 PM PDT -harishlingam,2020-03-26T19:34:13Z,- harishlingam closed issue as completed: [247](https://github.com/hackforla/website/issues/247#event-3169773790) at 2020-03-26 12:34 PM PDT -harishlingam,2020-03-26T19:35:37Z,- harishlingam commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-604641625) at 2020-03-26 12:35 PM PDT -harishlingam,2020-03-27T00:33:39Z,- harishlingam opened issue: [395](https://github.com/hackforla/website/issues/395) at 2020-03-26 05:33 PM PDT -harishlingam,2020-03-27T00:33:40Z,- harishlingam assigned to issue: [395](https://github.com/hackforla/website/issues/395) at 2020-03-26 05:33 PM PDT -harishlingam,2020-03-29T18:14:16Z,- harishlingam commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-605677227) at 2020-03-29 11:14 AM PDT -harishlingam,2020-03-29T19:16:32Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605685374) at 2020-03-29 12:16 PM PDT -harishlingam,2020-03-29T19:16:32Z,- harishlingam reopened issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605685374) at 2020-03-29 12:16 PM PDT -harishlingam,2020-03-29T21:35:46Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605705523) at 2020-03-29 02:35 PM PDT -harishlingam,2020-03-29T21:37:59Z,- harishlingam commented on issue: [395](https://github.com/hackforla/website/issues/395#issuecomment-605705800) at 2020-03-29 02:37 PM PDT -harishlingam,2020-03-30T00:03:55Z,- harishlingam commented on issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-605722857) at 2020-03-29 05:03 PM PDT -harishlingam,2020-03-30T00:57:03Z,- harishlingam closed issue as completed: [395](https://github.com/hackforla/website/issues/395#event-3176527820) at 2020-03-29 05:57 PM PDT -harishlingam,2020-03-30T03:21:17Z,- harishlingam unassigned from issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-605705523) at 2020-03-29 08:21 PM PDT -harishlingam,2020-03-30T03:43:27Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-605766452) at 2020-03-29 08:43 PM PDT -harishlingam,2020-03-30T04:51:40Z,- harishlingam opened issue: [404](https://github.com/hackforla/website/issues/404) at 2020-03-29 09:51 PM PDT -harishlingam,2020-03-30T05:00:05Z,- harishlingam opened issue: [405](https://github.com/hackforla/website/issues/405) at 2020-03-29 10:00 PM PDT -harishlingam,2020-03-31T01:38:13Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-606345840) at 2020-03-30 06:38 PM PDT -harishlingam,2020-04-05T15:39:44Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 08:39 AM PDT -harishlingam,2020-04-05T15:58:51Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609438979) at 2020-04-05 08:58 AM PDT -harishlingam,2020-04-05T16:05:15Z,- harishlingam commented on issue: [368](https://github.com/hackforla/website/issues/368#issuecomment-609439962) at 2020-04-05 09:05 AM PDT -harishlingam,2020-04-05T16:43:38Z,- harishlingam commented on issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-609445702) at 2020-04-05 09:43 AM PDT -harishlingam,2020-04-05T18:59:21Z,- harishlingam opened issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-05 11:59 AM PDT -harishlingam,2020-04-05T23:33:18Z,- harishlingam opened issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-05 04:33 PM PDT -harishlingam,2020-04-05T23:33:18Z,- harishlingam assigned to issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-05 04:33 PM PDT -harishlingam,2020-04-06T01:56:40Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-609527890) at 2020-04-05 06:56 PM PDT -harishlingam,2020-04-11T20:07:46Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612503755) at 2020-04-11 01:07 PM PDT -harishlingam,2020-04-11T20:11:25Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612504360) at 2020-04-11 01:11 PM PDT -harishlingam,2020-04-11T20:28:35Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612507321) at 2020-04-11 01:28 PM PDT -harishlingam,2020-04-11T21:18:48Z,- harishlingam commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-11 02:18 PM PDT -harishlingam,2020-04-12T16:59:20Z,- harishlingam assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612507321) at 2020-04-12 09:59 AM PDT -harishlingam,2020-04-12T17:59:02Z,- harishlingam commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-612653514) at 2020-04-12 10:59 AM PDT -harishlingam,2020-04-12T19:26:21Z,- harishlingam closed issue by PR 371: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-12 12:26 PM PDT -harishlingam,2020-04-12T19:34:48Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612665254) at 2020-04-12 12:34 PM PDT -harishlingam,2020-04-12T19:39:44Z,- harishlingam opened issue: [429](https://github.com/hackforla/website/issues/429) at 2020-04-12 12:39 PM PDT -harishlingam,2020-04-12T19:57:00Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612667914) at 2020-04-12 12:57 PM PDT -harishlingam,2020-04-12T20:23:14Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612671046) at 2020-04-12 01:23 PM PDT -harishlingam,2020-04-12T20:51:58Z,- harishlingam opened issue: [432](https://github.com/hackforla/website/issues/432) at 2020-04-12 01:51 PM PDT -harishlingam,2020-04-13T01:50:16Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612713055) at 2020-04-12 06:50 PM PDT -harishlingam,2020-04-13T03:58:55Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612738967) at 2020-04-12 08:58 PM PDT -harishlingam,2020-04-13T04:07:31Z,- harishlingam opened issue: [436](https://github.com/hackforla/website/issues/436) at 2020-04-12 09:07 PM PDT -harishlingam,2020-04-13T04:07:31Z,- harishlingam assigned to issue: [436](https://github.com/hackforla/website/issues/436) at 2020-04-12 09:07 PM PDT -harishlingam,2020-04-17T22:14:16Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-615487337) at 2020-04-17 03:14 PM PDT -harishlingam,2020-04-17T22:16:56Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-615488164) at 2020-04-17 03:16 PM PDT -harishlingam,2020-04-17T22:20:41Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-615489332) at 2020-04-17 03:20 PM PDT -harishlingam,2020-04-17T22:24:33Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-615490518) at 2020-04-17 03:24 PM PDT -harishlingam,2020-04-17T22:41:33Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-615494936) at 2020-04-17 03:41 PM PDT -harishlingam,2020-04-17T22:44:20Z,- harishlingam assigned to issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-612733309) at 2020-04-17 03:44 PM PDT -harishlingam,2020-04-17T22:47:45Z,- harishlingam commented on issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-615496390) at 2020-04-17 03:47 PM PDT -harishlingam,2020-04-21T20:01:45Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617383708) at 2020-04-21 01:01 PM PDT -harishlingam,2020-04-25T22:54:57Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619451315) at 2020-04-25 03:54 PM PDT -harishlingam,2020-04-25T23:00:48Z,- harishlingam commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-619451847) at 2020-04-25 04:00 PM PDT -harishlingam,2020-04-26T17:39:11Z,- harishlingam commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-619592417) at 2020-04-26 10:39 AM PDT -harishlingam,2020-04-26T17:55:37Z,- harishlingam reopened issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 10:55 AM PDT -harishlingam,2020-04-26T18:02:02Z,- harishlingam unassigned from issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-619446280) at 2020-04-26 11:02 AM PDT -harishlingam,2020-04-26T20:24:51Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619619774) at 2020-04-26 01:24 PM PDT -harishlingam,2020-04-26T20:54:32Z,- harishlingam unassigned from issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:54 PM PDT -harishlingam,2020-04-26T20:56:47Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-619623680) at 2020-04-26 01:56 PM PDT -harishlingam,2020-04-26T20:58:45Z,- harishlingam commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-619623919) at 2020-04-26 01:58 PM PDT -harishlingam,2020-04-26T23:39:38Z,- harishlingam assigned to issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619619774) at 2020-04-26 04:39 PM PDT -harishlingam,2020-04-26T23:46:34Z,- harishlingam opened issue: [469](https://github.com/hackforla/website/issues/469) at 2020-04-26 04:46 PM PDT -harishlingam,2020-04-27T00:34:25Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619650564) at 2020-04-26 05:34 PM PDT -harishlingam,2020-04-27T00:51:46Z,- harishlingam commented on pull request: [467](https://github.com/hackforla/website/pull/467#issuecomment-619653758) at 2020-04-26 05:51 PM PDT -harishlingam,2020-04-27T01:38:11Z,- harishlingam assigned to issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619451315) at 2020-04-26 06:38 PM PDT -harishlingam,2020-04-27T01:55:03Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619666863) at 2020-04-26 06:55 PM PDT -harishlingam,2020-04-27T02:17:11Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619671638) at 2020-04-26 07:17 PM PDT -harishlingam,2020-04-27T16:39:44Z,- harishlingam assigned to issue: [472](https://github.com/hackforla/website/issues/472) at 2020-04-27 09:39 AM PDT -harishlingam,2020-05-02T20:16:29Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623007780) at 2020-05-02 01:16 PM PDT -harishlingam,2020-05-03T15:15:35Z,- harishlingam opened issue: [482](https://github.com/hackforla/website/issues/482) at 2020-05-03 08:15 AM PDT -harishlingam,2020-05-03T15:15:35Z,- harishlingam assigned to issue: [482](https://github.com/hackforla/website/issues/482) at 2020-05-03 08:15 AM PDT -harishlingam,2020-05-03T15:21:21Z,- harishlingam commented on issue: [482](https://github.com/hackforla/website/issues/482#issuecomment-623126204) at 2020-05-03 08:21 AM PDT -harishlingam,2020-05-03T15:25:08Z,- harishlingam commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-623126815) at 2020-05-03 08:25 AM PDT -harishlingam,2020-05-03T17:43:20Z,- harishlingam assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:43 AM PDT -harishlingam,2020-05-03T18:25:47Z,- harishlingam opened issue: [484](https://github.com/hackforla/website/issues/484) at 2020-05-03 11:25 AM PDT -harishlingam,2020-05-03T18:39:55Z,- harishlingam opened issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-03 11:39 AM PDT -harishlingam,2020-05-03T18:39:55Z,- harishlingam assigned to issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-03 11:39 AM PDT -harishlingam,2020-05-03T20:19:27Z,- harishlingam opened issue: [487](https://github.com/hackforla/website/issues/487) at 2020-05-03 01:19 PM PDT -harishlingam,2020-05-03T21:53:24Z,- harishlingam opened issue: [488](https://github.com/hackforla/website/issues/488) at 2020-05-03 02:53 PM PDT -harishlingam,2020-05-03T22:41:49Z,- harishlingam opened issue: [492](https://github.com/hackforla/website/issues/492) at 2020-05-03 03:41 PM PDT -harishlingam,2020-05-03T22:53:09Z,- harishlingam opened issue: [493](https://github.com/hackforla/website/issues/493) at 2020-05-03 03:53 PM PDT -harishlingam,2020-05-03T23:14:17Z,- harishlingam commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623199233) at 2020-05-03 04:14 PM PDT -harishlingam,2020-05-03T23:43:39Z,- harishlingam commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623203351) at 2020-05-03 04:43 PM PDT -harishlingam,2020-05-03T23:45:28Z,- harishlingam unassigned from issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623203351) at 2020-05-03 04:45 PM PDT -harishlingam,2020-05-04T00:13:53Z,- harishlingam commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623207656) at 2020-05-03 05:13 PM PDT -harishlingam,2020-05-04T01:52:20Z,- harishlingam commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623224970) at 2020-05-03 06:52 PM PDT -harishlingam,2020-05-05T22:32:33Z,- harishlingam commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-624341435) at 2020-05-05 03:32 PM PDT -harishlingam,2020-05-05T22:36:22Z,- harishlingam commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-624342663) at 2020-05-05 03:36 PM PDT -harishlingam,2020-05-09T00:17:34Z,- harishlingam commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-626072582) at 2020-05-08 05:17 PM PDT -harishlingam,2020-05-09T00:38:02Z,- harishlingam opened issue: [503](https://github.com/hackforla/website/issues/503) at 2020-05-08 05:38 PM PDT -harishlingam,2020-05-10T16:33:36Z,- harishlingam opened issue: [505](https://github.com/hackforla/website/issues/505) at 2020-05-10 09:33 AM PDT -harishlingam,2020-05-10T16:33:37Z,- harishlingam assigned to issue: [505](https://github.com/hackforla/website/issues/505) at 2020-05-10 09:33 AM PDT -harishlingam,2020-05-10T17:29:36Z,- harishlingam commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-626361712) at 2020-05-10 10:29 AM PDT -harishlingam,2020-05-10T19:16:36Z,- harishlingam opened issue: [506](https://github.com/hackforla/website/issues/506) at 2020-05-10 12:16 PM PDT -harishlingam,2020-05-10T20:35:44Z,- harishlingam closed issue as completed: [505](https://github.com/hackforla/website/issues/505#event-3320672269) at 2020-05-10 01:35 PM PDT -harishlingam,2020-05-12T20:33:03Z,- harishlingam unassigned from issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-627577426) at 2020-05-12 01:33 PM PDT -harishlingam,2020-05-17T18:06:45Z,- harishlingam opened issue: [525](https://github.com/hackforla/website/issues/525) at 2020-05-17 11:06 AM PDT -harishlingam,2020-05-17T18:34:56Z,- harishlingam opened issue: [526](https://github.com/hackforla/website/issues/526) at 2020-05-17 11:34 AM PDT -harishlingam,2020-05-17T18:38:19Z,- harishlingam unassigned from issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-629839960) at 2020-05-17 11:38 AM PDT -harishlingam,2020-05-17T22:16:30Z,- harishlingam commented on issue: [482](https://github.com/hackforla/website/issues/482#issuecomment-629869099) at 2020-05-17 03:16 PM PDT -harishlingam,2020-05-17T23:30:38Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629878411) at 2020-05-17 04:30 PM PDT -harishlingam,2020-05-17T23:30:56Z,- harishlingam assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629878411) at 2020-05-17 04:30 PM PDT -harishlingam,2020-05-17T23:31:01Z,- harishlingam unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629878411) at 2020-05-17 04:31 PM PDT -harishlingam,2020-05-23T20:29:23Z,- harishlingam opened issue: [533](https://github.com/hackforla/website/issues/533) at 2020-05-23 01:29 PM PDT -harishlingam,2020-05-23T20:43:17Z,- harishlingam commented on issue: [482](https://github.com/hackforla/website/issues/482#issuecomment-633136387) at 2020-05-23 01:43 PM PDT -harishlingam,2020-05-23T20:43:17Z,- harishlingam closed issue as completed: [482](https://github.com/hackforla/website/issues/482#event-3367409099) at 2020-05-23 01:43 PM PDT -harishlingam,2020-05-23T20:49:02Z,- harishlingam assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629882675) at 2020-05-23 01:49 PM PDT -harishlingam,2020-05-23T20:53:55Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633138460) at 2020-05-23 01:53 PM PDT -harishlingam,2020-05-24T01:31:37Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163692) at 2020-05-23 06:31 PM PDT -harishlingam,2020-05-24T01:32:46Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163759) at 2020-05-23 06:32 PM PDT -harishlingam,2020-05-24T16:22:24Z,- harishlingam opened issue: [534](https://github.com/hackforla/website/issues/534) at 2020-05-24 09:22 AM PDT -harishlingam,2020-05-24T16:46:33Z,- harishlingam opened issue: [535](https://github.com/hackforla/website/issues/535) at 2020-05-24 09:46 AM PDT -harishlingam,2020-05-24T19:25:02Z,- harishlingam unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163759) at 2020-05-24 12:25 PM PDT -harishlingam,2020-05-24T19:31:10Z,- harishlingam unassigned from issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -harishlingam,2020-05-24T19:34:46Z,- harishlingam unassigned from issue: [273](https://github.com/hackforla/website/issues/273#issuecomment-633283842) at 2020-05-24 12:34 PM PDT -harishlingam,2020-05-24T19:35:01Z,- harishlingam unassigned from issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969580) at 2020-05-24 12:35 PM PDT -harishlingam,2020-05-24T19:52:27Z,- harishlingam assigned to issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-598969580) at 2020-05-24 12:52 PM PDT -harishlingam,2020-05-24T19:53:40Z,- harishlingam unassigned from issue: [221](https://github.com/hackforla/website/issues/221) at 2020-05-24 12:53 PM PDT -harishlingam,2020-05-24T19:55:00Z,- harishlingam unassigned from issue: [162](https://github.com/hackforla/website/issues/162) at 2020-05-24 12:55 PM PDT -harishlingam,2020-05-24T19:56:04Z,- harishlingam unassigned from issue: [209](https://github.com/hackforla/website/issues/209) at 2020-05-24 12:56 PM PDT -harishlingam,2020-05-24T19:57:10Z,- harishlingam unassigned from issue: [223](https://github.com/hackforla/website/issues/223#issuecomment-605782876) at 2020-05-24 12:57 PM PDT -harishlingam,2020-05-24T20:09:43Z,- harishlingam unassigned from issue: [436](https://github.com/hackforla/website/issues/436#issuecomment-633289489) at 2020-05-24 01:09 PM PDT -harishlingam,2020-05-24T20:32:37Z,- harishlingam unassigned from issue: [191](https://github.com/hackforla/website/issues/191#issuecomment-624322591) at 2020-05-24 01:32 PM PDT -harishlingam,2020-05-24T20:39:27Z,- harishlingam unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2020-05-24 01:39 PM PDT -harishlingam,2020-05-24T20:45:04Z,- harishlingam unassigned from issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633296069) at 2020-05-24 01:45 PM PDT -harishlingam,2020-05-24T21:00:10Z,- harishlingam assigned to issue: [538](https://github.com/hackforla/website/issues/538) at 2020-05-24 02:00 PM PDT -harishlingam,2020-05-25T00:01:26Z,- harishlingam commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633319628) at 2020-05-24 05:01 PM PDT -harishlingam,2020-05-25T00:05:06Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-633320104) at 2020-05-24 05:05 PM PDT -harishlingam,2020-05-25T20:40:42Z,- harishlingam opened issue: [542](https://github.com/hackforla/website/issues/542) at 2020-05-25 01:40 PM PDT -harishlingam,2020-05-25T20:40:42Z,- harishlingam assigned to issue: [542](https://github.com/hackforla/website/issues/542) at 2020-05-25 01:40 PM PDT -harishlingam,2020-05-27T20:47:21Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-634930516) at 2020-05-27 01:47 PM PDT -harishlingam,2020-05-27T21:03:46Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-634938449) at 2020-05-27 02:03 PM PDT -harishlingam,2020-05-27T22:32:10Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-634978430) at 2020-05-27 03:32 PM PDT -harishlingam,2020-05-27T22:55:47Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-634986390) at 2020-05-27 03:55 PM PDT -harishlingam,2020-05-31T15:37:16Z,- harishlingam commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-636487613) at 2020-05-31 08:37 AM PDT -harishlingam,2020-05-31T15:40:06Z,- harishlingam commented on issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-636487966) at 2020-05-31 08:40 AM PDT -harishlingam,2020-05-31T17:48:51Z,- harishlingam opened issue: [550](https://github.com/hackforla/website/issues/550) at 2020-05-31 10:48 AM PDT -harishlingam,2020-05-31T17:51:58Z,- harishlingam opened issue: [551](https://github.com/hackforla/website/issues/551) at 2020-05-31 10:51 AM PDT -harishlingam,2020-05-31T18:26:02Z,- harishlingam unassigned from issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636496646) at 2020-05-31 11:26 AM PDT -harishlingam,2020-05-31T18:28:04Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636509287) at 2020-05-31 11:28 AM PDT -harishlingam,2020-05-31T20:36:15Z,- harishlingam opened issue: [552](https://github.com/hackforla/website/issues/552) at 2020-05-31 01:36 PM PDT -harishlingam,2020-06-01T01:29:23Z,- harishlingam closed issue as completed: [210](https://github.com/hackforla/website/issues/210#event-3391204594) at 2020-05-31 06:29 PM PDT -harishlingam,2020-06-01T01:46:10Z,- harishlingam opened issue: [555](https://github.com/hackforla/website/issues/555) at 2020-05-31 06:46 PM PDT -harishlingam,2020-06-03T02:17:01Z,- harishlingam commented on issue: [346](https://github.com/hackforla/website/issues/346#issuecomment-637912358) at 2020-06-02 07:17 PM PDT -harishlingam,2020-06-03T02:29:00Z,- harishlingam commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637915401) at 2020-06-02 07:29 PM PDT -harishlingam,2020-06-03T02:38:18Z,- harishlingam commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-637917801) at 2020-06-02 07:38 PM PDT -harishlingam,2020-06-07T00:23:18Z,- harishlingam opened issue: [562](https://github.com/hackforla/website/issues/562) at 2020-06-06 05:23 PM PDT -harishlingam,2020-06-07T00:23:24Z,- harishlingam assigned to issue: [562](https://github.com/hackforla/website/issues/562) at 2020-06-06 05:23 PM PDT -harishlingam,2020-06-07T01:10:18Z,- harishlingam commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640140731) at 2020-06-06 06:10 PM PDT -harishlingam,2020-06-07T16:25:00Z,- harishlingam opened issue: [567](https://github.com/hackforla/website/issues/567) at 2020-06-07 09:25 AM PDT -harishlingam,2020-06-07T16:43:22Z,- harishlingam opened issue: [568](https://github.com/hackforla/website/issues/568) at 2020-06-07 09:43 AM PDT -harishlingam,2020-06-07T17:24:07Z,- harishlingam reopened issue: [503](https://github.com/hackforla/website/issues/503#event-3416774223) at 2020-06-07 10:24 AM PDT -harishlingam,2020-06-07T17:37:44Z,- harishlingam opened issue: [570](https://github.com/hackforla/website/issues/570) at 2020-06-07 10:37 AM PDT -harishlingam,2020-06-07T17:55:01Z,- harishlingam opened issue: [571](https://github.com/hackforla/website/issues/571) at 2020-06-07 10:55 AM PDT -harishlingam,2020-06-07T18:36:16Z,- harishlingam closed issue as completed: [568](https://github.com/hackforla/website/issues/568#event-3416974332) at 2020-06-07 11:36 AM PDT -harishlingam,2020-06-08T02:04:35Z,- harishlingam unassigned from issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640140731) at 2020-06-07 07:04 PM PDT -harishlingam,2020-06-08T02:39:17Z,- harishlingam closed issue as completed: [340](https://github.com/hackforla/website/issues/340#event-3417746723) at 2020-06-07 07:39 PM PDT -harishlingam,2020-06-08T02:42:20Z,- harishlingam unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-633293006) at 2020-06-07 07:42 PM PDT -harishlingam,2020-06-08T02:43:27Z,- harishlingam closed issue as completed: [284](https://github.com/hackforla/website/issues/284#event-3417756183) at 2020-06-07 07:43 PM PDT -harishlingam,2020-06-08T04:31:22Z,- harishlingam unassigned from issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-636487613) at 2020-06-07 09:31 PM PDT -harishlingam,2020-06-08T04:32:01Z,- harishlingam unassigned from issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616288864) at 2020-06-07 09:32 PM PDT -harishlingam,2020-06-08T05:26:32Z,- harishlingam unassigned from issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 10:26 PM PDT -harishlingam,2020-06-10T03:26:45Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641697603) at 2020-06-09 08:26 PM PDT -harishlingam,2020-06-10T03:26:54Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641697653) at 2020-06-09 08:26 PM PDT -harishlingam,2020-06-10T03:39:13Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641700999) at 2020-06-09 08:39 PM PDT -harishlingam,2020-06-10T03:55:42Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-641704877) at 2020-06-09 08:55 PM PDT -harishlingam,2020-06-13T22:54:50Z,- harishlingam commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-643688618) at 2020-06-13 03:54 PM PDT -harishlingam,2020-06-21T18:19:11Z,- harishlingam assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:19 AM PDT -harishlingam,2020-06-21T22:00:41Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187320) at 2020-06-21 03:00 PM PDT -harishlingam,2020-06-21T22:02:59Z,- harishlingam commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-21 03:02 PM PDT -harishlingam,2020-06-21T22:10:45Z,- harishlingam unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-21 03:10 PM PDT -harishlingam,2020-10-22T22:32:57Z,- harishlingam closed issue as completed: [273](https://github.com/hackforla/website/issues/273#event-3911392796) at 2020-10-22 03:32 PM PDT -harishlingam,2020-11-12T23:52:07Z,- harishlingam closed issue as completed: [265](https://github.com/hackforla/website/issues/265#event-3991162912) at 2020-11-12 03:52 PM PST -harishlingam,2021-06-12T12:54:19Z,- harishlingam closed issue as completed: [436](https://github.com/hackforla/website/issues/436#event-4881239376) at 2021-06-12 05:54 AM PDT -harishlingam,2021-11-01T04:09:50Z,- harishlingam unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2021-10-31 09:09 PM PDT -harith-aaron,2024-05-29T08:14:42Z,- harith-aaron commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2136813635) at 2024-05-29 01:14 AM PDT -harshitasao,2840,SKILLS ISSUE -harshitasao,2022-02-22T17:05:52Z,- harshitasao opened issue: [2840](https://github.com/hackforla/website/issues/2840) at 2022-02-22 09:05 AM PST -harshitasao,2022-02-23T07:23:40Z,- harshitasao assigned to issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1048413831) at 2022-02-22 11:23 PM PST -harshitasao,2022-02-23T11:01:30Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1048666019) at 2022-02-23 03:01 AM PST -harshitasao,2022-02-23T13:31:54Z,- harshitasao assigned to issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1046314894) at 2022-02-23 05:31 AM PST -harshitasao,2022-02-23T13:33:00Z,- harshitasao opened pull request: [2872](https://github.com/hackforla/website/pull/2872) at 2022-02-23 05:33 AM PST -harshitasao,2022-02-23T23:13:16Z,- harshitasao pull request closed w/o merging: [2872](https://github.com/hackforla/website/pull/2872#event-6128577607) at 2022-02-23 03:13 PM PST -harshitasao,2022-02-23T23:14:03Z,- harshitasao unassigned from issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049305628) at 2022-02-23 03:14 PM PST -harshitasao,2022-02-24T03:18:06Z,- harshitasao commented on issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049454355) at 2022-02-23 07:18 PM PST -harshitasao,2022-02-24T07:53:37Z,- harshitasao assigned to issue: [2791](https://github.com/hackforla/website/issues/2791#issuecomment-1045479483) at 2022-02-23 11:53 PM PST -harshitasao,2022-02-24T11:09:06Z,- harshitasao opened pull request: [2883](https://github.com/hackforla/website/pull/2883) at 2022-02-24 03:09 AM PST -harshitasao,2022-02-25T20:46:26Z,- harshitasao pull request merged: [2883](https://github.com/hackforla/website/pull/2883#event-6141862144) at 2022-02-25 12:46 PM PST -harshitasao,2022-02-26T04:32:16Z,- harshitasao commented on pull request: [2883](https://github.com/hackforla/website/pull/2883#issuecomment-1051567870) at 2022-02-25 08:32 PM PST -harshitasao,2022-02-28T10:20:04Z,- harshitasao assigned to issue: [2890](https://github.com/hackforla/website/issues/2890#issuecomment-1051559621) at 2022-02-28 02:20 AM PST -harshitasao,2022-02-28T11:09:21Z,- harshitasao opened pull request: [2903](https://github.com/hackforla/website/pull/2903) at 2022-02-28 03:09 AM PST -harshitasao,2022-03-01T09:37:09Z,- harshitasao closed issue as completed: [2840](https://github.com/hackforla/website/issues/2840#event-6160645607) at 2022-03-01 01:37 AM PST -harshitasao,2022-03-01T09:50:46Z,- harshitasao pull request merged: [2903](https://github.com/hackforla/website/pull/2903#event-6160740538) at 2022-03-01 01:50 AM PST -harshitasao,2022-03-11T14:27:38Z,- harshitasao assigned to issue: [2896](https://github.com/hackforla/website/issues/2896#issuecomment-1053380851) at 2022-03-11 06:27 AM PST -harshitasao,2022-03-12T03:34:46Z,- harshitasao commented on issue: [2896](https://github.com/hackforla/website/issues/2896#issuecomment-1065803851) at 2022-03-11 08:34 PM PDT -harshitasao,2022-03-12T11:20:17Z,- harshitasao opened pull request: [2970](https://github.com/hackforla/website/pull/2970) at 2022-03-12 04:20 AM PDT -harshitasao,2022-03-15T13:51:26Z,- harshitasao commented on pull request: [2983](https://github.com/hackforla/website/pull/2983#issuecomment-1068012707) at 2022-03-15 06:51 AM PDT -harshitasao,2022-03-15T17:41:21Z,- harshitasao submitted pull request review: [2983](https://github.com/hackforla/website/pull/2983#pullrequestreview-910597387) at 2022-03-15 10:41 AM PDT -harshitasao,2022-03-16T21:14:35Z,- harshitasao pull request merged: [2970](https://github.com/hackforla/website/pull/2970#event-6254038125) at 2022-03-16 02:14 PM PDT -harshitasao,2022-03-18T13:18:08Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1072401838) at 2022-03-18 06:18 AM PDT -harshitasao,2022-03-21T12:35:20Z,- harshitasao commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1073839553) at 2022-03-21 05:35 AM PDT -harshitasao,2022-03-21T17:23:27Z,- harshitasao submitted pull request review: [2996](https://github.com/hackforla/website/pull/2996#pullrequestreview-916101612) at 2022-03-21 10:23 AM PDT -harshitasao,2022-03-22T13:49:11Z,- harshitasao commented on pull request: [2998](https://github.com/hackforla/website/pull/2998#issuecomment-1075204374) at 2022-03-22 06:49 AM PDT -harshitasao,2022-03-22T17:55:23Z,- harshitasao submitted pull request review: [2998](https://github.com/hackforla/website/pull/2998#pullrequestreview-917652288) at 2022-03-22 10:55 AM PDT -harshitasao,2022-03-25T07:11:05Z,- harshitasao assigned to issue: [2290](https://github.com/hackforla/website/issues/2290) at 2022-03-25 12:11 AM PDT -harshitasao,2022-03-25T07:16:10Z,- harshitasao commented on issue: [2290](https://github.com/hackforla/website/issues/2290#issuecomment-1078726380) at 2022-03-25 12:16 AM PDT -harshitasao,2022-03-26T02:23:32Z,- harshitasao commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079569397) at 2022-03-25 07:23 PM PDT -harshitasao,2022-03-26T09:46:35Z,- harshitasao submitted pull request review: [3013](https://github.com/hackforla/website/pull/3013#pullrequestreview-922301147) at 2022-03-26 02:46 AM PDT -harshitasao,2022-03-26T13:16:48Z,- harshitasao opened pull request: [3014](https://github.com/hackforla/website/pull/3014) at 2022-03-26 06:16 AM PDT -harshitasao,2022-03-31T08:02:04Z,- harshitasao pull request merged: [3014](https://github.com/hackforla/website/pull/3014#event-6341616176) at 2022-03-31 01:02 AM PDT -harshitasao,2022-04-02T16:18:38Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1086671352) at 2022-04-02 09:18 AM PDT -harshitasao,2022-04-03T03:32:49Z,- harshitasao commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1086769087) at 2022-04-02 08:32 PM PDT -harshitasao,2022-04-06T06:05:11Z,- harshitasao assigned to issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-995399442) at 2022-04-05 11:05 PM PDT -harshitasao,2022-04-06T06:08:09Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1089858441) at 2022-04-05 11:08 PM PDT -harshitasao,2022-04-08T07:49:32Z,- harshitasao commented on pull request: [3037](https://github.com/hackforla/website/pull/3037#issuecomment-1092557227) at 2022-04-08 12:49 AM PDT -harshitasao,2022-04-08T16:44:59Z,- harshitasao submitted pull request review: [3037](https://github.com/hackforla/website/pull/3037#pullrequestreview-936722853) at 2022-04-08 09:44 AM PDT -harshitasao,2022-04-10T18:24:03Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1094341643) at 2022-04-10 11:24 AM PDT -harshitasao,2022-04-10T18:29:47Z,- harshitasao closed issue as completed: [2840](https://github.com/hackforla/website/issues/2840#event-6404515021) at 2022-04-10 11:29 AM PDT -harshitasao,2022-04-12T13:00:22Z,- harshitasao commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096697858) at 2022-04-12 06:00 AM PDT -harshitasao,2022-04-12T14:21:46Z,- harshitasao submitted pull request review: [3044](https://github.com/hackforla/website/pull/3044#pullrequestreview-939637556) at 2022-04-12 07:21 AM PDT -harshitasao,2022-04-12T17:01:02Z,- harshitasao commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096974577) at 2022-04-12 10:01 AM PDT -harshitasao,2022-04-18T14:16:59Z,- harshitasao commented on pull request: [3062](https://github.com/hackforla/website/pull/3062#issuecomment-1101443528) at 2022-04-18 07:16 AM PDT -harshitasao,2022-04-18T16:32:42Z,- harshitasao commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1101547740) at 2022-04-18 09:32 AM PDT -harshitasao,2022-04-19T03:36:06Z,- harshitasao submitted pull request review: [3062](https://github.com/hackforla/website/pull/3062#pullrequestreview-945018397) at 2022-04-18 08:36 PM PDT -harshitasao,2022-04-19T06:18:43Z,- harshitasao submitted pull request review: [3061](https://github.com/hackforla/website/pull/3061#pullrequestreview-945107079) at 2022-04-18 11:18 PM PDT -harshitasao,2022-04-23T16:23:46Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1107529662) at 2022-04-23 09:23 AM PDT -harshitasao,2022-04-25T05:04:56Z,- harshitasao commented on pull request: [3081](https://github.com/hackforla/website/pull/3081#issuecomment-1108081657) at 2022-04-24 10:04 PM PDT -harshitasao,2022-04-25T18:38:19Z,- harshitasao submitted pull request review: [3081](https://github.com/hackforla/website/pull/3081#pullrequestreview-952297266) at 2022-04-25 11:38 AM PDT -harshitasao,2022-04-25T18:58:01Z,- harshitasao submitted pull request review: [3081](https://github.com/hackforla/website/pull/3081#pullrequestreview-952318444) at 2022-04-25 11:58 AM PDT -harshitasao,2022-05-07T07:17:18Z,- harshitasao commented on pull request: [3108](https://github.com/hackforla/website/pull/3108#issuecomment-1120153659) at 2022-05-07 12:17 AM PDT -harshitasao,2022-05-07T12:53:01Z,- harshitasao submitted pull request review: [3108](https://github.com/hackforla/website/pull/3108#pullrequestreview-965329208) at 2022-05-07 05:53 AM PDT -harshitasao,2022-05-08T13:16:38Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1120417439) at 2022-05-08 06:16 AM PDT -harshitasao,2022-05-09T09:44:25Z,- harshitasao commented on pull request: [3114](https://github.com/hackforla/website/pull/3114#issuecomment-1120882783) at 2022-05-09 02:44 AM PDT -harshitasao,2022-05-10T06:02:38Z,- harshitasao submitted pull request review: [3114](https://github.com/hackforla/website/pull/3114#pullrequestreview-967213064) at 2022-05-09 11:02 PM PDT -harshitasao,2022-05-19T08:02:42Z,- harshitasao commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1131371363) at 2022-05-19 01:02 AM PDT -harshitasao,2022-05-19T08:03:14Z,- harshitasao commented on pull request: [3159](https://github.com/hackforla/website/pull/3159#issuecomment-1131371855) at 2022-05-19 01:03 AM PDT -harshitasao,2022-05-20T02:58:23Z,- harshitasao submitted pull request review: [3159](https://github.com/hackforla/website/pull/3159#pullrequestreview-979462188) at 2022-05-19 07:58 PM PDT -harshitasao,2022-05-21T05:29:19Z,- harshitasao commented on pull request: [3163](https://github.com/hackforla/website/pull/3163#issuecomment-1133538250) at 2022-05-20 10:29 PM PDT -harshitasao,2022-05-21T13:42:53Z,- harshitasao submitted pull request review: [3163](https://github.com/hackforla/website/pull/3163#pullrequestreview-980828970) at 2022-05-21 06:42 AM PDT -harshitasao,2022-05-24T05:30:12Z,- harshitasao commented on pull request: [3172](https://github.com/hackforla/website/pull/3172#issuecomment-1135427522) at 2022-05-23 10:30 PM PDT -harshitasao,2022-05-24T05:42:11Z,- harshitasao commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1135434712) at 2022-05-23 10:42 PM PDT -harshitasao,2022-05-24T19:23:39Z,- harshitasao submitted pull request review: [3172](https://github.com/hackforla/website/pull/3172#pullrequestreview-983744202) at 2022-05-24 12:23 PM PDT -harshitasao,2022-05-25T02:50:33Z,- harshitasao submitted pull request review: [3172](https://github.com/hackforla/website/pull/3172#pullrequestreview-984151851) at 2022-05-24 07:50 PM PDT -harshitasao,2022-07-25T21:52:28Z,- harshitasao unassigned from issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1194674868) at 2022-07-25 02:52 PM PDT -hdkassamali,7888,SKILLS ISSUE -hdkassamali,2025-02-05T04:19:11Z,- hdkassamali opened issue: [7888](https://github.com/hackforla/website/issues/7888) at 2025-02-04 08:19 PM PST -hdkassamali,2025-02-05T04:19:31Z,- hdkassamali assigned to issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2635668013) at 2025-02-04 08:19 PM PST -hdkassamali,2025-02-09T18:37:23Z,- hdkassamali commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2646473726) at 2025-02-09 10:37 AM PST -hdkassamali,2025-02-09T18:41:42Z,- hdkassamali commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2646475221) at 2025-02-09 10:41 AM PST -hdkassamali,2025-02-21T02:14:59Z,- hdkassamali commented on issue: [7888](https://github.com/hackforla/website/issues/7888#issuecomment-2673182485) at 2025-02-20 06:14 PM PST -heejung-hong,5868,SKILLS ISSUE -heejung-hong,2023-11-07T04:03:32Z,- heejung-hong opened issue: [5868](https://github.com/hackforla/website/issues/5868) at 2023-11-06 08:03 PM PST -heejung-hong,2023-11-07T04:03:52Z,- heejung-hong assigned to issue: [5868](https://github.com/hackforla/website/issues/5868#issuecomment-1797715249) at 2023-11-06 08:03 PM PST -heejung-hong,2023-11-11T01:23:51Z,- heejung-hong assigned to issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1797802085) at 2023-11-10 05:23 PM PST -heejung-hong,2023-11-11T04:35:42Z,- heejung-hong commented on issue: [5804](https://github.com/hackforla/website/issues/5804#issuecomment-1806675791) at 2023-11-10 08:35 PM PST -heejung-hong,2023-11-13T17:33:36Z,- heejung-hong opened pull request: [5898](https://github.com/hackforla/website/pull/5898) at 2023-11-13 09:33 AM PST -heejung-hong,2023-11-20T23:03:28Z,- heejung-hong pull request closed w/o merging: [5898](https://github.com/hackforla/website/pull/5898#event-11017581386) at 2023-11-20 03:03 PM PST -heejung-hong,2023-11-20T23:24:27Z,- heejung-hong opened pull request: [5925](https://github.com/hackforla/website/pull/5925) at 2023-11-20 03:24 PM PST -heejung-hong,2023-11-22T20:41:21Z,- heejung-hong commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1823477643) at 2023-11-22 12:41 PM PST -heejung-hong,2023-11-22T21:18:50Z,- heejung-hong submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1745393467) at 2023-11-22 01:18 PM PST -heejung-hong,2023-11-22T21:30:14Z,- heejung-hong pull request merged: [5925](https://github.com/hackforla/website/pull/5925#event-11041395757) at 2023-11-22 01:30 PM PST -heejung-hong,2023-11-23T00:31:02Z,- heejung-hong assigned to issue: [5798](https://github.com/hackforla/website/issues/5798) at 2023-11-22 04:31 PM PST -heejung-hong,2023-11-27T18:13:51Z,- heejung-hong opened pull request: [5937](https://github.com/hackforla/website/pull/5937) at 2023-11-27 10:13 AM PST -heejung-hong,2023-11-29T03:26:12Z,- heejung-hong commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1831154211) at 2023-11-28 07:26 PM PST -heejung-hong,2023-11-29T03:36:13Z,- heejung-hong commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1831163830) at 2023-11-28 07:36 PM PST -heejung-hong,2023-11-29T04:27:21Z,- heejung-hong pull request closed w/o merging: [5937](https://github.com/hackforla/website/pull/5937#event-11091458187) at 2023-11-28 08:27 PM PST -heejung-hong,2023-11-29T04:27:48Z,- heejung-hong commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1831197680) at 2023-11-28 08:27 PM PST -heejung-hong,2023-11-29T20:07:43Z,- heejung-hong commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1832626388) at 2023-11-29 12:07 PM PST -heejung-hong,2023-11-30T21:39:26Z,- heejung-hong opened pull request: [5951](https://github.com/hackforla/website/pull/5951) at 2023-11-30 01:39 PM PST -heejung-hong,2023-12-01T03:28:10Z,- heejung-hong submitted pull request review: [5952](https://github.com/hackforla/website/pull/5952#pullrequestreview-1758942278) at 2023-11-30 07:28 PM PST -heejung-hong,2023-12-02T18:42:02Z,- heejung-hong pull request merged: [5951](https://github.com/hackforla/website/pull/5951#event-11129560741) at 2023-12-02 10:42 AM PST -heejung-hong,2023-12-07T22:48:58Z,- heejung-hong commented on pull request: [5957](https://github.com/hackforla/website/pull/5957#issuecomment-1846226938) at 2023-12-07 02:48 PM PST -heejung-hong,2023-12-07T23:19:54Z,- heejung-hong submitted pull request review: [5957](https://github.com/hackforla/website/pull/5957#pullrequestreview-1771283121) at 2023-12-07 03:19 PM PST -heejung-hong,2023-12-12T01:00:35Z,- heejung-hong assigned to issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1752126495) at 2023-12-11 05:00 PM PST -heejung-hong,2023-12-22T02:21:35Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1867149393) at 2023-12-21 06:21 PM PST -heejung-hong,2023-12-22T02:41:51Z,- heejung-hong assigned to issue: [5735](https://github.com/hackforla/website/issues/5735) at 2023-12-21 06:41 PM PST -heejung-hong,2023-12-22T02:44:17Z,- heejung-hong commented on issue: [5735](https://github.com/hackforla/website/issues/5735#issuecomment-1867162344) at 2023-12-21 06:44 PM PST -heejung-hong,2024-01-05T04:37:29Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1878112319) at 2024-01-04 08:37 PM PST -heejung-hong,2024-01-05T05:09:25Z,- heejung-hong submitted pull request review: [6063](https://github.com/hackforla/website/pull/6063#pullrequestreview-1805354133) at 2024-01-04 09:09 PM PST -heejung-hong,2024-01-05T05:37:15Z,- heejung-hong submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1805371080) at 2024-01-04 09:37 PM PST -heejung-hong,2024-01-09T03:27:14Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1882331309) at 2024-01-08 07:27 PM PST -heejung-hong,2024-01-09T03:29:39Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1882336265) at 2024-01-08 07:29 PM PST -heejung-hong,2024-01-16T04:16:58Z,- heejung-hong commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1893045818) at 2024-01-15 08:16 PM PST -heejung-hong,2024-01-23T05:21:39Z,- heejung-hong assigned to issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1905148455) at 2024-01-22 09:21 PM PST -heejung-hong,2024-01-23T05:24:28Z,- heejung-hong commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1905314650) at 2024-01-22 09:24 PM PST -heejung-hong,2024-01-24T04:37:36Z,- heejung-hong opened pull request: [6149](https://github.com/hackforla/website/pull/6149) at 2024-01-23 08:37 PM PST -heejung-hong,2024-01-26T06:35:07Z,- heejung-hong submitted pull request review: [6164](https://github.com/hackforla/website/pull/6164#pullrequestreview-1845135551) at 2024-01-25 10:35 PM PST -heejung-hong,2024-01-26T06:49:37Z,- heejung-hong pull request merged: [6149](https://github.com/hackforla/website/pull/6149#event-11605512918) at 2024-01-25 10:49 PM PST -heejung-hong,2024-01-31T03:45:37Z,- heejung-hong assigned to issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1796293621) at 2024-01-30 07:45 PM PST -heejung-hong,2024-01-31T03:48:46Z,- heejung-hong commented on issue: [4454](https://github.com/hackforla/website/issues/4454#issuecomment-1918331351) at 2024-01-30 07:48 PM PST -heejung-hong,2024-02-02T04:59:57Z,- heejung-hong submitted pull request review: [6210](https://github.com/hackforla/website/pull/6210#pullrequestreview-1858304708) at 2024-02-01 08:59 PM PST -heejung-hong,2024-02-02T05:18:20Z,- heejung-hong commented on pull request: [6210](https://github.com/hackforla/website/pull/6210#issuecomment-1922847957) at 2024-02-01 09:18 PM PST -heejung-hong,2024-02-02T05:20:50Z,- heejung-hong submitted pull request review: [6207](https://github.com/hackforla/website/pull/6207#pullrequestreview-1858325658) at 2024-02-01 09:20 PM PST -heejung-hong,2024-02-02T05:41:37Z,- heejung-hong submitted pull request review: [6206](https://github.com/hackforla/website/pull/6206#pullrequestreview-1858362360) at 2024-02-01 09:41 PM PST -heejung-hong,2024-02-02T05:54:17Z,- heejung-hong submitted pull request review: [6204](https://github.com/hackforla/website/pull/6204#pullrequestreview-1858377479) at 2024-02-01 09:54 PM PST -heejung-hong,2024-02-02T06:09:09Z,- heejung-hong submitted pull request review: [6202](https://github.com/hackforla/website/pull/6202#pullrequestreview-1858393836) at 2024-02-01 10:09 PM PST -heejung-hong,2024-02-02T06:30:18Z,- heejung-hong submitted pull request review: [6201](https://github.com/hackforla/website/pull/6201#pullrequestreview-1858430570) at 2024-02-01 10:30 PM PST -heejung-hong,2024-02-08T23:41:24Z,- heejung-hong submitted pull request review: [6263](https://github.com/hackforla/website/pull/6263#pullrequestreview-1871445502) at 2024-02-08 03:41 PM PST -heejung-hong,2024-02-09T00:00:39Z,- heejung-hong submitted pull request review: [6241](https://github.com/hackforla/website/pull/6241#pullrequestreview-1871459633) at 2024-02-08 04:00 PM PST -heejung-hong,2024-02-09T03:28:12Z,- heejung-hong opened pull request: [6270](https://github.com/hackforla/website/pull/6270) at 2024-02-08 07:28 PM PST -heejung-hong,2024-02-11T17:40:26Z,- heejung-hong pull request merged: [6270](https://github.com/hackforla/website/pull/6270#event-11767719708) at 2024-02-11 09:40 AM PST -heejung-hong,2024-02-11T19:38:57Z,- heejung-hong commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1937848629) at 2024-02-11 11:38 AM PST -heejung-hong,2024-02-16T03:15:43Z,- heejung-hong submitted pull request review: [6301](https://github.com/hackforla/website/pull/6301#pullrequestreview-1884247913) at 2024-02-15 07:15 PM PST -heejung-hong,2024-02-16T04:03:29Z,- heejung-hong submitted pull request review: [6300](https://github.com/hackforla/website/pull/6300#pullrequestreview-1884275343) at 2024-02-15 08:03 PM PST -heejung-hong,2024-02-22T20:02:01Z,- heejung-hong submitted pull request review: [6357](https://github.com/hackforla/website/pull/6357#pullrequestreview-1896844769) at 2024-02-22 12:02 PM PST -heejung-hong,2024-02-22T20:44:15Z,- heejung-hong submitted pull request review: [6359](https://github.com/hackforla/website/pull/6359#pullrequestreview-1896910802) at 2024-02-22 12:44 PM PST -heejung-hong,2024-02-22T20:53:23Z,- heejung-hong submitted pull request review: [6358](https://github.com/hackforla/website/pull/6358#pullrequestreview-1896923964) at 2024-02-22 12:53 PM PST -heejung-hong,2024-02-22T22:18:15Z,- heejung-hong submitted pull request review: [6352](https://github.com/hackforla/website/pull/6352#pullrequestreview-1897058184) at 2024-02-22 02:18 PM PST -heejung-hong,2024-02-22T22:31:35Z,- heejung-hong submitted pull request review: [6351](https://github.com/hackforla/website/pull/6351#pullrequestreview-1897092207) at 2024-02-22 02:31 PM PST -heejung-hong,2024-02-22T22:51:56Z,- heejung-hong submitted pull request review: [6328](https://github.com/hackforla/website/pull/6328#pullrequestreview-1897114725) at 2024-02-22 02:51 PM PST -heejung-hong,2024-02-29T23:29:23Z,- heejung-hong submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1910049593) at 2024-02-29 03:29 PM PST -heejung-hong,2024-02-29T23:36:54Z,- heejung-hong submitted pull request review: [6401](https://github.com/hackforla/website/pull/6401#pullrequestreview-1910055866) at 2024-02-29 03:36 PM PST -heejung-hong,2024-03-01T00:30:28Z,- heejung-hong submitted pull request review: [6386](https://github.com/hackforla/website/pull/6386#pullrequestreview-1910098204) at 2024-02-29 04:30 PM PST -heejung-hong,2024-03-02T02:25:01Z,- heejung-hong submitted pull request review: [6386](https://github.com/hackforla/website/pull/6386#pullrequestreview-1912508783) at 2024-03-01 06:25 PM PST -heejung-hong,2024-03-02T02:34:42Z,- heejung-hong commented on issue: [5868](https://github.com/hackforla/website/issues/5868#issuecomment-1974220678) at 2024-03-01 06:34 PM PST -heejung-hong,2024-03-02T02:35:17Z,- heejung-hong closed issue as completed: [5868](https://github.com/hackforla/website/issues/5868#event-11986189379) at 2024-03-01 06:35 PM PST -heejung-hong,2024-03-02T02:42:40Z,- heejung-hong assigned to issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1958318079) at 2024-03-01 06:42 PM PST -heejung-hong,2024-03-02T02:45:55Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1974228412) at 2024-03-01 06:45 PM PST -heejung-hong,2024-03-04T04:42:57Z,- heejung-hong unassigned from issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1974228412) at 2024-03-03 08:42 PM PST -heejung-hong,2024-03-04T04:44:01Z,- heejung-hong assigned to issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1974228412) at 2024-03-03 08:44 PM PST -heejung-hong,2024-03-08T01:39:53Z,- heejung-hong submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1923879207) at 2024-03-07 05:39 PM PST -heejung-hong,2024-03-08T21:00:33Z,- heejung-hong submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1925830907) at 2024-03-08 01:00 PM PST -heejung-hong,2024-03-14T23:24:29Z,- heejung-hong submitted pull request review: [6462](https://github.com/hackforla/website/pull/6462#pullrequestreview-1937884719) at 2024-03-14 04:24 PM PDT -heejung-hong,2024-03-14T23:33:15Z,- heejung-hong submitted pull request review: [6461](https://github.com/hackforla/website/pull/6461#pullrequestreview-1937890901) at 2024-03-14 04:33 PM PDT -heejung-hong,2024-03-15T06:28:19Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-1999021728) at 2024-03-14 11:28 PM PDT -heejung-hong,2024-03-29T03:29:32Z,- heejung-hong submitted pull request review: [6508](https://github.com/hackforla/website/pull/6508#pullrequestreview-1967772528) at 2024-03-28 08:29 PM PDT -heejung-hong,2024-03-29T03:41:45Z,- heejung-hong submitted pull request review: [6521](https://github.com/hackforla/website/pull/6521#pullrequestreview-1967785050) at 2024-03-28 08:41 PM PDT -heejung-hong,2024-03-29T03:51:34Z,- heejung-hong submitted pull request review: [6533](https://github.com/hackforla/website/pull/6533#pullrequestreview-1967790131) at 2024-03-28 08:51 PM PDT -heejung-hong,2024-03-31T18:52:55Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2028872754) at 2024-03-31 11:52 AM PDT -heejung-hong,2024-04-05T00:58:28Z,- heejung-hong submitted pull request review: [6538](https://github.com/hackforla/website/pull/6538#pullrequestreview-1981464313) at 2024-04-04 05:58 PM PDT -heejung-hong,2024-04-05T01:09:37Z,- heejung-hong submitted pull request review: [6540](https://github.com/hackforla/website/pull/6540#pullrequestreview-1981473019) at 2024-04-04 06:09 PM PDT -heejung-hong,2024-04-05T01:47:18Z,- heejung-hong submitted pull request review: [6553](https://github.com/hackforla/website/pull/6553#pullrequestreview-1981496939) at 2024-04-04 06:47 PM PDT -heejung-hong,2024-04-05T01:53:04Z,- heejung-hong submitted pull request review: [6560](https://github.com/hackforla/website/pull/6560#pullrequestreview-1981500887) at 2024-04-04 06:53 PM PDT -heejung-hong,2024-04-05T03:12:31Z,- heejung-hong submitted pull request review: [6564](https://github.com/hackforla/website/pull/6564#pullrequestreview-1981592535) at 2024-04-04 08:12 PM PDT -heejung-hong,2024-04-11T23:27:36Z,- heejung-hong submitted pull request review: [6612](https://github.com/hackforla/website/pull/6612#pullrequestreview-1995629057) at 2024-04-11 04:27 PM PDT -heejung-hong,2024-04-11T23:38:06Z,- heejung-hong submitted pull request review: [6616](https://github.com/hackforla/website/pull/6616#pullrequestreview-1995636205) at 2024-04-11 04:38 PM PDT -heejung-hong,2024-04-12T00:40:02Z,- heejung-hong submitted pull request review: [6618](https://github.com/hackforla/website/pull/6618#pullrequestreview-1995678913) at 2024-04-11 05:40 PM PDT -heejung-hong,2024-04-12T02:46:27Z,- heejung-hong submitted pull request review: [6624](https://github.com/hackforla/website/pull/6624#pullrequestreview-1995777168) at 2024-04-11 07:46 PM PDT -heejung-hong,2024-04-12T03:29:25Z,- heejung-hong submitted pull request review: [6627](https://github.com/hackforla/website/pull/6627#pullrequestreview-1995805926) at 2024-04-11 08:29 PM PDT -heejung-hong,2024-04-12T03:35:46Z,- heejung-hong submitted pull request review: [6629](https://github.com/hackforla/website/pull/6629#pullrequestreview-1995809601) at 2024-04-11 08:35 PM PDT -heejung-hong,2024-04-12T03:45:47Z,- heejung-hong submitted pull request review: [6616](https://github.com/hackforla/website/pull/6616#pullrequestreview-1995815901) at 2024-04-11 08:45 PM PDT -heejung-hong,2024-04-12T04:04:59Z,- heejung-hong submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-1995831432) at 2024-04-11 09:04 PM PDT -heejung-hong,2024-04-15T18:49:23Z,- heejung-hong submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-2001923763) at 2024-04-15 11:49 AM PDT -heejung-hong,2024-04-18T22:35:54Z,- heejung-hong commented on issue: [6353](https://github.com/hackforla/website/issues/6353#issuecomment-2065436514) at 2024-04-18 03:35 PM PDT -hellorachelschwartz,3252,SKILLS ISSUE -hellorachelschwartz,2022-06-15T21:11:10Z,- hellorachelschwartz opened issue: [3252](https://github.com/hackforla/website/issues/3252) at 2022-06-15 02:11 PM PDT -hellorachelschwartz,2022-06-15T21:25:00Z,- hellorachelschwartz assigned to issue: [3252](https://github.com/hackforla/website/issues/3252#issuecomment-1156947605) at 2022-06-15 02:25 PM PDT -Henrymarks1,2019-12-29T03:04:15Z,- Henrymarks1 assigned to issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-28 07:04 PM PST -heylittlehouse,2019-08-14T03:58:26Z,- heylittlehouse opened pull request: [140](https://github.com/hackforla/website/pull/140) at 2019-08-13 08:58 PM PDT -heylittlehouse,2019-08-14T04:32:33Z,- heylittlehouse pull request closed w/o merging: [140](https://github.com/hackforla/website/pull/140#event-2555365874) at 2019-08-13 09:32 PM PDT -heylittlehouse,2019-08-14T04:37:42Z,- heylittlehouse opened pull request: [141](https://github.com/hackforla/website/pull/141) at 2019-08-13 09:37 PM PDT -heylittlehouse,2019-08-14T04:50:55Z,- heylittlehouse opened pull request: [142](https://github.com/hackforla/website/pull/142) at 2019-08-13 09:50 PM PDT -heylittlehouse,2019-08-14T05:04:21Z,- heylittlehouse commented on issue: [137](https://github.com/hackforla/website/issues/137#issuecomment-521102591) at 2019-08-13 10:04 PM PDT -heylittlehouse,2019-08-14T05:05:34Z,- heylittlehouse commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-521102779) at 2019-08-13 10:05 PM PDT -heylittlehouse,2019-08-19T18:52:15Z,- heylittlehouse pull request merged: [142](https://github.com/hackforla/website/pull/142#event-2567323569) at 2019-08-19 11:52 AM PDT -heylittlehouse,2019-08-19T18:55:26Z,- heylittlehouse pull request merged: [141](https://github.com/hackforla/website/pull/141#event-2567332489) at 2019-08-19 11:55 AM PDT -heylittlehouse,2019-08-28T03:03:16Z,- heylittlehouse assigned to issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525493715) at 2019-08-27 08:03 PM PDT -heylittlehouse,2019-08-28T03:21:11Z,- heylittlehouse opened pull request: [146](https://github.com/hackforla/website/pull/146) at 2019-08-27 08:21 PM PDT -heylittlehouse,2019-08-28T03:31:48Z,- heylittlehouse opened pull request: [147](https://github.com/hackforla/website/pull/147) at 2019-08-27 08:31 PM PDT -heylittlehouse,2019-08-28T21:46:00Z,- heylittlehouse closed issue by PR 146: [145](https://github.com/hackforla/website/issues/145#event-2592037182) at 2019-08-28 02:46 PM PDT -heylittlehouse,2019-08-28T21:46:00Z,- heylittlehouse pull request merged: [146](https://github.com/hackforla/website/pull/146#event-2592037186) at 2019-08-28 02:46 PM PDT -heylittlehouse,2019-10-28T22:06:25Z,- heylittlehouse closed issue by PR 146: [145](https://github.com/hackforla/website/issues/145#event-2750217994) at 2019-10-28 03:06 PM PDT -heylittlehouse,2019-12-22T23:36:15Z,- heylittlehouse pull request merged: [147](https://github.com/hackforla/website/pull/147#event-2903495953) at 2019-12-22 03:36 PM PST -hirentimbadiya,2023-07-26T12:11:07Z,- hirentimbadiya commented on issue: [5041](https://github.com/hackforla/website/issues/5041#issuecomment-1651684925) at 2023-07-26 05:11 AM PDT -hirentimbadiya,2023-07-26T12:14:18Z,- hirentimbadiya commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1651689339) at 2023-07-26 05:14 AM PDT -hisergiorojas,2020-11-11T03:32:30Z,- hisergiorojas assigned to issue: [800](https://github.com/hackforla/website/issues/800) at 2020-11-10 07:32 PM PST -hisergiorojas,2020-11-17T02:11:14Z,- hisergiorojas commented on issue: [800](https://github.com/hackforla/website/issues/800#issuecomment-728640081) at 2020-11-16 06:11 PM PST -hisergiorojas,2020-11-17T02:38:23Z,- hisergiorojas opened pull request: [809](https://github.com/hackforla/website/pull/809) at 2020-11-16 06:38 PM PST -hisergiorojas,2020-11-17T02:51:25Z,- hisergiorojas commented on pull request: [809](https://github.com/hackforla/website/pull/809#issuecomment-728652257) at 2020-11-16 06:51 PM PST -hisergiorojas,2020-11-17T02:52:50Z,- hisergiorojas commented on pull request: [809](https://github.com/hackforla/website/pull/809#issuecomment-728652616) at 2020-11-16 06:52 PM PST -hisergiorojas,2020-11-18T04:04:45Z,- hisergiorojas opened pull request: [810](https://github.com/hackforla/website/pull/810) at 2020-11-17 08:04 PM PST -hisergiorojas,2020-11-18T04:07:06Z,- hisergiorojas pull request closed w/o merging: [809](https://github.com/hackforla/website/pull/809#event-4008635334) at 2020-11-17 08:07 PM PST -hisergiorojas,2020-11-18T04:08:24Z,- hisergiorojas commented on pull request: [810](https://github.com/hackforla/website/pull/810#issuecomment-729392024) at 2020-11-17 08:08 PM PST -hisergiorojas,2020-11-18T04:15:17Z,- hisergiorojas pull request merged: [810](https://github.com/hackforla/website/pull/810#event-4008651371) at 2020-11-17 08:15 PM PST -hisergiorojas,2020-12-02T04:30:01Z,- hisergiorojas assigned to issue: [819](https://github.com/hackforla/website/issues/819) at 2020-12-01 08:30 PM PST -hisergiorojas,2020-12-09T03:31:54Z,- hisergiorojas commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-741503817) at 2020-12-08 07:31 PM PST -hisergiorojas,2021-01-06T03:33:51Z,- hisergiorojas unassigned from issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-748641396) at 2021-01-05 07:33 PM PST -hit1st,2020-11-15T18:56:32Z,- hit1st assigned to issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-727618209) at 2020-11-15 10:56 AM PST -hit1st,2020-11-25T09:08:07Z,- hit1st opened pull request: [814](https://github.com/hackforla/website/pull/814) at 2020-11-25 01:08 AM PST -hit1st,2020-11-29T09:58:58Z,- hit1st closed issue by PR 814: [268](https://github.com/hackforla/website/issues/268#event-4048872450) at 2020-11-29 01:58 AM PST -hit1st,2020-11-29T09:58:58Z,- hit1st pull request merged: [814](https://github.com/hackforla/website/pull/814#event-4048872451) at 2020-11-29 01:58 AM PST -hit1st,2020-11-29T20:06:01Z,- hit1st assigned to issue: [793](https://github.com/hackforla/website/issues/793) at 2020-11-29 12:06 PM PST -hit1st,2020-11-29T21:56:52Z,- hit1st opened pull request: [816](https://github.com/hackforla/website/pull/816) at 2020-11-29 01:56 PM PST -hit1st,2020-11-30T02:50:02Z,- hit1st pull request merged: [816](https://github.com/hackforla/website/pull/816#event-4049820568) at 2020-11-29 06:50 PM PST -hit1st,2020-12-01T01:53:20Z,- hit1st submitted pull request review: [818](https://github.com/hackforla/website/pull/818#pullrequestreview-541431215) at 2020-11-30 05:53 PM PST -hit1st,2020-12-02T04:30:30Z,- hit1st assigned to issue: [756](https://github.com/hackforla/website/issues/756) at 2020-12-01 08:30 PM PST -hit1st,2020-12-07T04:20:29Z,- hit1st commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-739653159) at 2020-12-06 08:20 PM PST -hit1st,2020-12-07T04:36:41Z,- hit1st opened pull request: [834](https://github.com/hackforla/website/pull/834) at 2020-12-06 08:36 PM PST -hit1st,2020-12-09T03:29:26Z,- hit1st pull request merged: [834](https://github.com/hackforla/website/pull/834#event-4087849295) at 2020-12-08 07:29 PM PST -hit1st,2020-12-10T06:56:56Z,- hit1st commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-742284156) at 2020-12-09 10:56 PM PST -HiThereImCam,2021-06-06T18:43:29Z,- HiThereImCam assigned to issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-06-06 11:43 AM PDT -HiThereImCam,2021-06-10T18:11:33Z,- HiThereImCam opened pull request: [1705](https://github.com/hackforla/website/pull/1705) at 2021-06-10 11:11 AM PDT -HiThereImCam,2021-06-10T20:14:05Z,- HiThereImCam commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859013449) at 2021-06-10 01:14 PM PDT -HiThereImCam,2021-06-10T20:14:15Z,- HiThereImCam assigned to issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859013449) at 2021-06-10 01:14 PM PDT -HiThereImCam,2021-06-11T01:59:42Z,- HiThereImCam unassigned from issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-859013449) at 2021-06-10 06:59 PM PDT -HiThereImCam,2021-06-11T13:02:34Z,- HiThereImCam commented on pull request: [1705](https://github.com/hackforla/website/pull/1705#issuecomment-859565984) at 2021-06-11 06:02 AM PDT -HiThereImCam,2021-06-11T18:27:27Z,- HiThereImCam commented on pull request: [1705](https://github.com/hackforla/website/pull/1705#issuecomment-859763505) at 2021-06-11 11:27 AM PDT -HiThereImCam,2021-06-12T00:12:49Z,- HiThereImCam pull request merged: [1705](https://github.com/hackforla/website/pull/1705#event-4880547386) at 2021-06-11 05:12 PM PDT -HiThereImCam,2021-06-14T19:14:19Z,- HiThereImCam commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-860928256) at 2021-06-14 12:14 PM PDT -HiThereImCam,2021-07-21T18:37:34Z,- HiThereImCam assigned to issue: [1982](https://github.com/hackforla/website/issues/1982) at 2021-07-21 11:37 AM PDT -HiThereImCam,2021-08-15T16:24:21Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-899077484) at 2021-08-15 09:24 AM PDT -HiThereImCam,2021-08-16T22:05:01Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-899847937) at 2021-08-16 03:05 PM PDT -HiThereImCam,2021-08-18T18:27:26Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-901335053) at 2021-08-18 11:27 AM PDT -HiThereImCam,2021-08-25T15:31:05Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905613746) at 2021-08-25 08:31 AM PDT -HiThereImCam,2021-08-25T15:31:12Z,- HiThereImCam unassigned from issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905613746) at 2021-08-25 08:31 AM PDT -HiThereImCam,2021-08-25T17:19:45Z,- HiThereImCam commented on issue: [1982](https://github.com/hackforla/website/issues/1982#issuecomment-905725391) at 2021-08-25 10:19 AM PDT -hkhaung,7202,SKILLS ISSUE -hkhaung,2024-08-06T02:54:39Z,- hkhaung opened issue: [7202](https://github.com/hackforla/website/issues/7202) at 2024-08-05 07:54 PM PDT -hkhaung,2024-08-06T02:54:52Z,- hkhaung assigned to issue: [7202](https://github.com/hackforla/website/issues/7202) at 2024-08-05 07:54 PM PDT -hkhaung,2024-08-06T03:24:44Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2270309826) at 2024-08-05 08:24 PM PDT -hkhaung,2024-08-06T03:46:06Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2270325569) at 2024-08-05 08:46 PM PDT -hkhaung,2024-08-07T02:47:39Z,- hkhaung assigned to issue: [7171](https://github.com/hackforla/website/issues/7171) at 2024-08-06 07:47 PM PDT -hkhaung,2024-08-07T03:45:46Z,- hkhaung opened pull request: [7235](https://github.com/hackforla/website/pull/7235) at 2024-08-06 08:45 PM PDT -hkhaung,2024-08-07T03:47:43Z,- hkhaung commented on issue: [7171](https://github.com/hackforla/website/issues/7171#issuecomment-2272559747) at 2024-08-06 08:47 PM PDT -hkhaung,2024-08-07T03:56:36Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2272566184) at 2024-08-06 08:56 PM PDT -hkhaung,2024-08-07T04:02:18Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2272570468) at 2024-08-06 09:02 PM PDT -hkhaung,2024-08-07T21:59:46Z,- hkhaung commented on pull request: [7235](https://github.com/hackforla/website/pull/7235#issuecomment-2274421452) at 2024-08-07 02:59 PM PDT -hkhaung,2024-08-08T19:24:41Z,- hkhaung pull request merged: [7235](https://github.com/hackforla/website/pull/7235#event-13811311414) at 2024-08-08 12:24 PM PDT -hkhaung,2024-08-11T17:32:18Z,- hkhaung assigned to issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2276942408) at 2024-08-11 10:32 AM PDT -hkhaung,2024-08-11T17:33:53Z,- hkhaung unassigned from issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2282833231) at 2024-08-11 10:33 AM PDT -hkhaung,2024-08-11T17:36:09Z,- hkhaung assigned to issue: [7186](https://github.com/hackforla/website/issues/7186) at 2024-08-11 10:36 AM PDT -hkhaung,2024-08-11T18:23:37Z,- hkhaung opened pull request: [7269](https://github.com/hackforla/website/pull/7269) at 2024-08-11 11:23 AM PDT -hkhaung,2024-08-11T18:27:08Z,- hkhaung commented on issue: [7186](https://github.com/hackforla/website/issues/7186#issuecomment-2282847469) at 2024-08-11 11:27 AM PDT -hkhaung,2024-08-11T19:16:01Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2282860828) at 2024-08-11 12:16 PM PDT -hkhaung,2024-08-14T02:39:30Z,- hkhaung assigned to issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2173957267) at 2024-08-13 07:39 PM PDT -hkhaung,2024-08-14T02:39:46Z,- hkhaung unassigned from issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2287725460) at 2024-08-13 07:39 PM PDT -hkhaung,2024-08-14T03:30:14Z,- hkhaung submitted pull request review: [7271](https://github.com/hackforla/website/pull/7271#pullrequestreview-2237090905) at 2024-08-13 08:30 PM PDT -hkhaung,2024-08-14T03:31:13Z,- hkhaung commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2287769792) at 2024-08-13 08:31 PM PDT -hkhaung,2024-08-15T02:32:58Z,- hkhaung assigned to issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2287725460) at 2024-08-14 07:32 PM PDT -hkhaung,2024-08-15T02:33:14Z,- hkhaung unassigned from issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2290397697) at 2024-08-14 07:33 PM PDT -hkhaung,2024-08-15T15:07:47Z,- hkhaung pull request merged: [7269](https://github.com/hackforla/website/pull/7269#event-13897370699) at 2024-08-15 08:07 AM PDT -hkhaung,2024-08-25T03:37:52Z,- hkhaung assigned to issue: [7149](https://github.com/hackforla/website/issues/7149) at 2024-08-24 08:37 PM PDT -hkhaung,2024-08-25T04:00:11Z,- hkhaung commented on issue: [7149](https://github.com/hackforla/website/issues/7149#issuecomment-2308644258) at 2024-08-24 09:00 PM PDT -hkhaung,2024-08-25T04:10:04Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2308646840) at 2024-08-24 09:10 PM PDT -hkhaung,2024-08-25T04:18:45Z,- hkhaung commented on issue: [7202](https://github.com/hackforla/website/issues/7202#issuecomment-2308648553) at 2024-08-24 09:18 PM PDT -hkhaung,2024-08-25T04:20:48Z,- hkhaung assigned to issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2301392763) at 2024-08-24 09:20 PM PDT -hkhaung,2024-08-25T04:21:06Z,- hkhaung unassigned from issue: [7091](https://github.com/hackforla/website/issues/7091#issuecomment-2308648976) at 2024-08-24 09:21 PM PDT -hoanhua14,7896,SKILLS ISSUE -hoanhua14,2025-02-05T23:21:17Z,- hoanhua14 opened issue: [7896](https://github.com/hackforla/website/issues/7896) at 2025-02-05 03:21 PM PST -hoanhua14,2025-02-05T23:21:17Z,- hoanhua14 assigned to issue: [7896](https://github.com/hackforla/website/issues/7896) at 2025-02-05 03:21 PM PST -hoanhua14,2025-02-05T23:25:59Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2638262239) at 2025-02-05 03:25 PM PST -hoanhua14,2025-02-12T00:08:52Z,- hoanhua14 assigned to issue: [7766](https://github.com/hackforla/website/issues/7766) at 2025-02-11 04:08 PM PST -hoanhua14,2025-02-13T17:47:04Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2657329813) at 2025-02-13 09:47 AM PST -hoanhua14,2025-02-13T22:30:12Z,- hoanhua14 opened pull request: [7906](https://github.com/hackforla/website/pull/7906) at 2025-02-13 02:30 PM PST -hoanhua14,2025-02-19T21:15:38Z,- hoanhua14 commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2669777448) at 2025-02-19 01:15 PM PST -hoanhua14,2025-02-20T07:49:19Z,- hoanhua14 pull request merged: [7906](https://github.com/hackforla/website/pull/7906#event-16377472864) at 2025-02-19 11:49 PM PST -hoanhua14,2025-02-20T21:38:00Z,- hoanhua14 commented on pull request: [7906](https://github.com/hackforla/website/pull/7906#issuecomment-2672742952) at 2025-02-20 01:38 PM PST -hoanhua14,2025-02-20T22:23:34Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672825697) at 2025-02-20 02:23 PM PST -hoanhua14,2025-02-20T22:36:26Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672847061) at 2025-02-20 02:36 PM PST -hoanhua14,2025-02-20T22:42:36Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672861974) at 2025-02-20 02:42 PM PST -hoanhua14,2025-02-20T22:49:04Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2672879147) at 2025-02-20 02:49 PM PST -hoanhua14,2025-02-20T23:15:49Z,- hoanhua14 assigned to issue: [7775](https://github.com/hackforla/website/issues/7775) at 2025-02-20 03:15 PM PST -hoanhua14,2025-02-20T23:18:52Z,- hoanhua14 commented on issue: [7775](https://github.com/hackforla/website/issues/7775#issuecomment-2672925414) at 2025-02-20 03:18 PM PST -hoanhua14,2025-02-21T02:00:31Z,- hoanhua14 opened pull request: [7931](https://github.com/hackforla/website/pull/7931) at 2025-02-20 06:00 PM PST -hoanhua14,2025-02-26T00:16:19Z,- hoanhua14 commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2683577596) at 2025-02-25 04:16 PM PST -hoanhua14,2025-02-26T00:36:10Z,- hoanhua14 commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2683601794) at 2025-02-25 04:36 PM PST -hoanhua14,2025-02-26T01:03:13Z,- hoanhua14 pull request merged: [7931](https://github.com/hackforla/website/pull/7931#event-16470962730) at 2025-02-25 05:03 PM PST -hoanhua14,2025-02-26T22:53:53Z,- hoanhua14 submitted pull request review: [7947](https://github.com/hackforla/website/pull/7947#pullrequestreview-2646139070) at 2025-02-26 02:53 PM PST -hoanhua14,2025-02-27T00:13:56Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2686491209) at 2025-02-26 04:13 PM PST -hoanhua14,2025-02-27T00:25:47Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2686506134) at 2025-02-26 04:25 PM PST -hoanhua14,2025-03-02T23:43:13Z,- hoanhua14 assigned to issue: [7868](https://github.com/hackforla/website/issues/7868) at 2025-03-02 03:43 PM PST -hoanhua14,2025-03-02T23:47:01Z,- hoanhua14 commented on issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2692973381) at 2025-03-02 03:47 PM PST -hoanhua14,2025-03-03T05:32:10Z,- hoanhua14 opened pull request: [7962](https://github.com/hackforla/website/pull/7962) at 2025-03-02 09:32 PM PST -hoanhua14,2025-03-06T00:33:05Z,- hoanhua14 commented on pull request: [7950](https://github.com/hackforla/website/pull/7950#issuecomment-2702399067) at 2025-03-05 04:33 PM PST -hoanhua14,2025-03-07T00:07:03Z,- hoanhua14 submitted pull request review: [7950](https://github.com/hackforla/website/pull/7950#pullrequestreview-2665892455) at 2025-03-06 04:07 PM PST -hoanhua14,2025-03-07T02:16:00Z,- hoanhua14 pull request closed w/o merging: [7962](https://github.com/hackforla/website/pull/7962#event-16625671128) at 2025-03-06 06:16 PM PST -hoanhua14,2025-03-07T02:16:13Z,- hoanhua14 unassigned from issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2692973381) at 2025-03-06 06:16 PM PST -hoanhua14,2025-04-29T22:40:35Z,- hoanhua14 commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2840392761) at 2025-04-29 03:40 PM PDT -hoanhua14,2025-04-29T22:40:53Z,- hoanhua14 commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2840393176) at 2025-04-29 03:40 PM PDT -hoanhua14,2025-05-01T03:00:56Z,- hoanhua14 commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2843975169) at 2025-04-30 08:00 PM PDT -hoanhua14,2025-05-01T03:24:09Z,- hoanhua14 commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2843996192) at 2025-04-30 08:24 PM PDT -hoanhua14,2025-05-06T01:19:16Z,- hoanhua14 submitted pull request review: [8099](https://github.com/hackforla/website/pull/8099#pullrequestreview-2816525929) at 2025-05-05 06:19 PM PDT -hoanhua14,2025-05-06T01:20:57Z,- hoanhua14 commented on pull request: [8099](https://github.com/hackforla/website/pull/8099#issuecomment-2852920050) at 2025-05-05 06:20 PM PDT -hoanhua14,2025-05-06T01:35:30Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2852969307) at 2025-05-05 06:35 PM PDT -hoanhua14,2025-05-07T01:21:44Z,- hoanhua14 commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2856751133) at 2025-05-06 06:21 PM PDT -hoanhua14,2025-05-07T19:17:52Z,- hoanhua14 commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2859955349) at 2025-05-07 12:17 PM PDT -hoanhua14,2025-05-08T02:44:47Z,- hoanhua14 submitted pull request review: [8118](https://github.com/hackforla/website/pull/8118#pullrequestreview-2823665076) at 2025-05-07 07:44 PM PDT -hoanhua14,2025-05-08T02:46:39Z,- hoanhua14 submitted pull request review: [8092](https://github.com/hackforla/website/pull/8092#pullrequestreview-2823666821) at 2025-05-07 07:46 PM PDT -hoanhua14,2025-05-08T03:01:57Z,- hoanhua14 submitted pull request review: [8116](https://github.com/hackforla/website/pull/8116#pullrequestreview-2823681546) at 2025-05-07 08:01 PM PDT -hoanhua14,2025-05-08T03:09:17Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2861500249) at 2025-05-07 08:09 PM PDT -hoanhua14,2025-05-08T03:12:42Z,- hoanhua14 assigned to issue: [7990](https://github.com/hackforla/website/issues/7990#issuecomment-2726806420) at 2025-05-07 08:12 PM PDT -hoanhua14,2025-05-08T03:12:55Z,- hoanhua14 unassigned from issue: [7990](https://github.com/hackforla/website/issues/7990#issuecomment-2861515428) at 2025-05-07 08:12 PM PDT -hoanhua14,2025-05-09T02:12:02Z,- hoanhua14 submitted pull request review: [8118](https://github.com/hackforla/website/pull/8118#pullrequestreview-2826779866) at 2025-05-08 07:12 PM PDT -hoanhua14,2025-05-09T02:13:06Z,- hoanhua14 commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2864891249) at 2025-05-08 07:13 PM PDT -hoanhua14,2025-05-12T22:37:29Z,- hoanhua14 commented on pull request: [8124](https://github.com/hackforla/website/pull/8124#issuecomment-2874355585) at 2025-05-12 03:37 PM PDT -hoanhua14,2025-05-13T06:01:23Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2875148762) at 2025-05-12 11:01 PM PDT -hoanhua14,2025-05-13T06:02:52Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2875151385) at 2025-05-12 11:02 PM PDT -hoanhua14,2025-05-13T07:20:46Z,- hoanhua14 submitted pull request review: [8124](https://github.com/hackforla/website/pull/8124#pullrequestreview-2835557239) at 2025-05-13 12:20 AM PDT -hoanhua14,2025-05-14T02:12:31Z,- hoanhua14 commented on pull request: [8126](https://github.com/hackforla/website/pull/8126#issuecomment-2878431850) at 2025-05-13 07:12 PM PDT -hoanhua14,2025-05-15T00:02:47Z,- hoanhua14 submitted pull request review: [8126](https://github.com/hackforla/website/pull/8126#pullrequestreview-2841763368) at 2025-05-14 05:02 PM PDT -hoanhua14,2025-05-21T01:14:26Z,- hoanhua14 submitted pull request review: [8124](https://github.com/hackforla/website/pull/8124#pullrequestreview-2855950114) at 2025-05-20 06:14 PM PDT -hoanhua14,2025-05-21T01:15:45Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2896185348) at 2025-05-20 06:15 PM PDT -hoanhua14,2025-05-28T00:34:42Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2914520185) at 2025-05-27 05:34 PM PDT -hoanhua14,2025-05-28T05:00:55Z,- hoanhua14 submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2873579814) at 2025-05-27 10:00 PM PDT -hoanhua14,2025-06-09T20:58:51Z,- hoanhua14 assigned to issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2914691265) at 2025-06-09 01:58 PM PDT -hoanhua14,2025-06-09T20:59:06Z,- hoanhua14 unassigned from issue: [8125](https://github.com/hackforla/website/issues/8125#issuecomment-2914691265) at 2025-06-09 01:59 PM PDT -hoanhua14,2025-06-09T21:02:37Z,- hoanhua14 assigned to issue: [6751](https://github.com/hackforla/website/issues/6751#event-12949702515) at 2025-06-09 02:02 PM PDT -hoanhua14,2025-06-09T21:46:44Z,- hoanhua14 commented on issue: [6751](https://github.com/hackforla/website/issues/6751#issuecomment-2957111130) at 2025-06-09 02:46 PM PDT -hoanhua14,2025-06-09T23:11:58Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2957251359) at 2025-06-09 04:11 PM PDT -hoanhua14,2025-06-11T00:45:37Z,- hoanhua14 assigned to issue: [7609](https://github.com/hackforla/website/issues/7609) at 2025-06-10 05:45 PM PDT -hoanhua14,2025-06-11T00:45:49Z,- hoanhua14 unassigned from issue: [7609](https://github.com/hackforla/website/issues/7609) at 2025-06-10 05:45 PM PDT -hoanhua14,2025-06-11T23:56:56Z,- hoanhua14 submitted pull request review: [8177](https://github.com/hackforla/website/pull/8177#pullrequestreview-2919000461) at 2025-06-11 04:56 PM PDT -hoanhua14,2025-06-12T21:55:23Z,- hoanhua14 commented on issue: [7896](https://github.com/hackforla/website/issues/7896#issuecomment-2968262395) at 2025-06-12 02:55 PM PDT -homeroochoa47,5078,SKILLS ISSUE -homeroochoa47,2023-07-26T03:04:47Z,- homeroochoa47 opened issue: [5078](https://github.com/hackforla/website/issues/5078) at 2023-07-25 08:04 PM PDT -homeroochoa47,2023-07-26T03:39:47Z,- homeroochoa47 assigned to issue: [5078](https://github.com/hackforla/website/issues/5078) at 2023-07-25 08:39 PM PDT -homeroochoa47,2023-08-11T18:39:00Z,- homeroochoa47 commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1675211179) at 2023-08-11 11:39 AM PDT -homeroochoa47,2023-08-16T00:52:36Z,- homeroochoa47 commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1679812727) at 2023-08-15 05:52 PM PDT -homeroochoa47,2023-08-16T18:15:09Z,- homeroochoa47 submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1581181327) at 2023-08-16 11:15 AM PDT -homeroochoa47,2023-08-16T18:29:33Z,- homeroochoa47 assigned to issue: [5201](https://github.com/hackforla/website/issues/5201#issuecomment-1677926943) at 2023-08-16 11:29 AM PDT -homeroochoa47,2023-08-16T18:39:24Z,- homeroochoa47 commented on issue: [5201](https://github.com/hackforla/website/issues/5201#issuecomment-1681101164) at 2023-08-16 11:39 AM PDT -homeroochoa47,2023-08-16T23:26:42Z,- homeroochoa47 opened pull request: [5240](https://github.com/hackforla/website/pull/5240) at 2023-08-16 04:26 PM PDT -homeroochoa47,2023-08-16T23:37:37Z,- homeroochoa47 commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1681399695) at 2023-08-16 04:37 PM PDT -homeroochoa47,2023-08-19T23:48:35Z,- homeroochoa47 pull request merged: [5240](https://github.com/hackforla/website/pull/5240#event-10137191538) at 2023-08-19 04:48 PM PDT -homeroochoa47,2023-08-23T05:08:55Z,- homeroochoa47 commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1689289623) at 2023-08-22 10:08 PM PDT -homeroochoa47,2023-08-23T23:47:44Z,- homeroochoa47 submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1592557387) at 2023-08-23 04:47 PM PDT -homeroochoa47,2023-08-27T19:04:12Z,- homeroochoa47 assigned to issue: [5287](https://github.com/hackforla/website/issues/5287#issuecomment-1689199529) at 2023-08-27 12:04 PM PDT -homeroochoa47,2023-08-27T19:06:10Z,- homeroochoa47 commented on issue: [5287](https://github.com/hackforla/website/issues/5287#issuecomment-1694738497) at 2023-08-27 12:06 PM PDT -homeroochoa47,2023-08-29T21:15:59Z,- homeroochoa47 opened pull request: [5344](https://github.com/hackforla/website/pull/5344) at 2023-08-29 02:15 PM PDT -homeroochoa47,2023-08-29T21:17:04Z,- homeroochoa47 commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698157133) at 2023-08-29 02:17 PM PDT -homeroochoa47,2023-09-01T16:14:39Z,- homeroochoa47 pull request merged: [5344](https://github.com/hackforla/website/pull/5344#event-10258995174) at 2023-09-01 09:14 AM PDT -homeroochoa47,2023-09-03T22:06:32Z,- homeroochoa47 commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1704417502) at 2023-09-03 03:06 PM PDT -homeroochoa47,2023-09-04T19:05:29Z,- homeroochoa47 submitted pull request review: [5423](https://github.com/hackforla/website/pull/5423#pullrequestreview-1609898488) at 2023-09-04 12:05 PM PDT -homeroochoa47,2023-09-12T23:59:25Z,- homeroochoa47 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1623424898) at 2023-09-12 04:59 PM PDT -homeroochoa47,2023-09-14T22:00:40Z,- homeroochoa47 assigned to issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1717123435) at 2023-09-14 03:00 PM PDT -homeroochoa47,2023-09-14T22:02:01Z,- homeroochoa47 commented on issue: [5516](https://github.com/hackforla/website/issues/5516#issuecomment-1720212215) at 2023-09-14 03:02 PM PDT -homeroochoa47,2023-09-17T15:14:19Z,- homeroochoa47 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1630093239) at 2023-09-17 08:14 AM PDT -homeroochoa47,2023-09-19T22:29:06Z,- homeroochoa47 commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1726625576) at 2023-09-19 03:29 PM PDT -homeroochoa47,2023-09-21T04:50:15Z,- homeroochoa47 submitted pull request review: [5554](https://github.com/hackforla/website/pull/5554#pullrequestreview-1636880197) at 2023-09-20 09:50 PM PDT -homeroochoa47,2023-09-21T19:57:46Z,- homeroochoa47 submitted pull request review: [5554](https://github.com/hackforla/website/pull/5554#pullrequestreview-1638605364) at 2023-09-21 12:57 PM PDT -homeroochoa47,2023-09-25T23:36:18Z,- homeroochoa47 commented on pull request: [5583](https://github.com/hackforla/website/pull/5583#issuecomment-1734608650) at 2023-09-25 04:36 PM PDT -howdyjessie,6253,SKILLS ISSUE -howdyjessie,2024-02-06T04:18:18Z,- howdyjessie opened issue: [6253](https://github.com/hackforla/website/issues/6253) at 2024-02-05 08:18 PM PST -howdyjessie,2024-02-06T04:18:21Z,- howdyjessie assigned to issue: [6253](https://github.com/hackforla/website/issues/6253) at 2024-02-05 08:18 PM PST -howdyjessie,2024-02-16T23:49:48Z,- howdyjessie commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1949495937) at 2024-02-16 03:49 PM PST -howdyjessie,2024-02-19T23:05:39Z,- howdyjessie assigned to issue: [6294](https://github.com/hackforla/website/issues/6294) at 2024-02-19 03:05 PM PST -howdyjessie,2024-02-20T00:19:56Z,- howdyjessie commented on issue: [6294](https://github.com/hackforla/website/issues/6294#issuecomment-1953305665) at 2024-02-19 04:19 PM PST -howdyjessie,2024-02-20T01:57:12Z,- howdyjessie opened pull request: [6322](https://github.com/hackforla/website/pull/6322) at 2024-02-19 05:57 PM PST -howdyjessie,2024-02-20T02:08:13Z,- howdyjessie commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-1953374654) at 2024-02-19 06:08 PM PST -howdyjessie,2024-02-21T07:25:28Z,- howdyjessie commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1956038569) at 2024-02-20 11:25 PM PST -howdyjessie,2024-02-21T18:41:29Z,- howdyjessie pull request merged: [6322](https://github.com/hackforla/website/pull/6322#event-11880638342) at 2024-02-21 10:41 AM PST -howdyjessie,2024-02-23T03:46:15Z,- howdyjessie commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1960694475) at 2024-02-22 07:46 PM PST -howdyjessie,2024-04-18T01:50:16Z,- howdyjessie commented on issue: [6253](https://github.com/hackforla/website/issues/6253#issuecomment-2062848826) at 2024-04-17 06:50 PM PDT -howdyjessie,2024-04-18T01:50:16Z,- howdyjessie closed issue as completed: [6253](https://github.com/hackforla/website/issues/6253#event-12516591926) at 2024-04-17 06:50 PM PDT -Hritik1503,2023-05-03T18:07:03Z,- Hritik1503 commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-1533488711) at 2023-05-03 11:07 AM PDT -Hritik1503,2023-05-03T18:07:43Z,- Hritik1503 commented on issue: [4592](https://github.com/hackforla/website/issues/4592#issuecomment-1533489391) at 2023-05-03 11:07 AM PDT -Hritik1503,2023-05-03T18:08:15Z,- Hritik1503 commented on issue: [4591](https://github.com/hackforla/website/issues/4591#issuecomment-1533489983) at 2023-05-03 11:08 AM PDT -Hritik1503,2023-05-03T18:08:43Z,- Hritik1503 commented on issue: [4590](https://github.com/hackforla/website/issues/4590#issuecomment-1533490465) at 2023-05-03 11:08 AM PDT -Hritik1503,2023-05-03T18:09:07Z,- Hritik1503 commented on issue: [4589](https://github.com/hackforla/website/issues/4589#issuecomment-1533490879) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:09:26Z,- Hritik1503 commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1533491257) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:09:43Z,- Hritik1503 commented on issue: [4585](https://github.com/hackforla/website/issues/4585#issuecomment-1533491550) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:09:58Z,- Hritik1503 commented on issue: [4579](https://github.com/hackforla/website/issues/4579#issuecomment-1533491825) at 2023-05-03 11:09 AM PDT -Hritik1503,2023-05-03T18:10:15Z,- Hritik1503 commented on issue: [4578](https://github.com/hackforla/website/issues/4578#issuecomment-1533492134) at 2023-05-03 11:10 AM PDT -Hritik1503,2023-05-03T18:10:35Z,- Hritik1503 commented on issue: [4577](https://github.com/hackforla/website/issues/4577#issuecomment-1533492512) at 2023-05-03 11:10 AM PDT -Hritik1503,2023-05-03T18:10:58Z,- Hritik1503 commented on issue: [4567](https://github.com/hackforla/website/issues/4567#issuecomment-1533492955) at 2023-05-03 11:10 AM PDT -Hritik1503,2023-05-03T18:11:20Z,- Hritik1503 commented on issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1533493390) at 2023-05-03 11:11 AM PDT -Hritik1503,2023-05-03T18:11:40Z,- Hritik1503 commented on issue: [4562](https://github.com/hackforla/website/issues/4562#issuecomment-1533493735) at 2023-05-03 11:11 AM PDT -Hritik1503,2023-05-03T18:11:58Z,- Hritik1503 commented on issue: [4559](https://github.com/hackforla/website/issues/4559#issuecomment-1533494090) at 2023-05-03 11:11 AM PDT -Hritik1503,2023-05-03T18:12:28Z,- Hritik1503 commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1533494584) at 2023-05-03 11:12 AM PDT -Hritik1503,2023-05-04T15:34:04Z,- Hritik1503 commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1534993384) at 2023-05-04 08:34 AM PDT -Hritik1503,2023-05-04T15:35:00Z,- Hritik1503 commented on issue: [4544](https://github.com/hackforla/website/issues/4544#issuecomment-1534994729) at 2023-05-04 08:35 AM PDT -Hsan2022,6532,SKILLS ISSUE -Hsan2022,2024-03-27T03:55:03Z,- Hsan2022 opened issue: [6532](https://github.com/hackforla/website/issues/6532) at 2024-03-26 08:55 PM PDT -Hsan2022,2024-03-27T03:58:07Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2021878619) at 2024-03-26 08:58 PM PDT -Hsan2022,2024-03-27T04:16:13Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2021893309) at 2024-03-26 09:16 PM PDT -Hsan2022,2024-03-27T04:24:55Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2021901861) at 2024-03-26 09:24 PM PDT -Hsan2022,2024-04-04T22:46:48Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:46 PM PDT -Hsan2022,2024-04-04T22:54:01Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:54:27Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:54:35Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:54:55Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:54 PM PDT -Hsan2022,2024-04-04T22:55:13Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:55 PM PDT -Hsan2022,2024-04-04T22:55:16Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-04 03:55 PM PDT -Hsan2022,2024-04-07T03:45:33Z,- Hsan2022 unassigned from issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-06 08:45 PM PDT -Hsan2022,2024-04-07T03:45:39Z,- Hsan2022 assigned to issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2035493182) at 2024-04-06 08:45 PM PDT -Hsan2022,2024-07-01T16:37:58Z,- Hsan2022 commented on issue: [6532](https://github.com/hackforla/website/issues/6532#issuecomment-2200598709) at 2024-07-01 09:37 AM PDT -hussainmudassir,7209,SKILLS ISSUE -hussainmudassir,2024-08-06T03:15:49Z,- hussainmudassir opened issue: [7209](https://github.com/hackforla/website/issues/7209) at 2024-08-05 08:15 PM PDT -hussainmudassir,2024-08-06T03:15:49Z,- hussainmudassir assigned to issue: [7209](https://github.com/hackforla/website/issues/7209) at 2024-08-05 08:15 PM PDT -hussainmudassir,2024-08-20T00:52:13Z,- hussainmudassir commented on pull request: [7258](https://github.com/hackforla/website/pull/7258#issuecomment-2297762887) at 2024-08-19 05:52 PM PDT -hussainmudassir,2024-08-20T00:56:25Z,- hussainmudassir submitted pull request review: [7258](https://github.com/hackforla/website/pull/7258#pullrequestreview-2246778937) at 2024-08-19 05:56 PM PDT -HyMike,8067,SKILLS ISSUE -HyMike,2025-04-16T03:08:19Z,- HyMike opened issue: [8067](https://github.com/hackforla/website/issues/8067) at 2025-04-15 08:08 PM PDT -HyMike,2025-04-16T03:08:35Z,- HyMike assigned to issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2808110867) at 2025-04-15 08:08 PM PDT -HyMike,2025-04-16T04:40:44Z,- HyMike commented on issue: [8067](https://github.com/hackforla/website/issues/8067#issuecomment-2808270657) at 2025-04-15 09:40 PM PDT -HyMike,2025-04-17T04:31:14Z,- HyMike assigned to issue: [7581](https://github.com/hackforla/website/issues/7581) at 2025-04-16 09:31 PM PDT -HyMike,2025-04-17T16:08:12Z,- HyMike opened pull request: [8069](https://github.com/hackforla/website/pull/8069) at 2025-04-17 09:08 AM PDT -HyMike,2025-04-17T16:44:03Z,- HyMike commented on issue: [7581](https://github.com/hackforla/website/issues/7581#issuecomment-2813524476) at 2025-04-17 09:44 AM PDT -HyMike,2025-04-25T01:51:18Z,- HyMike pull request merged: [8069](https://github.com/hackforla/website/pull/8069#event-17399253311) at 2025-04-24 06:51 PM PDT -HyMike,2025-04-25T03:44:08Z,- HyMike assigned to issue: [7734](https://github.com/hackforla/website/issues/7734) at 2025-04-24 08:44 PM PDT -HyMike,2025-04-25T03:56:47Z,- HyMike commented on issue: [7734](https://github.com/hackforla/website/issues/7734#issuecomment-2829317032) at 2025-04-24 08:56 PM PDT -HyMike,2025-04-25T04:37:11Z,- HyMike opened pull request: [8088](https://github.com/hackforla/website/pull/8088) at 2025-04-24 09:37 PM PDT -HyMike,2025-04-27T05:41:06Z,- HyMike commented on pull request: [8072](https://github.com/hackforla/website/pull/8072#issuecomment-2833177772) at 2025-04-26 10:41 PM PDT -HyMike,2025-04-27T05:59:35Z,- HyMike submitted pull request review: [8072](https://github.com/hackforla/website/pull/8072#pullrequestreview-2797344011) at 2025-04-26 10:59 PM PDT -HyMike,2025-04-28T18:04:54Z,- HyMike pull request merged: [8088](https://github.com/hackforla/website/pull/8088#event-17439422099) at 2025-04-28 11:04 AM PDT -hziegel,8097,SKILLS ISSUE -hziegel,2025-04-29T03:02:41Z,- hziegel opened issue: [8097](https://github.com/hackforla/website/issues/8097) at 2025-04-28 08:02 PM PDT -hziegel,2025-04-29T03:02:55Z,- hziegel assigned to issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2837313862) at 2025-04-28 08:02 PM PDT -hziegel,2025-05-06T03:36:32Z,- hziegel assigned to issue: [8113](https://github.com/hackforla/website/issues/8113) at 2025-05-05 08:36 PM PDT -hziegel,2025-05-06T03:36:46Z,- hziegel unassigned from issue: [8113](https://github.com/hackforla/website/issues/8113) at 2025-05-05 08:36 PM PDT -hziegel,2025-05-06T03:38:40Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2853183572) at 2025-05-05 08:38 PM PDT -hziegel,2025-05-06T03:40:39Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2853185280) at 2025-05-05 08:40 PM PDT -hziegel,2025-05-06T03:44:32Z,- hziegel assigned to issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2692152404) at 2025-05-05 08:44 PM PDT -hziegel,2025-05-06T04:37:46Z,- hziegel commented on issue: [7922](https://github.com/hackforla/website/issues/7922#issuecomment-2853254835) at 2025-05-05 09:37 PM PDT -hziegel,2025-05-06T04:39:11Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2853256417) at 2025-05-05 09:39 PM PDT -hziegel,2025-05-06T22:58:59Z,- hziegel opened pull request: [8118](https://github.com/hackforla/website/pull/8118) at 2025-05-06 03:58 PM PDT -hziegel,2025-05-08T18:35:40Z,- hziegel commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2863944330) at 2025-05-08 11:35 AM PDT -hziegel,2025-05-11T16:27:13Z,- hziegel pull request merged: [8118](https://github.com/hackforla/website/pull/8118#event-17606049267) at 2025-05-11 09:27 AM PDT -hziegel,2025-05-11T16:48:02Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2869974946) at 2025-05-11 09:48 AM PDT -hziegel,2025-05-13T21:29:46Z,- hziegel assigned to issue: [7943](https://github.com/hackforla/website/issues/7943) at 2025-05-13 02:29 PM PDT -hziegel,2025-05-13T21:32:20Z,- hziegel commented on issue: [7943](https://github.com/hackforla/website/issues/7943#issuecomment-2878003704) at 2025-05-13 02:32 PM PDT -hziegel,2025-05-13T21:57:42Z,- hziegel opened pull request: [8126](https://github.com/hackforla/website/pull/8126) at 2025-05-13 02:57 PM PDT -hziegel,2025-05-14T02:27:31Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2878450901) at 2025-05-13 07:27 PM PDT -hziegel,2025-05-19T02:58:35Z,- hziegel pull request merged: [8126](https://github.com/hackforla/website/pull/8126#event-17706200259) at 2025-05-18 07:58 PM PDT -hziegel,2025-05-19T21:44:35Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2892364517) at 2025-05-19 02:44 PM PDT -hziegel,2025-05-19T22:14:11Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2892408068) at 2025-05-19 03:14 PM PDT -hziegel,2025-06-15T18:33:50Z,- hziegel commented on issue: [8097](https://github.com/hackforla/website/issues/8097#issuecomment-2974530111) at 2025-06-15 11:33 AM PDT -IAgbaje,2020-12-08T21:27:47Z,- IAgbaje assigned to issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-693773011) at 2020-12-08 01:27 PM PST -IAgbaje,2020-12-08T21:51:26Z,- IAgbaje assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -IAgbaje,2020-12-08T21:54:12Z,- IAgbaje unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -IAgbaje,2020-12-08T21:54:35Z,- IAgbaje assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -IAgbaje,2020-12-13T20:27:21Z,- IAgbaje commented on issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-744063682) at 2020-12-13 12:27 PM PST -IAgbaje,2020-12-15T21:21:59Z,- IAgbaje assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:21 PM PST -IAgbaje,2020-12-15T21:34:27Z,- IAgbaje commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745581749) at 2020-12-15 01:34 PM PST -IAgbaje,2020-12-20T20:48:40Z,- IAgbaje unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -IAgbaje,2020-12-20T20:48:40Z,- IAgbaje unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -IAgbaje,2020-12-22T21:21:46Z,- IAgbaje commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-749781819) at 2020-12-22 01:21 PM PST -IAgbaje,2020-12-24T18:20:57Z,- IAgbaje opened issue: [869](https://github.com/hackforla/website/issues/869) at 2020-12-24 10:20 AM PST -IAgbaje,2020-12-29T21:59:30Z,- IAgbaje assigned to issue: [949](https://github.com/hackforla/website/issues/949) at 2020-12-29 01:59 PM PST -IAgbaje,2020-12-29T22:01:17Z,- IAgbaje assigned to issue: [954](https://github.com/hackforla/website/issues/954) at 2020-12-29 02:01 PM PST -IAgbaje,2020-12-29T22:11:38Z,- IAgbaje assigned to issue: [889](https://github.com/hackforla/website/issues/889) at 2020-12-29 02:11 PM PST -IAgbaje,2021-01-10T20:38:35Z,- IAgbaje unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -IAgbaje,2021-01-10T21:31:32Z,- IAgbaje unassigned from issue: [602](https://github.com/hackforla/website/issues/602#issuecomment-748652850) at 2021-01-10 01:31 PM PST -IAgbaje,2021-01-11T16:08:42Z,- IAgbaje unassigned from issue: [889](https://github.com/hackforla/website/issues/889) at 2021-01-11 08:08 AM PST -IAgbaje,2021-01-11T16:10:44Z,- IAgbaje unassigned from issue: [949](https://github.com/hackforla/website/issues/949) at 2021-01-11 08:10 AM PST -IAgbaje,2021-01-11T16:18:49Z,- IAgbaje unassigned from issue: [954](https://github.com/hackforla/website/issues/954) at 2021-01-11 08:18 AM PST -IAgbaje,2021-02-03T16:58:17Z,- IAgbaje assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-02-03 08:58 AM PST -IAgbaje,2021-02-10T19:14:41Z,- IAgbaje assigned to issue: [916](https://github.com/hackforla/website/issues/916) at 2021-02-10 11:14 AM PST -IAgbaje,2021-02-14T18:47:57Z,- IAgbaje assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -IAgbaje,2021-02-16T18:33:02Z,- IAgbaje opened issue: [1057](https://github.com/hackforla/website/issues/1057) at 2021-02-16 10:33 AM PST -IAgbaje,2021-02-16T18:48:51Z,- IAgbaje commented on issue: [701](https://github.com/hackforla/website/issues/701#issuecomment-780044250) at 2021-02-16 10:48 AM PST -IAgbaje,2021-02-16T18:49:22Z,- IAgbaje commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-780044558) at 2021-02-16 10:49 AM PST -IAgbaje,2021-02-16T18:51:21Z,- IAgbaje commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-780045608) at 2021-02-16 10:51 AM PST -IAgbaje,2021-02-18T05:54:57Z,- IAgbaje assigned to issue: [1074](https://github.com/hackforla/website/issues/1074) at 2021-02-17 09:54 PM PST -IAgbaje,2021-03-10T19:34:37Z,- IAgbaje unassigned from issue: [916](https://github.com/hackforla/website/issues/916) at 2021-03-10 11:34 AM PST -IAgbaje,2021-03-10T19:54:32Z,- IAgbaje unassigned from issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-795974096) at 2021-03-10 11:54 AM PST -IAgbaje,2021-03-31T18:31:23Z,- IAgbaje unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-806018314) at 2021-03-31 11:31 AM PDT -iamsadat,2023-08-06T17:55:10Z,- iamsadat commented on issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1666933084) at 2023-08-06 10:55 AM PDT -iamtreetop,2021-05-14T03:43:34Z,- iamtreetop assigned to issue: [1542](https://github.com/hackforla/website/issues/1542) at 2021-05-13 08:43 PM PDT -iamtreetop,2021-05-18T18:39:01Z,- iamtreetop opened pull request: [1589](https://github.com/hackforla/website/pull/1589) at 2021-05-18 11:39 AM PDT -iamtreetop,2021-05-20T18:11:18Z,- iamtreetop pull request merged: [1589](https://github.com/hackforla/website/pull/1589#event-4775126720) at 2021-05-20 11:11 AM PDT -iamtreetop,2021-05-23T18:33:42Z,- iamtreetop assigned to issue: [1615](https://github.com/hackforla/website/issues/1615) at 2021-05-23 11:33 AM PDT -iamtreetop,2021-05-24T21:24:40Z,- iamtreetop opened pull request: [1627](https://github.com/hackforla/website/pull/1627) at 2021-05-24 02:24 PM PDT -iamtreetop,2021-05-29T18:40:19Z,- iamtreetop pull request merged: [1627](https://github.com/hackforla/website/pull/1627#event-4816330697) at 2021-05-29 11:40 AM PDT diff --git a/github-actions/activity-trigger/member_activity_history_bot_5.csv b/github-actions/activity-trigger/member_activity_history_bot_5.csv deleted file mode 100644 index 6c27c72c6d..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_5.csv +++ /dev/null @@ -1,965 +0,0 @@ -username,datetime,message -Jmmcclo2023,4993,SKILLS ISSUE -Jmmcclo2023,2023-07-18T02:23:25Z,- Jmmcclo2023 opened issue: [4993](https://github.com/hackforla/website/issues/4993) at 2023-07-17 07:23 PM PDT -Jmmcclo2023,2023-07-26T02:59:27Z,- Jmmcclo2023 assigned to issue: [4808](https://github.com/hackforla/website/issues/4808) at 2023-07-25 07:59 PM PDT -Jmmcclo2023,2023-07-26T03:32:40Z,- Jmmcclo2023 commented on issue: [4993](https://github.com/hackforla/website/issues/4993#issuecomment-1650924973) at 2023-07-25 08:32 PM PDT -Jmmcclo2023,2023-07-27T20:28:28Z,- Jmmcclo2023 commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1654524332) at 2023-07-27 01:28 PM PDT -Jmmcclo2023,2023-07-31T21:08:45Z,- Jmmcclo2023 commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1659164697) at 2023-07-31 02:08 PM PDT -Jmmcclo2023,2023-08-05T00:36:29Z,- Jmmcclo2023 opened pull request: [5144](https://github.com/hackforla/website/pull/5144) at 2023-08-04 05:36 PM PDT -Jmmcclo2023,2023-08-06T11:38:54Z,- Jmmcclo2023 pull request merged: [5144](https://github.com/hackforla/website/pull/5144#event-10017148601) at 2023-08-06 04:38 AM PDT -Jmmcclo2023,2023-08-16T19:40:14Z,- Jmmcclo2023 closed issue as completed: [4993](https://github.com/hackforla/website/issues/4993#event-10112110513) at 2023-08-16 12:40 PM PDT -Jmmcclo2023,2023-08-20T19:43:48Z,- Jmmcclo2023 assigned to issue: [5199](https://github.com/hackforla/website/issues/5199#event-10111899727) at 2023-08-20 12:43 PM PDT -Jmmcclo2023,2023-08-21T03:10:55Z,- Jmmcclo2023 commented on issue: [5199](https://github.com/hackforla/website/issues/5199#issuecomment-1685559209) at 2023-08-20 08:10 PM PDT -Jmmcclo2023,2023-08-22T16:36:12Z,- Jmmcclo2023 opened pull request: [5283](https://github.com/hackforla/website/pull/5283) at 2023-08-22 09:36 AM PDT -Jmmcclo2023,2023-08-22T23:36:47Z,- Jmmcclo2023 commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1689058198) at 2023-08-22 04:36 PM PDT -Jmmcclo2023,2023-08-27T02:41:22Z,- Jmmcclo2023 pull request merged: [5283](https://github.com/hackforla/website/pull/5283#event-10201023588) at 2023-08-26 07:41 PM PDT -Jmmcclo2023,2023-08-28T19:54:10Z,- Jmmcclo2023 commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1696308869) at 2023-08-28 12:54 PM PDT -Jmmcclo2023,2023-08-28T22:21:54Z,- Jmmcclo2023 submitted pull request review: [5327](https://github.com/hackforla/website/pull/5327#pullrequestreview-1599207604) at 2023-08-28 03:21 PM PDT -Jmmcclo2023,2023-08-30T19:55:13Z,- Jmmcclo2023 commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1699752357) at 2023-08-30 12:55 PM PDT -Jmmcclo2023,2023-08-30T20:16:46Z,- Jmmcclo2023 submitted pull request review: [5354](https://github.com/hackforla/website/pull/5354#pullrequestreview-1603428968) at 2023-08-30 01:16 PM PDT -Jmmcclo2023,2023-09-14T18:33:55Z,- Jmmcclo2023 assigned to issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1717118867) at 2023-09-14 11:33 AM PDT -Jmmcclo2023,2023-09-14T18:44:38Z,- Jmmcclo2023 commented on issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1719963203) at 2023-09-14 11:44 AM PDT -Jmmcclo2023,2023-10-01T12:26:58Z,- Jmmcclo2023 assigned to issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741847713) at 2023-10-01 05:26 AM PDT -Jmmcclo2023,2023-10-01T12:28:56Z,- Jmmcclo2023 unassigned from issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1742065576) at 2023-10-01 05:28 AM PDT -Jmmcclo2023,2024-02-14T06:37:01Z,- Jmmcclo2023 assigned to issue: [4993](https://github.com/hackforla/website/issues/4993#event-10112110513) at 2024-02-13 10:37 PM PST -jojochen25,3820,SKILLS ISSUE -jojochen25,2023-01-15T22:05:07Z,- jojochen25 opened issue: [3820](https://github.com/hackforla/website/issues/3820) at 2023-01-15 02:05 PM PST -jojochen25,2023-01-15T22:05:08Z,- jojochen25 assigned to issue: [3820](https://github.com/hackforla/website/issues/3820) at 2023-01-15 02:05 PM PST -jojochen25,2023-02-26T09:00:02Z,- jojochen25 commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1445302638) at 2023-02-26 01:00 AM PST -jonnyoe,6329,SKILLS ISSUE -jonnyoe,2024-02-16T04:00:36Z,- jonnyoe assigned to issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1837064900) at 2024-02-15 08:00 PM PST -jonnyoe,2024-02-16T04:26:55Z,- jonnyoe commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1947737966) at 2024-02-15 08:26 PM PST -jonnyoe,2024-02-16T20:08:53Z,- jonnyoe commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1949258541) at 2024-02-16 12:08 PM PST -jonnyoe,2024-02-17T06:05:05Z,- jonnyoe unassigned from issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1949258541) at 2024-02-16 10:05 PM PST -jonnyoe,2024-02-21T03:22:36Z,- jonnyoe opened issue: [6329](https://github.com/hackforla/website/issues/6329) at 2024-02-20 07:22 PM PST -jonnyoe,2024-02-21T03:22:40Z,- jonnyoe assigned to issue: [6329](https://github.com/hackforla/website/issues/6329) at 2024-02-20 07:22 PM PST -jonnyoe,2024-02-21T03:23:54Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1955810485) at 2024-02-20 07:23 PM PST -jonnyoe,2024-02-28T05:30:34Z,- jonnyoe assigned to issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1929040328) at 2024-02-27 09:30 PM PST -jonnyoe,2024-02-28T05:36:19Z,- jonnyoe commented on issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1968269061) at 2024-02-27 09:36 PM PST -jonnyoe,2024-03-02T07:42:51Z,- jonnyoe opened pull request: [6408](https://github.com/hackforla/website/pull/6408) at 2024-03-01 11:42 PM PST -jonnyoe,2024-03-03T02:51:56Z,- jonnyoe commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1975001201) at 2024-03-02 06:51 PM PST -jonnyoe,2024-03-04T05:47:14Z,- jonnyoe opened pull request: [6414](https://github.com/hackforla/website/pull/6414) at 2024-03-03 09:47 PM PST -jonnyoe,2024-03-04T10:08:12Z,- jonnyoe pull request closed w/o merging: [6408](https://github.com/hackforla/website/pull/6408#event-11996493817) at 2024-03-04 02:08 AM PST -jonnyoe,2024-03-04T21:47:45Z,- jonnyoe pull request merged: [6414](https://github.com/hackforla/website/pull/6414#event-12005226525) at 2024-03-04 01:47 PM PST -jonnyoe,2024-03-04T22:52:09Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1977607864) at 2024-03-04 02:52 PM PST -jonnyoe,2024-03-19T05:12:48Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2005778184) at 2024-03-18 10:12 PM PDT -jonnyoe,2024-03-19T05:12:48Z,- jonnyoe closed issue as completed: [6329](https://github.com/hackforla/website/issues/6329#event-12163684779) at 2024-03-18 10:12 PM PDT -jonnyoe,2024-03-20T05:38:19Z,- jonnyoe commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008690287) at 2024-03-19 10:38 PM PDT -jonnyoe,2024-03-20T05:42:28Z,- jonnyoe commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008693493) at 2024-03-19 10:42 PM PDT -jonnyoe,2024-03-20T05:44:12Z,- jonnyoe submitted pull request review: [6477](https://github.com/hackforla/website/pull/6477#pullrequestreview-1947979317) at 2024-03-19 10:44 PM PDT -jonnyoe,2024-03-22T02:55:25Z,- jonnyoe assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-21 07:55 PM PDT -jonnyoe,2024-03-25T21:42:33Z,- jonnyoe unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-25 02:42 PM PDT -jonnyoe,2024-03-25T21:42:40Z,- jonnyoe assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-25 02:42 PM PDT -jonnyoe,2024-03-26T01:07:18Z,- jonnyoe unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-2018969992) at 2024-03-25 06:07 PM PDT -jonnyoe,2024-03-27T04:11:00Z,- jonnyoe assigned to issue: [6236](https://github.com/hackforla/website/issues/6236) at 2024-03-26 09:11 PM PDT -jonnyoe,2024-03-27T04:20:34Z,- jonnyoe commented on issue: [6236](https://github.com/hackforla/website/issues/6236#issuecomment-2021897437) at 2024-03-26 09:20 PM PDT -jonnyoe,2024-03-27T05:00:28Z,- jonnyoe opened pull request: [6534](https://github.com/hackforla/website/pull/6534) at 2024-03-26 10:00 PM PDT -jonnyoe,2024-03-27T05:01:10Z,- jonnyoe pull request closed w/o merging: [6534](https://github.com/hackforla/website/pull/6534#event-12259784434) at 2024-03-26 10:01 PM PDT -jonnyoe,2024-03-27T05:20:46Z,- jonnyoe opened pull request: [6535](https://github.com/hackforla/website/pull/6535) at 2024-03-26 10:20 PM PDT -jonnyoe,2024-03-27T05:26:06Z,- jonnyoe commented on pull request: [6534](https://github.com/hackforla/website/pull/6534#issuecomment-2021969285) at 2024-03-26 10:26 PM PDT -jonnyoe,2024-03-28T23:57:12Z,- jonnyoe commented on pull request: [6535](https://github.com/hackforla/website/pull/6535#issuecomment-2026338593) at 2024-03-28 04:57 PM PDT -jonnyoe,2024-03-28T23:57:12Z,- jonnyoe pull request closed w/o merging: [6535](https://github.com/hackforla/website/pull/6535#event-12289008321) at 2024-03-28 04:57 PM PDT -jonnyoe,2024-03-29T04:23:01Z,- jonnyoe opened pull request: [6546](https://github.com/hackforla/website/pull/6546) at 2024-03-28 09:23 PM PDT -jonnyoe,2024-03-29T09:14:08Z,- jonnyoe pull request merged: [6546](https://github.com/hackforla/website/pull/6546#event-12293018692) at 2024-03-29 02:14 AM PDT -jonnyoe,2024-03-29T19:18:17Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2027647671) at 2024-03-29 12:18 PM PDT -jonnyoe,2024-03-29T19:18:33Z,- jonnyoe closed issue as completed: [6329](https://github.com/hackforla/website/issues/6329#event-12297793289) at 2024-03-29 12:18 PM PDT -jonnyoe,2024-04-09T01:09:01Z,- jonnyoe assigned to issue: [6492](https://github.com/hackforla/website/issues/6492) at 2024-04-08 06:09 PM PDT -jonnyoe,2024-04-09T01:11:58Z,- jonnyoe commented on issue: [6492](https://github.com/hackforla/website/issues/6492#issuecomment-2043959295) at 2024-04-08 06:11 PM PDT -jonnyoe,2024-04-12T22:26:31Z,- jonnyoe closed issue as completed: [6492](https://github.com/hackforla/website/issues/6492#event-12454755596) at 2024-04-12 03:26 PM PDT -jonnyoe,2024-04-12T22:28:12Z,- jonnyoe commented on issue: [6492](https://github.com/hackforla/website/issues/6492#issuecomment-2052638582) at 2024-04-12 03:28 PM PDT -jonnyoe,2024-04-19T02:43:23Z,- jonnyoe assigned to issue: [6638](https://github.com/hackforla/website/issues/6638) at 2024-04-18 07:43 PM PDT -jonnyoe,2024-04-19T02:47:06Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2065654771) at 2024-04-18 07:47 PM PDT -jonnyoe,2024-04-24T06:57:41Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2074210913) at 2024-04-23 11:57 PM PDT -jonnyoe,2024-04-25T00:08:31Z,- jonnyoe opened pull request: [6748](https://github.com/hackforla/website/pull/6748) at 2024-04-24 05:08 PM PDT -jonnyoe,2024-04-26T01:09:04Z,- jonnyoe commented on pull request: [6748](https://github.com/hackforla/website/pull/6748#issuecomment-2078437529) at 2024-04-25 06:09 PM PDT -jonnyoe,2024-04-26T01:09:04Z,- jonnyoe pull request closed w/o merging: [6748](https://github.com/hackforla/website/pull/6748#event-12617276133) at 2024-04-25 06:09 PM PDT -jonnyoe,2024-04-26T03:00:01Z,- jonnyoe opened pull request: [6764](https://github.com/hackforla/website/pull/6764) at 2024-04-25 08:00 PM PDT -jonnyoe,2024-04-30T22:55:16Z,- jonnyoe pull request closed w/o merging: [6764](https://github.com/hackforla/website/pull/6764#event-12664879858) at 2024-04-30 03:55 PM PDT -jonnyoe,2024-05-01T00:52:19Z,- jonnyoe opened pull request: [6796](https://github.com/hackforla/website/pull/6796) at 2024-04-30 05:52 PM PDT -jonnyoe,2024-05-03T23:45:32Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2093891228) at 2024-05-03 04:45 PM PDT -jonnyoe,2024-05-04T06:12:38Z,- jonnyoe pull request closed w/o merging: [6796](https://github.com/hackforla/website/pull/6796#event-12703395024) at 2024-05-03 11:12 PM PDT -jonnyoe,2024-05-04T06:39:15Z,- jonnyoe opened pull request: [6817](https://github.com/hackforla/website/pull/6817) at 2024-05-03 11:39 PM PDT -jonnyoe,2024-05-04T06:44:32Z,- jonnyoe pull request closed w/o merging: [6817](https://github.com/hackforla/website/pull/6817#event-12703472871) at 2024-05-03 11:44 PM PDT -jonnyoe,2024-05-04T06:53:59Z,- jonnyoe opened pull request: [6818](https://github.com/hackforla/website/pull/6818) at 2024-05-03 11:53 PM PDT -jonnyoe,2024-05-04T17:42:21Z,- jonnyoe pull request merged: [6818](https://github.com/hackforla/website/pull/6818#event-12704937406) at 2024-05-04 10:42 AM PDT -jonnyoe,2024-05-10T03:26:27Z,- jonnyoe assigned to issue: [6571](https://github.com/hackforla/website/issues/6571) at 2024-05-09 08:26 PM PDT -jonnyoe,2024-05-10T03:34:46Z,- jonnyoe commented on issue: [6571](https://github.com/hackforla/website/issues/6571#issuecomment-2103797084) at 2024-05-09 08:34 PM PDT -Joyce750526,4326,SKILLS ISSUE -Joyce750526,2023-03-29T03:49:28Z,- Joyce750526 opened issue: [4326](https://github.com/hackforla/website/issues/4326) at 2023-03-28 08:49 PM PDT -Joyce750526,2023-03-29T04:12:50Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1487920398) at 2023-03-28 09:12 PM PDT -Joyce750526,2023-04-09T19:15:59Z,- Joyce750526 assigned to issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1487920398) at 2023-04-09 12:15 PM PDT -Joyce750526,2023-06-05T06:42:12Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1576136094) at 2023-06-04 11:42 PM PDT -Joyce750526,2023-06-18T06:14:24Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1595977696) at 2023-06-17 11:14 PM PDT -Joyce750526,2024-01-10T03:45:21Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1884146554) at 2024-01-09 07:45 PM PST -jphamtv,5873,SKILLS ISSUE -jphamtv,2023-11-07T04:48:32Z,- jphamtv opened issue: [5873](https://github.com/hackforla/website/issues/5873) at 2023-11-06 08:48 PM PST -jphamtv,2023-11-07T04:48:49Z,- jphamtv assigned to issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1797818529) at 2023-11-06 08:48 PM PST -jphamtv,2023-11-12T05:26:46Z,- jphamtv assigned to issue: [5803](https://github.com/hackforla/website/issues/5803) at 2023-11-11 09:26 PM PST -jphamtv,2023-11-12T05:40:47Z,- jphamtv commented on issue: [5803](https://github.com/hackforla/website/issues/5803#issuecomment-1807011208) at 2023-11-11 09:40 PM PST -jphamtv,2023-11-12T05:43:43Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1807011637) at 2023-11-11 09:43 PM PST -jphamtv,2023-11-12T20:14:34Z,- jphamtv opened pull request: [5893](https://github.com/hackforla/website/pull/5893) at 2023-11-12 12:14 PM PST -jphamtv,2023-11-19T07:18:29Z,- jphamtv pull request merged: [5893](https://github.com/hackforla/website/pull/5893#event-11003195010) at 2023-11-18 11:18 PM PST -jphamtv,2023-11-19T22:25:01Z,- jphamtv assigned to issue: [5919](https://github.com/hackforla/website/issues/5919) at 2023-11-19 02:25 PM PST -jphamtv,2023-11-19T22:25:27Z,- jphamtv commented on issue: [5919](https://github.com/hackforla/website/issues/5919#issuecomment-1817997104) at 2023-11-19 02:25 PM PST -jphamtv,2023-11-21T06:21:37Z,- jphamtv opened pull request: [5927](https://github.com/hackforla/website/pull/5927) at 2023-11-20 10:21 PM PST -jphamtv,2023-11-22T21:29:25Z,- jphamtv pull request merged: [5927](https://github.com/hackforla/website/pull/5927#event-11041390588) at 2023-11-22 01:29 PM PST -jphamtv,2023-11-22T21:34:58Z,- jphamtv commented on pull request: [5933](https://github.com/hackforla/website/pull/5933#issuecomment-1823539183) at 2023-11-22 01:34 PM PST -jphamtv,2023-11-22T21:35:50Z,- jphamtv commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1823539866) at 2023-11-22 01:35 PM PST -jphamtv,2023-11-23T07:41:40Z,- jphamtv submitted pull request review: [5931](https://github.com/hackforla/website/pull/5931#pullrequestreview-1745839007) at 2023-11-22 11:41 PM PST -jphamtv,2023-11-23T07:55:12Z,- jphamtv submitted pull request review: [5933](https://github.com/hackforla/website/pull/5933#pullrequestreview-1745855445) at 2023-11-22 11:55 PM PST -jphamtv,2023-11-23T08:03:30Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1823946959) at 2023-11-23 12:03 AM PST -jphamtv,2023-11-24T21:25:32Z,- jphamtv assigned to issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1801323803) at 2023-11-24 01:25 PM PST -jphamtv,2023-11-24T21:27:23Z,- jphamtv commented on issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1826093896) at 2023-11-24 01:27 PM PST -jphamtv,2023-11-25T06:59:34Z,- jphamtv opened pull request: [5936](https://github.com/hackforla/website/pull/5936) at 2023-11-24 10:59 PM PST -jphamtv,2023-11-27T04:14:41Z,- jphamtv pull request merged: [5936](https://github.com/hackforla/website/pull/5936#event-11065705947) at 2023-11-26 08:14 PM PST -jphamtv,2023-11-27T19:20:26Z,- jphamtv commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1828468569) at 2023-11-27 11:20 AM PST -jphamtv,2023-11-27T20:09:19Z,- jphamtv assigned to issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1763500722) at 2023-11-27 12:09 PM PST -jphamtv,2023-11-27T20:09:46Z,- jphamtv commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1828511409) at 2023-11-27 12:09 PM PST -jphamtv,2023-11-28T05:44:28Z,- jphamtv commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1829143149) at 2023-11-27 09:44 PM PST -jphamtv,2023-11-28T07:38:18Z,- jphamtv opened pull request: [5940](https://github.com/hackforla/website/pull/5940) at 2023-11-27 11:38 PM PST -jphamtv,2023-11-28T07:45:02Z,- jphamtv commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1829271599) at 2023-11-27 11:45 PM PST -jphamtv,2023-11-29T05:16:57Z,- jphamtv commented on pull request: [5943](https://github.com/hackforla/website/pull/5943#issuecomment-1831237499) at 2023-11-28 09:16 PM PST -jphamtv,2023-11-29T05:37:42Z,- jphamtv submitted pull request review: [5943](https://github.com/hackforla/website/pull/5943#pullrequestreview-1754487667) at 2023-11-28 09:37 PM PST -jphamtv,2023-11-29T20:50:01Z,- jphamtv commented on pull request: [5945](https://github.com/hackforla/website/pull/5945#issuecomment-1832679842) at 2023-11-29 12:50 PM PST -jphamtv,2023-11-30T07:21:10Z,- jphamtv submitted pull request review: [5945](https://github.com/hackforla/website/pull/5945#pullrequestreview-1756789572) at 2023-11-29 11:21 PM PST -jphamtv,2023-11-30T15:05:58Z,- jphamtv pull request merged: [5940](https://github.com/hackforla/website/pull/5940#event-11110315569) at 2023-11-30 07:05 AM PST -jphamtv,2023-12-01T05:28:55Z,- jphamtv commented on pull request: [5951](https://github.com/hackforla/website/pull/5951#issuecomment-1835487912) at 2023-11-30 09:28 PM PST -jphamtv,2023-12-01T05:47:51Z,- jphamtv submitted pull request review: [5951](https://github.com/hackforla/website/pull/5951#pullrequestreview-1759064650) at 2023-11-30 09:47 PM PST -jphamtv,2023-12-01T19:21:37Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1836648925) at 2023-12-01 11:21 AM PST -jphamtv,2023-12-05T07:12:30Z,- jphamtv assigned to issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1718731156) at 2023-12-04 11:12 PM PST -jphamtv,2023-12-05T07:14:27Z,- jphamtv commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1840134363) at 2023-12-04 11:14 PM PST -jphamtv,2023-12-06T06:22:47Z,- jphamtv commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1842167380) at 2023-12-05 10:22 PM PST -jphamtv,2023-12-06T06:23:14Z,- jphamtv commented on pull request: [5967](https://github.com/hackforla/website/pull/5967#issuecomment-1842167731) at 2023-12-05 10:23 PM PST -jphamtv,2023-12-06T07:31:09Z,- jphamtv submitted pull request review: [5967](https://github.com/hackforla/website/pull/5967#pullrequestreview-1766841448) at 2023-12-05 11:31 PM PST -jphamtv,2023-12-07T05:26:27Z,- jphamtv submitted pull request review: [5961](https://github.com/hackforla/website/pull/5961#pullrequestreview-1769209863) at 2023-12-06 09:26 PM PST -jphamtv,2023-12-08T21:53:20Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1847888919) at 2023-12-08 01:53 PM PST -jphamtv,2023-12-08T21:53:53Z,- jphamtv closed issue as completed: [5873](https://github.com/hackforla/website/issues/5873#event-11198007078) at 2023-12-08 01:53 PM PST -jphamtv,2023-12-09T00:18:29Z,- jphamtv opened pull request: [5978](https://github.com/hackforla/website/pull/5978) at 2023-12-08 04:18 PM PST -jphamtv,2023-12-09T00:27:50Z,- jphamtv commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1848003394) at 2023-12-08 04:27 PM PST -jphamtv,2023-12-09T00:30:42Z,- jphamtv commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1848005697) at 2023-12-08 04:30 PM PST -jphamtv,2023-12-11T01:55:06Z,- jphamtv commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1849205284) at 2023-12-10 05:55 PM PST -jphamtv,2023-12-11T19:53:29Z,- jphamtv submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1776050915) at 2023-12-11 11:53 AM PST -jphamtv,2023-12-12T20:25:51Z,- jphamtv submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1778379813) at 2023-12-12 12:25 PM PST -jphamtv,2023-12-13T06:48:53Z,- jphamtv commented on pull request: [5976](https://github.com/hackforla/website/pull/5976#issuecomment-1853356807) at 2023-12-12 10:48 PM PST -jphamtv,2023-12-17T02:44:02Z,- jphamtv submitted pull request review: [5976](https://github.com/hackforla/website/pull/5976#pullrequestreview-1785329938) at 2023-12-16 06:44 PM PST -jphamtv,2023-12-31T05:18:51Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1872673852) at 2023-12-30 09:18 PM PST -jphamtv,2023-12-31T23:14:56Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1873053171) at 2023-12-31 03:14 PM PST -jphamtv,2024-01-02T02:40:50Z,- jphamtv pull request merged: [5978](https://github.com/hackforla/website/pull/5978#event-11366783011) at 2024-01-01 06:40 PM PST -jphamtv,2024-01-03T07:55:09Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1874970152) at 2024-01-02 11:55 PM PST -jphamtv,2024-01-06T03:10:25Z,- jphamtv opened issue: [6071](https://github.com/hackforla/website/issues/6071) at 2024-01-05 07:10 PM PST -jphamtv,2024-01-09T06:30:46Z,- jphamtv commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1882484562) at 2024-01-08 10:30 PM PST -jphamtv,2024-01-12T19:19:41Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1818892013) at 2024-01-12 11:19 AM PST -jphamtv,2024-01-15T06:40:08Z,- jphamtv assigned to issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1846152440) at 2024-01-14 10:40 PM PST -jphamtv,2024-01-15T06:42:33Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1891395152) at 2024-01-14 10:42 PM PST -jphamtv,2024-01-18T07:20:55Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1897933765) at 2024-01-17 11:20 PM PST -jphamtv,2024-01-19T06:25:38Z,- jphamtv commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1899836670) at 2024-01-18 10:25 PM PST -jphamtv,2024-01-19T07:22:03Z,- jphamtv submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1831753131) at 2024-01-18 11:22 PM PST -jphamtv,2024-01-19T07:40:59Z,- jphamtv submitted pull request review: [6131](https://github.com/hackforla/website/pull/6131#pullrequestreview-1831777475) at 2024-01-18 11:40 PM PST -jphamtv,2024-01-19T08:04:27Z,- jphamtv submitted pull request review: [6132](https://github.com/hackforla/website/pull/6132#pullrequestreview-1831826960) at 2024-01-19 12:04 AM PST -jphamtv,2024-01-19T08:12:10Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1899947725) at 2024-01-19 12:12 AM PST -jphamtv,2024-01-19T18:59:13Z,- jphamtv closed issue by PR 6131: [5715](https://github.com/hackforla/website/issues/5715#event-11541084238) at 2024-01-19 10:59 AM PST -jphamtv,2024-01-21T19:06:45Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1902730311) at 2024-01-21 11:06 AM PST -jphamtv,2024-01-21T19:37:10Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1902738428) at 2024-01-21 11:37 AM PST -jphamtv,2024-01-23T06:01:16Z,- jphamtv submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1837913103) at 2024-01-22 10:01 PM PST -jphamtv,2024-01-23T07:30:44Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1838022856) at 2024-01-22 11:30 PM PST -jphamtv,2024-01-24T01:40:07Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1907207000) at 2024-01-23 05:40 PM PST -jphamtv,2024-01-24T06:46:00Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1840523335) at 2024-01-23 10:46 PM PST -jphamtv,2024-01-26T02:45:13Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1911323032) at 2024-01-25 06:45 PM PST -jphamtv,2024-01-26T03:10:40Z,- jphamtv submitted pull request review: [6147](https://github.com/hackforla/website/pull/6147#pullrequestreview-1845019741) at 2024-01-25 07:10 PM PST -jphamtv,2024-01-26T06:49:24Z,- jphamtv commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1911570461) at 2024-01-25 10:49 PM PST -jphamtv,2024-01-26T06:49:39Z,- jphamtv closed issue by PR 6149: [5960](https://github.com/hackforla/website/issues/5960#event-11605513020) at 2024-01-25 10:49 PM PST -jphamtv,2024-01-26T06:56:10Z,- jphamtv closed issue by PR 6164: [5809](https://github.com/hackforla/website/issues/5809#event-11605549395) at 2024-01-25 10:56 PM PST -jphamtv,2024-01-26T06:59:04Z,- jphamtv commented on pull request: [6164](https://github.com/hackforla/website/pull/6164#issuecomment-1911579468) at 2024-01-25 10:59 PM PST -jphamtv,2024-01-26T07:02:05Z,- jphamtv closed issue by PR 6147: [6112](https://github.com/hackforla/website/issues/6112#event-11605582030) at 2024-01-25 11:02 PM PST -jphamtv,2024-01-26T08:01:40Z,- jphamtv submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1845228504) at 2024-01-26 12:01 AM PST -jphamtv,2024-01-26T08:05:12Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1911636648) at 2024-01-26 12:05 AM PST -jphamtv,2024-01-27T07:05:48Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1913045927) at 2024-01-26 11:05 PM PST -jphamtv,2024-01-29T23:00:06Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1915724210) at 2024-01-29 03:00 PM PST -jphamtv,2024-01-30T06:41:23Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1916175373) at 2024-01-29 10:41 PM PST -jphamtv,2024-01-30T07:05:02Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1916199295) at 2024-01-29 11:05 PM PST -jphamtv,2024-01-30T07:41:40Z,- jphamtv assigned to issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1694721521) at 2024-01-29 11:41 PM PST -jphamtv,2024-01-30T07:46:28Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1916250201) at 2024-01-29 11:46 PM PST -jphamtv,2024-01-31T07:26:39Z,- jphamtv submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1853045502) at 2024-01-30 11:26 PM PST -jphamtv,2024-01-31T07:39:23Z,- jphamtv closed issue by PR 6148: [6104](https://github.com/hackforla/website/issues/6104#event-11651827352) at 2024-01-30 11:39 PM PST -jphamtv,2024-01-31T07:54:01Z,- jphamtv submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1853084638) at 2024-01-30 11:54 PM PST -jphamtv,2024-01-31T07:54:19Z,- jphamtv closed issue by PR 6135: [6065](https://github.com/hackforla/website/issues/6065#event-11651961234) at 2024-01-30 11:54 PM PST -jphamtv,2024-02-02T06:27:25Z,- jphamtv submitted pull request review: [6197](https://github.com/hackforla/website/pull/6197#pullrequestreview-1858425038) at 2024-02-01 10:27 PM PST -jphamtv,2024-02-02T06:27:52Z,- jphamtv closed issue by PR 6197: [6189](https://github.com/hackforla/website/issues/6189#event-11679741967) at 2024-02-01 10:27 PM PST -jphamtv,2024-02-02T06:46:11Z,- jphamtv submitted pull request review: [6198](https://github.com/hackforla/website/pull/6198#pullrequestreview-1858457059) at 2024-02-01 10:46 PM PST -jphamtv,2024-02-02T06:46:41Z,- jphamtv closed issue by PR 6198: [6165](https://github.com/hackforla/website/issues/6165#event-11679900281) at 2024-02-01 10:46 PM PST -jphamtv,2024-02-02T07:13:18Z,- jphamtv commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1923154212) at 2024-02-01 11:13 PM PST -jphamtv,2024-02-02T08:18:01Z,- jphamtv submitted pull request review: [6202](https://github.com/hackforla/website/pull/6202#pullrequestreview-1858636385) at 2024-02-02 12:18 AM PST -jphamtv,2024-02-02T08:21:47Z,- jphamtv closed issue by PR 6202: [5707](https://github.com/hackforla/website/issues/5707#event-11680826152) at 2024-02-02 12:21 AM PST -jphamtv,2024-02-05T18:38:44Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1927777403) at 2024-02-05 10:38 AM PST -jphamtv,2024-02-06T08:13:04Z,- jphamtv opened pull request: [6255](https://github.com/hackforla/website/pull/6255) at 2024-02-06 12:13 AM PST -jphamtv,2024-02-09T06:44:00Z,- jphamtv closed issue by PR 6260: [6050](https://github.com/hackforla/website/issues/6050#event-11754416032) at 2024-02-08 10:44 PM PST -jphamtv,2024-02-09T07:02:20Z,- jphamtv commented on pull request: [6265](https://github.com/hackforla/website/pull/6265#issuecomment-1935426992) at 2024-02-08 11:02 PM PST -jphamtv,2024-02-09T07:18:35Z,- jphamtv closed issue by PR 6241: [6233](https://github.com/hackforla/website/issues/6233#event-11754621221) at 2024-02-08 11:18 PM PST -jphamtv,2024-02-09T07:25:07Z,- jphamtv commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1935448083) at 2024-02-08 11:25 PM PST -jphamtv,2024-02-09T07:52:12Z,- jphamtv submitted pull request review: [6262](https://github.com/hackforla/website/pull/6262#pullrequestreview-1871823448) at 2024-02-08 11:52 PM PST -jphamtv,2024-02-09T07:52:49Z,- jphamtv commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1935474027) at 2024-02-08 11:52 PM PST -jphamtv,2024-02-09T07:54:17Z,- jphamtv closed issue by PR 6262: [6184](https://github.com/hackforla/website/issues/6184#event-11754862147) at 2024-02-08 11:54 PM PST -jphamtv,2024-02-09T08:14:01Z,- jphamtv commented on pull request: [6263](https://github.com/hackforla/website/pull/6263#issuecomment-1935497388) at 2024-02-09 12:14 AM PST -jphamtv,2024-02-09T08:16:59Z,- jphamtv closed issue by PR 6263: [6187](https://github.com/hackforla/website/issues/6187#event-11755041955) at 2024-02-09 12:16 AM PST -jphamtv,2024-02-09T08:22:33Z,- jphamtv commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1935507118) at 2024-02-09 12:22 AM PST -jphamtv,2024-02-10T21:26:25Z,- jphamtv opened issue: [6274](https://github.com/hackforla/website/issues/6274) at 2024-02-10 01:26 PM PST -jphamtv,2024-02-10T21:40:25Z,- jphamtv commented on issue: [6274](https://github.com/hackforla/website/issues/6274#issuecomment-1937196676) at 2024-02-10 01:40 PM PST -jphamtv,2024-02-10T21:43:25Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1937202732) at 2024-02-10 01:43 PM PST -jphamtv,2024-02-13T01:23:33Z,- jphamtv commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1940065275) at 2024-02-12 05:23 PM PST -jphamtv,2024-02-15T03:15:08Z,- jphamtv pull request merged: [6255](https://github.com/hackforla/website/pull/6255#event-11809476894) at 2024-02-14 07:15 PM PST -jphamtv,2024-02-15T06:05:00Z,- jphamtv commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1945425710) at 2024-02-14 10:05 PM PST -jphamtv,2024-02-16T00:29:51Z,- jphamtv submitted pull request review: [6267](https://github.com/hackforla/website/pull/6267#pullrequestreview-1884122415) at 2024-02-15 04:29 PM PST -jphamtv,2024-02-16T00:31:25Z,- jphamtv closed issue by PR 6267: [6051](https://github.com/hackforla/website/issues/6051#event-11822685820) at 2024-02-15 04:31 PM PST -jphamtv,2024-02-16T05:27:07Z,- jphamtv closed issue by PR 6300: [3861](https://github.com/hackforla/website/issues/3861#event-11824529257) at 2024-02-15 09:27 PM PST -jphamtv,2024-02-16T05:45:57Z,- jphamtv submitted pull request review: [6275](https://github.com/hackforla/website/pull/6275#pullrequestreview-1884352127) at 2024-02-15 09:45 PM PST -jphamtv,2024-02-16T05:46:41Z,- jphamtv closed issue by PR 6275: [5714](https://github.com/hackforla/website/issues/5714#event-11824656130) at 2024-02-15 09:46 PM PST -jphamtv,2024-02-16T06:24:56Z,- jphamtv submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1884388619) at 2024-02-15 10:24 PM PST -jphamtv,2024-02-16T07:17:26Z,- jphamtv submitted pull request review: [6293](https://github.com/hackforla/website/pull/6293#pullrequestreview-1884446486) at 2024-02-15 11:17 PM PST -jphamtv,2024-02-16T07:19:00Z,- jphamtv closed issue by PR 6293: [5179](https://github.com/hackforla/website/issues/5179#event-11825240702) at 2024-02-15 11:19 PM PST -jphamtv,2024-02-17T01:13:49Z,- jphamtv submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1886292258) at 2024-02-16 05:13 PM PST -jphamtv,2024-02-21T07:09:15Z,- jphamtv assigned to issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1809381162) at 2024-02-20 11:09 PM PST -jphamtv,2024-02-21T07:12:20Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1956023993) at 2024-02-20 11:12 PM PST -jphamtv,2024-02-23T05:40:28Z,- jphamtv closed issue by PR 6351: [6312](https://github.com/hackforla/website/issues/6312#event-11899562418) at 2024-02-22 09:40 PM PST -jphamtv,2024-02-23T05:47:05Z,- jphamtv closed issue by PR 6352: [5881](https://github.com/hackforla/website/issues/5881#event-11899591694) at 2024-02-22 09:47 PM PST -jphamtv,2024-02-23T06:17:19Z,- jphamtv submitted pull request review: [6358](https://github.com/hackforla/website/pull/6358#pullrequestreview-1897429766) at 2024-02-22 10:17 PM PST -jphamtv,2024-02-23T06:17:53Z,- jphamtv closed issue by PR 6358: [6239](https://github.com/hackforla/website/issues/6239#event-11899743345) at 2024-02-22 10:17 PM PST -jphamtv,2024-02-23T06:30:39Z,- jphamtv submitted pull request review: [6359](https://github.com/hackforla/website/pull/6359#pullrequestreview-1897440836) at 2024-02-22 10:30 PM PST -jphamtv,2024-02-23T06:30:59Z,- jphamtv closed issue by PR 6359: [6107](https://github.com/hackforla/website/issues/6107#event-11899815978) at 2024-02-22 10:30 PM PST -jphamtv,2024-02-23T06:52:38Z,- jphamtv submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1897459535) at 2024-02-22 10:52 PM PST -jphamtv,2024-02-23T07:31:24Z,- jphamtv commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1960850457) at 2024-02-22 11:31 PM PST -jphamtv,2024-02-23T08:02:34Z,- jphamtv closed issue by PR 6328: [6298](https://github.com/hackforla/website/issues/6298#event-11900453171) at 2024-02-23 12:02 AM PST -jphamtv,2024-02-24T18:30:39Z,- jphamtv submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1899551329) at 2024-02-24 10:30 AM PST -jphamtv,2024-02-27T00:47:25Z,- jphamtv commented on issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-1965592264) at 2024-02-26 04:47 PM PST -jphamtv,2024-02-27T00:56:09Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1965600137) at 2024-02-26 04:56 PM PST -jphamtv,2024-02-27T02:55:21Z,- jphamtv assigned to issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-1965592264) at 2024-02-26 06:55 PM PST -jphamtv,2024-03-01T06:12:33Z,- jphamtv closed issue by PR 6371: [6053](https://github.com/hackforla/website/issues/6053#event-11975064582) at 2024-02-29 10:12 PM PST -jphamtv,2024-03-01T06:19:19Z,- jphamtv closed issue by PR 6400: [6049](https://github.com/hackforla/website/issues/6049#event-11975111631) at 2024-02-29 10:19 PM PST -jphamtv,2024-03-01T06:26:49Z,- jphamtv submitted pull request review: [6401](https://github.com/hackforla/website/pull/6401#pullrequestreview-1910398908) at 2024-02-29 10:26 PM PST -jphamtv,2024-03-01T06:27:24Z,- jphamtv closed issue by PR 6401: [6123](https://github.com/hackforla/website/issues/6123#event-11975164387) at 2024-02-29 10:27 PM PST -jphamtv,2024-03-01T06:41:10Z,- jphamtv submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1910412325) at 2024-02-29 10:41 PM PST -jphamtv,2024-03-01T06:46:43Z,- jphamtv submitted pull request review: [6362](https://github.com/hackforla/website/pull/6362#pullrequestreview-1910417677) at 2024-02-29 10:46 PM PST -jphamtv,2024-03-01T07:00:56Z,- jphamtv closed issue by PR 6362: [6044](https://github.com/hackforla/website/issues/6044#event-11975407048) at 2024-02-29 11:00 PM PST -jphamtv,2024-03-01T07:06:14Z,- jphamtv closed issue by PR 6383: [6372](https://github.com/hackforla/website/issues/6372#event-11975447554) at 2024-02-29 11:06 PM PST -jphamtv,2024-03-01T07:24:38Z,- jphamtv submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1910487818) at 2024-02-29 11:24 PM PST -jphamtv,2024-03-01T07:39:43Z,- jphamtv closed issue by PR 6374: [6199](https://github.com/hackforla/website/issues/6199#event-11975791802) at 2024-02-29 11:39 PM PST -jphamtv,2024-03-02T00:23:44Z,- jphamtv submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1912369136) at 2024-03-01 04:23 PM PST -jphamtv,2024-03-02T06:24:05Z,- jphamtv submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1912588418) at 2024-03-01 10:24 PM PST -jphamtv,2024-03-02T06:27:33Z,- jphamtv closed issue by PR 6384: [6373](https://github.com/hackforla/website/issues/6373#event-11986603427) at 2024-03-01 10:27 PM PST -jphamtv,2024-03-06T20:05:10Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1981691773) at 2024-03-06 12:05 PM PST -jphamtv,2024-03-08T06:13:44Z,- jphamtv submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1924095103) at 2024-03-07 10:13 PM PST -jphamtv,2024-03-08T06:14:27Z,- jphamtv closed issue by PR 6432: [5452](https://github.com/hackforla/website/issues/5452#event-12051510422) at 2024-03-07 10:14 PM PST -jphamtv,2024-03-08T06:39:51Z,- jphamtv submitted pull request review: [6439](https://github.com/hackforla/website/pull/6439#pullrequestreview-1924119814) at 2024-03-07 10:39 PM PST -jphamtv,2024-03-08T06:40:16Z,- jphamtv closed issue by PR 6439: [6153](https://github.com/hackforla/website/issues/6153#event-12051665471) at 2024-03-07 10:40 PM PST -jphamtv,2024-03-08T07:03:07Z,- jphamtv submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1924150123) at 2024-03-07 11:03 PM PST -jphamtv,2024-03-08T07:08:28Z,- jphamtv submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1924160503) at 2024-03-07 11:08 PM PST -jphamtv,2024-03-08T07:12:45Z,- jphamtv closed issue by PR 6433: [5842](https://github.com/hackforla/website/issues/5842#event-12051951080) at 2024-03-07 11:12 PM PST -jphamtv,2024-03-08T07:32:41Z,- jphamtv commented on issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1985189593) at 2024-03-07 11:32 PM PST -jphamtv,2024-03-08T07:37:30Z,- jphamtv commented on pull request: [6437](https://github.com/hackforla/website/pull/6437#issuecomment-1985194798) at 2024-03-07 11:37 PM PST -jphamtv,2024-03-08T08:50:57Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1924383110) at 2024-03-08 12:50 AM PST -jphamtv,2024-03-10T00:59:48Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1926354588) at 2024-03-09 05:59 PM PDT -jphamtv,2024-03-11T06:30:01Z,- jphamtv commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1987715194) at 2024-03-10 11:30 PM PDT -jphamtv,2024-03-11T06:52:43Z,- jphamtv commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1987738255) at 2024-03-10 11:52 PM PDT -jphamtv,2024-03-11T20:00:45Z,- jphamtv commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1989327154) at 2024-03-11 01:00 PM PDT -jphamtv,2024-03-11T20:00:45Z,- jphamtv closed issue as completed: [6286](https://github.com/hackforla/website/issues/6286#event-12079352906) at 2024-03-11 01:00 PM PDT -jphamtv,2024-03-14T03:01:24Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1996303850) at 2024-03-13 08:01 PM PDT -jphamtv,2024-03-22T05:25:48Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1953972442) at 2024-03-21 10:25 PM PDT -jphamtv,2024-03-22T06:08:10Z,- jphamtv commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2014421810) at 2024-03-21 11:08 PM PDT -jphamtv,2024-03-22T06:08:56Z,- jphamtv commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2014422527) at 2024-03-21 11:08 PM PDT -jphamtv,2024-03-22T06:27:31Z,- jphamtv commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-2014441115) at 2024-03-21 11:27 PM PDT -jphamtv,2024-03-22T16:37:38Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2015476110) at 2024-03-22 09:37 AM PDT -jphamtv,2024-03-26T05:09:15Z,- jphamtv commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2019401651) at 2024-03-25 10:09 PM PDT -jphamtv,2024-03-26T06:50:46Z,- jphamtv commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-2019515994) at 2024-03-25 11:50 PM PDT -jphamtv,2024-03-26T06:50:46Z,- jphamtv closed issue as completed: [6041](https://github.com/hackforla/website/issues/6041#event-12244897980) at 2024-03-25 11:50 PM PDT -jphamtv,2024-03-26T06:51:05Z,- jphamtv commented on issue: [6452](https://github.com/hackforla/website/issues/6452#issuecomment-2019516295) at 2024-03-25 11:51 PM PDT -jphamtv,2024-03-26T06:51:05Z,- jphamtv closed issue as completed: [6452](https://github.com/hackforla/website/issues/6452#event-12244900242) at 2024-03-25 11:51 PM PDT -jphamtv,2024-03-29T04:53:22Z,- jphamtv submitted pull request review: [6508](https://github.com/hackforla/website/pull/6508#pullrequestreview-1967829229) at 2024-03-28 09:53 PM PDT -jphamtv,2024-03-29T05:03:40Z,- jphamtv submitted pull request review: [6533](https://github.com/hackforla/website/pull/6533#pullrequestreview-1967835395) at 2024-03-28 10:03 PM PDT -jphamtv,2024-03-29T05:23:09Z,- jphamtv submitted pull request review: [6546](https://github.com/hackforla/website/pull/6546#pullrequestreview-1967856683) at 2024-03-28 10:23 PM PDT -jphamtv,2024-03-29T05:52:20Z,- jphamtv submitted pull request review: [6521](https://github.com/hackforla/website/pull/6521#pullrequestreview-1967885979) at 2024-03-28 10:52 PM PDT -jphamtv,2024-03-31T19:15:52Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2028881225) at 2024-03-31 12:15 PM PDT -jphamtv,2024-04-02T04:54:55Z,- jphamtv commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2031082340) at 2024-04-01 09:54 PM PDT -jphamtv,2024-04-02T16:28:04Z,- jphamtv commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032517417) at 2024-04-02 09:28 AM PDT -jphamtv,2024-04-02T17:57:35Z,- jphamtv commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032701430) at 2024-04-02 10:57 AM PDT -jphamtv,2024-04-02T18:20:45Z,- jphamtv submitted pull request review: [6557](https://github.com/hackforla/website/pull/6557#pullrequestreview-1974601798) at 2024-04-02 11:20 AM PDT -jphamtv,2024-04-03T18:24:12Z,- jphamtv commented on issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-2035301264) at 2024-04-03 11:24 AM PDT -jphamtv,2024-04-03T18:24:13Z,- jphamtv closed issue as completed: [6071](https://github.com/hackforla/website/issues/6071#event-12346461960) at 2024-04-03 11:24 AM PDT -jphamtv,2024-04-05T04:33:46Z,- jphamtv submitted pull request review: [6553](https://github.com/hackforla/website/pull/6553#pullrequestreview-1981827066) at 2024-04-04 09:33 PM PDT -jphamtv,2024-04-05T04:41:32Z,- jphamtv closed issue by PR 6553: [6237](https://github.com/hackforla/website/issues/6237#event-12367698559) at 2024-04-04 09:41 PM PDT -jphamtv,2024-04-05T04:45:52Z,- jphamtv submitted pull request review: [6560](https://github.com/hackforla/website/pull/6560#pullrequestreview-1981858877) at 2024-04-04 09:45 PM PDT -jphamtv,2024-04-05T04:46:02Z,- jphamtv closed issue by PR 6560: [6232](https://github.com/hackforla/website/issues/6232#event-12367734042) at 2024-04-04 09:46 PM PDT -jphamtv,2024-04-05T05:23:41Z,- jphamtv submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1981961959) at 2024-04-04 10:23 PM PDT -jphamtv,2024-04-05T05:30:24Z,- jphamtv submitted pull request review: [6564](https://github.com/hackforla/website/pull/6564#pullrequestreview-1981969065) at 2024-04-04 10:30 PM PDT -jphamtv,2024-04-05T05:30:34Z,- jphamtv closed issue by PR 6564: [6235](https://github.com/hackforla/website/issues/6235#event-12368097922) at 2024-04-04 10:30 PM PDT -jphamtv,2024-04-05T05:52:50Z,- jphamtv commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2039001319) at 2024-04-04 10:52 PM PDT -jphamtv,2024-04-05T05:53:01Z,- jphamtv commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2039001514) at 2024-04-04 10:53 PM PDT -jphamtv,2024-04-05T06:34:17Z,- jphamtv submitted pull request review: [6538](https://github.com/hackforla/website/pull/6538#pullrequestreview-1982060075) at 2024-04-04 11:34 PM PDT -jphamtv,2024-04-05T06:34:45Z,- jphamtv closed issue by PR 6538: [6483](https://github.com/hackforla/website/issues/6483#event-12368597824) at 2024-04-04 11:34 PM PDT -jphamtv,2024-04-05T06:38:07Z,- jphamtv closed issue by PR 6540: [6482](https://github.com/hackforla/website/issues/6482#event-12368626892) at 2024-04-04 11:38 PM PDT -jphamtv,2024-04-06T18:23:26Z,- jphamtv submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1984597196) at 2024-04-06 11:23 AM PDT -jphamtv,2024-04-06T18:23:52Z,- jphamtv closed issue by PR 6561: [5844](https://github.com/hackforla/website/issues/5844#event-12382175741) at 2024-04-06 11:23 AM PDT -jphamtv,2024-04-09T03:57:09Z,- jphamtv assigned to issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-08 08:57 PM PDT -jphamtv,2024-04-09T05:31:23Z,- jphamtv unassigned from issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-08 10:31 PM PDT -jphamtv,2024-04-11T23:11:18Z,- jphamtv submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1995616413) at 2024-04-11 04:11 PM PDT -jphamtv,2024-04-11T23:22:06Z,- jphamtv submitted pull request review: [6580](https://github.com/hackforla/website/pull/6580#pullrequestreview-1995624741) at 2024-04-11 04:22 PM PDT -jphamtv,2024-04-11T23:23:11Z,- jphamtv closed issue by PR 6580: [6559](https://github.com/hackforla/website/issues/6559#event-12442674047) at 2024-04-11 04:23 PM PDT -jphamtv,2024-04-11T23:37:12Z,- jphamtv closed issue by PR 6613: [6511](https://github.com/hackforla/website/issues/6511#event-12442743245) at 2024-04-11 04:37 PM PDT -jphamtv,2024-04-11T23:44:09Z,- jphamtv closed issue by PR 6612: [6513](https://github.com/hackforla/website/issues/6513#event-12442778509) at 2024-04-11 04:44 PM PDT -jphamtv,2024-04-11T23:52:39Z,- jphamtv submitted pull request review: [6620](https://github.com/hackforla/website/pull/6620#pullrequestreview-1995647106) at 2024-04-11 04:52 PM PDT -jphamtv,2024-04-11T23:52:51Z,- jphamtv closed issue by PR 6620: [6175](https://github.com/hackforla/website/issues/6175#event-12442818244) at 2024-04-11 04:52 PM PDT -jphamtv,2024-04-12T04:59:01Z,- jphamtv submitted pull request review: [6616](https://github.com/hackforla/website/pull/6616#pullrequestreview-1995873215) at 2024-04-11 09:59 PM PDT -jphamtv,2024-04-12T04:59:12Z,- jphamtv closed issue by PR 6616: [6172](https://github.com/hackforla/website/issues/6172#event-12444434395) at 2024-04-11 09:59 PM PDT -jphamtv,2024-04-12T05:03:48Z,- jphamtv submitted pull request review: [6618](https://github.com/hackforla/website/pull/6618#pullrequestreview-1995876941) at 2024-04-11 10:03 PM PDT -jphamtv,2024-04-12T05:03:58Z,- jphamtv closed issue by PR 6618: [6173](https://github.com/hackforla/website/issues/6173#event-12444464613) at 2024-04-11 10:03 PM PDT -jphamtv,2024-04-12T05:14:10Z,- jphamtv submitted pull request review: [6624](https://github.com/hackforla/website/pull/6624#pullrequestreview-1995885607) at 2024-04-11 10:14 PM PDT -jphamtv,2024-04-12T05:14:33Z,- jphamtv closed issue by PR 6624: [6515](https://github.com/hackforla/website/issues/6515#event-12444525752) at 2024-04-11 10:14 PM PDT -jphamtv,2024-04-16T00:27:20Z,- jphamtv commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2058028465) at 2024-04-15 05:27 PM PDT -jphamtv,2024-04-16T17:19:47Z,- jphamtv commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2059574932) at 2024-04-16 10:19 AM PDT -jphamtv,2024-04-16T17:19:47Z,- jphamtv closed issue as completed: [6162](https://github.com/hackforla/website/issues/6162#event-12493707035) at 2024-04-16 10:19 AM PDT -jphamtv,2024-04-18T21:54:23Z,- jphamtv closed issue by PR 6617: [6514](https://github.com/hackforla/website/issues/6514#event-12529601743) at 2024-04-18 02:54 PM PDT -jphamtv,2024-04-18T21:55:49Z,- jphamtv closed issue by PR 6646: [6512](https://github.com/hackforla/website/issues/6512#event-12529615314) at 2024-04-18 02:55 PM PDT -jphamtv,2024-04-18T22:06:34Z,- jphamtv closed issue by PR 6652: [6156](https://github.com/hackforla/website/issues/6156#event-12529709002) at 2024-04-18 03:06 PM PDT -jphamtv,2024-04-18T22:19:11Z,- jphamtv submitted pull request review: [6657](https://github.com/hackforla/website/pull/6657#pullrequestreview-2010015884) at 2024-04-18 03:19 PM PDT -jphamtv,2024-04-18T22:20:20Z,- jphamtv closed issue by PR 6657: [6124](https://github.com/hackforla/website/issues/6124#event-12529833089) at 2024-04-18 03:20 PM PDT -jphamtv,2024-04-18T22:31:59Z,- jphamtv closed issue by PR 6658: [6648](https://github.com/hackforla/website/issues/6648#event-12529938926) at 2024-04-18 03:31 PM PDT -jphamtv,2024-04-19T00:03:28Z,- jphamtv commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065509422) at 2024-04-18 05:03 PM PDT -jphamtv,2024-04-19T00:13:38Z,- jphamtv commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065518760) at 2024-04-18 05:13 PM PDT -jphamtv,2024-04-19T00:15:26Z,- jphamtv commented on issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2065520425) at 2024-04-18 05:15 PM PDT -jphamtv,2024-04-19T00:16:09Z,- jphamtv commented on issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2065521023) at 2024-04-18 05:16 PM PDT -jphamtv,2024-04-23T00:00:53Z,- jphamtv opened issue: [6709](https://github.com/hackforla/website/issues/6709) at 2024-04-22 05:00 PM PDT -jphamtv,2024-04-23T00:42:51Z,- jphamtv assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2071145939) at 2024-04-22 05:42 PM PDT -jphamtv,2024-04-25T19:07:08Z,- jphamtv closed issue by PR 6711: [6632](https://github.com/hackforla/website/issues/6632#event-12614116955) at 2024-04-25 12:07 PM PDT -jphamtv,2024-04-25T19:25:23Z,- jphamtv commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2078024067) at 2024-04-25 12:25 PM PDT -jphamtv,2024-04-25T19:36:12Z,- jphamtv commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-04-25 12:36 PM PDT -jphamtv,2024-04-25T20:24:53Z,- jphamtv submitted pull request review: [6678](https://github.com/hackforla/website/pull/6678#pullrequestreview-2023509170) at 2024-04-25 01:24 PM PDT -jphamtv,2024-04-25T20:25:10Z,- jphamtv closed issue by PR 6678: [5880](https://github.com/hackforla/website/issues/5880#event-12615092093) at 2024-04-25 01:25 PM PDT -jphamtv,2024-04-25T20:33:53Z,- jphamtv submitted pull request review: [6744](https://github.com/hackforla/website/pull/6744#pullrequestreview-2023525965) at 2024-04-25 01:33 PM PDT -jphamtv,2024-04-25T20:41:58Z,- jphamtv submitted pull request review: [6745](https://github.com/hackforla/website/pull/6745#pullrequestreview-2023542949) at 2024-04-25 01:41 PM PDT -jphamtv,2024-04-25T20:45:09Z,- jphamtv submitted pull request review: [6746](https://github.com/hackforla/website/pull/6746#pullrequestreview-2023547817) at 2024-04-25 01:45 PM PDT -jphamtv,2024-04-25T21:07:26Z,- jphamtv submitted pull request review: [6748](https://github.com/hackforla/website/pull/6748#pullrequestreview-2023582927) at 2024-04-25 02:07 PM PDT -jphamtv,2024-04-26T19:56:25Z,- jphamtv unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-04-26 12:56 PM PDT -jphamtv,2024-04-27T21:48:30Z,- jphamtv submitted pull request review: [6764](https://github.com/hackforla/website/pull/6764#pullrequestreview-2026750606) at 2024-04-27 02:48 PM PDT -jphamtv,2024-04-27T21:51:48Z,- jphamtv submitted pull request review: [6764](https://github.com/hackforla/website/pull/6764#pullrequestreview-2026750977) at 2024-04-27 02:51 PM PDT -jphamtv,2024-04-27T22:08:54Z,- jphamtv commented on pull request: [6764](https://github.com/hackforla/website/pull/6764#issuecomment-2081213834) at 2024-04-27 03:08 PM PDT -jphamtv,2024-05-02T20:02:56Z,- jphamtv commented on pull request: [6781](https://github.com/hackforla/website/pull/6781#issuecomment-2091456458) at 2024-05-02 01:02 PM PDT -jphamtv,2024-05-02T20:03:33Z,- jphamtv closed issue by PR 6781: [6181](https://github.com/hackforla/website/issues/6181#event-12688596190) at 2024-05-02 01:03 PM PDT -jphamtv,2024-05-02T20:05:36Z,- jphamtv closed issue by PR 6791: [6701](https://github.com/hackforla/website/issues/6701#event-12688618866) at 2024-05-02 01:05 PM PDT -jphamtv,2024-05-02T20:07:02Z,- jphamtv closed issue by PR 6792: [6702](https://github.com/hackforla/website/issues/6702#event-12688635525) at 2024-05-02 01:07 PM PDT -jphamtv,2024-05-02T23:22:48Z,- jphamtv commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2091899877) at 2024-05-02 04:22 PM PDT -jphamtv,2024-05-02T23:50:06Z,- jphamtv submitted pull request review: [6801](https://github.com/hackforla/website/pull/6801#pullrequestreview-2037129887) at 2024-05-02 04:50 PM PDT -jphamtv,2024-05-09T19:44:52Z,- jphamtv closed issue by PR 6839: [6240](https://github.com/hackforla/website/issues/6240#event-12761393476) at 2024-05-09 12:44 PM PDT -jphamtv,2024-05-09T23:20:56Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2048990450) at 2024-05-09 04:20 PM PDT -jphamtv,2024-05-09T23:38:29Z,- jphamtv commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2103607266) at 2024-05-09 04:38 PM PDT -jphamtv,2024-05-09T23:50:52Z,- jphamtv commented on issue: [6569](https://github.com/hackforla/website/issues/6569#issuecomment-2103615943) at 2024-05-09 04:50 PM PDT -jphamtv,2024-05-09T23:50:52Z,- jphamtv closed issue as completed: [6569](https://github.com/hackforla/website/issues/6569#event-12763242555) at 2024-05-09 04:50 PM PDT -jphamtv,2024-05-14T00:51:32Z,- jphamtv opened pull request: [6853](https://github.com/hackforla/website/pull/6853) at 2024-05-13 05:51 PM PDT -jphamtv,2024-05-14T20:01:22Z,- jphamtv commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2111043589) at 2024-05-14 01:01 PM PDT -jphamtv,2024-05-16T17:56:17Z,- jphamtv closed issue by PR 6852: [6732](https://github.com/hackforla/website/issues/6732#event-12837798750) at 2024-05-16 10:56 AM PDT -jphamtv,2024-05-16T17:58:41Z,- jphamtv closed issue by PR 6855: [6724](https://github.com/hackforla/website/issues/6724#event-12837823861) at 2024-05-16 10:58 AM PDT -jphamtv,2024-05-16T22:22:03Z,- jphamtv closed issue as completed: [6637](https://github.com/hackforla/website/issues/6637#event-12840593602) at 2024-05-16 03:22 PM PDT -jphamtv,2024-05-23T20:01:10Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2074891522) at 2024-05-23 01:01 PM PDT -jphamtv,2024-05-23T20:11:09Z,- jphamtv commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2127940746) at 2024-05-23 01:11 PM PDT -jphamtv,2024-05-23T20:37:44Z,- jphamtv submitted pull request review: [6886](https://github.com/hackforla/website/pull/6886#pullrequestreview-2074950464) at 2024-05-23 01:37 PM PDT -jphamtv,2024-05-23T20:37:53Z,- jphamtv closed issue by PR 6886: [6718](https://github.com/hackforla/website/issues/6718#event-12914951293) at 2024-05-23 01:37 PM PDT -jphamtv,2024-05-23T20:46:43Z,- jphamtv closed issue by PR 6888: [6837](https://github.com/hackforla/website/issues/6837#event-12915029693) at 2024-05-23 01:46 PM PDT -jphamtv,2024-05-23T22:38:43Z,- jphamtv commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2128149627) at 2024-05-23 03:38 PM PDT -jphamtv,2024-05-23T22:38:43Z,- jphamtv closed issue as completed: [6188](https://github.com/hackforla/website/issues/6188#event-12916066266) at 2024-05-23 03:38 PM PDT -jphamtv,2024-05-24T06:22:48Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2128646963) at 2024-05-23 11:22 PM PDT -jphamtv,2024-05-30T17:49:44Z,- jphamtv closed issue by PR 6897: [6722](https://github.com/hackforla/website/issues/6722#event-12989790941) at 2024-05-30 10:49 AM PDT -jphamtv,2024-05-30T18:01:42Z,- jphamtv commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2140493583) at 2024-05-30 11:01 AM PDT -jphamtv,2024-05-30T18:04:49Z,- jphamtv closed issue by PR 6906: [6760](https://github.com/hackforla/website/issues/6760#event-12989938934) at 2024-05-30 11:04 AM PDT -jphamtv,2024-05-30T18:10:41Z,- jphamtv submitted pull request review: [6912](https://github.com/hackforla/website/pull/6912#pullrequestreview-2089062467) at 2024-05-30 11:10 AM PDT -jphamtv,2024-05-30T18:11:03Z,- jphamtv closed issue by PR 6912: [6729](https://github.com/hackforla/website/issues/6729#event-12989994648) at 2024-05-30 11:11 AM PDT -jphamtv,2024-05-30T18:28:28Z,- jphamtv commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140585301) at 2024-05-30 11:28 AM PDT -jphamtv,2024-05-30T18:31:51Z,- jphamtv commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2140597416) at 2024-05-30 11:31 AM PDT -jphamtv,2024-05-30T18:48:14Z,- jphamtv commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2140662606) at 2024-05-30 11:48 AM PDT -jphamtv,2024-05-30T19:01:19Z,- jphamtv commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2140692619) at 2024-05-30 12:01 PM PDT -jphamtv,2024-05-30T19:41:45Z,- jphamtv submitted pull request review: [6907](https://github.com/hackforla/website/pull/6907#pullrequestreview-2089236412) at 2024-05-30 12:41 PM PDT -jphamtv,2024-05-30T20:07:43Z,- jphamtv commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2140785433) at 2024-05-30 01:07 PM PDT -jphamtv,2024-05-30T20:07:43Z,- jphamtv closed issue as completed: [6585](https://github.com/hackforla/website/issues/6585#event-12991218361) at 2024-05-30 01:07 PM PDT -jphamtv,2024-06-06T16:47:07Z,- jphamtv closed issue by PR 6958: [6798](https://github.com/hackforla/website/issues/6798#event-13069617117) at 2024-06-06 09:47 AM PDT -jphamtv,2024-06-06T16:49:07Z,- jphamtv closed issue as completed: [3859](https://github.com/hackforla/website/issues/3859#event-13069637859) at 2024-06-06 09:49 AM PDT -jphamtv,2024-06-06T16:51:11Z,- jphamtv closed issue by PR 6963: [6908](https://github.com/hackforla/website/issues/6908#event-13069659777) at 2024-06-06 09:51 AM PDT -jphamtv,2024-06-06T17:06:11Z,- jphamtv submitted pull request review: [6961](https://github.com/hackforla/website/pull/6961#pullrequestreview-2102547467) at 2024-06-06 10:06 AM PDT -jphamtv,2024-06-06T17:06:23Z,- jphamtv closed issue by PR 6961: [6451](https://github.com/hackforla/website/issues/6451#event-13069825253) at 2024-06-06 10:06 AM PDT -jphamtv,2024-06-06T18:55:22Z,- jphamtv commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153192499) at 2024-06-06 11:55 AM PDT -jphamtv,2024-06-06T18:58:32Z,- jphamtv commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153206682) at 2024-06-06 11:58 AM PDT -jphamtv,2024-06-06T19:01:16Z,- jphamtv commented on issue: [6719](https://github.com/hackforla/website/issues/6719#issuecomment-2153217834) at 2024-06-06 12:01 PM PDT -jphamtv,2024-06-06T19:49:00Z,- jphamtv commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2153288969) at 2024-06-06 12:49 PM PDT -jphamtv,2024-06-06T19:51:05Z,- jphamtv commented on pull request: [6905](https://github.com/hackforla/website/pull/6905#issuecomment-2153292371) at 2024-06-06 12:51 PM PDT -jphamtv,2024-06-07T00:11:45Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2103401335) at 2024-06-06 05:11 PM PDT -jphamtv,2024-06-13T19:12:43Z,- jphamtv submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2116713426) at 2024-06-13 12:12 PM PDT -jphamtv,2024-06-13T19:14:12Z,- jphamtv closed issue by PR 6916: [6719](https://github.com/hackforla/website/issues/6719#event-13151722367) at 2024-06-13 12:14 PM PDT -jphamtv,2024-06-13T19:17:59Z,- jphamtv closed issue by PR 6980: [6938](https://github.com/hackforla/website/issues/6938#event-13151760454) at 2024-06-13 12:17 PM PDT -jphamtv,2024-06-13T20:44:21Z,- jphamtv closed issue by PR 6973: [6909](https://github.com/hackforla/website/issues/6909#event-13152590623) at 2024-06-13 01:44 PM PDT -jphamtv,2024-06-13T21:02:21Z,- jphamtv commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2166790567) at 2024-06-13 02:02 PM PDT -jphamtv,2024-06-13T23:11:02Z,- jphamtv commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2166933992) at 2024-06-13 04:11 PM PDT -jphamtv,2024-06-13T23:43:48Z,- jphamtv commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2166964609) at 2024-06-13 04:43 PM PDT -jphamtv,2024-06-20T18:43:23Z,- jphamtv closed issue by PR 6976: [6930](https://github.com/hackforla/website/issues/6930#event-13233143655) at 2024-06-20 11:43 AM PDT -jphamtv,2024-06-20T18:44:16Z,- jphamtv closed issue by PR 7016: [6939](https://github.com/hackforla/website/issues/6939#event-13233152124) at 2024-06-20 11:44 AM PDT -jphamtv,2024-06-20T18:47:45Z,- jphamtv closed issue by PR 7017: [6918](https://github.com/hackforla/website/issues/6918#event-13233199529) at 2024-06-20 11:47 AM PDT -jphamtv,2024-06-20T19:19:46Z,- jphamtv commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2181370620) at 2024-06-20 12:19 PM PDT -jphamtv,2024-06-20T19:58:56Z,- jphamtv commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2181443380) at 2024-06-20 12:58 PM PDT -jphamtv,2024-06-20T20:07:44Z,- jphamtv submitted pull request review: [7037](https://github.com/hackforla/website/pull/7037#pullrequestreview-2131262817) at 2024-06-20 01:07 PM PDT -jphamtv,2024-06-20T20:08:01Z,- jphamtv closed issue by PR 7037: [6931](https://github.com/hackforla/website/issues/6931#event-13233990879) at 2024-06-20 01:08 PM PDT -jphamtv,2024-06-27T17:41:38Z,- jphamtv submitted pull request review: [7070](https://github.com/hackforla/website/pull/7070#pullrequestreview-2146091055) at 2024-06-27 10:41 AM PDT -jphamtv,2024-06-27T17:41:48Z,- jphamtv closed issue by PR 7070: [7061](https://github.com/hackforla/website/issues/7061#event-13321058139) at 2024-06-27 10:41 AM PDT -jphamtv,2024-06-27T17:50:41Z,- jphamtv commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195310507) at 2024-06-27 10:50 AM PDT -jphamtv,2024-06-27T18:11:08Z,- jphamtv commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2195377318) at 2024-06-27 11:11 AM PDT -jphamtv,2024-06-27T18:11:43Z,- jphamtv commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2195380392) at 2024-06-27 11:11 AM PDT -jphamtv,2024-06-27T18:16:45Z,- jphamtv commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2195396302) at 2024-06-27 11:16 AM PDT -jphamtv,2024-06-27T18:20:35Z,- jphamtv commented on pull request: [7052](https://github.com/hackforla/website/pull/7052#issuecomment-2195406245) at 2024-06-27 11:20 AM PDT -jphamtv,2024-06-27T18:28:00Z,- jphamtv submitted pull request review: [7068](https://github.com/hackforla/website/pull/7068#pullrequestreview-2146212576) at 2024-06-27 11:28 AM PDT -jphamtv,2024-06-27T18:28:22Z,- jphamtv closed issue by PR 7068: [5146](https://github.com/hackforla/website/issues/5146#event-13321898468) at 2024-06-27 11:28 AM PDT -jphamtv,2024-06-27T18:37:01Z,- jphamtv commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2195438167) at 2024-06-27 11:37 AM PDT -jphamtv,2024-06-27T18:52:17Z,- jphamtv commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195460614) at 2024-06-27 11:52 AM PDT -jphamtv,2024-06-27T18:53:59Z,- jphamtv commented on issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2195463205) at 2024-06-27 11:53 AM PDT -jphamtv,2024-06-27T18:53:59Z,- jphamtv closed issue as not planned: [7047](https://github.com/hackforla/website/issues/7047#event-13322225515) at 2024-06-27 11:53 AM PDT -jphamtv,2024-06-27T22:52:07Z,- jphamtv commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2195793388) at 2024-06-27 03:52 PM PDT -jphamtv,2024-08-08T19:21:18Z,- jphamtv closed issue by PR 7229: [7138](https://github.com/hackforla/website/issues/7138#event-13811281157) at 2024-08-08 12:21 PM PDT -jphamtv,2024-08-08T19:24:42Z,- jphamtv closed issue by PR 7235: [7171](https://github.com/hackforla/website/issues/7171#event-13811311591) at 2024-08-08 12:24 PM PDT -jphamtv,2024-08-08T19:31:48Z,- jphamtv submitted pull request review: [7244](https://github.com/hackforla/website/pull/7244#pullrequestreview-2228697643) at 2024-08-08 12:31 PM PDT -jphamtv,2024-08-08T19:32:02Z,- jphamtv closed issue by PR 7244: [7139](https://github.com/hackforla/website/issues/7139#event-13811378734) at 2024-08-08 12:32 PM PDT -jphamtv,2024-08-08T19:35:21Z,- jphamtv commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2276521751) at 2024-08-08 12:35 PM PDT -jphamtv,2024-08-08T19:45:22Z,- jphamtv commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2276535955) at 2024-08-08 12:45 PM PDT -jphamtv,2024-08-15T20:19:46Z,- jphamtv commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2292161485) at 2024-08-15 01:19 PM PDT -jphamtv,2024-08-16T00:04:45Z,- jphamtv submitted pull request review: [7228](https://github.com/hackforla/website/pull/7228#pullrequestreview-2241542254) at 2024-08-15 05:04 PM PDT -jphamtv,2024-08-16T00:05:05Z,- jphamtv closed issue by PR 7228: [7140](https://github.com/hackforla/website/issues/7140#event-13904240648) at 2024-08-15 05:05 PM PDT -jphamtv,2024-08-16T18:40:19Z,- jphamtv commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2293982605) at 2024-08-16 11:40 AM PDT -jphamtv,2024-08-19T01:40:08Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2295511629) at 2024-08-18 06:40 PM PDT -jphamtv,2024-08-21T20:36:28Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2302969394) at 2024-08-21 01:36 PM PDT -jphamtv,2024-08-22T19:12:20Z,- jphamtv closed issue by PR 7306: [7253](https://github.com/hackforla/website/issues/7253#event-13982945503) at 2024-08-22 12:12 PM PDT -jphamtv,2024-08-22T19:20:26Z,- jphamtv submitted pull request review: [7328](https://github.com/hackforla/website/pull/7328#pullrequestreview-2255465160) at 2024-08-22 12:20 PM PDT -jphamtv,2024-08-22T19:20:37Z,- jphamtv closed issue by PR 7328: [7133](https://github.com/hackforla/website/issues/7133#event-13983023396) at 2024-08-22 12:20 PM PDT -jphamtv,2024-08-22T19:24:27Z,- jphamtv commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2305474522) at 2024-08-22 12:24 PM PDT -jphamtv,2024-08-22T19:26:21Z,- jphamtv commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2305477359) at 2024-08-22 12:26 PM PDT -jphamtv,2024-08-29T22:17:03Z,- jphamtv closed issue by PR 7361: [7282](https://github.com/hackforla/website/issues/7282#event-14071090922) at 2024-08-29 03:17 PM PDT -jphamtv,2024-08-29T23:17:52Z,- jphamtv closed issue by PR 7345: [7189](https://github.com/hackforla/website/issues/7189#event-14072096853) at 2024-08-29 04:17 PM PDT -jphamtv,2024-08-29T23:23:05Z,- jphamtv submitted pull request review: [7365](https://github.com/hackforla/website/pull/7365#pullrequestreview-2270589009) at 2024-08-29 04:23 PM PDT -jphamtv,2024-08-29T23:23:13Z,- jphamtv closed issue by PR 7365: [7292](https://github.com/hackforla/website/issues/7292#event-14072144523) at 2024-08-29 04:23 PM PDT -jphamtv,2024-08-29T23:37:05Z,- jphamtv submitted pull request review: [7364](https://github.com/hackforla/website/pull/7364#pullrequestreview-2270614454) at 2024-08-29 04:37 PM PDT -jphamtv,2024-08-29T23:37:23Z,- jphamtv closed issue by PR 7364: [7242](https://github.com/hackforla/website/issues/7242#event-14072265733) at 2024-08-29 04:37 PM PDT -jphamtv,2024-08-29T23:40:23Z,- jphamtv commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319465599) at 2024-08-29 04:40 PM PDT -jphamtv,2024-09-06T20:42:54Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2334781628) at 2024-09-06 01:42 PM PDT -jphamtv,2024-09-12T19:49:48Z,- jphamtv closed issue by PR 7369: [7248](https://github.com/hackforla/website/issues/7248#event-14238177444) at 2024-09-12 12:49 PM PDT -jphamtv,2024-09-12T20:02:02Z,- jphamtv submitted pull request review: [7437](https://github.com/hackforla/website/pull/7437#pullrequestreview-2301299384) at 2024-09-12 01:02 PM PDT -jphamtv,2024-09-12T20:02:14Z,- jphamtv closed issue by PR 7437: [7176](https://github.com/hackforla/website/issues/7176#event-14238297799) at 2024-09-12 01:02 PM PDT -jphamtv,2024-09-12T20:14:31Z,- jphamtv commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2347155864) at 2024-09-12 01:14 PM PDT -jphamtv,2024-09-12T21:04:56Z,- jphamtv commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2347240892) at 2024-09-12 02:04 PM PDT -jphamtv,2024-09-12T22:02:01Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2347322008) at 2024-09-12 03:02 PM PDT -jphamtv,2024-09-20T00:05:23Z,- jphamtv commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2362442870) at 2024-09-19 05:05 PM PDT -jphamtv,2024-09-20T00:06:13Z,- jphamtv commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2362445003) at 2024-09-19 05:06 PM PDT -jphamtv,2024-09-20T00:09:53Z,- jphamtv commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2362451543) at 2024-09-19 05:09 PM PDT -jphamtv,2024-09-26T20:45:47Z,- jphamtv closed issue by PR 7467: [7304](https://github.com/hackforla/website/issues/7304#event-14422402077) at 2024-09-26 01:45 PM PDT -jphamtv,2024-09-26T21:06:17Z,- jphamtv closed issue by PR 7514: [7194](https://github.com/hackforla/website/issues/7194#event-14422588843) at 2024-09-26 02:06 PM PDT -jphamtv,2024-09-26T21:20:18Z,- jphamtv closed issue by PR 7523: [7494](https://github.com/hackforla/website/issues/7494#event-14422710983) at 2024-09-26 02:20 PM PDT -jphamtv,2024-09-26T22:01:57Z,- jphamtv commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2378014731) at 2024-09-26 03:01 PM PDT -jphamtv,2024-09-26T22:01:57Z,- jphamtv closed issue as completed: [5973](https://github.com/hackforla/website/issues/5973#event-14423023391) at 2024-09-26 03:01 PM PDT -jphamtv,2024-10-03T23:30:27Z,- jphamtv closed issue by PR 7554: [7457](https://github.com/hackforla/website/issues/7457#event-14511322004) at 2024-10-03 04:30 PM PDT -jphamtv,2024-10-03T23:42:32Z,- jphamtv commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2392517371) at 2024-10-03 04:42 PM PDT -jphamtv,2024-10-04T20:46:26Z,- jphamtv closed issue by PR 7501: [7429](https://github.com/hackforla/website/issues/7429#event-14524875783) at 2024-10-04 01:46 PM PDT -jphamtv,2024-10-10T20:30:31Z,- jphamtv commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2405984728) at 2024-10-10 01:30 PM PDT -jphamtv,2024-10-10T20:30:31Z,- jphamtv closed issue as completed: [7392](https://github.com/hackforla/website/issues/7392#event-14597030319) at 2024-10-10 01:30 PM PDT -jphamtv,2024-10-31T22:30:28Z,- jphamtv closed issue by PR 7656: [7600](https://github.com/hackforla/website/issues/7600#event-15049318440) at 2024-10-31 03:30 PM PDT -jphamtv,2024-10-31T22:31:38Z,- jphamtv commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2450958256) at 2024-10-31 03:31 PM PDT -jphamtv,2024-11-15T00:52:03Z,- jphamtv commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2477728215) at 2024-11-14 04:52 PM PST -jphamtv,2024-11-15T00:52:46Z,- jphamtv closed issue by PR 7712: [7623](https://github.com/hackforla/website/issues/7623#event-15305958739) at 2024-11-14 04:52 PM PST -jphamtv,2024-11-15T01:02:27Z,- jphamtv commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2477739789) at 2024-11-14 05:02 PM PST -jphamtv,2024-11-15T01:15:17Z,- jphamtv closed issue by PR 7715: [7416](https://github.com/hackforla/website/issues/7416#event-15306081471) at 2024-11-14 05:15 PM PST -jphamtv,2024-11-15T01:26:17Z,- jphamtv closed issue by PR 7716: [7649](https://github.com/hackforla/website/issues/7649#event-15306139239) at 2024-11-14 05:26 PM PST -jphamtv,2024-11-15T01:26:44Z,- jphamtv commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2477765857) at 2024-11-14 05:26 PM PST -jphamtv,2024-11-15T01:28:53Z,- jphamtv closed issue by PR 7717: [7458](https://github.com/hackforla/website/issues/7458#event-15306152644) at 2024-11-14 05:28 PM PST -jphamtv,2024-11-15T03:21:29Z,- jphamtv commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2477875097) at 2024-11-14 07:21 PM PST -jphamtv,2024-11-15T03:21:29Z,- jphamtv closed issue as completed: [6872](https://github.com/hackforla/website/issues/6872#event-15306733644) at 2024-11-14 07:21 PM PST -jphamtv,2024-11-22T05:41:06Z,- jphamtv closed issue by PR 7733: [7705](https://github.com/hackforla/website/issues/7705#event-15392413873) at 2024-11-21 09:41 PM PST -jphamtv,2024-11-22T05:44:31Z,- jphamtv closed issue by PR 7744: [7701](https://github.com/hackforla/website/issues/7701#event-15392437624) at 2024-11-21 09:44 PM PST -jphamtv,2024-11-22T06:02:59Z,- jphamtv commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2492936224) at 2024-11-21 10:02 PM PST -jphamtv,2025-01-17T00:21:10Z,- jphamtv commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2597173211) at 2025-01-16 04:21 PM PST -jphamtv,2025-01-17T00:21:10Z,- jphamtv closed issue as completed: [7158](https://github.com/hackforla/website/issues/7158#event-15969516903) at 2025-01-16 04:21 PM PST -jphamtv,2025-01-23T22:33:30Z,- jphamtv commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2611152955) at 2025-01-23 02:33 PM PST -jphamtv,2025-01-31T00:41:21Z,- jphamtv closed issue by PR 7856: [7567](https://github.com/hackforla/website/issues/7567#event-16132259970) at 2025-01-30 04:41 PM PST -jphamtv,2025-01-31T00:56:15Z,- jphamtv commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2626045372) at 2025-01-30 04:56 PM PST -jphamtv,2025-01-31T01:18:19Z,- jphamtv commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2626074797) at 2025-01-30 05:18 PM PST -jphamtv,2025-03-07T01:10:19Z,- jphamtv closed issue by PR 7980: [7629](https://github.com/hackforla/website/issues/7629#event-16625251624) at 2025-03-06 05:10 PM PST -jphamtv,2025-03-07T01:27:51Z,- jphamtv closed issue by PR 7950: [7824](https://github.com/hackforla/website/issues/7824#event-16625359163) at 2025-03-06 05:27 PM PST -jphamtv,2025-03-07T02:16:00Z,- jphamtv commented on pull request: [7962](https://github.com/hackforla/website/pull/7962#issuecomment-2705362657) at 2025-03-06 06:16 PM PST -jphamtv,2025-04-04T22:36:15Z,- jphamtv submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2744215615) at 2025-04-04 03:36 PM PDT -jphamtv,2025-04-17T19:11:46Z,- jphamtv closed issue by PR 8061: [7471](https://github.com/hackforla/website/issues/7471#event-17310717080) at 2025-04-17 12:11 PM PDT -jphamtv,2025-04-17T19:47:59Z,- jphamtv opened issue: [8070](https://github.com/hackforla/website/issues/8070) at 2025-04-17 12:47 PM PDT -jphamtv,2025-04-17T19:54:08Z,- jphamtv commented on issue: [7991](https://github.com/hackforla/website/issues/7991#issuecomment-2813884082) at 2025-04-17 12:54 PM PDT -jphamtv,2025-04-17T19:54:09Z,- jphamtv closed issue as completed: [7991](https://github.com/hackforla/website/issues/7991#event-17311129157) at 2025-04-17 12:54 PM PDT -jphamtv,2025-04-18T17:23:18Z,- jphamtv closed issue by PR 8060: [7481](https://github.com/hackforla/website/issues/7481#event-17322904219) at 2025-04-18 10:23 AM PDT -jphamtv,2025-05-02T01:50:46Z,- jphamtv commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2846126919) at 2025-05-01 06:50 PM PDT -jphamtv,2025-05-02T22:10:13Z,- jphamtv opened issue: [8108](https://github.com/hackforla/website/issues/8108) at 2025-05-02 03:10 PM PDT -jphamtv,2025-05-02T22:12:08Z,- jphamtv commented on issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2848202319) at 2025-05-02 03:12 PM PDT -jphamtv,2025-05-02T22:12:08Z,- jphamtv closed issue as completed: [7868](https://github.com/hackforla/website/issues/7868#event-17505341509) at 2025-05-02 03:12 PM PDT -jphamtv,2025-05-02T22:19:31Z,- jphamtv opened issue: [8109](https://github.com/hackforla/website/issues/8109) at 2025-05-02 03:19 PM PDT -jphamtv,2025-05-02T22:20:11Z,- jphamtv commented on issue: [8023](https://github.com/hackforla/website/issues/8023#issuecomment-2848210694) at 2025-05-02 03:20 PM PDT -jphamtv,2025-05-02T22:20:11Z,- jphamtv closed issue as completed: [8023](https://github.com/hackforla/website/issues/8023#event-17505391202) at 2025-05-02 03:20 PM PDT -jphamtv,2025-05-02T22:42:22Z,- jphamtv opened issue: [8110](https://github.com/hackforla/website/issues/8110) at 2025-05-02 03:42 PM PDT -jphamtv,2025-05-02T22:47:55Z,- jphamtv opened issue: [8111](https://github.com/hackforla/website/issues/8111) at 2025-05-02 03:47 PM PDT -jphamtv,2025-05-02T22:51:10Z,- jphamtv opened issue: [8112](https://github.com/hackforla/website/issues/8112) at 2025-05-02 03:51 PM PDT -jphamtv,2025-05-02T22:55:03Z,- jphamtv commented on issue: [7997](https://github.com/hackforla/website/issues/7997#issuecomment-2848241650) at 2025-05-02 03:55 PM PDT -jphamtv,2025-05-02T22:55:03Z,- jphamtv closed issue as not planned: [7997](https://github.com/hackforla/website/issues/7997#event-17505574732) at 2025-05-02 03:55 PM PDT -jphamtv,2025-05-02T22:58:09Z,- jphamtv commented on issue: [8100](https://github.com/hackforla/website/issues/8100#issuecomment-2848244287) at 2025-05-02 03:58 PM PDT -jphamtv,2025-05-02T22:58:09Z,- jphamtv closed issue as completed: [8100](https://github.com/hackforla/website/issues/8100#event-17505589438) at 2025-05-02 03:58 PM PDT -jphamtv,2025-05-02T23:04:45Z,- jphamtv opened issue: [8113](https://github.com/hackforla/website/issues/8113) at 2025-05-02 04:04 PM PDT -jphamtv,2025-05-02T23:05:16Z,- jphamtv commented on issue: [8050](https://github.com/hackforla/website/issues/8050#issuecomment-2848250437) at 2025-05-02 04:05 PM PDT -jphamtv,2025-05-02T23:05:16Z,- jphamtv closed issue as completed: [8050](https://github.com/hackforla/website/issues/8050#event-17505622888) at 2025-05-02 04:05 PM PDT -jphamtv,2025-05-08T19:27:30Z,- jphamtv opened issue: [8119](https://github.com/hackforla/website/issues/8119) at 2025-05-08 12:27 PM PDT -jphamtv,2025-05-08T19:32:53Z,- jphamtv opened issue: [8120](https://github.com/hackforla/website/issues/8120) at 2025-05-08 12:32 PM PDT -jphamtv,2025-05-08T19:35:37Z,- jphamtv commented on issue: [7905](https://github.com/hackforla/website/issues/7905#issuecomment-2864084210) at 2025-05-08 12:35 PM PDT -jphamtv,2025-05-08T19:35:37Z,- jphamtv closed issue as completed: [7905](https://github.com/hackforla/website/issues/7905#event-17579549756) at 2025-05-08 12:35 PM PDT -jphamtv,2025-05-16T23:05:27Z,- jphamtv closed issue by PR 8141: [7926](https://github.com/hackforla/website/issues/7926#event-17695292097) at 2025-05-16 04:05 PM PDT -jphamtv,2025-05-16T23:07:41Z,- jphamtv closed issue by PR 8142: [7953](https://github.com/hackforla/website/issues/7953#event-17695303644) at 2025-05-16 04:07 PM PDT -jpmikesell,2020-02-03T00:12:14Z,- jpmikesell assigned to issue: [308](https://github.com/hackforla/website/issues/308) at 2020-02-02 04:12 PM PST -jpmikesell,2020-02-09T22:04:02Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-583899172) at 2020-02-09 02:04 PM PST -jpmikesell,2020-02-11T19:16:47Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584804103) at 2020-02-11 11:16 AM PST -jpmikesell,2020-02-11T19:18:14Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584804725) at 2020-02-11 11:18 AM PST -jpmikesell,2020-02-16T20:00:46Z,- jpmikesell unassigned from issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584805202) at 2020-02-16 12:00 PM PST -jpmikesell,2020-03-24T20:33:05Z,- jpmikesell commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-603489772) at 2020-03-24 01:33 PM PDT -jqg123,2523,SKILLS ISSUE -jqg123,2021-11-30T03:42:38Z,- jqg123 assigned to issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:42 PM PST -jqg123,2021-11-30T03:43:06Z,- jqg123 unassigned from issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:43 PM PST -jqg123,2021-11-30T03:44:42Z,- jqg123 opened issue: [2523](https://github.com/hackforla/website/issues/2523) at 2021-11-29 07:44 PM PST -jqg123,2021-11-30T03:45:42Z,- jqg123 assigned to issue: [2523](https://github.com/hackforla/website/issues/2523) at 2021-11-29 07:45 PM PST -jqg123,2021-12-01T21:05:31Z,- jqg123 assigned to issue: [2441](https://github.com/hackforla/website/issues/2441#issuecomment-960296427) at 2021-12-01 01:05 PM PST -jqg123,2021-12-01T21:27:10Z,- jqg123 commented on issue: [2441](https://github.com/hackforla/website/issues/2441#issuecomment-984069300) at 2021-12-01 01:27 PM PST -jqg123,2021-12-01T22:32:24Z,- jqg123 opened pull request: [2530](https://github.com/hackforla/website/pull/2530) at 2021-12-01 02:32 PM PST -jqg123,2021-12-02T18:57:47Z,- jqg123 assigned to issue: [2356](https://github.com/hackforla/website/issues/2356#issuecomment-939420187) at 2021-12-02 10:57 AM PST -jqg123,2021-12-02T19:02:34Z,- jqg123 commented on issue: [2356](https://github.com/hackforla/website/issues/2356#issuecomment-984912160) at 2021-12-02 11:02 AM PST -jqg123,2021-12-02T20:21:53Z,- jqg123 opened pull request: [2538](https://github.com/hackforla/website/pull/2538) at 2021-12-02 12:21 PM PST -jqg123,2021-12-04T23:41:32Z,- jqg123 pull request merged: [2530](https://github.com/hackforla/website/pull/2530#event-5716176775) at 2021-12-04 03:41 PM PST -jqg123,2021-12-07T23:34:26Z,- jqg123 closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-5730528853) at 2021-12-07 03:34 PM PST -jqg123,2021-12-07T23:52:44Z,- jqg123 assigned to issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-984062441) at 2021-12-07 03:52 PM PST -jqg123,2021-12-07T23:55:56Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-988353933) at 2021-12-07 03:55 PM PST -jqg123,2021-12-08T01:48:35Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-988420809) at 2021-12-07 05:48 PM PST -jqg123,2021-12-08T02:06:36Z,- jqg123 opened pull request: [2557](https://github.com/hackforla/website/pull/2557) at 2021-12-07 06:06 PM PST -jqg123,2021-12-08T02:38:18Z,- jqg123 pull request merged: [2538](https://github.com/hackforla/website/pull/2538#event-5731116522) at 2021-12-07 06:38 PM PST -jqg123,2022-02-08T23:11:33Z,- jqg123 closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-6030438237) at 2022-02-08 03:11 PM PST -jqg123,2022-02-08T23:11:50Z,- jqg123 commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1033153969) at 2022-02-08 03:11 PM PST -jqg123,2022-02-08T23:19:03Z,- jqg123 commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1033158588) at 2022-02-08 03:19 PM PST -jqg123,2022-02-13T06:05:21Z,- jqg123 opened pull request: [2774](https://github.com/hackforla/website/pull/2774) at 2022-02-12 10:05 PM PST -jqg123,2022-02-13T06:09:47Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1037820304) at 2022-02-12 10:09 PM PST -jqg123,2022-02-16T02:29:56Z,- jqg123 pull request closed w/o merging: [2557](https://github.com/hackforla/website/pull/2557#event-6079579827) at 2022-02-15 06:29 PM PST -jqg123,2022-02-20T20:08:39Z,- jqg123 opened issue: [2810](https://github.com/hackforla/website/issues/2810) at 2022-02-20 12:08 PM PST -jqg123,2022-02-20T20:08:40Z,- jqg123 assigned to issue: [2810](https://github.com/hackforla/website/issues/2810) at 2022-02-20 12:08 PM PST -jqg123,2022-02-26T20:39:21Z,- jqg123 unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-02-26 12:39 PM PST -jqg123,2022-02-26T20:44:38Z,- jqg123 commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1052589264) at 2022-02-26 12:44 PM PST -jqg123,2022-03-12T01:34:26Z,- jqg123 pull request closed w/o merging: [2774](https://github.com/hackforla/website/pull/2774#event-6228962242) at 2022-03-11 06:34 PM PDT -jqg123,2022-03-12T01:39:08Z,- jqg123 unassigned from issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1043829929) at 2022-03-11 06:39 PM PDT -jtw007,6031,SKILLS ISSUE -jtw007,2024-01-03T03:44:41Z,- jtw007 opened issue: [6031](https://github.com/hackforla/website/issues/6031) at 2024-01-02 07:44 PM PST -jtw007,2024-01-03T03:45:25Z,- jtw007 assigned to issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-1874815367) at 2024-01-02 07:45 PM PST -jtw007,2024-01-09T01:29:13Z,- jtw007 assigned to issue: [6074](https://github.com/hackforla/website/issues/6074) at 2024-01-08 05:29 PM PST -jtw007,2024-01-09T03:36:58Z,- jtw007 opened pull request: [6079](https://github.com/hackforla/website/pull/6079) at 2024-01-08 07:36 PM PST -jtw007,2024-01-09T03:43:30Z,- jtw007 pull request closed w/o merging: [6079](https://github.com/hackforla/website/pull/6079#event-11424795708) at 2024-01-08 07:43 PM PST -jtw007,2024-01-09T03:51:31Z,- jtw007 opened pull request: [6080](https://github.com/hackforla/website/pull/6080) at 2024-01-08 07:51 PM PST -jtw007,2024-01-09T04:01:47Z,- jtw007 pull request closed w/o merging: [6080](https://github.com/hackforla/website/pull/6080#event-11424891566) at 2024-01-08 08:01 PM PST -jtw007,2024-01-09T04:09:42Z,- jtw007 opened pull request: [6081](https://github.com/hackforla/website/pull/6081) at 2024-01-08 08:09 PM PST -jtw007,2024-01-12T22:53:05Z,- jtw007 pull request closed w/o merging: [6081](https://github.com/hackforla/website/pull/6081#event-11474701822) at 2024-01-12 02:53 PM PST -jtw007,2024-01-12T22:56:19Z,- jtw007 opened pull request: [6103](https://github.com/hackforla/website/pull/6103) at 2024-01-12 02:56 PM PST -jtw007,2024-01-12T22:57:49Z,- jtw007 commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1890089390) at 2024-01-12 02:57 PM PST -jtw007,2024-01-17T20:26:36Z,- jtw007 commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1896636766) at 2024-01-17 12:26 PM PST -jtw007,2024-01-18T22:55:43Z,- jtw007 commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1899349396) at 2024-01-18 02:55 PM PST -jtw007,2024-01-19T05:49:27Z,- jtw007 pull request merged: [6103](https://github.com/hackforla/website/pull/6103#event-11533222178) at 2024-01-18 09:49 PM PST -jtw007,2024-01-24T23:30:41Z,- jtw007 closed issue as completed: [6031](https://github.com/hackforla/website/issues/6031#event-11590792736) at 2024-01-24 03:30 PM PST -jtw007,2024-01-24T23:58:11Z,- jtw007 assigned to issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1899881564) at 2024-01-24 03:58 PM PST -jtw007,2024-01-25T01:33:43Z,- jtw007 commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1909200105) at 2024-01-24 05:33 PM PST -jtw007,2024-01-25T22:32:57Z,- jtw007 opened pull request: [6164](https://github.com/hackforla/website/pull/6164) at 2024-01-25 02:32 PM PST -jtw007,2024-01-26T06:56:08Z,- jtw007 pull request merged: [6164](https://github.com/hackforla/website/pull/6164#event-11605549271) at 2024-01-25 10:56 PM PST -jtw007,2024-01-30T23:43:52Z,- jtw007 assigned to issue: [6187](https://github.com/hackforla/website/issues/6187) at 2024-01-30 03:43 PM PST -jtw007,2024-01-30T23:45:23Z,- jtw007 commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1918101638) at 2024-01-30 03:45 PM PST -jtw007,2024-02-01T01:55:27Z,- jtw007 opened pull request: [6203](https://github.com/hackforla/website/pull/6203) at 2024-01-31 05:55 PM PST -jtw007,2024-02-01T06:49:05Z,- jtw007 unassigned from issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1918101638) at 2024-01-31 10:49 PM PST -jtw007,2024-02-01T06:59:19Z,- jtw007 pull request closed w/o merging: [6203](https://github.com/hackforla/website/pull/6203#event-11665365967) at 2024-01-31 10:59 PM PST -jtw007,2024-02-01T20:58:18Z,- jtw007 assigned to issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1875005173) at 2024-02-01 12:58 PM PST -jtw007,2024-02-01T20:58:36Z,- jtw007 unassigned from issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922232023) at 2024-02-01 12:58 PM PST -jtw007,2024-02-01T20:59:08Z,- jtw007 assigned to issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1795855938) at 2024-02-01 12:59 PM PST -jtw007,2024-02-01T21:15:21Z,- jtw007 commented on issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1922257879) at 2024-02-01 01:15 PM PST -jtw007,2024-02-01T22:00:36Z,- jtw007 opened pull request: [6206](https://github.com/hackforla/website/pull/6206) at 2024-02-01 02:00 PM PST -jtw007,2024-02-03T05:33:38Z,- jtw007 pull request merged: [6206](https://github.com/hackforla/website/pull/6206#event-11691680986) at 2024-02-02 09:33 PM PST -jtw007,2024-02-20T00:44:20Z,- jtw007 assigned to issue: [6298](https://github.com/hackforla/website/issues/6298) at 2024-02-19 04:44 PM PST -jtw007,2024-02-20T00:45:30Z,- jtw007 commented on issue: [6298](https://github.com/hackforla/website/issues/6298#issuecomment-1953321229) at 2024-02-19 04:45 PM PST -jtw007,2024-02-21T02:16:24Z,- jtw007 opened pull request: [6328](https://github.com/hackforla/website/pull/6328) at 2024-02-20 06:16 PM PST -jtw007,2024-02-23T01:33:38Z,- jtw007 submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1897262751) at 2024-02-22 05:33 PM PST -jtw007,2024-02-23T08:02:33Z,- jtw007 pull request merged: [6328](https://github.com/hackforla/website/pull/6328#event-11900452861) at 2024-02-23 12:02 AM PST -jtw007,2024-02-25T06:49:47Z,- jtw007 submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1899614726) at 2024-02-24 10:49 PM PST -jtw007,2024-02-29T20:24:09Z,- jtw007 commented on pull request: [6400](https://github.com/hackforla/website/pull/6400#issuecomment-1971897297) at 2024-02-29 12:24 PM PST -jtw007,2024-03-01T02:38:29Z,- jtw007 submitted pull request review: [6400](https://github.com/hackforla/website/pull/6400#pullrequestreview-1910219389) at 2024-02-29 06:38 PM PST -jtw007,2024-06-27T19:35:17Z,- jtw007 commented on issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-2195526353) at 2024-06-27 12:35 PM PDT -junadkat32,5090,SKILLS ISSUE -junadkat32,2023-07-26T03:47:48Z,- junadkat32 opened issue: [5090](https://github.com/hackforla/website/issues/5090) at 2023-07-25 08:47 PM PDT -junadkat32,2023-11-15T21:36:58Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813286564) at 2023-11-15 01:36 PM PST -junadkat32,2023-11-15T21:37:04Z,- junadkat32 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813286564) at 2023-11-15 01:37 PM PST -junadkat32,2023-11-15T21:37:36Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813297093) at 2023-11-15 01:37 PM PST -junadkat32,2023-11-15T22:09:42Z,- junadkat32 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813299500) at 2023-11-15 02:09 PM PST -junadkat32,2023-11-16T18:13:11Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813299500) at 2023-11-16 10:13 AM PST -junadkat32,2023-11-16T18:34:25Z,- junadkat32 commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1815016947) at 2023-11-16 10:34 AM PST -junadkat32,2023-11-16T19:20:06Z,- junadkat32 opened pull request: [5914](https://github.com/hackforla/website/pull/5914) at 2023-11-16 11:20 AM PST -junadkat32,2023-11-16T20:14:23Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815246280) at 2023-11-16 12:14 PM PST -junadkat32,2023-11-16T22:11:55Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815395954) at 2023-11-16 02:11 PM PST -junadkat32,2023-11-17T22:56:27Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1817224208) at 2023-11-17 02:56 PM PST -junadkat32,2023-11-22T22:46:17Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1823597692) at 2023-11-22 02:46 PM PST -junadkat32,2023-11-23T16:43:30Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1824713164) at 2023-11-23 08:43 AM PST -junadkat32,2023-11-27T01:55:36Z,- junadkat32 pull request merged: [5914](https://github.com/hackforla/website/pull/5914#event-11065015373) at 2023-11-26 05:55 PM PST -junadkat32,2023-11-30T19:40:53Z,- junadkat32 assigned to issue: [5674](https://github.com/hackforla/website/issues/5674#issuecomment-1751959664) at 2023-11-30 11:40 AM PST -junadkat32,2023-11-30T20:55:47Z,- junadkat32 opened pull request: [5950](https://github.com/hackforla/website/pull/5950) at 2023-11-30 12:55 PM PST -junadkat32,2023-12-08T16:21:04Z,- junadkat32 submitted pull request review: [5950](https://github.com/hackforla/website/pull/5950#pullrequestreview-1772757871) at 2023-12-08 08:21 AM PST -junadkat32,2023-12-09T19:38:31Z,- junadkat32 pull request merged: [5950](https://github.com/hackforla/website/pull/5950#event-11201318335) at 2023-12-09 11:38 AM PST -junadkat32,2024-01-31T07:01:10Z,- junadkat32 assigned to issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1650934855) at 2024-01-30 11:01 PM PST -junadkat32,2024-02-08T22:28:32Z,- junadkat32 assigned to issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1875028964) at 2024-02-08 02:28 PM PST -junadkat32,2024-02-08T22:30:39Z,- junadkat32 commented on issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1935036593) at 2024-02-08 02:30 PM PST -junadkat32,2024-02-08T23:16:15Z,- junadkat32 opened pull request: [6267](https://github.com/hackforla/website/pull/6267) at 2024-02-08 03:16 PM PST -junadkat32,2024-02-09T14:40:41Z,- junadkat32 commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1936052623) at 2024-02-09 06:40 AM PST -junadkat32,2024-02-10T22:32:35Z,- junadkat32 commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1937301260) at 2024-02-10 02:32 PM PST -junadkat32,2024-02-13T16:37:03Z,- junadkat32 assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937335130) at 2024-02-13 08:37 AM PST -junadkat32,2024-02-13T16:38:44Z,- junadkat32 commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1941971834) at 2024-02-13 08:38 AM PST -junadkat32,2024-02-13T16:48:28Z,- junadkat32 opened pull request: [6287](https://github.com/hackforla/website/pull/6287) at 2024-02-13 08:48 AM PST -junadkat32,2024-02-13T21:26:51Z,- junadkat32 commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1942591247) at 2024-02-13 01:26 PM PST -junadkat32,2024-02-14T07:56:58Z,- junadkat32 unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1943244039) at 2024-02-13 11:56 PM PST -junadkat32,2024-02-14T07:57:58Z,- junadkat32 pull request closed w/o merging: [6287](https://github.com/hackforla/website/pull/6287#event-11798048849) at 2024-02-13 11:57 PM PST -junadkat32,2024-02-16T00:31:24Z,- junadkat32 pull request merged: [6267](https://github.com/hackforla/website/pull/6267#event-11822685686) at 2024-02-15 04:31 PM PST -junadkat32,2024-02-20T18:20:09Z,- junadkat32 assigned to issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 10:20 AM PST -junadkat32,2024-02-20T20:36:02Z,- junadkat32 unassigned from issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 12:36 PM PST -junadkat32,2024-02-20T20:36:24Z,- junadkat32 reopened pull request: [6287](https://github.com/hackforla/website/pull/6287#event-11798048849) at 2024-02-20 12:36 PM PST -junadkat32,2024-02-20T20:40:16Z,- junadkat32 commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1955043171) at 2024-02-20 12:40 PM PST -junadkat32,2024-02-21T00:13:33Z,- junadkat32 pull request closed w/o merging: [6287](https://github.com/hackforla/website/pull/6287#event-11868817149) at 2024-02-20 04:13 PM PST -junadkat32,2024-02-21T03:22:29Z,- junadkat32 assigned to issue: [6311](https://github.com/hackforla/website/issues/6311) at 2024-02-20 07:22 PM PST -junadkat32,2024-02-21T03:23:13Z,- junadkat32 commented on issue: [6311](https://github.com/hackforla/website/issues/6311#issuecomment-1955809806) at 2024-02-20 07:23 PM PST -junadkat32,2024-02-29T01:44:07Z,- junadkat32 opened pull request: [6391](https://github.com/hackforla/website/pull/6391) at 2024-02-28 05:44 PM PST -junadkat32,2024-02-29T02:32:13Z,- junadkat32 pull request closed w/o merging: [6391](https://github.com/hackforla/website/pull/6391#event-11959845318) at 2024-02-28 06:32 PM PST -junadkat32,2024-02-29T02:32:41Z,- junadkat32 commented on pull request: [6391](https://github.com/hackforla/website/pull/6391#issuecomment-1970288108) at 2024-02-28 06:32 PM PST -junadkat32,2024-02-29T04:15:50Z,- junadkat32 opened pull request: [6393](https://github.com/hackforla/website/pull/6393) at 2024-02-28 08:15 PM PST -junadkat32,2024-03-01T16:41:07Z,- junadkat32 commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1973516081) at 2024-03-01 08:41 AM PST -junadkat32,2024-03-02T08:03:20Z,- junadkat32 pull request merged: [6393](https://github.com/hackforla/website/pull/6393#event-11986792880) at 2024-03-02 12:03 AM PST -Jung-GunSong,6042,SKILLS ISSUE -Jung-GunSong,2024-01-03T05:07:12Z,- Jung-GunSong opened issue: [6042](https://github.com/hackforla/website/issues/6042) at 2024-01-02 09:07 PM PST -Jung-GunSong,2024-01-03T05:07:12Z,- Jung-GunSong assigned to issue: [6042](https://github.com/hackforla/website/issues/6042) at 2024-01-02 09:07 PM PST -Jung-GunSong,2024-01-04T22:23:09Z,- Jung-GunSong assigned to issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1839980618) at 2024-01-04 02:23 PM PST -Jung-GunSong,2024-01-04T22:29:57Z,- Jung-GunSong commented on issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1877846425) at 2024-01-04 02:29 PM PST -Jung-GunSong,2024-01-05T00:13:27Z,- Jung-GunSong opened pull request: [6063](https://github.com/hackforla/website/pull/6063) at 2024-01-04 04:13 PM PST -Jung-GunSong,2024-01-07T21:20:48Z,- Jung-GunSong pull request merged: [6063](https://github.com/hackforla/website/pull/6063#event-11412001606) at 2024-01-07 01:20 PM PST -Jung-GunSong,2024-01-08T02:31:56Z,- Jung-GunSong commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880309181) at 2024-01-07 06:31 PM PST -Jung-GunSong,2024-01-10T03:32:45Z,- Jung-GunSong commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1884135976) at 2024-01-09 07:32 PM PST -Jung-GunSong,2024-01-11T22:59:53Z,- Jung-GunSong assigned to issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1805006007) at 2024-01-11 02:59 PM PST -Jung-GunSong,2024-01-11T23:02:13Z,- Jung-GunSong commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1888104997) at 2024-01-11 03:02 PM PST -Jung-GunSong,2024-01-11T23:58:55Z,- Jung-GunSong opened pull request: [6100](https://github.com/hackforla/website/pull/6100) at 2024-01-11 03:58 PM PST -Jung-GunSong,2024-01-17T04:25:16Z,- Jung-GunSong pull request merged: [6100](https://github.com/hackforla/website/pull/6100#event-11506289915) at 2024-01-16 08:25 PM PST -Jung-GunSong,2024-01-18T18:20:31Z,- Jung-GunSong assigned to issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1880320764) at 2024-01-18 10:20 AM PST -Jung-GunSong,2024-01-18T18:22:16Z,- Jung-GunSong commented on issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1898992884) at 2024-01-18 10:22 AM PST -Jung-GunSong,2024-01-19T03:34:37Z,- Jung-GunSong assigned to issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1854938752) at 2024-01-18 07:34 PM PST -Jung-GunSong,2024-01-24T19:19:35Z,- Jung-GunSong commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1908769235) at 2024-01-24 11:19 AM PST -Jung-GunSong,2024-02-01T20:37:57Z,- Jung-GunSong opened pull request: [6205](https://github.com/hackforla/website/pull/6205) at 2024-02-01 12:37 PM PST -Jung-GunSong,2024-02-06T16:36:26Z,- Jung-GunSong commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1930284272) at 2024-02-06 08:36 AM PST -Jung-GunSong,2024-02-07T10:49:38Z,- Jung-GunSong pull request merged: [6205](https://github.com/hackforla/website/pull/6205#event-11730618104) at 2024-02-07 02:49 AM PST -Jung-GunSong,2024-02-16T03:00:15Z,- Jung-GunSong assigned to issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1915700185) at 2024-02-15 07:00 PM PST -Jung-GunSong,2024-02-16T03:01:18Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1947684705) at 2024-02-15 07:01 PM PST -Jung-GunSong,2024-02-26T18:25:11Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1964842947) at 2024-02-26 10:25 AM PST -Jung-GunSong,2024-03-05T19:18:17Z,- Jung-GunSong commented on pull request: [6417](https://github.com/hackforla/website/pull/6417#issuecomment-1979471910) at 2024-03-05 11:18 AM PST -Jung-GunSong,2024-03-05T19:48:22Z,- Jung-GunSong submitted pull request review: [6417](https://github.com/hackforla/website/pull/6417#pullrequestreview-1917973499) at 2024-03-05 11:48 AM PST -Jung-GunSong,2024-03-11T23:27:58Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1989633207) at 2024-03-11 04:27 PM PDT -Jung-GunSong,2024-03-21T15:26:32Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2012634083) at 2024-03-21 08:26 AM PDT -Jung-GunSong,2024-03-27T02:46:32Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2021818530) at 2024-03-26 07:46 PM PDT -Jung-GunSong,2024-05-08T03:36:51Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2099677332) at 2024-05-07 08:36 PM PDT -Jung-GunSong,2024-05-08T03:38:50Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2099678880) at 2024-05-07 08:38 PM PDT -junjun107,3512,SKILLS ISSUE -junjun107,2022-08-31T03:09:48Z,- junjun107 opened issue: [3512](https://github.com/hackforla/website/issues/3512) at 2022-08-30 08:09 PM PDT -jyaymie,3610,SKILLS ISSUE -jyaymie,2022-10-11T02:54:24Z,- jyaymie opened issue: [3610](https://github.com/hackforla/website/issues/3610) at 2022-10-10 07:54 PM PDT -jyaymie,2022-10-12T03:00:34Z,- jyaymie assigned to issue: [3610](https://github.com/hackforla/website/issues/3610) at 2022-10-11 08:00 PM PDT -jyaymie,2022-10-13T21:52:04Z,- jyaymie assigned to issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1048151464) at 2022-10-13 02:52 PM PDT -jyaymie,2022-10-13T21:58:28Z,- jyaymie commented on issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1278219842) at 2022-10-13 02:58 PM PDT -jyaymie,2022-10-13T22:00:39Z,- jyaymie commented on issue: [3610](https://github.com/hackforla/website/issues/3610#issuecomment-1278221387) at 2022-10-13 03:00 PM PDT -jyaymie,2022-10-13T22:34:32Z,- jyaymie opened pull request: [3618](https://github.com/hackforla/website/pull/3618) at 2022-10-13 03:34 PM PDT -jyaymie,2022-10-13T23:07:23Z,- jyaymie commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278268404) at 2022-10-13 04:07 PM PDT -jyaymie,2022-10-13T23:20:47Z,- jyaymie commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278276598) at 2022-10-13 04:20 PM PDT -jyaymie,2022-10-13T23:21:32Z,- jyaymie submitted pull request review: [3617](https://github.com/hackforla/website/pull/3617#pullrequestreview-1141619595) at 2022-10-13 04:21 PM PDT -jyaymie,2022-10-14T02:10:07Z,- jyaymie commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278377636) at 2022-10-13 07:10 PM PDT -jyaymie,2022-10-14T02:26:47Z,- jyaymie pull request merged: [3618](https://github.com/hackforla/website/pull/3618#event-7586420260) at 2022-10-13 07:26 PM PDT -jyaymie,2022-10-14T20:20:08Z,- jyaymie assigned to issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1145812161) at 2022-10-14 01:20 PM PDT -jyaymie,2022-10-14T20:24:46Z,- jyaymie commented on issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1279426828) at 2022-10-14 01:24 PM PDT -jyaymie,2022-10-14T23:02:03Z,- jyaymie opened pull request: [3624](https://github.com/hackforla/website/pull/3624) at 2022-10-14 04:02 PM PDT -jyaymie,2022-10-14T23:07:29Z,- jyaymie commented on pull request: [3621](https://github.com/hackforla/website/pull/3621#issuecomment-1279573540) at 2022-10-14 04:07 PM PDT -jyaymie,2022-10-14T23:10:10Z,- jyaymie submitted pull request review: [3621](https://github.com/hackforla/website/pull/3621#pullrequestreview-1143091937) at 2022-10-14 04:10 PM PDT -jyaymie,2022-10-15T22:05:43Z,- jyaymie pull request merged: [3624](https://github.com/hackforla/website/pull/3624#event-7595562563) at 2022-10-15 03:05 PM PDT -jyaymie,2022-10-16T17:19:36Z,- jyaymie commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1280013456) at 2022-10-16 10:19 AM PDT -jyaymie,2022-10-16T17:42:53Z,- jyaymie submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1143319293) at 2022-10-16 10:42 AM PDT -jyaymie,2022-10-16T17:56:36Z,- jyaymie assigned to issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1264691932) at 2022-10-16 10:56 AM PDT -jyaymie,2022-10-16T17:59:00Z,- jyaymie commented on issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1280020760) at 2022-10-16 10:59 AM PDT -jyaymie,2022-10-16T19:21:58Z,- jyaymie opened pull request: [3629](https://github.com/hackforla/website/pull/3629) at 2022-10-16 12:21 PM PDT -jyaymie,2022-10-17T17:57:45Z,- jyaymie submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1144592029) at 2022-10-17 10:57 AM PDT -jyaymie,2022-10-18T00:07:06Z,- jyaymie commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1281648054) at 2022-10-17 05:07 PM PDT -jyaymie,2022-10-18T00:23:56Z,- jyaymie submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1144947931) at 2022-10-17 05:23 PM PDT -jyaymie,2022-10-18T01:20:38Z,- jyaymie pull request merged: [3629](https://github.com/hackforla/website/pull/3629#event-7606983148) at 2022-10-17 06:20 PM PDT -jyaymie,2022-10-18T18:57:26Z,- jyaymie submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1146361349) at 2022-10-18 11:57 AM PDT -jyaymie,2022-10-19T21:10:20Z,- jyaymie commented on pull request: [3642](https://github.com/hackforla/website/pull/3642#issuecomment-1284577969) at 2022-10-19 02:10 PM PDT -jyaymie,2022-10-19T21:11:52Z,- jyaymie submitted pull request review: [3642](https://github.com/hackforla/website/pull/3642#pullrequestreview-1148280880) at 2022-10-19 02:11 PM PDT -jyaymie,2022-10-23T18:29:02Z,- jyaymie assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1284381184) at 2022-10-23 11:29 AM PDT -jyaymie,2022-10-23T18:35:57Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1288172342) at 2022-10-23 11:35 AM PDT -jyaymie,2022-10-24T06:15:54Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1288471549) at 2022-10-23 11:15 PM PDT -jyaymie,2022-10-24T18:49:51Z,- jyaymie commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1289453367) at 2022-10-24 11:49 AM PDT -jyaymie,2022-10-24T19:08:29Z,- jyaymie submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1153636118) at 2022-10-24 12:08 PM PDT -jyaymie,2022-10-25T00:03:14Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1289797521) at 2022-10-24 05:03 PM PDT -jyaymie,2022-10-25T21:31:19Z,- jyaymie commented on pull request: [3658](https://github.com/hackforla/website/pull/3658#issuecomment-1291166326) at 2022-10-25 02:31 PM PDT -jyaymie,2022-10-25T21:36:44Z,- jyaymie submitted pull request review: [3658](https://github.com/hackforla/website/pull/3658#pullrequestreview-1155528625) at 2022-10-25 02:36 PM PDT -jyaymie,2022-10-25T21:38:59Z,- jyaymie commented on pull request: [3655](https://github.com/hackforla/website/pull/3655#issuecomment-1291172423) at 2022-10-25 02:38 PM PDT -jyaymie,2022-10-25T21:45:41Z,- jyaymie submitted pull request review: [3655](https://github.com/hackforla/website/pull/3655#pullrequestreview-1155543091) at 2022-10-25 02:45 PM PDT -jyaymie,2022-10-25T22:02:22Z,- jyaymie commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291190215) at 2022-10-25 03:02 PM PDT -jyaymie,2022-10-25T22:08:10Z,- jyaymie commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291194542) at 2022-10-25 03:08 PM PDT -jyaymie,2022-10-25T22:09:46Z,- jyaymie commented on pull request: [3659](https://github.com/hackforla/website/pull/3659#issuecomment-1291195673) at 2022-10-25 03:09 PM PDT -jyaymie,2022-10-25T22:14:08Z,- jyaymie submitted pull request review: [3659](https://github.com/hackforla/website/pull/3659#pullrequestreview-1155597047) at 2022-10-25 03:14 PM PDT -jyaymie,2022-10-25T22:21:11Z,- jyaymie submitted pull request review: [3657](https://github.com/hackforla/website/pull/3657#pullrequestreview-1155610296) at 2022-10-25 03:21 PM PDT -jyaymie,2022-10-26T02:27:02Z,- jyaymie commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1291410720) at 2022-10-25 07:27 PM PDT -jyaymie,2022-10-26T02:47:28Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1291423985) at 2022-10-25 07:47 PM PDT -jyaymie,2022-10-26T03:32:56Z,- jyaymie submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1155813718) at 2022-10-25 08:32 PM PDT -jyaymie,2022-10-26T08:06:02Z,- jyaymie opened pull request: [3664](https://github.com/hackforla/website/pull/3664) at 2022-10-26 01:06 AM PDT -jyaymie,2022-10-27T01:22:21Z,- jyaymie commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292845441) at 2022-10-26 06:22 PM PDT -jyaymie,2022-10-27T01:27:13Z,- jyaymie commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292847914) at 2022-10-26 06:27 PM PDT -jyaymie,2022-10-28T20:48:14Z,- jyaymie submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1160704848) at 2022-10-28 01:48 PM PDT -jyaymie,2022-11-01T04:25:58Z,- jyaymie pull request merged: [3664](https://github.com/hackforla/website/pull/3664#event-7710012207) at 2022-10-31 09:25 PM PDT -jyaymie,2022-11-02T01:52:45Z,- jyaymie commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299448044) at 2022-11-01 06:52 PM PDT -jyaymie,2022-11-02T02:09:04Z,- jyaymie submitted pull request review: [3687](https://github.com/hackforla/website/pull/3687#pullrequestreview-1164300472) at 2022-11-01 07:09 PM PDT -jyaymie,2022-11-02T02:11:49Z,- jyaymie commented on pull request: [3686](https://github.com/hackforla/website/pull/3686#issuecomment-1299463822) at 2022-11-01 07:11 PM PDT -jyaymie,2022-11-02T02:15:10Z,- jyaymie submitted pull request review: [3686](https://github.com/hackforla/website/pull/3686#pullrequestreview-1164306571) at 2022-11-01 07:15 PM PDT -jyaymie,2022-11-02T02:19:46Z,- jyaymie commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299469899) at 2022-11-01 07:19 PM PDT -jyaymie,2022-11-02T02:29:54Z,- jyaymie assigned to issue: [2216](https://github.com/hackforla/website/issues/2216) at 2022-11-01 07:29 PM PDT -jyaymie,2022-11-02T02:35:10Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1299481617) at 2022-11-01 07:35 PM PDT -jyaymie,2022-11-02T18:46:32Z,- jyaymie commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301071191) at 2022-11-02 11:46 AM PDT -jyaymie,2022-11-02T18:50:25Z,- jyaymie submitted pull request review: [3689](https://github.com/hackforla/website/pull/3689#pullrequestreview-1165836220) at 2022-11-02 11:50 AM PDT -jyaymie,2022-11-02T19:45:30Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301143213) at 2022-11-02 12:45 PM PDT -jyaymie,2022-11-03T04:17:03Z,- jyaymie unassigned from issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301143213) at 2022-11-02 09:17 PM PDT -jyaymie,2022-11-03T04:41:54Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301633567) at 2022-11-02 09:41 PM PDT -jyaymie,2022-11-07T15:07:25Z,- jyaymie commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1305751430) at 2022-11-07 07:07 AM PST -jyaymie,2022-11-07T15:11:13Z,- jyaymie submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1170576965) at 2022-11-07 07:11 AM PST -jyaymie,2022-11-07T15:17:19Z,- jyaymie commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1305765721) at 2022-11-07 07:17 AM PST -jyaymie,2022-11-07T15:57:52Z,- jyaymie submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1170659650) at 2022-11-07 07:57 AM PST -jyaymie,2022-11-07T20:17:34Z,- jyaymie commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1306138211) at 2022-11-07 12:17 PM PST -jyaymie,2022-11-07T20:18:56Z,- jyaymie submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1171034427) at 2022-11-07 12:18 PM PST -jyaymie,2022-11-07T21:13:57Z,- jyaymie commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306200304) at 2022-11-07 01:13 PM PST -jyaymie,2022-11-07T21:40:56Z,- jyaymie submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1171133019) at 2022-11-07 01:40 PM PST -jyaymie,2022-11-08T20:01:12Z,- jyaymie commented on pull request: [3699](https://github.com/hackforla/website/pull/3699#issuecomment-1307760111) at 2022-11-08 12:01 PM PST -jyaymie,2022-11-08T20:03:47Z,- jyaymie submitted pull request review: [3699](https://github.com/hackforla/website/pull/3699#pullrequestreview-1172764494) at 2022-11-08 12:03 PM PST -jyaymie,2022-11-08T20:04:27Z,- jyaymie commented on pull request: [3700](https://github.com/hackforla/website/pull/3700#issuecomment-1307764162) at 2022-11-08 12:04 PM PST -jyaymie,2022-11-08T20:09:28Z,- jyaymie submitted pull request review: [3700](https://github.com/hackforla/website/pull/3700#pullrequestreview-1172771505) at 2022-11-08 12:09 PM PST -jyaymie,2022-11-08T20:30:26Z,- jyaymie submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1172795564) at 2022-11-08 12:30 PM PST -jyaymie,2022-11-09T02:26:45Z,- jyaymie commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1308114353) at 2022-11-08 06:26 PM PST -jyaymie,2022-11-09T02:32:06Z,- jyaymie submitted pull request review: [3703](https://github.com/hackforla/website/pull/3703#pullrequestreview-1173166793) at 2022-11-08 06:32 PM PST -jyaymie,2022-11-15T05:46:47Z,- jyaymie commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314805315) at 2022-11-14 09:46 PM PST -jyaymie,2022-11-15T06:08:43Z,- jyaymie submitted pull request review: [3717](https://github.com/hackforla/website/pull/3717#pullrequestreview-1180248957) at 2022-11-14 10:08 PM PST -jyaymie,2022-11-15T06:10:45Z,- jyaymie commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314823031) at 2022-11-14 10:10 PM PST -jyaymie,2022-11-15T06:21:30Z,- jyaymie submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1180258922) at 2022-11-14 10:21 PM PST -jyaymie,2022-11-15T23:07:07Z,- jyaymie commented on pull request: [3721](https://github.com/hackforla/website/pull/3721#issuecomment-1315988412) at 2022-11-15 03:07 PM PST -jyaymie,2022-11-15T23:21:53Z,- jyaymie submitted pull request review: [3721](https://github.com/hackforla/website/pull/3721#pullrequestreview-1181679219) at 2022-11-15 03:21 PM PST -jyaymie,2022-11-15T23:26:58Z,- jyaymie commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316012450) at 2022-11-15 03:26 PM PST -jyaymie,2022-11-15T23:42:24Z,- jyaymie submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1181693537) at 2022-11-15 03:42 PM PST -jyaymie,2022-11-23T03:18:15Z,- jyaymie commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1324500264) at 2022-11-22 07:18 PM PST -jyaymie,2022-11-23T19:35:15Z,- jyaymie submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1192185546) at 2022-11-23 11:35 AM PST -jyaymie,2022-11-23T19:52:13Z,- jyaymie submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1192200951) at 2022-11-23 11:52 AM PST -jyaymie,2022-11-27T19:36:47Z,- jyaymie unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-11-27 11:36 AM PST -jyaymie,2022-11-28T04:48:31Z,- jyaymie commented on pull request: [3749](https://github.com/hackforla/website/pull/3749#issuecomment-1328533655) at 2022-11-27 08:48 PM PST -jyaymie,2022-11-28T05:19:40Z,- jyaymie submitted pull request review: [3749](https://github.com/hackforla/website/pull/3749#pullrequestreview-1195219727) at 2022-11-27 09:19 PM PST -jyaymie,2022-11-29T21:14:23Z,- jyaymie commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1331317658) at 2022-11-29 01:14 PM PST -jyaymie,2022-11-29T21:19:15Z,- jyaymie submitted pull request review: [3753](https://github.com/hackforla/website/pull/3753#pullrequestreview-1198369424) at 2022-11-29 01:19 PM PST -jyaymie,2022-11-29T22:59:40Z,- jyaymie assigned to issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1330824787) at 2022-11-29 02:59 PM PST -jyaymie,2022-11-29T23:01:06Z,- jyaymie commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1331426760) at 2022-11-29 03:01 PM PST -jyaymie,2022-11-30T04:10:57Z,- jyaymie commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1331620548) at 2022-11-29 08:10 PM PST -jyaymie,2022-12-16T20:50:19Z,- jyaymie commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1355588828) at 2022-12-16 12:50 PM PST -jyaymie,2023-01-09T22:19:32Z,- jyaymie opened pull request: [3801](https://github.com/hackforla/website/pull/3801) at 2023-01-09 02:19 PM PST -jyaymie,2023-01-09T22:28:36Z,- jyaymie commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1376420554) at 2023-01-09 02:28 PM PST -jyaymie,2023-01-09T22:33:25Z,- jyaymie submitted pull request review: [3799](https://github.com/hackforla/website/pull/3799#pullrequestreview-1241295973) at 2023-01-09 02:33 PM PST -jyaymie,2023-01-09T22:34:50Z,- jyaymie commented on pull request: [3800](https://github.com/hackforla/website/pull/3800#issuecomment-1376427702) at 2023-01-09 02:34 PM PST -jyaymie,2023-01-09T22:41:04Z,- jyaymie submitted pull request review: [3800](https://github.com/hackforla/website/pull/3800#pullrequestreview-1241303019) at 2023-01-09 02:41 PM PST -jyaymie,2023-01-09T22:42:11Z,- jyaymie submitted pull request review: [3800](https://github.com/hackforla/website/pull/3800#pullrequestreview-1241303833) at 2023-01-09 02:42 PM PST -jyaymie,2023-01-11T02:16:26Z,- jyaymie commented on pull request: [3807](https://github.com/hackforla/website/pull/3807#issuecomment-1378156701) at 2023-01-10 06:16 PM PST -jyaymie,2023-01-11T02:18:53Z,- jyaymie submitted pull request review: [3807](https://github.com/hackforla/website/pull/3807#pullrequestreview-1243206471) at 2023-01-10 06:18 PM PST -jyaymie,2023-01-11T02:19:52Z,- jyaymie commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378158756) at 2023-01-10 06:19 PM PST -jyaymie,2023-01-11T02:32:34Z,- jyaymie submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1243213798) at 2023-01-10 06:32 PM PST -jyaymie,2023-01-11T02:49:09Z,- jyaymie commented on pull request: [3806](https://github.com/hackforla/website/pull/3806#issuecomment-1378174618) at 2023-01-10 06:49 PM PST -jyaymie,2023-01-11T03:00:15Z,- jyaymie submitted pull request review: [3806](https://github.com/hackforla/website/pull/3806#pullrequestreview-1243229117) at 2023-01-10 07:00 PM PST -jyaymie,2023-01-11T03:21:57Z,- jyaymie commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378193836) at 2023-01-10 07:21 PM PST -jyaymie,2023-01-11T06:53:03Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378310835) at 2023-01-10 10:53 PM PST -jyaymie,2023-01-11T07:07:23Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378321175) at 2023-01-10 11:07 PM PST -jyaymie,2023-01-11T21:09:13Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379486772) at 2023-01-11 01:09 PM PST -jyaymie,2023-01-11T21:11:37Z,- jyaymie submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1244618743) at 2023-01-11 01:11 PM PST -jyaymie,2023-01-11T22:45:16Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379579390) at 2023-01-11 02:45 PM PST -jyaymie,2023-01-12T02:39:39Z,- jyaymie pull request merged: [3801](https://github.com/hackforla/website/pull/3801#event-8207120218) at 2023-01-11 06:39 PM PST -jyaymie,2023-01-15T10:15:56Z,- jyaymie assigned to issue: [3701](https://github.com/hackforla/website/issues/3701#event-7819340305) at 2023-01-15 02:15 AM PST -jyaymie,2023-01-15T10:19:02Z,- jyaymie commented on issue: [3701](https://github.com/hackforla/website/issues/3701#issuecomment-1383111960) at 2023-01-15 02:19 AM PST -jyaymie,2023-01-17T06:56:51Z,- jyaymie opened pull request: [3833](https://github.com/hackforla/website/pull/3833) at 2023-01-16 10:56 PM PST -jyaymie,2023-01-17T15:52:50Z,- jyaymie commented on pull request: [3832](https://github.com/hackforla/website/pull/3832#issuecomment-1385636670) at 2023-01-17 07:52 AM PST -jyaymie,2023-01-17T15:54:22Z,- jyaymie submitted pull request review: [3832](https://github.com/hackforla/website/pull/3832#pullrequestreview-1251832684) at 2023-01-17 07:54 AM PST -jyaymie,2023-01-17T19:35:32Z,- jyaymie commented on pull request: [3834](https://github.com/hackforla/website/pull/3834#issuecomment-1385947709) at 2023-01-17 11:35 AM PST -jyaymie,2023-01-17T19:39:27Z,- jyaymie submitted pull request review: [3834](https://github.com/hackforla/website/pull/3834#pullrequestreview-1252328150) at 2023-01-17 11:39 AM PST -jyaymie,2023-01-17T19:41:02Z,- jyaymie commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1385953978) at 2023-01-17 11:41 AM PST -jyaymie,2023-01-17T19:43:19Z,- jyaymie submitted pull request review: [3835](https://github.com/hackforla/website/pull/3835#pullrequestreview-1252338829) at 2023-01-17 11:43 AM PST -jyaymie,2023-01-17T19:44:25Z,- jyaymie commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1385957600) at 2023-01-17 11:44 AM PST -jyaymie,2023-01-17T19:51:38Z,- jyaymie submitted pull request review: [3836](https://github.com/hackforla/website/pull/3836#pullrequestreview-1252357529) at 2023-01-17 11:51 AM PST -jyaymie,2023-01-18T01:00:30Z,- jyaymie pull request merged: [3833](https://github.com/hackforla/website/pull/3833#event-8251200847) at 2023-01-17 05:00 PM PST -jyaymie,2023-01-18T03:37:32Z,- jyaymie commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1386438090) at 2023-01-17 07:37 PM PST -jyaymie,2023-01-18T05:51:58Z,- jyaymie submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1252865373) at 2023-01-17 09:51 PM PST -jyaymie,2023-02-07T23:35:41Z,- jyaymie commented on pull request: [3940](https://github.com/hackforla/website/pull/3940#issuecomment-1421643473) at 2023-02-07 03:35 PM PST -jyaymie,2023-02-07T23:44:53Z,- jyaymie submitted pull request review: [3940](https://github.com/hackforla/website/pull/3940#pullrequestreview-1288175562) at 2023-02-07 03:44 PM PST -jyaymie,2023-02-07T23:47:28Z,- jyaymie commented on pull request: [3954](https://github.com/hackforla/website/pull/3954#issuecomment-1421659093) at 2023-02-07 03:47 PM PST -jyaymie,2023-02-07T23:54:50Z,- jyaymie submitted pull request review: [3954](https://github.com/hackforla/website/pull/3954#pullrequestreview-1288197700) at 2023-02-07 03:54 PM PST -jyaymie,2023-02-07T23:56:33Z,- jyaymie assigned to issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-02-07 03:56 PM PST -jyaymie,2023-02-07T23:56:40Z,- jyaymie unassigned from issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-02-07 03:56 PM PST -jyaymie,2023-02-07T23:57:43Z,- jyaymie commented on pull request: [3947](https://github.com/hackforla/website/pull/3947#issuecomment-1421666661) at 2023-02-07 03:57 PM PST -jyaymie,2023-02-08T00:17:15Z,- jyaymie submitted pull request review: [3947](https://github.com/hackforla/website/pull/3947#pullrequestreview-1288237082) at 2023-02-07 04:17 PM PST -k-cardon,7326,SKILLS ISSUE -k-cardon,2024-08-21T02:56:24Z,- k-cardon opened issue: [7326](https://github.com/hackforla/website/issues/7326) at 2024-08-20 07:56 PM PDT -k-cardon,2024-08-21T02:56:29Z,- k-cardon assigned to issue: [7326](https://github.com/hackforla/website/issues/7326) at 2024-08-20 07:56 PM PDT -k-cardon,2024-08-21T04:28:21Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2300867746) at 2024-08-20 09:28 PM PDT -k-cardon,2024-08-21T04:30:54Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2300885439) at 2024-08-20 09:30 PM PDT -k-cardon,2024-08-23T05:29:34Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2306320992) at 2024-08-22 10:29 PM PDT -k-cardon,2024-08-23T05:45:59Z,- k-cardon assigned to issue: [7172](https://github.com/hackforla/website/issues/7172) at 2024-08-22 10:45 PM PDT -k-cardon,2024-08-23T05:52:52Z,- k-cardon commented on issue: [7172](https://github.com/hackforla/website/issues/7172#issuecomment-2306343216) at 2024-08-22 10:52 PM PDT -k-cardon,2024-08-23T05:53:17Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2306343526) at 2024-08-22 10:53 PM PDT -k-cardon,2024-08-24T05:33:28Z,- k-cardon opened pull request: [7348](https://github.com/hackforla/website/pull/7348) at 2024-08-23 10:33 PM PDT -k-cardon,2024-08-25T15:40:34Z,- k-cardon pull request merged: [7348](https://github.com/hackforla/website/pull/7348#event-14004649695) at 2024-08-25 08:40 AM PDT -k-cardon,2024-08-25T17:45:09Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2308938088) at 2024-08-25 10:45 AM PDT -k-cardon,2024-08-26T04:43:44Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2309304171) at 2024-08-25 09:43 PM PDT -k-cardon,2024-08-26T05:08:26Z,- k-cardon commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2309327389) at 2024-08-25 10:08 PM PDT -k-cardon,2024-08-26T05:09:12Z,- k-cardon submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2259751908) at 2024-08-25 10:09 PM PDT -k-cardon,2024-08-26T05:11:20Z,- k-cardon assigned to issue: [7242](https://github.com/hackforla/website/issues/7242) at 2024-08-25 10:11 PM PDT -k-cardon,2024-08-29T04:15:15Z,- k-cardon commented on issue: [7242](https://github.com/hackforla/website/issues/7242#issuecomment-2316680724) at 2024-08-28 09:15 PM PDT -k-cardon,2024-08-29T05:14:18Z,- k-cardon opened pull request: [7364](https://github.com/hackforla/website/pull/7364) at 2024-08-28 10:14 PM PDT -k-cardon,2024-08-29T16:56:24Z,- k-cardon commented on pull request: [7365](https://github.com/hackforla/website/pull/7365#issuecomment-2318374174) at 2024-08-29 09:56 AM PDT -k-cardon,2024-08-29T16:56:48Z,- k-cardon submitted pull request review: [7365](https://github.com/hackforla/website/pull/7365#pullrequestreview-2269525930) at 2024-08-29 09:56 AM PDT -k-cardon,2024-08-29T16:59:18Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318381676) at 2024-08-29 09:59 AM PDT -k-cardon,2024-08-29T17:00:31Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318384557) at 2024-08-29 10:00 AM PDT -k-cardon,2024-08-29T17:01:46Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318387323) at 2024-08-29 10:01 AM PDT -k-cardon,2024-08-29T17:03:02Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318389980) at 2024-08-29 10:03 AM PDT -k-cardon,2024-08-29T23:37:22Z,- k-cardon pull request merged: [7364](https://github.com/hackforla/website/pull/7364#event-14072265556) at 2024-08-29 04:37 PM PDT -k-cardon,2024-08-30T01:03:08Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2319595312) at 2024-08-29 06:03 PM PDT -k-cardon,2024-08-30T02:07:32Z,- k-cardon assigned to issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2264072165) at 2024-08-29 07:07 PM PDT -k-cardon,2024-09-04T19:44:54Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2329842623) at 2024-09-04 12:44 PM PDT -k-cardon,2024-09-04T19:45:29Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2329843557) at 2024-09-04 12:45 PM PDT -k-cardon,2024-09-04T20:44:33Z,- k-cardon submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2281228377) at 2024-09-04 01:44 PM PDT -k-cardon,2024-09-04T20:46:09Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2329967548) at 2024-09-04 01:46 PM PDT -k-cardon,2024-09-04T21:02:11Z,- k-cardon submitted pull request review: [7370](https://github.com/hackforla/website/pull/7370#pullrequestreview-2281346494) at 2024-09-04 02:02 PM PDT -k-cardon,2024-09-04T21:03:27Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330093787) at 2024-09-04 02:03 PM PDT -k-cardon,2024-09-04T21:25:44Z,- k-cardon submitted pull request review: [7371](https://github.com/hackforla/website/pull/7371#pullrequestreview-2281429520) at 2024-09-04 02:25 PM PDT -k-cardon,2024-09-04T21:26:37Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330175888) at 2024-09-04 02:26 PM PDT -k-cardon,2024-09-04T21:38:49Z,- k-cardon opened issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:38 PM PDT -k-cardon,2024-09-04T21:38:49Z,- k-cardon opened issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:38 PM PDT -k-cardon,2024-09-04T21:42:21Z,- k-cardon assigned to issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:42 PM PDT -k-cardon,2024-09-04T21:44:39Z,- k-cardon opened issue: [7387](https://github.com/hackforla/website/issues/7387) at 2024-09-04 02:44 PM PDT -k-cardon,2024-09-04T21:47:08Z,- k-cardon opened issue: [7388](https://github.com/hackforla/website/issues/7388) at 2024-09-04 02:47 PM PDT -k-cardon,2024-09-04T21:49:27Z,- k-cardon opened issue: [7389](https://github.com/hackforla/website/issues/7389) at 2024-09-04 02:49 PM PDT -k-cardon,2024-09-04T21:51:45Z,- k-cardon opened issue: [7390](https://github.com/hackforla/website/issues/7390) at 2024-09-04 02:51 PM PDT -k-cardon,2024-09-04T21:54:05Z,- k-cardon opened issue: [7391](https://github.com/hackforla/website/issues/7391) at 2024-09-04 02:54 PM PDT -k-cardon,2024-09-04T21:56:53Z,- k-cardon opened issue: [7392](https://github.com/hackforla/website/issues/7392) at 2024-09-04 02:56 PM PDT -k-cardon,2024-09-04T21:59:22Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2330216647) at 2024-09-04 02:59 PM PDT -k-cardon,2024-09-04T22:07:04Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2330237272) at 2024-09-04 03:07 PM PDT -k-cardon,2024-09-04T22:11:14Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330242379) at 2024-09-04 03:11 PM PDT -k-cardon,2024-09-10T05:14:51Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2339638400) at 2024-09-09 10:14 PM PDT -k-cardon,2024-09-10T05:16:00Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2339639746) at 2024-09-09 10:16 PM PDT -k-cardon,2024-09-17T20:47:19Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356901885) at 2024-09-17 01:47 PM PDT -k-cardon,2024-09-17T21:01:42Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2356929332) at 2024-09-17 02:01 PM PDT -k-cardon,2024-09-17T21:04:43Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356933998) at 2024-09-17 02:04 PM PDT -k-cardon,2024-09-17T21:25:31Z,- k-cardon submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2311098936) at 2024-09-17 02:25 PM PDT -k-cardon,2024-09-17T21:34:24Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356976525) at 2024-09-17 02:34 PM PDT -k-cardon,2024-09-18T17:50:31Z,- k-cardon submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2313379226) at 2024-09-18 10:50 AM PDT -k-cardon,2024-09-20T02:13:12Z,- k-cardon assigned to issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:17Z,- k-cardon assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2351429241) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:29Z,- k-cardon unassigned from issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:29Z,- k-cardon unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2351429241) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:18:33Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2362574636) at 2024-09-19 07:18 PM PDT -k-cardon,2024-09-20T02:52:24Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362652176) at 2024-09-19 07:52 PM PDT -k-cardon,2024-09-20T02:58:37Z,- k-cardon assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362652176) at 2024-09-19 07:58 PM PDT -k-cardon,2024-09-24T17:17:57Z,- k-cardon submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2325910232) at 2024-09-24 10:17 AM PDT -k-cardon,2024-09-24T17:23:16Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2371885036) at 2024-09-24 10:23 AM PDT -k-cardon,2024-09-24T17:34:30Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371906814) at 2024-09-24 10:34 AM PDT -k-cardon,2024-09-24T17:36:38Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-09-24 10:36 AM PDT -k-cardon,2024-09-24T17:36:46Z,- k-cardon unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-09-24 10:36 AM PDT -k-cardon,2024-09-25T17:37:12Z,- k-cardon submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2329029009) at 2024-09-25 10:37 AM PDT -k-cardon,2024-09-25T17:38:31Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2374749409) at 2024-09-25 10:38 AM PDT -k-cardon,2024-09-25T17:41:03Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2374755285) at 2024-09-25 10:41 AM PDT -k-cardon,2024-09-26T05:46:11Z,- k-cardon submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2330174051) at 2024-09-25 10:46 PM PDT -k-cardon,2024-10-07T21:29:58Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2397934963) at 2024-10-07 02:29 PM PDT -k-cardon,2024-10-11T02:18:10Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2406408474) at 2024-10-10 07:18 PM PDT -k-cardon,2024-10-11T04:54:59Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2361956733) at 2024-10-10 09:54 PM PDT -k-cardon,2024-10-11T05:00:13Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2406557368) at 2024-10-10 10:00 PM PDT -k-cardon,2024-10-16T04:42:01Z,- k-cardon commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2415718571) at 2024-10-15 09:42 PM PDT -k-cardon,2024-10-16T21:36:33Z,- k-cardon submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2373730084) at 2024-10-16 02:36 PM PDT -k-cardon,2024-10-16T21:38:12Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2418011584) at 2024-10-16 02:38 PM PDT -k-cardon,2024-10-16T21:41:00Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2418015768) at 2024-10-16 02:41 PM PDT -k-cardon,2024-10-20T19:32:05Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2425188740) at 2024-10-20 12:32 PM PDT -k-cardon,2024-10-21T04:04:29Z,- k-cardon submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2380876096) at 2024-10-20 09:04 PM PDT -k-cardon,2024-10-23T20:54:03Z,- k-cardon commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2433445438) at 2024-10-23 01:54 PM PDT -k-cardon,2024-10-25T01:48:48Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394000113) at 2024-10-24 06:48 PM PDT -k-cardon,2024-10-25T01:53:10Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394009605) at 2024-10-24 06:53 PM PDT -k-cardon,2024-10-25T01:56:40Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394012095) at 2024-10-24 06:56 PM PDT -k-cardon,2024-10-25T01:59:03Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2436652917) at 2024-10-24 06:59 PM PDT -k-cardon,2024-10-25T02:23:14Z,- k-cardon assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1972279146) at 2024-10-24 07:23 PM PDT -k-cardon,2024-10-25T02:27:52Z,- k-cardon unassigned from issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436684617) at 2024-10-24 07:27 PM PDT -k-cardon,2024-10-25T02:42:56Z,- k-cardon assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436696961) at 2024-10-24 07:42 PM PDT -k-cardon,2024-10-25T02:46:38Z,- k-cardon commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436700371) at 2024-10-24 07:46 PM PDT -k-cardon,2024-10-27T17:55:43Z,- k-cardon commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2440117396) at 2024-10-27 10:55 AM PDT -k-cardon,2024-10-28T17:21:21Z,- k-cardon opened issue: [7642](https://github.com/hackforla/website/issues/7642) at 2024-10-28 10:21 AM PDT -k-cardon,2024-10-28T23:17:37Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2400421230) at 2024-10-28 04:17 PM PDT -k-cardon,2024-10-30T22:20:43Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2448566533) at 2024-10-30 03:20 PM PDT -k-cardon,2024-11-08T17:39:56Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2465408882) at 2024-11-08 09:39 AM PST -k-cardon,2024-11-14T20:09:11Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477315233) at 2024-11-14 12:09 PM PST -k-cardon,2024-11-15T03:16:19Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477870981) at 2024-11-14 07:16 PM PST -k-cardon,2024-11-17T18:12:22Z,- k-cardon assigned to issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2257389832) at 2024-11-17 10:12 AM PST -k-cardon,2024-11-19T19:58:42Z,- k-cardon commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2486630015) at 2024-11-19 11:58 AM PST -k-cardon,2024-11-22T22:31:56Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2494980968) at 2024-11-22 02:31 PM PST -k-cardon,2024-12-01T15:47:14Z,- k-cardon commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2509841867) at 2024-12-01 07:47 AM PST -k-cardon,2025-01-06T05:58:47Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2572337232) at 2025-01-05 09:58 PM PST -k-cardon,2025-01-10T03:10:41Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2541467929) at 2025-01-09 07:10 PM PST -k-cardon,2025-01-19T22:57:09Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2561111279) at 2025-01-19 02:57 PM PST -k-cardon,2025-01-19T22:58:20Z,- k-cardon commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2601055956) at 2025-01-19 02:58 PM PST -k-cardon,2025-01-22T05:20:50Z,- k-cardon submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2566213477) at 2025-01-21 09:20 PM PST -k-cardon,2025-01-22T05:21:47Z,- k-cardon closed issue by PR 7834: [7751](https://github.com/hackforla/website/issues/7751#event-16023554056) at 2025-01-21 09:21 PM PST -k-cardon,2025-01-22T05:42:04Z,- k-cardon submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2566235447) at 2025-01-21 09:42 PM PST -k-cardon,2025-01-22T05:42:18Z,- k-cardon closed issue by PR 7822: [7433](https://github.com/hackforla/website/issues/7433#event-16023690630) at 2025-01-21 09:42 PM PST -k-cardon,2025-01-31T19:42:54Z,- k-cardon closed issue as completed: [6327](https://github.com/hackforla/website/issues/6327#event-16144900751) at 2025-01-31 11:42 AM PST -k-cardon,2025-02-12T05:43:39Z,- k-cardon submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2610873295) at 2025-02-11 09:43 PM PST -k-cardon,2025-02-12T05:45:12Z,- k-cardon closed issue by PR 7897: [7495](https://github.com/hackforla/website/issues/7495#event-16275286375) at 2025-02-11 09:45 PM PST -k-cardon,2025-04-01T15:45:55Z,- k-cardon unassigned from issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2486630015) at 2025-04-01 08:45 AM PDT -k-rewd,4981,SKILLS ISSUE -k-rewd,2023-07-18T01:57:20Z,- k-rewd opened issue: [4981](https://github.com/hackforla/website/issues/4981) at 2023-07-17 06:57 PM PDT -k-rewd,2023-07-18T03:07:59Z,- k-rewd assigned to issue: [4981](https://github.com/hackforla/website/issues/4981) at 2023-07-17 08:07 PM PDT -k-rewd,2023-07-21T20:56:17Z,- k-rewd assigned to issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1645996006) at 2023-07-21 01:56 PM PDT -k-rewd,2023-07-21T21:00:22Z,- k-rewd commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646234553) at 2023-07-21 02:00 PM PDT -k-rewd,2023-07-21T21:49:47Z,- k-rewd opened pull request: [5046](https://github.com/hackforla/website/pull/5046) at 2023-07-21 02:49 PM PDT -k-rewd,2023-07-22T11:58:51Z,- k-rewd unassigned from issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:58 AM PDT -k-rewd,2023-07-22T12:06:34Z,- k-rewd pull request closed w/o merging: [5046](https://github.com/hackforla/website/pull/5046#event-9891016238) at 2023-07-22 05:06 AM PDT -k-rewd,2023-07-24T20:37:08Z,- k-rewd assigned to issue: [5038](https://github.com/hackforla/website/issues/5038) at 2023-07-24 01:37 PM PDT -k-rewd,2023-07-24T20:39:21Z,- k-rewd commented on issue: [5038](https://github.com/hackforla/website/issues/5038#issuecomment-1648572189) at 2023-07-24 01:39 PM PDT -k-rewd,2023-07-24T22:12:27Z,- k-rewd opened pull request: [5058](https://github.com/hackforla/website/pull/5058) at 2023-07-24 03:12 PM PDT -k-rewd,2023-07-29T00:56:31Z,- k-rewd commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1656495612) at 2023-07-28 05:56 PM PDT -k-rewd,2023-07-29T21:04:40Z,- k-rewd commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1656893460) at 2023-07-29 02:04 PM PDT -k-rewd,2023-07-30T02:43:07Z,- k-rewd pull request merged: [5058](https://github.com/hackforla/website/pull/5058#event-9955918991) at 2023-07-29 07:43 PM PDT -k-rewd,2023-08-04T05:27:59Z,- k-rewd assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1644675439) at 2023-08-03 10:27 PM PDT -k-rewd,2023-08-04T05:34:22Z,- k-rewd commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-08-03 10:34 PM PDT -k-rewd,2023-08-08T21:23:54Z,- k-rewd unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-08-08 02:23 PM PDT -k-rewd,2023-08-16T02:32:08Z,- k-rewd submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579710435) at 2023-08-15 07:32 PM PDT -k-rewd,2023-08-21T21:46:53Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1687089268) at 2023-08-21 02:46 PM PDT -k-rewd,2023-08-21T21:47:38Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1687090002) at 2023-08-21 02:47 PM PDT -k-rewd,2023-08-21T21:47:38Z,- k-rewd closed issue as completed: [4981](https://github.com/hackforla/website/issues/4981#event-10150957928) at 2023-08-21 02:47 PM PDT -k-rewd,2023-08-24T06:33:56Z,- k-rewd submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1592870327) at 2023-08-23 11:33 PM PDT -k-rewd,2023-08-24T06:39:12Z,- k-rewd submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1592877029) at 2023-08-23 11:39 PM PDT -k-rewd,2023-09-01T00:55:54Z,- k-rewd assigned to issue: [5316](https://github.com/hackforla/website/issues/5316) at 2023-08-31 05:55 PM PDT -k-rewd,2023-09-01T00:57:52Z,- k-rewd commented on issue: [5316](https://github.com/hackforla/website/issues/5316#issuecomment-1701965570) at 2023-08-31 05:57 PM PDT -k-rewd,2023-09-05T20:39:12Z,- k-rewd opened pull request: [5449](https://github.com/hackforla/website/pull/5449) at 2023-09-05 01:39 PM PDT -k-rewd,2023-09-07T06:26:16Z,- k-rewd pull request merged: [5449](https://github.com/hackforla/website/pull/5449#event-10303249885) at 2023-09-06 11:26 PM PDT -k-rewd,2023-09-07T07:18:38Z,- k-rewd assigned to issue: [5388](https://github.com/hackforla/website/issues/5388) at 2023-09-07 12:18 AM PDT -k-rewd,2023-09-23T05:48:31Z,- k-rewd assigned to issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1709169745) at 2023-09-22 10:48 PM PDT -k-rewd,2023-09-23T05:49:51Z,- k-rewd commented on issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1732223098) at 2023-09-22 10:49 PM PDT -k-rewd,2023-09-24T16:57:39Z,- k-rewd unassigned from issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1730911314) at 2023-09-24 09:57 AM PDT -k-rewd,2023-09-25T05:19:34Z,- k-rewd opened pull request: [5580](https://github.com/hackforla/website/pull/5580) at 2023-09-24 10:19 PM PDT -k-rewd,2023-09-26T02:29:35Z,- k-rewd pull request merged: [5580](https://github.com/hackforla/website/pull/5580#event-10469251401) at 2023-09-25 07:29 PM PDT -k-rewd,2023-09-27T07:21:36Z,- k-rewd submitted pull request review: [5612](https://github.com/hackforla/website/pull/5612#pullrequestreview-1645772913) at 2023-09-27 12:21 AM PDT -k-rewd,2023-10-13T20:39:22Z,- k-rewd submitted pull request review: [5701](https://github.com/hackforla/website/pull/5701#pullrequestreview-1677318709) at 2023-10-13 01:39 PM PDT -k-rewd,2023-10-13T21:03:15Z,- k-rewd submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1677369783) at 2023-10-13 02:03 PM PDT -k-rewd,2023-10-14T19:42:08Z,- k-rewd submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1678418958) at 2023-10-14 12:42 PM PDT -k-rewd,2023-11-17T23:41:50Z,- k-rewd assigned to issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1518912153) at 2023-11-17 03:41 PM PST -k-rewd,2023-11-17T23:43:35Z,- k-rewd commented on issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1817258331) at 2023-11-17 03:43 PM PST -k-rewd,2023-11-25T00:22:21Z,- k-rewd opened pull request: [5935](https://github.com/hackforla/website/pull/5935) at 2023-11-24 04:22 PM PST -k-rewd,2023-11-25T23:25:54Z,- k-rewd commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826441511) at 2023-11-25 03:25 PM PST -k-rewd,2023-11-26T22:55:26Z,- k-rewd pull request merged: [5935](https://github.com/hackforla/website/pull/5935#event-11064360171) at 2023-11-26 02:55 PM PST -k-rewd,2023-11-28T09:56:37Z,- k-rewd assigned to issue: [5739](https://github.com/hackforla/website/issues/5739) at 2023-11-28 01:56 AM PST -k-rewd,2023-11-28T09:57:52Z,- k-rewd commented on issue: [5739](https://github.com/hackforla/website/issues/5739#issuecomment-1829475878) at 2023-11-28 01:57 AM PST -k-rewd,2024-02-06T21:29:00Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1930781281) at 2024-02-06 01:29 PM PST diff --git a/github-actions/activity-trigger/member_activity_history_bot_55.csv b/github-actions/activity-trigger/member_activity_history_bot_55.csv deleted file mode 100644 index 91f1c824fb..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_55.csv +++ /dev/null @@ -1,980 +0,0 @@ -username,datetime,message -Jmmcclo2023,4993,SKILLS ISSUE -Jmmcclo2023,2023-07-18T02:23:25Z,- Jmmcclo2023 opened issue: [4993](https://github.com/hackforla/website/issues/4993) at 2023-07-17 07:23 PM PDT -Jmmcclo2023,2023-07-26T02:59:27Z,- Jmmcclo2023 assigned to issue: [4808](https://github.com/hackforla/website/issues/4808) at 2023-07-25 07:59 PM PDT -Jmmcclo2023,2023-07-26T03:32:40Z,- Jmmcclo2023 commented on issue: [4993](https://github.com/hackforla/website/issues/4993#issuecomment-1650924973) at 2023-07-25 08:32 PM PDT -Jmmcclo2023,2023-07-27T20:28:28Z,- Jmmcclo2023 commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1654524332) at 2023-07-27 01:28 PM PDT -Jmmcclo2023,2023-07-31T21:08:45Z,- Jmmcclo2023 commented on issue: [4808](https://github.com/hackforla/website/issues/4808#issuecomment-1659164697) at 2023-07-31 02:08 PM PDT -Jmmcclo2023,2023-08-05T00:36:29Z,- Jmmcclo2023 opened pull request: [5144](https://github.com/hackforla/website/pull/5144) at 2023-08-04 05:36 PM PDT -Jmmcclo2023,2023-08-06T11:38:54Z,- Jmmcclo2023 pull request merged: [5144](https://github.com/hackforla/website/pull/5144#event-10017148601) at 2023-08-06 04:38 AM PDT -Jmmcclo2023,2023-08-16T19:40:14Z,- Jmmcclo2023 closed issue as completed: [4993](https://github.com/hackforla/website/issues/4993#event-10112110513) at 2023-08-16 12:40 PM PDT -Jmmcclo2023,2023-08-20T19:43:48Z,- Jmmcclo2023 assigned to issue: [5199](https://github.com/hackforla/website/issues/5199#event-10111899727) at 2023-08-20 12:43 PM PDT -Jmmcclo2023,2023-08-21T03:10:55Z,- Jmmcclo2023 commented on issue: [5199](https://github.com/hackforla/website/issues/5199#issuecomment-1685559209) at 2023-08-20 08:10 PM PDT -Jmmcclo2023,2023-08-22T16:36:12Z,- Jmmcclo2023 opened pull request: [5283](https://github.com/hackforla/website/pull/5283) at 2023-08-22 09:36 AM PDT -Jmmcclo2023,2023-08-22T23:36:47Z,- Jmmcclo2023 commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1689058198) at 2023-08-22 04:36 PM PDT -Jmmcclo2023,2023-08-27T02:41:22Z,- Jmmcclo2023 pull request merged: [5283](https://github.com/hackforla/website/pull/5283#event-10201023588) at 2023-08-26 07:41 PM PDT -Jmmcclo2023,2023-08-28T19:54:10Z,- Jmmcclo2023 commented on pull request: [5327](https://github.com/hackforla/website/pull/5327#issuecomment-1696308869) at 2023-08-28 12:54 PM PDT -Jmmcclo2023,2023-08-28T22:21:54Z,- Jmmcclo2023 submitted pull request review: [5327](https://github.com/hackforla/website/pull/5327#pullrequestreview-1599207604) at 2023-08-28 03:21 PM PDT -Jmmcclo2023,2023-08-30T19:55:13Z,- Jmmcclo2023 commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1699752357) at 2023-08-30 12:55 PM PDT -Jmmcclo2023,2023-08-30T20:16:46Z,- Jmmcclo2023 submitted pull request review: [5354](https://github.com/hackforla/website/pull/5354#pullrequestreview-1603428968) at 2023-08-30 01:16 PM PDT -Jmmcclo2023,2023-09-14T18:33:55Z,- Jmmcclo2023 assigned to issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1717118867) at 2023-09-14 11:33 AM PDT -Jmmcclo2023,2023-09-14T18:44:38Z,- Jmmcclo2023 commented on issue: [5515](https://github.com/hackforla/website/issues/5515#issuecomment-1719963203) at 2023-09-14 11:44 AM PDT -Jmmcclo2023,2023-10-01T12:26:58Z,- Jmmcclo2023 assigned to issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741847713) at 2023-10-01 05:26 AM PDT -Jmmcclo2023,2023-10-01T12:28:56Z,- Jmmcclo2023 unassigned from issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1742065576) at 2023-10-01 05:28 AM PDT -Jmmcclo2023,2024-02-14T06:37:01Z,- Jmmcclo2023 assigned to issue: [4993](https://github.com/hackforla/website/issues/4993#event-10112110513) at 2024-02-13 10:37 PM PST -jojochen25,3820,SKILLS ISSUE -jojochen25,2023-01-15T22:05:07Z,- jojochen25 opened issue: [3820](https://github.com/hackforla/website/issues/3820) at 2023-01-15 02:05 PM PST -jojochen25,2023-01-15T22:05:08Z,- jojochen25 assigned to issue: [3820](https://github.com/hackforla/website/issues/3820) at 2023-01-15 02:05 PM PST -jojochen25,2023-02-26T09:00:02Z,- jojochen25 commented on issue: [3820](https://github.com/hackforla/website/issues/3820#issuecomment-1445302638) at 2023-02-26 01:00 AM PST -jonnyoe,6329,SKILLS ISSUE -jonnyoe,2024-02-16T04:00:36Z,- jonnyoe assigned to issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1837064900) at 2024-02-15 08:00 PM PST -jonnyoe,2024-02-16T04:26:55Z,- jonnyoe commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1947737966) at 2024-02-15 08:26 PM PST -jonnyoe,2024-02-16T20:08:53Z,- jonnyoe commented on issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1949258541) at 2024-02-16 12:08 PM PST -jonnyoe,2024-02-17T06:05:05Z,- jonnyoe unassigned from issue: [5881](https://github.com/hackforla/website/issues/5881#issuecomment-1949258541) at 2024-02-16 10:05 PM PST -jonnyoe,2024-02-21T03:22:36Z,- jonnyoe opened issue: [6329](https://github.com/hackforla/website/issues/6329) at 2024-02-20 07:22 PM PST -jonnyoe,2024-02-21T03:22:40Z,- jonnyoe assigned to issue: [6329](https://github.com/hackforla/website/issues/6329) at 2024-02-20 07:22 PM PST -jonnyoe,2024-02-21T03:23:54Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1955810485) at 2024-02-20 07:23 PM PST -jonnyoe,2024-02-28T05:30:34Z,- jonnyoe assigned to issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1929040328) at 2024-02-27 09:30 PM PST -jonnyoe,2024-02-28T05:36:19Z,- jonnyoe commented on issue: [6258](https://github.com/hackforla/website/issues/6258#issuecomment-1968269061) at 2024-02-27 09:36 PM PST -jonnyoe,2024-03-02T07:42:51Z,- jonnyoe opened pull request: [6408](https://github.com/hackforla/website/pull/6408) at 2024-03-01 11:42 PM PST -jonnyoe,2024-03-03T02:51:56Z,- jonnyoe commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1975001201) at 2024-03-02 06:51 PM PST -jonnyoe,2024-03-04T05:47:14Z,- jonnyoe opened pull request: [6414](https://github.com/hackforla/website/pull/6414) at 2024-03-03 09:47 PM PST -jonnyoe,2024-03-04T10:08:12Z,- jonnyoe pull request closed w/o merging: [6408](https://github.com/hackforla/website/pull/6408#event-11996493817) at 2024-03-04 02:08 AM PST -jonnyoe,2024-03-04T21:47:45Z,- jonnyoe pull request merged: [6414](https://github.com/hackforla/website/pull/6414#event-12005226525) at 2024-03-04 01:47 PM PST -jonnyoe,2024-03-04T22:52:09Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-1977607864) at 2024-03-04 02:52 PM PST -jonnyoe,2024-03-19T05:12:48Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2005778184) at 2024-03-18 10:12 PM PDT -jonnyoe,2024-03-19T05:12:48Z,- jonnyoe closed issue as completed: [6329](https://github.com/hackforla/website/issues/6329#event-12163684779) at 2024-03-18 10:12 PM PDT -jonnyoe,2024-03-20T05:38:19Z,- jonnyoe commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008690287) at 2024-03-19 10:38 PM PDT -jonnyoe,2024-03-20T05:42:28Z,- jonnyoe commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008693493) at 2024-03-19 10:42 PM PDT -jonnyoe,2024-03-20T05:44:12Z,- jonnyoe submitted pull request review: [6477](https://github.com/hackforla/website/pull/6477#pullrequestreview-1947979317) at 2024-03-19 10:44 PM PDT -jonnyoe,2024-03-22T02:55:25Z,- jonnyoe assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-21 07:55 PM PDT -jonnyoe,2024-03-25T21:42:33Z,- jonnyoe unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-25 02:42 PM PDT -jonnyoe,2024-03-25T21:42:40Z,- jonnyoe assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2024-03-25 02:42 PM PDT -jonnyoe,2024-03-26T01:07:18Z,- jonnyoe unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-2018969992) at 2024-03-25 06:07 PM PDT -jonnyoe,2024-03-27T04:11:00Z,- jonnyoe assigned to issue: [6236](https://github.com/hackforla/website/issues/6236) at 2024-03-26 09:11 PM PDT -jonnyoe,2024-03-27T04:20:34Z,- jonnyoe commented on issue: [6236](https://github.com/hackforla/website/issues/6236#issuecomment-2021897437) at 2024-03-26 09:20 PM PDT -jonnyoe,2024-03-27T05:00:28Z,- jonnyoe opened pull request: [6534](https://github.com/hackforla/website/pull/6534) at 2024-03-26 10:00 PM PDT -jonnyoe,2024-03-27T05:01:10Z,- jonnyoe pull request closed w/o merging: [6534](https://github.com/hackforla/website/pull/6534#event-12259784434) at 2024-03-26 10:01 PM PDT -jonnyoe,2024-03-27T05:20:46Z,- jonnyoe opened pull request: [6535](https://github.com/hackforla/website/pull/6535) at 2024-03-26 10:20 PM PDT -jonnyoe,2024-03-27T05:26:06Z,- jonnyoe commented on pull request: [6534](https://github.com/hackforla/website/pull/6534#issuecomment-2021969285) at 2024-03-26 10:26 PM PDT -jonnyoe,2024-03-28T23:57:12Z,- jonnyoe commented on pull request: [6535](https://github.com/hackforla/website/pull/6535#issuecomment-2026338593) at 2024-03-28 04:57 PM PDT -jonnyoe,2024-03-28T23:57:12Z,- jonnyoe pull request closed w/o merging: [6535](https://github.com/hackforla/website/pull/6535#event-12289008321) at 2024-03-28 04:57 PM PDT -jonnyoe,2024-03-29T04:23:01Z,- jonnyoe opened pull request: [6546](https://github.com/hackforla/website/pull/6546) at 2024-03-28 09:23 PM PDT -jonnyoe,2024-03-29T09:14:08Z,- jonnyoe pull request merged: [6546](https://github.com/hackforla/website/pull/6546#event-12293018692) at 2024-03-29 02:14 AM PDT -jonnyoe,2024-03-29T19:18:17Z,- jonnyoe commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2027647671) at 2024-03-29 12:18 PM PDT -jonnyoe,2024-03-29T19:18:33Z,- jonnyoe closed issue as completed: [6329](https://github.com/hackforla/website/issues/6329#event-12297793289) at 2024-03-29 12:18 PM PDT -jonnyoe,2024-04-09T01:09:01Z,- jonnyoe assigned to issue: [6492](https://github.com/hackforla/website/issues/6492) at 2024-04-08 06:09 PM PDT -jonnyoe,2024-04-09T01:11:58Z,- jonnyoe commented on issue: [6492](https://github.com/hackforla/website/issues/6492#issuecomment-2043959295) at 2024-04-08 06:11 PM PDT -jonnyoe,2024-04-12T22:26:31Z,- jonnyoe closed issue as completed: [6492](https://github.com/hackforla/website/issues/6492#event-12454755596) at 2024-04-12 03:26 PM PDT -jonnyoe,2024-04-12T22:28:12Z,- jonnyoe commented on issue: [6492](https://github.com/hackforla/website/issues/6492#issuecomment-2052638582) at 2024-04-12 03:28 PM PDT -jonnyoe,2024-04-19T02:43:23Z,- jonnyoe assigned to issue: [6638](https://github.com/hackforla/website/issues/6638) at 2024-04-18 07:43 PM PDT -jonnyoe,2024-04-19T02:47:06Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2065654771) at 2024-04-18 07:47 PM PDT -jonnyoe,2024-04-24T06:57:41Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2074210913) at 2024-04-23 11:57 PM PDT -jonnyoe,2024-04-25T00:08:31Z,- jonnyoe opened pull request: [6748](https://github.com/hackforla/website/pull/6748) at 2024-04-24 05:08 PM PDT -jonnyoe,2024-04-26T01:09:04Z,- jonnyoe commented on pull request: [6748](https://github.com/hackforla/website/pull/6748#issuecomment-2078437529) at 2024-04-25 06:09 PM PDT -jonnyoe,2024-04-26T01:09:04Z,- jonnyoe pull request closed w/o merging: [6748](https://github.com/hackforla/website/pull/6748#event-12617276133) at 2024-04-25 06:09 PM PDT -jonnyoe,2024-04-26T03:00:01Z,- jonnyoe opened pull request: [6764](https://github.com/hackforla/website/pull/6764) at 2024-04-25 08:00 PM PDT -jonnyoe,2024-04-30T22:55:16Z,- jonnyoe pull request closed w/o merging: [6764](https://github.com/hackforla/website/pull/6764#event-12664879858) at 2024-04-30 03:55 PM PDT -jonnyoe,2024-05-01T00:52:19Z,- jonnyoe opened pull request: [6796](https://github.com/hackforla/website/pull/6796) at 2024-04-30 05:52 PM PDT -jonnyoe,2024-05-03T23:45:32Z,- jonnyoe commented on issue: [6638](https://github.com/hackforla/website/issues/6638#issuecomment-2093891228) at 2024-05-03 04:45 PM PDT -jonnyoe,2024-05-04T06:12:38Z,- jonnyoe pull request closed w/o merging: [6796](https://github.com/hackforla/website/pull/6796#event-12703395024) at 2024-05-03 11:12 PM PDT -jonnyoe,2024-05-04T06:39:15Z,- jonnyoe opened pull request: [6817](https://github.com/hackforla/website/pull/6817) at 2024-05-03 11:39 PM PDT -jonnyoe,2024-05-04T06:44:32Z,- jonnyoe pull request closed w/o merging: [6817](https://github.com/hackforla/website/pull/6817#event-12703472871) at 2024-05-03 11:44 PM PDT -jonnyoe,2024-05-04T06:53:59Z,- jonnyoe opened pull request: [6818](https://github.com/hackforla/website/pull/6818) at 2024-05-03 11:53 PM PDT -jonnyoe,2024-05-04T17:42:21Z,- jonnyoe pull request merged: [6818](https://github.com/hackforla/website/pull/6818#event-12704937406) at 2024-05-04 10:42 AM PDT -jonnyoe,2024-05-10T03:26:27Z,- jonnyoe assigned to issue: [6571](https://github.com/hackforla/website/issues/6571) at 2024-05-09 08:26 PM PDT -jonnyoe,2024-05-10T03:34:46Z,- jonnyoe commented on issue: [6571](https://github.com/hackforla/website/issues/6571#issuecomment-2103797084) at 2024-05-09 08:34 PM PDT -Joyce750526,4326,SKILLS ISSUE -Joyce750526,2023-03-29T03:49:28Z,- Joyce750526 opened issue: [4326](https://github.com/hackforla/website/issues/4326) at 2023-03-28 08:49 PM PDT -Joyce750526,2023-03-29T04:12:50Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1487920398) at 2023-03-28 09:12 PM PDT -Joyce750526,2023-04-09T19:15:59Z,- Joyce750526 assigned to issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1487920398) at 2023-04-09 12:15 PM PDT -Joyce750526,2023-06-05T06:42:12Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1576136094) at 2023-06-04 11:42 PM PDT -Joyce750526,2023-06-18T06:14:24Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1595977696) at 2023-06-17 11:14 PM PDT -Joyce750526,2024-01-10T03:45:21Z,- Joyce750526 commented on issue: [4326](https://github.com/hackforla/website/issues/4326#issuecomment-1884146554) at 2024-01-09 07:45 PM PST -jphamtv,5873,SKILLS ISSUE -jphamtv,2023-11-07T04:48:32Z,- jphamtv opened issue: [5873](https://github.com/hackforla/website/issues/5873) at 2023-11-06 08:48 PM PST -jphamtv,2023-11-07T04:48:49Z,- jphamtv assigned to issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1797818529) at 2023-11-06 08:48 PM PST -jphamtv,2023-11-12T05:26:46Z,- jphamtv assigned to issue: [5803](https://github.com/hackforla/website/issues/5803) at 2023-11-11 09:26 PM PST -jphamtv,2023-11-12T05:40:47Z,- jphamtv commented on issue: [5803](https://github.com/hackforla/website/issues/5803#issuecomment-1807011208) at 2023-11-11 09:40 PM PST -jphamtv,2023-11-12T05:43:43Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1807011637) at 2023-11-11 09:43 PM PST -jphamtv,2023-11-12T20:14:34Z,- jphamtv opened pull request: [5893](https://github.com/hackforla/website/pull/5893) at 2023-11-12 12:14 PM PST -jphamtv,2023-11-19T07:18:29Z,- jphamtv pull request merged: [5893](https://github.com/hackforla/website/pull/5893#event-11003195010) at 2023-11-18 11:18 PM PST -jphamtv,2023-11-19T22:25:01Z,- jphamtv assigned to issue: [5919](https://github.com/hackforla/website/issues/5919) at 2023-11-19 02:25 PM PST -jphamtv,2023-11-19T22:25:27Z,- jphamtv commented on issue: [5919](https://github.com/hackforla/website/issues/5919#issuecomment-1817997104) at 2023-11-19 02:25 PM PST -jphamtv,2023-11-21T06:21:37Z,- jphamtv opened pull request: [5927](https://github.com/hackforla/website/pull/5927) at 2023-11-20 10:21 PM PST -jphamtv,2023-11-22T21:29:25Z,- jphamtv pull request merged: [5927](https://github.com/hackforla/website/pull/5927#event-11041390588) at 2023-11-22 01:29 PM PST -jphamtv,2023-11-22T21:34:58Z,- jphamtv commented on pull request: [5933](https://github.com/hackforla/website/pull/5933#issuecomment-1823539183) at 2023-11-22 01:34 PM PST -jphamtv,2023-11-22T21:35:50Z,- jphamtv commented on pull request: [5931](https://github.com/hackforla/website/pull/5931#issuecomment-1823539866) at 2023-11-22 01:35 PM PST -jphamtv,2023-11-23T07:41:40Z,- jphamtv submitted pull request review: [5931](https://github.com/hackforla/website/pull/5931#pullrequestreview-1745839007) at 2023-11-22 11:41 PM PST -jphamtv,2023-11-23T07:55:12Z,- jphamtv submitted pull request review: [5933](https://github.com/hackforla/website/pull/5933#pullrequestreview-1745855445) at 2023-11-22 11:55 PM PST -jphamtv,2023-11-23T08:03:30Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1823946959) at 2023-11-23 12:03 AM PST -jphamtv,2023-11-24T21:25:32Z,- jphamtv assigned to issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1801323803) at 2023-11-24 01:25 PM PST -jphamtv,2023-11-24T21:27:23Z,- jphamtv commented on issue: [5698](https://github.com/hackforla/website/issues/5698#issuecomment-1826093896) at 2023-11-24 01:27 PM PST -jphamtv,2023-11-25T06:59:34Z,- jphamtv opened pull request: [5936](https://github.com/hackforla/website/pull/5936) at 2023-11-24 10:59 PM PST -jphamtv,2023-11-27T04:14:41Z,- jphamtv pull request merged: [5936](https://github.com/hackforla/website/pull/5936#event-11065705947) at 2023-11-26 08:14 PM PST -jphamtv,2023-11-27T19:20:26Z,- jphamtv commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1828468569) at 2023-11-27 11:20 AM PST -jphamtv,2023-11-27T20:09:19Z,- jphamtv assigned to issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1763500722) at 2023-11-27 12:09 PM PST -jphamtv,2023-11-27T20:09:46Z,- jphamtv commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1828511409) at 2023-11-27 12:09 PM PST -jphamtv,2023-11-28T05:44:28Z,- jphamtv commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1829143149) at 2023-11-27 09:44 PM PST -jphamtv,2023-11-28T07:38:18Z,- jphamtv opened pull request: [5940](https://github.com/hackforla/website/pull/5940) at 2023-11-27 11:38 PM PST -jphamtv,2023-11-28T07:45:02Z,- jphamtv commented on issue: [5706](https://github.com/hackforla/website/issues/5706#issuecomment-1829271599) at 2023-11-27 11:45 PM PST -jphamtv,2023-11-29T05:16:57Z,- jphamtv commented on pull request: [5943](https://github.com/hackforla/website/pull/5943#issuecomment-1831237499) at 2023-11-28 09:16 PM PST -jphamtv,2023-11-29T05:37:42Z,- jphamtv submitted pull request review: [5943](https://github.com/hackforla/website/pull/5943#pullrequestreview-1754487667) at 2023-11-28 09:37 PM PST -jphamtv,2023-11-29T20:50:01Z,- jphamtv commented on pull request: [5945](https://github.com/hackforla/website/pull/5945#issuecomment-1832679842) at 2023-11-29 12:50 PM PST -jphamtv,2023-11-30T07:21:10Z,- jphamtv submitted pull request review: [5945](https://github.com/hackforla/website/pull/5945#pullrequestreview-1756789572) at 2023-11-29 11:21 PM PST -jphamtv,2023-11-30T15:05:58Z,- jphamtv pull request merged: [5940](https://github.com/hackforla/website/pull/5940#event-11110315569) at 2023-11-30 07:05 AM PST -jphamtv,2023-12-01T05:28:55Z,- jphamtv commented on pull request: [5951](https://github.com/hackforla/website/pull/5951#issuecomment-1835487912) at 2023-11-30 09:28 PM PST -jphamtv,2023-12-01T05:47:51Z,- jphamtv submitted pull request review: [5951](https://github.com/hackforla/website/pull/5951#pullrequestreview-1759064650) at 2023-11-30 09:47 PM PST -jphamtv,2023-12-01T19:21:37Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1836648925) at 2023-12-01 11:21 AM PST -jphamtv,2023-12-05T07:12:30Z,- jphamtv assigned to issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1718731156) at 2023-12-04 11:12 PM PST -jphamtv,2023-12-05T07:14:27Z,- jphamtv commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1840134363) at 2023-12-04 11:14 PM PST -jphamtv,2023-12-06T06:22:47Z,- jphamtv commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1842167380) at 2023-12-05 10:22 PM PST -jphamtv,2023-12-06T06:23:14Z,- jphamtv commented on pull request: [5967](https://github.com/hackforla/website/pull/5967#issuecomment-1842167731) at 2023-12-05 10:23 PM PST -jphamtv,2023-12-06T07:31:09Z,- jphamtv submitted pull request review: [5967](https://github.com/hackforla/website/pull/5967#pullrequestreview-1766841448) at 2023-12-05 11:31 PM PST -jphamtv,2023-12-07T05:26:27Z,- jphamtv submitted pull request review: [5961](https://github.com/hackforla/website/pull/5961#pullrequestreview-1769209863) at 2023-12-06 09:26 PM PST -jphamtv,2023-12-08T21:53:20Z,- jphamtv commented on issue: [5873](https://github.com/hackforla/website/issues/5873#issuecomment-1847888919) at 2023-12-08 01:53 PM PST -jphamtv,2023-12-08T21:53:53Z,- jphamtv closed issue as completed: [5873](https://github.com/hackforla/website/issues/5873#event-11198007078) at 2023-12-08 01:53 PM PST -jphamtv,2023-12-09T00:18:29Z,- jphamtv opened pull request: [5978](https://github.com/hackforla/website/pull/5978) at 2023-12-08 04:18 PM PST -jphamtv,2023-12-09T00:27:50Z,- jphamtv commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1848003394) at 2023-12-08 04:27 PM PST -jphamtv,2023-12-09T00:30:42Z,- jphamtv commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1848005697) at 2023-12-08 04:30 PM PST -jphamtv,2023-12-11T01:55:06Z,- jphamtv commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1849205284) at 2023-12-10 05:55 PM PST -jphamtv,2023-12-11T19:53:29Z,- jphamtv submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1776050915) at 2023-12-11 11:53 AM PST -jphamtv,2023-12-12T20:25:51Z,- jphamtv submitted pull request review: [5977](https://github.com/hackforla/website/pull/5977#pullrequestreview-1778379813) at 2023-12-12 12:25 PM PST -jphamtv,2023-12-13T06:48:53Z,- jphamtv commented on pull request: [5976](https://github.com/hackforla/website/pull/5976#issuecomment-1853356807) at 2023-12-12 10:48 PM PST -jphamtv,2023-12-17T02:44:02Z,- jphamtv submitted pull request review: [5976](https://github.com/hackforla/website/pull/5976#pullrequestreview-1785329938) at 2023-12-16 06:44 PM PST -jphamtv,2023-12-31T05:18:51Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1872673852) at 2023-12-30 09:18 PM PST -jphamtv,2023-12-31T23:14:56Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1873053171) at 2023-12-31 03:14 PM PST -jphamtv,2024-01-02T02:40:50Z,- jphamtv pull request merged: [5978](https://github.com/hackforla/website/pull/5978#event-11366783011) at 2024-01-01 06:40 PM PST -jphamtv,2024-01-03T07:55:09Z,- jphamtv commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1874970152) at 2024-01-02 11:55 PM PST -jphamtv,2024-01-06T03:10:25Z,- jphamtv opened issue: [6071](https://github.com/hackforla/website/issues/6071) at 2024-01-05 07:10 PM PST -jphamtv,2024-01-09T06:30:46Z,- jphamtv commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1882484562) at 2024-01-08 10:30 PM PST -jphamtv,2024-01-12T19:19:41Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1818892013) at 2024-01-12 11:19 AM PST -jphamtv,2024-01-15T06:40:08Z,- jphamtv assigned to issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1846152440) at 2024-01-14 10:40 PM PST -jphamtv,2024-01-15T06:42:33Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1891395152) at 2024-01-14 10:42 PM PST -jphamtv,2024-01-18T07:20:55Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1897933765) at 2024-01-17 11:20 PM PST -jphamtv,2024-01-19T06:25:38Z,- jphamtv commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1899836670) at 2024-01-18 10:25 PM PST -jphamtv,2024-01-19T07:22:03Z,- jphamtv submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1831753131) at 2024-01-18 11:22 PM PST -jphamtv,2024-01-19T07:40:59Z,- jphamtv submitted pull request review: [6131](https://github.com/hackforla/website/pull/6131#pullrequestreview-1831777475) at 2024-01-18 11:40 PM PST -jphamtv,2024-01-19T08:04:27Z,- jphamtv submitted pull request review: [6132](https://github.com/hackforla/website/pull/6132#pullrequestreview-1831826960) at 2024-01-19 12:04 AM PST -jphamtv,2024-01-19T08:12:10Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1899947725) at 2024-01-19 12:12 AM PST -jphamtv,2024-01-19T18:59:13Z,- jphamtv closed issue by PR 6131: [5715](https://github.com/hackforla/website/issues/5715#event-11541084238) at 2024-01-19 10:59 AM PST -jphamtv,2024-01-21T19:06:45Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1902730311) at 2024-01-21 11:06 AM PST -jphamtv,2024-01-21T19:37:10Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1902738428) at 2024-01-21 11:37 AM PST -jphamtv,2024-01-23T06:01:16Z,- jphamtv submitted pull request review: [6130](https://github.com/hackforla/website/pull/6130#pullrequestreview-1837913103) at 2024-01-22 10:01 PM PST -jphamtv,2024-01-23T07:30:44Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1838022856) at 2024-01-22 11:30 PM PST -jphamtv,2024-01-24T01:40:07Z,- jphamtv commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1907207000) at 2024-01-23 05:40 PM PST -jphamtv,2024-01-24T06:46:00Z,- jphamtv submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1840523335) at 2024-01-23 10:46 PM PST -jphamtv,2024-01-26T02:45:13Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1911323032) at 2024-01-25 06:45 PM PST -jphamtv,2024-01-26T03:10:40Z,- jphamtv submitted pull request review: [6147](https://github.com/hackforla/website/pull/6147#pullrequestreview-1845019741) at 2024-01-25 07:10 PM PST -jphamtv,2024-01-26T06:49:24Z,- jphamtv commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1911570461) at 2024-01-25 10:49 PM PST -jphamtv,2024-01-26T06:49:39Z,- jphamtv closed issue by PR 6149: [5960](https://github.com/hackforla/website/issues/5960#event-11605513020) at 2024-01-25 10:49 PM PST -jphamtv,2024-01-26T06:56:10Z,- jphamtv closed issue by PR 6164: [5809](https://github.com/hackforla/website/issues/5809#event-11605549395) at 2024-01-25 10:56 PM PST -jphamtv,2024-01-26T06:59:04Z,- jphamtv commented on pull request: [6164](https://github.com/hackforla/website/pull/6164#issuecomment-1911579468) at 2024-01-25 10:59 PM PST -jphamtv,2024-01-26T07:02:05Z,- jphamtv closed issue by PR 6147: [6112](https://github.com/hackforla/website/issues/6112#event-11605582030) at 2024-01-25 11:02 PM PST -jphamtv,2024-01-26T08:01:40Z,- jphamtv submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1845228504) at 2024-01-26 12:01 AM PST -jphamtv,2024-01-26T08:05:12Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1911636648) at 2024-01-26 12:05 AM PST -jphamtv,2024-01-27T07:05:48Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1913045927) at 2024-01-26 11:05 PM PST -jphamtv,2024-01-29T23:00:06Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1915724210) at 2024-01-29 03:00 PM PST -jphamtv,2024-01-30T06:41:23Z,- jphamtv commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1916175373) at 2024-01-29 10:41 PM PST -jphamtv,2024-01-30T07:05:02Z,- jphamtv commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1916199295) at 2024-01-29 11:05 PM PST -jphamtv,2024-01-30T07:41:40Z,- jphamtv assigned to issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1694721521) at 2024-01-29 11:41 PM PST -jphamtv,2024-01-30T07:46:28Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1916250201) at 2024-01-29 11:46 PM PST -jphamtv,2024-01-31T07:26:39Z,- jphamtv submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1853045502) at 2024-01-30 11:26 PM PST -jphamtv,2024-01-31T07:39:23Z,- jphamtv closed issue by PR 6148: [6104](https://github.com/hackforla/website/issues/6104#event-11651827352) at 2024-01-30 11:39 PM PST -jphamtv,2024-01-31T07:54:01Z,- jphamtv submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1853084638) at 2024-01-30 11:54 PM PST -jphamtv,2024-01-31T07:54:19Z,- jphamtv closed issue by PR 6135: [6065](https://github.com/hackforla/website/issues/6065#event-11651961234) at 2024-01-30 11:54 PM PST -jphamtv,2024-02-02T06:27:25Z,- jphamtv submitted pull request review: [6197](https://github.com/hackforla/website/pull/6197#pullrequestreview-1858425038) at 2024-02-01 10:27 PM PST -jphamtv,2024-02-02T06:27:52Z,- jphamtv closed issue by PR 6197: [6189](https://github.com/hackforla/website/issues/6189#event-11679741967) at 2024-02-01 10:27 PM PST -jphamtv,2024-02-02T06:46:11Z,- jphamtv submitted pull request review: [6198](https://github.com/hackforla/website/pull/6198#pullrequestreview-1858457059) at 2024-02-01 10:46 PM PST -jphamtv,2024-02-02T06:46:41Z,- jphamtv closed issue by PR 6198: [6165](https://github.com/hackforla/website/issues/6165#event-11679900281) at 2024-02-01 10:46 PM PST -jphamtv,2024-02-02T07:13:18Z,- jphamtv commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1923154212) at 2024-02-01 11:13 PM PST -jphamtv,2024-02-02T08:18:01Z,- jphamtv submitted pull request review: [6202](https://github.com/hackforla/website/pull/6202#pullrequestreview-1858636385) at 2024-02-02 12:18 AM PST -jphamtv,2024-02-02T08:21:47Z,- jphamtv closed issue by PR 6202: [5707](https://github.com/hackforla/website/issues/5707#event-11680826152) at 2024-02-02 12:21 AM PST -jphamtv,2024-02-05T18:38:44Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1927777403) at 2024-02-05 10:38 AM PST -jphamtv,2024-02-06T08:13:04Z,- jphamtv opened pull request: [6255](https://github.com/hackforla/website/pull/6255) at 2024-02-06 12:13 AM PST -jphamtv,2024-02-09T06:44:00Z,- jphamtv closed issue by PR 6260: [6050](https://github.com/hackforla/website/issues/6050#event-11754416032) at 2024-02-08 10:44 PM PST -jphamtv,2024-02-09T07:02:20Z,- jphamtv commented on pull request: [6265](https://github.com/hackforla/website/pull/6265#issuecomment-1935426992) at 2024-02-08 11:02 PM PST -jphamtv,2024-02-09T07:18:35Z,- jphamtv closed issue by PR 6241: [6233](https://github.com/hackforla/website/issues/6233#event-11754621221) at 2024-02-08 11:18 PM PST -jphamtv,2024-02-09T07:25:07Z,- jphamtv commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1935448083) at 2024-02-08 11:25 PM PST -jphamtv,2024-02-09T07:52:12Z,- jphamtv submitted pull request review: [6262](https://github.com/hackforla/website/pull/6262#pullrequestreview-1871823448) at 2024-02-08 11:52 PM PST -jphamtv,2024-02-09T07:52:49Z,- jphamtv commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1935474027) at 2024-02-08 11:52 PM PST -jphamtv,2024-02-09T07:54:17Z,- jphamtv closed issue by PR 6262: [6184](https://github.com/hackforla/website/issues/6184#event-11754862147) at 2024-02-08 11:54 PM PST -jphamtv,2024-02-09T08:14:01Z,- jphamtv commented on pull request: [6263](https://github.com/hackforla/website/pull/6263#issuecomment-1935497388) at 2024-02-09 12:14 AM PST -jphamtv,2024-02-09T08:16:59Z,- jphamtv closed issue by PR 6263: [6187](https://github.com/hackforla/website/issues/6187#event-11755041955) at 2024-02-09 12:16 AM PST -jphamtv,2024-02-09T08:22:33Z,- jphamtv commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1935507118) at 2024-02-09 12:22 AM PST -jphamtv,2024-02-10T21:26:25Z,- jphamtv opened issue: [6274](https://github.com/hackforla/website/issues/6274) at 2024-02-10 01:26 PM PST -jphamtv,2024-02-10T21:40:25Z,- jphamtv commented on issue: [6274](https://github.com/hackforla/website/issues/6274#issuecomment-1937196676) at 2024-02-10 01:40 PM PST -jphamtv,2024-02-10T21:43:25Z,- jphamtv commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1937202732) at 2024-02-10 01:43 PM PST -jphamtv,2024-02-13T01:23:33Z,- jphamtv commented on issue: [4606](https://github.com/hackforla/website/issues/4606#issuecomment-1940065275) at 2024-02-12 05:23 PM PST -jphamtv,2024-02-15T03:15:08Z,- jphamtv pull request merged: [6255](https://github.com/hackforla/website/pull/6255#event-11809476894) at 2024-02-14 07:15 PM PST -jphamtv,2024-02-15T06:05:00Z,- jphamtv commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1945425710) at 2024-02-14 10:05 PM PST -jphamtv,2024-02-16T00:29:51Z,- jphamtv submitted pull request review: [6267](https://github.com/hackforla/website/pull/6267#pullrequestreview-1884122415) at 2024-02-15 04:29 PM PST -jphamtv,2024-02-16T00:31:25Z,- jphamtv closed issue by PR 6267: [6051](https://github.com/hackforla/website/issues/6051#event-11822685820) at 2024-02-15 04:31 PM PST -jphamtv,2024-02-16T05:27:07Z,- jphamtv closed issue by PR 6300: [3861](https://github.com/hackforla/website/issues/3861#event-11824529257) at 2024-02-15 09:27 PM PST -jphamtv,2024-02-16T05:45:57Z,- jphamtv submitted pull request review: [6275](https://github.com/hackforla/website/pull/6275#pullrequestreview-1884352127) at 2024-02-15 09:45 PM PST -jphamtv,2024-02-16T05:46:41Z,- jphamtv closed issue by PR 6275: [5714](https://github.com/hackforla/website/issues/5714#event-11824656130) at 2024-02-15 09:46 PM PST -jphamtv,2024-02-16T06:24:56Z,- jphamtv submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1884388619) at 2024-02-15 10:24 PM PST -jphamtv,2024-02-16T07:17:26Z,- jphamtv submitted pull request review: [6293](https://github.com/hackforla/website/pull/6293#pullrequestreview-1884446486) at 2024-02-15 11:17 PM PST -jphamtv,2024-02-16T07:19:00Z,- jphamtv closed issue by PR 6293: [5179](https://github.com/hackforla/website/issues/5179#event-11825240702) at 2024-02-15 11:19 PM PST -jphamtv,2024-02-17T01:13:49Z,- jphamtv submitted pull request review: [6292](https://github.com/hackforla/website/pull/6292#pullrequestreview-1886292258) at 2024-02-16 05:13 PM PST -jphamtv,2024-02-21T07:09:15Z,- jphamtv assigned to issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1809381162) at 2024-02-20 11:09 PM PST -jphamtv,2024-02-21T07:12:20Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1956023993) at 2024-02-20 11:12 PM PST -jphamtv,2024-02-23T05:40:28Z,- jphamtv closed issue by PR 6351: [6312](https://github.com/hackforla/website/issues/6312#event-11899562418) at 2024-02-22 09:40 PM PST -jphamtv,2024-02-23T05:47:05Z,- jphamtv closed issue by PR 6352: [5881](https://github.com/hackforla/website/issues/5881#event-11899591694) at 2024-02-22 09:47 PM PST -jphamtv,2024-02-23T06:17:19Z,- jphamtv submitted pull request review: [6358](https://github.com/hackforla/website/pull/6358#pullrequestreview-1897429766) at 2024-02-22 10:17 PM PST -jphamtv,2024-02-23T06:17:53Z,- jphamtv closed issue by PR 6358: [6239](https://github.com/hackforla/website/issues/6239#event-11899743345) at 2024-02-22 10:17 PM PST -jphamtv,2024-02-23T06:30:39Z,- jphamtv submitted pull request review: [6359](https://github.com/hackforla/website/pull/6359#pullrequestreview-1897440836) at 2024-02-22 10:30 PM PST -jphamtv,2024-02-23T06:30:59Z,- jphamtv closed issue by PR 6359: [6107](https://github.com/hackforla/website/issues/6107#event-11899815978) at 2024-02-22 10:30 PM PST -jphamtv,2024-02-23T06:52:38Z,- jphamtv submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1897459535) at 2024-02-22 10:52 PM PST -jphamtv,2024-02-23T07:31:24Z,- jphamtv commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1960850457) at 2024-02-22 11:31 PM PST -jphamtv,2024-02-23T08:02:34Z,- jphamtv closed issue by PR 6328: [6298](https://github.com/hackforla/website/issues/6298#event-11900453171) at 2024-02-23 12:02 AM PST -jphamtv,2024-02-24T18:30:39Z,- jphamtv submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1899551329) at 2024-02-24 10:30 AM PST -jphamtv,2024-02-27T00:47:25Z,- jphamtv commented on issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-1965592264) at 2024-02-26 04:47 PM PST -jphamtv,2024-02-27T00:56:09Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1965600137) at 2024-02-26 04:56 PM PST -jphamtv,2024-02-27T02:55:21Z,- jphamtv assigned to issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-1965592264) at 2024-02-26 06:55 PM PST -jphamtv,2024-03-01T06:12:33Z,- jphamtv closed issue by PR 6371: [6053](https://github.com/hackforla/website/issues/6053#event-11975064582) at 2024-02-29 10:12 PM PST -jphamtv,2024-03-01T06:19:19Z,- jphamtv closed issue by PR 6400: [6049](https://github.com/hackforla/website/issues/6049#event-11975111631) at 2024-02-29 10:19 PM PST -jphamtv,2024-03-01T06:26:49Z,- jphamtv submitted pull request review: [6401](https://github.com/hackforla/website/pull/6401#pullrequestreview-1910398908) at 2024-02-29 10:26 PM PST -jphamtv,2024-03-01T06:27:24Z,- jphamtv closed issue by PR 6401: [6123](https://github.com/hackforla/website/issues/6123#event-11975164387) at 2024-02-29 10:27 PM PST -jphamtv,2024-03-01T06:41:10Z,- jphamtv submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1910412325) at 2024-02-29 10:41 PM PST -jphamtv,2024-03-01T06:46:43Z,- jphamtv submitted pull request review: [6362](https://github.com/hackforla/website/pull/6362#pullrequestreview-1910417677) at 2024-02-29 10:46 PM PST -jphamtv,2024-03-01T07:00:56Z,- jphamtv closed issue by PR 6362: [6044](https://github.com/hackforla/website/issues/6044#event-11975407048) at 2024-02-29 11:00 PM PST -jphamtv,2024-03-01T07:06:14Z,- jphamtv closed issue by PR 6383: [6372](https://github.com/hackforla/website/issues/6372#event-11975447554) at 2024-02-29 11:06 PM PST -jphamtv,2024-03-01T07:24:38Z,- jphamtv submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1910487818) at 2024-02-29 11:24 PM PST -jphamtv,2024-03-01T07:39:43Z,- jphamtv closed issue by PR 6374: [6199](https://github.com/hackforla/website/issues/6199#event-11975791802) at 2024-02-29 11:39 PM PST -jphamtv,2024-03-02T00:23:44Z,- jphamtv submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1912369136) at 2024-03-01 04:23 PM PST -jphamtv,2024-03-02T06:24:05Z,- jphamtv submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1912588418) at 2024-03-01 10:24 PM PST -jphamtv,2024-03-02T06:27:33Z,- jphamtv closed issue by PR 6384: [6373](https://github.com/hackforla/website/issues/6373#event-11986603427) at 2024-03-01 10:27 PM PST -jphamtv,2024-03-06T20:05:10Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1981691773) at 2024-03-06 12:05 PM PST -jphamtv,2024-03-08T06:13:44Z,- jphamtv submitted pull request review: [6432](https://github.com/hackforla/website/pull/6432#pullrequestreview-1924095103) at 2024-03-07 10:13 PM PST -jphamtv,2024-03-08T06:14:27Z,- jphamtv closed issue by PR 6432: [5452](https://github.com/hackforla/website/issues/5452#event-12051510422) at 2024-03-07 10:14 PM PST -jphamtv,2024-03-08T06:39:51Z,- jphamtv submitted pull request review: [6439](https://github.com/hackforla/website/pull/6439#pullrequestreview-1924119814) at 2024-03-07 10:39 PM PST -jphamtv,2024-03-08T06:40:16Z,- jphamtv closed issue by PR 6439: [6153](https://github.com/hackforla/website/issues/6153#event-12051665471) at 2024-03-07 10:40 PM PST -jphamtv,2024-03-08T07:03:07Z,- jphamtv submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1924150123) at 2024-03-07 11:03 PM PST -jphamtv,2024-03-08T07:08:28Z,- jphamtv submitted pull request review: [6433](https://github.com/hackforla/website/pull/6433#pullrequestreview-1924160503) at 2024-03-07 11:08 PM PST -jphamtv,2024-03-08T07:12:45Z,- jphamtv closed issue by PR 6433: [5842](https://github.com/hackforla/website/issues/5842#event-12051951080) at 2024-03-07 11:12 PM PST -jphamtv,2024-03-08T07:32:41Z,- jphamtv commented on issue: [6154](https://github.com/hackforla/website/issues/6154#issuecomment-1985189593) at 2024-03-07 11:32 PM PST -jphamtv,2024-03-08T07:37:30Z,- jphamtv commented on pull request: [6437](https://github.com/hackforla/website/pull/6437#issuecomment-1985194798) at 2024-03-07 11:37 PM PST -jphamtv,2024-03-08T08:50:57Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1924383110) at 2024-03-08 12:50 AM PST -jphamtv,2024-03-10T00:59:48Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1926354588) at 2024-03-09 05:59 PM PDT -jphamtv,2024-03-11T06:30:01Z,- jphamtv commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1987715194) at 2024-03-10 11:30 PM PDT -jphamtv,2024-03-11T06:52:43Z,- jphamtv commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1987738255) at 2024-03-10 11:52 PM PDT -jphamtv,2024-03-11T20:00:45Z,- jphamtv commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1989327154) at 2024-03-11 01:00 PM PDT -jphamtv,2024-03-11T20:00:45Z,- jphamtv closed issue as completed: [6286](https://github.com/hackforla/website/issues/6286#event-12079352906) at 2024-03-11 01:00 PM PDT -jphamtv,2024-03-14T03:01:24Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-1996303850) at 2024-03-13 08:01 PM PDT -jphamtv,2024-03-22T05:25:48Z,- jphamtv submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1953972442) at 2024-03-21 10:25 PM PDT -jphamtv,2024-03-22T06:08:10Z,- jphamtv commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2014421810) at 2024-03-21 11:08 PM PDT -jphamtv,2024-03-22T06:08:56Z,- jphamtv commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2014422527) at 2024-03-21 11:08 PM PDT -jphamtv,2024-03-22T06:27:31Z,- jphamtv commented on issue: [6110](https://github.com/hackforla/website/issues/6110#issuecomment-2014441115) at 2024-03-21 11:27 PM PDT -jphamtv,2024-03-22T16:37:38Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2015476110) at 2024-03-22 09:37 AM PDT -jphamtv,2024-03-26T05:09:15Z,- jphamtv commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2019401651) at 2024-03-25 10:09 PM PDT -jphamtv,2024-03-26T06:50:46Z,- jphamtv commented on issue: [6041](https://github.com/hackforla/website/issues/6041#issuecomment-2019515994) at 2024-03-25 11:50 PM PDT -jphamtv,2024-03-26T06:50:46Z,- jphamtv closed issue as completed: [6041](https://github.com/hackforla/website/issues/6041#event-12244897980) at 2024-03-25 11:50 PM PDT -jphamtv,2024-03-26T06:51:05Z,- jphamtv commented on issue: [6452](https://github.com/hackforla/website/issues/6452#issuecomment-2019516295) at 2024-03-25 11:51 PM PDT -jphamtv,2024-03-26T06:51:05Z,- jphamtv closed issue as completed: [6452](https://github.com/hackforla/website/issues/6452#event-12244900242) at 2024-03-25 11:51 PM PDT -jphamtv,2024-03-29T04:53:22Z,- jphamtv submitted pull request review: [6508](https://github.com/hackforla/website/pull/6508#pullrequestreview-1967829229) at 2024-03-28 09:53 PM PDT -jphamtv,2024-03-29T05:03:40Z,- jphamtv submitted pull request review: [6533](https://github.com/hackforla/website/pull/6533#pullrequestreview-1967835395) at 2024-03-28 10:03 PM PDT -jphamtv,2024-03-29T05:23:09Z,- jphamtv submitted pull request review: [6546](https://github.com/hackforla/website/pull/6546#pullrequestreview-1967856683) at 2024-03-28 10:23 PM PDT -jphamtv,2024-03-29T05:52:20Z,- jphamtv submitted pull request review: [6521](https://github.com/hackforla/website/pull/6521#pullrequestreview-1967885979) at 2024-03-28 10:52 PM PDT -jphamtv,2024-03-31T19:15:52Z,- jphamtv commented on issue: [4442](https://github.com/hackforla/website/issues/4442#issuecomment-2028881225) at 2024-03-31 12:15 PM PDT -jphamtv,2024-04-02T04:54:55Z,- jphamtv commented on issue: [6145](https://github.com/hackforla/website/issues/6145#issuecomment-2031082340) at 2024-04-01 09:54 PM PDT -jphamtv,2024-04-02T16:28:04Z,- jphamtv commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032517417) at 2024-04-02 09:28 AM PDT -jphamtv,2024-04-02T17:57:35Z,- jphamtv commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032701430) at 2024-04-02 10:57 AM PDT -jphamtv,2024-04-02T18:20:45Z,- jphamtv submitted pull request review: [6557](https://github.com/hackforla/website/pull/6557#pullrequestreview-1974601798) at 2024-04-02 11:20 AM PDT -jphamtv,2024-04-03T18:24:12Z,- jphamtv commented on issue: [6071](https://github.com/hackforla/website/issues/6071#issuecomment-2035301264) at 2024-04-03 11:24 AM PDT -jphamtv,2024-04-03T18:24:13Z,- jphamtv closed issue as completed: [6071](https://github.com/hackforla/website/issues/6071#event-12346461960) at 2024-04-03 11:24 AM PDT -jphamtv,2024-04-05T04:33:46Z,- jphamtv submitted pull request review: [6553](https://github.com/hackforla/website/pull/6553#pullrequestreview-1981827066) at 2024-04-04 09:33 PM PDT -jphamtv,2024-04-05T04:41:32Z,- jphamtv closed issue by PR 6553: [6237](https://github.com/hackforla/website/issues/6237#event-12367698559) at 2024-04-04 09:41 PM PDT -jphamtv,2024-04-05T04:45:52Z,- jphamtv submitted pull request review: [6560](https://github.com/hackforla/website/pull/6560#pullrequestreview-1981858877) at 2024-04-04 09:45 PM PDT -jphamtv,2024-04-05T04:46:02Z,- jphamtv closed issue by PR 6560: [6232](https://github.com/hackforla/website/issues/6232#event-12367734042) at 2024-04-04 09:46 PM PDT -jphamtv,2024-04-05T05:23:41Z,- jphamtv submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1981961959) at 2024-04-04 10:23 PM PDT -jphamtv,2024-04-05T05:30:24Z,- jphamtv submitted pull request review: [6564](https://github.com/hackforla/website/pull/6564#pullrequestreview-1981969065) at 2024-04-04 10:30 PM PDT -jphamtv,2024-04-05T05:30:34Z,- jphamtv closed issue by PR 6564: [6235](https://github.com/hackforla/website/issues/6235#event-12368097922) at 2024-04-04 10:30 PM PDT -jphamtv,2024-04-05T05:52:50Z,- jphamtv commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2039001319) at 2024-04-04 10:52 PM PDT -jphamtv,2024-04-05T05:53:01Z,- jphamtv commented on issue: [5840](https://github.com/hackforla/website/issues/5840#issuecomment-2039001514) at 2024-04-04 10:53 PM PDT -jphamtv,2024-04-05T06:34:17Z,- jphamtv submitted pull request review: [6538](https://github.com/hackforla/website/pull/6538#pullrequestreview-1982060075) at 2024-04-04 11:34 PM PDT -jphamtv,2024-04-05T06:34:45Z,- jphamtv closed issue by PR 6538: [6483](https://github.com/hackforla/website/issues/6483#event-12368597824) at 2024-04-04 11:34 PM PDT -jphamtv,2024-04-05T06:38:07Z,- jphamtv closed issue by PR 6540: [6482](https://github.com/hackforla/website/issues/6482#event-12368626892) at 2024-04-04 11:38 PM PDT -jphamtv,2024-04-06T18:23:26Z,- jphamtv submitted pull request review: [6561](https://github.com/hackforla/website/pull/6561#pullrequestreview-1984597196) at 2024-04-06 11:23 AM PDT -jphamtv,2024-04-06T18:23:52Z,- jphamtv closed issue by PR 6561: [5844](https://github.com/hackforla/website/issues/5844#event-12382175741) at 2024-04-06 11:23 AM PDT -jphamtv,2024-04-09T03:57:09Z,- jphamtv assigned to issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-08 08:57 PM PDT -jphamtv,2024-04-09T05:31:23Z,- jphamtv unassigned from issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-08 10:31 PM PDT -jphamtv,2024-04-11T23:11:18Z,- jphamtv submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1995616413) at 2024-04-11 04:11 PM PDT -jphamtv,2024-04-11T23:22:06Z,- jphamtv submitted pull request review: [6580](https://github.com/hackforla/website/pull/6580#pullrequestreview-1995624741) at 2024-04-11 04:22 PM PDT -jphamtv,2024-04-11T23:23:11Z,- jphamtv closed issue by PR 6580: [6559](https://github.com/hackforla/website/issues/6559#event-12442674047) at 2024-04-11 04:23 PM PDT -jphamtv,2024-04-11T23:37:12Z,- jphamtv closed issue by PR 6613: [6511](https://github.com/hackforla/website/issues/6511#event-12442743245) at 2024-04-11 04:37 PM PDT -jphamtv,2024-04-11T23:44:09Z,- jphamtv closed issue by PR 6612: [6513](https://github.com/hackforla/website/issues/6513#event-12442778509) at 2024-04-11 04:44 PM PDT -jphamtv,2024-04-11T23:52:39Z,- jphamtv submitted pull request review: [6620](https://github.com/hackforla/website/pull/6620#pullrequestreview-1995647106) at 2024-04-11 04:52 PM PDT -jphamtv,2024-04-11T23:52:51Z,- jphamtv closed issue by PR 6620: [6175](https://github.com/hackforla/website/issues/6175#event-12442818244) at 2024-04-11 04:52 PM PDT -jphamtv,2024-04-12T04:59:01Z,- jphamtv submitted pull request review: [6616](https://github.com/hackforla/website/pull/6616#pullrequestreview-1995873215) at 2024-04-11 09:59 PM PDT -jphamtv,2024-04-12T04:59:12Z,- jphamtv closed issue by PR 6616: [6172](https://github.com/hackforla/website/issues/6172#event-12444434395) at 2024-04-11 09:59 PM PDT -jphamtv,2024-04-12T05:03:48Z,- jphamtv submitted pull request review: [6618](https://github.com/hackforla/website/pull/6618#pullrequestreview-1995876941) at 2024-04-11 10:03 PM PDT -jphamtv,2024-04-12T05:03:58Z,- jphamtv closed issue by PR 6618: [6173](https://github.com/hackforla/website/issues/6173#event-12444464613) at 2024-04-11 10:03 PM PDT -jphamtv,2024-04-12T05:14:10Z,- jphamtv submitted pull request review: [6624](https://github.com/hackforla/website/pull/6624#pullrequestreview-1995885607) at 2024-04-11 10:14 PM PDT -jphamtv,2024-04-12T05:14:33Z,- jphamtv closed issue by PR 6624: [6515](https://github.com/hackforla/website/issues/6515#event-12444525752) at 2024-04-11 10:14 PM PDT -jphamtv,2024-04-16T00:27:20Z,- jphamtv commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-2058028465) at 2024-04-15 05:27 PM PDT -jphamtv,2024-04-16T17:19:47Z,- jphamtv commented on issue: [6162](https://github.com/hackforla/website/issues/6162#issuecomment-2059574932) at 2024-04-16 10:19 AM PDT -jphamtv,2024-04-16T17:19:47Z,- jphamtv closed issue as completed: [6162](https://github.com/hackforla/website/issues/6162#event-12493707035) at 2024-04-16 10:19 AM PDT -jphamtv,2024-04-18T21:54:23Z,- jphamtv closed issue by PR 6617: [6514](https://github.com/hackforla/website/issues/6514#event-12529601743) at 2024-04-18 02:54 PM PDT -jphamtv,2024-04-18T21:55:49Z,- jphamtv closed issue by PR 6646: [6512](https://github.com/hackforla/website/issues/6512#event-12529615314) at 2024-04-18 02:55 PM PDT -jphamtv,2024-04-18T22:06:34Z,- jphamtv closed issue by PR 6652: [6156](https://github.com/hackforla/website/issues/6156#event-12529709002) at 2024-04-18 03:06 PM PDT -jphamtv,2024-04-18T22:19:11Z,- jphamtv submitted pull request review: [6657](https://github.com/hackforla/website/pull/6657#pullrequestreview-2010015884) at 2024-04-18 03:19 PM PDT -jphamtv,2024-04-18T22:20:20Z,- jphamtv closed issue by PR 6657: [6124](https://github.com/hackforla/website/issues/6124#event-12529833089) at 2024-04-18 03:20 PM PDT -jphamtv,2024-04-18T22:31:59Z,- jphamtv closed issue by PR 6658: [6648](https://github.com/hackforla/website/issues/6648#event-12529938926) at 2024-04-18 03:31 PM PDT -jphamtv,2024-04-19T00:03:28Z,- jphamtv commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065509422) at 2024-04-18 05:03 PM PDT -jphamtv,2024-04-19T00:13:38Z,- jphamtv commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065518760) at 2024-04-18 05:13 PM PDT -jphamtv,2024-04-19T00:15:26Z,- jphamtv commented on issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2065520425) at 2024-04-18 05:15 PM PDT -jphamtv,2024-04-19T00:16:09Z,- jphamtv commented on issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2065521023) at 2024-04-18 05:16 PM PDT -jphamtv,2024-04-23T00:00:53Z,- jphamtv opened issue: [6709](https://github.com/hackforla/website/issues/6709) at 2024-04-22 05:00 PM PDT -jphamtv,2024-04-23T00:42:51Z,- jphamtv assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2071145939) at 2024-04-22 05:42 PM PDT -jphamtv,2024-04-25T19:07:08Z,- jphamtv closed issue by PR 6711: [6632](https://github.com/hackforla/website/issues/6632#event-12614116955) at 2024-04-25 12:07 PM PDT -jphamtv,2024-04-25T19:25:23Z,- jphamtv commented on issue: [6327](https://github.com/hackforla/website/issues/6327#issuecomment-2078024067) at 2024-04-25 12:25 PM PDT -jphamtv,2024-04-25T19:36:12Z,- jphamtv commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-04-25 12:36 PM PDT -jphamtv,2024-04-25T20:24:53Z,- jphamtv submitted pull request review: [6678](https://github.com/hackforla/website/pull/6678#pullrequestreview-2023509170) at 2024-04-25 01:24 PM PDT -jphamtv,2024-04-25T20:25:10Z,- jphamtv closed issue by PR 6678: [5880](https://github.com/hackforla/website/issues/5880#event-12615092093) at 2024-04-25 01:25 PM PDT -jphamtv,2024-04-25T20:33:53Z,- jphamtv submitted pull request review: [6744](https://github.com/hackforla/website/pull/6744#pullrequestreview-2023525965) at 2024-04-25 01:33 PM PDT -jphamtv,2024-04-25T20:41:58Z,- jphamtv submitted pull request review: [6745](https://github.com/hackforla/website/pull/6745#pullrequestreview-2023542949) at 2024-04-25 01:41 PM PDT -jphamtv,2024-04-25T20:45:09Z,- jphamtv submitted pull request review: [6746](https://github.com/hackforla/website/pull/6746#pullrequestreview-2023547817) at 2024-04-25 01:45 PM PDT -jphamtv,2024-04-25T21:07:26Z,- jphamtv submitted pull request review: [6748](https://github.com/hackforla/website/pull/6748#pullrequestreview-2023582927) at 2024-04-25 02:07 PM PDT -jphamtv,2024-04-26T19:56:25Z,- jphamtv unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-04-26 12:56 PM PDT -jphamtv,2024-04-27T21:48:30Z,- jphamtv submitted pull request review: [6764](https://github.com/hackforla/website/pull/6764#pullrequestreview-2026750606) at 2024-04-27 02:48 PM PDT -jphamtv,2024-04-27T21:51:48Z,- jphamtv submitted pull request review: [6764](https://github.com/hackforla/website/pull/6764#pullrequestreview-2026750977) at 2024-04-27 02:51 PM PDT -jphamtv,2024-04-27T22:08:54Z,- jphamtv commented on pull request: [6764](https://github.com/hackforla/website/pull/6764#issuecomment-2081213834) at 2024-04-27 03:08 PM PDT -jphamtv,2024-05-02T20:02:56Z,- jphamtv commented on pull request: [6781](https://github.com/hackforla/website/pull/6781#issuecomment-2091456458) at 2024-05-02 01:02 PM PDT -jphamtv,2024-05-02T20:03:33Z,- jphamtv closed issue by PR 6781: [6181](https://github.com/hackforla/website/issues/6181#event-12688596190) at 2024-05-02 01:03 PM PDT -jphamtv,2024-05-02T20:05:36Z,- jphamtv closed issue by PR 6791: [6701](https://github.com/hackforla/website/issues/6701#event-12688618866) at 2024-05-02 01:05 PM PDT -jphamtv,2024-05-02T20:07:02Z,- jphamtv closed issue by PR 6792: [6702](https://github.com/hackforla/website/issues/6702#event-12688635525) at 2024-05-02 01:07 PM PDT -jphamtv,2024-05-02T23:22:48Z,- jphamtv commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2091899877) at 2024-05-02 04:22 PM PDT -jphamtv,2024-05-02T23:50:06Z,- jphamtv submitted pull request review: [6801](https://github.com/hackforla/website/pull/6801#pullrequestreview-2037129887) at 2024-05-02 04:50 PM PDT -jphamtv,2024-05-09T19:44:52Z,- jphamtv closed issue by PR 6839: [6240](https://github.com/hackforla/website/issues/6240#event-12761393476) at 2024-05-09 12:44 PM PDT -jphamtv,2024-05-09T23:20:56Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2048990450) at 2024-05-09 04:20 PM PDT -jphamtv,2024-05-09T23:38:29Z,- jphamtv commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2103607266) at 2024-05-09 04:38 PM PDT -jphamtv,2024-05-09T23:50:52Z,- jphamtv commented on issue: [6569](https://github.com/hackforla/website/issues/6569#issuecomment-2103615943) at 2024-05-09 04:50 PM PDT -jphamtv,2024-05-09T23:50:52Z,- jphamtv closed issue as completed: [6569](https://github.com/hackforla/website/issues/6569#event-12763242555) at 2024-05-09 04:50 PM PDT -jphamtv,2024-05-14T00:51:32Z,- jphamtv opened pull request: [6853](https://github.com/hackforla/website/pull/6853) at 2024-05-13 05:51 PM PDT -jphamtv,2024-05-14T20:01:22Z,- jphamtv commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2111043589) at 2024-05-14 01:01 PM PDT -jphamtv,2024-05-16T17:56:17Z,- jphamtv closed issue by PR 6852: [6732](https://github.com/hackforla/website/issues/6732#event-12837798750) at 2024-05-16 10:56 AM PDT -jphamtv,2024-05-16T17:58:41Z,- jphamtv closed issue by PR 6855: [6724](https://github.com/hackforla/website/issues/6724#event-12837823861) at 2024-05-16 10:58 AM PDT -jphamtv,2024-05-16T22:22:03Z,- jphamtv closed issue as completed: [6637](https://github.com/hackforla/website/issues/6637#event-12840593602) at 2024-05-16 03:22 PM PDT -jphamtv,2024-05-23T20:01:10Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2074891522) at 2024-05-23 01:01 PM PDT -jphamtv,2024-05-23T20:11:09Z,- jphamtv commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2127940746) at 2024-05-23 01:11 PM PDT -jphamtv,2024-05-23T20:37:44Z,- jphamtv submitted pull request review: [6886](https://github.com/hackforla/website/pull/6886#pullrequestreview-2074950464) at 2024-05-23 01:37 PM PDT -jphamtv,2024-05-23T20:37:53Z,- jphamtv closed issue by PR 6886: [6718](https://github.com/hackforla/website/issues/6718#event-12914951293) at 2024-05-23 01:37 PM PDT -jphamtv,2024-05-23T20:46:43Z,- jphamtv closed issue by PR 6888: [6837](https://github.com/hackforla/website/issues/6837#event-12915029693) at 2024-05-23 01:46 PM PDT -jphamtv,2024-05-23T22:38:43Z,- jphamtv commented on issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2128149627) at 2024-05-23 03:38 PM PDT -jphamtv,2024-05-23T22:38:43Z,- jphamtv closed issue as completed: [6188](https://github.com/hackforla/website/issues/6188#event-12916066266) at 2024-05-23 03:38 PM PDT -jphamtv,2024-05-24T06:22:48Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2128646963) at 2024-05-23 11:22 PM PDT -jphamtv,2024-05-30T17:49:44Z,- jphamtv closed issue by PR 6897: [6722](https://github.com/hackforla/website/issues/6722#event-12989790941) at 2024-05-30 10:49 AM PDT -jphamtv,2024-05-30T18:01:42Z,- jphamtv commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2140493583) at 2024-05-30 11:01 AM PDT -jphamtv,2024-05-30T18:04:49Z,- jphamtv closed issue by PR 6906: [6760](https://github.com/hackforla/website/issues/6760#event-12989938934) at 2024-05-30 11:04 AM PDT -jphamtv,2024-05-30T18:10:41Z,- jphamtv submitted pull request review: [6912](https://github.com/hackforla/website/pull/6912#pullrequestreview-2089062467) at 2024-05-30 11:10 AM PDT -jphamtv,2024-05-30T18:11:03Z,- jphamtv closed issue by PR 6912: [6729](https://github.com/hackforla/website/issues/6729#event-12989994648) at 2024-05-30 11:11 AM PDT -jphamtv,2024-05-30T18:28:28Z,- jphamtv commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140585301) at 2024-05-30 11:28 AM PDT -jphamtv,2024-05-30T18:31:51Z,- jphamtv commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2140597416) at 2024-05-30 11:31 AM PDT -jphamtv,2024-05-30T18:48:14Z,- jphamtv commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2140662606) at 2024-05-30 11:48 AM PDT -jphamtv,2024-05-30T19:01:19Z,- jphamtv commented on pull request: [6913](https://github.com/hackforla/website/pull/6913#issuecomment-2140692619) at 2024-05-30 12:01 PM PDT -jphamtv,2024-05-30T19:41:45Z,- jphamtv submitted pull request review: [6907](https://github.com/hackforla/website/pull/6907#pullrequestreview-2089236412) at 2024-05-30 12:41 PM PDT -jphamtv,2024-05-30T20:07:43Z,- jphamtv commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2140785433) at 2024-05-30 01:07 PM PDT -jphamtv,2024-05-30T20:07:43Z,- jphamtv closed issue as completed: [6585](https://github.com/hackforla/website/issues/6585#event-12991218361) at 2024-05-30 01:07 PM PDT -jphamtv,2024-06-06T16:47:07Z,- jphamtv closed issue by PR 6958: [6798](https://github.com/hackforla/website/issues/6798#event-13069617117) at 2024-06-06 09:47 AM PDT -jphamtv,2024-06-06T16:49:07Z,- jphamtv closed issue as completed: [3859](https://github.com/hackforla/website/issues/3859#event-13069637859) at 2024-06-06 09:49 AM PDT -jphamtv,2024-06-06T16:51:11Z,- jphamtv closed issue by PR 6963: [6908](https://github.com/hackforla/website/issues/6908#event-13069659777) at 2024-06-06 09:51 AM PDT -jphamtv,2024-06-06T17:06:11Z,- jphamtv submitted pull request review: [6961](https://github.com/hackforla/website/pull/6961#pullrequestreview-2102547467) at 2024-06-06 10:06 AM PDT -jphamtv,2024-06-06T17:06:23Z,- jphamtv closed issue by PR 6961: [6451](https://github.com/hackforla/website/issues/6451#event-13069825253) at 2024-06-06 10:06 AM PDT -jphamtv,2024-06-06T18:55:22Z,- jphamtv commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153192499) at 2024-06-06 11:55 AM PDT -jphamtv,2024-06-06T18:58:32Z,- jphamtv commented on pull request: [6916](https://github.com/hackforla/website/pull/6916#issuecomment-2153206682) at 2024-06-06 11:58 AM PDT -jphamtv,2024-06-06T19:01:16Z,- jphamtv commented on issue: [6719](https://github.com/hackforla/website/issues/6719#issuecomment-2153217834) at 2024-06-06 12:01 PM PDT -jphamtv,2024-06-06T19:49:00Z,- jphamtv commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2153288969) at 2024-06-06 12:49 PM PDT -jphamtv,2024-06-06T19:51:05Z,- jphamtv commented on pull request: [6905](https://github.com/hackforla/website/pull/6905#issuecomment-2153292371) at 2024-06-06 12:51 PM PDT -jphamtv,2024-06-07T00:11:45Z,- jphamtv submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2103401335) at 2024-06-06 05:11 PM PDT -jphamtv,2024-06-13T19:12:43Z,- jphamtv submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2116713426) at 2024-06-13 12:12 PM PDT -jphamtv,2024-06-13T19:14:12Z,- jphamtv closed issue by PR 6916: [6719](https://github.com/hackforla/website/issues/6719#event-13151722367) at 2024-06-13 12:14 PM PDT -jphamtv,2024-06-13T19:17:59Z,- jphamtv closed issue by PR 6980: [6938](https://github.com/hackforla/website/issues/6938#event-13151760454) at 2024-06-13 12:17 PM PDT -jphamtv,2024-06-13T20:44:21Z,- jphamtv closed issue by PR 6973: [6909](https://github.com/hackforla/website/issues/6909#event-13152590623) at 2024-06-13 01:44 PM PDT -jphamtv,2024-06-13T21:02:21Z,- jphamtv commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2166790567) at 2024-06-13 02:02 PM PDT -jphamtv,2024-06-13T23:11:02Z,- jphamtv commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2166933992) at 2024-06-13 04:11 PM PDT -jphamtv,2024-06-13T23:43:48Z,- jphamtv commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2166964609) at 2024-06-13 04:43 PM PDT -jphamtv,2024-06-20T18:43:23Z,- jphamtv closed issue by PR 6976: [6930](https://github.com/hackforla/website/issues/6930#event-13233143655) at 2024-06-20 11:43 AM PDT -jphamtv,2024-06-20T18:44:16Z,- jphamtv closed issue by PR 7016: [6939](https://github.com/hackforla/website/issues/6939#event-13233152124) at 2024-06-20 11:44 AM PDT -jphamtv,2024-06-20T18:47:45Z,- jphamtv closed issue by PR 7017: [6918](https://github.com/hackforla/website/issues/6918#event-13233199529) at 2024-06-20 11:47 AM PDT -jphamtv,2024-06-20T19:19:46Z,- jphamtv commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2181370620) at 2024-06-20 12:19 PM PDT -jphamtv,2024-06-20T19:58:56Z,- jphamtv commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2181443380) at 2024-06-20 12:58 PM PDT -jphamtv,2024-06-20T20:07:44Z,- jphamtv submitted pull request review: [7037](https://github.com/hackforla/website/pull/7037#pullrequestreview-2131262817) at 2024-06-20 01:07 PM PDT -jphamtv,2024-06-20T20:08:01Z,- jphamtv closed issue by PR 7037: [6931](https://github.com/hackforla/website/issues/6931#event-13233990879) at 2024-06-20 01:08 PM PDT -jphamtv,2024-06-27T17:41:38Z,- jphamtv submitted pull request review: [7070](https://github.com/hackforla/website/pull/7070#pullrequestreview-2146091055) at 2024-06-27 10:41 AM PDT -jphamtv,2024-06-27T17:41:48Z,- jphamtv closed issue by PR 7070: [7061](https://github.com/hackforla/website/issues/7061#event-13321058139) at 2024-06-27 10:41 AM PDT -jphamtv,2024-06-27T17:50:41Z,- jphamtv commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195310507) at 2024-06-27 10:50 AM PDT -jphamtv,2024-06-27T18:11:08Z,- jphamtv commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2195377318) at 2024-06-27 11:11 AM PDT -jphamtv,2024-06-27T18:11:43Z,- jphamtv commented on pull request: [7067](https://github.com/hackforla/website/pull/7067#issuecomment-2195380392) at 2024-06-27 11:11 AM PDT -jphamtv,2024-06-27T18:16:45Z,- jphamtv commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2195396302) at 2024-06-27 11:16 AM PDT -jphamtv,2024-06-27T18:20:35Z,- jphamtv commented on pull request: [7052](https://github.com/hackforla/website/pull/7052#issuecomment-2195406245) at 2024-06-27 11:20 AM PDT -jphamtv,2024-06-27T18:28:00Z,- jphamtv submitted pull request review: [7068](https://github.com/hackforla/website/pull/7068#pullrequestreview-2146212576) at 2024-06-27 11:28 AM PDT -jphamtv,2024-06-27T18:28:22Z,- jphamtv closed issue by PR 7068: [5146](https://github.com/hackforla/website/issues/5146#event-13321898468) at 2024-06-27 11:28 AM PDT -jphamtv,2024-06-27T18:37:01Z,- jphamtv commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2195438167) at 2024-06-27 11:37 AM PDT -jphamtv,2024-06-27T18:52:17Z,- jphamtv commented on pull request: [7071](https://github.com/hackforla/website/pull/7071#issuecomment-2195460614) at 2024-06-27 11:52 AM PDT -jphamtv,2024-06-27T18:53:59Z,- jphamtv commented on issue: [7047](https://github.com/hackforla/website/issues/7047#issuecomment-2195463205) at 2024-06-27 11:53 AM PDT -jphamtv,2024-06-27T18:53:59Z,- jphamtv closed issue as not planned: [7047](https://github.com/hackforla/website/issues/7047#event-13322225515) at 2024-06-27 11:53 AM PDT -jphamtv,2024-06-27T22:52:07Z,- jphamtv commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2195793388) at 2024-06-27 03:52 PM PDT -jphamtv,2024-08-08T19:21:18Z,- jphamtv closed issue by PR 7229: [7138](https://github.com/hackforla/website/issues/7138#event-13811281157) at 2024-08-08 12:21 PM PDT -jphamtv,2024-08-08T19:24:42Z,- jphamtv closed issue by PR 7235: [7171](https://github.com/hackforla/website/issues/7171#event-13811311591) at 2024-08-08 12:24 PM PDT -jphamtv,2024-08-08T19:31:48Z,- jphamtv submitted pull request review: [7244](https://github.com/hackforla/website/pull/7244#pullrequestreview-2228697643) at 2024-08-08 12:31 PM PDT -jphamtv,2024-08-08T19:32:02Z,- jphamtv closed issue by PR 7244: [7139](https://github.com/hackforla/website/issues/7139#event-13811378734) at 2024-08-08 12:32 PM PDT -jphamtv,2024-08-08T19:35:21Z,- jphamtv commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2276521751) at 2024-08-08 12:35 PM PDT -jphamtv,2024-08-08T19:45:22Z,- jphamtv commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2276535955) at 2024-08-08 12:45 PM PDT -jphamtv,2024-08-15T20:19:46Z,- jphamtv commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2292161485) at 2024-08-15 01:19 PM PDT -jphamtv,2024-08-16T00:04:45Z,- jphamtv submitted pull request review: [7228](https://github.com/hackforla/website/pull/7228#pullrequestreview-2241542254) at 2024-08-15 05:04 PM PDT -jphamtv,2024-08-16T00:05:05Z,- jphamtv closed issue by PR 7228: [7140](https://github.com/hackforla/website/issues/7140#event-13904240648) at 2024-08-15 05:05 PM PDT -jphamtv,2024-08-16T18:40:19Z,- jphamtv commented on issue: [7273](https://github.com/hackforla/website/issues/7273#issuecomment-2293982605) at 2024-08-16 11:40 AM PDT -jphamtv,2024-08-19T01:40:08Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2295511629) at 2024-08-18 06:40 PM PDT -jphamtv,2024-08-21T20:36:28Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2302969394) at 2024-08-21 01:36 PM PDT -jphamtv,2024-08-22T19:12:20Z,- jphamtv closed issue by PR 7306: [7253](https://github.com/hackforla/website/issues/7253#event-13982945503) at 2024-08-22 12:12 PM PDT -jphamtv,2024-08-22T19:20:26Z,- jphamtv submitted pull request review: [7328](https://github.com/hackforla/website/pull/7328#pullrequestreview-2255465160) at 2024-08-22 12:20 PM PDT -jphamtv,2024-08-22T19:20:37Z,- jphamtv closed issue by PR 7328: [7133](https://github.com/hackforla/website/issues/7133#event-13983023396) at 2024-08-22 12:20 PM PDT -jphamtv,2024-08-22T19:24:27Z,- jphamtv commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2305474522) at 2024-08-22 12:24 PM PDT -jphamtv,2024-08-22T19:26:21Z,- jphamtv commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2305477359) at 2024-08-22 12:26 PM PDT -jphamtv,2024-08-29T22:17:03Z,- jphamtv closed issue by PR 7361: [7282](https://github.com/hackforla/website/issues/7282#event-14071090922) at 2024-08-29 03:17 PM PDT -jphamtv,2024-08-29T23:17:52Z,- jphamtv closed issue by PR 7345: [7189](https://github.com/hackforla/website/issues/7189#event-14072096853) at 2024-08-29 04:17 PM PDT -jphamtv,2024-08-29T23:23:05Z,- jphamtv submitted pull request review: [7365](https://github.com/hackforla/website/pull/7365#pullrequestreview-2270589009) at 2024-08-29 04:23 PM PDT -jphamtv,2024-08-29T23:23:13Z,- jphamtv closed issue by PR 7365: [7292](https://github.com/hackforla/website/issues/7292#event-14072144523) at 2024-08-29 04:23 PM PDT -jphamtv,2024-08-29T23:37:05Z,- jphamtv submitted pull request review: [7364](https://github.com/hackforla/website/pull/7364#pullrequestreview-2270614454) at 2024-08-29 04:37 PM PDT -jphamtv,2024-08-29T23:37:23Z,- jphamtv closed issue by PR 7364: [7242](https://github.com/hackforla/website/issues/7242#event-14072265733) at 2024-08-29 04:37 PM PDT -jphamtv,2024-08-29T23:40:23Z,- jphamtv commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319465599) at 2024-08-29 04:40 PM PDT -jphamtv,2024-09-06T20:42:54Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2334781628) at 2024-09-06 01:42 PM PDT -jphamtv,2024-09-12T19:49:48Z,- jphamtv closed issue by PR 7369: [7248](https://github.com/hackforla/website/issues/7248#event-14238177444) at 2024-09-12 12:49 PM PDT -jphamtv,2024-09-12T20:02:02Z,- jphamtv submitted pull request review: [7437](https://github.com/hackforla/website/pull/7437#pullrequestreview-2301299384) at 2024-09-12 01:02 PM PDT -jphamtv,2024-09-12T20:02:14Z,- jphamtv closed issue by PR 7437: [7176](https://github.com/hackforla/website/issues/7176#event-14238297799) at 2024-09-12 01:02 PM PDT -jphamtv,2024-09-12T20:14:31Z,- jphamtv commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2347155864) at 2024-09-12 01:14 PM PDT -jphamtv,2024-09-12T21:04:56Z,- jphamtv commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2347240892) at 2024-09-12 02:04 PM PDT -jphamtv,2024-09-12T22:02:01Z,- jphamtv commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2347322008) at 2024-09-12 03:02 PM PDT -jphamtv,2024-09-20T00:05:23Z,- jphamtv commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2362442870) at 2024-09-19 05:05 PM PDT -jphamtv,2024-09-20T00:06:13Z,- jphamtv commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2362445003) at 2024-09-19 05:06 PM PDT -jphamtv,2024-09-20T00:09:53Z,- jphamtv commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2362451543) at 2024-09-19 05:09 PM PDT -jphamtv,2024-09-26T20:45:47Z,- jphamtv closed issue by PR 7467: [7304](https://github.com/hackforla/website/issues/7304#event-14422402077) at 2024-09-26 01:45 PM PDT -jphamtv,2024-09-26T21:06:17Z,- jphamtv closed issue by PR 7514: [7194](https://github.com/hackforla/website/issues/7194#event-14422588843) at 2024-09-26 02:06 PM PDT -jphamtv,2024-09-26T21:20:18Z,- jphamtv closed issue by PR 7523: [7494](https://github.com/hackforla/website/issues/7494#event-14422710983) at 2024-09-26 02:20 PM PDT -jphamtv,2024-09-26T22:01:57Z,- jphamtv commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2378014731) at 2024-09-26 03:01 PM PDT -jphamtv,2024-09-26T22:01:57Z,- jphamtv closed issue as completed: [5973](https://github.com/hackforla/website/issues/5973#event-14423023391) at 2024-09-26 03:01 PM PDT -jphamtv,2024-10-03T23:30:27Z,- jphamtv closed issue by PR 7554: [7457](https://github.com/hackforla/website/issues/7457#event-14511322004) at 2024-10-03 04:30 PM PDT -jphamtv,2024-10-03T23:42:32Z,- jphamtv commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2392517371) at 2024-10-03 04:42 PM PDT -jphamtv,2024-10-04T20:46:26Z,- jphamtv closed issue by PR 7501: [7429](https://github.com/hackforla/website/issues/7429#event-14524875783) at 2024-10-04 01:46 PM PDT -jphamtv,2024-10-10T20:30:31Z,- jphamtv commented on issue: [7392](https://github.com/hackforla/website/issues/7392#issuecomment-2405984728) at 2024-10-10 01:30 PM PDT -jphamtv,2024-10-10T20:30:31Z,- jphamtv closed issue as completed: [7392](https://github.com/hackforla/website/issues/7392#event-14597030319) at 2024-10-10 01:30 PM PDT -jphamtv,2024-10-31T22:30:28Z,- jphamtv closed issue by PR 7656: [7600](https://github.com/hackforla/website/issues/7600#event-15049318440) at 2024-10-31 03:30 PM PDT -jphamtv,2024-10-31T22:31:38Z,- jphamtv commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2450958256) at 2024-10-31 03:31 PM PDT -jphamtv,2024-11-15T00:52:03Z,- jphamtv commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2477728215) at 2024-11-14 04:52 PM PST -jphamtv,2024-11-15T00:52:46Z,- jphamtv closed issue by PR 7712: [7623](https://github.com/hackforla/website/issues/7623#event-15305958739) at 2024-11-14 04:52 PM PST -jphamtv,2024-11-15T01:02:27Z,- jphamtv commented on pull request: [7714](https://github.com/hackforla/website/pull/7714#issuecomment-2477739789) at 2024-11-14 05:02 PM PST -jphamtv,2024-11-15T01:15:17Z,- jphamtv closed issue by PR 7715: [7416](https://github.com/hackforla/website/issues/7416#event-15306081471) at 2024-11-14 05:15 PM PST -jphamtv,2024-11-15T01:26:17Z,- jphamtv closed issue by PR 7716: [7649](https://github.com/hackforla/website/issues/7649#event-15306139239) at 2024-11-14 05:26 PM PST -jphamtv,2024-11-15T01:26:44Z,- jphamtv commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2477765857) at 2024-11-14 05:26 PM PST -jphamtv,2024-11-15T01:28:53Z,- jphamtv closed issue by PR 7717: [7458](https://github.com/hackforla/website/issues/7458#event-15306152644) at 2024-11-14 05:28 PM PST -jphamtv,2024-11-15T03:21:29Z,- jphamtv commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2477875097) at 2024-11-14 07:21 PM PST -jphamtv,2024-11-15T03:21:29Z,- jphamtv closed issue as completed: [6872](https://github.com/hackforla/website/issues/6872#event-15306733644) at 2024-11-14 07:21 PM PST -jphamtv,2024-11-22T05:41:06Z,- jphamtv closed issue by PR 7733: [7705](https://github.com/hackforla/website/issues/7705#event-15392413873) at 2024-11-21 09:41 PM PST -jphamtv,2024-11-22T05:44:31Z,- jphamtv closed issue by PR 7744: [7701](https://github.com/hackforla/website/issues/7701#event-15392437624) at 2024-11-21 09:44 PM PST -jphamtv,2024-11-22T06:02:59Z,- jphamtv commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2492936224) at 2024-11-21 10:02 PM PST -jphamtv,2025-01-17T00:21:10Z,- jphamtv commented on issue: [7158](https://github.com/hackforla/website/issues/7158#issuecomment-2597173211) at 2025-01-16 04:21 PM PST -jphamtv,2025-01-17T00:21:10Z,- jphamtv closed issue as completed: [7158](https://github.com/hackforla/website/issues/7158#event-15969516903) at 2025-01-16 04:21 PM PST -jphamtv,2025-01-23T22:33:30Z,- jphamtv commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2611152955) at 2025-01-23 02:33 PM PST -jphamtv,2025-01-31T00:41:21Z,- jphamtv closed issue by PR 7856: [7567](https://github.com/hackforla/website/issues/7567#event-16132259970) at 2025-01-30 04:41 PM PST -jphamtv,2025-01-31T00:56:15Z,- jphamtv commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2626045372) at 2025-01-30 04:56 PM PST -jphamtv,2025-01-31T01:18:19Z,- jphamtv commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2626074797) at 2025-01-30 05:18 PM PST -jphamtv,2025-03-07T01:10:19Z,- jphamtv closed issue by PR 7980: [7629](https://github.com/hackforla/website/issues/7629#event-16625251624) at 2025-03-06 05:10 PM PST -jphamtv,2025-03-07T01:27:51Z,- jphamtv closed issue by PR 7950: [7824](https://github.com/hackforla/website/issues/7824#event-16625359163) at 2025-03-06 05:27 PM PST -jphamtv,2025-03-07T02:16:00Z,- jphamtv commented on pull request: [7962](https://github.com/hackforla/website/pull/7962#issuecomment-2705362657) at 2025-03-06 06:16 PM PST -jphamtv,2025-04-04T22:36:15Z,- jphamtv submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2744215615) at 2025-04-04 03:36 PM PDT -jphamtv,2025-04-17T19:11:46Z,- jphamtv closed issue by PR 8061: [7471](https://github.com/hackforla/website/issues/7471#event-17310717080) at 2025-04-17 12:11 PM PDT -jphamtv,2025-04-17T19:47:59Z,- jphamtv opened issue: [8070](https://github.com/hackforla/website/issues/8070) at 2025-04-17 12:47 PM PDT -jphamtv,2025-04-17T19:54:08Z,- jphamtv commented on issue: [7991](https://github.com/hackforla/website/issues/7991#issuecomment-2813884082) at 2025-04-17 12:54 PM PDT -jphamtv,2025-04-17T19:54:09Z,- jphamtv closed issue as completed: [7991](https://github.com/hackforla/website/issues/7991#event-17311129157) at 2025-04-17 12:54 PM PDT -jphamtv,2025-04-18T17:23:18Z,- jphamtv closed issue by PR 8060: [7481](https://github.com/hackforla/website/issues/7481#event-17322904219) at 2025-04-18 10:23 AM PDT -jphamtv,2025-05-02T01:50:46Z,- jphamtv commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2846126919) at 2025-05-01 06:50 PM PDT -jphamtv,2025-05-02T22:10:13Z,- jphamtv opened issue: [8108](https://github.com/hackforla/website/issues/8108) at 2025-05-02 03:10 PM PDT -jphamtv,2025-05-02T22:12:08Z,- jphamtv commented on issue: [7868](https://github.com/hackforla/website/issues/7868#issuecomment-2848202319) at 2025-05-02 03:12 PM PDT -jphamtv,2025-05-02T22:12:08Z,- jphamtv closed issue as completed: [7868](https://github.com/hackforla/website/issues/7868#event-17505341509) at 2025-05-02 03:12 PM PDT -jphamtv,2025-05-02T22:19:31Z,- jphamtv opened issue: [8109](https://github.com/hackforla/website/issues/8109) at 2025-05-02 03:19 PM PDT -jphamtv,2025-05-02T22:20:11Z,- jphamtv commented on issue: [8023](https://github.com/hackforla/website/issues/8023#issuecomment-2848210694) at 2025-05-02 03:20 PM PDT -jphamtv,2025-05-02T22:20:11Z,- jphamtv closed issue as completed: [8023](https://github.com/hackforla/website/issues/8023#event-17505391202) at 2025-05-02 03:20 PM PDT -jphamtv,2025-05-02T22:42:22Z,- jphamtv opened issue: [8110](https://github.com/hackforla/website/issues/8110) at 2025-05-02 03:42 PM PDT -jphamtv,2025-05-02T22:47:55Z,- jphamtv opened issue: [8111](https://github.com/hackforla/website/issues/8111) at 2025-05-02 03:47 PM PDT -jphamtv,2025-05-02T22:51:10Z,- jphamtv opened issue: [8112](https://github.com/hackforla/website/issues/8112) at 2025-05-02 03:51 PM PDT -jphamtv,2025-05-02T22:55:03Z,- jphamtv commented on issue: [7997](https://github.com/hackforla/website/issues/7997#issuecomment-2848241650) at 2025-05-02 03:55 PM PDT -jphamtv,2025-05-02T22:55:03Z,- jphamtv closed issue as not planned: [7997](https://github.com/hackforla/website/issues/7997#event-17505574732) at 2025-05-02 03:55 PM PDT -jphamtv,2025-05-02T22:58:09Z,- jphamtv commented on issue: [8100](https://github.com/hackforla/website/issues/8100#issuecomment-2848244287) at 2025-05-02 03:58 PM PDT -jphamtv,2025-05-02T22:58:09Z,- jphamtv closed issue as completed: [8100](https://github.com/hackforla/website/issues/8100#event-17505589438) at 2025-05-02 03:58 PM PDT -jphamtv,2025-05-02T23:04:45Z,- jphamtv opened issue: [8113](https://github.com/hackforla/website/issues/8113) at 2025-05-02 04:04 PM PDT -jphamtv,2025-05-02T23:05:16Z,- jphamtv commented on issue: [8050](https://github.com/hackforla/website/issues/8050#issuecomment-2848250437) at 2025-05-02 04:05 PM PDT -jphamtv,2025-05-02T23:05:16Z,- jphamtv closed issue as completed: [8050](https://github.com/hackforla/website/issues/8050#event-17505622888) at 2025-05-02 04:05 PM PDT -jphamtv,2025-05-08T19:27:30Z,- jphamtv opened issue: [8119](https://github.com/hackforla/website/issues/8119) at 2025-05-08 12:27 PM PDT -jphamtv,2025-05-08T19:32:53Z,- jphamtv opened issue: [8120](https://github.com/hackforla/website/issues/8120) at 2025-05-08 12:32 PM PDT -jphamtv,2025-05-08T19:35:37Z,- jphamtv commented on issue: [7905](https://github.com/hackforla/website/issues/7905#issuecomment-2864084210) at 2025-05-08 12:35 PM PDT -jphamtv,2025-05-08T19:35:37Z,- jphamtv closed issue as completed: [7905](https://github.com/hackforla/website/issues/7905#event-17579549756) at 2025-05-08 12:35 PM PDT -jphamtv,2025-05-16T23:05:27Z,- jphamtv closed issue by PR 8141: [7926](https://github.com/hackforla/website/issues/7926#event-17695292097) at 2025-05-16 04:05 PM PDT -jphamtv,2025-05-16T23:07:41Z,- jphamtv closed issue by PR 8142: [7953](https://github.com/hackforla/website/issues/7953#event-17695303644) at 2025-05-16 04:07 PM PDT -jpmikesell,2020-02-03T00:12:14Z,- jpmikesell assigned to issue: [308](https://github.com/hackforla/website/issues/308) at 2020-02-02 04:12 PM PST -jpmikesell,2020-02-09T22:04:02Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-583899172) at 2020-02-09 02:04 PM PST -jpmikesell,2020-02-11T19:16:47Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584804103) at 2020-02-11 11:16 AM PST -jpmikesell,2020-02-11T19:18:14Z,- jpmikesell commented on issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584804725) at 2020-02-11 11:18 AM PST -jpmikesell,2020-02-16T20:00:46Z,- jpmikesell unassigned from issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584805202) at 2020-02-16 12:00 PM PST -jpmikesell,2020-03-24T20:33:05Z,- jpmikesell commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-603489772) at 2020-03-24 01:33 PM PDT -jqg123,2523,SKILLS ISSUE -jqg123,2021-11-30T03:42:38Z,- jqg123 assigned to issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:42 PM PST -jqg123,2021-11-30T03:43:06Z,- jqg123 unassigned from issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:43 PM PST -jqg123,2021-11-30T03:44:42Z,- jqg123 opened issue: [2523](https://github.com/hackforla/website/issues/2523) at 2021-11-29 07:44 PM PST -jqg123,2021-11-30T03:45:42Z,- jqg123 assigned to issue: [2523](https://github.com/hackforla/website/issues/2523) at 2021-11-29 07:45 PM PST -jqg123,2021-12-01T21:05:31Z,- jqg123 assigned to issue: [2441](https://github.com/hackforla/website/issues/2441#issuecomment-960296427) at 2021-12-01 01:05 PM PST -jqg123,2021-12-01T21:27:10Z,- jqg123 commented on issue: [2441](https://github.com/hackforla/website/issues/2441#issuecomment-984069300) at 2021-12-01 01:27 PM PST -jqg123,2021-12-01T22:32:24Z,- jqg123 opened pull request: [2530](https://github.com/hackforla/website/pull/2530) at 2021-12-01 02:32 PM PST -jqg123,2021-12-02T18:57:47Z,- jqg123 assigned to issue: [2356](https://github.com/hackforla/website/issues/2356#issuecomment-939420187) at 2021-12-02 10:57 AM PST -jqg123,2021-12-02T19:02:34Z,- jqg123 commented on issue: [2356](https://github.com/hackforla/website/issues/2356#issuecomment-984912160) at 2021-12-02 11:02 AM PST -jqg123,2021-12-02T20:21:53Z,- jqg123 opened pull request: [2538](https://github.com/hackforla/website/pull/2538) at 2021-12-02 12:21 PM PST -jqg123,2021-12-04T23:41:32Z,- jqg123 pull request merged: [2530](https://github.com/hackforla/website/pull/2530#event-5716176775) at 2021-12-04 03:41 PM PST -jqg123,2021-12-07T23:34:26Z,- jqg123 closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-5730528853) at 2021-12-07 03:34 PM PST -jqg123,2021-12-07T23:52:44Z,- jqg123 assigned to issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-984062441) at 2021-12-07 03:52 PM PST -jqg123,2021-12-07T23:55:56Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-988353933) at 2021-12-07 03:55 PM PST -jqg123,2021-12-08T01:48:35Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-988420809) at 2021-12-07 05:48 PM PST -jqg123,2021-12-08T02:06:36Z,- jqg123 opened pull request: [2557](https://github.com/hackforla/website/pull/2557) at 2021-12-07 06:06 PM PST -jqg123,2021-12-08T02:38:18Z,- jqg123 pull request merged: [2538](https://github.com/hackforla/website/pull/2538#event-5731116522) at 2021-12-07 06:38 PM PST -jqg123,2022-02-08T23:11:33Z,- jqg123 closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-6030438237) at 2022-02-08 03:11 PM PST -jqg123,2022-02-08T23:11:50Z,- jqg123 commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1033153969) at 2022-02-08 03:11 PM PST -jqg123,2022-02-08T23:19:03Z,- jqg123 commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1033158588) at 2022-02-08 03:19 PM PST -jqg123,2022-02-13T06:05:21Z,- jqg123 opened pull request: [2774](https://github.com/hackforla/website/pull/2774) at 2022-02-12 10:05 PM PST -jqg123,2022-02-13T06:09:47Z,- jqg123 commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1037820304) at 2022-02-12 10:09 PM PST -jqg123,2022-02-16T02:29:56Z,- jqg123 pull request closed w/o merging: [2557](https://github.com/hackforla/website/pull/2557#event-6079579827) at 2022-02-15 06:29 PM PST -jqg123,2022-02-20T20:08:39Z,- jqg123 opened issue: [2810](https://github.com/hackforla/website/issues/2810) at 2022-02-20 12:08 PM PST -jqg123,2022-02-20T20:08:40Z,- jqg123 assigned to issue: [2810](https://github.com/hackforla/website/issues/2810) at 2022-02-20 12:08 PM PST -jqg123,2022-02-26T20:39:21Z,- jqg123 unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-02-26 12:39 PM PST -jqg123,2022-02-26T20:44:38Z,- jqg123 commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1052589264) at 2022-02-26 12:44 PM PST -jqg123,2022-03-12T01:34:26Z,- jqg123 pull request closed w/o merging: [2774](https://github.com/hackforla/website/pull/2774#event-6228962242) at 2022-03-11 06:34 PM PDT -jqg123,2022-03-12T01:39:08Z,- jqg123 unassigned from issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1043829929) at 2022-03-11 06:39 PM PDT -jtw007,6031,SKILLS ISSUE -jtw007,2024-01-03T03:44:41Z,- jtw007 opened issue: [6031](https://github.com/hackforla/website/issues/6031) at 2024-01-02 07:44 PM PST -jtw007,2024-01-03T03:45:25Z,- jtw007 assigned to issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-1874815367) at 2024-01-02 07:45 PM PST -jtw007,2024-01-09T01:29:13Z,- jtw007 assigned to issue: [6074](https://github.com/hackforla/website/issues/6074) at 2024-01-08 05:29 PM PST -jtw007,2024-01-09T03:36:58Z,- jtw007 opened pull request: [6079](https://github.com/hackforla/website/pull/6079) at 2024-01-08 07:36 PM PST -jtw007,2024-01-09T03:43:30Z,- jtw007 pull request closed w/o merging: [6079](https://github.com/hackforla/website/pull/6079#event-11424795708) at 2024-01-08 07:43 PM PST -jtw007,2024-01-09T03:51:31Z,- jtw007 opened pull request: [6080](https://github.com/hackforla/website/pull/6080) at 2024-01-08 07:51 PM PST -jtw007,2024-01-09T04:01:47Z,- jtw007 pull request closed w/o merging: [6080](https://github.com/hackforla/website/pull/6080#event-11424891566) at 2024-01-08 08:01 PM PST -jtw007,2024-01-09T04:09:42Z,- jtw007 opened pull request: [6081](https://github.com/hackforla/website/pull/6081) at 2024-01-08 08:09 PM PST -jtw007,2024-01-12T22:53:05Z,- jtw007 pull request closed w/o merging: [6081](https://github.com/hackforla/website/pull/6081#event-11474701822) at 2024-01-12 02:53 PM PST -jtw007,2024-01-12T22:56:19Z,- jtw007 opened pull request: [6103](https://github.com/hackforla/website/pull/6103) at 2024-01-12 02:56 PM PST -jtw007,2024-01-12T22:57:49Z,- jtw007 commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1890089390) at 2024-01-12 02:57 PM PST -jtw007,2024-01-17T20:26:36Z,- jtw007 commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1896636766) at 2024-01-17 12:26 PM PST -jtw007,2024-01-18T22:55:43Z,- jtw007 commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1899349396) at 2024-01-18 02:55 PM PST -jtw007,2024-01-19T05:49:27Z,- jtw007 pull request merged: [6103](https://github.com/hackforla/website/pull/6103#event-11533222178) at 2024-01-18 09:49 PM PST -jtw007,2024-01-24T23:30:41Z,- jtw007 closed issue as completed: [6031](https://github.com/hackforla/website/issues/6031#event-11590792736) at 2024-01-24 03:30 PM PST -jtw007,2024-01-24T23:58:11Z,- jtw007 assigned to issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1899881564) at 2024-01-24 03:58 PM PST -jtw007,2024-01-25T01:33:43Z,- jtw007 commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1909200105) at 2024-01-24 05:33 PM PST -jtw007,2024-01-25T22:32:57Z,- jtw007 opened pull request: [6164](https://github.com/hackforla/website/pull/6164) at 2024-01-25 02:32 PM PST -jtw007,2024-01-26T06:56:08Z,- jtw007 pull request merged: [6164](https://github.com/hackforla/website/pull/6164#event-11605549271) at 2024-01-25 10:56 PM PST -jtw007,2024-01-30T23:43:52Z,- jtw007 assigned to issue: [6187](https://github.com/hackforla/website/issues/6187) at 2024-01-30 03:43 PM PST -jtw007,2024-01-30T23:45:23Z,- jtw007 commented on issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1918101638) at 2024-01-30 03:45 PM PST -jtw007,2024-02-01T01:55:27Z,- jtw007 opened pull request: [6203](https://github.com/hackforla/website/pull/6203) at 2024-01-31 05:55 PM PST -jtw007,2024-02-01T06:49:05Z,- jtw007 unassigned from issue: [6187](https://github.com/hackforla/website/issues/6187#issuecomment-1918101638) at 2024-01-31 10:49 PM PST -jtw007,2024-02-01T06:59:19Z,- jtw007 pull request closed w/o merging: [6203](https://github.com/hackforla/website/pull/6203#event-11665365967) at 2024-01-31 10:59 PM PST -jtw007,2024-02-01T20:58:18Z,- jtw007 assigned to issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1875005173) at 2024-02-01 12:58 PM PST -jtw007,2024-02-01T20:58:36Z,- jtw007 unassigned from issue: [6047](https://github.com/hackforla/website/issues/6047#issuecomment-1922232023) at 2024-02-01 12:58 PM PST -jtw007,2024-02-01T20:59:08Z,- jtw007 assigned to issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1795855938) at 2024-02-01 12:59 PM PST -jtw007,2024-02-01T21:15:21Z,- jtw007 commented on issue: [5697](https://github.com/hackforla/website/issues/5697#issuecomment-1922257879) at 2024-02-01 01:15 PM PST -jtw007,2024-02-01T22:00:36Z,- jtw007 opened pull request: [6206](https://github.com/hackforla/website/pull/6206) at 2024-02-01 02:00 PM PST -jtw007,2024-02-03T05:33:38Z,- jtw007 pull request merged: [6206](https://github.com/hackforla/website/pull/6206#event-11691680986) at 2024-02-02 09:33 PM PST -jtw007,2024-02-20T00:44:20Z,- jtw007 assigned to issue: [6298](https://github.com/hackforla/website/issues/6298) at 2024-02-19 04:44 PM PST -jtw007,2024-02-20T00:45:30Z,- jtw007 commented on issue: [6298](https://github.com/hackforla/website/issues/6298#issuecomment-1953321229) at 2024-02-19 04:45 PM PST -jtw007,2024-02-21T02:16:24Z,- jtw007 opened pull request: [6328](https://github.com/hackforla/website/pull/6328) at 2024-02-20 06:16 PM PST -jtw007,2024-02-23T01:33:38Z,- jtw007 submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1897262751) at 2024-02-22 05:33 PM PST -jtw007,2024-02-23T08:02:33Z,- jtw007 pull request merged: [6328](https://github.com/hackforla/website/pull/6328#event-11900452861) at 2024-02-23 12:02 AM PST -jtw007,2024-02-25T06:49:47Z,- jtw007 submitted pull request review: [6360](https://github.com/hackforla/website/pull/6360#pullrequestreview-1899614726) at 2024-02-24 10:49 PM PST -jtw007,2024-02-29T20:24:09Z,- jtw007 commented on pull request: [6400](https://github.com/hackforla/website/pull/6400#issuecomment-1971897297) at 2024-02-29 12:24 PM PST -jtw007,2024-03-01T02:38:29Z,- jtw007 submitted pull request review: [6400](https://github.com/hackforla/website/pull/6400#pullrequestreview-1910219389) at 2024-02-29 06:38 PM PST -jtw007,2024-06-27T19:35:17Z,- jtw007 commented on issue: [6031](https://github.com/hackforla/website/issues/6031#issuecomment-2195526353) at 2024-06-27 12:35 PM PDT -julialuongw,5001,SKILLS ISSUE -julialuongw,2023-07-18T03:10:35Z,- julialuongw opened issue: [5001](https://github.com/hackforla/website/issues/5001) at 2023-07-17 08:10 PM PDT -julialuongw,2023-07-24T20:15:12Z,- julialuongw commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1648542483) at 2023-07-24 01:15 PM PDT -julialuongw,2023-07-25T22:15:34Z,- julialuongw commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1650635623) at 2023-07-25 03:15 PM PDT -julialuongw,2023-07-25T22:15:46Z,- julialuongw assigned to issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1650635623) at 2023-07-25 03:15 PM PDT -julialuongw,2023-07-25T22:21:32Z,- julialuongw assigned to issue: [4813](https://github.com/hackforla/website/issues/4813) at 2023-07-25 03:21 PM PDT -julialuongw,2023-07-26T01:38:16Z,- julialuongw opened pull request: [5063](https://github.com/hackforla/website/pull/5063) at 2023-07-25 06:38 PM PDT -julialuongw,2023-07-26T01:44:32Z,- julialuongw commented on issue: [4813](https://github.com/hackforla/website/issues/4813#issuecomment-1650846602) at 2023-07-25 06:44 PM PDT -julialuongw,2023-07-26T01:47:45Z,- julialuongw commented on issue: [5001](https://github.com/hackforla/website/issues/5001#issuecomment-1650848702) at 2023-07-25 06:47 PM PDT -julialuongw,2023-07-29T10:43:09Z,- julialuongw pull request merged: [5063](https://github.com/hackforla/website/pull/5063#event-9954270791) at 2023-07-29 03:43 AM PDT -julialuongw,2023-09-11T20:30:31Z,- julialuongw closed issue as completed: [5001](https://github.com/hackforla/website/issues/5001#event-10338700451) at 2023-09-11 01:30 PM PDT -junadkat32,5090,SKILLS ISSUE -junadkat32,2023-07-26T03:47:48Z,- junadkat32 opened issue: [5090](https://github.com/hackforla/website/issues/5090) at 2023-07-25 08:47 PM PDT -junadkat32,2023-11-15T21:36:58Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813286564) at 2023-11-15 01:36 PM PST -junadkat32,2023-11-15T21:37:04Z,- junadkat32 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813286564) at 2023-11-15 01:37 PM PST -junadkat32,2023-11-15T21:37:36Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813297093) at 2023-11-15 01:37 PM PST -junadkat32,2023-11-15T22:09:42Z,- junadkat32 unassigned from issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813299500) at 2023-11-15 02:09 PM PST -junadkat32,2023-11-16T18:13:11Z,- junadkat32 assigned to issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1813299500) at 2023-11-16 10:13 AM PST -junadkat32,2023-11-16T18:34:25Z,- junadkat32 commented on issue: [5807](https://github.com/hackforla/website/issues/5807#issuecomment-1815016947) at 2023-11-16 10:34 AM PST -junadkat32,2023-11-16T19:20:06Z,- junadkat32 opened pull request: [5914](https://github.com/hackforla/website/pull/5914) at 2023-11-16 11:20 AM PST -junadkat32,2023-11-16T20:14:23Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815246280) at 2023-11-16 12:14 PM PST -junadkat32,2023-11-16T22:11:55Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1815395954) at 2023-11-16 02:11 PM PST -junadkat32,2023-11-17T22:56:27Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1817224208) at 2023-11-17 02:56 PM PST -junadkat32,2023-11-22T22:46:17Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1823597692) at 2023-11-22 02:46 PM PST -junadkat32,2023-11-23T16:43:30Z,- junadkat32 commented on pull request: [5914](https://github.com/hackforla/website/pull/5914#issuecomment-1824713164) at 2023-11-23 08:43 AM PST -junadkat32,2023-11-27T01:55:36Z,- junadkat32 pull request merged: [5914](https://github.com/hackforla/website/pull/5914#event-11065015373) at 2023-11-26 05:55 PM PST -junadkat32,2023-11-30T19:40:53Z,- junadkat32 assigned to issue: [5674](https://github.com/hackforla/website/issues/5674#issuecomment-1751959664) at 2023-11-30 11:40 AM PST -junadkat32,2023-11-30T20:55:47Z,- junadkat32 opened pull request: [5950](https://github.com/hackforla/website/pull/5950) at 2023-11-30 12:55 PM PST -junadkat32,2023-12-08T16:21:04Z,- junadkat32 submitted pull request review: [5950](https://github.com/hackforla/website/pull/5950#pullrequestreview-1772757871) at 2023-12-08 08:21 AM PST -junadkat32,2023-12-09T19:38:31Z,- junadkat32 pull request merged: [5950](https://github.com/hackforla/website/pull/5950#event-11201318335) at 2023-12-09 11:38 AM PST -junadkat32,2024-01-31T07:01:10Z,- junadkat32 assigned to issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1650934855) at 2024-01-30 11:01 PM PST -junadkat32,2024-02-08T22:28:32Z,- junadkat32 assigned to issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1875028964) at 2024-02-08 02:28 PM PST -junadkat32,2024-02-08T22:30:39Z,- junadkat32 commented on issue: [6051](https://github.com/hackforla/website/issues/6051#issuecomment-1935036593) at 2024-02-08 02:30 PM PST -junadkat32,2024-02-08T23:16:15Z,- junadkat32 opened pull request: [6267](https://github.com/hackforla/website/pull/6267) at 2024-02-08 03:16 PM PST -junadkat32,2024-02-09T14:40:41Z,- junadkat32 commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1936052623) at 2024-02-09 06:40 AM PST -junadkat32,2024-02-10T22:32:35Z,- junadkat32 commented on pull request: [6267](https://github.com/hackforla/website/pull/6267#issuecomment-1937301260) at 2024-02-10 02:32 PM PST -junadkat32,2024-02-13T16:37:03Z,- junadkat32 assigned to issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1937335130) at 2024-02-13 08:37 AM PST -junadkat32,2024-02-13T16:38:44Z,- junadkat32 commented on issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1941971834) at 2024-02-13 08:38 AM PST -junadkat32,2024-02-13T16:48:28Z,- junadkat32 opened pull request: [6287](https://github.com/hackforla/website/pull/6287) at 2024-02-13 08:48 AM PST -junadkat32,2024-02-13T21:26:51Z,- junadkat32 commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1942591247) at 2024-02-13 01:26 PM PST -junadkat32,2024-02-14T07:56:58Z,- junadkat32 unassigned from issue: [6053](https://github.com/hackforla/website/issues/6053#issuecomment-1943244039) at 2024-02-13 11:56 PM PST -junadkat32,2024-02-14T07:57:58Z,- junadkat32 pull request closed w/o merging: [6287](https://github.com/hackforla/website/pull/6287#event-11798048849) at 2024-02-13 11:57 PM PST -junadkat32,2024-02-16T00:31:24Z,- junadkat32 pull request merged: [6267](https://github.com/hackforla/website/pull/6267#event-11822685686) at 2024-02-15 04:31 PM PST -junadkat32,2024-02-20T18:20:09Z,- junadkat32 assigned to issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 10:20 AM PST -junadkat32,2024-02-20T20:36:02Z,- junadkat32 unassigned from issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 12:36 PM PST -junadkat32,2024-02-20T20:36:24Z,- junadkat32 reopened pull request: [6287](https://github.com/hackforla/website/pull/6287#event-11798048849) at 2024-02-20 12:36 PM PST -junadkat32,2024-02-20T20:40:16Z,- junadkat32 commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1955043171) at 2024-02-20 12:40 PM PST -junadkat32,2024-02-21T00:13:33Z,- junadkat32 pull request closed w/o merging: [6287](https://github.com/hackforla/website/pull/6287#event-11868817149) at 2024-02-20 04:13 PM PST -junadkat32,2024-02-21T03:22:29Z,- junadkat32 assigned to issue: [6311](https://github.com/hackforla/website/issues/6311) at 2024-02-20 07:22 PM PST -junadkat32,2024-02-21T03:23:13Z,- junadkat32 commented on issue: [6311](https://github.com/hackforla/website/issues/6311#issuecomment-1955809806) at 2024-02-20 07:23 PM PST -junadkat32,2024-02-29T01:44:07Z,- junadkat32 opened pull request: [6391](https://github.com/hackforla/website/pull/6391) at 2024-02-28 05:44 PM PST -junadkat32,2024-02-29T02:32:13Z,- junadkat32 pull request closed w/o merging: [6391](https://github.com/hackforla/website/pull/6391#event-11959845318) at 2024-02-28 06:32 PM PST -junadkat32,2024-02-29T02:32:41Z,- junadkat32 commented on pull request: [6391](https://github.com/hackforla/website/pull/6391#issuecomment-1970288108) at 2024-02-28 06:32 PM PST -junadkat32,2024-02-29T04:15:50Z,- junadkat32 opened pull request: [6393](https://github.com/hackforla/website/pull/6393) at 2024-02-28 08:15 PM PST -junadkat32,2024-03-01T16:41:07Z,- junadkat32 commented on issue: [5090](https://github.com/hackforla/website/issues/5090#issuecomment-1973516081) at 2024-03-01 08:41 AM PST -junadkat32,2024-03-02T08:03:20Z,- junadkat32 pull request merged: [6393](https://github.com/hackforla/website/pull/6393#event-11986792880) at 2024-03-02 12:03 AM PST -Jung-GunSong,6042,SKILLS ISSUE -Jung-GunSong,2024-01-03T05:07:12Z,- Jung-GunSong opened issue: [6042](https://github.com/hackforla/website/issues/6042) at 2024-01-02 09:07 PM PST -Jung-GunSong,2024-01-03T05:07:12Z,- Jung-GunSong assigned to issue: [6042](https://github.com/hackforla/website/issues/6042) at 2024-01-02 09:07 PM PST -Jung-GunSong,2024-01-04T22:23:09Z,- Jung-GunSong assigned to issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1839980618) at 2024-01-04 02:23 PM PST -Jung-GunSong,2024-01-04T22:29:57Z,- Jung-GunSong commented on issue: [5968](https://github.com/hackforla/website/issues/5968#issuecomment-1877846425) at 2024-01-04 02:29 PM PST -Jung-GunSong,2024-01-05T00:13:27Z,- Jung-GunSong opened pull request: [6063](https://github.com/hackforla/website/pull/6063) at 2024-01-04 04:13 PM PST -Jung-GunSong,2024-01-07T21:20:48Z,- Jung-GunSong pull request merged: [6063](https://github.com/hackforla/website/pull/6063#event-11412001606) at 2024-01-07 01:20 PM PST -Jung-GunSong,2024-01-08T02:31:56Z,- Jung-GunSong commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880309181) at 2024-01-07 06:31 PM PST -Jung-GunSong,2024-01-10T03:32:45Z,- Jung-GunSong commented on issue: [6042](https://github.com/hackforla/website/issues/6042#issuecomment-1884135976) at 2024-01-09 07:32 PM PST -Jung-GunSong,2024-01-11T22:59:53Z,- Jung-GunSong assigned to issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1805006007) at 2024-01-11 02:59 PM PST -Jung-GunSong,2024-01-11T23:02:13Z,- Jung-GunSong commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1888104997) at 2024-01-11 03:02 PM PST -Jung-GunSong,2024-01-11T23:58:55Z,- Jung-GunSong opened pull request: [6100](https://github.com/hackforla/website/pull/6100) at 2024-01-11 03:58 PM PST -Jung-GunSong,2024-01-17T04:25:16Z,- Jung-GunSong pull request merged: [6100](https://github.com/hackforla/website/pull/6100#event-11506289915) at 2024-01-16 08:25 PM PST -Jung-GunSong,2024-01-18T18:20:31Z,- Jung-GunSong assigned to issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1880320764) at 2024-01-18 10:20 AM PST -Jung-GunSong,2024-01-18T18:22:16Z,- Jung-GunSong commented on issue: [5982](https://github.com/hackforla/website/issues/5982#issuecomment-1898992884) at 2024-01-18 10:22 AM PST -Jung-GunSong,2024-01-19T03:34:37Z,- Jung-GunSong assigned to issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1854938752) at 2024-01-18 07:34 PM PST -Jung-GunSong,2024-01-24T19:19:35Z,- Jung-GunSong commented on issue: [4035](https://github.com/hackforla/website/issues/4035#issuecomment-1908769235) at 2024-01-24 11:19 AM PST -Jung-GunSong,2024-02-01T20:37:57Z,- Jung-GunSong opened pull request: [6205](https://github.com/hackforla/website/pull/6205) at 2024-02-01 12:37 PM PST -Jung-GunSong,2024-02-06T16:36:26Z,- Jung-GunSong commented on pull request: [6205](https://github.com/hackforla/website/pull/6205#issuecomment-1930284272) at 2024-02-06 08:36 AM PST -Jung-GunSong,2024-02-07T10:49:38Z,- Jung-GunSong pull request merged: [6205](https://github.com/hackforla/website/pull/6205#event-11730618104) at 2024-02-07 02:49 AM PST -Jung-GunSong,2024-02-16T03:00:15Z,- Jung-GunSong assigned to issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1915700185) at 2024-02-15 07:00 PM PST -Jung-GunSong,2024-02-16T03:01:18Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1947684705) at 2024-02-15 07:01 PM PST -Jung-GunSong,2024-02-26T18:25:11Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1964842947) at 2024-02-26 10:25 AM PST -Jung-GunSong,2024-03-05T19:18:17Z,- Jung-GunSong commented on pull request: [6417](https://github.com/hackforla/website/pull/6417#issuecomment-1979471910) at 2024-03-05 11:18 AM PST -Jung-GunSong,2024-03-05T19:48:22Z,- Jung-GunSong submitted pull request review: [6417](https://github.com/hackforla/website/pull/6417#pullrequestreview-1917973499) at 2024-03-05 11:48 AM PST -Jung-GunSong,2024-03-11T23:27:58Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-1989633207) at 2024-03-11 04:27 PM PDT -Jung-GunSong,2024-03-21T15:26:32Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2012634083) at 2024-03-21 08:26 AM PDT -Jung-GunSong,2024-03-27T02:46:32Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2021818530) at 2024-03-26 07:46 PM PDT -Jung-GunSong,2024-05-08T03:36:51Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2099677332) at 2024-05-07 08:36 PM PDT -Jung-GunSong,2024-05-08T03:38:50Z,- Jung-GunSong commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2099678880) at 2024-05-07 08:38 PM PDT -junjun107,3512,SKILLS ISSUE -junjun107,2022-08-31T03:09:48Z,- junjun107 opened issue: [3512](https://github.com/hackforla/website/issues/3512) at 2022-08-30 08:09 PM PDT -justinPemberton,3545,SKILLS ISSUE -justinPemberton,2022-09-13T02:56:55Z,- justinPemberton opened issue: [3545](https://github.com/hackforla/website/issues/3545) at 2022-09-12 07:56 PM PDT -justinPemberton,2022-09-19T21:42:19Z,- justinPemberton assigned to issue: [3545](https://github.com/hackforla/website/issues/3545) at 2022-09-19 02:42 PM PDT -justinPemberton,2022-11-13T20:06:36Z,- justinPemberton commented on issue: [3545](https://github.com/hackforla/website/issues/3545#issuecomment-1312810108) at 2022-11-13 12:06 PM PST -jyaymie,3610,SKILLS ISSUE -jyaymie,2022-10-11T02:54:24Z,- jyaymie opened issue: [3610](https://github.com/hackforla/website/issues/3610) at 2022-10-10 07:54 PM PDT -jyaymie,2022-10-12T03:00:34Z,- jyaymie assigned to issue: [3610](https://github.com/hackforla/website/issues/3610) at 2022-10-11 08:00 PM PDT -jyaymie,2022-10-13T21:52:04Z,- jyaymie assigned to issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1048151464) at 2022-10-13 02:52 PM PDT -jyaymie,2022-10-13T21:58:28Z,- jyaymie commented on issue: [2847](https://github.com/hackforla/website/issues/2847#issuecomment-1278219842) at 2022-10-13 02:58 PM PDT -jyaymie,2022-10-13T22:00:39Z,- jyaymie commented on issue: [3610](https://github.com/hackforla/website/issues/3610#issuecomment-1278221387) at 2022-10-13 03:00 PM PDT -jyaymie,2022-10-13T22:34:32Z,- jyaymie opened pull request: [3618](https://github.com/hackforla/website/pull/3618) at 2022-10-13 03:34 PM PDT -jyaymie,2022-10-13T23:07:23Z,- jyaymie commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278268404) at 2022-10-13 04:07 PM PDT -jyaymie,2022-10-13T23:20:47Z,- jyaymie commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278276598) at 2022-10-13 04:20 PM PDT -jyaymie,2022-10-13T23:21:32Z,- jyaymie submitted pull request review: [3617](https://github.com/hackforla/website/pull/3617#pullrequestreview-1141619595) at 2022-10-13 04:21 PM PDT -jyaymie,2022-10-14T02:10:07Z,- jyaymie commented on pull request: [3618](https://github.com/hackforla/website/pull/3618#issuecomment-1278377636) at 2022-10-13 07:10 PM PDT -jyaymie,2022-10-14T02:26:47Z,- jyaymie pull request merged: [3618](https://github.com/hackforla/website/pull/3618#event-7586420260) at 2022-10-13 07:26 PM PDT -jyaymie,2022-10-14T20:20:08Z,- jyaymie assigned to issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1145812161) at 2022-10-14 01:20 PM PDT -jyaymie,2022-10-14T20:24:46Z,- jyaymie commented on issue: [3201](https://github.com/hackforla/website/issues/3201#issuecomment-1279426828) at 2022-10-14 01:24 PM PDT -jyaymie,2022-10-14T23:02:03Z,- jyaymie opened pull request: [3624](https://github.com/hackforla/website/pull/3624) at 2022-10-14 04:02 PM PDT -jyaymie,2022-10-14T23:07:29Z,- jyaymie commented on pull request: [3621](https://github.com/hackforla/website/pull/3621#issuecomment-1279573540) at 2022-10-14 04:07 PM PDT -jyaymie,2022-10-14T23:10:10Z,- jyaymie submitted pull request review: [3621](https://github.com/hackforla/website/pull/3621#pullrequestreview-1143091937) at 2022-10-14 04:10 PM PDT -jyaymie,2022-10-15T22:05:43Z,- jyaymie pull request merged: [3624](https://github.com/hackforla/website/pull/3624#event-7595562563) at 2022-10-15 03:05 PM PDT -jyaymie,2022-10-16T17:19:36Z,- jyaymie commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1280013456) at 2022-10-16 10:19 AM PDT -jyaymie,2022-10-16T17:42:53Z,- jyaymie submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1143319293) at 2022-10-16 10:42 AM PDT -jyaymie,2022-10-16T17:56:36Z,- jyaymie assigned to issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1264691932) at 2022-10-16 10:56 AM PDT -jyaymie,2022-10-16T17:59:00Z,- jyaymie commented on issue: [3596](https://github.com/hackforla/website/issues/3596#issuecomment-1280020760) at 2022-10-16 10:59 AM PDT -jyaymie,2022-10-16T19:21:58Z,- jyaymie opened pull request: [3629](https://github.com/hackforla/website/pull/3629) at 2022-10-16 12:21 PM PDT -jyaymie,2022-10-17T17:57:45Z,- jyaymie submitted pull request review: [3628](https://github.com/hackforla/website/pull/3628#pullrequestreview-1144592029) at 2022-10-17 10:57 AM PDT -jyaymie,2022-10-18T00:07:06Z,- jyaymie commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1281648054) at 2022-10-17 05:07 PM PDT -jyaymie,2022-10-18T00:23:56Z,- jyaymie submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1144947931) at 2022-10-17 05:23 PM PDT -jyaymie,2022-10-18T01:20:38Z,- jyaymie pull request merged: [3629](https://github.com/hackforla/website/pull/3629#event-7606983148) at 2022-10-17 06:20 PM PDT -jyaymie,2022-10-18T18:57:26Z,- jyaymie submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1146361349) at 2022-10-18 11:57 AM PDT -jyaymie,2022-10-19T21:10:20Z,- jyaymie commented on pull request: [3642](https://github.com/hackforla/website/pull/3642#issuecomment-1284577969) at 2022-10-19 02:10 PM PDT -jyaymie,2022-10-19T21:11:52Z,- jyaymie submitted pull request review: [3642](https://github.com/hackforla/website/pull/3642#pullrequestreview-1148280880) at 2022-10-19 02:11 PM PDT -jyaymie,2022-10-23T18:29:02Z,- jyaymie assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1284381184) at 2022-10-23 11:29 AM PDT -jyaymie,2022-10-23T18:35:57Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1288172342) at 2022-10-23 11:35 AM PDT -jyaymie,2022-10-24T06:15:54Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1288471549) at 2022-10-23 11:15 PM PDT -jyaymie,2022-10-24T18:49:51Z,- jyaymie commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1289453367) at 2022-10-24 11:49 AM PDT -jyaymie,2022-10-24T19:08:29Z,- jyaymie submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1153636118) at 2022-10-24 12:08 PM PDT -jyaymie,2022-10-25T00:03:14Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1289797521) at 2022-10-24 05:03 PM PDT -jyaymie,2022-10-25T21:31:19Z,- jyaymie commented on pull request: [3658](https://github.com/hackforla/website/pull/3658#issuecomment-1291166326) at 2022-10-25 02:31 PM PDT -jyaymie,2022-10-25T21:36:44Z,- jyaymie submitted pull request review: [3658](https://github.com/hackforla/website/pull/3658#pullrequestreview-1155528625) at 2022-10-25 02:36 PM PDT -jyaymie,2022-10-25T21:38:59Z,- jyaymie commented on pull request: [3655](https://github.com/hackforla/website/pull/3655#issuecomment-1291172423) at 2022-10-25 02:38 PM PDT -jyaymie,2022-10-25T21:45:41Z,- jyaymie submitted pull request review: [3655](https://github.com/hackforla/website/pull/3655#pullrequestreview-1155543091) at 2022-10-25 02:45 PM PDT -jyaymie,2022-10-25T22:02:22Z,- jyaymie commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291190215) at 2022-10-25 03:02 PM PDT -jyaymie,2022-10-25T22:08:10Z,- jyaymie commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291194542) at 2022-10-25 03:08 PM PDT -jyaymie,2022-10-25T22:09:46Z,- jyaymie commented on pull request: [3659](https://github.com/hackforla/website/pull/3659#issuecomment-1291195673) at 2022-10-25 03:09 PM PDT -jyaymie,2022-10-25T22:14:08Z,- jyaymie submitted pull request review: [3659](https://github.com/hackforla/website/pull/3659#pullrequestreview-1155597047) at 2022-10-25 03:14 PM PDT -jyaymie,2022-10-25T22:21:11Z,- jyaymie submitted pull request review: [3657](https://github.com/hackforla/website/pull/3657#pullrequestreview-1155610296) at 2022-10-25 03:21 PM PDT -jyaymie,2022-10-26T02:27:02Z,- jyaymie commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1291410720) at 2022-10-25 07:27 PM PDT -jyaymie,2022-10-26T02:47:28Z,- jyaymie commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1291423985) at 2022-10-25 07:47 PM PDT -jyaymie,2022-10-26T03:32:56Z,- jyaymie submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1155813718) at 2022-10-25 08:32 PM PDT -jyaymie,2022-10-26T08:06:02Z,- jyaymie opened pull request: [3664](https://github.com/hackforla/website/pull/3664) at 2022-10-26 01:06 AM PDT -jyaymie,2022-10-27T01:22:21Z,- jyaymie commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292845441) at 2022-10-26 06:22 PM PDT -jyaymie,2022-10-27T01:27:13Z,- jyaymie commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1292847914) at 2022-10-26 06:27 PM PDT -jyaymie,2022-10-28T20:48:14Z,- jyaymie submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1160704848) at 2022-10-28 01:48 PM PDT -jyaymie,2022-11-01T04:25:58Z,- jyaymie pull request merged: [3664](https://github.com/hackforla/website/pull/3664#event-7710012207) at 2022-10-31 09:25 PM PDT -jyaymie,2022-11-02T01:52:45Z,- jyaymie commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299448044) at 2022-11-01 06:52 PM PDT -jyaymie,2022-11-02T02:09:04Z,- jyaymie submitted pull request review: [3687](https://github.com/hackforla/website/pull/3687#pullrequestreview-1164300472) at 2022-11-01 07:09 PM PDT -jyaymie,2022-11-02T02:11:49Z,- jyaymie commented on pull request: [3686](https://github.com/hackforla/website/pull/3686#issuecomment-1299463822) at 2022-11-01 07:11 PM PDT -jyaymie,2022-11-02T02:15:10Z,- jyaymie submitted pull request review: [3686](https://github.com/hackforla/website/pull/3686#pullrequestreview-1164306571) at 2022-11-01 07:15 PM PDT -jyaymie,2022-11-02T02:19:46Z,- jyaymie commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299469899) at 2022-11-01 07:19 PM PDT -jyaymie,2022-11-02T02:29:54Z,- jyaymie assigned to issue: [2216](https://github.com/hackforla/website/issues/2216) at 2022-11-01 07:29 PM PDT -jyaymie,2022-11-02T02:35:10Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1299481617) at 2022-11-01 07:35 PM PDT -jyaymie,2022-11-02T18:46:32Z,- jyaymie commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301071191) at 2022-11-02 11:46 AM PDT -jyaymie,2022-11-02T18:50:25Z,- jyaymie submitted pull request review: [3689](https://github.com/hackforla/website/pull/3689#pullrequestreview-1165836220) at 2022-11-02 11:50 AM PDT -jyaymie,2022-11-02T19:45:30Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301143213) at 2022-11-02 12:45 PM PDT -jyaymie,2022-11-03T04:17:03Z,- jyaymie unassigned from issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301143213) at 2022-11-02 09:17 PM PDT -jyaymie,2022-11-03T04:41:54Z,- jyaymie commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301633567) at 2022-11-02 09:41 PM PDT -jyaymie,2022-11-07T15:07:25Z,- jyaymie commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1305751430) at 2022-11-07 07:07 AM PST -jyaymie,2022-11-07T15:11:13Z,- jyaymie submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1170576965) at 2022-11-07 07:11 AM PST -jyaymie,2022-11-07T15:17:19Z,- jyaymie commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1305765721) at 2022-11-07 07:17 AM PST -jyaymie,2022-11-07T15:57:52Z,- jyaymie submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1170659650) at 2022-11-07 07:57 AM PST -jyaymie,2022-11-07T20:17:34Z,- jyaymie commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1306138211) at 2022-11-07 12:17 PM PST -jyaymie,2022-11-07T20:18:56Z,- jyaymie submitted pull request review: [3672](https://github.com/hackforla/website/pull/3672#pullrequestreview-1171034427) at 2022-11-07 12:18 PM PST -jyaymie,2022-11-07T21:13:57Z,- jyaymie commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306200304) at 2022-11-07 01:13 PM PST -jyaymie,2022-11-07T21:40:56Z,- jyaymie submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1171133019) at 2022-11-07 01:40 PM PST -jyaymie,2022-11-08T20:01:12Z,- jyaymie commented on pull request: [3699](https://github.com/hackforla/website/pull/3699#issuecomment-1307760111) at 2022-11-08 12:01 PM PST -jyaymie,2022-11-08T20:03:47Z,- jyaymie submitted pull request review: [3699](https://github.com/hackforla/website/pull/3699#pullrequestreview-1172764494) at 2022-11-08 12:03 PM PST -jyaymie,2022-11-08T20:04:27Z,- jyaymie commented on pull request: [3700](https://github.com/hackforla/website/pull/3700#issuecomment-1307764162) at 2022-11-08 12:04 PM PST -jyaymie,2022-11-08T20:09:28Z,- jyaymie submitted pull request review: [3700](https://github.com/hackforla/website/pull/3700#pullrequestreview-1172771505) at 2022-11-08 12:09 PM PST -jyaymie,2022-11-08T20:30:26Z,- jyaymie submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1172795564) at 2022-11-08 12:30 PM PST -jyaymie,2022-11-09T02:26:45Z,- jyaymie commented on pull request: [3703](https://github.com/hackforla/website/pull/3703#issuecomment-1308114353) at 2022-11-08 06:26 PM PST -jyaymie,2022-11-09T02:32:06Z,- jyaymie submitted pull request review: [3703](https://github.com/hackforla/website/pull/3703#pullrequestreview-1173166793) at 2022-11-08 06:32 PM PST -jyaymie,2022-11-15T05:46:47Z,- jyaymie commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314805315) at 2022-11-14 09:46 PM PST -jyaymie,2022-11-15T06:08:43Z,- jyaymie submitted pull request review: [3717](https://github.com/hackforla/website/pull/3717#pullrequestreview-1180248957) at 2022-11-14 10:08 PM PST -jyaymie,2022-11-15T06:10:45Z,- jyaymie commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314823031) at 2022-11-14 10:10 PM PST -jyaymie,2022-11-15T06:21:30Z,- jyaymie submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1180258922) at 2022-11-14 10:21 PM PST -jyaymie,2022-11-15T23:07:07Z,- jyaymie commented on pull request: [3721](https://github.com/hackforla/website/pull/3721#issuecomment-1315988412) at 2022-11-15 03:07 PM PST -jyaymie,2022-11-15T23:21:53Z,- jyaymie submitted pull request review: [3721](https://github.com/hackforla/website/pull/3721#pullrequestreview-1181679219) at 2022-11-15 03:21 PM PST -jyaymie,2022-11-15T23:26:58Z,- jyaymie commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316012450) at 2022-11-15 03:26 PM PST -jyaymie,2022-11-15T23:42:24Z,- jyaymie submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1181693537) at 2022-11-15 03:42 PM PST -jyaymie,2022-11-23T03:18:15Z,- jyaymie commented on pull request: [3736](https://github.com/hackforla/website/pull/3736#issuecomment-1324500264) at 2022-11-22 07:18 PM PST -jyaymie,2022-11-23T19:35:15Z,- jyaymie submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1192185546) at 2022-11-23 11:35 AM PST -jyaymie,2022-11-23T19:52:13Z,- jyaymie submitted pull request review: [3736](https://github.com/hackforla/website/pull/3736#pullrequestreview-1192200951) at 2022-11-23 11:52 AM PST -jyaymie,2022-11-27T19:36:47Z,- jyaymie unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-11-27 11:36 AM PST -jyaymie,2022-11-28T04:48:31Z,- jyaymie commented on pull request: [3749](https://github.com/hackforla/website/pull/3749#issuecomment-1328533655) at 2022-11-27 08:48 PM PST -jyaymie,2022-11-28T05:19:40Z,- jyaymie submitted pull request review: [3749](https://github.com/hackforla/website/pull/3749#pullrequestreview-1195219727) at 2022-11-27 09:19 PM PST -jyaymie,2022-11-29T21:14:23Z,- jyaymie commented on pull request: [3753](https://github.com/hackforla/website/pull/3753#issuecomment-1331317658) at 2022-11-29 01:14 PM PST -jyaymie,2022-11-29T21:19:15Z,- jyaymie submitted pull request review: [3753](https://github.com/hackforla/website/pull/3753#pullrequestreview-1198369424) at 2022-11-29 01:19 PM PST -jyaymie,2022-11-29T22:59:40Z,- jyaymie assigned to issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1330824787) at 2022-11-29 02:59 PM PST -jyaymie,2022-11-29T23:01:06Z,- jyaymie commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1331426760) at 2022-11-29 03:01 PM PST -jyaymie,2022-11-30T04:10:57Z,- jyaymie commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1331620548) at 2022-11-29 08:10 PM PST -jyaymie,2022-12-16T20:50:19Z,- jyaymie commented on pull request: [3754](https://github.com/hackforla/website/pull/3754#issuecomment-1355588828) at 2022-12-16 12:50 PM PST -jyaymie,2023-01-09T22:19:32Z,- jyaymie opened pull request: [3801](https://github.com/hackforla/website/pull/3801) at 2023-01-09 02:19 PM PST -jyaymie,2023-01-09T22:28:36Z,- jyaymie commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1376420554) at 2023-01-09 02:28 PM PST -jyaymie,2023-01-09T22:33:25Z,- jyaymie submitted pull request review: [3799](https://github.com/hackforla/website/pull/3799#pullrequestreview-1241295973) at 2023-01-09 02:33 PM PST -jyaymie,2023-01-09T22:34:50Z,- jyaymie commented on pull request: [3800](https://github.com/hackforla/website/pull/3800#issuecomment-1376427702) at 2023-01-09 02:34 PM PST -jyaymie,2023-01-09T22:41:04Z,- jyaymie submitted pull request review: [3800](https://github.com/hackforla/website/pull/3800#pullrequestreview-1241303019) at 2023-01-09 02:41 PM PST -jyaymie,2023-01-09T22:42:11Z,- jyaymie submitted pull request review: [3800](https://github.com/hackforla/website/pull/3800#pullrequestreview-1241303833) at 2023-01-09 02:42 PM PST -jyaymie,2023-01-11T02:16:26Z,- jyaymie commented on pull request: [3807](https://github.com/hackforla/website/pull/3807#issuecomment-1378156701) at 2023-01-10 06:16 PM PST -jyaymie,2023-01-11T02:18:53Z,- jyaymie submitted pull request review: [3807](https://github.com/hackforla/website/pull/3807#pullrequestreview-1243206471) at 2023-01-10 06:18 PM PST -jyaymie,2023-01-11T02:19:52Z,- jyaymie commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378158756) at 2023-01-10 06:19 PM PST -jyaymie,2023-01-11T02:32:34Z,- jyaymie submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1243213798) at 2023-01-10 06:32 PM PST -jyaymie,2023-01-11T02:49:09Z,- jyaymie commented on pull request: [3806](https://github.com/hackforla/website/pull/3806#issuecomment-1378174618) at 2023-01-10 06:49 PM PST -jyaymie,2023-01-11T03:00:15Z,- jyaymie submitted pull request review: [3806](https://github.com/hackforla/website/pull/3806#pullrequestreview-1243229117) at 2023-01-10 07:00 PM PST -jyaymie,2023-01-11T03:21:57Z,- jyaymie commented on pull request: [3808](https://github.com/hackforla/website/pull/3808#issuecomment-1378193836) at 2023-01-10 07:21 PM PST -jyaymie,2023-01-11T06:53:03Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378310835) at 2023-01-10 10:53 PM PST -jyaymie,2023-01-11T07:07:23Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378321175) at 2023-01-10 11:07 PM PST -jyaymie,2023-01-11T21:09:13Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379486772) at 2023-01-11 01:09 PM PST -jyaymie,2023-01-11T21:11:37Z,- jyaymie submitted pull request review: [3808](https://github.com/hackforla/website/pull/3808#pullrequestreview-1244618743) at 2023-01-11 01:11 PM PST -jyaymie,2023-01-11T22:45:16Z,- jyaymie commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1379579390) at 2023-01-11 02:45 PM PST -jyaymie,2023-01-12T02:39:39Z,- jyaymie pull request merged: [3801](https://github.com/hackforla/website/pull/3801#event-8207120218) at 2023-01-11 06:39 PM PST -jyaymie,2023-01-15T10:15:56Z,- jyaymie assigned to issue: [3701](https://github.com/hackforla/website/issues/3701#event-7819340305) at 2023-01-15 02:15 AM PST -jyaymie,2023-01-15T10:19:02Z,- jyaymie commented on issue: [3701](https://github.com/hackforla/website/issues/3701#issuecomment-1383111960) at 2023-01-15 02:19 AM PST -jyaymie,2023-01-17T06:56:51Z,- jyaymie opened pull request: [3833](https://github.com/hackforla/website/pull/3833) at 2023-01-16 10:56 PM PST -jyaymie,2023-01-17T15:52:50Z,- jyaymie commented on pull request: [3832](https://github.com/hackforla/website/pull/3832#issuecomment-1385636670) at 2023-01-17 07:52 AM PST -jyaymie,2023-01-17T15:54:22Z,- jyaymie submitted pull request review: [3832](https://github.com/hackforla/website/pull/3832#pullrequestreview-1251832684) at 2023-01-17 07:54 AM PST -jyaymie,2023-01-17T19:35:32Z,- jyaymie commented on pull request: [3834](https://github.com/hackforla/website/pull/3834#issuecomment-1385947709) at 2023-01-17 11:35 AM PST -jyaymie,2023-01-17T19:39:27Z,- jyaymie submitted pull request review: [3834](https://github.com/hackforla/website/pull/3834#pullrequestreview-1252328150) at 2023-01-17 11:39 AM PST -jyaymie,2023-01-17T19:41:02Z,- jyaymie commented on pull request: [3835](https://github.com/hackforla/website/pull/3835#issuecomment-1385953978) at 2023-01-17 11:41 AM PST -jyaymie,2023-01-17T19:43:19Z,- jyaymie submitted pull request review: [3835](https://github.com/hackforla/website/pull/3835#pullrequestreview-1252338829) at 2023-01-17 11:43 AM PST -jyaymie,2023-01-17T19:44:25Z,- jyaymie commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1385957600) at 2023-01-17 11:44 AM PST -jyaymie,2023-01-17T19:51:38Z,- jyaymie submitted pull request review: [3836](https://github.com/hackforla/website/pull/3836#pullrequestreview-1252357529) at 2023-01-17 11:51 AM PST -jyaymie,2023-01-18T01:00:30Z,- jyaymie pull request merged: [3833](https://github.com/hackforla/website/pull/3833#event-8251200847) at 2023-01-17 05:00 PM PST -jyaymie,2023-01-18T03:37:32Z,- jyaymie commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1386438090) at 2023-01-17 07:37 PM PST -jyaymie,2023-01-18T05:51:58Z,- jyaymie submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1252865373) at 2023-01-17 09:51 PM PST -jyaymie,2023-02-07T23:35:41Z,- jyaymie commented on pull request: [3940](https://github.com/hackforla/website/pull/3940#issuecomment-1421643473) at 2023-02-07 03:35 PM PST -jyaymie,2023-02-07T23:44:53Z,- jyaymie submitted pull request review: [3940](https://github.com/hackforla/website/pull/3940#pullrequestreview-1288175562) at 2023-02-07 03:44 PM PST -jyaymie,2023-02-07T23:47:28Z,- jyaymie commented on pull request: [3954](https://github.com/hackforla/website/pull/3954#issuecomment-1421659093) at 2023-02-07 03:47 PM PST -jyaymie,2023-02-07T23:54:50Z,- jyaymie submitted pull request review: [3954](https://github.com/hackforla/website/pull/3954#pullrequestreview-1288197700) at 2023-02-07 03:54 PM PST -jyaymie,2023-02-07T23:56:33Z,- jyaymie assigned to issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-02-07 03:56 PM PST -jyaymie,2023-02-07T23:56:40Z,- jyaymie unassigned from issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-02-07 03:56 PM PST -jyaymie,2023-02-07T23:57:43Z,- jyaymie commented on pull request: [3947](https://github.com/hackforla/website/pull/3947#issuecomment-1421666661) at 2023-02-07 03:57 PM PST -jyaymie,2023-02-08T00:17:15Z,- jyaymie submitted pull request review: [3947](https://github.com/hackforla/website/pull/3947#pullrequestreview-1288237082) at 2023-02-07 04:17 PM PST -k-cardon,7326,SKILLS ISSUE -k-cardon,2024-08-21T02:56:24Z,- k-cardon opened issue: [7326](https://github.com/hackforla/website/issues/7326) at 2024-08-20 07:56 PM PDT -k-cardon,2024-08-21T02:56:29Z,- k-cardon assigned to issue: [7326](https://github.com/hackforla/website/issues/7326) at 2024-08-20 07:56 PM PDT -k-cardon,2024-08-21T04:28:21Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2300867746) at 2024-08-20 09:28 PM PDT -k-cardon,2024-08-21T04:30:54Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2300885439) at 2024-08-20 09:30 PM PDT -k-cardon,2024-08-23T05:29:34Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2306320992) at 2024-08-22 10:29 PM PDT -k-cardon,2024-08-23T05:45:59Z,- k-cardon assigned to issue: [7172](https://github.com/hackforla/website/issues/7172) at 2024-08-22 10:45 PM PDT -k-cardon,2024-08-23T05:52:52Z,- k-cardon commented on issue: [7172](https://github.com/hackforla/website/issues/7172#issuecomment-2306343216) at 2024-08-22 10:52 PM PDT -k-cardon,2024-08-23T05:53:17Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2306343526) at 2024-08-22 10:53 PM PDT -k-cardon,2024-08-24T05:33:28Z,- k-cardon opened pull request: [7348](https://github.com/hackforla/website/pull/7348) at 2024-08-23 10:33 PM PDT -k-cardon,2024-08-25T15:40:34Z,- k-cardon pull request merged: [7348](https://github.com/hackforla/website/pull/7348#event-14004649695) at 2024-08-25 08:40 AM PDT -k-cardon,2024-08-25T17:45:09Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2308938088) at 2024-08-25 10:45 AM PDT -k-cardon,2024-08-26T04:43:44Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2309304171) at 2024-08-25 09:43 PM PDT -k-cardon,2024-08-26T05:08:26Z,- k-cardon commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2309327389) at 2024-08-25 10:08 PM PDT -k-cardon,2024-08-26T05:09:12Z,- k-cardon submitted pull request review: [7350](https://github.com/hackforla/website/pull/7350#pullrequestreview-2259751908) at 2024-08-25 10:09 PM PDT -k-cardon,2024-08-26T05:11:20Z,- k-cardon assigned to issue: [7242](https://github.com/hackforla/website/issues/7242) at 2024-08-25 10:11 PM PDT -k-cardon,2024-08-29T04:15:15Z,- k-cardon commented on issue: [7242](https://github.com/hackforla/website/issues/7242#issuecomment-2316680724) at 2024-08-28 09:15 PM PDT -k-cardon,2024-08-29T05:14:18Z,- k-cardon opened pull request: [7364](https://github.com/hackforla/website/pull/7364) at 2024-08-28 10:14 PM PDT -k-cardon,2024-08-29T16:56:24Z,- k-cardon commented on pull request: [7365](https://github.com/hackforla/website/pull/7365#issuecomment-2318374174) at 2024-08-29 09:56 AM PDT -k-cardon,2024-08-29T16:56:48Z,- k-cardon submitted pull request review: [7365](https://github.com/hackforla/website/pull/7365#pullrequestreview-2269525930) at 2024-08-29 09:56 AM PDT -k-cardon,2024-08-29T16:59:18Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318381676) at 2024-08-29 09:59 AM PDT -k-cardon,2024-08-29T17:00:31Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318384557) at 2024-08-29 10:00 AM PDT -k-cardon,2024-08-29T17:01:46Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318387323) at 2024-08-29 10:01 AM PDT -k-cardon,2024-08-29T17:03:02Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2318389980) at 2024-08-29 10:03 AM PDT -k-cardon,2024-08-29T23:37:22Z,- k-cardon pull request merged: [7364](https://github.com/hackforla/website/pull/7364#event-14072265556) at 2024-08-29 04:37 PM PDT -k-cardon,2024-08-30T01:03:08Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2319595312) at 2024-08-29 06:03 PM PDT -k-cardon,2024-08-30T02:07:32Z,- k-cardon assigned to issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2264072165) at 2024-08-29 07:07 PM PDT -k-cardon,2024-09-04T19:44:54Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2329842623) at 2024-09-04 12:44 PM PDT -k-cardon,2024-09-04T19:45:29Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2329843557) at 2024-09-04 12:45 PM PDT -k-cardon,2024-09-04T20:44:33Z,- k-cardon submitted pull request review: [7369](https://github.com/hackforla/website/pull/7369#pullrequestreview-2281228377) at 2024-09-04 01:44 PM PDT -k-cardon,2024-09-04T20:46:09Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2329967548) at 2024-09-04 01:46 PM PDT -k-cardon,2024-09-04T21:02:11Z,- k-cardon submitted pull request review: [7370](https://github.com/hackforla/website/pull/7370#pullrequestreview-2281346494) at 2024-09-04 02:02 PM PDT -k-cardon,2024-09-04T21:03:27Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330093787) at 2024-09-04 02:03 PM PDT -k-cardon,2024-09-04T21:25:44Z,- k-cardon submitted pull request review: [7371](https://github.com/hackforla/website/pull/7371#pullrequestreview-2281429520) at 2024-09-04 02:25 PM PDT -k-cardon,2024-09-04T21:26:37Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330175888) at 2024-09-04 02:26 PM PDT -k-cardon,2024-09-04T21:38:49Z,- k-cardon opened issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:38 PM PDT -k-cardon,2024-09-04T21:38:49Z,- k-cardon opened issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:38 PM PDT -k-cardon,2024-09-04T21:42:21Z,- k-cardon assigned to issue: [7386](https://github.com/hackforla/website/issues/7386) at 2024-09-04 02:42 PM PDT -k-cardon,2024-09-04T21:44:39Z,- k-cardon opened issue: [7387](https://github.com/hackforla/website/issues/7387) at 2024-09-04 02:44 PM PDT -k-cardon,2024-09-04T21:47:08Z,- k-cardon opened issue: [7388](https://github.com/hackforla/website/issues/7388) at 2024-09-04 02:47 PM PDT -k-cardon,2024-09-04T21:49:27Z,- k-cardon opened issue: [7389](https://github.com/hackforla/website/issues/7389) at 2024-09-04 02:49 PM PDT -k-cardon,2024-09-04T21:51:45Z,- k-cardon opened issue: [7390](https://github.com/hackforla/website/issues/7390) at 2024-09-04 02:51 PM PDT -k-cardon,2024-09-04T21:54:05Z,- k-cardon opened issue: [7391](https://github.com/hackforla/website/issues/7391) at 2024-09-04 02:54 PM PDT -k-cardon,2024-09-04T21:56:53Z,- k-cardon opened issue: [7392](https://github.com/hackforla/website/issues/7392) at 2024-09-04 02:56 PM PDT -k-cardon,2024-09-04T21:59:22Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2330216647) at 2024-09-04 02:59 PM PDT -k-cardon,2024-09-04T22:07:04Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2330237272) at 2024-09-04 03:07 PM PDT -k-cardon,2024-09-04T22:11:14Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2330242379) at 2024-09-04 03:11 PM PDT -k-cardon,2024-09-10T05:14:51Z,- k-cardon commented on issue: [7165](https://github.com/hackforla/website/issues/7165#issuecomment-2339638400) at 2024-09-09 10:14 PM PDT -k-cardon,2024-09-10T05:16:00Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2339639746) at 2024-09-09 10:16 PM PDT -k-cardon,2024-09-17T20:47:19Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356901885) at 2024-09-17 01:47 PM PDT -k-cardon,2024-09-17T21:01:42Z,- k-cardon commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2356929332) at 2024-09-17 02:01 PM PDT -k-cardon,2024-09-17T21:04:43Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356933998) at 2024-09-17 02:04 PM PDT -k-cardon,2024-09-17T21:25:31Z,- k-cardon submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2311098936) at 2024-09-17 02:25 PM PDT -k-cardon,2024-09-17T21:34:24Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2356976525) at 2024-09-17 02:34 PM PDT -k-cardon,2024-09-18T17:50:31Z,- k-cardon submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2313379226) at 2024-09-18 10:50 AM PDT -k-cardon,2024-09-20T02:13:12Z,- k-cardon assigned to issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:17Z,- k-cardon assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2351429241) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:29Z,- k-cardon unassigned from issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:13:29Z,- k-cardon unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2351429241) at 2024-09-19 07:13 PM PDT -k-cardon,2024-09-20T02:18:33Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2362574636) at 2024-09-19 07:18 PM PDT -k-cardon,2024-09-20T02:52:24Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362652176) at 2024-09-19 07:52 PM PDT -k-cardon,2024-09-20T02:58:37Z,- k-cardon assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2362652176) at 2024-09-19 07:58 PM PDT -k-cardon,2024-09-24T17:17:57Z,- k-cardon submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2325910232) at 2024-09-24 10:17 AM PDT -k-cardon,2024-09-24T17:23:16Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2371885036) at 2024-09-24 10:23 AM PDT -k-cardon,2024-09-24T17:34:30Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371906814) at 2024-09-24 10:34 AM PDT -k-cardon,2024-09-24T17:36:38Z,- k-cardon commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-09-24 10:36 AM PDT -k-cardon,2024-09-24T17:36:46Z,- k-cardon unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-09-24 10:36 AM PDT -k-cardon,2024-09-25T17:37:12Z,- k-cardon submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2329029009) at 2024-09-25 10:37 AM PDT -k-cardon,2024-09-25T17:38:31Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2374749409) at 2024-09-25 10:38 AM PDT -k-cardon,2024-09-25T17:41:03Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2374755285) at 2024-09-25 10:41 AM PDT -k-cardon,2024-09-26T05:46:11Z,- k-cardon submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2330174051) at 2024-09-25 10:46 PM PDT -k-cardon,2024-10-07T21:29:58Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2397934963) at 2024-10-07 02:29 PM PDT -k-cardon,2024-10-11T02:18:10Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2406408474) at 2024-10-10 07:18 PM PDT -k-cardon,2024-10-11T04:54:59Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2361956733) at 2024-10-10 09:54 PM PDT -k-cardon,2024-10-11T05:00:13Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2406557368) at 2024-10-10 10:00 PM PDT -k-cardon,2024-10-16T04:42:01Z,- k-cardon commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2415718571) at 2024-10-15 09:42 PM PDT -k-cardon,2024-10-16T21:36:33Z,- k-cardon submitted pull request review: [7589](https://github.com/hackforla/website/pull/7589#pullrequestreview-2373730084) at 2024-10-16 02:36 PM PDT -k-cardon,2024-10-16T21:38:12Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2418011584) at 2024-10-16 02:38 PM PDT -k-cardon,2024-10-16T21:41:00Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2418015768) at 2024-10-16 02:41 PM PDT -k-cardon,2024-10-20T19:32:05Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2425188740) at 2024-10-20 12:32 PM PDT -k-cardon,2024-10-21T04:04:29Z,- k-cardon submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2380876096) at 2024-10-20 09:04 PM PDT -k-cardon,2024-10-23T20:54:03Z,- k-cardon commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2433445438) at 2024-10-23 01:54 PM PDT -k-cardon,2024-10-25T01:48:48Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394000113) at 2024-10-24 06:48 PM PDT -k-cardon,2024-10-25T01:53:10Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394009605) at 2024-10-24 06:53 PM PDT -k-cardon,2024-10-25T01:56:40Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2394012095) at 2024-10-24 06:56 PM PDT -k-cardon,2024-10-25T01:59:03Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2436652917) at 2024-10-24 06:59 PM PDT -k-cardon,2024-10-25T02:23:14Z,- k-cardon assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-1972279146) at 2024-10-24 07:23 PM PDT -k-cardon,2024-10-25T02:27:52Z,- k-cardon unassigned from issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436684617) at 2024-10-24 07:27 PM PDT -k-cardon,2024-10-25T02:42:56Z,- k-cardon assigned to issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436696961) at 2024-10-24 07:42 PM PDT -k-cardon,2024-10-25T02:46:38Z,- k-cardon commented on issue: [5647](https://github.com/hackforla/website/issues/5647#issuecomment-2436700371) at 2024-10-24 07:46 PM PDT -k-cardon,2024-10-27T17:55:43Z,- k-cardon commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2440117396) at 2024-10-27 10:55 AM PDT -k-cardon,2024-10-28T17:21:21Z,- k-cardon opened issue: [7642](https://github.com/hackforla/website/issues/7642) at 2024-10-28 10:21 AM PDT -k-cardon,2024-10-28T23:17:37Z,- k-cardon submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2400421230) at 2024-10-28 04:17 PM PDT -k-cardon,2024-10-30T22:20:43Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2448566533) at 2024-10-30 03:20 PM PDT -k-cardon,2024-11-08T17:39:56Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2465408882) at 2024-11-08 09:39 AM PST -k-cardon,2024-11-14T20:09:11Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477315233) at 2024-11-14 12:09 PM PST -k-cardon,2024-11-15T03:16:19Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2477870981) at 2024-11-14 07:16 PM PST -k-cardon,2024-11-17T18:12:22Z,- k-cardon assigned to issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2257389832) at 2024-11-17 10:12 AM PST -k-cardon,2024-11-19T19:58:42Z,- k-cardon commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2486630015) at 2024-11-19 11:58 AM PST -k-cardon,2024-11-22T22:31:56Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2494980968) at 2024-11-22 02:31 PM PST -k-cardon,2024-12-01T15:47:14Z,- k-cardon commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2509841867) at 2024-12-01 07:47 AM PST -k-cardon,2025-01-06T05:58:47Z,- k-cardon commented on issue: [7326](https://github.com/hackforla/website/issues/7326#issuecomment-2572337232) at 2025-01-05 09:58 PM PST -k-cardon,2025-01-10T03:10:41Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2541467929) at 2025-01-09 07:10 PM PST -k-cardon,2025-01-19T22:57:09Z,- k-cardon submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2561111279) at 2025-01-19 02:57 PM PST -k-cardon,2025-01-19T22:58:20Z,- k-cardon commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2601055956) at 2025-01-19 02:58 PM PST -k-cardon,2025-01-22T05:20:50Z,- k-cardon submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2566213477) at 2025-01-21 09:20 PM PST -k-cardon,2025-01-22T05:21:47Z,- k-cardon closed issue by PR 7834: [7751](https://github.com/hackforla/website/issues/7751#event-16023554056) at 2025-01-21 09:21 PM PST -k-cardon,2025-01-22T05:42:04Z,- k-cardon submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2566235447) at 2025-01-21 09:42 PM PST -k-cardon,2025-01-22T05:42:18Z,- k-cardon closed issue by PR 7822: [7433](https://github.com/hackforla/website/issues/7433#event-16023690630) at 2025-01-21 09:42 PM PST -k-cardon,2025-01-31T19:42:54Z,- k-cardon closed issue as completed: [6327](https://github.com/hackforla/website/issues/6327#event-16144900751) at 2025-01-31 11:42 AM PST -k-cardon,2025-02-12T05:43:39Z,- k-cardon submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2610873295) at 2025-02-11 09:43 PM PST -k-cardon,2025-02-12T05:45:12Z,- k-cardon closed issue by PR 7897: [7495](https://github.com/hackforla/website/issues/7495#event-16275286375) at 2025-02-11 09:45 PM PST -k-cardon,2025-04-01T15:45:55Z,- k-cardon unassigned from issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2486630015) at 2025-04-01 08:45 AM PDT -k-rewd,4981,SKILLS ISSUE -k-rewd,2023-07-18T01:57:20Z,- k-rewd opened issue: [4981](https://github.com/hackforla/website/issues/4981) at 2023-07-17 06:57 PM PDT -k-rewd,2023-07-18T03:07:59Z,- k-rewd assigned to issue: [4981](https://github.com/hackforla/website/issues/4981) at 2023-07-17 08:07 PM PDT -k-rewd,2023-07-21T20:56:17Z,- k-rewd assigned to issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1645996006) at 2023-07-21 01:56 PM PDT -k-rewd,2023-07-21T21:00:22Z,- k-rewd commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646234553) at 2023-07-21 02:00 PM PDT -k-rewd,2023-07-21T21:49:47Z,- k-rewd opened pull request: [5046](https://github.com/hackforla/website/pull/5046) at 2023-07-21 02:49 PM PDT -k-rewd,2023-07-22T11:58:51Z,- k-rewd unassigned from issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:58 AM PDT -k-rewd,2023-07-22T12:06:34Z,- k-rewd pull request closed w/o merging: [5046](https://github.com/hackforla/website/pull/5046#event-9891016238) at 2023-07-22 05:06 AM PDT -k-rewd,2023-07-24T20:37:08Z,- k-rewd assigned to issue: [5038](https://github.com/hackforla/website/issues/5038) at 2023-07-24 01:37 PM PDT -k-rewd,2023-07-24T20:39:21Z,- k-rewd commented on issue: [5038](https://github.com/hackforla/website/issues/5038#issuecomment-1648572189) at 2023-07-24 01:39 PM PDT -k-rewd,2023-07-24T22:12:27Z,- k-rewd opened pull request: [5058](https://github.com/hackforla/website/pull/5058) at 2023-07-24 03:12 PM PDT -k-rewd,2023-07-29T00:56:31Z,- k-rewd commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1656495612) at 2023-07-28 05:56 PM PDT -k-rewd,2023-07-29T21:04:40Z,- k-rewd commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1656893460) at 2023-07-29 02:04 PM PDT -k-rewd,2023-07-30T02:43:07Z,- k-rewd pull request merged: [5058](https://github.com/hackforla/website/pull/5058#event-9955918991) at 2023-07-29 07:43 PM PDT -k-rewd,2023-08-04T05:27:59Z,- k-rewd assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1644675439) at 2023-08-03 10:27 PM PDT -k-rewd,2023-08-04T05:34:22Z,- k-rewd commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-08-03 10:34 PM PDT -k-rewd,2023-08-08T21:23:54Z,- k-rewd unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-08-08 02:23 PM PDT -k-rewd,2023-08-16T02:32:08Z,- k-rewd submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579710435) at 2023-08-15 07:32 PM PDT -k-rewd,2023-08-21T21:46:53Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1687089268) at 2023-08-21 02:46 PM PDT -k-rewd,2023-08-21T21:47:38Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1687090002) at 2023-08-21 02:47 PM PDT -k-rewd,2023-08-21T21:47:38Z,- k-rewd closed issue as completed: [4981](https://github.com/hackforla/website/issues/4981#event-10150957928) at 2023-08-21 02:47 PM PDT -k-rewd,2023-08-24T06:33:56Z,- k-rewd submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1592870327) at 2023-08-23 11:33 PM PDT -k-rewd,2023-08-24T06:39:12Z,- k-rewd submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1592877029) at 2023-08-23 11:39 PM PDT -k-rewd,2023-09-01T00:55:54Z,- k-rewd assigned to issue: [5316](https://github.com/hackforla/website/issues/5316) at 2023-08-31 05:55 PM PDT -k-rewd,2023-09-01T00:57:52Z,- k-rewd commented on issue: [5316](https://github.com/hackforla/website/issues/5316#issuecomment-1701965570) at 2023-08-31 05:57 PM PDT -k-rewd,2023-09-05T20:39:12Z,- k-rewd opened pull request: [5449](https://github.com/hackforla/website/pull/5449) at 2023-09-05 01:39 PM PDT -k-rewd,2023-09-07T06:26:16Z,- k-rewd pull request merged: [5449](https://github.com/hackforla/website/pull/5449#event-10303249885) at 2023-09-06 11:26 PM PDT -k-rewd,2023-09-07T07:18:38Z,- k-rewd assigned to issue: [5388](https://github.com/hackforla/website/issues/5388) at 2023-09-07 12:18 AM PDT -k-rewd,2023-09-23T05:48:31Z,- k-rewd assigned to issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1709169745) at 2023-09-22 10:48 PM PDT -k-rewd,2023-09-23T05:49:51Z,- k-rewd commented on issue: [5393](https://github.com/hackforla/website/issues/5393#issuecomment-1732223098) at 2023-09-22 10:49 PM PDT -k-rewd,2023-09-24T16:57:39Z,- k-rewd unassigned from issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1730911314) at 2023-09-24 09:57 AM PDT -k-rewd,2023-09-25T05:19:34Z,- k-rewd opened pull request: [5580](https://github.com/hackforla/website/pull/5580) at 2023-09-24 10:19 PM PDT -k-rewd,2023-09-26T02:29:35Z,- k-rewd pull request merged: [5580](https://github.com/hackforla/website/pull/5580#event-10469251401) at 2023-09-25 07:29 PM PDT -k-rewd,2023-09-27T07:21:36Z,- k-rewd submitted pull request review: [5612](https://github.com/hackforla/website/pull/5612#pullrequestreview-1645772913) at 2023-09-27 12:21 AM PDT -k-rewd,2023-10-13T20:39:22Z,- k-rewd submitted pull request review: [5701](https://github.com/hackforla/website/pull/5701#pullrequestreview-1677318709) at 2023-10-13 01:39 PM PDT -k-rewd,2023-10-13T21:03:15Z,- k-rewd submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1677369783) at 2023-10-13 02:03 PM PDT -k-rewd,2023-10-14T19:42:08Z,- k-rewd submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1678418958) at 2023-10-14 12:42 PM PDT -k-rewd,2023-11-17T23:41:50Z,- k-rewd assigned to issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1518912153) at 2023-11-17 03:41 PM PST -k-rewd,2023-11-17T23:43:35Z,- k-rewd commented on issue: [4455](https://github.com/hackforla/website/issues/4455#issuecomment-1817258331) at 2023-11-17 03:43 PM PST -k-rewd,2023-11-25T00:22:21Z,- k-rewd opened pull request: [5935](https://github.com/hackforla/website/pull/5935) at 2023-11-24 04:22 PM PST -k-rewd,2023-11-25T23:25:54Z,- k-rewd commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826441511) at 2023-11-25 03:25 PM PST -k-rewd,2023-11-26T22:55:26Z,- k-rewd pull request merged: [5935](https://github.com/hackforla/website/pull/5935#event-11064360171) at 2023-11-26 02:55 PM PST -k-rewd,2023-11-28T09:56:37Z,- k-rewd assigned to issue: [5739](https://github.com/hackforla/website/issues/5739) at 2023-11-28 01:56 AM PST -k-rewd,2023-11-28T09:57:52Z,- k-rewd commented on issue: [5739](https://github.com/hackforla/website/issues/5739#issuecomment-1829475878) at 2023-11-28 01:57 AM PST -k-rewd,2024-02-06T21:29:00Z,- k-rewd commented on issue: [4981](https://github.com/hackforla/website/issues/4981#issuecomment-1930781281) at 2024-02-06 01:29 PM PST diff --git a/github-actions/activity-trigger/member_activity_history_bot_6.csv b/github-actions/activity-trigger/member_activity_history_bot_6.csv deleted file mode 100644 index 2d7075cfe5..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_6.csv +++ /dev/null @@ -1,2997 +0,0 @@ -username,datetime,message -kathrynsilvaconway,3009,SKILLS ISSUE -kathrynsilvaconway,2022-03-25T02:16:30Z,- kathrynsilvaconway opened issue: [3009](https://github.com/hackforla/website/issues/3009) at 2022-03-24 07:16 PM PDT -kathrynsilvaconway,2022-03-25T02:16:31Z,- kathrynsilvaconway assigned to issue: [3009](https://github.com/hackforla/website/issues/3009) at 2022-03-24 07:16 PM PDT -kathrynsilvaconway,2022-03-25T14:23:18Z,- kathrynsilvaconway assigned to issue: [2941](https://github.com/hackforla/website/issues/2941#issuecomment-1062066453) at 2022-03-25 07:23 AM PDT -kathrynsilvaconway,2022-03-25T16:25:54Z,- kathrynsilvaconway opened pull request: [3010](https://github.com/hackforla/website/pull/3010) at 2022-03-25 09:25 AM PDT -kathrynsilvaconway,2022-03-26T00:17:01Z,- kathrynsilvaconway assigned to issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1058623125) at 2022-03-25 05:17 PM PDT -kathrynsilvaconway,2022-03-26T00:28:55Z,- kathrynsilvaconway commented on issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1079533163) at 2022-03-25 05:28 PM PDT -kathrynsilvaconway,2022-03-27T01:10:23Z,- kathrynsilvaconway opened pull request: [3017](https://github.com/hackforla/website/pull/3017) at 2022-03-26 06:10 PM PDT -kathrynsilvaconway,2022-03-27T16:19:47Z,- kathrynsilvaconway commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1079963642) at 2022-03-27 09:19 AM PDT -kathrynsilvaconway,2022-03-27T20:27:12Z,- kathrynsilvaconway commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1080012625) at 2022-03-27 01:27 PM PDT -kathrynsilvaconway,2022-03-27T20:41:22Z,- kathrynsilvaconway submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-922494663) at 2022-03-27 01:41 PM PDT -kathrynsilvaconway,2022-03-28T02:14:44Z,- kathrynsilvaconway commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1080108638) at 2022-03-27 07:14 PM PDT -kathrynsilvaconway,2022-03-28T15:41:06Z,- kathrynsilvaconway pull request merged: [3017](https://github.com/hackforla/website/pull/3017#event-6319660038) at 2022-03-28 08:41 AM PDT -kathrynsilvaconway,2022-03-28T21:50:11Z,- kathrynsilvaconway submitted pull request review: [3014](https://github.com/hackforla/website/pull/3014#pullrequestreview-923791763) at 2022-03-28 02:50 PM PDT -kathrynsilvaconway,2022-03-29T01:33:27Z,- kathrynsilvaconway commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1081309535) at 2022-03-28 06:33 PM PDT -kathrynsilvaconway,2022-03-29T07:18:00Z,- kathrynsilvaconway pull request merged: [3010](https://github.com/hackforla/website/pull/3010#event-6324038169) at 2022-03-29 12:18 AM PDT -kathrynsilvaconway,2022-03-29T13:56:38Z,- kathrynsilvaconway commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1081905104) at 2022-03-29 06:56 AM PDT -kathrynsilvaconway,2022-03-29T23:17:16Z,- kathrynsilvaconway submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-925335891) at 2022-03-29 04:17 PM PDT -kathrynsilvaconway,2022-03-31T02:18:27Z,- kathrynsilvaconway assigned to issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924636) at 2022-03-30 07:18 PM PDT -kathrynsilvaconway,2022-03-31T02:19:31Z,- kathrynsilvaconway unassigned from issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924636) at 2022-03-30 07:19 PM PDT -kathrynsilvaconway,2022-03-31T02:30:59Z,- kathrynsilvaconway assigned to issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1023457675) at 2022-03-30 07:30 PM PDT -kathrynsilvaconway,2022-03-31T02:37:30Z,- kathrynsilvaconway commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1084011011) at 2022-03-30 07:37 PM PDT -kathrynsilvaconway,2022-03-31T02:48:58Z,- kathrynsilvaconway commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1084016054) at 2022-03-30 07:48 PM PDT -kathrynsilvaconway,2022-04-01T02:18:16Z,- kathrynsilvaconway commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1085337423) at 2022-03-31 07:18 PM PDT -kathrynsilvaconway,2022-04-02T23:17:54Z,- kathrynsilvaconway opened pull request: [3029](https://github.com/hackforla/website/pull/3029) at 2022-04-02 04:17 PM PDT -kathrynsilvaconway,2022-04-03T02:40:58Z,- kathrynsilvaconway submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-929620590) at 2022-04-02 07:40 PM PDT -kathrynsilvaconway,2022-04-03T02:54:51Z,- kathrynsilvaconway commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1086765465) at 2022-04-02 07:54 PM PDT -kathrynsilvaconway,2022-04-05T02:46:43Z,- kathrynsilvaconway submitted pull request review: [3020](https://github.com/hackforla/website/pull/3020#pullrequestreview-931158020) at 2022-04-04 07:46 PM PDT -kathrynsilvaconway,2022-04-05T17:06:27Z,- kathrynsilvaconway pull request merged: [3029](https://github.com/hackforla/website/pull/3029#event-6373198296) at 2022-04-05 10:06 AM PDT -kathrynsilvaconway,2022-04-05T17:39:47Z,- kathrynsilvaconway submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-932281761) at 2022-04-05 10:39 AM PDT -kathrynsilvaconway,2022-04-06T01:52:41Z,- kathrynsilvaconway assigned to issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1059844313) at 2022-04-05 06:52 PM PDT -kathrynsilvaconway,2022-04-06T01:57:05Z,- kathrynsilvaconway commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1089655823) at 2022-04-05 06:57 PM PDT -kathrynsilvaconway,2022-04-06T02:14:21Z,- kathrynsilvaconway commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1089672749) at 2022-04-05 07:14 PM PDT -kathrynsilvaconway,2022-04-07T01:48:41Z,- kathrynsilvaconway unassigned from issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1090993404) at 2022-04-06 06:48 PM PDT -kathrynsilvaconway,2022-04-07T02:09:59Z,- kathrynsilvaconway assigned to issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1065924636) at 2022-04-06 07:09 PM PDT -kathrynsilvaconway,2022-04-07T23:03:03Z,- kathrynsilvaconway opened pull request: [3036](https://github.com/hackforla/website/pull/3036) at 2022-04-07 04:03 PM PDT -kathrynsilvaconway,2022-04-08T17:05:49Z,- kathrynsilvaconway submitted pull request review: [2977](https://github.com/hackforla/website/pull/2977#pullrequestreview-936743893) at 2022-04-08 10:05 AM PDT -kathrynsilvaconway,2022-04-09T01:49:36Z,- kathrynsilvaconway commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1093575263) at 2022-04-08 06:49 PM PDT -kathrynsilvaconway,2022-04-09T01:51:28Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1093576447) at 2022-04-08 06:51 PM PDT -kathrynsilvaconway,2022-04-09T15:05:31Z,- kathrynsilvaconway commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1094062424) at 2022-04-09 08:05 AM PDT -kathrynsilvaconway,2022-04-10T02:22:18Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1094161152) at 2022-04-09 07:22 PM PDT -kathrynsilvaconway,2022-04-10T17:29:48Z,- kathrynsilvaconway commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1094333020) at 2022-04-10 10:29 AM PDT -kathrynsilvaconway,2022-04-10T19:24:04Z,- kathrynsilvaconway closed issue as completed: [3009](https://github.com/hackforla/website/issues/3009#event-6404575173) at 2022-04-10 12:24 PM PDT -kathrynsilvaconway,2022-04-11T13:34:03Z,- kathrynsilvaconway commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1095059522) at 2022-04-11 06:34 AM PDT -kathrynsilvaconway,2022-04-11T15:53:02Z,- kathrynsilvaconway commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1095235050) at 2022-04-11 08:53 AM PDT -kathrynsilvaconway,2022-04-11T22:06:37Z,- kathrynsilvaconway commented on pull request: [3043](https://github.com/hackforla/website/pull/3043#issuecomment-1095619979) at 2022-04-11 03:06 PM PDT -kathrynsilvaconway,2022-04-11T23:59:22Z,- kathrynsilvaconway submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-938721529) at 2022-04-11 04:59 PM PDT -kathrynsilvaconway,2022-04-12T00:39:12Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1095739468) at 2022-04-11 05:39 PM PDT -kathrynsilvaconway,2022-04-12T03:59:48Z,- kathrynsilvaconway submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-938865348) at 2022-04-11 08:59 PM PDT -kathrynsilvaconway,2022-04-12T15:04:39Z,- kathrynsilvaconway commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096849040) at 2022-04-12 08:04 AM PDT -kathrynsilvaconway,2022-04-13T00:45:35Z,- kathrynsilvaconway commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1097434156) at 2022-04-12 05:45 PM PDT -kathrynsilvaconway,2022-04-13T01:23:11Z,- kathrynsilvaconway pull request merged: [3036](https://github.com/hackforla/website/pull/3036#event-6423580903) at 2022-04-12 06:23 PM PDT -kathrynsilvaconway,2022-04-13T03:25:06Z,- kathrynsilvaconway submitted pull request review: [3044](https://github.com/hackforla/website/pull/3044#pullrequestreview-940362977) at 2022-04-12 08:25 PM PDT -kathrynsilvaconway,2022-04-13T03:28:00Z,- kathrynsilvaconway submitted pull request review: [3043](https://github.com/hackforla/website/pull/3043#pullrequestreview-940364313) at 2022-04-12 08:28 PM PDT -kathrynsilvaconway,2022-04-13T03:35:43Z,- kathrynsilvaconway commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1097519273) at 2022-04-12 08:35 PM PDT -kathrynsilvaconway,2022-04-13T03:46:59Z,- kathrynsilvaconway assigned to issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078521786) at 2022-04-12 08:46 PM PDT -kathrynsilvaconway,2022-04-13T03:47:54Z,- kathrynsilvaconway commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1097524084) at 2022-04-12 08:47 PM PDT -kathrynsilvaconway,2022-04-13T03:50:34Z,- kathrynsilvaconway commented on pull request: [3046](https://github.com/hackforla/website/pull/3046#issuecomment-1097524972) at 2022-04-12 08:50 PM PDT -kathrynsilvaconway,2022-04-14T01:07:41Z,- kathrynsilvaconway unassigned from issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1098564333) at 2022-04-13 06:07 PM PDT -kathrynsilvaconway,2022-04-14T01:14:41Z,- kathrynsilvaconway assigned to issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1059719546) at 2022-04-13 06:14 PM PDT -kathrynsilvaconway,2022-04-14T01:16:32Z,- kathrynsilvaconway commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1098617316) at 2022-04-13 06:16 PM PDT -kathrynsilvaconway,2022-04-14T01:52:22Z,- kathrynsilvaconway submitted pull request review: [3046](https://github.com/hackforla/website/pull/3046#pullrequestreview-941711049) at 2022-04-13 06:52 PM PDT -kathrynsilvaconway,2022-04-18T04:17:19Z,- kathrynsilvaconway submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-944060131) at 2022-04-17 09:17 PM PDT -kathrynsilvaconway,2022-04-20T01:46:37Z,- kathrynsilvaconway commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1103355813) at 2022-04-19 06:46 PM PDT -kathrynsilvaconway,2022-04-20T15:36:35Z,- kathrynsilvaconway commented on issue: [2926](https://github.com/hackforla/website/issues/2926#issuecomment-1104076691) at 2022-04-20 08:36 AM PDT -kathrynsilvaconway,2022-04-24T17:24:21Z,- kathrynsilvaconway commented on pull request: [3079](https://github.com/hackforla/website/pull/3079#issuecomment-1107883162) at 2022-04-24 10:24 AM PDT -kathrynsilvaconway,2022-04-25T01:23:52Z,- kathrynsilvaconway submitted pull request review: [3079](https://github.com/hackforla/website/pull/3079#pullrequestreview-951273964) at 2022-04-24 06:23 PM PDT -kathrynsilvaconway,2022-04-26T22:41:12Z,- kathrynsilvaconway commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1110318590) at 2022-04-26 03:41 PM PDT -kathrynsilvaconway,2022-04-26T22:55:31Z,- kathrynsilvaconway submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-954087293) at 2022-04-26 03:55 PM PDT -kathrynsilvaconway,2022-05-01T04:05:27Z,- kathrynsilvaconway opened pull request: [3085](https://github.com/hackforla/website/pull/3085) at 2022-04-30 09:05 PM PDT -kathrynsilvaconway,2022-05-01T05:02:14Z,- kathrynsilvaconway pull request merged: [3085](https://github.com/hackforla/website/pull/3085#event-6528926702) at 2022-04-30 10:02 PM PDT -kathrynsilvaconway,2022-05-01T05:02:44Z,- kathrynsilvaconway reopened pull request: [3085](https://github.com/hackforla/website/pull/3085#event-6528926702) at 2022-04-30 10:02 PM PDT -kathrynsilvaconway,2022-05-01T05:36:45Z,- kathrynsilvaconway assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-04-30 10:36 PM PDT -kathrynsilvaconway,2022-05-01T20:14:35Z,- kathrynsilvaconway unassigned from issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-05-01 01:14 PM PDT -kathrynsilvaconway,2022-05-02T15:28:43Z,- kathrynsilvaconway commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1115036098) at 2022-05-02 08:28 AM PDT -kathrynsilvaconway,2022-05-03T03:33:17Z,- kathrynsilvaconway commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1115655126) at 2022-05-02 08:33 PM PDT -kathrynsilvaconway,2022-05-18T03:03:21Z,- kathrynsilvaconway commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1129517125) at 2022-05-17 08:03 PM PDT -kathrynsilvaconway,2022-05-20T02:40:04Z,- kathrynsilvaconway submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-979454158) at 2022-05-19 07:40 PM PDT -kathrynsilvaconway,2022-05-24T00:50:47Z,- kathrynsilvaconway commented on pull request: [3168](https://github.com/hackforla/website/pull/3168#issuecomment-1135281039) at 2022-05-23 05:50 PM PDT -kathrynsilvaconway,2022-05-24T00:51:52Z,- kathrynsilvaconway commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135281684) at 2022-05-23 05:51 PM PDT -kathrynsilvaconway,2022-05-24T01:02:18Z,- kathrynsilvaconway submitted pull request review: [3168](https://github.com/hackforla/website/pull/3168#pullrequestreview-982480456) at 2022-05-23 06:02 PM PDT -kathrynsilvaconway,2022-05-24T01:18:21Z,- kathrynsilvaconway submitted pull request review: [3171](https://github.com/hackforla/website/pull/3171#pullrequestreview-982487761) at 2022-05-23 06:18 PM PDT -kathrynsilvaconway,2022-05-24T02:02:17Z,- kathrynsilvaconway commented on pull request: [3169](https://github.com/hackforla/website/pull/3169#issuecomment-1135318112) at 2022-05-23 07:02 PM PDT -kathrynsilvaconway,2022-05-24T02:14:53Z,- kathrynsilvaconway submitted pull request review: [3169](https://github.com/hackforla/website/pull/3169#pullrequestreview-982514196) at 2022-05-23 07:14 PM PDT -kathrynsilvaconway,2022-05-24T02:30:19Z,- kathrynsilvaconway commented on pull request: [3171](https://github.com/hackforla/website/pull/3171#issuecomment-1135331438) at 2022-05-23 07:30 PM PDT -kathrynsilvaconway,2022-05-24T02:33:55Z,- kathrynsilvaconway submitted pull request review: [3171](https://github.com/hackforla/website/pull/3171#pullrequestreview-982524204) at 2022-05-23 07:33 PM PDT -kathrynsilvaconway,2022-05-25T06:13:02Z,- kathrynsilvaconway pull request merged: [3085](https://github.com/hackforla/website/pull/3085#event-6674655665) at 2022-05-24 11:13 PM PDT -kathrynsilvaconway,2022-05-25T14:38:40Z,- kathrynsilvaconway commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1137349128) at 2022-05-25 07:38 AM PDT -kathrynsilvaconway,2022-05-25T15:48:00Z,- kathrynsilvaconway assigned to issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-05-25 08:48 AM PDT -kathrynsilvaconway,2022-05-25T21:45:35Z,- kathrynsilvaconway unassigned from issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1086586813) at 2022-05-25 02:45 PM PDT -kathrynsilvaconway,2022-05-26T00:33:07Z,- kathrynsilvaconway commented on issue: [2955](https://github.com/hackforla/website/issues/2955#issuecomment-1138014276) at 2022-05-25 05:33 PM PDT -kathrynsilvaconway,2022-05-26T00:40:06Z,- kathrynsilvaconway assigned to issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-881904815) at 2022-05-25 05:40 PM PDT -kathrynsilvaconway,2022-05-26T00:41:45Z,- kathrynsilvaconway commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1138018944) at 2022-05-25 05:41 PM PDT -kathrynsilvaconway,2022-05-26T00:50:04Z,- kathrynsilvaconway submitted pull request review: [3174](https://github.com/hackforla/website/pull/3174#pullrequestreview-985613825) at 2022-05-25 05:50 PM PDT -kathrynsilvaconway,2022-05-29T17:34:50Z,- kathrynsilvaconway commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1140492998) at 2022-05-29 10:34 AM PDT -kathrynsilvaconway,2022-05-29T17:35:16Z,- kathrynsilvaconway commented on pull request: [3178](https://github.com/hackforla/website/pull/3178#issuecomment-1140493056) at 2022-05-29 10:35 AM PDT -kathrynsilvaconway,2022-06-04T04:14:06Z,- kathrynsilvaconway submitted pull request review: [3178](https://github.com/hackforla/website/pull/3178#pullrequestreview-995732861) at 2022-06-03 09:14 PM PDT -kathrynsilvaconway,2022-06-04T04:14:34Z,- kathrynsilvaconway closed issue by PR 3178: [2922](https://github.com/hackforla/website/issues/2922#event-6741072471) at 2022-06-03 09:14 PM PDT -kathrynsilvaconway,2022-06-05T00:08:12Z,- kathrynsilvaconway submitted pull request review: [3218](https://github.com/hackforla/website/pull/3218#pullrequestreview-995962830) at 2022-06-04 05:08 PM PDT -kathrynsilvaconway,2022-06-05T00:08:46Z,- kathrynsilvaconway closed issue by PR 3218: [2877](https://github.com/hackforla/website/issues/2877#event-6742566844) at 2022-06-04 05:08 PM PDT -kathrynsilvaconway,2022-06-05T00:33:21Z,- kathrynsilvaconway submitted pull request review: [3176](https://github.com/hackforla/website/pull/3176#pullrequestreview-995963987) at 2022-06-04 05:33 PM PDT -kathrynsilvaconway,2022-06-05T00:33:40Z,- kathrynsilvaconway closed issue by PR 3176: [2930](https://github.com/hackforla/website/issues/2930#event-6742589935) at 2022-06-04 05:33 PM PDT -kathrynsilvaconway,2022-06-07T01:19:06Z,- kathrynsilvaconway submitted pull request review: [3221](https://github.com/hackforla/website/pull/3221#pullrequestreview-997397434) at 2022-06-06 06:19 PM PDT -kathrynsilvaconway,2022-06-07T01:20:19Z,- kathrynsilvaconway closed issue by PR 3221: [3216](https://github.com/hackforla/website/issues/3216#event-6757146775) at 2022-06-06 06:20 PM PDT -kathrynsilvaconway,2022-06-07T01:30:21Z,- kathrynsilvaconway submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-997402863) at 2022-06-06 06:30 PM PDT -kathrynsilvaconway,2022-06-16T18:17:38Z,- kathrynsilvaconway opened issue: [3256](https://github.com/hackforla/website/issues/3256) at 2022-06-16 11:17 AM PDT -kathrynsilvaconway,2022-06-17T01:02:33Z,- kathrynsilvaconway closed issue by PR 3235: [3018](https://github.com/hackforla/website/issues/3018#event-6825256424) at 2022-06-16 06:02 PM PDT -kathrynsilvaconway,2022-06-19T17:29:34Z,- kathrynsilvaconway commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1159780881) at 2022-06-19 10:29 AM PDT -kathrynsilvaconway,2022-06-21T01:12:40Z,- kathrynsilvaconway closed issue by PR 3258: [2800](https://github.com/hackforla/website/issues/2800#event-6842955195) at 2022-06-20 06:12 PM PDT -kathrynsilvaconway,2022-06-21T01:22:49Z,- kathrynsilvaconway commented on pull request: [3263](https://github.com/hackforla/website/pull/3263#issuecomment-1161042395) at 2022-06-20 06:22 PM PDT -kathrynsilvaconway,2022-06-21T01:44:33Z,- kathrynsilvaconway opened issue: [3275](https://github.com/hackforla/website/issues/3275) at 2022-06-20 06:44 PM PDT -kathrynsilvaconway,2022-06-21T01:47:24Z,- kathrynsilvaconway assigned to issue: [3275](https://github.com/hackforla/website/issues/3275#issuecomment-1161071134) at 2022-06-20 06:47 PM PDT -kathrynsilvaconway,2022-06-21T02:02:23Z,- kathrynsilvaconway closed issue as completed: [3275](https://github.com/hackforla/website/issues/3275#event-6843233559) at 2022-06-20 07:02 PM PDT -kathrynsilvaconway,2022-06-22T01:19:29Z,- kathrynsilvaconway opened issue: [3282](https://github.com/hackforla/website/issues/3282) at 2022-06-21 06:19 PM PDT -kathrynsilvaconway,2022-06-22T04:06:34Z,- kathrynsilvaconway unassigned from issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1158573525) at 2022-06-21 09:06 PM PDT -kathrynsilvaconway,2022-06-22T15:57:02Z,- kathrynsilvaconway opened issue: [3286](https://github.com/hackforla/website/issues/3286) at 2022-06-22 08:57 AM PDT -kathrynsilvaconway,2022-06-23T01:39:41Z,- kathrynsilvaconway closed issue by PR 3224: [3220](https://github.com/hackforla/website/issues/3220#event-6861961639) at 2022-06-22 06:39 PM PDT -kathrynsilvaconway,2022-06-23T01:45:31Z,- kathrynsilvaconway closed issue by PR 3264: [2804](https://github.com/hackforla/website/issues/2804#event-6861983744) at 2022-06-22 06:45 PM PDT -kathrynsilvaconway,2022-06-23T21:34:49Z,- kathrynsilvaconway assigned to issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1162735905) at 2022-06-23 02:34 PM PDT -kathrynsilvaconway,2022-06-24T03:47:13Z,- kathrynsilvaconway closed issue by PR 3291: [2808](https://github.com/hackforla/website/issues/2808#event-6871254384) at 2022-06-23 08:47 PM PDT -kathrynsilvaconway,2022-06-24T03:49:44Z,- kathrynsilvaconway closed issue by PR 3262: [2897](https://github.com/hackforla/website/issues/2897#event-6871260603) at 2022-06-23 08:49 PM PDT -kathrynsilvaconway,2022-06-25T01:32:20Z,- kathrynsilvaconway opened issue: [3300](https://github.com/hackforla/website/issues/3300) at 2022-06-24 06:32 PM PDT -kathrynsilvaconway,2022-06-26T05:05:46Z,- kathrynsilvaconway closed issue by PR 3297: [2811](https://github.com/hackforla/website/issues/2811#event-6879792011) at 2022-06-25 10:05 PM PDT -kathrynsilvaconway,2022-06-26T05:18:10Z,- kathrynsilvaconway submitted pull request review: [3287](https://github.com/hackforla/website/pull/3287#pullrequestreview-1019374926) at 2022-06-25 10:18 PM PDT -kathrynsilvaconway,2022-06-26T05:19:41Z,- kathrynsilvaconway closed issue by PR 3287: [2810](https://github.com/hackforla/website/issues/2810#event-6879802374) at 2022-06-25 10:19 PM PDT -kathrynsilvaconway,2022-06-26T05:28:54Z,- kathrynsilvaconway commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166421504) at 2022-06-25 10:28 PM PDT -kathrynsilvaconway,2022-06-26T18:40:46Z,- kathrynsilvaconway opened issue: [3308](https://github.com/hackforla/website/issues/3308) at 2022-06-26 11:40 AM PDT -kathrynsilvaconway,2022-06-26T19:33:15Z,- kathrynsilvaconway submitted pull request review: [3263](https://github.com/hackforla/website/pull/3263#pullrequestreview-1019470744) at 2022-06-26 12:33 PM PDT -kathrynsilvaconway,2022-06-26T19:33:31Z,- kathrynsilvaconway closed issue by PR 3263: [3082](https://github.com/hackforla/website/issues/3082#event-6880797447) at 2022-06-26 12:33 PM PDT -kathrynsilvaconway,2022-06-26T19:40:53Z,- kathrynsilvaconway closed issue by PR 3303: [2807](https://github.com/hackforla/website/issues/2807#event-6880804806) at 2022-06-26 12:40 PM PDT -kathrynsilvaconway,2022-06-27T15:02:13Z,- kathrynsilvaconway closed issue by PR 3304: [3092](https://github.com/hackforla/website/issues/3092#event-6886148803) at 2022-06-27 08:02 AM PDT -kathrynsilvaconway,2022-06-28T19:07:46Z,- kathrynsilvaconway closed issue by PR 3317: [3096](https://github.com/hackforla/website/issues/3096#event-6896605672) at 2022-06-28 12:07 PM PDT -kathrynsilvaconway,2022-06-28T20:07:34Z,- kathrynsilvaconway commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1169180458) at 2022-06-28 01:07 PM PDT -kathrynsilvaconway,2022-06-28T20:43:28Z,- kathrynsilvaconway closed issue by PR 3320: [3103](https://github.com/hackforla/website/issues/3103#event-6897198847) at 2022-06-28 01:43 PM PDT -kathrynsilvaconway,2022-06-29T02:38:54Z,- kathrynsilvaconway unassigned from issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1165282628) at 2022-06-28 07:38 PM PDT -kathrynsilvaconway,2022-06-29T02:40:50Z,- kathrynsilvaconway assigned to issue: [2210](https://github.com/hackforla/website/issues/2210) at 2022-06-28 07:40 PM PDT -kathrynsilvaconway,2022-06-29T02:47:34Z,- kathrynsilvaconway unassigned from issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1169471810) at 2022-06-28 07:47 PM PDT -kathrynsilvaconway,2022-06-29T15:57:17Z,- kathrynsilvaconway commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1170165938) at 2022-06-29 08:57 AM PDT -kathrynsilvaconway,2022-06-29T16:05:46Z,- kathrynsilvaconway commented on pull request: [3323](https://github.com/hackforla/website/pull/3323#issuecomment-1170177482) at 2022-06-29 09:05 AM PDT -kathrynsilvaconway,2022-06-29T16:57:46Z,- kathrynsilvaconway submitted pull request review: [3323](https://github.com/hackforla/website/pull/3323#pullrequestreview-1023711061) at 2022-06-29 09:57 AM PDT -kathrynsilvaconway,2022-06-29T16:59:02Z,- kathrynsilvaconway closed issue by PR 3323: [3088](https://github.com/hackforla/website/issues/3088#event-6904206079) at 2022-06-29 09:59 AM PDT -kathrynsilvaconway,2022-06-30T23:01:41Z,- kathrynsilvaconway commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1171756128) at 2022-06-30 04:01 PM PDT -kathrynsilvaconway,2022-07-01T00:37:06Z,- kathrynsilvaconway submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-1025609473) at 2022-06-30 05:37 PM PDT -kathrynsilvaconway,2022-07-01T02:59:31Z,- kathrynsilvaconway commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1171874440) at 2022-06-30 07:59 PM PDT -kathrynsilvaconway,2022-07-12T01:11:53Z,- kathrynsilvaconway opened issue: [3361](https://github.com/hackforla/website/issues/3361) at 2022-07-11 06:11 PM PDT -kathrynsilvaconway,2022-07-17T17:19:26Z,- kathrynsilvaconway submitted pull request review: [3301](https://github.com/hackforla/website/pull/3301#pullrequestreview-1041163840) at 2022-07-17 10:19 AM PDT -kathrynsilvaconway,2022-07-17T17:19:50Z,- kathrynsilvaconway closed issue by PR 3301: [2931](https://github.com/hackforla/website/issues/2931#event-7007744080) at 2022-07-17 10:19 AM PDT -kathrynsilvaconway,2022-07-18T15:46:00Z,- kathrynsilvaconway opened issue: [3382](https://github.com/hackforla/website/issues/3382) at 2022-07-18 08:46 AM PDT -kathrynsilvaconway,2022-07-18T16:40:00Z,- kathrynsilvaconway opened issue: [3383](https://github.com/hackforla/website/issues/3383) at 2022-07-18 09:40 AM PDT -kathrynsilvaconway,2022-07-20T03:25:08Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1189771039) at 2022-07-19 08:25 PM PDT -kathrynsilvaconway,2022-07-21T02:20:28Z,- kathrynsilvaconway commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1190962105) at 2022-07-20 07:20 PM PDT -kathrynsilvaconway,2022-07-21T02:21:15Z,- kathrynsilvaconway closed issue by PR 3260: [2805](https://github.com/hackforla/website/issues/2805#event-7034278810) at 2022-07-20 07:21 PM PDT -kathrynsilvaconway,2022-07-21T02:25:29Z,- kathrynsilvaconway commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1190964915) at 2022-07-20 07:25 PM PDT -kathrynsilvaconway,2022-07-24T17:15:04Z,- kathrynsilvaconway commented on pull request: [3414](https://github.com/hackforla/website/pull/3414#issuecomment-1193359541) at 2022-07-24 10:15 AM PDT -kathrynsilvaconway,2022-07-25T21:40:32Z,- kathrynsilvaconway commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1194666034) at 2022-07-25 02:40 PM PDT -kathrynsilvaconway,2022-07-25T21:43:04Z,- kathrynsilvaconway commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1194668581) at 2022-07-25 02:43 PM PDT -kathrynsilvaconway,2022-07-25T21:43:05Z,- kathrynsilvaconway closed issue as completed: [3123](https://github.com/hackforla/website/issues/3123#event-7059936015) at 2022-07-25 02:43 PM PDT -kathrynsilvaconway,2022-07-31T02:47:14Z,- kathrynsilvaconway closed issue by PR 3432: [2113](https://github.com/hackforla/website/issues/2113#event-7095774800) at 2022-07-30 07:47 PM PDT -kathrynsilvaconway,2022-08-01T12:38:31Z,- kathrynsilvaconway opened issue: [3447](https://github.com/hackforla/website/issues/3447) at 2022-08-01 05:38 AM PDT -kathrynsilvaconway,2022-08-02T01:22:11Z,- kathrynsilvaconway commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1201908988) at 2022-08-01 06:22 PM PDT -kathrynsilvaconway,2022-08-02T23:25:32Z,- kathrynsilvaconway opened issue: [3449](https://github.com/hackforla/website/issues/3449) at 2022-08-02 04:25 PM PDT -kathrynsilvaconway,2022-08-04T17:45:50Z,- kathrynsilvaconway commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1205576686) at 2022-08-04 10:45 AM PDT -kathrynsilvaconway,2022-08-04T21:11:46Z,- kathrynsilvaconway commented on issue: [3034](https://github.com/hackforla/website/issues/3034#issuecomment-1205772099) at 2022-08-04 02:11 PM PDT -kathrynsilvaconway,2022-08-10T01:16:09Z,- kathrynsilvaconway closed issue by PR 3455: [3104](https://github.com/hackforla/website/issues/3104#event-7159747729) at 2022-08-09 06:16 PM PDT -kathrynsilvaconway,2022-08-10T02:26:08Z,- kathrynsilvaconway commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1210076864) at 2022-08-09 07:26 PM PDT -kathrynsilvaconway,2022-08-24T00:43:22Z,- kathrynsilvaconway closed issue by PR 3480: [2200](https://github.com/hackforla/website/issues/2200#event-7246418670) at 2022-08-23 05:43 PM PDT -kathrynsilvaconway,2022-08-26T00:17:27Z,- kathrynsilvaconway commented on issue: [3489](https://github.com/hackforla/website/issues/3489#issuecomment-1227877721) at 2022-08-25 05:17 PM PDT -kathrynsilvaconway,2022-08-26T00:53:27Z,- kathrynsilvaconway commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1227896793) at 2022-08-25 05:53 PM PDT -kathrynsilvaconway,2022-08-26T00:57:06Z,- kathrynsilvaconway submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1086269209) at 2022-08-25 05:57 PM PDT -kathrynsilvaconway,2022-08-26T00:59:27Z,- kathrynsilvaconway closed issue by PR 3452: [2502](https://github.com/hackforla/website/issues/2502#event-7263692177) at 2022-08-25 05:59 PM PDT -kathrynsilvaconway,2022-08-26T03:24:44Z,- kathrynsilvaconway commented on pull request: [3483](https://github.com/hackforla/website/pull/3483#issuecomment-1228009331) at 2022-08-25 08:24 PM PDT -kathrynsilvaconway,2022-08-27T20:25:00Z,- kathrynsilvaconway opened pull request: [3491](https://github.com/hackforla/website/pull/3491) at 2022-08-27 01:25 PM PDT -kathrynsilvaconway,2022-08-27T20:32:58Z,- kathrynsilvaconway submitted pull request review: [3483](https://github.com/hackforla/website/pull/3483#pullrequestreview-1087717288) at 2022-08-27 01:32 PM PDT -kathrynsilvaconway,2022-08-27T21:10:25Z,- kathrynsilvaconway opened issue: [3492](https://github.com/hackforla/website/issues/3492) at 2022-08-27 02:10 PM PDT -kathrynsilvaconway,2022-08-28T02:02:49Z,- kathrynsilvaconway opened issue: [3493](https://github.com/hackforla/website/issues/3493) at 2022-08-27 07:02 PM PDT -kathrynsilvaconway,2022-08-28T02:41:50Z,- kathrynsilvaconway opened issue: [3494](https://github.com/hackforla/website/issues/3494) at 2022-08-27 07:41 PM PDT -kathrynsilvaconway,2022-08-28T02:41:51Z,- kathrynsilvaconway assigned to issue: [3494](https://github.com/hackforla/website/issues/3494) at 2022-08-27 07:41 PM PDT -kathrynsilvaconway,2022-08-28T03:27:35Z,- kathrynsilvaconway opened pull request: [3495](https://github.com/hackforla/website/pull/3495) at 2022-08-27 08:27 PM PDT -kathrynsilvaconway,2022-08-28T03:34:53Z,- kathrynsilvaconway pull request closed w/o merging: [3491](https://github.com/hackforla/website/pull/3491#event-7272846727) at 2022-08-27 08:34 PM PDT -kathrynsilvaconway,2022-08-28T03:42:56Z,- kathrynsilvaconway commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1229367452) at 2022-08-27 08:42 PM PDT -kathrynsilvaconway,2022-08-28T17:00:19Z,- kathrynsilvaconway pull request merged: [3495](https://github.com/hackforla/website/pull/3495#event-7273745617) at 2022-08-28 10:00 AM PDT -kathrynsilvaconway,2022-08-29T20:42:01Z,- kathrynsilvaconway closed issue as completed: [3074](https://github.com/hackforla/website/issues/3074#event-7282043125) at 2022-08-29 01:42 PM PDT -kathrynsilvaconway,2022-08-29T20:44:32Z,- kathrynsilvaconway closed issue as completed: [3188](https://github.com/hackforla/website/issues/3188#event-7282058072) at 2022-08-29 01:44 PM PDT -kathrynsilvaconway,2022-08-29T20:58:32Z,- kathrynsilvaconway commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1230854182) at 2022-08-29 01:58 PM PDT -kathrynsilvaconway,2022-08-30T13:02:10Z,- kathrynsilvaconway opened pull request: [3498](https://github.com/hackforla/website/pull/3498) at 2022-08-30 06:02 AM PDT -kathrynsilvaconway,2022-08-30T14:23:06Z,- kathrynsilvaconway opened issue: [3499](https://github.com/hackforla/website/issues/3499) at 2022-08-30 07:23 AM PDT -kathrynsilvaconway,2022-08-30T14:25:28Z,- kathrynsilvaconway closed issue as completed: [3499](https://github.com/hackforla/website/issues/3499#event-7288133685) at 2022-08-30 07:25 AM PDT -kathrynsilvaconway,2022-08-30T15:31:55Z,- kathrynsilvaconway opened issue: [3500](https://github.com/hackforla/website/issues/3500) at 2022-08-30 08:31 AM PDT -kathrynsilvaconway,2022-08-30T15:38:47Z,- kathrynsilvaconway closed issue as completed: [3500](https://github.com/hackforla/website/issues/3500#event-7288795560) at 2022-08-30 08:38 AM PDT -kathrynsilvaconway,2022-08-30T15:39:40Z,- kathrynsilvaconway pull request closed w/o merging: [3498](https://github.com/hackforla/website/pull/3498#event-7288802933) at 2022-08-30 08:39 AM PDT -kathrynsilvaconway,2022-08-30T21:01:00Z,- kathrynsilvaconway submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1090961033) at 2022-08-30 02:01 PM PDT -kathrynsilvaconway,2022-08-30T22:44:22Z,- kathrynsilvaconway reopened issue: [3500](https://github.com/hackforla/website/issues/3500#event-7288795560) at 2022-08-30 03:44 PM PDT -kathrynsilvaconway,2022-08-30T22:50:55Z,- kathrynsilvaconway opened issue: [3501](https://github.com/hackforla/website/issues/3501) at 2022-08-30 03:50 PM PDT -kathrynsilvaconway,2022-08-30T22:57:43Z,- kathrynsilvaconway assigned to issue: [3501](https://github.com/hackforla/website/issues/3501) at 2022-08-30 03:57 PM PDT -kathrynsilvaconway,2022-08-30T22:58:53Z,- kathrynsilvaconway assigned to issue: [3500](https://github.com/hackforla/website/issues/3500#event-7288795560) at 2022-08-30 03:58 PM PDT -kathrynsilvaconway,2022-08-30T23:23:52Z,- kathrynsilvaconway opened pull request: [3502](https://github.com/hackforla/website/pull/3502) at 2022-08-30 04:23 PM PDT -kathrynsilvaconway,2022-08-30T23:25:58Z,- kathrynsilvaconway opened pull request: [3503](https://github.com/hackforla/website/pull/3503) at 2022-08-30 04:25 PM PDT -kathrynsilvaconway,2022-08-30T23:34:08Z,- kathrynsilvaconway opened issue: [3504](https://github.com/hackforla/website/issues/3504) at 2022-08-30 04:34 PM PDT -kathrynsilvaconway,2022-08-30T23:35:41Z,- kathrynsilvaconway opened pull request: [3505](https://github.com/hackforla/website/pull/3505) at 2022-08-30 04:35 PM PDT -kathrynsilvaconway,2022-08-31T03:08:57Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1232403766) at 2022-08-30 08:08 PM PDT -kathrynsilvaconway,2022-09-01T02:28:00Z,- kathrynsilvaconway pull request closed w/o merging: [3505](https://github.com/hackforla/website/pull/3505#event-7301148599) at 2022-08-31 07:28 PM PDT -kathrynsilvaconway,2022-09-01T02:28:18Z,- kathrynsilvaconway pull request closed w/o merging: [3503](https://github.com/hackforla/website/pull/3503#event-7301149745) at 2022-08-31 07:28 PM PDT -kathrynsilvaconway,2022-09-01T02:28:30Z,- kathrynsilvaconway pull request closed w/o merging: [3502](https://github.com/hackforla/website/pull/3502#event-7301150614) at 2022-08-31 07:28 PM PDT -kathrynsilvaconway,2022-09-09T00:40:06Z,- kathrynsilvaconway submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1101562697) at 2022-09-08 05:40 PM PDT -kathrynsilvaconway,2022-09-09T00:50:27Z,- kathrynsilvaconway commented on issue: [3447](https://github.com/hackforla/website/issues/3447#issuecomment-1241377304) at 2022-09-08 05:50 PM PDT -kathrynsilvaconway,2022-09-09T00:51:24Z,- kathrynsilvaconway closed issue by PR 3431: [3357](https://github.com/hackforla/website/issues/3357#event-7352392004) at 2022-09-08 05:51 PM PDT -kathrynsilvaconway,2022-09-09T02:38:55Z,- kathrynsilvaconway submitted pull request review: [3531](https://github.com/hackforla/website/pull/3531#pullrequestreview-1101629771) at 2022-09-08 07:38 PM PDT -kathrynsilvaconway,2022-09-11T01:49:41Z,- kathrynsilvaconway closed issue as completed: [3504](https://github.com/hackforla/website/issues/3504#event-7361672663) at 2022-09-10 06:49 PM PDT -kathrynsilvaconway,2022-09-11T02:44:11Z,- kathrynsilvaconway commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1242854039) at 2022-09-10 07:44 PM PDT -kathrynsilvaconway,2022-09-11T23:25:27Z,- kathrynsilvaconway closed issue as completed: [3063](https://github.com/hackforla/website/issues/3063#event-7363093123) at 2022-09-11 04:25 PM PDT -kathrynsilvaconway,2022-09-11T23:33:32Z,- kathrynsilvaconway commented on issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1243067921) at 2022-09-11 04:33 PM PDT -kathrynsilvaconway,2022-09-11T23:45:18Z,- kathrynsilvaconway commented on issue: [3406](https://github.com/hackforla/website/issues/3406#issuecomment-1243070350) at 2022-09-11 04:45 PM PDT -kathrynsilvaconway,2022-09-12T00:22:40Z,- kathrynsilvaconway opened issue: [3535](https://github.com/hackforla/website/issues/3535) at 2022-09-11 05:22 PM PDT -kathrynsilvaconway,2022-09-12T00:26:17Z,- kathrynsilvaconway assigned to issue: [3535](https://github.com/hackforla/website/issues/3535) at 2022-09-11 05:26 PM PDT -kathrynsilvaconway,2022-09-12T01:26:04Z,- kathrynsilvaconway opened pull request: [3536](https://github.com/hackforla/website/pull/3536) at 2022-09-11 06:26 PM PDT -kathrynsilvaconway,2022-09-12T01:30:21Z,- kathrynsilvaconway pull request closed w/o merging: [3536](https://github.com/hackforla/website/pull/3536#event-7363339927) at 2022-09-11 06:30 PM PDT -kathrynsilvaconway,2022-09-12T01:33:19Z,- kathrynsilvaconway opened pull request: [3537](https://github.com/hackforla/website/pull/3537) at 2022-09-11 06:33 PM PDT -kathrynsilvaconway,2022-09-12T02:29:02Z,- kathrynsilvaconway commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1243143087) at 2022-09-11 07:29 PM PDT -kathrynsilvaconway,2022-09-12T02:55:33Z,- kathrynsilvaconway commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1243155275) at 2022-09-11 07:55 PM PDT -kathrynsilvaconway,2022-09-12T03:02:38Z,- kathrynsilvaconway closed issue as completed: [3535](https://github.com/hackforla/website/issues/3535#event-7363632698) at 2022-09-11 08:02 PM PDT -kathrynsilvaconway,2022-09-13T02:12:13Z,- kathrynsilvaconway commented on issue: [3512](https://github.com/hackforla/website/issues/3512#issuecomment-1244808262) at 2022-09-12 07:12 PM PDT -kathrynsilvaconway,2022-09-13T02:12:47Z,- kathrynsilvaconway commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1244808538) at 2022-09-12 07:12 PM PDT -kathrynsilvaconway,2022-09-13T02:13:22Z,- kathrynsilvaconway commented on issue: [3387](https://github.com/hackforla/website/issues/3387#issuecomment-1244808827) at 2022-09-12 07:13 PM PDT -kathrynsilvaconway,2022-09-13T02:14:19Z,- kathrynsilvaconway commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1244809301) at 2022-09-12 07:14 PM PDT -kathrynsilvaconway,2022-09-13T02:33:56Z,- kathrynsilvaconway commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1244819731) at 2022-09-12 07:33 PM PDT -kathrynsilvaconway,2022-09-13T03:21:35Z,- kathrynsilvaconway opened issue: [3546](https://github.com/hackforla/website/issues/3546) at 2022-09-12 08:21 PM PDT -kathrynsilvaconway,2022-09-13T03:47:01Z,- kathrynsilvaconway opened issue: [3547](https://github.com/hackforla/website/issues/3547) at 2022-09-12 08:47 PM PDT -kathrynsilvaconway,2022-09-13T04:00:46Z,- kathrynsilvaconway commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1244867628) at 2022-09-12 09:00 PM PDT -kathrynsilvaconway,2022-09-13T04:11:01Z,- kathrynsilvaconway commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1244872964) at 2022-09-12 09:11 PM PDT -kathrynsilvaconway,2022-09-13T04:35:21Z,- kathrynsilvaconway commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1244885898) at 2022-09-12 09:35 PM PDT -kathrynsilvaconway,2022-09-13T04:40:46Z,- kathrynsilvaconway commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1244888959) at 2022-09-12 09:40 PM PDT -kathrynsilvaconway,2022-09-13T05:03:20Z,- kathrynsilvaconway commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1244901699) at 2022-09-12 10:03 PM PDT -kathrynsilvaconway,2022-09-13T06:33:41Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1244961996) at 2022-09-12 11:33 PM PDT -kathrynsilvaconway,2022-09-14T00:56:25Z,- kathrynsilvaconway closed issue by PR 3446: [2451](https://github.com/hackforla/website/issues/2451#event-7381083204) at 2022-09-13 05:56 PM PDT -kathrynsilvaconway,2022-09-14T02:52:23Z,- kathrynsilvaconway opened issue: [3552](https://github.com/hackforla/website/issues/3552) at 2022-09-13 07:52 PM PDT -kathrynsilvaconway,2022-09-14T03:27:48Z,- kathrynsilvaconway closed issue as completed: [3552](https://github.com/hackforla/website/issues/3552#event-7381662624) at 2022-09-13 08:27 PM PDT -kathrynsilvaconway,2022-09-16T02:34:52Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1248844950) at 2022-09-15 07:34 PM PDT -kathrynsilvaconway,2022-09-16T04:08:47Z,- kathrynsilvaconway submitted pull request review: [3556](https://github.com/hackforla/website/pull/3556#pullrequestreview-1110069026) at 2022-09-15 09:08 PM PDT -kathrynsilvaconway,2022-09-16T04:08:58Z,- kathrynsilvaconway closed issue by PR 3556: [2826](https://github.com/hackforla/website/issues/2826#event-7399878925) at 2022-09-15 09:08 PM PDT -kathrynsilvaconway,2022-09-19T02:30:31Z,- kathrynsilvaconway commented on issue: [3449](https://github.com/hackforla/website/issues/3449#issuecomment-1250482350) at 2022-09-18 07:30 PM PDT -kathrynsilvaconway,2022-09-19T02:34:30Z,- kathrynsilvaconway commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1250483942) at 2022-09-18 07:34 PM PDT -kathrynsilvaconway,2022-09-19T02:38:42Z,- kathrynsilvaconway commented on issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1250485602) at 2022-09-18 07:38 PM PDT -kathrynsilvaconway,2022-09-19T02:38:42Z,- kathrynsilvaconway closed issue as completed: [3244](https://github.com/hackforla/website/issues/3244#event-7410023774) at 2022-09-18 07:38 PM PDT -kathrynsilvaconway,2022-09-21T02:49:17Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1253140266) at 2022-09-20 07:49 PM PDT -kathrynsilvaconway,2022-09-21T21:26:23Z,- kathrynsilvaconway closed issue by PR 3567: [2829](https://github.com/hackforla/website/issues/2829#event-7434410038) at 2022-09-21 02:26 PM PDT -kathrynsilvaconway,2022-09-21T21:28:46Z,- kathrynsilvaconway closed issue by PR 3568: [2832](https://github.com/hackforla/website/issues/2832#event-7434422798) at 2022-09-21 02:28 PM PDT -kathrynsilvaconway,2022-09-23T01:22:46Z,- kathrynsilvaconway commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1255708321) at 2022-09-22 06:22 PM PDT -kathrynsilvaconway,2022-09-23T01:38:37Z,- kathrynsilvaconway commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1255714565) at 2022-09-22 06:38 PM PDT -kathrynsilvaconway,2022-09-23T01:45:27Z,- kathrynsilvaconway commented on issue: [3545](https://github.com/hackforla/website/issues/3545#issuecomment-1255717778) at 2022-09-22 06:45 PM PDT -kathrynsilvaconway,2022-09-28T01:31:53Z,- kathrynsilvaconway closed issue by PR 3580: [2215](https://github.com/hackforla/website/issues/2215#event-7473449547) at 2022-09-27 06:31 PM PDT -kathrynsilvaconway,2022-09-28T01:41:13Z,- kathrynsilvaconway commented on issue: [3512](https://github.com/hackforla/website/issues/3512#issuecomment-1260282665) at 2022-09-27 06:41 PM PDT -kathrynsilvaconway,2022-09-28T01:41:27Z,- kathrynsilvaconway closed issue as completed: [3512](https://github.com/hackforla/website/issues/3512#event-7473485110) at 2022-09-27 06:41 PM PDT -kathrynsilvaconway,2022-09-28T01:46:56Z,- kathrynsilvaconway commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1260285631) at 2022-09-27 06:46 PM PDT -kathrynsilvaconway,2022-09-28T01:48:18Z,- kathrynsilvaconway commented on issue: [3386](https://github.com/hackforla/website/issues/3386#issuecomment-1260286269) at 2022-09-27 06:48 PM PDT -kathrynsilvaconway,2022-09-28T01:48:18Z,- kathrynsilvaconway closed issue as completed: [3386](https://github.com/hackforla/website/issues/3386#event-7473509844) at 2022-09-27 06:48 PM PDT -kathrynsilvaconway,2022-09-28T01:51:34Z,- kathrynsilvaconway commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1260287783) at 2022-09-27 06:51 PM PDT -kathrynsilvaconway,2022-09-28T01:51:34Z,- kathrynsilvaconway closed issue as completed: [3186](https://github.com/hackforla/website/issues/3186#event-7473521196) at 2022-09-27 06:51 PM PDT -kathrynsilvaconway,2022-09-28T01:55:13Z,- kathrynsilvaconway commented on issue: [3389](https://github.com/hackforla/website/issues/3389#issuecomment-1260289404) at 2022-09-27 06:55 PM PDT -kathrynsilvaconway,2022-09-28T02:51:24Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1260318949) at 2022-09-27 07:51 PM PDT -kathrynsilvaconway,2022-09-30T01:21:13Z,- kathrynsilvaconway submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1126148094) at 2022-09-29 06:21 PM PDT -kathrynsilvaconway,2022-09-30T01:26:20Z,- kathrynsilvaconway submitted pull request review: [3591](https://github.com/hackforla/website/pull/3591#pullrequestreview-1126150348) at 2022-09-29 06:26 PM PDT -kathrynsilvaconway,2022-09-30T01:26:31Z,- kathrynsilvaconway closed issue by PR 3591: [3194](https://github.com/hackforla/website/issues/3194#event-7491406495) at 2022-09-29 06:26 PM PDT -kathrynsilvaconway,2022-09-30T01:33:51Z,- kathrynsilvaconway submitted pull request review: [3589](https://github.com/hackforla/website/pull/3589#pullrequestreview-1126153702) at 2022-09-29 06:33 PM PDT -kathrynsilvaconway,2022-09-30T01:37:08Z,- kathrynsilvaconway submitted pull request review: [3588](https://github.com/hackforla/website/pull/3588#pullrequestreview-1126155149) at 2022-09-29 06:37 PM PDT -kathrynsilvaconway,2022-09-30T01:37:16Z,- kathrynsilvaconway closed issue by PR 3588: [3195](https://github.com/hackforla/website/issues/3195#event-7491440689) at 2022-09-29 06:37 PM PDT -kathrynsilvaconway,2022-10-04T01:36:10Z,- kathrynsilvaconway commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1266287720) at 2022-10-03 06:36 PM PDT -kathrynsilvaconway,2022-10-04T02:11:07Z,- kathrynsilvaconway commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1266303839) at 2022-10-03 07:11 PM PDT -kathrynsilvaconway,2022-10-04T02:13:30Z,- kathrynsilvaconway commented on issue: [2286](https://github.com/hackforla/website/issues/2286#issuecomment-1266305356) at 2022-10-03 07:13 PM PDT -kathrynsilvaconway,2022-10-04T02:16:23Z,- kathrynsilvaconway commented on issue: [3027](https://github.com/hackforla/website/issues/3027#issuecomment-1266307147) at 2022-10-03 07:16 PM PDT -kathrynsilvaconway,2022-10-04T02:17:44Z,- kathrynsilvaconway closed issue as completed: [3389](https://github.com/hackforla/website/issues/3389#event-7512256744) at 2022-10-03 07:17 PM PDT -kathrynsilvaconway,2022-10-04T02:19:43Z,- kathrynsilvaconway commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1266309160) at 2022-10-03 07:19 PM PDT -kathrynsilvaconway,2022-10-05T00:36:34Z,- kathrynsilvaconway commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1267767573) at 2022-10-04 05:36 PM PDT -kathrynsilvaconway,2022-10-05T00:58:42Z,- kathrynsilvaconway commented on issue: [3570](https://github.com/hackforla/website/issues/3570#issuecomment-1267781501) at 2022-10-04 05:58 PM PDT -kathrynsilvaconway,2022-10-05T01:11:18Z,- kathrynsilvaconway commented on issue: [3247](https://github.com/hackforla/website/issues/3247#issuecomment-1267789513) at 2022-10-04 06:11 PM PDT -kathrynsilvaconway,2022-10-05T01:11:18Z,- kathrynsilvaconway closed issue as completed: [3247](https://github.com/hackforla/website/issues/3247#event-7521094825) at 2022-10-04 06:11 PM PDT -kathrynsilvaconway,2022-10-12T02:38:53Z,- kathrynsilvaconway commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1275507256) at 2022-10-11 07:38 PM PDT -kathrynsilvaconway,2022-10-14T02:26:49Z,- kathrynsilvaconway closed issue by PR 3618: [2847](https://github.com/hackforla/website/issues/2847#event-7586420311) at 2022-10-13 07:26 PM PDT -kathrynsilvaconway,2022-10-19T13:49:33Z,- kathrynsilvaconway commented on issue: [3612](https://github.com/hackforla/website/issues/3612#issuecomment-1284049297) at 2022-10-19 06:49 AM PDT -kathrynsilvaconway,2022-10-19T15:11:52Z,- kathrynsilvaconway commented on issue: [3570](https://github.com/hackforla/website/issues/3570#issuecomment-1284171782) at 2022-10-19 08:11 AM PDT -kathrynsilvaconway,2022-10-19T15:11:53Z,- kathrynsilvaconway closed issue as completed: [3570](https://github.com/hackforla/website/issues/3570#event-7622664394) at 2022-10-19 08:11 AM PDT -kathrynsilvaconway,2022-10-19T15:51:49Z,- kathrynsilvaconway commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1284231116) at 2022-10-19 08:51 AM PDT -kathrynsilvaconway,2022-11-09T02:15:56Z,- kathrynsilvaconway assigned to issue: [3704](https://github.com/hackforla/website/issues/3704) at 2022-11-08 06:15 PM PST -kathrynsilvaconway,2023-02-19T18:41:53Z,- kathrynsilvaconway assigned to issue: [3361](https://github.com/hackforla/website/issues/3361#issuecomment-1181203436) at 2023-02-19 10:41 AM PST -KBWells77,3147,SKILLS ISSUE -KBWells77,2022-05-17T02:52:04Z,- KBWells77 opened issue: [3147](https://github.com/hackforla/website/issues/3147) at 2022-05-16 07:52 PM PDT -KBWells77,2022-05-18T01:39:31Z,- KBWells77 assigned to issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1128350668) at 2022-05-17 06:39 PM PDT -KBWells77,2022-05-24T02:04:58Z,- KBWells77 commented on pull request: [3168](https://github.com/hackforla/website/pull/3168#issuecomment-1135319328) at 2022-05-23 07:04 PM PDT -KBWells77,2022-05-24T02:36:18Z,- KBWells77 submitted pull request review: [3168](https://github.com/hackforla/website/pull/3168#pullrequestreview-982525257) at 2022-05-23 07:36 PM PDT -KBWells77,2022-05-29T23:32:35Z,- KBWells77 commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1140546396) at 2022-05-29 04:32 PM PDT -KBWells77,2022-05-31T17:16:08Z,- KBWells77 submitted pull request review: [3182](https://github.com/hackforla/website/pull/3182#pullrequestreview-990831669) at 2022-05-31 10:16 AM PDT -KBWells77,2022-06-28T22:19:09Z,- KBWells77 commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1169339763) at 2022-06-28 03:19 PM PDT -KBWells77,2022-07-19T22:30:08Z,- KBWells77 submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1044153364) at 2022-07-19 03:30 PM PDT -KBWells77,2022-07-26T03:21:09Z,- KBWells77 commented on pull request: [3427](https://github.com/hackforla/website/pull/3427#issuecomment-1194948948) at 2022-07-25 08:21 PM PDT -KBWells77,2022-07-26T03:28:08Z,- KBWells77 submitted pull request review: [3427](https://github.com/hackforla/website/pull/3427#pullrequestreview-1050320622) at 2022-07-25 08:28 PM PDT -KBWells77,2022-07-27T00:47:30Z,- KBWells77 assigned to issue: [3403](https://github.com/hackforla/website/issues/3403) at 2022-07-26 05:47 PM PDT -KBWells77,2022-09-11T23:41:49Z,- KBWells77 unassigned from issue: [3403](https://github.com/hackforla/website/issues/3403#issuecomment-1243067921) at 2022-09-11 04:41 PM PDT -ldietz08,4632,SKILLS ISSUE -ldietz08,2023-05-09T03:36:01Z,- ldietz08 opened issue: [4632](https://github.com/hackforla/website/issues/4632) at 2023-05-08 08:36 PM PDT -ldietz08,2023-05-09T03:53:54Z,- ldietz08 assigned to issue: [4632](https://github.com/hackforla/website/issues/4632) at 2023-05-08 08:53 PM PDT -ldietz08,2023-05-15T17:42:54Z,- ldietz08 assigned to issue: [4476](https://github.com/hackforla/website/issues/4476) at 2023-05-15 10:42 AM PDT -ldietz08,2023-05-15T18:12:57Z,- ldietz08 opened pull request: [4674](https://github.com/hackforla/website/pull/4674) at 2023-05-15 11:12 AM PDT -ldietz08,2023-05-15T18:21:22Z,- ldietz08 commented on pull request: [4674](https://github.com/hackforla/website/pull/4674#issuecomment-1548344021) at 2023-05-15 11:21 AM PDT -ldietz08,2023-05-15T18:26:35Z,- ldietz08 commented on issue: [4632](https://github.com/hackforla/website/issues/4632#issuecomment-1548350297) at 2023-05-15 11:26 AM PDT -ldietz08,2023-05-15T18:32:52Z,- ldietz08 closed issue as completed: [4632](https://github.com/hackforla/website/issues/4632#event-9249810825) at 2023-05-15 11:32 AM PDT -ldietz08,2023-05-17T12:41:29Z,- ldietz08 commented on issue: [4476](https://github.com/hackforla/website/issues/4476#issuecomment-1551322291) at 2023-05-17 05:41 AM PDT -ldietz08,2023-05-17T17:58:12Z,- ldietz08 pull request merged: [4674](https://github.com/hackforla/website/pull/4674#event-9272327197) at 2023-05-17 10:58 AM PDT -ldietz08,2023-05-24T18:43:52Z,- ldietz08 assigned to issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1508161791) at 2023-05-24 11:43 AM PDT -ldietz08,2023-05-24T18:49:34Z,- ldietz08 commented on issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1561767423) at 2023-05-24 11:49 AM PDT -ldietz08,2023-05-24T20:00:22Z,- ldietz08 opened pull request: [4725](https://github.com/hackforla/website/pull/4725) at 2023-05-24 01:00 PM PDT -ldietz08,2023-05-25T03:52:27Z,- ldietz08 commented on pull request: [4727](https://github.com/hackforla/website/pull/4727#issuecomment-1562219855) at 2023-05-24 08:52 PM PDT -ldietz08,2023-05-26T04:08:48Z,- ldietz08 commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1563784630) at 2023-05-25 09:08 PM PDT -ldietz08,2023-05-27T23:12:07Z,- ldietz08 commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1565730844) at 2023-05-27 04:12 PM PDT -ldietz08,2023-05-27T23:12:37Z,- ldietz08 submitted pull request review: [4730](https://github.com/hackforla/website/pull/4730#pullrequestreview-1447664089) at 2023-05-27 04:12 PM PDT -ldietz08,2023-05-28T16:42:06Z,- ldietz08 commented on pull request: [4748](https://github.com/hackforla/website/pull/4748#issuecomment-1566195960) at 2023-05-28 09:42 AM PDT -ldietz08,2023-05-28T16:45:25Z,- ldietz08 pull request merged: [4725](https://github.com/hackforla/website/pull/4725#event-9362635838) at 2023-05-28 09:45 AM PDT -ldietz08,2023-05-28T21:38:00Z,- ldietz08 submitted pull request review: [4748](https://github.com/hackforla/website/pull/4748#pullrequestreview-1448436883) at 2023-05-28 02:38 PM PDT -ldietz08,2023-06-02T00:51:14Z,- ldietz08 assigned to issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1501020818) at 2023-06-01 05:51 PM PDT -ldietz08,2023-06-02T01:01:05Z,- ldietz08 commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1572975611) at 2023-06-01 06:01 PM PDT -ldietz08,2023-06-04T03:48:08Z,- ldietz08 commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1575364618) at 2023-06-03 08:48 PM PDT -ldietz08,2023-06-04T04:09:25Z,- ldietz08 commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1575371503) at 2023-06-03 09:09 PM PDT -ldietz08,2023-06-08T14:17:08Z,- ldietz08 submitted pull request review: [4772](https://github.com/hackforla/website/pull/4772#pullrequestreview-1470021732) at 2023-06-08 07:17 AM PDT -ldietz08,2023-06-08T14:26:48Z,- ldietz08 commented on pull request: [4789](https://github.com/hackforla/website/pull/4789#issuecomment-1582684645) at 2023-06-08 07:26 AM PDT -ldietz08,2023-06-12T05:24:23Z,- ldietz08 submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1474051798) at 2023-06-11 10:24 PM PDT -ldietz08,2023-06-14T00:09:37Z,- ldietz08 commented on issue: [4426](https://github.com/hackforla/website/issues/4426#issuecomment-1590234470) at 2023-06-13 05:09 PM PDT -ldietz08,2023-06-27T19:34:44Z,- ldietz08 assigned to issue: [4859](https://github.com/hackforla/website/issues/4859) at 2023-06-27 12:34 PM PDT -ldietz08,2023-06-27T19:37:45Z,- ldietz08 commented on issue: [4859](https://github.com/hackforla/website/issues/4859#issuecomment-1610107819) at 2023-06-27 12:37 PM PDT -ldietz08,2023-06-27T23:56:02Z,- ldietz08 commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1610377953) at 2023-06-27 04:56 PM PDT -ldietz08,2023-06-28T18:43:50Z,- ldietz08 opened pull request: [4897](https://github.com/hackforla/website/pull/4897) at 2023-06-28 11:43 AM PDT -ldietz08,2023-06-29T15:41:12Z,- ldietz08 submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1505602171) at 2023-06-29 08:41 AM PDT -ldietz08,2023-07-02T03:36:29Z,- ldietz08 pull request merged: [4897](https://github.com/hackforla/website/pull/4897#event-9698572243) at 2023-07-01 08:36 PM PDT -ldietz08,2023-07-14T18:50:36Z,- ldietz08 assigned to issue: [3555](https://github.com/hackforla/website/issues/3555) at 2023-07-14 11:50 AM PDT -ldietz08,2023-07-28T05:12:06Z,- ldietz08 unassigned from issue: [3555](https://github.com/hackforla/website/issues/3555#issuecomment-1636271732) at 2023-07-27 10:12 PM PDT -ldietz08,2023-07-31T23:16:55Z,- ldietz08 commented on pull request: [5122](https://github.com/hackforla/website/pull/5122#issuecomment-1659335097) at 2023-07-31 04:16 PM PDT -ldietz08,2023-08-03T01:45:40Z,- ldietz08 submitted pull request review: [5122](https://github.com/hackforla/website/pull/5122#pullrequestreview-1560096216) at 2023-08-02 06:45 PM PDT -ldietz08,2023-08-03T04:08:11Z,- ldietz08 commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1663261213) at 2023-08-02 09:08 PM PDT -ldietz08,2023-08-15T19:27:41Z,- ldietz08 commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1679480256) at 2023-08-15 12:27 PM PDT -ldietz08,2023-08-16T19:52:41Z,- ldietz08 submitted pull request review: [5203](https://github.com/hackforla/website/pull/5203#pullrequestreview-1581318271) at 2023-08-16 12:52 PM PDT -ldietz08,2023-08-18T20:58:02Z,- ldietz08 commented on pull request: [5249](https://github.com/hackforla/website/pull/5249#issuecomment-1684429180) at 2023-08-18 01:58 PM PDT -lilyarj,3270,SKILLS ISSUE -lilyarj,2022-06-20T21:41:47Z,- lilyarj opened issue: [3270](https://github.com/hackforla/website/issues/3270) at 2022-06-20 02:41 PM PDT -lilyarj,2022-06-20T21:56:33Z,- lilyarj assigned to issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1160868607) at 2022-06-20 02:56 PM PDT -lilyarj,2022-06-21T04:20:23Z,- lilyarj assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-20 09:20 PM PDT -lilyarj,2022-06-21T04:36:42Z,- lilyarj unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-20 09:36 PM PDT -lilyarj,2022-06-21T04:44:31Z,- lilyarj assigned to issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1048142134) at 2022-06-20 09:44 PM PDT -lilyarj,2022-06-21T04:48:13Z,- lilyarj unassigned from issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1048142134) at 2022-06-20 09:48 PM PDT -lilyarj,2022-06-21T04:53:00Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-20 09:53 PM PDT -lilyarj,2022-06-21T05:17:44Z,- lilyarj unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-20 10:17 PM PDT -lilyarj,2022-06-21T17:46:48Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 10:46 AM PDT -lilyarj,2022-06-21T17:58:14Z,- lilyarj unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 10:58 AM PDT -lilyarj,2022-06-22T02:02:35Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 07:02 PM PDT -lilyarj,2022-06-22T02:04:03Z,- lilyarj unassigned from issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 07:04 PM PDT -lilyarj,2022-06-22T02:23:21Z,- lilyarj assigned to issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-06-21 07:23 PM PDT -lilyarj,2022-06-22T02:48:00Z,- lilyarj commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1162571500) at 2022-06-21 07:48 PM PDT -lilyarj,2022-06-22T18:50:42Z,- lilyarj opened pull request: [3287](https://github.com/hackforla/website/pull/3287) at 2022-06-22 11:50 AM PDT -lilyarj,2022-06-22T19:02:53Z,- lilyarj commented on issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1163497773) at 2022-06-22 12:02 PM PDT -lilyarj,2022-06-22T19:03:55Z,- lilyarj commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1163498689) at 2022-06-22 12:03 PM PDT -lilyarj,2022-06-22T19:16:57Z,- lilyarj closed issue as completed: [3270](https://github.com/hackforla/website/issues/3270#event-6859322868) at 2022-06-22 12:16 PM PDT -lilyarj,2022-06-24T17:46:05Z,- lilyarj assigned to issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1116748918) at 2022-06-24 10:46 AM PDT -lilyarj,2022-06-24T17:48:30Z,- lilyarj unassigned from issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1165797936) at 2022-06-24 10:48 AM PDT -lilyarj,2022-06-26T05:19:41Z,- lilyarj pull request merged: [3287](https://github.com/hackforla/website/pull/3287#event-6879802375) at 2022-06-25 10:19 PM PDT -lilyarj,2022-06-26T16:32:28Z,- lilyarj assigned to issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1165797936) at 2022-06-26 09:32 AM PDT -lilyarj,2022-06-26T16:34:31Z,- lilyarj commented on issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1166581636) at 2022-06-26 09:34 AM PDT -lilyarj,2022-06-26T16:41:01Z,- lilyarj opened pull request: [3304](https://github.com/hackforla/website/pull/3304) at 2022-06-26 09:41 AM PDT -lilyarj,2022-06-26T16:48:14Z,- lilyarj commented on pull request: [3303](https://github.com/hackforla/website/pull/3303#issuecomment-1166585093) at 2022-06-26 09:48 AM PDT -lilyarj,2022-06-26T17:04:29Z,- lilyarj submitted pull request review: [3303](https://github.com/hackforla/website/pull/3303#pullrequestreview-1019458134) at 2022-06-26 10:04 AM PDT -lilyarj,2022-06-26T17:08:31Z,- lilyarj commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1166590177) at 2022-06-26 10:08 AM PDT -lilyarj,2022-06-26T17:10:26Z,- lilyarj closed issue as completed: [3270](https://github.com/hackforla/website/issues/3270#event-6880655158) at 2022-06-26 10:10 AM PDT -lilyarj,2022-06-26T17:11:21Z,- lilyarj commented on issue: [3092](https://github.com/hackforla/website/issues/3092#issuecomment-1166590932) at 2022-06-26 10:11 AM PDT -lilyarj,2022-06-27T15:02:13Z,- lilyarj pull request merged: [3304](https://github.com/hackforla/website/pull/3304#event-6886148818) at 2022-06-27 08:02 AM PDT -lilyarj,2022-06-27T17:08:20Z,- lilyarj assigned to issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1149136146) at 2022-06-27 10:08 AM PDT -lilyarj,2022-06-27T17:09:03Z,- lilyarj commented on issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1167626765) at 2022-06-27 10:09 AM PDT -lilyarj,2022-06-27T17:11:39Z,- lilyarj commented on issue: [3232](https://github.com/hackforla/website/issues/3232#issuecomment-1167629697) at 2022-06-27 10:11 AM PDT -lilyarj,2022-06-27T17:28:58Z,- lilyarj opened pull request: [3318](https://github.com/hackforla/website/pull/3318) at 2022-06-27 10:28 AM PDT -lilyarj,2022-06-27T17:29:58Z,- lilyarj commented on pull request: [3317](https://github.com/hackforla/website/pull/3317#issuecomment-1167651488) at 2022-06-27 10:29 AM PDT -lilyarj,2022-06-27T17:40:11Z,- lilyarj submitted pull request review: [3317](https://github.com/hackforla/website/pull/3317#pullrequestreview-1020556339) at 2022-06-27 10:40 AM PDT -lilyarj,2022-06-27T17:50:28Z,- lilyarj commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1167677302) at 2022-06-27 10:50 AM PDT -lilyarj,2022-06-28T02:16:50Z,- lilyarj commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1168137331) at 2022-06-27 07:16 PM PDT -lilyarj,2022-06-28T18:27:15Z,- lilyarj commented on pull request: [3319](https://github.com/hackforla/website/pull/3319#issuecomment-1169076357) at 2022-06-28 11:27 AM PDT -lilyarj,2022-06-28T18:39:33Z,- lilyarj submitted pull request review: [3319](https://github.com/hackforla/website/pull/3319#pullrequestreview-1022229049) at 2022-06-28 11:39 AM PDT -lilyarj,2022-06-28T18:40:42Z,- lilyarj commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1169091615) at 2022-06-28 11:40 AM PDT -lilyarj,2022-06-28T18:49:35Z,- lilyarj submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1022240174) at 2022-06-28 11:49 AM PDT -lilyarj,2022-06-29T02:18:37Z,- lilyarj commented on pull request: [3322](https://github.com/hackforla/website/pull/3322#issuecomment-1169460523) at 2022-06-28 07:18 PM PDT -lilyarj,2022-06-29T18:05:50Z,- lilyarj submitted pull request review: [3322](https://github.com/hackforla/website/pull/3322#pullrequestreview-1023791818) at 2022-06-29 11:05 AM PDT -lilyarj,2022-06-29T18:18:21Z,- lilyarj commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1170335222) at 2022-06-29 11:18 AM PDT -lilyarj,2022-06-29T18:39:14Z,- lilyarj commented on pull request: [3324](https://github.com/hackforla/website/pull/3324#issuecomment-1170358021) at 2022-06-29 11:39 AM PDT -lilyarj,2022-06-29T18:42:11Z,- lilyarj submitted pull request review: [3324](https://github.com/hackforla/website/pull/3324#pullrequestreview-1023832522) at 2022-06-29 11:42 AM PDT -lilyarj,2022-07-01T02:55:24Z,- lilyarj pull request closed w/o merging: [3318](https://github.com/hackforla/website/pull/3318#event-6915209851) at 2022-06-30 07:55 PM PDT -lilyarj,2022-07-01T03:21:11Z,- lilyarj opened pull request: [3327](https://github.com/hackforla/website/pull/3327) at 2022-06-30 08:21 PM PDT -lilyarj,2022-07-04T20:24:41Z,- lilyarj pull request merged: [3327](https://github.com/hackforla/website/pull/3327#event-6930020126) at 2022-07-04 01:24 PM PDT -lilyarj,2022-07-05T05:24:58Z,- lilyarj assigned to issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1090962450) at 2022-07-04 10:24 PM PDT -lilyarj,2022-07-05T16:54:26Z,- lilyarj commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1175284282) at 2022-07-05 09:54 AM PDT -lilyarj,2022-07-10T17:09:41Z,- lilyarj commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1179764952) at 2022-07-10 10:09 AM PDT -lilyarj,2022-07-11T18:13:18Z,- lilyarj unassigned from issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1179764952) at 2022-07-11 11:13 AM PDT -lilyarj,2022-07-11T18:14:08Z,- lilyarj commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1180716761) at 2022-07-11 11:14 AM PDT -lilyarj,2022-07-11T18:50:46Z,- lilyarj commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1180749668) at 2022-07-11 11:50 AM PDT -lilyarj,2022-07-11T19:21:15Z,- lilyarj commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1180775655) at 2022-07-11 12:21 PM PDT -lilyarj,2022-07-12T17:39:18Z,- lilyarj assigned to issue: [2222](https://github.com/hackforla/website/issues/2222#issuecomment-912706743) at 2022-07-12 10:39 AM PDT -lilyarj,2022-07-13T04:09:58Z,- lilyarj submitted pull request review: [3348](https://github.com/hackforla/website/pull/3348#pullrequestreview-1036738596) at 2022-07-12 09:09 PM PDT -lilyarj,2022-07-13T04:10:59Z,- lilyarj commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182743794) at 2022-07-12 09:10 PM PDT -lilyarj,2022-07-13T04:11:45Z,- lilyarj submitted pull request review: [3363](https://github.com/hackforla/website/pull/3363#pullrequestreview-1036739393) at 2022-07-12 09:11 PM PDT -lilyarj,2022-07-13T04:13:02Z,- lilyarj commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1182744779) at 2022-07-12 09:13 PM PDT -lilyarj,2022-07-13T04:13:51Z,- lilyarj commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1182745256) at 2022-07-12 09:13 PM PDT -lilyarj,2022-07-13T17:07:10Z,- lilyarj commented on issue: [2222](https://github.com/hackforla/website/issues/2222#issuecomment-1183473043) at 2022-07-13 10:07 AM PDT -lilyarj,2022-07-13T17:14:33Z,- lilyarj opened pull request: [3367](https://github.com/hackforla/website/pull/3367) at 2022-07-13 10:14 AM PDT -lilyarj,2022-07-13T17:14:59Z,- lilyarj pull request closed w/o merging: [3367](https://github.com/hackforla/website/pull/3367#event-6987816450) at 2022-07-13 10:14 AM PDT -lilyarj,2022-07-13T18:51:34Z,- lilyarj opened pull request: [3368](https://github.com/hackforla/website/pull/3368) at 2022-07-13 11:51 AM PDT -lilyarj,2022-07-13T18:57:41Z,- lilyarj commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1183570557) at 2022-07-13 11:57 AM PDT -lilyarj,2022-07-15T23:14:52Z,- lilyarj submitted pull request review: [3372](https://github.com/hackforla/website/pull/3372#pullrequestreview-1040881605) at 2022-07-15 04:14 PM PDT -lilyarj,2022-07-15T23:19:50Z,- lilyarj commented on pull request: [3371](https://github.com/hackforla/website/pull/3371#issuecomment-1186018127) at 2022-07-15 04:19 PM PDT -lilyarj,2022-07-15T23:20:27Z,- lilyarj submitted pull request review: [3371](https://github.com/hackforla/website/pull/3371#pullrequestreview-1040883281) at 2022-07-15 04:20 PM PDT -lilyarj,2022-07-15T23:21:44Z,- lilyarj commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186018755) at 2022-07-15 04:21 PM PDT -lilyarj,2022-07-18T16:51:32Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1187745105) at 2022-07-18 09:51 AM PDT -lilyarj,2022-07-18T18:18:13Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188039216) at 2022-07-18 11:18 AM PDT -lilyarj,2022-07-18T18:52:41Z,- lilyarj commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1188124723) at 2022-07-18 11:52 AM PDT -lilyarj,2022-07-18T19:19:32Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188164805) at 2022-07-18 12:19 PM PDT -lilyarj,2022-07-19T00:31:57Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1188467566) at 2022-07-18 05:31 PM PDT -lilyarj,2022-07-19T00:59:38Z,- lilyarj commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1188481501) at 2022-07-18 05:59 PM PDT -lilyarj,2022-07-19T17:18:59Z,- lilyarj commented on pull request: [3368](https://github.com/hackforla/website/pull/3368#issuecomment-1189355017) at 2022-07-19 10:18 AM PDT -lilyarj,2022-07-19T17:19:52Z,- lilyarj commented on pull request: [3390](https://github.com/hackforla/website/pull/3390#issuecomment-1189355879) at 2022-07-19 10:19 AM PDT -lilyarj,2022-07-19T17:23:33Z,- lilyarj submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043827530) at 2022-07-19 10:23 AM PDT -lilyarj,2022-07-19T18:11:19Z,- lilyarj commented on pull request: [3385](https://github.com/hackforla/website/pull/3385#issuecomment-1189401892) at 2022-07-19 11:11 AM PDT -lilyarj,2022-07-20T01:59:50Z,- lilyarj commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1189720066) at 2022-07-19 06:59 PM PDT -lilyarj,2022-07-20T02:00:58Z,- lilyarj submitted pull request review: [3395](https://github.com/hackforla/website/pull/3395#pullrequestreview-1044287002) at 2022-07-19 07:00 PM PDT -lilyarj,2022-07-20T03:07:32Z,- lilyarj opened issue: [3397](https://github.com/hackforla/website/issues/3397) at 2022-07-19 08:07 PM PDT -lilyarj,2022-07-20T17:26:48Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190554689) at 2022-07-20 10:26 AM PDT -lilyarj,2022-07-20T23:07:48Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190854582) at 2022-07-20 04:07 PM PDT -lilyarj,2022-07-21T00:44:25Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1190910552) at 2022-07-20 05:44 PM PDT -lilyarj,2022-07-21T18:02:33Z,- lilyarj opened pull request: [3413](https://github.com/hackforla/website/pull/3413) at 2022-07-21 11:02 AM PDT -lilyarj,2022-07-21T18:02:47Z,- lilyarj pull request closed w/o merging: [3413](https://github.com/hackforla/website/pull/3413#event-7040427830) at 2022-07-21 11:02 AM PDT -lilyarj,2022-07-22T00:42:46Z,- lilyarj commented on pull request: [3393](https://github.com/hackforla/website/pull/3393#issuecomment-1192064343) at 2022-07-21 05:42 PM PDT -lilyarj,2022-07-22T00:50:40Z,- lilyarj submitted pull request review: [3393](https://github.com/hackforla/website/pull/3393#pullrequestreview-1047271792) at 2022-07-21 05:50 PM PDT -lilyarj,2022-07-22T03:18:32Z,- lilyarj pull request merged: [3368](https://github.com/hackforla/website/pull/3368#event-7042768250) at 2022-07-21 08:18 PM PDT -lilyarj,2022-07-22T19:31:42Z,- lilyarj assigned to issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1007373563) at 2022-07-22 12:31 PM PDT -lilyarj,2022-07-22T23:03:29Z,- lilyarj commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1192993993) at 2022-07-22 04:03 PM PDT -lilyarj,2022-07-22T23:04:13Z,- lilyarj commented on pull request: [3421](https://github.com/hackforla/website/pull/3421#issuecomment-1192994290) at 2022-07-22 04:04 PM PDT -lilyarj,2022-07-23T21:08:58Z,- lilyarj submitted pull request review: [3421](https://github.com/hackforla/website/pull/3421#pullrequestreview-1048569606) at 2022-07-23 02:08 PM PDT -lilyarj,2022-07-25T15:14:13Z,- lilyarj commented on pull request: [3425](https://github.com/hackforla/website/pull/3425#issuecomment-1194183762) at 2022-07-25 08:14 AM PDT -lilyarj,2022-07-25T15:18:10Z,- lilyarj submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1049646026) at 2022-07-25 08:18 AM PDT -lilyarj,2022-07-25T15:25:34Z,- lilyarj submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1049657630) at 2022-07-25 08:25 AM PDT -lilyarj,2022-08-10T20:38:51Z,- lilyarj commented on pull request: [3457](https://github.com/hackforla/website/pull/3457#issuecomment-1211245347) at 2022-08-10 01:38 PM PDT -lilyarj,2022-08-12T16:50:21Z,- lilyarj unassigned from issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1212807524) at 2022-08-12 09:50 AM PDT -lilyarj,2022-08-12T17:46:28Z,- lilyarj submitted pull request review: [3457](https://github.com/hackforla/website/pull/3457#pullrequestreview-1071434645) at 2022-08-12 10:46 AM PDT -lilyarj,2022-08-17T02:22:45Z,- lilyarj assigned to issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1212807524) at 2022-08-16 07:22 PM PDT -lilyarj,2022-08-17T02:23:21Z,- lilyarj commented on issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1217383164) at 2022-08-16 07:23 PM PDT -lilyarj,2022-08-19T20:56:36Z,- lilyarj submitted pull request review: [3475](https://github.com/hackforla/website/pull/3475#pullrequestreview-1079347405) at 2022-08-19 01:56 PM PDT -lilyarj,2022-08-31T00:55:31Z,- lilyarj unassigned from issue: [2668](https://github.com/hackforla/website/issues/2668#issuecomment-1228152247) at 2022-08-30 05:55 PM PDT -lilyarj,2022-08-31T00:56:27Z,- lilyarj assigned to issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1179823406) at 2022-08-30 05:56 PM PDT -lilyarj,2022-08-31T00:56:52Z,- lilyarj commented on issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1232326148) at 2022-08-30 05:56 PM PDT -lilyarj,2022-08-31T01:10:47Z,- lilyarj opened pull request: [3506](https://github.com/hackforla/website/pull/3506) at 2022-08-30 06:10 PM PDT -lilyarj,2022-08-31T01:12:36Z,- lilyarj commented on pull request: [3506](https://github.com/hackforla/website/pull/3506#issuecomment-1232335518) at 2022-08-30 06:12 PM PDT -lilyarj,2022-08-31T02:33:44Z,- lilyarj pull request closed w/o merging: [3506](https://github.com/hackforla/website/pull/3506#event-7292367508) at 2022-08-30 07:33 PM PDT -lilyarj,2022-08-31T02:35:14Z,- lilyarj unassigned from issue: [3351](https://github.com/hackforla/website/issues/3351#issuecomment-1232326148) at 2022-08-30 07:35 PM PDT -lilyarj,2022-08-31T16:46:22Z,- lilyarj assigned to issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1003755937) at 2022-08-31 09:46 AM PDT -lilyarj,2022-08-31T16:56:39Z,- lilyarj commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1233188742) at 2022-08-31 09:56 AM PDT -lilyarj,2022-08-31T16:59:45Z,- lilyarj commented on issue: [1398](https://github.com/hackforla/website/issues/1398#issuecomment-1233191722) at 2022-08-31 09:59 AM PDT -lilyarj,2022-08-31T23:42:19Z,- lilyarj commented on pull request: [3513](https://github.com/hackforla/website/pull/3513#issuecomment-1233558504) at 2022-08-31 04:42 PM PDT -lilyarj,2022-08-31T23:44:09Z,- lilyarj submitted pull request review: [3513](https://github.com/hackforla/website/pull/3513#pullrequestreview-1092621097) at 2022-08-31 04:44 PM PDT -lilyarj,2022-09-02T00:48:48Z,- lilyarj commented on pull request: [3515](https://github.com/hackforla/website/pull/3515#issuecomment-1234947433) at 2022-09-01 05:48 PM PDT -lilyarj,2022-09-02T00:48:58Z,- lilyarj commented on pull request: [3514](https://github.com/hackforla/website/pull/3514#issuecomment-1234947506) at 2022-09-01 05:48 PM PDT -lilyarj,2022-09-02T01:31:46Z,- lilyarj submitted pull request review: [3515](https://github.com/hackforla/website/pull/3515#pullrequestreview-1094215702) at 2022-09-01 06:31 PM PDT -lilyarj,2022-09-02T01:35:30Z,- lilyarj submitted pull request review: [3514](https://github.com/hackforla/website/pull/3514#pullrequestreview-1094217339) at 2022-09-01 06:35 PM PDT -lilyarj,2022-09-02T23:00:20Z,- lilyarj commented on pull request: [3516](https://github.com/hackforla/website/pull/3516#issuecomment-1235962716) at 2022-09-02 04:00 PM PDT -lilyarj,2022-09-02T23:02:29Z,- lilyarj submitted pull request review: [3516](https://github.com/hackforla/website/pull/3516#pullrequestreview-1095412007) at 2022-09-02 04:02 PM PDT -lilyarj,2022-09-07T14:45:08Z,- lilyarj commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1239488760) at 2022-09-07 07:45 AM PDT -lilyarj,2022-09-07T23:46:53Z,- lilyarj submitted pull request review: [3521](https://github.com/hackforla/website/pull/3521#pullrequestreview-1099939444) at 2022-09-07 04:46 PM PDT -lilyarj,2022-09-12T23:58:01Z,- lilyarj commented on pull request: [3534](https://github.com/hackforla/website/pull/3534#issuecomment-1244724463) at 2022-09-12 04:58 PM PDT -lilyarj,2022-09-18T15:54:23Z,- lilyarj commented on pull request: [3560](https://github.com/hackforla/website/pull/3560#issuecomment-1250336064) at 2022-09-18 08:54 AM PDT -lilyarj,2022-09-18T15:59:35Z,- lilyarj submitted pull request review: [3560](https://github.com/hackforla/website/pull/3560#pullrequestreview-1111561172) at 2022-09-18 08:59 AM PDT -lilyarj,2022-09-18T16:02:16Z,- lilyarj submitted pull request review: [3559](https://github.com/hackforla/website/pull/3559#pullrequestreview-1111561512) at 2022-09-18 09:02 AM PDT -lilyarj,2022-09-18T16:08:51Z,- lilyarj assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1198483596) at 2022-09-18 09:08 AM PDT -lilyarj,2022-09-18T16:09:42Z,- lilyarj commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1250339398) at 2022-09-18 09:09 AM PDT -lilyarj,2022-09-23T22:37:46Z,- lilyarj commented on pull request: [3578](https://github.com/hackforla/website/pull/3578#issuecomment-1256753523) at 2022-09-23 03:37 PM PDT -lilyarj,2022-09-23T22:38:04Z,- lilyarj commented on pull request: [3577](https://github.com/hackforla/website/pull/3577#issuecomment-1256753950) at 2022-09-23 03:38 PM PDT -lilyarj,2022-09-23T22:38:19Z,- lilyarj commented on pull request: [3576](https://github.com/hackforla/website/pull/3576#issuecomment-1256754340) at 2022-09-23 03:38 PM PDT -lilyarj,2022-09-23T22:38:59Z,- lilyarj submitted pull request review: [3576](https://github.com/hackforla/website/pull/3576#pullrequestreview-1119096088) at 2022-09-23 03:38 PM PDT -lilyarj,2022-09-23T22:39:47Z,- lilyarj submitted pull request review: [3577](https://github.com/hackforla/website/pull/3577#pullrequestreview-1119096411) at 2022-09-23 03:39 PM PDT -lilyarj,2022-09-23T22:40:41Z,- lilyarj submitted pull request review: [3578](https://github.com/hackforla/website/pull/3578#pullrequestreview-1119096721) at 2022-09-23 03:40 PM PDT -lilyarj,2022-10-04T01:15:59Z,- lilyarj unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1250339398) at 2022-10-03 06:15 PM PDT -lilyarj,2022-10-09T16:31:41Z,- lilyarj commented on pull request: [3600](https://github.com/hackforla/website/pull/3600#issuecomment-1272579136) at 2022-10-09 09:31 AM PDT -lilyarj,2022-10-09T16:41:23Z,- lilyarj submitted pull request review: [3600](https://github.com/hackforla/website/pull/3600#pullrequestreview-1135364886) at 2022-10-09 09:41 AM PDT -LOSjr4,4070,SKILLS ISSUE -LOSjr4,2023-03-01T04:16:11Z,- LOSjr4 opened issue: [4070](https://github.com/hackforla/website/issues/4070) at 2023-02-28 08:16 PM PST -LOSjr4,2023-03-01T04:16:12Z,- LOSjr4 assigned to issue: [4070](https://github.com/hackforla/website/issues/4070) at 2023-02-28 08:16 PM PST -LOSjr4,2023-03-14T18:00:43Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1468577573) at 2023-03-14 11:00 AM PDT -LOSjr4,2023-03-16T20:01:57Z,- LOSjr4 assigned to issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1445356749) at 2023-03-16 01:01 PM PDT -LOSjr4,2023-03-16T20:27:59Z,- LOSjr4 commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1472693332) at 2023-03-16 01:27 PM PDT -LOSjr4,2023-03-16T20:32:42Z,- LOSjr4 closed issue by PR 4199: [3950](https://github.com/hackforla/website/issues/3950#event-8771860945) at 2023-03-16 01:32 PM PDT -LOSjr4,2023-03-16T20:43:36Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1472713610) at 2023-03-16 01:43 PM PDT -LOSjr4,2023-03-17T02:36:49Z,- LOSjr4 unassigned from issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1473024302) at 2023-03-16 07:36 PM PDT -LOSjr4,2023-03-17T03:04:26Z,- LOSjr4 assigned to issue: [3948](https://github.com/hackforla/website/issues/3948) at 2023-03-16 08:04 PM PDT -LOSjr4,2023-03-17T03:08:55Z,- LOSjr4 commented on issue: [3948](https://github.com/hackforla/website/issues/3948#issuecomment-1473052444) at 2023-03-16 08:08 PM PDT -LOSjr4,2023-03-17T21:19:59Z,- LOSjr4 opened pull request: [4203](https://github.com/hackforla/website/pull/4203) at 2023-03-17 02:19 PM PDT -LOSjr4,2023-03-20T03:50:23Z,- LOSjr4 pull request merged: [4203](https://github.com/hackforla/website/pull/4203#event-8789910921) at 2023-03-19 08:50 PM PDT -LOSjr4,2023-03-23T22:30:00Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1481998627) at 2023-03-23 03:30 PM PDT -LOSjr4,2023-03-27T16:47:48Z,- LOSjr4 commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1485478697) at 2023-03-27 09:47 AM PDT -LOSjr4,2023-03-27T23:18:07Z,- LOSjr4 submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1359994177) at 2023-03-27 04:18 PM PDT -LOSjr4,2023-03-27T23:22:34Z,- LOSjr4 assigned to issue: [4284](https://github.com/hackforla/website/issues/4284) at 2023-03-27 04:22 PM PDT -LOSjr4,2023-03-27T23:26:13Z,- LOSjr4 commented on issue: [4284](https://github.com/hackforla/website/issues/4284#issuecomment-1485992444) at 2023-03-27 04:26 PM PDT -LOSjr4,2023-03-28T18:59:27Z,- LOSjr4 submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1361738253) at 2023-03-28 11:59 AM PDT -LOSjr4,2023-03-28T21:32:02Z,- LOSjr4 opened pull request: [4306](https://github.com/hackforla/website/pull/4306) at 2023-03-28 02:32 PM PDT -LOSjr4,2023-03-28T21:52:29Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1487640587) at 2023-03-28 02:52 PM PDT -LOSjr4,2023-03-29T04:09:37Z,- LOSjr4 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1487918298) at 2023-03-28 09:09 PM PDT -LOSjr4,2023-03-30T16:11:04Z,- LOSjr4 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490567816) at 2023-03-30 09:11 AM PDT -LOSjr4,2023-03-30T16:54:34Z,- LOSjr4 commented on pull request: [4306](https://github.com/hackforla/website/pull/4306#issuecomment-1490625528) at 2023-03-30 09:54 AM PDT -LOSjr4,2023-03-30T17:27:07Z,- LOSjr4 commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1490668024) at 2023-03-30 10:27 AM PDT -LOSjr4,2023-03-30T17:44:18Z,- LOSjr4 submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1365622433) at 2023-03-30 10:44 AM PDT -LOSjr4,2023-03-31T01:15:47Z,- LOSjr4 pull request merged: [4306](https://github.com/hackforla/website/pull/4306#event-8893133084) at 2023-03-30 06:15 PM PDT -LOSjr4,2023-04-04T19:02:36Z,- LOSjr4 assigned to issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1493716472) at 2023-04-04 12:02 PM PDT -LOSjr4,2023-04-04T19:08:44Z,- LOSjr4 commented on issue: [4293](https://github.com/hackforla/website/issues/4293#issuecomment-1496465607) at 2023-04-04 12:08 PM PDT -LOSjr4,2023-04-04T20:03:23Z,- LOSjr4 opened pull request: [4408](https://github.com/hackforla/website/pull/4408) at 2023-04-04 01:03 PM PDT -LOSjr4,2023-04-04T20:13:45Z,- LOSjr4 commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496545354) at 2023-04-04 01:13 PM PDT -LOSjr4,2023-04-04T22:15:00Z,- LOSjr4 submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1371864623) at 2023-04-04 03:15 PM PDT -LOSjr4,2023-04-04T22:37:38Z,- LOSjr4 commented on pull request: [4404](https://github.com/hackforla/website/pull/4404#issuecomment-1496686653) at 2023-04-04 03:37 PM PDT -LOSjr4,2023-04-04T22:51:26Z,- LOSjr4 submitted pull request review: [4404](https://github.com/hackforla/website/pull/4404#pullrequestreview-1371893404) at 2023-04-04 03:51 PM PDT -LOSjr4,2023-04-04T22:59:45Z,- LOSjr4 submitted pull request review: [4406](https://github.com/hackforla/website/pull/4406#pullrequestreview-1371900162) at 2023-04-04 03:59 PM PDT -LOSjr4,2023-04-04T23:07:37Z,- LOSjr4 commented on pull request: [4406](https://github.com/hackforla/website/pull/4406#issuecomment-1496707676) at 2023-04-04 04:07 PM PDT -LOSjr4,2023-04-06T01:37:59Z,- LOSjr4 pull request merged: [4408](https://github.com/hackforla/website/pull/4408#event-8940852084) at 2023-04-05 06:37 PM PDT -LOSjr4,2023-04-11T14:47:41Z,- LOSjr4 assigned to issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1496212245) at 2023-04-11 07:47 AM PDT -LOSjr4,2023-04-11T14:49:41Z,- LOSjr4 commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1503516381) at 2023-04-11 07:49 AM PDT -LOSjr4,2023-04-12T21:06:03Z,- LOSjr4 commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1505945218) at 2023-04-12 02:06 PM PDT -LOSjr4,2023-04-13T17:18:44Z,- LOSjr4 opened pull request: [4501](https://github.com/hackforla/website/pull/4501) at 2023-04-13 10:18 AM PDT -LOSjr4,2023-04-13T17:23:15Z,- LOSjr4 commented on pull request: [4500](https://github.com/hackforla/website/pull/4500#issuecomment-1507338951) at 2023-04-13 10:23 AM PDT -LOSjr4,2023-04-13T17:40:09Z,- LOSjr4 submitted pull request review: [4500](https://github.com/hackforla/website/pull/4500#pullrequestreview-1383919972) at 2023-04-13 10:40 AM PDT -LOSjr4,2023-04-13T17:43:00Z,- LOSjr4 commented on pull request: [4497](https://github.com/hackforla/website/pull/4497#issuecomment-1507370344) at 2023-04-13 10:43 AM PDT -LOSjr4,2023-04-13T17:54:25Z,- LOSjr4 submitted pull request review: [4497](https://github.com/hackforla/website/pull/4497#pullrequestreview-1383944712) at 2023-04-13 10:54 AM PDT -LOSjr4,2023-04-16T07:16:34Z,- LOSjr4 pull request merged: [4501](https://github.com/hackforla/website/pull/4501#event-9015928417) at 2023-04-16 12:16 AM PDT -LOSjr4,2023-04-17T17:18:22Z,- LOSjr4 assigned to issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1496618836) at 2023-04-17 10:18 AM PDT -LOSjr4,2023-04-17T17:20:55Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1511776805) at 2023-04-17 10:20 AM PDT -LOSjr4,2023-04-18T16:38:25Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1513479912) at 2023-04-18 09:38 AM PDT -LOSjr4,2023-04-18T21:18:44Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1513806791) at 2023-04-18 02:18 PM PDT -LOSjr4,2023-04-19T16:21:26Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515022571) at 2023-04-19 09:21 AM PDT -LOSjr4,2023-04-19T16:34:35Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515041488) at 2023-04-19 09:34 AM PDT -LOSjr4,2023-04-19T16:44:54Z,- LOSjr4 submitted pull request review: [4497](https://github.com/hackforla/website/pull/4497#pullrequestreview-1392486081) at 2023-04-19 09:44 AM PDT -LOSjr4,2023-04-19T23:58:39Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1515523785) at 2023-04-19 04:58 PM PDT -LOSjr4,2023-04-20T19:23:34Z,- LOSjr4 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516831169) at 2023-04-20 12:23 PM PDT -LOSjr4,2023-04-20T19:36:20Z,- LOSjr4 submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1394645054) at 2023-04-20 12:36 PM PDT -LOSjr4,2023-04-20T19:42:15Z,- LOSjr4 commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516855884) at 2023-04-20 12:42 PM PDT -LOSjr4,2023-04-26T23:00:35Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1524139042) at 2023-04-26 04:00 PM PDT -LOSjr4,2023-04-27T15:47:52Z,- LOSjr4 commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1525933455) at 2023-04-27 08:47 AM PDT -LOSjr4,2023-04-27T16:44:48Z,- LOSjr4 submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1404485724) at 2023-04-27 09:44 AM PDT -LOSjr4,2023-05-01T16:55:41Z,- LOSjr4 assigned to issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1520923262) at 2023-05-01 09:55 AM PDT -LOSjr4,2023-05-01T16:59:42Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1529950977) at 2023-05-01 09:59 AM PDT -LOSjr4,2023-05-01T18:02:54Z,- LOSjr4 submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1407900964) at 2023-05-01 11:02 AM PDT -LOSjr4,2023-05-03T20:58:03Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1533739380) at 2023-05-03 01:58 PM PDT -LOSjr4,2023-05-04T18:13:08Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1535205291) at 2023-05-04 11:13 AM PDT -LOSjr4,2023-05-09T17:28:40Z,- LOSjr4 commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1540582195) at 2023-05-09 10:28 AM PDT -LOSjr4,2023-05-09T19:41:36Z,- LOSjr4 submitted pull request review: [4613](https://github.com/hackforla/website/pull/4613#pullrequestreview-1419347307) at 2023-05-09 12:41 PM PDT -LOSjr4,2023-05-10T02:22:37Z,- LOSjr4 commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1541196567) at 2023-05-09 07:22 PM PDT -LOSjr4,2023-05-11T18:22:41Z,- LOSjr4 submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1423189916) at 2023-05-11 11:22 AM PDT -LOSjr4,2023-05-12T16:53:31Z,- LOSjr4 submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1424859785) at 2023-05-12 09:53 AM PDT -LOSjr4,2023-05-12T16:58:27Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1546030465) at 2023-05-12 09:58 AM PDT -LOSjr4,2023-05-15T20:16:08Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1548515675) at 2023-05-15 01:16 PM PDT -LOSjr4,2023-05-18T19:05:38Z,- LOSjr4 submitted pull request review: [4691](https://github.com/hackforla/website/pull/4691#pullrequestreview-1433294234) at 2023-05-18 12:05 PM PDT -LOSjr4,2023-05-19T21:46:29Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1555289692) at 2023-05-19 02:46 PM PDT -LOSjr4,2023-05-21T17:36:40Z,- LOSjr4 commented on pull request: [4688](https://github.com/hackforla/website/pull/4688#issuecomment-1556235821) at 2023-05-21 10:36 AM PDT -LOSjr4,2023-05-22T20:18:36Z,- LOSjr4 submitted pull request review: [4688](https://github.com/hackforla/website/pull/4688#pullrequestreview-1437413199) at 2023-05-22 01:18 PM PDT -LOSjr4,2023-05-23T19:52:56Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1560038875) at 2023-05-23 12:52 PM PDT -LOSjr4,2023-05-25T23:17:51Z,- LOSjr4 commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1563622068) at 2023-05-25 04:17 PM PDT -LOSjr4,2023-05-25T23:38:57Z,- LOSjr4 submitted pull request review: [4730](https://github.com/hackforla/website/pull/4730#pullrequestreview-1444778690) at 2023-05-25 04:38 PM PDT -LOSjr4,2023-05-26T16:41:25Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1564652762) at 2023-05-26 09:41 AM PDT -LOSjr4,2023-05-26T16:49:55Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1564661338) at 2023-05-26 09:49 AM PDT -LOSjr4,2023-05-26T17:37:49Z,- LOSjr4 submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1446679462) at 2023-05-26 10:37 AM PDT -LOSjr4,2023-05-28T17:13:18Z,- LOSjr4 commented on pull request: [4745](https://github.com/hackforla/website/pull/4745#issuecomment-1566203053) at 2023-05-28 10:13 AM PDT -LOSjr4,2023-05-28T17:14:43Z,- LOSjr4 commented on pull request: [4748](https://github.com/hackforla/website/pull/4748#issuecomment-1566203487) at 2023-05-28 10:14 AM PDT -LOSjr4,2023-05-28T18:27:26Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1566223041) at 2023-05-28 11:27 AM PDT -LOSjr4,2023-05-30T16:11:16Z,- LOSjr4 submitted pull request review: [4732](https://github.com/hackforla/website/pull/4732#pullrequestreview-1451327515) at 2023-05-30 09:11 AM PDT -LOSjr4,2023-05-30T16:20:42Z,- LOSjr4 submitted pull request review: [4745](https://github.com/hackforla/website/pull/4745#pullrequestreview-1451343294) at 2023-05-30 09:20 AM PDT -LOSjr4,2023-05-30T16:33:55Z,- LOSjr4 submitted pull request review: [4748](https://github.com/hackforla/website/pull/4748#pullrequestreview-1451366232) at 2023-05-30 09:33 AM PDT -LOSjr4,2023-05-31T16:58:42Z,- LOSjr4 commented on issue: [4409](https://github.com/hackforla/website/issues/4409#issuecomment-1570590607) at 2023-05-31 09:58 AM PDT -LOSjr4,2023-06-07T16:07:02Z,- LOSjr4 submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1468083682) at 2023-06-07 09:07 AM PDT -LOSjr4,2023-06-07T17:06:36Z,- LOSjr4 submitted pull request review: [4783](https://github.com/hackforla/website/pull/4783#pullrequestreview-1468199180) at 2023-06-07 10:06 AM PDT -LOSjr4,2023-06-07T18:04:13Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1581281044) at 2023-06-07 11:04 AM PDT -LOSjr4,2023-06-13T16:11:27Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1589620307) at 2023-06-13 09:11 AM PDT -LOSjr4,2023-06-13T16:17:12Z,- LOSjr4 submitted pull request review: [4783](https://github.com/hackforla/website/pull/4783#pullrequestreview-1477596409) at 2023-06-13 09:17 AM PDT -LOSjr4,2023-06-16T01:51:16Z,- LOSjr4 commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1593968455) at 2023-06-15 06:51 PM PDT -LOSjr4,2023-06-16T02:48:21Z,- LOSjr4 submitted pull request review: [4843](https://github.com/hackforla/website/pull/4843#pullrequestreview-1482641586) at 2023-06-15 07:48 PM PDT -LOSjr4,2023-06-16T19:50:47Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1595211639) at 2023-06-16 12:50 PM PDT -LOSjr4,2023-06-22T21:20:37Z,- LOSjr4 commented on pull request: [4837](https://github.com/hackforla/website/pull/4837#issuecomment-1603332729) at 2023-06-22 02:20 PM PDT -LOSjr4,2023-06-24T16:48:59Z,- LOSjr4 opened pull request: [4880](https://github.com/hackforla/website/pull/4880) at 2023-06-24 09:48 AM PDT -LOSjr4,2023-06-24T16:49:08Z,- LOSjr4 pull request closed w/o merging: [4880](https://github.com/hackforla/website/pull/4880#event-9627315869) at 2023-06-24 09:49 AM PDT -LOSjr4,2023-06-24T17:27:29Z,- LOSjr4 submitted pull request review: [4837](https://github.com/hackforla/website/pull/4837#pullrequestreview-1496763662) at 2023-06-24 10:27 AM PDT -LOSjr4,2023-06-24T18:00:47Z,- LOSjr4 submitted pull request review: [4875](https://github.com/hackforla/website/pull/4875#pullrequestreview-1496768234) at 2023-06-24 11:00 AM PDT -LOSjr4,2023-06-29T01:47:03Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1612314738) at 2023-06-28 06:47 PM PDT -LOSjr4,2023-06-29T02:00:38Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1612322551) at 2023-06-28 07:00 PM PDT -LOSjr4,2023-06-29T02:35:23Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1612352861) at 2023-06-28 07:35 PM PDT -LOSjr4,2023-06-29T03:35:59Z,- LOSjr4 submitted pull request review: [4897](https://github.com/hackforla/website/pull/4897#pullrequestreview-1504504939) at 2023-06-28 08:35 PM PDT -LOSjr4,2023-06-29T04:26:14Z,- LOSjr4 submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1504531402) at 2023-06-28 09:26 PM PDT -LOSjr4,2023-06-29T04:51:47Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1612428288) at 2023-06-28 09:51 PM PDT -LOSjr4,2023-07-05T17:55:30Z,- LOSjr4 submitted pull request review: [4911](https://github.com/hackforla/website/pull/4911#pullrequestreview-1515053806) at 2023-07-05 10:55 AM PDT -LOSjr4,2023-07-09T17:15:34Z,- LOSjr4 commented on pull request: [4925](https://github.com/hackforla/website/pull/4925#issuecomment-1627776002) at 2023-07-09 10:15 AM PDT -LOSjr4,2023-07-12T17:39:06Z,- LOSjr4 submitted pull request review: [4925](https://github.com/hackforla/website/pull/4925#pullrequestreview-1526877767) at 2023-07-12 10:39 AM PDT -LOSjr4,2023-07-12T17:42:33Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1632950142) at 2023-07-12 10:42 AM PDT -LOSjr4,2023-07-12T18:01:08Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1632979424) at 2023-07-12 11:01 AM PDT -LOSjr4,2023-07-23T02:25:43Z,- LOSjr4 submitted pull request review: [5050](https://github.com/hackforla/website/pull/5050#pullrequestreview-1542176301) at 2023-07-22 07:25 PM PDT -LOSjr4,2023-07-23T02:42:13Z,- LOSjr4 submitted pull request review: [5044](https://github.com/hackforla/website/pull/5044#pullrequestreview-1542177113) at 2023-07-22 07:42 PM PDT -LOSjr4,2023-07-23T02:44:11Z,- LOSjr4 commented on pull request: [5050](https://github.com/hackforla/website/pull/5050#issuecomment-1646730252) at 2023-07-22 07:44 PM PDT -LOSjr4,2023-07-23T02:49:43Z,- LOSjr4 commented on issue: [4070](https://github.com/hackforla/website/issues/4070#issuecomment-1646731282) at 2023-07-22 07:49 PM PDT -LOSjr4,2023-08-03T17:50:58Z,- LOSjr4 commented on issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1664393234) at 2023-08-03 10:50 AM PDT -LOSjr4,2023-08-03T17:51:16Z,- LOSjr4 unassigned from issue: [4555](https://github.com/hackforla/website/issues/4555#issuecomment-1664393234) at 2023-08-03 10:51 AM PDT -LRenDO,4719,SKILLS ISSUE -LRenDO,2023-05-24T03:15:34Z,- LRenDO opened issue: [4719](https://github.com/hackforla/website/issues/4719) at 2023-05-23 08:15 PM PDT -LRenDO,2023-05-24T03:15:35Z,- LRenDO assigned to issue: [4719](https://github.com/hackforla/website/issues/4719) at 2023-05-23 08:15 PM PDT -LRenDO,2023-05-25T18:34:31Z,- LRenDO assigned to issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1547805009) at 2023-05-25 11:34 AM PDT -LRenDO,2023-05-25T18:36:30Z,- LRenDO commented on issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1563339690) at 2023-05-25 11:36 AM PDT -LRenDO,2023-05-25T18:37:45Z,- LRenDO commented on issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1563341018) at 2023-05-25 11:37 AM PDT -LRenDO,2023-05-25T20:25:04Z,- LRenDO opened pull request: [4730](https://github.com/hackforla/website/pull/4730) at 2023-05-25 01:25 PM PDT -LRenDO,2023-05-28T16:57:16Z,- LRenDO pull request merged: [4730](https://github.com/hackforla/website/pull/4730#event-9362657350) at 2023-05-28 09:57 AM PDT -LRenDO,2023-05-28T22:29:00Z,- LRenDO commented on pull request: [4730](https://github.com/hackforla/website/pull/4730#issuecomment-1566286487) at 2023-05-28 03:29 PM PDT -LRenDO,2023-05-29T20:40:17Z,- LRenDO commented on pull request: [4751](https://github.com/hackforla/website/pull/4751#issuecomment-1567498291) at 2023-05-29 01:40 PM PDT -LRenDO,2023-05-29T21:11:42Z,- LRenDO submitted pull request review: [4751](https://github.com/hackforla/website/pull/4751#pullrequestreview-1449862576) at 2023-05-29 02:11 PM PDT -LRenDO,2023-06-01T18:01:45Z,- LRenDO assigned to issue: [4480](https://github.com/hackforla/website/issues/4480) at 2023-06-01 11:01 AM PDT -LRenDO,2023-06-01T18:07:32Z,- LRenDO commented on issue: [4480](https://github.com/hackforla/website/issues/4480#issuecomment-1572551038) at 2023-06-01 11:07 AM PDT -LRenDO,2023-06-01T18:19:44Z,- LRenDO commented on issue: [4480](https://github.com/hackforla/website/issues/4480#issuecomment-1572567440) at 2023-06-01 11:19 AM PDT -LRenDO,2023-06-01T19:20:02Z,- LRenDO opened pull request: [4767](https://github.com/hackforla/website/pull/4767) at 2023-06-01 12:20 PM PDT -LRenDO,2023-06-01T19:47:44Z,- LRenDO submitted pull request review: [4763](https://github.com/hackforla/website/pull/4763#pullrequestreview-1456198888) at 2023-06-01 12:47 PM PDT -LRenDO,2023-06-05T18:53:03Z,- LRenDO commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1577298288) at 2023-06-05 11:53 AM PDT -LRenDO,2023-06-08T08:18:05Z,- LRenDO pull request merged: [4767](https://github.com/hackforla/website/pull/4767#event-9469182673) at 2023-06-08 01:18 AM PDT -LRenDO,2023-06-09T18:18:44Z,- LRenDO assigned to issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1529755527) at 2023-06-09 11:18 AM PDT -LRenDO,2023-06-09T18:20:59Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1584974176) at 2023-06-09 11:20 AM PDT -LRenDO,2023-06-09T20:07:45Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1585074737) at 2023-06-09 01:07 PM PDT -LRenDO,2023-06-09T20:56:44Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1585117756) at 2023-06-09 01:56 PM PDT -LRenDO,2023-06-20T17:25:47Z,- LRenDO commented on pull request: [4846](https://github.com/hackforla/website/pull/4846#issuecomment-1599217167) at 2023-06-20 10:25 AM PDT -LRenDO,2023-06-20T20:51:00Z,- LRenDO submitted pull request review: [4846](https://github.com/hackforla/website/pull/4846#pullrequestreview-1488997450) at 2023-06-20 01:51 PM PDT -LRenDO,2023-06-23T21:10:17Z,- LRenDO submitted pull request review: [4846](https://github.com/hackforla/website/pull/4846#pullrequestreview-1496036433) at 2023-06-23 02:10 PM PDT -LRenDO,2023-06-24T02:18:49Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1605236645) at 2023-06-23 07:18 PM PDT -LRenDO,2023-06-24T04:27:07Z,- LRenDO commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1605260586) at 2023-06-23 09:27 PM PDT -LRenDO,2023-06-24T04:27:17Z,- LRenDO assigned to issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1605260586) at 2023-06-23 09:27 PM PDT -LRenDO,2023-06-25T17:53:25Z,- LRenDO commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1606196668) at 2023-06-25 10:53 AM PDT -LRenDO,2023-06-25T18:08:05Z,- LRenDO commented on issue: [4719](https://github.com/hackforla/website/issues/4719#issuecomment-1606200318) at 2023-06-25 11:08 AM PDT -LRenDO,2023-06-28T12:24:21Z,- LRenDO submitted pull request review: [4878](https://github.com/hackforla/website/pull/4878#pullrequestreview-1502962240) at 2023-06-28 05:24 AM PDT -LRenDO,2023-06-29T21:17:25Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1613821743) at 2023-06-29 02:17 PM PDT -LRenDO,2023-06-29T21:38:48Z,- LRenDO commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1613840407) at 2023-06-29 02:38 PM PDT -LRenDO,2023-06-29T22:20:54Z,- LRenDO commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1613874209) at 2023-06-29 03:20 PM PDT -LRenDO,2023-06-30T04:08:24Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1614091150) at 2023-06-29 09:08 PM PDT -LRenDO,2023-07-02T22:58:30Z,- LRenDO opened pull request: [4908](https://github.com/hackforla/website/pull/4908) at 2023-07-02 03:58 PM PDT -LRenDO,2023-07-06T21:20:04Z,- LRenDO commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1624324281) at 2023-07-06 02:20 PM PDT -LRenDO,2023-07-06T22:36:00Z,- LRenDO opened issue: [4918](https://github.com/hackforla/website/issues/4918) at 2023-07-06 03:36 PM PDT -LRenDO,2023-07-06T22:36:01Z,- LRenDO assigned to issue: [4918](https://github.com/hackforla/website/issues/4918) at 2023-07-06 03:36 PM PDT -LRenDO,2023-07-07T19:53:12Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1625993616) at 2023-07-07 12:53 PM PDT -LRenDO,2023-07-09T17:34:33Z,- LRenDO commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1627779350) at 2023-07-09 10:34 AM PDT -LRenDO,2023-07-09T18:40:46Z,- LRenDO commented on issue: [4471](https://github.com/hackforla/website/issues/4471#issuecomment-1627792627) at 2023-07-09 11:40 AM PDT -LRenDO,2023-07-10T23:53:55Z,- LRenDO opened issue: [4931](https://github.com/hackforla/website/issues/4931) at 2023-07-10 04:53 PM PDT -LRenDO,2023-07-10T23:55:54Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1629891070) at 2023-07-10 04:55 PM PDT -LRenDO,2023-07-11T15:47:14Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1631069495) at 2023-07-11 08:47 AM PDT -LRenDO,2023-07-11T18:51:20Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1631347125) at 2023-07-11 11:51 AM PDT -LRenDO,2023-07-12T07:21:32Z,- LRenDO pull request merged: [4908](https://github.com/hackforla/website/pull/4908#event-9795452547) at 2023-07-12 12:21 AM PDT -LRenDO,2023-07-12T18:56:05Z,- LRenDO commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1633049675) at 2023-07-12 11:56 AM PDT -LRenDO,2023-07-13T01:50:03Z,- LRenDO commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1633417879) at 2023-07-12 06:50 PM PDT -LRenDO,2023-07-13T03:26:53Z,- LRenDO commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1633491598) at 2023-07-12 08:26 PM PDT -LRenDO,2023-07-13T04:15:58Z,- LRenDO commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1633519729) at 2023-07-12 09:15 PM PDT -LRenDO,2023-07-13T04:50:24Z,- LRenDO commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633541228) at 2023-07-12 09:50 PM PDT -LRenDO,2023-07-13T04:55:22Z,- LRenDO commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633544638) at 2023-07-12 09:55 PM PDT -LRenDO,2023-07-13T05:25:11Z,- LRenDO commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633567527) at 2023-07-12 10:25 PM PDT -LRenDO,2023-07-13T21:40:00Z,- LRenDO commented on pull request: [4947](https://github.com/hackforla/website/pull/4947#issuecomment-1634956437) at 2023-07-13 02:40 PM PDT -LRenDO,2023-07-15T13:30:56Z,- LRenDO commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1636770185) at 2023-07-15 06:30 AM PDT -LRenDO,2023-07-16T00:29:56Z,- LRenDO submitted pull request review: [4947](https://github.com/hackforla/website/pull/4947#pullrequestreview-1531642483) at 2023-07-15 05:29 PM PDT -LRenDO,2023-07-20T00:36:00Z,- LRenDO commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1642938977) at 2023-07-19 05:36 PM PDT -LRenDO,2023-07-25T04:08:10Z,- LRenDO commented on issue: [4916](https://github.com/hackforla/website/issues/4916#issuecomment-1649073645) at 2023-07-24 09:08 PM PDT -LRenDO,2023-07-25T04:51:20Z,- LRenDO commented on issue: [4918](https://github.com/hackforla/website/issues/4918#issuecomment-1649121205) at 2023-07-24 09:51 PM PDT -LRenDO,2023-07-27T00:24:53Z,- LRenDO commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1652722256) at 2023-07-26 05:24 PM PDT -LRenDO,2023-07-27T04:45:47Z,- LRenDO closed issue by PR 5054: [4948](https://github.com/hackforla/website/issues/4948#event-9931236256) at 2023-07-26 09:45 PM PDT -LRenDO,2023-07-27T05:09:35Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1652921943) at 2023-07-26 10:09 PM PDT -LRenDO,2023-07-27T05:15:39Z,- LRenDO commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1652925628) at 2023-07-26 10:15 PM PDT -LRenDO,2023-07-27T05:27:09Z,- LRenDO commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1652936092) at 2023-07-26 10:27 PM PDT -LRenDO,2023-07-27T05:29:46Z,- LRenDO commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1652937854) at 2023-07-26 10:29 PM PDT -LRenDO,2023-07-27T05:33:13Z,- LRenDO commented on pull request: [5063](https://github.com/hackforla/website/pull/5063#issuecomment-1652940313) at 2023-07-26 10:33 PM PDT -LRenDO,2023-07-27T05:59:54Z,- LRenDO submitted pull request review: [5093](https://github.com/hackforla/website/pull/5093#pullrequestreview-1549060189) at 2023-07-26 10:59 PM PDT -LRenDO,2023-07-27T06:34:19Z,- LRenDO submitted pull request review: [5097](https://github.com/hackforla/website/pull/5097#pullrequestreview-1549099541) at 2023-07-26 11:34 PM PDT -LRenDO,2023-07-27T06:37:45Z,- LRenDO commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1652996874) at 2023-07-26 11:37 PM PDT -LRenDO,2023-07-27T06:54:07Z,- LRenDO commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1653014128) at 2023-07-26 11:54 PM PDT -LRenDO,2023-07-27T07:51:34Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1653084581) at 2023-07-27 12:51 AM PDT -LRenDO,2023-07-27T22:31:16Z,- LRenDO submitted pull request review: [5093](https://github.com/hackforla/website/pull/5093#pullrequestreview-1550939137) at 2023-07-27 03:31 PM PDT -LRenDO,2023-07-29T01:13:32Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1656504119) at 2023-07-28 06:13 PM PDT -LRenDO,2023-07-30T16:41:23Z,- LRenDO commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1657216595) at 2023-07-30 09:41 AM PDT -LRenDO,2023-07-30T16:50:14Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1657218258) at 2023-07-30 09:50 AM PDT -LRenDO,2023-07-30T17:32:01Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1657226489) at 2023-07-30 10:32 AM PDT -LRenDO,2023-07-30T17:32:01Z,- LRenDO closed issue as completed: [5018](https://github.com/hackforla/website/issues/5018#event-9957125092) at 2023-07-30 10:32 AM PDT -LRenDO,2023-07-31T19:26:01Z,- LRenDO commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1659003171) at 2023-07-31 12:26 PM PDT -LRenDO,2023-07-31T19:57:55Z,- LRenDO submitted pull request review: [5103](https://github.com/hackforla/website/pull/5103#pullrequestreview-1555676765) at 2023-07-31 12:57 PM PDT -LRenDO,2023-07-31T19:59:15Z,- LRenDO commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1659048872) at 2023-07-31 12:59 PM PDT -LRenDO,2023-07-31T20:36:33Z,- LRenDO submitted pull request review: [5118](https://github.com/hackforla/website/pull/5118#pullrequestreview-1555739591) at 2023-07-31 01:36 PM PDT -LRenDO,2023-08-01T00:47:41Z,- LRenDO commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1659401147) at 2023-07-31 05:47 PM PDT -LRenDO,2023-08-01T17:51:51Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1660815884) at 2023-08-01 10:51 AM PDT -LRenDO,2023-08-01T18:31:48Z,- LRenDO commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1660870524) at 2023-08-01 11:31 AM PDT -LRenDO,2023-08-03T18:23:18Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1664435313) at 2023-08-03 11:23 AM PDT -LRenDO,2023-08-03T21:02:34Z,- LRenDO commented on issue: [4957](https://github.com/hackforla/website/issues/4957#issuecomment-1664644683) at 2023-08-03 02:02 PM PDT -LRenDO,2023-08-03T21:02:34Z,- LRenDO closed issue as completed: [4957](https://github.com/hackforla/website/issues/4957#event-10003187543) at 2023-08-03 02:02 PM PDT -LRenDO,2023-08-09T16:04:09Z,- LRenDO submitted pull request review: [5162](https://github.com/hackforla/website/pull/5162#pullrequestreview-1570020200) at 2023-08-09 09:04 AM PDT -LRenDO,2023-08-09T16:18:10Z,- LRenDO commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1671740876) at 2023-08-09 09:18 AM PDT -LRenDO,2023-08-09T16:24:36Z,- LRenDO commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1671751240) at 2023-08-09 09:24 AM PDT -LRenDO,2023-08-09T16:30:47Z,- LRenDO commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1671760034) at 2023-08-09 09:30 AM PDT -LRenDO,2023-08-09T16:54:00Z,- LRenDO commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1671799390) at 2023-08-09 09:54 AM PDT -LRenDO,2023-08-09T17:41:36Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1671870980) at 2023-08-09 10:41 AM PDT -LRenDO,2023-08-09T17:59:08Z,- LRenDO commented on issue: [5020](https://github.com/hackforla/website/issues/5020#issuecomment-1671893795) at 2023-08-09 10:59 AM PDT -LRenDO,2023-08-09T17:59:09Z,- LRenDO closed issue as completed: [5020](https://github.com/hackforla/website/issues/5020#event-10050647004) at 2023-08-09 10:59 AM PDT -LRenDO,2023-08-09T18:13:16Z,- LRenDO commented on issue: [5015](https://github.com/hackforla/website/issues/5015#issuecomment-1671912024) at 2023-08-09 11:13 AM PDT -LRenDO,2023-08-09T18:13:17Z,- LRenDO closed issue as completed: [5015](https://github.com/hackforla/website/issues/5015#event-10050763382) at 2023-08-09 11:13 AM PDT -LRenDO,2023-08-09T18:25:26Z,- LRenDO commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1671926632) at 2023-08-09 11:25 AM PDT -LRenDO,2023-08-09T18:25:26Z,- LRenDO closed issue as completed: [5014](https://github.com/hackforla/website/issues/5014#event-10050865068) at 2023-08-09 11:25 AM PDT -LRenDO,2023-08-09T18:33:18Z,- LRenDO commented on issue: [5013](https://github.com/hackforla/website/issues/5013#issuecomment-1671937375) at 2023-08-09 11:33 AM PDT -LRenDO,2023-08-09T18:33:18Z,- LRenDO closed issue as completed: [5013](https://github.com/hackforla/website/issues/5013#event-10050933653) at 2023-08-09 11:33 AM PDT -LRenDO,2023-08-09T18:39:42Z,- LRenDO commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1671945768) at 2023-08-09 11:39 AM PDT -LRenDO,2023-08-09T18:58:50Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1671973717) at 2023-08-09 11:58 AM PDT -LRenDO,2023-08-09T19:04:10Z,- LRenDO commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1671986192) at 2023-08-09 12:04 PM PDT -LRenDO,2023-08-09T22:44:42Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672277580) at 2023-08-09 03:44 PM PDT -LRenDO,2023-08-10T17:00:57Z,- LRenDO commented on issue: [4959](https://github.com/hackforla/website/issues/4959#issuecomment-1673586143) at 2023-08-10 10:00 AM PDT -LRenDO,2023-08-10T17:00:57Z,- LRenDO closed issue as completed: [4959](https://github.com/hackforla/website/issues/4959#event-10061846967) at 2023-08-10 10:00 AM PDT -LRenDO,2023-08-10T18:02:21Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1673669699) at 2023-08-10 11:02 AM PDT -LRenDO,2023-08-11T01:58:23Z,- LRenDO commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1674130043) at 2023-08-10 06:58 PM PDT -LRenDO,2023-08-11T01:58:23Z,- LRenDO closed issue as completed: [4786](https://github.com/hackforla/website/issues/4786#event-10065255045) at 2023-08-10 06:58 PM PDT -LRenDO,2023-08-11T14:02:56Z,- LRenDO commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1674847125) at 2023-08-11 07:02 AM PDT -LRenDO,2023-08-11T14:02:56Z,- LRenDO closed issue as completed: [4485](https://github.com/hackforla/website/issues/4485#event-10070113724) at 2023-08-11 07:02 AM PDT -LRenDO,2023-08-11T18:17:23Z,- LRenDO submitted pull request review: [5183](https://github.com/hackforla/website/pull/5183#pullrequestreview-1574179737) at 2023-08-11 11:17 AM PDT -LRenDO,2023-08-23T20:15:49Z,- LRenDO commented on issue: [4884](https://github.com/hackforla/website/issues/4884#issuecomment-1690578083) at 2023-08-23 01:15 PM PDT -LRenDO,2023-08-23T20:15:49Z,- LRenDO closed issue as completed: [4884](https://github.com/hackforla/website/issues/4884#event-10174136701) at 2023-08-23 01:15 PM PDT -LRenDO,2023-08-23T20:39:55Z,- LRenDO commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1690607116) at 2023-08-23 01:39 PM PDT -LRenDO,2023-08-23T20:41:53Z,- LRenDO commented on pull request: [5263](https://github.com/hackforla/website/pull/5263#issuecomment-1690609334) at 2023-08-23 01:41 PM PDT -LRenDO,2023-08-23T20:43:26Z,- LRenDO commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1690611073) at 2023-08-23 01:43 PM PDT -LRenDO,2023-08-23T20:49:39Z,- LRenDO commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1690619535) at 2023-08-23 01:49 PM PDT -LRenDO,2023-08-23T20:53:28Z,- LRenDO commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1690623965) at 2023-08-23 01:53 PM PDT -LRenDO,2023-08-23T21:39:24Z,- LRenDO submitted pull request review: [5295](https://github.com/hackforla/website/pull/5295#pullrequestreview-1592453194) at 2023-08-23 02:39 PM PDT -LRenDO,2023-08-23T22:01:31Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1690703121) at 2023-08-23 03:01 PM PDT -LRenDO,2023-08-24T21:20:57Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1692427013) at 2023-08-24 02:20 PM PDT -LRenDO,2023-08-24T21:22:39Z,- LRenDO submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1594482944) at 2023-08-24 02:22 PM PDT -LRenDO,2023-08-24T21:23:29Z,- LRenDO submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1594483841) at 2023-08-24 02:23 PM PDT -LRenDO,2023-08-25T03:47:06Z,- LRenDO submitted pull request review: [5295](https://github.com/hackforla/website/pull/5295#pullrequestreview-1594786903) at 2023-08-24 08:47 PM PDT -LRenDO,2023-08-25T18:21:13Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1693764627) at 2023-08-25 11:21 AM PDT -LRenDO,2023-08-25T20:23:14Z,- LRenDO submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1596456301) at 2023-08-25 01:23 PM PDT -LRenDO,2023-08-25T20:57:02Z,- LRenDO commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1693921258) at 2023-08-25 01:57 PM PDT -LRenDO,2023-09-06T21:42:24Z,- LRenDO commented on issue: [5383](https://github.com/hackforla/website/issues/5383#issuecomment-1709168161) at 2023-09-06 02:42 PM PDT -LRenDO,2023-09-06T21:47:53Z,- LRenDO commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1709173673) at 2023-09-06 02:47 PM PDT -LRenDO,2023-09-06T22:11:01Z,- LRenDO commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1709193887) at 2023-09-06 03:11 PM PDT -LRenDO,2023-09-06T22:14:52Z,- LRenDO commented on pull request: [5416](https://github.com/hackforla/website/pull/5416#issuecomment-1709197083) at 2023-09-06 03:14 PM PDT -LRenDO,2023-09-06T22:48:14Z,- LRenDO commented on issue: [5368](https://github.com/hackforla/website/issues/5368#issuecomment-1709225082) at 2023-09-06 03:48 PM PDT -LRenDO,2023-09-06T22:55:41Z,- LRenDO commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1709230726) at 2023-09-06 03:55 PM PDT -LRenDO,2023-09-06T23:33:26Z,- LRenDO commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1709256971) at 2023-09-06 04:33 PM PDT -LRenDO,2023-09-06T23:38:36Z,- LRenDO commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1709260536) at 2023-09-06 04:38 PM PDT -LRenDO,2023-09-06T23:47:32Z,- LRenDO commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1709266232) at 2023-09-06 04:47 PM PDT -LRenDO,2023-09-07T03:53:32Z,- LRenDO commented on issue: [4923](https://github.com/hackforla/website/issues/4923#issuecomment-1709436928) at 2023-09-06 08:53 PM PDT -LRenDO,2023-09-07T05:58:26Z,- LRenDO submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1614632175) at 2023-09-06 10:58 PM PDT -LRenDO,2023-09-07T06:22:01Z,- LRenDO submitted pull request review: [5449](https://github.com/hackforla/website/pull/5449#pullrequestreview-1614658089) at 2023-09-06 11:22 PM PDT -LRenDO,2023-09-07T06:26:17Z,- LRenDO closed issue by PR 5449: [5316](https://github.com/hackforla/website/issues/5316#event-10303250017) at 2023-09-06 11:26 PM PDT -LRenDO,2023-09-07T06:36:26Z,- LRenDO submitted pull request review: [5451](https://github.com/hackforla/website/pull/5451#pullrequestreview-1614675872) at 2023-09-06 11:36 PM PDT -LRenDO,2023-09-07T06:46:39Z,- LRenDO submitted pull request review: [5415](https://github.com/hackforla/website/pull/5415#pullrequestreview-1614689237) at 2023-09-06 11:46 PM PDT -LRenDO,2023-09-07T06:46:55Z,- LRenDO closed issue by PR 5415: [5315](https://github.com/hackforla/website/issues/5315#event-10303405151) at 2023-09-06 11:46 PM PDT -LRenDO,2023-09-08T05:18:05Z,- LRenDO commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1711088569) at 2023-09-07 10:18 PM PDT -LRenDO,2023-09-08T05:18:05Z,- LRenDO closed issue as completed: [5099](https://github.com/hackforla/website/issues/5099#event-10313818631) at 2023-09-07 10:18 PM PDT -LRenDO,2023-09-18T18:51:39Z,- LRenDO commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1724191564) at 2023-09-18 11:51 AM PDT -LRenDO,2023-09-20T17:15:21Z,- LRenDO commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1728139291) at 2023-09-20 10:15 AM PDT -LRenDO,2023-09-20T17:23:59Z,- LRenDO commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1728150640) at 2023-09-20 10:23 AM PDT -LRenDO,2023-09-20T17:27:38Z,- LRenDO commented on pull request: [5549](https://github.com/hackforla/website/pull/5549#issuecomment-1728156965) at 2023-09-20 10:27 AM PDT -LRenDO,2023-09-20T17:31:32Z,- LRenDO commented on pull request: [5557](https://github.com/hackforla/website/pull/5557#issuecomment-1728164140) at 2023-09-20 10:31 AM PDT -LRenDO,2023-09-20T17:32:58Z,- LRenDO commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1728165899) at 2023-09-20 10:32 AM PDT -LRenDO,2023-09-20T17:52:22Z,- LRenDO submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1636211440) at 2023-09-20 10:52 AM PDT -LRenDO,2023-09-20T18:09:25Z,- LRenDO submitted pull request review: [5560](https://github.com/hackforla/website/pull/5560#pullrequestreview-1636238949) at 2023-09-20 11:09 AM PDT -LRenDO,2023-09-20T18:54:22Z,- LRenDO commented on pull request: [5561](https://github.com/hackforla/website/pull/5561#issuecomment-1728269096) at 2023-09-20 11:54 AM PDT -LRenDO,2023-09-20T21:48:33Z,- LRenDO submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1636559484) at 2023-09-20 02:48 PM PDT -LRenDO,2023-09-21T00:58:32Z,- LRenDO submitted pull request review: [5438](https://github.com/hackforla/website/pull/5438#pullrequestreview-1636717138) at 2023-09-20 05:58 PM PDT -LRenDO,2023-09-21T20:56:34Z,- LRenDO submitted pull request review: [5560](https://github.com/hackforla/website/pull/5560#pullrequestreview-1638694657) at 2023-09-21 01:56 PM PDT -LRenDO,2023-09-23T00:49:46Z,- LRenDO submitted pull request review: [5571](https://github.com/hackforla/website/pull/5571#pullrequestreview-1640756294) at 2023-09-22 05:49 PM PDT -LRenDO,2023-09-23T00:50:44Z,- LRenDO closed issue by PR 5571: [5404](https://github.com/hackforla/website/issues/5404#event-10452192469) at 2023-09-22 05:50 PM PDT -LRenDO,2023-09-23T01:05:42Z,- LRenDO commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1732157463) at 2023-09-22 06:05 PM PDT -LRenDO,2023-09-28T22:14:11Z,- LRenDO commented on pull request: [5438](https://github.com/hackforla/website/pull/5438#issuecomment-1740070757) at 2023-09-28 03:14 PM PDT -LRenDO,2023-10-04T18:42:54Z,- LRenDO commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1747445479) at 2023-10-04 11:42 AM PDT -LRenDO,2023-10-04T19:22:09Z,- LRenDO commented on issue: [4922](https://github.com/hackforla/website/issues/4922#issuecomment-1747499961) at 2023-10-04 12:22 PM PDT -LRenDO,2023-10-04T19:31:08Z,- LRenDO commented on issue: [5596](https://github.com/hackforla/website/issues/5596#issuecomment-1747511720) at 2023-10-04 12:31 PM PDT -LRenDO,2023-10-04T19:31:08Z,- LRenDO closed issue as completed: [5596](https://github.com/hackforla/website/issues/5596#event-10554983678) at 2023-10-04 12:31 PM PDT -LRenDO,2023-10-04T19:37:14Z,- LRenDO commented on issue: [5600](https://github.com/hackforla/website/issues/5600#issuecomment-1747519441) at 2023-10-04 12:37 PM PDT -LRenDO,2023-10-04T19:37:14Z,- LRenDO closed issue as completed: [5600](https://github.com/hackforla/website/issues/5600#event-10555033679) at 2023-10-04 12:37 PM PDT -LRenDO,2023-10-04T19:44:23Z,- LRenDO commented on issue: [5598](https://github.com/hackforla/website/issues/5598#issuecomment-1747528976) at 2023-10-04 12:44 PM PDT -LRenDO,2023-10-04T19:44:23Z,- LRenDO closed issue as completed: [5598](https://github.com/hackforla/website/issues/5598#event-10555093093) at 2023-10-04 12:44 PM PDT -LRenDO,2023-10-04T20:04:56Z,- LRenDO commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1747559150) at 2023-10-04 01:04 PM PDT -LRenDO,2023-10-04T20:04:56Z,- LRenDO reopened issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1747559150) at 2023-10-04 01:04 PM PDT -LRenDO,2023-10-04T20:08:39Z,- LRenDO commented on issue: [5529](https://github.com/hackforla/website/issues/5529#issuecomment-1747565354) at 2023-10-04 01:08 PM PDT -LRenDO,2023-10-04T20:08:39Z,- LRenDO closed issue as completed: [5529](https://github.com/hackforla/website/issues/5529#event-10555306506) at 2023-10-04 01:08 PM PDT -LRenDO,2023-10-04T20:14:31Z,- LRenDO commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1747573614) at 2023-10-04 01:14 PM PDT -LRenDO,2023-10-04T20:16:31Z,- LRenDO commented on issue: [5530](https://github.com/hackforla/website/issues/5530#issuecomment-1747576311) at 2023-10-04 01:16 PM PDT -LRenDO,2023-10-04T20:16:31Z,- LRenDO closed issue as completed: [5530](https://github.com/hackforla/website/issues/5530#event-10555368185) at 2023-10-04 01:16 PM PDT -LRenDO,2023-10-04T20:18:36Z,- LRenDO commented on issue: [5531](https://github.com/hackforla/website/issues/5531#issuecomment-1747579080) at 2023-10-04 01:18 PM PDT -LRenDO,2023-10-04T20:18:36Z,- LRenDO closed issue as completed: [5531](https://github.com/hackforla/website/issues/5531#event-10555384567) at 2023-10-04 01:18 PM PDT -LRenDO,2023-10-04T20:20:06Z,- LRenDO commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1747580890) at 2023-10-04 01:20 PM PDT -LRenDO,2023-10-04T20:20:06Z,- LRenDO closed issue as completed: [5517](https://github.com/hackforla/website/issues/5517#event-10555396403) at 2023-10-04 01:20 PM PDT -LRenDO,2023-10-04T20:33:45Z,- LRenDO commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1747599052) at 2023-10-04 01:33 PM PDT -LRenDO,2023-10-04T20:39:00Z,- LRenDO commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1747605711) at 2023-10-04 01:39 PM PDT -LRenDO,2023-10-04T20:44:02Z,- LRenDO commented on issue: [5594](https://github.com/hackforla/website/issues/5594#issuecomment-1747612231) at 2023-10-04 01:44 PM PDT -LRenDO,2023-10-04T21:16:17Z,- LRenDO commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1747654176) at 2023-10-04 02:16 PM PDT -LRenDO,2023-10-04T21:19:33Z,- LRenDO commented on issue: [5527](https://github.com/hackforla/website/issues/5527#issuecomment-1747658044) at 2023-10-04 02:19 PM PDT -LRenDO,2023-10-04T21:19:33Z,- LRenDO closed issue as completed: [5527](https://github.com/hackforla/website/issues/5527#event-10555864973) at 2023-10-04 02:19 PM PDT -LRenDO,2023-10-04T21:20:59Z,- LRenDO commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1747659544) at 2023-10-04 02:20 PM PDT -LRenDO,2023-10-04T21:20:59Z,- LRenDO closed issue as completed: [5604](https://github.com/hackforla/website/issues/5604#event-10555875241) at 2023-10-04 02:20 PM PDT -LRenDO,2023-10-05T03:44:16Z,- LRenDO commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1747988642) at 2023-10-04 08:44 PM PDT -LRenDO,2023-10-05T03:54:52Z,- LRenDO commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1747994764) at 2023-10-04 08:54 PM PDT -LRenDO,2023-10-05T05:41:02Z,- LRenDO commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1748081175) at 2023-10-04 10:41 PM PDT -LRenDO,2023-10-05T15:53:05Z,- LRenDO commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1749181258) at 2023-10-05 08:53 AM PDT -LRenDO,2023-10-05T15:53:06Z,- LRenDO closed issue as completed: [4867](https://github.com/hackforla/website/issues/4867#event-10565713280) at 2023-10-05 08:53 AM PDT -LRenDO,2023-10-06T17:58:16Z,- LRenDO commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1751195057) at 2023-10-06 10:58 AM PDT -LRenDO,2023-10-06T19:37:15Z,- LRenDO commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1751316995) at 2023-10-06 12:37 PM PDT -LRenDO,2023-10-06T19:37:15Z,- LRenDO closed issue as completed: [5520](https://github.com/hackforla/website/issues/5520#event-10579136747) at 2023-10-06 12:37 PM PDT -LRenDO,2023-10-08T16:11:48Z,- LRenDO commented on issue: [5594](https://github.com/hackforla/website/issues/5594#issuecomment-1752095568) at 2023-10-08 09:11 AM PDT -LRenDO,2023-10-08T16:11:48Z,- LRenDO closed issue as completed: [5594](https://github.com/hackforla/website/issues/5594#event-10584488477) at 2023-10-08 09:11 AM PDT -LRenDO,2023-10-11T19:28:42Z,- LRenDO commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1758395604) at 2023-10-11 12:28 PM PDT -LRenDO,2023-10-11T19:28:42Z,- LRenDO closed issue as completed: [5602](https://github.com/hackforla/website/issues/5602#event-10623211720) at 2023-10-11 12:28 PM PDT -LRenDO,2023-10-11T19:36:59Z,- LRenDO commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1758409046) at 2023-10-11 12:36 PM PDT -LRenDO,2023-10-11T19:40:55Z,- LRenDO commented on issue: [5597](https://github.com/hackforla/website/issues/5597#issuecomment-1758415028) at 2023-10-11 12:40 PM PDT -LRenDO,2023-10-11T19:40:55Z,- LRenDO closed issue as completed: [5597](https://github.com/hackforla/website/issues/5597#event-10623333105) at 2023-10-11 12:40 PM PDT -LRenDO,2023-10-11T19:53:11Z,- LRenDO commented on issue: [5621](https://github.com/hackforla/website/issues/5621#issuecomment-1758432758) at 2023-10-11 12:53 PM PDT -LRenDO,2023-10-12T04:02:42Z,- LRenDO commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1758876249) at 2023-10-11 09:02 PM PDT -LRenDO,2023-10-12T04:02:42Z,- LRenDO closed issue as completed: [5599](https://github.com/hackforla/website/issues/5599#event-10626478584) at 2023-10-11 09:02 PM PDT -LRenDO,2023-10-19T16:25:30Z,- LRenDO commented on issue: [5525](https://github.com/hackforla/website/issues/5525#issuecomment-1771328365) at 2023-10-19 09:25 AM PDT -LRenDO,2023-10-31T21:50:45Z,- LRenDO commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1788086579) at 2023-10-31 02:50 PM PDT -LRenDO,2023-10-31T21:50:46Z,- LRenDO closed issue as completed: [4510](https://github.com/hackforla/website/issues/4510#event-10826307825) at 2023-10-31 02:50 PM PDT -LRenDO,2023-11-01T20:54:48Z,- LRenDO submitted pull request review: [5794](https://github.com/hackforla/website/pull/5794#pullrequestreview-1709071945) at 2023-11-01 01:54 PM PDT -LRenDO,2023-11-01T21:01:09Z,- LRenDO commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789678721) at 2023-11-01 02:01 PM PDT -LRenDO,2023-11-01T21:27:23Z,- LRenDO submitted pull request review: [5811](https://github.com/hackforla/website/pull/5811#pullrequestreview-1709112836) at 2023-11-01 02:27 PM PDT -LRenDO,2023-11-01T21:44:01Z,- LRenDO commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789734167) at 2023-11-01 02:44 PM PDT -LRenDO,2023-11-02T18:46:20Z,- LRenDO submitted pull request review: [5794](https://github.com/hackforla/website/pull/5794#pullrequestreview-1711029265) at 2023-11-02 11:46 AM PDT -LRenDO,2023-11-07T20:10:32Z,- LRenDO submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1718635098) at 2023-11-07 12:10 PM PST -LRenDO,2023-11-08T16:43:43Z,- LRenDO submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1720818160) at 2023-11-08 08:43 AM PST -LRenDO,2023-11-15T23:54:00Z,- LRenDO submitted pull request review: [5901](https://github.com/hackforla/website/pull/5901#pullrequestreview-1733242811) at 2023-11-15 03:54 PM PST -LRenDO,2023-11-16T00:10:54Z,- LRenDO commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1813497847) at 2023-11-15 04:10 PM PST -LRenDO,2023-11-16T05:14:43Z,- LRenDO commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1813801959) at 2023-11-15 09:14 PM PST -LRenDO,2023-11-16T05:35:54Z,- LRenDO commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1813818740) at 2023-11-15 09:35 PM PST -LRenDO,2023-11-16T06:07:26Z,- LRenDO submitted pull request review: [5910](https://github.com/hackforla/website/pull/5910#pullrequestreview-1733570051) at 2023-11-15 10:07 PM PST -LRenDO,2023-11-16T07:12:49Z,- LRenDO submitted pull request review: [5911](https://github.com/hackforla/website/pull/5911#pullrequestreview-1733647434) at 2023-11-15 11:12 PM PST -LRenDO,2023-11-16T07:21:38Z,- LRenDO commented on issue: [5770](https://github.com/hackforla/website/issues/5770#issuecomment-1813910812) at 2023-11-15 11:21 PM PST -LRenDO,2023-11-16T21:01:16Z,- LRenDO commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1815305388) at 2023-11-16 01:01 PM PST -LRenDO,2023-11-16T22:00:00Z,- LRenDO commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1815382151) at 2023-11-16 02:00 PM PST -LRenDO,2023-11-16T23:17:50Z,- LRenDO commented on pull request: [5911](https://github.com/hackforla/website/pull/5911#issuecomment-1815469801) at 2023-11-16 03:17 PM PST -LRenDO,2023-11-17T17:34:12Z,- LRenDO commented on pull request: [5901](https://github.com/hackforla/website/pull/5901#issuecomment-1816825176) at 2023-11-17 09:34 AM PST -LRenDO,2023-11-19T18:02:31Z,- LRenDO submitted pull request review: [5910](https://github.com/hackforla/website/pull/5910#pullrequestreview-1738695667) at 2023-11-19 10:02 AM PST -LRenDO,2023-11-21T07:19:41Z,- LRenDO submitted pull request review: [5901](https://github.com/hackforla/website/pull/5901#pullrequestreview-1741259091) at 2023-11-20 11:19 PM PST -LRenDO,2023-11-21T19:05:08Z,- LRenDO closed issue by PR 5901: [5801](https://github.com/hackforla/website/issues/5801#event-11028213573) at 2023-11-21 11:05 AM PST -LRenDO,2023-11-21T21:16:12Z,- LRenDO commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1821699624) at 2023-11-21 01:16 PM PST -LRenDO,2023-11-22T06:24:46Z,- LRenDO commented on pull request: [5929](https://github.com/hackforla/website/pull/5929#issuecomment-1822183235) at 2023-11-21 10:24 PM PST -LRenDO,2023-11-29T22:35:09Z,- LRenDO submitted pull request review: [5943](https://github.com/hackforla/website/pull/5943#pullrequestreview-1756331873) at 2023-11-29 02:35 PM PST -LRenDO,2023-11-29T22:35:48Z,- LRenDO closed issue by PR 5943: [5797](https://github.com/hackforla/website/issues/5797#event-11102198138) at 2023-11-29 02:35 PM PST -LRenDO,2023-11-29T22:54:59Z,- LRenDO submitted pull request review: [5945](https://github.com/hackforla/website/pull/5945#pullrequestreview-1756362161) at 2023-11-29 02:54 PM PST -LRenDO,2023-11-29T23:29:09Z,- LRenDO submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1756393694) at 2023-11-29 03:29 PM PST -LRenDO,2023-11-29T23:56:25Z,- LRenDO commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1832882811) at 2023-11-29 03:56 PM PST -LRenDO,2023-11-30T00:05:51Z,- LRenDO closed issue by PR 5941: [5693](https://github.com/hackforla/website/issues/5693#event-11102718386) at 2023-11-29 04:05 PM PST -LRenDO,2023-11-30T00:14:30Z,- LRenDO commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1832900192) at 2023-11-29 04:14 PM PST -LRenDO,2023-11-30T00:32:29Z,- LRenDO submitted pull request review: [5946](https://github.com/hackforla/website/pull/5946#pullrequestreview-1756442785) at 2023-11-29 04:32 PM PST -LRenDO,2023-11-30T00:35:48Z,- LRenDO closed issue by PR 5946: [5681](https://github.com/hackforla/website/issues/5681#event-11102882719) at 2023-11-29 04:35 PM PST -LRenDO,2023-12-02T01:08:58Z,- LRenDO submitted pull request review: [5883](https://github.com/hackforla/website/pull/5883#pullrequestreview-1760743683) at 2023-12-01 05:08 PM PST -LRenDO,2023-12-02T01:16:11Z,- LRenDO closed issue by PR 5883: [5541](https://github.com/hackforla/website/issues/5541#event-11127695702) at 2023-12-01 05:16 PM PST -LRenDO,2024-01-10T16:04:18Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1885143566) at 2024-01-10 08:04 AM PST -LRenDO,2024-01-10T16:08:57Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1885152240) at 2024-01-10 08:08 AM PST -LRenDO,2024-01-10T16:11:20Z,- LRenDO commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1885156516) at 2024-01-10 08:11 AM PST -LRenDO,2024-01-10T16:51:57Z,- LRenDO commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1885228224) at 2024-01-10 08:51 AM PST -LRenDO,2024-01-10T19:33:12Z,- LRenDO commented on pull request: [6026](https://github.com/hackforla/website/pull/6026#issuecomment-1885578235) at 2024-01-10 11:33 AM PST -LRenDO,2024-01-10T19:44:30Z,- LRenDO commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1885597127) at 2024-01-10 11:44 AM PST -LRenDO,2024-01-10T19:52:54Z,- LRenDO commented on issue: [5809](https://github.com/hackforla/website/issues/5809#issuecomment-1885613402) at 2024-01-10 11:52 AM PST -LRenDO,2024-01-10T20:08:28Z,- LRenDO commented on issue: [4300](https://github.com/hackforla/website/issues/4300#issuecomment-1885641551) at 2024-01-10 12:08 PM PST -LRenDO,2024-01-10T20:28:07Z,- LRenDO commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1885666957) at 2024-01-10 12:28 PM PST -LRenDO,2024-01-16T20:54:03Z,- LRenDO commented on issue: [5678](https://github.com/hackforla/website/issues/5678#issuecomment-1894496749) at 2024-01-16 12:54 PM PST -LRenDO,2024-01-18T06:41:18Z,- LRenDO submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1828950815) at 2024-01-17 10:41 PM PST -LRenDO,2024-01-24T16:57:05Z,- LRenDO submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1841923038) at 2024-01-24 08:57 AM PST -LRenDO,2024-01-24T17:15:09Z,- LRenDO commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1908578796) at 2024-01-24 09:15 AM PST -LRenDO,2024-01-24T17:15:58Z,- LRenDO closed issue by PR 6130: [6126](https://github.com/hackforla/website/issues/6126#event-11587321591) at 2024-01-24 09:15 AM PST -LRenDO,2024-01-24T17:17:44Z,- LRenDO commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1908583140) at 2024-01-24 09:17 AM PST -LRenDO,2024-01-24T17:33:35Z,- LRenDO commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1908609543) at 2024-01-24 09:33 AM PST -LRenDO,2024-01-24T17:48:50Z,- LRenDO commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1908635413) at 2024-01-24 09:48 AM PST -LRenDO,2024-01-24T17:54:02Z,- LRenDO closed issue by PR 6134: [6078](https://github.com/hackforla/website/issues/6078#event-11587736321) at 2024-01-24 09:54 AM PST -LRenDO,2024-01-24T18:46:47Z,- LRenDO submitted pull request review: [6026](https://github.com/hackforla/website/pull/6026#pullrequestreview-1842136527) at 2024-01-24 10:46 AM PST -LRenDO,2024-01-25T03:52:27Z,- LRenDO submitted pull request review: [6011](https://github.com/hackforla/website/pull/6011#pullrequestreview-1842791891) at 2024-01-24 07:52 PM PST -LRenDO,2024-01-26T02:40:37Z,- LRenDO commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1911320144) at 2024-01-25 06:40 PM PST -LRenDO,2024-02-07T15:51:57Z,- LRenDO commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1932340232) at 2024-02-07 07:51 AM PST -LRenDO,2024-02-07T16:25:22Z,- LRenDO commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1932413919) at 2024-02-07 08:25 AM PST -LRenDO,2024-02-07T16:34:57Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1932432996) at 2024-02-07 08:34 AM PST -LRenDO,2024-02-07T17:34:19Z,- LRenDO commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1932547749) at 2024-02-07 09:34 AM PST -LRenDO,2024-02-07T18:10:53Z,- LRenDO commented on issue: [5895](https://github.com/hackforla/website/issues/5895#issuecomment-1932607713) at 2024-02-07 10:10 AM PST -LRenDO,2024-02-07T18:28:24Z,- LRenDO commented on pull request: [6261](https://github.com/hackforla/website/pull/6261#issuecomment-1932634398) at 2024-02-07 10:28 AM PST -LRenDO,2024-02-07T18:29:11Z,- LRenDO commented on pull request: [6261](https://github.com/hackforla/website/pull/6261#issuecomment-1932635616) at 2024-02-07 10:29 AM PST -LRenDO,2024-02-07T18:36:38Z,- LRenDO commented on issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1932646772) at 2024-02-07 10:36 AM PST -LRenDO,2024-02-07T18:58:42Z,- LRenDO commented on pull request: [6243](https://github.com/hackforla/website/pull/6243#issuecomment-1932680109) at 2024-02-07 10:58 AM PST -LRenDO,2024-02-07T18:59:45Z,- LRenDO closed issue by PR 6243: [6200](https://github.com/hackforla/website/issues/6200#event-11736569440) at 2024-02-07 10:59 AM PST -LRenDO,2024-02-07T19:23:38Z,- LRenDO commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1932718484) at 2024-02-07 11:23 AM PST -LRenDO,2024-02-07T22:06:00Z,- LRenDO closed issue by PR 6141: [5827](https://github.com/hackforla/website/issues/5827#event-11738398918) at 2024-02-07 02:06 PM PST -LRenDO,2024-02-09T18:37:21Z,- LRenDO commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1936422741) at 2024-02-09 10:37 AM PST -LRenDO,2024-02-21T18:19:57Z,- LRenDO commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1957612929) at 2024-02-21 10:19 AM PST -LRenDO,2024-02-21T18:23:16Z,- LRenDO commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1957623311) at 2024-02-21 10:23 AM PST -LRenDO,2024-02-21T18:40:46Z,- LRenDO commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1957670315) at 2024-02-21 10:40 AM PST -LRenDO,2024-02-21T18:41:30Z,- LRenDO closed issue by PR 6322: [6294](https://github.com/hackforla/website/issues/6294#event-11880638568) at 2024-02-21 10:41 AM PST -LRenDO,2024-02-21T19:15:38Z,- LRenDO commented on issue: [5279](https://github.com/hackforla/website/issues/5279#issuecomment-1957734102) at 2024-02-21 11:15 AM PST -LRenDO,2024-02-21T19:19:19Z,- LRenDO commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1957739745) at 2024-02-21 11:19 AM PST -LRenDO,2024-02-21T19:25:01Z,- LRenDO commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1957748732) at 2024-02-21 11:25 AM PST -LRenDO,2024-02-21T19:38:32Z,- LRenDO commented on issue: [5988](https://github.com/hackforla/website/issues/5988#issuecomment-1957770023) at 2024-02-21 11:38 AM PST -LRenDO,2024-02-21T19:38:32Z,- LRenDO closed issue as completed: [5988](https://github.com/hackforla/website/issues/5988#event-11881262381) at 2024-02-21 11:38 AM PST -LRenDO,2024-02-21T19:43:01Z,- LRenDO commented on issue: [5998](https://github.com/hackforla/website/issues/5998#issuecomment-1957777164) at 2024-02-21 11:43 AM PST -LRenDO,2024-02-21T19:43:01Z,- LRenDO closed issue as completed: [5998](https://github.com/hackforla/website/issues/5998#event-11881308339) at 2024-02-21 11:43 AM PST -LRenDO,2024-02-21T19:50:16Z,- LRenDO commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1957787673) at 2024-02-21 11:50 AM PST -LRenDO,2024-02-21T19:59:50Z,- LRenDO commented on issue: [5180](https://github.com/hackforla/website/issues/5180#issuecomment-1957803390) at 2024-02-21 11:59 AM PST -LRenDO,2024-02-23T19:15:04Z,- LRenDO commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1961857974) at 2024-02-23 11:15 AM PST -LRenDO,2024-03-07T01:06:01Z,- LRenDO closed issue by PR 6431: [6125](https://github.com/hackforla/website/issues/6125#event-12035262650) at 2024-03-06 05:06 PM PST -LRenDO,2024-03-07T01:44:40Z,- LRenDO closed issue by PR 6417: [5843](https://github.com/hackforla/website/issues/5843#event-12035475607) at 2024-03-06 05:44 PM PST -LRenDO,2024-03-07T02:07:42Z,- LRenDO commented on pull request: [6432](https://github.com/hackforla/website/pull/6432#issuecomment-1982207316) at 2024-03-06 06:07 PM PST -LRenDO,2024-03-07T02:49:45Z,- LRenDO submitted pull request review: [6435](https://github.com/hackforla/website/pull/6435#pullrequestreview-1921340790) at 2024-03-06 06:49 PM PST -LRenDO,2024-03-07T02:50:07Z,- LRenDO closed issue by PR 6435: [6168](https://github.com/hackforla/website/issues/6168#event-12035829237) at 2024-03-06 06:50 PM PST -LRenDO,2024-03-07T04:14:36Z,- LRenDO commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1982316824) at 2024-03-06 08:14 PM PST -LRenDO,2024-03-07T04:28:15Z,- LRenDO commented on issue: [5993](https://github.com/hackforla/website/issues/5993#issuecomment-1982326150) at 2024-03-06 08:28 PM PST -LRenDO,2024-03-07T04:28:15Z,- LRenDO closed issue as completed: [5993](https://github.com/hackforla/website/issues/5993#event-12036317336) at 2024-03-06 08:28 PM PST -LRenDO,2024-03-07T04:37:39Z,- LRenDO commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1982332833) at 2024-03-06 08:37 PM PST -LRenDO,2024-03-07T04:41:23Z,- LRenDO commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1982335487) at 2024-03-06 08:41 PM PST -LRenDO,2024-03-07T04:41:23Z,- LRenDO closed issue as completed: [5989](https://github.com/hackforla/website/issues/5989#event-12036384668) at 2024-03-06 08:41 PM PST -LRenDO,2024-03-07T04:50:40Z,- LRenDO commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1982342473) at 2024-03-06 08:50 PM PST -LRenDO,2024-03-07T06:21:24Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1982529398) at 2024-03-06 10:21 PM PST -LRenDO,2024-03-07T14:47:35Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1983663733) at 2024-03-07 06:47 AM PST -LRenDO,2024-03-08T20:43:13Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1986389987) at 2024-03-08 12:43 PM PST -LRenDO,2024-03-09T16:59:02Z,- LRenDO commented on issue: [4856](https://github.com/hackforla/website/issues/4856#issuecomment-1986917238) at 2024-03-09 09:59 AM PDT -LRenDO,2024-03-09T16:59:02Z,- LRenDO closed issue as completed: [4856](https://github.com/hackforla/website/issues/4856#event-12063543832) at 2024-03-09 09:59 AM PDT -LRenDO,2024-03-20T20:56:43Z,- LRenDO closed issue by PR 6477: [6157](https://github.com/hackforla/website/issues/6157#event-12191253654) at 2024-03-20 01:56 PM PDT -LRenDO,2024-03-20T21:05:38Z,- LRenDO commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-2010637562) at 2024-03-20 02:05 PM PDT -LRenDO,2024-03-20T21:08:50Z,- LRenDO commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-2010643588) at 2024-03-20 02:08 PM PDT -LRenDO,2024-03-20T21:33:40Z,- LRenDO commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2010678427) at 2024-03-20 02:33 PM PDT -LRenDO,2024-03-20T21:36:37Z,- LRenDO commented on issue: [6296](https://github.com/hackforla/website/issues/6296#issuecomment-2010683013) at 2024-03-20 02:36 PM PDT -LRenDO,2024-03-20T21:48:13Z,- LRenDO commented on issue: [5995](https://github.com/hackforla/website/issues/5995#issuecomment-2010699759) at 2024-03-20 02:48 PM PDT -LRenDO,2024-03-20T21:48:13Z,- LRenDO closed issue as completed: [5995](https://github.com/hackforla/website/issues/5995#event-12191772070) at 2024-03-20 02:48 PM PDT -LRenDO,2024-03-20T21:51:45Z,- LRenDO commented on issue: [5997](https://github.com/hackforla/website/issues/5997#issuecomment-2010704321) at 2024-03-20 02:51 PM PDT -LRenDO,2024-03-20T21:51:45Z,- LRenDO closed issue as completed: [5997](https://github.com/hackforla/website/issues/5997#event-12191807256) at 2024-03-20 02:51 PM PDT -LRenDO,2024-03-20T22:35:26Z,- LRenDO commented on issue: [6090](https://github.com/hackforla/website/issues/6090#issuecomment-2010771835) at 2024-03-20 03:35 PM PDT -LRenDO,2024-03-20T22:35:26Z,- LRenDO closed issue as completed: [6090](https://github.com/hackforla/website/issues/6090#event-12192241774) at 2024-03-20 03:35 PM PDT -LRenDO,2024-03-20T22:38:13Z,- LRenDO commented on issue: [6093](https://github.com/hackforla/website/issues/6093#issuecomment-2010779237) at 2024-03-20 03:38 PM PDT -LRenDO,2024-03-20T22:38:13Z,- LRenDO closed issue as completed: [6093](https://github.com/hackforla/website/issues/6093#event-12192259630) at 2024-03-20 03:38 PM PDT -LRenDO,2024-03-20T22:39:40Z,- LRenDO commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-2010785195) at 2024-03-20 03:39 PM PDT -LRenDO,2024-03-20T22:39:40Z,- LRenDO closed issue as completed: [5981](https://github.com/hackforla/website/issues/5981#event-12192273340) at 2024-03-20 03:39 PM PDT -LRenDO,2024-03-20T22:49:39Z,- LRenDO commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-2010812626) at 2024-03-20 03:49 PM PDT -LRenDO,2024-03-20T23:20:41Z,- LRenDO commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-2010890912) at 2024-03-20 04:20 PM PDT -LRenDO,2024-03-20T23:27:25Z,- LRenDO commented on issue: [6097](https://github.com/hackforla/website/issues/6097#issuecomment-2010897846) at 2024-03-20 04:27 PM PDT -LRenDO,2024-03-20T23:27:25Z,- LRenDO closed issue as completed: [6097](https://github.com/hackforla/website/issues/6097#event-12192696105) at 2024-03-20 04:27 PM PDT -LRenDO,2024-03-20T23:40:00Z,- LRenDO commented on issue: [6094](https://github.com/hackforla/website/issues/6094#issuecomment-2010912784) at 2024-03-20 04:40 PM PDT -LRenDO,2024-03-20T23:40:00Z,- LRenDO closed issue as completed: [6094](https://github.com/hackforla/website/issues/6094#event-12192773801) at 2024-03-20 04:40 PM PDT -LRenDO,2024-03-20T23:41:49Z,- LRenDO commented on issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-2010914520) at 2024-03-20 04:41 PM PDT -LRenDO,2024-03-20T23:41:49Z,- LRenDO closed issue as completed: [5984](https://github.com/hackforla/website/issues/5984#event-12192794152) at 2024-03-20 04:41 PM PDT -LRenDO,2024-03-21T00:17:12Z,- LRenDO commented on issue: [4593](https://github.com/hackforla/website/issues/4593#issuecomment-2010952132) at 2024-03-20 05:17 PM PDT -LRenDO,2024-04-04T01:22:42Z,- LRenDO commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2035916627) at 2024-04-03 06:22 PM PDT -LRenDO,2024-04-04T01:32:01Z,- LRenDO commented on issue: [6490](https://github.com/hackforla/website/issues/6490#issuecomment-2035930816) at 2024-04-03 06:32 PM PDT -LRenDO,2024-04-04T01:32:01Z,- LRenDO closed issue as completed: [6490](https://github.com/hackforla/website/issues/6490#event-12350206284) at 2024-04-03 06:32 PM PDT -LRenDO,2024-04-04T01:34:06Z,- LRenDO commented on issue: [6095](https://github.com/hackforla/website/issues/6095#issuecomment-2035936126) at 2024-04-03 06:34 PM PDT -LRenDO,2024-04-04T01:34:06Z,- LRenDO closed issue as completed: [6095](https://github.com/hackforla/website/issues/6095#event-12350217691) at 2024-04-03 06:34 PM PDT -LRenDO,2024-04-04T01:35:42Z,- LRenDO commented on issue: [6089](https://github.com/hackforla/website/issues/6089#issuecomment-2035940725) at 2024-04-03 06:35 PM PDT -LRenDO,2024-04-04T01:35:43Z,- LRenDO closed issue as completed: [6089](https://github.com/hackforla/website/issues/6089#event-12350227886) at 2024-04-03 06:35 PM PDT -LRenDO,2024-04-04T01:45:17Z,- LRenDO commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2035968352) at 2024-04-03 06:45 PM PDT -LRenDO,2024-04-04T01:45:17Z,- LRenDO closed issue as completed: [6466](https://github.com/hackforla/website/issues/6466#event-12350295747) at 2024-04-03 06:45 PM PDT -LRenDO,2024-04-04T01:48:05Z,- LRenDO commented on issue: [6466](https://github.com/hackforla/website/issues/6466#issuecomment-2035976832) at 2024-04-03 06:48 PM PDT -LRenDO,2024-04-04T01:56:23Z,- LRenDO commented on issue: [6475](https://github.com/hackforla/website/issues/6475#issuecomment-2035994599) at 2024-04-03 06:56 PM PDT -LRenDO,2024-04-04T01:56:23Z,- LRenDO closed issue as completed: [6475](https://github.com/hackforla/website/issues/6475#event-12350388522) at 2024-04-03 06:56 PM PDT -LRenDO,2024-04-12T17:51:53Z,- LRenDO commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2052213287) at 2024-04-12 10:51 AM PDT -LRenDO,2024-04-12T22:40:41Z,- LRenDO commented on issue: [6488](https://github.com/hackforla/website/issues/6488#issuecomment-2052646413) at 2024-04-12 03:40 PM PDT -LRenDO,2024-04-12T22:40:41Z,- LRenDO closed issue as completed: [6488](https://github.com/hackforla/website/issues/6488#event-12454816160) at 2024-04-12 03:40 PM PDT -LRenDO,2024-04-17T07:02:25Z,- LRenDO commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2060522618) at 2024-04-17 12:02 AM PDT -LRenDO,2024-04-17T21:53:38Z,- LRenDO commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2062484483) at 2024-04-17 02:53 PM PDT -LRenDO,2024-04-17T21:54:40Z,- LRenDO commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2062487472) at 2024-04-17 02:54 PM PDT -LRenDO,2024-04-17T21:55:51Z,- LRenDO commented on pull request: [6652](https://github.com/hackforla/website/pull/6652#issuecomment-2062491402) at 2024-04-17 02:55 PM PDT -LRenDO,2024-04-17T22:02:26Z,- LRenDO commented on pull request: [6651](https://github.com/hackforla/website/pull/6651#issuecomment-2062510011) at 2024-04-17 03:02 PM PDT -LRenDO,2024-04-17T22:06:16Z,- LRenDO closed issue by PR 6626: [5289](https://github.com/hackforla/website/issues/5289#event-12514923256) at 2024-04-17 03:06 PM PDT -LRenDO,2024-04-22T18:10:53Z,- LRenDO commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2070494115) at 2024-04-22 11:10 AM PDT -LRenDO,2024-05-01T18:55:35Z,- LRenDO submitted pull request review: [6768](https://github.com/hackforla/website/pull/6768#pullrequestreview-2034241492) at 2024-05-01 11:55 AM PDT -LRenDO,2024-05-01T18:55:48Z,- LRenDO closed issue by PR 6768: [6706](https://github.com/hackforla/website/issues/6706#event-12673647175) at 2024-05-01 11:55 AM PDT -LRenDO,2024-05-01T19:04:32Z,- LRenDO closed issue by PR 6788: [5845](https://github.com/hackforla/website/issues/5845#event-12673727032) at 2024-05-01 12:04 PM PDT -LRenDO,2024-05-01T19:29:03Z,- LRenDO commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2088978589) at 2024-05-01 12:29 PM PDT -LRenDO,2024-05-01T19:29:40Z,- LRenDO closed issue by PR 6774: [6640](https://github.com/hackforla/website/issues/6640#event-12673990221) at 2024-05-01 12:29 PM PDT -LRenDO,2024-05-01T19:39:29Z,- LRenDO commented on pull request: [6796](https://github.com/hackforla/website/pull/6796#issuecomment-2088994135) at 2024-05-01 12:39 PM PDT -LRenDO,2024-05-01T19:44:04Z,- LRenDO commented on pull request: [6802](https://github.com/hackforla/website/pull/6802#issuecomment-2089000252) at 2024-05-01 12:44 PM PDT -LRenDO,2024-05-01T19:49:54Z,- LRenDO commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2089007590) at 2024-05-01 12:49 PM PDT -LRenDO,2024-05-01T20:12:56Z,- LRenDO commented on issue: [5472](https://github.com/hackforla/website/issues/5472#issuecomment-2089061844) at 2024-05-01 01:12 PM PDT -LRenDO,2024-05-01T20:16:38Z,- LRenDO commented on issue: [6758](https://github.com/hackforla/website/issues/6758#issuecomment-2089066672) at 2024-05-01 01:16 PM PDT -LRenDO,2024-05-01T20:16:38Z,- LRenDO closed issue as completed: [6758](https://github.com/hackforla/website/issues/6758#event-12674462531) at 2024-05-01 01:16 PM PDT -LRenDO,2024-05-02T00:51:09Z,- LRenDO submitted pull request review: [6802](https://github.com/hackforla/website/pull/6802#pullrequestreview-2034658032) at 2024-05-01 05:51 PM PDT -LRenDO,2024-05-02T00:51:50Z,- LRenDO closed issue by PR 6802: [6641](https://github.com/hackforla/website/issues/6641#event-12676375195) at 2024-05-01 05:51 PM PDT -LRenDO,2024-05-02T17:31:47Z,- LRenDO commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2091128840) at 2024-05-02 10:31 AM PDT -LRenDO,2024-05-03T14:43:45Z,- LRenDO submitted pull request review: [6801](https://github.com/hackforla/website/pull/6801#pullrequestreview-2038312202) at 2024-05-03 07:43 AM PDT -LRenDO,2024-05-03T14:45:01Z,- LRenDO closed issue by PR 6801: [6639](https://github.com/hackforla/website/issues/6639#event-12697399323) at 2024-05-03 07:45 AM PDT -LRenDO,2024-05-04T17:42:04Z,- LRenDO submitted pull request review: [6818](https://github.com/hackforla/website/pull/6818#pullrequestreview-2039521576) at 2024-05-04 10:42 AM PDT -LRenDO,2024-05-04T17:42:22Z,- LRenDO closed issue by PR 6818: [6638](https://github.com/hackforla/website/issues/6638#event-12704937435) at 2024-05-04 10:42 AM PDT -LRenDO,2024-05-15T17:12:53Z,- LRenDO commented on issue: [6519](https://github.com/hackforla/website/issues/6519#issuecomment-2113057856) at 2024-05-15 10:12 AM PDT -LRenDO,2024-05-15T17:33:48Z,- LRenDO commented on issue: [6583](https://github.com/hackforla/website/issues/6583#issuecomment-2113092501) at 2024-05-15 10:33 AM PDT -LRenDO,2024-05-15T17:33:48Z,- LRenDO closed issue as completed: [6583](https://github.com/hackforla/website/issues/6583#event-12821315398) at 2024-05-15 10:33 AM PDT -LRenDO,2024-05-15T17:49:11Z,- LRenDO commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2113116859) at 2024-05-15 10:49 AM PDT -LRenDO,2024-05-15T17:52:55Z,- LRenDO closed issue by PR 6851: [6761](https://github.com/hackforla/website/issues/6761#event-12821507923) at 2024-05-15 10:52 AM PDT -LRenDO,2024-05-15T17:56:00Z,- LRenDO commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2113127545) at 2024-05-15 10:56 AM PDT -LRenDO,2024-05-15T18:00:30Z,- LRenDO commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2113134876) at 2024-05-15 11:00 AM PDT -LRenDO,2024-05-29T17:25:55Z,- LRenDO commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2137919294) at 2024-05-29 10:25 AM PDT -LRenDO,2024-05-29T17:28:03Z,- LRenDO commented on issue: [6592](https://github.com/hackforla/website/issues/6592#issuecomment-2137922533) at 2024-05-29 10:28 AM PDT -LRenDO,2024-05-29T17:28:03Z,- LRenDO closed issue as completed: [6592](https://github.com/hackforla/website/issues/6592#event-12975114765) at 2024-05-29 10:28 AM PDT -LRenDO,2024-05-29T17:30:31Z,- LRenDO commented on issue: [6573](https://github.com/hackforla/website/issues/6573#issuecomment-2137926448) at 2024-05-29 10:30 AM PDT -LRenDO,2024-05-29T17:30:31Z,- LRenDO closed issue as completed: [6573](https://github.com/hackforla/website/issues/6573#event-12975141864) at 2024-05-29 10:30 AM PDT -LRenDO,2024-05-29T17:32:28Z,- LRenDO closed issue as completed: [6575](https://github.com/hackforla/website/issues/6575#event-12975163112) at 2024-05-29 10:32 AM PDT -LRenDO,2024-05-29T17:33:07Z,- LRenDO reopened issue: [6575](https://github.com/hackforla/website/issues/6575#event-12975163112) at 2024-05-29 10:33 AM PDT -LRenDO,2024-05-29T17:34:46Z,- LRenDO commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2137933420) at 2024-05-29 10:34 AM PDT -LRenDO,2024-05-29T17:34:46Z,- LRenDO closed issue as completed: [6575](https://github.com/hackforla/website/issues/6575#event-12975189573) at 2024-05-29 10:34 AM PDT -LRenDO,2024-05-29T17:37:52Z,- LRenDO commented on issue: [6576](https://github.com/hackforla/website/issues/6576#issuecomment-2137938296) at 2024-05-29 10:37 AM PDT -LRenDO,2024-05-29T17:37:52Z,- LRenDO closed issue as completed: [6576](https://github.com/hackforla/website/issues/6576#event-12975224316) at 2024-05-29 10:37 AM PDT -LRenDO,2024-05-29T17:39:11Z,- LRenDO commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2137940401) at 2024-05-29 10:39 AM PDT -LRenDO,2024-05-29T17:39:11Z,- LRenDO closed issue as completed: [6577](https://github.com/hackforla/website/issues/6577#event-12975237241) at 2024-05-29 10:39 AM PDT -LRenDO,2024-05-29T17:46:34Z,- LRenDO closed issue by PR 6887: [6800](https://github.com/hackforla/website/issues/6800#event-12975310713) at 2024-05-29 10:46 AM PDT -LRenDO,2024-05-29T17:49:43Z,- LRenDO commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2137957183) at 2024-05-29 10:49 AM PDT -LRenDO,2024-05-29T17:51:37Z,- LRenDO commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2137960260) at 2024-05-29 10:51 AM PDT -LRenDO,2024-05-29T17:53:11Z,- LRenDO commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2137962799) at 2024-05-29 10:53 AM PDT -LRenDO,2024-05-29T17:58:29Z,- LRenDO commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2137971634) at 2024-05-29 10:58 AM PDT -LRenDO,2024-05-29T17:58:53Z,- LRenDO commented on pull request: [6906](https://github.com/hackforla/website/pull/6906#issuecomment-2137972292) at 2024-05-29 10:58 AM PDT -LRenDO,2024-05-30T16:20:41Z,- LRenDO commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2140138940) at 2024-05-30 09:20 AM PDT -LRenDO,2024-06-13T05:50:39Z,- LRenDO commented on issue: [6757](https://github.com/hackforla/website/issues/6757#issuecomment-2164475383) at 2024-06-12 10:50 PM PDT -LRenDO,2024-06-13T05:50:39Z,- LRenDO closed issue as completed: [6757](https://github.com/hackforla/website/issues/6757#event-13140690485) at 2024-06-12 10:50 PM PDT -LRenDO,2024-06-13T06:35:51Z,- LRenDO commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2164621702) at 2024-06-12 11:35 PM PDT -LRenDO,2024-06-14T19:34:45Z,- LRenDO commented on issue: [6844](https://github.com/hackforla/website/issues/6844#issuecomment-2168642781) at 2024-06-14 12:34 PM PDT -LRenDO,2024-06-26T23:20:10Z,- LRenDO submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2143124189) at 2024-06-26 04:20 PM PDT -LRenDO,2024-06-26T23:33:40Z,- LRenDO submitted pull request review: [7069](https://github.com/hackforla/website/pull/7069#pullrequestreview-2143139089) at 2024-06-26 04:33 PM PDT -LRenDO,2024-06-26T23:33:53Z,- LRenDO closed issue by PR 7069: [6941](https://github.com/hackforla/website/issues/6941#event-13305297780) at 2024-06-26 04:33 PM PDT -LRenDO,2024-06-26T23:40:25Z,- LRenDO commented on pull request: [7057](https://github.com/hackforla/website/pull/7057#issuecomment-2192793644) at 2024-06-26 04:40 PM PDT -LRenDO,2024-06-26T23:43:45Z,- LRenDO commented on issue: [7050](https://github.com/hackforla/website/issues/7050#issuecomment-2192796144) at 2024-06-26 04:43 PM PDT -LRenDO,2024-06-26T23:58:05Z,- LRenDO commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2192811102) at 2024-06-26 04:58 PM PDT -LRenDO,2024-06-27T16:29:02Z,- LRenDO submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2145919795) at 2024-06-27 09:29 AM PDT -LRenDO,2024-06-27T16:36:09Z,- LRenDO closed issue by PR 7065: [7046](https://github.com/hackforla/website/issues/7046#event-13320343166) at 2024-06-27 09:36 AM PDT -LRenDO,2024-07-10T18:01:38Z,- LRenDO commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2221131049) at 2024-07-10 11:01 AM PDT -LRenDO,2024-07-24T16:23:46Z,- LRenDO commented on pull request: [7130](https://github.com/hackforla/website/pull/7130#issuecomment-2248434478) at 2024-07-24 09:23 AM PDT -LRenDO,2024-08-15T14:57:26Z,- LRenDO closed issue by PR 7255: [7137](https://github.com/hackforla/website/issues/7137#event-13897226844) at 2024-08-15 07:57 AM PDT -LRenDO,2024-08-15T14:58:25Z,- LRenDO closed issue by PR 7257: [7178](https://github.com/hackforla/website/issues/7178#event-13897244931) at 2024-08-15 07:58 AM PDT -LRenDO,2024-08-15T15:00:49Z,- LRenDO closed issue by PR 7258: [7249](https://github.com/hackforla/website/issues/7249#event-13897282710) at 2024-08-15 08:00 AM PDT -LRenDO,2024-08-15T15:03:27Z,- LRenDO closed issue by PR 7263: [7184](https://github.com/hackforla/website/issues/7184#event-13897318089) at 2024-08-15 08:03 AM PDT -LRenDO,2024-08-15T15:07:31Z,- LRenDO submitted pull request review: [7269](https://github.com/hackforla/website/pull/7269#pullrequestreview-2240609245) at 2024-08-15 08:07 AM PDT -LRenDO,2024-08-15T15:07:48Z,- LRenDO closed issue by PR 7269: [7186](https://github.com/hackforla/website/issues/7186#event-13897371046) at 2024-08-15 08:07 AM PDT -LRenDO,2024-08-15T15:09:59Z,- LRenDO closed issue by PR 7271: [7188](https://github.com/hackforla/website/issues/7188#event-13897396994) at 2024-08-15 08:09 AM PDT -LRenDO,2024-08-15T15:12:13Z,- LRenDO commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2291495525) at 2024-08-15 08:12 AM PDT -LRenDO,2024-08-15T15:17:15Z,- LRenDO submitted pull request review: [7285](https://github.com/hackforla/website/pull/7285#pullrequestreview-2240628618) at 2024-08-15 08:17 AM PDT -LRenDO,2024-08-15T15:18:24Z,- LRenDO closed issue by PR 7285: [7254](https://github.com/hackforla/website/issues/7254#event-13897494079) at 2024-08-15 08:18 AM PDT -LRenDO,2024-08-15T23:08:38Z,- LRenDO commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2292432745) at 2024-08-15 04:08 PM PDT -LRenDO,2024-08-22T06:05:39Z,- LRenDO commented on pull request: [7307](https://github.com/hackforla/website/pull/7307#issuecomment-2303854294) at 2024-08-21 11:05 PM PDT -LRenDO,2024-08-22T06:09:07Z,- LRenDO closed issue by PR 7320: [7185](https://github.com/hackforla/website/issues/7185#event-13971783358) at 2024-08-21 11:09 PM PDT -LRenDO,2024-08-22T06:14:29Z,- LRenDO closed issue by PR 7312: [7245](https://github.com/hackforla/website/issues/7245#event-13971829408) at 2024-08-21 11:14 PM PDT -LRenDO,2024-08-29T15:18:19Z,- LRenDO commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2318067967) at 2024-08-29 08:18 AM PDT -LRenDO,2024-08-29T15:18:20Z,- LRenDO closed issue as completed: [6590](https://github.com/hackforla/website/issues/6590#event-14064696188) at 2024-08-29 08:18 AM PDT -LRenDO,2024-08-29T15:21:07Z,- LRenDO closed issue as completed: [7145](https://github.com/hackforla/website/issues/7145#event-14064928412) at 2024-08-29 08:21 AM PDT -LRenDO,2024-08-29T15:22:21Z,- LRenDO commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2318100506) at 2024-08-29 08:22 AM PDT -LRenDO,2024-09-05T14:20:23Z,- LRenDO commented on issue: [7252](https://github.com/hackforla/website/issues/7252#issuecomment-2331815167) at 2024-09-05 07:20 AM PDT -LRenDO,2024-09-05T14:30:41Z,- LRenDO commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2331844438) at 2024-09-05 07:30 AM PDT -LRenDO,2024-09-05T14:30:41Z,- LRenDO closed issue as completed: [7268](https://github.com/hackforla/website/issues/7268#event-14148442581) at 2024-09-05 07:30 AM PDT -LRenDO,2024-09-11T14:58:04Z,- LRenDO commented on issue: [7162](https://github.com/hackforla/website/issues/7162#issuecomment-2343920516) at 2024-09-11 07:58 AM PDT -LRenDO,2024-09-11T14:58:05Z,- LRenDO closed issue as completed: [7162](https://github.com/hackforla/website/issues/7162#event-14217879014) at 2024-09-11 07:58 AM PDT -LRenDO,2024-09-11T15:04:21Z,- LRenDO commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2343936304) at 2024-09-11 08:04 AM PDT -LRenDO,2024-09-11T15:04:21Z,- LRenDO closed issue as completed: [7143](https://github.com/hackforla/website/issues/7143#event-14217984767) at 2024-09-11 08:04 AM PDT -LRenDO,2024-09-11T15:06:22Z,- LRenDO commented on issue: [7146](https://github.com/hackforla/website/issues/7146#issuecomment-2343941215) at 2024-09-11 08:06 AM PDT -LRenDO,2024-09-11T15:06:22Z,- LRenDO closed issue as completed: [7146](https://github.com/hackforla/website/issues/7146#event-14218018557) at 2024-09-11 08:06 AM PDT -LRenDO,2024-09-18T15:06:15Z,- LRenDO commented on issue: [7386](https://github.com/hackforla/website/issues/7386#issuecomment-2358733038) at 2024-09-18 08:06 AM PDT -LRenDO,2024-09-18T15:06:16Z,- LRenDO closed issue as completed: [7386](https://github.com/hackforla/website/issues/7386#event-14309404298) at 2024-09-18 08:06 AM PDT -LRenDO,2024-09-25T13:49:05Z,- LRenDO closed issue by PR 7511: [7488](https://github.com/hackforla/website/issues/7488#event-14399625346) at 2024-09-25 06:49 AM PDT -LRenDO,2024-10-02T14:58:51Z,- LRenDO commented on pull request: [7557](https://github.com/hackforla/website/pull/7557#issuecomment-2388882842) at 2024-10-02 07:58 AM PDT -LRenDO,2024-10-02T14:59:27Z,- LRenDO closed issue by PR 7557: [7252](https://github.com/hackforla/website/issues/7252#event-14490276837) at 2024-10-02 07:59 AM PDT -LRenDO,2024-10-17T14:50:19Z,- LRenDO commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2419766445) at 2024-10-17 07:50 AM PDT -LRenDO,2024-10-24T05:26:43Z,- LRenDO closed issue by PR 7628: [7489](https://github.com/hackforla/website/issues/7489#event-14841821733) at 2024-10-23 10:26 PM PDT -LRenDO,2024-10-30T15:25:02Z,- LRenDO commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2447539377) at 2024-10-30 08:25 AM PDT -LRenDO,2024-10-30T15:25:03Z,- LRenDO closed issue as completed: [7455](https://github.com/hackforla/website/issues/7455#event-15010188909) at 2024-10-30 08:25 AM PDT -LRenDO,2024-10-30T15:28:55Z,- LRenDO commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2447553070) at 2024-10-30 08:28 AM PDT -LRenDO,2024-11-06T16:35:21Z,- LRenDO closed issue by PR 7700: [7619](https://github.com/hackforla/website/issues/7619#event-15154508794) at 2024-11-06 08:35 AM PST -LRenDO,2024-11-06T16:44:36Z,- LRenDO closed issue by PR 7685: [7585](https://github.com/hackforla/website/issues/7585#event-15154640106) at 2024-11-06 08:44 AM PST -LRenDO,2025-02-06T07:35:26Z,- LRenDO submitted pull request review: [7874](https://github.com/hackforla/website/pull/7874#pullrequestreview-2597874250) at 2025-02-05 11:35 PM PST -LRenDO,2025-02-06T07:36:12Z,- LRenDO closed issue by PR 7874: [7480](https://github.com/hackforla/website/issues/7480#event-16205596703) at 2025-02-05 11:36 PM PST -LRenDO,2025-02-06T07:42:50Z,- LRenDO commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2639056646) at 2025-02-05 11:42 PM PST -LRenDO,2025-02-13T05:49:51Z,- LRenDO submitted pull request review: [7899](https://github.com/hackforla/website/pull/7899#pullrequestreview-2613913130) at 2025-02-12 09:49 PM PST -LRenDO,2025-02-13T05:50:26Z,- LRenDO closed issue by PR 7899: [7774](https://github.com/hackforla/website/issues/7774#event-16290916800) at 2025-02-12 09:50 PM PST -LRenDO,2025-02-13T06:00:30Z,- LRenDO commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2655567456) at 2025-02-12 10:00 PM PST -LRenDO,2025-02-13T06:00:40Z,- LRenDO closed issue by PR 7901: [7878](https://github.com/hackforla/website/issues/7878#event-16291002776) at 2025-02-12 10:00 PM PST -LRenDO,2025-02-13T06:22:44Z,- LRenDO commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2655643250) at 2025-02-12 10:22 PM PST -LRenDO,2025-02-20T07:49:20Z,- LRenDO closed issue by PR 7906: [7766](https://github.com/hackforla/website/issues/7766#event-16377473142) at 2025-02-19 11:49 PM PST -LRenDO,2025-02-20T07:52:03Z,- LRenDO closed issue by PR 7928: [7476](https://github.com/hackforla/website/issues/7476#event-16377519156) at 2025-02-19 11:52 PM PST -LRenDO,2025-03-05T16:06:52Z,- LRenDO commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2701396655) at 2025-03-05 08:06 AM PST -LRenDO,2025-03-05T16:16:14Z,- LRenDO closed issue by PR 7948: [7606](https://github.com/hackforla/website/issues/7606#event-16602508314) at 2025-03-05 08:16 AM PST -LRenDO,2025-03-19T15:59:18Z,- LRenDO closed issue by PR 7992: [7439](https://github.com/hackforla/website/issues/7439#event-16870343726) at 2025-03-19 08:59 AM PDT -LRenDO,2025-04-03T06:26:37Z,- LRenDO submitted pull request review: [8021](https://github.com/hackforla/website/pull/8021#pullrequestreview-2738660141) at 2025-04-02 11:26 PM PDT -LRenDO,2025-04-03T06:27:05Z,- LRenDO closed issue by PR 8021: [7469](https://github.com/hackforla/website/issues/7469#event-17106926462) at 2025-04-02 11:27 PM PDT -LRenDO,2025-04-03T06:28:36Z,- LRenDO closed issue by PR 8022: [7472](https://github.com/hackforla/website/issues/7472#event-17106941440) at 2025-04-02 11:28 PM PDT -LRenDO,2025-04-03T06:32:44Z,- LRenDO commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2774628174) at 2025-04-02 11:32 PM PDT -LRenDO,2025-04-16T14:51:11Z,- LRenDO closed issue by PR 8062: [7939](https://github.com/hackforla/website/issues/7939#event-17290797221) at 2025-04-16 07:51 AM PDT -LRenDO,2025-05-01T14:11:24Z,- LRenDO commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2844918524) at 2025-05-01 07:11 AM PDT -LRenDO,2025-05-07T16:20:00Z,- LRenDO closed issue by PR 8099: [7582](https://github.com/hackforla/website/issues/7582#event-17559687790) at 2025-05-07 09:20 AM PDT -LRenDO,2025-05-07T16:21:39Z,- LRenDO closed issue by PR 8104: [7750](https://github.com/hackforla/website/issues/7750#event-17559708957) at 2025-05-07 09:21 AM PDT -LRenDO,2025-05-07T16:23:07Z,- LRenDO closed issue by PR 8114: [7737](https://github.com/hackforla/website/issues/7737#event-17559727986) at 2025-05-07 09:23 AM PDT -LRenDO,2025-05-21T16:14:00Z,- LRenDO closed issue by PR 8124: [7924](https://github.com/hackforla/website/issues/7924#event-17757060819) at 2025-05-21 09:14 AM PDT -LRenDO,2025-06-18T14:57:11Z,- LRenDO commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2984559696) at 2025-06-18 07:57 AM PDT -LRenDO,2025-07-17T03:09:49Z,- LRenDO commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3082297085) at 2025-07-16 08:09 PM PDT -LRenDO,2025-07-17T03:09:50Z,- LRenDO closed issue as completed: [7610](https://github.com/hackforla/website/issues/7610#event-18671087105) at 2025-07-16 08:09 PM PDT -LRenDO,2025-07-17T03:15:10Z,- LRenDO submitted pull request review: [8246](https://github.com/hackforla/website/pull/8246#pullrequestreview-3027558148) at 2025-07-16 08:15 PM PDT -LRenDO,2025-07-17T03:15:33Z,- LRenDO closed issue by PR 8246: [7239](https://github.com/hackforla/website/issues/7239#event-18671131965) at 2025-07-16 08:15 PM PDT -luiderek,3682,SKILLS ISSUE -luiderek,2022-11-01T02:11:14Z,- luiderek opened issue: [3682](https://github.com/hackforla/website/issues/3682) at 2022-10-31 07:11 PM PDT -luiderek,2022-11-01T16:36:16Z,- luiderek assigned to issue: [2856](https://github.com/hackforla/website/issues/2856#issuecomment-1048432526) at 2022-11-01 09:36 AM PDT -luiderek,2022-11-01T16:41:18Z,- luiderek commented on issue: [2856](https://github.com/hackforla/website/issues/2856#issuecomment-1298813223) at 2022-11-01 09:41 AM PDT -luiderek,2022-11-01T16:42:43Z,- luiderek commented on issue: [3682](https://github.com/hackforla/website/issues/3682#issuecomment-1298814967) at 2022-11-01 09:42 AM PDT -luiderek,2022-11-01T17:03:33Z,- luiderek opened pull request: [3687](https://github.com/hackforla/website/pull/3687) at 2022-11-01 10:03 AM PDT -luiderek,2022-11-01T18:03:41Z,- luiderek assigned to issue: [3682](https://github.com/hackforla/website/issues/3682#issuecomment-1298814967) at 2022-11-01 11:03 AM PDT -luiderek,2022-11-02T02:11:38Z,- luiderek commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299463682) at 2022-11-01 07:11 PM PDT -luiderek,2022-11-02T04:46:54Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1299562346) at 2022-11-01 09:46 PM PDT -luiderek,2022-11-02T04:47:57Z,- luiderek pull request closed w/o merging: [3687](https://github.com/hackforla/website/pull/3687#event-7719393443) at 2022-11-01 09:47 PM PDT -luiderek,2022-11-02T04:52:06Z,- luiderek commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299567417) at 2022-11-01 09:52 PM PDT -luiderek,2022-11-02T05:05:37Z,- luiderek opened pull request: [3689](https://github.com/hackforla/website/pull/3689) at 2022-11-01 10:05 PM PDT -luiderek,2022-11-02T05:06:30Z,- luiderek commented on pull request: [3687](https://github.com/hackforla/website/pull/3687#issuecomment-1299577389) at 2022-11-01 10:06 PM PDT -luiderek,2022-11-02T20:11:08Z,- luiderek commented on pull request: [3689](https://github.com/hackforla/website/pull/3689#issuecomment-1301172839) at 2022-11-02 01:11 PM PDT -luiderek,2022-11-03T01:42:00Z,- luiderek assigned to issue: [3592](https://github.com/hackforla/website/issues/3592) at 2022-11-02 06:42 PM PDT -luiderek,2022-11-03T01:44:32Z,- luiderek commented on issue: [3592](https://github.com/hackforla/website/issues/3592#issuecomment-1301554677) at 2022-11-02 06:44 PM PDT -luiderek,2022-11-03T02:23:52Z,- luiderek pull request merged: [3689](https://github.com/hackforla/website/pull/3689#event-7728460560) at 2022-11-02 07:23 PM PDT -luiderek,2022-11-03T04:02:36Z,- luiderek opened pull request: [3692](https://github.com/hackforla/website/pull/3692) at 2022-11-02 09:02 PM PDT -luiderek,2022-11-04T22:56:55Z,- luiderek pull request merged: [3692](https://github.com/hackforla/website/pull/3692#event-7744393011) at 2022-11-04 03:56 PM PDT -luiderek,2022-11-05T05:34:49Z,- luiderek commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304413283) at 2022-11-04 09:34 PM PST -luiderek,2022-11-05T05:37:51Z,- luiderek commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304413651) at 2022-11-04 09:37 PM PST -luiderek,2022-11-05T05:39:39Z,- luiderek submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1169329550) at 2022-11-04 09:39 PM PST -luiderek,2022-11-05T15:53:35Z,- luiderek commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1304571945) at 2022-11-05 07:53 AM PST -luiderek,2022-11-06T02:22:33Z,- luiderek assigned to issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1299562346) at 2022-11-05 06:22 PM PST -luiderek,2022-11-06T02:26:08Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1304699166) at 2022-11-05 06:26 PM PST -luiderek,2022-11-08T20:07:18Z,- luiderek commented on pull request: [3700](https://github.com/hackforla/website/pull/3700#issuecomment-1307767408) at 2022-11-08 12:07 PM PST -luiderek,2022-11-08T20:10:20Z,- luiderek submitted pull request review: [3700](https://github.com/hackforla/website/pull/3700#pullrequestreview-1172772543) at 2022-11-08 12:10 PM PST -luiderek,2022-11-09T03:39:23Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1308163076) at 2022-11-08 07:39 PM PST -luiderek,2022-11-09T03:41:09Z,- luiderek commented on issue: [3682](https://github.com/hackforla/website/issues/3682#issuecomment-1308164086) at 2022-11-08 07:41 PM PST -luiderek,2022-11-10T20:14:15Z,- luiderek closed issue as completed: [3682](https://github.com/hackforla/website/issues/3682#event-7786730866) at 2022-11-10 12:14 PM PST -luiderek,2022-11-11T04:24:57Z,- luiderek commented on issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1311214897) at 2022-11-10 08:24 PM PST -luiderek,2022-11-11T04:25:28Z,- luiderek unassigned from issue: [2174](https://github.com/hackforla/website/issues/2174#issuecomment-1311214897) at 2022-11-10 08:25 PM PST -luisitocanlas,6249,SKILLS ISSUE -luisitocanlas,2024-02-06T03:33:53Z,- luisitocanlas opened issue: [6249](https://github.com/hackforla/website/issues/6249) at 2024-02-05 07:33 PM PST -luisitocanlas,2024-02-06T03:33:53Z,- luisitocanlas assigned to issue: [6249](https://github.com/hackforla/website/issues/6249) at 2024-02-05 07:33 PM PST -luisitocanlas,2024-02-13T19:33:55Z,- luisitocanlas assigned to issue: [5148](https://github.com/hackforla/website/issues/5148#issuecomment-1666784833) at 2024-02-13 11:33 AM PST -luisitocanlas,2024-02-13T19:47:50Z,- luisitocanlas commented on issue: [5148](https://github.com/hackforla/website/issues/5148#issuecomment-1942294493) at 2024-02-13 11:47 AM PST -luisitocanlas,2024-02-14T02:13:52Z,- luisitocanlas commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1942982472) at 2024-02-13 06:13 PM PST -luisitocanlas,2024-02-14T02:18:41Z,- luisitocanlas commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1942985644) at 2024-02-13 06:18 PM PST -luisitocanlas,2024-02-16T06:20:26Z,- luisitocanlas opened pull request: [6302](https://github.com/hackforla/website/pull/6302) at 2024-02-15 10:20 PM PST -luisitocanlas,2024-02-19T04:12:33Z,- luisitocanlas pull request merged: [6302](https://github.com/hackforla/website/pull/6302#event-11843895146) at 2024-02-18 08:12 PM PST -luisitocanlas,2024-02-20T18:59:02Z,- luisitocanlas assigned to issue: [6317](https://github.com/hackforla/website/issues/6317#issuecomment-1951386115) at 2024-02-20 10:59 AM PST -luisitocanlas,2024-02-20T19:00:56Z,- luisitocanlas commented on issue: [6317](https://github.com/hackforla/website/issues/6317#issuecomment-1954875358) at 2024-02-20 11:00 AM PST -luisitocanlas,2024-02-20T19:03:24Z,- luisitocanlas commented on issue: [6249](https://github.com/hackforla/website/issues/6249#issuecomment-1954879037) at 2024-02-20 11:03 AM PST -luisitocanlas,2024-02-20T19:28:39Z,- luisitocanlas opened pull request: [6325](https://github.com/hackforla/website/pull/6325) at 2024-02-20 11:28 AM PST -luisitocanlas,2024-02-21T04:46:55Z,- luisitocanlas pull request merged: [6325](https://github.com/hackforla/website/pull/6325#event-11870745560) at 2024-02-20 08:46 PM PST -luisitocanlas,2024-02-21T19:13:32Z,- luisitocanlas closed issue as completed: [6249](https://github.com/hackforla/website/issues/6249#event-11880996224) at 2024-02-21 11:13 AM PST -luisitocanlas,2024-02-21T19:20:24Z,- luisitocanlas assigned to issue: [6312](https://github.com/hackforla/website/issues/6312) at 2024-02-21 11:20 AM PST -luisitocanlas,2024-02-21T19:21:23Z,- luisitocanlas commented on issue: [6312](https://github.com/hackforla/website/issues/6312#issuecomment-1957743115) at 2024-02-21 11:21 AM PST -luisitocanlas,2024-02-21T19:40:06Z,- luisitocanlas opened pull request: [6351](https://github.com/hackforla/website/pull/6351) at 2024-02-21 11:40 AM PST -luisitocanlas,2024-02-23T05:40:26Z,- luisitocanlas pull request merged: [6351](https://github.com/hackforla/website/pull/6351#event-11899562338) at 2024-02-22 09:40 PM PST -luisitocanlas,2024-02-23T19:21:18Z,- luisitocanlas commented on pull request: [6365](https://github.com/hackforla/website/pull/6365#issuecomment-1961865766) at 2024-02-23 11:21 AM PST -luisitocanlas,2024-02-23T19:55:02Z,- luisitocanlas submitted pull request review: [6365](https://github.com/hackforla/website/pull/6365#pullrequestreview-1898836023) at 2024-02-23 11:55 AM PST -luisitocanlas,2024-02-27T19:53:56Z,- luisitocanlas commented on pull request: [6383](https://github.com/hackforla/website/pull/6383#issuecomment-1967487138) at 2024-02-27 11:53 AM PST -luisitocanlas,2024-02-27T20:00:32Z,- luisitocanlas submitted pull request review: [6383](https://github.com/hackforla/website/pull/6383#pullrequestreview-1904697688) at 2024-02-27 12:00 PM PST -luisitocanlas,2024-02-27T20:05:32Z,- luisitocanlas assigned to issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1965600288) at 2024-02-27 12:05 PM PST -luisitocanlas,2024-02-27T20:06:45Z,- luisitocanlas commented on issue: [6323](https://github.com/hackforla/website/issues/6323#issuecomment-1967506026) at 2024-02-27 12:06 PM PST -luisitocanlas,2024-02-28T18:18:02Z,- luisitocanlas opened pull request: [6388](https://github.com/hackforla/website/pull/6388) at 2024-02-28 10:18 AM PST -luisitocanlas,2024-02-28T18:24:39Z,- luisitocanlas commented on pull request: [6387](https://github.com/hackforla/website/pull/6387#issuecomment-1969583662) at 2024-02-28 10:24 AM PST -luisitocanlas,2024-02-28T18:39:11Z,- luisitocanlas submitted pull request review: [6387](https://github.com/hackforla/website/pull/6387#pullrequestreview-1907000528) at 2024-02-28 10:39 AM PST -luisitocanlas,2024-03-01T23:05:02Z,- luisitocanlas commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1974050184) at 2024-03-01 03:05 PM PST -luisitocanlas,2024-03-01T23:05:12Z,- luisitocanlas commented on pull request: [6406](https://github.com/hackforla/website/pull/6406#issuecomment-1974050325) at 2024-03-01 03:05 PM PST -luisitocanlas,2024-03-01T23:17:20Z,- luisitocanlas submitted pull request review: [6406](https://github.com/hackforla/website/pull/6406#pullrequestreview-1912231164) at 2024-03-01 03:17 PM PST -luisitocanlas,2024-03-01T23:49:51Z,- luisitocanlas submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1912279169) at 2024-03-01 03:49 PM PST -luisitocanlas,2024-03-02T19:36:35Z,- luisitocanlas submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1912712277) at 2024-03-02 11:36 AM PST -luisitocanlas,2024-03-04T00:23:56Z,- luisitocanlas commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1975450342) at 2024-03-03 04:23 PM PST -luisitocanlas,2024-03-04T01:39:57Z,- luisitocanlas pull request merged: [6388](https://github.com/hackforla/website/pull/6388#event-11992204394) at 2024-03-03 05:39 PM PST -luisitocanlas,2024-03-08T19:28:50Z,- luisitocanlas commented on pull request: [6440](https://github.com/hackforla/website/pull/6440#issuecomment-1986282516) at 2024-03-08 11:28 AM PST -luisitocanlas,2024-03-08T19:31:32Z,- luisitocanlas submitted pull request review: [6440](https://github.com/hackforla/website/pull/6440#pullrequestreview-1925701433) at 2024-03-08 11:31 AM PST -luisitocanlas,2024-03-08T19:36:15Z,- luisitocanlas assigned to issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1963027201) at 2024-03-08 11:36 AM PST -luisitocanlas,2024-03-08T19:37:10Z,- luisitocanlas commented on issue: [4648](https://github.com/hackforla/website/issues/4648#issuecomment-1986300411) at 2024-03-08 11:37 AM PST -luisitocanlas,2024-03-08T22:05:57Z,- luisitocanlas commented on pull request: [6441](https://github.com/hackforla/website/pull/6441#issuecomment-1986486948) at 2024-03-08 02:05 PM PST -luisitocanlas,2024-03-08T22:09:58Z,- luisitocanlas submitted pull request review: [6441](https://github.com/hackforla/website/pull/6441#pullrequestreview-1925934785) at 2024-03-08 02:09 PM PST -luisitocanlas,2024-03-15T23:23:31Z,- luisitocanlas opened pull request: [6467](https://github.com/hackforla/website/pull/6467) at 2024-03-15 04:23 PM PDT -luisitocanlas,2024-03-25T23:40:24Z,- luisitocanlas commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2019110630) at 2024-03-25 04:40 PM PDT -luisitocanlas,2024-03-26T00:48:33Z,- luisitocanlas commented on pull request: [6467](https://github.com/hackforla/website/pull/6467#issuecomment-2019191470) at 2024-03-25 05:48 PM PDT -luisitocanlas,2024-03-31T03:08:30Z,- luisitocanlas pull request merged: [6467](https://github.com/hackforla/website/pull/6467#event-12302223441) at 2024-03-30 08:08 PM PDT -luisitocanlas,2024-04-29T21:30:10Z,- luisitocanlas commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2083710586) at 2024-04-29 02:30 PM PDT -luisitocanlas,2024-04-29T21:35:20Z,- luisitocanlas submitted pull request review: [6767](https://github.com/hackforla/website/pull/6767#pullrequestreview-2029692235) at 2024-04-29 02:35 PM PDT -luisitocanlas,2024-04-29T21:40:48Z,- luisitocanlas assigned to issue: [6633](https://github.com/hackforla/website/issues/6633#issuecomment-2052703504) at 2024-04-29 02:40 PM PDT -luisitocanlas,2024-04-29T21:41:58Z,- luisitocanlas commented on issue: [6633](https://github.com/hackforla/website/issues/6633#issuecomment-2083732400) at 2024-04-29 02:41 PM PDT -luisitocanlas,2024-04-29T22:00:24Z,- luisitocanlas opened pull request: [6782](https://github.com/hackforla/website/pull/6782) at 2024-04-29 03:00 PM PDT -luisitocanlas,2024-04-30T18:43:15Z,- luisitocanlas pull request merged: [6782](https://github.com/hackforla/website/pull/6782#event-12662431854) at 2024-04-30 11:43 AM PDT -luisitocanlas,2024-06-28T23:19:01Z,- luisitocanlas opened pull request: [7081](https://github.com/hackforla/website/pull/7081) at 2024-06-28 04:19 PM PDT -luisitocanlas,2024-07-13T18:25:49Z,- luisitocanlas commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2227039648) at 2024-07-13 11:25 AM PDT -luisitocanlas,2024-07-21T23:05:42Z,- luisitocanlas commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2241805904) at 2024-07-21 04:05 PM PDT -luisitocanlas,2024-08-18T20:26:49Z,- luisitocanlas pull request closed w/o merging: [7081](https://github.com/hackforla/website/pull/7081#event-13922869969) at 2024-08-18 01:26 PM PDT -LukeLowrey2,4994,SKILLS ISSUE -LukeLowrey2,2023-07-18T02:21:09Z,- LukeLowrey2 opened issue: [4992](https://github.com/hackforla/website/issues/4992) at 2023-07-17 07:21 PM PDT -LukeLowrey2,2023-07-18T02:27:58Z,- LukeLowrey2 opened issue: [4994](https://github.com/hackforla/website/issues/4994) at 2023-07-17 07:27 PM PDT -LukeLowrey2,2023-07-18T03:16:37Z,- LukeLowrey2 assigned to issue: [4994](https://github.com/hackforla/website/issues/4994) at 2023-07-17 08:16 PM PDT -LukeLowrey2,2023-07-29T19:29:11Z,- LukeLowrey2 assigned to issue: [5030](https://github.com/hackforla/website/issues/5030) at 2023-07-29 12:29 PM PDT -LukeLowrey2,2023-07-29T20:05:04Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1656865769) at 2023-07-29 01:05 PM PDT -LukeLowrey2,2023-07-29T20:48:42Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1656882953) at 2023-07-29 01:48 PM PDT -LukeLowrey2,2023-08-01T17:46:41Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1660809043) at 2023-08-01 10:46 AM PDT -LukeLowrey2,2023-08-09T00:53:37Z,- LukeLowrey2 commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1670501521) at 2023-08-08 05:53 PM PDT -LukeLowrey2,2023-08-09T01:06:00Z,- LukeLowrey2 commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1670510544) at 2023-08-08 06:06 PM PDT -LukeLowrey2,2023-08-10T18:28:04Z,- LukeLowrey2 commented on issue: [5030](https://github.com/hackforla/website/issues/5030#issuecomment-1673705291) at 2023-08-10 11:28 AM PDT -LukeLowrey2,2023-08-16T01:53:51Z,- LukeLowrey2 opened pull request: [5236](https://github.com/hackforla/website/pull/5236) at 2023-08-15 06:53 PM PDT -LukeLowrey2,2023-08-17T18:05:15Z,- LukeLowrey2 submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1583194727) at 2023-08-17 11:05 AM PDT -LukeLowrey2,2023-08-17T18:07:52Z,- LukeLowrey2 submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1583198417) at 2023-08-17 11:07 AM PDT -LukeLowrey2,2023-08-17T18:48:27Z,- LukeLowrey2 assigned to issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1666785047) at 2023-08-17 11:48 AM PDT -LukeLowrey2,2023-08-17T18:53:50Z,- LukeLowrey2 unassigned from issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1682793157) at 2023-08-17 11:53 AM PDT -LukeLowrey2,2023-08-17T18:57:54Z,- LukeLowrey2 closed issue as completed: [4994](https://github.com/hackforla/website/issues/4994#event-10122948817) at 2023-08-17 11:57 AM PDT -LukeLowrey2,2023-08-17T18:58:21Z,- LukeLowrey2 commented on issue: [4994](https://github.com/hackforla/website/issues/4994#issuecomment-1682805387) at 2023-08-17 11:58 AM PDT -LukeLowrey2,2023-08-23T01:03:59Z,- LukeLowrey2 commented on pull request: [5236](https://github.com/hackforla/website/pull/5236#issuecomment-1689113469) at 2023-08-22 06:03 PM PDT -LukeLowrey2,2023-08-23T02:43:34Z,- LukeLowrey2 commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1689176921) at 2023-08-22 07:43 PM PDT -LukeLowrey2,2023-08-24T17:24:45Z,- LukeLowrey2 submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1594108028) at 2023-08-24 10:24 AM PDT -LukeLowrey2,2023-08-24T18:13:51Z,- LukeLowrey2 pull request merged: [5236](https://github.com/hackforla/website/pull/5236#event-10184610283) at 2023-08-24 11:13 AM PDT -LukeLowrey2,2023-08-24T20:54:33Z,- LukeLowrey2 assigned to issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1690871592) at 2023-08-24 01:54 PM PDT -LukeLowrey2,2023-08-24T20:57:14Z,- LukeLowrey2 commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1692396550) at 2023-08-24 01:57 PM PDT -LukeLowrey2,2023-08-25T15:35:13Z,- LukeLowrey2 unassigned from issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1692476876) at 2023-08-25 08:35 AM PDT -LukeLowrey2,2023-09-10T17:15:25Z,- LukeLowrey2 commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712882359) at 2023-09-10 10:15 AM PDT -LukeLowrey2,2023-09-10T17:17:59Z,- LukeLowrey2 commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1712884216) at 2023-09-10 10:17 AM PDT -LukeLowrey2,2023-09-11T18:33:41Z,- LukeLowrey2 submitted pull request review: [5469](https://github.com/hackforla/website/pull/5469#pullrequestreview-1620588907) at 2023-09-11 11:33 AM PDT -LukeLowrey2,2023-09-12T17:46:44Z,- LukeLowrey2 submitted pull request review: [5396](https://github.com/hackforla/website/pull/5396#pullrequestreview-1622823104) at 2023-09-12 10:46 AM PDT -LukeLowrey2,2023-09-20T01:48:56Z,- LukeLowrey2 assigned to issue: [5533](https://github.com/hackforla/website/issues/5533#issuecomment-1720338991) at 2023-09-19 06:48 PM PDT -LukeLowrey2,2023-09-20T01:53:17Z,- LukeLowrey2 commented on issue: [5533](https://github.com/hackforla/website/issues/5533#issuecomment-1726765737) at 2023-09-19 06:53 PM PDT -LukeLowrey2,2023-10-08T17:33:41Z,- LukeLowrey2 commented on pull request: [5671](https://github.com/hackforla/website/pull/5671#issuecomment-1752113209) at 2023-10-08 10:33 AM PDT -LukeLowrey2,2023-10-08T17:34:06Z,- LukeLowrey2 commented on pull request: [5649](https://github.com/hackforla/website/pull/5649#issuecomment-1752113299) at 2023-10-08 10:34 AM PDT -LukeLowrey2,2023-10-10T17:21:00Z,- LukeLowrey2 submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1668447829) at 2023-10-10 10:21 AM PDT -LukeLowrey2,2023-10-10T17:29:30Z,- LukeLowrey2 submitted pull request review: [5649](https://github.com/hackforla/website/pull/5649#pullrequestreview-1668462763) at 2023-10-10 10:29 AM PDT -LukeLowrey2,2023-10-24T23:01:18Z,- LukeLowrey2 assigned to issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1763747429) at 2023-10-24 04:01 PM PDT -LukeLowrey2,2023-10-24T23:06:09Z,- LukeLowrey2 commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1778193465) at 2023-10-24 04:06 PM PDT -LukeLowrey2,2023-10-26T18:24:07Z,- LukeLowrey2 opened pull request: [5788](https://github.com/hackforla/website/pull/5788) at 2023-10-26 11:24 AM PDT -LukeLowrey2,2023-10-26T18:29:26Z,- LukeLowrey2 commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1781635317) at 2023-10-26 11:29 AM PDT -LukeLowrey2,2023-11-02T18:31:10Z,- LukeLowrey2 commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1791312016) at 2023-11-02 11:31 AM PDT -LukeLowrey2,2023-11-06T18:11:20Z,- LukeLowrey2 commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1795789315) at 2023-11-06 10:11 AM PST -LukeLowrey2,2023-11-06T18:11:20Z,- LukeLowrey2 pull request closed w/o merging: [5788](https://github.com/hackforla/website/pull/5788#event-10876753176) at 2023-11-06 10:11 AM PST -LukeLowrey2,2023-11-06T19:40:15Z,- LukeLowrey2 commented on issue: [5712](https://github.com/hackforla/website/issues/5712#issuecomment-1796181219) at 2023-11-06 11:40 AM PST -LukeLowrey2,2023-11-15T03:31:35Z,- LukeLowrey2 commented on pull request: [5903](https://github.com/hackforla/website/pull/5903#issuecomment-1811754656) at 2023-11-14 07:31 PM PST -LukeLowrey2,2023-11-15T04:00:28Z,- LukeLowrey2 opened pull request: [5907](https://github.com/hackforla/website/pull/5907) at 2023-11-14 08:00 PM PST -LukeLowrey2,2023-11-15T19:17:14Z,- LukeLowrey2 submitted pull request review: [5903](https://github.com/hackforla/website/pull/5903#pullrequestreview-1732754242) at 2023-11-15 11:17 AM PST -LukeLowrey2,2023-11-17T21:57:40Z,- LukeLowrey2 pull request merged: [5907](https://github.com/hackforla/website/pull/5907#event-10999511384) at 2023-11-17 01:57 PM PST -LukeLowrey2,2024-01-10T02:09:01Z,- LukeLowrey2 assigned to issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1763331597) at 2024-01-09 06:09 PM PST -LukeLowrey2,2024-01-10T02:14:19Z,- LukeLowrey2 commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1884081011) at 2024-01-09 06:14 PM PST -LukeLowrey2,2024-01-18T17:46:47Z,- LukeLowrey2 commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1898942764) at 2024-01-18 09:46 AM PST -LukeLowrey2,2024-01-21T18:14:53Z,- LukeLowrey2 commented on pull request: [6134](https://github.com/hackforla/website/pull/6134#issuecomment-1902716534) at 2024-01-21 10:14 AM PST -LukeLowrey2,2024-01-23T17:21:46Z,- LukeLowrey2 commented on issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1906556729) at 2024-01-23 09:21 AM PST -LukeLowrey2,2024-01-23T17:22:06Z,- LukeLowrey2 unassigned from issue: [4647](https://github.com/hackforla/website/issues/4647#issuecomment-1906556729) at 2024-01-23 09:22 AM PST -LukeLowrey2,2024-01-23T17:34:54Z,- LukeLowrey2 submitted pull request review: [6134](https://github.com/hackforla/website/pull/6134#pullrequestreview-1839464915) at 2024-01-23 09:34 AM PST -Maarimar,8065,SKILLS ISSUE -Maarimar,2024-03-05T03:49:31Z,- Maarimar opened issue: [6423](https://github.com/hackforla/website/issues/6423) at 2024-03-04 07:49 PM PST -Maarimar,2024-03-05T03:52:54Z,- Maarimar assigned to issue: [6423](https://github.com/hackforla/website/issues/6423) at 2024-03-04 07:52 PM PST -Maarimar,2024-03-22T16:39:51Z,- Maarimar assigned to issue: [6170](https://github.com/hackforla/website/issues/6170) at 2024-03-22 09:39 AM PDT -Maarimar,2024-03-27T21:45:30Z,- Maarimar unassigned from issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2015479843) at 2024-03-27 02:45 PM PDT -Maarimar,2024-03-27T21:45:32Z,- Maarimar assigned to issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2015479843) at 2024-03-27 02:45 PM PDT -Maarimar,2024-03-27T22:09:18Z,- Maarimar unassigned from issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2024045843) at 2024-03-27 03:09 PM PDT -Maarimar,2024-03-27T22:23:59Z,- Maarimar assigned to issue: [6237](https://github.com/hackforla/website/issues/6237) at 2024-03-27 03:23 PM PDT -Maarimar,2024-04-01T02:03:54Z,- Maarimar opened pull request: [6553](https://github.com/hackforla/website/pull/6553) at 2024-03-31 07:03 PM PDT -Maarimar,2024-04-01T02:12:59Z,- Maarimar closed issue by PR 6553: [6237](https://github.com/hackforla/website/issues/6237#event-12305668594) at 2024-03-31 07:12 PM PDT -Maarimar,2024-04-01T21:26:07Z,- Maarimar assigned to issue: [5844](https://github.com/hackforla/website/issues/5844#issuecomment-1874749502) at 2024-04-01 02:26 PM PDT -Maarimar,2024-04-03T22:07:38Z,- Maarimar opened pull request: [6561](https://github.com/hackforla/website/pull/6561) at 2024-04-03 03:07 PM PDT -Maarimar,2024-04-03T22:13:19Z,- Maarimar closed issue by PR 6561: [5844](https://github.com/hackforla/website/issues/5844#event-12349025451) at 2024-04-03 03:13 PM PDT -Maarimar,2024-04-03T22:16:39Z,- Maarimar reopened issue: [6237](https://github.com/hackforla/website/issues/6237#event-12305668594) at 2024-04-03 03:16 PM PDT -Maarimar,2024-04-03T22:17:48Z,- Maarimar reopened issue: [5844](https://github.com/hackforla/website/issues/5844#event-12349025451) at 2024-04-03 03:17 PM PDT -Maarimar,2024-04-05T04:41:31Z,- Maarimar pull request merged: [6553](https://github.com/hackforla/website/pull/6553#event-12367698417) at 2024-04-04 09:41 PM PDT -Maarimar,2024-04-05T18:58:15Z,- Maarimar commented on pull request: [6561](https://github.com/hackforla/website/pull/6561#issuecomment-2040452575) at 2024-04-05 11:58 AM PDT -Maarimar,2024-04-06T18:23:51Z,- Maarimar pull request merged: [6561](https://github.com/hackforla/website/pull/6561#event-12382175695) at 2024-04-06 11:23 AM PDT -Maarimar,2024-04-09T17:44:22Z,- Maarimar assigned to issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1828913065) at 2024-04-09 10:44 AM PDT -Maarimar,2024-04-09T18:13:20Z,- Maarimar commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-2045815338) at 2024-04-09 11:13 AM PDT -Maarimar,2024-04-11T23:17:43Z,- Maarimar opened pull request: [6626](https://github.com/hackforla/website/pull/6626) at 2024-04-11 04:17 PM PDT -Maarimar,2024-04-12T16:24:17Z,- Maarimar commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2052079065) at 2024-04-12 09:24 AM PDT -Maarimar,2024-04-16T15:37:51Z,- Maarimar assigned to issue: [6641](https://github.com/hackforla/website/issues/6641) at 2024-04-16 08:37 AM PDT -Maarimar,2024-04-16T16:36:17Z,- Maarimar commented on issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059504184) at 2024-04-16 09:36 AM PDT -Maarimar,2024-04-16T16:56:55Z,- Maarimar unassigned from issue: [6641](https://github.com/hackforla/website/issues/6641#issuecomment-2059537181) at 2024-04-16 09:56 AM PDT -Maarimar,2024-04-17T22:06:15Z,- Maarimar pull request merged: [6626](https://github.com/hackforla/website/pull/6626#event-12514922992) at 2024-04-17 03:06 PM PDT -Maarimar,2024-04-23T18:07:41Z,- Maarimar assigned to issue: [3859](https://github.com/hackforla/website/issues/3859) at 2024-04-23 11:07 AM PDT -Maarimar,2024-04-25T02:25:00Z,- Maarimar commented on issue: [3859](https://github.com/hackforla/website/issues/3859#issuecomment-2076205011) at 2024-04-24 07:25 PM PDT -Maarimar,2024-04-29T00:34:51Z,- Maarimar submitted pull request review: [6772](https://github.com/hackforla/website/pull/6772#pullrequestreview-2027429081) at 2024-04-28 05:34 PM PDT -Maarimar,2024-04-30T04:03:15Z,- Maarimar commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2084334375) at 2024-04-29 09:03 PM PDT -Maarimar,2024-05-01T16:09:03Z,- Maarimar opened issue: [6798](https://github.com/hackforla/website/issues/6798) at 2024-05-01 09:09 AM PDT -Maarimar,2024-05-01T16:19:18Z,- Maarimar opened issue: [6799](https://github.com/hackforla/website/issues/6799) at 2024-05-01 09:19 AM PDT -Maarimar,2024-05-01T16:30:06Z,- Maarimar opened issue: [6800](https://github.com/hackforla/website/issues/6800) at 2024-05-01 09:30 AM PDT -Maarimar,2024-05-01T16:35:48Z,- Maarimar commented on issue: [3859](https://github.com/hackforla/website/issues/3859#issuecomment-2088736838) at 2024-05-01 09:35 AM PDT -Maarimar,2024-05-01T18:11:31Z,- Maarimar commented on issue: [6423](https://github.com/hackforla/website/issues/6423#issuecomment-2088865648) at 2024-05-01 11:11 AM PDT -Maarimar,2024-05-08T21:55:16Z,- Maarimar assigned to issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2084048732) at 2024-05-08 02:55 PM PDT -Maarimar,2024-05-08T22:08:07Z,- Maarimar commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2101583808) at 2024-05-08 03:08 PM PDT -Maarimar,2024-05-14T01:14:44Z,- Maarimar commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2109089325) at 2024-05-13 06:14 PM PDT -Maarimar,2024-05-24T21:38:49Z,- Maarimar submitted pull request review: [6860](https://github.com/hackforla/website/pull/6860#pullrequestreview-2078094645) at 2024-05-24 02:38 PM PDT -Maarimar,2024-05-24T21:44:14Z,- Maarimar commented on issue: [6654](https://github.com/hackforla/website/issues/6654#issuecomment-2130407889) at 2024-05-24 02:44 PM PDT -Maarimar,2024-07-14T17:28:24Z,- Maarimar assigned to issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2024-07-14 10:28 AM PDT -Maarimar,2024-08-27T22:48:57Z,- Maarimar unassigned from issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-2277292199) at 2024-08-27 03:48 PM PDT -Maarimar,2025-04-16T02:45:11Z,- Maarimar opened issue: [8065](https://github.com/hackforla/website/issues/8065) at 2025-04-15 07:45 PM PDT -Maarimar,2025-04-16T02:45:24Z,- Maarimar assigned to issue: [8065](https://github.com/hackforla/website/issues/8065) at 2025-04-15 07:45 PM PDT -Maarimar,2025-04-25T16:36:57Z,- Maarimar commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2830893787) at 2025-04-25 09:36 AM PDT -Maarimar,2025-04-25T16:38:33Z,- Maarimar commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2830897530) at 2025-04-25 09:38 AM PDT -Maarimar,2025-04-25T17:31:45Z,- Maarimar commented on issue: [8065](https://github.com/hackforla/website/issues/8065#issuecomment-2831022469) at 2025-04-25 10:31 AM PDT -Maarimar,2025-05-15T22:48:51Z,- Maarimar assigned to issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2874621414) at 2025-05-15 03:48 PM PDT -Maarimar,2025-05-15T22:52:21Z,- Maarimar commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2885222733) at 2025-05-15 03:52 PM PDT -Maarimar,2025-05-19T19:53:30Z,- Maarimar unassigned from issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2885222733) at 2025-05-19 12:53 PM PDT -Maarimar,2025-05-19T19:55:17Z,- Maarimar assigned to issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2616716640) at 2025-05-19 12:55 PM PDT -Maarimar,2025-05-19T19:55:32Z,- Maarimar unassigned from issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2616716640) at 2025-05-19 12:55 PM PDT -Maarimar,2025-05-19T19:56:04Z,- Maarimar assigned to issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892123866) at 2025-05-19 12:56 PM PDT -Maarimar,2025-05-19T19:56:21Z,- Maarimar unassigned from issue: [7858](https://github.com/hackforla/website/issues/7858#issuecomment-2892123866) at 2025-05-19 12:56 PM PDT -Maarimar,2025-05-19T19:56:52Z,- Maarimar assigned to issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832458560) at 2025-05-19 12:56 PM PDT -Maarimar,2025-05-19T19:57:11Z,- Maarimar unassigned from issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832458560) at 2025-05-19 12:57 PM PDT -Maarimar,2025-05-19T20:00:00Z,- Maarimar assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2731586032) at 2025-05-19 01:00 PM PDT -Maarimar,2025-05-20T01:56:24Z,- Maarimar commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2892678244) at 2025-05-19 06:56 PM PDT -Maarimar,2025-06-04T17:29:34Z,- Maarimar commented on issue: [8123](https://github.com/hackforla/website/issues/8123#issuecomment-2940836489) at 2025-06-04 10:29 AM PDT -Maarimar,2025-06-18T22:43:13Z,- Maarimar opened pull request: [8196](https://github.com/hackforla/website/pull/8196) at 2025-06-18 03:43 PM PDT -MacTirney,5066,SKILLS ISSUE -MacTirney,2023-07-26T02:55:51Z,- MacTirney opened issue: [5066](https://github.com/hackforla/website/issues/5066) at 2023-07-25 07:55 PM PDT -MacTirney,2023-07-26T02:56:16Z,- MacTirney assigned to issue: [5066](https://github.com/hackforla/website/issues/5066#issuecomment-1650898288) at 2023-07-25 07:56 PM PDT -mademarc,3780,SKILLS ISSUE -mademarc,2023-01-04T04:44:16Z,- mademarc opened issue: [3780](https://github.com/hackforla/website/issues/3780) at 2023-01-03 08:44 PM PST -mademarc,2023-01-18T20:07:02Z,- mademarc assigned to issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1375121122) at 2023-01-18 12:07 PM PST -mademarc,2023-01-24T20:05:46Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1402552569) at 2023-01-24 12:05 PM PST -mademarc,2023-02-08T00:16:46Z,- mademarc assigned to issue: [3952](https://github.com/hackforla/website/issues/3952) at 2023-02-07 04:16 PM PST -mademarc,2023-02-08T01:54:04Z,- mademarc submitted pull request review: [3954](https://github.com/hackforla/website/pull/3954#pullrequestreview-1288355390) at 2023-02-07 05:54 PM PST -mademarc,2023-02-08T01:59:02Z,- mademarc unassigned from issue: [3952](https://github.com/hackforla/website/issues/3952#issuecomment-1421840677) at 2023-02-07 05:59 PM PST -mademarc,2023-02-09T00:07:49Z,- mademarc assigned to issue: [3955](https://github.com/hackforla/website/issues/3955) at 2023-02-08 04:07 PM PST -mademarc,2023-02-09T00:10:55Z,- mademarc opened pull request: [3956](https://github.com/hackforla/website/pull/3956) at 2023-02-08 04:10 PM PST -mademarc,2023-02-09T00:15:47Z,- mademarc commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423408143) at 2023-02-08 04:15 PM PST -mademarc,2023-02-09T02:33:53Z,- mademarc unassigned from issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423531322) at 2023-02-08 06:33 PM PST -mademarc,2023-02-09T02:41:10Z,- mademarc commented on issue: [3955](https://github.com/hackforla/website/issues/3955#issuecomment-1423535962) at 2023-02-08 06:41 PM PST -mademarc,2023-02-09T08:57:47Z,- mademarc pull request closed w/o merging: [3956](https://github.com/hackforla/website/pull/3956#event-8476942367) at 2023-02-09 12:57 AM PST -mademarc,2023-02-10T03:39:41Z,- mademarc assigned to issue: [3875](https://github.com/hackforla/website/issues/3875) at 2023-02-09 07:39 PM PST -mademarc,2023-02-11T01:29:36Z,- mademarc commented on issue: [3875](https://github.com/hackforla/website/issues/3875#issuecomment-1426558189) at 2023-02-10 05:29 PM PST -mademarc,2023-02-11T02:02:47Z,- mademarc opened pull request: [3962](https://github.com/hackforla/website/pull/3962) at 2023-02-10 06:02 PM PST -mademarc,2023-02-13T22:57:54Z,- mademarc commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1428818666) at 2023-02-13 02:57 PM PST -mademarc,2023-02-17T03:02:52Z,- mademarc commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1434030783) at 2023-02-16 07:02 PM PST -mademarc,2023-02-21T02:29:48Z,- mademarc commented on issue: [3875](https://github.com/hackforla/website/issues/3875#issuecomment-1437775385) at 2023-02-20 06:29 PM PST -mademarc,2023-02-21T02:31:47Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1437776367) at 2023-02-20 06:31 PM PST -mademarc,2023-02-24T03:05:22Z,- mademarc commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1442734516) at 2023-02-23 07:05 PM PST -mademarc,2023-02-24T03:23:15Z,- mademarc commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1442752155) at 2023-02-23 07:23 PM PST -mademarc,2023-02-24T03:23:49Z,- mademarc submitted pull request review: [3964](https://github.com/hackforla/website/pull/3964#pullrequestreview-1312456820) at 2023-02-23 07:23 PM PST -mademarc,2023-02-24T03:49:36Z,- mademarc commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442769561) at 2023-02-23 07:49 PM PST -mademarc,2023-02-24T03:50:18Z,- mademarc submitted pull request review: [4032](https://github.com/hackforla/website/pull/4032#pullrequestreview-1312469791) at 2023-02-23 07:50 PM PST -mademarc,2023-02-26T22:55:49Z,- mademarc pull request merged: [3962](https://github.com/hackforla/website/pull/3962#event-8610340266) at 2023-02-26 02:55 PM PST -mademarc,2023-03-01T03:25:09Z,- mademarc submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1318985028) at 2023-02-28 07:25 PM PST -mademarc,2023-03-01T03:29:00Z,- mademarc commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1449279089) at 2023-02-28 07:29 PM PST -mademarc,2023-03-01T03:30:25Z,- mademarc commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1449279904) at 2023-02-28 07:30 PM PST -mademarc,2023-03-01T03:32:31Z,- mademarc submitted pull request review: [4017](https://github.com/hackforla/website/pull/4017#pullrequestreview-1318988832) at 2023-02-28 07:32 PM PST -mademarc,2023-03-01T03:38:11Z,- mademarc commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1449283859) at 2023-02-28 07:38 PM PST -mademarc,2023-03-01T03:38:52Z,- mademarc submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1318992107) at 2023-02-28 07:38 PM PST -mademarc,2023-03-01T03:44:00Z,- mademarc commented on pull request: [4058](https://github.com/hackforla/website/pull/4058#issuecomment-1449286880) at 2023-02-28 07:44 PM PST -mademarc,2023-03-01T03:47:15Z,- mademarc submitted pull request review: [4058](https://github.com/hackforla/website/pull/4058#pullrequestreview-1318996343) at 2023-02-28 07:47 PM PST -mademarc,2023-03-01T04:03:53Z,- mademarc commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1449301580) at 2023-02-28 08:03 PM PST -mademarc,2023-03-01T19:20:27Z,- mademarc commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1450724779) at 2023-03-01 11:20 AM PST -mademarc,2023-03-01T19:42:18Z,- mademarc submitted pull request review: [4076](https://github.com/hackforla/website/pull/4076#pullrequestreview-1320507025) at 2023-03-01 11:42 AM PST -mademarc,2023-03-01T22:49:33Z,- mademarc assigned to issue: [4042](https://github.com/hackforla/website/issues/4042#issuecomment-1450711502) at 2023-03-01 02:49 PM PST -mademarc,2023-03-01T22:54:24Z,- mademarc commented on issue: [4042](https://github.com/hackforla/website/issues/4042#issuecomment-1450975079) at 2023-03-01 02:54 PM PST -mademarc,2023-03-04T04:02:46Z,- mademarc submitted pull request review: [4076](https://github.com/hackforla/website/pull/4076#pullrequestreview-1324920802) at 2023-03-03 08:02 PM PST -mademarc,2023-03-04T05:25:13Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1454468241) at 2023-03-03 09:25 PM PST -mademarc,2023-03-09T03:32:30Z,- mademarc opened pull request: [4137](https://github.com/hackforla/website/pull/4137) at 2023-03-08 07:32 PM PST -mademarc,2023-03-10T04:42:56Z,- mademarc opened pull request: [4144](https://github.com/hackforla/website/pull/4144) at 2023-03-09 08:42 PM PST -mademarc,2023-03-10T04:52:18Z,- mademarc pull request closed w/o merging: [4137](https://github.com/hackforla/website/pull/4137#event-8714683868) at 2023-03-09 08:52 PM PST -mademarc,2023-03-12T23:11:46Z,- mademarc commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1465325740) at 2023-03-12 04:11 PM PDT -mademarc,2023-03-12T23:57:52Z,- mademarc pull request merged: [4144](https://github.com/hackforla/website/pull/4144#event-8726533104) at 2023-03-12 04:57 PM PDT -mademarc,2023-03-15T02:01:29Z,- mademarc assigned to issue: [3115](https://github.com/hackforla/website/issues/3115#event-8485622225) at 2023-03-14 07:01 PM PDT -mademarc,2023-03-15T02:25:17Z,- mademarc unassigned from issue: [3115](https://github.com/hackforla/website/issues/3115#issuecomment-1469180943) at 2023-03-14 07:25 PM PDT -mademarc,2023-03-15T02:27:17Z,- mademarc assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1457467480) at 2023-03-14 07:27 PM PDT -mademarc,2023-03-15T03:01:03Z,- mademarc assigned to issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1449429516) at 2023-03-14 08:01 PM PDT -mademarc,2023-03-15T03:02:15Z,- mademarc assigned to issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1468096796) at 2023-03-14 08:02 PM PDT -mademarc,2023-03-16T01:21:53Z,- mademarc commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1471134653) at 2023-03-15 06:21 PM PDT -mademarc,2023-03-16T01:24:49Z,- mademarc commented on issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1471136579) at 2023-03-15 06:24 PM PDT -mademarc,2023-03-16T01:26:17Z,- mademarc commented on issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1471137585) at 2023-03-15 06:26 PM PDT -mademarc,2023-03-16T01:32:01Z,- mademarc submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1342727208) at 2023-03-15 06:32 PM PDT -mademarc,2023-03-16T01:34:18Z,- mademarc commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1471144842) at 2023-03-15 06:34 PM PDT -mademarc,2023-03-16T01:36:17Z,- mademarc submitted pull request review: [4191](https://github.com/hackforla/website/pull/4191#pullrequestreview-1342729786) at 2023-03-15 06:36 PM PDT -mademarc,2023-03-16T01:36:55Z,- mademarc commented on pull request: [4191](https://github.com/hackforla/website/pull/4191#issuecomment-1471146467) at 2023-03-15 06:36 PM PDT -mademarc,2023-03-16T01:39:43Z,- mademarc submitted pull request review: [4179](https://github.com/hackforla/website/pull/4179#pullrequestreview-1342731958) at 2023-03-15 06:39 PM PDT -mademarc,2023-03-16T01:40:24Z,- mademarc commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1471149099) at 2023-03-15 06:40 PM PDT -mademarc,2023-03-16T01:41:44Z,- mademarc commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1471149902) at 2023-03-15 06:41 PM PDT -mademarc,2023-03-16T01:43:04Z,- mademarc submitted pull request review: [4181](https://github.com/hackforla/website/pull/4181#pullrequestreview-1342733981) at 2023-03-15 06:43 PM PDT -mademarc,2023-03-16T01:44:26Z,- mademarc commented on pull request: [4178](https://github.com/hackforla/website/pull/4178#issuecomment-1471151715) at 2023-03-15 06:44 PM PDT -mademarc,2023-03-16T01:46:58Z,- mademarc submitted pull request review: [4178](https://github.com/hackforla/website/pull/4178#pullrequestreview-1342736462) at 2023-03-15 06:46 PM PDT -mademarc,2023-03-16T01:47:53Z,- mademarc commented on pull request: [4176](https://github.com/hackforla/website/pull/4176#issuecomment-1471154007) at 2023-03-15 06:47 PM PDT -mademarc,2023-03-16T01:49:00Z,- mademarc submitted pull request review: [4176](https://github.com/hackforla/website/pull/4176#pullrequestreview-1342737665) at 2023-03-15 06:49 PM PDT -mademarc,2023-03-17T02:25:44Z,- mademarc commented on issue: [4077](https://github.com/hackforla/website/issues/4077#issuecomment-1473021045) at 2023-03-16 07:25 PM PDT -mademarc,2023-03-17T02:52:31Z,- mademarc unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1471134653) at 2023-03-16 07:52 PM PDT -mademarc,2023-03-17T17:46:09Z,- mademarc submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1346424904) at 2023-03-17 10:46 AM PDT -mademarc,2023-03-21T20:14:07Z,- mademarc commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1478523394) at 2023-03-21 01:14 PM PDT -mademarc,2023-03-21T20:15:30Z,- mademarc commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478524929) at 2023-03-21 01:15 PM PDT -mademarc,2023-03-22T02:10:30Z,- mademarc submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1351621764) at 2023-03-21 07:10 PM PDT -mademarc,2023-03-22T02:13:48Z,- mademarc submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1351624679) at 2023-03-21 07:13 PM PDT -mademarc,2023-03-22T03:06:56Z,- mademarc assigned to issue: [4226](https://github.com/hackforla/website/issues/4226) at 2023-03-21 08:06 PM PDT -mademarc,2023-03-22T23:28:37Z,- mademarc commented on pull request: [4228](https://github.com/hackforla/website/pull/4228#issuecomment-1480383304) at 2023-03-22 04:28 PM PDT -mademarc,2023-03-22T23:30:16Z,- mademarc submitted pull request review: [4228](https://github.com/hackforla/website/pull/4228#pullrequestreview-1353630996) at 2023-03-22 04:30 PM PDT -mademarc,2023-03-22T23:57:48Z,- mademarc assigned to issue: [4251](https://github.com/hackforla/website/issues/4251) at 2023-03-22 04:57 PM PDT -mademarc,2023-03-23T00:01:15Z,- mademarc commented on issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480404238) at 2023-03-22 05:01 PM PDT -mademarc,2023-03-23T00:02:53Z,- mademarc unassigned from issue: [4251](https://github.com/hackforla/website/issues/4251#issuecomment-1480404238) at 2023-03-22 05:02 PM PDT -mademarc,2023-03-24T02:02:26Z,- mademarc commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1482147766) at 2023-03-23 07:02 PM PDT -mademarc,2023-03-24T02:07:12Z,- mademarc submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1355906165) at 2023-03-23 07:07 PM PDT -mademarc,2023-03-24T02:08:22Z,- mademarc commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1482152138) at 2023-03-23 07:08 PM PDT -mademarc,2023-03-24T02:10:36Z,- mademarc submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1355908174) at 2023-03-23 07:10 PM PDT -mademarc,2023-03-24T02:21:55Z,- mademarc commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1482160585) at 2023-03-23 07:21 PM PDT -mademarc,2023-03-24T02:55:28Z,- mademarc commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482179605) at 2023-03-23 07:55 PM PDT -mademarc,2023-03-24T02:57:35Z,- mademarc submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1355934781) at 2023-03-23 07:57 PM PDT -mademarc,2023-03-25T23:06:12Z,- mademarc submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1357913666) at 2023-03-25 04:06 PM PDT -mademarc,2023-03-26T23:32:27Z,- mademarc unassigned from issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1484271417) at 2023-03-26 04:32 PM PDT -mademarc,2023-03-29T02:09:04Z,- mademarc assigned to issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487350360) at 2023-03-28 07:09 PM PDT -mademarc,2023-03-29T02:09:21Z,- mademarc commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847383) at 2023-03-28 07:09 PM PDT -mademarc,2023-03-29T02:14:33Z,- mademarc commented on pull request: [4304](https://github.com/hackforla/website/pull/4304#issuecomment-1487850736) at 2023-03-28 07:14 PM PDT -mademarc,2023-03-29T02:16:44Z,- mademarc submitted pull request review: [4304](https://github.com/hackforla/website/pull/4304#pullrequestreview-1362155509) at 2023-03-28 07:16 PM PDT -mademarc,2023-03-29T02:28:53Z,- mademarc closed issue by PR 6300: [3861](https://github.com/hackforla/website/issues/3861#event-8871295890) at 2023-03-28 07:28 PM PDT -mademarc,2023-03-29T08:17:54Z,- mademarc assigned to issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1421904264) at 2023-03-29 01:17 AM PDT -mademarc,2023-03-29T08:18:31Z,- mademarc commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1488143343) at 2023-03-29 01:18 AM PDT -mademarc,2023-03-29T08:18:51Z,- mademarc assigned to issue: [3852](https://github.com/hackforla/website/issues/3852) at 2023-03-29 01:18 AM PDT -mademarc,2023-03-29T08:19:30Z,- mademarc commented on issue: [3852](https://github.com/hackforla/website/issues/3852#issuecomment-1488144605) at 2023-03-29 01:19 AM PDT -mademarc,2023-03-29T08:19:48Z,- mademarc assigned to issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1487919594) at 2023-03-29 01:19 AM PDT -mademarc,2023-03-29T08:20:29Z,- mademarc commented on issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1488145925) at 2023-03-29 01:20 AM PDT -mademarc,2023-03-29T08:20:42Z,- mademarc assigned to issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1477039974) at 2023-03-29 01:20 AM PDT -mademarc,2023-03-29T08:21:11Z,- mademarc commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1488146932) at 2023-03-29 01:21 AM PDT -mademarc,2023-03-29T21:28:35Z,- mademarc unassigned from issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-29 02:28 PM PDT -mademarc,2023-03-29T21:29:32Z,- mademarc unassigned from issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1489160564) at 2023-03-29 02:29 PM PDT -mademarc,2023-03-29T21:31:43Z,- mademarc unassigned from issue: [3870](https://github.com/hackforla/website/issues/3870#issuecomment-1488145925) at 2023-03-29 02:31 PM PDT -mademarc,2023-03-29T21:31:50Z,- mademarc unassigned from issue: [3852](https://github.com/hackforla/website/issues/3852#issuecomment-1488144605) at 2023-03-29 02:31 PM PDT -mademarc,2023-03-29T21:32:25Z,- mademarc unassigned from issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1488143343) at 2023-03-29 02:32 PM PDT -mademarc,2023-03-31T02:09:54Z,- mademarc assigned to issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-30 07:09 PM PDT -mademarc,2023-03-31T02:10:16Z,- mademarc unassigned from issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1487847407) at 2023-03-30 07:10 PM PDT -mademarc,2023-03-31T02:11:43Z,- mademarc assigned to issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1486531673) at 2023-03-30 07:11 PM PDT -mademarc,2023-03-31T02:35:35Z,- mademarc unassigned from issue: [4302](https://github.com/hackforla/website/issues/4302#issuecomment-1491189654) at 2023-03-30 07:35 PM PDT -mademarc,2023-04-12T03:04:14Z,- mademarc commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1504499012) at 2023-04-11 08:04 PM PDT -mademarc,2023-04-12T03:04:48Z,- mademarc commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1504499608) at 2023-04-11 08:04 PM PDT -mademarc,2023-04-14T01:02:55Z,- mademarc submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1384452108) at 2023-04-13 06:02 PM PDT -mademarc,2023-04-14T01:59:52Z,- mademarc commented on pull request: [4511](https://github.com/hackforla/website/pull/4511#issuecomment-1507821587) at 2023-04-13 06:59 PM PDT -mademarc,2023-04-14T02:04:16Z,- mademarc submitted pull request review: [4511](https://github.com/hackforla/website/pull/4511#pullrequestreview-1384499078) at 2023-04-13 07:04 PM PDT -mademarc,2023-04-19T02:18:08Z,- mademarc commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1514039038) at 2023-04-18 07:18 PM PDT -mademarc,2023-04-19T02:30:52Z,- mademarc submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1391178213) at 2023-04-18 07:30 PM PDT -mademarc,2023-04-19T02:36:10Z,- mademarc commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1514050436) at 2023-04-18 07:36 PM PDT -mademarc,2023-04-19T02:39:37Z,- mademarc submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1391183272) at 2023-04-18 07:39 PM PDT -mademarc,2023-04-21T02:05:56Z,- mademarc commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517154693) at 2023-04-20 07:05 PM PDT -mademarc,2023-04-21T02:07:49Z,- mademarc submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1394961101) at 2023-04-20 07:07 PM PDT -mademarc,2023-05-12T01:58:51Z,- mademarc commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1544995016) at 2023-05-11 06:58 PM PDT -mademarc,2023-05-12T02:04:14Z,- mademarc submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1423669556) at 2023-05-11 07:04 PM PDT -mademarc,2023-05-12T02:05:46Z,- mademarc commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1545001546) at 2023-05-11 07:05 PM PDT -mademarc,2023-05-12T02:12:16Z,- mademarc submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1423673965) at 2023-05-11 07:12 PM PDT -mademarc,2023-05-12T02:14:30Z,- mademarc commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1545007202) at 2023-05-11 07:14 PM PDT -mademarc,2023-05-12T02:17:48Z,- mademarc submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1423677022) at 2023-05-11 07:17 PM PDT -mademarc,2023-05-13T02:37:57Z,- mademarc commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1546502398) at 2023-05-12 07:37 PM PDT -mademarc,2023-05-13T02:40:45Z,- mademarc submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1425310391) at 2023-05-12 07:40 PM PDT -mademarc,2023-05-13T02:43:59Z,- mademarc commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1546503581) at 2023-05-12 07:43 PM PDT -mademarc,2023-05-13T02:48:24Z,- mademarc submitted pull request review: [4646](https://github.com/hackforla/website/pull/4646#pullrequestreview-1425311515) at 2023-05-12 07:48 PM PDT -mademarc,2023-05-19T02:06:10Z,- mademarc commented on pull request: [4694](https://github.com/hackforla/website/pull/4694#issuecomment-1553906538) at 2023-05-18 07:06 PM PDT -mademarc,2023-05-19T02:06:43Z,- mademarc submitted pull request review: [4694](https://github.com/hackforla/website/pull/4694#pullrequestreview-1433681724) at 2023-05-18 07:06 PM PDT -mademarc,2023-05-19T02:08:42Z,- mademarc commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1553907865) at 2023-05-18 07:08 PM PDT -mademarc,2023-05-30T00:05:06Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1567608788) at 2023-05-29 05:05 PM PDT -mademarc,2023-05-30T00:05:29Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1567609029) at 2023-05-29 05:05 PM PDT -mademarc,2023-06-03T02:07:02Z,- mademarc commented on pull request: [4755](https://github.com/hackforla/website/pull/4755#issuecomment-1574562269) at 2023-06-02 07:07 PM PDT -mademarc,2023-06-03T02:11:14Z,- mademarc submitted pull request review: [4755](https://github.com/hackforla/website/pull/4755#pullrequestreview-1458785193) at 2023-06-02 07:11 PM PDT -mademarc,2023-06-03T02:11:53Z,- mademarc commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1574569857) at 2023-06-02 07:11 PM PDT -mademarc,2023-06-03T02:14:51Z,- mademarc submitted pull request review: [4474](https://github.com/hackforla/website/pull/4474#pullrequestreview-1458787289) at 2023-06-02 07:14 PM PDT -mademarc,2023-06-03T02:15:28Z,- mademarc commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1574571102) at 2023-06-02 07:15 PM PDT -mademarc,2023-06-03T02:19:11Z,- mademarc submitted pull request review: [4757](https://github.com/hackforla/website/pull/4757#pullrequestreview-1458787825) at 2023-06-02 07:19 PM PDT -mademarc,2023-06-16T01:59:11Z,- mademarc commented on pull request: [4833](https://github.com/hackforla/website/pull/4833#issuecomment-1593974799) at 2023-06-15 06:59 PM PDT -mademarc,2023-06-16T02:10:07Z,- mademarc submitted pull request review: [4833](https://github.com/hackforla/website/pull/4833#pullrequestreview-1482618195) at 2023-06-15 07:10 PM PDT -mademarc,2023-06-16T02:10:42Z,- mademarc commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1593983241) at 2023-06-15 07:10 PM PDT -mademarc,2023-06-16T02:12:51Z,- mademarc commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1593984382) at 2023-06-15 07:12 PM PDT -mademarc,2023-06-16T02:17:11Z,- mademarc submitted pull request review: [4796](https://github.com/hackforla/website/pull/4796#pullrequestreview-1482624213) at 2023-06-15 07:17 PM PDT -mademarc,2023-06-16T02:22:29Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1594001144) at 2023-06-15 07:22 PM PDT -mademarc,2023-06-23T02:15:06Z,- mademarc commented on pull request: [4836](https://github.com/hackforla/website/pull/4836#issuecomment-1603596994) at 2023-06-22 07:15 PM PDT -mademarc,2023-06-23T02:16:25Z,- mademarc submitted pull request review: [4836](https://github.com/hackforla/website/pull/4836#pullrequestreview-1494297324) at 2023-06-22 07:16 PM PDT -mademarc,2023-06-23T02:16:59Z,- mademarc commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1603597897) at 2023-06-22 07:16 PM PDT -mademarc,2023-06-23T02:20:00Z,- mademarc submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1494299045) at 2023-06-22 07:20 PM PDT -mademarc,2023-06-23T02:21:53Z,- mademarc submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1494299886) at 2023-06-22 07:21 PM PDT -mademarc,2023-06-30T02:13:25Z,- mademarc commented on pull request: [4890](https://github.com/hackforla/website/pull/4890#issuecomment-1614018816) at 2023-06-29 07:13 PM PDT -mademarc,2023-06-30T02:14:06Z,- mademarc submitted pull request review: [4890](https://github.com/hackforla/website/pull/4890#pullrequestreview-1506363161) at 2023-06-29 07:14 PM PDT -mademarc,2023-07-12T01:58:02Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1631734968) at 2023-07-11 06:58 PM PDT -mademarc,2023-07-14T02:00:45Z,- mademarc commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1635155967) at 2023-07-13 07:00 PM PDT -mademarc,2023-07-14T02:03:59Z,- mademarc submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1529480119) at 2023-07-13 07:03 PM PDT -mademarc,2023-07-14T02:04:55Z,- mademarc commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1635159322) at 2023-07-13 07:04 PM PDT -mademarc,2023-07-14T02:07:56Z,- mademarc submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1529482442) at 2023-07-13 07:07 PM PDT -mademarc,2023-07-14T02:08:53Z,- mademarc commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1635162370) at 2023-07-13 07:08 PM PDT -mademarc,2023-07-14T02:12:12Z,- mademarc submitted pull request review: [4927](https://github.com/hackforla/website/pull/4927#pullrequestreview-1529484908) at 2023-07-13 07:12 PM PDT -mademarc,2023-07-14T02:13:22Z,- mademarc commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1635165783) at 2023-07-13 07:13 PM PDT -mademarc,2023-07-14T02:19:19Z,- mademarc submitted pull request review: [4937](https://github.com/hackforla/website/pull/4937#pullrequestreview-1529489224) at 2023-07-13 07:19 PM PDT -mademarc,2023-07-14T02:20:38Z,- mademarc commented on pull request: [4928](https://github.com/hackforla/website/pull/4928#issuecomment-1635170445) at 2023-07-13 07:20 PM PDT -mademarc,2023-07-14T02:27:14Z,- mademarc submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1529494743) at 2023-07-13 07:27 PM PDT -mademarc,2023-07-14T02:35:05Z,- mademarc commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1635179590) at 2023-07-13 07:35 PM PDT -mademarc,2023-07-14T02:38:08Z,- mademarc submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1529504190) at 2023-07-13 07:38 PM PDT -mademarc,2023-07-21T02:19:40Z,- mademarc commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1644894826) at 2023-07-20 07:19 PM PDT -mademarc,2023-07-21T02:24:10Z,- mademarc submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1540375174) at 2023-07-20 07:24 PM PDT -mademarc,2023-07-28T02:08:08Z,- mademarc commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1654870857) at 2023-07-27 07:08 PM PDT -mademarc,2023-07-28T02:12:57Z,- mademarc submitted pull request review: [5056](https://github.com/hackforla/website/pull/5056#pullrequestreview-1551192414) at 2023-07-27 07:12 PM PDT -mademarc,2023-07-28T02:13:35Z,- mademarc commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1654874832) at 2023-07-27 07:13 PM PDT -mademarc,2023-07-28T02:15:44Z,- mademarc submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1551197261) at 2023-07-27 07:15 PM PDT -mademarc,2023-07-28T02:16:21Z,- mademarc commented on pull request: [5061](https://github.com/hackforla/website/pull/5061#issuecomment-1654876737) at 2023-07-27 07:16 PM PDT -mademarc,2023-07-28T02:20:51Z,- mademarc submitted pull request review: [5061](https://github.com/hackforla/website/pull/5061#pullrequestreview-1551205228) at 2023-07-27 07:20 PM PDT -mademarc,2023-07-28T02:22:49Z,- mademarc commented on pull request: [5063](https://github.com/hackforla/website/pull/5063#issuecomment-1654881064) at 2023-07-27 07:22 PM PDT -mademarc,2023-07-28T02:24:48Z,- mademarc submitted pull request review: [5063](https://github.com/hackforla/website/pull/5063#pullrequestreview-1551210979) at 2023-07-27 07:24 PM PDT -mademarc,2023-07-28T02:25:19Z,- mademarc commented on pull request: [5055](https://github.com/hackforla/website/pull/5055#issuecomment-1654882598) at 2023-07-27 07:25 PM PDT -mademarc,2023-07-28T02:29:11Z,- mademarc submitted pull request review: [5055](https://github.com/hackforla/website/pull/5055#pullrequestreview-1551217578) at 2023-07-27 07:29 PM PDT -mademarc,2023-07-28T03:06:20Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1654909316) at 2023-07-27 08:06 PM PDT -mademarc,2023-08-12T00:11:57Z,- mademarc commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1675554847) at 2023-08-11 05:11 PM PDT -mademarc,2023-08-12T00:15:37Z,- mademarc submitted pull request review: [5158](https://github.com/hackforla/website/pull/5158#pullrequestreview-1574567729) at 2023-08-11 05:15 PM PDT -mademarc,2023-08-12T00:16:56Z,- mademarc commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1675558465) at 2023-08-11 05:16 PM PDT -mademarc,2023-08-12T00:22:33Z,- mademarc submitted pull request review: [5124](https://github.com/hackforla/website/pull/5124#pullrequestreview-1574569482) at 2023-08-11 05:22 PM PDT -mademarc,2023-08-12T00:24:30Z,- mademarc commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1675562617) at 2023-08-11 05:24 PM PDT -mademarc,2023-08-12T00:29:49Z,- mademarc submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1574576830) at 2023-08-11 05:29 PM PDT -mademarc,2023-08-12T00:32:13Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1675567551) at 2023-08-11 05:32 PM PDT -mademarc,2023-08-19T02:06:46Z,- mademarc commented on pull request: [5236](https://github.com/hackforla/website/pull/5236#issuecomment-1684679037) at 2023-08-18 07:06 PM PDT -mademarc,2023-08-19T02:08:40Z,- mademarc submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1585417762) at 2023-08-18 07:08 PM PDT -mademarc,2023-08-19T02:11:08Z,- mademarc commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1684687636) at 2023-08-18 07:11 PM PDT -mademarc,2023-08-19T02:13:33Z,- mademarc submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1585426794) at 2023-08-18 07:13 PM PDT -mademarc,2023-08-25T01:56:54Z,- mademarc commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1692645294) at 2023-08-24 06:56 PM PDT -mademarc,2023-08-25T02:07:26Z,- mademarc submitted pull request review: [5258](https://github.com/hackforla/website/pull/5258#pullrequestreview-1594709298) at 2023-08-24 07:07 PM PDT -mademarc,2023-08-25T02:08:02Z,- mademarc commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1692653319) at 2023-08-24 07:08 PM PDT -mademarc,2023-08-25T02:11:23Z,- mademarc submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1594712129) at 2023-08-24 07:11 PM PDT -mademarc,2023-08-25T02:11:55Z,- mademarc commented on pull request: [5262](https://github.com/hackforla/website/pull/5262#issuecomment-1692655924) at 2023-08-24 07:11 PM PDT -mademarc,2023-08-25T02:13:50Z,- mademarc submitted pull request review: [5262](https://github.com/hackforla/website/pull/5262#pullrequestreview-1594713544) at 2023-08-24 07:13 PM PDT -mademarc,2023-08-25T02:14:27Z,- mademarc commented on pull request: [5284](https://github.com/hackforla/website/pull/5284#issuecomment-1692657615) at 2023-08-24 07:14 PM PDT -mademarc,2023-08-25T02:16:34Z,- mademarc submitted pull request review: [5284](https://github.com/hackforla/website/pull/5284#pullrequestreview-1594716631) at 2023-08-24 07:16 PM PDT -mademarc,2023-08-25T02:19:19Z,- mademarc commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1692661753) at 2023-08-24 07:19 PM PDT -mademarc,2023-08-25T02:21:11Z,- mademarc submitted pull request review: [5251](https://github.com/hackforla/website/pull/5251#pullrequestreview-1594722122) at 2023-08-24 07:21 PM PDT -mademarc,2023-09-01T02:02:09Z,- mademarc commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1702008957) at 2023-08-31 07:02 PM PDT -mademarc,2023-09-01T02:06:00Z,- mademarc submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1606025634) at 2023-08-31 07:06 PM PDT -mademarc,2023-09-01T02:08:50Z,- mademarc commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1702013626) at 2023-08-31 07:08 PM PDT -mademarc,2023-09-01T02:28:32Z,- mademarc submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1606069235) at 2023-08-31 07:28 PM PDT -mademarc,2023-09-01T02:37:44Z,- mademarc commented on issue: [3780](https://github.com/hackforla/website/issues/3780#issuecomment-1702035155) at 2023-08-31 07:37 PM PDT -mademarc,2023-09-15T02:07:39Z,- mademarc commented on pull request: [5488](https://github.com/hackforla/website/pull/5488#issuecomment-1720385862) at 2023-09-14 07:07 PM PDT -mademarc,2023-09-15T02:10:42Z,- mademarc submitted pull request review: [5488](https://github.com/hackforla/website/pull/5488#pullrequestreview-1628092957) at 2023-09-14 07:10 PM PDT -mademarc,2023-09-29T01:56:42Z,- mademarc commented on pull request: [5575](https://github.com/hackforla/website/pull/5575#issuecomment-1740211251) at 2023-09-28 06:56 PM PDT -mademarc,2023-09-29T02:03:28Z,- mademarc submitted pull request review: [5575](https://github.com/hackforla/website/pull/5575#pullrequestreview-1649946218) at 2023-09-28 07:03 PM PDT -mademarc,2023-09-29T02:04:11Z,- mademarc commented on pull request: [5574](https://github.com/hackforla/website/pull/5574#issuecomment-1740216285) at 2023-09-28 07:04 PM PDT -mademarc,2023-09-29T02:11:03Z,- mademarc submitted pull request review: [5574](https://github.com/hackforla/website/pull/5574#pullrequestreview-1649950451) at 2023-09-28 07:11 PM PDT -mademarc,2023-10-13T02:13:21Z,- mademarc commented on pull request: [5699](https://github.com/hackforla/website/pull/5699#issuecomment-1760661619) at 2023-10-12 07:13 PM PDT -mademarc,2023-10-13T02:17:26Z,- mademarc submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1675585756) at 2023-10-12 07:17 PM PDT -mademarc,2023-10-13T02:18:42Z,- mademarc commented on pull request: [5688](https://github.com/hackforla/website/pull/5688#issuecomment-1760664764) at 2023-10-12 07:18 PM PDT -mademarc,2023-10-13T02:21:50Z,- mademarc submitted pull request review: [5688](https://github.com/hackforla/website/pull/5688#pullrequestreview-1675588288) at 2023-10-12 07:21 PM PDT -mademarc,2023-10-13T02:22:24Z,- mademarc commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1760666909) at 2023-10-12 07:22 PM PDT -mademarc,2023-10-13T02:24:45Z,- mademarc submitted pull request review: [5690](https://github.com/hackforla/website/pull/5690#pullrequestreview-1675590099) at 2023-10-12 07:24 PM PDT -mademarc,2023-10-20T02:45:23Z,- mademarc commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1771991092) at 2023-10-19 07:45 PM PDT -mademarc,2023-10-20T02:48:29Z,- mademarc submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1689096581) at 2023-10-19 07:48 PM PDT -mademarc,2023-10-20T02:49:24Z,- mademarc commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1771993830) at 2023-10-19 07:49 PM PDT -mademarc,2023-10-20T02:51:55Z,- mademarc submitted pull request review: [5732](https://github.com/hackforla/website/pull/5732#pullrequestreview-1689099299) at 2023-10-19 07:51 PM PDT -mademarc,2023-10-27T01:58:26Z,- mademarc commented on pull request: [5438](https://github.com/hackforla/website/pull/5438#issuecomment-1782171340) at 2023-10-26 06:58 PM PDT -mademarc,2023-10-27T02:04:09Z,- mademarc submitted pull request review: [5438](https://github.com/hackforla/website/pull/5438#pullrequestreview-1700889809) at 2023-10-26 07:04 PM PDT -mademarc,2023-11-17T02:55:47Z,- mademarc commented on pull request: [5898](https://github.com/hackforla/website/pull/5898#issuecomment-1815670412) at 2023-11-16 06:55 PM PST -mademarc,2023-11-17T03:00:13Z,- mademarc submitted pull request review: [5898](https://github.com/hackforla/website/pull/5898#pullrequestreview-1735942343) at 2023-11-16 07:00 PM PST -mademarc,2023-11-17T03:10:52Z,- mademarc commented on pull request: [5904](https://github.com/hackforla/website/pull/5904#issuecomment-1815680407) at 2023-11-16 07:10 PM PST -mademarc,2023-11-17T03:18:05Z,- mademarc submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1735955783) at 2023-11-16 07:18 PM PST -mademarc,2023-11-17T03:18:45Z,- mademarc commented on pull request: [5906](https://github.com/hackforla/website/pull/5906#issuecomment-1815685347) at 2023-11-16 07:18 PM PST -mademarc,2023-11-17T03:26:05Z,- mademarc submitted pull request review: [5906](https://github.com/hackforla/website/pull/5906#pullrequestreview-1735976020) at 2023-11-16 07:26 PM PST -mademarc,2023-11-23T03:40:24Z,- mademarc commented on pull request: [5928](https://github.com/hackforla/website/pull/5928#issuecomment-1823785718) at 2023-11-22 07:40 PM PST -mademarc,2023-11-23T03:42:55Z,- mademarc submitted pull request review: [5928](https://github.com/hackforla/website/pull/5928#pullrequestreview-1745665412) at 2023-11-22 07:42 PM PST -mademarc,2023-11-23T03:43:39Z,- mademarc commented on pull request: [5923](https://github.com/hackforla/website/pull/5923#issuecomment-1823787159) at 2023-11-22 07:43 PM PST -mademarc,2023-11-23T03:45:55Z,- mademarc submitted pull request review: [5923](https://github.com/hackforla/website/pull/5923#pullrequestreview-1745666974) at 2023-11-22 07:45 PM PST -mademarc,2023-12-01T03:08:52Z,- mademarc commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1835384158) at 2023-11-30 07:08 PM PST -mademarc,2023-12-01T03:30:01Z,- mademarc submitted pull request review: [5932](https://github.com/hackforla/website/pull/5932#pullrequestreview-1758943777) at 2023-11-30 07:30 PM PST -mademarc,2024-01-12T21:38:26Z,- mademarc commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1889982778) at 2024-01-12 01:38 PM PST -mademarc,2024-01-12T21:42:39Z,- mademarc submitted pull request review: [6055](https://github.com/hackforla/website/pull/6055#pullrequestreview-1819101441) at 2024-01-12 01:42 PM PST -mademarc,2024-01-12T21:43:33Z,- mademarc commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1889987679) at 2024-01-12 01:43 PM PST -mademarc,2024-01-12T21:46:28Z,- mademarc submitted pull request review: [6081](https://github.com/hackforla/website/pull/6081#pullrequestreview-1819108899) at 2024-01-12 01:46 PM PST -mademarc,2024-01-26T03:14:51Z,- mademarc commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1911347915) at 2024-01-25 07:14 PM PST -mademarc,2024-01-26T03:16:56Z,- mademarc submitted pull request review: [6147](https://github.com/hackforla/website/pull/6147#pullrequestreview-1845023341) at 2024-01-25 07:16 PM PST -mademarc,2024-03-01T03:13:17Z,- mademarc assigned to issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1968089171) at 2024-02-29 07:13 PM PST -mademarc,2024-03-13T02:12:28Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1993133985) at 2024-03-12 07:12 PM PDT -mademarc,2024-03-27T01:59:26Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2021782876) at 2024-03-26 06:59 PM PDT -mademarc,2024-04-05T18:23:47Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2040387996) at 2024-04-05 11:23 AM PDT -mademarc,2024-04-05T18:24:58Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2040391742) at 2024-04-05 11:24 AM PDT -mademarc,2024-04-07T18:46:47Z,- mademarc unassigned from issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2041559199) at 2024-04-07 11:46 AM PDT -mademarc,2024-04-10T02:12:24Z,- mademarc commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-2046334308) at 2024-04-09 07:12 PM PDT -mademarc,2024-11-13T04:24:57Z,- mademarc assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2356704529) at 2024-11-12 08:24 PM PST -mademarc,2025-01-24T03:07:29Z,- mademarc commented on issue: [7407](https://github.com/hackforla/website/issues/7407#issuecomment-2611448955) at 2025-01-23 07:07 PM PST -mademarc,2025-01-24T04:13:03Z,- mademarc opened issue: [7848](https://github.com/hackforla/website/issues/7848) at 2025-01-23 08:13 PM PST -mademarc,2025-02-14T03:08:36Z,- mademarc assigned to issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2444825642) at 2025-02-13 07:08 PM PST -mademarc,2025-02-14T03:08:50Z,- mademarc unassigned from issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:08 PM PST -mademarc,2025-02-14T03:09:19Z,- mademarc assigned to issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:09:33Z,- mademarc unassigned from issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658164312) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:09:44Z,- mademarc assigned to issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165098) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:09:58Z,- mademarc unassigned from issue: [7606](https://github.com/hackforla/website/issues/7606#issuecomment-2658165556) at 2025-02-13 07:09 PM PST -mademarc,2025-02-14T03:22:47Z,- mademarc assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2657932692) at 2025-02-13 07:22 PM PST -mademarc,2025-02-14T03:23:00Z,- mademarc unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658178106) at 2025-02-13 07:23 PM PST -mademarc,2025-02-14T03:30:37Z,- mademarc assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658178106) at 2025-02-13 07:30 PM PST -mademarc,2025-02-14T03:30:51Z,- mademarc unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658185774) at 2025-02-13 07:30 PM PST -mademarc,2025-02-14T03:31:31Z,- mademarc assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658185774) at 2025-02-13 07:31 PM PST -mademarc,2025-02-14T03:31:45Z,- mademarc unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2658186571) at 2025-02-13 07:31 PM PST -mademarc,2025-02-14T03:59:05Z,- mademarc opened issue: [7909](https://github.com/hackforla/website/issues/7909) at 2025-02-13 07:59 PM PST -mademarc,2025-02-14T03:59:06Z,- mademarc assigned to issue: [7909](https://github.com/hackforla/website/issues/7909) at 2025-02-13 07:59 PM PST -mademarc,2025-02-19T03:14:12Z,- mademarc opened issue: [7921](https://github.com/hackforla/website/issues/7921) at 2025-02-18 07:14 PM PST -mademarc,2025-02-19T03:32:38Z,- mademarc opened issue: [7922](https://github.com/hackforla/website/issues/7922) at 2025-02-18 07:32 PM PST -mademarc,2025-02-19T03:32:39Z,- mademarc assigned to issue: [7922](https://github.com/hackforla/website/issues/7922) at 2025-02-18 07:32 PM PST -mademarc,2025-02-19T03:42:13Z,- mademarc opened issue: [7924](https://github.com/hackforla/website/issues/7924) at 2025-02-18 07:42 PM PST -mademarc,2025-02-19T03:42:14Z,- mademarc assigned to issue: [7924](https://github.com/hackforla/website/issues/7924) at 2025-02-18 07:42 PM PST -mademarc,2025-02-19T03:54:45Z,- mademarc opened issue: [7926](https://github.com/hackforla/website/issues/7926) at 2025-02-18 07:54 PM PST -mademarc,2025-02-19T03:54:46Z,- mademarc assigned to issue: [7926](https://github.com/hackforla/website/issues/7926) at 2025-02-18 07:54 PM PST -mademarc,2025-02-25T01:31:10Z,- mademarc unassigned from issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2667448949) at 2025-02-24 05:31 PM PST -mademarc,2025-02-25T01:32:03Z,- mademarc unassigned from issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2667436272) at 2025-02-24 05:32 PM PST -mademarc,2025-02-25T01:32:54Z,- mademarc unassigned from issue: [7922](https://github.com/hackforla/website/issues/7922#event-16442557383) at 2025-02-24 05:32 PM PST -mademarc,2025-02-25T01:33:37Z,- mademarc unassigned from issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2658210594) at 2025-02-24 05:33 PM PST -MarcosG119,6330,SKILLS ISSUE -MarcosG119,2024-02-21T03:24:56Z,- MarcosG119 opened issue: [6330](https://github.com/hackforla/website/issues/6330) at 2024-02-20 07:24 PM PST -MarcosG119,2024-02-21T04:10:49Z,- MarcosG119 assigned to issue: [6330](https://github.com/hackforla/website/issues/6330) at 2024-02-20 08:10 PM PST -MarcosG119,2024-02-25T01:19:19Z,- MarcosG119 assigned to issue: [5839](https://github.com/hackforla/website/issues/5839) at 2024-02-24 05:19 PM PST -MarcosG119,2024-02-25T03:06:43Z,- MarcosG119 commented on issue: [5839](https://github.com/hackforla/website/issues/5839#issuecomment-1962796895) at 2024-02-24 07:06 PM PST -MarcosG119,2024-02-26T22:29:40Z,- MarcosG119 opened pull request: [6381](https://github.com/hackforla/website/pull/6381) at 2024-02-26 02:29 PM PST -MarcosG119,2024-02-27T04:14:42Z,- MarcosG119 assigned to issue: [6257](https://github.com/hackforla/website/issues/6257#issuecomment-1929035661) at 2024-02-26 08:14 PM PST -MarcosG119,2024-02-27T04:17:11Z,- MarcosG119 commented on issue: [6257](https://github.com/hackforla/website/issues/6257#issuecomment-1965757481) at 2024-02-26 08:17 PM PST -MarcosG119,2024-02-27T23:26:18Z,- MarcosG119 opened pull request: [6385](https://github.com/hackforla/website/pull/6385) at 2024-02-27 03:26 PM PST -MarcosG119,2024-02-28T06:05:34Z,- MarcosG119 pull request merged: [6381](https://github.com/hackforla/website/pull/6381#event-11946818506) at 2024-02-27 10:05 PM PST -MarcosG119,2024-02-28T23:56:40Z,- MarcosG119 commented on issue: [6330](https://github.com/hackforla/website/issues/6330#issuecomment-1970127361) at 2024-02-28 03:56 PM PST -MarcosG119,2024-02-28T23:57:03Z,- MarcosG119 closed issue as completed: [6330](https://github.com/hackforla/website/issues/6330#event-11958891201) at 2024-02-28 03:57 PM PST -MarcosG119,2024-02-29T00:01:12Z,- MarcosG119 assigned to issue: [5994](https://github.com/hackforla/website/issues/5994) at 2024-02-28 04:01 PM PST -MarcosG119,2024-02-29T00:03:33Z,- MarcosG119 commented on issue: [5994](https://github.com/hackforla/website/issues/5994#issuecomment-1970136400) at 2024-02-28 04:03 PM PST -MarcosG119,2024-02-29T00:53:12Z,- MarcosG119 commented on issue: [5994](https://github.com/hackforla/website/issues/5994#issuecomment-1970183418) at 2024-02-28 04:53 PM PST -MarcosG119,2024-03-01T03:18:08Z,- MarcosG119 pull request merged: [6385](https://github.com/hackforla/website/pull/6385#event-11974037040) at 2024-02-29 07:18 PM PST -MarcosG119,2024-03-01T03:26:11Z,- MarcosG119 assigned to issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1597628550) at 2024-02-29 07:26 PM PST -MarcosG119,2024-03-01T03:51:59Z,- MarcosG119 commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1972460170) at 2024-02-29 07:51 PM PST -MarcosG119,2024-03-02T02:10:57Z,- MarcosG119 commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1974196995) at 2024-03-01 06:10 PM PST -MarcosG119,2024-03-15T00:24:47Z,- MarcosG119 commented on issue: [4819](https://github.com/hackforla/website/issues/4819#issuecomment-1998688672) at 2024-03-14 05:24 PM PDT -MarcosG119,2024-03-21T02:10:16Z,- MarcosG119 assigned to issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-1963072600) at 2024-03-20 07:10 PM PDT -MarcosG119,2024-03-21T02:26:21Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2011075005) at 2024-03-20 07:26 PM PDT -MarcosG119,2024-03-27T01:59:42Z,- MarcosG119 unassigned from issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2011075005) at 2024-03-26 06:59 PM PDT -MarcosG119,2024-03-27T02:00:35Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2021783658) at 2024-03-26 07:00 PM PDT -MarcosG119,2024-04-16T18:34:55Z,- MarcosG119 assigned to issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2021783658) at 2024-04-16 11:34 AM PDT -MarcosG119,2024-04-16T18:36:30Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2059710743) at 2024-04-16 11:36 AM PDT -MarcosG119,2024-04-17T01:44:49Z,- MarcosG119 commented on issue: [6266](https://github.com/hackforla/website/issues/6266#issuecomment-2060189195) at 2024-04-16 06:44 PM PDT -MarcosG119,2024-04-19T02:38:26Z,- MarcosG119 assigned to issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2046173895) at 2024-04-18 07:38 PM PDT -MarcosG119,2024-04-23T16:26:55Z,- MarcosG119 unassigned from issue: [6188](https://github.com/hackforla/website/issues/6188#issuecomment-2071220826) at 2024-04-23 09:26 AM PDT -marioantonini,6427,SKILLS ISSUE -marioantonini,2024-03-05T04:03:34Z,- marioantonini opened issue: [6427](https://github.com/hackforla/website/issues/6427) at 2024-03-04 08:03 PM PST -marioantonini,2024-03-05T04:10:28Z,- marioantonini assigned to issue: [6427](https://github.com/hackforla/website/issues/6427) at 2024-03-04 08:10 PM PST -marioantonini,2024-03-07T16:42:34Z,- marioantonini assigned to issue: [6153](https://github.com/hackforla/website/issues/6153) at 2024-03-07 08:42 AM PST -marioantonini,2024-03-07T16:54:29Z,- marioantonini commented on issue: [6153](https://github.com/hackforla/website/issues/6153#issuecomment-1983997941) at 2024-03-07 08:54 AM PST -marioantonini,2024-03-08T03:59:38Z,- marioantonini opened pull request: [6439](https://github.com/hackforla/website/pull/6439) at 2024-03-07 07:59 PM PST -marioantonini,2024-03-08T04:24:04Z,- marioantonini commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-1985017791) at 2024-03-07 08:24 PM PST -marioantonini,2024-03-08T06:40:14Z,- marioantonini pull request merged: [6439](https://github.com/hackforla/website/pull/6439#event-12051665358) at 2024-03-07 10:40 PM PST -marioantonini,2024-03-08T20:06:44Z,- marioantonini assigned to issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1984859100) at 2024-03-08 12:06 PM PST -marioantonini,2024-03-08T20:08:34Z,- marioantonini commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1986349900) at 2024-03-08 12:08 PM PST -marioantonini,2024-03-08T20:44:42Z,- marioantonini opened pull request: [6441](https://github.com/hackforla/website/pull/6441) at 2024-03-08 12:44 PM PST -marioantonini,2024-03-10T19:46:05Z,- marioantonini submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1926686715) at 2024-03-10 12:46 PM PDT -marioantonini,2024-03-10T20:35:52Z,- marioantonini commented on pull request: [6440](https://github.com/hackforla/website/pull/6440#issuecomment-1987354643) at 2024-03-10 01:35 PM PDT -marioantonini,2024-03-10T21:16:54Z,- marioantonini submitted pull request review: [6440](https://github.com/hackforla/website/pull/6440#pullrequestreview-1926704832) at 2024-03-10 02:16 PM PDT -marioantonini,2024-03-11T20:33:12Z,- marioantonini pull request merged: [6441](https://github.com/hackforla/website/pull/6441#event-12079804190) at 2024-03-11 01:33 PM PDT -marioantonini,2024-03-11T21:29:15Z,- marioantonini commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-1989478502) at 2024-03-11 02:29 PM PDT -marioantonini,2024-03-12T01:16:53Z,- marioantonini assigned to issue: [6096](https://github.com/hackforla/website/issues/6096) at 2024-03-11 06:16 PM PDT -marioantonini,2024-03-12T01:18:25Z,- marioantonini commented on issue: [6096](https://github.com/hackforla/website/issues/6096#issuecomment-1989732777) at 2024-03-11 06:18 PM PDT -marioantonini,2024-03-15T15:16:55Z,- marioantonini assigned to issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1977550201) at 2024-03-15 08:16 AM PDT -marioantonini,2024-03-15T15:18:48Z,- marioantonini commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1999890799) at 2024-03-15 08:18 AM PDT -marioantonini,2024-03-15T22:27:31Z,- marioantonini commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-2000583287) at 2024-03-15 03:27 PM PDT -marioantonini,2024-03-15T23:39:35Z,- marioantonini opened pull request: [6468](https://github.com/hackforla/website/pull/6468) at 2024-03-15 04:39 PM PDT -marioantonini,2024-03-18T04:27:18Z,- marioantonini pull request merged: [6468](https://github.com/hackforla/website/pull/6468#event-12145712975) at 2024-03-17 09:27 PM PDT -marioantonini,2024-03-19T17:51:49Z,- marioantonini commented on issue: [6427](https://github.com/hackforla/website/issues/6427#issuecomment-2007798969) at 2024-03-19 10:51 AM PDT -marioantonini,2024-03-19T18:01:57Z,- marioantonini assigned to issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-1999127995) at 2024-03-19 11:01 AM PDT -marioantonini,2024-03-19T18:03:45Z,- marioantonini commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-2007820078) at 2024-03-19 11:03 AM PDT -marioantonini,2024-03-21T16:25:35Z,- marioantonini commented on issue: [4821](https://github.com/hackforla/website/issues/4821#issuecomment-2012882652) at 2024-03-21 09:25 AM PDT -marioantonini,2024-03-21T22:49:15Z,- marioantonini opened pull request: [6502](https://github.com/hackforla/website/pull/6502) at 2024-03-21 03:49 PM PDT -marioantonini,2024-03-24T17:56:03Z,- marioantonini closed issue as completed: [6427](https://github.com/hackforla/website/issues/6427#event-12227192452) at 2024-03-24 10:56 AM PDT -marioantonini,2024-03-24T18:31:29Z,- marioantonini commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016895756) at 2024-03-24 11:31 AM PDT -marioantonini,2024-03-24T19:01:05Z,- marioantonini commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016908353) at 2024-03-24 12:01 PM PDT -marioantonini,2024-03-24T20:55:03Z,- marioantonini opened issue: [6511](https://github.com/hackforla/website/issues/6511) at 2024-03-24 01:55 PM PDT -marioantonini,2024-03-24T21:14:35Z,- marioantonini opened issue: [6512](https://github.com/hackforla/website/issues/6512) at 2024-03-24 02:14 PM PDT -marioantonini,2024-03-24T21:23:30Z,- marioantonini opened issue: [6513](https://github.com/hackforla/website/issues/6513) at 2024-03-24 02:23 PM PDT -marioantonini,2024-03-24T21:29:13Z,- marioantonini opened issue: [6514](https://github.com/hackforla/website/issues/6514) at 2024-03-24 02:29 PM PDT -marioantonini,2024-03-24T21:42:03Z,- marioantonini opened issue: [6515](https://github.com/hackforla/website/issues/6515) at 2024-03-24 02:42 PM PDT -marioantonini,2024-03-24T21:54:24Z,- marioantonini commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016957585) at 2024-03-24 02:54 PM PDT -marioantonini,2024-03-24T22:33:33Z,- marioantonini pull request merged: [6502](https://github.com/hackforla/website/pull/6502#event-12227761721) at 2024-03-24 03:33 PM PDT -marioantonini,2024-03-25T00:12:36Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017004503) at 2024-03-24 05:12 PM PDT -marioantonini,2024-03-25T00:23:35Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017010108) at 2024-03-24 05:23 PM PDT -marioantonini,2024-03-25T00:36:27Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017020447) at 2024-03-24 05:36 PM PDT -marioantonini,2024-03-25T01:35:05Z,- marioantonini commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2017056255) at 2024-03-24 06:35 PM PDT -marioantonini,2024-04-18T19:06:03Z,- marioantonini assigned to issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064982041) at 2024-04-18 12:06 PM PDT -marioantonini,2024-04-18T19:07:35Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064987612) at 2024-04-18 12:07 PM PDT -marioantonini,2024-04-20T03:04:51Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2067527103) at 2024-04-19 08:04 PM PDT -marioantonini,2024-04-25T22:44:46Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078291866) at 2024-04-25 03:44 PM PDT -marioantonini,2024-04-26T00:36:29Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078395211) at 2024-04-25 05:36 PM PDT -marioantonini,2024-05-03T16:39:54Z,- marioantonini commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2093374242) at 2024-05-03 09:39 AM PDT -marioantonini,2024-05-03T20:13:59Z,- marioantonini opened pull request: [6811](https://github.com/hackforla/website/pull/6811) at 2024-05-03 01:13 PM PDT -marioantonini,2024-05-03T22:16:03Z,- marioantonini pull request merged: [6811](https://github.com/hackforla/website/pull/6811#event-12701670566) at 2024-05-03 03:16 PM PDT -marioantonini,2024-05-07T23:29:35Z,- marioantonini commented on pull request: [6816](https://github.com/hackforla/website/pull/6816#issuecomment-2099471527) at 2024-05-07 04:29 PM PDT -marioantonini,2024-05-08T21:33:22Z,- marioantonini commented on pull request: [6839](https://github.com/hackforla/website/pull/6839#issuecomment-2101517419) at 2024-05-08 02:33 PM PDT -marioantonini,2024-05-08T21:38:21Z,- marioantonini submitted pull request review: [6839](https://github.com/hackforla/website/pull/6839#pullrequestreview-2046773366) at 2024-05-08 02:38 PM PDT -marioantonini,2024-05-10T02:06:56Z,- marioantonini assigned to issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2005059827) at 2024-05-09 07:06 PM PDT -marioantonini,2024-05-10T02:10:01Z,- marioantonini commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2103721294) at 2024-05-09 07:10 PM PDT -marioantonini,2024-05-10T17:25:33Z,- marioantonini commented on issue: [5098](https://github.com/hackforla/website/issues/5098#issuecomment-2104994527) at 2024-05-10 10:25 AM PDT -marioantonini,2024-05-10T17:25:33Z,- marioantonini closed issue as completed: [5098](https://github.com/hackforla/website/issues/5098#event-12772263635) at 2024-05-10 10:25 AM PDT -marioantonini,2024-05-10T17:32:58Z,- marioantonini assigned to issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2030924477) at 2024-05-10 10:32 AM PDT -marioantonini,2024-05-10T17:33:37Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2105005219) at 2024-05-10 10:33 AM PDT -marioantonini,2024-05-10T18:13:16Z,- marioantonini opened issue: [6847](https://github.com/hackforla/website/issues/6847) at 2024-05-10 11:13 AM PDT -marioantonini,2024-05-10T18:49:12Z,- marioantonini opened issue: [6848](https://github.com/hackforla/website/issues/6848) at 2024-05-10 11:49 AM PDT -marioantonini,2024-05-10T18:52:47Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2105113473) at 2024-05-10 11:52 AM PDT -marioantonini,2024-05-15T04:25:12Z,- marioantonini assigned to issue: [6847](https://github.com/hackforla/website/issues/6847) at 2024-05-14 09:25 PM PDT -marioantonini,2024-05-15T17:53:40Z,- marioantonini assigned to issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2111473424) at 2024-05-15 10:53 AM PDT -marioantonini,2024-05-15T17:59:23Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2113133097) at 2024-05-15 10:59 AM PDT -marioantonini,2024-05-15T18:50:44Z,- marioantonini commented on issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2113237729) at 2024-05-15 11:50 AM PDT -marioantonini,2024-05-15T18:51:01Z,- marioantonini unassigned from issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2113237729) at 2024-05-15 11:51 AM PDT -marioantonini,2024-05-17T22:51:49Z,- marioantonini opened issue: [6858](https://github.com/hackforla/website/issues/6858) at 2024-05-17 03:51 PM PDT -marioantonini,2024-05-17T22:54:26Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2118466945) at 2024-05-17 03:54 PM PDT -marioantonini,2024-05-17T22:55:43Z,- marioantonini unassigned from issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2113124181) at 2024-05-17 03:55 PM PDT -marioantonini,2024-05-18T01:23:46Z,- marioantonini submitted pull request review: [6854](https://github.com/hackforla/website/pull/6854#pullrequestreview-2064524686) at 2024-05-17 06:23 PM PDT -marioantonini,2024-05-19T19:28:33Z,- marioantonini assigned to issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2113124181) at 2024-05-19 12:28 PM PDT -marioantonini,2024-05-19T19:34:28Z,- marioantonini unassigned from issue: [6848](https://github.com/hackforla/website/issues/6848#issuecomment-2119336517) at 2024-05-19 12:34 PM PDT -marioantonini,2024-05-19T19:39:24Z,- marioantonini commented on issue: [6224](https://github.com/hackforla/website/issues/6224#issuecomment-2119339203) at 2024-05-19 12:39 PM PDT -marioantonini,2024-05-19T19:39:35Z,- marioantonini closed issue as completed: [6224](https://github.com/hackforla/website/issues/6224#event-12859098378) at 2024-05-19 12:39 PM PDT -marioantonini,2024-05-19T19:46:56Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2119340959) at 2024-05-19 12:46 PM PDT -marioantonini,2024-05-19T20:03:22Z,- marioantonini assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2078040546) at 2024-05-19 01:03 PM PDT -marioantonini,2024-05-19T20:05:25Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2119345324) at 2024-05-19 01:05 PM PDT -marioantonini,2024-05-22T00:03:08Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2123615448) at 2024-05-21 05:03 PM PDT -marioantonini,2024-06-05T23:01:40Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2151098327) at 2024-06-05 04:01 PM PDT -marioantonini,2024-06-07T23:25:35Z,- marioantonini submitted pull request review: [6854](https://github.com/hackforla/website/pull/6854#pullrequestreview-2105496454) at 2024-06-07 04:25 PM PDT -marioantonini,2024-06-07T23:31:30Z,- marioantonini commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2155693871) at 2024-06-07 04:31 PM PDT -marioantonini,2024-06-07T23:43:06Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2155699786) at 2024-06-07 04:43 PM PDT -marioantonini,2024-06-10T19:12:17Z,- marioantonini commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2159109541) at 2024-06-10 12:12 PM PDT -marioantonini,2024-06-23T00:08:01Z,- marioantonini commented on issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2184258005) at 2024-06-22 05:08 PM PDT -marioantonini,2024-09-09T08:35:31Z,- marioantonini unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2184258005) at 2024-09-09 01:35 AM PDT -MarkWiltberger,3915,SKILLS ISSUE -MarkWiltberger,2023-02-01T04:58:30Z,- MarkWiltberger opened issue: [3915](https://github.com/hackforla/website/issues/3915) at 2023-01-31 08:58 PM PST -MarkWiltberger,2023-02-01T04:58:36Z,- MarkWiltberger assigned to issue: [3915](https://github.com/hackforla/website/issues/3915) at 2023-01-31 08:58 PM PST -MarkWiltberger,2023-02-04T18:02:41Z,- MarkWiltberger assigned to issue: [3853](https://github.com/hackforla/website/issues/3853) at 2023-02-04 10:02 AM PST -MarkWiltberger,2023-02-04T20:49:53Z,- MarkWiltberger commented on issue: [3853](https://github.com/hackforla/website/issues/3853#issuecomment-1416847107) at 2023-02-04 12:49 PM PST -MarkWiltberger,2023-02-05T01:50:18Z,- MarkWiltberger opened pull request: [3935](https://github.com/hackforla/website/pull/3935) at 2023-02-04 05:50 PM PST -MarkWiltberger,2023-02-05T02:14:05Z,- MarkWiltberger commented on issue: [3915](https://github.com/hackforla/website/issues/3915#issuecomment-1416902411) at 2023-02-04 06:14 PM PST -MarkWiltberger,2023-02-06T21:01:11Z,- MarkWiltberger commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1419745344) at 2023-02-06 01:01 PM PST -MarkWiltberger,2023-02-06T22:30:47Z,- MarkWiltberger commented on pull request: [3930](https://github.com/hackforla/website/pull/3930#issuecomment-1419873682) at 2023-02-06 02:30 PM PST -MarkWiltberger,2023-02-06T23:16:13Z,- MarkWiltberger assigned to issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416910718) at 2023-02-06 03:16 PM PST -MarkWiltberger,2023-02-06T23:23:00Z,- MarkWiltberger commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1419929525) at 2023-02-06 03:23 PM PST -MarkWiltberger,2023-02-07T01:54:17Z,- MarkWiltberger pull request merged: [3935](https://github.com/hackforla/website/pull/3935#event-8453346930) at 2023-02-06 05:54 PM PST -MarkWiltberger,2023-02-07T23:32:23Z,- MarkWiltberger commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1421637583) at 2023-02-07 03:32 PM PST -MarkWiltberger,2023-02-08T02:17:58Z,- MarkWiltberger unassigned from issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1421882034) at 2023-02-07 06:17 PM PST -MarkWiltberger,2023-02-10T22:13:35Z,- MarkWiltberger commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1426407903) at 2023-02-10 02:13 PM PST -MarkWiltberger,2023-02-11T21:56:23Z,- MarkWiltberger submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1294629952) at 2023-02-11 01:56 PM PST -MarkWiltberger,2023-02-12T16:28:59Z,- MarkWiltberger commented on issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1427073683) at 2023-02-12 08:28 AM PST -MarkWiltberger,2023-02-14T21:42:14Z,- MarkWiltberger assigned to issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416871780) at 2023-02-14 01:42 PM PST -MarkWiltberger,2023-02-14T21:45:45Z,- MarkWiltberger commented on issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1430418099) at 2023-02-14 01:45 PM PST -MarkWiltberger,2023-02-14T22:07:57Z,- MarkWiltberger commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1430439557) at 2023-02-14 02:07 PM PST -MarkWiltberger,2023-02-15T02:59:37Z,- MarkWiltberger opened pull request: [3980](https://github.com/hackforla/website/pull/3980) at 2023-02-14 06:59 PM PST -MarkWiltberger,2023-02-15T04:40:12Z,- MarkWiltberger submitted pull request review: [3961](https://github.com/hackforla/website/pull/3961#pullrequestreview-1298790191) at 2023-02-14 08:40 PM PST -MarkWiltberger,2023-02-15T21:05:05Z,- MarkWiltberger commented on pull request: [3982](https://github.com/hackforla/website/pull/3982#issuecomment-1432031275) at 2023-02-15 01:05 PM PST -MarkWiltberger,2023-02-17T02:21:03Z,- MarkWiltberger pull request merged: [3980](https://github.com/hackforla/website/pull/3980#event-8542914618) at 2023-02-16 06:21 PM PST -MarkWiltberger,2023-02-26T17:37:21Z,- MarkWiltberger assigned to issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1244901699) at 2023-02-26 09:37 AM PST -MarkWiltberger,2023-02-26T17:47:21Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1445418599) at 2023-02-26 09:47 AM PST -MarkWiltberger,2023-02-26T17:54:04Z,- MarkWiltberger commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1445419822) at 2023-02-26 09:54 AM PST -MarkWiltberger,2023-02-27T19:40:17Z,- MarkWiltberger submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1316312329) at 2023-02-27 11:40 AM PST -MarkWiltberger,2023-03-01T22:38:10Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1450952750) at 2023-03-01 02:38 PM PST -MarkWiltberger,2023-03-02T22:28:27Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1452644949) at 2023-03-02 02:28 PM PST -MarkWiltberger,2023-03-04T22:59:29Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1454914306) at 2023-03-04 02:59 PM PST -MarkWiltberger,2023-03-04T23:21:17Z,- MarkWiltberger commented on issue: [3915](https://github.com/hackforla/website/issues/3915#issuecomment-1454919560) at 2023-03-04 03:21 PM PST -MarkWiltberger,2023-03-04T23:21:18Z,- MarkWiltberger closed issue as completed: [3915](https://github.com/hackforla/website/issues/3915#event-8667002196) at 2023-03-04 03:21 PM PST -MarkWiltberger,2023-03-06T22:53:57Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1457171378) at 2023-03-06 02:53 PM PST -MarkWiltberger,2023-03-07T22:39:01Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1458973886) at 2023-03-07 02:39 PM PST -MarkWiltberger,2023-03-08T21:20:26Z,- MarkWiltberger commented on pull request: [4119](https://github.com/hackforla/website/pull/4119#issuecomment-1460891787) at 2023-03-08 01:20 PM PST -MarkWiltberger,2023-03-08T21:42:49Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1460915684) at 2023-03-08 01:42 PM PST -MarkWiltberger,2023-03-09T22:54:50Z,- MarkWiltberger submitted pull request review: [4119](https://github.com/hackforla/website/pull/4119#pullrequestreview-1333932405) at 2023-03-09 02:54 PM PST -MarkWiltberger,2023-03-10T22:23:50Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1464555219) at 2023-03-10 02:23 PM PST -MarkWiltberger,2023-03-11T22:51:09Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1465043663) at 2023-03-11 03:51 PM PDT -MarkWiltberger,2023-03-12T16:28:29Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1465241638) at 2023-03-12 09:28 AM PDT -MarkWiltberger,2023-03-13T20:55:42Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1466943659) at 2023-03-13 01:55 PM PDT -MarkWiltberger,2023-03-15T21:14:24Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1470853096) at 2023-03-15 02:14 PM PDT -MarkWiltberger,2023-03-17T21:34:01Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1474423528) at 2023-03-17 02:34 PM PDT -MarkWiltberger,2023-03-19T16:27:32Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1475311738) at 2023-03-19 09:27 AM PDT -MarkWiltberger,2023-03-20T21:48:37Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1476980386) at 2023-03-20 02:48 PM PDT -MarkWiltberger,2023-03-21T21:35:14Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1478614001) at 2023-03-21 02:35 PM PDT -MarkWiltberger,2023-03-25T20:39:45Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1483917272) at 2023-03-25 01:39 PM PDT -MarkWiltberger,2023-03-27T21:58:31Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1485912940) at 2023-03-27 02:58 PM PDT -MarkWiltberger,2023-03-29T22:09:05Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1489392846) at 2023-03-29 03:09 PM PDT -MarkWiltberger,2023-04-09T14:30:06Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1501142297) at 2023-04-09 07:30 AM PDT -MarkWiltberger,2023-04-13T22:51:37Z,- MarkWiltberger opened issue: [4503](https://github.com/hackforla/website/issues/4503) at 2023-04-13 03:51 PM PDT -MarkWiltberger,2023-04-16T16:28:04Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1510425921) at 2023-04-16 09:28 AM PDT -MarkWiltberger,2023-04-23T16:53:22Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1519109317) at 2023-04-23 09:53 AM PDT -MarkWiltberger,2023-04-30T17:03:58Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1529080095) at 2023-04-30 10:03 AM PDT -MarkWiltberger,2023-05-07T16:51:37Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1537491093) at 2023-05-07 09:51 AM PDT -MarkWiltberger,2023-05-14T16:51:12Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1546944759) at 2023-05-14 09:51 AM PDT -MarkWiltberger,2023-05-21T17:06:11Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1556226809) at 2023-05-21 10:06 AM PDT -MarkWiltberger,2023-05-28T16:13:56Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1566186927) at 2023-05-28 09:13 AM PDT -MarkWiltberger,2023-06-04T16:12:08Z,- MarkWiltberger commented on issue: [2932](https://github.com/hackforla/website/issues/2932#issuecomment-1575626092) at 2023-06-04 09:12 AM PDT -MarkWiltberger,2023-08-03T13:57:54Z,- MarkWiltberger commented on pull request: [5112](https://github.com/hackforla/website/pull/5112#issuecomment-1664034190) at 2023-08-03 06:57 AM PDT -MarkWiltberger,2023-08-04T21:55:02Z,- MarkWiltberger submitted pull request review: [5112](https://github.com/hackforla/website/pull/5112#pullrequestreview-1563602086) at 2023-08-04 02:55 PM PDT -MattChau01,4973,SKILLS ISSUE -MattChau01,2023-07-18T01:54:06Z,- MattChau01 opened issue: [4973](https://github.com/hackforla/website/issues/4973) at 2023-07-17 06:54 PM PDT -MattChau01,2023-07-18T02:31:50Z,- MattChau01 assigned to issue: [4973](https://github.com/hackforla/website/issues/4973) at 2023-07-17 07:31 PM PDT -MattChau01,2023-07-20T22:06:05Z,- MattChau01 assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1484017168) at 2023-07-20 03:06 PM PDT -MattChau01,2023-07-20T22:29:30Z,- MattChau01 unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1644675439) at 2023-07-20 03:29 PM PDT -MattChau01,2023-07-23T17:01:32Z,- MattChau01 assigned to issue: [4948](https://github.com/hackforla/website/issues/4948#issuecomment-1639479285) at 2023-07-23 10:01 AM PDT -MattChau01,2023-07-23T19:29:53Z,- MattChau01 opened pull request: [5054](https://github.com/hackforla/website/pull/5054) at 2023-07-23 12:29 PM PDT -MattChau01,2023-07-23T19:34:15Z,- MattChau01 commented on issue: [4948](https://github.com/hackforla/website/issues/4948#issuecomment-1646941787) at 2023-07-23 12:34 PM PDT -MattChau01,2023-07-25T19:06:45Z,- MattChau01 commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1650383266) at 2023-07-25 12:06 PM PDT -MattChau01,2023-07-27T03:55:17Z,- MattChau01 commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1652871477) at 2023-07-26 08:55 PM PDT -MattChau01,2023-07-27T04:45:45Z,- MattChau01 pull request merged: [5054](https://github.com/hackforla/website/pull/5054#event-9931236163) at 2023-07-26 09:45 PM PDT -MattChau01,2023-07-27T20:35:57Z,- MattChau01 assigned to issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1639541664) at 2023-07-27 01:35 PM PDT -MattChau01,2023-07-27T20:37:54Z,- MattChau01 commented on issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1654535514) at 2023-07-27 01:37 PM PDT -MattChau01,2023-07-29T06:00:53Z,- MattChau01 opened pull request: [5112](https://github.com/hackforla/website/pull/5112) at 2023-07-28 11:00 PM PDT -MattChau01,2023-07-29T06:04:47Z,- MattChau01 commented on issue: [5003](https://github.com/hackforla/website/issues/5003#issuecomment-1656569154) at 2023-07-28 11:04 PM PDT -MattChau01,2023-08-03T17:40:55Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1664380607) at 2023-08-03 10:40 AM PDT -MattChau01,2023-08-03T17:45:56Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1664386861) at 2023-08-03 10:45 AM PDT -MattChau01,2023-08-05T06:44:25Z,- MattChau01 pull request merged: [5112](https://github.com/hackforla/website/pull/5112#event-10014600205) at 2023-08-04 11:44 PM PDT -MattChau01,2023-08-08T17:06:53Z,- MattChau01 assigned to issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1641387210) at 2023-08-08 10:06 AM PDT -MattChau01,2023-08-08T17:20:50Z,- MattChau01 commented on issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1670015075) at 2023-08-08 10:20 AM PDT -MattChau01,2023-08-10T19:52:50Z,- MattChau01 commented on issue: [5009](https://github.com/hackforla/website/issues/5009#issuecomment-1673821223) at 2023-08-10 12:52 PM PDT -MattChau01,2023-08-11T16:06:55Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1675027556) at 2023-08-11 09:06 AM PDT -MattChau01,2023-08-16T03:12:12Z,- MattChau01 submitted pull request review: [5236](https://github.com/hackforla/website/pull/5236#pullrequestreview-1579732478) at 2023-08-15 08:12 PM PDT -MattChau01,2023-08-23T16:07:52Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1690237879) at 2023-08-23 09:07 AM PDT -MattChau01,2023-08-23T17:44:36Z,- MattChau01 commented on pull request: [5283](https://github.com/hackforla/website/pull/5283#issuecomment-1690379091) at 2023-08-23 10:44 AM PDT -MattChau01,2023-08-23T17:44:45Z,- MattChau01 commented on pull request: [5263](https://github.com/hackforla/website/pull/5263#issuecomment-1690379274) at 2023-08-23 10:44 AM PDT -MattChau01,2023-08-24T04:48:01Z,- MattChau01 submitted pull request review: [5263](https://github.com/hackforla/website/pull/5263#pullrequestreview-1592771584) at 2023-08-23 09:48 PM PDT -MattChau01,2023-08-25T05:56:05Z,- MattChau01 submitted pull request review: [5283](https://github.com/hackforla/website/pull/5283#pullrequestreview-1594925941) at 2023-08-24 10:56 PM PDT -MattChau01,2023-08-30T02:25:40Z,- MattChau01 commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698395120) at 2023-08-29 07:25 PM PDT -MattChau01,2023-09-01T05:20:54Z,- MattChau01 submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1606241778) at 2023-08-31 10:20 PM PDT -MattChau01,2023-09-05T04:58:14Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1705944660) at 2023-09-04 09:58 PM PDT -MattChau01,2023-09-19T04:38:56Z,- MattChau01 assigned to issue: [4961](https://github.com/hackforla/website/issues/4961) at 2023-09-18 09:38 PM PDT -MattChau01,2023-09-19T04:41:11Z,- MattChau01 commented on issue: [4961](https://github.com/hackforla/website/issues/4961#issuecomment-1724821853) at 2023-09-18 09:41 PM PDT -MattChau01,2023-09-20T02:58:10Z,- MattChau01 commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1726806267) at 2023-09-19 07:58 PM PDT -MattChau01,2023-09-23T01:20:45Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1732168921) at 2023-09-22 06:20 PM PDT -MattChau01,2023-09-23T03:52:52Z,- MattChau01 submitted pull request review: [5558](https://github.com/hackforla/website/pull/5558#pullrequestreview-1640776429) at 2023-09-22 08:52 PM PDT -MattChau01,2023-09-23T04:23:36Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732206569) at 2023-09-22 09:23 PM PDT -MattChau01,2023-09-24T21:46:23Z,- MattChau01 submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1641125206) at 2023-09-24 02:46 PM PDT -MattChau01,2023-09-25T01:28:34Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732767012) at 2023-09-24 06:28 PM PDT -MattChau01,2023-09-25T04:28:35Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732888527) at 2023-09-24 09:28 PM PDT -MattChau01,2023-09-25T05:46:55Z,- MattChau01 commented on pull request: [5565](https://github.com/hackforla/website/pull/5565#issuecomment-1732960373) at 2023-09-24 10:46 PM PDT -MattChau01,2023-09-26T06:48:32Z,- MattChau01 opened pull request: [5586](https://github.com/hackforla/website/pull/5586) at 2023-09-25 11:48 PM PDT -MattChau01,2023-09-27T01:36:15Z,- MattChau01 pull request merged: [5586](https://github.com/hackforla/website/pull/5586#event-10481543146) at 2023-09-26 06:36 PM PDT -MattChau01,2023-09-28T04:57:41Z,- MattChau01 submitted pull request review: [5565](https://github.com/hackforla/website/pull/5565#pullrequestreview-1647888143) at 2023-09-27 09:57 PM PDT -MattChau01,2023-09-28T05:02:08Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1738434526) at 2023-09-27 10:02 PM PDT -MattChau01,2023-09-30T06:30:14Z,- MattChau01 submitted pull request review: [5616](https://github.com/hackforla/website/pull/5616#pullrequestreview-1651647437) at 2023-09-29 11:30 PM PDT -MattChau01,2023-10-06T04:40:28Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1749973776) at 2023-10-05 09:40 PM PDT -MattChau01,2023-10-06T04:43:34Z,- MattChau01 commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1749975708) at 2023-10-05 09:43 PM PDT -MattChau01,2023-10-06T04:50:36Z,- MattChau01 commented on pull request: [5661](https://github.com/hackforla/website/pull/5661#issuecomment-1749980160) at 2023-10-05 09:50 PM PDT -MattChau01,2023-10-07T04:30:17Z,- MattChau01 commented on pull request: [5665](https://github.com/hackforla/website/pull/5665#issuecomment-1751596327) at 2023-10-06 09:30 PM PDT -MattChau01,2023-10-07T04:58:57Z,- MattChau01 submitted pull request review: [5664](https://github.com/hackforla/website/pull/5664#pullrequestreview-1662997759) at 2023-10-06 09:58 PM PDT -MattChau01,2023-10-09T03:27:00Z,- MattChau01 submitted pull request review: [5661](https://github.com/hackforla/website/pull/5661#pullrequestreview-1663686993) at 2023-10-08 08:27 PM PDT -MattChau01,2023-10-09T03:33:48Z,- MattChau01 submitted pull request review: [5665](https://github.com/hackforla/website/pull/5665#pullrequestreview-1663689302) at 2023-10-08 08:33 PM PDT -MattChau01,2023-10-13T05:48:01Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1760914416) at 2023-10-12 10:48 PM PDT -MattChau01,2023-10-16T19:26:01Z,- MattChau01 commented on pull request: [5718](https://github.com/hackforla/website/pull/5718#issuecomment-1765137364) at 2023-10-16 12:26 PM PDT -MattChau01,2023-10-17T18:22:50Z,- MattChau01 submitted pull request review: [5718](https://github.com/hackforla/website/pull/5718#pullrequestreview-1683085550) at 2023-10-17 11:22 AM PDT -MattChau01,2023-10-18T03:08:53Z,- MattChau01 commented on pull request: [5731](https://github.com/hackforla/website/pull/5731#issuecomment-1767550971) at 2023-10-17 08:08 PM PDT -MattChau01,2023-10-20T17:05:10Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1773091872) at 2023-10-20 10:05 AM PDT -MattChau01,2023-10-20T17:09:44Z,- MattChau01 submitted pull request review: [5731](https://github.com/hackforla/website/pull/5731#pullrequestreview-1690576715) at 2023-10-20 10:09 AM PDT -MattChau01,2023-10-26T04:36:15Z,- MattChau01 commented on pull request: [5785](https://github.com/hackforla/website/pull/5785#issuecomment-1780401294) at 2023-10-25 09:36 PM PDT -MattChau01,2023-10-26T04:37:18Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1780401996) at 2023-10-25 09:37 PM PDT -MattChau01,2023-10-27T06:38:10Z,- MattChau01 submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1701086670) at 2023-10-26 11:38 PM PDT -MattChau01,2023-10-27T06:40:56Z,- MattChau01 commented on issue: [4973](https://github.com/hackforla/website/issues/4973#issuecomment-1782381232) at 2023-10-26 11:40 PM PDT -MattChau01,2023-10-29T20:53:39Z,- MattChau01 submitted pull request review: [5788](https://github.com/hackforla/website/pull/5788#pullrequestreview-1703034891) at 2023-10-29 01:53 PM PDT -MattChau01,2023-11-03T20:06:23Z,- MattChau01 closed issue as completed: [4973](https://github.com/hackforla/website/issues/4973#event-10860132254) at 2023-11-03 01:06 PM PDT -MattChau01,2023-11-04T23:50:11Z,- MattChau01 commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1793583259) at 2023-11-04 03:50 PM PST -MattChau01,2023-11-05T00:07:10Z,- MattChau01 submitted pull request review: [5828](https://github.com/hackforla/website/pull/5828#pullrequestreview-1713890059) at 2023-11-04 04:07 PM PST -MattChau01,2023-11-13T01:55:52Z,- MattChau01 commented on pull request: [5893](https://github.com/hackforla/website/pull/5893#issuecomment-1807363046) at 2023-11-12 05:55 PM PST -MattChau01,2023-11-16T04:48:05Z,- MattChau01 submitted pull request review: [5893](https://github.com/hackforla/website/pull/5893#pullrequestreview-1733500030) at 2023-11-15 08:48 PM PST -MattChau01,2023-11-19T22:52:39Z,- MattChau01 commented on pull request: [5922](https://github.com/hackforla/website/pull/5922#issuecomment-1818004090) at 2023-11-19 02:52 PM PST -MattChau01,2023-11-22T04:54:25Z,- MattChau01 submitted pull request review: [5922](https://github.com/hackforla/website/pull/5922#pullrequestreview-1743565845) at 2023-11-21 08:54 PM PST -MattChau01,2023-12-13T06:23:48Z,- MattChau01 commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1853336221) at 2023-12-12 10:23 PM PST -MattChau01,2023-12-15T01:39:09Z,- MattChau01 submitted pull request review: [6003](https://github.com/hackforla/website/pull/6003#pullrequestreview-1783004868) at 2023-12-14 05:39 PM PST -MattChau01,2024-01-02T05:02:38Z,- MattChau01 commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1873622405) at 2024-01-01 09:02 PM PST -MattChau01,2024-01-04T03:43:48Z,- MattChau01 submitted pull request review: [6025](https://github.com/hackforla/website/pull/6025#pullrequestreview-1803388403) at 2024-01-03 07:43 PM PST -MattChau01,2024-01-19T05:44:13Z,- MattChau01 commented on pull request: [6131](https://github.com/hackforla/website/pull/6131#issuecomment-1899805999) at 2024-01-18 09:44 PM PST -MattChau01,2024-01-28T03:26:25Z,- MattChau01 commented on pull request: [6186](https://github.com/hackforla/website/pull/6186#issuecomment-1913432540) at 2024-01-27 07:26 PM PST -MattChau01,2024-01-28T03:30:17Z,- MattChau01 submitted pull request review: [6186](https://github.com/hackforla/website/pull/6186#pullrequestreview-1847376465) at 2024-01-27 07:30 PM PST -MattChau01,2024-02-09T05:26:04Z,- MattChau01 commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1935355358) at 2024-02-08 09:26 PM PST -MattChau01,2024-02-10T06:03:58Z,- MattChau01 submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1873483072) at 2024-02-09 10:03 PM PST -matthewmpan,4614,SKILLS ISSUE -matthewmpan,2023-05-09T03:22:07Z,- matthewmpan opened issue: [4614](https://github.com/hackforla/website/issues/4614) at 2023-05-08 08:22 PM PDT -matthewmpan,2023-05-09T03:54:23Z,- matthewmpan assigned to issue: [4614](https://github.com/hackforla/website/issues/4614) at 2023-05-08 08:54 PM PDT -matthewmpan,2023-05-09T05:53:39Z,- matthewmpan assigned to issue: [4512](https://github.com/hackforla/website/issues/4512#issuecomment-1509624893) at 2023-05-08 10:53 PM PDT -matthewmpan,2023-05-09T07:01:35Z,- matthewmpan opened pull request: [4639](https://github.com/hackforla/website/pull/4639) at 2023-05-09 12:01 AM PDT -matthewmpan,2023-05-10T02:41:19Z,- matthewmpan commented on pull request: [4640](https://github.com/hackforla/website/pull/4640#issuecomment-1541215348) at 2023-05-09 07:41 PM PDT -matthewmpan,2023-05-10T03:26:17Z,- matthewmpan submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1419725131) at 2023-05-09 08:26 PM PDT -matthewmpan,2023-05-10T19:28:06Z,- matthewmpan commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1542696121) at 2023-05-10 12:28 PM PDT -matthewmpan,2023-05-10T20:02:54Z,- matthewmpan submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1421301234) at 2023-05-10 01:02 PM PDT -matthewmpan,2023-05-12T02:34:00Z,- matthewmpan commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1545020912) at 2023-05-11 07:34 PM PDT -matthewmpan,2023-05-15T04:21:38Z,- matthewmpan pull request merged: [4639](https://github.com/hackforla/website/pull/4639#event-9241901508) at 2023-05-14 09:21 PM PDT -matthewmpan,2023-05-15T05:46:41Z,- matthewmpan commented on pull request: [4639](https://github.com/hackforla/website/pull/4639#issuecomment-1547225878) at 2023-05-14 10:46 PM PDT -matthewmpan,2023-05-15T06:12:52Z,- matthewmpan commented on pull request: [4666](https://github.com/hackforla/website/pull/4666#issuecomment-1547247433) at 2023-05-14 11:12 PM PDT -matthewmpan,2023-05-15T06:19:27Z,- matthewmpan submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1425831358) at 2023-05-14 11:19 PM PDT -matthewmpan,2023-05-15T06:24:12Z,- matthewmpan commented on pull request: [4667](https://github.com/hackforla/website/pull/4667#issuecomment-1547256368) at 2023-05-14 11:24 PM PDT -matthewmpan,2023-05-15T06:34:17Z,- matthewmpan submitted pull request review: [4667](https://github.com/hackforla/website/pull/4667#pullrequestreview-1425848115) at 2023-05-14 11:34 PM PDT -matthewmpan,2023-05-15T07:09:26Z,- matthewmpan assigned to issue: [4486](https://github.com/hackforla/website/issues/4486) at 2023-05-15 12:09 AM PDT -matthewmpan,2023-05-15T07:12:36Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1547309695) at 2023-05-15 12:12 AM PDT -matthewmpan,2023-05-16T17:16:33Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1550067070) at 2023-05-16 10:16 AM PDT -matthewmpan,2023-05-16T19:27:33Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1550238055) at 2023-05-16 12:27 PM PDT -matthewmpan,2023-05-18T06:02:42Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1552473234) at 2023-05-17 11:02 PM PDT -matthewmpan,2023-05-18T06:49:40Z,- matthewmpan opened pull request: [4689](https://github.com/hackforla/website/pull/4689) at 2023-05-17 11:49 PM PDT -matthewmpan,2023-05-18T07:18:24Z,- matthewmpan submitted pull request review: [4686](https://github.com/hackforla/website/pull/4686#pullrequestreview-1432184114) at 2023-05-18 12:18 AM PDT -matthewmpan,2023-05-18T07:47:19Z,- matthewmpan submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1432219933) at 2023-05-18 12:47 AM PDT -matthewmpan,2023-05-19T08:05:43Z,- matthewmpan commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1554201301) at 2023-05-19 01:05 AM PDT -matthewmpan,2023-05-20T19:59:16Z,- matthewmpan commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1555983265) at 2023-05-20 12:59 PM PDT -matthewmpan,2023-05-20T20:27:20Z,- matthewmpan submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1435444157) at 2023-05-20 01:27 PM PDT -matthewmpan,2023-05-21T15:32:36Z,- matthewmpan pull request merged: [4689](https://github.com/hackforla/website/pull/4689#event-9296177993) at 2023-05-21 08:32 AM PDT -matthewmpan,2023-05-21T17:53:10Z,- matthewmpan commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1556240470) at 2023-05-21 10:53 AM PDT -matthewmpan,2023-05-21T18:14:40Z,- matthewmpan commented on issue: [4614](https://github.com/hackforla/website/issues/4614#issuecomment-1556246937) at 2023-05-21 11:14 AM PDT -matthewmpan,2023-05-21T18:15:06Z,- matthewmpan closed issue as completed: [4614](https://github.com/hackforla/website/issues/4614#event-9296386459) at 2023-05-21 11:15 AM PDT -matthewmpan,2023-05-22T22:03:24Z,- matthewmpan submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1437757178) at 2023-05-22 03:03 PM PDT -matthewmpan,2023-05-23T18:52:33Z,- matthewmpan commented on pull request: [4702](https://github.com/hackforla/website/pull/4702#issuecomment-1559969642) at 2023-05-23 11:52 AM PDT -matthewmpan,2023-05-24T19:08:11Z,- matthewmpan submitted pull request review: [4702](https://github.com/hackforla/website/pull/4702#pullrequestreview-1442580565) at 2023-05-24 12:08 PM PDT -matthewmpan,2023-05-26T01:17:07Z,- matthewmpan submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1444840186) at 2023-05-25 06:17 PM PDT -matthewmpan,2023-06-13T05:21:15Z,- matthewmpan assigned to issue: [4782](https://github.com/hackforla/website/issues/4782) at 2023-06-12 10:21 PM PDT -matthewmpan,2023-06-13T05:23:57Z,- matthewmpan commented on issue: [4782](https://github.com/hackforla/website/issues/4782#issuecomment-1588568006) at 2023-06-12 10:23 PM PDT -matthewmpan,2023-06-14T19:37:23Z,- matthewmpan submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1480169629) at 2023-06-14 12:37 PM PDT -matthewmpan,2023-06-16T01:43:27Z,- matthewmpan opened pull request: [4843](https://github.com/hackforla/website/pull/4843) at 2023-06-15 06:43 PM PDT -matthewmpan,2023-06-18T16:44:37Z,- matthewmpan pull request merged: [4843](https://github.com/hackforla/website/pull/4843#event-9561559492) at 2023-06-18 09:44 AM PDT -matthewmpan,2023-06-19T02:34:08Z,- matthewmpan commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1596399119) at 2023-06-18 07:34 PM PDT -matthewmpan,2023-06-28T02:58:03Z,- matthewmpan commented on pull request: [4836](https://github.com/hackforla/website/pull/4836#issuecomment-1610602128) at 2023-06-27 07:58 PM PDT -matthewmpan,2023-06-30T05:19:47Z,- matthewmpan submitted pull request review: [4836](https://github.com/hackforla/website/pull/4836#pullrequestreview-1506526974) at 2023-06-29 10:19 PM PDT -mattmalane,4067,SKILLS ISSUE -mattmalane,2023-03-01T04:09:28Z,- mattmalane opened issue: [4067](https://github.com/hackforla/website/issues/4067) at 2023-02-28 08:09 PM PST -mattmalane,2023-03-01T04:09:29Z,- mattmalane assigned to issue: [4067](https://github.com/hackforla/website/issues/4067) at 2023-02-28 08:09 PM PST -mattmalane,2023-03-02T23:30:02Z,- mattmalane assigned to issue: [4044](https://github.com/hackforla/website/issues/4044) at 2023-03-02 03:30 PM PST -mattmalane,2023-03-02T23:33:53Z,- mattmalane commented on issue: [4044](https://github.com/hackforla/website/issues/4044#issuecomment-1452723054) at 2023-03-02 03:33 PM PST -mattmalane,2023-03-03T00:12:01Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1452754788) at 2023-03-02 04:12 PM PST -mattmalane,2023-03-03T01:33:02Z,- mattmalane opened pull request: [4092](https://github.com/hackforla/website/pull/4092) at 2023-03-02 05:33 PM PST -mattmalane,2023-03-03T23:02:01Z,- mattmalane pull request merged: [4092](https://github.com/hackforla/website/pull/4092#event-8664214031) at 2023-03-03 03:02 PM PST -mattmalane,2023-03-06T22:56:37Z,- mattmalane assigned to issue: [4082](https://github.com/hackforla/website/issues/4082) at 2023-03-06 02:56 PM PST -mattmalane,2023-03-06T23:18:49Z,- mattmalane commented on issue: [4082](https://github.com/hackforla/website/issues/4082#issuecomment-1457198405) at 2023-03-06 03:18 PM PST -mattmalane,2023-03-07T00:10:21Z,- mattmalane opened pull request: [4121](https://github.com/hackforla/website/pull/4121) at 2023-03-06 04:10 PM PST -mattmalane,2023-03-08T23:35:57Z,- mattmalane commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1461035076) at 2023-03-08 03:35 PM PST -mattmalane,2023-03-08T23:37:25Z,- mattmalane commented on pull request: [4121](https://github.com/hackforla/website/pull/4121#issuecomment-1461037196) at 2023-03-08 03:37 PM PST -mattmalane,2023-03-09T06:37:30Z,- mattmalane pull request merged: [4121](https://github.com/hackforla/website/pull/4121#event-8703824045) at 2023-03-08 10:37 PM PST -mattmalane,2023-03-14T21:16:21Z,- mattmalane assigned to issue: [4083](https://github.com/hackforla/website/issues/4083) at 2023-03-14 02:16 PM PDT -mattmalane,2023-03-14T21:18:36Z,- mattmalane commented on issue: [4083](https://github.com/hackforla/website/issues/4083#issuecomment-1468858982) at 2023-03-14 02:18 PM PDT -mattmalane,2023-03-14T22:13:12Z,- mattmalane opened pull request: [4184](https://github.com/hackforla/website/pull/4184) at 2023-03-14 03:13 PM PDT -mattmalane,2023-03-15T03:03:00Z,- mattmalane commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1469239109) at 2023-03-14 08:03 PM PDT -mattmalane,2023-03-15T03:46:01Z,- mattmalane submitted pull request review: [4181](https://github.com/hackforla/website/pull/4181#pullrequestreview-1340604183) at 2023-03-14 08:46 PM PDT -mattmalane,2023-03-19T04:00:39Z,- mattmalane pull request merged: [4184](https://github.com/hackforla/website/pull/4184#event-8786870877) at 2023-03-18 09:00 PM PDT -mattmalane,2023-03-27T16:11:27Z,- mattmalane assigned to issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1484494520) at 2023-03-27 09:11 AM PDT -mattmalane,2023-03-27T16:12:44Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1485424951) at 2023-03-27 09:12 AM PDT -mattmalane,2023-03-27T16:15:17Z,- mattmalane commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1485428735) at 2023-03-27 09:15 AM PDT -mattmalane,2023-03-28T03:15:18Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1486143570) at 2023-03-27 08:15 PM PDT -mattmalane,2023-03-28T17:23:46Z,- mattmalane commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1487322687) at 2023-03-28 10:23 AM PDT -mattmalane,2023-03-29T21:16:21Z,- mattmalane commented on issue: [4291](https://github.com/hackforla/website/issues/4291#issuecomment-1489336278) at 2023-03-29 02:16 PM PDT -mattmalane,2023-03-29T22:32:05Z,- mattmalane opened pull request: [4341](https://github.com/hackforla/website/pull/4341) at 2023-03-29 03:32 PM PDT -mattmalane,2023-03-30T07:02:04Z,- mattmalane pull request merged: [4341](https://github.com/hackforla/website/pull/4341#event-8883853505) at 2023-03-30 12:02 AM PDT -mattmalane,2023-03-30T17:10:00Z,- mattmalane commented on pull request: [4341](https://github.com/hackforla/website/pull/4341#issuecomment-1490647229) at 2023-03-30 10:10 AM PDT -mattmalane,2023-03-30T23:00:06Z,- mattmalane assigned to issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1482224065) at 2023-03-30 04:00 PM PDT -mattmalane,2023-03-30T23:02:08Z,- mattmalane commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1491075003) at 2023-03-30 04:02 PM PDT -mattmalane,2023-04-06T20:00:04Z,- mattmalane commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1499547844) at 2023-04-06 01:00 PM PDT -mattmalane,2023-04-10T23:06:27Z,- mattmalane commented on issue: [4158](https://github.com/hackforla/website/issues/4158#issuecomment-1502449217) at 2023-04-10 04:06 PM PDT -mattmalane,2023-04-10T23:09:07Z,- mattmalane commented on issue: [4067](https://github.com/hackforla/website/issues/4067#issuecomment-1502451816) at 2023-04-10 04:09 PM PDT -mattmalane,2023-04-18T22:53:50Z,- mattmalane opened pull request: [4545](https://github.com/hackforla/website/pull/4545) at 2023-04-18 03:53 PM PDT -mattmalane,2023-04-25T00:01:51Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1520970611) at 2023-04-24 05:01 PM PDT -mattmalane,2023-04-27T16:35:22Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526007505) at 2023-04-27 09:35 AM PDT -mattmalane,2023-04-27T16:37:32Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1526010089) at 2023-04-27 09:37 AM PDT -mattmalane,2023-04-28T19:55:59Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1528021926) at 2023-04-28 12:55 PM PDT -mattmalane,2023-04-28T20:39:54Z,- mattmalane commented on pull request: [4545](https://github.com/hackforla/website/pull/4545#issuecomment-1528069671) at 2023-04-28 01:39 PM PDT -mattmalane,2023-04-28T21:15:12Z,- mattmalane pull request merged: [4545](https://github.com/hackforla/website/pull/4545#event-9128474995) at 2023-04-28 02:15 PM PDT -MattPereira,3602,SKILLS ISSUE -MattPereira,2022-10-11T02:41:22Z,- MattPereira opened issue: [3602](https://github.com/hackforla/website/issues/3602) at 2022-10-10 07:41 PM PDT -MattPereira,2022-10-12T03:01:13Z,- MattPereira assigned to issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1048146239) at 2022-10-11 08:01 PM PDT -MattPereira,2022-10-12T03:01:32Z,- MattPereira assigned to issue: [3602](https://github.com/hackforla/website/issues/3602) at 2022-10-11 08:01 PM PDT -MattPereira,2022-10-12T03:07:15Z,- MattPereira commented on issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1275523189) at 2022-10-11 08:07 PM PDT -MattPereira,2022-10-12T04:05:44Z,- MattPereira commented on issue: [2845](https://github.com/hackforla/website/issues/2845#issuecomment-1275556981) at 2022-10-11 09:05 PM PDT -MattPereira,2022-10-12T04:24:20Z,- MattPereira opened pull request: [3615](https://github.com/hackforla/website/pull/3615) at 2022-10-11 09:24 PM PDT -MattPereira,2022-10-13T17:12:24Z,- MattPereira commented on pull request: [3616](https://github.com/hackforla/website/pull/3616#issuecomment-1277930112) at 2022-10-13 10:12 AM PDT -MattPereira,2022-10-13T17:35:10Z,- MattPereira submitted pull request review: [3616](https://github.com/hackforla/website/pull/3616#pullrequestreview-1141232404) at 2022-10-13 10:35 AM PDT -MattPereira,2022-10-13T22:30:45Z,- MattPereira commented on pull request: [3617](https://github.com/hackforla/website/pull/3617#issuecomment-1278246221) at 2022-10-13 03:30 PM PDT -MattPereira,2022-10-13T22:51:29Z,- MattPereira submitted pull request review: [3617](https://github.com/hackforla/website/pull/3617#pullrequestreview-1141597861) at 2022-10-13 03:51 PM PDT -MattPereira,2022-10-14T03:26:11Z,- MattPereira pull request merged: [3615](https://github.com/hackforla/website/pull/3615#event-7586643290) at 2022-10-13 08:26 PM PDT -MattPereira,2022-10-14T17:00:46Z,- MattPereira assigned to issue: [3199](https://github.com/hackforla/website/issues/3199#issuecomment-1145809380) at 2022-10-14 10:00 AM PDT -MattPereira,2022-10-14T17:04:24Z,- MattPereira commented on issue: [3199](https://github.com/hackforla/website/issues/3199#issuecomment-1279254932) at 2022-10-14 10:04 AM PDT -MattPereira,2022-10-14T18:28:58Z,- MattPereira opened pull request: [3621](https://github.com/hackforla/website/pull/3621) at 2022-10-14 11:28 AM PDT -MattPereira,2022-10-14T18:50:38Z,- MattPereira commented on issue: [3602](https://github.com/hackforla/website/issues/3602#issuecomment-1279349271) at 2022-10-14 11:50 AM PDT -MattPereira,2022-10-15T17:07:45Z,- MattPereira commented on pull request: [3620](https://github.com/hackforla/website/pull/3620#issuecomment-1279784727) at 2022-10-15 10:07 AM PDT -MattPereira,2022-10-15T17:15:57Z,- MattPereira submitted pull request review: [3620](https://github.com/hackforla/website/pull/3620#pullrequestreview-1143209654) at 2022-10-15 10:15 AM PDT -MattPereira,2022-10-15T20:35:25Z,- MattPereira pull request merged: [3621](https://github.com/hackforla/website/pull/3621#event-7595484535) at 2022-10-15 01:35 PM PDT -MattPereira,2022-10-15T21:09:30Z,- MattPereira submitted pull request review: [3623](https://github.com/hackforla/website/pull/3623#pullrequestreview-1143228082) at 2022-10-15 02:09 PM PDT -MattPereira,2022-10-15T21:12:23Z,- MattPereira commented on pull request: [3623](https://github.com/hackforla/website/pull/3623#issuecomment-1279833146) at 2022-10-15 02:12 PM PDT -MattPereira,2022-10-17T19:56:52Z,- MattPereira assigned to issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1253988018) at 2022-10-17 12:56 PM PDT -MattPereira,2022-10-17T20:20:54Z,- MattPereira commented on issue: [3493](https://github.com/hackforla/website/issues/3493#issuecomment-1281444514) at 2022-10-17 01:20 PM PDT -MattPereira,2022-10-17T23:02:23Z,- MattPereira opened pull request: [3633](https://github.com/hackforla/website/pull/3633) at 2022-10-17 04:02 PM PDT -MattPereira,2022-10-17T23:15:27Z,- MattPereira commented on pull request: [3629](https://github.com/hackforla/website/pull/3629#issuecomment-1281616663) at 2022-10-17 04:15 PM PDT -MattPereira,2022-10-17T23:29:45Z,- MattPereira submitted pull request review: [3629](https://github.com/hackforla/website/pull/3629#pullrequestreview-1144917021) at 2022-10-17 04:29 PM PDT -MattPereira,2022-10-18T18:11:21Z,- MattPereira commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1282812121) at 2022-10-18 11:11 AM PDT -MattPereira,2022-10-19T18:49:53Z,- MattPereira commented on pull request: [3642](https://github.com/hackforla/website/pull/3642#issuecomment-1284435580) at 2022-10-19 11:49 AM PDT -MattPereira,2022-10-19T19:00:57Z,- MattPereira submitted pull request review: [3642](https://github.com/hackforla/website/pull/3642#pullrequestreview-1148129534) at 2022-10-19 12:00 PM PDT -MattPereira,2022-10-20T00:51:44Z,- MattPereira pull request merged: [3633](https://github.com/hackforla/website/pull/3633#event-7626235179) at 2022-10-19 05:51 PM PDT -MattPereira,2022-10-20T18:22:39Z,- MattPereira assigned to issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-923623422) at 2022-10-20 11:22 AM PDT -MattPereira,2022-10-20T18:24:20Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1285967312) at 2022-10-20 11:24 AM PDT -MattPereira,2022-10-20T18:28:53Z,- MattPereira commented on pull request: [3643](https://github.com/hackforla/website/pull/3643#issuecomment-1285972086) at 2022-10-20 11:28 AM PDT -MattPereira,2022-10-20T19:03:10Z,- MattPereira submitted pull request review: [3643](https://github.com/hackforla/website/pull/3643#pullrequestreview-1149819056) at 2022-10-20 12:03 PM PDT -MattPereira,2022-10-20T21:14:58Z,- MattPereira closed issue as completed: [3602](https://github.com/hackforla/website/issues/3602#event-7635047472) at 2022-10-20 02:14 PM PDT -MattPereira,2022-10-20T22:53:10Z,- MattPereira commented on pull request: [3645](https://github.com/hackforla/website/pull/3645#issuecomment-1286247244) at 2022-10-20 03:53 PM PDT -MattPereira,2022-10-20T22:57:57Z,- MattPereira submitted pull request review: [3645](https://github.com/hackforla/website/pull/3645#pullrequestreview-1150104581) at 2022-10-20 03:57 PM PDT -MattPereira,2022-10-21T21:59:54Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1287477116) at 2022-10-21 02:59 PM PDT -MattPereira,2022-10-22T19:31:04Z,- MattPereira commented on pull request: [3648](https://github.com/hackforla/website/pull/3648#issuecomment-1287891883) at 2022-10-22 12:31 PM PDT -MattPereira,2022-10-22T19:43:55Z,- MattPereira submitted pull request review: [3648](https://github.com/hackforla/website/pull/3648#pullrequestreview-1152118791) at 2022-10-22 12:43 PM PDT -MattPereira,2022-10-23T23:59:32Z,- MattPereira commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288236475) at 2022-10-23 04:59 PM PDT -MattPereira,2022-10-24T03:11:22Z,- MattPereira commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288354696) at 2022-10-23 08:11 PM PDT -MattPereira,2022-10-24T17:02:14Z,- MattPereira submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1153486474) at 2022-10-24 10:02 AM PDT -MattPereira,2022-10-24T18:29:02Z,- MattPereira commented on pull request: [3650](https://github.com/hackforla/website/pull/3650#issuecomment-1289425225) at 2022-10-24 11:29 AM PDT -MattPereira,2022-10-24T18:32:35Z,- MattPereira submitted pull request review: [3650](https://github.com/hackforla/website/pull/3650#pullrequestreview-1153594592) at 2022-10-24 11:32 AM PDT -MattPereira,2022-10-24T20:16:41Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1289558836) at 2022-10-24 01:16 PM PDT -MattPereira,2022-10-24T22:51:02Z,- MattPereira opened pull request: [3653](https://github.com/hackforla/website/pull/3653) at 2022-10-24 03:51 PM PDT -MattPereira,2022-10-25T21:56:47Z,- MattPereira pull request closed w/o merging: [3653](https://github.com/hackforla/website/pull/3653#event-7667493274) at 2022-10-25 02:56 PM PDT -MattPereira,2022-10-25T22:08:44Z,- MattPereira commented on pull request: [3656](https://github.com/hackforla/website/pull/3656#issuecomment-1291194981) at 2022-10-25 03:08 PM PDT -MattPereira,2022-10-26T00:00:31Z,- MattPereira commented on pull request: [3659](https://github.com/hackforla/website/pull/3659#issuecomment-1291263502) at 2022-10-25 05:00 PM PDT -MattPereira,2022-10-26T00:09:08Z,- MattPereira submitted pull request review: [3659](https://github.com/hackforla/website/pull/3659#pullrequestreview-1155694201) at 2022-10-25 05:09 PM PDT -MattPereira,2022-10-26T00:11:27Z,- MattPereira commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1291269729) at 2022-10-25 05:11 PM PDT -MattPereira,2022-10-27T21:40:04Z,- MattPereira commented on pull request: [3664](https://github.com/hackforla/website/pull/3664#issuecomment-1294098005) at 2022-10-27 02:40 PM PDT -MattPereira,2022-10-27T23:17:27Z,- MattPereira commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1294223661) at 2022-10-27 04:17 PM PDT -MattPereira,2022-10-27T23:34:11Z,- MattPereira submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1159153613) at 2022-10-27 04:34 PM PDT -MattPereira,2022-10-28T00:07:36Z,- MattPereira submitted pull request review: [3664](https://github.com/hackforla/website/pull/3664#pullrequestreview-1159169420) at 2022-10-27 05:07 PM PDT -MattPereira,2022-10-28T19:26:56Z,- MattPereira opened pull request: [3672](https://github.com/hackforla/website/pull/3672) at 2022-10-28 12:26 PM PDT -MattPereira,2022-10-28T19:44:19Z,- MattPereira commented on pull request: [3662](https://github.com/hackforla/website/pull/3662#issuecomment-1295394616) at 2022-10-28 12:44 PM PDT -MattPereira,2022-10-28T19:53:15Z,- MattPereira submitted pull request review: [3662](https://github.com/hackforla/website/pull/3662#pullrequestreview-1160629616) at 2022-10-28 12:53 PM PDT -MattPereira,2022-10-29T18:33:22Z,- MattPereira commented on pull request: [3673](https://github.com/hackforla/website/pull/3673#issuecomment-1295930052) at 2022-10-29 11:33 AM PDT -MattPereira,2022-10-29T18:45:16Z,- MattPereira submitted pull request review: [3673](https://github.com/hackforla/website/pull/3673#pullrequestreview-1161028138) at 2022-10-29 11:45 AM PDT -MattPereira,2022-10-31T17:58:20Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1297463689) at 2022-10-31 10:58 AM PDT -MattPereira,2022-10-31T18:11:49Z,- MattPereira commented on pull request: [3677](https://github.com/hackforla/website/pull/3677#issuecomment-1297478751) at 2022-10-31 11:11 AM PDT -MattPereira,2022-10-31T18:16:08Z,- MattPereira submitted pull request review: [3677](https://github.com/hackforla/website/pull/3677#pullrequestreview-1162334755) at 2022-10-31 11:16 AM PDT -MattPereira,2022-10-31T19:10:46Z,- MattPereira submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1162406561) at 2022-10-31 12:10 PM PDT -MattPereira,2022-11-03T16:58:54Z,- MattPereira commented on pull request: [3692](https://github.com/hackforla/website/pull/3692#issuecomment-1302405492) at 2022-11-03 09:58 AM PDT -MattPereira,2022-11-03T21:01:26Z,- MattPereira submitted pull request review: [3692](https://github.com/hackforla/website/pull/3692#pullrequestreview-1167658563) at 2022-11-03 02:01 PM PDT -MattPereira,2022-11-05T17:40:37Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1304598171) at 2022-11-05 09:40 AM PST -MattPereira,2022-11-05T21:02:41Z,- MattPereira commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304641075) at 2022-11-05 01:02 PM PST -MattPereira,2022-11-05T21:03:19Z,- MattPereira commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304641187) at 2022-11-05 01:03 PM PST -MattPereira,2022-11-06T20:21:06Z,- MattPereira submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1169647219) at 2022-11-06 12:21 PM PST -MattPereira,2022-11-07T03:48:24Z,- MattPereira submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1169761594) at 2022-11-06 07:48 PM PST -MattPereira,2022-11-07T19:36:28Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1306094209) at 2022-11-07 11:36 AM PST -MattPereira,2022-11-08T16:35:02Z,- MattPereira commented on pull request: [3672](https://github.com/hackforla/website/pull/3672#issuecomment-1307500170) at 2022-11-08 08:35 AM PST -MattPereira,2022-11-08T23:30:36Z,- MattPereira commented on pull request: [3699](https://github.com/hackforla/website/pull/3699#issuecomment-1307975824) at 2022-11-08 03:30 PM PST -MattPereira,2022-11-08T23:32:25Z,- MattPereira submitted pull request review: [3699](https://github.com/hackforla/website/pull/3699#pullrequestreview-1172990889) at 2022-11-08 03:32 PM PST -MattPereira,2022-11-09T02:06:25Z,- MattPereira commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1308098746) at 2022-11-08 06:06 PM PST -MattPereira,2022-11-09T20:14:13Z,- MattPereira submitted pull request review: [3702](https://github.com/hackforla/website/pull/3702#pullrequestreview-1174689018) at 2022-11-09 12:14 PM PST -MattPereira,2022-11-10T19:03:19Z,- MattPereira commented on pull request: [3705](https://github.com/hackforla/website/pull/3705#issuecomment-1310766741) at 2022-11-10 11:03 AM PST -MattPereira,2022-11-14T01:48:28Z,- MattPereira pull request merged: [3672](https://github.com/hackforla/website/pull/3672#event-7799696505) at 2022-11-13 05:48 PM PST -MattPereira,2022-11-14T02:06:36Z,- MattPereira commented on issue: [2292](https://github.com/hackforla/website/issues/2292#issuecomment-1312941872) at 2022-11-13 06:06 PM PST -MattPereira,2022-11-14T02:20:01Z,- MattPereira assigned to issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1176466870) at 2022-11-13 06:20 PM PST -MattPereira,2022-11-14T02:24:21Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1312953666) at 2022-11-13 06:24 PM PST -MattPereira,2022-11-14T21:39:44Z,- MattPereira commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314440859) at 2022-11-14 01:39 PM PST -MattPereira,2022-11-15T06:13:02Z,- MattPereira submitted pull request review: [3717](https://github.com/hackforla/website/pull/3717#pullrequestreview-1180252349) at 2022-11-14 10:13 PM PST -MattPereira,2022-11-15T19:43:24Z,- MattPereira commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1315784715) at 2022-11-15 11:43 AM PST -MattPereira,2022-11-16T04:44:02Z,- MattPereira opened issue: [3723](https://github.com/hackforla/website/issues/3723) at 2022-11-15 08:44 PM PST -MattPereira,2022-11-16T05:26:15Z,- MattPereira commented on issue: [3723](https://github.com/hackforla/website/issues/3723#issuecomment-1316378690) at 2022-11-15 09:26 PM PST -MattPereira,2022-11-16T05:26:15Z,- MattPereira closed issue as not planned: [3723](https://github.com/hackforla/website/issues/3723#event-7820092920) at 2022-11-15 09:26 PM PST -MattPereira,2022-11-16T19:03:28Z,- MattPereira submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1183172161) at 2022-11-16 11:03 AM PST -MattPereira,2022-11-18T20:46:48Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186760073) at 2022-11-18 12:46 PM PST -MattPereira,2022-11-18T22:02:47Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186862833) at 2022-11-18 02:02 PM PST -MattPereira,2022-11-18T22:25:52Z,- MattPereira submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186888639) at 2022-11-18 02:25 PM PST -MattPereira,2022-11-18T22:26:23Z,- MattPereira closed issue by PR 3729: [3211](https://github.com/hackforla/website/issues/3211#event-7847907387) at 2022-11-18 02:26 PM PST -MattPereira,2022-11-19T04:31:02Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1187018138) at 2022-11-18 08:31 PM PST -MattPereira,2022-11-19T23:05:21Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1187136969) at 2022-11-19 03:05 PM PST -MattPereira,2022-11-19T23:14:15Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1187138018) at 2022-11-19 03:14 PM PST -MattPereira,2022-11-21T23:15:19Z,- MattPereira commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1322783295) at 2022-11-21 03:15 PM PST -MattPereira,2022-11-21T23:18:00Z,- MattPereira closed issue by PR 3733: [3212](https://github.com/hackforla/website/issues/3212#event-7861975227) at 2022-11-21 03:18 PM PST -MattPereira,2022-11-23T03:41:13Z,- MattPereira opened issue: [3742](https://github.com/hackforla/website/issues/3742) at 2022-11-22 07:41 PM PST -MattPereira,2022-11-23T03:49:56Z,- MattPereira closed issue as completed: [3742](https://github.com/hackforla/website/issues/3742#event-7873348662) at 2022-11-22 07:49 PM PST -MattPereira,2022-11-23T04:01:08Z,- MattPereira commented on issue: [3742](https://github.com/hackforla/website/issues/3742#issuecomment-1324519314) at 2022-11-22 08:01 PM PST -MattPereira,2022-11-25T03:10:31Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1193781092) at 2022-11-24 07:10 PM PST -MattPereira,2022-11-25T03:18:13Z,- MattPereira submitted pull request review: [3726](https://github.com/hackforla/website/pull/3726#pullrequestreview-1193784139) at 2022-11-24 07:18 PM PST -MattPereira,2022-11-25T21:13:09Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1194768854) at 2022-11-25 01:13 PM PST -MattPereira,2022-11-25T21:26:17Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1194775046) at 2022-11-25 01:26 PM PST -MattPereira,2022-11-25T22:18:28Z,- MattPereira submitted pull request review: [3745](https://github.com/hackforla/website/pull/3745#pullrequestreview-1194786747) at 2022-11-25 02:18 PM PST -MattPereira,2022-11-25T22:19:07Z,- MattPereira closed issue by PR 3745: [3213](https://github.com/hackforla/website/issues/3213#event-7895318937) at 2022-11-25 02:19 PM PST -MattPereira,2022-11-26T18:43:11Z,- MattPereira closed issue by PR 3726: [2929](https://github.com/hackforla/website/issues/2929#event-7896601944) at 2022-11-26 10:43 AM PST -MattPereira,2022-11-27T02:13:45Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1328154344) at 2022-11-26 06:13 PM PST -MattPereira,2022-11-27T03:21:35Z,- MattPereira commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1328161705) at 2022-11-26 07:21 PM PST -MattPereira,2022-11-27T03:41:41Z,- MattPereira opened issue: [3747](https://github.com/hackforla/website/issues/3747) at 2022-11-26 07:41 PM PST -MattPereira,2022-11-27T17:39:53Z,- MattPereira closed issue as completed: [3747](https://github.com/hackforla/website/issues/3747#event-7897927808) at 2022-11-27 09:39 AM PST -MattPereira,2022-11-27T20:29:26Z,- MattPereira assigned to issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333414) at 2022-11-27 12:29 PM PST -MattPereira,2022-11-28T01:58:54Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1195113977) at 2022-11-27 05:58 PM PST -MattPereira,2022-11-28T21:49:11Z,- MattPereira submitted pull request review: [3741](https://github.com/hackforla/website/pull/3741#pullrequestreview-1196599436) at 2022-11-28 01:49 PM PST -MattPereira,2022-12-01T17:57:29Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1201445840) at 2022-12-01 09:57 AM PST -MattPereira,2022-12-01T20:15:35Z,- MattPereira commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1334379811) at 2022-12-01 12:15 PM PST -MattPereira,2022-12-01T21:51:01Z,- MattPereira commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1334491718) at 2022-12-01 01:51 PM PST -MattPereira,2022-12-01T22:48:07Z,- MattPereira commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1334543419) at 2022-12-01 02:48 PM PST -MattPereira,2022-12-02T22:18:20Z,- MattPereira opened issue: [3765](https://github.com/hackforla/website/issues/3765) at 2022-12-02 02:18 PM PST -MattPereira,2022-12-02T22:19:11Z,- MattPereira commented on issue: [3765](https://github.com/hackforla/website/issues/3765#issuecomment-1335919447) at 2022-12-02 02:19 PM PST -MattPereira,2022-12-02T22:19:11Z,- MattPereira closed issue as completed: [3765](https://github.com/hackforla/website/issues/3765#event-7944266823) at 2022-12-02 02:19 PM PST -MattPereira,2022-12-03T02:16:18Z,- MattPereira commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1336015108) at 2022-12-02 06:16 PM PST -MattPereira,2022-12-03T02:43:59Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1336020289) at 2022-12-02 06:43 PM PST -MattPereira,2022-12-03T17:22:02Z,- MattPereira commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1336202088) at 2022-12-03 09:22 AM PST -MattPereira,2022-12-10T02:50:07Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1212398142) at 2022-12-09 06:50 PM PST -MattPereira,2022-12-10T03:18:15Z,- MattPereira submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1212402098) at 2022-12-09 07:18 PM PST -MattPereira,2022-12-10T03:24:00Z,- MattPereira closed issue by PR 3329: [2112](https://github.com/hackforla/website/issues/2112#event-8003276962) at 2022-12-09 07:24 PM PST -MattPereira,2022-12-10T04:21:13Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1212436001) at 2022-12-09 08:21 PM PST -MattPereira,2022-12-12T02:56:17Z,- MattPereira commented on pull request: [3768](https://github.com/hackforla/website/pull/3768#issuecomment-1345792133) at 2022-12-11 06:56 PM PST -MattPereira,2022-12-12T03:13:19Z,- MattPereira submitted pull request review: [3768](https://github.com/hackforla/website/pull/3768#pullrequestreview-1212851314) at 2022-12-11 07:13 PM PST -MattPereira,2022-12-15T20:36:51Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1219911327) at 2022-12-15 12:36 PM PST -MattPereira,2022-12-16T00:38:29Z,- MattPereira submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1220132101) at 2022-12-15 04:38 PM PST -MattPereira,2022-12-16T22:44:51Z,- MattPereira closed issue by PR 3725: [3027](https://github.com/hackforla/website/issues/3027#event-8060326721) at 2022-12-16 02:44 PM PST -MattPereira,2023-01-02T18:59:59Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1369148007) at 2023-01-02 10:59 AM PST -MattPereira,2023-01-09T21:56:22Z,- MattPereira commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1376381660) at 2023-01-09 01:56 PM PST -MattPereira,2023-01-09T23:03:13Z,- MattPereira submitted pull request review: [3774](https://github.com/hackforla/website/pull/3774#pullrequestreview-1241321331) at 2023-01-09 03:03 PM PST -MattPereira,2023-01-09T23:17:20Z,- MattPereira commented on pull request: [3774](https://github.com/hackforla/website/pull/3774#issuecomment-1376475414) at 2023-01-09 03:17 PM PST -MattPereira,2023-01-10T05:59:47Z,- MattPereira opened issue: [3803](https://github.com/hackforla/website/issues/3803) at 2023-01-09 09:59 PM PST -MattPereira,2023-01-10T19:10:30Z,- MattPereira opened issue: [3805](https://github.com/hackforla/website/issues/3805) at 2023-01-10 11:10 AM PST -MattPereira,2023-01-10T19:11:39Z,- MattPereira commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1377725724) at 2023-01-10 11:11 AM PST -MattPereira,2023-01-10T22:57:16Z,- MattPereira assigned to issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1332402495) at 2023-01-10 02:57 PM PST -MattPereira,2023-01-11T02:31:29Z,- MattPereira commented on pull request: [3801](https://github.com/hackforla/website/pull/3801#issuecomment-1378165402) at 2023-01-10 06:31 PM PST -MattPereira,2023-01-11T02:45:18Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1243220438) at 2023-01-10 06:45 PM PST -MattPereira,2023-01-11T21:03:06Z,- MattPereira submitted pull request review: [3801](https://github.com/hackforla/website/pull/3801#pullrequestreview-1244609568) at 2023-01-11 01:03 PM PST -MattPereira,2023-01-11T21:25:21Z,- MattPereira commented on issue: [3118](https://github.com/hackforla/website/issues/3118#issuecomment-1379503228) at 2023-01-11 01:25 PM PST -MattPereira,2023-01-12T02:37:00Z,- MattPereira submitted pull request review: [3801](https://github.com/hackforla/website/pull/3801#pullrequestreview-1244880696) at 2023-01-11 06:37 PM PST -MattPereira,2023-01-15T05:54:11Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1383064108) at 2023-01-14 09:54 PM PST -MattPereira,2023-01-17T21:01:19Z,- MattPereira commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1386045443) at 2023-01-17 01:01 PM PST -MattPereira,2023-01-17T22:18:31Z,- MattPereira submitted pull request review: [3833](https://github.com/hackforla/website/pull/3833#pullrequestreview-1252538952) at 2023-01-17 02:18 PM PST -MattPereira,2023-01-18T00:48:51Z,- MattPereira commented on pull request: [3833](https://github.com/hackforla/website/pull/3833#issuecomment-1386299765) at 2023-01-17 04:48 PM PST -MattPereira,2023-01-18T00:58:08Z,- MattPereira submitted pull request review: [3833](https://github.com/hackforla/website/pull/3833#pullrequestreview-1252674146) at 2023-01-17 04:58 PM PST -MattPereira,2023-01-18T01:00:31Z,- MattPereira closed issue by PR 3833: [3701](https://github.com/hackforla/website/issues/3701#event-8251200944) at 2023-01-17 05:00 PM PST -MattPereira,2023-01-18T17:53:43Z,- MattPereira closed issue by PR 3835: [3398](https://github.com/hackforla/website/issues/3398#event-8258310343) at 2023-01-18 09:53 AM PST -MattPereira,2023-01-19T00:44:16Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1260982126) at 2023-01-18 04:44 PM PST -MattPereira,2023-01-20T00:21:13Z,- MattPereira closed issue by PR 3811: [2864](https://github.com/hackforla/website/issues/2864#event-8317320951) at 2023-01-19 04:21 PM PST -MattPereira,2023-01-22T21:29:15Z,- MattPereira assigned to issue: [3858](https://github.com/hackforla/website/issues/3858) at 2023-01-22 01:29 PM PST -MattPereira,2023-01-22T22:57:12Z,- MattPereira commented on issue: [3858](https://github.com/hackforla/website/issues/3858#issuecomment-1399632022) at 2023-01-22 02:57 PM PST -MattPereira,2023-01-23T00:20:46Z,- MattPereira opened issue: [3860](https://github.com/hackforla/website/issues/3860) at 2023-01-22 04:20 PM PST -MattPereira,2023-01-23T00:21:45Z,- MattPereira commented on issue: [2571](https://github.com/hackforla/website/issues/2571#issuecomment-1399654470) at 2023-01-22 04:21 PM PST -MattPereira,2023-01-23T01:21:30Z,- MattPereira opened issue: [3861](https://github.com/hackforla/website/issues/3861) at 2023-01-22 05:21 PM PST -MattPereira,2023-01-23T22:23:52Z,- MattPereira commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1401088681) at 2023-01-23 02:23 PM PST -MattPereira,2023-01-24T02:40:13Z,- MattPereira commented on issue: [3857](https://github.com/hackforla/website/issues/3857#issuecomment-1401324523) at 2023-01-23 06:40 PM PST -MattPereira,2023-01-24T02:40:22Z,- MattPereira closed issue as completed: [3857](https://github.com/hackforla/website/issues/3857#event-8340130168) at 2023-01-23 06:40 PM PST -MattPereira,2023-01-24T17:31:55Z,- MattPereira submitted pull request review: [3649](https://github.com/hackforla/website/pull/3649#pullrequestreview-1267949544) at 2023-01-24 09:31 AM PST -MattPereira,2023-01-24T17:32:49Z,- MattPereira commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1402328559) at 2023-01-24 09:32 AM PST -MattPereira,2023-01-24T17:34:37Z,- MattPereira closed issue by PR 3649: [2626](https://github.com/hackforla/website/issues/2626#event-8346688096) at 2023-01-24 09:34 AM PST -MattPereira,2023-01-24T19:21:38Z,- MattPereira opened issue: [3866](https://github.com/hackforla/website/issues/3866) at 2023-01-24 11:21 AM PST -MattPereira,2023-01-24T19:21:39Z,- MattPereira assigned to issue: [3866](https://github.com/hackforla/website/issues/3866) at 2023-01-24 11:21 AM PST -MattPereira,2023-01-24T23:04:54Z,- MattPereira opened issue: [3868](https://github.com/hackforla/website/issues/3868) at 2023-01-24 03:04 PM PST -MattPereira,2023-01-24T23:35:18Z,- MattPereira opened issue: [3869](https://github.com/hackforla/website/issues/3869) at 2023-01-24 03:35 PM PST -MattPereira,2023-01-24T23:45:46Z,- MattPereira opened issue: [3870](https://github.com/hackforla/website/issues/3870) at 2023-01-24 03:45 PM PST -MattPereira,2023-01-25T04:50:35Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1268704907) at 2023-01-24 08:50 PM PST -MattPereira,2023-01-25T18:32:57Z,- MattPereira assigned to issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1401293557) at 2023-01-25 10:32 AM PST -MattPereira,2023-01-25T18:46:01Z,- MattPereira opened issue: [3872](https://github.com/hackforla/website/issues/3872) at 2023-01-25 10:46 AM PST -MattPereira,2023-01-25T18:46:40Z,- MattPereira commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1404069663) at 2023-01-25 10:46 AM PST -MattPereira,2023-01-26T18:41:53Z,- MattPereira opened issue: [3873](https://github.com/hackforla/website/issues/3873) at 2023-01-26 10:41 AM PST -MattPereira,2023-01-26T18:51:13Z,- MattPereira opened issue: [3874](https://github.com/hackforla/website/issues/3874) at 2023-01-26 10:51 AM PST -MattPereira,2023-01-26T18:54:52Z,- MattPereira assigned to issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1401316234) at 2023-01-26 10:54 AM PST -MattPereira,2023-01-26T19:00:52Z,- MattPereira opened issue: [3875](https://github.com/hackforla/website/issues/3875) at 2023-01-26 11:00 AM PST -MattPereira,2023-01-26T19:03:47Z,- MattPereira opened issue: [3876](https://github.com/hackforla/website/issues/3876) at 2023-01-26 11:03 AM PST -MattPereira,2023-01-26T19:22:17Z,- MattPereira opened issue: [3877](https://github.com/hackforla/website/issues/3877) at 2023-01-26 11:22 AM PST -MattPereira,2023-01-26T19:24:20Z,- MattPereira opened issue: [3878](https://github.com/hackforla/website/issues/3878) at 2023-01-26 11:24 AM PST -MattPereira,2023-01-26T19:28:10Z,- MattPereira commented on issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1405497283) at 2023-01-26 11:28 AM PST -MattPereira,2023-01-29T03:57:13Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1407554247) at 2023-01-28 07:57 PM PST -MattPereira,2023-01-30T01:16:18Z,- MattPereira assigned to issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407805861) at 2023-01-29 05:16 PM PST -MattPereira,2023-01-30T01:51:17Z,- MattPereira unassigned from issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1407846561) at 2023-01-29 05:51 PM PST -MattPereira,2023-01-31T00:53:27Z,- MattPereira opened issue: [3904](https://github.com/hackforla/website/issues/3904) at 2023-01-30 04:53 PM PST -MattPereira,2023-01-31T23:06:54Z,- MattPereira opened issue: [3906](https://github.com/hackforla/website/issues/3906) at 2023-01-31 03:06 PM PST -MattPereira,2023-02-01T02:05:01Z,- MattPereira submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1278316720) at 2023-01-31 06:05 PM PST -MattPereira,2023-02-01T02:05:30Z,- MattPereira closed issue by PR 3767: [3547](https://github.com/hackforla/website/issues/3547#event-8405489160) at 2023-01-31 06:05 PM PST -MattPereira,2023-02-01T02:44:49Z,- MattPereira commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1411375413) at 2023-01-31 06:44 PM PST -MattPereira,2023-02-01T03:24:36Z,- MattPereira commented on pull request: [3905](https://github.com/hackforla/website/pull/3905#issuecomment-1411409088) at 2023-01-31 07:24 PM PST -MattPereira,2023-02-01T03:33:00Z,- MattPereira submitted pull request review: [3905](https://github.com/hackforla/website/pull/3905#pullrequestreview-1278385929) at 2023-01-31 07:33 PM PST -MattPereira,2023-02-01T04:19:37Z,- MattPereira commented on pull request: [3888](https://github.com/hackforla/website/pull/3888#issuecomment-1411443736) at 2023-01-31 08:19 PM PST -MattPereira,2023-02-01T04:23:54Z,- MattPereira submitted pull request review: [3888](https://github.com/hackforla/website/pull/3888#pullrequestreview-1278412529) at 2023-01-31 08:23 PM PST -MattPereira,2023-02-01T05:23:00Z,- MattPereira commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1411486289) at 2023-01-31 09:23 PM PST -MattPereira,2023-02-01T05:25:16Z,- MattPereira submitted pull request review: [3883](https://github.com/hackforla/website/pull/3883#pullrequestreview-1278449929) at 2023-01-31 09:25 PM PST -MattPereira,2023-02-01T05:32:19Z,- MattPereira commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1411491689) at 2023-01-31 09:32 PM PST -MattPereira,2023-02-01T05:32:25Z,- MattPereira closed issue as completed: [3792](https://github.com/hackforla/website/issues/3792#event-8406555552) at 2023-01-31 09:32 PM PST -MattPereira,2023-02-01T06:23:43Z,- MattPereira closed issue by PR 3905: [3892](https://github.com/hackforla/website/issues/3892#event-8406815329) at 2023-01-31 10:23 PM PST -MattPereira,2023-02-01T18:52:25Z,- MattPereira commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1412554951) at 2023-02-01 10:52 AM PST -MattPereira,2023-02-01T21:05:38Z,- MattPereira submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1279861602) at 2023-02-01 01:05 PM PST -MattPereira,2023-02-01T21:06:31Z,- MattPereira closed issue by PR 3839: [3109](https://github.com/hackforla/website/issues/3109#event-8414651640) at 2023-02-01 01:06 PM PST -MattPereira,2023-02-01T21:09:43Z,- MattPereira opened issue: [3921](https://github.com/hackforla/website/issues/3921) at 2023-02-01 01:09 PM PST -MattPereira,2023-02-01T21:17:06Z,- MattPereira closed issue as completed: [3921](https://github.com/hackforla/website/issues/3921#event-8414728502) at 2023-02-01 01:17 PM PST -MattPereira,2023-02-01T21:33:56Z,- MattPereira commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1412760899) at 2023-02-01 01:33 PM PST -MattPereira,2023-02-01T21:35:07Z,- MattPereira commented on issue: [3109](https://github.com/hackforla/website/issues/3109#issuecomment-1412762555) at 2023-02-01 01:35 PM PST -MattPereira,2023-02-02T18:49:02Z,- MattPereira commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1414205664) at 2023-02-02 10:49 AM PST -MattPereira,2023-02-02T18:59:57Z,- MattPereira submitted pull request review: [3907](https://github.com/hackforla/website/pull/3907#pullrequestreview-1281706473) at 2023-02-02 10:59 AM PST -MattPereira,2023-02-02T19:10:58Z,- MattPereira commented on pull request: [3923](https://github.com/hackforla/website/pull/3923#issuecomment-1414232571) at 2023-02-02 11:10 AM PST -MattPereira,2023-02-03T01:51:21Z,- MattPereira commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1414613821) at 2023-02-02 05:51 PM PST -MattPereira,2023-02-03T05:43:46Z,- MattPereira commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1415037836) at 2023-02-02 09:43 PM PST -MattPereira,2023-02-03T05:45:53Z,- MattPereira commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1415041258) at 2023-02-02 09:45 PM PST -MattPereira,2023-02-04T00:19:14Z,- MattPereira commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1416551657) at 2023-02-03 04:19 PM PST -MattPereira,2023-02-04T00:30:40Z,- MattPereira submitted pull request review: [3888](https://github.com/hackforla/website/pull/3888#pullrequestreview-1283955272) at 2023-02-03 04:30 PM PST -MattPereira,2023-02-04T00:31:33Z,- MattPereira closed issue by PR 3888: [3383](https://github.com/hackforla/website/issues/3383#event-8437337856) at 2023-02-03 04:31 PM PST -MattPereira,2023-02-04T00:40:16Z,- MattPereira submitted pull request review: [3907](https://github.com/hackforla/website/pull/3907#pullrequestreview-1283967967) at 2023-02-03 04:40 PM PST -MattPereira,2023-02-04T00:40:59Z,- MattPereira closed issue by PR 3907: [3818](https://github.com/hackforla/website/issues/3818#event-8437364215) at 2023-02-03 04:40 PM PST -MattPereira,2023-02-04T01:20:03Z,- MattPereira opened issue: [3933](https://github.com/hackforla/website/issues/3933) at 2023-02-03 05:20 PM PST -MattPereira,2023-02-04T22:50:25Z,- MattPereira commented on pull request: [3924](https://github.com/hackforla/website/pull/3924#issuecomment-1416868407) at 2023-02-04 02:50 PM PST -MattPereira,2023-02-04T22:56:32Z,- MattPereira submitted pull request review: [3924](https://github.com/hackforla/website/pull/3924#pullrequestreview-1284123582) at 2023-02-04 02:56 PM PST -MattPereira,2023-02-04T22:57:15Z,- MattPereira closed issue by PR 3924: [3893](https://github.com/hackforla/website/issues/3893#event-8439314361) at 2023-02-04 02:57 PM PST -MattPereira,2023-02-04T23:05:31Z,- MattPereira assigned to issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416265727) at 2023-02-04 03:05 PM PST -MattPereira,2023-02-04T23:50:44Z,- MattPereira assigned to issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416262079) at 2023-02-04 03:50 PM PST -MattPereira,2023-02-05T00:01:45Z,- MattPereira commented on issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416879946) at 2023-02-04 04:01 PM PST -MattPereira,2023-02-05T00:02:14Z,- MattPereira unassigned from issue: [3925](https://github.com/hackforla/website/issues/3925#issuecomment-1416879946) at 2023-02-04 04:02 PM PST -MattPereira,2023-02-05T00:03:22Z,- MattPereira unassigned from issue: [3900](https://github.com/hackforla/website/issues/3900#issuecomment-1416871780) at 2023-02-04 04:03 PM PST -MattPereira,2023-02-05T02:52:35Z,- MattPereira assigned to issue: [3903](https://github.com/hackforla/website/issues/3903) at 2023-02-04 06:52 PM PST -MattPereira,2023-02-05T03:11:13Z,- MattPereira assigned to issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416798094) at 2023-02-04 07:11 PM PST -MattPereira,2023-02-05T03:28:25Z,- MattPereira opened issue: [3936](https://github.com/hackforla/website/issues/3936) at 2023-02-04 07:28 PM PST -MattPereira,2023-02-05T03:29:24Z,- MattPereira commented on issue: [3903](https://github.com/hackforla/website/issues/3903#issuecomment-1416912814) at 2023-02-04 07:29 PM PST -MattPereira,2023-02-05T03:29:44Z,- MattPereira closed issue as completed: [3903](https://github.com/hackforla/website/issues/3903#event-8439571511) at 2023-02-04 07:29 PM PST -MattPereira,2023-02-05T03:30:21Z,- MattPereira commented on issue: [3903](https://github.com/hackforla/website/issues/3903#issuecomment-1416912927) at 2023-02-04 07:30 PM PST -MattPereira,2023-02-05T19:12:13Z,- MattPereira assigned to issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1407747225) at 2023-02-05 11:12 AM PST -MattPereira,2023-02-05T19:14:39Z,- MattPereira unassigned from issue: [3931](https://github.com/hackforla/website/issues/3931#issuecomment-1416910718) at 2023-02-05 11:14 AM PST -MattPereira,2023-02-05T20:04:58Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418252187) at 2023-02-05 12:04 PM PST -MattPereira,2023-02-05T21:49:12Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418273561) at 2023-02-05 01:49 PM PST -MattPereira,2023-02-05T22:39:03Z,- MattPereira opened pull request: [3939](https://github.com/hackforla/website/pull/3939) at 2023-02-05 02:39 PM PST -MattPereira,2023-02-05T22:57:01Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418288144) at 2023-02-05 02:57 PM PST -MattPereira,2023-02-05T23:47:01Z,- MattPereira commented on issue: [3890](https://github.com/hackforla/website/issues/3890#issuecomment-1418299816) at 2023-02-05 03:47 PM PST -MattPereira,2023-02-06T00:36:05Z,- MattPereira pull request merged: [3939](https://github.com/hackforla/website/pull/3939#event-8442317708) at 2023-02-05 04:36 PM PST -MattPereira,2023-02-06T20:54:01Z,- MattPereira assigned to issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419568110) at 2023-02-06 12:54 PM PST -MattPereira,2023-02-06T21:08:39Z,- MattPereira unassigned from issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419735155) at 2023-02-06 01:08 PM PST -MattPereira,2023-02-07T00:26:49Z,- MattPereira submitted pull request review: [3901](https://github.com/hackforla/website/pull/3901#pullrequestreview-1286214112) at 2023-02-06 04:26 PM PST -MattPereira,2023-02-07T00:37:24Z,- MattPereira closed issue by PR 3932: [3837](https://github.com/hackforla/website/issues/3837#event-8453047120) at 2023-02-06 04:37 PM PST -MattPereira,2023-02-07T02:15:31Z,- MattPereira closed issue as completed: [3352](https://github.com/hackforla/website/issues/3352#event-8453440362) at 2023-02-06 06:15 PM PST -MattPereira,2023-02-07T22:40:57Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1288113515) at 2023-02-07 02:40 PM PST -MattPereira,2023-02-07T23:32:06Z,- MattPereira commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1421637085) at 2023-02-07 03:32 PM PST -MattPereira,2023-02-09T01:09:30Z,- MattPereira unassigned from issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1332402495) at 2023-02-08 05:09 PM PST -MattPereira,2023-02-09T02:18:24Z,- MattPereira commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1423521294) at 2023-02-08 06:18 PM PST -MattPereira,2023-02-09T19:13:51Z,- MattPereira commented on issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1424688881) at 2023-02-09 11:13 AM PST -MattPereira,2023-02-10T15:36:08Z,- MattPereira assigned to issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1425064469) at 2023-02-10 07:36 AM PST -MattPereira,2023-02-10T23:03:07Z,- MattPereira commented on issue: [3283](https://github.com/hackforla/website/issues/3283#issuecomment-1426458346) at 2023-02-10 03:03 PM PST -MattPereira,2023-02-10T23:03:08Z,- MattPereira closed issue as completed: [3283](https://github.com/hackforla/website/issues/3283#event-8494438317) at 2023-02-10 03:03 PM PST -MattPereira,2023-02-10T23:38:27Z,- MattPereira unassigned from issue: [3936](https://github.com/hackforla/website/issues/3936#issuecomment-1425981528) at 2023-02-10 03:38 PM PST -MattPereira,2023-02-12T17:08:34Z,- MattPereira commented on issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1427083158) at 2023-02-12 09:08 AM PST -MattPereira,2023-02-12T17:08:47Z,- MattPereira unassigned from issue: [3334](https://github.com/hackforla/website/issues/3334#issuecomment-1427083158) at 2023-02-12 09:08 AM PST -MattPereira,2023-02-12T18:22:03Z,- MattPereira commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1427098854) at 2023-02-12 10:22 AM PST -MattPereira,2023-02-12T19:02:13Z,- MattPereira commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1427107847) at 2023-02-12 11:02 AM PST -MattPereira,2023-02-12T20:04:29Z,- MattPereira commented on pull request: [3812](https://github.com/hackforla/website/pull/3812#issuecomment-1427120341) at 2023-02-12 12:04 PM PST -MattPereira,2023-02-12T22:15:06Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1294792656) at 2023-02-12 02:15 PM PST -MattPereira,2023-02-12T22:26:16Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1294794444) at 2023-02-12 02:26 PM PST -MattPereira,2023-02-14T15:38:51Z,- MattPereira submitted pull request review: [3965](https://github.com/hackforla/website/pull/3965#pullrequestreview-1297861959) at 2023-02-14 07:38 AM PST -MattPereira,2023-02-14T15:41:50Z,- MattPereira closed issue by PR 3965: [3851](https://github.com/hackforla/website/issues/3851#event-8516921860) at 2023-02-14 07:41 AM PST -MattPereira,2023-02-14T18:49:44Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1298220600) at 2023-02-14 10:49 AM PST -MattPereira,2023-02-14T23:19:39Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1298567546) at 2023-02-14 03:19 PM PST -MattPereira,2023-02-15T00:19:11Z,- MattPereira submitted pull request review: [3887](https://github.com/hackforla/website/pull/3887#pullrequestreview-1298624861) at 2023-02-14 04:19 PM PST -MattPereira,2023-02-15T00:20:07Z,- MattPereira closed issue by PR 3887: [3256](https://github.com/hackforla/website/issues/3256#event-8520892793) at 2023-02-14 04:20 PM PST -MattPereira,2023-02-15T16:36:08Z,- MattPereira commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1431653701) at 2023-02-15 08:36 AM PST -MattPereira,2023-02-15T16:59:34Z,- MattPereira commented on pull request: [3977](https://github.com/hackforla/website/pull/3977#issuecomment-1431687209) at 2023-02-15 08:59 AM PST -MattPereira,2023-02-15T17:02:55Z,- MattPereira submitted pull request review: [3977](https://github.com/hackforla/website/pull/3977#pullrequestreview-1299932946) at 2023-02-15 09:02 AM PST -MattPereira,2023-02-15T17:03:43Z,- MattPereira closed issue by PR 3977: [3694](https://github.com/hackforla/website/issues/3694#event-8528298147) at 2023-02-15 09:03 AM PST -MattPereira,2023-02-15T21:53:38Z,- MattPereira commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1432089101) at 2023-02-15 01:53 PM PST -MattPereira,2023-02-17T02:06:16Z,- MattPereira submitted pull request review: [3978](https://github.com/hackforla/website/pull/3978#pullrequestreview-1302603317) at 2023-02-16 06:06 PM PST -MattPereira,2023-02-17T02:07:14Z,- MattPereira closed issue by PR 3978: [3110](https://github.com/hackforla/website/issues/3110#event-8542861641) at 2023-02-16 06:07 PM PST -MattPereira,2023-02-18T00:19:16Z,- MattPereira submitted pull request review: [4003](https://github.com/hackforla/website/pull/4003#pullrequestreview-1304331571) at 2023-02-17 04:19 PM PST -MattPereira,2023-02-18T00:23:02Z,- MattPereira submitted pull request review: [4003](https://github.com/hackforla/website/pull/4003#pullrequestreview-1304336237) at 2023-02-17 04:23 PM PST -MattPereira,2023-02-18T00:28:41Z,- MattPereira closed issue by PR 3989: [3873](https://github.com/hackforla/website/issues/3873#event-8551942183) at 2023-02-17 04:28 PM PST -MattPereira,2023-02-18T01:54:05Z,- MattPereira closed issue by PR 3993: [3944](https://github.com/hackforla/website/issues/3944#event-8552105307) at 2023-02-17 05:54 PM PST -MattPereira,2023-02-18T05:24:47Z,- MattPereira closed issue by PR 3995: [3822](https://github.com/hackforla/website/issues/3822#event-8552395409) at 2023-02-17 09:24 PM PST -MattPereira,2023-02-18T05:27:38Z,- MattPereira closed issue by PR 4004: [3955](https://github.com/hackforla/website/issues/3955#event-8552398803) at 2023-02-17 09:27 PM PST -MattPereira,2023-02-18T05:37:00Z,- MattPereira submitted pull request review: [4005](https://github.com/hackforla/website/pull/4005#pullrequestreview-1304481034) at 2023-02-17 09:37 PM PST -MattPereira,2023-02-18T05:40:25Z,- MattPereira closed issue by PR 4005: [3936](https://github.com/hackforla/website/issues/3936#event-8552414795) at 2023-02-17 09:40 PM PST -MattPereira,2023-02-19T18:42:15Z,- MattPereira closed issue as completed: [3361](https://github.com/hackforla/website/issues/3361#event-8555767033) at 2023-02-19 10:42 AM PST -MattPereira,2023-02-22T15:37:02Z,- MattPereira opened issue: [4023](https://github.com/hackforla/website/issues/4023) at 2023-02-22 07:37 AM PST -MattPereira,2023-02-23T03:42:19Z,- MattPereira opened issue: [4026](https://github.com/hackforla/website/issues/4026) at 2023-02-22 07:42 PM PST -MattPereira,2023-02-23T16:27:02Z,- MattPereira opened issue: [4031](https://github.com/hackforla/website/issues/4031) at 2023-02-23 08:27 AM PST -MattPereira,2023-02-24T22:49:48Z,- MattPereira commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1444613308) at 2023-02-24 02:49 PM PST -MattPereira,2023-02-24T22:58:38Z,- MattPereira submitted pull request review: [4027](https://github.com/hackforla/website/pull/4027#pullrequestreview-1314355750) at 2023-02-24 02:58 PM PST -MattPereira,2023-02-24T22:59:08Z,- MattPereira closed issue by PR 4027: [3802](https://github.com/hackforla/website/issues/3802#event-8606329940) at 2023-02-24 02:59 PM PST -MattPereira,2023-02-24T23:41:39Z,- MattPereira commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1444723224) at 2023-02-24 03:41 PM PST -MattPereira,2023-02-25T00:08:02Z,- MattPereira opened issue: [4036](https://github.com/hackforla/website/issues/4036) at 2023-02-24 04:08 PM PST -MattPereira,2023-02-25T00:10:47Z,- MattPereira opened issue: [4037](https://github.com/hackforla/website/issues/4037) at 2023-02-24 04:10 PM PST -MattPereira,2023-02-25T07:23:52Z,- MattPereira assigned to issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-24 11:23 PM PST -MattPereira,2023-02-25T17:04:10Z,- MattPereira unassigned from issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-25 09:04 AM PST -MattPereira,2023-02-25T17:08:09Z,- MattPereira commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1445160795) at 2023-02-25 09:08 AM PST -MattPereira,2023-02-25T17:08:09Z,- MattPereira closed issue as completed: [3879](https://github.com/hackforla/website/issues/3879#event-8608196447) at 2023-02-25 09:08 AM PST -MattPereira,2023-02-25T17:32:02Z,- MattPereira opened issue: [4040](https://github.com/hackforla/website/issues/4040) at 2023-02-25 09:32 AM PST -MattPereira,2023-02-25T17:40:56Z,- MattPereira opened issue: [4041](https://github.com/hackforla/website/issues/4041) at 2023-02-25 09:40 AM PST -MattPereira,2023-02-25T18:21:59Z,- MattPereira opened issue: [4042](https://github.com/hackforla/website/issues/4042) at 2023-02-25 10:21 AM PST -MattPereira,2023-02-25T18:30:05Z,- MattPereira opened issue: [4043](https://github.com/hackforla/website/issues/4043) at 2023-02-25 10:30 AM PST -MattPereira,2023-02-25T18:34:38Z,- MattPereira opened issue: [4044](https://github.com/hackforla/website/issues/4044) at 2023-02-25 10:34 AM PST -MattPereira,2023-02-25T22:33:59Z,- MattPereira opened issue: [4049](https://github.com/hackforla/website/issues/4049) at 2023-02-25 02:33 PM PST -MattPereira,2023-02-26T20:15:21Z,- MattPereira submitted pull request review: [4034](https://github.com/hackforla/website/pull/4034#pullrequestreview-1314723281) at 2023-02-26 12:15 PM PST -MattPereira,2023-02-26T20:16:32Z,- MattPereira closed issue by PR 4034: [3931](https://github.com/hackforla/website/issues/3931#event-8610114477) at 2023-02-26 12:16 PM PST -MattPereira,2023-02-28T16:29:23Z,- MattPereira opened issue: [4054](https://github.com/hackforla/website/issues/4054) at 2023-02-28 08:29 AM PST -MattPereira,2023-02-28T16:31:41Z,- MattPereira assigned to issue: [4054](https://github.com/hackforla/website/issues/4054) at 2023-02-28 08:31 AM PST -MattPereira,2023-02-28T17:48:42Z,- MattPereira opened issue: [4055](https://github.com/hackforla/website/issues/4055) at 2023-02-28 09:48 AM PST -MattPereira,2023-02-28T18:08:27Z,- MattPereira commented on issue: [4055](https://github.com/hackforla/website/issues/4055#issuecomment-1448641396) at 2023-02-28 10:08 AM PST -MattPereira,2023-02-28T18:08:35Z,- MattPereira assigned to issue: [4055](https://github.com/hackforla/website/issues/4055#issuecomment-1448641396) at 2023-02-28 10:08 AM PST -MattPereira,2023-02-28T18:21:42Z,- MattPereira opened pull request: [4057](https://github.com/hackforla/website/pull/4057) at 2023-02-28 10:21 AM PST -MattPereira,2023-02-28T18:37:23Z,- MattPereira pull request merged: [4057](https://github.com/hackforla/website/pull/4057#event-8630188194) at 2023-02-28 10:37 AM PST -MattPereira,2023-03-03T23:00:39Z,- MattPereira closed issue by PR 4091: [3963](https://github.com/hackforla/website/issues/3963#event-8664207250) at 2023-03-03 03:00 PM PST -MattPereira,2023-03-03T23:02:03Z,- MattPereira closed issue by PR 4092: [4044](https://github.com/hackforla/website/issues/4044#event-8664214172) at 2023-03-03 03:02 PM PST -MattPereira,2023-03-03T23:10:45Z,- MattPereira commented on pull request: [4096](https://github.com/hackforla/website/pull/4096#issuecomment-1454247401) at 2023-03-03 03:10 PM PST -MattPereira,2023-03-03T23:12:38Z,- MattPereira commented on pull request: [4096](https://github.com/hackforla/website/pull/4096#issuecomment-1454248854) at 2023-03-03 03:12 PM PST -MattPereira,2023-03-03T23:16:14Z,- MattPereira submitted pull request review: [4096](https://github.com/hackforla/website/pull/4096#pullrequestreview-1324738672) at 2023-03-03 03:16 PM PST -MattPereira,2023-03-03T23:16:44Z,- MattPereira closed issue by PR 1: [4045](https://github.com/hackforla/website/issues/4045#event-8664309573) at 2023-03-03 03:16 PM PST -MattPereira,2023-03-04T00:47:18Z,- MattPereira opened pull request: [4105](https://github.com/hackforla/website/pull/4105) at 2023-03-03 04:47 PM PST -MattPereira,2023-03-04T02:25:14Z,- MattPereira commented on pull request: [4078](https://github.com/hackforla/website/pull/4078#issuecomment-1454339986) at 2023-03-03 06:25 PM PST -MattPereira,2023-03-04T16:32:32Z,- MattPereira closed issue by PR 4093: [4037](https://github.com/hackforla/website/issues/4037#event-8666407035) at 2023-03-04 08:32 AM PST -MattPereira,2023-03-04T22:39:05Z,- MattPereira commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454909603) at 2023-03-04 02:39 PM PST -MattPereira,2023-03-05T01:42:13Z,- MattPereira submitted pull request review: [4078](https://github.com/hackforla/website/pull/4078#pullrequestreview-1325143610) at 2023-03-04 05:42 PM PST -MattPereira,2023-03-05T20:38:14Z,- MattPereira commented on pull request: [4100](https://github.com/hackforla/website/pull/4100#issuecomment-1455198898) at 2023-03-05 12:38 PM PST -MattPereira,2023-03-05T20:45:11Z,- MattPereira submitted pull request review: [4100](https://github.com/hackforla/website/pull/4100#pullrequestreview-1325276337) at 2023-03-05 12:45 PM PST -MattPereira,2023-03-06T17:27:57Z,- MattPereira commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1456584292) at 2023-03-06 09:27 AM PST -MattPereira,2023-03-10T07:10:38Z,- MattPereira opened issue: [4145](https://github.com/hackforla/website/issues/4145) at 2023-03-09 11:10 PM PST -MattPereira,2023-03-14T21:47:47Z,- MattPereira commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1468887288) at 2023-03-14 02:47 PM PDT -MattPereira,2023-03-18T23:45:12Z,- MattPereira submitted pull request review: [4110](https://github.com/hackforla/website/pull/4110#pullrequestreview-1347315313) at 2023-03-18 04:45 PM PDT -MattPereira,2023-03-18T23:47:42Z,- MattPereira closed issue by PR 4110: [3341](https://github.com/hackforla/website/issues/3341#event-8786487020) at 2023-03-18 04:47 PM PDT -MattPereira,2023-03-20T16:08:43Z,- MattPereira opened issue: [4219](https://github.com/hackforla/website/issues/4219) at 2023-03-20 09:08 AM PDT -MattPereira,2023-03-21T03:53:40Z,- MattPereira pull request merged: [4105](https://github.com/hackforla/website/pull/4105#event-8801094135) at 2023-03-20 08:53 PM PDT -MattPereira,2023-03-21T12:08:39Z,- MattPereira commented on pull request: [4105](https://github.com/hackforla/website/pull/4105#issuecomment-1477727345) at 2023-03-21 05:08 AM PDT -MattPereira,2023-03-21T21:37:18Z,- MattPereira commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1478615764) at 2023-03-21 02:37 PM PDT -MattPereira,2023-03-21T21:39:00Z,- MattPereira commented on issue: [4040](https://github.com/hackforla/website/issues/4040#issuecomment-1478617255) at 2023-03-21 02:39 PM PDT -MattPereira,2023-03-22T17:42:22Z,- MattPereira commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1480000963) at 2023-03-22 10:42 AM PDT -MattPereira,2023-03-22T18:10:09Z,- MattPereira commented on issue: [3758](https://github.com/hackforla/website/issues/3758#issuecomment-1480038829) at 2023-03-22 11:10 AM PDT -MattPereira,2023-04-02T04:26:14Z,- MattPereira submitted pull request review: [4361](https://github.com/hackforla/website/pull/4361#pullrequestreview-1368017916) at 2023-04-01 09:26 PM PDT -MattPereira,2023-04-02T04:28:18Z,- MattPereira closed issue by PR 4361: [2220](https://github.com/hackforla/website/issues/2220#event-8905724379) at 2023-04-01 09:28 PM PDT -MattPereira,2023-04-02T17:17:24Z,- MattPereira opened issue: [4370](https://github.com/hackforla/website/issues/4370) at 2023-04-02 10:17 AM PDT -MattPereira,2023-04-02T17:34:51Z,- MattPereira unassigned from issue: [2354](https://github.com/hackforla/website/issues/2354#issuecomment-1405497283) at 2023-04-02 10:34 AM PDT -MattPereira,2023-04-02T17:35:18Z,- MattPereira unassigned from issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1404069663) at 2023-04-02 10:35 AM PDT -MattPereira,2023-04-03T22:55:43Z,- MattPereira opened issue: [4392](https://github.com/hackforla/website/issues/4392) at 2023-04-03 03:55 PM PDT -MattPereira,2023-04-04T15:48:06Z,- MattPereira commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1496212245) at 2023-04-04 08:48 AM PDT -MattPereira,2023-04-05T20:25:25Z,- MattPereira commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498097880) at 2023-04-05 01:25 PM PDT -MattPereira,2023-04-05T20:54:59Z,- MattPereira commented on pull request: [4339](https://github.com/hackforla/website/pull/4339#issuecomment-1498141687) at 2023-04-05 01:54 PM PDT -MattPereira,2023-04-06T22:50:00Z,- MattPereira closed issue as completed: [3858](https://github.com/hackforla/website/issues/3858#event-8950278639) at 2023-04-06 03:50 PM PDT -MattPereira,2023-04-12T21:54:25Z,- MattPereira commented on issue: [4392](https://github.com/hackforla/website/issues/4392#issuecomment-1506010357) at 2023-04-12 02:54 PM PDT -MattPereira,2023-05-05T15:46:43Z,- MattPereira commented on pull request: [4602](https://github.com/hackforla/website/pull/4602#issuecomment-1536448081) at 2023-05-05 08:46 AM PDT -MattPereira,2023-05-05T15:53:49Z,- MattPereira submitted pull request review: [4602](https://github.com/hackforla/website/pull/4602#pullrequestreview-1415049097) at 2023-05-05 08:53 AM PDT -MattPereira,2023-05-15T02:15:59Z,- MattPereira unassigned from issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1547100517) at 2023-05-14 07:15 PM PDT -MattPereira,2023-06-24T19:00:35Z,- MattPereira commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1605688180) at 2023-06-24 12:00 PM PDT -MattPereira,2023-06-24T21:01:27Z,- MattPereira commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1605730685) at 2023-06-24 02:01 PM PDT -MattPereira,2023-06-29T14:57:49Z,- MattPereira submitted pull request review: [4899](https://github.com/hackforla/website/pull/4899#pullrequestreview-1505489961) at 2023-06-29 07:57 AM PDT -MattPereira,2023-07-20T16:56:38Z,- MattPereira submitted pull request review: [5037](https://github.com/hackforla/website/pull/5037#pullrequestreview-1539706873) at 2023-07-20 09:56 AM PDT -MattPereira,2023-07-25T15:42:50Z,- MattPereira commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1650085006) at 2023-07-25 08:42 AM PDT -MattPereira,2023-07-26T16:05:21Z,- MattPereira submitted pull request review: [5037](https://github.com/hackforla/website/pull/5037#pullrequestreview-1548114288) at 2023-07-26 09:05 AM PDT -MattPereira,2023-07-29T18:26:37Z,- MattPereira commented on issue: [5086](https://github.com/hackforla/website/issues/5086#issuecomment-1656819128) at 2023-07-29 11:26 AM PDT -MattPereira,2023-07-29T18:38:19Z,- MattPereira commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656825623) at 2023-07-29 11:38 AM PDT -MattPereira,2023-08-23T19:13:39Z,- MattPereira commented on issue: [5219](https://github.com/hackforla/website/issues/5219#issuecomment-1690504120) at 2023-08-23 12:13 PM PDT -maybleMyers,2940,SKILLS ISSUE -maybleMyers,2022-03-08T12:15:15Z,- maybleMyers opened issue: [2940](https://github.com/hackforla/website/issues/2940) at 2022-03-08 04:15 AM PST -maybleMyers,2022-03-09T02:12:34Z,- maybleMyers assigned to issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1061715812) at 2022-03-08 06:12 PM PST -maybleMyers,2022-03-11T08:41:08Z,- maybleMyers assigned to issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1051349764) at 2022-03-11 12:41 AM PST -maybleMyers,2022-03-11T08:44:08Z,- maybleMyers commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1064897011) at 2022-03-11 12:44 AM PST -maybleMyers,2022-03-11T09:48:59Z,- maybleMyers opened pull request: [2965](https://github.com/hackforla/website/pull/2965) at 2022-03-11 01:48 AM PST -maybleMyers,2022-03-11T09:56:06Z,- maybleMyers commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1064954291) at 2022-03-11 01:56 AM PST -maybleMyers,2022-03-12T13:19:37Z,- maybleMyers pull request closed w/o merging: [2965](https://github.com/hackforla/website/pull/2965#event-6229720616) at 2022-03-12 06:19 AM PDT -maybleMyers,2022-03-12T14:37:46Z,- maybleMyers opened pull request: [2971](https://github.com/hackforla/website/pull/2971) at 2022-03-12 07:37 AM PDT -maybleMyers,2022-03-13T16:56:39Z,- maybleMyers pull request merged: [2971](https://github.com/hackforla/website/pull/2971#event-6231362760) at 2022-03-13 09:56 AM PDT -maybleMyers,2022-03-14T16:54:34Z,- maybleMyers assigned to issue: [2891](https://github.com/hackforla/website/issues/2891#issuecomment-1051621260) at 2022-03-14 09:54 AM PDT -maybleMyers,2022-03-14T17:19:19Z,- maybleMyers opened pull request: [2980](https://github.com/hackforla/website/pull/2980) at 2022-03-14 10:19 AM PDT -maybleMyers,2022-03-15T14:34:04Z,- maybleMyers pull request merged: [2980](https://github.com/hackforla/website/pull/2980#event-6243754064) at 2022-03-15 07:34 AM PDT -maybleMyers,2022-03-19T17:04:52Z,- maybleMyers commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1073045268) at 2022-03-19 10:04 AM PDT -maybleMyers,2022-03-19T17:23:58Z,- maybleMyers assigned to issue: [2895](https://github.com/hackforla/website/issues/2895#issuecomment-1053129439) at 2022-03-19 10:23 AM PDT -maybleMyers,2022-03-19T18:03:19Z,- maybleMyers opened pull request: [2992](https://github.com/hackforla/website/pull/2992) at 2022-03-19 11:03 AM PDT -maybleMyers,2022-03-20T18:38:03Z,- maybleMyers pull request merged: [2992](https://github.com/hackforla/website/pull/2992#event-6271594182) at 2022-03-20 11:38 AM PDT -maybleMyers,2022-03-20T19:16:25Z,- maybleMyers assigned to issue: [2987](https://github.com/hackforla/website/issues/2987#issuecomment-1071942949) at 2022-03-20 12:16 PM PDT -maybleMyers,2022-03-20T20:18:28Z,- maybleMyers opened pull request: [2994](https://github.com/hackforla/website/pull/2994) at 2022-03-20 01:18 PM PDT -maybleMyers,2022-03-20T20:19:13Z,- maybleMyers commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1073341540) at 2022-03-20 01:19 PM PDT -maybleMyers,2022-03-21T02:39:21Z,- maybleMyers submitted pull request review: [2996](https://github.com/hackforla/website/pull/2996#pullrequestreview-915202515) at 2022-03-20 07:39 PM PDT -maybleMyers,2022-03-22T02:23:18Z,- maybleMyers pull request merged: [2994](https://github.com/hackforla/website/pull/2994#event-6280143251) at 2022-03-21 07:23 PM PDT -maybleMyers,2022-03-24T09:13:05Z,- maybleMyers assigned to issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-974833271) at 2022-03-24 02:13 AM PDT -maybleMyers,2022-03-24T09:14:39Z,- maybleMyers commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1077403488) at 2022-03-24 02:14 AM PDT -maybleMyers,2022-04-09T18:00:38Z,- maybleMyers unassigned from issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1094085497) at 2022-04-09 11:00 AM PDT -mccormackstudio,2692,SKILLS ISSUE -mccormackstudio,2022-01-17T18:18:28Z,- mccormackstudio opened issue: [2692](https://github.com/hackforla/website/issues/2692) at 2022-01-17 10:18 AM PST -mccormackstudio,2022-01-17T18:24:57Z,- mccormackstudio assigned to issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1014795325) at 2022-01-17 10:24 AM PST -mccormackstudio,2022-01-17T18:42:16Z,- mccormackstudio assigned to issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-999098775) at 2022-01-17 10:42 AM PST -mccormackstudio,2022-01-17T18:45:39Z,- mccormackstudio commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1014810295) at 2022-01-17 10:45 AM PST -mccormackstudio,2022-01-22T19:32:31Z,- mccormackstudio commented on issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1019344561) at 2022-01-22 11:32 AM PST -mccormackstudio,2022-01-23T20:50:11Z,- mccormackstudio commented on issue: [2692](https://github.com/hackforla/website/issues/2692#issuecomment-1019564455) at 2022-01-23 12:50 PM PST -mccormackstudio,2022-01-23T20:50:18Z,- mccormackstudio closed issue as completed: [2692](https://github.com/hackforla/website/issues/2692#event-5938718735) at 2022-01-23 12:50 PM PST -mccormackstudio,2022-01-28T00:38:26Z,- mccormackstudio commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1023772003) at 2022-01-27 04:38 PM PST -mccormackstudio,2022-02-09T20:16:09Z,- mccormackstudio commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1034154243) at 2022-02-09 12:16 PM PST -mccormackstudio,2023-01-22T21:33:07Z,- mccormackstudio unassigned from issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1399614108) at 2023-01-22 01:33 PM PST -mchait18,7696,SKILLS ISSUE -mchait18,2024-11-05T04:07:45Z,- mchait18 opened issue: [7696](https://github.com/hackforla/website/issues/7696) at 2024-11-04 08:07 PM PST -mchait18,2024-11-05T04:08:41Z,- mchait18 assigned to issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2456189999) at 2024-11-04 08:08 PM PST -mchait18,2024-11-05T17:46:03Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2457810413) at 2024-11-05 09:46 AM PST -mchait18,2024-11-05T17:47:33Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2457813416) at 2024-11-05 09:47 AM PST -mchait18,2024-11-05T19:21:29Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2457977998) at 2024-11-05 11:21 AM PST -mchait18,2024-11-05T19:56:06Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2458039713) at 2024-11-05 11:56 AM PST -mchait18,2024-11-06T17:20:34Z,- mchait18 opened issue: [7701](https://github.com/hackforla/website/issues/7701) at 2024-11-06 09:20 AM PST -mchait18,2024-11-06T17:24:26Z,- mchait18 commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460367681) at 2024-11-06 09:24 AM PST -mchait18,2024-11-06T17:30:18Z,- mchait18 opened issue: [7702](https://github.com/hackforla/website/issues/7702) at 2024-11-06 09:30 AM PST -mchait18,2024-11-06T17:34:44Z,- mchait18 opened issue: [7703](https://github.com/hackforla/website/issues/7703) at 2024-11-06 09:34 AM PST -mchait18,2024-11-06T17:42:48Z,- mchait18 opened issue: [7704](https://github.com/hackforla/website/issues/7704) at 2024-11-06 09:42 AM PST -mchait18,2024-11-06T17:44:31Z,- mchait18 commented on issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460407201) at 2024-11-06 09:44 AM PST -mchait18,2024-11-06T17:47:21Z,- mchait18 opened issue: [7705](https://github.com/hackforla/website/issues/7705) at 2024-11-06 09:47 AM PST -mchait18,2024-11-06T17:50:19Z,- mchait18 assigned to issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460407201) at 2024-11-06 09:50 AM PST -mchait18,2024-11-07T16:57:20Z,- mchait18 assigned to issue: [7705](https://github.com/hackforla/website/issues/7705) at 2024-11-07 08:57 AM PST -mchait18,2024-11-07T17:06:20Z,- mchait18 unassigned from issue: [7705](https://github.com/hackforla/website/issues/7705#issuecomment-2462764818) at 2024-11-07 09:06 AM PST -mchait18,2024-11-07T17:08:11Z,- mchait18 assigned to issue: [7652](https://github.com/hackforla/website/issues/7652) at 2024-11-07 09:08 AM PST -mchait18,2024-11-07T17:08:27Z,- mchait18 unassigned from issue: [7652](https://github.com/hackforla/website/issues/7652) at 2024-11-07 09:08 AM PST -mchait18,2024-11-07T17:14:48Z,- mchait18 assigned to issue: [7645](https://github.com/hackforla/website/issues/7645) at 2024-11-07 09:14 AM PST -mchait18,2024-11-07T17:15:08Z,- mchait18 unassigned from issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2462802842) at 2024-11-07 09:15 AM PST -mchait18,2024-11-07T17:18:15Z,- mchait18 unassigned from issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460418975) at 2024-11-07 09:18 AM PST -mchait18,2024-11-07T17:19:02Z,- mchait18 assigned to issue: [7646](https://github.com/hackforla/website/issues/7646) at 2024-11-07 09:19 AM PST -mchait18,2024-11-08T15:21:49Z,- mchait18 opened pull request: [7711](https://github.com/hackforla/website/pull/7711) at 2024-11-08 07:21 AM PST -mchait18,2024-11-08T15:42:49Z,- mchait18 commented on issue: [7646](https://github.com/hackforla/website/issues/7646#issuecomment-2465075284) at 2024-11-08 07:42 AM PST -mchait18,2024-11-08T15:54:08Z,- mchait18 assigned to issue: [7647](https://github.com/hackforla/website/issues/7647) at 2024-11-08 07:54 AM PST -mchait18,2024-11-08T15:54:26Z,- mchait18 unassigned from issue: [7647](https://github.com/hackforla/website/issues/7647#issuecomment-2465101317) at 2024-11-08 07:54 AM PST -mchait18,2024-11-10T03:28:28Z,- mchait18 pull request merged: [7711](https://github.com/hackforla/website/pull/7711#event-15240019154) at 2024-11-09 07:28 PM PST -mchait18,2024-11-10T20:21:57Z,- mchait18 assigned to issue: [7649](https://github.com/hackforla/website/issues/7649) at 2024-11-10 12:21 PM PST -mchait18,2024-11-10T20:56:39Z,- mchait18 opened pull request: [7716](https://github.com/hackforla/website/pull/7716) at 2024-11-10 12:56 PM PST -mchait18,2024-11-11T17:09:38Z,- mchait18 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2463238412) at 2024-11-11 09:09 AM PST -mchait18,2024-11-11T17:09:55Z,- mchait18 unassigned from issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-11 09:09 AM PST -mchait18,2024-11-11T19:59:49Z,- mchait18 commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2468928770) at 2024-11-11 11:59 AM PST -mchait18,2024-11-12T00:45:46Z,- mchait18 assigned to issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2460418975) at 2024-11-11 04:45 PM PST -mchait18,2024-11-12T00:46:01Z,- mchait18 unassigned from issue: [7580](https://github.com/hackforla/website/issues/7580#issuecomment-2469362050) at 2024-11-11 04:46 PM PST -mchait18,2024-11-12T17:30:43Z,- mchait18 commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2471157113) at 2024-11-12 09:30 AM PST -mchait18,2024-11-12T20:19:13Z,- mchait18 assigned to issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-12 12:19 PM PST -mchait18,2024-11-12T20:19:44Z,- mchait18 unassigned from issue: [7378](https://github.com/hackforla/website/issues/7378#issuecomment-2468659603) at 2024-11-12 12:19 PM PST -mchait18,2024-11-13T05:20:11Z,- mchait18 commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2472417348) at 2024-11-12 09:20 PM PST -mchait18,2024-11-13T16:09:05Z,- mchait18 assigned to issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2463259089) at 2024-11-13 08:09 AM PST -mchait18,2024-11-13T16:09:23Z,- mchait18 unassigned from issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2474058622) at 2024-11-13 08:09 AM PST -mchait18,2024-11-15T01:26:16Z,- mchait18 pull request merged: [7716](https://github.com/hackforla/website/pull/7716#event-15306139126) at 2024-11-14 05:26 PM PST -mchait18,2024-11-15T03:37:52Z,- mchait18 assigned to issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2430486154) at 2024-11-14 07:37 PM PST -mchait18,2024-11-19T00:06:21Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2484427547) at 2024-11-18 04:06 PM PST -mchait18,2024-11-19T14:55:41Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2485943751) at 2024-11-19 06:55 AM PST -mchait18,2024-11-19T16:29:36Z,- mchait18 assigned to issue: [7603](https://github.com/hackforla/website/issues/7603) at 2024-11-19 08:29 AM PST -mchait18,2024-11-19T16:41:03Z,- mchait18 commented on issue: [7603](https://github.com/hackforla/website/issues/7603#issuecomment-2486218261) at 2024-11-19 08:41 AM PST -mchait18,2024-11-20T16:16:15Z,- mchait18 opened pull request: [7748](https://github.com/hackforla/website/pull/7748) at 2024-11-20 08:16 AM PST -mchait18,2024-11-20T16:34:35Z,- mchait18 commented on pull request: [7733](https://github.com/hackforla/website/pull/7733#issuecomment-2489061620) at 2024-11-20 08:34 AM PST -mchait18,2024-11-20T16:55:54Z,- mchait18 submitted pull request review: [7733](https://github.com/hackforla/website/pull/7733#pullrequestreview-2449212948) at 2024-11-20 08:55 AM PST -mchait18,2024-11-20T17:00:18Z,- mchait18 commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489119832) at 2024-11-20 09:00 AM PST -mchait18,2024-11-20T17:40:00Z,- mchait18 submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2449308276) at 2024-11-20 09:40 AM PST -mchait18,2024-11-20T17:42:31Z,- mchait18 commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2489201607) at 2024-11-20 09:42 AM PST -mchait18,2024-11-22T03:48:17Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2492820772) at 2024-11-21 07:48 PM PST -mchait18,2024-11-25T15:41:50Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2498367046) at 2024-11-25 07:41 AM PST -mchait18,2024-11-25T16:18:06Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498462872) at 2024-11-25 08:18 AM PST -mchait18,2024-11-25T16:23:14Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498474599) at 2024-11-25 08:23 AM PST -mchait18,2024-11-25T16:25:55Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498481235) at 2024-11-25 08:25 AM PST -mchait18,2024-11-25T19:37:35Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498877616) at 2024-11-25 11:37 AM PST -mchait18,2024-11-25T19:40:04Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498882035) at 2024-11-25 11:40 AM PST -mchait18,2024-11-25T19:42:24Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2498886311) at 2024-11-25 11:42 AM PST -mchait18,2024-11-25T19:47:38Z,- mchait18 commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2498895576) at 2024-11-25 11:47 AM PST -mchait18,2024-11-26T15:00:26Z,- mchait18 submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2461816198) at 2024-11-26 07:00 AM PST -mchait18,2024-11-26T15:03:43Z,- mchait18 commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501055463) at 2024-11-26 07:03 AM PST -mchait18,2024-11-26T15:06:27Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2501062552) at 2024-11-26 07:06 AM PST -mchait18,2024-11-26T16:41:00Z,- mchait18 submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462112429) at 2024-11-26 08:41 AM PST -mchait18,2024-11-26T16:42:31Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2501369219) at 2024-11-26 08:42 AM PST -mchait18,2024-11-26T16:43:14Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2501370815) at 2024-11-26 08:43 AM PST -mchait18,2024-11-26T17:46:19Z,- mchait18 submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462300442) at 2024-11-26 09:46 AM PST -mchait18,2024-11-27T14:27:39Z,- mchait18 commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504019532) at 2024-11-27 06:27 AM PST -mchait18,2024-11-27T16:07:15Z,- mchait18 submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465455308) at 2024-11-27 08:07 AM PST -mchait18,2024-11-27T16:08:37Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2504262070) at 2024-11-27 08:08 AM PST -mchait18,2024-11-27T16:11:22Z,- mchait18 assigned to issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2501255362) at 2024-11-27 08:11 AM PST -mchait18,2024-11-27T16:11:44Z,- mchait18 unassigned from issue: [7362](https://github.com/hackforla/website/issues/7362#issuecomment-2504268912) at 2024-11-27 08:11 AM PST -mchait18,2024-11-27T16:14:29Z,- mchait18 commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2504274869) at 2024-11-27 08:14 AM PST -mchait18,2024-11-27T22:08:03Z,- mchait18 pull request merged: [7748](https://github.com/hackforla/website/pull/7748#event-15458032636) at 2024-11-27 02:08 PM PST -mchait18,2024-11-28T01:53:23Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2505112371) at 2024-11-27 05:53 PM PST -mchait18,2024-11-28T01:55:26Z,- mchait18 commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2505114004) at 2024-11-27 05:55 PM PST -mchait18,2024-11-28T01:56:59Z,- mchait18 assigned to issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2339580789) at 2024-11-27 05:56 PM PST -mchait18,2024-11-28T02:45:08Z,- mchait18 submitted pull request review: [7776](https://github.com/hackforla/website/pull/7776#pullrequestreview-2466229109) at 2024-11-27 06:45 PM PST -mchait18,2024-11-28T02:46:20Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2505161134) at 2024-11-27 06:46 PM PST -mchait18,2024-11-29T16:31:26Z,- mchait18 opened issue: [7781](https://github.com/hackforla/website/issues/7781) at 2024-11-29 08:31 AM PST -mchait18,2024-11-29T16:38:09Z,- mchait18 commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2508128590) at 2024-11-29 08:38 AM PST -mchait18,2024-11-29T16:38:50Z,- mchait18 opened issue: [7782](https://github.com/hackforla/website/issues/7782) at 2024-11-29 08:38 AM PST -mchait18,2024-11-29T17:03:52Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2508163086) at 2024-11-29 09:03 AM PST -mchait18,2024-12-03T02:41:06Z,- mchait18 commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2513422622) at 2024-12-02 06:41 PM PST -mchait18,2024-12-09T03:44:32Z,- mchait18 commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2526796233) at 2024-12-08 07:44 PM PST -mchait18,2024-12-10T16:23:34Z,- mchait18 commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2532206534) at 2024-12-10 08:23 AM PST -mchait18,2024-12-10T16:47:35Z,- mchait18 submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2492951343) at 2024-12-10 08:47 AM PST -mchait18,2024-12-10T16:48:16Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2532265751) at 2024-12-10 08:48 AM PST -mchait18,2024-12-10T16:53:23Z,- mchait18 commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2532277116) at 2024-12-10 08:53 AM PST -mchait18,2024-12-10T20:00:01Z,- mchait18 submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2493449160) at 2024-12-10 12:00 PM PST -mchait18,2024-12-10T20:01:07Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2532747047) at 2024-12-10 12:01 PM PST -mchait18,2024-12-10T20:03:04Z,- mchait18 commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2532750457) at 2024-12-10 12:03 PM PST -mchait18,2024-12-17T16:34:36Z,- mchait18 commented on pull request: [7803](https://github.com/hackforla/website/pull/7803#issuecomment-2548970453) at 2024-12-17 08:34 AM PST -mchait18,2024-12-17T16:53:58Z,- mchait18 submitted pull request review: [7803](https://github.com/hackforla/website/pull/7803#pullrequestreview-2509500205) at 2024-12-17 08:53 AM PST -mchait18,2024-12-17T16:55:14Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2549029174) at 2024-12-17 08:55 AM PST -mchait18,2025-01-08T02:17:20Z,- mchait18 commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2576571209) at 2025-01-07 06:17 PM PST -mchavezm,3124,SKILLS ISSUE -mchavezm,2022-05-11T03:21:40Z,- mchavezm opened issue: [3124](https://github.com/hackforla/website/issues/3124) at 2022-05-10 08:21 PM PDT -mchavezm,2022-05-15T18:40:57Z,- mchavezm assigned to issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1126974601) at 2022-05-15 11:40 AM PDT -mchavezm,2022-05-28T20:48:07Z,- mchavezm assigned to issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1045553249) at 2022-05-28 01:48 PM PDT -mchavezm,2022-05-28T21:03:30Z,- mchavezm commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1140329348) at 2022-05-28 02:03 PM PDT -mchavezm,2022-05-28T21:06:07Z,- mchavezm commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1140329672) at 2022-05-28 02:06 PM PDT -mchavezm,2022-06-02T06:19:25Z,- mchavezm opened pull request: [3193](https://github.com/hackforla/website/pull/3193) at 2022-06-01 11:19 PM PDT -mchavezm,2022-06-03T02:06:53Z,- mchavezm commented on issue: [2798](https://github.com/hackforla/website/issues/2798#issuecomment-1145516584) at 2022-06-02 07:06 PM PDT -mchavezm,2022-06-03T21:24:08Z,- mchavezm pull request merged: [3193](https://github.com/hackforla/website/pull/3193#event-6739950360) at 2022-06-03 02:24 PM PDT -mchavezm,2022-06-05T22:29:50Z,- mchavezm closed issue as completed: [3124](https://github.com/hackforla/website/issues/3124#event-6749322766) at 2022-06-05 03:29 PM PDT -mchavezm,2022-06-08T00:43:33Z,- mchavezm assigned to issue: [3090](https://github.com/hackforla/website/issues/3090#issuecomment-1116531834) at 2022-06-07 05:43 PM PDT -mchavezm,2022-06-13T22:17:32Z,- mchavezm commented on issue: [3090](https://github.com/hackforla/website/issues/3090#issuecomment-1154497272) at 2022-06-13 03:17 PM PDT -mchavezm,2022-06-14T02:16:03Z,- mchavezm opened pull request: [3241](https://github.com/hackforla/website/pull/3241) at 2022-06-13 07:16 PM PDT -mchavezm,2022-06-16T01:21:10Z,- mchavezm pull request merged: [3241](https://github.com/hackforla/website/pull/3241#event-6817326598) at 2022-06-15 06:21 PM PDT -mclotta,8030,SKILLS ISSUE -mclotta,2025-04-01T02:55:44Z,- mclotta opened issue: [8030](https://github.com/hackforla/website/issues/8030) at 2025-03-31 07:55 PM PDT -mclotta,2025-04-01T02:55:52Z,- mclotta assigned to issue: [8030](https://github.com/hackforla/website/issues/8030) at 2025-03-31 07:55 PM PDT -MCoding1,3272,SKILLS ISSUE -MCoding1,2022-06-20T21:41:56Z,- MCoding1 opened issue: [3272](https://github.com/hackforla/website/issues/3272) at 2022-06-20 02:41 PM PDT -MCoding1,2022-06-20T21:56:25Z,- MCoding1 assigned to issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1160868725) at 2022-06-20 02:56 PM PDT -MCoding1,2022-06-21T16:21:21Z,- MCoding1 commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1161975912) at 2022-06-21 09:21 AM PDT -MCoding1,2022-06-24T02:40:19Z,- MCoding1 unassigned from issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1161975912) at 2022-06-23 07:40 PM PDT -MCoding1,2022-06-24T02:54:11Z,- MCoding1 commented on issue: [3272](https://github.com/hackforla/website/issues/3272#issuecomment-1165140886) at 2022-06-23 07:54 PM PDT -MCoding1,2022-06-24T02:54:31Z,- MCoding1 closed issue as completed: [3272](https://github.com/hackforla/website/issues/3272#event-6871108654) at 2022-06-23 07:54 PM PDT -MCoding1,2022-06-27T20:32:41Z,- MCoding1 assigned to issue: [3272](https://github.com/hackforla/website/issues/3272#event-6871108654) at 2022-06-27 01:32 PM PDT -McRawly,2019-10-02T02:09:32Z,- McRawly opened pull request: [153](https://github.com/hackforla/website/pull/153) at 2019-10-01 07:09 PM PDT -McRawly,2019-10-08T02:11:02Z,- McRawly pull request merged: [153](https://github.com/hackforla/website/pull/153#event-2693847223) at 2019-10-07 07:11 PM PDT -McRawly,2019-10-22T23:55:25Z,- McRawly opened issue: [158](https://github.com/hackforla/website/issues/158) at 2019-10-22 04:55 PM PDT -McRawly,2019-10-23T00:56:31Z,- McRawly opened issue: [159](https://github.com/hackforla/website/issues/159) at 2019-10-22 05:56 PM PDT -McRawly,2019-10-23T01:14:09Z,- McRawly opened issue: [160](https://github.com/hackforla/website/issues/160) at 2019-10-22 06:14 PM PDT -McRawly,2019-10-23T01:23:15Z,- McRawly opened issue: [161](https://github.com/hackforla/website/issues/161) at 2019-10-22 06:23 PM PDT -McRawly,2019-10-23T02:49:35Z,- McRawly commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-545240588) at 2019-10-22 07:49 PM PDT -McRawly,2019-10-23T03:19:24Z,- McRawly closed issue as completed: [14](https://github.com/hackforla/website/issues/14#event-2735479648) at 2019-10-22 08:19 PM PDT -McRawly,2019-10-23T03:19:26Z,- McRawly reopened issue: [14](https://github.com/hackforla/website/issues/14#event-2735479648) at 2019-10-22 08:19 PM PDT -McRawly,2019-10-28T01:42:09Z,- McRawly commented on issue: [161](https://github.com/hackforla/website/issues/161#issuecomment-546760315) at 2019-10-27 06:42 PM PDT -McRawly,2019-10-30T02:27:43Z,- McRawly opened pull request: [165](https://github.com/hackforla/website/pull/165) at 2019-10-29 07:27 PM PDT -McRawly,2019-10-30T03:53:34Z,- McRawly opened issue: [499](https://github.com/hackforla/website/issues/499) at 2019-10-29 08:53 PM PDT -McRawly,2019-11-02T04:27:20Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549009509) at 2019-11-01 08:27 PM PST -McRawly,2019-11-02T04:31:27Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549009748) at 2019-11-01 08:31 PM PST -McRawly,2019-11-02T04:34:42Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549009893) at 2019-11-01 08:34 PM PST -McRawly,2019-11-02T04:37:17Z,- McRawly commented on issue: [158](https://github.com/hackforla/website/issues/158#issuecomment-549010013) at 2019-11-01 08:37 PM PST -McRawly,2019-11-02T04:44:27Z,- McRawly commented on pull request: [154](https://github.com/hackforla/website/pull/154#issuecomment-549010363) at 2019-11-01 08:44 PM PST -McRawly,2019-11-03T20:21:26Z,- McRawly assigned to issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174544) at 2019-11-03 12:21 PM PST -McRawly,2019-11-04T03:30:44Z,- McRawly assigned to issue: [168](https://github.com/hackforla/website/issues/168) at 2019-11-03 07:30 PM PST -McRawly,2019-11-04T05:32:32Z,- McRawly pull request merged: [165](https://github.com/hackforla/website/pull/165#event-2766594702) at 2019-11-03 09:32 PM PST -McRawly,2019-11-26T02:58:21Z,- McRawly assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:58 PM PST -McRawly,2019-12-10T04:51:51Z,- McRawly closed issue by PR 180: [160](https://github.com/hackforla/website/issues/160#event-2868784190) at 2019-12-09 08:51 PM PST -mcspach,2021-01-14T16:58:19Z,- mcspach assigned to issue: [905](https://github.com/hackforla/website/issues/905) at 2021-01-14 08:58 AM PST -mcspach,2021-01-14T18:11:10Z,- mcspach commented on issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-760369575) at 2021-01-14 10:11 AM PST -mcspach,2021-01-27T18:01:48Z,- mcspach opened pull request: [971](https://github.com/hackforla/website/pull/971) at 2021-01-27 10:01 AM PST -mcspach,2021-02-03T03:18:13Z,- mcspach pull request merged: [971](https://github.com/hackforla/website/pull/971#event-4282940218) at 2021-02-02 07:18 PM PST -mcspach,2021-02-03T04:56:12Z,- mcspach assigned to issue: [959](https://github.com/hackforla/website/issues/959) at 2021-02-02 08:56 PM PST -mcspach,2021-02-04T02:35:06Z,- mcspach opened pull request: [1001](https://github.com/hackforla/website/pull/1001) at 2021-02-03 06:35 PM PST -mcspach,2021-02-04T17:07:38Z,- mcspach commented on pull request: [1001](https://github.com/hackforla/website/pull/1001#issuecomment-773464161) at 2021-02-04 09:07 AM PST -mcspach,2021-02-07T02:46:29Z,- mcspach pull request merged: [1001](https://github.com/hackforla/website/pull/1001#event-4299745098) at 2021-02-06 06:46 PM PST -mcspach,2021-02-07T18:19:13Z,- mcspach commented on issue: [932](https://github.com/hackforla/website/issues/932#issuecomment-774725706) at 2021-02-07 10:19 AM PST -mcspach,2021-02-07T18:57:41Z,- mcspach commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-774733454) at 2021-02-07 10:57 AM PST -mcspach,2021-02-07T19:12:29Z,- mcspach commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774740059) at 2021-02-07 11:12 AM PST -mcspach,2021-02-07T19:15:18Z,- mcspach commented on issue: [860](https://github.com/hackforla/website/issues/860#issuecomment-774740669) at 2021-02-07 11:15 AM PST -mcspach,2021-02-09T18:51:43Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-776160606) at 2021-02-09 10:51 AM PST -mcspach,2021-02-09T23:14:55Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-776308495) at 2021-02-09 03:14 PM PST -mcspach,2021-02-12T23:42:09Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-778515059) at 2021-02-12 03:42 PM PST -mcspach,2021-02-17T03:16:04Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-780268218) at 2021-02-16 07:16 PM PST -mcspach,2021-02-21T17:06:25Z,- mcspach opened pull request: [1078](https://github.com/hackforla/website/pull/1078) at 2021-02-21 09:06 AM PST -mcspach,2021-02-21T17:14:48Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-782891255) at 2021-02-21 09:14 AM PST -mcspach,2021-02-24T02:47:49Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-784709148) at 2021-02-23 06:47 PM PST -mcspach,2021-02-24T02:55:34Z,- mcspach commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-784711678) at 2021-02-23 06:55 PM PST -mcspach,2021-03-02T00:06:53Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-788416534) at 2021-03-01 04:06 PM PST -mcspach,2021-03-08T17:37:42Z,- mcspach commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-792938050) at 2021-03-08 09:37 AM PST -mcspach,2021-03-09T19:15:46Z,- mcspach commented on pull request: [1078](https://github.com/hackforla/website/pull/1078#issuecomment-794329714) at 2021-03-09 11:15 AM PST -mcspach,2021-03-09T19:35:49Z,- mcspach commented on issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-794352694) at 2021-03-09 11:35 AM PST -mcspach,2021-03-10T04:16:02Z,- mcspach pull request closed w/o merging: [1078](https://github.com/hackforla/website/pull/1078#event-4433281974) at 2021-03-09 08:16 PM PST -mcspach,2021-03-10T04:16:28Z,- mcspach unassigned from issue: [959](https://github.com/hackforla/website/issues/959#issuecomment-794352694) at 2021-03-09 08:16 PM PST -mcspach,2021-04-23T17:02:38Z,- mcspach unassigned from issue: [905](https://github.com/hackforla/website/issues/905#issuecomment-774580390) at 2021-04-23 10:02 AM PDT -mdhailwood1,2021-09-06T16:22:20Z,- mdhailwood1 closed issue by PR 2506: [2202](https://github.com/hackforla/website/issues/2202#event-5261957769) at 2021-09-06 09:22 AM PDT -mdhailwood1,2021-09-06T16:22:23Z,- mdhailwood1 reopened issue: [2202](https://github.com/hackforla/website/issues/2202#event-5261957769) at 2021-09-06 09:22 AM PDT -mdhailwood1,2021-09-12T15:26:53Z,- mdhailwood1 assigned to issue: [2244](https://github.com/hackforla/website/issues/2244) at 2021-09-12 08:26 AM PDT -mdhailwood1,2021-09-17T02:38:25Z,- mdhailwood1 opened pull request: [2284](https://github.com/hackforla/website/pull/2284) at 2021-09-16 07:38 PM PDT -mdhailwood1,2021-09-20T00:16:07Z,- mdhailwood1 assigned to issue: [2279](https://github.com/hackforla/website/issues/2279) at 2021-09-19 05:16 PM PDT -mdhailwood1,2021-09-21T04:39:43Z,- mdhailwood1 pull request merged: [2284](https://github.com/hackforla/website/pull/2284#event-5332670508) at 2021-09-20 09:39 PM PDT -mdhailwood1,2021-09-26T19:15:58Z,- mdhailwood1 commented on issue: [2279](https://github.com/hackforla/website/issues/2279#issuecomment-927355987) at 2021-09-26 12:15 PM PDT -mdhailwood1,2021-09-28T05:23:08Z,- mdhailwood1 submitted pull request review: [2308](https://github.com/hackforla/website/pull/2308#pullrequestreview-764979809) at 2021-09-27 10:23 PM PDT -mdhailwood1,2021-09-29T07:24:26Z,- mdhailwood1 opened pull request: [2315](https://github.com/hackforla/website/pull/2315) at 2021-09-29 12:24 AM PDT -mdhailwood1,2021-10-04T04:51:37Z,- mdhailwood1 pull request merged: [2315](https://github.com/hackforla/website/pull/2315#event-5401317568) at 2021-10-03 09:51 PM PDT -mdhailwood1,2021-10-13T02:37:19Z,- mdhailwood1 commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941860991) at 2021-10-12 07:37 PM PDT -MDivyaPrakash,4986,SKILLS ISSUE -MDivyaPrakash,2023-07-18T02:00:33Z,- MDivyaPrakash opened issue: [4986](https://github.com/hackforla/website/issues/4986) at 2023-07-17 07:00 PM PDT -MDivyaPrakash,2023-07-18T02:49:54Z,- MDivyaPrakash assigned to issue: [4986](https://github.com/hackforla/website/issues/4986) at 2023-07-17 07:49 PM PDT -mdothman,2020-12-27T00:30:51Z,- mdothman opened pull request: [870](https://github.com/hackforla/website/pull/870) at 2020-12-26 04:30 PM PST -mdothman,2020-12-27T01:02:45Z,- mdothman pull request merged: [870](https://github.com/hackforla/website/pull/870#event-4149947046) at 2020-12-26 05:02 PM PST -mdothman,2020-12-27T01:06:33Z,- mdothman opened pull request: [871](https://github.com/hackforla/website/pull/871) at 2020-12-26 05:06 PM PST -mdothman,2020-12-27T01:06:43Z,- mdothman pull request merged: [871](https://github.com/hackforla/website/pull/871#event-4149948637) at 2020-12-26 05:06 PM PST -mdothman,2020-12-27T18:54:46Z,- mdothman opened pull request: [878](https://github.com/hackforla/website/pull/878) at 2020-12-27 10:54 AM PST -mdothman,2020-12-28T01:34:11Z,- mdothman pull request merged: [878](https://github.com/hackforla/website/pull/878#event-4150753855) at 2020-12-27 05:34 PM PST -mdothman,2021-01-17T20:19:14Z,- mdothman opened issue: [947](https://github.com/hackforla/website/issues/947) at 2021-01-17 12:19 PM PST -mdothman,2021-03-03T21:46:06Z,- mdothman commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-790083020) at 2021-03-03 01:46 PM PST -mdothman,2021-03-24T23:54:31Z,- mdothman commented on issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-806257539) at 2021-03-24 04:54 PM PDT -mdothman,2021-04-14T04:22:26Z,- mdothman assigned to issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819217282) at 2021-04-13 09:22 PM PDT -mdothman,2021-04-18T04:13:46Z,- mdothman unassigned from issue: [947](https://github.com/hackforla/website/issues/947#issuecomment-819217282) at 2021-04-17 09:13 PM PDT -mehmehmehlol,2021-08-09T15:27:40Z,- mehmehmehlol assigned to issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-08-09 08:27 AM PDT -mehmehmehlol,2021-08-12T05:00:39Z,- mehmehmehlol opened pull request: [2103](https://github.com/hackforla/website/pull/2103) at 2021-08-11 10:00 PM PDT -mehmehmehlol,2021-08-14T18:21:15Z,- mehmehmehlol pull request merged: [2103](https://github.com/hackforla/website/pull/2103#event-5158987132) at 2021-08-14 11:21 AM PDT -mehmehmehlol,2021-08-15T19:01:07Z,- mehmehmehlol assigned to issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-898022997) at 2021-08-15 12:01 PM PDT -mehmehmehlol,2021-08-17T22:10:25Z,- mehmehmehlol unassigned from issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-898022997) at 2021-08-17 03:10 PM PDT -mehmehmehlol,2021-08-20T04:45:35Z,- mehmehmehlol assigned to issue: [2007](https://github.com/hackforla/website/issues/2007#issuecomment-898022997) at 2021-08-19 09:45 PM PDT -mehmehmehlol,2021-08-20T05:18:02Z,- mehmehmehlol opened pull request: [2136](https://github.com/hackforla/website/pull/2136) at 2021-08-19 10:18 PM PDT -mehmehmehlol,2021-08-20T05:21:20Z,- mehmehmehlol pull request merged: [2136](https://github.com/hackforla/website/pull/2136#event-5184846690) at 2021-08-19 10:21 PM PDT -mehmehmehlol,2021-08-20T05:22:00Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902439409) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:22:00Z,- mehmehmehlol reopened pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902439409) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:22:34Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902439592) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:22:34Z,- mehmehmehlol pull request merged: [2136](https://github.com/hackforla/website/pull/2136#event-5184849647) at 2021-08-19 10:22 PM PDT -mehmehmehlol,2021-08-20T05:26:20Z,- mehmehmehlol reopened pull request: [2136](https://github.com/hackforla/website/pull/2136#event-5184849647) at 2021-08-19 10:26 PM PDT -mehmehmehlol,2021-08-20T05:28:58Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-902442262) at 2021-08-19 10:28 PM PDT -mehmehmehlol,2021-08-23T22:31:41Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-904178528) at 2021-08-23 03:31 PM PDT -mehmehmehlol,2021-08-24T03:08:42Z,- mehmehmehlol commented on pull request: [2136](https://github.com/hackforla/website/pull/2136#issuecomment-904286743) at 2021-08-23 08:08 PM PDT -mehmehmehlol,2021-08-24T15:55:53Z,- mehmehmehlol pull request merged: [2136](https://github.com/hackforla/website/pull/2136#event-5201586267) at 2021-08-24 08:55 AM PDT -mehmehmehlol,2021-08-24T18:57:35Z,- mehmehmehlol assigned to issue: [2165](https://github.com/hackforla/website/issues/2165#issuecomment-903475840) at 2021-08-24 11:57 AM PDT -mehmehmehlol,2021-08-28T19:50:25Z,- mehmehmehlol opened pull request: [2196](https://github.com/hackforla/website/pull/2196) at 2021-08-28 12:50 PM PDT -mehmehmehlol,2021-08-28T20:03:53Z,- mehmehmehlol commented on issue: [2165](https://github.com/hackforla/website/issues/2165#issuecomment-907682735) at 2021-08-28 01:03 PM PDT -mehmehmehlol,2021-08-31T03:42:19Z,- mehmehmehlol pull request merged: [2196](https://github.com/hackforla/website/pull/2196#event-5229830751) at 2021-08-30 08:42 PM PDT -mehmehmehlol,2021-08-31T03:55:02Z,- mehmehmehlol assigned to issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-905191021) at 2021-08-30 08:55 PM PDT -mehmehmehlol,2021-09-05T06:49:48Z,- mehmehmehlol opened pull request: [2224](https://github.com/hackforla/website/pull/2224) at 2021-09-04 11:49 PM PDT -mehmehmehlol,2021-09-05T06:54:57Z,- mehmehmehlol commented on pull request: [2224](https://github.com/hackforla/website/pull/2224#issuecomment-913097124) at 2021-09-04 11:54 PM PDT -mehmehmehlol,2021-09-05T07:02:24Z,- mehmehmehlol opened pull request: [2225](https://github.com/hackforla/website/pull/2225) at 2021-09-05 12:02 AM PDT -mehmehmehlol,2021-09-05T07:02:28Z,- mehmehmehlol pull request closed w/o merging: [2225](https://github.com/hackforla/website/pull/2225#event-5257170496) at 2021-09-05 12:02 AM PDT -mehmehmehlol,2021-09-05T17:09:57Z,- mehmehmehlol commented on issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-913192241) at 2021-09-05 10:09 AM PDT -mehmehmehlol,2021-09-11T04:38:09Z,- mehmehmehlol pull request merged: [2224](https://github.com/hackforla/website/pull/2224#event-5287192908) at 2021-09-10 09:38 PM PDT -mehmehmehlol,2021-09-16T02:05:21Z,- mehmehmehlol assigned to issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-903298279) at 2021-09-15 07:05 PM PDT -mehmehmehlol,2021-10-04T06:40:03Z,- mehmehmehlol unassigned from issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-931964234) at 2021-10-03 11:40 PM PDT -Melissa-Vasquez,2020-12-30T05:13:45Z,- Melissa-Vasquez assigned to issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-12-29 09:13 PM PST -Melissa-Vasquez,2020-12-30T05:17:21Z,- Melissa-Vasquez unassigned from issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-12-29 09:17 PM PST -Melissa-Vasquez,2020-12-30T05:17:36Z,- Melissa-Vasquez assigned to issue: [891](https://github.com/hackforla/website/issues/891) at 2020-12-29 09:17 PM PST -Melissa-Vasquez,2020-12-30T06:58:05Z,- Melissa-Vasquez opened pull request: [898](https://github.com/hackforla/website/pull/898) at 2020-12-29 10:58 PM PST -Melissa-Vasquez,2020-12-30T07:04:30Z,- Melissa-Vasquez assigned to issue: [894](https://github.com/hackforla/website/issues/894) at 2020-12-29 11:04 PM PST -Melissa-Vasquez,2021-01-03T18:16:56Z,- Melissa-Vasquez pull request merged: [898](https://github.com/hackforla/website/pull/898#event-4162685813) at 2021-01-03 10:16 AM PST -Melissa-Vasquez,2021-01-10T18:14:02Z,- Melissa-Vasquez unassigned from issue: [894](https://github.com/hackforla/website/issues/894) at 2021-01-10 10:14 AM PST -melissaluc,8008,SKILLS ISSUE -melissaluc,2025-03-19T03:46:11Z,- melissaluc opened issue: [8008](https://github.com/hackforla/website/issues/8008) at 2025-03-18 08:46 PM PDT -melissaluc,2025-03-19T03:46:12Z,- melissaluc assigned to issue: [8008](https://github.com/hackforla/website/issues/8008) at 2025-03-18 08:46 PM PDT -melissaluc,2025-03-25T14:08:51Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2751392081) at 2025-03-25 07:08 AM PDT -melissaluc,2025-03-25T15:29:30Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2751662249) at 2025-03-25 08:29 AM PDT -melissaluc,2025-03-28T20:53:14Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2762481527) at 2025-03-28 01:53 PM PDT -melissaluc,2025-03-28T20:53:49Z,- melissaluc assigned to issue: [7470](https://github.com/hackforla/website/issues/7470) at 2025-03-28 01:53 PM PDT -melissaluc,2025-03-28T21:00:42Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2762499807) at 2025-03-28 02:00 PM PDT -melissaluc,2025-03-28T21:01:52Z,- melissaluc commented on issue: [7470](https://github.com/hackforla/website/issues/7470#issuecomment-2762503448) at 2025-03-28 02:01 PM PDT -melissaluc,2025-03-29T12:59:06Z,- melissaluc opened pull request: [8020](https://github.com/hackforla/website/pull/8020) at 2025-03-29 05:59 AM PDT -melissaluc,2025-04-01T23:20:34Z,- melissaluc commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2770891713) at 2025-04-01 04:20 PM PDT -melissaluc,2025-04-01T23:37:52Z,- melissaluc commented on pull request: [8022](https://github.com/hackforla/website/pull/8022#issuecomment-2770912077) at 2025-04-01 04:37 PM PDT -melissaluc,2025-04-02T21:56:05Z,- melissaluc submitted pull request review: [8022](https://github.com/hackforla/website/pull/8022#pullrequestreview-2737684169) at 2025-04-02 02:56 PM PDT -melissaluc,2025-04-02T22:01:14Z,- melissaluc submitted pull request review: [8021](https://github.com/hackforla/website/pull/8021#pullrequestreview-2737693495) at 2025-04-02 03:01 PM PDT -melissaluc,2025-04-03T02:47:21Z,- melissaluc pull request merged: [8020](https://github.com/hackforla/website/pull/8020#event-17104306211) at 2025-04-02 07:47 PM PDT -melissaluc,2025-04-03T12:33:51Z,- melissaluc assigned to issue: [7485](https://github.com/hackforla/website/issues/7485) at 2025-04-03 05:33 AM PDT -melissaluc,2025-04-03T12:36:04Z,- melissaluc commented on issue: [7485](https://github.com/hackforla/website/issues/7485#issuecomment-2775650952) at 2025-04-03 05:36 AM PDT -melissaluc,2025-04-03T14:46:23Z,- melissaluc opened pull request: [8041](https://github.com/hackforla/website/pull/8041) at 2025-04-03 07:46 AM PDT -melissaluc,2025-04-07T15:31:36Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2783742717) at 2025-04-07 08:31 AM PDT -melissaluc,2025-04-11T15:32:38Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2797246947) at 2025-04-11 08:32 AM PDT -melissaluc,2025-04-11T15:34:39Z,- melissaluc assigned to issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2683818162) at 2025-04-11 08:34 AM PDT -melissaluc,2025-04-11T15:34:56Z,- melissaluc unassigned from issue: [7390](https://github.com/hackforla/website/issues/7390#issuecomment-2797253710) at 2025-04-11 08:34 AM PDT -melissaluc,2025-04-12T00:27:58Z,- melissaluc pull request merged: [8041](https://github.com/hackforla/website/pull/8041#event-17232015305) at 2025-04-11 05:27 PM PDT -melissaluc,2025-04-12T01:14:13Z,- melissaluc assigned to issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2629871636) at 2025-04-11 06:14 PM PDT -melissaluc,2025-04-13T22:57:18Z,- melissaluc commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2800165898) at 2025-04-13 03:57 PM PDT -melissaluc,2025-04-25T16:48:29Z,- melissaluc commented on pull request: [8088](https://github.com/hackforla/website/pull/8088#issuecomment-2830915751) at 2025-04-25 09:48 AM PDT -melissaluc,2025-04-25T17:51:30Z,- melissaluc submitted pull request review: [8088](https://github.com/hackforla/website/pull/8088#pullrequestreview-2794878352) at 2025-04-25 10:51 AM PDT -melissaluc,2025-04-25T17:55:36Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831067230) at 2025-04-25 10:55 AM PDT -melissaluc,2025-04-25T17:56:25Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831068873) at 2025-04-25 10:56 AM PDT -melissaluc,2025-04-25T17:56:35Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831069160) at 2025-04-25 10:56 AM PDT -melissaluc,2025-04-25T18:04:25Z,- melissaluc assigned to issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-04-25 11:04 AM PDT -melissaluc,2025-04-25T18:04:40Z,- melissaluc unassigned from issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-04-25 11:04 AM PDT -melissaluc,2025-04-25T18:09:03Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831092489) at 2025-04-25 11:09 AM PDT -melissaluc,2025-04-25T18:11:24Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831096750) at 2025-04-25 11:11 AM PDT -melissaluc,2025-04-25T18:12:24Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2831098584) at 2025-04-25 11:12 AM PDT -melissaluc,2025-04-30T14:20:18Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2842150338) at 2025-04-30 07:20 AM PDT -melissaluc,2025-05-16T17:42:15Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2887329366) at 2025-05-16 10:42 AM PDT -melissaluc,2025-05-23T17:40:35Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2905289440) at 2025-05-23 10:40 AM PDT -melissaluc,2025-05-31T16:28:49Z,- melissaluc commented on issue: [8008](https://github.com/hackforla/website/issues/8008#issuecomment-2925407816) at 2025-05-31 09:28 AM PDT -melissam640,7029,SKILLS ISSUE -melissam640,2024-06-19T03:13:44Z,- melissam640 opened issue: [7029](https://github.com/hackforla/website/issues/7029) at 2024-06-18 08:13 PM PDT -melissam640,2024-06-19T03:14:38Z,- melissam640 assigned to issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2177463997) at 2024-06-18 08:14 PM PDT -melissam640,2024-06-24T17:31:52Z,- melissam640 assigned to issue: [7060](https://github.com/hackforla/website/issues/7060#issuecomment-2185905586) at 2024-06-24 10:31 AM PDT -melissam640,2024-06-24T17:41:46Z,- melissam640 commented on issue: [7060](https://github.com/hackforla/website/issues/7060#issuecomment-2187088761) at 2024-06-24 10:41 AM PDT -melissam640,2024-06-24T17:52:40Z,- melissam640 commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2187106044) at 2024-06-24 10:52 AM PDT -melissam640,2024-06-24T19:13:21Z,- melissam640 opened pull request: [7063](https://github.com/hackforla/website/pull/7063) at 2024-06-24 12:13 PM PDT -melissam640,2024-06-25T20:21:56Z,- melissam640 pull request merged: [7063](https://github.com/hackforla/website/pull/7063#event-13287463120) at 2024-06-25 01:21 PM PDT -melissam640,2024-06-26T21:06:31Z,- melissam640 assigned to issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2159590792) at 2024-06-26 02:06 PM PDT -melissam640,2024-06-26T21:15:20Z,- melissam640 commented on issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2192638783) at 2024-06-26 02:15 PM PDT -melissam640,2024-06-26T21:46:44Z,- melissam640 opened pull request: [7069](https://github.com/hackforla/website/pull/7069) at 2024-06-26 02:46 PM PDT -melissam640,2024-06-26T23:33:51Z,- melissam640 pull request merged: [7069](https://github.com/hackforla/website/pull/7069#event-13305297698) at 2024-06-26 04:33 PM PDT -melissam640,2024-07-05T18:32:28Z,- melissam640 commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2211267832) at 2024-07-05 11:32 AM PDT -melissam640,2024-07-15T21:45:58Z,- melissam640 assigned to issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229153557) at 2024-07-15 02:45 PM PDT -melissam640,2024-07-15T21:49:57Z,- melissam640 commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229498774) at 2024-07-15 02:49 PM PDT -melissam640,2024-07-15T22:20:26Z,- melissam640 opened pull request: [7121](https://github.com/hackforla/website/pull/7121) at 2024-07-15 03:20 PM PDT -melissam640,2024-07-16T02:49:16Z,- melissam640 pull request merged: [7121](https://github.com/hackforla/website/pull/7121#event-13514035922) at 2024-07-15 07:49 PM PDT -melissam640,2024-07-18T19:14:38Z,- melissam640 assigned to issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2195377318) at 2024-07-18 12:14 PM PDT -melissam640,2024-07-18T19:17:22Z,- melissam640 commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2237357456) at 2024-07-18 12:17 PM PDT -melissam640,2024-07-18T22:31:16Z,- melissam640 opened pull request: [7128](https://github.com/hackforla/website/pull/7128) at 2024-07-18 03:31 PM PDT -melissam640,2024-07-22T04:23:50Z,- melissam640 commented on pull request: [7128](https://github.com/hackforla/website/pull/7128#issuecomment-2242058875) at 2024-07-21 09:23 PM PDT -melissam640,2024-07-22T17:14:25Z,- melissam640 pull request merged: [7128](https://github.com/hackforla/website/pull/7128#event-13604438318) at 2024-07-22 10:14 AM PDT -melissam640,2024-08-05T22:53:25Z,- melissam640 commented on issue: [7029](https://github.com/hackforla/website/issues/7029#issuecomment-2270053378) at 2024-08-05 03:53 PM PDT -melodylaishram,2020-01-30T02:36:02Z,- melodylaishram assigned to issue: [240](https://github.com/hackforla/website/issues/240) at 2020-01-29 06:36 PM PST -melodylaishram,2020-01-30T05:53:01Z,- melodylaishram commented on issue: [240](https://github.com/hackforla/website/issues/240#issuecomment-580094928) at 2020-01-29 09:53 PM PST -melodylaishram,2020-02-16T18:42:36Z,- melodylaishram unassigned from issue: [240](https://github.com/hackforla/website/issues/240#issuecomment-580094928) at 2020-02-16 10:42 AM PST -melodylaishram,2020-02-17T21:41:14Z,- melodylaishram closed issue as completed: [240](https://github.com/hackforla/website/issues/240#event-3045075519) at 2020-02-17 01:41 PM PST -merlinsmagic,2023-08-14T21:44:20Z,- merlinsmagic commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1678115710) at 2023-08-14 02:44 PM PDT -merlinsmagic,2023-08-22T17:08:00Z,- merlinsmagic commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1688598407) at 2023-08-22 10:08 AM PDT -meru-a,5215,SKILLS ISSUE -meru-a,2023-08-15T02:58:10Z,- meru-a opened issue: [5215](https://github.com/hackforla/website/issues/5215) at 2023-08-14 07:58 PM PDT -meru-a,2023-08-15T03:45:36Z,- meru-a assigned to issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1678358674) at 2023-08-14 08:45 PM PDT -meru-a,2023-08-17T03:47:53Z,- meru-a assigned to issue: [5184](https://github.com/hackforla/website/issues/5184#issuecomment-1675513783) at 2023-08-16 08:47 PM PDT -meru-a,2023-08-17T03:52:40Z,- meru-a commented on issue: [5184](https://github.com/hackforla/website/issues/5184#issuecomment-1681570763) at 2023-08-16 08:52 PM PDT -meru-a,2023-08-20T04:27:15Z,- meru-a opened pull request: [5263](https://github.com/hackforla/website/pull/5263) at 2023-08-19 09:27 PM PDT -meru-a,2023-08-24T01:30:37Z,- meru-a commented on pull request: [5296](https://github.com/hackforla/website/pull/5296#issuecomment-1690853790) at 2023-08-23 06:30 PM PDT -meru-a,2023-08-24T01:36:08Z,- meru-a assigned to issue: [5176](https://github.com/hackforla/website/issues/5176#issuecomment-1672311176) at 2023-08-23 06:36 PM PDT -meru-a,2023-08-24T01:36:59Z,- meru-a commented on issue: [5176](https://github.com/hackforla/website/issues/5176#issuecomment-1690857756) at 2023-08-23 06:36 PM PDT -meru-a,2023-08-24T17:54:57Z,- meru-a commented on issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1692167583) at 2023-08-24 10:54 AM PDT -meru-a,2023-08-24T17:57:03Z,- meru-a commented on issue: [5215](https://github.com/hackforla/website/issues/5215#issuecomment-1692170373) at 2023-08-24 10:57 AM PDT -meru-a,2023-08-24T17:57:04Z,- meru-a closed issue as completed: [5215](https://github.com/hackforla/website/issues/5215#event-10184466810) at 2023-08-24 10:57 AM PDT -meru-a,2023-08-24T18:22:46Z,- meru-a submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1594201885) at 2023-08-24 11:22 AM PDT -meru-a,2023-08-24T18:23:03Z,- meru-a submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1594202288) at 2023-08-24 11:23 AM PDT -meru-a,2023-08-24T18:51:42Z,- meru-a opened pull request: [5299](https://github.com/hackforla/website/pull/5299) at 2023-08-24 11:51 AM PDT -meru-a,2023-08-27T02:18:02Z,- meru-a pull request merged: [5263](https://github.com/hackforla/website/pull/5263#event-10201003635) at 2023-08-26 07:18 PM PDT -meru-a,2023-08-27T23:16:17Z,- meru-a submitted pull request review: [5296](https://github.com/hackforla/website/pull/5296#pullrequestreview-1597208062) at 2023-08-27 04:16 PM PDT -meru-a,2023-08-28T19:22:25Z,- meru-a pull request merged: [5299](https://github.com/hackforla/website/pull/5299#event-10212828508) at 2023-08-28 12:22 PM PDT -meru-a,2023-08-29T15:20:48Z,- meru-a assigned to issue: [5315](https://github.com/hackforla/website/issues/5315) at 2023-08-29 08:20 AM PDT -meru-a,2023-08-29T15:22:15Z,- meru-a commented on issue: [5315](https://github.com/hackforla/website/issues/5315#issuecomment-1697659646) at 2023-08-29 08:22 AM PDT -meru-a,2023-09-01T00:40:20Z,- meru-a commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1701954124) at 2023-08-31 05:40 PM PDT -meru-a,2023-09-01T00:40:52Z,- meru-a commented on pull request: [5401](https://github.com/hackforla/website/pull/5401#issuecomment-1701954452) at 2023-08-31 05:40 PM PDT -meru-a,2023-09-01T00:41:21Z,- meru-a commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701954775) at 2023-08-31 05:41 PM PDT -meru-a,2023-09-01T22:05:06Z,- meru-a submitted pull request review: [5400](https://github.com/hackforla/website/pull/5400#pullrequestreview-1607709367) at 2023-09-01 03:05 PM PDT -meru-a,2023-09-01T22:09:54Z,- meru-a submitted pull request review: [5399](https://github.com/hackforla/website/pull/5399#pullrequestreview-1607713243) at 2023-09-01 03:09 PM PDT -meru-a,2023-09-01T22:27:06Z,- meru-a submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1607721977) at 2023-09-01 03:27 PM PDT -meru-a,2023-09-01T23:17:27Z,- meru-a opened pull request: [5415](https://github.com/hackforla/website/pull/5415) at 2023-09-01 04:17 PM PDT -meru-a,2023-09-05T01:36:45Z,- meru-a submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1610058179) at 2023-09-04 06:36 PM PDT -meru-a,2023-09-07T06:46:54Z,- meru-a pull request merged: [5415](https://github.com/hackforla/website/pull/5415#event-10303404993) at 2023-09-06 11:46 PM PDT -meru-a,2023-09-20T02:29:04Z,- meru-a assigned to issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1720785377) at 2023-09-19 07:29 PM PDT -meru-a,2023-09-20T02:33:40Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1726791032) at 2023-09-19 07:33 PM PDT -meru-a,2023-09-23T03:37:51Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1732198461) at 2023-09-22 08:37 PM PDT -meru-a,2023-10-05T02:59:45Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1747962378) at 2023-10-04 07:59 PM PDT -meru-a,2023-10-05T15:25:53Z,- meru-a commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1749131737) at 2023-10-05 08:25 AM PDT -meru-a,2023-10-14T15:29:35Z,- meru-a assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762099537) at 2023-10-14 08:29 AM PDT -meru-a,2023-10-14T15:31:12Z,- meru-a commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1762970367) at 2023-10-14 08:31 AM PDT -meru-a,2023-10-14T16:08:12Z,- meru-a commented on pull request: [5704](https://github.com/hackforla/website/pull/5704#issuecomment-1763015352) at 2023-10-14 09:08 AM PDT -meru-a,2023-10-15T14:09:15Z,- meru-a commented on pull request: [5704](https://github.com/hackforla/website/pull/5704#issuecomment-1763400829) at 2023-10-15 07:09 AM PDT -meru-a,2023-10-15T14:09:28Z,- meru-a submitted pull request review: [5704](https://github.com/hackforla/website/pull/5704#pullrequestreview-1678801203) at 2023-10-15 07:09 AM PDT -meru-a,2023-10-17T05:29:43Z,- meru-a commented on pull request: [5718](https://github.com/hackforla/website/pull/5718#issuecomment-1765695282) at 2023-10-16 10:29 PM PDT -meru-a,2023-10-17T05:34:36Z,- meru-a submitted pull request review: [5718](https://github.com/hackforla/website/pull/5718#pullrequestreview-1681395413) at 2023-10-16 10:34 PM PDT -meru-a,2023-10-27T19:14:59Z,- meru-a commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1783389977) at 2023-10-27 12:14 PM PDT -meru-a,2023-10-28T15:46:15Z,- meru-a commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1783853655) at 2023-10-28 08:46 AM PDT -meru-a,2023-10-30T05:15:12Z,- meru-a submitted pull request review: [5788](https://github.com/hackforla/website/pull/5788#pullrequestreview-1703278605) at 2023-10-29 10:15 PM PDT -meru-a,2023-11-22T04:07:07Z,- meru-a unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1815845017) at 2023-11-21 08:07 PM PST -meru-a,2023-11-22T04:07:23Z,- meru-a commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1822065293) at 2023-11-21 08:07 PM PST -mgodoy2023,2021-06-18T16:20:14Z,- mgodoy2023 assigned to issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-06-18 09:20 AM PDT -mgodoy2023,2021-06-18T18:13:52Z,- mgodoy2023 opened pull request: [1780](https://github.com/hackforla/website/pull/1780) at 2021-06-18 11:13 AM PDT -mgodoy2023,2021-06-20T14:01:25Z,- mgodoy2023 pull request merged: [1780](https://github.com/hackforla/website/pull/1780#event-4913441372) at 2021-06-20 07:01 AM PDT -mgodoy2023,2021-06-21T16:45:36Z,- mgodoy2023 assigned to issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-21 09:45 AM PDT -mgodoy2023,2021-06-21T16:46:41Z,- mgodoy2023 unassigned from issue: [1793](https://github.com/hackforla/website/issues/1793) at 2021-06-21 09:46 AM PDT -mgodoy2023,2021-06-21T16:49:44Z,- mgodoy2023 assigned to issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-843016476) at 2021-06-21 09:49 AM PDT -mgodoy2023,2021-06-21T18:29:02Z,- mgodoy2023 commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-865252790) at 2021-06-21 11:29 AM PDT -mgodoy2023,2021-06-21T18:44:35Z,- mgodoy2023 opened pull request: [1798](https://github.com/hackforla/website/pull/1798) at 2021-06-21 11:44 AM PDT -mgodoy2023,2021-06-21T20:09:45Z,- mgodoy2023 commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-865311883) at 2021-06-21 01:09 PM PDT -mgodoy2023,2021-06-21T21:33:51Z,- mgodoy2023 pull request closed w/o merging: [1798](https://github.com/hackforla/website/pull/1798#event-4919233698) at 2021-06-21 02:33 PM PDT -mgodoy2023,2021-06-21T22:21:20Z,- mgodoy2023 reopened pull request: [1798](https://github.com/hackforla/website/pull/1798#event-4919233698) at 2021-06-21 03:21 PM PDT -mgodoy2023,2021-06-21T22:22:57Z,- mgodoy2023 pull request closed w/o merging: [1798](https://github.com/hackforla/website/pull/1798#event-4919391064) at 2021-06-21 03:22 PM PDT -mgodoy2023,2021-06-21T23:16:47Z,- mgodoy2023 opened pull request: [1802](https://github.com/hackforla/website/pull/1802) at 2021-06-21 04:16 PM PDT -mgodoy2023,2021-06-21T23:20:33Z,- mgodoy2023 commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-865407352) at 2021-06-21 04:20 PM PDT -mgodoy2023,2021-06-23T19:55:35Z,- mgodoy2023 pull request closed w/o merging: [1802](https://github.com/hackforla/website/pull/1802#event-4930892275) at 2021-06-23 12:55 PM PDT -mgodoy2023,2021-06-23T20:28:07Z,- mgodoy2023 opened pull request: [1819](https://github.com/hackforla/website/pull/1819) at 2021-06-23 01:28 PM PDT -mgodoy2023,2021-06-28T16:26:18Z,- mgodoy2023 assigned to issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-841860135) at 2021-06-28 09:26 AM PDT -mgodoy2023,2021-06-28T16:41:18Z,- mgodoy2023 pull request merged: [1819](https://github.com/hackforla/website/pull/1819#event-4948586095) at 2021-06-28 09:41 AM PDT -mgodoy2023,2021-06-28T22:56:08Z,- mgodoy2023 unassigned from issue: [1551](https://github.com/hackforla/website/issues/1551#issuecomment-870084891) at 2021-06-28 03:56 PM PDT -mgodoy2023,2021-06-30T16:28:31Z,- mgodoy2023 assigned to issue: [1739](https://github.com/hackforla/website/issues/1739) at 2021-06-30 09:28 AM PDT -mgodoy2023,2021-06-30T21:15:53Z,- mgodoy2023 reopened pull request: [1819](https://github.com/hackforla/website/pull/1819#event-4948586095) at 2021-06-30 02:15 PM PDT -mgodoy2023,2021-06-30T22:38:50Z,- mgodoy2023 commented on pull request: [1819](https://github.com/hackforla/website/pull/1819#issuecomment-871772068) at 2021-06-30 03:38 PM PDT -mgodoy2023,2021-07-01T02:04:14Z,- mgodoy2023 submitted pull request review: [1862](https://github.com/hackforla/website/pull/1862#pullrequestreview-696749090) at 2021-06-30 07:04 PM PDT -mgodoy2023,2021-07-01T02:14:14Z,- mgodoy2023 submitted pull request review: [1860](https://github.com/hackforla/website/pull/1860#pullrequestreview-696752591) at 2021-06-30 07:14 PM PDT -mgodoy2023,2021-07-02T16:58:42Z,- mgodoy2023 pull request merged: [1819](https://github.com/hackforla/website/pull/1819#event-4972490058) at 2021-07-02 09:58 AM PDT -mgodoy2023,2021-07-11T05:52:39Z,- mgodoy2023 commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-877745959) at 2021-07-10 10:52 PM PDT -mgodoy2023,2021-07-13T18:35:11Z,- mgodoy2023 commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-879311270) at 2021-07-13 11:35 AM PDT -mgodoy2023,2021-07-15T18:48:44Z,- mgodoy2023 opened pull request: [1949](https://github.com/hackforla/website/pull/1949) at 2021-07-15 11:48 AM PDT -mgodoy2023,2021-07-16T18:08:21Z,- mgodoy2023 submitted pull request review: [1952](https://github.com/hackforla/website/pull/1952#pullrequestreview-708636941) at 2021-07-16 11:08 AM PDT -mgodoy2023,2021-07-16T18:22:01Z,- mgodoy2023 submitted pull request review: [1946](https://github.com/hackforla/website/pull/1946#pullrequestreview-708646388) at 2021-07-16 11:22 AM PDT -mgodoy2023,2021-07-17T18:44:34Z,- mgodoy2023 commented on pull request: [1949](https://github.com/hackforla/website/pull/1949#issuecomment-881942285) at 2021-07-17 11:44 AM PDT -mgodoy2023,2021-07-19T16:27:07Z,- mgodoy2023 submitted pull request review: [1946](https://github.com/hackforla/website/pull/1946#pullrequestreview-709750686) at 2021-07-19 09:27 AM PDT -mgodoy2023,2021-07-19T16:39:28Z,- mgodoy2023 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-882694329) at 2021-07-19 09:39 AM PDT -mgodoy2023,2021-07-19T18:34:57Z,- mgodoy2023 commented on pull request: [1949](https://github.com/hackforla/website/pull/1949#issuecomment-882769248) at 2021-07-19 11:34 AM PDT -mgodoy2023,2021-07-19T19:52:44Z,- mgodoy2023 pull request merged: [1949](https://github.com/hackforla/website/pull/1949#event-5040452919) at 2021-07-19 12:52 PM PDT -mgodoy2023,2021-07-20T19:40:11Z,- mgodoy2023 assigned to issue: [1977](https://github.com/hackforla/website/issues/1977) at 2021-07-20 12:40 PM PDT -mgodoy2023,2021-07-25T20:41:58Z,- mgodoy2023 unassigned from issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255133) at 2021-07-25 01:41 PM PDT -mgodoy2023,2021-07-26T16:11:10Z,- mgodoy2023 assigned to issue: [1974](https://github.com/hackforla/website/issues/1974) at 2021-07-26 09:11 AM PDT -mgodoy2023,2021-08-02T18:26:40Z,- mgodoy2023 opened pull request: [2035](https://github.com/hackforla/website/pull/2035) at 2021-08-02 11:26 AM PDT -mgodoy2023,2021-08-04T06:49:15Z,- mgodoy2023 submitted pull request review: [2028](https://github.com/hackforla/website/pull/2028#pullrequestreview-721918874) at 2021-08-03 11:49 PM PDT -mgodoy2023,2021-08-05T15:08:09Z,- mgodoy2023 pull request merged: [2035](https://github.com/hackforla/website/pull/2035#event-5118110001) at 2021-08-05 08:08 AM PDT -mgodoy2023,2021-08-29T20:49:36Z,- mgodoy2023 opened issue: [2203](https://github.com/hackforla/website/issues/2203) at 2021-08-29 01:49 PM PDT -MHamza-Aslam,2023-11-25T17:04:20Z,- MHamza-Aslam commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1826378127) at 2023-11-25 09:04 AM PST -MHamza-Aslam,2023-11-26T21:03:16Z,- MHamza-Aslam commented on issue: [5934](https://github.com/hackforla/website/issues/5934#issuecomment-1826895845) at 2023-11-26 01:03 PM PST -MicahBear,3992,SKILLS ISSUE -MicahBear,2023-02-17T03:19:14Z,- MicahBear opened issue: [3992](https://github.com/hackforla/website/issues/3992) at 2023-02-16 07:19 PM PST -MicahBear,2023-02-17T03:19:21Z,- MicahBear assigned to issue: [3992](https://github.com/hackforla/website/issues/3992) at 2023-02-16 07:19 PM PST -MicahBear,2023-02-21T23:31:48Z,- MicahBear assigned to issue: [3986](https://github.com/hackforla/website/issues/3986) at 2023-02-21 03:31 PM PST -MicahBear,2023-02-21T23:35:28Z,- MicahBear commented on issue: [3986](https://github.com/hackforla/website/issues/3986#issuecomment-1439229049) at 2023-02-21 03:35 PM PST -MicahBear,2023-02-22T01:01:27Z,- MicahBear opened pull request: [4021](https://github.com/hackforla/website/pull/4021) at 2023-02-21 05:01 PM PST -MicahBear,2023-02-22T01:41:02Z,- MicahBear commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1439317664) at 2023-02-21 05:41 PM PST -MicahBear,2023-02-22T01:41:25Z,- MicahBear closed issue as completed: [3992](https://github.com/hackforla/website/issues/3992#event-8576332931) at 2023-02-21 05:41 PM PST -MicahBear,2023-02-23T01:46:55Z,- MicahBear commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1441120467) at 2023-02-22 05:46 PM PST -MicahBear,2023-02-23T02:52:43Z,- MicahBear opened issue: [4024](https://github.com/hackforla/website/issues/4024) at 2023-02-22 06:52 PM PST -MicahBear,2023-02-23T02:59:50Z,- MicahBear opened issue: [4025](https://github.com/hackforla/website/issues/4025) at 2023-02-22 06:59 PM PST -MicahBear,2023-02-23T03:10:55Z,- MicahBear commented on issue: [4024](https://github.com/hackforla/website/issues/4024#issuecomment-1441162142) at 2023-02-22 07:10 PM PST -MicahBear,2023-02-23T03:10:55Z,- MicahBear closed issue as not planned: [4024](https://github.com/hackforla/website/issues/4024#event-8587288233) at 2023-02-22 07:10 PM PST -MicahBear,2023-02-23T22:31:17Z,- MicahBear commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1442516748) at 2023-02-23 02:31 PM PST -MicahBear,2023-02-23T23:47:19Z,- MicahBear pull request merged: [4021](https://github.com/hackforla/website/pull/4021#event-8596893446) at 2023-02-23 03:47 PM PST -MicahBear,2023-02-28T23:27:50Z,- MicahBear assigned to issue: [4041](https://github.com/hackforla/website/issues/4041) at 2023-02-28 03:27 PM PST -MicahBear,2023-03-01T01:11:17Z,- MicahBear opened issue: [4059](https://github.com/hackforla/website/issues/4059) at 2023-02-28 05:11 PM PST -MicahBear,2023-03-02T22:50:03Z,- MicahBear commented on issue: [4041](https://github.com/hackforla/website/issues/4041#issuecomment-1452672311) at 2023-03-02 02:50 PM PST -MicahBear,2023-03-06T17:17:32Z,- MicahBear commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1456562819) at 2023-03-06 09:17 AM PST -MicahBear,2023-03-06T17:54:29Z,- MicahBear opened pull request: [4119](https://github.com/hackforla/website/pull/4119) at 2023-03-06 09:54 AM PST -MicahBear,2023-03-09T23:35:15Z,- MicahBear pull request merged: [4119](https://github.com/hackforla/website/pull/4119#event-8713373795) at 2023-03-09 03:35 PM PST -MicahBear,2023-03-31T12:56:31Z,- MicahBear commented on issue: [3992](https://github.com/hackforla/website/issues/3992#issuecomment-1491885748) at 2023-03-31 05:56 AM PDT -MicahBear,2023-03-31T12:56:31Z,- MicahBear closed issue as completed: [3992](https://github.com/hackforla/website/issues/3992#event-8897778045) at 2023-03-31 05:56 AM PDT -MicahBear,2023-11-02T06:10:55Z,- MicahBear opened issue: [5825](https://github.com/hackforla/website/issues/5825) at 2023-11-01 11:10 PM PDT -MicahBear,2023-11-29T05:05:52Z,- MicahBear commented on issue: [5825](https://github.com/hackforla/website/issues/5825#issuecomment-1831229745) at 2023-11-28 09:05 PM PST -MicahBear,2024-01-04T19:24:41Z,- MicahBear opened issue: [6060](https://github.com/hackforla/website/issues/6060) at 2024-01-04 11:24 AM PST -MicahBear,2024-01-21T15:21:50Z,- MicahBear commented on issue: [6060](https://github.com/hackforla/website/issues/6060#issuecomment-1902669287) at 2024-01-21 07:21 AM PST -michael-4,8006,SKILLS ISSUE -michael-4,2025-03-19T03:24:03Z,- michael-4 opened issue: [8006](https://github.com/hackforla/website/issues/8006) at 2025-03-18 08:24 PM PDT -michael-4,2025-03-19T03:24:17Z,- michael-4 assigned to issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2735225679) at 2025-03-18 08:24 PM PDT -michael-4,2025-03-28T20:59:48Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2762498414) at 2025-03-28 01:59 PM PDT -michael-4,2025-03-29T00:50:29Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2762950208) at 2025-03-28 05:50 PM PDT -michael-4,2025-04-03T22:53:16Z,- michael-4 assigned to issue: [7483](https://github.com/hackforla/website/issues/7483) at 2025-04-03 03:53 PM PDT -michael-4,2025-04-07T01:00:46Z,- michael-4 commented on issue: [7483](https://github.com/hackforla/website/issues/7483#issuecomment-2781787175) at 2025-04-06 06:00 PM PDT -michael-4,2025-04-07T01:01:58Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2781788230) at 2025-04-06 06:01 PM PDT -michael-4,2025-04-07T01:02:47Z,- michael-4 commented on issue: [7483](https://github.com/hackforla/website/issues/7483#issuecomment-2781788933) at 2025-04-06 06:02 PM PDT -michael-4,2025-04-07T01:03:22Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2781789443) at 2025-04-06 06:03 PM PDT -michael-4,2025-04-17T23:56:15Z,- michael-4 opened pull request: [8071](https://github.com/hackforla/website/pull/8071) at 2025-04-17 04:56 PM PDT -michael-4,2025-04-22T20:33:39Z,- michael-4 commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2822422575) at 2025-04-22 01:33 PM PDT -michael-4,2025-04-22T20:36:35Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2822428588) at 2025-04-22 01:36 PM PDT -michael-4,2025-04-22T20:41:35Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2822438606) at 2025-04-22 01:41 PM PDT -michael-4,2025-05-04T23:09:26Z,- michael-4 commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2849488557) at 2025-05-04 04:09 PM PDT -michael-4,2025-05-09T20:36:33Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2867823065) at 2025-05-09 01:36 PM PDT -michael-4,2025-05-13T23:40:06Z,- michael-4 opened pull request: [8127](https://github.com/hackforla/website/pull/8127) at 2025-05-13 04:40 PM PDT -michael-4,2025-05-13T23:41:40Z,- michael-4 pull request closed w/o merging: [8071](https://github.com/hackforla/website/pull/8071#event-17643987953) at 2025-05-13 04:41 PM PDT -michael-4,2025-05-13T23:43:57Z,- michael-4 commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2878195746) at 2025-05-13 04:43 PM PDT -michael-4,2025-05-15T18:23:32Z,- michael-4 commented on pull request: [8127](https://github.com/hackforla/website/pull/8127#issuecomment-2884708770) at 2025-05-15 11:23 AM PDT -michael-4,2025-05-15T18:26:19Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2884715599) at 2025-05-15 11:26 AM PDT -michael-4,2025-05-15T23:12:49Z,- michael-4 pull request merged: [8127](https://github.com/hackforla/website/pull/8127#event-17680329310) at 2025-05-15 04:12 PM PDT -michael-4,2025-05-20T19:29:20Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2895622049) at 2025-05-20 12:29 PM PDT -michael-4,2025-05-20T20:39:43Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2895777847) at 2025-05-20 01:39 PM PDT -michael-4,2025-05-20T20:45:02Z,- michael-4 assigned to issue: [7956](https://github.com/hackforla/website/issues/7956#issuecomment-2895372016) at 2025-05-20 01:45 PM PDT -michael-4,2025-05-20T22:54:33Z,- michael-4 opened pull request: [8149](https://github.com/hackforla/website/pull/8149) at 2025-05-20 03:54 PM PDT -michael-4,2025-05-23T19:34:20Z,- michael-4 commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2905593325) at 2025-05-23 12:34 PM PDT -michael-4,2025-05-23T21:05:26Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2905818008) at 2025-05-23 02:05 PM PDT -michael-4,2025-05-30T22:45:45Z,- michael-4 commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2923671526) at 2025-05-30 03:45 PM PDT -michael-4,2025-05-30T23:52:50Z,- michael-4 commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2923747761) at 2025-05-30 04:52 PM PDT -michael-4,2025-06-01T16:19:17Z,- michael-4 pull request merged: [8149](https://github.com/hackforla/website/pull/8149#event-17915651239) at 2025-06-01 09:19 AM PDT -michael-4,2025-06-06T18:10:04Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2950052083) at 2025-06-06 11:10 AM PDT -michael-4,2025-06-06T18:11:17Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2950054694) at 2025-06-06 11:11 AM PDT -michael-4,2025-06-12T21:54:35Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2968257688) at 2025-06-12 02:54 PM PDT -michael-4,2025-06-12T22:16:54Z,- michael-4 commented on issue: [8006](https://github.com/hackforla/website/issues/8006#issuecomment-2968306965) at 2025-06-12 03:16 PM PDT -michael-4,2025-06-18T00:48:50Z,- michael-4 assigned to issue: [7449](https://github.com/hackforla/website/issues/7449#issuecomment-2953376564) at 2025-06-17 05:48 PM PDT -michaelmagen,3569,SKILLS ISSUE -michaelmagen,2022-09-21T03:10:42Z,- michaelmagen opened issue: [3569](https://github.com/hackforla/website/issues/3569) at 2022-09-20 08:10 PM PDT -michaelmagen,2022-09-21T03:13:44Z,- michaelmagen assigned to issue: [3569](https://github.com/hackforla/website/issues/3569) at 2022-09-20 08:13 PM PDT -michaelmagen,2022-09-21T03:26:23Z,- michaelmagen assigned to issue: [2842](https://github.com/hackforla/website/issues/2842#issuecomment-1048140042) at 2022-09-20 08:26 PM PDT -michaelmagen,2022-09-21T03:27:37Z,- michaelmagen commented on issue: [2842](https://github.com/hackforla/website/issues/2842#issuecomment-1253159247) at 2022-09-20 08:27 PM PDT -michaelmagen,2022-09-23T02:40:09Z,- michaelmagen commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1255743483) at 2022-09-22 07:40 PM PDT -michaelmagen,2022-09-23T02:57:48Z,- michaelmagen opened pull request: [3576](https://github.com/hackforla/website/pull/3576) at 2022-09-22 07:57 PM PDT -michaelmagen,2022-09-24T00:34:34Z,- michaelmagen pull request merged: [3576](https://github.com/hackforla/website/pull/3576#event-7451027780) at 2022-09-23 05:34 PM PDT -michaelmagen,2022-09-28T19:56:41Z,- michaelmagen assigned to issue: [3195](https://github.com/hackforla/website/issues/3195#issuecomment-1145795512) at 2022-09-28 12:56 PM PDT -michaelmagen,2022-09-28T19:58:04Z,- michaelmagen commented on issue: [3195](https://github.com/hackforla/website/issues/3195#issuecomment-1261402303) at 2022-09-28 12:58 PM PDT -michaelmagen,2022-09-28T20:18:50Z,- michaelmagen opened pull request: [3588](https://github.com/hackforla/website/pull/3588) at 2022-09-28 01:18 PM PDT -michaelmagen,2022-09-30T01:37:15Z,- michaelmagen pull request merged: [3588](https://github.com/hackforla/website/pull/3588#event-7491440660) at 2022-09-29 06:37 PM PDT -michaelmagen,2022-10-02T16:59:07Z,- michaelmagen assigned to issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1236222938) at 2022-10-02 09:59 AM PDT -michaelmagen,2022-10-02T17:01:39Z,- michaelmagen commented on issue: [3354](https://github.com/hackforla/website/issues/3354#issuecomment-1264688439) at 2022-10-02 10:01 AM PDT -michaelmagen,2022-10-04T01:40:35Z,- michaelmagen opened pull request: [3599](https://github.com/hackforla/website/pull/3599) at 2022-10-03 06:40 PM PDT -michaelmagen,2022-10-07T21:37:36Z,- michaelmagen pull request merged: [3599](https://github.com/hackforla/website/pull/3599#event-7546732083) at 2022-10-07 02:37 PM PDT -michaelmagen,2022-10-13T17:27:11Z,- michaelmagen assigned to issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1019554588) at 2022-10-13 10:27 AM PDT -michaelmagen,2022-10-13T17:28:33Z,- michaelmagen commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1277948023) at 2022-10-13 10:28 AM PDT -michaelmagen,2022-10-20T23:47:36Z,- michaelmagen commented on pull request: [3645](https://github.com/hackforla/website/pull/3645#issuecomment-1286282499) at 2022-10-20 04:47 PM PDT -michaelmagen,2022-10-20T23:59:00Z,- michaelmagen submitted pull request review: [3645](https://github.com/hackforla/website/pull/3645#pullrequestreview-1150143398) at 2022-10-20 04:59 PM PDT -michaelmagen,2022-10-24T23:44:44Z,- michaelmagen commented on issue: [2632](https://github.com/hackforla/website/issues/2632#issuecomment-1289786682) at 2022-10-24 04:44 PM PDT -michaelmagen,2022-10-25T02:05:18Z,- michaelmagen opened pull request: [3656](https://github.com/hackforla/website/pull/3656) at 2022-10-24 07:05 PM PDT -michaelmagen,2022-10-25T21:36:00Z,- michaelmagen commented on pull request: [3655](https://github.com/hackforla/website/pull/3655#issuecomment-1291169924) at 2022-10-25 02:36 PM PDT -michaelmagen,2022-10-25T21:41:50Z,- michaelmagen submitted pull request review: [3655](https://github.com/hackforla/website/pull/3655#pullrequestreview-1155534887) at 2022-10-25 02:41 PM PDT -michaelmagen,2022-10-26T03:02:08Z,- michaelmagen pull request merged: [3656](https://github.com/hackforla/website/pull/3656#event-7668727046) at 2022-10-25 08:02 PM PDT -michaelmagen,2022-11-01T02:29:08Z,- michaelmagen assigned to issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1280000156) at 2022-10-31 07:29 PM PDT -michaelmagen,2022-11-01T02:30:12Z,- michaelmagen commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1297937887) at 2022-10-31 07:30 PM PDT -michaelmagen,2022-11-11T20:54:35Z,- michaelmagen commented on issue: [3569](https://github.com/hackforla/website/issues/3569#issuecomment-1312184178) at 2022-11-11 12:54 PM PST -michaelmagen,2022-11-11T20:55:34Z,- michaelmagen commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1312184859) at 2022-11-11 12:55 PM PST -michaelmagen,2022-11-16T03:55:25Z,- michaelmagen commented on issue: [2929](https://github.com/hackforla/website/issues/2929#issuecomment-1316290366) at 2022-11-15 07:55 PM PST -michaelmagen,2022-11-16T19:38:09Z,- michaelmagen opened pull request: [3726](https://github.com/hackforla/website/pull/3726) at 2022-11-16 11:38 AM PST -michaelmagen,2022-11-17T23:34:59Z,- michaelmagen commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1319349730) at 2022-11-17 03:34 PM PST -michaelmagen,2022-11-26T18:43:10Z,- michaelmagen pull request merged: [3726](https://github.com/hackforla/website/pull/3726#event-7896601931) at 2022-11-26 10:43 AM PST -michaelmagen,2022-11-28T21:56:46Z,- michaelmagen commented on pull request: [3752](https://github.com/hackforla/website/pull/3752#issuecomment-1329807214) at 2022-11-28 01:56 PM PST -michaelmagen,2022-11-28T23:03:40Z,- michaelmagen submitted pull request review: [3752](https://github.com/hackforla/website/pull/3752#pullrequestreview-1196670161) at 2022-11-28 03:03 PM PST -michelle-jx,5861,SKILLS ISSUE -michelle-jx,2023-11-07T03:40:21Z,- michelle-jx opened issue: [5861](https://github.com/hackforla/website/issues/5861) at 2023-11-06 07:40 PM PST -michelle-jx,2023-11-07T03:45:23Z,- michelle-jx assigned to issue: [5861](https://github.com/hackforla/website/issues/5861) at 2023-11-06 07:45 PM PST -midsane,2024-02-18T14:33:52Z,- midsane opened pull request: [6316](https://github.com/hackforla/website/pull/6316) at 2024-02-18 06:33 AM PST -midsane,2024-02-19T05:02:24Z,- midsane pull request closed w/o merging: [6316](https://github.com/hackforla/website/pull/6316#event-11844235513) at 2024-02-18 09:02 PM PST -MihirRajChowdhury,2024-08-16T13:07:16Z,- MihirRajChowdhury opened pull request: [7303](https://github.com/hackforla/website/pull/7303) at 2024-08-16 06:07 AM PDT -MihirRajChowdhury,2024-08-16T16:29:06Z,- MihirRajChowdhury pull request closed w/o merging: [7303](https://github.com/hackforla/website/pull/7303#event-13912894838) at 2024-08-16 09:29 AM PDT -miikaran,2021-11-03T12:29:00Z,- miikaran opened pull request: [2440](https://github.com/hackforla/website/pull/2440) at 2021-11-03 05:29 AM PDT -miikaran,2021-11-03T15:32:46Z,- miikaran pull request closed w/o merging: [2440](https://github.com/hackforla/website/pull/2440#event-5562863250) at 2021-11-03 08:32 AM PDT -mimiwrp,7028,SKILLS ISSUE -mimiwrp,2024-06-19T03:10:25Z,- mimiwrp opened issue: [7028](https://github.com/hackforla/website/issues/7028) at 2024-06-18 08:10 PM PDT -mimiwrp,2024-06-19T03:10:37Z,- mimiwrp assigned to issue: [7028](https://github.com/hackforla/website/issues/7028) at 2024-06-18 08:10 PM PDT -mimiwrp,2024-06-20T22:34:43Z,- mimiwrp assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2177248348) at 2024-06-20 03:34 PM PDT -mimiwrp,2024-06-21T18:25:28Z,- mimiwrp unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2181660349) at 2024-06-21 11:25 AM PDT -mimiwrp,2024-06-22T03:58:26Z,- mimiwrp assigned to issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183288173) at 2024-06-21 08:58 PM PDT -mimiwrp,2024-06-22T04:04:25Z,- mimiwrp commented on issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183768921) at 2024-06-21 09:04 PM PDT -mimiwrp,2024-07-02T00:51:28Z,- mimiwrp unassigned from issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2183768921) at 2024-07-01 05:51 PM PDT -mimiwrp,2024-07-08T22:51:57Z,- mimiwrp commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2215481768) at 2024-07-08 03:51 PM PDT -mimiwrp,2024-07-08T22:55:10Z,- mimiwrp assigned to issue: [7048](https://github.com/hackforla/website/issues/7048#event-13358067050) at 2024-07-08 03:55 PM PDT -mimiwrp,2024-07-08T22:55:59Z,- mimiwrp unassigned from issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2215484913) at 2024-07-08 03:55 PM PDT -mimiwrp,2024-08-09T21:02:09Z,- mimiwrp commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2278752236) at 2024-08-09 02:02 PM PDT -mimiwrp,2024-08-09T21:03:47Z,- mimiwrp assigned to issue: [7241](https://github.com/hackforla/website/issues/7241) at 2024-08-09 02:03 PM PDT -mimiwrp,2024-08-09T21:07:05Z,- mimiwrp commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2278757779) at 2024-08-09 02:07 PM PDT -mimiwrp,2024-08-30T09:13:16Z,- mimiwrp opened pull request: [7368](https://github.com/hackforla/website/pull/7368) at 2024-08-30 02:13 AM PDT -mimiwrp,2024-08-30T09:17:38Z,- mimiwrp commented on issue: [7028](https://github.com/hackforla/website/issues/7028#issuecomment-2320611679) at 2024-08-30 02:17 AM PDT -mimiwrp,2024-08-30T09:21:32Z,- mimiwrp commented on issue: [7241](https://github.com/hackforla/website/issues/7241#issuecomment-2320620939) at 2024-08-30 02:21 AM PDT -mimiwrp,2024-09-05T06:46:11Z,- mimiwrp commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2330729643) at 2024-09-04 11:46 PM PDT -mimiwrp,2024-09-05T18:14:14Z,- mimiwrp commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2332361386) at 2024-09-05 11:14 AM PDT -mimiwrp,2024-09-09T03:28:07Z,- mimiwrp pull request merged: [7368](https://github.com/hackforla/website/pull/7368#event-14176402027) at 2024-09-08 08:28 PM PDT -minar68,2021-08-10T20:09:47Z,- minar68 commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-896285828) at 2021-08-10 01:09 PM PDT -minkang3,7216,SKILLS ISSUE -minkang3,2024-08-06T03:47:33Z,- minkang3 opened issue: [7216](https://github.com/hackforla/website/issues/7216) at 2024-08-05 08:47 PM PDT -minkang3,2024-08-06T03:47:39Z,- minkang3 assigned to issue: [7216](https://github.com/hackforla/website/issues/7216) at 2024-08-05 08:47 PM PDT -minkang3,2024-08-06T05:05:41Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2270391263) at 2024-08-05 10:05 PM PDT -minkang3,2024-08-07T02:54:50Z,- minkang3 assigned to issue: [7174](https://github.com/hackforla/website/issues/7174) at 2024-08-06 07:54 PM PDT -minkang3,2024-08-07T02:59:18Z,- minkang3 commented on issue: [7174](https://github.com/hackforla/website/issues/7174#issuecomment-2272522820) at 2024-08-06 07:59 PM PDT -minkang3,2024-08-07T03:24:40Z,- minkang3 opened pull request: [7234](https://github.com/hackforla/website/pull/7234) at 2024-08-06 08:24 PM PDT -minkang3,2024-08-08T02:56:32Z,- minkang3 commented on pull request: [7234](https://github.com/hackforla/website/pull/7234#issuecomment-2274857776) at 2024-08-07 07:56 PM PDT -minkang3,2024-08-08T03:01:25Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274861468) at 2024-08-07 08:01 PM PDT -minkang3,2024-08-08T03:02:03Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274862003) at 2024-08-07 08:02 PM PDT -minkang3,2024-08-08T03:03:23Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274863059) at 2024-08-07 08:03 PM PDT -minkang3,2024-08-08T03:05:15Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274864615) at 2024-08-07 08:05 PM PDT -minkang3,2024-08-08T03:06:17Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274865457) at 2024-08-07 08:06 PM PDT -minkang3,2024-08-08T03:13:14Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2274871205) at 2024-08-07 08:13 PM PDT -minkang3,2024-08-08T03:17:01Z,- minkang3 assigned to issue: [7177](https://github.com/hackforla/website/issues/7177) at 2024-08-07 08:17 PM PDT -minkang3,2024-08-08T03:17:18Z,- minkang3 unassigned from issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2274874337) at 2024-08-07 08:17 PM PDT -minkang3,2024-08-14T02:35:20Z,- minkang3 pull request merged: [7234](https://github.com/hackforla/website/pull/7234#event-13873523194) at 2024-08-13 07:35 PM PDT -minkang3,2024-08-14T02:45:41Z,- minkang3 commented on pull request: [7271](https://github.com/hackforla/website/pull/7271#issuecomment-2287730102) at 2024-08-13 07:45 PM PDT -minkang3,2024-08-14T02:49:12Z,- minkang3 submitted pull request review: [7271](https://github.com/hackforla/website/pull/7271#pullrequestreview-2237062048) at 2024-08-13 07:49 PM PDT -minkang3,2024-08-15T19:56:11Z,- minkang3 assigned to issue: [7250](https://github.com/hackforla/website/issues/7250) at 2024-08-15 12:56 PM PDT -minkang3,2024-08-15T20:00:15Z,- minkang3 commented on issue: [7250](https://github.com/hackforla/website/issues/7250#issuecomment-2292102482) at 2024-08-15 01:00 PM PDT -minkang3,2024-08-15T20:17:07Z,- minkang3 opened pull request: [7297](https://github.com/hackforla/website/pull/7297) at 2024-08-15 01:17 PM PDT -minkang3,2024-08-15T20:25:49Z,- minkang3 pull request closed w/o merging: [7297](https://github.com/hackforla/website/pull/7297#event-13902137526) at 2024-08-15 01:25 PM PDT -minkang3,2024-08-15T20:47:04Z,- minkang3 opened pull request: [7299](https://github.com/hackforla/website/pull/7299) at 2024-08-15 01:47 PM PDT -minkang3,2024-08-18T04:25:58Z,- minkang3 pull request merged: [7299](https://github.com/hackforla/website/pull/7299#event-13921141785) at 2024-08-17 09:25 PM PDT -minkang3,2024-08-18T18:30:42Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2295350699) at 2024-08-18 11:30 AM PDT -minkang3,2024-08-18T18:35:48Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2295351931) at 2024-08-18 11:35 AM PDT -minkang3,2024-08-21T18:40:55Z,- minkang3 commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2302728814) at 2024-08-21 11:40 AM PDT -minkang3,2024-08-21T18:52:39Z,- minkang3 submitted pull request review: [7298](https://github.com/hackforla/website/pull/7298#pullrequestreview-2251641398) at 2024-08-21 11:52 AM PDT -minkang3,2024-08-21T18:54:45Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302751791) at 2024-08-21 11:54 AM PDT -minkang3,2024-08-21T19:02:06Z,- minkang3 submitted pull request review: [7309](https://github.com/hackforla/website/pull/7309#pullrequestreview-2251691270) at 2024-08-21 12:02 PM PDT -minkang3,2024-08-21T19:03:03Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302780698) at 2024-08-21 12:03 PM PDT -minkang3,2024-08-21T19:06:09Z,- minkang3 commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2302792499) at 2024-08-21 12:06 PM PDT -minkang3,2024-08-21T19:09:36Z,- minkang3 submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2251725464) at 2024-08-21 12:09 PM PDT -minkang3,2024-08-21T19:10:29Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302809429) at 2024-08-21 12:10 PM PDT -minkang3,2024-08-21T19:13:58Z,- minkang3 commented on pull request: [7306](https://github.com/hackforla/website/pull/7306#issuecomment-2302824083) at 2024-08-21 12:13 PM PDT -minkang3,2024-08-21T19:17:14Z,- minkang3 submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2251753849) at 2024-08-21 12:17 PM PDT -minkang3,2024-08-21T19:18:20Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302840505) at 2024-08-21 12:18 PM PDT -minkang3,2024-08-21T19:22:24Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2302850698) at 2024-08-21 12:22 PM PDT -minkang3,2024-08-21T20:32:01Z,- minkang3 submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2251892719) at 2024-08-21 01:32 PM PDT -minkang3,2024-09-02T02:41:29Z,- minkang3 submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2274591354) at 2024-09-01 07:41 PM PDT -minkang3,2024-10-01T14:48:29Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2386215095) at 2024-10-01 07:48 AM PDT -minkang3,2024-10-01T14:51:51Z,- minkang3 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386185462) at 2024-10-01 07:51 AM PDT -minkang3,2024-10-01T14:55:13Z,- minkang3 commented on issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386232363) at 2024-10-01 07:55 AM PDT -minkang3,2024-10-01T15:20:19Z,- minkang3 opened pull request: [7554](https://github.com/hackforla/website/pull/7554) at 2024-10-01 08:20 AM PDT -minkang3,2024-10-03T23:30:25Z,- minkang3 pull request merged: [7554](https://github.com/hackforla/website/pull/7554#event-14511321865) at 2024-10-03 04:30 PM PDT -minkang3,2024-10-10T15:18:30Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2405415509) at 2024-10-10 08:18 AM PDT -minkang3,2024-10-24T19:20:07Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2436168832) at 2024-10-24 12:20 PM PDT -minkang3,2024-11-13T18:36:16Z,- minkang3 commented on issue: [7216](https://github.com/hackforla/website/issues/7216#issuecomment-2474438238) at 2024-11-13 10:36 AM PST -minkang3,2024-11-26T18:38:20Z,- minkang3 submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462414921) at 2024-11-26 10:38 AM PST -minkang3,2024-12-09T21:16:13Z,- minkang3 commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2529497259) at 2024-12-09 01:16 PM PST -minkang3,2024-12-09T21:19:08Z,- minkang3 submitted pull request review: [7793](https://github.com/hackforla/website/pull/7793#pullrequestreview-2490112675) at 2024-12-09 01:19 PM PST -mioriimai,5348,SKILLS ISSUE -mioriimai,2023-08-30T03:36:54Z,- mioriimai opened issue: [5348](https://github.com/hackforla/website/issues/5348) at 2023-08-29 08:36 PM PDT -mioriimai,2023-08-30T03:57:47Z,- mioriimai assigned to issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1698438924) at 2023-08-29 08:57 PM PDT -mioriimai,2023-09-12T20:54:40Z,- mioriimai commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1716418012) at 2023-09-12 01:54 PM PDT -mjh-projects,3911,SKILLS ISSUE -mjh-projects,2023-02-01T04:58:21Z,- mjh-projects opened issue: [3911](https://github.com/hackforla/website/issues/3911) at 2023-01-31 08:58 PM PST -mjh-projects,2023-02-01T04:58:32Z,- mjh-projects assigned to issue: [3911](https://github.com/hackforla/website/issues/3911) at 2023-01-31 08:58 PM PST -mjh-projects,2023-02-02T07:27:41Z,- mjh-projects assigned to issue: [3893](https://github.com/hackforla/website/issues/3893#issuecomment-1411478803) at 2023-02-01 11:27 PM PST -mjh-projects,2023-02-02T07:32:50Z,- mjh-projects commented on issue: [3893](https://github.com/hackforla/website/issues/3893#issuecomment-1413272766) at 2023-02-01 11:32 PM PST -mjh-projects,2023-02-02T09:47:07Z,- mjh-projects opened pull request: [3924](https://github.com/hackforla/website/pull/3924) at 2023-02-02 01:47 AM PST -mjh-projects,2023-02-02T10:00:00Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1413458093) at 2023-02-02 02:00 AM PST -mjh-projects,2023-02-02T10:33:01Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1413517723) at 2023-02-02 02:33 AM PST -mjh-projects,2023-02-04T22:57:14Z,- mjh-projects pull request merged: [3924](https://github.com/hackforla/website/pull/3924#event-8439314337) at 2023-02-04 02:57 PM PST -mjh-projects,2023-02-08T02:17:00Z,- mjh-projects commented on pull request: [3940](https://github.com/hackforla/website/pull/3940#issuecomment-1421881393) at 2023-02-07 06:17 PM PST -mjh-projects,2023-02-08T04:20:58Z,- mjh-projects submitted pull request review: [3940](https://github.com/hackforla/website/pull/3940#pullrequestreview-1288439918) at 2023-02-07 08:20 PM PST -mjh-projects,2023-02-10T03:02:51Z,- mjh-projects closed issue as completed: [3115](https://github.com/hackforla/website/issues/3115#event-8485622225) at 2023-02-09 07:02 PM PST -mjh-projects,2023-02-10T03:03:14Z,- mjh-projects reopened issue: [3115](https://github.com/hackforla/website/issues/3115#event-8485622225) at 2023-02-09 07:03 PM PST -mjh-projects,2023-02-13T20:27:19Z,- mjh-projects closed issue as completed: [3911](https://github.com/hackforla/website/issues/3911#event-8508606990) at 2023-02-13 12:27 PM PST -mjh-projects,2023-02-13T20:34:58Z,- mjh-projects assigned to issue: [3950](https://github.com/hackforla/website/issues/3950) at 2023-02-13 12:34 PM PST -mjh-projects,2023-02-13T20:38:15Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1428648244) at 2023-02-13 12:38 PM PST -mjh-projects,2023-02-19T20:30:53Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1436085969) at 2023-02-19 12:30 PM PST -mjh-projects,2023-02-26T12:55:35Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1445354624) at 2023-02-26 04:55 AM PST -mjh-projects,2023-02-26T13:03:53Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1445356749) at 2023-02-26 05:03 AM PST -mjh-projects,2023-02-26T13:14:33Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1445359370) at 2023-02-26 05:14 AM PST -mjh-projects,2023-02-26T13:14:34Z,- mjh-projects closed issue as completed: [3911](https://github.com/hackforla/website/issues/3911#event-8609503758) at 2023-02-26 05:14 AM PST -mjh-projects,2023-03-17T02:30:20Z,- mjh-projects commented on issue: [3950](https://github.com/hackforla/website/issues/3950#issuecomment-1473024302) at 2023-03-16 07:30 PM PDT -mjh-projects,2023-03-17T02:50:54Z,- mjh-projects opened pull request: [4199](https://github.com/hackforla/website/pull/4199) at 2023-03-16 07:50 PM PDT -mjh-projects,2023-03-19T04:02:40Z,- mjh-projects pull request merged: [4199](https://github.com/hackforla/website/pull/4199#event-8786874986) at 2023-03-18 09:02 PM PDT -mjh-projects,2023-03-22T17:36:08Z,- mjh-projects commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1479992756) at 2023-03-22 10:36 AM PDT -mjh-projects,2023-03-22T17:37:08Z,- mjh-projects submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1353157117) at 2023-03-22 10:37 AM PDT -mjh-projects,2023-03-27T17:11:55Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1485528349) at 2023-03-27 10:11 AM PDT -mjh-projects,2023-03-27T17:16:26Z,- mjh-projects assigned to issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1483980811) at 2023-03-27 10:16 AM PDT -mjh-projects,2023-03-27T17:16:54Z,- mjh-projects commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1485534817) at 2023-03-27 10:16 AM PDT -mjh-projects,2023-03-29T09:48:50Z,- mjh-projects opened pull request: [4340](https://github.com/hackforla/website/pull/4340) at 2023-03-29 02:48 AM PDT -mjh-projects,2023-03-29T17:58:04Z,- mjh-projects commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1489056432) at 2023-03-29 10:58 AM PDT -mjh-projects,2023-03-29T19:31:13Z,- mjh-projects commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1489185352) at 2023-03-29 12:31 PM PDT -mjh-projects,2023-03-29T19:35:49Z,- mjh-projects submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1363818930) at 2023-03-29 12:35 PM PDT -mjh-projects,2023-03-29T23:08:12Z,- mjh-projects closed issue as completed: [3229](https://github.com/hackforla/website/issues/3229#event-8881565996) at 2023-03-29 04:08 PM PDT -mjh-projects,2023-03-29T23:26:14Z,- mjh-projects reopened issue: [3229](https://github.com/hackforla/website/issues/3229#event-8881565996) at 2023-03-29 04:26 PM PDT -mjh-projects,2023-04-03T02:24:48Z,- mjh-projects pull request merged: [4340](https://github.com/hackforla/website/pull/4340#event-8907819991) at 2023-04-02 07:24 PM PDT -mjh-projects,2023-04-03T22:49:29Z,- mjh-projects commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1495085332) at 2023-04-03 03:49 PM PDT -mjh-projects,2023-04-05T16:28:38Z,- mjh-projects commented on pull request: [4386](https://github.com/hackforla/website/pull/4386#issuecomment-1497784958) at 2023-04-05 09:28 AM PDT -mjh-projects,2023-04-05T16:29:57Z,- mjh-projects submitted pull request review: [4386](https://github.com/hackforla/website/pull/4386#pullrequestreview-1373290464) at 2023-04-05 09:29 AM PDT -mjh-projects,2023-04-05T22:06:52Z,- mjh-projects commented on pull request: [4412](https://github.com/hackforla/website/pull/4412#issuecomment-1498217649) at 2023-04-05 03:06 PM PDT -mjh-projects,2023-04-07T19:13:21Z,- mjh-projects assigned to issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1493490600) at 2023-04-07 12:13 PM PDT -mjh-projects,2023-04-07T19:14:56Z,- mjh-projects commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1500565112) at 2023-04-07 12:14 PM PDT -mjh-projects,2023-04-12T03:19:46Z,- mjh-projects opened issue: [4489](https://github.com/hackforla/website/issues/4489) at 2023-04-11 08:19 PM PDT -mjh-projects,2023-04-19T01:10:41Z,- mjh-projects commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1513993276) at 2023-04-18 06:10 PM PDT -mjh-projects,2023-04-19T01:13:05Z,- mjh-projects commented on issue: [3911](https://github.com/hackforla/website/issues/3911#issuecomment-1513995172) at 2023-04-18 06:13 PM PDT -mjh-projects,2023-04-25T19:04:21Z,- mjh-projects commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1522277064) at 2023-04-25 12:04 PM PDT -mjh-projects,2023-05-15T03:24:23Z,- mjh-projects unassigned from issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1547138979) at 2023-05-14 08:24 PM PDT -mjshelton12,4163,SKILLS ISSUE -mjshelton12,2023-03-14T03:04:51Z,- mjshelton12 opened issue: [4163](https://github.com/hackforla/website/issues/4163) at 2023-03-13 08:04 PM PDT -mjshelton12,2023-03-14T03:10:45Z,- mjshelton12 assigned to issue: [4163](https://github.com/hackforla/website/issues/4163) at 2023-03-13 08:10 PM PDT -mjshelton12,2023-03-18T03:20:55Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1474659029) at 2023-03-17 08:20 PM PDT -mjshelton12,2023-03-18T23:38:43Z,- mjshelton12 assigned to issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1425070509) at 2023-03-18 04:38 PM PDT -mjshelton12,2023-03-19T00:14:52Z,- mjshelton12 commented on issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1475042456) at 2023-03-18 05:14 PM PDT -mjshelton12,2023-03-19T01:45:30Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1475064805) at 2023-03-18 06:45 PM PDT -mjshelton12,2023-03-19T02:00:40Z,- mjshelton12 opened pull request: [4210](https://github.com/hackforla/website/pull/4210) at 2023-03-18 07:00 PM PDT -mjshelton12,2023-03-19T19:48:22Z,- mjshelton12 commented on pull request: [4203](https://github.com/hackforla/website/pull/4203#issuecomment-1475378919) at 2023-03-19 12:48 PM PDT -mjshelton12,2023-03-19T22:33:57Z,- mjshelton12 submitted pull request review: [4203](https://github.com/hackforla/website/pull/4203#pullrequestreview-1347594009) at 2023-03-19 03:33 PM PDT -mjshelton12,2023-03-20T00:28:24Z,- mjshelton12 commented on pull request: [4213](https://github.com/hackforla/website/pull/4213#issuecomment-1475455415) at 2023-03-19 05:28 PM PDT -mjshelton12,2023-03-20T01:36:38Z,- mjshelton12 submitted pull request review: [4213](https://github.com/hackforla/website/pull/4213#pullrequestreview-1347678236) at 2023-03-19 06:36 PM PDT -mjshelton12,2023-03-20T05:59:01Z,- mjshelton12 pull request merged: [4210](https://github.com/hackforla/website/pull/4210#event-8790513238) at 2023-03-19 10:59 PM PDT -mjshelton12,2023-03-22T02:08:19Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1478823844) at 2023-03-21 07:08 PM PDT -mjshelton12,2023-03-22T03:15:46Z,- mjshelton12 assigned to issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1476525042) at 2023-03-21 08:15 PM PDT -mjshelton12,2023-03-22T03:18:02Z,- mjshelton12 commented on issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1478865242) at 2023-03-21 08:18 PM PDT -mjshelton12,2023-03-22T04:55:22Z,- mjshelton12 opened pull request: [4234](https://github.com/hackforla/website/pull/4234) at 2023-03-21 09:55 PM PDT -mjshelton12,2023-03-22T04:58:49Z,- mjshelton12 commented on issue: [4219](https://github.com/hackforla/website/issues/4219#issuecomment-1478918514) at 2023-03-21 09:58 PM PDT -mjshelton12,2023-03-23T20:40:25Z,- mjshelton12 commented on pull request: [4260](https://github.com/hackforla/website/pull/4260#issuecomment-1481866658) at 2023-03-23 01:40 PM PDT -mjshelton12,2023-03-23T23:55:28Z,- mjshelton12 submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1355819113) at 2023-03-23 04:55 PM PDT -mjshelton12,2023-03-24T00:30:01Z,- mjshelton12 commented on pull request: [4265](https://github.com/hackforla/website/pull/4265#issuecomment-1482086992) at 2023-03-23 05:30 PM PDT -mjshelton12,2023-03-24T00:33:31Z,- mjshelton12 submitted pull request review: [4265](https://github.com/hackforla/website/pull/4265#pullrequestreview-1355847745) at 2023-03-23 05:33 PM PDT -mjshelton12,2023-03-24T00:35:34Z,- mjshelton12 assigned to issue: [4238](https://github.com/hackforla/website/issues/4238) at 2023-03-23 05:35 PM PDT -mjshelton12,2023-03-24T00:36:50Z,- mjshelton12 commented on issue: [4238](https://github.com/hackforla/website/issues/4238#issuecomment-1482092458) at 2023-03-23 05:36 PM PDT -mjshelton12,2023-03-24T01:03:05Z,- mjshelton12 opened pull request: [4267](https://github.com/hackforla/website/pull/4267) at 2023-03-23 06:03 PM PDT -mjshelton12,2023-03-24T01:05:42Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1482109733) at 2023-03-23 06:05 PM PDT -mjshelton12,2023-03-24T02:09:42Z,- mjshelton12 commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1482153074) at 2023-03-23 07:09 PM PDT -mjshelton12,2023-03-24T20:24:27Z,- mjshelton12 pull request merged: [4234](https://github.com/hackforla/website/pull/4234#event-8842483275) at 2023-03-24 01:24 PM PDT -mjshelton12,2023-03-25T00:33:20Z,- mjshelton12 submitted pull request review: [4272](https://github.com/hackforla/website/pull/4272#pullrequestreview-1357614619) at 2023-03-24 05:33 PM PDT -mjshelton12,2023-03-25T00:34:18Z,- mjshelton12 commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1483635567) at 2023-03-24 05:34 PM PDT -mjshelton12,2023-03-25T04:17:17Z,- mjshelton12 commented on pull request: [4267](https://github.com/hackforla/website/pull/4267#issuecomment-1483715096) at 2023-03-24 09:17 PM PDT -mjshelton12,2023-03-25T04:34:57Z,- mjshelton12 submitted pull request review: [4275](https://github.com/hackforla/website/pull/4275#pullrequestreview-1357773011) at 2023-03-24 09:34 PM PDT -mjshelton12,2023-03-26T16:47:35Z,- mjshelton12 pull request merged: [4267](https://github.com/hackforla/website/pull/4267#event-8847606258) at 2023-03-26 09:47 AM PDT -mjshelton12,2023-03-27T05:07:24Z,- mjshelton12 commented on pull request: [4292](https://github.com/hackforla/website/pull/4292#issuecomment-1484502299) at 2023-03-26 10:07 PM PDT -mjshelton12,2023-03-27T05:14:55Z,- mjshelton12 submitted pull request review: [4292](https://github.com/hackforla/website/pull/4292#pullrequestreview-1358339382) at 2023-03-26 10:14 PM PDT -mjshelton12,2023-03-27T05:18:08Z,- mjshelton12 commented on pull request: [4290](https://github.com/hackforla/website/pull/4290#issuecomment-1484512421) at 2023-03-26 10:18 PM PDT -mjshelton12,2023-03-27T23:09:58Z,- mjshelton12 submitted pull request review: [4260](https://github.com/hackforla/website/pull/4260#pullrequestreview-1359987552) at 2023-03-27 04:09 PM PDT -mjshelton12,2023-03-28T21:55:03Z,- mjshelton12 submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1361960981) at 2023-03-28 02:55 PM PDT -mjshelton12,2023-03-29T02:39:33Z,- mjshelton12 commented on pull request: [4308](https://github.com/hackforla/website/pull/4308#issuecomment-1487866400) at 2023-03-28 07:39 PM PDT -mjshelton12,2023-03-29T17:57:46Z,- mjshelton12 submitted pull request review: [4308](https://github.com/hackforla/website/pull/4308#pullrequestreview-1363677262) at 2023-03-29 10:57 AM PDT -mjshelton12,2023-03-31T22:32:50Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1492681645) at 2023-03-31 03:32 PM PDT -mjshelton12,2023-04-01T00:34:33Z,- mjshelton12 commented on pull request: [4353](https://github.com/hackforla/website/pull/4353#issuecomment-1492758913) at 2023-03-31 05:34 PM PDT -mjshelton12,2023-04-01T03:47:11Z,- mjshelton12 submitted pull request review: [4353](https://github.com/hackforla/website/pull/4353#pullrequestreview-1367804328) at 2023-03-31 08:47 PM PDT -mjshelton12,2023-04-06T04:53:12Z,- mjshelton12 commented on pull request: [4412](https://github.com/hackforla/website/pull/4412#issuecomment-1498489603) at 2023-04-05 09:53 PM PDT -mjshelton12,2023-04-06T05:00:58Z,- mjshelton12 submitted pull request review: [4412](https://github.com/hackforla/website/pull/4412#pullrequestreview-1374052267) at 2023-04-05 10:00 PM PDT -mjshelton12,2023-04-06T05:03:54Z,- mjshelton12 commented on pull request: [4425](https://github.com/hackforla/website/pull/4425#issuecomment-1498496171) at 2023-04-05 10:03 PM PDT -mjshelton12,2023-04-07T01:00:24Z,- mjshelton12 submitted pull request review: [4425](https://github.com/hackforla/website/pull/4425#pullrequestreview-1375721275) at 2023-04-06 06:00 PM PDT -mjshelton12,2023-04-07T01:17:11Z,- mjshelton12 commented on pull request: [4435](https://github.com/hackforla/website/pull/4435#issuecomment-1499816144) at 2023-04-06 06:17 PM PDT -mjshelton12,2023-04-16T21:09:19Z,- mjshelton12 commented on pull request: [4520](https://github.com/hackforla/website/pull/4520#issuecomment-1510488683) at 2023-04-16 02:09 PM PDT -mjshelton12,2023-04-16T21:21:01Z,- mjshelton12 submitted pull request review: [4520](https://github.com/hackforla/website/pull/4520#pullrequestreview-1387055077) at 2023-04-16 02:21 PM PDT -mjshelton12,2023-04-16T21:47:08Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1510497075) at 2023-04-16 02:47 PM PDT -mjshelton12,2023-04-19T21:48:07Z,- mjshelton12 commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515428491) at 2023-04-19 02:48 PM PDT -mjshelton12,2023-04-19T22:09:11Z,- mjshelton12 submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1392950044) at 2023-04-19 03:09 PM PDT -mjshelton12,2023-04-20T18:15:24Z,- mjshelton12 commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1516752937) at 2023-04-20 11:15 AM PDT -mjshelton12,2023-04-20T18:51:55Z,- mjshelton12 submitted pull request review: [4546](https://github.com/hackforla/website/pull/4546#pullrequestreview-1394582955) at 2023-04-20 11:51 AM PDT -mjshelton12,2023-04-22T04:03:33Z,- mjshelton12 commented on pull request: [4554](https://github.com/hackforla/website/pull/4554#issuecomment-1518500084) at 2023-04-21 09:03 PM PDT -mjshelton12,2023-04-22T04:15:30Z,- mjshelton12 submitted pull request review: [4554](https://github.com/hackforla/website/pull/4554#pullrequestreview-1396556909) at 2023-04-21 09:15 PM PDT -mjshelton12,2023-04-23T17:15:20Z,- mjshelton12 commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1519113740) at 2023-04-23 10:15 AM PDT -mjshelton12,2023-04-24T23:25:12Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1520946670) at 2023-04-24 04:25 PM PDT -mjshelton12,2023-05-01T04:31:22Z,- mjshelton12 commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1529337695) at 2023-04-30 09:31 PM PDT -mjshelton12,2023-05-09T01:44:18Z,- mjshelton12 commented on issue: [4163](https://github.com/hackforla/website/issues/4163#issuecomment-1539272353) at 2023-05-08 06:44 PM PDT -mjshelton12,2023-05-09T01:50:10Z,- mjshelton12 commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1539275243) at 2023-05-08 06:50 PM PDT -mjshelton12,2023-05-09T03:02:30Z,- mjshelton12 commented on pull request: [4608](https://github.com/hackforla/website/pull/4608#issuecomment-1539319983) at 2023-05-08 08:02 PM PDT -mjshelton12,2023-05-12T02:13:36Z,- mjshelton12 submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1423674704) at 2023-05-11 07:13 PM PDT -mjshelton12,2023-05-16T23:17:22Z,- mjshelton12 commented on pull request: [4600](https://github.com/hackforla/website/pull/4600#issuecomment-1550476762) at 2023-05-16 04:17 PM PDT -mjshelton12,2023-05-16T23:45:54Z,- mjshelton12 submitted pull request review: [4600](https://github.com/hackforla/website/pull/4600#pullrequestreview-1429586912) at 2023-05-16 04:45 PM PDT -mjshelton12,2023-05-16T23:55:28Z,- mjshelton12 commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1550499028) at 2023-05-16 04:55 PM PDT -mjshelton12,2023-05-18T00:35:18Z,- mjshelton12 submitted pull request review: [4668](https://github.com/hackforla/website/pull/4668#pullrequestreview-1431852217) at 2023-05-17 05:35 PM PDT -mjshelton12,2023-05-21T16:28:37Z,- mjshelton12 commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1556219556) at 2023-05-21 09:28 AM PDT -mjshelton12,2023-05-24T19:48:52Z,- mjshelton12 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1442638791) at 2023-05-24 12:48 PM PDT diff --git a/github-actions/activity-trigger/member_activity_history_bot_7.csv b/github-actions/activity-trigger/member_activity_history_bot_7.csv deleted file mode 100644 index 3947b9a38c..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_7.csv +++ /dev/null @@ -1,1649 +0,0 @@ -username,datetime,message -nelsonuprety1,6035,SKILLS ISSUE -nelsonuprety1,2023-11-30T05:00:20Z,- nelsonuprety1 opened issue: [5949](https://github.com/hackforla/website/issues/5949) at 2023-11-29 09:00 PM PST -nelsonuprety1,2023-12-06T22:56:45Z,- nelsonuprety1 commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1843821360) at 2023-12-06 02:56 PM PST -nelsonuprety1,2023-12-07T04:04:15Z,- nelsonuprety1 commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1844254035) at 2023-12-06 08:04 PM PST -nelsonuprety1,2024-01-03T03:53:59Z,- nelsonuprety1 opened issue: [6035](https://github.com/hackforla/website/issues/6035) at 2024-01-02 07:53 PM PST -nelsonuprety1,2024-01-03T03:53:59Z,- nelsonuprety1 assigned to issue: [6035](https://github.com/hackforla/website/issues/6035) at 2024-01-02 07:53 PM PST -nelsonuprety1,2024-01-05T22:42:36Z,- nelsonuprety1 opened pull request: [6069](https://github.com/hackforla/website/pull/6069) at 2024-01-05 02:42 PM PST -nelsonuprety1,2024-01-05T22:49:11Z,- nelsonuprety1 commented on issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1879350816) at 2024-01-05 02:49 PM PST -nelsonuprety1,2024-01-05T23:05:30Z,- nelsonuprety1 pull request closed w/o merging: [6069](https://github.com/hackforla/website/pull/6069#event-11405906854) at 2024-01-05 03:05 PM PST -nelsonuprety1,2024-01-05T23:09:55Z,- nelsonuprety1 opened pull request: [6070](https://github.com/hackforla/website/pull/6070) at 2024-01-05 03:09 PM PST -nelsonuprety1,2024-01-06T05:43:39Z,- nelsonuprety1 commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879562596) at 2024-01-05 09:43 PM PST -nelsonuprety1,2024-01-06T16:51:39Z,- nelsonuprety1 opened pull request: [6072](https://github.com/hackforla/website/pull/6072) at 2024-01-06 08:51 AM PST -nelsonuprety1,2024-01-06T19:20:07Z,- nelsonuprety1 pull request merged: [6072](https://github.com/hackforla/website/pull/6072#event-11409350955) at 2024-01-06 11:20 AM PST -nelsonuprety1,2024-01-06T21:33:29Z,- nelsonuprety1 assigned to issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1879350816) at 2024-01-06 01:33 PM PST -nelsonuprety1,2024-01-06T21:42:01Z,- nelsonuprety1 commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879836896) at 2024-01-06 01:42 PM PST -nelsonuprety1,2024-01-06T21:50:28Z,- nelsonuprety1 pull request merged: [6070](https://github.com/hackforla/website/pull/6070#event-11409669234) at 2024-01-06 01:50 PM PST -nelsonuprety1,2024-01-06T21:58:48Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879841303) at 2024-01-06 01:58 PM PST -nelsonuprety1,2024-01-06T21:58:48Z,- nelsonuprety1 reopened pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879841303) at 2024-01-06 01:58 PM PST -nelsonuprety1,2024-01-06T21:59:08Z,- nelsonuprety1 assigned to issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382720) at 2024-01-06 01:59 PM PST -nelsonuprety1,2024-01-07T03:02:52Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879922535) at 2024-01-06 07:02 PM PST -nelsonuprety1,2024-01-07T20:12:32Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1880159206) at 2024-01-07 12:12 PM PST -nelsonuprety1,2024-01-07T20:23:59Z,- nelsonuprety1 pull request merged: [6072](https://github.com/hackforla/website/pull/6072#event-11411920791) at 2024-01-07 12:23 PM PST -nelsonuprety1,2024-01-08T03:09:23Z,- nelsonuprety1 assigned to issue: [5708](https://github.com/hackforla/website/issues/5708#issuecomment-1763721188) at 2024-01-07 07:09 PM PST -nelsonuprety1,2024-01-08T03:10:05Z,- nelsonuprety1 opened pull request: [6077](https://github.com/hackforla/website/pull/6077) at 2024-01-07 07:10 PM PST -nelsonuprety1,2024-01-10T05:41:03Z,- nelsonuprety1 pull request merged: [6077](https://github.com/hackforla/website/pull/6077#event-11438726703) at 2024-01-09 09:41 PM PST -nelsonuprety1,2024-01-23T21:59:26Z,- nelsonuprety1 assigned to issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1904820250) at 2024-01-23 01:59 PM PST -nelsonuprety1,2024-01-23T22:06:09Z,- nelsonuprety1 opened pull request: [6146](https://github.com/hackforla/website/pull/6146) at 2024-01-23 02:06 PM PST -nelsonuprety1,2024-01-23T22:07:34Z,- nelsonuprety1 commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907000710) at 2024-01-23 02:07 PM PST -nelsonuprety1,2024-01-24T05:51:30Z,- nelsonuprety1 pull request closed w/o merging: [6146](https://github.com/hackforla/website/pull/6146#event-11579435963) at 2024-01-23 09:51 PM PST -nelsonuprety1,2024-01-24T05:52:54Z,- nelsonuprety1 unassigned from issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907422247) at 2024-01-23 09:52 PM PST -nelsonuprety1,2024-01-25T01:10:49Z,- nelsonuprety1 assigned to issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1904926390) at 2024-01-24 05:10 PM PST -nelsonuprety1,2024-01-25T01:13:48Z,- nelsonuprety1 commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1909184842) at 2024-01-24 05:13 PM PST -nelsonuprety1,2024-01-25T01:24:19Z,- nelsonuprety1 opened pull request: [6152](https://github.com/hackforla/website/pull/6152) at 2024-01-24 05:24 PM PST -nelsonuprety1,2024-01-25T01:24:47Z,- nelsonuprety1 commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1909193150) at 2024-01-24 05:24 PM PST -nelsonuprety1,2024-01-26T17:16:51Z,- nelsonuprety1 closed issue as completed: [6035](https://github.com/hackforla/website/issues/6035#event-11611205433) at 2024-01-26 09:16 AM PST -nelsonuprety1,2024-01-28T04:21:08Z,- nelsonuprety1 commented on pull request: [6152](https://github.com/hackforla/website/pull/6152#issuecomment-1913443472) at 2024-01-27 08:21 PM PST -nelsonuprety1,2024-01-28T17:03:17Z,- nelsonuprety1 pull request merged: [6152](https://github.com/hackforla/website/pull/6152#event-11620454389) at 2024-01-28 09:03 AM PST -nelsonuprety1,2024-01-28T21:47:47Z,- nelsonuprety1 assigned to issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1874955868) at 2024-01-28 01:47 PM PST -nelsonuprety1,2024-01-29T00:26:10Z,- nelsonuprety1 commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1913779732) at 2024-01-28 04:26 PM PST -nelsonuprety1,2024-01-29T00:30:33Z,- nelsonuprety1 opened pull request: [6190](https://github.com/hackforla/website/pull/6190) at 2024-01-28 04:30 PM PST -nelsonuprety1,2024-01-29T00:31:03Z,- nelsonuprety1 commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1913781652) at 2024-01-28 04:31 PM PST -nelsonuprety1,2024-01-29T18:07:47Z,- nelsonuprety1 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915290190) at 2024-01-29 10:07 AM PST -nelsonuprety1,2024-02-01T07:05:45Z,- nelsonuprety1 pull request merged: [6190](https://github.com/hackforla/website/pull/6190#event-11665426602) at 2024-01-31 11:05 PM PST -nelsonuprety1,2024-03-03T00:00:12Z,- nelsonuprety1 assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-03-02 04:00 PM PST -nelsonuprety1,2024-03-03T00:06:14Z,- nelsonuprety1 opened pull request: [6409](https://github.com/hackforla/website/pull/6409) at 2024-03-02 04:06 PM PST -nelsonuprety1,2024-03-03T00:08:22Z,- nelsonuprety1 commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974949059) at 2024-03-02 04:08 PM PST -nelsonuprety1,2024-03-04T03:15:34Z,- nelsonuprety1 pull request closed w/o merging: [6409](https://github.com/hackforla/website/pull/6409#event-11992712430) at 2024-03-03 07:15 PM PST -nelsonuprety1,2024-03-04T03:16:30Z,- nelsonuprety1 unassigned from issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974949059) at 2024-03-03 07:16 PM PST -nelsonuprety1,2024-03-04T05:07:36Z,- nelsonuprety1 assigned to issue: [5996](https://github.com/hackforla/website/issues/5996) at 2024-03-03 09:07 PM PST -nelsonuprety1,2024-03-04T05:14:04Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1975747133) at 2024-03-03 09:14 PM PST -nelsonuprety1,2024-03-04T05:16:38Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1975749278) at 2024-03-03 09:16 PM PST -nelsonuprety1,2024-03-10T17:30:16Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1987302934) at 2024-03-10 10:30 AM PDT -nelsonuprety1,2024-03-10T20:17:36Z,- nelsonuprety1 commented on issue: [6088](https://github.com/hackforla/website/issues/6088#issuecomment-1987350416) at 2024-03-10 01:17 PM PDT -nelsonuprety1,2024-03-11T02:42:05Z,- nelsonuprety1 assigned to issue: [6088](https://github.com/hackforla/website/issues/6088#event-12067450634) at 2024-03-10 07:42 PM PDT -nelsonuprety1,2024-03-19T22:43:52Z,- nelsonuprety1 assigned to issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-1865349657) at 2024-03-19 03:43 PM PDT -nelsonuprety1,2024-03-19T22:47:42Z,- nelsonuprety1 commented on issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-2008291962) at 2024-03-19 03:47 PM PDT -nelsonuprety1,2024-04-04T20:30:19Z,- nelsonuprety1 assigned to issue: [6491](https://github.com/hackforla/website/issues/6491) at 2024-04-04 01:30 PM PDT -nelsonuprety1,2024-04-04T20:41:01Z,- nelsonuprety1 assigned to issue: [6309](https://github.com/hackforla/website/issues/6309) at 2024-04-04 01:41 PM PDT -nelsonuprety1,2024-04-04T20:48:55Z,- nelsonuprety1 opened pull request: [6566](https://github.com/hackforla/website/pull/6566) at 2024-04-04 01:48 PM PDT -nelsonuprety1,2024-04-04T20:49:36Z,- nelsonuprety1 commented on issue: [6309](https://github.com/hackforla/website/issues/6309#issuecomment-2038191213) at 2024-04-04 01:49 PM PDT -nelsonuprety1,2024-04-09T00:36:37Z,- nelsonuprety1 commented on pull request: [6566](https://github.com/hackforla/website/pull/6566#issuecomment-2043935807) at 2024-04-08 05:36 PM PDT -nelsonuprety1,2024-04-10T05:14:37Z,- nelsonuprety1 pull request merged: [6566](https://github.com/hackforla/website/pull/6566#event-12416460011) at 2024-04-09 10:14 PM PDT -nelsonuprety1,2024-06-12T03:35:14Z,- nelsonuprety1 assigned to issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140616903) at 2024-06-11 08:35 PM PDT -one2code,4335,SKILLS ISSUE -one2code,2023-03-29T04:19:33Z,- one2code opened issue: [4335](https://github.com/hackforla/website/issues/4335) at 2023-03-28 09:19 PM PDT -one2code,2023-04-06T20:57:05Z,- one2code assigned to issue: [4335](https://github.com/hackforla/website/issues/4335) at 2023-04-06 01:57 PM PDT -one2code,2023-04-14T04:08:27Z,- one2code assigned to issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1493389723) at 2023-04-13 09:08 PM PDT -one2code,2023-04-14T06:59:20Z,- one2code unassigned from issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1507898629) at 2023-04-13 11:59 PM PDT -one2code,2023-04-14T07:08:10Z,- one2code assigned to issue: [4380](https://github.com/hackforla/website/issues/4380) at 2023-04-14 12:08 AM PDT -one2code,2023-04-14T18:57:43Z,- one2code assigned to issue: [3524](https://github.com/hackforla/website/issues/3524#issuecomment-1240946700) at 2023-04-14 11:57 AM PDT -one2code,2023-04-14T18:57:54Z,- one2code unassigned from issue: [3524](https://github.com/hackforla/website/issues/3524#issuecomment-1240946700) at 2023-04-14 11:57 AM PDT -one2code,2023-04-14T18:58:33Z,- one2code assigned to issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1497129548) at 2023-04-14 11:58 AM PDT -one2code,2023-04-15T17:56:11Z,- one2code commented on issue: [4380](https://github.com/hackforla/website/issues/4380#issuecomment-1509915110) at 2023-04-15 10:56 AM PDT -one2code,2023-04-15T19:51:51Z,- one2code opened pull request: [4520](https://github.com/hackforla/website/pull/4520) at 2023-04-15 12:51 PM PDT -one2code,2023-04-15T19:59:06Z,- one2code unassigned from issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1509090621) at 2023-04-15 12:59 PM PDT -one2code,2023-04-16T18:03:28Z,- one2code commented on pull request: [4520](https://github.com/hackforla/website/pull/4520#issuecomment-1510445913) at 2023-04-16 11:03 AM PDT -one2code,2023-04-16T21:34:37Z,- one2code pull request merged: [4520](https://github.com/hackforla/website/pull/4520#event-9018434056) at 2023-04-16 02:34 PM PDT -one2code,2023-04-17T02:05:28Z,- one2code assigned to issue: [4400](https://github.com/hackforla/website/issues/4400) at 2023-04-16 07:05 PM PDT -one2code,2023-04-17T02:07:58Z,- one2code commented on issue: [4400](https://github.com/hackforla/website/issues/4400#issuecomment-1510589969) at 2023-04-16 07:07 PM PDT -one2code,2023-04-17T04:30:23Z,- one2code opened pull request: [4528](https://github.com/hackforla/website/pull/4528) at 2023-04-16 09:30 PM PDT -one2code,2023-04-18T04:08:24Z,- one2code pull request merged: [4528](https://github.com/hackforla/website/pull/4528#event-9031100177) at 2023-04-17 09:08 PM PDT -one2code,2023-04-20T02:09:37Z,- one2code commented on issue: [4335](https://github.com/hackforla/website/issues/4335#issuecomment-1515612317) at 2023-04-19 07:09 PM PDT -one2code,2023-04-20T13:25:29Z,- one2code assigned to issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1499866166) at 2023-04-20 06:25 AM PDT -one2code,2023-04-20T13:31:46Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1516337227) at 2023-04-20 06:31 AM PDT -one2code,2023-04-28T02:47:09Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1526904211) at 2023-04-27 07:47 PM PDT -one2code,2023-04-28T02:49:14Z,- one2code closed issue as completed: [4335](https://github.com/hackforla/website/issues/4335#event-9120475701) at 2023-04-27 07:49 PM PDT -one2code,2023-05-05T20:52:53Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1536768291) at 2023-05-05 01:52 PM PDT -one2code,2023-05-10T15:32:22Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1542414695) at 2023-05-10 08:32 AM PDT -one2code,2023-05-13T01:55:39Z,- one2code opened pull request: [4661](https://github.com/hackforla/website/pull/4661) at 2023-05-12 06:55 PM PDT -one2code,2023-05-17T02:30:32Z,- one2code commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1550598025) at 2023-05-16 07:30 PM PDT -one2code,2023-05-18T00:57:39Z,- one2code opened pull request: [4688](https://github.com/hackforla/website/pull/4688) at 2023-05-17 05:57 PM PDT -one2code,2023-05-18T00:58:05Z,- one2code pull request closed w/o merging: [4661](https://github.com/hackforla/website/pull/4661#event-9274744149) at 2023-05-17 05:58 PM PDT -one2code,2023-05-18T18:58:22Z,- one2code reopened pull request: [4661](https://github.com/hackforla/website/pull/4661#event-9274744149) at 2023-05-18 11:58 AM PDT -one2code,2023-05-18T18:59:43Z,- one2code pull request closed w/o merging: [4661](https://github.com/hackforla/website/pull/4661#event-9282894173) at 2023-05-18 11:59 AM PDT -one2code,2023-05-19T04:56:46Z,- one2code submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1433774626) at 2023-05-18 09:56 PM PDT -one2code,2023-05-20T17:51:56Z,- one2code commented on pull request: [4698](https://github.com/hackforla/website/pull/4698#issuecomment-1555961148) at 2023-05-20 10:51 AM PDT -one2code,2023-05-21T07:02:36Z,- one2code submitted pull request review: [4698](https://github.com/hackforla/website/pull/4698#pullrequestreview-1435482769) at 2023-05-21 12:02 AM PDT -one2code,2023-05-23T05:49:40Z,- one2code submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1438593723) at 2023-05-22 10:49 PM PDT -one2code,2023-05-23T13:51:04Z,- one2code commented on pull request: [4688](https://github.com/hackforla/website/pull/4688#issuecomment-1559420378) at 2023-05-23 06:51 AM PDT -one2code,2023-05-23T20:10:56Z,- one2code commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1560059549) at 2023-05-23 01:10 PM PDT -one2code,2023-05-24T03:36:46Z,- one2code submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1440884350) at 2023-05-23 08:36 PM PDT -one2code,2023-05-24T20:42:46Z,- one2code submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1442719782) at 2023-05-24 01:42 PM PDT -one2code,2023-05-25T02:02:03Z,- one2code submitted pull request review: [4725](https://github.com/hackforla/website/pull/4725#pullrequestreview-1442970195) at 2023-05-24 07:02 PM PDT -one2code,2023-05-25T05:41:22Z,- one2code commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562307936) at 2023-05-24 10:41 PM PDT -one2code,2023-05-25T18:57:49Z,- one2code pull request merged: [4688](https://github.com/hackforla/website/pull/4688#event-9343513105) at 2023-05-25 11:57 AM PDT -one2code,2023-05-26T02:46:23Z,- one2code opened pull request: [4733](https://github.com/hackforla/website/pull/4733) at 2023-05-25 07:46 PM PDT -one2code,2023-05-26T02:57:39Z,- one2code pull request merged: [4733](https://github.com/hackforla/website/pull/4733#event-9346034481) at 2023-05-25 07:57 PM PDT -one2code,2023-05-27T02:57:17Z,- one2code commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565176270) at 2023-05-26 07:57 PM PDT -one2code,2023-05-27T03:27:28Z,- one2code submitted pull request review: [4747](https://github.com/hackforla/website/pull/4747#pullrequestreview-1447134137) at 2023-05-26 08:27 PM PDT -one2code,2023-05-28T01:03:37Z,- one2code submitted pull request review: [4747](https://github.com/hackforla/website/pull/4747#pullrequestreview-1447728590) at 2023-05-27 06:03 PM PDT -one2code,2023-05-28T02:16:51Z,- one2code commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1565804611) at 2023-05-27 07:16 PM PDT -one2code,2023-05-28T02:46:10Z,- one2code submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1447805971) at 2023-05-27 07:46 PM PDT -one2code,2023-05-28T03:26:40Z,- one2code assigned to issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565195706) at 2023-05-27 08:26 PM PDT -one2code,2023-05-28T03:33:48Z,- one2code commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565841497) at 2023-05-27 08:33 PM PDT -one2code,2023-05-28T03:52:20Z,- one2code submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1447849700) at 2023-05-27 08:52 PM PDT -one2code,2023-05-30T07:29:14Z,- one2code commented on pull request: [4754](https://github.com/hackforla/website/pull/4754#issuecomment-1567910077) at 2023-05-30 12:29 AM PDT -one2code,2023-05-30T09:50:29Z,- one2code submitted pull request review: [4754](https://github.com/hackforla/website/pull/4754#pullrequestreview-1450553645) at 2023-05-30 02:50 AM PDT -one2code,2023-06-02T02:12:23Z,- one2code commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1573037525) at 2023-06-01 07:12 PM PDT -one2code,2023-06-02T21:15:00Z,- one2code commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1574323760) at 2023-06-02 02:15 PM PDT -one2code,2023-06-06T02:50:27Z,- one2code submitted pull request review: [4767](https://github.com/hackforla/website/pull/4767#pullrequestreview-1464139771) at 2023-06-05 07:50 PM PDT -one2code,2023-06-10T20:53:39Z,- one2code opened pull request: [4796](https://github.com/hackforla/website/pull/4796) at 2023-06-10 01:53 PM PDT -one2code,2023-06-12T21:16:24Z,- one2code commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1588116510) at 2023-06-12 02:16 PM PDT -one2code,2023-06-12T22:52:13Z,- one2code submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1475931981) at 2023-06-12 03:52 PM PDT -one2code,2023-06-13T04:03:45Z,- one2code submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1476202063) at 2023-06-12 09:03 PM PDT -one2code,2023-06-14T02:38:22Z,- one2code commented on pull request: [4833](https://github.com/hackforla/website/pull/4833#issuecomment-1590356151) at 2023-06-13 07:38 PM PDT -one2code,2023-06-14T02:38:49Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1590356456) at 2023-06-13 07:38 PM PDT -one2code,2023-06-18T03:18:50Z,- one2code pull request merged: [4796](https://github.com/hackforla/website/pull/4796#event-9560042415) at 2023-06-17 08:18 PM PDT -one2code,2023-06-18T04:36:07Z,- one2code submitted pull request review: [4833](https://github.com/hackforla/website/pull/4833#pullrequestreview-1484964312) at 2023-06-17 09:36 PM PDT -one2code,2023-06-19T05:23:03Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1596525663) at 2023-06-18 10:23 PM PDT -one2code,2023-06-20T03:18:56Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1598052022) at 2023-06-19 08:18 PM PDT -one2code,2023-06-21T00:49:30Z,- one2code submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1489332130) at 2023-06-20 05:49 PM PDT -one2code,2023-06-24T17:57:16Z,- one2code commented on pull request: [4875](https://github.com/hackforla/website/pull/4875#issuecomment-1605670075) at 2023-06-24 10:57 AM PDT -one2code,2023-06-24T18:37:59Z,- one2code submitted pull request review: [4875](https://github.com/hackforla/website/pull/4875#pullrequestreview-1496772952) at 2023-06-24 11:37 AM PDT -one2code,2023-06-24T23:06:48Z,- one2code commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1605768079) at 2023-06-24 04:06 PM PDT -one2code,2023-06-25T03:12:46Z,- one2code commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1605839876) at 2023-06-24 08:12 PM PDT -one2code,2023-06-25T14:02:01Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1497088682) at 2023-06-25 07:02 AM PDT -one2code,2023-06-25T14:28:44Z,- one2code submitted pull request review: [4878](https://github.com/hackforla/website/pull/4878#pullrequestreview-1497098445) at 2023-06-25 07:28 AM PDT -one2code,2023-06-26T14:54:24Z,- one2code commented on pull request: [4882](https://github.com/hackforla/website/pull/4882#issuecomment-1607657503) at 2023-06-26 07:54 AM PDT -one2code,2023-06-26T20:38:10Z,- one2code commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1608209327) at 2023-06-26 01:38 PM PDT -one2code,2023-06-27T04:22:25Z,- one2code submitted pull request review: [4882](https://github.com/hackforla/website/pull/4882#pullrequestreview-1499914638) at 2023-06-26 09:22 PM PDT -one2code,2023-06-27T04:29:49Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1499921835) at 2023-06-26 09:29 PM PDT -one2code,2023-06-27T09:14:49Z,- one2code assigned to issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1608566987) at 2023-06-27 02:14 AM PDT -one2code,2023-06-27T09:18:21Z,- one2code commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1609113855) at 2023-06-27 02:18 AM PDT -one2code,2023-06-28T04:17:14Z,- one2code commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1610674971) at 2023-06-27 09:17 PM PDT -one2code,2023-06-28T07:21:08Z,- one2code opened pull request: [4896](https://github.com/hackforla/website/pull/4896) at 2023-06-28 12:21 AM PDT -one2code,2023-06-29T14:07:08Z,- one2code submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1505380205) at 2023-06-29 07:07 AM PDT -one2code,2023-06-29T14:19:24Z,- one2code commented on pull request: [4899](https://github.com/hackforla/website/pull/4899#issuecomment-1613266890) at 2023-06-29 07:19 AM PDT -one2code,2023-06-29T14:30:14Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1613286514) at 2023-06-29 07:30 AM PDT -one2code,2023-07-01T01:59:09Z,- one2code commented on pull request: [4902](https://github.com/hackforla/website/pull/4902#issuecomment-1615352610) at 2023-06-30 06:59 PM PDT -one2code,2023-07-02T17:50:35Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1509648034) at 2023-07-02 10:50 AM PDT -one2code,2023-07-04T21:59:02Z,- one2code commented on pull request: [4905](https://github.com/hackforla/website/pull/4905#issuecomment-1620784724) at 2023-07-04 02:59 PM PDT -one2code,2023-07-05T03:16:08Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1620955932) at 2023-07-04 08:16 PM PDT -one2code,2023-07-06T04:17:20Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1622949664) at 2023-07-05 09:17 PM PDT -one2code,2023-07-07T23:22:22Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1626355160) at 2023-07-07 04:22 PM PDT -one2code,2023-07-09T02:22:45Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1627576891) at 2023-07-08 07:22 PM PDT -one2code,2023-07-09T19:00:04Z,- one2code submitted pull request review: [4905](https://github.com/hackforla/website/pull/4905#pullrequestreview-1520946179) at 2023-07-09 12:00 PM PDT -one2code,2023-07-11T00:00:37Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1629894651) at 2023-07-10 05:00 PM PDT -one2code,2023-07-12T02:12:00Z,- one2code commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1631745229) at 2023-07-11 07:12 PM PDT -one2code,2023-07-12T08:03:46Z,- one2code pull request merged: [4896](https://github.com/hackforla/website/pull/4896#event-9795862162) at 2023-07-12 01:03 AM PDT -one2code,2023-07-14T03:24:06Z,- one2code commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1635212536) at 2023-07-13 08:24 PM PDT -one2code,2023-07-14T03:59:05Z,- one2code submitted pull request review: [4927](https://github.com/hackforla/website/pull/4927#pullrequestreview-1529557337) at 2023-07-13 08:59 PM PDT -one2code,2023-07-15T06:39:12Z,- one2code submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1531302726) at 2023-07-14 11:39 PM PDT -one2code,2023-07-17T04:05:39Z,- one2code commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1637346041) at 2023-07-16 09:05 PM PDT -one2code,2023-07-17T04:08:03Z,- one2code submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1531905918) at 2023-07-16 09:08 PM PDT -one2code,2023-07-18T19:38:41Z,- one2code commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1640893749) at 2023-07-18 12:38 PM PDT -one2code,2023-07-19T03:55:21Z,- one2code submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1536212764) at 2023-07-18 08:55 PM PDT -one2code,2023-07-20T03:41:20Z,- one2code commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1643056606) at 2023-07-19 08:41 PM PDT -one2code,2023-07-20T03:50:19Z,- one2code submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1538379206) at 2023-07-19 08:50 PM PDT -one2code,2023-07-20T21:35:02Z,- one2code submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1540125617) at 2023-07-20 02:35 PM PDT -one2code,2023-07-28T03:52:00Z,- one2code submitted pull request review: [5105](https://github.com/hackforla/website/pull/5105#pullrequestreview-1551301245) at 2023-07-27 08:52 PM PDT -one2code,2023-08-01T13:35:01Z,- one2code submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1557024399) at 2023-08-01 06:35 AM PDT -one2code,2023-08-06T05:42:09Z,- one2code submitted pull request review: [5144](https://github.com/hackforla/website/pull/5144#pullrequestreview-1564070057) at 2023-08-05 10:42 PM PDT -one2code,2023-08-10T03:42:27Z,- one2code submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1570962630) at 2023-08-09 08:42 PM PDT -one2code,2023-08-12T03:26:14Z,- one2code commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1675654606) at 2023-08-11 08:26 PM PDT -one2code,2023-08-12T03:27:03Z,- one2code commented on pull request: [5183](https://github.com/hackforla/website/pull/5183#issuecomment-1675654725) at 2023-08-11 08:27 PM PDT -one2code,2023-08-14T03:25:49Z,- one2code submitted pull request review: [5183](https://github.com/hackforla/website/pull/5183#pullrequestreview-1576007852) at 2023-08-13 08:25 PM PDT -one2code,2023-08-14T04:17:28Z,- one2code submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1576046778) at 2023-08-13 09:17 PM PDT -one2code,2023-08-16T21:58:29Z,- one2code submitted pull request review: [5239](https://github.com/hackforla/website/pull/5239#pullrequestreview-1581487358) at 2023-08-16 02:58 PM PDT -one2code,2023-08-17T01:46:39Z,- one2code commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1681487627) at 2023-08-16 06:46 PM PDT -one2code,2023-08-31T03:47:07Z,- one2code commented on pull request: [5392](https://github.com/hackforla/website/pull/5392#issuecomment-1700326637) at 2023-08-30 08:47 PM PDT -one2code,2023-08-31T03:47:37Z,- one2code commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1700326905) at 2023-08-30 08:47 PM PDT -one2code,2023-08-31T03:54:45Z,- one2code submitted pull request review: [5392](https://github.com/hackforla/website/pull/5392#pullrequestreview-1603891782) at 2023-08-30 08:54 PM PDT -one2code,2023-08-31T04:07:38Z,- one2code submitted pull request review: [5382](https://github.com/hackforla/website/pull/5382#pullrequestreview-1603913574) at 2023-08-30 09:07 PM PDT -one2code,2023-08-31T04:13:52Z,- one2code assigned to issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597992124) at 2023-08-30 09:13 PM PDT -one2code,2023-08-31T04:14:44Z,- one2code commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1700342026) at 2023-08-30 09:14 PM PDT -one2code,2023-09-14T02:41:11Z,- one2code commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1718664451) at 2023-09-13 07:41 PM PDT -one2code,2023-09-14T02:58:31Z,- one2code submitted pull request review: [5522](https://github.com/hackforla/website/pull/5522#pullrequestreview-1625750126) at 2023-09-13 07:58 PM PDT -one2code,2023-09-14T03:21:00Z,- one2code submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1625763782) at 2023-09-13 08:21 PM PDT -one2code,2023-09-21T03:58:48Z,- one2code submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1636840258) at 2023-09-20 08:58 PM PDT -one2code,2023-09-21T03:59:12Z,- one2code submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1636840495) at 2023-09-20 08:59 PM PDT -one2code,2024-02-03T19:06:21Z,- one2code commented on pull request: [6216](https://github.com/hackforla/website/pull/6216#issuecomment-1925431149) at 2024-02-03 11:06 AM PST -one2code,2024-02-04T16:27:58Z,- one2code submitted pull request review: [6216](https://github.com/hackforla/website/pull/6216#pullrequestreview-1861481163) at 2024-02-04 08:27 AM PST -one2code,2024-02-05T03:47:18Z,- one2code assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1822065293) at 2024-02-04 07:47 PM PST -one2code,2024-02-05T03:50:30Z,- one2code commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1926183878) at 2024-02-04 07:50 PM PST -one2code,2024-02-09T22:27:45Z,- one2code commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1936686524) at 2024-02-09 02:27 PM PST -one2code,2024-03-20T21:36:05Z,- one2code unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2010678427) at 2024-03-20 02:36 PM PDT -perlaroyerc,3776,SKILLS ISSUE -perlaroyerc,2023-01-04T04:41:03Z,- perlaroyerc opened issue: [3776](https://github.com/hackforla/website/issues/3776) at 2023-01-03 08:41 PM PST -perlaroyerc,2023-01-25T04:01:19Z,- perlaroyerc assigned to issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1375118859) at 2023-01-24 08:01 PM PST -perlaroyerc,2023-02-02T18:00:27Z,- perlaroyerc assigned to issue: [3840](https://github.com/hackforla/website/issues/3840) at 2023-02-02 10:00 AM PST -perlaroyerc,2023-02-02T18:19:18Z,- perlaroyerc commented on issue: [3840](https://github.com/hackforla/website/issues/3840#issuecomment-1414171675) at 2023-02-02 10:19 AM PST -perlaroyerc,2023-02-03T21:32:58Z,- perlaroyerc opened pull request: [3930](https://github.com/hackforla/website/pull/3930) at 2023-02-03 01:32 PM PST -perlaroyerc,2023-02-06T20:40:27Z,- perlaroyerc pull request merged: [3930](https://github.com/hackforla/website/pull/3930#event-8451617413) at 2023-02-06 12:40 PM PST -perlaroyerc,2023-02-14T22:25:28Z,- perlaroyerc assigned to issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419735155) at 2023-02-14 02:25 PM PST -perlaroyerc,2023-02-14T22:28:38Z,- perlaroyerc commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1430465620) at 2023-02-14 02:28 PM PST -perlaroyerc,2023-02-17T19:54:53Z,- perlaroyerc opened pull request: [4002](https://github.com/hackforla/website/pull/4002) at 2023-02-17 11:54 AM PST -perlaroyerc,2023-02-20T22:21:47Z,- perlaroyerc pull request closed w/o merging: [4002](https://github.com/hackforla/website/pull/4002#event-8565308810) at 2023-02-20 02:21 PM PST -perlaroyerc,2023-02-20T22:22:34Z,- perlaroyerc opened pull request: [4016](https://github.com/hackforla/website/pull/4016) at 2023-02-20 02:22 PM PST -perlaroyerc,2023-02-20T22:23:22Z,- perlaroyerc pull request closed w/o merging: [4016](https://github.com/hackforla/website/pull/4016#event-8565316471) at 2023-02-20 02:23 PM PST -perlaroyerc,2023-02-22T01:17:15Z,- perlaroyerc opened pull request: [4022](https://github.com/hackforla/website/pull/4022) at 2023-02-21 05:17 PM PST -perlaroyerc,2023-02-23T08:21:57Z,- perlaroyerc pull request merged: [4022](https://github.com/hackforla/website/pull/4022#event-8588903008) at 2023-02-23 12:21 AM PST -perlaroyerc,2023-02-27T21:23:00Z,- perlaroyerc closed issue as completed: [3776](https://github.com/hackforla/website/issues/3776#event-8620461324) at 2023-02-27 01:23 PM PST -perlaroyerc,2023-03-01T19:02:02Z,- perlaroyerc assigned to issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428964280) at 2023-03-01 11:02 AM PST -perlaroyerc,2023-03-01T19:06:51Z,- perlaroyerc commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1450708743) at 2023-03-01 11:06 AM PST -perlaroyerc,2023-03-02T18:25:49Z,- perlaroyerc opened pull request: [4091](https://github.com/hackforla/website/pull/4091) at 2023-03-02 10:25 AM PST -perlaroyerc,2023-03-03T23:00:37Z,- perlaroyerc pull request merged: [4091](https://github.com/hackforla/website/pull/4091#event-8664206956) at 2023-03-03 03:00 PM PST -perlaroyerc,2023-03-09T19:36:38Z,- perlaroyerc commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1462664752) at 2023-03-09 11:36 AM PST -perlaroyerc,2023-03-09T21:25:55Z,- perlaroyerc submitted pull request review: [4140](https://github.com/hackforla/website/pull/4140#pullrequestreview-1333837931) at 2023-03-09 01:25 PM PST -perlaroyerc,2023-03-09T23:45:03Z,- perlaroyerc commented on pull request: [4143](https://github.com/hackforla/website/pull/4143#issuecomment-1463001449) at 2023-03-09 03:45 PM PST -perlaroyerc,2023-03-09T23:56:02Z,- perlaroyerc submitted pull request review: [4143](https://github.com/hackforla/website/pull/4143#pullrequestreview-1333984401) at 2023-03-09 03:56 PM PST -perlaroyerc,2023-03-10T00:02:25Z,- perlaroyerc assigned to issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1461220936) at 2023-03-09 04:02 PM PST -perlaroyerc,2023-03-10T00:06:08Z,- perlaroyerc commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1463016424) at 2023-03-09 04:06 PM PST -perlaroyerc,2023-03-11T01:59:23Z,- perlaroyerc commented on pull request: [4147](https://github.com/hackforla/website/pull/4147#issuecomment-1464784042) at 2023-03-10 06:59 PM PDT -perlaroyerc,2023-03-11T04:59:49Z,- perlaroyerc submitted pull request review: [4147](https://github.com/hackforla/website/pull/4147#pullrequestreview-1335820688) at 2023-03-10 09:59 PM PDT -perlaroyerc,2023-03-11T06:26:08Z,- perlaroyerc opened pull request: [4148](https://github.com/hackforla/website/pull/4148) at 2023-03-10 11:26 PM PDT -perlaroyerc,2023-03-11T06:27:59Z,- perlaroyerc commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1464841271) at 2023-03-10 11:27 PM PDT -perlaroyerc,2023-03-14T22:22:16Z,- perlaroyerc commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1468919695) at 2023-03-14 03:22 PM PDT -perlaroyerc,2023-03-14T22:27:34Z,- perlaroyerc commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1468924457) at 2023-03-14 03:27 PM PDT -perlaroyerc,2023-03-14T22:54:13Z,- perlaroyerc submitted pull request review: [4181](https://github.com/hackforla/website/pull/4181#pullrequestreview-1340403162) at 2023-03-14 03:54 PM PDT -perlaroyerc,2023-03-14T22:56:47Z,- perlaroyerc commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1468976078) at 2023-03-14 03:56 PM PDT -perlaroyerc,2023-03-14T23:18:02Z,- perlaroyerc submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1340421405) at 2023-03-14 04:18 PM PDT -perlaroyerc,2023-03-15T02:35:50Z,- perlaroyerc commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1469208921) at 2023-03-14 07:35 PM PDT -perlaroyerc,2023-03-15T03:10:45Z,- perlaroyerc submitted pull request review: [4179](https://github.com/hackforla/website/pull/4179#pullrequestreview-1340578649) at 2023-03-14 08:10 PM PDT -perlaroyerc,2023-03-16T19:20:20Z,- perlaroyerc pull request merged: [4148](https://github.com/hackforla/website/pull/4148#event-8771258188) at 2023-03-16 12:20 PM PDT -perlaroyerc,2023-03-16T21:21:34Z,- perlaroyerc commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472759301) at 2023-03-16 02:21 PM PDT -perlaroyerc,2023-03-17T15:17:34Z,- perlaroyerc commented on pull request: [4201](https://github.com/hackforla/website/pull/4201#issuecomment-1473999810) at 2023-03-17 08:17 AM PDT -perlaroyerc,2023-03-17T15:36:01Z,- perlaroyerc submitted pull request review: [4196](https://github.com/hackforla/website/pull/4196#pullrequestreview-1346187013) at 2023-03-17 08:36 AM PDT -perlaroyerc,2023-03-17T16:08:33Z,- perlaroyerc commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1474068606) at 2023-03-17 09:08 AM PDT -perlaroyerc,2023-03-17T16:19:53Z,- perlaroyerc submitted pull request review: [4201](https://github.com/hackforla/website/pull/4201#pullrequestreview-1346267404) at 2023-03-17 09:19 AM PDT -perlaroyerc,2023-03-17T16:48:30Z,- perlaroyerc submitted pull request review: [4199](https://github.com/hackforla/website/pull/4199#pullrequestreview-1346320062) at 2023-03-17 09:48 AM PDT -perlaroyerc,2023-03-20T17:40:46Z,- perlaroyerc commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1476669716) at 2023-03-20 10:40 AM PDT -perlaroyerc,2023-03-20T17:42:11Z,- perlaroyerc commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1476671567) at 2023-03-20 10:42 AM PDT -perlaroyerc,2023-03-21T01:25:25Z,- perlaroyerc submitted pull request review: [4215](https://github.com/hackforla/website/pull/4215#pullrequestreview-1349593506) at 2023-03-20 06:25 PM PDT -perlaroyerc,2023-03-21T01:43:04Z,- perlaroyerc submitted pull request review: [4214](https://github.com/hackforla/website/pull/4214#pullrequestreview-1349600866) at 2023-03-20 06:43 PM PDT -perlaroyerc,2023-03-28T17:10:41Z,- perlaroyerc assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1485992783) at 2023-03-28 10:10 AM PDT -perlaroyerc,2023-03-28T17:13:04Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1487307869) at 2023-03-28 10:13 AM PDT -perlaroyerc,2023-03-29T20:33:53Z,- perlaroyerc commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1489271296) at 2023-03-29 01:33 PM PDT -perlaroyerc,2023-03-30T15:56:26Z,- perlaroyerc commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1490546855) at 2023-03-30 08:56 AM PDT -perlaroyerc,2023-03-30T16:34:02Z,- perlaroyerc submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1365511194) at 2023-03-30 09:34 AM PDT -perlaroyerc,2023-03-30T21:52:49Z,- perlaroyerc submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1365988138) at 2023-03-30 02:52 PM PDT -perlaroyerc,2023-03-31T15:57:29Z,- perlaroyerc submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1367206186) at 2023-03-31 08:57 AM PDT -perlaroyerc,2023-04-03T17:51:52Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1494736853) at 2023-04-03 10:51 AM PDT -perlaroyerc,2023-04-18T20:44:59Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1513773289) at 2023-04-18 01:44 PM PDT -perlaroyerc,2023-05-23T15:42:25Z,- perlaroyerc unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1554142329) at 2023-05-23 08:42 AM PDT -praytoo,8190,SKILLS ISSUE -praytoo,2025-06-17T03:43:03Z,- praytoo opened issue: [8190](https://github.com/hackforla/website/issues/8190) at 2025-06-16 08:43 PM PDT -praytoo,2025-06-17T03:43:26Z,- praytoo assigned to issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2978823498) at 2025-06-16 08:43 PM PDT -praytoo,2025-06-19T02:26:03Z,- praytoo assigned to issue: [8010](https://github.com/hackforla/website/issues/8010) at 2025-06-18 07:26 PM PDT -praytoo,2025-06-19T03:17:37Z,- praytoo opened pull request: [8197](https://github.com/hackforla/website/pull/8197) at 2025-06-18 08:17 PM PDT -praytoo,2025-06-19T03:19:51Z,- praytoo closed issue by PR 8197: [8010](https://github.com/hackforla/website/issues/8010#event-18221732673) at 2025-06-18 08:19 PM PDT -praytoo,2025-06-19T16:26:08Z,- praytoo commented on issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2988639219) at 2025-06-19 09:26 AM PDT -praytoo,2025-06-19T16:49:27Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988685297) at 2025-06-19 09:49 AM PDT -praytoo,2025-06-19T16:52:18Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988690290) at 2025-06-19 09:52 AM PDT -praytoo,2025-06-19T17:00:26Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988704084) at 2025-06-19 10:00 AM PDT -praytoo,2025-06-19T17:25:59Z,- praytoo opened pull request: [8198](https://github.com/hackforla/website/pull/8198) at 2025-06-19 10:25 AM PDT -praytoo,2025-06-19T17:31:20Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2988772550) at 2025-06-19 10:31 AM PDT -praytoo,2025-06-20T16:41:30Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2992226511) at 2025-06-20 09:41 AM PDT -praytoo,2025-06-20T16:55:40Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992259410) at 2025-06-20 09:55 AM PDT -praytoo,2025-06-20T18:05:34Z,- praytoo pull request closed w/o merging: [8198](https://github.com/hackforla/website/pull/8198#event-18251840346) at 2025-06-20 11:05 AM PDT -praytoo,2025-06-20T18:06:30Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992419093) at 2025-06-20 11:06 AM PDT -praytoo,2025-06-21T17:03:28Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993675781) at 2025-06-21 10:03 AM PDT -praytoo,2025-06-21T18:37:55Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993715971) at 2025-06-21 11:37 AM PDT -praytoo,2025-06-22T01:40:30Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993866836) at 2025-06-21 06:40 PM PDT -praytoo,2025-06-22T17:18:39Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2994332057) at 2025-06-22 10:18 AM PDT -praytoo,2025-06-24T22:00:52Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002008932) at 2025-06-24 03:00 PM PDT -praytoo,2025-06-25T03:14:19Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002735289) at 2025-06-24 08:14 PM PDT -praytoo,2025-06-25T03:14:42Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002736108) at 2025-06-24 08:14 PM PDT -praytoo,2025-06-26T16:59:26Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3009140601) at 2025-06-26 09:59 AM PDT -praytoo,2025-06-27T15:22:53Z,- praytoo pull request merged: [8197](https://github.com/hackforla/website/pull/8197#event-18359871783) at 2025-06-27 08:22 AM PDT -praytoo,2025-06-28T18:43:10Z,- praytoo assigned to issue: [7380](https://github.com/hackforla/website/issues/7380) at 2025-06-28 11:43 AM PDT -praytoo,2025-06-28T20:21:42Z,- praytoo commented on issue: [7380](https://github.com/hackforla/website/issues/7380#issuecomment-3016014870) at 2025-06-28 01:21 PM PDT -praytoo,2025-06-28T20:32:09Z,- praytoo opened pull request: [8235](https://github.com/hackforla/website/pull/8235) at 2025-06-28 01:32 PM PDT -praytoo,2025-06-28T20:41:53Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-3016022495) at 2025-06-28 01:41 PM PDT -praytoo,2025-06-29T23:46:37Z,- praytoo commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3017284051) at 2025-06-29 04:46 PM PDT -praytoo,2025-07-01T01:10:51Z,- praytoo commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3021341054) at 2025-06-30 06:10 PM PDT -praytoo,2025-07-02T16:17:52Z,- praytoo pull request merged: [8235](https://github.com/hackforla/website/pull/8235#event-18435495217) at 2025-07-02 09:17 AM PDT -praytoo,2025-07-04T18:57:09Z,- praytoo assigned to issue: [7610](https://github.com/hackforla/website/issues/7610) at 2025-07-04 11:57 AM PDT -praytoo,2025-07-04T18:58:23Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037070572) at 2025-07-04 11:58 AM PDT -praytoo,2025-07-04T19:22:09Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037105300) at 2025-07-04 12:22 PM PDT -praytoo,2025-07-17T03:39:07Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3082341995) at 2025-07-16 08:39 PM PDT -purna-madala,7018,SKILLS ISSUE -purna-madala,2024-06-19T02:43:34Z,- purna-madala opened issue: [7018](https://github.com/hackforla/website/issues/7018) at 2024-06-18 07:43 PM PDT -purna-madala,2024-06-19T02:44:13Z,- purna-madala assigned to issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2177434840) at 2024-06-18 07:44 PM PDT -purna-madala,2024-09-10T18:38:24Z,- purna-madala assigned to issue: [7180](https://github.com/hackforla/website/issues/7180) at 2024-09-10 11:38 AM PDT -purna-madala,2024-09-10T19:08:46Z,- purna-madala opened pull request: [7436](https://github.com/hackforla/website/pull/7436) at 2024-09-10 12:08 PM PDT -purna-madala,2024-09-10T19:34:39Z,- purna-madala commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2341865226) at 2024-09-10 12:34 PM PDT -purna-madala,2024-09-12T19:42:56Z,- purna-madala commented on issue: [7180](https://github.com/hackforla/website/issues/7180#issuecomment-2347103730) at 2024-09-12 12:42 PM PDT -purna-madala,2024-09-12T19:48:36Z,- purna-madala commented on pull request: [7436](https://github.com/hackforla/website/pull/7436#issuecomment-2347112640) at 2024-09-12 12:48 PM PDT -purna-madala,2024-09-15T02:28:03Z,- purna-madala pull request merged: [7436](https://github.com/hackforla/website/pull/7436#event-14262062662) at 2024-09-14 07:28 PM PDT -purna-madala,2024-11-11T17:37:33Z,- purna-madala assigned to issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442592500) at 2024-11-11 09:37 AM PST -purna-madala,2025-01-06T19:46:46Z,- purna-madala closed issue as completed: [7018](https://github.com/hackforla/website/issues/7018#event-15830232824) at 2025-01-06 11:46 AM PST -purna-madala,2025-01-06T19:57:32Z,- purna-madala commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2573817244) at 2025-01-06 11:57 AM PST -purna-madala,2025-01-06T19:58:08Z,- purna-madala opened pull request: [7816](https://github.com/hackforla/website/pull/7816) at 2025-01-06 11:58 AM PST -purna-madala,2025-01-12T17:51:07Z,- purna-madala pull request merged: [7816](https://github.com/hackforla/website/pull/7816#event-15896474434) at 2025-01-12 09:51 AM PST -purna-madala,2025-03-07T07:33:00Z,- purna-madala assigned to issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-06 11:33 PM PST -purna-madala,2025-03-07T07:33:13Z,- purna-madala unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-06 11:33 PM PST -purna-madala,2025-03-07T07:54:33Z,- purna-madala assigned to issue: [7443](https://github.com/hackforla/website/issues/7443) at 2025-03-06 11:54 PM PST -purna-madala,2025-03-07T07:54:47Z,- purna-madala unassigned from issue: [7443](https://github.com/hackforla/website/issues/7443) at 2025-03-06 11:54 PM PST -pushkar-2804,2023-05-26T12:51:45Z,- pushkar-2804 commented on issue: [4669](https://github.com/hackforla/website/issues/4669#issuecomment-1564348020) at 2023-05-26 05:51 AM PDT -quyson,6335,SKILLS ISSUE -quyson,2024-02-21T03:35:46Z,- quyson opened issue: [6335](https://github.com/hackforla/website/issues/6335) at 2024-02-20 07:35 PM PST -quyson,2024-02-21T04:16:42Z,- quyson assigned to issue: [6335](https://github.com/hackforla/website/issues/6335) at 2024-02-20 08:16 PM PST -rachelcorawood,7278,SKILLS ISSUE -rachelcorawood,2024-08-13T14:56:25Z,- rachelcorawood opened issue: [7278](https://github.com/hackforla/website/issues/7278) at 2024-08-13 07:56 AM PDT -rachelcorawood,2024-08-13T18:26:20Z,- rachelcorawood assigned to issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2286464260) at 2024-08-13 11:26 AM PDT -rachelcorawood,2024-08-13T18:57:55Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2286926483) at 2024-08-13 11:57 AM PDT -rachelcorawood,2024-08-14T21:42:46Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2289967367) at 2024-08-14 02:42 PM PDT -rachelcorawood,2024-08-14T22:10:27Z,- rachelcorawood assigned to issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2282836847) at 2024-08-14 03:10 PM PDT -rachelcorawood,2024-08-14T22:10:40Z,- rachelcorawood unassigned from issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2282836847) at 2024-08-14 03:10 PM PDT -rachelcorawood,2024-08-14T22:17:13Z,- rachelcorawood assigned to issue: [7252](https://github.com/hackforla/website/issues/7252) at 2024-08-14 03:17 PM PDT -rachelcorawood,2024-08-15T18:27:26Z,- rachelcorawood commented on issue: [7252](https://github.com/hackforla/website/issues/7252#issuecomment-2291914433) at 2024-08-15 11:27 AM PDT -rachelcorawood,2024-08-15T20:41:37Z,- rachelcorawood opened pull request: [7298](https://github.com/hackforla/website/pull/7298) at 2024-08-15 01:41 PM PDT -rachelcorawood,2024-09-06T00:42:46Z,- rachelcorawood opened pull request: [7405](https://github.com/hackforla/website/pull/7405) at 2024-09-05 05:42 PM PDT -rachelcorawood,2024-09-06T19:45:06Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2334708224) at 2024-09-06 12:45 PM PDT -rachelcorawood,2024-09-06T19:53:18Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2334718567) at 2024-09-06 12:53 PM PDT -rachelcorawood,2024-09-06T19:57:36Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2334724395) at 2024-09-06 12:57 PM PDT -rachelcorawood,2024-09-12T20:14:46Z,- rachelcorawood pull request closed w/o merging: [7298](https://github.com/hackforla/website/pull/7298#event-14238448428) at 2024-09-12 01:14 PM PDT -rachelcorawood,2024-09-17T16:55:35Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2356444829) at 2024-09-17 09:55 AM PDT -rachelcorawood,2024-09-17T17:19:32Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2356488871) at 2024-09-17 10:19 AM PDT -rachelcorawood,2024-09-24T19:52:00Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2372243905) at 2024-09-24 12:52 PM PDT -rachelcorawood,2024-10-01T22:24:08Z,- rachelcorawood opened pull request: [7557](https://github.com/hackforla/website/pull/7557) at 2024-10-01 03:24 PM PDT -rachelcorawood,2024-10-01T22:25:23Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2387192366) at 2024-10-01 03:25 PM PDT -rachelcorawood,2024-10-01T22:25:23Z,- rachelcorawood pull request closed w/o merging: [7405](https://github.com/hackforla/website/pull/7405#event-14480250836) at 2024-10-01 03:25 PM PDT -rachelcorawood,2024-10-01T22:31:16Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2387199286) at 2024-10-01 03:31 PM PDT -rachelcorawood,2024-10-02T14:59:26Z,- rachelcorawood pull request merged: [7557](https://github.com/hackforla/website/pull/7557#event-14490276560) at 2024-10-02 07:59 AM PDT -rachelcorawood,2024-10-12T20:41:48Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2408694808) at 2024-10-12 01:41 PM PDT -rachelcorawood,2024-10-23T01:22:04Z,- rachelcorawood assigned to issue: [7541](https://github.com/hackforla/website/issues/7541) at 2024-10-22 06:22 PM PDT -rachelcorawood,2024-10-23T01:27:41Z,- rachelcorawood commented on issue: [7541](https://github.com/hackforla/website/issues/7541#issuecomment-2430611460) at 2024-10-22 06:27 PM PDT -rachelcorawood,2024-10-25T23:40:18Z,- rachelcorawood opened pull request: [7637](https://github.com/hackforla/website/pull/7637) at 2024-10-25 04:40 PM PDT -rachelcorawood,2024-10-28T23:47:08Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2442881723) at 2024-10-28 04:47 PM PDT -rachelcorawood,2024-11-04T20:24:23Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2455631432) at 2024-11-04 12:24 PM PST -rachelcorawood,2024-11-08T19:50:05Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2465637966) at 2024-11-08 11:50 AM PST -rachelcorawood,2024-11-08T19:57:50Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2465652304) at 2024-11-08 11:57 AM PST -rachelcorawood,2024-11-10T21:49:12Z,- rachelcorawood pull request merged: [7637](https://github.com/hackforla/website/pull/7637#event-15242132849) at 2024-11-10 01:49 PM PST -rachelcorawood,2024-11-20T22:02:25Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2489627777) at 2024-11-20 02:02 PM PST -rachelcorawood,2024-11-22T00:15:27Z,- rachelcorawood commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2492611589) at 2024-11-21 04:15 PM PST -rachelcorawood,2024-11-22T01:09:17Z,- rachelcorawood submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2453115486) at 2024-11-21 05:09 PM PST -rachelcorawood,2024-11-22T20:21:10Z,- rachelcorawood submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2455565673) at 2024-11-22 12:21 PM PST -rachelcorawood,2024-11-26T00:21:29Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2499300356) at 2024-11-25 04:21 PM PST -rachelcorawood,2024-11-26T00:42:58Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2499323170) at 2024-11-25 04:42 PM PST -rachelcorawood,2024-11-26T20:33:09Z,- rachelcorawood commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501870145) at 2024-11-26 12:33 PM PST -rachelcorawood,2024-11-26T20:54:00Z,- rachelcorawood submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462653708) at 2024-11-26 12:54 PM PST -rachelcorawood,2024-11-26T21:05:03Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2501933211) at 2024-11-26 01:05 PM PST -rachelcorawood,2024-11-27T19:29:52Z,- rachelcorawood commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504640132) at 2024-11-27 11:29 AM PST -rachelcorawood,2024-11-27T19:52:03Z,- rachelcorawood submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465855559) at 2024-11-27 11:52 AM PST -rachelcorawood,2024-11-27T20:01:52Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2504684357) at 2024-11-27 12:01 PM PST -rachelcorawood,2024-12-02T22:20:09Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2513073359) at 2024-12-02 02:20 PM PST -rachelcorawood,2024-12-02T22:54:52Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2513149307) at 2024-12-02 02:54 PM PST -rachelcorawood,2024-12-03T21:17:53Z,- rachelcorawood assigned to issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2436691275) at 2024-12-03 01:17 PM PST -rachelcorawood,2024-12-04T02:03:57Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2515999014) at 2024-12-03 06:03 PM PST -rachelcorawood,2024-12-10T22:54:03Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2533139086) at 2024-12-10 02:54 PM PST -rachelcorawood,2025-01-21T01:34:07Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2603452378) at 2025-01-20 05:34 PM PST -rachelcorawood,2025-01-27T17:44:36Z,- rachelcorawood unassigned from issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2614617347) at 2025-01-27 09:44 AM PST -rachelcorawood,2025-01-27T17:46:12Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2616494725) at 2025-01-27 09:46 AM PST -rachelcorawood,2025-03-19T22:22:25Z,- rachelcorawood assigned to issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2683814657) at 2025-03-19 03:22 PM PDT -rachelcorawood,2025-03-19T22:25:19Z,- rachelcorawood commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2738313424) at 2025-03-19 03:25 PM PDT -rachelcorawood,2025-03-24T16:53:43Z,- rachelcorawood commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2748794937) at 2025-03-24 09:53 AM PDT -rachitsgh,2023-09-20T07:50:28Z,- rachitsgh opened pull request: [5561](https://github.com/hackforla/website/pull/5561) at 2023-09-20 12:50 AM PDT -rachitsgh,2023-09-20T18:54:22Z,- rachitsgh pull request closed w/o merging: [5561](https://github.com/hackforla/website/pull/5561#event-10426726122) at 2023-09-20 11:54 AM PDT -raeraeicky,2025-01-31T01:12:31Z,- raeraeicky opened issue: [7863](https://github.com/hackforla/website/issues/7863) at 2025-01-30 05:12 PM PST -raeraeicky,2025-04-24T20:40:40Z,- raeraeicky opened issue: [8087](https://github.com/hackforla/website/issues/8087) at 2025-04-24 01:40 PM PDT -raeraeicky,2025-06-27T19:28:05Z,- raeraeicky opened issue: [8234](https://github.com/hackforla/website/issues/8234) at 2025-06-27 12:28 PM PDT -rafaelferreiranvr,7979,SKILLS ISSUE -rafaelferreiranvr,2025-03-04T05:01:00Z,- rafaelferreiranvr opened issue: [7979](https://github.com/hackforla/website/issues/7979) at 2025-03-03 09:01 PM PST -rafaelferreiranvr,2025-03-04T05:02:12Z,- rafaelferreiranvr assigned to issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2696209082) at 2025-03-03 09:02 PM PST -Rajwinder35,7220,SKILLS ISSUE -Rajwinder35,2024-08-06T04:06:56Z,- Rajwinder35 opened issue: [7220](https://github.com/hackforla/website/issues/7220) at 2024-08-05 09:06 PM PDT -Rajwinder35,2024-08-06T04:27:36Z,- Rajwinder35 opened issue: [7222](https://github.com/hackforla/website/issues/7222) at 2024-08-05 09:27 PM PDT -Rajwinder35,2024-08-06T11:25:51Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271059611) at 2024-08-06 04:25 AM PDT -Rajwinder35,2024-08-06T11:35:03Z,- Rajwinder35 closed issue as completed: [7222](https://github.com/hackforla/website/issues/7222#event-13777262138) at 2024-08-06 04:35 AM PDT -Rajwinder35,2024-08-06T16:08:09Z,- Rajwinder35 assigned to issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271059611) at 2024-08-06 09:08 AM PDT -Rajwinder35,2024-08-20T06:25:33Z,- Rajwinder35 assigned to issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-08-19 11:25 PM PDT -Rajwinder35,2024-08-20T06:39:36Z,- Rajwinder35 commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2298081043) at 2024-08-19 11:39 PM PDT -Rajwinder35,2024-08-20T06:47:31Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298092216) at 2024-08-19 11:47 PM PDT -Rajwinder35,2024-08-20T10:20:01Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298504858) at 2024-08-20 03:20 AM PDT -Rajwinder35,2024-08-20T11:09:48Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298594731) at 2024-08-20 04:09 AM PDT -Rajwinder35,2024-08-20T11:37:09Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298643007) at 2024-08-20 04:37 AM PDT -Rajwinder35,2024-08-20T12:02:10Z,- Rajwinder35 assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2277285129) at 2024-08-20 05:02 AM PDT -Rajwinder35,2024-08-20T12:02:26Z,- Rajwinder35 unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-08-20 05:02 AM PDT -Rajwinder35,2024-09-14T01:15:47Z,- Rajwinder35 unassigned from issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2348189403) at 2024-09-13 06:15 PM PDT -Rajwinder35,2024-10-20T17:45:24Z,- Rajwinder35 assigned to issue: [7222](https://github.com/hackforla/website/issues/7222#event-13777262138) at 2024-10-20 10:45 AM PDT -rakeshbabu23,2023-05-11T10:17:50Z,- rakeshbabu23 opened pull request: [4652](https://github.com/hackforla/website/pull/4652) at 2023-05-11 03:17 AM PDT -rakeshbabu23,2023-05-11T10:36:08Z,- rakeshbabu23 commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1543751720) at 2023-05-11 03:36 AM PDT -rakeshbabu23,2023-05-11T11:07:59Z,- rakeshbabu23 opened pull request: [4653](https://github.com/hackforla/website/pull/4653) at 2023-05-11 04:07 AM PDT -rakeshbabu23,2023-05-11T11:08:40Z,- rakeshbabu23 pull request closed w/o merging: [4653](https://github.com/hackforla/website/pull/4653#event-9221113544) at 2023-05-11 04:08 AM PDT -rakeshbabu23,2023-05-11T11:23:49Z,- rakeshbabu23 opened pull request: [4654](https://github.com/hackforla/website/pull/4654) at 2023-05-11 04:23 AM PDT -rakeshbabu23,2023-05-11T16:04:43Z,- rakeshbabu23 opened pull request: [4655](https://github.com/hackforla/website/pull/4655) at 2023-05-11 09:04 AM PDT -rakeshbabu23,2023-05-11T17:37:51Z,- rakeshbabu23 pull request closed w/o merging: [4652](https://github.com/hackforla/website/pull/4652#event-9225130041) at 2023-05-11 10:37 AM PDT -rakeshbabu23,2023-05-11T17:53:18Z,- rakeshbabu23 pull request closed w/o merging: [4654](https://github.com/hackforla/website/pull/4654#event-9225248133) at 2023-05-11 10:53 AM PDT -rakeshbabu23,2023-05-15T05:01:03Z,- rakeshbabu23 pull request closed w/o merging: [4655](https://github.com/hackforla/website/pull/4655#event-9242052228) at 2023-05-14 10:01 PM PDT -ramitaarora,6248,SKILLS ISSUE -ramitaarora,2024-02-06T03:32:21Z,- ramitaarora opened issue: [6248](https://github.com/hackforla/website/issues/6248) at 2024-02-05 07:32 PM PST -ramitaarora,2024-02-06T03:32:22Z,- ramitaarora assigned to issue: [6248](https://github.com/hackforla/website/issues/6248) at 2024-02-05 07:32 PM PST -ramitaarora,2024-02-13T17:54:20Z,- ramitaarora assigned to issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1686565365) at 2024-02-13 09:54 AM PST -ramitaarora,2024-02-13T18:01:00Z,- ramitaarora commented on issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1942112221) at 2024-02-13 10:01 AM PST -ramitaarora,2024-02-14T03:53:52Z,- ramitaarora opened pull request: [6293](https://github.com/hackforla/website/pull/6293) at 2024-02-13 07:53 PM PST -ramitaarora,2024-02-14T03:59:45Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-1943046760) at 2024-02-13 07:59 PM PST -ramitaarora,2024-02-15T05:36:43Z,- ramitaarora assigned to issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1776423981) at 2024-02-14 09:36 PM PST -ramitaarora,2024-02-15T05:37:47Z,- ramitaarora commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1945403892) at 2024-02-14 09:37 PM PST -ramitaarora,2024-02-16T00:04:07Z,- ramitaarora opened pull request: [6301](https://github.com/hackforla/website/pull/6301) at 2024-02-15 04:04 PM PST -ramitaarora,2024-02-16T04:27:02Z,- ramitaarora assigned to issue: [5989](https://github.com/hackforla/website/issues/5989) at 2024-02-15 08:27 PM PST -ramitaarora,2024-02-16T05:39:18Z,- ramitaarora pull request closed w/o merging: [6301](https://github.com/hackforla/website/pull/6301#event-11824609230) at 2024-02-15 09:39 PM PST -ramitaarora,2024-02-16T05:40:17Z,- ramitaarora unassigned from issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1945403892) at 2024-02-15 09:40 PM PST -ramitaarora,2024-02-16T05:45:40Z,- ramitaarora unassigned from issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1947738161) at 2024-02-15 09:45 PM PST -ramitaarora,2024-02-16T07:18:59Z,- ramitaarora pull request merged: [6293](https://github.com/hackforla/website/pull/6293#event-11825240537) at 2024-02-15 11:18 PM PST -ramitaarora,2024-02-16T16:20:45Z,- ramitaarora assigned to issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1800817242) at 2024-02-16 08:20 AM PST -ramitaarora,2024-02-16T16:21:39Z,- ramitaarora commented on issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1948794266) at 2024-02-16 08:21 AM PST -ramitaarora,2024-02-16T18:17:04Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-1949038443) at 2024-02-16 10:17 AM PST -ramitaarora,2024-02-16T18:28:30Z,- ramitaarora opened pull request: [6305](https://github.com/hackforla/website/pull/6305) at 2024-02-16 10:28 AM PST -ramitaarora,2024-02-19T04:22:11Z,- ramitaarora pull request merged: [6305](https://github.com/hackforla/website/pull/6305#event-11843961161) at 2024-02-18 08:22 PM PST -ramitaarora,2024-02-21T03:01:03Z,- ramitaarora assigned to issue: [5992](https://github.com/hackforla/website/issues/5992) at 2024-02-20 07:01 PM PST -ramitaarora,2024-02-21T03:21:59Z,- ramitaarora commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1955806682) at 2024-02-20 07:21 PM PST -ramitaarora,2024-02-22T17:46:16Z,- ramitaarora commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1959954087) at 2024-02-22 09:46 AM PST -ramitaarora,2024-02-22T17:48:54Z,- ramitaarora closed issue as completed: [6248](https://github.com/hackforla/website/issues/6248#event-11894622710) at 2024-02-22 09:48 AM PST -ramitaarora,2024-02-22T18:23:21Z,- ramitaarora commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1960016524) at 2024-02-22 10:23 AM PST -ramitaarora,2024-02-27T05:38:23Z,- ramitaarora assigned to issue: [6286](https://github.com/hackforla/website/issues/6286) at 2024-02-26 09:38 PM PST -ramitaarora,2024-02-27T05:39:09Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1965825829) at 2024-02-26 09:39 PM PST -ramitaarora,2024-02-28T17:26:49Z,- ramitaarora commented on pull request: [6385](https://github.com/hackforla/website/pull/6385#issuecomment-1969487339) at 2024-02-28 09:26 AM PST -ramitaarora,2024-02-28T17:56:56Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969538499) at 2024-02-28 09:56 AM PST -ramitaarora,2024-02-28T20:51:00Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969896391) at 2024-02-28 12:51 PM PST -ramitaarora,2024-02-28T21:33:27Z,- ramitaarora opened pull request: [6390](https://github.com/hackforla/website/pull/6390) at 2024-02-28 01:33 PM PST -ramitaarora,2024-02-28T21:55:08Z,- ramitaarora submitted pull request review: [6385](https://github.com/hackforla/website/pull/6385#pullrequestreview-1907503612) at 2024-02-28 01:55 PM PST -ramitaarora,2024-02-29T08:52:28Z,- ramitaarora pull request merged: [6390](https://github.com/hackforla/website/pull/6390#event-11962736898) at 2024-02-29 12:52 AM PST -ramitaarora,2024-02-29T23:27:30Z,- ramitaarora commented on pull request: [6393](https://github.com/hackforla/website/pull/6393#issuecomment-1972143274) at 2024-02-29 03:27 PM PST -ramitaarora,2024-03-01T19:37:34Z,- ramitaarora submitted pull request review: [6393](https://github.com/hackforla/website/pull/6393#pullrequestreview-1911882554) at 2024-03-01 11:37 AM PST -ramitaarora,2024-03-04T18:28:47Z,- ramitaarora closed issue by PR 6441: [5187](https://github.com/hackforla/website/issues/5187#event-12003140402) at 2024-03-04 10:28 AM PST -ramitaarora,2024-03-04T21:30:54Z,- ramitaarora commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1977493776) at 2024-03-04 01:30 PM PST -ramitaarora,2024-03-05T21:36:32Z,- ramitaarora submitted pull request review: [6410](https://github.com/hackforla/website/pull/6410#pullrequestreview-1918179889) at 2024-03-05 01:36 PM PST -ramitaarora,2024-03-08T17:32:47Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1986119633) at 2024-03-08 09:32 AM PST -ramitaarora,2024-03-09T17:49:51Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1986929586) at 2024-03-09 10:49 AM PDT -ramitaarora,2024-03-11T16:20:42Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1988843020) at 2024-03-11 09:20 AM PDT -ramitaarora,2024-03-11T19:46:18Z,- ramitaarora commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1989303709) at 2024-03-11 12:46 PM PDT -ramitaarora,2024-03-12T16:53:46Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1992123763) at 2024-03-12 09:53 AM PDT -ramitaarora,2024-03-14T16:26:25Z,- ramitaarora submitted pull request review: [6443](https://github.com/hackforla/website/pull/6443#pullrequestreview-1937196763) at 2024-03-14 09:26 AM PDT -ramitaarora,2024-03-24T17:24:54Z,- ramitaarora assigned to issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2008695048) at 2024-03-24 10:24 AM PDT -ramitaarora,2024-03-24T17:25:43Z,- ramitaarora commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2016878619) at 2024-03-24 10:25 AM PDT -ramitaarora,2024-03-27T22:34:35Z,- ramitaarora commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2024100427) at 2024-03-27 03:34 PM PDT -ramitaarora,2024-03-28T16:56:03Z,- ramitaarora commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2025686980) at 2024-03-28 09:56 AM PDT -ramitaarora,2024-03-28T17:03:36Z,- ramitaarora submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1966787068) at 2024-03-28 10:03 AM PDT -ramitaarora,2024-03-28T17:05:18Z,- ramitaarora opened pull request: [6542](https://github.com/hackforla/website/pull/6542) at 2024-03-28 10:05 AM PDT -ramitaarora,2024-04-01T09:24:14Z,- ramitaarora pull request merged: [6542](https://github.com/hackforla/website/pull/6542#event-12308711697) at 2024-04-01 02:24 AM PDT -ramitaarora,2024-04-11T04:33:54Z,- ramitaarora commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2048910278) at 2024-04-10 09:33 PM PDT -ramitaarora,2024-04-12T16:17:44Z,- ramitaarora submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1997856321) at 2024-04-12 09:17 AM PDT -ramitaarora,2024-04-23T15:56:46Z,- ramitaarora assigned to issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1696256028) at 2024-04-23 08:56 AM PDT -ramitaarora,2024-04-23T15:58:27Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2072811888) at 2024-04-23 08:58 AM PDT -ramitaarora,2024-04-24T02:11:32Z,- ramitaarora commented on pull request: [6712](https://github.com/hackforla/website/pull/6712#issuecomment-2073868164) at 2024-04-23 07:11 PM PDT -ramitaarora,2024-04-26T18:17:02Z,- ramitaarora submitted pull request review: [6712](https://github.com/hackforla/website/pull/6712#pullrequestreview-2025620291) at 2024-04-26 11:17 AM PDT -ramitaarora,2024-04-30T18:03:15Z,- ramitaarora commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086318389) at 2024-04-30 11:03 AM PDT -ramitaarora,2024-04-30T18:06:51Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2086337197) at 2024-04-30 11:06 AM PDT -ramitaarora,2024-04-30T18:22:59Z,- ramitaarora submitted pull request review: [6782](https://github.com/hackforla/website/pull/6782#pullrequestreview-2032182505) at 2024-04-30 11:22 AM PDT -ramitaarora,2024-05-01T02:20:04Z,- ramitaarora commented on pull request: [6792](https://github.com/hackforla/website/pull/6792#issuecomment-2087879357) at 2024-04-30 07:20 PM PDT -ramitaarora,2024-05-01T07:04:03Z,- ramitaarora unassigned from issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2088067889) at 2024-05-01 12:04 AM PDT -ramitaarora,2024-05-01T16:38:48Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2088740594) at 2024-05-01 09:38 AM PDT -ramitaarora,2024-05-01T19:09:52Z,- ramitaarora submitted pull request review: [6792](https://github.com/hackforla/website/pull/6792#pullrequestreview-2034269792) at 2024-05-01 12:09 PM PDT -ramitaarora,2024-05-01T19:19:15Z,- ramitaarora submitted pull request review: [6791](https://github.com/hackforla/website/pull/6791#pullrequestreview-2034289530) at 2024-05-01 12:19 PM PDT -ramitaarora,2024-05-14T19:40:54Z,- ramitaarora opened pull request: [6854](https://github.com/hackforla/website/pull/6854) at 2024-05-14 12:40 PM PDT -ramitaarora,2024-05-15T02:14:08Z,- ramitaarora commented on pull request: [6851](https://github.com/hackforla/website/pull/6851#issuecomment-2111454997) at 2024-05-14 07:14 PM PDT -ramitaarora,2024-05-15T17:13:55Z,- ramitaarora submitted pull request review: [6851](https://github.com/hackforla/website/pull/6851#pullrequestreview-2058591066) at 2024-05-15 10:13 AM PDT -ramitaarora,2024-05-24T14:44:48Z,- ramitaarora commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2129712985) at 2024-05-24 07:44 AM PDT -ramitaarora,2024-05-31T20:17:52Z,- ramitaarora opened issue: [6919](https://github.com/hackforla/website/issues/6919) at 2024-05-31 01:17 PM PDT -ramitaarora,2024-05-31T20:33:04Z,- ramitaarora commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2142940975) at 2024-05-31 01:33 PM PDT -ramitaarora,2024-06-19T07:52:29Z,- ramitaarora pull request merged: [6854](https://github.com/hackforla/website/pull/6854#event-13211829817) at 2024-06-19 12:52 AM PDT -ramitaarora,2024-06-23T00:52:48Z,- ramitaarora commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2184276557) at 2024-06-22 05:52 PM PDT -ramitaarora,2024-06-25T15:59:16Z,- ramitaarora submitted pull request review: [7040](https://github.com/hackforla/website/pull/7040#pullrequestreview-2139139686) at 2024-06-25 08:59 AM PDT -ramitaarora,2024-06-26T02:10:11Z,- ramitaarora assigned to issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2092033370) at 2024-06-25 07:10 PM PDT -ramitaarora,2024-06-26T04:20:37Z,- ramitaarora commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2190555266) at 2024-06-25 09:20 PM PDT -ramitaarora,2024-07-10T19:59:54Z,- ramitaarora opened issue: [7102](https://github.com/hackforla/website/issues/7102) at 2024-07-10 12:59 PM PDT -ramitaarora,2024-07-10T20:01:41Z,- ramitaarora opened issue: [7103](https://github.com/hackforla/website/issues/7103) at 2024-07-10 01:01 PM PDT -ramitaarora,2024-07-22T17:05:06Z,- ramitaarora assigned to issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2132343262) at 2024-07-22 10:05 AM PDT -ramitaarora,2024-07-22T17:41:43Z,- ramitaarora commented on pull request: [7131](https://github.com/hackforla/website/pull/7131#issuecomment-2243485348) at 2024-07-22 10:41 AM PDT -ramitaarora,2024-07-22T17:42:01Z,- ramitaarora commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2243485844) at 2024-07-22 10:42 AM PDT -ramitaarora,2024-07-23T16:34:59Z,- ramitaarora submitted pull request review: [7131](https://github.com/hackforla/website/pull/7131#pullrequestreview-2194495868) at 2024-07-23 09:34 AM PDT -ramitaarora,2024-07-26T16:56:55Z,- ramitaarora opened issue: [7142](https://github.com/hackforla/website/issues/7142) at 2024-07-26 09:56 AM PDT -ramitaarora,2024-07-26T16:57:48Z,- ramitaarora opened issue: [7143](https://github.com/hackforla/website/issues/7143) at 2024-07-26 09:57 AM PDT -ramitaarora,2024-07-26T16:58:25Z,- ramitaarora opened issue: [7144](https://github.com/hackforla/website/issues/7144) at 2024-07-26 09:58 AM PDT -ramitaarora,2024-07-26T16:59:00Z,- ramitaarora opened issue: [7145](https://github.com/hackforla/website/issues/7145) at 2024-07-26 09:59 AM PDT -ramitaarora,2024-07-26T16:59:37Z,- ramitaarora opened issue: [7146](https://github.com/hackforla/website/issues/7146) at 2024-07-26 09:59 AM PDT -ramitaarora,2024-07-26T17:00:07Z,- ramitaarora opened issue: [7147](https://github.com/hackforla/website/issues/7147) at 2024-07-26 10:00 AM PDT -ramitaarora,2024-07-26T17:00:35Z,- ramitaarora opened issue: [7148](https://github.com/hackforla/website/issues/7148) at 2024-07-26 10:00 AM PDT -ramitaarora,2024-07-26T17:01:06Z,- ramitaarora opened issue: [7149](https://github.com/hackforla/website/issues/7149) at 2024-07-26 10:01 AM PDT -ramitaarora,2024-08-14T02:03:08Z,- ramitaarora assigned to issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2164324630) at 2024-08-13 07:03 PM PDT -ramitaarora,2024-08-14T02:07:29Z,- ramitaarora commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2287696623) at 2024-08-13 07:07 PM PDT -ramitaarora,2024-08-14T02:08:04Z,- ramitaarora commented on pull request: [7276](https://github.com/hackforla/website/pull/7276#issuecomment-2287697154) at 2024-08-13 07:08 PM PDT -ramitaarora,2024-08-16T17:13:39Z,- ramitaarora submitted pull request review: [7276](https://github.com/hackforla/website/pull/7276#pullrequestreview-2243155566) at 2024-08-16 10:13 AM PDT -ramitaarora,2024-08-16T17:44:22Z,- ramitaarora opened issue: [7304](https://github.com/hackforla/website/issues/7304) at 2024-08-16 10:44 AM PDT -ramitaarora,2024-08-30T03:47:35Z,- ramitaarora commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319949049) at 2024-08-29 08:47 PM PDT -ramitaarora,2024-08-30T17:38:16Z,- ramitaarora submitted pull request review: [7360](https://github.com/hackforla/website/pull/7360#pullrequestreview-2273161068) at 2024-08-30 10:38 AM PDT -ramitaarora,2024-08-30T17:41:26Z,- ramitaarora assigned to issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2264115990) at 2024-08-30 10:41 AM PDT -ramitaarora,2024-08-30T17:41:40Z,- ramitaarora unassigned from issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2322046458) at 2024-08-30 10:41 AM PDT -ramitaarora,2024-08-30T17:42:10Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2322047077) at 2024-08-30 10:42 AM PDT -ramitaarora,2024-09-11T02:18:07Z,- ramitaarora commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2342481155) at 2024-09-10 07:18 PM PDT -ramitaarora,2024-09-13T01:58:33Z,- ramitaarora submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2301993852) at 2024-09-12 06:58 PM PDT -ramitaarora,2024-09-16T16:00:06Z,- ramitaarora commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2353319430) at 2024-09-16 09:00 AM PDT -ramitaarora,2024-09-16T16:01:57Z,- ramitaarora submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2307094744) at 2024-09-16 09:01 AM PDT -ramitaarora,2024-09-18T02:13:00Z,- ramitaarora commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2357351632) at 2024-09-17 07:13 PM PDT -ramitaarora,2024-09-19T17:23:53Z,- ramitaarora commented on pull request: [7468](https://github.com/hackforla/website/pull/7468#issuecomment-2361781372) at 2024-09-19 10:23 AM PDT -ramitaarora,2024-09-20T20:28:32Z,- ramitaarora submitted pull request review: [7468](https://github.com/hackforla/website/pull/7468#pullrequestreview-2319283106) at 2024-09-20 01:28 PM PDT -ramitaarora,2024-09-27T02:25:40Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2378282327) at 2024-09-26 07:25 PM PDT -ramitaarora,2024-09-27T02:39:56Z,- ramitaarora closed issue as completed: [6248](https://github.com/hackforla/website/issues/6248#event-14424680677) at 2024-09-26 07:39 PM PDT -ramitaarora,2024-09-27T04:01:05Z,- ramitaarora commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2378355674) at 2024-09-26 09:01 PM PDT -ramitaarora,2024-10-01T17:52:54Z,- ramitaarora commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2386613841) at 2024-10-01 10:52 AM PDT -ramitaarora,2024-10-02T04:04:14Z,- ramitaarora submitted pull request review: [7554](https://github.com/hackforla/website/pull/7554#pullrequestreview-2341866537) at 2024-10-01 09:04 PM PDT -ramitaarora,2024-10-10T04:15:06Z,- ramitaarora commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2403932933) at 2024-10-09 09:15 PM PDT -ramitaarora,2024-10-10T04:18:27Z,- ramitaarora assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2378162993) at 2024-10-09 09:18 PM PDT -ramitaarora,2024-10-10T04:19:17Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2403936663) at 2024-10-09 09:19 PM PDT -ramitaarora,2024-10-10T18:24:51Z,- ramitaarora submitted pull request review: [7579](https://github.com/hackforla/website/pull/7579#pullrequestreview-2361107576) at 2024-10-10 11:24 AM PDT -ramitaarora,2024-10-18T15:51:40Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2422774703) at 2024-10-18 08:51 AM PDT -ramitaarora,2024-10-25T19:57:42Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-10-25 12:57 PM PDT -ramitaarora,2024-10-30T02:15:56Z,- ramitaarora commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2445678557) at 2024-10-29 07:15 PM PDT -ramitaarora,2024-10-31T03:30:32Z,- ramitaarora submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2406876794) at 2024-10-30 08:30 PM PDT -ramitaarora,2024-10-31T18:10:53Z,- ramitaarora submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2408756248) at 2024-10-31 11:10 AM PDT -ramitaarora,2024-11-05T17:09:32Z,- ramitaarora unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-11-05 09:09 AM PST -ramitaarora,2024-11-18T19:12:06Z,- ramitaarora assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-11-18 11:12 AM PST -ramitaarora,2024-11-18T19:12:49Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2483895265) at 2024-11-18 11:12 AM PST -ramitaarora,2024-11-20T03:21:45Z,- ramitaarora commented on pull request: [7729](https://github.com/hackforla/website/pull/7729#issuecomment-2487265912) at 2024-11-19 07:21 PM PST -ramitaarora,2024-12-09T17:30:58Z,- ramitaarora unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2507206922) at 2024-12-09 09:30 AM PST -raswani2023,3273,SKILLS ISSUE -raswani2023,2022-06-20T22:46:21Z,- raswani2023 opened issue: [3273](https://github.com/hackforla/website/issues/3273) at 2022-06-20 03:46 PM PDT -raswani2023,2022-06-20T22:46:29Z,- raswani2023 assigned to issue: [3273](https://github.com/hackforla/website/issues/3273) at 2022-06-20 03:46 PM PDT -raswani2023,2022-06-23T05:30:29Z,- raswani2023 assigned to issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-06-22 10:30 PM PDT -raswani2023,2022-06-23T22:07:00Z,- raswani2023 unassigned from issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-06-23 03:07 PM PDT -raswani2023,2022-06-24T01:30:24Z,- raswani2023 commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1165077499) at 2022-06-23 06:30 PM PDT -raswani2023,2022-06-24T01:32:34Z,- raswani2023 commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1165078708) at 2022-06-23 06:32 PM PDT -raswani2023,2022-06-24T02:05:47Z,- raswani2023 assigned to issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1165077499) at 2022-06-23 07:05 PM PDT -raswani2023,2022-06-26T07:25:36Z,- raswani2023 opened pull request: [3303](https://github.com/hackforla/website/pull/3303) at 2022-06-26 12:25 AM PDT -raswani2023,2022-06-26T18:56:42Z,- raswani2023 opened issue: [3315](https://github.com/hackforla/website/issues/3315) at 2022-06-26 11:56 AM PDT -raswani2023,2022-06-26T19:40:53Z,- raswani2023 pull request merged: [3303](https://github.com/hackforla/website/pull/3303#event-6880804807) at 2022-06-26 12:40 PM PDT -raswani2023,2022-06-27T04:11:54Z,- raswani2023 assigned to issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1115465887) at 2022-06-26 09:11 PM PDT -raswani2023,2022-06-27T23:14:08Z,- raswani2023 commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1168024158) at 2022-06-27 04:14 PM PDT -raswani2023,2022-06-29T02:37:22Z,- raswani2023 opened pull request: [3323](https://github.com/hackforla/website/pull/3323) at 2022-06-28 07:37 PM PDT -raswani2023,2022-06-29T02:50:54Z,- raswani2023 commented on issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1169476535) at 2022-06-28 07:50 PM PDT -raswani2023,2022-06-29T16:59:02Z,- raswani2023 pull request merged: [3323](https://github.com/hackforla/website/pull/3323#event-6904206103) at 2022-06-29 09:59 AM PDT -raswani2023,2022-07-03T09:22:41Z,- raswani2023 assigned to issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1173009227) at 2022-07-03 02:22 AM PDT -raswani2023,2022-07-10T18:32:45Z,- raswani2023 opened pull request: [3348](https://github.com/hackforla/website/pull/3348) at 2022-07-10 11:32 AM PDT -raswani2023,2022-07-10T18:34:40Z,- raswani2023 commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1179777610) at 2022-07-10 11:34 AM PDT -raswani2023,2022-07-13T02:47:33Z,- raswani2023 commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182703513) at 2022-07-12 07:47 PM PDT -raswani2023,2022-07-13T04:58:04Z,- raswani2023 submitted pull request review: [3363](https://github.com/hackforla/website/pull/3363#pullrequestreview-1036763187) at 2022-07-12 09:58 PM PDT -raswani2023,2022-07-15T02:34:03Z,- raswani2023 pull request merged: [3348](https://github.com/hackforla/website/pull/3348#event-6998715675) at 2022-07-14 07:34 PM PDT -raswani2023,2022-07-18T17:26:49Z,- raswani2023 assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1120285387) at 2022-07-18 10:26 AM PDT -raswani2023,2022-07-19T18:12:26Z,- raswani2023 submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043885499) at 2022-07-19 11:12 AM PDT -raswani2023,2022-07-19T18:15:54Z,- raswani2023 submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043889320) at 2022-07-19 11:15 AM PDT -raswani2023,2022-07-21T17:57:12Z,- raswani2023 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1191777426) at 2022-07-21 10:57 AM PDT -raswani2023,2022-07-24T17:55:33Z,- raswani2023 unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1191777426) at 2022-07-24 10:55 AM PDT -raswani2023,2022-07-24T17:59:00Z,- raswani2023 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1193366245) at 2022-07-24 10:59 AM PDT -raswani2023,2022-07-26T00:12:22Z,- raswani2023 assigned to issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-907899822) at 2022-07-25 05:12 PM PDT -raswani2023,2022-07-26T17:47:57Z,- raswani2023 commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1195793864) at 2022-07-26 10:47 AM PDT -raswani2023,2022-07-27T04:24:20Z,- raswani2023 opened pull request: [3432](https://github.com/hackforla/website/pull/3432) at 2022-07-26 09:24 PM PDT -raswani2023,2022-07-27T04:53:42Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1196264902) at 2022-07-26 09:53 PM PDT -raswani2023,2022-07-27T22:46:22Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197453898) at 2022-07-27 03:46 PM PDT -raswani2023,2022-07-27T22:49:16Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197455666) at 2022-07-27 03:49 PM PDT -raswani2023,2022-07-28T01:58:45Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197563290) at 2022-07-27 06:58 PM PDT -raswani2023,2022-07-28T17:47:01Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198451739) at 2022-07-28 10:47 AM PDT -raswani2023,2022-07-29T02:00:31Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198804054) at 2022-07-28 07:00 PM PDT -raswani2023,2022-07-31T02:47:13Z,- raswani2023 pull request merged: [3432](https://github.com/hackforla/website/pull/3432#event-7095774789) at 2022-07-30 07:47 PM PDT -raswani2023,2022-11-06T19:14:39Z,- raswani2023 unassigned from issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1304867526) at 2022-11-06 11:14 AM PST -raswani2023,2022-11-27T04:49:05Z,- raswani2023 unassigned from issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1328170999) at 2022-11-26 08:49 PM PST -ratishjain12,2023-08-30T17:07:08Z,- ratishjain12 opened issue: [5375](https://github.com/hackforla/website/issues/5375) at 2023-08-30 10:07 AM PDT -ratishjain12,2023-10-09T00:00:16Z,- ratishjain12 commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1752198192) at 2023-10-08 05:00 PM PDT -ratishjain12,2023-10-18T07:10:54Z,- ratishjain12 commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1767809625) at 2023-10-18 12:10 AM PDT -raviteja4117,4999,SKILLS ISSUE -raviteja4117,2023-07-18T03:02:55Z,- raviteja4117 opened issue: [4999](https://github.com/hackforla/website/issues/4999) at 2023-07-17 08:02 PM PDT -raviteja4117,2023-07-18T03:55:37Z,- raviteja4117 assigned to issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1639237381) at 2023-07-17 08:55 PM PDT -raviteja4117,2023-08-16T23:38:59Z,- raviteja4117 assigned to issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1677898989) at 2023-08-16 04:38 PM PDT -raviteja4117,2023-08-16T23:44:23Z,- raviteja4117 commented on issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681403833) at 2023-08-16 04:44 PM PDT -raviteja4117,2023-08-20T02:58:59Z,- raviteja4117 opened pull request: [5261](https://github.com/hackforla/website/pull/5261) at 2023-08-19 07:58 PM PDT -raviteja4117,2023-08-22T22:00:54Z,- raviteja4117 pull request merged: [5261](https://github.com/hackforla/website/pull/5261#event-10163516063) at 2023-08-22 03:00 PM PDT -raviteja4117,2023-08-25T23:41:19Z,- raviteja4117 assigned to issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 04:41 PM PDT -raviteja4117,2023-08-25T23:45:25Z,- raviteja4117 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1694038007) at 2023-08-25 04:45 PM PDT -raviteja4117,2023-09-02T01:57:33Z,- raviteja4117 opened pull request: [5416](https://github.com/hackforla/website/pull/5416) at 2023-09-01 06:57 PM PDT -raviteja4117,2023-09-06T22:14:52Z,- raviteja4117 pull request closed w/o merging: [5416](https://github.com/hackforla/website/pull/5416#event-10301004445) at 2023-09-06 03:14 PM PDT -raviteja4117,2023-09-07T23:04:51Z,- raviteja4117 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1710869534) at 2023-09-07 04:04 PM PDT -raviteja4117,2023-09-16T16:38:34Z,- raviteja4117 assigned to issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1717174626) at 2023-09-16 09:38 AM PDT -raviteja4117,2023-09-16T16:40:11Z,- raviteja4117 commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1722267252) at 2023-09-16 09:40 AM PDT -raviteja4117,2023-09-27T16:28:57Z,- raviteja4117 assigned to issue: [5600](https://github.com/hackforla/website/issues/5600) at 2023-09-27 09:28 AM PDT -raviteja4117,2023-09-27T16:30:22Z,- raviteja4117 commented on issue: [5600](https://github.com/hackforla/website/issues/5600#issuecomment-1737726015) at 2023-09-27 09:30 AM PDT -raviteja4117,2023-09-30T20:03:59Z,- raviteja4117 assigned to issue: [5336](https://github.com/hackforla/website/issues/5336) at 2023-09-30 01:03 PM PDT -raviteja4117,2023-09-30T20:05:19Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741849169) at 2023-09-30 01:05 PM PDT -raviteja4117,2023-09-30T20:16:36Z,- raviteja4117 unassigned from issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741849169) at 2023-09-30 01:16 PM PDT -raviteja4117,2023-09-30T21:25:04Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741862656) at 2023-09-30 02:25 PM PDT -raviteja4117,2023-09-30T21:26:11Z,- raviteja4117 assigned to issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741862656) at 2023-09-30 02:26 PM PDT -raviteja4117,2023-10-01T01:21:37Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741913748) at 2023-09-30 06:21 PM PDT -raviteja4117,2023-10-06T18:44:34Z,- raviteja4117 commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1751246516) at 2023-10-06 11:44 AM PDT -raviteja4117,2023-10-09T01:49:10Z,- raviteja4117 opened pull request: [5683](https://github.com/hackforla/website/pull/5683) at 2023-10-08 06:49 PM PDT -raviteja4117,2023-10-14T23:06:48Z,- raviteja4117 pull request merged: [5683](https://github.com/hackforla/website/pull/5683#event-10656088559) at 2023-10-14 04:06 PM PDT -raviteja4117,2023-11-10T00:37:02Z,- raviteja4117 assigned to issue: [5770](https://github.com/hackforla/website/issues/5770) at 2023-11-09 04:37 PM PST -raviteja4117,2023-11-10T00:46:07Z,- raviteja4117 commented on issue: [5770](https://github.com/hackforla/website/issues/5770#issuecomment-1804900465) at 2023-11-09 04:46 PM PST -raviteja4117,2023-11-15T19:24:26Z,- raviteja4117 opened pull request: [5908](https://github.com/hackforla/website/pull/5908) at 2023-11-15 11:24 AM PST -raviteja4117,2023-11-18T22:28:07Z,- raviteja4117 commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1817665199) at 2023-11-18 02:28 PM PST -raviteja4117,2023-11-20T18:40:41Z,- raviteja4117 pull request merged: [5908](https://github.com/hackforla/website/pull/5908#event-11015418984) at 2023-11-20 10:40 AM PST -raviteja4117,2023-12-17T02:09:52Z,- raviteja4117 commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1859015080) at 2023-12-16 06:09 PM PST -raviteja4117,2023-12-18T22:19:32Z,- raviteja4117 submitted pull request review: [6010](https://github.com/hackforla/website/pull/6010#pullrequestreview-1787802104) at 2023-12-18 02:19 PM PST -raviteja4117,2024-01-13T22:21:56Z,- raviteja4117 assigned to issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1851267392) at 2024-01-13 02:21 PM PST -raviteja4117,2024-01-13T22:24:44Z,- raviteja4117 commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1890782997) at 2024-01-13 02:24 PM PST -raviteja4117,2024-01-21T18:50:59Z,- raviteja4117 commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1902726321) at 2024-01-21 10:50 AM PST -raviteja4117,2024-01-25T02:51:33Z,- raviteja4117 opened issue: [6153](https://github.com/hackforla/website/issues/6153) at 2024-01-24 06:51 PM PST -raviteja4117,2024-01-25T03:13:13Z,- raviteja4117 opened issue: [6154](https://github.com/hackforla/website/issues/6154) at 2024-01-24 07:13 PM PST -raviteja4117,2024-01-25T03:15:28Z,- raviteja4117 opened issue: [6155](https://github.com/hackforla/website/issues/6155) at 2024-01-24 07:15 PM PST -raviteja4117,2024-01-25T03:17:46Z,- raviteja4117 opened issue: [6156](https://github.com/hackforla/website/issues/6156) at 2024-01-24 07:17 PM PST -raviteja4117,2024-01-25T03:20:25Z,- raviteja4117 opened issue: [6157](https://github.com/hackforla/website/issues/6157) at 2024-01-24 07:20 PM PST -raviteja4117,2024-02-17T16:43:08Z,- raviteja4117 assigned to issue: [6299](https://github.com/hackforla/website/issues/6299) at 2024-02-17 08:43 AM PST -raviteja4117,2024-02-17T16:47:19Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1950253727) at 2024-02-17 08:47 AM PST -raviteja4117,2024-02-27T18:07:15Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1967319077) at 2024-02-27 10:07 AM PST -raviteja4117,2024-03-03T19:22:52Z,- raviteja4117 opened pull request: [6411](https://github.com/hackforla/website/pull/6411) at 2024-03-03 11:22 AM PST -raviteja4117,2024-03-07T03:20:04Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1982277496) at 2024-03-06 07:20 PM PST -raviteja4117,2024-03-07T03:24:51Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1982281119) at 2024-03-06 07:24 PM PST -raviteja4117,2024-03-07T14:33:47Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1983634045) at 2024-03-07 06:33 AM PST -raviteja4117,2024-03-09T01:08:15Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1986669069) at 2024-03-08 06:08 PM PDT -raviteja4117,2024-03-10T02:19:38Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1987044456) at 2024-03-09 07:19 PM PDT -raviteja4117,2024-03-31T01:17:58Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2028518551) at 2024-03-30 06:17 PM PDT -raviteja4117,2024-03-31T03:05:42Z,- raviteja4117 pull request merged: [6411](https://github.com/hackforla/website/pull/6411#event-12302220558) at 2024-03-30 08:05 PM PDT -raviteja4117,2024-04-16T00:21:30Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2058023966) at 2024-04-15 05:21 PM PDT -raviteja4117,2024-04-16T00:24:03Z,- raviteja4117 assigned to issue: [6494](https://github.com/hackforla/website/issues/6494) at 2024-04-15 05:24 PM PDT -raviteja4117,2024-04-16T00:25:27Z,- raviteja4117 commented on issue: [6494](https://github.com/hackforla/website/issues/6494#issuecomment-2058026997) at 2024-04-15 05:25 PM PDT -rblaz001,2020-07-26T18:45:22Z,- rblaz001 assigned to issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664025382) at 2020-07-26 11:45 AM PDT -rblaz001,2020-07-27T06:21:09Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664143908) at 2020-07-26 11:21 PM PDT -rblaz001,2020-07-27T17:20:29Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664528437) at 2020-07-27 10:20 AM PDT -rblaz001,2020-07-27T18:41:27Z,- rblaz001 opened pull request: [647](https://github.com/hackforla/website/pull/647) at 2020-07-27 11:41 AM PDT -rblaz001,2020-07-28T03:13:22Z,- rblaz001 commented on pull request: [647](https://github.com/hackforla/website/pull/647#issuecomment-664750829) at 2020-07-27 08:13 PM PDT -rblaz001,2020-07-28T03:14:30Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664751108) at 2020-07-27 08:14 PM PDT -rblaz001,2020-07-29T02:24:07Z,- rblaz001 pull request merged: [647](https://github.com/hackforla/website/pull/647#event-3596980425) at 2020-07-28 07:24 PM PDT -rblaz001,2020-07-29T02:35:37Z,- rblaz001 commented on pull request: [652](https://github.com/hackforla/website/pull/652#issuecomment-665395728) at 2020-07-28 07:35 PM PDT -rblaz001,2020-07-29T02:52:06Z,- rblaz001 submitted pull request review: [653](https://github.com/hackforla/website/pull/653#pullrequestreview-457159259) at 2020-07-28 07:52 PM PDT -rblaz001,2020-07-29T03:33:03Z,- rblaz001 assigned to issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-07-28 08:33 PM PDT -rblaz001,2020-07-29T03:39:06Z,- rblaz001 assigned to issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-606293101) at 2020-07-28 08:39 PM PDT -rblaz001,2020-07-29T03:40:10Z,- rblaz001 unassigned from issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-07-28 08:40 PM PDT -rblaz001,2020-08-01T21:48:03Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-667591154) at 2020-08-01 02:48 PM PDT -rblaz001,2020-08-09T17:06:54Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-671076829) at 2020-08-09 10:06 AM PDT -rblaz001,2020-08-09T19:07:42Z,- rblaz001 commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671089551) at 2020-08-09 12:07 PM PDT -rblaz001,2020-08-11T02:56:59Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-671695112) at 2020-08-10 07:56 PM PDT -rblaz001,2020-08-16T16:49:34Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674549815) at 2020-08-16 09:49 AM PDT -rblaz001,2020-08-16T17:25:19Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674553724) at 2020-08-16 10:25 AM PDT -rblaz001,2020-08-20T01:57:08Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-676850408) at 2020-08-19 06:57 PM PDT -rblaz001,2020-08-20T07:40:21Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-677429689) at 2020-08-20 12:40 AM PDT -rblaz001,2020-08-23T10:34:23Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-678757388) at 2020-08-23 03:34 AM PDT -rblaz001,2020-08-30T16:11:19Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-683439125) at 2020-08-30 09:11 AM PDT -rblaz001,2020-09-12T20:25:51Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691542075) at 2020-09-12 01:25 PM PDT -rblaz001,2020-09-13T17:23:05Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691699213) at 2020-09-13 10:23 AM PDT -rblaz001,2020-09-13T17:36:55Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691700842) at 2020-09-13 10:36 AM PDT -rblaz001,2020-09-20T16:56:45Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-695809704) at 2020-09-20 09:56 AM PDT -rblaz001,2020-09-26T18:47:38Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-699533582) at 2020-09-26 11:47 AM PDT -rblaz001,2020-10-11T17:19:35Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-706737530) at 2020-10-11 10:19 AM PDT -rblaz001,2020-10-11T18:36:27Z,- rblaz001 commented on pull request: [775](https://github.com/hackforla/website/pull/775#issuecomment-706748293) at 2020-10-11 11:36 AM PDT -rblaz001,2020-10-18T16:27:07Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-711275229) at 2020-10-18 09:27 AM PDT -rblaz001,2020-10-22T23:14:53Z,- rblaz001 commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-714812475) at 2020-10-22 04:14 PM PDT -rblaz001,2020-10-24T11:49:07Z,- rblaz001 commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-715903712) at 2020-10-24 04:49 AM PDT -rblaz001,2021-02-24T22:31:04Z,- rblaz001 unassigned from issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-785427876) at 2021-02-24 02:31 PM PST -rcpeng34,2025-05-13T03:17:39Z,- rcpeng34 commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2874942128) at 2025-05-12 08:17 PM PDT -rcurtis2,2021-07-21T22:36:36Z,- rcurtis2 commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884542564) at 2021-07-21 03:36 PM PDT -regular-polygon,6605,SKILLS ISSUE -regular-polygon,2024-04-09T03:05:09Z,- regular-polygon opened issue: [6605](https://github.com/hackforla/website/issues/6605) at 2024-04-08 08:05 PM PDT -regular-polygon,2024-04-09T03:05:15Z,- regular-polygon assigned to issue: [6605](https://github.com/hackforla/website/issues/6605) at 2024-04-08 08:05 PM PDT -regular-polygon,2024-04-14T23:48:45Z,- regular-polygon assigned to issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2020597060) at 2024-04-14 04:48 PM PDT -regular-polygon,2024-04-15T22:24:03Z,- regular-polygon commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2057911975) at 2024-04-15 03:24 PM PDT -regular-polygon,2024-04-15T22:25:10Z,- regular-polygon commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2057913122) at 2024-04-15 03:25 PM PDT -regular-polygon,2024-04-15T23:24:34Z,- regular-polygon opened pull request: [6652](https://github.com/hackforla/website/pull/6652) at 2024-04-15 04:24 PM PDT -regular-polygon,2024-04-18T22:06:33Z,- regular-polygon pull request merged: [6652](https://github.com/hackforla/website/pull/6652#event-12529708762) at 2024-04-18 03:06 PM PDT -regular-polygon,2024-04-24T03:00:20Z,- regular-polygon assigned to issue: [6684](https://github.com/hackforla/website/issues/6684) at 2024-04-23 08:00 PM PDT -regular-polygon,2024-04-24T03:02:11Z,- regular-polygon commented on issue: [6684](https://github.com/hackforla/website/issues/6684#issuecomment-2073920099) at 2024-04-23 08:02 PM PDT -regular-polygon,2024-04-24T20:02:03Z,- regular-polygon opened pull request: [6745](https://github.com/hackforla/website/pull/6745) at 2024-04-24 01:02 PM PDT -regular-polygon,2024-04-28T16:54:18Z,- regular-polygon pull request merged: [6745](https://github.com/hackforla/website/pull/6745#event-12635310121) at 2024-04-28 09:54 AM PDT -render,2021-06-22T06:08:00Z,- render commented on pull request: [1808](https://github.com/hackforla/website/pull/1808#issuecomment-865625207) at 2021-06-21 11:08 PM PDT -Retr0-XD,2023-06-13T00:26:05Z,- Retr0-XD commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588287349) at 2023-06-12 05:26 PM PDT -rfambro2,2020-06-24T16:31:04Z,- rfambro2 opened issue: [588](https://github.com/hackforla/website/issues/588) at 2020-06-24 09:31 AM PDT -rfambro2,2020-06-24T16:31:28Z,- rfambro2 assigned to issue: [588](https://github.com/hackforla/website/issues/588) at 2020-06-24 09:31 AM PDT -rfambro2,2020-06-28T16:41:34Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650791465) at 2020-06-28 09:41 AM PDT -rfambro2,2020-06-28T19:11:38Z,- rfambro2 unassigned from issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650808846) at 2020-06-28 12:11 PM PDT -rfambro2,2020-07-09T16:03:54Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656213886) at 2020-07-09 09:03 AM PDT -rfambro2,2020-07-15T23:45:18Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-659071776) at 2020-07-15 04:45 PM PDT -rfambro2,2021-01-10T20:58:31Z,- rfambro2 assigned to issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 12:58 PM PST -rfambro2,2021-01-10T21:09:14Z,- rfambro2 unassigned from issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 01:09 PM PST -rfambro2,2021-01-17T16:33:55Z,- rfambro2 commented on issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-761840267) at 2021-01-17 08:33 AM PST -rh5140,2020-12-30T04:59:53Z,- rh5140 assigned to issue: [897](https://github.com/hackforla/website/issues/897) at 2020-12-29 08:59 PM PST -rh5140,2021-01-03T19:52:18Z,- rh5140 assigned to issue: [902](https://github.com/hackforla/website/issues/902#issuecomment-753657049) at 2021-01-03 11:52 AM PST -rh5140,2021-01-03T21:09:08Z,- rh5140 assigned to issue: [909](https://github.com/hackforla/website/issues/909) at 2021-01-03 01:09 PM PST -rh5140,2021-01-04T06:10:53Z,- rh5140 opened pull request: [914](https://github.com/hackforla/website/pull/914) at 2021-01-03 10:10 PM PST -rh5140,2021-01-04T06:11:05Z,- rh5140 pull request merged: [914](https://github.com/hackforla/website/pull/914#event-4163467949) at 2021-01-03 10:11 PM PST -rh5140,2021-01-04T08:01:25Z,- rh5140 commented on issue: [909](https://github.com/hackforla/website/issues/909#issuecomment-753821262) at 2021-01-04 12:01 AM PST -rh5140,2021-01-04T19:08:33Z,- rh5140 commented on issue: [909](https://github.com/hackforla/website/issues/909#issuecomment-754159529) at 2021-01-04 11:08 AM PST -rh5140,2021-01-04T19:08:33Z,- rh5140 closed issue as completed: [909](https://github.com/hackforla/website/issues/909#event-4166308727) at 2021-01-04 11:08 AM PST -rh5140,2021-01-06T03:30:33Z,- rh5140 commented on issue: [897](https://github.com/hackforla/website/issues/897#issuecomment-755054790) at 2021-01-05 07:30 PM PST -rh5140,2021-01-06T03:30:33Z,- rh5140 closed issue as completed: [897](https://github.com/hackforla/website/issues/897#event-4173194387) at 2021-01-05 07:30 PM PST -rh5140,2021-01-06T04:11:28Z,- rh5140 assigned to issue: [908](https://github.com/hackforla/website/issues/908) at 2021-01-05 08:11 PM PST -rh5140,2021-01-06T04:12:27Z,- rh5140 assigned to issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:12 PM PST -rh5140,2021-01-06T04:28:38Z,- rh5140 unassigned from issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:28 PM PST -rh5140,2021-01-10T20:11:46Z,- rh5140 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757536164) at 2021-01-10 12:11 PM PST -rh5140,2021-01-10T21:00:57Z,- rh5140 opened pull request: [926](https://github.com/hackforla/website/pull/926) at 2021-01-10 01:00 PM PST -rh5140,2021-01-10T21:01:47Z,- rh5140 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757543474) at 2021-01-10 01:01 PM PST -rh5140,2021-01-12T04:31:57Z,- rh5140 pull request merged: [926](https://github.com/hackforla/website/pull/926#event-4193938849) at 2021-01-11 08:31 PM PST -rh5140,2021-01-13T05:22:56Z,- rh5140 assigned to issue: [936](https://github.com/hackforla/website/issues/936) at 2021-01-12 09:22 PM PST -rh5140,2021-01-17T00:49:46Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-761707019) at 2021-01-16 04:49 PM PST -rh5140,2021-01-18T09:46:02Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-762125159) at 2021-01-18 01:46 AM PST -rh5140,2021-01-31T23:30:38Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-770471464) at 2021-01-31 03:30 PM PST -rh5140,2021-02-06T20:29:09Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-06 12:29 PM PST -rh5140,2021-02-07T18:50:36Z,- rh5140 unassigned from issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-07 10:50 AM PST -richardmundyiii,4170,SKILLS ISSUE -richardmundyiii,2023-03-14T03:23:11Z,- richardmundyiii opened issue: [4170](https://github.com/hackforla/website/issues/4170) at 2023-03-13 08:23 PM PDT -richardmundyiii,2023-03-14T03:31:19Z,- richardmundyiii assigned to issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1467293481) at 2023-03-13 08:31 PM PDT -richardmundyiii,2023-03-14T04:35:17Z,- richardmundyiii assigned to issue: [4014](https://github.com/hackforla/website/issues/4014) at 2023-03-13 09:35 PM PDT -richardmundyiii,2023-03-14T04:36:28Z,- richardmundyiii commented on issue: [4014](https://github.com/hackforla/website/issues/4014#issuecomment-1467342600) at 2023-03-13 09:36 PM PDT -richardmundyiii,2023-03-14T05:24:02Z,- richardmundyiii opened pull request: [4175](https://github.com/hackforla/website/pull/4175) at 2023-03-13 10:24 PM PDT -richardmundyiii,2023-03-14T05:29:26Z,- richardmundyiii commented on issue: [4014](https://github.com/hackforla/website/issues/4014#issuecomment-1467390477) at 2023-03-13 10:29 PM PDT -richardmundyiii,2023-03-14T13:21:23Z,- richardmundyiii assigned to issue: [4013](https://github.com/hackforla/website/issues/4013) at 2023-03-14 06:21 AM PDT -richardmundyiii,2023-03-14T13:23:23Z,- richardmundyiii commented on issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1468096796) at 2023-03-14 06:23 AM PDT -richardmundyiii,2023-03-14T13:36:39Z,- richardmundyiii opened pull request: [4176](https://github.com/hackforla/website/pull/4176) at 2023-03-14 06:36 AM PDT -richardmundyiii,2023-03-15T05:27:05Z,- richardmundyiii pull request merged: [4175](https://github.com/hackforla/website/pull/4175#event-8751179922) at 2023-03-14 10:27 PM PDT -richardmundyiii,2023-03-17T00:45:08Z,- richardmundyiii pull request merged: [4176](https://github.com/hackforla/website/pull/4176#event-8773226893) at 2023-03-16 05:45 PM PDT -richardmundyiii,2023-03-17T03:45:32Z,- richardmundyiii assigned to issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1442319971) at 2023-03-16 08:45 PM PDT -richardmundyiii,2023-03-17T03:48:45Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1473083483) at 2023-03-16 08:48 PM PDT -richardmundyiii,2023-03-17T04:50:34Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1473125989) at 2023-03-16 09:50 PM PDT -richardmundyiii,2023-03-17T05:10:47Z,- richardmundyiii commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1473140576) at 2023-03-16 10:10 PM PDT -richardmundyiii,2023-03-17T05:41:24Z,- richardmundyiii submitted pull request review: [4199](https://github.com/hackforla/website/pull/4199#pullrequestreview-1345305659) at 2023-03-16 10:41 PM PDT -richardmundyiii,2023-03-17T05:46:16Z,- richardmundyiii commented on pull request: [4198](https://github.com/hackforla/website/pull/4198#issuecomment-1473166894) at 2023-03-16 10:46 PM PDT -richardmundyiii,2023-03-17T06:06:27Z,- richardmundyiii submitted pull request review: [4198](https://github.com/hackforla/website/pull/4198#pullrequestreview-1345328735) at 2023-03-16 11:06 PM PDT -richardmundyiii,2023-03-18T23:24:23Z,- richardmundyiii commented on pull request: [3631](https://github.com/hackforla/website/pull/3631#issuecomment-1475029296) at 2023-03-18 04:24 PM PDT -richardmundyiii,2023-03-18T23:39:47Z,- richardmundyiii submitted pull request review: [3631](https://github.com/hackforla/website/pull/3631#pullrequestreview-1347313443) at 2023-03-18 04:39 PM PDT -richardmundyiii,2023-03-18T23:48:23Z,- richardmundyiii submitted pull request review: [3807](https://github.com/hackforla/website/pull/3807#pullrequestreview-1347316113) at 2023-03-18 04:48 PM PDT -richardmundyiii,2023-03-18T23:52:29Z,- richardmundyiii commented on pull request: [4209](https://github.com/hackforla/website/pull/4209#issuecomment-1475035901) at 2023-03-18 04:52 PM PDT -richardmundyiii,2023-03-18T23:58:45Z,- richardmundyiii submitted pull request review: [4209](https://github.com/hackforla/website/pull/4209#pullrequestreview-1347322450) at 2023-03-18 04:58 PM PDT -richardmundyiii,2023-03-19T00:01:37Z,- richardmundyiii commented on pull request: [4207](https://github.com/hackforla/website/pull/4207#issuecomment-1475038306) at 2023-03-18 05:01 PM PDT -richardmundyiii,2023-03-19T00:04:48Z,- richardmundyiii submitted pull request review: [4207](https://github.com/hackforla/website/pull/4207#pullrequestreview-1347323810) at 2023-03-18 05:04 PM PDT -richardmundyiii,2023-03-19T18:42:04Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1475357421) at 2023-03-19 11:42 AM PDT -richardmundyiii,2023-03-19T18:42:04Z,- richardmundyiii closed issue as completed: [4033](https://github.com/hackforla/website/issues/4033#event-8788437005) at 2023-03-19 11:42 AM PDT -richardmundyiii,2023-03-19T19:04:41Z,- richardmundyiii assigned to issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1457317410) at 2023-03-19 12:04 PM PDT -richardmundyiii,2023-03-19T19:05:07Z,- richardmundyiii commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475363859) at 2023-03-19 12:05 PM PDT -richardmundyiii,2023-03-20T00:01:33Z,- richardmundyiii commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475443596) at 2023-03-19 05:01 PM PDT -richardmundyiii,2023-03-23T07:43:28Z,- richardmundyiii opened pull request: [4259](https://github.com/hackforla/website/pull/4259) at 2023-03-23 12:43 AM PDT -richardmundyiii,2023-03-25T19:43:00Z,- richardmundyiii commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1483906498) at 2023-03-25 12:43 PM PDT -richardmundyiii,2023-03-26T18:18:24Z,- richardmundyiii commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1484177895) at 2023-03-26 11:18 AM PDT -richardmundyiii,2023-03-26T21:14:52Z,- richardmundyiii pull request merged: [4259](https://github.com/hackforla/website/pull/4259#event-8848133863) at 2023-03-26 02:14 PM PDT -richardmundyiii,2023-03-28T20:20:07Z,- richardmundyiii assigned to issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1482089887) at 2023-03-28 01:20 PM PDT -richardmundyiii,2023-03-28T20:21:13Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1487543430) at 2023-03-28 01:21 PM PDT -richardmundyiii,2023-04-08T20:18:42Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1500970376) at 2023-04-08 01:18 PM PDT -richardmundyiii,2023-04-08T20:20:41Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1500970711) at 2023-04-08 01:20 PM PDT -richardmundyiii,2023-04-12T05:53:18Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1504696228) at 2023-04-11 10:53 PM PDT -richardmundyiii,2023-05-15T03:10:48Z,- richardmundyiii unassigned from issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1547131193) at 2023-05-14 08:10 PM PDT -Richey24,3121,SKILLS ISSUE -Richey24,2022-05-11T03:16:49Z,- Richey24 opened issue: [3121](https://github.com/hackforla/website/issues/3121) at 2022-05-10 08:16 PM PDT -Richey24,2022-05-11T03:20:00Z,- Richey24 assigned to issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1123135963) at 2022-05-10 08:20 PM PDT -riddle015,2701,SKILLS ISSUE -riddle015,2022-01-19T03:56:10Z,- riddle015 opened issue: [2701](https://github.com/hackforla/website/issues/2701) at 2022-01-18 07:56 PM PST -riddle015,2022-01-19T04:03:24Z,- riddle015 assigned to issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1016056363) at 2022-01-18 08:03 PM PST -riddle015,2022-01-19T07:05:11Z,- riddle015 assigned to issue: [1564](https://github.com/hackforla/website/issues/1564) at 2022-01-18 11:05 PM PST -riddle015,2022-01-19T07:10:17Z,- riddle015 commented on issue: [1564](https://github.com/hackforla/website/issues/1564#issuecomment-1016146546) at 2022-01-18 11:10 PM PST -riddle015,2022-01-24T01:05:05Z,- riddle015 opened pull request: [2714](https://github.com/hackforla/website/pull/2714) at 2022-01-23 05:05 PM PST -riddle015,2022-01-24T01:23:02Z,- riddle015 assigned to issue: [2238](https://github.com/hackforla/website/issues/2238) at 2022-01-23 05:23 PM PST -riddle015,2022-01-27T23:23:21Z,- riddle015 pull request merged: [2714](https://github.com/hackforla/website/pull/2714#event-5967346978) at 2022-01-27 03:23 PM PST -riddle015,2022-02-02T15:01:31Z,- riddle015 commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1028028791) at 2022-02-02 07:01 AM PST -riddle015,2022-02-02T15:08:05Z,- riddle015 commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1028035551) at 2022-02-02 07:08 AM PST -riddle015,2022-02-20T20:00:31Z,- riddle015 opened issue: [2806](https://github.com/hackforla/website/issues/2806) at 2022-02-20 12:00 PM PST -riddle015,2022-03-13T17:22:49Z,- riddle015 commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1066145718) at 2022-03-13 10:22 AM PDT -riddle015,2022-03-13T17:23:40Z,- riddle015 commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1066145835) at 2022-03-13 10:23 AM PDT -riddle015,2022-03-13T17:30:09Z,- riddle015 commented on pull request: [2973](https://github.com/hackforla/website/pull/2973#issuecomment-1066146856) at 2022-03-13 10:30 AM PDT -riddle015,2022-03-20T22:26:19Z,- riddle015 opened pull request: [2995](https://github.com/hackforla/website/pull/2995) at 2022-03-20 03:26 PM PDT -riddle015,2022-03-21T07:48:14Z,- riddle015 pull request merged: [2995](https://github.com/hackforla/website/pull/2995#event-6273326509) at 2022-03-21 12:48 AM PDT -riddle015,2022-03-27T17:19:44Z,- riddle015 closed issue by PR 3961: [2806](https://github.com/hackforla/website/issues/2806#event-6313998924) at 2022-03-27 10:19 AM PDT -riddle015,2022-04-17T20:33:18Z,- riddle015 assigned to issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1100208451) at 2022-04-17 01:33 PM PDT -riddle015,2022-04-20T19:46:54Z,- riddle015 unassigned from issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104392914) at 2022-04-20 12:46 PM PDT -riddle015,2022-05-13T05:16:04Z,- riddle015 assigned to issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1075792069) at 2022-05-12 10:16 PM PDT -riddle015,2022-05-29T17:28:48Z,- riddle015 commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1140492052) at 2022-05-29 10:28 AM PDT -riddle015,2022-06-12T05:58:11Z,- riddle015 opened pull request: [3237](https://github.com/hackforla/website/pull/3237) at 2022-06-11 10:58 PM PDT -riddle015,2022-06-12T06:06:07Z,- riddle015 commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1153080649) at 2022-06-11 11:06 PM PDT -riddle015,2022-06-15T20:37:44Z,- riddle015 pull request merged: [3237](https://github.com/hackforla/website/pull/3237#event-6815991591) at 2022-06-15 01:37 PM PDT -riddle015,2022-06-26T17:28:29Z,- riddle015 commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166595198) at 2022-06-26 10:28 AM PDT -riddle015,2022-06-26T17:58:45Z,- riddle015 opened issue: [3305](https://github.com/hackforla/website/issues/3305) at 2022-06-26 10:58 AM PDT -riddle015,2022-06-26T18:53:54Z,- riddle015 opened issue: [3311](https://github.com/hackforla/website/issues/3311) at 2022-06-26 11:53 AM PDT -riddle015,2022-08-21T17:13:03Z,- riddle015 assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-997282293) at 2022-08-21 10:13 AM PDT -riddle015,2022-10-02T18:47:22Z,- riddle015 unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1261125508) at 2022-10-02 11:47 AM PDT -Ris345,4997,SKILLS ISSUE -Ris345,2023-07-18T02:34:04Z,- Ris345 opened issue: [4997](https://github.com/hackforla/website/issues/4997) at 2023-07-17 07:34 PM PDT -Ris345,2023-07-18T02:34:30Z,- Ris345 assigned to issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1639188615) at 2023-07-17 07:34 PM PDT -Ris345,2023-07-21T16:58:41Z,- Ris345 assigned to issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1643691982) at 2023-07-21 09:58 AM PDT -Ris345,2023-07-21T17:00:11Z,- Ris345 commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1645996006) at 2023-07-21 10:00 AM PDT -Ris345,2023-07-22T00:12:33Z,- Ris345 opened pull request: [5047](https://github.com/hackforla/website/pull/5047) at 2023-07-21 05:12 PM PDT -Ris345,2023-07-22T11:58:51Z,- Ris345 unassigned from issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:58 AM PDT -Ris345,2023-07-22T12:19:14Z,- Ris345 pull request closed w/o merging: [5047](https://github.com/hackforla/website/pull/5047#event-9891035205) at 2023-07-22 05:19 AM PDT -Ris345,2023-07-22T15:11:15Z,- Ris345 commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646604195) at 2023-07-22 08:11 AM PDT -Ris345,2023-07-22T16:05:54Z,- Ris345 assigned to issue: [5036](https://github.com/hackforla/website/issues/5036) at 2023-07-22 09:05 AM PDT -Ris345,2023-07-22T16:06:46Z,- Ris345 commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-22 09:06 AM PDT -Ris345,2023-07-22T19:00:52Z,- Ris345 opened pull request: [5050](https://github.com/hackforla/website/pull/5050) at 2023-07-22 12:00 PM PDT -Ris345,2023-07-23T17:10:56Z,- Ris345 pull request closed w/o merging: [5050](https://github.com/hackforla/website/pull/5050#event-9893137292) at 2023-07-23 10:10 AM PDT -Ris345,2023-07-23T17:16:15Z,- Ris345 unassigned from issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-23 10:16 AM PDT -Ris345,2023-07-26T12:06:53Z,- Ris345 assigned to issue: [4917](https://github.com/hackforla/website/issues/4917) at 2023-07-26 05:06 AM PDT -Ris345,2023-07-26T12:09:04Z,- Ris345 commented on issue: [4917](https://github.com/hackforla/website/issues/4917#issuecomment-1651680153) at 2023-07-26 05:09 AM PDT -Ris345,2023-07-26T13:11:16Z,- Ris345 opened pull request: [5095](https://github.com/hackforla/website/pull/5095) at 2023-07-26 06:11 AM PDT -Ris345,2023-07-27T02:08:52Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1652808632) at 2023-07-26 07:08 PM PDT -Ris345,2023-07-28T22:56:27Z,- Ris345 assigned to issue: [4812](https://github.com/hackforla/website/issues/4812) at 2023-07-28 03:56 PM PDT -Ris345,2023-07-28T23:46:04Z,- Ris345 unassigned from issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1656418240) at 2023-07-28 04:46 PM PDT -Ris345,2023-07-30T12:20:25Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657125657) at 2023-07-30 05:20 AM PDT -Ris345,2023-07-31T00:22:40Z,- Ris345 pull request merged: [5095](https://github.com/hackforla/website/pull/5095#event-9957754558) at 2023-07-30 05:22 PM PDT -Ris345,2023-07-31T00:56:47Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657339471) at 2023-07-30 05:56 PM PDT -Ris345,2023-07-31T01:31:09Z,- Ris345 assigned to issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1656418240) at 2023-07-30 06:31 PM PDT -Ris345,2023-07-31T01:36:31Z,- Ris345 commented on issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1657368117) at 2023-07-30 06:36 PM PDT -Ris345,2023-07-31T16:15:35Z,- Ris345 opened pull request: [5119](https://github.com/hackforla/website/pull/5119) at 2023-07-31 09:15 AM PDT -Ris345,2023-07-31T20:50:21Z,- Ris345 commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659142534) at 2023-07-31 01:50 PM PDT -Ris345,2023-08-01T21:04:26Z,- Ris345 commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1661091341) at 2023-08-01 02:04 PM PDT -Ris345,2023-08-04T02:26:48Z,- Ris345 pull request merged: [5119](https://github.com/hackforla/website/pull/5119#event-10004678373) at 2023-08-03 07:26 PM PDT -Ris345,2023-08-04T02:36:46Z,- Ris345 commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1664890835) at 2023-08-03 07:36 PM PDT -Ris345,2023-08-06T04:19:41Z,- Ris345 assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-08-05 09:19 PM PDT -Ris345,2023-08-06T04:20:11Z,- Ris345 unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-08-05 09:20 PM PDT -Ris345,2023-08-06T04:25:06Z,- Ris345 assigned to issue: [4786](https://github.com/hackforla/website/issues/4786) at 2023-08-05 09:25 PM PDT -Ris345,2023-08-06T04:28:12Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1666709619) at 2023-08-05 09:28 PM PDT -Ris345,2023-08-09T01:53:22Z,- Ris345 commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1670539995) at 2023-08-08 06:53 PM PDT -Ris345,2023-08-09T03:03:24Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1670584024) at 2023-08-08 08:03 PM PDT -Ris345,2023-08-09T21:27:10Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672174421) at 2023-08-09 02:27 PM PDT -Ris345,2023-08-10T02:47:48Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672470973) at 2023-08-09 07:47 PM PDT -Ris345,2023-08-10T22:52:05Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1674024288) at 2023-08-10 03:52 PM PDT -Ris345,2023-08-13T19:56:41Z,- Ris345 assigned to issue: [1838](https://github.com/hackforla/website/issues/1838) at 2023-08-13 12:56 PM PDT -Ris345,2023-08-13T20:10:01Z,- Ris345 unassigned from issue: [1838](https://github.com/hackforla/website/issues/1838) at 2023-08-13 01:10 PM PDT -Ris345,2023-08-22T00:22:40Z,- Ris345 assigned to issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1652978683) at 2023-08-21 05:22 PM PDT -Ris345,2023-08-22T00:23:57Z,- Ris345 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1687234213) at 2023-08-21 05:23 PM PDT -Ris345,2023-08-25T18:50:02Z,- Ris345 unassigned from issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 11:50 AM PDT -Ris345,2023-08-26T22:50:48Z,- Ris345 assigned to issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1240328862) at 2023-08-26 03:50 PM PDT -Ris345,2023-08-26T22:56:52Z,- Ris345 commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2023-08-26 03:56 PM PDT -Ris345,2023-09-07T00:07:56Z,- Ris345 unassigned from issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2023-09-06 05:07 PM PDT -RobenusW,3190,SKILLS ISSUE -RobenusW,2022-06-01T03:58:34Z,- RobenusW opened issue: [3190](https://github.com/hackforla/website/issues/3190) at 2022-05-31 08:58 PM PDT -RobenusW,2022-06-01T04:22:05Z,- RobenusW assigned to issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1143090157) at 2022-05-31 09:22 PM PDT -RobenusW,2022-06-20T20:13:32Z,- RobenusW commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1160812716) at 2022-06-20 01:13 PM PDT -RobenusW,2022-06-23T21:06:20Z,- RobenusW commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1164873047) at 2022-06-23 02:06 PM PDT -RobenusW,2022-06-26T17:11:44Z,- RobenusW assigned to issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1047129584) at 2022-06-26 10:11 AM PDT -RobenusW,2022-06-26T17:30:29Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1166595665) at 2022-06-26 10:30 AM PDT -RobenusW,2022-06-26T17:45:12Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1166599006) at 2022-06-26 10:45 AM PDT -RobenusW,2022-06-26T18:54:07Z,- RobenusW opened issue: [3313](https://github.com/hackforla/website/issues/3313) at 2022-06-26 11:54 AM PDT -RobenusW,2022-07-11T23:09:39Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1181034076) at 2022-07-11 04:09 PM PDT -RobenusW,2022-07-11T23:11:45Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1181038010) at 2022-07-11 04:11 PM PDT -RobenusW,2022-07-13T01:03:56Z,- RobenusW opened pull request: [3362](https://github.com/hackforla/website/pull/3362) at 2022-07-12 06:03 PM PDT -RobenusW,2022-07-13T01:08:57Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1182650589) at 2022-07-12 06:08 PM PDT -RobenusW,2022-07-14T02:06:36Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1183881996) at 2022-07-13 07:06 PM PDT -RobenusW,2022-07-14T02:07:01Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1183883816) at 2022-07-13 07:07 PM PDT -RobenusW,2022-07-16T05:21:50Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186093061) at 2022-07-15 10:21 PM PDT -RobenusW,2022-07-16T05:39:40Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186095013) at 2022-07-15 10:39 PM PDT -RobenusW,2022-07-18T04:43:52Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186763938) at 2022-07-17 09:43 PM PDT -RobenusW,2022-07-20T02:49:54Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1189747172) at 2022-07-19 07:49 PM PDT -RobenusW,2022-07-23T04:26:48Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193057018) at 2022-07-22 09:26 PM PDT -RobenusW,2022-07-24T08:20:56Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193270693) at 2022-07-24 01:20 AM PDT -RobenusW,2022-07-25T04:33:21Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193566251) at 2022-07-24 09:33 PM PDT -RobenusW,2022-07-25T23:49:33Z,- RobenusW pull request closed w/o merging: [3362](https://github.com/hackforla/website/pull/3362#event-7060533483) at 2022-07-25 04:49 PM PDT -RobenusW,2022-07-26T00:52:56Z,- RobenusW opened pull request: [3428](https://github.com/hackforla/website/pull/3428) at 2022-07-25 05:52 PM PDT -RobenusW,2022-08-01T04:25:23Z,- RobenusW closed issue as completed: [3190](https://github.com/hackforla/website/issues/3190#event-7097910342) at 2022-07-31 09:25 PM PDT -RobenusW,2022-08-19T18:47:03Z,- RobenusW pull request closed w/o merging: [3428](https://github.com/hackforla/website/pull/3428#event-7224364319) at 2022-08-19 11:47 AM PDT -RobenusW,2023-03-23T01:08:24Z,- RobenusW unassigned from issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1421904264) at 2023-03-22 06:08 PM PDT -robert-f-ruff,6952,SKILLS ISSUE -robert-f-ruff,2024-06-04T03:10:39Z,- robert-f-ruff opened issue: [6952](https://github.com/hackforla/website/issues/6952) at 2024-06-03 08:10 PM PDT -robert-f-ruff,2024-06-04T03:10:54Z,- robert-f-ruff assigned to issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2146486201) at 2024-06-03 08:10 PM PDT -robert-g-rodriguez,5214,SKILLS ISSUE -robert-g-rodriguez,2023-08-15T02:58:06Z,- robert-g-rodriguez opened issue: [5214](https://github.com/hackforla/website/issues/5214) at 2023-08-14 07:58 PM PDT -robert-g-rodriguez,2023-08-15T02:58:07Z,- robert-g-rodriguez assigned to issue: [5214](https://github.com/hackforla/website/issues/5214) at 2023-08-14 07:58 PM PDT -robert-loo,4164,SKILLS ISSUE -robert-loo,2023-03-14T03:05:02Z,- robert-loo opened issue: [4164](https://github.com/hackforla/website/issues/4164) at 2023-03-13 08:05 PM PDT -robert-loo,2023-03-14T03:19:04Z,- robert-loo assigned to issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1467281966) at 2023-03-13 08:19 PM PDT -robert-loo,2023-03-27T05:06:18Z,- robert-loo commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1484500883) at 2023-03-26 10:06 PM PDT -RobertaFricker,2021-03-24T03:13:02Z,- RobertaFricker assigned to issue: [1049](https://github.com/hackforla/website/issues/1049) at 2021-03-23 08:13 PM PDT -RobertaFricker,2021-04-07T01:33:11Z,- RobertaFricker opened pull request: [1365](https://github.com/hackforla/website/pull/1365) at 2021-04-06 06:33 PM PDT -RobertaFricker,2021-04-07T19:23:19Z,- RobertaFricker assigned to issue: [1048](https://github.com/hackforla/website/issues/1048#issuecomment-812906602) at 2021-04-07 12:23 PM PDT -RobertaFricker,2021-04-07T22:42:43Z,- RobertaFricker assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:42 PM PDT -RobertaFricker,2021-04-07T22:43:04Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-07T22:43:04Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-07T22:43:27Z,- RobertaFricker assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-08T03:55:29Z,- RobertaFricker pull request merged: [1365](https://github.com/hackforla/website/pull/1365#event-4566181941) at 2021-04-07 08:55 PM PDT -RobertaFricker,2021-04-08T23:59:28Z,- RobertaFricker assigned to issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-08 04:59 PM PDT -RobertaFricker,2021-04-09T03:25:24Z,- RobertaFricker assigned to issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-815405373) at 2021-04-08 08:25 PM PDT -RobertaFricker,2021-04-09T03:26:54Z,- RobertaFricker commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-816374832) at 2021-04-08 08:26 PM PDT -RobertaFricker,2021-04-09T03:58:13Z,- RobertaFricker opened issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-08 08:58 PM PDT -RobertaFricker,2021-04-10T21:08:23Z,- RobertaFricker opened issue: [1390](https://github.com/hackforla/website/issues/1390) at 2021-04-10 02:08 PM PDT -RobertaFricker,2021-04-11T17:57:38Z,- RobertaFricker assigned to issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-11 10:57 AM PDT -RobertaFricker,2021-04-11T18:24:27Z,- RobertaFricker unassigned from issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-11 11:24 AM PDT -RobertaFricker,2021-04-11T18:24:54Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-11 11:24 AM PDT -RobertaFricker,2021-04-11T18:55:11Z,- RobertaFricker opened pull request: [1396](https://github.com/hackforla/website/pull/1396) at 2021-04-11 11:55 AM PDT -RobertaFricker,2021-04-12T19:06:12Z,- RobertaFricker commented on pull request: [1396](https://github.com/hackforla/website/pull/1396#issuecomment-818061508) at 2021-04-12 12:06 PM PDT -RobertaFricker,2021-04-12T19:09:10Z,- RobertaFricker commented on issue: [1345](https://github.com/hackforla/website/issues/1345#issuecomment-818063282) at 2021-04-12 12:09 PM PDT -RobertaFricker,2021-04-12T19:11:09Z,- RobertaFricker commented on pull request: [1396](https://github.com/hackforla/website/pull/1396#issuecomment-818064471) at 2021-04-12 12:11 PM PDT -RobertaFricker,2021-04-12T20:22:08Z,- RobertaFricker commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818165420) at 2021-04-12 01:22 PM PDT -RobertaFricker,2021-04-12T20:23:39Z,- RobertaFricker commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-818168454) at 2021-04-12 01:23 PM PDT -RobertaFricker,2021-04-12T20:25:17Z,- RobertaFricker unassigned from issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-12 01:25 PM PDT -RobertaFricker,2021-04-12T20:26:36Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818165420) at 2021-04-12 01:26 PM PDT -RobertaFricker,2021-04-12T20:27:06Z,- RobertaFricker assigned to issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-12 01:27 PM PDT -RobertaFricker,2021-04-12T22:25:15Z,- RobertaFricker closed issue by PR 1400: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:25 PM PDT -RobertaFricker,2021-04-12T22:25:18Z,- RobertaFricker reopened issue: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:25 PM PDT -RobertaFricker,2021-04-12T22:26:11Z,- RobertaFricker assigned to issue: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:26 PM PDT -RobertaFricker,2021-04-13T00:27:01Z,- RobertaFricker opened pull request: [1400](https://github.com/hackforla/website/pull/1400) at 2021-04-12 05:27 PM PDT -RobertaFricker,2021-04-13T02:21:11Z,- RobertaFricker pull request merged: [1396](https://github.com/hackforla/website/pull/1396#event-4585419383) at 2021-04-12 07:21 PM PDT -RobertaFricker,2021-04-13T18:04:01Z,- RobertaFricker pull request merged: [1400](https://github.com/hackforla/website/pull/1400#event-4589549467) at 2021-04-13 11:04 AM PDT -RobertaFricker,2021-04-13T19:07:25Z,- RobertaFricker assigned to issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-817250461) at 2021-04-13 12:07 PM PDT -RobertaFricker,2021-04-13T19:36:37Z,- RobertaFricker commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-819001504) at 2021-04-13 12:36 PM PDT -RobertaFricker,2021-04-13T19:41:32Z,- RobertaFricker commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-819004256) at 2021-04-13 12:41 PM PDT -RobertaFricker,2021-04-13T19:43:20Z,- RobertaFricker commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-819005341) at 2021-04-13 12:43 PM PDT -RobertaFricker,2021-04-13T19:51:17Z,- RobertaFricker opened pull request: [1403](https://github.com/hackforla/website/pull/1403) at 2021-04-13 12:51 PM PDT -RobertaFricker,2021-04-13T20:07:32Z,- RobertaFricker closed issue by PR 1541: [1346](https://github.com/hackforla/website/issues/1346#event-4590048717) at 2021-04-13 01:07 PM PDT -RobertaFricker,2021-04-13T20:08:55Z,- RobertaFricker closed issue by PR 1406: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:08 PM PDT -RobertaFricker,2021-04-13T20:10:51Z,- RobertaFricker closed issue as completed: [1196](https://github.com/hackforla/website/issues/1196#event-4590061962) at 2021-04-13 01:10 PM PDT -RobertaFricker,2021-04-13T20:13:57Z,- RobertaFricker assigned to issue: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:13 PM PDT -RobertaFricker,2021-04-14T00:19:18Z,- RobertaFricker commented on pull request: [1400](https://github.com/hackforla/website/pull/1400#issuecomment-819132146) at 2021-04-13 05:19 PM PDT -RobertaFricker,2021-04-14T18:48:35Z,- RobertaFricker commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819751471) at 2021-04-14 11:48 AM PDT -RobertaFricker,2021-04-14T21:57:15Z,- RobertaFricker pull request merged: [1403](https://github.com/hackforla/website/pull/1403#event-4596031309) at 2021-04-14 02:57 PM PDT -RobertaFricker,2021-04-14T22:43:42Z,- RobertaFricker commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819896428) at 2021-04-14 03:43 PM PDT -RobertaFricker,2021-04-15T02:00:38Z,- RobertaFricker opened pull request: [1406](https://github.com/hackforla/website/pull/1406) at 2021-04-14 07:00 PM PDT -RobertaFricker,2021-04-15T04:14:18Z,- RobertaFricker opened issue: [1407](https://github.com/hackforla/website/issues/1407) at 2021-04-14 09:14 PM PDT -RobertaFricker,2021-04-18T15:59:36Z,- RobertaFricker pull request merged: [1406](https://github.com/hackforla/website/pull/1406#event-4609232940) at 2021-04-18 08:59 AM PDT -RobertaFricker,2021-04-18T18:12:00Z,- RobertaFricker assigned to issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818381680) at 2021-04-18 11:12 AM PDT -RobertaFricker,2021-04-20T23:55:37Z,- RobertaFricker assigned to issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816128653) at 2021-04-20 04:55 PM PDT -RobertaFricker,2021-04-21T00:22:45Z,- RobertaFricker commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-823686133) at 2021-04-20 05:22 PM PDT -RobertaFricker,2021-04-21T20:30:02Z,- RobertaFricker opened pull request: [1429](https://github.com/hackforla/website/pull/1429) at 2021-04-21 01:30 PM PDT -RobertaFricker,2021-04-22T01:23:49Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-21 06:23 PM PDT -RobertaFricker,2021-04-22T01:23:49Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-21 06:23 PM PDT -RobertaFricker,2021-04-22T05:33:33Z,- RobertaFricker commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-824551336) at 2021-04-21 10:33 PM PDT -RobertaFricker,2021-04-22T05:41:36Z,- RobertaFricker assigned to issue: [1414](https://github.com/hackforla/website/issues/1414) at 2021-04-21 10:41 PM PDT -RobertaFricker,2021-04-22T16:13:47Z,- RobertaFricker pull request merged: [1429](https://github.com/hackforla/website/pull/1429#event-4631885608) at 2021-04-22 09:13 AM PDT -RobertaFricker,2021-04-22T18:26:44Z,- RobertaFricker commented on issue: [1414](https://github.com/hackforla/website/issues/1414#issuecomment-825084794) at 2021-04-22 11:26 AM PDT -RobertaFricker,2021-04-22T18:35:14Z,- RobertaFricker opened pull request: [1433](https://github.com/hackforla/website/pull/1433) at 2021-04-22 11:35 AM PDT -RobertaFricker,2021-04-22T19:35:44Z,- RobertaFricker opened issue: [1434](https://github.com/hackforla/website/issues/1434) at 2021-04-22 12:35 PM PDT -RobertaFricker,2021-04-22T19:36:03Z,- RobertaFricker assigned to issue: [1434](https://github.com/hackforla/website/issues/1434) at 2021-04-22 12:36 PM PDT -RobertaFricker,2021-04-22T19:55:54Z,- RobertaFricker opened pull request: [1435](https://github.com/hackforla/website/pull/1435) at 2021-04-22 12:55 PM PDT -RobertaFricker,2021-04-23T03:26:14Z,- RobertaFricker assigned to issue: [1427](https://github.com/hackforla/website/issues/1427) at 2021-04-22 08:26 PM PDT -RobertaFricker,2021-04-23T16:49:57Z,- RobertaFricker pull request merged: [1435](https://github.com/hackforla/website/pull/1435#event-4637920350) at 2021-04-23 09:49 AM PDT -RobertaFricker,2021-04-23T17:49:15Z,- RobertaFricker commented on pull request: [1435](https://github.com/hackforla/website/pull/1435#issuecomment-825819154) at 2021-04-23 10:49 AM PDT -RobertaFricker,2021-04-23T23:30:38Z,- RobertaFricker assigned to issue: [1413](https://github.com/hackforla/website/issues/1413) at 2021-04-23 04:30 PM PDT -RobertaFricker,2021-04-24T01:01:41Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826009106) at 2021-04-23 06:01 PM PDT -RobertaFricker,2021-04-24T02:31:46Z,- RobertaFricker unassigned from issue: [1427](https://github.com/hackforla/website/issues/1427) at 2021-04-23 07:31 PM PDT -RobertaFricker,2021-04-24T02:58:01Z,- RobertaFricker opened issue: [1450](https://github.com/hackforla/website/issues/1450) at 2021-04-23 07:58 PM PDT -RobertaFricker,2021-04-24T02:58:01Z,- RobertaFricker assigned to issue: [1450](https://github.com/hackforla/website/issues/1450) at 2021-04-23 07:58 PM PDT -RobertaFricker,2021-04-24T03:41:39Z,- RobertaFricker opened pull request: [1451](https://github.com/hackforla/website/pull/1451) at 2021-04-23 08:41 PM PDT -RobertaFricker,2021-04-24T18:15:09Z,- RobertaFricker opened issue: [1453](https://github.com/hackforla/website/issues/1453) at 2021-04-24 11:15 AM PDT -RobertaFricker,2021-04-24T18:15:16Z,- RobertaFricker assigned to issue: [1453](https://github.com/hackforla/website/issues/1453) at 2021-04-24 11:15 AM PDT -RobertaFricker,2021-04-24T18:23:24Z,- RobertaFricker opened pull request: [1454](https://github.com/hackforla/website/pull/1454) at 2021-04-24 11:23 AM PDT -RobertaFricker,2021-04-24T19:12:23Z,- RobertaFricker pull request closed w/o merging: [1454](https://github.com/hackforla/website/pull/1454#event-4640280461) at 2021-04-24 12:12 PM PDT -RobertaFricker,2021-04-24T23:30:59Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826166760) at 2021-04-24 04:30 PM PDT -RobertaFricker,2021-04-24T23:45:37Z,- RobertaFricker pull request merged: [1451](https://github.com/hackforla/website/pull/1451#event-4640474106) at 2021-04-24 04:45 PM PDT -RobertaFricker,2021-04-25T00:18:39Z,- RobertaFricker commented on issue: [1450](https://github.com/hackforla/website/issues/1450#issuecomment-826171613) at 2021-04-24 05:18 PM PDT -RobertaFricker,2021-04-25T03:53:13Z,- RobertaFricker commented on pull request: [1454](https://github.com/hackforla/website/pull/1454#issuecomment-826248276) at 2021-04-24 08:53 PM PDT -RobertaFricker,2021-04-27T03:56:42Z,- RobertaFricker assigned to issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-26 08:56 PM PDT -RobertaFricker,2021-04-27T05:53:38Z,- RobertaFricker pull request merged: [1433](https://github.com/hackforla/website/pull/1433#event-4648730051) at 2021-04-26 10:53 PM PDT -RobertaFricker,2021-04-27T19:41:06Z,- RobertaFricker commented on pull request: [1433](https://github.com/hackforla/website/pull/1433#issuecomment-827871145) at 2021-04-27 12:41 PM PDT -RobertaFricker,2021-04-28T02:09:01Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-828086968) at 2021-04-27 07:09 PM PDT -RobertaFricker,2021-04-28T18:44:16Z,- RobertaFricker opened issue: [1489](https://github.com/hackforla/website/issues/1489) at 2021-04-28 11:44 AM PDT -RobertaFricker,2021-04-28T18:44:16Z,- RobertaFricker assigned to issue: [1489](https://github.com/hackforla/website/issues/1489) at 2021-04-28 11:44 AM PDT -RobertaFricker,2021-04-28T19:14:49Z,- RobertaFricker opened pull request: [1490](https://github.com/hackforla/website/pull/1490) at 2021-04-28 12:14 PM PDT -RobertaFricker,2021-04-29T00:15:23Z,- RobertaFricker commented on pull request: [1490](https://github.com/hackforla/website/pull/1490#issuecomment-828860382) at 2021-04-28 05:15 PM PDT -RobertaFricker,2021-04-29T00:17:42Z,- RobertaFricker commented on pull request: [1490](https://github.com/hackforla/website/pull/1490#issuecomment-828861257) at 2021-04-28 05:17 PM PDT -RobertaFricker,2021-04-29T00:33:13Z,- RobertaFricker pull request merged: [1490](https://github.com/hackforla/website/pull/1490#event-4659862324) at 2021-04-28 05:33 PM PDT -RobertaFricker,2021-04-30T01:22:22Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-829732724) at 2021-04-29 06:22 PM PDT -RobertaFricker,2021-04-30T04:39:16Z,- RobertaFricker unassigned from issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-827295185) at 2021-04-29 09:39 PM PDT -RobertaFricker,2021-05-01T00:08:05Z,- RobertaFricker opened pull request: [1496](https://github.com/hackforla/website/pull/1496) at 2021-04-30 05:08 PM PDT -RobertaFricker,2021-05-01T01:42:09Z,- RobertaFricker commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830485310) at 2021-04-30 06:42 PM PDT -RobertaFricker,2021-05-02T16:35:15Z,- RobertaFricker commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830835918) at 2021-05-02 09:35 AM PDT -RobertaFricker,2021-05-04T00:23:13Z,- RobertaFricker commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-831615091) at 2021-05-03 05:23 PM PDT -RobertaFricker,2021-05-04T21:03:03Z,- RobertaFricker pull request merged: [1496](https://github.com/hackforla/website/pull/1496#event-4685676989) at 2021-05-04 02:03 PM PDT -robertestrada,2021-09-23T01:56:28Z,- robertestrada assigned to issue: [2268](https://github.com/hackforla/website/issues/2268) at 2021-09-22 06:56 PM PDT -robertestrada,2021-09-23T17:53:38Z,- robertestrada commented on issue: [2268](https://github.com/hackforla/website/issues/2268#issuecomment-926030357) at 2021-09-23 10:53 AM PDT -robertestrada,2021-09-25T05:25:11Z,- robertestrada opened pull request: [2308](https://github.com/hackforla/website/pull/2308) at 2021-09-24 10:25 PM PDT -robertestrada,2021-09-28T16:49:09Z,- robertestrada commented on pull request: [2308](https://github.com/hackforla/website/pull/2308#issuecomment-929402338) at 2021-09-28 09:49 AM PDT -robertestrada,2021-09-29T17:11:50Z,- robertestrada pull request merged: [2308](https://github.com/hackforla/website/pull/2308#event-5382299953) at 2021-09-29 10:11 AM PDT -robertnjenga,5485,SKILLS ISSUE -robertnjenga,2023-09-12T03:28:55Z,- robertnjenga opened issue: [5485](https://github.com/hackforla/website/issues/5485) at 2023-09-11 08:28 PM PDT -robertnjenga,2023-09-12T03:28:56Z,- robertnjenga assigned to issue: [5485](https://github.com/hackforla/website/issues/5485) at 2023-09-11 08:28 PM PDT -robertnjenga,2023-09-12T17:28:27Z,- robertnjenga assigned to issue: [5378](https://github.com/hackforla/website/issues/5378) at 2023-09-12 10:28 AM PDT -robertnjenga,2023-09-12T18:09:19Z,- robertnjenga commented on issue: [5378](https://github.com/hackforla/website/issues/5378#issuecomment-1716197539) at 2023-09-12 11:09 AM PDT -robertnjenga,2023-09-12T19:14:57Z,- robertnjenga opened pull request: [5510](https://github.com/hackforla/website/pull/5510) at 2023-09-12 12:14 PM PDT -robertnjenga,2023-09-14T15:24:22Z,- robertnjenga commented on issue: [5485](https://github.com/hackforla/website/issues/5485#issuecomment-1719669464) at 2023-09-14 08:24 AM PDT -robertnjenga,2023-09-17T16:01:09Z,- robertnjenga pull request merged: [5510](https://github.com/hackforla/website/pull/5510#event-10391601639) at 2023-09-17 09:01 AM PDT -robertnjenga,2023-09-19T16:35:55Z,- robertnjenga assigned to issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704384569) at 2023-09-19 09:35 AM PDT -robertnjenga,2023-09-19T16:38:29Z,- robertnjenga commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1726056897) at 2023-09-19 09:38 AM PDT -robertnjenga,2023-09-19T19:33:57Z,- robertnjenga opened pull request: [5557](https://github.com/hackforla/website/pull/5557) at 2023-09-19 12:33 PM PDT -robertnjenga,2023-09-19T20:26:46Z,- robertnjenga closed issue as completed: [5485](https://github.com/hackforla/website/issues/5485#event-10415039269) at 2023-09-19 01:26 PM PDT -robertnjenga,2023-09-22T04:45:47Z,- robertnjenga pull request merged: [5557](https://github.com/hackforla/website/pull/5557#event-10442991417) at 2023-09-21 09:45 PM PDT -robertnjenga,2023-09-22T14:55:23Z,- robertnjenga commented on pull request: [5569](https://github.com/hackforla/website/pull/5569#issuecomment-1731563217) at 2023-09-22 07:55 AM PDT -robertnjenga,2023-09-22T15:27:05Z,- robertnjenga submitted pull request review: [5569](https://github.com/hackforla/website/pull/5569#pullrequestreview-1640195643) at 2023-09-22 08:27 AM PDT -robertnjenga,2023-09-22T16:37:27Z,- robertnjenga commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1731720113) at 2023-09-22 09:37 AM PDT -robertnjenga,2023-09-22T16:51:57Z,- robertnjenga submitted pull request review: [5558](https://github.com/hackforla/website/pull/5558#pullrequestreview-1640334833) at 2023-09-22 09:51 AM PDT -robertnjenga,2023-09-24T20:08:18Z,- robertnjenga submitted pull request review: [5569](https://github.com/hackforla/website/pull/5569#pullrequestreview-1641114913) at 2023-09-24 01:08 PM PDT -robertnjenga,2023-09-26T17:49:12Z,- robertnjenga commented on pull request: [5585](https://github.com/hackforla/website/pull/5585#issuecomment-1736010812) at 2023-09-26 10:49 AM PDT -robertnjenga,2023-09-26T18:06:47Z,- robertnjenga submitted pull request review: [5585](https://github.com/hackforla/website/pull/5585#pullrequestreview-1644903232) at 2023-09-26 11:06 AM PDT -robertnjenga,2023-09-26T19:33:16Z,- robertnjenga assigned to issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1701256957) at 2023-09-26 12:33 PM PDT -robertnjenga,2023-09-26T19:33:46Z,- robertnjenga commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1736169022) at 2023-09-26 12:33 PM PDT -robertnjenga,2023-09-26T20:33:42Z,- robertnjenga opened pull request: [5593](https://github.com/hackforla/website/pull/5593) at 2023-09-26 01:33 PM PDT -robertnjenga,2023-09-27T01:27:49Z,- robertnjenga pull request merged: [5593](https://github.com/hackforla/website/pull/5593#event-10481500243) at 2023-09-26 06:27 PM PDT -robertnjenga,2023-09-27T14:05:09Z,- robertnjenga submitted pull request review: [5585](https://github.com/hackforla/website/pull/5585#pullrequestreview-1646677968) at 2023-09-27 07:05 AM PDT -robertnjenga,2023-10-03T17:15:27Z,- robertnjenga commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1745400470) at 2023-10-03 10:15 AM PDT -robertnjenga,2023-10-03T17:43:52Z,- robertnjenga submitted pull request review: [5643](https://github.com/hackforla/website/pull/5643#pullrequestreview-1655793021) at 2023-10-03 10:43 AM PDT -robertnjenga,2023-10-03T18:29:18Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745507273) at 2023-10-03 11:29 AM PDT -robertnjenga,2023-10-03T18:51:48Z,- robertnjenga submitted pull request review: [5640](https://github.com/hackforla/website/pull/5640#pullrequestreview-1655898773) at 2023-10-03 11:51 AM PDT -robertnjenga,2023-10-03T19:24:57Z,- robertnjenga assigned to issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1735043248) at 2023-10-03 12:24 PM PDT -robertnjenga,2023-10-03T19:25:10Z,- robertnjenga commented on issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1745586235) at 2023-10-03 12:25 PM PDT -robertnjenga,2023-10-03T19:57:46Z,- robertnjenga opened pull request: [5658](https://github.com/hackforla/website/pull/5658) at 2023-10-03 12:57 PM PDT -robertnjenga,2023-10-03T23:50:38Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745901452) at 2023-10-03 04:50 PM PDT -robertnjenga,2023-10-04T15:14:25Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1747100095) at 2023-10-04 08:14 AM PDT -robertnjenga,2023-10-07T16:19:20Z,- robertnjenga submitted pull request review: [5672](https://github.com/hackforla/website/pull/5672#pullrequestreview-1663073074) at 2023-10-07 09:19 AM PDT -robertnjenga,2023-10-10T16:10:45Z,- robertnjenga commented on pull request: [5682](https://github.com/hackforla/website/pull/5682#issuecomment-1755769105) at 2023-10-10 09:10 AM PDT -robertnjenga,2023-10-10T16:19:56Z,- robertnjenga submitted pull request review: [5682](https://github.com/hackforla/website/pull/5682#pullrequestreview-1668221499) at 2023-10-10 09:19 AM PDT -robertnjenga,2023-10-11T01:35:34Z,- robertnjenga pull request merged: [5658](https://github.com/hackforla/website/pull/5658#event-10611988446) at 2023-10-10 06:35 PM PDT -robertnjenga,2023-10-12T16:41:25Z,- robertnjenga assigned to issue: [5601](https://github.com/hackforla/website/issues/5601) at 2023-10-12 09:41 AM PDT -robertnjenga,2023-10-12T16:42:43Z,- robertnjenga commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1759981882) at 2023-10-12 09:42 AM PDT -robertnjenga,2023-10-15T17:57:09Z,- robertnjenga commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1763461108) at 2023-10-15 10:57 AM PDT -robertnjenga,2023-10-20T16:44:03Z,- robertnjenga commented on pull request: [5740](https://github.com/hackforla/website/pull/5740#issuecomment-1773063295) at 2023-10-20 09:44 AM PDT -robertnjenga,2023-10-20T16:57:33Z,- robertnjenga submitted pull request review: [5740](https://github.com/hackforla/website/pull/5740#pullrequestreview-1690553064) at 2023-10-20 09:57 AM PDT -robertnjenga,2023-10-29T15:41:19Z,- robertnjenga commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1784147574) at 2023-10-29 08:41 AM PDT -robertnjenga,2023-10-29T15:47:00Z,- robertnjenga submitted pull request review: [5788](https://github.com/hackforla/website/pull/5788#pullrequestreview-1702984798) at 2023-10-29 08:47 AM PDT -robertnjenga,2023-11-09T16:07:25Z,- robertnjenga commented on pull request: [5886](https://github.com/hackforla/website/pull/5886#issuecomment-1804119297) at 2023-11-09 08:07 AM PST -robertnjenga,2023-11-09T16:24:59Z,- robertnjenga submitted pull request review: [5886](https://github.com/hackforla/website/pull/5886#pullrequestreview-1722978792) at 2023-11-09 08:24 AM PST -robertnjenga,2023-11-12T18:40:41Z,- robertnjenga commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1807207059) at 2023-11-12 10:40 AM PST -robertnjenga,2023-11-12T18:58:35Z,- robertnjenga submitted pull request review: [5887](https://github.com/hackforla/website/pull/5887#pullrequestreview-1726307455) at 2023-11-12 10:58 AM PST -robertnjenga,2023-11-14T21:49:13Z,- robertnjenga assigned to issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1806969073) at 2023-11-14 01:49 PM PST -robertnjenga,2023-11-14T21:49:34Z,- robertnjenga commented on issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1811378655) at 2023-11-14 01:49 PM PST -robertnjenga,2023-11-14T22:34:36Z,- robertnjenga opened pull request: [5905](https://github.com/hackforla/website/pull/5905) at 2023-11-14 02:34 PM PST -robertnjenga,2023-11-15T16:12:02Z,- robertnjenga commented on pull request: [5905](https://github.com/hackforla/website/pull/5905#issuecomment-1812832190) at 2023-11-15 08:12 AM PST -robertnjenga,2023-11-15T16:39:15Z,- robertnjenga pull request merged: [5905](https://github.com/hackforla/website/pull/5905#event-10969733425) at 2023-11-15 08:39 AM PST -robertnjenga,2023-11-25T16:53:32Z,- robertnjenga commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1826376141) at 2023-11-25 08:53 AM PST -robertnjenga,2023-11-25T17:22:06Z,- robertnjenga submitted pull request review: [5936](https://github.com/hackforla/website/pull/5936#pullrequestreview-1749219099) at 2023-11-25 09:22 AM PST -robertnjenga,2023-11-25T17:42:06Z,- robertnjenga commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826384937) at 2023-11-25 09:42 AM PST -robertnjenga,2023-11-25T18:18:31Z,- robertnjenga submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749224084) at 2023-11-25 10:18 AM PST -robertnjenga,2023-11-26T00:49:47Z,- robertnjenga submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749249434) at 2023-11-25 04:49 PM PST -robertnjenga,2023-11-29T03:15:17Z,- robertnjenga commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1831146891) at 2023-11-28 07:15 PM PST -robertnjenga,2023-11-29T15:37:05Z,- robertnjenga submitted pull request review: [5941](https://github.com/hackforla/website/pull/5941#pullrequestreview-1755579081) at 2023-11-29 07:37 AM PST -robertnjenga,2024-01-07T19:30:38Z,- robertnjenga commented on pull request: [6073](https://github.com/hackforla/website/pull/6073#issuecomment-1880149475) at 2024-01-07 11:30 AM PST -robertnjenga,2024-01-07T19:45:39Z,- robertnjenga submitted pull request review: [6073](https://github.com/hackforla/website/pull/6073#pullrequestreview-1807861196) at 2024-01-07 11:45 AM PST -robertnjenga,2024-01-07T19:58:19Z,- robertnjenga commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1880155994) at 2024-01-07 11:58 AM PST -robertnjenga,2024-01-07T20:09:47Z,- robertnjenga submitted pull request review: [6072](https://github.com/hackforla/website/pull/6072#pullrequestreview-1807864259) at 2024-01-07 12:09 PM PST -robertnjenga,2024-01-07T20:22:57Z,- robertnjenga commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880161381) at 2024-01-07 12:22 PM PST -robertnjenga,2024-01-07T20:33:45Z,- robertnjenga submitted pull request review: [6063](https://github.com/hackforla/website/pull/6063#pullrequestreview-1807866877) at 2024-01-07 12:33 PM PST -robertnjenga,2024-01-07T20:55:34Z,- robertnjenga commented on pull request: [6061](https://github.com/hackforla/website/pull/6061#issuecomment-1880168607) at 2024-01-07 12:55 PM PST -robertnjenga,2024-01-07T21:05:09Z,- robertnjenga submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1807870874) at 2024-01-07 01:05 PM PST -robertnjenga,2024-01-07T21:40:15Z,- robertnjenga submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1807881127) at 2024-01-07 01:40 PM PST -robertnjenga,2024-01-21T17:44:23Z,- robertnjenga commented on pull request: [6136](https://github.com/hackforla/website/pull/6136#issuecomment-1902707170) at 2024-01-21 09:44 AM PST -robertnjenga,2024-01-21T17:57:40Z,- robertnjenga submitted pull request review: [6136](https://github.com/hackforla/website/pull/6136#pullrequestreview-1835388427) at 2024-01-21 09:57 AM PST -robertnjenga,2024-01-21T18:13:59Z,- robertnjenga commented on pull request: [6134](https://github.com/hackforla/website/pull/6134#issuecomment-1902716261) at 2024-01-21 10:13 AM PST -robertnjenga,2024-01-21T19:49:55Z,- robertnjenga submitted pull request review: [6134](https://github.com/hackforla/website/pull/6134#pullrequestreview-1835421545) at 2024-01-21 11:49 AM PST -robertnjenga,2024-01-24T19:10:27Z,- robertnjenga assigned to issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1885597127) at 2024-01-24 11:10 AM PST -robertnjenga,2024-01-24T19:11:32Z,- robertnjenga commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1908758226) at 2024-01-24 11:11 AM PST -robertnjenga,2024-01-24T23:40:15Z,- robertnjenga opened pull request: [6151](https://github.com/hackforla/website/pull/6151) at 2024-01-24 03:40 PM PST -robertnjenga,2024-01-28T17:06:40Z,- robertnjenga pull request merged: [6151](https://github.com/hackforla/website/pull/6151#event-11620461889) at 2024-01-28 09:06 AM PST -robertnjenga,2024-02-17T20:38:49Z,- robertnjenga commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1950302804) at 2024-02-17 12:38 PM PST -robertnjenga,2024-02-17T21:05:36Z,- robertnjenga submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887024272) at 2024-02-17 01:05 PM PST -robertnjenga,2024-02-17T21:16:12Z,- robertnjenga commented on pull request: [6305](https://github.com/hackforla/website/pull/6305#issuecomment-1950345253) at 2024-02-17 01:16 PM PST -robertnjenga,2024-02-17T21:28:12Z,- robertnjenga submitted pull request review: [6305](https://github.com/hackforla/website/pull/6305#pullrequestreview-1887030727) at 2024-02-17 01:28 PM PST -robertnjenga,2024-02-18T15:19:30Z,- robertnjenga submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887261519) at 2024-02-18 07:19 AM PST -robertnjenga,2024-03-02T19:02:16Z,- robertnjenga commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1974879806) at 2024-03-02 11:02 AM PST -robertnjenga,2024-03-02T19:46:29Z,- robertnjenga submitted pull request review: [6408](https://github.com/hackforla/website/pull/6408#pullrequestreview-1912713553) at 2024-03-02 11:46 AM PST -robertnjenga,2024-03-02T20:23:41Z,- robertnjenga submitted pull request review: [6408](https://github.com/hackforla/website/pull/6408#pullrequestreview-1912718817) at 2024-03-02 12:23 PM PST -robertnjenga,2024-03-02T20:38:02Z,- robertnjenga commented on pull request: [6407](https://github.com/hackforla/website/pull/6407#issuecomment-1974903432) at 2024-03-02 12:38 PM PST -robertnjenga,2024-03-02T20:46:52Z,- robertnjenga submitted pull request review: [6407](https://github.com/hackforla/website/pull/6407#pullrequestreview-1912740666) at 2024-03-02 12:46 PM PST -robertnjenga,2024-03-03T15:25:35Z,- robertnjenga commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1975196639) at 2024-03-03 07:25 AM PST -robertnjenga,2024-03-04T17:59:45Z,- robertnjenga commented on pull request: [6414](https://github.com/hackforla/website/pull/6414#issuecomment-1977158779) at 2024-03-04 09:59 AM PST -robertnjenga,2024-03-04T18:01:25Z,- robertnjenga submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1914962190) at 2024-03-04 10:01 AM PST -robertnjenga,2024-03-04T19:01:15Z,- robertnjenga submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1915107967) at 2024-03-04 11:01 AM PST -robertnjenga,2024-04-12T19:46:14Z,- robertnjenga commented on pull request: [6629](https://github.com/hackforla/website/pull/6629#issuecomment-2052428151) at 2024-04-12 12:46 PM PDT -robertnjenga,2024-04-12T20:04:25Z,- robertnjenga submitted pull request review: [6629](https://github.com/hackforla/website/pull/6629#pullrequestreview-1998340163) at 2024-04-12 01:04 PM PDT -robertnjenga,2024-04-13T19:46:20Z,- robertnjenga commented on pull request: [6631](https://github.com/hackforla/website/pull/6631#issuecomment-2053741973) at 2024-04-13 12:46 PM PDT -robertnjenga,2024-04-13T20:01:05Z,- robertnjenga submitted pull request review: [6631](https://github.com/hackforla/website/pull/6631#pullrequestreview-1999341748) at 2024-04-13 01:01 PM PDT -robertnjenga,2024-04-13T20:02:31Z,- robertnjenga commented on pull request: [6630](https://github.com/hackforla/website/pull/6630#issuecomment-2053745003) at 2024-04-13 01:02 PM PDT -robertnjenga,2024-04-13T20:16:03Z,- robertnjenga submitted pull request review: [6630](https://github.com/hackforla/website/pull/6630#pullrequestreview-1999345080) at 2024-04-13 01:16 PM PDT -robertnjenga,2024-04-13T20:48:32Z,- robertnjenga commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2053758177) at 2024-04-13 01:48 PM PDT -robertnjenga,2024-04-13T21:06:53Z,- robertnjenga submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-1999362568) at 2024-04-13 02:06 PM PDT -robertnjenga,2024-04-15T16:18:09Z,- robertnjenga submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-2001548031) at 2024-04-15 09:18 AM PDT -robertnjenga,2024-06-03T17:04:37Z,- robertnjenga commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2145714893) at 2024-06-03 10:04 AM PDT -robertnjenga,2024-06-03T17:16:18Z,- robertnjenga submitted pull request review: [6925](https://github.com/hackforla/website/pull/6925#pullrequestreview-2094459464) at 2024-06-03 10:16 AM PDT -robertnjenga,2024-06-03T18:03:41Z,- robertnjenga commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2145817194) at 2024-06-03 11:03 AM PDT -robertnjenga,2024-06-03T18:16:15Z,- robertnjenga submitted pull request review: [6924](https://github.com/hackforla/website/pull/6924#pullrequestreview-2094564077) at 2024-06-03 11:16 AM PDT -robertnjenga,2024-06-05T15:34:27Z,- robertnjenga submitted pull request review: [6924](https://github.com/hackforla/website/pull/6924#pullrequestreview-2099567794) at 2024-06-05 08:34 AM PDT -robertnjenga,2024-07-21T14:45:45Z,- robertnjenga commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2241635423) at 2024-07-21 07:45 AM PDT -robertnjenga,2024-07-21T14:52:46Z,- robertnjenga submitted pull request review: [7125](https://github.com/hackforla/website/pull/7125#pullrequestreview-2190349079) at 2024-07-21 07:52 AM PDT -RobinElayn,2023-06-01T17:50:06Z,- RobinElayn commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1572526132) at 2023-06-01 10:50 AM PDT -RodgerLugo,7949,SKILLS ISSUE -RodgerLugo,2025-02-26T21:18:16Z,- RodgerLugo opened issue: [7949](https://github.com/hackforla/website/issues/7949) at 2025-02-26 01:18 PM PST -RodgerLugo,2025-02-26T21:22:22Z,- RodgerLugo assigned to issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2686220062) at 2025-02-26 01:22 PM PST -RodgerLugo,2025-04-09T00:37:46Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2787943613) at 2025-04-08 05:37 PM PDT -RodgerLugo,2025-04-09T01:52:11Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2788076435) at 2025-04-08 06:52 PM PDT -RodgerLugo,2025-04-10T03:50:28Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2791479303) at 2025-04-09 08:50 PM PDT -RodgerLugo,2025-04-11T01:40:13Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2795605087) at 2025-04-10 06:40 PM PDT -RodgerLugo,2025-04-16T07:35:02Z,- RodgerLugo submitted pull request review: [8062](https://github.com/hackforla/website/pull/8062#pullrequestreview-2771478597) at 2025-04-16 12:35 AM PDT -RodgerLugo,2025-04-17T23:06:58Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2814178784) at 2025-04-17 04:06 PM PDT -RodgerLugo,2025-04-18T18:35:23Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2815994792) at 2025-04-18 11:35 AM PDT -RodgerLugo,2025-04-26T21:38:18Z,- RodgerLugo assigned to issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2658210594) at 2025-04-26 02:38 PM PDT -RodgerLugo,2025-04-26T21:54:14Z,- RodgerLugo commented on issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2832642592) at 2025-04-26 02:54 PM PDT -RodgerLugo,2025-04-26T23:13:06Z,- RodgerLugo opened pull request: [8091](https://github.com/hackforla/website/pull/8091) at 2025-04-26 04:13 PM PDT -RodgerLugo,2025-04-26T23:20:21Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2832738889) at 2025-04-26 04:20 PM PDT -RodgerLugo,2025-04-28T01:54:52Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2833799156) at 2025-04-27 06:54 PM PDT -RodgerLugo,2025-04-28T02:09:08Z,- RodgerLugo assigned to issue: [7736](https://github.com/hackforla/website/issues/7736) at 2025-04-27 07:09 PM PDT -RodgerLugo,2025-04-28T02:09:29Z,- RodgerLugo unassigned from issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2833812934) at 2025-04-27 07:09 PM PDT -RodgerLugo,2025-04-29T05:12:10Z,- RodgerLugo commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2837471773) at 2025-04-28 10:12 PM PDT -RodgerLugo,2025-04-29T20:10:28Z,- RodgerLugo commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2840123536) at 2025-04-29 01:10 PM PDT -RodgerLugo,2025-04-30T01:57:35Z,- RodgerLugo pull request merged: [8091](https://github.com/hackforla/website/pull/8091#event-17465105258) at 2025-04-29 06:57 PM PDT -RodgerLugo,2025-04-30T02:15:08Z,- RodgerLugo assigned to issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2692153370) at 2025-04-29 07:15 PM PDT -RodgerLugo,2025-04-30T02:19:07Z,- RodgerLugo commented on issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2840637853) at 2025-04-29 07:19 PM PDT -RodgerLugo,2025-04-30T04:45:51Z,- RodgerLugo submitted pull request review: [8092](https://github.com/hackforla/website/pull/8092#pullrequestreview-2805740594) at 2025-04-29 09:45 PM PDT -RodgerLugo,2025-05-01T05:14:02Z,- RodgerLugo opened pull request: [8104](https://github.com/hackforla/website/pull/8104) at 2025-04-30 10:14 PM PDT -RodgerLugo,2025-05-07T16:21:37Z,- RodgerLugo pull request merged: [8104](https://github.com/hackforla/website/pull/8104#event-17559708714) at 2025-05-07 09:21 AM PDT -RodgerLugo,2025-05-11T08:21:20Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2869625667) at 2025-05-11 01:21 AM PDT -RodgerLugo,2025-05-11T08:23:28Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2869626516) at 2025-05-11 01:23 AM PDT -RodgerLugo,2025-05-27T08:38:39Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2911671323) at 2025-05-27 01:38 AM PDT -RodgerLugo,2025-06-03T09:16:25Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2934297250) at 2025-06-03 02:16 AM PDT -RodgerLugo,2025-06-03T09:27:26Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2934343853) at 2025-06-03 02:27 AM PDT -RodgerLugo,2025-06-04T03:30:31Z,- RodgerLugo assigned to issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2423160800) at 2025-06-03 08:30 PM PDT -RodgerLugo,2025-06-04T03:33:12Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2938286030) at 2025-06-03 08:33 PM PDT -RodgerLugo,2025-06-14T00:39:37Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2972041205) at 2025-06-13 05:39 PM PDT -RodgerLugo,2025-06-23T23:15:21Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2998252729) at 2025-06-23 04:15 PM PDT -RodgerLugo,2025-07-16T22:11:49Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-3081361043) at 2025-07-16 03:11 PM PDT -rogerioduenas,7884,SKILLS ISSUE -rogerioduenas,2025-02-03T04:15:09Z,- rogerioduenas assigned to issue: [7480](https://github.com/hackforla/website/issues/7480) at 2025-02-02 08:15 PM PST -rogerioduenas,2025-02-03T05:48:39Z,- rogerioduenas opened pull request: [7874](https://github.com/hackforla/website/pull/7874) at 2025-02-02 09:48 PM PST -rogerioduenas,2025-02-05T03:18:59Z,- rogerioduenas opened issue: [7884](https://github.com/hackforla/website/issues/7884) at 2025-02-04 07:18 PM PST -rogerioduenas,2025-02-05T03:19:25Z,- rogerioduenas assigned to issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2635613383) at 2025-02-04 07:19 PM PST -rogerioduenas,2025-02-05T04:24:34Z,- rogerioduenas commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2635672699) at 2025-02-04 08:24 PM PST -rogerioduenas,2025-02-06T07:36:10Z,- rogerioduenas pull request merged: [7874](https://github.com/hackforla/website/pull/7874#event-16205596492) at 2025-02-05 11:36 PM PST -rogerioduenas,2025-02-07T12:46:45Z,- rogerioduenas assigned to issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2640997244) at 2025-02-07 04:46 AM PST -rogerioduenas,2025-02-08T10:17:50Z,- rogerioduenas opened pull request: [7902](https://github.com/hackforla/website/pull/7902) at 2025-02-08 02:17 AM PST -rogerioduenas,2025-02-10T22:55:24Z,- rogerioduenas commented on pull request: [7902](https://github.com/hackforla/website/pull/7902#issuecomment-2649441319) at 2025-02-10 02:55 PM PST -rogerioduenas,2025-02-11T02:10:58Z,- rogerioduenas pull request merged: [7902](https://github.com/hackforla/website/pull/7902#event-16257648670) at 2025-02-10 06:10 PM PST -rogerioduenas,2025-02-11T07:00:25Z,- rogerioduenas commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2649971915) at 2025-02-10 11:00 PM PST -rogerioduenas,2025-02-13T11:58:16Z,- rogerioduenas assigned to issue: [7395](https://github.com/hackforla/website/issues/7395) at 2025-02-13 03:58 AM PST -rogerioduenas,2025-02-16T09:55:27Z,- rogerioduenas assigned to issue: [7875](https://github.com/hackforla/website/issues/7875) at 2025-02-16 01:55 AM PST -rogerioduenas,2025-02-16T09:55:40Z,- rogerioduenas unassigned from issue: [7875](https://github.com/hackforla/website/issues/7875) at 2025-02-16 01:55 AM PST -rogerioduenas,2025-02-16T10:17:03Z,- rogerioduenas opened pull request: [7912](https://github.com/hackforla/website/pull/7912) at 2025-02-16 02:17 AM PST -rogerioduenas,2025-02-16T10:18:07Z,- rogerioduenas assigned to issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661351382) at 2025-02-16 02:18 AM PST -rogerioduenas,2025-02-16T10:18:23Z,- rogerioduenas unassigned from issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661351382) at 2025-02-16 02:18 AM PST -rogerioduenas,2025-02-16T10:20:42Z,- rogerioduenas assigned to issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661362678) at 2025-02-16 02:20 AM PST -rogerioduenas,2025-02-16T10:20:55Z,- rogerioduenas unassigned from issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661362678) at 2025-02-16 02:20 AM PST -rogerioduenas,2025-02-16T10:23:01Z,- rogerioduenas pull request closed w/o merging: [7912](https://github.com/hackforla/website/pull/7912#event-16323860242) at 2025-02-16 02:23 AM PST -rogerioduenas,2025-02-19T05:02:06Z,- rogerioduenas closed issue as completed: [7884](https://github.com/hackforla/website/issues/7884#event-16359088811) at 2025-02-18 09:02 PM PST -rogerioduenas,2025-02-19T05:02:22Z,- rogerioduenas reopened issue: [7884](https://github.com/hackforla/website/issues/7884#event-16359088811) at 2025-02-18 09:02 PM PST -rogerioduenas,2025-02-19T05:10:16Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667523980) at 2025-02-18 09:10 PM PST -rogerioduenas,2025-02-19T05:16:10Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667529911) at 2025-02-18 09:16 PM PST -rogerioduenas,2025-02-19T05:20:05Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667534830) at 2025-02-18 09:20 PM PST -rogerioduenas,2025-02-19T05:24:49Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667540408) at 2025-02-18 09:24 PM PST -rogerioduenas,2025-02-19T05:33:57Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667551555) at 2025-02-18 09:33 PM PST -rogerioduenas,2025-02-19T05:41:50Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667560654) at 2025-02-18 09:41 PM PST -rogerioduenas,2025-02-19T05:53:54Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667574179) at 2025-02-18 09:53 PM PST -rogerioduenas,2025-02-19T06:06:00Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667588909) at 2025-02-18 10:06 PM PST -rogerioduenas,2025-02-19T06:09:43Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667593674) at 2025-02-18 10:09 PM PST -rogerioduenas,2025-02-19T06:19:17Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2667605976) at 2025-02-18 10:19 PM PST -rogerioduenas,2025-02-25T04:40:10Z,- rogerioduenas assigned to issue: [7605](https://github.com/hackforla/website/issues/7605#issuecomment-2605972760) at 2025-02-24 08:40 PM PST -rogerioduenas,2025-02-25T06:03:22Z,- rogerioduenas opened pull request: [7945](https://github.com/hackforla/website/pull/7945) at 2025-02-24 10:03 PM PST -rogerioduenas,2025-02-27T05:22:07Z,- rogerioduenas commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2686942989) at 2025-02-26 09:22 PM PST -rogerioduenas,2025-02-27T05:23:08Z,- rogerioduenas commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2686944121) at 2025-02-26 09:23 PM PST -rogerioduenas,2025-02-28T05:19:41Z,- rogerioduenas reopened pull request: [7936](https://github.com/hackforla/website/pull/7936#event-16506998057) at 2025-02-27 09:19 PM PST -rogerioduenas,2025-02-28T05:24:44Z,- rogerioduenas commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2689755112) at 2025-02-27 09:24 PM PST -rogerioduenas,2025-02-28T19:17:00Z,- rogerioduenas pull request merged: [7945](https://github.com/hackforla/website/pull/7945#event-16516912862) at 2025-02-28 11:17 AM PST -rogerioduenas,2025-03-03T06:21:15Z,- rogerioduenas commented on pull request: [7962](https://github.com/hackforla/website/pull/7962#issuecomment-2693387330) at 2025-03-02 10:21 PM PST -rogerioduenas,2025-03-03T06:34:50Z,- rogerioduenas submitted pull request review: [7962](https://github.com/hackforla/website/pull/7962#pullrequestreview-2653176330) at 2025-03-02 10:34 PM PST -rogerioduenas,2025-03-03T06:47:16Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2693430773) at 2025-03-02 10:47 PM PST -rogerioduenas,2025-03-05T06:00:50Z,- rogerioduenas commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2699953111) at 2025-03-04 10:00 PM PST -rogerioduenas,2025-03-05T06:48:37Z,- rogerioduenas submitted pull request review: [7980](https://github.com/hackforla/website/pull/7980#pullrequestreview-2660121345) at 2025-03-04 10:48 PM PST -rogerioduenas,2025-03-06T06:39:31Z,- rogerioduenas submitted pull request review: [7980](https://github.com/hackforla/website/pull/7980#pullrequestreview-2663472954) at 2025-03-05 10:39 PM PST -rogerioduenas,2025-03-06T06:43:20Z,- rogerioduenas commented on pull request: [7980](https://github.com/hackforla/website/pull/7980#issuecomment-2702952867) at 2025-03-05 10:43 PM PST -rogerioduenas,2025-03-06T06:55:27Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2702976175) at 2025-03-05 10:55 PM PST -rogerioduenas,2025-03-08T01:58:10Z,- rogerioduenas commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2707891450) at 2025-03-07 06:58 PM PDT -rogerioduenas,2025-03-08T02:01:59Z,- rogerioduenas submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2668765165) at 2025-03-07 07:01 PM PDT -rogerioduenas,2025-03-08T02:05:18Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2707896076) at 2025-03-07 07:05 PM PDT -rogerioduenas,2025-03-11T06:24:31Z,- rogerioduenas commented on pull request: [7986](https://github.com/hackforla/website/pull/7986#issuecomment-2712812171) at 2025-03-10 11:24 PM PDT -rogerioduenas,2025-03-11T06:32:54Z,- rogerioduenas submitted pull request review: [7986](https://github.com/hackforla/website/pull/7986#pullrequestreview-2673009235) at 2025-03-10 11:32 PM PDT -rogerioduenas,2025-03-11T06:35:50Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2712833923) at 2025-03-10 11:35 PM PDT -rogerioduenas,2025-03-12T05:31:25Z,- rogerioduenas commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2716525617) at 2025-03-11 10:31 PM PDT -rogerioduenas,2025-03-14T05:45:09Z,- rogerioduenas commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2723659528) at 2025-03-13 10:45 PM PDT -rogerioduenas,2025-03-14T06:07:29Z,- rogerioduenas submitted pull request review: [7989](https://github.com/hackforla/website/pull/7989#pullrequestreview-2684403269) at 2025-03-13 11:07 PM PDT -rogerioduenas,2025-03-14T06:10:04Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2723712876) at 2025-03-13 11:10 PM PDT -rogerioduenas,2025-03-18T04:23:43Z,- rogerioduenas assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2652128063) at 2025-03-17 09:23 PM PDT -rogerioduenas,2025-03-27T05:09:48Z,- rogerioduenas unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2731586032) at 2025-03-26 10:09 PM PDT -rogerioduenas,2025-05-22T07:03:28Z,- rogerioduenas submitted pull request review: [8150](https://github.com/hackforla/website/pull/8150#pullrequestreview-2860033159) at 2025-05-22 12:03 AM PDT -rogerioduenas,2025-05-22T07:12:52Z,- rogerioduenas commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2900161841) at 2025-05-22 12:12 AM PDT -rogerioduenas,2025-06-03T06:34:22Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2933716112) at 2025-06-02 11:34 PM PDT -rogerioduenas,2025-06-03T06:49:28Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2933756477) at 2025-06-02 11:49 PM PDT -rogerioduenas,2025-06-03T07:07:06Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2933808542) at 2025-06-03 12:07 AM PDT -rogerioduenas,2025-06-06T06:32:36Z,- rogerioduenas commented on pull request: [8172](https://github.com/hackforla/website/pull/8172#issuecomment-2948244298) at 2025-06-05 11:32 PM PDT -rogerioduenas,2025-06-06T06:45:03Z,- rogerioduenas submitted pull request review: [8172](https://github.com/hackforla/website/pull/8172#pullrequestreview-2903952876) at 2025-06-05 11:45 PM PDT -rogerioduenas,2025-06-06T06:49:18Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2948274465) at 2025-06-05 11:49 PM PDT -rogerioduenas,2025-06-11T07:01:56Z,- rogerioduenas submitted pull request review: [8180](https://github.com/hackforla/website/pull/8180#pullrequestreview-2915894891) at 2025-06-11 12:01 AM PDT -rogerioduenas,2025-06-20T04:53:10Z,- rogerioduenas commented on issue: [7884](https://github.com/hackforla/website/issues/7884#issuecomment-2989790820) at 2025-06-19 09:53 PM PDT -rolzar,3571,SKILLS ISSUE -rolzar,2022-09-21T03:12:44Z,- rolzar opened issue: [3571](https://github.com/hackforla/website/issues/3571) at 2022-09-20 08:12 PM PDT -rolzar,2022-09-21T03:13:46Z,- rolzar assigned to issue: [3571](https://github.com/hackforla/website/issues/3571) at 2022-09-20 08:13 PM PDT -rolzar,2022-09-27T09:11:36Z,- rolzar assigned to issue: [3562](https://github.com/hackforla/website/issues/3562) at 2022-09-27 02:11 AM PDT -rolzar,2022-09-27T23:44:45Z,- rolzar commented on issue: [3562](https://github.com/hackforla/website/issues/3562#issuecomment-1260186740) at 2022-09-27 04:44 PM PDT -rolzar,2022-09-30T04:24:40Z,- rolzar commented on issue: [3571](https://github.com/hackforla/website/issues/3571#issuecomment-1263086891) at 2022-09-29 09:24 PM PDT -rolzar,2022-10-01T07:36:04Z,- rolzar opened pull request: [3595](https://github.com/hackforla/website/pull/3595) at 2022-10-01 12:36 AM PDT -rolzar,2022-10-02T00:43:09Z,- rolzar pull request merged: [3595](https://github.com/hackforla/website/pull/3595#event-7501258135) at 2022-10-01 05:43 PM PDT -rolzar,2022-10-03T04:19:55Z,- rolzar assigned to issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1145799340) at 2022-10-02 09:19 PM PDT -rolzar,2022-10-04T06:47:31Z,- rolzar commented on issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1266476672) at 2022-10-03 11:47 PM PDT -rolzar,2022-10-23T16:08:27Z,- rolzar unassigned from issue: [3196](https://github.com/hackforla/website/issues/3196#issuecomment-1288145343) at 2022-10-23 09:08 AM PDT -romainyvernes,5608,SKILLS ISSUE -romainyvernes,2023-09-27T02:47:52Z,- romainyvernes opened issue: [5608](https://github.com/hackforla/website/issues/5608) at 2023-09-26 07:47 PM PDT -romainyvernes,2023-09-27T02:47:53Z,- romainyvernes assigned to issue: [5608](https://github.com/hackforla/website/issues/5608) at 2023-09-26 07:47 PM PDT -romainyvernes,2023-09-27T03:33:34Z,- romainyvernes assigned to issue: [5372](https://github.com/hackforla/website/issues/5372#issuecomment-1698562825) at 2023-09-26 08:33 PM PDT -romainyvernes,2023-09-27T21:42:06Z,- romainyvernes commented on issue: [5372](https://github.com/hackforla/website/issues/5372#issuecomment-1738116636) at 2023-09-27 02:42 PM PDT -romainyvernes,2023-09-27T21:46:48Z,- romainyvernes commented on issue: [5608](https://github.com/hackforla/website/issues/5608#issuecomment-1738121831) at 2023-09-27 02:46 PM PDT -romainyvernes,2023-09-27T23:06:48Z,- romainyvernes opened pull request: [5616](https://github.com/hackforla/website/pull/5616) at 2023-09-27 04:06 PM PDT -romainyvernes,2023-09-29T02:46:33Z,- romainyvernes commented on pull request: [5625](https://github.com/hackforla/website/pull/5625#issuecomment-1740239232) at 2023-09-28 07:46 PM PDT -romainyvernes,2023-09-29T03:36:05Z,- romainyvernes submitted pull request review: [5625](https://github.com/hackforla/website/pull/5625#pullrequestreview-1649994667) at 2023-09-28 08:36 PM PDT -romainyvernes,2023-09-29T03:40:34Z,- romainyvernes commented on pull request: [5626](https://github.com/hackforla/website/pull/5626#issuecomment-1740265374) at 2023-09-28 08:40 PM PDT -romainyvernes,2023-09-29T04:25:08Z,- romainyvernes submitted pull request review: [5626](https://github.com/hackforla/website/pull/5626#pullrequestreview-1650019771) at 2023-09-28 09:25 PM PDT -romainyvernes,2023-10-01T17:00:51Z,- romainyvernes pull request merged: [5616](https://github.com/hackforla/website/pull/5616#event-10520048984) at 2023-10-01 10:00 AM PDT -romainyvernes,2023-10-02T18:32:37Z,- romainyvernes assigned to issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1739856247) at 2023-10-02 11:32 AM PDT -romainyvernes,2023-10-02T18:33:18Z,- romainyvernes commented on issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1743546067) at 2023-10-02 11:33 AM PDT -romainyvernes,2023-10-02T19:26:50Z,- romainyvernes opened pull request: [5646](https://github.com/hackforla/website/pull/5646) at 2023-10-02 12:26 PM PDT -romainyvernes,2023-10-04T14:04:26Z,- romainyvernes pull request merged: [5646](https://github.com/hackforla/website/pull/5646#event-10551610815) at 2023-10-04 07:04 AM PDT -romainyvernes,2023-10-04T18:31:03Z,- romainyvernes assigned to issue: [5590](https://github.com/hackforla/website/issues/5590#issuecomment-1735126389) at 2023-10-04 11:31 AM PDT -romainyvernes,2023-10-04T18:33:01Z,- romainyvernes commented on issue: [5590](https://github.com/hackforla/website/issues/5590#issuecomment-1747432489) at 2023-10-04 11:33 AM PDT -romainyvernes,2023-10-04T19:00:35Z,- romainyvernes opened pull request: [5661](https://github.com/hackforla/website/pull/5661) at 2023-10-04 12:00 PM PDT -romainyvernes,2023-10-06T20:40:46Z,- romainyvernes commented on issue: [5608](https://github.com/hackforla/website/issues/5608#issuecomment-1751379609) at 2023-10-06 01:40 PM PDT -romainyvernes,2023-10-09T04:08:01Z,- romainyvernes pull request merged: [5661](https://github.com/hackforla/website/pull/5661#event-10586478193) at 2023-10-08 09:08 PM PDT -romainyvernes,2023-10-09T19:06:03Z,- romainyvernes closed issue as completed: [5608](https://github.com/hackforla/website/issues/5608#event-10594643663) at 2023-10-09 12:06 PM PDT -romainyvernes,2023-10-09T21:23:42Z,- romainyvernes commented on pull request: [5683](https://github.com/hackforla/website/pull/5683#issuecomment-1753899009) at 2023-10-09 02:23 PM PDT -romainyvernes,2023-10-10T23:50:20Z,- romainyvernes submitted pull request review: [5683](https://github.com/hackforla/website/pull/5683#pullrequestreview-1669389166) at 2023-10-10 04:50 PM PDT -romainyvernes,2023-10-15T17:38:30Z,- romainyvernes assigned to issue: [4785](https://github.com/hackforla/website/issues/4785#issuecomment-1577737413) at 2023-10-15 10:38 AM PDT -romainyvernes,2023-10-15T17:39:10Z,- romainyvernes commented on issue: [4785](https://github.com/hackforla/website/issues/4785#issuecomment-1763456867) at 2023-10-15 10:39 AM PDT -romainyvernes,2023-10-16T18:05:01Z,- romainyvernes opened pull request: [5718](https://github.com/hackforla/website/pull/5718) at 2023-10-16 11:05 AM PDT -romainyvernes,2023-10-18T02:38:45Z,- romainyvernes pull request merged: [5718](https://github.com/hackforla/website/pull/5718#event-10686208480) at 2023-10-17 07:38 PM PDT -romainyvernes,2023-10-22T17:11:38Z,- romainyvernes assigned to issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1558292332) at 2023-10-22 10:11 AM PDT -romainyvernes,2023-10-28T18:10:45Z,- romainyvernes unassigned from issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1774148365) at 2023-10-28 11:10 AM PDT -ronaldpaek,4074,SKILLS ISSUE -ronaldpaek,2023-03-01T04:34:09Z,- ronaldpaek opened issue: [4074](https://github.com/hackforla/website/issues/4074) at 2023-02-28 08:34 PM PST -ronaldpaek,2023-03-01T21:44:20Z,- ronaldpaek assigned to issue: [4074](https://github.com/hackforla/website/issues/4074) at 2023-03-01 01:44 PM PST -ronaldpaek,2023-03-03T00:34:52Z,- ronaldpaek assigned to issue: [4037](https://github.com/hackforla/website/issues/4037) at 2023-03-02 04:34 PM PST -ronaldpaek,2023-03-03T02:31:34Z,- ronaldpaek opened pull request: [4093](https://github.com/hackforla/website/pull/4093) at 2023-03-02 06:31 PM PST -ronaldpaek,2023-03-03T02:42:12Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1452873712) at 2023-03-02 06:42 PM PST -ronaldpaek,2023-03-03T02:42:51Z,- ronaldpaek commented on issue: [4037](https://github.com/hackforla/website/issues/4037#issuecomment-1452874654) at 2023-03-02 06:42 PM PST -ronaldpaek,2023-03-03T02:57:30Z,- ronaldpaek commented on issue: [4037](https://github.com/hackforla/website/issues/4037#issuecomment-1452884354) at 2023-03-02 06:57 PM PST -ronaldpaek,2023-03-03T06:33:36Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1453047813) at 2023-03-02 10:33 PM PST -ronaldpaek,2023-03-03T06:34:16Z,- ronaldpaek closed issue as completed: [4074](https://github.com/hackforla/website/issues/4074#event-8656637866) at 2023-03-02 10:34 PM PST -ronaldpaek,2023-03-04T00:51:20Z,- ronaldpaek commented on pull request: [4093](https://github.com/hackforla/website/pull/4093#issuecomment-1454307201) at 2023-03-03 04:51 PM PST -ronaldpaek,2023-03-04T04:59:41Z,- ronaldpaek assigned to issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1429299384) at 2023-03-03 08:59 PM PST -ronaldpaek,2023-03-04T05:43:26Z,- ronaldpaek commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1454489257) at 2023-03-03 09:43 PM PST -ronaldpaek,2023-03-04T05:53:46Z,- ronaldpaek opened pull request: [4108](https://github.com/hackforla/website/pull/4108) at 2023-03-03 09:53 PM PST -ronaldpaek,2023-03-04T16:32:30Z,- ronaldpaek pull request merged: [4093](https://github.com/hackforla/website/pull/4093#event-8666406999) at 2023-03-04 08:32 AM PST -ronaldpaek,2023-03-05T19:31:09Z,- ronaldpaek commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1455181961) at 2023-03-05 11:31 AM PST -ronaldpaek,2023-03-06T12:11:06Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1456021488) at 2023-03-06 04:11 AM PST -ronaldpaek,2023-03-06T12:19:53Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1456034809) at 2023-03-06 04:19 AM PST -ronaldpaek,2023-03-11T01:55:23Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1464777957) at 2023-03-10 06:55 PM PDT -ronaldpaek,2023-03-12T10:30:03Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1465153235) at 2023-03-12 03:30 AM PDT -ronaldpaek,2023-03-13T21:21:38Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1466980667) at 2023-03-13 02:21 PM PDT -ronaldpaek,2023-03-15T02:04:42Z,- ronaldpaek commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1469183770) at 2023-03-14 07:04 PM PDT -ronaldpaek,2023-03-16T19:00:13Z,- ronaldpaek pull request merged: [4108](https://github.com/hackforla/website/pull/4108#event-8771055227) at 2023-03-16 12:00 PM PDT -ronaldpaek,2023-03-25T16:22:19Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1483862269) at 2023-03-25 09:22 AM PDT -ronaldpaek,2023-03-27T06:08:11Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1484550015) at 2023-03-26 11:08 PM PDT -ronaldpaek,2023-04-05T22:04:31Z,- ronaldpaek assigned to issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1496896565) at 2023-04-05 03:04 PM PDT -ronaldpaek,2023-04-05T22:06:50Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1498217625) at 2023-04-05 03:06 PM PDT -ronaldpaek,2023-04-05T22:08:49Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1498220397) at 2023-04-05 03:08 PM PDT -ronaldpaek,2023-04-18T20:27:52Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1513755920) at 2023-04-18 01:27 PM PDT -ronaldpaek,2023-04-18T20:30:16Z,- ronaldpaek commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1513758500) at 2023-04-18 01:30 PM PDT -ronaldpaek,2023-05-15T02:23:11Z,- ronaldpaek unassigned from issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1547104482) at 2023-05-14 07:23 PM PDT -ronaldpaek,2023-05-30T03:38:24Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1567714844) at 2023-05-29 08:38 PM PDT -ronaldpaek,2023-06-08T07:06:59Z,- ronaldpaek commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1582004382) at 2023-06-08 12:06 AM PDT -ronaldpaek,2023-06-08T07:07:10Z,- ronaldpaek assigned to issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1582004382) at 2023-06-08 12:07 AM PDT -ronaldpaek,2023-06-13T16:04:38Z,- ronaldpaek commented on issue: [4074](https://github.com/hackforla/website/issues/4074#issuecomment-1589608689) at 2023-06-13 09:04 AM PDT -ronaldpaek,2023-06-13T23:36:42Z,- ronaldpaek commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590195813) at 2023-06-13 04:36 PM PDT -ronaldpaek,2023-06-14T02:49:49Z,- ronaldpaek commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590363829) at 2023-06-13 07:49 PM PDT -ronaldpaek,2023-06-14T20:38:15Z,- ronaldpaek assigned to issue: [4776](https://github.com/hackforla/website/issues/4776) at 2023-06-14 01:38 PM PDT -ronaldpaek,2023-06-14T20:41:38Z,- ronaldpaek commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1591950748) at 2023-06-14 01:41 PM PDT -ronaldpaek,2023-06-15T22:54:31Z,- ronaldpaek commented on pull request: [4842](https://github.com/hackforla/website/pull/4842#issuecomment-1593819759) at 2023-06-15 03:54 PM PDT -ronaldpaek,2023-06-19T21:03:00Z,- ronaldpaek opened issue: [4859](https://github.com/hackforla/website/issues/4859) at 2023-06-19 02:03 PM PDT -ronaldpaek,2023-06-19T22:39:38Z,- ronaldpaek opened issue: [4860](https://github.com/hackforla/website/issues/4860) at 2023-06-19 03:39 PM PDT -ronaldpaek,2023-06-19T22:43:01Z,- ronaldpaek opened issue: [4861](https://github.com/hackforla/website/issues/4861) at 2023-06-19 03:43 PM PDT -ronaldpaek,2023-06-19T22:46:09Z,- ronaldpaek commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1597848001) at 2023-06-19 03:46 PM PDT -ronaldpaek,2023-06-20T03:08:40Z,- ronaldpaek closed issue as completed: [4074](https://github.com/hackforla/website/issues/4074#event-9574384182) at 2023-06-19 08:08 PM PDT -ronaldpaek,2023-06-21T01:01:30Z,- ronaldpaek submitted pull request review: [4842](https://github.com/hackforla/website/pull/4842#pullrequestreview-1489427291) at 2023-06-20 06:01 PM PDT -ronaldpaek,2023-06-21T01:11:20Z,- ronaldpaek commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1599919946) at 2023-06-20 06:11 PM PDT -ronaldpaek,2023-06-21T01:23:10Z,- ronaldpaek submitted pull request review: [4866](https://github.com/hackforla/website/pull/4866#pullrequestreview-1489473873) at 2023-06-20 06:23 PM PDT -ronaldpaek,2023-06-21T07:53:52Z,- ronaldpaek commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1600363727) at 2023-06-21 12:53 AM PDT -ronaldpaek,2023-06-21T11:43:53Z,- ronaldpaek assigned to issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1574621978) at 2023-06-21 04:43 AM PDT -ronaldpaek,2023-06-21T11:44:46Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1600685798) at 2023-06-21 04:44 AM PDT -ronaldpaek,2023-06-21T11:52:54Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1600695743) at 2023-06-21 04:52 AM PDT -ronaldpaek,2023-06-27T23:03:06Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1610332304) at 2023-06-27 04:03 PM PDT -ronaldpaek,2023-06-28T03:41:47Z,- ronaldpaek submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1502200677) at 2023-06-27 08:41 PM PDT -ronaldpaek,2023-06-28T04:53:35Z,- ronaldpaek opened issue: [4891](https://github.com/hackforla/website/issues/4891) at 2023-06-27 09:53 PM PDT -ronaldpaek,2023-06-28T05:00:31Z,- ronaldpaek opened issue: [4892](https://github.com/hackforla/website/issues/4892) at 2023-06-27 10:00 PM PDT -ronaldpaek,2023-06-28T05:27:26Z,- ronaldpaek opened issue: [4893](https://github.com/hackforla/website/issues/4893) at 2023-06-27 10:27 PM PDT -ronaldpaek,2023-06-28T05:30:48Z,- ronaldpaek opened issue: [4894](https://github.com/hackforla/website/issues/4894) at 2023-06-27 10:30 PM PDT -ronaldpaek,2023-06-28T05:32:17Z,- ronaldpaek opened issue: [4895](https://github.com/hackforla/website/issues/4895) at 2023-06-27 10:32 PM PDT -ronaldpaek,2023-06-30T23:23:43Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1615271710) at 2023-06-30 04:23 PM PDT -ronaldpaek,2023-06-30T23:26:04Z,- ronaldpaek commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1615272817) at 2023-06-30 04:26 PM PDT -ronaldpaek,2023-07-03T20:29:45Z,- ronaldpaek unassigned from issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1615271710) at 2023-07-03 01:29 PM PDT -ronaldpaek,2023-07-03T20:31:32Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1619121258) at 2023-07-03 01:31 PM PDT -ronaldpaek,2023-07-04T07:04:06Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1619634504) at 2023-07-04 12:04 AM PDT -ronaldpaek,2023-07-04T07:05:07Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1619635733) at 2023-07-04 12:05 AM PDT -ronaldpaek,2023-07-04T07:06:26Z,- ronaldpaek commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1619637377) at 2023-07-04 12:06 AM PDT -ronaldpaek,2023-07-07T11:23:04Z,- ronaldpaek assigned to issue: [4887](https://github.com/hackforla/website/issues/4887) at 2023-07-07 04:23 AM PDT -ronaldpaek,2023-07-07T11:25:29Z,- ronaldpaek commented on issue: [4887](https://github.com/hackforla/website/issues/4887#issuecomment-1625269223) at 2023-07-07 04:25 AM PDT -ronaldpaek,2023-07-10T04:33:31Z,- ronaldpaek commented on issue: [4887](https://github.com/hackforla/website/issues/4887#issuecomment-1628143807) at 2023-07-09 09:33 PM PDT -ronaldpaek,2023-07-10T06:12:08Z,- ronaldpaek opened pull request: [4927](https://github.com/hackforla/website/pull/4927) at 2023-07-09 11:12 PM PDT -ronaldpaek,2023-07-10T18:55:05Z,- ronaldpaek commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1629531137) at 2023-07-10 11:55 AM PDT -ronaldpaek,2023-07-12T17:33:43Z,- ronaldpaek submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1526869514) at 2023-07-12 10:33 AM PDT -ronaldpaek,2023-07-12T17:34:32Z,- ronaldpaek submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1526870688) at 2023-07-12 10:34 AM PDT -ronaldpaek,2023-07-13T02:46:37Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633466380) at 2023-07-12 07:46 PM PDT -ronaldpaek,2023-07-13T02:51:06Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633470305) at 2023-07-12 07:51 PM PDT -ronaldpaek,2023-07-13T05:26:35Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633568597) at 2023-07-12 10:26 PM PDT -ronaldpaek,2023-07-13T06:41:26Z,- ronaldpaek commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633649218) at 2023-07-12 11:41 PM PDT -ronaldpaek,2023-07-13T06:42:31Z,- ronaldpaek submitted pull request review: [4937](https://github.com/hackforla/website/pull/4937#pullrequestreview-1527710722) at 2023-07-12 11:42 PM PDT -ronaldpaek,2023-07-14T02:40:54Z,- ronaldpaek submitted pull request review: [4937](https://github.com/hackforla/website/pull/4937#pullrequestreview-1529505668) at 2023-07-13 07:40 PM PDT -ronaldpaek,2023-07-14T07:35:49Z,- ronaldpaek pull request merged: [4927](https://github.com/hackforla/website/pull/4927#event-9818979423) at 2023-07-14 12:35 AM PDT -ronaldpaek,2023-07-16T00:12:52Z,- ronaldpaek commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-1636924714) at 2023-07-15 05:12 PM PDT -ronaldpaek,2023-07-19T05:24:25Z,- ronaldpaek opened pull request: [5023](https://github.com/hackforla/website/pull/5023) at 2023-07-18 10:24 PM PDT -ronaldpaek,2023-07-19T05:26:24Z,- ronaldpaek commented on pull request: [5023](https://github.com/hackforla/website/pull/5023#issuecomment-1641435680) at 2023-07-18 10:26 PM PDT -ronaldpaek,2023-07-19T05:53:43Z,- ronaldpaek opened pull request: [5024](https://github.com/hackforla/website/pull/5024) at 2023-07-18 10:53 PM PDT -ronaldpaek,2023-07-19T06:04:06Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641468053) at 2023-07-18 11:04 PM PDT -ronaldpaek,2023-07-19T06:05:16Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641469084) at 2023-07-18 11:05 PM PDT -ronaldpaek,2023-07-19T06:11:02Z,- ronaldpaek commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1641475094) at 2023-07-18 11:11 PM PDT -ronaldpaek,2023-07-19T06:14:21Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1641479355) at 2023-07-18 11:14 PM PDT -ronaldpaek,2023-07-19T06:35:59Z,- ronaldpaek commented on pull request: [5025](https://github.com/hackforla/website/pull/5025#issuecomment-1641500001) at 2023-07-18 11:35 PM PDT -ronaldpaek,2023-07-19T06:37:22Z,- ronaldpaek submitted pull request review: [5025](https://github.com/hackforla/website/pull/5025#pullrequestreview-1536352491) at 2023-07-18 11:37 PM PDT -ronaldpaek,2023-07-19T06:51:02Z,- ronaldpaek submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1536369876) at 2023-07-18 11:51 PM PDT -ronaldpaek,2023-07-19T07:02:28Z,- ronaldpaek commented on pull request: [5023](https://github.com/hackforla/website/pull/5023#issuecomment-1641528530) at 2023-07-19 12:02 AM PDT -ronaldpaek,2023-07-19T09:23:47Z,- ronaldpaek commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1641740154) at 2023-07-19 02:23 AM PDT -ronaldpaek,2023-07-19T14:52:52Z,- ronaldpaek submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1537293770) at 2023-07-19 07:52 AM PDT -ronaldpaek,2023-07-19T15:22:54Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642295715) at 2023-07-19 08:22 AM PDT -ronaldpaek,2023-07-19T15:27:17Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642303851) at 2023-07-19 08:27 AM PDT -ronaldpaek,2023-07-19T15:38:39Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642322603) at 2023-07-19 08:38 AM PDT -ronaldpaek,2023-07-19T15:39:27Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642324980) at 2023-07-19 08:39 AM PDT -ronaldpaek,2023-07-19T16:09:26Z,- ronaldpaek commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1642371972) at 2023-07-19 09:09 AM PDT -ronaldpaek,2023-07-19T18:29:03Z,- ronaldpaek opened pull request: [5035](https://github.com/hackforla/website/pull/5035) at 2023-07-19 11:29 AM PDT -ronaldpaek,2023-07-19T18:29:52Z,- ronaldpaek pull request closed w/o merging: [5035](https://github.com/hackforla/website/pull/5035#event-9866009475) at 2023-07-19 11:29 AM PDT -ronaldpaek,2023-07-20T14:21:54Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1644018574) at 2023-07-20 07:21 AM PDT -ronaldpaek,2023-07-20T14:29:46Z,- ronaldpaek submitted pull request review: [5034](https://github.com/hackforla/website/pull/5034#pullrequestreview-1539407604) at 2023-07-20 07:29 AM PDT -ronaldpaek,2023-07-20T14:44:38Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1644057299) at 2023-07-20 07:44 AM PDT -ronaldpaek,2023-07-20T14:45:42Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1644059158) at 2023-07-20 07:45 AM PDT -ronaldpaek,2023-07-20T18:57:20Z,- ronaldpaek submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1539900294) at 2023-07-20 11:57 AM PDT -ronaldpaek,2023-07-23T17:51:36Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1646905168) at 2023-07-23 10:51 AM PDT -ronaldpaek,2023-07-24T23:03:34Z,- ronaldpaek submitted pull request review: [5049](https://github.com/hackforla/website/pull/5049#pullrequestreview-1544402721) at 2023-07-24 04:03 PM PDT -ronaldpaek,2023-07-24T23:04:00Z,- ronaldpaek commented on pull request: [5049](https://github.com/hackforla/website/pull/5049#issuecomment-1648738323) at 2023-07-24 04:04 PM PDT -ronaldpaek,2023-07-24T23:16:31Z,- ronaldpaek submitted pull request review: [5052](https://github.com/hackforla/website/pull/5052#pullrequestreview-1544411008) at 2023-07-24 04:16 PM PDT -ronaldpaek,2023-07-25T08:12:48Z,- ronaldpaek commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1649341150) at 2023-07-25 01:12 AM PDT -ronaldpaek,2023-08-01T08:01:24Z,- ronaldpaek opened issue: [5126](https://github.com/hackforla/website/issues/5126) at 2023-08-01 01:01 AM PDT -ronaldpaek,2023-08-04T16:39:12Z,- ronaldpaek commented on issue: [5126](https://github.com/hackforla/website/issues/5126#issuecomment-1665896614) at 2023-08-04 09:39 AM PDT -ronaldpaek,2023-08-04T16:39:19Z,- ronaldpaek closed issue as completed: [5126](https://github.com/hackforla/website/issues/5126#event-10011329850) at 2023-08-04 09:39 AM PDT -ronaldpaek,2023-08-10T00:25:58Z,- ronaldpaek commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1672356996) at 2023-08-09 05:25 PM PDT -ronaldpaek,2023-08-11T19:05:19Z,- ronaldpaek submitted pull request review: [5124](https://github.com/hackforla/website/pull/5124#pullrequestreview-1574240003) at 2023-08-11 12:05 PM PDT -ronaldpaek,2023-08-17T04:43:33Z,- ronaldpaek commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1681604512) at 2023-08-16 09:43 PM PDT -ronaldpaek,2023-08-18T11:24:48Z,- ronaldpaek submitted pull request review: [5235](https://github.com/hackforla/website/pull/5235#pullrequestreview-1584394280) at 2023-08-18 04:24 AM PDT -ronaldpaek,2023-08-19T04:45:46Z,- ronaldpaek commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1684804851) at 2023-08-18 09:45 PM PDT -ronaldpaek,2023-08-19T04:47:31Z,- ronaldpaek submitted pull request review: [5249](https://github.com/hackforla/website/pull/5249#pullrequestreview-1585531524) at 2023-08-18 09:47 PM PDT -ronaldpaek,2023-08-19T09:34:20Z,- ronaldpaek opened pull request: [5258](https://github.com/hackforla/website/pull/5258) at 2023-08-19 02:34 AM PDT -ronaldpaek,2023-08-19T10:08:46Z,- ronaldpaek commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1684910689) at 2023-08-19 03:08 AM PDT -ronaldpaek,2023-08-24T10:59:39Z,- ronaldpaek submitted pull request review: [5263](https://github.com/hackforla/website/pull/5263#pullrequestreview-1593327572) at 2023-08-24 03:59 AM PDT -ronaldpaek,2023-08-25T05:42:29Z,- ronaldpaek commented on pull request: [5258](https://github.com/hackforla/website/pull/5258#issuecomment-1692792060) at 2023-08-24 10:42 PM PDT -ronaldpaek,2023-08-31T09:52:45Z,- ronaldpaek submitted pull request review: [5339](https://github.com/hackforla/website/pull/5339#pullrequestreview-1604381237) at 2023-08-31 02:52 AM PDT -ronaldpaek,2023-09-04T13:20:57Z,- ronaldpaek commented on pull request: [5434](https://github.com/hackforla/website/pull/5434#issuecomment-1705265530) at 2023-09-04 06:20 AM PDT -ronaldpaek,2023-09-04T13:22:32Z,- ronaldpaek commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1705268041) at 2023-09-04 06:22 AM PDT -ronaldpaek,2023-09-04T13:23:20Z,- ronaldpaek commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1705269236) at 2023-09-04 06:23 AM PDT -ronaldpaek,2023-09-09T06:22:56Z,- ronaldpaek submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1618569616) at 2023-09-08 11:22 PM PDT -ronaldpaek,2023-09-13T00:23:49Z,- ronaldpaek commented on pull request: [5024](https://github.com/hackforla/website/pull/5024#issuecomment-1716758313) at 2023-09-12 05:23 PM PDT -ronaldpaek,2023-09-13T05:25:35Z,- ronaldpaek submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1623712985) at 2023-09-12 10:25 PM PDT -ronaldpaek,2023-09-13T21:33:13Z,- ronaldpaek submitted pull request review: [5512](https://github.com/hackforla/website/pull/5512#pullrequestreview-1625486494) at 2023-09-13 02:33 PM PDT -ronaldpaek,2023-10-16T11:36:03Z,- ronaldpaek submitted pull request review: [5702](https://github.com/hackforla/website/pull/5702#pullrequestreview-1679754125) at 2023-10-16 04:36 AM PDT -ronaldpaek,2023-11-08T01:29:34Z,- ronaldpaek commented on pull request: [5877](https://github.com/hackforla/website/pull/5877#issuecomment-1800857938) at 2023-11-07 05:29 PM PST -ronaldpaek,2023-11-08T01:50:34Z,- ronaldpaek submitted pull request review: [5877](https://github.com/hackforla/website/pull/5877#pullrequestreview-1719173090) at 2023-11-07 05:50 PM PST -ronaldpaek,2023-11-08T20:51:51Z,- ronaldpaek submitted pull request review: [5877](https://github.com/hackforla/website/pull/5877#pullrequestreview-1721253234) at 2023-11-08 12:51 PM PST -Rosalyn-broddie,2021-03-28T08:37:30Z,- Rosalyn-broddie assigned to issue: [1289](https://github.com/hackforla/website/issues/1289) at 2021-03-28 01:37 AM PDT -Rosalyn-broddie,2021-05-04T08:36:37Z,- Rosalyn-broddie assigned to issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-829904063) at 2021-05-04 01:36 AM PDT -Rosalyn-broddie,2021-05-14T17:22:26Z,- Rosalyn-broddie commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-841390250) at 2021-05-14 10:22 AM PDT -Rosalyn-broddie,2021-05-16T17:17:51Z,- Rosalyn-broddie commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-841847199) at 2021-05-16 10:17 AM PDT -Rosalyn-broddie,2021-05-23T17:20:23Z,- Rosalyn-broddie commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-846596388) at 2021-05-23 10:20 AM PDT -Rosalyn-broddie,2021-05-30T17:04:43Z,- Rosalyn-broddie commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-851030694) at 2021-05-30 10:04 AM PDT -Rosalyn-broddie,2021-05-30T17:47:00Z,- Rosalyn-broddie commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-851036110) at 2021-05-30 10:47 AM PDT -Rosalyn-broddie,2021-06-11T03:49:21Z,- Rosalyn-broddie unassigned from issue: [1289](https://github.com/hackforla/website/issues/1289#event-4875399700) at 2021-06-10 08:49 PM PDT -Rosalyn-broddie,2021-06-12T19:43:45Z,- Rosalyn-broddie unassigned from issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860097793) at 2021-06-12 12:43 PM PDT -Rosalyn-broddie,2021-06-24T21:45:10Z,- Rosalyn-broddie assigned to issue: [1733](https://github.com/hackforla/website/issues/1733) at 2021-06-24 02:45 PM PDT -Rosalyn-broddie,2021-07-11T16:07:15Z,- Rosalyn-broddie commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-877825946) at 2021-07-11 09:07 AM PDT -Rosalyn-broddie,2021-07-29T19:26:19Z,- Rosalyn-broddie unassigned from issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-889400182) at 2021-07-29 12:26 PM PDT -roychan1,5781,SKILLS ISSUE -roychan1,2023-10-25T03:00:25Z,- roychan1 opened issue: [5781](https://github.com/hackforla/website/issues/5781) at 2023-10-24 08:00 PM PDT -roychan1,2023-10-25T03:00:26Z,- roychan1 assigned to issue: [5781](https://github.com/hackforla/website/issues/5781) at 2023-10-24 08:00 PM PDT -roychan1,2023-10-27T05:30:04Z,- roychan1 assigned to issue: [5754](https://github.com/hackforla/website/issues/5754) at 2023-10-26 10:30 PM PDT -roychan1,2023-10-27T05:49:02Z,- roychan1 closed issue by PR 5793: [5754](https://github.com/hackforla/website/issues/5754#event-10787516151) at 2023-10-26 10:49 PM PDT -roychan1,2023-10-27T05:49:25Z,- roychan1 commented on issue: [5754](https://github.com/hackforla/website/issues/5754#issuecomment-1782334585) at 2023-10-26 10:49 PM PDT -roychan1,2023-10-27T05:49:25Z,- roychan1 reopened issue: [5754](https://github.com/hackforla/website/issues/5754#issuecomment-1782334585) at 2023-10-26 10:49 PM PDT -roychan1,2023-10-27T06:05:40Z,- roychan1 commented on issue: [5754](https://github.com/hackforla/website/issues/5754#issuecomment-1782348400) at 2023-10-26 11:05 PM PDT -roychan1,2023-10-29T08:09:07Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1784029308) at 2023-10-29 01:09 AM PDT -roychan1,2023-10-29T21:55:08Z,- roychan1 opened pull request: [5793](https://github.com/hackforla/website/pull/5793) at 2023-10-29 02:55 PM PDT -roychan1,2023-10-31T06:00:18Z,- roychan1 pull request merged: [5793](https://github.com/hackforla/website/pull/5793#event-10816023533) at 2023-10-30 11:00 PM PDT -roychan1,2023-11-03T07:57:59Z,- roychan1 assigned to issue: [5792](https://github.com/hackforla/website/issues/5792) at 2023-11-03 12:57 AM PDT -roychan1,2023-11-03T08:00:08Z,- roychan1 commented on issue: [5792](https://github.com/hackforla/website/issues/5792#issuecomment-1792010981) at 2023-11-03 01:00 AM PDT -roychan1,2023-11-05T09:55:28Z,- roychan1 opened pull request: [5837](https://github.com/hackforla/website/pull/5837) at 2023-11-05 01:55 AM PST -roychan1,2023-11-05T21:42:35Z,- roychan1 pull request merged: [5837](https://github.com/hackforla/website/pull/5837#event-10865936602) at 2023-11-05 01:42 PM PST -roychan1,2023-11-10T07:24:45Z,- roychan1 assigned to issue: [5857](https://github.com/hackforla/website/issues/5857) at 2023-11-09 11:24 PM PST -roychan1,2023-11-10T07:26:49Z,- roychan1 commented on issue: [5857](https://github.com/hackforla/website/issues/5857#issuecomment-1805227216) at 2023-11-09 11:26 PM PST -roychan1,2023-11-10T07:30:48Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1805231209) at 2023-11-09 11:30 PM PST -roychan1,2023-11-17T08:10:38Z,- roychan1 opened pull request: [5918](https://github.com/hackforla/website/pull/5918) at 2023-11-17 12:10 AM PST -roychan1,2023-11-17T08:15:31Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1815916493) at 2023-11-17 12:15 AM PST -roychan1,2023-11-22T21:36:38Z,- roychan1 pull request merged: [5918](https://github.com/hackforla/website/pull/5918#event-11041437759) at 2023-11-22 01:36 PM PST -roychan1,2023-11-25T07:35:21Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1826241286) at 2023-11-24 11:35 PM PST -roychan1,2023-11-25T07:43:18Z,- roychan1 assigned to issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1807738053) at 2023-11-24 11:43 PM PST -roychan1,2023-11-25T07:45:06Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1826246011) at 2023-11-24 11:45 PM PST -roychan1,2023-12-06T03:21:09Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1842020951) at 2023-12-05 07:21 PM PST -roychan1,2023-12-09T10:55:08Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1848370200) at 2023-12-09 02:55 AM PST -roychan1,2023-12-15T07:12:56Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1857386422) at 2023-12-14 11:12 PM PST -roychan1,2023-12-16T08:42:50Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1858763484) at 2023-12-16 12:42 AM PST -roychan1,2024-01-01T06:37:51Z,- roychan1 commented on issue: [5897](https://github.com/hackforla/website/issues/5897#issuecomment-1873185786) at 2023-12-31 10:37 PM PST -roychan1,2024-01-01T06:40:24Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1873186500) at 2023-12-31 10:40 PM PST -roychan1,2024-01-13T05:06:26Z,- roychan1 assigned to issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1876123987) at 2024-01-12 09:06 PM PST -roychan1,2024-01-13T05:08:48Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1890313160) at 2024-01-12 09:08 PM PST -roychan1,2024-01-13T05:11:12Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1890313648) at 2024-01-12 09:11 PM PST -roychan1,2024-02-06T06:27:49Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1928864984) at 2024-02-05 10:27 PM PST -roychan1,2024-02-29T02:09:32Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1970269545) at 2024-02-28 06:09 PM PST -roychan1,2024-02-29T02:15:20Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1970273951) at 2024-02-28 06:15 PM PST -roychan1,2024-02-29T02:16:47Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1970275080) at 2024-02-28 06:16 PM PST -roychan1,2024-03-09T09:13:25Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-1986803007) at 2024-03-09 02:13 AM PDT -roychan1,2024-03-09T09:14:34Z,- roychan1 commented on issue: [3906](https://github.com/hackforla/website/issues/3906#issuecomment-1986803286) at 2024-03-09 02:14 AM PDT -roychan1,2024-04-04T06:55:54Z,- roychan1 commented on issue: [5781](https://github.com/hackforla/website/issues/5781#issuecomment-2036333091) at 2024-04-03 11:55 PM PDT -rpbracker,2021-10-20T03:40:03Z,- rpbracker commented on issue: [2328](https://github.com/hackforla/website/issues/2328#issuecomment-947297764) at 2021-10-19 08:40 PM PDT -RuchiUp,7974,SKILLS ISSUE -RuchiUp,2025-03-04T04:23:27Z,- RuchiUp opened issue: [7974](https://github.com/hackforla/website/issues/7974) at 2025-03-03 08:23 PM PST -RuchiUp,2025-03-04T04:23:28Z,- RuchiUp assigned to issue: [7974](https://github.com/hackforla/website/issues/7974) at 2025-03-03 08:23 PM PST -Ruizmichael,6529,SKILLS ISSUE -Ruizmichael,2024-03-27T03:23:05Z,- Ruizmichael opened issue: [6529](https://github.com/hackforla/website/issues/6529) at 2024-03-26 08:23 PM PDT -Ruizmichael,2024-03-27T03:23:06Z,- Ruizmichael assigned to issue: [6529](https://github.com/hackforla/website/issues/6529) at 2024-03-26 08:23 PM PDT -Ruizmichael,2024-03-27T03:23:17Z,- Ruizmichael unassigned from issue: [6529](https://github.com/hackforla/website/issues/6529) at 2024-03-26 08:23 PM PDT -Ruizmichael,2024-03-28T05:46:52Z,- Ruizmichael assigned to issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2021853434) at 2024-03-27 10:46 PM PDT -Ruizmichael,2024-04-05T21:34:05Z,- Ruizmichael assigned to issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2035339916) at 2024-04-05 02:34 PM PDT -Ruizmichael,2024-04-05T21:57:57Z,- Ruizmichael commented on issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2040682142) at 2024-04-05 02:57 PM PDT -Ruizmichael,2024-04-05T22:01:39Z,- Ruizmichael commented on issue: [6529](https://github.com/hackforla/website/issues/6529#issuecomment-2040685269) at 2024-04-05 03:01 PM PDT -Ruizmichael,2024-04-05T22:12:32Z,- Ruizmichael opened pull request: [6580](https://github.com/hackforla/website/pull/6580) at 2024-04-05 03:12 PM PDT -Ruizmichael,2024-04-11T23:23:10Z,- Ruizmichael pull request merged: [6580](https://github.com/hackforla/website/pull/6580#event-12442673955) at 2024-04-11 04:23 PM PDT -Ruizmichael,2024-04-16T23:21:00Z,- Ruizmichael assigned to issue: [6182](https://github.com/hackforla/website/issues/6182) at 2024-04-16 04:21 PM PDT -Ruizmichael,2024-04-17T21:45:09Z,- Ruizmichael commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2062460052) at 2024-04-17 02:45 PM PDT -Ruizmichael,2024-04-19T23:40:46Z,- Ruizmichael commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2067396363) at 2024-04-19 04:40 PM PDT -Ruizmichael,2024-04-21T00:39:25Z,- Ruizmichael opened pull request: [6694](https://github.com/hackforla/website/pull/6694) at 2024-04-20 05:39 PM PDT -Ruizmichael,2024-04-21T00:45:31Z,- Ruizmichael commented on issue: [6182](https://github.com/hackforla/website/issues/6182#issuecomment-2067828217) at 2024-04-20 05:45 PM PDT -Ruizmichael,2024-04-22T01:46:19Z,- Ruizmichael pull request merged: [6694](https://github.com/hackforla/website/pull/6694#event-12552820920) at 2024-04-21 06:46 PM PDT -Ruizmichael,2024-05-06T16:40:46Z,- Ruizmichael closed issue as completed: [6529](https://github.com/hackforla/website/issues/6529#event-12717524420) at 2024-05-06 09:40 AM PDT -Ruizmichael,2024-06-02T22:20:56Z,- Ruizmichael assigned to issue: [6581](https://github.com/hackforla/website/issues/6581) at 2024-06-02 03:20 PM PDT -Ruizmichael,2024-06-02T22:28:04Z,- Ruizmichael commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2144041554) at 2024-06-02 03:28 PM PDT -Ruizmichael,2024-06-06T14:51:33Z,- Ruizmichael commented on issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2152738651) at 2024-06-06 07:51 AM PDT -Ruizmichael,2024-06-28T16:13:12Z,- Ruizmichael unassigned from issue: [6581](https://github.com/hackforla/website/issues/6581#issuecomment-2195396302) at 2024-06-28 09:13 AM PDT -RunshengSarinaLiu,2024-10-14T01:17:52Z,- RunshengSarinaLiu commented on issue: [7007](https://github.com/hackforla/website/issues/7007#issuecomment-2409583597) at 2024-10-13 06:17 PM PDT -RunshengSarinaLiu,2024-11-07T17:33:07Z,- RunshengSarinaLiu opened issue: [7709](https://github.com/hackforla/website/issues/7709) at 2024-11-07 09:33 AM PST -RyanCahela,2999,SKILLS ISSUE -RyanCahela,2019-10-08T02:04:40Z,- RyanCahela assigned to issue: [150](https://github.com/hackforla/website/issues/150) at 2019-10-07 07:04 PM PDT -RyanCahela,2019-10-09T02:14:13Z,- RyanCahela opened pull request: [154](https://github.com/hackforla/website/pull/154) at 2019-10-08 07:14 PM PDT -RyanCahela,2019-11-12T03:18:34Z,- RyanCahela unassigned from issue: [150](https://github.com/hackforla/website/issues/150) at 2019-11-11 07:18 PM PST -RyanCahela,2019-12-25T02:59:51Z,- RyanCahela closed issue by PR 154: [150](https://github.com/hackforla/website/issues/150#event-2907491093) at 2019-12-24 06:59 PM PST -RyanCahela,2019-12-25T02:59:51Z,- RyanCahela pull request merged: [154](https://github.com/hackforla/website/pull/154#event-2907491097) at 2019-12-24 06:59 PM PST -RyanCahela,2022-03-22T04:24:56Z,- RyanCahela opened issue: [2999](https://github.com/hackforla/website/issues/2999) at 2022-03-21 09:24 PM PDT -RyanCahela,2022-03-23T03:04:01Z,- RyanCahela assigned to issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1074712112) at 2022-03-22 08:04 PM PDT -RyanCahela,2022-03-23T17:48:26Z,- RyanCahela assigned to issue: [2911](https://github.com/hackforla/website/issues/2911#issuecomment-1055957771) at 2022-03-23 10:48 AM PDT -RyanCahela,2022-03-23T17:53:00Z,- RyanCahela commented on issue: [2911](https://github.com/hackforla/website/issues/2911#issuecomment-1076641449) at 2022-03-23 10:53 AM PDT -RyanCahela,2022-03-23T21:05:38Z,- RyanCahela opened pull request: [3006](https://github.com/hackforla/website/pull/3006) at 2022-03-23 02:05 PM PDT -RyanCahela,2022-03-23T21:28:50Z,- RyanCahela commented on pull request: [3006](https://github.com/hackforla/website/pull/3006#issuecomment-1076838416) at 2022-03-23 02:28 PM PDT -RyanCahela,2022-03-24T02:59:51Z,- RyanCahela pull request merged: [3006](https://github.com/hackforla/website/pull/3006#event-6296102900) at 2022-03-23 07:59 PM PDT -RyanCahela,2022-03-24T18:07:46Z,- RyanCahela assigned to issue: [2089](https://github.com/hackforla/website/issues/2089#issuecomment-903313941) at 2022-03-24 11:07 AM PDT -RyanCahela,2022-03-24T18:12:04Z,- RyanCahela commented on issue: [2089](https://github.com/hackforla/website/issues/2089#issuecomment-1077905402) at 2022-03-24 11:12 AM PDT -RyanCahela,2022-03-24T19:37:21Z,- RyanCahela opened pull request: [3008](https://github.com/hackforla/website/pull/3008) at 2022-03-24 12:37 PM PDT -RyanCahela,2022-03-27T19:22:53Z,- RyanCahela commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1080002742) at 2022-03-27 12:22 PM PDT -RyanCahela,2022-03-30T22:29:35Z,- RyanCahela commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1083697968) at 2022-03-30 03:29 PM PDT -RyanCahela,2022-03-31T02:05:58Z,- RyanCahela pull request merged: [3008](https://github.com/hackforla/website/pull/3008#event-6340106138) at 2022-03-30 07:05 PM PDT -RyanCahela,2022-04-12T20:14:14Z,- RyanCahela assigned to issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1086560598) at 2022-04-12 01:14 PM PDT -RyanCahela,2022-04-12T20:14:41Z,- RyanCahela unassigned from issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1086560598) at 2022-04-12 01:14 PM PDT -RyanCahela,2022-04-12T20:16:47Z,- RyanCahela assigned to issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1086560598) at 2022-04-12 01:16 PM PDT -RyanCahela,2022-04-12T20:18:11Z,- RyanCahela commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1097175379) at 2022-04-12 01:18 PM PDT -RyanCahela,2022-04-12T21:41:58Z,- RyanCahela opened pull request: [3046](https://github.com/hackforla/website/pull/3046) at 2022-04-12 02:41 PM PDT -RyanCahela,2022-04-14T04:02:04Z,- RyanCahela pull request merged: [3046](https://github.com/hackforla/website/pull/3046#event-6431659012) at 2022-04-13 09:02 PM PDT -RyanCahela,2022-04-20T21:59:54Z,- RyanCahela commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1104493989) at 2022-04-20 02:59 PM PDT -RyanCahela,2022-04-20T22:04:14Z,- RyanCahela assigned to issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1086903359) at 2022-04-20 03:04 PM PDT -RyanCahela,2022-04-20T22:05:38Z,- RyanCahela commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104497608) at 2022-04-20 03:05 PM PDT -RyanCahela,2022-04-20T22:18:00Z,- RyanCahela commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104513498) at 2022-04-20 03:18 PM PDT -RyanCahela,2022-04-20T22:19:34Z,- RyanCahela unassigned from issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104513498) at 2022-04-20 03:19 PM PDT -RyanCahela,2022-04-20T22:27:07Z,- RyanCahela assigned to issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1090993404) at 2022-04-20 03:27 PM PDT -RyanCahela,2022-04-20T22:27:51Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1104518831) at 2022-04-20 03:27 PM PDT -RyanCahela,2022-04-22T20:56:20Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1106854869) at 2022-04-22 01:56 PM PDT -RyanCahela,2022-04-28T17:41:21Z,- RyanCahela commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1112489348) at 2022-04-28 10:41 AM PDT -RyanCahela,2022-04-28T20:05:40Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1112607370) at 2022-04-28 01:05 PM PDT -RyanCahela,2022-05-01T16:33:13Z,- RyanCahela submitted pull request review: [3083](https://github.com/hackforla/website/pull/3083#pullrequestreview-958609137) at 2022-05-01 09:33 AM PDT -RyanCahela,2022-05-05T17:45:19Z,- RyanCahela commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1118875181) at 2022-05-05 10:45 AM PDT -RyanCahela,2022-05-12T20:01:11Z,- RyanCahela opened pull request: [3134](https://github.com/hackforla/website/pull/3134) at 2022-05-12 01:01 PM PDT -RyanCahela,2022-05-13T23:41:56Z,- RyanCahela commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126580728) at 2022-05-13 04:41 PM PDT -RyanCahela,2022-05-14T16:09:23Z,- RyanCahela pull request merged: [3134](https://github.com/hackforla/website/pull/3134#event-6610193603) at 2022-05-14 09:09 AM PDT -RyanCahela,2022-06-30T19:02:49Z,- RyanCahela commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1171572229) at 2022-06-30 12:02 PM PDT -RyanCahela,2022-07-02T23:00:37Z,- RyanCahela closed issue as completed: [2999](https://github.com/hackforla/website/issues/2999#event-6922628162) at 2022-07-02 04:00 PM PDT -RyanCahela,2022-07-02T23:14:17Z,- RyanCahela assigned to issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1154386071) at 2022-07-02 04:14 PM PDT -RyanCahela,2022-07-02T23:17:41Z,- RyanCahela commented on issue: [3217](https://github.com/hackforla/website/issues/3217#issuecomment-1172977044) at 2022-07-02 04:17 PM PDT -RyanCahela,2022-07-05T20:03:32Z,- RyanCahela opened pull request: [3330](https://github.com/hackforla/website/pull/3330) at 2022-07-05 01:03 PM PDT -RyanCahela,2022-07-09T01:09:02Z,- RyanCahela pull request merged: [3330](https://github.com/hackforla/website/pull/3330#event-6963248410) at 2022-07-08 06:09 PM PDT -ryanfchase,2023-10-26T07:50:01Z,- ryanfchase opened issue: [5786](https://github.com/hackforla/website/issues/5786) at 2023-10-26 12:50 AM PDT -ryanfchase,2024-01-09T00:26:55Z,- ryanfchase commented on issue: [5786](https://github.com/hackforla/website/issues/5786#issuecomment-1882047104) at 2024-01-08 04:26 PM PST -ryanfchase,2025-01-15T03:35:25Z,- ryanfchase opened issue: [7831](https://github.com/hackforla/website/issues/7831) at 2025-01-14 07:35 PM PST -ryanfkeller,8136,SKILLS ISSUE -ryanfkeller,2025-05-14T03:10:09Z,- ryanfkeller opened issue: [8136](https://github.com/hackforla/website/issues/8136) at 2025-05-13 08:10 PM PDT -ryanfkeller,2025-05-14T03:16:20Z,- ryanfkeller assigned to issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2878505946) at 2025-05-13 08:16 PM PDT -ryanfkeller,2025-05-14T03:29:00Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2878524986) at 2025-05-13 08:29 PM PDT -ryanfkeller,2025-05-14T21:07:12Z,- ryanfkeller assigned to issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-05-14 02:07 PM PDT -ryanfkeller,2025-05-14T21:26:59Z,- ryanfkeller commented on issue: [7782](https://github.com/hackforla/website/issues/7782#issuecomment-2881622161) at 2025-05-14 02:26 PM PDT -ryanfkeller,2025-05-14T21:48:44Z,- ryanfkeller opened pull request: [8140](https://github.com/hackforla/website/pull/8140) at 2025-05-14 02:48 PM PDT -ryanfkeller,2025-05-14T21:54:43Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2881675311) at 2025-05-14 02:54 PM PDT -ryanfkeller,2025-05-15T00:22:56Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2881883839) at 2025-05-14 05:22 PM PDT -ryanfkeller,2025-05-16T02:49:18Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2885497498) at 2025-05-15 07:49 PM PDT -ryanfkeller,2025-05-20T23:47:30Z,- ryanfkeller commented on issue: [7782](https://github.com/hackforla/website/issues/7782#issuecomment-2896076566) at 2025-05-20 04:47 PM PDT -ryanfkeller,2025-05-20T23:48:00Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2896077056) at 2025-05-20 04:48 PM PDT -ryanfkeller,2025-05-21T02:24:19Z,- ryanfkeller pull request merged: [8140](https://github.com/hackforla/website/pull/8140#event-17744370904) at 2025-05-20 07:24 PM PDT -ryanfkeller,2025-05-21T16:53:20Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2898622720) at 2025-05-21 09:53 AM PDT -ryanfkeller,2025-05-21T16:55:50Z,- ryanfkeller assigned to issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2889135248) at 2025-05-21 09:55 AM PDT -ryanfkeller,2025-05-21T16:59:23Z,- ryanfkeller commented on issue: [7954](https://github.com/hackforla/website/issues/7954#issuecomment-2898636590) at 2025-05-21 09:59 AM PDT -ryanfkeller,2025-05-21T17:04:24Z,- ryanfkeller commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2898648449) at 2025-05-21 10:04 AM PDT -ryanfkeller,2025-05-23T04:19:48Z,- ryanfkeller submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2863108426) at 2025-05-22 09:19 PM PDT -ryanfkeller,2025-05-24T22:11:14Z,- ryanfkeller submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2866529776) at 2025-05-24 03:11 PM PDT -ryanfkeller,2025-05-25T17:06:46Z,- ryanfkeller opened pull request: [8159](https://github.com/hackforla/website/pull/8159) at 2025-05-25 10:06 AM PDT -ryanfkeller,2025-05-27T20:21:43Z,- ryanfkeller commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2913920054) at 2025-05-27 01:21 PM PDT -ryanfkeller,2025-05-27T20:33:02Z,- ryanfkeller submitted pull request review: [8160](https://github.com/hackforla/website/pull/8160#pullrequestreview-2872550440) at 2025-05-27 01:33 PM PDT -ryanfkeller,2025-05-27T21:10:08Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2914057462) at 2025-05-27 02:10 PM PDT -ryanfkeller,2025-05-28T01:55:29Z,- ryanfkeller pull request merged: [8159](https://github.com/hackforla/website/pull/8159#event-17841462430) at 2025-05-27 06:55 PM PDT -ryanfkeller,2025-05-28T16:12:26Z,- ryanfkeller commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2916895799) at 2025-05-28 09:12 AM PDT -ryanfkeller,2025-05-28T21:31:56Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2917665884) at 2025-05-28 02:31 PM PDT -ryanfkeller,2025-05-28T21:37:39Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2917676593) at 2025-05-28 02:37 PM PDT -ryanfkeller,2025-05-30T22:59:29Z,- ryanfkeller commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2923685656) at 2025-05-30 03:59 PM PDT -ryanfkeller,2025-05-30T23:19:51Z,- ryanfkeller submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2882860391) at 2025-05-30 04:19 PM PDT -ryanfkeller,2025-05-31T00:46:17Z,- ryanfkeller submitted pull request review: [8149](https://github.com/hackforla/website/pull/8149#pullrequestreview-2882966380) at 2025-05-30 05:46 PM PDT -ryanfkeller,2025-06-04T17:23:40Z,- ryanfkeller submitted pull request review: [8162](https://github.com/hackforla/website/pull/8162#pullrequestreview-2897534279) at 2025-06-04 10:23 AM PDT -ryanfkeller,2025-06-04T17:25:32Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940826138) at 2025-06-04 10:25 AM PDT -ryanfkeller,2025-06-04T17:42:56Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940868251) at 2025-06-04 10:42 AM PDT -ryanfkeller,2025-06-04T17:44:07Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940870990) at 2025-06-04 10:44 AM PDT -ryanfkeller,2025-06-04T17:44:51Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2940872762) at 2025-06-04 10:44 AM PDT -ryanfkeller,2025-06-04T17:46:01Z,- ryanfkeller assigned to issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2767880222) at 2025-06-04 10:46 AM PDT -ryanfkeller,2025-06-04T17:48:20Z,- ryanfkeller commented on issue: [7642](https://github.com/hackforla/website/issues/7642#issuecomment-2940881628) at 2025-06-04 10:48 AM PDT -ryanfkeller,2025-06-05T23:27:35Z,- ryanfkeller opened pull request: [8172](https://github.com/hackforla/website/pull/8172) at 2025-06-05 04:27 PM PDT -ryanfkeller,2025-06-08T16:44:36Z,- ryanfkeller pull request merged: [8172](https://github.com/hackforla/website/pull/8172#event-18045546490) at 2025-06-08 09:44 AM PDT -ryanfkeller,2025-06-10T22:04:24Z,- ryanfkeller submitted pull request review: [8177](https://github.com/hackforla/website/pull/8177#pullrequestreview-2915145767) at 2025-06-10 03:04 PM PDT -ryanfkeller,2025-06-10T22:12:41Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2960699383) at 2025-06-10 03:12 PM PDT -ryanfkeller,2025-06-12T15:53:49Z,- ryanfkeller opened issue: [8183](https://github.com/hackforla/website/issues/8183) at 2025-06-12 08:53 AM PDT -ryanfkeller,2025-06-13T02:17:19Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-2968777986) at 2025-06-12 07:17 PM PDT -ryanfkeller,2025-06-13T19:28:19Z,- ryanfkeller assigned to issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2767603092) at 2025-06-13 12:28 PM PDT -ryanfkeller,2025-06-13T19:30:35Z,- ryanfkeller commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2971427756) at 2025-06-13 12:30 PM PDT -ryanfkeller,2025-06-17T01:33:39Z,- ryanfkeller opened issue: [8185](https://github.com/hackforla/website/issues/8185) at 2025-06-16 06:33 PM PDT -ryanfkeller,2025-06-17T01:38:00Z,- ryanfkeller commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2978649177) at 2025-06-16 06:38 PM PDT -ryanfkeller,2025-06-20T16:50:29Z,- ryanfkeller commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992248429) at 2025-06-20 09:50 AM PDT -ryanfkeller,2025-06-20T17:04:51Z,- ryanfkeller submitted pull request review: [8173](https://github.com/hackforla/website/pull/8173#pullrequestreview-2946836009) at 2025-06-20 10:04 AM PDT -ryanfkeller,2025-06-20T17:27:14Z,- ryanfkeller commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2992340204) at 2025-06-20 10:27 AM PDT -ryanfkeller,2025-06-20T17:32:38Z,- ryanfkeller commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992349614) at 2025-06-20 10:32 AM PDT -ryanfkeller,2025-06-21T18:12:53Z,- ryanfkeller commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993705291) at 2025-06-21 11:12 AM PDT -ryanfkeller,2025-06-24T15:37:42Z,- ryanfkeller commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3000995735) at 2025-06-24 08:37 AM PDT -ryanfkeller,2025-06-27T19:21:11Z,- ryanfkeller opened issue: [8233](https://github.com/hackforla/website/issues/8233) at 2025-06-27 12:21 PM PDT -ryanfkeller,2025-06-30T22:40:35Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021052578) at 2025-06-30 03:40 PM PDT -ryanfkeller,2025-06-30T22:41:40Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021055171) at 2025-06-30 03:41 PM PDT -ryanfkeller,2025-06-30T22:43:36Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021058851) at 2025-06-30 03:43 PM PDT -ryanfkeller,2025-06-30T22:49:41Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3021074961) at 2025-06-30 03:49 PM PDT -ryanfkeller,2025-07-03T17:52:27Z,- ryanfkeller commented on issue: [8185](https://github.com/hackforla/website/issues/8185#issuecomment-3033086602) at 2025-07-03 10:52 AM PDT -ryanfkeller,2025-07-04T00:33:22Z,- ryanfkeller submitted pull request review: [8241](https://github.com/hackforla/website/pull/8241#pullrequestreview-2985008573) at 2025-07-03 05:33 PM PDT -ryanfkeller,2025-07-29T17:36:19Z,- ryanfkeller commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3133441556) at 2025-07-29 10:36 AM PDT -ryanfkeller,2025-08-04T16:12:11Z,- ryanfkeller submitted pull request review: [8253](https://github.com/hackforla/website/pull/8253#pullrequestreview-3084892392) at 2025-08-04 09:12 AM PDT -ryanfkeller,2025-08-06T17:26:18Z,- ryanfkeller submitted pull request review: [8253](https://github.com/hackforla/website/pull/8253#pullrequestreview-3093579318) at 2025-08-06 10:26 AM PDT -ryanfkeller,2025-08-07T23:29:07Z,- ryanfkeller commented on issue: [8136](https://github.com/hackforla/website/issues/8136#issuecomment-3166123625) at 2025-08-07 04:29 PM PDT -RyanGehris,3913,SKILLS ISSUE -RyanGehris,2023-02-01T04:58:25Z,- RyanGehris opened issue: [3913](https://github.com/hackforla/website/issues/3913) at 2023-01-31 08:58 PM PST -RyanGehris,2023-02-01T04:58:31Z,- RyanGehris assigned to issue: [3913](https://github.com/hackforla/website/issues/3913) at 2023-01-31 08:58 PM PST -RyanGehris,2023-02-02T20:24:08Z,- RyanGehris assigned to issue: [3895](https://github.com/hackforla/website/issues/3895) at 2023-02-02 12:24 PM PST -RyanGehris,2023-02-02T20:30:01Z,- RyanGehris commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1414335076) at 2023-02-02 12:30 PM PST -RyanGehris,2023-02-03T00:19:29Z,- RyanGehris commented on issue: [3895](https://github.com/hackforla/website/issues/3895#issuecomment-1414542647) at 2023-02-02 04:19 PM PST -RyanGehris,2023-02-03T01:14:30Z,- RyanGehris opened pull request: [3927](https://github.com/hackforla/website/pull/3927) at 2023-02-02 05:14 PM PST -RyanGehris,2023-02-03T01:22:40Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1414584986) at 2023-02-02 05:22 PM PST -RyanGehris,2023-02-07T04:15:44Z,- RyanGehris commented on pull request: [3927](https://github.com/hackforla/website/pull/3927#issuecomment-1420176104) at 2023-02-06 08:15 PM PST -RyanGehris,2023-02-10T01:57:47Z,- RyanGehris assigned to issue: [3856](https://github.com/hackforla/website/issues/3856) at 2023-02-09 05:57 PM PST -RyanGehris,2023-02-10T01:59:40Z,- RyanGehris unassigned from issue: [3856](https://github.com/hackforla/website/issues/3856#issuecomment-1425070509) at 2023-02-09 05:59 PM PST -RyanGehris,2023-02-12T00:51:23Z,- RyanGehris commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1426910791) at 2023-02-11 04:51 PM PST -RyanGehris,2023-02-12T02:12:13Z,- RyanGehris submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1294645220) at 2023-02-11 06:12 PM PST -RyanGehris,2023-02-14T04:40:19Z,- RyanGehris assigned to issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1410597638) at 2023-02-13 08:40 PM PST -RyanGehris,2023-02-14T04:42:27Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429105870) at 2023-02-13 08:42 PM PST -RyanGehris,2023-02-14T05:36:23Z,- RyanGehris unassigned from issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429105870) at 2023-02-13 09:36 PM PST -RyanGehris,2023-02-14T05:36:56Z,- RyanGehris assigned to issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429105870) at 2023-02-13 09:36 PM PST -RyanGehris,2023-02-14T05:38:25Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429150085) at 2023-02-13 09:38 PM PST -RyanGehris,2023-02-14T05:48:20Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1429156003) at 2023-02-13 09:48 PM PST -RyanGehris,2023-02-15T00:15:29Z,- RyanGehris commented on issue: [3694](https://github.com/hackforla/website/issues/3694#issuecomment-1430565588) at 2023-02-14 04:15 PM PST -RyanGehris,2023-02-15T00:27:38Z,- RyanGehris opened pull request: [3977](https://github.com/hackforla/website/pull/3977) at 2023-02-14 04:27 PM PST -RyanGehris,2023-02-15T17:03:41Z,- RyanGehris pull request merged: [3977](https://github.com/hackforla/website/pull/3977#event-8528297780) at 2023-02-15 09:03 AM PST -RyanGehris,2023-02-15T23:58:11Z,- RyanGehris commented on pull request: [3982](https://github.com/hackforla/website/pull/3982#issuecomment-1432249581) at 2023-02-15 03:58 PM PST -RyanGehris,2023-02-15T23:58:41Z,- RyanGehris commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1432250445) at 2023-02-15 03:58 PM PST -RyanGehris,2023-02-16T00:15:47Z,- RyanGehris submitted pull request review: [3982](https://github.com/hackforla/website/pull/3982#pullrequestreview-1300568535) at 2023-02-15 04:15 PM PST -RyanGehris,2023-02-16T00:30:19Z,- RyanGehris submitted pull request review: [3980](https://github.com/hackforla/website/pull/3980#pullrequestreview-1300578653) at 2023-02-15 04:30 PM PST -RyanGehris,2023-02-16T00:35:35Z,- RyanGehris commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1432290004) at 2023-02-15 04:35 PM PST -RyanGehris,2023-02-22T04:15:52Z,- RyanGehris commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1439414693) at 2023-02-21 08:15 PM PST -RyanGehris,2023-02-22T04:48:25Z,- RyanGehris commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1439434677) at 2023-02-21 08:48 PM PST -RyanGehris,2023-02-22T04:51:05Z,- RyanGehris submitted pull request review: [4020](https://github.com/hackforla/website/pull/4020#pullrequestreview-1308522996) at 2023-02-21 08:51 PM PST -RyanGehris,2023-02-22T22:27:17Z,- RyanGehris submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1310372942) at 2023-02-22 02:27 PM PST -RyanGehris,2023-02-22T22:45:09Z,- RyanGehris commented on pull request: [4020](https://github.com/hackforla/website/pull/4020#issuecomment-1440937929) at 2023-02-22 02:45 PM PST -RyanGehris,2023-02-24T06:32:20Z,- RyanGehris assigned to issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1427262247) at 2023-02-23 10:32 PM PST -RyanGehris,2023-02-24T06:33:28Z,- RyanGehris commented on issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1442869482) at 2023-02-23 10:33 PM PST -RyanGehris,2023-02-24T22:50:39Z,- RyanGehris submitted pull request review: [4034](https://github.com/hackforla/website/pull/4034#pullrequestreview-1314350541) at 2023-02-24 02:50 PM PST -RyanGehris,2023-03-01T00:30:50Z,- RyanGehris commented on issue: [3960](https://github.com/hackforla/website/issues/3960#issuecomment-1449132437) at 2023-02-28 04:30 PM PST -RyanGehris,2023-03-01T05:55:19Z,- RyanGehris opened pull request: [4076](https://github.com/hackforla/website/pull/4076) at 2023-02-28 09:55 PM PST -RyanGehris,2023-03-01T17:40:55Z,- RyanGehris commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1450572158) at 2023-03-01 09:40 AM PST -RyanGehris,2023-03-01T17:59:09Z,- RyanGehris submitted pull request review: [4053](https://github.com/hackforla/website/pull/4053#pullrequestreview-1320359604) at 2023-03-01 09:59 AM PST -RyanGehris,2023-03-02T22:12:31Z,- RyanGehris commented on pull request: [4076](https://github.com/hackforla/website/pull/4076#issuecomment-1452620496) at 2023-03-02 02:12 PM PST -RyanGehris,2023-03-03T18:12:44Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1453911810) at 2023-03-03 10:12 AM PST -RyanGehris,2023-03-05T06:07:10Z,- RyanGehris pull request merged: [4076](https://github.com/hackforla/website/pull/4076#event-8667392041) at 2023-03-04 10:07 PM PST -RyanGehris,2023-03-09T00:25:31Z,- RyanGehris commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1461076588) at 2023-03-08 04:25 PM PST -RyanGehris,2023-03-09T00:27:27Z,- RyanGehris commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1461078290) at 2023-03-08 04:27 PM PST -RyanGehris,2023-03-09T00:29:39Z,- RyanGehris commented on pull request: [4126](https://github.com/hackforla/website/pull/4126#issuecomment-1461080052) at 2023-03-08 04:29 PM PST -RyanGehris,2023-03-09T00:30:31Z,- RyanGehris commented on pull request: [4131](https://github.com/hackforla/website/pull/4131#issuecomment-1461080716) at 2023-03-08 04:30 PM PST -RyanGehris,2023-03-09T00:31:07Z,- RyanGehris commented on pull request: [4133](https://github.com/hackforla/website/pull/4133#issuecomment-1461081236) at 2023-03-08 04:31 PM PST -RyanGehris,2023-03-09T00:52:50Z,- RyanGehris submitted pull request review: [4106](https://github.com/hackforla/website/pull/4106#pullrequestreview-1331831688) at 2023-03-08 04:52 PM PST -RyanGehris,2023-03-09T02:08:18Z,- RyanGehris submitted pull request review: [4126](https://github.com/hackforla/website/pull/4126#pullrequestreview-1331879774) at 2023-03-08 06:08 PM PST -RyanGehris,2023-03-09T02:16:57Z,- RyanGehris submitted pull request review: [4133](https://github.com/hackforla/website/pull/4133#pullrequestreview-1331885187) at 2023-03-08 06:16 PM PST -RyanGehris,2023-03-09T02:50:14Z,- RyanGehris submitted pull request review: [4131](https://github.com/hackforla/website/pull/4131#pullrequestreview-1331906694) at 2023-03-08 06:50 PM PST -RyanGehris,2023-03-09T05:00:13Z,- RyanGehris commented on pull request: [4108](https://github.com/hackforla/website/pull/4108#issuecomment-1461281145) at 2023-03-08 09:00 PM PST -RyanGehris,2023-03-14T21:04:39Z,- RyanGehris opened pull request: [4182](https://github.com/hackforla/website/pull/4182) at 2023-03-14 02:04 PM PDT -RyanGehris,2023-03-14T21:04:57Z,- RyanGehris pull request closed w/o merging: [4182](https://github.com/hackforla/website/pull/4182#event-8748508028) at 2023-03-14 02:04 PM PDT -RyanGehris,2023-03-14T21:32:59Z,- RyanGehris submitted pull request review: [4108](https://github.com/hackforla/website/pull/4108#pullrequestreview-1340311328) at 2023-03-14 02:32 PM PDT -RyanGehris,2023-03-17T01:48:33Z,- RyanGehris submitted pull request review: [4194](https://github.com/hackforla/website/pull/4194#pullrequestreview-1345157411) at 2023-03-16 06:48 PM PDT -RyanGehris,2023-03-22T00:26:56Z,- RyanGehris commented on pull request: [4228](https://github.com/hackforla/website/pull/4228#issuecomment-1478759727) at 2023-03-21 05:26 PM PDT -RyanGehris,2023-03-22T00:31:26Z,- RyanGehris assigned to issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1476672283) at 2023-03-21 05:31 PM PDT -RyanGehris,2023-03-22T00:35:09Z,- RyanGehris commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1478764850) at 2023-03-21 05:35 PM PDT -RyanGehris,2023-03-22T02:06:00Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1478822194) at 2023-03-21 07:06 PM PDT -RyanGehris,2023-03-22T03:42:12Z,- RyanGehris submitted pull request review: [4228](https://github.com/hackforla/website/pull/4228#pullrequestreview-1351675090) at 2023-03-21 08:42 PM PDT -RyanGehris,2023-03-24T23:07:11Z,- RyanGehris commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1483559227) at 2023-03-24 04:07 PM PDT -RyanGehris,2023-03-27T00:36:31Z,- RyanGehris unassigned from issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1483559227) at 2023-03-26 05:36 PM PDT -RyanGehris,2023-03-28T21:30:40Z,- RyanGehris assigned to issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1449413433) at 2023-03-28 02:30 PM PDT -RyanGehris,2023-03-28T21:32:24Z,- RyanGehris commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1487622064) at 2023-03-28 02:32 PM PDT -RyanGehris,2023-03-28T21:48:21Z,- RyanGehris submitted pull request review: [4304](https://github.com/hackforla/website/pull/4304#pullrequestreview-1361954762) at 2023-03-28 02:48 PM PDT -RyanGehris,2023-03-29T00:01:17Z,- RyanGehris submitted pull request review: [4305](https://github.com/hackforla/website/pull/4305#pullrequestreview-1362077374) at 2023-03-28 05:01 PM PDT -RyanGehris,2023-03-29T00:43:53Z,- RyanGehris commented on pull request: [4305](https://github.com/hackforla/website/pull/4305#issuecomment-1487787352) at 2023-03-28 05:43 PM PDT -RyanGehris,2023-03-29T02:20:35Z,- RyanGehris commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1487854119) at 2023-03-28 07:20 PM PDT -RyanGehris,2023-03-30T00:33:07Z,- RyanGehris submitted pull request review: [4297](https://github.com/hackforla/website/pull/4297#pullrequestreview-1364165656) at 2023-03-29 05:33 PM PDT -RyanGehris,2023-03-30T00:44:45Z,- RyanGehris commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1489526844) at 2023-03-29 05:44 PM PDT -RyanGehris,2023-03-30T04:17:54Z,- RyanGehris commented on pull request: [4340](https://github.com/hackforla/website/pull/4340#issuecomment-1489666953) at 2023-03-29 09:17 PM PDT -RyanGehris,2023-03-30T04:18:57Z,- RyanGehris commented on pull request: [4341](https://github.com/hackforla/website/pull/4341#issuecomment-1489667515) at 2023-03-29 09:18 PM PDT -RyanGehris,2023-03-30T04:31:17Z,- RyanGehris submitted pull request review: [4340](https://github.com/hackforla/website/pull/4340#pullrequestreview-1364308376) at 2023-03-29 09:31 PM PDT -RyanGehris,2023-03-30T04:44:21Z,- RyanGehris submitted pull request review: [4341](https://github.com/hackforla/website/pull/4341#pullrequestreview-1364318395) at 2023-03-29 09:44 PM PDT -RyanGehris,2023-03-30T23:21:44Z,- RyanGehris commented on pull request: [4297](https://github.com/hackforla/website/pull/4297#issuecomment-1491088247) at 2023-03-30 04:21 PM PDT -RyanGehris,2023-04-06T00:14:52Z,- RyanGehris submitted pull request review: [4391](https://github.com/hackforla/website/pull/4391#pullrequestreview-1373889832) at 2023-04-05 05:14 PM PDT -RyanGehris,2023-04-06T00:19:17Z,- RyanGehris commented on pull request: [4391](https://github.com/hackforla/website/pull/4391#issuecomment-1498323396) at 2023-04-05 05:19 PM PDT -RyanGehris,2023-04-06T00:25:56Z,- RyanGehris submitted pull request review: [4421](https://github.com/hackforla/website/pull/4421#pullrequestreview-1373900076) at 2023-04-05 05:25 PM PDT -RyanGehris,2023-04-06T00:38:24Z,- RyanGehris submitted pull request review: [4425](https://github.com/hackforla/website/pull/4425#pullrequestreview-1373907697) at 2023-04-05 05:38 PM PDT -RyanGehris,2023-04-08T22:57:12Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1500993032) at 2023-04-08 03:57 PM PDT -RyanGehris,2023-04-09T05:16:55Z,- RyanGehris submitted pull request review: [4444](https://github.com/hackforla/website/pull/4444#pullrequestreview-1376858919) at 2023-04-08 10:16 PM PDT -RyanGehris,2023-04-11T17:51:15Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1503841954) at 2023-04-11 10:51 AM PDT -RyanGehris,2023-04-11T17:54:42Z,- RyanGehris commented on issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1503846178) at 2023-04-11 10:54 AM PDT -RyanGehris,2023-04-11T17:54:58Z,- RyanGehris unassigned from issue: [3732](https://github.com/hackforla/website/issues/3732#issuecomment-1503846178) at 2023-04-11 10:54 AM PDT -RyanGehris,2023-04-11T18:36:30Z,- RyanGehris submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1379866766) at 2023-04-11 11:36 AM PDT -RyanGehris,2023-04-12T00:15:57Z,- RyanGehris submitted pull request review: [4461](https://github.com/hackforla/website/pull/4461#pullrequestreview-1380245597) at 2023-04-11 05:15 PM PDT -RyanGehris,2023-04-13T04:56:33Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1382629097) at 2023-04-12 09:56 PM PDT -RyanGehris,2023-04-14T00:19:32Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1384423884) at 2023-04-13 05:19 PM PDT -RyanGehris,2023-04-14T02:21:55Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1384509213) at 2023-04-13 07:21 PM PDT -RyanGehris,2023-04-20T20:45:13Z,- RyanGehris submitted pull request review: [4495](https://github.com/hackforla/website/pull/4495#pullrequestreview-1394737618) at 2023-04-20 01:45 PM PDT -RyanGehris,2023-04-20T20:46:25Z,- RyanGehris commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1516923984) at 2023-04-20 01:46 PM PDT -RyanGehris,2023-04-21T04:14:06Z,- RyanGehris commented on pull request: [4495](https://github.com/hackforla/website/pull/4495#issuecomment-1517233684) at 2023-04-20 09:14 PM PDT -RyanGehris,2023-04-28T01:13:10Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1526843178) at 2023-04-27 06:13 PM PDT -RyanGehris,2023-05-19T05:06:13Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1553999422) at 2023-05-18 10:06 PM PDT -RyanGehris,2023-06-28T02:39:12Z,- RyanGehris commented on issue: [3913](https://github.com/hackforla/website/issues/3913#issuecomment-1610572811) at 2023-06-27 07:39 PM PDT -ryantpham,2749,SKILLS ISSUE -ryantpham,2022-02-08T03:52:37Z,- ryantpham opened issue: [2749](https://github.com/hackforla/website/issues/2749) at 2022-02-07 07:52 PM PST -s-sanger,2022-07-10T18:16:34Z,- s-sanger opened issue: [3344](https://github.com/hackforla/website/issues/3344) at 2022-07-10 11:16 AM PDT -s-sanger,2022-07-10T18:31:19Z,- s-sanger opened issue: [3346](https://github.com/hackforla/website/issues/3346) at 2022-07-10 11:31 AM PDT -s-sanger,2022-07-10T18:38:41Z,- s-sanger opened issue: [3350](https://github.com/hackforla/website/issues/3350) at 2022-07-10 11:38 AM PDT -s-sanger,2023-01-30T20:06:17Z,- s-sanger opened pull request: [3902](https://github.com/hackforla/website/pull/3902) at 2023-01-30 12:06 PM PST -s-sanger,2023-01-31T03:20:53Z,- s-sanger pull request closed w/o merging: [3902](https://github.com/hackforla/website/pull/3902#event-8394828780) at 2023-01-30 07:20 PM PST -s-sanger,2023-05-18T18:06:24Z,- s-sanger opened issue: [4692](https://github.com/hackforla/website/issues/4692) at 2023-05-18 11:06 AM PDT diff --git a/github-actions/activity-trigger/member_activity_history_bot_75.csv b/github-actions/activity-trigger/member_activity_history_bot_75.csv deleted file mode 100644 index 3aadbb21f7..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_75.csv +++ /dev/null @@ -1,4490 +0,0 @@ -username,datetime,message -mktr4n,7573,SKILLS ISSUE -mktr4n,2024-10-08T03:31:39Z,- mktr4n opened issue: [7573](https://github.com/hackforla/website/issues/7573) at 2024-10-07 08:31 PM PDT -mktr4n,2024-11-26T21:56:58Z,- mktr4n assigned to issue: [7573](https://github.com/hackforla/website/issues/7573) at 2024-11-26 01:56 PM PST -mlkara,4715,SKILLS ISSUE -mlkara,2023-05-24T03:12:19Z,- mlkara opened issue: [4715](https://github.com/hackforla/website/issues/4715) at 2023-05-23 08:12 PM PDT -mlkara,2023-05-24T03:14:13Z,- mlkara assigned to issue: [4715](https://github.com/hackforla/website/issues/4715) at 2023-05-23 08:14 PM PDT -mlkara,2023-05-27T00:24:32Z,- mlkara assigned to issue: [4489](https://github.com/hackforla/website/issues/4489) at 2023-05-26 05:24 PM PDT -mlkara,2023-05-27T20:14:25Z,- mlkara commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565664486) at 2023-05-27 01:14 PM PDT -mlkara,2023-06-02T22:49:08Z,- mlkara opened pull request: [4773](https://github.com/hackforla/website/pull/4773) at 2023-06-02 03:49 PM PDT -mlkara,2023-06-08T08:04:40Z,- mlkara pull request merged: [4773](https://github.com/hackforla/website/pull/4773#event-9469029819) at 2023-06-08 01:04 AM PDT -mmcclanahan,7207,SKILLS ISSUE -mmcclanahan,2024-08-06T03:12:10Z,- mmcclanahan opened issue: [7207](https://github.com/hackforla/website/issues/7207) at 2024-08-05 08:12 PM PDT -mmcclanahan,2024-08-06T03:12:35Z,- mmcclanahan assigned to issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2270300929) at 2024-08-05 08:12 PM PDT -mmcclanahan,2024-08-06T03:50:06Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2270328427) at 2024-08-05 08:50 PM PDT -mmcclanahan,2024-08-07T01:33:09Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2272451617) at 2024-08-06 06:33 PM PDT -mmcclanahan,2024-08-07T02:06:40Z,- mmcclanahan assigned to issue: [7139](https://github.com/hackforla/website/issues/7139) at 2024-08-06 07:06 PM PDT -mmcclanahan,2024-08-07T02:24:46Z,- mmcclanahan commented on issue: [7139](https://github.com/hackforla/website/issues/7139#issuecomment-2272495281) at 2024-08-06 07:24 PM PDT -mmcclanahan,2024-08-08T02:02:30Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2274797942) at 2024-08-07 07:02 PM PDT -mmcclanahan,2024-08-08T02:38:32Z,- mmcclanahan opened pull request: [7244](https://github.com/hackforla/website/pull/7244) at 2024-08-07 07:38 PM PDT -mmcclanahan,2024-08-08T06:15:24Z,- mmcclanahan commented on pull request: [7244](https://github.com/hackforla/website/pull/7244#issuecomment-2275032625) at 2024-08-07 11:15 PM PDT -mmcclanahan,2024-08-08T19:32:01Z,- mmcclanahan pull request merged: [7244](https://github.com/hackforla/website/pull/7244#event-13811378578) at 2024-08-08 12:32 PM PDT -mmcclanahan,2024-08-09T05:16:54Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2277168830) at 2024-08-08 10:16 PM PDT -mmcclanahan,2024-08-09T05:30:44Z,- mmcclanahan assigned to issue: [7178](https://github.com/hackforla/website/issues/7178) at 2024-08-08 10:30 PM PDT -mmcclanahan,2024-08-09T05:35:39Z,- mmcclanahan commented on issue: [7178](https://github.com/hackforla/website/issues/7178#issuecomment-2277185149) at 2024-08-08 10:35 PM PDT -mmcclanahan,2024-08-09T06:21:26Z,- mmcclanahan opened pull request: [7257](https://github.com/hackforla/website/pull/7257) at 2024-08-08 11:21 PM PDT -mmcclanahan,2024-08-09T19:20:35Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2278596553) at 2024-08-09 12:20 PM PDT -mmcclanahan,2024-08-11T17:03:31Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2282825849) at 2024-08-11 10:03 AM PDT -mmcclanahan,2024-08-15T14:58:23Z,- mmcclanahan pull request merged: [7257](https://github.com/hackforla/website/pull/7257#event-13897244558) at 2024-08-15 07:58 AM PDT -mmcclanahan,2024-08-18T03:36:50Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2295097727) at 2024-08-17 08:36 PM PDT -mmcclanahan,2024-08-18T03:57:17Z,- mmcclanahan commented on pull request: [7302](https://github.com/hackforla/website/pull/7302#issuecomment-2295100524) at 2024-08-17 08:57 PM PDT -mmcclanahan,2024-08-18T03:58:17Z,- mmcclanahan submitted pull request review: [7302](https://github.com/hackforla/website/pull/7302#pullrequestreview-2244208601) at 2024-08-17 08:58 PM PDT -mmcclanahan,2024-08-18T03:59:19Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2295100783) at 2024-08-17 08:59 PM PDT -mmcclanahan,2024-08-18T04:07:12Z,- mmcclanahan commented on pull request: [7299](https://github.com/hackforla/website/pull/7299#issuecomment-2295102304) at 2024-08-17 09:07 PM PDT -mmcclanahan,2024-08-18T04:09:59Z,- mmcclanahan submitted pull request review: [7299](https://github.com/hackforla/website/pull/7299#pullrequestreview-2244209566) at 2024-08-17 09:09 PM PDT -mmcclanahan,2024-08-18T04:10:52Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2295103204) at 2024-08-17 09:10 PM PDT -mmcclanahan,2024-08-20T21:09:58Z,- mmcclanahan commented on pull request: [7312](https://github.com/hackforla/website/pull/7312#issuecomment-2299771959) at 2024-08-20 02:09 PM PDT -mmcclanahan,2024-08-20T21:26:55Z,- mmcclanahan submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2249124060) at 2024-08-20 02:26 PM PDT -mmcclanahan,2024-08-20T21:28:07Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2299796754) at 2024-08-20 02:28 PM PDT -mmcclanahan,2024-08-20T21:45:47Z,- mmcclanahan submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2249148927) at 2024-08-20 02:45 PM PDT -mmcclanahan,2024-08-20T21:57:50Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2299832635) at 2024-08-20 02:57 PM PDT -mmcclanahan,2024-08-20T22:49:28Z,- mmcclanahan submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2249236498) at 2024-08-20 03:49 PM PDT -mmcclanahan,2024-08-20T22:49:59Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2299890948) at 2024-08-20 03:49 PM PDT -mmcclanahan,2024-08-21T22:27:56Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2303152794) at 2024-08-21 03:27 PM PDT -mmcclanahan,2024-08-21T22:32:30Z,- mmcclanahan assigned to issue: [7145](https://github.com/hackforla/website/issues/7145) at 2024-08-21 03:32 PM PDT -mmcclanahan,2024-08-21T22:33:56Z,- mmcclanahan commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2303185753) at 2024-08-21 03:33 PM PDT -mmcclanahan,2024-08-21T22:55:29Z,- mmcclanahan assigned to issue: [7281](https://github.com/hackforla/website/issues/7281) at 2024-08-21 03:55 PM PDT -mmcclanahan,2024-08-21T22:55:42Z,- mmcclanahan unassigned from issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303251610) at 2024-08-21 03:55 PM PDT -mmcclanahan,2024-08-21T22:57:54Z,- mmcclanahan unassigned from issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2303185753) at 2024-08-21 03:57 PM PDT -mmcclanahan,2024-08-21T22:58:09Z,- mmcclanahan assigned to issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303251610) at 2024-08-21 03:58 PM PDT -mmcclanahan,2024-08-21T23:09:05Z,- mmcclanahan commented on issue: [7281](https://github.com/hackforla/website/issues/7281#issuecomment-2303263755) at 2024-08-21 04:09 PM PDT -mmcclanahan,2024-08-21T23:52:54Z,- mmcclanahan opened pull request: [7340](https://github.com/hackforla/website/pull/7340) at 2024-08-21 04:52 PM PDT -mmcclanahan,2024-08-22T18:11:26Z,- mmcclanahan submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2255339168) at 2024-08-22 11:11 AM PDT -mmcclanahan,2024-08-27T16:53:46Z,- mmcclanahan pull request merged: [7340](https://github.com/hackforla/website/pull/7340#event-14032147942) at 2024-08-27 09:53 AM PDT -mmcclanahan,2024-08-28T04:08:38Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2314190442) at 2024-08-27 09:08 PM PDT -mmcclanahan,2024-09-02T21:07:05Z,- mmcclanahan submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2276152267) at 2024-09-02 02:07 PM PDT -mmcclanahan,2024-09-13T07:45:38Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2348261782) at 2024-09-13 12:45 AM PDT -mmcclanahan,2024-09-17T22:36:59Z,- mmcclanahan commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2357051611) at 2024-09-17 03:36 PM PDT -mmcclanahan,2024-09-17T23:36:43Z,- mmcclanahan submitted pull request review: [7447](https://github.com/hackforla/website/pull/7447#pullrequestreview-2311351898) at 2024-09-17 04:36 PM PDT -mmcclanahan,2024-09-17T23:37:19Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2357205111) at 2024-09-17 04:37 PM PDT -mmcclanahan,2024-09-18T00:00:24Z,- mmcclanahan submitted pull request review: [7462](https://github.com/hackforla/website/pull/7462#pullrequestreview-2311368142) at 2024-09-17 05:00 PM PDT -mmcclanahan,2024-09-18T00:00:43Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2357224387) at 2024-09-17 05:00 PM PDT -mmcclanahan,2024-09-18T03:03:49Z,- mmcclanahan commented on pull request: [7466](https://github.com/hackforla/website/pull/7466#issuecomment-2357399580) at 2024-09-17 08:03 PM PDT -mmcclanahan,2024-09-18T06:29:04Z,- mmcclanahan submitted pull request review: [7466](https://github.com/hackforla/website/pull/7466#pullrequestreview-2311748685) at 2024-09-17 11:29 PM PDT -mmcclanahan,2024-09-18T06:30:42Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2357613454) at 2024-09-17 11:30 PM PDT -mmcclanahan,2024-09-27T07:15:42Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2378569017) at 2024-09-27 12:15 AM PDT -mmcclanahan,2024-09-29T18:41:19Z,- mmcclanahan assigned to issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2295303122) at 2024-09-29 11:41 AM PDT -mmcclanahan,2024-09-29T18:43:10Z,- mmcclanahan commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381458251) at 2024-09-29 11:43 AM PDT -mmcclanahan,2024-09-29T20:02:48Z,- mmcclanahan commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381584814) at 2024-09-29 01:02 PM PDT -mmcclanahan,2024-09-29T20:03:29Z,- mmcclanahan opened issue: [7541](https://github.com/hackforla/website/issues/7541) at 2024-09-29 01:03 PM PDT -mmcclanahan,2024-09-29T20:09:44Z,- mmcclanahan opened issue: [7542](https://github.com/hackforla/website/issues/7542) at 2024-09-29 01:09 PM PDT -mmcclanahan,2024-09-29T20:11:11Z,- mmcclanahan commented on issue: [7301](https://github.com/hackforla/website/issues/7301#issuecomment-2381587437) at 2024-09-29 01:11 PM PDT -mmcclanahan,2024-09-30T22:56:06Z,- mmcclanahan opened issue: [7547](https://github.com/hackforla/website/issues/7547) at 2024-09-30 03:56 PM PDT -mmcclanahan,2024-09-30T22:59:46Z,- mmcclanahan opened issue: [7548](https://github.com/hackforla/website/issues/7548) at 2024-09-30 03:59 PM PDT -mmcclanahan,2024-09-30T23:02:35Z,- mmcclanahan opened issue: [7549](https://github.com/hackforla/website/issues/7549) at 2024-09-30 04:02 PM PDT -mmcclanahan,2024-09-30T23:09:20Z,- mmcclanahan opened issue: [7550](https://github.com/hackforla/website/issues/7550) at 2024-09-30 04:09 PM PDT -mmcclanahan,2024-10-03T08:07:25Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2390783634) at 2024-10-03 01:07 AM PDT -mmcclanahan,2024-10-03T23:36:50Z,- mmcclanahan assigned to issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2365292643) at 2024-10-03 04:36 PM PDT -mmcclanahan,2024-10-03T23:38:30Z,- mmcclanahan commented on issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392514174) at 2024-10-03 04:38 PM PDT -mmcclanahan,2024-10-05T06:37:34Z,- mmcclanahan opened pull request: [7564](https://github.com/hackforla/website/pull/7564) at 2024-10-04 11:37 PM PDT -mmcclanahan,2024-10-05T06:38:40Z,- mmcclanahan unassigned from issue: [2293](https://github.com/hackforla/website/issues/2293#issuecomment-2392514174) at 2024-10-04 11:38 PM PDT -mmcclanahan,2024-10-08T03:32:31Z,- mmcclanahan commented on pull request: [7564](https://github.com/hackforla/website/pull/7564#issuecomment-2398712011) at 2024-10-07 08:32 PM PDT -mmcclanahan,2024-10-10T02:24:54Z,- mmcclanahan pull request merged: [7564](https://github.com/hackforla/website/pull/7564#event-14581913636) at 2024-10-09 07:24 PM PDT -mmcclanahan,2024-10-12T04:12:01Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2408345546) at 2024-10-11 09:12 PM PDT -mmcclanahan,2024-10-12T04:18:49Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2408360513) at 2024-10-11 09:18 PM PDT -mmcclanahan,2024-10-26T00:01:44Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2439059600) at 2024-10-25 05:01 PM PDT -mmcclanahan,2024-10-26T00:16:05Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2439071754) at 2024-10-25 05:16 PM PDT -mmcclanahan,2024-11-14T07:24:30Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2475601891) at 2024-11-13 11:24 PM PST -mmcclanahan,2024-11-16T02:44:52Z,- mmcclanahan commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2480348351) at 2024-11-15 06:44 PM PST -mmcclanahan,2024-11-16T02:45:05Z,- mmcclanahan submitted pull request review: [7718](https://github.com/hackforla/website/pull/7718#pullrequestreview-2440267942) at 2024-11-15 06:45 PM PST -mmcclanahan,2024-12-27T22:32:33Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2564070484) at 2024-12-27 02:32 PM PST -mmcclanahan,2025-01-11T19:53:19Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2585389967) at 2025-01-11 11:53 AM PST -mmcclanahan,2025-01-13T23:18:31Z,- mmcclanahan commented on issue: [7207](https://github.com/hackforla/website/issues/7207#issuecomment-2588430450) at 2025-01-13 03:18 PM PST -mmogri,3150,SKILLS ISSUE -mmogri,2022-05-17T02:57:06Z,- mmogri opened issue: [3150](https://github.com/hackforla/website/issues/3150) at 2022-05-16 07:57 PM PDT -mmogri,2022-05-21T07:47:27Z,- mmogri assigned to issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1128352706) at 2022-05-21 12:47 AM PDT -mmogri,2022-05-23T05:55:47Z,- mmogri assigned to issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1045544360) at 2022-05-22 10:55 PM PDT -mmogri,2022-05-23T05:57:56Z,- mmogri unassigned from issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1045544360) at 2022-05-22 10:57 PM PDT -mmogri,2022-05-23T05:58:00Z,- mmogri assigned to issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1045544360) at 2022-05-22 10:58 PM PDT -mmogri,2022-05-23T06:39:40Z,- mmogri opened pull request: [3168](https://github.com/hackforla/website/pull/3168) at 2022-05-22 11:39 PM PDT -mmogri,2022-05-23T06:55:42Z,- mmogri commented on issue: [2797](https://github.com/hackforla/website/issues/2797#issuecomment-1134256000) at 2022-05-22 11:55 PM PDT -mmogri,2022-05-23T20:49:09Z,- mmogri assigned to issue: [2923](https://github.com/hackforla/website/issues/2923#issuecomment-1058593878) at 2022-05-23 01:49 PM PDT -mmogri,2022-05-23T20:53:56Z,- mmogri commented on issue: [2923](https://github.com/hackforla/website/issues/2923#issuecomment-1135128342) at 2022-05-23 01:53 PM PDT -mmogri,2022-05-24T02:03:00Z,- mmogri pull request merged: [3168](https://github.com/hackforla/website/pull/3168#event-6665193511) at 2022-05-23 07:03 PM PDT -mmogri,2022-05-24T08:57:15Z,- mmogri opened pull request: [3173](https://github.com/hackforla/website/pull/3173) at 2022-05-24 01:57 AM PDT -mmogri,2022-05-30T21:45:16Z,- mmogri commented on pull request: [3173](https://github.com/hackforla/website/pull/3173#issuecomment-1141494126) at 2022-05-30 02:45 PM PDT -mmogri,2022-05-30T21:49:23Z,- mmogri commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1141495738) at 2022-05-30 02:49 PM PDT -mmogri,2022-05-30T21:51:54Z,- mmogri commented on issue: [2923](https://github.com/hackforla/website/issues/2923#issuecomment-1141496769) at 2022-05-30 02:51 PM PDT -mmogri,2022-06-01T01:55:27Z,- mmogri pull request merged: [3173](https://github.com/hackforla/website/pull/3173#event-6714300628) at 2022-05-31 06:55 PM PDT -mmogri,2022-06-01T21:58:03Z,- mmogri assigned to issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1038008422) at 2022-06-01 02:58 PM PDT -mmogri,2022-06-01T22:00:22Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1144183570) at 2022-06-01 03:00 PM PDT -mmogri,2022-06-19T15:59:36Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1159764233) at 2022-06-19 08:59 AM PDT -mmogri,2022-06-19T18:10:23Z,- mmogri commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1159786462) at 2022-06-19 11:10 AM PDT -mmogri,2022-06-19T18:33:44Z,- mmogri commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159789734) at 2022-06-19 11:33 AM PDT -mmogri,2022-06-19T19:07:42Z,- mmogri submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1011558840) at 2022-06-19 12:07 PM PDT -mmogri,2022-06-29T02:13:24Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1169457631) at 2022-06-28 07:13 PM PDT -mmogri,2022-07-10T17:16:48Z,- mmogri commented on issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1179766069) at 2022-07-10 10:16 AM PDT -mmogri,2022-09-19T02:34:44Z,- mmogri unassigned from issue: [2777](https://github.com/hackforla/website/issues/2777#issuecomment-1250483942) at 2022-09-18 07:34 PM PDT -moazDev1,6602,SKILLS ISSUE -moazDev1,2024-04-09T02:56:36Z,- moazDev1 opened issue: [6602](https://github.com/hackforla/website/issues/6602) at 2024-04-08 07:56 PM PDT -moazDev1,2024-04-09T03:12:00Z,- moazDev1 commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044076828) at 2024-04-08 08:12 PM PDT -moazDev1,2024-04-09T03:15:33Z,- moazDev1 commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044079283) at 2024-04-08 08:15 PM PDT -moazDev1,2024-04-09T03:40:01Z,- moazDev1 assigned to issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2044079283) at 2024-04-08 08:40 PM PDT -moazDev1,2024-04-14T23:41:25Z,- moazDev1 assigned to issue: [6170](https://github.com/hackforla/website/issues/6170#issuecomment-2024045843) at 2024-04-14 04:41 PM PDT -moazDev1,2024-04-15T00:27:00Z,- moazDev1 opened pull request: [6647](https://github.com/hackforla/website/pull/6647) at 2024-04-14 05:27 PM PDT -moazDev1,2024-04-15T06:13:27Z,- moazDev1 pull request merged: [6647](https://github.com/hackforla/website/pull/6647#event-12463560986) at 2024-04-14 11:13 PM PDT -moazDev1,2024-04-15T06:17:05Z,- moazDev1 reopened pull request: [6647](https://github.com/hackforla/website/pull/6647#event-12463560986) at 2024-04-14 11:17 PM PDT -moazDev1,2024-04-15T06:17:23Z,- moazDev1 pull request merged: [6647](https://github.com/hackforla/website/pull/6647#event-12463596120) at 2024-04-14 11:17 PM PDT -moazDev1,2024-04-15T06:24:47Z,- moazDev1 reopened pull request: [6647](https://github.com/hackforla/website/pull/6647#event-12463596120) at 2024-04-14 11:24 PM PDT -moazDev1,2024-04-15T09:30:08Z,- moazDev1 pull request merged: [6647](https://github.com/hackforla/website/pull/6647#event-12466179835) at 2024-04-15 02:30 AM PDT -moazDev1,2024-04-16T00:02:59Z,- moazDev1 unassigned from issue: [6170](https://github.com/hackforla/website/issues/6170#event-12466180134) at 2024-04-15 05:02 PM PDT -moazDev1,2024-04-16T00:10:42Z,- moazDev1 assigned to issue: [6170](https://github.com/hackforla/website/issues/6170#event-12466180134) at 2024-04-15 05:10 PM PDT -moazDev1,2024-04-20T01:53:05Z,- moazDev1 commented on issue: [6602](https://github.com/hackforla/website/issues/6602#issuecomment-2067509829) at 2024-04-19 06:53 PM PDT -moazDev1,2024-04-20T02:23:57Z,- moazDev1 assigned to issue: [6582](https://github.com/hackforla/website/issues/6582#issuecomment-2040833387) at 2024-04-19 07:23 PM PDT -moazDev1,2024-04-20T02:26:09Z,- moazDev1 commented on issue: [6582](https://github.com/hackforla/website/issues/6582#issuecomment-2067518179) at 2024-04-19 07:26 PM PDT -moazDev1,2024-04-20T09:17:32Z,- moazDev1 closed issue by PR 1: [6582](https://github.com/hackforla/website/issues/6582#event-12547370175) at 2024-04-20 02:17 AM PDT -moazDev1,2024-04-20T09:45:42Z,- moazDev1 opened pull request: [6690](https://github.com/hackforla/website/pull/6690) at 2024-04-20 02:45 AM PDT -moazDev1,2024-04-22T07:35:19Z,- moazDev1 commented on pull request: [6707](https://github.com/hackforla/website/pull/6707#issuecomment-2068690142) at 2024-04-22 12:35 AM PDT -moazDev1,2024-04-22T07:57:35Z,- moazDev1 submitted pull request review: [6707](https://github.com/hackforla/website/pull/6707#pullrequestreview-2014043139) at 2024-04-22 12:57 AM PDT -moazDev1,2024-04-24T20:26:19Z,- moazDev1 commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2075783526) at 2024-04-24 01:26 PM PDT -moazDev1,2024-04-25T19:03:44Z,- moazDev1 pull request merged: [6690](https://github.com/hackforla/website/pull/6690#event-12614067053) at 2024-04-25 12:03 PM PDT -moazDev1,2024-04-28T01:29:25Z,- moazDev1 assigned to issue: [6640](https://github.com/hackforla/website/issues/6640) at 2024-04-27 06:29 PM PDT -moazDev1,2024-04-28T01:31:42Z,- moazDev1 commented on issue: [6640](https://github.com/hackforla/website/issues/6640#issuecomment-2081280579) at 2024-04-27 06:31 PM PDT -moazDev1,2024-04-28T02:25:56Z,- moazDev1 opened pull request: [6774](https://github.com/hackforla/website/pull/6774) at 2024-04-27 07:25 PM PDT -moazDev1,2024-04-28T05:49:57Z,- moazDev1 commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2081342957) at 2024-04-27 10:49 PM PDT -moazDev1,2024-04-28T06:00:03Z,- moazDev1 submitted pull request review: [6770](https://github.com/hackforla/website/pull/6770#pullrequestreview-2026903066) at 2024-04-27 11:00 PM PDT -moazDev1,2024-04-28T18:57:15Z,- moazDev1 closed issue as completed: [6602](https://github.com/hackforla/website/issues/6602#event-12635573195) at 2024-04-28 11:57 AM PDT -moazDev1,2024-04-30T03:45:51Z,- moazDev1 commented on pull request: [6774](https://github.com/hackforla/website/pull/6774#issuecomment-2084323086) at 2024-04-29 08:45 PM PDT -moazDev1,2024-05-01T04:07:41Z,- moazDev1 assigned to issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2053923988) at 2024-04-30 09:07 PM PDT -moazDev1,2024-05-01T04:09:33Z,- moazDev1 commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2087946466) at 2024-04-30 09:09 PM PDT -moazDev1,2024-05-01T19:29:39Z,- moazDev1 pull request merged: [6774](https://github.com/hackforla/website/pull/6774#event-12673990013) at 2024-05-01 12:29 PM PDT -moazDev1,2024-05-02T07:13:48Z,- moazDev1 opened pull request: [6806](https://github.com/hackforla/website/pull/6806) at 2024-05-02 12:13 AM PDT -moazDev1,2024-05-03T10:21:34Z,- moazDev1 commented on pull request: [6808](https://github.com/hackforla/website/pull/6808#issuecomment-2092720617) at 2024-05-03 03:21 AM PDT -moazDev1,2024-05-03T10:28:44Z,- moazDev1 submitted pull request review: [6808](https://github.com/hackforla/website/pull/6808#pullrequestreview-2037858349) at 2024-05-03 03:28 AM PDT -moazDev1,2024-05-10T01:18:56Z,- moazDev1 commented on issue: [6637](https://github.com/hackforla/website/issues/6637#issuecomment-2103680305) at 2024-05-09 06:18 PM PDT -moazDev1,2024-05-10T01:20:59Z,- moazDev1 commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2103681915) at 2024-05-09 06:20 PM PDT -moazDev1,2024-05-15T00:27:57Z,- moazDev1 commented on pull request: [6806](https://github.com/hackforla/website/pull/6806#issuecomment-2111372461) at 2024-05-14 05:27 PM PDT -moazDev1,2024-05-16T22:21:12Z,- moazDev1 pull request merged: [6806](https://github.com/hackforla/website/pull/6806#event-12840586265) at 2024-05-16 03:21 PM PDT -moazDev1,2024-05-23T00:06:20Z,- moazDev1 assigned to issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2103571357) at 2024-05-22 05:06 PM PDT -moazDev1,2024-05-23T00:08:43Z,- moazDev1 commented on issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2125970071) at 2024-05-22 05:08 PM PDT -moazDev1,2024-05-23T00:35:08Z,- moazDev1 opened pull request: [6888](https://github.com/hackforla/website/pull/6888) at 2024-05-22 05:35 PM PDT -moazDev1,2024-05-23T20:46:41Z,- moazDev1 pull request merged: [6888](https://github.com/hackforla/website/pull/6888#event-12915029503) at 2024-05-23 01:46 PM PDT -moazDev1,2024-06-06T22:33:28Z,- moazDev1 opened pull request: [6969](https://github.com/hackforla/website/pull/6969) at 2024-06-06 03:33 PM PDT -moazDev1,2024-06-12T02:20:50Z,- moazDev1 commented on pull request: [6989](https://github.com/hackforla/website/pull/6989#issuecomment-2161978792) at 2024-06-11 07:20 PM PDT -moazDev1,2024-06-12T08:52:20Z,- moazDev1 commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2162465274) at 2024-06-12 01:52 AM PDT -moazDev1,2024-06-13T00:55:39Z,- moazDev1 submitted pull request review: [6989](https://github.com/hackforla/website/pull/6989#pullrequestreview-2114474782) at 2024-06-12 05:55 PM PDT -moazDev1,2024-06-24T04:19:22Z,- moazDev1 opened pull request: [7058](https://github.com/hackforla/website/pull/7058) at 2024-06-23 09:19 PM PDT -moazDev1,2024-06-24T04:19:53Z,- moazDev1 pull request closed w/o merging: [7058](https://github.com/hackforla/website/pull/7058#event-13259785224) at 2024-06-23 09:19 PM PDT -moazDev1,2024-07-25T08:17:10Z,- moazDev1 commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2249737425) at 2024-07-25 01:17 AM PDT -moazDev1,2024-07-31T09:42:42Z,- moazDev1 submitted pull request review: [7132](https://github.com/hackforla/website/pull/7132#pullrequestreview-2209689512) at 2024-07-31 02:42 AM PDT -moazDev1,2024-08-02T09:36:51Z,- moazDev1 submitted pull request review: [7132](https://github.com/hackforla/website/pull/7132#pullrequestreview-2215168919) at 2024-08-02 02:36 AM PDT -MohamadAlsyouf,2022-06-01T03:13:34Z,- MohamadAlsyouf opened issue: [3186](https://github.com/hackforla/website/issues/3186) at 2022-05-31 08:13 PM PDT -MohamadAlsyouf,2022-06-02T03:29:11Z,- MohamadAlsyouf closed issue as completed: [3186](https://github.com/hackforla/website/issues/3186#event-6725048905) at 2022-06-01 08:29 PM PDT -MohamadAlsyouf,2022-06-02T03:29:14Z,- MohamadAlsyouf reopened issue: [3186](https://github.com/hackforla/website/issues/3186#event-6725048905) at 2022-06-01 08:29 PM PDT -MohamadAlsyouf,2022-07-14T00:39:30Z,- MohamadAlsyouf commented on issue: [3186](https://github.com/hackforla/website/issues/3186#issuecomment-1183819195) at 2022-07-13 05:39 PM PDT -MohamedAlsyouf,3186,SKILLS ISSUE -MohamedMafaz,2023-06-09T16:38:20Z,- MohamedMafaz opened issue: [4795](https://github.com/hackforla/website/issues/4795) at 2023-06-09 09:38 AM PDT -mohassan99,7841,SKILLS ISSUE -mohassan99,2025-01-21T07:19:44Z,- mohassan99 opened issue: [7841](https://github.com/hackforla/website/issues/7841) at 2025-01-20 11:19 PM PST -monaecurbeam98,6876,SKILLS ISSUE -monaecurbeam98,2024-05-22T02:55:19Z,- monaecurbeam98 opened issue: [6876](https://github.com/hackforla/website/issues/6876) at 2024-05-21 07:55 PM PDT -monaecurbeam98,2024-05-22T03:03:26Z,- monaecurbeam98 closed issue as completed: [6876](https://github.com/hackforla/website/issues/6876#event-12887643508) at 2024-05-21 08:03 PM PDT -Monomer9,8187,SKILLS ISSUE -Monomer9,2025-06-17T03:09:41Z,- Monomer9 opened issue: [8187](https://github.com/hackforla/website/issues/8187) at 2025-06-16 08:09 PM PDT -Monomer9,2025-06-17T03:16:27Z,- Monomer9 assigned to issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2978780293) at 2025-06-16 08:16 PM PDT -Monomer9,2025-06-17T03:45:16Z,- Monomer9 commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2978826330) at 2025-06-16 08:45 PM PDT -Monomer9,2025-06-21T02:38:57Z,- Monomer9 commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2993266060) at 2025-06-20 07:38 PM PDT -Monomer9,2025-06-21T05:22:29Z,- Monomer9 commented on issue: [8187](https://github.com/hackforla/website/issues/8187#issuecomment-2993340190) at 2025-06-20 10:22 PM PDT -Monomer9,2025-06-21T16:52:53Z,- Monomer9 assigned to issue: [8004](https://github.com/hackforla/website/issues/8004) at 2025-06-21 09:52 AM PDT -Monomer9,2025-06-21T18:21:24Z,- Monomer9 opened pull request: [8199](https://github.com/hackforla/website/pull/8199) at 2025-06-21 11:21 AM PDT -mrodz,6884,SKILLS ISSUE -mrodz,2024-05-22T03:46:56Z,- mrodz opened issue: [6884](https://github.com/hackforla/website/issues/6884) at 2024-05-21 08:46 PM PDT -mrodz,2024-05-22T03:47:00Z,- mrodz assigned to issue: [6884](https://github.com/hackforla/website/issues/6884) at 2024-05-21 08:47 PM PDT -mrodz,2024-05-26T17:25:56Z,- mrodz submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2079759623) at 2024-05-26 10:25 AM PDT -mrodz,2024-05-26T17:30:59Z,- mrodz assigned to issue: [6736](https://github.com/hackforla/website/issues/6736) at 2024-05-26 10:30 AM PDT -mrodz,2024-05-26T17:46:12Z,- mrodz commented on issue: [6736](https://github.com/hackforla/website/issues/6736#issuecomment-2132297469) at 2024-05-26 10:46 AM PDT -mrodz,2024-05-26T17:56:00Z,- mrodz opened pull request: [6899](https://github.com/hackforla/website/pull/6899) at 2024-05-26 10:56 AM PDT -mrodz,2024-05-27T04:51:33Z,- mrodz pull request merged: [6899](https://github.com/hackforla/website/pull/6899#event-12940373225) at 2024-05-26 09:51 PM PDT -mrodz,2024-05-27T22:31:58Z,- mrodz commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2134107974) at 2024-05-27 03:31 PM PDT -mrodz,2024-05-28T01:16:35Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2134195412) at 2024-05-27 06:16 PM PDT -mrodz,2024-05-28T01:32:59Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2134206959) at 2024-05-27 06:32 PM PDT -mrodz,2024-05-28T01:32:59Z,- mrodz closed issue as completed: [6884](https://github.com/hackforla/website/issues/6884#event-12950654379) at 2024-05-27 06:32 PM PDT -mrodz,2024-05-29T18:05:01Z,- mrodz commented on pull request: [6891](https://github.com/hackforla/website/pull/6891#issuecomment-2137982780) at 2024-05-29 11:05 AM PDT -mrodz,2024-05-29T18:11:12Z,- mrodz submitted pull request review: [6891](https://github.com/hackforla/website/pull/6891#pullrequestreview-2086090698) at 2024-05-29 11:11 AM PDT -mrodz,2024-05-30T15:05:53Z,- mrodz submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2088542723) at 2024-05-30 08:05 AM PDT -mrodz,2024-06-05T23:05:23Z,- mrodz assigned to issue: [6861](https://github.com/hackforla/website/issues/6861) at 2024-06-05 04:05 PM PDT -mrodz,2024-06-05T23:07:06Z,- mrodz commented on issue: [6861](https://github.com/hackforla/website/issues/6861#issuecomment-2151103355) at 2024-06-05 04:07 PM PDT -mrodz,2024-06-05T23:30:15Z,- mrodz opened pull request: [6965](https://github.com/hackforla/website/pull/6965) at 2024-06-05 04:30 PM PDT -mrodz,2024-06-06T16:35:36Z,- mrodz commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2152953305) at 2024-06-06 09:35 AM PDT -mrodz,2024-06-06T16:39:13Z,- mrodz commented on pull request: [6963](https://github.com/hackforla/website/pull/6963#issuecomment-2152961028) at 2024-06-06 09:39 AM PDT -mrodz,2024-06-06T16:39:50Z,- mrodz submitted pull request review: [6963](https://github.com/hackforla/website/pull/6963#pullrequestreview-2102489775) at 2024-06-06 09:39 AM PDT -mrodz,2024-06-09T22:23:28Z,- mrodz submitted pull request review: [6975](https://github.com/hackforla/website/pull/6975#pullrequestreview-2106379614) at 2024-06-09 03:23 PM PDT -mrodz,2024-06-10T03:17:15Z,- mrodz pull request merged: [6965](https://github.com/hackforla/website/pull/6965#event-13094260106) at 2024-06-09 08:17 PM PDT -mrodz,2024-06-23T17:14:10Z,- mrodz assigned to issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2174656396) at 2024-06-23 10:14 AM PDT -mrodz,2024-06-23T17:16:35Z,- mrodz commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2185168242) at 2024-06-23 10:16 AM PDT -mrodz,2024-06-23T22:52:23Z,- mrodz closed issue by PR 7062: [6786](https://github.com/hackforla/website/issues/6786#event-13258395421) at 2024-06-23 03:52 PM PDT -mrodz,2024-06-23T22:56:50Z,- mrodz reopened issue: [6786](https://github.com/hackforla/website/issues/6786#event-13258395421) at 2024-06-23 03:56 PM PDT -mrodz,2024-06-23T22:57:39Z,- mrodz commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2185349312) at 2024-06-23 03:57 PM PDT -mrodz,2024-06-24T17:55:22Z,- mrodz opened pull request: [7062](https://github.com/hackforla/website/pull/7062) at 2024-06-24 10:55 AM PDT -mrodz,2024-06-26T02:33:21Z,- mrodz commented on pull request: [7057](https://github.com/hackforla/website/pull/7057#issuecomment-2190424952) at 2024-06-25 07:33 PM PDT -mrodz,2024-06-26T02:37:12Z,- mrodz submitted pull request review: [7057](https://github.com/hackforla/website/pull/7057#pullrequestreview-2140316429) at 2024-06-25 07:37 PM PDT -mrodz,2024-06-27T18:25:42Z,- mrodz commented on pull request: [7062](https://github.com/hackforla/website/pull/7062#issuecomment-2195417301) at 2024-06-27 11:25 AM PDT -mrodz,2024-06-30T22:10:39Z,- mrodz commented on pull request: [7062](https://github.com/hackforla/website/pull/7062#issuecomment-2198773389) at 2024-06-30 03:10 PM PDT -mrodz,2024-06-30T22:33:41Z,- mrodz pull request merged: [7062](https://github.com/hackforla/website/pull/7062#event-13343195165) at 2024-06-30 03:33 PM PDT -mrodz,2024-07-01T05:04:31Z,- mrodz commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2199242718) at 2024-06-30 10:04 PM PDT -mrodz,2024-07-02T21:55:23Z,- mrodz submitted pull request review: [7073](https://github.com/hackforla/website/pull/7073#pullrequestreview-2154942030) at 2024-07-02 02:55 PM PDT -mrodz,2024-07-15T17:56:24Z,- mrodz assigned to issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2227814446) at 2024-07-15 10:56 AM PDT -mrodz,2024-07-15T22:14:17Z,- mrodz commented on issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2229527848) at 2024-07-15 03:14 PM PDT -mrodz,2024-07-15T22:25:16Z,- mrodz opened pull request: [7122](https://github.com/hackforla/website/pull/7122) at 2024-07-15 03:25 PM PDT -mrodz,2024-07-15T22:27:46Z,- mrodz assigned to issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2200830039) at 2024-07-15 03:27 PM PDT -mrodz,2024-07-15T22:27:53Z,- mrodz unassigned from issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2200830039) at 2024-07-15 03:27 PM PDT -mrodz,2024-07-15T22:29:16Z,- mrodz commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229543227) at 2024-07-15 03:29 PM PDT -mrodz,2024-07-16T00:33:28Z,- mrodz assigned to issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229543227) at 2024-07-15 05:33 PM PDT -mrodz,2024-07-16T00:33:44Z,- mrodz unassigned from issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229736172) at 2024-07-15 05:33 PM PDT -mrodz,2024-07-16T21:54:25Z,- mrodz unassigned from issue: [7118](https://github.com/hackforla/website/issues/7118#issuecomment-2229527848) at 2024-07-16 02:54 PM PDT -mrodz,2024-07-16T21:58:32Z,- mrodz commented on pull request: [7122](https://github.com/hackforla/website/pull/7122#issuecomment-2231893037) at 2024-07-16 02:58 PM PDT -mrodz,2024-07-16T21:58:32Z,- mrodz pull request closed w/o merging: [7122](https://github.com/hackforla/website/pull/7122#event-13527501215) at 2024-07-16 02:58 PM PDT -mrodz,2024-07-16T22:24:44Z,- mrodz assigned to issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2229736172) at 2024-07-16 03:24 PM PDT -mrodz,2024-07-16T22:25:55Z,- mrodz commented on issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2231922439) at 2024-07-16 03:25 PM PDT -mrodz,2024-07-17T00:46:29Z,- mrodz opened pull request: [7126](https://github.com/hackforla/website/pull/7126) at 2024-07-16 05:46 PM PDT -mrodz,2024-07-19T06:52:17Z,- mrodz commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2238485694) at 2024-07-18 11:52 PM PDT -mrodz,2024-07-19T19:44:01Z,- mrodz commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2240010432) at 2024-07-19 12:44 PM PDT -mrodz,2024-07-19T20:50:16Z,- mrodz pull request merged: [7126](https://github.com/hackforla/website/pull/7126#event-13581001828) at 2024-07-19 01:50 PM PDT -mrodz,2024-08-09T05:18:36Z,- mrodz assigned to issue: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-08-08 10:18 PM PDT -mrodz,2024-08-09T05:20:22Z,- mrodz commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2277172058) at 2024-08-08 10:20 PM PDT -mrodz,2024-08-09T07:13:23Z,- mrodz commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2277297683) at 2024-08-09 12:13 AM PDT -mrodz,2024-08-09T23:19:05Z,- mrodz opened pull request: [7260](https://github.com/hackforla/website/pull/7260) at 2024-08-09 04:19 PM PDT -mrodz,2024-08-11T17:36:21Z,- mrodz commented on pull request: [7264](https://github.com/hackforla/website/pull/7264#issuecomment-2282834273) at 2024-08-11 10:36 AM PDT -mrodz,2024-08-11T17:40:16Z,- mrodz commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2282835369) at 2024-08-11 10:40 AM PDT -mrodz,2024-08-13T03:01:32Z,- mrodz submitted pull request review: [7264](https://github.com/hackforla/website/pull/7264#pullrequestreview-2234401778) at 2024-08-12 08:01 PM PDT -mrodz,2024-08-13T07:31:42Z,- mrodz submitted pull request review: [7262](https://github.com/hackforla/website/pull/7262#pullrequestreview-2234744160) at 2024-08-13 12:31 AM PDT -mrodz,2024-08-14T00:05:31Z,- mrodz submitted pull request review: [7262](https://github.com/hackforla/website/pull/7262#pullrequestreview-2236883841) at 2024-08-13 05:05 PM PDT -mrodz,2024-08-15T21:37:22Z,- mrodz submitted pull request review: [7299](https://github.com/hackforla/website/pull/7299#pullrequestreview-2241392277) at 2024-08-15 02:37 PM PDT -mrodz,2024-08-16T05:04:44Z,- mrodz pull request merged: [7260](https://github.com/hackforla/website/pull/7260#event-13906038490) at 2024-08-15 10:04 PM PDT -mrodz,2024-08-17T19:40:06Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294956510) at 2024-08-17 12:40 PM PDT -mrodz,2024-08-17T19:41:21Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294956764) at 2024-08-17 12:41 PM PDT -mrodz,2024-08-17T19:41:51Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294956868) at 2024-08-17 12:41 PM PDT -mrodz,2024-08-17T19:42:28Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957006) at 2024-08-17 12:42 PM PDT -mrodz,2024-08-17T19:42:54Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957088) at 2024-08-17 12:42 PM PDT -mrodz,2024-08-17T19:44:30Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957434) at 2024-08-17 12:44 PM PDT -mrodz,2024-08-17T19:46:14Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294957893) at 2024-08-17 12:46 PM PDT -mrodz,2024-08-17T19:50:59Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294959121) at 2024-08-17 12:50 PM PDT -mrodz,2024-08-17T19:53:19Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294959587) at 2024-08-17 12:53 PM PDT -mrodz,2024-08-17T19:54:35Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294959849) at 2024-08-17 12:54 PM PDT -mrodz,2024-08-17T19:56:20Z,- mrodz commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2294960220) at 2024-08-17 12:56 PM PDT -mrodz,2024-08-17T20:17:35Z,- mrodz submitted pull request review: [7296](https://github.com/hackforla/website/pull/7296#pullrequestreview-2244146984) at 2024-08-17 01:17 PM PDT -mrodz,2024-08-17T20:18:53Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2294974554) at 2024-08-17 01:18 PM PDT -mrodz,2024-08-18T23:20:12Z,- mrodz commented on pull request: [7306](https://github.com/hackforla/website/pull/7306#issuecomment-2295430975) at 2024-08-18 04:20 PM PDT -mrodz,2024-08-18T23:20:28Z,- mrodz commented on pull request: [7311](https://github.com/hackforla/website/pull/7311#issuecomment-2295431040) at 2024-08-18 04:20 PM PDT -mrodz,2024-08-20T00:49:32Z,- mrodz submitted pull request review: [7306](https://github.com/hackforla/website/pull/7306#pullrequestreview-2246774251) at 2024-08-19 05:49 PM PDT -mrodz,2024-08-20T01:04:27Z,- mrodz submitted pull request review: [7311](https://github.com/hackforla/website/pull/7311#pullrequestreview-2246784527) at 2024-08-19 06:04 PM PDT -mrodz,2024-08-20T01:18:11Z,- mrodz submitted pull request review: [7296](https://github.com/hackforla/website/pull/7296#pullrequestreview-2246795154) at 2024-08-19 06:18 PM PDT -mrodz,2024-08-27T07:00:07Z,- mrodz commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2311721644) at 2024-08-27 12:00 AM PDT -mrodz,2024-08-28T04:12:16Z,- mrodz submitted pull request review: [7323](https://github.com/hackforla/website/pull/7323#pullrequestreview-2265091700) at 2024-08-27 09:12 PM PDT -mrodz,2024-08-28T23:54:43Z,- mrodz submitted pull request review: [7323](https://github.com/hackforla/website/pull/7323#pullrequestreview-2267445613) at 2024-08-28 04:54 PM PDT -mrodz,2024-10-01T14:44:11Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2386198687) at 2024-10-01 07:44 AM PDT -mrodz,2024-10-01T16:21:13Z,- mrodz commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2386449816) at 2024-10-01 09:21 AM PDT -mrodz,2024-10-01T16:23:12Z,- mrodz commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2386453827) at 2024-10-01 09:23 AM PDT -mrodz,2024-10-01T18:01:48Z,- mrodz submitted pull request review: [7554](https://github.com/hackforla/website/pull/7554#pullrequestreview-2341046768) at 2024-10-01 11:01 AM PDT -mrodz,2024-10-01T18:37:24Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2386703984) at 2024-10-01 11:37 AM PDT -mrodz,2024-10-01T18:41:23Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2386710956) at 2024-10-01 11:41 AM PDT -mrodz,2024-10-01T18:52:14Z,- mrodz assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2356793436) at 2024-10-01 11:52 AM PDT -mrodz,2024-10-01T23:51:18Z,- mrodz commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2387278976) at 2024-10-01 04:51 PM PDT -mrodz,2024-10-02T00:02:28Z,- mrodz commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2387289101) at 2024-10-01 05:02 PM PDT -mrodz,2024-10-02T00:02:36Z,- mrodz unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2387289101) at 2024-10-01 05:02 PM PDT -mrodz,2024-10-12T03:05:06Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2408323378) at 2024-10-11 08:05 PM PDT -mrodz,2024-10-12T03:49:50Z,- mrodz submitted pull request review: [7538](https://github.com/hackforla/website/pull/7538#pullrequestreview-2363731308) at 2024-10-11 08:49 PM PDT -mrodz,2024-11-19T07:53:58Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2484954929) at 2024-11-18 11:53 PM PST -mrodz,2024-12-11T17:30:16Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2536642796) at 2024-12-11 09:30 AM PST -mrodz,2025-01-15T23:56:38Z,- mrodz commented on issue: [6884](https://github.com/hackforla/website/issues/6884#issuecomment-2594172005) at 2025-01-15 03:56 PM PST -mSharifHub,6953,SKILLS ISSUE -mSharifHub,2024-06-04T03:13:42Z,- mSharifHub opened issue: [6953](https://github.com/hackforla/website/issues/6953) at 2024-06-03 08:13 PM PDT -mSharifHub,2024-06-04T03:14:35Z,- mSharifHub assigned to issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2146488567) at 2024-06-03 08:14 PM PDT -mSharifHub,2024-06-10T19:18:07Z,- mSharifHub assigned to issue: [6934](https://github.com/hackforla/website/issues/6934) at 2024-06-10 12:18 PM PDT -mSharifHub,2024-06-10T19:20:50Z,- mSharifHub commented on issue: [6934](https://github.com/hackforla/website/issues/6934#issuecomment-2159122402) at 2024-06-10 12:20 PM PDT -mSharifHub,2024-06-10T20:02:15Z,- mSharifHub opened pull request: [6982](https://github.com/hackforla/website/pull/6982) at 2024-06-10 01:02 PM PDT -mSharifHub,2024-06-10T20:39:30Z,- mSharifHub submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2108711267) at 2024-06-10 01:39 PM PDT -mSharifHub,2024-06-10T20:52:08Z,- mSharifHub submitted pull request review: [6972](https://github.com/hackforla/website/pull/6972#pullrequestreview-2108730746) at 2024-06-10 01:52 PM PDT -mSharifHub,2024-06-10T20:52:51Z,- mSharifHub submitted pull request review: [6972](https://github.com/hackforla/website/pull/6972#pullrequestreview-2108731690) at 2024-06-10 01:52 PM PDT -mSharifHub,2024-06-11T20:39:15Z,- mSharifHub opened pull request: [6988](https://github.com/hackforla/website/pull/6988) at 2024-06-11 01:39 PM PDT -mSharifHub,2024-06-11T20:49:13Z,- mSharifHub pull request closed w/o merging: [6988](https://github.com/hackforla/website/pull/6988#event-13122650801) at 2024-06-11 01:49 PM PDT -mSharifHub,2024-06-13T19:32:38Z,- mSharifHub assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2159147641) at 2024-06-13 12:32 PM PDT -mSharifHub,2024-06-13T19:32:49Z,- mSharifHub unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2159147641) at 2024-06-13 12:32 PM PDT -mSharifHub,2024-06-13T19:54:15Z,- mSharifHub assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166623518) at 2024-06-13 12:54 PM PDT -mSharifHub,2024-06-13T19:56:51Z,- mSharifHub opened pull request: [7002](https://github.com/hackforla/website/pull/7002) at 2024-06-13 12:56 PM PDT -mSharifHub,2024-06-13T20:12:03Z,- mSharifHub submitted pull request review: [7001](https://github.com/hackforla/website/pull/7001#pullrequestreview-2116816598) at 2024-06-13 01:12 PM PDT -mSharifHub,2024-06-13T20:14:37Z,- mSharifHub submitted pull request review: [6973](https://github.com/hackforla/website/pull/6973#pullrequestreview-2116820795) at 2024-06-13 01:14 PM PDT -mSharifHub,2024-06-13T22:02:30Z,- mSharifHub pull request closed w/o merging: [7002](https://github.com/hackforla/website/pull/7002#event-13153280387) at 2024-06-13 03:02 PM PDT -mSharifHub,2024-06-13T22:08:53Z,- mSharifHub unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166656325) at 2024-06-13 03:08 PM PDT -mSharifHub,2024-06-13T22:54:54Z,- mSharifHub commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166921103) at 2024-06-13 03:54 PM PDT -mSharifHub,2024-06-17T19:41:18Z,- mSharifHub commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2174284708) at 2024-06-17 12:41 PM PDT -mSharifHub,2024-06-17T19:42:08Z,- mSharifHub submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2123773558) at 2024-06-17 12:42 PM PDT -mSharifHub,2024-06-27T21:08:43Z,- mSharifHub assigned to issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1752105078) at 2024-06-27 02:08 PM PDT -mSharifHub,2024-06-27T21:26:35Z,- mSharifHub unassigned from issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2195669231) at 2024-06-27 02:26 PM PDT -mSharifHub,2024-06-27T21:38:45Z,- mSharifHub submitted pull request review: [7074](https://github.com/hackforla/website/pull/7074#pullrequestreview-2146559040) at 2024-06-27 02:38 PM PDT -mSharifHub,2024-06-27T22:21:33Z,- mSharifHub submitted pull request review: [7073](https://github.com/hackforla/website/pull/7073#pullrequestreview-2146616800) at 2024-06-27 03:21 PM PDT -mSharifHub,2024-06-27T22:38:48Z,- mSharifHub submitted pull request review: [7065](https://github.com/hackforla/website/pull/7065#pullrequestreview-2146639932) at 2024-06-27 03:38 PM PDT -mSharifHub,2024-07-02T05:25:37Z,- mSharifHub pull request closed w/o merging: [6982](https://github.com/hackforla/website/pull/6982#event-13359810145) at 2024-07-01 10:25 PM PDT -mSharifHub,2024-07-09T00:10:11Z,- mSharifHub commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2215643793) at 2024-07-08 05:10 PM PDT -mSharifHub,2024-07-10T02:01:34Z,- mSharifHub commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2219333014) at 2024-07-09 07:01 PM PDT -mSharifHub,2024-07-15T01:41:04Z,- mSharifHub assigned to issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2199242303) at 2024-07-14 06:41 PM PDT -mSharifHub,2024-07-15T02:18:09Z,- mSharifHub opened pull request: [7109](https://github.com/hackforla/website/pull/7109) at 2024-07-14 07:18 PM PDT -mSharifHub,2024-07-15T18:43:13Z,- mSharifHub pull request closed w/o merging: [7109](https://github.com/hackforla/website/pull/7109#event-13509657104) at 2024-07-15 11:43 AM PDT -mSharifHub,2024-07-15T18:43:26Z,- mSharifHub unassigned from issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229153557) at 2024-07-15 11:43 AM PDT -mSharifHub,2024-07-15T23:24:26Z,- mSharifHub assigned to issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229415606) at 2024-07-15 04:24 PM PDT -mSharifHub,2024-07-15T23:25:48Z,- mSharifHub commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229611772) at 2024-07-15 04:25 PM PDT -mSharifHub,2024-07-15T23:34:16Z,- mSharifHub opened pull request: [7124](https://github.com/hackforla/website/pull/7124) at 2024-07-15 04:34 PM PDT -mSharifHub,2024-07-16T03:23:54Z,- mSharifHub commented on pull request: [7124](https://github.com/hackforla/website/pull/7124#issuecomment-2229929047) at 2024-07-15 08:23 PM PDT -mSharifHub,2024-07-16T05:27:08Z,- mSharifHub pull request closed w/o merging: [7124](https://github.com/hackforla/website/pull/7124#event-13515226595) at 2024-07-15 10:27 PM PDT -mSharifHub,2024-07-16T05:43:09Z,- mSharifHub opened pull request: [7125](https://github.com/hackforla/website/pull/7125) at 2024-07-15 10:43 PM PDT -mSharifHub,2024-07-19T00:14:05Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2237800533) at 2024-07-18 05:14 PM PDT -mSharifHub,2024-07-19T18:03:56Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239823945) at 2024-07-19 11:03 AM PDT -mSharifHub,2024-07-19T19:12:34Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239959473) at 2024-07-19 12:12 PM PDT -mSharifHub,2024-07-20T02:31:34Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2240873517) at 2024-07-19 07:31 PM PDT -mSharifHub,2024-08-18T04:10:42Z,- mSharifHub pull request closed w/o merging: [7125](https://github.com/hackforla/website/pull/7125#event-13921123586) at 2024-08-17 09:10 PM PDT -mSharifHub,2024-08-18T04:10:49Z,- mSharifHub unassigned from issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-08-17 09:10 PM PDT -mSharifHub,2024-08-18T04:21:07Z,- mSharifHub commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2295105157) at 2024-08-17 09:21 PM PDT -mSharifHub,2024-08-19T15:58:37Z,- mSharifHub assigned to issue: [7177](https://github.com/hackforla/website/issues/7177#issuecomment-2282833231) at 2024-08-19 08:58 AM PDT -mSharifHub,2024-08-19T16:40:04Z,- mSharifHub opened pull request: [7315](https://github.com/hackforla/website/pull/7315) at 2024-08-19 09:40 AM PDT -mSharifHub,2024-08-23T15:43:06Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2307347717) at 2024-08-23 08:43 AM PDT -mSharifHub,2024-08-28T18:51:39Z,- mSharifHub submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2267031244) at 2024-08-28 11:51 AM PDT -mSharifHub,2024-09-02T01:31:30Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323608320) at 2024-09-01 06:31 PM PDT -mSharifHub,2024-09-02T01:33:34Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323609809) at 2024-09-01 06:33 PM PDT -mSharifHub,2024-09-02T02:42:32Z,- mSharifHub commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323683625) at 2024-09-01 07:42 PM PDT -mSharifHub,2024-09-12T02:18:34Z,- mSharifHub pull request merged: [7315](https://github.com/hackforla/website/pull/7315#event-14225611150) at 2024-09-11 07:18 PM PDT -mSharifHub,2024-09-15T19:43:02Z,- mSharifHub assigned to issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2283227775) at 2024-09-15 12:43 PM PDT -mSharifHub,2024-09-15T19:52:18Z,- mSharifHub commented on issue: [7097](https://github.com/hackforla/website/issues/7097#issuecomment-2351770540) at 2024-09-15 12:52 PM PDT -mSharifHub,2024-09-25T06:20:13Z,- mSharifHub opened pull request: [7522](https://github.com/hackforla/website/pull/7522) at 2024-09-24 11:20 PM PDT -mSharifHub,2024-09-26T05:37:56Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2375981132) at 2024-09-25 10:37 PM PDT -mSharifHub,2024-09-26T05:53:02Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2375997576) at 2024-09-25 10:53 PM PDT -mSharifHub,2024-09-26T05:56:05Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2376000980) at 2024-09-25 10:56 PM PDT -mSharifHub,2024-09-26T06:12:00Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2376021997) at 2024-09-25 11:12 PM PDT -mSharifHub,2024-09-26T22:43:17Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2378070952) at 2024-09-26 03:43 PM PDT -mSharifHub,2024-09-27T07:26:29Z,- mSharifHub commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2378592704) at 2024-09-27 12:26 AM PDT -mSharifHub,2024-10-01T01:03:12Z,- mSharifHub pull request merged: [7522](https://github.com/hackforla/website/pull/7522#event-14464460941) at 2024-09-30 06:03 PM PDT -mSharifHub,2024-10-16T10:34:36Z,- mSharifHub assigned to issue: [7391](https://github.com/hackforla/website/issues/7391) at 2024-10-16 03:34 AM PDT -mSharifHub,2024-10-16T10:34:51Z,- mSharifHub unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391) at 2024-10-16 03:34 AM PDT -mSharifHub,2025-04-01T02:11:07Z,- mSharifHub opened issue: [8027](https://github.com/hackforla/website/issues/8027) at 2025-03-31 07:11 PM PDT -mshirk2,4983,SKILLS ISSUE -mshirk2,2023-07-18T01:57:41Z,- mshirk2 opened issue: [4983](https://github.com/hackforla/website/issues/4983) at 2023-07-17 06:57 PM PDT -mshirk2,2023-07-18T03:15:39Z,- mshirk2 assigned to issue: [4983](https://github.com/hackforla/website/issues/4983) at 2023-07-17 08:15 PM PDT -mshirk2,2023-07-25T19:54:54Z,- mshirk2 assigned to issue: [4809](https://github.com/hackforla/website/issues/4809) at 2023-07-25 12:54 PM PDT -mshirk2,2023-07-25T19:58:02Z,- mshirk2 commented on issue: [4809](https://github.com/hackforla/website/issues/4809#issuecomment-1650458646) at 2023-07-25 12:58 PM PDT -mshirk2,2023-07-25T20:00:27Z,- mshirk2 commented on issue: [4983](https://github.com/hackforla/website/issues/4983#issuecomment-1650466303) at 2023-07-25 01:00 PM PDT -mshirk2,2023-07-25T21:48:47Z,- mshirk2 opened pull request: [5061](https://github.com/hackforla/website/pull/5061) at 2023-07-25 02:48 PM PDT -mshirk2,2023-07-26T02:37:59Z,- mshirk2 commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1650885106) at 2023-07-25 07:37 PM PDT -mshirk2,2023-07-26T17:59:07Z,- mshirk2 submitted pull request review: [5056](https://github.com/hackforla/website/pull/5056#pullrequestreview-1548312151) at 2023-07-26 10:59 AM PDT -mshirk2,2023-07-29T06:04:56Z,- mshirk2 pull request merged: [5061](https://github.com/hackforla/website/pull/5061#event-9953848376) at 2023-07-28 11:04 PM PDT -mshirk2,2023-08-01T19:27:24Z,- mshirk2 closed issue as completed: [4983](https://github.com/hackforla/website/issues/4983#event-9980377384) at 2023-08-01 12:27 PM PDT -mshirk2,2023-08-16T19:14:43Z,- mshirk2 assigned to issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1666933084) at 2023-08-16 12:14 PM PDT -mshirk2,2023-08-16T19:17:50Z,- mshirk2 commented on issue: [5150](https://github.com/hackforla/website/issues/5150#issuecomment-1681147516) at 2023-08-16 12:17 PM PDT -mshirk2,2023-08-17T22:56:29Z,- mshirk2 opened pull request: [5247](https://github.com/hackforla/website/pull/5247) at 2023-08-17 03:56 PM PDT -mshirk2,2023-08-19T20:55:03Z,- mshirk2 commented on pull request: [5247](https://github.com/hackforla/website/pull/5247#issuecomment-1685110789) at 2023-08-19 01:55 PM PDT -mshirk2,2023-08-20T02:58:53Z,- mshirk2 pull request merged: [5247](https://github.com/hackforla/website/pull/5247#event-10137355016) at 2023-08-19 07:58 PM PDT -mshirk2,2023-08-30T02:24:39Z,- mshirk2 commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698394521) at 2023-08-29 07:24 PM PDT -mshirk2,2023-08-30T22:21:37Z,- mshirk2 submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1603578220) at 2023-08-30 03:21 PM PDT -mshirk2,2023-09-14T19:46:59Z,- mshirk2 assigned to issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1717151055) at 2023-09-14 12:46 PM PDT -mshirk2,2023-09-14T19:50:35Z,- mshirk2 commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1720050432) at 2023-09-14 12:50 PM PDT -mshirk2,2023-09-20T18:49:52Z,- mshirk2 commented on issue: [5517](https://github.com/hackforla/website/issues/5517#issuecomment-1728263460) at 2023-09-20 11:49 AM PDT -mshirk2,2023-09-27T02:32:22Z,- mshirk2 commented on pull request: [5575](https://github.com/hackforla/website/pull/5575#issuecomment-1736578426) at 2023-09-26 07:32 PM PDT -mshirk2,2023-09-29T21:08:33Z,- mshirk2 submitted pull request review: [5575](https://github.com/hackforla/website/pull/5575#pullrequestreview-1651478979) at 2023-09-29 02:08 PM PDT -mshirk2,2023-10-24T20:56:53Z,- mshirk2 commented on pull request: [5771](https://github.com/hackforla/website/pull/5771#issuecomment-1778025366) at 2023-10-24 01:56 PM PDT -mshirk2,2023-10-24T22:27:04Z,- mshirk2 submitted pull request review: [5771](https://github.com/hackforla/website/pull/5771#pullrequestreview-1695987328) at 2023-10-24 03:27 PM PDT -mshirk2,2023-11-09T01:18:16Z,- mshirk2 assigned to issue: [5345](https://github.com/hackforla/website/issues/5345) at 2023-11-08 05:18 PM PST -mshirk2,2023-11-09T01:20:07Z,- mshirk2 commented on issue: [5345](https://github.com/hackforla/website/issues/5345#issuecomment-1803014067) at 2023-11-08 05:20 PM PST -mshirk2,2023-11-14T22:56:00Z,- mshirk2 opened pull request: [5906](https://github.com/hackforla/website/pull/5906) at 2023-11-14 02:56 PM PST -mshirk2,2023-11-15T03:40:52Z,- mshirk2 commented on pull request: [5900](https://github.com/hackforla/website/pull/5900#issuecomment-1811760585) at 2023-11-14 07:40 PM PST -mshirk2,2023-11-15T04:00:32Z,- mshirk2 commented on pull request: [5902](https://github.com/hackforla/website/pull/5902#issuecomment-1811772484) at 2023-11-14 08:00 PM PST -mshirk2,2023-11-15T19:19:23Z,- mshirk2 submitted pull request review: [5902](https://github.com/hackforla/website/pull/5902#pullrequestreview-1732757297) at 2023-11-15 11:19 AM PST -mshirk2,2023-11-16T20:17:05Z,- mshirk2 submitted pull request review: [5900](https://github.com/hackforla/website/pull/5900#pullrequestreview-1735382196) at 2023-11-16 12:17 PM PST -mshirk2,2023-11-19T21:09:34Z,- mshirk2 pull request merged: [5906](https://github.com/hackforla/website/pull/5906#event-11004605521) at 2023-11-19 01:09 PM PST -mshirk2,2024-02-02T20:17:27Z,- mshirk2 commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1924632735) at 2024-02-02 12:17 PM PST -mshirk2,2024-02-02T21:11:57Z,- mshirk2 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1860398726) at 2024-02-02 01:11 PM PST -mshirk2,2024-02-02T21:12:05Z,- mshirk2 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1860398981) at 2024-02-02 01:12 PM PST -mshirk2,2024-02-05T17:54:43Z,- mshirk2 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1863448485) at 2024-02-05 09:54 AM PST -msiller455,5723,SKILLS ISSUE -msiller455,2023-10-17T02:39:14Z,- msiller455 opened issue: [5723](https://github.com/hackforla/website/issues/5723) at 2023-10-16 07:39 PM PDT -msiller455,2023-10-17T02:40:15Z,- msiller455 assigned to issue: [5723](https://github.com/hackforla/website/issues/5723#issuecomment-1765564335) at 2023-10-16 07:40 PM PDT -muditchoudhary,2021-12-02T13:06:22Z,- muditchoudhary commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-984610975) at 2021-12-02 05:06 AM PST -muditchoudhary,2021-12-14T13:38:51Z,- muditchoudhary commented on issue: [2431](https://github.com/hackforla/website/issues/2431#issuecomment-993552757) at 2021-12-14 05:38 AM PST -mugdhchauhan,7698,SKILLS ISSUE -mugdhchauhan,2024-11-05T04:22:34Z,- mugdhchauhan opened issue: [7698](https://github.com/hackforla/website/issues/7698) at 2024-11-04 08:22 PM PST -mugdhchauhan,2024-11-05T13:34:13Z,- mugdhchauhan assigned to issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2456203262) at 2024-11-05 05:34 AM PST -mugdhchauhan,2024-11-05T14:56:13Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2457394152) at 2024-11-05 06:56 AM PST -mugdhchauhan,2024-11-09T19:31:36Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466421102) at 2024-11-09 11:31 AM PST -mugdhchauhan,2024-11-09T19:51:50Z,- mugdhchauhan assigned to issue: [7623](https://github.com/hackforla/website/issues/7623) at 2024-11-09 11:51 AM PST -mugdhchauhan,2024-11-09T19:57:45Z,- mugdhchauhan commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2466436962) at 2024-11-09 11:57 AM PST -mugdhchauhan,2024-11-09T21:03:14Z,- mugdhchauhan commented on issue: [7623](https://github.com/hackforla/website/issues/7623#issuecomment-2466459153) at 2024-11-09 01:03 PM PST -mugdhchauhan,2024-11-09T21:34:38Z,- mugdhchauhan opened pull request: [7712](https://github.com/hackforla/website/pull/7712) at 2024-11-09 01:34 PM PST -mugdhchauhan,2024-11-10T00:45:23Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466527827) at 2024-11-09 04:45 PM PST -mugdhchauhan,2024-11-10T02:35:43Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466554845) at 2024-11-09 06:35 PM PST -mugdhchauhan,2024-11-10T18:03:39Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2466829438) at 2024-11-10 10:03 AM PST -mugdhchauhan,2024-11-12T19:19:57Z,- mugdhchauhan commented on pull request: [7712](https://github.com/hackforla/website/pull/7712#issuecomment-2471368605) at 2024-11-12 11:19 AM PST -mugdhchauhan,2024-11-15T00:52:45Z,- mugdhchauhan pull request merged: [7712](https://github.com/hackforla/website/pull/7712#event-15305958637) at 2024-11-14 04:52 PM PST -mugdhchauhan,2024-11-16T20:11:47Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2480771206) at 2024-11-16 12:11 PM PST -mugdhchauhan,2024-11-17T17:32:12Z,- mugdhchauhan assigned to issue: [7650](https://github.com/hackforla/website/issues/7650) at 2024-11-17 09:32 AM PST -mugdhchauhan,2024-11-17T17:38:32Z,- mugdhchauhan commented on issue: [7650](https://github.com/hackforla/website/issues/7650#issuecomment-2481396423) at 2024-11-17 09:38 AM PST -mugdhchauhan,2024-11-19T00:58:18Z,- mugdhchauhan commented on issue: [7650](https://github.com/hackforla/website/issues/7650#issuecomment-2484486962) at 2024-11-18 04:58 PM PST -mugdhchauhan,2024-11-19T01:14:39Z,- mugdhchauhan opened pull request: [7728](https://github.com/hackforla/website/pull/7728) at 2024-11-18 05:14 PM PST -mugdhchauhan,2024-11-20T00:25:05Z,- mugdhchauhan commented on pull request: [7728](https://github.com/hackforla/website/pull/7728#issuecomment-2487037655) at 2024-11-19 04:25 PM PST -mugdhchauhan,2024-11-20T02:50:54Z,- mugdhchauhan pull request merged: [7728](https://github.com/hackforla/website/pull/7728#event-15358056034) at 2024-11-19 06:50 PM PST -mugdhchauhan,2024-11-20T03:22:44Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2487266975) at 2024-11-19 07:22 PM PST -mugdhchauhan,2024-11-20T03:23:19Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2487267483) at 2024-11-19 07:23 PM PST -mugdhchauhan,2024-11-20T03:24:40Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2487268696) at 2024-11-19 07:24 PM PST -mugdhchauhan,2024-11-22T14:50:23Z,- mugdhchauhan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2493934955) at 2024-11-22 06:50 AM PST -mugdhchauhan,2024-11-22T17:53:42Z,- mugdhchauhan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2455248045) at 2024-11-22 09:53 AM PST -mugdhchauhan,2024-11-22T19:44:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2494659545) at 2024-11-22 11:44 AM PST -mugdhchauhan,2024-11-23T08:32:47Z,- mugdhchauhan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2495400097) at 2024-11-23 12:32 AM PST -mugdhchauhan,2024-11-23T08:34:00Z,- mugdhchauhan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2456370424) at 2024-11-23 12:34 AM PST -mugdhchauhan,2024-11-23T08:36:14Z,- mugdhchauhan commented on issue: [7703](https://github.com/hackforla/website/issues/7703#issuecomment-2495400950) at 2024-11-23 12:36 AM PST -mugdhchauhan,2024-11-23T09:20:05Z,- mugdhchauhan assigned to issue: [7398](https://github.com/hackforla/website/issues/7398) at 2024-11-23 01:20 AM PST -mugdhchauhan,2024-11-23T09:20:35Z,- mugdhchauhan commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2495413148) at 2024-11-23 01:20 AM PST -mugdhchauhan,2024-11-24T18:40:12Z,- mugdhchauhan commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2496163850) at 2024-11-24 10:40 AM PST -mugdhchauhan,2024-11-25T00:11:12Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2496439294) at 2024-11-24 04:11 PM PST -mugdhchauhan,2024-11-25T00:11:48Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2496439671) at 2024-11-24 04:11 PM PST -mugdhchauhan,2024-11-25T00:56:43Z,- mugdhchauhan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2496470298) at 2024-11-24 04:56 PM PST -mugdhchauhan,2024-11-27T14:42:33Z,- mugdhchauhan commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504053782) at 2024-11-27 06:42 AM PST -mugdhchauhan,2024-11-27T14:45:44Z,- mugdhchauhan submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465238543) at 2024-11-27 06:45 AM PST -mugdhchauhan,2024-11-27T15:00:32Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2504096587) at 2024-11-27 07:00 AM PST -mugdhchauhan,2024-11-28T06:38:45Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2505364779) at 2024-11-27 10:38 PM PST -mugdhchauhan,2024-11-28T06:40:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2505366204) at 2024-11-27 10:40 PM PST -mugdhchauhan,2024-11-29T08:54:41Z,- mugdhchauhan opened issue: [7778](https://github.com/hackforla/website/issues/7778) at 2024-11-29 12:54 AM PST -mugdhchauhan,2024-11-29T08:54:42Z,- mugdhchauhan assigned to issue: [7778](https://github.com/hackforla/website/issues/7778) at 2024-11-29 12:54 AM PST -mugdhchauhan,2024-11-29T09:08:19Z,- mugdhchauhan opened issue: [7779](https://github.com/hackforla/website/issues/7779) at 2024-11-29 01:08 AM PST -mugdhchauhan,2024-11-29T09:17:13Z,- mugdhchauhan opened issue: [7780](https://github.com/hackforla/website/issues/7780) at 2024-11-29 01:17 AM PST -mugdhchauhan,2024-11-29T09:27:32Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2507409015) at 2024-11-29 01:27 AM PST -mugdhchauhan,2024-11-30T19:25:59Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2509154981) at 2024-11-30 11:25 AM PST -mugdhchauhan,2024-11-30T19:26:46Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2509158974) at 2024-11-30 11:26 AM PST -mugdhchauhan,2024-12-03T18:01:33Z,- mugdhchauhan commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2515246392) at 2024-12-03 10:01 AM PST -mugdhchauhan,2024-12-03T23:55:50Z,- mugdhchauhan assigned to issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2260008110) at 2024-12-03 03:55 PM PST -mugdhchauhan,2024-12-03T23:58:42Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2515828361) at 2024-12-03 03:58 PM PST -mugdhchauhan,2024-12-04T19:15:10Z,- mugdhchauhan opened issue: [7792](https://github.com/hackforla/website/issues/7792) at 2024-12-04 11:15 AM PST -mugdhchauhan,2024-12-04T19:17:21Z,- mugdhchauhan opened issue: [7794](https://github.com/hackforla/website/issues/7794) at 2024-12-04 11:17 AM PST -mugdhchauhan,2024-12-04T19:19:17Z,- mugdhchauhan opened issue: [7795](https://github.com/hackforla/website/issues/7795) at 2024-12-04 11:19 AM PST -mugdhchauhan,2024-12-04T19:29:18Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2518385859) at 2024-12-04 11:29 AM PST -mugdhchauhan,2024-12-04T19:39:42Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2518404417) at 2024-12-04 11:39 AM PST -mugdhchauhan,2024-12-04T19:56:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2518436811) at 2024-12-04 11:56 AM PST -mugdhchauhan,2024-12-09T04:12:14Z,- mugdhchauhan commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2526847535) at 2024-12-08 08:12 PM PST -mugdhchauhan,2024-12-10T00:19:33Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2529899648) at 2024-12-09 04:19 PM PST -mugdhchauhan,2024-12-16T14:06:12Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2545721379) at 2024-12-16 06:06 AM PST -mugdhchauhan,2025-01-01T14:38:22Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2567033811) at 2025-01-01 06:38 AM PST -mugdhchauhan,2025-01-10T08:09:18Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2582013850) at 2025-01-10 12:09 AM PST -mugdhchauhan,2025-01-10T08:32:15Z,- mugdhchauhan commented on pull request: [7816](https://github.com/hackforla/website/pull/7816#issuecomment-2582053306) at 2025-01-10 12:32 AM PST -mugdhchauhan,2025-01-10T09:02:18Z,- mugdhchauhan submitted pull request review: [7816](https://github.com/hackforla/website/pull/7816#pullrequestreview-2541871145) at 2025-01-10 01:02 AM PST -mugdhchauhan,2025-01-10T09:05:49Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2582117566) at 2025-01-10 01:05 AM PST -mugdhchauhan,2025-01-10T12:03:08Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2582548700) at 2025-01-10 04:03 AM PST -mugdhchauhan,2025-01-15T00:57:37Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2591411997) at 2025-01-14 04:57 PM PST -mugdhchauhan,2025-01-15T01:00:03Z,- mugdhchauhan submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2551355806) at 2025-01-14 05:00 PM PST -mugdhchauhan,2025-01-15T01:02:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2591416567) at 2025-01-14 05:02 PM PST -mugdhchauhan,2025-01-16T17:42:39Z,- mugdhchauhan commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2596338301) at 2025-01-16 09:42 AM PST -mugdhchauhan,2025-01-16T17:44:36Z,- mugdhchauhan submitted pull request review: [7832](https://github.com/hackforla/website/pull/7832#pullrequestreview-2556835931) at 2025-01-16 09:44 AM PST -mugdhchauhan,2025-01-16T17:57:35Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2596365053) at 2025-01-16 09:57 AM PST -mugdhchauhan,2025-01-16T18:00:32Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2596370385) at 2025-01-16 10:00 AM PST -mugdhchauhan,2025-01-17T00:47:20Z,- mugdhchauhan commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2597201045) at 2025-01-16 04:47 PM PST -mugdhchauhan,2025-01-17T00:48:29Z,- mugdhchauhan commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2597202272) at 2025-01-16 04:48 PM PST -mugdhchauhan,2025-01-19T15:46:48Z,- mugdhchauhan commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2600918077) at 2025-01-19 07:46 AM PST -mugdhchauhan,2025-01-19T15:47:36Z,- mugdhchauhan submitted pull request review: [7832](https://github.com/hackforla/website/pull/7832#pullrequestreview-2561038210) at 2025-01-19 07:47 AM PST -mugdhchauhan,2025-01-19T16:13:00Z,- mugdhchauhan commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2600926861) at 2025-01-19 08:13 AM PST -mugdhchauhan,2025-01-19T16:15:28Z,- mugdhchauhan submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2561043124) at 2025-01-19 08:15 AM PST -mugdhchauhan,2025-01-19T16:18:44Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2600928795) at 2025-01-19 08:18 AM PST -mugdhchauhan,2025-01-21T05:09:33Z,- mugdhchauhan commented on pull request: [7834](https://github.com/hackforla/website/pull/7834#issuecomment-2603669442) at 2025-01-20 09:09 PM PST -mugdhchauhan,2025-01-21T05:11:13Z,- mugdhchauhan submitted pull request review: [7834](https://github.com/hackforla/website/pull/7834#pullrequestreview-2563491154) at 2025-01-20 09:11 PM PST -mugdhchauhan,2025-01-21T07:13:32Z,- mugdhchauhan submitted pull request review: [7817](https://github.com/hackforla/website/pull/7817#pullrequestreview-2563647121) at 2025-01-20 11:13 PM PST -mugdhchauhan,2025-01-21T08:02:30Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2603903481) at 2025-01-21 12:02 AM PST -mugdhchauhan,2025-01-21T16:49:48Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2605251976) at 2025-01-21 08:49 AM PST -mugdhchauhan,2025-01-21T16:50:26Z,- mugdhchauhan submitted pull request review: [7822](https://github.com/hackforla/website/pull/7822#pullrequestreview-2565200541) at 2025-01-21 08:50 AM PST -mugdhchauhan,2025-01-21T17:51:52Z,- mugdhchauhan commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2605388161) at 2025-01-21 09:51 AM PST -mugdhchauhan,2025-01-28T17:46:47Z,- mugdhchauhan commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2619678744) at 2025-01-28 09:46 AM PST -mugdhchauhan,2025-01-28T17:47:38Z,- mugdhchauhan submitted pull request review: [7817](https://github.com/hackforla/website/pull/7817#pullrequestreview-2579018459) at 2025-01-28 09:47 AM PST -mugdhchauhan,2025-01-28T18:35:42Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2619781493) at 2025-01-28 10:35 AM PST -mugdhchauhan,2025-01-29T04:53:54Z,- mugdhchauhan commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2620719452) at 2025-01-28 08:53 PM PST -mugdhchauhan,2025-01-29T05:02:18Z,- mugdhchauhan submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2579998830) at 2025-01-28 09:02 PM PST -mugdhchauhan,2025-01-29T05:04:39Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2620729047) at 2025-01-28 09:04 PM PST -mugdhchauhan,2025-02-05T18:56:44Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2637767232) at 2025-02-05 10:56 AM PST -mugdhchauhan,2025-02-09T15:19:01Z,- mugdhchauhan commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2646353349) at 2025-02-09 07:19 AM PST -mugdhchauhan,2025-02-09T15:31:20Z,- mugdhchauhan submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2604293682) at 2025-02-09 07:31 AM PST -mugdhchauhan,2025-02-09T15:35:19Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2646360174) at 2025-02-09 07:35 AM PST -mugdhchauhan,2025-02-11T00:33:01Z,- mugdhchauhan commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2649561411) at 2025-02-10 04:33 PM PST -mugdhchauhan,2025-02-11T02:51:17Z,- mugdhchauhan commented on pull request: [7897](https://github.com/hackforla/website/pull/7897#issuecomment-2649695592) at 2025-02-10 06:51 PM PST -mugdhchauhan,2025-02-11T02:51:51Z,- mugdhchauhan submitted pull request review: [7897](https://github.com/hackforla/website/pull/7897#pullrequestreview-2607588473) at 2025-02-10 06:51 PM PST -mugdhchauhan,2025-02-11T17:53:03Z,- mugdhchauhan commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2651592399) at 2025-02-11 09:53 AM PST -mugdhchauhan,2025-02-11T17:55:06Z,- mugdhchauhan submitted pull request review: [7569](https://github.com/hackforla/website/pull/7569#pullrequestreview-2609563142) at 2025-02-11 09:55 AM PST -mugdhchauhan,2025-02-11T18:00:37Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2651608337) at 2025-02-11 10:00 AM PST -mugdhchauhan,2025-02-12T03:52:20Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2652598029) at 2025-02-11 07:52 PM PST -mugdhchauhan,2025-02-12T03:56:38Z,- mugdhchauhan submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2610756756) at 2025-02-11 07:56 PM PST -mugdhchauhan,2025-02-12T03:59:10Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2652604548) at 2025-02-11 07:59 PM PST -mugdhchauhan,2025-02-12T18:48:35Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654571433) at 2025-02-12 10:48 AM PST -mugdhchauhan,2025-02-12T18:52:58Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654579953) at 2025-02-12 10:52 AM PST -mugdhchauhan,2025-02-12T19:07:03Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654613296) at 2025-02-12 11:07 AM PST -mugdhchauhan,2025-02-12T19:07:56Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2654614951) at 2025-02-12 11:07 AM PST -mugdhchauhan,2025-02-13T03:39:19Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2655388873) at 2025-02-12 07:39 PM PST -mugdhchauhan,2025-02-17T13:14:40Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2663105513) at 2025-02-17 05:14 AM PST -mugdhchauhan,2025-02-17T13:19:10Z,- mugdhchauhan submitted pull request review: [7873](https://github.com/hackforla/website/pull/7873#pullrequestreview-2621055600) at 2025-02-17 05:19 AM PST -mugdhchauhan,2025-02-17T23:19:21Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2664216472) at 2025-02-17 03:19 PM PST -mugdhchauhan,2025-02-18T18:36:02Z,- mugdhchauhan assigned to issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2603457201) at 2025-02-18 10:36 AM PST -mugdhchauhan,2025-02-18T18:38:52Z,- mugdhchauhan commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2666577659) at 2025-02-18 10:38 AM PST -mugdhchauhan,2025-02-18T19:07:59Z,- mugdhchauhan opened issue: [7919](https://github.com/hackforla/website/issues/7919) at 2025-02-18 11:07 AM PST -mugdhchauhan,2025-02-20T04:42:56Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2670450571) at 2025-02-19 08:42 PM PST -mugdhchauhan,2025-02-21T01:28:29Z,- mugdhchauhan commented on issue: [7919](https://github.com/hackforla/website/issues/7919#issuecomment-2673128997) at 2025-02-20 05:28 PM PST -mugdhchauhan,2025-02-21T01:32:40Z,- mugdhchauhan commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2673134952) at 2025-02-20 05:32 PM PST -mugdhchauhan,2025-02-24T02:02:59Z,- mugdhchauhan opened issue: [7937](https://github.com/hackforla/website/issues/7937) at 2025-02-23 06:02 PM PST -mugdhchauhan,2025-02-27T17:09:06Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2688590611) at 2025-02-27 09:09 AM PST -mugdhchauhan,2025-02-28T18:37:29Z,- mugdhchauhan commented on pull request: [7947](https://github.com/hackforla/website/pull/7947#issuecomment-2691310511) at 2025-02-28 10:37 AM PST -mugdhchauhan,2025-02-28T18:37:40Z,- mugdhchauhan closed issue by PR 7947: [7849](https://github.com/hackforla/website/issues/7849#event-16516532475) at 2025-02-28 10:37 AM PST -mugdhchauhan,2025-02-28T19:16:42Z,- mugdhchauhan commented on pull request: [7945](https://github.com/hackforla/website/pull/7945#issuecomment-2691378321) at 2025-02-28 11:16 AM PST -mugdhchauhan,2025-02-28T19:17:01Z,- mugdhchauhan closed issue by PR 7945: [7605](https://github.com/hackforla/website/issues/7605#event-16516913094) at 2025-02-28 11:17 AM PST -mugdhchauhan,2025-02-28T19:43:17Z,- mugdhchauhan commented on issue: [7919](https://github.com/hackforla/website/issues/7919#issuecomment-2691421460) at 2025-02-28 11:43 AM PST -mugdhchauhan,2025-02-28T19:43:17Z,- mugdhchauhan closed issue as duplicate: [7919](https://github.com/hackforla/website/issues/7919#event-16517158286) at 2025-02-28 11:43 AM PST -mugdhchauhan,2025-02-28T19:48:03Z,- mugdhchauhan commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2691428904) at 2025-02-28 11:48 AM PST -mugdhchauhan,2025-03-04T13:25:08Z,- mugdhchauhan commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2697580403) at 2025-03-04 05:25 AM PST -mugdhchauhan,2025-03-04T13:25:51Z,- mugdhchauhan closed issue by PR 7873: [6059](https://github.com/hackforla/website/issues/6059#event-16558563654) at 2025-03-04 05:25 AM PST -mugdhchauhan,2025-03-06T15:07:40Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2704119308) at 2025-03-06 07:07 AM PST -mugdhchauhan,2025-03-06T19:50:34Z,- mugdhchauhan assigned to issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-1240323716) at 2025-03-06 11:50 AM PST -mugdhchauhan,2025-03-06T19:51:20Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2704801190) at 2025-03-06 11:51 AM PST -mugdhchauhan,2025-03-10T19:54:36Z,- mugdhchauhan commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2711674787) at 2025-03-10 12:54 PM PDT -mugdhchauhan,2025-03-10T19:59:15Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2711684239) at 2025-03-10 12:59 PM PDT -mugdhchauhan,2025-03-11T01:14:02Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2712209768) at 2025-03-10 06:14 PM PDT -mugdhchauhan,2025-03-13T15:54:28Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2721754263) at 2025-03-13 08:54 AM PDT -mugdhchauhan,2025-03-14T22:06:46Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2725868033) at 2025-03-14 03:06 PM PDT -mugdhchauhan,2025-03-15T03:34:46Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2726176163) at 2025-03-14 08:34 PM PDT -mugdhchauhan,2025-03-18T03:08:58Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2731490586) at 2025-03-17 08:08 PM PDT -mugdhchauhan,2025-03-18T03:38:45Z,- mugdhchauhan commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2731526774) at 2025-03-17 08:38 PM PDT -mugdhchauhan,2025-03-18T03:38:45Z,- mugdhchauhan closed issue as completed: [3228](https://github.com/hackforla/website/issues/3228#event-16818768368) at 2025-03-17 08:38 PM PDT -mugdhchauhan,2025-03-20T16:18:05Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2741007315) at 2025-03-20 09:18 AM PDT -mugdhchauhan,2025-03-26T19:33:13Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2755551967) at 2025-03-26 12:33 PM PDT -mugdhchauhan,2025-04-02T21:36:50Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2773795832) at 2025-04-02 02:36 PM PDT -mugdhchauhan,2025-04-03T02:43:49Z,- mugdhchauhan commented on pull request: [8020](https://github.com/hackforla/website/pull/8020#issuecomment-2774237456) at 2025-04-02 07:43 PM PDT -mugdhchauhan,2025-04-03T02:47:23Z,- mugdhchauhan closed issue by PR 8020: [7470](https://github.com/hackforla/website/issues/7470#event-17104306364) at 2025-04-02 07:47 PM PDT -mugdhchauhan,2025-04-10T04:45:43Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2791537988) at 2025-04-09 09:45 PM PDT -mugdhchauhan,2025-04-10T04:54:32Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2791548456) at 2025-04-09 09:54 PM PDT -mugdhchauhan,2025-04-11T19:35:07Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2797864711) at 2025-04-11 12:35 PM PDT -mugdhchauhan,2025-04-11T19:35:07Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2797864711) at 2025-04-11 12:35 PM PDT -mugdhchauhan,2025-04-11T21:06:35Z,- mugdhchauhan commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2798011521) at 2025-04-11 02:06 PM PDT -mugdhchauhan,2025-04-11T21:06:35Z,- mugdhchauhan commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2798011521) at 2025-04-11 02:06 PM PDT -mugdhchauhan,2025-04-11T21:08:08Z,- mugdhchauhan closed issue by PR 8053: [7941](https://github.com/hackforla/website/issues/7941#event-17230531042) at 2025-04-11 02:08 PM PDT -mugdhchauhan,2025-04-11T21:18:10Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2798027768) at 2025-04-11 02:18 PM PDT -mugdhchauhan,2025-04-11T21:18:10Z,- mugdhchauhan commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2798027768) at 2025-04-11 02:18 PM PDT -mugdhchauhan,2025-04-11T21:19:12Z,- mugdhchauhan closed issue by PR 8056: [7482](https://github.com/hackforla/website/issues/7482#event-17230623171) at 2025-04-11 02:19 PM PDT -mugdhchauhan,2025-04-11T21:50:20Z,- mugdhchauhan commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2798070219) at 2025-04-11 02:50 PM PDT -mugdhchauhan,2025-04-11T22:38:01Z,- mugdhchauhan commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2798125348) at 2025-04-11 03:38 PM PDT -mugdhchauhan,2025-04-11T22:39:38Z,- mugdhchauhan submitted pull request review: [8041](https://github.com/hackforla/website/pull/8041#pullrequestreview-2761711421) at 2025-04-11 03:39 PM PDT -mugdhchauhan,2025-04-12T00:27:45Z,- mugdhchauhan commented on pull request: [8041](https://github.com/hackforla/website/pull/8041#issuecomment-2798254458) at 2025-04-11 05:27 PM PDT -mugdhchauhan,2025-04-12T00:27:59Z,- mugdhchauhan closed issue by PR 8041: [7485](https://github.com/hackforla/website/issues/7485#event-17232015356) at 2025-04-11 05:27 PM PDT -mugdhchauhan,2025-04-13T23:41:14Z,- mugdhchauhan commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2800183658) at 2025-04-13 04:41 PM PDT -mugdhchauhan,2025-04-13T23:52:43Z,- mugdhchauhan commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2800188327) at 2025-04-13 04:52 PM PDT -mugdhchauhan,2025-04-16T19:36:20Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2810572527) at 2025-04-16 12:36 PM PDT -mugdhchauhan,2025-04-23T16:01:37Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2824799728) at 2025-04-23 09:01 AM PDT -mugdhchauhan,2025-04-30T14:59:25Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2842280581) at 2025-04-30 07:59 AM PDT -mugdhchauhan,2025-05-07T03:28:15Z,- mugdhchauhan commented on pull request: [8115](https://github.com/hackforla/website/pull/8115#issuecomment-2856912751) at 2025-05-06 08:28 PM PDT -mugdhchauhan,2025-05-07T03:28:39Z,- mugdhchauhan closed issue by PR 8115: [8064](https://github.com/hackforla/website/issues/8064#event-17548244574) at 2025-05-06 08:28 PM PDT -mugdhchauhan,2025-05-07T03:30:39Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2856916153) at 2025-05-06 08:30 PM PDT -mugdhchauhan,2025-05-13T21:10:50Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2877958623) at 2025-05-13 02:10 PM PDT -mugdhchauhan,2025-05-19T01:26:50Z,- mugdhchauhan commented on pull request: [8126](https://github.com/hackforla/website/pull/8126#issuecomment-2889369113) at 2025-05-18 06:26 PM PDT -mugdhchauhan,2025-05-19T01:28:44Z,- mugdhchauhan submitted pull request review: [8126](https://github.com/hackforla/website/pull/8126#pullrequestreview-2849190333) at 2025-05-18 06:28 PM PDT -mugdhchauhan,2025-05-19T23:25:19Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2892500764) at 2025-05-19 04:25 PM PDT -mugdhchauhan,2025-05-20T16:27:42Z,- mugdhchauhan commented on pull request: [8124](https://github.com/hackforla/website/pull/8124#issuecomment-2895111466) at 2025-05-20 09:27 AM PDT -mugdhchauhan,2025-05-20T16:29:54Z,- mugdhchauhan submitted pull request review: [8124](https://github.com/hackforla/website/pull/8124#pullrequestreview-2854881934) at 2025-05-20 09:29 AM PDT -mugdhchauhan,2025-05-24T06:35:57Z,- mugdhchauhan commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2906507439) at 2025-05-23 11:35 PM PDT -mugdhchauhan,2025-05-24T06:36:34Z,- mugdhchauhan closed issue by PR 8150: [7957](https://github.com/hackforla/website/issues/7957#event-17799188743) at 2025-05-23 11:36 PM PDT -mugdhchauhan,2025-05-27T17:46:10Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2913422912) at 2025-05-27 10:46 AM PDT -mugdhchauhan,2025-06-03T22:30:03Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2937459983) at 2025-06-03 03:30 PM PDT -mugdhchauhan,2025-06-06T18:45:12Z,- mugdhchauhan commented on pull request: [8169](https://github.com/hackforla/website/pull/8169#issuecomment-2950169560) at 2025-06-06 11:45 AM PDT -mugdhchauhan,2025-06-06T18:45:28Z,- mugdhchauhan closed issue by PR 8169: [7548](https://github.com/hackforla/website/issues/7548#event-18027319104) at 2025-06-06 11:45 AM PDT -mugdhchauhan,2025-06-06T19:05:55Z,- mugdhchauhan commented on pull request: [8171](https://github.com/hackforla/website/pull/8171#issuecomment-2950286206) at 2025-06-06 12:05 PM PDT -mugdhchauhan,2025-06-06T19:06:15Z,- mugdhchauhan closed issue by PR 8171: [7425](https://github.com/hackforla/website/issues/7425#event-18027595759) at 2025-06-06 12:06 PM PDT -mugdhchauhan,2025-06-10T18:14:33Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2960202892) at 2025-06-10 11:14 AM PDT -mugdhchauhan,2025-06-17T20:13:24Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-2981704314) at 2025-06-17 01:13 PM PDT -mugdhchauhan,2025-06-25T01:30:01Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3002309601) at 2025-06-24 06:30 PM PDT -mugdhchauhan,2025-06-27T15:22:43Z,- mugdhchauhan commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3013445786) at 2025-06-27 08:22 AM PDT -mugdhchauhan,2025-06-27T15:22:54Z,- mugdhchauhan closed issue by PR 8197: [8010](https://github.com/hackforla/website/issues/8010#event-18359872175) at 2025-06-27 08:22 AM PDT -mugdhchauhan,2025-06-27T15:32:02Z,- mugdhchauhan commented on pull request: [8204](https://github.com/hackforla/website/pull/8204#issuecomment-3013471669) at 2025-06-27 08:32 AM PDT -mugdhchauhan,2025-06-27T15:32:17Z,- mugdhchauhan closed issue by PR 8204: [8012](https://github.com/hackforla/website/issues/8012#event-18360021124) at 2025-06-27 08:32 AM PDT -mugdhchauhan,2025-06-27T15:41:44Z,- mugdhchauhan commented on pull request: [8206](https://github.com/hackforla/website/pull/8206#issuecomment-3013496136) at 2025-06-27 08:41 AM PDT -mugdhchauhan,2025-06-27T15:42:02Z,- mugdhchauhan closed issue by PR 8206: [8011](https://github.com/hackforla/website/issues/8011#event-18360177138) at 2025-06-27 08:42 AM PDT -mugdhchauhan,2025-07-02T02:36:57Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3026148643) at 2025-07-01 07:36 PM PDT -mugdhchauhan,2025-07-06T10:32:21Z,- mugdhchauhan commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3041299446) at 2025-07-06 03:32 AM PDT -mugdhchauhan,2025-07-06T10:46:00Z,- mugdhchauhan commented on pull request: [8231](https://github.com/hackforla/website/pull/8231#issuecomment-3041306923) at 2025-07-06 03:46 AM PDT -mugdhchauhan,2025-07-06T10:46:18Z,- mugdhchauhan closed issue by PR 8231: [8015](https://github.com/hackforla/website/issues/8015#event-18490987567) at 2025-07-06 03:46 AM PDT -mugdhchauhan,2025-07-06T10:55:54Z,- mugdhchauhan commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3041316035) at 2025-07-06 03:55 AM PDT -mugdhchauhan,2025-07-06T11:00:39Z,- mugdhchauhan closed issue by PR 8241: [8122](https://github.com/hackforla/website/issues/8122#event-18491029563) at 2025-07-06 04:00 AM PDT -mugdhchauhan,2025-07-08T18:20:38Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3049889310) at 2025-07-08 11:20 AM PDT -mugdhchauhan,2025-07-11T17:16:31Z,- mugdhchauhan commented on pull request: [8245](https://github.com/hackforla/website/pull/8245#issuecomment-3063115187) at 2025-07-11 10:16 AM PDT -mugdhchauhan,2025-07-11T17:16:42Z,- mugdhchauhan closed issue by PR 8245: [8070](https://github.com/hackforla/website/issues/8070#event-18591000382) at 2025-07-11 10:16 AM PDT -mugdhchauhan,2025-07-15T23:04:43Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3076004568) at 2025-07-15 04:04 PM PDT -mugdhchauhan,2025-07-22T12:35:08Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3102529139) at 2025-07-22 05:35 AM PDT -mugdhchauhan,2025-07-25T19:47:45Z,- mugdhchauhan commented on pull request: [8250](https://github.com/hackforla/website/pull/8250#issuecomment-3120138022) at 2025-07-25 12:47 PM PDT -mugdhchauhan,2025-07-25T19:48:07Z,- mugdhchauhan closed issue by PR 8250: [7417](https://github.com/hackforla/website/issues/7417#event-18820532931) at 2025-07-25 12:48 PM PDT -mugdhchauhan,2025-07-29T08:17:36Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3131219076) at 2025-07-29 01:17 AM PDT -mugdhchauhan,2025-08-07T07:28:16Z,- mugdhchauhan commented on issue: [7698](https://github.com/hackforla/website/issues/7698#issuecomment-3162871221) at 2025-08-07 12:28 AM PDT -MukulKolpe,2022-01-08T15:47:12Z,- MukulKolpe commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1008033508) at 2022-01-08 07:47 AM PST -munaz77,2020-12-06T19:19:22Z,- munaz77 commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739549570) at 2020-12-06 11:19 AM PST -munaz77,2020-12-06T19:33:28Z,- munaz77 opened issue: [833](https://github.com/hackforla/website/issues/833) at 2020-12-06 11:33 AM PST -munaz77,2020-12-08T21:55:00Z,- munaz77 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -munaz77,2020-12-15T21:22:12Z,- munaz77 assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:22 PM PST -munaz77,2020-12-16T09:23:49Z,- munaz77 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-16 01:23 AM PST -munaz77,2020-12-20T20:48:40Z,- munaz77 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -munaz77,2020-12-20T20:48:40Z,- munaz77 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -munaz77,2021-01-10T20:38:35Z,- munaz77 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -mxajPrice,2022-05-17T20:15:10Z,- mxajPrice opened issue: [3153](https://github.com/hackforla/website/issues/3153) at 2022-05-17 01:15 PM PDT -mxajPrice,2022-05-17T20:28:52Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1129288007) at 2022-05-17 01:28 PM PDT -mxajPrice,2022-05-26T11:45:51Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1138445664) at 2022-05-26 04:45 AM PDT -mxajPrice,2022-06-02T19:26:29Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1145244386) at 2022-06-02 12:26 PM PDT -mxajPrice,2022-06-03T13:25:10Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1145962816) at 2022-06-03 06:25 AM PDT -mxajPrice,2022-06-03T19:36:34Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1146298473) at 2022-06-03 12:36 PM PDT -mxajPrice,2022-06-14T01:06:00Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1154602027) at 2022-06-13 06:06 PM PDT -mxajPrice,2022-07-05T22:00:36Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1175543185) at 2022-07-05 03:00 PM PDT -mxajPrice,2022-09-22T19:48:59Z,- mxajPrice commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1255477800) at 2022-09-22 12:48 PM PDT -mxajPrice,2023-01-27T21:47:47Z,- mxajPrice opened issue: [3885](https://github.com/hackforla/website/issues/3885) at 2023-01-27 01:47 PM PST -mxajPrice,2023-01-27T21:48:48Z,- mxajPrice commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1407110238) at 2023-01-27 01:48 PM PST -mxajPrice,2023-02-14T22:42:29Z,- mxajPrice commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1430487481) at 2023-02-14 02:42 PM PST -mxajPrice,2023-02-14T22:47:14Z,- mxajPrice commented on issue: [3885](https://github.com/hackforla/website/issues/3885#issuecomment-1430492783) at 2023-02-14 02:47 PM PST -mxajPrice,2023-04-25T21:10:45Z,- mxajPrice opened issue: [4566](https://github.com/hackforla/website/issues/4566) at 2023-04-25 02:10 PM PDT -mxajPrice,2023-05-04T02:41:43Z,- mxajPrice commented on issue: [4566](https://github.com/hackforla/website/issues/4566#issuecomment-1534003608) at 2023-05-03 07:41 PM PDT -mxajPrice,2023-05-06T19:57:08Z,- mxajPrice opened issue: [4605](https://github.com/hackforla/website/issues/4605) at 2023-05-06 12:57 PM PDT -mxajPrice,2023-06-12T19:00:56Z,- mxajPrice opened issue: [4818](https://github.com/hackforla/website/issues/4818) at 2023-06-12 12:00 PM PDT -mxajPrice,2023-06-12T19:04:19Z,- mxajPrice commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1587913884) at 2023-06-12 12:04 PM PDT -mxajPrice,2023-07-11T17:55:56Z,- mxajPrice opened issue: [4938](https://github.com/hackforla/website/issues/4938) at 2023-07-11 10:55 AM PDT -mxajPrice,2023-07-11T17:55:56Z,- mxajPrice opened issue: [4939](https://github.com/hackforla/website/issues/4939) at 2023-07-11 10:55 AM PDT -mxajPrice,2023-07-14T01:38:55Z,- mxajPrice opened issue: [4948](https://github.com/hackforla/website/issues/4948) at 2023-07-13 06:38 PM PDT -mxajPrice,2023-07-18T17:32:53Z,- mxajPrice commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1640667396) at 2023-07-18 10:32 AM PDT -mxajPrice,2023-07-25T21:16:37Z,- mxajPrice commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1650571446) at 2023-07-25 02:16 PM PDT -mxajPrice,2023-07-28T17:19:27Z,- mxajPrice commented on pull request: [5056](https://github.com/hackforla/website/pull/5056#issuecomment-1656040002) at 2023-07-28 10:19 AM PDT -mxajPrice,2023-08-03T02:19:03Z,- mxajPrice opened issue: [5132](https://github.com/hackforla/website/issues/5132) at 2023-08-02 07:19 PM PDT -mxajPrice,2023-08-03T02:20:15Z,- mxajPrice commented on issue: [5132](https://github.com/hackforla/website/issues/5132#issuecomment-1663200063) at 2023-08-02 07:20 PM PDT -mxajPrice,2023-08-16T18:44:53Z,- mxajPrice opened issue: [5238](https://github.com/hackforla/website/issues/5238) at 2023-08-16 11:44 AM PDT -mxajPrice,2023-08-29T19:35:38Z,- mxajPrice opened issue: [5337](https://github.com/hackforla/website/issues/5337) at 2023-08-29 12:35 PM PDT -mxajPrice,2023-08-29T19:36:29Z,- mxajPrice commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1698021361) at 2023-08-29 12:36 PM PDT -mxajPrice,2023-08-30T23:42:04Z,- mxajPrice commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1699992453) at 2023-08-30 04:42 PM PDT -mxajPrice,2023-09-01T02:24:05Z,- mxajPrice opened issue: [5404](https://github.com/hackforla/website/issues/5404) at 2023-08-31 07:24 PM PDT -mxajPrice,2023-09-07T00:38:16Z,- mxajPrice commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1709300236) at 2023-09-06 05:38 PM PDT -mxajPrice,2023-10-11T23:17:40Z,- mxajPrice commented on issue: [5127](https://github.com/hackforla/website/issues/5127#issuecomment-1758676316) at 2023-10-11 04:17 PM PDT -mxajPrice,2023-10-11T23:22:22Z,- mxajPrice commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1758681203) at 2023-10-11 04:22 PM PDT -mxajPrice,2023-11-03T17:48:33Z,- mxajPrice commented on issue: [5337](https://github.com/hackforla/website/issues/5337#issuecomment-1792881002) at 2023-11-03 10:48 AM PDT -mxajPrice,2023-12-27T21:26:55Z,- mxajPrice opened issue: [6018](https://github.com/hackforla/website/issues/6018) at 2023-12-27 01:26 PM PST -mxajPrice,2024-01-25T01:17:15Z,- mxajPrice closed issue by PR 296: [6139](https://github.com/hackforla/website/issues/6139#event-11591373569) at 2024-01-24 05:17 PM PST -myastark,2019-08-20T02:58:27Z,- myastark assigned to issue: [145](https://github.com/hackforla/website/issues/145) at 2019-08-19 07:58 PM PDT -myastark,2019-08-27T21:38:45Z,- myastark commented on issue: [145](https://github.com/hackforla/website/issues/145#issuecomment-525493715) at 2019-08-27 02:38 PM PDT -myastark,2019-11-20T18:17:45Z,- myastark assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 10:17 AM PST -myastark,2019-11-25T23:16:14Z,- myastark assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -myastark,2019-12-03T19:12:07Z,- myastark assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-03 11:12 AM PST -myastark,2019-12-03T19:38:46Z,- myastark assigned to issue: [179](https://github.com/hackforla/website/issues/179) at 2019-12-03 11:38 AM PST -myastark,2019-12-04T22:59:08Z,- myastark assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 02:59 PM PST -myastark,2019-12-04T23:07:40Z,- myastark unassigned from issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 03:07 PM PST -myastark,2019-12-31T00:00:51Z,- myastark unassigned from issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-12-30 04:00 PM PST -myastark,2019-12-31T01:05:02Z,- myastark closed issue as completed: [179](https://github.com/hackforla/website/issues/179#event-2914934638) at 2019-12-30 05:05 PM PST -myastark,2020-03-27T07:17:32Z,- myastark opened issue: [396](https://github.com/hackforla/website/issues/396) at 2020-03-27 12:17 AM PDT -myastark,2020-04-27T01:38:11Z,- myastark assigned to issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-619451315) at 2020-04-26 06:38 PM PDT -myastark,2020-05-03T17:47:26Z,- myastark unassigned from issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-623151315) at 2020-05-03 10:47 AM PDT -myastark,2020-05-03T22:10:25Z,- myastark unassigned from issue: [191](https://github.com/hackforla/website/issues/191) at 2020-05-03 03:10 PM PDT -myastark,2020-08-19T00:48:37Z,- myastark assigned to issue: [703](https://github.com/hackforla/website/issues/703) at 2020-08-18 05:48 PM PDT -myastark,2020-08-25T01:49:24Z,- myastark unassigned from issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-679454433) at 2020-08-24 06:49 PM PDT -myastark,2020-09-17T22:20:26Z,- myastark commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694530144) at 2020-09-17 03:20 PM PDT -myastark,2020-09-17T23:32:53Z,- myastark commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-694555077) at 2020-09-17 04:32 PM PDT -myastark,2020-09-19T03:12:39Z,- myastark commented on issue: [703](https://github.com/hackforla/website/issues/703#issuecomment-695156324) at 2020-09-18 08:12 PM PDT -n2020h,2023-10-24T03:09:34Z,- n2020h assigned to issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1776102512) at 2023-10-23 08:09 PM PDT -n2020h,2024-06-17T03:42:44Z,- n2020h commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2172125478) at 2024-06-16 08:42 PM PDT -nafisreza,2024-10-28T21:33:10Z,- nafisreza opened pull request: [7653](https://github.com/hackforla/website/pull/7653) at 2024-10-28 02:33 PM PDT -nafisreza,2024-10-28T21:33:26Z,- nafisreza pull request closed w/o merging: [7653](https://github.com/hackforla/website/pull/7653#event-14969852080) at 2024-10-28 02:33 PM PDT -nafisreza,2024-10-28T21:42:54Z,- nafisreza commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2442689088) at 2024-10-28 02:42 PM PDT -NaincyKumariKnoldus,2022-03-02T06:18:34Z,- NaincyKumariKnoldus opened pull request: [2915](https://github.com/hackforla/website/pull/2915) at 2022-03-01 10:18 PM PST -NaincyKumariKnoldus,2022-03-02T21:04:08Z,- NaincyKumariKnoldus pull request closed w/o merging: [2915](https://github.com/hackforla/website/pull/2915#event-6173881296) at 2022-03-02 01:04 PM PST -NaincyKumariKnoldus,2022-03-03T04:26:59Z,- NaincyKumariKnoldus commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057654726) at 2022-03-02 08:26 PM PST -NaincyKumariKnoldus,2022-03-03T05:13:11Z,- NaincyKumariKnoldus commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057673512) at 2022-03-02 09:13 PM PST -NaincyKumariKnoldus,2022-03-03T08:25:00Z,- NaincyKumariKnoldus commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057794720) at 2022-03-03 12:25 AM PST -NamanhTran,2702,SKILLS ISSUE -NamanhTran,2021-02-09T09:04:03Z,- NamanhTran opened pull request: [1025](https://github.com/hackforla/website/pull/1025) at 2021-02-09 01:04 AM PST -NamanhTran,2021-02-09T23:45:55Z,- NamanhTran pull request merged: [1025](https://github.com/hackforla/website/pull/1025#event-4312045226) at 2021-02-09 03:45 PM PST -NamanhTran,2022-01-19T04:07:31Z,- NamanhTran opened issue: [2702](https://github.com/hackforla/website/issues/2702) at 2022-01-18 08:07 PM PST -NamanhTran,2022-01-19T04:07:32Z,- NamanhTran assigned to issue: [2702](https://github.com/hackforla/website/issues/2702) at 2022-01-18 08:07 PM PST -nancy-luu,4068,SKILLS ISSUE -nancy-luu,2023-03-01T04:11:48Z,- nancy-luu opened issue: [4068](https://github.com/hackforla/website/issues/4068) at 2023-02-28 08:11 PM PST -nancy-luu,2023-03-01T04:11:48Z,- nancy-luu assigned to issue: [4068](https://github.com/hackforla/website/issues/4068) at 2023-02-28 08:11 PM PST -nasimbiglari,2022-02-07T21:26:25Z,- nasimbiglari opened issue: [2745](https://github.com/hackforla/website/issues/2745) at 2022-02-07 01:26 PM PST -nasimbiglari,2022-02-07T21:34:58Z,- nasimbiglari commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1031949713) at 2022-02-07 01:34 PM PST -nasimbiglari,2022-02-07T21:41:41Z,- nasimbiglari commented on issue: [2745](https://github.com/hackforla/website/issues/2745#issuecomment-1031958186) at 2022-02-07 01:41 PM PST -natenateo,2021-06-09T02:19:37Z,- natenateo commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-857319241) at 2021-06-08 07:19 PM PDT -natenateo,2021-07-16T16:21:31Z,- natenateo commented on issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-881566992) at 2021-07-16 09:21 AM PDT -nathan944,3066,SKILLS ISSUE -nathan944,2022-04-19T03:50:00Z,- nathan944 opened issue: [3066](https://github.com/hackforla/website/issues/3066) at 2022-04-18 08:50 PM PDT -nathan944,2022-04-19T03:51:24Z,- nathan944 assigned to issue: [3066](https://github.com/hackforla/website/issues/3066#issuecomment-1101965181) at 2022-04-18 08:51 PM PDT -nathan944,2022-04-20T22:49:32Z,- nathan944 assigned to issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1089607678) at 2022-04-20 03:49 PM PDT -nathan944,2022-04-22T21:08:58Z,- nathan944 commented on issue: [2501](https://github.com/hackforla/website/issues/2501#issuecomment-1106865428) at 2022-04-22 02:08 PM PDT -nathan944,2022-04-24T17:56:42Z,- nathan944 assigned to issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-04-24 10:56 AM PDT -nathan944,2022-05-01T16:16:39Z,- nathan944 assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-05-01 09:16 AM PDT -nathan944,2022-05-04T20:45:26Z,- nathan944 unassigned from issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-05-04 01:45 PM PDT -nathan944,2022-05-04T20:45:40Z,- nathan944 unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-05-04 01:45 PM PDT -nathan944,2022-05-22T01:57:56Z,- nathan944 assigned to issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1122945325) at 2022-05-21 06:57 PM PDT -nathan944,2022-05-29T18:53:32Z,- nathan944 commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1140504917) at 2022-05-29 11:53 AM PDT -nathan944,2022-06-01T23:30:54Z,- nathan944 commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1144245027) at 2022-06-01 04:30 PM PDT -nathan944,2022-06-12T18:48:24Z,- nathan944 unassigned from issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1152055030) at 2022-06-12 11:48 AM PDT -nathan944,2022-06-12T19:06:04Z,- nathan944 assigned to issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-979746665) at 2022-06-12 12:06 PM PDT -nathan944,2022-06-13T01:41:18Z,- nathan944 commented on issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1153369689) at 2022-06-12 06:41 PM PDT -nathan944,2022-06-25T23:39:46Z,- nathan944 opened issue: [3302](https://github.com/hackforla/website/issues/3302) at 2022-06-25 04:39 PM PDT -nathan944,2022-06-25T23:39:46Z,- nathan944 assigned to issue: [3302](https://github.com/hackforla/website/issues/3302) at 2022-06-25 04:39 PM PDT -nathan944,2022-06-26T02:18:38Z,- nathan944 commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1166400249) at 2022-06-25 07:18 PM PDT -nathan944,2022-07-14T01:17:40Z,- nathan944 opened issue: [3370](https://github.com/hackforla/website/issues/3370) at 2022-07-13 06:17 PM PDT -nathan944,2022-07-27T22:06:13Z,- nathan944 commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1197421194) at 2022-07-27 03:06 PM PDT -nathan944,2022-08-28T16:24:00Z,- nathan944 commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1229500151) at 2022-08-28 09:24 AM PDT -nathan944,2022-09-10T21:57:40Z,- nathan944 opened issue: [3532](https://github.com/hackforla/website/issues/3532) at 2022-09-10 02:57 PM PDT -nathan944,2022-09-10T23:36:08Z,- nathan944 closed issue as not planned: [3532](https://github.com/hackforla/website/issues/3532#event-7361528345) at 2022-09-10 04:36 PM PDT -nathan944,2022-09-10T23:36:31Z,- nathan944 closed issue as completed: [3532](https://github.com/hackforla/website/issues/3532#event-7361528532) at 2022-09-10 04:36 PM PDT -nathan944,2022-09-10T23:51:39Z,- nathan944 opened issue: [3533](https://github.com/hackforla/website/issues/3533) at 2022-09-10 04:51 PM PDT -nathan944,2022-11-16T17:41:07Z,- nathan944 unassigned from issue: [3302](https://github.com/hackforla/website/issues/3302#issuecomment-1166379335) at 2022-11-16 09:41 AM PST -nathan944,2022-11-20T18:44:54Z,- nathan944 unassigned from issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1319638102) at 2022-11-20 10:44 AM PST -naveenmallemala5,5361,SKILLS ISSUE -naveenmallemala5,2023-08-30T04:10:45Z,- naveenmallemala5 opened issue: [5361](https://github.com/hackforla/website/issues/5361) at 2023-08-29 09:10 PM PDT -naveenmallemala5,2023-08-30T04:10:46Z,- naveenmallemala5 assigned to issue: [5361](https://github.com/hackforla/website/issues/5361) at 2023-08-29 09:10 PM PDT -naveenmallemala5,2023-09-22T16:54:34Z,- naveenmallemala5 commented on issue: [5361](https://github.com/hackforla/website/issues/5361#issuecomment-1731741376) at 2023-09-22 09:54 AM PDT -naveenmallemala5,2023-10-04T15:25:52Z,- naveenmallemala5 assigned to issue: [5621](https://github.com/hackforla/website/issues/5621) at 2023-10-04 08:25 AM PDT -naveenmallemala5,2023-10-04T15:33:44Z,- naveenmallemala5 commented on issue: [5621](https://github.com/hackforla/website/issues/5621#issuecomment-1747139671) at 2023-10-04 08:33 AM PDT -naveenmallemala5,2023-10-11T01:52:19Z,- naveenmallemala5 opened pull request: [5701](https://github.com/hackforla/website/pull/5701) at 2023-10-10 06:52 PM PDT -naveenmallemala5,2023-10-15T18:00:12Z,- naveenmallemala5 pull request merged: [5701](https://github.com/hackforla/website/pull/5701#event-10658165688) at 2023-10-15 11:00 AM PDT -naveenmallemala5,2023-10-26T17:22:02Z,- naveenmallemala5 assigned to issue: [5736](https://github.com/hackforla/website/issues/5736) at 2023-10-26 10:22 AM PDT -naveenmallemala5,2023-10-26T17:29:09Z,- naveenmallemala5 commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1781542991) at 2023-10-26 10:29 AM PDT -naveenmallemala5,2023-11-03T23:23:55Z,- naveenmallemala5 commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1793234164) at 2023-11-03 04:23 PM PDT -naveenmallemala5,2023-11-21T22:22:54Z,- naveenmallemala5 commented on issue: [5736](https://github.com/hackforla/website/issues/5736#issuecomment-1821795673) at 2023-11-21 02:22 PM PST -naveenmallemala5,2023-12-07T19:46:25Z,- naveenmallemala5 assigned to issue: [5848](https://github.com/hackforla/website/issues/5848) at 2023-12-07 11:46 AM PST -naveenmallemala5,2023-12-07T19:47:49Z,- naveenmallemala5 commented on issue: [5848](https://github.com/hackforla/website/issues/5848#issuecomment-1846000261) at 2023-12-07 11:47 AM PST -naveenmallemala5,2023-12-13T02:31:32Z,- naveenmallemala5 opened pull request: [6004](https://github.com/hackforla/website/pull/6004) at 2023-12-12 06:31 PM PST -naveenmallemala5,2023-12-15T17:52:22Z,- naveenmallemala5 commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1858263601) at 2023-12-15 09:52 AM PST -naveenmallemala5,2023-12-20T14:59:05Z,- naveenmallemala5 pull request merged: [6004](https://github.com/hackforla/website/pull/6004#event-11303743267) at 2023-12-20 06:59 AM PST -naveenmallemala5,2024-01-08T19:59:30Z,- naveenmallemala5 assigned to issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1851306705) at 2024-01-08 11:59 AM PST -naveenmallemala5,2024-01-08T20:01:22Z,- naveenmallemala5 commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1881738299) at 2024-01-08 12:01 PM PST -naveenmallemala5,2024-01-28T03:51:02Z,- naveenmallemala5 commented on issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1913437884) at 2024-01-27 07:51 PM PST -naveenmallemala5,2024-01-29T01:03:41Z,- naveenmallemala5 opened issue: [6191](https://github.com/hackforla/website/issues/6191) at 2024-01-28 05:03 PM PST -naveenmallemala5,2024-01-29T01:15:30Z,- naveenmallemala5 opened issue: [6192](https://github.com/hackforla/website/issues/6192) at 2024-01-28 05:15 PM PST -naveenmallemala5,2024-01-29T01:23:58Z,- naveenmallemala5 unassigned from issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1913437884) at 2024-01-28 05:23 PM PST -naveenmallemala5,2024-02-01T19:13:19Z,- naveenmallemala5 assigned to issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1913437884) at 2024-02-01 11:13 AM PST -naveenmallemala5,2024-02-01T19:13:36Z,- naveenmallemala5 unassigned from issue: [6001](https://github.com/hackforla/website/issues/6001#issuecomment-1922045092) at 2024-02-01 11:13 AM PST -naveenmallemala5,2024-05-17T20:51:52Z,- naveenmallemala5 assigned to issue: [6576](https://github.com/hackforla/website/issues/6576) at 2024-05-17 01:51 PM PDT -naveenmallemala5,2024-05-17T20:53:23Z,- naveenmallemala5 commented on issue: [6576](https://github.com/hackforla/website/issues/6576#issuecomment-2118370599) at 2024-05-17 01:53 PM PDT -naveentata,6947,SKILLS ISSUE -naveentata,2024-06-04T02:55:26Z,- naveentata opened issue: [6947](https://github.com/hackforla/website/issues/6947) at 2024-06-03 07:55 PM PDT -naveentata,2024-06-04T02:55:43Z,- naveentata assigned to issue: [6947](https://github.com/hackforla/website/issues/6947#issuecomment-2146474029) at 2024-06-03 07:55 PM PDT -naveentata,2024-06-18T22:50:31Z,- naveentata assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2166921103) at 2024-06-18 03:50 PM PDT -naveentata,2024-06-18T22:54:45Z,- naveentata commented on issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2177218113) at 2024-06-18 03:54 PM PDT -naveentata,2024-08-09T14:31:45Z,- naveentata unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2277285129) at 2024-08-09 07:31 AM PDT -nayangoyal,2023-08-25T16:39:02Z,- nayangoyal opened pull request: [5308](https://github.com/hackforla/website/pull/5308) at 2023-08-25 09:39 AM PDT -nayangoyal,2023-08-26T21:02:43Z,- nayangoyal pull request closed w/o merging: [5308](https://github.com/hackforla/website/pull/5308#event-10200703382) at 2023-08-26 02:02 PM PDT -nchanyal,7978,SKILLS ISSUE -nchanyal,2025-03-04T04:40:22Z,- nchanyal opened issue: [7978](https://github.com/hackforla/website/issues/7978) at 2025-03-03 08:40 PM PST -nchanyal,2025-03-04T04:41:29Z,- nchanyal assigned to issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2696176477) at 2025-03-03 08:41 PM PST -nchanyal,2025-03-05T16:20:41Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2701434067) at 2025-03-05 08:20 AM PST -nchanyal,2025-03-05T16:33:08Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2701468794) at 2025-03-05 08:33 AM PST -nchanyal,2025-03-05T18:10:05Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2701706160) at 2025-03-05 10:10 AM PST -nchanyal,2025-03-06T15:16:27Z,- nchanyal assigned to issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2661363589) at 2025-03-06 07:16 AM PST -nchanyal,2025-03-06T15:39:58Z,- nchanyal commented on issue: [7875](https://github.com/hackforla/website/issues/7875#issuecomment-2704211498) at 2025-03-06 07:39 AM PST -nchanyal,2025-03-06T17:26:30Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2704490251) at 2025-03-06 09:26 AM PST -nchanyal,2025-03-06T17:27:24Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2704493631) at 2025-03-06 09:27 AM PST -nchanyal,2025-03-07T16:22:35Z,- nchanyal opened pull request: [7983](https://github.com/hackforla/website/pull/7983) at 2025-03-07 08:22 AM PST -nchanyal,2025-03-09T17:36:32Z,- nchanyal pull request merged: [7983](https://github.com/hackforla/website/pull/7983#event-16645518570) at 2025-03-09 10:36 AM PDT -nchanyal,2025-03-10T15:33:41Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2711000985) at 2025-03-10 08:33 AM PDT -nchanyal,2025-03-10T16:08:39Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2711106304) at 2025-03-10 09:08 AM PDT -nchanyal,2025-03-10T16:17:51Z,- nchanyal assigned to issue: [7938](https://github.com/hackforla/website/issues/7938) at 2025-03-10 09:17 AM PDT -nchanyal,2025-03-10T16:20:14Z,- nchanyal commented on issue: [7938](https://github.com/hackforla/website/issues/7938#issuecomment-2711139445) at 2025-03-10 09:20 AM PDT -nchanyal,2025-03-10T17:54:55Z,- nchanyal opened pull request: [7986](https://github.com/hackforla/website/pull/7986) at 2025-03-10 10:54 AM PDT -nchanyal,2025-03-13T20:26:02Z,- nchanyal pull request merged: [7986](https://github.com/hackforla/website/pull/7986#event-16749152738) at 2025-03-13 01:26 PM PDT -nchanyal,2025-03-15T15:02:24Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2726713837) at 2025-03-15 08:02 AM PDT -nchanyal,2025-03-15T16:40:32Z,- nchanyal commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2726775402) at 2025-03-15 09:40 AM PDT -nchanyal,2025-03-15T17:24:27Z,- nchanyal submitted pull request review: [7989](https://github.com/hackforla/website/pull/7989#pullrequestreview-2688085394) at 2025-03-15 10:24 AM PDT -nchanyal,2025-03-15T17:28:34Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2726808114) at 2025-03-15 10:28 AM PDT -nchanyal,2025-03-16T15:45:54Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2727508877) at 2025-03-16 08:45 AM PDT -nchanyal,2025-03-16T15:54:25Z,- nchanyal assigned to issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2692541785) at 2025-03-16 08:54 AM PDT -nchanyal,2025-03-16T15:57:02Z,- nchanyal commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2727513974) at 2025-03-16 08:57 AM PDT -nchanyal,2025-03-17T15:52:42Z,- nchanyal opened pull request: [7992](https://github.com/hackforla/website/pull/7992) at 2025-03-17 08:52 AM PDT -nchanyal,2025-03-18T15:31:54Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2733692245) at 2025-03-18 08:31 AM PDT -nchanyal,2025-03-19T15:59:17Z,- nchanyal pull request merged: [7992](https://github.com/hackforla/website/pull/7992#event-16870343073) at 2025-03-19 08:59 AM PDT -nchanyal,2025-03-20T14:25:35Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2740638889) at 2025-03-20 07:25 AM PDT -nchanyal,2025-03-20T14:42:45Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2740708360) at 2025-03-20 07:42 AM PDT -nchanyal,2025-03-21T18:55:01Z,- nchanyal assigned to issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2692542233) at 2025-03-21 11:55 AM PDT -nchanyal,2025-03-21T19:02:00Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2744221854) at 2025-03-21 12:02 PM PDT -nchanyal,2025-03-22T15:02:38Z,- nchanyal opened issue: [8011](https://github.com/hackforla/website/issues/8011) at 2025-03-22 08:02 AM PDT -nchanyal,2025-03-22T15:14:16Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2745315687) at 2025-03-22 08:14 AM PDT -nchanyal,2025-03-22T15:22:41Z,- nchanyal opened issue: [8012](https://github.com/hackforla/website/issues/8012) at 2025-03-22 08:22 AM PDT -nchanyal,2025-03-22T16:17:19Z,- nchanyal opened issue: [8014](https://github.com/hackforla/website/issues/8014) at 2025-03-22 09:17 AM PDT -nchanyal,2025-03-22T16:34:19Z,- nchanyal opened issue: [8015](https://github.com/hackforla/website/issues/8015) at 2025-03-22 09:34 AM PDT -nchanyal,2025-03-22T16:36:02Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2745347089) at 2025-03-22 09:36 AM PDT -nchanyal,2025-03-22T16:43:37Z,- nchanyal opened issue: [8016](https://github.com/hackforla/website/issues/8016) at 2025-03-22 09:43 AM PDT -nchanyal,2025-03-23T14:50:27Z,- nchanyal commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2746255414) at 2025-03-23 07:50 AM PDT -nchanyal,2025-03-25T18:03:50Z,- nchanyal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2752114165) at 2025-03-25 11:03 AM PDT -nchanyal,2025-03-26T16:41:51Z,- nchanyal submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2717936504) at 2025-03-26 09:41 AM PDT -nchanyal,2025-03-28T22:58:10Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2762785112) at 2025-03-28 03:58 PM PDT -nchanyal,2025-04-11T14:14:37Z,- nchanyal commented on issue: [7978](https://github.com/hackforla/website/issues/7978#issuecomment-2797040276) at 2025-04-11 07:14 AM PDT -ndmoc,5208,SKILLS ISSUE -ndmoc,2023-08-15T02:38:27Z,- ndmoc opened issue: [5208](https://github.com/hackforla/website/issues/5208) at 2023-08-14 07:38 PM PDT -ndmoc,2023-08-15T02:38:28Z,- ndmoc assigned to issue: [5208](https://github.com/hackforla/website/issues/5208) at 2023-08-14 07:38 PM PDT -ndmoc,2023-08-17T02:04:23Z,- ndmoc assigned to issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681403833) at 2023-08-16 07:04 PM PDT -ndmoc,2023-08-17T02:34:15Z,- ndmoc unassigned from issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681520779) at 2023-08-16 07:34 PM PDT -ndmoc,2023-08-22T21:40:29Z,- ndmoc commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1688968171) at 2023-08-22 02:40 PM PDT -ndmoc,2023-08-22T21:40:38Z,- ndmoc assigned to issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1688968171) at 2023-08-22 02:40 PM PDT -ndmoc,2023-08-23T00:34:43Z,- ndmoc commented on issue: [4466](https://github.com/hackforla/website/issues/4466#issuecomment-1689094959) at 2023-08-22 05:34 PM PDT -ndmoc,2023-08-31T19:38:24Z,- ndmoc opened pull request: [5398](https://github.com/hackforla/website/pull/5398) at 2023-08-31 12:38 PM PDT -ndmoc,2023-08-31T19:52:43Z,- ndmoc assigned to issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1694740968) at 2023-08-31 12:52 PM PDT -ndmoc,2023-08-31T20:08:21Z,- ndmoc opened pull request: [5400](https://github.com/hackforla/website/pull/5400) at 2023-08-31 01:08 PM PDT -ndmoc,2023-08-31T20:09:05Z,- ndmoc commented on issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1701713696) at 2023-08-31 01:09 PM PDT -ndmoc,2023-08-31T21:34:43Z,- ndmoc commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701815763) at 2023-08-31 02:34 PM PDT -ndmoc,2023-09-01T22:14:59Z,- ndmoc commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1703379128) at 2023-09-01 03:14 PM PDT -ndmoc,2023-09-03T18:03:12Z,- ndmoc pull request closed w/o merging: [5400](https://github.com/hackforla/website/pull/5400#event-10266907439) at 2023-09-03 11:03 AM PDT -ndmoc,2023-09-03T18:03:24Z,- ndmoc unassigned from issue: [5320](https://github.com/hackforla/website/issues/5320#issuecomment-1701713696) at 2023-09-03 11:03 AM PDT -ndmoc,2023-09-03T19:28:41Z,- ndmoc commented on pull request: [5398](https://github.com/hackforla/website/pull/5398#issuecomment-1704382680) at 2023-09-03 12:28 PM PDT -ndmoc,2023-09-04T10:34:52Z,- ndmoc pull request merged: [5398](https://github.com/hackforla/website/pull/5398#event-10272381662) at 2023-09-04 03:34 AM PDT -ndmoc,2023-12-12T22:59:21Z,- ndmoc assigned to issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1755568912) at 2023-12-12 02:59 PM PST -ndmoc,2023-12-12T23:01:04Z,- ndmoc commented on issue: [5687](https://github.com/hackforla/website/issues/5687#issuecomment-1852946889) at 2023-12-12 03:01 PM PST -ndmoc,2023-12-19T08:15:55Z,- ndmoc opened pull request: [6012](https://github.com/hackforla/website/pull/6012) at 2023-12-19 12:15 AM PST -ndmoc,2023-12-19T23:22:46Z,- ndmoc opened pull request: [6013](https://github.com/hackforla/website/pull/6013) at 2023-12-19 03:22 PM PST -ndmoc,2023-12-19T23:23:25Z,- ndmoc commented on pull request: [6012](https://github.com/hackforla/website/pull/6012#issuecomment-1863608447) at 2023-12-19 03:23 PM PST -ndmoc,2023-12-20T00:05:37Z,- ndmoc pull request closed w/o merging: [6012](https://github.com/hackforla/website/pull/6012#event-11295876654) at 2023-12-19 04:05 PM PST -ndmoc,2023-12-20T17:56:35Z,- ndmoc commented on pull request: [6013](https://github.com/hackforla/website/pull/6013#issuecomment-1864899660) at 2023-12-20 09:56 AM PST -ndmoc,2023-12-28T05:44:25Z,- ndmoc pull request merged: [6013](https://github.com/hackforla/website/pull/6013#event-11348627530) at 2023-12-27 09:44 PM PST -neevliberman,3366,SKILLS ISSUE -neevliberman,2022-07-13T03:17:25Z,- neevliberman opened issue: [3366](https://github.com/hackforla/website/issues/3366) at 2022-07-12 08:17 PM PDT -neevliberman,2022-07-13T20:21:24Z,- neevliberman assigned to issue: [3366](https://github.com/hackforla/website/issues/3366#issuecomment-1182717979) at 2022-07-13 01:21 PM PDT -neevliberman,2022-07-19T23:32:20Z,- neevliberman assigned to issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1046315574) at 2022-07-19 04:32 PM PDT -neevliberman,2022-07-19T23:41:23Z,- neevliberman commented on issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1189653124) at 2022-07-19 04:41 PM PDT -neevliberman,2022-07-19T23:44:16Z,- neevliberman commented on issue: [2813](https://github.com/hackforla/website/issues/2813#issuecomment-1189654476) at 2022-07-19 04:44 PM PDT -neevliberman,2022-07-20T01:48:31Z,- neevliberman opened pull request: [3395](https://github.com/hackforla/website/pull/3395) at 2022-07-19 06:48 PM PDT -neevliberman,2022-07-20T03:15:54Z,- neevliberman opened issue: [3401](https://github.com/hackforla/website/issues/3401) at 2022-07-19 08:15 PM PDT -neevliberman,2022-07-22T19:21:18Z,- neevliberman opened pull request: [3420](https://github.com/hackforla/website/pull/3420) at 2022-07-22 12:21 PM PDT -neevliberman,2022-07-22T19:35:57Z,- neevliberman pull request closed w/o merging: [3395](https://github.com/hackforla/website/pull/3395#event-7048687383) at 2022-07-22 12:35 PM PDT -neevliberman,2022-07-22T19:37:53Z,- neevliberman pull request closed w/o merging: [3420](https://github.com/hackforla/website/pull/3420#event-7048697791) at 2022-07-22 12:37 PM PDT -neevliberman,2022-07-22T20:25:44Z,- neevliberman opened pull request: [3421](https://github.com/hackforla/website/pull/3421) at 2022-07-22 01:25 PM PDT -neevliberman,2022-07-22T21:06:01Z,- neevliberman commented on issue: [3366](https://github.com/hackforla/website/issues/3366#issuecomment-1192934733) at 2022-07-22 02:06 PM PDT -neevliberman,2022-07-22T21:12:11Z,- neevliberman commented on pull request: [3421](https://github.com/hackforla/website/pull/3421#issuecomment-1192938428) at 2022-07-22 02:12 PM PDT -neevliberman,2022-07-24T13:49:38Z,- neevliberman pull request merged: [3421](https://github.com/hackforla/website/pull/3421#event-7051448308) at 2022-07-24 06:49 AM PDT -neevliberman,2022-07-24T22:31:09Z,- neevliberman assigned to issue: [3095](https://github.com/hackforla/website/issues/3095#issuecomment-1116769834) at 2022-07-24 03:31 PM PDT -neevliberman,2022-07-24T22:51:46Z,- neevliberman commented on issue: [3095](https://github.com/hackforla/website/issues/3095#issuecomment-1193409619) at 2022-07-24 03:51 PM PDT -neevliberman,2022-07-24T23:05:19Z,- neevliberman opened pull request: [3425](https://github.com/hackforla/website/pull/3425) at 2022-07-24 04:05 PM PDT -neevliberman,2022-07-25T20:01:15Z,- neevliberman pull request merged: [3425](https://github.com/hackforla/website/pull/3425#event-7059359751) at 2022-07-25 01:01 PM PDT -neevliberman,2022-07-29T15:27:16Z,- neevliberman assigned to issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-968324929) at 2022-07-29 08:27 AM PDT -neevliberman,2022-07-31T16:35:54Z,- neevliberman unassigned from issue: [2479](https://github.com/hackforla/website/issues/2479#issuecomment-968324929) at 2022-07-31 09:35 AM PDT -neevliberman,2022-07-31T16:36:45Z,- neevliberman assigned to issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1164984691) at 2022-07-31 09:36 AM PDT -neevliberman,2022-07-31T16:44:36Z,- neevliberman closed issue as completed: [3366](https://github.com/hackforla/website/issues/3366#event-7096577804) at 2022-07-31 09:44 AM PDT -neevliberman,2022-08-09T04:37:28Z,- neevliberman commented on pull request: [3455](https://github.com/hackforla/website/pull/3455#issuecomment-1208903268) at 2022-08-08 09:37 PM PDT -neevliberman,2022-08-09T04:51:20Z,- neevliberman submitted pull request review: [3455](https://github.com/hackforla/website/pull/3455#pullrequestreview-1066098685) at 2022-08-08 09:51 PM PDT -neevliberman,2022-08-14T01:05:14Z,- neevliberman commented on issue: [3295](https://github.com/hackforla/website/issues/3295#issuecomment-1214260233) at 2022-08-13 06:05 PM PDT -neevliberman,2022-08-14T18:12:45Z,- neevliberman opened pull request: [3468](https://github.com/hackforla/website/pull/3468) at 2022-08-14 11:12 AM PDT -neevliberman,2022-08-15T04:58:14Z,- neevliberman commented on pull request: [3468](https://github.com/hackforla/website/pull/3468#issuecomment-1214618803) at 2022-08-14 09:58 PM PDT -neevliberman,2022-08-18T02:32:43Z,- neevliberman pull request merged: [3468](https://github.com/hackforla/website/pull/3468#event-7210331226) at 2022-08-17 07:32 PM PDT -neevliberman,2022-08-26T20:14:08Z,- neevliberman assigned to issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-907894622) at 2022-08-26 01:14 PM PDT -neevliberman,2022-08-26T20:44:30Z,- neevliberman opened pull request: [3490](https://github.com/hackforla/website/pull/3490) at 2022-08-26 01:44 PM PDT -neevliberman,2022-08-26T20:47:32Z,- neevliberman commented on issue: [2205](https://github.com/hackforla/website/issues/2205#issuecomment-1228934384) at 2022-08-26 01:47 PM PDT -neevliberman,2022-08-27T17:45:08Z,- neevliberman commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229234916) at 2022-08-27 10:45 AM PDT -neevliberman,2022-08-27T17:55:38Z,- neevliberman commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229236529) at 2022-08-27 10:55 AM PDT -neevliberman,2022-08-27T23:06:22Z,- neevliberman commented on pull request: [3490](https://github.com/hackforla/website/pull/3490#issuecomment-1229295311) at 2022-08-27 04:06 PM PDT -neevliberman,2022-08-28T21:12:58Z,- neevliberman pull request merged: [3490](https://github.com/hackforla/website/pull/3490#event-7274007582) at 2022-08-28 02:12 PM PDT -neevliberman,2022-09-05T21:10:07Z,- neevliberman commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1237458327) at 2022-09-05 02:10 PM PDT -neevliberman,2022-09-05T21:13:47Z,- neevliberman submitted pull request review: [3519](https://github.com/hackforla/website/pull/3519#pullrequestreview-1096771342) at 2022-09-05 02:13 PM PDT -neevliberman,2022-09-18T00:00:21Z,- neevliberman submitted pull request review: [3561](https://github.com/hackforla/website/pull/3561#pullrequestreview-1111478325) at 2022-09-17 05:00 PM PDT -neevliberman,2022-09-18T00:08:38Z,- neevliberman commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250159309) at 2022-09-17 05:08 PM PDT -neevliberman,2022-09-18T00:15:16Z,- neevliberman submitted pull request review: [3558](https://github.com/hackforla/website/pull/3558#pullrequestreview-1111479149) at 2022-09-17 05:15 PM PDT -neevliberman,2022-09-18T00:54:28Z,- neevliberman commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250165174) at 2022-09-17 05:54 PM PDT -neevliberman,2022-09-19T01:42:29Z,- neevliberman submitted pull request review: [3560](https://github.com/hackforla/website/pull/3560#pullrequestreview-1111632006) at 2022-09-18 06:42 PM PDT -neevliberman,2022-09-25T20:58:53Z,- neevliberman commented on pull request: [3579](https://github.com/hackforla/website/pull/3579#issuecomment-1257278515) at 2022-09-25 01:58 PM PDT -neevliberman,2022-09-25T21:01:51Z,- neevliberman submitted pull request review: [3579](https://github.com/hackforla/website/pull/3579#pullrequestreview-1119455168) at 2022-09-25 02:01 PM PDT -neevliberman,2022-09-25T21:47:13Z,- neevliberman assigned to issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1115357054) at 2022-09-25 02:47 PM PDT -neevliberman,2022-09-25T21:47:52Z,- neevliberman commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1257286385) at 2022-09-25 02:47 PM PDT -neevliberman,2022-09-28T05:26:18Z,- neevliberman commented on issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1260405424) at 2022-09-27 10:26 PM PDT -neevliberman,2022-10-09T00:44:30Z,- neevliberman unassigned from issue: [2355](https://github.com/hackforla/website/issues/2355#issuecomment-1272422869) at 2022-10-08 05:44 PM PDT -neevliberman,2022-11-06T19:15:48Z,- neevliberman unassigned from issue: [2205](https://github.com/hackforla/website/issues/2205#event-7274007592) at 2022-11-06 11:15 AM PST -neevliberman,2022-11-06T19:28:40Z,- neevliberman assigned to issue: [2205](https://github.com/hackforla/website/issues/2205#event-7747792572) at 2022-11-06 11:28 AM PST -nehasyed97,3411,SKILLS ISSUE -nehasyed97,2022-07-20T21:31:18Z,- nehasyed97 opened issue: [3411](https://github.com/hackforla/website/issues/3411) at 2022-07-20 02:31 PM PDT -nehasyed97,2022-07-20T21:31:18Z,- nehasyed97 assigned to issue: [3411](https://github.com/hackforla/website/issues/3411) at 2022-07-20 02:31 PM PDT -nehasyed97,2022-08-10T21:18:31Z,- nehasyed97 assigned to issue: [3448](https://github.com/hackforla/website/issues/3448) at 2022-08-10 02:18 PM PDT -nehasyed97,2022-08-14T22:32:34Z,- nehasyed97 commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1214461783) at 2022-08-14 03:32 PM PDT -nehasyed97,2022-08-21T16:49:15Z,- nehasyed97 closed issue as completed: [3411](https://github.com/hackforla/website/issues/3411#event-7227939542) at 2022-08-21 09:49 AM PDT -nehasyed97,2022-08-21T16:49:21Z,- nehasyed97 reopened issue: [3411](https://github.com/hackforla/website/issues/3411#event-7227939542) at 2022-08-21 09:49 AM PDT -nehasyed97,2022-08-21T16:49:24Z,- nehasyed97 closed issue as completed: [3411](https://github.com/hackforla/website/issues/3411#event-7227939660) at 2022-08-21 09:49 AM PDT -nehasyed97,2022-08-26T19:08:27Z,- nehasyed97 commented on issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1228826023) at 2022-08-26 12:08 PM PDT -nehasyed97,2022-09-16T14:39:41Z,- nehasyed97 closed issue as completed: [3448](https://github.com/hackforla/website/issues/3448#event-7403799547) at 2022-09-16 07:39 AM PDT -nehasyed97,2022-10-01T19:59:08Z,- nehasyed97 assigned to issue: [3563](https://github.com/hackforla/website/issues/3563#issuecomment-1257248783) at 2022-10-01 12:59 PM PDT -nehasyed97,2022-10-01T20:02:27Z,- nehasyed97 closed issue as completed: [3563](https://github.com/hackforla/website/issues/3563#event-7500978918) at 2022-10-01 01:02 PM PDT -nehasyed97,2022-11-26T19:53:30Z,- nehasyed97 unassigned from issue: [3448](https://github.com/hackforla/website/issues/3448#issuecomment-1328104511) at 2022-11-26 11:53 AM PST -nekobox,2019-08-28T01:51:37Z,- nekobox assigned to issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-524588222) at 2019-08-27 06:51 PM PDT -nekobox,2019-08-28T03:24:27Z,- nekobox commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525568250) at 2019-08-27 08:24 PM PDT -nekobox,2019-08-28T05:12:15Z,- nekobox commented on issue: [148](https://github.com/hackforla/website/issues/148#issuecomment-525587110) at 2019-08-27 10:12 PM PDT -nelsonuprety1,6035,SKILLS ISSUE -nelsonuprety1,2023-11-30T05:00:20Z,- nelsonuprety1 opened issue: [5949](https://github.com/hackforla/website/issues/5949) at 2023-11-29 09:00 PM PST -nelsonuprety1,2023-12-06T22:56:45Z,- nelsonuprety1 commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1843821360) at 2023-12-06 02:56 PM PST -nelsonuprety1,2023-12-07T04:04:15Z,- nelsonuprety1 commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1844254035) at 2023-12-06 08:04 PM PST -nelsonuprety1,2024-01-03T03:53:59Z,- nelsonuprety1 opened issue: [6035](https://github.com/hackforla/website/issues/6035) at 2024-01-02 07:53 PM PST -nelsonuprety1,2024-01-03T03:53:59Z,- nelsonuprety1 assigned to issue: [6035](https://github.com/hackforla/website/issues/6035) at 2024-01-02 07:53 PM PST -nelsonuprety1,2024-01-05T22:42:36Z,- nelsonuprety1 opened pull request: [6069](https://github.com/hackforla/website/pull/6069) at 2024-01-05 02:42 PM PST -nelsonuprety1,2024-01-05T22:49:11Z,- nelsonuprety1 commented on issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1879350816) at 2024-01-05 02:49 PM PST -nelsonuprety1,2024-01-05T23:05:30Z,- nelsonuprety1 pull request closed w/o merging: [6069](https://github.com/hackforla/website/pull/6069#event-11405906854) at 2024-01-05 03:05 PM PST -nelsonuprety1,2024-01-05T23:09:55Z,- nelsonuprety1 opened pull request: [6070](https://github.com/hackforla/website/pull/6070) at 2024-01-05 03:09 PM PST -nelsonuprety1,2024-01-06T05:43:39Z,- nelsonuprety1 commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879562596) at 2024-01-05 09:43 PM PST -nelsonuprety1,2024-01-06T16:51:39Z,- nelsonuprety1 opened pull request: [6072](https://github.com/hackforla/website/pull/6072) at 2024-01-06 08:51 AM PST -nelsonuprety1,2024-01-06T19:20:07Z,- nelsonuprety1 pull request merged: [6072](https://github.com/hackforla/website/pull/6072#event-11409350955) at 2024-01-06 11:20 AM PST -nelsonuprety1,2024-01-06T21:33:29Z,- nelsonuprety1 assigned to issue: [5959](https://github.com/hackforla/website/issues/5959#issuecomment-1879350816) at 2024-01-06 01:33 PM PST -nelsonuprety1,2024-01-06T21:42:01Z,- nelsonuprety1 commented on pull request: [6070](https://github.com/hackforla/website/pull/6070#issuecomment-1879836896) at 2024-01-06 01:42 PM PST -nelsonuprety1,2024-01-06T21:50:28Z,- nelsonuprety1 pull request merged: [6070](https://github.com/hackforla/website/pull/6070#event-11409669234) at 2024-01-06 01:50 PM PST -nelsonuprety1,2024-01-06T21:58:48Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879841303) at 2024-01-06 01:58 PM PST -nelsonuprety1,2024-01-06T21:58:48Z,- nelsonuprety1 reopened pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879841303) at 2024-01-06 01:58 PM PST -nelsonuprety1,2024-01-06T21:59:08Z,- nelsonuprety1 assigned to issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382720) at 2024-01-06 01:59 PM PST -nelsonuprety1,2024-01-07T03:02:52Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879922535) at 2024-01-06 07:02 PM PST -nelsonuprety1,2024-01-07T20:12:32Z,- nelsonuprety1 commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1880159206) at 2024-01-07 12:12 PM PST -nelsonuprety1,2024-01-07T20:23:59Z,- nelsonuprety1 pull request merged: [6072](https://github.com/hackforla/website/pull/6072#event-11411920791) at 2024-01-07 12:23 PM PST -nelsonuprety1,2024-01-08T03:09:23Z,- nelsonuprety1 assigned to issue: [5708](https://github.com/hackforla/website/issues/5708#issuecomment-1763721188) at 2024-01-07 07:09 PM PST -nelsonuprety1,2024-01-08T03:10:05Z,- nelsonuprety1 opened pull request: [6077](https://github.com/hackforla/website/pull/6077) at 2024-01-07 07:10 PM PST -nelsonuprety1,2024-01-10T05:41:03Z,- nelsonuprety1 pull request merged: [6077](https://github.com/hackforla/website/pull/6077#event-11438726703) at 2024-01-09 09:41 PM PST -nelsonuprety1,2024-01-23T21:59:26Z,- nelsonuprety1 assigned to issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1904820250) at 2024-01-23 01:59 PM PST -nelsonuprety1,2024-01-23T22:06:09Z,- nelsonuprety1 opened pull request: [6146](https://github.com/hackforla/website/pull/6146) at 2024-01-23 02:06 PM PST -nelsonuprety1,2024-01-23T22:07:34Z,- nelsonuprety1 commented on issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907000710) at 2024-01-23 02:07 PM PST -nelsonuprety1,2024-01-24T05:51:30Z,- nelsonuprety1 pull request closed w/o merging: [6146](https://github.com/hackforla/website/pull/6146#event-11579435963) at 2024-01-23 09:51 PM PST -nelsonuprety1,2024-01-24T05:52:54Z,- nelsonuprety1 unassigned from issue: [6082](https://github.com/hackforla/website/issues/6082#issuecomment-1907422247) at 2024-01-23 09:52 PM PST -nelsonuprety1,2024-01-25T01:10:49Z,- nelsonuprety1 assigned to issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1904926390) at 2024-01-24 05:10 PM PST -nelsonuprety1,2024-01-25T01:13:48Z,- nelsonuprety1 commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1909184842) at 2024-01-24 05:13 PM PST -nelsonuprety1,2024-01-25T01:24:19Z,- nelsonuprety1 opened pull request: [6152](https://github.com/hackforla/website/pull/6152) at 2024-01-24 05:24 PM PST -nelsonuprety1,2024-01-25T01:24:47Z,- nelsonuprety1 commented on issue: [6120](https://github.com/hackforla/website/issues/6120#issuecomment-1909193150) at 2024-01-24 05:24 PM PST -nelsonuprety1,2024-01-26T17:16:51Z,- nelsonuprety1 closed issue as completed: [6035](https://github.com/hackforla/website/issues/6035#event-11611205433) at 2024-01-26 09:16 AM PST -nelsonuprety1,2024-01-28T04:21:08Z,- nelsonuprety1 commented on pull request: [6152](https://github.com/hackforla/website/pull/6152#issuecomment-1913443472) at 2024-01-27 08:21 PM PST -nelsonuprety1,2024-01-28T17:03:17Z,- nelsonuprety1 pull request merged: [6152](https://github.com/hackforla/website/pull/6152#event-11620454389) at 2024-01-28 09:03 AM PST -nelsonuprety1,2024-01-28T21:47:47Z,- nelsonuprety1 assigned to issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1874955868) at 2024-01-28 01:47 PM PST -nelsonuprety1,2024-01-29T00:26:10Z,- nelsonuprety1 commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1913779732) at 2024-01-28 04:26 PM PST -nelsonuprety1,2024-01-29T00:30:33Z,- nelsonuprety1 opened pull request: [6190](https://github.com/hackforla/website/pull/6190) at 2024-01-28 04:30 PM PST -nelsonuprety1,2024-01-29T00:31:03Z,- nelsonuprety1 commented on issue: [6043](https://github.com/hackforla/website/issues/6043#issuecomment-1913781652) at 2024-01-28 04:31 PM PST -nelsonuprety1,2024-01-29T18:07:47Z,- nelsonuprety1 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915290190) at 2024-01-29 10:07 AM PST -nelsonuprety1,2024-02-01T07:05:45Z,- nelsonuprety1 pull request merged: [6190](https://github.com/hackforla/website/pull/6190#event-11665426602) at 2024-01-31 11:05 PM PST -nelsonuprety1,2024-03-03T00:00:12Z,- nelsonuprety1 assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-03-02 04:00 PM PST -nelsonuprety1,2024-03-03T00:06:14Z,- nelsonuprety1 opened pull request: [6409](https://github.com/hackforla/website/pull/6409) at 2024-03-02 04:06 PM PST -nelsonuprety1,2024-03-03T00:08:22Z,- nelsonuprety1 commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974949059) at 2024-03-02 04:08 PM PST -nelsonuprety1,2024-03-04T03:15:34Z,- nelsonuprety1 pull request closed w/o merging: [6409](https://github.com/hackforla/website/pull/6409#event-11992712430) at 2024-03-03 07:15 PM PST -nelsonuprety1,2024-03-04T03:16:30Z,- nelsonuprety1 unassigned from issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1974949059) at 2024-03-03 07:16 PM PST -nelsonuprety1,2024-03-04T05:07:36Z,- nelsonuprety1 assigned to issue: [5996](https://github.com/hackforla/website/issues/5996) at 2024-03-03 09:07 PM PST -nelsonuprety1,2024-03-04T05:14:04Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1975747133) at 2024-03-03 09:14 PM PST -nelsonuprety1,2024-03-04T05:16:38Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1975749278) at 2024-03-03 09:16 PM PST -nelsonuprety1,2024-03-10T17:30:16Z,- nelsonuprety1 commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1987302934) at 2024-03-10 10:30 AM PDT -nelsonuprety1,2024-03-10T20:17:36Z,- nelsonuprety1 commented on issue: [6088](https://github.com/hackforla/website/issues/6088#issuecomment-1987350416) at 2024-03-10 01:17 PM PDT -nelsonuprety1,2024-03-11T02:42:05Z,- nelsonuprety1 assigned to issue: [6088](https://github.com/hackforla/website/issues/6088#event-12067450634) at 2024-03-10 07:42 PM PDT -nelsonuprety1,2024-03-19T22:43:52Z,- nelsonuprety1 assigned to issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-1865349657) at 2024-03-19 03:43 PM PDT -nelsonuprety1,2024-03-19T22:47:42Z,- nelsonuprety1 commented on issue: [5984](https://github.com/hackforla/website/issues/5984#issuecomment-2008291962) at 2024-03-19 03:47 PM PDT -nelsonuprety1,2024-04-04T20:30:19Z,- nelsonuprety1 assigned to issue: [6491](https://github.com/hackforla/website/issues/6491) at 2024-04-04 01:30 PM PDT -nelsonuprety1,2024-04-04T20:41:01Z,- nelsonuprety1 assigned to issue: [6309](https://github.com/hackforla/website/issues/6309) at 2024-04-04 01:41 PM PDT -nelsonuprety1,2024-04-04T20:48:55Z,- nelsonuprety1 opened pull request: [6566](https://github.com/hackforla/website/pull/6566) at 2024-04-04 01:48 PM PDT -nelsonuprety1,2024-04-04T20:49:36Z,- nelsonuprety1 commented on issue: [6309](https://github.com/hackforla/website/issues/6309#issuecomment-2038191213) at 2024-04-04 01:49 PM PDT -nelsonuprety1,2024-04-09T00:36:37Z,- nelsonuprety1 commented on pull request: [6566](https://github.com/hackforla/website/pull/6566#issuecomment-2043935807) at 2024-04-08 05:36 PM PDT -nelsonuprety1,2024-04-10T05:14:37Z,- nelsonuprety1 pull request merged: [6566](https://github.com/hackforla/website/pull/6566#event-12416460011) at 2024-04-09 10:14 PM PDT -nelsonuprety1,2024-06-12T03:35:14Z,- nelsonuprety1 assigned to issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140616903) at 2024-06-11 08:35 PM PDT -neonPurple,3972,SKILLS ISSUE -neonPurple,2023-02-14T04:27:56Z,- neonPurple opened issue: [3972](https://github.com/hackforla/website/issues/3972) at 2023-02-13 08:27 PM PST -neonPurple,2023-02-14T04:27:57Z,- neonPurple assigned to issue: [3972](https://github.com/hackforla/website/issues/3972) at 2023-02-13 08:27 PM PST -neonPurple,2023-03-09T17:53:53Z,- neonPurple assigned to issue: [4015](https://github.com/hackforla/website/issues/4015) at 2023-03-09 09:53 AM PST -neonPurple,2023-03-09T21:29:31Z,- neonPurple commented on issue: [4015](https://github.com/hackforla/website/issues/4015#issuecomment-1462849787) at 2023-03-09 01:29 PM PST -neonPurple,2023-03-09T23:38:10Z,- neonPurple opened pull request: [4143](https://github.com/hackforla/website/pull/4143) at 2023-03-09 03:38 PM PST -neonPurple,2023-03-12T06:48:54Z,- neonPurple pull request merged: [4143](https://github.com/hackforla/website/pull/4143#event-8725151536) at 2023-03-11 11:48 PM PDT -neonPurple,2023-03-17T18:54:24Z,- neonPurple commented on issue: [3972](https://github.com/hackforla/website/issues/3972#issuecomment-1474274095) at 2023-03-17 11:54 AM PDT -neshacascia,4628,SKILLS ISSUE -neshacascia,2023-05-09T03:34:31Z,- neshacascia opened issue: [4628](https://github.com/hackforla/website/issues/4628) at 2023-05-08 08:34 PM PDT -neshacascia,2023-05-09T03:57:56Z,- neshacascia assigned to issue: [4628](https://github.com/hackforla/website/issues/4628) at 2023-05-08 08:57 PM PDT -newdra24,2019-11-20T17:58:28Z,- newdra24 assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-20 09:58 AM PST -newdra24,2019-11-25T23:16:14Z,- newdra24 assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -newdra24,2019-11-26T00:11:22Z,- newdra24 assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -newdra24,2019-12-03T18:47:13Z,- newdra24 assigned to issue: [206](https://github.com/hackforla/website/issues/206) at 2019-12-03 10:47 AM PST -newdra24,2019-12-04T22:58:08Z,- newdra24 closed issue as completed: [185](https://github.com/hackforla/website/issues/185#event-2855845665) at 2019-12-04 02:58 PM PST -newdra24,2019-12-04T23:07:36Z,- newdra24 assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 03:07 PM PST -newdra24,2019-12-04T23:09:13Z,- newdra24 unassigned from issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-04 03:09 PM PST -newdra24,2019-12-06T00:47:39Z,- newdra24 assigned to issue: [186](https://github.com/hackforla/website/issues/186) at 2019-12-05 04:47 PM PST -newdra24,2019-12-10T23:48:26Z,- newdra24 unassigned from issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-10 03:48 PM PST -newdra24,2019-12-16T04:27:01Z,- newdra24 unassigned from issue: [186](https://github.com/hackforla/website/issues/186) at 2019-12-15 08:27 PM PST -newdra24,2019-12-16T05:23:58Z,- newdra24 assigned to issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-15 09:23 PM PST -newdra24,2019-12-22T16:25:43Z,- newdra24 unassigned from issue: [216](https://github.com/hackforla/website/issues/216) at 2019-12-22 08:25 AM PST -newdra24,2019-12-22T16:33:40Z,- newdra24 assigned to issue: [221](https://github.com/hackforla/website/issues/221) at 2019-12-22 08:33 AM PST -newdra24,2020-01-06T01:18:43Z,- newdra24 assigned to issue: [242](https://github.com/hackforla/website/issues/242) at 2020-01-05 05:18 PM PST -newdra24,2020-01-20T03:19:15Z,- newdra24 assigned to issue: [270](https://github.com/hackforla/website/issues/270) at 2020-01-19 07:19 PM PST -newdra24,2020-01-26T19:01:56Z,- newdra24 assigned to issue: [239](https://github.com/hackforla/website/issues/239#issuecomment-576507476) at 2020-01-26 11:01 AM PST -newdra24,2020-02-16T18:41:02Z,- newdra24 closed issue as completed: [239](https://github.com/hackforla/website/issues/239#event-3041750597) at 2020-02-16 10:41 AM PST -newdra24,2020-02-16T19:37:24Z,- newdra24 unassigned from issue: [242](https://github.com/hackforla/website/issues/242#issuecomment-586744103) at 2020-02-16 11:37 AM PST -newdra24,2020-04-11T21:21:04Z,- newdra24 closed issue as completed: [242](https://github.com/hackforla/website/issues/242#event-3224504595) at 2020-04-11 02:21 PM PDT -newdra24,2020-05-24T19:31:10Z,- newdra24 unassigned from issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -newdra24,2020-05-24T19:53:40Z,- newdra24 unassigned from issue: [221](https://github.com/hackforla/website/issues/221) at 2020-05-24 12:53 PM PDT -newdra24,2021-11-10T21:06:47Z,- newdra24 closed issue as completed: [221](https://github.com/hackforla/website/issues/221#event-5599983814) at 2021-11-10 01:06 PM PST -Nick-McCarthy,4635,SKILLS ISSUE -Nick-McCarthy,2023-05-09T04:13:01Z,- Nick-McCarthy opened issue: [4635](https://github.com/hackforla/website/issues/4635) at 2023-05-08 09:13 PM PDT -Nick-McCarthy,2023-05-09T04:13:17Z,- Nick-McCarthy assigned to issue: [4635](https://github.com/hackforla/website/issues/4635) at 2023-05-08 09:13 PM PDT -nickgieschen,2020-07-27T22:59:56Z,- nickgieschen commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-664680604) at 2020-07-27 03:59 PM PDT -nicolettedmabeza,3968,SKILLS ISSUE -nicolettedmabeza,2023-02-14T00:53:36Z,- nicolettedmabeza opened issue: [3968](https://github.com/hackforla/website/issues/3968) at 2023-02-13 04:53 PM PST -nicolettedmabeza,2023-02-14T00:53:57Z,- nicolettedmabeza assigned to issue: [3968](https://github.com/hackforla/website/issues/3968) at 2023-02-13 04:53 PM PST -nicolettedmabeza,2023-02-17T00:16:23Z,- nicolettedmabeza assigned to issue: [3873](https://github.com/hackforla/website/issues/3873) at 2023-02-16 04:16 PM PST -nicolettedmabeza,2023-02-17T01:04:55Z,- nicolettedmabeza commented on issue: [3873](https://github.com/hackforla/website/issues/3873#issuecomment-1433949416) at 2023-02-16 05:04 PM PST -nicolettedmabeza,2023-02-17T01:23:41Z,- nicolettedmabeza opened pull request: [3989](https://github.com/hackforla/website/pull/3989) at 2023-02-16 05:23 PM PST -nicolettedmabeza,2023-02-18T00:28:39Z,- nicolettedmabeza pull request merged: [3989](https://github.com/hackforla/website/pull/3989#event-8551942121) at 2023-02-17 04:28 PM PST -nicolettedmabeza,2023-02-22T03:40:02Z,- nicolettedmabeza commented on pull request: [4021](https://github.com/hackforla/website/pull/4021#issuecomment-1439395471) at 2023-02-21 07:40 PM PST -nicolettedmabeza,2023-02-22T21:14:41Z,- nicolettedmabeza closed issue as completed: [3968](https://github.com/hackforla/website/issues/3968#event-8585485526) at 2023-02-22 01:14 PM PST -nicolettedmabeza,2023-02-23T23:28:23Z,- nicolettedmabeza submitted pull request review: [4021](https://github.com/hackforla/website/pull/4021#pullrequestreview-1312293248) at 2023-02-23 03:28 PM PST -nicolettedmabeza,2023-03-03T01:39:28Z,- nicolettedmabeza assigned to issue: [4081](https://github.com/hackforla/website/issues/4081) at 2023-03-02 05:39 PM PST -nicolettedmabeza,2023-03-03T01:42:09Z,- nicolettedmabeza commented on issue: [4081](https://github.com/hackforla/website/issues/4081#issuecomment-1452813426) at 2023-03-02 05:42 PM PST -nicolettedmabeza,2023-03-03T01:44:35Z,- nicolettedmabeza commented on issue: [3968](https://github.com/hackforla/website/issues/3968#issuecomment-1452815397) at 2023-03-02 05:44 PM PST -nicolettedmabeza,2023-03-03T01:48:03Z,- nicolettedmabeza commented on pull request: [4092](https://github.com/hackforla/website/pull/4092#issuecomment-1452818069) at 2023-03-02 05:48 PM PST -nicolettedmabeza,2023-03-03T02:00:42Z,- nicolettedmabeza submitted pull request review: [4092](https://github.com/hackforla/website/pull/4092#pullrequestreview-1322999522) at 2023-03-02 06:00 PM PST -nicolettedmabeza,2023-03-03T02:39:54Z,- nicolettedmabeza opened pull request: [4094](https://github.com/hackforla/website/pull/4094) at 2023-03-02 06:39 PM PST -nicolettedmabeza,2023-03-05T21:00:44Z,- nicolettedmabeza pull request merged: [4094](https://github.com/hackforla/website/pull/4094#event-8668677518) at 2023-03-05 01:00 PM PST -nicolettedmabeza,2023-04-12T21:13:38Z,- nicolettedmabeza assigned to issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1480493155) at 2023-04-12 02:13 PM PDT -nicolettedmabeza,2023-04-12T21:14:53Z,- nicolettedmabeza commented on issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1505958191) at 2023-04-12 02:14 PM PDT -nicolettedmabeza,2023-04-14T18:43:54Z,- nicolettedmabeza commented on issue: [4257](https://github.com/hackforla/website/issues/4257#issuecomment-1509073912) at 2023-04-14 11:43 AM PDT -nicolettedmabeza,2023-04-14T18:59:58Z,- nicolettedmabeza opened pull request: [4516](https://github.com/hackforla/website/pull/4516) at 2023-04-14 11:59 AM PDT -nicolettedmabeza,2023-04-16T07:07:31Z,- nicolettedmabeza pull request merged: [4516](https://github.com/hackforla/website/pull/4516#event-9015904861) at 2023-04-16 12:07 AM PDT -nielseny,2020-12-08T21:10:59Z,- nielseny assigned to issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-643688618) at 2020-12-08 01:10 PM PST -nielseny,2020-12-08T21:53:55Z,- nielseny assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:53 PM PST -nielseny,2020-12-08T21:54:12Z,- nielseny unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -nielseny,2020-12-08T21:54:35Z,- nielseny assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -nielseny,2020-12-08T22:16:34Z,- nielseny commented on issue: [387](https://github.com/hackforla/website/issues/387#issuecomment-741122929) at 2020-12-08 02:16 PM PST -nielseny,2020-12-15T05:54:11Z,- nielseny commented on issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-745070501) at 2020-12-14 09:54 PM PST -nielseny,2020-12-21T22:54:39Z,- nielseny unassigned from issue: [538](https://github.com/hackforla/website/issues/538#issuecomment-748644377) at 2020-12-21 02:54 PM PST -nielseny,2021-01-10T20:38:35Z,- nielseny unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -nikunjgupta609,2023-10-06T14:13:56Z,- nikunjgupta609 commented on issue: [5618](https://github.com/hackforla/website/issues/5618#issuecomment-1750752687) at 2023-10-06 07:13 AM PDT -nikunjgupta609,2023-10-06T14:31:52Z,- nikunjgupta609 opened pull request: [5667](https://github.com/hackforla/website/pull/5667) at 2023-10-06 07:31 AM PDT -nikunjgupta609,2023-10-06T17:29:46Z,- nikunjgupta609 commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1751160869) at 2023-10-06 10:29 AM PDT -nikunjgupta609,2023-10-06T17:36:43Z,- nikunjgupta609 commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1751170926) at 2023-10-06 10:36 AM PDT -nikunjgupta609,2023-10-07T12:40:24Z,- nikunjgupta609 commented on pull request: [5664](https://github.com/hackforla/website/pull/5664#issuecomment-1751702777) at 2023-10-07 05:40 AM PDT -nikunjgupta609,2023-10-08T10:36:17Z,- nikunjgupta609 pull request closed w/o merging: [5667](https://github.com/hackforla/website/pull/5667#event-10583793974) at 2023-10-08 03:36 AM PDT -nirbhaykr87,2023-09-07T07:28:23Z,- nirbhaykr87 commented on issue: [5448](https://github.com/hackforla/website/issues/5448#issuecomment-1709619549) at 2023-09-07 12:28 AM PDT -nitin-pandita,2023-08-13T06:41:56Z,- nitin-pandita commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1676252479) at 2023-08-12 11:41 PM PDT -nitin-pandita,2023-08-13T06:54:50Z,- nitin-pandita opened pull request: [5190](https://github.com/hackforla/website/pull/5190) at 2023-08-12 11:54 PM PDT -nitin-pandita,2023-08-13T10:49:19Z,- nitin-pandita commented on pull request: [5190](https://github.com/hackforla/website/pull/5190#issuecomment-1676317387) at 2023-08-13 03:49 AM PDT -nitin-pandita,2023-08-13T17:18:17Z,- nitin-pandita pull request closed w/o merging: [5190](https://github.com/hackforla/website/pull/5190#event-10080262571) at 2023-08-13 10:18 AM PDT -nitin-pandita,2023-08-14T00:11:36Z,- nitin-pandita commented on pull request: [5190](https://github.com/hackforla/website/pull/5190#issuecomment-1676505304) at 2023-08-13 05:11 PM PDT -nitin-pandita,2023-08-14T00:19:53Z,- nitin-pandita commented on issue: [5040](https://github.com/hackforla/website/issues/5040#issuecomment-1676508519) at 2023-08-13 05:19 PM PDT -nitin-pandita,2023-08-14T00:22:00Z,- nitin-pandita commented on issue: [5178](https://github.com/hackforla/website/issues/5178#issuecomment-1676509284) at 2023-08-13 05:22 PM PDT -NivenPrasad,2020-08-13T01:05:53Z,- NivenPrasad opened issue: [680](https://github.com/hackforla/website/issues/680) at 2020-08-12 06:05 PM PDT -NivenPrasad,2020-09-05T22:13:07Z,- NivenPrasad commented on pull request: [714](https://github.com/hackforla/website/pull/714#issuecomment-687669704) at 2020-09-05 03:13 PM PDT -njackman-2344,5223,SKILLS ISSUE -njackman-2344,2023-08-15T03:15:08Z,- njackman-2344 opened issue: [5223](https://github.com/hackforla/website/issues/5223) at 2023-08-14 08:15 PM PDT -njackman-2344,2023-08-15T03:15:08Z,- njackman-2344 assigned to issue: [5223](https://github.com/hackforla/website/issues/5223) at 2023-08-14 08:15 PM PDT -njackman-2344,2023-08-18T18:47:47Z,- njackman-2344 commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1684307576) at 2023-08-18 11:47 AM PDT -njackman-2344,2023-08-20T18:02:49Z,- njackman-2344 assigned to issue: [5266](https://github.com/hackforla/website/issues/5266) at 2023-08-20 11:02 AM PDT -njackman-2344,2023-08-20T18:05:33Z,- njackman-2344 commented on issue: [5266](https://github.com/hackforla/website/issues/5266#issuecomment-1685355616) at 2023-08-20 11:05 AM PDT -njackman-2344,2023-08-20T22:46:42Z,- njackman-2344 opened pull request: [5275](https://github.com/hackforla/website/pull/5275) at 2023-08-20 03:46 PM PDT -njackman-2344,2023-08-22T05:09:21Z,- njackman-2344 commented on pull request: [5275](https://github.com/hackforla/website/pull/5275#issuecomment-1687437799) at 2023-08-21 10:09 PM PDT -njackman-2344,2023-08-22T21:55:56Z,- njackman-2344 pull request merged: [5275](https://github.com/hackforla/website/pull/5275#event-10163488667) at 2023-08-22 02:55 PM PDT -njackman-2344,2023-08-23T21:46:34Z,- njackman-2344 commented on issue: [5223](https://github.com/hackforla/website/issues/5223#issuecomment-1690688460) at 2023-08-23 02:46 PM PDT -njackman-2344,2023-08-23T21:47:02Z,- njackman-2344 closed issue as completed: [5223](https://github.com/hackforla/website/issues/5223#event-10174806286) at 2023-08-23 02:47 PM PDT -njackman-2344,2023-08-24T04:20:55Z,- njackman-2344 assigned to issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1683454901) at 2023-08-23 09:20 PM PDT -njackman-2344,2023-08-24T04:22:23Z,- njackman-2344 commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1690975426) at 2023-08-23 09:22 PM PDT -njackman-2344,2023-08-24T09:40:24Z,- njackman-2344 commented on issue: [5022](https://github.com/hackforla/website/issues/5022#issuecomment-1691354838) at 2023-08-24 02:40 AM PDT -njackman-2344,2023-08-27T20:37:11Z,- njackman-2344 submitted pull request review: [5299](https://github.com/hackforla/website/pull/5299#pullrequestreview-1597186938) at 2023-08-27 01:37 PM PDT -njackman-2344,2023-08-28T00:25:38Z,- njackman-2344 assigned to issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1132213910) at 2023-08-27 05:25 PM PDT -njackman-2344,2023-08-28T00:27:50Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1694815473) at 2023-08-27 05:27 PM PDT -njackman-2344,2023-09-01T22:16:29Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1703380174) at 2023-09-01 03:16 PM PDT -njackman-2344,2023-09-10T18:58:15Z,- njackman-2344 commented on pull request: [5466](https://github.com/hackforla/website/pull/5466#issuecomment-1712911494) at 2023-09-10 11:58 AM PDT -njackman-2344,2023-09-10T19:02:38Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1712912350) at 2023-09-10 12:02 PM PDT -njackman-2344,2023-09-11T02:40:00Z,- njackman-2344 commented on issue: [3139](https://github.com/hackforla/website/issues/3139#issuecomment-1713073077) at 2023-09-10 07:40 PM PDT -njackman-2344,2023-09-15T04:22:03Z,- njackman-2344 submitted pull request review: [5466](https://github.com/hackforla/website/pull/5466#pullrequestreview-1628170215) at 2023-09-14 09:22 PM PDT -njackman-2344,2023-09-15T05:57:16Z,- njackman-2344 assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-09-14 10:57 PM PDT -njackman-2344,2023-09-15T05:58:45Z,- njackman-2344 unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-09-14 10:58 PM PDT -njackman-2344,2023-09-17T18:13:55Z,- njackman-2344 commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722534041) at 2023-09-17 11:13 AM PDT -njackman-2344,2023-09-18T07:16:36Z,- njackman-2344 commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722866942) at 2023-09-18 12:16 AM PDT -njackman-2344,2023-09-18T22:57:32Z,- njackman-2344 submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1632094239) at 2023-09-18 03:57 PM PDT -njackman-2344,2023-09-19T02:39:17Z,- njackman-2344 closed issue as completed: [5525](https://github.com/hackforla/website/issues/5525#event-10405063320) at 2023-09-18 07:39 PM PDT -njackman-2344,2023-09-27T03:24:04Z,- njackman-2344 assigned to issue: [5604](https://github.com/hackforla/website/issues/5604) at 2023-09-26 08:24 PM PDT -njackman-2344,2023-09-27T03:27:22Z,- njackman-2344 commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1736615987) at 2023-09-26 08:27 PM PDT -njackman-2344,2023-10-01T04:22:05Z,- njackman-2344 commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1741952389) at 2023-09-30 09:22 PM PDT -njackman-2344,2023-10-01T04:40:10Z,- njackman-2344 submitted pull request review: [5636](https://github.com/hackforla/website/pull/5636#pullrequestreview-1651831739) at 2023-09-30 09:40 PM PDT -njackman-2344,2023-10-04T20:53:40Z,- njackman-2344 commented on issue: [5604](https://github.com/hackforla/website/issues/5604#issuecomment-1747625351) at 2023-10-04 01:53 PM PDT -njackman-2344,2023-10-05T06:08:38Z,- njackman-2344 assigned to issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1742065576) at 2023-10-04 11:08 PM PDT -njackman-2344,2023-10-05T06:10:06Z,- njackman-2344 commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1748149061) at 2023-10-04 11:10 PM PDT -njackman-2344,2023-10-05T21:13:12Z,- njackman-2344 commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1749652628) at 2023-10-05 02:13 PM PDT -njackman-2344,2023-10-27T07:32:47Z,- njackman-2344 assigned to issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1772919665) at 2023-10-27 12:32 AM PDT -njackman-2344,2023-10-27T07:36:58Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1782444367) at 2023-10-27 12:36 AM PDT -njackman-2344,2023-11-10T07:43:24Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1805243537) at 2023-11-09 11:43 PM PST -njackman-2344,2023-11-17T04:05:56Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1815716518) at 2023-11-16 08:05 PM PST -njackman-2344,2023-12-07T21:39:53Z,- njackman-2344 commented on issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1846152440) at 2023-12-07 01:39 PM PST -njackman-2344,2023-12-13T06:25:26Z,- njackman-2344 unassigned from issue: [5743](https://github.com/hackforla/website/issues/5743#issuecomment-1846152440) at 2023-12-12 10:25 PM PST -njackman-2344,2024-01-17T03:42:18Z,- njackman-2344 assigned to issue: [5990](https://github.com/hackforla/website/issues/5990) at 2024-01-16 07:42 PM PST -njackman-2344,2024-01-17T03:44:23Z,- njackman-2344 commented on issue: [5990](https://github.com/hackforla/website/issues/5990#issuecomment-1894889535) at 2024-01-16 07:44 PM PST -njackman-2344,2024-01-19T02:06:00Z,- njackman-2344 commented on issue: [5990](https://github.com/hackforla/website/issues/5990#issuecomment-1899524546) at 2024-01-18 06:06 PM PST -njackman-2344,2024-01-24T02:39:13Z,- njackman-2344 commented on pull request: [6147](https://github.com/hackforla/website/pull/6147#issuecomment-1907253848) at 2024-01-23 06:39 PM PST -njackman-2344,2024-01-24T02:44:02Z,- njackman-2344 commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1907257485) at 2024-01-23 06:44 PM PST -njackman-2344,2024-01-26T06:28:22Z,- njackman-2344 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1845128835) at 2024-01-25 10:28 PM PST -njackman-2344,2024-01-26T06:34:43Z,- njackman-2344 submitted pull request review: [6147](https://github.com/hackforla/website/pull/6147#pullrequestreview-1845135262) at 2024-01-25 10:34 PM PST -njackman-2344,2024-01-26T07:04:28Z,- njackman-2344 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1911583813) at 2024-01-25 11:04 PM PST -njackman-2344,2024-01-29T20:39:40Z,- njackman-2344 commented on pull request: [6158](https://github.com/hackforla/website/pull/6158#issuecomment-1915523849) at 2024-01-29 12:39 PM PST -njackman-2344,2024-01-30T03:23:12Z,- njackman-2344 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1850159908) at 2024-01-29 07:23 PM PST -njackman-2344,2024-01-31T06:34:17Z,- njackman-2344 submitted pull request review: [6158](https://github.com/hackforla/website/pull/6158#pullrequestreview-1852983411) at 2024-01-30 10:34 PM PST -njackman-2344,2024-01-31T07:19:32Z,- njackman-2344 assigned to issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1875690198) at 2024-01-30 11:19 PM PST -njackman-2344,2024-01-31T07:25:40Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1918532660) at 2024-01-30 11:25 PM PST -njackman-2344,2024-01-31T07:34:13Z,- njackman-2344 submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1853056154) at 2024-01-30 11:34 PM PST -njackman-2344,2024-02-02T07:22:15Z,- njackman-2344 submitted pull request review: [6210](https://github.com/hackforla/website/pull/6210#pullrequestreview-1858545255) at 2024-02-01 11:22 PM PST -njackman-2344,2024-02-02T07:25:12Z,- njackman-2344 submitted pull request review: [6207](https://github.com/hackforla/website/pull/6207#pullrequestreview-1858549812) at 2024-02-01 11:25 PM PST -njackman-2344,2024-02-02T23:35:17Z,- njackman-2344 commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1924905462) at 2024-02-02 03:35 PM PST -njackman-2344,2024-02-03T02:28:40Z,- njackman-2344 commented on pull request: [6215](https://github.com/hackforla/website/pull/6215#issuecomment-1925026196) at 2024-02-02 06:28 PM PST -njackman-2344,2024-02-03T02:41:00Z,- njackman-2344 commented on pull request: [6214](https://github.com/hackforla/website/pull/6214#issuecomment-1925029131) at 2024-02-02 06:41 PM PST -njackman-2344,2024-02-03T18:51:26Z,- njackman-2344 submitted pull request review: [6215](https://github.com/hackforla/website/pull/6215#pullrequestreview-1861111103) at 2024-02-03 10:51 AM PST -njackman-2344,2024-02-03T19:01:46Z,- njackman-2344 submitted pull request review: [6214](https://github.com/hackforla/website/pull/6214#pullrequestreview-1861111995) at 2024-02-03 11:01 AM PST -njackman-2344,2024-02-06T07:23:33Z,- njackman-2344 commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1928920868) at 2024-02-05 11:23 PM PST -njackman-2344,2024-02-09T05:04:43Z,- njackman-2344 submitted pull request review: [6241](https://github.com/hackforla/website/pull/6241#pullrequestreview-1871659334) at 2024-02-08 09:04 PM PST -njackman-2344,2024-02-10T07:17:20Z,- njackman-2344 commented on pull request: [6273](https://github.com/hackforla/website/pull/6273#issuecomment-1936911271) at 2024-02-09 11:17 PM PST -njackman-2344,2024-02-10T07:26:33Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1936914339) at 2024-02-09 11:26 PM PST -njackman-2344,2024-02-13T07:04:11Z,- njackman-2344 commented on pull request: [6283](https://github.com/hackforla/website/pull/6283#issuecomment-1940533804) at 2024-02-12 11:04 PM PST -njackman-2344,2024-02-13T15:04:57Z,- njackman-2344 submitted pull request review: [6283](https://github.com/hackforla/website/pull/6283#pullrequestreview-1878199211) at 2024-02-13 07:04 AM PST -njackman-2344,2024-02-17T03:02:03Z,- njackman-2344 commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949620109) at 2024-02-16 07:02 PM PST -njackman-2344,2024-02-17T03:34:58Z,- njackman-2344 submitted pull request review: [6307](https://github.com/hackforla/website/pull/6307#pullrequestreview-1886375742) at 2024-02-16 07:34 PM PST -njackman-2344,2024-02-18T06:40:37Z,- njackman-2344 submitted pull request review: [6307](https://github.com/hackforla/website/pull/6307#pullrequestreview-1887097810) at 2024-02-17 10:40 PM PST -njackman-2344,2024-03-01T07:47:25Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1972685346) at 2024-02-29 11:47 PM PST -njackman-2344,2024-03-19T20:30:29Z,- njackman-2344 commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2008075470) at 2024-03-19 01:30 PM PDT -njackman-2344,2024-03-25T00:47:12Z,- njackman-2344 opened pull request: [6516](https://github.com/hackforla/website/pull/6516) at 2024-03-24 05:47 PM PDT -njackman-2344,2024-03-27T17:55:39Z,- njackman-2344 commented on pull request: [6516](https://github.com/hackforla/website/pull/6516#issuecomment-2023433259) at 2024-03-27 10:55 AM PDT -njackman-2344,2024-03-28T21:12:07Z,- njackman-2344 pull request closed w/o merging: [6516](https://github.com/hackforla/website/pull/6516#event-12287649839) at 2024-03-28 02:12 PM PDT -njackman-2344,2024-03-28T21:13:30Z,- njackman-2344 unassigned from issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-2008075470) at 2024-03-28 02:13 PM PDT -nlee806,5229,SKILLS ISSUE -nlee806,2023-08-15T03:49:44Z,- nlee806 opened issue: [5229](https://github.com/hackforla/website/issues/5229) at 2023-08-14 08:49 PM PDT -nlee806,2023-08-15T03:50:18Z,- nlee806 assigned to issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1678389556) at 2023-08-14 08:50 PM PDT -nmotamedi,7741,SKILLS ISSUE -nmotamedi,2024-11-20T03:26:33Z,- nmotamedi opened issue: [7741](https://github.com/hackforla/website/issues/7741) at 2024-11-19 07:26 PM PST -nmotamedi,2024-11-20T03:27:02Z,- nmotamedi assigned to issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487270919) at 2024-11-19 07:27 PM PST -nmotamedi,2024-11-20T03:39:23Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487283403) at 2024-11-19 07:39 PM PST -nmotamedi,2024-11-20T04:28:24Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487395461) at 2024-11-19 08:28 PM PST -nmotamedi,2024-11-20T05:42:39Z,- nmotamedi assigned to issue: [7702](https://github.com/hackforla/website/issues/7702) at 2024-11-19 09:42 PM PST -nmotamedi,2024-11-20T05:53:16Z,- nmotamedi commented on issue: [7702](https://github.com/hackforla/website/issues/7702#issuecomment-2487533361) at 2024-11-19 09:53 PM PST -nmotamedi,2024-11-20T06:05:16Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2487569883) at 2024-11-19 10:05 PM PST -nmotamedi,2024-11-20T06:20:11Z,- nmotamedi opened pull request: [7747](https://github.com/hackforla/website/pull/7747) at 2024-11-19 10:20 PM PST -nmotamedi,2024-11-21T17:17:02Z,- nmotamedi commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2491828491) at 2024-11-21 09:17 AM PST -nmotamedi,2024-11-27T22:03:40Z,- nmotamedi pull request merged: [7747](https://github.com/hackforla/website/pull/7747#event-15458006885) at 2024-11-27 02:03 PM PST -nmotamedi,2024-12-02T18:05:33Z,- nmotamedi commented on issue: [7741](https://github.com/hackforla/website/issues/7741#issuecomment-2512314209) at 2024-12-02 10:05 AM PST -nnr-nnr,4063,SKILLS ISSUE -nnr-nnr,2023-03-01T04:03:35Z,- nnr-nnr opened issue: [4063](https://github.com/hackforla/website/issues/4063) at 2023-02-28 08:03 PM PST -nnr-nnr,2023-03-01T04:08:45Z,- nnr-nnr assigned to issue: [4063](https://github.com/hackforla/website/issues/4063) at 2023-02-28 08:08 PM PST -nnr-nnr,2023-03-15T01:11:51Z,- nnr-nnr assigned to issue: [3997](https://github.com/hackforla/website/issues/3997) at 2023-03-14 06:11 PM PDT -nnr-nnr,2023-03-15T07:38:25Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1469497271) at 2023-03-15 12:38 AM PDT -nnr-nnr,2023-03-15T07:41:17Z,- nnr-nnr commented on issue: [3997](https://github.com/hackforla/website/issues/3997#issuecomment-1469500011) at 2023-03-15 12:41 AM PDT -nnr-nnr,2023-03-17T08:11:37Z,- nnr-nnr opened pull request: [4201](https://github.com/hackforla/website/pull/4201) at 2023-03-17 01:11 AM PDT -nnr-nnr,2023-03-17T08:24:52Z,- nnr-nnr commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1473378161) at 2023-03-17 01:24 AM PDT -nnr-nnr,2023-03-17T23:44:44Z,- nnr-nnr submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1346835489) at 2023-03-17 04:44 PM PDT -nnr-nnr,2023-03-19T04:04:03Z,- nnr-nnr pull request merged: [4201](https://github.com/hackforla/website/pull/4201#event-8786877846) at 2023-03-18 09:04 PM PDT -nnr-nnr,2023-03-21T20:12:13Z,- nnr-nnr commented on pull request: [4224](https://github.com/hackforla/website/pull/4224#issuecomment-1478521037) at 2023-03-21 01:12 PM PDT -nnr-nnr,2023-03-21T21:10:33Z,- nnr-nnr submitted pull request review: [4224](https://github.com/hackforla/website/pull/4224#pullrequestreview-1351388369) at 2023-03-21 02:10 PM PDT -nnr-nnr,2023-03-21T21:15:19Z,- nnr-nnr assigned to issue: [3878](https://github.com/hackforla/website/issues/3878) at 2023-03-21 02:15 PM PDT -nnr-nnr,2023-03-21T21:25:03Z,- nnr-nnr commented on issue: [3878](https://github.com/hackforla/website/issues/3878#issuecomment-1478599795) at 2023-03-21 02:25 PM PDT -nnr-nnr,2023-03-21T23:32:56Z,- nnr-nnr opened pull request: [4228](https://github.com/hackforla/website/pull/4228) at 2023-03-21 04:32 PM PDT -nnr-nnr,2023-03-21T23:38:29Z,- nnr-nnr commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1478729403) at 2023-03-21 04:38 PM PDT -nnr-nnr,2023-03-22T01:07:31Z,- nnr-nnr submitted pull request review: [4222](https://github.com/hackforla/website/pull/4222#pullrequestreview-1351580167) at 2023-03-21 06:07 PM PDT -nnr-nnr,2023-03-22T01:18:07Z,- nnr-nnr commented on pull request: [4223](https://github.com/hackforla/website/pull/4223#issuecomment-1478790895) at 2023-03-21 06:18 PM PDT -nnr-nnr,2023-03-22T04:51:40Z,- nnr-nnr submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1351713337) at 2023-03-21 09:51 PM PDT -nnr-nnr,2023-03-22T05:06:08Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1478923014) at 2023-03-21 10:06 PM PDT -nnr-nnr,2023-03-22T05:12:14Z,- nnr-nnr commented on pull request: [4234](https://github.com/hackforla/website/pull/4234#issuecomment-1478927131) at 2023-03-21 10:12 PM PDT -nnr-nnr,2023-03-22T20:51:27Z,- nnr-nnr submitted pull request review: [4234](https://github.com/hackforla/website/pull/4234#pullrequestreview-1353457902) at 2023-03-22 01:51 PM PDT -nnr-nnr,2023-03-23T02:16:10Z,- nnr-nnr submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1353731944) at 2023-03-22 07:16 PM PDT -nnr-nnr,2023-03-23T21:03:17Z,- nnr-nnr pull request merged: [4228](https://github.com/hackforla/website/pull/4228#event-8832447458) at 2023-03-23 02:03 PM PDT -nnr-nnr,2023-03-23T21:26:08Z,- nnr-nnr assigned to issue: [4235](https://github.com/hackforla/website/issues/4235#issuecomment-1480440319) at 2023-03-23 02:26 PM PDT -nnr-nnr,2023-03-23T21:36:44Z,- nnr-nnr commented on issue: [4235](https://github.com/hackforla/website/issues/4235#issuecomment-1481945824) at 2023-03-23 02:36 PM PDT -nnr-nnr,2023-03-23T23:01:59Z,- nnr-nnr opened pull request: [4265](https://github.com/hackforla/website/pull/4265) at 2023-03-23 04:01 PM PDT -nnr-nnr,2023-03-24T20:28:37Z,- nnr-nnr pull request merged: [4265](https://github.com/hackforla/website/pull/4265#event-8842509391) at 2023-03-24 01:28 PM PDT -nnr-nnr,2023-03-26T01:19:37Z,- nnr-nnr submitted pull request review: [4223](https://github.com/hackforla/website/pull/4223#pullrequestreview-1357923934) at 2023-03-25 06:19 PM PDT -nnr-nnr,2023-03-26T01:32:54Z,- nnr-nnr commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1483966636) at 2023-03-25 06:32 PM PDT -nnr-nnr,2023-03-26T17:23:28Z,- nnr-nnr commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1484163925) at 2023-03-26 10:23 AM PDT -nnr-nnr,2023-03-26T18:18:27Z,- nnr-nnr assigned to issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1482219221) at 2023-03-26 11:18 AM PDT -nnr-nnr,2023-03-26T19:17:23Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1484196141) at 2023-03-26 12:17 PM PDT -nnr-nnr,2023-03-26T20:30:18Z,- nnr-nnr submitted pull request review: [4270](https://github.com/hackforla/website/pull/4270#pullrequestreview-1358111274) at 2023-03-26 01:30 PM PDT -nnr-nnr,2023-03-27T00:06:17Z,- nnr-nnr submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1358164665) at 2023-03-26 05:06 PM PDT -nnr-nnr,2023-03-27T00:10:29Z,- nnr-nnr commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1484285589) at 2023-03-26 05:10 PM PDT -nnr-nnr,2023-03-31T00:36:47Z,- nnr-nnr commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1491136438) at 2023-03-30 05:36 PM PDT -nnr-nnr,2023-03-31T18:59:11Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1492453676) at 2023-03-31 11:59 AM PDT -nnr-nnr,2023-03-31T19:44:53Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1492508865) at 2023-03-31 12:44 PM PDT -nnr-nnr,2023-04-03T22:01:02Z,- nnr-nnr opened issue: [4389](https://github.com/hackforla/website/issues/4389) at 2023-04-03 03:01 PM PDT -nnr-nnr,2023-04-07T18:47:00Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1500543036) at 2023-04-07 11:47 AM PDT -nnr-nnr,2023-04-07T19:06:44Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1500558240) at 2023-04-07 12:06 PM PDT -nnr-nnr,2023-04-09T17:21:54Z,- nnr-nnr commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1501174883) at 2023-04-09 10:21 AM PDT -nnr-nnr,2023-04-09T17:22:49Z,- nnr-nnr commented on pull request: [4444](https://github.com/hackforla/website/pull/4444#issuecomment-1501175092) at 2023-04-09 10:22 AM PDT -nnr-nnr,2023-04-11T19:27:26Z,- nnr-nnr submitted pull request review: [4444](https://github.com/hackforla/website/pull/4444#pullrequestreview-1379936221) at 2023-04-11 12:27 PM PDT -nnr-nnr,2023-04-12T03:05:24Z,- nnr-nnr opened issue: [4484](https://github.com/hackforla/website/issues/4484) at 2023-04-11 08:05 PM PDT -nnr-nnr,2023-04-12T18:01:37Z,- nnr-nnr submitted pull request review: [4437](https://github.com/hackforla/website/pull/4437#pullrequestreview-1381841679) at 2023-04-12 11:01 AM PDT -nnr-nnr,2023-04-25T21:08:13Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1522419157) at 2023-04-25 02:08 PM PDT -nnr-nnr,2023-04-26T02:14:28Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1522664094) at 2023-04-25 07:14 PM PDT -nnr-nnr,2023-05-18T23:22:47Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1553775073) at 2023-05-18 04:22 PM PDT -nnr-nnr,2023-05-23T23:15:44Z,- nnr-nnr commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1560246073) at 2023-05-23 04:15 PM PDT -nnr-nnr,2023-05-24T19:49:10Z,- nnr-nnr commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1561839627) at 2023-05-24 12:49 PM PDT -nnr-nnr,2023-06-23T14:04:44Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1604333206) at 2023-06-23 07:04 AM PDT -nnr-nnr,2023-07-26T01:07:17Z,- nnr-nnr commented on issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1650813088) at 2023-07-25 06:07 PM PDT -nnr-nnr,2023-07-26T01:07:26Z,- nnr-nnr unassigned from issue: [2249](https://github.com/hackforla/website/issues/2249#issuecomment-1650813088) at 2023-07-25 06:07 PM PDT -nnr-nnr,2023-07-26T02:22:18Z,- nnr-nnr assigned to issue: [4867](https://github.com/hackforla/website/issues/4867) at 2023-07-25 07:22 PM PDT -nnr-nnr,2023-07-26T02:28:53Z,- nnr-nnr commented on pull request: [5058](https://github.com/hackforla/website/pull/5058#issuecomment-1650878591) at 2023-07-25 07:28 PM PDT -nnr-nnr,2023-07-26T02:30:23Z,- nnr-nnr commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1650879675) at 2023-07-25 07:30 PM PDT -nnr-nnr,2023-07-27T01:49:14Z,- nnr-nnr submitted pull request review: [5054](https://github.com/hackforla/website/pull/5054#pullrequestreview-1548861931) at 2023-07-26 06:49 PM PDT -nnr-nnr,2023-07-27T02:01:12Z,- nnr-nnr submitted pull request review: [5058](https://github.com/hackforla/website/pull/5058#pullrequestreview-1548873368) at 2023-07-26 07:01 PM PDT -nnr-nnr,2023-07-27T02:03:33Z,- nnr-nnr commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1652805044) at 2023-07-26 07:03 PM PDT -nnr-nnr,2023-08-04T18:28:07Z,- nnr-nnr commented on issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1666019015) at 2023-08-04 11:28 AM PDT -nnr-nnr,2023-08-04T18:31:12Z,- nnr-nnr commented on issue: [4063](https://github.com/hackforla/website/issues/4063#issuecomment-1666023526) at 2023-08-04 11:31 AM PDT -nnr-nnr,2023-09-20T02:08:21Z,- nnr-nnr unassigned from issue: [4867](https://github.com/hackforla/website/issues/4867#issuecomment-1720785377) at 2023-09-19 07:08 PM PDT -NolaDodd,7221,SKILLS ISSUE -NolaDodd,2024-08-06T04:09:35Z,- NolaDodd opened issue: [7221](https://github.com/hackforla/website/issues/7221) at 2024-08-05 09:09 PM PDT -NolaDodd,2024-08-06T04:10:28Z,- NolaDodd assigned to issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2270343592) at 2024-08-05 09:10 PM PDT -NolaDodd,2024-08-10T19:31:04Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2282254758) at 2024-08-10 12:31 PM PDT -NolaDodd,2024-08-10T19:33:11Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2282255402) at 2024-08-10 12:33 PM PDT -NolaDodd,2024-08-17T22:47:20Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2295017704) at 2024-08-17 03:47 PM PDT -NolaDodd,2024-08-28T01:15:51Z,- NolaDodd assigned to issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2294406124) at 2024-08-27 06:15 PM PDT -NolaDodd,2024-08-28T21:16:54Z,- NolaDodd commented on issue: [7248](https://github.com/hackforla/website/issues/7248#issuecomment-2316267161) at 2024-08-28 02:16 PM PDT -NolaDodd,2024-08-30T20:36:28Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2322299610) at 2024-08-30 01:36 PM PDT -NolaDodd,2024-08-30T21:35:23Z,- NolaDodd opened pull request: [7369](https://github.com/hackforla/website/pull/7369) at 2024-08-30 02:35 PM PDT -NolaDodd,2024-08-30T21:39:39Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2322373585) at 2024-08-30 02:39 PM PDT -NolaDodd,2024-08-30T21:42:27Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2322376005) at 2024-08-30 02:42 PM PDT -NolaDodd,2024-08-30T22:54:19Z,- NolaDodd commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2322525003) at 2024-08-30 03:54 PM PDT -NolaDodd,2024-09-12T19:49:47Z,- NolaDodd pull request merged: [7369](https://github.com/hackforla/website/pull/7369#event-14238177253) at 2024-09-12 12:49 PM PDT -NolaDodd,2024-09-12T22:49:28Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2347372733) at 2024-09-12 03:49 PM PDT -NolaDodd,2024-09-19T20:09:19Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2362085181) at 2024-09-19 01:09 PM PDT -NolaDodd,2024-09-19T20:29:09Z,- NolaDodd assigned to issue: [7497](https://github.com/hackforla/website/issues/7497) at 2024-09-19 01:29 PM PDT -NolaDodd,2024-09-19T20:33:49Z,- NolaDodd commented on issue: [7497](https://github.com/hackforla/website/issues/7497#issuecomment-2362123808) at 2024-09-19 01:33 PM PDT -NolaDodd,2024-09-19T21:31:06Z,- NolaDodd opened pull request: [7498](https://github.com/hackforla/website/pull/7498) at 2024-09-19 02:31 PM PDT -NolaDodd,2024-09-21T19:02:10Z,- NolaDodd commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2365289487) at 2024-09-21 12:02 PM PDT -NolaDodd,2024-09-21T19:02:10Z,- NolaDodd pull request closed w/o merging: [7498](https://github.com/hackforla/website/pull/7498#event-14350325522) at 2024-09-21 12:02 PM PDT -NolaDodd,2024-09-21T19:24:33Z,- NolaDodd opened pull request: [7504](https://github.com/hackforla/website/pull/7504) at 2024-09-21 12:24 PM PDT -NolaDodd,2024-09-23T02:21:57Z,- NolaDodd pull request merged: [7504](https://github.com/hackforla/website/pull/7504#event-14356490794) at 2024-09-22 07:21 PM PDT -NolaDodd,2024-09-23T03:04:41Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2367154238) at 2024-09-22 08:04 PM PDT -NolaDodd,2024-10-02T23:20:04Z,- NolaDodd assigned to issue: [7556](https://github.com/hackforla/website/issues/7556) at 2024-10-02 04:20 PM PDT -NolaDodd,2024-10-02T23:20:20Z,- NolaDodd unassigned from issue: [7556](https://github.com/hackforla/website/issues/7556) at 2024-10-02 04:20 PM PDT -NolaDodd,2024-10-11T18:10:23Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2407905787) at 2024-10-11 11:10 AM PDT -NolaDodd,2024-10-15T03:45:53Z,- NolaDodd commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2412834875) at 2024-10-14 08:45 PM PDT -NolaDodd,2024-10-15T03:48:18Z,- NolaDodd submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2368097005) at 2024-10-14 08:48 PM PDT -NolaDodd,2024-10-15T03:52:13Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2412840277) at 2024-10-14 08:52 PM PDT -NolaDodd,2024-10-30T23:08:34Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2448638859) at 2024-10-30 04:08 PM PDT -NolaDodd,2024-11-17T21:34:07Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2481604753) at 2024-11-17 01:34 PM PST -NolaDodd,2024-11-17T22:01:22Z,- NolaDodd commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481613685) at 2024-11-17 02:01 PM PST -NolaDodd,2024-11-17T22:18:50Z,- NolaDodd submitted pull request review: [7723](https://github.com/hackforla/website/pull/7723#pullrequestreview-2441246125) at 2024-11-17 02:18 PM PST -NolaDodd,2024-11-17T22:20:23Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2481631194) at 2024-11-17 02:20 PM PST -NolaDodd,2024-12-04T02:50:46Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2516054992) at 2024-12-03 06:50 PM PST -NolaDodd,2024-12-04T02:51:20Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2516055509) at 2024-12-03 06:51 PM PST -NolaDodd,2025-01-04T00:28:51Z,- NolaDodd commented on issue: [7221](https://github.com/hackforla/website/issues/7221#issuecomment-2569962346) at 2025-01-03 04:28 PM PST -NolaDodd,2025-02-05T00:41:55Z,- NolaDodd commented on pull request: [7874](https://github.com/hackforla/website/pull/7874#issuecomment-2635451659) at 2025-02-04 04:41 PM PST -NolaDodd,2025-02-05T00:56:46Z,- NolaDodd submitted pull request review: [7874](https://github.com/hackforla/website/pull/7874#pullrequestreview-2594397849) at 2025-02-04 04:56 PM PST -nooriaali9,2024-12-09T23:46:31Z,- nooriaali9 commented on issue: [7730](https://github.com/hackforla/website/issues/7730#issuecomment-2529811363) at 2024-12-09 03:46 PM PST -notSayam,7338,SKILLS ISSUE -notSayam,2024-08-21T03:48:13Z,- notSayam opened issue: [7338](https://github.com/hackforla/website/issues/7338) at 2024-08-20 08:48 PM PDT -notSayam,2024-08-21T03:50:10Z,- notSayam assigned to issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2300642848) at 2024-08-20 08:50 PM PDT -notSayam,2024-08-21T04:05:10Z,- notSayam commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2300726192) at 2024-08-20 09:05 PM PDT -notSayam,2024-08-23T02:24:20Z,- notSayam commented on issue: [7338](https://github.com/hackforla/website/issues/7338#issuecomment-2306065748) at 2024-08-22 07:24 PM PDT -npkeerthi,2021-10-21T06:02:13Z,- npkeerthi opened pull request: [2388](https://github.com/hackforla/website/pull/2388) at 2021-10-20 11:02 PM PDT -npkeerthi,2021-10-21T06:04:20Z,- npkeerthi commented on pull request: [2388](https://github.com/hackforla/website/pull/2388#issuecomment-948285395) at 2021-10-20 11:04 PM PDT -npkeerthi,2021-10-21T16:37:54Z,- npkeerthi pull request closed w/o merging: [2388](https://github.com/hackforla/website/pull/2388#event-5499829304) at 2021-10-21 09:37 AM PDT -npkeerthi,2021-12-21T06:27:56Z,- npkeerthi opened pull request: [2611](https://github.com/hackforla/website/pull/2611) at 2021-12-20 10:27 PM PST -npkeerthi,2022-01-01T11:09:02Z,- npkeerthi commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003542682) at 2022-01-01 03:09 AM PST -npkeerthi,2022-01-02T11:03:02Z,- npkeerthi commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003698061) at 2022-01-02 03:03 AM PST -npkeerthi,2022-01-24T19:35:13Z,- npkeerthi pull request closed w/o merging: [2611](https://github.com/hackforla/website/pull/2611#event-5945014974) at 2022-01-24 11:35 AM PST -NPriyaK,7224,SKILLS ISSUE -NPriyaK,2024-08-06T12:24:16Z,- NPriyaK opened issue: [7224](https://github.com/hackforla/website/issues/7224) at 2024-08-06 05:24 AM PDT -NPriyaK,2024-08-06T16:08:23Z,- NPriyaK assigned to issue: [7224](https://github.com/hackforla/website/issues/7224) at 2024-08-06 09:08 AM PDT -NPriyaK,2024-08-07T10:33:58Z,- NPriyaK unassigned from issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2272770959) at 2024-08-07 03:33 AM PDT -NPriyaK,2024-08-07T10:37:02Z,- NPriyaK commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2273160837) at 2024-08-07 03:37 AM PDT -NPriyaK,2024-08-13T00:39:52Z,- NPriyaK assigned to issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2273160837) at 2024-08-12 05:39 PM PDT -NPriyaK,2024-08-13T12:54:54Z,- NPriyaK commented on issue: [7224](https://github.com/hackforla/website/issues/7224#issuecomment-2286196926) at 2024-08-13 05:54 AM PDT -nssensalo,6528,SKILLS ISSUE -nssensalo,2024-03-27T03:15:30Z,- nssensalo opened issue: [6528](https://github.com/hackforla/website/issues/6528) at 2024-03-26 08:15 PM PDT -nssensalo,2024-04-01T23:13:30Z,- nssensalo assigned to issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2021848026) at 2024-04-01 04:13 PM PDT -nssensalo,2024-04-02T03:10:37Z,- nssensalo commented on issue: [6528](https://github.com/hackforla/website/issues/6528#issuecomment-2030995290) at 2024-04-01 08:10 PM PDT -nssensalo,2024-04-08T01:12:57Z,- nssensalo closed issue as completed: [6528](https://github.com/hackforla/website/issues/6528#event-12385720101) at 2024-04-07 06:12 PM PDT -nssensalo,2024-04-17T01:13:02Z,- nssensalo assigned to issue: [5845](https://github.com/hackforla/website/issues/5845) at 2024-04-16 06:13 PM PDT -nssensalo,2024-04-19T00:03:24Z,- nssensalo unassigned from issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2060162903) at 2024-04-18 05:03 PM PDT -nssensalo,2024-04-19T00:58:11Z,- nssensalo commented on issue: [5845](https://github.com/hackforla/website/issues/5845#issuecomment-2065560110) at 2024-04-18 05:58 PM PDT -nssensalo,2024-04-26T14:31:12Z,- nssensalo assigned to issue: [6763](https://github.com/hackforla/website/issues/6763) at 2024-04-26 07:31 AM PDT -nssensalo,2024-04-26T14:41:13Z,- nssensalo commented on issue: [6763](https://github.com/hackforla/website/issues/6763#issuecomment-2079530809) at 2024-04-26 07:41 AM PDT -nssensalo,2024-04-26T19:05:31Z,- nssensalo commented on issue: [6763](https://github.com/hackforla/website/issues/6763#issuecomment-2079972350) at 2024-04-26 12:05 PM PDT -nssensalo,2024-04-27T00:30:04Z,- nssensalo opened pull request: [6770](https://github.com/hackforla/website/pull/6770) at 2024-04-26 05:30 PM PDT -nssensalo,2024-04-29T21:26:50Z,- nssensalo pull request merged: [6770](https://github.com/hackforla/website/pull/6770#event-12649345077) at 2024-04-29 02:26 PM PDT -nssensalo,2024-05-06T00:15:34Z,- nssensalo assigned to issue: [6759](https://github.com/hackforla/website/issues/6759) at 2024-05-05 05:15 PM PDT -nssensalo,2024-05-06T00:16:43Z,- nssensalo commented on issue: [6759](https://github.com/hackforla/website/issues/6759#issuecomment-2095013113) at 2024-05-05 05:16 PM PDT -nssensalo,2024-05-06T00:51:50Z,- nssensalo opened pull request: [6821](https://github.com/hackforla/website/pull/6821) at 2024-05-05 05:51 PM PDT -nssensalo,2024-05-07T14:39:50Z,- nssensalo commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2098567723) at 2024-05-07 07:39 AM PDT -nssensalo,2024-05-09T21:04:50Z,- nssensalo commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2103418292) at 2024-05-09 02:04 PM PDT -nssensalo,2024-05-10T14:31:58Z,- nssensalo pull request merged: [6821](https://github.com/hackforla/website/pull/6821#event-12770555020) at 2024-05-10 07:31 AM PDT -nssensalo,2024-05-22T21:01:16Z,- nssensalo assigned to issue: [6591](https://github.com/hackforla/website/issues/6591) at 2024-05-22 02:01 PM PDT -nssensalo,2024-05-22T21:04:22Z,- nssensalo commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2125740544) at 2024-05-22 02:04 PM PDT -nssensalo,2024-06-01T01:34:19Z,- nssensalo commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2143202310) at 2024-05-31 06:34 PM PDT -nssensalo,2024-06-05T23:06:49Z,- nssensalo commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2151103104) at 2024-06-05 04:06 PM PDT -nssensalo,2024-06-25T01:37:10Z,- nssensalo assigned to issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-1636924714) at 2024-06-24 06:37 PM PDT -nssensalo,2024-08-05T17:40:53Z,- nssensalo commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2269581785) at 2024-08-05 10:40 AM PDT -nssensalo,2024-08-12T20:14:42Z,- nssensalo commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2284829378) at 2024-08-12 01:14 PM PDT -nssensalo,2024-08-27T02:27:00Z,- nssensalo commented on issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2311446544) at 2024-08-26 07:27 PM PDT -nssensalo,2024-08-27T02:27:21Z,- nssensalo unassigned from issue: [4059](https://github.com/hackforla/website/issues/4059#issuecomment-2311446544) at 2024-08-26 07:27 PM PDT -nubilaxl,8191,SKILLS ISSUE -nubilaxl,2025-06-17T03:46:13Z,- nubilaxl opened issue: [8191](https://github.com/hackforla/website/issues/8191) at 2025-06-16 08:46 PM PDT -nubilaxl,2025-06-17T03:46:20Z,- nubilaxl assigned to issue: [8191](https://github.com/hackforla/website/issues/8191) at 2025-06-16 08:46 PM PDT -nubilaxl,2025-06-20T00:09:01Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-2989446832) at 2025-06-19 05:09 PM PDT -nubilaxl,2025-06-20T02:36:22Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-2989634371) at 2025-06-19 07:36 PM PDT -nubilaxl,2025-06-22T19:14:00Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-2994385946) at 2025-06-22 12:14 PM PDT -nubilaxl,2025-06-25T17:04:28Z,- nubilaxl commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3005513969) at 2025-06-25 10:04 AM PDT -nubilaxl,2025-06-26T16:58:10Z,- nubilaxl submitted pull request review: [8197](https://github.com/hackforla/website/pull/8197#pullrequestreview-2962801543) at 2025-06-26 09:58 AM PDT -nubilaxl,2025-06-26T23:43:36Z,- nubilaxl assigned to issue: [8014](https://github.com/hackforla/website/issues/8014) at 2025-06-26 04:43 PM PDT -nubilaxl,2025-06-27T00:02:48Z,- nubilaxl commented on issue: [8014](https://github.com/hackforla/website/issues/8014#issuecomment-3010753041) at 2025-06-26 05:02 PM PDT -nubilaxl,2025-06-27T00:06:47Z,- nubilaxl commented on issue: [8191](https://github.com/hackforla/website/issues/8191#issuecomment-3010762278) at 2025-06-26 05:06 PM PDT -nubilaxl,2025-07-04T18:25:03Z,- nubilaxl opened pull request: [8243](https://github.com/hackforla/website/pull/8243) at 2025-07-04 11:25 AM PDT -nung22,4324,SKILLS ISSUE -nung22,2023-03-29T03:41:03Z,- nung22 opened issue: [4324](https://github.com/hackforla/website/issues/4324) at 2023-03-28 08:41 PM PDT -nung22,2023-03-29T03:58:25Z,- nung22 assigned to issue: [4324](https://github.com/hackforla/website/issues/4324#issuecomment-1487901669) at 2023-03-28 08:58 PM PDT -nung22,2023-04-04T18:35:51Z,- nung22 assigned to issue: [4399](https://github.com/hackforla/website/issues/4399) at 2023-04-04 11:35 AM PDT -nung22,2023-04-17T20:49:27Z,- nung22 commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1512066340) at 2023-04-17 01:49 PM PDT -nung22,2023-05-15T03:18:03Z,- nung22 unassigned from issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547135751) at 2023-05-14 08:18 PM PDT -nung22,2023-05-15T03:37:51Z,- nung22 commented on issue: [4399](https://github.com/hackforla/website/issues/4399#issuecomment-1547146250) at 2023-05-14 08:37 PM PDT -nung22,2023-06-11T16:32:09Z,- nung22 closed issue as not planned: [4324](https://github.com/hackforla/website/issues/4324#event-9494745101) at 2023-06-11 09:32 AM PDT -o-anakin,2020-11-08T06:21:58Z,- o-anakin opened pull request: [805](https://github.com/hackforla/website/pull/805) at 2020-11-07 10:21 PM PST -o-anakin,2020-11-08T06:22:43Z,- o-anakin pull request closed w/o merging: [805](https://github.com/hackforla/website/pull/805#event-3970483620) at 2020-11-07 10:22 PM PST -oiseeurmt,7827,SKILLS ISSUE -oiseeurmt,2025-01-14T04:19:46Z,- oiseeurmt opened issue: [7827](https://github.com/hackforla/website/issues/7827) at 2025-01-13 08:19 PM PST -oiseeurmt,2025-01-14T04:22:10Z,- oiseeurmt assigned to issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2588914075) at 2025-01-13 08:22 PM PST -oiseeurmt,2025-01-14T04:56:59Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2588985980) at 2025-01-13 08:56 PM PST -oiseeurmt,2025-01-15T03:12:06Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2591550382) at 2025-01-14 07:12 PM PST -oiseeurmt,2025-01-15T03:50:55Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2591586962) at 2025-01-14 07:50 PM PST -oiseeurmt,2025-01-15T03:54:18Z,- oiseeurmt assigned to issue: [7742](https://github.com/hackforla/website/issues/7742) at 2025-01-14 07:54 PM PST -oiseeurmt,2025-01-15T04:55:38Z,- oiseeurmt opened pull request: [7832](https://github.com/hackforla/website/pull/7832) at 2025-01-14 08:55 PM PST -oiseeurmt,2025-01-15T05:01:25Z,- oiseeurmt commented on issue: [7742](https://github.com/hackforla/website/issues/7742#issuecomment-2591656728) at 2025-01-14 09:01 PM PST -oiseeurmt,2025-01-15T05:04:46Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2591659995) at 2025-01-14 09:04 PM PST -oiseeurmt,2025-01-18T06:02:36Z,- oiseeurmt commented on pull request: [7832](https://github.com/hackforla/website/pull/7832#issuecomment-2599569947) at 2025-01-17 10:02 PM PST -oiseeurmt,2025-01-20T22:15:33Z,- oiseeurmt pull request merged: [7832](https://github.com/hackforla/website/pull/7832#event-16004941557) at 2025-01-20 02:15 PM PST -oiseeurmt,2025-01-21T03:11:58Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2603534833) at 2025-01-20 07:11 PM PST -oiseeurmt,2025-01-21T03:20:18Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2603546462) at 2025-01-20 07:20 PM PST -oiseeurmt,2025-01-21T03:23:08Z,- oiseeurmt assigned to issue: [7752](https://github.com/hackforla/website/issues/7752) at 2025-01-20 07:23 PM PST -oiseeurmt,2025-01-21T03:24:41Z,- oiseeurmt commented on issue: [7752](https://github.com/hackforla/website/issues/7752#issuecomment-2603556039) at 2025-01-20 07:24 PM PST -oiseeurmt,2025-01-21T04:35:54Z,- oiseeurmt opened pull request: [7840](https://github.com/hackforla/website/pull/7840) at 2025-01-20 08:35 PM PST -oiseeurmt,2025-01-25T00:07:33Z,- oiseeurmt commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2613630375) at 2025-01-24 04:07 PM PST -oiseeurmt,2025-01-28T15:40:26Z,- oiseeurmt commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2619361791) at 2025-01-28 07:40 AM PST -oiseeurmt,2025-01-29T10:39:18Z,- oiseeurmt pull request merged: [7840](https://github.com/hackforla/website/pull/7840#event-16105868872) at 2025-01-29 02:39 AM PST -oiseeurmt,2025-02-03T19:20:57Z,- oiseeurmt commented on issue: [7827](https://github.com/hackforla/website/issues/7827#issuecomment-2631871150) at 2025-02-03 11:20 AM PST -ojafero,2021-11-30T18:24:51Z,- ojafero assigned to issue: [2445](https://github.com/hackforla/website/issues/2445#issuecomment-960394746) at 2021-11-30 10:24 AM PST -ojafero,2021-11-30T18:53:40Z,- ojafero opened pull request: [2525](https://github.com/hackforla/website/pull/2525) at 2021-11-30 10:53 AM PST -ojafero,2021-12-01T03:24:57Z,- ojafero pull request merged: [2525](https://github.com/hackforla/website/pull/2525#event-5696107373) at 2021-11-30 07:24 PM PST -Olanrewaju-Ak,3065,SKILLS ISSUE -Olanrewaju-Ak,2022-04-19T03:28:26Z,- Olanrewaju-Ak opened issue: [3065](https://github.com/hackforla/website/issues/3065) at 2022-04-18 08:28 PM PDT -Olanrewaju-Ak,2022-04-19T03:29:57Z,- Olanrewaju-Ak assigned to issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1101956564) at 2022-04-18 08:29 PM PDT -Olanrewaju-Ak,2022-04-28T18:31:06Z,- Olanrewaju-Ak closed issue as completed: [3065](https://github.com/hackforla/website/issues/3065#event-6517416439) at 2022-04-28 11:31 AM PDT -Olanrewaju-Ak,2022-04-28T18:36:19Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1112536529) at 2022-04-28 11:36 AM PDT -Olanrewaju-Ak,2022-05-08T16:09:28Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1120445308) at 2022-05-08 09:09 AM PDT -Olanrewaju-Ak,2022-05-08T16:35:14Z,- Olanrewaju-Ak assigned to issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-05-08 09:35 AM PDT -Olanrewaju-Ak,2022-05-08T16:37:12Z,- Olanrewaju-Ak unassigned from issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-05-08 09:37 AM PDT -Olanrewaju-Ak,2022-05-08T16:42:40Z,- Olanrewaju-Ak assigned to issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-08 09:42 AM PDT -Olanrewaju-Ak,2022-05-08T16:44:47Z,- Olanrewaju-Ak unassigned from issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-08 09:44 AM PDT -Olanrewaju-Ak,2022-05-08T16:44:54Z,- Olanrewaju-Ak assigned to issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-08 09:44 AM PDT -Olanrewaju-Ak,2022-05-09T20:55:15Z,- Olanrewaju-Ak opened pull request: [3116](https://github.com/hackforla/website/pull/3116) at 2022-05-09 01:55 PM PDT -Olanrewaju-Ak,2022-05-14T01:40:04Z,- Olanrewaju-Ak pull request closed w/o merging: [3116](https://github.com/hackforla/website/pull/3116#event-6609335425) at 2022-05-13 06:40 PM PDT -Olanrewaju-Ak,2022-05-14T19:46:50Z,- Olanrewaju-Ak commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1126801518) at 2022-05-14 12:46 PM PDT -Olanrewaju-Ak,2022-05-20T21:14:46Z,- Olanrewaju-Ak unassigned from issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1063718387) at 2022-05-20 02:14 PM PDT -Olanrewaju-Ak,2022-05-22T16:59:34Z,- Olanrewaju-Ak assigned to issue: [2794](https://github.com/hackforla/website/issues/2794#issuecomment-1045512593) at 2022-05-22 09:59 AM PDT -Olanrewaju-Ak,2022-05-22T17:06:53Z,- Olanrewaju-Ak commented on issue: [2794](https://github.com/hackforla/website/issues/2794#issuecomment-1133935986) at 2022-05-22 10:06 AM PDT -Olanrewaju-Ak,2022-05-23T22:28:15Z,- Olanrewaju-Ak opened pull request: [3171](https://github.com/hackforla/website/pull/3171) at 2022-05-23 03:28 PM PDT -Olanrewaju-Ak,2022-05-24T02:37:31Z,- Olanrewaju-Ak pull request merged: [3171](https://github.com/hackforla/website/pull/3171#event-6665303527) at 2022-05-23 07:37 PM PDT -Olanrewaju-Ak,2022-05-29T09:50:46Z,- Olanrewaju-Ak assigned to issue: [2922](https://github.com/hackforla/website/issues/2922#issuecomment-1058577349) at 2022-05-29 02:50 AM PDT -Olanrewaju-Ak,2022-05-29T09:51:53Z,- Olanrewaju-Ak commented on issue: [2922](https://github.com/hackforla/website/issues/2922#issuecomment-1140414571) at 2022-05-29 02:51 AM PDT -Olanrewaju-Ak,2022-05-29T11:29:16Z,- Olanrewaju-Ak opened pull request: [3178](https://github.com/hackforla/website/pull/3178) at 2022-05-29 04:29 AM PDT -Olanrewaju-Ak,2022-05-29T11:35:27Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1140429916) at 2022-05-29 04:35 AM PDT -Olanrewaju-Ak,2022-06-04T04:14:34Z,- Olanrewaju-Ak pull request merged: [3178](https://github.com/hackforla/website/pull/3178#event-6741072476) at 2022-06-03 09:14 PM PDT -Olanrewaju-Ak,2022-06-08T18:19:42Z,- Olanrewaju-Ak unassigned from issue: [2922](https://github.com/hackforla/website/issues/2922#event-6741072471) at 2022-06-08 11:19 AM PDT -Olanrewaju-Ak,2022-06-08T18:47:41Z,- Olanrewaju-Ak assigned to issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1120046677) at 2022-06-08 11:47 AM PDT -Olanrewaju-Ak,2022-06-08T18:48:48Z,- Olanrewaju-Ak unassigned from issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1120046677) at 2022-06-08 11:48 AM PDT -Olanrewaju-Ak,2022-06-08T19:03:07Z,- Olanrewaju-Ak assigned to issue: [3018](https://github.com/hackforla/website/issues/3018#issuecomment-1089447945) at 2022-06-08 12:03 PM PDT -Olanrewaju-Ak,2022-06-08T19:04:57Z,- Olanrewaju-Ak commented on issue: [3018](https://github.com/hackforla/website/issues/3018#issuecomment-1150289563) at 2022-06-08 12:04 PM PDT -Olanrewaju-Ak,2022-06-08T19:38:24Z,- Olanrewaju-Ak opened pull request: [3235](https://github.com/hackforla/website/pull/3235) at 2022-06-08 12:38 PM PDT -Olanrewaju-Ak,2022-06-08T20:22:57Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1150370448) at 2022-06-08 01:22 PM PDT -Olanrewaju-Ak,2022-06-17T01:02:33Z,- Olanrewaju-Ak pull request merged: [3235](https://github.com/hackforla/website/pull/3235#event-6825256434) at 2022-06-16 06:02 PM PDT -Olanrewaju-Ak,2022-06-19T17:33:59Z,- Olanrewaju-Ak commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159781502) at 2022-06-19 10:33 AM PDT -Olanrewaju-Ak,2022-06-20T17:26:51Z,- Olanrewaju-Ak submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1012582182) at 2022-06-20 10:26 AM PDT -Olanrewaju-Ak,2022-06-23T01:48:06Z,- Olanrewaju-Ak commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1163833673) at 2022-06-22 06:48 PM PDT -OlgaBilogurova,2020-11-23T21:49:36Z,- OlgaBilogurova opened pull request: [812](https://github.com/hackforla/website/pull/812) at 2020-11-23 01:49 PM PST -OlgaBilogurova,2020-11-29T10:02:16Z,- OlgaBilogurova pull request merged: [812](https://github.com/hackforla/website/pull/812#event-4048874696) at 2020-11-29 02:02 AM PST -Olivia-Chiong,2020-12-08T21:48:52Z,- Olivia-Chiong opened issue: [838](https://github.com/hackforla/website/issues/838) at 2020-12-08 01:48 PM PST -Olivia-Chiong,2020-12-08T21:48:52Z,- Olivia-Chiong assigned to issue: [838](https://github.com/hackforla/website/issues/838) at 2020-12-08 01:48 PM PST -Olivia-Chiong,2020-12-08T21:51:26Z,- Olivia-Chiong assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:51 PM PST -Olivia-Chiong,2020-12-08T21:54:12Z,- Olivia-Chiong unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -Olivia-Chiong,2020-12-08T21:54:35Z,- Olivia-Chiong assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:54 PM PST -Olivia-Chiong,2020-12-08T22:04:55Z,- Olivia-Chiong commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741107920) at 2020-12-08 02:04 PM PST -Olivia-Chiong,2020-12-08T22:23:23Z,- Olivia-Chiong opened pull request: [839](https://github.com/hackforla/website/pull/839) at 2020-12-08 02:23 PM PST -Olivia-Chiong,2020-12-08T22:35:36Z,- Olivia-Chiong pull request merged: [839](https://github.com/hackforla/website/pull/839#event-4087070296) at 2020-12-08 02:35 PM PST -Olivia-Chiong,2020-12-09T00:12:37Z,- Olivia-Chiong opened pull request: [840](https://github.com/hackforla/website/pull/840) at 2020-12-08 04:12 PM PST -Olivia-Chiong,2020-12-09T00:24:06Z,- Olivia-Chiong commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2020-12-08 04:24 PM PST -Olivia-Chiong,2020-12-16T03:29:55Z,- Olivia-Chiong pull request merged: [840](https://github.com/hackforla/website/pull/840#event-4117657082) at 2020-12-15 07:29 PM PST -Olivia-Chiong,2020-12-20T00:56:57Z,- Olivia-Chiong opened issue: [852](https://github.com/hackforla/website/issues/852) at 2020-12-19 04:56 PM PST -Olivia-Chiong,2020-12-20T01:01:58Z,- Olivia-Chiong commented on issue: [852](https://github.com/hackforla/website/issues/852#issuecomment-748547116) at 2020-12-19 05:01 PM PST -Olivia-Chiong,2020-12-20T01:13:07Z,- Olivia-Chiong opened issue: [853](https://github.com/hackforla/website/issues/853) at 2020-12-19 05:13 PM PST -Olivia-Chiong,2020-12-20T01:18:42Z,- Olivia-Chiong unassigned from issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-741305811) at 2020-12-19 05:18 PM PST -Olivia-Chiong,2020-12-27T00:35:16Z,- Olivia-Chiong submitted pull request review: [870](https://github.com/hackforla/website/pull/870#pullrequestreview-558897414) at 2020-12-26 04:35 PM PST -Olivia-Chiong,2020-12-28T01:34:10Z,- Olivia-Chiong closed issue as completed: [632](https://github.com/hackforla/website/issues/632#event-4150753854) at 2020-12-27 05:34 PM PST -Olivia-Chiong,2020-12-28T01:36:21Z,- Olivia-Chiong commented on issue: [852](https://github.com/hackforla/website/issues/852#issuecomment-751544329) at 2020-12-27 05:36 PM PST -Olivia-Chiong,2020-12-28T01:36:21Z,- Olivia-Chiong closed issue by PR 878: [852](https://github.com/hackforla/website/issues/852#event-4150756200) at 2020-12-27 05:36 PM PST -Olivia-Chiong,2021-01-05T21:22:23Z,- Olivia-Chiong assigned to issue: [915](https://github.com/hackforla/website/issues/915) at 2021-01-05 01:22 PM PST -Olivia-Chiong,2021-01-05T21:45:58Z,- Olivia-Chiong unassigned from issue: [915](https://github.com/hackforla/website/issues/915) at 2021-01-05 01:45 PM PST -Olivia-Chiong,2021-01-05T22:37:53Z,- Olivia-Chiong assigned to issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-754793177) at 2021-01-05 02:37 PM PST -Olivia-Chiong,2021-01-08T00:39:34Z,- Olivia-Chiong commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-756473615) at 2021-01-07 04:39 PM PST -Olivia-Chiong,2021-01-10T20:38:35Z,- Olivia-Chiong unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 12:38 PM PST -Olivia-Chiong,2021-01-13T19:59:12Z,- Olivia-Chiong unassigned from issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-756473615) at 2021-01-13 11:59 AM PST -Olivia-Chiong,2021-01-13T19:59:18Z,- Olivia-Chiong commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-759705521) at 2021-01-13 11:59 AM PST -Olivia-Chiong,2021-01-31T20:16:33Z,- Olivia-Chiong commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-770443642) at 2021-01-31 12:16 PM PST -Olivia-Chiong,2021-02-05T07:49:31Z,- Olivia-Chiong opened issue: [1003](https://github.com/hackforla/website/issues/1003) at 2021-02-04 11:49 PM PST -Olivia-Chiong,2021-02-05T07:59:47Z,- Olivia-Chiong opened issue: [1004](https://github.com/hackforla/website/issues/1004) at 2021-02-04 11:59 PM PST -Olivia-Chiong,2021-02-09T06:29:46Z,- Olivia-Chiong opened issue: [1021](https://github.com/hackforla/website/issues/1021) at 2021-02-08 10:29 PM PST -Olivia-Chiong,2021-02-09T06:35:18Z,- Olivia-Chiong opened issue: [1022](https://github.com/hackforla/website/issues/1022) at 2021-02-08 10:35 PM PST -Olivia-Chiong,2021-02-09T06:38:30Z,- Olivia-Chiong opened issue: [1023](https://github.com/hackforla/website/issues/1023) at 2021-02-08 10:38 PM PST -Olivia-Chiong,2021-02-09T06:51:48Z,- Olivia-Chiong commented on issue: [1021](https://github.com/hackforla/website/issues/1021#issuecomment-775714913) at 2021-02-08 10:51 PM PST -Olivia-Chiong,2021-02-10T03:09:41Z,- Olivia-Chiong opened issue: [1031](https://github.com/hackforla/website/issues/1031) at 2021-02-09 07:09 PM PST -Olivia-Chiong,2021-02-19T07:08:53Z,- Olivia-Chiong commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-781879814) at 2021-02-18 11:08 PM PST -Olivia-Chiong,2021-04-21T03:18:38Z,- Olivia-Chiong commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-823747808) at 2021-04-20 08:18 PM PDT -Olivia-Chiong,2021-06-11T17:09:16Z,- Olivia-Chiong commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859722792) at 2021-06-11 10:09 AM PDT -Olivia-Chiong,2021-06-11T17:09:16Z,- Olivia-Chiong commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859722792) at 2021-06-11 10:09 AM PDT -oliviaywangn,3126,SKILLS ISSUE -oliviaywangn,2022-05-11T03:26:04Z,- oliviaywangn opened issue: [3126](https://github.com/hackforla/website/issues/3126) at 2022-05-10 08:26 PM PDT -oliviaywangn,2022-05-18T00:54:08Z,- oliviaywangn assigned to issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1126974754) at 2022-05-17 05:54 PM PDT -oliviaywangn,2022-05-29T17:11:51Z,- oliviaywangn commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1140489205) at 2022-05-29 10:11 AM PDT -oliviaywangn,2022-06-01T04:16:21Z,- oliviaywangn assigned to issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1046095089) at 2022-05-31 09:16 PM PDT -oliviaywangn,2022-06-01T04:17:48Z,- oliviaywangn commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1143099637) at 2022-05-31 09:17 PM PDT -oliviaywangn,2022-06-11T06:10:35Z,- oliviaywangn commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1152864879) at 2022-06-10 11:10 PM PDT -oliviaywangn,2022-06-11T06:12:46Z,- oliviaywangn commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1152865135) at 2022-06-10 11:12 PM PDT -oliviaywangn,2022-06-17T03:03:39Z,- oliviaywangn opened pull request: [3258](https://github.com/hackforla/website/pull/3258) at 2022-06-16 08:03 PM PDT -oliviaywangn,2022-06-17T03:07:29Z,- oliviaywangn commented on issue: [2800](https://github.com/hackforla/website/issues/2800#issuecomment-1158441490) at 2022-06-16 08:07 PM PDT -oliviaywangn,2022-06-20T06:08:21Z,- oliviaywangn assigned to issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1053530633) at 2022-06-19 11:08 PM PDT -oliviaywangn,2022-06-20T06:13:35Z,- oliviaywangn unassigned from issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1053530633) at 2022-06-19 11:13 PM PDT -oliviaywangn,2022-06-20T06:16:47Z,- oliviaywangn assigned to issue: [2897](https://github.com/hackforla/website/issues/2897#issuecomment-1053494402) at 2022-06-19 11:16 PM PDT -oliviaywangn,2022-06-20T06:28:05Z,- oliviaywangn opened pull request: [3262](https://github.com/hackforla/website/pull/3262) at 2022-06-19 11:28 PM PDT -oliviaywangn,2022-06-21T01:12:40Z,- oliviaywangn pull request merged: [3258](https://github.com/hackforla/website/pull/3258#event-6842955215) at 2022-06-20 06:12 PM PDT -oliviaywangn,2022-06-24T03:49:44Z,- oliviaywangn pull request merged: [3262](https://github.com/hackforla/website/pull/3262#event-6871260609) at 2022-06-23 08:49 PM PDT -oliviaywangn,2022-06-25T03:15:32Z,- oliviaywangn commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1166180017) at 2022-06-24 08:15 PM PDT -oliviaywangn,2022-06-30T04:57:42Z,- oliviaywangn closed issue as completed: [3126](https://github.com/hackforla/website/issues/3126#event-6907471555) at 2022-06-29 09:57 PM PDT -oliviaywangn,2022-06-30T04:58:50Z,- oliviaywangn assigned to issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1164877942) at 2022-06-29 09:58 PM PDT -oliviaywangn,2022-06-30T05:00:19Z,- oliviaywangn commented on issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1170764870) at 2022-06-29 10:00 PM PDT -oliviaywangn,2022-07-03T04:20:51Z,- oliviaywangn unassigned from issue: [3131](https://github.com/hackforla/website/issues/3131#issuecomment-1170764870) at 2022-07-02 09:20 PM PDT -oliviaywangn,2022-07-03T04:23:05Z,- oliviaywangn assigned to issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1053530633) at 2022-07-02 09:23 PM PDT -oliviaywangn,2022-07-03T04:23:20Z,- oliviaywangn unassigned from issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1173009227) at 2022-07-02 09:23 PM PDT -oliviazhai,4177,SKILLS ISSUE -oliviazhai,2023-03-14T14:57:41Z,- oliviazhai opened issue: [4177](https://github.com/hackforla/website/issues/4177) at 2023-03-14 07:57 AM PDT -oliviazhai,2023-03-14T14:57:57Z,- oliviazhai assigned to issue: [4177](https://github.com/hackforla/website/issues/4177) at 2023-03-14 07:57 AM PDT -oliviazhai,2023-03-16T16:42:57Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1472327968) at 2023-03-16 09:42 AM PDT -oliviazhai,2023-03-20T02:51:39Z,- oliviazhai submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347716577) at 2023-03-19 07:51 PM PDT -oliviazhai,2023-03-20T02:59:34Z,- oliviazhai assigned to issue: [4211](https://github.com/hackforla/website/issues/4211) at 2023-03-19 07:59 PM PDT -oliviazhai,2023-03-20T03:01:36Z,- oliviazhai commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1475539829) at 2023-03-19 08:01 PM PDT -oliviazhai,2023-03-22T20:29:45Z,- oliviazhai commented on issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1480220339) at 2023-03-22 01:29 PM PDT -oliviazhai,2023-03-24T02:03:01Z,- oliviazhai opened pull request: [4272](https://github.com/hackforla/website/pull/4272) at 2023-03-23 07:03 PM PDT -oliviazhai,2023-03-24T16:55:00Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1483118306) at 2023-03-24 09:55 AM PDT -oliviazhai,2023-03-25T13:50:47Z,- oliviazhai opened pull request: [4288](https://github.com/hackforla/website/pull/4288) at 2023-03-25 06:50 AM PDT -oliviazhai,2023-03-25T13:52:29Z,- oliviazhai commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483830727) at 2023-03-25 06:52 AM PDT -oliviazhai,2023-03-25T19:06:33Z,- oliviazhai pull request closed w/o merging: [4288](https://github.com/hackforla/website/pull/4288#event-8845865519) at 2023-03-25 12:06 PM PDT -oliviazhai,2023-03-25T21:04:12Z,- oliviazhai opened pull request: [4289](https://github.com/hackforla/website/pull/4289) at 2023-03-25 02:04 PM PDT -oliviazhai,2023-03-25T21:07:26Z,- oliviazhai commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483922352) at 2023-03-25 02:07 PM PDT -oliviazhai,2023-03-25T21:34:43Z,- oliviazhai pull request closed w/o merging: [4272](https://github.com/hackforla/website/pull/4272#event-8846057378) at 2023-03-25 02:34 PM PDT -oliviazhai,2023-03-25T22:04:24Z,- oliviazhai pull request closed w/o merging: [4289](https://github.com/hackforla/website/pull/4289#event-8846098388) at 2023-03-25 03:04 PM PDT -oliviazhai,2023-03-25T22:04:51Z,- oliviazhai unassigned from issue: [4211](https://github.com/hackforla/website/issues/4211#issuecomment-1480413398) at 2023-03-25 03:04 PM PDT -oliviazhai,2023-03-28T15:34:52Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1487135338) at 2023-03-28 08:34 AM PDT -oliviazhai,2023-03-29T02:30:44Z,- oliviazhai assigned to issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1332419118) at 2023-03-28 07:30 PM PDT -oliviazhai,2023-03-29T02:54:12Z,- oliviazhai commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1487874747) at 2023-03-28 07:54 PM PDT -oliviazhai,2023-04-12T00:56:25Z,- oliviazhai unassigned from issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1487874747) at 2023-04-11 05:56 PM PDT -oliviazhai,2023-04-12T01:00:10Z,- oliviazhai assigned to issue: [4449](https://github.com/hackforla/website/issues/4449) at 2023-04-11 06:00 PM PDT -oliviazhai,2023-04-12T02:03:39Z,- oliviazhai commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1504427970) at 2023-04-11 07:03 PM PDT -oliviazhai,2023-04-24T23:44:32Z,- oliviazhai commented on issue: [4177](https://github.com/hackforla/website/issues/4177#issuecomment-1520956914) at 2023-04-24 04:44 PM PDT -oliviazhai,2023-04-24T23:45:27Z,- oliviazhai closed issue as completed: [4177](https://github.com/hackforla/website/issues/4177#event-9086692580) at 2023-04-24 04:45 PM PDT -oliviazhai,2023-04-28T01:38:54Z,- oliviazhai opened pull request: [4580](https://github.com/hackforla/website/pull/4580) at 2023-04-27 06:38 PM PDT -oliviazhai,2023-04-28T02:19:37Z,- oliviazhai pull request closed w/o merging: [4580](https://github.com/hackforla/website/pull/4580#event-9120338318) at 2023-04-27 07:19 PM PDT -oliviazhai,2023-04-28T02:26:49Z,- oliviazhai opened pull request: [4581](https://github.com/hackforla/website/pull/4581) at 2023-04-27 07:26 PM PDT -oliviazhai,2023-04-28T02:27:23Z,- oliviazhai commented on pull request: [4580](https://github.com/hackforla/website/pull/4580#issuecomment-1526890179) at 2023-04-27 07:27 PM PDT -oliviazhai,2023-04-28T02:43:57Z,- oliviazhai pull request closed w/o merging: [4581](https://github.com/hackforla/website/pull/4581#event-9120450185) at 2023-04-27 07:43 PM PDT -oliviazhai,2023-04-28T02:49:01Z,- oliviazhai opened pull request: [4582](https://github.com/hackforla/website/pull/4582) at 2023-04-27 07:49 PM PDT -oliviazhai,2023-04-28T02:52:23Z,- oliviazhai pull request closed w/o merging: [4582](https://github.com/hackforla/website/pull/4582#event-9120487013) at 2023-04-27 07:52 PM PDT -oliviazhai,2023-05-09T15:54:59Z,- oliviazhai commented on issue: [4449](https://github.com/hackforla/website/issues/4449#issuecomment-1540450117) at 2023-05-09 08:54 AM PDT -oliviazhai,2023-05-26T00:27:40Z,- oliviazhai opened pull request: [4732](https://github.com/hackforla/website/pull/4732) at 2023-05-25 05:27 PM PDT -oliviazhai,2023-05-30T13:12:30Z,- oliviazhai commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1568413430) at 2023-05-30 06:12 AM PDT -oliviazhai,2023-05-30T13:14:32Z,- oliviazhai commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1568416528) at 2023-05-30 06:14 AM PDT -oliviazhai,2023-06-05T00:41:55Z,- oliviazhai commented on pull request: [4732](https://github.com/hackforla/website/pull/4732#issuecomment-1575879619) at 2023-06-04 05:41 PM PDT -oliviazhai,2023-06-08T08:58:49Z,- oliviazhai pull request merged: [4732](https://github.com/hackforla/website/pull/4732#event-9469614683) at 2023-06-08 01:58 AM PDT -oliviazhai,2023-06-08T15:09:52Z,- oliviazhai commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1582774419) at 2023-06-08 08:09 AM PDT -oliviazhai,2023-06-30T21:39:17Z,- oliviazhai opened pull request: [4902](https://github.com/hackforla/website/pull/4902) at 2023-06-30 02:39 PM PDT -oliviazhai,2023-06-30T21:44:35Z,- oliviazhai commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1615221744) at 2023-06-30 02:44 PM PDT -oliviazhai,2023-07-03T19:28:50Z,- oliviazhai commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1619046573) at 2023-07-03 12:28 PM PDT -oliviazhai,2023-07-15T15:33:12Z,- oliviazhai pull request closed w/o merging: [4902](https://github.com/hackforla/website/pull/4902#event-9828961424) at 2023-07-15 08:33 AM PDT -olivioso,3251,SKILLS ISSUE -olivioso,2022-06-15T21:10:47Z,- olivioso opened issue: [3251](https://github.com/hackforla/website/issues/3251) at 2022-06-15 02:10 PM PDT -olivioso,2022-06-15T21:25:21Z,- olivioso assigned to issue: [3251](https://github.com/hackforla/website/issues/3251#issuecomment-1156947332) at 2022-06-15 02:25 PM PDT -olivioso,2022-06-26T18:30:47Z,- olivioso closed issue as completed: [3251](https://github.com/hackforla/website/issues/3251#event-6880738150) at 2022-06-26 11:30 AM PDT -Oluwafemi-Jegede,2021-03-07T18:07:28Z,- Oluwafemi-Jegede commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-792325779) at 2021-03-07 10:07 AM PST -Oluwafemi-Jegede,2021-03-07T18:16:00Z,- Oluwafemi-Jegede commented on issue: [1146](https://github.com/hackforla/website/issues/1146#issuecomment-792327162) at 2021-03-07 10:16 AM PST -Oluwafemi-Jegede,2021-03-07T19:23:46Z,- Oluwafemi-Jegede assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -Oluwafemi-Jegede,2021-03-07T19:24:34Z,- Oluwafemi-Jegede assigned to issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -Oluwafemi-Jegede,2021-03-14T16:56:51Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-798940812) at 2021-03-14 09:56 AM PDT -Oluwafemi-Jegede,2021-03-17T18:23:05Z,- Oluwafemi-Jegede opened issue: [1219](https://github.com/hackforla/website/issues/1219) at 2021-03-17 11:23 AM PDT -Oluwafemi-Jegede,2021-03-17T18:33:26Z,- Oluwafemi-Jegede commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-801317267) at 2021-03-17 11:33 AM PDT -Oluwafemi-Jegede,2021-03-18T18:52:00Z,- Oluwafemi-Jegede opened issue: [1259](https://github.com/hackforla/website/issues/1259) at 2021-03-18 11:52 AM PDT -Oluwafemi-Jegede,2021-03-18T18:52:15Z,- Oluwafemi-Jegede assigned to issue: [1259](https://github.com/hackforla/website/issues/1259) at 2021-03-18 11:52 AM PDT -Oluwafemi-Jegede,2021-03-18T18:54:06Z,- Oluwafemi-Jegede commented on issue: [1259](https://github.com/hackforla/website/issues/1259#issuecomment-802206128) at 2021-03-18 11:54 AM PDT -Oluwafemi-Jegede,2021-03-31T18:30:26Z,- Oluwafemi-Jegede assigned to issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811310035) at 2021-03-31 11:30 AM PDT -Oluwafemi-Jegede,2021-04-04T16:54:48Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-813064478) at 2021-04-04 09:54 AM PDT -Oluwafemi-Jegede,2021-04-06T14:14:30Z,- Oluwafemi-Jegede commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-814155581) at 2021-04-06 07:14 AM PDT -Oluwafemi-Jegede,2021-04-06T14:14:45Z,- Oluwafemi-Jegede closed issue as completed: [1286](https://github.com/hackforla/website/issues/1286#event-4557078488) at 2021-04-06 07:14 AM PDT -Oluwafemi-Jegede,2021-04-07T09:05:06Z,- Oluwafemi-Jegede reopened issue: [1286](https://github.com/hackforla/website/issues/1286#event-4557078488) at 2021-04-07 02:05 AM PDT -Oluwafemi-Jegede,2021-04-07T17:05:27Z,- Oluwafemi-Jegede commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-815077040) at 2021-04-07 10:05 AM PDT -Oluwafemi-Jegede,2021-04-07T17:06:30Z,- Oluwafemi-Jegede commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-815077704) at 2021-04-07 10:06 AM PDT -Oluwafemi-Jegede,2021-04-11T16:21:12Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-817333207) at 2021-04-11 09:21 AM PDT -Oluwafemi-Jegede,2021-04-11T16:28:17Z,- Oluwafemi-Jegede commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-817334172) at 2021-04-11 09:28 AM PDT -Oluwafemi-Jegede,2021-04-14T17:21:38Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-819686541) at 2021-04-14 10:21 AM PDT -Oluwafemi-Jegede,2021-04-18T15:59:18Z,- Oluwafemi-Jegede commented on issue: [1259](https://github.com/hackforla/website/issues/1259#issuecomment-822014755) at 2021-04-18 08:59 AM PDT -Oluwafemi-Jegede,2021-04-18T16:55:36Z,- Oluwafemi-Jegede commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-822023219) at 2021-04-18 09:55 AM PDT -Oluwafemi-Jegede,2021-04-27T01:55:11Z,- Oluwafemi-Jegede assigned to issue: [1469](https://github.com/hackforla/website/issues/1469) at 2021-04-26 06:55 PM PDT -Oluwafemi-Jegede,2021-06-06T16:15:11Z,- Oluwafemi-Jegede unassigned from issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-855422617) at 2021-06-06 09:15 AM PDT -Oluwafemi-Jegede,2021-06-20T20:56:26Z,- Oluwafemi-Jegede assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -Oluwafemi-Jegede,2021-06-20T22:15:50Z,- Oluwafemi-Jegede assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -Oluwafemi-Jegede,2021-08-12T20:05:00Z,- Oluwafemi-Jegede unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -ombhagwani,2023-08-23T06:55:27Z,- ombhagwani commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689384864) at 2023-08-22 11:55 PM PDT -ombhagwani,2023-08-23T13:48:25Z,- ombhagwani commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1690000020) at 2023-08-23 06:48 AM PDT -one2code,4335,SKILLS ISSUE -one2code,2023-03-29T04:19:33Z,- one2code opened issue: [4335](https://github.com/hackforla/website/issues/4335) at 2023-03-28 09:19 PM PDT -one2code,2023-04-06T20:57:05Z,- one2code assigned to issue: [4335](https://github.com/hackforla/website/issues/4335) at 2023-04-06 01:57 PM PDT -one2code,2023-04-14T04:08:27Z,- one2code assigned to issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1493389723) at 2023-04-13 09:08 PM PDT -one2code,2023-04-14T06:59:20Z,- one2code unassigned from issue: [4354](https://github.com/hackforla/website/issues/4354#issuecomment-1507898629) at 2023-04-13 11:59 PM PDT -one2code,2023-04-14T07:08:10Z,- one2code assigned to issue: [4380](https://github.com/hackforla/website/issues/4380) at 2023-04-14 12:08 AM PDT -one2code,2023-04-14T18:57:43Z,- one2code assigned to issue: [3524](https://github.com/hackforla/website/issues/3524#issuecomment-1240946700) at 2023-04-14 11:57 AM PDT -one2code,2023-04-14T18:57:54Z,- one2code unassigned from issue: [3524](https://github.com/hackforla/website/issues/3524#issuecomment-1240946700) at 2023-04-14 11:57 AM PDT -one2code,2023-04-14T18:58:33Z,- one2code assigned to issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1497129548) at 2023-04-14 11:58 AM PDT -one2code,2023-04-15T17:56:11Z,- one2code commented on issue: [4380](https://github.com/hackforla/website/issues/4380#issuecomment-1509915110) at 2023-04-15 10:56 AM PDT -one2code,2023-04-15T19:51:51Z,- one2code opened pull request: [4520](https://github.com/hackforla/website/pull/4520) at 2023-04-15 12:51 PM PDT -one2code,2023-04-15T19:59:06Z,- one2code unassigned from issue: [4383](https://github.com/hackforla/website/issues/4383#issuecomment-1509090621) at 2023-04-15 12:59 PM PDT -one2code,2023-04-16T18:03:28Z,- one2code commented on pull request: [4520](https://github.com/hackforla/website/pull/4520#issuecomment-1510445913) at 2023-04-16 11:03 AM PDT -one2code,2023-04-16T21:34:37Z,- one2code pull request merged: [4520](https://github.com/hackforla/website/pull/4520#event-9018434056) at 2023-04-16 02:34 PM PDT -one2code,2023-04-17T02:05:28Z,- one2code assigned to issue: [4400](https://github.com/hackforla/website/issues/4400) at 2023-04-16 07:05 PM PDT -one2code,2023-04-17T02:07:58Z,- one2code commented on issue: [4400](https://github.com/hackforla/website/issues/4400#issuecomment-1510589969) at 2023-04-16 07:07 PM PDT -one2code,2023-04-17T04:30:23Z,- one2code opened pull request: [4528](https://github.com/hackforla/website/pull/4528) at 2023-04-16 09:30 PM PDT -one2code,2023-04-18T04:08:24Z,- one2code pull request merged: [4528](https://github.com/hackforla/website/pull/4528#event-9031100177) at 2023-04-17 09:08 PM PDT -one2code,2023-04-20T02:09:37Z,- one2code commented on issue: [4335](https://github.com/hackforla/website/issues/4335#issuecomment-1515612317) at 2023-04-19 07:09 PM PDT -one2code,2023-04-20T13:25:29Z,- one2code assigned to issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1499866166) at 2023-04-20 06:25 AM PDT -one2code,2023-04-20T13:31:46Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1516337227) at 2023-04-20 06:31 AM PDT -one2code,2023-04-28T02:47:09Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1526904211) at 2023-04-27 07:47 PM PDT -one2code,2023-04-28T02:49:14Z,- one2code closed issue as completed: [4335](https://github.com/hackforla/website/issues/4335#event-9120475701) at 2023-04-27 07:49 PM PDT -one2code,2023-05-05T20:52:53Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1536768291) at 2023-05-05 01:52 PM PDT -one2code,2023-05-10T15:32:22Z,- one2code commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1542414695) at 2023-05-10 08:32 AM PDT -one2code,2023-05-13T01:55:39Z,- one2code opened pull request: [4661](https://github.com/hackforla/website/pull/4661) at 2023-05-12 06:55 PM PDT -one2code,2023-05-17T02:30:32Z,- one2code commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1550598025) at 2023-05-16 07:30 PM PDT -one2code,2023-05-18T00:57:39Z,- one2code opened pull request: [4688](https://github.com/hackforla/website/pull/4688) at 2023-05-17 05:57 PM PDT -one2code,2023-05-18T00:58:05Z,- one2code pull request closed w/o merging: [4661](https://github.com/hackforla/website/pull/4661#event-9274744149) at 2023-05-17 05:58 PM PDT -one2code,2023-05-18T18:58:22Z,- one2code reopened pull request: [4661](https://github.com/hackforla/website/pull/4661#event-9274744149) at 2023-05-18 11:58 AM PDT -one2code,2023-05-18T18:59:43Z,- one2code pull request closed w/o merging: [4661](https://github.com/hackforla/website/pull/4661#event-9282894173) at 2023-05-18 11:59 AM PDT -one2code,2023-05-19T04:56:46Z,- one2code submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1433774626) at 2023-05-18 09:56 PM PDT -one2code,2023-05-20T17:51:56Z,- one2code commented on pull request: [4698](https://github.com/hackforla/website/pull/4698#issuecomment-1555961148) at 2023-05-20 10:51 AM PDT -one2code,2023-05-21T07:02:36Z,- one2code submitted pull request review: [4698](https://github.com/hackforla/website/pull/4698#pullrequestreview-1435482769) at 2023-05-21 12:02 AM PDT -one2code,2023-05-23T05:49:40Z,- one2code submitted pull request review: [4683](https://github.com/hackforla/website/pull/4683#pullrequestreview-1438593723) at 2023-05-22 10:49 PM PDT -one2code,2023-05-23T13:51:04Z,- one2code commented on pull request: [4688](https://github.com/hackforla/website/pull/4688#issuecomment-1559420378) at 2023-05-23 06:51 AM PDT -one2code,2023-05-23T20:10:56Z,- one2code commented on pull request: [4708](https://github.com/hackforla/website/pull/4708#issuecomment-1560059549) at 2023-05-23 01:10 PM PDT -one2code,2023-05-24T03:36:46Z,- one2code submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1440884350) at 2023-05-23 08:36 PM PDT -one2code,2023-05-24T20:42:46Z,- one2code submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1442719782) at 2023-05-24 01:42 PM PDT -one2code,2023-05-25T02:02:03Z,- one2code submitted pull request review: [4725](https://github.com/hackforla/website/pull/4725#pullrequestreview-1442970195) at 2023-05-24 07:02 PM PDT -one2code,2023-05-25T05:41:22Z,- one2code commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1562307936) at 2023-05-24 10:41 PM PDT -one2code,2023-05-25T18:57:49Z,- one2code pull request merged: [4688](https://github.com/hackforla/website/pull/4688#event-9343513105) at 2023-05-25 11:57 AM PDT -one2code,2023-05-26T02:46:23Z,- one2code opened pull request: [4733](https://github.com/hackforla/website/pull/4733) at 2023-05-25 07:46 PM PDT -one2code,2023-05-26T02:57:39Z,- one2code pull request merged: [4733](https://github.com/hackforla/website/pull/4733#event-9346034481) at 2023-05-25 07:57 PM PDT -one2code,2023-05-27T02:57:17Z,- one2code commented on pull request: [4747](https://github.com/hackforla/website/pull/4747#issuecomment-1565176270) at 2023-05-26 07:57 PM PDT -one2code,2023-05-27T03:27:28Z,- one2code submitted pull request review: [4747](https://github.com/hackforla/website/pull/4747#pullrequestreview-1447134137) at 2023-05-26 08:27 PM PDT -one2code,2023-05-28T01:03:37Z,- one2code submitted pull request review: [4747](https://github.com/hackforla/website/pull/4747#pullrequestreview-1447728590) at 2023-05-27 06:03 PM PDT -one2code,2023-05-28T02:16:51Z,- one2code commented on pull request: [4726](https://github.com/hackforla/website/pull/4726#issuecomment-1565804611) at 2023-05-27 07:16 PM PDT -one2code,2023-05-28T02:46:10Z,- one2code submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1447805971) at 2023-05-27 07:46 PM PDT -one2code,2023-05-28T03:26:40Z,- one2code assigned to issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565195706) at 2023-05-27 08:26 PM PDT -one2code,2023-05-28T03:33:48Z,- one2code commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1565841497) at 2023-05-27 08:33 PM PDT -one2code,2023-05-28T03:52:20Z,- one2code submitted pull request review: [4726](https://github.com/hackforla/website/pull/4726#pullrequestreview-1447849700) at 2023-05-27 08:52 PM PDT -one2code,2023-05-30T07:29:14Z,- one2code commented on pull request: [4754](https://github.com/hackforla/website/pull/4754#issuecomment-1567910077) at 2023-05-30 12:29 AM PDT -one2code,2023-05-30T09:50:29Z,- one2code submitted pull request review: [4754](https://github.com/hackforla/website/pull/4754#pullrequestreview-1450553645) at 2023-05-30 02:50 AM PDT -one2code,2023-06-02T02:12:23Z,- one2code commented on pull request: [4767](https://github.com/hackforla/website/pull/4767#issuecomment-1573037525) at 2023-06-01 07:12 PM PDT -one2code,2023-06-02T21:15:00Z,- one2code commented on issue: [3975](https://github.com/hackforla/website/issues/3975#issuecomment-1574323760) at 2023-06-02 02:15 PM PDT -one2code,2023-06-06T02:50:27Z,- one2code submitted pull request review: [4767](https://github.com/hackforla/website/pull/4767#pullrequestreview-1464139771) at 2023-06-05 07:50 PM PDT -one2code,2023-06-10T20:53:39Z,- one2code opened pull request: [4796](https://github.com/hackforla/website/pull/4796) at 2023-06-10 01:53 PM PDT -one2code,2023-06-12T21:16:24Z,- one2code commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1588116510) at 2023-06-12 02:16 PM PDT -one2code,2023-06-12T22:52:13Z,- one2code submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1475931981) at 2023-06-12 03:52 PM PDT -one2code,2023-06-13T04:03:45Z,- one2code submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1476202063) at 2023-06-12 09:03 PM PDT -one2code,2023-06-14T02:38:22Z,- one2code commented on pull request: [4833](https://github.com/hackforla/website/pull/4833#issuecomment-1590356151) at 2023-06-13 07:38 PM PDT -one2code,2023-06-14T02:38:49Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1590356456) at 2023-06-13 07:38 PM PDT -one2code,2023-06-18T03:18:50Z,- one2code pull request merged: [4796](https://github.com/hackforla/website/pull/4796#event-9560042415) at 2023-06-17 08:18 PM PDT -one2code,2023-06-18T04:36:07Z,- one2code submitted pull request review: [4833](https://github.com/hackforla/website/pull/4833#pullrequestreview-1484964312) at 2023-06-17 09:36 PM PDT -one2code,2023-06-19T05:23:03Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1596525663) at 2023-06-18 10:23 PM PDT -one2code,2023-06-20T03:18:56Z,- one2code commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1598052022) at 2023-06-19 08:18 PM PDT -one2code,2023-06-21T00:49:30Z,- one2code submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1489332130) at 2023-06-20 05:49 PM PDT -one2code,2023-06-24T17:57:16Z,- one2code commented on pull request: [4875](https://github.com/hackforla/website/pull/4875#issuecomment-1605670075) at 2023-06-24 10:57 AM PDT -one2code,2023-06-24T18:37:59Z,- one2code submitted pull request review: [4875](https://github.com/hackforla/website/pull/4875#pullrequestreview-1496772952) at 2023-06-24 11:37 AM PDT -one2code,2023-06-24T23:06:48Z,- one2code commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1605768079) at 2023-06-24 04:06 PM PDT -one2code,2023-06-25T03:12:46Z,- one2code commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1605839876) at 2023-06-24 08:12 PM PDT -one2code,2023-06-25T14:02:01Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1497088682) at 2023-06-25 07:02 AM PDT -one2code,2023-06-25T14:28:44Z,- one2code submitted pull request review: [4878](https://github.com/hackforla/website/pull/4878#pullrequestreview-1497098445) at 2023-06-25 07:28 AM PDT -one2code,2023-06-26T14:54:24Z,- one2code commented on pull request: [4882](https://github.com/hackforla/website/pull/4882#issuecomment-1607657503) at 2023-06-26 07:54 AM PDT -one2code,2023-06-26T20:38:10Z,- one2code commented on pull request: [4879](https://github.com/hackforla/website/pull/4879#issuecomment-1608209327) at 2023-06-26 01:38 PM PDT -one2code,2023-06-27T04:22:25Z,- one2code submitted pull request review: [4882](https://github.com/hackforla/website/pull/4882#pullrequestreview-1499914638) at 2023-06-26 09:22 PM PDT -one2code,2023-06-27T04:29:49Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1499921835) at 2023-06-26 09:29 PM PDT -one2code,2023-06-27T09:14:49Z,- one2code assigned to issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1608566987) at 2023-06-27 02:14 AM PDT -one2code,2023-06-27T09:18:21Z,- one2code commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1609113855) at 2023-06-27 02:18 AM PDT -one2code,2023-06-28T04:17:14Z,- one2code commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1610674971) at 2023-06-27 09:17 PM PDT -one2code,2023-06-28T07:21:08Z,- one2code opened pull request: [4896](https://github.com/hackforla/website/pull/4896) at 2023-06-28 12:21 AM PDT -one2code,2023-06-29T14:07:08Z,- one2code submitted pull request review: [4832](https://github.com/hackforla/website/pull/4832#pullrequestreview-1505380205) at 2023-06-29 07:07 AM PDT -one2code,2023-06-29T14:19:24Z,- one2code commented on pull request: [4899](https://github.com/hackforla/website/pull/4899#issuecomment-1613266890) at 2023-06-29 07:19 AM PDT -one2code,2023-06-29T14:30:14Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1613286514) at 2023-06-29 07:30 AM PDT -one2code,2023-07-01T01:59:09Z,- one2code commented on pull request: [4902](https://github.com/hackforla/website/pull/4902#issuecomment-1615352610) at 2023-06-30 06:59 PM PDT -one2code,2023-07-02T17:50:35Z,- one2code submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1509648034) at 2023-07-02 10:50 AM PDT -one2code,2023-07-04T21:59:02Z,- one2code commented on pull request: [4905](https://github.com/hackforla/website/pull/4905#issuecomment-1620784724) at 2023-07-04 02:59 PM PDT -one2code,2023-07-05T03:16:08Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1620955932) at 2023-07-04 08:16 PM PDT -one2code,2023-07-06T04:17:20Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1622949664) at 2023-07-05 09:17 PM PDT -one2code,2023-07-07T23:22:22Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1626355160) at 2023-07-07 04:22 PM PDT -one2code,2023-07-09T02:22:45Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1627576891) at 2023-07-08 07:22 PM PDT -one2code,2023-07-09T19:00:04Z,- one2code submitted pull request review: [4905](https://github.com/hackforla/website/pull/4905#pullrequestreview-1520946179) at 2023-07-09 12:00 PM PDT -one2code,2023-07-11T00:00:37Z,- one2code commented on pull request: [4896](https://github.com/hackforla/website/pull/4896#issuecomment-1629894651) at 2023-07-10 05:00 PM PDT -one2code,2023-07-12T02:12:00Z,- one2code commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1631745229) at 2023-07-11 07:12 PM PDT -one2code,2023-07-12T08:03:46Z,- one2code pull request merged: [4896](https://github.com/hackforla/website/pull/4896#event-9795862162) at 2023-07-12 01:03 AM PDT -one2code,2023-07-14T03:24:06Z,- one2code commented on pull request: [4927](https://github.com/hackforla/website/pull/4927#issuecomment-1635212536) at 2023-07-13 08:24 PM PDT -one2code,2023-07-14T03:59:05Z,- one2code submitted pull request review: [4927](https://github.com/hackforla/website/pull/4927#pullrequestreview-1529557337) at 2023-07-13 08:59 PM PDT -one2code,2023-07-15T06:39:12Z,- one2code submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1531302726) at 2023-07-14 11:39 PM PDT -one2code,2023-07-17T04:05:39Z,- one2code commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1637346041) at 2023-07-16 09:05 PM PDT -one2code,2023-07-17T04:08:03Z,- one2code submitted pull request review: [4936](https://github.com/hackforla/website/pull/4936#pullrequestreview-1531905918) at 2023-07-16 09:08 PM PDT -one2code,2023-07-18T19:38:41Z,- one2code commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1640893749) at 2023-07-18 12:38 PM PDT -one2code,2023-07-19T03:55:21Z,- one2code submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1536212764) at 2023-07-18 08:55 PM PDT -one2code,2023-07-20T03:41:20Z,- one2code commented on pull request: [5006](https://github.com/hackforla/website/pull/5006#issuecomment-1643056606) at 2023-07-19 08:41 PM PDT -one2code,2023-07-20T03:50:19Z,- one2code submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1538379206) at 2023-07-19 08:50 PM PDT -one2code,2023-07-20T21:35:02Z,- one2code submitted pull request review: [5006](https://github.com/hackforla/website/pull/5006#pullrequestreview-1540125617) at 2023-07-20 02:35 PM PDT -one2code,2023-07-28T03:52:00Z,- one2code submitted pull request review: [5105](https://github.com/hackforla/website/pull/5105#pullrequestreview-1551301245) at 2023-07-27 08:52 PM PDT -one2code,2023-08-01T13:35:01Z,- one2code submitted pull request review: [4953](https://github.com/hackforla/website/pull/4953#pullrequestreview-1557024399) at 2023-08-01 06:35 AM PDT -one2code,2023-08-06T05:42:09Z,- one2code submitted pull request review: [5144](https://github.com/hackforla/website/pull/5144#pullrequestreview-1564070057) at 2023-08-05 10:42 PM PDT -one2code,2023-08-10T03:42:27Z,- one2code submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1570962630) at 2023-08-09 08:42 PM PDT -one2code,2023-08-12T03:26:14Z,- one2code commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1675654606) at 2023-08-11 08:26 PM PDT -one2code,2023-08-12T03:27:03Z,- one2code commented on pull request: [5183](https://github.com/hackforla/website/pull/5183#issuecomment-1675654725) at 2023-08-11 08:27 PM PDT -one2code,2023-08-14T03:25:49Z,- one2code submitted pull request review: [5183](https://github.com/hackforla/website/pull/5183#pullrequestreview-1576007852) at 2023-08-13 08:25 PM PDT -one2code,2023-08-14T04:17:28Z,- one2code submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1576046778) at 2023-08-13 09:17 PM PDT -one2code,2023-08-16T21:58:29Z,- one2code submitted pull request review: [5239](https://github.com/hackforla/website/pull/5239#pullrequestreview-1581487358) at 2023-08-16 02:58 PM PDT -one2code,2023-08-17T01:46:39Z,- one2code commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1681487627) at 2023-08-16 06:46 PM PDT -one2code,2023-08-31T03:47:07Z,- one2code commented on pull request: [5392](https://github.com/hackforla/website/pull/5392#issuecomment-1700326637) at 2023-08-30 08:47 PM PDT -one2code,2023-08-31T03:47:37Z,- one2code commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1700326905) at 2023-08-30 08:47 PM PDT -one2code,2023-08-31T03:54:45Z,- one2code submitted pull request review: [5392](https://github.com/hackforla/website/pull/5392#pullrequestreview-1603891782) at 2023-08-30 08:54 PM PDT -one2code,2023-08-31T04:07:38Z,- one2code submitted pull request review: [5382](https://github.com/hackforla/website/pull/5382#pullrequestreview-1603913574) at 2023-08-30 09:07 PM PDT -one2code,2023-08-31T04:13:52Z,- one2code assigned to issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597992124) at 2023-08-30 09:13 PM PDT -one2code,2023-08-31T04:14:44Z,- one2code commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1700342026) at 2023-08-30 09:14 PM PDT -one2code,2023-09-14T02:41:11Z,- one2code commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1718664451) at 2023-09-13 07:41 PM PDT -one2code,2023-09-14T02:58:31Z,- one2code submitted pull request review: [5522](https://github.com/hackforla/website/pull/5522#pullrequestreview-1625750126) at 2023-09-13 07:58 PM PDT -one2code,2023-09-14T03:21:00Z,- one2code submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1625763782) at 2023-09-13 08:21 PM PDT -one2code,2023-09-21T03:58:48Z,- one2code submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1636840258) at 2023-09-20 08:58 PM PDT -one2code,2023-09-21T03:59:12Z,- one2code submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1636840495) at 2023-09-20 08:59 PM PDT -one2code,2024-02-03T19:06:21Z,- one2code commented on pull request: [6216](https://github.com/hackforla/website/pull/6216#issuecomment-1925431149) at 2024-02-03 11:06 AM PST -one2code,2024-02-04T16:27:58Z,- one2code submitted pull request review: [6216](https://github.com/hackforla/website/pull/6216#pullrequestreview-1861481163) at 2024-02-04 08:27 AM PST -one2code,2024-02-05T03:47:18Z,- one2code assigned to issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1822065293) at 2024-02-04 07:47 PM PST -one2code,2024-02-05T03:50:30Z,- one2code commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1926183878) at 2024-02-04 07:50 PM PST -one2code,2024-02-09T22:27:45Z,- one2code commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1936686524) at 2024-02-09 02:27 PM PST -one2code,2024-03-20T21:36:05Z,- one2code unassigned from issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-2010678427) at 2024-03-20 02:36 PM PDT -ortegaa32,5212,SKILLS ISSUE -ortegaa32,2023-08-15T02:44:33Z,- ortegaa32 opened issue: [5212](https://github.com/hackforla/website/issues/5212) at 2023-08-14 07:44 PM PDT -ortegaa32,2023-08-16T23:27:52Z,- ortegaa32 assigned to issue: [5197](https://github.com/hackforla/website/issues/5197#issuecomment-1677898874) at 2023-08-16 04:27 PM PDT -ortegaa32,2023-08-17T00:03:53Z,- ortegaa32 commented on issue: [5197](https://github.com/hackforla/website/issues/5197#issuecomment-1681416809) at 2023-08-16 05:03 PM PDT -ortegaa32,2023-08-17T00:42:23Z,- ortegaa32 opened pull request: [5241](https://github.com/hackforla/website/pull/5241) at 2023-08-16 05:42 PM PDT -ortegaa32,2023-08-19T23:59:02Z,- ortegaa32 pull request merged: [5241](https://github.com/hackforla/website/pull/5241#event-10137198065) at 2023-08-19 04:59 PM PDT -ortegaa32,2023-08-27T23:29:37Z,- ortegaa32 assigned to issue: [5285](https://github.com/hackforla/website/issues/5285#issuecomment-1689190221) at 2023-08-27 04:29 PM PDT -ortegaa32,2023-08-28T20:03:45Z,- ortegaa32 commented on issue: [5285](https://github.com/hackforla/website/issues/5285#issuecomment-1696326775) at 2023-08-28 01:03 PM PDT -ortegaa32,2023-08-29T21:12:37Z,- ortegaa32 opened pull request: [5343](https://github.com/hackforla/website/pull/5343) at 2023-08-29 02:12 PM PDT -ortegaa32,2023-08-30T20:58:17Z,- ortegaa32 commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1699832081) at 2023-08-30 01:58 PM PDT -ortegaa32,2023-08-30T21:15:14Z,- ortegaa32 commented on pull request: [5354](https://github.com/hackforla/website/pull/5354#issuecomment-1699853023) at 2023-08-30 02:15 PM PDT -ortegaa32,2023-08-30T21:16:28Z,- ortegaa32 submitted pull request review: [5354](https://github.com/hackforla/website/pull/5354#pullrequestreview-1603511514) at 2023-08-30 02:16 PM PDT -ortegaa32,2023-08-30T21:45:59Z,- ortegaa32 commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1699891652) at 2023-08-30 02:45 PM PDT -ortegaa32,2023-08-31T21:00:13Z,- ortegaa32 commented on pull request: [5382](https://github.com/hackforla/website/pull/5382#issuecomment-1701774257) at 2023-08-31 02:00 PM PDT -ortegaa32,2023-08-31T21:00:24Z,- ortegaa32 submitted pull request review: [5382](https://github.com/hackforla/website/pull/5382#pullrequestreview-1605712741) at 2023-08-31 02:00 PM PDT -ortegaa32,2023-08-31T21:20:38Z,- ortegaa32 commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701802449) at 2023-08-31 02:20 PM PDT -ortegaa32,2023-08-31T21:30:56Z,- ortegaa32 commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1701812181) at 2023-08-31 02:30 PM PDT -ortegaa32,2023-08-31T21:32:44Z,- ortegaa32 commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1701813934) at 2023-08-31 02:32 PM PDT -ortegaa32,2023-09-01T16:08:58Z,- ortegaa32 pull request merged: [5343](https://github.com/hackforla/website/pull/5343#event-10258944320) at 2023-09-01 09:08 AM PDT -ortegaa32,2023-09-01T21:32:30Z,- ortegaa32 commented on pull request: [5399](https://github.com/hackforla/website/pull/5399#issuecomment-1703340154) at 2023-09-01 02:32 PM PDT -ortegaa32,2023-09-01T21:32:52Z,- ortegaa32 submitted pull request review: [5399](https://github.com/hackforla/website/pull/5399#pullrequestreview-1607685834) at 2023-09-01 02:32 PM PDT -ortegaa32,2023-09-01T21:54:01Z,- ortegaa32 commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1703355683) at 2023-09-01 02:54 PM PDT -ortegaa32,2023-09-01T22:14:55Z,- ortegaa32 submitted pull request review: [5400](https://github.com/hackforla/website/pull/5400#pullrequestreview-1607715632) at 2023-09-01 03:14 PM PDT -ortegaa32,2023-09-01T22:22:25Z,- ortegaa32 submitted pull request review: [5405](https://github.com/hackforla/website/pull/5405#pullrequestreview-1607719738) at 2023-09-01 03:22 PM PDT -ortegaa32,2023-09-03T22:30:04Z,- ortegaa32 commented on pull request: [5405](https://github.com/hackforla/website/pull/5405#issuecomment-1704422192) at 2023-09-03 03:30 PM PDT -ortegaa32,2023-09-03T22:30:19Z,- ortegaa32 submitted pull request review: [5405](https://github.com/hackforla/website/pull/5405#pullrequestreview-1608587235) at 2023-09-03 03:30 PM PDT -ortegaa32,2023-09-03T22:56:05Z,- ortegaa32 commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1704427119) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-03T22:56:14Z,- ortegaa32 commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1704427139) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-03T22:56:45Z,- ortegaa32 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1704427224) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-03T22:56:56Z,- ortegaa32 commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1704427253) at 2023-09-03 03:56 PM PDT -ortegaa32,2023-09-05T20:08:09Z,- ortegaa32 commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1707242596) at 2023-09-05 01:08 PM PDT -ortegaa32,2023-09-05T20:08:20Z,- ortegaa32 submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1611841913) at 2023-09-05 01:08 PM PDT -ortegaa32,2023-09-05T20:24:57Z,- ortegaa32 assigned to issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1706517458) at 2023-09-05 01:24 PM PDT -ortegaa32,2023-09-05T20:29:54Z,- ortegaa32 commented on pull request: [5419](https://github.com/hackforla/website/pull/5419#issuecomment-1707269046) at 2023-09-05 01:29 PM PDT -ortegaa32,2023-09-05T20:30:03Z,- ortegaa32 submitted pull request review: [5419](https://github.com/hackforla/website/pull/5419#pullrequestreview-1611884353) at 2023-09-05 01:30 PM PDT -ortegaa32,2023-09-05T20:31:48Z,- ortegaa32 commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1707271289) at 2023-09-05 01:31 PM PDT -ortegaa32,2023-09-06T20:35:00Z,- ortegaa32 commented on pull request: [5422](https://github.com/hackforla/website/pull/5422#issuecomment-1709068824) at 2023-09-06 01:35 PM PDT -ortegaa32,2023-09-06T20:35:09Z,- ortegaa32 submitted pull request review: [5422](https://github.com/hackforla/website/pull/5422#pullrequestreview-1614172967) at 2023-09-06 01:35 PM PDT -ortegaa32,2023-09-06T20:46:48Z,- ortegaa32 commented on pull request: [5423](https://github.com/hackforla/website/pull/5423#issuecomment-1709093693) at 2023-09-06 01:46 PM PDT -ortegaa32,2023-09-06T20:46:58Z,- ortegaa32 submitted pull request review: [5423](https://github.com/hackforla/website/pull/5423#pullrequestreview-1614191145) at 2023-09-06 01:46 PM PDT -ortegaa32,2023-09-08T22:24:01Z,- ortegaa32 commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1712290150) at 2023-09-08 03:24 PM PDT -ortegaa32,2023-09-13T21:14:37Z,- ortegaa32 opened pull request: [5522](https://github.com/hackforla/website/pull/5522) at 2023-09-13 02:14 PM PDT -ortegaa32,2023-09-13T21:35:15Z,- ortegaa32 commented on pull request: [5521](https://github.com/hackforla/website/pull/5521#issuecomment-1718347615) at 2023-09-13 02:35 PM PDT -ortegaa32,2023-09-14T20:57:23Z,- ortegaa32 commented on pull request: [5521](https://github.com/hackforla/website/pull/5521#issuecomment-1720142605) at 2023-09-14 01:57 PM PDT -ortegaa32,2023-09-14T20:57:32Z,- ortegaa32 submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1627740978) at 2023-09-14 01:57 PM PDT -ortegaa32,2023-09-15T17:54:49Z,- ortegaa32 pull request merged: [5522](https://github.com/hackforla/website/pull/5522#event-10386087695) at 2023-09-15 10:54 AM PDT -ortegaa32,2023-09-18T23:27:25Z,- ortegaa32 commented on pull request: [5534](https://github.com/hackforla/website/pull/5534#issuecomment-1724613986) at 2023-09-18 04:27 PM PDT -ortegaa32,2023-09-18T23:30:41Z,- ortegaa32 commented on pull request: [5550](https://github.com/hackforla/website/pull/5550#issuecomment-1724616935) at 2023-09-18 04:30 PM PDT -ortegaa32,2023-09-18T23:35:20Z,- ortegaa32 commented on pull request: [5552](https://github.com/hackforla/website/pull/5552#issuecomment-1724620734) at 2023-09-18 04:35 PM PDT -ortegaa32,2023-09-19T21:33:48Z,- ortegaa32 commented on pull request: [5550](https://github.com/hackforla/website/pull/5550#issuecomment-1726532772) at 2023-09-19 02:33 PM PDT -ortegaa32,2023-09-19T21:33:58Z,- ortegaa32 submitted pull request review: [5550](https://github.com/hackforla/website/pull/5550#pullrequestreview-1634237868) at 2023-09-19 02:33 PM PDT -ortegaa32,2023-09-27T00:34:25Z,- ortegaa32 commented on pull request: [5593](https://github.com/hackforla/website/pull/5593#issuecomment-1736482288) at 2023-09-26 05:34 PM PDT -ortegaa32,2023-09-27T00:39:06Z,- ortegaa32 submitted pull request review: [5593](https://github.com/hackforla/website/pull/5593#pullrequestreview-1645386660) at 2023-09-26 05:39 PM PDT -ortegaa32,2024-01-31T07:08:44Z,- ortegaa32 assigned to issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-1678351933) at 2024-01-30 11:08 PM PST -Oskar-Potratz-Zloch,2021-01-19T13:21:52Z,- Oskar-Potratz-Zloch submitted pull request review: [944](https://github.com/hackforla/website/pull/944#pullrequestreview-571235010) at 2021-01-19 05:21 AM PST -Ovando21,6121,SKILLS ISSUE -Ovando21,2024-01-17T04:46:31Z,- Ovando21 opened issue: [6121](https://github.com/hackforla/website/issues/6121) at 2024-01-16 08:46 PM PST -Ovando21,2024-01-17T04:51:46Z,- Ovando21 assigned to issue: [6121](https://github.com/hackforla/website/issues/6121#issuecomment-1894932930) at 2024-01-16 08:51 PM PST -Ovando21,2024-02-01T04:39:54Z,- Ovando21 closed issue as completed: [6121](https://github.com/hackforla/website/issues/6121#event-11664433513) at 2024-01-31 08:39 PM PST -Ovando21,2024-02-01T05:32:21Z,- Ovando21 assigned to issue: [5843](https://github.com/hackforla/website/issues/5843) at 2024-01-31 09:32 PM PST -Ovando21,2024-02-01T07:26:34Z,- Ovando21 unassigned from issue: [5843](https://github.com/hackforla/website/issues/5843#issuecomment-1920547949) at 2024-01-31 11:26 PM PST -owaisjunedi,7973,SKILLS ISSUE -owaisjunedi,2025-03-04T04:19:58Z,- owaisjunedi opened issue: [7973](https://github.com/hackforla/website/issues/7973) at 2025-03-03 08:19 PM PST -owaisjunedi,2025-03-04T04:20:46Z,- owaisjunedi assigned to issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2696151628) at 2025-03-03 08:20 PM PST -owaisjunedi,2025-03-16T06:30:26Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2727222871) at 2025-03-15 11:30 PM PDT -owaisjunedi,2025-03-16T06:35:13Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2727224121) at 2025-03-15 11:35 PM PDT -owaisjunedi,2025-03-16T06:44:22Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2727226488) at 2025-03-15 11:44 PM PDT -owaisjunedi,2025-04-01T01:33:40Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2767809114) at 2025-03-31 06:33 PM PDT -owaisjunedi,2025-04-02T23:14:23Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2773931389) at 2025-04-02 04:14 PM PDT -owaisjunedi,2025-04-02T23:48:28Z,- owaisjunedi assigned to issue: [7487](https://github.com/hackforla/website/issues/7487) at 2025-04-02 04:48 PM PDT -owaisjunedi,2025-04-02T23:58:08Z,- owaisjunedi commented on issue: [7487](https://github.com/hackforla/website/issues/7487#issuecomment-2774002994) at 2025-04-02 04:58 PM PDT -owaisjunedi,2025-04-03T03:30:13Z,- owaisjunedi opened pull request: [8039](https://github.com/hackforla/website/pull/8039) at 2025-04-02 08:30 PM PDT -owaisjunedi,2025-04-03T03:33:53Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2774386950) at 2025-04-02 08:33 PM PDT -owaisjunedi,2025-04-03T16:19:36Z,- owaisjunedi commented on issue: [7487](https://github.com/hackforla/website/issues/7487#issuecomment-2776321291) at 2025-04-03 09:19 AM PDT -owaisjunedi,2025-04-06T16:20:20Z,- owaisjunedi pull request merged: [8039](https://github.com/hackforla/website/pull/8039#event-17143639164) at 2025-04-06 09:20 AM PDT -owaisjunedi,2025-04-07T02:01:11Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2781841867) at 2025-04-06 07:01 PM PDT -owaisjunedi,2025-04-07T02:02:33Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2781843170) at 2025-04-06 07:02 PM PDT -owaisjunedi,2025-04-09T03:23:09Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2788183521) at 2025-04-08 08:23 PM PDT -owaisjunedi,2025-04-16T02:35:57Z,- owaisjunedi submitted pull request review: [8062](https://github.com/hackforla/website/pull/8062#pullrequestreview-2770485355) at 2025-04-15 07:35 PM PDT -owaisjunedi,2025-04-16T02:41:38Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2808075195) at 2025-04-15 07:41 PM PDT -owaisjunedi,2025-04-21T19:08:59Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2819286148) at 2025-04-21 12:08 PM PDT -owaisjunedi,2025-04-21T19:30:22Z,- owaisjunedi assigned to issue: [7755](https://github.com/hackforla/website/issues/7755) at 2025-04-21 12:30 PM PDT -owaisjunedi,2025-04-21T19:38:11Z,- owaisjunedi commented on issue: [7755](https://github.com/hackforla/website/issues/7755#issuecomment-2819344096) at 2025-04-21 12:38 PM PDT -owaisjunedi,2025-04-21T19:53:32Z,- owaisjunedi opened pull request: [8072](https://github.com/hackforla/website/pull/8072) at 2025-04-21 12:53 PM PDT -owaisjunedi,2025-04-21T19:56:11Z,- owaisjunedi commented on issue: [7755](https://github.com/hackforla/website/issues/7755#issuecomment-2819377175) at 2025-04-21 12:56 PM PDT -owaisjunedi,2025-04-28T01:03:21Z,- owaisjunedi pull request merged: [8072](https://github.com/hackforla/website/pull/8072#event-17425621263) at 2025-04-27 06:03 PM PDT -owaisjunedi,2025-04-28T01:13:13Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2833763080) at 2025-04-27 06:13 PM PDT -owaisjunedi,2025-05-21T00:17:22Z,- owaisjunedi submitted pull request review: [8148](https://github.com/hackforla/website/pull/8148#pullrequestreview-2855869323) at 2025-05-20 05:17 PM PDT -owaisjunedi,2025-05-21T00:19:32Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2896115768) at 2025-05-20 05:19 PM PDT -owaisjunedi,2025-06-02T02:37:28Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2928482260) at 2025-06-01 07:37 PM PDT -owaisjunedi,2025-06-18T09:16:30Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-2983368086) at 2025-06-18 02:16 AM PDT -owaisjunedi,2025-06-27T22:15:39Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3014481713) at 2025-06-27 03:15 PM PDT -owaisjunedi,2025-07-13T23:16:19Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3067377666) at 2025-07-13 04:16 PM PDT -owaisjunedi,2025-08-01T18:53:12Z,- owaisjunedi commented on issue: [7973](https://github.com/hackforla/website/issues/7973#issuecomment-3145471430) at 2025-08-01 11:53 AM PDT -owenjoseph,2019-07-03T00:39:53Z,- owenjoseph opened issue: [132](https://github.com/hackforla/website/issues/132) at 2019-07-02 05:39 PM PDT -owenjoseph,2019-07-03T00:39:59Z,- owenjoseph assigned to issue: [132](https://github.com/hackforla/website/issues/132) at 2019-07-02 05:39 PM PDT -owenjoseph,2019-07-03T18:48:57Z,- owenjoseph commented on issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508213798) at 2019-07-03 11:48 AM PDT -owenjoseph,2019-07-03T18:49:07Z,- owenjoseph unassigned from issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508213798) at 2019-07-03 11:49 AM PDT -owenjoseph,2019-07-07T00:52:11Z,- owenjoseph assigned to issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-508963187) at 2019-07-06 05:52 PM PDT -owenjoseph,2019-07-13T08:54:47Z,- owenjoseph unassigned from issue: [132](https://github.com/hackforla/website/issues/132#issuecomment-509857544) at 2019-07-13 01:54 AM PDT -owenjoseph,2019-08-19T18:59:27Z,- owenjoseph closed issue as completed: [132](https://github.com/hackforla/website/issues/132#event-2567344562) at 2019-08-19 11:59 AM PDT -palakkeni5,2024-08-24T20:44:13Z,- palakkeni5 commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308532192) at 2024-08-24 01:44 PM PDT -palakkeni5,2024-08-24T21:04:26Z,- palakkeni5 commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308537047) at 2024-08-24 02:04 PM PDT -palomasoltys,3542,SKILLS ISSUE -palomasoltys,2022-09-13T02:41:24Z,- palomasoltys opened issue: [3542](https://github.com/hackforla/website/issues/3542) at 2022-09-12 07:41 PM PDT -palomasoltys,2022-09-16T02:57:23Z,- palomasoltys assigned to issue: [3542](https://github.com/hackforla/website/issues/3542) at 2022-09-15 07:57 PM PDT -palomasoltys,2022-09-16T03:08:38Z,- palomasoltys assigned to issue: [2827](https://github.com/hackforla/website/issues/2827#issuecomment-1046967053) at 2022-09-15 08:08 PM PDT -palomasoltys,2022-09-16T03:16:55Z,- palomasoltys commented on issue: [2827](https://github.com/hackforla/website/issues/2827#issuecomment-1248872109) at 2022-09-15 08:16 PM PDT -palomasoltys,2022-09-16T17:35:56Z,- palomasoltys opened pull request: [3559](https://github.com/hackforla/website/pull/3559) at 2022-09-16 10:35 AM PDT -palomasoltys,2022-09-18T19:59:25Z,- palomasoltys pull request merged: [3559](https://github.com/hackforla/website/pull/3559#event-7409382665) at 2022-09-18 12:59 PM PDT -palomasoltys,2022-09-21T22:07:19Z,- palomasoltys commented on pull request: [3573](https://github.com/hackforla/website/pull/3573#issuecomment-1254277852) at 2022-09-21 03:07 PM PDT -palomasoltys,2022-09-21T22:12:53Z,- palomasoltys submitted pull request review: [3573](https://github.com/hackforla/website/pull/3573#pullrequestreview-1116149981) at 2022-09-21 03:12 PM PDT -palomasoltys,2022-09-26T19:02:56Z,- palomasoltys assigned to issue: [2925](https://github.com/hackforla/website/issues/2925#issuecomment-1058615949) at 2022-09-26 12:02 PM PDT -palomasoltys,2022-09-26T19:06:11Z,- palomasoltys commented on issue: [2925](https://github.com/hackforla/website/issues/2925#issuecomment-1258481334) at 2022-09-26 12:06 PM PDT -palomasoltys,2022-09-26T20:18:50Z,- palomasoltys opened pull request: [3585](https://github.com/hackforla/website/pull/3585) at 2022-09-26 01:18 PM PDT -palomasoltys,2022-09-28T01:05:10Z,- palomasoltys pull request merged: [3585](https://github.com/hackforla/website/pull/3585#event-7473353495) at 2022-09-27 06:05 PM PDT -PamelaLi36,2021-08-01T18:34:56Z,- PamelaLi36 assigned to issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-880226081) at 2021-08-01 11:34 AM PDT -PamelaLi36,2021-08-08T18:39:45Z,- PamelaLi36 commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894837925) at 2021-08-08 11:39 AM PDT -PamelaLi36,2021-08-10T16:14:07Z,- PamelaLi36 commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-896126198) at 2021-08-10 09:14 AM PDT -PamelaLi36,2021-08-10T16:34:34Z,- PamelaLi36 commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-896133763) at 2021-08-10 09:34 AM PDT -PamelaLi36,2021-08-16T20:04:37Z,- PamelaLi36 commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899783475) at 2021-08-16 01:04 PM PDT -PamelaLi36,2021-08-22T21:52:02Z,- PamelaLi36 opened issue: [2164](https://github.com/hackforla/website/issues/2164) at 2021-08-22 02:52 PM PDT -pandanista,2023-10-26T18:16:24Z,- pandanista commented on issue: [7460](https://github.com/hackforla/website/issues/7460#issuecomment-2351739567) at 2023-10-26 11:16 AM PDT -Panipopomango,6524,SKILLS ISSUE - NOT PLANNED - 6524 (Panipopomango),6527,SKILLS ISSUE -Panipopomango,2024-03-27T03:07:57Z,- Panipopomango opened issue: [6524](https://github.com/hackforla/website/issues/6524) at 2024-03-26 08:07 PM PDT -Panipopomango,2024-03-27T03:12:39Z,- Panipopomango assigned to issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2021842268) at 2024-03-26 08:12 PM PDT -Panipopomango,2024-03-27T03:14:05Z,- Panipopomango opened issue: [6527](https://github.com/hackforla/website/issues/6527) at 2024-03-26 08:14 PM PDT -Panipopomango,2024-03-27T03:14:17Z,- Panipopomango assigned to issue: [6527](https://github.com/hackforla/website/issues/6527) at 2024-03-26 08:14 PM PDT -Panipopomango,2024-03-27T20:29:25Z,- Panipopomango commented on issue: [6524](https://github.com/hackforla/website/issues/6524#issuecomment-2023922616) at 2024-03-27 01:29 PM PDT -Panipopomango,2024-05-06T20:58:21Z,- Panipopomango assigned to issue: [6800](https://github.com/hackforla/website/issues/6800) at 2024-05-06 01:58 PM PDT -Panipopomango,2024-05-06T20:58:34Z,- Panipopomango unassigned from issue: [6800](https://github.com/hackforla/website/issues/6800) at 2024-05-06 01:58 PM PDT -Panipopomango,2024-05-07T04:11:44Z,- Panipopomango assigned to issue: [6737](https://github.com/hackforla/website/issues/6737) at 2024-05-06 09:11 PM PDT -Panipopomango,2024-05-07T04:11:54Z,- Panipopomango unassigned from issue: [6737](https://github.com/hackforla/website/issues/6737) at 2024-05-06 09:11 PM PDT -Panipopomango,2024-05-08T21:09:22Z,- Panipopomango assigned to issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2097410115) at 2024-05-08 02:09 PM PDT -Panipopomango,2024-05-08T21:15:44Z,- Panipopomango commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2101495427) at 2024-05-08 02:15 PM PDT -Panipopomango,2024-06-09T16:55:45Z,- Panipopomango unassigned from issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2156697479) at 2024-06-09 09:55 AM PDT -parag477,2023-12-29T06:15:15Z,- parag477 commented on issue: [6018](https://github.com/hackforla/website/issues/6018#issuecomment-1871759182) at 2023-12-28 10:15 PM PST -ParigiSaiTeja,7023,SKILLS ISSUE -ParigiSaiTeja,2024-06-19T02:53:34Z,- ParigiSaiTeja opened issue: [7023](https://github.com/hackforla/website/issues/7023) at 2024-06-18 07:53 PM PDT -ParigiSaiTeja,2024-06-19T02:53:45Z,- ParigiSaiTeja assigned to issue: [7023](https://github.com/hackforla/website/issues/7023) at 2024-06-18 07:53 PM PDT -Parisajf,2024-04-26T03:22:33Z,- Parisajf opened issue: [6765](https://github.com/hackforla/website/issues/6765) at 2024-04-25 08:22 PM PDT -Parisajf,2024-08-16T20:24:04Z,- Parisajf opened issue: [7305](https://github.com/hackforla/website/issues/7305) at 2024-08-16 01:24 PM PDT -Parisajf,2024-09-04T16:29:01Z,- Parisajf commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2329512359) at 2024-09-04 09:29 AM PDT -parkderick,2020-04-03T03:31:55Z,- parkderick opened pull request: [410](https://github.com/hackforla/website/pull/410) at 2020-04-02 08:31 PM PDT -parkderick,2020-04-03T03:32:58Z,- parkderick commented on issue: [393](https://github.com/hackforla/website/issues/393#issuecomment-608210585) at 2020-04-02 08:32 PM PDT -parkderick,2020-04-03T03:57:51Z,- parkderick assigned to issue: [393](https://github.com/hackforla/website/issues/393#issuecomment-608210585) at 2020-04-02 08:57 PM PDT -parkderick,2020-04-05T23:14:28Z,- parkderick pull request merged: [410](https://github.com/hackforla/website/pull/410#event-3203148962) at 2020-04-05 04:14 PM PDT -parkderick,2020-04-07T23:42:19Z,- parkderick opened pull request: [418](https://github.com/hackforla/website/pull/418) at 2020-04-07 04:42 PM PDT -parkderick,2020-04-07T23:42:57Z,- parkderick commented on issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-610673163) at 2020-04-07 04:42 PM PDT -parkderick,2020-04-07T23:48:32Z,- parkderick assigned to issue: [327](https://github.com/hackforla/website/issues/327#issuecomment-610673163) at 2020-04-07 04:48 PM PDT -parkderick,2020-04-07T23:48:55Z,- parkderick assigned to issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-605721300) at 2020-04-07 04:48 PM PDT -parkderick,2020-04-07T23:49:53Z,- parkderick assigned to issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610639330) at 2020-04-07 04:49 PM PDT -parkderick,2020-04-08T00:02:52Z,- parkderick opened pull request: [419](https://github.com/hackforla/website/pull/419) at 2020-04-07 05:02 PM PDT -parkderick,2020-04-08T00:03:56Z,- parkderick commented on issue: [409](https://github.com/hackforla/website/issues/409#issuecomment-610678971) at 2020-04-07 05:03 PM PDT -parkderick,2020-04-10T01:50:26Z,- parkderick opened pull request: [421](https://github.com/hackforla/website/pull/421) at 2020-04-09 06:50 PM PDT -parkderick,2020-04-10T01:51:00Z,- parkderick commented on issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611836313) at 2020-04-09 06:51 PM PDT -parkderick,2020-04-10T05:19:58Z,- parkderick pull request merged: [418](https://github.com/hackforla/website/pull/418#event-3220810200) at 2020-04-09 10:19 PM PDT -parkderick,2020-04-10T05:21:59Z,- parkderick pull request merged: [419](https://github.com/hackforla/website/pull/419#event-3220812940) at 2020-04-09 10:21 PM PDT -parkderick,2020-04-10T05:35:59Z,- parkderick pull request merged: [421](https://github.com/hackforla/website/pull/421#event-3220833029) at 2020-04-09 10:35 PM PDT -parkderick,2020-04-10T05:44:06Z,- parkderick closed issue as completed: [327](https://github.com/hackforla/website/issues/327#event-3220844884) at 2020-04-09 10:44 PM PDT -parkderick,2020-04-12T17:09:42Z,- parkderick unassigned from issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-12 10:09 AM PDT -parkderick,2020-04-12T17:37:44Z,- parkderick closed issue as completed: [393](https://github.com/hackforla/website/issues/393#event-3225298996) at 2020-04-12 10:37 AM PDT -partapparam,6333,SKILLS ISSUE -partapparam,2024-02-21T03:29:26Z,- partapparam opened issue: [6333](https://github.com/hackforla/website/issues/6333) at 2024-02-20 07:29 PM PST -partapparam,2024-02-21T04:25:37Z,- partapparam assigned to issue: [6333](https://github.com/hackforla/website/issues/6333) at 2024-02-20 08:25 PM PST -partapparam,2024-02-22T17:46:32Z,- partapparam assigned to issue: [6239](https://github.com/hackforla/website/issues/6239) at 2024-02-22 09:46 AM PST -partapparam,2024-02-22T17:50:13Z,- partapparam commented on issue: [6239](https://github.com/hackforla/website/issues/6239#issuecomment-1959961126) at 2024-02-22 09:50 AM PST -partapparam,2024-02-22T18:28:20Z,- partapparam opened pull request: [6358](https://github.com/hackforla/website/pull/6358) at 2024-02-22 10:28 AM PST -partapparam,2024-02-22T18:32:12Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-1960029268) at 2024-02-22 10:32 AM PST -partapparam,2024-02-23T03:59:47Z,- partapparam closed issue as completed: [5171](https://github.com/hackforla/website/issues/5171#event-11899134463) at 2024-02-22 07:59 PM PST -partapparam,2024-02-23T06:17:52Z,- partapparam pull request merged: [6358](https://github.com/hackforla/website/pull/6358#event-11899743258) at 2024-02-22 10:17 PM PST -partapparam,2024-02-23T16:27:14Z,- partapparam assigned to issue: [6111](https://github.com/hackforla/website/issues/6111) at 2024-02-23 08:27 AM PST -partapparam,2024-02-23T16:33:24Z,- partapparam commented on issue: [6111](https://github.com/hackforla/website/issues/6111#issuecomment-1961639500) at 2024-02-23 08:33 AM PST -partapparam,2024-02-23T16:55:31Z,- partapparam opened pull request: [6365](https://github.com/hackforla/website/pull/6365) at 2024-02-23 08:55 AM PST -partapparam,2024-02-26T04:19:43Z,- partapparam pull request merged: [6365](https://github.com/hackforla/website/pull/6365#event-11915441822) at 2024-02-25 08:19 PM PST -partapparam,2024-03-05T23:12:36Z,- partapparam assigned to issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1947738161) at 2024-03-05 03:12 PM PST -partapparam,2024-03-05T23:15:16Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-1979798103) at 2024-03-05 03:15 PM PST -partapparam,2024-03-05T23:19:08Z,- partapparam commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1979801586) at 2024-03-05 03:19 PM PST -partapparam,2024-03-05T23:28:27Z,- partapparam commented on issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1979809788) at 2024-03-05 03:28 PM PST -partapparam,2024-03-15T23:44:26Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-2000669994) at 2024-03-15 04:44 PM PDT -partapparam,2024-03-18T10:00:33Z,- partapparam commented on pull request: [6471](https://github.com/hackforla/website/pull/6471#issuecomment-2003409335) at 2024-03-18 03:00 AM PDT -partapparam,2024-03-18T10:10:52Z,- partapparam submitted pull request review: [6471](https://github.com/hackforla/website/pull/6471#pullrequestreview-1942515489) at 2024-03-18 03:10 AM PDT -partapparam,2024-03-18T10:20:37Z,- partapparam closed issue as completed: [6333](https://github.com/hackforla/website/issues/6333#event-12149450980) at 2024-03-18 03:20 AM PDT -partapparam,2024-03-18T10:20:59Z,- partapparam commented on issue: [6333](https://github.com/hackforla/website/issues/6333#issuecomment-2003484697) at 2024-03-18 03:20 AM PDT -partapparam,2024-03-19T04:01:06Z,- partapparam assigned to issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-1758827760) at 2024-03-18 09:01 PM PDT -partapparam,2024-03-20T02:34:06Z,- partapparam submitted pull request review: [6477](https://github.com/hackforla/website/pull/6477#pullrequestreview-1947859578) at 2024-03-19 07:34 PM PDT -partapparam,2024-03-20T02:35:06Z,- partapparam commented on pull request: [6477](https://github.com/hackforla/website/pull/6477#issuecomment-2008579370) at 2024-03-19 07:35 PM PDT -partapparam,2024-03-20T02:37:14Z,- partapparam unassigned from issue: [3529](https://github.com/hackforla/website/issues/3529#issuecomment-2005711751) at 2024-03-19 07:37 PM PDT -partapparam,2024-03-24T16:39:16Z,- partapparam assigned to issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1957787673) at 2024-03-24 09:39 AM PDT -partapparam,2024-03-24T16:40:59Z,- partapparam commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-2016864485) at 2024-03-24 09:40 AM PDT -partapparam,2024-03-29T03:53:02Z,- partapparam commented on issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-2026593427) at 2024-03-28 08:53 PM PDT -partapparam,2024-03-30T00:34:48Z,- partapparam opened pull request: [6549](https://github.com/hackforla/website/pull/6549) at 2024-03-29 05:34 PM PDT -partapparam,2024-04-02T17:06:53Z,- partapparam submitted pull request review: [6549](https://github.com/hackforla/website/pull/6549#pullrequestreview-1974441754) at 2024-04-02 10:06 AM PDT -partapparam,2024-04-08T01:24:38Z,- partapparam commented on pull request: [6549](https://github.com/hackforla/website/pull/6549#issuecomment-2041703354) at 2024-04-07 06:24 PM PDT -partapparam,2024-04-12T17:05:43Z,- partapparam pull request merged: [6549](https://github.com/hackforla/website/pull/6549#event-12452091697) at 2024-04-12 10:05 AM PDT -partapparam,2024-04-17T02:25:26Z,- partapparam submitted pull request review: [6656](https://github.com/hackforla/website/pull/6656#pullrequestreview-2004875867) at 2024-04-16 07:25 PM PDT -partapparam,2024-04-19T18:04:23Z,- partapparam submitted pull request review: [6682](https://github.com/hackforla/website/pull/6682#pullrequestreview-2012052509) at 2024-04-19 11:04 AM PDT -partapparam,2024-04-28T02:16:56Z,- partapparam opened pull request: [6773](https://github.com/hackforla/website/pull/6773) at 2024-04-27 07:16 PM PDT -partapparam,2024-04-30T04:12:55Z,- partapparam submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2030165595) at 2024-04-29 09:12 PM PDT -partapparam,2024-04-30T04:22:17Z,- partapparam commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2084350279) at 2024-04-29 09:22 PM PDT -partapparam,2024-05-04T01:22:15Z,- partapparam submitted pull request review: [6814](https://github.com/hackforla/website/pull/6814#pullrequestreview-2039187153) at 2024-05-03 06:22 PM PDT -partapparam,2024-05-07T22:52:50Z,- partapparam commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2099439138) at 2024-05-07 03:52 PM PDT -partapparam,2024-05-08T19:23:48Z,- partapparam pull request merged: [6773](https://github.com/hackforla/website/pull/6773#event-12748351003) at 2024-05-08 12:23 PM PDT -partapparam,2024-05-08T19:48:28Z,- partapparam assigned to issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-1796454453) at 2024-05-08 12:48 PM PDT -partapparam,2024-05-08T19:57:22Z,- partapparam commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2101324607) at 2024-05-08 12:57 PM PDT -partapparam,2024-05-12T06:08:59Z,- partapparam submitted pull request review: [6851](https://github.com/hackforla/website/pull/6851#pullrequestreview-2051296690) at 2024-05-11 11:08 PM PDT -partapparam,2024-05-17T17:22:28Z,- partapparam commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2118057125) at 2024-05-17 10:22 AM PDT -partapparam,2024-05-21T18:24:04Z,- partapparam opened pull request: [6873](https://github.com/hackforla/website/pull/6873) at 2024-05-21 11:24 AM PDT -partapparam,2024-06-10T19:09:14Z,- partapparam commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2159105059) at 2024-06-10 12:09 PM PDT -partapparam,2024-06-11T00:59:50Z,- partapparam submitted pull request review: [6983](https://github.com/hackforla/website/pull/6983#pullrequestreview-2109018091) at 2024-06-10 05:59 PM PDT -partapparam,2024-08-19T01:09:32Z,- partapparam commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2295489968) at 2024-08-18 06:09 PM PDT -partapparam,2024-09-12T00:49:34Z,- partapparam commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2345040896) at 2024-09-11 05:49 PM PDT -partapparam,2024-09-30T02:33:23Z,- partapparam commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2381887331) at 2024-09-29 07:33 PM PDT -partapparam,2024-09-30T02:33:30Z,- partapparam unassigned from issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2381887331) at 2024-09-29 07:33 PM PDT -partapparam,2024-10-10T02:34:13Z,- partapparam pull request closed w/o merging: [6873](https://github.com/hackforla/website/pull/6873#event-14582052881) at 2024-10-09 07:34 PM PDT -pascuas,2021-04-13T03:52:33Z,- pascuas assigned to issue: [1031](https://github.com/hackforla/website/issues/1031) at 2021-04-12 08:52 PM PDT -pascuas,2021-04-16T23:21:50Z,- pascuas unassigned from issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-821720101) at 2021-04-16 04:21 PM PDT -pascuas,2021-04-16T23:23:30Z,- pascuas assigned to issue: [1023](https://github.com/hackforla/website/issues/1023) at 2021-04-16 04:23 PM PDT -pascuas,2021-04-20T17:19:10Z,- pascuas commented on issue: [1023](https://github.com/hackforla/website/issues/1023#issuecomment-823460908) at 2021-04-20 10:19 AM PDT -pascuas,2021-04-20T17:24:36Z,- pascuas opened pull request: [1422](https://github.com/hackforla/website/pull/1422) at 2021-04-20 10:24 AM PDT -pascuas,2021-04-21T00:37:53Z,- pascuas pull request merged: [1422](https://github.com/hackforla/website/pull/1422#event-4622169984) at 2021-04-20 05:37 PM PDT -pascuas,2021-04-21T03:41:26Z,- pascuas assigned to issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-814302412) at 2021-04-20 08:41 PM PDT -pascuas,2021-04-28T18:08:06Z,- pascuas commented on issue: [1249](https://github.com/hackforla/website/issues/1249#issuecomment-828667699) at 2021-04-28 11:08 AM PDT -pascuas,2021-04-29T20:59:19Z,- pascuas opened pull request: [1493](https://github.com/hackforla/website/pull/1493) at 2021-04-29 01:59 PM PDT -pascuas,2021-05-02T16:17:39Z,- pascuas pull request merged: [1493](https://github.com/hackforla/website/pull/1493#event-4674975714) at 2021-05-02 09:17 AM PDT -pascuas,2021-05-12T02:57:34Z,- pascuas assigned to issue: [1456](https://github.com/hackforla/website/issues/1456) at 2021-05-11 07:57 PM PDT -pascuas,2021-05-31T20:29:14Z,- pascuas commented on issue: [1456](https://github.com/hackforla/website/issues/1456#issuecomment-851672162) at 2021-05-31 01:29 PM PDT -pascuas,2021-05-31T20:34:26Z,- pascuas opened pull request: [1676](https://github.com/hackforla/website/pull/1676) at 2021-05-31 01:34 PM PDT -pascuas,2021-06-01T03:34:33Z,- pascuas pull request merged: [1676](https://github.com/hackforla/website/pull/1676#event-4822759435) at 2021-05-31 08:34 PM PDT -pascuas,2021-06-02T03:08:48Z,- pascuas assigned to issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-848316515) at 2021-06-01 08:08 PM PDT -pascuas,2021-06-19T22:26:23Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-864471240) at 2021-06-19 03:26 PM PDT -pascuas,2021-06-21T17:14:19Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-865206369) at 2021-06-21 10:14 AM PDT -pascuas,2021-06-28T23:54:39Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-870123191) at 2021-06-28 04:54 PM PDT -pascuas,2021-07-10T23:09:10Z,- pascuas opened pull request: [1917](https://github.com/hackforla/website/pull/1917) at 2021-07-10 04:09 PM PDT -pascuas,2021-07-10T23:10:28Z,- pascuas commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-877715318) at 2021-07-10 04:10 PM PDT -pascuas,2021-08-01T21:06:38Z,- pascuas pull request merged: [1917](https://github.com/hackforla/website/pull/1917#event-5095873156) at 2021-08-01 02:06 PM PDT -pascuas,2021-08-01T21:07:38Z,- pascuas unassigned from issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-889491236) at 2021-08-01 02:07 PM PDT -Patdabaker,8186,SKILLS ISSUE -Patdabaker,2025-06-17T03:03:19Z,- Patdabaker opened issue: [8186](https://github.com/hackforla/website/issues/8186) at 2025-06-16 08:03 PM PDT -Patdabaker,2025-06-17T03:03:28Z,- Patdabaker assigned to issue: [8186](https://github.com/hackforla/website/issues/8186) at 2025-06-16 08:03 PM PDT -Patdabaker,2025-06-17T03:31:51Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-2978809056) at 2025-06-16 08:31 PM PDT -Patdabaker,2025-06-17T03:33:21Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-2978810932) at 2025-06-16 08:33 PM PDT -Patdabaker,2025-06-24T01:56:09Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-2998504167) at 2025-06-23 06:56 PM PDT -Patdabaker,2025-07-01T03:59:32Z,- Patdabaker assigned to issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-2780124517) at 2025-06-30 08:59 PM PDT -Patdabaker,2025-07-01T04:22:22Z,- Patdabaker commented on issue: [8016](https://github.com/hackforla/website/issues/8016#issuecomment-3021702868) at 2025-06-30 09:22 PM PDT -Patdabaker,2025-07-01T05:39:41Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3021864860) at 2025-06-30 10:39 PM PDT -Patdabaker,2025-07-01T06:03:23Z,- Patdabaker opened pull request: [8236](https://github.com/hackforla/website/pull/8236) at 2025-06-30 11:03 PM PDT -Patdabaker,2025-07-06T15:55:16Z,- Patdabaker pull request merged: [8236](https://github.com/hackforla/website/pull/8236#event-18492459151) at 2025-07-06 08:55 AM PDT -Patdabaker,2025-07-10T04:22:53Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3055370631) at 2025-07-09 09:22 PM PDT -Patdabaker,2025-07-10T04:51:19Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3055480481) at 2025-07-09 09:51 PM PDT -Patdabaker,2025-07-10T05:09:26Z,- Patdabaker assigned to issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308865084) at 2025-07-09 10:09 PM PDT -Patdabaker,2025-07-10T05:10:09Z,- Patdabaker unassigned from issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055576826) at 2025-07-09 10:10 PM PDT -Patdabaker,2025-07-10T05:11:56Z,- Patdabaker assigned to issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055576826) at 2025-07-09 10:11 PM PDT -Patdabaker,2025-07-10T05:13:24Z,- Patdabaker commented on issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-3055584590) at 2025-07-09 10:13 PM PDT -Patdabaker,2025-07-10T05:55:09Z,- Patdabaker opened pull request: [8246](https://github.com/hackforla/website/pull/8246) at 2025-07-09 10:55 PM PDT -Patdabaker,2025-07-17T03:15:32Z,- Patdabaker pull request merged: [8246](https://github.com/hackforla/website/pull/8246#event-18671131843) at 2025-07-16 08:15 PM PDT -Patdabaker,2025-08-05T03:20:32Z,- Patdabaker commented on issue: [8186](https://github.com/hackforla/website/issues/8186#issuecomment-3153133398) at 2025-08-04 08:20 PM PDT -patelbansi3009,6419,SKILLS ISSUE -patelbansi3009,2024-03-05T03:33:29Z,- patelbansi3009 opened issue: [6419](https://github.com/hackforla/website/issues/6419) at 2024-03-04 07:33 PM PST -patelbansi3009,2024-03-05T03:49:33Z,- patelbansi3009 assigned to issue: [6419](https://github.com/hackforla/website/issues/6419) at 2024-03-04 07:49 PM PST -patelbansi3009,2024-04-26T00:08:47Z,- patelbansi3009 assigned to issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2065520425) at 2024-04-25 05:08 PM PDT -patelbansi3009,2024-04-26T15:22:18Z,- patelbansi3009 commented on issue: [5846](https://github.com/hackforla/website/issues/5846#issuecomment-2079607384) at 2024-04-26 08:22 AM PDT -patelbansi3009,2024-04-26T15:57:08Z,- patelbansi3009 opened pull request: [6767](https://github.com/hackforla/website/pull/6767) at 2024-04-26 08:57 AM PDT -patelbansi3009,2024-04-29T15:42:07Z,- patelbansi3009 commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2083071374) at 2024-04-29 08:42 AM PDT -patelbansi3009,2024-04-29T16:11:24Z,- patelbansi3009 commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2083137299) at 2024-04-29 09:11 AM PDT -patelbansi3009,2024-04-29T16:12:57Z,- patelbansi3009 submitted pull request review: [6770](https://github.com/hackforla/website/pull/6770#pullrequestreview-2028960241) at 2024-04-29 09:12 AM PDT -patelbansi3009,2024-04-29T16:32:47Z,- patelbansi3009 commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2083178617) at 2024-04-29 09:32 AM PDT -patelbansi3009,2024-04-29T17:20:11Z,- patelbansi3009 commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2083258458) at 2024-04-29 10:20 AM PDT -patelbansi3009,2024-04-29T17:20:24Z,- patelbansi3009 submitted pull request review: [6772](https://github.com/hackforla/website/pull/6772#pullrequestreview-2029103861) at 2024-04-29 10:20 AM PDT -patelbansi3009,2024-04-30T03:05:28Z,- patelbansi3009 pull request merged: [6767](https://github.com/hackforla/website/pull/6767#event-12651639399) at 2024-04-29 08:05 PM PDT -patelbansi3009,2024-04-30T17:31:35Z,- patelbansi3009 assigned to issue: [6701](https://github.com/hackforla/website/issues/6701) at 2024-04-30 10:31 AM PDT -patelbansi3009,2024-04-30T17:33:16Z,- patelbansi3009 commented on issue: [6701](https://github.com/hackforla/website/issues/6701#issuecomment-2086160967) at 2024-04-30 10:33 AM PDT -patelbansi3009,2024-04-30T19:59:45Z,- patelbansi3009 opened pull request: [6791](https://github.com/hackforla/website/pull/6791) at 2024-04-30 12:59 PM PDT -patelbansi3009,2024-05-01T14:46:59Z,- patelbansi3009 commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2088573424) at 2024-05-01 07:46 AM PDT -patelbansi3009,2024-05-01T14:48:29Z,- patelbansi3009 submitted pull request review: [6788](https://github.com/hackforla/website/pull/6788#pullrequestreview-2033760513) at 2024-05-01 07:48 AM PDT -patelbansi3009,2024-05-01T14:49:15Z,- patelbansi3009 commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2088576585) at 2024-05-01 07:49 AM PDT -patelbansi3009,2024-05-01T14:56:14Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2088586691) at 2024-05-01 07:56 AM PDT -patelbansi3009,2024-05-01T14:58:09Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-12671406714) at 2024-05-01 07:58 AM PDT -patelbansi3009,2024-05-01T15:02:11Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2088597236) at 2024-05-01 08:02 AM PDT -patelbansi3009,2024-05-02T20:05:35Z,- patelbansi3009 pull request merged: [6791](https://github.com/hackforla/website/pull/6791#event-12688618613) at 2024-05-02 01:05 PM PDT -patelbansi3009,2024-05-03T19:39:02Z,- patelbansi3009 assigned to issue: [6762](https://github.com/hackforla/website/issues/6762) at 2024-05-03 12:39 PM PDT -patelbansi3009,2024-05-03T19:41:39Z,- patelbansi3009 commented on issue: [6762](https://github.com/hackforla/website/issues/6762#issuecomment-2093658268) at 2024-05-03 12:41 PM PDT -patelbansi3009,2024-05-03T19:46:00Z,- patelbansi3009 opened pull request: [6810](https://github.com/hackforla/website/pull/6810) at 2024-05-03 12:46 PM PDT -patelbansi3009,2024-05-07T19:21:23Z,- patelbansi3009 pull request merged: [6810](https://github.com/hackforla/website/pull/6810#event-12734293606) at 2024-05-07 12:21 PM PDT -patelbansi3009,2024-05-14T22:16:24Z,- patelbansi3009 assigned to issue: [6572](https://github.com/hackforla/website/issues/6572) at 2024-05-14 03:16 PM PDT -patelbansi3009,2024-05-14T22:17:49Z,- patelbansi3009 commented on issue: [6572](https://github.com/hackforla/website/issues/6572#issuecomment-2111229498) at 2024-05-14 03:17 PM PDT -patelbansi3009,2024-05-23T16:03:27Z,- patelbansi3009 assigned to issue: [6592](https://github.com/hackforla/website/issues/6592) at 2024-05-23 09:03 AM PDT -patelbansi3009,2024-05-23T16:04:33Z,- patelbansi3009 commented on issue: [6592](https://github.com/hackforla/website/issues/6592#issuecomment-2127519323) at 2024-05-23 09:04 AM PDT -patelbansi3009,2024-05-23T19:12:35Z,- patelbansi3009 commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2127857578) at 2024-05-23 12:12 PM PDT -patelbansi3009,2024-05-23T19:16:40Z,- patelbansi3009 commented on pull request: [6888](https://github.com/hackforla/website/pull/6888#issuecomment-2127863151) at 2024-05-23 12:16 PM PDT -patelbansi3009,2024-05-23T19:17:49Z,- patelbansi3009 submitted pull request review: [6888](https://github.com/hackforla/website/pull/6888#pullrequestreview-2074816363) at 2024-05-23 12:17 PM PDT -patelbansi3009,2024-06-12T17:38:14Z,- patelbansi3009 assigned to issue: [6858](https://github.com/hackforla/website/issues/6858) at 2024-06-12 10:38 AM PDT -patelbansi3009,2024-06-12T17:39:07Z,- patelbansi3009 commented on issue: [6858](https://github.com/hackforla/website/issues/6858#issuecomment-2163582138) at 2024-06-12 10:39 AM PDT -patelbansi3009,2024-06-12T17:57:03Z,- patelbansi3009 opened pull request: [6992](https://github.com/hackforla/website/pull/6992) at 2024-06-12 10:57 AM PDT -patelbansi3009,2024-06-13T00:07:36Z,- patelbansi3009 pull request merged: [6992](https://github.com/hackforla/website/pull/6992#event-13138634815) at 2024-06-12 05:07 PM PDT -patelbansi3009,2024-06-26T19:46:54Z,- patelbansi3009 assigned to issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2181899671) at 2024-06-26 12:46 PM PDT -patelbansi3009,2024-06-26T20:05:08Z,- patelbansi3009 opened pull request: [7067](https://github.com/hackforla/website/pull/7067) at 2024-06-26 01:05 PM PDT -patelbansi3009,2024-06-26T20:06:02Z,- patelbansi3009 commented on issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2192534917) at 2024-06-26 01:06 PM PDT -patelbansi3009,2024-06-27T18:11:43Z,- patelbansi3009 pull request closed w/o merging: [7067](https://github.com/hackforla/website/pull/7067#event-13321600924) at 2024-06-27 11:11 AM PDT -patelbansi3009,2024-06-27T18:12:00Z,- patelbansi3009 unassigned from issue: [7042](https://github.com/hackforla/website/issues/7042#issuecomment-2195377318) at 2024-06-27 11:12 AM PDT -patelbansi3009,2024-08-13T15:14:23Z,- patelbansi3009 assigned to issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2244165598) at 2024-08-13 08:14 AM PDT -patelbansi3009,2024-08-13T15:33:14Z,- patelbansi3009 commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2286545189) at 2024-08-13 08:33 AM PDT -patelbansi3009,2024-08-13T17:17:17Z,- patelbansi3009 opened pull request: [7279](https://github.com/hackforla/website/pull/7279) at 2024-08-13 10:17 AM PDT -patelbansi3009,2024-08-21T01:53:46Z,- patelbansi3009 commented on pull request: [7279](https://github.com/hackforla/website/pull/7279#issuecomment-2300135713) at 2024-08-20 06:53 PM PDT -patelbansi3009,2024-08-21T01:58:48Z,- patelbansi3009 assigned to issue: [7142](https://github.com/hackforla/website/issues/7142) at 2024-08-20 06:58 PM PDT -patelbansi3009,2024-08-21T01:59:02Z,- patelbansi3009 unassigned from issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2300157054) at 2024-08-20 06:59 PM PDT -patelbansi3009,2024-08-23T21:58:54Z,- patelbansi3009 pull request merged: [7279](https://github.com/hackforla/website/pull/7279#event-13998269414) at 2024-08-23 02:58 PM PDT -patelbansi3009,2024-08-27T15:22:05Z,- patelbansi3009 assigned to issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311588429) at 2024-08-27 08:22 AM PDT -patelbansi3009,2024-08-27T15:31:37Z,- patelbansi3009 commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2312887737) at 2024-08-27 08:31 AM PDT -patelbansi3009,2024-10-01T13:53:18Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2377253709) at 2024-10-01 06:53 AM PDT -patelbansi3009,2024-10-01T13:53:33Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2377253709) at 2024-10-01 06:53 AM PDT -patelbansi3009,2024-10-01T13:56:07Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-14473533870) at 2024-10-01 06:56 AM PDT -patelbansi3009,2024-10-01T13:57:07Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386022875) at 2024-10-01 06:57 AM PDT -patelbansi3009,2024-10-01T13:57:21Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 06:57 AM PDT -patelbansi3009,2024-10-01T14:00:07Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 07:00 AM PDT -patelbansi3009,2024-10-01T14:00:21Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386042301) at 2024-10-01 07:00 AM PDT -patelbansi3009,2024-10-01T14:12:14Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2386087043) at 2024-10-01 07:12 AM PDT -patelbansi3009,2024-10-01T14:12:18Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-14473843734) at 2024-10-01 07:12 AM PDT -patelbansi3009,2024-10-01T14:40:55Z,- patelbansi3009 assigned to issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386057061) at 2024-10-01 07:40 AM PDT -patelbansi3009,2024-10-01T14:41:11Z,- patelbansi3009 unassigned from issue: [7457](https://github.com/hackforla/website/issues/7457#issuecomment-2386057061) at 2024-10-01 07:41 AM PDT -patelbansi3009,2024-10-01T14:42:46Z,- patelbansi3009 closed issue as completed: [6419](https://github.com/hackforla/website/issues/6419#event-14474386532) at 2024-10-01 07:42 AM PDT -patelbansi3009,2024-10-02T14:49:03Z,- patelbansi3009 submitted pull request review: [7557](https://github.com/hackforla/website/pull/7557#pullrequestreview-2343188701) at 2024-10-02 07:49 AM PDT -patelbansi3009,2024-10-03T19:04:03Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2392125171) at 2024-10-03 12:04 PM PDT -patelbansi3009,2024-10-05T22:35:57Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2395215866) at 2024-10-05 03:35 PM PDT -patelbansi3009,2024-10-05T22:40:58Z,- patelbansi3009 commented on pull request: [7560](https://github.com/hackforla/website/pull/7560#issuecomment-2395216724) at 2024-10-05 03:40 PM PDT -patelbansi3009,2024-10-05T22:48:09Z,- patelbansi3009 submitted pull request review: [7560](https://github.com/hackforla/website/pull/7560#pullrequestreview-2350416061) at 2024-10-05 03:48 PM PDT -patelbansi3009,2024-10-09T15:31:32Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402664680) at 2024-10-09 08:31 AM PDT -patelbansi3009,2024-10-09T15:35:55Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402674689) at 2024-10-09 08:35 AM PDT -patelbansi3009,2024-10-09T17:18:51Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402881634) at 2024-10-09 10:18 AM PDT -patelbansi3009,2024-10-09T18:07:29Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402966203) at 2024-10-09 11:07 AM PDT -patelbansi3009,2024-10-09T18:12:04Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2402974226) at 2024-10-09 11:12 AM PDT -patelbansi3009,2024-11-08T07:18:32Z,- patelbansi3009 commented on issue: [6419](https://github.com/hackforla/website/issues/6419#issuecomment-2463936554) at 2024-11-07 11:18 PM PST -patelbansi3009,2024-11-08T07:22:34Z,- patelbansi3009 commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2463942087) at 2024-11-07 11:22 PM PST -patelbansi3009,2024-11-08T07:36:46Z,- patelbansi3009 submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2422905468) at 2024-11-07 11:36 PM PST -patrickm-tan,2021-04-15T23:36:55Z,- patrickm-tan commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820804086) at 2021-04-15 04:36 PM PDT -patrickohh,3639,SKILLS ISSUE -patrickohh,2022-10-19T02:54:11Z,- patrickohh opened issue: [3639](https://github.com/hackforla/website/issues/3639) at 2022-10-18 07:54 PM PDT -patrickohh,2022-10-19T19:01:41Z,- patrickohh assigned to issue: [3639](https://github.com/hackforla/website/issues/3639) at 2022-10-19 12:01 PM PDT -patrickohh,2022-10-20T19:38:24Z,- patrickohh assigned to issue: [2849](https://github.com/hackforla/website/issues/2849#issuecomment-1048315743) at 2022-10-20 12:38 PM PDT -patrickohh,2022-10-20T20:12:52Z,- patrickohh opened pull request: [3645](https://github.com/hackforla/website/pull/3645) at 2022-10-20 01:12 PM PDT -patrickohh,2022-10-20T20:18:32Z,- patrickohh commented on issue: [2849](https://github.com/hackforla/website/issues/2849#issuecomment-1286094003) at 2022-10-20 01:18 PM PDT -patrickohh,2022-10-20T20:19:54Z,- patrickohh commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1286095724) at 2022-10-20 01:19 PM PDT -patrickohh,2022-10-21T02:04:01Z,- patrickohh pull request merged: [3645](https://github.com/hackforla/website/pull/3645#event-7636454084) at 2022-10-20 07:04 PM PDT -patrickohh,2022-10-25T02:28:46Z,- patrickohh assigned to issue: [3205](https://github.com/hackforla/website/issues/3205#issuecomment-1145818938) at 2022-10-24 07:28 PM PDT -patrickohh,2022-10-25T02:30:08Z,- patrickohh commented on issue: [3205](https://github.com/hackforla/website/issues/3205#issuecomment-1289893555) at 2022-10-24 07:30 PM PDT -patrickohh,2022-10-25T02:45:45Z,- patrickohh opened pull request: [3657](https://github.com/hackforla/website/pull/3657) at 2022-10-24 07:45 PM PDT -patrickohh,2022-10-25T18:19:15Z,- patrickohh commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1290966398) at 2022-10-25 11:19 AM PDT -patrickohh,2022-10-25T22:09:17Z,- patrickohh commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1291195308) at 2022-10-25 03:09 PM PDT -patrickohh,2022-10-26T00:08:54Z,- patrickohh pull request merged: [3657](https://github.com/hackforla/website/pull/3657#event-7668007375) at 2022-10-25 05:08 PM PDT -patrickohh,2022-11-04T00:47:10Z,- patrickohh assigned to issue: [3651](https://github.com/hackforla/website/issues/3651) at 2022-11-03 05:47 PM PDT -patrickohh,2022-11-04T00:49:16Z,- patrickohh commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1302831070) at 2022-11-03 05:49 PM PDT -patrickohh,2022-11-05T07:04:54Z,- patrickohh opened pull request: [3696](https://github.com/hackforla/website/pull/3696) at 2022-11-04 11:04 PM PST -patrickohh,2022-11-05T18:46:55Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304609632) at 2022-11-05 10:46 AM PST -patrickohh,2022-11-07T20:41:46Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306161884) at 2022-11-07 12:41 PM PST -patrickohh,2022-11-07T20:46:03Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306167692) at 2022-11-07 12:46 PM PST -patrickohh,2022-11-07T23:10:43Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306347312) at 2022-11-07 03:10 PM PST -patrickohh,2022-11-08T00:09:14Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1306398610) at 2022-11-07 04:09 PM PST -patrickohh,2022-11-08T18:54:48Z,- patrickohh commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1307683565) at 2022-11-08 10:54 AM PST -patrickohh,2022-11-11T15:57:19Z,- patrickohh pull request merged: [3696](https://github.com/hackforla/website/pull/3696#event-7793206822) at 2022-11-11 07:57 AM PST -patrickohh,2022-11-15T06:07:51Z,- patrickohh assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-11-14 10:07 PM PST -patrickohh,2022-11-15T06:08:52Z,- patrickohh commented on issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1314821768) at 2022-11-14 10:08 PM PST -patrickohh,2022-11-15T06:44:21Z,- patrickohh opened pull request: [3719](https://github.com/hackforla/website/pull/3719) at 2022-11-14 10:44 PM PST -patrickohh,2022-11-16T03:58:40Z,- patrickohh commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316293060) at 2022-11-15 07:58 PM PST -patrickohh,2022-11-20T23:29:15Z,- patrickohh commented on pull request: [3733](https://github.com/hackforla/website/pull/3733#issuecomment-1321275378) at 2022-11-20 03:29 PM PST -patrickohh,2022-11-20T23:33:55Z,- patrickohh submitted pull request review: [3733](https://github.com/hackforla/website/pull/3733#pullrequestreview-1187342583) at 2022-11-20 03:33 PM PST -patrickohh,2022-11-26T19:35:21Z,- patrickohh commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328102346) at 2022-11-26 11:35 AM PST -patrickohh,2022-11-27T06:34:52Z,- patrickohh commented on issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328181689) at 2022-11-26 10:34 PM PST -patrickohh,2022-11-27T08:43:22Z,- patrickohh pull request merged: [3719](https://github.com/hackforla/website/pull/3719#event-7897232352) at 2022-11-27 12:43 AM PST -patrickohh,2022-11-28T23:57:25Z,- patrickohh assigned to issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1314477129) at 2022-11-28 03:57 PM PST -patrickohh,2022-11-28T23:58:44Z,- patrickohh commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1329899455) at 2022-11-28 03:58 PM PST -patrickohh,2022-12-04T04:27:25Z,- patrickohh commented on issue: [3547](https://github.com/hackforla/website/issues/3547#issuecomment-1336317909) at 2022-12-03 08:27 PM PST -patrickohh,2022-12-06T01:13:00Z,- patrickohh opened pull request: [3767](https://github.com/hackforla/website/pull/3767) at 2022-12-05 05:13 PM PST -patrickohh,2022-12-10T04:25:34Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1345110075) at 2022-12-09 08:25 PM PST -patrickohh,2022-12-19T17:24:20Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1357996957) at 2022-12-19 09:24 AM PST -patrickohh,2022-12-23T21:54:31Z,- patrickohh commented on issue: [3639](https://github.com/hackforla/website/issues/3639#issuecomment-1364356593) at 2022-12-23 01:54 PM PST -patrickohh,2023-01-09T22:27:58Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1376419584) at 2023-01-09 02:27 PM PST -patrickohh,2023-01-19T23:27:58Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1397740607) at 2023-01-19 03:27 PM PST -patrickohh,2023-01-19T23:28:55Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1397741154) at 2023-01-19 03:28 PM PST -patrickohh,2023-02-01T02:05:29Z,- patrickohh pull request merged: [3767](https://github.com/hackforla/website/pull/3767#event-8405489016) at 2023-01-31 06:05 PM PST -patrickohh,2023-02-02T17:08:16Z,- patrickohh commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1414080391) at 2023-02-02 09:08 AM PST -patrickohh,2023-03-28T01:12:34Z,- patrickohh unassigned from issue: [3651](https://github.com/hackforla/website/issues/3651#issuecomment-1328320992) at 2023-03-27 06:12 PM PDT -pattshreds,2636,SKILLS ISSUE -pattshreds,2021-12-28T03:38:06Z,- pattshreds opened issue: [2636](https://github.com/hackforla/website/issues/2636) at 2021-12-27 07:38 PM PST -pattshreds,2022-01-17T04:44:05Z,- pattshreds assigned to issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1001466319) at 2022-01-16 08:44 PM PST -pattshreds,2022-01-17T17:40:49Z,- pattshreds unassigned from issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1001466319) at 2022-01-17 09:40 AM PST -pattshreds,2022-01-17T18:11:29Z,- pattshreds assigned to issue: [2627](https://github.com/hackforla/website/issues/2627#issuecomment-1013828431) at 2022-01-17 10:11 AM PST -pattshreds,2022-01-17T18:12:32Z,- pattshreds commented on issue: [2627](https://github.com/hackforla/website/issues/2627#issuecomment-1014791079) at 2022-01-17 10:12 AM PST -pattshreds,2022-01-17T19:00:38Z,- pattshreds opened pull request: [2693](https://github.com/hackforla/website/pull/2693) at 2022-01-17 11:00 AM PST -pattshreds,2022-01-17T19:03:03Z,- pattshreds closed issue by PR 2693: [2627](https://github.com/hackforla/website/issues/2627#event-5906340621) at 2022-01-17 11:03 AM PST -pattshreds,2022-01-17T19:04:08Z,- pattshreds reopened issue: [2627](https://github.com/hackforla/website/issues/2627#event-5906340621) at 2022-01-17 11:04 AM PST -pattshreds,2022-01-17T19:05:10Z,- pattshreds closed issue as completed: [2636](https://github.com/hackforla/website/issues/2636#event-5906348988) at 2022-01-17 11:05 AM PST -pattshreds,2022-01-19T05:22:33Z,- pattshreds pull request merged: [2693](https://github.com/hackforla/website/pull/2693#event-5915140467) at 2022-01-18 09:22 PM PST -pattshreds,2022-01-22T18:12:14Z,- pattshreds assigned to issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1017059806) at 2022-01-22 10:12 AM PST -pattshreds,2022-01-22T18:39:42Z,- pattshreds assigned to issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1005324750) at 2022-01-22 10:39 AM PST -pattshreds,2022-01-22T18:52:48Z,- pattshreds unassigned from issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1019337301) at 2022-01-22 10:52 AM PST -pattshreds,2022-01-22T18:58:13Z,- pattshreds assigned to issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1003752150) at 2022-01-22 10:58 AM PST -pattshreds,2022-01-22T21:23:45Z,- pattshreds commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1019360401) at 2022-01-22 01:23 PM PST -pattshreds,2022-01-23T06:15:14Z,- pattshreds assigned to issue: [2084](https://github.com/hackforla/website/issues/2084) at 2022-01-22 10:15 PM PST -pattshreds,2022-01-23T06:18:19Z,- pattshreds commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1019423681) at 2022-01-22 10:18 PM PST -pattshreds,2022-01-24T15:37:17Z,- pattshreds commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1020230645) at 2022-01-24 07:37 AM PST -pattshreds,2022-01-26T14:49:00Z,- pattshreds commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1022268701) at 2022-01-26 06:49 AM PST -pattshreds,2022-01-28T14:39:32Z,- pattshreds opened pull request: [2723](https://github.com/hackforla/website/pull/2723) at 2022-01-28 06:39 AM PST -pattshreds,2022-01-29T20:24:31Z,- pattshreds closed issue as completed: [2636](https://github.com/hackforla/website/issues/2636#event-5975493081) at 2022-01-29 12:24 PM PST -pattshreds,2022-03-24T01:30:17Z,- pattshreds commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1076978032) at 2022-03-23 06:30 PM PDT -pattshreds,2022-04-05T14:26:26Z,- pattshreds pull request merged: [2723](https://github.com/hackforla/website/pull/2723#event-6371752163) at 2022-04-05 07:26 AM PDT -pattshreds,2022-04-05T14:26:36Z,- pattshreds reopened pull request: [2723](https://github.com/hackforla/website/pull/2723#event-6371752163) at 2022-04-05 07:26 AM PDT -pattshreds,2022-04-05T14:28:59Z,- pattshreds commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1088780795) at 2022-04-05 07:28 AM PDT -pattshreds,2022-04-20T14:27:56Z,- pattshreds commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1104000058) at 2022-04-20 07:27 AM PDT -paulbmun,5067,SKILLS ISSUE -paulbmun,2023-07-26T02:58:09Z,- paulbmun opened issue: [5067](https://github.com/hackforla/website/issues/5067) at 2023-07-25 07:58 PM PDT -paulbmun,2023-07-26T02:58:24Z,- paulbmun assigned to issue: [5067](https://github.com/hackforla/website/issues/5067#issuecomment-1650900048) at 2023-07-25 07:58 PM PDT -Pauljsyi,2716,SKILLS ISSUE -Pauljsyi,2022-01-25T03:59:19Z,- Pauljsyi opened issue: [2716](https://github.com/hackforla/website/issues/2716) at 2022-01-24 07:59 PM PST -Pauljsyi,2022-01-25T04:01:23Z,- Pauljsyi assigned to issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1020786534) at 2022-01-24 08:01 PM PST -Pauljsyi,2022-01-28T19:17:09Z,- Pauljsyi assigned to issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1023535713) at 2022-01-28 11:17 AM PST -Pauljsyi,2022-01-28T19:20:46Z,- Pauljsyi commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1024532888) at 2022-01-28 11:20 AM PST -Pauljsyi,2022-01-29T01:20:29Z,- Pauljsyi commented on issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1024797340) at 2022-01-28 05:20 PM PST -Pauljsyi,2022-01-29T02:33:52Z,- Pauljsyi closed issue as completed: [2716](https://github.com/hackforla/website/issues/2716#event-5974343663) at 2022-01-28 06:33 PM PST -Pauljsyi,2022-01-29T19:53:19Z,- Pauljsyi unassigned from issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-1024532888) at 2022-01-29 11:53 AM PST -Pauljsyi,2022-01-29T20:24:30Z,- Pauljsyi opened pull request: [2725](https://github.com/hackforla/website/pull/2725) at 2022-01-29 12:24 PM PST -Pauljsyi,2022-01-31T06:52:53Z,- Pauljsyi pull request merged: [2725](https://github.com/hackforla/website/pull/2725#event-5978462596) at 2022-01-30 10:52 PM PST -Pauljsyi,2022-02-02T01:17:21Z,- Pauljsyi assigned to issue: [2240](https://github.com/hackforla/website/issues/2240) at 2022-02-01 05:17 PM PST -Pauljsyi,2022-02-02T01:52:21Z,- Pauljsyi commented on issue: [2240](https://github.com/hackforla/website/issues/2240#issuecomment-1027500462) at 2022-02-01 05:52 PM PST -Pauljsyi,2022-02-02T19:58:36Z,- Pauljsyi opened pull request: [2732](https://github.com/hackforla/website/pull/2732) at 2022-02-02 11:58 AM PST -Pauljsyi,2022-02-02T20:03:43Z,- Pauljsyi assigned to issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1007374781) at 2022-02-02 12:03 PM PST -Pauljsyi,2022-02-04T01:45:36Z,- Pauljsyi commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1029563962) at 2022-02-03 05:45 PM PST -Pauljsyi,2022-02-04T02:33:42Z,- Pauljsyi opened pull request: [2736](https://github.com/hackforla/website/pull/2736) at 2022-02-03 06:33 PM PST -Pauljsyi,2022-02-04T06:09:58Z,- Pauljsyi pull request merged: [2732](https://github.com/hackforla/website/pull/2732#event-6007374336) at 2022-02-03 10:09 PM PST -Pauljsyi,2022-02-07T21:17:22Z,- Pauljsyi commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1031933975) at 2022-02-07 01:17 PM PST -Pauljsyi,2022-03-12T01:49:25Z,- Pauljsyi pull request closed w/o merging: [2736](https://github.com/hackforla/website/pull/2736#event-6228985234) at 2022-03-11 06:49 PM PDT -Pauljsyi,2022-03-12T01:56:10Z,- Pauljsyi unassigned from issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1065786460) at 2022-03-11 06:56 PM PDT -Pauljsyi,2022-05-17T23:31:03Z,- Pauljsyi assigned to issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1086584020) at 2022-05-17 04:31 PM PDT -Pauljsyi,2022-06-26T16:44:04Z,- Pauljsyi unassigned from issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1166584104) at 2022-06-26 09:44 AM PDT -paulsvh,2021-05-05T02:15:17Z,- paulsvh assigned to issue: [1511](https://github.com/hackforla/website/issues/1511) at 2021-05-04 07:15 PM PDT -paulsvh,2021-05-07T18:01:50Z,- paulsvh opened pull request: [1528](https://github.com/hackforla/website/pull/1528) at 2021-05-07 11:01 AM PDT -paulsvh,2021-05-07T19:36:31Z,- paulsvh pull request merged: [1528](https://github.com/hackforla/website/pull/1528#event-4704241124) at 2021-05-07 12:36 PM PDT -paulsvh,2021-05-12T02:35:26Z,- paulsvh assigned to issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-831768425) at 2021-05-11 07:35 PM PDT -paulsvh,2021-05-15T18:14:46Z,- paulsvh commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-841703549) at 2021-05-15 11:14 AM PDT -paulsvh,2021-05-19T03:34:01Z,- paulsvh opened pull request: [1591](https://github.com/hackforla/website/pull/1591) at 2021-05-18 08:34 PM PDT -paulsvh,2021-05-19T18:06:04Z,- paulsvh assigned to issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:04Z,- paulsvh assigned to issue: [1566](https://github.com/hackforla/website/issues/1566) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:04Z,- paulsvh assigned to issue: [1567](https://github.com/hackforla/website/issues/1567) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:05Z,- paulsvh assigned to issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:05Z,- paulsvh assigned to issue: [1569](https://github.com/hackforla/website/issues/1569) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:05Z,- paulsvh assigned to issue: [1570](https://github.com/hackforla/website/issues/1570) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:06Z,- paulsvh assigned to issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:06Z,- paulsvh assigned to issue: [1572](https://github.com/hackforla/website/issues/1572) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:06Z,- paulsvh assigned to issue: [1573](https://github.com/hackforla/website/issues/1573) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:07Z,- paulsvh assigned to issue: [1574](https://github.com/hackforla/website/issues/1574) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:07Z,- paulsvh assigned to issue: [1575](https://github.com/hackforla/website/issues/1575) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:07Z,- paulsvh assigned to issue: [1576](https://github.com/hackforla/website/issues/1576) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:08Z,- paulsvh assigned to issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:08Z,- paulsvh assigned to issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:08Z,- paulsvh assigned to issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:09Z,- paulsvh assigned to issue: [1580](https://github.com/hackforla/website/issues/1580) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:09Z,- paulsvh assigned to issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:09Z,- paulsvh assigned to issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:10Z,- paulsvh assigned to issue: [1583](https://github.com/hackforla/website/issues/1583) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:10Z,- paulsvh assigned to issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:10Z,- paulsvh assigned to issue: [1585](https://github.com/hackforla/website/issues/1585) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:11Z,- paulsvh assigned to issue: [1586](https://github.com/hackforla/website/issues/1586) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:11Z,- paulsvh assigned to issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:11Z,- paulsvh assigned to issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:46Z,- paulsvh assigned to issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:47Z,- paulsvh assigned to issue: [1559](https://github.com/hackforla/website/issues/1559) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:47Z,- paulsvh assigned to issue: [1560](https://github.com/hackforla/website/issues/1560) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:47Z,- paulsvh assigned to issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:48Z,- paulsvh assigned to issue: [1562](https://github.com/hackforla/website/issues/1562) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:48Z,- paulsvh assigned to issue: [1563](https://github.com/hackforla/website/issues/1563) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-19T18:06:48Z,- paulsvh assigned to issue: [1564](https://github.com/hackforla/website/issues/1564) at 2021-05-19 11:06 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1564](https://github.com/hackforla/website/issues/1564) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1566](https://github.com/hackforla/website/issues/1566) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:48Z,- paulsvh unassigned from issue: [1567](https://github.com/hackforla/website/issues/1567) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:49Z,- paulsvh unassigned from issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:49Z,- paulsvh unassigned from issue: [1569](https://github.com/hackforla/website/issues/1569) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:49Z,- paulsvh unassigned from issue: [1570](https://github.com/hackforla/website/issues/1570) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:50Z,- paulsvh unassigned from issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:50Z,- paulsvh unassigned from issue: [1572](https://github.com/hackforla/website/issues/1572) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:50Z,- paulsvh unassigned from issue: [1573](https://github.com/hackforla/website/issues/1573) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:51Z,- paulsvh unassigned from issue: [1574](https://github.com/hackforla/website/issues/1574) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:51Z,- paulsvh unassigned from issue: [1575](https://github.com/hackforla/website/issues/1575) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:51Z,- paulsvh unassigned from issue: [1576](https://github.com/hackforla/website/issues/1576) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:52Z,- paulsvh unassigned from issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:52Z,- paulsvh unassigned from issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:52Z,- paulsvh unassigned from issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:53Z,- paulsvh unassigned from issue: [1580](https://github.com/hackforla/website/issues/1580) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:53Z,- paulsvh unassigned from issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:53Z,- paulsvh unassigned from issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1583](https://github.com/hackforla/website/issues/1583) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1585](https://github.com/hackforla/website/issues/1585) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:54Z,- paulsvh unassigned from issue: [1586](https://github.com/hackforla/website/issues/1586) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:55Z,- paulsvh unassigned from issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:37:55Z,- paulsvh unassigned from issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-20 11:37 AM PDT -paulsvh,2021-05-20T18:38:07Z,- paulsvh unassigned from issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:07Z,- paulsvh unassigned from issue: [1559](https://github.com/hackforla/website/issues/1559) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1560](https://github.com/hackforla/website/issues/1560) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1562](https://github.com/hackforla/website/issues/1562) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-20T18:38:08Z,- paulsvh unassigned from issue: [1563](https://github.com/hackforla/website/issues/1563) at 2021-05-20 11:38 AM PDT -paulsvh,2021-05-23T01:10:26Z,- paulsvh pull request merged: [1591](https://github.com/hackforla/website/pull/1591#event-4782842912) at 2021-05-22 06:10 PM PDT -paulsvh,2021-06-02T02:29:47Z,- paulsvh assigned to issue: [1599](https://github.com/hackforla/website/issues/1599) at 2021-06-01 07:29 PM PDT -paulsvh,2021-06-04T03:24:46Z,- paulsvh assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -paulsvh,2021-06-04T17:39:28Z,- paulsvh commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-854896631) at 2021-06-04 10:39 AM PDT -paulsvh,2021-06-11T01:52:42Z,- paulsvh opened pull request: [1706](https://github.com/hackforla/website/pull/1706) at 2021-06-10 06:52 PM PDT -paulsvh,2021-06-11T02:00:23Z,- paulsvh pull request merged: [1706](https://github.com/hackforla/website/pull/1706#event-4875198642) at 2021-06-10 07:00 PM PDT -paulsvh,2021-06-12T16:32:03Z,- paulsvh unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -pawan92,2020-12-08T21:55:13Z,- pawan92 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -pawan92,2020-12-13T19:56:28Z,- pawan92 assigned to issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-744054964) at 2020-12-13 11:56 AM PST -pawan92,2020-12-15T21:21:59Z,- pawan92 assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-744704836) at 2020-12-15 01:21 PM PST -pawan92,2020-12-15T21:38:15Z,- pawan92 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745583716) at 2020-12-15 01:38 PM PST -pawan92,2020-12-16T00:09:13Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-745652783) at 2020-12-15 04:09 PM PST -pawan92,2020-12-20T18:11:37Z,- pawan92 commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-748641396) at 2020-12-20 10:11 AM PST -pawan92,2020-12-20T18:15:24Z,- pawan92 commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-748641824) at 2020-12-20 10:15 AM PST -pawan92,2020-12-20T18:22:39Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-748642658) at 2020-12-20 10:22 AM PST -pawan92,2020-12-20T18:27:25Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-748643283) at 2020-12-20 10:27 AM PST -pawan92,2020-12-20T18:34:17Z,- pawan92 commented on issue: [835](https://github.com/hackforla/website/issues/835#issuecomment-748644098) at 2020-12-20 10:34 AM PST -pawan92,2020-12-20T20:48:40Z,- pawan92 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -pawan92,2020-12-20T20:48:40Z,- pawan92 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:48 PM PST -pawan92,2020-12-24T17:41:11Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-750933797) at 2020-12-24 09:41 AM PST -pawan92,2020-12-27T18:14:07Z,- pawan92 commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-751499367) at 2020-12-27 10:14 AM PST -pawan92,2020-12-27T18:22:54Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-751500426) at 2020-12-27 10:22 AM PST -pawan92,2020-12-29T21:39:54Z,- pawan92 assigned to issue: [937](https://github.com/hackforla/website/issues/937) at 2020-12-29 01:39 PM PST -pawan92,2020-12-29T21:41:01Z,- pawan92 assigned to issue: [938](https://github.com/hackforla/website/issues/938) at 2020-12-29 01:41 PM PST -pawan92,2020-12-29T21:52:22Z,- pawan92 assigned to issue: [885](https://github.com/hackforla/website/issues/885) at 2020-12-29 01:52 PM PST -pawan92,2021-01-05T22:05:23Z,- pawan92 opened issue: [916](https://github.com/hackforla/website/issues/916) at 2021-01-05 02:05 PM PST -pawan92,2021-01-06T14:18:06Z,- pawan92 unassigned from issue: [937](https://github.com/hackforla/website/issues/937) at 2021-01-06 06:18 AM PST -pawan92,2021-01-06T14:18:45Z,- pawan92 unassigned from issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-06 06:18 AM PST -pawan92,2021-01-06T14:18:58Z,- pawan92 assigned to issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-06 06:18 AM PST -pawan92,2021-01-06T14:19:02Z,- pawan92 unassigned from issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-06 06:19 AM PST -pawan92,2021-01-10T18:18:14Z,- pawan92 commented on issue: [819](https://github.com/hackforla/website/issues/819#issuecomment-757519970) at 2021-01-10 10:18 AM PST -pawan92,2021-01-10T18:21:58Z,- pawan92 commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-757520578) at 2021-01-10 10:21 AM PST -pawan92,2021-01-10T18:26:03Z,- pawan92 commented on issue: [911](https://github.com/hackforla/website/issues/911#issuecomment-757521312) at 2021-01-10 10:26 AM PST -pawan92,2021-01-10T18:29:26Z,- pawan92 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757521765) at 2021-01-10 10:29 AM PST -pawan92,2021-01-10T18:32:04Z,- pawan92 closed issue by PR 834: [756](https://github.com/hackforla/website/issues/756#event-4188300818) at 2021-01-10 10:32 AM PST -pawan92,2021-01-10T18:32:47Z,- pawan92 commented on issue: [756](https://github.com/hackforla/website/issues/756#issuecomment-757522221) at 2021-01-10 10:32 AM PST -pawan92,2021-01-10T18:35:48Z,- pawan92 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-757522562) at 2021-01-10 10:35 AM PST -pawan92,2021-01-10T18:48:57Z,- pawan92 commented on issue: [921](https://github.com/hackforla/website/issues/921#issuecomment-757524396) at 2021-01-10 10:48 AM PST -pawan92,2021-01-10T20:52:57Z,- pawan92 assigned to issue: [937](https://github.com/hackforla/website/issues/937) at 2021-01-10 12:52 PM PST -pawan92,2021-01-10T20:57:48Z,- pawan92 assigned to issue: [938](https://github.com/hackforla/website/issues/938) at 2021-01-10 12:57 PM PST -pawan92,2021-01-10T21:01:21Z,- pawan92 assigned to issue: [869](https://github.com/hackforla/website/issues/869) at 2021-01-10 01:01 PM PST -pawan92,2021-01-10T21:04:07Z,- pawan92 closed issue as completed: [869](https://github.com/hackforla/website/issues/869#event-4188431960) at 2021-01-10 01:04 PM PST -pawan92,2021-01-10T21:04:23Z,- pawan92 commented on issue: [869](https://github.com/hackforla/website/issues/869#issuecomment-757543826) at 2021-01-10 01:04 PM PST -pawan92,2021-01-10T21:42:18Z,- pawan92 unassigned from issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-753667535) at 2021-01-10 01:42 PM PST -pawan92,2021-01-12T15:05:09Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-758716062) at 2021-01-12 07:05 AM PST -pawan92,2021-01-13T18:55:28Z,- pawan92 commented on issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759649939) at 2021-01-13 10:55 AM PST -pawan92,2021-01-13T19:22:26Z,- pawan92 unassigned from issue: [937](https://github.com/hackforla/website/issues/937#issuecomment-759147008) at 2021-01-13 11:22 AM PST -pawan92,2021-01-13T19:25:20Z,- pawan92 unassigned from issue: [938](https://github.com/hackforla/website/issues/938#issuecomment-759665527) at 2021-01-13 11:25 AM PST -pawan92,2021-01-20T18:07:58Z,- pawan92 commented on issue: [889](https://github.com/hackforla/website/issues/889#issuecomment-763832822) at 2021-01-20 10:07 AM PST -pawan92,2021-01-20T18:11:27Z,- pawan92 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-763834787) at 2021-01-20 10:11 AM PST -pawan92,2021-01-20T18:15:48Z,- pawan92 commented on issue: [885](https://github.com/hackforla/website/issues/885#issuecomment-763837373) at 2021-01-20 10:15 AM PST -pawan92,2021-01-22T20:19:01Z,- pawan92 opened issue: [955](https://github.com/hackforla/website/issues/955) at 2021-01-22 12:19 PM PST -pawan92,2021-01-24T17:20:28Z,- pawan92 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-766397700) at 2021-01-24 09:20 AM PST -pawan92,2021-01-24T17:23:58Z,- pawan92 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-766398175) at 2021-01-24 09:23 AM PST -pawan92,2021-01-24T17:26:05Z,- pawan92 commented on issue: [851](https://github.com/hackforla/website/issues/851#issuecomment-766398460) at 2021-01-24 09:26 AM PST -pawan92,2021-01-24T17:27:16Z,- pawan92 commented on issue: [794](https://github.com/hackforla/website/issues/794#issuecomment-766398637) at 2021-01-24 09:27 AM PST -pawan92,2021-01-24T17:32:19Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-766399384) at 2021-01-24 09:32 AM PST -pawan92,2021-01-24T17:33:24Z,- pawan92 commented on issue: [830](https://github.com/hackforla/website/issues/830#issuecomment-766399534) at 2021-01-24 09:33 AM PST -pawan92,2021-01-24T17:37:30Z,- pawan92 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-766400108) at 2021-01-24 09:37 AM PST -pawan92,2021-01-24T17:38:31Z,- pawan92 commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-766400292) at 2021-01-24 09:38 AM PST -pawan92,2021-01-24T17:40:21Z,- pawan92 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-766400581) at 2021-01-24 09:40 AM PST -pawan92,2021-01-24T18:21:02Z,- pawan92 opened issue: [962](https://github.com/hackforla/website/issues/962) at 2021-01-24 10:21 AM PST -pawan92,2021-01-24T20:27:00Z,- pawan92 assigned to issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-764847719) at 2021-01-24 12:27 PM PST -pawan92,2021-01-27T16:34:24Z,- pawan92 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-768409424) at 2021-01-27 08:34 AM PST -pawan92,2021-01-31T15:29:23Z,- pawan92 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-770399937) at 2021-01-31 07:29 AM PST -pawan92,2021-01-31T15:31:39Z,- pawan92 commented on issue: [759](https://github.com/hackforla/website/issues/759#issuecomment-770400258) at 2021-01-31 07:31 AM PST -pawan92,2021-01-31T15:32:52Z,- pawan92 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-770400420) at 2021-01-31 07:32 AM PST -pawan92,2021-01-31T15:33:26Z,- pawan92 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-770400497) at 2021-01-31 07:33 AM PST -pawan92,2021-01-31T15:34:25Z,- pawan92 commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-770400633) at 2021-01-31 07:34 AM PST -pawan92,2021-01-31T15:35:19Z,- pawan92 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-770400765) at 2021-01-31 07:35 AM PST -pawan92,2021-01-31T15:37:08Z,- pawan92 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-770401002) at 2021-01-31 07:37 AM PST -pawan92,2021-01-31T15:38:03Z,- pawan92 commented on issue: [960](https://github.com/hackforla/website/issues/960#issuecomment-770401125) at 2021-01-31 07:38 AM PST -pawan92,2021-01-31T15:41:15Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-770401587) at 2021-01-31 07:41 AM PST -pawan92,2021-01-31T15:45:21Z,- pawan92 commented on issue: [939](https://github.com/hackforla/website/issues/939#issuecomment-770402140) at 2021-01-31 07:45 AM PST -pawan92,2021-01-31T15:48:57Z,- pawan92 commented on issue: [885](https://github.com/hackforla/website/issues/885#issuecomment-770402647) at 2021-01-31 07:48 AM PST -pawan92,2021-01-31T15:56:09Z,- pawan92 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-770403638) at 2021-01-31 07:56 AM PST -pawan92,2021-02-03T16:58:17Z,- pawan92 assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-02-03 08:58 AM PST -pawan92,2021-02-03T20:14:49Z,- pawan92 closed issue as completed: [885](https://github.com/hackforla/website/issues/885#event-4287339442) at 2021-02-03 12:14 PM PST -pawan92,2021-02-03T20:16:29Z,- pawan92 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-772793453) at 2021-02-03 12:16 PM PST -pawan92,2021-02-06T16:29:40Z,- pawan92 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-774503030) at 2021-02-06 08:29 AM PST -pawan92,2021-02-14T18:08:26Z,- pawan92 commented on issue: [831](https://github.com/hackforla/website/issues/831#issuecomment-778816291) at 2021-02-14 10:08 AM PST -pawan92,2021-02-14T18:09:08Z,- pawan92 commented on issue: [935](https://github.com/hackforla/website/issues/935#issuecomment-778816384) at 2021-02-14 10:09 AM PST -pawan92,2021-02-14T18:47:57Z,- pawan92 assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -pawan92,2021-02-21T17:49:25Z,- pawan92 commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-782896427) at 2021-02-21 09:49 AM PST -pawan92,2021-02-21T17:50:51Z,- pawan92 commented on issue: [962](https://github.com/hackforla/website/issues/962#issuecomment-782896668) at 2021-02-21 09:50 AM PST -pawan92,2021-02-21T17:51:21Z,- pawan92 commented on issue: [862](https://github.com/hackforla/website/issues/862#issuecomment-782896741) at 2021-02-21 09:51 AM PST -pawan92,2021-02-21T17:51:41Z,- pawan92 commented on issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-782896797) at 2021-02-21 09:51 AM PST -pawan92,2021-02-21T17:52:11Z,- pawan92 commented on issue: [1042](https://github.com/hackforla/website/issues/1042#issuecomment-782896869) at 2021-02-21 09:52 AM PST -pawan92,2021-02-21T17:52:54Z,- pawan92 commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782896960) at 2021-02-21 09:52 AM PST -pawan92,2021-02-21T17:54:28Z,- pawan92 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-782897222) at 2021-02-21 09:54 AM PST -pawan92,2021-02-28T15:52:38Z,- pawan92 commented on issue: [1081](https://github.com/hackforla/website/issues/1081#issuecomment-787473375) at 2021-02-28 07:52 AM PST -pawan92,2021-02-28T15:54:05Z,- pawan92 commented on issue: [1109](https://github.com/hackforla/website/issues/1109#issuecomment-787473599) at 2021-02-28 07:54 AM PST -pawan92,2021-03-07T18:57:12Z,- pawan92 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-781771017) at 2021-03-07 10:57 AM PST -pawan92,2021-03-07T19:23:46Z,- pawan92 unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -pawan92,2021-03-07T19:24:33Z,- pawan92 unassigned from issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -pawan92,2021-04-11T16:26:26Z,- pawan92 commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-817333918) at 2021-04-11 09:26 AM PDT -pawan92,2021-06-02T01:50:59Z,- pawan92 assigned to issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820805369) at 2021-06-01 06:50 PM PDT -pdimaano,4327,SKILLS ISSUE -pdimaano,2023-03-29T03:52:29Z,- pdimaano opened issue: [4327](https://github.com/hackforla/website/issues/4327) at 2023-03-28 08:52 PM PDT -pdimaano,2023-03-29T03:52:30Z,- pdimaano assigned to issue: [4327](https://github.com/hackforla/website/issues/4327) at 2023-03-28 08:52 PM PDT -pdimaano,2023-04-03T18:17:28Z,- pdimaano assigned to issue: [4378](https://github.com/hackforla/website/issues/4378) at 2023-04-03 11:17 AM PDT -pdimaano,2023-04-03T23:34:30Z,- pdimaano commented on issue: [4378](https://github.com/hackforla/website/issues/4378#issuecomment-1495124345) at 2023-04-03 04:34 PM PDT -pdimaano,2023-04-04T23:22:41Z,- pdimaano opened pull request: [4411](https://github.com/hackforla/website/pull/4411) at 2023-04-04 04:22 PM PDT -pdimaano,2023-04-06T18:32:45Z,- pdimaano pull request merged: [4411](https://github.com/hackforla/website/pull/4411#event-8948718508) at 2023-04-06 11:32 AM PDT -pdimaano,2023-04-12T17:57:26Z,- pdimaano commented on issue: [4327](https://github.com/hackforla/website/issues/4327#issuecomment-1505701008) at 2023-04-12 10:57 AM PDT -pdimaano,2023-04-12T18:01:54Z,- pdimaano assigned to issue: [4448](https://github.com/hackforla/website/issues/4448) at 2023-04-12 11:01 AM PDT -pdimaano,2023-04-12T18:06:50Z,- pdimaano commented on issue: [4448](https://github.com/hackforla/website/issues/4448#issuecomment-1505713005) at 2023-04-12 11:06 AM PDT -pdimaano,2023-04-14T21:16:22Z,- pdimaano opened pull request: [4517](https://github.com/hackforla/website/pull/4517) at 2023-04-14 02:16 PM PDT -pdimaano,2023-04-19T16:46:21Z,- pdimaano pull request merged: [4517](https://github.com/hackforla/website/pull/4517#event-9048817043) at 2023-04-19 09:46 AM PDT -pdimaano,2023-04-19T20:06:44Z,- pdimaano closed issue as completed: [4327](https://github.com/hackforla/website/issues/4327#event-9050476209) at 2023-04-19 01:06 PM PDT -pdimaano,2023-04-24T17:00:26Z,- pdimaano commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1520525379) at 2023-04-24 10:00 AM PDT -pdimaano,2023-04-24T17:23:36Z,- pdimaano submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1398492702) at 2023-04-24 10:23 AM PDT -pdimaano,2023-04-25T20:47:20Z,- pdimaano submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1400727288) at 2023-04-25 01:47 PM PDT -pdimaano,2023-05-08T03:35:08Z,- pdimaano assigned to issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1529480340) at 2023-05-07 08:35 PM PDT -pdimaano,2023-05-08T03:39:42Z,- pdimaano commented on issue: [4457](https://github.com/hackforla/website/issues/4457#issuecomment-1537693099) at 2023-05-07 08:39 PM PDT -pdimaano,2023-05-11T21:39:39Z,- pdimaano opened pull request: [4657](https://github.com/hackforla/website/pull/4657) at 2023-05-11 02:39 PM PDT -pdimaano,2023-05-15T05:37:10Z,- pdimaano pull request merged: [4657](https://github.com/hackforla/website/pull/4657#event-9242242314) at 2023-05-14 10:37 PM PDT -pdimaano,2023-05-15T23:33:58Z,- pdimaano assigned to issue: [4592](https://github.com/hackforla/website/issues/4592#issuecomment-1539590262) at 2023-05-15 04:33 PM PDT -pdimaano,2023-05-15T23:37:47Z,- pdimaano commented on issue: [4592](https://github.com/hackforla/website/issues/4592#issuecomment-1548755927) at 2023-05-15 04:37 PM PDT -pdimaano,2023-05-19T18:48:16Z,- pdimaano opened pull request: [4701](https://github.com/hackforla/website/pull/4701) at 2023-05-19 11:48 AM PDT -pdimaano,2023-06-23T17:27:28Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1604598102) at 2023-06-23 10:27 AM PDT -pdimaano,2023-06-29T02:31:53Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1612350943) at 2023-06-28 07:31 PM PDT -pdimaano,2023-07-06T18:59:32Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1624171782) at 2023-07-06 11:59 AM PDT -pdimaano,2023-07-09T23:32:41Z,- pdimaano commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1627861268) at 2023-07-09 04:32 PM PDT -pdimaano,2023-07-18T06:20:52Z,- pdimaano pull request merged: [4701](https://github.com/hackforla/website/pull/4701#event-9846077295) at 2023-07-17 11:20 PM PDT -pdimaano,2023-07-24T19:37:31Z,- pdimaano commented on pull request: [5054](https://github.com/hackforla/website/pull/5054#issuecomment-1648499083) at 2023-07-24 12:37 PM PDT -pdimaano,2023-07-25T02:16:33Z,- pdimaano submitted pull request review: [5054](https://github.com/hackforla/website/pull/5054#pullrequestreview-1544522123) at 2023-07-24 07:16 PM PDT -pdimaano,2023-08-07T22:20:57Z,- pdimaano commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1668650527) at 2023-08-07 03:20 PM PDT -pdimaano,2023-08-08T20:01:37Z,- pdimaano submitted pull request review: [5152](https://github.com/hackforla/website/pull/5152#pullrequestreview-1568095418) at 2023-08-08 01:01 PM PDT -pdimaano,2023-08-15T19:16:25Z,- pdimaano commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1679464552) at 2023-08-15 12:16 PM PDT -pdimaano,2023-08-17T02:53:23Z,- pdimaano submitted pull request review: [5203](https://github.com/hackforla/website/pull/5203#pullrequestreview-1581682010) at 2023-08-16 07:53 PM PDT -pdimaano,2023-08-21T19:34:02Z,- pdimaano commented on pull request: [5276](https://github.com/hackforla/website/pull/5276#issuecomment-1686923194) at 2023-08-21 12:34 PM PDT -pdimaano,2023-08-23T22:41:16Z,- pdimaano submitted pull request review: [5276](https://github.com/hackforla/website/pull/5276#pullrequestreview-1592513939) at 2023-08-23 03:41 PM PDT -pdimaano,2023-08-29T20:31:02Z,- pdimaano assigned to issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1512269056) at 2023-08-29 01:31 PM PDT -pdimaano,2023-08-29T20:42:43Z,- pdimaano commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1698101176) at 2023-08-29 01:42 PM PDT -pdimaano,2023-09-04T20:58:23Z,- pdimaano commented on pull request: [5415](https://github.com/hackforla/website/pull/5415#issuecomment-1705695074) at 2023-09-04 01:58 PM PDT -pdimaano,2023-09-05T02:30:07Z,- pdimaano opened pull request: [5444](https://github.com/hackforla/website/pull/5444) at 2023-09-04 07:30 PM PDT -pdimaano,2023-09-06T01:31:36Z,- pdimaano submitted pull request review: [5415](https://github.com/hackforla/website/pull/5415#pullrequestreview-1612181731) at 2023-09-05 06:31 PM PDT -pdimaano,2023-09-11T17:50:17Z,- pdimaano commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714330932) at 2023-09-11 10:50 AM PDT -pdimaano,2023-09-14T03:47:04Z,- pdimaano pull request merged: [5444](https://github.com/hackforla/website/pull/5444#event-10366797393) at 2023-09-13 08:47 PM PDT -pdimaano,2023-09-19T20:51:23Z,- pdimaano commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1726449003) at 2023-09-19 01:51 PM PDT -pdimaano,2023-09-20T01:38:31Z,- pdimaano submitted pull request review: [5554](https://github.com/hackforla/website/pull/5554#pullrequestreview-1634420872) at 2023-09-19 06:38 PM PDT -pdimaano,2023-09-25T18:37:24Z,- pdimaano commented on pull request: [5580](https://github.com/hackforla/website/pull/5580#issuecomment-1734272626) at 2023-09-25 11:37 AM PDT -pdimaano,2023-09-25T22:29:14Z,- pdimaano submitted pull request review: [5580](https://github.com/hackforla/website/pull/5580#pullrequestreview-1643071842) at 2023-09-25 03:29 PM PDT -pdimaano,2023-10-02T18:29:56Z,- pdimaano commented on pull request: [5645](https://github.com/hackforla/website/pull/5645#issuecomment-1743536037) at 2023-10-02 11:29 AM PDT -pdimaano,2023-10-02T22:17:58Z,- pdimaano submitted pull request review: [5645](https://github.com/hackforla/website/pull/5645#pullrequestreview-1653598487) at 2023-10-02 03:17 PM PDT -pdimaano,2023-10-10T17:34:52Z,- pdimaano commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1755925541) at 2023-10-10 10:34 AM PDT -pdimaano,2023-10-11T22:47:23Z,- pdimaano submitted pull request review: [5690](https://github.com/hackforla/website/pull/5690#pullrequestreview-1672706023) at 2023-10-11 03:47 PM PDT -pdimaano,2023-10-16T22:37:10Z,- pdimaano commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1765378845) at 2023-10-16 03:37 PM PDT -pdimaano,2023-10-18T03:15:12Z,- pdimaano submitted pull request review: [5719](https://github.com/hackforla/website/pull/5719#pullrequestreview-1683865904) at 2023-10-17 08:15 PM PDT -pdimaano,2023-10-24T03:31:33Z,- pdimaano commented on pull request: [5768](https://github.com/hackforla/website/pull/5768#issuecomment-1776465349) at 2023-10-23 08:31 PM PDT -pdimaano,2023-10-25T00:48:41Z,- pdimaano submitted pull request review: [5768](https://github.com/hackforla/website/pull/5768#pullrequestreview-1696137129) at 2023-10-24 05:48 PM PDT -pdimaano,2023-10-30T16:59:29Z,- pdimaano commented on pull request: [5793](https://github.com/hackforla/website/pull/5793#issuecomment-1785666715) at 2023-10-30 09:59 AM PDT -pdimaano,2023-10-31T03:26:42Z,- pdimaano submitted pull request review: [5793](https://github.com/hackforla/website/pull/5793#pullrequestreview-1705378654) at 2023-10-30 08:26 PM PDT -pdimaano,2023-11-08T00:23:19Z,- pdimaano commented on pull request: [5877](https://github.com/hackforla/website/pull/5877#issuecomment-1800715805) at 2023-11-07 04:23 PM PST -pdimaano,2023-11-09T01:01:36Z,- pdimaano submitted pull request review: [5877](https://github.com/hackforla/website/pull/5877#pullrequestreview-1721520225) at 2023-11-08 05:01 PM PST -pdimaano,2023-11-13T19:30:55Z,- pdimaano commented on pull request: [5894](https://github.com/hackforla/website/pull/5894#issuecomment-1808891600) at 2023-11-13 11:30 AM PST -pdimaano,2023-11-15T01:06:48Z,- pdimaano submitted pull request review: [5894](https://github.com/hackforla/website/pull/5894#pullrequestreview-1731069518) at 2023-11-14 05:06 PM PST -pdimaano,2023-11-21T00:31:00Z,- pdimaano commented on pull request: [5925](https://github.com/hackforla/website/pull/5925#issuecomment-1820025326) at 2023-11-20 04:31 PM PST -pdimaano,2023-11-22T00:17:09Z,- pdimaano submitted pull request review: [5925](https://github.com/hackforla/website/pull/5925#pullrequestreview-1743360722) at 2023-11-21 04:17 PM PST -pdimaano,2023-11-27T18:21:59Z,- pdimaano commented on pull request: [5937](https://github.com/hackforla/website/pull/5937#issuecomment-1828382357) at 2023-11-27 10:21 AM PST -pdimaano,2023-11-28T00:50:42Z,- pdimaano submitted pull request review: [5937](https://github.com/hackforla/website/pull/5937#pullrequestreview-1751691017) at 2023-11-27 04:50 PM PST -pdimaano,2023-12-04T17:17:38Z,- pdimaano commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1839111266) at 2023-12-04 09:17 AM PST -pdimaano,2023-12-21T18:51:52Z,- pdimaano commented on pull request: [6014](https://github.com/hackforla/website/pull/6014#issuecomment-1866787266) at 2023-12-21 10:51 AM PST -pdimaano,2023-12-22T04:38:31Z,- pdimaano submitted pull request review: [6014](https://github.com/hackforla/website/pull/6014#pullrequestreview-1793962157) at 2023-12-21 08:38 PM PST -pdimaano,2024-01-02T18:32:13Z,- pdimaano commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1874394929) at 2024-01-02 10:32 AM PST -pdimaano,2024-01-05T06:06:44Z,- pdimaano submitted pull request review: [6025](https://github.com/hackforla/website/pull/6025#pullrequestreview-1805389889) at 2024-01-04 10:06 PM PST -pdimaano,2024-01-09T05:19:11Z,- pdimaano submitted pull request review: [6025](https://github.com/hackforla/website/pull/6025#pullrequestreview-1810418647) at 2024-01-08 09:19 PM PST -pdimaano,2024-01-24T18:43:04Z,- pdimaano commented on pull request: [6149](https://github.com/hackforla/website/pull/6149#issuecomment-1908717465) at 2024-01-24 10:43 AM PST -pdimaano,2024-01-26T01:24:18Z,- pdimaano submitted pull request review: [6149](https://github.com/hackforla/website/pull/6149#pullrequestreview-1844957728) at 2024-01-25 05:24 PM PST -pdimaano,2024-01-29T18:42:34Z,- pdimaano commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1915344223) at 2024-01-29 10:42 AM PST -pdimaano,2024-01-31T01:38:00Z,- pdimaano submitted pull request review: [6190](https://github.com/hackforla/website/pull/6190#pullrequestreview-1852741683) at 2024-01-30 05:38 PM PST -pdimaano,2024-02-06T04:09:39Z,- pdimaano commented on pull request: [6241](https://github.com/hackforla/website/pull/6241#issuecomment-1928751372) at 2024-02-05 08:09 PM PST -pdimaano,2024-02-09T04:45:26Z,- pdimaano submitted pull request review: [6241](https://github.com/hackforla/website/pull/6241#pullrequestreview-1871646696) at 2024-02-08 08:45 PM PST -pdimaano,2024-02-20T03:29:16Z,- pdimaano commented on pull request: [6322](https://github.com/hackforla/website/pull/6322#issuecomment-1953430149) at 2024-02-19 07:29 PM PST -pdimaano,2024-02-26T23:09:16Z,- pdimaano commented on pull request: [6374](https://github.com/hackforla/website/pull/6374#issuecomment-1965492442) at 2024-02-26 03:09 PM PST -pdimaano,2024-02-29T01:53:35Z,- pdimaano submitted pull request review: [6374](https://github.com/hackforla/website/pull/6374#pullrequestreview-1907790234) at 2024-02-28 05:53 PM PST -pdimaano,2024-03-11T17:15:44Z,- pdimaano commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1989001049) at 2024-03-11 10:15 AM PDT -pdimaano,2024-03-14T00:13:48Z,- pdimaano submitted pull request review: [6443](https://github.com/hackforla/website/pull/6443#pullrequestreview-1935426406) at 2024-03-13 05:13 PM PDT -pdimaano,2024-03-25T16:51:11Z,- pdimaano commented on pull request: [6518](https://github.com/hackforla/website/pull/6518#issuecomment-2018459262) at 2024-03-25 09:51 AM PDT -pdimaano,2024-03-27T03:59:33Z,- pdimaano submitted pull request review: [6518](https://github.com/hackforla/website/pull/6518#pullrequestreview-1962234893) at 2024-03-26 08:59 PM PDT -pdimaano,2024-04-08T21:17:11Z,- pdimaano commented on pull request: [6580](https://github.com/hackforla/website/pull/6580#issuecomment-2043657104) at 2024-04-08 02:17 PM PDT -pdimaano,2024-04-10T23:29:45Z,- pdimaano submitted pull request review: [6580](https://github.com/hackforla/website/pull/6580#pullrequestreview-1992846830) at 2024-04-10 04:29 PM PDT -pdimaano,2024-04-23T16:43:44Z,- pdimaano commented on pull request: [6711](https://github.com/hackforla/website/pull/6711#issuecomment-2072901101) at 2024-04-23 09:43 AM PDT -pdimaano,2024-04-25T02:48:01Z,- pdimaano submitted pull request review: [6711](https://github.com/hackforla/website/pull/6711#pullrequestreview-2021389592) at 2024-04-24 07:48 PM PDT -pdimaano,2024-05-06T19:17:30Z,- pdimaano commented on pull request: [6821](https://github.com/hackforla/website/pull/6821#issuecomment-2096734037) at 2024-05-06 12:17 PM PDT -pdimaano,2024-05-07T05:12:56Z,- pdimaano submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2042075914) at 2024-05-06 10:12 PM PDT -pdimaano,2024-05-09T23:25:59Z,- pdimaano submitted pull request review: [6821](https://github.com/hackforla/website/pull/6821#pullrequestreview-2048997375) at 2024-05-09 04:25 PM PDT -pdimaano,2024-05-20T23:44:21Z,- pdimaano commented on pull request: [6865](https://github.com/hackforla/website/pull/6865#issuecomment-2121441947) at 2024-05-20 04:44 PM PDT -pdimaano,2024-05-28T17:54:52Z,- pdimaano commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2135819211) at 2024-05-28 10:54 AM PDT -pdimaano,2024-05-30T00:25:48Z,- pdimaano submitted pull request review: [6897](https://github.com/hackforla/website/pull/6897#pullrequestreview-2086882354) at 2024-05-29 05:25 PM PDT -pdimaano,2024-06-10T18:22:01Z,- pdimaano commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2159017038) at 2024-06-10 11:22 AM PDT -pdimaano,2024-06-13T18:39:42Z,- pdimaano submitted pull request review: [6980](https://github.com/hackforla/website/pull/6980#pullrequestreview-2116650811) at 2024-06-13 11:39 AM PDT -perlaroyerc,3776,SKILLS ISSUE -perlaroyerc,2023-01-04T04:41:03Z,- perlaroyerc opened issue: [3776](https://github.com/hackforla/website/issues/3776) at 2023-01-03 08:41 PM PST -perlaroyerc,2023-01-25T04:01:19Z,- perlaroyerc assigned to issue: [3776](https://github.com/hackforla/website/issues/3776#issuecomment-1375118859) at 2023-01-24 08:01 PM PST -perlaroyerc,2023-02-02T18:00:27Z,- perlaroyerc assigned to issue: [3840](https://github.com/hackforla/website/issues/3840) at 2023-02-02 10:00 AM PST -perlaroyerc,2023-02-02T18:19:18Z,- perlaroyerc commented on issue: [3840](https://github.com/hackforla/website/issues/3840#issuecomment-1414171675) at 2023-02-02 10:19 AM PST -perlaroyerc,2023-02-03T21:32:58Z,- perlaroyerc opened pull request: [3930](https://github.com/hackforla/website/pull/3930) at 2023-02-03 01:32 PM PST -perlaroyerc,2023-02-06T20:40:27Z,- perlaroyerc pull request merged: [3930](https://github.com/hackforla/website/pull/3930#event-8451617413) at 2023-02-06 12:40 PM PST -perlaroyerc,2023-02-14T22:25:28Z,- perlaroyerc assigned to issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1419735155) at 2023-02-14 02:25 PM PST -perlaroyerc,2023-02-14T22:28:38Z,- perlaroyerc commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1430465620) at 2023-02-14 02:28 PM PST -perlaroyerc,2023-02-17T19:54:53Z,- perlaroyerc opened pull request: [4002](https://github.com/hackforla/website/pull/4002) at 2023-02-17 11:54 AM PST -perlaroyerc,2023-02-20T22:21:47Z,- perlaroyerc pull request closed w/o merging: [4002](https://github.com/hackforla/website/pull/4002#event-8565308810) at 2023-02-20 02:21 PM PST -perlaroyerc,2023-02-20T22:22:34Z,- perlaroyerc opened pull request: [4016](https://github.com/hackforla/website/pull/4016) at 2023-02-20 02:22 PM PST -perlaroyerc,2023-02-20T22:23:22Z,- perlaroyerc pull request closed w/o merging: [4016](https://github.com/hackforla/website/pull/4016#event-8565316471) at 2023-02-20 02:23 PM PST -perlaroyerc,2023-02-22T01:17:15Z,- perlaroyerc opened pull request: [4022](https://github.com/hackforla/website/pull/4022) at 2023-02-21 05:17 PM PST -perlaroyerc,2023-02-23T08:21:57Z,- perlaroyerc pull request merged: [4022](https://github.com/hackforla/website/pull/4022#event-8588903008) at 2023-02-23 12:21 AM PST -perlaroyerc,2023-02-27T21:23:00Z,- perlaroyerc closed issue as completed: [3776](https://github.com/hackforla/website/issues/3776#event-8620461324) at 2023-02-27 01:23 PM PST -perlaroyerc,2023-03-01T19:02:02Z,- perlaroyerc assigned to issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1428964280) at 2023-03-01 11:02 AM PST -perlaroyerc,2023-03-01T19:06:51Z,- perlaroyerc commented on issue: [3963](https://github.com/hackforla/website/issues/3963#issuecomment-1450708743) at 2023-03-01 11:06 AM PST -perlaroyerc,2023-03-02T18:25:49Z,- perlaroyerc opened pull request: [4091](https://github.com/hackforla/website/pull/4091) at 2023-03-02 10:25 AM PST -perlaroyerc,2023-03-03T23:00:37Z,- perlaroyerc pull request merged: [4091](https://github.com/hackforla/website/pull/4091#event-8664206956) at 2023-03-03 03:00 PM PST -perlaroyerc,2023-03-09T19:36:38Z,- perlaroyerc commented on pull request: [4140](https://github.com/hackforla/website/pull/4140#issuecomment-1462664752) at 2023-03-09 11:36 AM PST -perlaroyerc,2023-03-09T21:25:55Z,- perlaroyerc submitted pull request review: [4140](https://github.com/hackforla/website/pull/4140#pullrequestreview-1333837931) at 2023-03-09 01:25 PM PST -perlaroyerc,2023-03-09T23:45:03Z,- perlaroyerc commented on pull request: [4143](https://github.com/hackforla/website/pull/4143#issuecomment-1463001449) at 2023-03-09 03:45 PM PST -perlaroyerc,2023-03-09T23:56:02Z,- perlaroyerc submitted pull request review: [4143](https://github.com/hackforla/website/pull/4143#pullrequestreview-1333984401) at 2023-03-09 03:56 PM PST -perlaroyerc,2023-03-10T00:02:25Z,- perlaroyerc assigned to issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1461220936) at 2023-03-09 04:02 PM PST -perlaroyerc,2023-03-10T00:06:08Z,- perlaroyerc commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1463016424) at 2023-03-09 04:06 PM PST -perlaroyerc,2023-03-11T01:59:23Z,- perlaroyerc commented on pull request: [4147](https://github.com/hackforla/website/pull/4147#issuecomment-1464784042) at 2023-03-10 06:59 PM PDT -perlaroyerc,2023-03-11T04:59:49Z,- perlaroyerc submitted pull request review: [4147](https://github.com/hackforla/website/pull/4147#pullrequestreview-1335820688) at 2023-03-10 09:59 PM PDT -perlaroyerc,2023-03-11T06:26:08Z,- perlaroyerc opened pull request: [4148](https://github.com/hackforla/website/pull/4148) at 2023-03-10 11:26 PM PDT -perlaroyerc,2023-03-11T06:27:59Z,- perlaroyerc commented on issue: [4138](https://github.com/hackforla/website/issues/4138#issuecomment-1464841271) at 2023-03-10 11:27 PM PDT -perlaroyerc,2023-03-14T22:22:16Z,- perlaroyerc commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1468919695) at 2023-03-14 03:22 PM PDT -perlaroyerc,2023-03-14T22:27:34Z,- perlaroyerc commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1468924457) at 2023-03-14 03:27 PM PDT -perlaroyerc,2023-03-14T22:54:13Z,- perlaroyerc submitted pull request review: [4181](https://github.com/hackforla/website/pull/4181#pullrequestreview-1340403162) at 2023-03-14 03:54 PM PDT -perlaroyerc,2023-03-14T22:56:47Z,- perlaroyerc commented on pull request: [4184](https://github.com/hackforla/website/pull/4184#issuecomment-1468976078) at 2023-03-14 03:56 PM PDT -perlaroyerc,2023-03-14T23:18:02Z,- perlaroyerc submitted pull request review: [4184](https://github.com/hackforla/website/pull/4184#pullrequestreview-1340421405) at 2023-03-14 04:18 PM PDT -perlaroyerc,2023-03-15T02:35:50Z,- perlaroyerc commented on pull request: [4179](https://github.com/hackforla/website/pull/4179#issuecomment-1469208921) at 2023-03-14 07:35 PM PDT -perlaroyerc,2023-03-15T03:10:45Z,- perlaroyerc submitted pull request review: [4179](https://github.com/hackforla/website/pull/4179#pullrequestreview-1340578649) at 2023-03-14 08:10 PM PDT -perlaroyerc,2023-03-16T19:20:20Z,- perlaroyerc pull request merged: [4148](https://github.com/hackforla/website/pull/4148#event-8771258188) at 2023-03-16 12:20 PM PDT -perlaroyerc,2023-03-16T21:21:34Z,- perlaroyerc commented on pull request: [4196](https://github.com/hackforla/website/pull/4196#issuecomment-1472759301) at 2023-03-16 02:21 PM PDT -perlaroyerc,2023-03-17T15:17:34Z,- perlaroyerc commented on pull request: [4201](https://github.com/hackforla/website/pull/4201#issuecomment-1473999810) at 2023-03-17 08:17 AM PDT -perlaroyerc,2023-03-17T15:36:01Z,- perlaroyerc submitted pull request review: [4196](https://github.com/hackforla/website/pull/4196#pullrequestreview-1346187013) at 2023-03-17 08:36 AM PDT -perlaroyerc,2023-03-17T16:08:33Z,- perlaroyerc commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1474068606) at 2023-03-17 09:08 AM PDT -perlaroyerc,2023-03-17T16:19:53Z,- perlaroyerc submitted pull request review: [4201](https://github.com/hackforla/website/pull/4201#pullrequestreview-1346267404) at 2023-03-17 09:19 AM PDT -perlaroyerc,2023-03-17T16:48:30Z,- perlaroyerc submitted pull request review: [4199](https://github.com/hackforla/website/pull/4199#pullrequestreview-1346320062) at 2023-03-17 09:48 AM PDT -perlaroyerc,2023-03-20T17:40:46Z,- perlaroyerc commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1476669716) at 2023-03-20 10:40 AM PDT -perlaroyerc,2023-03-20T17:42:11Z,- perlaroyerc commented on pull request: [4214](https://github.com/hackforla/website/pull/4214#issuecomment-1476671567) at 2023-03-20 10:42 AM PDT -perlaroyerc,2023-03-21T01:25:25Z,- perlaroyerc submitted pull request review: [4215](https://github.com/hackforla/website/pull/4215#pullrequestreview-1349593506) at 2023-03-20 06:25 PM PDT -perlaroyerc,2023-03-21T01:43:04Z,- perlaroyerc submitted pull request review: [4214](https://github.com/hackforla/website/pull/4214#pullrequestreview-1349600866) at 2023-03-20 06:43 PM PDT -perlaroyerc,2023-03-28T17:10:41Z,- perlaroyerc assigned to issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1485992783) at 2023-03-28 10:10 AM PDT -perlaroyerc,2023-03-28T17:13:04Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1487307869) at 2023-03-28 10:13 AM PDT -perlaroyerc,2023-03-29T20:33:53Z,- perlaroyerc commented on pull request: [4309](https://github.com/hackforla/website/pull/4309#issuecomment-1489271296) at 2023-03-29 01:33 PM PDT -perlaroyerc,2023-03-30T15:56:26Z,- perlaroyerc commented on pull request: [4346](https://github.com/hackforla/website/pull/4346#issuecomment-1490546855) at 2023-03-30 08:56 AM PDT -perlaroyerc,2023-03-30T16:34:02Z,- perlaroyerc submitted pull request review: [4309](https://github.com/hackforla/website/pull/4309#pullrequestreview-1365511194) at 2023-03-30 09:34 AM PDT -perlaroyerc,2023-03-30T21:52:49Z,- perlaroyerc submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1365988138) at 2023-03-30 02:52 PM PDT -perlaroyerc,2023-03-31T15:57:29Z,- perlaroyerc submitted pull request review: [4346](https://github.com/hackforla/website/pull/4346#pullrequestreview-1367206186) at 2023-03-31 08:57 AM PDT -perlaroyerc,2023-04-03T17:51:52Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1494736853) at 2023-04-03 10:51 AM PDT -perlaroyerc,2023-04-18T20:44:59Z,- perlaroyerc commented on issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1513773289) at 2023-04-18 01:44 PM PDT -perlaroyerc,2023-05-23T15:42:25Z,- perlaroyerc unassigned from issue: [2306](https://github.com/hackforla/website/issues/2306#issuecomment-1554142329) at 2023-05-23 08:42 AM PDT -peteplass,2020-03-31T00:41:22Z,- peteplass commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-606327830) at 2020-03-30 05:41 PM PDT -PeterSYoo,3637,SKILLS ISSUE -PeterSYoo,2022-10-19T02:19:29Z,- PeterSYoo opened issue: [3637](https://github.com/hackforla/website/issues/3637) at 2022-10-18 07:19 PM PDT -PeterSYoo,2022-10-19T02:51:28Z,- PeterSYoo assigned to issue: [3637](https://github.com/hackforla/website/issues/3637) at 2022-10-18 07:51 PM PDT -PeterSYoo,2022-10-24T03:22:28Z,- PeterSYoo assigned to issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1048429020) at 2022-10-23 08:22 PM PDT -PeterSYoo,2022-10-25T22:58:36Z,- PeterSYoo commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1291226431) at 2022-10-25 03:58 PM PDT -PeterSYoo,2022-10-25T23:36:42Z,- PeterSYoo opened pull request: [3660](https://github.com/hackforla/website/pull/3660) at 2022-10-25 04:36 PM PDT -PeterSYoo,2022-10-27T03:00:34Z,- PeterSYoo commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1292902980) at 2022-10-26 08:00 PM PDT -PeterSYoo,2022-10-27T03:01:52Z,- PeterSYoo commented on issue: [2855](https://github.com/hackforla/website/issues/2855#issuecomment-1292903704) at 2022-10-26 08:01 PM PDT -PeterSYoo,2022-10-27T19:22:40Z,- PeterSYoo commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1293964181) at 2022-10-27 12:22 PM PDT -PeterSYoo,2022-10-27T21:48:43Z,- PeterSYoo commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1294113805) at 2022-10-27 02:48 PM PDT -PeterSYoo,2022-10-28T03:37:24Z,- PeterSYoo pull request merged: [3660](https://github.com/hackforla/website/pull/3660#event-7687749653) at 2022-10-27 08:37 PM PDT -PeterSYoo,2022-10-29T00:35:44Z,- PeterSYoo assigned to issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-10-28 05:35 PM PDT -PeterSYoo,2022-10-29T00:35:52Z,- PeterSYoo unassigned from issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1244594704) at 2022-10-28 05:35 PM PDT -PeterSYoo,2022-10-29T00:38:05Z,- PeterSYoo assigned to issue: [3206](https://github.com/hackforla/website/issues/3206#issuecomment-1145820493) at 2022-10-28 05:38 PM PDT -PeterSYoo,2022-10-29T00:48:27Z,- PeterSYoo commented on issue: [3206](https://github.com/hackforla/website/issues/3206#issuecomment-1295666514) at 2022-10-28 05:48 PM PDT -PeterSYoo,2022-10-29T01:32:53Z,- PeterSYoo opened pull request: [3673](https://github.com/hackforla/website/pull/3673) at 2022-10-28 06:32 PM PDT -PeterSYoo,2022-10-30T03:14:27Z,- PeterSYoo pull request merged: [3673](https://github.com/hackforla/website/pull/3673#event-7698169080) at 2022-10-29 08:14 PM PDT -PeterSYoo,2022-11-01T00:00:41Z,- PeterSYoo assigned to issue: [3619](https://github.com/hackforla/website/issues/3619) at 2022-10-31 05:00 PM PDT -PeterSYoo,2022-11-01T00:02:05Z,- PeterSYoo commented on issue: [3619](https://github.com/hackforla/website/issues/3619#issuecomment-1297832709) at 2022-10-31 05:02 PM PDT -PeterSYoo,2022-11-01T01:01:43Z,- PeterSYoo opened pull request: [3681](https://github.com/hackforla/website/pull/3681) at 2022-10-31 06:01 PM PDT -PeterSYoo,2022-11-01T01:12:59Z,- PeterSYoo commented on pull request: [3679](https://github.com/hackforla/website/pull/3679#issuecomment-1297879765) at 2022-10-31 06:12 PM PDT -PeterSYoo,2022-11-01T01:39:22Z,- PeterSYoo submitted pull request review: [3679](https://github.com/hackforla/website/pull/3679#pullrequestreview-1162731668) at 2022-10-31 06:39 PM PDT -PeterSYoo,2022-11-01T01:43:00Z,- PeterSYoo pull request merged: [3681](https://github.com/hackforla/website/pull/3681#event-7709349554) at 2022-10-31 06:43 PM PDT -PeterSYoo,2022-11-01T02:23:13Z,- PeterSYoo reopened pull request: [3681](https://github.com/hackforla/website/pull/3681#event-7709349554) at 2022-10-31 07:23 PM PDT -PeterSYoo,2022-11-01T02:23:58Z,- PeterSYoo commented on pull request: [3681](https://github.com/hackforla/website/pull/3681#issuecomment-1297934344) at 2022-10-31 07:23 PM PDT -PeterSYoo,2022-11-01T05:13:25Z,- PeterSYoo pull request merged: [3681](https://github.com/hackforla/website/pull/3681#event-7710191838) at 2022-10-31 10:13 PM PDT -PeterSYoo,2022-11-01T22:57:22Z,- PeterSYoo assigned to issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1292228745) at 2022-11-01 03:57 PM PDT -PeterSYoo,2022-11-01T22:58:52Z,- PeterSYoo commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1299329569) at 2022-11-01 03:58 PM PDT -PeterSYoo,2022-11-16T03:15:47Z,- PeterSYoo commented on issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1316251336) at 2022-11-15 07:15 PM PST -PeterSYoo,2022-11-26T01:40:18Z,- PeterSYoo unassigned from issue: [3437](https://github.com/hackforla/website/issues/3437#issuecomment-1327102635) at 2022-11-25 05:40 PM PST -PeterSYoo,2022-11-27T19:25:00Z,- PeterSYoo commented on issue: [3637](https://github.com/hackforla/website/issues/3637#issuecomment-1328321911) at 2022-11-27 11:25 AM PST -Pfulcher26,5772,SKILLS ISSUE -Pfulcher26,2023-10-25T02:35:05Z,- Pfulcher26 opened issue: [5772](https://github.com/hackforla/website/issues/5772) at 2023-10-24 07:35 PM PDT -Pfulcher26,2023-10-25T02:35:11Z,- Pfulcher26 assigned to issue: [5772](https://github.com/hackforla/website/issues/5772) at 2023-10-24 07:35 PM PDT -Pfulcher26,2023-11-03T02:35:33Z,- Pfulcher26 assigned to issue: [5805](https://github.com/hackforla/website/issues/5805) at 2023-11-02 07:35 PM PDT -Pfulcher26,2023-11-03T02:38:38Z,- Pfulcher26 commented on issue: [5805](https://github.com/hackforla/website/issues/5805#issuecomment-1791827793) at 2023-11-02 07:38 PM PDT -Pfulcher26,2023-11-03T03:28:17Z,- Pfulcher26 opened pull request: [5828](https://github.com/hackforla/website/pull/5828) at 2023-11-02 08:28 PM PDT -Pfulcher26,2023-11-03T19:12:24Z,- Pfulcher26 commented on pull request: [5828](https://github.com/hackforla/website/pull/5828#issuecomment-1792967661) at 2023-11-03 12:12 PM PDT -Pfulcher26,2023-11-05T18:36:53Z,- Pfulcher26 pull request merged: [5828](https://github.com/hackforla/website/pull/5828#event-10865571052) at 2023-11-05 10:36 AM PST -Pfulcher26,2023-11-16T02:45:43Z,- Pfulcher26 assigned to issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1800836971) at 2023-11-15 06:45 PM PST -Pfulcher26,2023-11-16T02:48:39Z,- Pfulcher26 commented on issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1813706491) at 2023-11-15 06:48 PM PST -Pfulcher26,2023-11-16T03:27:12Z,- Pfulcher26 opened pull request: [5910](https://github.com/hackforla/website/pull/5910) at 2023-11-15 07:27 PM PST -Pfulcher26,2023-11-16T03:29:42Z,- Pfulcher26 commented on issue: [5882](https://github.com/hackforla/website/issues/5882#issuecomment-1813735041) at 2023-11-15 07:29 PM PST -Pfulcher26,2023-11-19T22:19:23Z,- Pfulcher26 pull request merged: [5910](https://github.com/hackforla/website/pull/5910#event-11004735955) at 2023-11-19 02:19 PM PST -phunguyen1195,7839,SKILLS ISSUE -phunguyen1195,2025-01-21T04:21:11Z,- phunguyen1195 opened issue: [7839](https://github.com/hackforla/website/issues/7839) at 2025-01-20 08:21 PM PST -phunguyen1195,2025-01-21T04:21:33Z,- phunguyen1195 assigned to issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603626688) at 2025-01-20 08:21 PM PST -phunguyen1195,2025-01-21T04:21:52Z,- phunguyen1195 unassigned from issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603626688) at 2025-01-20 08:21 PM PST -phunguyen1195,2025-01-21T04:23:48Z,- phunguyen1195 assigned to issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603626688) at 2025-01-20 08:23 PM PST -phunguyen1195,2025-01-21T05:10:09Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2603670042) at 2025-01-20 09:10 PM PST -phunguyen1195,2025-01-22T03:50:17Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2606228388) at 2025-01-21 07:50 PM PST -phunguyen1195,2025-01-22T05:18:50Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2606319661) at 2025-01-21 09:18 PM PST -phunguyen1195,2025-01-23T00:38:57Z,- phunguyen1195 assigned to issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2499323801) at 2025-01-22 04:38 PM PST -phunguyen1195,2025-01-23T01:16:09Z,- phunguyen1195 commented on issue: [7583](https://github.com/hackforla/website/issues/7583#issuecomment-2608637994) at 2025-01-22 05:16 PM PST -phunguyen1195,2025-01-23T01:29:12Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2608650649) at 2025-01-22 05:29 PM PST -phunguyen1195,2025-01-23T01:44:09Z,- phunguyen1195 opened pull request: [7846](https://github.com/hackforla/website/pull/7846) at 2025-01-22 05:44 PM PST -phunguyen1195,2025-01-26T18:51:55Z,- phunguyen1195 pull request merged: [7846](https://github.com/hackforla/website/pull/7846#event-16070813679) at 2025-01-26 10:51 AM PST -phunguyen1195,2025-01-27T00:48:34Z,- phunguyen1195 assigned to issue: [7567](https://github.com/hackforla/website/issues/7567) at 2025-01-26 04:48 PM PST -phunguyen1195,2025-01-27T00:53:40Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2614674591) at 2025-01-26 04:53 PM PST -phunguyen1195,2025-01-27T00:57:44Z,- phunguyen1195 commented on issue: [7567](https://github.com/hackforla/website/issues/7567#issuecomment-2614677060) at 2025-01-26 04:57 PM PST -phunguyen1195,2025-01-27T01:06:54Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2614683131) at 2025-01-26 05:06 PM PST -phunguyen1195,2025-01-27T01:47:58Z,- phunguyen1195 opened pull request: [7856](https://github.com/hackforla/website/pull/7856) at 2025-01-26 05:47 PM PST -phunguyen1195,2025-01-27T01:52:26Z,- phunguyen1195 commented on issue: [7567](https://github.com/hackforla/website/issues/7567#issuecomment-2614714495) at 2025-01-26 05:52 PM PST -phunguyen1195,2025-01-27T01:53:20Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2614715111) at 2025-01-26 05:53 PM PST -phunguyen1195,2025-01-31T00:41:20Z,- phunguyen1195 pull request merged: [7856](https://github.com/hackforla/website/pull/7856#event-16132259741) at 2025-01-30 04:41 PM PST -phunguyen1195,2025-01-31T01:00:24Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2626049740) at 2025-01-30 05:00 PM PST -phunguyen1195,2025-02-04T01:44:25Z,- phunguyen1195 commented on pull request: [7880](https://github.com/hackforla/website/pull/7880#issuecomment-2632570929) at 2025-02-03 05:44 PM PST -phunguyen1195,2025-02-07T00:35:51Z,- phunguyen1195 submitted pull request review: [7880](https://github.com/hackforla/website/pull/7880#pullrequestreview-2600473581) at 2025-02-06 04:35 PM PST -phunguyen1195,2025-02-07T00:42:53Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2641527618) at 2025-02-06 04:42 PM PST -phunguyen1195,2025-02-07T01:10:36Z,- phunguyen1195 submitted pull request review: [7900](https://github.com/hackforla/website/pull/7900#pullrequestreview-2600526158) at 2025-02-06 05:10 PM PST -phunguyen1195,2025-02-07T01:16:34Z,- phunguyen1195 commented on pull request: [7899](https://github.com/hackforla/website/pull/7899#issuecomment-2641589691) at 2025-02-06 05:16 PM PST -phunguyen1195,2025-02-07T01:16:55Z,- phunguyen1195 commented on pull request: [7898](https://github.com/hackforla/website/pull/7898#issuecomment-2641591133) at 2025-02-06 05:16 PM PST -phunguyen1195,2025-02-07T14:36:23Z,- phunguyen1195 submitted pull request review: [7900](https://github.com/hackforla/website/pull/7900#pullrequestreview-2601907423) at 2025-02-07 06:36 AM PST -phunguyen1195,2025-03-01T15:56:08Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2692294015) at 2025-03-01 07:56 AM PST -phunguyen1195,2025-04-18T07:19:37Z,- phunguyen1195 commented on issue: [7839](https://github.com/hackforla/website/issues/7839#issuecomment-2814761188) at 2025-04-18 12:19 AM PDT -phuonguvan,2993,SKILLS ISSUE -phuonguvan,2022-03-20T17:07:48Z,- phuonguvan opened issue: [2993](https://github.com/hackforla/website/issues/2993) at 2022-03-20 10:07 AM PDT -phuonguvan,2022-03-24T09:33:02Z,- phuonguvan commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077420926) at 2022-03-24 02:33 AM PDT -phuonguvan,2022-03-24T10:03:42Z,- phuonguvan commented on issue: [2317](https://github.com/hackforla/website/issues/2317#issuecomment-1077450405) at 2022-03-24 03:03 AM PDT -phuonguvan,2022-03-24T10:09:58Z,- phuonguvan commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1077456402) at 2022-03-24 03:09 AM PDT -phuonguvan,2022-03-24T10:19:05Z,- phuonguvan commented on issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1077464694) at 2022-03-24 03:19 AM PDT -phuonguvan,2022-03-24T10:20:04Z,- phuonguvan commented on issue: [2084](https://github.com/hackforla/website/issues/2084#issuecomment-1077465560) at 2022-03-24 03:20 AM PDT -phuonguvan,2022-03-24T10:25:44Z,- phuonguvan commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1077470719) at 2022-03-24 03:25 AM PDT -phuonguvan,2022-03-24T10:29:08Z,- phuonguvan commented on issue: [2500](https://github.com/hackforla/website/issues/2500#issuecomment-1077473845) at 2022-03-24 03:29 AM PDT -phuonguvan,2022-03-24T10:31:01Z,- phuonguvan commented on issue: [2615](https://github.com/hackforla/website/issues/2615#issuecomment-1077475652) at 2022-03-24 03:31 AM PDT -phuonguvan,2022-03-24T10:38:42Z,- phuonguvan commented on issue: [1994](https://github.com/hackforla/website/issues/1994#issuecomment-1077482451) at 2022-03-24 03:38 AM PDT -phuonguvan,2022-03-24T10:51:08Z,- phuonguvan commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1077493208) at 2022-03-24 03:51 AM PDT -phuonguvan,2022-03-24T19:31:21Z,- phuonguvan assigned to issue: [2993](https://github.com/hackforla/website/issues/2993#issuecomment-1073293085) at 2022-03-24 12:31 PM PDT -phuonguvan,2022-03-26T17:26:41Z,- phuonguvan assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-26 10:26 AM PDT -phuonguvan,2022-03-27T08:32:44Z,- phuonguvan assigned to issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-999090470) at 2022-03-27 01:32 AM PDT -phuonguvan,2022-03-27T09:49:10Z,- phuonguvan commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1079894210) at 2022-03-27 02:49 AM PDT -phuonguvan,2022-03-30T02:39:56Z,- phuonguvan unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-29 07:39 PM PDT -phuonguvan,2022-03-31T18:46:41Z,- phuonguvan commented on issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1084978279) at 2022-03-31 11:46 AM PDT -phuonguvan,2022-03-31T18:51:41Z,- phuonguvan assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 11:51 AM PDT -phuonguvan,2022-03-31T19:39:55Z,- phuonguvan commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1085024712) at 2022-03-31 12:39 PM PDT -phuonguvan,2022-03-31T19:39:55Z,- phuonguvan closed issue as completed: [2936](https://github.com/hackforla/website/issues/2936#event-6346738332) at 2022-03-31 12:39 PM PDT -phuonguvan,2022-03-31T19:48:56Z,- phuonguvan unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 12:48 PM PDT -phuonguvan,2022-03-31T19:49:05Z,- phuonguvan assigned to issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1078728693) at 2022-03-31 12:49 PM PDT -phuonguvan,2022-04-02T01:14:52Z,- phuonguvan unassigned from issue: [2613](https://github.com/hackforla/website/issues/2613#issuecomment-1085525076) at 2022-04-01 06:14 PM PDT -phuonguvan,2022-04-03T17:17:26Z,- phuonguvan closed issue as completed: [2993](https://github.com/hackforla/website/issues/2993#event-6358546518) at 2022-04-03 10:17 AM PDT -phuonguvan,2022-04-07T09:12:06Z,- phuonguvan opened issue: [3034](https://github.com/hackforla/website/issues/3034) at 2022-04-07 02:12 AM PDT -phuonguvan,2022-04-07T10:17:22Z,- phuonguvan opened issue: [3035](https://github.com/hackforla/website/issues/3035) at 2022-04-07 03:17 AM PDT -phuonguvan,2022-04-10T17:23:34Z,- phuonguvan assigned to issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094331934) at 2022-04-10 10:23 AM PDT -phuonguvan,2022-04-14T19:50:27Z,- phuonguvan assigned to issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1035681718) at 2022-04-14 12:50 PM PDT -phuonguvan,2022-04-14T20:03:08Z,- phuonguvan commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1099576584) at 2022-04-14 01:03 PM PDT -phuonguvan,2022-04-14T20:29:36Z,- phuonguvan commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1099594508) at 2022-04-14 01:29 PM PDT -phuonguvan,2022-04-24T17:50:26Z,- phuonguvan closed issue as completed: [3066](https://github.com/hackforla/website/issues/3066#event-6486152874) at 2022-04-24 10:50 AM PDT -phuonguvan,2022-04-24T17:54:11Z,- phuonguvan assigned to issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-04-24 10:54 AM PDT -phuonguvan,2022-04-24T17:56:42Z,- phuonguvan unassigned from issue: [2601](https://github.com/hackforla/website/issues/2601#issuecomment-1006992697) at 2022-04-24 10:56 AM PDT -phuonguvan,2022-05-04T07:11:58Z,- phuonguvan commented on issue: [2106](https://github.com/hackforla/website/issues/2106#issuecomment-1116995046) at 2022-05-04 12:11 AM PDT -phuonguvan,2022-05-10T11:13:12Z,- phuonguvan opened issue: [3117](https://github.com/hackforla/website/issues/3117) at 2022-05-10 04:13 AM PDT -phuonguvan,2022-05-10T21:28:50Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1122888424) at 2022-05-10 02:28 PM PDT -phuonguvan,2022-05-15T16:53:53Z,- phuonguvan opened issue: [3141](https://github.com/hackforla/website/issues/3141) at 2022-05-15 09:53 AM PDT -phuonguvan,2022-05-18T08:18:05Z,- phuonguvan assigned to issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1029717143) at 2022-05-18 01:18 AM PDT -phuonguvan,2022-05-31T08:40:05Z,- phuonguvan opened pull request: [3184](https://github.com/hackforla/website/pull/3184) at 2022-05-31 01:40 AM PDT -phuonguvan,2022-06-01T08:06:48Z,- phuonguvan opened issue: [3191](https://github.com/hackforla/website/issues/3191) at 2022-06-01 01:06 AM PDT -phuonguvan,2022-06-01T23:13:50Z,- phuonguvan pull request merged: [3184](https://github.com/hackforla/website/pull/3184#event-6723786346) at 2022-06-01 04:13 PM PDT -phuonguvan,2022-06-08T22:33:35Z,- phuonguvan closed issue as completed: [3141](https://github.com/hackforla/website/issues/3141#event-6773500519) at 2022-06-08 03:33 PM PDT -phuonguvan,2022-06-08T23:15:28Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1150505946) at 2022-06-08 04:15 PM PDT -phuonguvan,2022-06-22T23:12:29Z,- phuonguvan opened issue: [3289](https://github.com/hackforla/website/issues/3289) at 2022-06-22 04:12 PM PDT -phuonguvan,2022-06-30T04:13:45Z,- phuonguvan commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1170734961) at 2022-06-29 09:13 PM PDT -phuonguvan,2022-06-30T04:17:57Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1170737265) at 2022-06-29 09:17 PM PDT -phuonguvan,2022-06-30T07:01:14Z,- phuonguvan commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1170843586) at 2022-06-30 12:01 AM PDT -phuonguvan,2022-07-07T19:35:27Z,- phuonguvan commented on issue: [2617](https://github.com/hackforla/website/issues/2617#issuecomment-1178130768) at 2022-07-07 12:35 PM PDT -phuonguvan,2022-07-27T21:35:08Z,- phuonguvan opened issue: [3434](https://github.com/hackforla/website/issues/3434) at 2022-07-27 02:35 PM PDT -phuonguvan,2022-08-03T21:47:09Z,- phuonguvan commented on issue: [916](https://github.com/hackforla/website/issues/916#issuecomment-1204518870) at 2022-08-03 02:47 PM PDT -phuonguvan,2022-08-03T23:03:56Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1204566847) at 2022-08-03 04:03 PM PDT -phuonguvan,2022-08-11T04:39:10Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1211546976) at 2022-08-10 09:39 PM PDT -phuonguvan,2022-08-11T07:06:09Z,- phuonguvan opened issue: [3461](https://github.com/hackforla/website/issues/3461) at 2022-08-11 12:06 AM PDT -phuonguvan,2022-09-01T19:46:20Z,- phuonguvan assigned to issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1211624237) at 2022-09-01 12:46 PM PDT -phuonguvan,2022-09-08T05:23:27Z,- phuonguvan commented on issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1240234765) at 2022-09-07 10:23 PM PDT -phuonguvan,2022-09-08T06:09:08Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240262898) at 2022-09-07 11:09 PM PDT -phuonguvan,2022-09-08T06:19:06Z,- phuonguvan commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2022-09-07 11:19 PM PDT -phuonguvan,2022-09-08T06:24:42Z,- phuonguvan opened issue: [3522](https://github.com/hackforla/website/issues/3522) at 2022-09-07 11:24 PM PDT -phuonguvan,2022-09-08T06:26:52Z,- phuonguvan opened issue: [3523](https://github.com/hackforla/website/issues/3523) at 2022-09-07 11:26 PM PDT -phuonguvan,2022-09-08T06:31:28Z,- phuonguvan opened issue: [3524](https://github.com/hackforla/website/issues/3524) at 2022-09-07 11:31 PM PDT -phuonguvan,2022-09-08T06:34:54Z,- phuonguvan opened issue: [3525](https://github.com/hackforla/website/issues/3525) at 2022-09-07 11:34 PM PDT -phuonguvan,2022-09-08T06:37:29Z,- phuonguvan opened issue: [3526](https://github.com/hackforla/website/issues/3526) at 2022-09-07 11:37 PM PDT -phuonguvan,2022-09-08T06:40:20Z,- phuonguvan opened issue: [3527](https://github.com/hackforla/website/issues/3527) at 2022-09-07 11:40 PM PDT -phuonguvan,2022-09-08T06:41:43Z,- phuonguvan opened issue: [3528](https://github.com/hackforla/website/issues/3528) at 2022-09-07 11:41 PM PDT -phuonguvan,2022-09-08T06:42:52Z,- phuonguvan opened issue: [3529](https://github.com/hackforla/website/issues/3529) at 2022-09-07 11:42 PM PDT -phuonguvan,2022-09-14T04:29:34Z,- phuonguvan opened issue: [3555](https://github.com/hackforla/website/issues/3555) at 2022-09-13 09:29 PM PDT -phuonguvan,2022-10-12T16:55:52Z,- phuonguvan unassigned from issue: [2612](https://github.com/hackforla/website/issues/2612#issuecomment-1276470868) at 2022-10-12 09:55 AM PDT -phuonguvan,2022-11-16T17:39:03Z,- phuonguvan unassigned from issue: [2697](https://github.com/hackforla/website/issues/2697#issuecomment-1029717143) at 2022-11-16 09:39 AM PST -phuonguvan,2022-11-20T18:44:20Z,- phuonguvan unassigned from issue: [3461](https://github.com/hackforla/website/issues/3461#issuecomment-1319637015) at 2022-11-20 10:44 AM PST -phuonguvan,2023-01-09T03:43:32Z,- phuonguvan unassigned from issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2023-01-08 07:43 PM PST -phuongv8,3917,SKILLS ISSUE -phuongv8,2023-02-01T05:00:07Z,- phuongv8 opened issue: [3917](https://github.com/hackforla/website/issues/3917) at 2023-01-31 09:00 PM PST -phuongv8,2023-02-01T05:00:08Z,- phuongv8 assigned to issue: [3917](https://github.com/hackforla/website/issues/3917) at 2023-01-31 09:00 PM PST -phuongv8,2023-02-04T01:04:20Z,- phuongv8 commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1416572221) at 2023-02-03 05:04 PM PST -phuongv8,2023-03-17T02:23:24Z,- phuongv8 commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1473019539) at 2023-03-16 07:23 PM PDT -phuongv8,2023-03-18T21:30:11Z,- phuongv8 assigned to issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1473089388) at 2023-03-18 02:30 PM PDT -phuongv8,2023-03-18T21:35:14Z,- phuongv8 commented on issue: [3877](https://github.com/hackforla/website/issues/3877#issuecomment-1475000440) at 2023-03-18 02:35 PM PDT -phuongv8,2023-03-18T21:46:57Z,- phuongv8 opened pull request: [4208](https://github.com/hackforla/website/pull/4208) at 2023-03-18 02:46 PM PDT -phuongv8,2023-03-18T21:48:59Z,- phuongv8 commented on issue: [3917](https://github.com/hackforla/website/issues/3917#issuecomment-1475003674) at 2023-03-18 02:48 PM PDT -phuongv8,2023-03-18T23:02:49Z,- phuongv8 closed issue as completed: [3917](https://github.com/hackforla/website/issues/3917#event-8786355309) at 2023-03-18 04:02 PM PDT -phuongv8,2023-03-21T17:50:11Z,- phuongv8 commented on pull request: [4208](https://github.com/hackforla/website/pull/4208#issuecomment-1478341528) at 2023-03-21 10:50 AM PDT -phuongv8,2023-03-23T21:48:49Z,- phuongv8 pull request merged: [4208](https://github.com/hackforla/website/pull/4208#event-8832793036) at 2023-03-23 02:48 PM PDT -piecanoe,5775,SKILLS ISSUE -piecanoe,2023-10-25T02:48:07Z,- piecanoe opened issue: [5775](https://github.com/hackforla/website/issues/5775) at 2023-10-24 07:48 PM PDT -piecanoe,2023-10-25T03:15:30Z,- piecanoe assigned to issue: [5775](https://github.com/hackforla/website/issues/5775#issuecomment-1778417484) at 2023-10-24 08:15 PM PDT -piecanoe,2023-12-12T08:09:15Z,- piecanoe assigned to issue: [5819](https://github.com/hackforla/website/issues/5819#issuecomment-1788512688) at 2023-12-12 12:09 AM PST -piecanoe,2023-12-12T08:59:14Z,- piecanoe opened pull request: [6003](https://github.com/hackforla/website/pull/6003) at 2023-12-12 12:59 AM PST -piecanoe,2023-12-14T17:20:47Z,- piecanoe commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1856261333) at 2023-12-14 09:20 AM PST -piecanoe,2023-12-14T17:29:11Z,- piecanoe commented on pull request: [6003](https://github.com/hackforla/website/pull/6003#issuecomment-1856273077) at 2023-12-14 09:29 AM PST -piecanoe,2023-12-15T14:42:53Z,- piecanoe pull request merged: [6003](https://github.com/hackforla/website/pull/6003#event-11260386234) at 2023-12-15 06:42 AM PST -piecanoe,2024-01-18T19:45:57Z,- piecanoe closed issue as completed: [5775](https://github.com/hackforla/website/issues/5775#event-11529435333) at 2024-01-18 11:45 AM PST -piecanoe,2024-01-18T20:23:54Z,- piecanoe assigned to issue: [6126](https://github.com/hackforla/website/issues/6126) at 2024-01-18 12:23 PM PST -piecanoe,2024-01-18T20:43:16Z,- piecanoe opened pull request: [6130](https://github.com/hackforla/website/pull/6130) at 2024-01-18 12:43 PM PST -piecanoe,2024-01-18T20:48:09Z,- piecanoe commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1899181415) at 2024-01-18 12:48 PM PST -piecanoe,2024-01-21T21:35:42Z,- piecanoe commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1902773611) at 2024-01-21 01:35 PM PST -piecanoe,2024-01-24T17:15:57Z,- piecanoe pull request merged: [6130](https://github.com/hackforla/website/pull/6130#event-11587321370) at 2024-01-24 09:15 AM PST -piecanoe,2024-01-25T23:20:24Z,- piecanoe commented on pull request: [6130](https://github.com/hackforla/website/pull/6130#issuecomment-1911153723) at 2024-01-25 03:20 PM PST -piecanoe,2024-02-14T21:50:33Z,- piecanoe assigned to issue: [5987](https://github.com/hackforla/website/issues/5987) at 2024-02-14 01:50 PM PST -piecanoe,2024-02-14T22:30:32Z,- piecanoe commented on issue: [5987](https://github.com/hackforla/website/issues/5987#issuecomment-1944841193) at 2024-02-14 02:30 PM PST -piecanoe,2024-02-27T20:02:23Z,- piecanoe assigned to issue: [6373](https://github.com/hackforla/website/issues/6373) at 2024-02-27 12:02 PM PST -piecanoe,2024-02-27T20:38:45Z,- piecanoe opened pull request: [6384](https://github.com/hackforla/website/pull/6384) at 2024-02-27 12:38 PM PST -piecanoe,2024-02-27T20:41:01Z,- piecanoe commented on issue: [6373](https://github.com/hackforla/website/issues/6373#issuecomment-1967553393) at 2024-02-27 12:41 PM PST -piecanoe,2024-03-02T03:02:48Z,- piecanoe commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1974238882) at 2024-03-01 07:02 PM PST -piecanoe,2024-03-02T06:27:32Z,- piecanoe pull request merged: [6384](https://github.com/hackforla/website/pull/6384#event-11986603399) at 2024-03-01 10:27 PM PST -piecanoe,2024-05-08T21:13:26Z,- piecanoe assigned to issue: [6570](https://github.com/hackforla/website/issues/6570) at 2024-05-08 02:13 PM PDT -piecanoe,2024-05-15T23:35:09Z,- piecanoe commented on issue: [6570](https://github.com/hackforla/website/issues/6570#issuecomment-2113652556) at 2024-05-15 04:35 PM PDT -piecanoe,2024-07-05T16:11:05Z,- piecanoe assigned to issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-1974983198) at 2024-07-05 09:11 AM PDT -piecanoe,2024-07-26T17:26:36Z,- piecanoe unassigned from issue: [4607](https://github.com/hackforla/website/issues/4607#issuecomment-2211125026) at 2024-07-26 10:26 AM PDT -piecanoe,2024-08-23T18:21:02Z,- piecanoe assigned to issue: [7143](https://github.com/hackforla/website/issues/7143) at 2024-08-23 11:21 AM PDT -piecanoe,2024-08-27T16:26:10Z,- piecanoe commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2313017457) at 2024-08-27 09:26 AM PDT -piecanoe,2024-09-03T20:06:24Z,- piecanoe commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2327341457) at 2024-09-03 01:06 PM PDT -pjpatel021,2708,SKILLS ISSUE -pjpatel021,2022-01-20T21:23:50Z,- pjpatel021 opened issue: [2708](https://github.com/hackforla/website/issues/2708) at 2022-01-20 01:23 PM PST -pjpatel021,2022-01-20T21:24:41Z,- pjpatel021 assigned to issue: [2708](https://github.com/hackforla/website/issues/2708#issuecomment-1017940306) at 2022-01-20 01:24 PM PST -pjpatel021,2022-01-20T21:37:49Z,- pjpatel021 assigned to issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1016465371) at 2022-01-20 01:37 PM PST -pjpatel021,2022-01-20T21:45:41Z,- pjpatel021 commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1017955130) at 2022-01-20 01:45 PM PST -pjpatel021,2022-01-20T21:46:46Z,- pjpatel021 closed issue as completed: [2708](https://github.com/hackforla/website/issues/2708#event-5928229047) at 2022-01-20 01:46 PM PST -pjpatel021,2022-01-29T06:51:28Z,- pjpatel021 commented on issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1024850958) at 2022-01-28 10:51 PM PST -pjpatel021,2022-02-09T20:12:37Z,- pjpatel021 unassigned from issue: [2706](https://github.com/hackforla/website/issues/2706#issuecomment-1024850958) at 2022-02-09 12:12 PM PST -plang-psm,3511,SKILLS ISSUE -plang-psm,2022-08-31T03:09:34Z,- plang-psm opened issue: [3511](https://github.com/hackforla/website/issues/3511) at 2022-08-30 08:09 PM PDT -plang-psm,2022-08-31T03:47:51Z,- plang-psm assigned to issue: [3511](https://github.com/hackforla/website/issues/3511) at 2022-08-30 08:47 PM PDT -plang-psm,2022-08-31T04:08:35Z,- plang-psm assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1099560647) at 2022-08-30 09:08 PM PDT -plang-psm,2022-08-31T04:22:21Z,- plang-psm unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1232437217) at 2022-08-30 09:22 PM PDT -plang-psm,2022-08-31T04:24:10Z,- plang-psm assigned to issue: [2831](https://github.com/hackforla/website/issues/2831#issuecomment-1047131306) at 2022-08-30 09:24 PM PDT -plang-psm,2022-08-31T04:26:30Z,- plang-psm commented on issue: [2831](https://github.com/hackforla/website/issues/2831#issuecomment-1232446729) at 2022-08-30 09:26 PM PDT -plang-psm,2022-09-01T23:43:26Z,- plang-psm opened pull request: [3515](https://github.com/hackforla/website/pull/3515) at 2022-09-01 04:43 PM PDT -plang-psm,2022-09-02T00:11:27Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1234930621) at 2022-09-01 05:11 PM PDT -plang-psm,2022-09-03T15:27:20Z,- plang-psm pull request merged: [3515](https://github.com/hackforla/website/pull/3515#event-7317225546) at 2022-09-03 08:27 AM PDT -plang-psm,2022-09-05T01:21:25Z,- plang-psm assigned to issue: [3097](https://github.com/hackforla/website/issues/3097#issuecomment-1116785375) at 2022-09-04 06:21 PM PDT -plang-psm,2022-09-05T01:23:32Z,- plang-psm commented on issue: [3097](https://github.com/hackforla/website/issues/3097#issuecomment-1236461319) at 2022-09-04 06:23 PM PDT -plang-psm,2022-09-05T01:45:36Z,- plang-psm opened pull request: [3519](https://github.com/hackforla/website/pull/3519) at 2022-09-04 06:45 PM PDT -plang-psm,2022-09-06T02:22:26Z,- plang-psm pull request merged: [3519](https://github.com/hackforla/website/pull/3519#event-7326375702) at 2022-09-05 07:22 PM PDT -plang-psm,2022-09-06T23:02:36Z,- plang-psm commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1238733867) at 2022-09-06 04:02 PM PDT -plang-psm,2022-09-06T23:05:53Z,- plang-psm commented on pull request: [3519](https://github.com/hackforla/website/pull/3519#issuecomment-1238735678) at 2022-09-06 04:05 PM PDT -plang-psm,2022-09-06T23:59:46Z,- plang-psm assigned to issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1237381656) at 2022-09-06 04:59 PM PDT -plang-psm,2022-09-07T00:08:29Z,- plang-psm commented on issue: [3520](https://github.com/hackforla/website/issues/3520#issuecomment-1238766999) at 2022-09-06 05:08 PM PDT -plang-psm,2022-09-07T02:46:43Z,- plang-psm opened pull request: [3521](https://github.com/hackforla/website/pull/3521) at 2022-09-06 07:46 PM PDT -plang-psm,2022-09-08T20:57:34Z,- plang-psm commented on pull request: [3521](https://github.com/hackforla/website/pull/3521#issuecomment-1241225802) at 2022-09-08 01:57 PM PDT -plang-psm,2022-09-09T01:05:47Z,- plang-psm pull request merged: [3521](https://github.com/hackforla/website/pull/3521#event-7352440576) at 2022-09-08 06:05 PM PDT -plang-psm,2022-09-16T00:54:36Z,- plang-psm assigned to issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1163664110) at 2022-09-15 05:54 PM PDT -plang-psm,2022-09-16T00:55:38Z,- plang-psm commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1248797467) at 2022-09-15 05:55 PM PDT -plang-psm,2022-09-16T04:48:49Z,- plang-psm opened pull request: [3558](https://github.com/hackforla/website/pull/3558) at 2022-09-15 09:48 PM PDT -plang-psm,2022-09-16T04:55:26Z,- plang-psm commented on pull request: [3557](https://github.com/hackforla/website/pull/3557#issuecomment-1248918466) at 2022-09-15 09:55 PM PDT -plang-psm,2022-09-16T05:42:08Z,- plang-psm submitted pull request review: [3557](https://github.com/hackforla/website/pull/3557#pullrequestreview-1110117397) at 2022-09-15 10:42 PM PDT -plang-psm,2022-09-17T00:29:41Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1249958390) at 2022-09-16 05:29 PM PDT -plang-psm,2022-09-18T00:27:43Z,- plang-psm commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1250162288) at 2022-09-17 05:27 PM PDT -plang-psm,2022-09-19T20:15:48Z,- plang-psm opened pull request: [3564](https://github.com/hackforla/website/pull/3564) at 2022-09-19 01:15 PM PDT -plang-psm,2022-09-19T20:19:57Z,- plang-psm pull request closed w/o merging: [3558](https://github.com/hackforla/website/pull/3558#event-7416718374) at 2022-09-19 01:19 PM PDT -plang-psm,2022-09-19T20:20:32Z,- plang-psm commented on pull request: [3558](https://github.com/hackforla/website/pull/3558#issuecomment-1251508451) at 2022-09-19 01:20 PM PDT -plang-psm,2022-09-21T02:57:32Z,- plang-psm closed issue as completed: [3511](https://github.com/hackforla/website/issues/3511#event-7426987232) at 2022-09-20 07:57 PM PDT -plang-psm,2022-09-23T17:52:52Z,- plang-psm pull request merged: [3564](https://github.com/hackforla/website/pull/3564#event-7449346733) at 2022-09-23 10:52 AM PDT -plang-psm,2022-09-30T02:07:49Z,- plang-psm assigned to issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-920303375) at 2022-09-29 07:07 PM PDT -plang-psm,2022-09-30T02:08:57Z,- plang-psm commented on issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1263020286) at 2022-09-29 07:08 PM PDT -plang-psm,2022-09-30T02:36:22Z,- plang-psm commented on pull request: [3586](https://github.com/hackforla/website/pull/3586#issuecomment-1263034556) at 2022-09-29 07:36 PM PDT -plang-psm,2022-09-30T02:36:41Z,- plang-psm commented on pull request: [3590](https://github.com/hackforla/website/pull/3590#issuecomment-1263034717) at 2022-09-29 07:36 PM PDT -plang-psm,2022-09-30T03:06:28Z,- plang-psm submitted pull request review: [3590](https://github.com/hackforla/website/pull/3590#pullrequestreview-1126196828) at 2022-09-29 08:06 PM PDT -plang-psm,2022-10-02T18:32:02Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1264705918) at 2022-10-02 11:32 AM PDT -plang-psm,2022-10-02T18:43:32Z,- plang-psm unassigned from issue: [2021](https://github.com/hackforla/website/issues/2021#issuecomment-1263020286) at 2022-10-02 11:43 AM PDT -plang-psm,2022-10-06T20:04:14Z,- plang-psm assigned to issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1255890741) at 2022-10-06 01:04 PM PDT -plang-psm,2022-10-06T20:07:08Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1270620171) at 2022-10-06 01:07 PM PDT -plang-psm,2022-10-06T20:23:03Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1270635660) at 2022-10-06 01:23 PM PDT -plang-psm,2022-10-06T20:40:53Z,- plang-psm commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1270653032) at 2022-10-06 01:40 PM PDT -plang-psm,2022-10-06T20:51:38Z,- plang-psm submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1133624080) at 2022-10-06 01:51 PM PDT -plang-psm,2022-10-06T20:52:29Z,- plang-psm submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1133624989) at 2022-10-06 01:52 PM PDT -plang-psm,2022-10-06T20:55:12Z,- plang-psm commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1270686250) at 2022-10-06 01:55 PM PDT -plang-psm,2022-10-09T18:32:40Z,- plang-psm commented on pull request: [3597](https://github.com/hackforla/website/pull/3597#issuecomment-1272602670) at 2022-10-09 11:32 AM PDT -plang-psm,2022-10-12T07:21:38Z,- plang-psm submitted pull request review: [3597](https://github.com/hackforla/website/pull/3597#pullrequestreview-1138564400) at 2022-10-12 12:21 AM PDT -plang-psm,2022-10-14T05:24:25Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1278500180) at 2022-10-13 10:24 PM PDT -plang-psm,2022-10-14T15:25:49Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1279152657) at 2022-10-14 08:25 AM PDT -plang-psm,2022-10-17T20:59:27Z,- plang-psm submitted pull request review: [3597](https://github.com/hackforla/website/pull/3597#pullrequestreview-1144804249) at 2022-10-17 01:59 PM PDT -plang-psm,2022-10-20T18:43:15Z,- plang-psm commented on pull request: [3643](https://github.com/hackforla/website/pull/3643#issuecomment-1285986923) at 2022-10-20 11:43 AM PDT -plang-psm,2022-10-20T18:45:10Z,- plang-psm submitted pull request review: [3643](https://github.com/hackforla/website/pull/3643#pullrequestreview-1149797296) at 2022-10-20 11:45 AM PDT -plang-psm,2022-11-01T22:22:37Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1299304102) at 2022-11-01 03:22 PM PDT -plang-psm,2022-11-01T23:19:03Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1299347037) at 2022-11-01 04:19 PM PDT -plang-psm,2022-11-01T23:29:52Z,- plang-psm commented on issue: [2210](https://github.com/hackforla/website/issues/2210#issuecomment-1299354106) at 2022-11-01 04:29 PM PDT -plang-psm,2022-11-01T23:31:45Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1299355237) at 2022-11-01 04:31 PM PDT -plang-psm,2022-11-09T02:53:23Z,- plang-psm commented on pull request: [3702](https://github.com/hackforla/website/pull/3702#issuecomment-1308131406) at 2022-11-08 06:53 PM PST -plang-psm,2022-11-13T01:35:17Z,- plang-psm commented on pull request: [3716](https://github.com/hackforla/website/pull/3716#issuecomment-1312612831) at 2022-11-12 05:35 PM PST -plang-psm,2022-11-13T01:41:58Z,- plang-psm submitted pull request review: [3716](https://github.com/hackforla/website/pull/3716#pullrequestreview-1178178756) at 2022-11-12 05:41 PM PST -plang-psm,2022-11-16T00:20:53Z,- plang-psm commented on pull request: [3721](https://github.com/hackforla/website/pull/3721#issuecomment-1316072587) at 2022-11-15 04:20 PM PST -plang-psm,2022-11-16T00:21:27Z,- plang-psm commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316073087) at 2022-11-15 04:21 PM PST -plang-psm,2022-11-16T01:17:10Z,- plang-psm submitted pull request review: [3721](https://github.com/hackforla/website/pull/3721#pullrequestreview-1181753401) at 2022-11-15 05:17 PM PST -plang-psm,2022-11-16T01:49:04Z,- plang-psm submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1181772095) at 2022-11-15 05:49 PM PST -plang-psm,2022-11-17T22:43:33Z,- plang-psm commented on pull request: [3726](https://github.com/hackforla/website/pull/3726#issuecomment-1319304229) at 2022-11-17 02:43 PM PST -plang-psm,2022-11-27T20:30:31Z,- plang-psm assigned to issue: [3704](https://github.com/hackforla/website/issues/3704#issuecomment-1328333526) at 2022-11-27 12:30 PM PST -plang-psm,2022-11-27T20:53:17Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1328337458) at 2022-11-27 12:53 PM PST -plang-psm,2022-12-06T00:29:41Z,- plang-psm commented on issue: [3254](https://github.com/hackforla/website/issues/3254#issuecomment-1338485243) at 2022-12-05 04:29 PM PST -plang-psm,2022-12-06T00:29:41Z,- plang-psm closed issue as completed: [3254](https://github.com/hackforla/website/issues/3254#event-7960554244) at 2022-12-05 04:29 PM PST -plang-psm,2022-12-06T02:40:56Z,- plang-psm commented on issue: [2464](https://github.com/hackforla/website/issues/2464#issuecomment-1338648923) at 2022-12-05 06:40 PM PST -plang-psm,2023-01-19T17:54:57Z,- plang-psm commented on issue: [3511](https://github.com/hackforla/website/issues/3511#issuecomment-1397385007) at 2023-01-19 09:54 AM PST -plang-psm,2023-01-19T17:54:58Z,- plang-psm closed issue as completed: [3511](https://github.com/hackforla/website/issues/3511#event-8314691019) at 2023-01-19 09:54 AM PST -plang-psm,2023-01-21T22:57:23Z,- plang-psm opened issue: [3848](https://github.com/hackforla/website/issues/3848) at 2023-01-21 02:57 PM PST -plang-psm,2023-01-24T15:17:46Z,- plang-psm commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1402115633) at 2023-01-24 07:17 AM PST -plang-psm,2023-01-24T15:18:04Z,- plang-psm reopened pull request: [3850](https://github.com/hackforla/website/pull/3850#event-8345380637) at 2023-01-24 07:18 AM PST -plang-psm,2023-01-24T15:18:32Z,- plang-psm closed issue by PR 3850: [3396](https://github.com/hackforla/website/issues/3396#event-8345388931) at 2023-01-24 07:18 AM PST -plang-psm,2023-01-27T03:16:41Z,- plang-psm opened issue: [3882](https://github.com/hackforla/website/issues/3882) at 2023-01-26 07:16 PM PST -plang-psm,2023-02-06T20:40:29Z,- plang-psm closed issue by PR 3930: [3840](https://github.com/hackforla/website/issues/3840#event-8451617741) at 2023-02-06 12:40 PM PST -plang-psm,2023-02-07T18:41:07Z,- plang-psm opened issue: [3948](https://github.com/hackforla/website/issues/3948) at 2023-02-07 10:41 AM PST -plang-psm,2023-02-07T22:11:38Z,- plang-psm opened issue: [3950](https://github.com/hackforla/website/issues/3950) at 2023-02-07 02:11 PM PST -plang-psm,2023-02-07T22:19:03Z,- plang-psm opened issue: [3951](https://github.com/hackforla/website/issues/3951) at 2023-02-07 02:19 PM PST -plang-psm,2023-02-07T22:35:05Z,- plang-psm opened issue: [3952](https://github.com/hackforla/website/issues/3952) at 2023-02-07 02:35 PM PST -plang-psm,2023-02-07T22:48:27Z,- plang-psm opened issue: [3953](https://github.com/hackforla/website/issues/3953) at 2023-02-07 02:48 PM PST -plang-psm,2023-02-14T00:30:09Z,- plang-psm commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1428916537) at 2023-02-13 04:30 PM PST -plang-psm,2023-02-14T03:40:56Z,- plang-psm commented on issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1429066289) at 2023-02-13 07:40 PM PST -plang-psm,2023-02-15T23:42:59Z,- plang-psm commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1432235972) at 2023-02-15 03:42 PM PST -plang-psm,2023-02-15T23:59:02Z,- plang-psm opened issue: [3986](https://github.com/hackforla/website/issues/3986) at 2023-02-15 03:59 PM PST -plang-psm,2023-02-16T00:09:00Z,- plang-psm opened issue: [3987](https://github.com/hackforla/website/issues/3987) at 2023-02-15 04:09 PM PST -plang-psm,2023-02-17T17:54:47Z,- plang-psm opened issue: [3997](https://github.com/hackforla/website/issues/3997) at 2023-02-17 09:54 AM PST -plang-psm,2023-02-17T18:00:54Z,- plang-psm opened issue: [3998](https://github.com/hackforla/website/issues/3998) at 2023-02-17 10:00 AM PST -plang-psm,2023-02-17T18:06:57Z,- plang-psm opened issue: [3999](https://github.com/hackforla/website/issues/3999) at 2023-02-17 10:06 AM PST -plang-psm,2023-02-17T18:32:21Z,- plang-psm opened issue: [4000](https://github.com/hackforla/website/issues/4000) at 2023-02-17 10:32 AM PST -plang-psm,2023-02-18T01:16:31Z,- plang-psm assigned to issue: [3959](https://github.com/hackforla/website/issues/3959) at 2023-02-17 05:16 PM PST -plang-psm,2023-02-18T01:18:31Z,- plang-psm commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1435438501) at 2023-02-17 05:18 PM PST -plang-psm,2023-02-19T05:05:21Z,- plang-psm opened issue: [4006](https://github.com/hackforla/website/issues/4006) at 2023-02-18 09:05 PM PST -plang-psm,2023-02-19T05:08:59Z,- plang-psm opened issue: [4007](https://github.com/hackforla/website/issues/4007) at 2023-02-18 09:08 PM PST -plang-psm,2023-02-19T05:13:05Z,- plang-psm opened issue: [4008](https://github.com/hackforla/website/issues/4008) at 2023-02-18 09:13 PM PST -plang-psm,2023-02-20T04:33:30Z,- plang-psm opened issue: [4012](https://github.com/hackforla/website/issues/4012) at 2023-02-19 08:33 PM PST -plang-psm,2023-02-20T04:37:28Z,- plang-psm opened issue: [4013](https://github.com/hackforla/website/issues/4013) at 2023-02-19 08:37 PM PST -plang-psm,2023-02-20T15:27:15Z,- plang-psm opened issue: [4014](https://github.com/hackforla/website/issues/4014) at 2023-02-20 07:27 AM PST -plang-psm,2023-02-20T15:40:55Z,- plang-psm opened issue: [4015](https://github.com/hackforla/website/issues/4015) at 2023-02-20 07:40 AM PST -plang-psm,2023-02-22T01:30:50Z,- plang-psm commented on issue: [3848](https://github.com/hackforla/website/issues/3848#issuecomment-1439311227) at 2023-02-21 05:30 PM PST -plang-psm,2023-02-22T01:30:51Z,- plang-psm closed issue as completed: [3848](https://github.com/hackforla/website/issues/3848#event-8576290487) at 2023-02-21 05:30 PM PST -plang-psm,2023-02-22T04:32:03Z,- plang-psm commented on pull request: [3962](https://github.com/hackforla/website/pull/3962#issuecomment-1439424868) at 2023-02-21 08:32 PM PST -plang-psm,2023-02-23T06:11:20Z,- plang-psm commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1441256838) at 2023-02-22 10:11 PM PST -plang-psm,2023-02-23T06:11:20Z,- plang-psm closed issue as completed: [3274](https://github.com/hackforla/website/issues/3274#event-8588122186) at 2023-02-22 10:11 PM PST -plang-psm,2023-02-23T06:49:30Z,- plang-psm opened issue: [4028](https://github.com/hackforla/website/issues/4028) at 2023-02-22 10:49 PM PST -plang-psm,2023-02-25T19:10:13Z,- plang-psm opened issue: [4045](https://github.com/hackforla/website/issues/4045) at 2023-02-25 11:10 AM PST -plang-psm,2023-02-25T19:14:10Z,- plang-psm opened issue: [4046](https://github.com/hackforla/website/issues/4046) at 2023-02-25 11:14 AM PST -plang-psm,2023-02-25T19:18:51Z,- plang-psm opened issue: [4047](https://github.com/hackforla/website/issues/4047) at 2023-02-25 11:18 AM PST -plang-psm,2023-02-25T22:48:18Z,- plang-psm commented on issue: [4012](https://github.com/hackforla/website/issues/4012#issuecomment-1445221249) at 2023-02-25 02:48 PM PST -plang-psm,2023-02-27T05:09:54Z,- plang-psm commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1445715829) at 2023-02-26 09:09 PM PST -plang-psm,2023-02-28T05:56:27Z,- plang-psm unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1445715829) at 2023-02-27 09:56 PM PST -plang-psm,2023-03-07T19:30:21Z,- plang-psm submitted pull request review: [4107](https://github.com/hackforla/website/pull/4107#pullrequestreview-1329367123) at 2023-03-07 11:30 AM PST -plang-psm,2023-03-07T19:30:37Z,- plang-psm closed issue by PR 4107: [3925](https://github.com/hackforla/website/issues/3925#event-8689636706) at 2023-03-07 11:30 AM PST -plang-psm,2023-03-11T22:56:38Z,- plang-psm submitted pull request review: [4147](https://github.com/hackforla/website/pull/4147#pullrequestreview-1335942893) at 2023-03-11 03:56 PM PDT -plang-psm,2023-03-11T22:56:50Z,- plang-psm closed issue by PR 4147: [4132](https://github.com/hackforla/website/issues/4132#event-8724766741) at 2023-03-11 03:56 PM PDT -plang-psm,2023-03-11T23:00:06Z,- plang-psm commented on pull request: [4144](https://github.com/hackforla/website/pull/4144#issuecomment-1465044989) at 2023-03-11 04:00 PM PDT -plang-psm,2023-03-11T23:11:01Z,- plang-psm submitted pull request review: [4144](https://github.com/hackforla/website/pull/4144#pullrequestreview-1335943858) at 2023-03-11 04:11 PM PDT -plang-psm,2023-03-28T22:14:10Z,- plang-psm submitted pull request review: [4295](https://github.com/hackforla/website/pull/4295#pullrequestreview-1361982290) at 2023-03-28 03:14 PM PDT -plang-psm,2023-03-28T22:14:18Z,- plang-psm closed issue by PR 4295: [4286](https://github.com/hackforla/website/issues/4286#event-8870068784) at 2023-03-28 03:14 PM PDT -plang-psm,2023-03-28T22:20:37Z,- plang-psm submitted pull request review: [4292](https://github.com/hackforla/website/pull/4292#pullrequestreview-1361989389) at 2023-03-28 03:20 PM PDT -plang-psm,2023-03-28T22:21:14Z,- plang-psm closed issue by PR 4292: [4287](https://github.com/hackforla/website/issues/4287#event-8870107831) at 2023-03-28 03:21 PM PDT -plang-psm,2023-03-28T22:51:40Z,- plang-psm submitted pull request review: [4290](https://github.com/hackforla/website/pull/4290#pullrequestreview-1362016526) at 2023-03-28 03:51 PM PDT -plang-psm,2023-03-28T22:51:53Z,- plang-psm closed issue by PR 4290: [4268](https://github.com/hackforla/website/issues/4268#event-8870290202) at 2023-03-28 03:51 PM PDT -PLoiya,2021-08-12T02:32:08Z,- PLoiya commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-897300219) at 2021-08-11 07:32 PM PDT -PLoiya,2021-08-12T02:34:52Z,- PLoiya commented on issue: [2064](https://github.com/hackforla/website/issues/2064#issuecomment-897301136) at 2021-08-11 07:34 PM PDT -pluto-bell,7200,SKILLS ISSUE -pluto-bell,2024-08-06T02:46:41Z,- pluto-bell opened issue: [7200](https://github.com/hackforla/website/issues/7200) at 2024-08-05 07:46 PM PDT -pluto-bell,2024-08-06T02:49:09Z,- pluto-bell assigned to issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270267390) at 2024-08-05 07:49 PM PDT -pluto-bell,2024-08-06T03:08:52Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270298357) at 2024-08-05 08:08 PM PDT -pluto-bell,2024-08-06T03:10:49Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270299753) at 2024-08-05 08:10 PM PDT -pluto-bell,2024-08-06T03:32:39Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270315721) at 2024-08-05 08:32 PM PDT -pluto-bell,2024-08-06T03:39:12Z,- pluto-bell assigned to issue: [7191](https://github.com/hackforla/website/issues/7191) at 2024-08-05 08:39 PM PDT -pluto-bell,2024-08-06T03:44:26Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2270324351) at 2024-08-05 08:44 PM PDT -pluto-bell,2024-08-06T19:06:06Z,- pluto-bell commented on issue: [7191](https://github.com/hackforla/website/issues/7191#issuecomment-2271958497) at 2024-08-06 12:06 PM PDT -pluto-bell,2024-08-06T19:07:48Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2271961375) at 2024-08-06 12:07 PM PDT -pluto-bell,2024-08-06T19:08:52Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2271963026) at 2024-08-06 12:08 PM PDT -pluto-bell,2024-08-06T19:14:23Z,- pluto-bell opened pull request: [7227](https://github.com/hackforla/website/pull/7227) at 2024-08-06 12:14 PM PDT -pluto-bell,2024-08-06T19:25:56Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2271991045) at 2024-08-06 12:25 PM PDT -pluto-bell,2024-08-09T02:00:40Z,- pluto-bell commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2277009978) at 2024-08-08 07:00 PM PDT -pluto-bell,2024-08-13T16:31:03Z,- pluto-bell commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2286659957) at 2024-08-13 09:31 AM PDT -pluto-bell,2024-08-14T01:31:08Z,- pluto-bell commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2287661476) at 2024-08-13 06:31 PM PDT -pluto-bell,2024-08-14T16:27:58Z,- pluto-bell pull request merged: [7227](https://github.com/hackforla/website/pull/7227#event-13883425869) at 2024-08-14 09:27 AM PDT -pluto-bell,2024-08-14T17:22:10Z,- pluto-bell opened issue: [7284](https://github.com/hackforla/website/issues/7284) at 2024-08-14 10:22 AM PDT -pluto-bell,2024-08-14T17:22:41Z,- pluto-bell closed issue as completed: [7284](https://github.com/hackforla/website/issues/7284#event-13884265772) at 2024-08-14 10:22 AM PDT -pluto-bell,2024-08-14T17:24:18Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2289397781) at 2024-08-14 10:24 AM PDT -pluto-bell,2024-08-14T17:35:01Z,- pluto-bell assigned to issue: [7254](https://github.com/hackforla/website/issues/7254) at 2024-08-14 10:35 AM PDT -pluto-bell,2024-08-14T17:56:39Z,- pluto-bell opened pull request: [7285](https://github.com/hackforla/website/pull/7285) at 2024-08-14 10:56 AM PDT -pluto-bell,2024-08-14T17:57:38Z,- pluto-bell commented on issue: [7254](https://github.com/hackforla/website/issues/7254#issuecomment-2289483214) at 2024-08-14 10:57 AM PDT -pluto-bell,2024-08-14T18:09:17Z,- pluto-bell submitted pull request review: [7255](https://github.com/hackforla/website/pull/7255#pullrequestreview-2238879293) at 2024-08-14 11:09 AM PDT -pluto-bell,2024-08-14T18:14:18Z,- pluto-bell submitted pull request review: [7257](https://github.com/hackforla/website/pull/7257#pullrequestreview-2238888030) at 2024-08-14 11:14 AM PDT -pluto-bell,2024-08-14T18:16:27Z,- pluto-bell submitted pull request review: [7258](https://github.com/hackforla/website/pull/7258#pullrequestreview-2238892317) at 2024-08-14 11:16 AM PDT -pluto-bell,2024-08-14T18:21:02Z,- pluto-bell submitted pull request review: [7261](https://github.com/hackforla/website/pull/7261#pullrequestreview-2238902809) at 2024-08-14 11:21 AM PDT -pluto-bell,2024-08-14T18:24:39Z,- pluto-bell submitted pull request review: [7263](https://github.com/hackforla/website/pull/7263#pullrequestreview-2238909928) at 2024-08-14 11:24 AM PDT -pluto-bell,2024-08-14T18:26:05Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2289551665) at 2024-08-14 11:26 AM PDT -pluto-bell,2024-08-14T20:45:16Z,- pluto-bell commented on pull request: [7285](https://github.com/hackforla/website/pull/7285#issuecomment-2289846142) at 2024-08-14 01:45 PM PDT -pluto-bell,2024-08-15T15:18:22Z,- pluto-bell pull request merged: [7285](https://github.com/hackforla/website/pull/7285#event-13897493715) at 2024-08-15 08:18 AM PDT -pluto-bell,2024-08-15T17:44:06Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2291841263) at 2024-08-15 10:44 AM PDT -pluto-bell,2024-08-15T17:45:32Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2291843311) at 2024-08-15 10:45 AM PDT -pluto-bell,2024-08-15T17:56:15Z,- pluto-bell assigned to issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2290397697) at 2024-08-15 10:56 AM PDT -pluto-bell,2024-08-15T18:03:08Z,- pluto-bell commented on issue: [7013](https://github.com/hackforla/website/issues/7013#issuecomment-2291870332) at 2024-08-15 11:03 AM PDT -pluto-bell,2024-08-15T18:40:52Z,- pluto-bell opened issue: [7295](https://github.com/hackforla/website/issues/7295) at 2024-08-15 11:40 AM PDT -pluto-bell,2024-08-15T18:40:56Z,- pluto-bell assigned to issue: [7295](https://github.com/hackforla/website/issues/7295) at 2024-08-15 11:40 AM PDT -pluto-bell,2024-08-15T18:48:39Z,- pluto-bell opened pull request: [7296](https://github.com/hackforla/website/pull/7296) at 2024-08-15 11:48 AM PDT -pluto-bell,2024-08-15T18:57:06Z,- pluto-bell submitted pull request review: [7280](https://github.com/hackforla/website/pull/7280#pullrequestreview-2241120164) at 2024-08-15 11:57 AM PDT -pluto-bell,2024-08-15T18:58:40Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2292000060) at 2024-08-15 11:58 AM PDT -pluto-bell,2024-08-18T04:41:09Z,- pluto-bell closed issue as completed: [7295](https://github.com/hackforla/website/issues/7295#event-13921159974) at 2024-08-17 09:41 PM PDT -pluto-bell,2024-08-18T04:42:45Z,- pluto-bell closed issue as not planned: [7295](https://github.com/hackforla/website/issues/7295#event-13921161854) at 2024-08-17 09:42 PM PDT -pluto-bell,2024-08-18T04:43:46Z,- pluto-bell commented on issue: [7295](https://github.com/hackforla/website/issues/7295#issuecomment-2295111612) at 2024-08-17 09:43 PM PDT -pluto-bell,2024-08-18T04:52:02Z,- pluto-bell commented on pull request: [7296](https://github.com/hackforla/website/pull/7296#issuecomment-2295113296) at 2024-08-17 09:52 PM PDT -pluto-bell,2024-08-25T15:14:35Z,- pluto-bell pull request merged: [7296](https://github.com/hackforla/website/pull/7296#event-14004588470) at 2024-08-25 08:14 AM PDT -pluto-bell,2024-08-26T20:53:10Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2311074585) at 2024-08-26 01:53 PM PDT -pluto-bell,2024-08-26T21:32:24Z,- pluto-bell submitted pull request review: [7343](https://github.com/hackforla/website/pull/7343#pullrequestreview-2261688007) at 2024-08-26 02:32 PM PDT -pluto-bell,2024-08-26T21:35:44Z,- pluto-bell submitted pull request review: [7340](https://github.com/hackforla/website/pull/7340#pullrequestreview-2261692196) at 2024-08-26 02:35 PM PDT -pluto-bell,2024-08-26T21:46:05Z,- pluto-bell opened issue: [7351](https://github.com/hackforla/website/issues/7351) at 2024-08-26 02:46 PM PDT -pluto-bell,2024-08-26T21:47:20Z,- pluto-bell assigned to issue: [7266](https://github.com/hackforla/website/issues/7266#issuecomment-2282834886) at 2024-08-26 02:47 PM PDT -pluto-bell,2024-08-26T21:50:32Z,- pluto-bell opened issue: [7352](https://github.com/hackforla/website/issues/7352) at 2024-08-26 02:50 PM PDT -pluto-bell,2024-08-26T21:51:42Z,- pluto-bell opened issue: [7353](https://github.com/hackforla/website/issues/7353) at 2024-08-26 02:51 PM PDT -pluto-bell,2024-08-26T21:53:21Z,- pluto-bell opened issue: [7354](https://github.com/hackforla/website/issues/7354) at 2024-08-26 02:53 PM PDT -pluto-bell,2024-08-26T21:54:17Z,- pluto-bell opened issue: [7355](https://github.com/hackforla/website/issues/7355) at 2024-08-26 02:54 PM PDT -pluto-bell,2024-08-26T21:55:35Z,- pluto-bell opened issue: [7356](https://github.com/hackforla/website/issues/7356) at 2024-08-26 02:55 PM PDT -pluto-bell,2024-08-26T21:56:24Z,- pluto-bell opened issue: [7357](https://github.com/hackforla/website/issues/7357) at 2024-08-26 02:56 PM PDT -pluto-bell,2024-08-26T21:58:56Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2311174260) at 2024-08-26 02:58 PM PDT -pluto-bell,2024-08-26T22:05:20Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2311183597) at 2024-08-26 03:05 PM PDT -pluto-bell,2024-08-30T18:35:57Z,- pluto-bell assigned to issue: [7304](https://github.com/hackforla/website/issues/7304) at 2024-08-30 11:35 AM PDT -pluto-bell,2024-08-30T18:36:13Z,- pluto-bell unassigned from issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2322125583) at 2024-08-30 11:36 AM PDT -pluto-bell,2024-09-07T19:57:47Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2336424656) at 2024-09-07 12:57 PM PDT -pluto-bell,2024-09-16T17:17:47Z,- pluto-bell assigned to issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2345176234) at 2024-09-16 10:17 AM PDT -pluto-bell,2024-09-16T17:30:49Z,- pluto-bell commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2353509713) at 2024-09-16 10:30 AM PDT -pluto-bell,2024-10-13T23:53:32Z,- pluto-bell commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2409375762) at 2024-10-13 04:53 PM PDT -pluto-bell,2024-10-14T00:33:18Z,- pluto-bell opened pull request: [7589](https://github.com/hackforla/website/pull/7589) at 2024-10-13 05:33 PM PDT -pluto-bell,2024-10-14T00:34:41Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2409489675) at 2024-10-13 05:34 PM PDT -pluto-bell,2024-10-14T22:40:33Z,- pluto-bell assigned to issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2371910784) at 2024-10-14 03:40 PM PDT -pluto-bell,2024-10-14T22:40:51Z,- pluto-bell unassigned from issue: [6709](https://github.com/hackforla/website/issues/6709#issuecomment-2412459670) at 2024-10-14 03:40 PM PDT -pluto-bell,2024-10-14T22:54:37Z,- pluto-bell submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2367774828) at 2024-10-14 03:54 PM PDT -pluto-bell,2024-10-14T23:12:57Z,- pluto-bell submitted pull request review: [7591](https://github.com/hackforla/website/pull/7591#pullrequestreview-2367794157) at 2024-10-14 04:12 PM PDT -pluto-bell,2024-10-16T04:42:52Z,- pluto-bell commented on pull request: [7589](https://github.com/hackforla/website/pull/7589#issuecomment-2415719306) at 2024-10-15 09:42 PM PDT -pluto-bell,2024-10-19T18:27:08Z,- pluto-bell pull request merged: [7589](https://github.com/hackforla/website/pull/7589#event-14737376695) at 2024-10-19 11:27 AM PDT -pluto-bell,2024-10-21T19:15:01Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2427519119) at 2024-10-21 12:15 PM PDT -pluto-bell,2024-10-21T19:38:49Z,- pluto-bell submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2383155757) at 2024-10-21 12:38 PM PDT -pluto-bell,2024-10-21T19:39:39Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2427565941) at 2024-10-21 12:39 PM PDT -pluto-bell,2024-10-24T18:25:54Z,- pluto-bell submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2393433147) at 2024-10-24 11:25 AM PDT -pluto-bell,2024-10-24T21:20:42Z,- pluto-bell commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2436358224) at 2024-10-24 02:20 PM PDT -pluto-bell,2024-11-01T18:47:17Z,- pluto-bell commented on issue: [7200](https://github.com/hackforla/website/issues/7200#issuecomment-2452409910) at 2024-11-01 11:47 AM PDT -pluto-bell,2024-11-19T00:45:04Z,- pluto-bell closed issue as completed: [7200](https://github.com/hackforla/website/issues/7200#event-15342212886) at 2024-11-18 04:45 PM PST -pm-daniel7,2025-05-18T22:17:51Z,- pm-daniel7 assigned to issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-05-18 03:17 PM PDT -PMKnight,3004,SKILLS ISSUE -PMKnight,2022-03-23T03:03:14Z,- PMKnight opened issue: [3004](https://github.com/hackforla/website/issues/3004) at 2022-03-22 08:03 PM PDT -PMKnight,2022-03-23T03:13:02Z,- PMKnight assigned to issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1075866062) at 2022-03-22 08:13 PM PDT -PMKnight,2022-04-10T17:56:50Z,- PMKnight assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1055941481) at 2022-04-10 10:56 AM PDT -PMKnight,2022-04-10T18:06:14Z,- PMKnight commented on issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1094338621) at 2022-04-10 11:06 AM PDT -PMKnight,2022-04-10T18:07:59Z,- PMKnight commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1094338869) at 2022-04-10 11:07 AM PDT -PMKnight,2022-04-11T22:41:09Z,- PMKnight opened pull request: [3044](https://github.com/hackforla/website/pull/3044) at 2022-04-11 03:41 PM PDT -PMKnight,2022-04-12T16:27:13Z,- PMKnight commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1096941513) at 2022-04-12 09:27 AM PDT -PMKnight,2022-05-28T07:28:33Z,- PMKnight pull request closed w/o merging: [3044](https://github.com/hackforla/website/pull/3044#event-6696585107) at 2022-05-28 12:28 AM PDT -PMKnight,2022-05-28T07:30:59Z,- PMKnight unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1119142364) at 2022-05-28 12:30 AM PDT -pogwon,2025-07-23T03:02:54Z,- pogwon opened issue: [8251](https://github.com/hackforla/website/issues/8251) at 2025-07-22 08:02 PM PDT -Pooja1672,2023-11-08T05:46:14Z,- Pooja1672 commented on issue: [5880](https://github.com/hackforla/website/issues/5880#issuecomment-1801132124) at 2023-11-07 09:46 PM PST -poornaraob,2020-03-17T03:05:16Z,- poornaraob commented on issue: [375](https://github.com/hackforla/website/issues/375#issuecomment-599853611) at 2020-03-16 08:05 PM PDT -poorvi4,2964,SKILLS ISSUE -poorvi4,2022-03-11T06:45:05Z,- poorvi4 opened issue: [2964](https://github.com/hackforla/website/issues/2964) at 2022-03-10 10:45 PM PST -poorvi4,2022-03-11T06:50:48Z,- poorvi4 assigned to issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1064822725) at 2022-03-10 10:50 PM PST -poorvi4,2022-03-15T04:57:16Z,- poorvi4 assigned to issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049454355) at 2022-03-14 09:57 PM PDT -poorvi4,2022-03-15T04:59:23Z,- poorvi4 unassigned from issue: [2812](https://github.com/hackforla/website/issues/2812#issuecomment-1049454355) at 2022-03-14 09:59 PM PDT -poorvi4,2022-03-15T05:10:33Z,- poorvi4 assigned to issue: [2795](https://github.com/hackforla/website/issues/2795#issuecomment-1045520603) at 2022-03-14 10:10 PM PDT -poorvi4,2022-03-15T05:53:21Z,- poorvi4 opened pull request: [2983](https://github.com/hackforla/website/pull/2983) at 2022-03-14 10:53 PM PDT -poorvi4,2022-03-15T05:56:43Z,- poorvi4 commented on issue: [2795](https://github.com/hackforla/website/issues/2795#issuecomment-1067592181) at 2022-03-14 10:56 PM PDT -poorvi4,2022-03-18T15:10:54Z,- poorvi4 pull request merged: [2983](https://github.com/hackforla/website/pull/2983#event-6266877772) at 2022-03-18 08:10 AM PDT -poorvi4,2022-03-22T05:34:20Z,- poorvi4 submitted pull request review: [2979](https://github.com/hackforla/website/pull/2979#pullrequestreview-916680169) at 2022-03-21 10:34 PM PDT -poorvi4,2022-03-22T05:40:19Z,- poorvi4 assigned to issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1058629344) at 2022-03-21 10:40 PM PDT -poorvi4,2022-03-22T05:42:23Z,- poorvi4 commented on issue: [2927](https://github.com/hackforla/website/issues/2927#issuecomment-1074748323) at 2022-03-21 10:42 PM PDT -poorvi4,2022-03-22T06:01:46Z,- poorvi4 opened pull request: [3000](https://github.com/hackforla/website/pull/3000) at 2022-03-21 11:01 PM PDT -poorvi4,2022-03-22T18:24:22Z,- poorvi4 pull request merged: [3000](https://github.com/hackforla/website/pull/3000#event-6285813739) at 2022-03-22 11:24 AM PDT -poorvi4,2022-03-28T06:09:21Z,- poorvi4 assigned to issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1079776078) at 2022-03-27 11:09 PM PDT -poorvi4,2022-03-28T06:14:54Z,- poorvi4 commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1080242422) at 2022-03-27 11:14 PM PDT -poorvi4,2022-03-28T06:27:32Z,- poorvi4 unassigned from issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1080250796) at 2022-03-27 11:27 PM PDT -poorvi4,2022-03-28T06:34:51Z,- poorvi4 commented on issue: [3016](https://github.com/hackforla/website/issues/3016#issuecomment-1080255931) at 2022-03-27 11:34 PM PDT -poorvi4,2022-03-28T06:36:42Z,- poorvi4 assigned to issue: [2764](https://github.com/hackforla/website/issues/2764#issuecomment-1035854914) at 2022-03-27 11:36 PM PDT -poorvi4,2022-03-28T06:37:53Z,- poorvi4 unassigned from issue: [2764](https://github.com/hackforla/website/issues/2764#issuecomment-1035854914) at 2022-03-27 11:37 PM PDT -poorvi4,2022-03-28T06:51:06Z,- poorvi4 assigned to issue: [2939](https://github.com/hackforla/website/issues/2939#issuecomment-1061530603) at 2022-03-27 11:51 PM PDT -poorvi4,2022-03-28T06:52:30Z,- poorvi4 commented on issue: [2939](https://github.com/hackforla/website/issues/2939#issuecomment-1080265999) at 2022-03-27 11:52 PM PDT -poorvi4,2022-04-07T06:36:19Z,- poorvi4 commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1091133534) at 2022-04-06 11:36 PM PDT -poorvi4,2022-04-10T23:41:53Z,- poorvi4 opened pull request: [3042](https://github.com/hackforla/website/pull/3042) at 2022-04-10 04:41 PM PDT -poorvi4,2022-04-13T02:39:20Z,- poorvi4 assigned to issue: [2221](https://github.com/hackforla/website/issues/2221) at 2022-04-12 07:39 PM PDT -poorvi4,2022-04-13T02:44:12Z,- poorvi4 commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1097493632) at 2022-04-12 07:44 PM PDT -poorvi4,2022-04-18T15:30:46Z,- poorvi4 pull request merged: [3042](https://github.com/hackforla/website/pull/3042#event-6448677544) at 2022-04-18 08:30 AM PDT -poorvi4,2022-04-24T00:41:32Z,- poorvi4 commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1107674235) at 2022-04-23 05:41 PM PDT -poorvi4,2022-04-24T00:48:28Z,- poorvi4 assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1003769340) at 2022-04-23 05:48 PM PDT -poorvi4,2022-04-24T00:54:48Z,- poorvi4 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1107675648) at 2022-04-23 05:54 PM PDT -poorvi4,2022-05-07T20:40:15Z,- poorvi4 unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1120285387) at 2022-05-07 01:40 PM PDT -poorvi4,2022-05-07T20:58:13Z,- poorvi4 unassigned from issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1120289117) at 2022-05-07 01:58 PM PDT -poorvi4,2022-05-28T23:15:25Z,- poorvi4 commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1140342150) at 2022-05-28 04:15 PM PDT -poorvi4,2022-07-18T01:13:18Z,- poorvi4 assigned to issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-912687694) at 2022-07-17 06:13 PM PDT -poorvi4,2022-07-18T01:15:55Z,- poorvi4 commented on issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1186661978) at 2022-07-17 06:15 PM PDT -poorvi4,2022-07-20T03:34:52Z,- poorvi4 opened pull request: [3405](https://github.com/hackforla/website/pull/3405) at 2022-07-19 08:34 PM PDT -poorvi4,2022-07-20T03:38:45Z,- poorvi4 pull request closed w/o merging: [3405](https://github.com/hackforla/website/pull/3405#event-7025671766) at 2022-07-19 08:38 PM PDT -poorvi4,2022-07-20T03:39:21Z,- poorvi4 commented on pull request: [3405](https://github.com/hackforla/website/pull/3405#issuecomment-1189781531) at 2022-07-19 08:39 PM PDT -poorvi4,2022-07-22T07:43:03Z,- poorvi4 commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1192282401) at 2022-07-22 12:43 AM PDT -poorvi4,2022-07-25T04:44:46Z,- poorvi4 commented on pull request: [3394](https://github.com/hackforla/website/pull/3394#issuecomment-1193572858) at 2022-07-24 09:44 PM PDT -poorvi4,2022-07-25T05:24:58Z,- poorvi4 opened pull request: [3426](https://github.com/hackforla/website/pull/3426) at 2022-07-24 10:24 PM PDT -poorvi4,2022-07-27T02:40:39Z,- poorvi4 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1196202059) at 2022-07-26 07:40 PM PDT -poorvi4,2022-07-31T20:20:38Z,- poorvi4 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1200493184) at 2022-07-31 01:20 PM PDT -poorvi4,2022-07-31T21:02:01Z,- poorvi4 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1200499660) at 2022-07-31 02:02 PM PDT -poorvi4,2022-08-26T06:24:46Z,- poorvi4 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1228104084) at 2022-08-25 11:24 PM PDT -poorvi4,2022-08-30T03:27:19Z,- poorvi4 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1231096691) at 2022-08-29 08:27 PM PDT -poorvi4,2022-11-20T17:53:06Z,- poorvi4 pull request closed w/o merging: [3426](https://github.com/hackforla/website/pull/3426#event-7851917166) at 2022-11-20 09:53 AM PST -poorvi4,2023-03-28T00:23:02Z,- poorvi4 unassigned from issue: [2220](https://github.com/hackforla/website/issues/2220#issuecomment-1485584784) at 2023-03-27 05:23 PM PDT -PoppaRainmaker,5082,SKILLS ISSUE -PoppaRainmaker,2023-07-26T03:08:53Z,- PoppaRainmaker opened issue: [5082](https://github.com/hackforla/website/issues/5082) at 2023-07-25 08:08 PM PDT -PoppaRainmaker,2023-07-26T03:08:53Z,- PoppaRainmaker assigned to issue: [5082](https://github.com/hackforla/website/issues/5082) at 2023-07-25 08:08 PM PDT -PoppaRainmaker,2023-07-28T00:55:50Z,- PoppaRainmaker assigned to issue: [4799](https://github.com/hackforla/website/issues/4799) at 2023-07-27 05:55 PM PDT -PoppaRainmaker,2023-08-01T04:06:36Z,- PoppaRainmaker opened pull request: [5124](https://github.com/hackforla/website/pull/5124) at 2023-07-31 09:06 PM PDT -PoppaRainmaker,2023-08-12T02:00:09Z,- PoppaRainmaker commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1675615671) at 2023-08-11 07:00 PM PDT -PoppaRainmaker,2023-08-12T02:04:39Z,- PoppaRainmaker commented on pull request: [5124](https://github.com/hackforla/website/pull/5124#issuecomment-1675617739) at 2023-08-11 07:04 PM PDT -PoppaRainmaker,2023-08-16T06:05:37Z,- PoppaRainmaker pull request merged: [5124](https://github.com/hackforla/website/pull/5124#event-10104100392) at 2023-08-15 11:05 PM PDT -pradeeptosarkar,2023-09-05T12:19:54Z,- pradeeptosarkar opened pull request: [5446](https://github.com/hackforla/website/pull/5446) at 2023-09-05 05:19 AM PDT -pradeeptosarkar,2023-09-05T12:20:58Z,- pradeeptosarkar commented on issue: [5409](https://github.com/hackforla/website/issues/5409#issuecomment-1706517458) at 2023-09-05 05:20 AM PDT -pradeeptosarkar,2023-09-05T15:59:53Z,- pradeeptosarkar pull request closed w/o merging: [5446](https://github.com/hackforla/website/pull/5446#event-10285554037) at 2023-09-05 08:59 AM PDT -pranit-yawalkar,2023-04-05T12:08:46Z,- pranit-yawalkar commented on issue: [4422](https://github.com/hackforla/website/issues/4422#issuecomment-1497382137) at 2023-04-05 05:08 AM PDT -pranit-yawalkar,2023-04-05T12:31:31Z,- pranit-yawalkar commented on issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1497410897) at 2023-04-05 05:31 AM PDT -pranjaliseth,6118,SKILLS ISSUE -pranjaliseth,2024-01-17T04:04:18Z,- pranjaliseth opened issue: [6118](https://github.com/hackforla/website/issues/6118) at 2024-01-16 08:04 PM PST -pranjaliseth,2024-01-17T04:06:37Z,- pranjaliseth assigned to issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1894902675) at 2024-01-16 08:06 PM PST -pranjaliseth,2024-03-01T05:30:14Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-1972538124) at 2024-02-29 09:30 PM PST -pranjaliseth,2024-03-18T22:40:39Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2005173922) at 2024-03-18 03:40 PM PDT -pranjaliseth,2024-04-10T04:57:43Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2046539873) at 2024-04-09 09:57 PM PDT -pranjaliseth,2024-04-29T00:37:22Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2081723583) at 2024-04-28 05:37 PM PDT -pranjaliseth,2024-05-12T01:51:11Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2106086838) at 2024-05-11 06:51 PM PDT -pranjaliseth,2024-06-02T16:37:41Z,- pranjaliseth commented on issue: [6118](https://github.com/hackforla/website/issues/6118#issuecomment-2143933850) at 2024-06-02 09:37 AM PDT -pras4u,2020-12-23T05:48:09Z,- pras4u assigned to issue: [957](https://github.com/hackforla/website/issues/957) at 2020-12-22 09:48 PM PST -pras4u,2021-01-06T02:55:58Z,- pras4u commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-755043611) at 2021-01-05 06:55 PM PST -pras4u,2021-01-08T04:15:30Z,- pras4u commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-756535668) at 2021-01-07 08:15 PM PST -pras4u,2021-01-15T03:09:35Z,- pras4u commented on issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-760615970) at 2021-01-14 07:09 PM PST -pras4u,2021-01-24T07:53:55Z,- pras4u unassigned from issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-766306063) at 2021-01-23 11:53 PM PST -pravintargaryen,2024-01-03T17:05:06Z,- pravintargaryen commented on issue: [6023](https://github.com/hackforla/website/issues/6023#issuecomment-1875690198) at 2024-01-03 09:05 AM PST -praytoo,8190,SKILLS ISSUE -praytoo,2025-06-17T03:43:03Z,- praytoo opened issue: [8190](https://github.com/hackforla/website/issues/8190) at 2025-06-16 08:43 PM PDT -praytoo,2025-06-17T03:43:26Z,- praytoo assigned to issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2978823498) at 2025-06-16 08:43 PM PDT -praytoo,2025-06-19T02:26:03Z,- praytoo assigned to issue: [8010](https://github.com/hackforla/website/issues/8010) at 2025-06-18 07:26 PM PDT -praytoo,2025-06-19T03:17:37Z,- praytoo opened pull request: [8197](https://github.com/hackforla/website/pull/8197) at 2025-06-18 08:17 PM PDT -praytoo,2025-06-19T03:19:51Z,- praytoo closed issue by PR 8197: [8010](https://github.com/hackforla/website/issues/8010#event-18221732673) at 2025-06-18 08:19 PM PDT -praytoo,2025-06-19T16:26:08Z,- praytoo commented on issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2988639219) at 2025-06-19 09:26 AM PDT -praytoo,2025-06-19T16:49:27Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988685297) at 2025-06-19 09:49 AM PDT -praytoo,2025-06-19T16:52:18Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988690290) at 2025-06-19 09:52 AM PDT -praytoo,2025-06-19T17:00:26Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2988704084) at 2025-06-19 10:00 AM PDT -praytoo,2025-06-19T17:25:59Z,- praytoo opened pull request: [8198](https://github.com/hackforla/website/pull/8198) at 2025-06-19 10:25 AM PDT -praytoo,2025-06-19T17:31:20Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2988772550) at 2025-06-19 10:31 AM PDT -praytoo,2025-06-20T16:41:30Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2992226511) at 2025-06-20 09:41 AM PDT -praytoo,2025-06-20T16:55:40Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992259410) at 2025-06-20 09:55 AM PDT -praytoo,2025-06-20T18:05:34Z,- praytoo pull request closed w/o merging: [8198](https://github.com/hackforla/website/pull/8198#event-18251840346) at 2025-06-20 11:05 AM PDT -praytoo,2025-06-20T18:06:30Z,- praytoo commented on pull request: [8198](https://github.com/hackforla/website/pull/8198#issuecomment-2992419093) at 2025-06-20 11:06 AM PDT -praytoo,2025-06-21T17:03:28Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993675781) at 2025-06-21 10:03 AM PDT -praytoo,2025-06-21T18:37:55Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993715971) at 2025-06-21 11:37 AM PDT -praytoo,2025-06-22T01:40:30Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-2993866836) at 2025-06-21 06:40 PM PDT -praytoo,2025-06-22T17:18:39Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-2994332057) at 2025-06-22 10:18 AM PDT -praytoo,2025-06-24T22:00:52Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002008932) at 2025-06-24 03:00 PM PDT -praytoo,2025-06-25T03:14:19Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002735289) at 2025-06-24 08:14 PM PDT -praytoo,2025-06-25T03:14:42Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3002736108) at 2025-06-24 08:14 PM PDT -praytoo,2025-06-26T16:59:26Z,- praytoo commented on pull request: [8197](https://github.com/hackforla/website/pull/8197#issuecomment-3009140601) at 2025-06-26 09:59 AM PDT -praytoo,2025-06-27T15:22:53Z,- praytoo pull request merged: [8197](https://github.com/hackforla/website/pull/8197#event-18359871783) at 2025-06-27 08:22 AM PDT -praytoo,2025-06-28T18:43:10Z,- praytoo assigned to issue: [7380](https://github.com/hackforla/website/issues/7380) at 2025-06-28 11:43 AM PDT -praytoo,2025-06-28T20:21:42Z,- praytoo commented on issue: [7380](https://github.com/hackforla/website/issues/7380#issuecomment-3016014870) at 2025-06-28 01:21 PM PDT -praytoo,2025-06-28T20:32:09Z,- praytoo opened pull request: [8235](https://github.com/hackforla/website/pull/8235) at 2025-06-28 01:32 PM PDT -praytoo,2025-06-28T20:41:53Z,- praytoo commented on issue: [8190](https://github.com/hackforla/website/issues/8190#issuecomment-3016022495) at 2025-06-28 01:41 PM PDT -praytoo,2025-06-29T23:46:37Z,- praytoo commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3017284051) at 2025-06-29 04:46 PM PDT -praytoo,2025-07-01T01:10:51Z,- praytoo commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3021341054) at 2025-06-30 06:10 PM PDT -praytoo,2025-07-02T16:17:52Z,- praytoo pull request merged: [8235](https://github.com/hackforla/website/pull/8235#event-18435495217) at 2025-07-02 09:17 AM PDT -praytoo,2025-07-04T18:57:09Z,- praytoo assigned to issue: [7610](https://github.com/hackforla/website/issues/7610) at 2025-07-04 11:57 AM PDT -praytoo,2025-07-04T18:58:23Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037070572) at 2025-07-04 11:58 AM PDT -praytoo,2025-07-04T19:22:09Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3037105300) at 2025-07-04 12:22 PM PDT -praytoo,2025-07-17T03:39:07Z,- praytoo commented on issue: [7610](https://github.com/hackforla/website/issues/7610#issuecomment-3082341995) at 2025-07-16 08:39 PM PDT -priyanka02art,2024-10-29T22:04:21Z,- priyanka02art opened issue: [7662](https://github.com/hackforla/website/issues/7662) at 2024-10-29 03:04 PM PDT -priyanka02art,2024-10-29T22:17:00Z,- priyanka02art opened issue: [7663](https://github.com/hackforla/website/issues/7663) at 2024-10-29 03:17 PM PDT -priyanka02art,2024-10-29T22:27:23Z,- priyanka02art commented on issue: [7663](https://github.com/hackforla/website/issues/7663#issuecomment-2445441597) at 2024-10-29 03:27 PM PDT -priyanka02art,2024-10-29T22:28:56Z,- priyanka02art opened issue: [7664](https://github.com/hackforla/website/issues/7664) at 2024-10-29 03:28 PM PDT -priyanka02art,2024-10-29T22:36:40Z,- priyanka02art commented on issue: [7664](https://github.com/hackforla/website/issues/7664#issuecomment-2445452188) at 2024-10-29 03:36 PM PDT -priyanka02art,2024-10-29T22:54:55Z,- priyanka02art opened issue: [7666](https://github.com/hackforla/website/issues/7666) at 2024-10-29 03:54 PM PDT -priyanka02art,2024-10-29T23:09:30Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2445487004) at 2024-10-29 04:09 PM PDT -priyanka02art,2024-10-29T23:26:48Z,- priyanka02art opened issue: [7667](https://github.com/hackforla/website/issues/7667) at 2024-10-29 04:26 PM PDT -priyanka02art,2024-10-31T01:44:05Z,- priyanka02art opened issue: [7670](https://github.com/hackforla/website/issues/7670) at 2024-10-30 06:44 PM PDT -priyanka02art,2024-10-31T01:51:36Z,- priyanka02art commented on issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2448855690) at 2024-10-30 06:51 PM PDT -priyanka02art,2024-10-31T01:53:51Z,- priyanka02art opened issue: [7671](https://github.com/hackforla/website/issues/7671) at 2024-10-30 06:53 PM PDT -priyanka02art,2024-10-31T01:57:09Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2448860836) at 2024-10-30 06:57 PM PDT -priyanka02art,2024-10-31T01:59:19Z,- priyanka02art opened issue: [7672](https://github.com/hackforla/website/issues/7672) at 2024-10-30 06:59 PM PDT -priyanka02art,2024-10-31T02:13:02Z,- priyanka02art commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2448880563) at 2024-10-30 07:13 PM PDT -priyanka02art,2024-10-31T02:15:17Z,- priyanka02art opened issue: [7673](https://github.com/hackforla/website/issues/7673) at 2024-10-30 07:15 PM PDT -priyanka02art,2024-10-31T02:17:37Z,- priyanka02art opened issue: [7674](https://github.com/hackforla/website/issues/7674) at 2024-10-30 07:17 PM PDT -priyanka02art,2024-10-31T02:22:08Z,- priyanka02art commented on issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2448889060) at 2024-10-30 07:22 PM PDT -priyanka02art,2024-10-31T02:24:11Z,- priyanka02art opened issue: [7675](https://github.com/hackforla/website/issues/7675) at 2024-10-30 07:24 PM PDT -priyanka02art,2024-10-31T02:27:55Z,- priyanka02art commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2448894264) at 2024-10-30 07:27 PM PDT -priyanka02art,2024-10-31T02:52:24Z,- priyanka02art opened issue: [7676](https://github.com/hackforla/website/issues/7676) at 2024-10-30 07:52 PM PDT -priyanka02art,2024-10-31T02:55:12Z,- priyanka02art commented on issue: [7676](https://github.com/hackforla/website/issues/7676#issuecomment-2448918073) at 2024-10-30 07:55 PM PDT -priyanka02art,2024-10-31T02:55:40Z,- priyanka02art opened issue: [7677](https://github.com/hackforla/website/issues/7677) at 2024-10-30 07:55 PM PDT -priyanka02art,2024-10-31T03:05:51Z,- priyanka02art commented on issue: [7677](https://github.com/hackforla/website/issues/7677#issuecomment-2448926875) at 2024-10-30 08:05 PM PDT -priyanka02art,2024-10-31T03:11:54Z,- priyanka02art opened issue: [7678](https://github.com/hackforla/website/issues/7678) at 2024-10-30 08:11 PM PDT -priyanka02art,2024-10-31T07:45:06Z,- priyanka02art opened issue: [7679](https://github.com/hackforla/website/issues/7679) at 2024-10-31 12:45 AM PDT -priyanka02art,2024-10-31T07:50:21Z,- priyanka02art commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2449248779) at 2024-10-31 12:50 AM PDT -priyanka02art,2024-10-31T07:51:10Z,- priyanka02art opened issue: [7680](https://github.com/hackforla/website/issues/7680) at 2024-10-31 12:51 AM PDT -priyanka02art,2024-10-31T08:15:33Z,- priyanka02art commented on issue: [7680](https://github.com/hackforla/website/issues/7680#issuecomment-2449285602) at 2024-10-31 01:15 AM PDT -priyanka02art,2024-11-12T20:17:34Z,- priyanka02art commented on issue: [7664](https://github.com/hackforla/website/issues/7664#issuecomment-2471496092) at 2024-11-12 12:17 PM PST -priyanka02art,2024-11-12T20:23:38Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2471511005) at 2024-11-12 12:23 PM PST -priyanka02art,2025-02-11T22:05:20Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2652170176) at 2025-02-11 02:05 PM PST -priyanka02art,2025-02-12T19:45:14Z,- priyanka02art assigned to issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2652170176) at 2025-02-12 11:45 AM PST -priyanka02art,2025-03-05T21:18:45Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2702101760) at 2025-03-05 01:18 PM PST -priyanka02art,2025-03-11T03:26:27Z,- priyanka02art commented on issue: [7667](https://github.com/hackforla/website/issues/7667#issuecomment-2712475094) at 2025-03-10 08:26 PM PDT -priyanka02art,2025-03-11T08:46:35Z,- priyanka02art commented on issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2713184744) at 2025-03-11 01:46 AM PDT -priyanka02art,2025-03-11T17:24:02Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2715144631) at 2025-03-11 10:24 AM PDT -priyanka02art,2025-03-11T20:28:49Z,- priyanka02art commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2715632987) at 2025-03-11 01:28 PM PDT -priyanka02art,2025-03-11T20:44:36Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2715663713) at 2025-03-11 01:44 PM PDT -priyanka02art,2025-03-11T20:46:48Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2715668050) at 2025-03-11 01:46 PM PDT -priyanka02art,2025-03-11T20:50:16Z,- priyanka02art commented on issue: [7666](https://github.com/hackforla/website/issues/7666#issuecomment-2715674674) at 2025-03-11 01:50 PM PDT -priyanka02art,2025-03-11T21:02:29Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2715701442) at 2025-03-11 02:02 PM PDT -priyanka02art,2025-03-24T19:52:09Z,- priyanka02art commented on issue: [7673](https://github.com/hackforla/website/issues/7673#issuecomment-2749239177) at 2025-03-24 12:52 PM PDT -priyanka02art,2025-03-24T21:28:49Z,- priyanka02art commented on issue: [7674](https://github.com/hackforla/website/issues/7674#issuecomment-2749442492) at 2025-03-24 02:28 PM PDT -priyanka02art,2025-03-28T09:14:43Z,- priyanka02art commented on issue: [7662](https://github.com/hackforla/website/issues/7662#issuecomment-2760637960) at 2025-03-28 02:14 AM PDT -priyanka02art,2025-03-28T09:46:00Z,- priyanka02art commented on issue: [7663](https://github.com/hackforla/website/issues/7663#issuecomment-2760741196) at 2025-03-28 02:46 AM PDT -priyanka02art,2025-03-28T09:51:12Z,- priyanka02art commented on issue: [7676](https://github.com/hackforla/website/issues/7676#issuecomment-2760760771) at 2025-03-28 02:51 AM PDT -priyanka02art,2025-03-28T10:05:13Z,- priyanka02art commented on issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-03-28 03:05 AM PDT -priyanka02art,2025-04-01T20:15:14Z,- priyanka02art commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2770580154) at 2025-04-01 01:15 PM PDT -priyanka02art,2025-04-07T01:12:14Z,- priyanka02art commented on issue: [7675](https://github.com/hackforla/website/issues/7675#issuecomment-2781796949) at 2025-04-06 06:12 PM PDT -priyanka02art,2025-04-07T07:07:18Z,- priyanka02art commented on issue: [7678](https://github.com/hackforla/website/issues/7678#issuecomment-2782238591) at 2025-04-07 12:07 AM PDT -priyanka02art,2025-04-23T19:01:11Z,- priyanka02art commented on issue: [7680](https://github.com/hackforla/website/issues/7680#issuecomment-2825257767) at 2025-04-23 12:01 PM PDT -priyanka02art,2025-04-29T20:12:50Z,- priyanka02art commented on issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2840129258) at 2025-04-29 01:12 PM PDT -priyanka02art,2025-05-14T21:02:14Z,- priyanka02art assigned to issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-05-14 02:02 PM PDT -priyanka02art,2025-05-14T21:05:25Z,- priyanka02art unassigned from issue: [7904](https://github.com/hackforla/website/issues/7904#issuecomment-2760803542) at 2025-05-14 02:05 PM PDT -priyanka02art,2025-06-11T20:20:50Z,- priyanka02art commented on issue: [7671](https://github.com/hackforla/website/issues/7671#issuecomment-2964042676) at 2025-06-11 01:20 PM PDT -priyanka02art,2025-06-11T20:20:50Z,- priyanka02art closed issue as completed: [7671](https://github.com/hackforla/website/issues/7671#event-18101301838) at 2025-06-11 01:20 PM PDT -priyanka02art,2025-06-11T20:24:52Z,- priyanka02art reopened issue: [7671](https://github.com/hackforla/website/issues/7671#event-18101301838) at 2025-06-11 01:24 PM PDT -priyanka02art,2025-06-11T20:31:56Z,- priyanka02art commented on issue: [7672](https://github.com/hackforla/website/issues/7672#issuecomment-2964070445) at 2025-06-11 01:31 PM PDT -priyanka02art,2025-06-11T20:35:22Z,- priyanka02art assigned to issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-06-11 01:35 PM PDT -Priyanshu-2005,2024-09-11T19:46:25Z,- Priyanshu-2005 commented on issue: [7414](https://github.com/hackforla/website/issues/7414#issuecomment-2344571133) at 2024-09-11 12:46 PM PDT -Priyanshu-2005,2024-09-11T19:47:08Z,- Priyanshu-2005 commented on issue: [7413](https://github.com/hackforla/website/issues/7413#issuecomment-2344572270) at 2024-09-11 12:47 PM PDT -priyatalwar,2022-02-09T06:40:58Z,- priyatalwar opened issue: [2758](https://github.com/hackforla/website/issues/2758) at 2022-02-08 10:40 PM PST -priyatalwar,2022-02-09T17:22:12Z,- priyatalwar commented on issue: [2758](https://github.com/hackforla/website/issues/2758#issuecomment-1034008129) at 2022-02-09 09:22 AM PST -priyatalwar,2023-07-03T17:41:41Z,- priyatalwar commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1618933923) at 2023-07-03 10:41 AM PDT -Providence-o,2022-01-11T04:18:40Z,- Providence-o assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -Providence-o,2022-01-11T04:19:47Z,- Providence-o assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1007193548) at 2022-01-10 08:19 PM PST -Providence-o,2022-01-11T04:20:32Z,- Providence-o assigned to issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2022-01-10 08:20 PM PST -Providence-o,2022-01-18T20:02:31Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1015789115) at 2022-01-18 12:02 PM PST -Providence-o,2022-01-23T20:01:16Z,- Providence-o assigned to issue: [2688](https://github.com/hackforla/website/issues/2688) at 2022-01-23 12:01 PM PST -Providence-o,2022-01-25T18:01:24Z,- Providence-o commented on issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021461806) at 2022-01-25 10:01 AM PST -Providence-o,2022-01-25T18:28:19Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1021484821) at 2022-01-25 10:28 AM PST -Providence-o,2022-01-25T18:51:40Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1021503063) at 2022-01-25 10:51 AM PST -Providence-o,2022-01-27T04:17:34Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1022833547) at 2022-01-26 08:17 PM PST -Providence-o,2022-01-27T04:27:03Z,- Providence-o commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1022837320) at 2022-01-26 08:27 PM PST -Providence-o,2022-01-29T19:46:26Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1024975090) at 2022-01-29 11:46 AM PST -Providence-o,2022-02-01T17:38:10Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1027110714) at 2022-02-01 09:38 AM PST -Providence-o,2022-02-01T17:50:44Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1027121664) at 2022-02-01 09:50 AM PST -Providence-o,2022-02-02T20:04:34Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1028311360) at 2022-02-02 12:04 PM PST -Providence-o,2022-02-05T20:14:35Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1030691903) at 2022-02-05 12:14 PM PST -Providence-o,2022-02-05T20:34:17Z,- Providence-o opened issue: [2739](https://github.com/hackforla/website/issues/2739) at 2022-02-05 12:34 PM PST -Providence-o,2022-02-05T20:34:17Z,- Providence-o assigned to issue: [2739](https://github.com/hackforla/website/issues/2739) at 2022-02-05 12:34 PM PST -Providence-o,2022-02-05T20:43:47Z,- Providence-o opened issue: [2740](https://github.com/hackforla/website/issues/2740) at 2022-02-05 12:43 PM PST -Providence-o,2022-02-05T20:43:48Z,- Providence-o assigned to issue: [2740](https://github.com/hackforla/website/issues/2740) at 2022-02-05 12:43 PM PST -Providence-o,2022-02-05T21:19:57Z,- Providence-o commented on issue: [2731](https://github.com/hackforla/website/issues/2731#issuecomment-1030700685) at 2022-02-05 01:19 PM PST -Providence-o,2022-02-06T20:16:07Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1030906027) at 2022-02-06 12:16 PM PST -Providence-o,2022-02-08T18:06:02Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1032909244) at 2022-02-08 10:06 AM PST -Providence-o,2022-02-08T19:13:33Z,- Providence-o commented on issue: [2747](https://github.com/hackforla/website/issues/2747#issuecomment-1032968237) at 2022-02-08 11:13 AM PST -Providence-o,2022-02-08T19:18:46Z,- Providence-o commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1032972780) at 2022-02-08 11:18 AM PST -Providence-o,2022-02-08T19:20:30Z,- Providence-o commented on issue: [2749](https://github.com/hackforla/website/issues/2749#issuecomment-1032974330) at 2022-02-08 11:20 AM PST -Providence-o,2022-02-08T19:22:11Z,- Providence-o commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1032975812) at 2022-02-08 11:22 AM PST -Providence-o,2022-02-12T14:52:12Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1037246996) at 2022-02-12 06:52 AM PST -Providence-o,2022-02-12T15:04:11Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1037250415) at 2022-02-12 07:04 AM PST -Providence-o,2022-02-12T17:31:17Z,- Providence-o commented on issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1037333994) at 2022-02-12 09:31 AM PST -Providence-o,2022-02-13T01:48:00Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1037660748) at 2022-02-12 05:48 PM PST -Providence-o,2022-02-19T20:33:07Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1046097914) at 2022-02-19 12:33 PM PST -Providence-o,2022-02-19T21:14:17Z,- Providence-o commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1046104161) at 2022-02-19 01:14 PM PST -Providence-o,2022-03-01T18:32:06Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1055736270) at 2022-03-01 10:32 AM PST -Providence-o,2022-03-01T18:33:33Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1055737389) at 2022-03-01 10:33 AM PST -Providence-o,2022-03-01T18:55:10Z,- Providence-o opened issue: [2908](https://github.com/hackforla/website/issues/2908) at 2022-03-01 10:55 AM PST -Providence-o,2022-03-01T19:10:45Z,- Providence-o commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1055768853) at 2022-03-01 11:10 AM PST -Providence-o,2022-03-01T19:21:02Z,- Providence-o commented on issue: [2751](https://github.com/hackforla/website/issues/2751#issuecomment-1055777159) at 2022-03-01 11:21 AM PST -Providence-o,2022-03-02T11:57:41Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1056848089) at 2022-03-02 03:57 AM PST -Providence-o,2022-03-03T18:12:32Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1058340319) at 2022-03-03 10:12 AM PST -Providence-o,2022-03-03T21:39:45Z,- Providence-o assigned to issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1055753742) at 2022-03-03 01:39 PM PST -Providence-o,2022-03-03T22:58:40Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1058608382) at 2022-03-03 02:58 PM PST -Providence-o,2022-03-05T16:26:40Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1059791807) at 2022-03-05 08:26 AM PST -Providence-o,2022-03-08T17:25:26Z,- Providence-o commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1062021273) at 2022-03-08 09:25 AM PST -Providence-o,2022-03-08T17:37:21Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1062031897) at 2022-03-08 09:37 AM PST -Providence-o,2022-03-08T18:39:57Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1062087453) at 2022-03-08 10:39 AM PST -Providence-o,2022-03-10T20:34:16Z,- Providence-o opened issue: [2958](https://github.com/hackforla/website/issues/2958) at 2022-03-10 12:34 PM PST -Providence-o,2022-03-10T21:55:16Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1064540705) at 2022-03-10 01:55 PM PST -Providence-o,2022-03-10T22:33:47Z,- Providence-o opened issue: [2960](https://github.com/hackforla/website/issues/2960) at 2022-03-10 02:33 PM PST -Providence-o,2022-03-10T22:49:47Z,- Providence-o commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1064587702) at 2022-03-10 02:49 PM PST -Providence-o,2022-03-12T20:12:52Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1065955282) at 2022-03-12 01:12 PM PDT -Providence-o,2022-03-12T20:30:24Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1065957763) at 2022-03-12 01:30 PM PDT -Providence-o,2022-03-12T21:42:54Z,- Providence-o commented on issue: [2393](https://github.com/hackforla/website/issues/2393#issuecomment-1065969546) at 2022-03-12 02:42 PM PDT -Providence-o,2022-03-12T21:49:23Z,- Providence-o unassigned from issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1037333994) at 2022-03-12 02:49 PM PDT -Providence-o,2022-03-12T21:55:17Z,- Providence-o assigned to issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1037333994) at 2022-03-12 02:55 PM PDT -Providence-o,2022-03-12T21:55:45Z,- Providence-o commented on issue: [2739](https://github.com/hackforla/website/issues/2739#issuecomment-1065971571) at 2022-03-12 02:55 PM PDT -Providence-o,2022-03-12T21:55:46Z,- Providence-o closed issue as completed: [2739](https://github.com/hackforla/website/issues/2739#event-6230329259) at 2022-03-12 02:55 PM PDT -Providence-o,2022-03-12T21:56:32Z,- Providence-o unassigned from issue: [2740](https://github.com/hackforla/website/issues/2740#issuecomment-1030695848) at 2022-03-12 02:56 PM PDT -Providence-o,2022-03-12T23:43:42Z,- Providence-o commented on issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1065985494) at 2022-03-12 04:43 PM PDT -Providence-o,2022-03-13T18:09:03Z,- Providence-o opened issue: [2976](https://github.com/hackforla/website/issues/2976) at 2022-03-13 11:09 AM PDT -Providence-o,2022-03-15T17:25:07Z,- Providence-o commented on issue: [2976](https://github.com/hackforla/website/issues/2976#issuecomment-1068252142) at 2022-03-15 10:25 AM PDT -Providence-o,2022-03-15T17:27:15Z,- Providence-o commented on issue: [2976](https://github.com/hackforla/website/issues/2976#issuecomment-1068254173) at 2022-03-15 10:27 AM PDT -Providence-o,2022-03-15T17:30:05Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1068256761) at 2022-03-15 10:30 AM PDT -Providence-o,2022-03-15T17:41:26Z,- Providence-o commented on issue: [2976](https://github.com/hackforla/website/issues/2976#issuecomment-1068268572) at 2022-03-15 10:41 AM PDT -Providence-o,2022-03-15T19:11:16Z,- Providence-o commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1068362994) at 2022-03-15 12:11 PM PDT -Providence-o,2022-03-16T20:01:20Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1069561783) at 2022-03-16 01:01 PM PDT -Providence-o,2022-03-19T23:39:46Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1073130599) at 2022-03-19 04:39 PM PDT -Providence-o,2022-03-20T14:35:57Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1073264319) at 2022-03-20 07:35 AM PDT -Providence-o,2022-03-20T14:42:34Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1073265428) at 2022-03-20 07:42 AM PDT -Providence-o,2022-03-23T20:05:38Z,- Providence-o commented on issue: [2936](https://github.com/hackforla/website/issues/2936#issuecomment-1076770029) at 2022-03-23 01:05 PM PDT -Providence-o,2022-03-24T18:44:45Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1077935416) at 2022-03-24 11:44 AM PDT -Providence-o,2022-03-24T19:45:38Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1078055515) at 2022-03-24 12:45 PM PDT -Providence-o,2022-03-24T20:13:45Z,- Providence-o commented on issue: [2616](https://github.com/hackforla/website/issues/2616#issuecomment-1078144976) at 2022-03-24 01:13 PM PDT -Providence-o,2022-04-05T17:37:39Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1089097585) at 2022-04-05 10:37 AM PDT -Providence-o,2022-04-05T17:42:40Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1089103761) at 2022-04-05 10:42 AM PDT -Providence-o,2022-04-10T17:22:30Z,- Providence-o opened issue: [3040](https://github.com/hackforla/website/issues/3040) at 2022-04-10 10:22 AM PDT -Providence-o,2022-04-10T17:23:42Z,- Providence-o assigned to issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094331934) at 2022-04-10 10:23 AM PDT -Providence-o,2022-04-10T17:28:09Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1094332784) at 2022-04-10 10:28 AM PDT -Providence-o,2022-04-10T17:32:46Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1094333447) at 2022-04-10 10:32 AM PDT -Providence-o,2022-04-12T17:14:58Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1096987254) at 2022-04-12 10:14 AM PDT -Providence-o,2022-04-12T17:18:59Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1096990651) at 2022-04-12 10:18 AM PDT -Providence-o,2022-04-12T17:19:55Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1096991424) at 2022-04-12 10:19 AM PDT -Providence-o,2022-04-12T17:34:02Z,- Providence-o commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1097002788) at 2022-04-12 10:34 AM PDT -Providence-o,2022-04-12T17:37:44Z,- Providence-o commented on issue: [2950](https://github.com/hackforla/website/issues/2950#issuecomment-1097006074) at 2022-04-12 10:37 AM PDT -Providence-o,2022-04-12T17:39:29Z,- Providence-o commented on issue: [2917](https://github.com/hackforla/website/issues/2917#issuecomment-1097007798) at 2022-04-12 10:39 AM PDT -Providence-o,2022-04-12T18:07:09Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1097033906) at 2022-04-12 11:07 AM PDT -Providence-o,2022-04-12T18:30:29Z,- Providence-o commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1097054763) at 2022-04-12 11:30 AM PDT -Providence-o,2022-04-14T19:42:01Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1099562751) at 2022-04-14 12:42 PM PDT -Providence-o,2022-04-14T20:30:34Z,- Providence-o commented on issue: [2572](https://github.com/hackforla/website/issues/2572#issuecomment-1099595194) at 2022-04-14 01:30 PM PDT -Providence-o,2022-04-14T21:39:23Z,- Providence-o commented on issue: [2614](https://github.com/hackforla/website/issues/2614#issuecomment-1099651495) at 2022-04-14 02:39 PM PDT -Providence-o,2022-04-19T17:31:17Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1102909248) at 2022-04-19 10:31 AM PDT -Providence-o,2022-04-19T17:33:41Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1102911493) at 2022-04-19 10:33 AM PDT -Providence-o,2022-05-17T17:53:34Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1129154338) at 2022-05-17 10:53 AM PDT -Providence-o,2022-05-17T18:00:50Z,- Providence-o commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1129160438) at 2022-05-17 11:00 AM PDT -Providence-o,2022-05-17T19:00:41Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1129214526) at 2022-05-17 12:00 PM PDT -Providence-o,2022-05-19T20:15:46Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1132163370) at 2022-05-19 01:15 PM PDT -Providence-o,2022-05-25T19:21:41Z,- Providence-o commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1137761646) at 2022-05-25 12:21 PM PDT -Providence-o,2022-05-28T20:35:24Z,- Providence-o commented on issue: [2938](https://github.com/hackforla/website/issues/2938#issuecomment-1140326153) at 2022-05-28 01:35 PM PDT -Providence-o,2022-05-28T20:47:35Z,- Providence-o commented on issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1140327516) at 2022-05-28 01:47 PM PDT -Providence-o,2022-09-04T16:08:45Z,- Providence-o unassigned from issue: [2688](https://github.com/hackforla/website/issues/2688#issuecomment-1021562766) at 2022-09-04 09:08 AM PDT -Providence-o,2022-11-09T18:08:18Z,- Providence-o unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1304856941) at 2022-11-09 10:08 AM PST -Providence-o,2022-11-16T17:39:21Z,- Providence-o unassigned from issue: [2908](https://github.com/hackforla/website/issues/2908#issuecomment-1065985494) at 2022-11-16 09:39 AM PST -Providence-o,2023-01-09T03:43:32Z,- Providence-o unassigned from issue: [3040](https://github.com/hackforla/website/issues/3040#issuecomment-1240273143) at 2023-01-08 07:43 PM PST -Providence-o,2023-06-04T18:58:24Z,- Providence-o unassigned from issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2023-06-04 11:58 AM PDT -Punkin18,2023-07-31T00:17:27Z,- Punkin18 commented on pull request: [2102](https://github.com/hackforla/website/pull/2102#issuecomment-1657306729) at 2023-07-30 05:17 PM PDT -purna-madala,7018,SKILLS ISSUE -purna-madala,2024-06-19T02:43:34Z,- purna-madala opened issue: [7018](https://github.com/hackforla/website/issues/7018) at 2024-06-18 07:43 PM PDT -purna-madala,2024-06-19T02:44:13Z,- purna-madala assigned to issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2177434840) at 2024-06-18 07:44 PM PDT -purna-madala,2024-09-10T18:38:24Z,- purna-madala assigned to issue: [7180](https://github.com/hackforla/website/issues/7180) at 2024-09-10 11:38 AM PDT -purna-madala,2024-09-10T19:08:46Z,- purna-madala opened pull request: [7436](https://github.com/hackforla/website/pull/7436) at 2024-09-10 12:08 PM PDT -purna-madala,2024-09-10T19:34:39Z,- purna-madala commented on issue: [7018](https://github.com/hackforla/website/issues/7018#issuecomment-2341865226) at 2024-09-10 12:34 PM PDT -purna-madala,2024-09-12T19:42:56Z,- purna-madala commented on issue: [7180](https://github.com/hackforla/website/issues/7180#issuecomment-2347103730) at 2024-09-12 12:42 PM PDT -purna-madala,2024-09-12T19:48:36Z,- purna-madala commented on pull request: [7436](https://github.com/hackforla/website/pull/7436#issuecomment-2347112640) at 2024-09-12 12:48 PM PDT -purna-madala,2024-09-15T02:28:03Z,- purna-madala pull request merged: [7436](https://github.com/hackforla/website/pull/7436#event-14262062662) at 2024-09-14 07:28 PM PDT -purna-madala,2024-11-11T17:37:33Z,- purna-madala assigned to issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442592500) at 2024-11-11 09:37 AM PST -purna-madala,2025-01-06T19:46:46Z,- purna-madala closed issue as completed: [7018](https://github.com/hackforla/website/issues/7018#event-15830232824) at 2025-01-06 11:46 AM PST -purna-madala,2025-01-06T19:57:32Z,- purna-madala commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2573817244) at 2025-01-06 11:57 AM PST -purna-madala,2025-01-06T19:58:08Z,- purna-madala opened pull request: [7816](https://github.com/hackforla/website/pull/7816) at 2025-01-06 11:58 AM PST -purna-madala,2025-01-12T17:51:07Z,- purna-madala pull request merged: [7816](https://github.com/hackforla/website/pull/7816#event-15896474434) at 2025-01-12 09:51 AM PST -purna-madala,2025-03-07T07:33:00Z,- purna-madala assigned to issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-06 11:33 PM PST -purna-madala,2025-03-07T07:33:13Z,- purna-madala unassigned from issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-06 11:33 PM PST -purna-madala,2025-03-07T07:54:33Z,- purna-madala assigned to issue: [7443](https://github.com/hackforla/website/issues/7443) at 2025-03-06 11:54 PM PST -purna-madala,2025-03-07T07:54:47Z,- purna-madala unassigned from issue: [7443](https://github.com/hackforla/website/issues/7443) at 2025-03-06 11:54 PM PST -pushkar-2804,2023-05-26T12:51:45Z,- pushkar-2804 commented on issue: [4669](https://github.com/hackforla/website/issues/4669#issuecomment-1564348020) at 2023-05-26 05:51 AM PDT -qaz6209031,2021-04-26T06:42:03Z,- qaz6209031 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-826551309) at 2021-04-25 11:42 PM PDT -qaz6209031,2021-04-26T07:14:28Z,- qaz6209031 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-826572137) at 2021-04-26 12:14 AM PDT -qaz6209031,2021-04-26T07:40:58Z,- qaz6209031 commented on issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-826590354) at 2021-04-26 12:40 AM PDT -qaz6209031,2021-04-26T09:09:17Z,- qaz6209031 opened pull request: [1467](https://github.com/hackforla/website/pull/1467) at 2021-04-26 02:09 AM PDT -qaz6209031,2021-04-27T00:47:19Z,- qaz6209031 commented on issue: [1460](https://github.com/hackforla/website/issues/1460#issuecomment-827230673) at 2021-04-26 05:47 PM PDT -qaz6209031,2021-04-27T03:01:14Z,- qaz6209031 opened pull request: [1470](https://github.com/hackforla/website/pull/1470) at 2021-04-26 08:01 PM PDT -qaz6209031,2021-04-27T05:54:33Z,- qaz6209031 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-827333099) at 2021-04-26 10:54 PM PDT -qaz6209031,2021-04-27T06:27:18Z,- qaz6209031 opened pull request: [1472](https://github.com/hackforla/website/pull/1472) at 2021-04-26 11:27 PM PDT -qaz6209031,2021-04-27T06:31:50Z,- qaz6209031 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-827350115) at 2021-04-26 11:31 PM PDT -qaz6209031,2021-04-27T18:55:09Z,- qaz6209031 pull request merged: [1470](https://github.com/hackforla/website/pull/1470#event-4652617942) at 2021-04-27 11:55 AM PDT -qaz6209031,2021-04-27T22:57:09Z,- qaz6209031 commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-828001076) at 2021-04-27 03:57 PM PDT -qaz6209031,2021-04-27T22:59:41Z,- qaz6209031 commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-828001953) at 2021-04-27 03:59 PM PDT -qaz6209031,2021-04-27T23:10:46Z,- qaz6209031 commented on pull request: [1470](https://github.com/hackforla/website/pull/1470#issuecomment-828006072) at 2021-04-27 04:10 PM PDT -qaz6209031,2021-04-28T00:47:28Z,- qaz6209031 assigned to issue: [1335](https://github.com/hackforla/website/issues/1335#issuecomment-828057168) at 2021-04-27 05:47 PM PDT -qaz6209031,2021-04-28T00:55:16Z,- qaz6209031 assigned to issue: [1460](https://github.com/hackforla/website/issues/1460#event-4652617931) at 2021-04-27 05:55 PM PDT -qaz6209031,2021-04-28T02:42:14Z,- qaz6209031 commented on issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-828098869) at 2021-04-27 07:42 PM PDT -qaz6209031,2021-04-28T02:54:58Z,- qaz6209031 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828103175) at 2021-04-27 07:54 PM PDT -qaz6209031,2021-04-28T03:09:14Z,- qaz6209031 assigned to issue: [1459](https://github.com/hackforla/website/issues/1459#issuecomment-828098869) at 2021-04-27 08:09 PM PDT -qaz6209031,2021-04-28T03:15:39Z,- qaz6209031 opened issue: [1482](https://github.com/hackforla/website/issues/1482) at 2021-04-27 08:15 PM PDT -qaz6209031,2021-04-28T04:12:46Z,- qaz6209031 pull request merged: [1472](https://github.com/hackforla/website/pull/1472#event-4654313356) at 2021-04-27 09:12 PM PDT -qaz6209031,2021-04-28T16:34:56Z,- qaz6209031 commented on pull request: [1467](https://github.com/hackforla/website/pull/1467#issuecomment-828600617) at 2021-04-28 09:34 AM PDT -qaz6209031,2021-04-28T21:23:10Z,- qaz6209031 pull request merged: [1467](https://github.com/hackforla/website/pull/1467#event-4659299896) at 2021-04-28 02:23 PM PDT -qaz6209031,2021-04-29T00:32:50Z,- qaz6209031 assigned to issue: [1479](https://github.com/hackforla/website/issues/1479) at 2021-04-28 05:32 PM PDT -qaz6209031,2021-04-29T01:35:42Z,- qaz6209031 opened pull request: [1491](https://github.com/hackforla/website/pull/1491) at 2021-04-28 06:35 PM PDT -qaz6209031,2021-04-29T01:39:32Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-828886989) at 2021-04-28 06:39 PM PDT -qaz6209031,2021-04-29T02:08:39Z,- qaz6209031 commented on issue: [1481](https://github.com/hackforla/website/issues/1481#issuecomment-828894965) at 2021-04-28 07:08 PM PDT -qaz6209031,2021-04-30T17:42:06Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-830254569) at 2021-04-30 10:42 AM PDT -qaz6209031,2021-05-09T05:13:14Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-835687738) at 2021-05-08 10:13 PM PDT -qaz6209031,2021-05-11T01:22:15Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837597621) at 2021-05-10 06:22 PM PDT -qaz6209031,2021-05-11T02:33:39Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837670385) at 2021-05-10 07:33 PM PDT -qaz6209031,2021-05-11T05:20:26Z,- qaz6209031 commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-837837251) at 2021-05-10 10:20 PM PDT -qaz6209031,2021-05-26T02:35:34Z,- qaz6209031 pull request closed w/o merging: [1491](https://github.com/hackforla/website/pull/1491#event-4796342243) at 2021-05-25 07:35 PM PDT -qaz6209031,2021-05-26T02:39:29Z,- qaz6209031 unassigned from issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-848411456) at 2021-05-25 07:39 PM PDT -qiqicodes,2021-02-07T20:19:49Z,- qiqicodes assigned to issue: [1004](https://github.com/hackforla/website/issues/1004) at 2021-02-07 12:19 PM PST -qiqicodes,2021-02-07T23:42:55Z,- qiqicodes opened pull request: [1014](https://github.com/hackforla/website/pull/1014) at 2021-02-07 03:42 PM PST -qiqicodes,2021-02-08T00:50:46Z,- qiqicodes opened pull request: [1015](https://github.com/hackforla/website/pull/1015) at 2021-02-07 04:50 PM PST -qiqicodes,2021-02-08T00:54:20Z,- qiqicodes commented on pull request: [1014](https://github.com/hackforla/website/pull/1014#issuecomment-774803827) at 2021-02-07 04:54 PM PST -qiqicodes,2021-02-08T00:54:20Z,- qiqicodes pull request closed w/o merging: [1014](https://github.com/hackforla/website/pull/1014#event-4300909012) at 2021-02-07 04:54 PM PST -qiqicodes,2021-02-08T00:58:56Z,- qiqicodes assigned to issue: [1003](https://github.com/hackforla/website/issues/1003) at 2021-02-07 04:58 PM PST -qiqicodes,2021-02-08T01:16:21Z,- qiqicodes opened pull request: [1016](https://github.com/hackforla/website/pull/1016) at 2021-02-07 05:16 PM PST -qiqicodes,2021-02-08T18:07:41Z,- qiqicodes pull request merged: [1015](https://github.com/hackforla/website/pull/1015#event-4304902107) at 2021-02-08 10:07 AM PST -qiqicodes,2021-02-08T18:11:05Z,- qiqicodes pull request merged: [1016](https://github.com/hackforla/website/pull/1016#event-4304917639) at 2021-02-08 10:11 AM PST -qiqicodes,2021-02-08T18:40:32Z,- qiqicodes assigned to issue: [957](https://github.com/hackforla/website/issues/957#issuecomment-773741939) at 2021-02-08 10:40 AM PST -qiqicodes,2021-02-08T19:12:26Z,- qiqicodes opened pull request: [1017](https://github.com/hackforla/website/pull/1017) at 2021-02-08 11:12 AM PST -qiqicodes,2021-02-10T02:34:35Z,- qiqicodes pull request merged: [1017](https://github.com/hackforla/website/pull/1017#event-4312501670) at 2021-02-09 06:34 PM PST -qiqicodes,2021-02-10T03:51:45Z,- qiqicodes assigned to issue: [967](https://github.com/hackforla/website/issues/967) at 2021-02-09 07:51 PM PST -qiqicodes,2021-02-10T04:17:49Z,- qiqicodes closed issue as completed: [1003](https://github.com/hackforla/website/issues/1003#event-4312718019) at 2021-02-09 08:17 PM PST -qiqicodes,2021-02-15T02:48:48Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-778904857) at 2021-02-14 06:48 PM PST -qiqicodes,2021-02-15T07:34:42Z,- qiqicodes opened issue: [1055](https://github.com/hackforla/website/issues/1055) at 2021-02-14 11:34 PM PST -qiqicodes,2021-02-17T01:58:23Z,- qiqicodes commented on issue: [1055](https://github.com/hackforla/website/issues/1055#issuecomment-780242104) at 2021-02-16 05:58 PM PST -qiqicodes,2021-02-21T09:27:44Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782826594) at 2021-02-21 01:27 AM PST -qiqicodes,2021-02-21T18:14:35Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782900538) at 2021-02-21 10:14 AM PST -qiqicodes,2021-02-21T18:23:09Z,- qiqicodes commented on issue: [967](https://github.com/hackforla/website/issues/967#issuecomment-782902095) at 2021-02-21 10:23 AM PST -qiqicodes,2021-02-21T23:34:43Z,- qiqicodes opened pull request: [1088](https://github.com/hackforla/website/pull/1088) at 2021-02-21 03:34 PM PST -qiqicodes,2021-02-21T23:49:59Z,- qiqicodes opened issue: [1089](https://github.com/hackforla/website/issues/1089) at 2021-02-21 03:49 PM PST -qiqicodes,2021-02-21T23:50:00Z,- qiqicodes assigned to issue: [1089](https://github.com/hackforla/website/issues/1089) at 2021-02-21 03:50 PM PST -qiqicodes,2021-02-21T23:52:16Z,- qiqicodes commented on issue: [1089](https://github.com/hackforla/website/issues/1089#issuecomment-782953743) at 2021-02-21 03:52 PM PST -qiqicodes,2021-02-22T00:40:45Z,- qiqicodes closed issue by PR 1088: [967](https://github.com/hackforla/website/issues/967#event-4357021820) at 2021-02-21 04:40 PM PST -qiqicodes,2021-02-22T00:40:45Z,- qiqicodes pull request merged: [1088](https://github.com/hackforla/website/pull/1088#event-4357021826) at 2021-02-21 04:40 PM PST -qiqicodes,2021-02-28T18:03:17Z,- qiqicodes commented on issue: [1089](https://github.com/hackforla/website/issues/1089#issuecomment-787493844) at 2021-02-28 10:03 AM PST -qiqicodes,2021-03-02T05:27:24Z,- qiqicodes commented on pull request: [1129](https://github.com/hackforla/website/pull/1129#issuecomment-788606948) at 2021-03-01 09:27 PM PST -qiqicodes,2021-03-02T05:28:54Z,- qiqicodes submitted pull request review: [1129](https://github.com/hackforla/website/pull/1129#pullrequestreview-601433522) at 2021-03-01 09:28 PM PST -qiqicodes,2021-03-02T05:30:17Z,- qiqicodes closed issue by PR 1129: [1081](https://github.com/hackforla/website/issues/1081#event-4393726384) at 2021-03-01 09:30 PM PST -qiqicodes,2021-03-02T06:17:10Z,- qiqicodes submitted pull request review: [1148](https://github.com/hackforla/website/pull/1148#pullrequestreview-601459338) at 2021-03-01 10:17 PM PST -qiqicodes,2021-03-03T18:20:04Z,- qiqicodes commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789952792) at 2021-03-03 10:20 AM PST -qiqicodes,2021-03-03T19:18:50Z,- qiqicodes commented on pull request: [1157](https://github.com/hackforla/website/pull/1157#issuecomment-789990698) at 2021-03-03 11:18 AM PST -qiqicodes,2021-03-07T12:17:42Z,- qiqicodes commented on issue: [1089](https://github.com/hackforla/website/issues/1089#issuecomment-792269547) at 2021-03-07 04:17 AM PST -qiqicodes,2021-03-09T08:03:43Z,- qiqicodes opened pull request: [1181](https://github.com/hackforla/website/pull/1181) at 2021-03-09 12:03 AM PST -qiqicodes,2021-03-09T08:10:52Z,- qiqicodes assigned to issue: [1131](https://github.com/hackforla/website/issues/1131#issuecomment-787535979) at 2021-03-09 12:10 AM PST -qiqicodes,2021-03-09T08:20:29Z,- qiqicodes opened pull request: [1182](https://github.com/hackforla/website/pull/1182) at 2021-03-09 12:20 AM PST -qiqicodes,2021-03-10T02:24:28Z,- qiqicodes opened pull request: [1188](https://github.com/hackforla/website/pull/1188) at 2021-03-09 06:24 PM PST -qiqicodes,2021-03-10T02:25:13Z,- qiqicodes pull request closed w/o merging: [1181](https://github.com/hackforla/website/pull/1181#event-4432860261) at 2021-03-09 06:25 PM PST -qiqicodes,2021-03-10T02:25:28Z,- qiqicodes reopened pull request: [1181](https://github.com/hackforla/website/pull/1181#event-4432860261) at 2021-03-09 06:25 PM PST -qiqicodes,2021-03-10T02:26:26Z,- qiqicodes commented on pull request: [1181](https://github.com/hackforla/website/pull/1181#issuecomment-794757163) at 2021-03-09 06:26 PM PST -qiqicodes,2021-03-10T02:26:26Z,- qiqicodes pull request closed w/o merging: [1181](https://github.com/hackforla/website/pull/1181#event-4432865148) at 2021-03-09 06:26 PM PST -qiqicodes,2021-03-10T03:21:10Z,- qiqicodes pull request closed w/o merging: [1182](https://github.com/hackforla/website/pull/1182#event-4433078167) at 2021-03-09 07:21 PM PST -qiqicodes,2021-03-10T03:38:40Z,- qiqicodes pull request merged: [1188](https://github.com/hackforla/website/pull/1188#event-4433144805) at 2021-03-09 07:38 PM PST -qiqicodes,2021-03-10T05:10:44Z,- qiqicodes opened pull request: [1194](https://github.com/hackforla/website/pull/1194) at 2021-03-09 09:10 PM PST -qiqicodes,2021-03-10T06:16:51Z,- qiqicodes pull request merged: [1194](https://github.com/hackforla/website/pull/1194#event-4433769847) at 2021-03-09 10:16 PM PST -qiqicodes,2021-03-14T18:32:20Z,- qiqicodes assigned to issue: [1168](https://github.com/hackforla/website/issues/1168) at 2021-03-14 11:32 AM PDT -qiqicodes,2021-03-15T21:08:47Z,- qiqicodes opened pull request: [1208](https://github.com/hackforla/website/pull/1208) at 2021-03-15 02:08 PM PDT -qiqicodes,2021-03-15T21:21:53Z,- qiqicodes pull request merged: [1208](https://github.com/hackforla/website/pull/1208#event-4461137592) at 2021-03-15 02:21 PM PDT -qiqicodes,2021-03-16T20:27:28Z,- qiqicodes assigned to issue: [1126](https://github.com/hackforla/website/issues/1126) at 2021-03-16 01:27 PM PDT -qiqicodes,2021-03-17T02:12:21Z,- qiqicodes assigned to issue: [1192](https://github.com/hackforla/website/issues/1192) at 2021-03-16 07:12 PM PDT -qiqicodes,2021-03-17T02:46:42Z,- qiqicodes opened pull request: [1214](https://github.com/hackforla/website/pull/1214) at 2021-03-16 07:46 PM PDT -qiqicodes,2021-03-17T03:47:08Z,- qiqicodes pull request merged: [1214](https://github.com/hackforla/website/pull/1214#event-4467943438) at 2021-03-16 08:47 PM PDT -qiqicodes,2021-03-17T03:47:08Z,- qiqicodes opened issue: [1216](https://github.com/hackforla/website/issues/1216) at 2021-03-16 08:47 PM PDT -qiqicodes,2021-03-21T08:58:51Z,- qiqicodes commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-803536215) at 2021-03-21 01:58 AM PDT -qiqicodes,2021-03-21T17:57:53Z,- qiqicodes commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-803632388) at 2021-03-21 10:57 AM PDT -qiqicodes,2021-03-21T18:17:33Z,- qiqicodes commented on issue: [1203](https://github.com/hackforla/website/issues/1203#issuecomment-803635491) at 2021-03-21 11:17 AM PDT -qiqicodes,2021-03-21T21:14:04Z,- qiqicodes opened issue: [1290](https://github.com/hackforla/website/issues/1290) at 2021-03-21 02:14 PM PDT -qiqicodes,2021-03-23T04:19:02Z,- qiqicodes opened pull request: [1307](https://github.com/hackforla/website/pull/1307) at 2021-03-22 09:19 PM PDT -qiqicodes,2021-03-23T04:37:15Z,- qiqicodes opened pull request: [1308](https://github.com/hackforla/website/pull/1308) at 2021-03-22 09:37 PM PDT -qiqicodes,2021-03-23T04:37:53Z,- qiqicodes pull request closed w/o merging: [1307](https://github.com/hackforla/website/pull/1307#event-4493893799) at 2021-03-22 09:37 PM PDT -qiqicodes,2021-03-23T04:38:35Z,- qiqicodes commented on pull request: [1307](https://github.com/hackforla/website/pull/1307#issuecomment-804611171) at 2021-03-22 09:38 PM PDT -qiqicodes,2021-03-24T03:15:54Z,- qiqicodes submitted pull request review: [1316](https://github.com/hackforla/website/pull/1316#pullrequestreview-619275124) at 2021-03-23 08:15 PM PDT -qiqicodes,2021-03-24T03:39:14Z,- qiqicodes pull request merged: [1308](https://github.com/hackforla/website/pull/1308#event-4499582143) at 2021-03-23 08:39 PM PDT -qiqicodes,2021-03-28T17:34:00Z,- qiqicodes commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-808929449) at 2021-03-28 10:34 AM PDT -qiqicodes,2021-04-01T19:55:27Z,- qiqicodes commented on issue: [1192](https://github.com/hackforla/website/issues/1192#issuecomment-812136347) at 2021-04-01 12:55 PM PDT -qiqicodes,2021-04-01T20:04:55Z,- qiqicodes opened issue: [1347](https://github.com/hackforla/website/issues/1347) at 2021-04-01 01:04 PM PDT -qiqicodes,2021-04-04T20:14:30Z,- qiqicodes commented on issue: [1079](https://github.com/hackforla/website/issues/1079#issuecomment-813093156) at 2021-04-04 01:14 PM PDT -qiqicodes,2021-04-04T21:01:22Z,- qiqicodes opened pull request: [1355](https://github.com/hackforla/website/pull/1355) at 2021-04-04 02:01 PM PDT -qiqicodes,2021-04-07T21:32:34Z,- qiqicodes assigned to issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-813411114) at 2021-04-07 02:32 PM PDT -qiqicodes,2021-04-08T16:42:30Z,- qiqicodes commented on issue: [1374](https://github.com/hackforla/website/issues/1374#issuecomment-815975209) at 2021-04-08 09:42 AM PDT -qiqicodes,2021-04-11T17:24:10Z,- qiqicodes commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-817342030) at 2021-04-11 10:24 AM PDT -qiqicodes,2021-04-13T20:50:23Z,- qiqicodes pull request merged: [1355](https://github.com/hackforla/website/pull/1355#event-4590217231) at 2021-04-13 01:50 PM PDT -qiqicodes,2021-04-14T00:02:36Z,- qiqicodes commented on pull request: [1404](https://github.com/hackforla/website/pull/1404#issuecomment-819126348) at 2021-04-13 05:02 PM PDT -qiqicodes,2021-04-14T02:24:58Z,- qiqicodes assigned to issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-04-13 07:24 PM PDT -qiqicodes,2021-04-14T02:25:34Z,- qiqicodes unassigned from issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-817342030) at 2021-04-13 07:25 PM PDT -qiqicodes,2021-04-14T03:51:56Z,- qiqicodes assigned to issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:51 PM PDT -qiqicodes,2021-04-14T03:52:00Z,- qiqicodes unassigned from issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:52 PM PDT -qiqicodes,2021-04-15T06:29:34Z,- qiqicodes opened pull request: [1408](https://github.com/hackforla/website/pull/1408) at 2021-04-14 11:29 PM PDT -qiqicodes,2021-04-15T20:32:57Z,- qiqicodes submitted pull request review: [1405](https://github.com/hackforla/website/pull/1405#pullrequestreview-637103533) at 2021-04-15 01:32 PM PDT -qiqicodes,2021-04-16T02:08:12Z,- qiqicodes pull request merged: [1408](https://github.com/hackforla/website/pull/1408#event-4602438843) at 2021-04-15 07:08 PM PDT -qiqicodes,2021-04-18T17:25:06Z,- qiqicodes assigned to issue: [1415](https://github.com/hackforla/website/issues/1415) at 2021-04-18 10:25 AM PDT -qiqicodes,2021-04-21T04:34:17Z,- qiqicodes opened pull request: [1428](https://github.com/hackforla/website/pull/1428) at 2021-04-20 09:34 PM PDT -qiqicodes,2021-04-22T06:06:31Z,- qiqicodes commented on pull request: [1428](https://github.com/hackforla/website/pull/1428#issuecomment-824565525) at 2021-04-21 11:06 PM PDT -qiqicodes,2021-04-25T17:15:52Z,- qiqicodes commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-826357672) at 2021-04-25 10:15 AM PDT -qiqicodes,2021-04-25T17:18:41Z,- qiqicodes commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-826358050) at 2021-04-25 10:18 AM PDT -qiqicodes,2021-04-25T17:31:08Z,- qiqicodes commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-25 10:31 AM PDT -qiqicodes,2021-04-25T17:34:48Z,- qiqicodes commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-826360231) at 2021-04-25 10:34 AM PDT -qiqicodes,2021-04-25T17:34:48Z,- qiqicodes closed issue as completed: [1375](https://github.com/hackforla/website/issues/1375#event-4641432143) at 2021-04-25 10:34 AM PDT -qiqicodes,2021-04-25T17:46:30Z,- qiqicodes commented on issue: [1393](https://github.com/hackforla/website/issues/1393#issuecomment-826361831) at 2021-04-25 10:46 AM PDT -qiqicodes,2021-04-25T17:52:42Z,- qiqicodes commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-826362707) at 2021-04-25 10:52 AM PDT -qiqicodes,2021-04-25T17:54:10Z,- qiqicodes commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-826362908) at 2021-04-25 10:54 AM PDT -qiqicodes,2021-04-25T18:33:04Z,- qiqicodes commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826369185) at 2021-04-25 11:33 AM PDT -qiqicodes,2021-04-25T18:45:48Z,- qiqicodes commented on issue: [1315](https://github.com/hackforla/website/issues/1315#issuecomment-826370949) at 2021-04-25 11:45 AM PDT -qiqicodes,2021-04-28T02:43:40Z,- qiqicodes commented on issue: [1415](https://github.com/hackforla/website/issues/1415#issuecomment-828099342) at 2021-04-27 07:43 PM PDT -qiqicodes,2021-04-28T03:32:18Z,- qiqicodes opened issue: [1483](https://github.com/hackforla/website/issues/1483) at 2021-04-27 08:32 PM PDT -qiqicodes,2021-04-28T03:59:29Z,- qiqicodes assigned to issue: [1483](https://github.com/hackforla/website/issues/1483) at 2021-04-27 08:59 PM PDT -qiqicodes,2021-04-28T04:38:27Z,- qiqicodes pull request merged: [1428](https://github.com/hackforla/website/pull/1428#event-4654371834) at 2021-04-27 09:38 PM PDT -qiqicodes,2021-04-28T18:12:22Z,- qiqicodes commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-828670790) at 2021-04-28 11:12 AM PDT -qiqicodes,2021-04-28T20:45:26Z,- qiqicodes commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-828765656) at 2021-04-28 01:45 PM PDT -qiqicodes,2021-05-02T04:54:44Z,- qiqicodes commented on issue: [1483](https://github.com/hackforla/website/issues/1483#issuecomment-830740676) at 2021-05-01 09:54 PM PDT -qiqicodes,2021-05-03T21:20:40Z,- qiqicodes commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-831543499) at 2021-05-03 02:20 PM PDT -qiqicodes,2021-05-03T21:31:42Z,- qiqicodes commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-831548814) at 2021-05-03 02:31 PM PDT -qiqicodes,2021-05-03T21:34:06Z,- qiqicodes commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-831549938) at 2021-05-03 02:34 PM PDT -qiqicodes,2021-05-03T21:37:31Z,- qiqicodes commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-831551629) at 2021-05-03 02:37 PM PDT -qiqicodes,2021-05-03T21:41:16Z,- qiqicodes commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-831553433) at 2021-05-03 02:41 PM PDT -qiqicodes,2021-05-03T21:46:54Z,- qiqicodes commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-05-03 02:46 PM PDT -qiqicodes,2021-05-03T21:50:36Z,- qiqicodes commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-831557778) at 2021-05-03 02:50 PM PDT -qiqicodes,2021-05-03T21:57:19Z,- qiqicodes assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-822023219) at 2021-05-03 02:57 PM PDT -qiqicodes,2021-05-04T21:10:04Z,- qiqicodes submitted pull request review: [1503](https://github.com/hackforla/website/pull/1503#pullrequestreview-651671264) at 2021-05-04 02:10 PM PDT -qiqicodes,2021-05-04T21:10:24Z,- qiqicodes closed issue by PR 1503: [1499](https://github.com/hackforla/website/issues/1499#event-4685708316) at 2021-05-04 02:10 PM PDT -qiqicodes,2021-05-07T07:22:11Z,- qiqicodes submitted pull request review: [1523](https://github.com/hackforla/website/pull/1523#pullrequestreview-654157091) at 2021-05-07 12:22 AM PDT -qiqicodes,2021-05-07T07:22:44Z,- qiqicodes submitted pull request review: [1523](https://github.com/hackforla/website/pull/1523#pullrequestreview-654157492) at 2021-05-07 12:22 AM PDT -qiqicodes,2021-05-07T07:36:26Z,- qiqicodes opened issue: [1526](https://github.com/hackforla/website/issues/1526) at 2021-05-07 12:36 AM PDT -qiqicodes,2021-05-07T07:40:58Z,- qiqicodes opened issue: [1527](https://github.com/hackforla/website/issues/1527) at 2021-05-07 12:40 AM PDT -qiqicodes,2021-05-07T17:49:40Z,- qiqicodes commented on pull request: [1523](https://github.com/hackforla/website/pull/1523#issuecomment-834652378) at 2021-05-07 10:49 AM PDT -qiqicodes,2021-05-07T19:34:02Z,- qiqicodes submitted pull request review: [1528](https://github.com/hackforla/website/pull/1528#pullrequestreview-654808286) at 2021-05-07 12:34 PM PDT -qiqicodes,2021-05-07T19:41:08Z,- qiqicodes commented on pull request: [1491](https://github.com/hackforla/website/pull/1491#issuecomment-834726437) at 2021-05-07 12:41 PM PDT -qiqicodes,2021-05-07T19:58:32Z,- qiqicodes submitted pull request review: [1516](https://github.com/hackforla/website/pull/1516#pullrequestreview-654823683) at 2021-05-07 12:58 PM PDT -qiqicodes,2021-05-07T20:05:33Z,- qiqicodes submitted pull request review: [1492](https://github.com/hackforla/website/pull/1492#pullrequestreview-654828150) at 2021-05-07 01:05 PM PDT -qiqicodes,2021-05-07T20:13:44Z,- qiqicodes commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-834745985) at 2021-05-07 01:13 PM PDT -qiqicodes,2021-05-07T20:13:44Z,- qiqicodes closed issue as completed: [1413](https://github.com/hackforla/website/issues/1413#event-4704431549) at 2021-05-07 01:13 PM PDT -qiqicodes,2021-05-07T20:14:59Z,- qiqicodes closed issue by PR 1492: [1426](https://github.com/hackforla/website/issues/1426#event-4704437220) at 2021-05-07 01:14 PM PDT -qiqicodes,2021-05-07T20:23:17Z,- qiqicodes commented on issue: [1031](https://github.com/hackforla/website/issues/1031#issuecomment-834750860) at 2021-05-07 01:23 PM PDT -qiqicodes,2021-05-07T20:32:26Z,- qiqicodes opened issue: [1531](https://github.com/hackforla/website/issues/1531) at 2021-05-07 01:32 PM PDT -qiqicodes,2021-05-09T01:16:55Z,- qiqicodes commented on issue: [1510](https://github.com/hackforla/website/issues/1510#issuecomment-835611382) at 2021-05-08 06:16 PM PDT -qiqicodes,2021-05-09T01:19:24Z,- qiqicodes commented on issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-835612280) at 2021-05-08 06:19 PM PDT -qiqicodes,2021-05-09T01:40:13Z,- qiqicodes commented on issue: [1379](https://github.com/hackforla/website/issues/1379#issuecomment-835619813) at 2021-05-08 06:40 PM PDT -qiqicodes,2021-05-09T01:48:14Z,- qiqicodes submitted pull request review: [1522](https://github.com/hackforla/website/pull/1522#pullrequestreview-655033528) at 2021-05-08 06:48 PM PDT -qiqicodes,2021-05-09T02:00:11Z,- qiqicodes commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-835626657) at 2021-05-08 07:00 PM PDT -qiqicodes,2021-05-09T02:03:42Z,- qiqicodes commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-835627791) at 2021-05-08 07:03 PM PDT -qiqicodes,2021-05-09T02:05:01Z,- qiqicodes commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-835628256) at 2021-05-08 07:05 PM PDT -qiqicodes,2021-05-09T02:07:37Z,- qiqicodes commented on issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-835629158) at 2021-05-08 07:07 PM PDT -qiqicodes,2021-05-09T02:10:30Z,- qiqicodes commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-835630221) at 2021-05-08 07:10 PM PDT -qiqicodes,2021-05-09T02:15:43Z,- qiqicodes commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-835631945) at 2021-05-08 07:15 PM PDT -qiqicodes,2021-05-09T02:17:51Z,- qiqicodes commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-835632636) at 2021-05-08 07:17 PM PDT -qiqicodes,2021-05-09T02:19:37Z,- qiqicodes commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-835633196) at 2021-05-08 07:19 PM PDT -qiqicodes,2021-05-09T07:10:56Z,- qiqicodes opened pull request: [1533](https://github.com/hackforla/website/pull/1533) at 2021-05-09 12:10 AM PDT -qiqicodes,2021-05-09T18:58:21Z,- qiqicodes opened issue: [1534](https://github.com/hackforla/website/issues/1534) at 2021-05-09 11:58 AM PDT -qiqicodes,2021-05-09T23:47:44Z,- qiqicodes pull request merged: [1533](https://github.com/hackforla/website/pull/1533#event-4712268667) at 2021-05-09 04:47 PM PDT -qiqicodes,2021-05-10T00:33:58Z,- qiqicodes submitted pull request review: [1535](https://github.com/hackforla/website/pull/1535#pullrequestreview-655140617) at 2021-05-09 05:33 PM PDT -qiqicodes,2021-05-10T17:25:44Z,- qiqicodes commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837004839) at 2021-05-10 10:25 AM PDT -qiqicodes,2021-05-10T19:46:47Z,- qiqicodes commented on pull request: [1522](https://github.com/hackforla/website/pull/1522#issuecomment-837225442) at 2021-05-10 12:46 PM PDT -qiqicodes,2021-05-10T19:52:28Z,- qiqicodes commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-837234017) at 2021-05-10 12:52 PM PDT -qiqicodes,2021-05-10T20:01:53Z,- qiqicodes commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-837247525) at 2021-05-10 01:01 PM PDT -qiqicodes,2021-05-10T23:50:11Z,- qiqicodes commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837512672) at 2021-05-10 04:50 PM PDT -qiqicodes,2021-05-11T05:41:18Z,- qiqicodes opened pull request: [1539](https://github.com/hackforla/website/pull/1539) at 2021-05-10 10:41 PM PDT -qiqicodes,2021-05-11T16:55:32Z,- qiqicodes assigned to issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-835094843) at 2021-05-11 09:55 AM PDT -qiqicodes,2021-05-11T20:43:22Z,- qiqicodes pull request merged: [1539](https://github.com/hackforla/website/pull/1539#event-4731362494) at 2021-05-11 01:43 PM PDT -qiqicodes,2021-05-12T02:53:46Z,- qiqicodes assigned to issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-05-11 07:53 PM PDT -qiqicodes,2021-05-12T02:54:09Z,- qiqicodes unassigned from issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-827739471) at 2021-05-11 07:54 PM PDT -qiqicodes,2021-05-12T02:59:06Z,- qiqicodes commented on issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-839395226) at 2021-05-11 07:59 PM PDT -qiqicodes,2021-05-15T08:03:22Z,- qiqicodes commented on issue: [1521](https://github.com/hackforla/website/issues/1521#issuecomment-841619312) at 2021-05-15 01:03 AM PDT -qiqicodes,2021-05-15T08:04:04Z,- qiqicodes commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-841619390) at 2021-05-15 01:04 AM PDT -qiqicodes,2021-05-15T08:09:37Z,- qiqicodes commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-841620159) at 2021-05-15 01:09 AM PDT -qiqicodes,2021-05-15T08:14:49Z,- qiqicodes commented on issue: [1439](https://github.com/hackforla/website/issues/1439#issuecomment-841620824) at 2021-05-15 01:14 AM PDT -qiqicodes,2021-05-15T08:18:39Z,- qiqicodes commented on issue: [1130](https://github.com/hackforla/website/issues/1130#issuecomment-841621245) at 2021-05-15 01:18 AM PDT -qiqicodes,2021-05-15T08:19:46Z,- qiqicodes commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-841621377) at 2021-05-15 01:19 AM PDT -qiqicodes,2021-05-15T08:21:30Z,- qiqicodes commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-841621562) at 2021-05-15 01:21 AM PDT -qiqicodes,2021-05-15T08:23:35Z,- qiqicodes commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-841621769) at 2021-05-15 01:23 AM PDT -qiqicodes,2021-05-15T08:24:42Z,- qiqicodes commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-841621895) at 2021-05-15 01:24 AM PDT -qiqicodes,2021-05-15T08:26:16Z,- qiqicodes commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-841622094) at 2021-05-15 01:26 AM PDT -qiqicodes,2021-05-15T08:27:48Z,- qiqicodes commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-841622266) at 2021-05-15 01:27 AM PDT -qiqicodes,2021-05-15T08:28:39Z,- qiqicodes commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-841622375) at 2021-05-15 01:28 AM PDT -qiqicodes,2021-05-15T08:29:41Z,- qiqicodes commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-841622494) at 2021-05-15 01:29 AM PDT -qiqicodes,2021-05-15T08:31:50Z,- qiqicodes commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-841622724) at 2021-05-15 01:31 AM PDT -qiqicodes,2021-05-15T08:35:01Z,- qiqicodes submitted pull request review: [1541](https://github.com/hackforla/website/pull/1541#pullrequestreview-660320140) at 2021-05-15 01:35 AM PDT -qiqicodes,2021-05-15T08:35:15Z,- qiqicodes closed issue by PR 1541: [1346](https://github.com/hackforla/website/issues/1346#event-4749731143) at 2021-05-15 01:35 AM PDT -qiqicodes,2021-05-16T09:53:49Z,- qiqicodes commented on issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-841794111) at 2021-05-16 02:53 AM PDT -qiqicodes,2021-05-17T08:09:19Z,- qiqicodes opened issue: [1558](https://github.com/hackforla/website/issues/1558) at 2021-05-17 01:09 AM PDT -qiqicodes,2021-05-17T08:10:07Z,- qiqicodes opened issue: [1559](https://github.com/hackforla/website/issues/1559) at 2021-05-17 01:10 AM PDT -qiqicodes,2021-05-17T08:12:46Z,- qiqicodes opened issue: [1560](https://github.com/hackforla/website/issues/1560) at 2021-05-17 01:12 AM PDT -qiqicodes,2021-05-17T08:16:48Z,- qiqicodes opened issue: [1561](https://github.com/hackforla/website/issues/1561) at 2021-05-17 01:16 AM PDT -qiqicodes,2021-05-17T08:19:17Z,- qiqicodes opened issue: [1562](https://github.com/hackforla/website/issues/1562) at 2021-05-17 01:19 AM PDT -qiqicodes,2021-05-17T08:23:24Z,- qiqicodes opened issue: [1563](https://github.com/hackforla/website/issues/1563) at 2021-05-17 01:23 AM PDT -qiqicodes,2021-05-17T08:26:17Z,- qiqicodes opened issue: [1564](https://github.com/hackforla/website/issues/1564) at 2021-05-17 01:26 AM PDT -qiqicodes,2021-05-17T08:37:08Z,- qiqicodes opened issue: [1565](https://github.com/hackforla/website/issues/1565) at 2021-05-17 01:37 AM PDT -qiqicodes,2021-05-17T08:39:03Z,- qiqicodes opened issue: [1566](https://github.com/hackforla/website/issues/1566) at 2021-05-17 01:39 AM PDT -qiqicodes,2021-05-17T08:40:44Z,- qiqicodes opened issue: [1567](https://github.com/hackforla/website/issues/1567) at 2021-05-17 01:40 AM PDT -qiqicodes,2021-05-17T08:45:14Z,- qiqicodes opened issue: [1568](https://github.com/hackforla/website/issues/1568) at 2021-05-17 01:45 AM PDT -qiqicodes,2021-05-17T08:47:15Z,- qiqicodes opened issue: [1569](https://github.com/hackforla/website/issues/1569) at 2021-05-17 01:47 AM PDT -qiqicodes,2021-05-17T08:55:21Z,- qiqicodes opened issue: [1570](https://github.com/hackforla/website/issues/1570) at 2021-05-17 01:55 AM PDT -qiqicodes,2021-05-17T09:02:08Z,- qiqicodes opened issue: [1571](https://github.com/hackforla/website/issues/1571) at 2021-05-17 02:02 AM PDT -qiqicodes,2021-05-17T09:06:58Z,- qiqicodes opened issue: [1572](https://github.com/hackforla/website/issues/1572) at 2021-05-17 02:06 AM PDT -qiqicodes,2021-05-17T09:13:41Z,- qiqicodes opened issue: [1573](https://github.com/hackforla/website/issues/1573) at 2021-05-17 02:13 AM PDT -qiqicodes,2021-05-17T09:15:22Z,- qiqicodes opened issue: [1574](https://github.com/hackforla/website/issues/1574) at 2021-05-17 02:15 AM PDT -qiqicodes,2021-05-17T09:17:41Z,- qiqicodes opened issue: [1575](https://github.com/hackforla/website/issues/1575) at 2021-05-17 02:17 AM PDT -qiqicodes,2021-05-17T09:19:33Z,- qiqicodes opened issue: [1576](https://github.com/hackforla/website/issues/1576) at 2021-05-17 02:19 AM PDT -qiqicodes,2021-05-17T09:21:58Z,- qiqicodes opened issue: [1577](https://github.com/hackforla/website/issues/1577) at 2021-05-17 02:21 AM PDT -qiqicodes,2021-05-17T09:24:08Z,- qiqicodes opened issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-05-17 02:24 AM PDT -qiqicodes,2021-05-17T09:27:19Z,- qiqicodes opened issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-05-17 02:27 AM PDT -qiqicodes,2021-05-17T09:29:05Z,- qiqicodes opened issue: [1580](https://github.com/hackforla/website/issues/1580) at 2021-05-17 02:29 AM PDT -qiqicodes,2021-05-17T09:35:49Z,- qiqicodes opened issue: [1581](https://github.com/hackforla/website/issues/1581) at 2021-05-17 02:35 AM PDT -qiqicodes,2021-05-17T09:38:49Z,- qiqicodes opened issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-05-17 02:38 AM PDT -qiqicodes,2021-05-17T09:41:09Z,- qiqicodes opened issue: [1583](https://github.com/hackforla/website/issues/1583) at 2021-05-17 02:41 AM PDT -qiqicodes,2021-05-17T09:43:35Z,- qiqicodes opened issue: [1584](https://github.com/hackforla/website/issues/1584) at 2021-05-17 02:43 AM PDT -qiqicodes,2021-05-17T09:45:48Z,- qiqicodes opened issue: [1585](https://github.com/hackforla/website/issues/1585) at 2021-05-17 02:45 AM PDT -qiqicodes,2021-05-17T09:48:21Z,- qiqicodes opened issue: [1586](https://github.com/hackforla/website/issues/1586) at 2021-05-17 02:48 AM PDT -qiqicodes,2021-05-17T09:51:14Z,- qiqicodes opened issue: [1587](https://github.com/hackforla/website/issues/1587) at 2021-05-17 02:51 AM PDT -qiqicodes,2021-05-17T09:53:17Z,- qiqicodes opened issue: [1588](https://github.com/hackforla/website/issues/1588) at 2021-05-17 02:53 AM PDT -qiqicodes,2021-05-17T09:56:19Z,- qiqicodes commented on issue: [1526](https://github.com/hackforla/website/issues/1526#issuecomment-842190049) at 2021-05-17 02:56 AM PDT -qiqicodes,2021-05-17T09:56:19Z,- qiqicodes closed issue as completed: [1526](https://github.com/hackforla/website/issues/1526#event-4753565410) at 2021-05-17 02:56 AM PDT -qiqicodes,2021-05-18T19:21:43Z,- qiqicodes commented on pull request: [1589](https://github.com/hackforla/website/pull/1589#issuecomment-843467876) at 2021-05-18 12:21 PM PDT -qiqicodes,2021-05-18T19:55:18Z,- qiqicodes submitted pull request review: [1557](https://github.com/hackforla/website/pull/1557#pullrequestreview-662515647) at 2021-05-18 12:55 PM PDT -qiqicodes,2021-05-19T02:45:05Z,- qiqicodes commented on issue: [1506](https://github.com/hackforla/website/issues/1506#issuecomment-843701578) at 2021-05-18 07:45 PM PDT -qiqicodes,2021-05-19T02:50:30Z,- qiqicodes commented on pull request: [1557](https://github.com/hackforla/website/pull/1557#issuecomment-843703303) at 2021-05-18 07:50 PM PDT -qiqicodes,2021-05-19T02:55:01Z,- qiqicodes assigned to issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-841860254) at 2021-05-18 07:55 PM PDT -qiqicodes,2021-05-21T19:58:37Z,- qiqicodes submitted pull request review: [1591](https://github.com/hackforla/website/pull/1591#pullrequestreview-665841321) at 2021-05-21 12:58 PM PDT -qiqicodes,2021-05-21T22:22:56Z,- qiqicodes closed issue by PR 1557: [1554](https://github.com/hackforla/website/issues/1554#event-4781553620) at 2021-05-21 03:22 PM PDT -qiqicodes,2021-05-22T21:07:32Z,- qiqicodes submitted pull request review: [1604](https://github.com/hackforla/website/pull/1604#pullrequestreview-666211102) at 2021-05-22 02:07 PM PDT -qiqicodes,2021-05-22T21:07:49Z,- qiqicodes closed issue by PR 1604: [1588](https://github.com/hackforla/website/issues/1588#event-4782712330) at 2021-05-22 02:07 PM PDT -qiqicodes,2021-05-23T01:10:26Z,- qiqicodes closed issue by PR 1591: [1506](https://github.com/hackforla/website/issues/1506#event-4782842911) at 2021-05-22 06:10 PM PDT -qiqicodes,2021-05-23T01:20:54Z,- qiqicodes submitted pull request review: [1603](https://github.com/hackforla/website/pull/1603#pullrequestreview-666221101) at 2021-05-22 06:20 PM PDT -qiqicodes,2021-05-23T01:22:06Z,- qiqicodes submitted pull request review: [1603](https://github.com/hackforla/website/pull/1603#pullrequestreview-666221155) at 2021-05-22 06:22 PM PDT -qiqicodes,2021-05-23T01:23:57Z,- qiqicodes submitted pull request review: [1603](https://github.com/hackforla/website/pull/1603#pullrequestreview-666221229) at 2021-05-22 06:23 PM PDT -qiqicodes,2021-05-23T10:35:26Z,- qiqicodes unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-822023219) at 2021-05-23 03:35 AM PDT -qiqicodes,2021-05-23T11:14:57Z,- qiqicodes commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-846545768) at 2021-05-23 04:14 AM PDT -qiqicodes,2021-05-23T18:34:35Z,- qiqicodes commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-846605916) at 2021-05-23 11:34 AM PDT -qiqicodes,2021-05-25T23:49:42Z,- qiqicodes commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-848348370) at 2021-05-25 04:49 PM PDT -qiqicodes,2021-05-30T04:55:56Z,- qiqicodes commented on issue: [1456](https://github.com/hackforla/website/issues/1456#issuecomment-850939892) at 2021-05-29 09:55 PM PDT -qiqicodes,2021-05-30T05:00:08Z,- qiqicodes commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-850940206) at 2021-05-29 10:00 PM PDT -qiqicodes,2021-05-30T05:03:43Z,- qiqicodes commented on issue: [1600](https://github.com/hackforla/website/issues/1600#issuecomment-850940481) at 2021-05-29 10:03 PM PDT -qiqicodes,2021-05-30T05:04:19Z,- qiqicodes commented on issue: [1592](https://github.com/hackforla/website/issues/1592#issuecomment-850940533) at 2021-05-29 10:04 PM PDT -qiqicodes,2021-06-10T20:14:29Z,- qiqicodes commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-859013854) at 2021-06-10 01:14 PM PDT -qiqicodes,2021-06-11T02:12:32Z,- qiqicodes commented on pull request: [1706](https://github.com/hackforla/website/pull/1706#issuecomment-859210445) at 2021-06-10 07:12 PM PDT -qiqicodes,2021-06-13T11:37:41Z,- qiqicodes opened pull request: [1732](https://github.com/hackforla/website/pull/1732) at 2021-06-13 04:37 AM PDT -qiqicodes,2021-06-13T11:40:40Z,- qiqicodes commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-860196902) at 2021-06-13 04:40 AM PDT -qiqicodes,2021-06-13T11:59:08Z,- qiqicodes submitted pull request review: [1731](https://github.com/hackforla/website/pull/1731#pullrequestreview-682402624) at 2021-06-13 04:59 AM PDT -qiqicodes,2021-06-13T21:30:32Z,- qiqicodes commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-860272868) at 2021-06-13 02:30 PM PDT -qiqicodes,2021-06-17T00:35:45Z,- qiqicodes pull request closed w/o merging: [1732](https://github.com/hackforla/website/pull/1732#event-4901073326) at 2021-06-16 05:35 PM PDT -qiqicodes,2021-06-17T04:24:01Z,- qiqicodes commented on pull request: [1732](https://github.com/hackforla/website/pull/1732#issuecomment-862912418) at 2021-06-16 09:24 PM PDT -qiqicodes,2021-06-18T04:18:08Z,- qiqicodes submitted pull request review: [1771](https://github.com/hackforla/website/pull/1771#pullrequestreview-687016935) at 2021-06-17 09:18 PM PDT -qiqicodes,2021-06-25T17:07:22Z,- qiqicodes unassigned from issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-860121310) at 2021-06-25 10:07 AM PDT -qiqicodes,2021-07-12T04:08:08Z,- qiqicodes pull request closed w/o merging: [1732](https://github.com/hackforla/website/pull/1732#event-5005115490) at 2021-07-11 09:08 PM PDT -qiqicodes,2021-07-12T09:03:46Z,- qiqicodes submitted pull request review: [1924](https://github.com/hackforla/website/pull/1924#pullrequestreview-703881865) at 2021-07-12 02:03 AM PDT -qiqicodes,2024-02-13T03:56:45Z,- qiqicodes opened issue: [6285](https://github.com/hackforla/website/issues/6285) at 2024-02-12 07:56 PM PST -qiqicodes,2024-02-18T01:42:21Z,- qiqicodes commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950740219) at 2024-02-17 05:42 PM PST -qiqicodes,2024-02-18T01:44:33Z,- qiqicodes commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950743449) at 2024-02-17 05:44 PM PST -qiqicodes,2024-02-18T02:23:23Z,- qiqicodes commented on issue: [6285](https://github.com/hackforla/website/issues/6285#issuecomment-1950802158) at 2024-02-17 06:23 PM PST -qngyn,4162,SKILLS ISSUE -qngyn,2023-03-14T03:04:46Z,- qngyn opened issue: [4162](https://github.com/hackforla/website/issues/4162) at 2023-03-13 08:04 PM PDT -qngyn,2023-03-14T03:06:37Z,- qngyn opened issue: [4167](https://github.com/hackforla/website/issues/4167) at 2023-03-13 08:06 PM PDT -qngyn,2023-03-14T03:26:11Z,- qngyn assigned to issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1467281723) at 2023-03-13 08:26 PM PDT -qngyn,2023-03-29T19:12:15Z,- qngyn assigned to issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1488146932) at 2023-03-29 12:12 PM PDT -qngyn,2023-04-01T06:40:01Z,- qngyn commented on issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1492852567) at 2023-03-31 11:40 PM PDT -qngyn,2023-04-01T06:45:51Z,- qngyn commented on issue: [4162](https://github.com/hackforla/website/issues/4162#issuecomment-1492853555) at 2023-03-31 11:45 PM PDT -qngyn,2023-04-08T15:16:17Z,- qngyn assigned to issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1489641582) at 2023-04-08 08:16 AM PDT -qngyn,2023-04-08T15:32:04Z,- qngyn commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1500915557) at 2023-04-08 08:32 AM PDT -qngyn,2023-04-15T02:11:07Z,- qngyn unassigned from issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1509468696) at 2023-04-14 07:11 PM PDT -qngyn,2023-05-15T01:19:33Z,- qngyn unassigned from issue: [3998](https://github.com/hackforla/website/issues/3998#issuecomment-1547063903) at 2023-05-14 06:19 PM PDT -quyenvhle,2021-01-13T15:15:26Z,- quyenvhle assigned to issue: [953](https://github.com/hackforla/website/issues/953) at 2021-01-13 07:15 AM PST -quyenvhle,2021-01-15T23:21:02Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-761248700) at 2021-01-15 03:21 PM PST -quyenvhle,2021-01-20T07:36:36Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-763401544) at 2021-01-19 11:36 PM PST -quyenvhle,2021-01-21T03:45:42Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764215827) at 2021-01-20 07:45 PM PST -quyenvhle,2021-01-21T18:12:38Z,- quyenvhle unassigned from issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764833019) at 2021-01-21 10:12 AM PST -quyenvhle,2021-02-08T02:11:23Z,- quyenvhle commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774821388) at 2021-02-07 06:11 PM PST -quyson,6335,SKILLS ISSUE -quyson,2024-02-21T03:35:46Z,- quyson opened issue: [6335](https://github.com/hackforla/website/issues/6335) at 2024-02-20 07:35 PM PST -quyson,2024-02-21T04:16:42Z,- quyson assigned to issue: [6335](https://github.com/hackforla/website/issues/6335) at 2024-02-20 08:16 PM PST -R-Tomas-Gonzalez,2021-09-13T00:00:16Z,- R-Tomas-Gonzalez assigned to issue: [1585](https://github.com/hackforla/website/issues/1585#issuecomment-871646164) at 2021-09-12 05:00 PM PDT -R-Tomas-Gonzalez,2021-09-13T03:55:21Z,- R-Tomas-Gonzalez opened pull request: [2254](https://github.com/hackforla/website/pull/2254) at 2021-09-12 08:55 PM PDT -R-Tomas-Gonzalez,2021-09-13T21:04:35Z,- R-Tomas-Gonzalez assigned to issue: [2048](https://github.com/hackforla/website/issues/2048) at 2021-09-13 02:04 PM PDT -R-Tomas-Gonzalez,2021-09-13T22:03:11Z,- R-Tomas-Gonzalez opened pull request: [2256](https://github.com/hackforla/website/pull/2256) at 2021-09-13 03:03 PM PDT -R-Tomas-Gonzalez,2021-09-14T02:47:17Z,- R-Tomas-Gonzalez pull request closed w/o merging: [2256](https://github.com/hackforla/website/pull/2256#event-5296697309) at 2021-09-13 07:47 PM PDT -R-Tomas-Gonzalez,2021-09-14T02:48:55Z,- R-Tomas-Gonzalez unassigned from issue: [2048](https://github.com/hackforla/website/issues/2048) at 2021-09-13 07:48 PM PDT -R-Tomas-Gonzalez,2021-09-14T03:09:21Z,- R-Tomas-Gonzalez commented on pull request: [2254](https://github.com/hackforla/website/pull/2254#issuecomment-918758611) at 2021-09-13 08:09 PM PDT -R-Tomas-Gonzalez,2021-09-14T04:02:38Z,- R-Tomas-Gonzalez commented on pull request: [2254](https://github.com/hackforla/website/pull/2254#issuecomment-918779503) at 2021-09-13 09:02 PM PDT -R-Tomas-Gonzalez,2021-09-14T04:03:04Z,- R-Tomas-Gonzalez pull request merged: [2254](https://github.com/hackforla/website/pull/2254#event-5296887577) at 2021-09-13 09:03 PM PDT -R-Tomas-Gonzalez,2021-09-15T03:42:34Z,- R-Tomas-Gonzalez assigned to issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-901434667) at 2021-09-14 08:42 PM PDT -R-Tomas-Gonzalez,2021-09-17T22:28:44Z,- R-Tomas-Gonzalez assigned to issue: [2180](https://github.com/hackforla/website/issues/2180) at 2021-09-17 03:28 PM PDT -R-Tomas-Gonzalez,2021-09-17T22:33:44Z,- R-Tomas-Gonzalez unassigned from issue: [2125](https://github.com/hackforla/website/issues/2125#issuecomment-921551162) at 2021-09-17 03:33 PM PDT -R-Tomas-Gonzalez,2021-09-23T15:24:26Z,- R-Tomas-Gonzalez commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-925918251) at 2021-09-23 08:24 AM PDT -R-Tomas-Gonzalez,2021-10-01T19:49:14Z,- R-Tomas-Gonzalez submitted pull request review: [2305](https://github.com/hackforla/website/pull/2305#pullrequestreview-769325274) at 2021-10-01 12:49 PM PDT -R-Tomas-Gonzalez,2021-10-01T22:05:06Z,- R-Tomas-Gonzalez opened pull request: [2324](https://github.com/hackforla/website/pull/2324) at 2021-10-01 03:05 PM PDT -R-Tomas-Gonzalez,2021-10-01T22:14:51Z,- R-Tomas-Gonzalez commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-932607933) at 2021-10-01 03:14 PM PDT -R-Tomas-Gonzalez,2021-10-05T23:33:15Z,- R-Tomas-Gonzalez commented on pull request: [2324](https://github.com/hackforla/website/pull/2324#issuecomment-935075332) at 2021-10-05 04:33 PM PDT -R-Tomas-Gonzalez,2021-10-14T03:13:12Z,- R-Tomas-Gonzalez pull request merged: [2324](https://github.com/hackforla/website/pull/2324#event-5460985862) at 2021-10-13 08:13 PM PDT -R-Tomas-Gonzalez,2021-10-19T19:49:08Z,- R-Tomas-Gonzalez opened pull request: [2375](https://github.com/hackforla/website/pull/2375) at 2021-10-19 12:49 PM PDT -R-Tomas-Gonzalez,2021-10-20T03:05:12Z,- R-Tomas-Gonzalez assigned to issue: [2289](https://github.com/hackforla/website/issues/2289) at 2021-10-19 08:05 PM PDT -R-Tomas-Gonzalez,2021-10-20T22:38:27Z,- R-Tomas-Gonzalez commented on issue: [2180](https://github.com/hackforla/website/issues/2180#issuecomment-948089208) at 2021-10-20 03:38 PM PDT -R-Tomas-Gonzalez,2021-10-25T20:31:57Z,- R-Tomas-Gonzalez unassigned from issue: [2289](https://github.com/hackforla/website/issues/2289#issuecomment-949347959) at 2021-10-25 01:31 PM PDT -R-Tomas-Gonzalez,2021-10-26T16:53:26Z,- R-Tomas-Gonzalez commented on pull request: [2375](https://github.com/hackforla/website/pull/2375#issuecomment-952128612) at 2021-10-26 09:53 AM PDT -R-Tomas-Gonzalez,2021-10-28T05:49:35Z,- R-Tomas-Gonzalez pull request merged: [2375](https://github.com/hackforla/website/pull/2375#event-5531628710) at 2021-10-27 10:49 PM PDT -R-Tomas-Gonzalez,2021-11-14T17:55:49Z,- R-Tomas-Gonzalez opened issue: [2480](https://github.com/hackforla/website/issues/2480) at 2021-11-14 09:55 AM PST -R-Tomas-Gonzalez,2021-12-05T22:22:03Z,- R-Tomas-Gonzalez commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-986311298) at 2021-12-05 02:22 PM PST -R-Tomas-Gonzalez,2021-12-07T05:05:45Z,- R-Tomas-Gonzalez opened issue: [2554](https://github.com/hackforla/website/issues/2554) at 2021-12-06 09:05 PM PST -R-Tomas-Gonzalez,2021-12-07T06:14:56Z,- R-Tomas-Gonzalez opened issue: [2555](https://github.com/hackforla/website/issues/2555) at 2021-12-06 10:14 PM PST -R-Tomas-Gonzalez,2021-12-09T04:06:58Z,- R-Tomas-Gonzalez submitted pull request review: [2373](https://github.com/hackforla/website/pull/2373#pullrequestreview-827182694) at 2021-12-08 08:06 PM PST -R-Tomas-Gonzalez,2021-12-09T04:16:03Z,- R-Tomas-Gonzalez submitted pull request review: [2545](https://github.com/hackforla/website/pull/2545#pullrequestreview-827185991) at 2021-12-08 08:16 PM PST -R-Tomas-Gonzalez,2021-12-09T04:20:18Z,- R-Tomas-Gonzalez closed issue by PR 2545: [2235](https://github.com/hackforla/website/issues/2235#event-5738204430) at 2021-12-08 08:20 PM PST -R-Tomas-Gonzalez,2021-12-09T20:10:48Z,- R-Tomas-Gonzalez submitted pull request review: [2564](https://github.com/hackforla/website/pull/2564#pullrequestreview-828147439) at 2021-12-09 12:10 PM PST -R-Tomas-Gonzalez,2021-12-09T20:21:45Z,- R-Tomas-Gonzalez assigned to issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-971901436) at 2021-12-09 12:21 PM PST -R-Tomas-Gonzalez,2021-12-09T22:53:11Z,- R-Tomas-Gonzalez submitted pull request review: [2564](https://github.com/hackforla/website/pull/2564#pullrequestreview-828278791) at 2021-12-09 02:53 PM PST -R-Tomas-Gonzalez,2021-12-09T22:54:03Z,- R-Tomas-Gonzalez submitted pull request review: [2564](https://github.com/hackforla/website/pull/2564#pullrequestreview-828279354) at 2021-12-09 02:54 PM PST -R-Tomas-Gonzalez,2021-12-09T22:54:23Z,- R-Tomas-Gonzalez closed issue by PR 2564: [2236](https://github.com/hackforla/website/issues/2236#event-5744200743) at 2021-12-09 02:54 PM PST -R-Tomas-Gonzalez,2021-12-12T19:38:39Z,- R-Tomas-Gonzalez submitted pull request review: [2373](https://github.com/hackforla/website/pull/2373#pullrequestreview-829661919) at 2021-12-12 11:38 AM PST -R-Tomas-Gonzalez,2021-12-12T19:39:42Z,- R-Tomas-Gonzalez commented on pull request: [2373](https://github.com/hackforla/website/pull/2373#issuecomment-991957887) at 2021-12-12 11:39 AM PST -R-Tomas-Gonzalez,2021-12-19T02:29:28Z,- R-Tomas-Gonzalez opened issue: [2604](https://github.com/hackforla/website/issues/2604) at 2021-12-18 06:29 PM PST -R-Tomas-Gonzalez,2021-12-19T03:22:13Z,- R-Tomas-Gonzalez opened issue: [2605](https://github.com/hackforla/website/issues/2605) at 2021-12-18 07:22 PM PST -R-Tomas-Gonzalez,2021-12-19T03:51:56Z,- R-Tomas-Gonzalez opened issue: [2606](https://github.com/hackforla/website/issues/2606) at 2021-12-18 07:51 PM PST -R-Tomas-Gonzalez,2021-12-19T04:17:52Z,- R-Tomas-Gonzalez commented on pull request: [2588](https://github.com/hackforla/website/pull/2588#issuecomment-997326985) at 2021-12-18 08:17 PM PST -R-Tomas-Gonzalez,2021-12-19T04:18:08Z,- R-Tomas-Gonzalez closed issue by PR 2588: [2457](https://github.com/hackforla/website/issues/2457#event-5788721319) at 2021-12-18 08:18 PM PST -R-Tomas-Gonzalez,2021-12-19T18:43:53Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-997441145) at 2021-12-19 10:43 AM PST -R-Tomas-Gonzalez,2021-12-20T01:28:55Z,- R-Tomas-Gonzalez assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 05:28 PM PST -R-Tomas-Gonzalez,2021-12-20T04:14:38Z,- R-Tomas-Gonzalez commented on issue: [2606](https://github.com/hackforla/website/issues/2606#issuecomment-997579783) at 2021-12-19 08:14 PM PST -R-Tomas-Gonzalez,2021-12-20T18:07:56Z,- R-Tomas-Gonzalez commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-998155986) at 2021-12-20 10:07 AM PST -R-Tomas-Gonzalez,2021-12-21T02:37:54Z,- R-Tomas-Gonzalez commented on pull request: [2599](https://github.com/hackforla/website/pull/2599#issuecomment-998421260) at 2021-12-20 06:37 PM PST -R-Tomas-Gonzalez,2021-12-21T03:16:18Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-998436388) at 2021-12-20 07:16 PM PST -R-Tomas-Gonzalez,2021-12-22T03:12:14Z,- R-Tomas-Gonzalez closed issue by PR 2599: [2465](https://github.com/hackforla/website/issues/2465#event-5802361334) at 2021-12-21 07:12 PM PST -R-Tomas-Gonzalez,2021-12-23T16:36:01Z,- R-Tomas-Gonzalez submitted pull request review: [2603](https://github.com/hackforla/website/pull/2603#pullrequestreview-839490860) at 2021-12-23 08:36 AM PST -R-Tomas-Gonzalez,2021-12-23T16:38:57Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1000415388) at 2021-12-23 08:38 AM PST -R-Tomas-Gonzalez,2021-12-23T16:57:26Z,- R-Tomas-Gonzalez commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1000424312) at 2021-12-23 08:57 AM PST -R-Tomas-Gonzalez,2021-12-23T17:02:17Z,- R-Tomas-Gonzalez commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1000426663) at 2021-12-23 09:02 AM PST -R-Tomas-Gonzalez,2022-01-06T21:46:54Z,- R-Tomas-Gonzalez assigned to issue: [2663](https://github.com/hackforla/website/issues/2663) at 2022-01-06 01:46 PM PST -R-Tomas-Gonzalez,2022-01-08T23:14:58Z,- R-Tomas-Gonzalez submitted pull request review: [2646](https://github.com/hackforla/website/pull/2646#pullrequestreview-847201640) at 2022-01-08 03:14 PM PST -R-Tomas-Gonzalez,2022-01-08T23:18:42Z,- R-Tomas-Gonzalez closed issue by PR 2646: [2488](https://github.com/hackforla/website/issues/2488#event-5861725851) at 2022-01-08 03:18 PM PST -R-Tomas-Gonzalez,2022-01-08T23:49:10Z,- R-Tomas-Gonzalez submitted pull request review: [2644](https://github.com/hackforla/website/pull/2644#pullrequestreview-847202955) at 2022-01-08 03:49 PM PST -R-Tomas-Gonzalez,2022-01-09T16:39:03Z,- R-Tomas-Gonzalez commented on issue: [2555](https://github.com/hackforla/website/issues/2555#issuecomment-1008332704) at 2022-01-09 08:39 AM PST -R-Tomas-Gonzalez,2022-01-10T21:31:29Z,- R-Tomas-Gonzalez submitted pull request review: [2644](https://github.com/hackforla/website/pull/2644#pullrequestreview-848378832) at 2022-01-10 01:31 PM PST -R-Tomas-Gonzalez,2022-01-16T19:31:32Z,- R-Tomas-Gonzalez assigned to issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1013937251) at 2022-01-16 11:31 AM PST -R-Tomas-Gonzalez,2022-01-16T20:08:35Z,- R-Tomas-Gonzalez unassigned from issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1006958269) at 2022-01-16 12:08 PM PST -R-Tomas-Gonzalez,2022-01-16T20:11:35Z,- R-Tomas-Gonzalez unassigned from issue: [2455](https://github.com/hackforla/website/issues/2455#issuecomment-971901436) at 2022-01-16 12:11 PM PST -R-Tomas-Gonzalez,2022-01-23T19:32:03Z,- R-Tomas-Gonzalez commented on pull request: [2644](https://github.com/hackforla/website/pull/2644#issuecomment-1019551981) at 2022-01-23 11:32 AM PST -R-Tomas-Gonzalez,2022-01-23T20:22:38Z,- R-Tomas-Gonzalez opened pull request: [2713](https://github.com/hackforla/website/pull/2713) at 2022-01-23 12:22 PM PST -R-Tomas-Gonzalez,2022-01-27T00:44:10Z,- R-Tomas-Gonzalez assigned to issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1006958269) at 2022-01-26 04:44 PM PST -R-Tomas-Gonzalez,2022-01-27T01:22:06Z,- R-Tomas-Gonzalez commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1022756785) at 2022-01-26 05:22 PM PST -R-Tomas-Gonzalez,2022-01-27T01:22:12Z,- R-Tomas-Gonzalez unassigned from issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1022756785) at 2022-01-26 05:22 PM PST -R-Tomas-Gonzalez,2022-01-27T01:25:35Z,- R-Tomas-Gonzalez commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1022758617) at 2022-01-26 05:25 PM PST -R-Tomas-Gonzalez,2022-02-07T00:50:04Z,- R-Tomas-Gonzalez commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1030962019) at 2022-02-06 04:50 PM PST -R-Tomas-Gonzalez,2022-02-07T01:04:00Z,- R-Tomas-Gonzalez pull request merged: [2713](https://github.com/hackforla/website/pull/2713#event-6015852979) at 2022-02-06 05:04 PM PST -R-Tomas-Gonzalez,2022-02-13T00:08:16Z,- R-Tomas-Gonzalez unassigned from issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1036841950) at 2022-02-12 04:08 PM PST -Rabia2219,2022-12-02T21:19:08Z,- Rabia2219 opened issue: [3763](https://github.com/hackforla/website/issues/3763) at 2022-12-02 01:19 PM PST -Rabia2219,2022-12-02T22:15:28Z,- Rabia2219 commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1335917092) at 2022-12-02 02:15 PM PST -Rabia2219,2022-12-02T22:20:13Z,- Rabia2219 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1335920117) at 2022-12-02 02:20 PM PST -Rabia2219,2022-12-02T22:23:53Z,- Rabia2219 commented on issue: [3706](https://github.com/hackforla/website/issues/3706#issuecomment-1335922507) at 2022-12-02 02:23 PM PST -Rabia2219,2022-12-05T15:16:30Z,- Rabia2219 commented on issue: [3712](https://github.com/hackforla/website/issues/3712#issuecomment-1337556984) at 2022-12-05 07:16 AM PST -Rabia2219,2023-01-06T14:51:25Z,- Rabia2219 commented on issue: [3709](https://github.com/hackforla/website/issues/3709#issuecomment-1373732221) at 2023-01-06 06:51 AM PST -Rabia2219,2023-02-07T18:55:01Z,- Rabia2219 opened issue: [3949](https://github.com/hackforla/website/issues/3949) at 2023-02-07 10:55 AM PST -Rabia2219,2023-12-01T16:03:44Z,- Rabia2219 opened issue: [5953](https://github.com/hackforla/website/issues/5953) at 2023-12-01 08:03 AM PST -Rabia2219,2024-06-14T06:32:47Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167320968) at 2024-06-13 11:32 PM PDT -Rabia2219,2024-06-14T08:20:12Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167508054) at 2024-06-14 01:20 AM PDT -Rabia2219,2024-06-14T09:17:23Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167609820) at 2024-06-14 02:17 AM PDT -Rabia2219,2024-06-14T09:23:15Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167620070) at 2024-06-14 02:23 AM PDT -Rabia2219,2024-06-14T09:26:54Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167627291) at 2024-06-14 02:26 AM PDT -Rabia2219,2024-06-14T09:30:05Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167633387) at 2024-06-14 02:30 AM PDT -Rabia2219,2024-06-14T09:32:05Z,- Rabia2219 commented on issue: [3222](https://github.com/hackforla/website/issues/3222#issuecomment-2167636942) at 2024-06-14 02:32 AM PDT -Rabia2219,2024-06-20T10:02:37Z,- Rabia2219 commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-2180295120) at 2024-06-20 03:02 AM PDT -Rabia2219,2024-08-15T17:07:39Z,- Rabia2219 commented on issue: [6970](https://github.com/hackforla/website/issues/6970#issuecomment-2291734482) at 2024-08-15 10:07 AM PDT -Rabia2219,2024-09-17T18:39:57Z,- Rabia2219 assigned to issue: [7478](https://github.com/hackforla/website/issues/7478#issuecomment-2356626767) at 2024-09-17 11:39 AM PDT -Rabia2219,2024-09-17T19:19:09Z,- Rabia2219 opened issue: [7486](https://github.com/hackforla/website/issues/7486) at 2024-09-17 12:19 PM PDT -Rabia2219,2024-10-03T16:55:41Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2391891032) at 2024-10-03 09:55 AM PDT -Rabia2219,2024-10-10T17:43:47Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2405702651) at 2024-10-10 10:43 AM PDT -Rabia2219,2024-10-10T17:50:31Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2405713973) at 2024-10-10 10:50 AM PDT -Rabia2219,2024-10-10T18:12:48Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2405752116) at 2024-10-10 11:12 AM PDT -Rabia2219,2024-10-20T12:04:07Z,- Rabia2219 commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2424887496) at 2024-10-20 05:04 AM PDT -Rabia2219,2024-10-29T19:39:45Z,- Rabia2219 commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2445177219) at 2024-10-29 12:39 PM PDT -Rabia2219,2024-11-07T17:42:25Z,- Rabia2219 opened issue: [7710](https://github.com/hackforla/website/issues/7710) at 2024-11-07 09:42 AM PST -Rabia2219,2024-11-07T19:23:20Z,- Rabia2219 commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2463039430) at 2024-11-07 11:23 AM PST -Rabia2219,2024-11-07T19:31:39Z,- Rabia2219 assigned to issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2463039430) at 2024-11-07 11:31 AM PST -Rabia2219,2024-11-11T19:53:42Z,- Rabia2219 commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2468920141) at 2024-11-11 11:53 AM PST -Rabia2219,2024-11-17T18:33:12Z,- Rabia2219 unassigned from issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2468920141) at 2024-11-17 10:33 AM PST -Rabia2219,2025-01-06T19:40:53Z,- Rabia2219 opened issue: [7815](https://github.com/hackforla/website/issues/7815) at 2025-01-06 11:40 AM PST -Rabia2219,2025-02-17T17:32:22Z,- Rabia2219 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2663737127) at 2025-02-17 09:32 AM PST -Rabia2219,2025-02-25T01:08:43Z,- Rabia2219 assigned to issue: [7407](https://github.com/hackforla/website/issues/7407#event-16442340215) at 2025-02-24 05:08 PM PST -Rabia2219,2025-02-27T20:39:59Z,- Rabia2219 commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2689064412) at 2025-02-27 12:39 PM PST -Rabia2219,2025-02-27T20:41:36Z,- Rabia2219 opened issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-02-27 12:41 PM PST -Rabia2219,2025-02-28T21:07:57Z,- Rabia2219 commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2691547905) at 2025-02-28 01:07 PM PST -Rabia2219,2025-03-03T20:16:26Z,- Rabia2219 assigned to issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-03-03 12:16 PM PST -Rabia2219,2025-03-06T20:34:28Z,- Rabia2219 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2704881821) at 2025-03-06 12:34 PM PST -Rabia2219,2025-03-10T16:23:00Z,- Rabia2219 commented on issue: [7506](https://github.com/hackforla/website/issues/7506#issuecomment-2711147481) at 2025-03-10 09:23 AM PDT -Rabia2219,2025-03-19T18:25:41Z,- Rabia2219 commented on issue: [7539](https://github.com/hackforla/website/issues/7539#issuecomment-2737635421) at 2025-03-19 11:25 AM PDT -Rabia2219,2025-06-05T17:03:56Z,- Rabia2219 opened issue: [8170](https://github.com/hackforla/website/issues/8170) at 2025-06-05 10:03 AM PDT -Rabia2219,2025-06-11T20:35:22Z,- Rabia2219 unassigned from issue: [7952](https://github.com/hackforla/website/issues/7952) at 2025-06-11 01:35 PM PDT -Rabia2219,2025-08-07T18:46:02Z,- Rabia2219 opened issue: [8256](https://github.com/hackforla/website/issues/8256) at 2025-08-07 11:46 AM PDT -Rabia2219,2025-08-07T18:46:20Z,- Rabia2219 commented on issue: [8256](https://github.com/hackforla/website/issues/8256#issuecomment-3165351215) at 2025-08-07 11:46 AM PDT -rachelcorawood,7278,SKILLS ISSUE -rachelcorawood,2024-08-13T14:56:25Z,- rachelcorawood opened issue: [7278](https://github.com/hackforla/website/issues/7278) at 2024-08-13 07:56 AM PDT -rachelcorawood,2024-08-13T18:26:20Z,- rachelcorawood assigned to issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2286464260) at 2024-08-13 11:26 AM PDT -rachelcorawood,2024-08-13T18:57:55Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2286926483) at 2024-08-13 11:57 AM PDT -rachelcorawood,2024-08-14T21:42:46Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2289967367) at 2024-08-14 02:42 PM PDT -rachelcorawood,2024-08-14T22:10:27Z,- rachelcorawood assigned to issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2282836847) at 2024-08-14 03:10 PM PDT -rachelcorawood,2024-08-14T22:10:40Z,- rachelcorawood unassigned from issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2282836847) at 2024-08-14 03:10 PM PDT -rachelcorawood,2024-08-14T22:17:13Z,- rachelcorawood assigned to issue: [7252](https://github.com/hackforla/website/issues/7252) at 2024-08-14 03:17 PM PDT -rachelcorawood,2024-08-15T18:27:26Z,- rachelcorawood commented on issue: [7252](https://github.com/hackforla/website/issues/7252#issuecomment-2291914433) at 2024-08-15 11:27 AM PDT -rachelcorawood,2024-08-15T20:41:37Z,- rachelcorawood opened pull request: [7298](https://github.com/hackforla/website/pull/7298) at 2024-08-15 01:41 PM PDT -rachelcorawood,2024-09-06T00:42:46Z,- rachelcorawood opened pull request: [7405](https://github.com/hackforla/website/pull/7405) at 2024-09-05 05:42 PM PDT -rachelcorawood,2024-09-06T19:45:06Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2334708224) at 2024-09-06 12:45 PM PDT -rachelcorawood,2024-09-06T19:53:18Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2334718567) at 2024-09-06 12:53 PM PDT -rachelcorawood,2024-09-06T19:57:36Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2334724395) at 2024-09-06 12:57 PM PDT -rachelcorawood,2024-09-12T20:14:46Z,- rachelcorawood pull request closed w/o merging: [7298](https://github.com/hackforla/website/pull/7298#event-14238448428) at 2024-09-12 01:14 PM PDT -rachelcorawood,2024-09-17T16:55:35Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2356444829) at 2024-09-17 09:55 AM PDT -rachelcorawood,2024-09-17T17:19:32Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2356488871) at 2024-09-17 10:19 AM PDT -rachelcorawood,2024-09-24T19:52:00Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2372243905) at 2024-09-24 12:52 PM PDT -rachelcorawood,2024-10-01T22:24:08Z,- rachelcorawood opened pull request: [7557](https://github.com/hackforla/website/pull/7557) at 2024-10-01 03:24 PM PDT -rachelcorawood,2024-10-01T22:25:23Z,- rachelcorawood commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2387192366) at 2024-10-01 03:25 PM PDT -rachelcorawood,2024-10-01T22:25:23Z,- rachelcorawood pull request closed w/o merging: [7405](https://github.com/hackforla/website/pull/7405#event-14480250836) at 2024-10-01 03:25 PM PDT -rachelcorawood,2024-10-01T22:31:16Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2387199286) at 2024-10-01 03:31 PM PDT -rachelcorawood,2024-10-02T14:59:26Z,- rachelcorawood pull request merged: [7557](https://github.com/hackforla/website/pull/7557#event-14490276560) at 2024-10-02 07:59 AM PDT -rachelcorawood,2024-10-12T20:41:48Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2408694808) at 2024-10-12 01:41 PM PDT -rachelcorawood,2024-10-23T01:22:04Z,- rachelcorawood assigned to issue: [7541](https://github.com/hackforla/website/issues/7541) at 2024-10-22 06:22 PM PDT -rachelcorawood,2024-10-23T01:27:41Z,- rachelcorawood commented on issue: [7541](https://github.com/hackforla/website/issues/7541#issuecomment-2430611460) at 2024-10-22 06:27 PM PDT -rachelcorawood,2024-10-25T23:40:18Z,- rachelcorawood opened pull request: [7637](https://github.com/hackforla/website/pull/7637) at 2024-10-25 04:40 PM PDT -rachelcorawood,2024-10-28T23:47:08Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2442881723) at 2024-10-28 04:47 PM PDT -rachelcorawood,2024-11-04T20:24:23Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2455631432) at 2024-11-04 12:24 PM PST -rachelcorawood,2024-11-08T19:50:05Z,- rachelcorawood commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2465637966) at 2024-11-08 11:50 AM PST -rachelcorawood,2024-11-08T19:57:50Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2465652304) at 2024-11-08 11:57 AM PST -rachelcorawood,2024-11-10T21:49:12Z,- rachelcorawood pull request merged: [7637](https://github.com/hackforla/website/pull/7637#event-15242132849) at 2024-11-10 01:49 PM PST -rachelcorawood,2024-11-20T22:02:25Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2489627777) at 2024-11-20 02:02 PM PST -rachelcorawood,2024-11-22T00:15:27Z,- rachelcorawood commented on pull request: [7747](https://github.com/hackforla/website/pull/7747#issuecomment-2492611589) at 2024-11-21 04:15 PM PST -rachelcorawood,2024-11-22T01:09:17Z,- rachelcorawood submitted pull request review: [7747](https://github.com/hackforla/website/pull/7747#pullrequestreview-2453115486) at 2024-11-21 05:09 PM PST -rachelcorawood,2024-11-22T20:21:10Z,- rachelcorawood submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2455565673) at 2024-11-22 12:21 PM PST -rachelcorawood,2024-11-26T00:21:29Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2499300356) at 2024-11-25 04:21 PM PST -rachelcorawood,2024-11-26T00:42:58Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2499323170) at 2024-11-25 04:42 PM PST -rachelcorawood,2024-11-26T20:33:09Z,- rachelcorawood commented on pull request: [7768](https://github.com/hackforla/website/pull/7768#issuecomment-2501870145) at 2024-11-26 12:33 PM PST -rachelcorawood,2024-11-26T20:54:00Z,- rachelcorawood submitted pull request review: [7768](https://github.com/hackforla/website/pull/7768#pullrequestreview-2462653708) at 2024-11-26 12:54 PM PST -rachelcorawood,2024-11-26T21:05:03Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2501933211) at 2024-11-26 01:05 PM PST -rachelcorawood,2024-11-27T19:29:52Z,- rachelcorawood commented on pull request: [7773](https://github.com/hackforla/website/pull/7773#issuecomment-2504640132) at 2024-11-27 11:29 AM PST -rachelcorawood,2024-11-27T19:52:03Z,- rachelcorawood submitted pull request review: [7773](https://github.com/hackforla/website/pull/7773#pullrequestreview-2465855559) at 2024-11-27 11:52 AM PST -rachelcorawood,2024-11-27T20:01:52Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2504684357) at 2024-11-27 12:01 PM PST -rachelcorawood,2024-12-02T22:20:09Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2513073359) at 2024-12-02 02:20 PM PST -rachelcorawood,2024-12-02T22:54:52Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2513149307) at 2024-12-02 02:54 PM PST -rachelcorawood,2024-12-03T21:17:53Z,- rachelcorawood assigned to issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2436691275) at 2024-12-03 01:17 PM PST -rachelcorawood,2024-12-04T02:03:57Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2515999014) at 2024-12-03 06:03 PM PST -rachelcorawood,2024-12-10T22:54:03Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2533139086) at 2024-12-10 02:54 PM PST -rachelcorawood,2025-01-21T01:34:07Z,- rachelcorawood commented on issue: [7278](https://github.com/hackforla/website/issues/7278#issuecomment-2603452378) at 2025-01-20 05:34 PM PST -rachelcorawood,2025-01-27T17:44:36Z,- rachelcorawood unassigned from issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2614617347) at 2025-01-27 09:44 AM PST -rachelcorawood,2025-01-27T17:46:12Z,- rachelcorawood commented on issue: [7441](https://github.com/hackforla/website/issues/7441#issuecomment-2616494725) at 2025-01-27 09:46 AM PST -rachelcorawood,2025-03-19T22:22:25Z,- rachelcorawood assigned to issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2683814657) at 2025-03-19 03:22 PM PDT -rachelcorawood,2025-03-19T22:25:19Z,- rachelcorawood commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2738313424) at 2025-03-19 03:25 PM PDT -rachelcorawood,2025-03-24T16:53:43Z,- rachelcorawood commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2748794937) at 2025-03-24 09:53 AM PDT -rachitsgh,2023-09-20T07:50:28Z,- rachitsgh opened pull request: [5561](https://github.com/hackforla/website/pull/5561) at 2023-09-20 12:50 AM PDT -rachitsgh,2023-09-20T18:54:22Z,- rachitsgh pull request closed w/o merging: [5561](https://github.com/hackforla/website/pull/5561#event-10426726122) at 2023-09-20 11:54 AM PDT -raeraeicky,2025-01-31T01:12:31Z,- raeraeicky opened issue: [7863](https://github.com/hackforla/website/issues/7863) at 2025-01-30 05:12 PM PST -raeraeicky,2025-04-24T20:40:40Z,- raeraeicky opened issue: [8087](https://github.com/hackforla/website/issues/8087) at 2025-04-24 01:40 PM PDT -raeraeicky,2025-06-27T19:28:05Z,- raeraeicky opened issue: [8234](https://github.com/hackforla/website/issues/8234) at 2025-06-27 12:28 PM PDT -rafaelferreiranvr,7979,SKILLS ISSUE -rafaelferreiranvr,2025-03-04T05:01:00Z,- rafaelferreiranvr opened issue: [7979](https://github.com/hackforla/website/issues/7979) at 2025-03-03 09:01 PM PST -rafaelferreiranvr,2025-03-04T05:02:12Z,- rafaelferreiranvr assigned to issue: [7979](https://github.com/hackforla/website/issues/7979#issuecomment-2696209082) at 2025-03-03 09:02 PM PST -rafaelirangel,5227,SKILLS ISSUE -rafaelirangel,2023-08-15T03:45:23Z,- rafaelirangel opened issue: [5227](https://github.com/hackforla/website/issues/5227) at 2023-08-14 08:45 PM PDT -rafaelirangel,2023-08-15T03:51:02Z,- rafaelirangel assigned to issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1678386798) at 2023-08-14 08:51 PM PDT -rafaelirangel,2023-09-07T12:48:28Z,- rafaelirangel commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1710094221) at 2023-09-07 05:48 AM PDT -rafaelirangel,2023-09-07T13:38:00Z,- rafaelirangel assigned to issue: [5391](https://github.com/hackforla/website/issues/5391) at 2023-09-07 06:38 AM PDT -rafaelirangel,2023-10-03T18:25:15Z,- rafaelirangel unassigned from issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1743447532) at 2023-10-03 11:25 AM PDT -rajanarahul93,2025-03-22T16:11:07Z,- rajanarahul93 opened pull request: [8013](https://github.com/hackforla/website/pull/8013) at 2025-03-22 09:11 AM PDT -rajanarahul93,2025-03-22T16:11:20Z,- rajanarahul93 pull request closed w/o merging: [8013](https://github.com/hackforla/website/pull/8013#event-16940743527) at 2025-03-22 09:11 AM PDT -Rajwinder35,7220,SKILLS ISSUE - DUPLICATE - 7220 (Rajwinder35),7222,SKILLS ISSUE -Rajwinder35,2024-08-06T04:06:56Z,- Rajwinder35 opened issue: [7220](https://github.com/hackforla/website/issues/7220) at 2024-08-05 09:06 PM PDT -Rajwinder35,2024-08-06T04:27:36Z,- Rajwinder35 opened issue: [7222](https://github.com/hackforla/website/issues/7222) at 2024-08-05 09:27 PM PDT -Rajwinder35,2024-08-06T11:25:51Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271059611) at 2024-08-06 04:25 AM PDT -Rajwinder35,2024-08-06T11:35:03Z,- Rajwinder35 closed issue as completed: [7222](https://github.com/hackforla/website/issues/7222#event-13777262138) at 2024-08-06 04:35 AM PDT -Rajwinder35,2024-08-06T16:08:09Z,- Rajwinder35 assigned to issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2271059611) at 2024-08-06 09:08 AM PDT -Rajwinder35,2024-08-20T06:25:33Z,- Rajwinder35 assigned to issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2229610826) at 2024-08-19 11:25 PM PDT -Rajwinder35,2024-08-20T06:39:36Z,- Rajwinder35 commented on issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2298081043) at 2024-08-19 11:39 PM PDT -Rajwinder35,2024-08-20T06:47:31Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298092216) at 2024-08-19 11:47 PM PDT -Rajwinder35,2024-08-20T10:20:01Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298504858) at 2024-08-20 03:20 AM PDT -Rajwinder35,2024-08-20T11:09:48Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298594731) at 2024-08-20 04:09 AM PDT -Rajwinder35,2024-08-20T11:37:09Z,- Rajwinder35 commented on issue: [7220](https://github.com/hackforla/website/issues/7220#issuecomment-2298643007) at 2024-08-20 04:37 AM PDT -Rajwinder35,2024-08-20T12:02:10Z,- Rajwinder35 assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2277285129) at 2024-08-20 05:02 AM PDT -Rajwinder35,2024-08-20T12:02:26Z,- Rajwinder35 unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-08-20 05:02 AM PDT -Rajwinder35,2024-09-14T01:15:47Z,- Rajwinder35 unassigned from issue: [7102](https://github.com/hackforla/website/issues/7102#issuecomment-2348189403) at 2024-09-13 06:15 PM PDT -Rajwinder35,2024-10-20T17:45:24Z,- Rajwinder35 assigned to issue: [7222](https://github.com/hackforla/website/issues/7222#event-13777262138) at 2024-10-20 10:45 AM PDT -rakeshbabu23,2023-05-11T10:17:50Z,- rakeshbabu23 opened pull request: [4652](https://github.com/hackforla/website/pull/4652) at 2023-05-11 03:17 AM PDT -rakeshbabu23,2023-05-11T10:36:08Z,- rakeshbabu23 commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1543751720) at 2023-05-11 03:36 AM PDT -rakeshbabu23,2023-05-11T11:07:59Z,- rakeshbabu23 opened pull request: [4653](https://github.com/hackforla/website/pull/4653) at 2023-05-11 04:07 AM PDT -rakeshbabu23,2023-05-11T11:08:40Z,- rakeshbabu23 pull request closed w/o merging: [4653](https://github.com/hackforla/website/pull/4653#event-9221113544) at 2023-05-11 04:08 AM PDT -rakeshbabu23,2023-05-11T11:23:49Z,- rakeshbabu23 opened pull request: [4654](https://github.com/hackforla/website/pull/4654) at 2023-05-11 04:23 AM PDT -rakeshbabu23,2023-05-11T16:04:43Z,- rakeshbabu23 opened pull request: [4655](https://github.com/hackforla/website/pull/4655) at 2023-05-11 09:04 AM PDT -rakeshbabu23,2023-05-11T17:37:51Z,- rakeshbabu23 pull request closed w/o merging: [4652](https://github.com/hackforla/website/pull/4652#event-9225130041) at 2023-05-11 10:37 AM PDT -rakeshbabu23,2023-05-11T17:53:18Z,- rakeshbabu23 pull request closed w/o merging: [4654](https://github.com/hackforla/website/pull/4654#event-9225248133) at 2023-05-11 10:53 AM PDT -rakeshbabu23,2023-05-15T05:01:03Z,- rakeshbabu23 pull request closed w/o merging: [4655](https://github.com/hackforla/website/pull/4655#event-9242052228) at 2023-05-14 10:01 PM PDT -RamchandraReddy07,7976,SKILLS ISSUE -RamchandraReddy07,2025-03-04T04:28:04Z,- RamchandraReddy07 opened issue: [7976](https://github.com/hackforla/website/issues/7976) at 2025-03-03 08:28 PM PST -RamchandraReddy07,2025-03-04T04:28:07Z,- RamchandraReddy07 assigned to issue: [7976](https://github.com/hackforla/website/issues/7976) at 2025-03-03 08:28 PM PST -ramitaarora,6248,SKILLS ISSUE -ramitaarora,2024-02-06T03:32:21Z,- ramitaarora opened issue: [6248](https://github.com/hackforla/website/issues/6248) at 2024-02-05 07:32 PM PST -ramitaarora,2024-02-06T03:32:22Z,- ramitaarora assigned to issue: [6248](https://github.com/hackforla/website/issues/6248) at 2024-02-05 07:32 PM PST -ramitaarora,2024-02-13T17:54:20Z,- ramitaarora assigned to issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1686565365) at 2024-02-13 09:54 AM PST -ramitaarora,2024-02-13T18:01:00Z,- ramitaarora commented on issue: [5179](https://github.com/hackforla/website/issues/5179#issuecomment-1942112221) at 2024-02-13 10:01 AM PST -ramitaarora,2024-02-14T03:53:52Z,- ramitaarora opened pull request: [6293](https://github.com/hackforla/website/pull/6293) at 2024-02-13 07:53 PM PST -ramitaarora,2024-02-14T03:59:45Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-1943046760) at 2024-02-13 07:59 PM PST -ramitaarora,2024-02-15T05:36:43Z,- ramitaarora assigned to issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1776423981) at 2024-02-14 09:36 PM PST -ramitaarora,2024-02-15T05:37:47Z,- ramitaarora commented on issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1945403892) at 2024-02-14 09:37 PM PST -ramitaarora,2024-02-16T00:04:07Z,- ramitaarora opened pull request: [6301](https://github.com/hackforla/website/pull/6301) at 2024-02-15 04:04 PM PST -ramitaarora,2024-02-16T04:27:02Z,- ramitaarora assigned to issue: [5989](https://github.com/hackforla/website/issues/5989) at 2024-02-15 08:27 PM PST -ramitaarora,2024-02-16T05:39:18Z,- ramitaarora pull request closed w/o merging: [6301](https://github.com/hackforla/website/pull/6301#event-11824609230) at 2024-02-15 09:39 PM PST -ramitaarora,2024-02-16T05:40:17Z,- ramitaarora unassigned from issue: [5187](https://github.com/hackforla/website/issues/5187#issuecomment-1945403892) at 2024-02-15 09:40 PM PST -ramitaarora,2024-02-16T05:45:40Z,- ramitaarora unassigned from issue: [5989](https://github.com/hackforla/website/issues/5989#issuecomment-1947738161) at 2024-02-15 09:45 PM PST -ramitaarora,2024-02-16T07:18:59Z,- ramitaarora pull request merged: [6293](https://github.com/hackforla/website/pull/6293#event-11825240537) at 2024-02-15 11:18 PM PST -ramitaarora,2024-02-16T16:20:45Z,- ramitaarora assigned to issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1800817242) at 2024-02-16 08:20 AM PST -ramitaarora,2024-02-16T16:21:39Z,- ramitaarora commented on issue: [5879](https://github.com/hackforla/website/issues/5879#issuecomment-1948794266) at 2024-02-16 08:21 AM PST -ramitaarora,2024-02-16T18:17:04Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-1949038443) at 2024-02-16 10:17 AM PST -ramitaarora,2024-02-16T18:28:30Z,- ramitaarora opened pull request: [6305](https://github.com/hackforla/website/pull/6305) at 2024-02-16 10:28 AM PST -ramitaarora,2024-02-19T04:22:11Z,- ramitaarora pull request merged: [6305](https://github.com/hackforla/website/pull/6305#event-11843961161) at 2024-02-18 08:22 PM PST -ramitaarora,2024-02-21T03:01:03Z,- ramitaarora assigned to issue: [5992](https://github.com/hackforla/website/issues/5992) at 2024-02-20 07:01 PM PST -ramitaarora,2024-02-21T03:21:59Z,- ramitaarora commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1955806682) at 2024-02-20 07:21 PM PST -ramitaarora,2024-02-22T17:46:16Z,- ramitaarora commented on issue: [5992](https://github.com/hackforla/website/issues/5992#issuecomment-1959954087) at 2024-02-22 09:46 AM PST -ramitaarora,2024-02-22T17:48:54Z,- ramitaarora closed issue as completed: [6248](https://github.com/hackforla/website/issues/6248#event-11894622710) at 2024-02-22 09:48 AM PST -ramitaarora,2024-02-22T18:23:21Z,- ramitaarora commented on pull request: [6357](https://github.com/hackforla/website/pull/6357#issuecomment-1960016524) at 2024-02-22 10:23 AM PST -ramitaarora,2024-02-27T05:38:23Z,- ramitaarora assigned to issue: [6286](https://github.com/hackforla/website/issues/6286) at 2024-02-26 09:38 PM PST -ramitaarora,2024-02-27T05:39:09Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1965825829) at 2024-02-26 09:39 PM PST -ramitaarora,2024-02-28T17:26:49Z,- ramitaarora commented on pull request: [6385](https://github.com/hackforla/website/pull/6385#issuecomment-1969487339) at 2024-02-28 09:26 AM PST -ramitaarora,2024-02-28T17:56:56Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969538499) at 2024-02-28 09:56 AM PST -ramitaarora,2024-02-28T20:51:00Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1969896391) at 2024-02-28 12:51 PM PST -ramitaarora,2024-02-28T21:33:27Z,- ramitaarora opened pull request: [6390](https://github.com/hackforla/website/pull/6390) at 2024-02-28 01:33 PM PST -ramitaarora,2024-02-28T21:55:08Z,- ramitaarora submitted pull request review: [6385](https://github.com/hackforla/website/pull/6385#pullrequestreview-1907503612) at 2024-02-28 01:55 PM PST -ramitaarora,2024-02-29T08:52:28Z,- ramitaarora pull request merged: [6390](https://github.com/hackforla/website/pull/6390#event-11962736898) at 2024-02-29 12:52 AM PST -ramitaarora,2024-02-29T23:27:30Z,- ramitaarora commented on pull request: [6393](https://github.com/hackforla/website/pull/6393#issuecomment-1972143274) at 2024-02-29 03:27 PM PST -ramitaarora,2024-03-01T19:37:34Z,- ramitaarora submitted pull request review: [6393](https://github.com/hackforla/website/pull/6393#pullrequestreview-1911882554) at 2024-03-01 11:37 AM PST -ramitaarora,2024-03-04T18:28:47Z,- ramitaarora closed issue by PR 6441: [5187](https://github.com/hackforla/website/issues/5187#event-12003140402) at 2024-03-04 10:28 AM PST -ramitaarora,2024-03-04T21:30:54Z,- ramitaarora commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1977493776) at 2024-03-04 01:30 PM PST -ramitaarora,2024-03-05T21:36:32Z,- ramitaarora submitted pull request review: [6410](https://github.com/hackforla/website/pull/6410#pullrequestreview-1918179889) at 2024-03-05 01:36 PM PST -ramitaarora,2024-03-08T17:32:47Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1986119633) at 2024-03-08 09:32 AM PST -ramitaarora,2024-03-09T17:49:51Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1986929586) at 2024-03-09 10:49 AM PDT -ramitaarora,2024-03-11T16:20:42Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1988843020) at 2024-03-11 09:20 AM PDT -ramitaarora,2024-03-11T19:46:18Z,- ramitaarora commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1989303709) at 2024-03-11 12:46 PM PDT -ramitaarora,2024-03-12T16:53:46Z,- ramitaarora commented on issue: [6286](https://github.com/hackforla/website/issues/6286#issuecomment-1992123763) at 2024-03-12 09:53 AM PDT -ramitaarora,2024-03-14T16:26:25Z,- ramitaarora submitted pull request review: [6443](https://github.com/hackforla/website/pull/6443#pullrequestreview-1937196763) at 2024-03-14 09:26 AM PDT -ramitaarora,2024-03-24T17:24:54Z,- ramitaarora assigned to issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2008695048) at 2024-03-24 10:24 AM PDT -ramitaarora,2024-03-24T17:25:43Z,- ramitaarora commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2016878619) at 2024-03-24 10:25 AM PDT -ramitaarora,2024-03-27T22:34:35Z,- ramitaarora commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2024100427) at 2024-03-27 03:34 PM PDT -ramitaarora,2024-03-28T16:56:03Z,- ramitaarora commented on issue: [6481](https://github.com/hackforla/website/issues/6481#issuecomment-2025686980) at 2024-03-28 09:56 AM PDT -ramitaarora,2024-03-28T17:03:36Z,- ramitaarora submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1966787068) at 2024-03-28 10:03 AM PDT -ramitaarora,2024-03-28T17:05:18Z,- ramitaarora opened pull request: [6542](https://github.com/hackforla/website/pull/6542) at 2024-03-28 10:05 AM PDT -ramitaarora,2024-04-01T09:24:14Z,- ramitaarora pull request merged: [6542](https://github.com/hackforla/website/pull/6542#event-12308711697) at 2024-04-01 02:24 AM PDT -ramitaarora,2024-04-11T04:33:54Z,- ramitaarora commented on pull request: [6506](https://github.com/hackforla/website/pull/6506#issuecomment-2048910278) at 2024-04-10 09:33 PM PDT -ramitaarora,2024-04-12T16:17:44Z,- ramitaarora submitted pull request review: [6506](https://github.com/hackforla/website/pull/6506#pullrequestreview-1997856321) at 2024-04-12 09:17 AM PDT -ramitaarora,2024-04-23T15:56:46Z,- ramitaarora assigned to issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1696256028) at 2024-04-23 08:56 AM PDT -ramitaarora,2024-04-23T15:58:27Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2072811888) at 2024-04-23 08:58 AM PDT -ramitaarora,2024-04-24T02:11:32Z,- ramitaarora commented on pull request: [6712](https://github.com/hackforla/website/pull/6712#issuecomment-2073868164) at 2024-04-23 07:11 PM PDT -ramitaarora,2024-04-26T18:17:02Z,- ramitaarora submitted pull request review: [6712](https://github.com/hackforla/website/pull/6712#pullrequestreview-2025620291) at 2024-04-26 11:17 AM PDT -ramitaarora,2024-04-30T18:03:15Z,- ramitaarora commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086318389) at 2024-04-30 11:03 AM PDT -ramitaarora,2024-04-30T18:06:51Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2086337197) at 2024-04-30 11:06 AM PDT -ramitaarora,2024-04-30T18:22:59Z,- ramitaarora submitted pull request review: [6782](https://github.com/hackforla/website/pull/6782#pullrequestreview-2032182505) at 2024-04-30 11:22 AM PDT -ramitaarora,2024-05-01T02:20:04Z,- ramitaarora commented on pull request: [6792](https://github.com/hackforla/website/pull/6792#issuecomment-2087879357) at 2024-04-30 07:20 PM PDT -ramitaarora,2024-05-01T07:04:03Z,- ramitaarora unassigned from issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2088067889) at 2024-05-01 12:04 AM PDT -ramitaarora,2024-05-01T16:38:48Z,- ramitaarora commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2088740594) at 2024-05-01 09:38 AM PDT -ramitaarora,2024-05-01T19:09:52Z,- ramitaarora submitted pull request review: [6792](https://github.com/hackforla/website/pull/6792#pullrequestreview-2034269792) at 2024-05-01 12:09 PM PDT -ramitaarora,2024-05-01T19:19:15Z,- ramitaarora submitted pull request review: [6791](https://github.com/hackforla/website/pull/6791#pullrequestreview-2034289530) at 2024-05-01 12:19 PM PDT -ramitaarora,2024-05-14T19:40:54Z,- ramitaarora opened pull request: [6854](https://github.com/hackforla/website/pull/6854) at 2024-05-14 12:40 PM PDT -ramitaarora,2024-05-15T02:14:08Z,- ramitaarora commented on pull request: [6851](https://github.com/hackforla/website/pull/6851#issuecomment-2111454997) at 2024-05-14 07:14 PM PDT -ramitaarora,2024-05-15T17:13:55Z,- ramitaarora submitted pull request review: [6851](https://github.com/hackforla/website/pull/6851#pullrequestreview-2058591066) at 2024-05-15 10:13 AM PDT -ramitaarora,2024-05-24T14:44:48Z,- ramitaarora commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2129712985) at 2024-05-24 07:44 AM PDT -ramitaarora,2024-05-31T20:17:52Z,- ramitaarora opened issue: [6919](https://github.com/hackforla/website/issues/6919) at 2024-05-31 01:17 PM PDT -ramitaarora,2024-05-31T20:33:04Z,- ramitaarora commented on pull request: [6854](https://github.com/hackforla/website/pull/6854#issuecomment-2142940975) at 2024-05-31 01:33 PM PDT -ramitaarora,2024-06-19T07:52:29Z,- ramitaarora pull request merged: [6854](https://github.com/hackforla/website/pull/6854#event-13211829817) at 2024-06-19 12:52 AM PDT -ramitaarora,2024-06-23T00:52:48Z,- ramitaarora commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2184276557) at 2024-06-22 05:52 PM PDT -ramitaarora,2024-06-25T15:59:16Z,- ramitaarora submitted pull request review: [7040](https://github.com/hackforla/website/pull/7040#pullrequestreview-2139139686) at 2024-06-25 08:59 AM PDT -ramitaarora,2024-06-26T02:10:11Z,- ramitaarora assigned to issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2092033370) at 2024-06-25 07:10 PM PDT -ramitaarora,2024-06-26T04:20:37Z,- ramitaarora commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2190555266) at 2024-06-25 09:20 PM PDT -ramitaarora,2024-07-10T19:59:54Z,- ramitaarora opened issue: [7102](https://github.com/hackforla/website/issues/7102) at 2024-07-10 12:59 PM PDT -ramitaarora,2024-07-10T20:01:41Z,- ramitaarora opened issue: [7103](https://github.com/hackforla/website/issues/7103) at 2024-07-10 01:01 PM PDT -ramitaarora,2024-07-22T17:05:06Z,- ramitaarora assigned to issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2132343262) at 2024-07-22 10:05 AM PDT -ramitaarora,2024-07-22T17:41:43Z,- ramitaarora commented on pull request: [7131](https://github.com/hackforla/website/pull/7131#issuecomment-2243485348) at 2024-07-22 10:41 AM PDT -ramitaarora,2024-07-22T17:42:01Z,- ramitaarora commented on issue: [6871](https://github.com/hackforla/website/issues/6871#issuecomment-2243485844) at 2024-07-22 10:42 AM PDT -ramitaarora,2024-07-23T16:34:59Z,- ramitaarora submitted pull request review: [7131](https://github.com/hackforla/website/pull/7131#pullrequestreview-2194495868) at 2024-07-23 09:34 AM PDT -ramitaarora,2024-07-26T16:56:55Z,- ramitaarora opened issue: [7142](https://github.com/hackforla/website/issues/7142) at 2024-07-26 09:56 AM PDT -ramitaarora,2024-07-26T16:57:48Z,- ramitaarora opened issue: [7143](https://github.com/hackforla/website/issues/7143) at 2024-07-26 09:57 AM PDT -ramitaarora,2024-07-26T16:58:25Z,- ramitaarora opened issue: [7144](https://github.com/hackforla/website/issues/7144) at 2024-07-26 09:58 AM PDT -ramitaarora,2024-07-26T16:59:00Z,- ramitaarora opened issue: [7145](https://github.com/hackforla/website/issues/7145) at 2024-07-26 09:59 AM PDT -ramitaarora,2024-07-26T16:59:37Z,- ramitaarora opened issue: [7146](https://github.com/hackforla/website/issues/7146) at 2024-07-26 09:59 AM PDT -ramitaarora,2024-07-26T17:00:07Z,- ramitaarora opened issue: [7147](https://github.com/hackforla/website/issues/7147) at 2024-07-26 10:00 AM PDT -ramitaarora,2024-07-26T17:00:35Z,- ramitaarora opened issue: [7148](https://github.com/hackforla/website/issues/7148) at 2024-07-26 10:00 AM PDT -ramitaarora,2024-07-26T17:01:06Z,- ramitaarora opened issue: [7149](https://github.com/hackforla/website/issues/7149) at 2024-07-26 10:01 AM PDT -ramitaarora,2024-08-14T02:03:08Z,- ramitaarora assigned to issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2164324630) at 2024-08-13 07:03 PM PDT -ramitaarora,2024-08-14T02:07:29Z,- ramitaarora commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2287696623) at 2024-08-13 07:07 PM PDT -ramitaarora,2024-08-14T02:08:04Z,- ramitaarora commented on pull request: [7276](https://github.com/hackforla/website/pull/7276#issuecomment-2287697154) at 2024-08-13 07:08 PM PDT -ramitaarora,2024-08-16T17:13:39Z,- ramitaarora submitted pull request review: [7276](https://github.com/hackforla/website/pull/7276#pullrequestreview-2243155566) at 2024-08-16 10:13 AM PDT -ramitaarora,2024-08-16T17:44:22Z,- ramitaarora opened issue: [7304](https://github.com/hackforla/website/issues/7304) at 2024-08-16 10:44 AM PDT -ramitaarora,2024-08-30T03:47:35Z,- ramitaarora commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319949049) at 2024-08-29 08:47 PM PDT -ramitaarora,2024-08-30T17:38:16Z,- ramitaarora submitted pull request review: [7360](https://github.com/hackforla/website/pull/7360#pullrequestreview-2273161068) at 2024-08-30 10:38 AM PDT -ramitaarora,2024-08-30T17:41:26Z,- ramitaarora assigned to issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2264115990) at 2024-08-30 10:41 AM PDT -ramitaarora,2024-08-30T17:41:40Z,- ramitaarora unassigned from issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2322046458) at 2024-08-30 10:41 AM PDT -ramitaarora,2024-08-30T17:42:10Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2322047077) at 2024-08-30 10:42 AM PDT -ramitaarora,2024-09-11T02:18:07Z,- ramitaarora commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2342481155) at 2024-09-10 07:18 PM PDT -ramitaarora,2024-09-13T01:58:33Z,- ramitaarora submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2301993852) at 2024-09-12 06:58 PM PDT -ramitaarora,2024-09-16T16:00:06Z,- ramitaarora commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-2353319430) at 2024-09-16 09:00 AM PDT -ramitaarora,2024-09-16T16:01:57Z,- ramitaarora submitted pull request review: [7428](https://github.com/hackforla/website/pull/7428#pullrequestreview-2307094744) at 2024-09-16 09:01 AM PDT -ramitaarora,2024-09-18T02:13:00Z,- ramitaarora commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2357351632) at 2024-09-17 07:13 PM PDT -ramitaarora,2024-09-19T17:23:53Z,- ramitaarora commented on pull request: [7468](https://github.com/hackforla/website/pull/7468#issuecomment-2361781372) at 2024-09-19 10:23 AM PDT -ramitaarora,2024-09-20T20:28:32Z,- ramitaarora submitted pull request review: [7468](https://github.com/hackforla/website/pull/7468#pullrequestreview-2319283106) at 2024-09-20 01:28 PM PDT -ramitaarora,2024-09-27T02:25:40Z,- ramitaarora commented on issue: [6248](https://github.com/hackforla/website/issues/6248#issuecomment-2378282327) at 2024-09-26 07:25 PM PDT -ramitaarora,2024-09-27T02:39:56Z,- ramitaarora closed issue as completed: [6248](https://github.com/hackforla/website/issues/6248#event-14424680677) at 2024-09-26 07:39 PM PDT -ramitaarora,2024-09-27T04:01:05Z,- ramitaarora commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2378355674) at 2024-09-26 09:01 PM PDT -ramitaarora,2024-10-01T17:52:54Z,- ramitaarora commented on pull request: [7554](https://github.com/hackforla/website/pull/7554#issuecomment-2386613841) at 2024-10-01 10:52 AM PDT -ramitaarora,2024-10-02T04:04:14Z,- ramitaarora submitted pull request review: [7554](https://github.com/hackforla/website/pull/7554#pullrequestreview-2341866537) at 2024-10-01 09:04 PM PDT -ramitaarora,2024-10-10T04:15:06Z,- ramitaarora commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2403932933) at 2024-10-09 09:15 PM PDT -ramitaarora,2024-10-10T04:18:27Z,- ramitaarora assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2378162993) at 2024-10-09 09:18 PM PDT -ramitaarora,2024-10-10T04:19:17Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2403936663) at 2024-10-09 09:19 PM PDT -ramitaarora,2024-10-10T18:24:51Z,- ramitaarora submitted pull request review: [7579](https://github.com/hackforla/website/pull/7579#pullrequestreview-2361107576) at 2024-10-10 11:24 AM PDT -ramitaarora,2024-10-18T15:51:40Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2422774703) at 2024-10-18 08:51 AM PDT -ramitaarora,2024-10-25T19:57:42Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-10-25 12:57 PM PDT -ramitaarora,2024-10-30T02:15:56Z,- ramitaarora commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2445678557) at 2024-10-29 07:15 PM PDT -ramitaarora,2024-10-31T03:30:32Z,- ramitaarora submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2406876794) at 2024-10-30 08:30 PM PDT -ramitaarora,2024-10-31T18:10:53Z,- ramitaarora submitted pull request review: [7656](https://github.com/hackforla/website/pull/7656#pullrequestreview-2408756248) at 2024-10-31 11:10 AM PDT -ramitaarora,2024-11-05T17:09:32Z,- ramitaarora unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-11-05 09:09 AM PST -ramitaarora,2024-11-18T19:12:06Z,- ramitaarora assigned to issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2438689737) at 2024-11-18 11:12 AM PST -ramitaarora,2024-11-18T19:12:49Z,- ramitaarora commented on issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2483895265) at 2024-11-18 11:12 AM PST -ramitaarora,2024-11-20T03:21:45Z,- ramitaarora commented on pull request: [7729](https://github.com/hackforla/website/pull/7729#issuecomment-2487265912) at 2024-11-19 07:21 PM PST -ramitaarora,2024-12-09T17:30:58Z,- ramitaarora unassigned from issue: [7525](https://github.com/hackforla/website/issues/7525#issuecomment-2507206922) at 2024-12-09 09:30 AM PST -randelbrot,2022-12-20T21:46:34Z,- randelbrot opened issue: [3773](https://github.com/hackforla/website/issues/3773) at 2022-12-20 01:46 PM PST -randelbrot,2022-12-20T21:48:23Z,- randelbrot commented on issue: [3772](https://github.com/hackforla/website/issues/3772#issuecomment-1360368508) at 2022-12-20 01:48 PM PST -randelbrot,2023-02-03T21:21:20Z,- randelbrot opened issue: [3929](https://github.com/hackforla/website/issues/3929) at 2023-02-03 01:21 PM PST -randelbrot,2023-02-13T18:02:28Z,- randelbrot commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1428411900) at 2023-02-13 10:02 AM PST -randelbrot,2023-02-17T21:15:17Z,- randelbrot commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435275753) at 2023-02-17 01:15 PM PST -randelbrot,2023-02-28T03:42:35Z,- randelbrot commented on issue: [3929](https://github.com/hackforla/website/issues/3929#issuecomment-1447527233) at 2023-02-27 07:42 PM PST -Rankazze,2019-05-21T03:10:38Z,- Rankazze opened issue: [109](https://github.com/hackforla/website/issues/109) at 2019-05-20 08:10 PM PDT -Rankazze,2019-05-21T05:31:52Z,- Rankazze assigned to issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494245577) at 2019-05-20 10:31 PM PDT -Rankazze,2019-05-21T05:59:51Z,- Rankazze commented on issue: [109](https://github.com/hackforla/website/issues/109#issuecomment-494251095) at 2019-05-20 10:59 PM PDT -Rankazze,2019-11-03T04:45:12Z,- Rankazze opened issue: [167](https://github.com/hackforla/website/issues/167) at 2019-11-02 08:45 PM PST -Rankazze,2019-11-03T04:45:13Z,- Rankazze assigned to issue: [167](https://github.com/hackforla/website/issues/167) at 2019-11-02 08:45 PM PST -Rankazze,2019-12-03T18:57:29Z,- Rankazze opened issue: [207](https://github.com/hackforla/website/issues/207) at 2019-12-03 10:57 AM PST -Rankazze,2019-12-03T19:02:33Z,- Rankazze opened issue: [208](https://github.com/hackforla/website/issues/208) at 2019-12-03 11:02 AM PST -Rankazze,2019-12-17T07:47:40Z,- Rankazze opened issue: [217](https://github.com/hackforla/website/issues/217) at 2019-12-16 11:47 PM PST -Rankazze,2020-01-16T23:03:07Z,- Rankazze commented on issue: [268](https://github.com/hackforla/website/issues/268#issuecomment-575387954) at 2020-01-16 03:03 PM PST -Rankazze,2020-06-08T05:26:33Z,- Rankazze assigned to issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-640321601) at 2020-06-07 10:26 PM PDT -Rankazze,2020-12-08T21:31:18Z,- Rankazze unassigned from issue: [178](https://github.com/hackforla/website/issues/178#issuecomment-657116227) at 2020-12-08 01:31 PM PST -Rankazze,2021-01-10T05:33:44Z,- Rankazze commented on issue: [922](https://github.com/hackforla/website/issues/922#issuecomment-757420518) at 2021-01-09 09:33 PM PST -Rankazze,2021-04-07T17:52:54Z,- Rankazze closed issue as completed: [178](https://github.com/hackforla/website/issues/178#event-4563963807) at 2021-04-07 10:52 AM PDT -Rankazze,2021-11-01T04:34:10Z,- Rankazze assigned to issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-929757388) at 2021-10-31 09:34 PM PDT -Rankazze,2021-11-01T04:45:30Z,- Rankazze assigned to issue: [2105](https://github.com/hackforla/website/issues/2105) at 2021-10-31 09:45 PM PDT -Rankazze,2021-11-03T03:04:46Z,- Rankazze commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-958616009) at 2021-11-02 08:04 PM PDT -Rankazze,2021-11-03T03:15:41Z,- Rankazze commented on issue: [1989](https://github.com/hackforla/website/issues/1989#issuecomment-958625057) at 2021-11-02 08:15 PM PDT -Rankazze,2022-02-11T14:18:27Z,- Rankazze commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1036258902) at 2022-02-11 06:18 AM PST -Rankazze,2022-02-11T14:21:35Z,- Rankazze commented on issue: [2105](https://github.com/hackforla/website/issues/2105#issuecomment-1036261890) at 2022-02-11 06:21 AM PST -rankdjr,4978,SKILLS ISSUE -rankdjr,2023-07-18T01:56:07Z,- rankdjr opened issue: [4978](https://github.com/hackforla/website/issues/4978) at 2023-07-17 06:56 PM PDT -rankdjr,2023-07-18T03:15:50Z,- rankdjr assigned to issue: [4978](https://github.com/hackforla/website/issues/4978) at 2023-07-17 08:15 PM PDT -rankdjr,2023-09-12T04:32:40Z,- rankdjr commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1714947601) at 2023-09-11 09:32 PM PDT -rankdjr,2023-10-24T07:08:18Z,- rankdjr assigned to issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1665037369) at 2023-10-24 12:08 AM PDT -rankdjr,2023-10-24T07:10:11Z,- rankdjr commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1776647857) at 2023-10-24 12:10 AM PDT -rankdjr,2023-10-25T03:07:15Z,- rankdjr unassigned from issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1776647857) at 2023-10-24 08:07 PM PDT -rankdjr,2023-10-25T03:08:14Z,- rankdjr commented on issue: [4051](https://github.com/hackforla/website/issues/4051#issuecomment-1778433474) at 2023-10-24 08:08 PM PDT -rankdjr,2023-11-29T03:56:50Z,- rankdjr assigned to issue: [5797](https://github.com/hackforla/website/issues/5797) at 2023-11-28 07:56 PM PST -rankdjr,2023-11-29T04:25:40Z,- rankdjr commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1831196232) at 2023-11-28 08:25 PM PST -rankdjr,2023-11-29T05:03:53Z,- rankdjr opened pull request: [5943](https://github.com/hackforla/website/pull/5943) at 2023-11-28 09:03 PM PST -rankdjr,2023-11-29T05:07:55Z,- rankdjr commented on issue: [5797](https://github.com/hackforla/website/issues/5797#issuecomment-1831231208) at 2023-11-28 09:07 PM PST -rankdjr,2023-11-29T22:35:47Z,- rankdjr pull request merged: [5943](https://github.com/hackforla/website/pull/5943#event-11102197954) at 2023-11-29 02:35 PM PST -rankdjr,2023-11-30T02:36:59Z,- rankdjr commented on issue: [5798](https://github.com/hackforla/website/issues/5798#issuecomment-1833013182) at 2023-11-29 06:36 PM PST -rankdjr,2023-12-06T03:32:43Z,- rankdjr assigned to issue: [5695](https://github.com/hackforla/website/issues/5695) at 2023-12-05 07:32 PM PST -rankdjr,2023-12-06T03:35:34Z,- rankdjr commented on issue: [5695](https://github.com/hackforla/website/issues/5695#issuecomment-1842030584) at 2023-12-05 07:35 PM PST -rankdjr,2023-12-08T07:21:57Z,- rankdjr opened pull request: [5977](https://github.com/hackforla/website/pull/5977) at 2023-12-07 11:21 PM PST -rankdjr,2023-12-08T07:57:36Z,- rankdjr commented on issue: [4978](https://github.com/hackforla/website/issues/4978#issuecomment-1846723804) at 2023-12-07 11:57 PM PST -rankdjr,2023-12-08T08:21:51Z,- rankdjr commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1846749992) at 2023-12-08 12:21 AM PST -rankdjr,2023-12-08T21:49:39Z,- rankdjr commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1847885416) at 2023-12-08 01:49 PM PST -rankdjr,2023-12-12T06:33:27Z,- rankdjr commented on pull request: [5977](https://github.com/hackforla/website/pull/5977#issuecomment-1851384049) at 2023-12-11 10:33 PM PST -rankdjr,2023-12-12T06:53:48Z,- rankdjr closed issue as completed: [4978](https://github.com/hackforla/website/issues/4978#event-11219305771) at 2023-12-11 10:53 PM PST -rankdjr,2023-12-12T23:53:53Z,- rankdjr pull request merged: [5977](https://github.com/hackforla/website/pull/5977#event-11229729330) at 2023-12-12 03:53 PM PST -rashmeesinha,2021-10-20T06:11:43Z,- rashmeesinha opened pull request: [2379](https://github.com/hackforla/website/pull/2379) at 2021-10-19 11:11 PM PDT -rashmeesinha,2021-10-27T21:30:30Z,- rashmeesinha pull request closed w/o merging: [2379](https://github.com/hackforla/website/pull/2379#event-5530260833) at 2021-10-27 02:30 PM PDT -raswani2023,3273,SKILLS ISSUE -raswani2023,2022-06-20T22:46:21Z,- raswani2023 opened issue: [3273](https://github.com/hackforla/website/issues/3273) at 2022-06-20 03:46 PM PDT -raswani2023,2022-06-20T22:46:29Z,- raswani2023 assigned to issue: [3273](https://github.com/hackforla/website/issues/3273) at 2022-06-20 03:46 PM PDT -raswani2023,2022-06-23T05:30:29Z,- raswani2023 assigned to issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-06-22 10:30 PM PDT -raswani2023,2022-06-23T22:07:00Z,- raswani2023 unassigned from issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-06-23 03:07 PM PDT -raswani2023,2022-06-24T01:30:24Z,- raswani2023 commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1165077499) at 2022-06-23 06:30 PM PDT -raswani2023,2022-06-24T01:32:34Z,- raswani2023 commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1165078708) at 2022-06-23 06:32 PM PDT -raswani2023,2022-06-24T02:05:47Z,- raswani2023 assigned to issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1165077499) at 2022-06-23 07:05 PM PDT -raswani2023,2022-06-26T07:25:36Z,- raswani2023 opened pull request: [3303](https://github.com/hackforla/website/pull/3303) at 2022-06-26 12:25 AM PDT -raswani2023,2022-06-26T18:56:42Z,- raswani2023 opened issue: [3315](https://github.com/hackforla/website/issues/3315) at 2022-06-26 11:56 AM PDT -raswani2023,2022-06-26T19:40:53Z,- raswani2023 pull request merged: [3303](https://github.com/hackforla/website/pull/3303#event-6880804807) at 2022-06-26 12:40 PM PDT -raswani2023,2022-06-27T04:11:54Z,- raswani2023 assigned to issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1115465887) at 2022-06-26 09:11 PM PDT -raswani2023,2022-06-27T23:14:08Z,- raswani2023 commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1168024158) at 2022-06-27 04:14 PM PDT -raswani2023,2022-06-29T02:37:22Z,- raswani2023 opened pull request: [3323](https://github.com/hackforla/website/pull/3323) at 2022-06-28 07:37 PM PDT -raswani2023,2022-06-29T02:50:54Z,- raswani2023 commented on issue: [3088](https://github.com/hackforla/website/issues/3088#issuecomment-1169476535) at 2022-06-28 07:50 PM PDT -raswani2023,2022-06-29T16:59:02Z,- raswani2023 pull request merged: [3323](https://github.com/hackforla/website/pull/3323#event-6904206103) at 2022-06-29 09:59 AM PDT -raswani2023,2022-07-03T09:22:41Z,- raswani2023 assigned to issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1173009227) at 2022-07-03 02:22 AM PDT -raswani2023,2022-07-10T18:32:45Z,- raswani2023 opened pull request: [3348](https://github.com/hackforla/website/pull/3348) at 2022-07-10 11:32 AM PDT -raswani2023,2022-07-10T18:34:40Z,- raswani2023 commented on issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1179777610) at 2022-07-10 11:34 AM PDT -raswani2023,2022-07-13T02:47:33Z,- raswani2023 commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182703513) at 2022-07-12 07:47 PM PDT -raswani2023,2022-07-13T04:58:04Z,- raswani2023 submitted pull request review: [3363](https://github.com/hackforla/website/pull/3363#pullrequestreview-1036763187) at 2022-07-12 09:58 PM PDT -raswani2023,2022-07-15T02:34:03Z,- raswani2023 pull request merged: [3348](https://github.com/hackforla/website/pull/3348#event-6998715675) at 2022-07-14 07:34 PM PDT -raswani2023,2022-07-18T17:26:49Z,- raswani2023 assigned to issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1120285387) at 2022-07-18 10:26 AM PDT -raswani2023,2022-07-19T18:12:26Z,- raswani2023 submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043885499) at 2022-07-19 11:12 AM PDT -raswani2023,2022-07-19T18:15:54Z,- raswani2023 submitted pull request review: [3390](https://github.com/hackforla/website/pull/3390#pullrequestreview-1043889320) at 2022-07-19 11:15 AM PDT -raswani2023,2022-07-21T17:57:12Z,- raswani2023 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1191777426) at 2022-07-21 10:57 AM PDT -raswani2023,2022-07-24T17:55:33Z,- raswani2023 unassigned from issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1191777426) at 2022-07-24 10:55 AM PDT -raswani2023,2022-07-24T17:59:00Z,- raswani2023 commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1193366245) at 2022-07-24 10:59 AM PDT -raswani2023,2022-07-26T00:12:22Z,- raswani2023 assigned to issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-907899822) at 2022-07-25 05:12 PM PDT -raswani2023,2022-07-26T17:47:57Z,- raswani2023 commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1195793864) at 2022-07-26 10:47 AM PDT -raswani2023,2022-07-27T04:24:20Z,- raswani2023 opened pull request: [3432](https://github.com/hackforla/website/pull/3432) at 2022-07-26 09:24 PM PDT -raswani2023,2022-07-27T04:53:42Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1196264902) at 2022-07-26 09:53 PM PDT -raswani2023,2022-07-27T22:46:22Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197453898) at 2022-07-27 03:46 PM PDT -raswani2023,2022-07-27T22:49:16Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197455666) at 2022-07-27 03:49 PM PDT -raswani2023,2022-07-28T01:58:45Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197563290) at 2022-07-27 06:58 PM PDT -raswani2023,2022-07-28T17:47:01Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198451739) at 2022-07-28 10:47 AM PDT -raswani2023,2022-07-29T02:00:31Z,- raswani2023 commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198804054) at 2022-07-28 07:00 PM PDT -raswani2023,2022-07-31T02:47:13Z,- raswani2023 pull request merged: [3432](https://github.com/hackforla/website/pull/3432#event-7095774789) at 2022-07-30 07:47 PM PDT -raswani2023,2022-11-06T19:14:39Z,- raswani2023 unassigned from issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-1304867526) at 2022-11-06 11:14 AM PST -raswani2023,2022-11-27T04:49:05Z,- raswani2023 unassigned from issue: [2898](https://github.com/hackforla/website/issues/2898#issuecomment-1328170999) at 2022-11-26 08:49 PM PST -ratishjain12,2023-08-30T17:07:08Z,- ratishjain12 opened issue: [5375](https://github.com/hackforla/website/issues/5375) at 2023-08-30 10:07 AM PDT -ratishjain12,2023-10-09T00:00:16Z,- ratishjain12 commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1752198192) at 2023-10-08 05:00 PM PDT -ratishjain12,2023-10-18T07:10:54Z,- ratishjain12 commented on issue: [5375](https://github.com/hackforla/website/issues/5375#issuecomment-1767809625) at 2023-10-18 12:10 AM PDT -raviteja4117,4999,SKILLS ISSUE -raviteja4117,2023-07-18T03:02:55Z,- raviteja4117 opened issue: [4999](https://github.com/hackforla/website/issues/4999) at 2023-07-17 08:02 PM PDT -raviteja4117,2023-07-18T03:55:37Z,- raviteja4117 assigned to issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1639237381) at 2023-07-17 08:55 PM PDT -raviteja4117,2023-08-16T23:38:59Z,- raviteja4117 assigned to issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1677898989) at 2023-08-16 04:38 PM PDT -raviteja4117,2023-08-16T23:44:23Z,- raviteja4117 commented on issue: [5198](https://github.com/hackforla/website/issues/5198#issuecomment-1681403833) at 2023-08-16 04:44 PM PDT -raviteja4117,2023-08-20T02:58:59Z,- raviteja4117 opened pull request: [5261](https://github.com/hackforla/website/pull/5261) at 2023-08-19 07:58 PM PDT -raviteja4117,2023-08-22T22:00:54Z,- raviteja4117 pull request merged: [5261](https://github.com/hackforla/website/pull/5261#event-10163516063) at 2023-08-22 03:00 PM PDT -raviteja4117,2023-08-25T23:41:19Z,- raviteja4117 assigned to issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 04:41 PM PDT -raviteja4117,2023-08-25T23:45:25Z,- raviteja4117 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1694038007) at 2023-08-25 04:45 PM PDT -raviteja4117,2023-09-02T01:57:33Z,- raviteja4117 opened pull request: [5416](https://github.com/hackforla/website/pull/5416) at 2023-09-01 06:57 PM PDT -raviteja4117,2023-09-06T22:14:52Z,- raviteja4117 pull request closed w/o merging: [5416](https://github.com/hackforla/website/pull/5416#event-10301004445) at 2023-09-06 03:14 PM PDT -raviteja4117,2023-09-07T23:04:51Z,- raviteja4117 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1710869534) at 2023-09-07 04:04 PM PDT -raviteja4117,2023-09-16T16:38:34Z,- raviteja4117 assigned to issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1717174626) at 2023-09-16 09:38 AM PDT -raviteja4117,2023-09-16T16:40:11Z,- raviteja4117 commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1722267252) at 2023-09-16 09:40 AM PDT -raviteja4117,2023-09-27T16:28:57Z,- raviteja4117 assigned to issue: [5600](https://github.com/hackforla/website/issues/5600) at 2023-09-27 09:28 AM PDT -raviteja4117,2023-09-27T16:30:22Z,- raviteja4117 commented on issue: [5600](https://github.com/hackforla/website/issues/5600#issuecomment-1737726015) at 2023-09-27 09:30 AM PDT -raviteja4117,2023-09-30T20:03:59Z,- raviteja4117 assigned to issue: [5336](https://github.com/hackforla/website/issues/5336) at 2023-09-30 01:03 PM PDT -raviteja4117,2023-09-30T20:05:19Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741849169) at 2023-09-30 01:05 PM PDT -raviteja4117,2023-09-30T20:16:36Z,- raviteja4117 unassigned from issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741849169) at 2023-09-30 01:16 PM PDT -raviteja4117,2023-09-30T21:25:04Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741862656) at 2023-09-30 02:25 PM PDT -raviteja4117,2023-09-30T21:26:11Z,- raviteja4117 assigned to issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741862656) at 2023-09-30 02:26 PM PDT -raviteja4117,2023-10-01T01:21:37Z,- raviteja4117 commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741913748) at 2023-09-30 06:21 PM PDT -raviteja4117,2023-10-06T18:44:34Z,- raviteja4117 commented on issue: [5520](https://github.com/hackforla/website/issues/5520#issuecomment-1751246516) at 2023-10-06 11:44 AM PDT -raviteja4117,2023-10-09T01:49:10Z,- raviteja4117 opened pull request: [5683](https://github.com/hackforla/website/pull/5683) at 2023-10-08 06:49 PM PDT -raviteja4117,2023-10-14T23:06:48Z,- raviteja4117 pull request merged: [5683](https://github.com/hackforla/website/pull/5683#event-10656088559) at 2023-10-14 04:06 PM PDT -raviteja4117,2023-11-10T00:37:02Z,- raviteja4117 assigned to issue: [5770](https://github.com/hackforla/website/issues/5770) at 2023-11-09 04:37 PM PST -raviteja4117,2023-11-10T00:46:07Z,- raviteja4117 commented on issue: [5770](https://github.com/hackforla/website/issues/5770#issuecomment-1804900465) at 2023-11-09 04:46 PM PST -raviteja4117,2023-11-15T19:24:26Z,- raviteja4117 opened pull request: [5908](https://github.com/hackforla/website/pull/5908) at 2023-11-15 11:24 AM PST -raviteja4117,2023-11-18T22:28:07Z,- raviteja4117 commented on pull request: [5908](https://github.com/hackforla/website/pull/5908#issuecomment-1817665199) at 2023-11-18 02:28 PM PST -raviteja4117,2023-11-20T18:40:41Z,- raviteja4117 pull request merged: [5908](https://github.com/hackforla/website/pull/5908#event-11015418984) at 2023-11-20 10:40 AM PST -raviteja4117,2023-12-17T02:09:52Z,- raviteja4117 commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1859015080) at 2023-12-16 06:09 PM PST -raviteja4117,2023-12-18T22:19:32Z,- raviteja4117 submitted pull request review: [6010](https://github.com/hackforla/website/pull/6010#pullrequestreview-1787802104) at 2023-12-18 02:19 PM PST -raviteja4117,2024-01-13T22:21:56Z,- raviteja4117 assigned to issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1851267392) at 2024-01-13 02:21 PM PST -raviteja4117,2024-01-13T22:24:44Z,- raviteja4117 commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1890782997) at 2024-01-13 02:24 PM PST -raviteja4117,2024-01-21T18:50:59Z,- raviteja4117 commented on issue: [6000](https://github.com/hackforla/website/issues/6000#issuecomment-1902726321) at 2024-01-21 10:50 AM PST -raviteja4117,2024-01-25T02:51:33Z,- raviteja4117 opened issue: [6153](https://github.com/hackforla/website/issues/6153) at 2024-01-24 06:51 PM PST -raviteja4117,2024-01-25T03:13:13Z,- raviteja4117 opened issue: [6154](https://github.com/hackforla/website/issues/6154) at 2024-01-24 07:13 PM PST -raviteja4117,2024-01-25T03:15:28Z,- raviteja4117 opened issue: [6155](https://github.com/hackforla/website/issues/6155) at 2024-01-24 07:15 PM PST -raviteja4117,2024-01-25T03:17:46Z,- raviteja4117 opened issue: [6156](https://github.com/hackforla/website/issues/6156) at 2024-01-24 07:17 PM PST -raviteja4117,2024-01-25T03:20:25Z,- raviteja4117 opened issue: [6157](https://github.com/hackforla/website/issues/6157) at 2024-01-24 07:20 PM PST -raviteja4117,2024-02-17T16:43:08Z,- raviteja4117 assigned to issue: [6299](https://github.com/hackforla/website/issues/6299) at 2024-02-17 08:43 AM PST -raviteja4117,2024-02-17T16:47:19Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1950253727) at 2024-02-17 08:47 AM PST -raviteja4117,2024-02-27T18:07:15Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1967319077) at 2024-02-27 10:07 AM PST -raviteja4117,2024-03-03T19:22:52Z,- raviteja4117 opened pull request: [6411](https://github.com/hackforla/website/pull/6411) at 2024-03-03 11:22 AM PST -raviteja4117,2024-03-07T03:20:04Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-1982277496) at 2024-03-06 07:20 PM PST -raviteja4117,2024-03-07T03:24:51Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1982281119) at 2024-03-06 07:24 PM PST -raviteja4117,2024-03-07T14:33:47Z,- raviteja4117 commented on issue: [6299](https://github.com/hackforla/website/issues/6299#issuecomment-1983634045) at 2024-03-07 06:33 AM PST -raviteja4117,2024-03-09T01:08:15Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1986669069) at 2024-03-08 06:08 PM PDT -raviteja4117,2024-03-10T02:19:38Z,- raviteja4117 commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1987044456) at 2024-03-09 07:19 PM PDT -raviteja4117,2024-03-31T01:17:58Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2028518551) at 2024-03-30 06:17 PM PDT -raviteja4117,2024-03-31T03:05:42Z,- raviteja4117 pull request merged: [6411](https://github.com/hackforla/website/pull/6411#event-12302220558) at 2024-03-30 08:05 PM PDT -raviteja4117,2024-04-16T00:21:30Z,- raviteja4117 commented on issue: [4999](https://github.com/hackforla/website/issues/4999#issuecomment-2058023966) at 2024-04-15 05:21 PM PDT -raviteja4117,2024-04-16T00:24:03Z,- raviteja4117 assigned to issue: [6494](https://github.com/hackforla/website/issues/6494) at 2024-04-15 05:24 PM PDT -raviteja4117,2024-04-16T00:25:27Z,- raviteja4117 commented on issue: [6494](https://github.com/hackforla/website/issues/6494#issuecomment-2058026997) at 2024-04-15 05:25 PM PDT -rblaz001,2020-07-26T18:45:22Z,- rblaz001 assigned to issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664025382) at 2020-07-26 11:45 AM PDT -rblaz001,2020-07-27T06:21:09Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664143908) at 2020-07-26 11:21 PM PDT -rblaz001,2020-07-27T17:20:29Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664528437) at 2020-07-27 10:20 AM PDT -rblaz001,2020-07-27T18:41:27Z,- rblaz001 opened pull request: [647](https://github.com/hackforla/website/pull/647) at 2020-07-27 11:41 AM PDT -rblaz001,2020-07-28T03:13:22Z,- rblaz001 commented on pull request: [647](https://github.com/hackforla/website/pull/647#issuecomment-664750829) at 2020-07-27 08:13 PM PDT -rblaz001,2020-07-28T03:14:30Z,- rblaz001 commented on issue: [628](https://github.com/hackforla/website/issues/628#issuecomment-664751108) at 2020-07-27 08:14 PM PDT -rblaz001,2020-07-29T02:24:07Z,- rblaz001 pull request merged: [647](https://github.com/hackforla/website/pull/647#event-3596980425) at 2020-07-28 07:24 PM PDT -rblaz001,2020-07-29T02:35:37Z,- rblaz001 commented on pull request: [652](https://github.com/hackforla/website/pull/652#issuecomment-665395728) at 2020-07-28 07:35 PM PDT -rblaz001,2020-07-29T02:52:06Z,- rblaz001 submitted pull request review: [653](https://github.com/hackforla/website/pull/653#pullrequestreview-457159259) at 2020-07-28 07:52 PM PDT -rblaz001,2020-07-29T03:33:03Z,- rblaz001 assigned to issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-07-28 08:33 PM PDT -rblaz001,2020-07-29T03:39:06Z,- rblaz001 assigned to issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-606293101) at 2020-07-28 08:39 PM PDT -rblaz001,2020-07-29T03:40:10Z,- rblaz001 unassigned from issue: [526](https://github.com/hackforla/website/issues/526#issuecomment-652190550) at 2020-07-28 08:40 PM PDT -rblaz001,2020-08-01T21:48:03Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-667591154) at 2020-08-01 02:48 PM PDT -rblaz001,2020-08-09T17:06:54Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-671076829) at 2020-08-09 10:06 AM PDT -rblaz001,2020-08-09T19:07:42Z,- rblaz001 commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671089551) at 2020-08-09 12:07 PM PDT -rblaz001,2020-08-11T02:56:59Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-671695112) at 2020-08-10 07:56 PM PDT -rblaz001,2020-08-16T16:49:34Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674549815) at 2020-08-16 09:49 AM PDT -rblaz001,2020-08-16T17:25:19Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-674553724) at 2020-08-16 10:25 AM PDT -rblaz001,2020-08-20T01:57:08Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-676850408) at 2020-08-19 06:57 PM PDT -rblaz001,2020-08-20T07:40:21Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-677429689) at 2020-08-20 12:40 AM PDT -rblaz001,2020-08-23T10:34:23Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-678757388) at 2020-08-23 03:34 AM PDT -rblaz001,2020-08-30T16:11:19Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-683439125) at 2020-08-30 09:11 AM PDT -rblaz001,2020-09-12T20:25:51Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691542075) at 2020-09-12 01:25 PM PDT -rblaz001,2020-09-13T17:23:05Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691699213) at 2020-09-13 10:23 AM PDT -rblaz001,2020-09-13T17:36:55Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-691700842) at 2020-09-13 10:36 AM PDT -rblaz001,2020-09-20T16:56:45Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-695809704) at 2020-09-20 09:56 AM PDT -rblaz001,2020-09-26T18:47:38Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-699533582) at 2020-09-26 11:47 AM PDT -rblaz001,2020-10-11T17:19:35Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-706737530) at 2020-10-11 10:19 AM PDT -rblaz001,2020-10-11T18:36:27Z,- rblaz001 commented on pull request: [775](https://github.com/hackforla/website/pull/775#issuecomment-706748293) at 2020-10-11 11:36 AM PDT -rblaz001,2020-10-18T16:27:07Z,- rblaz001 commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-711275229) at 2020-10-18 09:27 AM PDT -rblaz001,2020-10-22T23:14:53Z,- rblaz001 commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-714812475) at 2020-10-22 04:14 PM PDT -rblaz001,2020-10-24T11:49:07Z,- rblaz001 commented on issue: [689](https://github.com/hackforla/website/issues/689#issuecomment-715903712) at 2020-10-24 04:49 AM PDT -rblaz001,2021-02-24T22:31:04Z,- rblaz001 unassigned from issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-785427876) at 2021-02-24 02:31 PM PST -rcpeng34,2025-05-13T03:17:39Z,- rcpeng34 commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2874942128) at 2025-05-12 08:17 PM PDT -rcurtis2,2021-07-21T22:36:36Z,- rcurtis2 commented on issue: [1995](https://github.com/hackforla/website/issues/1995#issuecomment-884542564) at 2021-07-21 03:36 PM PDT -rdhmdhl,4623,SKILLS ISSUE -rdhmdhl,2023-05-09T03:30:57Z,- rdhmdhl opened issue: [4623](https://github.com/hackforla/website/issues/4623) at 2023-05-08 08:30 PM PDT -rdhmdhl,2023-05-09T03:31:06Z,- rdhmdhl assigned to issue: [4623](https://github.com/hackforla/website/issues/4623) at 2023-05-08 08:31 PM PDT -rdhmdhl,2023-05-10T04:34:48Z,- rdhmdhl assigned to issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1529055394) at 2023-05-09 09:34 PM PDT -rdhmdhl,2023-05-10T04:50:03Z,- rdhmdhl opened pull request: [4645](https://github.com/hackforla/website/pull/4645) at 2023-05-09 09:50 PM PDT -rdhmdhl,2023-05-11T03:52:28Z,- rdhmdhl assigned to issue: [4485](https://github.com/hackforla/website/issues/4485) at 2023-05-10 08:52 PM PDT -rdhmdhl,2023-05-11T04:14:34Z,- rdhmdhl pull request closed w/o merging: [4645](https://github.com/hackforla/website/pull/4645#event-9217702576) at 2023-05-10 09:14 PM PDT -rdhmdhl,2023-05-11T05:00:15Z,- rdhmdhl closed issue as completed: [4485](https://github.com/hackforla/website/issues/4485#event-9217884689) at 2023-05-10 10:00 PM PDT -rdhmdhl,2023-05-11T05:07:41Z,- rdhmdhl opened pull request: [4651](https://github.com/hackforla/website/pull/4651) at 2023-05-10 10:07 PM PDT -rdhmdhl,2023-05-14T19:46:36Z,- rdhmdhl submitted pull request review: [4666](https://github.com/hackforla/website/pull/4666#pullrequestreview-1425594000) at 2023-05-14 12:46 PM PDT -rdhmdhl,2023-05-14T20:09:14Z,- rdhmdhl submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1425595989) at 2023-05-14 01:09 PM PDT -rdhmdhl,2023-05-14T22:53:10Z,- rdhmdhl assigned to issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1544464154) at 2023-05-14 03:53 PM PDT -rdhmdhl,2023-05-14T23:20:08Z,- rdhmdhl opened pull request: [4667](https://github.com/hackforla/website/pull/4667) at 2023-05-14 04:20 PM PDT -rdhmdhl,2023-05-14T23:27:32Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1547026761) at 2023-05-14 04:27 PM PDT -rdhmdhl,2023-05-14T23:31:18Z,- rdhmdhl commented on issue: [4605](https://github.com/hackforla/website/issues/4605#issuecomment-1547027773) at 2023-05-14 04:31 PM PDT -rdhmdhl,2023-05-16T16:30:50Z,- rdhmdhl unassigned from issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1549999356) at 2023-05-16 09:30 AM PDT -rdhmdhl,2023-05-17T01:47:07Z,- rdhmdhl pull request merged: [4667](https://github.com/hackforla/website/pull/4667#event-9263819062) at 2023-05-16 06:47 PM PDT -rdhmdhl,2023-05-17T01:50:32Z,- rdhmdhl pull request closed w/o merging: [4651](https://github.com/hackforla/website/pull/4651#event-9263833874) at 2023-05-16 06:50 PM PDT -rdhmdhl,2023-05-17T04:06:55Z,- rdhmdhl commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1550668976) at 2023-05-16 09:06 PM PDT -rdhmdhl,2023-05-17T17:14:50Z,- rdhmdhl commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1551781555) at 2023-05-17 10:14 AM PDT -rdhmdhl,2023-05-19T00:48:50Z,- rdhmdhl opened pull request: [4695](https://github.com/hackforla/website/pull/4695) at 2023-05-18 05:48 PM PDT -rdhmdhl,2023-05-19T00:53:52Z,- rdhmdhl opened pull request: [4696](https://github.com/hackforla/website/pull/4696) at 2023-05-18 05:53 PM PDT -rdhmdhl,2023-05-19T00:54:16Z,- rdhmdhl pull request closed w/o merging: [4696](https://github.com/hackforla/website/pull/4696#event-9284802954) at 2023-05-18 05:54 PM PDT -rdhmdhl,2023-05-19T01:23:19Z,- rdhmdhl opened pull request: [4697](https://github.com/hackforla/website/pull/4697) at 2023-05-18 06:23 PM PDT -rdhmdhl,2023-05-19T01:24:28Z,- rdhmdhl commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1553883870) at 2023-05-18 06:24 PM PDT -rdhmdhl,2023-05-21T15:44:08Z,- rdhmdhl pull request merged: [4697](https://github.com/hackforla/website/pull/4697#event-9296192877) at 2023-05-21 08:44 AM PDT -rdhmdhl,2023-05-21T17:37:55Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1556236134) at 2023-05-21 10:37 AM PDT -rdhmdhl,2023-05-24T01:33:45Z,- rdhmdhl assigned to issue: [4706](https://github.com/hackforla/website/issues/4706) at 2023-05-23 06:33 PM PDT -rdhmdhl,2023-05-24T01:34:42Z,- rdhmdhl commented on issue: [4706](https://github.com/hackforla/website/issues/4706#issuecomment-1560337842) at 2023-05-23 06:34 PM PDT -rdhmdhl,2023-05-24T02:14:56Z,- rdhmdhl opened pull request: [4710](https://github.com/hackforla/website/pull/4710) at 2023-05-23 07:14 PM PDT -rdhmdhl,2023-05-24T03:02:54Z,- rdhmdhl commented on pull request: [4710](https://github.com/hackforla/website/pull/4710#issuecomment-1560394505) at 2023-05-23 08:02 PM PDT -rdhmdhl,2023-05-25T04:17:19Z,- rdhmdhl commented on pull request: [4710](https://github.com/hackforla/website/pull/4710#issuecomment-1562239299) at 2023-05-24 09:17 PM PDT -rdhmdhl,2023-05-25T18:34:28Z,- rdhmdhl pull request merged: [4710](https://github.com/hackforla/website/pull/4710#event-9343295884) at 2023-05-25 11:34 AM PDT -rdhmdhl,2023-05-26T04:26:46Z,- rdhmdhl assigned to issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1547138979) at 2023-05-25 09:26 PM PDT -rdhmdhl,2023-05-26T04:29:31Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1563794590) at 2023-05-25 09:29 PM PDT -rdhmdhl,2023-05-29T18:55:38Z,- rdhmdhl commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1567426090) at 2023-05-29 11:55 AM PDT -rdhmdhl,2023-05-29T18:56:53Z,- rdhmdhl commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1567426809) at 2023-05-29 11:56 AM PDT -rdhmdhl,2023-05-29T21:36:26Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1567533798) at 2023-05-29 02:36 PM PDT -rdhmdhl,2023-05-29T21:48:09Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1567539390) at 2023-05-29 02:48 PM PDT -rdhmdhl,2023-05-30T23:59:16Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1569296229) at 2023-05-30 04:59 PM PDT -rdhmdhl,2023-05-31T01:35:04Z,- rdhmdhl commented on pull request: [4746](https://github.com/hackforla/website/pull/4746#issuecomment-1569362340) at 2023-05-30 06:35 PM PDT -rdhmdhl,2023-06-01T08:22:55Z,- rdhmdhl opened issue: [4766](https://github.com/hackforla/website/issues/4766) at 2023-06-01 01:22 AM PDT -rdhmdhl,2023-06-11T17:26:48Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1586255961) at 2023-06-11 10:26 AM PDT -rdhmdhl,2023-06-14T00:51:27Z,- rdhmdhl commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1590262840) at 2023-06-13 05:51 PM PDT -rdhmdhl,2023-06-27T03:37:32Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1608729725) at 2023-06-26 08:37 PM PDT -rdhmdhl,2023-06-28T02:43:29Z,- rdhmdhl submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1502160893) at 2023-06-27 07:43 PM PDT -rdhmdhl,2023-07-09T18:29:59Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1627790646) at 2023-07-09 11:29 AM PDT -rdhmdhl,2023-07-12T02:26:01Z,- rdhmdhl commented on pull request: [4926](https://github.com/hackforla/website/pull/4926#issuecomment-1631753931) at 2023-07-11 07:26 PM PDT -rdhmdhl,2023-07-12T22:42:27Z,- rdhmdhl submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1527330233) at 2023-07-12 03:42 PM PDT -rdhmdhl,2023-07-13T01:17:27Z,- rdhmdhl submitted pull request review: [4926](https://github.com/hackforla/website/pull/4926#pullrequestreview-1527428808) at 2023-07-12 06:17 PM PDT -rdhmdhl,2023-07-19T00:38:36Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1641202769) at 2023-07-18 05:38 PM PDT -rdhmdhl,2023-07-21T22:08:24Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1646282976) at 2023-07-21 03:08 PM PDT -rdhmdhl,2023-07-26T03:40:29Z,- rdhmdhl commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1650930065) at 2023-07-25 08:40 PM PDT -rdhmdhl,2023-08-03T22:52:58Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1664736096) at 2023-08-03 03:52 PM PDT -rdhmdhl,2023-08-03T22:55:16Z,- rdhmdhl commented on issue: [4623](https://github.com/hackforla/website/issues/4623#issuecomment-1664737655) at 2023-08-03 03:55 PM PDT -rdhmdhl,2023-08-15T02:01:29Z,- rdhmdhl opened issue: [5205](https://github.com/hackforla/website/issues/5205) at 2023-08-14 07:01 PM PDT -rdhmdhl,2023-08-15T02:01:29Z,- rdhmdhl assigned to issue: [5205](https://github.com/hackforla/website/issues/5205) at 2023-08-14 07:01 PM PDT -rdhmdhl,2024-01-26T21:35:09Z,- rdhmdhl unassigned from issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1912726743) at 2024-01-26 01:35 PM PST -rdpfeifle,3789,SKILLS ISSUE -rdpfeifle,2023-01-04T04:49:22Z,- rdpfeifle opened issue: [3789](https://github.com/hackforla/website/issues/3789) at 2023-01-03 08:49 PM PST -rdpfeifle,2023-01-09T14:54:04Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1375742194) at 2023-01-09 06:54 AM PST -rdpfeifle,2023-01-09T16:56:19Z,- rdpfeifle assigned to issue: [2865](https://github.com/hackforla/website/issues/2865#issuecomment-1048467439) at 2023-01-09 08:56 AM PST -rdpfeifle,2023-01-09T17:37:04Z,- rdpfeifle opened pull request: [3799](https://github.com/hackforla/website/pull/3799) at 2023-01-09 09:37 AM PST -rdpfeifle,2023-01-09T23:28:40Z,- rdpfeifle commented on issue: [2865](https://github.com/hackforla/website/issues/2865#issuecomment-1376487631) at 2023-01-09 03:28 PM PST -rdpfeifle,2023-01-09T23:28:40Z,- rdpfeifle closed issue by PR 3799: [2865](https://github.com/hackforla/website/issues/2865#event-8186803167) at 2023-01-09 03:28 PM PST -rdpfeifle,2023-01-09T23:34:56Z,- rdpfeifle reopened issue: [2865](https://github.com/hackforla/website/issues/2865#event-8186803167) at 2023-01-09 03:34 PM PST -rdpfeifle,2023-01-09T23:36:25Z,- rdpfeifle closed issue by PR 3799: [2865](https://github.com/hackforla/website/issues/2865#event-8186836537) at 2023-01-09 03:36 PM PST -rdpfeifle,2023-01-10T00:10:39Z,- rdpfeifle pull request merged: [3799](https://github.com/hackforla/website/pull/3799#event-8186985915) at 2023-01-09 04:10 PM PST -rdpfeifle,2023-01-10T15:36:21Z,- rdpfeifle commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1377455501) at 2023-01-10 07:36 AM PST -rdpfeifle,2023-01-10T15:46:04Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1377468948) at 2023-01-10 07:46 AM PST -rdpfeifle,2023-01-10T15:48:08Z,- rdpfeifle commented on pull request: [3799](https://github.com/hackforla/website/pull/3799#issuecomment-1377471827) at 2023-01-10 07:48 AM PST -rdpfeifle,2023-01-10T16:24:14Z,- rdpfeifle closed issue as completed: [3789](https://github.com/hackforla/website/issues/3789#event-8193713336) at 2023-01-10 08:24 AM PST -rdpfeifle,2023-01-10T16:25:21Z,- rdpfeifle assigned to issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1166614411) at 2023-01-10 08:25 AM PST -rdpfeifle,2023-01-13T17:29:50Z,- rdpfeifle commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1382169766) at 2023-01-13 09:29 AM PST -rdpfeifle,2023-01-15T16:52:37Z,- rdpfeifle commented on issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1383198934) at 2023-01-15 08:52 AM PST -rdpfeifle,2023-01-15T16:53:38Z,- rdpfeifle unassigned from issue: [3309](https://github.com/hackforla/website/issues/3309#issuecomment-1383198934) at 2023-01-15 08:53 AM PST -rdpfeifle,2023-01-15T16:59:33Z,- rdpfeifle assigned to issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1116721538) at 2023-01-15 08:59 AM PST -rdpfeifle,2023-01-15T17:11:39Z,- rdpfeifle commented on issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1383203306) at 2023-01-15 09:11 AM PST -rdpfeifle,2023-01-15T17:24:25Z,- rdpfeifle opened pull request: [3817](https://github.com/hackforla/website/pull/3817) at 2023-01-15 09:24 AM PST -rdpfeifle,2023-01-15T17:26:30Z,- rdpfeifle commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1383206580) at 2023-01-15 09:26 AM PST -rdpfeifle,2023-01-15T17:29:50Z,- rdpfeifle assigned to issue: [3789](https://github.com/hackforla/website/issues/3789#event-8193713336) at 2023-01-15 09:29 AM PST -rdpfeifle,2023-01-15T17:34:27Z,- rdpfeifle commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1383208062) at 2023-01-15 09:34 AM PST -rdpfeifle,2023-01-15T17:43:27Z,- rdpfeifle commented on issue: [3091](https://github.com/hackforla/website/issues/3091#issuecomment-1383210011) at 2023-01-15 09:43 AM PST -rdpfeifle,2023-01-17T15:57:08Z,- rdpfeifle pull request merged: [3817](https://github.com/hackforla/website/pull/3817#event-8247174568) at 2023-01-17 07:57 AM PST -rdpfeifle,2023-01-20T02:22:17Z,- rdpfeifle commented on pull request: [3817](https://github.com/hackforla/website/pull/3817#issuecomment-1397847550) at 2023-01-19 06:22 PM PST -rdpfeifle,2023-01-20T16:18:05Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1398619628) at 2023-01-20 08:18 AM PST -rdpfeifle,2023-02-07T22:03:24Z,- rdpfeifle commented on issue: [3789](https://github.com/hackforla/website/issues/3789#issuecomment-1421520391) at 2023-02-07 02:03 PM PST -regular-polygon,6605,SKILLS ISSUE -regular-polygon,2024-04-09T03:05:09Z,- regular-polygon opened issue: [6605](https://github.com/hackforla/website/issues/6605) at 2024-04-08 08:05 PM PDT -regular-polygon,2024-04-09T03:05:15Z,- regular-polygon assigned to issue: [6605](https://github.com/hackforla/website/issues/6605) at 2024-04-08 08:05 PM PDT -regular-polygon,2024-04-14T23:48:45Z,- regular-polygon assigned to issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2020597060) at 2024-04-14 04:48 PM PDT -regular-polygon,2024-04-15T22:24:03Z,- regular-polygon commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2057911975) at 2024-04-15 03:24 PM PDT -regular-polygon,2024-04-15T22:25:10Z,- regular-polygon commented on issue: [6605](https://github.com/hackforla/website/issues/6605#issuecomment-2057913122) at 2024-04-15 03:25 PM PDT -regular-polygon,2024-04-15T23:24:34Z,- regular-polygon opened pull request: [6652](https://github.com/hackforla/website/pull/6652) at 2024-04-15 04:24 PM PDT -regular-polygon,2024-04-18T22:06:33Z,- regular-polygon pull request merged: [6652](https://github.com/hackforla/website/pull/6652#event-12529708762) at 2024-04-18 03:06 PM PDT -regular-polygon,2024-04-24T03:00:20Z,- regular-polygon assigned to issue: [6684](https://github.com/hackforla/website/issues/6684) at 2024-04-23 08:00 PM PDT -regular-polygon,2024-04-24T03:02:11Z,- regular-polygon commented on issue: [6684](https://github.com/hackforla/website/issues/6684#issuecomment-2073920099) at 2024-04-23 08:02 PM PDT -regular-polygon,2024-04-24T20:02:03Z,- regular-polygon opened pull request: [6745](https://github.com/hackforla/website/pull/6745) at 2024-04-24 01:02 PM PDT -regular-polygon,2024-04-28T16:54:18Z,- regular-polygon pull request merged: [6745](https://github.com/hackforla/website/pull/6745#event-12635310121) at 2024-04-28 09:54 AM PDT -render,2021-06-22T06:08:00Z,- render commented on pull request: [1808](https://github.com/hackforla/website/pull/1808#issuecomment-865625207) at 2021-06-21 11:08 PM PDT -Retr0-XD,2023-06-13T00:26:05Z,- Retr0-XD commented on issue: [4769](https://github.com/hackforla/website/issues/4769#issuecomment-1588287349) at 2023-06-12 05:26 PM PDT -rfambro2,2020-06-24T16:31:04Z,- rfambro2 opened issue: [588](https://github.com/hackforla/website/issues/588) at 2020-06-24 09:31 AM PDT -rfambro2,2020-06-24T16:31:28Z,- rfambro2 assigned to issue: [588](https://github.com/hackforla/website/issues/588) at 2020-06-24 09:31 AM PDT -rfambro2,2020-06-28T16:41:34Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650791465) at 2020-06-28 09:41 AM PDT -rfambro2,2020-06-28T19:11:38Z,- rfambro2 unassigned from issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-650808846) at 2020-06-28 12:11 PM PDT -rfambro2,2020-07-09T16:03:54Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-656213886) at 2020-07-09 09:03 AM PDT -rfambro2,2020-07-15T23:45:18Z,- rfambro2 commented on issue: [588](https://github.com/hackforla/website/issues/588#issuecomment-659071776) at 2020-07-15 04:45 PM PDT -rfambro2,2021-01-10T20:58:31Z,- rfambro2 assigned to issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 12:58 PM PST -rfambro2,2021-01-10T21:09:14Z,- rfambro2 unassigned from issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 01:09 PM PST -rfambro2,2021-01-17T16:33:55Z,- rfambro2 commented on issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-761840267) at 2021-01-17 08:33 AM PST -rh5140,2020-12-30T04:59:53Z,- rh5140 assigned to issue: [897](https://github.com/hackforla/website/issues/897) at 2020-12-29 08:59 PM PST -rh5140,2021-01-03T19:52:18Z,- rh5140 assigned to issue: [902](https://github.com/hackforla/website/issues/902#issuecomment-753657049) at 2021-01-03 11:52 AM PST -rh5140,2021-01-03T21:09:08Z,- rh5140 assigned to issue: [909](https://github.com/hackforla/website/issues/909) at 2021-01-03 01:09 PM PST -rh5140,2021-01-04T06:10:53Z,- rh5140 opened pull request: [914](https://github.com/hackforla/website/pull/914) at 2021-01-03 10:10 PM PST -rh5140,2021-01-04T06:11:05Z,- rh5140 pull request merged: [914](https://github.com/hackforla/website/pull/914#event-4163467949) at 2021-01-03 10:11 PM PST -rh5140,2021-01-04T08:01:25Z,- rh5140 commented on issue: [909](https://github.com/hackforla/website/issues/909#issuecomment-753821262) at 2021-01-04 12:01 AM PST -rh5140,2021-01-04T19:08:33Z,- rh5140 commented on issue: [909](https://github.com/hackforla/website/issues/909#issuecomment-754159529) at 2021-01-04 11:08 AM PST -rh5140,2021-01-04T19:08:33Z,- rh5140 closed issue as completed: [909](https://github.com/hackforla/website/issues/909#event-4166308727) at 2021-01-04 11:08 AM PST -rh5140,2021-01-06T03:30:33Z,- rh5140 commented on issue: [897](https://github.com/hackforla/website/issues/897#issuecomment-755054790) at 2021-01-05 07:30 PM PST -rh5140,2021-01-06T03:30:33Z,- rh5140 closed issue as completed: [897](https://github.com/hackforla/website/issues/897#event-4173194387) at 2021-01-05 07:30 PM PST -rh5140,2021-01-06T04:11:28Z,- rh5140 assigned to issue: [908](https://github.com/hackforla/website/issues/908) at 2021-01-05 08:11 PM PST -rh5140,2021-01-06T04:12:27Z,- rh5140 assigned to issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:12 PM PST -rh5140,2021-01-06T04:28:38Z,- rh5140 unassigned from issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:28 PM PST -rh5140,2021-01-10T20:11:46Z,- rh5140 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757536164) at 2021-01-10 12:11 PM PST -rh5140,2021-01-10T21:00:57Z,- rh5140 opened pull request: [926](https://github.com/hackforla/website/pull/926) at 2021-01-10 01:00 PM PST -rh5140,2021-01-10T21:01:47Z,- rh5140 commented on issue: [908](https://github.com/hackforla/website/issues/908#issuecomment-757543474) at 2021-01-10 01:01 PM PST -rh5140,2021-01-12T04:31:57Z,- rh5140 pull request merged: [926](https://github.com/hackforla/website/pull/926#event-4193938849) at 2021-01-11 08:31 PM PST -rh5140,2021-01-13T05:22:56Z,- rh5140 assigned to issue: [936](https://github.com/hackforla/website/issues/936) at 2021-01-12 09:22 PM PST -rh5140,2021-01-17T00:49:46Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-761707019) at 2021-01-16 04:49 PM PST -rh5140,2021-01-18T09:46:02Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-762125159) at 2021-01-18 01:46 AM PST -rh5140,2021-01-31T23:30:38Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-770471464) at 2021-01-31 03:30 PM PST -rh5140,2021-02-06T20:29:09Z,- rh5140 commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-06 12:29 PM PST -rh5140,2021-02-07T18:50:36Z,- rh5140 unassigned from issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-07 10:50 AM PST -rhiannab,2703,SKILLS ISSUE -rhiannab,2022-01-19T13:09:40Z,- rhiannab opened issue: [2703](https://github.com/hackforla/website/issues/2703) at 2022-01-19 05:09 AM PST -rhiannab,2022-01-21T21:06:26Z,- rhiannab closed issue as completed: [2703](https://github.com/hackforla/website/issues/2703#event-5934750758) at 2022-01-21 01:06 PM PST -rhoneriver,7842,SKILLS ISSUE -rhoneriver,2025-01-21T19:10:15Z,- rhoneriver opened issue: [7842](https://github.com/hackforla/website/issues/7842) at 2025-01-21 11:10 AM PST -rhoneriver,2025-01-21T19:11:50Z,- rhoneriver assigned to issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2605535134) at 2025-01-21 11:11 AM PST -rhoneriver,2025-01-21T19:17:29Z,- rhoneriver commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2605547434) at 2025-01-21 11:17 AM PST -rhoneriver,2025-01-21T19:19:56Z,- rhoneriver commented on issue: [7842](https://github.com/hackforla/website/issues/7842#issuecomment-2605551907) at 2025-01-21 11:19 AM PST -richardmundyiii,4170,SKILLS ISSUE -richardmundyiii,2023-03-14T03:23:11Z,- richardmundyiii opened issue: [4170](https://github.com/hackforla/website/issues/4170) at 2023-03-13 08:23 PM PDT -richardmundyiii,2023-03-14T03:31:19Z,- richardmundyiii assigned to issue: [4170](https://github.com/hackforla/website/issues/4170#issuecomment-1467293481) at 2023-03-13 08:31 PM PDT -richardmundyiii,2023-03-14T04:35:17Z,- richardmundyiii assigned to issue: [4014](https://github.com/hackforla/website/issues/4014) at 2023-03-13 09:35 PM PDT -richardmundyiii,2023-03-14T04:36:28Z,- richardmundyiii commented on issue: [4014](https://github.com/hackforla/website/issues/4014#issuecomment-1467342600) at 2023-03-13 09:36 PM PDT -richardmundyiii,2023-03-14T05:24:02Z,- richardmundyiii opened pull request: [4175](https://github.com/hackforla/website/pull/4175) at 2023-03-13 10:24 PM PDT -richardmundyiii,2023-03-14T05:29:26Z,- richardmundyiii commented on issue: [4014](https://github.com/hackforla/website/issues/4014#issuecomment-1467390477) at 2023-03-13 10:29 PM PDT -richardmundyiii,2023-03-14T13:21:23Z,- richardmundyiii assigned to issue: [4013](https://github.com/hackforla/website/issues/4013) at 2023-03-14 06:21 AM PDT -richardmundyiii,2023-03-14T13:23:23Z,- richardmundyiii commented on issue: [4013](https://github.com/hackforla/website/issues/4013#issuecomment-1468096796) at 2023-03-14 06:23 AM PDT -richardmundyiii,2023-03-14T13:36:39Z,- richardmundyiii opened pull request: [4176](https://github.com/hackforla/website/pull/4176) at 2023-03-14 06:36 AM PDT -richardmundyiii,2023-03-15T05:27:05Z,- richardmundyiii pull request merged: [4175](https://github.com/hackforla/website/pull/4175#event-8751179922) at 2023-03-14 10:27 PM PDT -richardmundyiii,2023-03-17T00:45:08Z,- richardmundyiii pull request merged: [4176](https://github.com/hackforla/website/pull/4176#event-8773226893) at 2023-03-16 05:45 PM PDT -richardmundyiii,2023-03-17T03:45:32Z,- richardmundyiii assigned to issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1442319971) at 2023-03-16 08:45 PM PDT -richardmundyiii,2023-03-17T03:48:45Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1473083483) at 2023-03-16 08:48 PM PDT -richardmundyiii,2023-03-17T04:50:34Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1473125989) at 2023-03-16 09:50 PM PDT -richardmundyiii,2023-03-17T05:10:47Z,- richardmundyiii commented on pull request: [4199](https://github.com/hackforla/website/pull/4199#issuecomment-1473140576) at 2023-03-16 10:10 PM PDT -richardmundyiii,2023-03-17T05:41:24Z,- richardmundyiii submitted pull request review: [4199](https://github.com/hackforla/website/pull/4199#pullrequestreview-1345305659) at 2023-03-16 10:41 PM PDT -richardmundyiii,2023-03-17T05:46:16Z,- richardmundyiii commented on pull request: [4198](https://github.com/hackforla/website/pull/4198#issuecomment-1473166894) at 2023-03-16 10:46 PM PDT -richardmundyiii,2023-03-17T06:06:27Z,- richardmundyiii submitted pull request review: [4198](https://github.com/hackforla/website/pull/4198#pullrequestreview-1345328735) at 2023-03-16 11:06 PM PDT -richardmundyiii,2023-03-18T23:24:23Z,- richardmundyiii commented on pull request: [3631](https://github.com/hackforla/website/pull/3631#issuecomment-1475029296) at 2023-03-18 04:24 PM PDT -richardmundyiii,2023-03-18T23:39:47Z,- richardmundyiii submitted pull request review: [3631](https://github.com/hackforla/website/pull/3631#pullrequestreview-1347313443) at 2023-03-18 04:39 PM PDT -richardmundyiii,2023-03-18T23:48:23Z,- richardmundyiii submitted pull request review: [3807](https://github.com/hackforla/website/pull/3807#pullrequestreview-1347316113) at 2023-03-18 04:48 PM PDT -richardmundyiii,2023-03-18T23:52:29Z,- richardmundyiii commented on pull request: [4209](https://github.com/hackforla/website/pull/4209#issuecomment-1475035901) at 2023-03-18 04:52 PM PDT -richardmundyiii,2023-03-18T23:58:45Z,- richardmundyiii submitted pull request review: [4209](https://github.com/hackforla/website/pull/4209#pullrequestreview-1347322450) at 2023-03-18 04:58 PM PDT -richardmundyiii,2023-03-19T00:01:37Z,- richardmundyiii commented on pull request: [4207](https://github.com/hackforla/website/pull/4207#issuecomment-1475038306) at 2023-03-18 05:01 PM PDT -richardmundyiii,2023-03-19T00:04:48Z,- richardmundyiii submitted pull request review: [4207](https://github.com/hackforla/website/pull/4207#pullrequestreview-1347323810) at 2023-03-18 05:04 PM PDT -richardmundyiii,2023-03-19T18:42:04Z,- richardmundyiii commented on issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1475357421) at 2023-03-19 11:42 AM PDT -richardmundyiii,2023-03-19T18:42:04Z,- richardmundyiii closed issue as completed: [4033](https://github.com/hackforla/website/issues/4033#event-8788437005) at 2023-03-19 11:42 AM PDT -richardmundyiii,2023-03-19T19:04:41Z,- richardmundyiii assigned to issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1457317410) at 2023-03-19 12:04 PM PDT -richardmundyiii,2023-03-19T19:05:07Z,- richardmundyiii commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475363859) at 2023-03-19 12:05 PM PDT -richardmundyiii,2023-03-20T00:01:33Z,- richardmundyiii commented on issue: [4088](https://github.com/hackforla/website/issues/4088#issuecomment-1475443596) at 2023-03-19 05:01 PM PDT -richardmundyiii,2023-03-23T07:43:28Z,- richardmundyiii opened pull request: [4259](https://github.com/hackforla/website/pull/4259) at 2023-03-23 12:43 AM PDT -richardmundyiii,2023-03-25T19:43:00Z,- richardmundyiii commented on pull request: [4259](https://github.com/hackforla/website/pull/4259#issuecomment-1483906498) at 2023-03-25 12:43 PM PDT -richardmundyiii,2023-03-26T18:18:24Z,- richardmundyiii commented on pull request: [4274](https://github.com/hackforla/website/pull/4274#issuecomment-1484177895) at 2023-03-26 11:18 AM PDT -richardmundyiii,2023-03-26T21:14:52Z,- richardmundyiii pull request merged: [4259](https://github.com/hackforla/website/pull/4259#event-8848133863) at 2023-03-26 02:14 PM PDT -richardmundyiii,2023-03-28T20:20:07Z,- richardmundyiii assigned to issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1482089887) at 2023-03-28 01:20 PM PDT -richardmundyiii,2023-03-28T20:21:13Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1487543430) at 2023-03-28 01:21 PM PDT -richardmundyiii,2023-04-08T20:18:42Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1500970376) at 2023-04-08 01:18 PM PDT -richardmundyiii,2023-04-08T20:20:41Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1500970711) at 2023-04-08 01:20 PM PDT -richardmundyiii,2023-04-12T05:53:18Z,- richardmundyiii commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1504696228) at 2023-04-11 10:53 PM PDT -richardmundyiii,2023-05-15T03:10:48Z,- richardmundyiii unassigned from issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1547131193) at 2023-05-14 08:10 PM PDT -Richey24,3121,SKILLS ISSUE -Richey24,2022-05-11T03:16:49Z,- Richey24 opened issue: [3121](https://github.com/hackforla/website/issues/3121) at 2022-05-10 08:16 PM PDT -Richey24,2022-05-11T03:20:00Z,- Richey24 assigned to issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1123135963) at 2022-05-10 08:20 PM PDT -riddle015,2701,SKILLS ISSUE -riddle015,2022-01-19T03:56:10Z,- riddle015 opened issue: [2701](https://github.com/hackforla/website/issues/2701) at 2022-01-18 07:56 PM PST -riddle015,2022-01-19T04:03:24Z,- riddle015 assigned to issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1016056363) at 2022-01-18 08:03 PM PST -riddle015,2022-01-19T07:05:11Z,- riddle015 assigned to issue: [1564](https://github.com/hackforla/website/issues/1564) at 2022-01-18 11:05 PM PST -riddle015,2022-01-19T07:10:17Z,- riddle015 commented on issue: [1564](https://github.com/hackforla/website/issues/1564#issuecomment-1016146546) at 2022-01-18 11:10 PM PST -riddle015,2022-01-24T01:05:05Z,- riddle015 opened pull request: [2714](https://github.com/hackforla/website/pull/2714) at 2022-01-23 05:05 PM PST -riddle015,2022-01-24T01:23:02Z,- riddle015 assigned to issue: [2238](https://github.com/hackforla/website/issues/2238) at 2022-01-23 05:23 PM PST -riddle015,2022-01-27T23:23:21Z,- riddle015 pull request merged: [2714](https://github.com/hackforla/website/pull/2714#event-5967346978) at 2022-01-27 03:23 PM PST -riddle015,2022-02-02T15:01:31Z,- riddle015 commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1028028791) at 2022-02-02 07:01 AM PST -riddle015,2022-02-02T15:08:05Z,- riddle015 commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1028035551) at 2022-02-02 07:08 AM PST -riddle015,2022-02-20T20:00:31Z,- riddle015 opened issue: [2806](https://github.com/hackforla/website/issues/2806) at 2022-02-20 12:00 PM PST -riddle015,2022-03-13T17:22:49Z,- riddle015 commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1066145718) at 2022-03-13 10:22 AM PDT -riddle015,2022-03-13T17:23:40Z,- riddle015 commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1066145835) at 2022-03-13 10:23 AM PDT -riddle015,2022-03-13T17:30:09Z,- riddle015 commented on pull request: [2973](https://github.com/hackforla/website/pull/2973#issuecomment-1066146856) at 2022-03-13 10:30 AM PDT -riddle015,2022-03-20T22:26:19Z,- riddle015 opened pull request: [2995](https://github.com/hackforla/website/pull/2995) at 2022-03-20 03:26 PM PDT -riddle015,2022-03-21T07:48:14Z,- riddle015 pull request merged: [2995](https://github.com/hackforla/website/pull/2995#event-6273326509) at 2022-03-21 12:48 AM PDT -riddle015,2022-03-27T17:19:44Z,- riddle015 closed issue by PR 3961: [2806](https://github.com/hackforla/website/issues/2806#event-6313998924) at 2022-03-27 10:19 AM PDT -riddle015,2022-04-17T20:33:18Z,- riddle015 assigned to issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1100208451) at 2022-04-17 01:33 PM PDT -riddle015,2022-04-20T19:46:54Z,- riddle015 unassigned from issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1104392914) at 2022-04-20 12:46 PM PDT -riddle015,2022-05-13T05:16:04Z,- riddle015 assigned to issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1075792069) at 2022-05-12 10:16 PM PDT -riddle015,2022-05-29T17:28:48Z,- riddle015 commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1140492052) at 2022-05-29 10:28 AM PDT -riddle015,2022-06-12T05:58:11Z,- riddle015 opened pull request: [3237](https://github.com/hackforla/website/pull/3237) at 2022-06-11 10:58 PM PDT -riddle015,2022-06-12T06:06:07Z,- riddle015 commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1153080649) at 2022-06-11 11:06 PM PDT -riddle015,2022-06-15T20:37:44Z,- riddle015 pull request merged: [3237](https://github.com/hackforla/website/pull/3237#event-6815991591) at 2022-06-15 01:37 PM PDT -riddle015,2022-06-26T17:28:29Z,- riddle015 commented on pull request: [3301](https://github.com/hackforla/website/pull/3301#issuecomment-1166595198) at 2022-06-26 10:28 AM PDT -riddle015,2022-06-26T17:58:45Z,- riddle015 opened issue: [3305](https://github.com/hackforla/website/issues/3305) at 2022-06-26 10:58 AM PDT -riddle015,2022-06-26T18:53:54Z,- riddle015 opened issue: [3311](https://github.com/hackforla/website/issues/3311) at 2022-06-26 11:53 AM PDT -riddle015,2022-08-21T17:13:03Z,- riddle015 assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-997282293) at 2022-08-21 10:13 AM PDT -riddle015,2022-10-02T18:47:22Z,- riddle015 unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1261125508) at 2022-10-02 11:47 AM PDT -Ris345,4997,SKILLS ISSUE -Ris345,2023-07-18T02:34:04Z,- Ris345 opened issue: [4997](https://github.com/hackforla/website/issues/4997) at 2023-07-17 07:34 PM PDT -Ris345,2023-07-18T02:34:30Z,- Ris345 assigned to issue: [4997](https://github.com/hackforla/website/issues/4997#issuecomment-1639188615) at 2023-07-17 07:34 PM PDT -Ris345,2023-07-21T16:58:41Z,- Ris345 assigned to issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1643691982) at 2023-07-21 09:58 AM PDT -Ris345,2023-07-21T17:00:11Z,- Ris345 commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1645996006) at 2023-07-21 10:00 AM PDT -Ris345,2023-07-22T00:12:33Z,- Ris345 opened pull request: [5047](https://github.com/hackforla/website/pull/5047) at 2023-07-21 05:12 PM PDT -Ris345,2023-07-22T11:58:51Z,- Ris345 unassigned from issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1646566548) at 2023-07-22 04:58 AM PDT -Ris345,2023-07-22T12:19:14Z,- Ris345 pull request closed w/o merging: [5047](https://github.com/hackforla/website/pull/5047#event-9891035205) at 2023-07-22 05:19 AM PDT -Ris345,2023-07-22T15:11:15Z,- Ris345 commented on pull request: [5047](https://github.com/hackforla/website/pull/5047#issuecomment-1646604195) at 2023-07-22 08:11 AM PDT -Ris345,2023-07-22T16:05:54Z,- Ris345 assigned to issue: [5036](https://github.com/hackforla/website/issues/5036) at 2023-07-22 09:05 AM PDT -Ris345,2023-07-22T16:06:46Z,- Ris345 commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-22 09:06 AM PDT -Ris345,2023-07-22T19:00:52Z,- Ris345 opened pull request: [5050](https://github.com/hackforla/website/pull/5050) at 2023-07-22 12:00 PM PDT -Ris345,2023-07-23T17:10:56Z,- Ris345 pull request closed w/o merging: [5050](https://github.com/hackforla/website/pull/5050#event-9893137292) at 2023-07-23 10:10 AM PDT -Ris345,2023-07-23T17:16:15Z,- Ris345 unassigned from issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-23 10:16 AM PDT -Ris345,2023-07-26T12:06:53Z,- Ris345 assigned to issue: [4917](https://github.com/hackforla/website/issues/4917) at 2023-07-26 05:06 AM PDT -Ris345,2023-07-26T12:09:04Z,- Ris345 commented on issue: [4917](https://github.com/hackforla/website/issues/4917#issuecomment-1651680153) at 2023-07-26 05:09 AM PDT -Ris345,2023-07-26T13:11:16Z,- Ris345 opened pull request: [5095](https://github.com/hackforla/website/pull/5095) at 2023-07-26 06:11 AM PDT -Ris345,2023-07-27T02:08:52Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1652808632) at 2023-07-26 07:08 PM PDT -Ris345,2023-07-28T22:56:27Z,- Ris345 assigned to issue: [4812](https://github.com/hackforla/website/issues/4812) at 2023-07-28 03:56 PM PDT -Ris345,2023-07-28T23:46:04Z,- Ris345 unassigned from issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1656418240) at 2023-07-28 04:46 PM PDT -Ris345,2023-07-30T12:20:25Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657125657) at 2023-07-30 05:20 AM PDT -Ris345,2023-07-31T00:22:40Z,- Ris345 pull request merged: [5095](https://github.com/hackforla/website/pull/5095#event-9957754558) at 2023-07-30 05:22 PM PDT -Ris345,2023-07-31T00:56:47Z,- Ris345 commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1657339471) at 2023-07-30 05:56 PM PDT -Ris345,2023-07-31T01:31:09Z,- Ris345 assigned to issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1656418240) at 2023-07-30 06:31 PM PDT -Ris345,2023-07-31T01:36:31Z,- Ris345 commented on issue: [4812](https://github.com/hackforla/website/issues/4812#issuecomment-1657368117) at 2023-07-30 06:36 PM PDT -Ris345,2023-07-31T16:15:35Z,- Ris345 opened pull request: [5119](https://github.com/hackforla/website/pull/5119) at 2023-07-31 09:15 AM PDT -Ris345,2023-07-31T20:50:21Z,- Ris345 commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659142534) at 2023-07-31 01:50 PM PDT -Ris345,2023-08-01T21:04:26Z,- Ris345 commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1661091341) at 2023-08-01 02:04 PM PDT -Ris345,2023-08-04T02:26:48Z,- Ris345 pull request merged: [5119](https://github.com/hackforla/website/pull/5119#event-10004678373) at 2023-08-03 07:26 PM PDT -Ris345,2023-08-04T02:36:46Z,- Ris345 commented on pull request: [5119](https://github.com/hackforla/website/pull/5119#issuecomment-1664890835) at 2023-08-03 07:36 PM PDT -Ris345,2023-08-06T04:19:41Z,- Ris345 assigned to issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-08-05 09:19 PM PDT -Ris345,2023-08-06T04:20:11Z,- Ris345 unassigned from issue: [4756](https://github.com/hackforla/website/issues/4756#issuecomment-1568724364) at 2023-08-05 09:20 PM PDT -Ris345,2023-08-06T04:25:06Z,- Ris345 assigned to issue: [4786](https://github.com/hackforla/website/issues/4786) at 2023-08-05 09:25 PM PDT -Ris345,2023-08-06T04:28:12Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1666709619) at 2023-08-05 09:28 PM PDT -Ris345,2023-08-09T01:53:22Z,- Ris345 commented on issue: [4307](https://github.com/hackforla/website/issues/4307#issuecomment-1670539995) at 2023-08-08 06:53 PM PDT -Ris345,2023-08-09T03:03:24Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1670584024) at 2023-08-08 08:03 PM PDT -Ris345,2023-08-09T21:27:10Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672174421) at 2023-08-09 02:27 PM PDT -Ris345,2023-08-10T02:47:48Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1672470973) at 2023-08-09 07:47 PM PDT -Ris345,2023-08-10T22:52:05Z,- Ris345 commented on issue: [4786](https://github.com/hackforla/website/issues/4786#issuecomment-1674024288) at 2023-08-10 03:52 PM PDT -Ris345,2023-08-13T19:56:41Z,- Ris345 assigned to issue: [1838](https://github.com/hackforla/website/issues/1838) at 2023-08-13 12:56 PM PDT -Ris345,2023-08-13T20:10:01Z,- Ris345 unassigned from issue: [1838](https://github.com/hackforla/website/issues/1838) at 2023-08-13 01:10 PM PDT -Ris345,2023-08-22T00:22:40Z,- Ris345 assigned to issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1652978683) at 2023-08-21 05:22 PM PDT -Ris345,2023-08-22T00:23:57Z,- Ris345 commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1687234213) at 2023-08-21 05:23 PM PDT -Ris345,2023-08-25T18:50:02Z,- Ris345 unassigned from issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 11:50 AM PDT -Ris345,2023-08-26T22:50:48Z,- Ris345 assigned to issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1240328862) at 2023-08-26 03:50 PM PDT -Ris345,2023-08-26T22:56:52Z,- Ris345 commented on issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2023-08-26 03:56 PM PDT -Ris345,2023-09-07T00:07:56Z,- Ris345 unassigned from issue: [3522](https://github.com/hackforla/website/issues/3522#issuecomment-1694517776) at 2023-09-06 05:07 PM PDT -rleeoriginal,8095,SKILLS ISSUE -rleeoriginal,2025-04-29T02:59:27Z,- rleeoriginal opened issue: [8095](https://github.com/hackforla/website/issues/8095) at 2025-04-28 07:59 PM PDT -rleeoriginal,2025-04-29T02:59:54Z,- rleeoriginal assigned to issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2837310557) at 2025-04-28 07:59 PM PDT -rleeoriginal,2025-04-29T03:51:53Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2837373761) at 2025-04-28 08:51 PM PDT -rleeoriginal,2025-04-30T01:20:28Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2840578793) at 2025-04-29 06:20 PM PDT -rleeoriginal,2025-05-02T20:38:01Z,- rleeoriginal assigned to issue: [8086](https://github.com/hackforla/website/issues/8086) at 2025-05-02 01:38 PM PDT -rleeoriginal,2025-05-02T20:38:16Z,- rleeoriginal unassigned from issue: [8086](https://github.com/hackforla/website/issues/8086) at 2025-05-02 01:38 PM PDT -rleeoriginal,2025-05-02T20:41:31Z,- rleeoriginal assigned to issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848078749) at 2025-05-02 01:41 PM PDT -rleeoriginal,2025-05-02T20:41:45Z,- rleeoriginal unassigned from issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848078749) at 2025-05-02 01:41 PM PDT -rleeoriginal,2025-05-02T20:43:33Z,- rleeoriginal assigned to issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848084742) at 2025-05-02 01:43 PM PDT -rleeoriginal,2025-05-02T20:43:49Z,- rleeoriginal unassigned from issue: [8086](https://github.com/hackforla/website/issues/8086#issuecomment-2848084742) at 2025-05-02 01:43 PM PDT -rleeoriginal,2025-05-02T20:52:27Z,- rleeoriginal assigned to issue: [7737](https://github.com/hackforla/website/issues/7737) at 2025-05-02 01:52 PM PDT -rleeoriginal,2025-05-02T21:10:22Z,- rleeoriginal commented on issue: [7737](https://github.com/hackforla/website/issues/7737#issuecomment-2848126476) at 2025-05-02 02:10 PM PDT -rleeoriginal,2025-05-03T01:09:46Z,- rleeoriginal opened pull request: [8114](https://github.com/hackforla/website/pull/8114) at 2025-05-02 06:09 PM PDT -rleeoriginal,2025-05-03T01:16:44Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2848341298) at 2025-05-02 06:16 PM PDT -rleeoriginal,2025-05-06T22:33:41Z,- rleeoriginal commented on issue: [8095](https://github.com/hackforla/website/issues/8095#issuecomment-2856291036) at 2025-05-06 03:33 PM PDT -rleeoriginal,2025-05-07T16:23:05Z,- rleeoriginal pull request merged: [8114](https://github.com/hackforla/website/pull/8114#event-17559727746) at 2025-05-07 09:23 AM PDT -rleeoriginal,2025-05-13T03:54:46Z,- rleeoriginal assigned to issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2667448949) at 2025-05-12 08:54 PM PDT -rleeoriginal,2025-05-13T04:02:04Z,- rleeoriginal commented on issue: [7926](https://github.com/hackforla/website/issues/7926#issuecomment-2874989937) at 2025-05-12 09:02 PM PDT -rleeoriginal,2025-05-15T04:05:50Z,- rleeoriginal opened pull request: [8141](https://github.com/hackforla/website/pull/8141) at 2025-05-14 09:05 PM PDT -rleeoriginal,2025-05-16T23:05:26Z,- rleeoriginal pull request merged: [8141](https://github.com/hackforla/website/pull/8141#event-17695292012) at 2025-05-16 04:05 PM PDT -rmayott,2021-07-15T18:28:59Z,- rmayott commented on issue: [1923](https://github.com/hackforla/website/issues/1923#issuecomment-880920680) at 2021-07-15 11:28 AM PDT -RobenusW,3190,SKILLS ISSUE -RobenusW,2022-06-01T03:58:34Z,- RobenusW opened issue: [3190](https://github.com/hackforla/website/issues/3190) at 2022-05-31 08:58 PM PDT -RobenusW,2022-06-01T04:22:05Z,- RobenusW assigned to issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1143090157) at 2022-05-31 09:22 PM PDT -RobenusW,2022-06-20T20:13:32Z,- RobenusW commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1160812716) at 2022-06-20 01:13 PM PDT -RobenusW,2022-06-23T21:06:20Z,- RobenusW commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1164873047) at 2022-06-23 02:06 PM PDT -RobenusW,2022-06-26T17:11:44Z,- RobenusW assigned to issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1047129584) at 2022-06-26 10:11 AM PDT -RobenusW,2022-06-26T17:30:29Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1166595665) at 2022-06-26 10:30 AM PDT -RobenusW,2022-06-26T17:45:12Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1166599006) at 2022-06-26 10:45 AM PDT -RobenusW,2022-06-26T18:54:07Z,- RobenusW opened issue: [3313](https://github.com/hackforla/website/issues/3313) at 2022-06-26 11:54 AM PDT -RobenusW,2022-07-11T23:09:39Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1181034076) at 2022-07-11 04:09 PM PDT -RobenusW,2022-07-11T23:11:45Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1181038010) at 2022-07-11 04:11 PM PDT -RobenusW,2022-07-13T01:03:56Z,- RobenusW opened pull request: [3362](https://github.com/hackforla/website/pull/3362) at 2022-07-12 06:03 PM PDT -RobenusW,2022-07-13T01:08:57Z,- RobenusW commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1182650589) at 2022-07-12 06:08 PM PDT -RobenusW,2022-07-14T02:06:36Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1183881996) at 2022-07-13 07:06 PM PDT -RobenusW,2022-07-14T02:07:01Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1183883816) at 2022-07-13 07:07 PM PDT -RobenusW,2022-07-16T05:21:50Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186093061) at 2022-07-15 10:21 PM PDT -RobenusW,2022-07-16T05:39:40Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186095013) at 2022-07-15 10:39 PM PDT -RobenusW,2022-07-18T04:43:52Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1186763938) at 2022-07-17 09:43 PM PDT -RobenusW,2022-07-20T02:49:54Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1189747172) at 2022-07-19 07:49 PM PDT -RobenusW,2022-07-23T04:26:48Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193057018) at 2022-07-22 09:26 PM PDT -RobenusW,2022-07-24T08:20:56Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193270693) at 2022-07-24 01:20 AM PDT -RobenusW,2022-07-25T04:33:21Z,- RobenusW commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1193566251) at 2022-07-24 09:33 PM PDT -RobenusW,2022-07-25T23:49:33Z,- RobenusW pull request closed w/o merging: [3362](https://github.com/hackforla/website/pull/3362#event-7060533483) at 2022-07-25 04:49 PM PDT -RobenusW,2022-07-26T00:52:56Z,- RobenusW opened pull request: [3428](https://github.com/hackforla/website/pull/3428) at 2022-07-25 05:52 PM PDT -RobenusW,2022-08-01T04:25:23Z,- RobenusW closed issue as completed: [3190](https://github.com/hackforla/website/issues/3190#event-7097910342) at 2022-07-31 09:25 PM PDT -RobenusW,2022-08-19T18:47:03Z,- RobenusW pull request closed w/o merging: [3428](https://github.com/hackforla/website/pull/3428#event-7224364319) at 2022-08-19 11:47 AM PDT -RobenusW,2023-03-23T01:08:24Z,- RobenusW unassigned from issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1421904264) at 2023-03-22 06:08 PM PDT -robert-f-ruff,6952,SKILLS ISSUE -robert-f-ruff,2024-06-04T03:10:39Z,- robert-f-ruff opened issue: [6952](https://github.com/hackforla/website/issues/6952) at 2024-06-03 08:10 PM PDT -robert-f-ruff,2024-06-04T03:10:54Z,- robert-f-ruff assigned to issue: [6952](https://github.com/hackforla/website/issues/6952#issuecomment-2146486201) at 2024-06-03 08:10 PM PDT -robert-g-rodriguez,5214,SKILLS ISSUE -robert-g-rodriguez,2023-08-15T02:58:06Z,- robert-g-rodriguez opened issue: [5214](https://github.com/hackforla/website/issues/5214) at 2023-08-14 07:58 PM PDT -robert-g-rodriguez,2023-08-15T02:58:07Z,- robert-g-rodriguez assigned to issue: [5214](https://github.com/hackforla/website/issues/5214) at 2023-08-14 07:58 PM PDT -robert-loo,4164,SKILLS ISSUE -robert-loo,2023-03-14T03:05:02Z,- robert-loo opened issue: [4164](https://github.com/hackforla/website/issues/4164) at 2023-03-13 08:05 PM PDT -robert-loo,2023-03-14T03:19:04Z,- robert-loo assigned to issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1467281966) at 2023-03-13 08:19 PM PDT -robert-loo,2023-03-27T05:06:18Z,- robert-loo commented on issue: [4164](https://github.com/hackforla/website/issues/4164#issuecomment-1484500883) at 2023-03-26 10:06 PM PDT -RobertaFricker,2021-03-24T03:13:02Z,- RobertaFricker assigned to issue: [1049](https://github.com/hackforla/website/issues/1049) at 2021-03-23 08:13 PM PDT -RobertaFricker,2021-04-07T01:33:11Z,- RobertaFricker opened pull request: [1365](https://github.com/hackforla/website/pull/1365) at 2021-04-06 06:33 PM PDT -RobertaFricker,2021-04-07T19:23:19Z,- RobertaFricker assigned to issue: [1048](https://github.com/hackforla/website/issues/1048#issuecomment-812906602) at 2021-04-07 12:23 PM PDT -RobertaFricker,2021-04-07T22:42:43Z,- RobertaFricker assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:42 PM PDT -RobertaFricker,2021-04-07T22:43:04Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-07T22:43:04Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-07T22:43:27Z,- RobertaFricker assigned to issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-07 03:43 PM PDT -RobertaFricker,2021-04-08T03:55:29Z,- RobertaFricker pull request merged: [1365](https://github.com/hackforla/website/pull/1365#event-4566181941) at 2021-04-07 08:55 PM PDT -RobertaFricker,2021-04-08T23:59:28Z,- RobertaFricker assigned to issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-08 04:59 PM PDT -RobertaFricker,2021-04-09T03:25:24Z,- RobertaFricker assigned to issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-815405373) at 2021-04-08 08:25 PM PDT -RobertaFricker,2021-04-09T03:26:54Z,- RobertaFricker commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-816374832) at 2021-04-08 08:26 PM PDT -RobertaFricker,2021-04-09T03:58:13Z,- RobertaFricker opened issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-08 08:58 PM PDT -RobertaFricker,2021-04-10T21:08:23Z,- RobertaFricker opened issue: [1390](https://github.com/hackforla/website/issues/1390) at 2021-04-10 02:08 PM PDT -RobertaFricker,2021-04-11T17:57:38Z,- RobertaFricker assigned to issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-11 10:57 AM PDT -RobertaFricker,2021-04-11T18:24:27Z,- RobertaFricker unassigned from issue: [1345](https://github.com/hackforla/website/issues/1345) at 2021-04-11 11:24 AM PDT -RobertaFricker,2021-04-11T18:24:54Z,- RobertaFricker unassigned from issue: [1319](https://github.com/hackforla/website/issues/1319) at 2021-04-11 11:24 AM PDT -RobertaFricker,2021-04-11T18:55:11Z,- RobertaFricker opened pull request: [1396](https://github.com/hackforla/website/pull/1396) at 2021-04-11 11:55 AM PDT -RobertaFricker,2021-04-12T19:06:12Z,- RobertaFricker commented on pull request: [1396](https://github.com/hackforla/website/pull/1396#issuecomment-818061508) at 2021-04-12 12:06 PM PDT -RobertaFricker,2021-04-12T19:09:10Z,- RobertaFricker commented on issue: [1345](https://github.com/hackforla/website/issues/1345#issuecomment-818063282) at 2021-04-12 12:09 PM PDT -RobertaFricker,2021-04-12T19:11:09Z,- RobertaFricker commented on pull request: [1396](https://github.com/hackforla/website/pull/1396#issuecomment-818064471) at 2021-04-12 12:11 PM PDT -RobertaFricker,2021-04-12T20:22:08Z,- RobertaFricker commented on issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818165420) at 2021-04-12 01:22 PM PDT -RobertaFricker,2021-04-12T20:23:39Z,- RobertaFricker commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-818168454) at 2021-04-12 01:23 PM PDT -RobertaFricker,2021-04-12T20:25:17Z,- RobertaFricker unassigned from issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-12 01:25 PM PDT -RobertaFricker,2021-04-12T20:26:36Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818165420) at 2021-04-12 01:26 PM PDT -RobertaFricker,2021-04-12T20:27:06Z,- RobertaFricker assigned to issue: [1382](https://github.com/hackforla/website/issues/1382) at 2021-04-12 01:27 PM PDT -RobertaFricker,2021-04-12T22:25:15Z,- RobertaFricker closed issue by PR 1400: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:25 PM PDT -RobertaFricker,2021-04-12T22:25:18Z,- RobertaFricker reopened issue: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:25 PM PDT -RobertaFricker,2021-04-12T22:26:11Z,- RobertaFricker assigned to issue: [1341](https://github.com/hackforla/website/issues/1341#event-4584857273) at 2021-04-12 03:26 PM PDT -RobertaFricker,2021-04-13T00:27:01Z,- RobertaFricker opened pull request: [1400](https://github.com/hackforla/website/pull/1400) at 2021-04-12 05:27 PM PDT -RobertaFricker,2021-04-13T02:21:11Z,- RobertaFricker pull request merged: [1396](https://github.com/hackforla/website/pull/1396#event-4585419383) at 2021-04-12 07:21 PM PDT -RobertaFricker,2021-04-13T18:04:01Z,- RobertaFricker pull request merged: [1400](https://github.com/hackforla/website/pull/1400#event-4589549467) at 2021-04-13 11:04 AM PDT -RobertaFricker,2021-04-13T19:07:25Z,- RobertaFricker assigned to issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-817250461) at 2021-04-13 12:07 PM PDT -RobertaFricker,2021-04-13T19:36:37Z,- RobertaFricker commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-819001504) at 2021-04-13 12:36 PM PDT -RobertaFricker,2021-04-13T19:41:32Z,- RobertaFricker commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-819004256) at 2021-04-13 12:41 PM PDT -RobertaFricker,2021-04-13T19:43:20Z,- RobertaFricker commented on issue: [1219](https://github.com/hackforla/website/issues/1219#issuecomment-819005341) at 2021-04-13 12:43 PM PDT -RobertaFricker,2021-04-13T19:51:17Z,- RobertaFricker opened pull request: [1403](https://github.com/hackforla/website/pull/1403) at 2021-04-13 12:51 PM PDT -RobertaFricker,2021-04-13T20:07:32Z,- RobertaFricker closed issue by PR 1541: [1346](https://github.com/hackforla/website/issues/1346#event-4590048717) at 2021-04-13 01:07 PM PDT -RobertaFricker,2021-04-13T20:08:55Z,- RobertaFricker closed issue by PR 1406: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:08 PM PDT -RobertaFricker,2021-04-13T20:10:51Z,- RobertaFricker closed issue as completed: [1196](https://github.com/hackforla/website/issues/1196#event-4590061962) at 2021-04-13 01:10 PM PDT -RobertaFricker,2021-04-13T20:13:57Z,- RobertaFricker assigned to issue: [1332](https://github.com/hackforla/website/issues/1332#event-4590054369) at 2021-04-13 01:13 PM PDT -RobertaFricker,2021-04-14T00:19:18Z,- RobertaFricker commented on pull request: [1400](https://github.com/hackforla/website/pull/1400#issuecomment-819132146) at 2021-04-13 05:19 PM PDT -RobertaFricker,2021-04-14T18:48:35Z,- RobertaFricker commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819751471) at 2021-04-14 11:48 AM PDT -RobertaFricker,2021-04-14T21:57:15Z,- RobertaFricker pull request merged: [1403](https://github.com/hackforla/website/pull/1403#event-4596031309) at 2021-04-14 02:57 PM PDT -RobertaFricker,2021-04-14T22:43:42Z,- RobertaFricker commented on issue: [1332](https://github.com/hackforla/website/issues/1332#issuecomment-819896428) at 2021-04-14 03:43 PM PDT -RobertaFricker,2021-04-15T02:00:38Z,- RobertaFricker opened pull request: [1406](https://github.com/hackforla/website/pull/1406) at 2021-04-14 07:00 PM PDT -RobertaFricker,2021-04-15T04:14:18Z,- RobertaFricker opened issue: [1407](https://github.com/hackforla/website/issues/1407) at 2021-04-14 09:14 PM PDT -RobertaFricker,2021-04-18T15:59:36Z,- RobertaFricker pull request merged: [1406](https://github.com/hackforla/website/pull/1406#event-4609232940) at 2021-04-18 08:59 AM PDT -RobertaFricker,2021-04-18T18:12:00Z,- RobertaFricker assigned to issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-818381680) at 2021-04-18 11:12 AM PDT -RobertaFricker,2021-04-20T23:55:37Z,- RobertaFricker assigned to issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816128653) at 2021-04-20 04:55 PM PDT -RobertaFricker,2021-04-21T00:22:45Z,- RobertaFricker commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-823686133) at 2021-04-20 05:22 PM PDT -RobertaFricker,2021-04-21T20:30:02Z,- RobertaFricker opened pull request: [1429](https://github.com/hackforla/website/pull/1429) at 2021-04-21 01:30 PM PDT -RobertaFricker,2021-04-22T01:23:49Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-21 06:23 PM PDT -RobertaFricker,2021-04-22T01:23:49Z,- RobertaFricker unassigned from issue: [1375](https://github.com/hackforla/website/issues/1375#issuecomment-822041856) at 2021-04-21 06:23 PM PDT -RobertaFricker,2021-04-22T05:33:33Z,- RobertaFricker commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-824551336) at 2021-04-21 10:33 PM PDT -RobertaFricker,2021-04-22T05:41:36Z,- RobertaFricker assigned to issue: [1414](https://github.com/hackforla/website/issues/1414) at 2021-04-21 10:41 PM PDT -RobertaFricker,2021-04-22T16:13:47Z,- RobertaFricker pull request merged: [1429](https://github.com/hackforla/website/pull/1429#event-4631885608) at 2021-04-22 09:13 AM PDT -RobertaFricker,2021-04-22T18:26:44Z,- RobertaFricker commented on issue: [1414](https://github.com/hackforla/website/issues/1414#issuecomment-825084794) at 2021-04-22 11:26 AM PDT -RobertaFricker,2021-04-22T18:35:14Z,- RobertaFricker opened pull request: [1433](https://github.com/hackforla/website/pull/1433) at 2021-04-22 11:35 AM PDT -RobertaFricker,2021-04-22T19:35:44Z,- RobertaFricker opened issue: [1434](https://github.com/hackforla/website/issues/1434) at 2021-04-22 12:35 PM PDT -RobertaFricker,2021-04-22T19:36:03Z,- RobertaFricker assigned to issue: [1434](https://github.com/hackforla/website/issues/1434) at 2021-04-22 12:36 PM PDT -RobertaFricker,2021-04-22T19:55:54Z,- RobertaFricker opened pull request: [1435](https://github.com/hackforla/website/pull/1435) at 2021-04-22 12:55 PM PDT -RobertaFricker,2021-04-23T03:26:14Z,- RobertaFricker assigned to issue: [1427](https://github.com/hackforla/website/issues/1427) at 2021-04-22 08:26 PM PDT -RobertaFricker,2021-04-23T16:49:57Z,- RobertaFricker pull request merged: [1435](https://github.com/hackforla/website/pull/1435#event-4637920350) at 2021-04-23 09:49 AM PDT -RobertaFricker,2021-04-23T17:49:15Z,- RobertaFricker commented on pull request: [1435](https://github.com/hackforla/website/pull/1435#issuecomment-825819154) at 2021-04-23 10:49 AM PDT -RobertaFricker,2021-04-23T23:30:38Z,- RobertaFricker assigned to issue: [1413](https://github.com/hackforla/website/issues/1413) at 2021-04-23 04:30 PM PDT -RobertaFricker,2021-04-24T01:01:41Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826009106) at 2021-04-23 06:01 PM PDT -RobertaFricker,2021-04-24T02:31:46Z,- RobertaFricker unassigned from issue: [1427](https://github.com/hackforla/website/issues/1427) at 2021-04-23 07:31 PM PDT -RobertaFricker,2021-04-24T02:58:01Z,- RobertaFricker opened issue: [1450](https://github.com/hackforla/website/issues/1450) at 2021-04-23 07:58 PM PDT -RobertaFricker,2021-04-24T02:58:01Z,- RobertaFricker assigned to issue: [1450](https://github.com/hackforla/website/issues/1450) at 2021-04-23 07:58 PM PDT -RobertaFricker,2021-04-24T03:41:39Z,- RobertaFricker opened pull request: [1451](https://github.com/hackforla/website/pull/1451) at 2021-04-23 08:41 PM PDT -RobertaFricker,2021-04-24T18:15:09Z,- RobertaFricker opened issue: [1453](https://github.com/hackforla/website/issues/1453) at 2021-04-24 11:15 AM PDT -RobertaFricker,2021-04-24T18:15:16Z,- RobertaFricker assigned to issue: [1453](https://github.com/hackforla/website/issues/1453) at 2021-04-24 11:15 AM PDT -RobertaFricker,2021-04-24T18:23:24Z,- RobertaFricker opened pull request: [1454](https://github.com/hackforla/website/pull/1454) at 2021-04-24 11:23 AM PDT -RobertaFricker,2021-04-24T19:12:23Z,- RobertaFricker pull request closed w/o merging: [1454](https://github.com/hackforla/website/pull/1454#event-4640280461) at 2021-04-24 12:12 PM PDT -RobertaFricker,2021-04-24T23:30:59Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-826166760) at 2021-04-24 04:30 PM PDT -RobertaFricker,2021-04-24T23:45:37Z,- RobertaFricker pull request merged: [1451](https://github.com/hackforla/website/pull/1451#event-4640474106) at 2021-04-24 04:45 PM PDT -RobertaFricker,2021-04-25T00:18:39Z,- RobertaFricker commented on issue: [1450](https://github.com/hackforla/website/issues/1450#issuecomment-826171613) at 2021-04-24 05:18 PM PDT -RobertaFricker,2021-04-25T03:53:13Z,- RobertaFricker commented on pull request: [1454](https://github.com/hackforla/website/pull/1454#issuecomment-826248276) at 2021-04-24 08:53 PM PDT -RobertaFricker,2021-04-27T03:56:42Z,- RobertaFricker assigned to issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-826359743) at 2021-04-26 08:56 PM PDT -RobertaFricker,2021-04-27T05:53:38Z,- RobertaFricker pull request merged: [1433](https://github.com/hackforla/website/pull/1433#event-4648730051) at 2021-04-26 10:53 PM PDT -RobertaFricker,2021-04-27T19:41:06Z,- RobertaFricker commented on pull request: [1433](https://github.com/hackforla/website/pull/1433#issuecomment-827871145) at 2021-04-27 12:41 PM PDT -RobertaFricker,2021-04-28T02:09:01Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-828086968) at 2021-04-27 07:09 PM PDT -RobertaFricker,2021-04-28T18:44:16Z,- RobertaFricker opened issue: [1489](https://github.com/hackforla/website/issues/1489) at 2021-04-28 11:44 AM PDT -RobertaFricker,2021-04-28T18:44:16Z,- RobertaFricker assigned to issue: [1489](https://github.com/hackforla/website/issues/1489) at 2021-04-28 11:44 AM PDT -RobertaFricker,2021-04-28T19:14:49Z,- RobertaFricker opened pull request: [1490](https://github.com/hackforla/website/pull/1490) at 2021-04-28 12:14 PM PDT -RobertaFricker,2021-04-29T00:15:23Z,- RobertaFricker commented on pull request: [1490](https://github.com/hackforla/website/pull/1490#issuecomment-828860382) at 2021-04-28 05:15 PM PDT -RobertaFricker,2021-04-29T00:17:42Z,- RobertaFricker commented on pull request: [1490](https://github.com/hackforla/website/pull/1490#issuecomment-828861257) at 2021-04-28 05:17 PM PDT -RobertaFricker,2021-04-29T00:33:13Z,- RobertaFricker pull request merged: [1490](https://github.com/hackforla/website/pull/1490#event-4659862324) at 2021-04-28 05:33 PM PDT -RobertaFricker,2021-04-30T01:22:22Z,- RobertaFricker commented on issue: [1413](https://github.com/hackforla/website/issues/1413#issuecomment-829732724) at 2021-04-29 06:22 PM PDT -RobertaFricker,2021-04-30T04:39:16Z,- RobertaFricker unassigned from issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-827295185) at 2021-04-29 09:39 PM PDT -RobertaFricker,2021-05-01T00:08:05Z,- RobertaFricker opened pull request: [1496](https://github.com/hackforla/website/pull/1496) at 2021-04-30 05:08 PM PDT -RobertaFricker,2021-05-01T01:42:09Z,- RobertaFricker commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830485310) at 2021-04-30 06:42 PM PDT -RobertaFricker,2021-05-02T16:35:15Z,- RobertaFricker commented on pull request: [1496](https://github.com/hackforla/website/pull/1496#issuecomment-830835918) at 2021-05-02 09:35 AM PDT -RobertaFricker,2021-05-04T00:23:13Z,- RobertaFricker commented on issue: [1390](https://github.com/hackforla/website/issues/1390#issuecomment-831615091) at 2021-05-03 05:23 PM PDT -RobertaFricker,2021-05-04T21:03:03Z,- RobertaFricker pull request merged: [1496](https://github.com/hackforla/website/pull/1496#event-4685676989) at 2021-05-04 02:03 PM PDT -robertestrada,2021-09-23T01:56:28Z,- robertestrada assigned to issue: [2268](https://github.com/hackforla/website/issues/2268) at 2021-09-22 06:56 PM PDT -robertestrada,2021-09-23T17:53:38Z,- robertestrada commented on issue: [2268](https://github.com/hackforla/website/issues/2268#issuecomment-926030357) at 2021-09-23 10:53 AM PDT -robertestrada,2021-09-25T05:25:11Z,- robertestrada opened pull request: [2308](https://github.com/hackforla/website/pull/2308) at 2021-09-24 10:25 PM PDT -robertestrada,2021-09-28T16:49:09Z,- robertestrada commented on pull request: [2308](https://github.com/hackforla/website/pull/2308#issuecomment-929402338) at 2021-09-28 09:49 AM PDT -robertestrada,2021-09-29T17:11:50Z,- robertestrada pull request merged: [2308](https://github.com/hackforla/website/pull/2308#event-5382299953) at 2021-09-29 10:11 AM PDT -robertnjenga,5485,SKILLS ISSUE -robertnjenga,2023-09-12T03:28:55Z,- robertnjenga opened issue: [5485](https://github.com/hackforla/website/issues/5485) at 2023-09-11 08:28 PM PDT -robertnjenga,2023-09-12T03:28:56Z,- robertnjenga assigned to issue: [5485](https://github.com/hackforla/website/issues/5485) at 2023-09-11 08:28 PM PDT -robertnjenga,2023-09-12T17:28:27Z,- robertnjenga assigned to issue: [5378](https://github.com/hackforla/website/issues/5378) at 2023-09-12 10:28 AM PDT -robertnjenga,2023-09-12T18:09:19Z,- robertnjenga commented on issue: [5378](https://github.com/hackforla/website/issues/5378#issuecomment-1716197539) at 2023-09-12 11:09 AM PDT -robertnjenga,2023-09-12T19:14:57Z,- robertnjenga opened pull request: [5510](https://github.com/hackforla/website/pull/5510) at 2023-09-12 12:14 PM PDT -robertnjenga,2023-09-14T15:24:22Z,- robertnjenga commented on issue: [5485](https://github.com/hackforla/website/issues/5485#issuecomment-1719669464) at 2023-09-14 08:24 AM PDT -robertnjenga,2023-09-17T16:01:09Z,- robertnjenga pull request merged: [5510](https://github.com/hackforla/website/pull/5510#event-10391601639) at 2023-09-17 09:01 AM PDT -robertnjenga,2023-09-19T16:35:55Z,- robertnjenga assigned to issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1704384569) at 2023-09-19 09:35 AM PDT -robertnjenga,2023-09-19T16:38:29Z,- robertnjenga commented on issue: [5428](https://github.com/hackforla/website/issues/5428#issuecomment-1726056897) at 2023-09-19 09:38 AM PDT -robertnjenga,2023-09-19T19:33:57Z,- robertnjenga opened pull request: [5557](https://github.com/hackforla/website/pull/5557) at 2023-09-19 12:33 PM PDT -robertnjenga,2023-09-19T20:26:46Z,- robertnjenga closed issue as completed: [5485](https://github.com/hackforla/website/issues/5485#event-10415039269) at 2023-09-19 01:26 PM PDT -robertnjenga,2023-09-22T04:45:47Z,- robertnjenga pull request merged: [5557](https://github.com/hackforla/website/pull/5557#event-10442991417) at 2023-09-21 09:45 PM PDT -robertnjenga,2023-09-22T14:55:23Z,- robertnjenga commented on pull request: [5569](https://github.com/hackforla/website/pull/5569#issuecomment-1731563217) at 2023-09-22 07:55 AM PDT -robertnjenga,2023-09-22T15:27:05Z,- robertnjenga submitted pull request review: [5569](https://github.com/hackforla/website/pull/5569#pullrequestreview-1640195643) at 2023-09-22 08:27 AM PDT -robertnjenga,2023-09-22T16:37:27Z,- robertnjenga commented on pull request: [5558](https://github.com/hackforla/website/pull/5558#issuecomment-1731720113) at 2023-09-22 09:37 AM PDT -robertnjenga,2023-09-22T16:51:57Z,- robertnjenga submitted pull request review: [5558](https://github.com/hackforla/website/pull/5558#pullrequestreview-1640334833) at 2023-09-22 09:51 AM PDT -robertnjenga,2023-09-24T20:08:18Z,- robertnjenga submitted pull request review: [5569](https://github.com/hackforla/website/pull/5569#pullrequestreview-1641114913) at 2023-09-24 01:08 PM PDT -robertnjenga,2023-09-26T17:49:12Z,- robertnjenga commented on pull request: [5585](https://github.com/hackforla/website/pull/5585#issuecomment-1736010812) at 2023-09-26 10:49 AM PDT -robertnjenga,2023-09-26T18:06:47Z,- robertnjenga submitted pull request review: [5585](https://github.com/hackforla/website/pull/5585#pullrequestreview-1644903232) at 2023-09-26 11:06 AM PDT -robertnjenga,2023-09-26T19:33:16Z,- robertnjenga assigned to issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1701256957) at 2023-09-26 12:33 PM PDT -robertnjenga,2023-09-26T19:33:46Z,- robertnjenga commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1736169022) at 2023-09-26 12:33 PM PDT -robertnjenga,2023-09-26T20:33:42Z,- robertnjenga opened pull request: [5593](https://github.com/hackforla/website/pull/5593) at 2023-09-26 01:33 PM PDT -robertnjenga,2023-09-27T01:27:49Z,- robertnjenga pull request merged: [5593](https://github.com/hackforla/website/pull/5593#event-10481500243) at 2023-09-26 06:27 PM PDT -robertnjenga,2023-09-27T14:05:09Z,- robertnjenga submitted pull request review: [5585](https://github.com/hackforla/website/pull/5585#pullrequestreview-1646677968) at 2023-09-27 07:05 AM PDT -robertnjenga,2023-10-03T17:15:27Z,- robertnjenga commented on pull request: [5643](https://github.com/hackforla/website/pull/5643#issuecomment-1745400470) at 2023-10-03 10:15 AM PDT -robertnjenga,2023-10-03T17:43:52Z,- robertnjenga submitted pull request review: [5643](https://github.com/hackforla/website/pull/5643#pullrequestreview-1655793021) at 2023-10-03 10:43 AM PDT -robertnjenga,2023-10-03T18:29:18Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745507273) at 2023-10-03 11:29 AM PDT -robertnjenga,2023-10-03T18:51:48Z,- robertnjenga submitted pull request review: [5640](https://github.com/hackforla/website/pull/5640#pullrequestreview-1655898773) at 2023-10-03 11:51 AM PDT -robertnjenga,2023-10-03T19:24:57Z,- robertnjenga assigned to issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1735043248) at 2023-10-03 12:24 PM PDT -robertnjenga,2023-10-03T19:25:10Z,- robertnjenga commented on issue: [5588](https://github.com/hackforla/website/issues/5588#issuecomment-1745586235) at 2023-10-03 12:25 PM PDT -robertnjenga,2023-10-03T19:57:46Z,- robertnjenga opened pull request: [5658](https://github.com/hackforla/website/pull/5658) at 2023-10-03 12:57 PM PDT -robertnjenga,2023-10-03T23:50:38Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1745901452) at 2023-10-03 04:50 PM PDT -robertnjenga,2023-10-04T15:14:25Z,- robertnjenga commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1747100095) at 2023-10-04 08:14 AM PDT -robertnjenga,2023-10-07T16:19:20Z,- robertnjenga submitted pull request review: [5672](https://github.com/hackforla/website/pull/5672#pullrequestreview-1663073074) at 2023-10-07 09:19 AM PDT -robertnjenga,2023-10-10T16:10:45Z,- robertnjenga commented on pull request: [5682](https://github.com/hackforla/website/pull/5682#issuecomment-1755769105) at 2023-10-10 09:10 AM PDT -robertnjenga,2023-10-10T16:19:56Z,- robertnjenga submitted pull request review: [5682](https://github.com/hackforla/website/pull/5682#pullrequestreview-1668221499) at 2023-10-10 09:19 AM PDT -robertnjenga,2023-10-11T01:35:34Z,- robertnjenga pull request merged: [5658](https://github.com/hackforla/website/pull/5658#event-10611988446) at 2023-10-10 06:35 PM PDT -robertnjenga,2023-10-12T16:41:25Z,- robertnjenga assigned to issue: [5601](https://github.com/hackforla/website/issues/5601) at 2023-10-12 09:41 AM PDT -robertnjenga,2023-10-12T16:42:43Z,- robertnjenga commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1759981882) at 2023-10-12 09:42 AM PDT -robertnjenga,2023-10-15T17:57:09Z,- robertnjenga commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1763461108) at 2023-10-15 10:57 AM PDT -robertnjenga,2023-10-20T16:44:03Z,- robertnjenga commented on pull request: [5740](https://github.com/hackforla/website/pull/5740#issuecomment-1773063295) at 2023-10-20 09:44 AM PDT -robertnjenga,2023-10-20T16:57:33Z,- robertnjenga submitted pull request review: [5740](https://github.com/hackforla/website/pull/5740#pullrequestreview-1690553064) at 2023-10-20 09:57 AM PDT -robertnjenga,2023-10-29T15:41:19Z,- robertnjenga commented on pull request: [5788](https://github.com/hackforla/website/pull/5788#issuecomment-1784147574) at 2023-10-29 08:41 AM PDT -robertnjenga,2023-10-29T15:47:00Z,- robertnjenga submitted pull request review: [5788](https://github.com/hackforla/website/pull/5788#pullrequestreview-1702984798) at 2023-10-29 08:47 AM PDT -robertnjenga,2023-11-09T16:07:25Z,- robertnjenga commented on pull request: [5886](https://github.com/hackforla/website/pull/5886#issuecomment-1804119297) at 2023-11-09 08:07 AM PST -robertnjenga,2023-11-09T16:24:59Z,- robertnjenga submitted pull request review: [5886](https://github.com/hackforla/website/pull/5886#pullrequestreview-1722978792) at 2023-11-09 08:24 AM PST -robertnjenga,2023-11-12T18:40:41Z,- robertnjenga commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1807207059) at 2023-11-12 10:40 AM PST -robertnjenga,2023-11-12T18:58:35Z,- robertnjenga submitted pull request review: [5887](https://github.com/hackforla/website/pull/5887#pullrequestreview-1726307455) at 2023-11-12 10:58 AM PST -robertnjenga,2023-11-14T21:49:13Z,- robertnjenga assigned to issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1806969073) at 2023-11-14 01:49 PM PST -robertnjenga,2023-11-14T21:49:34Z,- robertnjenga commented on issue: [5652](https://github.com/hackforla/website/issues/5652#issuecomment-1811378655) at 2023-11-14 01:49 PM PST -robertnjenga,2023-11-14T22:34:36Z,- robertnjenga opened pull request: [5905](https://github.com/hackforla/website/pull/5905) at 2023-11-14 02:34 PM PST -robertnjenga,2023-11-15T16:12:02Z,- robertnjenga commented on pull request: [5905](https://github.com/hackforla/website/pull/5905#issuecomment-1812832190) at 2023-11-15 08:12 AM PST -robertnjenga,2023-11-15T16:39:15Z,- robertnjenga pull request merged: [5905](https://github.com/hackforla/website/pull/5905#event-10969733425) at 2023-11-15 08:39 AM PST -robertnjenga,2023-11-25T16:53:32Z,- robertnjenga commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1826376141) at 2023-11-25 08:53 AM PST -robertnjenga,2023-11-25T17:22:06Z,- robertnjenga submitted pull request review: [5936](https://github.com/hackforla/website/pull/5936#pullrequestreview-1749219099) at 2023-11-25 09:22 AM PST -robertnjenga,2023-11-25T17:42:06Z,- robertnjenga commented on pull request: [5935](https://github.com/hackforla/website/pull/5935#issuecomment-1826384937) at 2023-11-25 09:42 AM PST -robertnjenga,2023-11-25T18:18:31Z,- robertnjenga submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749224084) at 2023-11-25 10:18 AM PST -robertnjenga,2023-11-26T00:49:47Z,- robertnjenga submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749249434) at 2023-11-25 04:49 PM PST -robertnjenga,2023-11-29T03:15:17Z,- robertnjenga commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1831146891) at 2023-11-28 07:15 PM PST -robertnjenga,2023-11-29T15:37:05Z,- robertnjenga submitted pull request review: [5941](https://github.com/hackforla/website/pull/5941#pullrequestreview-1755579081) at 2023-11-29 07:37 AM PST -robertnjenga,2024-01-07T19:30:38Z,- robertnjenga commented on pull request: [6073](https://github.com/hackforla/website/pull/6073#issuecomment-1880149475) at 2024-01-07 11:30 AM PST -robertnjenga,2024-01-07T19:45:39Z,- robertnjenga submitted pull request review: [6073](https://github.com/hackforla/website/pull/6073#pullrequestreview-1807861196) at 2024-01-07 11:45 AM PST -robertnjenga,2024-01-07T19:58:19Z,- robertnjenga commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1880155994) at 2024-01-07 11:58 AM PST -robertnjenga,2024-01-07T20:09:47Z,- robertnjenga submitted pull request review: [6072](https://github.com/hackforla/website/pull/6072#pullrequestreview-1807864259) at 2024-01-07 12:09 PM PST -robertnjenga,2024-01-07T20:22:57Z,- robertnjenga commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880161381) at 2024-01-07 12:22 PM PST -robertnjenga,2024-01-07T20:33:45Z,- robertnjenga submitted pull request review: [6063](https://github.com/hackforla/website/pull/6063#pullrequestreview-1807866877) at 2024-01-07 12:33 PM PST -robertnjenga,2024-01-07T20:55:34Z,- robertnjenga commented on pull request: [6061](https://github.com/hackforla/website/pull/6061#issuecomment-1880168607) at 2024-01-07 12:55 PM PST -robertnjenga,2024-01-07T21:05:09Z,- robertnjenga submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1807870874) at 2024-01-07 01:05 PM PST -robertnjenga,2024-01-07T21:40:15Z,- robertnjenga submitted pull request review: [6061](https://github.com/hackforla/website/pull/6061#pullrequestreview-1807881127) at 2024-01-07 01:40 PM PST -robertnjenga,2024-01-21T17:44:23Z,- robertnjenga commented on pull request: [6136](https://github.com/hackforla/website/pull/6136#issuecomment-1902707170) at 2024-01-21 09:44 AM PST -robertnjenga,2024-01-21T17:57:40Z,- robertnjenga submitted pull request review: [6136](https://github.com/hackforla/website/pull/6136#pullrequestreview-1835388427) at 2024-01-21 09:57 AM PST -robertnjenga,2024-01-21T18:13:59Z,- robertnjenga commented on pull request: [6134](https://github.com/hackforla/website/pull/6134#issuecomment-1902716261) at 2024-01-21 10:13 AM PST -robertnjenga,2024-01-21T19:49:55Z,- robertnjenga submitted pull request review: [6134](https://github.com/hackforla/website/pull/6134#pullrequestreview-1835421545) at 2024-01-21 11:49 AM PST -robertnjenga,2024-01-24T19:10:27Z,- robertnjenga assigned to issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1885597127) at 2024-01-24 11:10 AM PST -robertnjenga,2024-01-24T19:11:32Z,- robertnjenga commented on issue: [4301](https://github.com/hackforla/website/issues/4301#issuecomment-1908758226) at 2024-01-24 11:11 AM PST -robertnjenga,2024-01-24T23:40:15Z,- robertnjenga opened pull request: [6151](https://github.com/hackforla/website/pull/6151) at 2024-01-24 03:40 PM PST -robertnjenga,2024-01-28T17:06:40Z,- robertnjenga pull request merged: [6151](https://github.com/hackforla/website/pull/6151#event-11620461889) at 2024-01-28 09:06 AM PST -robertnjenga,2024-02-17T20:38:49Z,- robertnjenga commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1950302804) at 2024-02-17 12:38 PM PST -robertnjenga,2024-02-17T21:05:36Z,- robertnjenga submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887024272) at 2024-02-17 01:05 PM PST -robertnjenga,2024-02-17T21:16:12Z,- robertnjenga commented on pull request: [6305](https://github.com/hackforla/website/pull/6305#issuecomment-1950345253) at 2024-02-17 01:16 PM PST -robertnjenga,2024-02-17T21:28:12Z,- robertnjenga submitted pull request review: [6305](https://github.com/hackforla/website/pull/6305#pullrequestreview-1887030727) at 2024-02-17 01:28 PM PST -robertnjenga,2024-02-18T15:19:30Z,- robertnjenga submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887261519) at 2024-02-18 07:19 AM PST -robertnjenga,2024-03-02T19:02:16Z,- robertnjenga commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1974879806) at 2024-03-02 11:02 AM PST -robertnjenga,2024-03-02T19:46:29Z,- robertnjenga submitted pull request review: [6408](https://github.com/hackforla/website/pull/6408#pullrequestreview-1912713553) at 2024-03-02 11:46 AM PST -robertnjenga,2024-03-02T20:23:41Z,- robertnjenga submitted pull request review: [6408](https://github.com/hackforla/website/pull/6408#pullrequestreview-1912718817) at 2024-03-02 12:23 PM PST -robertnjenga,2024-03-02T20:38:02Z,- robertnjenga commented on pull request: [6407](https://github.com/hackforla/website/pull/6407#issuecomment-1974903432) at 2024-03-02 12:38 PM PST -robertnjenga,2024-03-02T20:46:52Z,- robertnjenga submitted pull request review: [6407](https://github.com/hackforla/website/pull/6407#pullrequestreview-1912740666) at 2024-03-02 12:46 PM PST -robertnjenga,2024-03-03T15:25:35Z,- robertnjenga commented on pull request: [6408](https://github.com/hackforla/website/pull/6408#issuecomment-1975196639) at 2024-03-03 07:25 AM PST -robertnjenga,2024-03-04T17:59:45Z,- robertnjenga commented on pull request: [6414](https://github.com/hackforla/website/pull/6414#issuecomment-1977158779) at 2024-03-04 09:59 AM PST -robertnjenga,2024-03-04T18:01:25Z,- robertnjenga submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1914962190) at 2024-03-04 10:01 AM PST -robertnjenga,2024-03-04T19:01:15Z,- robertnjenga submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1915107967) at 2024-03-04 11:01 AM PST -robertnjenga,2024-04-12T19:46:14Z,- robertnjenga commented on pull request: [6629](https://github.com/hackforla/website/pull/6629#issuecomment-2052428151) at 2024-04-12 12:46 PM PDT -robertnjenga,2024-04-12T20:04:25Z,- robertnjenga submitted pull request review: [6629](https://github.com/hackforla/website/pull/6629#pullrequestreview-1998340163) at 2024-04-12 01:04 PM PDT -robertnjenga,2024-04-13T19:46:20Z,- robertnjenga commented on pull request: [6631](https://github.com/hackforla/website/pull/6631#issuecomment-2053741973) at 2024-04-13 12:46 PM PDT -robertnjenga,2024-04-13T20:01:05Z,- robertnjenga submitted pull request review: [6631](https://github.com/hackforla/website/pull/6631#pullrequestreview-1999341748) at 2024-04-13 01:01 PM PDT -robertnjenga,2024-04-13T20:02:31Z,- robertnjenga commented on pull request: [6630](https://github.com/hackforla/website/pull/6630#issuecomment-2053745003) at 2024-04-13 01:02 PM PDT -robertnjenga,2024-04-13T20:16:03Z,- robertnjenga submitted pull request review: [6630](https://github.com/hackforla/website/pull/6630#pullrequestreview-1999345080) at 2024-04-13 01:16 PM PDT -robertnjenga,2024-04-13T20:48:32Z,- robertnjenga commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2053758177) at 2024-04-13 01:48 PM PDT -robertnjenga,2024-04-13T21:06:53Z,- robertnjenga submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-1999362568) at 2024-04-13 02:06 PM PDT -robertnjenga,2024-04-15T16:18:09Z,- robertnjenga submitted pull request review: [6626](https://github.com/hackforla/website/pull/6626#pullrequestreview-2001548031) at 2024-04-15 09:18 AM PDT -robertnjenga,2024-06-03T17:04:37Z,- robertnjenga commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2145714893) at 2024-06-03 10:04 AM PDT -robertnjenga,2024-06-03T17:16:18Z,- robertnjenga submitted pull request review: [6925](https://github.com/hackforla/website/pull/6925#pullrequestreview-2094459464) at 2024-06-03 10:16 AM PDT -robertnjenga,2024-06-03T18:03:41Z,- robertnjenga commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2145817194) at 2024-06-03 11:03 AM PDT -robertnjenga,2024-06-03T18:16:15Z,- robertnjenga submitted pull request review: [6924](https://github.com/hackforla/website/pull/6924#pullrequestreview-2094564077) at 2024-06-03 11:16 AM PDT -robertnjenga,2024-06-05T15:34:27Z,- robertnjenga submitted pull request review: [6924](https://github.com/hackforla/website/pull/6924#pullrequestreview-2099567794) at 2024-06-05 08:34 AM PDT -robertnjenga,2024-07-21T14:45:45Z,- robertnjenga commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2241635423) at 2024-07-21 07:45 AM PDT -robertnjenga,2024-07-21T14:52:46Z,- robertnjenga submitted pull request review: [7125](https://github.com/hackforla/website/pull/7125#pullrequestreview-2190349079) at 2024-07-21 07:52 AM PDT -RobinElayn,2023-06-01T17:50:06Z,- RobinElayn commented on issue: [2288](https://github.com/hackforla/website/issues/2288#issuecomment-1572526132) at 2023-06-01 10:50 AM PDT -RodgerLugo,7949,SKILLS ISSUE -RodgerLugo,2025-02-26T21:18:16Z,- RodgerLugo opened issue: [7949](https://github.com/hackforla/website/issues/7949) at 2025-02-26 01:18 PM PST -RodgerLugo,2025-02-26T21:22:22Z,- RodgerLugo assigned to issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2686220062) at 2025-02-26 01:22 PM PST -RodgerLugo,2025-04-09T00:37:46Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2787943613) at 2025-04-08 05:37 PM PDT -RodgerLugo,2025-04-09T01:52:11Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2788076435) at 2025-04-08 06:52 PM PDT -RodgerLugo,2025-04-10T03:50:28Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2791479303) at 2025-04-09 08:50 PM PDT -RodgerLugo,2025-04-11T01:40:13Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2795605087) at 2025-04-10 06:40 PM PDT -RodgerLugo,2025-04-16T07:35:02Z,- RodgerLugo submitted pull request review: [8062](https://github.com/hackforla/website/pull/8062#pullrequestreview-2771478597) at 2025-04-16 12:35 AM PDT -RodgerLugo,2025-04-17T23:06:58Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2814178784) at 2025-04-17 04:06 PM PDT -RodgerLugo,2025-04-18T18:35:23Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2815994792) at 2025-04-18 11:35 AM PDT -RodgerLugo,2025-04-26T21:38:18Z,- RodgerLugo assigned to issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2658210594) at 2025-04-26 02:38 PM PDT -RodgerLugo,2025-04-26T21:54:14Z,- RodgerLugo commented on issue: [7909](https://github.com/hackforla/website/issues/7909#issuecomment-2832642592) at 2025-04-26 02:54 PM PDT -RodgerLugo,2025-04-26T23:13:06Z,- RodgerLugo opened pull request: [8091](https://github.com/hackforla/website/pull/8091) at 2025-04-26 04:13 PM PDT -RodgerLugo,2025-04-26T23:20:21Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2832738889) at 2025-04-26 04:20 PM PDT -RodgerLugo,2025-04-28T01:54:52Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2833799156) at 2025-04-27 06:54 PM PDT -RodgerLugo,2025-04-28T02:09:08Z,- RodgerLugo assigned to issue: [7736](https://github.com/hackforla/website/issues/7736) at 2025-04-27 07:09 PM PDT -RodgerLugo,2025-04-28T02:09:29Z,- RodgerLugo unassigned from issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2833812934) at 2025-04-27 07:09 PM PDT -RodgerLugo,2025-04-29T05:12:10Z,- RodgerLugo commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2837471773) at 2025-04-28 10:12 PM PDT -RodgerLugo,2025-04-29T20:10:28Z,- RodgerLugo commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2840123536) at 2025-04-29 01:10 PM PDT -RodgerLugo,2025-04-30T01:57:35Z,- RodgerLugo pull request merged: [8091](https://github.com/hackforla/website/pull/8091#event-17465105258) at 2025-04-29 06:57 PM PDT -RodgerLugo,2025-04-30T02:15:08Z,- RodgerLugo assigned to issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2692153370) at 2025-04-29 07:15 PM PDT -RodgerLugo,2025-04-30T02:19:07Z,- RodgerLugo commented on issue: [7750](https://github.com/hackforla/website/issues/7750#issuecomment-2840637853) at 2025-04-29 07:19 PM PDT -RodgerLugo,2025-04-30T04:45:51Z,- RodgerLugo submitted pull request review: [8092](https://github.com/hackforla/website/pull/8092#pullrequestreview-2805740594) at 2025-04-29 09:45 PM PDT -RodgerLugo,2025-05-01T05:14:02Z,- RodgerLugo opened pull request: [8104](https://github.com/hackforla/website/pull/8104) at 2025-04-30 10:14 PM PDT -RodgerLugo,2025-05-07T16:21:37Z,- RodgerLugo pull request merged: [8104](https://github.com/hackforla/website/pull/8104#event-17559708714) at 2025-05-07 09:21 AM PDT -RodgerLugo,2025-05-11T08:21:20Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2869625667) at 2025-05-11 01:21 AM PDT -RodgerLugo,2025-05-11T08:23:28Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2869626516) at 2025-05-11 01:23 AM PDT -RodgerLugo,2025-05-27T08:38:39Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2911671323) at 2025-05-27 01:38 AM PDT -RodgerLugo,2025-06-03T09:16:25Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2934297250) at 2025-06-03 02:16 AM PDT -RodgerLugo,2025-06-03T09:27:26Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-2934343853) at 2025-06-03 02:27 AM PDT -RodgerLugo,2025-06-04T03:30:31Z,- RodgerLugo assigned to issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2423160800) at 2025-06-03 08:30 PM PDT -RodgerLugo,2025-06-04T03:33:12Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2938286030) at 2025-06-03 08:33 PM PDT -RodgerLugo,2025-06-14T00:39:37Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2972041205) at 2025-06-13 05:39 PM PDT -RodgerLugo,2025-06-23T23:15:21Z,- RodgerLugo commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2998252729) at 2025-06-23 04:15 PM PDT -RodgerLugo,2025-07-16T22:11:49Z,- RodgerLugo commented on issue: [7949](https://github.com/hackforla/website/issues/7949#issuecomment-3081361043) at 2025-07-16 03:11 PM PDT diff --git a/github-actions/activity-trigger/member_activity_history_bot_8.csv b/github-actions/activity-trigger/member_activity_history_bot_8.csv deleted file mode 100644 index a4482eac75..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_8.csv +++ /dev/null @@ -1,7479 +0,0 @@ -username,datetime,message -sacamp,3250,SKILLS ISSUE -sacamp,2021-07-30T01:06:41Z,- sacamp assigned to issue: [2015](https://github.com/hackforla/website/issues/2015) at 2021-07-29 06:06 PM PDT -sacamp,2021-07-30T01:11:57Z,- sacamp closed issue as completed: [2015](https://github.com/hackforla/website/issues/2015#event-5088969790) at 2021-07-29 06:11 PM PDT -sacamp,2021-07-30T01:11:59Z,- sacamp reopened issue: [2015](https://github.com/hackforla/website/issues/2015#event-5088969790) at 2021-07-29 06:11 PM PDT -sacamp,2021-08-09T14:25:40Z,- sacamp commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-895269472) at 2021-08-09 07:25 AM PDT -sacamp,2021-08-16T20:05:20Z,- sacamp commented on issue: [2096](https://github.com/hackforla/website/issues/2096#issuecomment-899783988) at 2021-08-16 01:05 PM PDT -sacamp,2021-09-10T14:22:15Z,- sacamp assigned to issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-916679703) at 2021-09-10 07:22 AM PDT -sacamp,2021-10-04T18:39:49Z,- sacamp assigned to issue: [2334](https://github.com/hackforla/website/issues/2334) at 2021-10-04 11:39 AM PDT -sacamp,2021-10-06T19:19:41Z,- sacamp unassigned from issue: [1968](https://github.com/hackforla/website/issues/1968#issuecomment-929126159) at 2021-10-06 12:19 PM PDT -sacamp,2021-10-08T19:09:14Z,- sacamp commented on issue: [2334](https://github.com/hackforla/website/issues/2334#issuecomment-939058398) at 2021-10-08 12:09 PM PDT -sacamp,2021-10-22T00:43:29Z,- sacamp commented on issue: [2334](https://github.com/hackforla/website/issues/2334#issuecomment-949119965) at 2021-10-21 05:43 PM PDT -sacamp,2021-10-22T00:43:29Z,- sacamp closed issue as completed: [2334](https://github.com/hackforla/website/issues/2334#event-5501869967) at 2021-10-21 05:43 PM PDT -sacamp,2021-10-22T14:57:11Z,- sacamp assigned to issue: [2389](https://github.com/hackforla/website/issues/2389) at 2021-10-22 07:57 AM PDT -sacamp,2021-11-08T19:06:04Z,- sacamp assigned to issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-954482249) at 2021-11-08 11:06 AM PST -sacamp,2021-11-10T20:41:04Z,- sacamp submitted pull request review: [2472](https://github.com/hackforla/website/pull/2472#pullrequestreview-803122851) at 2021-11-10 12:41 PM PST -sacamp,2021-11-17T18:18:35Z,- sacamp opened issue: [2498](https://github.com/hackforla/website/issues/2498) at 2021-11-17 10:18 AM PST -sacamp,2021-11-17T18:27:39Z,- sacamp commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-971848539) at 2021-11-17 10:27 AM PST -sacamp,2021-11-17T21:57:54Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-972113138) at 2021-11-17 01:57 PM PST -sacamp,2021-11-18T03:32:28Z,- sacamp assigned to issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-913695460) at 2021-11-17 07:32 PM PST -sacamp,2021-11-18T03:36:12Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-972488954) at 2021-11-17 07:36 PM PST -sacamp,2021-12-01T19:26:35Z,- sacamp commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-983983554) at 2021-12-01 11:26 AM PST -sacamp,2021-12-01T19:38:54Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-983992284) at 2021-12-01 11:38 AM PST -sacamp,2021-12-01T20:46:17Z,- sacamp opened issue: [2527](https://github.com/hackforla/website/issues/2527) at 2021-12-01 12:46 PM PST -sacamp,2021-12-01T21:58:03Z,- sacamp opened issue: [2529](https://github.com/hackforla/website/issues/2529) at 2021-12-01 01:58 PM PST -sacamp,2021-12-08T19:30:09Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-989130551) at 2021-12-08 11:30 AM PST -sacamp,2021-12-08T19:51:00Z,- sacamp opened issue: [2561](https://github.com/hackforla/website/issues/2561) at 2021-12-08 11:51 AM PST -sacamp,2021-12-10T01:51:14Z,- sacamp reopened issue: [2498](https://github.com/hackforla/website/issues/2498#event-5744650688) at 2021-12-09 05:51 PM PST -sacamp,2021-12-12T17:54:43Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-991941960) at 2021-12-12 09:54 AM PST -sacamp,2021-12-12T17:58:33Z,- sacamp commented on issue: [2527](https://github.com/hackforla/website/issues/2527#issuecomment-991942645) at 2021-12-12 09:58 AM PST -sacamp,2021-12-12T18:06:50Z,- sacamp commented on issue: [2309](https://github.com/hackforla/website/issues/2309#issuecomment-991944071) at 2021-12-12 10:06 AM PST -sacamp,2021-12-14T17:08:45Z,- sacamp reopened issue: [2527](https://github.com/hackforla/website/issues/2527#event-5765525442) at 2021-12-14 09:08 AM PST -sacamp,2021-12-15T20:16:22Z,- sacamp opened issue: [2589](https://github.com/hackforla/website/issues/2589) at 2021-12-15 12:16 PM PST -sacamp,2021-12-15T21:06:57Z,- sacamp closed issue as completed: [2527](https://github.com/hackforla/website/issues/2527#event-5774335716) at 2021-12-15 01:06 PM PST -sacamp,2021-12-15T21:18:55Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-995221407) at 2021-12-15 01:18 PM PST -sacamp,2022-01-05T01:33:18Z,- sacamp assigned to issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-995221407) at 2022-01-04 05:33 PM PST -sacamp,2022-01-05T19:58:42Z,- sacamp commented on issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1006034360) at 2022-01-05 11:58 AM PST -sacamp,2022-01-05T21:21:59Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1006087156) at 2022-01-05 01:21 PM PST -sacamp,2022-01-09T17:53:19Z,- sacamp opened issue: [2679](https://github.com/hackforla/website/issues/2679) at 2022-01-09 09:53 AM PST -sacamp,2022-01-09T17:53:19Z,- sacamp assigned to issue: [2679](https://github.com/hackforla/website/issues/2679) at 2022-01-09 09:53 AM PST -sacamp,2022-01-09T18:03:25Z,- sacamp opened issue: [2680](https://github.com/hackforla/website/issues/2680) at 2022-01-09 10:03 AM PST -sacamp,2022-01-09T18:03:25Z,- sacamp assigned to issue: [2680](https://github.com/hackforla/website/issues/2680) at 2022-01-09 10:03 AM PST -sacamp,2022-01-09T18:14:23Z,- sacamp unassigned from issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1008344746) at 2022-01-09 10:14 AM PST -sacamp,2022-01-12T13:50:04Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1011065631) at 2022-01-12 05:50 AM PST -sacamp,2022-01-16T16:02:22Z,- sacamp commented on issue: [2686](https://github.com/hackforla/website/issues/2686#issuecomment-1013902531) at 2022-01-16 08:02 AM PST -sacamp,2022-01-19T13:02:48Z,- sacamp unassigned from issue: [19](https://github.com/hackforla/website/issues/19#issuecomment-1012839202) at 2022-01-19 05:02 AM PST -sacamp,2022-01-19T13:05:18Z,- sacamp commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1016446658) at 2022-01-19 05:05 AM PST -sacamp,2022-01-19T13:18:14Z,- sacamp opened issue: [2704](https://github.com/hackforla/website/issues/2704) at 2022-01-19 05:18 AM PST -sacamp,2022-01-19T13:25:16Z,- sacamp opened issue: [2705](https://github.com/hackforla/website/issues/2705) at 2022-01-19 05:25 AM PST -sacamp,2022-01-19T13:27:02Z,- sacamp opened issue: [2706](https://github.com/hackforla/website/issues/2706) at 2022-01-19 05:27 AM PST -sacamp,2022-01-19T13:54:15Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1016487740) at 2022-01-19 05:54 AM PST -sacamp,2022-01-19T20:47:14Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1016854817) at 2022-01-19 12:47 PM PST -sacamp,2022-01-20T20:42:28Z,- sacamp closed issue as completed: [2499](https://github.com/hackforla/website/issues/2499#event-5927926277) at 2022-01-20 12:42 PM PST -sacamp,2022-01-20T20:42:38Z,- sacamp closed issue as completed: [2500](https://github.com/hackforla/website/issues/2500#event-5927927110) at 2022-01-20 12:42 PM PST -sacamp,2022-01-26T19:47:19Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1022543950) at 2022-01-26 11:47 AM PST -sacamp,2022-01-26T20:55:02Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1022593730) at 2022-01-26 12:55 PM PST -sacamp,2022-02-02T17:55:38Z,- sacamp commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1028203239) at 2022-02-02 09:55 AM PST -sacamp,2022-02-06T19:31:51Z,- sacamp commented on issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-02-06 11:31 AM PST -sacamp,2022-02-09T19:58:50Z,- sacamp closed issue as completed: [2680](https://github.com/hackforla/website/issues/2680#event-6036993824) at 2022-02-09 11:58 AM PST -sacamp,2022-02-09T19:59:13Z,- sacamp assigned to issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1008344746) at 2022-02-09 11:59 AM PST -sacamp,2022-02-09T21:15:29Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1034199395) at 2022-02-09 01:15 PM PST -sacamp,2022-02-09T23:15:19Z,- sacamp commented on issue: [2561](https://github.com/hackforla/website/issues/2561#issuecomment-1034298009) at 2022-02-09 03:15 PM PST -sacamp,2022-02-09T23:15:19Z,- sacamp closed issue as completed: [2561](https://github.com/hackforla/website/issues/2561#event-6038010530) at 2022-02-09 03:15 PM PST -sacamp,2022-02-16T19:02:57Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1042044003) at 2022-02-16 11:02 AM PST -sacamp,2022-02-16T20:56:02Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1042302744) at 2022-02-16 12:56 PM PST -sacamp,2022-02-22T18:39:20Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048098607) at 2022-02-22 10:39 AM PST -sacamp,2022-02-23T19:58:34Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1049159890) at 2022-02-23 11:58 AM PST -sacamp,2022-02-23T21:30:28Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1049233807) at 2022-02-23 01:30 PM PST -sacamp,2022-03-09T19:01:40Z,- sacamp opened issue: [2945](https://github.com/hackforla/website/issues/2945) at 2022-03-09 11:01 AM PST -sacamp,2022-03-09T19:04:43Z,- sacamp opened issue: [2946](https://github.com/hackforla/website/issues/2946) at 2022-03-09 11:04 AM PST -sacamp,2022-03-09T19:08:47Z,- sacamp opened issue: [2947](https://github.com/hackforla/website/issues/2947) at 2022-03-09 11:08 AM PST -sacamp,2022-03-09T19:12:26Z,- sacamp opened issue: [2948](https://github.com/hackforla/website/issues/2948) at 2022-03-09 11:12 AM PST -sacamp,2022-03-09T19:16:58Z,- sacamp opened issue: [2949](https://github.com/hackforla/website/issues/2949) at 2022-03-09 11:16 AM PST -sacamp,2022-03-09T19:25:00Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1063277621) at 2022-03-09 11:25 AM PST -sacamp,2022-03-09T21:03:07Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1063368383) at 2022-03-09 01:03 PM PST -sacamp,2022-03-09T21:54:16Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1063410953) at 2022-03-09 01:54 PM PST -sacamp,2022-03-13T16:05:42Z,- sacamp opened issue: [2974](https://github.com/hackforla/website/issues/2974) at 2022-03-13 09:05 AM PDT -sacamp,2022-03-13T16:31:38Z,- sacamp commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1066136709) at 2022-03-13 09:31 AM PDT -sacamp,2022-03-16T19:36:37Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069541474) at 2022-03-16 12:36 PM PDT -sacamp,2022-03-16T20:00:47Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1069561318) at 2022-03-16 01:00 PM PDT -sacamp,2022-03-23T19:48:45Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1076755574) at 2022-03-23 12:48 PM PDT -sacamp,2022-03-24T15:14:45Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077740975) at 2022-03-24 08:14 AM PDT -sacamp,2022-03-30T19:18:55Z,- sacamp commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-1083531557) at 2022-03-30 12:18 PM PDT -sacamp,2022-03-30T19:30:23Z,- sacamp commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1083542980) at 2022-03-30 12:30 PM PDT -sacamp,2022-03-30T20:46:55Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1083610048) at 2022-03-30 01:46 PM PDT -sacamp,2022-03-30T20:58:14Z,- sacamp unassigned from issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077740975) at 2022-03-30 01:58 PM PDT -sacamp,2022-04-11T20:36:15Z,- sacamp commented on issue: [2589](https://github.com/hackforla/website/issues/2589#issuecomment-1095541544) at 2022-04-11 01:36 PM PDT -sacamp,2022-04-13T18:59:57Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1098382537) at 2022-04-13 11:59 AM PDT -sacamp,2022-04-13T20:06:30Z,- sacamp commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1098436733) at 2022-04-13 01:06 PM PDT -sacamp,2022-04-13T20:16:42Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1098446474) at 2022-04-13 01:16 PM PDT -sacamp,2022-04-17T16:23:07Z,- sacamp closed issue as completed: [2917](https://github.com/hackforla/website/issues/2917#event-6444756418) at 2022-04-17 09:23 AM PDT -sacamp,2022-04-17T16:23:23Z,- sacamp closed issue as completed: [2938](https://github.com/hackforla/website/issues/2938#event-6444756698) at 2022-04-17 09:23 AM PDT -sacamp,2022-04-17T16:35:08Z,- sacamp commented on issue: [2536](https://github.com/hackforla/website/issues/2536#issuecomment-1100911812) at 2022-04-17 09:35 AM PDT -sacamp,2022-04-17T16:35:08Z,- sacamp closed issue as completed: [2536](https://github.com/hackforla/website/issues/2536#event-6444767136) at 2022-04-17 09:35 AM PDT -sacamp,2022-04-17T16:37:45Z,- sacamp commented on issue: [2900](https://github.com/hackforla/website/issues/2900#issuecomment-1100912163) at 2022-04-17 09:37 AM PDT -sacamp,2022-04-20T19:56:32Z,- sacamp commented on issue: [2900](https://github.com/hackforla/website/issues/2900#issuecomment-1104401309) at 2022-04-20 12:56 PM PDT -sacamp,2022-04-20T19:56:32Z,- sacamp closed issue as completed: [2900](https://github.com/hackforla/website/issues/2900#event-6465894625) at 2022-04-20 12:56 PM PDT -sacamp,2022-04-20T20:28:36Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1104427996) at 2022-04-20 01:28 PM PDT -sacamp,2022-04-27T20:07:48Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1111432225) at 2022-04-27 01:07 PM PDT -sacamp,2022-05-01T17:08:10Z,- sacamp commented on issue: [2733](https://github.com/hackforla/website/issues/2733#issuecomment-1114287128) at 2022-05-01 10:08 AM PDT -sacamp,2022-05-01T17:08:10Z,- sacamp closed issue as completed: [2733](https://github.com/hackforla/website/issues/2733#event-6529807094) at 2022-05-01 10:08 AM PDT -sacamp,2022-05-11T17:38:03Z,- sacamp assigned to issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1077740975) at 2022-05-11 10:38 AM PDT -sacamp,2022-05-11T17:38:36Z,- sacamp commented on issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1124065880) at 2022-05-11 10:38 AM PDT -sacamp,2022-05-11T20:05:40Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1124238470) at 2022-05-11 01:05 PM PDT -sacamp,2022-05-18T18:14:00Z,- sacamp unassigned from issue: [2679](https://github.com/hackforla/website/issues/2679#issuecomment-1124065880) at 2022-05-18 11:14 AM PDT -sacamp,2022-05-18T18:19:40Z,- sacamp commented on issue: [3145](https://github.com/hackforla/website/issues/3145#issuecomment-1130353603) at 2022-05-18 11:19 AM PDT -sacamp,2022-06-08T18:51:33Z,- sacamp closed issue as completed: [2945](https://github.com/hackforla/website/issues/2945#event-6772354262) at 2022-06-08 11:51 AM PDT -sacamp,2022-06-08T20:09:27Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1150355526) at 2022-06-08 01:09 PM PDT -sacamp,2022-06-15T21:10:31Z,- sacamp opened issue: [3250](https://github.com/hackforla/website/issues/3250) at 2022-06-15 02:10 PM PDT -sacamp,2022-06-15T21:29:55Z,- sacamp assigned to issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1155400747) at 2022-06-15 02:29 PM PDT -sacamp,2022-06-15T21:33:16Z,- sacamp closed issue as completed: [3250](https://github.com/hackforla/website/issues/3250#event-6816311406) at 2022-06-15 02:33 PM PDT -sacamp,2022-06-15T21:34:29Z,- sacamp unassigned from issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1155400747) at 2022-06-15 02:34 PM PDT -sacamp,2023-02-23T19:32:38Z,- sacamp assigned to issue: [4033](https://github.com/hackforla/website/issues/4033) at 2023-02-23 11:32 AM PST -sacamp,2023-02-23T19:33:24Z,- sacamp unassigned from issue: [4033](https://github.com/hackforla/website/issues/4033#issuecomment-1442319971) at 2023-02-23 11:33 AM PST -sacamp,2023-03-19T18:16:34Z,- sacamp assigned to issue: [3250](https://github.com/hackforla/website/issues/3250#event-6816311406) at 2023-03-19 11:16 AM PDT -sacamp,2023-06-04T18:58:49Z,- sacamp unassigned from issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1211222296) at 2023-06-04 11:58 AM PDT -sacamp,2024-10-20T17:30:51Z,- sacamp assigned to issue: [2900](https://github.com/hackforla/website/issues/2900#event-6465894625) at 2024-10-20 10:30 AM PDT -Sah11-0,7887,SKILLS ISSUE -Sah11-0,2025-02-05T04:15:24Z,- Sah11-0 opened issue: [7887](https://github.com/hackforla/website/issues/7887) at 2025-02-04 08:15 PM PST -Sah11-0,2025-02-05T04:15:41Z,- Sah11-0 assigned to issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2635664412) at 2025-02-04 08:15 PM PST -Sah11-0,2025-02-18T23:44:15Z,- Sah11-0 commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2667172657) at 2025-02-18 03:44 PM PST -Sah11-0,2025-02-19T03:23:43Z,- Sah11-0 commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2667418043) at 2025-02-18 07:23 PM PST -Sah11-0,2025-03-14T16:19:13Z,- Sah11-0 commented on issue: [7887](https://github.com/hackforla/website/issues/7887#issuecomment-2725163951) at 2025-03-14 09:19 AM PDT -sahithm06,7033,SKILLS ISSUE -sahithm06,2024-06-19T03:41:52Z,- sahithm06 opened issue: [7033](https://github.com/hackforla/website/issues/7033) at 2024-06-18 08:41 PM PDT -sahithm06,2024-06-19T03:42:22Z,- sahithm06 assigned to issue: [7033](https://github.com/hackforla/website/issues/7033#issuecomment-2177527787) at 2024-06-18 08:42 PM PDT -SahityaRoy,2023-09-02T13:43:33Z,- SahityaRoy opened pull request: [5420](https://github.com/hackforla/website/pull/5420) at 2023-09-02 06:43 AM PDT -SahityaRoy,2023-09-02T14:55:39Z,- SahityaRoy pull request closed w/o merging: [5420](https://github.com/hackforla/website/pull/5420#event-10264252459) at 2023-09-02 07:55 AM PDT -sainarasimhav37,6951,SKILLS ISSUE -sainarasimhav37,2024-06-04T03:02:21Z,- sainarasimhav37 opened issue: [6951](https://github.com/hackforla/website/issues/6951) at 2024-06-03 08:02 PM PDT -sainarasimhav37,2024-06-04T03:02:47Z,- sainarasimhav37 assigned to issue: [6951](https://github.com/hackforla/website/issues/6951#issuecomment-2146479342) at 2024-06-03 08:02 PM PDT -sainarasimhav37,2024-06-18T22:59:45Z,- sainarasimhav37 assigned to issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2149206458) at 2024-06-18 03:59 PM PDT -sainarasimhav37,2024-06-18T23:07:07Z,- sainarasimhav37 commented on issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2177229741) at 2024-06-18 04:07 PM PDT -sainarasimhav37,2024-07-02T01:10:15Z,- sainarasimhav37 unassigned from issue: [6935](https://github.com/hackforla/website/issues/6935#event-13358227472) at 2024-07-01 06:10 PM PDT -saintach,2018-12-20T12:24:26Z,- saintach opened issue: [26](https://github.com/hackforla/website/issues/26) at 2018-12-20 04:24 AM PST -saiteja-siddana,7218,SKILLS ISSUE -saiteja-siddana,2024-08-06T03:54:22Z,- saiteja-siddana opened issue: [7218](https://github.com/hackforla/website/issues/7218) at 2024-08-05 08:54 PM PDT -saiteja-siddana,2024-08-06T03:56:52Z,- saiteja-siddana assigned to issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2270331857) at 2024-08-05 08:56 PM PDT -saiteja-siddana,2024-08-13T02:32:56Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2285230090) at 2024-08-12 07:32 PM PDT -saiteja-siddana,2024-08-13T22:10:09Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2287226591) at 2024-08-13 03:10 PM PDT -saiteja-siddana,2024-08-13T22:22:36Z,- saiteja-siddana assigned to issue: [7246](https://github.com/hackforla/website/issues/7246) at 2024-08-13 03:22 PM PDT -saiteja-siddana,2024-08-13T22:26:24Z,- saiteja-siddana commented on issue: [7246](https://github.com/hackforla/website/issues/7246#issuecomment-2287249532) at 2024-08-13 03:26 PM PDT -saiteja-siddana,2024-08-13T22:26:59Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2287251879) at 2024-08-13 03:26 PM PDT -saiteja-siddana,2024-08-15T01:57:45Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2290352465) at 2024-08-14 06:57 PM PDT -saiteja-siddana,2024-08-15T02:37:10Z,- saiteja-siddana opened pull request: [7293](https://github.com/hackforla/website/pull/7293) at 2024-08-14 07:37 PM PDT -saiteja-siddana,2024-08-16T23:48:36Z,- saiteja-siddana commented on pull request: [7270](https://github.com/hackforla/website/pull/7270#issuecomment-2294456233) at 2024-08-16 04:48 PM PDT -saiteja-siddana,2024-08-17T03:09:29Z,- saiteja-siddana submitted pull request review: [7270](https://github.com/hackforla/website/pull/7270#pullrequestreview-2243901809) at 2024-08-16 08:09 PM PDT -saiteja-siddana,2024-08-21T02:29:55Z,- saiteja-siddana pull request merged: [7293](https://github.com/hackforla/website/pull/7293#event-13953269828) at 2024-08-20 07:29 PM PDT -saiteja-siddana,2024-08-26T16:09:02Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2310564823) at 2024-08-26 09:09 AM PDT -saiteja-siddana,2024-08-26T16:19:06Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2310584424) at 2024-08-26 09:19 AM PDT -saiteja-siddana,2024-08-26T16:21:09Z,- saiteja-siddana assigned to issue: [7292](https://github.com/hackforla/website/issues/7292) at 2024-08-26 09:21 AM PDT -saiteja-siddana,2024-08-26T16:24:00Z,- saiteja-siddana commented on issue: [7292](https://github.com/hackforla/website/issues/7292#issuecomment-2310593554) at 2024-08-26 09:24 AM PDT -saiteja-siddana,2024-08-26T16:32:32Z,- saiteja-siddana commented on issue: [7218](https://github.com/hackforla/website/issues/7218#issuecomment-2310609019) at 2024-08-26 09:32 AM PDT -saiteja-siddana,2024-08-29T15:50:03Z,- saiteja-siddana opened pull request: [7365](https://github.com/hackforla/website/pull/7365) at 2024-08-29 08:50 AM PDT -saiteja-siddana,2024-08-29T23:23:11Z,- saiteja-siddana pull request merged: [7365](https://github.com/hackforla/website/pull/7365#event-14072144401) at 2024-08-29 04:23 PM PDT -SakethMylavarapu2602,7032,SKILLS ISSUE -SakethMylavarapu2602,2024-06-19T03:41:48Z,- SakethMylavarapu2602 opened issue: [7032](https://github.com/hackforla/website/issues/7032) at 2024-06-18 08:41 PM PDT -SakethMylavarapu2602,2024-06-19T03:42:09Z,- SakethMylavarapu2602 assigned to issue: [7032](https://github.com/hackforla/website/issues/7032#issuecomment-2177527548) at 2024-06-18 08:42 PM PDT -sakibian,5483,SKILLS ISSUE -sakibian,2023-09-03T16:48:26Z,- sakibian commented on issue: [5429](https://github.com/hackforla/website/issues/5429#issuecomment-1704350973) at 2023-09-03 09:48 AM PDT -sakibian,2023-09-12T03:20:42Z,- sakibian opened issue: [5483](https://github.com/hackforla/website/issues/5483) at 2023-09-11 08:20 PM PDT -sakibian,2023-09-12T03:25:30Z,- sakibian assigned to issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1714904023) at 2023-09-11 08:25 PM PDT -sakibian,2023-09-16T17:13:08Z,- sakibian assigned to issue: [5342](https://github.com/hackforla/website/issues/5342#issuecomment-1715919380) at 2023-09-16 10:13 AM PDT -sakibian,2023-09-16T17:16:07Z,- sakibian commented on issue: [5342](https://github.com/hackforla/website/issues/5342#issuecomment-1722274331) at 2023-09-16 10:16 AM PDT -sakibian,2023-09-17T15:05:28Z,- sakibian opened pull request: [5548](https://github.com/hackforla/website/pull/5548) at 2023-09-17 08:05 AM PDT -sakibian,2023-09-17T15:16:48Z,- sakibian commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1722499483) at 2023-09-17 08:16 AM PDT -sakibian,2023-09-18T12:27:08Z,- sakibian opened pull request: [5551](https://github.com/hackforla/website/pull/5551) at 2023-09-18 05:27 AM PDT -sakibian,2023-09-18T12:29:16Z,- sakibian commented on pull request: [5548](https://github.com/hackforla/website/pull/5548#issuecomment-1723309460) at 2023-09-18 05:29 AM PDT -sakibian,2023-09-18T14:40:22Z,- sakibian pull request closed w/o merging: [5548](https://github.com/hackforla/website/pull/5548#event-10398967606) at 2023-09-18 07:40 AM PDT -sakibian,2023-09-21T18:46:37Z,- sakibian commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1730119414) at 2023-09-21 11:46 AM PDT -sakibian,2023-09-22T17:57:01Z,- sakibian commented on pull request: [5551](https://github.com/hackforla/website/pull/5551#issuecomment-1731829645) at 2023-09-22 10:57 AM PDT -sakibian,2023-09-27T04:46:32Z,- sakibian opened pull request: [5613](https://github.com/hackforla/website/pull/5613) at 2023-09-26 09:46 PM PDT -sakibian,2023-09-27T08:30:48Z,- sakibian pull request closed w/o merging: [5613](https://github.com/hackforla/website/pull/5613#event-10484315769) at 2023-09-27 01:30 AM PDT -sakibian,2023-09-29T17:42:08Z,- sakibian pull request merged: [5551](https://github.com/hackforla/website/pull/5551#event-10513946605) at 2023-09-29 10:42 AM PDT -sakibian,2023-10-06T17:10:45Z,- sakibian assigned to issue: [5623](https://github.com/hackforla/website/issues/5623) at 2023-10-06 10:10 AM PDT -sakibian,2023-10-06T17:12:37Z,- sakibian commented on issue: [5623](https://github.com/hackforla/website/issues/5623#issuecomment-1751130167) at 2023-10-06 10:12 AM PDT -sakibian,2023-10-10T06:11:16Z,- sakibian opened pull request: [5692](https://github.com/hackforla/website/pull/5692) at 2023-10-09 11:11 PM PDT -sakibian,2023-10-12T03:17:57Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1758849021) at 2023-10-11 08:17 PM PDT -sakibian,2023-10-12T16:03:54Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1759922581) at 2023-10-12 09:03 AM PDT -sakibian,2023-10-14T14:50:11Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1762958546) at 2023-10-14 07:50 AM PDT -sakibian,2023-10-15T02:45:53Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1763245697) at 2023-10-14 07:45 PM PDT -sakibian,2023-10-18T03:04:13Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1767544820) at 2023-10-17 08:04 PM PDT -sakibian,2023-10-18T03:31:25Z,- sakibian opened pull request: [5733](https://github.com/hackforla/website/pull/5733) at 2023-10-17 08:31 PM PDT -sakibian,2023-10-18T03:41:04Z,- sakibian commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1767578605) at 2023-10-17 08:41 PM PDT -sakibian,2023-10-18T05:34:29Z,- sakibian pull request closed w/o merging: [5692](https://github.com/hackforla/website/pull/5692#event-10687472548) at 2023-10-17 10:34 PM PDT -sakibian,2023-10-18T05:42:41Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1767682519) at 2023-10-17 10:42 PM PDT -sakibian,2023-10-18T18:44:34Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1769123173) at 2023-10-18 11:44 AM PDT -sakibian,2023-10-21T07:00:31Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1773698552) at 2023-10-21 12:00 AM PDT -sakibian,2023-10-29T05:39:36Z,- sakibian commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1784005194) at 2023-10-28 10:39 PM PDT -sakibian,2023-10-30T03:56:06Z,- sakibian pull request merged: [5733](https://github.com/hackforla/website/pull/5733#event-10802205690) at 2023-10-29 08:56 PM PDT -sakibian,2023-11-03T15:16:57Z,- sakibian commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1792628358) at 2023-11-03 08:16 AM PDT -sakibian,2024-02-14T17:07:17Z,- sakibian commented on issue: [5483](https://github.com/hackforla/website/issues/5483#issuecomment-1944251087) at 2024-02-14 09:07 AM PST -sakibian,2024-04-18T10:24:56Z,- sakibian assigned to issue: [6636](https://github.com/hackforla/website/issues/6636) at 2024-04-18 03:24 AM PDT -sakibian,2024-04-18T10:36:51Z,- sakibian commented on issue: [6636](https://github.com/hackforla/website/issues/6636#issuecomment-2063555143) at 2024-04-18 03:36 AM PDT -sakibian,2024-04-19T10:14:52Z,- sakibian opened pull request: [6688](https://github.com/hackforla/website/pull/6688) at 2024-04-19 03:14 AM PDT -sakibian,2024-04-21T06:09:40Z,- sakibian commented on pull request: [6688](https://github.com/hackforla/website/pull/6688#issuecomment-2067920309) at 2024-04-20 11:09 PM PDT -sakibian,2024-04-21T18:33:34Z,- sakibian pull request merged: [6688](https://github.com/hackforla/website/pull/6688#event-12551670688) at 2024-04-21 11:33 AM PDT -sakibian,2024-04-24T07:06:54Z,- sakibian assigned to issue: [6698](https://github.com/hackforla/website/issues/6698#issuecomment-2067951084) at 2024-04-24 12:06 AM PDT -sakibian,2024-04-24T07:08:48Z,- sakibian opened issue: [6729](https://github.com/hackforla/website/issues/6729) at 2024-04-24 12:08 AM PDT -sakibian,2024-04-24T07:12:03Z,- sakibian opened issue: [6730](https://github.com/hackforla/website/issues/6730) at 2024-04-24 12:12 AM PDT -sakibian,2024-04-24T07:13:26Z,- sakibian opened issue: [6731](https://github.com/hackforla/website/issues/6731) at 2024-04-24 12:13 AM PDT -sakibian,2024-04-24T07:24:02Z,- sakibian opened issue: [6732](https://github.com/hackforla/website/issues/6732) at 2024-04-24 12:24 AM PDT -sakibian,2024-04-24T07:38:14Z,- sakibian opened issue: [6733](https://github.com/hackforla/website/issues/6733) at 2024-04-24 12:38 AM PDT -sakibian,2024-04-24T07:48:21Z,- sakibian assigned to issue: [6699](https://github.com/hackforla/website/issues/6699#issuecomment-2067952981) at 2024-04-24 12:48 AM PDT -sakibian,2024-04-24T07:51:34Z,- sakibian opened issue: [6734](https://github.com/hackforla/website/issues/6734) at 2024-04-24 12:51 AM PDT -sakibian,2024-04-24T07:57:42Z,- sakibian opened issue: [6735](https://github.com/hackforla/website/issues/6735) at 2024-04-24 12:57 AM PDT -sakibian,2024-04-24T07:59:48Z,- sakibian opened issue: [6736](https://github.com/hackforla/website/issues/6736) at 2024-04-24 12:59 AM PDT -sakibian,2024-04-24T08:02:55Z,- sakibian opened issue: [6737](https://github.com/hackforla/website/issues/6737) at 2024-04-24 01:02 AM PDT -sakibian,2024-04-24T08:05:30Z,- sakibian opened issue: [6738](https://github.com/hackforla/website/issues/6738) at 2024-04-24 01:05 AM PDT -sakibian,2024-04-24T08:10:22Z,- sakibian opened issue: [6739](https://github.com/hackforla/website/issues/6739) at 2024-04-24 01:10 AM PDT -sakibian,2024-04-24T08:12:05Z,- sakibian opened issue: [6740](https://github.com/hackforla/website/issues/6740) at 2024-04-24 01:12 AM PDT -sakibian,2024-04-24T08:14:51Z,- sakibian opened issue: [6741](https://github.com/hackforla/website/issues/6741) at 2024-04-24 01:14 AM PDT -sakibian,2024-04-24T08:18:06Z,- sakibian opened issue: [6742](https://github.com/hackforla/website/issues/6742) at 2024-04-24 01:18 AM PDT -sakibian,2024-04-24T08:20:17Z,- sakibian opened issue: [6743](https://github.com/hackforla/website/issues/6743) at 2024-04-24 01:20 AM PDT -sakibian,2024-07-30T07:07:26Z,- sakibian opened issue: [7154](https://github.com/hackforla/website/issues/7154) at 2024-07-30 12:07 AM PDT -sakibian,2024-07-30T07:24:42Z,- sakibian closed issue as completed: [7154](https://github.com/hackforla/website/issues/7154#event-13691270750) at 2024-07-30 12:24 AM PDT -sakibian,2024-07-30T07:31:08Z,- sakibian opened issue: [7155](https://github.com/hackforla/website/issues/7155) at 2024-07-30 12:31 AM PDT -salice,2020-03-30T05:04:45Z,- salice commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-605784131) at 2020-03-29 10:04 PM PDT -salice,2023-08-03T01:16:38Z,- salice opened issue: [5131](https://github.com/hackforla/website/issues/5131) at 2023-08-02 06:16 PM PDT -salimays,2023-03-08T00:50:44Z,- salimays assigned to issue: [4127](https://github.com/hackforla/website/issues/4127) at 2023-03-07 04:50 PM PST -salimays,2023-03-29T01:40:39Z,- salimays unassigned from issue: [4127](https://github.com/hackforla/website/issues/4127#issuecomment-1484239501) at 2023-03-28 06:40 PM PDT -SamantaTarun,2023-01-30T15:41:42Z,- SamantaTarun opened pull request: [3898](https://github.com/hackforla/website/pull/3898) at 2023-01-30 07:41 AM PST -SamantaTarun,2023-01-30T15:46:10Z,- SamantaTarun opened pull request: [3899](https://github.com/hackforla/website/pull/3899) at 2023-01-30 07:46 AM PST -SamantaTarun,2023-01-30T19:47:23Z,- SamantaTarun pull request closed w/o merging: [3898](https://github.com/hackforla/website/pull/3898#event-8391900219) at 2023-01-30 11:47 AM PST -SamantaTarun,2023-01-30T19:48:15Z,- SamantaTarun pull request closed w/o merging: [3899](https://github.com/hackforla/website/pull/3899#event-8391906456) at 2023-01-30 11:48 AM PST -SamantaTarun,2023-04-10T00:09:54Z,- SamantaTarun commented on issue: [4447](https://github.com/hackforla/website/issues/4447#issuecomment-1501248341) at 2023-04-09 05:09 PM PDT -samantha-yee11,2021-01-24T19:56:02Z,- samantha-yee11 assigned to issue: [963](https://github.com/hackforla/website/issues/963) at 2021-01-24 11:56 AM PST -samantha-yee11,2021-01-31T01:33:46Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770310056) at 2021-01-30 05:33 PM PST -samantha-yee11,2021-01-31T01:39:03Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770310537) at 2021-01-30 05:39 PM PST -samantha-yee11,2021-01-31T01:39:56Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770310618) at 2021-01-30 05:39 PM PST -samantha-yee11,2021-01-31T18:39:30Z,- samantha-yee11 assigned to issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770427972) at 2021-01-31 10:39 AM PST -samantha-yee11,2021-01-31T19:47:52Z,- samantha-yee11 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770439459) at 2021-01-31 11:47 AM PST -samantha-yee11,2021-02-04T01:27:12Z,- samantha-yee11 assigned to issue: [642](https://github.com/hackforla/website/issues/642) at 2021-02-03 05:27 PM PST -samantha-yee11,2021-02-04T01:52:42Z,- samantha-yee11 commented on issue: [642](https://github.com/hackforla/website/issues/642#issuecomment-772964000) at 2021-02-03 05:52 PM PST -samantha-yee11,2021-02-07T18:30:40Z,- samantha-yee11 unassigned from issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-772784187) at 2021-02-07 10:30 AM PST -samantha-yee11,2021-02-07T21:26:11Z,- samantha-yee11 unassigned from issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770439459) at 2021-02-07 01:26 PM PST -samantha-yee11,2021-02-14T10:31:54Z,- samantha-yee11 unassigned from issue: [642](https://github.com/hackforla/website/issues/642#issuecomment-772964000) at 2021-02-14 02:31 AM PST -SameerM01,2024-02-08T15:23:52Z,- SameerM01 opened pull request: [6265](https://github.com/hackforla/website/pull/6265) at 2024-02-08 07:23 AM PST -SameerM01,2024-02-09T07:02:20Z,- SameerM01 pull request closed w/o merging: [6265](https://github.com/hackforla/website/pull/6265#event-11754520190) at 2024-02-08 11:02 PM PST -Samhitha444,2024-08-19T20:57:00Z,- Samhitha444 opened issue: [7318](https://github.com/hackforla/website/issues/7318) at 2024-08-19 01:57 PM PDT -Samhitha444,2024-09-01T08:06:08Z,- Samhitha444 reopened issue: [4276](https://github.com/hackforla/website/issues/4276#event-12257435552) at 2024-09-01 01:06 AM PDT -Samhitha444,2024-09-01T08:07:44Z,- Samhitha444 closed issue as completed: [4276](https://github.com/hackforla/website/issues/4276#event-14093784214) at 2024-09-01 01:07 AM PDT -Samhitha444,2024-09-12T19:24:33Z,- Samhitha444 commented on issue: [4537](https://github.com/hackforla/website/issues/4537#issuecomment-2347072671) at 2024-09-12 12:24 PM PDT -Samhitha444,2024-09-12T19:29:11Z,- Samhitha444 commented on issue: [4276](https://github.com/hackforla/website/issues/4276#issuecomment-2347080438) at 2024-09-12 12:29 PM PDT -Samhitha444,2024-09-12T19:36:09Z,- Samhitha444 commented on issue: [542](https://github.com/hackforla/website/issues/542#issuecomment-2347092520) at 2024-09-12 12:36 PM PDT -Samhitha444,2024-09-22T18:38:39Z,- Samhitha444 opened issue: [7505](https://github.com/hackforla/website/issues/7505) at 2024-09-22 11:38 AM PDT -Samhitha444,2024-09-22T18:41:28Z,- Samhitha444 assigned to issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2366911260) at 2024-09-22 11:41 AM PDT -Samhitha444,2024-09-29T16:52:48Z,- Samhitha444 commented on issue: [4921](https://github.com/hackforla/website/issues/4921#issuecomment-2381424879) at 2024-09-29 09:52 AM PDT -Samhitha444,2024-09-29T16:59:10Z,- Samhitha444 commented on issue: [5810](https://github.com/hackforla/website/issues/5810#issuecomment-2381426532) at 2024-09-29 09:59 AM PDT -Samhitha444,2024-09-29T17:03:03Z,- Samhitha444 commented on issue: [5812](https://github.com/hackforla/website/issues/5812#issuecomment-2381427827) at 2024-09-29 10:03 AM PDT -Samhitha444,2024-10-06T17:13:05Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2395512767) at 2024-10-06 10:13 AM PDT -Samhitha444,2024-10-20T16:58:48Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2425120260) at 2024-10-20 09:58 AM PDT -Samhitha444,2024-10-27T08:23:55Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2439905052) at 2024-10-27 01:23 AM PDT -Samhitha444,2024-11-10T18:51:18Z,- Samhitha444 commented on issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2466844456) at 2024-11-10 10:51 AM PST -Samhitha444,2024-11-27T21:49:35Z,- Samhitha444 unassigned from issue: [7505](https://github.com/hackforla/website/issues/7505#issuecomment-2493016389) at 2024-11-27 01:49 PM PST -samuelkhong,6083,SKILLS ISSUE -samuelkhong,2024-01-09T22:20:36Z,- samuelkhong opened issue: [6083](https://github.com/hackforla/website/issues/6083) at 2024-01-09 02:20 PM PST -samuelkhong,2024-01-09T22:27:11Z,- samuelkhong assigned to issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-1883894317) at 2024-01-09 02:27 PM PST -samuelkhong,2024-01-16T18:28:56Z,- samuelkhong assigned to issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1846438175) at 2024-01-16 10:28 AM PST -samuelkhong,2024-01-16T18:29:20Z,- samuelkhong commented on issue: [5949](https://github.com/hackforla/website/issues/5949#issuecomment-1894299366) at 2024-01-16 10:29 AM PST -samuelkhong,2024-01-16T18:29:37Z,- samuelkhong closed issue as not planned: [5949](https://github.com/hackforla/website/issues/5949#event-11502471830) at 2024-01-16 10:29 AM PST -samuelusc,6122,SKILLS ISSUE -samuelusc,2024-01-17T04:55:45Z,- samuelusc opened issue: [6122](https://github.com/hackforla/website/issues/6122) at 2024-01-16 08:55 PM PST -samuelusc,2024-01-17T05:12:26Z,- samuelusc assigned to issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1894940503) at 2024-01-16 09:12 PM PST -samuelusc,2024-02-09T00:51:08Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1935161036) at 2024-02-08 04:51 PM PST -samuelusc,2024-02-09T03:21:09Z,- samuelusc assigned to issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1875034717) at 2024-02-08 07:21 PM PST -samuelusc,2024-02-09T03:32:50Z,- samuelusc commented on issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1935284591) at 2024-02-08 07:32 PM PST -samuelusc,2024-02-17T02:07:06Z,- samuelusc opened pull request: [6307](https://github.com/hackforla/website/pull/6307) at 2024-02-16 06:07 PM PST -samuelusc,2024-02-17T02:13:44Z,- samuelusc commented on issue: [6052](https://github.com/hackforla/website/issues/6052#issuecomment-1949606259) at 2024-02-16 06:13 PM PST -samuelusc,2024-02-17T02:16:30Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1949607085) at 2024-02-16 06:16 PM PST -samuelusc,2024-02-17T03:21:34Z,- samuelusc commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1949625061) at 2024-02-16 07:21 PM PST -samuelusc,2024-02-18T00:04:49Z,- samuelusc commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950594667) at 2024-02-17 04:04 PM PST -samuelusc,2024-02-18T03:46:15Z,- samuelusc commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950923523) at 2024-02-17 07:46 PM PST -samuelusc,2024-02-18T06:45:19Z,- samuelusc pull request merged: [6307](https://github.com/hackforla/website/pull/6307#event-11838274117) at 2024-02-17 10:45 PM PST -samuelusc,2024-02-23T04:05:43Z,- samuelusc assigned to issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1869735855) at 2024-02-22 08:05 PM PST -samuelusc,2024-02-29T22:40:59Z,- samuelusc commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1972094367) at 2024-02-29 02:40 PM PST -samuelusc,2024-02-29T22:44:33Z,- samuelusc commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1972098712) at 2024-02-29 02:44 PM PST -samuelusc,2024-03-02T01:30:40Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-1974171792) at 2024-03-01 05:30 PM PST -samuelusc,2024-03-10T03:16:52Z,- samuelusc opened pull request: [6443](https://github.com/hackforla/website/pull/6443) at 2024-03-09 08:16 PM PDT -samuelusc,2024-03-10T03:27:07Z,- samuelusc commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1987055631) at 2024-03-09 08:27 PM PDT -samuelusc,2024-03-14T00:46:59Z,- samuelusc commented on pull request: [6443](https://github.com/hackforla/website/pull/6443#issuecomment-1996195756) at 2024-03-13 05:46 PM PDT -samuelusc,2024-03-15T06:05:39Z,- samuelusc pull request merged: [6443](https://github.com/hackforla/website/pull/6443#event-12127086924) at 2024-03-14 11:05 PM PDT -samuelusc,2024-03-30T12:20:40Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2028033033) at 2024-03-30 05:20 AM PDT -samuelusc,2024-04-25T21:06:02Z,- samuelusc assigned to issue: [6639](https://github.com/hackforla/website/issues/6639) at 2024-04-25 02:06 PM PDT -samuelusc,2024-04-25T21:10:02Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2078180593) at 2024-04-25 02:10 PM PDT -samuelusc,2024-04-28T23:23:18Z,- samuelusc commented on issue: [6639](https://github.com/hackforla/website/issues/6639#issuecomment-2081695735) at 2024-04-28 04:23 PM PDT -samuelusc,2024-04-28T23:29:41Z,- samuelusc commented on issue: [6639](https://github.com/hackforla/website/issues/6639#issuecomment-2081697560) at 2024-04-28 04:29 PM PDT -samuelusc,2024-05-01T18:55:40Z,- samuelusc opened pull request: [6801](https://github.com/hackforla/website/pull/6801) at 2024-05-01 11:55 AM PDT -samuelusc,2024-05-02T04:23:23Z,- samuelusc commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2089530251) at 2024-05-01 09:23 PM PDT -samuelusc,2024-05-02T20:20:37Z,- samuelusc commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2091488288) at 2024-05-02 01:20 PM PDT -samuelusc,2024-05-03T00:47:12Z,- samuelusc commented on pull request: [6801](https://github.com/hackforla/website/pull/6801#issuecomment-2091963959) at 2024-05-02 05:47 PM PDT -samuelusc,2024-05-03T14:45:00Z,- samuelusc pull request merged: [6801](https://github.com/hackforla/website/pull/6801#event-12697399083) at 2024-05-03 07:45 AM PDT -samuelusc,2024-05-08T03:48:08Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2099685982) at 2024-05-07 08:48 PM PDT -samuelusc,2024-05-29T21:45:42Z,- samuelusc assigned to issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2136921927) at 2024-05-29 02:45 PM PDT -samuelusc,2024-05-29T21:52:36Z,- samuelusc commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138321754) at 2024-05-29 02:52 PM PDT -samuelusc,2024-05-29T21:55:01Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2138324538) at 2024-05-29 02:55 PM PDT -samuelusc,2024-05-29T23:00:25Z,- samuelusc unassigned from issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138389042) at 2024-05-29 04:00 PM PDT -samuelusc,2024-05-29T23:35:30Z,- samuelusc commented on issue: [6908](https://github.com/hackforla/website/issues/6908#issuecomment-2138418428) at 2024-05-29 04:35 PM PDT -samuelusc,2024-06-21T03:54:53Z,- samuelusc commented on issue: [6122](https://github.com/hackforla/website/issues/6122#issuecomment-2181953847) at 2024-06-20 08:54 PM PDT -sanchece,2021-03-10T03:43:41Z,- sanchece assigned to issue: [1103](https://github.com/hackforla/website/issues/1103#issuecomment-784811971) at 2021-03-09 07:43 PM PST -sanchece,2021-03-17T02:48:23Z,- sanchece opened pull request: [1215](https://github.com/hackforla/website/pull/1215) at 2021-03-16 07:48 PM PDT -sanchece,2021-03-17T03:00:32Z,- sanchece pull request merged: [1215](https://github.com/hackforla/website/pull/1215#event-4467839121) at 2021-03-16 08:00 PM PDT -sanchece,2021-03-17T03:02:13Z,- sanchece assigned to issue: [1046](https://github.com/hackforla/website/issues/1046) at 2021-03-16 08:02 PM PDT -sanchece,2021-03-17T03:46:15Z,- sanchece submitted pull request review: [1214](https://github.com/hackforla/website/pull/1214#pullrequestreview-613898223) at 2021-03-16 08:46 PM PDT -sanchece,2021-03-17T03:47:08Z,- sanchece closed issue by PR 1214: [1126](https://github.com/hackforla/website/issues/1126#event-4467943435) at 2021-03-16 08:47 PM PDT -sanchece,2021-03-24T00:02:34Z,- sanchece opened pull request: [1317](https://github.com/hackforla/website/pull/1317) at 2021-03-23 05:02 PM PDT -sanchece,2021-03-24T03:17:45Z,- sanchece assigned to issue: [1142](https://github.com/hackforla/website/issues/1142) at 2021-03-23 08:17 PM PDT -sanchece,2021-03-24T03:31:19Z,- sanchece pull request merged: [1317](https://github.com/hackforla/website/pull/1317#event-4499564789) at 2021-03-23 08:31 PM PDT -sanchece,2021-04-04T02:11:32Z,- sanchece opened pull request: [1350](https://github.com/hackforla/website/pull/1350) at 2021-04-03 07:11 PM PDT -sanchece,2021-04-06T06:20:20Z,- sanchece opened pull request: [1361](https://github.com/hackforla/website/pull/1361) at 2021-04-05 11:20 PM PDT -sanchece,2021-04-08T01:18:14Z,- sanchece pull request closed w/o merging: [1350](https://github.com/hackforla/website/pull/1350#event-4565824516) at 2021-04-07 06:18 PM PDT -sanchece,2021-04-11T14:27:26Z,- sanchece pull request closed w/o merging: [1361](https://github.com/hackforla/website/pull/1361#event-4578605042) at 2021-04-11 07:27 AM PDT -sanchece,2021-04-11T14:40:33Z,- sanchece opened pull request: [1394](https://github.com/hackforla/website/pull/1394) at 2021-04-11 07:40 AM PDT -sanchece,2021-04-14T02:41:28Z,- sanchece commented on pull request: [1394](https://github.com/hackforla/website/pull/1394#issuecomment-819179592) at 2021-04-13 07:41 PM PDT -sanchece,2021-04-14T03:31:28Z,- sanchece assigned to issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:31 PM PDT -sanchece,2021-04-14T03:51:44Z,- sanchece unassigned from issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:51 PM PDT -sanchece,2021-04-14T03:52:04Z,- sanchece assigned to issue: [1393](https://github.com/hackforla/website/issues/1393) at 2021-04-13 08:52 PM PDT -sanchece,2021-04-21T17:17:11Z,- sanchece pull request merged: [1394](https://github.com/hackforla/website/pull/1394#event-4626304000) at 2021-04-21 10:17 AM PDT -sanchece,2021-04-26T18:56:59Z,- sanchece opened pull request: [1468](https://github.com/hackforla/website/pull/1468) at 2021-04-26 11:56 AM PDT -sanchece,2021-04-28T03:06:07Z,- sanchece assigned to issue: [1462](https://github.com/hackforla/website/issues/1462) at 2021-04-27 08:06 PM PDT -sanchece,2021-04-28T03:06:33Z,- sanchece unassigned from issue: [1462](https://github.com/hackforla/website/issues/1462) at 2021-04-27 08:06 PM PDT -sanchece,2021-04-30T20:37:59Z,- sanchece commented on pull request: [1468](https://github.com/hackforla/website/pull/1468#issuecomment-830369384) at 2021-04-30 01:37 PM PDT -sanchece,2021-05-01T00:16:15Z,- sanchece pull request merged: [1468](https://github.com/hackforla/website/pull/1468#event-4672539079) at 2021-04-30 05:16 PM PDT -sanchece,2021-05-05T02:11:42Z,- sanchece assigned to issue: [1510](https://github.com/hackforla/website/issues/1510) at 2021-05-04 07:11 PM PDT -sanchece,2021-05-10T00:26:24Z,- sanchece opened pull request: [1535](https://github.com/hackforla/website/pull/1535) at 2021-05-09 05:26 PM PDT -sanchece,2021-05-10T21:42:35Z,- sanchece commented on pull request: [1535](https://github.com/hackforla/website/pull/1535#issuecomment-837392112) at 2021-05-10 02:42 PM PDT -sanchece,2021-05-11T01:08:20Z,- sanchece pull request merged: [1535](https://github.com/hackforla/website/pull/1535#event-4722052521) at 2021-05-10 06:08 PM PDT -sanchece,2021-05-18T00:34:41Z,- sanchece assigned to issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-842734306) at 2021-05-17 05:34 PM PDT -sanchece,2021-06-30T19:36:52Z,- sanchece unassigned from issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-871649405) at 2021-06-30 12:36 PM PDT -sandarshp,3253,SKILLS ISSUE -sandarshp,2022-06-15T21:19:20Z,- sandarshp opened issue: [3253](https://github.com/hackforla/website/issues/3253) at 2022-06-15 02:19 PM PDT -sandarshp,2022-06-15T21:25:00Z,- sandarshp assigned to issue: [3253](https://github.com/hackforla/website/issues/3253#issuecomment-1156957293) at 2022-06-15 02:25 PM PDT -sandarshp,2022-06-22T20:04:28Z,- sandarshp assigned to issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-06-22 01:04 PM PDT -sandarshp,2022-06-29T19:14:56Z,- sandarshp unassigned from issue: [1696](https://github.com/hackforla/website/issues/1696#issuecomment-1030898446) at 2022-06-29 12:14 PM PDT -sandarshp,2022-06-29T19:15:11Z,- sandarshp assigned to issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1158573419) at 2022-06-29 12:15 PM PDT -sandarshp,2022-07-22T16:59:37Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1192768837) at 2022-07-22 09:59 AM PDT -sandarshp,2022-07-31T16:28:42Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1200456922) at 2022-07-31 09:28 AM PDT -sandarshp,2022-08-12T13:26:21Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1213108455) at 2022-08-12 06:26 AM PDT -sandarshp,2022-08-17T20:54:54Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1218481287) at 2022-08-17 01:54 PM PDT -sandarshp,2022-09-21T19:37:41Z,- sandarshp commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1254144713) at 2022-09-21 12:37 PM PDT -sandarshp,2022-09-21T19:41:24Z,- sandarshp unassigned from issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1254144713) at 2022-09-21 12:41 PM PDT -sandavid11,8096,SKILLS ISSUE -sandavid11,2025-04-29T02:59:33Z,- sandavid11 opened issue: [8096](https://github.com/hackforla/website/issues/8096) at 2025-04-28 07:59 PM PDT -sandavid11,2025-04-29T02:59:44Z,- sandavid11 assigned to issue: [8096](https://github.com/hackforla/website/issues/8096) at 2025-04-28 07:59 PM PDT -sandavid11,2025-04-29T03:18:48Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2837329511) at 2025-04-28 08:18 PM PDT -sandavid11,2025-04-30T00:40:20Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2840537342) at 2025-04-29 05:40 PM PDT -sandavid11,2025-04-30T00:41:05Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2840538097) at 2025-04-29 05:41 PM PDT -sandavid11,2025-04-30T00:58:33Z,- sandavid11 assigned to issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2833812934) at 2025-04-29 05:58 PM PDT -sandavid11,2025-04-30T02:36:55Z,- sandavid11 commented on issue: [7736](https://github.com/hackforla/website/issues/7736#issuecomment-2840657006) at 2025-04-29 07:36 PM PDT -sandavid11,2025-04-30T05:24:28Z,- sandavid11 opened pull request: [8101](https://github.com/hackforla/website/pull/8101) at 2025-04-29 10:24 PM PDT -sandavid11,2025-04-30T05:39:30Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2840862121) at 2025-04-29 10:39 PM PDT -sandavid11,2025-05-01T17:15:41Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2845290153) at 2025-05-01 10:15 AM PDT -sandavid11,2025-05-05T17:33:03Z,- sandavid11 pull request merged: [8101](https://github.com/hackforla/website/pull/8101#event-17523433010) at 2025-05-05 10:33 AM PDT -sandavid11,2025-05-12T21:31:02Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2874195804) at 2025-05-12 02:31 PM PDT -sandavid11,2025-05-12T21:34:01Z,- sandavid11 assigned to issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2667436272) at 2025-05-12 02:34 PM PDT -sandavid11,2025-05-12T21:36:39Z,- sandavid11 commented on issue: [7924](https://github.com/hackforla/website/issues/7924#issuecomment-2874221587) at 2025-05-12 02:36 PM PDT -sandavid11,2025-05-12T22:09:52Z,- sandavid11 opened pull request: [8124](https://github.com/hackforla/website/pull/8124) at 2025-05-12 03:09 PM PDT -sandavid11,2025-05-21T16:13:59Z,- sandavid11 pull request merged: [8124](https://github.com/hackforla/website/pull/8124#event-17757060484) at 2025-05-21 09:13 AM PDT -sandavid11,2025-05-22T03:14:10Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2899774380) at 2025-05-21 08:14 PM PDT -sandavid11,2025-05-22T03:35:43Z,- sandavid11 commented on pull request: [8150](https://github.com/hackforla/website/pull/8150#issuecomment-2899800097) at 2025-05-21 08:35 PM PDT -sandavid11,2025-05-22T04:01:08Z,- sandavid11 submitted pull request review: [8150](https://github.com/hackforla/website/pull/8150#pullrequestreview-2859696498) at 2025-05-21 09:01 PM PDT -sandavid11,2025-05-22T17:21:51Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2902011934) at 2025-05-22 10:21 AM PDT -sandavid11,2025-05-23T01:29:43Z,- sandavid11 commented on pull request: [8154](https://github.com/hackforla/website/pull/8154#issuecomment-2903008680) at 2025-05-22 06:29 PM PDT -sandavid11,2025-05-23T04:23:48Z,- sandavid11 submitted pull request review: [8154](https://github.com/hackforla/website/pull/8154#pullrequestreview-2863112943) at 2025-05-22 09:23 PM PDT -sandavid11,2025-05-24T03:54:34Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2906366268) at 2025-05-23 08:54 PM PDT -sandavid11,2025-05-24T04:02:05Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2906368911) at 2025-05-23 09:02 PM PDT -sandavid11,2025-05-25T04:44:28Z,- sandavid11 assigned to issue: [7451](https://github.com/hackforla/website/issues/7451) at 2025-05-24 09:44 PM PDT -sandavid11,2025-05-25T04:45:59Z,- sandavid11 commented on issue: [7451](https://github.com/hackforla/website/issues/7451#issuecomment-2907607021) at 2025-05-24 09:45 PM PDT -sandavid11,2025-05-26T04:06:35Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2908457944) at 2025-05-25 09:06 PM PDT -sandavid11,2025-05-26T04:20:13Z,- sandavid11 commented on pull request: [8159](https://github.com/hackforla/website/pull/8159#issuecomment-2908475392) at 2025-05-25 09:20 PM PDT -sandavid11,2025-05-27T04:17:42Z,- sandavid11 submitted pull request review: [8159](https://github.com/hackforla/website/pull/8159#pullrequestreview-2869517320) at 2025-05-26 09:17 PM PDT -sandavid11,2025-05-27T04:19:44Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2911049538) at 2025-05-26 09:19 PM PDT -sandavid11,2025-05-27T04:23:45Z,- sandavid11 commented on pull request: [8160](https://github.com/hackforla/website/pull/8160#issuecomment-2911054097) at 2025-05-26 09:23 PM PDT -sandavid11,2025-05-27T18:45:30Z,- sandavid11 submitted pull request review: [8160](https://github.com/hackforla/website/pull/8160#pullrequestreview-2872181088) at 2025-05-27 11:45 AM PDT -sandavid11,2025-05-27T23:47:29Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2914453440) at 2025-05-27 04:47 PM PDT -sandavid11,2025-06-13T04:22:23Z,- sandavid11 commented on issue: [8096](https://github.com/hackforla/website/issues/8096#issuecomment-2968982287) at 2025-06-12 09:22 PM PDT -sanjay-0423,2024-03-07T18:11:33Z,- sanjay-0423 assigned to issue: [6156](https://github.com/hackforla/website/issues/6156) at 2024-03-07 10:11 AM PST -sanjay-0423,2024-03-07T18:15:26Z,- sanjay-0423 commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-1984154113) at 2024-03-07 10:15 AM PST -sanjay-0423,2024-03-26T14:29:57Z,- sanjay-0423 unassigned from issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2014484054) at 2024-03-26 07:29 AM PDT -sanjay-0423,2024-03-26T14:32:31Z,- sanjay-0423 commented on issue: [6156](https://github.com/hackforla/website/issues/6156#issuecomment-2020597060) at 2024-03-26 07:32 AM PDT -santi-jose,8189,SKILLS ISSUE -santi-jose,2025-06-17T03:42:24Z,- santi-jose opened issue: [8189](https://github.com/hackforla/website/issues/8189) at 2025-06-16 08:42 PM PDT -santi-jose,2025-06-17T03:42:32Z,- santi-jose assigned to issue: [8189](https://github.com/hackforla/website/issues/8189) at 2025-06-16 08:42 PM PDT -santi-jose,2025-06-20T03:25:01Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-2989690222) at 2025-06-19 08:25 PM PDT -santi-jose,2025-06-23T20:59:38Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-2997926701) at 2025-06-23 01:59 PM PDT -santi-jose,2025-06-24T00:16:14Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-2998351434) at 2025-06-23 05:16 PM PDT -santi-jose,2025-06-24T06:34:33Z,- santi-jose assigned to issue: [8011](https://github.com/hackforla/website/issues/8011) at 2025-06-23 11:34 PM PDT -santi-jose,2025-06-24T06:43:51Z,- santi-jose commented on issue: [8011](https://github.com/hackforla/website/issues/8011#issuecomment-2999023001) at 2025-06-23 11:43 PM PDT -santi-jose,2025-06-25T07:51:23Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3003746366) at 2025-06-25 12:51 AM PDT -santi-jose,2025-06-25T07:51:53Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3003747716) at 2025-06-25 12:51 AM PDT -santi-jose,2025-06-25T08:15:12Z,- santi-jose opened pull request: [8206](https://github.com/hackforla/website/pull/8206) at 2025-06-25 01:15 AM PDT -santi-jose,2025-06-26T06:44:10Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3007340378) at 2025-06-25 11:44 PM PDT -santi-jose,2025-06-27T15:42:01Z,- santi-jose pull request merged: [8206](https://github.com/hackforla/website/pull/8206#event-18360176767) at 2025-06-27 08:42 AM PDT -santi-jose,2025-07-02T01:48:08Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3026072486) at 2025-07-01 06:48 PM PDT -santi-jose,2025-07-02T07:15:26Z,- santi-jose assigned to issue: [8122](https://github.com/hackforla/website/issues/8122) at 2025-07-02 12:15 AM PDT -santi-jose,2025-07-02T09:11:45Z,- santi-jose commented on issue: [8122](https://github.com/hackforla/website/issues/8122#issuecomment-3027081657) at 2025-07-02 02:11 AM PDT -santi-jose,2025-07-02T09:28:12Z,- santi-jose opened pull request: [8241](https://github.com/hackforla/website/pull/8241) at 2025-07-02 02:28 AM PDT -santi-jose,2025-07-03T03:25:07Z,- santi-jose commented on pull request: [8241](https://github.com/hackforla/website/pull/8241#issuecomment-3030501083) at 2025-07-02 08:25 PM PDT -santi-jose,2025-07-06T11:00:38Z,- santi-jose pull request merged: [8241](https://github.com/hackforla/website/pull/8241#event-18491029528) at 2025-07-06 04:00 AM PDT -santi-jose,2025-07-08T23:48:20Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3050601133) at 2025-07-08 04:48 PM PDT -santi-jose,2025-07-09T01:53:20Z,- santi-jose commented on pull request: [8243](https://github.com/hackforla/website/pull/8243#issuecomment-3050800873) at 2025-07-08 06:53 PM PDT -santi-jose,2025-07-18T03:16:01Z,- santi-jose submitted pull request review: [8243](https://github.com/hackforla/website/pull/8243#pullrequestreview-3031658568) at 2025-07-17 08:16 PM PDT -santi-jose,2025-07-25T05:11:12Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3116414710) at 2025-07-24 10:11 PM PDT -santi-jose,2025-07-25T05:26:58Z,- santi-jose commented on pull request: [8250](https://github.com/hackforla/website/pull/8250#issuecomment-3116444543) at 2025-07-24 10:26 PM PDT -santi-jose,2025-07-25T06:24:59Z,- santi-jose submitted pull request review: [8250](https://github.com/hackforla/website/pull/8250#pullrequestreview-3054244922) at 2025-07-24 11:24 PM PDT -santi-jose,2025-07-25T06:26:55Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3116563307) at 2025-07-24 11:26 PM PDT -santi-jose,2025-08-01T03:19:06Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3142029586) at 2025-07-31 08:19 PM PDT -santi-jose,2025-08-01T03:47:43Z,- santi-jose commented on issue: [8189](https://github.com/hackforla/website/issues/8189#issuecomment-3142076012) at 2025-07-31 08:47 PM PDT -santi-jose,2025-08-01T06:04:38Z,- santi-jose assigned to issue: [7613](https://github.com/hackforla/website/issues/7613) at 2025-07-31 11:04 PM PDT -santi-jose,2025-08-01T06:35:20Z,- santi-jose commented on issue: [7613](https://github.com/hackforla/website/issues/7613#issuecomment-3142824390) at 2025-07-31 11:35 PM PDT -santiseccovidal,6426,SKILLS ISSUE -santiseccovidal,2024-03-05T04:01:05Z,- santiseccovidal opened issue: [6426](https://github.com/hackforla/website/issues/6426) at 2024-03-04 08:01 PM PST -santiseccovidal,2024-03-15T12:33:38Z,- santiseccovidal assigned to issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-1998109832) at 2024-03-15 05:33 AM PDT -santiseccovidal,2024-05-08T19:20:20Z,- santiseccovidal assigned to issue: [6732](https://github.com/hackforla/website/issues/6732) at 2024-05-08 12:20 PM PDT -santiseccovidal,2024-05-10T15:45:41Z,- santiseccovidal commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2104833349) at 2024-05-10 08:45 AM PDT -santiseccovidal,2024-05-13T15:42:01Z,- santiseccovidal commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2108056818) at 2024-05-13 08:42 AM PDT -santiseccovidal,2024-05-13T17:09:39Z,- santiseccovidal opened pull request: [6852](https://github.com/hackforla/website/pull/6852) at 2024-05-13 10:09 AM PDT -santiseccovidal,2024-05-14T01:35:57Z,- santiseccovidal commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2109112860) at 2024-05-13 06:35 PM PDT -santiseccovidal,2024-05-16T17:56:16Z,- santiseccovidal pull request merged: [6852](https://github.com/hackforla/website/pull/6852#event-12837798576) at 2024-05-16 10:56 AM PDT -santiseccovidal,2024-05-20T12:56:45Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2120410287) at 2024-05-20 05:56 AM PDT -santiseccovidal,2024-05-20T12:57:03Z,- santiseccovidal closed issue as completed: [6426](https://github.com/hackforla/website/issues/6426#event-12865964727) at 2024-05-20 05:57 AM PDT -santiseccovidal,2024-05-23T15:14:20Z,- santiseccovidal assigned to issue: [6847](https://github.com/hackforla/website/issues/6847#issuecomment-2113237729) at 2024-05-23 08:14 AM PDT -santiseccovidal,2024-05-23T20:04:46Z,- santiseccovidal opened pull request: [6890](https://github.com/hackforla/website/pull/6890) at 2024-05-23 01:04 PM PDT -santiseccovidal,2024-05-26T04:29:17Z,- santiseccovidal pull request merged: [6890](https://github.com/hackforla/website/pull/6890#event-12934975962) at 2024-05-25 09:29 PM PDT -santiseccovidal,2024-05-29T12:35:05Z,- santiseccovidal assigned to issue: [6593](https://github.com/hackforla/website/issues/6593) at 2024-05-29 05:35 AM PDT -santiseccovidal,2024-06-02T20:41:42Z,- santiseccovidal assigned to issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2119086555) at 2024-06-02 01:41 PM PDT -santiseccovidal,2024-06-09T23:06:28Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2156849893) at 2024-06-09 04:06 PM PDT -santiseccovidal,2024-06-10T16:10:36Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2158781205) at 2024-06-10 09:10 AM PDT -santiseccovidal,2024-06-12T14:14:07Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2163125668) at 2024-06-12 07:14 AM PDT -santiseccovidal,2024-06-14T15:32:48Z,- santiseccovidal commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2168281684) at 2024-06-14 08:32 AM PDT -santiseccovidal,2024-06-19T15:19:54Z,- santiseccovidal opened pull request: [7036](https://github.com/hackforla/website/pull/7036) at 2024-06-19 08:19 AM PDT -santiseccovidal,2024-06-23T16:18:12Z,- santiseccovidal pull request merged: [7036](https://github.com/hackforla/website/pull/7036#event-13256490861) at 2024-06-23 09:18 AM PDT -santiseccovidal,2024-06-26T17:40:12Z,- santiseccovidal commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2192282295) at 2024-06-26 10:40 AM PDT -santiseccovidal,2024-06-26T19:31:25Z,- santiseccovidal submitted pull request review: [7043](https://github.com/hackforla/website/pull/7043#pullrequestreview-2142780972) at 2024-06-26 12:31 PM PDT -santiseccovidal,2024-06-27T16:15:21Z,- santiseccovidal commented on pull request: [7070](https://github.com/hackforla/website/pull/7070#issuecomment-2195127230) at 2024-06-27 09:15 AM PDT -santiseccovidal,2024-06-27T16:28:16Z,- santiseccovidal submitted pull request review: [7070](https://github.com/hackforla/website/pull/7070#pullrequestreview-2145918401) at 2024-06-27 09:28 AM PDT -santiseccovidal,2024-06-29T13:34:14Z,- santiseccovidal submitted pull request review: [7043](https://github.com/hackforla/website/pull/7043#pullrequestreview-2149619503) at 2024-06-29 06:34 AM PDT -santiseccovidal,2024-06-30T21:08:07Z,- santiseccovidal submitted pull request review: [7082](https://github.com/hackforla/website/pull/7082#pullrequestreview-2150196069) at 2024-06-30 02:08 PM PDT -santiseccovidal,2024-07-12T17:30:39Z,- santiseccovidal assigned to issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2212664191) at 2024-07-12 10:30 AM PDT -santiseccovidal,2024-07-12T17:33:25Z,- santiseccovidal unassigned from issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2226018114) at 2024-07-12 10:33 AM PDT -santiseccovidal,2024-07-12T17:38:22Z,- santiseccovidal assigned to issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2226018114) at 2024-07-12 10:38 AM PDT -santiseccovidal,2024-07-14T19:36:23Z,- santiseccovidal submitted pull request review: [7106](https://github.com/hackforla/website/pull/7106#pullrequestreview-2176706279) at 2024-07-14 12:36 PM PDT -santiseccovidal,2024-07-17T16:03:01Z,- santiseccovidal commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2233672187) at 2024-07-17 09:03 AM PDT -santiseccovidal,2024-07-17T22:47:15Z,- santiseccovidal commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2234513296) at 2024-07-17 03:47 PM PDT -santiseccovidal,2024-07-22T17:26:00Z,- santiseccovidal commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2243459196) at 2024-07-22 10:26 AM PDT -santiseccovidal,2024-07-22T17:32:08Z,- santiseccovidal submitted pull request review: [7104](https://github.com/hackforla/website/pull/7104#pullrequestreview-2192154020) at 2024-07-22 10:32 AM PDT -santiseccovidal,2024-07-23T18:57:58Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2246022695) at 2024-07-23 11:57 AM PDT -santiseccovidal,2024-07-23T19:35:31Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2246134810) at 2024-07-23 12:35 PM PDT -santiseccovidal,2024-08-08T21:34:39Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2276691127) at 2024-08-08 02:34 PM PDT -santiseccovidal,2024-08-12T18:03:07Z,- santiseccovidal commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2284616820) at 2024-08-12 11:03 AM PDT -santiseccovidal,2024-08-13T19:44:35Z,- santiseccovidal opened pull request: [7280](https://github.com/hackforla/website/pull/7280) at 2024-08-13 12:44 PM PDT -santiseccovidal,2024-08-18T04:23:52Z,- santiseccovidal pull request merged: [7280](https://github.com/hackforla/website/pull/7280#event-13921139222) at 2024-08-17 09:23 PM PDT -santiseccovidal,2024-08-19T12:13:01Z,- santiseccovidal submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2245390227) at 2024-08-19 05:13 AM PDT -santiseccovidal,2024-08-19T12:18:15Z,- santiseccovidal commented on pull request: [7312](https://github.com/hackforla/website/pull/7312#issuecomment-2296437816) at 2024-08-19 05:18 AM PDT -santiseccovidal,2024-08-20T14:34:09Z,- santiseccovidal commented on pull request: [7320](https://github.com/hackforla/website/pull/7320#issuecomment-2299016448) at 2024-08-20 07:34 AM PDT -santiseccovidal,2024-08-20T16:50:24Z,- santiseccovidal submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2248550405) at 2024-08-20 09:50 AM PDT -santiseccovidal,2024-08-20T19:30:31Z,- santiseccovidal commented on issue: [7185](https://github.com/hackforla/website/issues/7185#issuecomment-2299613802) at 2024-08-20 12:30 PM PDT -santiseccovidal,2024-08-20T21:41:41Z,- santiseccovidal submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2249143330) at 2024-08-20 02:41 PM PDT -santiseccovidal,2024-08-20T21:48:03Z,- santiseccovidal submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2249152090) at 2024-08-20 02:48 PM PDT -santiseccovidal,2024-08-21T12:42:14Z,- santiseccovidal submitted pull request review: [7320](https://github.com/hackforla/website/pull/7320#pullrequestreview-2250695609) at 2024-08-21 05:42 AM PDT -santiseccovidal,2024-08-21T12:53:37Z,- santiseccovidal submitted pull request review: [7312](https://github.com/hackforla/website/pull/7312#pullrequestreview-2250721900) at 2024-08-21 05:53 AM PDT -santiseccovidal,2024-08-25T14:38:13Z,- santiseccovidal assigned to issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2173957256) at 2024-08-25 07:38 AM PDT -santiseccovidal,2024-08-26T13:41:41Z,- santiseccovidal commented on issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2310248903) at 2024-08-26 06:41 AM PDT -santiseccovidal,2024-08-26T13:46:17Z,- santiseccovidal commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2310259160) at 2024-08-26 06:46 AM PDT -santiseccovidal,2024-08-31T00:22:14Z,- santiseccovidal commented on issue: [7015](https://github.com/hackforla/website/issues/7015#issuecomment-2322629526) at 2024-08-30 05:22 PM PDT -santiseccovidal,2024-09-01T17:51:04Z,- santiseccovidal opened pull request: [7375](https://github.com/hackforla/website/pull/7375) at 2024-09-01 10:51 AM PDT -santiseccovidal,2024-09-04T13:15:13Z,- santiseccovidal commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2329013031) at 2024-09-04 06:15 AM PDT -santiseccovidal,2024-09-07T17:43:46Z,- santiseccovidal pull request merged: [7375](https://github.com/hackforla/website/pull/7375#event-14172118547) at 2024-09-07 10:43 AM PDT -santiseccovidal,2024-09-11T12:15:49Z,- santiseccovidal submitted pull request review: [6442](https://github.com/hackforla/website/pull/6442#pullrequestreview-2296732242) at 2024-09-11 05:15 AM PDT -santiseccovidal,2024-09-14T14:26:33Z,- santiseccovidal assigned to issue: [7167](https://github.com/hackforla/website/issues/7167#issuecomment-2264112332) at 2024-09-14 07:26 AM PDT -santiseccovidal,2024-09-14T15:22:34Z,- santiseccovidal opened issue: [7448](https://github.com/hackforla/website/issues/7448) at 2024-09-14 08:22 AM PDT -santiseccovidal,2024-09-14T15:26:56Z,- santiseccovidal opened issue: [7449](https://github.com/hackforla/website/issues/7449) at 2024-09-14 08:26 AM PDT -santiseccovidal,2024-09-14T15:28:20Z,- santiseccovidal opened issue: [7450](https://github.com/hackforla/website/issues/7450) at 2024-09-14 08:28 AM PDT -santiseccovidal,2024-09-14T15:36:16Z,- santiseccovidal opened issue: [7451](https://github.com/hackforla/website/issues/7451) at 2024-09-14 08:36 AM PDT -santiseccovidal,2024-09-14T15:38:23Z,- santiseccovidal opened issue: [7452](https://github.com/hackforla/website/issues/7452) at 2024-09-14 08:38 AM PDT -santiseccovidal,2024-09-14T15:41:25Z,- santiseccovidal opened issue: [7453](https://github.com/hackforla/website/issues/7453) at 2024-09-14 08:41 AM PDT -santiseccovidal,2024-09-14T15:42:50Z,- santiseccovidal opened issue: [7454](https://github.com/hackforla/website/issues/7454) at 2024-09-14 08:42 AM PDT -santiseccovidal,2024-09-14T15:46:33Z,- santiseccovidal opened issue: [7455](https://github.com/hackforla/website/issues/7455) at 2024-09-14 08:46 AM PDT -santiseccovidal,2024-09-14T15:48:51Z,- santiseccovidal opened issue: [7456](https://github.com/hackforla/website/issues/7456) at 2024-09-14 08:48 AM PDT -santiseccovidal,2024-09-18T19:13:47Z,- santiseccovidal opened issue: [7492](https://github.com/hackforla/website/issues/7492) at 2024-09-18 12:13 PM PDT -santiseccovidal,2024-09-22T16:16:34Z,- santiseccovidal commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2366857927) at 2024-09-22 09:16 AM PDT -santiseccovidal,2024-09-22T17:47:08Z,- santiseccovidal commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2366891222) at 2024-09-22 10:47 AM PDT -santiseccovidal,2024-09-22T20:00:37Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2366940134) at 2024-09-22 01:00 PM PDT -santiseccovidal,2024-09-23T18:24:55Z,- santiseccovidal assigned to issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-09-23 11:24 AM PDT -santiseccovidal,2024-09-23T18:25:14Z,- santiseccovidal unassigned from issue: [6981](https://github.com/hackforla/website/issues/6981#issuecomment-2298688540) at 2024-09-23 11:25 AM PDT -santiseccovidal,2024-09-23T20:32:33Z,- santiseccovidal submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2323252445) at 2024-09-23 01:32 PM PDT -santiseccovidal,2024-09-24T15:33:43Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2371649403) at 2024-09-24 08:33 AM PDT -santiseccovidal,2024-09-24T16:22:41Z,- santiseccovidal submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2325788786) at 2024-09-24 09:22 AM PDT -santiseccovidal,2024-09-25T18:39:07Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2374885223) at 2024-09-25 11:39 AM PDT -santiseccovidal,2024-09-25T19:41:46Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2375104355) at 2024-09-25 12:41 PM PDT -santiseccovidal,2024-09-27T14:30:55Z,- santiseccovidal assigned to issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2372798413) at 2024-09-27 07:30 AM PDT -santiseccovidal,2024-09-27T14:34:34Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2379428693) at 2024-09-27 07:34 AM PDT -santiseccovidal,2024-09-27T14:35:09Z,- santiseccovidal closed issue as completed: [6426](https://github.com/hackforla/website/issues/6426#event-14432206906) at 2024-09-27 07:35 AM PDT -santiseccovidal,2024-09-27T14:36:21Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2379432143) at 2024-09-27 07:36 AM PDT -santiseccovidal,2024-09-27T15:44:46Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2379579077) at 2024-09-27 08:44 AM PDT -santiseccovidal,2024-09-27T15:57:21Z,- santiseccovidal commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2379603291) at 2024-09-27 08:57 AM PDT -santiseccovidal,2024-09-28T21:21:59Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2380906299) at 2024-09-28 02:21 PM PDT -santiseccovidal,2024-09-30T19:54:42Z,- santiseccovidal opened pull request: [7546](https://github.com/hackforla/website/pull/7546) at 2024-09-30 12:54 PM PDT -santiseccovidal,2024-10-01T14:20:00Z,- santiseccovidal commented on pull request: [7546](https://github.com/hackforla/website/pull/7546#issuecomment-2386106849) at 2024-10-01 07:20 AM PDT -santiseccovidal,2024-10-01T14:23:02Z,- santiseccovidal pull request closed w/o merging: [7546](https://github.com/hackforla/website/pull/7546#event-14474021338) at 2024-10-01 07:23 AM PDT -santiseccovidal,2024-10-01T18:22:39Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2386677854) at 2024-10-01 11:22 AM PDT -santiseccovidal,2024-10-07T14:01:01Z,- santiseccovidal submitted pull request review: [7559](https://github.com/hackforla/website/pull/7559#pullrequestreview-2352047447) at 2024-10-07 07:01 AM PDT -santiseccovidal,2024-10-10T16:31:39Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2405568465) at 2024-10-10 09:31 AM PDT -santiseccovidal,2024-10-12T23:51:59Z,- santiseccovidal commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2408748186) at 2024-10-12 04:51 PM PDT -santiseccovidal,2024-10-13T22:04:01Z,- santiseccovidal reopened pull request: [7546](https://github.com/hackforla/website/pull/7546#event-14474021338) at 2024-10-13 03:04 PM PDT -santiseccovidal,2024-10-13T22:04:24Z,- santiseccovidal pull request closed w/o merging: [7546](https://github.com/hackforla/website/pull/7546#event-14620705172) at 2024-10-13 03:04 PM PDT -santiseccovidal,2024-10-15T15:42:34Z,- santiseccovidal opened pull request: [7595](https://github.com/hackforla/website/pull/7595) at 2024-10-15 08:42 AM PDT -santiseccovidal,2024-10-15T18:38:36Z,- santiseccovidal pull request closed w/o merging: [7595](https://github.com/hackforla/website/pull/7595#event-14662498766) at 2024-10-15 11:38 AM PDT -santiseccovidal,2024-10-15T18:40:12Z,- santiseccovidal reopened pull request: [7595](https://github.com/hackforla/website/pull/7595#event-14662498766) at 2024-10-15 11:40 AM PDT -santiseccovidal,2024-10-15T18:55:19Z,- santiseccovidal pull request closed w/o merging: [7595](https://github.com/hackforla/website/pull/7595#event-14662710396) at 2024-10-15 11:55 AM PDT -santiseccovidal,2024-10-15T19:21:57Z,- santiseccovidal commented on pull request: [7546](https://github.com/hackforla/website/pull/7546#issuecomment-2414827930) at 2024-10-15 12:21 PM PDT -santiseccovidal,2024-10-18T16:32:13Z,- santiseccovidal assigned to issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2378306304) at 2024-10-18 09:32 AM PDT -santiseccovidal,2024-10-18T16:32:29Z,- santiseccovidal unassigned from issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2422845169) at 2024-10-18 09:32 AM PDT -santiseccovidal,2024-10-20T17:37:35Z,- santiseccovidal reopened pull request: [7595](https://github.com/hackforla/website/pull/7595#event-14662710396) at 2024-10-20 10:37 AM PDT -santiseccovidal,2024-10-21T17:55:21Z,- santiseccovidal opened pull request: [7616](https://github.com/hackforla/website/pull/7616) at 2024-10-21 10:55 AM PDT -santiseccovidal,2024-10-21T18:28:57Z,- santiseccovidal commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2427429768) at 2024-10-21 11:28 AM PDT -santiseccovidal,2024-10-22T21:08:18Z,- santiseccovidal commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2430292366) at 2024-10-22 02:08 PM PDT -santiseccovidal,2024-10-25T22:28:40Z,- santiseccovidal commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2438966586) at 2024-10-25 03:28 PM PDT -santiseccovidal,2024-10-26T19:46:04Z,- santiseccovidal commented on pull request: [7631](https://github.com/hackforla/website/pull/7631#issuecomment-2439716696) at 2024-10-26 12:46 PM PDT -santiseccovidal,2024-10-26T19:47:43Z,- santiseccovidal submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2397348303) at 2024-10-26 12:47 PM PDT -santiseccovidal,2024-10-27T17:03:11Z,- santiseccovidal commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2440100465) at 2024-10-27 10:03 AM PDT -santiseccovidal,2024-10-27T20:39:07Z,- santiseccovidal commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2440167364) at 2024-10-27 01:39 PM PDT -santiseccovidal,2024-10-28T19:01:16Z,- santiseccovidal commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2442394114) at 2024-10-28 12:01 PM PDT -santiseccovidal,2024-10-29T02:25:54Z,- santiseccovidal pull request merged: [7616](https://github.com/hackforla/website/pull/7616#event-14971886358) at 2024-10-28 07:25 PM PDT -santiseccovidal,2024-10-29T12:41:51Z,- santiseccovidal pull request closed w/o merging: [7595](https://github.com/hackforla/website/pull/7595#event-14983648531) at 2024-10-29 05:41 AM PDT -santiseccovidal,2024-10-29T12:51:55Z,- santiseccovidal commented on issue: [7455](https://github.com/hackforla/website/issues/7455#issuecomment-2444127714) at 2024-10-29 05:51 AM PDT -santiseccovidal,2024-11-01T15:29:07Z,- santiseccovidal submitted pull request review: [7638](https://github.com/hackforla/website/pull/7638#pullrequestreview-2410302309) at 2024-11-01 08:29 AM PDT -santiseccovidal,2024-11-03T20:39:39Z,- santiseccovidal commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2453569952) at 2024-11-03 12:39 PM PST -santiseccovidal,2024-11-10T17:39:01Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2466821192) at 2024-11-10 09:39 AM PST -santiseccovidal,2024-11-14T18:57:51Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2477188692) at 2024-11-14 10:57 AM PST -santiseccovidal,2024-11-15T16:02:14Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479309743) at 2024-11-15 08:02 AM PST -santiseccovidal,2024-11-15T16:09:39Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479324427) at 2024-11-15 08:09 AM PST -santiseccovidal,2024-11-15T16:12:09Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479328886) at 2024-11-15 08:12 AM PST -santiseccovidal,2024-11-15T16:14:05Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479332563) at 2024-11-15 08:14 AM PST -santiseccovidal,2024-11-15T16:19:53Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479343144) at 2024-11-15 08:19 AM PST -santiseccovidal,2024-11-15T16:22:31Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479347917) at 2024-11-15 08:22 AM PST -santiseccovidal,2024-11-15T16:25:48Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479361786) at 2024-11-15 08:25 AM PST -santiseccovidal,2024-11-15T16:49:42Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479419552) at 2024-11-15 08:49 AM PST -santiseccovidal,2024-11-15T16:50:26Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479420738) at 2024-11-15 08:50 AM PST -santiseccovidal,2024-11-15T17:46:58Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479588883) at 2024-11-15 09:46 AM PST -santiseccovidal,2024-11-15T19:37:07Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2479791536) at 2024-11-15 11:37 AM PST -santiseccovidal,2024-11-17T22:18:43Z,- santiseccovidal commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481629204) at 2024-11-17 02:18 PM PST -santiseccovidal,2024-11-18T01:44:55Z,- santiseccovidal submitted pull request review: [7723](https://github.com/hackforla/website/pull/7723#pullrequestreview-2441324908) at 2024-11-17 05:44 PM PST -santiseccovidal,2024-11-18T02:08:23Z,- santiseccovidal submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2441339214) at 2024-11-17 06:08 PM PST -santiseccovidal,2024-11-21T19:04:04Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2492040823) at 2024-11-21 11:04 AM PST -santiseccovidal,2024-11-21T19:09:24Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2492050740) at 2024-11-21 11:09 AM PST -santiseccovidal,2024-11-21T20:21:38Z,- santiseccovidal submitted pull request review: [7733](https://github.com/hackforla/website/pull/7733#pullrequestreview-2452588715) at 2024-11-21 12:21 PM PST -santiseccovidal,2024-11-22T18:19:19Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2494480611) at 2024-11-22 10:19 AM PST -santiseccovidal,2024-11-22T18:19:31Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2494480979) at 2024-11-22 10:19 AM PST -santiseccovidal,2024-11-22T18:19:35Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2494481088) at 2024-11-22 10:19 AM PST -santiseccovidal,2024-11-22T21:02:12Z,- santiseccovidal assigned to issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2059588039) at 2024-11-22 01:02 PM PST -santiseccovidal,2024-11-24T05:32:26Z,- santiseccovidal commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2495823724) at 2024-11-23 09:32 PM PST -santiseccovidal,2024-11-24T21:17:25Z,- santiseccovidal opened issue: [7762](https://github.com/hackforla/website/issues/7762) at 2024-11-24 01:17 PM PST -santiseccovidal,2024-12-03T19:35:19Z,- santiseccovidal assigned to issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2515419820) at 2024-12-03 11:35 AM PST -santiseccovidal,2024-12-05T18:30:16Z,- santiseccovidal commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2521127214) at 2024-12-05 10:30 AM PST -santiseccovidal,2024-12-05T18:43:46Z,- santiseccovidal commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2521153234) at 2024-12-05 10:43 AM PST -santiseccovidal,2024-12-05T20:44:36Z,- santiseccovidal commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2521360969) at 2024-12-05 12:44 PM PST -santiseccovidal,2025-01-14T19:44:32Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2590966433) at 2025-01-14 11:44 AM PST -santiseccovidal,2025-01-14T22:35:34Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2591248152) at 2025-01-14 02:35 PM PST -santiseccovidal,2025-01-14T22:54:17Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2591272310) at 2025-01-14 02:54 PM PST -santiseccovidal,2025-01-27T04:19:44Z,- santiseccovidal commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2614820055) at 2025-01-26 08:19 PM PST -santiseccovidal,2025-02-03T15:35:43Z,- santiseccovidal commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2631349855) at 2025-02-03 07:35 AM PST -santiseccovidal,2025-02-05T18:26:55Z,- santiseccovidal submitted pull request review: [7777](https://github.com/hackforla/website/pull/7777#pullrequestreview-2596637961) at 2025-02-05 10:26 AM PST -santiseccovidal,2025-02-16T17:47:52Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2661544320) at 2025-02-16 09:47 AM PST -santiseccovidal,2025-02-16T17:59:00Z,- santiseccovidal commented on pull request: [7908](https://github.com/hackforla/website/pull/7908#issuecomment-2661548235) at 2025-02-16 09:59 AM PST -santiseccovidal,2025-02-16T19:14:06Z,- santiseccovidal assigned to issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2381010652) at 2025-02-16 11:14 AM PST -santiseccovidal,2025-02-16T19:14:23Z,- santiseccovidal unassigned from issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2661576139) at 2025-02-16 11:14 AM PST -santiseccovidal,2025-02-16T19:19:45Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2381010607) at 2025-02-16 11:19 AM PST -santiseccovidal,2025-02-16T19:20:04Z,- santiseccovidal unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 11:20 AM PST -santiseccovidal,2025-02-16T20:00:42Z,- santiseccovidal unassigned from issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2631349855) at 2025-02-16 12:00 PM PST -santiseccovidal,2025-02-16T20:21:25Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 12:21 PM PST -santiseccovidal,2025-02-16T20:21:38Z,- santiseccovidal unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661578271) at 2025-02-16 12:21 PM PST -santiseccovidal,2025-02-16T20:24:29Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661600532) at 2025-02-16 12:24 PM PST -santiseccovidal,2025-02-16T20:24:44Z,- santiseccovidal unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661601504) at 2025-02-16 12:24 PM PST -santiseccovidal,2025-02-17T01:15:51Z,- santiseccovidal submitted pull request review: [7908](https://github.com/hackforla/website/pull/7908#pullrequestreview-2619795969) at 2025-02-16 05:15 PM PST -santiseccovidal,2025-02-17T01:16:34Z,- santiseccovidal submitted pull request review: [7908](https://github.com/hackforla/website/pull/7908#pullrequestreview-2619796377) at 2025-02-16 05:16 PM PST -santiseccovidal,2025-02-22T20:32:56Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2676383123) at 2025-02-22 12:32 PM PST -santiseccovidal,2025-02-23T19:13:20Z,- santiseccovidal assigned to issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2661601504) at 2025-02-23 11:13 AM PST -santiseccovidal,2025-02-28T19:47:39Z,- santiseccovidal commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2691428272) at 2025-02-28 11:47 AM PST -santiseccovidal,2025-03-10T18:48:45Z,- santiseccovidal opened pull request: [7987](https://github.com/hackforla/website/pull/7987) at 2025-03-10 11:48 AM PDT -santiseccovidal,2025-03-11T15:27:09Z,- santiseccovidal commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2714761547) at 2025-03-11 08:27 AM PDT -santiseccovidal,2025-03-13T13:46:05Z,- santiseccovidal commented on issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2721318610) at 2025-03-13 06:46 AM PDT -santiseccovidal,2025-03-15T18:45:27Z,- santiseccovidal commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2726928766) at 2025-03-15 11:45 AM PDT -santiseccovidal,2025-03-23T16:21:27Z,- santiseccovidal assigned to issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2381010610) at 2025-03-23 09:21 AM PDT -santiseccovidal,2025-03-23T16:21:40Z,- santiseccovidal unassigned from issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2746296623) at 2025-03-23 09:21 AM PDT -santiseccovidal,2025-03-24T15:15:16Z,- santiseccovidal commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2748489838) at 2025-03-24 08:15 AM PDT -santiseccovidal,2025-03-24T20:49:28Z,- santiseccovidal pull request merged: [7987](https://github.com/hackforla/website/pull/7987#event-16962955789) at 2025-03-24 01:49 PM PDT -santiseccovidal,2025-03-31T13:26:36Z,- santiseccovidal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2766235810) at 2025-03-31 06:26 AM PDT -santiseccovidal,2025-03-31T18:15:59Z,- santiseccovidal submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2730163906) at 2025-03-31 11:15 AM PDT -santiseccovidal,2025-04-09T20:21:04Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2790914511) at 2025-04-09 01:21 PM PDT -santiseccovidal,2025-04-09T20:34:57Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2790939098) at 2025-04-09 01:34 PM PDT -santiseccovidal,2025-04-10T17:07:37Z,- santiseccovidal commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2794577321) at 2025-04-10 10:07 AM PDT -santiseccovidal,2025-04-13T21:39:54Z,- santiseccovidal submitted pull request review: [8062](https://github.com/hackforla/website/pull/8062#pullrequestreview-2762849535) at 2025-04-13 02:39 PM PDT -santiseccovidal,2025-04-16T03:31:15Z,- santiseccovidal submitted pull request review: [8018](https://github.com/hackforla/website/pull/8018#pullrequestreview-2770552507) at 2025-04-15 08:31 PM PDT -santiseccovidal,2025-04-16T03:33:19Z,- santiseccovidal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2808138838) at 2025-04-15 08:33 PM PDT -santiseccovidal,2025-04-16T19:53:35Z,- santiseccovidal commented on pull request: [8018](https://github.com/hackforla/website/pull/8018#issuecomment-2810610160) at 2025-04-16 12:53 PM PDT -santiseccovidal,2025-04-21T23:56:20Z,- santiseccovidal commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2819731155) at 2025-04-21 04:56 PM PDT -santiseccovidal,2025-04-22T00:09:32Z,- santiseccovidal submitted pull request review: [8069](https://github.com/hackforla/website/pull/8069#pullrequestreview-2782452513) at 2025-04-21 05:09 PM PDT -santiseccovidal,2025-04-28T01:03:22Z,- santiseccovidal closed issue by PR 8072: [7755](https://github.com/hackforla/website/issues/7755#event-17425621350) at 2025-04-27 06:03 PM PDT -santiseccovidal,2025-04-28T01:11:39Z,- santiseccovidal submitted pull request review: [8090](https://github.com/hackforla/website/pull/8090#pullrequestreview-2797812273) at 2025-04-27 06:11 PM PDT -santiseccovidal,2025-04-28T18:04:20Z,- santiseccovidal submitted pull request review: [8088](https://github.com/hackforla/website/pull/8088#pullrequestreview-2800212144) at 2025-04-28 11:04 AM PDT -santiseccovidal,2025-04-28T18:04:55Z,- santiseccovidal closed issue by PR 8088: [7734](https://github.com/hackforla/website/issues/7734#event-17439422409) at 2025-04-28 11:04 AM PDT -santiseccovidal,2025-05-02T18:07:40Z,- santiseccovidal closed issue by PR 8107: [7441](https://github.com/hackforla/website/issues/7441#event-17503204372) at 2025-05-02 11:07 AM PDT -santiseccovidal,2025-05-06T20:07:38Z,- santiseccovidal assigned to issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392752116) at 2025-05-06 01:07 PM PDT -santiseccovidal,2025-05-06T20:11:31Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2855833823) at 2025-05-06 01:11 PM PDT -santiseccovidal,2025-05-16T19:55:22Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2887564351) at 2025-05-16 12:55 PM PDT -santiseccovidal,2025-05-19T02:58:37Z,- santiseccovidal closed issue by PR 8126: [7943](https://github.com/hackforla/website/issues/7943#event-17706200425) at 2025-05-18 07:58 PM PDT -santiseccovidal,2025-05-22T22:19:31Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2902730491) at 2025-05-22 03:19 PM PDT -santiseccovidal,2025-05-23T18:27:59Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2905416765) at 2025-05-23 11:27 AM PDT -santiseccovidal,2025-05-28T19:17:32Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917364988) at 2025-05-28 12:17 PM PDT -santiseccovidal,2025-05-28T19:25:58Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917386097) at 2025-05-28 12:25 PM PDT -santiseccovidal,2025-05-28T19:29:45Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917394470) at 2025-05-28 12:29 PM PDT -santiseccovidal,2025-05-28T19:33:51Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917403332) at 2025-05-28 12:33 PM PDT -santiseccovidal,2025-05-28T19:41:01Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917418613) at 2025-05-28 12:41 PM PDT -santiseccovidal,2025-05-28T19:54:45Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2917453101) at 2025-05-28 12:54 PM PDT -santiseccovidal,2025-06-06T17:36:57Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2949975892) at 2025-06-06 10:36 AM PDT -santiseccovidal,2025-06-15T18:09:20Z,- santiseccovidal closed issue by PR 8177: [8176](https://github.com/hackforla/website/issues/8176#event-18158447423) at 2025-06-15 11:09 AM PDT -santiseccovidal,2025-06-16T18:15:06Z,- santiseccovidal submitted pull request review: [8181](https://github.com/hackforla/website/pull/8181#pullrequestreview-2933062232) at 2025-06-16 11:15 AM PDT -santiseccovidal,2025-06-25T17:27:25Z,- santiseccovidal submitted pull request review: [8175](https://github.com/hackforla/website/pull/8175#pullrequestreview-2959067589) at 2025-06-25 10:27 AM PDT -santiseccovidal,2025-06-29T17:12:48Z,- santiseccovidal commented on pull request: [8235](https://github.com/hackforla/website/pull/8235#issuecomment-3016876291) at 2025-06-29 10:12 AM PDT -santiseccovidal,2025-06-29T23:38:53Z,- santiseccovidal submitted pull request review: [8235](https://github.com/hackforla/website/pull/8235#pullrequestreview-2969587363) at 2025-06-29 04:38 PM PDT -santiseccovidal,2025-06-30T14:05:25Z,- santiseccovidal submitted pull request review: [8235](https://github.com/hackforla/website/pull/8235#pullrequestreview-2971378313) at 2025-06-30 07:05 AM PDT -santiseccovidal,2025-06-30T14:08:21Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3019311376) at 2025-06-30 07:08 AM PDT -santiseccovidal,2025-07-16T15:12:40Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3079084636) at 2025-07-16 08:12 AM PDT -santiseccovidal,2025-08-02T14:00:48Z,- santiseccovidal commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-3146516880) at 2025-08-02 07:00 AM PDT -sanya301,2022-04-16T01:32:44Z,- sanya301 opened issue: [3059](https://github.com/hackforla/website/issues/3059) at 2022-04-15 06:32 PM PDT -sanya301,2022-04-16T02:09:36Z,- sanya301 commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1100508870) at 2022-04-15 07:09 PM PDT -sanya301,2022-04-21T04:31:26Z,- sanya301 commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1104696934) at 2022-04-20 09:31 PM PDT -sarahgraup,8129,SKILLS ISSUE -sarahgraup,2025-05-14T02:47:23Z,- sarahgraup opened issue: [8129](https://github.com/hackforla/website/issues/8129) at 2025-05-13 07:47 PM PDT -sarahgraup,2025-05-14T02:47:34Z,- sarahgraup assigned to issue: [8129](https://github.com/hackforla/website/issues/8129) at 2025-05-13 07:47 PM PDT -sarahgraup,2025-05-14T02:56:46Z,- sarahgraup commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2878489216) at 2025-05-13 07:56 PM PDT -sarahgraup,2025-05-23T15:44:14Z,- sarahgraup commented on issue: [8129](https://github.com/hackforla/website/issues/8129#issuecomment-2904886375) at 2025-05-23 08:44 AM PDT -sarahgraup,2025-05-27T19:39:29Z,- sarahgraup assigned to issue: [8000](https://github.com/hackforla/website/issues/8000) at 2025-05-27 12:39 PM PDT -sarahgraup,2025-05-27T19:51:29Z,- sarahgraup commented on issue: [8000](https://github.com/hackforla/website/issues/8000#issuecomment-2913818195) at 2025-05-27 12:51 PM PDT -sarahgraup,2025-05-27T21:48:22Z,- sarahgraup opened pull request: [8162](https://github.com/hackforla/website/pull/8162) at 2025-05-27 02:48 PM PDT -sarahgraup,2025-06-04T17:29:03Z,- sarahgraup pull request merged: [8162](https://github.com/hackforla/website/pull/8162#event-17986163150) at 2025-06-04 10:29 AM PDT -Saranjen,5079,SKILLS ISSUE -Saranjen,2023-07-26T03:05:30Z,- Saranjen opened issue: [5079](https://github.com/hackforla/website/issues/5079) at 2023-07-25 08:05 PM PDT -Saranjen,2023-07-26T03:05:42Z,- Saranjen assigned to issue: [5079](https://github.com/hackforla/website/issues/5079) at 2023-07-25 08:05 PM PDT -sarans-h,2024-10-30T10:08:37Z,- sarans-h commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2446428278) at 2024-10-30 03:08 AM PDT -sarL3y,2019-10-23T04:00:04Z,- sarL3y commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-545255117) at 2019-10-22 09:00 PM PDT -sarL3y,2019-10-23T09:06:47Z,- sarL3y commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-545346609) at 2019-10-23 02:06 AM PDT -sarL3y,2019-10-29T03:44:26Z,- sarL3y opened pull request: [164](https://github.com/hackforla/website/pull/164) at 2019-10-28 08:44 PM PDT -sarL3y,2019-10-30T02:43:34Z,- sarL3y pull request merged: [164](https://github.com/hackforla/website/pull/164#event-2754444202) at 2019-10-29 07:43 PM PDT -sarL3y,2019-10-30T03:18:26Z,- sarL3y commented on issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-547721864) at 2019-10-29 08:18 PM PDT -sarL3y,2019-11-05T03:12:18Z,- sarL3y commented on pull request: [166](https://github.com/hackforla/website/pull/166#issuecomment-549644539) at 2019-11-04 07:12 PM PST -sarL3y,2019-11-30T00:26:59Z,- sarL3y opened issue: [201](https://github.com/hackforla/website/issues/201) at 2019-11-29 04:26 PM PST -sarL3y,2020-01-22T02:55:28Z,- sarL3y assigned to issue: [288](https://github.com/hackforla/website/issues/288) at 2020-01-21 06:55 PM PST -sarL3y,2020-01-27T17:34:50Z,- sarL3y commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578863018) at 2020-01-27 09:34 AM PST -sarL3y,2020-01-27T17:37:17Z,- sarL3y commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-578864077) at 2020-01-27 09:37 AM PST -sarL3y,2020-01-27T22:43:35Z,- sarL3y assigned to issue: [286](https://github.com/hackforla/website/issues/286) at 2020-01-27 02:43 PM PST -sarL3y,2020-03-02T03:47:54Z,- sarL3y closed issue as completed: [286](https://github.com/hackforla/website/issues/286#event-3086310049) at 2020-03-01 07:47 PM PST -sarL3y,2020-03-02T23:32:29Z,- sarL3y commented on issue: [288](https://github.com/hackforla/website/issues/288#issuecomment-593677710) at 2020-03-02 03:32 PM PST -sarL3y,2020-05-10T17:54:33Z,- sarL3y commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-626364864) at 2020-05-10 10:54 AM PDT -sarthkdobriyal,2023-02-23T13:50:05Z,- sarthkdobriyal opened pull request: [4030](https://github.com/hackforla/website/pull/4030) at 2023-02-23 05:50 AM PST -sarthkdobriyal,2023-02-24T04:14:05Z,- sarthkdobriyal pull request closed w/o merging: [4030](https://github.com/hackforla/website/pull/4030#event-8597984506) at 2023-02-23 08:14 PM PST -Satenik-Ba,3707,SKILLS ISSUE -Satenik-Ba,2022-11-09T03:31:38Z,- Satenik-Ba opened issue: [3707](https://github.com/hackforla/website/issues/3707) at 2022-11-08 07:31 PM PST -Satenik-Ba,2022-11-20T19:33:45Z,- Satenik-Ba assigned to issue: [3707](https://github.com/hackforla/website/issues/3707) at 2022-11-20 11:33 AM PST -Satenik-Ba,2022-11-20T19:38:40Z,- Satenik-Ba assigned to issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1312622234) at 2022-11-20 11:38 AM PST -Satenik-Ba,2022-11-20T19:40:02Z,- Satenik-Ba commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1321224279) at 2022-11-20 11:40 AM PST -Satenik-Ba,2022-11-21T22:22:33Z,- Satenik-Ba opened pull request: [3737](https://github.com/hackforla/website/pull/3737) at 2022-11-21 02:22 PM PST -Satenik-Ba,2022-11-22T18:23:15Z,- Satenik-Ba pull request merged: [3737](https://github.com/hackforla/website/pull/3737#event-7870584176) at 2022-11-22 10:23 AM PST -Satenik-Ba,2022-11-22T18:23:27Z,- Satenik-Ba reopened pull request: [3737](https://github.com/hackforla/website/pull/3737#event-7870584176) at 2022-11-22 10:23 AM PST -Satenik-Ba,2022-11-22T18:24:12Z,- Satenik-Ba closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-7870590371) at 2022-11-22 10:24 AM PST -Satenik-Ba,2022-11-23T02:19:58Z,- Satenik-Ba assigned to issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1145856056) at 2022-11-22 06:19 PM PST -Satenik-Ba,2022-11-24T03:16:50Z,- Satenik-Ba unassigned from issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1324465225) at 2022-11-23 07:16 PM PST -Satenik-Ba,2022-11-24T03:17:35Z,- Satenik-Ba assigned to issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1324465225) at 2022-11-23 07:17 PM PST -Satenik-Ba,2022-11-24T03:18:25Z,- Satenik-Ba commented on issue: [3213](https://github.com/hackforla/website/issues/3213#issuecomment-1325898298) at 2022-11-23 07:18 PM PST -Satenik-Ba,2022-11-24T18:54:22Z,- Satenik-Ba pull request merged: [3737](https://github.com/hackforla/website/pull/3737#event-7888190486) at 2022-11-24 10:54 AM PST -Satenik-Ba,2022-11-25T03:56:46Z,- Satenik-Ba opened pull request: [3745](https://github.com/hackforla/website/pull/3745) at 2022-11-24 07:56 PM PST -Satenik-Ba,2022-11-25T22:19:06Z,- Satenik-Ba pull request merged: [3745](https://github.com/hackforla/website/pull/3745#event-7895318895) at 2022-11-25 02:19 PM PST -Satenik-Ba,2022-11-28T00:18:52Z,- Satenik-Ba assigned to issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1314443053) at 2022-11-27 04:18 PM PST -Satenik-Ba,2022-11-28T00:20:10Z,- Satenik-Ba commented on issue: [3693](https://github.com/hackforla/website/issues/3693#issuecomment-1328381527) at 2022-11-27 04:20 PM PST -Satenik-Ba,2022-11-28T18:29:44Z,- Satenik-Ba opened pull request: [3752](https://github.com/hackforla/website/pull/3752) at 2022-11-28 10:29 AM PST -Satenik-Ba,2022-11-29T02:00:56Z,- Satenik-Ba commented on issue: [3707](https://github.com/hackforla/website/issues/3707#issuecomment-1329975447) at 2022-11-28 06:00 PM PST -Satenik-Ba,2022-11-29T02:04:50Z,- Satenik-Ba closed issue as completed: [3707](https://github.com/hackforla/website/issues/3707#event-7908271956) at 2022-11-28 06:04 PM PST -Satenik-Ba,2022-11-29T03:12:22Z,- Satenik-Ba pull request merged: [3752](https://github.com/hackforla/website/pull/3752#event-7908536320) at 2022-11-28 07:12 PM PST -Satenik-Ba,2023-01-11T17:46:28Z,- Satenik-Ba assigned to issue: [3773](https://github.com/hackforla/website/issues/3773) at 2023-01-11 09:46 AM PST -Satenik-Ba,2023-01-11T17:48:31Z,- Satenik-Ba commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1379263015) at 2023-01-11 09:48 AM PST -Satenik-Ba,2023-01-11T22:45:38Z,- Satenik-Ba opened pull request: [3810](https://github.com/hackforla/website/pull/3810) at 2023-01-11 02:45 PM PST -Satenik-Ba,2023-01-15T03:43:00Z,- Satenik-Ba commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1383047610) at 2023-01-14 07:43 PM PST -Satenik-Ba,2023-01-15T18:21:03Z,- Satenik-Ba opened pull request: [3819](https://github.com/hackforla/website/pull/3819) at 2023-01-15 10:21 AM PST -Satenik-Ba,2023-01-15T18:35:56Z,- Satenik-Ba pull request closed w/o merging: [3819](https://github.com/hackforla/website/pull/3819#event-8230163626) at 2023-01-15 10:35 AM PST -Satenik-Ba,2023-01-16T19:05:59Z,- Satenik-Ba commented on pull request: [3810](https://github.com/hackforla/website/pull/3810#issuecomment-1384450037) at 2023-01-16 11:05 AM PST -Satenik-Ba,2023-01-17T15:59:36Z,- Satenik-Ba pull request merged: [3810](https://github.com/hackforla/website/pull/3810#event-8247198768) at 2023-01-17 07:59 AM PST -Satenik-Ba,2023-01-20T05:54:24Z,- Satenik-Ba assigned to issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1375868506) at 2023-01-19 09:54 PM PST -Satenik-Ba,2023-01-20T05:55:32Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1397953096) at 2023-01-19 09:55 PM PST -Satenik-Ba,2023-01-23T21:12:23Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1400985766) at 2023-01-23 01:12 PM PST -Satenik-Ba,2023-01-23T21:22:49Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1400999243) at 2023-01-23 01:22 PM PST -Satenik-Ba,2023-01-30T17:29:38Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1409030230) at 2023-01-30 09:29 AM PST -Satenik-Ba,2023-02-13T01:02:01Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1427189678) at 2023-02-12 05:02 PM PST -Satenik-Ba,2023-02-15T01:59:59Z,- Satenik-Ba opened pull request: [3979](https://github.com/hackforla/website/pull/3979) at 2023-02-14 05:59 PM PST -Satenik-Ba,2023-02-15T02:09:44Z,- Satenik-Ba commented on issue: [3773](https://github.com/hackforla/website/issues/3773#issuecomment-1430652258) at 2023-02-14 06:09 PM PST -Satenik-Ba,2023-02-16T18:30:11Z,- Satenik-Ba commented on pull request: [3980](https://github.com/hackforla/website/pull/3980#issuecomment-1433531435) at 2023-02-16 10:30 AM PST -Satenik-Ba,2023-02-16T22:30:07Z,- Satenik-Ba submitted pull request review: [3980](https://github.com/hackforla/website/pull/3980#pullrequestreview-1302382115) at 2023-02-16 02:30 PM PST -Satenik-Ba,2023-02-21T17:46:23Z,- Satenik-Ba commented on pull request: [4018](https://github.com/hackforla/website/pull/4018#issuecomment-1438874814) at 2023-02-21 09:46 AM PST -Satenik-Ba,2023-02-24T01:55:13Z,- Satenik-Ba submitted pull request review: [4018](https://github.com/hackforla/website/pull/4018#pullrequestreview-1312387251) at 2023-02-23 05:55 PM PST -Satenik-Ba,2023-02-25T22:41:58Z,- Satenik-Ba pull request merged: [3979](https://github.com/hackforla/website/pull/3979#event-8608621769) at 2023-02-25 02:41 PM PST -Satenik-Ba,2023-02-27T22:53:06Z,- Satenik-Ba commented on issue: [3775](https://github.com/hackforla/website/issues/3775#issuecomment-1447235493) at 2023-02-27 02:53 PM PST -Satenik-Ba,2023-02-28T02:21:20Z,- Satenik-Ba opened pull request: [4053](https://github.com/hackforla/website/pull/4053) at 2023-02-27 06:21 PM PST -Satenik-Ba,2023-03-02T19:04:41Z,- Satenik-Ba commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1452411126) at 2023-03-02 11:04 AM PST -Satenik-Ba,2023-03-02T19:04:41Z,- Satenik-Ba pull request merged: [4053](https://github.com/hackforla/website/pull/4053#event-8652773697) at 2023-03-02 11:04 AM PST -Satenik-Ba,2023-03-02T19:04:46Z,- Satenik-Ba reopened pull request: [4053](https://github.com/hackforla/website/pull/4053#event-8652773697) at 2023-03-02 11:04 AM PST -Satenik-Ba,2023-03-02T19:05:17Z,- Satenik-Ba commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1452411881) at 2023-03-02 11:05 AM PST -Satenik-Ba,2023-03-02T20:25:31Z,- Satenik-Ba pull request merged: [4053](https://github.com/hackforla/website/pull/4053#event-8653404197) at 2023-03-02 12:25 PM PST -SAUMILDHANKAR,2021-08-11T02:19:43Z,- SAUMILDHANKAR assigned to issue: [1975](https://github.com/hackforla/website/issues/1975) at 2021-08-10 07:19 PM PDT -SAUMILDHANKAR,2021-08-15T05:45:52Z,- SAUMILDHANKAR opened pull request: [2119](https://github.com/hackforla/website/pull/2119) at 2021-08-14 10:45 PM PDT -SAUMILDHANKAR,2021-08-15T06:34:32Z,- SAUMILDHANKAR commented on issue: [1975](https://github.com/hackforla/website/issues/1975#issuecomment-899003758) at 2021-08-14 11:34 PM PDT -SAUMILDHANKAR,2021-08-19T00:13:37Z,- SAUMILDHANKAR commented on pull request: [2119](https://github.com/hackforla/website/pull/2119#issuecomment-901512502) at 2021-08-18 05:13 PM PDT -SAUMILDHANKAR,2021-08-19T03:09:47Z,- SAUMILDHANKAR pull request merged: [2119](https://github.com/hackforla/website/pull/2119#event-5178114489) at 2021-08-18 08:09 PM PDT -SAUMILDHANKAR,2021-08-19T19:18:38Z,- SAUMILDHANKAR commented on pull request: [2119](https://github.com/hackforla/website/pull/2119#issuecomment-902175985) at 2021-08-19 12:18 PM PDT -SAUMILDHANKAR,2021-08-20T02:30:02Z,- SAUMILDHANKAR commented on issue: [2093](https://github.com/hackforla/website/issues/2093#issuecomment-902383412) at 2021-08-19 07:30 PM PDT -SAUMILDHANKAR,2021-08-20T02:30:38Z,- SAUMILDHANKAR assigned to issue: [2092](https://github.com/hackforla/website/issues/2092) at 2021-08-19 07:30 PM PDT -SAUMILDHANKAR,2021-08-21T23:01:54Z,- SAUMILDHANKAR opened pull request: [2157](https://github.com/hackforla/website/pull/2157) at 2021-08-21 04:01 PM PDT -SAUMILDHANKAR,2021-08-21T23:15:00Z,- SAUMILDHANKAR commented on issue: [2092](https://github.com/hackforla/website/issues/2092#issuecomment-903187333) at 2021-08-21 04:15 PM PDT -SAUMILDHANKAR,2021-08-22T19:16:41Z,- SAUMILDHANKAR commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-903317220) at 2021-08-22 12:16 PM PDT -SAUMILDHANKAR,2021-08-23T22:27:02Z,- SAUMILDHANKAR submitted pull request review: [2136](https://github.com/hackforla/website/pull/2136#pullrequestreview-736618305) at 2021-08-23 03:27 PM PDT -SAUMILDHANKAR,2021-08-24T07:50:55Z,- SAUMILDHANKAR submitted pull request review: [2136](https://github.com/hackforla/website/pull/2136#pullrequestreview-736906171) at 2021-08-24 12:50 AM PDT -SAUMILDHANKAR,2021-08-26T23:11:46Z,- SAUMILDHANKAR commented on pull request: [2157](https://github.com/hackforla/website/pull/2157#issuecomment-906803299) at 2021-08-26 04:11 PM PDT -SAUMILDHANKAR,2021-08-28T01:39:13Z,- SAUMILDHANKAR pull request merged: [2157](https://github.com/hackforla/website/pull/2157#event-5221154746) at 2021-08-27 06:39 PM PDT -SAUMILDHANKAR,2021-08-29T20:17:08Z,- SAUMILDHANKAR commented on issue: [2027](https://github.com/hackforla/website/issues/2027#issuecomment-907865068) at 2021-08-29 01:17 PM PDT -SAUMILDHANKAR,2021-08-31T19:38:03Z,- SAUMILDHANKAR assigned to issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-886255180) at 2021-08-31 12:38 PM PDT -SAUMILDHANKAR,2021-09-03T06:31:31Z,- SAUMILDHANKAR opened pull request: [2217](https://github.com/hackforla/website/pull/2217) at 2021-09-02 11:31 PM PDT -SAUMILDHANKAR,2021-09-08T02:35:08Z,- SAUMILDHANKAR opened issue: [2232](https://github.com/hackforla/website/issues/2232) at 2021-09-07 07:35 PM PDT -SAUMILDHANKAR,2021-09-12T17:13:37Z,- SAUMILDHANKAR commented on issue: [1901](https://github.com/hackforla/website/issues/1901#issuecomment-917675083) at 2021-09-12 10:13 AM PDT -SAUMILDHANKAR,2021-09-20T06:53:39Z,- SAUMILDHANKAR submitted pull request review: [2284](https://github.com/hackforla/website/pull/2284#pullrequestreview-758295111) at 2021-09-19 11:53 PM PDT -SAUMILDHANKAR,2021-09-30T21:30:18Z,- SAUMILDHANKAR submitted pull request review: [2308](https://github.com/hackforla/website/pull/2308#pullrequestreview-768364367) at 2021-09-30 02:30 PM PDT -SAUMILDHANKAR,2021-09-30T22:07:49Z,- SAUMILDHANKAR submitted pull request review: [2305](https://github.com/hackforla/website/pull/2305#pullrequestreview-768387574) at 2021-09-30 03:07 PM PDT -SAUMILDHANKAR,2021-10-03T06:09:43Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-932870657) at 2021-10-02 11:09 PM PDT -SAUMILDHANKAR,2021-10-05T07:27:18Z,- SAUMILDHANKAR submitted pull request review: [2314](https://github.com/hackforla/website/pull/2314#pullrequestreview-771071229) at 2021-10-05 12:27 AM PDT -SAUMILDHANKAR,2021-10-06T00:26:20Z,- SAUMILDHANKAR submitted pull request review: [2313](https://github.com/hackforla/website/pull/2313#pullrequestreview-772094819) at 2021-10-05 05:26 PM PDT -SAUMILDHANKAR,2021-10-10T17:02:10Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-939516613) at 2021-10-10 10:02 AM PDT -SAUMILDHANKAR,2021-10-13T02:25:15Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941855908) at 2021-10-12 07:25 PM PDT -SAUMILDHANKAR,2021-10-13T02:34:20Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941859570) at 2021-10-12 07:34 PM PDT -SAUMILDHANKAR,2021-10-13T02:39:08Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941861710) at 2021-10-12 07:39 PM PDT -SAUMILDHANKAR,2021-10-13T02:42:54Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941863264) at 2021-10-12 07:42 PM PDT -SAUMILDHANKAR,2021-10-13T02:46:51Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941864702) at 2021-10-12 07:46 PM PDT -SAUMILDHANKAR,2021-10-13T02:48:32Z,- SAUMILDHANKAR commented on issue: [2363](https://github.com/hackforla/website/issues/2363#issuecomment-941865335) at 2021-10-12 07:48 PM PDT -SAUMILDHANKAR,2021-10-17T16:56:05Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-945158489) at 2021-10-17 09:56 AM PDT -SAUMILDHANKAR,2021-10-24T16:35:24Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-950354981) at 2021-10-24 09:35 AM PDT -SAUMILDHANKAR,2021-10-26T23:03:39Z,- SAUMILDHANKAR submitted pull request review: [2394](https://github.com/hackforla/website/pull/2394#pullrequestreview-790002246) at 2021-10-26 04:03 PM PDT -SAUMILDHANKAR,2021-11-02T22:17:22Z,- SAUMILDHANKAR opened issue: [2438](https://github.com/hackforla/website/issues/2438) at 2021-11-02 03:17 PM PDT -SAUMILDHANKAR,2021-11-05T00:31:14Z,- SAUMILDHANKAR opened issue: [2451](https://github.com/hackforla/website/issues/2451) at 2021-11-04 05:31 PM PDT -SAUMILDHANKAR,2021-11-07T17:44:26Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-962652341) at 2021-11-07 09:44 AM PST -SAUMILDHANKAR,2021-11-09T00:48:00Z,- SAUMILDHANKAR submitted pull request review: [2452](https://github.com/hackforla/website/pull/2452#pullrequestreview-800745004) at 2021-11-08 04:48 PM PST -SAUMILDHANKAR,2021-11-10T00:52:16Z,- SAUMILDHANKAR submitted pull request review: [2452](https://github.com/hackforla/website/pull/2452#pullrequestreview-802039124) at 2021-11-09 04:52 PM PST -SAUMILDHANKAR,2021-11-14T17:44:02Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-968334971) at 2021-11-14 09:44 AM PST -SAUMILDHANKAR,2021-11-17T03:47:03Z,- SAUMILDHANKAR opened issue: [2496](https://github.com/hackforla/website/issues/2496) at 2021-11-16 07:47 PM PST -SAUMILDHANKAR,2021-11-21T17:47:01Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-974862932) at 2021-11-21 09:47 AM PST -SAUMILDHANKAR,2021-11-21T19:07:33Z,- SAUMILDHANKAR commented on issue: [2407](https://github.com/hackforla/website/issues/2407#issuecomment-974875195) at 2021-11-21 11:07 AM PST -SAUMILDHANKAR,2021-11-28T09:58:24Z,- SAUMILDHANKAR opened pull request: [2516](https://github.com/hackforla/website/pull/2516) at 2021-11-28 01:58 AM PST -SAUMILDHANKAR,2021-11-28T10:14:03Z,- SAUMILDHANKAR pull request closed w/o merging: [2516](https://github.com/hackforla/website/pull/2516#event-5680957218) at 2021-11-28 02:14 AM PST -SAUMILDHANKAR,2021-11-28T10:28:25Z,- SAUMILDHANKAR commented on pull request: [2516](https://github.com/hackforla/website/pull/2516#issuecomment-981060023) at 2021-11-28 02:28 AM PST -SAUMILDHANKAR,2021-11-28T10:28:49Z,- SAUMILDHANKAR commented on issue: [1977](https://github.com/hackforla/website/issues/1977#issuecomment-981060068) at 2021-11-28 02:28 AM PST -SAUMILDHANKAR,2021-12-05T04:34:12Z,- SAUMILDHANKAR opened issue: [2544](https://github.com/hackforla/website/issues/2544) at 2021-12-04 08:34 PM PST -SAUMILDHANKAR,2021-12-08T03:37:06Z,- SAUMILDHANKAR opened issue: [2558](https://github.com/hackforla/website/issues/2558) at 2021-12-07 07:37 PM PST -SAUMILDHANKAR,2021-12-08T03:58:55Z,- SAUMILDHANKAR opened issue: [2559](https://github.com/hackforla/website/issues/2559) at 2021-12-07 07:58 PM PST -SAUMILDHANKAR,2021-12-08T04:02:30Z,- SAUMILDHANKAR opened issue: [2560](https://github.com/hackforla/website/issues/2560) at 2021-12-07 08:02 PM PST -SAUMILDHANKAR,2021-12-09T07:10:18Z,- SAUMILDHANKAR commented on issue: [2544](https://github.com/hackforla/website/issues/2544#issuecomment-989575961) at 2021-12-08 11:10 PM PST -SAUMILDHANKAR,2021-12-16T03:11:28Z,- SAUMILDHANKAR opened issue: [2592](https://github.com/hackforla/website/issues/2592) at 2021-12-15 07:11 PM PST -SAUMILDHANKAR,2021-12-17T00:59:35Z,- SAUMILDHANKAR commented on pull request: [2217](https://github.com/hackforla/website/pull/2217#issuecomment-996330262) at 2021-12-16 04:59 PM PST -SAUMILDHANKAR,2021-12-17T03:11:38Z,- SAUMILDHANKAR pull request merged: [2217](https://github.com/hackforla/website/pull/2217#event-5782183157) at 2021-12-16 07:11 PM PST -SAUMILDHANKAR,2021-12-17T08:05:58Z,- SAUMILDHANKAR opened issue: [2596](https://github.com/hackforla/website/issues/2596) at 2021-12-17 12:05 AM PST -SAUMILDHANKAR,2021-12-18T20:44:28Z,- SAUMILDHANKAR opened issue: [2600](https://github.com/hackforla/website/issues/2600) at 2021-12-18 12:44 PM PST -SAUMILDHANKAR,2021-12-18T23:34:14Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-997299775) at 2021-12-18 03:34 PM PST -SAUMILDHANKAR,2021-12-19T09:52:17Z,- SAUMILDHANKAR commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-997360066) at 2021-12-19 01:52 AM PST -SAUMILDHANKAR,2021-12-19T09:58:19Z,- SAUMILDHANKAR commented on issue: [2586](https://github.com/hackforla/website/issues/2586#issuecomment-997361230) at 2021-12-19 01:58 AM PST -SAUMILDHANKAR,2021-12-19T10:01:55Z,- SAUMILDHANKAR commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-997361990) at 2021-12-19 02:01 AM PST -SAUMILDHANKAR,2021-12-19T11:23:14Z,- SAUMILDHANKAR commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-997374795) at 2021-12-19 03:23 AM PST -SAUMILDHANKAR,2021-12-20T01:28:49Z,- SAUMILDHANKAR assigned to issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-997462986) at 2021-12-19 05:28 PM PST -SAUMILDHANKAR,2021-12-21T00:09:31Z,- SAUMILDHANKAR opened pull request: [2609](https://github.com/hackforla/website/pull/2609) at 2021-12-20 04:09 PM PST -SAUMILDHANKAR,2021-12-21T00:15:44Z,- SAUMILDHANKAR pull request merged: [2609](https://github.com/hackforla/website/pull/2609#event-5795861785) at 2021-12-20 04:15 PM PST -SAUMILDHANKAR,2021-12-21T00:55:09Z,- SAUMILDHANKAR commented on issue: [2483](https://github.com/hackforla/website/issues/2483#issuecomment-998380781) at 2021-12-20 04:55 PM PST -SAUMILDHANKAR,2021-12-21T01:00:47Z,- SAUMILDHANKAR commented on issue: [2267](https://github.com/hackforla/website/issues/2267#issuecomment-998382887) at 2021-12-20 05:00 PM PST -SAUMILDHANKAR,2021-12-21T01:03:40Z,- SAUMILDHANKAR commented on issue: [2382](https://github.com/hackforla/website/issues/2382#issuecomment-998384408) at 2021-12-20 05:03 PM PST -SAUMILDHANKAR,2021-12-21T01:06:19Z,- SAUMILDHANKAR commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-998385542) at 2021-12-20 05:06 PM PST -SAUMILDHANKAR,2021-12-21T01:13:14Z,- SAUMILDHANKAR commented on issue: [2362](https://github.com/hackforla/website/issues/2362#issuecomment-998388755) at 2021-12-20 05:13 PM PST -SAUMILDHANKAR,2021-12-21T08:47:24Z,- SAUMILDHANKAR commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-998583814) at 2021-12-21 12:47 AM PST -SAUMILDHANKAR,2021-12-21T08:57:45Z,- SAUMILDHANKAR closed issue by PR 2593: [2552](https://github.com/hackforla/website/issues/2552#event-5797501253) at 2021-12-21 12:57 AM PST -SAUMILDHANKAR,2021-12-21T10:26:09Z,- SAUMILDHANKAR commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-998659412) at 2021-12-21 02:26 AM PST -SAUMILDHANKAR,2021-12-21T10:29:27Z,- SAUMILDHANKAR closed issue by PR 2594: [2408](https://github.com/hackforla/website/issues/2408#event-5798032834) at 2021-12-21 02:29 AM PST -SAUMILDHANKAR,2021-12-24T08:53:19Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1000731301) at 2021-12-24 12:53 AM PST -SAUMILDHANKAR,2021-12-25T04:18:04Z,- SAUMILDHANKAR commented on issue: [2607](https://github.com/hackforla/website/issues/2607#issuecomment-1000970488) at 2021-12-24 08:18 PM PST -SAUMILDHANKAR,2021-12-25T10:13:27Z,- SAUMILDHANKAR opened issue: [2625](https://github.com/hackforla/website/issues/2625) at 2021-12-25 02:13 AM PST -SAUMILDHANKAR,2021-12-26T09:11:36Z,- SAUMILDHANKAR commented on issue: [2619](https://github.com/hackforla/website/issues/2619#issuecomment-1001135539) at 2021-12-26 01:11 AM PST -SAUMILDHANKAR,2021-12-26T09:33:03Z,- SAUMILDHANKAR assigned to issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-974852333) at 2021-12-26 01:33 AM PST -SAUMILDHANKAR,2021-12-26T09:37:21Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1001138578) at 2021-12-26 01:37 AM PST -SAUMILDHANKAR,2021-12-26T09:53:14Z,- SAUMILDHANKAR opened pull request: [2630](https://github.com/hackforla/website/pull/2630) at 2021-12-26 01:53 AM PST -SAUMILDHANKAR,2021-12-26T09:58:45Z,- SAUMILDHANKAR pull request merged: [2630](https://github.com/hackforla/website/pull/2630#event-5815425312) at 2021-12-26 01:58 AM PST -SAUMILDHANKAR,2021-12-26T10:02:02Z,- SAUMILDHANKAR commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-1001142832) at 2021-12-26 02:02 AM PST -SAUMILDHANKAR,2021-12-26T10:04:42Z,- SAUMILDHANKAR reopened issue: [2408](https://github.com/hackforla/website/issues/2408#issuecomment-1001143486) at 2021-12-26 02:04 AM PST -SAUMILDHANKAR,2021-12-27T06:25:51Z,- SAUMILDHANKAR submitted pull request review: [2620](https://github.com/hackforla/website/pull/2620#pullrequestreview-840186193) at 2021-12-26 10:25 PM PST -SAUMILDHANKAR,2021-12-27T06:27:35Z,- SAUMILDHANKAR closed issue by PR 2620: [2544](https://github.com/hackforla/website/issues/2544#event-5816672764) at 2021-12-26 10:27 PM PST -SAUMILDHANKAR,2021-12-27T08:03:28Z,- SAUMILDHANKAR submitted pull request review: [2621](https://github.com/hackforla/website/pull/2621#pullrequestreview-840221086) at 2021-12-27 12:03 AM PST -SAUMILDHANKAR,2021-12-27T08:06:41Z,- SAUMILDHANKAR closed issue by PR 2621: [2267](https://github.com/hackforla/website/issues/2267#event-5816927091) at 2021-12-27 12:06 AM PST -SAUMILDHANKAR,2021-12-27T09:23:42Z,- SAUMILDHANKAR opened issue: [2633](https://github.com/hackforla/website/issues/2633) at 2021-12-27 01:23 AM PST -SAUMILDHANKAR,2021-12-27T09:52:58Z,- SAUMILDHANKAR opened issue: [2634](https://github.com/hackforla/website/issues/2634) at 2021-12-27 01:52 AM PST -SAUMILDHANKAR,2021-12-29T00:04:53Z,- SAUMILDHANKAR commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1002329204) at 2021-12-28 04:04 PM PST -SAUMILDHANKAR,2021-12-29T00:06:45Z,- SAUMILDHANKAR submitted pull request review: [2624](https://github.com/hackforla/website/pull/2624#pullrequestreview-841138182) at 2021-12-28 04:06 PM PST -SAUMILDHANKAR,2021-12-29T00:24:15Z,- SAUMILDHANKAR commented on issue: [2629](https://github.com/hackforla/website/issues/2629#issuecomment-1002334995) at 2021-12-28 04:24 PM PST -SAUMILDHANKAR,2021-12-29T04:26:16Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1002391888) at 2021-12-28 08:26 PM PST -SAUMILDHANKAR,2021-12-29T04:29:07Z,- SAUMILDHANKAR submitted pull request review: [2635](https://github.com/hackforla/website/pull/2635#pullrequestreview-841179976) at 2021-12-28 08:29 PM PST -SAUMILDHANKAR,2021-12-30T00:25:35Z,- SAUMILDHANKAR commented on pull request: [2603](https://github.com/hackforla/website/pull/2603#issuecomment-1002823703) at 2021-12-29 04:25 PM PST -SAUMILDHANKAR,2021-12-30T00:40:29Z,- SAUMILDHANKAR submitted pull request review: [2624](https://github.com/hackforla/website/pull/2624#pullrequestreview-841666625) at 2021-12-29 04:40 PM PST -SAUMILDHANKAR,2021-12-30T00:46:24Z,- SAUMILDHANKAR commented on pull request: [2624](https://github.com/hackforla/website/pull/2624#issuecomment-1002827442) at 2021-12-29 04:46 PM PST -SAUMILDHANKAR,2021-12-30T00:49:10Z,- SAUMILDHANKAR closed issue by PR 2624: [2483](https://github.com/hackforla/website/issues/2483#event-5826413985) at 2021-12-29 04:49 PM PST -SAUMILDHANKAR,2021-12-30T01:33:43Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1002836242) at 2021-12-29 05:33 PM PST -SAUMILDHANKAR,2021-12-30T02:50:48Z,- SAUMILDHANKAR commented on issue: [2382](https://github.com/hackforla/website/issues/2382#issuecomment-1002849832) at 2021-12-29 06:50 PM PST -SAUMILDHANKAR,2021-12-30T02:50:49Z,- SAUMILDHANKAR closed issue as completed: [2382](https://github.com/hackforla/website/issues/2382#event-5826560711) at 2021-12-29 06:50 PM PST -SAUMILDHANKAR,2021-12-30T08:31:44Z,- SAUMILDHANKAR closed issue by PR 2603: [2474](https://github.com/hackforla/website/issues/2474#event-5827135211) at 2021-12-30 12:31 AM PST -SAUMILDHANKAR,2021-12-30T09:21:34Z,- SAUMILDHANKAR commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1002941219) at 2021-12-30 01:21 AM PST -SAUMILDHANKAR,2021-12-30T10:29:37Z,- SAUMILDHANKAR commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1002966660) at 2021-12-30 02:29 AM PST -SAUMILDHANKAR,2021-12-31T08:37:47Z,- SAUMILDHANKAR commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1003309756) at 2021-12-31 12:37 AM PST -SAUMILDHANKAR,2022-01-01T09:40:34Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1003533184) at 2022-01-01 01:40 AM PST -SAUMILDHANKAR,2022-01-01T09:42:32Z,- SAUMILDHANKAR commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1003533345) at 2022-01-01 01:42 AM PST -SAUMILDHANKAR,2022-01-01T10:28:36Z,- SAUMILDHANKAR commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1003538406) at 2022-01-01 02:28 AM PST -SAUMILDHANKAR,2022-01-01T10:38:33Z,- SAUMILDHANKAR commented on pull request: [2611](https://github.com/hackforla/website/pull/2611#issuecomment-1003539210) at 2022-01-01 02:38 AM PST -SAUMILDHANKAR,2022-01-01T20:57:51Z,- SAUMILDHANKAR commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1003616614) at 2022-01-01 12:57 PM PST -SAUMILDHANKAR,2022-01-01T23:52:52Z,- SAUMILDHANKAR commented on issue: [2604](https://github.com/hackforla/website/issues/2604#issuecomment-1003637667) at 2022-01-01 03:52 PM PST -SAUMILDHANKAR,2022-01-02T10:23:14Z,- SAUMILDHANKAR opened issue: [2649](https://github.com/hackforla/website/issues/2649) at 2022-01-02 02:23 AM PST -SAUMILDHANKAR,2022-01-02T10:28:18Z,- SAUMILDHANKAR opened issue: [2650](https://github.com/hackforla/website/issues/2650) at 2022-01-02 02:28 AM PST -SAUMILDHANKAR,2022-01-02T10:30:02Z,- SAUMILDHANKAR opened issue: [2651](https://github.com/hackforla/website/issues/2651) at 2022-01-02 02:30 AM PST -SAUMILDHANKAR,2022-01-02T10:32:47Z,- SAUMILDHANKAR opened issue: [2652](https://github.com/hackforla/website/issues/2652) at 2022-01-02 02:32 AM PST -SAUMILDHANKAR,2022-01-02T10:35:07Z,- SAUMILDHANKAR opened issue: [2653](https://github.com/hackforla/website/issues/2653) at 2022-01-02 02:35 AM PST -SAUMILDHANKAR,2022-01-04T10:10:44Z,- SAUMILDHANKAR opened issue: [2656](https://github.com/hackforla/website/issues/2656) at 2022-01-04 02:10 AM PST -SAUMILDHANKAR,2022-01-04T10:59:15Z,- SAUMILDHANKAR commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1004711640) at 2022-01-04 02:59 AM PST -SAUMILDHANKAR,2022-01-04T11:37:25Z,- SAUMILDHANKAR commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1004735854) at 2022-01-04 03:37 AM PST -SAUMILDHANKAR,2022-01-04T12:14:04Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1004757576) at 2022-01-04 04:14 AM PST -SAUMILDHANKAR,2022-01-05T01:23:53Z,- SAUMILDHANKAR submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-844142181) at 2022-01-04 05:23 PM PST -SAUMILDHANKAR,2022-01-05T22:43:33Z,- SAUMILDHANKAR commented on issue: [2641](https://github.com/hackforla/website/issues/2641#issuecomment-1006135997) at 2022-01-05 02:43 PM PST -SAUMILDHANKAR,2022-01-05T23:28:11Z,- SAUMILDHANKAR commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1006157916) at 2022-01-05 03:28 PM PST -SAUMILDHANKAR,2022-01-06T07:47:30Z,- SAUMILDHANKAR commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1006350764) at 2022-01-05 11:47 PM PST -SAUMILDHANKAR,2022-01-06T10:23:49Z,- SAUMILDHANKAR submitted pull request review: [2646](https://github.com/hackforla/website/pull/2646#pullrequestreview-845484201) at 2022-01-06 02:23 AM PST -SAUMILDHANKAR,2022-01-06T10:59:30Z,- SAUMILDHANKAR commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1006477747) at 2022-01-06 02:59 AM PST -SAUMILDHANKAR,2022-01-07T00:06:50Z,- SAUMILDHANKAR closed issue by PR 2648: [2489](https://github.com/hackforla/website/issues/2489#event-5855193496) at 2022-01-06 04:06 PM PST -SAUMILDHANKAR,2022-01-07T00:34:16Z,- SAUMILDHANKAR opened issue: [2664](https://github.com/hackforla/website/issues/2664) at 2022-01-06 04:34 PM PST -SAUMILDHANKAR,2022-01-07T02:49:14Z,- SAUMILDHANKAR commented on issue: [2397](https://github.com/hackforla/website/issues/2397#issuecomment-1007098161) at 2022-01-06 06:49 PM PST -SAUMILDHANKAR,2022-01-07T11:40:56Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1007342836) at 2022-01-07 03:40 AM PST -SAUMILDHANKAR,2022-01-07T12:17:46Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1007363169) at 2022-01-07 04:17 AM PST -SAUMILDHANKAR,2022-01-07T12:32:06Z,- SAUMILDHANKAR opened issue: [2667](https://github.com/hackforla/website/issues/2667) at 2022-01-07 04:32 AM PST -SAUMILDHANKAR,2022-01-07T12:34:19Z,- SAUMILDHANKAR opened issue: [2668](https://github.com/hackforla/website/issues/2668) at 2022-01-07 04:34 AM PST -SAUMILDHANKAR,2022-01-07T12:36:25Z,- SAUMILDHANKAR opened issue: [2669](https://github.com/hackforla/website/issues/2669) at 2022-01-07 04:36 AM PST -SAUMILDHANKAR,2022-01-07T12:43:18Z,- SAUMILDHANKAR closed issue by PR 2647: [2456](https://github.com/hackforla/website/issues/2456#event-5857669539) at 2022-01-07 04:43 AM PST -SAUMILDHANKAR,2022-01-09T03:59:54Z,- SAUMILDHANKAR opened issue: [2676](https://github.com/hackforla/website/issues/2676) at 2022-01-08 07:59 PM PST -SAUMILDHANKAR,2022-01-09T04:09:25Z,- SAUMILDHANKAR assigned to issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1008224954) at 2022-01-08 08:09 PM PST -SAUMILDHANKAR,2022-01-09T04:36:40Z,- SAUMILDHANKAR opened issue: [2677](https://github.com/hackforla/website/issues/2677) at 2022-01-08 08:36 PM PST -SAUMILDHANKAR,2022-01-10T09:46:44Z,- SAUMILDHANKAR commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1008698533) at 2022-01-10 01:46 AM PST -SAUMILDHANKAR,2022-01-10T10:46:25Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1008747498) at 2022-01-10 02:46 AM PST -SAUMILDHANKAR,2022-01-11T12:06:52Z,- SAUMILDHANKAR submitted pull request review: [2645](https://github.com/hackforla/website/pull/2645#pullrequestreview-849078084) at 2022-01-11 04:06 AM PST -SAUMILDHANKAR,2022-01-11T12:13:25Z,- SAUMILDHANKAR commented on pull request: [2645](https://github.com/hackforla/website/pull/2645#issuecomment-1009906580) at 2022-01-11 04:13 AM PST -SAUMILDHANKAR,2022-01-13T02:53:46Z,- SAUMILDHANKAR commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1011719464) at 2022-01-12 06:53 PM PST -SAUMILDHANKAR,2022-01-13T03:18:17Z,- SAUMILDHANKAR closed issue by PR 2678: [2462](https://github.com/hackforla/website/issues/2462#event-5884592526) at 2022-01-12 07:18 PM PST -SAUMILDHANKAR,2022-01-13T09:50:37Z,- SAUMILDHANKAR submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-851481036) at 2022-01-13 01:50 AM PST -SAUMILDHANKAR,2022-01-18T02:44:55Z,- SAUMILDHANKAR opened issue: [2695](https://github.com/hackforla/website/issues/2695) at 2022-01-17 06:44 PM PST -SAUMILDHANKAR,2022-01-18T02:53:29Z,- SAUMILDHANKAR commented on issue: [2628](https://github.com/hackforla/website/issues/2628#issuecomment-1015025481) at 2022-01-17 06:53 PM PST -SAUMILDHANKAR,2022-01-18T02:53:30Z,- SAUMILDHANKAR closed issue as completed: [2628](https://github.com/hackforla/website/issues/2628#event-5907655575) at 2022-01-17 06:53 PM PST -SAUMILDHANKAR,2022-01-20T02:16:44Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1017052541) at 2022-01-19 06:16 PM PST -SAUMILDHANKAR,2022-01-20T02:31:53Z,- SAUMILDHANKAR commented on issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1017059806) at 2022-01-19 06:31 PM PST -SAUMILDHANKAR,2022-01-20T02:31:53Z,- SAUMILDHANKAR reopened issue: [2636](https://github.com/hackforla/website/issues/2636#issuecomment-1017059806) at 2022-01-19 06:31 PM PST -SAUMILDHANKAR,2022-01-20T02:40:43Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1017063673) at 2022-01-19 06:40 PM PST -SAUMILDHANKAR,2022-01-20T02:40:43Z,- SAUMILDHANKAR reopened issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1017063673) at 2022-01-19 06:40 PM PST -SAUMILDHANKAR,2022-01-20T03:01:48Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1017072467) at 2022-01-19 07:01 PM PST -SAUMILDHANKAR,2022-01-20T03:01:48Z,- SAUMILDHANKAR reopened issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1017072467) at 2022-01-19 07:01 PM PST -SAUMILDHANKAR,2022-01-20T03:11:30Z,- SAUMILDHANKAR commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1017076873) at 2022-01-19 07:11 PM PST -SAUMILDHANKAR,2022-01-20T03:11:30Z,- SAUMILDHANKAR reopened issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1017076873) at 2022-01-19 07:11 PM PST -SAUMILDHANKAR,2022-01-20T03:20:14Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1017080702) at 2022-01-19 07:20 PM PST -SAUMILDHANKAR,2022-01-20T03:20:14Z,- SAUMILDHANKAR reopened issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1017080702) at 2022-01-19 07:20 PM PST -SAUMILDHANKAR,2022-01-20T06:16:31Z,- SAUMILDHANKAR commented on issue: [2409](https://github.com/hackforla/website/issues/2409#issuecomment-1017154221) at 2022-01-19 10:16 PM PST -SAUMILDHANKAR,2022-01-20T06:16:32Z,- SAUMILDHANKAR closed issue as completed: [2409](https://github.com/hackforla/website/issues/2409#event-5922429145) at 2022-01-19 10:16 PM PST -SAUMILDHANKAR,2022-01-20T07:26:15Z,- SAUMILDHANKAR commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1017189433) at 2022-01-19 11:26 PM PST -SAUMILDHANKAR,2022-01-20T07:36:49Z,- SAUMILDHANKAR submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-857861807) at 2022-01-19 11:36 PM PST -SAUMILDHANKAR,2022-01-20T23:52:57Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1018028718) at 2022-01-20 03:52 PM PST -SAUMILDHANKAR,2022-01-20T23:54:32Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1018029432) at 2022-01-20 03:54 PM PST -SAUMILDHANKAR,2022-01-20T23:55:24Z,- SAUMILDHANKAR commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1018029808) at 2022-01-20 03:55 PM PST -SAUMILDHANKAR,2022-01-23T00:06:01Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1019380750) at 2022-01-22 04:06 PM PST -SAUMILDHANKAR,2022-01-23T00:06:01Z,- SAUMILDHANKAR reopened issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1019380750) at 2022-01-22 04:06 PM PST -SAUMILDHANKAR,2022-01-23T07:04:02Z,- SAUMILDHANKAR submitted pull request review: [2682](https://github.com/hackforla/website/pull/2682#pullrequestreview-860283887) at 2022-01-22 11:04 PM PST -SAUMILDHANKAR,2022-01-23T07:06:10Z,- SAUMILDHANKAR commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1019428328) at 2022-01-22 11:06 PM PST -SAUMILDHANKAR,2022-01-23T07:06:49Z,- SAUMILDHANKAR closed issue by PR 2682: [2629](https://github.com/hackforla/website/issues/2629#event-5937857065) at 2022-01-22 11:06 PM PST -SAUMILDHANKAR,2022-01-26T01:35:05Z,- SAUMILDHANKAR commented on issue: [1564](https://github.com/hackforla/website/issues/1564#issuecomment-1021772141) at 2022-01-25 05:35 PM PST -SAUMILDHANKAR,2022-01-26T01:37:26Z,- SAUMILDHANKAR commented on issue: [1566](https://github.com/hackforla/website/issues/1566#issuecomment-1021773121) at 2022-01-25 05:37 PM PST -SAUMILDHANKAR,2022-01-26T01:39:23Z,- SAUMILDHANKAR commented on issue: [1563](https://github.com/hackforla/website/issues/1563#issuecomment-1021773902) at 2022-01-25 05:39 PM PST -SAUMILDHANKAR,2022-01-26T01:40:16Z,- SAUMILDHANKAR commented on issue: [1562](https://github.com/hackforla/website/issues/1562#issuecomment-1021774220) at 2022-01-25 05:40 PM PST -SAUMILDHANKAR,2022-01-26T03:27:38Z,- SAUMILDHANKAR commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1021828262) at 2022-01-25 07:27 PM PST -SAUMILDHANKAR,2022-01-26T21:16:27Z,- SAUMILDHANKAR commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1022609940) at 2022-01-26 01:16 PM PST -SAUMILDHANKAR,2022-01-26T21:18:34Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1022611526) at 2022-01-26 01:18 PM PST -SAUMILDHANKAR,2022-01-26T21:19:20Z,- SAUMILDHANKAR commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1022612109) at 2022-01-26 01:19 PM PST -SAUMILDHANKAR,2022-01-27T03:52:53Z,- SAUMILDHANKAR commented on issue: [2610](https://github.com/hackforla/website/issues/2610#issuecomment-1022822454) at 2022-01-26 07:52 PM PST -SAUMILDHANKAR,2022-01-27T08:29:48Z,- SAUMILDHANKAR commented on issue: [2717](https://github.com/hackforla/website/issues/2717#issuecomment-1022964529) at 2022-01-27 12:29 AM PST -SAUMILDHANKAR,2022-01-27T08:29:48Z,- SAUMILDHANKAR reopened issue: [2717](https://github.com/hackforla/website/issues/2717#issuecomment-1022964529) at 2022-01-27 12:29 AM PST -SAUMILDHANKAR,2022-01-28T02:33:48Z,- SAUMILDHANKAR commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1023829299) at 2022-01-27 06:33 PM PST -SAUMILDHANKAR,2022-01-28T22:53:48Z,- SAUMILDHANKAR commented on pull request: [2713](https://github.com/hackforla/website/pull/2713#issuecomment-1024724315) at 2022-01-28 02:53 PM PST -SAUMILDHANKAR,2022-01-28T22:57:20Z,- SAUMILDHANKAR commented on issue: [2663](https://github.com/hackforla/website/issues/2663#issuecomment-1024725823) at 2022-01-28 02:57 PM PST -SAUMILDHANKAR,2022-01-28T23:40:21Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1024744927) at 2022-01-28 03:40 PM PST -SAUMILDHANKAR,2022-01-29T02:32:17Z,- SAUMILDHANKAR commented on issue: [2716](https://github.com/hackforla/website/issues/2716#issuecomment-1024812746) at 2022-01-28 06:32 PM PST -SAUMILDHANKAR,2022-01-29T02:50:13Z,- SAUMILDHANKAR commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1024815778) at 2022-01-28 06:50 PM PST -SAUMILDHANKAR,2022-01-29T02:59:52Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1024817315) at 2022-01-28 06:59 PM PST -SAUMILDHANKAR,2022-01-29T03:04:32Z,- SAUMILDHANKAR commented on issue: [2702](https://github.com/hackforla/website/issues/2702#issuecomment-1024818223) at 2022-01-28 07:04 PM PST -SAUMILDHANKAR,2022-01-29T03:09:39Z,- SAUMILDHANKAR commented on issue: [2676](https://github.com/hackforla/website/issues/2676#issuecomment-1024819176) at 2022-01-28 07:09 PM PST -SAUMILDHANKAR,2022-01-29T08:46:33Z,- SAUMILDHANKAR submitted pull request review: [2713](https://github.com/hackforla/website/pull/2713#pullrequestreview-866905497) at 2022-01-29 12:46 AM PST -SAUMILDHANKAR,2022-01-29T22:12:23Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867014015) at 2022-01-29 02:12 PM PST -SAUMILDHANKAR,2022-01-29T22:14:19Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867014122) at 2022-01-29 02:14 PM PST -SAUMILDHANKAR,2022-01-29T22:16:11Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867014233) at 2022-01-29 02:16 PM PST -SAUMILDHANKAR,2022-01-29T22:43:02Z,- SAUMILDHANKAR commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025000484) at 2022-01-29 02:43 PM PST -SAUMILDHANKAR,2022-01-30T16:21:04Z,- SAUMILDHANKAR submitted pull request review: [2725](https://github.com/hackforla/website/pull/2725#pullrequestreview-867141478) at 2022-01-30 08:21 AM PST -SAUMILDHANKAR,2022-01-30T20:55:46Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867203704) at 2022-01-30 12:55 PM PST -SAUMILDHANKAR,2022-01-31T03:45:40Z,- SAUMILDHANKAR commented on pull request: [2719](https://github.com/hackforla/website/pull/2719#issuecomment-1025350132) at 2022-01-30 07:45 PM PST -SAUMILDHANKAR,2022-01-31T03:50:20Z,- SAUMILDHANKAR submitted pull request review: [2719](https://github.com/hackforla/website/pull/2719#pullrequestreview-867359531) at 2022-01-30 07:50 PM PST -SAUMILDHANKAR,2022-01-31T03:50:48Z,- SAUMILDHANKAR closed issue by PR 2719: [2287](https://github.com/hackforla/website/issues/2287#event-5977917804) at 2022-01-30 07:50 PM PST -SAUMILDHANKAR,2022-01-31T06:51:22Z,- SAUMILDHANKAR submitted pull request review: [2725](https://github.com/hackforla/website/pull/2725#pullrequestreview-867440260) at 2022-01-30 10:51 PM PST -SAUMILDHANKAR,2022-01-31T06:52:53Z,- SAUMILDHANKAR closed issue by PR 2725: [2553](https://github.com/hackforla/website/issues/2553#event-5978462578) at 2022-01-30 10:52 PM PST -SAUMILDHANKAR,2022-01-31T07:24:25Z,- SAUMILDHANKAR commented on issue: [2610](https://github.com/hackforla/website/issues/2610#issuecomment-1025448976) at 2022-01-30 11:24 PM PST -SAUMILDHANKAR,2022-01-31T07:24:25Z,- SAUMILDHANKAR closed issue as completed: [2610](https://github.com/hackforla/website/issues/2610#event-5978581349) at 2022-01-30 11:24 PM PST -SAUMILDHANKAR,2022-01-31T07:31:12Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1025452628) at 2022-01-30 11:31 PM PST -SAUMILDHANKAR,2022-02-01T09:09:40Z,- SAUMILDHANKAR submitted pull request review: [2730](https://github.com/hackforla/website/pull/2730#pullrequestreview-868841276) at 2022-02-01 01:09 AM PST -SAUMILDHANKAR,2022-02-01T09:13:03Z,- SAUMILDHANKAR closed issue by PR 2730: [2427](https://github.com/hackforla/website/issues/2427#event-5986634224) at 2022-02-01 01:13 AM PST -SAUMILDHANKAR,2022-02-01T09:57:05Z,- SAUMILDHANKAR submitted pull request review: [2729](https://github.com/hackforla/website/pull/2729#pullrequestreview-868895329) at 2022-02-01 01:57 AM PST -SAUMILDHANKAR,2022-02-01T10:02:50Z,- SAUMILDHANKAR closed issue by PR 2729: [2657](https://github.com/hackforla/website/issues/2657#event-5986943014) at 2022-02-01 02:02 AM PST -SAUMILDHANKAR,2022-02-03T03:12:29Z,- SAUMILDHANKAR submitted pull request review: [2724](https://github.com/hackforla/website/pull/2724#pullrequestreview-871326134) at 2022-02-02 07:12 PM PST -SAUMILDHANKAR,2022-02-03T07:41:23Z,- SAUMILDHANKAR submitted pull request review: [2724](https://github.com/hackforla/website/pull/2724#pullrequestreview-871461865) at 2022-02-02 11:41 PM PST -SAUMILDHANKAR,2022-02-03T07:51:09Z,- SAUMILDHANKAR commented on pull request: [2724](https://github.com/hackforla/website/pull/2724#issuecomment-1028694441) at 2022-02-02 11:51 PM PST -SAUMILDHANKAR,2022-02-03T11:01:09Z,- SAUMILDHANKAR commented on pull request: [2735](https://github.com/hackforla/website/pull/2735#issuecomment-1028867665) at 2022-02-03 03:01 AM PST -SAUMILDHANKAR,2022-02-04T01:21:10Z,- SAUMILDHANKAR submitted pull request review: [2735](https://github.com/hackforla/website/pull/2735#pullrequestreview-872584528) at 2022-02-03 05:21 PM PST -SAUMILDHANKAR,2022-02-04T01:21:43Z,- SAUMILDHANKAR closed issue by PR 2735: [2731](https://github.com/hackforla/website/issues/2731#event-6006637774) at 2022-02-03 05:21 PM PST -SAUMILDHANKAR,2022-02-04T01:37:09Z,- SAUMILDHANKAR commented on issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-1029560541) at 2022-02-03 05:37 PM PST -SAUMILDHANKAR,2022-02-04T01:57:05Z,- SAUMILDHANKAR commented on issue: [2437](https://github.com/hackforla/website/issues/2437#issuecomment-1029568778) at 2022-02-03 05:57 PM PST -SAUMILDHANKAR,2022-02-05T02:29:48Z,- SAUMILDHANKAR commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1030503495) at 2022-02-04 06:29 PM PST -SAUMILDHANKAR,2022-02-05T06:47:03Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1030556015) at 2022-02-04 10:47 PM PST -SAUMILDHANKAR,2022-02-05T07:23:29Z,- SAUMILDHANKAR commented on issue: [2702](https://github.com/hackforla/website/issues/2702#issuecomment-1030568603) at 2022-02-04 11:23 PM PST -SAUMILDHANKAR,2022-02-05T07:23:29Z,- SAUMILDHANKAR closed issue as completed: [2702](https://github.com/hackforla/website/issues/2702#event-6013169022) at 2022-02-04 11:23 PM PST -SAUMILDHANKAR,2022-02-05T07:27:04Z,- SAUMILDHANKAR commented on issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1030568981) at 2022-02-04 11:27 PM PST -SAUMILDHANKAR,2022-02-05T07:27:05Z,- SAUMILDHANKAR closed issue as completed: [2637](https://github.com/hackforla/website/issues/2637#event-6013179559) at 2022-02-04 11:27 PM PST -SAUMILDHANKAR,2022-02-05T07:30:05Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1030569260) at 2022-02-04 11:30 PM PST -SAUMILDHANKAR,2022-02-05T07:33:44Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1030569727) at 2022-02-04 11:33 PM PST -SAUMILDHANKAR,2022-02-05T07:36:12Z,- SAUMILDHANKAR commented on issue: [2558](https://github.com/hackforla/website/issues/2558#issuecomment-1030569984) at 2022-02-04 11:36 PM PST -SAUMILDHANKAR,2022-02-05T07:38:31Z,- SAUMILDHANKAR commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1030570265) at 2022-02-04 11:38 PM PST -SAUMILDHANKAR,2022-02-05T07:38:31Z,- SAUMILDHANKAR closed issue as completed: [2560](https://github.com/hackforla/website/issues/2560#event-6013212644) at 2022-02-04 11:38 PM PST -SAUMILDHANKAR,2022-02-05T07:39:53Z,- SAUMILDHANKAR commented on issue: [2596](https://github.com/hackforla/website/issues/2596#issuecomment-1030570424) at 2022-02-04 11:39 PM PST -SAUMILDHANKAR,2022-02-05T07:39:53Z,- SAUMILDHANKAR closed issue as completed: [2596](https://github.com/hackforla/website/issues/2596#event-6013216717) at 2022-02-04 11:39 PM PST -SAUMILDHANKAR,2022-02-06T08:11:28Z,- SAUMILDHANKAR submitted pull request review: [2736](https://github.com/hackforla/website/pull/2736#pullrequestreview-874007228) at 2022-02-06 12:11 AM PST -SAUMILDHANKAR,2022-02-06T09:06:17Z,- SAUMILDHANKAR commented on pull request: [2738](https://github.com/hackforla/website/pull/2738#issuecomment-1030781516) at 2022-02-06 01:06 AM PST -SAUMILDHANKAR,2022-02-06T09:08:50Z,- SAUMILDHANKAR submitted pull request review: [2738](https://github.com/hackforla/website/pull/2738#pullrequestreview-874012415) at 2022-02-06 01:08 AM PST -SAUMILDHANKAR,2022-02-06T09:10:03Z,- SAUMILDHANKAR closed issue by PR 2672: [2397](https://github.com/hackforla/website/issues/2397#event-6014781725) at 2022-02-06 01:10 AM PST -SAUMILDHANKAR,2022-02-06T10:43:45Z,- SAUMILDHANKAR commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1030805730) at 2022-02-06 02:43 AM PST -SAUMILDHANKAR,2022-02-06T18:16:41Z,- SAUMILDHANKAR commented on issue: [2409](https://github.com/hackforla/website/issues/2409#issuecomment-1030885811) at 2022-02-06 10:16 AM PST -SAUMILDHANKAR,2022-02-06T20:53:18Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1030912162) at 2022-02-06 12:53 PM PST -SAUMILDHANKAR,2022-02-06T23:31:52Z,- SAUMILDHANKAR assigned to issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1030939882) at 2022-02-06 03:31 PM PST -SAUMILDHANKAR,2022-02-07T05:22:17Z,- SAUMILDHANKAR commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1031086924) at 2022-02-06 09:22 PM PST -SAUMILDHANKAR,2022-02-07T05:22:17Z,- SAUMILDHANKAR reopened issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1031086924) at 2022-02-06 09:22 PM PST -SAUMILDHANKAR,2022-02-07T05:26:53Z,- SAUMILDHANKAR commented on pull request: [2741](https://github.com/hackforla/website/pull/2741#issuecomment-1031088966) at 2022-02-06 09:26 PM PST -SAUMILDHANKAR,2022-02-07T05:40:06Z,- SAUMILDHANKAR submitted pull request review: [2741](https://github.com/hackforla/website/pull/2741#pullrequestreview-874204817) at 2022-02-06 09:40 PM PST -SAUMILDHANKAR,2022-02-07T05:40:46Z,- SAUMILDHANKAR closed issue by PR 2741: [2673](https://github.com/hackforla/website/issues/2673#event-6016628531) at 2022-02-06 09:40 PM PST -SAUMILDHANKAR,2022-02-07T05:55:29Z,- SAUMILDHANKAR commented on issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-1031099872) at 2022-02-06 09:55 PM PST -SAUMILDHANKAR,2022-02-07T05:55:29Z,- SAUMILDHANKAR reopened issue: [2591](https://github.com/hackforla/website/issues/2591#issuecomment-1031099872) at 2022-02-06 09:55 PM PST -SAUMILDHANKAR,2022-02-07T06:18:04Z,- SAUMILDHANKAR commented on pull request: [2742](https://github.com/hackforla/website/pull/2742#issuecomment-1031112637) at 2022-02-06 10:18 PM PST -SAUMILDHANKAR,2022-02-07T07:18:26Z,- SAUMILDHANKAR submitted pull request review: [2742](https://github.com/hackforla/website/pull/2742#pullrequestreview-874264370) at 2022-02-06 11:18 PM PST -SAUMILDHANKAR,2022-02-07T07:18:41Z,- SAUMILDHANKAR closed issue by PR 2742: [2591](https://github.com/hackforla/website/issues/2591#event-6016992433) at 2022-02-06 11:18 PM PST -SAUMILDHANKAR,2022-02-07T07:21:29Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1031148862) at 2022-02-06 11:21 PM PST -SAUMILDHANKAR,2022-02-07T07:21:30Z,- SAUMILDHANKAR reopened issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1031148862) at 2022-02-06 11:21 PM PST -SAUMILDHANKAR,2022-02-07T07:30:52Z,- SAUMILDHANKAR commented on issue: [2409](https://github.com/hackforla/website/issues/2409#issuecomment-1031154746) at 2022-02-06 11:30 PM PST -SAUMILDHANKAR,2022-02-07T22:20:01Z,- SAUMILDHANKAR assigned to issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1031993012) at 2022-02-07 02:20 PM PST -SAUMILDHANKAR,2022-02-08T04:09:18Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1032194052) at 2022-02-07 08:09 PM PST -SAUMILDHANKAR,2022-02-08T04:09:38Z,- SAUMILDHANKAR commented on pull request: [2557](https://github.com/hackforla/website/pull/2557#issuecomment-1032194197) at 2022-02-07 08:09 PM PST -SAUMILDHANKAR,2022-02-08T04:19:20Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1032198807) at 2022-02-07 08:19 PM PST -SAUMILDHANKAR,2022-02-09T00:25:04Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1033197120) at 2022-02-08 04:25 PM PST -SAUMILDHANKAR,2022-02-09T07:18:20Z,- SAUMILDHANKAR commented on pull request: [2752](https://github.com/hackforla/website/pull/2752#issuecomment-1033424411) at 2022-02-08 11:18 PM PST -SAUMILDHANKAR,2022-02-09T07:40:45Z,- SAUMILDHANKAR commented on pull request: [2752](https://github.com/hackforla/website/pull/2752#issuecomment-1033437987) at 2022-02-08 11:40 PM PST -SAUMILDHANKAR,2022-02-09T09:35:15Z,- SAUMILDHANKAR submitted pull request review: [2757](https://github.com/hackforla/website/pull/2757#pullrequestreview-877170964) at 2022-02-09 01:35 AM PST -SAUMILDHANKAR,2022-02-09T09:36:25Z,- SAUMILDHANKAR closed issue by PR 2757: [2754](https://github.com/hackforla/website/issues/2754#event-6032851780) at 2022-02-09 01:36 AM PST -SAUMILDHANKAR,2022-02-09T10:01:40Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1033580157) at 2022-02-09 02:01 AM PST -SAUMILDHANKAR,2022-02-10T08:33:44Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1034629040) at 2022-02-10 12:33 AM PST -SAUMILDHANKAR,2022-02-10T09:21:43Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1034681644) at 2022-02-10 01:21 AM PST -SAUMILDHANKAR,2022-02-11T00:49:55Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1035686880) at 2022-02-10 04:49 PM PST -SAUMILDHANKAR,2022-02-11T22:56:21Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1036717027) at 2022-02-11 02:56 PM PST -SAUMILDHANKAR,2022-02-11T23:41:16Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1036774288) at 2022-02-11 03:41 PM PST -SAUMILDHANKAR,2022-02-12T04:27:47Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1036986972) at 2022-02-11 08:27 PM PST -SAUMILDHANKAR,2022-02-12T04:27:47Z,- SAUMILDHANKAR reopened issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1036986972) at 2022-02-11 08:27 PM PST -SAUMILDHANKAR,2022-02-12T09:11:18Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1037079234) at 2022-02-12 01:11 AM PST -SAUMILDHANKAR,2022-02-12T20:29:29Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1037456121) at 2022-02-12 12:29 PM PST -SAUMILDHANKAR,2022-02-12T23:25:34Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1037570421) at 2022-02-12 03:25 PM PST -SAUMILDHANKAR,2022-02-13T01:58:12Z,- SAUMILDHANKAR opened issue: [2771](https://github.com/hackforla/website/issues/2771) at 2022-02-12 05:58 PM PST -SAUMILDHANKAR,2022-02-13T02:21:21Z,- SAUMILDHANKAR assigned to issue: [2642](https://github.com/hackforla/website/issues/2642#issuecomment-1002327131) at 2022-02-12 06:21 PM PST -SAUMILDHANKAR,2022-02-13T08:45:05Z,- SAUMILDHANKAR opened issue: [2775](https://github.com/hackforla/website/issues/2775) at 2022-02-13 12:45 AM PST -SAUMILDHANKAR,2022-02-13T09:52:32Z,- SAUMILDHANKAR commented on pull request: [2769](https://github.com/hackforla/website/pull/2769#issuecomment-1037973787) at 2022-02-13 01:52 AM PST -SAUMILDHANKAR,2022-02-13T10:01:44Z,- SAUMILDHANKAR submitted pull request review: [2769](https://github.com/hackforla/website/pull/2769#pullrequestreview-880960548) at 2022-02-13 02:01 AM PST -SAUMILDHANKAR,2022-02-13T10:02:59Z,- SAUMILDHANKAR closed issue by PR 2769: [2661](https://github.com/hackforla/website/issues/2661#event-6060553744) at 2022-02-13 02:02 AM PST -SAUMILDHANKAR,2022-02-13T10:42:33Z,- SAUMILDHANKAR opened issue: [2776](https://github.com/hackforla/website/issues/2776) at 2022-02-13 02:42 AM PST -SAUMILDHANKAR,2022-02-13T10:49:00Z,- SAUMILDHANKAR opened issue: [2777](https://github.com/hackforla/website/issues/2777) at 2022-02-13 02:49 AM PST -SAUMILDHANKAR,2022-02-13T18:21:11Z,- SAUMILDHANKAR commented on pull request: [2767](https://github.com/hackforla/website/pull/2767#issuecomment-1038317649) at 2022-02-13 10:21 AM PST -SAUMILDHANKAR,2022-02-13T18:55:48Z,- SAUMILDHANKAR commented on issue: [2773](https://github.com/hackforla/website/issues/2773#issuecomment-1038344103) at 2022-02-13 10:55 AM PST -SAUMILDHANKAR,2022-02-13T19:44:24Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1038381276) at 2022-02-13 11:44 AM PST -SAUMILDHANKAR,2022-02-14T02:22:04Z,- SAUMILDHANKAR assigned to issue: [2775](https://github.com/hackforla/website/issues/2775#issuecomment-1037933116) at 2022-02-13 06:22 PM PST -SAUMILDHANKAR,2022-02-15T00:18:15Z,- SAUMILDHANKAR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1039709865) at 2022-02-14 04:18 PM PST -SAUMILDHANKAR,2022-02-15T00:25:22Z,- SAUMILDHANKAR submitted pull request review: [2778](https://github.com/hackforla/website/pull/2778#pullrequestreview-882335382) at 2022-02-14 04:25 PM PST -SAUMILDHANKAR,2022-02-15T22:19:08Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1040853957) at 2022-02-15 02:19 PM PST -SAUMILDHANKAR,2022-02-15T23:03:00Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1040884224) at 2022-02-15 03:03 PM PST -SAUMILDHANKAR,2022-02-16T00:31:25Z,- SAUMILDHANKAR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1040938045) at 2022-02-15 04:31 PM PST -SAUMILDHANKAR,2022-02-16T00:41:11Z,- SAUMILDHANKAR closed issue as completed: [2558](https://github.com/hackforla/website/issues/2558#event-6079139271) at 2022-02-15 04:41 PM PST -SAUMILDHANKAR,2022-02-16T03:32:25Z,- SAUMILDHANKAR commented on pull request: [2780](https://github.com/hackforla/website/pull/2780#issuecomment-1041061441) at 2022-02-15 07:32 PM PST -SAUMILDHANKAR,2022-02-16T04:14:27Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1041086142) at 2022-02-15 08:14 PM PST -SAUMILDHANKAR,2022-02-17T01:40:38Z,- SAUMILDHANKAR commented on pull request: [2778](https://github.com/hackforla/website/pull/2778#issuecomment-1042482912) at 2022-02-16 05:40 PM PST -SAUMILDHANKAR,2022-02-17T10:07:50Z,- SAUMILDHANKAR submitted pull request review: [2767](https://github.com/hackforla/website/pull/2767#pullrequestreview-885719941) at 2022-02-17 02:07 AM PST -SAUMILDHANKAR,2022-02-17T10:55:55Z,- SAUMILDHANKAR submitted pull request review: [2778](https://github.com/hackforla/website/pull/2778#pullrequestreview-885782281) at 2022-02-17 02:55 AM PST -SAUMILDHANKAR,2022-02-17T10:56:49Z,- SAUMILDHANKAR closed issue by PR 2778: [2437](https://github.com/hackforla/website/issues/2437#event-6089371358) at 2022-02-17 02:56 AM PST -SAUMILDHANKAR,2022-02-17T11:10:12Z,- SAUMILDHANKAR commented on pull request: [2787](https://github.com/hackforla/website/pull/2787#issuecomment-1042837011) at 2022-02-17 03:10 AM PST -SAUMILDHANKAR,2022-02-17T11:17:49Z,- SAUMILDHANKAR submitted pull request review: [2787](https://github.com/hackforla/website/pull/2787#pullrequestreview-885808793) at 2022-02-17 03:17 AM PST -SAUMILDHANKAR,2022-02-17T11:57:46Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1042874020) at 2022-02-17 03:57 AM PST -SAUMILDHANKAR,2022-02-18T03:39:24Z,- SAUMILDHANKAR commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1043829929) at 2022-02-17 07:39 PM PST -SAUMILDHANKAR,2022-02-19T05:37:05Z,- SAUMILDHANKAR submitted pull request review: [2787](https://github.com/hackforla/website/pull/2787#pullrequestreview-887892292) at 2022-02-18 09:37 PM PST -SAUMILDHANKAR,2022-02-19T05:37:54Z,- SAUMILDHANKAR closed issue by PR 2787: [2429](https://github.com/hackforla/website/issues/2429#event-6104981377) at 2022-02-18 09:37 PM PST -SAUMILDHANKAR,2022-02-19T05:45:39Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1045825999) at 2022-02-18 09:45 PM PST -SAUMILDHANKAR,2022-02-19T06:01:22Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-887893747) at 2022-02-18 10:01 PM PST -SAUMILDHANKAR,2022-02-19T06:43:01Z,- SAUMILDHANKAR commented on issue: [2524](https://github.com/hackforla/website/issues/2524#issuecomment-1045892399) at 2022-02-18 10:43 PM PST -SAUMILDHANKAR,2022-02-19T06:50:14Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1045900531) at 2022-02-18 10:50 PM PST -SAUMILDHANKAR,2022-02-19T06:58:17Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1045909596) at 2022-02-18 10:58 PM PST -SAUMILDHANKAR,2022-02-19T07:03:27Z,- SAUMILDHANKAR commented on issue: [2266](https://github.com/hackforla/website/issues/2266#issuecomment-1045915445) at 2022-02-18 11:03 PM PST -SAUMILDHANKAR,2022-02-19T07:57:08Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1045961918) at 2022-02-18 11:57 PM PST -SAUMILDHANKAR,2022-02-19T08:04:34Z,- SAUMILDHANKAR commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1045963283) at 2022-02-19 12:04 AM PST -SAUMILDHANKAR,2022-02-19T08:04:34Z,- SAUMILDHANKAR reopened issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1045963283) at 2022-02-19 12:04 AM PST -SAUMILDHANKAR,2022-02-20T00:27:53Z,- SAUMILDHANKAR reopened issue: [2560](https://github.com/hackforla/website/issues/2560#event-6013212644) at 2022-02-19 04:27 PM PST -SAUMILDHANKAR,2022-02-20T00:37:43Z,- SAUMILDHANKAR commented on issue: [2610](https://github.com/hackforla/website/issues/2610#issuecomment-1046132742) at 2022-02-19 04:37 PM PST -SAUMILDHANKAR,2022-02-20T09:36:20Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1046198834) at 2022-02-20 01:36 AM PST -SAUMILDHANKAR,2022-02-20T09:49:02Z,- SAUMILDHANKAR submitted pull request review: [2801](https://github.com/hackforla/website/pull/2801#pullrequestreview-888012220) at 2022-02-20 01:49 AM PST -SAUMILDHANKAR,2022-02-20T10:51:37Z,- SAUMILDHANKAR commented on pull request: [2761](https://github.com/hackforla/website/pull/2761#issuecomment-1046210595) at 2022-02-20 02:51 AM PST -SAUMILDHANKAR,2022-02-20T18:26:03Z,- SAUMILDHANKAR commented on pull request: [2803](https://github.com/hackforla/website/pull/2803#issuecomment-1046294599) at 2022-02-20 10:26 AM PST -SAUMILDHANKAR,2022-02-20T19:35:01Z,- SAUMILDHANKAR opened issue: [2804](https://github.com/hackforla/website/issues/2804) at 2022-02-20 11:35 AM PST -SAUMILDHANKAR,2022-02-20T20:37:35Z,- SAUMILDHANKAR commented on issue: [2810](https://github.com/hackforla/website/issues/2810#issuecomment-1046316268) at 2022-02-20 12:37 PM PST -SAUMILDHANKAR,2022-02-21T18:27:09Z,- SAUMILDHANKAR commented on pull request: [2819](https://github.com/hackforla/website/pull/2819#issuecomment-1047138688) at 2022-02-21 10:27 AM PST -SAUMILDHANKAR,2022-02-21T18:32:56Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1047142130) at 2022-02-21 10:32 AM PST -SAUMILDHANKAR,2022-02-21T18:39:16Z,- SAUMILDHANKAR commented on pull request: [2767](https://github.com/hackforla/website/pull/2767#issuecomment-1047145392) at 2022-02-21 10:39 AM PST -SAUMILDHANKAR,2022-02-21T19:04:45Z,- SAUMILDHANKAR commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1047158947) at 2022-02-21 11:04 AM PST -SAUMILDHANKAR,2022-02-21T19:04:45Z,- SAUMILDHANKAR reopened issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1047158947) at 2022-02-21 11:04 AM PST -SAUMILDHANKAR,2022-02-21T23:44:21Z,- SAUMILDHANKAR submitted pull request review: [2767](https://github.com/hackforla/website/pull/2767#pullrequestreview-889166886) at 2022-02-21 03:44 PM PST -SAUMILDHANKAR,2022-02-21T23:44:51Z,- SAUMILDHANKAR closed issue by PR 2767: [2204](https://github.com/hackforla/website/issues/2204#event-6114501569) at 2022-02-21 03:44 PM PST -SAUMILDHANKAR,2022-02-22T02:12:15Z,- SAUMILDHANKAR submitted pull request review: [2803](https://github.com/hackforla/website/pull/2803#pullrequestreview-889220818) at 2022-02-21 06:12 PM PST -SAUMILDHANKAR,2022-02-22T02:12:42Z,- SAUMILDHANKAR closed issue by PR 2803: [2086](https://github.com/hackforla/website/issues/2086#event-6114861756) at 2022-02-21 06:12 PM PST -SAUMILDHANKAR,2022-02-22T03:28:11Z,- SAUMILDHANKAR submitted pull request review: [2819](https://github.com/hackforla/website/pull/2819#pullrequestreview-889251949) at 2022-02-21 07:28 PM PST -SAUMILDHANKAR,2022-02-22T03:28:56Z,- SAUMILDHANKAR closed issue by PR 2819: [2277](https://github.com/hackforla/website/issues/2277#event-6115070932) at 2022-02-21 07:28 PM PST -SAUMILDHANKAR,2022-02-23T08:27:29Z,- SAUMILDHANKAR submitted pull request review: [2761](https://github.com/hackforla/website/pull/2761#pullrequestreview-890742925) at 2022-02-23 12:27 AM PST -SAUMILDHANKAR,2022-02-23T08:30:02Z,- SAUMILDHANKAR submitted pull request review: [2761](https://github.com/hackforla/website/pull/2761#pullrequestreview-890745526) at 2022-02-23 12:30 AM PST -SAUMILDHANKAR,2022-02-23T08:58:01Z,- SAUMILDHANKAR submitted pull request review: [2854](https://github.com/hackforla/website/pull/2854#pullrequestreview-890774995) at 2022-02-23 12:58 AM PST -SAUMILDHANKAR,2022-02-23T23:59:19Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891837048) at 2022-02-23 03:59 PM PST -SAUMILDHANKAR,2022-02-24T00:02:19Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891838861) at 2022-02-23 04:02 PM PST -SAUMILDHANKAR,2022-02-24T00:23:56Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891850866) at 2022-02-23 04:23 PM PST -SAUMILDHANKAR,2022-02-24T00:34:43Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891856716) at 2022-02-23 04:34 PM PST -SAUMILDHANKAR,2022-02-24T01:50:51Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891897683) at 2022-02-23 05:50 PM PST -SAUMILDHANKAR,2022-02-24T01:53:15Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891898846) at 2022-02-23 05:53 PM PST -SAUMILDHANKAR,2022-02-24T02:06:56Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891905368) at 2022-02-23 06:06 PM PST -SAUMILDHANKAR,2022-02-24T02:17:15Z,- SAUMILDHANKAR submitted pull request review: [2774](https://github.com/hackforla/website/pull/2774#pullrequestreview-891910366) at 2022-02-23 06:17 PM PST -SAUMILDHANKAR,2022-02-24T23:07:14Z,- SAUMILDHANKAR commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1050349130) at 2022-02-24 03:07 PM PST -SAUMILDHANKAR,2022-02-25T02:06:39Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1050444297) at 2022-02-24 06:06 PM PST -SAUMILDHANKAR,2022-02-25T20:38:25Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-894212140) at 2022-02-25 12:38 PM PST -SAUMILDHANKAR,2022-02-26T08:25:07Z,- SAUMILDHANKAR commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1051820901) at 2022-02-26 12:25 AM PST -SAUMILDHANKAR,2022-02-27T01:43:32Z,- SAUMILDHANKAR commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1052925187) at 2022-02-26 05:43 PM PST -SAUMILDHANKAR,2022-02-27T07:32:43Z,- SAUMILDHANKAR commented on pull request: [2893](https://github.com/hackforla/website/pull/2893#issuecomment-1053298532) at 2022-02-26 11:32 PM PST -SAUMILDHANKAR,2022-02-27T07:49:03Z,- SAUMILDHANKAR submitted pull request review: [2893](https://github.com/hackforla/website/pull/2893#pullrequestreview-894471967) at 2022-02-26 11:49 PM PST -SAUMILDHANKAR,2022-02-27T07:49:28Z,- SAUMILDHANKAR closed issue by PR 2893: [2659](https://github.com/hackforla/website/issues/2659#event-6149415202) at 2022-02-26 11:49 PM PST -SAUMILDHANKAR,2022-02-27T08:49:53Z,- SAUMILDHANKAR opened issue: [2896](https://github.com/hackforla/website/issues/2896) at 2022-02-27 12:49 AM PST -SAUMILDHANKAR,2022-02-27T09:34:55Z,- SAUMILDHANKAR commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-1053426920) at 2022-02-27 01:34 AM PST -SAUMILDHANKAR,2022-02-27T10:06:19Z,- SAUMILDHANKAR commented on issue: [2667](https://github.com/hackforla/website/issues/2667#issuecomment-1053454110) at 2022-02-27 02:06 AM PST -SAUMILDHANKAR,2022-02-27T10:06:19Z,- SAUMILDHANKAR closed issue as completed: [2667](https://github.com/hackforla/website/issues/2667#event-6149901900) at 2022-02-27 02:06 AM PST -SAUMILDHANKAR,2022-02-27T10:54:37Z,- SAUMILDHANKAR opened issue: [2897](https://github.com/hackforla/website/issues/2897) at 2022-02-27 02:54 AM PST -SAUMILDHANKAR,2022-02-27T11:52:17Z,- SAUMILDHANKAR opened issue: [2898](https://github.com/hackforla/website/issues/2898) at 2022-02-27 03:52 AM PST -SAUMILDHANKAR,2022-02-27T18:26:30Z,- SAUMILDHANKAR commented on pull request: [2880](https://github.com/hackforla/website/pull/2880#issuecomment-1053638835) at 2022-02-27 10:26 AM PST -SAUMILDHANKAR,2022-02-28T07:52:30Z,- SAUMILDHANKAR opened issue: [2901](https://github.com/hackforla/website/issues/2901) at 2022-02-27 11:52 PM PST -SAUMILDHANKAR,2022-02-28T08:15:33Z,- SAUMILDHANKAR opened issue: [2902](https://github.com/hackforla/website/issues/2902) at 2022-02-28 12:15 AM PST -SAUMILDHANKAR,2022-02-28T09:07:19Z,- SAUMILDHANKAR commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1054038040) at 2022-02-28 01:07 AM PST -SAUMILDHANKAR,2022-02-28T09:27:20Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1054057020) at 2022-02-28 01:27 AM PST -SAUMILDHANKAR,2022-02-28T09:34:30Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1054063311) at 2022-02-28 01:34 AM PST -SAUMILDHANKAR,2022-02-28T09:37:21Z,- SAUMILDHANKAR commented on issue: [2744](https://github.com/hackforla/website/issues/2744#issuecomment-1054065755) at 2022-02-28 01:37 AM PST -SAUMILDHANKAR,2022-02-28T09:40:26Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1054068342) at 2022-02-28 01:40 AM PST -SAUMILDHANKAR,2022-02-28T09:43:09Z,- SAUMILDHANKAR commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1054070395) at 2022-02-28 01:43 AM PST -SAUMILDHANKAR,2022-02-28T09:47:14Z,- SAUMILDHANKAR commented on pull request: [2894](https://github.com/hackforla/website/pull/2894#issuecomment-1054073779) at 2022-02-28 01:47 AM PST -SAUMILDHANKAR,2022-02-28T09:59:55Z,- SAUMILDHANKAR commented on issue: [2743](https://github.com/hackforla/website/issues/2743#issuecomment-1054084203) at 2022-02-28 01:59 AM PST -SAUMILDHANKAR,2022-02-28T10:03:56Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1054087812) at 2022-02-28 02:03 AM PST -SAUMILDHANKAR,2022-03-01T07:13:55Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1055100067) at 2022-02-28 11:13 PM PST -SAUMILDHANKAR,2022-03-01T09:48:42Z,- SAUMILDHANKAR submitted pull request review: [2903](https://github.com/hackforla/website/pull/2903#pullrequestreview-896079192) at 2022-03-01 01:48 AM PST -SAUMILDHANKAR,2022-03-01T09:49:36Z,- SAUMILDHANKAR commented on pull request: [2903](https://github.com/hackforla/website/pull/2903#issuecomment-1055230265) at 2022-03-01 01:49 AM PST -SAUMILDHANKAR,2022-03-01T09:50:45Z,- SAUMILDHANKAR closed issue by PR 2903: [2890](https://github.com/hackforla/website/issues/2890#event-6160740503) at 2022-03-01 01:50 AM PST -SAUMILDHANKAR,2022-03-01T10:10:31Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1055258819) at 2022-03-01 02:10 AM PST -SAUMILDHANKAR,2022-03-02T00:17:54Z,- SAUMILDHANKAR commented on pull request: [2635](https://github.com/hackforla/website/pull/2635#issuecomment-1055999920) at 2022-03-01 04:17 PM PST -SAUMILDHANKAR,2022-03-02T00:44:42Z,- SAUMILDHANKAR commented on pull request: [2765](https://github.com/hackforla/website/pull/2765#issuecomment-1056015977) at 2022-03-01 04:44 PM PST -SAUMILDHANKAR,2022-03-02T01:01:12Z,- SAUMILDHANKAR commented on issue: [2385](https://github.com/hackforla/website/issues/2385#issuecomment-1056024820) at 2022-03-01 05:01 PM PST -SAUMILDHANKAR,2022-03-03T02:15:42Z,- SAUMILDHANKAR submitted pull request review: [2880](https://github.com/hackforla/website/pull/2880#pullrequestreview-898377492) at 2022-03-02 06:15 PM PST -SAUMILDHANKAR,2022-03-03T02:16:04Z,- SAUMILDHANKAR closed issue by PR 2880: [2690](https://github.com/hackforla/website/issues/2690#event-6175046734) at 2022-03-02 06:16 PM PST -SAUMILDHANKAR,2022-03-03T10:48:39Z,- SAUMILDHANKAR commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1057917632) at 2022-03-03 02:48 AM PST -SAUMILDHANKAR,2022-03-04T02:37:17Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1058768426) at 2022-03-03 06:37 PM PST -SAUMILDHANKAR,2022-03-04T06:54:07Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1058886740) at 2022-03-03 10:54 PM PST -SAUMILDHANKAR,2022-03-05T01:08:57Z,- SAUMILDHANKAR commented on issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1059635376) at 2022-03-04 05:08 PM PST -SAUMILDHANKAR,2022-03-05T01:24:07Z,- SAUMILDHANKAR unassigned from issue: [2505](https://github.com/hackforla/website/issues/2505#issuecomment-1059635376) at 2022-03-04 05:24 PM PST -SAUMILDHANKAR,2022-03-05T07:36:54Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1059713728) at 2022-03-04 11:36 PM PST -SAUMILDHANKAR,2022-03-05T07:57:41Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1059716166) at 2022-03-04 11:57 PM PST -SAUMILDHANKAR,2022-03-05T08:19:06Z,- SAUMILDHANKAR commented on issue: [2391](https://github.com/hackforla/website/issues/2391#issuecomment-1059719546) at 2022-03-05 12:19 AM PST -SAUMILDHANKAR,2022-03-05T08:23:12Z,- SAUMILDHANKAR commented on issue: [2559](https://github.com/hackforla/website/issues/2559#issuecomment-1059720018) at 2022-03-05 12:23 AM PST -SAUMILDHANKAR,2022-03-05T08:23:12Z,- SAUMILDHANKAR closed issue as completed: [2559](https://github.com/hackforla/website/issues/2559#event-6189072353) at 2022-03-05 12:23 AM PST -SAUMILDHANKAR,2022-03-05T08:34:12Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1059721441) at 2022-03-05 12:34 AM PST -SAUMILDHANKAR,2022-03-05T08:52:11Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1059723901) at 2022-03-05 12:52 AM PST -SAUMILDHANKAR,2022-03-05T22:13:53Z,- SAUMILDHANKAR opened issue: [2932](https://github.com/hackforla/website/issues/2932) at 2022-03-05 02:13 PM PST -SAUMILDHANKAR,2022-03-05T22:31:00Z,- SAUMILDHANKAR opened issue: [2933](https://github.com/hackforla/website/issues/2933) at 2022-03-05 02:31 PM PST -SAUMILDHANKAR,2022-03-05T22:42:57Z,- SAUMILDHANKAR opened issue: [2934](https://github.com/hackforla/website/issues/2934) at 2022-03-05 02:42 PM PST -SAUMILDHANKAR,2022-03-06T02:36:34Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1059881835) at 2022-03-05 06:36 PM PST -SAUMILDHANKAR,2022-03-06T02:45:37Z,- SAUMILDHANKAR commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1059882684) at 2022-03-05 06:45 PM PST -SAUMILDHANKAR,2022-03-07T14:07:36Z,- SAUMILDHANKAR commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1060724655) at 2022-03-07 06:07 AM PST -SAUMILDHANKAR,2022-03-07T22:14:05Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1061191897) at 2022-03-07 02:14 PM PST -SAUMILDHANKAR,2022-03-08T02:16:28Z,- SAUMILDHANKAR commented on issue: [2814](https://github.com/hackforla/website/issues/2814#issuecomment-1061336351) at 2022-03-07 06:16 PM PST -SAUMILDHANKAR,2022-03-08T08:32:50Z,- SAUMILDHANKAR opened issue: [2939](https://github.com/hackforla/website/issues/2939) at 2022-03-08 12:32 AM PST -SAUMILDHANKAR,2022-03-08T09:58:29Z,- SAUMILDHANKAR commented on issue: [2749](https://github.com/hackforla/website/issues/2749#issuecomment-1061600990) at 2022-03-08 01:58 AM PST -SAUMILDHANKAR,2022-03-09T10:18:09Z,- SAUMILDHANKAR assigned to issue: [2722](https://github.com/hackforla/website/issues/2722#issuecomment-1023531237) at 2022-03-09 02:18 AM PST -SAUMILDHANKAR,2022-03-10T00:04:33Z,- SAUMILDHANKAR opened issue: [2952](https://github.com/hackforla/website/issues/2952) at 2022-03-09 04:04 PM PST -SAUMILDHANKAR,2022-03-10T06:46:10Z,- SAUMILDHANKAR opened issue: [2953](https://github.com/hackforla/website/issues/2953) at 2022-03-09 10:46 PM PST -SAUMILDHANKAR,2022-03-10T07:33:23Z,- SAUMILDHANKAR opened issue: [2954](https://github.com/hackforla/website/issues/2954) at 2022-03-09 11:33 PM PST -SAUMILDHANKAR,2022-03-10T08:27:04Z,- SAUMILDHANKAR submitted pull request review: [2944](https://github.com/hackforla/website/pull/2944#pullrequestreview-905472409) at 2022-03-10 12:27 AM PST -SAUMILDHANKAR,2022-03-10T08:43:48Z,- SAUMILDHANKAR commented on issue: [2242](https://github.com/hackforla/website/issues/2242#issuecomment-1063806135) at 2022-03-10 12:43 AM PST -SAUMILDHANKAR,2022-03-10T09:58:52Z,- SAUMILDHANKAR opened issue: [2955](https://github.com/hackforla/website/issues/2955) at 2022-03-10 01:58 AM PST -SAUMILDHANKAR,2022-03-10T10:17:32Z,- SAUMILDHANKAR opened issue: [2956](https://github.com/hackforla/website/issues/2956) at 2022-03-10 02:17 AM PST -SAUMILDHANKAR,2022-03-11T02:14:12Z,- SAUMILDHANKAR opened issue: [2961](https://github.com/hackforla/website/issues/2961) at 2022-03-10 06:14 PM PST -SAUMILDHANKAR,2022-03-11T21:44:07Z,- SAUMILDHANKAR commented on pull request: [2944](https://github.com/hackforla/website/pull/2944#issuecomment-1065558476) at 2022-03-11 01:44 PM PST -SAUMILDHANKAR,2022-03-11T21:46:52Z,- SAUMILDHANKAR commented on pull request: [2957](https://github.com/hackforla/website/pull/2957#issuecomment-1065559999) at 2022-03-11 01:46 PM PST -SAUMILDHANKAR,2022-03-11T21:51:38Z,- SAUMILDHANKAR commented on pull request: [2965](https://github.com/hackforla/website/pull/2965#issuecomment-1065564363) at 2022-03-11 01:51 PM PST -SAUMILDHANKAR,2022-03-11T22:24:52Z,- SAUMILDHANKAR commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1065593449) at 2022-03-11 02:24 PM PST -SAUMILDHANKAR,2022-03-12T01:31:36Z,- SAUMILDHANKAR commented on pull request: [2774](https://github.com/hackforla/website/pull/2774#issuecomment-1065780781) at 2022-03-11 06:31 PM PDT -SAUMILDHANKAR,2022-03-12T01:39:58Z,- SAUMILDHANKAR commented on issue: [2528](https://github.com/hackforla/website/issues/2528#issuecomment-1065782689) at 2022-03-11 06:39 PM PDT -SAUMILDHANKAR,2022-03-12T01:49:25Z,- SAUMILDHANKAR commented on pull request: [2736](https://github.com/hackforla/website/pull/2736#issuecomment-1065784724) at 2022-03-11 06:49 PM PDT -SAUMILDHANKAR,2022-03-12T01:55:59Z,- SAUMILDHANKAR commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1065786460) at 2022-03-11 06:55 PM PDT -SAUMILDHANKAR,2022-03-12T06:58:22Z,- SAUMILDHANKAR commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1065829321) at 2022-03-11 11:58 PM PDT -SAUMILDHANKAR,2022-03-12T07:18:20Z,- SAUMILDHANKAR commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1065831801) at 2022-03-12 12:18 AM PDT -SAUMILDHANKAR,2022-03-12T08:52:45Z,- SAUMILDHANKAR submitted pull request review: [2957](https://github.com/hackforla/website/pull/2957#pullrequestreview-907973334) at 2022-03-12 01:52 AM PDT -SAUMILDHANKAR,2022-03-12T08:56:20Z,- SAUMILDHANKAR closed issue by PR 2957: [2280](https://github.com/hackforla/website/issues/2280#event-6229430400) at 2022-03-12 01:56 AM PDT -SAUMILDHANKAR,2022-03-12T09:01:38Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1065845694) at 2022-03-12 02:01 AM PDT -SAUMILDHANKAR,2022-03-12T09:31:28Z,- SAUMILDHANKAR submitted pull request review: [2965](https://github.com/hackforla/website/pull/2965#pullrequestreview-907978321) at 2022-03-12 02:31 AM PDT -SAUMILDHANKAR,2022-03-12T09:50:44Z,- SAUMILDHANKAR submitted pull request review: [2966](https://github.com/hackforla/website/pull/2966#pullrequestreview-907980643) at 2022-03-12 02:50 AM PDT -SAUMILDHANKAR,2022-03-12T09:52:05Z,- SAUMILDHANKAR closed issue by PR 2966: [2907](https://github.com/hackforla/website/issues/2907#event-6229496781) at 2022-03-12 02:52 AM PDT -SAUMILDHANKAR,2022-03-12T10:29:02Z,- SAUMILDHANKAR commented on issue: [2907](https://github.com/hackforla/website/issues/2907#issuecomment-1065858173) at 2022-03-12 03:29 AM PDT -SAUMILDHANKAR,2022-03-12T10:50:53Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1065861133) at 2022-03-12 03:50 AM PDT -SAUMILDHANKAR,2022-03-12T10:54:47Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1065861726) at 2022-03-12 03:54 AM PDT -SAUMILDHANKAR,2022-03-12T10:58:43Z,- SAUMILDHANKAR commented on issue: [2660](https://github.com/hackforla/website/issues/2660#issuecomment-1065862210) at 2022-03-12 03:58 AM PDT -SAUMILDHANKAR,2022-03-12T11:01:00Z,- SAUMILDHANKAR commented on issue: [2523](https://github.com/hackforla/website/issues/2523#issuecomment-1065862527) at 2022-03-12 04:01 AM PDT -SAUMILDHANKAR,2022-03-12T11:01:00Z,- SAUMILDHANKAR closed issue as completed: [2523](https://github.com/hackforla/website/issues/2523#event-6229567739) at 2022-03-12 04:01 AM PDT -SAUMILDHANKAR,2022-03-12T11:07:38Z,- SAUMILDHANKAR commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1065863489) at 2022-03-12 04:07 AM PDT -SAUMILDHANKAR,2022-03-12T11:09:55Z,- SAUMILDHANKAR commented on issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-1065863810) at 2022-03-12 04:09 AM PDT -SAUMILDHANKAR,2022-03-12T11:13:09Z,- SAUMILDHANKAR commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1065864234) at 2022-03-12 04:13 AM PDT -SAUMILDHANKAR,2022-03-12T11:21:33Z,- SAUMILDHANKAR commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1065865220) at 2022-03-12 04:21 AM PDT -SAUMILDHANKAR,2022-03-12T11:30:01Z,- SAUMILDHANKAR commented on issue: [2727](https://github.com/hackforla/website/issues/2727#issuecomment-1065866402) at 2022-03-12 04:30 AM PDT -SAUMILDHANKAR,2022-03-12T11:47:44Z,- SAUMILDHANKAR commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1065868677) at 2022-03-12 04:47 AM PDT -SAUMILDHANKAR,2022-03-12T11:53:31Z,- SAUMILDHANKAR commented on issue: [2838](https://github.com/hackforla/website/issues/2838#issuecomment-1065869631) at 2022-03-12 04:53 AM PDT -SAUMILDHANKAR,2022-03-12T12:16:35Z,- SAUMILDHANKAR commented on issue: [2683](https://github.com/hackforla/website/issues/2683#issuecomment-1065873279) at 2022-03-12 05:16 AM PDT -SAUMILDHANKAR,2022-03-12T22:24:59Z,- SAUMILDHANKAR commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1065975734) at 2022-03-12 03:24 PM PDT -SAUMILDHANKAR,2022-03-13T22:25:42Z,- SAUMILDHANKAR commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1066194570) at 2022-03-13 03:25 PM PDT -SAUMILDHANKAR,2022-03-14T06:20:20Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-908333027) at 2022-03-13 11:20 PM PDT -SAUMILDHANKAR,2022-03-14T07:19:47Z,- SAUMILDHANKAR commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1066455714) at 2022-03-14 12:19 AM PDT -SAUMILDHANKAR,2022-03-14T07:26:09Z,- SAUMILDHANKAR commented on issue: [2782](https://github.com/hackforla/website/issues/2782#issuecomment-1066460218) at 2022-03-14 12:26 AM PDT -SAUMILDHANKAR,2022-03-14T07:28:45Z,- SAUMILDHANKAR commented on issue: [2238](https://github.com/hackforla/website/issues/2238#issuecomment-1066462026) at 2022-03-14 12:28 AM PDT -SAUMILDHANKAR,2022-03-17T21:38:48Z,- SAUMILDHANKAR commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1071536152) at 2022-03-17 02:38 PM PDT -SAUMILDHANKAR,2022-03-18T23:39:59Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1072888758) at 2022-03-18 04:39 PM PDT -SAUMILDHANKAR,2022-03-19T16:33:57Z,- SAUMILDHANKAR commented on issue: [2750](https://github.com/hackforla/website/issues/2750#issuecomment-1073040060) at 2022-03-19 09:33 AM PDT -SAUMILDHANKAR,2022-03-19T16:36:12Z,- SAUMILDHANKAR commented on issue: [2458](https://github.com/hackforla/website/issues/2458#issuecomment-1073040430) at 2022-03-19 09:36 AM PDT -SAUMILDHANKAR,2022-03-19T16:40:43Z,- SAUMILDHANKAR commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1073041135) at 2022-03-19 09:40 AM PDT -SAUMILDHANKAR,2022-03-19T16:49:02Z,- SAUMILDHANKAR commented on issue: [2715](https://github.com/hackforla/website/issues/2715#issuecomment-1073042335) at 2022-03-19 09:49 AM PDT -SAUMILDHANKAR,2022-03-19T17:07:22Z,- SAUMILDHANKAR commented on pull request: [2862](https://github.com/hackforla/website/pull/2862#issuecomment-1073045752) at 2022-03-19 10:07 AM PDT -SAUMILDHANKAR,2022-03-19T17:07:48Z,- SAUMILDHANKAR commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1073045830) at 2022-03-19 10:07 AM PDT -SAUMILDHANKAR,2022-03-19T17:08:43Z,- SAUMILDHANKAR commented on issue: [2837](https://github.com/hackforla/website/issues/2837#issuecomment-1073045995) at 2022-03-19 10:08 AM PDT -SAUMILDHANKAR,2022-03-19T20:09:34Z,- SAUMILDHANKAR commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1073073942) at 2022-03-19 01:09 PM PDT -SAUMILDHANKAR,2022-03-20T16:48:53Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073289084) at 2022-03-20 09:48 AM PDT -SAUMILDHANKAR,2022-03-20T17:17:37Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1073294941) at 2022-03-20 10:17 AM PDT -SAUMILDHANKAR,2022-03-21T02:47:45Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915204827) at 2022-03-20 07:47 PM PDT -SAUMILDHANKAR,2022-03-21T06:44:25Z,- SAUMILDHANKAR commented on pull request: [2790](https://github.com/hackforla/website/pull/2790#issuecomment-1073528856) at 2022-03-20 11:44 PM PDT -SAUMILDHANKAR,2022-03-21T07:43:53Z,- SAUMILDHANKAR commented on pull request: [2995](https://github.com/hackforla/website/pull/2995#issuecomment-1073562097) at 2022-03-21 12:43 AM PDT -SAUMILDHANKAR,2022-03-21T07:46:45Z,- SAUMILDHANKAR submitted pull request review: [2995](https://github.com/hackforla/website/pull/2995#pullrequestreview-915347694) at 2022-03-21 12:46 AM PDT -SAUMILDHANKAR,2022-03-21T07:48:14Z,- SAUMILDHANKAR closed issue by PR 2995: [2238](https://github.com/hackforla/website/issues/2238#event-6273326484) at 2022-03-21 12:48 AM PDT -SAUMILDHANKAR,2022-03-21T08:16:28Z,- SAUMILDHANKAR closed issue by PR 2982: [2886](https://github.com/hackforla/website/issues/2886#event-6273479719) at 2022-03-21 01:16 AM PDT -SAUMILDHANKAR,2022-03-22T00:45:29Z,- SAUMILDHANKAR closed issue by PR 2991: [2990](https://github.com/hackforla/website/issues/2990#event-6279742092) at 2022-03-21 05:45 PM PDT -SAUMILDHANKAR,2022-03-22T00:52:16Z,- SAUMILDHANKAR commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1074566463) at 2022-03-21 05:52 PM PDT -SAUMILDHANKAR,2022-03-22T02:05:33Z,- SAUMILDHANKAR commented on pull request: [2994](https://github.com/hackforla/website/pull/2994#issuecomment-1074630466) at 2022-03-21 07:05 PM PDT -SAUMILDHANKAR,2022-03-22T02:22:51Z,- SAUMILDHANKAR submitted pull request review: [2994](https://github.com/hackforla/website/pull/2994#pullrequestreview-916585055) at 2022-03-21 07:22 PM PDT -SAUMILDHANKAR,2022-03-22T02:23:18Z,- SAUMILDHANKAR closed issue by PR 2994: [2987](https://github.com/hackforla/website/issues/2987#event-6280143233) at 2022-03-21 07:23 PM PDT -SAUMILDHANKAR,2022-03-23T00:28:04Z,- SAUMILDHANKAR submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-918039418) at 2022-03-22 05:28 PM PDT -SAUMILDHANKAR,2022-03-23T21:43:55Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1076849672) at 2022-03-23 02:43 PM PDT -SAUMILDHANKAR,2022-03-23T21:47:47Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1076852646) at 2022-03-23 02:47 PM PDT -SAUMILDHANKAR,2022-03-25T00:10:53Z,- SAUMILDHANKAR commented on issue: [2961](https://github.com/hackforla/website/issues/2961#issuecomment-1078521786) at 2022-03-24 05:10 PM PDT -SAUMILDHANKAR,2022-03-25T21:36:19Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1079453313) at 2022-03-25 02:36 PM PDT -SAUMILDHANKAR,2022-03-25T21:41:24Z,- SAUMILDHANKAR commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1079456407) at 2022-03-25 02:41 PM PDT -SAUMILDHANKAR,2022-03-26T06:49:17Z,- SAUMILDHANKAR submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-922282182) at 2022-03-25 11:49 PM PDT -SAUMILDHANKAR,2022-03-26T07:13:00Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-922289422) at 2022-03-26 12:13 AM PDT -SAUMILDHANKAR,2022-03-26T07:31:06Z,- SAUMILDHANKAR submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-922291246) at 2022-03-26 12:31 AM PDT -SAUMILDHANKAR,2022-03-26T07:56:41Z,- SAUMILDHANKAR submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-922293023) at 2022-03-26 12:56 AM PDT -SAUMILDHANKAR,2022-03-26T09:07:48Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-922298195) at 2022-03-26 02:07 AM PDT -SAUMILDHANKAR,2022-03-26T20:07:46Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1079766190) at 2022-03-26 01:07 PM PDT -SAUMILDHANKAR,2022-03-26T20:24:53Z,- SAUMILDHANKAR commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1079768685) at 2022-03-26 01:24 PM PDT -SAUMILDHANKAR,2022-03-26T20:29:46Z,- SAUMILDHANKAR commented on issue: [2638](https://github.com/hackforla/website/issues/2638#issuecomment-1079769394) at 2022-03-26 01:29 PM PDT -SAUMILDHANKAR,2022-03-26T21:01:59Z,- SAUMILDHANKAR commented on issue: [2839](https://github.com/hackforla/website/issues/2839#issuecomment-1079774147) at 2022-03-26 02:01 PM PDT -SAUMILDHANKAR,2022-03-26T21:20:01Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1079776751) at 2022-03-26 02:20 PM PDT -SAUMILDHANKAR,2022-03-26T21:32:27Z,- SAUMILDHANKAR closed issue as completed: [2837](https://github.com/hackforla/website/issues/2837#event-6312589247) at 2022-03-26 02:32 PM PDT -SAUMILDHANKAR,2022-03-27T06:51:27Z,- SAUMILDHANKAR commented on issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1079853503) at 2022-03-26 11:51 PM PDT -SAUMILDHANKAR,2022-03-27T08:43:00Z,- SAUMILDHANKAR submitted pull request review: [3012](https://github.com/hackforla/website/pull/3012#pullrequestreview-922421835) at 2022-03-27 01:43 AM PDT -SAUMILDHANKAR,2022-03-27T08:44:34Z,- SAUMILDHANKAR closed issue by PR 3012: [2745](https://github.com/hackforla/website/issues/2745#event-6313395712) at 2022-03-27 01:44 AM PDT -SAUMILDHANKAR,2022-03-28T23:56:04Z,- SAUMILDHANKAR commented on issue: [2669](https://github.com/hackforla/website/issues/2669#issuecomment-1081262348) at 2022-03-28 04:56 PM PDT -SAUMILDHANKAR,2022-03-29T02:56:34Z,- SAUMILDHANKAR commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1081347594) at 2022-03-28 07:56 PM PDT -SAUMILDHANKAR,2022-03-29T07:01:16Z,- SAUMILDHANKAR submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-924116388) at 2022-03-29 12:01 AM PDT -SAUMILDHANKAR,2022-03-29T07:17:10Z,- SAUMILDHANKAR submitted pull request review: [3010](https://github.com/hackforla/website/pull/3010#pullrequestreview-924135797) at 2022-03-29 12:17 AM PDT -SAUMILDHANKAR,2022-03-29T07:18:00Z,- SAUMILDHANKAR closed issue by PR 3010: [2941](https://github.com/hackforla/website/issues/2941#event-6324038138) at 2022-03-29 12:18 AM PDT -SAUMILDHANKAR,2022-03-29T21:45:12Z,- SAUMILDHANKAR submitted pull request review: [2988](https://github.com/hackforla/website/pull/2988#pullrequestreview-925272396) at 2022-03-29 02:45 PM PDT -SAUMILDHANKAR,2022-03-29T22:57:21Z,- SAUMILDHANKAR commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1082448809) at 2022-03-29 03:57 PM PDT -SAUMILDHANKAR,2022-03-29T23:22:20Z,- SAUMILDHANKAR closed issue by PR 2988: [2656](https://github.com/hackforla/website/issues/2656#event-6330580575) at 2022-03-29 04:22 PM PDT -SAUMILDHANKAR,2022-03-30T00:29:42Z,- SAUMILDHANKAR commented on issue: [2699](https://github.com/hackforla/website/issues/2699#issuecomment-1082495688) at 2022-03-29 05:29 PM PDT -SAUMILDHANKAR,2022-03-31T00:29:42Z,- SAUMILDHANKAR assigned to issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1058768426) at 2022-03-30 05:29 PM PDT -SAUMILDHANKAR,2022-03-31T23:33:32Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1085230693) at 2022-03-31 04:33 PM PDT -SAUMILDHANKAR,2022-04-01T23:54:49Z,- SAUMILDHANKAR submitted pull request review: [2790](https://github.com/hackforla/website/pull/2790#pullrequestreview-929490868) at 2022-04-01 04:54 PM PDT -SAUMILDHANKAR,2022-04-01T23:56:15Z,- SAUMILDHANKAR closed issue by PR 2790: [2384](https://github.com/hackforla/website/issues/2384#event-6355881381) at 2022-04-01 04:56 PM PDT -SAUMILDHANKAR,2022-04-02T17:01:17Z,- SAUMILDHANKAR submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-929587523) at 2022-04-02 10:01 AM PDT -SAUMILDHANKAR,2022-04-02T20:30:34Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1086717380) at 2022-04-02 01:30 PM PDT -SAUMILDHANKAR,2022-04-02T20:39:16Z,- SAUMILDHANKAR commented on issue: [2840](https://github.com/hackforla/website/issues/2840#issuecomment-1086718673) at 2022-04-02 01:39 PM PDT -SAUMILDHANKAR,2022-04-02T20:51:48Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1086720533) at 2022-04-02 01:51 PM PDT -SAUMILDHANKAR,2022-04-02T20:53:26Z,- SAUMILDHANKAR commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1086720967) at 2022-04-02 01:53 PM PDT -SAUMILDHANKAR,2022-04-02T21:03:50Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1086723765) at 2022-04-02 02:03 PM PDT -SAUMILDHANKAR,2022-04-02T21:38:51Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1086728798) at 2022-04-02 02:38 PM PDT -SAUMILDHANKAR,2022-04-03T16:20:25Z,- SAUMILDHANKAR opened issue: [3031](https://github.com/hackforla/website/issues/3031) at 2022-04-03 09:20 AM PDT -SAUMILDHANKAR,2022-04-04T23:12:04Z,- SAUMILDHANKAR commented on pull request: [3033](https://github.com/hackforla/website/pull/3033#issuecomment-1088103509) at 2022-04-04 04:12 PM PDT -SAUMILDHANKAR,2022-04-04T23:52:52Z,- SAUMILDHANKAR submitted pull request review: [3033](https://github.com/hackforla/website/pull/3033#pullrequestreview-931072417) at 2022-04-04 04:52 PM PDT -SAUMILDHANKAR,2022-04-05T15:24:00Z,- SAUMILDHANKAR closed issue by PR 3030: [2669](https://github.com/hackforla/website/issues/2669#event-6372241803) at 2022-04-05 08:24 AM PDT -SAUMILDHANKAR,2022-04-05T17:06:27Z,- SAUMILDHANKAR closed issue by PR 3029: [2641](https://github.com/hackforla/website/issues/2641#event-6373198259) at 2022-04-05 10:06 AM PDT -SAUMILDHANKAR,2022-04-05T22:29:37Z,- SAUMILDHANKAR commented on issue: [3018](https://github.com/hackforla/website/issues/3018#issuecomment-1089447945) at 2022-04-05 03:29 PM PDT -SAUMILDHANKAR,2022-04-07T04:29:43Z,- SAUMILDHANKAR commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1091067966) at 2022-04-06 09:29 PM PDT -SAUMILDHANKAR,2022-04-08T09:12:26Z,- SAUMILDHANKAR commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1092633955) at 2022-04-08 02:12 AM PDT -SAUMILDHANKAR,2022-04-09T16:22:48Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1094078446) at 2022-04-09 09:22 AM PDT -SAUMILDHANKAR,2022-04-09T16:27:42Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1094079329) at 2022-04-09 09:27 AM PDT -SAUMILDHANKAR,2022-04-09T16:33:57Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1094080345) at 2022-04-09 09:33 AM PDT -SAUMILDHANKAR,2022-04-09T16:39:20Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1094081230) at 2022-04-09 09:39 AM PDT -SAUMILDHANKAR,2022-04-09T16:45:38Z,- SAUMILDHANKAR commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1094082402) at 2022-04-09 09:45 AM PDT -SAUMILDHANKAR,2022-04-09T17:00:59Z,- SAUMILDHANKAR commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1094085497) at 2022-04-09 10:00 AM PDT -SAUMILDHANKAR,2022-04-09T17:04:19Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1094086159) at 2022-04-09 10:04 AM PDT -SAUMILDHANKAR,2022-04-09T19:08:55Z,- SAUMILDHANKAR assigned to issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1090728357) at 2022-04-09 12:08 PM PDT -SAUMILDHANKAR,2022-04-09T21:44:26Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1094128935) at 2022-04-09 02:44 PM PDT -SAUMILDHANKAR,2022-04-10T00:53:27Z,- SAUMILDHANKAR commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-1094150389) at 2022-04-09 05:53 PM PDT -SAUMILDHANKAR,2022-04-10T01:57:57Z,- SAUMILDHANKAR commented on issue: [2746](https://github.com/hackforla/website/issues/2746#issuecomment-1094157625) at 2022-04-09 06:57 PM PDT -SAUMILDHANKAR,2022-04-10T03:26:45Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1094167387) at 2022-04-09 08:26 PM PDT -SAUMILDHANKAR,2022-04-10T20:17:56Z,- SAUMILDHANKAR commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1094361275) at 2022-04-10 01:17 PM PDT -SAUMILDHANKAR,2022-04-11T22:43:53Z,- SAUMILDHANKAR commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1095662309) at 2022-04-11 03:43 PM PDT -SAUMILDHANKAR,2022-04-11T23:52:13Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-938718175) at 2022-04-11 04:52 PM PDT -SAUMILDHANKAR,2022-04-12T01:21:45Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-938758566) at 2022-04-11 06:21 PM PDT -SAUMILDHANKAR,2022-04-12T01:39:27Z,- SAUMILDHANKAR commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1095791689) at 2022-04-11 06:39 PM PDT -SAUMILDHANKAR,2022-04-12T01:51:35Z,- SAUMILDHANKAR commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1095806899) at 2022-04-11 06:51 PM PDT -SAUMILDHANKAR,2022-04-12T17:23:39Z,- SAUMILDHANKAR commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1096994570) at 2022-04-12 10:23 AM PDT -SAUMILDHANKAR,2022-04-12T17:33:06Z,- SAUMILDHANKAR commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1097001998) at 2022-04-12 10:33 AM PDT -SAUMILDHANKAR,2022-04-12T19:44:47Z,- SAUMILDHANKAR commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1097144871) at 2022-04-12 12:44 PM PDT -SAUMILDHANKAR,2022-04-12T19:53:14Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-940072268) at 2022-04-12 12:53 PM PDT -SAUMILDHANKAR,2022-04-12T19:55:22Z,- SAUMILDHANKAR commented on issue: [2711](https://github.com/hackforla/website/issues/2711#issuecomment-1097154191) at 2022-04-12 12:55 PM PDT -SAUMILDHANKAR,2022-04-13T01:21:06Z,- SAUMILDHANKAR submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-940301924) at 2022-04-12 06:21 PM PDT -SAUMILDHANKAR,2022-04-13T01:23:11Z,- SAUMILDHANKAR closed issue by PR 3036: [2711](https://github.com/hackforla/website/issues/2711#event-6423580890) at 2022-04-12 06:23 PM PDT -SAUMILDHANKAR,2022-04-14T21:35:38Z,- SAUMILDHANKAR commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1099649122) at 2022-04-14 02:35 PM PDT -SAUMILDHANKAR,2022-04-15T01:16:44Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1099766894) at 2022-04-14 06:16 PM PDT -SAUMILDHANKAR,2022-04-16T01:41:49Z,- SAUMILDHANKAR commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1100501917) at 2022-04-15 06:41 PM PDT -SAUMILDHANKAR,2022-04-16T04:06:36Z,- SAUMILDHANKAR commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1100561675) at 2022-04-15 09:06 PM PDT -SAUMILDHANKAR,2022-04-16T08:20:58Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1100605057) at 2022-04-16 01:20 AM PDT -SAUMILDHANKAR,2022-04-16T08:47:18Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1100610368) at 2022-04-16 01:47 AM PDT -SAUMILDHANKAR,2022-04-16T19:29:09Z,- SAUMILDHANKAR commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1100738578) at 2022-04-16 12:29 PM PDT -SAUMILDHANKAR,2022-04-16T19:42:23Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1100741810) at 2022-04-16 12:42 PM PDT -SAUMILDHANKAR,2022-04-16T19:53:59Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1100743800) at 2022-04-16 12:53 PM PDT -SAUMILDHANKAR,2022-04-16T19:58:08Z,- SAUMILDHANKAR commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1100744857) at 2022-04-16 12:58 PM PDT -SAUMILDHANKAR,2022-04-16T20:09:18Z,- SAUMILDHANKAR commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1100747716) at 2022-04-16 01:09 PM PDT -SAUMILDHANKAR,2022-04-16T20:16:42Z,- SAUMILDHANKAR commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1100748506) at 2022-04-16 01:16 PM PDT -SAUMILDHANKAR,2022-04-16T20:26:12Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1100749722) at 2022-04-16 01:26 PM PDT -SAUMILDHANKAR,2022-04-16T20:32:44Z,- SAUMILDHANKAR commented on issue: [2985](https://github.com/hackforla/website/issues/2985#issuecomment-1100750505) at 2022-04-16 01:32 PM PDT -SAUMILDHANKAR,2022-04-16T21:35:33Z,- SAUMILDHANKAR commented on issue: [3048](https://github.com/hackforla/website/issues/3048#issuecomment-1100758330) at 2022-04-16 02:35 PM PDT -SAUMILDHANKAR,2022-04-16T21:42:56Z,- SAUMILDHANKAR commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1100759283) at 2022-04-16 02:42 PM PDT -SAUMILDHANKAR,2022-04-16T22:33:54Z,- SAUMILDHANKAR commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1100764836) at 2022-04-16 03:33 PM PDT -SAUMILDHANKAR,2022-04-17T00:15:06Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1100775310) at 2022-04-16 05:15 PM PDT -SAUMILDHANKAR,2022-04-17T08:06:23Z,- SAUMILDHANKAR commented on issue: [2689](https://github.com/hackforla/website/issues/2689#issuecomment-1100827967) at 2022-04-17 01:06 AM PDT -SAUMILDHANKAR,2022-04-19T00:41:32Z,- SAUMILDHANKAR commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1101884636) at 2022-04-18 05:41 PM PDT -SAUMILDHANKAR,2022-04-19T01:12:47Z,- SAUMILDHANKAR commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1101897759) at 2022-04-18 06:12 PM PDT -SAUMILDHANKAR,2022-04-19T01:38:25Z,- SAUMILDHANKAR commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1101908974) at 2022-04-18 06:38 PM PDT -SAUMILDHANKAR,2022-04-21T00:53:43Z,- SAUMILDHANKAR commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1104596725) at 2022-04-20 05:53 PM PDT -SAUMILDHANKAR,2022-04-21T01:00:12Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1104603537) at 2022-04-20 06:00 PM PDT -SAUMILDHANKAR,2022-04-21T23:17:14Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1105847267) at 2022-04-21 04:17 PM PDT -SAUMILDHANKAR,2022-04-23T06:36:55Z,- SAUMILDHANKAR commented on issue: [3052](https://github.com/hackforla/website/issues/3052#issuecomment-1107395212) at 2022-04-22 11:36 PM PDT -SAUMILDHANKAR,2022-04-23T06:36:55Z,- SAUMILDHANKAR closed issue as completed: [3052](https://github.com/hackforla/website/issues/3052#event-6483708413) at 2022-04-22 11:36 PM PDT -SAUMILDHANKAR,2022-04-23T21:03:35Z,- SAUMILDHANKAR commented on issue: [2701](https://github.com/hackforla/website/issues/2701#issuecomment-1107649160) at 2022-04-23 02:03 PM PDT -SAUMILDHANKAR,2022-04-23T21:07:48Z,- SAUMILDHANKAR commented on issue: [2940](https://github.com/hackforla/website/issues/2940#issuecomment-1107649688) at 2022-04-23 02:07 PM PDT -SAUMILDHANKAR,2022-04-23T21:24:21Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1107651591) at 2022-04-23 02:24 PM PDT -SAUMILDHANKAR,2022-04-26T02:15:48Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1109226663) at 2022-04-25 07:15 PM PDT -SAUMILDHANKAR,2022-04-27T00:54:30Z,- SAUMILDHANKAR commented on issue: [3009](https://github.com/hackforla/website/issues/3009#issuecomment-1110400916) at 2022-04-26 05:54 PM PDT -SAUMILDHANKAR,2022-04-27T00:59:21Z,- SAUMILDHANKAR commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1110410573) at 2022-04-26 05:59 PM PDT -SAUMILDHANKAR,2022-04-27T01:04:21Z,- SAUMILDHANKAR commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1110419089) at 2022-04-26 06:04 PM PDT -SAUMILDHANKAR,2022-04-27T01:07:26Z,- SAUMILDHANKAR commented on issue: [3055](https://github.com/hackforla/website/issues/3055#issuecomment-1110423183) at 2022-04-26 06:07 PM PDT -SAUMILDHANKAR,2022-04-27T01:14:14Z,- SAUMILDHANKAR commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1110426378) at 2022-04-26 06:14 PM PDT -SAUMILDHANKAR,2022-04-27T01:18:14Z,- SAUMILDHANKAR commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1110428347) at 2022-04-26 06:18 PM PDT -SAUMILDHANKAR,2022-04-28T23:33:58Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1112747257) at 2022-04-28 04:33 PM PDT -SAUMILDHANKAR,2022-04-30T19:20:23Z,- SAUMILDHANKAR commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1114040313) at 2022-04-30 12:20 PM PDT -SAUMILDHANKAR,2022-04-30T20:07:15Z,- SAUMILDHANKAR commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1114046531) at 2022-04-30 01:07 PM PDT -SAUMILDHANKAR,2022-05-02T00:10:06Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1114375181) at 2022-05-01 05:10 PM PDT -SAUMILDHANKAR,2022-05-02T03:01:24Z,- SAUMILDHANKAR commented on issue: [3068](https://github.com/hackforla/website/issues/3068#issuecomment-1114448176) at 2022-05-01 08:01 PM PDT -SAUMILDHANKAR,2022-05-02T23:30:43Z,- SAUMILDHANKAR opened issue: [3088](https://github.com/hackforla/website/issues/3088) at 2022-05-02 04:30 PM PDT -SAUMILDHANKAR,2022-05-03T00:18:49Z,- SAUMILDHANKAR opened issue: [3089](https://github.com/hackforla/website/issues/3089) at 2022-05-02 05:18 PM PDT -SAUMILDHANKAR,2022-05-03T20:05:46Z,- SAUMILDHANKAR opened issue: [3090](https://github.com/hackforla/website/issues/3090) at 2022-05-03 01:05 PM PDT -SAUMILDHANKAR,2022-05-03T22:29:38Z,- SAUMILDHANKAR opened issue: [3091](https://github.com/hackforla/website/issues/3091) at 2022-05-03 03:29 PM PDT -SAUMILDHANKAR,2022-05-03T23:20:29Z,- SAUMILDHANKAR opened issue: [3092](https://github.com/hackforla/website/issues/3092) at 2022-05-03 04:20 PM PDT -SAUMILDHANKAR,2022-05-03T23:36:05Z,- SAUMILDHANKAR opened issue: [3093](https://github.com/hackforla/website/issues/3093) at 2022-05-03 04:36 PM PDT -SAUMILDHANKAR,2022-05-03T23:48:46Z,- SAUMILDHANKAR opened issue: [3094](https://github.com/hackforla/website/issues/3094) at 2022-05-03 04:48 PM PDT -SAUMILDHANKAR,2022-05-03T23:55:07Z,- SAUMILDHANKAR opened issue: [3095](https://github.com/hackforla/website/issues/3095) at 2022-05-03 04:55 PM PDT -SAUMILDHANKAR,2022-05-04T00:05:38Z,- SAUMILDHANKAR opened issue: [3096](https://github.com/hackforla/website/issues/3096) at 2022-05-03 05:05 PM PDT -SAUMILDHANKAR,2022-05-04T00:12:16Z,- SAUMILDHANKAR opened issue: [3097](https://github.com/hackforla/website/issues/3097) at 2022-05-03 05:12 PM PDT -SAUMILDHANKAR,2022-05-04T00:22:47Z,- SAUMILDHANKAR opened issue: [3098](https://github.com/hackforla/website/issues/3098) at 2022-05-03 05:22 PM PDT -SAUMILDHANKAR,2022-05-04T00:31:04Z,- SAUMILDHANKAR opened issue: [3099](https://github.com/hackforla/website/issues/3099) at 2022-05-03 05:31 PM PDT -SAUMILDHANKAR,2022-05-04T00:44:59Z,- SAUMILDHANKAR opened issue: [3100](https://github.com/hackforla/website/issues/3100) at 2022-05-03 05:44 PM PDT -SAUMILDHANKAR,2022-05-04T01:21:40Z,- SAUMILDHANKAR opened issue: [3101](https://github.com/hackforla/website/issues/3101) at 2022-05-03 06:21 PM PDT -SAUMILDHANKAR,2022-05-04T01:29:03Z,- SAUMILDHANKAR opened issue: [3102](https://github.com/hackforla/website/issues/3102) at 2022-05-03 06:29 PM PDT -SAUMILDHANKAR,2022-05-04T01:34:45Z,- SAUMILDHANKAR opened issue: [3103](https://github.com/hackforla/website/issues/3103) at 2022-05-03 06:34 PM PDT -SAUMILDHANKAR,2022-05-04T01:40:42Z,- SAUMILDHANKAR opened issue: [3104](https://github.com/hackforla/website/issues/3104) at 2022-05-03 06:40 PM PDT -SAUMILDHANKAR,2022-05-04T01:46:47Z,- SAUMILDHANKAR opened issue: [3105](https://github.com/hackforla/website/issues/3105) at 2022-05-03 06:46 PM PDT -SAUMILDHANKAR,2022-05-04T01:53:29Z,- SAUMILDHANKAR opened issue: [3106](https://github.com/hackforla/website/issues/3106) at 2022-05-03 06:53 PM PDT -SAUMILDHANKAR,2022-05-04T01:58:33Z,- SAUMILDHANKAR opened issue: [3107](https://github.com/hackforla/website/issues/3107) at 2022-05-03 06:58 PM PDT -SAUMILDHANKAR,2022-05-04T06:37:18Z,- SAUMILDHANKAR commented on issue: [2570](https://github.com/hackforla/website/issues/2570#issuecomment-1116975337) at 2022-05-03 11:37 PM PDT -SAUMILDHANKAR,2022-05-06T21:33:32Z,- SAUMILDHANKAR opened issue: [3109](https://github.com/hackforla/website/issues/3109) at 2022-05-06 02:33 PM PDT -SAUMILDHANKAR,2022-05-06T22:12:03Z,- SAUMILDHANKAR opened issue: [3110](https://github.com/hackforla/website/issues/3110) at 2022-05-06 03:12 PM PDT -SAUMILDHANKAR,2022-05-07T01:25:21Z,- SAUMILDHANKAR opened issue: [3111](https://github.com/hackforla/website/issues/3111) at 2022-05-06 06:25 PM PDT -SAUMILDHANKAR,2022-05-07T01:51:33Z,- SAUMILDHANKAR opened issue: [3112](https://github.com/hackforla/website/issues/3112) at 2022-05-06 06:51 PM PDT -SAUMILDHANKAR,2022-05-07T02:07:05Z,- SAUMILDHANKAR commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1120110380) at 2022-05-06 07:07 PM PDT -SAUMILDHANKAR,2022-05-07T02:16:28Z,- SAUMILDHANKAR commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1120112205) at 2022-05-06 07:16 PM PDT -SAUMILDHANKAR,2022-05-07T15:51:24Z,- SAUMILDHANKAR closed issue as completed: [2940](https://github.com/hackforla/website/issues/2940#event-6567633238) at 2022-05-07 08:51 AM PDT -SAUMILDHANKAR,2022-05-07T15:58:40Z,- SAUMILDHANKAR commented on issue: [2173](https://github.com/hackforla/website/issues/2173#issuecomment-1120232514) at 2022-05-07 08:58 AM PDT -SAUMILDHANKAR,2022-05-07T16:11:50Z,- SAUMILDHANKAR commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1120234602) at 2022-05-07 09:11 AM PDT -SAUMILDHANKAR,2022-05-07T16:20:24Z,- SAUMILDHANKAR commented on issue: [3004](https://github.com/hackforla/website/issues/3004#issuecomment-1120235756) at 2022-05-07 09:20 AM PDT -SAUMILDHANKAR,2022-05-07T17:04:58Z,- SAUMILDHANKAR commented on issue: [3054](https://github.com/hackforla/website/issues/3054#issuecomment-1120241974) at 2022-05-07 10:04 AM PDT -SAUMILDHANKAR,2022-05-07T17:12:56Z,- SAUMILDHANKAR commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1120243260) at 2022-05-07 10:12 AM PDT -SAUMILDHANKAR,2022-05-07T19:54:30Z,- SAUMILDHANKAR commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1120276911) at 2022-05-07 12:54 PM PDT -SAUMILDHANKAR,2022-05-07T20:16:03Z,- SAUMILDHANKAR commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1120281518) at 2022-05-07 01:16 PM PDT -SAUMILDHANKAR,2022-05-07T20:22:01Z,- SAUMILDHANKAR closed issue as completed: [2985](https://github.com/hackforla/website/issues/2985#event-6567864771) at 2022-05-07 01:22 PM PDT -SAUMILDHANKAR,2022-05-07T20:36:38Z,- SAUMILDHANKAR commented on issue: [2395](https://github.com/hackforla/website/issues/2395#issuecomment-1120285387) at 2022-05-07 01:36 PM PDT -SAUMILDHANKAR,2022-05-07T20:57:46Z,- SAUMILDHANKAR commented on issue: [2221](https://github.com/hackforla/website/issues/2221#issuecomment-1120289117) at 2022-05-07 01:57 PM PDT -SAUMILDHANKAR,2022-05-08T03:39:33Z,- SAUMILDHANKAR closed issue by PR 3108: [2892](https://github.com/hackforla/website/issues/2892#event-6568169460) at 2022-05-07 08:39 PM PDT -SAUMILDHANKAR,2022-05-08T16:02:35Z,- SAUMILDHANKAR commented on pull request: [3057](https://github.com/hackforla/website/pull/3057#issuecomment-1120444143) at 2022-05-08 09:02 AM PDT -SAUMILDHANKAR,2022-05-08T16:06:39Z,- SAUMILDHANKAR commented on issue: [3023](https://github.com/hackforla/website/issues/3023#issuecomment-1120444851) at 2022-05-08 09:06 AM PDT -SAUMILDHANKAR,2022-05-09T23:53:47Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1121694635) at 2022-05-09 04:53 PM PDT -SAUMILDHANKAR,2022-05-11T00:27:51Z,- SAUMILDHANKAR assigned to issue: [2400](https://github.com/hackforla/website/issues/2400#event-6207066669) at 2022-05-10 05:27 PM PDT -SAUMILDHANKAR,2022-05-11T00:29:00Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1123044665) at 2022-05-10 05:29 PM PDT -SAUMILDHANKAR,2022-05-11T00:48:39Z,- SAUMILDHANKAR commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1123056706) at 2022-05-10 05:48 PM PDT -SAUMILDHANKAR,2022-05-11T21:25:31Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1124309530) at 2022-05-11 02:25 PM PDT -SAUMILDHANKAR,2022-05-12T02:35:10Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1124469403) at 2022-05-11 07:35 PM PDT -SAUMILDHANKAR,2022-05-12T15:28:22Z,- SAUMILDHANKAR opened issue: [3132](https://github.com/hackforla/website/issues/3132) at 2022-05-12 08:28 AM PDT -SAUMILDHANKAR,2022-05-13T23:01:30Z,- SAUMILDHANKAR commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1126565335) at 2022-05-13 04:01 PM PDT -SAUMILDHANKAR,2022-05-14T03:12:48Z,- SAUMILDHANKAR opened pull request: [3138](https://github.com/hackforla/website/pull/3138) at 2022-05-13 08:12 PM PDT -SAUMILDHANKAR,2022-05-14T16:02:57Z,- SAUMILDHANKAR commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1126743679) at 2022-05-14 09:02 AM PDT -SAUMILDHANKAR,2022-05-14T16:09:23Z,- SAUMILDHANKAR closed issue by PR 3134: [2934](https://github.com/hackforla/website/issues/2934#event-6610193588) at 2022-05-14 09:09 AM PDT -SAUMILDHANKAR,2022-05-14T16:26:07Z,- SAUMILDHANKAR commented on issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1126770762) at 2022-05-14 09:26 AM PDT -SAUMILDHANKAR,2022-05-14T16:26:07Z,- SAUMILDHANKAR reopened issue: [2934](https://github.com/hackforla/website/issues/2934#issuecomment-1126770762) at 2022-05-14 09:26 AM PDT -SAUMILDHANKAR,2022-05-15T16:13:28Z,- SAUMILDHANKAR commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1126971906) at 2022-05-15 09:13 AM PDT -SAUMILDHANKAR,2022-05-15T16:13:29Z,- SAUMILDHANKAR reopened issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1126971906) at 2022-05-15 09:13 AM PDT -SAUMILDHANKAR,2022-05-15T16:22:14Z,- SAUMILDHANKAR commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1126973282) at 2022-05-15 09:22 AM PDT -SAUMILDHANKAR,2022-05-15T16:25:46Z,- SAUMILDHANKAR commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1126973812) at 2022-05-15 09:25 AM PDT -SAUMILDHANKAR,2022-05-15T16:29:13Z,- SAUMILDHANKAR commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1126974285) at 2022-05-15 09:29 AM PDT -SAUMILDHANKAR,2022-05-15T16:31:40Z,- SAUMILDHANKAR commented on issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1126974601) at 2022-05-15 09:31 AM PDT -SAUMILDHANKAR,2022-05-15T16:32:29Z,- SAUMILDHANKAR commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1126974754) at 2022-05-15 09:32 AM PDT -SAUMILDHANKAR,2022-05-15T16:33:27Z,- SAUMILDHANKAR commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1126974892) at 2022-05-15 09:33 AM PDT -SAUMILDHANKAR,2022-05-16T22:26:34Z,- SAUMILDHANKAR commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1128197909) at 2022-05-16 03:26 PM PDT -SAUMILDHANKAR,2022-05-16T22:38:21Z,- SAUMILDHANKAR commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1128205581) at 2022-05-16 03:38 PM PDT -SAUMILDHANKAR,2022-05-20T02:23:53Z,- SAUMILDHANKAR commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1132386706) at 2022-05-19 07:23 PM PDT -SAUMILDHANKAR,2022-05-20T20:49:07Z,- SAUMILDHANKAR commented on pull request: [3134](https://github.com/hackforla/website/pull/3134#issuecomment-1133358538) at 2022-05-20 01:49 PM PDT -SAUMILDHANKAR,2022-05-20T21:50:25Z,- SAUMILDHANKAR commented on issue: [2953](https://github.com/hackforla/website/issues/2953#issuecomment-1133414539) at 2022-05-20 02:50 PM PDT -SAUMILDHANKAR,2022-05-20T22:16:45Z,- SAUMILDHANKAR commented on issue: [2952](https://github.com/hackforla/website/issues/2952#issuecomment-1133428186) at 2022-05-20 03:16 PM PDT -SAUMILDHANKAR,2022-05-20T22:36:07Z,- SAUMILDHANKAR commented on issue: [1443](https://github.com/hackforla/website/issues/1443#issuecomment-1133438295) at 2022-05-20 03:36 PM PDT -SAUMILDHANKAR,2022-05-20T22:42:36Z,- SAUMILDHANKAR commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1133441180) at 2022-05-20 03:42 PM PDT -SAUMILDHANKAR,2022-05-20T22:57:26Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1133447451) at 2022-05-20 03:57 PM PDT -SAUMILDHANKAR,2022-05-21T00:27:44Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1133481342) at 2022-05-20 05:27 PM PDT -SAUMILDHANKAR,2022-05-23T21:36:03Z,- SAUMILDHANKAR commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1135159397) at 2022-05-23 02:36 PM PDT -SAUMILDHANKAR,2022-05-23T21:44:31Z,- SAUMILDHANKAR commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1135165387) at 2022-05-23 02:44 PM PDT -SAUMILDHANKAR,2022-05-23T22:11:26Z,- SAUMILDHANKAR commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1135187288) at 2022-05-23 03:11 PM PDT -SAUMILDHANKAR,2022-05-24T02:08:06Z,- SAUMILDHANKAR commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1135320797) at 2022-05-23 07:08 PM PDT -SAUMILDHANKAR,2022-05-24T02:27:23Z,- SAUMILDHANKAR commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1135330178) at 2022-05-23 07:27 PM PDT -SAUMILDHANKAR,2022-05-24T03:05:03Z,- SAUMILDHANKAR commented on issue: [3153](https://github.com/hackforla/website/issues/3153#issuecomment-1135349654) at 2022-05-23 08:05 PM PDT -SAUMILDHANKAR,2022-05-24T03:13:10Z,- SAUMILDHANKAR commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1135354190) at 2022-05-23 08:13 PM PDT -SAUMILDHANKAR,2022-05-28T07:05:03Z,- SAUMILDHANKAR commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140190488) at 2022-05-28 12:05 AM PDT -SAUMILDHANKAR,2022-05-28T07:09:08Z,- SAUMILDHANKAR commented on pull request: [3044](https://github.com/hackforla/website/pull/3044#issuecomment-1140191244) at 2022-05-28 12:09 AM PDT -SAUMILDHANKAR,2022-05-28T07:25:32Z,- SAUMILDHANKAR commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1140193735) at 2022-05-28 12:25 AM PDT -SAUMILDHANKAR,2022-05-28T07:37:35Z,- SAUMILDHANKAR closed issue as completed: [3004](https://github.com/hackforla/website/issues/3004#event-6696600415) at 2022-05-28 12:37 AM PDT -SAUMILDHANKAR,2022-05-28T07:42:50Z,- SAUMILDHANKAR closed issue as completed: [3054](https://github.com/hackforla/website/issues/3054#event-6696620009) at 2022-05-28 12:42 AM PDT -SAUMILDHANKAR,2022-05-28T07:49:08Z,- SAUMILDHANKAR commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1140199058) at 2022-05-28 12:49 AM PDT -SAUMILDHANKAR,2022-05-28T07:55:24Z,- SAUMILDHANKAR commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1140200635) at 2022-05-28 12:55 AM PDT -SAUMILDHANKAR,2022-05-28T07:57:58Z,- SAUMILDHANKAR commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1140201050) at 2022-05-28 12:57 AM PDT -SAUMILDHANKAR,2022-05-28T08:04:13Z,- SAUMILDHANKAR commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1140202330) at 2022-05-28 01:04 AM PDT -SAUMILDHANKAR,2022-05-28T08:07:25Z,- SAUMILDHANKAR commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1140203060) at 2022-05-28 01:07 AM PDT -SAUMILDHANKAR,2022-05-28T08:10:12Z,- SAUMILDHANKAR commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1140203721) at 2022-05-28 01:10 AM PDT -SAUMILDHANKAR,2022-05-28T08:15:27Z,- SAUMILDHANKAR commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1140205408) at 2022-05-28 01:15 AM PDT -SAUMILDHANKAR,2022-05-28T08:39:06Z,- SAUMILDHANKAR commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1140212850) at 2022-05-28 01:39 AM PDT -SAUMILDHANKAR,2022-05-28T08:39:06Z,- SAUMILDHANKAR reopened issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1140212850) at 2022-05-28 01:39 AM PDT -SAUMILDHANKAR,2022-05-28T08:45:25Z,- SAUMILDHANKAR commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1140214110) at 2022-05-28 01:45 AM PDT -SAUMILDHANKAR,2022-05-28T08:45:26Z,- SAUMILDHANKAR reopened issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1140214110) at 2022-05-28 01:45 AM PDT -SAUMILDHANKAR,2022-05-28T08:51:46Z,- SAUMILDHANKAR commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1140215046) at 2022-05-28 01:51 AM PDT -SAUMILDHANKAR,2022-05-28T08:59:32Z,- SAUMILDHANKAR commented on issue: [3150](https://github.com/hackforla/website/issues/3150#issuecomment-1140216254) at 2022-05-28 01:59 AM PDT -SAUMILDHANKAR,2022-05-28T09:02:13Z,- SAUMILDHANKAR commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1140216719) at 2022-05-28 02:02 AM PDT -SAUMILDHANKAR,2022-05-28T09:03:28Z,- SAUMILDHANKAR commented on issue: [3127](https://github.com/hackforla/website/issues/3127#issuecomment-1140217016) at 2022-05-28 02:03 AM PDT -SAUMILDHANKAR,2022-05-28T20:12:56Z,- SAUMILDHANKAR commented on issue: [3124](https://github.com/hackforla/website/issues/3124#issuecomment-1140323762) at 2022-05-28 01:12 PM PDT -SAUMILDHANKAR,2022-05-28T20:16:22Z,- SAUMILDHANKAR commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1140324138) at 2022-05-28 01:16 PM PDT -SAUMILDHANKAR,2022-05-28T20:23:36Z,- SAUMILDHANKAR commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1140324851) at 2022-05-28 01:23 PM PDT -SAUMILDHANKAR,2022-05-29T17:46:10Z,- SAUMILDHANKAR commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1140494806) at 2022-05-29 10:46 AM PDT -SAUMILDHANKAR,2022-05-30T00:39:19Z,- SAUMILDHANKAR commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1140561961) at 2022-05-29 05:39 PM PDT -SAUMILDHANKAR,2022-05-30T00:56:44Z,- SAUMILDHANKAR commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1140567867) at 2022-05-29 05:56 PM PDT -SAUMILDHANKAR,2022-05-31T22:29:31Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1142698364) at 2022-05-31 03:29 PM PDT -SAUMILDHANKAR,2022-06-04T22:10:25Z,- SAUMILDHANKAR submitted pull request review: [3219](https://github.com/hackforla/website/pull/3219#pullrequestreview-995958035) at 2022-06-04 03:10 PM PDT -SAUMILDHANKAR,2022-06-04T22:20:07Z,- SAUMILDHANKAR commented on issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1146694050) at 2022-06-04 03:20 PM PDT -SAUMILDHANKAR,2022-06-04T22:20:08Z,- SAUMILDHANKAR reopened issue: [2673](https://github.com/hackforla/website/issues/2673#issuecomment-1146694050) at 2022-06-04 03:20 PM PDT -SAUMILDHANKAR,2022-06-04T23:46:07Z,- SAUMILDHANKAR commented on issue: [2569](https://github.com/hackforla/website/issues/2569#issuecomment-1146704236) at 2022-06-04 04:46 PM PDT -SAUMILDHANKAR,2022-06-04T23:58:37Z,- SAUMILDHANKAR reopened issue: [2246](https://github.com/hackforla/website/issues/2246#event-5287108669) at 2022-06-04 04:58 PM PDT -SAUMILDHANKAR,2022-06-07T07:47:22Z,- SAUMILDHANKAR opened issue: [3227](https://github.com/hackforla/website/issues/3227) at 2022-06-07 12:47 AM PDT -SAUMILDHANKAR,2022-06-07T07:58:44Z,- SAUMILDHANKAR opened issue: [3228](https://github.com/hackforla/website/issues/3228) at 2022-06-07 12:58 AM PDT -SAUMILDHANKAR,2022-06-07T08:09:31Z,- SAUMILDHANKAR opened issue: [3229](https://github.com/hackforla/website/issues/3229) at 2022-06-07 01:09 AM PDT -SAUMILDHANKAR,2022-06-07T08:18:29Z,- SAUMILDHANKAR opened issue: [3230](https://github.com/hackforla/website/issues/3230) at 2022-06-07 01:18 AM PDT -SAUMILDHANKAR,2022-06-11T00:16:43Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1152812079) at 2022-06-10 05:16 PM PDT -SAUMILDHANKAR,2022-06-11T00:34:29Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1152816623) at 2022-06-10 05:34 PM PDT -SAUMILDHANKAR,2022-06-12T19:29:33Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1153269912) at 2022-06-12 12:29 PM PDT -SAUMILDHANKAR,2022-06-14T23:27:45Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1155804132) at 2022-06-14 04:27 PM PDT -SAUMILDHANKAR,2022-06-16T05:53:03Z,- SAUMILDHANKAR commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-1157261207) at 2022-06-15 10:53 PM PDT -SAUMILDHANKAR,2022-06-16T05:57:08Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1157263371) at 2022-06-15 10:57 PM PDT -SAUMILDHANKAR,2022-06-16T07:07:19Z,- SAUMILDHANKAR opened issue: [3255](https://github.com/hackforla/website/issues/3255) at 2022-06-16 12:07 AM PDT -SAUMILDHANKAR,2022-06-20T22:58:46Z,- SAUMILDHANKAR opened issue: [3274](https://github.com/hackforla/website/issues/3274) at 2022-06-20 03:58 PM PDT -SAUMILDHANKAR,2022-06-21T08:24:33Z,- SAUMILDHANKAR commented on issue: [3031](https://github.com/hackforla/website/issues/3031#issuecomment-1161425468) at 2022-06-21 01:24 AM PDT -SAUMILDHANKAR,2022-06-21T08:24:33Z,- SAUMILDHANKAR closed issue as completed: [3031](https://github.com/hackforla/website/issues/3031#event-6845243564) at 2022-06-21 01:24 AM PDT -SAUMILDHANKAR,2022-06-22T23:22:32Z,- SAUMILDHANKAR opened issue: [3290](https://github.com/hackforla/website/issues/3290) at 2022-06-22 04:22 PM PDT -SAUMILDHANKAR,2022-06-25T09:02:45Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1166233864) at 2022-06-25 02:02 AM PDT -SAUMILDHANKAR,2022-06-26T21:54:30Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1166655678) at 2022-06-26 02:54 PM PDT -SAUMILDHANKAR,2022-06-26T23:15:32Z,- SAUMILDHANKAR commented on issue: [3290](https://github.com/hackforla/website/issues/3290#issuecomment-1166674326) at 2022-06-26 04:15 PM PDT -SAUMILDHANKAR,2022-06-26T23:58:47Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1166685375) at 2022-06-26 04:58 PM PDT -SAUMILDHANKAR,2022-07-02T00:11:43Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1172793008) at 2022-07-01 05:11 PM PDT -SAUMILDHANKAR,2022-07-06T02:01:44Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1175692919) at 2022-07-05 07:01 PM PDT -SAUMILDHANKAR,2022-07-06T02:57:49Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1175723620) at 2022-07-05 07:57 PM PDT -SAUMILDHANKAR,2022-07-10T19:55:02Z,- SAUMILDHANKAR commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1179788501) at 2022-07-10 12:55 PM PDT -SAUMILDHANKAR,2022-07-17T09:04:54Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1186452373) at 2022-07-17 02:04 AM PDT -SAUMILDHANKAR,2022-08-01T17:08:48Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1201479063) at 2022-08-01 10:08 AM PDT -SAUMILDHANKAR,2022-08-21T17:21:11Z,- SAUMILDHANKAR commented on issue: [2400](https://github.com/hackforla/website/issues/2400#issuecomment-1221587086) at 2022-08-21 10:21 AM PDT -SAUMILDHANKAR,2022-08-28T20:11:01Z,- SAUMILDHANKAR commented on pull request: [3024](https://github.com/hackforla/website/pull/3024#issuecomment-1229544511) at 2022-08-28 01:11 PM PDT -SAUMILDHANKAR,2022-10-25T09:22:05Z,- SAUMILDHANKAR commented on issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1290249941) at 2022-10-25 02:22 AM PDT -SAUMILDHANKAR,2023-04-23T17:31:02Z,- SAUMILDHANKAR assigned to issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1420153843) at 2023-04-23 10:31 AM PDT -SAUMILDHANKAR,2023-06-27T01:27:18Z,- SAUMILDHANKAR opened pull request: [4886](https://github.com/hackforla/website/pull/4886) at 2023-06-26 06:27 PM PDT -SAUMILDHANKAR,2023-06-28T10:21:32Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1611149980) at 2023-06-28 03:21 AM PDT -SAUMILDHANKAR,2023-06-29T09:06:29Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1612675084) at 2023-06-29 02:06 AM PDT -SAUMILDHANKAR,2023-07-07T11:22:31Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1625265838) at 2023-07-07 04:22 AM PDT -SAUMILDHANKAR,2023-07-08T04:34:23Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1626837286) at 2023-07-07 09:34 PM PDT -SAUMILDHANKAR,2023-07-10T23:43:48Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1629879972) at 2023-07-10 04:43 PM PDT -SAUMILDHANKAR,2023-07-13T00:43:23Z,- SAUMILDHANKAR pull request merged: [4886](https://github.com/hackforla/website/pull/4886#event-9805091305) at 2023-07-12 05:43 PM PDT -SAUMILDHANKAR,2023-07-14T10:23:16Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1635648731) at 2023-07-14 03:23 AM PDT -SAUMILDHANKAR,2023-07-18T01:10:32Z,- SAUMILDHANKAR commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1639123274) at 2023-07-17 06:10 PM PDT -SAUMILDHANKAR,2023-07-18T03:29:31Z,- SAUMILDHANKAR opened issue: [5002](https://github.com/hackforla/website/issues/5002) at 2023-07-17 08:29 PM PDT -SAUMILDHANKAR,2023-07-18T09:49:16Z,- SAUMILDHANKAR commented on issue: [5002](https://github.com/hackforla/website/issues/5002#issuecomment-1639900980) at 2023-07-18 02:49 AM PDT -SAUMILDHANKAR,2023-07-19T12:02:41Z,- SAUMILDHANKAR opened issue: [5033](https://github.com/hackforla/website/issues/5033) at 2023-07-19 05:02 AM PDT -SAUMILDHANKAR,2023-07-20T12:01:50Z,- SAUMILDHANKAR commented on issue: [5033](https://github.com/hackforla/website/issues/5033#issuecomment-1643798299) at 2023-07-20 05:01 AM PDT -saumyashh,2020-12-06T19:17:25Z,- saumyashh commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739549322) at 2020-12-06 11:17 AM PST -sayalikotkar,2021-05-30T17:17:07Z,- sayalikotkar commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-851032307) at 2021-05-30 10:17 AM PDT -sayalikotkar,2021-05-30T17:18:35Z,- sayalikotkar commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-851032524) at 2021-05-30 10:18 AM PDT -sayalikotkar,2021-05-30T17:21:48Z,- sayalikotkar commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:21 AM PDT -sayalikotkar,2021-05-30T17:21:55Z,- sayalikotkar assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:21 AM PDT -sayalikotkar,2021-05-30T17:25:40Z,- sayalikotkar commented on issue: [1608](https://github.com/hackforla/website/issues/1608#issuecomment-851033363) at 2021-05-30 10:25 AM PDT -sayalikotkar,2021-05-30T17:27:31Z,- sayalikotkar closed issue as completed: [1028](https://github.com/hackforla/website/issues/1028#event-4817387295) at 2021-05-30 10:27 AM PDT -sayalikotkar,2021-06-06T17:35:51Z,- sayalikotkar assigned to issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-06-06 10:35 AM PDT -sayalikotkar,2021-06-06T17:35:55Z,- sayalikotkar unassigned from issue: [1673](https://github.com/hackforla/website/issues/1673) at 2021-06-06 10:35 AM PDT -sayalikotkar,2021-06-06T17:36:37Z,- sayalikotkar commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-855434271) at 2021-06-06 10:36 AM PDT -sayalikotkar,2021-06-06T17:44:22Z,- sayalikotkar commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855435299) at 2021-06-06 10:44 AM PDT -sayalikotkar,2021-06-06T17:50:24Z,- sayalikotkar closed issue as completed: [1687](https://github.com/hackforla/website/issues/1687#event-4848435243) at 2021-06-06 10:50 AM PDT -sayalikotkar,2021-06-06T17:53:19Z,- sayalikotkar commented on issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855436590) at 2021-06-06 10:53 AM PDT -sayalikotkar,2021-06-15T19:12:55Z,- sayalikotkar opened issue: [1742](https://github.com/hackforla/website/issues/1742) at 2021-06-15 12:12 PM PDT -sayalikotkar,2021-06-15T19:13:00Z,- sayalikotkar assigned to issue: [1742](https://github.com/hackforla/website/issues/1742) at 2021-06-15 12:13 PM PDT -sayalikotkar,2021-06-20T17:19:04Z,- sayalikotkar commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-864585663) at 2021-06-20 10:19 AM PDT -sayalikotkar,2021-06-20T20:56:26Z,- sayalikotkar assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -sayalikotkar,2021-06-20T22:15:50Z,- sayalikotkar assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -sayalikotkar,2021-06-23T19:33:25Z,- sayalikotkar commented on issue: [1622](https://github.com/hackforla/website/issues/1622#issuecomment-867103750) at 2021-06-23 12:33 PM PDT -sayalikotkar,2021-06-27T17:46:10Z,- sayalikotkar commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-869201144) at 2021-06-27 10:46 AM PDT -sayalikotkar,2021-07-26T02:50:51Z,- sayalikotkar unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-07-25 07:50 PM PDT -sayalikotkar,2021-08-09T23:58:25Z,- sayalikotkar unassigned from issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-895628543) at 2021-08-09 04:58 PM PDT -sayalikotkar,2021-08-12T20:05:00Z,- sayalikotkar unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -sayeedkhannabil,5481,SKILLS ISSUE -sayeedkhannabil,2023-09-12T03:03:40Z,- sayeedkhannabil opened issue: [5481](https://github.com/hackforla/website/issues/5481) at 2023-09-11 08:03 PM PDT -sayeedkhannabil,2023-09-12T03:03:43Z,- sayeedkhannabil assigned to issue: [5481](https://github.com/hackforla/website/issues/5481) at 2023-09-11 08:03 PM PDT -sayeedkhannabil,2023-09-16T23:28:00Z,- sayeedkhannabil assigned to issue: [5324](https://github.com/hackforla/website/issues/5324) at 2023-09-16 04:28 PM PDT -sayeedkhannabil,2023-09-17T05:21:57Z,- sayeedkhannabil commented on issue: [5324](https://github.com/hackforla/website/issues/5324#issuecomment-1722395157) at 2023-09-16 10:21 PM PDT -sayeedkhannabil,2023-09-17T05:31:03Z,- sayeedkhannabil opened pull request: [5545](https://github.com/hackforla/website/pull/5545) at 2023-09-16 10:31 PM PDT -sayeedkhannabil,2023-09-17T06:11:03Z,- sayeedkhannabil pull request closed w/o merging: [5545](https://github.com/hackforla/website/pull/5545#event-10390839981) at 2023-09-16 11:11 PM PDT -sayeedkhannabil,2023-09-17T06:13:14Z,- sayeedkhannabil opened pull request: [5546](https://github.com/hackforla/website/pull/5546) at 2023-09-16 11:13 PM PDT -sayeedkhannabil,2023-09-17T19:20:22Z,- sayeedkhannabil commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722547114) at 2023-09-17 12:20 PM PDT -sayeedkhannabil,2023-09-18T20:40:12Z,- sayeedkhannabil commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1724338959) at 2023-09-18 01:40 PM PDT -sayeedkhannabil,2023-09-19T06:45:02Z,- sayeedkhannabil commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1724919688) at 2023-09-18 11:45 PM PDT -sayeedkhannabil,2023-09-26T04:39:20Z,- sayeedkhannabil pull request merged: [5546](https://github.com/hackforla/website/pull/5546#event-10469846670) at 2023-09-25 09:39 PM PDT -sayeedkhannabil,2023-10-08T17:19:32Z,- sayeedkhannabil closed issue as completed: [5481](https://github.com/hackforla/website/issues/5481#event-10584740660) at 2023-10-08 10:19 AM PDT -scarter31191,2937,SKILLS ISSUE -scarter31191,2022-03-08T03:59:09Z,- scarter31191 opened issue: [2937](https://github.com/hackforla/website/issues/2937) at 2022-03-07 07:59 PM PST -scarter31191,2022-03-09T04:06:50Z,- scarter31191 assigned to issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1061380867) at 2022-03-08 08:06 PM PST -scarter31191,2022-03-10T05:24:22Z,- scarter31191 assigned to issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1059946186) at 2022-03-09 09:24 PM PST -scarter31191,2022-03-11T03:38:00Z,- scarter31191 commented on issue: [2720](https://github.com/hackforla/website/issues/2720#issuecomment-1064740927) at 2022-03-10 07:38 PM PST -scarter31191,2022-03-13T03:53:12Z,- scarter31191 opened pull request: [2973](https://github.com/hackforla/website/pull/2973) at 2022-03-12 08:53 PM PDT -scarter31191,2022-03-13T17:31:02Z,- scarter31191 commented on pull request: [2970](https://github.com/hackforla/website/pull/2970#issuecomment-1066146997) at 2022-03-13 10:31 AM PDT -scarter31191,2022-03-14T04:07:33Z,- scarter31191 submitted pull request review: [2970](https://github.com/hackforla/website/pull/2970#pullrequestreview-908275985) at 2022-03-13 09:07 PM PDT -scarter31191,2022-03-14T04:20:14Z,- scarter31191 closed issue as completed: [2272](https://github.com/hackforla/website/issues/2272#event-6232468901) at 2022-03-13 09:20 PM PDT -scarter31191,2022-03-14T04:20:23Z,- scarter31191 reopened issue: [2272](https://github.com/hackforla/website/issues/2272#event-6232468901) at 2022-03-13 09:20 PM PDT -scarter31191,2022-03-14T04:26:55Z,- scarter31191 assigned to issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-926945747) at 2022-03-13 09:26 PM PDT -scarter31191,2022-03-14T04:33:22Z,- scarter31191 commented on issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-1066331268) at 2022-03-13 09:33 PM PDT -scarter31191,2022-03-15T02:45:38Z,- scarter31191 commented on issue: [2271](https://github.com/hackforla/website/issues/2271#issuecomment-1067505091) at 2022-03-14 07:45 PM PDT -scarter31191,2022-03-15T21:17:16Z,- scarter31191 pull request merged: [2973](https://github.com/hackforla/website/pull/2973#event-6246521304) at 2022-03-15 02:17 PM PDT -scarter31191,2022-03-16T03:53:14Z,- scarter31191 opened pull request: [2986](https://github.com/hackforla/website/pull/2986) at 2022-03-15 08:53 PM PDT -scarter31191,2022-03-17T02:38:25Z,- scarter31191 commented on pull request: [2986](https://github.com/hackforla/website/pull/2986#issuecomment-1069938719) at 2022-03-16 07:38 PM PDT -scarter31191,2022-03-18T15:24:16Z,- scarter31191 pull request merged: [2986](https://github.com/hackforla/website/pull/2986#event-6266965171) at 2022-03-18 08:24 AM PDT -scarter31191,2022-03-25T01:14:32Z,- scarter31191 assigned to issue: [2942](https://github.com/hackforla/website/issues/2942#issuecomment-1062079991) at 2022-03-24 06:14 PM PDT -scarter31191,2022-03-25T01:15:12Z,- scarter31191 commented on issue: [2942](https://github.com/hackforla/website/issues/2942#issuecomment-1078559721) at 2022-03-24 06:15 PM PDT -scarter31191,2022-03-26T02:01:56Z,- scarter31191 opened pull request: [3013](https://github.com/hackforla/website/pull/3013) at 2022-03-25 07:01 PM PDT -scarter31191,2022-03-26T15:12:55Z,- scarter31191 pull request merged: [3013](https://github.com/hackforla/website/pull/3013#event-6311976079) at 2022-03-26 08:12 AM PDT -scarter31191,2022-03-26T15:48:31Z,- scarter31191 commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079719954) at 2022-03-26 08:48 AM PDT -scarter31191,2022-03-26T16:22:33Z,- scarter31191 assigned to issue: [2902](https://github.com/hackforla/website/issues/2902#issuecomment-1053998283) at 2022-03-26 09:22 AM PDT -scarter31191,2022-03-26T16:54:36Z,- scarter31191 opened pull request: [3015](https://github.com/hackforla/website/pull/3015) at 2022-03-26 09:54 AM PDT -scarter31191,2022-03-26T21:28:19Z,- scarter31191 commented on issue: [2937](https://github.com/hackforla/website/issues/2937#issuecomment-1079777951) at 2022-03-26 02:28 PM PDT -scarter31191,2022-03-27T02:14:09Z,- scarter31191 commented on pull request: [3012](https://github.com/hackforla/website/pull/3012#issuecomment-1079817233) at 2022-03-26 07:14 PM PDT -scarter31191,2022-03-27T02:17:27Z,- scarter31191 submitted pull request review: [3012](https://github.com/hackforla/website/pull/3012#pullrequestreview-922389396) at 2022-03-26 07:17 PM PDT -scarter31191,2022-03-27T23:40:16Z,- scarter31191 commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080045464) at 2022-03-27 04:40 PM PDT -scarter31191,2022-03-28T00:00:17Z,- scarter31191 commented on pull request: [3015](https://github.com/hackforla/website/pull/3015#issuecomment-1080048730) at 2022-03-27 05:00 PM PDT -scarter31191,2022-03-28T01:30:25Z,- scarter31191 commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1080089094) at 2022-03-27 06:30 PM PDT -scarter31191,2022-03-28T02:29:11Z,- scarter31191 submitted pull request review: [3017](https://github.com/hackforla/website/pull/3017#pullrequestreview-922558097) at 2022-03-27 07:29 PM PDT -scarter31191,2022-03-29T01:42:33Z,- scarter31191 pull request merged: [3015](https://github.com/hackforla/website/pull/3015#event-6322778666) at 2022-03-28 06:42 PM PDT -scarter31191,2022-03-30T02:40:05Z,- scarter31191 commented on pull request: [3020](https://github.com/hackforla/website/pull/3020#issuecomment-1082560210) at 2022-03-29 07:40 PM PDT -scarter31191,2022-04-01T02:02:19Z,- scarter31191 assigned to issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1001218168) at 2022-03-31 07:02 PM PDT -scarter31191,2022-04-01T02:05:44Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1085328985) at 2022-03-31 07:05 PM PDT -scarter31191,2022-04-09T03:47:55Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1093650832) at 2022-04-08 08:47 PM PDT -scarter31191,2022-04-14T02:46:45Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1098655834) at 2022-04-13 07:46 PM PDT -scarter31191,2022-04-17T17:54:29Z,- scarter31191 closed issue as completed: [2937](https://github.com/hackforla/website/issues/2937#event-6444851170) at 2022-04-17 10:54 AM PDT -scarter31191,2022-06-14T03:13:07Z,- scarter31191 commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1154661785) at 2022-06-13 08:13 PM PDT -scarter31191,2023-01-08T18:34:07Z,- scarter31191 unassigned from issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1166596854) at 2023-01-08 10:34 AM PST -scorbz9,3148,SKILLS ISSUE -scorbz9,2022-05-17T02:52:13Z,- scorbz9 opened issue: [3148](https://github.com/hackforla/website/issues/3148) at 2022-05-16 07:52 PM PDT -scorbz9,2022-05-18T01:38:38Z,- scorbz9 assigned to issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1128350763) at 2022-05-17 06:38 PM PDT -scorbz9,2022-05-18T20:49:30Z,- scorbz9 assigned to issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1001466319) at 2022-05-18 01:49 PM PDT -scorbz9,2022-05-18T22:15:53Z,- scorbz9 opened pull request: [3158](https://github.com/hackforla/website/pull/3158) at 2022-05-18 03:15 PM PDT -scorbz9,2022-05-18T22:19:33Z,- scorbz9 commented on issue: [2633](https://github.com/hackforla/website/issues/2633#issuecomment-1130620460) at 2022-05-18 03:19 PM PDT -scorbz9,2022-05-20T02:48:09Z,- scorbz9 pull request merged: [3158](https://github.com/hackforla/website/pull/3158#event-6647159830) at 2022-05-19 07:48 PM PDT -scorbz9,2022-05-23T18:06:14Z,- scorbz9 commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1134980519) at 2022-05-23 11:06 AM PDT -scorbz9,2022-05-23T18:32:43Z,- scorbz9 assigned to issue: [2920](https://github.com/hackforla/website/issues/2920#issuecomment-1058569011) at 2022-05-23 11:32 AM PDT -scorbz9,2022-05-23T18:45:52Z,- scorbz9 opened pull request: [3169](https://github.com/hackforla/website/pull/3169) at 2022-05-23 11:45 AM PDT -scorbz9,2022-05-24T02:23:37Z,- scorbz9 pull request merged: [3169](https://github.com/hackforla/website/pull/3169#event-6665257586) at 2022-05-23 07:23 PM PDT -scorbz9,2022-05-24T02:35:21Z,- scorbz9 commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1135333855) at 2022-05-23 07:35 PM PDT -scorbz9,2022-05-24T19:36:25Z,- scorbz9 assigned to issue: [2928](https://github.com/hackforla/website/issues/2928#issuecomment-1059822554) at 2022-05-24 12:36 PM PDT -scorbz9,2022-05-24T19:58:50Z,- scorbz9 opened pull request: [3174](https://github.com/hackforla/website/pull/3174) at 2022-05-24 12:58 PM PDT -scorbz9,2022-05-27T12:52:01Z,- scorbz9 pull request merged: [3174](https://github.com/hackforla/website/pull/3174#event-6692379500) at 2022-05-27 05:52 AM PDT -scorbz9,2022-06-04T22:57:53Z,- scorbz9 assigned to issue: [2097](https://github.com/hackforla/website/issues/2097) at 2022-06-04 03:57 PM PDT -scorbz9,2022-06-04T22:59:13Z,- scorbz9 commented on issue: [2097](https://github.com/hackforla/website/issues/2097#issuecomment-1146697890) at 2022-06-04 03:59 PM PDT -scorbz9,2022-06-06T20:34:57Z,- scorbz9 opened pull request: [3225](https://github.com/hackforla/website/pull/3225) at 2022-06-06 01:34 PM PDT -scorbz9,2022-06-20T18:58:57Z,- scorbz9 commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1160756101) at 2022-06-20 11:58 AM PDT -scorbz9,2022-06-24T22:36:11Z,- scorbz9 closed issue as completed: [3148](https://github.com/hackforla/website/issues/3148#event-6877132649) at 2022-06-24 03:36 PM PDT -scorbz9,2022-06-30T00:53:30Z,- scorbz9 commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1170634526) at 2022-06-29 05:53 PM PDT -scorbz9,2022-06-30T00:56:19Z,- scorbz9 commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1170636164) at 2022-06-29 05:56 PM PDT -scorbz9,2022-06-30T00:56:38Z,- scorbz9 closed issue as completed: [3148](https://github.com/hackforla/website/issues/3148#event-6906702534) at 2022-06-29 05:56 PM PDT -scorbz9,2022-07-02T00:22:47Z,- scorbz9 pull request merged: [3225](https://github.com/hackforla/website/pull/3225#event-6921512923) at 2022-07-01 05:22 PM PDT -sdimran,2022-07-07T21:09:26Z,- sdimran opened issue: [3339](https://github.com/hackforla/website/issues/3339) at 2022-07-07 02:09 PM PDT -sdimran,2022-07-07T21:15:33Z,- sdimran commented on issue: [3339](https://github.com/hackforla/website/issues/3339#issuecomment-1178240374) at 2022-07-07 02:15 PM PDT -se7en-illa,4314,SKILLS ISSUE -se7en-illa,2023-03-29T03:17:08Z,- se7en-illa opened issue: [4314](https://github.com/hackforla/website/issues/4314) at 2023-03-28 08:17 PM PDT -se7en-illa,2023-03-29T03:18:43Z,- se7en-illa assigned to issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1487889017) at 2023-03-28 08:18 PM PDT -se7en-illa,2023-04-01T02:30:02Z,- se7en-illa assigned to issue: [4354](https://github.com/hackforla/website/issues/4354) at 2023-03-31 07:30 PM PDT -se7en-illa,2023-04-01T02:30:16Z,- se7en-illa unassigned from issue: [4354](https://github.com/hackforla/website/issues/4354) at 2023-03-31 07:30 PM PDT -se7en-illa,2023-04-05T16:43:49Z,- se7en-illa assigned to issue: [4395](https://github.com/hackforla/website/issues/4395) at 2023-04-05 09:43 AM PDT -se7en-illa,2023-04-06T03:20:31Z,- se7en-illa commented on issue: [4395](https://github.com/hackforla/website/issues/4395#issuecomment-1498437570) at 2023-04-05 08:20 PM PDT -se7en-illa,2023-04-06T16:46:48Z,- se7en-illa opened pull request: [4430](https://github.com/hackforla/website/pull/4430) at 2023-04-06 09:46 AM PDT -se7en-illa,2023-04-06T16:49:55Z,- se7en-illa commented on issue: [4395](https://github.com/hackforla/website/issues/4395#issuecomment-1499349926) at 2023-04-06 09:49 AM PDT -se7en-illa,2023-04-06T16:54:05Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1499354277) at 2023-04-06 09:54 AM PDT -se7en-illa,2023-04-06T17:00:46Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1499361690) at 2023-04-06 10:00 AM PDT -se7en-illa,2023-04-06T17:06:29Z,- se7en-illa commented on pull request: [4411](https://github.com/hackforla/website/pull/4411#issuecomment-1499368671) at 2023-04-06 10:06 AM PDT -se7en-illa,2023-04-06T17:14:36Z,- se7en-illa submitted pull request review: [4411](https://github.com/hackforla/website/pull/4411#pullrequestreview-1375278124) at 2023-04-06 10:14 AM PDT -se7en-illa,2023-04-07T04:05:11Z,- se7en-illa pull request merged: [4430](https://github.com/hackforla/website/pull/4430#event-8951306264) at 2023-04-06 09:05 PM PDT -se7en-illa,2023-04-07T16:38:44Z,- se7en-illa assigned to issue: [4352](https://github.com/hackforla/website/issues/4352) at 2023-04-07 09:38 AM PDT -se7en-illa,2023-04-07T16:40:52Z,- se7en-illa commented on issue: [4352](https://github.com/hackforla/website/issues/4352#issuecomment-1500449393) at 2023-04-07 09:40 AM PDT -se7en-illa,2023-04-17T16:58:56Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1511746275) at 2023-04-17 09:58 AM PDT -se7en-illa,2023-04-17T17:14:09Z,- se7en-illa opened pull request: [4539](https://github.com/hackforla/website/pull/4539) at 2023-04-17 10:14 AM PDT -se7en-illa,2023-04-17T17:17:44Z,- se7en-illa commented on issue: [4352](https://github.com/hackforla/website/issues/4352#issuecomment-1511773163) at 2023-04-17 10:17 AM PDT -se7en-illa,2023-04-18T22:04:16Z,- se7en-illa commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1513845679) at 2023-04-18 03:04 PM PDT -se7en-illa,2023-04-19T03:26:06Z,- se7en-illa pull request merged: [4539](https://github.com/hackforla/website/pull/4539#event-9041883127) at 2023-04-18 08:26 PM PDT -se7en-illa,2023-04-19T06:58:26Z,- se7en-illa assigned to issue: [4451](https://github.com/hackforla/website/issues/4451) at 2023-04-18 11:58 PM PDT -se7en-illa,2023-04-19T06:59:42Z,- se7en-illa commented on issue: [4451](https://github.com/hackforla/website/issues/4451#issuecomment-1514225930) at 2023-04-18 11:59 PM PDT -se7en-illa,2023-04-20T02:53:27Z,- se7en-illa opened pull request: [4549](https://github.com/hackforla/website/pull/4549) at 2023-04-19 07:53 PM PDT -se7en-illa,2023-04-20T19:06:53Z,- se7en-illa pull request merged: [4549](https://github.com/hackforla/website/pull/4549#event-9060662153) at 2023-04-20 12:06 PM PDT -se7en-illa,2023-04-23T17:44:16Z,- se7en-illa commented on pull request: [4558](https://github.com/hackforla/website/pull/4558#issuecomment-1519119037) at 2023-04-23 10:44 AM PDT -se7en-illa,2023-04-23T18:07:29Z,- se7en-illa commented on pull request: [4550](https://github.com/hackforla/website/pull/4550#issuecomment-1519123489) at 2023-04-23 11:07 AM PDT -se7en-illa,2023-04-26T02:38:59Z,- se7en-illa submitted pull request review: [4558](https://github.com/hackforla/website/pull/4558#pullrequestreview-1401066940) at 2023-04-25 07:38 PM PDT -se7en-illa,2023-04-26T02:47:51Z,- se7en-illa commented on issue: [4314](https://github.com/hackforla/website/issues/4314#issuecomment-1522691067) at 2023-04-25 07:47 PM PDT -se7en-illa,2023-04-26T02:47:51Z,- se7en-illa closed issue as completed: [4314](https://github.com/hackforla/website/issues/4314#event-9098356951) at 2023-04-25 07:47 PM PDT -se7en-illa,2023-04-26T02:51:58Z,- se7en-illa assigned to issue: [4551](https://github.com/hackforla/website/issues/4551) at 2023-04-25 07:51 PM PDT -se7en-illa,2023-04-26T02:53:23Z,- se7en-illa commented on issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1522694801) at 2023-04-25 07:53 PM PDT -se7en-illa,2023-05-11T23:17:15Z,- se7en-illa commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1544815110) at 2023-05-11 04:17 PM PDT -se7en-illa,2023-06-20T05:05:23Z,- se7en-illa unassigned from issue: [4551](https://github.com/hackforla/website/issues/4551#issuecomment-1598122157) at 2023-06-19 10:05 PM PDT -seanholahan,2019-05-01T04:00:21Z,- seanholahan opened pull request: [77](https://github.com/hackforla/website/pull/77) at 2019-04-30 09:00 PM PDT -seanholahan,2019-05-07T02:28:44Z,- seanholahan opened pull request: [92](https://github.com/hackforla/website/pull/92) at 2019-05-06 07:28 PM PDT -seanholahan,2019-05-07T02:45:14Z,- seanholahan opened pull request: [93](https://github.com/hackforla/website/pull/93) at 2019-05-06 07:45 PM PDT -seanholahan,2019-05-07T06:25:13Z,- seanholahan pull request merged: [92](https://github.com/hackforla/website/pull/92#event-2323073847) at 2019-05-06 11:25 PM PDT -seanholahan,2019-05-08T03:28:00Z,- seanholahan pull request closed w/o merging: [77](https://github.com/hackforla/website/pull/77#event-2326050067) at 2019-05-07 08:28 PM PDT -seanholahan,2019-05-08T03:38:36Z,- seanholahan opened pull request: [96](https://github.com/hackforla/website/pull/96) at 2019-05-07 08:38 PM PDT -seanholahan,2019-05-08T23:41:40Z,- seanholahan assigned to issue: [65](https://github.com/hackforla/website/issues/65#issuecomment-488484918) at 2019-05-08 04:41 PM PDT -seanholahan,2019-05-09T05:29:12Z,- seanholahan pull request merged: [93](https://github.com/hackforla/website/pull/93#event-2329170647) at 2019-05-08 10:29 PM PDT -seanholahan,2019-05-09T05:32:52Z,- seanholahan pull request merged: [96](https://github.com/hackforla/website/pull/96#event-2329175172) at 2019-05-08 10:32 PM PDT -seanholahan,2019-05-12T03:52:41Z,- seanholahan closed issue as completed: [65](https://github.com/hackforla/website/issues/65#event-2335056926) at 2019-05-11 08:52 PM PDT -seanholahan,2019-05-23T03:36:18Z,- seanholahan assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -seanholahan,2019-06-03T04:43:30Z,- seanholahan commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-02 09:43 PM PDT -seanholahan,2019-06-04T01:21:06Z,- seanholahan assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -seanholahan,2019-06-12T00:36:17Z,- seanholahan commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501075016) at 2019-06-11 05:36 PM PDT -seanholahan,2019-06-12T17:42:42Z,- seanholahan unassigned from issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501075016) at 2019-06-12 10:42 AM PDT -seanholahan,2020-06-01T02:33:13Z,- seanholahan unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -seantokuzo,3242,SKILLS ISSUE -seantokuzo,2022-06-14T02:30:23Z,- seantokuzo opened issue: [3242](https://github.com/hackforla/website/issues/3242) at 2022-06-13 07:30 PM PDT -seantokuzo,2022-06-23T22:31:30Z,- seantokuzo assigned to issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1164839579) at 2022-06-23 03:31 PM PDT -seantokuzo,2022-07-13T23:54:12Z,- seantokuzo assigned to issue: [2875](https://github.com/hackforla/website/issues/2875#issuecomment-1049010963) at 2022-07-13 04:54 PM PDT -seantokuzo,2022-07-14T00:19:22Z,- seantokuzo commented on issue: [2875](https://github.com/hackforla/website/issues/2875#issuecomment-1183805798) at 2022-07-13 05:19 PM PDT -seantokuzo,2022-07-14T00:21:17Z,- seantokuzo commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1183806976) at 2022-07-13 05:21 PM PDT -seantokuzo,2022-07-14T00:42:21Z,- seantokuzo opened pull request: [3369](https://github.com/hackforla/website/pull/3369) at 2022-07-13 05:42 PM PDT -seantokuzo,2022-07-14T00:45:22Z,- seantokuzo closed issue as completed: [3242](https://github.com/hackforla/website/issues/3242#event-6990059370) at 2022-07-13 05:45 PM PDT -seantokuzo,2022-07-14T17:03:34Z,- seantokuzo commented on pull request: [3369](https://github.com/hackforla/website/pull/3369#issuecomment-1184680200) at 2022-07-14 10:03 AM PDT -seantokuzo,2022-07-14T20:23:42Z,- seantokuzo pull request merged: [3369](https://github.com/hackforla/website/pull/3369#event-6997164893) at 2022-07-14 01:23 PM PDT -Sebster3,4166,SKILLS ISSUE -Sebster3,2023-03-14T03:06:15Z,- Sebster3 opened issue: [4166](https://github.com/hackforla/website/issues/4166) at 2023-03-13 08:06 PM PDT -Sebster3,2023-03-14T03:34:14Z,- Sebster3 assigned to issue: [4166](https://github.com/hackforla/website/issues/4166) at 2023-03-13 08:34 PM PDT -Sebster3,2023-03-14T19:50:35Z,- Sebster3 assigned to issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1452918340) at 2023-03-14 12:50 PM PDT -Sebster3,2023-03-14T20:05:12Z,- Sebster3 commented on issue: [4031](https://github.com/hackforla/website/issues/4031#issuecomment-1468753193) at 2023-03-14 01:05 PM PDT -Sebster3,2023-03-14T20:06:10Z,- Sebster3 commented on issue: [4166](https://github.com/hackforla/website/issues/4166#issuecomment-1468755026) at 2023-03-14 01:06 PM PDT -Sebster3,2023-03-14T20:31:14Z,- Sebster3 opened pull request: [4181](https://github.com/hackforla/website/pull/4181) at 2023-03-14 01:31 PM PDT -Sebster3,2023-03-14T23:08:51Z,- Sebster3 commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1468987083) at 2023-03-14 04:08 PM PDT -Sebster3,2023-03-17T00:43:26Z,- Sebster3 commented on pull request: [4181](https://github.com/hackforla/website/pull/4181#issuecomment-1472945777) at 2023-03-16 05:43 PM PDT -Sebster3,2023-03-17T05:27:10Z,- Sebster3 pull request merged: [4181](https://github.com/hackforla/website/pull/4181#event-8774506131) at 2023-03-16 10:27 PM PDT -Sebster3,2023-03-17T19:53:30Z,- Sebster3 assigned to issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1472436357) at 2023-03-17 12:53 PM PDT -Sebster3,2023-03-17T22:18:54Z,- Sebster3 commented on issue: [4085](https://github.com/hackforla/website/issues/4085#issuecomment-1474460342) at 2023-03-17 03:18 PM PDT -Sebster3,2023-03-18T00:27:50Z,- Sebster3 opened pull request: [4204](https://github.com/hackforla/website/pull/4204) at 2023-03-17 05:27 PM PDT -Sebster3,2023-03-19T04:05:46Z,- Sebster3 pull request merged: [4204](https://github.com/hackforla/website/pull/4204#event-8786881162) at 2023-03-18 09:05 PM PDT -Sebster3,2023-03-20T21:22:29Z,- Sebster3 commented on pull request: [4213](https://github.com/hackforla/website/pull/4213#issuecomment-1476952660) at 2023-03-20 02:22 PM PDT -Sebster3,2023-03-20T21:44:09Z,- Sebster3 submitted pull request review: [4213](https://github.com/hackforla/website/pull/4213#pullrequestreview-1349444596) at 2023-03-20 02:44 PM PDT -Sebster3,2023-03-21T01:52:49Z,- Sebster3 assigned to issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1472443742) at 2023-03-20 06:52 PM PDT -Sebster3,2023-03-21T01:56:06Z,- Sebster3 commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1477175306) at 2023-03-20 06:56 PM PDT -Sebster3,2023-03-21T02:40:07Z,- Sebster3 opened pull request: [4222](https://github.com/hackforla/website/pull/4222) at 2023-03-20 07:40 PM PDT -Sebster3,2023-03-22T19:15:32Z,- Sebster3 commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1480124609) at 2023-03-22 12:15 PM PDT -Sebster3,2023-03-23T21:34:33Z,- Sebster3 pull request merged: [4222](https://github.com/hackforla/website/pull/4222#event-8832697940) at 2023-03-23 02:34 PM PDT -Sebster3,2023-03-24T05:26:49Z,- Sebster3 assigned to issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1479960242) at 2023-03-23 10:26 PM PDT -Sebster3,2023-03-24T05:32:31Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1482274596) at 2023-03-23 10:32 PM PDT -Sebster3,2023-03-27T23:32:45Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1485996818) at 2023-03-27 04:32 PM PDT -Sebster3,2023-03-27T23:40:48Z,- Sebster3 commented on issue: [4166](https://github.com/hackforla/website/issues/4166#issuecomment-1486002193) at 2023-03-27 04:40 PM PDT -Sebster3,2023-03-29T18:41:11Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1489115921) at 2023-03-29 11:41 AM PDT -Sebster3,2023-04-01T19:52:26Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1493093058) at 2023-04-01 12:52 PM PDT -Sebster3,2023-04-02T04:03:03Z,- Sebster3 opened pull request: [4365](https://github.com/hackforla/website/pull/4365) at 2023-04-01 09:03 PM PDT -Sebster3,2023-04-02T04:04:52Z,- Sebster3 commented on issue: [3641](https://github.com/hackforla/website/issues/3641#issuecomment-1493217469) at 2023-04-01 09:04 PM PDT -Sebster3,2023-04-04T23:10:40Z,- Sebster3 pull request merged: [4365](https://github.com/hackforla/website/pull/4365#event-8929530809) at 2023-04-04 04:10 PM PDT -Sebster3,2023-04-06T21:18:08Z,- Sebster3 closed issue as completed: [4166](https://github.com/hackforla/website/issues/4166#event-8949837995) at 2023-04-06 02:18 PM PDT -Sebster3,2023-04-06T21:36:41Z,- Sebster3 assigned to issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1499508041) at 2023-04-06 02:36 PM PDT -Sebster3,2023-04-06T21:39:00Z,- Sebster3 commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1499659582) at 2023-04-06 02:39 PM PDT -Sebster3,2023-04-12T03:00:55Z,- Sebster3 opened issue: [4476](https://github.com/hackforla/website/issues/4476) at 2023-04-11 08:00 PM PDT -Sebster3,2023-04-16T17:08:16Z,- Sebster3 commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1510434053) at 2023-04-16 10:08 AM PDT -Sebster3,2023-04-16T18:19:46Z,- Sebster3 opened issue: [4523](https://github.com/hackforla/website/issues/4523) at 2023-04-16 11:19 AM PDT -Sebster3,2023-04-16T18:59:25Z,- Sebster3 unassigned from issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1510434053) at 2023-04-16 11:59 AM PDT -Sebster3,2023-04-16T18:59:40Z,- Sebster3 assigned to issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1510450338) at 2023-04-16 11:59 AM PDT -Sebster3,2023-04-16T21:23:40Z,- Sebster3 opened issue: [4525](https://github.com/hackforla/website/issues/4525) at 2023-04-16 02:23 PM PDT -Sebster3,2023-04-18T00:19:18Z,- Sebster3 commented on issue: [4427](https://github.com/hackforla/website/issues/4427#issuecomment-1512269056) at 2023-04-17 05:19 PM PDT -Sebster3,2023-05-02T21:46:01Z,- Sebster3 commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1532196135) at 2023-05-02 02:46 PM PDT -Sebster3,2023-05-11T17:58:35Z,- Sebster3 commented on pull request: [4613](https://github.com/hackforla/website/pull/4613#issuecomment-1544445626) at 2023-05-11 10:58 AM PDT -Sebster3,2023-05-11T19:05:58Z,- Sebster3 submitted pull request review: [4613](https://github.com/hackforla/website/pull/4613#pullrequestreview-1423262551) at 2023-05-11 12:05 PM PDT -Sebster3,2023-05-11T20:10:58Z,- Sebster3 commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1544611762) at 2023-05-11 01:10 PM PDT -Sebster3,2023-05-18T19:59:45Z,- Sebster3 submitted pull request review: [4691](https://github.com/hackforla/website/pull/4691#pullrequestreview-1433368927) at 2023-05-18 12:59 PM PDT -Sebster3,2023-05-18T20:41:36Z,- Sebster3 submitted pull request review: [4691](https://github.com/hackforla/website/pull/4691#pullrequestreview-1433422219) at 2023-05-18 01:41 PM PDT -Sebster3,2023-05-20T01:34:31Z,- Sebster3 commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1555415394) at 2023-05-19 06:34 PM PDT -Sebster3,2023-05-20T01:42:40Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1435292249) at 2023-05-19 06:42 PM PDT -Sebster3,2023-05-20T01:47:05Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1435292743) at 2023-05-19 06:47 PM PDT -Sebster3,2023-05-21T17:05:35Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1435567903) at 2023-05-21 10:05 AM PDT -Sebster3,2023-05-24T15:50:32Z,- Sebster3 commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1561433221) at 2023-05-24 08:50 AM PDT -Sebster3,2023-06-18T16:19:20Z,- Sebster3 commented on pull request: [4843](https://github.com/hackforla/website/pull/4843#issuecomment-1596195873) at 2023-06-18 09:19 AM PDT -Sebster3,2023-06-18T16:23:44Z,- Sebster3 submitted pull request review: [4843](https://github.com/hackforla/website/pull/4843#pullrequestreview-1485145220) at 2023-06-18 09:23 AM PDT -Sebster3,2023-06-18T16:51:47Z,- Sebster3 submitted pull request review: [4844](https://github.com/hackforla/website/pull/4844#pullrequestreview-1485149881) at 2023-06-18 09:51 AM PDT -Sebster3,2023-07-13T22:29:19Z,- Sebster3 commented on pull request: [4701](https://github.com/hackforla/website/pull/4701#issuecomment-1634997576) at 2023-07-13 03:29 PM PDT -Sebster3,2023-07-16T05:24:06Z,- Sebster3 submitted pull request review: [4701](https://github.com/hackforla/website/pull/4701#pullrequestreview-1531658349) at 2023-07-15 10:24 PM PDT -segbuniwe,5358,SKILLS ISSUE -segbuniwe,2023-08-30T04:01:51Z,- segbuniwe opened issue: [5358](https://github.com/hackforla/website/issues/5358) at 2023-08-29 09:01 PM PDT -segbuniwe,2023-08-30T04:02:23Z,- segbuniwe assigned to issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1698453521) at 2023-08-29 09:02 PM PDT -segbuniwe,2023-09-05T16:56:26Z,- segbuniwe commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1706977954) at 2023-09-05 09:56 AM PDT -segbuniwe,2023-09-15T17:07:00Z,- segbuniwe assigned to issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1715916103) at 2023-09-15 10:07 AM PDT -segbuniwe,2023-09-15T17:15:11Z,- segbuniwe commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1721602023) at 2023-09-15 10:15 AM PDT -segbuniwe,2023-09-15T17:19:08Z,- segbuniwe commented on issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1721606239) at 2023-09-15 10:19 AM PDT -segbuniwe,2023-09-21T18:59:44Z,- segbuniwe opened pull request: [5569](https://github.com/hackforla/website/pull/5569) at 2023-09-21 11:59 AM PDT -segbuniwe,2023-09-21T19:08:52Z,- segbuniwe commented on issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1730148515) at 2023-09-21 12:08 PM PDT -segbuniwe,2023-09-25T02:00:12Z,- segbuniwe pull request merged: [5569](https://github.com/hackforla/website/pull/5569#event-10456700505) at 2023-09-24 07:00 PM PDT -segbuniwe,2023-09-29T16:17:14Z,- segbuniwe commented on issue: [5358](https://github.com/hackforla/website/issues/5358#issuecomment-1741160332) at 2023-09-29 09:17 AM PDT -segbuniwe,2023-10-04T21:32:05Z,- segbuniwe assigned to issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1735154927) at 2023-10-04 02:32 PM PDT -segbuniwe,2023-10-04T21:35:50Z,- segbuniwe commented on issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1747676118) at 2023-10-04 02:35 PM PDT -segbuniwe,2023-10-08T23:07:51Z,- segbuniwe commented on issue: [5591](https://github.com/hackforla/website/issues/5591#issuecomment-1752186935) at 2023-10-08 04:07 PM PDT -segbuniwe,2023-10-10T22:37:44Z,- segbuniwe opened pull request: [5699](https://github.com/hackforla/website/pull/5699) at 2023-10-10 03:37 PM PDT -segbuniwe,2023-10-14T04:18:53Z,- segbuniwe closed issue as completed: [5358](https://github.com/hackforla/website/issues/5358#event-10651244011) at 2023-10-13 09:18 PM PDT -segbuniwe,2023-10-15T16:33:58Z,- segbuniwe pull request merged: [5699](https://github.com/hackforla/website/pull/5699#event-10658020371) at 2023-10-15 09:33 AM PDT -segbuniwe,2023-10-20T19:27:00Z,- segbuniwe assigned to issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1735973538) at 2023-10-20 12:27 PM PDT -segbuniwe,2023-10-20T19:30:05Z,- segbuniwe commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1773290677) at 2023-10-20 12:30 PM PDT -segbuniwe,2023-10-28T23:03:43Z,- segbuniwe commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1783938649) at 2023-10-28 04:03 PM PDT -segbuniwe,2023-10-31T19:18:39Z,- segbuniwe commented on issue: [4510](https://github.com/hackforla/website/issues/4510#issuecomment-1787872239) at 2023-10-31 12:18 PM PDT -sei1122,2022-06-07T20:30:34Z,- sei1122 opened issue: [3232](https://github.com/hackforla/website/issues/3232) at 2022-06-07 01:30 PM PDT -sei1122,2022-06-13T16:02:55Z,- sei1122 opened issue: [3240](https://github.com/hackforla/website/issues/3240) at 2022-06-13 09:02 AM PDT -sei1122,2022-07-01T16:05:47Z,- sei1122 commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172493813) at 2022-07-01 09:05 AM PDT -sei1122,2022-07-02T04:18:05Z,- sei1122 commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172830695) at 2022-07-01 09:18 PM PDT -sei1122,2022-09-21T17:20:11Z,- sei1122 commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1254004428) at 2022-09-21 10:20 AM PDT -sena-ji,2020-10-04T18:47:07Z,- sena-ji assigned to issue: [738](https://github.com/hackforla/website/issues/738) at 2020-10-04 11:47 AM PDT -sena-ji,2020-10-06T01:12:00Z,- sena-ji opened pull request: [766](https://github.com/hackforla/website/pull/766) at 2020-10-05 06:12 PM PDT -sena-ji,2020-10-06T01:12:55Z,- sena-ji pull request merged: [766](https://github.com/hackforla/website/pull/766#event-3843020748) at 2020-10-05 06:12 PM PDT -sena-ji,2020-10-07T02:14:07Z,- sena-ji assigned to issue: [739](https://github.com/hackforla/website/issues/739) at 2020-10-06 07:14 PM PDT -sena-ji,2020-10-07T02:19:49Z,- sena-ji commented on issue: [738](https://github.com/hackforla/website/issues/738#issuecomment-704652302) at 2020-10-06 07:19 PM PDT -sena-ji,2020-10-07T02:19:49Z,- sena-ji closed issue as completed: [738](https://github.com/hackforla/website/issues/738#event-3848260569) at 2020-10-06 07:19 PM PDT -sena-ji,2020-10-08T22:35:42Z,- sena-ji commented on issue: [739](https://github.com/hackforla/website/issues/739#issuecomment-705858721) at 2020-10-08 03:35 PM PDT -sena-ji,2020-10-09T00:08:14Z,- sena-ji opened pull request: [771](https://github.com/hackforla/website/pull/771) at 2020-10-08 05:08 PM PDT -sena-ji,2020-10-09T00:26:22Z,- sena-ji pull request closed w/o merging: [771](https://github.com/hackforla/website/pull/771#event-3857903521) at 2020-10-08 05:26 PM PDT -sena-ji,2020-10-09T01:56:40Z,- sena-ji opened pull request: [773](https://github.com/hackforla/website/pull/773) at 2020-10-08 06:56 PM PDT -sena-ji,2020-10-09T02:02:52Z,- sena-ji pull request closed w/o merging: [773](https://github.com/hackforla/website/pull/773#event-3858094840) at 2020-10-08 07:02 PM PDT -sena-ji,2020-10-09T02:18:49Z,- sena-ji opened pull request: [774](https://github.com/hackforla/website/pull/774) at 2020-10-08 07:18 PM PDT -sena-ji,2020-10-09T02:20:10Z,- sena-ji closed issue by PR 774: [739](https://github.com/hackforla/website/issues/739#event-3858124017) at 2020-10-08 07:20 PM PDT -sena-ji,2020-10-09T02:20:10Z,- sena-ji pull request merged: [774](https://github.com/hackforla/website/pull/774#event-3858124019) at 2020-10-08 07:20 PM PDT -sena-ji,2020-10-13T20:26:49Z,- sena-ji assigned to issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-702416105) at 2020-10-13 01:26 PM PDT -sena-ji,2020-10-16T01:12:49Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-709671235) at 2020-10-15 06:12 PM PDT -sena-ji,2020-10-19T23:31:10Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-712497392) at 2020-10-19 04:31 PM PDT -sena-ji,2020-10-20T00:34:21Z,- sena-ji opened pull request: [790](https://github.com/hackforla/website/pull/790) at 2020-10-19 05:34 PM PDT -sena-ji,2020-10-21T03:28:22Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-713273489) at 2020-10-20 08:28 PM PDT -sena-ji,2020-10-27T20:44:20Z,- sena-ji commented on issue: [700](https://github.com/hackforla/website/issues/700#issuecomment-717527747) at 2020-10-27 01:44 PM PDT -sena-ji,2020-11-07T01:53:13Z,- sena-ji commented on pull request: [790](https://github.com/hackforla/website/pull/790#issuecomment-723372371) at 2020-11-06 05:53 PM PST -sena-ji,2020-11-09T01:42:23Z,- sena-ji pull request merged: [790](https://github.com/hackforla/website/pull/790#event-3971451865) at 2020-11-08 05:42 PM PST -sena-ji,2020-11-11T01:22:18Z,- sena-ji assigned to issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-683454932) at 2020-11-10 05:22 PM PST -sena-ji,2020-11-29T17:43:44Z,- sena-ji commented on issue: [698](https://github.com/hackforla/website/issues/698#issuecomment-735430050) at 2020-11-29 09:43 AM PST -sena-ji,2020-11-30T19:20:58Z,- sena-ji opened pull request: [820](https://github.com/hackforla/website/pull/820) at 2020-11-30 11:20 AM PST -sena-ji,2020-12-09T03:50:18Z,- sena-ji commented on pull request: [820](https://github.com/hackforla/website/pull/820#issuecomment-741508621) at 2020-12-08 07:50 PM PST -sena-ji,2020-12-09T18:51:31Z,- sena-ji pull request merged: [820](https://github.com/hackforla/website/pull/820#event-4091468306) at 2020-12-09 10:51 AM PST -sena-ji,2020-12-22T02:35:26Z,- sena-ji assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 06:35 PM PST -sena-ji,2020-12-22T02:38:41Z,- sena-ji unassigned from issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 06:38 PM PST -sena-ji,2020-12-22T03:12:48Z,- sena-ji assigned to issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-739099523) at 2020-12-21 07:12 PM PST -sena-ji,2020-12-23T01:10:04Z,- sena-ji unassigned from issue: [826](https://github.com/hackforla/website/issues/826#issuecomment-749830181) at 2020-12-22 05:10 PM PST -sena-ji,2021-03-18T20:10:15Z,- sena-ji assigned to issue: [1258](https://github.com/hackforla/website/issues/1258) at 2021-03-18 01:10 PM PDT -sena-ji,2021-03-29T21:11:23Z,- sena-ji commented on issue: [1258](https://github.com/hackforla/website/issues/1258#issuecomment-809717215) at 2021-03-29 02:11 PM PDT -sena-ji,2021-03-31T13:11:10Z,- sena-ji assigned to issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-792193174) at 2021-03-31 06:11 AM PDT -sena-ji,2021-03-31T19:32:21Z,- sena-ji opened pull request: [1344](https://github.com/hackforla/website/pull/1344) at 2021-03-31 12:32 PM PDT -sena-ji,2021-04-01T18:01:34Z,- sena-ji commented on pull request: [1344](https://github.com/hackforla/website/pull/1344#issuecomment-812076224) at 2021-04-01 11:01 AM PDT -sena-ji,2021-04-02T17:33:21Z,- sena-ji pull request merged: [1344](https://github.com/hackforla/website/pull/1344#event-4546475811) at 2021-04-02 10:33 AM PDT -sena-ji,2021-04-07T03:14:57Z,- sena-ji opened pull request: [1368](https://github.com/hackforla/website/pull/1368) at 2021-04-06 08:14 PM PDT -sena-ji,2021-04-08T17:38:41Z,- sena-ji commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816012406) at 2021-04-08 10:38 AM PDT -sena-ji,2021-04-08T20:59:09Z,- sena-ji commented on pull request: [1368](https://github.com/hackforla/website/pull/1368#issuecomment-816192538) at 2021-04-08 01:59 PM PDT -sena-ji,2021-04-09T21:13:48Z,- sena-ji pull request merged: [1368](https://github.com/hackforla/website/pull/1368#event-4576428848) at 2021-04-09 02:13 PM PDT -sena-ji,2021-04-20T20:04:28Z,- sena-ji commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-823564927) at 2021-04-20 01:04 PM PDT -sena-ji,2021-04-20T20:11:33Z,- sena-ji commented on issue: [1122](https://github.com/hackforla/website/issues/1122#issuecomment-823569118) at 2021-04-20 01:11 PM PDT -sena-ji,2021-04-20T20:12:51Z,- sena-ji opened pull request: [1423](https://github.com/hackforla/website/pull/1423) at 2021-04-20 01:12 PM PDT -sena-ji,2021-04-20T23:08:19Z,- sena-ji commented on pull request: [1423](https://github.com/hackforla/website/pull/1423#issuecomment-823658663) at 2021-04-20 04:08 PM PDT -sena-ji,2021-04-23T14:04:42Z,- sena-ji pull request merged: [1423](https://github.com/hackforla/website/pull/1423#event-4637108833) at 2021-04-23 07:04 AM PDT -sena-ji,2021-04-23T14:15:16Z,- sena-ji assigned to issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-817359862) at 2021-04-23 07:15 AM PDT -sena-ji,2021-04-26T00:31:08Z,- sena-ji commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-826426402) at 2021-04-25 05:31 PM PDT -sena-ji,2021-05-05T00:16:03Z,- sena-ji commented on issue: [1115](https://github.com/hackforla/website/issues/1115#issuecomment-832336377) at 2021-05-04 05:16 PM PDT -sena-ji,2021-05-05T00:23:08Z,- sena-ji opened pull request: [1509](https://github.com/hackforla/website/pull/1509) at 2021-05-04 05:23 PM PDT -sena-ji,2021-05-07T01:22:45Z,- sena-ji commented on pull request: [1509](https://github.com/hackforla/website/pull/1509#issuecomment-833990161) at 2021-05-06 06:22 PM PDT -sena-ji,2021-05-07T23:26:10Z,- sena-ji pull request merged: [1509](https://github.com/hackforla/website/pull/1509#event-4705185969) at 2021-05-07 04:26 PM PDT -sena-ji,2021-05-17T21:25:02Z,- sena-ji assigned to issue: [1553](https://github.com/hackforla/website/issues/1553) at 2021-05-17 02:25 PM PDT -sena-ji,2021-06-02T00:04:40Z,- sena-ji commented on issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-852578941) at 2021-06-01 05:04 PM PDT -sena-ji,2021-06-08T21:16:20Z,- sena-ji opened pull request: [1701](https://github.com/hackforla/website/pull/1701) at 2021-06-08 02:16 PM PDT -sena-ji,2021-06-08T21:16:54Z,- sena-ji commented on issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-857158746) at 2021-06-08 02:16 PM PDT -sena-ji,2021-06-11T13:33:13Z,- sena-ji pull request merged: [1701](https://github.com/hackforla/website/pull/1701#event-4878030226) at 2021-06-11 06:33 AM PDT -sena-ji,2021-06-22T04:46:16Z,- sena-ji assigned to issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860883797) at 2021-06-21 09:46 PM PDT -sena-ji,2021-06-29T18:50:22Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-870833515) at 2021-06-29 11:50 AM PDT -sena-ji,2021-07-05T19:06:29Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-874286522) at 2021-07-05 12:06 PM PDT -sena-ji,2021-07-07T23:30:59Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-876001645) at 2021-07-07 04:30 PM PDT -sena-ji,2021-07-13T17:36:24Z,- sena-ji commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-879274037) at 2021-07-13 10:36 AM PDT -sena-ji,2021-07-19T18:37:43Z,- sena-ji opened pull request: [1972](https://github.com/hackforla/website/pull/1972) at 2021-07-19 11:37 AM PDT -sena-ji,2021-07-20T03:51:00Z,- sena-ji commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-883029798) at 2021-07-19 08:51 PM PDT -sena-ji,2021-07-21T22:07:07Z,- sena-ji commented on pull request: [1972](https://github.com/hackforla/website/pull/1972#issuecomment-884530492) at 2021-07-21 03:07 PM PDT -sena-ji,2021-08-11T00:48:24Z,- sena-ji pull request merged: [1972](https://github.com/hackforla/website/pull/1972#event-5138576852) at 2021-08-10 05:48 PM PDT -SeyiAkinwale,4624,SKILLS ISSUE -SeyiAkinwale,2023-05-09T03:31:04Z,- SeyiAkinwale opened issue: [4624](https://github.com/hackforla/website/issues/4624) at 2023-05-08 08:31 PM PDT -SeyiAkinwale,2023-05-09T03:35:12Z,- SeyiAkinwale assigned to issue: [4624](https://github.com/hackforla/website/issues/4624) at 2023-05-08 08:35 PM PDT -SeyiAkinwale,2023-06-02T02:56:44Z,- SeyiAkinwale commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1573066128) at 2023-06-01 07:56 PM PDT -SeyiAkinwale,2023-06-13T07:32:27Z,- SeyiAkinwale assigned to issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1582774419) at 2023-06-13 12:32 AM PDT -SeyiAkinwale,2023-06-13T07:46:31Z,- SeyiAkinwale commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1588733110) at 2023-06-13 12:46 AM PDT -SeyiAkinwale,2023-06-13T07:48:09Z,- SeyiAkinwale commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1588735981) at 2023-06-13 12:48 AM PDT -SeyiAkinwale,2023-06-13T07:48:58Z,- SeyiAkinwale commented on issue: [4624](https://github.com/hackforla/website/issues/4624#issuecomment-1588737189) at 2023-06-13 12:48 AM PDT -SeyiAkinwale,2023-06-14T06:17:22Z,- SeyiAkinwale commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1590540801) at 2023-06-13 11:17 PM PDT -SeyiAkinwale,2023-07-15T15:37:37Z,- SeyiAkinwale unassigned from issue: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-15 08:37 AM PDT -SeyiAkinwale,2023-07-21T02:35:51Z,- SeyiAkinwale assigned to issue: [5042](https://github.com/hackforla/website/issues/5042) at 2023-07-20 07:35 PM PDT -SeyiAkinwale,2023-07-21T03:07:28Z,- SeyiAkinwale commented on issue: [5042](https://github.com/hackforla/website/issues/5042#issuecomment-1644922399) at 2023-07-20 08:07 PM PDT -SeyiAkinwale,2023-08-18T18:08:45Z,- SeyiAkinwale opened pull request: [5251](https://github.com/hackforla/website/pull/5251) at 2023-08-18 11:08 AM PDT -SeyiAkinwale,2023-08-18T18:47:47Z,- SeyiAkinwale pull request merged: [5251](https://github.com/hackforla/website/pull/5251#event-10132715407) at 2023-08-18 11:47 AM PDT -SeyiAkinwale,2023-08-27T05:09:13Z,- SeyiAkinwale pull request merged: [5251](https://github.com/hackforla/website/pull/5251#event-10201145885) at 2023-08-26 10:09 PM PDT - NOT PLANNED - 6728 (ShamaaTabassum),6726,SKILLS ISSUE -ShamaaTabassum,6728,SKILLS ISSUE -ShamaaTabassum,2024-04-24T03:53:36Z,- ShamaaTabassum opened issue: [6726](https://github.com/hackforla/website/issues/6726) at 2024-04-23 08:53 PM PDT -ShamaaTabassum,2024-04-24T04:04:53Z,- ShamaaTabassum opened issue: [6728](https://github.com/hackforla/website/issues/6728) at 2024-04-23 09:04 PM PDT -ShamaaTabassum,2024-04-24T04:30:26Z,- ShamaaTabassum assigned to issue: [6728](https://github.com/hackforla/website/issues/6728#issuecomment-2073983496) at 2024-04-23 09:30 PM PDT -ShamaaTabassum,2024-04-24T04:31:22Z,- ShamaaTabassum assigned to issue: [6726](https://github.com/hackforla/website/issues/6726#issuecomment-2073974558) at 2024-04-23 09:31 PM PDT -ShamaaTabassum,2024-04-24T04:51:27Z,- ShamaaTabassum assigned to issue: [6706](https://github.com/hackforla/website/issues/6706) at 2024-04-23 09:51 PM PDT -ShamaaTabassum,2024-04-24T04:53:42Z,- ShamaaTabassum unassigned from issue: [6706](https://github.com/hackforla/website/issues/6706#issuecomment-2074023803) at 2024-04-23 09:53 PM PDT -ShamaaTabassum,2024-04-27T05:54:22Z,- ShamaaTabassum assigned to issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2065521023) at 2024-04-26 10:54 PM PDT -ShamaaTabassum,2024-04-27T08:32:52Z,- ShamaaTabassum commented on issue: [5847](https://github.com/hackforla/website/issues/5847#issuecomment-2080416739) at 2024-04-27 01:32 AM PDT -ShamaaTabassum,2024-04-27T10:44:46Z,- ShamaaTabassum opened pull request: [6772](https://github.com/hackforla/website/pull/6772) at 2024-04-27 03:44 AM PDT -ShamaaTabassum,2024-04-29T18:25:36Z,- ShamaaTabassum pull request merged: [6772](https://github.com/hackforla/website/pull/6772#event-12647330691) at 2024-04-29 11:25 AM PDT -ShambhavII-Singh,2023-08-22T14:07:08Z,- ShambhavII-Singh commented on issue: [5269](https://github.com/hackforla/website/issues/5269#issuecomment-1688259115) at 2023-08-22 07:07 AM PDT -shantanushende,2560,SKILLS ISSUE -shantanushende,2021-12-08T04:02:30Z,- shantanushende assigned to issue: [2560](https://github.com/hackforla/website/issues/2560) at 2021-12-07 08:02 PM PST -shantanushende,2021-12-10T03:08:00Z,- shantanushende closed issue as completed: [2560](https://github.com/hackforla/website/issues/2560#event-5745135278) at 2021-12-09 07:08 PM PST -shantanushende,2022-01-04T04:44:52Z,- shantanushende commented on issue: [2560](https://github.com/hackforla/website/issues/2560#issuecomment-1004525707) at 2022-01-03 08:44 PM PST -sharadgaurav7,2021-06-15T16:26:51Z,- sharadgaurav7 assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-15 09:26 AM PDT -shaswa,2021-02-24T18:46:13Z,- shaswa opened issue: [1105](https://github.com/hackforla/website/issues/1105) at 2021-02-24 10:46 AM PST -shaswa,2021-02-24T18:57:35Z,- shaswa assigned to issue: [1105](https://github.com/hackforla/website/issues/1105) at 2021-02-24 10:57 AM PST -shaswa,2021-02-26T10:52:55Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-786571819) at 2021-02-26 02:52 AM PST -shaswa,2021-03-02T23:36:00Z,- shaswa opened issue: [1150](https://github.com/hackforla/website/issues/1150) at 2021-03-02 03:36 PM PST -shaswa,2021-03-02T23:38:45Z,- shaswa opened issue: [1151](https://github.com/hackforla/website/issues/1151) at 2021-03-02 03:38 PM PST -shaswa,2021-03-02T23:41:57Z,- shaswa opened issue: [1152](https://github.com/hackforla/website/issues/1152) at 2021-03-02 03:41 PM PST -shaswa,2021-03-03T00:02:57Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-789313158) at 2021-03-02 04:02 PM PST -shaswa,2021-03-07T08:36:44Z,- shaswa assigned to issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-782905054) at 2021-03-07 12:36 AM PST -shaswa,2021-03-07T17:47:23Z,- shaswa commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-792322465) at 2021-03-07 09:47 AM PST -shaswa,2021-03-07T19:23:46Z,- shaswa assigned to issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-03-07 11:23 AM PST -shaswa,2021-03-07T19:24:33Z,- shaswa assigned to issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-780790561) at 2021-03-07 11:24 AM PST -shaswa,2021-03-10T17:25:29Z,- shaswa commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-795777498) at 2021-03-10 09:25 AM PST -shaswa,2021-03-10T17:32:57Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-795788560) at 2021-03-10 09:32 AM PST -shaswa,2021-03-17T01:02:16Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-800715433) at 2021-03-16 06:02 PM PDT -shaswa,2021-03-17T17:43:23Z,- shaswa commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-801280941) at 2021-03-17 10:43 AM PDT -shaswa,2021-03-17T17:47:13Z,- shaswa commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-801284148) at 2021-03-17 10:47 AM PDT -shaswa,2021-03-17T17:47:42Z,- shaswa closed issue as completed: [1054](https://github.com/hackforla/website/issues/1054#event-4471727909) at 2021-03-17 10:47 AM PDT -shaswa,2021-03-17T18:03:23Z,- shaswa commented on issue: [1041](https://github.com/hackforla/website/issues/1041#issuecomment-801295697) at 2021-03-17 11:03 AM PDT -shaswa,2021-03-17T18:06:22Z,- shaswa commented on issue: [1041](https://github.com/hackforla/website/issues/1041#issuecomment-801297659) at 2021-03-17 11:06 AM PDT -shaswa,2021-03-17T18:24:05Z,- shaswa commented on issue: [610](https://github.com/hackforla/website/issues/610#issuecomment-801309326) at 2021-03-17 11:24 AM PDT -shaswa,2021-03-17T18:28:07Z,- shaswa commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-801313660) at 2021-03-17 11:28 AM PDT -shaswa,2021-03-18T22:31:32Z,- shaswa commented on issue: [1152](https://github.com/hackforla/website/issues/1152#issuecomment-802352872) at 2021-03-18 03:31 PM PDT -shaswa,2021-03-21T09:05:21Z,- shaswa commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-803537281) at 2021-03-21 02:05 AM PDT -shaswa,2021-03-24T15:11:50Z,- shaswa commented on issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-805907166) at 2021-03-24 08:11 AM PDT -shaswa,2021-03-24T15:12:41Z,- shaswa commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-805908475) at 2021-03-24 08:12 AM PDT -shaswa,2021-03-31T18:18:47Z,- shaswa unassigned from issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811287661) at 2021-03-31 11:18 AM PDT -shaswa,2021-03-31T18:31:23Z,- shaswa unassigned from issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-806018314) at 2021-03-31 11:31 AM PDT -ShatteredArrow,5064,SKILLS ISSUE -ShatteredArrow,2023-07-26T02:55:46Z,- ShatteredArrow opened issue: [5064](https://github.com/hackforla/website/issues/5064) at 2023-07-25 07:55 PM PDT -ShatteredArrow,2023-07-26T02:56:00Z,- ShatteredArrow assigned to issue: [5064](https://github.com/hackforla/website/issues/5064) at 2023-07-25 07:56 PM PDT -ShattsIllia,5228,SKILLS ISSUE -ShattsIllia,2023-08-15T03:49:37Z,- ShattsIllia opened issue: [5228](https://github.com/hackforla/website/issues/5228) at 2023-08-14 08:49 PM PDT -ShattsIllia,2023-08-15T03:59:22Z,- ShattsIllia assigned to issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1678389508) at 2023-08-14 08:59 PM PDT -shavinski,5220,SKILLS ISSUE -shavinski,2023-08-15T03:02:51Z,- shavinski opened issue: [5220](https://github.com/hackforla/website/issues/5220) at 2023-08-14 08:02 PM PDT -shavinski,2023-08-15T03:02:52Z,- shavinski assigned to issue: [5220](https://github.com/hackforla/website/issues/5220) at 2023-08-14 08:02 PM PDT -shavinski,2023-08-15T22:36:00Z,- shavinski assigned to issue: [5031](https://github.com/hackforla/website/issues/5031#issuecomment-1679623123) at 2023-08-15 03:36 PM PDT -shavinski,2023-08-15T22:51:39Z,- shavinski opened pull request: [5235](https://github.com/hackforla/website/pull/5235) at 2023-08-15 03:51 PM PDT -shavinski,2023-08-19T23:04:30Z,- shavinski pull request merged: [5235](https://github.com/hackforla/website/pull/5235#event-10137159601) at 2023-08-19 04:04 PM PDT -shavinski,2023-08-21T20:40:26Z,- shavinski commented on pull request: [5235](https://github.com/hackforla/website/pull/5235#issuecomment-1687013134) at 2023-08-21 01:40 PM PDT -shavinski,2023-08-21T20:42:05Z,- shavinski commented on issue: [5220](https://github.com/hackforla/website/issues/5220#issuecomment-1687015226) at 2023-08-21 01:42 PM PDT -shavinski,2023-08-23T14:18:29Z,- shavinski assigned to issue: [5173](https://github.com/hackforla/website/issues/5173#issuecomment-1672309620) at 2023-08-23 07:18 AM PDT -shavinski,2023-08-23T14:20:20Z,- shavinski commented on issue: [5173](https://github.com/hackforla/website/issues/5173#issuecomment-1690054990) at 2023-08-23 07:20 AM PDT -shavinski,2023-08-23T14:44:14Z,- shavinski opened pull request: [5294](https://github.com/hackforla/website/pull/5294) at 2023-08-23 07:44 AM PDT -shavinski,2023-08-23T22:59:50Z,- shavinski closed issue as completed: [5220](https://github.com/hackforla/website/issues/5220#event-10175194292) at 2023-08-23 03:59 PM PDT -shavinski,2023-08-27T03:33:00Z,- shavinski pull request merged: [5294](https://github.com/hackforla/website/pull/5294#event-10201065578) at 2023-08-26 08:33 PM PDT -shavinski,2023-09-15T03:37:02Z,- shavinski assigned to issue: [5532](https://github.com/hackforla/website/issues/5532) at 2023-09-14 08:37 PM PDT -shavinski,2023-09-15T03:37:34Z,- shavinski unassigned from issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720436955) at 2023-09-14 08:37 PM PDT -shavinski,2023-09-15T03:37:56Z,- shavinski assigned to issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720436955) at 2023-09-14 08:37 PM PDT -shavinski,2023-09-15T03:40:21Z,- shavinski commented on issue: [5532](https://github.com/hackforla/website/issues/5532#issuecomment-1720438495) at 2023-09-14 08:40 PM PDT -shavinski,2023-09-26T21:16:21Z,- shavinski assigned to issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1484399497) at 2023-09-26 02:16 PM PDT -shavinski,2023-09-26T21:18:05Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1736315071) at 2023-09-26 02:18 PM PDT -shavinski,2023-09-26T21:52:01Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1736351683) at 2023-09-26 02:52 PM PDT -shavinski,2023-09-27T18:54:11Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1737919357) at 2023-09-27 11:54 AM PDT -shavinski,2023-09-28T18:38:43Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1739828392) at 2023-09-28 11:38 AM PDT -shavinski,2023-09-30T20:20:52Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1741851926) at 2023-09-30 01:20 PM PDT -shavinski,2023-09-30T20:47:19Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1741856208) at 2023-09-30 01:47 PM PDT -shavinski,2023-10-06T00:05:53Z,- shavinski commented on issue: [4134](https://github.com/hackforla/website/issues/4134#issuecomment-1749814441) at 2023-10-05 05:05 PM PDT -sheehanrobb,5356,SKILLS ISSUE -sheehanrobb,2023-08-30T03:49:37Z,- sheehanrobb opened issue: [5356](https://github.com/hackforla/website/issues/5356) at 2023-08-29 08:49 PM PDT -sheehanrobb,2023-08-30T04:01:40Z,- sheehanrobb assigned to issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1698446579) at 2023-08-29 09:01 PM PDT -sheehanrobb,2023-09-09T03:01:59Z,- sheehanrobb commented on issue: [5356](https://github.com/hackforla/website/issues/5356#issuecomment-1712395892) at 2023-09-08 08:01 PM PDT -sheehanrobb,2023-09-09T03:06:46Z,- sheehanrobb assigned to issue: [5386](https://github.com/hackforla/website/issues/5386) at 2023-09-08 08:06 PM PDT -sheehanrobb,2023-09-09T03:44:02Z,- sheehanrobb commented on issue: [5386](https://github.com/hackforla/website/issues/5386#issuecomment-1712403442) at 2023-09-08 08:44 PM PDT -sheehanrobb,2023-09-10T02:57:57Z,- sheehanrobb opened pull request: [5469](https://github.com/hackforla/website/pull/5469) at 2023-09-09 07:57 PM PDT -sheehanrobb,2023-09-10T21:30:50Z,- sheehanrobb commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1712944488) at 2023-09-10 02:30 PM PDT -sheehanrobb,2023-09-14T05:29:49Z,- sheehanrobb commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1718787023) at 2023-09-13 10:29 PM PDT -sheehanrobb,2023-09-17T20:48:34Z,- sheehanrobb pull request closed w/o merging: [5469](https://github.com/hackforla/website/pull/5469#event-10391987409) at 2023-09-17 01:48 PM PDT -sheehanrobb,2023-09-17T20:50:57Z,- sheehanrobb commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1722565959) at 2023-09-17 01:50 PM PDT -sheehanrobb,2023-09-17T20:54:13Z,- sheehanrobb commented on issue: [5386](https://github.com/hackforla/website/issues/5386#issuecomment-1722566532) at 2023-09-17 01:54 PM PDT -sheehanrobb,2023-09-18T19:50:26Z,- sheehanrobb opened pull request: [5555](https://github.com/hackforla/website/pull/5555) at 2023-09-18 12:50 PM PDT -sheehanrobb,2023-09-18T20:05:23Z,- sheehanrobb commented on pull request: [5555](https://github.com/hackforla/website/pull/5555#issuecomment-1724291184) at 2023-09-18 01:05 PM PDT -sheehanrobb,2023-09-18T20:10:05Z,- sheehanrobb pull request merged: [5555](https://github.com/hackforla/website/pull/5555#event-10402451737) at 2023-09-18 01:10 PM PDT -sheehanrobb,2023-09-18T21:17:04Z,- sheehanrobb commented on pull request: [5555](https://github.com/hackforla/website/pull/5555#issuecomment-1724459523) at 2023-09-18 02:17 PM PDT -sheehanrobb,2023-09-18T21:18:49Z,- sheehanrobb closed issue as completed: [5356](https://github.com/hackforla/website/issues/5356#event-10403052471) at 2023-09-18 02:18 PM PDT -sheehanrobb,2023-09-27T03:02:29Z,- sheehanrobb commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1736600650) at 2023-09-26 08:02 PM PDT -sheehanrobb,2023-09-30T22:05:45Z,- sheehanrobb commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1741869411) at 2023-09-30 03:05 PM PDT -sheehanrobb,2023-09-30T22:12:10Z,- sheehanrobb assigned to issue: [5439](https://github.com/hackforla/website/issues/5439#issuecomment-1704814133) at 2023-09-30 03:12 PM PDT -sheehanrobb,2023-09-30T22:48:01Z,- sheehanrobb opened pull request: [5636](https://github.com/hackforla/website/pull/5636) at 2023-09-30 03:48 PM PDT -sheehanrobb,2023-10-01T08:19:05Z,- sheehanrobb commented on pull request: [5636](https://github.com/hackforla/website/pull/5636#issuecomment-1742001867) at 2023-10-01 01:19 AM PDT -sheehanrobb,2023-10-01T17:38:39Z,- sheehanrobb pull request merged: [5636](https://github.com/hackforla/website/pull/5636#event-10520111737) at 2023-10-01 10:38 AM PDT -Sheikh-JamirAlam,2023-01-28T17:07:20Z,- Sheikh-JamirAlam opened pull request: [3886](https://github.com/hackforla/website/pull/3886) at 2023-01-28 09:07 AM PST -Sheikh-JamirAlam,2023-01-30T14:54:45Z,- Sheikh-JamirAlam commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1408768254) at 2023-01-30 06:54 AM PST -Sheikh-JamirAlam,2023-01-30T23:46:26Z,- Sheikh-JamirAlam pull request closed w/o merging: [3886](https://github.com/hackforla/website/pull/3886#event-8393614382) at 2023-01-30 03:46 PM PST -SheIsBukki,2022-02-25T13:41:31Z,- SheIsBukki opened issue: [2888](https://github.com/hackforla/website/issues/2888) at 2022-02-25 05:41 AM PST -SheIsBukki,2022-02-28T16:53:59Z,- SheIsBukki commented on issue: [2888](https://github.com/hackforla/website/issues/2888#issuecomment-1054458322) at 2022-02-28 08:53 AM PST -sheltoG,2021-08-12T20:05:20Z,- sheltoG assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -sheltoG,2021-08-13T16:37:56Z,- sheltoG opened issue: [2108](https://github.com/hackforla/website/issues/2108) at 2021-08-13 09:37 AM PDT -sheltoG,2021-08-18T19:37:49Z,- sheltoG commented on issue: [1407](https://github.com/hackforla/website/issues/1407#issuecomment-901378279) at 2021-08-18 12:37 PM PDT -sheltoG,2021-08-18T19:41:00Z,- sheltoG commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-901380154) at 2021-08-18 12:41 PM PDT -sheltoG,2021-08-18T19:48:16Z,- sheltoG commented on issue: [2080](https://github.com/hackforla/website/issues/2080#issuecomment-901384357) at 2021-08-18 12:48 PM PDT -sheltoG,2021-08-18T19:59:56Z,- sheltoG commented on issue: [2112](https://github.com/hackforla/website/issues/2112#issuecomment-901391271) at 2021-08-18 12:59 PM PDT -sheltoG,2021-08-18T20:00:26Z,- sheltoG commented on issue: [2113](https://github.com/hackforla/website/issues/2113#issuecomment-901391534) at 2021-08-18 01:00 PM PDT -sheltoG,2021-08-18T20:02:51Z,- sheltoG commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-901393174) at 2021-08-18 01:02 PM PDT -sheltoG,2021-08-18T20:29:21Z,- sheltoG assigned to issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-08-18 01:29 PM PDT -sheltoG,2021-08-19T18:07:02Z,- sheltoG commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-902129697) at 2021-08-19 11:07 AM PDT -sheltoG,2021-08-22T19:21:02Z,- sheltoG opened issue: [2161](https://github.com/hackforla/website/issues/2161) at 2021-08-22 12:21 PM PDT -sheltoG,2021-08-22T20:03:39Z,- sheltoG opened issue: [2163](https://github.com/hackforla/website/issues/2163) at 2021-08-22 01:03 PM PDT -sheltoG,2021-08-23T17:08:51Z,- sheltoG commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-903956192) at 2021-08-23 10:08 AM PDT -sheltoG,2021-08-25T02:24:18Z,- sheltoG assigned to issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-902480195) at 2021-08-24 07:24 PM PDT -sheltoG,2021-08-31T20:35:06Z,- sheltoG opened issue: [2212](https://github.com/hackforla/website/issues/2212) at 2021-08-31 01:35 PM PDT -sheltoG,2021-08-31T20:49:12Z,- sheltoG commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-909624981) at 2021-08-31 01:49 PM PDT -sheltoG,2021-09-14T22:01:32Z,- sheltoG commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-919543539) at 2021-09-14 03:01 PM PDT -sheltoG,2021-09-15T21:15:32Z,- sheltoG opened issue: [2268](https://github.com/hackforla/website/issues/2268) at 2021-09-15 02:15 PM PDT -sheltoG,2021-09-20T21:07:06Z,- sheltoG closed issue as completed: [950](https://github.com/hackforla/website/issues/950#event-5331008455) at 2021-09-20 02:07 PM PDT -sheltoG,2021-09-20T21:07:15Z,- sheltoG reopened issue: [950](https://github.com/hackforla/website/issues/950#event-5331008455) at 2021-09-20 02:07 PM PDT -sheltoG,2021-09-21T19:18:26Z,- sheltoG opened issue: [2296](https://github.com/hackforla/website/issues/2296) at 2021-09-21 12:18 PM PDT -sheltoG,2021-09-29T15:02:56Z,- sheltoG commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-930262528) at 2021-09-29 08:02 AM PDT -sheltoG,2021-10-17T16:26:37Z,- sheltoG opened issue: [2368](https://github.com/hackforla/website/issues/2368) at 2021-10-17 09:26 AM PDT -sheltoG,2022-01-11T04:18:31Z,- sheltoG unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-1008349490) at 2022-01-10 08:18 PM PST -sherririllingux,2950,SKILLS ISSUE -sherririllingux,2022-03-08T04:45:01Z,- sherririllingux opened issue: [2938](https://github.com/hackforla/website/issues/2938) at 2022-03-07 08:45 PM PST -sherririllingux,2022-03-09T22:38:13Z,- sherririllingux opened issue: [2950](https://github.com/hackforla/website/issues/2950) at 2022-03-09 02:38 PM PST -sherririllingux,2022-03-09T22:39:12Z,- sherririllingux assigned to issue: [2950](https://github.com/hackforla/website/issues/2950#issuecomment-1063450465) at 2022-03-09 02:39 PM PST -sherririllingux,2022-03-18T19:09:32Z,- sherririllingux assigned to issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1066132147) at 2022-03-18 12:09 PM PDT -sherririllingux,2022-03-23T01:24:10Z,- sherririllingux opened issue: [3003](https://github.com/hackforla/website/issues/3003) at 2022-03-22 06:24 PM PDT -sherririllingux,2022-03-23T18:22:17Z,- sherririllingux opened issue: [3005](https://github.com/hackforla/website/issues/3005) at 2022-03-23 11:22 AM PDT -sherririllingux,2022-03-25T21:16:27Z,- sherririllingux commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1079440137) at 2022-03-25 02:16 PM PDT -sherririllingux,2022-03-25T21:18:49Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1079441763) at 2022-03-25 02:18 PM PDT -sherririllingux,2022-03-26T00:05:49Z,- sherririllingux opened issue: [3011](https://github.com/hackforla/website/issues/3011) at 2022-03-25 05:05 PM PDT -sherririllingux,2022-03-28T00:35:52Z,- sherririllingux opened issue: [3019](https://github.com/hackforla/website/issues/3019) at 2022-03-27 05:35 PM PDT -sherririllingux,2022-04-10T02:45:00Z,- sherririllingux commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1094163394) at 2022-04-09 07:45 PM PDT -sherririllingux,2022-04-10T02:58:56Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1094164658) at 2022-04-09 07:58 PM PDT -sherririllingux,2022-04-10T03:09:49Z,- sherririllingux commented on issue: [3011](https://github.com/hackforla/website/issues/3011#issuecomment-1094165729) at 2022-04-09 08:09 PM PDT -sherririllingux,2022-04-12T20:45:30Z,- sherririllingux closed issue as completed: [2950](https://github.com/hackforla/website/issues/2950#event-6422284503) at 2022-04-12 01:45 PM PDT -sherririllingux,2022-04-29T17:01:35Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1113530941) at 2022-04-29 10:01 AM PDT -sherririllingux,2022-05-18T18:30:01Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1130369574) at 2022-05-18 11:30 AM PDT -sherririllingux,2022-05-29T00:38:16Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1140350331) at 2022-05-28 05:38 PM PDT -sherririllingux,2022-06-07T00:00:33Z,- sherririllingux commented on issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1148049214) at 2022-06-06 05:00 PM PDT -sherririllingux,2022-07-13T19:46:11Z,- sherririllingux unassigned from issue: [2974](https://github.com/hackforla/website/issues/2974#issuecomment-1178645021) at 2022-07-13 12:46 PM PDT -shi-kuang,6344,SKILLS ISSUE -shi-kuang,2024-02-21T03:52:01Z,- shi-kuang opened issue: [6344](https://github.com/hackforla/website/issues/6344) at 2024-02-20 07:52 PM PST -shi-kuang,2024-02-21T03:52:02Z,- shi-kuang assigned to issue: [6344](https://github.com/hackforla/website/issues/6344) at 2024-02-20 07:52 PM PST -Shienny1,2024-11-18T20:06:36Z,- Shienny1 commented on issue: [7726](https://github.com/hackforla/website/issues/7726#issuecomment-2484007054) at 2024-11-18 12:06 PM PST -Shienny1,2024-11-18T20:19:25Z,- Shienny1 commented on issue: [7726](https://github.com/hackforla/website/issues/7726#issuecomment-2484047688) at 2024-11-18 12:19 PM PST -Shikha0428,5909,SKILLS ISSUE -Shikha0428,2023-11-16T01:37:10Z,- Shikha0428 opened issue: [5909](https://github.com/hackforla/website/issues/5909) at 2023-11-15 05:37 PM PST -Shikha0428,2023-11-16T01:55:54Z,- Shikha0428 assigned to issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1813609300) at 2023-11-15 05:55 PM PST -Shikha0428,2024-02-16T06:19:13Z,- Shikha0428 assigned to issue: [5878](https://github.com/hackforla/website/issues/5878#issuecomment-1800787717) at 2024-02-15 10:19 PM PST -Shikha0428,2024-02-23T06:13:06Z,- Shikha0428 opened pull request: [6363](https://github.com/hackforla/website/pull/6363) at 2024-02-22 10:13 PM PST -Shikha0428,2024-02-23T06:35:16Z,- Shikha0428 commented on issue: [5909](https://github.com/hackforla/website/issues/5909#issuecomment-1960801310) at 2024-02-22 10:35 PM PST -Shikha0428,2024-02-28T06:25:27Z,- Shikha0428 pull request merged: [6363](https://github.com/hackforla/website/pull/6363#event-11946953793) at 2024-02-27 10:25 PM PST -Shikha0428,2024-02-28T16:13:10Z,- Shikha0428 commented on pull request: [6363](https://github.com/hackforla/website/pull/6363#issuecomment-1969327417) at 2024-02-28 08:13 AM PST -shimahoush,3412,SKILLS ISSUE -shimahoush,2022-07-20T21:33:26Z,- shimahoush opened issue: [3412](https://github.com/hackforla/website/issues/3412) at 2022-07-20 02:33 PM PDT -shimahoush,2022-07-20T21:33:27Z,- shimahoush assigned to issue: [3412](https://github.com/hackforla/website/issues/3412) at 2022-07-20 02:33 PM PDT -shinhope,2021-03-26T17:49:23Z,- shinhope assigned to issue: [1329](https://github.com/hackforla/website/issues/1329) at 2021-03-26 10:49 AM PDT -shinhope,2021-03-29T23:36:13Z,- shinhope commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-809794915) at 2021-03-29 04:36 PM PDT -shinhope,2021-03-29T23:36:56Z,- shinhope commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-809795162) at 2021-03-29 04:36 PM PDT -shinhope,2021-03-31T23:14:14Z,- shinhope assigned to issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-801331285) at 2021-03-31 04:14 PM PDT -shinhope,2021-04-01T01:50:36Z,- shinhope commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-811579331) at 2021-03-31 06:50 PM PDT -shinhope,2021-04-08T17:57:12Z,- shinhope commented on issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816023698) at 2021-04-08 10:57 AM PDT -shinhope,2021-04-08T20:01:33Z,- shinhope unassigned from issue: [1150](https://github.com/hackforla/website/issues/1150#issuecomment-816128653) at 2021-04-08 01:01 PM PDT -shinhope,2021-04-27T02:59:04Z,- shinhope assigned to issue: [1051](https://github.com/hackforla/website/issues/1051) at 2021-04-26 07:59 PM PDT -shinhope,2021-04-27T16:12:58Z,- shinhope unassigned from issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-813555999) at 2021-04-27 09:12 AM PDT -shinhope,2021-05-01T05:55:25Z,- shinhope commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-830556217) at 2021-04-30 10:55 PM PDT -shinhope,2021-05-07T16:25:29Z,- shinhope unassigned from issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-830556217) at 2021-05-07 09:25 AM PDT -shinhope,2021-05-20T22:36:02Z,- shinhope assigned to issue: [1555](https://github.com/hackforla/website/issues/1555) at 2021-05-20 03:36 PM PDT -shinhope,2021-05-23T23:48:32Z,- shinhope assigned to issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-23 04:48 PM PDT -shinhope,2021-05-30T15:52:19Z,- shinhope unassigned from issue: [1552](https://github.com/hackforla/website/issues/1552#issuecomment-842787015) at 2021-05-30 08:52 AM PDT -Shiv10122003,2023-09-28T19:01:12Z,- Shiv10122003 commented on issue: [5366](https://github.com/hackforla/website/issues/5366#issuecomment-1739856247) at 2023-09-28 12:01 PM PDT -ShivaNagachander,2023-10-03T14:05:03Z,- ShivaNagachander opened pull request: [5651](https://github.com/hackforla/website/pull/5651) at 2023-10-03 07:05 AM PDT -ShivaNagachander,2023-10-03T18:43:42Z,- ShivaNagachander pull request closed w/o merging: [5651](https://github.com/hackforla/website/pull/5651#event-10542076991) at 2023-10-03 11:43 AM PDT -ShivangRawat30,2023-05-15T12:46:15Z,- ShivangRawat30 commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1547795783) at 2023-05-15 05:46 AM PDT -ShivangRawat30,2023-05-15T12:52:48Z,- ShivangRawat30 commented on issue: [4503](https://github.com/hackforla/website/issues/4503#issuecomment-1547804332) at 2023-05-15 05:52 AM PDT -ShivangRawat30,2023-05-15T12:53:18Z,- ShivangRawat30 commented on issue: [4502](https://github.com/hackforla/website/issues/4502#issuecomment-1547805009) at 2023-05-15 05:53 AM PDT -ShivangRawat30,2023-05-15T12:53:46Z,- ShivangRawat30 commented on issue: [4491](https://github.com/hackforla/website/issues/4491#issuecomment-1547805875) at 2023-05-15 05:53 AM PDT -ShivangRawat30,2023-05-15T17:26:17Z,- ShivangRawat30 opened pull request: [4672](https://github.com/hackforla/website/pull/4672) at 2023-05-15 10:26 AM PDT -ShivangRawat30,2023-05-15T17:27:27Z,- ShivangRawat30 pull request closed w/o merging: [4672](https://github.com/hackforla/website/pull/4672#event-9249216323) at 2023-05-15 10:27 AM PDT -ShivangRawat30,2023-05-15T17:28:34Z,- ShivangRawat30 commented on issue: [4670](https://github.com/hackforla/website/issues/4670#issuecomment-1548263439) at 2023-05-15 10:28 AM PDT -ShivangRawat30,2023-05-15T17:57:10Z,- ShivangRawat30 opened pull request: [4673](https://github.com/hackforla/website/pull/4673) at 2023-05-15 10:57 AM PDT -ShivangRawat30,2023-05-16T06:03:37Z,- ShivangRawat30 pull request closed w/o merging: [4673](https://github.com/hackforla/website/pull/4673#event-9253733630) at 2023-05-15 11:03 PM PDT - DUPLICATE - 7977 (ShivaniDesai1012),7975,SKILLS ISSUE -ShivaniDesai1012,7977,SKILLS ISSUE -ShivaniDesai1012,2025-03-04T04:27:37Z,- ShivaniDesai1012 opened issue: [7975](https://github.com/hackforla/website/issues/7975) at 2025-03-03 08:27 PM PST -ShivaniDesai1012,2025-03-04T04:29:06Z,- ShivaniDesai1012 assigned to issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2696159640) at 2025-03-03 08:29 PM PST -ShivaniDesai1012,2025-03-04T04:39:09Z,- ShivaniDesai1012 opened issue: [7977](https://github.com/hackforla/website/issues/7977) at 2025-03-03 08:39 PM PST -ShivaniDesai1012,2025-03-04T04:39:09Z,- ShivaniDesai1012 assigned to issue: [7977](https://github.com/hackforla/website/issues/7977) at 2025-03-03 08:39 PM PST -ShivaniDesai1012,2025-04-11T02:49:03Z,- ShivaniDesai1012 unassigned from issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2777733579) at 2025-04-10 07:49 PM PDT -ShivaniDesai1012,2025-04-11T02:55:57Z,- ShivaniDesai1012 unassigned from issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2777733454) at 2025-04-10 07:55 PM PDT -ShivaniDesai1012,2025-04-16T03:27:24Z,- ShivaniDesai1012 assigned to issue: [7975](https://github.com/hackforla/website/issues/7975#issuecomment-2777733579) at 2025-04-15 08:27 PM PDT -ShivaniDesai1012,2025-04-16T23:39:09Z,- ShivaniDesai1012 assigned to issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-2777733454) at 2025-04-16 04:39 PM PDT -shrinjayshresth1,2024-03-19T18:05:32Z,- shrinjayshresth1 commented on issue: [6232](https://github.com/hackforla/website/issues/6232#issuecomment-2007823099) at 2024-03-19 11:05 AM PDT -shrinjayshresth1,2024-03-19T18:20:58Z,- shrinjayshresth1 commented on issue: [6474](https://github.com/hackforla/website/issues/6474#issuecomment-2007851060) at 2024-03-19 11:20 AM PDT -shrinjayshresth1,2024-04-03T19:31:19Z,- shrinjayshresth1 commented on issue: [6514](https://github.com/hackforla/website/issues/6514#issuecomment-2035422466) at 2024-04-03 12:31 PM PDT -Shubh504,2020-10-16T03:07:12Z,- Shubh504 opened pull request: [785](https://github.com/hackforla/website/pull/785) at 2020-10-15 08:07 PM PDT -Shubh504,2020-10-22T21:32:40Z,- Shubh504 pull request closed w/o merging: [785](https://github.com/hackforla/website/pull/785#event-3911231413) at 2020-10-22 02:32 PM PDT -siddhanthiyer-99,4968,SKILLS ISSUE -siddhanthiyer-99,2023-07-18T01:51:46Z,- siddhanthiyer-99 opened issue: [4968](https://github.com/hackforla/website/issues/4968) at 2023-07-17 06:51 PM PDT -siddhanthiyer-99,2023-07-18T02:31:47Z,- siddhanthiyer-99 assigned to issue: [4968](https://github.com/hackforla/website/issues/4968) at 2023-07-17 07:31 PM PDT -siddhanthiyer-99,2023-09-07T19:34:14Z,- siddhanthiyer-99 assigned to issue: [5385](https://github.com/hackforla/website/issues/5385) at 2023-09-07 12:34 PM PDT -siddhanthiyer-99,2023-09-07T20:22:13Z,- siddhanthiyer-99 opened pull request: [5456](https://github.com/hackforla/website/pull/5456) at 2023-09-07 01:22 PM PDT -siddhanthiyer-99,2023-09-07T23:02:43Z,- siddhanthiyer-99 commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1710868074) at 2023-09-07 04:02 PM PDT -siddhanthiyer-99,2023-09-11T17:18:14Z,- siddhanthiyer-99 commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1714287038) at 2023-09-11 10:18 AM PDT -siddhanthiyer-99,2023-09-11T18:25:46Z,- siddhanthiyer-99 commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1714377047) at 2023-09-11 11:25 AM PDT -siddhanthiyer-99,2023-09-11T19:27:37Z,- siddhanthiyer-99 pull request merged: [5456](https://github.com/hackforla/website/pull/5456#event-10338169925) at 2023-09-11 12:27 PM PDT -siddhanthiyer-99,2023-10-15T15:21:02Z,- siddhanthiyer-99 commented on issue: [4968](https://github.com/hackforla/website/issues/4968#issuecomment-1763422417) at 2023-10-15 08:21 AM PDT -siddhanthiyer-99,2023-10-15T15:27:19Z,- siddhanthiyer-99 assigned to issue: [5675](https://github.com/hackforla/website/issues/5675#issuecomment-1752028095) at 2023-10-15 08:27 AM PDT -siddhanthiyer-99,2023-10-16T19:49:46Z,- siddhanthiyer-99 opened pull request: [5719](https://github.com/hackforla/website/pull/5719) at 2023-10-16 12:49 PM PDT -siddhanthiyer-99,2023-10-17T18:58:23Z,- siddhanthiyer-99 commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1766989907) at 2023-10-17 11:58 AM PDT -siddhanthiyer-99,2023-10-18T14:19:20Z,- siddhanthiyer-99 pull request merged: [5719](https://github.com/hackforla/website/pull/5719#event-10693815348) at 2023-10-18 07:19 AM PDT -siddhanthiyer-99,2023-10-18T14:58:22Z,- siddhanthiyer-99 commented on pull request: [5719](https://github.com/hackforla/website/pull/5719#issuecomment-1768650037) at 2023-10-18 07:58 AM PDT -siddhanthiyer-99,2024-01-03T16:32:26Z,- siddhanthiyer-99 assigned to issue: [5972](https://github.com/hackforla/website/issues/5972#issuecomment-1840254376) at 2024-01-03 08:32 AM PST -siddhanthiyer-99,2024-01-04T20:07:44Z,- siddhanthiyer-99 opened pull request: [6061](https://github.com/hackforla/website/pull/6061) at 2024-01-04 12:07 PM PST -siddhanthiyer-99,2024-01-07T21:37:28Z,- siddhanthiyer-99 commented on pull request: [6061](https://github.com/hackforla/website/pull/6061#issuecomment-1880183367) at 2024-01-07 01:37 PM PST -siddhanthiyer-99,2024-01-08T01:24:06Z,- siddhanthiyer-99 pull request merged: [6061](https://github.com/hackforla/website/pull/6061#event-11412496362) at 2024-01-07 05:24 PM PST -siddhanthiyer-99,2024-02-14T16:14:14Z,- siddhanthiyer-99 assigned to issue: [5985](https://github.com/hackforla/website/issues/5985) at 2024-02-14 08:14 AM PST -siddhanthiyer-99,2024-02-14T16:15:46Z,- siddhanthiyer-99 commented on issue: [4968](https://github.com/hackforla/website/issues/4968#issuecomment-1944156589) at 2024-02-14 08:15 AM PST -siddhanthiyer-99,2024-02-14T16:22:03Z,- siddhanthiyer-99 commented on issue: [5985](https://github.com/hackforla/website/issues/5985#issuecomment-1944168480) at 2024-02-14 08:22 AM PST -siddhanthiyer-99,2024-02-27T17:07:49Z,- siddhanthiyer-99 assigned to issue: [5993](https://github.com/hackforla/website/issues/5993) at 2024-02-27 09:07 AM PST -siddhanthiyer-99,2024-02-27T17:09:13Z,- siddhanthiyer-99 commented on issue: [5993](https://github.com/hackforla/website/issues/5993#issuecomment-1967183206) at 2024-02-27 09:09 AM PST -siddhanthiyer-99,2024-02-27T20:22:21Z,- siddhanthiyer-99 commented on issue: [5993](https://github.com/hackforla/website/issues/5993#issuecomment-1967528238) at 2024-02-27 12:22 PM PST -siddhanthiyer-99,2024-04-02T21:19:40Z,- siddhanthiyer-99 assigned to issue: [6489](https://github.com/hackforla/website/issues/6489) at 2024-04-02 02:19 PM PDT -siddhanthiyer-99,2024-04-02T21:23:28Z,- siddhanthiyer-99 commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2033123891) at 2024-04-02 02:23 PM PDT -siddhanthiyer-99,2024-04-04T03:38:42Z,- siddhanthiyer-99 commented on issue: [6489](https://github.com/hackforla/website/issues/6489#issuecomment-2036114108) at 2024-04-03 08:38 PM PDT -siddharthpvaghela,7066,SKILLS ISSUE -siddharthpvaghela,2024-06-26T19:26:42Z,- siddharthpvaghela opened issue: [7066](https://github.com/hackforla/website/issues/7066) at 2024-06-26 12:26 PM PDT -siddharthpvaghela,2024-06-26T19:26:43Z,- siddharthpvaghela assigned to issue: [7066](https://github.com/hackforla/website/issues/7066) at 2024-06-26 12:26 PM PDT -siddharthpvaghela,2024-07-02T04:02:43Z,- siddharthpvaghela commented on issue: [7066](https://github.com/hackforla/website/issues/7066#issuecomment-2201849159) at 2024-07-01 09:02 PM PDT -Sihemgourou,2021-05-23T17:37:35Z,- Sihemgourou commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-846598663) at 2021-05-23 10:37 AM PDT -Sihemgourou,2021-05-23T17:49:03Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-846600031) at 2021-05-23 10:49 AM PDT -Sihemgourou,2021-05-23T17:51:31Z,- Sihemgourou commented on issue: [1028](https://github.com/hackforla/website/issues/1028#issuecomment-846600374) at 2021-05-23 10:51 AM PDT -Sihemgourou,2021-05-23T18:01:16Z,- Sihemgourou commented on issue: [1534](https://github.com/hackforla/website/issues/1534#issuecomment-846601599) at 2021-05-23 11:01 AM PDT -Sihemgourou,2021-05-30T17:22:08Z,- Sihemgourou assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-851032894) at 2021-05-30 10:22 AM PDT -Sihemgourou,2021-06-06T15:30:45Z,- Sihemgourou commented on issue: [1691](https://github.com/hackforla/website/issues/1691#issuecomment-855417180) at 2021-06-06 08:30 AM PDT -Sihemgourou,2021-06-06T17:49:00Z,- Sihemgourou assigned to issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855435299) at 2021-06-06 10:49 AM PDT -Sihemgourou,2021-06-06T18:58:55Z,- Sihemgourou unassigned from issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855435299) at 2021-06-06 11:58 AM PDT -Sihemgourou,2021-06-06T19:54:08Z,- Sihemgourou assigned to issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-855452951) at 2021-06-06 12:54 PM PDT -Sihemgourou,2021-06-06T21:14:59Z,- Sihemgourou assigned to issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2021-06-06 02:14 PM PDT -Sihemgourou,2021-06-09T19:58:15Z,- Sihemgourou closed issue as completed: [838](https://github.com/hackforla/website/issues/838#event-4867397453) at 2021-06-09 12:58 PM PDT -Sihemgourou,2021-06-09T20:13:59Z,- Sihemgourou commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-858070260) at 2021-06-09 01:13 PM PDT -Sihemgourou,2021-06-09T20:16:19Z,- Sihemgourou commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-858071608) at 2021-06-09 01:16 PM PDT -Sihemgourou,2021-06-09T20:30:39Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-858079946) at 2021-06-09 01:30 PM PDT -Sihemgourou,2021-06-09T20:31:35Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-858080453) at 2021-06-09 01:31 PM PDT -Sihemgourou,2021-06-09T20:36:46Z,- Sihemgourou commented on issue: [1531](https://github.com/hackforla/website/issues/1531#issuecomment-858083305) at 2021-06-09 01:36 PM PDT -Sihemgourou,2021-06-09T20:48:15Z,- Sihemgourou commented on issue: [1289](https://github.com/hackforla/website/issues/1289#issuecomment-858089811) at 2021-06-09 01:48 PM PDT -Sihemgourou,2021-06-09T20:51:34Z,- Sihemgourou commented on issue: [1441](https://github.com/hackforla/website/issues/1441#issuecomment-858091832) at 2021-06-09 01:51 PM PDT -Sihemgourou,2021-06-09T20:55:30Z,- Sihemgourou commented on issue: [1549](https://github.com/hackforla/website/issues/1549#issuecomment-858094338) at 2021-06-09 01:55 PM PDT -Sihemgourou,2021-06-09T20:59:48Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-858096967) at 2021-06-09 01:59 PM PDT -Sihemgourou,2021-06-09T21:01:08Z,- Sihemgourou commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-858097827) at 2021-06-09 02:01 PM PDT -Sihemgourou,2021-06-09T21:04:05Z,- Sihemgourou commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-858099678) at 2021-06-09 02:04 PM PDT -Sihemgourou,2021-06-09T21:16:50Z,- Sihemgourou commented on issue: [1594](https://github.com/hackforla/website/issues/1594#issuecomment-858108265) at 2021-06-09 02:16 PM PDT -Sihemgourou,2021-06-10T19:37:16Z,- Sihemgourou commented on issue: [1548](https://github.com/hackforla/website/issues/1548#issuecomment-858969216) at 2021-06-10 12:37 PM PDT -Sihemgourou,2021-06-11T17:17:23Z,- Sihemgourou assigned to issue: [1709](https://github.com/hackforla/website/issues/1709) at 2021-06-11 10:17 AM PDT -Sihemgourou,2021-06-11T17:48:53Z,- Sihemgourou opened issue: [1712](https://github.com/hackforla/website/issues/1712) at 2021-06-11 10:48 AM PDT -Sihemgourou,2021-06-11T19:34:16Z,- Sihemgourou opened pull request: [1713](https://github.com/hackforla/website/pull/1713) at 2021-06-11 12:34 PM PDT -Sihemgourou,2021-06-11T19:36:51Z,- Sihemgourou closed issue by PR 1713: [1629](https://github.com/hackforla/website/issues/1629#event-4879806192) at 2021-06-11 12:36 PM PDT -Sihemgourou,2021-06-11T19:36:51Z,- Sihemgourou pull request merged: [1713](https://github.com/hackforla/website/pull/1713#event-4879806196) at 2021-06-11 12:36 PM PDT -Sihemgourou,2021-06-11T21:41:45Z,- Sihemgourou opened pull request: [1715](https://github.com/hackforla/website/pull/1715) at 2021-06-11 02:41 PM PDT -Sihemgourou,2021-06-11T21:42:17Z,- Sihemgourou pull request merged: [1715](https://github.com/hackforla/website/pull/1715#event-4880237039) at 2021-06-11 02:42 PM PDT -Sihemgourou,2021-06-11T22:27:38Z,- Sihemgourou opened issue: [2450](https://github.com/hackforla/website/issues/2450) at 2021-06-11 03:27 PM PDT -Sihemgourou,2021-06-11T23:22:32Z,- Sihemgourou assigned to issue: [2450](https://github.com/hackforla/website/issues/2450) at 2021-06-11 04:22 PM PDT -Sihemgourou,2021-06-11T23:33:12Z,- Sihemgourou closed issue as completed: [1680](https://github.com/hackforla/website/issues/1680#event-4880481238) at 2021-06-11 04:33 PM PDT -Sihemgourou,2021-06-12T00:06:46Z,- Sihemgourou commented on issue: [1690](https://github.com/hackforla/website/issues/1690#issuecomment-859964392) at 2021-06-11 05:06 PM PDT -Sihemgourou,2021-06-12T00:07:28Z,- Sihemgourou closed issue as completed: [1686](https://github.com/hackforla/website/issues/1686#event-4880538743) at 2021-06-11 05:07 PM PDT -Sihemgourou,2021-06-12T00:08:01Z,- Sihemgourou commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859964683) at 2021-06-11 05:08 PM PDT -Sihemgourou,2021-06-12T00:08:01Z,- Sihemgourou commented on issue: [2473](https://github.com/hackforla/website/issues/2473#issuecomment-859964683) at 2021-06-11 05:08 PM PDT -Sihemgourou,2021-06-12T00:12:49Z,- Sihemgourou closed issue by PR 1705: [1590](https://github.com/hackforla/website/issues/1590#event-4880547379) at 2021-06-11 05:12 PM PDT -Sihemgourou,2021-06-12T00:24:29Z,- Sihemgourou closed issue as completed: [1061](https://github.com/hackforla/website/issues/1061#event-4880565981) at 2021-06-11 05:24 PM PDT -Sihemgourou,2021-06-12T00:28:15Z,- Sihemgourou closed issue as completed: [1285](https://github.com/hackforla/website/issues/1285#event-4880570645) at 2021-06-11 05:28 PM PDT -Sihemgourou,2021-06-12T00:28:51Z,- Sihemgourou closed issue as completed: [1070](https://github.com/hackforla/website/issues/1070#event-4880571396) at 2021-06-11 05:28 PM PDT -Sihemgourou,2021-06-12T00:48:40Z,- Sihemgourou commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859971862) at 2021-06-11 05:48 PM PDT -Sihemgourou,2021-06-12T00:54:35Z,- Sihemgourou closed issue as completed: [799](https://github.com/hackforla/website/issues/799#event-4880603563) at 2021-06-11 05:54 PM PDT -Sihemgourou,2021-06-12T01:03:54Z,- Sihemgourou commented on issue: [1690](https://github.com/hackforla/website/issues/1690#issuecomment-859974142) at 2021-06-11 06:03 PM PDT -Sihemgourou,2021-06-12T01:21:23Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-859976548) at 2021-06-11 06:21 PM PDT -Sihemgourou,2021-06-12T01:24:50Z,- Sihemgourou commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-859976977) at 2021-06-11 06:24 PM PDT -Sihemgourou,2021-06-12T01:36:41Z,- Sihemgourou commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-859978475) at 2021-06-11 06:36 PM PDT -Sihemgourou,2021-06-12T02:03:12Z,- Sihemgourou closed issue as completed: [994](https://github.com/hackforla/website/issues/994#event-4880676129) at 2021-06-11 07:03 PM PDT -Sihemgourou,2021-06-12T03:11:05Z,- Sihemgourou commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-859989006) at 2021-06-11 08:11 PM PDT -Sihemgourou,2021-06-12T10:02:24Z,- Sihemgourou assigned to issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-06-12 03:02 AM PDT -Sihemgourou,2021-06-12T10:06:39Z,- Sihemgourou closed issue by PR 1001: [905](https://github.com/hackforla/website/issues/905#event-4881093193) at 2021-06-12 03:06 AM PDT -Sihemgourou,2021-06-12T10:07:33Z,- Sihemgourou closed issue as completed: [906](https://github.com/hackforla/website/issues/906#event-4881094068) at 2021-06-12 03:07 AM PDT -Sihemgourou,2021-06-12T10:10:38Z,- Sihemgourou commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-860032300) at 2021-06-12 03:10 AM PDT -Sihemgourou,2021-06-12T10:15:03Z,- Sihemgourou closed issue as completed: [1119](https://github.com/hackforla/website/issues/1119#event-4881100657) at 2021-06-12 03:15 AM PDT -Sihemgourou,2021-06-12T10:20:33Z,- Sihemgourou closed issue as completed: [1219](https://github.com/hackforla/website/issues/1219#event-4881104744) at 2021-06-12 03:20 AM PDT -Sihemgourou,2021-06-12T10:21:23Z,- Sihemgourou closed issue as completed: [1395](https://github.com/hackforla/website/issues/1395#event-4881105287) at 2021-06-12 03:21 AM PDT -Sihemgourou,2021-06-12T10:26:03Z,- Sihemgourou closed issue as completed: [689](https://github.com/hackforla/website/issues/689#event-4881108886) at 2021-06-12 03:26 AM PDT -Sihemgourou,2021-06-12T10:47:12Z,- Sihemgourou closed issue as completed: [807](https://github.com/hackforla/website/issues/807#event-4881127088) at 2021-06-12 03:47 AM PDT -Sihemgourou,2021-06-12T10:48:39Z,- Sihemgourou closed issue as completed: [701](https://github.com/hackforla/website/issues/701#event-4881128291) at 2021-06-12 03:48 AM PDT -Sihemgourou,2021-06-12T10:49:40Z,- Sihemgourou assigned to issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-780044558) at 2021-06-12 03:49 AM PDT -Sihemgourou,2021-06-12T10:51:38Z,- Sihemgourou closed issue by PR 1999: [1479](https://github.com/hackforla/website/issues/1479#event-4881130569) at 2021-06-12 03:51 AM PDT -Sihemgourou,2021-06-12T10:54:05Z,- Sihemgourou closed issue as completed: [688](https://github.com/hackforla/website/issues/688#event-4881132375) at 2021-06-12 03:54 AM PDT -Sihemgourou,2021-06-12T10:57:15Z,- Sihemgourou closed issue as completed: [794](https://github.com/hackforla/website/issues/794#event-4881134771) at 2021-06-12 03:57 AM PDT -Sihemgourou,2021-06-12T10:57:51Z,- Sihemgourou closed issue as completed: [918](https://github.com/hackforla/website/issues/918#event-4881135273) at 2021-06-12 03:57 AM PDT -Sihemgourou,2021-06-12T11:16:43Z,- Sihemgourou opened issue: [1723](https://github.com/hackforla/website/issues/1723) at 2021-06-12 04:16 AM PDT -Sihemgourou,2021-06-12T12:11:54Z,- Sihemgourou closed issue as completed: [1259](https://github.com/hackforla/website/issues/1259#event-4881204597) at 2021-06-12 05:11 AM PDT -Sihemgourou,2021-06-12T12:12:29Z,- Sihemgourou closed issue as completed: [969](https://github.com/hackforla/website/issues/969#event-4881205012) at 2021-06-12 05:12 AM PDT -Sihemgourou,2021-06-12T12:14:02Z,- Sihemgourou assigned to issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 05:14 AM PDT -Sihemgourou,2021-06-12T12:28:05Z,- Sihemgourou closed issue as completed: [1105](https://github.com/hackforla/website/issues/1105#event-4881217878) at 2021-06-12 05:28 AM PDT -Sihemgourou,2021-06-12T12:31:53Z,- Sihemgourou closed issue as completed: [1621](https://github.com/hackforla/website/issues/1621#event-4881221067) at 2021-06-12 05:31 AM PDT -Sihemgourou,2021-06-12T12:42:13Z,- Sihemgourou closed issue as completed: [916](https://github.com/hackforla/website/issues/916#event-4881229626) at 2021-06-12 05:42 AM PDT -Sihemgourou,2021-06-12T12:54:46Z,- Sihemgourou closed issue as completed: [1057](https://github.com/hackforla/website/issues/1057#event-4881239733) at 2021-06-12 05:54 AM PDT -Sihemgourou,2021-06-12T12:59:36Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860050343) at 2021-06-12 05:59 AM PDT -Sihemgourou,2021-06-12T13:01:39Z,- Sihemgourou assigned to issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860050343) at 2021-06-12 06:01 AM PDT -Sihemgourou,2021-06-12T13:04:15Z,- Sihemgourou closed issue as completed: [1691](https://github.com/hackforla/website/issues/1691#event-4881248358) at 2021-06-12 06:04 AM PDT -Sihemgourou,2021-06-12T13:09:34Z,- Sihemgourou closed issue as completed: [587](https://github.com/hackforla/website/issues/587#event-4881253017) at 2021-06-12 06:09 AM PDT -Sihemgourou,2021-06-12T13:09:40Z,- Sihemgourou commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-860051447) at 2021-06-12 06:09 AM PDT -Sihemgourou,2021-06-12T13:11:00Z,- Sihemgourou closed issue as completed: [765](https://github.com/hackforla/website/issues/765#event-4881254313) at 2021-06-12 06:11 AM PDT -Sihemgourou,2021-06-12T13:12:39Z,- Sihemgourou closed issue as completed: [529](https://github.com/hackforla/website/issues/529#event-4881255820) at 2021-06-12 06:12 AM PDT -Sihemgourou,2021-06-12T13:16:02Z,- Sihemgourou commented on issue: [1712](https://github.com/hackforla/website/issues/1712#issuecomment-860052312) at 2021-06-12 06:16 AM PDT -Sihemgourou,2021-06-12T13:17:03Z,- Sihemgourou opened issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Sihemgourou,2021-06-12T13:17:12Z,- Sihemgourou assigned to issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Sihemgourou,2021-06-12T13:17:21Z,- Sihemgourou unassigned from issue: [1724](https://github.com/hackforla/website/issues/1724) at 2021-06-12 06:17 AM PDT -Sihemgourou,2021-06-12T13:23:11Z,- Sihemgourou opened pull request: [1725](https://github.com/hackforla/website/pull/1725) at 2021-06-12 06:23 AM PDT -Sihemgourou,2021-06-12T13:23:24Z,- Sihemgourou pull request merged: [1725](https://github.com/hackforla/website/pull/1725#event-4881265427) at 2021-06-12 06:23 AM PDT -Sihemgourou,2021-06-12T13:25:29Z,- Sihemgourou closed issue as completed: [1690](https://github.com/hackforla/website/issues/1690#event-4881267285) at 2021-06-12 06:25 AM PDT -Sihemgourou,2021-06-12T13:30:50Z,- Sihemgourou assigned to issue: [1619](https://github.com/hackforla/website/issues/1619) at 2021-06-12 06:30 AM PDT -Sihemgourou,2021-06-12T13:31:48Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-860053946) at 2021-06-12 06:31 AM PDT -Sihemgourou,2021-06-12T13:35:00Z,- Sihemgourou closed issue as completed: [1287](https://github.com/hackforla/website/issues/1287#event-4881275618) at 2021-06-12 06:35 AM PDT -Sihemgourou,2021-06-12T14:26:36Z,- Sihemgourou closed issue as completed: [1548](https://github.com/hackforla/website/issues/1548#event-4881324557) at 2021-06-12 07:26 AM PDT -Sihemgourou,2021-06-12T16:32:03Z,- Sihemgourou unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -Sihemgourou,2021-06-12T17:04:26Z,- Sihemgourou closed issue as completed: [1692](https://github.com/hackforla/website/issues/1692#event-4881473812) at 2021-06-12 10:04 AM PDT -Sihemgourou,2021-06-12T17:10:28Z,- Sihemgourou unassigned from issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2021-06-12 10:10 AM PDT -Sihemgourou,2021-06-12T17:10:47Z,- Sihemgourou unassigned from issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-06-12 10:10 AM PDT -Sihemgourou,2021-06-12T17:14:33Z,- Sihemgourou closed issue as completed: [610](https://github.com/hackforla/website/issues/610#event-4881483461) at 2021-06-12 10:14 AM PDT -Sihemgourou,2021-06-12T19:23:52Z,- Sihemgourou commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-860097793) at 2021-06-12 12:23 PM PDT -Sihemgourou,2021-06-12T19:51:12Z,- Sihemgourou closed issue by PR 1719: [1712](https://github.com/hackforla/website/issues/1712#event-4881611268) at 2021-06-12 12:51 PM PDT -Sihemgourou,2021-06-12T20:00:11Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-860101799) at 2021-06-12 01:00 PM PDT -Sihemgourou,2021-06-12T20:07:33Z,- Sihemgourou reopened issue: [1479](https://github.com/hackforla/website/issues/1479#event-4881130569) at 2021-06-12 01:07 PM PDT -Sihemgourou,2021-06-12T22:09:34Z,- Sihemgourou opened issue: [1728](https://github.com/hackforla/website/issues/1728) at 2021-06-12 03:09 PM PDT -Sihemgourou,2021-06-12T22:19:30Z,- Sihemgourou commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-860120503) at 2021-06-12 03:19 PM PDT -Sihemgourou,2021-06-12T22:20:36Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860120558) at 2021-06-12 03:20 PM PDT -Sihemgourou,2021-06-12T22:59:59Z,- Sihemgourou assigned to issue: [767](https://github.com/hackforla/website/issues/767#issuecomment-731424200) at 2021-06-12 03:59 PM PDT -Sihemgourou,2021-06-12T23:09:40Z,- Sihemgourou closed issue as completed: [767](https://github.com/hackforla/website/issues/767#event-4881731845) at 2021-06-12 04:09 PM PDT -Sihemgourou,2021-06-12T23:10:01Z,- Sihemgourou opened issue: [1730](https://github.com/hackforla/website/issues/1730) at 2021-06-12 04:10 PM PDT -Sihemgourou,2021-06-12T23:10:02Z,- Sihemgourou assigned to issue: [1730](https://github.com/hackforla/website/issues/1730) at 2021-06-12 04:10 PM PDT -Sihemgourou,2021-06-13T19:00:59Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-860255585) at 2021-06-13 12:00 PM PDT -Sihemgourou,2021-06-13T19:33:19Z,- Sihemgourou commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-860259483) at 2021-06-13 12:33 PM PDT -Sihemgourou,2021-06-13T19:40:21Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-860260265) at 2021-06-13 12:40 PM PDT -Sihemgourou,2021-06-13T19:46:12Z,- Sihemgourou unassigned from issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860258322) at 2021-06-13 12:46 PM PDT -Sihemgourou,2021-06-13T19:46:54Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-860260989) at 2021-06-13 12:46 PM PDT -Sihemgourou,2021-06-13T19:50:43Z,- Sihemgourou opened issue: [1734](https://github.com/hackforla/website/issues/1734) at 2021-06-13 12:50 PM PDT -Sihemgourou,2021-06-13T22:18:14Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-860277696) at 2021-06-13 03:18 PM PDT -Sihemgourou,2021-06-13T22:27:28Z,- Sihemgourou commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-860278715) at 2021-06-13 03:27 PM PDT -Sihemgourou,2021-06-13T22:29:13Z,- Sihemgourou commented on pull request: [1314](https://github.com/hackforla/website/pull/1314#issuecomment-860278939) at 2021-06-13 03:29 PM PDT -Sihemgourou,2021-06-13T22:33:04Z,- Sihemgourou commented on pull request: [1670](https://github.com/hackforla/website/pull/1670#issuecomment-860279384) at 2021-06-13 03:33 PM PDT -Sihemgourou,2021-06-14T18:26:53Z,- Sihemgourou closed issue as completed: [963](https://github.com/hackforla/website/issues/963#event-4887307691) at 2021-06-14 11:26 AM PDT -Sihemgourou,2021-06-14T19:26:44Z,- Sihemgourou closed issue as completed: [618](https://github.com/hackforla/website/issues/618#event-4887561824) at 2021-06-14 12:26 PM PDT -Sihemgourou,2021-06-14T19:48:12Z,- Sihemgourou commented on issue: [1051](https://github.com/hackforla/website/issues/1051#issuecomment-860947231) at 2021-06-14 12:48 PM PDT -Sihemgourou,2021-06-14T19:53:38Z,- Sihemgourou commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-860950529) at 2021-06-14 12:53 PM PDT -Sihemgourou,2021-06-15T21:31:54Z,- Sihemgourou commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-861847837) at 2021-06-15 02:31 PM PDT -Sihemgourou,2021-06-15T21:35:05Z,- Sihemgourou opened issue: [1743](https://github.com/hackforla/website/issues/1743) at 2021-06-15 02:35 PM PDT -Sihemgourou,2021-06-15T21:39:55Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-861851854) at 2021-06-15 02:39 PM PDT -Sihemgourou,2021-06-15T21:40:23Z,- Sihemgourou assigned to issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-861851854) at 2021-06-15 02:40 PM PDT -Sihemgourou,2021-06-15T21:42:38Z,- Sihemgourou commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-861853095) at 2021-06-15 02:42 PM PDT -Sihemgourou,2021-06-16T19:15:10Z,- Sihemgourou commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-862645998) at 2021-06-16 12:15 PM PDT -Sihemgourou,2021-06-16T19:55:22Z,- Sihemgourou commented on issue: [1416](https://github.com/hackforla/website/issues/1416#issuecomment-862670305) at 2021-06-16 12:55 PM PDT -Sihemgourou,2021-06-17T07:40:19Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-863008300) at 2021-06-17 12:40 AM PDT -Sihemgourou,2021-06-17T20:36:03Z,- Sihemgourou assigned to issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-860120503) at 2021-06-17 01:36 PM PDT -Sihemgourou,2021-06-17T20:36:24Z,- Sihemgourou commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863547326) at 2021-06-17 01:36 PM PDT -Sihemgourou,2021-06-18T07:26:46Z,- Sihemgourou commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863822411) at 2021-06-18 12:26 AM PDT -Sihemgourou,2021-06-18T07:29:21Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-863823783) at 2021-06-18 12:29 AM PDT -Sihemgourou,2021-06-19T16:16:35Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864426220) at 2021-06-19 09:16 AM PDT -Sihemgourou,2021-06-19T16:17:02Z,- Sihemgourou closed issue as completed: [1786](https://github.com/hackforla/website/issues/1786#event-4912619440) at 2021-06-19 09:17 AM PDT -Sihemgourou,2021-06-19T16:30:49Z,- Sihemgourou commented on issue: [1673](https://github.com/hackforla/website/issues/1673#issuecomment-864427886) at 2021-06-19 09:30 AM PDT -Sihemgourou,2021-06-19T21:42:07Z,- Sihemgourou opened issue: [1789](https://github.com/hackforla/website/issues/1789) at 2021-06-19 02:42 PM PDT -Sihemgourou,2021-06-19T22:18:32Z,- Sihemgourou commented on issue: [1709](https://github.com/hackforla/website/issues/1709#issuecomment-864470626) at 2021-06-19 03:18 PM PDT -Sihemgourou,2021-06-19T22:18:36Z,- Sihemgourou closed issue as completed: [1709](https://github.com/hackforla/website/issues/1709#event-4912859232) at 2021-06-19 03:18 PM PDT -Sihemgourou,2021-06-19T22:37:02Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-864471995) at 2021-06-19 03:37 PM PDT -Sihemgourou,2021-06-19T22:47:27Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-864472800) at 2021-06-19 03:47 PM PDT -Sihemgourou,2021-06-19T22:48:22Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-864472848) at 2021-06-19 03:48 PM PDT -Sihemgourou,2021-06-19T22:49:01Z,- Sihemgourou commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-864472906) at 2021-06-19 03:49 PM PDT -Sihemgourou,2021-06-19T22:51:03Z,- Sihemgourou commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-864473066) at 2021-06-19 03:51 PM PDT -Sihemgourou,2021-06-20T16:56:03Z,- Sihemgourou assigned to issue: [1734](https://github.com/hackforla/website/issues/1734) at 2021-06-20 09:56 AM PDT -Sihemgourou,2021-06-20T17:16:15Z,- Sihemgourou commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-864585306) at 2021-06-20 10:16 AM PDT -Sihemgourou,2021-06-20T17:16:18Z,- Sihemgourou closed issue as completed: [1623](https://github.com/hackforla/website/issues/1623#event-4913608667) at 2021-06-20 10:16 AM PDT -Sihemgourou,2021-06-20T18:04:18Z,- Sihemgourou commented on issue: [1789](https://github.com/hackforla/website/issues/1789#issuecomment-864590949) at 2021-06-20 11:04 AM PDT -Sihemgourou,2021-06-20T20:27:26Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864607554) at 2021-06-20 01:27 PM PDT -Sihemgourou,2021-06-20T20:33:33Z,- Sihemgourou opened issue: [1796](https://github.com/hackforla/website/issues/1796) at 2021-06-20 01:33 PM PDT -Sihemgourou,2021-06-20T20:44:49Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:44 PM PDT -Sihemgourou,2021-06-20T21:05:44Z,- Sihemgourou opened issue: [1797](https://github.com/hackforla/website/issues/1797) at 2021-06-20 02:05 PM PDT -Sihemgourou,2021-06-20T22:08:53Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:08 PM PDT -Sihemgourou,2021-06-20T22:15:14Z,- Sihemgourou assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -Sihemgourou,2021-06-21T18:39:18Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-865258556) at 2021-06-21 11:39 AM PDT -Sihemgourou,2021-06-22T20:12:54Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-866300894) at 2021-06-22 01:12 PM PDT -Sihemgourou,2021-06-23T12:13:53Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-866783710) at 2021-06-23 05:13 AM PDT -Sihemgourou,2021-06-23T20:03:02Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-867120718) at 2021-06-23 01:03 PM PDT -Sihemgourou,2021-06-23T20:53:44Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-867150478) at 2021-06-23 01:53 PM PDT -Sihemgourou,2021-06-24T20:29:58Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-867931648) at 2021-06-24 01:29 PM PDT -Sihemgourou,2021-06-24T20:35:08Z,- Sihemgourou commented on issue: [1674](https://github.com/hackforla/website/issues/1674#issuecomment-867934225) at 2021-06-24 01:35 PM PDT -Sihemgourou,2021-06-24T20:36:21Z,- Sihemgourou commented on issue: [1477](https://github.com/hackforla/website/issues/1477#issuecomment-867934846) at 2021-06-24 01:36 PM PDT -Sihemgourou,2021-06-24T21:28:48Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-867963819) at 2021-06-24 02:28 PM PDT -Sihemgourou,2021-06-24T21:30:14Z,- Sihemgourou commented on issue: [1698](https://github.com/hackforla/website/issues/1698#issuecomment-867964547) at 2021-06-24 02:30 PM PDT -Sihemgourou,2021-06-24T21:31:09Z,- Sihemgourou opened issue: [1829](https://github.com/hackforla/website/issues/1829) at 2021-06-24 02:31 PM PDT -Sihemgourou,2021-06-24T21:37:35Z,- Sihemgourou opened issue: [1830](https://github.com/hackforla/website/issues/1830) at 2021-06-24 02:37 PM PDT -Sihemgourou,2021-06-27T17:43:54Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-869200854) at 2021-06-27 10:43 AM PDT -Sihemgourou,2021-06-27T17:46:00Z,- Sihemgourou commented on issue: [1378](https://github.com/hackforla/website/issues/1378#issuecomment-869201114) at 2021-06-27 10:46 AM PDT -Sihemgourou,2021-06-27T18:02:31Z,- Sihemgourou commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-869203181) at 2021-06-27 11:02 AM PDT -Sihemgourou,2021-06-27T20:21:31Z,- Sihemgourou opened issue: [1840](https://github.com/hackforla/website/issues/1840) at 2021-06-27 01:21 PM PDT -Sihemgourou,2021-06-27T20:22:26Z,- Sihemgourou opened issue: [1841](https://github.com/hackforla/website/issues/1841) at 2021-06-27 01:22 PM PDT -Sihemgourou,2021-06-27T20:23:38Z,- Sihemgourou opened issue: [1842](https://github.com/hackforla/website/issues/1842) at 2021-06-27 01:23 PM PDT -Sihemgourou,2021-06-27T20:24:58Z,- Sihemgourou opened issue: [1843](https://github.com/hackforla/website/issues/1843) at 2021-06-27 01:24 PM PDT -Sihemgourou,2021-06-27T20:25:52Z,- Sihemgourou opened issue: [1844](https://github.com/hackforla/website/issues/1844) at 2021-06-27 01:25 PM PDT -Sihemgourou,2021-06-27T20:33:12Z,- Sihemgourou opened issue: [1845](https://github.com/hackforla/website/issues/1845) at 2021-06-27 01:33 PM PDT -Sihemgourou,2021-06-27T20:38:14Z,- Sihemgourou opened issue: [1846](https://github.com/hackforla/website/issues/1846) at 2021-06-27 01:38 PM PDT -Sihemgourou,2021-06-27T20:51:56Z,- Sihemgourou opened issue: [1848](https://github.com/hackforla/website/issues/1848) at 2021-06-27 01:51 PM PDT -Sihemgourou,2021-06-27T20:53:36Z,- Sihemgourou opened issue: [1849](https://github.com/hackforla/website/issues/1849) at 2021-06-27 01:53 PM PDT -Sihemgourou,2021-06-27T23:44:01Z,- Sihemgourou commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-06-27 04:44 PM PDT -Sihemgourou,2021-06-27T23:44:54Z,- Sihemgourou unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-06-27 04:44 PM PDT -Sihemgourou,2021-06-27T23:45:02Z,- Sihemgourou assigned to issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-06-27 04:45 PM PDT -Sihemgourou,2021-06-28T20:42:03Z,- Sihemgourou commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-870026744) at 2021-06-28 01:42 PM PDT -Sihemgourou,2021-06-28T20:44:33Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-870028308) at 2021-06-28 01:44 PM PDT -Sihemgourou,2021-06-28T21:56:39Z,- Sihemgourou commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-870071426) at 2021-06-28 02:56 PM PDT -Sihemgourou,2021-06-28T22:26:21Z,- Sihemgourou commented on pull request: [1832](https://github.com/hackforla/website/pull/1832#issuecomment-870087463) at 2021-06-28 03:26 PM PDT -Sihemgourou,2021-06-28T22:38:28Z,- Sihemgourou commented on issue: [1104](https://github.com/hackforla/website/issues/1104#issuecomment-870092678) at 2021-06-28 03:38 PM PDT -Sihemgourou,2021-06-28T22:41:13Z,- Sihemgourou commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-870093784) at 2021-06-28 03:41 PM PDT -Sihemgourou,2021-06-28T22:51:19Z,- Sihemgourou commented on issue: [1743](https://github.com/hackforla/website/issues/1743#issuecomment-870097430) at 2021-06-28 03:51 PM PDT -Sihemgourou,2021-06-28T22:52:36Z,- Sihemgourou commented on pull request: [1831](https://github.com/hackforla/website/pull/1831#issuecomment-870097887) at 2021-06-28 03:52 PM PDT -Sihemgourou,2021-06-28T22:55:36Z,- Sihemgourou commented on issue: [1165](https://github.com/hackforla/website/issues/1165#issuecomment-870098922) at 2021-06-28 03:55 PM PDT -Sihemgourou,2021-06-28T22:58:50Z,- Sihemgourou unassigned from issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863822411) at 2021-06-28 03:58 PM PDT -Sihemgourou,2021-06-28T23:07:19Z,- Sihemgourou commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870104079) at 2021-06-28 04:07 PM PDT -Sihemgourou,2021-06-28T23:07:37Z,- Sihemgourou assigned to issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870104079) at 2021-06-28 04:07 PM PDT -Sihemgourou,2021-06-28T23:08:59Z,- Sihemgourou assigned to issue: [1846](https://github.com/hackforla/website/issues/1846) at 2021-06-28 04:08 PM PDT -Sihemgourou,2021-06-28T23:09:10Z,- Sihemgourou commented on issue: [1846](https://github.com/hackforla/website/issues/1846#issuecomment-870105040) at 2021-06-28 04:09 PM PDT -Sihemgourou,2021-06-28T23:09:13Z,- Sihemgourou closed issue as completed: [1846](https://github.com/hackforla/website/issues/1846#event-4950261422) at 2021-06-28 04:09 PM PDT -Sihemgourou,2021-06-28T23:10:01Z,- Sihemgourou assigned to issue: [1844](https://github.com/hackforla/website/issues/1844) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:10:09Z,- Sihemgourou commented on issue: [1844](https://github.com/hackforla/website/issues/1844#issuecomment-870105537) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:10:12Z,- Sihemgourou closed issue as completed: [1844](https://github.com/hackforla/website/issues/1844#event-4950264334) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:10:49Z,- Sihemgourou commented on issue: [1841](https://github.com/hackforla/website/issues/1841#issuecomment-870105825) at 2021-06-28 04:10 PM PDT -Sihemgourou,2021-06-28T23:12:19Z,- Sihemgourou commented on issue: [1840](https://github.com/hackforla/website/issues/1840#issuecomment-870106473) at 2021-06-28 04:12 PM PDT -Sihemgourou,2021-06-28T23:12:26Z,- Sihemgourou assigned to issue: [1840](https://github.com/hackforla/website/issues/1840#issuecomment-870106473) at 2021-06-28 04:12 PM PDT -Sihemgourou,2021-06-28T23:12:27Z,- Sihemgourou closed issue as completed: [1840](https://github.com/hackforla/website/issues/1840#event-4950270122) at 2021-06-28 04:12 PM PDT -Sihemgourou,2021-06-28T23:34:00Z,- Sihemgourou unassigned from issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-869904741) at 2021-06-28 04:34 PM PDT -Sihemgourou,2021-06-28T23:46:25Z,- Sihemgourou commented on issue: [656](https://github.com/hackforla/website/issues/656#issuecomment-870120662) at 2021-06-28 04:46 PM PDT -Sihemgourou,2021-06-28T23:47:39Z,- Sihemgourou commented on issue: [1824](https://github.com/hackforla/website/issues/1824#issuecomment-870121041) at 2021-06-28 04:47 PM PDT -Sihemgourou,2021-06-29T00:16:58Z,- Sihemgourou commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-870132274) at 2021-06-28 05:16 PM PDT -Sihemgourou,2021-06-29T19:36:59Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-870862101) at 2021-06-29 12:36 PM PDT -Sihemgourou,2021-06-30T18:23:21Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-871629919) at 2021-06-30 11:23 AM PDT -Sihemgourou,2021-06-30T18:49:31Z,- Sihemgourou commented on issue: [1585](https://github.com/hackforla/website/issues/1585#issuecomment-871646164) at 2021-06-30 11:49 AM PDT -Sihemgourou,2021-06-30T18:52:33Z,- Sihemgourou opened issue: [1865](https://github.com/hackforla/website/issues/1865) at 2021-06-30 11:52 AM PDT -Sihemgourou,2021-06-30T18:52:34Z,- Sihemgourou assigned to issue: [1865](https://github.com/hackforla/website/issues/1865) at 2021-06-30 11:52 AM PDT -Sihemgourou,2021-06-30T18:56:29Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-871650352) at 2021-06-30 11:56 AM PDT -Sihemgourou,2021-06-30T20:59:47Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-871723496) at 2021-06-30 01:59 PM PDT -Sihemgourou,2021-06-30T21:16:43Z,- Sihemgourou opened issue: [1866](https://github.com/hackforla/website/issues/1866) at 2021-06-30 02:16 PM PDT -Sihemgourou,2021-06-30T21:18:23Z,- Sihemgourou opened issue: [1867](https://github.com/hackforla/website/issues/1867) at 2021-06-30 02:18 PM PDT -Sihemgourou,2021-06-30T21:22:46Z,- Sihemgourou opened issue: [1868](https://github.com/hackforla/website/issues/1868) at 2021-06-30 02:22 PM PDT -Sihemgourou,2021-07-04T16:30:51Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-873621849) at 2021-07-04 09:30 AM PDT -Sihemgourou,2021-07-04T17:18:10Z,- Sihemgourou commented on issue: [1352](https://github.com/hackforla/website/issues/1352#issuecomment-873628516) at 2021-07-04 10:18 AM PDT -Sihemgourou,2021-07-04T17:21:23Z,- Sihemgourou commented on issue: [1793](https://github.com/hackforla/website/issues/1793#issuecomment-873629019) at 2021-07-04 10:21 AM PDT -Sihemgourou,2021-07-04T17:28:55Z,- Sihemgourou commented on issue: [1817](https://github.com/hackforla/website/issues/1817#issuecomment-873630008) at 2021-07-04 10:28 AM PDT -Sihemgourou,2021-07-04T18:08:39Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-873635417) at 2021-07-04 11:08 AM PDT -Sihemgourou,2021-07-04T18:13:53Z,- Sihemgourou commented on issue: [1733](https://github.com/hackforla/website/issues/1733#issuecomment-873636081) at 2021-07-04 11:13 AM PDT -Sihemgourou,2021-07-06T19:49:48Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-875036846) at 2021-07-06 12:49 PM PDT -Sihemgourou,2021-07-07T18:23:06Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-875828795) at 2021-07-07 11:23 AM PDT -Sihemgourou,2021-07-09T16:46:54Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-877318374) at 2021-07-09 09:46 AM PDT -Sihemgourou,2021-07-10T10:19:31Z,- Sihemgourou commented on issue: [1498](https://github.com/hackforla/website/issues/1498#issuecomment-877612854) at 2021-07-10 03:19 AM PDT -Sihemgourou,2021-07-10T10:27:22Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-877613982) at 2021-07-10 03:27 AM PDT -Sihemgourou,2021-07-10T10:36:40Z,- Sihemgourou commented on issue: [1739](https://github.com/hackforla/website/issues/1739#issuecomment-877615346) at 2021-07-10 03:36 AM PDT -Sihemgourou,2021-07-10T10:40:12Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-877615738) at 2021-07-10 03:40 AM PDT -Sihemgourou,2021-07-13T19:44:03Z,- Sihemgourou commented on issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-879352414) at 2021-07-13 12:44 PM PDT -Sihemgourou,2021-07-14T19:42:31Z,- Sihemgourou opened issue: [1942](https://github.com/hackforla/website/issues/1942) at 2021-07-14 12:42 PM PDT -Sihemgourou,2021-07-14T19:42:44Z,- Sihemgourou assigned to issue: [1942](https://github.com/hackforla/website/issues/1942) at 2021-07-14 12:42 PM PDT -Sihemgourou,2021-07-14T21:15:24Z,- Sihemgourou opened issue: [1943](https://github.com/hackforla/website/issues/1943) at 2021-07-14 02:15 PM PDT -Sihemgourou,2021-07-14T21:17:19Z,- Sihemgourou commented on issue: [1560](https://github.com/hackforla/website/issues/1560#issuecomment-880216205) at 2021-07-14 02:17 PM PDT -Sihemgourou,2021-07-14T21:23:03Z,- Sihemgourou opened issue: [1944](https://github.com/hackforla/website/issues/1944) at 2021-07-14 02:23 PM PDT -Sihemgourou,2021-07-14T21:27:28Z,- Sihemgourou commented on issue: [1500](https://github.com/hackforla/website/issues/1500#issuecomment-880222090) at 2021-07-14 02:27 PM PDT -Sihemgourou,2021-07-14T21:27:31Z,- Sihemgourou closed issue as completed: [1500](https://github.com/hackforla/website/issues/1500#event-5022080645) at 2021-07-14 02:27 PM PDT -Sihemgourou,2021-07-14T21:35:13Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-880226081) at 2021-07-14 02:35 PM PDT -Sihemgourou,2021-07-15T11:02:21Z,- Sihemgourou commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-880602740) at 2021-07-15 04:02 AM PDT -Sihemgourou,2021-07-17T10:43:23Z,- Sihemgourou commented on issue: [1849](https://github.com/hackforla/website/issues/1849#issuecomment-881875023) at 2021-07-17 03:43 AM PDT -Sihemgourou,2021-07-17T10:44:24Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-881875135) at 2021-07-17 03:44 AM PDT -Sihemgourou,2021-07-17T10:45:51Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-881875270) at 2021-07-17 03:45 AM PDT -Sihemgourou,2021-07-17T15:49:14Z,- Sihemgourou commented on issue: [1482](https://github.com/hackforla/website/issues/1482#issuecomment-881917878) at 2021-07-17 08:49 AM PDT -Sihemgourou,2021-07-18T17:33:21Z,- Sihemgourou commented on issue: [1338](https://github.com/hackforla/website/issues/1338#issuecomment-882092008) at 2021-07-18 10:33 AM PDT -Sihemgourou,2021-07-18T18:46:38Z,- Sihemgourou opened issue: [1968](https://github.com/hackforla/website/issues/1968) at 2021-07-18 11:46 AM PDT -Sihemgourou,2021-07-18T18:54:05Z,- Sihemgourou commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-882101756) at 2021-07-18 11:54 AM PDT -Sihemgourou,2021-07-18T18:59:52Z,- Sihemgourou closed issue as completed: [1849](https://github.com/hackforla/website/issues/1849#event-5035318285) at 2021-07-18 11:59 AM PDT -Sihemgourou,2021-07-18T19:02:29Z,- Sihemgourou commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-882102822) at 2021-07-18 12:02 PM PDT -Sihemgourou,2021-07-18T19:09:42Z,- Sihemgourou opened issue: [1969](https://github.com/hackforla/website/issues/1969) at 2021-07-18 12:09 PM PDT -Sihemgourou,2021-07-18T19:11:38Z,- Sihemgourou commented on issue: [1958](https://github.com/hackforla/website/issues/1958#issuecomment-882104081) at 2021-07-18 12:11 PM PDT -Sihemgourou,2021-07-19T20:24:11Z,- Sihemgourou opened issue: [1973](https://github.com/hackforla/website/issues/1973) at 2021-07-19 01:24 PM PDT -Sihemgourou,2021-07-19T20:33:32Z,- Sihemgourou opened issue: [1974](https://github.com/hackforla/website/issues/1974) at 2021-07-19 01:33 PM PDT -Sihemgourou,2021-07-19T21:19:13Z,- Sihemgourou opened issue: [1978](https://github.com/hackforla/website/issues/1978) at 2021-07-19 02:19 PM PDT -Sihemgourou,2021-07-20T19:51:18Z,- Sihemgourou commented on issue: [1985](https://github.com/hackforla/website/issues/1985#issuecomment-883651783) at 2021-07-20 12:51 PM PDT -Sihemgourou,2021-07-20T19:56:17Z,- Sihemgourou opened issue: [1988](https://github.com/hackforla/website/issues/1988) at 2021-07-20 12:56 PM PDT -Sihemgourou,2021-07-20T20:16:41Z,- Sihemgourou commented on issue: [1898](https://github.com/hackforla/website/issues/1898#issuecomment-883666714) at 2021-07-20 01:16 PM PDT -Sihemgourou,2021-07-20T20:22:09Z,- Sihemgourou opened issue: [1989](https://github.com/hackforla/website/issues/1989) at 2021-07-20 01:22 PM PDT -Sihemgourou,2021-07-21T19:41:05Z,- Sihemgourou commented on issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-07-21 12:41 PM PDT -Sihemgourou,2021-07-25T17:08:52Z,- Sihemgourou assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-884254547) at 2021-07-25 10:08 AM PDT -Sihemgourou,2021-07-26T02:50:51Z,- Sihemgourou unassigned from issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-869242256) at 2021-07-25 07:50 PM PDT -Sihemgourou,2021-08-01T17:11:18Z,- Sihemgourou commented on issue: [1973](https://github.com/hackforla/website/issues/1973#issuecomment-890556169) at 2021-08-01 10:11 AM PDT -Sihemgourou,2021-08-02T01:31:00Z,- Sihemgourou commented on issue: [1845](https://github.com/hackforla/website/issues/1845#issuecomment-890645883) at 2021-08-01 06:31 PM PDT -Sihemgourou,2021-08-02T20:40:22Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-891318027) at 2021-08-02 01:40 PM PDT -Sihemgourou,2021-08-03T17:59:40Z,- Sihemgourou closed issue as completed: [1942](https://github.com/hackforla/website/issues/1942#event-5106332042) at 2021-08-03 10:59 AM PDT -Sihemgourou,2021-08-03T18:00:27Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892048780) at 2021-08-03 11:00 AM PDT -Sihemgourou,2021-08-03T18:00:32Z,- Sihemgourou unassigned from issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-892048780) at 2021-08-03 11:00 AM PDT -Sihemgourou,2021-08-03T18:08:23Z,- Sihemgourou opened issue: [2040](https://github.com/hackforla/website/issues/2040) at 2021-08-03 11:08 AM PDT -Sihemgourou,2021-08-03T18:08:23Z,- Sihemgourou assigned to issue: [2040](https://github.com/hackforla/website/issues/2040) at 2021-08-03 11:08 AM PDT -Sihemgourou,2021-08-03T18:09:58Z,- Sihemgourou commented on issue: [2026](https://github.com/hackforla/website/issues/2026#issuecomment-892055633) at 2021-08-03 11:09 AM PDT -Sihemgourou,2021-08-05T20:36:38Z,- Sihemgourou reopened issue: [1989](https://github.com/hackforla/website/issues/1989#event-5046484780) at 2021-08-05 01:36 PM PDT -Sihemgourou,2021-08-08T17:17:14Z,- Sihemgourou commented on issue: [1619](https://github.com/hackforla/website/issues/1619#issuecomment-894827997) at 2021-08-08 10:17 AM PDT -Sihemgourou,2021-08-08T18:09:29Z,- Sihemgourou commented on issue: [1823](https://github.com/hackforla/website/issues/1823#issuecomment-894834293) at 2021-08-08 11:09 AM PDT -Sihemgourou,2021-08-08T18:17:06Z,- Sihemgourou commented on issue: [1979](https://github.com/hackforla/website/issues/1979#issuecomment-894835204) at 2021-08-08 11:17 AM PDT -Sihemgourou,2021-08-08T18:41:05Z,- Sihemgourou closed issue as completed: [2017](https://github.com/hackforla/website/issues/2017#event-5126926772) at 2021-08-08 11:41 AM PDT -Sihemgourou,2021-08-08T19:22:40Z,- Sihemgourou reopened issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-860051447) at 2021-08-08 12:22 PM PDT -Sihemgourou,2021-08-08T19:28:55Z,- Sihemgourou commented on issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-894844098) at 2021-08-08 12:28 PM PDT -Sihemgourou,2021-08-09T21:58:08Z,- Sihemgourou opened issue: [2075](https://github.com/hackforla/website/issues/2075) at 2021-08-09 02:58 PM PDT -Sihemgourou,2021-08-09T22:26:12Z,- Sihemgourou commented on issue: [1969](https://github.com/hackforla/website/issues/1969#issuecomment-895592398) at 2021-08-09 03:26 PM PDT -Sihemgourou,2021-08-09T22:27:17Z,- Sihemgourou commented on issue: [2000](https://github.com/hackforla/website/issues/2000#issuecomment-895592861) at 2021-08-09 03:27 PM PDT -Sihemgourou,2021-08-09T22:27:31Z,- Sihemgourou closed issue as completed: [2000](https://github.com/hackforla/website/issues/2000#event-5132361847) at 2021-08-09 03:27 PM PDT -Sihemgourou,2021-08-09T22:33:39Z,- Sihemgourou commented on issue: [1948](https://github.com/hackforla/website/issues/1948#issuecomment-895595474) at 2021-08-09 03:33 PM PDT -Sihemgourou,2021-08-09T23:25:31Z,- Sihemgourou opened issue: [2076](https://github.com/hackforla/website/issues/2076) at 2021-08-09 04:25 PM PDT -Sihemgourou,2021-08-09T23:58:20Z,- Sihemgourou commented on issue: [1742](https://github.com/hackforla/website/issues/1742#issuecomment-895628543) at 2021-08-09 04:58 PM PDT -Sihemgourou,2021-08-10T00:03:17Z,- Sihemgourou commented on issue: [2040](https://github.com/hackforla/website/issues/2040#issuecomment-895630630) at 2021-08-09 05:03 PM PDT -Sihemgourou,2021-08-10T00:06:19Z,- Sihemgourou commented on issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-895631846) at 2021-08-09 05:06 PM PDT -Sihemgourou,2021-08-10T00:22:38Z,- Sihemgourou commented on issue: [1515](https://github.com/hackforla/website/issues/1515#issuecomment-895637991) at 2021-08-09 05:22 PM PDT -Sihemgourou,2021-08-10T18:44:46Z,- Sihemgourou commented on issue: [1865](https://github.com/hackforla/website/issues/1865#issuecomment-896228404) at 2021-08-10 11:44 AM PDT -Sihemgourou,2021-08-10T18:44:53Z,- Sihemgourou closed issue as completed: [1865](https://github.com/hackforla/website/issues/1865#event-5137135812) at 2021-08-10 11:44 AM PDT -Sihemgourou,2021-08-11T19:43:07Z,- Sihemgourou commented on issue: [2063](https://github.com/hackforla/website/issues/2063#issuecomment-897101452) at 2021-08-11 12:43 PM PDT -Sihemgourou,2021-08-12T20:05:00Z,- Sihemgourou unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -Sihemgourou,2021-08-12T20:48:14Z,- Sihemgourou unassigned from issue: [1730](https://github.com/hackforla/website/issues/1730#issuecomment-896133763) at 2021-08-12 01:48 PM PDT -Sihemgourou,2021-08-12T20:52:31Z,- Sihemgourou unassigned from issue: [1686](https://github.com/hackforla/website/issues/1686#issuecomment-894844098) at 2021-08-12 01:52 PM PDT -Sihemgourou,2021-08-12T20:55:57Z,- Sihemgourou unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-884254547) at 2021-08-12 01:55 PM PDT -Sihemgourou,2021-08-12T21:24:03Z,- Sihemgourou unassigned from issue: [2040](https://github.com/hackforla/website/issues/2040#issuecomment-895630630) at 2021-08-12 02:24 PM PDT -Sihemgourou,2021-08-12T21:38:19Z,- Sihemgourou closed issue as completed: [1916](https://github.com/hackforla/website/issues/1916#event-5152333392) at 2021-08-12 02:38 PM PDT -Sihemgourou,2021-08-12T21:38:29Z,- Sihemgourou closed issue as completed: [1881](https://github.com/hackforla/website/issues/1881#event-5152334004) at 2021-08-12 02:38 PM PDT -Sihemgourou,2021-08-16T18:53:34Z,- Sihemgourou assigned to issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-08-16 11:53 AM PDT -Sihemgourou,2021-09-07T00:11:34Z,- Sihemgourou unassigned from issue: [2122](https://github.com/hackforla/website/issues/2122#issuecomment-899665779) at 2021-09-06 05:11 PM PDT -Sihemgourou,2021-11-04T23:23:13Z,- Sihemgourou unassigned from issue: [2450](https://github.com/hackforla/website/issues/2450) at 2021-11-04 04:23 PM PDT -sijiapitts,3071,SKILLS ISSUE -sijiapitts,2022-04-20T22:41:30Z,- sijiapitts opened issue: [3071](https://github.com/hackforla/website/issues/3071) at 2022-04-20 03:41 PM PDT -sijiapitts,2022-04-20T22:44:39Z,- sijiapitts assigned to issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1091504315) at 2022-04-20 03:44 PM PDT -sijiapitts,2022-04-20T23:57:51Z,- sijiapitts assigned to issue: [3071](https://github.com/hackforla/website/issues/3071#issuecomment-1104525746) at 2022-04-20 04:57 PM PDT -sijiapitts,2022-04-27T21:58:42Z,- sijiapitts closed issue as completed: [3071](https://github.com/hackforla/website/issues/3071#event-6510424064) at 2022-04-27 02:58 PM PDT -sijiapitts,2022-04-27T22:28:10Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1111541509) at 2022-04-27 03:28 PM PDT -sijiapitts,2022-05-22T17:43:32Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1133941717) at 2022-05-22 10:43 AM PDT -sijiapitts,2022-06-03T17:09:19Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1146187593) at 2022-06-03 10:09 AM PDT -sijiapitts,2022-06-08T22:49:14Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1150489730) at 2022-06-08 03:49 PM PDT -sijiapitts,2022-06-15T22:27:23Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1157012295) at 2022-06-15 03:27 PM PDT -sijiapitts,2022-06-21T22:40:56Z,- sijiapitts opened issue: [3277](https://github.com/hackforla/website/issues/3277) at 2022-06-21 03:40 PM PDT -sijiapitts,2022-06-21T22:40:56Z,- sijiapitts assigned to issue: [3277](https://github.com/hackforla/website/issues/3277) at 2022-06-21 03:40 PM PDT -sijiapitts,2022-06-21T22:45:09Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1162435721) at 2022-06-21 03:45 PM PDT -sijiapitts,2022-06-30T18:11:43Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1171528664) at 2022-06-30 11:11 AM PDT -sijiapitts,2022-07-06T23:13:29Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1176845071) at 2022-07-06 04:13 PM PDT -sijiapitts,2022-07-10T17:51:39Z,- sijiapitts commented on issue: [3035](https://github.com/hackforla/website/issues/3035#issuecomment-1179771250) at 2022-07-10 10:51 AM PDT -sijiapitts,2022-07-10T18:06:47Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1179773403) at 2022-07-10 11:06 AM PDT -sijiapitts,2022-08-03T22:38:57Z,- sijiapitts assigned to issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1143258113) at 2022-08-03 03:38 PM PDT -sijiapitts,2022-08-09T22:15:45Z,- sijiapitts commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1209946185) at 2022-08-09 03:15 PM PDT -sijiapitts,2022-09-14T20:51:20Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1247289194) at 2022-09-14 01:51 PM PDT -sijiapitts,2022-10-16T06:54:38Z,- sijiapitts opened issue: [3626](https://github.com/hackforla/website/issues/3626) at 2022-10-15 11:54 PM PDT -sijiapitts,2022-10-16T06:54:54Z,- sijiapitts assigned to issue: [3626](https://github.com/hackforla/website/issues/3626) at 2022-10-15 11:54 PM PDT -sijiapitts,2022-10-16T07:06:40Z,- sijiapitts opened issue: [3627](https://github.com/hackforla/website/issues/3627) at 2022-10-16 12:06 AM PDT -sijiapitts,2022-10-16T07:13:45Z,- sijiapitts commented on issue: [3277](https://github.com/hackforla/website/issues/3277#issuecomment-1279909420) at 2022-10-16 12:13 AM PDT -sijiapitts,2022-10-16T07:14:43Z,- sijiapitts closed issue as completed: [3277](https://github.com/hackforla/website/issues/3277#event-7595975450) at 2022-10-16 12:14 AM PDT -sijiapitts,2022-10-26T00:59:17Z,- sijiapitts opened issue: [3661](https://github.com/hackforla/website/issues/3661) at 2022-10-25 05:59 PM PDT -sijiapitts,2022-10-26T00:59:58Z,- sijiapitts assigned to issue: [3661](https://github.com/hackforla/website/issues/3661) at 2022-10-25 05:59 PM PDT -sijiapitts,2022-10-26T06:12:57Z,- sijiapitts commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1291551411) at 2022-10-25 11:12 PM PDT -sijiapitts,2022-10-28T18:42:34Z,- sijiapitts commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1295335458) at 2022-10-28 11:42 AM PDT -sijiapitts,2022-10-30T21:44:50Z,- sijiapitts commented on issue: [3626](https://github.com/hackforla/website/issues/3626#issuecomment-1296357545) at 2022-10-30 02:44 PM PDT -sijiapitts,2022-10-30T21:45:41Z,- sijiapitts closed issue as completed: [3626](https://github.com/hackforla/website/issues/3626#event-7699817026) at 2022-10-30 02:45 PM PDT -sijiapitts,2022-11-10T17:22:22Z,- sijiapitts commented on issue: [3661](https://github.com/hackforla/website/issues/3661#issuecomment-1310632591) at 2022-11-10 09:22 AM PST -sijiapitts,2022-11-10T17:24:17Z,- sijiapitts commented on issue: [1878](https://github.com/hackforla/website/issues/1878#issuecomment-1310635547) at 2022-11-10 09:24 AM PST -sijiapitts,2022-11-17T00:37:46Z,- sijiapitts commented on issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1317879586) at 2022-11-16 04:37 PM PST -sijiapitts,2022-11-17T00:37:51Z,- sijiapitts unassigned from issue: [3191](https://github.com/hackforla/website/issues/3191#issuecomment-1317879586) at 2022-11-16 04:37 PM PST -sijiapitts,2023-01-24T05:47:10Z,- sijiapitts assigned to issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1321212365) at 2023-01-23 09:47 PM PST -sijiapitts,2023-02-16T07:37:31Z,- sijiapitts commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1432648106) at 2023-02-15 11:37 PM PST -sijiapitts,2023-06-27T01:42:20Z,- sijiapitts unassigned from issue: [3627](https://github.com/hackforla/website/issues/3627#issuecomment-1495143197) at 2023-06-26 06:42 PM PDT -sisi-in-tech,4982,SKILLS ISSUE -sisi-in-tech,2023-07-18T01:57:32Z,- sisi-in-tech opened issue: [4982](https://github.com/hackforla/website/issues/4982) at 2023-07-17 06:57 PM PDT -sisi-in-tech,2023-07-18T03:02:17Z,- sisi-in-tech assigned to issue: [4982](https://github.com/hackforla/website/issues/4982) at 2023-07-17 08:02 PM PDT -sisi-in-tech,2023-07-28T18:18:40Z,- sisi-in-tech assigned to issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1646617797) at 2023-07-28 11:18 AM PDT -sisi-in-tech,2023-07-28T23:47:40Z,- sisi-in-tech commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1656470347) at 2023-07-28 04:47 PM PDT -sisi-in-tech,2023-07-31T19:41:48Z,- sisi-in-tech opened pull request: [5120](https://github.com/hackforla/website/pull/5120) at 2023-07-31 12:41 PM PDT -sisi-in-tech,2023-07-31T20:08:09Z,- sisi-in-tech commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659059194) at 2023-07-31 01:08 PM PDT -sisi-in-tech,2023-07-31T20:56:21Z,- sisi-in-tech commented on issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659149384) at 2023-07-31 01:56 PM PDT -sisi-in-tech,2023-07-31T21:08:48Z,- sisi-in-tech commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1659164761) at 2023-07-31 02:08 PM PDT -sisi-in-tech,2023-08-04T17:07:34Z,- sisi-in-tech commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1665932334) at 2023-08-04 10:07 AM PDT -sisi-in-tech,2023-08-05T05:38:52Z,- sisi-in-tech commented on pull request: [5120](https://github.com/hackforla/website/pull/5120#issuecomment-1666398937) at 2023-08-04 10:38 PM PDT -sisi-in-tech,2023-08-06T15:15:28Z,- sisi-in-tech pull request merged: [5120](https://github.com/hackforla/website/pull/5120#event-10017488858) at 2023-08-06 08:15 AM PDT -Six5pAdes,7925,SKILLS ISSUE -Six5pAdes,2025-02-19T03:47:41Z,- Six5pAdes opened issue: [7925](https://github.com/hackforla/website/issues/7925) at 2025-02-18 07:47 PM PST -Six5pAdes,2025-02-19T03:47:47Z,- Six5pAdes assigned to issue: [7925](https://github.com/hackforla/website/issues/7925) at 2025-02-18 07:47 PM PST -Six5pAdes,2025-02-24T22:45:24Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2679843957) at 2025-02-24 02:45 PM PST -Six5pAdes,2025-02-24T22:46:55Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2679848964) at 2025-02-24 02:46 PM PST -Six5pAdes,2025-02-25T17:55:37Z,- Six5pAdes assigned to issue: [7848](https://github.com/hackforla/website/issues/7848) at 2025-02-25 09:55 AM PST -Six5pAdes,2025-02-25T18:15:17Z,- Six5pAdes unassigned from issue: [7848](https://github.com/hackforla/website/issues/7848#issuecomment-2682859582) at 2025-02-25 10:15 AM PST -Six5pAdes,2025-02-25T18:17:34Z,- Six5pAdes assigned to issue: [7849](https://github.com/hackforla/website/issues/7849#event-16359034010) at 2025-02-25 10:17 AM PST -Six5pAdes,2025-02-25T18:30:15Z,- Six5pAdes commented on issue: [7849](https://github.com/hackforla/website/issues/7849#issuecomment-2682935770) at 2025-02-25 10:30 AM PST -Six5pAdes,2025-02-25T18:44:34Z,- Six5pAdes opened pull request: [7947](https://github.com/hackforla/website/pull/7947) at 2025-02-25 10:44 AM PST -Six5pAdes,2025-02-25T18:45:03Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2682966183) at 2025-02-25 10:45 AM PST -Six5pAdes,2025-02-25T18:46:15Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2682968540) at 2025-02-25 10:46 AM PST -Six5pAdes,2025-02-28T18:37:38Z,- Six5pAdes pull request merged: [7947](https://github.com/hackforla/website/pull/7947#event-16516532210) at 2025-02-28 10:37 AM PST -Six5pAdes,2025-02-28T20:20:14Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2691479870) at 2025-02-28 12:20 PM PST -Six5pAdes,2025-03-04T22:19:39Z,- Six5pAdes assigned to issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2446428278) at 2025-03-04 02:19 PM PST -Six5pAdes,2025-03-04T22:43:38Z,- Six5pAdes commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2699146132) at 2025-03-04 02:43 PM PST -Six5pAdes,2025-03-04T22:52:48Z,- Six5pAdes opened pull request: [7980](https://github.com/hackforla/website/pull/7980) at 2025-03-04 02:52 PM PST -Six5pAdes,2025-03-06T23:40:30Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2705180281) at 2025-03-06 03:40 PM PST -Six5pAdes,2025-03-07T01:10:18Z,- Six5pAdes pull request merged: [7980](https://github.com/hackforla/website/pull/7980#event-16625251513) at 2025-03-06 05:10 PM PST -Six5pAdes,2025-03-11T18:45:54Z,- Six5pAdes commented on pull request: [7985](https://github.com/hackforla/website/pull/7985#issuecomment-2715388276) at 2025-03-11 11:45 AM PDT -Six5pAdes,2025-03-11T19:40:54Z,- Six5pAdes submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2675905847) at 2025-03-11 12:40 PM PDT -Six5pAdes,2025-03-11T23:25:35Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2715946909) at 2025-03-11 04:25 PM PDT -Six5pAdes,2025-03-11T23:26:38Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2715948048) at 2025-03-11 04:26 PM PDT -Six5pAdes,2025-03-12T20:05:50Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2718976215) at 2025-03-12 01:05 PM PDT -Six5pAdes,2025-03-16T19:37:40Z,- Six5pAdes submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2688777824) at 2025-03-16 12:37 PM PDT -Six5pAdes,2025-03-16T21:45:32Z,- Six5pAdes submitted pull request review: [7985](https://github.com/hackforla/website/pull/7985#pullrequestreview-2688818692) at 2025-03-16 02:45 PM PDT -Six5pAdes,2025-03-19T22:25:05Z,- Six5pAdes assigned to issue: [7450](https://github.com/hackforla/website/issues/7450) at 2025-03-19 03:25 PM PDT -Six5pAdes,2025-03-24T20:26:31Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2749314508) at 2025-03-24 01:26 PM PDT -Six5pAdes,2025-03-24T22:30:11Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2749543112) at 2025-03-24 03:30 PM PDT -Six5pAdes,2025-03-24T22:35:44Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2749550511) at 2025-03-24 03:35 PM PDT -Six5pAdes,2025-04-08T21:51:49Z,- Six5pAdes commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2787743238) at 2025-04-08 02:51 PM PDT -Six5pAdes,2025-04-08T21:51:49Z,- Six5pAdes commented on pull request: [8053](https://github.com/hackforla/website/pull/8053#issuecomment-2787743238) at 2025-04-08 02:51 PM PDT -Six5pAdes,2025-04-08T22:29:28Z,- Six5pAdes submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751543504) at 2025-04-08 03:29 PM PDT -Six5pAdes,2025-04-08T22:29:28Z,- Six5pAdes submitted pull request review: [8053](https://github.com/hackforla/website/pull/8053#pullrequestreview-2751543504) at 2025-04-08 03:29 PM PDT -Six5pAdes,2025-04-08T22:32:56Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2787798919) at 2025-04-08 03:32 PM PDT -Six5pAdes,2025-04-11T16:59:09Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2797493128) at 2025-04-11 09:59 AM PDT -Six5pAdes,2025-04-22T23:43:45Z,- Six5pAdes assigned to issue: [7590](https://github.com/hackforla/website/issues/7590) at 2025-04-22 04:43 PM PDT -Six5pAdes,2025-04-22T23:59:58Z,- Six5pAdes opened issue: [8084](https://github.com/hackforla/website/issues/8084) at 2025-04-22 04:59 PM PDT -Six5pAdes,2025-04-23T00:06:50Z,- Six5pAdes commented on issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822748832) at 2025-04-22 05:06 PM PDT -Six5pAdes,2025-04-23T00:10:25Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2822753121) at 2025-04-22 05:10 PM PDT -Six5pAdes,2025-04-24T18:11:28Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2828487300) at 2025-04-24 11:11 AM PDT -Six5pAdes,2025-05-02T15:46:30Z,- Six5pAdes commented on pull request: [8107](https://github.com/hackforla/website/pull/8107#issuecomment-2847552111) at 2025-05-02 08:46 AM PDT -Six5pAdes,2025-05-02T16:30:45Z,- Six5pAdes commented on pull request: [8107](https://github.com/hackforla/website/pull/8107#issuecomment-2847638427) at 2025-05-02 09:30 AM PDT -Six5pAdes,2025-05-02T16:31:16Z,- Six5pAdes submitted pull request review: [8107](https://github.com/hackforla/website/pull/8107#pullrequestreview-2812439890) at 2025-05-02 09:31 AM PDT -Six5pAdes,2025-05-02T16:31:38Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2847639964) at 2025-05-02 09:31 AM PDT -Six5pAdes,2025-05-21T23:18:10Z,- Six5pAdes assigned to issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2695964353) at 2025-05-21 04:18 PM PDT -Six5pAdes,2025-05-21T23:18:27Z,- Six5pAdes unassigned from issue: [7636](https://github.com/hackforla/website/issues/7636#issuecomment-2899482311) at 2025-05-21 04:18 PM PDT -Six5pAdes,2025-05-21T23:29:45Z,- Six5pAdes unassigned from issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822748832) at 2025-05-21 04:29 PM PDT -Six5pAdes,2025-05-21T23:31:24Z,- Six5pAdes assigned to issue: [7590](https://github.com/hackforla/website/issues/7590#issuecomment-2822748832) at 2025-05-21 04:31 PM PDT -Six5pAdes,2025-05-21T23:37:17Z,- Six5pAdes commented on issue: [7925](https://github.com/hackforla/website/issues/7925#issuecomment-2899506240) at 2025-05-21 04:37 PM PDT -siyunfeng,7575,SKILLS ISSUE -siyunfeng,2024-10-08T03:43:19Z,- siyunfeng opened issue: [7575](https://github.com/hackforla/website/issues/7575) at 2024-10-07 08:43 PM PDT -siyunfeng,2024-10-08T03:45:01Z,- siyunfeng assigned to issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2398735813) at 2024-10-07 08:45 PM PDT -siyunfeng,2024-10-08T20:38:22Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2400777153) at 2024-10-08 01:38 PM PDT -siyunfeng,2024-10-09T02:08:40Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2401129990) at 2024-10-08 07:08 PM PDT -siyunfeng,2024-10-09T21:04:32Z,- siyunfeng assigned to issue: [7555](https://github.com/hackforla/website/issues/7555) at 2024-10-09 02:04 PM PDT -siyunfeng,2024-10-10T01:06:01Z,- siyunfeng opened pull request: [7579](https://github.com/hackforla/website/pull/7579) at 2024-10-09 06:06 PM PDT -siyunfeng,2024-10-10T01:08:33Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2403697240) at 2024-10-09 06:08 PM PDT -siyunfeng,2024-10-10T21:19:28Z,- siyunfeng commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2406057019) at 2024-10-10 02:19 PM PDT -siyunfeng,2024-10-10T21:52:51Z,- siyunfeng commented on issue: [7555](https://github.com/hackforla/website/issues/7555#issuecomment-2406105420) at 2024-10-10 02:52 PM PDT -siyunfeng,2024-10-10T21:54:58Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2406108065) at 2024-10-10 02:54 PM PDT -siyunfeng,2024-10-11T02:18:08Z,- siyunfeng commented on pull request: [7579](https://github.com/hackforla/website/pull/7579#issuecomment-2406408457) at 2024-10-10 07:18 PM PDT -siyunfeng,2024-10-12T23:18:13Z,- siyunfeng commented on issue: [7555](https://github.com/hackforla/website/issues/7555#issuecomment-2408741842) at 2024-10-12 04:18 PM PDT -siyunfeng,2024-10-12T23:18:29Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2408741910) at 2024-10-12 04:18 PM PDT -siyunfeng,2024-10-13T18:24:16Z,- siyunfeng pull request merged: [7579](https://github.com/hackforla/website/pull/7579#event-14620289930) at 2024-10-13 11:24 AM PDT -siyunfeng,2024-10-13T20:47:30Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2409119710) at 2024-10-13 01:47 PM PDT -siyunfeng,2024-10-13T21:12:14Z,- siyunfeng assigned to issue: [7477](https://github.com/hackforla/website/issues/7477) at 2024-10-13 02:12 PM PDT -siyunfeng,2024-10-13T21:27:54Z,- siyunfeng commented on issue: [7477](https://github.com/hackforla/website/issues/7477#issuecomment-2409137949) at 2024-10-13 02:27 PM PDT -siyunfeng,2024-10-13T21:40:15Z,- siyunfeng opened pull request: [7588](https://github.com/hackforla/website/pull/7588) at 2024-10-13 02:40 PM PDT -siyunfeng,2024-10-15T02:00:56Z,- siyunfeng pull request merged: [7588](https://github.com/hackforla/website/pull/7588#event-14649328378) at 2024-10-14 07:00 PM PDT -siyunfeng,2024-10-15T18:31:33Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2414732653) at 2024-10-15 11:31 AM PDT -siyunfeng,2024-10-15T21:47:05Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2415224175) at 2024-10-15 02:47 PM PDT -siyunfeng,2024-10-16T03:09:13Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2415633321) at 2024-10-15 08:09 PM PDT -siyunfeng,2024-10-16T20:49:54Z,- siyunfeng commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2417936608) at 2024-10-16 01:49 PM PDT -siyunfeng,2024-10-16T22:55:02Z,- siyunfeng commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2418103887) at 2024-10-16 03:55 PM PDT -siyunfeng,2024-10-17T06:16:43Z,- siyunfeng submitted pull request review: [7598](https://github.com/hackforla/website/pull/7598#pullrequestreview-2374252419) at 2024-10-16 11:16 PM PDT -siyunfeng,2024-10-17T06:20:28Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2418624607) at 2024-10-16 11:20 PM PDT -siyunfeng,2024-10-17T20:11:56Z,- siyunfeng assigned to issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2362570168) at 2024-10-17 01:11 PM PDT -siyunfeng,2024-10-17T20:14:49Z,- siyunfeng commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2420469974) at 2024-10-17 01:14 PM PDT -siyunfeng,2024-10-18T23:42:27Z,- siyunfeng commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2423376770) at 2024-10-18 04:42 PM PDT -siyunfeng,2024-10-21T18:48:52Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2427469793) at 2024-10-21 11:48 AM PDT -siyunfeng,2024-10-21T19:34:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2427557269) at 2024-10-21 12:34 PM PDT -siyunfeng,2024-10-21T20:08:41Z,- siyunfeng commented on pull request: [7599](https://github.com/hackforla/website/pull/7599#issuecomment-2427620470) at 2024-10-21 01:08 PM PDT -siyunfeng,2024-10-21T20:43:50Z,- siyunfeng submitted pull request review: [7599](https://github.com/hackforla/website/pull/7599#pullrequestreview-2383271432) at 2024-10-21 01:43 PM PDT -siyunfeng,2024-10-21T20:46:10Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2427685817) at 2024-10-21 01:46 PM PDT -siyunfeng,2024-10-21T21:00:49Z,- siyunfeng assigned to issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2297386212) at 2024-10-21 02:00 PM PDT -siyunfeng,2024-10-21T21:04:54Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2427716479) at 2024-10-21 02:04 PM PDT -siyunfeng,2024-10-22T03:59:25Z,- siyunfeng opened issue: [7619](https://github.com/hackforla/website/issues/7619) at 2024-10-21 08:59 PM PDT -siyunfeng,2024-10-22T04:04:23Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2428182592) at 2024-10-21 09:04 PM PDT -siyunfeng,2024-10-22T04:13:39Z,- siyunfeng opened issue: [7620](https://github.com/hackforla/website/issues/7620) at 2024-10-21 09:13 PM PDT -siyunfeng,2024-10-22T04:20:00Z,- siyunfeng opened issue: [7621](https://github.com/hackforla/website/issues/7621) at 2024-10-21 09:20 PM PDT -siyunfeng,2024-10-22T22:21:15Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2430425129) at 2024-10-22 03:21 PM PDT -siyunfeng,2024-10-23T06:03:41Z,- siyunfeng commented on issue: [7317](https://github.com/hackforla/website/issues/7317#issuecomment-2430987452) at 2024-10-22 11:03 PM PDT -siyunfeng,2024-10-23T18:47:20Z,- siyunfeng commented on pull request: [7628](https://github.com/hackforla/website/pull/7628#issuecomment-2433163019) at 2024-10-23 11:47 AM PDT -siyunfeng,2024-10-23T19:38:16Z,- siyunfeng submitted pull request review: [7628](https://github.com/hackforla/website/pull/7628#pullrequestreview-2390003335) at 2024-10-23 12:38 PM PDT -siyunfeng,2024-10-24T06:27:13Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2434405242) at 2024-10-23 11:27 PM PDT -siyunfeng,2024-10-24T06:44:28Z,- siyunfeng assigned to issue: [7600](https://github.com/hackforla/website/issues/7600) at 2024-10-23 11:44 PM PDT -siyunfeng,2024-10-24T06:44:41Z,- siyunfeng unassigned from issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2434430602) at 2024-10-23 11:44 PM PDT -siyunfeng,2024-10-25T18:23:05Z,- siyunfeng commented on pull request: [7634](https://github.com/hackforla/website/pull/7634#issuecomment-2438543672) at 2024-10-25 11:23 AM PDT -siyunfeng,2024-10-25T18:35:32Z,- siyunfeng submitted pull request review: [7634](https://github.com/hackforla/website/pull/7634#pullrequestreview-2396153888) at 2024-10-25 11:35 AM PDT -siyunfeng,2024-10-26T19:47:27Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2439717039) at 2024-10-26 12:47 PM PDT -siyunfeng,2024-10-26T21:17:19Z,- siyunfeng commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2439739187) at 2024-10-26 02:17 PM PDT -siyunfeng,2024-10-26T21:42:51Z,- siyunfeng submitted pull request review: [7639](https://github.com/hackforla/website/pull/7639#pullrequestreview-2397364227) at 2024-10-26 02:42 PM PDT -siyunfeng,2024-10-28T21:32:40Z,- siyunfeng commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442673348) at 2024-10-28 02:32 PM PDT -siyunfeng,2024-10-28T21:34:41Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2442676319) at 2024-10-28 02:34 PM PDT -siyunfeng,2024-10-28T21:39:28Z,- siyunfeng assigned to issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2434430602) at 2024-10-28 02:39 PM PDT -siyunfeng,2024-10-28T21:41:27Z,- siyunfeng commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2442686715) at 2024-10-28 02:41 PM PDT -siyunfeng,2024-10-28T23:02:44Z,- siyunfeng opened pull request: [7656](https://github.com/hackforla/website/pull/7656) at 2024-10-28 04:02 PM PDT -siyunfeng,2024-10-29T03:34:01Z,- siyunfeng commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2443129929) at 2024-10-28 08:34 PM PDT -siyunfeng,2024-10-29T04:53:53Z,- siyunfeng submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2400713907) at 2024-10-28 09:53 PM PDT -siyunfeng,2024-10-29T06:59:39Z,- siyunfeng commented on issue: [7600](https://github.com/hackforla/website/issues/7600#issuecomment-2443361166) at 2024-10-28 11:59 PM PDT -siyunfeng,2024-10-30T20:38:26Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2448328245) at 2024-10-30 01:38 PM PDT -siyunfeng,2024-10-31T06:04:34Z,- siyunfeng commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2449065099) at 2024-10-30 11:04 PM PDT -siyunfeng,2024-10-31T22:30:27Z,- siyunfeng pull request merged: [7656](https://github.com/hackforla/website/pull/7656#event-15049318273) at 2024-10-31 03:30 PM PDT -siyunfeng,2024-10-31T23:12:32Z,- siyunfeng commented on pull request: [7656](https://github.com/hackforla/website/pull/7656#issuecomment-2451001475) at 2024-10-31 04:12 PM PDT -siyunfeng,2024-10-31T23:15:10Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2451003862) at 2024-10-31 04:15 PM PDT -siyunfeng,2024-11-01T04:34:55Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2451278204) at 2024-10-31 09:34 PM PDT -siyunfeng,2024-11-01T05:15:42Z,- siyunfeng submitted pull request review: [7660](https://github.com/hackforla/website/pull/7660#pullrequestreview-2409480214) at 2024-10-31 10:15 PM PDT -siyunfeng,2024-11-01T05:25:50Z,- siyunfeng commented on pull request: [7665](https://github.com/hackforla/website/pull/7665#issuecomment-2451316409) at 2024-10-31 10:25 PM PDT -siyunfeng,2024-11-01T05:48:26Z,- siyunfeng submitted pull request review: [7665](https://github.com/hackforla/website/pull/7665#pullrequestreview-2409503586) at 2024-10-31 10:48 PM PDT -siyunfeng,2024-11-03T07:55:42Z,- siyunfeng commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453333185) at 2024-11-02 11:55 PM PST -siyunfeng,2024-11-03T09:25:25Z,- siyunfeng submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2411803041) at 2024-11-03 01:25 AM PST -siyunfeng,2024-11-04T00:50:07Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2453658945) at 2024-11-03 04:50 PM PST -siyunfeng,2024-11-04T00:51:47Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2453659989) at 2024-11-03 04:51 PM PST -siyunfeng,2024-11-04T02:14:00Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2453712166) at 2024-11-03 06:14 PM PST -siyunfeng,2024-11-04T20:00:02Z,- siyunfeng commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455589918) at 2024-11-04 12:00 PM PST -siyunfeng,2024-11-04T20:02:27Z,- siyunfeng submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2414004047) at 2024-11-04 12:02 PM PST -siyunfeng,2024-11-04T20:13:50Z,- siyunfeng submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2414026031) at 2024-11-04 12:13 PM PST -siyunfeng,2024-11-04T20:23:30Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2455629875) at 2024-11-04 12:23 PM PST -siyunfeng,2024-11-05T06:47:28Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2456368677) at 2024-11-04 10:47 PM PST -siyunfeng,2024-11-05T18:15:41Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2457864666) at 2024-11-05 10:15 AM PST -siyunfeng,2024-11-05T20:39:50Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458111465) at 2024-11-05 12:39 PM PST -siyunfeng,2024-11-05T21:51:30Z,- siyunfeng submitted pull request review: [7700](https://github.com/hackforla/website/pull/7700#pullrequestreview-2416765564) at 2024-11-05 01:51 PM PST -siyunfeng,2024-11-05T21:54:16Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458221789) at 2024-11-05 01:54 PM PST -siyunfeng,2024-11-05T23:15:12Z,- siyunfeng commented on pull request: [7700](https://github.com/hackforla/website/pull/7700#issuecomment-2458387578) at 2024-11-05 03:15 PM PST -siyunfeng,2024-11-05T23:21:31Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2458394078) at 2024-11-05 03:21 PM PST -siyunfeng,2024-11-06T20:37:05Z,- siyunfeng commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460729640) at 2024-11-06 12:37 PM PST -siyunfeng,2024-11-06T21:11:41Z,- siyunfeng submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2419428132) at 2024-11-06 01:11 PM PST -siyunfeng,2024-11-06T21:14:36Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2460796423) at 2024-11-06 01:14 PM PST -siyunfeng,2024-11-06T22:50:35Z,- siyunfeng commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460952322) at 2024-11-06 02:50 PM PST -siyunfeng,2024-11-07T02:26:56Z,- siyunfeng submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2419810657) at 2024-11-06 06:26 PM PST -siyunfeng,2024-11-07T02:31:03Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2461189761) at 2024-11-06 06:31 PM PST -siyunfeng,2024-11-08T19:38:05Z,- siyunfeng assigned to issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2130375061) at 2024-11-08 11:38 AM PST -siyunfeng,2024-11-08T20:38:38Z,- siyunfeng submitted pull request review: [7637](https://github.com/hackforla/website/pull/7637#pullrequestreview-2424882947) at 2024-11-08 12:38 PM PST -siyunfeng,2024-11-08T20:50:49Z,- siyunfeng submitted pull request review: [7706](https://github.com/hackforla/website/pull/7706#pullrequestreview-2424898546) at 2024-11-08 12:50 PM PST -siyunfeng,2024-11-08T22:35:25Z,- siyunfeng commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2465854406) at 2024-11-08 02:35 PM PST -siyunfeng,2024-11-09T05:26:16Z,- siyunfeng commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2466058828) at 2024-11-08 09:26 PM PST -siyunfeng,2024-11-11T02:33:19Z,- siyunfeng commented on pull request: [7715](https://github.com/hackforla/website/pull/7715#issuecomment-2467115070) at 2024-11-10 06:33 PM PST -siyunfeng,2024-11-11T02:49:01Z,- siyunfeng submitted pull request review: [7715](https://github.com/hackforla/website/pull/7715#pullrequestreview-2426021074) at 2024-11-10 06:49 PM PST -siyunfeng,2024-11-11T02:51:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2467130155) at 2024-11-10 06:51 PM PST -siyunfeng,2024-11-11T02:54:29Z,- siyunfeng commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2467132213) at 2024-11-10 06:54 PM PST -siyunfeng,2024-11-11T23:14:55Z,- siyunfeng submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2428309608) at 2024-11-11 03:14 PM PST -siyunfeng,2024-11-11T23:16:46Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2469267587) at 2024-11-11 03:16 PM PST -siyunfeng,2024-11-13T04:10:56Z,- siyunfeng commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2472334290) at 2024-11-12 08:10 PM PST -siyunfeng,2024-11-13T04:18:52Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2472341284) at 2024-11-12 08:18 PM PST -siyunfeng,2024-11-14T00:48:38Z,- siyunfeng assigned to issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2058018157) at 2024-11-13 04:48 PM PST -siyunfeng,2024-11-14T00:49:59Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2475122571) at 2024-11-13 04:49 PM PST -siyunfeng,2024-11-14T04:03:14Z,- siyunfeng commented on pull request: [7719](https://github.com/hackforla/website/pull/7719#issuecomment-2475367293) at 2024-11-13 08:03 PM PST -siyunfeng,2024-11-14T04:05:39Z,- siyunfeng commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2475369900) at 2024-11-13 08:05 PM PST -siyunfeng,2024-11-14T20:53:05Z,- siyunfeng submitted pull request review: [7718](https://github.com/hackforla/website/pull/7718#pullrequestreview-2437178682) at 2024-11-14 12:53 PM PST -siyunfeng,2024-11-14T21:00:40Z,- siyunfeng commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2477400533) at 2024-11-14 01:00 PM PST -siyunfeng,2024-11-14T21:09:37Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2477414013) at 2024-11-14 01:09 PM PST -siyunfeng,2024-11-14T21:11:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2477417685) at 2024-11-14 01:11 PM PST -siyunfeng,2024-11-14T22:11:08Z,- siyunfeng submitted pull request review: [7719](https://github.com/hackforla/website/pull/7719#pullrequestreview-2437299396) at 2024-11-14 02:11 PM PST -siyunfeng,2024-11-14T22:13:59Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2477512257) at 2024-11-14 02:13 PM PST -siyunfeng,2024-11-15T00:18:27Z,- siyunfeng submitted pull request review: [7718](https://github.com/hackforla/website/pull/7718#pullrequestreview-2437436349) at 2024-11-14 04:18 PM PST -siyunfeng,2024-11-15T07:15:57Z,- siyunfeng commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2478112724) at 2024-11-14 11:15 PM PST -siyunfeng,2024-11-15T23:55:10Z,- siyunfeng opened issue: [7722](https://github.com/hackforla/website/issues/7722) at 2024-11-15 03:55 PM PST -siyunfeng,2024-11-16T00:03:08Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2480174164) at 2024-11-15 04:03 PM PST -siyunfeng,2024-11-16T00:34:44Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2480226165) at 2024-11-15 04:34 PM PST -siyunfeng,2024-11-16T04:17:44Z,- siyunfeng submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2440293764) at 2024-11-15 08:17 PM PST -siyunfeng,2024-11-18T22:01:16Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2484222417) at 2024-11-18 02:01 PM PST -siyunfeng,2024-11-20T03:44:05Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2487288334) at 2024-11-19 07:44 PM PST -siyunfeng,2024-11-21T01:27:52Z,- siyunfeng commented on pull request: [7744](https://github.com/hackforla/website/pull/7744#issuecomment-2489877841) at 2024-11-20 05:27 PM PST -siyunfeng,2024-11-21T01:40:03Z,- siyunfeng submitted pull request review: [7744](https://github.com/hackforla/website/pull/7744#pullrequestreview-2450046850) at 2024-11-20 05:40 PM PST -siyunfeng,2024-11-21T01:42:18Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2489891903) at 2024-11-20 05:42 PM PST -siyunfeng,2024-11-21T21:25:16Z,- siyunfeng commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2492369205) at 2024-11-21 01:25 PM PST -siyunfeng,2024-11-22T22:21:14Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2494968923) at 2024-11-22 02:21 PM PST -siyunfeng,2024-11-23T18:07:07Z,- siyunfeng commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2495568348) at 2024-11-23 10:07 AM PST -siyunfeng,2024-11-23T18:08:12Z,- siyunfeng commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2495571861) at 2024-11-23 10:08 AM PST -siyunfeng,2024-11-24T02:10:44Z,- siyunfeng commented on issue: [7722](https://github.com/hackforla/website/issues/7722#issuecomment-2495755284) at 2024-11-23 06:10 PM PST -siyunfeng,2024-11-25T03:51:49Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2496635983) at 2024-11-24 07:51 PM PST -siyunfeng,2024-11-26T02:45:00Z,- siyunfeng commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2499534120) at 2024-11-25 06:45 PM PST -siyunfeng,2024-11-26T03:04:17Z,- siyunfeng submitted pull request review: [7748](https://github.com/hackforla/website/pull/7748#pullrequestreview-2460197768) at 2024-11-25 07:04 PM PST -siyunfeng,2024-11-26T03:06:12Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2499554731) at 2024-11-25 07:06 PM PST -siyunfeng,2024-11-27T04:10:18Z,- siyunfeng assigned to issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2148567579) at 2024-11-26 08:10 PM PST -siyunfeng,2024-11-30T08:53:33Z,- siyunfeng commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2508891769) at 2024-11-30 12:53 AM PST -siyunfeng,2024-12-02T01:21:34Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2510373136) at 2024-12-01 05:21 PM PST -siyunfeng,2024-12-02T22:06:47Z,- siyunfeng commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2513041040) at 2024-12-02 02:06 PM PST -siyunfeng,2024-12-02T22:10:20Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2513049399) at 2024-12-02 02:10 PM PST -siyunfeng,2024-12-05T02:16:53Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2518940290) at 2024-12-04 06:16 PM PST -siyunfeng,2024-12-07T03:13:39Z,- siyunfeng commented on pull request: [7791](https://github.com/hackforla/website/pull/7791#issuecomment-2524834080) at 2024-12-06 07:13 PM PST -siyunfeng,2024-12-07T03:30:24Z,- siyunfeng submitted pull request review: [7791](https://github.com/hackforla/website/pull/7791#pullrequestreview-2486283318) at 2024-12-06 07:30 PM PST -siyunfeng,2024-12-07T04:07:42Z,- siyunfeng commented on pull request: [7793](https://github.com/hackforla/website/pull/7793#issuecomment-2524857011) at 2024-12-06 08:07 PM PST -siyunfeng,2024-12-10T05:51:17Z,- siyunfeng closed issue by PR 7798: [7731](https://github.com/hackforla/website/issues/7731#event-15595054541) at 2024-12-09 09:51 PM PST -siyunfeng,2024-12-10T05:59:09Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2530517745) at 2024-12-09 09:59 PM PST -siyunfeng,2024-12-12T04:26:19Z,- siyunfeng commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2537786990) at 2024-12-11 08:26 PM PST -siyunfeng,2024-12-12T21:20:38Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2540035820) at 2024-12-12 01:20 PM PST -siyunfeng,2024-12-18T06:14:59Z,- siyunfeng closed issue by PR 7803: [7722](https://github.com/hackforla/website/issues/7722#event-15698105945) at 2024-12-17 10:14 PM PST -siyunfeng,2025-01-14T01:06:38Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2588540183) at 2025-01-13 05:06 PM PST -siyunfeng,2025-01-20T09:49:05Z,- siyunfeng commented on pull request: [7822](https://github.com/hackforla/website/pull/7822#issuecomment-2601921517) at 2025-01-20 01:49 AM PST -siyunfeng,2025-01-25T04:50:28Z,- siyunfeng commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2613779745) at 2025-01-24 08:50 PM PST -siyunfeng,2025-01-25T04:58:46Z,- siyunfeng commented on pull request: [7846](https://github.com/hackforla/website/pull/7846#issuecomment-2613781643) at 2025-01-24 08:58 PM PST -siyunfeng,2025-01-29T04:08:03Z,- siyunfeng commented on pull request: [7840](https://github.com/hackforla/website/pull/7840#issuecomment-2620680349) at 2025-01-28 08:08 PM PST -siyunfeng,2025-01-29T04:15:25Z,- siyunfeng commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2620686268) at 2025-01-28 08:15 PM PST -siyunfeng,2025-01-29T10:39:19Z,- siyunfeng closed issue by PR 7840: [7752](https://github.com/hackforla/website/issues/7752#event-16105869179) at 2025-01-29 02:39 AM PST -siyunfeng,2025-01-30T06:32:36Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2623628068) at 2025-01-29 10:32 PM PST -siyunfeng,2025-02-26T19:45:04Z,- siyunfeng commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2686031266) at 2025-02-26 11:45 AM PST -siyunfeng,2025-02-26T19:48:23Z,- siyunfeng commented on issue: [7484](https://github.com/hackforla/website/issues/7484#issuecomment-2686038468) at 2025-02-26 11:48 AM PST -siyunfeng,2025-02-28T16:00:28Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2691012267) at 2025-02-28 08:00 AM PST -siyunfeng,2025-03-06T21:19:56Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2704966148) at 2025-03-06 01:19 PM PST -siyunfeng,2025-03-07T16:49:24Z,- siyunfeng opened pull request: [7984](https://github.com/hackforla/website/pull/7984) at 2025-03-07 08:49 AM PST -siyunfeng,2025-03-07T16:58:18Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2706954040) at 2025-03-07 08:58 AM PST -siyunfeng,2025-03-11T21:12:30Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2715719409) at 2025-03-11 02:12 PM PDT -siyunfeng,2025-03-11T21:14:52Z,- siyunfeng commented on pull request: [7984](https://github.com/hackforla/website/pull/7984#issuecomment-2715723574) at 2025-03-11 02:14 PM PDT -siyunfeng,2025-03-12T21:02:21Z,- siyunfeng opened issue: [7988](https://github.com/hackforla/website/issues/7988) at 2025-03-12 02:02 PM PDT -siyunfeng,2025-03-13T03:23:47Z,- siyunfeng pull request closed w/o merging: [7984](https://github.com/hackforla/website/pull/7984#event-16724305147) at 2025-03-12 08:23 PM PDT -siyunfeng,2025-03-13T20:26:03Z,- siyunfeng closed issue by PR 7986: [7938](https://github.com/hackforla/website/issues/7938#event-16749152973) at 2025-03-13 01:26 PM PDT -siyunfeng,2025-03-13T20:41:35Z,- siyunfeng commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2722645433) at 2025-03-13 01:41 PM PDT -siyunfeng,2025-03-14T20:19:27Z,- siyunfeng commented on issue: [7575](https://github.com/hackforla/website/issues/7575#issuecomment-2725665414) at 2025-03-14 01:19 PM PDT -siyunfeng,2025-03-14T20:50:08Z,- siyunfeng commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2725720991) at 2025-03-14 01:50 PM PDT -siyunfeng,2025-03-14T22:20:31Z,- siyunfeng commented on issue: [6129](https://github.com/hackforla/website/issues/6129#issuecomment-2725899999) at 2025-03-14 03:20 PM PDT -siyunfeng,2025-03-17T19:37:23Z,- siyunfeng commented on pull request: [7989](https://github.com/hackforla/website/pull/7989#issuecomment-2730628174) at 2025-03-17 12:37 PM PDT -siyunfeng,2025-03-17T19:37:42Z,- siyunfeng closed issue by PR 7989: [7475](https://github.com/hackforla/website/issues/7475#event-16813261008) at 2025-03-17 12:37 PM PDT - REPLACED BY - 7633 (Sk-223),4721,SKILLS ISSUE -Sk-223,7633,SKILLS ISSUE -Sk-223,2023-05-24T03:21:19Z,- Sk-223 opened issue: [4721](https://github.com/hackforla/website/issues/4721) at 2023-05-23 08:21 PM PDT -Sk-223,2023-05-24T03:21:48Z,- Sk-223 assigned to issue: [4721](https://github.com/hackforla/website/issues/4721) at 2023-05-23 08:21 PM PDT -Sk-223,2023-05-27T18:45:16Z,- Sk-223 assigned to issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565101261) at 2023-05-27 11:45 AM PDT -Sk-223,2023-05-27T20:17:07Z,- Sk-223 commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1565664860) at 2023-05-27 01:17 PM PDT -Sk-223,2023-05-31T05:54:21Z,- Sk-223 unassigned from issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1567288597) at 2023-05-30 10:54 PM PDT -Sk-223,2023-06-02T15:10:26Z,- Sk-223 assigned to issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1550016553) at 2023-06-02 08:10 AM PDT -Sk-223,2023-06-16T03:36:22Z,- Sk-223 commented on issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1594039412) at 2023-06-15 08:36 PM PDT -Sk-223,2023-06-16T03:45:26Z,- Sk-223 opened pull request: [4844](https://github.com/hackforla/website/pull/4844) at 2023-06-15 08:45 PM PDT -Sk-223,2023-06-18T15:25:36Z,- Sk-223 commented on issue: [4721](https://github.com/hackforla/website/issues/4721#issuecomment-1596183406) at 2023-06-18 08:25 AM PDT -Sk-223,2023-06-18T23:44:08Z,- Sk-223 pull request merged: [4844](https://github.com/hackforla/website/pull/4844#event-9562282759) at 2023-06-18 04:44 PM PDT -Sk-223,2024-10-24T17:36:19Z,- Sk-223 opened issue: [7633](https://github.com/hackforla/website/issues/7633) at 2024-10-24 10:36 AM PDT -Sk-223,2024-10-24T17:36:20Z,- Sk-223 assigned to issue: [7633](https://github.com/hackforla/website/issues/7633) at 2024-10-24 10:36 AM PDT -Sk-223,2024-10-24T17:54:20Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2435997917) at 2024-10-24 10:54 AM PDT -Sk-223,2024-11-06T19:58:36Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2460658487) at 2024-11-06 11:58 AM PST -Sk-223,2024-11-06T19:59:52Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2460660762) at 2024-11-06 11:59 AM PST -Sk-223,2024-11-06T20:01:32Z,- Sk-223 assigned to issue: [7643](https://github.com/hackforla/website/issues/7643) at 2024-11-06 12:01 PM PST -Sk-223,2024-11-06T20:25:25Z,- Sk-223 opened pull request: [7706](https://github.com/hackforla/website/pull/7706) at 2024-11-06 12:25 PM PST -Sk-223,2024-11-06T21:48:51Z,- Sk-223 commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2460851272) at 2024-11-06 01:48 PM PST -Sk-223,2024-11-06T22:00:22Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2460868362) at 2024-11-06 02:00 PM PST -Sk-223,2024-11-07T00:28:34Z,- Sk-223 opened pull request: [7708](https://github.com/hackforla/website/pull/7708) at 2024-11-06 04:28 PM PST -Sk-223,2024-11-07T00:39:49Z,- Sk-223 pull request closed w/o merging: [7708](https://github.com/hackforla/website/pull/7708#event-15163640133) at 2024-11-06 04:39 PM PST -Sk-223,2024-11-07T00:52:09Z,- Sk-223 unassigned from issue: [4477](https://github.com/hackforla/website/issues/4477#event-9562282786) at 2024-11-06 04:52 PM PST -Sk-223,2024-11-07T01:07:04Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2461112867) at 2024-11-06 05:07 PM PST -Sk-223,2024-11-08T20:19:34Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2465686632) at 2024-11-08 12:19 PM PST -Sk-223,2024-11-08T20:24:57Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2465693731) at 2024-11-08 12:24 PM PST -Sk-223,2024-11-09T03:39:35Z,- Sk-223 commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2466026122) at 2024-11-08 07:39 PM PST -Sk-223,2024-11-09T04:56:21Z,- Sk-223 commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2466049313) at 2024-11-08 08:56 PM PST -Sk-223,2024-11-10T03:56:55Z,- Sk-223 pull request merged: [7706](https://github.com/hackforla/website/pull/7706#event-15240051975) at 2024-11-09 07:56 PM PST -Sk-223,2024-11-10T19:14:00Z,- Sk-223 commented on issue: [7633](https://github.com/hackforla/website/issues/7633#issuecomment-2466851495) at 2024-11-10 11:14 AM PST -skarakaya1,2975,SKILLS ISSUE -skarakaya1,2022-03-13T18:08:28Z,- skarakaya1 opened issue: [2975](https://github.com/hackforla/website/issues/2975) at 2022-03-13 11:08 AM PDT -skarakaya1,2022-03-13T18:14:18Z,- skarakaya1 assigned to issue: [2975](https://github.com/hackforla/website/issues/2975#issuecomment-1066153663) at 2022-03-13 11:14 AM PDT -skarakaya1,2022-03-13T18:25:30Z,- skarakaya1 closed issue as completed: [2975](https://github.com/hackforla/website/issues/2975#event-6231457334) at 2022-03-13 11:25 AM PDT -skarakaya1,2022-04-11T23:56:01Z,- skarakaya1 commented on issue: [2975](https://github.com/hackforla/website/issues/2975#issuecomment-1095708332) at 2022-04-11 04:56 PM PDT -skibidi350,2025-04-14T17:53:16Z,- skibidi350 commented on issue: [5653](https://github.com/hackforla/website/issues/5653#issuecomment-2802454584) at 2025-04-14 10:53 AM PDT -Skydodle,3609,SKILLS ISSUE -Skydodle,2022-10-11T02:54:18Z,- Skydodle opened issue: [3609](https://github.com/hackforla/website/issues/3609) at 2022-10-10 07:54 PM PDT -Skydodle,2022-10-12T02:57:55Z,- Skydodle assigned to issue: [3609](https://github.com/hackforla/website/issues/3609) at 2022-10-11 07:57 PM PDT -Skydodle,2022-10-12T03:05:22Z,- Skydodle assigned to issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1048142134) at 2022-10-11 08:05 PM PDT -Skydodle,2022-10-12T03:07:13Z,- Skydodle commented on issue: [2843](https://github.com/hackforla/website/issues/2843#issuecomment-1275523175) at 2022-10-11 08:07 PM PDT -Skydodle,2022-10-17T10:18:04Z,- Skydodle opened pull request: [3632](https://github.com/hackforla/website/pull/3632) at 2022-10-17 03:18 AM PDT -Skydodle,2022-10-17T10:22:41Z,- Skydodle commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1280632793) at 2022-10-17 03:22 AM PDT -Skydodle,2022-10-17T10:30:52Z,- Skydodle submitted pull request review: [3625](https://github.com/hackforla/website/pull/3625#pullrequestreview-1143912384) at 2022-10-17 03:30 AM PDT -Skydodle,2022-10-17T22:54:50Z,- Skydodle pull request merged: [3632](https://github.com/hackforla/website/pull/3632#event-7606467865) at 2022-10-17 03:54 PM PDT -Skydodle,2022-10-26T12:06:36Z,- Skydodle commented on issue: [3609](https://github.com/hackforla/website/issues/3609#issuecomment-1291933226) at 2022-10-26 05:06 AM PDT -Skydodle,2022-11-08T12:26:25Z,- Skydodle assigned to issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1145824017) at 2022-11-08 04:26 AM PST -Skydodle,2022-11-08T12:28:18Z,- Skydodle commented on issue: [3208](https://github.com/hackforla/website/issues/3208#issuecomment-1307133004) at 2022-11-08 04:28 AM PST -Skydodle,2022-11-08T12:53:04Z,- Skydodle opened pull request: [3700](https://github.com/hackforla/website/pull/3700) at 2022-11-08 04:53 AM PST -Skydodle,2022-11-10T18:50:17Z,- Skydodle pull request merged: [3700](https://github.com/hackforla/website/pull/3700#event-7786142990) at 2022-11-10 10:50 AM PST -Skydodle,2022-11-13T18:59:12Z,- Skydodle closed issue as completed: [3609](https://github.com/hackforla/website/issues/3609#event-7798874347) at 2022-11-13 10:59 AM PST -Skydodle,2022-11-13T19:19:23Z,- Skydodle assigned to issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1308066218) at 2022-11-13 11:19 AM PST -Skydodle,2022-11-13T19:20:42Z,- Skydodle commented on issue: [3678](https://github.com/hackforla/website/issues/3678#issuecomment-1312801853) at 2022-11-13 11:20 AM PST -Skydodle,2022-11-15T18:38:40Z,- Skydodle opened pull request: [3721](https://github.com/hackforla/website/pull/3721) at 2022-11-15 10:38 AM PST -Skydodle,2022-11-15T18:45:41Z,- Skydodle submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1181386084) at 2022-11-15 10:45 AM PST -Skydodle,2022-11-16T21:27:19Z,- Skydodle pull request merged: [3721](https://github.com/hackforla/website/pull/3721#event-7828088437) at 2022-11-16 01:27 PM PST -Skydodle,2023-03-01T03:50:15Z,- Skydodle assigned to issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1447033104) at 2023-02-28 07:50 PM PST -Skydodle,2023-03-01T05:40:59Z,- Skydodle commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1449382179) at 2023-02-28 09:40 PM PST -Skydodle,2023-03-01T09:32:25Z,- Skydodle commented on issue: [2475](https://github.com/hackforla/website/issues/2475#issuecomment-1449690960) at 2023-03-01 01:32 AM PST -Skydodle,2023-03-09T02:38:56Z,- Skydodle opened pull request: [4135](https://github.com/hackforla/website/pull/4135) at 2023-03-08 06:38 PM PST -Skydodle,2023-03-09T03:00:21Z,- Skydodle submitted pull request review: [4133](https://github.com/hackforla/website/pull/4133#pullrequestreview-1331913353) at 2023-03-08 07:00 PM PST -Skydodle,2023-03-09T03:01:02Z,- Skydodle commented on pull request: [4133](https://github.com/hackforla/website/pull/4133#issuecomment-1461195914) at 2023-03-08 07:01 PM PST -Skydodle,2023-03-09T03:11:22Z,- Skydodle submitted pull request review: [4126](https://github.com/hackforla/website/pull/4126#pullrequestreview-1331920345) at 2023-03-08 07:11 PM PST -Skydodle,2023-03-09T03:53:25Z,- Skydodle commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1461231798) at 2023-03-08 07:53 PM PST -Skydodle,2023-03-12T17:29:05Z,- Skydodle commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1465254282) at 2023-03-12 10:29 AM PDT -Skydodle,2023-03-12T17:38:53Z,- Skydodle assigned to issue: [3821](https://github.com/hackforla/website/issues/3821) at 2023-03-12 10:38 AM PDT -Skydodle,2023-03-12T17:42:17Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1465256872) at 2023-03-12 10:42 AM PDT -Skydodle,2023-03-13T20:06:58Z,- Skydodle pull request merged: [4135](https://github.com/hackforla/website/pull/4135#event-8736020840) at 2023-03-13 01:06 PM PDT -Skydodle,2023-03-14T16:25:36Z,- Skydodle commented on pull request: [4148](https://github.com/hackforla/website/pull/4148#issuecomment-1468425173) at 2023-03-14 09:25 AM PDT -Skydodle,2023-03-14T16:36:59Z,- Skydodle commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1468442671) at 2023-03-14 09:36 AM PDT -Skydodle,2023-03-16T04:09:17Z,- Skydodle submitted pull request review: [4148](https://github.com/hackforla/website/pull/4148#pullrequestreview-1342867810) at 2023-03-15 09:09 PM PDT -Skydodle,2023-03-19T18:42:49Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1475357551) at 2023-03-19 11:42 AM PDT -Skydodle,2023-03-25T05:49:38Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1483734494) at 2023-03-24 10:49 PM PDT -Skydodle,2023-03-25T23:51:53Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1483949761) at 2023-03-25 04:51 PM PDT -Skydodle,2023-03-27T19:25:50Z,- Skydodle commented on issue: [3821](https://github.com/hackforla/website/issues/3821#issuecomment-1485742793) at 2023-03-27 12:25 PM PDT -Skydodle,2023-03-27T19:34:28Z,- Skydodle commented on pull request: [4295](https://github.com/hackforla/website/pull/4295#issuecomment-1485752850) at 2023-03-27 12:34 PM PDT -Skydodle,2023-03-27T19:36:51Z,- Skydodle commented on pull request: [4292](https://github.com/hackforla/website/pull/4292#issuecomment-1485755574) at 2023-03-27 12:36 PM PDT -Skydodle,2023-03-27T19:41:57Z,- Skydodle assigned to issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1482951990) at 2023-03-27 12:41 PM PDT -Skydodle,2023-03-27T19:44:43Z,- Skydodle commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1485764564) at 2023-03-27 12:44 PM PDT -Skydodle,2023-03-27T21:06:00Z,- Skydodle submitted pull request review: [4295](https://github.com/hackforla/website/pull/4295#pullrequestreview-1359871570) at 2023-03-27 02:06 PM PDT -Skydodle,2023-03-27T21:08:29Z,- Skydodle submitted pull request review: [4292](https://github.com/hackforla/website/pull/4292#pullrequestreview-1359874501) at 2023-03-27 02:08 PM PDT -Skydodle,2023-04-11T00:35:50Z,- Skydodle commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1502519348) at 2023-04-10 05:35 PM PDT -Skydodle,2023-04-12T03:02:10Z,- Skydodle opened issue: [4480](https://github.com/hackforla/website/issues/4480) at 2023-04-11 08:02 PM PDT -Skydodle,2023-05-16T04:51:23Z,- Skydodle unassigned from issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1547125558) at 2023-05-15 09:51 PM PDT -Skydodle,2023-05-16T04:52:32Z,- Skydodle commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1548986877) at 2023-05-15 09:52 PM PDT -sleepyyuu,5607,SKILLS ISSUE -sleepyyuu,2023-09-27T02:39:32Z,- sleepyyuu opened issue: [5607](https://github.com/hackforla/website/issues/5607) at 2023-09-26 07:39 PM PDT -sleepyyuu,2023-09-27T02:39:37Z,- sleepyyuu assigned to issue: [5607](https://github.com/hackforla/website/issues/5607) at 2023-09-26 07:39 PM PDT -smendoza07,6714,SKILLS ISSUE -smendoza07,2024-04-24T02:41:15Z,- smendoza07 opened issue: [6714](https://github.com/hackforla/website/issues/6714) at 2024-04-23 07:41 PM PDT -smendoza07,2024-04-24T02:41:43Z,- smendoza07 assigned to issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2073895031) at 2024-04-23 07:41 PM PDT -smendoza07,2024-04-30T19:41:55Z,- smendoza07 commented on issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2086883347) at 2024-04-30 12:41 PM PDT -smendoza07,2024-04-30T20:00:18Z,- smendoza07 commented on issue: [6714](https://github.com/hackforla/website/issues/6714#issuecomment-2086979603) at 2024-04-30 01:00 PM PDT -smendoza07,2024-05-01T19:44:15Z,- smendoza07 assigned to issue: [6703](https://github.com/hackforla/website/issues/6703) at 2024-05-01 12:44 PM PDT -smendoza07,2024-05-01T20:23:14Z,- smendoza07 commented on issue: [6703](https://github.com/hackforla/website/issues/6703#issuecomment-2089075114) at 2024-05-01 01:23 PM PDT -smendoza07,2024-05-04T00:04:54Z,- smendoza07 opened pull request: [6814](https://github.com/hackforla/website/pull/6814) at 2024-05-03 05:04 PM PDT -smendoza07,2024-05-07T17:55:15Z,- smendoza07 assigned to issue: [6761](https://github.com/hackforla/website/issues/6761) at 2024-05-07 10:55 AM PDT -smendoza07,2024-05-07T19:11:00Z,- smendoza07 pull request merged: [6814](https://github.com/hackforla/website/pull/6814#event-12734184291) at 2024-05-07 12:11 PM PDT -smendoza07,2024-05-09T01:46:35Z,- smendoza07 commented on issue: [6761](https://github.com/hackforla/website/issues/6761#issuecomment-2101780908) at 2024-05-08 06:46 PM PDT -smendoza07,2024-05-12T01:34:44Z,- smendoza07 opened pull request: [6851](https://github.com/hackforla/website/pull/6851) at 2024-05-11 06:34 PM PDT -smendoza07,2024-05-15T03:40:49Z,- smendoza07 closed issue as completed: [6714](https://github.com/hackforla/website/issues/6714#event-12810637816) at 2024-05-14 08:40 PM PDT -smendoza07,2024-05-15T17:52:54Z,- smendoza07 pull request merged: [6851](https://github.com/hackforla/website/pull/6851#event-12821507703) at 2024-05-15 10:52 AM PDT -smendoza07,2024-05-24T02:24:34Z,- smendoza07 commented on pull request: [6887](https://github.com/hackforla/website/pull/6887#issuecomment-2128378334) at 2024-05-23 07:24 PM PDT -smithasindagi,2021-06-20T20:56:25Z,- smithasindagi assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-864609580) at 2021-06-20 01:56 PM PDT -smithasindagi,2021-06-20T22:15:50Z,- smithasindagi assigned to issue: [1797](https://github.com/hackforla/website/issues/1797#issuecomment-864617999) at 2021-06-20 03:15 PM PDT -smithasindagi,2021-07-04T18:20:37Z,- smithasindagi opened issue: [1888](https://github.com/hackforla/website/issues/1888) at 2021-07-04 11:20 AM PDT -smithasindagi,2021-07-04T18:23:52Z,- smithasindagi assigned to issue: [1888](https://github.com/hackforla/website/issues/1888) at 2021-07-04 11:23 AM PDT -smithasindagi,2021-07-04T18:38:47Z,- smithasindagi commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-873639426) at 2021-07-04 11:38 AM PDT -smithasindagi,2021-07-07T21:35:41Z,- smithasindagi commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-875950857) at 2021-07-07 02:35 PM PDT -smithasindagi,2021-08-12T20:05:00Z,- smithasindagi unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -smithasindagi,2021-08-15T07:36:35Z,- smithasindagi unassigned from issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-898241252) at 2021-08-15 12:36 AM PDT -smithasindagi,2021-08-15T07:37:40Z,- smithasindagi commented on issue: [1888](https://github.com/hackforla/website/issues/1888#issuecomment-899009790) at 2021-08-15 12:37 AM PDT -smsada,2022-06-09T19:15:36Z,- smsada opened issue: [3236](https://github.com/hackforla/website/issues/3236) at 2022-06-09 12:15 PM PDT -smsada,2022-06-09T19:17:50Z,- smsada commented on issue: [3236](https://github.com/hackforla/website/issues/3236#issuecomment-1151521522) at 2022-06-09 12:17 PM PDT -sneha-kataria,2025-05-07T20:05:15Z,- sneha-kataria assigned to issue: [7679](https://github.com/hackforla/website/issues/7679#issuecomment-2840129258) at 2025-05-07 01:05 PM PDT -sneha-kataria,2025-05-07T21:09:49Z,- sneha-kataria assigned to issue: [7670](https://github.com/hackforla/website/issues/7670#issuecomment-2713184744) at 2025-05-07 02:09 PM PDT -snigbehara,3167,SKILLS ISSUE -snigbehara,2022-05-23T01:37:41Z,- snigbehara opened issue: [3167](https://github.com/hackforla/website/issues/3167) at 2022-05-22 06:37 PM PDT -snooravi,2021-05-19T02:18:29Z,- snooravi opened issue: [1590](https://github.com/hackforla/website/issues/1590) at 2021-05-18 07:18 PM PDT -snooravi,2021-05-19T02:20:43Z,- snooravi commented on issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-05-18 07:20 PM PDT -sobe-an,2021-08-08T18:40:33Z,- sobe-an commented on issue: [1343](https://github.com/hackforla/website/issues/1343#issuecomment-894838033) at 2021-08-08 11:40 AM PDT -sobe-an,2021-08-08T19:35:11Z,- sobe-an commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-894844704) at 2021-08-08 12:35 PM PDT -sobe-an,2021-08-08T19:35:44Z,- sobe-an commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-894844766) at 2021-08-08 12:35 PM PDT -sobe-an,2021-08-09T04:29:44Z,- sobe-an assigned to issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-894844766) at 2021-08-08 09:29 PM PDT -sobe-an,2021-08-10T18:27:39Z,- sobe-an commented on issue: [2034](https://github.com/hackforla/website/issues/2034#issuecomment-896217312) at 2021-08-10 11:27 AM PDT -sobe-an,2021-08-10T18:27:39Z,- sobe-an closed issue as completed: [2034](https://github.com/hackforla/website/issues/2034#event-5137051120) at 2021-08-10 11:27 AM PDT -sobe-an,2021-08-12T20:05:08Z,- sobe-an assigned to issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-08-12 01:05 PM PDT -sobe-an,2021-08-15T17:41:49Z,- sobe-an reopened issue: [2063](https://github.com/hackforla/website/issues/2063#event-5158958356) at 2021-08-15 10:41 AM PDT -sobe-an,2021-08-15T17:42:46Z,- sobe-an closed issue by PR 2098: [2063](https://github.com/hackforla/website/issues/2063#event-5159974859) at 2021-08-15 10:42 AM PDT -sobe-an,2021-08-18T20:36:58Z,- sobe-an assigned to issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-863822411) at 2021-08-18 01:36 PM PDT -sobe-an,2021-08-22T18:57:51Z,- sobe-an closed issue as completed: [2143](https://github.com/hackforla/website/issues/2143#event-5191144067) at 2021-08-22 11:57 AM PDT -sobe-an,2021-08-22T19:08:37Z,- sobe-an opened issue: [2160](https://github.com/hackforla/website/issues/2160) at 2021-08-22 12:08 PM PDT -sobe-an,2021-08-22T19:45:50Z,- sobe-an opened issue: [2162](https://github.com/hackforla/website/issues/2162) at 2021-08-22 12:45 PM PDT -sobe-an,2021-08-27T07:54:53Z,- sobe-an commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-907005042) at 2021-08-27 12:54 AM PDT -sobe-an,2021-09-01T19:10:12Z,- sobe-an unassigned from issue: [1734](https://github.com/hackforla/website/issues/1734#issuecomment-884447841) at 2021-09-01 12:10 PM PDT -sobe-an,2021-09-04T10:33:40Z,- sobe-an commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-912950639) at 2021-09-04 03:33 AM PDT -sobe-an,2021-09-08T19:55:54Z,- sobe-an unassigned from issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-912950639) at 2021-09-08 12:55 PM PDT -sofiatajide,2024-09-23T23:15:26Z,- sofiatajide opened issue: [7509](https://github.com/hackforla/website/issues/7509) at 2024-09-23 04:15 PM PDT -sofiatajide,2024-09-23T23:15:27Z,- sofiatajide assigned to issue: [7509](https://github.com/hackforla/website/issues/7509) at 2024-09-23 04:15 PM PDT -sofiatajide,2024-10-06T18:34:49Z,- sofiatajide closed issue as completed: [7509](https://github.com/hackforla/website/issues/7509#event-14531242809) at 2024-10-06 11:34 AM PDT -sofiatajide,2024-10-06T18:34:52Z,- sofiatajide reopened issue: [7509](https://github.com/hackforla/website/issues/7509#event-14531242809) at 2024-10-06 11:34 AM PDT -sofiatajide,2024-10-27T17:13:49Z,- sofiatajide opened issue: [7640](https://github.com/hackforla/website/issues/7640) at 2024-10-27 10:13 AM PDT -sofiatajide,2024-10-27T17:13:56Z,- sofiatajide assigned to issue: [7640](https://github.com/hackforla/website/issues/7640) at 2024-10-27 10:13 AM PDT -sofiatajide,2024-11-10T17:06:35Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2466811343) at 2024-11-10 09:06 AM PST -sofiatajide,2024-11-17T03:25:07Z,- sofiatajide opened issue: [7724](https://github.com/hackforla/website/issues/7724) at 2024-11-16 07:25 PM PST -sofiatajide,2024-11-17T03:25:57Z,- sofiatajide assigned to issue: [7724](https://github.com/hackforla/website/issues/7724#issuecomment-2480908708) at 2024-11-16 07:25 PM PST -sofiatajide,2024-11-17T03:33:25Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2480910434) at 2024-11-16 07:33 PM PST -sofiatajide,2024-11-17T18:33:11Z,- sofiatajide assigned to issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2468920141) at 2024-11-17 10:33 AM PST -sofiatajide,2024-11-17T18:42:37Z,- sofiatajide unassigned from issue: [7724](https://github.com/hackforla/website/issues/7724#issuecomment-2480908708) at 2024-11-17 10:42 AM PST -sofiatajide,2024-11-19T19:01:00Z,- sofiatajide unassigned from issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2480910434) at 2024-11-19 11:01 AM PST -sofiatajide,2024-11-23T15:52:53Z,- sofiatajide opened issue: [7759](https://github.com/hackforla/website/issues/7759) at 2024-11-23 07:52 AM PST -sofiatajide,2024-11-23T15:53:30Z,- sofiatajide closed issue as completed: [7759](https://github.com/hackforla/website/issues/7759#event-15408017871) at 2024-11-23 07:53 AM PST -sofiatajide,2024-11-23T15:54:37Z,- sofiatajide reopened issue: [7759](https://github.com/hackforla/website/issues/7759#issuecomment-2495521068) at 2024-11-23 07:54 AM PST -sofiatajide,2024-11-24T17:35:56Z,- sofiatajide opened issue: [7761](https://github.com/hackforla/website/issues/7761) at 2024-11-24 09:35 AM PST -sofiatajide,2024-11-24T17:55:22Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2496137545) at 2024-11-24 09:55 AM PST -sofiatajide,2025-01-19T17:06:04Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2600945323) at 2025-01-19 09:06 AM PST -sofiatajide,2025-01-19T17:19:37Z,- sofiatajide assigned to issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2277284985) at 2025-01-19 09:19 AM PST -sofiatajide,2025-01-19T17:26:14Z,- sofiatajide commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2600951602) at 2025-01-19 09:26 AM PST -sofiatajide,2025-01-22T17:23:57Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2607835295) at 2025-01-22 09:23 AM PST -sofiatajide,2025-01-26T12:20:04Z,- sofiatajide opened issue: [7853](https://github.com/hackforla/website/issues/7853) at 2025-01-26 04:20 AM PST -sofiatajide,2025-01-26T12:20:09Z,- sofiatajide assigned to issue: [7853](https://github.com/hackforla/website/issues/7853) at 2025-01-26 04:20 AM PST -sofiatajide,2025-01-26T12:33:16Z,- sofiatajide commented on issue: [7005](https://github.com/hackforla/website/issues/7005#issuecomment-2614399963) at 2025-01-26 04:33 AM PST -sofiatajide,2025-01-26T12:42:45Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2614403541) at 2025-01-26 04:42 AM PST -sofiatajide,2025-01-26T12:48:37Z,- sofiatajide commented on issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2614405510) at 2025-01-26 04:48 AM PST -sofiatajide,2025-02-02T02:28:50Z,- sofiatajide opened issue: [7872](https://github.com/hackforla/website/issues/7872) at 2025-02-01 06:28 PM PST -sofiatajide,2025-02-02T02:54:30Z,- sofiatajide commented on issue: [7509](https://github.com/hackforla/website/issues/7509#issuecomment-2629216437) at 2025-02-01 06:54 PM PST -sofiatajide,2025-02-09T17:06:04Z,- sofiatajide unassigned from issue: [7853](https://github.com/hackforla/website/issues/7853#issuecomment-2614525756) at 2025-02-09 09:06 AM PST -sofiatajide,2025-02-09T18:40:27Z,- sofiatajide unassigned from issue: [7710](https://github.com/hackforla/website/issues/7710#issuecomment-2642098959) at 2025-02-09 10:40 AM PST -sofiatajide,2025-02-09T18:41:24Z,- sofiatajide assigned to issue: [7710](https://github.com/hackforla/website/issues/7710#event-16238995199) at 2025-02-09 10:41 AM PST -sofiatajide,2025-02-09T18:46:17Z,- sofiatajide assigned to issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2646476192) at 2025-02-09 10:46 AM PST -sofiatajide,2025-02-16T18:11:11Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2661553074) at 2025-02-16 10:11 AM PST -sofiatajide,2025-02-23T16:33:44Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2676975927) at 2025-02-23 08:33 AM PST -sofiatajide,2025-04-06T10:48:04Z,- sofiatajide commented on issue: [7640](https://github.com/hackforla/website/issues/7640#issuecomment-2781359277) at 2025-04-06 03:48 AM PDT -sofiatajide,2025-04-13T11:32:47Z,- sofiatajide opened issue: [8063](https://github.com/hackforla/website/issues/8063) at 2025-04-13 04:32 AM PDT -soleilherring,4610,SKILLS ISSUE -soleilherring,2023-05-09T03:02:49Z,- soleilherring opened issue: [4610](https://github.com/hackforla/website/issues/4610) at 2023-05-08 08:02 PM PDT -soleilherring,2023-05-09T03:27:26Z,- soleilherring assigned to issue: [4610](https://github.com/hackforla/website/issues/4610) at 2023-05-08 08:27 PM PDT -soleilherring,2023-09-14T04:34:40Z,- soleilherring reopened issue: [4610](https://github.com/hackforla/website/issues/4610#event-9785036268) at 2023-09-13 09:34 PM PDT -soleilherring,2023-09-20T22:33:08Z,- soleilherring assigned to issue: [5367](https://github.com/hackforla/website/issues/5367#issuecomment-1698558074) at 2023-09-20 03:33 PM PDT -soleilherring,2023-09-21T00:21:21Z,- soleilherring opened pull request: [5564](https://github.com/hackforla/website/pull/5564) at 2023-09-20 05:21 PM PDT -soleilherring,2023-09-27T19:06:23Z,- soleilherring commented on pull request: [5564](https://github.com/hackforla/website/pull/5564#issuecomment-1737933813) at 2023-09-27 12:06 PM PDT -soleilherring,2023-09-27T19:46:23Z,- soleilherring pull request merged: [5564](https://github.com/hackforla/website/pull/5564#event-10491544941) at 2023-09-27 12:46 PM PDT -soleilherring,2023-11-07T01:04:33Z,- soleilherring assigned to issue: [5856](https://github.com/hackforla/website/issues/5856) at 2023-11-06 05:04 PM PST -soleilherring,2023-11-07T20:53:59Z,- soleilherring opened pull request: [5877](https://github.com/hackforla/website/pull/5877) at 2023-11-07 12:53 PM PST -soleilherring,2023-11-08T20:21:49Z,- soleilherring commented on pull request: [5877](https://github.com/hackforla/website/pull/5877#issuecomment-1802594185) at 2023-11-08 12:21 PM PST -soleilherring,2023-11-09T01:09:22Z,- soleilherring pull request merged: [5877](https://github.com/hackforla/website/pull/5877#event-10907349916) at 2023-11-08 05:09 PM PST -soleilherring,2023-11-30T21:10:40Z,- soleilherring commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1834565404) at 2023-11-30 01:10 PM PST -soleilherring,2023-11-30T21:13:36Z,- soleilherring commented on pull request: [5942](https://github.com/hackforla/website/pull/5942#issuecomment-1834569088) at 2023-11-30 01:13 PM PST -soleilherring,2024-01-02T20:52:33Z,- soleilherring submitted pull request review: [5942](https://github.com/hackforla/website/pull/5942#pullrequestreview-1801014510) at 2024-01-02 12:52 PM PST -sonalinajera,3570,SKILLS ISSUE -sonalinajera,2022-09-21T03:11:14Z,- sonalinajera opened issue: [3570](https://github.com/hackforla/website/issues/3570) at 2022-09-20 08:11 PM PDT -sonalinajera,2022-09-21T03:13:49Z,- sonalinajera assigned to issue: [3570](https://github.com/hackforla/website/issues/3570) at 2022-09-20 08:13 PM PDT -sonalinajera,2022-09-21T03:22:52Z,- sonalinajera assigned to issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1047137128) at 2022-09-20 08:22 PM PDT -sonalinajera,2022-09-21T03:26:10Z,- sonalinajera commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1253158471) at 2022-09-20 08:26 PM PDT -sonalinajera,2022-11-14T17:39:46Z,- sonalinajera unassigned from issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1286576019) at 2022-11-14 09:39 AM PST -sonjand,7825,SKILLS ISSUE -sonjand,2025-01-14T03:49:08Z,- sonjand opened issue: [7825](https://github.com/hackforla/website/issues/7825) at 2025-01-13 07:49 PM PST -sonjand,2025-01-14T03:49:13Z,- sonjand assigned to issue: [7825](https://github.com/hackforla/website/issues/7825) at 2025-01-13 07:49 PM PST -sonjand,2025-01-14T06:37:44Z,- sonjand commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2589144667) at 2025-01-13 10:37 PM PST -sonjand,2025-01-16T02:15:28Z,- sonjand commented on issue: [7825](https://github.com/hackforla/website/issues/7825#issuecomment-2594327291) at 2025-01-15 06:15 PM PST -sophia-bui,5350,SKILLS ISSUE -sophia-bui,2023-08-30T03:39:23Z,- sophia-bui opened issue: [5350](https://github.com/hackforla/website/issues/5350) at 2023-08-29 08:39 PM PDT -sophia-bui,2023-08-30T03:41:45Z,- sophia-bui assigned to issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1698440429) at 2023-08-29 08:41 PM PDT -sophia-bui,2023-09-11T22:29:38Z,- sophia-bui closed issue as completed: [5350](https://github.com/hackforla/website/issues/5350#event-10339535563) at 2023-09-11 03:29 PM PDT -sophia-bui,2023-09-11T22:30:37Z,- sophia-bui commented on issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1714671464) at 2023-09-11 03:30 PM PDT -sophia-bui,2023-09-11T22:31:12Z,- sophia-bui reopened issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1714671464) at 2023-09-11 03:31 PM PDT -sornekian,5773,SKILLS ISSUE -sornekian,2023-10-25T02:42:26Z,- sornekian opened issue: [5773](https://github.com/hackforla/website/issues/5773) at 2023-10-24 07:42 PM PDT -sornekian,2023-10-25T02:43:47Z,- sornekian assigned to issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1778413348) at 2023-10-24 07:43 PM PDT -sornekian,2023-11-09T18:39:20Z,- sornekian assigned to issue: [5806](https://github.com/hackforla/website/issues/5806) at 2023-11-09 10:39 AM PST -sornekian,2023-11-09T21:57:19Z,- sornekian opened pull request: [5890](https://github.com/hackforla/website/pull/5890) at 2023-11-09 01:57 PM PST -sornekian,2023-11-10T20:26:23Z,- sornekian commented on pull request: [5890](https://github.com/hackforla/website/pull/5890#issuecomment-1806388666) at 2023-11-10 12:26 PM PST -sornekian,2023-11-12T17:39:41Z,- sornekian pull request merged: [5890](https://github.com/hackforla/website/pull/5890#event-10934992738) at 2023-11-12 09:39 AM PST -sornekian,2023-11-12T17:53:30Z,- sornekian assigned to issue: [5802](https://github.com/hackforla/website/issues/5802) at 2023-11-12 09:53 AM PST -sornekian,2023-11-14T21:10:03Z,- sornekian opened pull request: [5902](https://github.com/hackforla/website/pull/5902) at 2023-11-14 01:10 PM PST -sornekian,2023-11-14T21:16:51Z,- sornekian commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1811323567) at 2023-11-14 01:16 PM PST -sornekian,2023-11-15T22:26:31Z,- sornekian pull request merged: [5902](https://github.com/hackforla/website/pull/5902#event-10972963450) at 2023-11-15 02:26 PM PST -sornekian,2023-11-21T22:14:34Z,- sornekian assigned to issue: [5796](https://github.com/hackforla/website/issues/5796) at 2023-11-21 02:14 PM PST -sornekian,2023-11-21T22:15:33Z,- sornekian assigned to issue: [5681](https://github.com/hackforla/website/issues/5681#issuecomment-1752135453) at 2023-11-21 02:15 PM PST -sornekian,2023-11-22T03:42:03Z,- sornekian commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1822040914) at 2023-11-21 07:42 PM PST -sornekian,2023-11-22T20:47:51Z,- sornekian submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1745355628) at 2023-11-22 12:47 PM PST -sornekian,2023-11-22T21:00:38Z,- sornekian opened pull request: [5933](https://github.com/hackforla/website/pull/5933) at 2023-11-22 01:00 PM PST -sornekian,2023-11-26T02:23:29Z,- sornekian pull request merged: [5933](https://github.com/hackforla/website/pull/5933#event-11061770056) at 2023-11-25 06:23 PM PST -sornekian,2023-11-29T21:11:31Z,- sornekian opened pull request: [5946](https://github.com/hackforla/website/pull/5946) at 2023-11-29 01:11 PM PST -sornekian,2023-11-30T00:35:47Z,- sornekian pull request merged: [5946](https://github.com/hackforla/website/pull/5946#event-11102882614) at 2023-11-29 04:35 PM PST -sornekian,2023-11-30T21:07:45Z,- sornekian assigned to issue: [5673](https://github.com/hackforla/website/issues/5673#issuecomment-1751955451) at 2023-11-30 01:07 PM PST -sornekian,2023-11-30T21:11:57Z,- sornekian commented on issue: [5673](https://github.com/hackforla/website/issues/5673#issuecomment-1834566999) at 2023-11-30 01:11 PM PST -sornekian,2023-12-05T00:49:12Z,- sornekian opened pull request: [5961](https://github.com/hackforla/website/pull/5961) at 2023-12-04 04:49 PM PST -sornekian,2023-12-08T03:54:20Z,- sornekian pull request merged: [5961](https://github.com/hackforla/website/pull/5961#event-11189166770) at 2023-12-07 07:54 PM PST -sornekian,2023-12-13T19:49:56Z,- sornekian assigned to issue: [5684](https://github.com/hackforla/website/issues/5684#issuecomment-1752402265) at 2023-12-13 11:49 AM PST -sornekian,2023-12-13T19:51:35Z,- sornekian commented on issue: [5684](https://github.com/hackforla/website/issues/5684#issuecomment-1854609305) at 2023-12-13 11:51 AM PST -sornekian,2023-12-15T21:49:37Z,- sornekian opened pull request: [6010](https://github.com/hackforla/website/pull/6010) at 2023-12-15 01:49 PM PST -sornekian,2023-12-15T21:53:15Z,- sornekian commented on pull request: [6010](https://github.com/hackforla/website/pull/6010#issuecomment-1858532866) at 2023-12-15 01:53 PM PST -sornekian,2023-12-18T22:36:17Z,- sornekian pull request merged: [6010](https://github.com/hackforla/website/pull/6010#event-11282377258) at 2023-12-18 02:36 PM PST -sornekian,2023-12-21T21:28:50Z,- sornekian assigned to issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1745138050) at 2023-12-21 01:28 PM PST -sornekian,2023-12-26T19:35:30Z,- sornekian commented on issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1869735855) at 2023-12-26 11:35 AM PST -sornekian,2023-12-26T20:14:31Z,- sornekian opened pull request: [6016](https://github.com/hackforla/website/pull/6016) at 2023-12-26 12:14 PM PST -sornekian,2023-12-29T22:59:50Z,- sornekian commented on issue: [5773](https://github.com/hackforla/website/issues/5773#issuecomment-1872381321) at 2023-12-29 02:59 PM PST -sornekian,2023-12-29T23:03:08Z,- sornekian assigned to issue: [6020](https://github.com/hackforla/website/issues/6020) at 2023-12-29 03:03 PM PST -sornekian,2023-12-29T23:04:16Z,- sornekian commented on issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382720) at 2023-12-29 03:04 PM PST -sornekian,2023-12-30T16:56:07Z,- sornekian unassigned from issue: [5507](https://github.com/hackforla/website/issues/5507#issuecomment-1869735855) at 2023-12-30 08:56 AM PST -sornekian,2023-12-30T16:56:24Z,- sornekian pull request closed w/o merging: [6016](https://github.com/hackforla/website/pull/6016#event-11360227575) at 2023-12-30 08:56 AM PST -sornekian,2023-12-30T16:56:37Z,- sornekian unassigned from issue: [6020](https://github.com/hackforla/website/issues/6020#issuecomment-1872382720) at 2023-12-30 08:56 AM PST -sornekian,2024-01-02T20:09:38Z,- sornekian assigned to issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1872854985) at 2024-01-02 12:09 PM PST -sornekian,2024-01-05T05:23:17Z,- sornekian opened pull request: [6067](https://github.com/hackforla/website/pull/6067) at 2024-01-04 09:23 PM PST -sornekian,2024-01-05T19:13:24Z,- sornekian closed issue as completed: [5773](https://github.com/hackforla/website/issues/5773#event-11404405555) at 2024-01-05 11:13 AM PST -sornekian,2024-01-05T22:19:08Z,- sornekian unassigned from issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1874494308) at 2024-01-05 02:19 PM PST -sornekian,2024-01-05T22:21:46Z,- sornekian pull request closed w/o merging: [6067](https://github.com/hackforla/website/pull/6067#event-11405667956) at 2024-01-05 02:21 PM PST -sornekian,2024-01-16T20:42:13Z,- sornekian assigned to issue: [5986](https://github.com/hackforla/website/issues/5986) at 2024-01-16 12:42 PM PST -sornekian,2024-01-17T20:23:27Z,- sornekian submitted pull request review: [5920](https://github.com/hackforla/website/pull/5920#pullrequestreview-1828121511) at 2024-01-17 12:23 PM PST -sornekian,2024-01-17T20:57:56Z,- sornekian commented on issue: [5986](https://github.com/hackforla/website/issues/5986#issuecomment-1896677968) at 2024-01-17 12:57 PM PST -sornekian,2024-01-23T01:58:45Z,- sornekian commented on pull request: [6133](https://github.com/hackforla/website/pull/6133#issuecomment-1905155121) at 2024-01-22 05:58 PM PST -sornekian,2024-01-24T20:27:58Z,- sornekian submitted pull request review: [6133](https://github.com/hackforla/website/pull/6133#pullrequestreview-1842308551) at 2024-01-24 12:27 PM PST -sornekian,2024-01-30T18:33:56Z,- sornekian assigned to issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1911472384) at 2024-01-30 10:33 AM PST -sornekian,2024-01-30T18:34:43Z,- sornekian commented on issue: [6184](https://github.com/hackforla/website/issues/6184#issuecomment-1917658188) at 2024-01-30 10:34 AM PST -sornekian,2024-02-01T04:47:30Z,- sornekian opened pull request: [6204](https://github.com/hackforla/website/pull/6204) at 2024-01-31 08:47 PM PST -sornekian,2024-02-02T21:07:00Z,- sornekian assigned to issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1916399948) at 2024-02-02 01:07 PM PST -sornekian,2024-02-07T19:25:32Z,- sornekian opened pull request: [6262](https://github.com/hackforla/website/pull/6262) at 2024-02-07 11:25 AM PST -sornekian,2024-02-07T19:41:19Z,- sornekian commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1932745560) at 2024-02-07 11:41 AM PST -sornekian,2024-02-09T07:52:49Z,- sornekian pull request closed w/o merging: [6204](https://github.com/hackforla/website/pull/6204#event-11754851914) at 2024-02-08 11:52 PM PST -sornekian,2024-02-09T07:54:15Z,- sornekian pull request merged: [6262](https://github.com/hackforla/website/pull/6262#event-11754862020) at 2024-02-08 11:54 PM PST -sornekian,2024-02-18T19:22:15Z,- sornekian opened pull request: [6318](https://github.com/hackforla/website/pull/6318) at 2024-02-18 11:22 AM PST -sornekian,2024-02-25T21:33:27Z,- sornekian commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1963068347) at 2024-02-25 01:33 PM PST -sornekian,2024-02-26T21:48:13Z,- sornekian commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1965354406) at 2024-02-26 01:48 PM PST -sornekian,2024-02-29T03:22:11Z,- sornekian pull request closed w/o merging: [6318](https://github.com/hackforla/website/pull/6318#event-11960110127) at 2024-02-28 07:22 PM PST -sornekian,2024-02-29T03:36:32Z,- sornekian opened pull request: [6392](https://github.com/hackforla/website/pull/6392) at 2024-02-28 07:36 PM PST -sornekian,2024-03-02T19:30:20Z,- sornekian commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1974887318) at 2024-03-02 11:30 AM PST -sornekian,2024-03-12T00:01:58Z,- sornekian commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1989666676) at 2024-03-11 05:01 PM PDT -sornekian,2024-03-18T20:27:57Z,- sornekian pull request closed w/o merging: [6392](https://github.com/hackforla/website/pull/6392#event-12158892061) at 2024-03-18 01:27 PM PDT -sornekian,2024-03-18T20:28:19Z,- sornekian unassigned from issue: [6196](https://github.com/hackforla/website/issues/6196#issuecomment-1957787673) at 2024-03-18 01:28 PM PDT -Sparky-code,2783,SKILLS ISSUE -Sparky-code,2022-02-16T03:52:32Z,- Sparky-code opened issue: [2783](https://github.com/hackforla/website/issues/2783) at 2022-02-15 07:52 PM PST -Sparky-code,2022-02-16T03:53:15Z,- Sparky-code assigned to issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1041075473) at 2022-02-15 07:53 PM PST -Sparky-code,2022-02-16T19:15:14Z,- Sparky-code assigned to issue: [2430](https://github.com/hackforla/website/issues/2430#issuecomment-958116834) at 2022-02-16 11:15 AM PST -Sparky-code,2022-02-16T19:38:04Z,- Sparky-code commented on issue: [2430](https://github.com/hackforla/website/issues/2430#issuecomment-1042093008) at 2022-02-16 11:38 AM PST -Sparky-code,2022-02-16T19:54:47Z,- Sparky-code opened pull request: [2786](https://github.com/hackforla/website/pull/2786) at 2022-02-16 11:54 AM PST -Sparky-code,2022-02-18T01:19:06Z,- Sparky-code pull request merged: [2786](https://github.com/hackforla/website/pull/2786#event-6094744799) at 2022-02-17 05:19 PM PST -Sparky-code,2022-02-23T04:08:25Z,- Sparky-code opened issue: [2856](https://github.com/hackforla/website/issues/2856) at 2022-02-22 08:08 PM PST -Sparky-code,2022-02-23T04:12:33Z,- Sparky-code opened issue: [2857](https://github.com/hackforla/website/issues/2857) at 2022-02-22 08:12 PM PST -Sparky-code,2022-02-23T04:18:44Z,- Sparky-code opened issue: [2858](https://github.com/hackforla/website/issues/2858) at 2022-02-22 08:18 PM PST -Sparky-code,2022-02-23T04:22:08Z,- Sparky-code opened issue: [2859](https://github.com/hackforla/website/issues/2859) at 2022-02-22 08:22 PM PST -Sparky-code,2022-02-23T05:42:56Z,- Sparky-code opened issue: [2863](https://github.com/hackforla/website/issues/2863) at 2022-02-22 09:42 PM PST -Sparky-code,2022-02-23T05:45:48Z,- Sparky-code opened issue: [2864](https://github.com/hackforla/website/issues/2864) at 2022-02-22 09:45 PM PST -Sparky-code,2022-02-23T05:48:42Z,- Sparky-code opened issue: [2865](https://github.com/hackforla/website/issues/2865) at 2022-02-22 09:48 PM PST -Sparky-code,2022-02-23T05:52:26Z,- Sparky-code opened issue: [2866](https://github.com/hackforla/website/issues/2866) at 2022-02-22 09:52 PM PST -Sparky-code,2022-02-23T05:55:39Z,- Sparky-code opened issue: [2867](https://github.com/hackforla/website/issues/2867) at 2022-02-22 09:55 PM PST -Sparky-code,2022-02-23T06:00:14Z,- Sparky-code opened issue: [2868](https://github.com/hackforla/website/issues/2868) at 2022-02-22 10:00 PM PST -Sparky-code,2022-02-23T06:03:59Z,- Sparky-code opened issue: [2869](https://github.com/hackforla/website/issues/2869) at 2022-02-22 10:03 PM PST -Sparky-code,2022-02-23T06:06:28Z,- Sparky-code opened issue: [2870](https://github.com/hackforla/website/issues/2870) at 2022-02-22 10:06 PM PST -Sparky-code,2022-02-23T06:09:27Z,- Sparky-code opened issue: [2871](https://github.com/hackforla/website/issues/2871) at 2022-02-22 10:09 PM PST -Sparky-code,2022-02-23T16:49:05Z,- Sparky-code assigned to issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1016724987) at 2022-02-23 08:49 AM PST -Sparky-code,2022-02-23T17:07:01Z,- Sparky-code commented on issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1049006936) at 2022-02-23 09:07 AM PST -Sparky-code,2022-02-25T01:39:48Z,- Sparky-code closed issue as completed: [2783](https://github.com/hackforla/website/issues/2783#event-6136240414) at 2022-02-24 05:39 PM PST -Sparky-code,2022-02-25T02:31:48Z,- Sparky-code opened pull request: [2885](https://github.com/hackforla/website/pull/2885) at 2022-02-24 06:31 PM PST -Sparky-code,2022-02-25T02:36:05Z,- Sparky-code commented on pull request: [2885](https://github.com/hackforla/website/pull/2885#issuecomment-1050460316) at 2022-02-24 06:36 PM PST -Sparky-code,2022-02-25T03:04:04Z,- Sparky-code assigned to issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1045501013) at 2022-02-24 07:04 PM PST -Sparky-code,2022-02-25T03:05:19Z,- Sparky-code commented on issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1050474250) at 2022-02-24 07:05 PM PST -Sparky-code,2022-02-25T23:54:29Z,- Sparky-code unassigned from issue: [2792](https://github.com/hackforla/website/issues/2792#issuecomment-1051349764) at 2022-02-25 03:54 PM PST -Sparky-code,2022-02-25T23:59:48Z,- Sparky-code commented on issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1051381904) at 2022-02-25 03:59 PM PST -Sparky-code,2022-02-26T01:54:41Z,- Sparky-code commented on issue: [2273](https://github.com/hackforla/website/issues/2273#issuecomment-1051443945) at 2022-02-25 05:54 PM PST -Sparky-code,2022-02-26T01:56:12Z,- Sparky-code closed issue as completed: [2783](https://github.com/hackforla/website/issues/2783#event-6142793240) at 2022-02-25 05:56 PM PST -Sparky-code,2022-02-26T18:56:50Z,- Sparky-code pull request merged: [2885](https://github.com/hackforla/website/pull/2885#event-6146530942) at 2022-02-26 10:56 AM PST -Sparky-code,2022-02-26T23:18:12Z,- Sparky-code commented on issue: [2423](https://github.com/hackforla/website/issues/2423#issuecomment-1052772738) at 2022-02-26 03:18 PM PST -Sparky-code,2022-02-27T18:27:04Z,- Sparky-code commented on pull request: [2889](https://github.com/hackforla/website/pull/2889#issuecomment-1053638942) at 2022-02-27 10:27 AM PST -Sparky-code,2022-02-28T17:17:45Z,- Sparky-code submitted pull request review: [2889](https://github.com/hackforla/website/pull/2889#pullrequestreview-895375122) at 2022-02-28 09:17 AM PST -Sparky-code,2022-02-28T17:18:36Z,- Sparky-code submitted pull request review: [2889](https://github.com/hackforla/website/pull/2889#pullrequestreview-895376110) at 2022-02-28 09:18 AM PST -Sparky-code,2022-02-28T17:29:20Z,- Sparky-code assigned to issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-907381202) at 2022-02-28 09:29 AM PST -Sparky-code,2022-02-28T17:30:48Z,- Sparky-code commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-1054494499) at 2022-02-28 09:30 AM PST -Sparky-code,2022-03-02T17:10:03Z,- Sparky-code commented on pull request: [2915](https://github.com/hackforla/website/pull/2915#issuecomment-1057168820) at 2022-03-02 09:10 AM PST -Sparky-code,2022-03-02T20:36:08Z,- Sparky-code commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-1057354028) at 2022-03-02 12:36 PM PST -Sparky-code,2022-03-02T22:29:00Z,- Sparky-code opened pull request: [2918](https://github.com/hackforla/website/pull/2918) at 2022-03-02 02:29 PM PST -Sparky-code,2022-03-03T15:40:14Z,- Sparky-code commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1058168876) at 2022-03-03 07:40 AM PST -Sparky-code,2022-03-07T15:19:17Z,- Sparky-code pull request merged: [2918](https://github.com/hackforla/website/pull/2918#event-6195752815) at 2022-03-07 07:19 AM PST -Sparky-code,2022-03-07T21:34:31Z,- Sparky-code assigned to issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-903154532) at 2022-03-07 01:34 PM PST -Sparky-code,2022-03-07T21:37:53Z,- Sparky-code commented on issue: [2100](https://github.com/hackforla/website/issues/2100#issuecomment-1061162344) at 2022-03-07 01:37 PM PST -Sparky-code,2022-03-08T22:48:47Z,- Sparky-code opened pull request: [2943](https://github.com/hackforla/website/pull/2943) at 2022-03-08 02:48 PM PST -Sparky-code,2022-03-09T03:48:46Z,- Sparky-code closed issue by PR 4886: [2400](https://github.com/hackforla/website/issues/2400#event-6207066669) at 2022-03-08 07:48 PM PST -Sparky-code,2022-03-09T03:48:48Z,- Sparky-code reopened issue: [2400](https://github.com/hackforla/website/issues/2400#event-6207066669) at 2022-03-08 07:48 PM PST -Sparky-code,2022-03-10T03:07:30Z,- Sparky-code commented on pull request: [2944](https://github.com/hackforla/website/pull/2944#issuecomment-1063605828) at 2022-03-09 07:07 PM PST -Sparky-code,2022-03-13T19:33:55Z,- Sparky-code pull request merged: [2943](https://github.com/hackforla/website/pull/2943#event-6231529724) at 2022-03-13 12:33 PM PDT -Sparky-code,2022-03-17T17:45:52Z,- Sparky-code assigned to issue: [2061](https://github.com/hackforla/website/issues/2061#event-5202499635) at 2022-03-17 10:45 AM PDT -Sparky-code,2022-03-19T23:07:35Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1073127448) at 2022-03-19 04:07 PM PDT -Sparky-code,2022-03-20T17:55:43Z,- Sparky-code commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073301232) at 2022-03-20 10:55 AM PDT -Sparky-code,2022-03-20T18:07:09Z,- Sparky-code submitted pull request review: [2992](https://github.com/hackforla/website/pull/2992#pullrequestreview-915134394) at 2022-03-20 11:07 AM PDT -Sparky-code,2022-03-23T23:46:55Z,- Sparky-code submitted pull request review: [3007](https://github.com/hackforla/website/pull/3007#pullrequestreview-919570873) at 2022-03-23 04:46 PM PDT -Sparky-code,2022-03-23T23:50:42Z,- Sparky-code submitted pull request review: [3006](https://github.com/hackforla/website/pull/3006#pullrequestreview-919572629) at 2022-03-23 04:50 PM PDT -Sparky-code,2022-03-24T02:49:17Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1077013611) at 2022-03-23 07:49 PM PDT -Sparky-code,2022-03-27T05:36:22Z,- Sparky-code opened issue: [3018](https://github.com/hackforla/website/issues/3018) at 2022-03-26 10:36 PM PDT -Sparky-code,2022-03-28T17:25:30Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1080940406) at 2022-03-28 10:25 AM PDT -Sparky-code,2022-03-30T19:07:11Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1083518792) at 2022-03-30 12:07 PM PDT -Sparky-code,2022-03-31T20:44:13Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1085089157) at 2022-03-31 01:44 PM PDT -Sparky-code,2022-04-02T01:43:11Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1086470555) at 2022-04-01 06:43 PM PDT -Sparky-code,2022-04-04T13:05:26Z,- Sparky-code submitted pull request review: [3029](https://github.com/hackforla/website/pull/3029#pullrequestreview-930337090) at 2022-04-04 06:05 AM PDT -Sparky-code,2022-04-04T13:18:55Z,- Sparky-code submitted pull request review: [3030](https://github.com/hackforla/website/pull/3030#pullrequestreview-930357324) at 2022-04-04 06:18 AM PDT -Sparky-code,2022-04-06T16:50:15Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1090486676) at 2022-04-06 09:50 AM PDT -Sparky-code,2022-04-10T17:31:15Z,- Sparky-code commented on issue: [2783](https://github.com/hackforla/website/issues/2783#issuecomment-1094333200) at 2022-04-10 10:31 AM PDT -Sparky-code,2022-04-11T18:14:11Z,- Sparky-code commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1095385673) at 2022-04-11 11:14 AM PDT -Sparky-code,2022-04-11T18:52:27Z,- Sparky-code submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-938453948) at 2022-04-11 11:52 AM PDT -Sparky-code,2022-04-12T00:40:43Z,- Sparky-code commented on pull request: [3042](https://github.com/hackforla/website/pull/3042#issuecomment-1095740473) at 2022-04-11 05:40 PM PDT -Sparky-code,2022-04-12T17:24:44Z,- Sparky-code commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1096995433) at 2022-04-12 10:24 AM PDT -Sparky-code,2022-04-13T01:53:13Z,- Sparky-code commented on pull request: [3046](https://github.com/hackforla/website/pull/3046#issuecomment-1097468574) at 2022-04-12 06:53 PM PDT -Sparky-code,2022-04-14T03:59:47Z,- Sparky-code submitted pull request review: [3046](https://github.com/hackforla/website/pull/3046#pullrequestreview-941764756) at 2022-04-13 08:59 PM PDT -Sparky-code,2022-04-17T17:36:17Z,- Sparky-code submitted pull request review: [3042](https://github.com/hackforla/website/pull/3042#pullrequestreview-943971296) at 2022-04-17 10:36 AM PDT -Sparky-code,2022-04-17T18:39:32Z,- Sparky-code opened issue: [3060](https://github.com/hackforla/website/issues/3060) at 2022-04-17 11:39 AM PDT -Sparky-code,2022-04-17T18:45:19Z,- Sparky-code closed issue as completed: [3060](https://github.com/hackforla/website/issues/3060#event-6444896275) at 2022-04-17 11:45 AM PDT -Sparky-code,2022-04-18T15:01:09Z,- Sparky-code commented on pull request: [3062](https://github.com/hackforla/website/pull/3062#issuecomment-1101475754) at 2022-04-18 08:01 AM PDT -Sparky-code,2022-04-18T15:27:40Z,- Sparky-code commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1101498315) at 2022-04-18 08:27 AM PDT -Sparky-code,2022-04-18T15:30:46Z,- Sparky-code closed issue by PR 3042: [2939](https://github.com/hackforla/website/issues/2939#event-6448677531) at 2022-04-18 08:30 AM PDT -Sparky-code,2022-04-19T02:10:10Z,- Sparky-code submitted pull request review: [3062](https://github.com/hackforla/website/pull/3062#pullrequestreview-944981418) at 2022-04-18 07:10 PM PDT -Sparky-code,2022-04-19T02:24:11Z,- Sparky-code submitted pull request review: [3061](https://github.com/hackforla/website/pull/3061#pullrequestreview-944987591) at 2022-04-18 07:24 PM PDT -Sparky-code,2022-04-19T04:48:47Z,- Sparky-code closed issue by PR 3062: [2912](https://github.com/hackforla/website/issues/2912#event-6451889113) at 2022-04-18 09:48 PM PDT -Sparky-code,2022-04-19T14:07:34Z,- Sparky-code commented on pull request: [3061](https://github.com/hackforla/website/pull/3061#issuecomment-1102701652) at 2022-04-19 07:07 AM PDT -Sparky-code,2022-04-19T14:10:08Z,- Sparky-code commented on issue: [3055](https://github.com/hackforla/website/issues/3055#issuecomment-1102704595) at 2022-04-19 07:10 AM PDT -Sparky-code,2022-04-19T14:10:57Z,- Sparky-code commented on pull request: [3067](https://github.com/hackforla/website/pull/3067#issuecomment-1102705542) at 2022-04-19 07:10 AM PDT -Sparky-code,2022-04-19T17:54:55Z,- Sparky-code submitted pull request review: [3067](https://github.com/hackforla/website/pull/3067#pullrequestreview-946093623) at 2022-04-19 10:54 AM PDT -Sparky-code,2022-04-19T18:01:49Z,- Sparky-code closed issue by PR 3067: [2910](https://github.com/hackforla/website/issues/2910#event-6457325278) at 2022-04-19 11:01 AM PDT -Sparky-code,2022-04-21T16:07:42Z,- Sparky-code commented on pull request: [3073](https://github.com/hackforla/website/pull/3073#issuecomment-1105423007) at 2022-04-21 09:07 AM PDT -Sparky-code,2022-04-21T16:13:15Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1105428664) at 2022-04-21 09:13 AM PDT -Sparky-code,2022-04-21T23:34:34Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1105856614) at 2022-04-21 04:34 PM PDT -Sparky-code,2022-04-22T06:04:11Z,- Sparky-code submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-949476725) at 2022-04-21 11:04 PM PDT -Sparky-code,2022-04-23T05:55:46Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1107375979) at 2022-04-22 10:55 PM PDT -Sparky-code,2022-04-23T05:59:50Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1107377109) at 2022-04-22 10:59 PM PDT -Sparky-code,2022-04-23T19:29:55Z,- Sparky-code submitted pull request review: [3073](https://github.com/hackforla/website/pull/3073#pullrequestreview-951122142) at 2022-04-23 12:29 PM PDT -Sparky-code,2022-04-23T19:33:14Z,- Sparky-code closed issue by PR 3073: [2916](https://github.com/hackforla/website/issues/2916#event-6484933984) at 2022-04-23 12:33 PM PDT -Sparky-code,2022-04-23T19:39:32Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1107637788) at 2022-04-23 12:39 PM PDT -Sparky-code,2022-04-23T21:21:27Z,- Sparky-code opened pull request: [3078](https://github.com/hackforla/website/pull/3078) at 2022-04-23 02:21 PM PDT -Sparky-code,2022-04-24T23:38:47Z,- Sparky-code pull request merged: [3078](https://github.com/hackforla/website/pull/3078#event-6486532920) at 2022-04-24 04:38 PM PDT -Sparky-code,2022-04-25T01:46:43Z,- Sparky-code reopened issue: [2916](https://github.com/hackforla/website/issues/2916#event-6484933984) at 2022-04-24 06:46 PM PDT -Sparky-code,2022-04-25T02:15:30Z,- Sparky-code commented on issue: [2916](https://github.com/hackforla/website/issues/2916#issuecomment-1107993718) at 2022-04-24 07:15 PM PDT -Sparky-code,2022-04-25T03:32:05Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-951315293) at 2022-04-24 08:32 PM PDT -Sparky-code,2022-04-25T16:43:10Z,- Sparky-code opened issue: [3082](https://github.com/hackforla/website/issues/3082) at 2022-04-25 09:43 AM PDT -Sparky-code,2022-04-27T02:36:37Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1110468954) at 2022-04-26 07:36 PM PDT -Sparky-code,2022-04-27T03:41:45Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1110500955) at 2022-04-26 08:41 PM PDT -Sparky-code,2022-04-27T03:50:23Z,- Sparky-code commented on issue: [2802](https://github.com/hackforla/website/issues/2802#issuecomment-1110506971) at 2022-04-26 08:50 PM PDT -Sparky-code,2022-04-27T16:03:43Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1111180892) at 2022-04-27 09:03 AM PDT -Sparky-code,2022-04-28T14:51:36Z,- Sparky-code commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1112304850) at 2022-04-28 07:51 AM PDT -Sparky-code,2022-04-28T21:53:35Z,- Sparky-code submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-957086622) at 2022-04-28 02:53 PM PDT -Sparky-code,2022-05-04T15:49:16Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1117515214) at 2022-05-04 08:49 AM PDT -Sparky-code,2022-05-04T17:42:15Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1117628838) at 2022-05-04 10:42 AM PDT -Sparky-code,2022-05-08T18:05:02Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-965467321) at 2022-05-08 11:05 AM PDT -Sparky-code,2022-05-09T06:58:21Z,- Sparky-code opened issue: [3115](https://github.com/hackforla/website/issues/3115) at 2022-05-08 11:58 PM PDT -Sparky-code,2022-05-09T17:01:18Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1121350093) at 2022-05-09 10:01 AM PDT -Sparky-code,2022-05-10T15:46:45Z,- Sparky-code commented on pull request: [3114](https://github.com/hackforla/website/pull/3114#issuecomment-1122566580) at 2022-05-10 08:46 AM PDT -Sparky-code,2022-05-10T16:39:01Z,- Sparky-code submitted pull request review: [3114](https://github.com/hackforla/website/pull/3114#pullrequestreview-968101587) at 2022-05-10 09:39 AM PDT -Sparky-code,2022-05-10T16:39:40Z,- Sparky-code closed issue by PR 3114: [2728](https://github.com/hackforla/website/issues/2728#event-6583589902) at 2022-05-10 09:39 AM PDT -Sparky-code,2022-05-10T22:58:44Z,- Sparky-code opened issue: [3118](https://github.com/hackforla/website/issues/3118) at 2022-05-10 03:58 PM PDT -Sparky-code,2022-05-16T15:45:27Z,- Sparky-code submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-974188185) at 2022-05-16 08:45 AM PDT -Sparky-code,2022-05-18T02:47:08Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1129510507) at 2022-05-17 07:47 PM PDT -Sparky-code,2022-05-18T03:14:11Z,- Sparky-code opened issue: [3154](https://github.com/hackforla/website/issues/3154) at 2022-05-17 08:14 PM PDT -Sparky-code,2022-05-18T03:17:28Z,- Sparky-code opened issue: [3156](https://github.com/hackforla/website/issues/3156) at 2022-05-17 08:17 PM PDT -Sparky-code,2022-05-18T14:22:34Z,- Sparky-code closed issue as completed: [3154](https://github.com/hackforla/website/issues/3154#event-6632905224) at 2022-05-18 07:22 AM PDT -Sparky-code,2022-05-18T14:37:33Z,- Sparky-code commented on issue: [3156](https://github.com/hackforla/website/issues/3156#issuecomment-1130101358) at 2022-05-18 07:37 AM PDT -Sparky-code,2022-05-18T14:37:33Z,- Sparky-code closed issue as completed: [3156](https://github.com/hackforla/website/issues/3156#event-6633032988) at 2022-05-18 07:37 AM PDT -Sparky-code,2022-05-18T14:47:21Z,- Sparky-code commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1130112696) at 2022-05-18 07:47 AM PDT -Sparky-code,2022-05-18T15:21:29Z,- Sparky-code commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1130157287) at 2022-05-18 08:21 AM PDT -Sparky-code,2022-05-18T15:22:24Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1130158308) at 2022-05-18 08:22 AM PDT -Sparky-code,2022-05-18T15:26:50Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1130163276) at 2022-05-18 08:26 AM PDT -Sparky-code,2022-05-18T20:51:14Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-977633429) at 2022-05-18 01:51 PM PDT -Sparky-code,2022-05-18T20:52:34Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-977634833) at 2022-05-18 01:52 PM PDT -Sparky-code,2022-05-18T21:00:18Z,- Sparky-code submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-977642744) at 2022-05-18 02:00 PM PDT -Sparky-code,2022-05-20T05:20:48Z,- Sparky-code submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-979529300) at 2022-05-19 10:20 PM PDT -Sparky-code,2022-05-20T06:02:42Z,- Sparky-code submitted pull request review: [3085](https://github.com/hackforla/website/pull/3085#pullrequestreview-979555674) at 2022-05-19 11:02 PM PDT -Sparky-code,2022-05-20T17:34:23Z,- Sparky-code commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1133153572) at 2022-05-20 10:34 AM PDT -Sparky-code,2022-05-22T17:34:46Z,- Sparky-code opened issue: [3164](https://github.com/hackforla/website/issues/3164) at 2022-05-22 10:34 AM PDT -Sparky-code,2022-05-23T00:58:08Z,- Sparky-code closed issue as completed: [3164](https://github.com/hackforla/website/issues/3164#event-6656936113) at 2022-05-22 05:58 PM PDT -Sparky-code,2022-05-23T16:05:28Z,- Sparky-code commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1134864174) at 2022-05-23 09:05 AM PDT -Sparky-code,2022-05-23T16:13:05Z,- Sparky-code commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1134872331) at 2022-05-23 09:13 AM PDT -Sparky-code,2022-05-25T06:04:18Z,- Sparky-code commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1136765546) at 2022-05-24 11:04 PM PDT -Sparky-code,2022-05-25T06:11:33Z,- Sparky-code commented on pull request: [3085](https://github.com/hackforla/website/pull/3085#issuecomment-1136770867) at 2022-05-24 11:11 PM PDT -Sparky-code,2022-05-25T06:13:02Z,- Sparky-code closed issue by PR 3085: [2391](https://github.com/hackforla/website/issues/2391#event-6674655647) at 2022-05-24 11:13 PM PDT -Sparky-code,2022-05-25T06:32:20Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1136793588) at 2022-05-24 11:32 PM PDT -Sparky-code,2022-05-25T14:40:16Z,- Sparky-code commented on pull request: [3172](https://github.com/hackforla/website/pull/3172#issuecomment-1137353745) at 2022-05-25 07:40 AM PDT -Sparky-code,2022-05-25T14:40:25Z,- Sparky-code closed issue by PR 3172: [2921](https://github.com/hackforla/website/issues/2921#event-6678425872) at 2022-05-25 07:40 AM PDT -Sparky-code,2022-05-26T22:24:48Z,- Sparky-code submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-986853096) at 2022-05-26 03:24 PM PDT -Sparky-code,2022-05-27T17:37:38Z,- Sparky-code closed issue by PR 3075: [2802](https://github.com/hackforla/website/issues/2802#event-6694294473) at 2022-05-27 10:37 AM PDT -Sparky-code,2022-05-29T17:22:31Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1140491109) at 2022-05-29 10:22 AM PDT -Sparky-code,2022-05-29T20:17:40Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1140518191) at 2022-05-29 01:17 PM PDT -Sparky-code,2022-06-01T01:52:25Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1143030080) at 2022-05-31 06:52 PM PDT -Sparky-code,2022-06-01T01:55:17Z,- Sparky-code submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-991313784) at 2022-05-31 06:55 PM PDT -Sparky-code,2022-06-01T01:55:26Z,- Sparky-code closed issue by PR 3173: [2923](https://github.com/hackforla/website/issues/2923#event-6714300609) at 2022-05-31 06:55 PM PDT -Sparky-code,2022-06-04T16:50:40Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1146648439) at 2022-06-04 09:50 AM PDT -Sparky-code,2022-06-12T17:21:57Z,- Sparky-code commented on pull request: [3086](https://github.com/hackforla/website/pull/3086#issuecomment-1153239173) at 2022-06-12 10:21 AM PDT -Sparky-code,2022-06-12T17:22:05Z,- Sparky-code closed issue by PR 3073: [2916](https://github.com/hackforla/website/issues/2916#event-6791732750) at 2022-06-12 10:22 AM PDT -Sparky-code,2022-06-12T17:24:51Z,- Sparky-code commented on issue: [3144](https://github.com/hackforla/website/issues/3144#issuecomment-1153239886) at 2022-06-12 10:24 AM PDT -Sparky-code,2022-06-12T17:30:21Z,- Sparky-code commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1153241088) at 2022-06-12 10:30 AM PDT -Sparky-code,2022-06-12T17:40:50Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1153243453) at 2022-06-12 10:40 AM PDT -Sparky-code,2022-06-12T17:50:53Z,- Sparky-code commented on pull request: [3237](https://github.com/hackforla/website/pull/3237#issuecomment-1153245815) at 2022-06-12 10:50 AM PDT -Sparky-code,2022-06-15T02:33:35Z,- Sparky-code submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-1006794722) at 2022-06-14 07:33 PM PDT -Sparky-code,2022-06-15T03:06:52Z,- Sparky-code opened issue: [3249](https://github.com/hackforla/website/issues/3249) at 2022-06-14 08:06 PM PDT -Sparky-code,2022-06-15T20:12:00Z,- Sparky-code commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1156885549) at 2022-06-15 01:12 PM PDT -Sparky-code,2022-06-15T20:22:59Z,- Sparky-code submitted pull request review: [3237](https://github.com/hackforla/website/pull/3237#pullrequestreview-1008083088) at 2022-06-15 01:22 PM PDT -Sparky-code,2022-06-15T20:37:16Z,- Sparky-code commented on pull request: [3237](https://github.com/hackforla/website/pull/3237#issuecomment-1156906448) at 2022-06-15 01:37 PM PDT -Sparky-code,2022-06-15T20:37:44Z,- Sparky-code closed issue by PR 3237: [2952](https://github.com/hackforla/website/issues/2952#event-6815991567) at 2022-06-15 01:37 PM PDT -Sparky-code,2022-06-15T20:37:58Z,- Sparky-code closed issue as completed: [3249](https://github.com/hackforla/website/issues/3249#event-6815992815) at 2022-06-15 01:37 PM PDT -Sparky-code,2022-06-15T20:45:21Z,- Sparky-code commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1156913033) at 2022-06-15 01:45 PM PDT -Sparky-code,2022-06-20T20:47:15Z,- Sparky-code commented on pull request: [3264](https://github.com/hackforla/website/pull/3264#issuecomment-1160835994) at 2022-06-20 01:47 PM PDT -Sparky-code,2022-06-22T01:03:30Z,- Sparky-code opened issue: [3281](https://github.com/hackforla/website/issues/3281) at 2022-06-21 06:03 PM PDT -Sparky-code,2022-06-22T05:22:48Z,- Sparky-code submitted pull request review: [3285](https://github.com/hackforla/website/pull/3285#pullrequestreview-1014542990) at 2022-06-21 10:22 PM PDT -Sparky-code,2022-06-22T05:24:21Z,- Sparky-code closed issue by PR 3285: [2876](https://github.com/hackforla/website/issues/2876#event-6853033478) at 2022-06-21 10:24 PM PDT -Sparky-code,2022-06-22T19:18:50Z,- Sparky-code commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1163511266) at 2022-06-22 12:18 PM PDT -Sparky-code,2022-06-23T16:08:38Z,- Sparky-code commented on pull request: [3291](https://github.com/hackforla/website/pull/3291#issuecomment-1164605011) at 2022-06-23 09:08 AM PDT -Sparky-code,2022-06-23T16:09:43Z,- Sparky-code commented on pull request: [3287](https://github.com/hackforla/website/pull/3287#issuecomment-1164606331) at 2022-06-23 09:09 AM PDT -Sparky-code,2022-06-23T16:10:19Z,- Sparky-code commented on pull request: [3288](https://github.com/hackforla/website/pull/3288#issuecomment-1164607011) at 2022-06-23 09:10 AM PDT -Sparky-code,2022-06-23T19:50:58Z,- Sparky-code submitted pull request review: [3288](https://github.com/hackforla/website/pull/3288#pullrequestreview-1017560866) at 2022-06-23 12:50 PM PDT -Sparky-code,2022-06-23T19:53:42Z,- Sparky-code closed issue by PR 3288: [3093](https://github.com/hackforla/website/issues/3093#event-6869155925) at 2022-06-23 12:53 PM PDT -Sparky-code,2022-06-23T19:56:31Z,- Sparky-code commented on pull request: [3261](https://github.com/hackforla/website/pull/3261#issuecomment-1164811438) at 2022-06-23 12:56 PM PDT -Sparky-code,2022-06-23T19:59:55Z,- Sparky-code submitted pull request review: [3287](https://github.com/hackforla/website/pull/3287#pullrequestreview-1017570211) at 2022-06-23 12:59 PM PDT -Sparky-code,2022-06-23T20:12:55Z,- Sparky-code commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1164824359) at 2022-06-23 01:12 PM PDT -Sparky-code,2022-06-23T20:18:00Z,- Sparky-code commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1164828435) at 2022-06-23 01:18 PM PDT -Sparky-code,2022-06-23T20:27:09Z,- Sparky-code commented on issue: [3188](https://github.com/hackforla/website/issues/3188#issuecomment-1164842732) at 2022-06-23 01:27 PM PDT -Sparky-code,2022-06-23T20:29:04Z,- Sparky-code closed issue as completed: [3150](https://github.com/hackforla/website/issues/3150#event-6869399428) at 2022-06-23 01:29 PM PDT -Sparky-code,2022-06-23T20:30:32Z,- Sparky-code commented on issue: [3149](https://github.com/hackforla/website/issues/3149#issuecomment-1164845420) at 2022-06-23 01:30 PM PDT -Sparky-code,2022-06-23T20:33:01Z,- Sparky-code commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1164847538) at 2022-06-23 01:33 PM PDT -Sparky-code,2022-06-23T20:42:10Z,- Sparky-code commented on issue: [3074](https://github.com/hackforla/website/issues/3074#issuecomment-1164854453) at 2022-06-23 01:42 PM PDT -Sparky-code,2022-06-23T20:44:25Z,- Sparky-code commented on issue: [3070](https://github.com/hackforla/website/issues/3070#issuecomment-1164856335) at 2022-06-23 01:44 PM PDT -Sparky-code,2022-06-23T20:49:57Z,- Sparky-code commented on issue: [3065](https://github.com/hackforla/website/issues/3065#issuecomment-1164860519) at 2022-06-23 01:49 PM PDT -Sparky-code,2022-06-23T20:49:57Z,- Sparky-code closed issue as completed: [3065](https://github.com/hackforla/website/issues/3065#event-6869513457) at 2022-06-23 01:49 PM PDT -Sparky-code,2022-06-23T20:56:36Z,- Sparky-code commented on issue: [3050](https://github.com/hackforla/website/issues/3050#issuecomment-1164865419) at 2022-06-23 01:56 PM PDT -Sparky-code,2022-06-23T20:56:36Z,- Sparky-code closed issue as completed: [3050](https://github.com/hackforla/website/issues/3050#event-6869548209) at 2022-06-23 01:56 PM PDT -Sparky-code,2022-06-23T21:01:20Z,- Sparky-code commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1164869014) at 2022-06-23 02:01 PM PDT -Sparky-code,2022-06-23T21:03:01Z,- Sparky-code commented on issue: [2172](https://github.com/hackforla/website/issues/2172#issuecomment-1164870463) at 2022-06-23 02:03 PM PDT -Sparky-code,2022-06-23T21:04:22Z,- Sparky-code commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1164871504) at 2022-06-23 02:04 PM PDT -Sparky-code,2022-06-24T19:02:03Z,- Sparky-code commented on pull request: [3297](https://github.com/hackforla/website/pull/3297#issuecomment-1165851862) at 2022-06-24 12:02 PM PDT -Sparky-code,2022-06-24T19:02:30Z,- Sparky-code commented on pull request: [3298](https://github.com/hackforla/website/pull/3298#issuecomment-1165852127) at 2022-06-24 12:02 PM PDT -Sparky-code,2022-06-25T14:48:01Z,- Sparky-code submitted pull request review: [3297](https://github.com/hackforla/website/pull/3297#pullrequestreview-1019323808) at 2022-06-25 07:48 AM PDT -Sparky-code,2022-06-25T14:50:51Z,- Sparky-code submitted pull request review: [3298](https://github.com/hackforla/website/pull/3298#pullrequestreview-1019324031) at 2022-06-25 07:50 AM PDT -Sparky-code,2022-06-25T14:50:57Z,- Sparky-code closed issue by PR 3298: [3177](https://github.com/hackforla/website/issues/3177#event-6879104849) at 2022-06-25 07:50 AM PDT -Sparky-code,2022-06-26T16:32:35Z,- Sparky-code commented on issue: [3190](https://github.com/hackforla/website/issues/3190#issuecomment-1166581171) at 2022-06-26 09:32 AM PDT -Sparky-code,2022-06-26T16:37:14Z,- Sparky-code commented on issue: [3189](https://github.com/hackforla/website/issues/3189#issuecomment-1166582330) at 2022-06-26 09:37 AM PDT -Sparky-code,2022-06-26T16:43:57Z,- Sparky-code commented on issue: [3026](https://github.com/hackforla/website/issues/3026#issuecomment-1166584104) at 2022-06-26 09:43 AM PDT -Sparky-code,2022-06-26T18:29:35Z,- Sparky-code opened issue: [3306](https://github.com/hackforla/website/issues/3306) at 2022-06-26 11:29 AM PDT -Sparky-code,2022-06-26T19:09:54Z,- Sparky-code submitted pull request review: [3263](https://github.com/hackforla/website/pull/3263#pullrequestreview-1019468880) at 2022-06-26 12:09 PM PDT -Sparky-code,2022-06-27T23:01:58Z,- Sparky-code commented on issue: [3273](https://github.com/hackforla/website/issues/3273#issuecomment-1168014957) at 2022-06-27 04:01 PM PDT -Sparky-code,2022-06-27T23:04:08Z,- Sparky-code commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1168016544) at 2022-06-27 04:04 PM PDT -Sparky-code,2022-06-28T20:43:28Z,- Sparky-code commented on pull request: [3318](https://github.com/hackforla/website/pull/3318#issuecomment-1169216260) at 2022-06-28 01:43 PM PDT -Sparky-code,2022-06-28T20:44:11Z,- Sparky-code submitted pull request review: [3318](https://github.com/hackforla/website/pull/3318#pullrequestreview-1022380917) at 2022-06-28 01:44 PM PDT -Sparky-code,2022-06-28T21:59:01Z,- Sparky-code commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1169323090) at 2022-06-28 02:59 PM PDT -Sparky-code,2022-06-29T00:25:38Z,- Sparky-code commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1169410372) at 2022-06-28 05:25 PM PDT -srandolph2,3971,SKILLS ISSUE -srandolph2,2023-02-14T04:12:52Z,- srandolph2 opened issue: [3971](https://github.com/hackforla/website/issues/3971) at 2023-02-13 08:12 PM PST -srandolph2,2023-02-14T04:13:17Z,- srandolph2 assigned to issue: [3971](https://github.com/hackforla/website/issues/3971) at 2023-02-13 08:13 PM PST -srandolph2,2023-02-20T02:44:54Z,- srandolph2 assigned to issue: [4008](https://github.com/hackforla/website/issues/4008) at 2023-02-19 06:44 PM PST -srandolph2,2023-02-20T03:07:24Z,- srandolph2 opened pull request: [4011](https://github.com/hackforla/website/pull/4011) at 2023-02-19 07:07 PM PST -srandolph2,2023-02-23T00:28:16Z,- srandolph2 commented on pull request: [4011](https://github.com/hackforla/website/pull/4011#issuecomment-1441055645) at 2023-02-22 04:28 PM PST -srandolph2,2023-02-23T07:08:40Z,- srandolph2 pull request merged: [4011](https://github.com/hackforla/website/pull/4011#event-8588424043) at 2023-02-22 11:08 PM PST -srinipandiyan,7572,SKILLS ISSUE -srinipandiyan,2024-10-08T03:00:05Z,- srinipandiyan opened issue: [7572](https://github.com/hackforla/website/issues/7572) at 2024-10-07 08:00 PM PDT -srinipandiyan,2024-10-08T03:00:55Z,- srinipandiyan assigned to issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2398639034) at 2024-10-07 08:00 PM PDT -srinipandiyan,2024-10-13T17:03:02Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409051831) at 2024-10-13 10:03 AM PDT -srinipandiyan,2024-10-13T17:08:15Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409053638) at 2024-10-13 10:08 AM PDT -srinipandiyan,2024-10-13T18:18:33Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409074885) at 2024-10-13 11:18 AM PDT -srinipandiyan,2024-10-13T18:24:53Z,- srinipandiyan assigned to issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2389968138) at 2024-10-13 11:24 AM PDT -srinipandiyan,2024-10-13T18:29:08Z,- srinipandiyan commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2409078196) at 2024-10-13 11:29 AM PDT -srinipandiyan,2024-10-14T02:59:25Z,- srinipandiyan opened pull request: [7591](https://github.com/hackforla/website/pull/7591) at 2024-10-13 07:59 PM PDT -srinipandiyan,2024-10-14T03:02:03Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2409853931) at 2024-10-13 08:02 PM PDT -srinipandiyan,2024-10-15T04:16:59Z,- srinipandiyan commented on pull request: [7591](https://github.com/hackforla/website/pull/7591#issuecomment-2412861365) at 2024-10-14 09:16 PM PDT -srinipandiyan,2024-10-16T03:02:07Z,- srinipandiyan pull request closed w/o merging: [7591](https://github.com/hackforla/website/pull/7591#event-14667411809) at 2024-10-15 08:02 PM PDT -srinipandiyan,2024-10-16T03:02:14Z,- srinipandiyan reopened pull request: [7591](https://github.com/hackforla/website/pull/7591#event-14667411809) at 2024-10-15 08:02 PM PDT -srinipandiyan,2024-10-16T03:02:41Z,- srinipandiyan pull request closed w/o merging: [7591](https://github.com/hackforla/website/pull/7591#event-14667417884) at 2024-10-15 08:02 PM PDT -srinipandiyan,2024-10-16T03:12:04Z,- srinipandiyan opened pull request: [7598](https://github.com/hackforla/website/pull/7598) at 2024-10-15 08:12 PM PDT -srinipandiyan,2024-10-16T03:25:34Z,- srinipandiyan commented on pull request: [7591](https://github.com/hackforla/website/pull/7591#issuecomment-2415648449) at 2024-10-15 08:25 PM PDT -srinipandiyan,2024-10-17T00:02:59Z,- srinipandiyan commented on pull request: [7598](https://github.com/hackforla/website/pull/7598#issuecomment-2418185136) at 2024-10-16 05:02 PM PDT -srinipandiyan,2024-10-19T23:05:36Z,- srinipandiyan pull request merged: [7598](https://github.com/hackforla/website/pull/7598#event-14740387109) at 2024-10-19 04:05 PM PDT -srinipandiyan,2024-10-23T17:42:20Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2432981518) at 2024-10-23 10:42 AM PDT -srinipandiyan,2024-10-23T17:43:58Z,- srinipandiyan assigned to issue: [7489](https://github.com/hackforla/website/issues/7489) at 2024-10-23 10:43 AM PDT -srinipandiyan,2024-10-23T18:10:11Z,- srinipandiyan commented on issue: [7489](https://github.com/hackforla/website/issues/7489#issuecomment-2433045486) at 2024-10-23 11:10 AM PDT -srinipandiyan,2024-10-23T18:25:20Z,- srinipandiyan opened pull request: [7628](https://github.com/hackforla/website/pull/7628) at 2024-10-23 11:25 AM PDT -srinipandiyan,2024-10-24T01:35:56Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2434034487) at 2024-10-23 06:35 PM PDT -srinipandiyan,2024-10-24T05:26:42Z,- srinipandiyan pull request merged: [7628](https://github.com/hackforla/website/pull/7628#event-14841821625) at 2024-10-23 10:26 PM PDT -srinipandiyan,2024-10-24T15:41:29Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2435639328) at 2024-10-24 08:41 AM PDT -srinipandiyan,2024-10-24T15:42:23Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2435641859) at 2024-10-24 08:42 AM PDT -srinipandiyan,2024-10-24T16:51:51Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2435784313) at 2024-10-24 09:51 AM PDT -srinipandiyan,2024-10-24T16:57:13Z,- srinipandiyan assigned to issue: [7500](https://github.com/hackforla/website/issues/7500) at 2024-10-24 09:57 AM PDT -srinipandiyan,2024-10-24T16:59:19Z,- srinipandiyan commented on issue: [7500](https://github.com/hackforla/website/issues/7500#issuecomment-2435797167) at 2024-10-24 09:59 AM PDT -srinipandiyan,2024-10-25T03:48:47Z,- srinipandiyan opened pull request: [7634](https://github.com/hackforla/website/pull/7634) at 2024-10-24 08:48 PM PDT -srinipandiyan,2024-10-25T15:51:34Z,- srinipandiyan commented on pull request: [7634](https://github.com/hackforla/website/pull/7634#issuecomment-2438183360) at 2024-10-25 08:51 AM PDT -srinipandiyan,2024-10-26T18:06:51Z,- srinipandiyan pull request merged: [7634](https://github.com/hackforla/website/pull/7634#event-14909340105) at 2024-10-26 11:06 AM PDT -srinipandiyan,2024-10-27T18:01:20Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2440119195) at 2024-10-27 11:01 AM PDT -srinipandiyan,2024-10-27T18:01:51Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2440119446) at 2024-10-27 11:01 AM PDT -srinipandiyan,2025-01-03T17:33:52Z,- srinipandiyan closed issue as completed: [7572](https://github.com/hackforla/website/issues/7572#event-15809585340) at 2025-01-03 09:33 AM PST -srinipandiyan,2025-01-03T17:34:46Z,- srinipandiyan commented on issue: [7572](https://github.com/hackforla/website/issues/7572#issuecomment-2569585167) at 2025-01-03 09:34 AM PST -srivikas777,7024,SKILLS ISSUE -srivikas777,2024-06-19T02:54:21Z,- srivikas777 opened issue: [7024](https://github.com/hackforla/website/issues/7024) at 2024-06-18 07:54 PM PDT -srivikas777,2024-06-19T02:55:10Z,- srivikas777 assigned to issue: [7024](https://github.com/hackforla/website/issues/7024#issuecomment-2177448322) at 2024-06-18 07:55 PM PDT -staceyrebekahscott,2023-02-28T00:24:01Z,- staceyrebekahscott commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1447333405) at 2023-02-27 04:24 PM PST -SteeRevo,6245,SKILLS ISSUE -SteeRevo,2024-02-06T03:30:20Z,- SteeRevo opened issue: [6245](https://github.com/hackforla/website/issues/6245) at 2024-02-05 07:30 PM PST -SteeRevo,2024-02-06T03:30:26Z,- SteeRevo assigned to issue: [6245](https://github.com/hackforla/website/issues/6245) at 2024-02-05 07:30 PM PST -SteeRevo,2024-02-10T05:10:24Z,- SteeRevo assigned to issue: [5841](https://github.com/hackforla/website/issues/5841) at 2024-02-09 09:10 PM PST -SteeRevo,2024-02-10T05:11:31Z,- SteeRevo commented on issue: [5841](https://github.com/hackforla/website/issues/5841#issuecomment-1936869825) at 2024-02-09 09:11 PM PST -SteeRevo,2024-02-10T05:11:31Z,- SteeRevo closed issue by PR 6279: [5841](https://github.com/hackforla/website/issues/5841#event-11763968878) at 2024-02-09 09:11 PM PST -SteeRevo,2024-02-10T05:11:33Z,- SteeRevo reopened issue: [5841](https://github.com/hackforla/website/issues/5841#event-11763968878) at 2024-02-09 09:11 PM PST -SteeRevo,2024-02-10T05:16:19Z,- SteeRevo commented on issue: [5841](https://github.com/hackforla/website/issues/5841#issuecomment-1936871281) at 2024-02-09 09:16 PM PST -SteeRevo,2024-02-11T23:34:37Z,- SteeRevo opened pull request: [6279](https://github.com/hackforla/website/pull/6279) at 2024-02-11 03:34 PM PST -SteeRevo,2024-02-15T08:39:17Z,- SteeRevo pull request merged: [6279](https://github.com/hackforla/website/pull/6279#event-11812103291) at 2024-02-15 12:39 AM PST -SteeRevo,2024-02-18T04:49:16Z,- SteeRevo assigned to issue: [6108](https://github.com/hackforla/website/issues/6108) at 2024-02-17 08:49 PM PST -SteeRevo,2024-02-18T05:56:58Z,- SteeRevo commented on issue: [6108](https://github.com/hackforla/website/issues/6108#issuecomment-1950972062) at 2024-02-17 09:56 PM PST -SteeRevo,2024-02-18T06:49:18Z,- SteeRevo opened pull request: [6315](https://github.com/hackforla/website/pull/6315) at 2024-02-17 10:49 PM PST -SteeRevo,2024-02-19T04:56:41Z,- SteeRevo pull request merged: [6315](https://github.com/hackforla/website/pull/6315#event-11844197802) at 2024-02-18 08:56 PM PST -SteeRevo,2024-02-20T04:21:56Z,- SteeRevo assigned to issue: [6227](https://github.com/hackforla/website/issues/6227#issuecomment-1925943624) at 2024-02-19 08:21 PM PST -SteeRevo,2024-02-20T04:41:24Z,- SteeRevo commented on issue: [6227](https://github.com/hackforla/website/issues/6227#issuecomment-1953478591) at 2024-02-19 08:41 PM PST -SteeRevo,2024-02-20T06:06:25Z,- SteeRevo opened pull request: [6324](https://github.com/hackforla/website/pull/6324) at 2024-02-19 10:06 PM PST -SteeRevo,2024-02-21T03:52:46Z,- SteeRevo submitted pull request review: [6322](https://github.com/hackforla/website/pull/6322#pullrequestreview-1892034627) at 2024-02-20 07:52 PM PST -SteeRevo,2024-02-21T05:21:20Z,- SteeRevo pull request merged: [6324](https://github.com/hackforla/website/pull/6324#event-11871009639) at 2024-02-20 09:21 PM PST -SteeRevo,2024-02-27T08:20:20Z,- SteeRevo assigned to issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1933324099) at 2024-02-27 12:20 AM PST -SteeRevo,2024-02-27T08:22:41Z,- SteeRevo commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1966014270) at 2024-02-27 12:22 AM PST -SteeRevo,2024-03-01T09:28:44Z,- SteeRevo commented on issue: [6245](https://github.com/hackforla/website/issues/6245#issuecomment-1972828919) at 2024-03-01 01:28 AM PST -SteeRevo,2024-03-03T01:46:08Z,- SteeRevo commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1974974417) at 2024-03-02 05:46 PM PST -SteeRevo,2024-03-04T05:16:29Z,- SteeRevo commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1975749118) at 2024-03-03 09:16 PM PST -SteeRevo,2024-03-11T00:08:03Z,- SteeRevo opened pull request: [6447](https://github.com/hackforla/website/pull/6447) at 2024-03-10 05:08 PM PDT -SteeRevo,2024-03-11T03:39:50Z,- SteeRevo pull request closed w/o merging: [6447](https://github.com/hackforla/website/pull/6447#event-12067753962) at 2024-03-10 08:39 PM PDT -SteeRevo,2024-03-11T03:40:47Z,- SteeRevo unassigned from issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-1975749118) at 2024-03-10 08:40 PM PDT -Steph0088,2021-11-02T16:24:25Z,- Steph0088 assigned to issue: [2344](https://github.com/hackforla/website/issues/2344#issuecomment-938218432) at 2021-11-02 09:24 AM PDT -Steph0088,2021-11-02T20:36:53Z,- Steph0088 opened pull request: [2432](https://github.com/hackforla/website/pull/2432) at 2021-11-02 01:36 PM PDT -Steph0088,2021-11-04T16:23:21Z,- Steph0088 pull request merged: [2432](https://github.com/hackforla/website/pull/2432#event-5569466729) at 2021-11-04 09:23 AM PDT -Stephen-Parent,2531,SKILLS ISSUE -Stephen-Parent,2021-12-01T23:12:07Z,- Stephen-Parent opened issue: [2531](https://github.com/hackforla/website/issues/2531) at 2021-12-01 03:12 PM PST -Stephen-Parent,2021-12-01T23:31:07Z,- Stephen-Parent assigned to issue: [2511](https://github.com/hackforla/website/issues/2511#issuecomment-975817799) at 2021-12-01 03:31 PM PST -Stephen-Parent,2021-12-04T23:41:50Z,- Stephen-Parent commented on issue: [2511](https://github.com/hackforla/website/issues/2511#issuecomment-986136304) at 2021-12-04 03:41 PM PST -Stephen-Parent,2021-12-06T17:07:40Z,- Stephen-Parent closed issue as completed: [2531](https://github.com/hackforla/website/issues/2531#event-5722042734) at 2021-12-06 09:07 AM PST -Stephen-Parent,2021-12-07T15:33:58Z,- Stephen-Parent assigned to issue: [2531](https://github.com/hackforla/website/issues/2531#event-5722042734) at 2021-12-07 07:33 AM PST -Stephen-Parent,2021-12-08T23:43:17Z,- Stephen-Parent assigned to issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-939510317) at 2021-12-08 03:43 PM PST -Stephen-Parent,2021-12-09T00:01:26Z,- Stephen-Parent commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-989325156) at 2021-12-08 04:01 PM PST -Stephen-Parent,2021-12-17T01:22:42Z,- Stephen-Parent commented on issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-996346074) at 2021-12-16 05:22 PM PST -Stephen-Parent,2022-01-05T18:48:59Z,- Stephen-Parent unassigned from issue: [2361](https://github.com/hackforla/website/issues/2361#issuecomment-1002763549) at 2022-01-05 10:48 AM PST -Stephen-Parent,2022-01-30T19:53:48Z,- Stephen-Parent assigned to issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1014847765) at 2022-01-30 11:53 AM PST -Stephen-Parent,2022-01-30T19:57:24Z,- Stephen-Parent commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1025218581) at 2022-01-30 11:57 AM PST -Stephen-Parent,2022-02-11T02:40:24Z,- Stephen-Parent commented on issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1035811451) at 2022-02-10 06:40 PM PST -Stephen-Parent,2022-04-14T19:38:24Z,- Stephen-Parent unassigned from issue: [2694](https://github.com/hackforla/website/issues/2694#issuecomment-1092221869) at 2022-04-14 12:38 PM PDT -StephenTheDev1001,4328,SKILLS ISSUE -StephenTheDev1001,2023-03-29T03:53:53Z,- StephenTheDev1001 opened issue: [4328](https://github.com/hackforla/website/issues/4328) at 2023-03-28 08:53 PM PDT -StephenTheDev1001,2023-03-29T04:26:34Z,- StephenTheDev1001 assigned to issue: [4328](https://github.com/hackforla/website/issues/4328) at 2023-03-28 09:26 PM PDT -StephenTheDev1001,2023-03-30T07:27:22Z,- StephenTheDev1001 assigned to issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1488143343) at 2023-03-30 12:27 AM PDT -StephenTheDev1001,2023-03-30T07:40:06Z,- StephenTheDev1001 commented on issue: [2830](https://github.com/hackforla/website/issues/2830#issuecomment-1489839502) at 2023-03-30 12:40 AM PDT -StephenTheDev1001,2023-03-30T09:31:11Z,- StephenTheDev1001 opened pull request: [4346](https://github.com/hackforla/website/pull/4346) at 2023-03-30 02:31 AM PDT -StephenTheDev1001,2023-03-30T09:38:32Z,- StephenTheDev1001 commented on issue: [4328](https://github.com/hackforla/website/issues/4328#issuecomment-1489999864) at 2023-03-30 02:38 AM PDT -StephenTheDev1001,2023-04-03T02:10:26Z,- StephenTheDev1001 pull request merged: [4346](https://github.com/hackforla/website/pull/4346#event-8907762974) at 2023-04-02 07:10 PM PDT -StephenTheDev1001,2023-04-03T03:18:58Z,- StephenTheDev1001 assigned to issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1492584247) at 2023-04-02 08:18 PM PDT -StephenTheDev1001,2023-04-03T03:21:58Z,- StephenTheDev1001 commented on issue: [4303](https://github.com/hackforla/website/issues/4303#issuecomment-1493589558) at 2023-04-02 08:21 PM PDT -StephenTheDev1001,2023-04-03T04:12:44Z,- StephenTheDev1001 opened pull request: [4384](https://github.com/hackforla/website/pull/4384) at 2023-04-02 09:12 PM PDT -StephenTheDev1001,2023-04-04T03:19:12Z,- StephenTheDev1001 assigned to issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1486072130) at 2023-04-03 08:19 PM PDT -StephenTheDev1001,2023-04-04T03:21:59Z,- StephenTheDev1001 commented on issue: [4233](https://github.com/hackforla/website/issues/4233#issuecomment-1495290708) at 2023-04-03 08:21 PM PDT -StephenTheDev1001,2023-04-04T04:01:59Z,- StephenTheDev1001 opened pull request: [4403](https://github.com/hackforla/website/pull/4403) at 2023-04-03 09:01 PM PDT -StephenTheDev1001,2023-04-04T04:05:10Z,- StephenTheDev1001 pull request closed w/o merging: [4403](https://github.com/hackforla/website/pull/4403#event-8919755128) at 2023-04-03 09:05 PM PDT -StephenTheDev1001,2023-04-04T05:28:31Z,- StephenTheDev1001 opened pull request: [4404](https://github.com/hackforla/website/pull/4404) at 2023-04-03 10:28 PM PDT -StephenTheDev1001,2023-04-04T23:02:07Z,- StephenTheDev1001 pull request merged: [4384](https://github.com/hackforla/website/pull/4384#event-8929493597) at 2023-04-04 04:02 PM PDT -StephenTheDev1001,2023-04-04T23:04:27Z,- StephenTheDev1001 pull request merged: [4404](https://github.com/hackforla/website/pull/4404#event-8929503144) at 2023-04-04 04:04 PM PDT -StephenTheDev1001,2023-04-05T04:15:37Z,- StephenTheDev1001 assigned to issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1495052986) at 2023-04-04 09:15 PM PDT -StephenTheDev1001,2023-04-05T04:18:48Z,- StephenTheDev1001 commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1496896565) at 2023-04-04 09:18 PM PDT -StephenTheDev1001,2023-04-07T04:25:26Z,- StephenTheDev1001 unassigned from issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1498220397) at 2023-04-06 09:25 PM PDT -StephenTheDev1001,2023-04-07T04:28:42Z,- StephenTheDev1001 assigned to issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1480427430) at 2023-04-06 09:28 PM PDT -StephenTheDev1001,2023-04-07T04:31:01Z,- StephenTheDev1001 commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1499923079) at 2023-04-06 09:31 PM PDT -StephenTheDev1001,2023-04-07T05:46:23Z,- StephenTheDev1001 opened pull request: [4437](https://github.com/hackforla/website/pull/4437) at 2023-04-06 10:46 PM PDT -StephenTheDev1001,2023-04-07T07:48:45Z,- StephenTheDev1001 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1500037063) at 2023-04-07 12:48 AM PDT -StephenTheDev1001,2023-04-07T21:36:16Z,- StephenTheDev1001 commented on issue: [4226](https://github.com/hackforla/website/issues/4226#issuecomment-1500665694) at 2023-04-07 02:36 PM PDT -StephenTheDev1001,2023-04-11T03:46:41Z,- StephenTheDev1001 commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1502646765) at 2023-04-10 08:46 PM PDT -StephenTheDev1001,2023-04-12T02:41:12Z,- StephenTheDev1001 assigned to issue: [4473](https://github.com/hackforla/website/issues/4473) at 2023-04-11 07:41 PM PDT -StephenTheDev1001,2023-04-12T02:41:19Z,- StephenTheDev1001 unassigned from issue: [4473](https://github.com/hackforla/website/issues/4473) at 2023-04-11 07:41 PM PDT -StephenTheDev1001,2023-04-12T02:44:08Z,- StephenTheDev1001 commented on issue: [4225](https://github.com/hackforla/website/issues/4225#issuecomment-1504474908) at 2023-04-11 07:44 PM PDT -StephenTheDev1001,2023-04-12T03:11:14Z,- StephenTheDev1001 opened issue: [4487](https://github.com/hackforla/website/issues/4487) at 2023-04-11 08:11 PM PDT -StephenTheDev1001,2023-04-12T05:35:47Z,- StephenTheDev1001 commented on pull request: [4437](https://github.com/hackforla/website/pull/4437#issuecomment-1504675530) at 2023-04-11 10:35 PM PDT -StephenTheDev1001,2023-04-13T03:14:49Z,- StephenTheDev1001 pull request merged: [4437](https://github.com/hackforla/website/pull/4437#event-8992063193) at 2023-04-12 08:14 PM PDT -StephenTheDev1001,2023-04-14T06:20:10Z,- StephenTheDev1001 closed issue as completed: [4328](https://github.com/hackforla/website/issues/4328#event-9003893647) at 2023-04-13 11:20 PM PDT -StephenTheDev1001,2023-04-19T04:13:09Z,- StephenTheDev1001 commented on pull request: [4546](https://github.com/hackforla/website/pull/4546#issuecomment-1514106677) at 2023-04-18 09:13 PM PDT -StephenTheDev1001,2023-04-19T04:18:05Z,- StephenTheDev1001 submitted pull request review: [4546](https://github.com/hackforla/website/pull/4546#pullrequestreview-1391236614) at 2023-04-18 09:18 PM PDT -StephenTheDev1001,2023-04-20T00:22:11Z,- StephenTheDev1001 commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515543666) at 2023-04-19 05:22 PM PDT -StephenTheDev1001,2023-04-20T00:29:44Z,- StephenTheDev1001 submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1393046281) at 2023-04-19 05:29 PM PDT -StephenTheDev1001,2023-04-20T03:09:51Z,- StephenTheDev1001 commented on pull request: [4549](https://github.com/hackforla/website/pull/4549#issuecomment-1515649627) at 2023-04-19 08:09 PM PDT -StephenTheDev1001,2023-04-20T03:14:39Z,- StephenTheDev1001 submitted pull request review: [4549](https://github.com/hackforla/website/pull/4549#pullrequestreview-1393147298) at 2023-04-19 08:14 PM PDT -StephenTheDev1001,2023-04-26T01:14:20Z,- StephenTheDev1001 assigned to issue: [4563](https://github.com/hackforla/website/issues/4563) at 2023-04-25 06:14 PM PDT -StephenTheDev1001,2023-04-26T01:19:54Z,- StephenTheDev1001 unassigned from issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522624435) at 2023-04-25 06:19 PM PDT -StephenTheDev1001,2023-04-26T07:30:40Z,- StephenTheDev1001 assigned to issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522624435) at 2023-04-26 12:30 AM PDT -StephenTheDev1001,2023-04-26T07:34:45Z,- StephenTheDev1001 unassigned from issue: [4563](https://github.com/hackforla/website/issues/4563#issuecomment-1522922459) at 2023-04-26 12:34 AM PDT -StephenTheDev1001,2023-04-29T03:49:06Z,- StephenTheDev1001 commented on pull request: [4584](https://github.com/hackforla/website/pull/4584#issuecomment-1528627523) at 2023-04-28 08:49 PM PDT -StephenTheDev1001,2023-04-29T04:03:07Z,- StephenTheDev1001 submitted pull request review: [4584](https://github.com/hackforla/website/pull/4584#pullrequestreview-1406805830) at 2023-04-28 09:03 PM PDT -StephenTheDev1001,2023-04-29T04:05:25Z,- StephenTheDev1001 commented on pull request: [4576](https://github.com/hackforla/website/pull/4576#issuecomment-1528643358) at 2023-04-28 09:05 PM PDT -StephenTheDev1001,2023-04-29T04:08:52Z,- StephenTheDev1001 submitted pull request review: [4584](https://github.com/hackforla/website/pull/4584#pullrequestreview-1406806340) at 2023-04-28 09:08 PM PDT -StephenTheDev1001,2023-04-29T04:30:30Z,- StephenTheDev1001 commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1528648124) at 2023-04-28 09:30 PM PDT -StephenTheDev1001,2023-04-29T04:38:23Z,- StephenTheDev1001 submitted pull request review: [4576](https://github.com/hackforla/website/pull/4576#pullrequestreview-1406811324) at 2023-04-28 09:38 PM PDT -StephenTheDev1001,2023-04-29T04:47:08Z,- StephenTheDev1001 submitted pull request review: [4575](https://github.com/hackforla/website/pull/4575#pullrequestreview-1406823054) at 2023-04-28 09:47 PM PDT -StephenTheDev1001,2023-05-07T06:40:21Z,- StephenTheDev1001 submitted pull request review: [4575](https://github.com/hackforla/website/pull/4575#pullrequestreview-1415852719) at 2023-05-06 11:40 PM PDT -StephenTheDev1001,2023-05-15T08:51:30Z,- StephenTheDev1001 commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1547447065) at 2023-05-15 01:51 AM PDT -StephenTheDev1001,2023-05-19T05:18:54Z,- StephenTheDev1001 assigned to issue: [3805](https://github.com/hackforla/website/issues/3805#issuecomment-1545289300) at 2023-05-18 10:18 PM PDT -StephenTheDev1001,2023-07-20T04:35:09Z,- StephenTheDev1001 opened pull request: [5037](https://github.com/hackforla/website/pull/5037) at 2023-07-19 09:35 PM PDT -StephenTheDev1001,2023-07-20T04:51:15Z,- StephenTheDev1001 commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1643174749) at 2023-07-19 09:51 PM PDT -StephenTheDev1001,2023-07-25T11:08:53Z,- StephenTheDev1001 commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1649626546) at 2023-07-25 04:08 AM PDT -StephenTheDev1001,2023-07-27T01:55:13Z,- StephenTheDev1001 reopened pull request: [5097](https://github.com/hackforla/website/pull/5097#event-9930433136) at 2023-07-26 06:55 PM PDT -StephenTheDev1001,2023-07-27T02:01:54Z,- StephenTheDev1001 submitted pull request review: [5097](https://github.com/hackforla/website/pull/5097#pullrequestreview-1548874440) at 2023-07-26 07:01 PM PDT -StephenTheDev1001,2023-07-28T02:13:19Z,- StephenTheDev1001 submitted pull request review: [5105](https://github.com/hackforla/website/pull/5105#pullrequestreview-1551193062) at 2023-07-27 07:13 PM PDT -StephenTheDev1001,2023-07-31T02:49:37Z,- StephenTheDev1001 pull request merged: [5037](https://github.com/hackforla/website/pull/5037#event-9958515313) at 2023-07-30 07:49 PM PDT -StephenTheDev1001,2023-08-11T18:55:03Z,- StephenTheDev1001 submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1574228469) at 2023-08-11 11:55 AM PDT -StephenTheDev1001,2023-08-20T03:45:46Z,- StephenTheDev1001 commented on issue: [5160](https://github.com/hackforla/website/issues/5160#issuecomment-1685167705) at 2023-08-19 08:45 PM PDT -StephenTheDev1001,2023-08-20T06:59:37Z,- StephenTheDev1001 opened issue: [5264](https://github.com/hackforla/website/issues/5264) at 2023-08-19 11:59 PM PDT -StephenTheDev1001,2023-08-20T07:05:32Z,- StephenTheDev1001 commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1685205907) at 2023-08-20 12:05 AM PDT -StephenTheDev1001,2023-08-20T19:08:23Z,- StephenTheDev1001 submitted pull request review: [4942](https://github.com/hackforla/website/pull/4942#pullrequestreview-1585951204) at 2023-08-20 12:08 PM PDT -StephenTheDev1001,2023-08-21T23:13:00Z,- StephenTheDev1001 submitted pull request review: [5259](https://github.com/hackforla/website/pull/5259#pullrequestreview-1588037277) at 2023-08-21 04:13 PM PDT -StephenTheDev1001,2023-08-21T23:59:45Z,- StephenTheDev1001 submitted pull request review: [5280](https://github.com/hackforla/website/pull/5280#pullrequestreview-1588077565) at 2023-08-21 04:59 PM PDT -StephenTheDev1001,2023-08-22T00:04:57Z,- StephenTheDev1001 submitted pull request review: [5275](https://github.com/hackforla/website/pull/5275#pullrequestreview-1588081435) at 2023-08-21 05:04 PM PDT -StephenTheDev1001,2023-08-22T03:52:52Z,- StephenTheDev1001 submitted pull request review: [5275](https://github.com/hackforla/website/pull/5275#pullrequestreview-1588229348) at 2023-08-21 08:52 PM PDT -StephenTheDev1001,2023-08-22T06:10:16Z,- StephenTheDev1001 submitted pull request review: [5275](https://github.com/hackforla/website/pull/5275#pullrequestreview-1588433107) at 2023-08-21 11:10 PM PDT -StephenTheDev1001,2023-08-22T19:40:35Z,- StephenTheDev1001 assigned to issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1685205907) at 2023-08-22 12:40 PM PDT -StephenTheDev1001,2023-08-23T04:27:20Z,- StephenTheDev1001 opened issue: [5289](https://github.com/hackforla/website/issues/5289) at 2023-08-22 09:27 PM PDT -StephenTheDev1001,2023-08-23T04:27:21Z,- StephenTheDev1001 assigned to issue: [5289](https://github.com/hackforla/website/issues/5289) at 2023-08-22 09:27 PM PDT -StephenTheDev1001,2023-08-23T04:30:29Z,- StephenTheDev1001 commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1689264226) at 2023-08-22 09:30 PM PDT -StephenTheDev1001,2023-08-23T04:59:31Z,- StephenTheDev1001 unassigned from issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1689264226) at 2023-08-22 09:59 PM PDT -StephenTheDev1001,2023-08-23T05:58:28Z,- StephenTheDev1001 commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1689326429) at 2023-08-22 10:58 PM PDT -StephenTheDev1001,2023-08-23T05:58:28Z,- StephenTheDev1001 closed issue as completed: [5264](https://github.com/hackforla/website/issues/5264#event-10165801553) at 2023-08-22 10:58 PM PDT -StephenTheDev1001,2023-08-23T06:32:06Z,- StephenTheDev1001 opened issue: [5290](https://github.com/hackforla/website/issues/5290) at 2023-08-22 11:32 PM PDT -StephenTheDev1001,2023-08-23T06:46:01Z,- StephenTheDev1001 opened issue: [5291](https://github.com/hackforla/website/issues/5291) at 2023-08-22 11:46 PM PDT -StephenTheDev1001,2023-08-23T06:48:11Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689376773) at 2023-08-22 11:48 PM PDT -StephenTheDev1001,2023-08-23T06:48:15Z,- StephenTheDev1001 assigned to issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689376773) at 2023-08-22 11:48 PM PDT -StephenTheDev1001,2023-08-23T07:08:06Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689400374) at 2023-08-23 12:08 AM PDT -StephenTheDev1001,2023-08-23T07:18:29Z,- StephenTheDev1001 opened issue: [5292](https://github.com/hackforla/website/issues/5292) at 2023-08-23 12:18 AM PDT -StephenTheDev1001,2023-08-23T07:21:43Z,- StephenTheDev1001 opened issue: [5293](https://github.com/hackforla/website/issues/5293) at 2023-08-23 12:21 AM PDT -StephenTheDev1001,2023-08-23T07:34:27Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1689439613) at 2023-08-23 12:34 AM PDT -StephenTheDev1001,2023-08-24T01:49:55Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1690868265) at 2023-08-23 06:49 PM PDT -StephenTheDev1001,2023-08-24T01:54:36Z,- StephenTheDev1001 commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1690871592) at 2023-08-23 06:54 PM PDT -StephenTheDev1001,2023-08-24T22:06:29Z,- StephenTheDev1001 commented on issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1692476876) at 2023-08-24 03:06 PM PDT -StephenTheDev1001,2023-08-25T02:21:46Z,- StephenTheDev1001 submitted pull request review: [5251](https://github.com/hackforla/website/pull/5251#pullrequestreview-1594722489) at 2023-08-24 07:21 PM PDT -StephenTheDev1001,2023-08-25T04:52:45Z,- StephenTheDev1001 opened issue: [5300](https://github.com/hackforla/website/issues/5300) at 2023-08-24 09:52 PM PDT -StephenTheDev1001,2023-08-25T04:59:28Z,- StephenTheDev1001 opened issue: [5301](https://github.com/hackforla/website/issues/5301) at 2023-08-24 09:59 PM PDT -StephenTheDev1001,2023-08-25T05:03:23Z,- StephenTheDev1001 opened issue: [5302](https://github.com/hackforla/website/issues/5302) at 2023-08-24 10:03 PM PDT -StephenTheDev1001,2023-08-25T05:06:02Z,- StephenTheDev1001 opened issue: [5303](https://github.com/hackforla/website/issues/5303) at 2023-08-24 10:06 PM PDT -StephenTheDev1001,2023-08-25T05:09:00Z,- StephenTheDev1001 opened issue: [5304](https://github.com/hackforla/website/issues/5304) at 2023-08-24 10:09 PM PDT -StephenTheDev1001,2023-08-25T05:11:37Z,- StephenTheDev1001 opened issue: [5305](https://github.com/hackforla/website/issues/5305) at 2023-08-24 10:11 PM PDT -StephenTheDev1001,2023-08-25T05:13:19Z,- StephenTheDev1001 opened issue: [5306](https://github.com/hackforla/website/issues/5306) at 2023-08-24 10:13 PM PDT -StephenTheDev1001,2023-08-25T05:24:07Z,- StephenTheDev1001 opened issue: [5307](https://github.com/hackforla/website/issues/5307) at 2023-08-24 10:24 PM PDT -StephenTheDev1001,2023-08-27T00:13:28Z,- StephenTheDev1001 commented on pull request: [5251](https://github.com/hackforla/website/pull/5251#issuecomment-1694528818) at 2023-08-26 05:13 PM PDT -StephenTheDev1001,2023-08-28T00:32:33Z,- StephenTheDev1001 commented on issue: [5264](https://github.com/hackforla/website/issues/5264#issuecomment-1694817723) at 2023-08-27 05:32 PM PDT -StephenTheDev1001,2023-08-28T00:41:59Z,- StephenTheDev1001 opened issue: [5326](https://github.com/hackforla/website/issues/5326) at 2023-08-27 05:41 PM PDT -StephenTheDev1001,2023-08-29T00:01:23Z,- StephenTheDev1001 commented on issue: [5290](https://github.com/hackforla/website/issues/5290#issuecomment-1696581188) at 2023-08-28 05:01 PM PDT -StephenTheDev1001,2023-08-29T00:18:05Z,- StephenTheDev1001 commented on issue: [5289](https://github.com/hackforla/website/issues/5289#issuecomment-1696593903) at 2023-08-28 05:18 PM PDT -StephenTheDev1001,2023-08-30T00:28:04Z,- StephenTheDev1001 closed issue as completed: [5306](https://github.com/hackforla/website/issues/5306#event-10227070586) at 2023-08-29 05:28 PM PDT -StephenTheDev1001,2023-08-30T00:29:01Z,- StephenTheDev1001 closed issue as not planned: [5304](https://github.com/hackforla/website/issues/5304#event-10227075576) at 2023-08-29 05:29 PM PDT -StephenTheDev1001,2023-08-30T06:37:22Z,- StephenTheDev1001 reopened issue: [5306](https://github.com/hackforla/website/issues/5306#event-10227070586) at 2023-08-29 11:37 PM PDT -StephenTheDev1001,2023-08-30T06:37:39Z,- StephenTheDev1001 closed issue as not planned: [5306](https://github.com/hackforla/website/issues/5306#event-10228993302) at 2023-08-29 11:37 PM PDT -StephenTheDev1001,2023-08-30T06:39:40Z,- StephenTheDev1001 commented on issue: [5307](https://github.com/hackforla/website/issues/5307#issuecomment-1698583432) at 2023-08-29 11:39 PM PDT -StephenTheDev1001,2023-08-30T06:39:40Z,- StephenTheDev1001 closed issue as not planned: [5307](https://github.com/hackforla/website/issues/5307#event-10229013502) at 2023-08-29 11:39 PM PDT -StephenTheDev1001,2023-08-30T06:40:08Z,- StephenTheDev1001 commented on issue: [5305](https://github.com/hackforla/website/issues/5305#issuecomment-1698583929) at 2023-08-29 11:40 PM PDT -StephenTheDev1001,2023-08-30T06:40:08Z,- StephenTheDev1001 closed issue as not planned: [5305](https://github.com/hackforla/website/issues/5305#event-10229018149) at 2023-08-29 11:40 PM PDT -StephenTheDev1001,2023-08-30T06:40:47Z,- StephenTheDev1001 closed issue as not planned: [5303](https://github.com/hackforla/website/issues/5303#event-10229024423) at 2023-08-29 11:40 PM PDT -StephenTheDev1001,2023-08-30T06:41:09Z,- StephenTheDev1001 closed issue as not planned: [5302](https://github.com/hackforla/website/issues/5302#event-10229028134) at 2023-08-29 11:41 PM PDT -StephenTheDev1001,2023-08-30T06:41:26Z,- StephenTheDev1001 closed issue as not planned: [5301](https://github.com/hackforla/website/issues/5301#event-10229030248) at 2023-08-29 11:41 PM PDT -StephenTheDev1001,2023-08-30T06:42:40Z,- StephenTheDev1001 closed issue as not planned: [5300](https://github.com/hackforla/website/issues/5300#event-10229039778) at 2023-08-29 11:42 PM PDT -StephenTheDev1001,2023-08-30T06:43:02Z,- StephenTheDev1001 closed issue as not planned: [5293](https://github.com/hackforla/website/issues/5293#event-10229042629) at 2023-08-29 11:43 PM PDT -StephenTheDev1001,2023-08-30T06:43:29Z,- StephenTheDev1001 closed issue as not planned: [5292](https://github.com/hackforla/website/issues/5292#event-10229046591) at 2023-08-29 11:43 PM PDT -StephenTheDev1001,2023-08-30T06:43:54Z,- StephenTheDev1001 closed issue as not planned: [5291](https://github.com/hackforla/website/issues/5291#event-10229050412) at 2023-08-29 11:43 PM PDT -StephenTheDev1001,2023-09-01T01:03:17Z,- StephenTheDev1001 submitted pull request review: [5401](https://github.com/hackforla/website/pull/5401#pullrequestreview-1605954973) at 2023-08-31 06:03 PM PDT -StephenTheDev1001,2023-09-01T02:28:04Z,- StephenTheDev1001 commented on pull request: [5346](https://github.com/hackforla/website/pull/5346#issuecomment-1702025871) at 2023-08-31 07:28 PM PDT -StephenTheDev1001,2023-09-01T02:59:17Z,- StephenTheDev1001 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1606126103) at 2023-08-31 07:59 PM PDT -StephenTheDev1001,2023-09-01T18:40:57Z,- StephenTheDev1001 submitted pull request review: [5346](https://github.com/hackforla/website/pull/5346#pullrequestreview-1607479858) at 2023-09-01 11:40 AM PDT -StephenVNelson,2019-11-05T03:14:54Z,- StephenVNelson assigned to issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549174727) at 2019-11-04 07:14 PM PST -StephenVNelson,2019-11-05T04:17:00Z,- StephenVNelson commented on issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549656130) at 2019-11-04 08:17 PM PST -StephenVNelson,2019-11-12T02:57:48Z,- StephenVNelson unassigned from issue: [167](https://github.com/hackforla/website/issues/167#issuecomment-549656130) at 2019-11-11 06:57 PM PST -StephenVNelson,2019-11-19T03:15:59Z,- StephenVNelson assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-545346609) at 2019-11-18 07:15 PM PST -StephenVNelson,2019-11-25T07:25:01Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-558026053) at 2019-11-24 11:25 PM PST -StephenVNelson,2019-11-26T03:19:10Z,- StephenVNelson assigned to issue: [193](https://github.com/hackforla/website/issues/193) at 2019-11-25 07:19 PM PST -StephenVNelson,2019-11-26T03:24:12Z,- StephenVNelson assigned to issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:24 PM PST -StephenVNelson,2019-11-26T04:22:16Z,- StephenVNelson unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 08:22 PM PST -StephenVNelson,2019-12-03T00:18:38Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-560940316) at 2019-12-02 04:18 PM PST -StephenVNelson,2019-12-03T18:37:25Z,- StephenVNelson assigned to issue: [202](https://github.com/hackforla/website/issues/202) at 2019-12-03 10:37 AM PST -StephenVNelson,2019-12-05T02:40:17Z,- StephenVNelson commented on issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-561940785) at 2019-12-04 06:40 PM PST -StephenVNelson,2019-12-05T02:44:02Z,- StephenVNelson commented on issue: [150](https://github.com/hackforla/website/issues/150#issuecomment-561941631) at 2019-12-04 06:44 PM PST -StephenVNelson,2019-12-05T03:05:17Z,- StephenVNelson opened pull request: [213](https://github.com/hackforla/website/pull/213) at 2019-12-04 07:05 PM PST -StephenVNelson,2019-12-06T00:42:42Z,- StephenVNelson assigned to issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-05 04:42 PM PST -StephenVNelson,2019-12-10T23:48:26Z,- StephenVNelson unassigned from issue: [206](https://github.com/hackforla/website/issues/206#issuecomment-562381310) at 2019-12-10 03:48 PM PST -StephenVNelson,2019-12-19T22:54:29Z,- StephenVNelson opened pull request: [218](https://github.com/hackforla/website/pull/218) at 2019-12-19 02:54 PM PST -StephenVNelson,2019-12-31T02:25:12Z,- StephenVNelson pull request closed w/o merging: [218](https://github.com/hackforla/website/pull/218#event-2914991880) at 2019-12-30 06:25 PM PST -StephenVNelson,2019-12-31T02:25:31Z,- StephenVNelson pull request closed w/o merging: [213](https://github.com/hackforla/website/pull/213#event-2914992094) at 2019-12-30 06:25 PM PST -StephenVNelson,2019-12-31T03:14:52Z,- StephenVNelson assigned to issue: [236](https://github.com/hackforla/website/issues/236) at 2019-12-30 07:14 PM PST -StephenVNelson,2019-12-31T06:41:40Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-569874876) at 2019-12-30 10:41 PM PST -StephenVNelson,2019-12-31T06:46:51Z,- StephenVNelson opened pull request: [243](https://github.com/hackforla/website/pull/243) at 2019-12-30 10:46 PM PST -StephenVNelson,2019-12-31T06:47:43Z,- StephenVNelson commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-569875643) at 2019-12-30 10:47 PM PST -StephenVNelson,2019-12-31T23:03:34Z,- StephenVNelson commented on issue: [236](https://github.com/hackforla/website/issues/236#issuecomment-570003137) at 2019-12-31 03:03 PM PST -StephenVNelson,2020-01-07T03:13:51Z,- StephenVNelson pull request closed w/o merging: [243](https://github.com/hackforla/website/pull/243#event-2926275651) at 2020-01-06 07:13 PM PST -StephenVNelson,2020-01-07T04:34:24Z,- StephenVNelson assigned to issue: [254](https://github.com/hackforla/website/issues/254) at 2020-01-06 08:34 PM PST -StephenVNelson,2020-01-14T06:29:01Z,- StephenVNelson opened pull request: [261](https://github.com/hackforla/website/pull/261) at 2020-01-13 10:29 PM PST -StephenVNelson,2020-01-14T06:30:28Z,- StephenVNelson commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-574024660) at 2020-01-13 10:30 PM PST -StephenVNelson,2020-01-14T06:39:31Z,- StephenVNelson commented on issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-574027160) at 2020-01-13 10:39 PM PST -StephenVNelson,2020-02-09T13:04:37Z,- StephenVNelson submitted pull request review: [300](https://github.com/hackforla/website/pull/300#pullrequestreview-355605914) at 2020-02-09 05:04 AM PST -StephenVNelson,2020-02-09T13:07:54Z,- StephenVNelson submitted pull request review: [300](https://github.com/hackforla/website/pull/300#pullrequestreview-355606087) at 2020-02-09 05:07 AM PST -StephenVNelson,2020-02-12T02:53:31Z,- StephenVNelson commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-584994945) at 2020-02-11 06:53 PM PST -StephenVNelson,2020-02-16T18:34:29Z,- StephenVNelson unassigned from issue: [193](https://github.com/hackforla/website/issues/193#issuecomment-578530739) at 2020-02-16 10:34 AM PST -StephenVNelson,2020-05-03T19:53:31Z,- StephenVNelson unassigned from issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-605730441) at 2020-05-03 12:53 PM PDT -StephenVNelson,2020-06-01T02:54:34Z,- StephenVNelson unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-636585768) at 2020-05-31 07:54 PM PDT -StephenVNelson,2020-06-29T23:20:17Z,- StephenVNelson pull request closed w/o merging: [261](https://github.com/hackforla/website/pull/261#event-3494928360) at 2020-06-29 04:20 PM PDT -steven-positive-tran,3826,SKILLS ISSUE -steven-positive-tran,2023-01-17T03:47:21Z,- steven-positive-tran opened issue: [3826](https://github.com/hackforla/website/issues/3826) at 2023-01-16 07:47 PM PST -steven-positive-tran,2023-01-17T04:04:52Z,- steven-positive-tran assigned to issue: [3826](https://github.com/hackforla/website/issues/3826) at 2023-01-16 08:04 PM PST -steven-positive-tran,2023-01-23T07:33:30Z,- steven-positive-tran assigned to issue: [3823](https://github.com/hackforla/website/issues/3823) at 2023-01-22 11:33 PM PST -steven-positive-tran,2023-01-23T07:45:16Z,- steven-positive-tran commented on issue: [3823](https://github.com/hackforla/website/issues/3823#issuecomment-1399924466) at 2023-01-22 11:45 PM PST -steven-positive-tran,2023-01-24T04:19:58Z,- steven-positive-tran opened pull request: [3864](https://github.com/hackforla/website/pull/3864) at 2023-01-23 08:19 PM PST -steven-positive-tran,2023-01-24T04:25:32Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1401380135) at 2023-01-23 08:25 PM PST -steven-positive-tran,2023-01-24T04:25:32Z,- steven-positive-tran closed issue as completed: [3826](https://github.com/hackforla/website/issues/3826#event-8340495657) at 2023-01-23 08:25 PM PST -steven-positive-tran,2023-01-25T03:13:21Z,- steven-positive-tran commented on pull request: [3864](https://github.com/hackforla/website/pull/3864#issuecomment-1403040787) at 2023-01-24 07:13 PM PST -steven-positive-tran,2023-01-26T18:47:25Z,- steven-positive-tran pull request merged: [3864](https://github.com/hackforla/website/pull/3864#event-8366877325) at 2023-01-26 10:47 AM PST -steven-positive-tran,2023-01-28T09:21:03Z,- steven-positive-tran assigned to issue: [2148](https://github.com/hackforla/website/issues/2148) at 2023-01-28 01:21 AM PST -steven-positive-tran,2023-01-28T09:23:46Z,- steven-positive-tran commented on issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1407352242) at 2023-01-28 01:23 AM PST -steven-positive-tran,2023-01-30T05:18:27Z,- steven-positive-tran opened pull request: [3896](https://github.com/hackforla/website/pull/3896) at 2023-01-29 09:18 PM PST -steven-positive-tran,2023-02-01T02:34:31Z,- steven-positive-tran pull request closed w/o merging: [3896](https://github.com/hackforla/website/pull/3896#event-8405651053) at 2023-01-31 06:34 PM PST -steven-positive-tran,2023-02-01T02:35:11Z,- steven-positive-tran unassigned from issue: [2148](https://github.com/hackforla/website/issues/2148#issuecomment-1411369489) at 2023-01-31 06:35 PM PST -steven-positive-tran,2023-02-01T07:26:21Z,- steven-positive-tran assigned to issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1338233914) at 2023-01-31 11:26 PM PST -steven-positive-tran,2023-02-01T07:29:19Z,- steven-positive-tran commented on issue: [3731](https://github.com/hackforla/website/issues/3731#issuecomment-1411583859) at 2023-01-31 11:29 PM PST -steven-positive-tran,2023-02-07T08:36:22Z,- steven-positive-tran opened pull request: [3947](https://github.com/hackforla/website/pull/3947) at 2023-02-07 12:36 AM PST -steven-positive-tran,2023-02-09T00:10:20Z,- steven-positive-tran pull request merged: [3947](https://github.com/hackforla/website/pull/3947#event-8474176862) at 2023-02-08 04:10 PM PST -steven-positive-tran,2023-02-25T11:37:25Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1445061763) at 2023-02-25 03:37 AM PST -steven-positive-tran,2023-02-25T11:37:25Z,- steven-positive-tran closed issue as completed: [3826](https://github.com/hackforla/website/issues/3826#event-8607783050) at 2023-02-25 03:37 AM PST -steven-positive-tran,2023-02-26T11:40:04Z,- steven-positive-tran assigned to issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1301633567) at 2023-02-26 03:40 AM PST -steven-positive-tran,2023-02-26T11:40:45Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1445338918) at 2023-02-26 03:40 AM PST -steven-positive-tran,2023-02-27T06:44:25Z,- steven-positive-tran commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1445791820) at 2023-02-26 10:44 PM PST -steven-positive-tran,2023-02-27T07:15:50Z,- steven-positive-tran submitted pull request review: [4048](https://github.com/hackforla/website/pull/4048#pullrequestreview-1315009675) at 2023-02-26 11:15 PM PST -steven-positive-tran,2023-03-01T03:10:33Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1449268122) at 2023-02-28 07:10 PM PST -steven-positive-tran,2023-03-07T07:57:04Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1457713055) at 2023-03-06 11:57 PM PST -steven-positive-tran,2023-03-10T08:53:25Z,- steven-positive-tran opened issue: [4146](https://github.com/hackforla/website/issues/4146) at 2023-03-10 12:53 AM PST -steven-positive-tran,2023-03-10T08:56:05Z,- steven-positive-tran closed issue as completed: [2216](https://github.com/hackforla/website/issues/2216#event-8716052303) at 2023-03-10 12:56 AM PST -steven-positive-tran,2023-03-10T08:57:40Z,- steven-positive-tran commented on issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1463479166) at 2023-03-10 12:57 AM PST -steven-positive-tran,2023-03-10T08:57:40Z,- steven-positive-tran reopened issue: [2216](https://github.com/hackforla/website/issues/2216#issuecomment-1463479166) at 2023-03-10 12:57 AM PST -steven-positive-tran,2023-03-12T21:32:20Z,- steven-positive-tran commented on pull request: [4150](https://github.com/hackforla/website/pull/4150#issuecomment-1465305198) at 2023-03-12 02:32 PM PDT -steven-positive-tran,2023-03-13T03:31:07Z,- steven-positive-tran submitted pull request review: [4150](https://github.com/hackforla/website/pull/4150#pullrequestreview-1336203403) at 2023-03-12 08:31 PM PDT -steven-positive-tran,2023-03-13T03:49:54Z,- steven-positive-tran commented on pull request: [4135](https://github.com/hackforla/website/pull/4135#issuecomment-1465467712) at 2023-03-12 08:49 PM PDT -steven-positive-tran,2023-03-13T07:20:23Z,- steven-positive-tran submitted pull request review: [4135](https://github.com/hackforla/website/pull/4135#pullrequestreview-1336366713) at 2023-03-13 12:20 AM PDT -steven-positive-tran,2023-03-16T06:50:55Z,- steven-positive-tran closed issue as completed: [2216](https://github.com/hackforla/website/issues/2216#event-8763524582) at 2023-03-15 11:50 PM PDT -steven-positive-tran,2023-03-21T07:04:16Z,- steven-positive-tran commented on pull request: [4222](https://github.com/hackforla/website/pull/4222#issuecomment-1477363764) at 2023-03-21 12:04 AM PDT -steven-positive-tran,2023-03-21T07:18:44Z,- steven-positive-tran commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1477375270) at 2023-03-21 12:18 AM PDT -steven-positive-tran,2023-03-21T07:19:12Z,- steven-positive-tran assigned to issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1477375270) at 2023-03-21 12:19 AM PDT -steven-positive-tran,2023-03-21T07:24:26Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1477379815) at 2023-03-21 12:24 AM PDT -steven-positive-tran,2023-03-21T07:24:27Z,- steven-positive-tran closed issue as completed: [3826](https://github.com/hackforla/website/issues/3826#event-8802140708) at 2023-03-21 12:24 AM PDT -steven-positive-tran,2023-03-22T08:23:13Z,- steven-positive-tran submitted pull request review: [4222](https://github.com/hackforla/website/pull/4222#pullrequestreview-1351941564) at 2023-03-22 01:23 AM PDT -steven-positive-tran,2023-03-25T09:20:19Z,- steven-positive-tran commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1483773952) at 2023-03-25 02:20 AM PDT -steven-positive-tran,2023-04-03T00:43:18Z,- steven-positive-tran unassigned from issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1483943633) at 2023-04-02 05:43 PM PDT -steven-positive-tran,2023-04-03T00:45:04Z,- steven-positive-tran commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1493490600) at 2023-04-02 05:45 PM PDT -steven-positive-tran,2023-04-07T06:30:05Z,- steven-positive-tran commented on issue: [4146](https://github.com/hackforla/website/issues/4146#issuecomment-1499985059) at 2023-04-06 11:30 PM PDT -steven-positive-tran,2023-04-10T04:58:03Z,- steven-positive-tran commented on pull request: [4453](https://github.com/hackforla/website/pull/4453#issuecomment-1501391253) at 2023-04-09 09:58 PM PDT -steven-positive-tran,2023-04-10T05:41:54Z,- steven-positive-tran submitted pull request review: [4453](https://github.com/hackforla/website/pull/4453#pullrequestreview-1377106427) at 2023-04-09 10:41 PM PDT -steven-positive-tran,2023-04-10T06:03:26Z,- steven-positive-tran commented on pull request: [4444](https://github.com/hackforla/website/pull/4444#issuecomment-1501433358) at 2023-04-09 11:03 PM PDT -steven-positive-tran,2023-04-11T05:52:42Z,- steven-positive-tran submitted pull request review: [4444](https://github.com/hackforla/website/pull/4444#pullrequestreview-1378492428) at 2023-04-10 10:52 PM PDT -steven-positive-tran,2023-04-11T05:55:19Z,- steven-positive-tran commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1502725921) at 2023-04-10 10:55 PM PDT -steven-positive-tran,2023-04-11T05:56:30Z,- steven-positive-tran commented on pull request: [4465](https://github.com/hackforla/website/pull/4465#issuecomment-1502726922) at 2023-04-10 10:56 PM PDT -steven-positive-tran,2023-04-11T06:44:54Z,- steven-positive-tran submitted pull request review: [4465](https://github.com/hackforla/website/pull/4465#pullrequestreview-1378546556) at 2023-04-10 11:44 PM PDT -steven-positive-tran,2023-04-11T06:54:13Z,- steven-positive-tran assigned to issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1453087219) at 2023-04-10 11:54 PM PDT -steven-positive-tran,2023-04-11T06:59:35Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1502780083) at 2023-04-10 11:59 PM PDT -steven-positive-tran,2023-04-12T02:36:46Z,- steven-positive-tran submitted pull request review: [4453](https://github.com/hackforla/website/pull/4453#pullrequestreview-1380344792) at 2023-04-11 07:36 PM PDT -steven-positive-tran,2023-04-12T03:08:14Z,- steven-positive-tran opened issue: [4485](https://github.com/hackforla/website/issues/4485) at 2023-04-11 08:08 PM PDT -steven-positive-tran,2023-04-17T04:01:51Z,- steven-positive-tran commented on pull request: [4524](https://github.com/hackforla/website/pull/4524#issuecomment-1510661665) at 2023-04-16 09:01 PM PDT -steven-positive-tran,2023-04-18T04:16:48Z,- steven-positive-tran commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1512410552) at 2023-04-17 09:16 PM PDT -steven-positive-tran,2023-04-18T04:55:51Z,- steven-positive-tran submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1389285419) at 2023-04-17 09:55 PM PDT -steven-positive-tran,2023-04-18T05:04:49Z,- steven-positive-tran submitted pull request review: [4524](https://github.com/hackforla/website/pull/4524#pullrequestreview-1389291971) at 2023-04-17 10:04 PM PDT -steven-positive-tran,2023-04-18T06:46:04Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1512529366) at 2023-04-17 11:46 PM PDT -steven-positive-tran,2023-04-28T07:43:37Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1527132538) at 2023-04-28 12:43 AM PDT -steven-positive-tran,2023-05-02T04:27:21Z,- steven-positive-tran commented on pull request: [4586](https://github.com/hackforla/website/pull/4586#issuecomment-1530858762) at 2023-05-01 09:27 PM PDT -steven-positive-tran,2023-05-02T05:24:44Z,- steven-positive-tran submitted pull request review: [4586](https://github.com/hackforla/website/pull/4586#pullrequestreview-1408405452) at 2023-05-01 10:24 PM PDT -steven-positive-tran,2023-05-08T04:31:50Z,- steven-positive-tran commented on pull request: [4603](https://github.com/hackforla/website/pull/4603#issuecomment-1537730865) at 2023-05-07 09:31 PM PDT -steven-positive-tran,2023-05-09T07:06:58Z,- steven-positive-tran submitted pull request review: [4603](https://github.com/hackforla/website/pull/4603#pullrequestreview-1418012284) at 2023-05-09 12:06 AM PDT -steven-positive-tran,2023-05-10T00:33:23Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1541059833) at 2023-05-09 05:33 PM PDT -steven-positive-tran,2023-05-10T01:16:29Z,- steven-positive-tran commented on pull request: [4644](https://github.com/hackforla/website/pull/4644#issuecomment-1541126381) at 2023-05-09 06:16 PM PDT -steven-positive-tran,2023-05-10T01:16:41Z,- steven-positive-tran commented on pull request: [4643](https://github.com/hackforla/website/pull/4643#issuecomment-1541126783) at 2023-05-09 06:16 PM PDT -steven-positive-tran,2023-05-10T03:41:20Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1541303322) at 2023-05-09 08:41 PM PDT -steven-positive-tran,2023-05-10T06:13:22Z,- steven-positive-tran submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1419845948) at 2023-05-09 11:13 PM PDT -steven-positive-tran,2023-05-10T06:27:03Z,- steven-positive-tran submitted pull request review: [4643](https://github.com/hackforla/website/pull/4643#pullrequestreview-1419860877) at 2023-05-09 11:27 PM PDT -steven-positive-tran,2023-05-11T05:59:57Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1543385011) at 2023-05-10 10:59 PM PDT -steven-positive-tran,2023-05-13T01:25:51Z,- steven-positive-tran submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1425300042) at 2023-05-12 06:25 PM PDT -steven-positive-tran,2023-05-13T02:48:13Z,- steven-positive-tran submitted pull request review: [4646](https://github.com/hackforla/website/pull/4646#pullrequestreview-1425311497) at 2023-05-12 07:48 PM PDT -steven-positive-tran,2023-05-14T23:29:02Z,- steven-positive-tran commented on pull request: [4667](https://github.com/hackforla/website/pull/4667#issuecomment-1547027156) at 2023-05-14 04:29 PM PDT -steven-positive-tran,2023-05-14T23:31:28Z,- steven-positive-tran commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1547027828) at 2023-05-14 04:31 PM PDT -steven-positive-tran,2023-05-16T05:42:37Z,- steven-positive-tran submitted pull request review: [4661](https://github.com/hackforla/website/pull/4661#pullrequestreview-1427756154) at 2023-05-15 10:42 PM PDT -steven-positive-tran,2023-05-16T05:46:50Z,- steven-positive-tran submitted pull request review: [4667](https://github.com/hackforla/website/pull/4667#pullrequestreview-1427761851) at 2023-05-15 10:46 PM PDT -steven-positive-tran,2023-05-16T06:42:20Z,- steven-positive-tran commented on pull request: [4661](https://github.com/hackforla/website/pull/4661#issuecomment-1549076602) at 2023-05-15 11:42 PM PDT -steven-positive-tran,2023-06-01T04:51:59Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1571334718) at 2023-05-31 09:51 PM PDT -steven-positive-tran,2023-06-06T06:16:08Z,- steven-positive-tran commented on issue: [3223](https://github.com/hackforla/website/issues/3223#issuecomment-1577979321) at 2023-06-05 11:16 PM PDT -steven-positive-tran,2023-06-07T05:22:02Z,- steven-positive-tran commented on pull request: [4789](https://github.com/hackforla/website/pull/4789#issuecomment-1579917106) at 2023-06-06 10:22 PM PDT -steven-positive-tran,2023-06-07T05:23:13Z,- steven-positive-tran commented on pull request: [4772](https://github.com/hackforla/website/pull/4772#issuecomment-1579918469) at 2023-06-06 10:23 PM PDT -steven-positive-tran,2023-06-12T01:38:02Z,- steven-positive-tran submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1473912919) at 2023-06-11 06:38 PM PDT -steven-positive-tran,2023-06-12T01:38:38Z,- steven-positive-tran submitted pull request review: [4789](https://github.com/hackforla/website/pull/4789#pullrequestreview-1473913180) at 2023-06-11 06:38 PM PDT -steven-positive-tran,2023-06-13T23:56:43Z,- steven-positive-tran commented on pull request: [4817](https://github.com/hackforla/website/pull/4817#issuecomment-1590221979) at 2023-06-13 04:56 PM PDT -steven-positive-tran,2023-06-13T23:57:15Z,- steven-positive-tran commented on pull request: [4796](https://github.com/hackforla/website/pull/4796#issuecomment-1590222578) at 2023-06-13 04:57 PM PDT -steven-positive-tran,2023-06-14T18:07:40Z,- steven-positive-tran submitted pull request review: [4796](https://github.com/hackforla/website/pull/4796#pullrequestreview-1480035542) at 2023-06-14 11:07 AM PDT -steven-positive-tran,2023-06-14T20:47:26Z,- steven-positive-tran submitted pull request review: [4817](https://github.com/hackforla/website/pull/4817#pullrequestreview-1480276467) at 2023-06-14 01:47 PM PDT -steven-positive-tran,2023-06-21T00:15:44Z,- steven-positive-tran commented on pull request: [4866](https://github.com/hackforla/website/pull/4866#issuecomment-1599763198) at 2023-06-20 05:15 PM PDT -steven-positive-tran,2023-06-21T23:18:45Z,- steven-positive-tran submitted pull request review: [4866](https://github.com/hackforla/website/pull/4866#pullrequestreview-1492066112) at 2023-06-21 04:18 PM PDT -steven-positive-tran,2023-06-26T20:04:43Z,- steven-positive-tran commented on pull request: [4882](https://github.com/hackforla/website/pull/4882#issuecomment-1608159547) at 2023-06-26 01:04 PM PDT -steven-positive-tran,2023-06-26T20:17:31Z,- steven-positive-tran commented on pull request: [4878](https://github.com/hackforla/website/pull/4878#issuecomment-1608185152) at 2023-06-26 01:17 PM PDT -steven-positive-tran,2023-06-26T21:51:42Z,- steven-positive-tran submitted pull request review: [4878](https://github.com/hackforla/website/pull/4878#pullrequestreview-1499538076) at 2023-06-26 02:51 PM PDT -steven-positive-tran,2023-06-26T22:26:55Z,- steven-positive-tran submitted pull request review: [4882](https://github.com/hackforla/website/pull/4882#pullrequestreview-1499584025) at 2023-06-26 03:26 PM PDT -steven-positive-tran,2023-06-26T22:27:16Z,- steven-positive-tran submitted pull request review: [4882](https://github.com/hackforla/website/pull/4882#pullrequestreview-1499584271) at 2023-06-26 03:27 PM PDT -steven-positive-tran,2023-07-13T22:23:24Z,- steven-positive-tran commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1634992958) at 2023-07-13 03:23 PM PDT -steven-positive-tran,2023-07-17T18:21:36Z,- steven-positive-tran commented on pull request: [4945](https://github.com/hackforla/website/pull/4945#issuecomment-1638647801) at 2023-07-17 11:21 AM PDT -steven-positive-tran,2023-07-17T20:42:42Z,- steven-positive-tran submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1533669066) at 2023-07-17 01:42 PM PDT -steven-positive-tran,2023-07-24T23:14:49Z,- steven-positive-tran commented on issue: [3826](https://github.com/hackforla/website/issues/3826#issuecomment-1648746440) at 2023-07-24 04:14 PM PDT -steven-positive-tran,2023-07-27T01:16:53Z,- steven-positive-tran commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1652771792) at 2023-07-26 06:16 PM PDT -steven-positive-tran,2023-07-27T01:19:00Z,- steven-positive-tran commented on pull request: [5096](https://github.com/hackforla/website/pull/5096#issuecomment-1652773708) at 2023-07-26 06:19 PM PDT -steven-positive-tran,2023-07-27T01:43:08Z,- steven-positive-tran submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1548858233) at 2023-07-26 06:43 PM PDT -steven-positive-tran,2023-07-27T01:54:39Z,- steven-positive-tran submitted pull request review: [5096](https://github.com/hackforla/website/pull/5096#pullrequestreview-1548866475) at 2023-07-26 06:54 PM PDT -steven-positive-tran,2023-07-28T21:55:19Z,- steven-positive-tran submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1553000604) at 2023-07-28 02:55 PM PDT -steven-positive-tran,2023-08-03T23:51:03Z,- steven-positive-tran closed issue as completed: [3302](https://github.com/hackforla/website/issues/3302#event-10004012337) at 2023-08-03 04:51 PM PDT -steven-positive-tran,2023-08-03T23:51:04Z,- steven-positive-tran reopened issue: [3302](https://github.com/hackforla/website/issues/3302#event-10004012337) at 2023-08-03 04:51 PM PDT -steven-positive-tran,2023-08-04T00:34:08Z,- steven-positive-tran commented on pull request: [5133](https://github.com/hackforla/website/pull/5133#issuecomment-1664800470) at 2023-08-03 05:34 PM PDT -steven-positive-tran,2023-08-04T00:37:56Z,- steven-positive-tran commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1664806425) at 2023-08-03 05:37 PM PDT -steven-positive-tran,2023-08-04T00:47:38Z,- steven-positive-tran submitted pull request review: [5133](https://github.com/hackforla/website/pull/5133#pullrequestreview-1562031900) at 2023-08-03 05:47 PM PDT -steven-positive-tran,2023-08-04T00:52:47Z,- steven-positive-tran submitted pull request review: [5125](https://github.com/hackforla/website/pull/5125#pullrequestreview-1562034676) at 2023-08-03 05:52 PM PDT -steven-positive-tran,2023-08-04T23:48:16Z,- steven-positive-tran commented on pull request: [5142](https://github.com/hackforla/website/pull/5142#issuecomment-1666285406) at 2023-08-04 04:48 PM PDT -steven-positive-tran,2023-08-04T23:56:38Z,- steven-positive-tran submitted pull request review: [5142](https://github.com/hackforla/website/pull/5142#pullrequestreview-1563671979) at 2023-08-04 04:56 PM PDT -steven-positive-tran,2023-08-08T00:03:47Z,- steven-positive-tran commented on pull request: [5152](https://github.com/hackforla/website/pull/5152#issuecomment-1668724488) at 2023-08-07 05:03 PM PDT -steven-positive-tran,2023-08-08T00:04:59Z,- steven-positive-tran commented on pull request: [5155](https://github.com/hackforla/website/pull/5155#issuecomment-1668725243) at 2023-08-07 05:04 PM PDT -steven-positive-tran,2023-08-08T00:09:58Z,- steven-positive-tran submitted pull request review: [5152](https://github.com/hackforla/website/pull/5152#pullrequestreview-1566293761) at 2023-08-07 05:09 PM PDT -steven-positive-tran,2023-08-08T00:17:11Z,- steven-positive-tran submitted pull request review: [5155](https://github.com/hackforla/website/pull/5155#pullrequestreview-1566298238) at 2023-08-07 05:17 PM PDT -StevenDeng1,7740,SKILLS ISSUE -StevenDeng1,2024-11-20T03:14:13Z,- StevenDeng1 opened issue: [7740](https://github.com/hackforla/website/issues/7740) at 2024-11-19 07:14 PM PST -StevenDeng1,2024-11-20T03:14:23Z,- StevenDeng1 assigned to issue: [7740](https://github.com/hackforla/website/issues/7740) at 2024-11-19 07:14 PM PST -StevenDeng1,2024-11-20T03:21:31Z,- StevenDeng1 commented on issue: [7740](https://github.com/hackforla/website/issues/7740#issuecomment-2487265730) at 2024-11-19 07:21 PM PST -str-xjua24,3605,SKILLS ISSUE -str-xjua24,2022-10-11T02:47:19Z,- str-xjua24 opened issue: [3605](https://github.com/hackforla/website/issues/3605) at 2022-10-10 07:47 PM PDT -str-xjua24,2022-10-12T03:02:21Z,- str-xjua24 assigned to issue: [3605](https://github.com/hackforla/website/issues/3605) at 2022-10-11 08:02 PM PDT -str-xjua24,2022-10-21T03:52:45Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1286423602) at 2022-10-20 08:52 PM PDT -str-xjua24,2022-10-23T06:34:16Z,- str-xjua24 assigned to issue: [2852](https://github.com/hackforla/website/issues/2852#issuecomment-1048335157) at 2022-10-22 11:34 PM PDT -str-xjua24,2022-10-23T06:41:55Z,- str-xjua24 commented on issue: [2852](https://github.com/hackforla/website/issues/2852#issuecomment-1288026087) at 2022-10-22 11:41 PM PDT -str-xjua24,2022-10-23T06:44:14Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1288026373) at 2022-10-22 11:44 PM PDT -str-xjua24,2022-10-23T21:19:28Z,- str-xjua24 opened pull request: [3650](https://github.com/hackforla/website/pull/3650) at 2022-10-23 02:19 PM PDT -str-xjua24,2022-10-24T23:52:07Z,- str-xjua24 pull request merged: [3650](https://github.com/hackforla/website/pull/3650#event-7658636117) at 2022-10-24 04:52 PM PDT -str-xjua24,2022-10-27T03:19:47Z,- str-xjua24 assigned to issue: [3278](https://github.com/hackforla/website/issues/3278#issuecomment-1162504150) at 2022-10-26 08:19 PM PDT -str-xjua24,2022-10-27T03:21:13Z,- str-xjua24 commented on issue: [3278](https://github.com/hackforla/website/issues/3278#issuecomment-1292919776) at 2022-10-26 08:21 PM PDT -str-xjua24,2022-10-30T08:45:47Z,- str-xjua24 opened pull request: [3675](https://github.com/hackforla/website/pull/3675) at 2022-10-30 01:45 AM PDT -str-xjua24,2022-10-31T18:44:41Z,- str-xjua24 pull request merged: [3675](https://github.com/hackforla/website/pull/3675#event-7707075171) at 2022-10-31 11:44 AM PDT -str-xjua24,2022-11-02T01:39:50Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1299437898) at 2022-11-01 06:39 PM PDT -str-xjua24,2022-12-07T23:40:23Z,- str-xjua24 assigned to issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1333608653) at 2022-12-07 03:40 PM PST -str-xjua24,2022-12-07T23:42:20Z,- str-xjua24 commented on issue: [3353](https://github.com/hackforla/website/issues/3353#issuecomment-1341755830) at 2022-12-07 03:42 PM PST -str-xjua24,2022-12-09T06:33:07Z,- str-xjua24 opened pull request: [3768](https://github.com/hackforla/website/pull/3768) at 2022-12-08 10:33 PM PST -str-xjua24,2022-12-09T08:00:44Z,- str-xjua24 commented on issue: [3605](https://github.com/hackforla/website/issues/3605#issuecomment-1343974077) at 2022-12-09 12:00 AM PST -str-xjua24,2022-12-12T03:24:58Z,- str-xjua24 pull request merged: [3768](https://github.com/hackforla/website/pull/3768#event-8009776569) at 2022-12-11 07:24 PM PST -str-xjua24,2022-12-13T04:21:50Z,- str-xjua24 closed issue as completed: [3353](https://github.com/hackforla/website/issues/3353#event-8021263208) at 2022-12-12 08:21 PM PST -str-xjua24,2022-12-13T04:40:36Z,- str-xjua24 assigned to issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1328323817) at 2022-12-12 08:40 PM PST -str-xjua24,2022-12-13T04:46:27Z,- str-xjua24 commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1347742817) at 2022-12-12 08:46 PM PST -str-xjua24,2023-01-09T09:33:15Z,- str-xjua24 commented on issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1375331916) at 2023-01-09 01:33 AM PST -str-xjua24,2023-03-12T06:12:20Z,- str-xjua24 unassigned from issue: [2600](https://github.com/hackforla/website/issues/2600#issuecomment-1463378139) at 2023-03-11 11:12 PM PDT -stu562,2019-04-24T03:44:57Z,- stu562 opened pull request: [70](https://github.com/hackforla/website/pull/70) at 2019-04-23 08:44 PM PDT -stu562,2019-04-29T21:18:20Z,- stu562 pull request closed w/o merging: [70](https://github.com/hackforla/website/pull/70#event-2307940219) at 2019-04-29 02:18 PM PDT -stu562,2019-04-29T21:26:41Z,- stu562 opened pull request: [71](https://github.com/hackforla/website/pull/71) at 2019-04-29 02:26 PM PDT -stu562,2019-05-01T22:46:07Z,- stu562 pull request merged: [71](https://github.com/hackforla/website/pull/71#event-2313103183) at 2019-05-01 03:46 PM PDT -stu562,2019-05-02T19:08:44Z,- stu562 commented on pull request: [71](https://github.com/hackforla/website/pull/71#issuecomment-488794456) at 2019-05-02 12:08 PM PDT -stu562,2019-05-08T03:12:34Z,- stu562 opened pull request: [95](https://github.com/hackforla/website/pull/95) at 2019-05-07 08:12 PM PDT -stu562,2019-05-08T04:04:45Z,- stu562 pull request merged: [95](https://github.com/hackforla/website/pull/95#event-2326090075) at 2019-05-07 09:04 PM PDT -stu562,2019-05-09T00:50:29Z,- stu562 assigned to issue: [78](https://github.com/hackforla/website/issues/78#issuecomment-490702442) at 2019-05-08 05:50 PM PDT -stu562,2019-05-09T18:55:37Z,- stu562 opened pull request: [100](https://github.com/hackforla/website/pull/100) at 2019-05-09 11:55 AM PDT -stu562,2019-05-09T19:13:47Z,- stu562 commented on pull request: [100](https://github.com/hackforla/website/pull/100#issuecomment-491030439) at 2019-05-09 12:13 PM PDT -stu562,2019-05-09T19:34:14Z,- stu562 commented on pull request: [100](https://github.com/hackforla/website/pull/100#issuecomment-491036653) at 2019-05-09 12:34 PM PDT -stu562,2019-05-09T19:34:14Z,- stu562 pull request closed w/o merging: [100](https://github.com/hackforla/website/pull/100#event-2331241500) at 2019-05-09 12:34 PM PDT -stu562,2019-05-09T19:35:50Z,- stu562 opened pull request: [101](https://github.com/hackforla/website/pull/101) at 2019-05-09 12:35 PM PDT -stu562,2019-05-09T19:44:49Z,- stu562 pull request merged: [101](https://github.com/hackforla/website/pull/101#event-2331266226) at 2019-05-09 12:44 PM PDT -stu562,2019-05-09T19:45:13Z,- stu562 closed issue as completed: [78](https://github.com/hackforla/website/issues/78#event-2331267243) at 2019-05-09 12:45 PM PDT -stu562,2019-05-15T03:03:08Z,- stu562 opened pull request: [108](https://github.com/hackforla/website/pull/108) at 2019-05-14 08:03 PM PDT -stu562,2019-05-22T02:02:11Z,- stu562 commented on pull request: [108](https://github.com/hackforla/website/pull/108#issuecomment-494623102) at 2019-05-21 07:02 PM PDT -stu562,2019-05-22T02:57:54Z,- stu562 assigned to issue: [113](https://github.com/hackforla/website/issues/113) at 2019-05-21 07:57 PM PDT -stu562,2019-05-22T03:11:17Z,- stu562 opened pull request: [114](https://github.com/hackforla/website/pull/114) at 2019-05-21 08:11 PM PDT -stu562,2019-05-22T03:20:09Z,- stu562 closed issue by PR 114: [113](https://github.com/hackforla/website/issues/113#event-2357991415) at 2019-05-21 08:20 PM PDT -stu562,2019-05-22T03:20:10Z,- stu562 pull request merged: [114](https://github.com/hackforla/website/pull/114#event-2357991418) at 2019-05-21 08:20 PM PDT -stu562,2019-05-23T03:36:19Z,- stu562 assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -stu562,2019-06-03T03:58:06Z,- stu562 commented on issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498104837) at 2019-06-02 08:58 PM PDT -stu562,2019-06-04T01:21:06Z,- stu562 assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -stu562,2019-06-05T03:02:17Z,- stu562 pull request merged: [108](https://github.com/hackforla/website/pull/108#event-2389985370) at 2019-06-04 08:02 PM PDT -stu562,2019-06-12T17:42:42Z,- stu562 unassigned from issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-501075016) at 2019-06-12 10:42 AM PDT -stu562,2019-06-19T02:43:32Z,- stu562 commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-503383749) at 2019-06-18 07:43 PM PDT -stu562,2019-06-27T19:11:38Z,- stu562 assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-503383749) at 2019-06-27 12:11 PM PDT -stu562,2019-11-12T03:14:45Z,- stu562 unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-11-11 07:14 PM PST -stu562,2020-06-01T02:33:13Z,- stu562 unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-636580730) at 2020-05-31 07:33 PM PDT -suazoj,2020-08-16T19:02:08Z,- suazoj assigned to issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-674556277) at 2020-08-16 12:02 PM PDT -sudhara,2024-08-15T02:46:18Z,- sudhara opened issue: [7294](https://github.com/hackforla/website/issues/7294) at 2024-08-14 07:46 PM PDT -Sujay-Anantha,7518,SKILLS ISSUE -Sujay-Anantha,2024-09-25T02:56:41Z,- Sujay-Anantha opened issue: [7518](https://github.com/hackforla/website/issues/7518) at 2024-09-24 07:56 PM PDT -Sujay-Anantha,2024-09-25T03:00:45Z,- Sujay-Anantha assigned to issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2372801196) at 2024-09-24 08:00 PM PDT -Sujay-Anantha,2024-09-25T03:17:51Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2372823518) at 2024-09-24 08:17 PM PDT -Sujay-Anantha,2024-09-26T18:54:40Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2377704877) at 2024-09-26 11:54 AM PDT -Sujay-Anantha,2024-09-26T19:20:22Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2377751402) at 2024-09-26 12:20 PM PDT -Sujay-Anantha,2024-09-27T16:17:59Z,- Sujay-Anantha assigned to issue: [7403](https://github.com/hackforla/website/issues/7403) at 2024-09-27 09:17 AM PDT -Sujay-Anantha,2024-09-27T17:25:25Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2379744810) at 2024-09-27 10:25 AM PDT -Sujay-Anantha,2024-09-27T17:42:57Z,- Sujay-Anantha opened pull request: [7529](https://github.com/hackforla/website/pull/7529) at 2024-09-27 10:42 AM PDT -Sujay-Anantha,2024-09-27T17:47:07Z,- Sujay-Anantha commented on issue: [7403](https://github.com/hackforla/website/issues/7403#issuecomment-2379775976) at 2024-09-27 10:47 AM PDT -Sujay-Anantha,2024-09-27T17:49:29Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2379779635) at 2024-09-27 10:49 AM PDT -Sujay-Anantha,2024-09-27T18:10:09Z,- Sujay-Anantha commented on pull request: [7529](https://github.com/hackforla/website/pull/7529#issuecomment-2379810811) at 2024-09-27 11:10 AM PDT -Sujay-Anantha,2024-09-28T13:46:12Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2380646050) at 2024-09-28 06:46 AM PDT -Sujay-Anantha,2024-09-29T16:54:33Z,- Sujay-Anantha pull request merged: [7529](https://github.com/hackforla/website/pull/7529#event-14445745947) at 2024-09-29 09:54 AM PDT -Sujay-Anantha,2024-10-03T15:34:00Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2391728153) at 2024-10-03 08:34 AM PDT -Sujay-Anantha,2024-10-03T15:40:42Z,- Sujay-Anantha assigned to issue: [7549](https://github.com/hackforla/website/issues/7549) at 2024-10-03 08:40 AM PDT -Sujay-Anantha,2024-10-03T16:19:21Z,- Sujay-Anantha opened pull request: [7559](https://github.com/hackforla/website/pull/7559) at 2024-10-03 09:19 AM PDT -Sujay-Anantha,2024-10-03T16:25:00Z,- Sujay-Anantha commented on issue: [7549](https://github.com/hackforla/website/issues/7549#issuecomment-2391832954) at 2024-10-03 09:25 AM PDT -Sujay-Anantha,2024-10-04T03:23:38Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2392719487) at 2024-10-03 08:23 PM PDT -Sujay-Anantha,2024-10-04T03:24:09Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2392719829) at 2024-10-03 08:24 PM PDT -Sujay-Anantha,2024-10-07T19:08:10Z,- Sujay-Anantha pull request merged: [7559](https://github.com/hackforla/website/pull/7559#event-14545548650) at 2024-10-07 12:08 PM PDT -Sujay-Anantha,2024-10-15T17:13:14Z,- Sujay-Anantha commented on pull request: [7592](https://github.com/hackforla/website/pull/7592#issuecomment-2414577829) at 2024-10-15 10:13 AM PDT -Sujay-Anantha,2024-10-15T17:15:36Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2414583563) at 2024-10-15 10:15 AM PDT -Sujay-Anantha,2024-10-15T17:25:38Z,- Sujay-Anantha submitted pull request review: [7592](https://github.com/hackforla/website/pull/7592#pullrequestreview-2370099688) at 2024-10-15 10:25 AM PDT -Sujay-Anantha,2024-10-23T17:56:19Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2433015909) at 2024-10-23 10:56 AM PDT -Sujay-Anantha,2024-10-23T17:57:06Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2433017422) at 2024-10-23 10:57 AM PDT -Sujay-Anantha,2024-11-04T15:03:15Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2454951822) at 2024-11-04 07:03 AM PST -Sujay-Anantha,2024-11-06T14:32:29Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2459912667) at 2024-11-06 06:32 AM PST -Sujay-Anantha,2024-11-06T14:36:45Z,- Sujay-Anantha assigned to issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2423141080) at 2024-11-06 06:36 AM PST -Sujay-Anantha,2024-11-06T14:38:48Z,- Sujay-Anantha commented on issue: [7454](https://github.com/hackforla/website/issues/7454#issuecomment-2459928546) at 2024-11-06 06:38 AM PST -Sujay-Anantha,2024-11-15T01:03:56Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2477741346) at 2024-11-14 05:03 PM PST -Sujay-Anantha,2024-11-18T22:31:27Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2484270405) at 2024-11-18 02:31 PM PST -Sujay-Anantha,2024-11-25T13:40:14Z,- Sujay-Anantha assigned to issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2327538889) at 2024-11-25 05:40 AM PST -Sujay-Anantha,2024-11-25T13:42:21Z,- Sujay-Anantha commented on issue: [7159](https://github.com/hackforla/website/issues/7159#issuecomment-2498056815) at 2024-11-25 05:42 AM PST -Sujay-Anantha,2024-11-25T14:21:57Z,- Sujay-Anantha opened issue: [7763](https://github.com/hackforla/website/issues/7763) at 2024-11-25 06:21 AM PST -Sujay-Anantha,2024-11-25T14:22:05Z,- Sujay-Anantha opened issue: [7764](https://github.com/hackforla/website/issues/7764) at 2024-11-25 06:22 AM PST -Sujay-Anantha,2024-11-25T14:22:11Z,- Sujay-Anantha opened issue: [7765](https://github.com/hackforla/website/issues/7765) at 2024-11-25 06:22 AM PST -Sujay-Anantha,2024-11-25T14:22:20Z,- Sujay-Anantha opened issue: [7766](https://github.com/hackforla/website/issues/7766) at 2024-11-25 06:22 AM PST -Sujay-Anantha,2024-11-26T16:53:31Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2501410192) at 2024-11-26 08:53 AM PST -Sujay-Anantha,2024-12-04T17:58:12Z,- Sujay-Anantha assigned to issue: [7604](https://github.com/hackforla/website/issues/7604) at 2024-12-04 09:58 AM PST -Sujay-Anantha,2024-12-04T17:59:37Z,- Sujay-Anantha commented on issue: [7604](https://github.com/hackforla/website/issues/7604#issuecomment-2518160542) at 2024-12-04 09:59 AM PST -Sujay-Anantha,2024-12-04T18:49:54Z,- Sujay-Anantha opened pull request: [7791](https://github.com/hackforla/website/pull/7791) at 2024-12-04 10:49 AM PST -Sujay-Anantha,2024-12-07T20:33:21Z,- Sujay-Anantha pull request merged: [7791](https://github.com/hackforla/website/pull/7791#event-15570616774) at 2024-12-07 12:33 PM PST -Sujay-Anantha,2024-12-09T15:36:44Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2528408124) at 2024-12-09 07:36 AM PST -Sujay-Anantha,2024-12-12T13:04:25Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2538852203) at 2024-12-12 05:04 AM PST -Sujay-Anantha,2025-01-03T21:41:32Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2569853235) at 2025-01-03 01:41 PM PST -Sujay-Anantha,2025-01-10T22:03:23Z,- Sujay-Anantha submitted pull request review: [7816](https://github.com/hackforla/website/pull/7816#pullrequestreview-2544055191) at 2025-01-10 02:03 PM PST -Sujay-Anantha,2025-01-10T22:05:07Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2584452006) at 2025-01-10 02:05 PM PST -Sujay-Anantha,2025-01-25T01:34:59Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2613709681) at 2025-01-24 05:34 PM PST -Sujay-Anantha,2025-01-30T18:02:22Z,- Sujay-Anantha commented on pull request: [7861](https://github.com/hackforla/website/pull/7861#issuecomment-2625208870) at 2025-01-30 10:02 AM PST -Sujay-Anantha,2025-01-30T18:13:44Z,- Sujay-Anantha submitted pull request review: [7861](https://github.com/hackforla/website/pull/7861#pullrequestreview-2584693528) at 2025-01-30 10:13 AM PST -Sujay-Anantha,2025-01-30T18:15:30Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2625237848) at 2025-01-30 10:15 AM PST -Sujay-Anantha,2025-01-30T18:20:21Z,- Sujay-Anantha submitted pull request review: [7856](https://github.com/hackforla/website/pull/7856#pullrequestreview-2584706144) at 2025-01-30 10:20 AM PST -Sujay-Anantha,2025-01-30T18:22:06Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2625251562) at 2025-01-30 10:22 AM PST -Sujay-Anantha,2025-02-07T18:31:26Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2643696814) at 2025-02-07 10:31 AM PST -Sujay-Anantha,2025-02-16T00:17:05Z,- Sujay-Anantha submitted pull request review: [7903](https://github.com/hackforla/website/pull/7903#pullrequestreview-2619514393) at 2025-02-15 04:17 PM PST -Sujay-Anantha,2025-02-16T00:18:00Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2661159474) at 2025-02-15 04:18 PM PST -Sujay-Anantha,2025-02-16T00:19:17Z,- Sujay-Anantha opened issue: [7911](https://github.com/hackforla/website/issues/7911) at 2025-02-15 04:19 PM PST -Sujay-Anantha,2025-02-16T00:19:54Z,- Sujay-Anantha closed issue as completed: [7911](https://github.com/hackforla/website/issues/7911#event-16322889221) at 2025-02-15 04:19 PM PST -Sujay-Anantha,2025-02-28T16:07:16Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2691027094) at 2025-02-28 08:07 AM PST -Sujay-Anantha,2025-03-15T16:27:45Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2726768593) at 2025-03-15 09:27 AM PDT -Sujay-Anantha,2025-03-31T17:26:16Z,- Sujay-Anantha commented on issue: [7518](https://github.com/hackforla/website/issues/7518#issuecomment-2766897933) at 2025-03-31 10:26 AM PDT -Suman2795,3553,SKILLS ISSUE -Suman2795,2022-09-14T02:54:56Z,- Suman2795 opened issue: [3553](https://github.com/hackforla/website/issues/3553) at 2022-09-13 07:54 PM PDT -Suman2795,2022-09-14T02:55:27Z,- Suman2795 assigned to issue: [3553](https://github.com/hackforla/website/issues/3553) at 2022-09-13 07:55 PM PDT -Suman2795,2022-10-02T16:00:50Z,- Suman2795 commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1264676021) at 2022-10-02 09:00 AM PDT -Suman2795,2022-10-07T13:30:20Z,- Suman2795 assigned to issue: [2844](https://github.com/hackforla/website/issues/2844#issuecomment-1048144299) at 2022-10-07 06:30 AM PDT -Suman2795,2022-10-07T13:40:00Z,- Suman2795 commented on issue: [2844](https://github.com/hackforla/website/issues/2844#issuecomment-1271608853) at 2022-10-07 06:40 AM PDT -Suman2795,2022-10-07T15:23:54Z,- Suman2795 opened pull request: [3600](https://github.com/hackforla/website/pull/3600) at 2022-10-07 08:23 AM PDT -Suman2795,2022-10-07T17:24:01Z,- Suman2795 commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1271855963) at 2022-10-07 10:24 AM PDT -Suman2795,2022-10-10T01:18:11Z,- Suman2795 pull request merged: [3600](https://github.com/hackforla/website/pull/3600#event-7550254365) at 2022-10-09 06:18 PM PDT -Suman2795,2022-10-16T06:15:21Z,- Suman2795 assigned to issue: [3202](https://github.com/hackforla/website/issues/3202#issuecomment-1145813785) at 2022-10-15 11:15 PM PDT -Suman2795,2022-10-16T06:20:09Z,- Suman2795 commented on issue: [3202](https://github.com/hackforla/website/issues/3202#issuecomment-1279902000) at 2022-10-15 11:20 PM PDT -Suman2795,2022-10-16T07:25:56Z,- Suman2795 opened pull request: [3628](https://github.com/hackforla/website/pull/3628) at 2022-10-16 12:25 AM PDT -Suman2795,2022-10-17T06:37:12Z,- Suman2795 commented on pull request: [3628](https://github.com/hackforla/website/pull/3628#issuecomment-1280361887) at 2022-10-16 11:37 PM PDT -Suman2795,2022-10-17T22:52:29Z,- Suman2795 pull request merged: [3628](https://github.com/hackforla/website/pull/3628#event-7606459050) at 2022-10-17 03:52 PM PDT -Suman2795,2022-10-19T16:22:00Z,- Suman2795 assigned to issue: [2438](https://github.com/hackforla/website/issues/2438#issuecomment-1180730183) at 2022-10-19 09:22 AM PDT -Suman2795,2022-10-19T16:47:44Z,- Suman2795 commented on issue: [3553](https://github.com/hackforla/website/issues/3553#issuecomment-1284299794) at 2022-10-19 09:47 AM PDT -Suman2795,2022-10-20T03:46:03Z,- Suman2795 commented on issue: [2438](https://github.com/hackforla/website/issues/2438#issuecomment-1284880247) at 2022-10-19 08:46 PM PDT -Suman2795,2022-10-24T07:53:32Z,- Suman2795 opened pull request: [3652](https://github.com/hackforla/website/pull/3652) at 2022-10-24 12:53 AM PDT -Suman2795,2022-10-29T13:05:03Z,- Suman2795 assigned to issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1292587475) at 2022-10-29 06:05 AM PDT -Suman2795,2022-10-29T20:30:59Z,- Suman2795 unassigned from issue: [2459](https://github.com/hackforla/website/issues/2459#issuecomment-1295965027) at 2022-10-29 01:30 PM PDT -Suman2795,2022-10-30T18:54:54Z,- Suman2795 pull request merged: [3652](https://github.com/hackforla/website/pull/3652#event-7699613081) at 2022-10-30 11:54 AM PDT -Suman2795,2022-10-31T12:00:31Z,- Suman2795 assigned to issue: [3598](https://github.com/hackforla/website/issues/3598) at 2022-10-31 05:00 AM PDT -Suman2795,2022-11-01T08:15:51Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1298195826) at 2022-11-01 01:15 AM PDT -Suman2795,2022-11-06T16:31:49Z,- Suman2795 commented on pull request: [3695](https://github.com/hackforla/website/pull/3695#issuecomment-1304839279) at 2022-11-06 08:31 AM PST -Suman2795,2022-11-06T16:52:22Z,- Suman2795 submitted pull request review: [3695](https://github.com/hackforla/website/pull/3695#pullrequestreview-1169625815) at 2022-11-06 08:52 AM PST -Suman2795,2022-11-11T16:00:11Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1311887041) at 2022-11-11 08:00 AM PST -Suman2795,2022-11-15T05:31:56Z,- Suman2795 commented on pull request: [3718](https://github.com/hackforla/website/pull/3718#issuecomment-1314796876) at 2022-11-14 09:31 PM PST -Suman2795,2022-11-15T11:07:58Z,- Suman2795 submitted pull request review: [3718](https://github.com/hackforla/website/pull/3718#pullrequestreview-1180675345) at 2022-11-15 03:07 AM PST -Suman2795,2022-11-16T04:45:53Z,- Suman2795 commented on pull request: [3719](https://github.com/hackforla/website/pull/3719#issuecomment-1316337272) at 2022-11-15 08:45 PM PST -Suman2795,2022-11-16T17:02:01Z,- Suman2795 submitted pull request review: [3719](https://github.com/hackforla/website/pull/3719#pullrequestreview-1182984829) at 2022-11-16 09:02 AM PST -Suman2795,2022-11-18T02:32:45Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1319468705) at 2022-11-17 06:32 PM PST -Suman2795,2022-11-18T02:34:01Z,- Suman2795 commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319469331) at 2022-11-17 06:34 PM PST -Suman2795,2022-11-18T12:58:42Z,- Suman2795 commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319962080) at 2022-11-18 04:58 AM PST -Suman2795,2022-11-18T16:33:33Z,- Suman2795 submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186419399) at 2022-11-18 08:33 AM PST -Suman2795,2022-11-18T17:26:27Z,- Suman2795 submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186509014) at 2022-11-18 09:26 AM PST -Suman2795,2022-11-18T17:27:36Z,- Suman2795 submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186511738) at 2022-11-18 09:27 AM PST -Suman2795,2022-11-22T05:35:49Z,- Suman2795 commented on pull request: [3737](https://github.com/hackforla/website/pull/3737#issuecomment-1323105967) at 2022-11-21 09:35 PM PST -Suman2795,2022-11-23T14:32:17Z,- Suman2795 submitted pull request review: [3737](https://github.com/hackforla/website/pull/3737#pullrequestreview-1191758758) at 2022-11-23 06:32 AM PST -Suman2795,2022-11-28T17:31:41Z,- Suman2795 submitted pull request review: [3751](https://github.com/hackforla/website/pull/3751#pullrequestreview-1196260044) at 2022-11-28 09:31 AM PST -Suman2795,2022-12-04T14:49:46Z,- Suman2795 commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1336431015) at 2022-12-04 06:49 AM PST -Suman2795,2022-12-06T03:05:44Z,- Suman2795 submitted pull request review: [3764](https://github.com/hackforla/website/pull/3764#pullrequestreview-1205700744) at 2022-12-05 07:05 PM PST -Suman2795,2022-12-06T03:12:35Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1338676642) at 2022-12-05 07:12 PM PST -Suman2795,2023-01-16T07:22:31Z,- Suman2795 commented on pull request: [3816](https://github.com/hackforla/website/pull/3816#issuecomment-1383595330) at 2023-01-15 11:22 PM PST -Suman2795,2023-01-16T07:49:50Z,- Suman2795 submitted pull request review: [3816](https://github.com/hackforla/website/pull/3816#pullrequestreview-1249687384) at 2023-01-15 11:49 PM PST -Suman2795,2023-01-16T07:50:17Z,- Suman2795 submitted pull request review: [3816](https://github.com/hackforla/website/pull/3816#pullrequestreview-1249687829) at 2023-01-15 11:50 PM PST -Suman2795,2023-01-19T05:12:14Z,- Suman2795 commented on issue: [3598](https://github.com/hackforla/website/issues/3598#issuecomment-1396449359) at 2023-01-18 09:12 PM PST -Suman2795,2023-01-19T07:43:59Z,- Suman2795 opened issue: [3843](https://github.com/hackforla/website/issues/3843) at 2023-01-18 11:43 PM PST -Suman2795,2023-01-20T05:05:04Z,- Suman2795 commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1397926952) at 2023-01-19 09:05 PM PST -Suman2795,2023-02-05T13:00:35Z,- Suman2795 commented on pull request: [3935](https://github.com/hackforla/website/pull/3935#issuecomment-1417774543) at 2023-02-05 05:00 AM PST -Suman2795,2023-02-05T17:28:39Z,- Suman2795 submitted pull request review: [3935](https://github.com/hackforla/website/pull/3935#pullrequestreview-1284305266) at 2023-02-05 09:28 AM PST -Suman2795,2023-03-01T13:30:26Z,- Suman2795 commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1450158145) at 2023-03-01 05:30 AM PST -Suman2795,2023-03-02T08:04:44Z,- Suman2795 submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1321212761) at 2023-03-02 12:04 AM PST -Suman2795,2023-03-03T07:13:23Z,- Suman2795 submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1323201989) at 2023-03-02 11:13 PM PST -Suman2795,2023-03-04T15:53:20Z,- Suman2795 commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1454784299) at 2023-03-04 07:53 AM PST -Suman2795,2023-03-07T13:30:06Z,- Suman2795 submitted pull request review: [4107](https://github.com/hackforla/website/pull/4107#pullrequestreview-1328471755) at 2023-03-07 05:30 AM PST -Suman2795,2023-03-19T14:32:00Z,- Suman2795 commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1475277466) at 2023-03-19 07:32 AM PDT -Suman2795,2023-03-21T15:32:22Z,- Suman2795 submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1350775585) at 2023-03-21 08:32 AM PDT -Suman2795,2023-03-23T07:09:19Z,- Suman2795 submitted pull request review: [4197](https://github.com/hackforla/website/pull/4197#pullrequestreview-1353969153) at 2023-03-23 12:09 AM PDT -SumayyaZiyad,2021-10-09T12:42:21Z,- SumayyaZiyad opened pull request: [2351](https://github.com/hackforla/website/pull/2351) at 2021-10-09 05:42 AM PDT -SumayyaZiyad,2021-10-09T18:14:19Z,- SumayyaZiyad commented on pull request: [2351](https://github.com/hackforla/website/pull/2351#issuecomment-939339418) at 2021-10-09 11:14 AM PDT -SumayyaZiyad,2021-10-10T01:03:17Z,- SumayyaZiyad pull request closed w/o merging: [2351](https://github.com/hackforla/website/pull/2351#event-5438730229) at 2021-10-09 06:03 PM PDT -SumayyaZiyad,2021-10-10T14:47:37Z,- SumayyaZiyad opened pull request: [2359](https://github.com/hackforla/website/pull/2359) at 2021-10-10 07:47 AM PDT -SumayyaZiyad,2021-10-20T00:23:55Z,- SumayyaZiyad pull request merged: [2359](https://github.com/hackforla/website/pull/2359#event-5488566624) at 2021-10-19 05:23 PM PDT -sumerjoshi,8102,SKILLS ISSUE -sumerjoshi,2025-04-30T16:58:07Z,- sumerjoshi opened issue: [8102](https://github.com/hackforla/website/issues/8102) at 2025-04-30 09:58 AM PDT -sumerjoshi,2025-04-30T16:58:08Z,- sumerjoshi assigned to issue: [8102](https://github.com/hackforla/website/issues/8102) at 2025-04-30 09:58 AM PDT -sumerjoshi,2025-04-30T17:08:34Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2842681663) at 2025-04-30 10:08 AM PDT -sumerjoshi,2025-05-13T16:07:14Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2877138940) at 2025-05-13 09:07 AM PDT -sumerjoshi,2025-05-13T16:07:55Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-2877140853) at 2025-05-13 09:07 AM PDT -sumerjoshi,2025-07-02T16:55:20Z,- sumerjoshi commented on issue: [8102](https://github.com/hackforla/website/issues/8102#issuecomment-3028583687) at 2025-07-02 09:55 AM PDT -SummerHarvey,2021-12-08T17:02:22Z,- SummerHarvey assigned to issue: [2527](https://github.com/hackforla/website/issues/2527) at 2021-12-08 09:02 AM PST - REPLACED BY - 2562 (summerharveyux),2499,SKILLS ISSUE -summerharveyux,2562,SKILLS ISSUE -summerharveyux,2021-11-17T22:18:10Z,- sacamp commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-972113138) at 2021-11-17 02:18 PM PST -summerharveyux,2021-12-01T23:05:14Z,- summerharveyux commented on issue: [2499](https://github.com/hackforla/website/issues/2499#issuecomment-984138654) at 2021-12-01 03:05 PM PST -summerharveyux,2021-12-08T22:07:00Z,- summerharveyux opened issue: [2562](https://github.com/hackforla/website/issues/2562) at 2021-12-08 02:07 PM PST -summerharveyux,2021-12-08T22:09:34Z,- summerharveyux assigned to issue: [2562](https://github.com/hackforla/website/issues/2562#issuecomment-989265799) at 2021-12-08 02:09 PM PST -summerharveyux,2021-12-08T22:42:49Z,- summerharveyux assigned to issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-989182930) at 2021-12-08 02:42 PM PST -summerharveyux,2021-12-10T00:56:50Z,- summerharveyux closed issue as completed: [2498](https://github.com/hackforla/website/issues/2498#event-5744650688) at 2021-12-09 04:56 PM PST -summerharveyux,2021-12-10T01:21:50Z,- summerharveyux commented on issue: [2527](https://github.com/hackforla/website/issues/2527#issuecomment-990488510) at 2021-12-09 05:21 PM PST -summerharveyux,2021-12-10T01:26:36Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-990494850) at 2021-12-09 05:26 PM PST -summerharveyux,2021-12-14T00:17:22Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-993029763) at 2021-12-13 04:17 PM PST -summerharveyux,2021-12-15T22:11:19Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-995253791) at 2021-12-15 02:11 PM PST -summerharveyux,2021-12-21T01:47:01Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-998401672) at 2021-12-20 05:47 PM PST -summerharveyux,2022-01-05T22:57:09Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1006142801) at 2022-01-05 02:57 PM PST -summerharveyux,2022-01-12T22:59:18Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1011525708) at 2022-01-12 02:59 PM PST -summerharveyux,2022-01-19T22:25:32Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1016928630) at 2022-01-19 02:25 PM PST -summerharveyux,2022-01-19T23:13:05Z,- summerharveyux commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1016956292) at 2022-01-19 03:13 PM PST -summerharveyux,2022-01-20T21:14:33Z,- summerharveyux assigned to issue: [2499](https://github.com/hackforla/website/issues/2499#event-5927926277) at 2022-01-20 01:14 PM PST -summerharveyux,2022-01-26T22:45:53Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1022672205) at 2022-01-26 02:45 PM PST -summerharveyux,2022-01-26T23:40:04Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1022703780) at 2022-01-26 03:40 PM PST -summerharveyux,2022-02-02T00:20:37Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1027425303) at 2022-02-01 04:20 PM PST -summerharveyux,2022-02-09T22:47:26Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1034276082) at 2022-02-09 02:47 PM PST -summerharveyux,2022-02-14T22:06:46Z,- summerharveyux assigned to issue: [2763](https://github.com/hackforla/website/issues/2763#event-6047300984) at 2022-02-14 02:06 PM PST -summerharveyux,2022-02-14T22:11:48Z,- summerharveyux commented on issue: [2537](https://github.com/hackforla/website/issues/2537#issuecomment-1039622090) at 2022-02-14 02:11 PM PST -summerharveyux,2022-02-14T22:11:49Z,- summerharveyux closed issue as completed: [2537](https://github.com/hackforla/website/issues/2537#event-6070565997) at 2022-02-14 02:11 PM PST -summerharveyux,2022-02-14T22:21:47Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1039631114) at 2022-02-14 02:21 PM PST -summerharveyux,2022-02-22T00:15:26Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1047313036) at 2022-02-21 04:15 PM PST -summerharveyux,2022-02-22T18:44:00Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048102474) at 2022-02-22 10:44 AM PST -summerharveyux,2022-02-22T23:29:28Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048309242) at 2022-02-22 03:29 PM PST -summerharveyux,2022-02-22T23:30:47Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1048310042) at 2022-02-22 03:30 PM PST -summerharveyux,2022-02-23T22:35:15Z,- summerharveyux commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1049282151) at 2022-02-23 02:35 PM PST -summerharveyux,2022-03-02T20:20:14Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1057341247) at 2022-03-02 12:20 PM PST -summerharveyux,2022-03-09T22:43:11Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1063453606) at 2022-03-09 02:43 PM PST -summerharveyux,2022-03-16T21:41:19Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069662903) at 2022-03-16 02:41 PM PDT -summerharveyux,2022-03-16T22:06:11Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1069680825) at 2022-03-16 03:06 PM PDT -summerharveyux,2022-03-23T21:07:36Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1076821602) at 2022-03-23 02:07 PM PDT -summerharveyux,2022-03-30T21:07:04Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1083625776) at 2022-03-30 02:07 PM PDT -summerharveyux,2022-04-20T20:43:07Z,- summerharveyux commented on issue: [2763](https://github.com/hackforla/website/issues/2763#issuecomment-1104438812) at 2022-04-20 01:43 PM PDT -SuyashOP-2,2023-12-09T04:56:14Z,- SuyashOP-2 commented on issue: [5973](https://github.com/hackforla/website/issues/5973#issuecomment-1848231683) at 2023-12-08 08:56 PM PST -Swaroopa-Shigli,5347,SKILLS ISSUE -Swaroopa-Shigli,2023-08-30T03:19:49Z,- Swaroopa-Shigli opened issue: [5347](https://github.com/hackforla/website/issues/5347) at 2023-08-29 08:19 PM PDT -Swaroopa-Shigli,2024-02-13T21:41:18Z,- Swaroopa-Shigli assigned to issue: [5347](https://github.com/hackforla/website/issues/5347#event-11651622082) at 2024-02-13 01:41 PM PST -switchzer0,2019-07-02T03:07:42Z,- switchzer0 commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-507500017) at 2019-07-01 08:07 PM PDT -switchzer0,2019-07-02T23:14:14Z,- switchzer0 commented on issue: [103](https://github.com/hackforla/website/issues/103#issuecomment-507878084) at 2019-07-02 04:14 PM PDT -switchzer0,2019-07-02T23:28:47Z,- switchzer0 commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-507881059) at 2019-07-02 04:28 PM PDT -switchzer0,2019-07-02T23:37:26Z,- switchzer0 commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-507882636) at 2019-07-02 04:37 PM PDT -switchzer0,2020-07-05T16:46:11Z,- switchzer0 assigned to issue: [275](https://github.com/hackforla/website/issues/275#issuecomment-616288864) at 2020-07-05 09:46 AM PDT -switchzer0,2020-07-15T22:45:35Z,- switchzer0 closed issue as completed: [275](https://github.com/hackforla/website/issues/275#event-3550639633) at 2020-07-15 03:45 PM PDT -switchzer0,2020-12-08T21:43:23Z,- switchzer0 closed issue as completed: [275](https://github.com/hackforla/website/issues/275#event-4086892994) at 2020-12-08 01:43 PM PST -syamjir,2024-10-23T21:55:11Z,- syamjir opened pull request: [7630](https://github.com/hackforla/website/pull/7630) at 2024-10-23 02:55 PM PDT -syamjir,2024-10-23T21:55:25Z,- syamjir pull request closed w/o merging: [7630](https://github.com/hackforla/website/pull/7630#event-14831922693) at 2024-10-23 02:55 PM PDT -syamjir,2024-10-25T13:55:59Z,- syamjir commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437849552) at 2024-10-25 06:55 AM PDT -syamjir,2024-10-25T14:33:53Z,- syamjir commented on issue: [7629](https://github.com/hackforla/website/issues/7629#issuecomment-2437986590) at 2024-10-25 07:33 AM PDT -sydneywalcoff,2519,SKILLS ISSUE -sydneywalcoff,2021-11-30T03:40:03Z,- sydneywalcoff opened issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:40 PM PST -sydneywalcoff,2021-11-30T03:40:04Z,- sydneywalcoff assigned to issue: [2519](https://github.com/hackforla/website/issues/2519) at 2021-11-29 07:40 PM PST -sydneywalcoff,2021-12-01T18:52:07Z,- sydneywalcoff assigned to issue: [2443](https://github.com/hackforla/website/issues/2443#issuecomment-960383604) at 2021-12-01 10:52 AM PST -sydneywalcoff,2021-12-01T18:59:36Z,- sydneywalcoff commented on issue: [2443](https://github.com/hackforla/website/issues/2443#issuecomment-983962881) at 2021-12-01 10:59 AM PST -sydneywalcoff,2021-12-01T19:23:52Z,- sydneywalcoff opened pull request: [2526](https://github.com/hackforla/website/pull/2526) at 2021-12-01 11:23 AM PST -sydneywalcoff,2021-12-03T18:39:34Z,- sydneywalcoff commented on issue: [2519](https://github.com/hackforla/website/issues/2519#issuecomment-985743643) at 2021-12-03 10:39 AM PST -sydneywalcoff,2021-12-03T19:38:51Z,- sydneywalcoff submitted pull request review: [2532](https://github.com/hackforla/website/pull/2532#pullrequestreview-823019908) at 2021-12-03 11:38 AM PST -sydneywalcoff,2021-12-04T23:40:27Z,- sydneywalcoff pull request merged: [2526](https://github.com/hackforla/website/pull/2526#event-5716173639) at 2021-12-04 03:40 PM PST -sydneywalcoff,2021-12-08T22:22:09Z,- sydneywalcoff closed issue as completed: [2519](https://github.com/hackforla/website/issues/2519#event-5736957363) at 2021-12-08 02:22 PM PST -sydneywalcoff,2021-12-08T22:28:28Z,- sydneywalcoff assigned to issue: [2236](https://github.com/hackforla/website/issues/2236) at 2021-12-08 02:28 PM PST -sydneywalcoff,2021-12-08T22:30:44Z,- sydneywalcoff commented on issue: [2236](https://github.com/hackforla/website/issues/2236#issuecomment-989280151) at 2021-12-08 02:30 PM PST -sydneywalcoff,2021-12-08T23:56:21Z,- sydneywalcoff opened pull request: [2564](https://github.com/hackforla/website/pull/2564) at 2021-12-08 03:56 PM PST -sydneywalcoff,2021-12-09T22:54:23Z,- sydneywalcoff pull request merged: [2564](https://github.com/hackforla/website/pull/2564#event-5744200757) at 2021-12-09 02:54 PM PST -sydneywalcoff,2021-12-09T23:07:34Z,- sydneywalcoff assigned to issue: [2396](https://github.com/hackforla/website/issues/2396#issuecomment-956040984) at 2021-12-09 03:07 PM PST -sydneywalcoff,2021-12-09T23:11:51Z,- sydneywalcoff commented on issue: [2396](https://github.com/hackforla/website/issues/2396#issuecomment-990388395) at 2021-12-09 03:11 PM PST -sydneywalcoff,2021-12-10T18:59:56Z,- sydneywalcoff opened pull request: [2574](https://github.com/hackforla/website/pull/2574) at 2021-12-10 10:59 AM PST -sydneywalcoff,2021-12-13T19:34:33Z,- sydneywalcoff commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-992803697) at 2021-12-13 11:34 AM PST -sydneywalcoff,2021-12-13T21:23:42Z,- sydneywalcoff submitted pull request review: [2584](https://github.com/hackforla/website/pull/2584#pullrequestreview-830770824) at 2021-12-13 01:23 PM PST -sydneywalcoff,2021-12-14T00:07:59Z,- sydneywalcoff assigned to issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-987538036) at 2021-12-13 04:07 PM PST -sydneywalcoff,2021-12-14T00:10:32Z,- sydneywalcoff commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-993025808) at 2021-12-13 04:10 PM PST -sydneywalcoff,2021-12-14T03:46:49Z,- sydneywalcoff commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-993129647) at 2021-12-13 07:46 PM PST -sydneywalcoff,2021-12-15T02:12:42Z,- sydneywalcoff pull request merged: [2574](https://github.com/hackforla/website/pull/2574#event-5768315053) at 2021-12-14 06:12 PM PST -sydneywalcoff,2021-12-16T03:02:49Z,- sydneywalcoff commented on pull request: [2584](https://github.com/hackforla/website/pull/2584#issuecomment-995395789) at 2021-12-15 07:02 PM PST -sydneywalcoff,2021-12-16T17:51:24Z,- sydneywalcoff submitted pull request review: [2584](https://github.com/hackforla/website/pull/2584#pullrequestreview-834423458) at 2021-12-16 09:51 AM PST -sydneywalcoff,2021-12-16T17:52:10Z,- sydneywalcoff commented on issue: [2552](https://github.com/hackforla/website/issues/2552#issuecomment-996045218) at 2021-12-16 09:52 AM PST -sydneywalcoff,2021-12-16T19:14:39Z,- sydneywalcoff opened pull request: [2593](https://github.com/hackforla/website/pull/2593) at 2021-12-16 11:14 AM PST -sydneywalcoff,2021-12-16T19:15:15Z,- sydneywalcoff commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-996104386) at 2021-12-16 11:15 AM PST -sydneywalcoff,2021-12-16T21:11:24Z,- sydneywalcoff submitted pull request review: [2584](https://github.com/hackforla/website/pull/2584#pullrequestreview-834608407) at 2021-12-16 01:11 PM PST -sydneywalcoff,2021-12-17T18:58:36Z,- sydneywalcoff commented on pull request: [2594](https://github.com/hackforla/website/pull/2594#issuecomment-996956603) at 2021-12-17 10:58 AM PST -sydneywalcoff,2021-12-17T19:43:20Z,- sydneywalcoff submitted pull request review: [2594](https://github.com/hackforla/website/pull/2594#pullrequestreview-835584018) at 2021-12-17 11:43 AM PST -sydneywalcoff,2021-12-19T17:47:16Z,- sydneywalcoff commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-997432698) at 2021-12-19 09:47 AM PST -sydneywalcoff,2021-12-19T19:25:18Z,- sydneywalcoff assigned to issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-968551127) at 2021-12-19 11:25 AM PST -sydneywalcoff,2021-12-20T20:21:02Z,- sydneywalcoff commented on pull request: [2593](https://github.com/hackforla/website/pull/2593#issuecomment-998242276) at 2021-12-20 12:21 PM PST -sydneywalcoff,2021-12-20T21:01:30Z,- sydneywalcoff commented on issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-998265721) at 2021-12-20 01:01 PM PST -sydneywalcoff,2021-12-21T08:57:45Z,- sydneywalcoff pull request merged: [2593](https://github.com/hackforla/website/pull/2593#event-5797501277) at 2021-12-21 12:57 AM PST -sydneywalcoff,2021-12-23T21:18:13Z,- sydneywalcoff commented on issue: [2488](https://github.com/hackforla/website/issues/2488#issuecomment-1000527626) at 2021-12-23 01:18 PM PST -sydneywalcoff,2021-12-29T23:23:52Z,- sydneywalcoff commented on pull request: [2640](https://github.com/hackforla/website/pull/2640#issuecomment-1002811363) at 2021-12-29 03:23 PM PST -sydneywalcoff,2021-12-30T21:52:00Z,- sydneywalcoff opened pull request: [2646](https://github.com/hackforla/website/pull/2646) at 2021-12-30 01:52 PM PST -sydneywalcoff,2021-12-30T22:03:49Z,- sydneywalcoff submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-842102507) at 2021-12-30 02:03 PM PST -sydneywalcoff,2021-12-31T17:04:36Z,- sydneywalcoff submitted pull request review: [2640](https://github.com/hackforla/website/pull/2640#pullrequestreview-842282941) at 2021-12-31 09:04 AM PST -sydneywalcoff,2021-12-31T17:10:19Z,- sydneywalcoff commented on pull request: [2644](https://github.com/hackforla/website/pull/2644#issuecomment-1003420216) at 2021-12-31 09:10 AM PST -sydneywalcoff,2022-01-04T18:21:42Z,- sydneywalcoff submitted pull request review: [2647](https://github.com/hackforla/website/pull/2647#pullrequestreview-843872369) at 2022-01-04 10:21 AM PST -sydneywalcoff,2022-01-04T19:14:07Z,- sydneywalcoff submitted pull request review: [2644](https://github.com/hackforla/website/pull/2644#pullrequestreview-843917142) at 2022-01-04 11:14 AM PST -sydneywalcoff,2022-01-05T17:03:22Z,- sydneywalcoff commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1005906226) at 2022-01-05 09:03 AM PST -sydneywalcoff,2022-01-07T19:52:18Z,- sydneywalcoff commented on pull request: [2646](https://github.com/hackforla/website/pull/2646#issuecomment-1007692742) at 2022-01-07 11:52 AM PST -sydneywalcoff,2022-01-08T23:18:43Z,- sydneywalcoff pull request merged: [2646](https://github.com/hackforla/website/pull/2646#event-5861725852) at 2022-01-08 03:18 PM PST -sydneywalcoff,2022-01-09T19:45:39Z,- sydneywalcoff assigned to issue: [2629](https://github.com/hackforla/website/issues/2629#issuecomment-1002334995) at 2022-01-09 11:45 AM PST -sydneywalcoff,2022-01-10T01:07:12Z,- sydneywalcoff opened pull request: [2682](https://github.com/hackforla/website/pull/2682) at 2022-01-09 05:07 PM PST -sydneywalcoff,2022-01-11T21:05:15Z,- sydneywalcoff submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-849725639) at 2022-01-11 01:05 PM PST -sydneywalcoff,2022-01-14T02:03:39Z,- sydneywalcoff submitted pull request review: [2665](https://github.com/hackforla/website/pull/2665#pullrequestreview-852422133) at 2022-01-13 06:03 PM PST -sydneywalcoff,2022-01-20T19:28:37Z,- sydneywalcoff commented on pull request: [2682](https://github.com/hackforla/website/pull/2682#issuecomment-1017848978) at 2022-01-20 11:28 AM PST -sydneywalcoff,2022-01-23T07:06:49Z,- sydneywalcoff pull request merged: [2682](https://github.com/hackforla/website/pull/2682#event-5937857069) at 2022-01-22 11:06 PM PST -sydneywalcoff,2024-08-20T18:36:07Z,- sydneywalcoff opened issue: [7321](https://github.com/hackforla/website/issues/7321) at 2024-08-20 11:36 AM PDT -sylvia-nam,2024-04-05T18:39:04Z,- sylvia-nam opened issue: [6579](https://github.com/hackforla/website/issues/6579) at 2024-04-05 11:39 AM PDT -sylvia-nam,2024-04-05T18:40:41Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2040418763) at 2024-04-05 11:40 AM PDT -sylvia-nam,2024-04-05T18:41:15Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2040420011) at 2024-04-05 11:41 AM PDT -sylvia-nam,2024-04-09T01:15:40Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2043961783) at 2024-04-08 06:15 PM PDT -sylvia-nam,2024-04-21T19:45:44Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2068178284) at 2024-04-21 12:45 PM PDT -sylvia-nam,2024-05-18T05:32:58Z,- sylvia-nam opened issue: [6859](https://github.com/hackforla/website/issues/6859) at 2024-05-17 10:32 PM PDT -sylvia-nam,2024-05-18T05:35:05Z,- sylvia-nam commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2118649887) at 2024-05-17 10:35 PM PDT -sylvia-nam,2024-05-21T16:21:03Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2122992140) at 2024-05-21 09:21 AM PDT -sylvia-nam,2024-06-03T02:39:04Z,- sylvia-nam commented on issue: [6859](https://github.com/hackforla/website/issues/6859#issuecomment-2144174890) at 2024-06-02 07:39 PM PDT -sylvia-nam,2024-09-15T05:08:46Z,- sylvia-nam commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2351375119) at 2024-09-14 10:08 PM PDT -SZwerling,3690,SKILLS ISSUE -SZwerling,2022-11-02T20:55:12Z,- SZwerling opened issue: [3690](https://github.com/hackforla/website/issues/3690) at 2022-11-02 01:55 PM PDT -SZwerling,2022-11-02T20:55:12Z,- SZwerling assigned to issue: [3690](https://github.com/hackforla/website/issues/3690) at 2022-11-02 01:55 PM PDT -SZwerling,2022-11-08T23:42:36Z,- SZwerling assigned to issue: [2859](https://github.com/hackforla/website/issues/2859#issuecomment-1048437771) at 2022-11-08 03:42 PM PST -SZwerling,2022-11-08T23:53:42Z,- SZwerling commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1307994213) at 2022-11-08 03:53 PM PST -SZwerling,2022-11-08T23:53:53Z,- SZwerling commented on issue: [2859](https://github.com/hackforla/website/issues/2859#issuecomment-1307994312) at 2022-11-08 03:53 PM PST -SZwerling,2022-11-09T00:23:14Z,- SZwerling opened pull request: [3703](https://github.com/hackforla/website/pull/3703) at 2022-11-08 04:23 PM PST -SZwerling,2022-11-10T18:47:08Z,- SZwerling pull request merged: [3703](https://github.com/hackforla/website/pull/3703#event-7786122481) at 2022-11-10 10:47 AM PST -SZwerling,2022-11-19T00:50:01Z,- SZwerling assigned to issue: [3212](https://github.com/hackforla/website/issues/3212#issuecomment-1145854267) at 2022-11-18 04:50 PM PST -SZwerling,2022-11-20T01:07:15Z,- SZwerling opened pull request: [3733](https://github.com/hackforla/website/pull/3733) at 2022-11-19 05:07 PM PST -SZwerling,2022-11-20T21:10:15Z,- SZwerling pull request merged: [3733](https://github.com/hackforla/website/pull/3733#event-7852205285) at 2022-11-20 01:10 PM PST -SZwerling,2022-11-21T23:17:59Z,- SZwerling pull request merged: [3733](https://github.com/hackforla/website/pull/3733#event-7861975132) at 2022-11-21 03:17 PM PST -SZwerling,2022-12-01T17:13:05Z,- SZwerling assigned to issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1333602077) at 2022-12-01 09:13 AM PST -SZwerling,2022-12-02T17:14:57Z,- SZwerling commented on issue: [3416](https://github.com/hackforla/website/issues/3416#issuecomment-1335555434) at 2022-12-02 09:14 AM PST -SZwerling,2022-12-02T21:55:17Z,- SZwerling opened pull request: [3764](https://github.com/hackforla/website/pull/3764) at 2022-12-02 01:55 PM PST -SZwerling,2022-12-06T18:23:38Z,- SZwerling pull request merged: [3764](https://github.com/hackforla/website/pull/3764#event-7969533967) at 2022-12-06 10:23 AM PST -SZwerling,2022-12-13T01:31:29Z,- SZwerling assigned to issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1333387663) at 2022-12-12 05:31 PM PST -SZwerling,2022-12-13T01:36:01Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1347623048) at 2022-12-12 05:36 PM PST -SZwerling,2022-12-15T02:52:11Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1352489829) at 2022-12-14 06:52 PM PST -SZwerling,2022-12-24T02:18:13Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1364441079) at 2022-12-23 06:18 PM PST -SZwerling,2022-12-24T02:20:53Z,- SZwerling commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1364441536) at 2022-12-23 06:20 PM PST -SZwerling,2023-01-12T22:06:04Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1381045318) at 2023-01-12 02:06 PM PST -SZwerling,2023-01-12T22:06:04Z,- SZwerling closed issue by PR 3844: [3738](https://github.com/hackforla/website/issues/3738#event-8215711858) at 2023-01-12 02:06 PM PST -SZwerling,2023-01-15T17:38:20Z,- SZwerling commented on issue: [3738](https://github.com/hackforla/website/issues/3738#issuecomment-1383208824) at 2023-01-15 09:38 AM PST -SZwerling,2023-01-19T22:17:28Z,- SZwerling opened pull request: [3844](https://github.com/hackforla/website/pull/3844) at 2023-01-19 02:17 PM PST -SZwerling,2023-01-27T23:59:34Z,- SZwerling commented on issue: [3690](https://github.com/hackforla/website/issues/3690#issuecomment-1407202080) at 2023-01-27 03:59 PM PST -SZwerling,2023-01-28T00:09:33Z,- SZwerling commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1407207169) at 2023-01-27 04:09 PM PST -SZwerling,2023-02-11T20:28:54Z,- SZwerling commented on pull request: [3844](https://github.com/hackforla/website/pull/3844#issuecomment-1426870395) at 2023-02-11 12:28 PM PST -SZwerling,2023-02-14T00:26:20Z,- SZwerling pull request merged: [3844](https://github.com/hackforla/website/pull/3844#event-8510149966) at 2023-02-13 04:26 PM PST -t-will-gillis,3613,SKILLS ISSUE -t-will-gillis,2022-10-11T02:55:45Z,- t-will-gillis opened issue: [3613](https://github.com/hackforla/website/issues/3613) at 2022-10-10 07:55 PM PDT -t-will-gillis,2022-10-12T20:15:58Z,- t-will-gillis assigned to issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1046376579) at 2022-10-12 01:15 PM PDT -t-will-gillis,2022-10-12T20:20:16Z,- t-will-gillis assigned to issue: [3613](https://github.com/hackforla/website/issues/3613) at 2022-10-12 01:20 PM PDT -t-will-gillis,2022-10-15T22:48:51Z,- t-will-gillis commented on issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1279846076) at 2022-10-15 03:48 PM PDT -t-will-gillis,2022-10-15T23:04:22Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1279848012) at 2022-10-15 04:04 PM PDT -t-will-gillis,2022-10-16T01:10:05Z,- t-will-gillis opened pull request: [3625](https://github.com/hackforla/website/pull/3625) at 2022-10-15 06:10 PM PDT -t-will-gillis,2022-10-16T01:27:27Z,- t-will-gillis commented on issue: [2823](https://github.com/hackforla/website/issues/2823#issuecomment-1279867171) at 2022-10-15 06:27 PM PDT -t-will-gillis,2022-10-17T20:40:20Z,- t-will-gillis pull request merged: [3625](https://github.com/hackforla/website/pull/3625#event-7605729376) at 2022-10-17 01:40 PM PDT -t-will-gillis,2022-10-17T23:17:34Z,- t-will-gillis assigned to issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1145817335) at 2022-10-17 04:17 PM PDT -t-will-gillis,2022-10-17T23:30:51Z,- t-will-gillis commented on issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1281627826) at 2022-10-17 04:30 PM PDT -t-will-gillis,2022-10-19T05:17:55Z,- t-will-gillis opened pull request: [3642](https://github.com/hackforla/website/pull/3642) at 2022-10-18 10:17 PM PDT -t-will-gillis,2022-10-19T05:22:41Z,- t-will-gillis commented on issue: [3204](https://github.com/hackforla/website/issues/3204#issuecomment-1283446554) at 2022-10-18 10:22 PM PDT -t-will-gillis,2022-10-19T18:05:20Z,- t-will-gillis commented on pull request: [3633](https://github.com/hackforla/website/pull/3633#issuecomment-1284387399) at 2022-10-19 11:05 AM PDT -t-will-gillis,2022-10-19T20:20:51Z,- t-will-gillis submitted pull request review: [3633](https://github.com/hackforla/website/pull/3633#pullrequestreview-1148222263) at 2022-10-19 01:20 PM PDT -t-will-gillis,2022-10-20T00:52:34Z,- t-will-gillis pull request merged: [3642](https://github.com/hackforla/website/pull/3642#event-7626237742) at 2022-10-19 05:52 PM PDT -t-will-gillis,2022-10-24T16:36:34Z,- t-will-gillis commented on pull request: [3652](https://github.com/hackforla/website/pull/3652#issuecomment-1289298561) at 2022-10-24 09:36 AM PDT -t-will-gillis,2022-10-24T22:29:47Z,- t-will-gillis submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1153888606) at 2022-10-24 03:29 PM PDT -t-will-gillis,2022-10-24T22:51:48Z,- t-will-gillis commented on pull request: [3650](https://github.com/hackforla/website/pull/3650#issuecomment-1289731280) at 2022-10-24 03:51 PM PDT -t-will-gillis,2022-10-24T22:58:16Z,- t-will-gillis submitted pull request review: [3650](https://github.com/hackforla/website/pull/3650#pullrequestreview-1153914568) at 2022-10-24 03:58 PM PDT -t-will-gillis,2022-10-24T23:01:22Z,- t-will-gillis submitted pull request review: [3650](https://github.com/hackforla/website/pull/3650#pullrequestreview-1153916603) at 2022-10-24 04:01 PM PDT -t-will-gillis,2022-10-25T01:26:22Z,- t-will-gillis assigned to issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1289624054) at 2022-10-24 06:26 PM PDT -t-will-gillis,2022-10-25T01:31:00Z,- t-will-gillis commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1289858453) at 2022-10-24 06:31 PM PDT -t-will-gillis,2022-10-26T21:00:36Z,- t-will-gillis commented on pull request: [3660](https://github.com/hackforla/website/pull/3660#issuecomment-1292647311) at 2022-10-26 02:00 PM PDT -t-will-gillis,2022-10-27T17:10:57Z,- t-will-gillis submitted pull request review: [3652](https://github.com/hackforla/website/pull/3652#pullrequestreview-1158695193) at 2022-10-27 10:10 AM PDT -t-will-gillis,2022-10-27T18:57:22Z,- t-will-gillis submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1158890392) at 2022-10-27 11:57 AM PDT -t-will-gillis,2022-10-27T20:28:53Z,- t-will-gillis submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1159006130) at 2022-10-27 01:28 PM PDT -t-will-gillis,2022-10-28T01:43:56Z,- t-will-gillis submitted pull request review: [3660](https://github.com/hackforla/website/pull/3660#pullrequestreview-1159250716) at 2022-10-27 06:43 PM PDT -t-will-gillis,2022-10-30T19:06:35Z,- t-will-gillis commented on issue: [3492](https://github.com/hackforla/website/issues/3492#issuecomment-1296329042) at 2022-10-30 12:06 PM PDT -t-will-gillis,2022-10-31T01:50:14Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1296437237) at 2022-10-30 06:50 PM PDT -t-will-gillis,2022-11-06T02:31:54Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1304699748) at 2022-11-05 06:31 PM PST -t-will-gillis,2022-11-06T22:14:11Z,- t-will-gillis commented on pull request: [3696](https://github.com/hackforla/website/pull/3696#issuecomment-1304908014) at 2022-11-06 02:14 PM PST -t-will-gillis,2022-11-06T23:33:54Z,- t-will-gillis submitted pull request review: [3696](https://github.com/hackforla/website/pull/3696#pullrequestreview-1169672923) at 2022-11-06 03:33 PM PST -t-will-gillis,2022-11-14T18:55:41Z,- t-will-gillis assigned to issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1311289580) at 2022-11-14 10:55 AM PST -t-will-gillis,2022-11-14T18:57:38Z,- t-will-gillis unassigned from issue: [2904](https://github.com/hackforla/website/issues/2904#issuecomment-1311289580) at 2022-11-14 10:57 AM PST -t-will-gillis,2022-11-15T01:48:52Z,- t-will-gillis commented on pull request: [3717](https://github.com/hackforla/website/pull/3717#issuecomment-1314645442) at 2022-11-14 05:48 PM PST -t-will-gillis,2022-11-15T05:31:03Z,- t-will-gillis submitted pull request review: [3717](https://github.com/hackforla/website/pull/3717#pullrequestreview-1180221271) at 2022-11-14 09:31 PM PST -t-will-gillis,2022-11-18T00:54:42Z,- t-will-gillis commented on pull request: [3729](https://github.com/hackforla/website/pull/3729#issuecomment-1319410465) at 2022-11-17 04:54 PM PST -t-will-gillis,2022-11-18T03:42:30Z,- t-will-gillis commented on pull request: [3730](https://github.com/hackforla/website/pull/3730#issuecomment-1319504121) at 2022-11-17 07:42 PM PST -t-will-gillis,2022-11-18T20:10:20Z,- t-will-gillis submitted pull request review: [3730](https://github.com/hackforla/website/pull/3730#pullrequestreview-1186718462) at 2022-11-18 12:10 PM PST -t-will-gillis,2022-11-18T20:27:37Z,- t-will-gillis submitted pull request review: [3729](https://github.com/hackforla/website/pull/3729#pullrequestreview-1186736619) at 2022-11-18 12:27 PM PST -t-will-gillis,2022-11-18T20:39:19Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1320500683) at 2022-11-18 12:39 PM PST -t-will-gillis,2022-11-25T19:06:17Z,- t-will-gillis commented on pull request: [3745](https://github.com/hackforla/website/pull/3745#issuecomment-1327796408) at 2022-11-25 11:06 AM PST -t-will-gillis,2022-11-25T19:23:52Z,- t-will-gillis submitted pull request review: [3745](https://github.com/hackforla/website/pull/3745#pullrequestreview-1194727792) at 2022-11-25 11:23 AM PST -t-will-gillis,2022-12-03T17:48:35Z,- t-will-gillis commented on pull request: [3762](https://github.com/hackforla/website/pull/3762#issuecomment-1336206717) at 2022-12-03 09:48 AM PST -t-will-gillis,2022-12-04T00:57:07Z,- t-will-gillis submitted pull request review: [3762](https://github.com/hackforla/website/pull/3762#pullrequestreview-1203588437) at 2022-12-03 04:57 PM PST -t-will-gillis,2022-12-04T00:58:45Z,- t-will-gillis commented on pull request: [3764](https://github.com/hackforla/website/pull/3764#issuecomment-1336290525) at 2022-12-03 04:58 PM PST -t-will-gillis,2022-12-05T22:23:19Z,- t-will-gillis submitted pull request review: [3764](https://github.com/hackforla/website/pull/3764#pullrequestreview-1205391957) at 2022-12-05 02:23 PM PST -t-will-gillis,2022-12-05T23:10:45Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1338314754) at 2022-12-05 03:10 PM PST -t-will-gillis,2022-12-07T19:35:59Z,- t-will-gillis commented on pull request: [3767](https://github.com/hackforla/website/pull/3767#issuecomment-1341491728) at 2022-12-07 11:35 AM PST -t-will-gillis,2022-12-09T02:51:33Z,- t-will-gillis submitted pull request review: [3767](https://github.com/hackforla/website/pull/3767#pullrequestreview-1211070907) at 2022-12-08 06:51 PM PST -t-will-gillis,2023-01-01T23:44:23Z,- t-will-gillis commented on issue: [3613](https://github.com/hackforla/website/issues/3613#issuecomment-1368567409) at 2023-01-01 03:44 PM PST -t-will-gillis,2023-01-11T19:09:14Z,- t-will-gillis commented on pull request: [3809](https://github.com/hackforla/website/pull/3809#issuecomment-1379358308) at 2023-01-11 11:09 AM PST -t-will-gillis,2023-01-11T21:42:51Z,- t-will-gillis submitted pull request review: [3809](https://github.com/hackforla/website/pull/3809#pullrequestreview-1244655150) at 2023-01-11 01:42 PM PST -t-will-gillis,2023-01-17T23:22:37Z,- t-will-gillis submitted pull request review: [3833](https://github.com/hackforla/website/pull/3833#pullrequestreview-1252600714) at 2023-01-17 03:22 PM PST -t-will-gillis,2023-01-21T04:28:13Z,- t-will-gillis opened pull request: [3846](https://github.com/hackforla/website/pull/3846) at 2023-01-20 08:28 PM PST -t-will-gillis,2023-01-22T01:18:05Z,- t-will-gillis submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1264707115) at 2023-01-21 05:18 PM PST -t-will-gillis,2023-01-22T20:10:54Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1399594963) at 2023-01-22 12:10 PM PST -t-will-gillis,2023-01-22T22:36:49Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1399627850) at 2023-01-22 02:36 PM PST -t-will-gillis,2023-01-22T23:47:48Z,- t-will-gillis commented on pull request: [3839](https://github.com/hackforla/website/pull/3839#issuecomment-1399644149) at 2023-01-22 03:47 PM PST -t-will-gillis,2023-01-24T19:26:50Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1402477056) at 2023-01-24 11:26 AM PST -t-will-gillis,2023-01-24T19:26:50Z,- t-will-gillis pull request closed w/o merging: [3846](https://github.com/hackforla/website/pull/3846#event-8347567399) at 2023-01-24 11:26 AM PST -t-will-gillis,2023-01-24T20:00:26Z,- t-will-gillis opened pull request: [3867](https://github.com/hackforla/website/pull/3867) at 2023-01-24 12:00 PM PST -t-will-gillis,2023-01-24T20:03:25Z,- t-will-gillis commented on pull request: [3867](https://github.com/hackforla/website/pull/3867#issuecomment-1402546208) at 2023-01-24 12:03 PM PST -t-will-gillis,2023-01-25T06:25:44Z,- t-will-gillis submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1268763999) at 2023-01-24 10:25 PM PST -t-will-gillis,2023-01-27T00:23:39Z,- t-will-gillis pull request merged: [3867](https://github.com/hackforla/website/pull/3867#event-8368983244) at 2023-01-26 04:23 PM PST -t-will-gillis,2023-01-30T05:38:12Z,- t-will-gillis opened pull request: [3897](https://github.com/hackforla/website/pull/3897) at 2023-01-29 09:38 PM PST -t-will-gillis,2023-01-30T20:07:21Z,- t-will-gillis submitted pull request review: [3894](https://github.com/hackforla/website/pull/3894#pullrequestreview-1275933156) at 2023-01-30 12:07 PM PST -t-will-gillis,2023-01-30T23:04:46Z,- t-will-gillis submitted pull request review: [3896](https://github.com/hackforla/website/pull/3896#pullrequestreview-1276165439) at 2023-01-30 03:04 PM PST -t-will-gillis,2023-02-01T01:57:46Z,- t-will-gillis pull request merged: [3897](https://github.com/hackforla/website/pull/3897#event-8405447681) at 2023-01-31 05:57 PM PST -t-will-gillis,2023-02-01T04:27:44Z,- t-will-gillis submitted pull request review: [3839](https://github.com/hackforla/website/pull/3839#pullrequestreview-1278414613) at 2023-01-31 08:27 PM PST -t-will-gillis,2023-02-16T23:52:05Z,- t-will-gillis commented on pull request: [3984](https://github.com/hackforla/website/pull/3984#issuecomment-1433897076) at 2023-02-16 03:52 PM PST -t-will-gillis,2023-02-18T07:02:24Z,- t-will-gillis submitted pull request review: [3984](https://github.com/hackforla/website/pull/3984#pullrequestreview-1304488763) at 2023-02-17 11:02 PM PST -t-will-gillis,2023-02-19T17:50:02Z,- t-will-gillis closed issue by PR 3984: [2625](https://github.com/hackforla/website/issues/2625#event-8555686659) at 2023-02-19 09:50 AM PST -t-will-gillis,2023-02-20T05:24:44Z,- t-will-gillis submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1305081564) at 2023-02-19 09:24 PM PST -t-will-gillis,2023-02-20T05:42:37Z,- t-will-gillis submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1305094128) at 2023-02-19 09:42 PM PST -t-will-gillis,2023-02-21T01:10:00Z,- t-will-gillis submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1306487662) at 2023-02-20 05:10 PM PST -t-will-gillis,2023-02-21T01:15:20Z,- t-will-gillis closed issue by PR 3994: [3546](https://github.com/hackforla/website/issues/3546#event-8565955289) at 2023-02-20 05:15 PM PST -t-will-gillis,2023-02-26T02:36:41Z,- t-will-gillis opened issue: [4050](https://github.com/hackforla/website/issues/4050) at 2023-02-25 06:36 PM PST -t-will-gillis,2023-02-26T20:48:02Z,- t-will-gillis assigned to issue: [3635](https://github.com/hackforla/website/issues/3635) at 2023-02-26 12:48 PM PST -t-will-gillis,2023-02-26T20:54:06Z,- t-will-gillis commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1445464551) at 2023-02-26 12:54 PM PST -t-will-gillis,2023-02-26T22:55:31Z,- t-will-gillis submitted pull request review: [3962](https://github.com/hackforla/website/pull/3962#pullrequestreview-1314744987) at 2023-02-26 02:55 PM PST -t-will-gillis,2023-02-26T22:55:50Z,- t-will-gillis closed issue by PR 3962: [3875](https://github.com/hackforla/website/issues/3875#event-8610340321) at 2023-02-26 02:55 PM PST -t-will-gillis,2023-02-26T23:09:28Z,- t-will-gillis commented on pull request: [4052](https://github.com/hackforla/website/pull/4052#issuecomment-1445494398) at 2023-02-26 03:09 PM PST -t-will-gillis,2023-02-27T03:29:21Z,- t-will-gillis submitted pull request review: [4052](https://github.com/hackforla/website/pull/4052#pullrequestreview-1314847858) at 2023-02-26 07:29 PM PST -t-will-gillis,2023-02-27T15:56:34Z,- t-will-gillis closed issue by PR 4052: [4028](https://github.com/hackforla/website/issues/4028#event-8617363237) at 2023-02-27 07:56 AM PST -t-will-gillis,2023-02-28T18:37:11Z,- t-will-gillis submitted pull request review: [4057](https://github.com/hackforla/website/pull/4057#pullrequestreview-1318300080) at 2023-02-28 10:37 AM PST -t-will-gillis,2023-02-28T18:37:24Z,- t-will-gillis closed issue by PR 4057: [4055](https://github.com/hackforla/website/issues/4055#event-8630188473) at 2023-02-28 10:37 AM PST -t-will-gillis,2023-03-01T23:24:30Z,- t-will-gillis commented on pull request: [4078](https://github.com/hackforla/website/pull/4078#issuecomment-1451020073) at 2023-03-01 03:24 PM PST -t-will-gillis,2023-03-04T21:18:55Z,- t-will-gillis commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1454888886) at 2023-03-04 01:18 PM PST -t-will-gillis,2023-03-05T02:27:18Z,- t-will-gillis submitted pull request review: [4078](https://github.com/hackforla/website/pull/4078#pullrequestreview-1325146112) at 2023-03-04 06:27 PM PST -t-will-gillis,2023-03-05T19:51:35Z,- t-will-gillis submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1325268556) at 2023-03-05 11:51 AM PST -t-will-gillis,2023-03-05T19:52:07Z,- t-will-gillis closed issue by PR 4056: [3757](https://github.com/hackforla/website/issues/3757#event-8668569585) at 2023-03-05 11:52 AM PST -t-will-gillis,2023-03-05T21:00:37Z,- t-will-gillis submitted pull request review: [4094](https://github.com/hackforla/website/pull/4094#pullrequestreview-1325278119) at 2023-03-05 01:00 PM PST -t-will-gillis,2023-03-05T21:00:45Z,- t-will-gillis closed issue by PR 4094: [4081](https://github.com/hackforla/website/issues/4081#event-8668677582) at 2023-03-05 01:00 PM PST -t-will-gillis,2023-03-05T21:16:59Z,- t-will-gillis commented on pull request: [4097](https://github.com/hackforla/website/pull/4097#issuecomment-1455208888) at 2023-03-05 01:16 PM PST -t-will-gillis,2023-03-05T22:00:39Z,- t-will-gillis submitted pull request review: [4103](https://github.com/hackforla/website/pull/4103#pullrequestreview-1325286596) at 2023-03-05 02:00 PM PST -t-will-gillis,2023-03-05T22:18:39Z,- t-will-gillis commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1455224661) at 2023-03-05 02:18 PM PST -t-will-gillis,2023-03-07T01:06:44Z,- t-will-gillis submitted pull request review: [4122](https://github.com/hackforla/website/pull/4122#pullrequestreview-1327470741) at 2023-03-06 05:06 PM PST -t-will-gillis,2023-03-07T18:35:17Z,- t-will-gillis commented on pull request: [4103](https://github.com/hackforla/website/pull/4103#issuecomment-1458644771) at 2023-03-07 10:35 AM PST -t-will-gillis,2023-03-07T18:50:28Z,- t-will-gillis submitted pull request review: [4125](https://github.com/hackforla/website/pull/4125#pullrequestreview-1329306687) at 2023-03-07 10:50 AM PST -t-will-gillis,2023-03-07T18:50:48Z,- t-will-gillis closed issue by PR 4125: [3999](https://github.com/hackforla/website/issues/3999#event-8689318325) at 2023-03-07 10:50 AM PST -t-will-gillis,2023-03-09T21:53:22Z,- t-will-gillis opened issue: [4142](https://github.com/hackforla/website/issues/4142) at 2023-03-09 01:53 PM PST -t-will-gillis,2023-03-10T04:52:17Z,- t-will-gillis commented on pull request: [4137](https://github.com/hackforla/website/pull/4137#issuecomment-1463266696) at 2023-03-09 08:52 PM PST -t-will-gillis,2023-03-11T22:29:14Z,- t-will-gillis commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1465038876) at 2023-03-11 03:29 PM PDT -t-will-gillis,2023-03-12T05:05:46Z,- t-will-gillis commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1465094145) at 2023-03-11 10:05 PM PDT -t-will-gillis,2023-03-12T23:57:45Z,- t-will-gillis submitted pull request review: [4144](https://github.com/hackforla/website/pull/4144#pullrequestreview-1336108171) at 2023-03-12 04:57 PM PDT -t-will-gillis,2023-03-12T23:57:54Z,- t-will-gillis closed issue by PR 4144: [4042](https://github.com/hackforla/website/issues/4042#event-8726533155) at 2023-03-12 04:57 PM PDT -t-will-gillis,2023-03-13T23:48:10Z,- t-will-gillis commented on pull request: [4110](https://github.com/hackforla/website/pull/4110#issuecomment-1467129553) at 2023-03-13 04:48 PM PDT -t-will-gillis,2023-03-15T04:41:40Z,- t-will-gillis submitted pull request review: [4150](https://github.com/hackforla/website/pull/4150#pullrequestreview-1340637888) at 2023-03-14 09:41 PM PDT -t-will-gillis,2023-03-15T04:41:49Z,- t-will-gillis closed issue by PR 4150: [4141](https://github.com/hackforla/website/issues/4141#event-8750936606) at 2023-03-14 09:41 PM PDT -t-will-gillis,2023-03-15T05:06:58Z,- t-will-gillis submitted pull request review: [4156](https://github.com/hackforla/website/pull/4156#pullrequestreview-1340655959) at 2023-03-14 10:06 PM PDT -t-will-gillis,2023-03-15T05:07:07Z,- t-will-gillis closed issue by PR 4156: [4087](https://github.com/hackforla/website/issues/4087#event-8751078833) at 2023-03-14 10:07 PM PDT -t-will-gillis,2023-03-15T05:26:37Z,- t-will-gillis submitted pull request review: [4175](https://github.com/hackforla/website/pull/4175#pullrequestreview-1340671312) at 2023-03-14 10:26 PM PDT -t-will-gillis,2023-03-15T05:27:07Z,- t-will-gillis closed issue by PR 4175: [4014](https://github.com/hackforla/website/issues/4014#event-8751179996) at 2023-03-14 10:27 PM PDT -t-will-gillis,2023-03-15T19:58:04Z,- t-will-gillis commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1470754147) at 2023-03-15 12:58 PM PDT -t-will-gillis,2023-03-16T17:50:55Z,- t-will-gillis commented on issue: [4142](https://github.com/hackforla/website/issues/4142#issuecomment-1472443742) at 2023-03-16 10:50 AM PDT -t-will-gillis,2023-03-18T03:34:51Z,- t-will-gillis submitted pull request review: [4110](https://github.com/hackforla/website/pull/4110#pullrequestreview-1346900782) at 2023-03-17 08:34 PM PDT -t-will-gillis,2023-03-19T16:58:00Z,- t-will-gillis assigned to issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1472550773) at 2023-03-19 09:58 AM PDT -t-will-gillis,2023-03-19T21:24:09Z,- t-will-gillis assigned to issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1472909436) at 2023-03-19 02:24 PM PDT -t-will-gillis,2023-03-19T21:53:39Z,- t-will-gillis commented on issue: [3635](https://github.com/hackforla/website/issues/3635#issuecomment-1475410026) at 2023-03-19 02:53 PM PDT -t-will-gillis,2023-03-20T02:27:14Z,- t-will-gillis closed issue by PR 2: [3635](https://github.com/hackforla/website/issues/3635#event-8789575199) at 2023-03-19 07:27 PM PDT -t-will-gillis,2023-03-20T03:28:40Z,- t-will-gillis submitted pull request review: [4191](https://github.com/hackforla/website/pull/4191#pullrequestreview-1347738011) at 2023-03-19 08:28 PM PDT -t-will-gillis,2023-03-20T03:28:55Z,- t-will-gillis closed issue by PR 4191: [3987](https://github.com/hackforla/website/issues/3987#event-8789834340) at 2023-03-19 08:28 PM PDT -t-will-gillis,2023-03-20T03:50:09Z,- t-will-gillis submitted pull request review: [4203](https://github.com/hackforla/website/pull/4203#pullrequestreview-1347749955) at 2023-03-19 08:50 PM PDT -t-will-gillis,2023-03-20T03:50:25Z,- t-will-gillis closed issue by PR 4203: [3948](https://github.com/hackforla/website/issues/3948#event-8789911053) at 2023-03-19 08:50 PM PDT -t-will-gillis,2023-03-20T04:18:54Z,- t-will-gillis submitted pull request review: [4205](https://github.com/hackforla/website/pull/4205#pullrequestreview-1347765564) at 2023-03-19 09:18 PM PDT -t-will-gillis,2023-03-20T04:25:18Z,- t-will-gillis commented on pull request: [4205](https://github.com/hackforla/website/pull/4205#issuecomment-1475604836) at 2023-03-19 09:25 PM PDT -t-will-gillis,2023-03-20T04:25:29Z,- t-will-gillis closed issue by PR 4205: [3756](https://github.com/hackforla/website/issues/3756#event-8790084215) at 2023-03-19 09:25 PM PDT -t-will-gillis,2023-03-20T04:43:12Z,- t-will-gillis submitted pull request review: [4209](https://github.com/hackforla/website/pull/4209#pullrequestreview-1347777744) at 2023-03-19 09:43 PM PDT -t-will-gillis,2023-03-20T04:43:38Z,- t-will-gillis closed issue by PR 4209: [3966](https://github.com/hackforla/website/issues/3966#event-8790144593) at 2023-03-19 09:43 PM PDT -t-will-gillis,2023-03-20T04:50:48Z,- t-will-gillis commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1475616108) at 2023-03-19 09:50 PM PDT -t-will-gillis,2023-03-20T05:30:25Z,- t-will-gillis submitted pull request review: [4202](https://github.com/hackforla/website/pull/4202#pullrequestreview-1347809091) at 2023-03-19 10:30 PM PDT -t-will-gillis,2023-03-20T05:30:58Z,- t-will-gillis closed issue by PR 4202: [4145](https://github.com/hackforla/website/issues/4145#event-8790364937) at 2023-03-19 10:30 PM PDT -t-will-gillis,2023-03-20T05:57:47Z,- t-will-gillis submitted pull request review: [4210](https://github.com/hackforla/website/pull/4210#pullrequestreview-1347839655) at 2023-03-19 10:57 PM PDT -t-will-gillis,2023-03-20T05:59:03Z,- t-will-gillis closed issue by PR 4210: [3856](https://github.com/hackforla/website/issues/3856#event-8790513417) at 2023-03-19 10:59 PM PDT -t-will-gillis,2023-03-20T16:58:07Z,- t-will-gillis commented on pull request: [4218](https://github.com/hackforla/website/pull/4218#issuecomment-1476604194) at 2023-03-20 09:58 AM PDT -t-will-gillis,2023-03-20T17:03:52Z,- t-will-gillis commented on pull request: [4217](https://github.com/hackforla/website/pull/4217#issuecomment-1476614021) at 2023-03-20 10:03 AM PDT -t-will-gillis,2023-03-22T04:00:02Z,- t-will-gillis commented on issue: [4118](https://github.com/hackforla/website/issues/4118#issuecomment-1478887668) at 2023-03-21 09:00 PM PDT -t-will-gillis,2023-03-22T05:05:04Z,- t-will-gillis opened issue: [4235](https://github.com/hackforla/website/issues/4235) at 2023-03-21 10:05 PM PDT -t-will-gillis,2023-03-22T05:11:25Z,- t-will-gillis opened issue: [4236](https://github.com/hackforla/website/issues/4236) at 2023-03-21 10:11 PM PDT -t-will-gillis,2023-03-22T05:17:57Z,- t-will-gillis unassigned from issue: [2032](https://github.com/hackforla/website/issues/2032#issuecomment-1478698753) at 2023-03-21 10:17 PM PDT -t-will-gillis,2023-03-22T21:25:53Z,- t-will-gillis commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1480281838) at 2023-03-22 02:25 PM PDT -t-will-gillis,2023-03-24T01:36:48Z,- t-will-gillis opened pull request: [4270](https://github.com/hackforla/website/pull/4270) at 2023-03-23 06:36 PM PDT -t-will-gillis,2023-03-24T20:15:24Z,- t-will-gillis opened issue: [4281](https://github.com/hackforla/website/issues/4281) at 2023-03-24 01:15 PM PDT -t-will-gillis,2023-03-24T20:24:29Z,- t-will-gillis closed issue by PR 4234: [4219](https://github.com/hackforla/website/issues/4219#event-8842483499) at 2023-03-24 01:24 PM PDT -t-will-gillis,2023-03-24T20:28:38Z,- t-will-gillis closed issue by PR 4265: [4235](https://github.com/hackforla/website/issues/4235#event-8842509619) at 2023-03-24 01:28 PM PDT -t-will-gillis,2023-03-24T22:19:02Z,- t-will-gillis commented on issue: [4281](https://github.com/hackforla/website/issues/4281#issuecomment-1483502019) at 2023-03-24 03:19 PM PDT -t-will-gillis,2023-03-25T01:29:59Z,- t-will-gillis opened issue: [4284](https://github.com/hackforla/website/issues/4284) at 2023-03-24 06:29 PM PDT -t-will-gillis,2023-03-25T01:39:12Z,- t-will-gillis opened issue: [4286](https://github.com/hackforla/website/issues/4286) at 2023-03-24 06:39 PM PDT -t-will-gillis,2023-03-25T01:55:36Z,- t-will-gillis opened issue: [4287](https://github.com/hackforla/website/issues/4287) at 2023-03-24 06:55 PM PDT -t-will-gillis,2023-03-25T01:58:50Z,- t-will-gillis commented on issue: [4281](https://github.com/hackforla/website/issues/4281#issuecomment-1483678232) at 2023-03-24 06:58 PM PDT -t-will-gillis,2023-03-25T01:58:51Z,- t-will-gillis closed issue as completed: [4281](https://github.com/hackforla/website/issues/4281#event-8844277297) at 2023-03-24 06:58 PM PDT -t-will-gillis,2023-03-25T18:31:05Z,- t-will-gillis commented on pull request: [4288](https://github.com/hackforla/website/pull/4288#issuecomment-1483892012) at 2023-03-25 11:31 AM PDT -t-will-gillis,2023-03-25T18:42:40Z,- t-will-gillis commented on pull request: [4288](https://github.com/hackforla/website/pull/4288#issuecomment-1483894125) at 2023-03-25 11:42 AM PDT -t-will-gillis,2023-03-25T19:06:33Z,- t-will-gillis commented on pull request: [4288](https://github.com/hackforla/website/pull/4288#issuecomment-1483899203) at 2023-03-25 12:06 PM PDT -t-will-gillis,2023-03-25T21:34:42Z,- t-will-gillis commented on pull request: [4272](https://github.com/hackforla/website/pull/4272#issuecomment-1483927179) at 2023-03-25 02:34 PM PDT -t-will-gillis,2023-03-25T22:04:23Z,- t-will-gillis commented on pull request: [4289](https://github.com/hackforla/website/pull/4289#issuecomment-1483932802) at 2023-03-25 03:04 PM PDT -t-will-gillis,2023-03-25T22:17:01Z,- t-will-gillis commented on pull request: [4266](https://github.com/hackforla/website/pull/4266#issuecomment-1483934839) at 2023-03-25 03:17 PM PDT -t-will-gillis,2023-03-25T23:10:25Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1483943633) at 2023-03-25 04:10 PM PDT -t-will-gillis,2023-03-26T16:42:10Z,- t-will-gillis commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 09:42 AM PDT -t-will-gillis,2023-03-26T16:47:37Z,- t-will-gillis closed issue by PR 4267: [4238](https://github.com/hackforla/website/issues/4238#event-8847606286) at 2023-03-26 09:47 AM PDT -t-will-gillis,2023-03-26T16:52:07Z,- t-will-gillis closed issue by PR 4275: [4236](https://github.com/hackforla/website/issues/4236#event-8847612854) at 2023-03-26 09:52 AM PDT -t-will-gillis,2023-03-26T19:13:53Z,- t-will-gillis closed issue by PR 4223: [4010](https://github.com/hackforla/website/issues/4010#event-8847903926) at 2023-03-26 12:13 PM PDT -t-will-gillis,2023-03-26T21:09:03Z,- t-will-gillis submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1358119721) at 2023-03-26 02:09 PM PDT -t-will-gillis,2023-03-26T21:13:55Z,- t-will-gillis submitted pull request review: [4259](https://github.com/hackforla/website/pull/4259#pullrequestreview-1358120948) at 2023-03-26 02:13 PM PDT -t-will-gillis,2023-03-26T21:14:53Z,- t-will-gillis closed issue by PR 4259: [4088](https://github.com/hackforla/website/issues/4088#event-8848133918) at 2023-03-26 02:14 PM PDT -t-will-gillis,2023-03-26T22:41:06Z,- t-will-gillis submitted pull request review: [4273](https://github.com/hackforla/website/pull/4273#pullrequestreview-1358140577) at 2023-03-26 03:41 PM PDT -t-will-gillis,2023-03-26T23:03:09Z,- t-will-gillis commented on pull request: [4270](https://github.com/hackforla/website/pull/4270#issuecomment-1484252961) at 2023-03-26 04:03 PM PDT -t-will-gillis,2023-03-27T16:21:40Z,- t-will-gillis commented on issue: [4120](https://github.com/hackforla/website/issues/4120#issuecomment-1485441427) at 2023-03-27 09:21 AM PDT -t-will-gillis,2023-03-27T19:24:30Z,- t-will-gillis pull request merged: [4270](https://github.com/hackforla/website/pull/4270#event-8857678996) at 2023-03-27 12:24 PM PDT -t-will-gillis,2023-03-29T05:23:21Z,- t-will-gillis opened pull request: [4338](https://github.com/hackforla/website/pull/4338) at 2023-03-28 10:23 PM PDT -t-will-gillis,2023-03-30T03:13:39Z,- t-will-gillis submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1364260714) at 2023-03-29 08:13 PM PDT -t-will-gillis,2023-03-30T17:04:25Z,- t-will-gillis pull request merged: [4338](https://github.com/hackforla/website/pull/4338#event-8889933069) at 2023-03-30 10:04 AM PDT -t-will-gillis,2023-03-30T18:10:54Z,- t-will-gillis submitted pull request review: [4306](https://github.com/hackforla/website/pull/4306#pullrequestreview-1365668627) at 2023-03-30 11:10 AM PDT -t-will-gillis,2023-04-01T20:43:20Z,- t-will-gillis commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1493113217) at 2023-04-01 01:43 PM PDT -t-will-gillis,2023-04-02T02:27:46Z,- t-will-gillis commented on pull request: [4361](https://github.com/hackforla/website/pull/4361#issuecomment-1493203705) at 2023-04-01 07:27 PM PDT -t-will-gillis,2023-04-02T02:28:02Z,- t-will-gillis submitted pull request review: [4361](https://github.com/hackforla/website/pull/4361#pullrequestreview-1368010464) at 2023-04-01 07:28 PM PDT -t-will-gillis,2023-04-02T03:54:04Z,- t-will-gillis commented on pull request: [4356](https://github.com/hackforla/website/pull/4356#issuecomment-1493215721) at 2023-04-01 08:54 PM PDT -t-will-gillis,2023-04-03T02:24:41Z,- t-will-gillis submitted pull request review: [4340](https://github.com/hackforla/website/pull/4340#pullrequestreview-1368213939) at 2023-04-02 07:24 PM PDT -t-will-gillis,2023-04-03T02:24:50Z,- t-will-gillis closed issue by PR 4340: [4211](https://github.com/hackforla/website/issues/4211#event-8907820067) at 2023-04-02 07:24 PM PDT -t-will-gillis,2023-04-03T02:46:03Z,- t-will-gillis submitted pull request review: [4353](https://github.com/hackforla/website/pull/4353#pullrequestreview-1368223797) at 2023-04-02 07:46 PM PDT -t-will-gillis,2023-04-03T02:46:14Z,- t-will-gillis closed issue by PR 4353: [4159](https://github.com/hackforla/website/issues/4159#event-8907891850) at 2023-04-02 07:46 PM PDT -t-will-gillis,2023-04-03T04:12:57Z,- t-will-gillis submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1368262366) at 2023-04-02 09:12 PM PDT -t-will-gillis,2023-04-03T04:30:16Z,- t-will-gillis submitted pull request review: [4274](https://github.com/hackforla/website/pull/4274#pullrequestreview-1368271900) at 2023-04-02 09:30 PM PDT -t-will-gillis,2023-04-03T04:30:30Z,- t-will-gillis closed issue by PR 4274: [4183](https://github.com/hackforla/website/issues/4183#event-8908289940) at 2023-04-02 09:30 PM PDT -t-will-gillis,2023-04-06T04:13:47Z,- t-will-gillis submitted pull request review: [4273](https://github.com/hackforla/website/pull/4273#pullrequestreview-1374025073) at 2023-04-05 09:13 PM PDT -t-will-gillis,2023-04-06T04:15:22Z,- t-will-gillis closed issue by PR 4273: [2833](https://github.com/hackforla/website/issues/2833#event-8941439658) at 2023-04-05 09:15 PM PDT -t-will-gillis,2023-04-24T03:49:11Z,- t-will-gillis submitted pull request review: [4550](https://github.com/hackforla/website/pull/4550#pullrequestreview-1397150457) at 2023-04-23 08:49 PM PDT -t-will-gillis,2023-05-01T02:14:34Z,- t-will-gillis submitted pull request review: [4576](https://github.com/hackforla/website/pull/4576#pullrequestreview-1407287454) at 2023-04-30 07:14 PM PDT -t-will-gillis,2023-05-01T02:14:44Z,- t-will-gillis closed issue by PR 4576: [4398](https://github.com/hackforla/website/issues/4398#event-9133814152) at 2023-04-30 07:14 PM PDT -t-will-gillis,2023-05-01T02:27:26Z,- t-will-gillis submitted pull request review: [4584](https://github.com/hackforla/website/pull/4584#pullrequestreview-1407297699) at 2023-04-30 07:27 PM PDT -t-will-gillis,2023-05-01T02:27:35Z,- t-will-gillis closed issue by PR 4584: [4417](https://github.com/hackforla/website/issues/4417#event-9133892469) at 2023-04-30 07:27 PM PDT -t-will-gillis,2023-05-01T03:16:06Z,- t-will-gillis opened issue: [4587](https://github.com/hackforla/website/issues/4587) at 2023-04-30 08:16 PM PDT -t-will-gillis,2023-05-01T03:16:29Z,- t-will-gillis commented on issue: [4389](https://github.com/hackforla/website/issues/4389#issuecomment-1529300589) at 2023-04-30 08:16 PM PDT -t-will-gillis,2023-05-01T04:34:53Z,- t-will-gillis closed issue as completed: [4389](https://github.com/hackforla/website/issues/4389#event-9134344721) at 2023-04-30 09:34 PM PDT -t-will-gillis,2023-05-01T20:46:00Z,- t-will-gillis opened issue: [4590](https://github.com/hackforla/website/issues/4590) at 2023-05-01 01:46 PM PDT -t-will-gillis,2023-05-05T03:30:13Z,- t-will-gillis submitted pull request review: [4599](https://github.com/hackforla/website/pull/4599#pullrequestreview-1414136995) at 2023-05-04 08:30 PM PDT -t-will-gillis,2023-05-05T03:35:45Z,- t-will-gillis commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1535657325) at 2023-05-04 08:35 PM PDT -t-will-gillis,2023-05-05T04:39:51Z,- t-will-gillis opened issue: [4601](https://github.com/hackforla/website/issues/4601) at 2023-05-04 09:39 PM PDT -t-will-gillis,2023-05-05T04:42:55Z,- t-will-gillis assigned to issue: [4601](https://github.com/hackforla/website/issues/4601) at 2023-05-04 09:42 PM PDT -t-will-gillis,2023-05-05T04:58:11Z,- t-will-gillis opened pull request: [4602](https://github.com/hackforla/website/pull/4602) at 2023-05-04 09:58 PM PDT -t-will-gillis,2023-05-05T17:45:50Z,- t-will-gillis pull request merged: [4602](https://github.com/hackforla/website/pull/4602#event-9179145011) at 2023-05-05 10:45 AM PDT -t-will-gillis,2023-05-05T17:45:51Z,- t-will-gillis closed issue by PR 4602: [4601](https://github.com/hackforla/website/issues/4601#event-9179145174) at 2023-05-05 10:45 AM PDT -t-will-gillis,2023-05-09T04:24:26Z,- t-will-gillis submitted pull request review: [4599](https://github.com/hackforla/website/pull/4599#pullrequestreview-1417829588) at 2023-05-08 09:24 PM PDT -t-will-gillis,2023-05-09T04:25:23Z,- t-will-gillis closed issue by PR 4599: [4590](https://github.com/hackforla/website/issues/4590#event-9196359897) at 2023-05-08 09:25 PM PDT -t-will-gillis,2023-05-15T01:13:55Z,- t-will-gillis commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1547061482) at 2023-05-14 06:13 PM PDT -t-will-gillis,2023-05-15T01:14:25Z,- t-will-gillis assigned to issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1547061482) at 2023-05-14 06:14 PM PDT -t-will-gillis,2023-05-15T01:15:33Z,- t-will-gillis commented on issue: [4587](https://github.com/hackforla/website/issues/4587#issuecomment-1547062208) at 2023-05-14 06:15 PM PDT -t-will-gillis,2023-05-15T02:12:22Z,- t-will-gillis opened pull request: [4668](https://github.com/hackforla/website/pull/4668) at 2023-05-14 07:12 PM PDT -t-will-gillis,2023-05-15T04:05:35Z,- t-will-gillis submitted pull request review: [4613](https://github.com/hackforla/website/pull/4613#pullrequestreview-1425736707) at 2023-05-14 09:05 PM PDT -t-will-gillis,2023-05-15T04:05:51Z,- t-will-gillis closed issue by PR 4613: [4527](https://github.com/hackforla/website/issues/4527#event-9241835366) at 2023-05-14 09:05 PM PDT -t-will-gillis,2023-05-15T04:18:18Z,- t-will-gillis submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1425743122) at 2023-05-14 09:18 PM PDT -t-will-gillis,2023-05-15T04:21:39Z,- t-will-gillis closed issue by PR 4639: [4512](https://github.com/hackforla/website/issues/4512#event-9241901587) at 2023-05-14 09:21 PM PDT -t-will-gillis,2023-05-15T04:23:29Z,- t-will-gillis submitted pull request review: [4608](https://github.com/hackforla/website/pull/4608#pullrequestreview-1425745777) at 2023-05-14 09:23 PM PDT -t-will-gillis,2023-05-15T04:25:20Z,- t-will-gillis closed issue by PR 4608: [4557](https://github.com/hackforla/website/issues/4557#event-9241914812) at 2023-05-14 09:25 PM PDT -t-will-gillis,2023-05-15T04:48:13Z,- t-will-gillis submitted pull request review: [4644](https://github.com/hackforla/website/pull/4644#pullrequestreview-1425759668) at 2023-05-14 09:48 PM PDT -t-will-gillis,2023-05-15T04:48:22Z,- t-will-gillis closed issue by PR 4644: [4578](https://github.com/hackforla/website/issues/4578#event-9241997448) at 2023-05-14 09:48 PM PDT -t-will-gillis,2023-05-15T05:36:58Z,- t-will-gillis submitted pull request review: [4657](https://github.com/hackforla/website/pull/4657#pullrequestreview-1425792979) at 2023-05-14 10:36 PM PDT -t-will-gillis,2023-05-15T05:37:11Z,- t-will-gillis closed issue by PR 4657: [4457](https://github.com/hackforla/website/issues/4457#event-9242242414) at 2023-05-14 10:37 PM PDT -t-will-gillis,2023-05-15T06:16:06Z,- t-will-gillis submitted pull request review: [4665](https://github.com/hackforla/website/pull/4665#pullrequestreview-1425827975) at 2023-05-14 11:16 PM PDT -t-will-gillis,2023-05-16T18:57:49Z,- t-will-gillis submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1429221703) at 2023-05-16 11:57 AM PDT -t-will-gillis,2023-05-16T19:16:14Z,- t-will-gillis submitted pull request review: [4674](https://github.com/hackforla/website/pull/4674#pullrequestreview-1429249351) at 2023-05-16 12:16 PM PDT -t-will-gillis,2023-05-16T19:20:56Z,- t-will-gillis commented on issue: [4486](https://github.com/hackforla/website/issues/4486#issuecomment-1550229372) at 2023-05-16 12:20 PM PDT -t-will-gillis,2023-05-16T19:27:30Z,- t-will-gillis commented on issue: [4483](https://github.com/hackforla/website/issues/4483#issuecomment-1550237935) at 2023-05-16 12:27 PM PDT -t-will-gillis,2023-05-17T01:32:51Z,- t-will-gillis submitted pull request review: [4674](https://github.com/hackforla/website/pull/4674#pullrequestreview-1429658382) at 2023-05-16 06:32 PM PDT -t-will-gillis,2023-05-17T03:04:51Z,- t-will-gillis submitted pull request review: [4656](https://github.com/hackforla/website/pull/4656#pullrequestreview-1429720329) at 2023-05-16 08:04 PM PDT -t-will-gillis,2023-05-17T16:42:18Z,- t-will-gillis commented on pull request: [4665](https://github.com/hackforla/website/pull/4665#issuecomment-1551735346) at 2023-05-17 09:42 AM PDT -t-will-gillis,2023-05-17T16:42:41Z,- t-will-gillis submitted pull request review: [4665](https://github.com/hackforla/website/pull/4665#pullrequestreview-1431147550) at 2023-05-17 09:42 AM PDT -t-will-gillis,2023-05-17T16:42:57Z,- t-will-gillis closed issue by PR 4665: [4579](https://github.com/hackforla/website/issues/4579#event-9271702055) at 2023-05-17 09:42 AM PDT -t-will-gillis,2023-05-17T21:13:08Z,- t-will-gillis commented on issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1552091274) at 2023-05-17 02:13 PM PDT -t-will-gillis,2023-05-18T01:32:57Z,- t-will-gillis commented on pull request: [4668](https://github.com/hackforla/website/pull/4668#issuecomment-1552286501) at 2023-05-17 06:32 PM PDT -t-will-gillis,2023-05-18T20:46:07Z,- t-will-gillis pull request merged: [4668](https://github.com/hackforla/website/pull/4668#event-9283653303) at 2023-05-18 01:46 PM PDT -t-will-gillis,2023-05-18T21:59:39Z,- t-will-gillis commented on pull request: [4694](https://github.com/hackforla/website/pull/4694#issuecomment-1553717346) at 2023-05-18 02:59 PM PDT -t-will-gillis,2023-05-19T01:13:22Z,- t-will-gillis assigned to issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1487837388) at 2023-05-18 06:13 PM PDT -t-will-gillis,2023-05-19T01:33:11Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1553888231) at 2023-05-18 06:33 PM PDT -t-will-gillis,2023-05-20T19:33:30Z,- t-will-gillis submitted pull request review: [4694](https://github.com/hackforla/website/pull/4694#pullrequestreview-1435439189) at 2023-05-20 12:33 PM PDT -t-will-gillis,2023-05-21T06:11:01Z,- t-will-gillis submitted pull request review: [4694](https://github.com/hackforla/website/pull/4694#pullrequestreview-1435477657) at 2023-05-20 11:11 PM PDT -t-will-gillis,2023-05-21T06:15:13Z,- t-will-gillis closed issue by PR 4694: [4593](https://github.com/hackforla/website/issues/4593#event-9295443495) at 2023-05-20 11:15 PM PDT -t-will-gillis,2023-05-21T15:32:25Z,- t-will-gillis submitted pull request review: [4689](https://github.com/hackforla/website/pull/4689#pullrequestreview-1435557434) at 2023-05-21 08:32 AM PDT -t-will-gillis,2023-05-21T15:32:38Z,- t-will-gillis closed issue by PR 4689: [4486](https://github.com/hackforla/website/issues/4486#event-9296178027) at 2023-05-21 08:32 AM PDT -t-will-gillis,2023-05-21T15:43:57Z,- t-will-gillis submitted pull request review: [4697](https://github.com/hackforla/website/pull/4697#pullrequestreview-1435558765) at 2023-05-21 08:43 AM PDT -t-will-gillis,2023-05-21T15:44:09Z,- t-will-gillis closed issue by PR 4697: [4483](https://github.com/hackforla/website/issues/4483#event-9296192907) at 2023-05-21 08:44 AM PDT -t-will-gillis,2023-05-21T15:57:11Z,- t-will-gillis commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1556213213) at 2023-05-21 08:57 AM PDT -t-will-gillis,2023-05-21T16:16:02Z,- t-will-gillis submitted pull request review: [4698](https://github.com/hackforla/website/pull/4698#pullrequestreview-1435562428) at 2023-05-21 09:16 AM PDT -t-will-gillis,2023-05-21T16:16:12Z,- t-will-gillis closed issue by PR 4698: [4344](https://github.com/hackforla/website/issues/4344#event-9296236709) at 2023-05-21 09:16 AM PDT -t-will-gillis,2023-05-21T16:48:05Z,- t-will-gillis commented on issue: [2065](https://github.com/hackforla/website/issues/2065#issuecomment-1556223101) at 2023-05-21 09:48 AM PDT -t-will-gillis,2023-05-21T16:48:06Z,- t-will-gillis closed issue as completed: [2065](https://github.com/hackforla/website/issues/2065#event-9296276538) at 2023-05-21 09:48 AM PDT -t-will-gillis,2023-05-21T16:51:45Z,- t-will-gillis commented on pull request: [4474](https://github.com/hackforla/website/pull/4474#issuecomment-1556223721) at 2023-05-21 09:51 AM PDT -t-will-gillis,2023-05-21T18:27:06Z,- t-will-gillis opened issue: [4703](https://github.com/hackforla/website/issues/4703) at 2023-05-21 11:27 AM PDT -t-will-gillis,2023-05-21T18:31:56Z,- t-will-gillis opened issue: [4704](https://github.com/hackforla/website/issues/4704) at 2023-05-21 11:31 AM PDT -t-will-gillis,2023-05-23T20:40:21Z,- t-will-gillis commented on issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-1560095316) at 2023-05-23 01:40 PM PDT -t-will-gillis,2023-05-26T22:40:46Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1565037321) at 2023-05-26 03:40 PM PDT -t-will-gillis,2023-05-27T21:21:54Z,- t-will-gillis commented on pull request: [4736](https://github.com/hackforla/website/pull/4736#issuecomment-1565687687) at 2023-05-27 02:21 PM PDT -t-will-gillis,2023-05-28T15:31:14Z,- t-will-gillis commented on issue: [3843](https://github.com/hackforla/website/issues/3843#issuecomment-1566174613) at 2023-05-28 08:31 AM PDT -t-will-gillis,2023-05-28T15:31:15Z,- t-will-gillis closed issue as completed: [3843](https://github.com/hackforla/website/issues/3843#event-9362451206) at 2023-05-28 08:31 AM PDT -t-will-gillis,2023-05-28T16:38:22Z,- t-will-gillis submitted pull request review: [4708](https://github.com/hackforla/website/pull/4708#pullrequestreview-1448325563) at 2023-05-28 09:38 AM PDT -t-will-gillis,2023-05-28T16:38:34Z,- t-will-gillis closed issue by PR 4708: [4685](https://github.com/hackforla/website/issues/4685#event-9362617426) at 2023-05-28 09:38 AM PDT -t-will-gillis,2023-05-28T16:45:18Z,- t-will-gillis submitted pull request review: [4725](https://github.com/hackforla/website/pull/4725#pullrequestreview-1448328176) at 2023-05-28 09:45 AM PDT -t-will-gillis,2023-05-28T16:45:27Z,- t-will-gillis closed issue by PR 4725: [4354](https://github.com/hackforla/website/issues/4354#event-9362635884) at 2023-05-28 09:45 AM PDT -t-will-gillis,2023-05-28T16:56:20Z,- t-will-gillis submitted pull request review: [4730](https://github.com/hackforla/website/pull/4730#pullrequestreview-1448330934) at 2023-05-28 09:56 AM PDT -t-will-gillis,2023-05-28T16:57:17Z,- t-will-gillis closed issue by PR 4730: [4502](https://github.com/hackforla/website/issues/4502#event-9362657374) at 2023-05-28 09:57 AM PDT -t-will-gillis,2023-05-28T20:49:06Z,- t-will-gillis submitted pull request review: [4746](https://github.com/hackforla/website/pull/4746#pullrequestreview-1448416308) at 2023-05-28 01:49 PM PDT -t-will-gillis,2023-05-29T15:42:10Z,- t-will-gillis commented on issue: [4489](https://github.com/hackforla/website/issues/4489#issuecomment-1567288597) at 2023-05-29 08:42 AM PDT -t-will-gillis,2023-05-29T23:57:59Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1567603313) at 2023-05-29 04:57 PM PDT -t-will-gillis,2023-05-30T03:14:58Z,- t-will-gillis opened issue: [4753](https://github.com/hackforla/website/issues/4753) at 2023-05-29 08:14 PM PDT -t-will-gillis,2023-05-30T03:19:37Z,- t-will-gillis commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1567705945) at 2023-05-29 08:19 PM PDT -t-will-gillis,2023-05-31T02:12:04Z,- t-will-gillis closed issue by PR 4746: [4487](https://github.com/hackforla/website/issues/4487#event-9384619126) at 2023-05-30 07:12 PM PDT -t-will-gillis,2023-05-31T18:37:40Z,- t-will-gillis submitted pull request review: [4760](https://github.com/hackforla/website/pull/4760#pullrequestreview-1453914296) at 2023-05-31 11:37 AM PDT -t-will-gillis,2023-06-01T06:06:04Z,- t-will-gillis submitted pull request review: [4760](https://github.com/hackforla/website/pull/4760#pullrequestreview-1454640725) at 2023-05-31 11:06 PM PDT -t-will-gillis,2023-06-01T18:14:33Z,- t-will-gillis submitted pull request review: [4736](https://github.com/hackforla/website/pull/4736#pullrequestreview-1456047614) at 2023-06-01 11:14 AM PDT -t-will-gillis,2023-06-01T20:29:02Z,- t-will-gillis opened issue: [4768](https://github.com/hackforla/website/issues/4768) at 2023-06-01 01:29 PM PDT -t-will-gillis,2023-06-03T03:48:28Z,- t-will-gillis assigned to issue: [4768](https://github.com/hackforla/website/issues/4768) at 2023-06-02 08:48 PM PDT -t-will-gillis,2023-06-03T05:17:58Z,- t-will-gillis unassigned from issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1574621978) at 2023-06-02 10:17 PM PDT -t-will-gillis,2023-06-03T18:22:47Z,- t-will-gillis opened issue: [4776](https://github.com/hackforla/website/issues/4776) at 2023-06-03 11:22 AM PDT -t-will-gillis,2023-06-03T20:20:11Z,- t-will-gillis opened issue: [4777](https://github.com/hackforla/website/issues/4777) at 2023-06-03 01:20 PM PDT -t-will-gillis,2023-06-04T21:18:18Z,- t-will-gillis opened issue: [4779](https://github.com/hackforla/website/issues/4779) at 2023-06-04 02:18 PM PDT -t-will-gillis,2023-06-04T21:21:58Z,- t-will-gillis commented on issue: [4779](https://github.com/hackforla/website/issues/4779#issuecomment-1575734774) at 2023-06-04 02:21 PM PDT -t-will-gillis,2023-06-04T21:21:58Z,- t-will-gillis closed issue as completed: [4779](https://github.com/hackforla/website/issues/4779#event-9425885149) at 2023-06-04 02:21 PM PDT -t-will-gillis,2023-06-04T22:27:39Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1575756553) at 2023-06-04 03:27 PM PDT -t-will-gillis,2023-06-06T18:44:48Z,- t-will-gillis opened issue: [4788](https://github.com/hackforla/website/issues/4788) at 2023-06-06 11:44 AM PDT -t-will-gillis,2023-06-07T05:00:30Z,- t-will-gillis commented on issue: [4765](https://github.com/hackforla/website/issues/4765#issuecomment-1579895686) at 2023-06-06 10:00 PM PDT -t-will-gillis,2023-06-07T05:00:30Z,- t-will-gillis closed issue as not planned: [4765](https://github.com/hackforla/website/issues/4765#event-9453446761) at 2023-06-06 10:00 PM PDT -t-will-gillis,2023-06-07T05:01:29Z,- t-will-gillis commented on issue: [4766](https://github.com/hackforla/website/issues/4766#issuecomment-1579896825) at 2023-06-06 10:01 PM PDT -t-will-gillis,2023-06-07T05:01:29Z,- t-will-gillis closed issue as not planned: [4766](https://github.com/hackforla/website/issues/4766#event-9453453038) at 2023-06-06 10:01 PM PDT -t-will-gillis,2023-06-08T18:05:03Z,- t-will-gillis opened issue: [4790](https://github.com/hackforla/website/issues/4790) at 2023-06-08 11:05 AM PDT -t-will-gillis,2023-06-08T18:16:14Z,- t-will-gillis commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1583123853) at 2023-06-08 11:16 AM PDT -t-will-gillis,2023-06-08T19:01:00Z,- t-will-gillis submitted pull request review: [4739](https://github.com/hackforla/website/pull/4739#pullrequestreview-1470589421) at 2023-06-08 12:01 PM PDT -t-will-gillis,2023-06-08T20:17:46Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1583282877) at 2023-06-08 01:17 PM PDT -t-will-gillis,2023-06-08T20:30:42Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470715322) at 2023-06-08 01:30 PM PDT -t-will-gillis,2023-06-08T20:33:25Z,- t-will-gillis submitted pull request review: [4737](https://github.com/hackforla/website/pull/4737#pullrequestreview-1470718659) at 2023-06-08 01:33 PM PDT -t-will-gillis,2023-06-08T20:34:37Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470720009) at 2023-06-08 01:34 PM PDT -t-will-gillis,2023-06-08T20:35:21Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470720838) at 2023-06-08 01:35 PM PDT -t-will-gillis,2023-06-08T20:36:53Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470722559) at 2023-06-08 01:36 PM PDT -t-will-gillis,2023-06-08T21:13:58Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470772925) at 2023-06-08 02:13 PM PDT -t-will-gillis,2023-06-08T21:15:31Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470774643) at 2023-06-08 02:15 PM PDT -t-will-gillis,2023-06-08T21:32:16Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470791350) at 2023-06-08 02:32 PM PDT -t-will-gillis,2023-06-08T21:32:49Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470792046) at 2023-06-08 02:32 PM PDT -t-will-gillis,2023-06-08T21:39:19Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470801350) at 2023-06-08 02:39 PM PDT -t-will-gillis,2023-06-08T22:02:55Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1470833939) at 2023-06-08 03:02 PM PDT -t-will-gillis,2023-06-08T22:03:47Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1470834577) at 2023-06-08 03:03 PM PDT -t-will-gillis,2023-06-09T03:22:17Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471148199) at 2023-06-08 08:22 PM PDT -t-will-gillis,2023-06-09T03:30:18Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471155029) at 2023-06-08 08:30 PM PDT -t-will-gillis,2023-06-09T03:38:48Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471161421) at 2023-06-08 08:38 PM PDT -t-will-gillis,2023-06-09T03:54:31Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471180113) at 2023-06-08 08:54 PM PDT -t-will-gillis,2023-06-09T03:56:06Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471182512) at 2023-06-08 08:56 PM PDT -t-will-gillis,2023-06-09T04:00:05Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471185737) at 2023-06-08 09:00 PM PDT -t-will-gillis,2023-06-09T04:07:30Z,- t-will-gillis submitted pull request review: [4734](https://github.com/hackforla/website/pull/4734#pullrequestreview-1471194590) at 2023-06-08 09:07 PM PDT -t-will-gillis,2023-06-09T04:09:34Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471195685) at 2023-06-08 09:09 PM PDT -t-will-gillis,2023-06-09T04:16:29Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1471200964) at 2023-06-08 09:16 PM PDT -t-will-gillis,2023-06-11T04:35:07Z,- t-will-gillis opened issue: [4797](https://github.com/hackforla/website/issues/4797) at 2023-06-10 09:35 PM PDT -t-will-gillis,2023-06-11T04:38:04Z,- t-will-gillis commented on issue: [4797](https://github.com/hackforla/website/issues/4797#issuecomment-1586012255) at 2023-06-10 09:38 PM PDT -t-will-gillis,2023-06-11T04:38:04Z,- t-will-gillis closed issue as not planned: [4797](https://github.com/hackforla/website/issues/4797#event-9492563847) at 2023-06-10 09:38 PM PDT -t-will-gillis,2023-06-11T04:55:06Z,- t-will-gillis opened issue: [4798](https://github.com/hackforla/website/issues/4798) at 2023-06-10 09:55 PM PDT -t-will-gillis,2023-06-11T04:58:27Z,- t-will-gillis opened issue: [4799](https://github.com/hackforla/website/issues/4799) at 2023-06-10 09:58 PM PDT -t-will-gillis,2023-06-11T05:01:16Z,- t-will-gillis opened issue: [4800](https://github.com/hackforla/website/issues/4800) at 2023-06-10 10:01 PM PDT -t-will-gillis,2023-06-11T05:03:59Z,- t-will-gillis opened issue: [4801](https://github.com/hackforla/website/issues/4801) at 2023-06-10 10:03 PM PDT -t-will-gillis,2023-06-11T05:06:03Z,- t-will-gillis opened issue: [4802](https://github.com/hackforla/website/issues/4802) at 2023-06-10 10:06 PM PDT -t-will-gillis,2023-06-11T05:08:11Z,- t-will-gillis opened issue: [4803](https://github.com/hackforla/website/issues/4803) at 2023-06-10 10:08 PM PDT -t-will-gillis,2023-06-11T05:10:38Z,- t-will-gillis opened issue: [4804](https://github.com/hackforla/website/issues/4804) at 2023-06-10 10:10 PM PDT -t-will-gillis,2023-06-11T05:11:53Z,- t-will-gillis opened issue: [4805](https://github.com/hackforla/website/issues/4805) at 2023-06-10 10:11 PM PDT -t-will-gillis,2023-06-11T05:13:19Z,- t-will-gillis opened issue: [4806](https://github.com/hackforla/website/issues/4806) at 2023-06-10 10:13 PM PDT -t-will-gillis,2023-06-11T05:15:49Z,- t-will-gillis opened issue: [4807](https://github.com/hackforla/website/issues/4807) at 2023-06-10 10:15 PM PDT -t-will-gillis,2023-06-11T05:18:46Z,- t-will-gillis opened issue: [4808](https://github.com/hackforla/website/issues/4808) at 2023-06-10 10:18 PM PDT -t-will-gillis,2023-06-11T05:20:16Z,- t-will-gillis opened issue: [4809](https://github.com/hackforla/website/issues/4809) at 2023-06-10 10:20 PM PDT -t-will-gillis,2023-06-11T05:21:52Z,- t-will-gillis opened issue: [4810](https://github.com/hackforla/website/issues/4810) at 2023-06-10 10:21 PM PDT -t-will-gillis,2023-06-11T05:23:52Z,- t-will-gillis opened issue: [4811](https://github.com/hackforla/website/issues/4811) at 2023-06-10 10:23 PM PDT -t-will-gillis,2023-06-11T05:26:08Z,- t-will-gillis opened issue: [4812](https://github.com/hackforla/website/issues/4812) at 2023-06-10 10:26 PM PDT -t-will-gillis,2023-06-11T05:27:47Z,- t-will-gillis opened issue: [4813](https://github.com/hackforla/website/issues/4813) at 2023-06-10 10:27 PM PDT -t-will-gillis,2023-06-11T05:29:21Z,- t-will-gillis opened issue: [4814](https://github.com/hackforla/website/issues/4814) at 2023-06-10 10:29 PM PDT -t-will-gillis,2023-06-12T05:30:24Z,- t-will-gillis opened issue: [4815](https://github.com/hackforla/website/issues/4815) at 2023-06-11 10:30 PM PDT -t-will-gillis,2023-06-12T18:34:23Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1587870057) at 2023-06-12 11:34 AM PDT -t-will-gillis,2023-06-12T18:54:33Z,- t-will-gillis closed issue as not planned: [4779](https://github.com/hackforla/website/issues/4779#event-9506471252) at 2023-06-12 11:54 AM PDT -t-will-gillis,2023-06-12T18:59:12Z,- t-will-gillis commented on pull request: [3846](https://github.com/hackforla/website/pull/3846#issuecomment-1587903615) at 2023-06-12 11:59 AM PDT -t-will-gillis,2023-06-12T19:01:57Z,- t-will-gillis commented on pull request: [4646](https://github.com/hackforla/website/pull/4646#issuecomment-1587909269) at 2023-06-12 12:01 PM PDT -t-will-gillis,2023-06-13T18:43:14Z,- t-will-gillis opened issue: [4822](https://github.com/hackforla/website/issues/4822) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:43:31Z,- t-will-gillis opened issue: [4823](https://github.com/hackforla/website/issues/4823) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:43:40Z,- t-will-gillis opened issue: [4824](https://github.com/hackforla/website/issues/4824) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:43:52Z,- t-will-gillis opened issue: [4825](https://github.com/hackforla/website/issues/4825) at 2023-06-13 11:43 AM PDT -t-will-gillis,2023-06-13T18:44:05Z,- t-will-gillis opened issue: [4826](https://github.com/hackforla/website/issues/4826) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:11Z,- t-will-gillis opened issue: [4827](https://github.com/hackforla/website/issues/4827) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:19Z,- t-will-gillis opened issue: [4828](https://github.com/hackforla/website/issues/4828) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:28Z,- t-will-gillis opened issue: [4829](https://github.com/hackforla/website/issues/4829) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:35Z,- t-will-gillis opened issue: [4830](https://github.com/hackforla/website/issues/4830) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T18:44:41Z,- t-will-gillis opened issue: [4831](https://github.com/hackforla/website/issues/4831) at 2023-06-13 11:44 AM PDT -t-will-gillis,2023-06-13T22:39:07Z,- t-will-gillis assigned to issue: [4824](https://github.com/hackforla/website/issues/4824) at 2023-06-13 03:39 PM PDT -t-will-gillis,2023-06-13T23:00:28Z,- t-will-gillis opened pull request: [4832](https://github.com/hackforla/website/pull/4832) at 2023-06-13 04:00 PM PDT -t-will-gillis,2023-06-13T23:04:25Z,- t-will-gillis assigned to issue: [4825](https://github.com/hackforla/website/issues/4825) at 2023-06-13 04:04 PM PDT -t-will-gillis,2023-06-13T23:46:11Z,- t-will-gillis opened pull request: [4833](https://github.com/hackforla/website/pull/4833) at 2023-06-13 04:46 PM PDT -t-will-gillis,2023-06-14T00:15:12Z,- t-will-gillis assigned to issue: [4827](https://github.com/hackforla/website/issues/4827) at 2023-06-13 05:15 PM PDT -t-will-gillis,2023-06-14T02:36:45Z,- t-will-gillis assigned to issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590195813) at 2023-06-13 07:36 PM PDT -t-will-gillis,2023-06-14T02:48:44Z,- t-will-gillis unassigned from issue: [4525](https://github.com/hackforla/website/issues/4525#issuecomment-1590355187) at 2023-06-13 07:48 PM PDT -t-will-gillis,2023-06-14T17:38:30Z,- t-will-gillis opened pull request: [4836](https://github.com/hackforla/website/pull/4836) at 2023-06-14 10:38 AM PDT -t-will-gillis,2023-06-14T17:41:06Z,- t-will-gillis assigned to issue: [4826](https://github.com/hackforla/website/issues/4826) at 2023-06-14 10:41 AM PDT -t-will-gillis,2023-06-14T17:58:43Z,- t-will-gillis opened pull request: [4837](https://github.com/hackforla/website/pull/4837) at 2023-06-14 10:58 AM PDT -t-will-gillis,2023-06-14T18:06:00Z,- t-will-gillis assigned to issue: [4823](https://github.com/hackforla/website/issues/4823) at 2023-06-14 11:06 AM PDT -t-will-gillis,2023-06-14T18:44:17Z,- t-will-gillis opened pull request: [4838](https://github.com/hackforla/website/pull/4838) at 2023-06-14 11:44 AM PDT -t-will-gillis,2023-06-15T03:53:15Z,- t-will-gillis opened issue: [4839](https://github.com/hackforla/website/issues/4839) at 2023-06-14 08:53 PM PDT -t-will-gillis,2023-06-15T03:54:42Z,- t-will-gillis commented on issue: [4704](https://github.com/hackforla/website/issues/4704#issuecomment-1592311455) at 2023-06-14 08:54 PM PDT -t-will-gillis,2023-06-15T03:54:42Z,- t-will-gillis closed issue as completed: [4704](https://github.com/hackforla/website/issues/4704#event-9535286429) at 2023-06-14 08:54 PM PDT -t-will-gillis,2023-06-15T17:11:40Z,- t-will-gillis commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1593446228) at 2023-06-15 10:11 AM PDT -t-will-gillis,2023-06-16T04:04:45Z,- t-will-gillis assigned to issue: [4828](https://github.com/hackforla/website/issues/4828) at 2023-06-15 09:04 PM PDT -t-will-gillis,2023-06-16T04:39:35Z,- t-will-gillis opened pull request: [4845](https://github.com/hackforla/website/pull/4845) at 2023-06-15 09:39 PM PDT -t-will-gillis,2023-06-16T04:41:17Z,- t-will-gillis assigned to issue: [4829](https://github.com/hackforla/website/issues/4829) at 2023-06-15 09:41 PM PDT -t-will-gillis,2023-06-16T04:57:27Z,- t-will-gillis opened pull request: [4846](https://github.com/hackforla/website/pull/4846) at 2023-06-15 09:57 PM PDT -t-will-gillis,2023-06-16T05:01:13Z,- t-will-gillis assigned to issue: [4830](https://github.com/hackforla/website/issues/4830) at 2023-06-15 10:01 PM PDT -t-will-gillis,2023-06-16T05:10:24Z,- t-will-gillis opened pull request: [4847](https://github.com/hackforla/website/pull/4847) at 2023-06-15 10:10 PM PDT -t-will-gillis,2023-06-16T05:12:18Z,- t-will-gillis assigned to issue: [4831](https://github.com/hackforla/website/issues/4831) at 2023-06-15 10:12 PM PDT -t-will-gillis,2023-06-16T05:33:00Z,- t-will-gillis opened pull request: [4848](https://github.com/hackforla/website/pull/4848) at 2023-06-15 10:33 PM PDT -t-will-gillis,2023-06-16T05:38:26Z,- t-will-gillis commented on issue: [4822](https://github.com/hackforla/website/issues/4822#issuecomment-1594133772) at 2023-06-15 10:38 PM PDT -t-will-gillis,2023-06-16T21:30:58Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1595337763) at 2023-06-16 02:30 PM PDT -t-will-gillis,2023-06-18T15:24:55Z,- t-will-gillis pull request merged: [4833](https://github.com/hackforla/website/pull/4833#event-9561409762) at 2023-06-18 08:24 AM PDT -t-will-gillis,2023-06-18T15:24:57Z,- t-will-gillis closed issue by PR 4833: [4825](https://github.com/hackforla/website/issues/4825#event-9561409813) at 2023-06-18 08:24 AM PDT -t-will-gillis,2023-06-18T16:07:41Z,- t-will-gillis opened issue: [4852](https://github.com/hackforla/website/issues/4852) at 2023-06-18 09:07 AM PDT -t-will-gillis,2023-06-18T16:44:39Z,- t-will-gillis closed issue by PR 4843: [4782](https://github.com/hackforla/website/issues/4782#event-9561559600) at 2023-06-18 09:44 AM PDT -t-will-gillis,2023-06-19T00:45:09Z,- t-will-gillis pull request merged: [4838](https://github.com/hackforla/website/pull/4838#event-9562440319) at 2023-06-18 05:45 PM PDT -t-will-gillis,2023-06-19T00:45:11Z,- t-will-gillis closed issue by PR 4838: [4823](https://github.com/hackforla/website/issues/4823#event-9562440384) at 2023-06-18 05:45 PM PDT -t-will-gillis,2023-06-19T01:22:36Z,- t-will-gillis pull request merged: [4847](https://github.com/hackforla/website/pull/4847#event-9562555590) at 2023-06-18 06:22 PM PDT -t-will-gillis,2023-06-19T01:22:38Z,- t-will-gillis closed issue by PR 4847: [4830](https://github.com/hackforla/website/issues/4830#event-9562555655) at 2023-06-18 06:22 PM PDT -t-will-gillis,2023-06-19T01:28:37Z,- t-will-gillis pull request merged: [4845](https://github.com/hackforla/website/pull/4845#event-9562580214) at 2023-06-18 06:28 PM PDT -t-will-gillis,2023-06-19T01:28:38Z,- t-will-gillis closed issue by PR 4845: [4828](https://github.com/hackforla/website/issues/4828#event-9562580311) at 2023-06-18 06:28 PM PDT -t-will-gillis,2023-06-19T16:54:04Z,- t-will-gillis commented on pull request: [4832](https://github.com/hackforla/website/pull/4832#issuecomment-1597487667) at 2023-06-19 09:54 AM PDT -t-will-gillis,2023-06-19T23:43:42Z,- t-will-gillis commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1597880205) at 2023-06-19 04:43 PM PDT -t-will-gillis,2023-06-20T06:57:10Z,- t-will-gillis pull request merged: [4848](https://github.com/hackforla/website/pull/4848#event-9575736418) at 2023-06-19 11:57 PM PDT -t-will-gillis,2023-06-20T15:15:43Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1598994374) at 2023-06-20 08:15 AM PDT -t-will-gillis,2023-06-21T05:06:33Z,- t-will-gillis opened issue: [4868](https://github.com/hackforla/website/issues/4868) at 2023-06-20 10:06 PM PDT -t-will-gillis,2023-06-21T18:01:14Z,- t-will-gillis commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1601328938) at 2023-06-21 11:01 AM PDT -t-will-gillis,2023-06-23T17:09:36Z,- t-will-gillis commented on issue: [4790](https://github.com/hackforla/website/issues/4790#issuecomment-1604571024) at 2023-06-23 10:09 AM PDT -t-will-gillis,2023-06-23T17:09:37Z,- t-will-gillis closed issue as completed: [4790](https://github.com/hackforla/website/issues/4790#event-9619896536) at 2023-06-23 10:09 AM PDT -t-will-gillis,2023-06-24T00:10:20Z,- t-will-gillis commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1605173445) at 2023-06-23 05:10 PM PDT -t-will-gillis,2023-06-24T00:20:12Z,- t-will-gillis commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1605180254) at 2023-06-23 05:20 PM PDT -t-will-gillis,2023-06-24T20:08:50Z,- t-will-gillis commented on pull request: [4837](https://github.com/hackforla/website/pull/4837#issuecomment-1605712817) at 2023-06-24 01:08 PM PDT -t-will-gillis,2023-06-24T20:08:50Z,- t-will-gillis pull request closed w/o merging: [4837](https://github.com/hackforla/website/pull/4837#event-9627721713) at 2023-06-24 01:08 PM PDT -t-will-gillis,2023-06-24T20:18:31Z,- t-will-gillis opened pull request: [4881](https://github.com/hackforla/website/pull/4881) at 2023-06-24 01:18 PM PDT -t-will-gillis,2023-06-24T21:35:05Z,- t-will-gillis pull request merged: [4881](https://github.com/hackforla/website/pull/4881#event-9627904361) at 2023-06-24 02:35 PM PDT -t-will-gillis,2023-06-24T21:35:06Z,- t-will-gillis closed issue by PR 4881: [4826](https://github.com/hackforla/website/issues/4826#event-9627904501) at 2023-06-24 02:35 PM PDT -t-will-gillis,2023-06-26T05:40:46Z,- t-will-gillis submitted pull request review: [4738](https://github.com/hackforla/website/pull/4738#pullrequestreview-1497607504) at 2023-06-25 10:40 PM PDT -t-will-gillis,2023-06-26T05:41:41Z,- t-will-gillis submitted pull request review: [4849](https://github.com/hackforla/website/pull/4849#pullrequestreview-1497608231) at 2023-06-25 10:41 PM PDT -t-will-gillis,2023-06-26T19:43:43Z,- t-will-gillis submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1499288875) at 2023-06-26 12:43 PM PDT -t-will-gillis,2023-06-26T19:46:27Z,- t-will-gillis submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1499292355) at 2023-06-26 12:46 PM PDT -t-will-gillis,2023-06-27T00:41:20Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1608534444) at 2023-06-26 05:41 PM PDT -t-will-gillis,2023-06-27T03:14:28Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1608694315) at 2023-06-26 08:14 PM PDT -t-will-gillis,2023-06-27T03:46:49Z,- t-will-gillis commented on issue: [4050](https://github.com/hackforla/website/issues/4050#issuecomment-1608742649) at 2023-06-26 08:46 PM PDT -t-will-gillis,2023-06-28T04:14:37Z,- t-will-gillis commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1610671471) at 2023-06-27 09:14 PM PDT -t-will-gillis,2023-06-28T17:22:12Z,- t-will-gillis commented on issue: [4189](https://github.com/hackforla/website/issues/4189#issuecomment-1611807604) at 2023-06-28 10:22 AM PDT -t-will-gillis,2023-06-28T17:28:06Z,- t-will-gillis commented on issue: [4891](https://github.com/hackforla/website/issues/4891#issuecomment-1611815122) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:06Z,- t-will-gillis closed issue as not planned: [4891](https://github.com/hackforla/website/issues/4891#event-9667457102) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:30Z,- t-will-gillis commented on issue: [4892](https://github.com/hackforla/website/issues/4892#issuecomment-1611815680) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:30Z,- t-will-gillis closed issue as not planned: [4892](https://github.com/hackforla/website/issues/4892#event-9667460205) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:48Z,- t-will-gillis commented on issue: [4893](https://github.com/hackforla/website/issues/4893#issuecomment-1611816106) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:28:48Z,- t-will-gillis closed issue as not planned: [4893](https://github.com/hackforla/website/issues/4893#event-9667462514) at 2023-06-28 10:28 AM PDT -t-will-gillis,2023-06-28T17:29:05Z,- t-will-gillis commented on issue: [4894](https://github.com/hackforla/website/issues/4894#issuecomment-1611816415) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T17:29:05Z,- t-will-gillis closed issue as not planned: [4894](https://github.com/hackforla/website/issues/4894#event-9667464637) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T17:29:22Z,- t-will-gillis commented on issue: [4895](https://github.com/hackforla/website/issues/4895#issuecomment-1611816704) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T17:29:22Z,- t-will-gillis closed issue as not planned: [4895](https://github.com/hackforla/website/issues/4895#event-9667466694) at 2023-06-28 10:29 AM PDT -t-will-gillis,2023-06-28T19:21:56Z,- t-will-gillis opened issue: [4898](https://github.com/hackforla/website/issues/4898) at 2023-06-28 12:21 PM PDT -t-will-gillis,2023-06-28T19:22:05Z,- t-will-gillis assigned to issue: [4898](https://github.com/hackforla/website/issues/4898) at 2023-06-28 12:22 PM PDT -t-will-gillis,2023-06-28T19:33:28Z,- t-will-gillis opened pull request: [4899](https://github.com/hackforla/website/pull/4899) at 2023-06-28 12:33 PM PDT -t-will-gillis,2023-06-28T20:39:18Z,- t-will-gillis pull request merged: [4846](https://github.com/hackforla/website/pull/4846#event-9669545446) at 2023-06-28 01:39 PM PDT -t-will-gillis,2023-06-28T20:39:19Z,- t-will-gillis closed issue by PR 4846: [4829](https://github.com/hackforla/website/issues/4829#event-9669546296) at 2023-06-28 01:39 PM PDT -t-will-gillis,2023-06-29T15:25:54Z,- t-will-gillis pull request merged: [4832](https://github.com/hackforla/website/pull/4832#event-9678509683) at 2023-06-29 08:25 AM PDT -t-will-gillis,2023-06-29T15:25:56Z,- t-will-gillis closed issue by PR 4832: [4824](https://github.com/hackforla/website/issues/4824#event-9678510433) at 2023-06-29 08:25 AM PDT -t-will-gillis,2023-06-29T16:34:45Z,- t-will-gillis pull request merged: [4899](https://github.com/hackforla/website/pull/4899#event-9679322328) at 2023-06-29 09:34 AM PDT -t-will-gillis,2023-06-29T16:34:46Z,- t-will-gillis closed issue by PR 4899: [4898](https://github.com/hackforla/website/issues/4898#event-9679322646) at 2023-06-29 09:34 AM PDT -t-will-gillis,2023-06-29T17:57:26Z,- t-will-gillis opened issue: [4901](https://github.com/hackforla/website/issues/4901) at 2023-06-29 10:57 AM PDT -t-will-gillis,2023-06-29T18:07:35Z,- t-will-gillis submitted pull request review: [4879](https://github.com/hackforla/website/pull/4879#pullrequestreview-1505814694) at 2023-06-29 11:07 AM PDT -t-will-gillis,2023-06-29T18:26:32Z,- t-will-gillis assigned to issue: [4822](https://github.com/hackforla/website/issues/4822#issuecomment-1594133772) at 2023-06-29 11:26 AM PDT -t-will-gillis,2023-06-29T18:27:23Z,- t-will-gillis commented on issue: [4822](https://github.com/hackforla/website/issues/4822#issuecomment-1613607549) at 2023-06-29 11:27 AM PDT -t-will-gillis,2023-06-29T21:36:08Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1613838170) at 2023-06-29 02:36 PM PDT -t-will-gillis,2023-06-29T22:01:39Z,- t-will-gillis commented on issue: [4839](https://github.com/hackforla/website/issues/4839#issuecomment-1613859645) at 2023-06-29 03:01 PM PDT -t-will-gillis,2023-06-30T17:39:15Z,- t-will-gillis pull request merged: [4836](https://github.com/hackforla/website/pull/4836#event-9690232467) at 2023-06-30 10:39 AM PDT -t-will-gillis,2023-06-30T17:39:17Z,- t-will-gillis closed issue by PR 4836: [4827](https://github.com/hackforla/website/issues/4827#event-9690232611) at 2023-06-30 10:39 AM PDT -t-will-gillis,2023-07-01T04:01:33Z,- t-will-gillis opened pull request: [4904](https://github.com/hackforla/website/pull/4904) at 2023-06-30 09:01 PM PDT -t-will-gillis,2023-07-02T04:28:34Z,- t-will-gillis opened pull request: [4905](https://github.com/hackforla/website/pull/4905) at 2023-07-01 09:28 PM PDT -t-will-gillis,2023-07-02T04:57:02Z,- t-will-gillis opened issue: [4906](https://github.com/hackforla/website/issues/4906) at 2023-07-01 09:57 PM PDT -t-will-gillis,2023-07-02T05:00:27Z,- t-will-gillis commented on issue: [4868](https://github.com/hackforla/website/issues/4868#issuecomment-1616373018) at 2023-07-01 10:00 PM PDT -t-will-gillis,2023-07-02T05:01:03Z,- t-will-gillis closed issue as completed: [4868](https://github.com/hackforla/website/issues/4868#event-9698767569) at 2023-07-01 10:01 PM PDT -t-will-gillis,2023-07-03T15:58:07Z,- t-will-gillis commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1618770508) at 2023-07-03 08:58 AM PDT -t-will-gillis,2023-07-03T18:19:40Z,- t-will-gillis commented on issue: [4776](https://github.com/hackforla/website/issues/4776#issuecomment-1618974856) at 2023-07-03 11:19 AM PDT -t-will-gillis,2023-07-03T18:19:41Z,- t-will-gillis closed issue as completed: [4776](https://github.com/hackforla/website/issues/4776#event-9712430111) at 2023-07-03 11:19 AM PDT -t-will-gillis,2023-07-03T20:41:21Z,- t-will-gillis commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1619128965) at 2023-07-03 01:41 PM PDT -t-will-gillis,2023-07-03T22:58:06Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1619236703) at 2023-07-03 03:58 PM PDT -t-will-gillis,2023-07-04T05:05:30Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1619494053) at 2023-07-03 10:05 PM PDT -t-will-gillis,2023-07-05T22:36:23Z,- t-will-gillis submitted pull request review: [4908](https://github.com/hackforla/website/pull/4908#pullrequestreview-1515469485) at 2023-07-05 03:36 PM PDT -t-will-gillis,2023-07-05T23:26:10Z,- t-will-gillis opened issue: [4913](https://github.com/hackforla/website/issues/4913) at 2023-07-05 04:26 PM PDT -t-will-gillis,2023-07-06T00:17:14Z,- t-will-gillis opened issue: [4914](https://github.com/hackforla/website/issues/4914) at 2023-07-05 05:17 PM PDT -t-will-gillis,2023-07-06T00:54:10Z,- t-will-gillis closed issue as not planned: [4914](https://github.com/hackforla/website/issues/4914#event-9737973771) at 2023-07-05 05:54 PM PDT -t-will-gillis,2023-07-06T03:43:13Z,- t-will-gillis commented on pull request: [4886](https://github.com/hackforla/website/pull/4886#issuecomment-1622921794) at 2023-07-05 08:43 PM PDT -t-will-gillis,2023-07-06T17:24:25Z,- t-will-gillis commented on pull request: [4908](https://github.com/hackforla/website/pull/4908#issuecomment-1624044047) at 2023-07-06 10:24 AM PDT -t-will-gillis,2023-07-08T23:35:14Z,- t-will-gillis commented on issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1627544332) at 2023-07-08 04:35 PM PDT -t-will-gillis,2023-07-08T23:39:43Z,- t-will-gillis commented on issue: [4861](https://github.com/hackforla/website/issues/4861#issuecomment-1627545054) at 2023-07-08 04:39 PM PDT -t-will-gillis,2023-07-09T19:18:48Z,- t-will-gillis pull request merged: [4905](https://github.com/hackforla/website/pull/4905#event-9767741669) at 2023-07-09 12:18 PM PDT -t-will-gillis,2023-07-09T19:18:49Z,- t-will-gillis closed issue by PR 4905: [4822](https://github.com/hackforla/website/issues/4822#event-9767741720) at 2023-07-09 12:18 PM PDT -t-will-gillis,2023-07-09T20:47:45Z,- t-will-gillis commented on issue: [3863](https://github.com/hackforla/website/issues/3863#issuecomment-1627820769) at 2023-07-09 01:47 PM PDT -t-will-gillis,2023-07-09T21:26:47Z,- t-will-gillis commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1627829742) at 2023-07-09 02:26 PM PDT -t-will-gillis,2023-07-09T21:29:03Z,- t-will-gillis commented on pull request: [4737](https://github.com/hackforla/website/pull/4737#issuecomment-1627830145) at 2023-07-09 02:29 PM PDT -t-will-gillis,2023-07-10T05:01:57Z,- t-will-gillis submitted pull request review: [4743](https://github.com/hackforla/website/pull/4743#pullrequestreview-1521220742) at 2023-07-09 10:01 PM PDT -t-will-gillis,2023-07-10T05:21:29Z,- t-will-gillis commented on pull request: [4735](https://github.com/hackforla/website/pull/4735#issuecomment-1628222480) at 2023-07-09 10:21 PM PDT -t-will-gillis,2023-07-10T05:40:26Z,- t-will-gillis submitted pull request review: [4735](https://github.com/hackforla/website/pull/4735#pullrequestreview-1521248015) at 2023-07-09 10:40 PM PDT -t-will-gillis,2023-07-10T05:46:05Z,- t-will-gillis submitted pull request review: [4739](https://github.com/hackforla/website/pull/4739#pullrequestreview-1521252372) at 2023-07-09 10:46 PM PDT -t-will-gillis,2023-07-10T06:03:54Z,- t-will-gillis submitted pull request review: [4740](https://github.com/hackforla/website/pull/4740#pullrequestreview-1521271115) at 2023-07-09 11:03 PM PDT -t-will-gillis,2023-07-10T06:15:17Z,- t-will-gillis assigned to issue: [4815](https://github.com/hackforla/website/issues/4815) at 2023-07-09 11:15 PM PDT -t-will-gillis,2023-07-10T21:49:12Z,- t-will-gillis submitted pull request review: [4742](https://github.com/hackforla/website/pull/4742#pullrequestreview-1523095319) at 2023-07-10 02:49 PM PDT -t-will-gillis,2023-07-11T02:49:34Z,- t-will-gillis opened issue: [4933](https://github.com/hackforla/website/issues/4933) at 2023-07-10 07:49 PM PDT -t-will-gillis,2023-07-11T02:49:35Z,- t-will-gillis assigned to issue: [4933](https://github.com/hackforla/website/issues/4933) at 2023-07-10 07:49 PM PDT -t-will-gillis,2023-07-11T02:52:11Z,- t-will-gillis opened issue: [4934](https://github.com/hackforla/website/issues/4934) at 2023-07-10 07:52 PM PDT -t-will-gillis,2023-07-11T02:52:12Z,- t-will-gillis assigned to issue: [4934](https://github.com/hackforla/website/issues/4934) at 2023-07-10 07:52 PM PDT -t-will-gillis,2023-07-11T03:07:12Z,- t-will-gillis opened pull request: [4935](https://github.com/hackforla/website/pull/4935) at 2023-07-10 08:07 PM PDT -t-will-gillis,2023-07-11T03:25:28Z,- t-will-gillis commented on pull request: [4935](https://github.com/hackforla/website/pull/4935#issuecomment-1630047629) at 2023-07-10 08:25 PM PDT -t-will-gillis,2023-07-11T03:25:28Z,- t-will-gillis pull request closed w/o merging: [4935](https://github.com/hackforla/website/pull/4935#event-9782075403) at 2023-07-10 08:25 PM PDT -t-will-gillis,2023-07-11T03:47:55Z,- t-will-gillis opened pull request: [4936](https://github.com/hackforla/website/pull/4936) at 2023-07-10 08:47 PM PDT -t-will-gillis,2023-07-11T04:19:03Z,- t-will-gillis opened pull request: [4937](https://github.com/hackforla/website/pull/4937) at 2023-07-10 09:19 PM PDT -t-will-gillis,2023-07-12T05:37:53Z,- t-will-gillis commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1631879467) at 2023-07-11 10:37 PM PDT -t-will-gillis,2023-07-12T06:15:51Z,- t-will-gillis submitted pull request review: [4791](https://github.com/hackforla/website/pull/4791#pullrequestreview-1525588194) at 2023-07-11 11:15 PM PDT -t-will-gillis,2023-07-12T06:42:03Z,- t-will-gillis submitted pull request review: [4941](https://github.com/hackforla/website/pull/4941#pullrequestreview-1525622294) at 2023-07-11 11:42 PM PDT -t-will-gillis,2023-07-12T19:07:17Z,- t-will-gillis commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1633062736) at 2023-07-12 12:07 PM PDT -t-will-gillis,2023-07-12T19:21:18Z,- t-will-gillis submitted pull request review: [4886](https://github.com/hackforla/website/pull/4886#pullrequestreview-1527090997) at 2023-07-12 12:21 PM PDT -t-will-gillis,2023-07-13T04:50:19Z,- t-will-gillis commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633541176) at 2023-07-12 09:50 PM PDT -t-will-gillis,2023-07-13T04:50:19Z,- t-will-gillis pull request merged: [4937](https://github.com/hackforla/website/pull/4937#event-9806177949) at 2023-07-12 09:50 PM PDT -t-will-gillis,2023-07-13T05:07:41Z,- t-will-gillis commented on pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633553926) at 2023-07-12 10:07 PM PDT -t-will-gillis,2023-07-13T05:07:41Z,- t-will-gillis reopened pull request: [4937](https://github.com/hackforla/website/pull/4937#issuecomment-1633553926) at 2023-07-12 10:07 PM PDT -t-will-gillis,2023-07-13T17:11:46Z,- t-will-gillis opened issue: [4946](https://github.com/hackforla/website/issues/4946) at 2023-07-13 10:11 AM PDT -t-will-gillis,2023-07-13T17:27:11Z,- t-will-gillis assigned to issue: [4946](https://github.com/hackforla/website/issues/4946) at 2023-07-13 10:27 AM PDT -t-will-gillis,2023-07-13T17:36:11Z,- t-will-gillis opened pull request: [4947](https://github.com/hackforla/website/pull/4947) at 2023-07-13 10:36 AM PDT -t-will-gillis,2023-07-14T04:08:39Z,- t-will-gillis submitted pull request review: [4929](https://github.com/hackforla/website/pull/4929#pullrequestreview-1529563582) at 2023-07-13 09:08 PM PDT -t-will-gillis,2023-07-14T04:36:46Z,- t-will-gillis submitted pull request review: [4930](https://github.com/hackforla/website/pull/4930#pullrequestreview-1529582673) at 2023-07-13 09:36 PM PDT -t-will-gillis,2023-07-14T05:32:26Z,- t-will-gillis submitted pull request review: [4940](https://github.com/hackforla/website/pull/4940#pullrequestreview-1529629439) at 2023-07-13 10:32 PM PDT -t-will-gillis,2023-07-15T05:33:17Z,- t-will-gillis commented on pull request: [4738](https://github.com/hackforla/website/pull/4738#issuecomment-1636673584) at 2023-07-14 10:33 PM PDT -t-will-gillis,2023-07-15T06:05:38Z,- t-will-gillis submitted pull request review: [4738](https://github.com/hackforla/website/pull/4738#pullrequestreview-1531294053) at 2023-07-14 11:05 PM PDT -t-will-gillis,2023-07-15T15:33:12Z,- t-will-gillis commented on pull request: [4902](https://github.com/hackforla/website/pull/4902#issuecomment-1636802087) at 2023-07-15 08:33 AM PDT -t-will-gillis,2023-07-15T15:36:25Z,- t-will-gillis commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1636802880) at 2023-07-15 08:36 AM PDT -t-will-gillis,2023-07-15T15:36:25Z,- t-will-gillis closed issue by PR 5049: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-15 08:36 AM PDT -t-will-gillis,2023-07-15T15:36:41Z,- t-will-gillis reopened issue: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-15 08:36 AM PDT -t-will-gillis,2023-07-16T04:51:27Z,- t-will-gillis pull request merged: [4947](https://github.com/hackforla/website/pull/4947#event-9830363299) at 2023-07-15 09:51 PM PDT -t-will-gillis,2023-07-16T04:51:28Z,- t-will-gillis closed issue by PR 4947: [4946](https://github.com/hackforla/website/issues/4946#event-9830363320) at 2023-07-15 09:51 PM PDT -t-will-gillis,2023-07-16T17:00:58Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1637138919) at 2023-07-16 10:00 AM PDT -t-will-gillis,2023-07-17T02:04:37Z,- t-will-gillis commented on pull request: [4936](https://github.com/hackforla/website/pull/4936#issuecomment-1637282694) at 2023-07-16 07:04 PM PDT -t-will-gillis,2023-07-17T03:18:32Z,- t-will-gillis pull request merged: [4937](https://github.com/hackforla/website/pull/4937#event-9832550653) at 2023-07-16 08:18 PM PDT -t-will-gillis,2023-07-17T03:18:33Z,- t-will-gillis closed issue by PR 4937: [4934](https://github.com/hackforla/website/issues/4934#event-9832550739) at 2023-07-16 08:18 PM PDT -t-will-gillis,2023-07-17T03:22:57Z,- t-will-gillis commented on issue: [4830](https://github.com/hackforla/website/issues/4830#issuecomment-1637322581) at 2023-07-16 08:22 PM PDT -t-will-gillis,2023-07-17T18:05:22Z,- t-will-gillis opened issue: [4961](https://github.com/hackforla/website/issues/4961) at 2023-07-17 11:05 AM PDT -t-will-gillis,2023-07-17T18:09:58Z,- t-will-gillis submitted pull request review: [4925](https://github.com/hackforla/website/pull/4925#pullrequestreview-1533395743) at 2023-07-17 11:09 AM PDT -t-will-gillis,2023-07-17T18:22:16Z,- t-will-gillis pull request merged: [4936](https://github.com/hackforla/website/pull/4936#event-9841158282) at 2023-07-17 11:22 AM PDT -t-will-gillis,2023-07-17T18:22:18Z,- t-will-gillis closed issue by PR 4936: [4933](https://github.com/hackforla/website/issues/4933#event-9841158578) at 2023-07-17 11:22 AM PDT -t-will-gillis,2023-07-17T18:26:29Z,- t-will-gillis commented on pull request: [4734](https://github.com/hackforla/website/pull/4734#issuecomment-1638655553) at 2023-07-17 11:26 AM PDT -t-will-gillis,2023-07-17T21:44:29Z,- t-will-gillis closed issue by PR 4925: [4870](https://github.com/hackforla/website/issues/4870#event-9843093577) at 2023-07-17 02:44 PM PDT -t-will-gillis,2023-07-18T03:28:55Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1639284961) at 2023-07-17 08:28 PM PDT -t-will-gillis,2023-07-18T19:48:31Z,- t-will-gillis submitted pull request review: [4928](https://github.com/hackforla/website/pull/4928#pullrequestreview-1535804147) at 2023-07-18 12:48 PM PDT -t-will-gillis,2023-07-18T19:48:39Z,- t-will-gillis closed issue by PR 4928: [4488](https://github.com/hackforla/website/issues/4488#event-9854877516) at 2023-07-18 12:48 PM PDT -t-will-gillis,2023-07-19T03:12:59Z,- t-will-gillis submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1536182211) at 2023-07-18 08:12 PM PDT -t-will-gillis,2023-07-19T03:14:11Z,- t-will-gillis submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1536182828) at 2023-07-18 08:14 PM PDT -t-will-gillis,2023-07-19T03:17:11Z,- t-will-gillis submitted pull request review: [4731](https://github.com/hackforla/website/pull/4731#pullrequestreview-1536184355) at 2023-07-18 08:17 PM PDT -t-will-gillis,2023-07-19T03:39:37Z,- t-will-gillis commented on pull request: [4731](https://github.com/hackforla/website/pull/4731#issuecomment-1641366746) at 2023-07-18 08:39 PM PDT -t-will-gillis,2023-07-19T03:39:43Z,- t-will-gillis closed issue by PR 4731: [4418](https://github.com/hackforla/website/issues/4418#event-9857518142) at 2023-07-18 08:39 PM PDT -t-will-gillis,2023-07-19T03:53:08Z,- t-will-gillis assigned to issue: [4860](https://github.com/hackforla/website/issues/4860#issuecomment-1627544332) at 2023-07-18 08:53 PM PDT -t-will-gillis,2023-07-19T17:53:31Z,- t-will-gillis opened pull request: [5034](https://github.com/hackforla/website/pull/5034) at 2023-07-19 10:53 AM PDT -t-will-gillis,2023-07-19T18:28:57Z,- t-will-gillis closed issue by PR 5025: [4861](https://github.com/hackforla/website/issues/4861#event-9865999092) at 2023-07-19 11:28 AM PDT -t-will-gillis,2023-07-19T21:27:30Z,- t-will-gillis submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1538069417) at 2023-07-19 02:27 PM PDT -t-will-gillis,2023-07-19T22:10:06Z,- t-will-gillis submitted pull request review: [4945](https://github.com/hackforla/website/pull/4945#pullrequestreview-1538115259) at 2023-07-19 03:10 PM PDT -t-will-gillis,2023-07-20T16:14:42Z,- t-will-gillis pull request merged: [5034](https://github.com/hackforla/website/pull/5034#event-9876580889) at 2023-07-20 09:14 AM PDT -t-will-gillis,2023-07-20T16:14:43Z,- t-will-gillis closed issue by PR 5034: [4860](https://github.com/hackforla/website/issues/4860#event-9876581118) at 2023-07-20 09:14 AM PDT -t-will-gillis,2023-07-20T17:02:36Z,- t-will-gillis assigned to issue: [4777](https://github.com/hackforla/website/issues/4777) at 2023-07-20 10:02 AM PDT -t-will-gillis,2023-07-20T17:05:45Z,- t-will-gillis commented on issue: [4777](https://github.com/hackforla/website/issues/4777#issuecomment-1644282710) at 2023-07-20 10:05 AM PDT -t-will-gillis,2023-07-20T17:05:45Z,- t-will-gillis closed issue as completed: [4777](https://github.com/hackforla/website/issues/4777#event-9877074317) at 2023-07-20 10:05 AM PDT -t-will-gillis,2023-07-21T22:07:48Z,- t-will-gillis closed issue by PR 4945: [4864](https://github.com/hackforla/website/issues/4864#event-9889250381) at 2023-07-21 03:07 PM PDT -t-will-gillis,2023-07-21T22:26:27Z,- t-will-gillis commented on issue: [4794](https://github.com/hackforla/website/issues/4794#issuecomment-1646298072) at 2023-07-21 03:26 PM PDT -t-will-gillis,2023-07-21T22:26:28Z,- t-will-gillis closed issue as completed: [4794](https://github.com/hackforla/website/issues/4794#event-9889338504) at 2023-07-21 03:26 PM PDT -t-will-gillis,2023-07-22T02:33:38Z,- t-will-gillis opened issue: [5048](https://github.com/hackforla/website/issues/5048) at 2023-07-21 07:33 PM PDT -t-will-gillis,2023-07-22T02:49:24Z,- t-will-gillis commented on issue: [4815](https://github.com/hackforla/website/issues/4815#issuecomment-1646408446) at 2023-07-21 07:49 PM PDT -t-will-gillis,2023-07-22T02:49:24Z,- t-will-gillis closed issue as completed: [4815](https://github.com/hackforla/website/issues/4815#event-9890033776) at 2023-07-21 07:49 PM PDT -t-will-gillis,2023-07-23T16:59:14Z,- t-will-gillis submitted pull request review: [5053](https://github.com/hackforla/website/pull/5053#pullrequestreview-1542289031) at 2023-07-23 09:59 AM PDT -t-will-gillis,2023-07-23T18:16:47Z,- t-will-gillis assigned to issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1637138919) at 2023-07-23 11:16 AM PDT -t-will-gillis,2023-07-25T15:06:40Z,- t-will-gillis commented on issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1650022636) at 2023-07-25 08:06 AM PDT -t-will-gillis,2023-07-25T22:36:45Z,- t-will-gillis commented on pull request: [5037](https://github.com/hackforla/website/pull/5037#issuecomment-1650656360) at 2023-07-25 03:36 PM PDT -t-will-gillis,2023-07-27T21:17:39Z,- t-will-gillis submitted pull request review: [5096](https://github.com/hackforla/website/pull/5096#pullrequestreview-1550809808) at 2023-07-27 02:17 PM PDT -t-will-gillis,2023-07-27T21:19:08Z,- t-will-gillis closed issue by PR 5096: [4811](https://github.com/hackforla/website/issues/4811#event-9940818602) at 2023-07-27 02:19 PM PDT -t-will-gillis,2023-07-28T22:10:59Z,- t-will-gillis commented on issue: [4852](https://github.com/hackforla/website/issues/4852#issuecomment-1656380584) at 2023-07-28 03:10 PM PDT -t-will-gillis,2023-07-28T22:10:59Z,- t-will-gillis closed issue as completed: [4852](https://github.com/hackforla/website/issues/4852#event-9952607816) at 2023-07-28 03:10 PM PDT -t-will-gillis,2023-07-29T16:56:21Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656789087) at 2023-07-29 09:56 AM PDT -t-will-gillis,2023-07-29T16:58:51Z,- t-will-gillis commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656789547) at 2023-07-29 09:58 AM PDT -t-will-gillis,2023-07-30T01:01:47Z,- t-will-gillis commented on pull request: [5106](https://github.com/hackforla/website/pull/5106#issuecomment-1656986359) at 2023-07-29 06:01 PM PDT -t-will-gillis,2023-07-30T03:05:42Z,- t-will-gillis submitted pull request review: [5106](https://github.com/hackforla/website/pull/5106#pullrequestreview-1553539698) at 2023-07-29 08:05 PM PDT -t-will-gillis,2023-07-30T14:49:48Z,- t-will-gillis closed issue by PR 5106: [4906](https://github.com/hackforla/website/issues/4906#event-9956897143) at 2023-07-30 07:49 AM PDT -t-will-gillis,2023-07-30T16:15:31Z,- t-will-gillis submitted pull request review: [5104](https://github.com/hackforla/website/pull/5104#pullrequestreview-1553665937) at 2023-07-30 09:15 AM PDT -t-will-gillis,2023-07-30T16:28:39Z,- t-will-gillis submitted pull request review: [5108](https://github.com/hackforla/website/pull/5108#pullrequestreview-1553667303) at 2023-07-30 09:28 AM PDT -t-will-gillis,2023-07-30T16:28:50Z,- t-will-gillis closed issue by PR 5108: [4806](https://github.com/hackforla/website/issues/4806#event-9957044308) at 2023-07-30 09:28 AM PDT -t-will-gillis,2023-07-30T16:45:58Z,- t-will-gillis submitted pull request review: [5111](https://github.com/hackforla/website/pull/5111#pullrequestreview-1553669023) at 2023-07-30 09:45 AM PDT -t-will-gillis,2023-07-30T18:40:21Z,- t-will-gillis submitted pull request review: [5111](https://github.com/hackforla/website/pull/5111#pullrequestreview-1553681389) at 2023-07-30 11:40 AM PDT -t-will-gillis,2023-07-30T18:47:40Z,- t-will-gillis commented on pull request: [5111](https://github.com/hackforla/website/pull/5111#issuecomment-1657240296) at 2023-07-30 11:47 AM PDT -t-will-gillis,2023-07-30T18:47:53Z,- t-will-gillis closed issue by PR 5111: [4803](https://github.com/hackforla/website/issues/4803#event-9957228371) at 2023-07-30 11:47 AM PDT -t-will-gillis,2023-07-30T18:50:24Z,- t-will-gillis closed issue by PR 5109: [4814](https://github.com/hackforla/website/issues/4814#event-9957231633) at 2023-07-30 11:50 AM PDT -t-will-gillis,2023-08-01T03:08:11Z,- t-will-gillis submitted pull request review: [5104](https://github.com/hackforla/website/pull/5104#pullrequestreview-1556096652) at 2023-07-31 08:08 PM PDT -t-will-gillis,2023-08-01T03:09:48Z,- t-will-gillis commented on pull request: [5104](https://github.com/hackforla/website/pull/5104#issuecomment-1659497116) at 2023-07-31 08:09 PM PDT -t-will-gillis,2023-08-01T03:09:55Z,- t-will-gillis closed issue by PR 5104: [4807](https://github.com/hackforla/website/issues/4807#event-9971318718) at 2023-07-31 08:09 PM PDT -t-will-gillis,2023-08-02T23:28:35Z,- t-will-gillis commented on pull request: [4904](https://github.com/hackforla/website/pull/4904#issuecomment-1663093573) at 2023-08-02 04:28 PM PDT -t-will-gillis,2023-08-06T15:15:21Z,- t-will-gillis submitted pull request review: [5120](https://github.com/hackforla/website/pull/5120#pullrequestreview-1564167338) at 2023-08-06 08:15 AM PDT -t-will-gillis,2023-08-06T15:15:29Z,- t-will-gillis closed issue by PR 5120: [5036](https://github.com/hackforla/website/issues/5036#event-10017488912) at 2023-08-06 08:15 AM PDT -t-will-gillis,2023-08-06T15:27:51Z,- t-will-gillis submitted pull request review: [5121](https://github.com/hackforla/website/pull/5121#pullrequestreview-1564168882) at 2023-08-06 08:27 AM PDT -t-will-gillis,2023-08-06T15:29:16Z,- t-will-gillis closed issue by PR 5121: [4818](https://github.com/hackforla/website/issues/4818#event-10017508820) at 2023-08-06 08:29 AM PDT -t-will-gillis,2023-08-06T15:50:31Z,- t-will-gillis submitted pull request review: [5125](https://github.com/hackforla/website/pull/5125#pullrequestreview-1564171517) at 2023-08-06 08:50 AM PDT -t-will-gillis,2023-08-06T16:04:06Z,- t-will-gillis commented on pull request: [5103](https://github.com/hackforla/website/pull/5103#issuecomment-1666906047) at 2023-08-06 09:04 AM PDT -t-will-gillis,2023-08-06T16:20:27Z,- t-will-gillis commented on pull request: [5118](https://github.com/hackforla/website/pull/5118#issuecomment-1666910377) at 2023-08-06 09:20 AM PDT -t-will-gillis,2023-08-06T16:45:00Z,- t-will-gillis submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1564177568) at 2023-08-06 09:45 AM PDT -t-will-gillis,2023-08-07T04:54:52Z,- t-will-gillis commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1667185042) at 2023-08-06 09:54 PM PDT -t-will-gillis,2023-08-07T17:06:58Z,- t-will-gillis commented on issue: [5115](https://github.com/hackforla/website/issues/5115#issuecomment-1668272176) at 2023-08-07 10:06 AM PDT -t-will-gillis,2023-08-07T17:06:58Z,- t-will-gillis closed issue as completed: [5115](https://github.com/hackforla/website/issues/5115#event-10026821824) at 2023-08-07 10:06 AM PDT -t-will-gillis,2023-08-07T17:16:11Z,- t-will-gillis commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1668283275) at 2023-08-07 10:16 AM PDT -t-will-gillis,2023-08-07T17:30:44Z,- t-will-gillis assigned to issue: [4768](https://github.com/hackforla/website/issues/4768#issuecomment-1650022636) at 2023-08-07 10:30 AM PDT -t-will-gillis,2023-08-07T18:56:53Z,- t-will-gillis submitted pull request review: [5157](https://github.com/hackforla/website/pull/5157#pullrequestreview-1565983851) at 2023-08-07 11:56 AM PDT -t-will-gillis,2023-08-07T18:58:22Z,- t-will-gillis closed issue by PR 5157: [5101](https://github.com/hackforla/website/issues/5101#event-10027766065) at 2023-08-07 11:58 AM PDT -t-will-gillis,2023-08-07T19:02:09Z,- t-will-gillis commented on pull request: [5125](https://github.com/hackforla/website/pull/5125#issuecomment-1668427916) at 2023-08-07 12:02 PM PDT -t-will-gillis,2023-08-07T22:08:47Z,- t-will-gillis opened pull request: [5158](https://github.com/hackforla/website/pull/5158) at 2023-08-07 03:08 PM PDT -t-will-gillis,2023-08-08T03:48:51Z,- t-will-gillis opened issue: [5163](https://github.com/hackforla/website/issues/5163) at 2023-08-07 08:48 PM PDT -t-will-gillis,2023-08-08T04:32:41Z,- t-will-gillis opened issue: [5164](https://github.com/hackforla/website/issues/5164) at 2023-08-07 09:32 PM PDT -t-will-gillis,2023-08-08T17:53:15Z,- t-will-gillis submitted pull request review: [5143](https://github.com/hackforla/website/pull/5143#pullrequestreview-1567847211) at 2023-08-08 10:53 AM PDT -t-will-gillis,2023-08-16T06:14:32Z,- t-will-gillis pull request merged: [4904](https://github.com/hackforla/website/pull/4904#event-10104156824) at 2023-08-15 11:14 PM PDT -t-will-gillis,2023-08-16T17:34:57Z,- t-will-gillis submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1581120475) at 2023-08-16 10:34 AM PDT -t-will-gillis,2023-08-18T02:45:49Z,- t-will-gillis closed issue by PR 5135: [5028](https://github.com/hackforla/website/issues/5028#event-10125432611) at 2023-08-17 07:45 PM PDT -t-will-gillis,2023-08-22T20:25:20Z,- t-will-gillis commented on issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-1688877945) at 2023-08-22 01:25 PM PDT -t-will-gillis,2023-08-25T05:18:34Z,- t-will-gillis commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1692773614) at 2023-08-24 10:18 PM PDT -t-will-gillis,2023-08-25T16:30:18Z,- t-will-gillis commented on issue: [3866](https://github.com/hackforla/website/issues/3866#issuecomment-1693625073) at 2023-08-25 09:30 AM PDT -t-will-gillis,2023-08-25T16:30:18Z,- t-will-gillis closed issue as completed: [3866](https://github.com/hackforla/website/issues/3866#event-10194896482) at 2023-08-25 09:30 AM PDT -t-will-gillis,2023-08-25T17:18:03Z,- t-will-gillis commented on issue: [4252](https://github.com/hackforla/website/issues/4252#issuecomment-1693692619) at 2023-08-25 10:18 AM PDT -t-will-gillis,2023-08-25T17:18:03Z,- t-will-gillis closed issue as completed: [4252](https://github.com/hackforla/website/issues/4252#event-10195353890) at 2023-08-25 10:18 AM PDT -t-will-gillis,2023-08-25T17:36:13Z,- t-will-gillis commented on issue: [4523](https://github.com/hackforla/website/issues/4523#issuecomment-1693713935) at 2023-08-25 10:36 AM PDT -t-will-gillis,2023-08-25T17:36:13Z,- t-will-gillis closed issue as completed: [4523](https://github.com/hackforla/website/issues/4523#event-10195513024) at 2023-08-25 10:36 AM PDT -t-will-gillis,2023-08-25T18:49:47Z,- t-will-gillis commented on issue: [5099](https://github.com/hackforla/website/issues/5099#issuecomment-1693794145) at 2023-08-25 11:49 AM PDT -t-will-gillis,2023-08-25T19:15:02Z,- t-will-gillis commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1693819964) at 2023-08-25 12:15 PM PDT -t-will-gillis,2023-08-26T21:02:43Z,- t-will-gillis commented on pull request: [5308](https://github.com/hackforla/website/pull/5308#issuecomment-1694500944) at 2023-08-26 02:02 PM PDT -t-will-gillis,2023-08-27T14:51:05Z,- t-will-gillis commented on pull request: [5314](https://github.com/hackforla/website/pull/5314#issuecomment-1694687881) at 2023-08-27 07:51 AM PDT -t-will-gillis,2023-08-27T17:49:08Z,- t-will-gillis opened issue: [5315](https://github.com/hackforla/website/issues/5315) at 2023-08-27 10:49 AM PDT -t-will-gillis,2023-08-27T17:50:05Z,- t-will-gillis commented on issue: [5238](https://github.com/hackforla/website/issues/5238#issuecomment-1694724777) at 2023-08-27 10:50 AM PDT -t-will-gillis,2023-08-27T17:50:05Z,- t-will-gillis closed issue as completed: [5238](https://github.com/hackforla/website/issues/5238#event-10202231044) at 2023-08-27 10:50 AM PDT -t-will-gillis,2023-08-27T18:08:31Z,- t-will-gillis opened issue: [5316](https://github.com/hackforla/website/issues/5316) at 2023-08-27 11:08 AM PDT -t-will-gillis,2023-08-27T18:09:51Z,- t-will-gillis commented on issue: [5191](https://github.com/hackforla/website/issues/5191#issuecomment-1694728529) at 2023-08-27 11:09 AM PDT -t-will-gillis,2023-08-27T18:09:51Z,- t-will-gillis closed issue as completed: [5191](https://github.com/hackforla/website/issues/5191#event-10202256783) at 2023-08-27 11:09 AM PDT -t-will-gillis,2023-08-27T19:17:10Z,- t-will-gillis assigned to issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694731823) at 2023-08-27 12:17 PM PDT -t-will-gillis,2023-08-27T19:17:44Z,- t-will-gillis commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694740835) at 2023-08-27 12:17 PM PDT -t-will-gillis,2023-08-27T20:00:37Z,- t-will-gillis commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1694748683) at 2023-08-27 01:00 PM PDT -t-will-gillis,2023-08-27T20:58:28Z,- t-will-gillis opened issue: [5321](https://github.com/hackforla/website/issues/5321) at 2023-08-27 01:58 PM PDT -t-will-gillis,2023-08-27T20:58:58Z,- t-will-gillis commented on issue: [5309](https://github.com/hackforla/website/issues/5309#issuecomment-1694760664) at 2023-08-27 01:58 PM PDT -t-will-gillis,2023-08-27T20:58:58Z,- t-will-gillis closed issue as completed: [5309](https://github.com/hackforla/website/issues/5309#event-10202482030) at 2023-08-27 01:58 PM PDT -t-will-gillis,2023-08-27T21:32:51Z,- t-will-gillis opened issue: [5322](https://github.com/hackforla/website/issues/5322) at 2023-08-27 02:32 PM PDT -t-will-gillis,2023-08-27T22:35:02Z,- t-will-gillis commented on issue: [4536](https://github.com/hackforla/website/issues/4536#issuecomment-1694778253) at 2023-08-27 03:35 PM PDT -t-will-gillis,2023-08-27T23:06:20Z,- t-will-gillis opened issue: [5323](https://github.com/hackforla/website/issues/5323) at 2023-08-27 04:06 PM PDT -t-will-gillis,2023-08-27T23:06:49Z,- t-will-gillis commented on issue: [5194](https://github.com/hackforla/website/issues/5194#issuecomment-1694785954) at 2023-08-27 04:06 PM PDT -t-will-gillis,2023-08-27T23:06:50Z,- t-will-gillis closed issue as completed: [5194](https://github.com/hackforla/website/issues/5194#event-10202651433) at 2023-08-27 04:06 PM PDT -t-will-gillis,2023-08-27T23:27:01Z,- t-will-gillis opened issue: [5324](https://github.com/hackforla/website/issues/5324) at 2023-08-27 04:27 PM PDT -t-will-gillis,2023-08-27T23:28:03Z,- t-will-gillis commented on issue: [5193](https://github.com/hackforla/website/issues/5193#issuecomment-1694790910) at 2023-08-27 04:28 PM PDT -t-will-gillis,2023-08-27T23:28:03Z,- t-will-gillis closed issue as completed: [5193](https://github.com/hackforla/website/issues/5193#event-10202685416) at 2023-08-27 04:28 PM PDT -t-will-gillis,2023-08-28T17:54:06Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1696104899) at 2023-08-28 10:54 AM PDT -t-will-gillis,2023-08-29T03:51:34Z,- t-will-gillis opened issue: [5330](https://github.com/hackforla/website/issues/5330) at 2023-08-28 08:51 PM PDT -t-will-gillis,2023-08-29T04:24:27Z,- t-will-gillis closed issue as not planned: [4567](https://github.com/hackforla/website/issues/4567#event-10216099554) at 2023-08-28 09:24 PM PDT -t-will-gillis,2023-08-29T04:28:10Z,- t-will-gillis assigned to issue: [5163](https://github.com/hackforla/website/issues/5163) at 2023-08-28 09:28 PM PDT -t-will-gillis,2023-08-29T05:04:10Z,- t-will-gillis opened issue: [5332](https://github.com/hackforla/website/issues/5332) at 2023-08-28 10:04 PM PDT -t-will-gillis,2023-08-29T05:04:55Z,- t-will-gillis commented on issue: [5274](https://github.com/hackforla/website/issues/5274#issuecomment-1696771066) at 2023-08-28 10:04 PM PDT -t-will-gillis,2023-08-29T05:04:55Z,- t-will-gillis closed issue as completed: [5274](https://github.com/hackforla/website/issues/5274#event-10216301311) at 2023-08-28 10:04 PM PDT -t-will-gillis,2023-08-29T15:00:59Z,- t-will-gillis commented on issue: [5153](https://github.com/hackforla/website/issues/5153#issuecomment-1697618049) at 2023-08-29 08:00 AM PDT -t-will-gillis,2023-08-29T15:08:06Z,- t-will-gillis commented on issue: [5321](https://github.com/hackforla/website/issues/5321#issuecomment-1697631292) at 2023-08-29 08:08 AM PDT -t-will-gillis,2023-08-29T15:26:56Z,- t-will-gillis commented on issue: [5149](https://github.com/hackforla/website/issues/5149#issuecomment-1697668271) at 2023-08-29 08:26 AM PDT -t-will-gillis,2023-08-29T15:26:56Z,- t-will-gillis closed issue as completed: [5149](https://github.com/hackforla/website/issues/5149#event-10222812872) at 2023-08-29 08:26 AM PDT -t-will-gillis,2023-08-29T19:14:09Z,- t-will-gillis opened issue: [5336](https://github.com/hackforla/website/issues/5336) at 2023-08-29 12:14 PM PDT -t-will-gillis,2023-08-29T19:23:00Z,- t-will-gillis commented on issue: [5273](https://github.com/hackforla/website/issues/5273#issuecomment-1698004945) at 2023-08-29 12:23 PM PDT -t-will-gillis,2023-08-29T19:23:00Z,- t-will-gillis closed issue as completed: [5273](https://github.com/hackforla/website/issues/5273#event-10225000202) at 2023-08-29 12:23 PM PDT -t-will-gillis,2023-08-29T20:08:40Z,- t-will-gillis opened issue: [5338](https://github.com/hackforla/website/issues/5338) at 2023-08-29 01:08 PM PDT -t-will-gillis,2023-08-29T20:09:19Z,- t-will-gillis commented on issue: [5272](https://github.com/hackforla/website/issues/5272#issuecomment-1698060556) at 2023-08-29 01:09 PM PDT -t-will-gillis,2023-08-29T20:09:19Z,- t-will-gillis closed issue as completed: [5272](https://github.com/hackforla/website/issues/5272#event-10225373327) at 2023-08-29 01:09 PM PDT -t-will-gillis,2023-08-29T20:26:24Z,- t-will-gillis commented on issue: [5268](https://github.com/hackforla/website/issues/5268#issuecomment-1698080235) at 2023-08-29 01:26 PM PDT -t-will-gillis,2023-08-29T20:36:25Z,- t-will-gillis opened issue: [5340](https://github.com/hackforla/website/issues/5340) at 2023-08-29 01:36 PM PDT -t-will-gillis,2023-08-29T20:36:49Z,- t-will-gillis commented on issue: [5268](https://github.com/hackforla/website/issues/5268#issuecomment-1698093645) at 2023-08-29 01:36 PM PDT -t-will-gillis,2023-08-29T20:36:49Z,- t-will-gillis closed issue as completed: [5268](https://github.com/hackforla/website/issues/5268#event-10225592876) at 2023-08-29 01:36 PM PDT -t-will-gillis,2023-08-29T20:50:01Z,- t-will-gillis opened issue: [5341](https://github.com/hackforla/website/issues/5341) at 2023-08-29 01:50 PM PDT -t-will-gillis,2023-08-29T20:50:40Z,- t-will-gillis commented on issue: [5246](https://github.com/hackforla/website/issues/5246#issuecomment-1698111127) at 2023-08-29 01:50 PM PDT -t-will-gillis,2023-08-29T20:50:40Z,- t-will-gillis closed issue as completed: [5246](https://github.com/hackforla/website/issues/5246#event-10225701769) at 2023-08-29 01:50 PM PDT -t-will-gillis,2023-08-29T21:00:58Z,- t-will-gillis opened issue: [5342](https://github.com/hackforla/website/issues/5342) at 2023-08-29 02:00 PM PDT -t-will-gillis,2023-08-29T21:01:59Z,- t-will-gillis commented on issue: [5192](https://github.com/hackforla/website/issues/5192#issuecomment-1698139839) at 2023-08-29 02:01 PM PDT -t-will-gillis,2023-08-29T21:01:59Z,- t-will-gillis closed issue as completed: [5192](https://github.com/hackforla/website/issues/5192#event-10225855114) at 2023-08-29 02:01 PM PDT -t-will-gillis,2023-08-29T21:33:08Z,- t-will-gillis commented on issue: [5195](https://github.com/hackforla/website/issues/5195#issuecomment-1698174286) at 2023-08-29 02:33 PM PDT -t-will-gillis,2023-08-29T22:00:20Z,- t-will-gillis opened issue: [5345](https://github.com/hackforla/website/issues/5345) at 2023-08-29 03:00 PM PDT -t-will-gillis,2023-08-30T04:58:11Z,- t-will-gillis commented on issue: [5195](https://github.com/hackforla/website/issues/5195#issuecomment-1698493490) at 2023-08-29 09:58 PM PDT -t-will-gillis,2023-08-30T04:58:11Z,- t-will-gillis closed issue as completed: [5195](https://github.com/hackforla/website/issues/5195#event-10228333221) at 2023-08-29 09:58 PM PDT -t-will-gillis,2023-08-30T05:09:21Z,- t-will-gillis opened issue: [5364](https://github.com/hackforla/website/issues/5364) at 2023-08-29 10:09 PM PDT -t-will-gillis,2023-08-30T17:43:08Z,- t-will-gillis commented on issue: [4505](https://github.com/hackforla/website/issues/4505#issuecomment-1699595296) at 2023-08-30 10:43 AM PDT -t-will-gillis,2023-08-30T17:47:05Z,- t-will-gillis assigned to issue: [5252](https://github.com/hackforla/website/issues/5252#issuecomment-1698378620) at 2023-08-30 10:47 AM PDT -t-will-gillis,2023-08-30T19:46:16Z,- t-will-gillis opened issue: [5376](https://github.com/hackforla/website/issues/5376) at 2023-08-30 12:46 PM PDT -t-will-gillis,2023-08-30T19:46:34Z,- t-will-gillis opened issue: [5377](https://github.com/hackforla/website/issues/5377) at 2023-08-30 12:46 PM PDT -t-will-gillis,2023-08-30T19:46:55Z,- t-will-gillis opened issue: [5378](https://github.com/hackforla/website/issues/5378) at 2023-08-30 12:46 PM PDT -t-will-gillis,2023-08-30T19:47:10Z,- t-will-gillis opened issue: [5379](https://github.com/hackforla/website/issues/5379) at 2023-08-30 12:47 PM PDT -t-will-gillis,2023-08-30T21:55:58Z,- t-will-gillis opened issue: [5383](https://github.com/hackforla/website/issues/5383) at 2023-08-30 02:55 PM PDT -t-will-gillis,2023-08-30T21:56:23Z,- t-will-gillis opened issue: [5384](https://github.com/hackforla/website/issues/5384) at 2023-08-30 02:56 PM PDT -t-will-gillis,2023-08-30T21:56:36Z,- t-will-gillis opened issue: [5385](https://github.com/hackforla/website/issues/5385) at 2023-08-30 02:56 PM PDT -t-will-gillis,2023-08-30T22:00:14Z,- t-will-gillis opened issue: [5386](https://github.com/hackforla/website/issues/5386) at 2023-08-30 03:00 PM PDT -t-will-gillis,2023-08-30T22:05:51Z,- t-will-gillis opened issue: [5387](https://github.com/hackforla/website/issues/5387) at 2023-08-30 03:05 PM PDT -t-will-gillis,2023-08-30T22:06:04Z,- t-will-gillis opened issue: [5388](https://github.com/hackforla/website/issues/5388) at 2023-08-30 03:06 PM PDT -t-will-gillis,2023-08-30T22:06:45Z,- t-will-gillis opened issue: [5389](https://github.com/hackforla/website/issues/5389) at 2023-08-30 03:06 PM PDT -t-will-gillis,2023-08-30T22:06:59Z,- t-will-gillis opened issue: [5390](https://github.com/hackforla/website/issues/5390) at 2023-08-30 03:06 PM PDT -t-will-gillis,2023-08-30T22:07:16Z,- t-will-gillis opened issue: [5391](https://github.com/hackforla/website/issues/5391) at 2023-08-30 03:07 PM PDT -t-will-gillis,2023-08-30T22:25:11Z,- t-will-gillis commented on issue: [5252](https://github.com/hackforla/website/issues/5252#issuecomment-1699933976) at 2023-08-30 03:25 PM PDT -t-will-gillis,2023-08-30T22:25:11Z,- t-will-gillis closed issue as completed: [5252](https://github.com/hackforla/website/issues/5252#event-10237921949) at 2023-08-30 03:25 PM PDT -t-will-gillis,2023-08-30T23:31:48Z,- t-will-gillis commented on pull request: [5380](https://github.com/hackforla/website/pull/5380#issuecomment-1699985184) at 2023-08-30 04:31 PM PDT -t-will-gillis,2023-08-31T04:31:43Z,- t-will-gillis opened issue: [5393](https://github.com/hackforla/website/issues/5393) at 2023-08-30 09:31 PM PDT -t-will-gillis,2023-08-31T04:34:25Z,- t-will-gillis opened issue: [5394](https://github.com/hackforla/website/issues/5394) at 2023-08-30 09:34 PM PDT -t-will-gillis,2023-08-31T04:35:43Z,- t-will-gillis commented on issue: [5381](https://github.com/hackforla/website/issues/5381#issuecomment-1700353761) at 2023-08-30 09:35 PM PDT -t-will-gillis,2023-08-31T04:35:43Z,- t-will-gillis closed issue as completed: [5381](https://github.com/hackforla/website/issues/5381#event-10239650273) at 2023-08-30 09:35 PM PDT -t-will-gillis,2023-08-31T04:47:12Z,- t-will-gillis commented on issue: [5315](https://github.com/hackforla/website/issues/5315#issuecomment-1700361384) at 2023-08-30 09:47 PM PDT -t-will-gillis,2023-08-31T04:50:58Z,- t-will-gillis commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1700363797) at 2023-08-30 09:50 PM PDT -t-will-gillis,2023-08-31T04:54:26Z,- t-will-gillis commented on issue: [5371](https://github.com/hackforla/website/issues/5371#issuecomment-1700365948) at 2023-08-30 09:54 PM PDT -t-will-gillis,2023-08-31T05:02:02Z,- t-will-gillis commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1700370898) at 2023-08-30 10:02 PM PDT -t-will-gillis,2023-08-31T17:03:18Z,- t-will-gillis submitted pull request review: [5380](https://github.com/hackforla/website/pull/5380#pullrequestreview-1605231829) at 2023-08-31 10:03 AM PDT -t-will-gillis,2023-08-31T17:03:38Z,- t-will-gillis closed issue by PR 5380: [5321](https://github.com/hackforla/website/issues/5321#event-10247507055) at 2023-08-31 10:03 AM PDT -t-will-gillis,2023-09-01T16:00:43Z,- t-will-gillis submitted pull request review: [5339](https://github.com/hackforla/website/pull/5339#pullrequestreview-1607229848) at 2023-09-01 09:00 AM PDT -t-will-gillis,2023-09-01T16:00:52Z,- t-will-gillis closed issue by PR 5339: [4924](https://github.com/hackforla/website/issues/4924#event-10258853845) at 2023-09-01 09:00 AM PDT -t-will-gillis,2023-09-01T16:08:50Z,- t-will-gillis submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1607252929) at 2023-09-01 09:08 AM PDT -t-will-gillis,2023-09-01T16:09:00Z,- t-will-gillis closed issue by PR 5343: [5285](https://github.com/hackforla/website/issues/5285#event-10258944530) at 2023-09-01 09:09 AM PDT -t-will-gillis,2023-09-01T16:14:32Z,- t-will-gillis submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1607260688) at 2023-09-01 09:14 AM PDT -t-will-gillis,2023-09-01T16:14:41Z,- t-will-gillis closed issue by PR 5344: [5287](https://github.com/hackforla/website/issues/5287#event-10258995365) at 2023-09-01 09:14 AM PDT -t-will-gillis,2023-09-01T16:21:39Z,- t-will-gillis submitted pull request review: [5382](https://github.com/hackforla/website/pull/5382#pullrequestreview-1607278285) at 2023-09-01 09:21 AM PDT -t-will-gillis,2023-09-01T16:21:49Z,- t-will-gillis closed issue by PR 5382: [5151](https://github.com/hackforla/website/issues/5151#event-10259050554) at 2023-09-01 09:21 AM PDT -t-will-gillis,2023-09-01T16:26:54Z,- t-will-gillis commented on pull request: [5406](https://github.com/hackforla/website/pull/5406#issuecomment-1703011763) at 2023-09-01 09:26 AM PDT -t-will-gillis,2023-09-01T20:23:51Z,- t-will-gillis commented on issue: [5231](https://github.com/hackforla/website/issues/5231#issuecomment-1703282284) at 2023-09-01 01:23 PM PDT -t-will-gillis,2023-09-02T03:48:20Z,- t-will-gillis submitted pull request review: [5392](https://github.com/hackforla/website/pull/5392#pullrequestreview-1607872181) at 2023-09-01 08:48 PM PDT -t-will-gillis,2023-09-02T03:48:28Z,- t-will-gillis closed issue by PR 5392: [5376](https://github.com/hackforla/website/issues/5376#event-10262850740) at 2023-09-01 08:48 PM PDT -t-will-gillis,2023-09-03T17:04:06Z,- t-will-gillis submitted pull request review: [5414](https://github.com/hackforla/website/pull/5414#pullrequestreview-1608554641) at 2023-09-03 10:04 AM PDT -t-will-gillis,2023-09-03T17:04:27Z,- t-will-gillis closed issue by PR 5414: [5330](https://github.com/hackforla/website/issues/5330#event-10266762069) at 2023-09-03 10:04 AM PDT -t-will-gillis,2023-09-03T17:12:52Z,- t-will-gillis commented on pull request: [5425](https://github.com/hackforla/website/pull/5425#issuecomment-1704355821) at 2023-09-03 10:12 AM PDT -t-will-gillis,2023-09-03T18:03:12Z,- t-will-gillis commented on pull request: [5400](https://github.com/hackforla/website/pull/5400#issuecomment-1704365042) at 2023-09-03 11:03 AM PDT -t-will-gillis,2023-09-03T18:14:32Z,- t-will-gillis commented on pull request: [5421](https://github.com/hackforla/website/pull/5421#issuecomment-1704367145) at 2023-09-03 11:14 AM PDT -t-will-gillis,2023-09-03T18:56:13Z,- t-will-gillis commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1704375461) at 2023-09-03 11:56 AM PDT -t-will-gillis,2023-09-04T03:01:30Z,- t-will-gillis submitted pull request review: [5405](https://github.com/hackforla/website/pull/5405#pullrequestreview-1608696623) at 2023-09-03 08:01 PM PDT -t-will-gillis,2023-09-04T03:02:01Z,- t-will-gillis closed issue by PR 5405: [5317](https://github.com/hackforla/website/issues/5317#event-10268786335) at 2023-09-03 08:02 PM PDT -t-will-gillis,2023-09-04T03:41:24Z,- t-will-gillis commented on pull request: [5412](https://github.com/hackforla/website/pull/5412#issuecomment-1704565999) at 2023-09-03 08:41 PM PDT -t-will-gillis,2023-09-04T03:48:19Z,- t-will-gillis commented on pull request: [5435](https://github.com/hackforla/website/pull/5435#issuecomment-1704569664) at 2023-09-03 08:48 PM PDT -t-will-gillis,2023-09-04T03:49:32Z,- t-will-gillis submitted pull request review: [5412](https://github.com/hackforla/website/pull/5412#pullrequestreview-1608719881) at 2023-09-03 08:49 PM PDT -t-will-gillis,2023-09-04T03:50:25Z,- t-will-gillis closed issue by PR 5412: [5231](https://github.com/hackforla/website/issues/5231#event-10269030351) at 2023-09-03 08:50 PM PDT -t-will-gillis,2023-09-05T03:16:35Z,- t-will-gillis pull request merged: [5158](https://github.com/hackforla/website/pull/5158#event-10278387000) at 2023-09-04 08:16 PM PDT -t-will-gillis,2023-09-05T03:16:36Z,- t-will-gillis closed issue by PR 5158: [4768](https://github.com/hackforla/website/issues/4768#event-10278387073) at 2023-09-04 08:16 PM PDT -t-will-gillis,2023-09-05T03:38:03Z,- t-will-gillis commented on issue: [5163](https://github.com/hackforla/website/issues/5163#issuecomment-1705902055) at 2023-09-04 08:38 PM PDT -t-will-gillis,2023-09-05T03:38:34Z,- t-will-gillis assigned to issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1619236703) at 2023-09-04 08:38 PM PDT -t-will-gillis,2023-09-05T03:39:57Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1705903010) at 2023-09-04 08:39 PM PDT -t-will-gillis,2023-09-05T15:59:17Z,- t-will-gillis commented on pull request: [5445](https://github.com/hackforla/website/pull/5445#issuecomment-1706897403) at 2023-09-05 08:59 AM PDT -t-will-gillis,2023-09-05T15:59:53Z,- t-will-gillis commented on pull request: [5446](https://github.com/hackforla/website/pull/5446#issuecomment-1706898491) at 2023-09-05 08:59 AM PDT -t-will-gillis,2023-09-07T05:37:42Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1709505175) at 2023-09-06 10:37 PM PDT -t-will-gillis,2023-09-07T17:18:10Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1710519270) at 2023-09-07 10:18 AM PDT -t-will-gillis,2023-09-08T04:25:47Z,- t-will-gillis submitted pull request review: [5419](https://github.com/hackforla/website/pull/5419#pullrequestreview-1616653612) at 2023-09-07 09:25 PM PDT -t-will-gillis,2023-09-08T04:26:36Z,- t-will-gillis closed issue by PR 5419: [5390](https://github.com/hackforla/website/issues/5390#event-10313587777) at 2023-09-07 09:26 PM PDT -t-will-gillis,2023-09-09T02:23:05Z,- t-will-gillis opened pull request: [5467](https://github.com/hackforla/website/pull/5467) at 2023-09-08 07:23 PM PDT -t-will-gillis,2023-09-09T02:35:31Z,- t-will-gillis commented on pull request: [5460](https://github.com/hackforla/website/pull/5460#issuecomment-1712391228) at 2023-09-08 07:35 PM PDT -t-will-gillis,2023-09-09T02:35:46Z,- t-will-gillis commented on pull request: [5461](https://github.com/hackforla/website/pull/5461#issuecomment-1712391271) at 2023-09-08 07:35 PM PDT -t-will-gillis,2023-09-09T02:36:11Z,- t-will-gillis commented on pull request: [5462](https://github.com/hackforla/website/pull/5462#issuecomment-1712391356) at 2023-09-08 07:36 PM PDT -t-will-gillis,2023-09-09T02:36:25Z,- t-will-gillis commented on pull request: [5463](https://github.com/hackforla/website/pull/5463#issuecomment-1712391399) at 2023-09-08 07:36 PM PDT -t-will-gillis,2023-09-09T02:43:46Z,- t-will-gillis commented on pull request: [5457](https://github.com/hackforla/website/pull/5457#issuecomment-1712392750) at 2023-09-08 07:43 PM PDT -t-will-gillis,2023-09-09T05:02:40Z,- t-will-gillis submitted pull request review: [5464](https://github.com/hackforla/website/pull/5464#pullrequestreview-1618561912) at 2023-09-08 10:02 PM PDT -t-will-gillis,2023-09-09T05:03:17Z,- t-will-gillis closed issue by PR 5464: [5379](https://github.com/hackforla/website/issues/5379#event-10323487845) at 2023-09-08 10:03 PM PDT -t-will-gillis,2023-09-09T05:21:14Z,- t-will-gillis submitted pull request review: [5451](https://github.com/hackforla/website/pull/5451#pullrequestreview-1618563585) at 2023-09-08 10:21 PM PDT -t-will-gillis,2023-09-09T05:26:48Z,- t-will-gillis submitted pull request review: [5451](https://github.com/hackforla/website/pull/5451#pullrequestreview-1618564102) at 2023-09-08 10:26 PM PDT -t-will-gillis,2023-09-09T05:27:06Z,- t-will-gillis closed issue by PR 5451: [5383](https://github.com/hackforla/website/issues/5383#event-10323519282) at 2023-09-08 10:27 PM PDT -t-will-gillis,2023-09-09T05:48:22Z,- t-will-gillis submitted pull request review: [5456](https://github.com/hackforla/website/pull/5456#pullrequestreview-1618565960) at 2023-09-08 10:48 PM PDT -t-will-gillis,2023-09-09T15:27:27Z,- t-will-gillis submitted pull request review: [5444](https://github.com/hackforla/website/pull/5444#pullrequestreview-1618662031) at 2023-09-09 08:27 AM PDT -t-will-gillis,2023-09-09T15:38:15Z,- t-will-gillis commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1712539192) at 2023-09-09 08:38 AM PDT -t-will-gillis,2023-09-10T16:37:57Z,- t-will-gillis submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1618863835) at 2023-09-10 09:37 AM PDT -t-will-gillis,2023-09-10T16:51:58Z,- t-will-gillis submitted pull request review: [5465](https://github.com/hackforla/website/pull/5465#pullrequestreview-1618868469) at 2023-09-10 09:51 AM PDT -t-will-gillis,2023-09-10T16:52:22Z,- t-will-gillis closed issue by PR 5465: [5389](https://github.com/hackforla/website/issues/5389#event-10326799704) at 2023-09-10 09:52 AM PDT -t-will-gillis,2023-09-10T18:37:45Z,- t-will-gillis submitted pull request review: [5422](https://github.com/hackforla/website/pull/5422#pullrequestreview-1618897144) at 2023-09-10 11:37 AM PDT -t-will-gillis,2023-09-11T01:03:35Z,- t-will-gillis submitted pull request review: [5422](https://github.com/hackforla/website/pull/5422#pullrequestreview-1618978149) at 2023-09-10 06:03 PM PDT -t-will-gillis,2023-09-11T01:03:54Z,- t-will-gillis closed issue by PR 5422: [4923](https://github.com/hackforla/website/issues/4923#event-10327815471) at 2023-09-10 06:03 PM PDT -t-will-gillis,2023-09-11T17:30:57Z,- t-will-gillis commented on pull request: [5456](https://github.com/hackforla/website/pull/5456#issuecomment-1714304821) at 2023-09-11 10:30 AM PDT -t-will-gillis,2023-09-11T18:38:41Z,- t-will-gillis commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714393990) at 2023-09-11 11:38 AM PDT -t-will-gillis,2023-09-11T19:04:32Z,- t-will-gillis commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714428156) at 2023-09-11 12:04 PM PDT -t-will-gillis,2023-09-11T19:25:34Z,- t-will-gillis submitted pull request review: [5456](https://github.com/hackforla/website/pull/5456#pullrequestreview-1620689496) at 2023-09-11 12:25 PM PDT -t-will-gillis,2023-09-11T19:27:38Z,- t-will-gillis closed issue by PR 5456: [5385](https://github.com/hackforla/website/issues/5385#event-10338170087) at 2023-09-11 12:27 PM PDT -t-will-gillis,2023-09-12T05:30:12Z,- t-will-gillis opened issue: [5489](https://github.com/hackforla/website/issues/5489) at 2023-09-11 10:30 PM PDT -t-will-gillis,2023-09-12T05:30:29Z,- t-will-gillis opened issue: [5490](https://github.com/hackforla/website/issues/5490) at 2023-09-11 10:30 PM PDT -t-will-gillis,2023-09-12T05:30:47Z,- t-will-gillis opened issue: [5491](https://github.com/hackforla/website/issues/5491) at 2023-09-11 10:30 PM PDT -t-will-gillis,2023-09-12T05:31:01Z,- t-will-gillis opened issue: [5492](https://github.com/hackforla/website/issues/5492) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:16Z,- t-will-gillis opened issue: [5493](https://github.com/hackforla/website/issues/5493) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:30Z,- t-will-gillis opened issue: [5494](https://github.com/hackforla/website/issues/5494) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:43Z,- t-will-gillis opened issue: [5495](https://github.com/hackforla/website/issues/5495) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:31:56Z,- t-will-gillis opened issue: [5496](https://github.com/hackforla/website/issues/5496) at 2023-09-11 10:31 PM PDT -t-will-gillis,2023-09-12T05:32:12Z,- t-will-gillis opened issue: [5497](https://github.com/hackforla/website/issues/5497) at 2023-09-11 10:32 PM PDT -t-will-gillis,2023-09-12T05:32:26Z,- t-will-gillis opened issue: [5498](https://github.com/hackforla/website/issues/5498) at 2023-09-11 10:32 PM PDT -t-will-gillis,2023-09-12T05:32:41Z,- t-will-gillis opened issue: [5499](https://github.com/hackforla/website/issues/5499) at 2023-09-11 10:32 PM PDT -t-will-gillis,2023-09-12T15:08:13Z,- t-will-gillis commented on issue: [5341](https://github.com/hackforla/website/issues/5341#issuecomment-1715910003) at 2023-09-12 08:08 AM PDT -t-will-gillis,2023-09-12T15:11:45Z,- t-will-gillis commented on issue: [5340](https://github.com/hackforla/website/issues/5340#issuecomment-1715916103) at 2023-09-12 08:11 AM PDT -t-will-gillis,2023-09-12T15:13:38Z,- t-will-gillis commented on issue: [5342](https://github.com/hackforla/website/issues/5342#issuecomment-1715919380) at 2023-09-12 08:13 AM PDT -t-will-gillis,2023-09-13T04:11:48Z,- t-will-gillis assigned to issue: [5494](https://github.com/hackforla/website/issues/5494) at 2023-09-12 09:11 PM PDT -t-will-gillis,2023-09-13T05:06:46Z,- t-will-gillis opened pull request: [5513](https://github.com/hackforla/website/pull/5513) at 2023-09-12 10:06 PM PDT -t-will-gillis,2023-09-13T05:24:22Z,- t-will-gillis submitted pull request review: [5478](https://github.com/hackforla/website/pull/5478#pullrequestreview-1623711897) at 2023-09-12 10:24 PM PDT -t-will-gillis,2023-09-14T03:46:56Z,- t-will-gillis submitted pull request review: [5444](https://github.com/hackforla/website/pull/5444#pullrequestreview-1625779738) at 2023-09-13 08:46 PM PDT -t-will-gillis,2023-09-14T03:47:05Z,- t-will-gillis closed issue by PR 5444: [4427](https://github.com/hackforla/website/issues/4427#event-10366797451) at 2023-09-13 08:47 PM PDT -t-will-gillis,2023-09-14T03:59:17Z,- t-will-gillis commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-1718728366) at 2023-09-13 08:59 PM PDT -t-will-gillis,2023-09-14T04:03:03Z,- t-will-gillis commented on issue: [4960](https://github.com/hackforla/website/issues/4960#issuecomment-1718731156) at 2023-09-13 09:03 PM PDT -t-will-gillis,2023-09-15T05:14:08Z,- t-will-gillis submitted pull request review: [5466](https://github.com/hackforla/website/pull/5466#pullrequestreview-1628203373) at 2023-09-14 10:14 PM PDT -t-will-gillis,2023-09-15T05:16:36Z,- t-will-gillis submitted pull request review: [5466](https://github.com/hackforla/website/pull/5466#pullrequestreview-1628205195) at 2023-09-14 10:16 PM PDT -t-will-gillis,2023-09-15T05:24:44Z,- t-will-gillis submitted pull request review: [5488](https://github.com/hackforla/website/pull/5488#pullrequestreview-1628211232) at 2023-09-14 10:24 PM PDT -t-will-gillis,2023-09-15T05:25:45Z,- t-will-gillis closed issue by PR 5488: [5384](https://github.com/hackforla/website/issues/5384#event-10379171327) at 2023-09-14 10:25 PM PDT -t-will-gillis,2023-09-15T05:30:14Z,- t-will-gillis submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1628215347) at 2023-09-14 10:30 PM PDT -t-will-gillis,2023-09-15T05:31:56Z,- t-will-gillis submitted pull request review: [5521](https://github.com/hackforla/website/pull/5521#pullrequestreview-1628216660) at 2023-09-14 10:31 PM PDT -t-will-gillis,2023-09-15T05:32:14Z,- t-will-gillis closed issue by PR 5521: [5377](https://github.com/hackforla/website/issues/5377#event-10379209953) at 2023-09-14 10:32 PM PDT -t-will-gillis,2023-09-17T04:28:59Z,- t-will-gillis opened pull request: [5544](https://github.com/hackforla/website/pull/5544) at 2023-09-16 09:28 PM PDT -t-will-gillis,2023-09-17T04:31:11Z,- t-will-gillis assigned to issue: [5490](https://github.com/hackforla/website/issues/5490) at 2023-09-16 09:31 PM PDT -t-will-gillis,2023-09-17T15:42:36Z,- t-will-gillis commented on pull request: [5396](https://github.com/hackforla/website/pull/5396#issuecomment-1722504398) at 2023-09-17 08:42 AM PDT -t-will-gillis,2023-09-17T15:59:52Z,- t-will-gillis submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1630097628) at 2023-09-17 08:59 AM PDT -t-will-gillis,2023-09-17T16:01:10Z,- t-will-gillis closed issue by PR 5510: [5378](https://github.com/hackforla/website/issues/5378#event-10391601670) at 2023-09-17 09:01 AM PDT -t-will-gillis,2023-09-17T18:14:07Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1722534084) at 2023-09-17 11:14 AM PDT -t-will-gillis,2023-09-17T18:32:56Z,- t-will-gillis submitted pull request review: [5535](https://github.com/hackforla/website/pull/5535#pullrequestreview-1630112126) at 2023-09-17 11:32 AM PDT -t-will-gillis,2023-09-17T18:33:25Z,- t-will-gillis closed issue by PR 5535: [5476](https://github.com/hackforla/website/issues/5476#event-10391807469) at 2023-09-17 11:33 AM PDT -t-will-gillis,2023-09-17T18:41:35Z,- t-will-gillis submitted pull request review: [5542](https://github.com/hackforla/website/pull/5542#pullrequestreview-1630113043) at 2023-09-17 11:41 AM PDT -t-will-gillis,2023-09-17T18:41:46Z,- t-will-gillis closed issue by PR 5542: [5540](https://github.com/hackforla/website/issues/5540#event-10391818288) at 2023-09-17 11:41 AM PDT -t-will-gillis,2023-09-17T19:05:21Z,- t-will-gillis commented on pull request: [5469](https://github.com/hackforla/website/pull/5469#issuecomment-1722543866) at 2023-09-17 12:05 PM PDT -t-will-gillis,2023-09-18T20:09:55Z,- t-will-gillis submitted pull request review: [5555](https://github.com/hackforla/website/pull/5555#pullrequestreview-1631878049) at 2023-09-18 01:09 PM PDT -t-will-gillis,2023-09-18T20:10:07Z,- t-will-gillis closed issue by PR 5555: [5386](https://github.com/hackforla/website/issues/5386#event-10402451947) at 2023-09-18 01:10 PM PDT -t-will-gillis,2023-09-19T21:09:32Z,- t-will-gillis submitted pull request review: [5434](https://github.com/hackforla/website/pull/5434#pullrequestreview-1634192646) at 2023-09-19 02:09 PM PDT -t-will-gillis,2023-09-19T21:12:03Z,- t-will-gillis closed issue by PR 5434: [5286](https://github.com/hackforla/website/issues/5286#event-10415367229) at 2023-09-19 02:12 PM PDT -t-will-gillis,2023-09-21T17:00:58Z,- t-will-gillis commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1729967515) at 2023-09-21 10:00 AM PDT -t-will-gillis,2023-09-21T20:09:20Z,- t-will-gillis commented on pull request: [5554](https://github.com/hackforla/website/pull/5554#issuecomment-1730229958) at 2023-09-21 01:09 PM PDT -t-will-gillis,2023-09-21T20:09:29Z,- t-will-gillis closed issue by PR 5554: [5322](https://github.com/hackforla/website/issues/5322#event-10439915322) at 2023-09-21 01:09 PM PDT -t-will-gillis,2023-09-22T04:09:26Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1730774668) at 2023-09-21 09:09 PM PDT -t-will-gillis,2023-09-22T04:20:07Z,- t-will-gillis commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1730780383) at 2023-09-21 09:20 PM PDT -t-will-gillis,2023-09-22T04:24:40Z,- t-will-gillis commented on pull request: [5458](https://github.com/hackforla/website/pull/5458#issuecomment-1730783136) at 2023-09-21 09:24 PM PDT -t-will-gillis,2023-09-22T04:38:23Z,- t-will-gillis submitted pull request review: [5549](https://github.com/hackforla/website/pull/5549#pullrequestreview-1639125932) at 2023-09-21 09:38 PM PDT -t-will-gillis,2023-09-22T04:38:34Z,- t-will-gillis closed issue by PR 5549: [5189](https://github.com/hackforla/website/issues/5189#event-10442960692) at 2023-09-21 09:38 PM PDT -t-will-gillis,2023-09-22T04:45:27Z,- t-will-gillis submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1639130255) at 2023-09-21 09:45 PM PDT -t-will-gillis,2023-09-22T04:45:48Z,- t-will-gillis closed issue by PR 5557: [5428](https://github.com/hackforla/website/issues/5428#event-10442991510) at 2023-09-21 09:45 PM PDT -t-will-gillis,2023-09-22T20:37:00Z,- t-will-gillis commented on pull request: [5458](https://github.com/hackforla/website/pull/5458#issuecomment-1732006691) at 2023-09-22 01:37 PM PDT -t-will-gillis,2023-09-22T20:53:24Z,- t-will-gillis assigned to issue: [5404](https://github.com/hackforla/website/issues/5404) at 2023-09-22 01:53 PM PDT -t-will-gillis,2023-09-22T20:53:37Z,- t-will-gillis opened pull request: [5571](https://github.com/hackforla/website/pull/5571) at 2023-09-22 01:53 PM PDT -t-will-gillis,2023-09-23T00:50:43Z,- t-will-gillis pull request merged: [5571](https://github.com/hackforla/website/pull/5571#event-10452192434) at 2023-09-22 05:50 PM PDT -t-will-gillis,2023-09-24T04:02:36Z,- t-will-gillis opened pull request: [5573](https://github.com/hackforla/website/pull/5573) at 2023-09-23 09:02 PM PDT -t-will-gillis,2023-09-24T04:34:43Z,- t-will-gillis opened pull request: [5574](https://github.com/hackforla/website/pull/5574) at 2023-09-23 09:34 PM PDT -t-will-gillis,2023-09-24T05:19:20Z,- t-will-gillis opened pull request: [5575](https://github.com/hackforla/website/pull/5575) at 2023-09-23 10:19 PM PDT -t-will-gillis,2023-09-24T05:21:40Z,- t-will-gillis assigned to issue: [5495](https://github.com/hackforla/website/issues/5495) at 2023-09-23 10:21 PM PDT -t-will-gillis,2023-09-24T05:21:56Z,- t-will-gillis assigned to issue: [5492](https://github.com/hackforla/website/issues/5492) at 2023-09-23 10:21 PM PDT -t-will-gillis,2023-09-24T05:22:25Z,- t-will-gillis assigned to issue: [5493](https://github.com/hackforla/website/issues/5493) at 2023-09-23 10:22 PM PDT -t-will-gillis,2023-09-24T05:23:18Z,- t-will-gillis assigned to issue: [5499](https://github.com/hackforla/website/issues/5499) at 2023-09-23 10:23 PM PDT -t-will-gillis,2023-09-24T05:24:03Z,- t-will-gillis commented on issue: [5499](https://github.com/hackforla/website/issues/5499#issuecomment-1732482673) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:03Z,- t-will-gillis closed issue as completed: [5499](https://github.com/hackforla/website/issues/5499#event-10454575971) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:16Z,- t-will-gillis assigned to issue: [5498](https://github.com/hackforla/website/issues/5498) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:29Z,- t-will-gillis commented on issue: [5498](https://github.com/hackforla/website/issues/5498#issuecomment-1732483442) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:29Z,- t-will-gillis closed issue as completed: [5498](https://github.com/hackforla/website/issues/5498#event-10454580921) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:24:48Z,- t-will-gillis assigned to issue: [5496](https://github.com/hackforla/website/issues/5496) at 2023-09-23 10:24 PM PDT -t-will-gillis,2023-09-24T05:25:01Z,- t-will-gillis commented on issue: [5496](https://github.com/hackforla/website/issues/5496#issuecomment-1732484405) at 2023-09-23 10:25 PM PDT -t-will-gillis,2023-09-24T05:25:01Z,- t-will-gillis closed issue as completed: [5496](https://github.com/hackforla/website/issues/5496#event-10454587051) at 2023-09-23 10:25 PM PDT -t-will-gillis,2023-09-24T15:48:17Z,- t-will-gillis closed issue by PR 5558: [5448](https://github.com/hackforla/website/issues/5448#event-10455445760) at 2023-09-24 08:48 AM PDT -t-will-gillis,2023-09-24T16:01:22Z,- t-will-gillis closed issue by PR 5560: [5323](https://github.com/hackforla/website/issues/5323#event-10455465298) at 2023-09-24 09:01 AM PDT -t-will-gillis,2023-09-24T16:06:06Z,- t-will-gillis closed issue by PR 5568: [5332](https://github.com/hackforla/website/issues/5332#event-10455479127) at 2023-09-24 09:06 AM PDT -t-will-gillis,2023-09-24T16:14:24Z,- t-will-gillis submitted pull request review: [5552](https://github.com/hackforla/website/pull/5552#pullrequestreview-1641090304) at 2023-09-24 09:14 AM PDT -t-will-gillis,2023-09-24T16:15:36Z,- t-will-gillis closed issue by PR 5552: [5282](https://github.com/hackforla/website/issues/5282#event-10455535088) at 2023-09-24 09:15 AM PDT -t-will-gillis,2023-09-24T16:28:46Z,- t-will-gillis submitted pull request review: [5572](https://github.com/hackforla/website/pull/5572#pullrequestreview-1641091898) at 2023-09-24 09:28 AM PDT -t-will-gillis,2023-09-24T16:44:51Z,- t-will-gillis submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1641093632) at 2023-09-24 09:44 AM PDT -t-will-gillis,2023-09-24T16:49:16Z,- t-will-gillis commented on pull request: [5562](https://github.com/hackforla/website/pull/5562#issuecomment-1732618094) at 2023-09-24 09:49 AM PDT -t-will-gillis,2023-09-24T16:58:44Z,- t-will-gillis commented on issue: [5388](https://github.com/hackforla/website/issues/5388#issuecomment-1732619901) at 2023-09-24 09:58 AM PDT -t-will-gillis,2023-09-25T02:00:13Z,- t-will-gillis closed issue by PR 5569: [5340](https://github.com/hackforla/website/issues/5340#event-10456700610) at 2023-09-24 07:00 PM PDT -t-will-gillis,2023-09-26T02:29:07Z,- t-will-gillis submitted pull request review: [5580](https://github.com/hackforla/website/pull/5580#pullrequestreview-1643236601) at 2023-09-25 07:29 PM PDT -t-will-gillis,2023-09-26T02:29:37Z,- t-will-gillis closed issue by PR 5580: [5393](https://github.com/hackforla/website/issues/5393#event-10469251510) at 2023-09-25 07:29 PM PDT -t-will-gillis,2023-09-27T19:46:16Z,- t-will-gillis submitted pull request review: [5564](https://github.com/hackforla/website/pull/5564#pullrequestreview-1647438912) at 2023-09-27 12:46 PM PDT -t-will-gillis,2023-09-27T19:46:24Z,- t-will-gillis closed issue by PR 5564: [5367](https://github.com/hackforla/website/issues/5367#event-10491545087) at 2023-09-27 12:46 PM PDT -t-will-gillis,2023-09-28T04:33:30Z,- t-will-gillis commented on pull request: [5574](https://github.com/hackforla/website/pull/5574#issuecomment-1738417444) at 2023-09-27 09:33 PM PDT -t-will-gillis,2023-09-29T20:57:25Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741479948) at 2023-09-29 01:57 PM PDT -t-will-gillis,2023-09-29T23:45:51Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741586686) at 2023-09-29 04:45 PM PDT -t-will-gillis,2023-09-30T01:36:59Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1741620674) at 2023-09-29 06:36 PM PDT -t-will-gillis,2023-09-30T03:32:19Z,- t-will-gillis pull request merged: [5575](https://github.com/hackforla/website/pull/5575#event-10516408505) at 2023-09-29 08:32 PM PDT -t-will-gillis,2023-09-30T03:32:20Z,- t-will-gillis closed issue by PR 5575: [5493](https://github.com/hackforla/website/issues/5493#event-10516408522) at 2023-09-29 08:32 PM PDT -t-will-gillis,2023-09-30T03:38:48Z,- t-will-gillis pull request merged: [5544](https://github.com/hackforla/website/pull/5544#event-10516416426) at 2023-09-29 08:38 PM PDT -t-will-gillis,2023-09-30T03:38:49Z,- t-will-gillis closed issue by PR 5544: [5490](https://github.com/hackforla/website/issues/5490#event-10516416440) at 2023-09-29 08:38 PM PDT -t-will-gillis,2023-09-30T03:40:02Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1741647428) at 2023-09-29 08:40 PM PDT -t-will-gillis,2023-09-30T04:04:04Z,- t-will-gillis submitted pull request review: [5582](https://github.com/hackforla/website/pull/5582#pullrequestreview-1651630740) at 2023-09-29 09:04 PM PDT -t-will-gillis,2023-09-30T04:15:56Z,- t-will-gillis commented on issue: [5599](https://github.com/hackforla/website/issues/5599#issuecomment-1741671729) at 2023-09-29 09:15 PM PDT -t-will-gillis,2023-09-30T04:21:42Z,- t-will-gillis commented on pull request: [5417](https://github.com/hackforla/website/pull/5417#issuecomment-1741672651) at 2023-09-29 09:21 PM PDT -t-will-gillis,2023-09-30T04:30:26Z,- t-will-gillis assigned to issue: [5497](https://github.com/hackforla/website/issues/5497) at 2023-09-29 09:30 PM PDT -t-will-gillis,2023-09-30T19:46:11Z,- t-will-gillis submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1651741881) at 2023-09-30 12:46 PM PDT -t-will-gillis,2023-09-30T19:56:39Z,- t-will-gillis commented on issue: [5602](https://github.com/hackforla/website/issues/5602#issuecomment-1741847713) at 2023-09-30 12:56 PM PDT -t-will-gillis,2023-09-30T19:59:48Z,- t-will-gillis commented on issue: [5167](https://github.com/hackforla/website/issues/5167#issuecomment-1741848223) at 2023-09-30 12:59 PM PDT -t-will-gillis,2023-09-30T20:16:45Z,- t-will-gillis commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741851203) at 2023-09-30 01:16 PM PDT -t-will-gillis,2023-09-30T23:05:32Z,- t-will-gillis commented on issue: [5336](https://github.com/hackforla/website/issues/5336#issuecomment-1741878224) at 2023-09-30 04:05 PM PDT -t-will-gillis,2023-10-01T00:16:36Z,- t-will-gillis pull request merged: [5574](https://github.com/hackforla/website/pull/5574#event-10518210442) at 2023-09-30 05:16 PM PDT -t-will-gillis,2023-10-01T00:16:38Z,- t-will-gillis closed issue by PR 5574: [5492](https://github.com/hackforla/website/issues/5492#event-10518210480) at 2023-09-30 05:16 PM PDT -t-will-gillis,2023-10-01T00:44:03Z,- t-will-gillis opened pull request: [5637](https://github.com/hackforla/website/pull/5637) at 2023-09-30 05:44 PM PDT -t-will-gillis,2023-10-01T01:10:53Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1741907010) at 2023-09-30 06:10 PM PDT -t-will-gillis,2023-10-01T01:31:02Z,- t-will-gillis opened issue: [5638](https://github.com/hackforla/website/issues/5638) at 2023-09-30 06:31 PM PDT -t-will-gillis,2023-10-01T01:32:02Z,- t-will-gillis closed issue as not planned: [5638](https://github.com/hackforla/website/issues/5638#event-10518402042) at 2023-09-30 06:32 PM PDT -t-will-gillis,2023-10-01T02:04:56Z,- t-will-gillis submitted pull request review: [5417](https://github.com/hackforla/website/pull/5417#pullrequestreview-1651792628) at 2023-09-30 07:04 PM PDT -t-will-gillis,2023-10-01T02:05:05Z,- t-will-gillis closed issue by PR 5417: [5167](https://github.com/hackforla/website/issues/5167#event-10518453810) at 2023-09-30 07:05 PM PDT -t-will-gillis,2023-10-01T15:19:19Z,- t-will-gillis commented on pull request: [5572](https://github.com/hackforla/website/pull/5572#issuecomment-1742113158) at 2023-10-01 08:19 AM PDT -t-will-gillis,2023-10-01T16:29:32Z,- t-will-gillis closed issue by PR 5611: [5172](https://github.com/hackforla/website/issues/5172#event-10519994920) at 2023-10-01 09:29 AM PDT -t-will-gillis,2023-10-01T16:49:24Z,- t-will-gillis submitted pull request review: [5612](https://github.com/hackforla/website/pull/5612#pullrequestreview-1651933029) at 2023-10-01 09:49 AM PDT -t-will-gillis,2023-10-01T16:52:07Z,- t-will-gillis closed issue by PR 5612: [5373](https://github.com/hackforla/website/issues/5373#event-10520034215) at 2023-10-01 09:52 AM PDT -t-will-gillis,2023-10-01T17:00:44Z,- t-will-gillis submitted pull request review: [5616](https://github.com/hackforla/website/pull/5616#pullrequestreview-1651934263) at 2023-10-01 10:00 AM PDT -t-will-gillis,2023-10-01T17:00:52Z,- t-will-gillis closed issue by PR 5616: [5372](https://github.com/hackforla/website/issues/5372#event-10520049005) at 2023-10-01 10:00 AM PDT -t-will-gillis,2023-10-01T17:13:49Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1742142689) at 2023-10-01 10:13 AM PDT -t-will-gillis,2023-10-01T17:38:17Z,- t-will-gillis submitted pull request review: [5636](https://github.com/hackforla/website/pull/5636#pullrequestreview-1651938171) at 2023-10-01 10:38 AM PDT -t-will-gillis,2023-10-01T17:38:41Z,- t-will-gillis closed issue by PR 5636: [5439](https://github.com/hackforla/website/issues/5439#event-10520111761) at 2023-10-01 10:38 AM PDT -t-will-gillis,2023-10-01T22:40:33Z,- t-will-gillis commented on issue: [5639](https://github.com/hackforla/website/issues/5639#issuecomment-1742225242) at 2023-10-01 03:40 PM PDT -t-will-gillis,2023-10-01T22:40:33Z,- t-will-gillis closed issue as completed: [5639](https://github.com/hackforla/website/issues/5639#event-10520671092) at 2023-10-01 03:40 PM PDT -t-will-gillis,2023-10-03T18:26:37Z,- t-will-gillis commented on issue: [5391](https://github.com/hackforla/website/issues/5391#issuecomment-1745502991) at 2023-10-03 11:26 AM PDT -t-will-gillis,2023-10-03T18:26:37Z,- t-will-gillis closed issue as completed: [5391](https://github.com/hackforla/website/issues/5391#event-10541928809) at 2023-10-03 11:26 AM PDT -t-will-gillis,2023-10-03T18:34:24Z,- t-will-gillis submitted pull request review: [5572](https://github.com/hackforla/website/pull/5572#pullrequestreview-1655872886) at 2023-10-03 11:34 AM PDT -t-will-gillis,2023-10-03T18:34:33Z,- t-will-gillis closed issue by PR 5572: [5410](https://github.com/hackforla/website/issues/5410#event-10541998816) at 2023-10-03 11:34 AM PDT -t-will-gillis,2023-10-03T22:02:04Z,- t-will-gillis submitted pull request review: [5634](https://github.com/hackforla/website/pull/5634#pullrequestreview-1656198847) at 2023-10-03 03:02 PM PDT -t-will-gillis,2023-10-03T22:02:15Z,- t-will-gillis closed issue by PR 5634: [5338](https://github.com/hackforla/website/issues/5338#event-10543808515) at 2023-10-03 03:02 PM PDT -t-will-gillis,2023-10-04T03:03:05Z,- t-will-gillis assigned to issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1745979190) at 2023-10-03 08:03 PM PDT -t-will-gillis,2023-10-04T03:10:24Z,- t-will-gillis commented on issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1746062791) at 2023-10-03 08:10 PM PDT -t-will-gillis,2023-10-04T03:32:21Z,- t-will-gillis unassigned from issue: [5650](https://github.com/hackforla/website/issues/5650#issuecomment-1746062791) at 2023-10-03 08:32 PM PDT -t-will-gillis,2023-10-06T02:22:42Z,- t-will-gillis commented on issue: [4595](https://github.com/hackforla/website/issues/4595#issuecomment-1749897043) at 2023-10-05 07:22 PM PDT -t-will-gillis,2023-10-06T02:24:51Z,- t-will-gillis commented on pull request: [5573](https://github.com/hackforla/website/pull/5573#issuecomment-1749898176) at 2023-10-05 07:24 PM PDT -t-will-gillis,2023-10-06T02:25:17Z,- t-will-gillis pull request merged: [5573](https://github.com/hackforla/website/pull/5573#event-10570136070) at 2023-10-05 07:25 PM PDT -t-will-gillis,2023-10-06T02:25:18Z,- t-will-gillis closed issue by PR 5573: [5495](https://github.com/hackforla/website/issues/5495#event-10570136183) at 2023-10-05 07:25 PM PDT -t-will-gillis,2023-10-06T02:26:04Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1749898805) at 2023-10-05 07:26 PM PDT -t-will-gillis,2023-10-08T02:13:55Z,- t-will-gillis commented on pull request: [5640](https://github.com/hackforla/website/pull/5640#issuecomment-1751894901) at 2023-10-07 07:13 PM PDT -t-will-gillis,2023-10-08T02:22:08Z,- t-will-gillis commented on pull request: [5662](https://github.com/hackforla/website/pull/5662#issuecomment-1751896274) at 2023-10-07 07:22 PM PDT -t-will-gillis,2023-10-08T15:09:20Z,- t-will-gillis commented on pull request: [5670](https://github.com/hackforla/website/pull/5670#issuecomment-1752050602) at 2023-10-08 08:09 AM PDT -t-will-gillis,2023-10-09T04:08:02Z,- t-will-gillis closed issue by PR 5661: [5590](https://github.com/hackforla/website/issues/5590#event-10586478262) at 2023-10-08 09:08 PM PDT -t-will-gillis,2023-10-09T04:10:21Z,- t-will-gillis closed issue by PR 5665: [5619](https://github.com/hackforla/website/issues/5619#event-10586486422) at 2023-10-08 09:10 PM PDT -t-will-gillis,2023-10-12T01:53:11Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1758790602) at 2023-10-11 06:53 PM PDT -t-will-gillis,2023-10-14T21:06:06Z,- t-will-gillis commented on pull request: [5700](https://github.com/hackforla/website/pull/5700#issuecomment-1763180670) at 2023-10-14 02:06 PM PDT -t-will-gillis,2023-10-14T21:50:50Z,- t-will-gillis submitted pull request review: [5689](https://github.com/hackforla/website/pull/5689#pullrequestreview-1678488569) at 2023-10-14 02:50 PM PDT -t-will-gillis,2023-10-14T22:10:16Z,- t-will-gillis commented on pull request: [5669](https://github.com/hackforla/website/pull/5669#issuecomment-1763194153) at 2023-10-14 03:10 PM PDT -t-will-gillis,2023-10-15T16:03:14Z,- t-will-gillis closed issue by PR 5704: [5703](https://github.com/hackforla/website/issues/5703#event-10657962066) at 2023-10-15 09:03 AM PDT -t-will-gillis,2023-10-15T16:08:13Z,- t-will-gillis closed issue by PR 5702: [5318](https://github.com/hackforla/website/issues/5318#event-10657972425) at 2023-10-15 09:08 AM PDT -t-will-gillis,2023-10-15T16:24:48Z,- t-will-gillis submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1678824469) at 2023-10-15 09:24 AM PDT -t-will-gillis,2023-10-15T16:33:44Z,- t-will-gillis submitted pull request review: [5699](https://github.com/hackforla/website/pull/5699#pullrequestreview-1678825698) at 2023-10-15 09:33 AM PDT -t-will-gillis,2023-10-15T16:33:59Z,- t-will-gillis closed issue by PR 5699: [5591](https://github.com/hackforla/website/issues/5591#event-10658020412) at 2023-10-15 09:33 AM PDT -t-will-gillis,2023-10-15T16:38:24Z,- t-will-gillis commented on issue: [4506](https://github.com/hackforla/website/issues/4506#issuecomment-1763442484) at 2023-10-15 09:38 AM PDT -t-will-gillis,2023-10-15T16:38:24Z,- t-will-gillis closed issue as completed: [4506](https://github.com/hackforla/website/issues/4506#event-10658027512) at 2023-10-15 09:38 AM PDT -t-will-gillis,2023-10-15T17:24:44Z,- t-will-gillis submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1678833698) at 2023-10-15 10:24 AM PDT -t-will-gillis,2023-10-15T18:00:13Z,- t-will-gillis closed issue by PR 5701: [5621](https://github.com/hackforla/website/issues/5621#event-10658165730) at 2023-10-15 11:00 AM PDT -t-will-gillis,2023-10-15T22:11:49Z,- t-will-gillis submitted pull request review: [5641](https://github.com/hackforla/website/pull/5641#pullrequestreview-1678879691) at 2023-10-15 03:11 PM PDT -t-will-gillis,2023-10-15T23:59:17Z,- t-will-gillis submitted pull request review: [5671](https://github.com/hackforla/website/pull/5671#pullrequestreview-1678908315) at 2023-10-15 04:59 PM PDT -t-will-gillis,2023-10-15T23:59:58Z,- t-will-gillis closed issue by PR 5671: [5584](https://github.com/hackforla/website/issues/5584#event-10658780444) at 2023-10-15 04:59 PM PDT -t-will-gillis,2023-10-17T04:40:48Z,- t-will-gillis commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1765655597) at 2023-10-16 09:40 PM PDT -t-will-gillis,2023-10-17T20:38:54Z,- t-will-gillis commented on pull request: [5637](https://github.com/hackforla/website/pull/5637#issuecomment-1767136381) at 2023-10-17 01:38 PM PDT -t-will-gillis,2023-10-17T20:39:06Z,- t-will-gillis pull request merged: [5637](https://github.com/hackforla/website/pull/5637#event-10683530746) at 2023-10-17 01:39 PM PDT -t-will-gillis,2023-10-17T20:39:08Z,- t-will-gillis closed issue by PR 5637: [5497](https://github.com/hackforla/website/issues/5497#event-10683531043) at 2023-10-17 01:39 PM PDT -t-will-gillis,2023-10-17T20:42:29Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1767143053) at 2023-10-17 01:42 PM PDT -t-will-gillis,2023-10-18T02:38:46Z,- t-will-gillis closed issue by PR 5718: [4785](https://github.com/hackforla/website/issues/4785#event-10686208563) at 2023-10-17 07:38 PM PDT -t-will-gillis,2023-10-18T03:27:55Z,- t-will-gillis commented on issue: [5601](https://github.com/hackforla/website/issues/5601#issuecomment-1767568057) at 2023-10-17 08:27 PM PDT -t-will-gillis,2023-10-18T03:27:55Z,- t-will-gillis closed issue as completed: [5601](https://github.com/hackforla/website/issues/5601#event-10686594821) at 2023-10-17 08:27 PM PDT -t-will-gillis,2023-10-18T03:43:52Z,- t-will-gillis submitted pull request review: [5668](https://github.com/hackforla/website/pull/5668#pullrequestreview-1683910918) at 2023-10-17 08:43 PM PDT -t-will-gillis,2023-10-18T03:45:34Z,- t-will-gillis closed issue by PR 5668: [5629](https://github.com/hackforla/website/issues/5629#event-10686704917) at 2023-10-17 08:45 PM PDT -t-will-gillis,2023-10-18T04:14:53Z,- t-will-gillis commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1767609527) at 2023-10-17 09:14 PM PDT -t-will-gillis,2023-10-18T04:18:23Z,- t-will-gillis commented on pull request: [5513](https://github.com/hackforla/website/pull/5513#issuecomment-1767611757) at 2023-10-17 09:18 PM PDT -t-will-gillis,2023-10-18T16:19:18Z,- t-will-gillis submitted pull request review: [5641](https://github.com/hackforla/website/pull/5641#pullrequestreview-1685534298) at 2023-10-18 09:19 AM PDT -t-will-gillis,2023-10-18T23:25:06Z,- t-will-gillis pull request merged: [5513](https://github.com/hackforla/website/pull/5513#event-10700848667) at 2023-10-18 04:25 PM PDT -t-will-gillis,2023-10-18T23:25:08Z,- t-will-gillis closed issue by PR 5513: [5494](https://github.com/hackforla/website/issues/5494#event-10700849078) at 2023-10-18 04:25 PM PDT -t-will-gillis,2023-10-18T23:27:42Z,- t-will-gillis commented on pull request: [5443](https://github.com/hackforla/website/pull/5443#issuecomment-1769575148) at 2023-10-18 04:27 PM PDT -t-will-gillis,2023-10-20T02:13:25Z,- t-will-gillis submitted pull request review: [5670](https://github.com/hackforla/website/pull/5670#pullrequestreview-1689046675) at 2023-10-19 07:13 PM PDT -t-will-gillis,2023-10-20T02:47:47Z,- t-will-gillis submitted pull request review: [5669](https://github.com/hackforla/website/pull/5669#pullrequestreview-1689095940) at 2023-10-19 07:47 PM PDT -t-will-gillis,2023-10-20T03:16:09Z,- t-will-gillis submitted pull request review: [5700](https://github.com/hackforla/website/pull/5700#pullrequestreview-1689121002) at 2023-10-19 08:16 PM PDT -t-will-gillis,2023-10-21T21:40:27Z,- t-will-gillis commented on pull request: [5741](https://github.com/hackforla/website/pull/5741#issuecomment-1773928975) at 2023-10-21 02:40 PM PDT -t-will-gillis,2023-10-21T21:46:54Z,- t-will-gillis submitted pull request review: [5741](https://github.com/hackforla/website/pull/5741#pullrequestreview-1691341158) at 2023-10-21 02:46 PM PDT -t-will-gillis,2023-10-22T15:58:49Z,- t-will-gillis submitted pull request review: [5744](https://github.com/hackforla/website/pull/5744#pullrequestreview-1691456124) at 2023-10-22 08:58 AM PDT -t-will-gillis,2023-10-22T15:59:38Z,- t-will-gillis closed issue by PR 5744: [5618](https://github.com/hackforla/website/issues/5618#event-10733550474) at 2023-10-22 08:59 AM PDT -t-will-gillis,2023-10-22T16:09:38Z,- t-will-gillis commented on pull request: [5740](https://github.com/hackforla/website/pull/5740#issuecomment-1774132996) at 2023-10-22 09:09 AM PDT -t-will-gillis,2023-10-22T16:55:51Z,- t-will-gillis submitted pull request review: [5740](https://github.com/hackforla/website/pull/5740#pullrequestreview-1691463242) at 2023-10-22 09:55 AM PDT -t-will-gillis,2023-10-22T16:56:11Z,- t-will-gillis closed issue by PR 5740: [4187](https://github.com/hackforla/website/issues/4187#event-10733642076) at 2023-10-22 09:56 AM PDT -t-will-gillis,2023-10-22T17:04:56Z,- t-will-gillis commented on pull request: [4496](https://github.com/hackforla/website/pull/4496#issuecomment-1774146304) at 2023-10-22 10:04 AM PDT -t-will-gillis,2023-10-22T17:55:39Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1774157733) at 2023-10-22 10:55 AM PDT -t-will-gillis,2023-10-28T21:36:29Z,- t-will-gillis commented on issue: [5489](https://github.com/hackforla/website/issues/5489#issuecomment-1783925830) at 2023-10-28 02:36 PM PDT -t-will-gillis,2023-10-29T16:01:14Z,- t-will-gillis commented on pull request: [5769](https://github.com/hackforla/website/pull/5769#issuecomment-1784152470) at 2023-10-29 09:01 AM PDT -t-will-gillis,2023-10-29T17:00:41Z,- t-will-gillis commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1784167628) at 2023-10-29 10:00 AM PDT -t-will-gillis,2023-10-29T17:41:41Z,- t-will-gillis submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1703003704) at 2023-10-29 10:41 AM PDT -t-will-gillis,2023-10-29T17:49:54Z,- t-will-gillis submitted pull request review: [5789](https://github.com/hackforla/website/pull/5789#pullrequestreview-1703004603) at 2023-10-29 10:49 AM PDT -t-will-gillis,2023-10-29T17:50:03Z,- t-will-gillis closed issue by PR 5789: [5759](https://github.com/hackforla/website/issues/5759#event-10800309891) at 2023-10-29 10:50 AM PDT -t-will-gillis,2023-10-29T17:57:38Z,- t-will-gillis submitted pull request review: [5769](https://github.com/hackforla/website/pull/5769#pullrequestreview-1703011887) at 2023-10-29 10:57 AM PDT -t-will-gillis,2023-10-30T03:47:44Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1784431676) at 2023-10-29 08:47 PM PDT -t-will-gillis,2023-10-30T03:54:35Z,- t-will-gillis submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1703214933) at 2023-10-29 08:54 PM PDT -t-will-gillis,2023-10-30T03:56:07Z,- t-will-gillis closed issue by PR 5733: [5623](https://github.com/hackforla/website/issues/5623#event-10802205823) at 2023-10-29 08:56 PM PDT -t-will-gillis,2023-10-31T22:02:14Z,- t-will-gillis submitted pull request review: [5785](https://github.com/hackforla/website/pull/5785#pullrequestreview-1707301521) at 2023-10-31 03:02 PM PDT -t-will-gillis,2023-10-31T22:02:23Z,- t-will-gillis closed issue by PR 5785: [5756](https://github.com/hackforla/website/issues/5756#event-10826378362) at 2023-10-31 03:02 PM PDT -t-will-gillis,2023-11-03T21:42:29Z,- t-will-gillis submitted pull request review: [5834](https://github.com/hackforla/website/pull/5834#pullrequestreview-1713568321) at 2023-11-03 02:42 PM PDT -t-will-gillis,2023-11-05T18:29:28Z,- t-will-gillis commented on pull request: [5834](https://github.com/hackforla/website/pull/5834#issuecomment-1793811110) at 2023-11-05 10:29 AM PST -t-will-gillis,2023-11-05T18:36:54Z,- t-will-gillis closed issue by PR 5828: [5805](https://github.com/hackforla/website/issues/5805#event-10865571080) at 2023-11-05 10:36 AM PST -t-will-gillis,2023-11-05T20:45:25Z,- t-will-gillis submitted pull request review: [5822](https://github.com/hackforla/website/pull/5822#pullrequestreview-1714053661) at 2023-11-05 12:45 PM PST -t-will-gillis,2023-11-05T21:00:18Z,- t-will-gillis submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1714055645) at 2023-11-05 01:00 PM PST -t-will-gillis,2023-11-05T21:30:24Z,- t-will-gillis submitted pull request review: [5823](https://github.com/hackforla/website/pull/5823#pullrequestreview-1714068220) at 2023-11-05 01:30 PM PST -t-will-gillis,2023-11-05T21:42:06Z,- t-will-gillis submitted pull request review: [5837](https://github.com/hackforla/website/pull/5837#pullrequestreview-1714070350) at 2023-11-05 01:42 PM PST -t-will-gillis,2023-11-05T21:42:36Z,- t-will-gillis closed issue by PR 5837: [5792](https://github.com/hackforla/website/issues/5792#event-10865936631) at 2023-11-05 01:42 PM PST -t-will-gillis,2023-11-06T02:25:09Z,- t-will-gillis submitted pull request review: [5821](https://github.com/hackforla/website/pull/5821#pullrequestreview-1714171223) at 2023-11-05 06:25 PM PST -t-will-gillis,2023-11-06T02:25:36Z,- t-will-gillis closed issue by PR 5821: [5761](https://github.com/hackforla/website/issues/5761#event-10866869792) at 2023-11-05 06:25 PM PST -t-will-gillis,2023-11-06T03:17:20Z,- t-will-gillis opened issue: [5857](https://github.com/hackforla/website/issues/5857) at 2023-11-05 07:17 PM PST -t-will-gillis,2023-11-06T04:32:20Z,- t-will-gillis commented on issue: [4901](https://github.com/hackforla/website/issues/4901#issuecomment-1794069736) at 2023-11-05 08:32 PM PST -t-will-gillis,2023-11-06T04:32:20Z,- t-will-gillis closed issue as completed: [4901](https://github.com/hackforla/website/issues/4901#event-10867526872) at 2023-11-05 08:32 PM PST -t-will-gillis,2023-11-06T22:43:57Z,- t-will-gillis submitted pull request review: [5822](https://github.com/hackforla/website/pull/5822#pullrequestreview-1716446643) at 2023-11-06 02:43 PM PST -t-will-gillis,2023-11-06T22:44:09Z,- t-will-gillis closed issue by PR 5822: [5762](https://github.com/hackforla/website/issues/5762#event-10879522769) at 2023-11-06 02:44 PM PST -t-will-gillis,2023-11-07T04:02:34Z,- t-will-gillis submitted pull request review: [5443](https://github.com/hackforla/website/pull/5443#pullrequestreview-1716768410) at 2023-11-06 08:02 PM PST -t-will-gillis,2023-11-07T04:07:38Z,- t-will-gillis commented on issue: [5489](https://github.com/hackforla/website/issues/5489#issuecomment-1797718774) at 2023-11-06 08:07 PM PST -t-will-gillis,2023-11-07T04:07:38Z,- t-will-gillis closed issue as completed: [5489](https://github.com/hackforla/website/issues/5489#event-10881595891) at 2023-11-06 08:07 PM PST -t-will-gillis,2023-11-07T04:08:03Z,- t-will-gillis commented on issue: [5491](https://github.com/hackforla/website/issues/5491#issuecomment-1797719106) at 2023-11-06 08:08 PM PST -t-will-gillis,2023-11-07T04:08:03Z,- t-will-gillis closed issue as completed: [5491](https://github.com/hackforla/website/issues/5491#event-10881597804) at 2023-11-06 08:08 PM PST -t-will-gillis,2023-11-08T21:43:00Z,- t-will-gillis submitted pull request review: [5834](https://github.com/hackforla/website/pull/5834#pullrequestreview-1721326516) at 2023-11-08 01:43 PM PST -t-will-gillis,2023-11-12T17:39:28Z,- t-will-gillis submitted pull request review: [5890](https://github.com/hackforla/website/pull/5890#pullrequestreview-1726298371) at 2023-11-12 09:39 AM PST -t-will-gillis,2023-11-12T17:39:43Z,- t-will-gillis closed issue by PR 5890: [5806](https://github.com/hackforla/website/issues/5806#event-10934992750) at 2023-11-12 09:39 AM PST -t-will-gillis,2023-11-13T23:18:24Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809287029) at 2023-11-13 03:18 PM PST -t-will-gillis,2023-11-13T23:37:05Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809304301) at 2023-11-13 03:37 PM PST -t-will-gillis,2023-11-13T23:45:10Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809311003) at 2023-11-13 03:45 PM PST -t-will-gillis,2023-11-14T01:36:43Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1809401446) at 2023-11-13 05:36 PM PST -t-will-gillis,2023-11-14T01:48:45Z,- t-will-gillis commented on pull request: [5467](https://github.com/hackforla/website/pull/5467#issuecomment-1809410148) at 2023-11-13 05:48 PM PST -t-will-gillis,2023-11-14T18:28:16Z,- t-will-gillis commented on pull request: [5899](https://github.com/hackforla/website/pull/5899#issuecomment-1810892111) at 2023-11-14 10:28 AM PST -t-will-gillis,2023-11-18T22:44:24Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1817668197) at 2023-11-18 02:44 PM PST -t-will-gillis,2023-11-19T18:23:38Z,- t-will-gillis commented on pull request: [5823](https://github.com/hackforla/website/pull/5823#issuecomment-1817937903) at 2023-11-19 10:23 AM PST -t-will-gillis,2023-11-19T19:08:49Z,- t-will-gillis submitted pull request review: [5889](https://github.com/hackforla/website/pull/5889#pullrequestreview-1738706400) at 2023-11-19 11:08 AM PST -t-will-gillis,2023-11-19T19:19:03Z,- t-will-gillis closed issue by PR 5896: [5829](https://github.com/hackforla/website/issues/5829#event-11004431109) at 2023-11-19 11:19 AM PST -t-will-gillis,2023-11-19T21:09:35Z,- t-will-gillis closed issue by PR 5906: [5345](https://github.com/hackforla/website/issues/5345#event-11004605549) at 2023-11-19 01:09 PM PST -t-will-gillis,2023-11-19T21:18:46Z,- t-will-gillis submitted pull request review: [5889](https://github.com/hackforla/website/pull/5889#pullrequestreview-1738726231) at 2023-11-19 01:18 PM PST -t-will-gillis,2023-11-19T21:43:06Z,- t-will-gillis opened issue: [5921](https://github.com/hackforla/website/issues/5921) at 2023-11-19 01:43 PM PST -t-will-gillis,2023-11-19T21:43:06Z,- t-will-gillis assigned to issue: [5921](https://github.com/hackforla/website/issues/5921) at 2023-11-19 01:43 PM PST -t-will-gillis,2023-11-19T21:53:49Z,- t-will-gillis opened pull request: [5922](https://github.com/hackforla/website/pull/5922) at 2023-11-19 01:53 PM PST -t-will-gillis,2023-11-19T22:05:20Z,- t-will-gillis closed issue by PR 5889: [5854](https://github.com/hackforla/website/issues/5854#event-11004706707) at 2023-11-19 02:05 PM PST -t-will-gillis,2023-11-19T22:15:11Z,- t-will-gillis commented on pull request: [5912](https://github.com/hackforla/website/pull/5912#issuecomment-1817994708) at 2023-11-19 02:15 PM PST -t-will-gillis,2023-11-19T22:19:24Z,- t-will-gillis closed issue by PR 5910: [5882](https://github.com/hackforla/website/issues/5882#event-11004736022) at 2023-11-19 02:19 PM PST -t-will-gillis,2023-11-19T22:24:42Z,- t-will-gillis closed issue by PR 5917: [5876](https://github.com/hackforla/website/issues/5876#event-11004749228) at 2023-11-19 02:24 PM PST -t-will-gillis,2023-11-20T18:57:05Z,- t-will-gillis pull request merged: [5922](https://github.com/hackforla/website/pull/5922#event-11015548185) at 2023-11-20 10:57 AM PST -t-will-gillis,2023-11-22T18:39:34Z,- t-will-gillis submitted pull request review: [5912](https://github.com/hackforla/website/pull/5912#pullrequestreview-1745111684) at 2023-11-22 10:39 AM PST -t-will-gillis,2023-11-22T18:39:51Z,- t-will-gillis closed issue by PR 5912: [5860](https://github.com/hackforla/website/issues/5860#event-11039967528) at 2023-11-22 10:39 AM PST -t-will-gillis,2023-11-23T04:43:07Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745696711) at 2023-11-22 08:43 PM PST -t-will-gillis,2023-11-23T05:01:59Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745708489) at 2023-11-22 09:01 PM PST -t-will-gillis,2023-11-23T05:05:39Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745710382) at 2023-11-22 09:05 PM PST -t-will-gillis,2023-11-23T05:06:54Z,- t-will-gillis submitted pull request review: [5899](https://github.com/hackforla/website/pull/5899#pullrequestreview-1745711010) at 2023-11-22 09:06 PM PST -t-will-gillis,2023-11-23T05:24:52Z,- t-will-gillis commented on issue: [5364](https://github.com/hackforla/website/issues/5364#issuecomment-1823835486) at 2023-11-22 09:24 PM PST -t-will-gillis,2023-11-23T05:24:52Z,- t-will-gillis closed issue as completed: [5364](https://github.com/hackforla/website/issues/5364#event-11043345546) at 2023-11-22 09:24 PM PST -t-will-gillis,2023-11-25T04:17:41Z,- t-will-gillis commented on issue: [5930](https://github.com/hackforla/website/issues/5930#issuecomment-1826209559) at 2023-11-24 08:17 PM PST -t-will-gillis,2023-11-26T00:00:57Z,- t-will-gillis commented on pull request: [5920](https://github.com/hackforla/website/pull/5920#issuecomment-1826446089) at 2023-11-25 04:00 PM PST -t-will-gillis,2023-11-26T02:09:34Z,- t-will-gillis closed issue by PR 5928: [5799](https://github.com/hackforla/website/issues/5799#event-11061757636) at 2023-11-25 06:09 PM PST -t-will-gillis,2023-11-26T02:23:30Z,- t-will-gillis closed issue by PR 5933: [5796](https://github.com/hackforla/website/issues/5796#event-11061770068) at 2023-11-25 06:23 PM PST -t-will-gillis,2023-11-26T22:39:29Z,- t-will-gillis submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1749437343) at 2023-11-26 02:39 PM PST -t-will-gillis,2023-11-26T22:55:03Z,- t-will-gillis submitted pull request review: [5935](https://github.com/hackforla/website/pull/5935#pullrequestreview-1749440959) at 2023-11-26 02:55 PM PST -t-will-gillis,2023-11-26T22:55:27Z,- t-will-gillis closed issue by PR 5935: [4455](https://github.com/hackforla/website/issues/4455#event-11064360214) at 2023-11-26 02:55 PM PST -t-will-gillis,2023-11-27T00:01:10Z,- t-will-gillis closed issue by PR 5891: [5730](https://github.com/hackforla/website/issues/5730#event-11064534205) at 2023-11-26 04:01 PM PST -t-will-gillis,2023-11-27T04:14:25Z,- t-will-gillis commented on pull request: [5936](https://github.com/hackforla/website/pull/5936#issuecomment-1827098994) at 2023-11-26 08:14 PM PST -t-will-gillis,2023-11-27T04:14:43Z,- t-will-gillis closed issue by PR 5936: [5698](https://github.com/hackforla/website/issues/5698#event-11065706054) at 2023-11-26 08:14 PM PST -t-will-gillis,2023-11-28T00:43:03Z,- t-will-gillis commented on issue: [5638](https://github.com/hackforla/website/issues/5638#issuecomment-1828878377) at 2023-11-27 04:43 PM PST -t-will-gillis,2023-11-28T01:39:28Z,- t-will-gillis submitted pull request review: [5931](https://github.com/hackforla/website/pull/5931#pullrequestreview-1751727369) at 2023-11-27 05:39 PM PST -t-will-gillis,2023-11-28T01:39:36Z,- t-will-gillis closed issue by PR 5931: [5680](https://github.com/hackforla/website/issues/5680#event-11077786496) at 2023-11-27 05:39 PM PST -t-will-gillis,2023-11-28T01:48:37Z,- t-will-gillis submitted pull request review: [5904](https://github.com/hackforla/website/pull/5904#pullrequestreview-1751733725) at 2023-11-27 05:48 PM PST -t-will-gillis,2023-11-28T01:50:52Z,- t-will-gillis closed issue by PR 5904: [5800](https://github.com/hackforla/website/issues/5800#event-11077844487) at 2023-11-27 05:50 PM PST -t-will-gillis,2023-11-28T06:05:37Z,- t-will-gillis commented on issue: [5939](https://github.com/hackforla/website/issues/5939#issuecomment-1829176924) at 2023-11-27 10:05 PM PST -t-will-gillis,2023-11-28T06:05:37Z,- t-will-gillis closed issue as not planned: [5939](https://github.com/hackforla/website/issues/5939#event-11079178796) at 2023-11-27 10:05 PM PST -t-will-gillis,2023-11-28T18:08:33Z,- t-will-gillis closed issue by PR 5923: [5757](https://github.com/hackforla/website/issues/5757#event-11087080643) at 2023-11-28 10:08 AM PST -t-will-gillis,2023-12-01T00:56:30Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1758817149) at 2023-11-30 04:56 PM PST -t-will-gillis,2023-12-01T03:36:57Z,- t-will-gillis commented on issue: [4788](https://github.com/hackforla/website/issues/4788#issuecomment-1835403193) at 2023-11-30 07:36 PM PST -t-will-gillis,2023-12-01T03:56:27Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1835416659) at 2023-11-30 07:56 PM PST -t-will-gillis,2023-12-02T17:38:50Z,- t-will-gillis commented on pull request: [5956](https://github.com/hackforla/website/pull/5956#issuecomment-1837211508) at 2023-12-02 09:38 AM PST -t-will-gillis,2023-12-03T19:38:59Z,- t-will-gillis commented on pull request: [5944](https://github.com/hackforla/website/pull/5944#issuecomment-1837579172) at 2023-12-03 11:38 AM PST -t-will-gillis,2023-12-05T01:09:30Z,- t-will-gillis opened issue: [5962](https://github.com/hackforla/website/issues/5962) at 2023-12-04 05:09 PM PST -t-will-gillis,2023-12-05T03:35:57Z,- t-will-gillis opened issue: [5966](https://github.com/hackforla/website/issues/5966) at 2023-12-04 07:35 PM PST -t-will-gillis,2023-12-05T03:39:40Z,- t-will-gillis opened pull request: [5967](https://github.com/hackforla/website/pull/5967) at 2023-12-04 07:39 PM PST -t-will-gillis,2023-12-05T05:04:59Z,- t-will-gillis opened issue: [5969](https://github.com/hackforla/website/issues/5969) at 2023-12-04 09:04 PM PST -t-will-gillis,2023-12-05T05:05:00Z,- t-will-gillis assigned to issue: [5969](https://github.com/hackforla/website/issues/5969) at 2023-12-04 09:05 PM PST -t-will-gillis,2023-12-05T05:09:09Z,- t-will-gillis commented on issue: [5969](https://github.com/hackforla/website/issues/5969#issuecomment-1840022395) at 2023-12-04 09:09 PM PST -t-will-gillis,2023-12-05T05:53:26Z,- t-will-gillis opened issue: [5970](https://github.com/hackforla/website/issues/5970) at 2023-12-04 09:53 PM PST -t-will-gillis,2023-12-05T05:57:47Z,- t-will-gillis opened issue: [5971](https://github.com/hackforla/website/issues/5971) at 2023-12-04 09:57 PM PST -t-will-gillis,2023-12-06T16:50:32Z,- t-will-gillis commented on issue: [5691](https://github.com/hackforla/website/issues/5691#issuecomment-1843280560) at 2023-12-06 08:50 AM PST -t-will-gillis,2023-12-06T16:53:01Z,- t-will-gillis commented on pull request: [5967](https://github.com/hackforla/website/pull/5967#issuecomment-1843284515) at 2023-12-06 08:53 AM PST -t-will-gillis,2023-12-06T16:53:11Z,- t-will-gillis pull request merged: [5967](https://github.com/hackforla/website/pull/5967#event-11171081541) at 2023-12-06 08:53 AM PST -t-will-gillis,2023-12-06T16:53:12Z,- t-will-gillis closed issue by PR 5967: [5966](https://github.com/hackforla/website/issues/5966#event-11171081770) at 2023-12-06 08:53 AM PST -t-will-gillis,2023-12-07T20:01:44Z,- t-will-gillis submitted pull request review: [5932](https://github.com/hackforla/website/pull/5932#pullrequestreview-1770945278) at 2023-12-07 12:01 PM PST -t-will-gillis,2023-12-07T20:02:08Z,- t-will-gillis closed issue by PR 1: [4188](https://github.com/hackforla/website/issues/4188#event-11186320834) at 2023-12-07 12:02 PM PST -t-will-gillis,2023-12-08T02:42:31Z,- t-will-gillis closed issue by PR 5947: [5705](https://github.com/hackforla/website/issues/5705#event-11188868697) at 2023-12-07 06:42 PM PST -t-will-gillis,2023-12-08T02:55:34Z,- t-will-gillis closed issue by PR 5957: [5685](https://github.com/hackforla/website/issues/5685#event-11188923691) at 2023-12-07 06:55 PM PST -t-will-gillis,2023-12-08T03:54:21Z,- t-will-gillis closed issue by PR 5961: [5673](https://github.com/hackforla/website/issues/5673#event-11189166855) at 2023-12-07 07:54 PM PST -t-will-gillis,2023-12-08T05:07:55Z,- t-will-gillis commented on pull request: [5961](https://github.com/hackforla/website/pull/5961#issuecomment-1846554645) at 2023-12-07 09:07 PM PST -t-will-gillis,2023-12-08T05:12:40Z,- t-will-gillis commented on issue: [5129](https://github.com/hackforla/website/issues/5129#issuecomment-1846557437) at 2023-12-07 09:12 PM PST -t-will-gillis,2023-12-08T05:35:34Z,- t-will-gillis closed issue as not planned: [5971](https://github.com/hackforla/website/issues/5971#event-11189618021) at 2023-12-07 09:35 PM PST -t-will-gillis,2023-12-08T05:36:00Z,- t-will-gillis closed issue as not planned: [5970](https://github.com/hackforla/website/issues/5970#event-11189620209) at 2023-12-07 09:36 PM PST -t-will-gillis,2023-12-11T01:29:16Z,- t-will-gillis commented on pull request: [5980](https://github.com/hackforla/website/pull/5980#issuecomment-1849187355) at 2023-12-10 05:29 PM PST -t-will-gillis,2023-12-11T06:01:51Z,- t-will-gillis commented on issue: [5969](https://github.com/hackforla/website/issues/5969#issuecomment-1849378258) at 2023-12-10 10:01 PM PST -t-will-gillis,2023-12-16T18:20:44Z,- t-will-gillis commented on pull request: [6005](https://github.com/hackforla/website/pull/6005#issuecomment-1858898789) at 2023-12-16 10:20 AM PST -t-will-gillis,2023-12-16T18:21:09Z,- t-will-gillis commented on pull request: [6009](https://github.com/hackforla/website/pull/6009#issuecomment-1858898979) at 2023-12-16 10:21 AM PST -t-will-gillis,2023-12-16T18:21:23Z,- t-will-gillis commented on pull request: [6008](https://github.com/hackforla/website/pull/6008#issuecomment-1858899044) at 2023-12-16 10:21 AM PST -t-will-gillis,2023-12-17T04:58:45Z,- t-will-gillis opened pull request: [6011](https://github.com/hackforla/website/pull/6011) at 2023-12-16 08:58 PM PST -t-will-gillis,2023-12-18T03:55:25Z,- t-will-gillis submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1785804530) at 2023-12-17 07:55 PM PST -t-will-gillis,2023-12-18T03:56:05Z,- t-will-gillis closed issue by PR 5955: [5696](https://github.com/hackforla/website/issues/5696#event-11271268596) at 2023-12-17 07:56 PM PST -t-will-gillis,2023-12-18T04:21:32Z,- t-will-gillis submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1785836607) at 2023-12-17 08:21 PM PST -t-will-gillis,2023-12-18T04:51:48Z,- t-will-gillis commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1859547548) at 2023-12-17 08:51 PM PST -t-will-gillis,2023-12-18T04:56:42Z,- t-will-gillis commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1859550778) at 2023-12-17 08:56 PM PST -t-will-gillis,2023-12-18T04:57:01Z,- t-will-gillis commented on pull request: [6004](https://github.com/hackforla/website/pull/6004#issuecomment-1859551008) at 2023-12-17 08:57 PM PST -t-will-gillis,2023-12-18T05:31:57Z,- t-will-gillis submitted pull request review: [5976](https://github.com/hackforla/website/pull/5976#pullrequestreview-1785881948) at 2023-12-17 09:31 PM PST -t-will-gillis,2023-12-18T05:32:26Z,- t-will-gillis closed issue by PR 5976: [5691](https://github.com/hackforla/website/issues/5691#event-11271838472) at 2023-12-17 09:32 PM PST -t-will-gillis,2023-12-18T18:53:19Z,- t-will-gillis commented on issue: [4296](https://github.com/hackforla/website/issues/4296#issuecomment-1861332529) at 2023-12-18 10:53 AM PST -t-will-gillis,2023-12-21T04:40:29Z,- t-will-gillis submitted pull request review: [6005](https://github.com/hackforla/website/pull/6005#pullrequestreview-1792182529) at 2023-12-20 08:40 PM PST -t-will-gillis,2023-12-21T05:02:39Z,- t-will-gillis submitted pull request review: [6009](https://github.com/hackforla/website/pull/6009#pullrequestreview-1792199852) at 2023-12-20 09:02 PM PST -t-will-gillis,2023-12-21T05:17:32Z,- t-will-gillis submitted pull request review: [6008](https://github.com/hackforla/website/pull/6008#pullrequestreview-1792210383) at 2023-12-20 09:17 PM PST -t-will-gillis,2023-12-21T19:35:28Z,- t-will-gillis commented on pull request: [6006](https://github.com/hackforla/website/pull/6006#issuecomment-1866830638) at 2023-12-21 11:35 AM PST -t-will-gillis,2023-12-21T22:28:41Z,- t-will-gillis submitted pull request review: [6006](https://github.com/hackforla/website/pull/6006#pullrequestreview-1793745630) at 2023-12-21 02:28 PM PST -t-will-gillis,2023-12-22T18:00:39Z,- t-will-gillis closed issue by PR 6006: [5686](https://github.com/hackforla/website/issues/5686#event-11328546214) at 2023-12-22 10:00 AM PST -t-will-gillis,2023-12-28T02:42:53Z,- t-will-gillis commented on pull request: [5978](https://github.com/hackforla/website/pull/5978#issuecomment-1870771250) at 2023-12-27 06:42 PM PST -t-will-gillis,2023-12-28T04:45:15Z,- t-will-gillis submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1797662017) at 2023-12-27 08:45 PM PST -t-will-gillis,2023-12-28T05:39:50Z,- t-will-gillis submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1797698069) at 2023-12-27 09:39 PM PST -t-will-gillis,2023-12-28T05:44:27Z,- t-will-gillis closed issue by PR 6013: [5687](https://github.com/hackforla/website/issues/5687#event-11348627591) at 2023-12-27 09:44 PM PST -t-will-gillis,2023-12-28T17:54:34Z,- t-will-gillis opened issue: [6019](https://github.com/hackforla/website/issues/6019) at 2023-12-28 09:54 AM PST -t-will-gillis,2023-12-28T18:09:30Z,- t-will-gillis opened issue: [6020](https://github.com/hackforla/website/issues/6020) at 2023-12-28 10:09 AM PST -t-will-gillis,2023-12-28T18:12:16Z,- t-will-gillis commented on issue: [5269](https://github.com/hackforla/website/issues/5269#issuecomment-1871391987) at 2023-12-28 10:12 AM PST -t-will-gillis,2023-12-28T18:12:17Z,- t-will-gillis closed issue as completed: [5269](https://github.com/hackforla/website/issues/5269#event-11352532325) at 2023-12-28 10:12 AM PST -t-will-gillis,2023-12-28T20:54:10Z,- t-will-gillis assigned to issue: [5164](https://github.com/hackforla/website/issues/5164) at 2023-12-28 12:54 PM PST -t-will-gillis,2023-12-28T20:57:39Z,- t-will-gillis commented on issue: [5164](https://github.com/hackforla/website/issues/5164#issuecomment-1871484746) at 2023-12-28 12:57 PM PST -t-will-gillis,2023-12-28T22:12:18Z,- t-will-gillis opened pull request: [6021](https://github.com/hackforla/website/pull/6021) at 2023-12-28 02:12 PM PST -t-will-gillis,2023-12-28T22:45:15Z,- t-will-gillis opened issue: [6022](https://github.com/hackforla/website/issues/6022) at 2023-12-28 02:45 PM PST -t-will-gillis,2023-12-28T22:52:51Z,- t-will-gillis commented on issue: [5717](https://github.com/hackforla/website/issues/5717#issuecomment-1871610425) at 2023-12-28 02:52 PM PST -t-will-gillis,2023-12-28T22:52:51Z,- t-will-gillis closed issue as completed: [5717](https://github.com/hackforla/website/issues/5717#event-11354061602) at 2023-12-28 02:52 PM PST -t-will-gillis,2023-12-29T19:19:21Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1799180377) at 2023-12-29 11:19 AM PST -t-will-gillis,2023-12-29T19:22:05Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1799183988) at 2023-12-29 11:22 AM PST -t-will-gillis,2023-12-30T16:56:24Z,- t-will-gillis commented on pull request: [6016](https://github.com/hackforla/website/pull/6016#issuecomment-1872564599) at 2023-12-30 08:56 AM PST -t-will-gillis,2024-01-02T02:40:42Z,- t-will-gillis submitted pull request review: [5978](https://github.com/hackforla/website/pull/5978#pullrequestreview-1799913401) at 2024-01-01 06:40 PM PST -t-will-gillis,2024-01-02T02:40:51Z,- t-will-gillis closed issue by PR 5978: [4960](https://github.com/hackforla/website/issues/4960#event-11366783043) at 2024-01-01 06:40 PM PST -t-will-gillis,2024-01-04T16:09:49Z,- t-will-gillis commented on pull request: [6057](https://github.com/hackforla/website/pull/6057#issuecomment-1877360959) at 2024-01-04 08:09 AM PST -t-will-gillis,2024-01-05T22:20:35Z,- t-will-gillis commented on issue: [5958](https://github.com/hackforla/website/issues/5958#issuecomment-1879323557) at 2024-01-05 02:20 PM PST -t-will-gillis,2024-01-05T22:21:46Z,- t-will-gillis commented on pull request: [6067](https://github.com/hackforla/website/pull/6067#issuecomment-1879324651) at 2024-01-05 02:21 PM PST -t-will-gillis,2024-01-06T19:14:00Z,- t-will-gillis submitted pull request review: [6070](https://github.com/hackforla/website/pull/6070#pullrequestreview-1807561342) at 2024-01-06 11:14 AM PST -t-will-gillis,2024-01-06T19:20:07Z,- t-will-gillis commented on pull request: [6072](https://github.com/hackforla/website/pull/6072#issuecomment-1879792189) at 2024-01-06 11:20 AM PST -t-will-gillis,2024-01-06T21:50:13Z,- t-will-gillis submitted pull request review: [6070](https://github.com/hackforla/website/pull/6070#pullrequestreview-1807601329) at 2024-01-06 01:50 PM PST -t-will-gillis,2024-01-06T21:50:29Z,- t-will-gillis closed issue by PR 6070: [5959](https://github.com/hackforla/website/issues/5959#event-11409669317) at 2024-01-06 01:50 PM PST -t-will-gillis,2024-01-07T02:35:12Z,- t-will-gillis submitted pull request review: [6072](https://github.com/hackforla/website/pull/6072#pullrequestreview-1807658709) at 2024-01-06 06:35 PM PST -t-will-gillis,2024-01-07T04:10:45Z,- t-will-gillis submitted pull request review: [6057](https://github.com/hackforla/website/pull/6057#pullrequestreview-1807667317) at 2024-01-06 08:10 PM PST -t-will-gillis,2024-01-07T19:51:14Z,- t-will-gillis submitted pull request review: [5944](https://github.com/hackforla/website/pull/5944#pullrequestreview-1807861943) at 2024-01-07 11:51 AM PST -t-will-gillis,2024-01-07T20:23:51Z,- t-will-gillis submitted pull request review: [6072](https://github.com/hackforla/website/pull/6072#pullrequestreview-1807865706) at 2024-01-07 12:23 PM PST -t-will-gillis,2024-01-07T20:24:01Z,- t-will-gillis closed issue by PR 6072: [6020](https://github.com/hackforla/website/issues/6020#event-11411920823) at 2024-01-07 12:24 PM PST -t-will-gillis,2024-01-07T21:20:33Z,- t-will-gillis commented on pull request: [6063](https://github.com/hackforla/website/pull/6063#issuecomment-1880177295) at 2024-01-07 01:20 PM PST -t-will-gillis,2024-01-07T21:20:49Z,- t-will-gillis closed issue by PR 6063: [5968](https://github.com/hackforla/website/issues/5968#event-11412001644) at 2024-01-07 01:20 PM PST -t-will-gillis,2024-01-08T01:24:07Z,- t-will-gillis closed issue by PR 6061: [5972](https://github.com/hackforla/website/issues/5972#event-11412496429) at 2024-01-07 05:24 PM PST -t-will-gillis,2024-01-09T17:55:58Z,- t-will-gillis pull request merged: [6021](https://github.com/hackforla/website/pull/6021#event-11433766756) at 2024-01-09 09:55 AM PST -t-will-gillis,2024-01-09T17:56:00Z,- t-will-gillis closed issue by PR 6021: [5164](https://github.com/hackforla/website/issues/5164#event-11433767044) at 2024-01-09 09:56 AM PST -t-will-gillis,2024-01-10T04:43:04Z,- t-will-gillis submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1812399004) at 2024-01-09 08:43 PM PST -t-will-gillis,2024-01-10T04:43:17Z,- t-will-gillis closed issue by PR 5974: [5694](https://github.com/hackforla/website/issues/5694#event-11438406538) at 2024-01-09 08:43 PM PST -t-will-gillis,2024-01-10T05:25:48Z,- t-will-gillis closed issue by PR 6025: [5963](https://github.com/hackforla/website/issues/5963#event-11438624692) at 2024-01-09 09:25 PM PST -t-will-gillis,2024-01-10T05:29:40Z,- t-will-gillis closed issue by PR 6075: [5965](https://github.com/hackforla/website/issues/5965#event-11438644588) at 2024-01-09 09:29 PM PST -t-will-gillis,2024-01-10T05:33:05Z,- t-will-gillis closed issue by PR 6076: [5709](https://github.com/hackforla/website/issues/5709#event-11438670679) at 2024-01-09 09:33 PM PST -t-will-gillis,2024-01-10T05:40:42Z,- t-will-gillis submitted pull request review: [6077](https://github.com/hackforla/website/pull/6077#pullrequestreview-1812450497) at 2024-01-09 09:40 PM PST -t-will-gillis,2024-01-10T05:41:04Z,- t-will-gillis closed issue by PR 6077: [5708](https://github.com/hackforla/website/issues/5708#event-11438726796) at 2024-01-09 09:41 PM PST -t-will-gillis,2024-01-10T20:40:08Z,- t-will-gillis commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1885686986) at 2024-01-10 12:40 PM PST -t-will-gillis,2024-01-10T21:43:08Z,- t-will-gillis commented on issue: [6022](https://github.com/hackforla/website/issues/6022#issuecomment-1885784292) at 2024-01-10 01:43 PM PST -t-will-gillis,2024-01-11T05:48:47Z,- t-will-gillis commented on pull request: [6085](https://github.com/hackforla/website/pull/6085#issuecomment-1886331316) at 2024-01-10 09:48 PM PST -t-will-gillis,2024-01-12T05:59:19Z,- t-will-gillis submitted pull request review: [6085](https://github.com/hackforla/website/pull/6085#pullrequestreview-1817450899) at 2024-01-11 09:59 PM PST -t-will-gillis,2024-01-15T18:32:35Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1892625724) at 2024-01-15 10:32 AM PST -t-will-gillis,2024-01-16T03:49:36Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1893029502) at 2024-01-15 07:49 PM PST -t-will-gillis,2024-01-17T04:21:27Z,- t-will-gillis submitted pull request review: [6103](https://github.com/hackforla/website/pull/6103#pullrequestreview-1826445165) at 2024-01-16 08:21 PM PST -t-will-gillis,2024-01-17T04:25:17Z,- t-will-gillis closed issue by PR 6100: [4251](https://github.com/hackforla/website/issues/4251#event-11506290032) at 2024-01-16 08:25 PM PST -t-will-gillis,2024-01-17T04:28:52Z,- t-will-gillis closed issue by PR 6099: [5504](https://github.com/hackforla/website/issues/5504#event-11506307184) at 2024-01-16 08:28 PM PST -t-will-gillis,2024-01-17T21:04:16Z,- t-will-gillis commented on pull request: [6103](https://github.com/hackforla/website/pull/6103#issuecomment-1896693838) at 2024-01-17 01:04 PM PST -t-will-gillis,2024-01-19T05:15:13Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1899783009) at 2024-01-18 09:15 PM PST -t-will-gillis,2024-01-19T05:49:07Z,- t-will-gillis submitted pull request review: [6103](https://github.com/hackforla/website/pull/6103#pullrequestreview-1831619518) at 2024-01-18 09:49 PM PST -t-will-gillis,2024-01-19T05:49:28Z,- t-will-gillis closed issue by PR 6103: [6074](https://github.com/hackforla/website/issues/6074#event-11533222336) at 2024-01-18 09:49 PM PST -t-will-gillis,2024-01-20T04:45:02Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1901746286) at 2024-01-19 08:45 PM PST -t-will-gillis,2024-01-20T04:58:52Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1901750559) at 2024-01-19 08:58 PM PST -t-will-gillis,2024-01-23T19:40:48Z,- t-will-gillis submitted pull request review: [6085](https://github.com/hackforla/website/pull/6085#pullrequestreview-1839783278) at 2024-01-23 11:40 AM PST -t-will-gillis,2024-01-23T19:41:03Z,- t-will-gillis closed issue by PR 6085: [6022](https://github.com/hackforla/website/issues/6022#event-11575315115) at 2024-01-23 11:41 AM PST -t-will-gillis,2024-01-24T21:52:43Z,- t-will-gillis commented on pull request: [6011](https://github.com/hackforla/website/pull/6011#issuecomment-1908975812) at 2024-01-24 01:52 PM PST -t-will-gillis,2024-01-25T22:34:30Z,- t-will-gillis pull request merged: [6011](https://github.com/hackforla/website/pull/6011#event-11603007120) at 2024-01-25 02:34 PM PST -t-will-gillis,2024-01-25T22:34:31Z,- t-will-gillis closed issue by PR 6011: [5969](https://github.com/hackforla/website/issues/5969#event-11603007237) at 2024-01-25 02:34 PM PST -t-will-gillis,2024-01-28T16:58:16Z,- t-will-gillis closed issue by PR 6186: [6166](https://github.com/hackforla/website/issues/6166#event-11620442479) at 2024-01-28 08:58 AM PST -t-will-gillis,2024-01-28T17:03:18Z,- t-will-gillis closed issue by PR 6152: [6120](https://github.com/hackforla/website/issues/6120#event-11620454425) at 2024-01-28 09:03 AM PST -t-will-gillis,2024-01-28T17:06:42Z,- t-will-gillis closed issue by PR 6151: [4301](https://github.com/hackforla/website/issues/4301#event-11620461918) at 2024-01-28 09:06 AM PST -t-will-gillis,2024-01-28T22:43:15Z,- t-will-gillis commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1913746149) at 2024-01-28 02:43 PM PST -t-will-gillis,2024-01-28T22:45:56Z,- t-will-gillis commented on issue: [4532](https://github.com/hackforla/website/issues/4532#issuecomment-1913746847) at 2024-01-28 02:45 PM PST -t-will-gillis,2024-01-29T04:47:46Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1913954936) at 2024-01-28 08:47 PM PST -t-will-gillis,2024-01-29T06:21:23Z,- t-will-gillis opened issue: [6193](https://github.com/hackforla/website/issues/6193) at 2024-01-28 10:21 PM PST -t-will-gillis,2024-01-30T06:00:19Z,- t-will-gillis commented on issue: [4715](https://github.com/hackforla/website/issues/4715#issuecomment-1916133970) at 2024-01-29 10:00 PM PST -t-will-gillis,2024-01-30T06:00:19Z,- t-will-gillis closed issue as completed: [4715](https://github.com/hackforla/website/issues/4715#event-11636792910) at 2024-01-29 10:00 PM PST -t-will-gillis,2024-01-30T06:05:40Z,- t-will-gillis commented on issue: [4964](https://github.com/hackforla/website/issues/4964#issuecomment-1916139087) at 2024-01-29 10:05 PM PST -t-will-gillis,2024-01-30T06:05:40Z,- t-will-gillis closed issue as completed: [4964](https://github.com/hackforla/website/issues/4964#event-11636826991) at 2024-01-29 10:05 PM PST -t-will-gillis,2024-01-30T06:06:32Z,- t-will-gillis commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1916140208) at 2024-01-29 10:06 PM PST -t-will-gillis,2024-01-30T06:06:33Z,- t-will-gillis closed issue as completed: [4965](https://github.com/hackforla/website/issues/4965#event-11636833257) at 2024-01-29 10:06 PM PST -t-will-gillis,2024-01-30T06:09:46Z,- t-will-gillis commented on issue: [4974](https://github.com/hackforla/website/issues/4974#issuecomment-1916143148) at 2024-01-29 10:09 PM PST -t-will-gillis,2024-01-30T06:09:46Z,- t-will-gillis closed issue as completed: [4974](https://github.com/hackforla/website/issues/4974#event-11636859016) at 2024-01-29 10:09 PM PST -t-will-gillis,2024-01-30T16:32:12Z,- t-will-gillis submitted pull request review: [6194](https://github.com/hackforla/website/pull/6194#pullrequestreview-1851791269) at 2024-01-30 08:32 AM PST -t-will-gillis,2024-01-31T03:18:26Z,- t-will-gillis closed issue by PR 6194: [6137](https://github.com/hackforla/website/issues/6137#event-11650255429) at 2024-01-30 07:18 PM PST -t-will-gillis,2024-01-31T06:32:49Z,- t-will-gillis commented on issue: [4976](https://github.com/hackforla/website/issues/4976#issuecomment-1918472980) at 2024-01-30 10:32 PM PST -t-will-gillis,2024-01-31T06:32:49Z,- t-will-gillis closed issue as completed: [4976](https://github.com/hackforla/website/issues/4976#event-11651316634) at 2024-01-30 10:32 PM PST -t-will-gillis,2024-01-31T06:34:09Z,- t-will-gillis commented on issue: [4977](https://github.com/hackforla/website/issues/4977#issuecomment-1918474324) at 2024-01-30 10:34 PM PST -t-will-gillis,2024-01-31T06:34:09Z,- t-will-gillis closed issue as completed: [4977](https://github.com/hackforla/website/issues/4977#event-11651325404) at 2024-01-30 10:34 PM PST -t-will-gillis,2024-01-31T06:36:06Z,- t-will-gillis commented on issue: [4982](https://github.com/hackforla/website/issues/4982#issuecomment-1918476481) at 2024-01-30 10:36 PM PST -t-will-gillis,2024-01-31T06:36:07Z,- t-will-gillis closed issue as completed: [4982](https://github.com/hackforla/website/issues/4982#event-11651339198) at 2024-01-30 10:36 PM PST -t-will-gillis,2024-01-31T06:37:01Z,- t-will-gillis commented on issue: [4986](https://github.com/hackforla/website/issues/4986#issuecomment-1918477363) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:37:01Z,- t-will-gillis closed issue as completed: [4986](https://github.com/hackforla/website/issues/4986#event-11651345398) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:37:58Z,- t-will-gillis commented on issue: [4991](https://github.com/hackforla/website/issues/4991#issuecomment-1918478384) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:37:58Z,- t-will-gillis closed issue as completed: [4991](https://github.com/hackforla/website/issues/4991#event-11651351799) at 2024-01-30 10:37 PM PST -t-will-gillis,2024-01-31T06:39:51Z,- t-will-gillis commented on issue: [4998](https://github.com/hackforla/website/issues/4998#issuecomment-1918480365) at 2024-01-30 10:39 PM PST -t-will-gillis,2024-01-31T06:39:51Z,- t-will-gillis closed issue as completed: [4998](https://github.com/hackforla/website/issues/4998#event-11651364613) at 2024-01-30 10:39 PM PST -t-will-gillis,2024-01-31T06:41:00Z,- t-will-gillis commented on issue: [5064](https://github.com/hackforla/website/issues/5064#issuecomment-1918481677) at 2024-01-30 10:41 PM PST -t-will-gillis,2024-01-31T06:41:00Z,- t-will-gillis closed issue as completed: [5064](https://github.com/hackforla/website/issues/5064#event-11651373507) at 2024-01-30 10:41 PM PST -t-will-gillis,2024-01-31T06:43:07Z,- t-will-gillis commented on issue: [5066](https://github.com/hackforla/website/issues/5066#issuecomment-1918483891) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:43:07Z,- t-will-gillis closed issue as completed: [5066](https://github.com/hackforla/website/issues/5066#event-11651388259) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:43:56Z,- t-will-gillis commented on issue: [5067](https://github.com/hackforla/website/issues/5067#issuecomment-1918484697) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:43:56Z,- t-will-gillis closed issue as completed: [5067](https://github.com/hackforla/website/issues/5067#event-11651394206) at 2024-01-30 10:43 PM PST -t-will-gillis,2024-01-31T06:44:46Z,- t-will-gillis commented on issue: [5068](https://github.com/hackforla/website/issues/5068#issuecomment-1918485542) at 2024-01-30 10:44 PM PST -t-will-gillis,2024-01-31T06:44:46Z,- t-will-gillis closed issue as completed: [5068](https://github.com/hackforla/website/issues/5068#event-11651399899) at 2024-01-30 10:44 PM PST -t-will-gillis,2024-01-31T06:46:31Z,- t-will-gillis commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1918487347) at 2024-01-30 10:46 PM PST -t-will-gillis,2024-01-31T06:46:31Z,- t-will-gillis closed issue as completed: [5071](https://github.com/hackforla/website/issues/5071#event-11651411594) at 2024-01-30 10:46 PM PST -t-will-gillis,2024-01-31T06:48:29Z,- t-will-gillis commented on issue: [5072](https://github.com/hackforla/website/issues/5072#issuecomment-1918489437) at 2024-01-30 10:48 PM PST -t-will-gillis,2024-01-31T06:48:29Z,- t-will-gillis closed issue as completed: [5072](https://github.com/hackforla/website/issues/5072#event-11651425765) at 2024-01-30 10:48 PM PST -t-will-gillis,2024-01-31T06:49:12Z,- t-will-gillis commented on issue: [5074](https://github.com/hackforla/website/issues/5074#issuecomment-1918490119) at 2024-01-30 10:49 PM PST -t-will-gillis,2024-01-31T06:49:12Z,- t-will-gillis closed issue as completed: [5074](https://github.com/hackforla/website/issues/5074#event-11651430493) at 2024-01-30 10:49 PM PST -t-will-gillis,2024-01-31T06:50:06Z,- t-will-gillis commented on issue: [5075](https://github.com/hackforla/website/issues/5075#issuecomment-1918491020) at 2024-01-30 10:50 PM PST -t-will-gillis,2024-01-31T06:50:06Z,- t-will-gillis closed issue as completed: [5075](https://github.com/hackforla/website/issues/5075#event-11651436422) at 2024-01-30 10:50 PM PST -t-will-gillis,2024-01-31T06:51:38Z,- t-will-gillis commented on issue: [5077](https://github.com/hackforla/website/issues/5077#issuecomment-1918492663) at 2024-01-30 10:51 PM PST -t-will-gillis,2024-01-31T06:51:38Z,- t-will-gillis closed issue as completed: [5077](https://github.com/hackforla/website/issues/5077#event-11651446963) at 2024-01-30 10:51 PM PST -t-will-gillis,2024-01-31T06:52:27Z,- t-will-gillis commented on issue: [5079](https://github.com/hackforla/website/issues/5079#issuecomment-1918493628) at 2024-01-30 10:52 PM PST -t-will-gillis,2024-01-31T06:52:27Z,- t-will-gillis closed issue as completed: [5079](https://github.com/hackforla/website/issues/5079#event-11651452937) at 2024-01-30 10:52 PM PST -t-will-gillis,2024-01-31T06:53:45Z,- t-will-gillis commented on issue: [5081](https://github.com/hackforla/website/issues/5081#issuecomment-1918495087) at 2024-01-30 10:53 PM PST -t-will-gillis,2024-01-31T06:53:46Z,- t-will-gillis closed issue as completed: [5081](https://github.com/hackforla/website/issues/5081#event-11651461986) at 2024-01-30 10:53 PM PST -t-will-gillis,2024-01-31T06:54:47Z,- t-will-gillis commented on issue: [5082](https://github.com/hackforla/website/issues/5082#issuecomment-1918496218) at 2024-01-30 10:54 PM PST -t-will-gillis,2024-01-31T06:54:47Z,- t-will-gillis closed issue as completed: [5082](https://github.com/hackforla/website/issues/5082#event-11651469166) at 2024-01-30 10:54 PM PST -t-will-gillis,2024-01-31T06:56:03Z,- t-will-gillis commented on issue: [5083](https://github.com/hackforla/website/issues/5083#issuecomment-1918497608) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:56:03Z,- t-will-gillis closed issue as completed: [5083](https://github.com/hackforla/website/issues/5083#event-11651477655) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:56:58Z,- t-will-gillis commented on issue: [5084](https://github.com/hackforla/website/issues/5084#issuecomment-1918498583) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:56:58Z,- t-will-gillis closed issue as completed: [5084](https://github.com/hackforla/website/issues/5084#event-11651484059) at 2024-01-30 10:56 PM PST -t-will-gillis,2024-01-31T06:58:02Z,- t-will-gillis commented on issue: [5088](https://github.com/hackforla/website/issues/5088#issuecomment-1918499758) at 2024-01-30 10:58 PM PST -t-will-gillis,2024-01-31T06:58:02Z,- t-will-gillis closed issue as completed: [5088](https://github.com/hackforla/website/issues/5088#event-11651492123) at 2024-01-30 10:58 PM PST -t-will-gillis,2024-01-31T06:59:02Z,- t-will-gillis commented on issue: [5089](https://github.com/hackforla/website/issues/5089#issuecomment-1918500993) at 2024-01-30 10:59 PM PST -t-will-gillis,2024-01-31T06:59:03Z,- t-will-gillis closed issue as completed: [5089](https://github.com/hackforla/website/issues/5089#event-11651499611) at 2024-01-30 10:59 PM PST -t-will-gillis,2024-01-31T07:04:08Z,- t-will-gillis commented on issue: [5091](https://github.com/hackforla/website/issues/5091#issuecomment-1918507198) at 2024-01-30 11:04 PM PST -t-will-gillis,2024-01-31T07:04:09Z,- t-will-gillis closed issue as completed: [5091](https://github.com/hackforla/website/issues/5091#event-11651539260) at 2024-01-30 11:04 PM PST -t-will-gillis,2024-01-31T07:05:01Z,- t-will-gillis commented on issue: [5094](https://github.com/hackforla/website/issues/5094#issuecomment-1918508202) at 2024-01-30 11:05 PM PST -t-will-gillis,2024-01-31T07:05:01Z,- t-will-gillis closed issue as completed: [5094](https://github.com/hackforla/website/issues/5094#event-11651546042) at 2024-01-30 11:05 PM PST -t-will-gillis,2024-01-31T07:06:13Z,- t-will-gillis commented on issue: [5207](https://github.com/hackforla/website/issues/5207#issuecomment-1918509614) at 2024-01-30 11:06 PM PST -t-will-gillis,2024-01-31T07:06:14Z,- t-will-gillis closed issue as completed: [5207](https://github.com/hackforla/website/issues/5207#event-11651555544) at 2024-01-30 11:06 PM PST -t-will-gillis,2024-01-31T07:07:00Z,- t-will-gillis commented on issue: [5209](https://github.com/hackforla/website/issues/5209#issuecomment-1918510523) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:07:00Z,- t-will-gillis closed issue as completed: [5209](https://github.com/hackforla/website/issues/5209#event-11651561608) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:07:59Z,- t-will-gillis commented on issue: [5210](https://github.com/hackforla/website/issues/5210#issuecomment-1918511588) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:07:59Z,- t-will-gillis closed issue as completed: [5210](https://github.com/hackforla/website/issues/5210#event-11651569263) at 2024-01-30 11:07 PM PST -t-will-gillis,2024-01-31T07:09:45Z,- t-will-gillis commented on issue: [5214](https://github.com/hackforla/website/issues/5214#issuecomment-1918513490) at 2024-01-30 11:09 PM PST -t-will-gillis,2024-01-31T07:09:45Z,- t-will-gillis closed issue as completed: [5214](https://github.com/hackforla/website/issues/5214#event-11651582627) at 2024-01-30 11:09 PM PST -t-will-gillis,2024-01-31T07:11:30Z,- t-will-gillis commented on issue: [5224](https://github.com/hackforla/website/issues/5224#issuecomment-1918515569) at 2024-01-30 11:11 PM PST -t-will-gillis,2024-01-31T07:11:30Z,- t-will-gillis closed issue as completed: [5224](https://github.com/hackforla/website/issues/5224#event-11651596342) at 2024-01-30 11:11 PM PST -t-will-gillis,2024-01-31T07:12:30Z,- t-will-gillis commented on issue: [5228](https://github.com/hackforla/website/issues/5228#issuecomment-1918516777) at 2024-01-30 11:12 PM PST -t-will-gillis,2024-01-31T07:12:30Z,- t-will-gillis closed issue as completed: [5228](https://github.com/hackforla/website/issues/5228#event-11651604019) at 2024-01-30 11:12 PM PST -t-will-gillis,2024-01-31T07:13:12Z,- t-will-gillis commented on issue: [5229](https://github.com/hackforla/website/issues/5229#issuecomment-1918517635) at 2024-01-30 11:13 PM PST -t-will-gillis,2024-01-31T07:13:12Z,- t-will-gillis closed issue as completed: [5229](https://github.com/hackforla/website/issues/5229#event-11651609765) at 2024-01-30 11:13 PM PST -t-will-gillis,2024-01-31T07:14:02Z,- t-will-gillis commented on issue: [5230](https://github.com/hackforla/website/issues/5230#issuecomment-1918518671) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:14:02Z,- t-will-gillis closed issue as completed: [5230](https://github.com/hackforla/website/issues/5230#event-11651616256) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:14:47Z,- t-will-gillis commented on issue: [5347](https://github.com/hackforla/website/issues/5347#issuecomment-1918519521) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:14:47Z,- t-will-gillis closed issue as completed: [5347](https://github.com/hackforla/website/issues/5347#event-11651622082) at 2024-01-30 11:14 PM PST -t-will-gillis,2024-01-31T07:15:30Z,- t-will-gillis commented on issue: [5355](https://github.com/hackforla/website/issues/5355#issuecomment-1918520383) at 2024-01-30 11:15 PM PST -t-will-gillis,2024-01-31T07:15:30Z,- t-will-gillis closed issue as completed: [5355](https://github.com/hackforla/website/issues/5355#event-11651627827) at 2024-01-30 11:15 PM PST -t-will-gillis,2024-01-31T07:18:31Z,- t-will-gillis commented on issue: [6039](https://github.com/hackforla/website/issues/6039#issuecomment-1918523942) at 2024-01-30 11:18 PM PST -t-will-gillis,2024-02-02T04:39:01Z,- t-will-gillis opened issue: [6211](https://github.com/hackforla/website/issues/6211) at 2024-02-01 08:39 PM PST -t-will-gillis,2024-02-02T05:03:05Z,- t-will-gillis commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1922825081) at 2024-02-01 09:03 PM PST -t-will-gillis,2024-02-02T05:03:05Z,- t-will-gillis closed issue as completed: [4975](https://github.com/hackforla/website/issues/4975#event-11679111343) at 2024-02-01 09:03 PM PST -t-will-gillis,2024-02-02T05:10:26Z,- t-will-gillis commented on issue: [5078](https://github.com/hackforla/website/issues/5078#issuecomment-1922838397) at 2024-02-01 09:10 PM PST -t-will-gillis,2024-02-02T05:10:26Z,- t-will-gillis closed issue as completed: [5078](https://github.com/hackforla/website/issues/5078#event-11679152076) at 2024-02-01 09:10 PM PST -t-will-gillis,2024-02-02T05:11:55Z,- t-will-gillis commented on issue: [5085](https://github.com/hackforla/website/issues/5085#issuecomment-1922839812) at 2024-02-01 09:11 PM PST -t-will-gillis,2024-02-02T05:11:55Z,- t-will-gillis closed issue as completed: [5085](https://github.com/hackforla/website/issues/5085#event-11679159729) at 2024-02-01 09:11 PM PST -t-will-gillis,2024-02-02T05:12:31Z,- t-will-gillis commented on issue: [5211](https://github.com/hackforla/website/issues/5211#issuecomment-1922840787) at 2024-02-01 09:12 PM PST -t-will-gillis,2024-02-02T05:12:32Z,- t-will-gillis closed issue as completed: [5211](https://github.com/hackforla/website/issues/5211#event-11679163743) at 2024-02-01 09:12 PM PST -t-will-gillis,2024-02-02T05:13:14Z,- t-will-gillis commented on issue: [5217](https://github.com/hackforla/website/issues/5217#issuecomment-1922842172) at 2024-02-01 09:13 PM PST -t-will-gillis,2024-02-02T05:13:15Z,- t-will-gillis closed issue as completed: [5217](https://github.com/hackforla/website/issues/5217#event-11679168770) at 2024-02-01 09:13 PM PST -t-will-gillis,2024-02-02T05:14:24Z,- t-will-gillis commented on issue: [5226](https://github.com/hackforla/website/issues/5226#issuecomment-1922844007) at 2024-02-01 09:14 PM PST -t-will-gillis,2024-02-02T05:14:24Z,- t-will-gillis closed issue as completed: [5226](https://github.com/hackforla/website/issues/5226#event-11679176736) at 2024-02-01 09:14 PM PST -t-will-gillis,2024-02-02T05:15:15Z,- t-will-gillis commented on issue: [5227](https://github.com/hackforla/website/issues/5227#issuecomment-1922845277) at 2024-02-01 09:15 PM PST -t-will-gillis,2024-02-02T05:15:15Z,- t-will-gillis closed issue as completed: [5227](https://github.com/hackforla/website/issues/5227#event-11679182030) at 2024-02-01 09:15 PM PST -t-will-gillis,2024-02-02T05:16:04Z,- t-will-gillis commented on issue: [5310](https://github.com/hackforla/website/issues/5310#issuecomment-1922845956) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:16:04Z,- t-will-gillis closed issue as completed: [5310](https://github.com/hackforla/website/issues/5310#event-11679187090) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:16:42Z,- t-will-gillis commented on issue: [5348](https://github.com/hackforla/website/issues/5348#issuecomment-1922846401) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:16:43Z,- t-will-gillis closed issue as completed: [5348](https://github.com/hackforla/website/issues/5348#event-11679191597) at 2024-02-01 09:16 PM PST -t-will-gillis,2024-02-02T05:17:35Z,- t-will-gillis commented on issue: [5350](https://github.com/hackforla/website/issues/5350#issuecomment-1922847188) at 2024-02-01 09:17 PM PST -t-will-gillis,2024-02-02T05:17:36Z,- t-will-gillis closed issue as completed: [5350](https://github.com/hackforla/website/issues/5350#event-11679197725) at 2024-02-01 09:17 PM PST -t-will-gillis,2024-02-02T05:18:24Z,- t-will-gillis commented on issue: [5353](https://github.com/hackforla/website/issues/5353#issuecomment-1922848008) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:18:24Z,- t-will-gillis closed issue as completed: [5353](https://github.com/hackforla/website/issues/5353#event-11679204423) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:18:58Z,- t-will-gillis commented on issue: [5359](https://github.com/hackforla/website/issues/5359#issuecomment-1922848514) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:18:58Z,- t-will-gillis closed issue as completed: [5359](https://github.com/hackforla/website/issues/5359#event-11679208874) at 2024-02-01 09:18 PM PST -t-will-gillis,2024-02-02T05:19:44Z,- t-will-gillis commented on issue: [5360](https://github.com/hackforla/website/issues/5360#issuecomment-1922849153) at 2024-02-01 09:19 PM PST -t-will-gillis,2024-02-02T05:19:44Z,- t-will-gillis closed issue as completed: [5360](https://github.com/hackforla/website/issues/5360#event-11679213299) at 2024-02-01 09:19 PM PST -t-will-gillis,2024-02-02T05:21:10Z,- t-will-gillis commented on issue: [5480](https://github.com/hackforla/website/issues/5480#issuecomment-1922850254) at 2024-02-01 09:21 PM PST -t-will-gillis,2024-02-02T05:21:11Z,- t-will-gillis closed issue as completed: [5480](https://github.com/hackforla/website/issues/5480#event-11679220977) at 2024-02-01 09:21 PM PST -t-will-gillis,2024-02-02T05:22:16Z,- t-will-gillis commented on issue: [5484](https://github.com/hackforla/website/issues/5484#issuecomment-1922851100) at 2024-02-01 09:22 PM PST -t-will-gillis,2024-02-02T05:22:16Z,- t-will-gillis closed issue as completed: [5484](https://github.com/hackforla/website/issues/5484#event-11679227183) at 2024-02-01 09:22 PM PST -t-will-gillis,2024-02-02T05:23:17Z,- t-will-gillis commented on issue: [5487](https://github.com/hackforla/website/issues/5487#issuecomment-1922851853) at 2024-02-01 09:23 PM PST -t-will-gillis,2024-02-02T05:23:17Z,- t-will-gillis closed issue as completed: [5487](https://github.com/hackforla/website/issues/5487#event-11679233236) at 2024-02-01 09:23 PM PST -t-will-gillis,2024-02-02T05:24:02Z,- t-will-gillis commented on issue: [5606](https://github.com/hackforla/website/issues/5606#issuecomment-1922852364) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:24:02Z,- t-will-gillis closed issue as completed: [5606](https://github.com/hackforla/website/issues/5606#event-11679237497) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:24:46Z,- t-will-gillis commented on issue: [5607](https://github.com/hackforla/website/issues/5607#issuecomment-1922852962) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:24:47Z,- t-will-gillis closed issue as completed: [5607](https://github.com/hackforla/website/issues/5607#event-11679241923) at 2024-02-01 09:24 PM PST -t-will-gillis,2024-02-02T05:25:58Z,- t-will-gillis commented on issue: [5609](https://github.com/hackforla/website/issues/5609#issuecomment-1922854013) at 2024-02-01 09:25 PM PST -t-will-gillis,2024-02-02T05:25:58Z,- t-will-gillis closed issue as completed: [5609](https://github.com/hackforla/website/issues/5609#event-11679248594) at 2024-02-01 09:25 PM PST -t-will-gillis,2024-02-02T05:26:33Z,- t-will-gillis commented on issue: [5722](https://github.com/hackforla/website/issues/5722#issuecomment-1922854594) at 2024-02-01 09:26 PM PST -t-will-gillis,2024-02-02T05:26:33Z,- t-will-gillis closed issue as completed: [5722](https://github.com/hackforla/website/issues/5722#event-11679252273) at 2024-02-01 09:26 PM PST -t-will-gillis,2024-02-02T05:27:57Z,- t-will-gillis commented on issue: [5723](https://github.com/hackforla/website/issues/5723#issuecomment-1922856538) at 2024-02-01 09:27 PM PST -t-will-gillis,2024-02-02T05:27:58Z,- t-will-gillis closed issue as completed: [5723](https://github.com/hackforla/website/issues/5723#event-11679261521) at 2024-02-01 09:27 PM PST -t-will-gillis,2024-02-02T05:28:41Z,- t-will-gillis commented on issue: [5726](https://github.com/hackforla/website/issues/5726#issuecomment-1922857457) at 2024-02-01 09:28 PM PST -t-will-gillis,2024-02-02T05:28:42Z,- t-will-gillis closed issue as completed: [5726](https://github.com/hackforla/website/issues/5726#event-11679266570) at 2024-02-01 09:28 PM PST -t-will-gillis,2024-02-02T05:29:31Z,- t-will-gillis commented on issue: [5734](https://github.com/hackforla/website/issues/5734#issuecomment-1922858767) at 2024-02-01 09:29 PM PST -t-will-gillis,2024-02-02T05:29:31Z,- t-will-gillis closed issue as completed: [5734](https://github.com/hackforla/website/issues/5734#event-11679272514) at 2024-02-01 09:29 PM PST -t-will-gillis,2024-02-02T05:30:10Z,- t-will-gillis commented on issue: [5776](https://github.com/hackforla/website/issues/5776#issuecomment-1922859458) at 2024-02-01 09:30 PM PST -t-will-gillis,2024-02-02T05:30:10Z,- t-will-gillis closed issue as completed: [5776](https://github.com/hackforla/website/issues/5776#event-11679277194) at 2024-02-01 09:30 PM PST -t-will-gillis,2024-02-02T16:57:06Z,- t-will-gillis commented on issue: [6213](https://github.com/hackforla/website/issues/6213#issuecomment-1924272139) at 2024-02-02 08:57 AM PST -t-will-gillis,2024-02-02T16:57:06Z,- t-will-gillis closed issue as completed: [6213](https://github.com/hackforla/website/issues/6213#event-11686659351) at 2024-02-02 08:57 AM PST -t-will-gillis,2024-02-03T05:02:06Z,- t-will-gillis closed issue by PR 6201: [6045](https://github.com/hackforla/website/issues/6045#event-11691603152) at 2024-02-02 09:02 PM PST -t-will-gillis,2024-02-03T05:33:39Z,- t-will-gillis closed issue by PR 6206: [5697](https://github.com/hackforla/website/issues/5697#event-11691681028) at 2024-02-02 09:33 PM PST -t-will-gillis,2024-02-03T05:41:27Z,- t-will-gillis opened pull request: [6217](https://github.com/hackforla/website/pull/6217) at 2024-02-02 09:41 PM PST -t-will-gillis,2024-02-03T05:50:59Z,- t-will-gillis commented on pull request: [6217](https://github.com/hackforla/website/pull/6217#issuecomment-1925147160) at 2024-02-02 09:50 PM PST -t-will-gillis,2024-02-03T05:50:59Z,- t-will-gillis pull request closed w/o merging: [6217](https://github.com/hackforla/website/pull/6217#event-11691736894) at 2024-02-02 09:50 PM PST -t-will-gillis,2024-02-03T06:11:32Z,- t-will-gillis opened issue: [6218](https://github.com/hackforla/website/issues/6218) at 2024-02-02 10:11 PM PST -t-will-gillis,2024-02-04T03:36:05Z,- t-will-gillis commented on pull request: [6216](https://github.com/hackforla/website/pull/6216#issuecomment-1925568109) at 2024-02-03 07:36 PM PST -t-will-gillis,2024-02-04T19:43:02Z,- t-will-gillis closed issue by PR 6216: [5676](https://github.com/hackforla/website/issues/5676#event-11696389051) at 2024-02-04 11:43 AM PST -t-will-gillis,2024-02-04T21:13:09Z,- t-will-gillis closed issue by PR 6215: [6192](https://github.com/hackforla/website/issues/6192#event-11696541329) at 2024-02-04 01:13 PM PST -t-will-gillis,2024-02-04T21:15:57Z,- t-will-gillis commented on pull request: [6204](https://github.com/hackforla/website/pull/6204#issuecomment-1925916613) at 2024-02-04 01:15 PM PST -t-will-gillis,2024-02-05T20:07:21Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1928010301) at 2024-02-05 12:07 PM PST -t-will-gillis,2024-02-07T20:33:52Z,- t-will-gillis commented on pull request: [6262](https://github.com/hackforla/website/pull/6262#issuecomment-1932821673) at 2024-02-07 12:33 PM PST -t-will-gillis,2024-02-11T05:19:19Z,- t-will-gillis submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1874304492) at 2024-02-10 09:19 PM PST -t-will-gillis,2024-02-11T05:26:46Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1937433361) at 2024-02-10 09:26 PM PST -t-will-gillis,2024-02-11T17:19:10Z,- t-will-gillis commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1937814085) at 2024-02-11 09:19 AM PST -t-will-gillis,2024-02-11T17:31:05Z,- t-will-gillis submitted pull request review: [6270](https://github.com/hackforla/website/pull/6270#pullrequestreview-1874406293) at 2024-02-11 09:31 AM PST -t-will-gillis,2024-02-11T17:40:10Z,- t-will-gillis commented on pull request: [6270](https://github.com/hackforla/website/pull/6270#issuecomment-1937819197) at 2024-02-11 09:40 AM PST -t-will-gillis,2024-02-11T17:40:27Z,- t-will-gillis closed issue by PR 6270: [4454](https://github.com/hackforla/website/issues/4454#event-11767719759) at 2024-02-11 09:40 AM PST -t-will-gillis,2024-02-12T05:00:05Z,- t-will-gillis commented on pull request: [6280](https://github.com/hackforla/website/pull/6280#issuecomment-1938067837) at 2024-02-11 09:00 PM PST -t-will-gillis,2024-02-12T05:38:49Z,- t-will-gillis submitted pull request review: [6273](https://github.com/hackforla/website/pull/6273#pullrequestreview-1874567842) at 2024-02-11 09:38 PM PST -t-will-gillis,2024-02-12T05:41:01Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1938091151) at 2024-02-11 09:41 PM PST -t-will-gillis,2024-02-12T05:43:01Z,- t-will-gillis commented on pull request: [6255](https://github.com/hackforla/website/pull/6255#issuecomment-1938092239) at 2024-02-11 09:43 PM PST -t-will-gillis,2024-02-12T21:20:53Z,- t-will-gillis submitted pull request review: [6282](https://github.com/hackforla/website/pull/6282#pullrequestreview-1876342227) at 2024-02-12 01:20 PM PST -t-will-gillis,2024-02-12T21:21:15Z,- t-will-gillis closed issue by PR 6282: [6054](https://github.com/hackforla/website/issues/6054#event-11780010191) at 2024-02-12 01:21 PM PST -t-will-gillis,2024-02-13T22:03:05Z,- t-will-gillis opened issue: [6291](https://github.com/hackforla/website/issues/6291) at 2024-02-13 02:03 PM PST -t-will-gillis,2024-02-14T05:00:40Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1943085123) at 2024-02-13 09:00 PM PST -t-will-gillis,2024-02-14T05:09:23Z,- t-will-gillis submitted pull request review: [6271](https://github.com/hackforla/website/pull/6271#pullrequestreview-1879367253) at 2024-02-13 09:09 PM PST -t-will-gillis,2024-02-14T05:58:54Z,- t-will-gillis submitted pull request review: [6255](https://github.com/hackforla/website/pull/6255#pullrequestreview-1879423766) at 2024-02-13 09:58 PM PST -t-will-gillis,2024-02-15T03:15:09Z,- t-will-gillis closed issue by PR 6255: [5160](https://github.com/hackforla/website/issues/5160#event-11809477007) at 2024-02-14 07:15 PM PST -t-will-gillis,2024-02-15T03:48:24Z,- t-will-gillis commented on pull request: [6271](https://github.com/hackforla/website/pull/6271#issuecomment-1945319681) at 2024-02-14 07:48 PM PST -t-will-gillis,2024-02-15T03:48:45Z,- t-will-gillis closed issue by PR 6271: [4647](https://github.com/hackforla/website/issues/4647#event-11809662117) at 2024-02-14 07:48 PM PST -t-will-gillis,2024-02-15T04:29:29Z,- t-will-gillis opened issue: [6297](https://github.com/hackforla/website/issues/6297) at 2024-02-14 08:29 PM PST -t-will-gillis,2024-02-15T04:44:21Z,- t-will-gillis opened issue: [6298](https://github.com/hackforla/website/issues/6298) at 2024-02-14 08:44 PM PST -t-will-gillis,2024-02-15T05:12:30Z,- t-will-gillis opened issue: [6299](https://github.com/hackforla/website/issues/6299) at 2024-02-14 09:12 PM PST -t-will-gillis,2024-02-17T17:45:38Z,- t-will-gillis commented on issue: [6297](https://github.com/hackforla/website/issues/6297#issuecomment-1950267209) at 2024-02-17 09:45 AM PST -t-will-gillis,2024-02-17T17:45:38Z,- t-will-gillis closed issue as completed: [6297](https://github.com/hackforla/website/issues/6297#event-11836948722) at 2024-02-17 09:45 AM PST -t-will-gillis,2024-02-17T18:22:45Z,- t-will-gillis commented on pull request: [6307](https://github.com/hackforla/website/pull/6307#issuecomment-1950275987) at 2024-02-17 10:22 AM PST -t-will-gillis,2024-02-17T19:10:58Z,- t-will-gillis opened issue: [6309](https://github.com/hackforla/website/issues/6309) at 2024-02-17 11:10 AM PST -t-will-gillis,2024-02-19T04:12:20Z,- t-will-gillis submitted pull request review: [6302](https://github.com/hackforla/website/pull/6302#pullrequestreview-1887520669) at 2024-02-18 08:12 PM PST -t-will-gillis,2024-02-19T04:12:34Z,- t-will-gillis closed issue by PR 6302: [5148](https://github.com/hackforla/website/issues/5148#event-11843895282) at 2024-02-18 08:12 PM PST -t-will-gillis,2024-02-19T04:15:01Z,- t-will-gillis commented on pull request: [6304](https://github.com/hackforla/website/pull/6304#issuecomment-1951662295) at 2024-02-18 08:15 PM PST -t-will-gillis,2024-02-19T04:22:12Z,- t-will-gillis closed issue by PR 6305: [5879](https://github.com/hackforla/website/issues/5879#event-11843961266) at 2024-02-18 08:22 PM PST -t-will-gillis,2024-02-19T04:38:59Z,- t-will-gillis submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1887538822) at 2024-02-18 08:38 PM PST -t-will-gillis,2024-02-19T04:48:05Z,- t-will-gillis commented on pull request: [6314](https://github.com/hackforla/website/pull/6314#issuecomment-1951688348) at 2024-02-18 08:48 PM PST -t-will-gillis,2024-02-19T04:56:24Z,- t-will-gillis submitted pull request review: [6315](https://github.com/hackforla/website/pull/6315#pullrequestreview-1887553685) at 2024-02-18 08:56 PM PST -t-will-gillis,2024-02-19T04:56:43Z,- t-will-gillis closed issue by PR 6315: [6108](https://github.com/hackforla/website/issues/6108#event-11844197958) at 2024-02-18 08:56 PM PST -t-will-gillis,2024-02-19T05:02:24Z,- t-will-gillis commented on pull request: [6316](https://github.com/hackforla/website/pull/6316#issuecomment-1951701549) at 2024-02-18 09:02 PM PST -t-will-gillis,2024-02-19T17:08:37Z,- t-will-gillis submitted pull request review: [6308](https://github.com/hackforla/website/pull/6308#pullrequestreview-1888899247) at 2024-02-19 09:08 AM PST -t-will-gillis,2024-02-19T17:09:46Z,- t-will-gillis commented on pull request: [6308](https://github.com/hackforla/website/pull/6308#issuecomment-1952899355) at 2024-02-19 09:09 AM PST -t-will-gillis,2024-02-19T17:09:56Z,- t-will-gillis closed issue by PR 6308: [6295](https://github.com/hackforla/website/issues/6295#event-11852512545) at 2024-02-19 09:09 AM PST -t-will-gillis,2024-02-21T00:13:33Z,- t-will-gillis commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1955462024) at 2024-02-20 04:13 PM PST -t-will-gillis,2024-02-21T04:46:57Z,- t-will-gillis closed issue by PR 6325: [6317](https://github.com/hackforla/website/issues/6317#event-11870745692) at 2024-02-20 08:46 PM PST -t-will-gillis,2024-02-21T05:17:05Z,- t-will-gillis submitted pull request review: [6324](https://github.com/hackforla/website/pull/6324#pullrequestreview-1892126845) at 2024-02-20 09:17 PM PST -t-will-gillis,2024-02-21T05:21:08Z,- t-will-gillis commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955917562) at 2024-02-20 09:21 PM PST -t-will-gillis,2024-02-21T05:21:21Z,- t-will-gillis closed issue by PR 6324: [6227](https://github.com/hackforla/website/issues/6227#event-11871009752) at 2024-02-20 09:21 PM PST -t-will-gillis,2024-02-21T19:06:40Z,- t-will-gillis commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1957720408) at 2024-02-21 11:06 AM PST -t-will-gillis,2024-02-24T18:20:06Z,- t-will-gillis commented on issue: [6355](https://github.com/hackforla/website/issues/6355#issuecomment-1962462983) at 2024-02-24 10:20 AM PST -t-will-gillis,2024-02-24T18:20:06Z,- t-will-gillis closed issue as completed: [6355](https://github.com/hackforla/website/issues/6355#event-11911320981) at 2024-02-24 10:20 AM PST -t-will-gillis,2024-02-24T19:38:11Z,- t-will-gillis commented on issue: [6251](https://github.com/hackforla/website/issues/6251#issuecomment-1962628478) at 2024-02-24 11:38 AM PST -t-will-gillis,2024-02-25T02:48:38Z,- t-will-gillis submitted pull request review: [6304](https://github.com/hackforla/website/pull/6304#pullrequestreview-1899595855) at 2024-02-24 06:48 PM PST -t-will-gillis,2024-02-25T03:16:46Z,- t-will-gillis commented on issue: [6313](https://github.com/hackforla/website/issues/6313#issuecomment-1962798430) at 2024-02-24 07:16 PM PST -t-will-gillis,2024-02-29T05:25:13Z,- t-will-gillis opened issue: [6395](https://github.com/hackforla/website/issues/6395) at 2024-02-28 09:25 PM PST -t-will-gillis,2024-02-29T05:45:52Z,- t-will-gillis opened issue: [6396](https://github.com/hackforla/website/issues/6396) at 2024-02-28 09:45 PM PST -t-will-gillis,2024-02-29T06:18:40Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1970482489) at 2024-02-28 10:18 PM PST -t-will-gillis,2024-02-29T19:18:46Z,- t-will-gillis opened issue: [6399](https://github.com/hackforla/website/issues/6399) at 2024-02-29 11:18 AM PST -t-will-gillis,2024-02-29T19:25:13Z,- t-will-gillis commented on issue: [5163](https://github.com/hackforla/website/issues/5163#issuecomment-1971813274) at 2024-02-29 11:25 AM PST -t-will-gillis,2024-02-29T19:25:13Z,- t-will-gillis closed issue as completed: [5163](https://github.com/hackforla/website/issues/5163#event-11970521833) at 2024-02-29 11:25 AM PST -t-will-gillis,2024-03-01T05:25:37Z,- t-will-gillis assigned to issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-1972321839) at 2024-02-29 09:25 PM PST -t-will-gillis,2024-03-01T18:51:13Z,- t-will-gillis closed issue as completed: [4610](https://github.com/hackforla/website/issues/4610#event-11983022719) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:51:14Z,- t-will-gillis commented on issue: [4610](https://github.com/hackforla/website/issues/4610#issuecomment-1973745879) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:51:32Z,- t-will-gillis closed issue as completed: [3507](https://github.com/hackforla/website/issues/3507#event-11983025629) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:51:33Z,- t-will-gillis commented on issue: [3507](https://github.com/hackforla/website/issues/3507#issuecomment-1973746289) at 2024-03-01 10:51 AM PST -t-will-gillis,2024-03-01T18:52:20Z,- t-will-gillis opened issue: [6405](https://github.com/hackforla/website/issues/6405) at 2024-03-01 10:52 AM PST -t-will-gillis,2024-03-02T21:47:57Z,- t-will-gillis commented on issue: [6349](https://github.com/hackforla/website/issues/6349#issuecomment-1974917626) at 2024-03-02 01:47 PM PST -t-will-gillis,2024-03-03T19:54:04Z,- t-will-gillis commented on pull request: [6388](https://github.com/hackforla/website/pull/6388#issuecomment-1975278720) at 2024-03-03 11:54 AM PST -t-will-gillis,2024-03-04T01:38:52Z,- t-will-gillis submitted pull request review: [6388](https://github.com/hackforla/website/pull/6388#pullrequestreview-1913246133) at 2024-03-03 05:38 PM PST -t-will-gillis,2024-03-04T01:39:58Z,- t-will-gillis closed issue by PR 6388: [6323](https://github.com/hackforla/website/issues/6323#event-11992204516) at 2024-03-03 05:39 PM PST -t-will-gillis,2024-03-04T01:49:57Z,- t-will-gillis closed issue by PR 6386: [6375](https://github.com/hackforla/website/issues/6375#event-11992263742) at 2024-03-03 05:49 PM PST -t-will-gillis,2024-03-04T02:00:12Z,- t-will-gillis submitted pull request review: [6394](https://github.com/hackforla/website/pull/6394#pullrequestreview-1913260495) at 2024-03-03 06:00 PM PST -t-will-gillis,2024-03-04T02:01:09Z,- t-will-gillis closed issue by PR 6394: [6259](https://github.com/hackforla/website/issues/6259#event-11992323127) at 2024-03-03 06:01 PM PST -t-will-gillis,2024-03-04T02:10:47Z,- t-will-gillis submitted pull request review: [6407](https://github.com/hackforla/website/pull/6407#pullrequestreview-1913266905) at 2024-03-03 06:10 PM PST -t-will-gillis,2024-03-04T02:10:56Z,- t-will-gillis closed issue by PR 6407: [6242](https://github.com/hackforla/website/issues/6242#event-11992373217) at 2024-03-03 06:10 PM PST -t-will-gillis,2024-03-04T03:15:34Z,- t-will-gillis commented on pull request: [6409](https://github.com/hackforla/website/pull/6409#issuecomment-1975595940) at 2024-03-03 07:15 PM PST -t-will-gillis,2024-03-04T03:35:58Z,- t-will-gillis commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1975638931) at 2024-03-03 07:35 PM PST -t-will-gillis,2024-03-04T22:06:59Z,- t-will-gillis assigned to issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1975870438) at 2024-03-04 02:06 PM PST -t-will-gillis,2024-03-04T23:22:42Z,- t-will-gillis commented on issue: [4541](https://github.com/hackforla/website/issues/4541#issuecomment-1977641356) at 2024-03-04 03:22 PM PST -t-will-gillis,2024-03-04T23:22:42Z,- t-will-gillis closed issue as completed: [4541](https://github.com/hackforla/website/issues/4541#event-12006050756) at 2024-03-04 03:22 PM PST -t-will-gillis,2024-03-05T01:09:42Z,- t-will-gillis assigned to issue: [6395](https://github.com/hackforla/website/issues/6395) at 2024-03-04 05:09 PM PST -t-will-gillis,2024-03-05T01:55:24Z,- t-will-gillis assigned to issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-1977794023) at 2024-03-04 05:55 PM PST -t-will-gillis,2024-03-05T05:00:29Z,- t-will-gillis commented on issue: [6389](https://github.com/hackforla/website/issues/6389#issuecomment-1977970975) at 2024-03-04 09:00 PM PST -t-will-gillis,2024-03-05T17:48:05Z,- t-will-gillis commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-1979315506) at 2024-03-05 09:48 AM PST -t-will-gillis,2024-03-05T18:48:57Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1979427942) at 2024-03-05 10:48 AM PST -t-will-gillis,2024-03-06T21:39:35Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1981836584) at 2024-03-06 01:39 PM PST -t-will-gillis,2024-03-06T22:13:35Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1981904417) at 2024-03-06 02:13 PM PST -t-will-gillis,2024-03-08T06:04:28Z,- t-will-gillis assigned to issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1981904417) at 2024-03-07 10:04 PM PST -t-will-gillis,2024-03-08T06:07:54Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-1985094134) at 2024-03-07 10:07 PM PST -t-will-gillis,2024-03-09T05:39:23Z,- t-will-gillis opened pull request: [6442](https://github.com/hackforla/website/pull/6442) at 2024-03-08 10:39 PM PDT -t-will-gillis,2024-03-10T03:26:57Z,- t-will-gillis submitted pull request review: [6415](https://github.com/hackforla/website/pull/6415#pullrequestreview-1926370910) at 2024-03-09 08:26 PM PDT -t-will-gillis,2024-03-10T17:16:35Z,- t-will-gillis commented on issue: [6444](https://github.com/hackforla/website/issues/6444#issuecomment-1987299544) at 2024-03-10 10:16 AM PDT -t-will-gillis,2024-03-10T17:16:35Z,- t-will-gillis closed issue as completed: [6444](https://github.com/hackforla/website/issues/6444#event-12065947675) at 2024-03-10 10:16 AM PDT -t-will-gillis,2024-03-10T17:22:51Z,- t-will-gillis commented on issue: [5500](https://github.com/hackforla/website/issues/5500#issuecomment-1987301097) at 2024-03-10 10:22 AM PDT -t-will-gillis,2024-03-10T17:32:04Z,- t-will-gillis commented on pull request: [6410](https://github.com/hackforla/website/pull/6410#issuecomment-1987303390) at 2024-03-10 10:32 AM PDT -t-will-gillis,2024-03-10T22:03:17Z,- t-will-gillis submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1926710993) at 2024-03-10 03:03 PM PDT -t-will-gillis,2024-03-10T22:09:11Z,- t-will-gillis closed issue by PR 6440: [5710](https://github.com/hackforla/website/issues/5710#event-12066489327) at 2024-03-10 03:09 PM PDT -t-will-gillis,2024-03-10T22:31:39Z,- t-will-gillis commented on issue: [5996](https://github.com/hackforla/website/issues/5996#issuecomment-1987384567) at 2024-03-10 03:31 PM PDT -t-will-gillis,2024-03-10T22:31:39Z,- t-will-gillis closed issue as completed: [5996](https://github.com/hackforla/website/issues/5996#event-12066529686) at 2024-03-10 03:31 PM PDT -t-will-gillis,2024-03-11T02:41:59Z,- t-will-gillis commented on issue: [6088](https://github.com/hackforla/website/issues/6088#issuecomment-1987526865) at 2024-03-10 07:41 PM PDT -t-will-gillis,2024-03-11T02:41:59Z,- t-will-gillis closed issue as completed: [6088](https://github.com/hackforla/website/issues/6088#event-12067450634) at 2024-03-10 07:41 PM PDT -t-will-gillis,2024-03-11T03:39:50Z,- t-will-gillis commented on pull request: [6447](https://github.com/hackforla/website/pull/6447#issuecomment-1987581526) at 2024-03-10 08:39 PM PDT -t-will-gillis,2024-03-11T20:06:44Z,- t-will-gillis submitted pull request review: [6438](https://github.com/hackforla/website/pull/6438#pullrequestreview-1929096686) at 2024-03-11 01:06 PM PDT -t-will-gillis,2024-03-11T20:06:54Z,- t-will-gillis closed issue by PR 6438: [6180](https://github.com/hackforla/website/issues/6180#event-12079422756) at 2024-03-11 01:06 PM PDT -t-will-gillis,2024-03-11T20:29:07Z,- t-will-gillis submitted pull request review: [6441](https://github.com/hackforla/website/pull/6441#pullrequestreview-1929180848) at 2024-03-11 01:29 PM PDT -t-will-gillis,2024-03-11T20:33:13Z,- t-will-gillis closed issue by PR 6441: [5187](https://github.com/hackforla/website/issues/5187#event-12079804400) at 2024-03-11 01:33 PM PDT -t-will-gillis,2024-03-11T21:50:36Z,- t-will-gillis opened issue: [6454](https://github.com/hackforla/website/issues/6454) at 2024-03-11 02:50 PM PDT -t-will-gillis,2024-03-13T16:10:00Z,- t-will-gillis assigned to issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1970482489) at 2024-03-13 09:10 AM PDT -t-will-gillis,2024-03-13T20:42:32Z,- t-will-gillis opened issue: [6459](https://github.com/hackforla/website/issues/6459) at 2024-03-13 01:42 PM PDT -t-will-gillis,2024-03-13T20:51:06Z,- t-will-gillis opened issue: [6460](https://github.com/hackforla/website/issues/6460) at 2024-03-13 01:51 PM PDT -t-will-gillis,2024-03-13T22:34:05Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1996005873) at 2024-03-13 03:34 PM PDT -t-will-gillis,2024-03-14T04:20:43Z,- t-will-gillis commented on issue: [6389](https://github.com/hackforla/website/issues/6389#issuecomment-1996375789) at 2024-03-13 09:20 PM PDT -t-will-gillis,2024-03-14T18:50:51Z,- t-will-gillis commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-1998109832) at 2024-03-14 11:50 AM PDT -t-will-gillis,2024-03-15T07:04:47Z,- t-will-gillis unassigned from issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1996005873) at 2024-03-15 12:04 AM PDT -t-will-gillis,2024-03-15T07:56:13Z,- t-will-gillis unassigned from issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-1977550201) at 2024-03-15 12:56 AM PDT -t-will-gillis,2024-03-15T08:07:59Z,- t-will-gillis unassigned from issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-1977761450) at 2024-03-15 01:07 AM PDT -t-will-gillis,2024-03-15T18:49:34Z,- t-will-gillis commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-2000257685) at 2024-03-15 11:49 AM PDT -t-will-gillis,2024-03-15T20:07:26Z,- t-will-gillis assigned to issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-1999060052) at 2024-03-15 01:07 PM PDT -t-will-gillis,2024-03-15T20:19:20Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2000386826) at 2024-03-15 01:19 PM PDT -t-will-gillis,2024-03-15T21:37:50Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2000479222) at 2024-03-15 02:37 PM PDT -t-will-gillis,2024-03-15T21:56:59Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2000527464) at 2024-03-15 02:56 PM PDT -t-will-gillis,2024-03-15T23:23:57Z,- t-will-gillis commented on issue: [6396](https://github.com/hackforla/website/issues/6396#issuecomment-2000620803) at 2024-03-15 04:23 PM PDT -t-will-gillis,2024-03-17T16:42:58Z,- t-will-gillis submitted pull request review: [6469](https://github.com/hackforla/website/pull/6469#pullrequestreview-1941529653) at 2024-03-17 09:42 AM PDT -t-will-gillis,2024-03-17T16:43:25Z,- t-will-gillis closed issue by PR 6469: [6460](https://github.com/hackforla/website/issues/6460#event-12143427525) at 2024-03-17 09:43 AM PDT -t-will-gillis,2024-03-17T17:26:13Z,- t-will-gillis submitted pull request review: [6470](https://github.com/hackforla/website/pull/6470#pullrequestreview-1941536454) at 2024-03-17 10:26 AM PDT -t-will-gillis,2024-03-17T18:08:03Z,- t-will-gillis submitted pull request review: [6468](https://github.com/hackforla/website/pull/6468#pullrequestreview-1941544625) at 2024-03-17 11:08 AM PDT -t-will-gillis,2024-03-18T02:50:03Z,- t-will-gillis submitted pull request review: [6470](https://github.com/hackforla/website/pull/6470#pullrequestreview-1941892391) at 2024-03-17 07:50 PM PDT -t-will-gillis,2024-03-18T04:23:43Z,- t-will-gillis closed issue by PR 6470: [6459](https://github.com/hackforla/website/issues/6459#event-12145694317) at 2024-03-17 09:23 PM PDT -t-will-gillis,2024-03-18T04:27:19Z,- t-will-gillis closed issue by PR 6468: [6396](https://github.com/hackforla/website/issues/6396#event-12145713081) at 2024-03-17 09:27 PM PDT -t-will-gillis,2024-03-20T17:54:45Z,- t-will-gillis commented on issue: [6395](https://github.com/hackforla/website/issues/6395#issuecomment-2010261952) at 2024-03-20 10:54 AM PDT -t-will-gillis,2024-03-21T05:08:42Z,- t-will-gillis commented on issue: [5059](https://github.com/hackforla/website/issues/5059#issuecomment-2011229465) at 2024-03-20 10:08 PM PDT -t-will-gillis,2024-03-21T20:36:54Z,- t-will-gillis commented on issue: [6193](https://github.com/hackforla/website/issues/6193#issuecomment-2013683444) at 2024-03-21 01:36 PM PDT -t-will-gillis,2024-03-23T19:01:01Z,- t-will-gillis commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016576518) at 2024-03-23 12:01 PM PDT -t-will-gillis,2024-03-23T19:13:13Z,- t-will-gillis commented on issue: [6155](https://github.com/hackforla/website/issues/6155#issuecomment-2016579316) at 2024-03-23 12:13 PM PDT -t-will-gillis,2024-03-23T19:13:40Z,- t-will-gillis commented on pull request: [6507](https://github.com/hackforla/website/pull/6507#issuecomment-2016579430) at 2024-03-23 12:13 PM PDT -t-will-gillis,2024-03-24T17:17:21Z,- t-will-gillis commented on issue: [1976](https://github.com/hackforla/website/issues/1976#issuecomment-2016876535) at 2024-03-24 10:17 AM PDT -t-will-gillis,2024-03-24T17:28:49Z,- t-will-gillis submitted pull request review: [6502](https://github.com/hackforla/website/pull/6502#pullrequestreview-1956610160) at 2024-03-24 10:28 AM PDT -t-will-gillis,2024-03-24T21:12:10Z,- t-will-gillis submitted pull request review: [6502](https://github.com/hackforla/website/pull/6502#pullrequestreview-1956655794) at 2024-03-24 02:12 PM PDT -t-will-gillis,2024-03-24T21:35:34Z,- t-will-gillis submitted pull request review: [6505](https://github.com/hackforla/website/pull/6505#pullrequestreview-1956661099) at 2024-03-24 02:35 PM PDT -t-will-gillis,2024-03-24T21:36:17Z,- t-will-gillis closed issue by PR 6505: [6474](https://github.com/hackforla/website/issues/6474#event-12227638758) at 2024-03-24 02:36 PM PDT -t-will-gillis,2024-03-24T22:28:09Z,- t-will-gillis commented on pull request: [6502](https://github.com/hackforla/website/pull/6502#issuecomment-2016968165) at 2024-03-24 03:28 PM PDT -t-will-gillis,2024-03-24T22:33:16Z,- t-will-gillis submitted pull request review: [6502](https://github.com/hackforla/website/pull/6502#pullrequestreview-1956672809) at 2024-03-24 03:33 PM PDT -t-will-gillis,2024-03-24T22:33:34Z,- t-will-gillis closed issue by PR 6502: [4821](https://github.com/hackforla/website/issues/4821#event-12227761759) at 2024-03-24 03:33 PM PDT -t-will-gillis,2024-03-25T04:34:02Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2017192353) at 2024-03-24 09:34 PM PDT -t-will-gillis,2024-03-25T22:11:26Z,- t-will-gillis commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2019009195) at 2024-03-25 03:11 PM PDT -t-will-gillis,2024-03-26T19:14:10Z,- t-will-gillis opened pull request: [6520](https://github.com/hackforla/website/pull/6520) at 2024-03-26 12:14 PM PDT -t-will-gillis,2024-03-26T22:21:06Z,- t-will-gillis commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2021568881) at 2024-03-26 03:21 PM PDT -t-will-gillis,2024-03-26T22:21:25Z,- t-will-gillis closed issue as completed: [6426](https://github.com/hackforla/website/issues/6426#event-12257322903) at 2024-03-26 03:21 PM PDT -t-will-gillis,2024-03-26T22:30:44Z,- t-will-gillis commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2021580302) at 2024-03-26 03:30 PM PDT -t-will-gillis,2024-03-26T22:45:14Z,- t-will-gillis assigned to issue: [6454](https://github.com/hackforla/website/issues/6454) at 2024-03-26 03:45 PM PDT -t-will-gillis,2024-03-27T21:07:54Z,- t-will-gillis submitted pull request review: [6503](https://github.com/hackforla/website/pull/6503#pullrequestreview-1964780596) at 2024-03-27 02:07 PM PDT -t-will-gillis,2024-03-27T21:36:03Z,- t-will-gillis opened issue: [6537](https://github.com/hackforla/website/issues/6537) at 2024-03-27 02:36 PM PDT -t-will-gillis,2024-03-29T18:21:03Z,- t-will-gillis commented on issue: [6329](https://github.com/hackforla/website/issues/6329#issuecomment-2027573258) at 2024-03-29 11:21 AM PDT -t-will-gillis,2024-03-30T05:51:04Z,- t-will-gillis commented on pull request: [6503](https://github.com/hackforla/website/pull/6503#issuecomment-2027930590) at 2024-03-29 10:51 PM PDT -t-will-gillis,2024-04-01T04:35:58Z,- t-will-gillis closed issue as completed: [6029](https://github.com/hackforla/website/issues/6029#event-12306440578) at 2024-03-31 09:35 PM PDT -t-will-gillis,2024-04-01T04:35:59Z,- t-will-gillis commented on issue: [6029](https://github.com/hackforla/website/issues/6029#issuecomment-2029144147) at 2024-03-31 09:35 PM PDT -t-will-gillis,2024-04-01T04:36:00Z,- t-will-gillis commented on issue: [6119](https://github.com/hackforla/website/issues/6119#issuecomment-2029144161) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:00Z,- t-will-gillis closed issue as completed: [6119](https://github.com/hackforla/website/issues/6119#event-12306440709) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:05Z,- t-will-gillis closed issue as completed: [6038](https://github.com/hackforla/website/issues/6038#event-12306441156) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:06Z,- t-will-gillis commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2029144222) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:06Z,- t-will-gillis closed issue as completed: [6083](https://github.com/hackforla/website/issues/6083#event-12306441239) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:07Z,- t-will-gillis commented on issue: [6083](https://github.com/hackforla/website/issues/6083#issuecomment-2029144238) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:09Z,- t-will-gillis closed issue as completed: [5065](https://github.com/hackforla/website/issues/5065#event-12306441496) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:10Z,- t-will-gillis commented on issue: [5065](https://github.com/hackforla/website/issues/5065#issuecomment-2029144279) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:10Z,- t-will-gillis closed issue as completed: [5720](https://github.com/hackforla/website/issues/5720#event-12306441581) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:11Z,- t-will-gillis commented on issue: [5212](https://github.com/hackforla/website/issues/5212#issuecomment-2029144300) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:11Z,- t-will-gillis closed issue as completed: [5212](https://github.com/hackforla/website/issues/5212#event-12306441619) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:11Z,- t-will-gillis commented on issue: [5720](https://github.com/hackforla/website/issues/5720#issuecomment-2029144292) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:15Z,- t-will-gillis commented on issue: [5774](https://github.com/hackforla/website/issues/5774#issuecomment-2029144340) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:15Z,- t-will-gillis closed issue as completed: [5774](https://github.com/hackforla/website/issues/5774#event-12306441949) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-01T04:36:50Z,- t-will-gillis opened issue: [6554](https://github.com/hackforla/website/issues/6554) at 2024-03-31 09:36 PM PDT -t-will-gillis,2024-04-02T01:47:44Z,- t-will-gillis opened issue: [6555](https://github.com/hackforla/website/issues/6555) at 2024-04-01 06:47 PM PDT -t-will-gillis,2024-04-02T01:47:51Z,- t-will-gillis assigned to issue: [6555](https://github.com/hackforla/website/issues/6555) at 2024-04-01 06:47 PM PDT -t-will-gillis,2024-04-02T01:48:05Z,- t-will-gillis unassigned from issue: [6555](https://github.com/hackforla/website/issues/6555) at 2024-04-01 06:48 PM PDT -t-will-gillis,2024-04-02T01:53:55Z,- t-will-gillis assigned to issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2030928585) at 2024-04-01 06:53 PM PDT -t-will-gillis,2024-04-02T04:50:26Z,- t-will-gillis opened pull request: [6556](https://github.com/hackforla/website/pull/6556) at 2024-04-01 09:50 PM PDT -t-will-gillis,2024-04-02T17:43:52Z,- t-will-gillis commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032674950) at 2024-04-02 10:43 AM PDT -t-will-gillis,2024-04-02T17:55:19Z,- t-will-gillis opened pull request: [6557](https://github.com/hackforla/website/pull/6557) at 2024-04-02 10:55 AM PDT -t-will-gillis,2024-04-02T18:00:15Z,- t-will-gillis commented on pull request: [6556](https://github.com/hackforla/website/pull/6556#issuecomment-2032706965) at 2024-04-02 11:00 AM PDT -t-will-gillis,2024-04-02T18:00:15Z,- t-will-gillis pull request closed w/o merging: [6556](https://github.com/hackforla/website/pull/6556#event-12329999649) at 2024-04-02 11:00 AM PDT -t-will-gillis,2024-04-02T18:06:16Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2032718459) at 2024-04-02 11:06 AM PDT -t-will-gillis,2024-04-02T18:26:09Z,- t-will-gillis commented on pull request: [6557](https://github.com/hackforla/website/pull/6557#issuecomment-2032755129) at 2024-04-02 11:26 AM PDT -t-will-gillis,2024-04-02T18:26:23Z,- t-will-gillis pull request merged: [6557](https://github.com/hackforla/website/pull/6557#event-12330344461) at 2024-04-02 11:26 AM PDT -t-will-gillis,2024-04-03T04:19:05Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2033502154) at 2024-04-02 09:19 PM PDT -t-will-gillis,2024-04-03T17:07:12Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2035134830) at 2024-04-03 10:07 AM PDT -t-will-gillis,2024-04-04T05:54:54Z,- t-will-gillis commented on issue: [6563](https://github.com/hackforla/website/issues/6563#issuecomment-2036245645) at 2024-04-03 10:54 PM PDT -t-will-gillis,2024-04-04T05:55:10Z,- t-will-gillis closed issue as completed: [6563](https://github.com/hackforla/website/issues/6563#event-12352046545) at 2024-04-03 10:55 PM PDT -t-will-gillis,2024-04-11T17:53:23Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2050209304) at 2024-04-11 10:53 AM PDT -t-will-gillis,2024-04-11T18:09:32Z,- t-will-gillis commented on issue: [6537](https://github.com/hackforla/website/issues/6537#issuecomment-2050240363) at 2024-04-11 11:09 AM PDT -t-will-gillis,2024-04-11T18:09:32Z,- t-will-gillis closed issue as completed: [6537](https://github.com/hackforla/website/issues/6537#event-12440009334) at 2024-04-11 11:09 AM PDT -t-will-gillis,2024-04-12T19:02:14Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2052348398) at 2024-04-12 12:02 PM PDT -t-will-gillis,2024-04-14T16:44:02Z,- t-will-gillis commented on pull request: [6626](https://github.com/hackforla/website/pull/6626#issuecomment-2054117844) at 2024-04-14 09:44 AM PDT -t-will-gillis,2024-04-14T16:47:19Z,- t-will-gillis closed issue by PR 6627: [6176](https://github.com/hackforla/website/issues/6176#event-12460817032) at 2024-04-14 09:47 AM PDT -t-will-gillis,2024-04-15T01:15:29Z,- t-will-gillis closed issue by PR 6635: [6155](https://github.com/hackforla/website/issues/6155#event-12461860600) at 2024-04-14 06:15 PM PDT -t-will-gillis,2024-04-15T01:37:48Z,- t-will-gillis submitted pull request review: [6562](https://github.com/hackforla/website/pull/6562#pullrequestreview-1999814336) at 2024-04-14 06:37 PM PDT -t-will-gillis,2024-04-15T01:41:37Z,- t-will-gillis commented on pull request: [6565](https://github.com/hackforla/website/pull/6565#issuecomment-2054290311) at 2024-04-14 06:41 PM PDT -t-will-gillis,2024-04-15T01:46:32Z,- t-will-gillis submitted pull request review: [6565](https://github.com/hackforla/website/pull/6565#pullrequestreview-1999854183) at 2024-04-14 06:46 PM PDT -t-will-gillis,2024-04-15T02:14:50Z,- t-will-gillis submitted pull request review: [6634](https://github.com/hackforla/website/pull/6634#pullrequestreview-1999918707) at 2024-04-14 07:14 PM PDT -t-will-gillis,2024-04-15T19:18:41Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2057633722) at 2024-04-15 12:18 PM PDT -t-will-gillis,2024-04-16T01:45:29Z,- t-will-gillis assigned to issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-1566234854) at 2024-04-15 06:45 PM PDT -t-will-gillis,2024-04-16T23:23:42Z,- t-will-gillis commented on issue: [6499](https://github.com/hackforla/website/issues/6499#issuecomment-2060063190) at 2024-04-16 04:23 PM PDT -t-will-gillis,2024-04-16T23:23:42Z,- t-will-gillis closed issue as completed: [6499](https://github.com/hackforla/website/issues/6499#event-12498081836) at 2024-04-16 04:23 PM PDT -t-will-gillis,2024-04-16T23:52:50Z,- t-will-gillis commented on issue: [6586](https://github.com/hackforla/website/issues/6586#issuecomment-2060085312) at 2024-04-16 04:52 PM PDT -t-will-gillis,2024-04-16T23:52:50Z,- t-will-gillis closed issue as not planned: [6586](https://github.com/hackforla/website/issues/6586#event-12498331739) at 2024-04-16 04:52 PM PDT -t-will-gillis,2024-04-16T23:53:13Z,- t-will-gillis commented on issue: [6587](https://github.com/hackforla/website/issues/6587#issuecomment-2060085599) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:53:13Z,- t-will-gillis closed issue as not planned: [6587](https://github.com/hackforla/website/issues/6587#event-12498335047) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:53:40Z,- t-will-gillis commented on issue: [6588](https://github.com/hackforla/website/issues/6588#issuecomment-2060085902) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:53:40Z,- t-will-gillis closed issue as not planned: [6588](https://github.com/hackforla/website/issues/6588#event-12498338613) at 2024-04-16 04:53 PM PDT -t-will-gillis,2024-04-16T23:54:10Z,- t-will-gillis commented on issue: [6589](https://github.com/hackforla/website/issues/6589#issuecomment-2060086199) at 2024-04-16 04:54 PM PDT -t-will-gillis,2024-04-16T23:54:10Z,- t-will-gillis closed issue as not planned: [6589](https://github.com/hackforla/website/issues/6589#event-12498342627) at 2024-04-16 04:54 PM PDT -t-will-gillis,2024-04-16T23:55:20Z,- t-will-gillis commented on issue: [6541](https://github.com/hackforla/website/issues/6541#issuecomment-2060086988) at 2024-04-16 04:55 PM PDT -t-will-gillis,2024-04-16T23:55:20Z,- t-will-gillis closed issue as completed: [6541](https://github.com/hackforla/website/issues/6541#event-12498352379) at 2024-04-16 04:55 PM PDT -t-will-gillis,2024-04-17T17:34:39Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2061846030) at 2024-04-17 10:34 AM PDT -t-will-gillis,2024-04-17T18:09:03Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2061914180) at 2024-04-17 11:09 AM PDT -t-will-gillis,2024-04-17T23:38:06Z,- t-will-gillis closed issue by PR 6503: [5059](https://github.com/hackforla/website/issues/5059#event-12515933176) at 2024-04-17 04:38 PM PDT -t-will-gillis,2024-04-17T23:51:41Z,- t-will-gillis submitted pull request review: [6656](https://github.com/hackforla/website/pull/6656#pullrequestreview-2007561491) at 2024-04-17 04:51 PM PDT -t-will-gillis,2024-04-18T19:05:28Z,- t-will-gillis unassigned from issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2061846030) at 2024-04-18 12:05 PM PDT -t-will-gillis,2024-04-18T19:05:39Z,- t-will-gillis assigned to issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2061846030) at 2024-04-18 12:05 PM PDT -t-will-gillis,2024-04-18T19:06:03Z,- t-will-gillis unassigned from issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2064982041) at 2024-04-18 12:06 PM PDT -t-will-gillis,2024-04-18T21:14:36Z,- t-will-gillis submitted pull request review: [6681](https://github.com/hackforla/website/pull/6681#pullrequestreview-2009913354) at 2024-04-18 02:14 PM PDT -t-will-gillis,2024-04-18T21:14:45Z,- t-will-gillis closed issue by PR 6681: [6179](https://github.com/hackforla/website/issues/6179#event-12529163671) at 2024-04-18 02:14 PM PDT -t-will-gillis,2024-04-18T22:30:53Z,- t-will-gillis opened issue: [6684](https://github.com/hackforla/website/issues/6684) at 2024-04-18 03:30 PM PDT -t-will-gillis,2024-04-18T22:32:20Z,- t-will-gillis commented on issue: [6218](https://github.com/hackforla/website/issues/6218#issuecomment-2065433222) at 2024-04-18 03:32 PM PDT -t-will-gillis,2024-04-18T22:32:21Z,- t-will-gillis closed issue as completed: [6218](https://github.com/hackforla/website/issues/6218#event-12529943064) at 2024-04-18 03:32 PM PDT -t-will-gillis,2024-04-18T23:05:07Z,- t-will-gillis commented on issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-2065461586) at 2024-04-18 04:05 PM PDT -t-will-gillis,2024-04-18T23:05:07Z,- t-will-gillis closed issue as completed: [4703](https://github.com/hackforla/website/issues/4703#event-12530206478) at 2024-04-18 04:05 PM PDT -t-will-gillis,2024-04-20T03:07:11Z,- t-will-gillis commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067527628) at 2024-04-19 08:07 PM PDT -t-will-gillis,2024-04-20T17:07:19Z,- t-will-gillis commented on pull request: [6520](https://github.com/hackforla/website/pull/6520#issuecomment-2067731503) at 2024-04-20 10:07 AM PDT -t-will-gillis,2024-04-20T23:35:13Z,- t-will-gillis commented on issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2067814436) at 2024-04-20 04:35 PM PDT -t-will-gillis,2024-04-21T17:37:33Z,- t-will-gillis closed issue by PR 6651: [6622](https://github.com/hackforla/website/issues/6622#event-12551509117) at 2024-04-21 10:37 AM PDT -t-will-gillis,2024-04-21T18:07:23Z,- t-will-gillis submitted pull request review: [6682](https://github.com/hackforla/website/pull/6682#pullrequestreview-2013491136) at 2024-04-21 11:07 AM PDT -t-will-gillis,2024-04-21T18:07:45Z,- t-will-gillis closed issue by PR 6682: [6191](https://github.com/hackforla/website/issues/6191#event-12551593504) at 2024-04-21 11:07 AM PDT -t-will-gillis,2024-04-22T01:46:21Z,- t-will-gillis closed issue by PR 6694: [6182](https://github.com/hackforla/website/issues/6182#event-12552820992) at 2024-04-21 06:46 PM PDT -t-will-gillis,2024-04-22T01:50:14Z,- t-will-gillis closed issue by PR 6693: [6234](https://github.com/hackforla/website/issues/6234#event-12552841730) at 2024-04-21 06:50 PM PDT -t-will-gillis,2024-04-22T03:49:39Z,- t-will-gillis submitted pull request review: [6685](https://github.com/hackforla/website/pull/6685#pullrequestreview-2013712651) at 2024-04-21 08:49 PM PDT -t-will-gillis,2024-04-23T01:49:55Z,- t-will-gillis assigned to issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2046334159) at 2024-04-22 06:49 PM PDT -t-will-gillis,2024-04-23T03:11:28Z,- t-will-gillis commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2071328184) at 2024-04-22 08:11 PM PDT -t-will-gillis,2024-04-24T05:34:21Z,- t-will-gillis commented on issue: [6726](https://github.com/hackforla/website/issues/6726#issuecomment-2074067269) at 2024-04-23 10:34 PM PDT -t-will-gillis,2024-04-24T05:34:21Z,- t-will-gillis closed issue as not planned: [6726](https://github.com/hackforla/website/issues/6726#event-12585678605) at 2024-04-23 10:34 PM PDT -t-will-gillis,2024-04-24T22:27:00Z,- t-will-gillis commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2075954004) at 2024-04-24 03:27 PM PDT -t-will-gillis,2024-04-25T20:35:41Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078129842) at 2024-04-25 01:35 PM PDT -t-will-gillis,2024-04-25T23:27:22Z,- t-will-gillis commented on issue: [6555](https://github.com/hackforla/website/issues/6555#issuecomment-2078329085) at 2024-04-25 04:27 PM PDT -t-will-gillis,2024-04-27T01:59:32Z,- t-will-gillis commented on issue: [6664](https://github.com/hackforla/website/issues/6664#issuecomment-2080316543) at 2024-04-26 06:59 PM PDT -t-will-gillis,2024-04-27T01:59:32Z,- t-will-gillis closed issue as completed: [6664](https://github.com/hackforla/website/issues/6664#event-12629769416) at 2024-04-26 06:59 PM PDT -t-will-gillis,2024-04-27T02:00:46Z,- t-will-gillis commented on issue: [6663](https://github.com/hackforla/website/issues/6663#issuecomment-2080316914) at 2024-04-26 07:00 PM PDT -t-will-gillis,2024-04-27T02:00:46Z,- t-will-gillis closed issue as completed: [6663](https://github.com/hackforla/website/issues/6663#event-12629771591) at 2024-04-26 07:00 PM PDT -t-will-gillis,2024-04-27T02:36:03Z,- t-will-gillis commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2080328458) at 2024-04-26 07:36 PM PDT -t-will-gillis,2024-04-28T02:29:47Z,- t-will-gillis submitted pull request review: [6685](https://github.com/hackforla/website/pull/6685#pullrequestreview-2026870837) at 2024-04-27 07:29 PM PDT -t-will-gillis,2024-04-28T03:57:34Z,- t-will-gillis submitted pull request review: [6685](https://github.com/hackforla/website/pull/6685#pullrequestreview-2026880102) at 2024-04-27 08:57 PM PDT -t-will-gillis,2024-04-28T03:57:53Z,- t-will-gillis closed issue by PR 6685: [5182](https://github.com/hackforla/website/issues/5182#event-12633706424) at 2024-04-27 08:57 PM PDT -t-will-gillis,2024-04-28T16:40:41Z,- t-will-gillis closed issue by PR 6712: [6683](https://github.com/hackforla/website/issues/6683#event-12635284552) at 2024-04-28 09:40 AM PDT -t-will-gillis,2024-04-28T16:43:46Z,- t-will-gillis commented on issue: [6290](https://github.com/hackforla/website/issues/6290#issuecomment-2081548677) at 2024-04-28 09:43 AM PDT -t-will-gillis,2024-04-28T16:43:46Z,- t-will-gillis closed issue as completed: [6290](https://github.com/hackforla/website/issues/6290#event-12635289871) at 2024-04-28 09:43 AM PDT -t-will-gillis,2024-04-28T16:50:25Z,- t-will-gillis submitted pull request review: [6744](https://github.com/hackforla/website/pull/6744#pullrequestreview-2027179389) at 2024-04-28 09:50 AM PDT -t-will-gillis,2024-04-28T16:54:02Z,- t-will-gillis submitted pull request review: [6745](https://github.com/hackforla/website/pull/6745#pullrequestreview-2027179792) at 2024-04-28 09:54 AM PDT -t-will-gillis,2024-04-28T16:54:20Z,- t-will-gillis closed issue by PR 6745: [6684](https://github.com/hackforla/website/issues/6684#event-12635310152) at 2024-04-28 09:54 AM PDT -t-will-gillis,2024-04-28T19:28:38Z,- t-will-gillis submitted pull request review: [6744](https://github.com/hackforla/website/pull/6744#pullrequestreview-2027257472) at 2024-04-28 12:28 PM PDT -t-will-gillis,2024-04-28T19:29:03Z,- t-will-gillis closed issue by PR 6744: [6238](https://github.com/hackforla/website/issues/6238#event-12635653165) at 2024-04-28 12:29 PM PDT -t-will-gillis,2024-04-28T19:40:55Z,- t-will-gillis commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2081623771) at 2024-04-28 12:40 PM PDT -t-will-gillis,2024-04-28T19:41:10Z,- t-will-gillis commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2081624063) at 2024-04-28 12:41 PM PDT -t-will-gillis,2024-04-28T19:41:25Z,- t-will-gillis commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2081624345) at 2024-04-28 12:41 PM PDT -t-will-gillis,2024-04-28T19:41:43Z,- t-will-gillis commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2081624709) at 2024-04-28 12:41 PM PDT -t-will-gillis,2024-04-28T19:42:03Z,- t-will-gillis commented on pull request: [6746](https://github.com/hackforla/website/pull/6746#issuecomment-2081625195) at 2024-04-28 12:42 PM PDT -t-will-gillis,2024-04-28T23:04:20Z,- t-will-gillis submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2027399323) at 2024-04-28 04:04 PM PDT -t-will-gillis,2024-04-29T18:25:25Z,- t-will-gillis commented on pull request: [6772](https://github.com/hackforla/website/pull/6772#issuecomment-2083381915) at 2024-04-29 11:25 AM PDT -t-will-gillis,2024-04-29T18:25:38Z,- t-will-gillis closed issue by PR 6772: [5847](https://github.com/hackforla/website/issues/5847#event-12647331115) at 2024-04-29 11:25 AM PDT -t-will-gillis,2024-04-30T00:03:12Z,- t-will-gillis commented on pull request: [6692](https://github.com/hackforla/website/pull/6692#issuecomment-2083899622) at 2024-04-29 05:03 PM PDT -t-will-gillis,2024-04-30T00:40:10Z,- t-will-gillis commented on pull request: [6685](https://github.com/hackforla/website/pull/6685#issuecomment-2083966644) at 2024-04-29 05:40 PM PDT -t-will-gillis,2024-04-30T01:19:50Z,- t-will-gillis assigned to issue: [4932](https://github.com/hackforla/website/issues/4932) at 2024-04-29 06:19 PM PDT -t-will-gillis,2024-04-30T01:29:23Z,- t-will-gillis commented on issue: [4932](https://github.com/hackforla/website/issues/4932#issuecomment-2084085731) at 2024-04-29 06:29 PM PDT -t-will-gillis,2024-04-30T03:04:54Z,- t-will-gillis commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2084290326) at 2024-04-29 08:04 PM PDT -t-will-gillis,2024-04-30T03:05:29Z,- t-will-gillis closed issue by PR 6767: [5846](https://github.com/hackforla/website/issues/5846#event-12651639495) at 2024-04-29 08:05 PM PDT -t-will-gillis,2024-04-30T04:47:12Z,- t-will-gillis commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2084372988) at 2024-04-29 09:47 PM PDT -t-will-gillis,2024-04-30T04:57:44Z,- t-will-gillis commented on issue: [6778](https://github.com/hackforla/website/issues/6778#issuecomment-2084382243) at 2024-04-29 09:57 PM PDT -t-will-gillis,2024-04-30T21:03:08Z,- t-will-gillis submitted pull request review: [6790](https://github.com/hackforla/website/pull/6790#pullrequestreview-2032518823) at 2024-04-30 02:03 PM PDT -t-will-gillis,2024-04-30T21:51:35Z,- t-will-gillis submitted pull request review: [6790](https://github.com/hackforla/website/pull/6790#pullrequestreview-2032587526) at 2024-04-30 02:51 PM PDT -t-will-gillis,2024-04-30T22:00:02Z,- t-will-gillis opened pull request: [6793](https://github.com/hackforla/website/pull/6793) at 2024-04-30 03:00 PM PDT -t-will-gillis,2024-04-30T22:04:10Z,- t-will-gillis opened issue: [6794](https://github.com/hackforla/website/issues/6794) at 2024-04-30 03:04 PM PDT -t-will-gillis,2024-04-30T22:04:16Z,- t-will-gillis assigned to issue: [6794](https://github.com/hackforla/website/issues/6794) at 2024-04-30 03:04 PM PDT -t-will-gillis,2024-04-30T22:08:00Z,- t-will-gillis opened pull request: [6795](https://github.com/hackforla/website/pull/6795) at 2024-04-30 03:08 PM PDT -t-will-gillis,2024-04-30T22:09:52Z,- t-will-gillis pull request closed w/o merging: [6793](https://github.com/hackforla/website/pull/6793#event-12664539136) at 2024-04-30 03:09 PM PDT -t-will-gillis,2024-04-30T22:15:14Z,- t-will-gillis commented on pull request: [6790](https://github.com/hackforla/website/pull/6790#issuecomment-2087554978) at 2024-04-30 03:15 PM PDT -t-will-gillis,2024-04-30T22:15:25Z,- t-will-gillis pull request closed w/o merging: [6795](https://github.com/hackforla/website/pull/6795#event-12664585242) at 2024-04-30 03:15 PM PDT -t-will-gillis,2024-04-30T22:17:26Z,- t-will-gillis closed issue as not planned: [6794](https://github.com/hackforla/website/issues/6794#event-12664602541) at 2024-04-30 03:17 PM PDT -t-will-gillis,2024-04-30T22:22:23Z,- t-will-gillis commented on issue: [6778](https://github.com/hackforla/website/issues/6778#issuecomment-2087575980) at 2024-04-30 03:22 PM PDT -t-will-gillis,2024-04-30T22:22:23Z,- t-will-gillis closed issue as completed: [6778](https://github.com/hackforla/website/issues/6778#event-12664641967) at 2024-04-30 03:22 PM PDT -t-will-gillis,2024-05-01T04:01:03Z,- t-will-gillis opened issue: [6797](https://github.com/hackforla/website/issues/6797) at 2024-04-30 09:01 PM PDT -t-will-gillis,2024-05-01T04:01:05Z,- t-will-gillis assigned to issue: [6797](https://github.com/hackforla/website/issues/6797) at 2024-04-30 09:01 PM PDT -t-will-gillis,2024-05-01T04:04:41Z,- t-will-gillis commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-2087943492) at 2024-04-30 09:04 PM PDT -t-will-gillis,2024-05-01T21:43:15Z,- t-will-gillis opened issue: [6803](https://github.com/hackforla/website/issues/6803) at 2024-05-01 02:43 PM PDT -t-will-gillis,2024-05-01T21:44:52Z,- t-will-gillis assigned to issue: [6803](https://github.com/hackforla/website/issues/6803) at 2024-05-01 02:44 PM PDT -t-will-gillis,2024-05-01T22:03:10Z,- t-will-gillis opened pull request: [6804](https://github.com/hackforla/website/pull/6804) at 2024-05-01 03:03 PM PDT -t-will-gillis,2024-05-02T02:56:41Z,- t-will-gillis submitted pull request review: [6785](https://github.com/hackforla/website/pull/6785#pullrequestreview-2034731953) at 2024-05-01 07:56 PM PDT -t-will-gillis,2024-05-03T01:40:16Z,- t-will-gillis commented on pull request: [6804](https://github.com/hackforla/website/pull/6804#issuecomment-2092007281) at 2024-05-02 06:40 PM PDT -t-will-gillis,2024-05-03T01:40:25Z,- t-will-gillis pull request merged: [6804](https://github.com/hackforla/website/pull/6804#event-12690936004) at 2024-05-02 06:40 PM PDT -t-will-gillis,2024-05-03T01:40:26Z,- t-will-gillis closed issue by PR 6804: [6803](https://github.com/hackforla/website/issues/6803#event-12690936052) at 2024-05-02 06:40 PM PDT -t-will-gillis,2024-05-03T22:14:15Z,- t-will-gillis submitted pull request review: [6811](https://github.com/hackforla/website/pull/6811#pullrequestreview-2039057429) at 2024-05-03 03:14 PM PDT -t-will-gillis,2024-05-03T22:16:04Z,- t-will-gillis closed issue by PR 6811: [6555](https://github.com/hackforla/website/issues/6555#event-12701670694) at 2024-05-03 03:16 PM PDT -t-will-gillis,2024-05-03T22:42:56Z,- t-will-gillis assigned to issue: [6662](https://github.com/hackforla/website/issues/6662) at 2024-05-03 03:42 PM PDT -t-will-gillis,2024-05-03T22:43:07Z,- t-will-gillis unassigned from issue: [6662](https://github.com/hackforla/website/issues/6662) at 2024-05-03 03:43 PM PDT -t-will-gillis,2024-05-03T22:43:28Z,- t-will-gillis commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2093853155) at 2024-05-03 03:43 PM PDT -t-will-gillis,2024-05-04T00:05:32Z,- t-will-gillis commented on pull request: [6773](https://github.com/hackforla/website/pull/6773#issuecomment-2093900585) at 2024-05-03 05:05 PM PDT -t-will-gillis,2024-05-05T16:42:32Z,- t-will-gillis commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2094872390) at 2024-05-05 09:42 AM PDT -t-will-gillis,2024-05-05T16:44:58Z,- t-will-gillis commented on issue: [6662](https://github.com/hackforla/website/issues/6662#issuecomment-2094873105) at 2024-05-05 09:44 AM PDT -t-will-gillis,2024-05-05T17:18:27Z,- t-will-gillis submitted pull request review: [6813](https://github.com/hackforla/website/pull/6813#pullrequestreview-2039749201) at 2024-05-05 10:18 AM PDT -t-will-gillis,2024-05-06T04:56:16Z,- t-will-gillis opened issue: [6823](https://github.com/hackforla/website/issues/6823) at 2024-05-05 09:56 PM PDT -t-will-gillis,2024-05-06T18:31:14Z,- t-will-gillis submitted pull request review: [6822](https://github.com/hackforla/website/pull/6822#pullrequestreview-2041418641) at 2024-05-06 11:31 AM PDT -t-will-gillis,2024-05-06T18:31:37Z,- t-will-gillis closed issue by PR 6822: [6662](https://github.com/hackforla/website/issues/6662#event-12718842899) at 2024-05-06 11:31 AM PDT -t-will-gillis,2024-05-06T19:31:22Z,- t-will-gillis commented on issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2096758853) at 2024-05-06 12:31 PM PDT -t-will-gillis,2024-05-06T19:31:22Z,- t-will-gillis reopened issue: [6426](https://github.com/hackforla/website/issues/6426#issuecomment-2096758853) at 2024-05-06 12:31 PM PDT -t-will-gillis,2024-05-07T02:10:44Z,- t-will-gillis submitted pull request review: [6824](https://github.com/hackforla/website/pull/6824#pullrequestreview-2041939433) at 2024-05-06 07:10 PM PDT -t-will-gillis,2024-05-07T02:10:54Z,- t-will-gillis closed issue by PR 6824: [6665](https://github.com/hackforla/website/issues/6665#event-12722396021) at 2024-05-06 07:10 PM PDT -t-will-gillis,2024-05-07T04:12:50Z,- t-will-gillis submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2042026036) at 2024-05-06 09:12 PM PDT -t-will-gillis,2024-05-08T02:26:09Z,- t-will-gillis opened issue: [6835](https://github.com/hackforla/website/issues/6835) at 2024-05-07 07:26 PM PDT -t-will-gillis,2024-05-08T02:27:17Z,- t-will-gillis assigned to issue: [6835](https://github.com/hackforla/website/issues/6835) at 2024-05-07 07:27 PM PDT -t-will-gillis,2024-05-08T02:31:09Z,- t-will-gillis opened pull request: [6836](https://github.com/hackforla/website/pull/6836) at 2024-05-07 07:31 PM PDT -t-will-gillis,2024-05-08T02:59:02Z,- t-will-gillis opened issue: [6837](https://github.com/hackforla/website/issues/6837) at 2024-05-07 07:59 PM PDT -t-will-gillis,2024-05-08T03:34:31Z,- t-will-gillis pull request merged: [6836](https://github.com/hackforla/website/pull/6836#event-12737754459) at 2024-05-07 08:34 PM PDT -t-will-gillis,2024-05-08T19:22:15Z,- t-will-gillis submitted pull request review: [6773](https://github.com/hackforla/website/pull/6773#pullrequestreview-2046472671) at 2024-05-08 12:22 PM PDT -t-will-gillis,2024-05-09T22:55:59Z,- t-will-gillis assigned to issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2101871156) at 2024-05-09 03:55 PM PDT -t-will-gillis,2024-05-09T23:40:46Z,- t-will-gillis opened issue: [6843](https://github.com/hackforla/website/issues/6843) at 2024-05-09 04:40 PM PDT -t-will-gillis,2024-05-11T01:32:29Z,- t-will-gillis opened issue: [6849](https://github.com/hackforla/website/issues/6849) at 2024-05-10 06:32 PM PDT -t-will-gillis,2024-05-11T01:49:45Z,- t-will-gillis commented on issue: [6797](https://github.com/hackforla/website/issues/6797#issuecomment-2105442128) at 2024-05-10 06:49 PM PDT -t-will-gillis,2024-05-11T01:49:45Z,- t-will-gillis closed issue as completed: [6797](https://github.com/hackforla/website/issues/6797#event-12775081488) at 2024-05-10 06:49 PM PDT -t-will-gillis,2024-05-11T21:54:25Z,- t-will-gillis commented on issue: [5048](https://github.com/hackforla/website/issues/5048#issuecomment-2106039937) at 2024-05-11 02:54 PM PDT -t-will-gillis,2024-05-11T21:55:45Z,- t-will-gillis commented on issue: [6807](https://github.com/hackforla/website/issues/6807#issuecomment-2106040183) at 2024-05-11 02:55 PM PDT -t-will-gillis,2024-05-13T22:15:20Z,- t-will-gillis commented on issue: [6732](https://github.com/hackforla/website/issues/6732#issuecomment-2108894911) at 2024-05-13 03:15 PM PDT -t-will-gillis,2024-05-15T18:04:19Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2113140949) at 2024-05-15 11:04 AM PDT -t-will-gillis,2024-05-16T17:38:02Z,- t-will-gillis commented on issue: [6718](https://github.com/hackforla/website/issues/6718#issuecomment-2115839260) at 2024-05-16 10:38 AM PDT -t-will-gillis,2024-05-16T19:21:08Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2116018334) at 2024-05-16 12:21 PM PDT -t-will-gillis,2024-05-16T19:33:40Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2116040417) at 2024-05-16 12:33 PM PDT -t-will-gillis,2024-05-16T20:05:22Z,- t-will-gillis submitted pull request review: [6856](https://github.com/hackforla/website/pull/6856#pullrequestreview-2061770147) at 2024-05-16 01:05 PM PDT -t-will-gillis,2024-05-17T23:25:22Z,- t-will-gillis commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-2118484360) at 2024-05-17 04:25 PM PDT -t-will-gillis,2024-05-17T23:29:21Z,- t-will-gillis commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-2118486292) at 2024-05-17 04:29 PM PDT -t-will-gillis,2024-05-18T03:55:42Z,- t-will-gillis commented on issue: [6399](https://github.com/hackforla/website/issues/6399#issuecomment-2118626696) at 2024-05-17 08:55 PM PDT -t-will-gillis,2024-05-18T03:55:42Z,- t-will-gillis closed issue as completed: [6399](https://github.com/hackforla/website/issues/6399#event-12854622883) at 2024-05-17 08:55 PM PDT -t-will-gillis,2024-05-18T03:58:37Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2118627260) at 2024-05-17 08:58 PM PDT -t-will-gillis,2024-05-19T17:03:14Z,- t-will-gillis commented on pull request: [6860](https://github.com/hackforla/website/pull/6860#issuecomment-2119301322) at 2024-05-19 10:03 AM PDT -t-will-gillis,2024-05-19T18:18:53Z,- t-will-gillis unassigned from issue: [6837](https://github.com/hackforla/website/issues/6837#issuecomment-2103571357) at 2024-05-19 11:18 AM PDT -t-will-gillis,2024-05-19T22:19:33Z,- t-will-gillis commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2119377587) at 2024-05-19 03:19 PM PDT -t-will-gillis,2024-05-19T22:25:35Z,- t-will-gillis commented on issue: [6585](https://github.com/hackforla/website/issues/6585#issuecomment-2119379100) at 2024-05-19 03:25 PM PDT -t-will-gillis,2024-05-19T22:28:03Z,- t-will-gillis commented on issue: [6578](https://github.com/hackforla/website/issues/6578#issuecomment-2119379659) at 2024-05-19 03:28 PM PDT -t-will-gillis,2024-05-19T22:29:29Z,- t-will-gillis commented on issue: [6577](https://github.com/hackforla/website/issues/6577#issuecomment-2119379952) at 2024-05-19 03:29 PM PDT -t-will-gillis,2024-05-19T22:32:17Z,- t-will-gillis commented on issue: [6575](https://github.com/hackforla/website/issues/6575#issuecomment-2119380584) at 2024-05-19 03:32 PM PDT -t-will-gillis,2024-05-19T22:44:40Z,- t-will-gillis commented on issue: [6721](https://github.com/hackforla/website/issues/6721#issuecomment-2119383587) at 2024-05-19 03:44 PM PDT -t-will-gillis,2024-05-20T05:18:26Z,- t-will-gillis submitted pull request review: [6853](https://github.com/hackforla/website/pull/6853#pullrequestreview-2065364216) at 2024-05-19 10:18 PM PDT -t-will-gillis,2024-05-21T04:02:58Z,- t-will-gillis opened issue: [6867](https://github.com/hackforla/website/issues/6867) at 2024-05-20 09:02 PM PDT -t-will-gillis,2024-05-21T04:16:32Z,- t-will-gillis opened issue: [6868](https://github.com/hackforla/website/issues/6868) at 2024-05-20 09:16 PM PDT -t-will-gillis,2024-05-21T04:17:08Z,- t-will-gillis commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2121707414) at 2024-05-20 09:17 PM PDT -t-will-gillis,2024-05-21T04:18:22Z,- t-will-gillis commented on pull request: [6713](https://github.com/hackforla/website/pull/6713#issuecomment-2121708429) at 2024-05-20 09:18 PM PDT -t-will-gillis,2024-05-21T05:00:07Z,- t-will-gillis commented on pull request: [6856](https://github.com/hackforla/website/pull/6856#issuecomment-2121743332) at 2024-05-20 10:00 PM PDT -t-will-gillis,2024-05-21T20:43:53Z,- t-will-gillis unassigned from issue: [6288](https://github.com/hackforla/website/issues/6288#issuecomment-2097060377) at 2024-05-21 01:43 PM PDT -t-will-gillis,2024-05-22T03:00:42Z,- t-will-gillis assigned to issue: [6868](https://github.com/hackforla/website/issues/6868) at 2024-05-21 08:00 PM PDT -t-will-gillis,2024-05-22T03:24:18Z,- t-will-gillis opened pull request: [6883](https://github.com/hackforla/website/pull/6883) at 2024-05-21 08:24 PM PDT -t-will-gillis,2024-05-22T18:14:07Z,- t-will-gillis submitted pull request review: [6886](https://github.com/hackforla/website/pull/6886#pullrequestreview-2072004980) at 2024-05-22 11:14 AM PDT -t-will-gillis,2024-05-22T22:34:02Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2125884236) at 2024-05-22 03:34 PM PDT -t-will-gillis,2024-05-23T02:35:55Z,- t-will-gillis pull request merged: [6442](https://github.com/hackforla/website/pull/6442#event-12902618383) at 2024-05-22 07:35 PM PDT -t-will-gillis,2024-05-24T04:56:27Z,- t-will-gillis pull request merged: [6883](https://github.com/hackforla/website/pull/6883#event-12918669683) at 2024-05-23 09:56 PM PDT -t-will-gillis,2024-05-24T04:56:28Z,- t-will-gillis closed issue by PR 6883: [6868](https://github.com/hackforla/website/issues/6868#event-12918669824) at 2024-05-23 09:56 PM PDT -t-will-gillis,2024-05-25T02:23:50Z,- t-will-gillis submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2078322176) at 2024-05-24 07:23 PM PDT -t-will-gillis,2024-05-25T02:32:10Z,- t-will-gillis commented on pull request: [6895](https://github.com/hackforla/website/pull/6895#issuecomment-2130681526) at 2024-05-24 07:32 PM PDT -t-will-gillis,2024-05-25T02:40:48Z,- t-will-gillis submitted pull request review: [6893](https://github.com/hackforla/website/pull/6893#pullrequestreview-2078352282) at 2024-05-24 07:40 PM PDT -t-will-gillis,2024-05-25T16:56:03Z,- t-will-gillis closed issue by PR 6893: [6845](https://github.com/hackforla/website/issues/6845#event-12933526342) at 2024-05-25 09:56 AM PDT -t-will-gillis,2024-05-26T04:41:26Z,- t-will-gillis commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2132063699) at 2024-05-25 09:41 PM PDT -t-will-gillis,2024-05-26T04:41:26Z,- t-will-gillis closed issue as completed: [6643](https://github.com/hackforla/website/issues/6643#event-12935008242) at 2024-05-25 09:41 PM PDT -t-will-gillis,2024-05-26T05:00:39Z,- t-will-gillis commented on issue: [6786](https://github.com/hackforla/website/issues/6786#issuecomment-2132066814) at 2024-05-25 10:00 PM PDT -t-will-gillis,2024-05-26T16:54:10Z,- t-will-gillis submitted pull request review: [6894](https://github.com/hackforla/website/pull/6894#pullrequestreview-2079732396) at 2024-05-26 09:54 AM PDT -t-will-gillis,2024-05-26T16:54:26Z,- t-will-gillis closed issue by PR 6894: [6799](https://github.com/hackforla/website/issues/6799#event-12937456323) at 2024-05-26 09:54 AM PDT -t-will-gillis,2024-05-26T17:02:21Z,- t-will-gillis commented on pull request: [6896](https://github.com/hackforla/website/pull/6896#issuecomment-2132286701) at 2024-05-26 10:02 AM PDT -t-will-gillis,2024-05-26T17:14:27Z,- t-will-gillis commented on pull request: [6870](https://github.com/hackforla/website/pull/6870#issuecomment-2132289886) at 2024-05-26 10:14 AM PDT -t-will-gillis,2024-05-27T04:51:23Z,- t-will-gillis submitted pull request review: [6899](https://github.com/hackforla/website/pull/6899#pullrequestreview-2079980825) at 2024-05-26 09:51 PM PDT -t-will-gillis,2024-05-27T04:51:34Z,- t-will-gillis closed issue by PR 6899: [6736](https://github.com/hackforla/website/issues/6736#event-12940373325) at 2024-05-26 09:51 PM PDT -t-will-gillis,2024-05-27T04:53:21Z,- t-will-gillis closed issue by PR 6896: [6721](https://github.com/hackforla/website/issues/6721#event-12940383759) at 2024-05-26 09:53 PM PDT -t-will-gillis,2024-05-27T15:32:02Z,- t-will-gillis submitted pull request review: [6870](https://github.com/hackforla/website/pull/6870#pullrequestreview-2081161381) at 2024-05-27 08:32 AM PDT -t-will-gillis,2024-05-27T18:30:39Z,- t-will-gillis submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2081351938) at 2024-05-27 11:30 AM PDT -t-will-gillis,2024-05-27T18:34:09Z,- t-will-gillis commented on pull request: [6897](https://github.com/hackforla/website/pull/6897#issuecomment-2133921204) at 2024-05-27 11:34 AM PDT -t-will-gillis,2024-05-27T18:36:21Z,- t-will-gillis commented on pull request: [6898](https://github.com/hackforla/website/pull/6898#issuecomment-2133923014) at 2024-05-27 11:36 AM PDT -t-will-gillis,2024-05-28T21:48:02Z,- t-will-gillis commented on issue: [5205](https://github.com/hackforla/website/issues/5205#issuecomment-2136163373) at 2024-05-28 02:48 PM PDT -t-will-gillis,2024-05-29T02:43:43Z,- t-will-gillis assigned to issue: [6843](https://github.com/hackforla/website/issues/6843) at 2024-05-28 07:43 PM PDT -t-will-gillis,2024-05-29T02:48:31Z,- t-will-gillis closed issue by PR 6870: [6849](https://github.com/hackforla/website/issues/6849#event-12965140437) at 2024-05-28 07:48 PM PDT -t-will-gillis,2024-05-29T03:17:51Z,- t-will-gillis opened pull request: [6907](https://github.com/hackforla/website/pull/6907) at 2024-05-28 08:17 PM PDT -t-will-gillis,2024-05-30T03:18:19Z,- t-will-gillis submitted pull request review: [6898](https://github.com/hackforla/website/pull/6898#pullrequestreview-2087090283) at 2024-05-29 08:18 PM PDT -t-will-gillis,2024-05-30T16:11:27Z,- t-will-gillis closed issue by PR 6898: [6723](https://github.com/hackforla/website/issues/6723#event-12988600428) at 2024-05-30 09:11 AM PDT -t-will-gillis,2024-05-31T15:06:11Z,- t-will-gillis pull request merged: [6907](https://github.com/hackforla/website/pull/6907#event-13002074216) at 2024-05-31 08:06 AM PDT -t-will-gillis,2024-05-31T15:06:12Z,- t-will-gillis closed issue by PR 6907: [6843](https://github.com/hackforla/website/issues/6843#event-13002074477) at 2024-05-31 08:06 AM PDT -t-will-gillis,2024-05-31T21:51:11Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2143025529) at 2024-05-31 02:51 PM PDT -t-will-gillis,2024-06-01T20:21:10Z,- t-will-gillis opened issue: [6922](https://github.com/hackforla/website/issues/6922) at 2024-06-01 01:21 PM PDT -t-will-gillis,2024-06-01T20:21:31Z,- t-will-gillis assigned to issue: [6922](https://github.com/hackforla/website/issues/6922) at 2024-06-01 01:21 PM PDT -t-will-gillis,2024-06-01T20:28:27Z,- t-will-gillis opened pull request: [6923](https://github.com/hackforla/website/pull/6923) at 2024-06-01 01:28 PM PDT -t-will-gillis,2024-06-01T21:04:35Z,- t-will-gillis commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2143589285) at 2024-06-01 02:04 PM PDT -t-will-gillis,2024-06-02T02:23:59Z,- t-will-gillis reopened pull request: [6442](https://github.com/hackforla/website/pull/6442#event-12902618383) at 2024-06-01 07:23 PM PDT -t-will-gillis,2024-06-02T05:08:05Z,- t-will-gillis closed issue as completed: [4932](https://github.com/hackforla/website/issues/4932#event-13010801282) at 2024-06-01 10:08 PM PDT -t-will-gillis,2024-06-02T05:52:48Z,- t-will-gillis pull request merged: [6923](https://github.com/hackforla/website/pull/6923#event-13010856858) at 2024-06-01 10:52 PM PDT -t-will-gillis,2024-06-02T17:21:47Z,- t-will-gillis opened issue: [6927](https://github.com/hackforla/website/issues/6927) at 2024-06-02 10:21 AM PDT -t-will-gillis,2024-06-02T17:22:02Z,- t-will-gillis assigned to issue: [6927](https://github.com/hackforla/website/issues/6927) at 2024-06-02 10:22 AM PDT -t-will-gillis,2024-06-02T17:35:16Z,- t-will-gillis opened pull request: [6928](https://github.com/hackforla/website/pull/6928) at 2024-06-02 10:35 AM PDT -t-will-gillis,2024-06-02T17:44:07Z,- t-will-gillis closed issue by PR 6917: [6730](https://github.com/hackforla/website/issues/6730#event-13012612410) at 2024-06-02 10:44 AM PDT -t-will-gillis,2024-06-02T17:47:59Z,- t-will-gillis closed issue by PR 6901: [6733](https://github.com/hackforla/website/issues/6733#event-13012621834) at 2024-06-02 10:47 AM PDT -t-will-gillis,2024-06-02T18:33:52Z,- t-will-gillis opened issue: [6929](https://github.com/hackforla/website/issues/6929) at 2024-06-02 11:33 AM PDT -t-will-gillis,2024-06-02T18:36:38Z,- t-will-gillis assigned to issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2143980504) at 2024-06-02 11:36 AM PDT -t-will-gillis,2024-06-04T02:56:00Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2146474235) at 2024-06-03 07:56 PM PDT -t-will-gillis,2024-06-04T04:42:23Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2146599717) at 2024-06-03 09:42 PM PDT -t-will-gillis,2024-06-05T01:53:11Z,- t-will-gillis pull request merged: [6928](https://github.com/hackforla/website/pull/6928#event-13044041671) at 2024-06-04 06:53 PM PDT -t-will-gillis,2024-06-05T01:53:12Z,- t-will-gillis closed issue by PR 6928: [6927](https://github.com/hackforla/website/issues/6927#event-13044041806) at 2024-06-04 06:53 PM PDT -t-will-gillis,2024-06-05T20:10:59Z,- t-will-gillis commented on pull request: [6959](https://github.com/hackforla/website/pull/6959#issuecomment-2150877088) at 2024-06-05 01:10 PM PDT -t-will-gillis,2024-06-06T21:28:10Z,- t-will-gillis opened issue: [6968](https://github.com/hackforla/website/issues/6968) at 2024-06-06 02:28 PM PDT -t-will-gillis,2024-06-06T21:28:18Z,- t-will-gillis assigned to issue: [6968](https://github.com/hackforla/website/issues/6968) at 2024-06-06 02:28 PM PDT -t-will-gillis,2024-06-06T21:29:13Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2153437947) at 2024-06-06 02:29 PM PDT -t-will-gillis,2024-06-07T17:46:07Z,- t-will-gillis assigned to issue: [6840](https://github.com/hackforla/website/issues/6840) at 2024-06-07 10:46 AM PDT -t-will-gillis,2024-06-09T18:23:11Z,- t-will-gillis commented on issue: [6955](https://github.com/hackforla/website/issues/6955#issuecomment-2156727814) at 2024-06-09 11:23 AM PDT -t-will-gillis,2024-06-09T18:23:11Z,- t-will-gillis closed issue as not planned: [6955](https://github.com/hackforla/website/issues/6955#event-13092198935) at 2024-06-09 11:23 AM PDT -t-will-gillis,2024-06-10T03:09:29Z,- t-will-gillis submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2106538074) at 2024-06-09 08:09 PM PDT -t-will-gillis,2024-06-10T03:16:58Z,- t-will-gillis submitted pull request review: [6965](https://github.com/hackforla/website/pull/6965#pullrequestreview-2106542844) at 2024-06-09 08:16 PM PDT -t-will-gillis,2024-06-10T03:17:16Z,- t-will-gillis closed issue by PR 6965: [6861](https://github.com/hackforla/website/issues/6861#event-13094260190) at 2024-06-09 08:17 PM PDT -t-will-gillis,2024-06-10T03:19:06Z,- t-will-gillis commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2157119440) at 2024-06-09 08:19 PM PDT -t-will-gillis,2024-06-10T03:44:44Z,- t-will-gillis submitted pull request review: [6974](https://github.com/hackforla/website/pull/6974#pullrequestreview-2106564462) at 2024-06-09 08:44 PM PDT -t-will-gillis,2024-06-10T03:46:51Z,- t-will-gillis closed issue by PR 6975: [5632](https://github.com/hackforla/website/issues/5632#event-13094456430) at 2024-06-09 08:46 PM PDT -t-will-gillis,2024-06-10T03:47:14Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2157146422) at 2024-06-09 08:47 PM PDT -t-will-gillis,2024-06-11T01:12:02Z,- t-will-gillis submitted pull request review: [6916](https://github.com/hackforla/website/pull/6916#pullrequestreview-2109026748) at 2024-06-10 06:12 PM PDT -t-will-gillis,2024-06-11T04:50:49Z,- t-will-gillis submitted pull request review: [6974](https://github.com/hackforla/website/pull/6974#pullrequestreview-2109309036) at 2024-06-10 09:50 PM PDT -t-will-gillis,2024-06-12T01:55:50Z,- t-will-gillis submitted pull request review: [6974](https://github.com/hackforla/website/pull/6974#pullrequestreview-2111768319) at 2024-06-11 06:55 PM PDT -t-will-gillis,2024-06-12T01:55:58Z,- t-will-gillis closed issue by PR 6974: [6185](https://github.com/hackforla/website/issues/6185#event-13124721286) at 2024-06-11 06:55 PM PDT -t-will-gillis,2024-06-12T17:43:35Z,- t-will-gillis commented on pull request: [6980](https://github.com/hackforla/website/pull/6980#issuecomment-2163589618) at 2024-06-12 10:43 AM PDT -t-will-gillis,2024-06-12T17:59:43Z,- t-will-gillis opened issue: [6993](https://github.com/hackforla/website/issues/6993) at 2024-06-12 10:59 AM PDT -t-will-gillis,2024-06-12T18:01:54Z,- t-will-gillis opened issue: [6994](https://github.com/hackforla/website/issues/6994) at 2024-06-12 11:01 AM PDT -t-will-gillis,2024-06-12T18:03:07Z,- t-will-gillis assigned to issue: [6994](https://github.com/hackforla/website/issues/6994#issuecomment-2163620789) at 2024-06-12 11:03 AM PDT -t-will-gillis,2024-06-12T18:03:15Z,- t-will-gillis assigned to issue: [6993](https://github.com/hackforla/website/issues/6993) at 2024-06-12 11:03 AM PDT -t-will-gillis,2024-06-12T21:16:03Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2163915829) at 2024-06-12 02:16 PM PDT -t-will-gillis,2024-06-12T21:34:55Z,- t-will-gillis opened issue: [6995](https://github.com/hackforla/website/issues/6995) at 2024-06-12 02:34 PM PDT -t-will-gillis,2024-06-12T21:36:57Z,- t-will-gillis opened issue: [6996](https://github.com/hackforla/website/issues/6996) at 2024-06-12 02:36 PM PDT -t-will-gillis,2024-06-12T21:38:54Z,- t-will-gillis opened issue: [6997](https://github.com/hackforla/website/issues/6997) at 2024-06-12 02:38 PM PDT -t-will-gillis,2024-06-12T21:43:07Z,- t-will-gillis opened issue: [6998](https://github.com/hackforla/website/issues/6998) at 2024-06-12 02:43 PM PDT -t-will-gillis,2024-06-12T21:43:53Z,- t-will-gillis assigned to issue: [6995](https://github.com/hackforla/website/issues/6995) at 2024-06-12 02:43 PM PDT -t-will-gillis,2024-06-12T21:44:13Z,- t-will-gillis assigned to issue: [6996](https://github.com/hackforla/website/issues/6996) at 2024-06-12 02:44 PM PDT -t-will-gillis,2024-06-12T21:44:31Z,- t-will-gillis assigned to issue: [6997](https://github.com/hackforla/website/issues/6997) at 2024-06-12 02:44 PM PDT -t-will-gillis,2024-06-12T23:36:34Z,- t-will-gillis commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2164069959) at 2024-06-12 04:36 PM PDT -t-will-gillis,2024-06-12T23:40:03Z,- t-will-gillis assigned to issue: [6998](https://github.com/hackforla/website/issues/6998) at 2024-06-12 04:40 PM PDT -t-will-gillis,2024-06-13T00:14:29Z,- t-will-gillis commented on issue: [6591](https://github.com/hackforla/website/issues/6591#issuecomment-2164121159) at 2024-06-12 05:14 PM PDT -t-will-gillis,2024-06-13T00:14:29Z,- t-will-gillis closed issue as completed: [6591](https://github.com/hackforla/website/issues/6591#event-13138669432) at 2024-06-12 05:14 PM PDT -t-will-gillis,2024-06-13T17:26:34Z,- t-will-gillis opened issue: [7000](https://github.com/hackforla/website/issues/7000) at 2024-06-13 10:26 AM PDT -t-will-gillis,2024-06-13T20:41:03Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2166731001) at 2024-06-13 01:41 PM PDT -t-will-gillis,2024-06-14T03:49:00Z,- t-will-gillis commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2167157849) at 2024-06-13 08:49 PM PDT -t-will-gillis,2024-06-14T16:11:25Z,- t-will-gillis commented on issue: [6857](https://github.com/hackforla/website/issues/6857#issuecomment-2168342151) at 2024-06-14 09:11 AM PDT -t-will-gillis,2024-06-15T02:39:08Z,- t-will-gillis commented on pull request: [7003](https://github.com/hackforla/website/pull/7003#issuecomment-2169064969) at 2024-06-14 07:39 PM PDT -t-will-gillis,2024-06-15T03:53:11Z,- t-will-gillis submitted pull request review: [6971](https://github.com/hackforla/website/pull/6971#pullrequestreview-2119961543) at 2024-06-14 08:53 PM PDT -t-will-gillis,2024-06-16T04:56:46Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2171046356) at 2024-06-15 09:56 PM PDT -t-will-gillis,2024-06-16T19:08:13Z,- t-will-gillis commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2171817746) at 2024-06-16 12:08 PM PDT -t-will-gillis,2024-06-17T04:28:56Z,- t-will-gillis submitted pull request review: [6873](https://github.com/hackforla/website/pull/6873#pullrequestreview-2121834833) at 2024-06-16 09:28 PM PDT -t-will-gillis,2024-06-17T16:37:58Z,- t-will-gillis commented on issue: [6226](https://github.com/hackforla/website/issues/6226#issuecomment-2173862901) at 2024-06-17 09:37 AM PDT -t-will-gillis,2024-06-17T16:37:58Z,- t-will-gillis closed issue as completed: [6226](https://github.com/hackforla/website/issues/6226#event-13188534168) at 2024-06-17 09:37 AM PDT -t-will-gillis,2024-06-17T16:39:59Z,- t-will-gillis commented on issue: [6230](https://github.com/hackforla/website/issues/6230#issuecomment-2173866595) at 2024-06-17 09:39 AM PDT -t-will-gillis,2024-06-17T16:39:59Z,- t-will-gillis closed issue as completed: [6230](https://github.com/hackforla/website/issues/6230#event-13188556126) at 2024-06-17 09:39 AM PDT -t-will-gillis,2024-06-17T16:42:21Z,- t-will-gillis commented on issue: [6231](https://github.com/hackforla/website/issues/6231#issuecomment-2173871260) at 2024-06-17 09:42 AM PDT -t-will-gillis,2024-06-17T16:42:21Z,- t-will-gillis closed issue as completed: [6231](https://github.com/hackforla/website/issues/6231#event-13188583564) at 2024-06-17 09:42 AM PDT -t-will-gillis,2024-06-17T17:09:36Z,- t-will-gillis commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2173919677) at 2024-06-17 10:09 AM PDT -t-will-gillis,2024-06-18T00:54:00Z,- t-will-gillis assigned to issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2166731001) at 2024-06-17 05:54 PM PDT -t-will-gillis,2024-06-19T02:57:30Z,- t-will-gillis submitted pull request review: [7012](https://github.com/hackforla/website/pull/7012#pullrequestreview-2126910311) at 2024-06-18 07:57 PM PDT -t-will-gillis,2024-06-19T02:57:46Z,- t-will-gillis closed issue by PR 7012: [6866](https://github.com/hackforla/website/issues/6866#event-13209149732) at 2024-06-18 07:57 PM PDT -t-will-gillis,2024-06-19T04:18:59Z,- t-will-gillis commented on issue: [7000](https://github.com/hackforla/website/issues/7000#issuecomment-2177632234) at 2024-06-18 09:18 PM PDT -t-will-gillis,2024-06-19T04:18:59Z,- t-will-gillis closed issue as not planned: [7000](https://github.com/hackforla/website/issues/7000#event-13209581486) at 2024-06-18 09:18 PM PDT -t-will-gillis,2024-06-19T15:15:55Z,- t-will-gillis commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2178955899) at 2024-06-19 08:15 AM PDT -t-will-gillis,2024-06-19T15:15:55Z,- t-will-gillis reopened issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2178955899) at 2024-06-19 08:15 AM PDT -t-will-gillis,2024-06-19T15:48:59Z,- t-will-gillis commented on issue: [3265](https://github.com/hackforla/website/issues/3265#issuecomment-2179020527) at 2024-06-19 08:48 AM PDT -t-will-gillis,2024-06-20T21:54:39Z,- t-will-gillis opened issue: [7039](https://github.com/hackforla/website/issues/7039) at 2024-06-20 02:54 PM PDT -t-will-gillis,2024-06-21T03:56:18Z,- t-will-gillis submitted pull request review: [7036](https://github.com/hackforla/website/pull/7036#pullrequestreview-2131736355) at 2024-06-20 08:56 PM PDT -t-will-gillis,2024-06-22T01:09:12Z,- t-will-gillis reopened issue: [6794](https://github.com/hackforla/website/issues/6794#event-12664602541) at 2024-06-21 06:09 PM PDT -t-will-gillis,2024-06-22T02:31:54Z,- t-will-gillis closed issue as not planned: [6794](https://github.com/hackforla/website/issues/6794#event-13248386326) at 2024-06-21 07:31 PM PDT -t-will-gillis,2024-06-22T02:53:17Z,- t-will-gillis opened pull request: [7051](https://github.com/hackforla/website/pull/7051) at 2024-06-21 07:53 PM PDT -t-will-gillis,2024-06-22T20:48:26Z,- t-will-gillis commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2184185642) at 2024-06-22 01:48 PM PDT -t-will-gillis,2024-06-22T20:48:26Z,- t-will-gillis closed issue as completed: [6882](https://github.com/hackforla/website/issues/6882#event-13251715951) at 2024-06-22 01:48 PM PDT -t-will-gillis,2024-06-22T20:53:17Z,- t-will-gillis reopened issue: [6882](https://github.com/hackforla/website/issues/6882#event-13251715951) at 2024-06-22 01:53 PM PDT -t-will-gillis,2024-06-22T20:53:59Z,- t-will-gillis commented on issue: [6882](https://github.com/hackforla/website/issues/6882#issuecomment-2184187293) at 2024-06-22 01:53 PM PDT -t-will-gillis,2024-06-23T04:40:59Z,- t-will-gillis opened pull request: [7053](https://github.com/hackforla/website/pull/7053) at 2024-06-22 09:40 PM PDT -t-will-gillis,2024-06-23T04:42:58Z,- t-will-gillis opened pull request: [7054](https://github.com/hackforla/website/pull/7054) at 2024-06-22 09:42 PM PDT -t-will-gillis,2024-06-23T04:44:32Z,- t-will-gillis opened pull request: [7055](https://github.com/hackforla/website/pull/7055) at 2024-06-22 09:44 PM PDT -t-will-gillis,2024-06-23T04:46:06Z,- t-will-gillis opened pull request: [7056](https://github.com/hackforla/website/pull/7056) at 2024-06-22 09:46 PM PDT -t-will-gillis,2024-06-23T16:18:13Z,- t-will-gillis closed issue by PR 7036: [6857](https://github.com/hackforla/website/issues/6857#event-13256490959) at 2024-06-23 09:18 AM PDT -t-will-gillis,2024-06-23T18:16:47Z,- t-will-gillis assigned to issue: [7039](https://github.com/hackforla/website/issues/7039) at 2024-06-23 11:16 AM PDT -t-will-gillis,2024-06-23T18:39:59Z,- t-will-gillis pull request merged: [7053](https://github.com/hackforla/website/pull/7053#event-13257787286) at 2024-06-23 11:39 AM PDT -t-will-gillis,2024-06-23T18:40:00Z,- t-will-gillis closed issue by PR 7053: [6996](https://github.com/hackforla/website/issues/6996#event-13257787317) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:27Z,- t-will-gillis pull request merged: [7054](https://github.com/hackforla/website/pull/7054#event-13257788028) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:28Z,- t-will-gillis closed issue by PR 7054: [6997](https://github.com/hackforla/website/issues/6997#event-13257788056) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:53Z,- t-will-gillis pull request merged: [7055](https://github.com/hackforla/website/pull/7055#event-13257788679) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:40:54Z,- t-will-gillis closed issue by PR 7055: [6998](https://github.com/hackforla/website/issues/6998#event-13257788708) at 2024-06-23 11:40 AM PDT -t-will-gillis,2024-06-23T18:41:16Z,- t-will-gillis pull request merged: [7056](https://github.com/hackforla/website/pull/7056#event-13257789247) at 2024-06-23 11:41 AM PDT -t-will-gillis,2024-06-23T18:41:17Z,- t-will-gillis closed issue by PR 7056: [7039](https://github.com/hackforla/website/issues/7039#event-13257789271) at 2024-06-23 11:41 AM PDT -t-will-gillis,2024-06-23T18:53:04Z,- t-will-gillis reopened issue: [7039](https://github.com/hackforla/website/issues/7039#event-13257789271) at 2024-06-23 11:53 AM PDT -t-will-gillis,2024-06-23T20:18:50Z,- t-will-gillis closed issue by PR 7054: [6997](https://github.com/hackforla/website/issues/6997#event-13258138966) at 2024-06-23 01:18 PM PDT -t-will-gillis,2024-06-23T20:20:03Z,- t-will-gillis closed issue by PR 7055: [6998](https://github.com/hackforla/website/issues/6998#event-13258141358) at 2024-06-23 01:20 PM PDT -t-will-gillis,2024-06-23T20:22:00Z,- t-will-gillis commented on issue: [7039](https://github.com/hackforla/website/issues/7039#issuecomment-2185313615) at 2024-06-23 01:22 PM PDT -t-will-gillis,2024-06-23T20:23:28Z,- t-will-gillis closed issue by PR 7056: [7039](https://github.com/hackforla/website/issues/7039#event-13258147038) at 2024-06-23 01:23 PM PDT -t-will-gillis,2024-06-23T20:33:33Z,- t-will-gillis closed issue by PR 7009: [6940](https://github.com/hackforla/website/issues/6940#event-13258162195) at 2024-06-23 01:33 PM PDT -t-will-gillis,2024-06-23T20:39:19Z,- t-will-gillis closed issue by PR 6984: [6937](https://github.com/hackforla/website/issues/6937#event-13258170952) at 2024-06-23 01:39 PM PDT -t-will-gillis,2024-06-27T05:07:55Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2193708820) at 2024-06-26 10:07 PM PDT -t-will-gillis,2024-06-27T20:24:15Z,- t-will-gillis opened issue: [7075](https://github.com/hackforla/website/issues/7075) at 2024-06-27 01:24 PM PDT -t-will-gillis,2024-06-28T02:42:00Z,- t-will-gillis opened issue: [7076](https://github.com/hackforla/website/issues/7076) at 2024-06-27 07:42 PM PDT -t-will-gillis,2024-06-28T03:03:55Z,- t-will-gillis assigned to issue: [7075](https://github.com/hackforla/website/issues/7075) at 2024-06-27 08:03 PM PDT -t-will-gillis,2024-06-28T03:49:55Z,- t-will-gillis opened issue: [7078](https://github.com/hackforla/website/issues/7078) at 2024-06-27 08:49 PM PDT -t-will-gillis,2024-06-28T04:25:38Z,- t-will-gillis opened issue: [7079](https://github.com/hackforla/website/issues/7079) at 2024-06-27 09:25 PM PDT -t-will-gillis,2024-06-28T04:28:35Z,- t-will-gillis assigned to issue: [7078](https://github.com/hackforla/website/issues/7078) at 2024-06-27 09:28 PM PDT -t-will-gillis,2024-06-28T04:28:52Z,- t-will-gillis assigned to issue: [7076](https://github.com/hackforla/website/issues/7076) at 2024-06-27 09:28 PM PDT -t-will-gillis,2024-06-28T04:29:14Z,- t-will-gillis assigned to issue: [7079](https://github.com/hackforla/website/issues/7079) at 2024-06-27 09:29 PM PDT -t-will-gillis,2024-06-28T17:56:36Z,- t-will-gillis opened issue: [7080](https://github.com/hackforla/website/issues/7080) at 2024-06-28 10:56 AM PDT -t-will-gillis,2024-06-28T17:59:08Z,- t-will-gillis assigned to issue: [7080](https://github.com/hackforla/website/issues/7080) at 2024-06-28 10:59 AM PDT -t-will-gillis,2024-06-29T21:21:15Z,- t-will-gillis commented on issue: [7072](https://github.com/hackforla/website/issues/7072#issuecomment-2198339877) at 2024-06-29 02:21 PM PDT -t-will-gillis,2024-06-30T17:47:27Z,- t-will-gillis commented on issue: [6749](https://github.com/hackforla/website/issues/6749#issuecomment-2198633935) at 2024-06-30 10:47 AM PDT -t-will-gillis,2024-06-30T17:51:39Z,- t-will-gillis closed issue as completed: [6834](https://github.com/hackforla/website/issues/6834#event-13342683331) at 2024-06-30 10:51 AM PDT -t-will-gillis,2024-06-30T17:53:03Z,- t-will-gillis commented on issue: [6834](https://github.com/hackforla/website/issues/6834#issuecomment-2198635088) at 2024-06-30 10:53 AM PDT -t-will-gillis,2024-06-30T21:36:45Z,- t-will-gillis closed issue by PR 7043: [6920](https://github.com/hackforla/website/issues/6920#event-13343086592) at 2024-06-30 02:36 PM PDT -t-will-gillis,2024-06-30T21:38:59Z,- t-will-gillis commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2198765234) at 2024-06-30 02:38 PM PDT -t-will-gillis,2024-06-30T21:38:59Z,- t-will-gillis closed issue as completed: [6320](https://github.com/hackforla/website/issues/6320#event-13343090275) at 2024-06-30 02:38 PM PDT -t-will-gillis,2024-06-30T21:56:26Z,- t-will-gillis commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2198769385) at 2024-06-30 02:56 PM PDT -t-will-gillis,2024-06-30T22:33:35Z,- t-will-gillis submitted pull request review: [7062](https://github.com/hackforla/website/pull/7062#pullrequestreview-2150206942) at 2024-06-30 03:33 PM PDT -t-will-gillis,2024-06-30T22:33:42Z,- t-will-gillis closed issue by PR 7062: [6786](https://github.com/hackforla/website/issues/6786#event-13343195185) at 2024-06-30 03:33 PM PDT -t-will-gillis,2024-07-01T04:40:01Z,- t-will-gillis closed issue by PR 7082: [6581](https://github.com/hackforla/website/issues/6581#event-13344901434) at 2024-06-30 09:40 PM PDT -t-will-gillis,2024-07-01T04:54:21Z,- t-will-gillis opened issue: [7083](https://github.com/hackforla/website/issues/7083) at 2024-06-30 09:54 PM PDT -t-will-gillis,2024-07-01T05:03:57Z,- t-will-gillis assigned to issue: [7083](https://github.com/hackforla/website/issues/7083) at 2024-06-30 10:03 PM PDT -t-will-gillis,2024-07-01T18:44:32Z,- t-will-gillis opened issue: [7085](https://github.com/hackforla/website/issues/7085) at 2024-07-01 11:44 AM PDT -t-will-gillis,2024-07-01T19:06:56Z,- t-will-gillis assigned to issue: [7085](https://github.com/hackforla/website/issues/7085) at 2024-07-01 12:06 PM PDT -t-will-gillis,2024-07-01T21:30:01Z,- t-will-gillis commented on pull request: [7041](https://github.com/hackforla/website/pull/7041#issuecomment-2201106319) at 2024-07-01 02:30 PM PDT -t-will-gillis,2024-07-01T23:13:19Z,- t-will-gillis unassigned from issue: [7085](https://github.com/hackforla/website/issues/7085#issuecomment-2200830039) at 2024-07-01 04:13 PM PDT -t-will-gillis,2024-07-01T23:13:45Z,- t-will-gillis unassigned from issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2199242303) at 2024-07-01 04:13 PM PDT -t-will-gillis,2024-07-02T00:21:23Z,- t-will-gillis commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2201517871) at 2024-07-01 05:21 PM PDT -t-will-gillis,2024-07-02T00:40:28Z,- t-will-gillis commented on issue: [7048](https://github.com/hackforla/website/issues/7048#issuecomment-2201555522) at 2024-07-01 05:40 PM PDT -t-will-gillis,2024-07-02T00:40:28Z,- t-will-gillis closed issue as completed: [7048](https://github.com/hackforla/website/issues/7048#event-13358065020) at 2024-07-01 05:40 PM PDT -t-will-gillis,2024-07-02T00:40:51Z,- t-will-gillis closed issue as not planned: [7048](https://github.com/hackforla/website/issues/7048#event-13358067050) at 2024-07-01 05:40 PM PDT -t-will-gillis,2024-07-02T00:51:44Z,- t-will-gillis commented on issue: [7049](https://github.com/hackforla/website/issues/7049#issuecomment-2201570056) at 2024-07-01 05:51 PM PDT -t-will-gillis,2024-07-02T00:51:45Z,- t-will-gillis closed issue as not planned: [7049](https://github.com/hackforla/website/issues/7049#event-13358128984) at 2024-07-01 05:51 PM PDT -t-will-gillis,2024-07-02T01:10:11Z,- t-will-gillis commented on issue: [6935](https://github.com/hackforla/website/issues/6935#issuecomment-2201593309) at 2024-07-01 06:10 PM PDT -t-will-gillis,2024-07-02T01:10:11Z,- t-will-gillis closed issue as not planned: [6935](https://github.com/hackforla/website/issues/6935#event-13358227472) at 2024-07-01 06:10 PM PDT -t-will-gillis,2024-07-02T03:58:59Z,- t-will-gillis opened pull request: [7086](https://github.com/hackforla/website/pull/7086) at 2024-07-01 08:58 PM PDT -t-will-gillis,2024-07-02T04:03:31Z,- t-will-gillis commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201850701) at 2024-07-01 09:03 PM PDT -t-will-gillis,2024-07-02T04:03:31Z,- t-will-gillis reopened issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201850701) at 2024-07-01 09:03 PM PDT -t-will-gillis,2024-07-02T04:11:18Z,- t-will-gillis commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201862467) at 2024-07-01 09:11 PM PDT -t-will-gillis,2024-07-02T04:13:14Z,- t-will-gillis commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2201864591) at 2024-07-01 09:13 PM PDT -t-will-gillis,2024-07-02T04:51:07Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2201917547) at 2024-07-01 09:51 PM PDT -t-will-gillis,2024-07-02T04:56:40Z,- t-will-gillis commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2201922917) at 2024-07-01 09:56 PM PDT -t-will-gillis,2024-07-02T04:58:19Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2201927034) at 2024-07-01 09:58 PM PDT -t-will-gillis,2024-07-02T05:00:00Z,- t-will-gillis commented on pull request: [6969](https://github.com/hackforla/website/pull/6969#issuecomment-2201929383) at 2024-07-01 10:00 PM PDT -t-will-gillis,2024-07-02T05:00:06Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2201929475) at 2024-07-01 10:00 PM PDT -t-will-gillis,2024-07-02T05:00:15Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2201929651) at 2024-07-01 10:00 PM PDT -t-will-gillis,2024-07-02T05:19:36Z,- t-will-gillis closed issue as completed: [7050](https://github.com/hackforla/website/issues/7050#event-13359768646) at 2024-07-01 10:19 PM PDT -t-will-gillis,2024-07-02T05:19:53Z,- t-will-gillis closed issue as not planned: [7050](https://github.com/hackforla/website/issues/7050#event-13359770472) at 2024-07-01 10:19 PM PDT -t-will-gillis,2024-07-02T05:25:37Z,- t-will-gillis commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2201963376) at 2024-07-01 10:25 PM PDT -t-will-gillis,2024-07-02T05:26:19Z,- t-will-gillis commented on issue: [6934](https://github.com/hackforla/website/issues/6934#issuecomment-2201964082) at 2024-07-01 10:26 PM PDT -t-will-gillis,2024-07-02T05:26:19Z,- t-will-gillis closed issue as not planned: [6934](https://github.com/hackforla/website/issues/6934#event-13359814873) at 2024-07-01 10:26 PM PDT -t-will-gillis,2024-07-02T05:30:35Z,- t-will-gillis commented on issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2201968585) at 2024-07-01 10:30 PM PDT -t-will-gillis,2024-07-02T05:30:35Z,- t-will-gillis closed issue as not planned: [6933](https://github.com/hackforla/website/issues/6933#event-13359847678) at 2024-07-01 10:30 PM PDT -t-will-gillis,2024-07-02T05:36:52Z,- t-will-gillis pull request merged: [7086](https://github.com/hackforla/website/pull/7086#event-13359896222) at 2024-07-01 10:36 PM PDT -t-will-gillis,2024-07-02T05:36:54Z,- t-will-gillis closed issue by PR 7043: [6920](https://github.com/hackforla/website/issues/6920#event-13359896349) at 2024-07-01 10:36 PM PDT -t-will-gillis,2024-07-03T16:25:49Z,- t-will-gillis reopened issue: [6920](https://github.com/hackforla/website/issues/6920#event-13359896349) at 2024-07-03 09:25 AM PDT -t-will-gillis,2024-07-05T17:37:24Z,- t-will-gillis closed issue by PR 7077: [6862](https://github.com/hackforla/website/issues/6862#event-13408293887) at 2024-07-05 10:37 AM PDT -t-will-gillis,2024-07-05T17:43:42Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2211202108) at 2024-07-05 10:43 AM PDT -t-will-gillis,2024-07-08T02:54:52Z,- t-will-gillis commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2212882966) at 2024-07-07 07:54 PM PDT -t-will-gillis,2024-07-08T03:10:49Z,- t-will-gillis submitted pull request review: [7073](https://github.com/hackforla/website/pull/7073#pullrequestreview-2162115850) at 2024-07-07 08:10 PM PDT -t-will-gillis,2024-07-08T03:14:55Z,- t-will-gillis closed issue by PR 7073: [7010](https://github.com/hackforla/website/issues/7010#event-13416879177) at 2024-07-07 08:14 PM PDT -t-will-gillis,2024-07-08T03:45:01Z,- t-will-gillis opened issue: [7099](https://github.com/hackforla/website/issues/7099) at 2024-07-07 08:45 PM PDT -t-will-gillis,2024-07-08T03:52:02Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2212952353) at 2024-07-07 08:52 PM PDT -t-will-gillis,2024-07-08T03:55:12Z,- t-will-gillis commented on issue: [7004](https://github.com/hackforla/website/issues/7004#issuecomment-2212957488) at 2024-07-07 08:55 PM PDT -t-will-gillis,2024-07-08T05:06:40Z,- t-will-gillis submitted pull request review: [7081](https://github.com/hackforla/website/pull/7081#pullrequestreview-2162272351) at 2024-07-07 10:06 PM PDT -t-will-gillis,2024-07-09T16:21:22Z,- t-will-gillis opened issue: [7101](https://github.com/hackforla/website/issues/7101) at 2024-07-09 09:21 AM PDT -t-will-gillis,2024-07-09T20:19:32Z,- t-will-gillis commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2218659225) at 2024-07-09 01:19 PM PDT -t-will-gillis,2024-07-13T02:11:53Z,- t-will-gillis opened pull request: [7104](https://github.com/hackforla/website/pull/7104) at 2024-07-12 07:11 PM PDT -t-will-gillis,2024-07-13T02:33:01Z,- t-will-gillis commented on issue: [7080](https://github.com/hackforla/website/issues/7080#issuecomment-2226727717) at 2024-07-12 07:33 PM PDT -t-will-gillis,2024-07-13T03:36:30Z,- t-will-gillis opened issue: [7105](https://github.com/hackforla/website/issues/7105) at 2024-07-12 08:36 PM PDT -t-will-gillis,2024-07-13T04:00:41Z,- t-will-gillis commented on issue: [6840](https://github.com/hackforla/website/issues/6840#issuecomment-2226760750) at 2024-07-12 09:00 PM PDT -t-will-gillis,2024-07-13T04:00:41Z,- t-will-gillis closed issue as completed: [6840](https://github.com/hackforla/website/issues/6840#event-13494470364) at 2024-07-12 09:00 PM PDT -t-will-gillis,2024-07-13T04:02:49Z,- t-will-gillis assigned to issue: [7105](https://github.com/hackforla/website/issues/7105) at 2024-07-12 09:02 PM PDT -t-will-gillis,2024-07-14T19:56:53Z,- t-will-gillis commented on pull request: [7107](https://github.com/hackforla/website/pull/7107#issuecomment-2227466469) at 2024-07-14 12:56 PM PDT -t-will-gillis,2024-07-14T20:21:38Z,- t-will-gillis opened issue: [7108](https://github.com/hackforla/website/issues/7108) at 2024-07-14 01:21 PM PDT -t-will-gillis,2024-07-14T20:46:25Z,- t-will-gillis submitted pull request review: [7106](https://github.com/hackforla/website/pull/7106#pullrequestreview-2176713544) at 2024-07-14 01:46 PM PDT -t-will-gillis,2024-07-14T20:47:11Z,- t-will-gillis closed issue by PR 7106: [7101](https://github.com/hackforla/website/issues/7101#event-13498710556) at 2024-07-14 01:47 PM PDT -t-will-gillis,2024-07-14T21:43:59Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2227491521) at 2024-07-14 02:43 PM PDT -t-will-gillis,2024-07-15T18:16:23Z,- t-will-gillis opened issue: [7120](https://github.com/hackforla/website/issues/7120) at 2024-07-15 11:16 AM PDT -t-will-gillis,2024-07-15T18:16:50Z,- t-will-gillis assigned to issue: [7120](https://github.com/hackforla/website/issues/7120) at 2024-07-15 11:16 AM PDT -t-will-gillis,2024-07-15T18:28:44Z,- t-will-gillis submitted pull request review: [7119](https://github.com/hackforla/website/pull/7119#pullrequestreview-2178391332) at 2024-07-15 11:28 AM PDT -t-will-gillis,2024-07-15T18:43:13Z,- t-will-gillis commented on pull request: [7109](https://github.com/hackforla/website/pull/7109#issuecomment-2229153357) at 2024-07-15 11:43 AM PDT -t-will-gillis,2024-07-15T18:43:21Z,- t-will-gillis commented on issue: [7083](https://github.com/hackforla/website/issues/7083#issuecomment-2229153557) at 2024-07-15 11:43 AM PDT -t-will-gillis,2024-07-15T19:56:02Z,- t-will-gillis commented on issue: [6809](https://github.com/hackforla/website/issues/6809#issuecomment-2229272761) at 2024-07-15 12:56 PM PDT -t-will-gillis,2024-07-15T19:56:02Z,- t-will-gillis closed issue as completed: [6809](https://github.com/hackforla/website/issues/6809#event-13510395115) at 2024-07-15 12:56 PM PDT -t-will-gillis,2024-07-15T20:10:28Z,- t-will-gillis commented on issue: [6710](https://github.com/hackforla/website/issues/6710#issuecomment-2229312256) at 2024-07-15 01:10 PM PDT -t-will-gillis,2024-07-15T20:10:28Z,- t-will-gillis closed issue as completed: [6710](https://github.com/hackforla/website/issues/6710#event-13510534456) at 2024-07-15 01:10 PM PDT -t-will-gillis,2024-07-15T22:25:38Z,- t-will-gillis commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2229539675) at 2024-07-15 03:25 PM PDT -t-will-gillis,2024-07-15T22:25:38Z,- t-will-gillis closed issue by PR 7260: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-07-15 03:25 PM PDT -t-will-gillis,2024-07-15T22:26:40Z,- t-will-gillis reopened issue: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-07-15 03:26 PM PDT -t-will-gillis,2024-07-15T22:30:55Z,- t-will-gillis commented on issue: [7075](https://github.com/hackforla/website/issues/7075#issuecomment-2229544785) at 2024-07-15 03:30 PM PDT -t-will-gillis,2024-07-15T22:37:02Z,- t-will-gillis commented on pull request: [7121](https://github.com/hackforla/website/pull/7121#issuecomment-2229551036) at 2024-07-15 03:37 PM PDT -t-will-gillis,2024-07-16T01:33:37Z,- t-will-gillis submitted pull request review: [7121](https://github.com/hackforla/website/pull/7121#pullrequestreview-2179022859) at 2024-07-15 06:33 PM PDT -t-will-gillis,2024-07-16T01:42:47Z,- t-will-gillis commented on pull request: [7123](https://github.com/hackforla/website/pull/7123#issuecomment-2229823209) at 2024-07-15 06:42 PM PDT -t-will-gillis,2024-07-16T02:48:21Z,- t-will-gillis submitted pull request review: [7124](https://github.com/hackforla/website/pull/7124#pullrequestreview-2179097107) at 2024-07-15 07:48 PM PDT -t-will-gillis,2024-07-16T02:49:17Z,- t-will-gillis closed issue by PR 7121: [7083](https://github.com/hackforla/website/issues/7083#event-13514036007) at 2024-07-15 07:49 PM PDT -t-will-gillis,2024-07-18T04:27:20Z,- t-will-gillis commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2235306619) at 2024-07-17 09:27 PM PDT -t-will-gillis,2024-07-18T04:44:02Z,- t-will-gillis commented on pull request: [7104](https://github.com/hackforla/website/pull/7104#issuecomment-2235321242) at 2024-07-17 09:44 PM PDT -t-will-gillis,2024-07-18T20:21:14Z,- t-will-gillis submitted pull request review: [7126](https://github.com/hackforla/website/pull/7126#pullrequestreview-2186784619) at 2024-07-18 01:21 PM PDT -t-will-gillis,2024-07-18T20:23:16Z,- t-will-gillis closed issue by PR 7119: [7099](https://github.com/hackforla/website/issues/7099#event-13562690622) at 2024-07-18 01:23 PM PDT -t-will-gillis,2024-07-18T20:32:31Z,- t-will-gillis submitted pull request review: [7125](https://github.com/hackforla/website/pull/7125#pullrequestreview-2186834838) at 2024-07-18 01:32 PM PDT -t-will-gillis,2024-07-19T16:09:24Z,- t-will-gillis commented on pull request: [7126](https://github.com/hackforla/website/pull/7126#issuecomment-2239526404) at 2024-07-19 09:09 AM PDT -t-will-gillis,2024-07-19T19:06:39Z,- t-will-gillis commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239947772) at 2024-07-19 12:06 PM PDT -t-will-gillis,2024-07-19T19:16:56Z,- t-will-gillis commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2239965776) at 2024-07-19 12:16 PM PDT -t-will-gillis,2024-07-19T20:49:33Z,- t-will-gillis submitted pull request review: [7126](https://github.com/hackforla/website/pull/7126#pullrequestreview-2189205690) at 2024-07-19 01:49 PM PDT -t-will-gillis,2024-07-19T20:50:18Z,- t-will-gillis closed issue by PR 7126: [7085](https://github.com/hackforla/website/issues/7085#event-13581001944) at 2024-07-19 01:50 PM PDT -t-will-gillis,2024-07-20T05:10:27Z,- t-will-gillis commented on issue: [6644](https://github.com/hackforla/website/issues/6644#issuecomment-2240925644) at 2024-07-19 10:10 PM PDT -t-will-gillis,2024-07-20T05:10:27Z,- t-will-gillis closed issue as completed: [6644](https://github.com/hackforla/website/issues/6644#event-13587783858) at 2024-07-19 10:10 PM PDT -t-will-gillis,2024-07-21T21:06:22Z,- t-will-gillis opened pull request: [7132](https://github.com/hackforla/website/pull/7132) at 2024-07-21 02:06 PM PDT -t-will-gillis,2024-07-22T17:11:33Z,- t-will-gillis submitted pull request review: [7125](https://github.com/hackforla/website/pull/7125#pullrequestreview-2192115476) at 2024-07-22 10:11 AM PDT -t-will-gillis,2024-07-22T17:14:26Z,- t-will-gillis closed issue by PR 7128: [7042](https://github.com/hackforla/website/issues/7042#event-13604438583) at 2024-07-22 10:14 AM PDT -t-will-gillis,2024-07-22T17:18:50Z,- t-will-gillis submitted pull request review: [7129](https://github.com/hackforla/website/pull/7129#pullrequestreview-2192129621) at 2024-07-22 10:18 AM PDT -t-will-gillis,2024-07-22T17:50:57Z,- t-will-gillis commented on issue: [7076](https://github.com/hackforla/website/issues/7076#issuecomment-2243500427) at 2024-07-22 10:50 AM PDT -t-will-gillis,2024-07-22T17:50:57Z,- t-will-gillis closed issue as completed: [7076](https://github.com/hackforla/website/issues/7076#event-13604830545) at 2024-07-22 10:50 AM PDT -t-will-gillis,2024-07-22T18:00:48Z,- t-will-gillis closed issue as not planned: [7076](https://github.com/hackforla/website/issues/7076#event-13604938201) at 2024-07-22 11:00 AM PDT -t-will-gillis,2024-07-22T18:02:35Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2243520115) at 2024-07-22 11:02 AM PDT -t-will-gillis,2024-07-22T18:04:57Z,- t-will-gillis pull request merged: [7104](https://github.com/hackforla/website/pull/7104#event-13604983260) at 2024-07-22 11:04 AM PDT -t-will-gillis,2024-07-22T18:04:58Z,- t-will-gillis closed issue by PR 7104: [7080](https://github.com/hackforla/website/issues/7080#event-13604983464) at 2024-07-22 11:04 AM PDT -t-will-gillis,2024-07-22T18:10:37Z,- t-will-gillis unassigned from issue: [7078](https://github.com/hackforla/website/issues/7078#event-13511792214) at 2024-07-22 11:10 AM PDT -t-will-gillis,2024-07-22T18:10:43Z,- t-will-gillis unassigned from issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2196118205) at 2024-07-22 11:10 AM PDT -t-will-gillis,2024-07-22T18:48:06Z,- t-will-gillis opened issue: [7133](https://github.com/hackforla/website/issues/7133) at 2024-07-22 11:48 AM PDT -t-will-gillis,2024-07-22T19:26:22Z,- t-will-gillis opened issue: [7134](https://github.com/hackforla/website/issues/7134) at 2024-07-22 12:26 PM PDT -t-will-gillis,2024-07-22T21:06:14Z,- t-will-gillis unassigned from issue: [7120](https://github.com/hackforla/website/issues/7120#issuecomment-2229109182) at 2024-07-22 02:06 PM PDT -t-will-gillis,2024-07-22T22:16:42Z,- t-will-gillis opened issue: [7135](https://github.com/hackforla/website/issues/7135) at 2024-07-22 03:16 PM PDT -t-will-gillis,2024-07-22T23:11:50Z,- t-will-gillis submitted pull request review: [7081](https://github.com/hackforla/website/pull/7081#pullrequestreview-2192688144) at 2024-07-22 04:11 PM PDT -t-will-gillis,2024-07-22T23:19:19Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2243970309) at 2024-07-22 04:19 PM PDT -t-will-gillis,2024-07-23T17:16:46Z,- t-will-gillis opened issue: [7137](https://github.com/hackforla/website/issues/7137) at 2024-07-23 10:16 AM PDT -t-will-gillis,2024-07-23T17:16:50Z,- t-will-gillis opened issue: [7138](https://github.com/hackforla/website/issues/7138) at 2024-07-23 10:16 AM PDT -t-will-gillis,2024-07-23T17:27:22Z,- t-will-gillis opened issue: [7139](https://github.com/hackforla/website/issues/7139) at 2024-07-23 10:27 AM PDT -t-will-gillis,2024-07-23T17:37:08Z,- t-will-gillis commented on issue: [6929](https://github.com/hackforla/website/issues/6929#issuecomment-2245847429) at 2024-07-23 10:37 AM PDT -t-will-gillis,2024-07-23T17:37:08Z,- t-will-gillis closed issue as completed: [6929](https://github.com/hackforla/website/issues/6929#event-13619240120) at 2024-07-23 10:37 AM PDT -t-will-gillis,2024-07-23T18:46:10Z,- t-will-gillis opened issue: [7140](https://github.com/hackforla/website/issues/7140) at 2024-07-23 11:46 AM PDT -t-will-gillis,2024-07-23T18:47:36Z,- t-will-gillis commented on issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2245994367) at 2024-07-23 11:47 AM PDT -t-will-gillis,2024-07-26T04:42:39Z,- t-will-gillis submitted pull request review: [7130](https://github.com/hackforla/website/pull/7130#pullrequestreview-2200931865) at 2024-07-25 09:42 PM PDT -t-will-gillis,2024-07-26T04:42:59Z,- t-will-gillis closed issue by PR 7130: [7103](https://github.com/hackforla/website/issues/7103#event-13656041462) at 2024-07-25 09:42 PM PDT -t-will-gillis,2024-07-27T01:21:21Z,- t-will-gillis submitted pull request review: [7129](https://github.com/hackforla/website/pull/7129#pullrequestreview-2202891343) at 2024-07-26 06:21 PM PDT -t-will-gillis,2024-07-27T01:21:51Z,- t-will-gillis closed issue by PR 7129: [7096](https://github.com/hackforla/website/issues/7096#event-13667080841) at 2024-07-26 06:21 PM PDT -t-will-gillis,2024-07-27T01:27:53Z,- t-will-gillis commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253694808) at 2024-07-26 06:27 PM PDT -t-will-gillis,2024-07-28T21:54:50Z,- t-will-gillis commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2254661439) at 2024-07-28 02:54 PM PDT -t-will-gillis,2024-07-28T21:55:01Z,- t-will-gillis commented on pull request: [7141](https://github.com/hackforla/website/pull/7141#issuecomment-2254661473) at 2024-07-28 02:55 PM PDT -t-will-gillis,2024-07-28T21:55:13Z,- t-will-gillis commented on pull request: [7136](https://github.com/hackforla/website/pull/7136#issuecomment-2254661511) at 2024-07-28 02:55 PM PDT -t-will-gillis,2024-07-28T21:55:28Z,- t-will-gillis commented on pull request: [7131](https://github.com/hackforla/website/pull/7131#issuecomment-2254661566) at 2024-07-28 02:55 PM PDT -t-will-gillis,2024-07-30T03:32:38Z,- t-will-gillis commented on issue: [6820](https://github.com/hackforla/website/issues/6820#issuecomment-2257389832) at 2024-07-29 08:32 PM PDT -t-will-gillis,2024-07-31T21:24:22Z,- t-will-gillis submitted pull request review: [7131](https://github.com/hackforla/website/pull/7131#pullrequestreview-2211158733) at 2024-07-31 02:24 PM PDT -t-will-gillis,2024-07-31T21:25:02Z,- t-will-gillis closed issue by PR 7131: [7115](https://github.com/hackforla/website/issues/7115#event-13716483123) at 2024-07-31 02:25 PM PDT -t-will-gillis,2024-07-31T21:26:19Z,- t-will-gillis closed issue by PR 7136: [7117](https://github.com/hackforla/website/issues/7117#event-13716494974) at 2024-07-31 02:26 PM PDT -t-will-gillis,2024-07-31T21:31:37Z,- t-will-gillis closed issue by PR 7141: [7110](https://github.com/hackforla/website/issues/7110#event-13716534692) at 2024-07-31 02:31 PM PDT -t-will-gillis,2024-07-31T21:35:19Z,- t-will-gillis commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2261502009) at 2024-07-31 02:35 PM PDT -t-will-gillis,2024-07-31T21:39:22Z,- t-will-gillis submitted pull request review: [7153](https://github.com/hackforla/website/pull/7153#pullrequestreview-2211178422) at 2024-07-31 02:39 PM PDT -t-will-gillis,2024-07-31T21:39:43Z,- t-will-gillis closed issue by PR 7153: [7135](https://github.com/hackforla/website/issues/7135#event-13716592897) at 2024-07-31 02:39 PM PDT -t-will-gillis,2024-07-31T22:23:31Z,- t-will-gillis commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2261559242) at 2024-07-31 03:23 PM PDT -t-will-gillis,2024-08-01T01:56:49Z,- t-will-gillis closed issue by PR 7150: [7113](https://github.com/hackforla/website/issues/7113#event-13718407364) at 2024-07-31 06:56 PM PDT -t-will-gillis,2024-08-02T17:17:26Z,- t-will-gillis pull request merged: [7132](https://github.com/hackforla/website/pull/7132#event-13744735055) at 2024-08-02 10:17 AM PDT -t-will-gillis,2024-08-02T17:17:27Z,- t-will-gillis closed issue by PR 7132: [7075](https://github.com/hackforla/website/issues/7075#event-13744735230) at 2024-08-02 10:17 AM PDT -t-will-gillis,2024-08-02T17:21:12Z,- t-will-gillis commented on pull request: [7132](https://github.com/hackforla/website/pull/7132#issuecomment-2265832298) at 2024-08-02 10:21 AM PDT -t-will-gillis,2024-08-02T18:13:48Z,- t-will-gillis commented on issue: [7155](https://github.com/hackforla/website/issues/7155#issuecomment-2265905702) at 2024-08-02 11:13 AM PDT -t-will-gillis,2024-08-02T18:13:48Z,- t-will-gillis closed issue as completed: [7155](https://github.com/hackforla/website/issues/7155#event-13745242526) at 2024-08-02 11:13 AM PDT -t-will-gillis,2024-08-02T18:23:09Z,- t-will-gillis commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2265918542) at 2024-08-02 11:23 AM PDT -t-will-gillis,2024-08-02T22:14:49Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2266205891) at 2024-08-02 03:14 PM PDT -t-will-gillis,2024-08-03T22:15:58Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2267174746) at 2024-08-03 03:15 PM PDT -t-will-gillis,2024-08-04T22:33:12Z,- t-will-gillis commented on pull request: [6971](https://github.com/hackforla/website/pull/6971#issuecomment-2267817027) at 2024-08-04 03:33 PM PDT -t-will-gillis,2024-08-05T22:16:00Z,- t-will-gillis assigned to issue: [7140](https://github.com/hackforla/website/issues/7140#issuecomment-2270011834) at 2024-08-05 03:16 PM PDT -t-will-gillis,2024-08-06T00:23:36Z,- t-will-gillis opened issue: [7197](https://github.com/hackforla/website/issues/7197) at 2024-08-05 05:23 PM PDT -t-will-gillis,2024-08-06T00:24:22Z,- t-will-gillis assigned to issue: [7197](https://github.com/hackforla/website/issues/7197#issuecomment-2270141554) at 2024-08-05 05:24 PM PDT -t-will-gillis,2024-08-06T00:42:41Z,- t-will-gillis commented on issue: [7197](https://github.com/hackforla/website/issues/7197#issuecomment-2270156053) at 2024-08-05 05:42 PM PDT -t-will-gillis,2024-08-06T02:51:27Z,- t-will-gillis closed issue as not planned: [7197](https://github.com/hackforla/website/issues/7197#event-13771961097) at 2024-08-05 07:51 PM PDT -t-will-gillis,2024-08-06T19:15:56Z,- t-will-gillis opened pull request: [7228](https://github.com/hackforla/website/pull/7228) at 2024-08-06 12:15 PM PDT -t-will-gillis,2024-08-07T02:33:01Z,- t-will-gillis commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272502319) at 2024-08-06 07:33 PM PDT -t-will-gillis,2024-08-08T23:31:51Z,- t-will-gillis submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2229043216) at 2024-08-08 04:31 PM PDT -t-will-gillis,2024-08-09T16:46:50Z,- t-will-gillis commented on issue: [7078](https://github.com/hackforla/website/issues/7078#issuecomment-2278348466) at 2024-08-09 09:46 AM PDT -t-will-gillis,2024-08-10T03:13:27Z,- t-will-gillis commented on pull request: [7260](https://github.com/hackforla/website/pull/7260#issuecomment-2278956931) at 2024-08-09 08:13 PM PDT -t-will-gillis,2024-08-10T03:19:23Z,- t-will-gillis commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2278958752) at 2024-08-09 08:19 PM PDT -t-will-gillis,2024-08-10T19:43:49Z,- t-will-gillis submitted pull request review: [7169](https://github.com/hackforla/website/pull/7169#pullrequestreview-2231681230) at 2024-08-10 12:43 PM PDT -t-will-gillis,2024-08-10T19:43:59Z,- t-will-gillis closed issue by PR 7169: [7072](https://github.com/hackforla/website/issues/7072#event-13828860257) at 2024-08-10 12:43 PM PDT -t-will-gillis,2024-08-10T19:58:25Z,- t-will-gillis commented on issue: [5328](https://github.com/hackforla/website/issues/5328#issuecomment-2282261979) at 2024-08-10 12:58 PM PDT -t-will-gillis,2024-08-10T20:09:22Z,- t-will-gillis submitted pull request review: [7230](https://github.com/hackforla/website/pull/7230#pullrequestreview-2231683193) at 2024-08-10 01:09 PM PDT -t-will-gillis,2024-08-10T20:09:43Z,- t-will-gillis closed issue by PR 7230: [7118](https://github.com/hackforla/website/issues/7118#event-13828997690) at 2024-08-10 01:09 PM PDT -t-will-gillis,2024-08-10T20:27:31Z,- t-will-gillis commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 01:27 PM PDT -t-will-gillis,2024-08-10T20:27:31Z,- t-will-gillis reopened issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2282269427) at 2024-08-10 01:27 PM PDT -t-will-gillis,2024-08-10T20:31:14Z,- t-will-gillis commented on pull request: [7243](https://github.com/hackforla/website/pull/7243#issuecomment-2282270238) at 2024-08-10 01:31 PM PDT -t-will-gillis,2024-08-10T20:57:49Z,- t-will-gillis commented on pull request: [7256](https://github.com/hackforla/website/pull/7256#issuecomment-2282275854) at 2024-08-10 01:57 PM PDT -t-will-gillis,2024-08-11T18:14:36Z,- t-will-gillis commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2282844459) at 2024-08-11 11:14 AM PDT -t-will-gillis,2024-08-11T18:30:29Z,- t-will-gillis assigned to issue: [6987](https://github.com/hackforla/website/issues/6987#issuecomment-2277285082) at 2024-08-11 11:30 AM PDT -t-will-gillis,2024-08-12T04:58:03Z,- t-will-gillis commented on pull request: [7260](https://github.com/hackforla/website/pull/7260#issuecomment-2283113917) at 2024-08-11 09:58 PM PDT -t-will-gillis,2024-08-12T19:54:57Z,- t-will-gillis commented on issue: [7098](https://github.com/hackforla/website/issues/7098#issuecomment-2284798365) at 2024-08-12 12:54 PM PDT -t-will-gillis,2024-08-12T20:07:30Z,- t-will-gillis submitted pull request review: [7272](https://github.com/hackforla/website/pull/7272#pullrequestreview-2233921023) at 2024-08-12 01:07 PM PDT -t-will-gillis,2024-08-12T20:47:16Z,- t-will-gillis submitted pull request review: [7260](https://github.com/hackforla/website/pull/7260#pullrequestreview-2233989468) at 2024-08-12 01:47 PM PDT -t-will-gillis,2024-08-12T21:13:35Z,- t-will-gillis submitted pull request review: [7272](https://github.com/hackforla/website/pull/7272#pullrequestreview-2234032025) at 2024-08-12 02:13 PM PDT -t-will-gillis,2024-08-13T15:43:45Z,- t-will-gillis commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2286567214) at 2024-08-13 08:43 AM PDT -t-will-gillis,2024-08-13T17:00:48Z,- t-will-gillis submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2236107261) at 2024-08-13 10:00 AM PDT -t-will-gillis,2024-08-14T16:27:59Z,- t-will-gillis closed issue by PR 7227: [7191](https://github.com/hackforla/website/issues/7191#event-13883426016) at 2024-08-14 09:27 AM PDT -t-will-gillis,2024-08-14T16:56:04Z,- t-will-gillis submitted pull request review: [7279](https://github.com/hackforla/website/pull/7279#pullrequestreview-2238728159) at 2024-08-14 09:56 AM PDT -t-will-gillis,2024-08-14T17:35:20Z,- t-will-gillis commented on issue: [7134](https://github.com/hackforla/website/issues/7134#issuecomment-2289418996) at 2024-08-14 10:35 AM PDT -t-will-gillis,2024-08-14T20:33:48Z,- t-will-gillis closed issue by PR 7261: [7181](https://github.com/hackforla/website/issues/7181#event-13886941849) at 2024-08-14 01:33 PM PDT -t-will-gillis,2024-08-14T20:41:12Z,- t-will-gillis commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2289839320) at 2024-08-14 01:41 PM PDT -t-will-gillis,2024-08-14T20:43:14Z,- t-will-gillis commented on pull request: [7261](https://github.com/hackforla/website/pull/7261#issuecomment-2289842722) at 2024-08-14 01:43 PM PDT -t-will-gillis,2024-08-16T00:05:04Z,- t-will-gillis pull request merged: [7228](https://github.com/hackforla/website/pull/7228#event-13904240474) at 2024-08-15 05:05 PM PDT -t-will-gillis,2024-08-16T02:23:50Z,- t-will-gillis opened issue: [7300](https://github.com/hackforla/website/issues/7300) at 2024-08-15 07:23 PM PDT -t-will-gillis,2024-08-16T02:25:36Z,- t-will-gillis assigned to issue: [7300](https://github.com/hackforla/website/issues/7300) at 2024-08-15 07:25 PM PDT -t-will-gillis,2024-08-16T05:04:46Z,- t-will-gillis closed issue by PR 7260: [7078](https://github.com/hackforla/website/issues/7078#event-13906038663) at 2024-08-15 10:04 PM PDT -t-will-gillis,2024-08-16T16:29:06Z,- t-will-gillis commented on pull request: [7303](https://github.com/hackforla/website/pull/7303#issuecomment-2293806613) at 2024-08-16 09:29 AM PDT -t-will-gillis,2024-08-16T20:32:09Z,- t-will-gillis commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2294196567) at 2024-08-16 01:32 PM PDT -t-will-gillis,2024-08-16T20:53:46Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2294236033) at 2024-08-16 01:53 PM PDT -t-will-gillis,2024-08-16T20:54:49Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2294238441) at 2024-08-16 01:54 PM PDT -t-will-gillis,2024-08-18T03:19:40Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2295094860) at 2024-08-17 08:19 PM PDT -t-will-gillis,2024-08-18T03:21:35Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2295095235) at 2024-08-17 08:21 PM PDT -t-will-gillis,2024-08-18T03:30:58Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2295096741) at 2024-08-17 08:30 PM PDT -t-will-gillis,2024-08-18T04:03:03Z,- t-will-gillis submitted pull request review: [7088](https://github.com/hackforla/website/pull/7088#pullrequestreview-2244208888) at 2024-08-17 09:03 PM PDT -t-will-gillis,2024-08-18T04:03:11Z,- t-will-gillis closed issue by PR 7043: [6920](https://github.com/hackforla/website/issues/6920#event-13921113150) at 2024-08-17 09:03 PM PDT -t-will-gillis,2024-08-18T04:10:42Z,- t-will-gillis commented on pull request: [7125](https://github.com/hackforla/website/pull/7125#issuecomment-2295103164) at 2024-08-17 09:10 PM PDT -t-will-gillis,2024-08-18T04:15:34Z,- t-will-gillis closed issue by PR 7270: [7187](https://github.com/hackforla/website/issues/7187#event-13921129031) at 2024-08-17 09:15 PM PDT -t-will-gillis,2024-08-18T04:23:53Z,- t-will-gillis closed issue by PR 7280: [7098](https://github.com/hackforla/website/issues/7098#event-13921139244) at 2024-08-17 09:23 PM PDT -t-will-gillis,2024-08-18T04:26:00Z,- t-will-gillis closed issue by PR 7299: [7250](https://github.com/hackforla/website/issues/7250#event-13921141833) at 2024-08-17 09:26 PM PDT -t-will-gillis,2024-08-18T04:43:49Z,- t-will-gillis commented on pull request: [7310](https://github.com/hackforla/website/pull/7310#issuecomment-2295111619) at 2024-08-17 09:43 PM PDT -t-will-gillis,2024-08-18T04:44:08Z,- t-will-gillis commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2295111671) at 2024-08-17 09:44 PM PDT -t-will-gillis,2024-08-18T05:05:19Z,- t-will-gillis commented on pull request: [7262](https://github.com/hackforla/website/pull/7262#issuecomment-2295115730) at 2024-08-17 10:05 PM PDT -t-will-gillis,2024-08-18T19:32:20Z,- t-will-gillis commented on issue: [6677](https://github.com/hackforla/website/issues/6677#issuecomment-2295366306) at 2024-08-18 12:32 PM PDT -t-will-gillis,2024-08-18T19:53:11Z,- t-will-gillis commented on issue: [6828](https://github.com/hackforla/website/issues/6828#issuecomment-2295371610) at 2024-08-18 12:53 PM PDT -t-will-gillis,2024-08-18T19:53:12Z,- t-will-gillis closed issue as completed: [6828](https://github.com/hackforla/website/issues/6828#event-13922811366) at 2024-08-18 12:53 PM PDT -t-will-gillis,2024-08-18T20:06:10Z,- t-will-gillis commented on issue: [7148](https://github.com/hackforla/website/issues/7148#issuecomment-2295375070) at 2024-08-18 01:06 PM PDT -t-will-gillis,2024-08-18T20:06:10Z,- t-will-gillis closed issue as completed: [7148](https://github.com/hackforla/website/issues/7148#event-13922834052) at 2024-08-18 01:06 PM PDT -t-will-gillis,2024-08-18T20:26:49Z,- t-will-gillis commented on pull request: [7081](https://github.com/hackforla/website/pull/7081#issuecomment-2295380475) at 2024-08-18 01:26 PM PDT -t-will-gillis,2024-08-18T20:35:07Z,- t-will-gillis commented on issue: [7173](https://github.com/hackforla/website/issues/7173#issuecomment-2295382569) at 2024-08-18 01:35 PM PDT -t-will-gillis,2024-08-20T20:59:13Z,- t-will-gillis submitted pull request review: [7262](https://github.com/hackforla/website/pull/7262#pullrequestreview-2249085737) at 2024-08-20 01:59 PM PDT -t-will-gillis,2024-08-20T20:59:42Z,- t-will-gillis closed issue by PR 7262: [7120](https://github.com/hackforla/website/issues/7120#event-13950854087) at 2024-08-20 01:59 PM PDT -t-will-gillis,2024-08-20T22:11:24Z,- t-will-gillis opened issue: [7322](https://github.com/hackforla/website/issues/7322) at 2024-08-20 03:11 PM PDT -t-will-gillis,2024-08-20T22:12:16Z,- t-will-gillis assigned to issue: [7322](https://github.com/hackforla/website/issues/7322) at 2024-08-20 03:12 PM PDT -t-will-gillis,2024-08-20T22:15:13Z,- t-will-gillis commented on issue: [7322](https://github.com/hackforla/website/issues/7322#issuecomment-2299853808) at 2024-08-20 03:15 PM PDT -t-will-gillis,2024-08-20T22:35:16Z,- t-will-gillis opened pull request: [7323](https://github.com/hackforla/website/pull/7323) at 2024-08-20 03:35 PM PDT -t-will-gillis,2024-08-21T02:01:54Z,- t-will-gillis submitted pull request review: [7279](https://github.com/hackforla/website/pull/7279#pullrequestreview-2249426723) at 2024-08-20 07:01 PM PDT -t-will-gillis,2024-08-22T17:33:08Z,- t-will-gillis submitted pull request review: [7307](https://github.com/hackforla/website/pull/7307#pullrequestreview-2255256436) at 2024-08-22 10:33 AM PDT -t-will-gillis,2024-08-22T17:33:16Z,- t-will-gillis closed issue by PR 7307: [7173](https://github.com/hackforla/website/issues/7173#event-13981909478) at 2024-08-22 10:33 AM PDT -t-will-gillis,2024-08-23T21:58:55Z,- t-will-gillis closed issue by PR 7279: [7134](https://github.com/hackforla/website/issues/7134#event-13998269570) at 2024-08-23 02:58 PM PDT -t-will-gillis,2024-08-24T22:07:54Z,- t-will-gillis opened issue: [7349](https://github.com/hackforla/website/issues/7349) at 2024-08-24 03:07 PM PDT -t-will-gillis,2024-08-24T22:08:12Z,- t-will-gillis assigned to issue: [7349](https://github.com/hackforla/website/issues/7349) at 2024-08-24 03:08 PM PDT -t-will-gillis,2024-08-25T15:14:36Z,- t-will-gillis closed issue by PR 7296: [7013](https://github.com/hackforla/website/issues/7013#event-14004588513) at 2024-08-25 08:14 AM PDT -t-will-gillis,2024-08-25T15:30:10Z,- t-will-gillis closed issue by PR 7342: [7288](https://github.com/hackforla/website/issues/7288#event-14004625452) at 2024-08-25 08:30 AM PDT -t-will-gillis,2024-08-25T15:31:01Z,- t-will-gillis commented on pull request: [7342](https://github.com/hackforla/website/pull/7342#issuecomment-2308897098) at 2024-08-25 08:31 AM PDT -t-will-gillis,2024-08-25T15:36:57Z,- t-will-gillis commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2308899062) at 2024-08-25 08:36 AM PDT -t-will-gillis,2024-08-25T15:39:29Z,- t-will-gillis commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2308899932) at 2024-08-25 08:39 AM PDT -t-will-gillis,2024-08-25T15:40:35Z,- t-will-gillis closed issue by PR 7348: [7172](https://github.com/hackforla/website/issues/7172#event-14004649716) at 2024-08-25 08:40 AM PDT -t-will-gillis,2024-08-26T04:45:52Z,- t-will-gillis commented on pull request: [7346](https://github.com/hackforla/website/pull/7346#issuecomment-2309306138) at 2024-08-25 09:45 PM PDT -t-will-gillis,2024-08-26T04:53:06Z,- t-will-gillis commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2309312562) at 2024-08-25 09:53 PM PDT -t-will-gillis,2024-08-26T05:20:46Z,- t-will-gillis commented on issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2309340091) at 2024-08-25 10:20 PM PDT -t-will-gillis,2024-08-26T05:35:57Z,- t-will-gillis commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2309356846) at 2024-08-25 10:35 PM PDT -t-will-gillis,2024-08-26T05:35:57Z,- t-will-gillis closed issue as completed: [7147](https://github.com/hackforla/website/issues/7147#event-14007893496) at 2024-08-25 10:35 PM PDT -t-will-gillis,2024-08-27T16:53:11Z,- t-will-gillis submitted pull request review: [7340](https://github.com/hackforla/website/pull/7340#pullrequestreview-2263992049) at 2024-08-27 09:53 AM PDT -t-will-gillis,2024-08-27T16:53:47Z,- t-will-gillis closed issue by PR 7340: [7281](https://github.com/hackforla/website/issues/7281#event-14032148239) at 2024-08-27 09:53 AM PDT -t-will-gillis,2024-08-27T16:59:24Z,- t-will-gillis closed issue by PR 7343: [7283](https://github.com/hackforla/website/issues/7283#event-14032215730) at 2024-08-27 09:59 AM PDT -t-will-gillis,2024-08-27T17:02:00Z,- t-will-gillis closed issue by PR 7346: [7175](https://github.com/hackforla/website/issues/7175#event-14032247305) at 2024-08-27 10:02 AM PDT -t-will-gillis,2024-08-27T17:06:17Z,- t-will-gillis commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2313096615) at 2024-08-27 10:06 AM PDT -t-will-gillis,2024-08-27T17:06:39Z,- t-will-gillis closed issue by PR 7350: [7240](https://github.com/hackforla/website/issues/7240#event-14032301160) at 2024-08-27 10:06 AM PDT -t-will-gillis,2024-08-27T22:35:40Z,- t-will-gillis commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2313691860) at 2024-08-27 03:35 PM PDT -t-will-gillis,2024-08-28T21:40:30Z,- t-will-gillis commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2316297245) at 2024-08-28 02:40 PM PDT -t-will-gillis,2024-08-29T02:05:01Z,- t-will-gillis commented on pull request: [7323](https://github.com/hackforla/website/pull/7323#issuecomment-2316575203) at 2024-08-28 07:05 PM PDT -t-will-gillis,2024-08-29T02:05:11Z,- t-will-gillis pull request merged: [7323](https://github.com/hackforla/website/pull/7323#event-14054794171) at 2024-08-28 07:05 PM PDT -t-will-gillis,2024-08-29T02:05:12Z,- t-will-gillis closed issue by PR 7323: [7322](https://github.com/hackforla/website/issues/7322#event-14054794254) at 2024-08-28 07:05 PM PDT -t-will-gillis,2024-08-29T03:23:34Z,- t-will-gillis commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2316639854) at 2024-08-28 08:23 PM PDT -t-will-gillis,2024-08-29T03:32:40Z,- t-will-gillis commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2316647539) at 2024-08-28 08:32 PM PDT -t-will-gillis,2024-08-29T17:39:46Z,- t-will-gillis commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2318470813) at 2024-08-29 10:39 AM PDT -t-will-gillis,2024-08-29T17:39:46Z,- t-will-gillis closed issue as not planned: [7095](https://github.com/hackforla/website/issues/7095#event-14067390249) at 2024-08-29 10:39 AM PDT -t-will-gillis,2024-08-29T17:51:56Z,- t-will-gillis commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2318495936) at 2024-08-29 10:51 AM PDT -t-will-gillis,2024-08-30T02:14:35Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2319695411) at 2024-08-29 07:14 PM PDT -t-will-gillis,2024-08-30T03:24:49Z,- t-will-gillis commented on issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2319900615) at 2024-08-29 08:24 PM PDT -t-will-gillis,2024-08-30T03:24:49Z,- t-will-gillis closed issue as completed: [6863](https://github.com/hackforla/website/issues/6863#event-14074423300) at 2024-08-29 08:24 PM PDT -t-will-gillis,2024-08-30T04:02:18Z,- t-will-gillis opened pull request: [7367](https://github.com/hackforla/website/pull/7367) at 2024-08-29 09:02 PM PDT -t-will-gillis,2024-08-30T17:16:02Z,- t-will-gillis unassigned from issue: [7300](https://github.com/hackforla/website/issues/7300#issuecomment-2292617588) at 2024-08-30 10:16 AM PDT -t-will-gillis,2024-08-30T17:33:16Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2322034968) at 2024-08-30 10:33 AM PDT -t-will-gillis,2024-08-31T03:17:36Z,- t-will-gillis opened issue: [7372](https://github.com/hackforla/website/issues/7372) at 2024-08-30 08:17 PM PDT -t-will-gillis,2024-08-31T03:49:31Z,- t-will-gillis assigned to issue: [7372](https://github.com/hackforla/website/issues/7372) at 2024-08-30 08:49 PM PDT -t-will-gillis,2024-08-31T21:55:53Z,- t-will-gillis opened pull request: [7373](https://github.com/hackforla/website/pull/7373) at 2024-08-31 02:55 PM PDT -t-will-gillis,2024-08-31T21:59:31Z,- t-will-gillis closed issue by PR 7341: [7094](https://github.com/hackforla/website/issues/7094#event-14092744672) at 2024-08-31 02:59 PM PDT -t-will-gillis,2024-08-31T22:02:24Z,- t-will-gillis closed issue by PR 7360: [7092](https://github.com/hackforla/website/issues/7092#event-14092749220) at 2024-08-31 03:02 PM PDT -t-will-gillis,2024-09-01T22:02:56Z,- t-will-gillis submitted pull request review: [7375](https://github.com/hackforla/website/pull/7375#pullrequestreview-2274493579) at 2024-09-01 03:02 PM PDT -t-will-gillis,2024-09-01T22:27:28Z,- t-will-gillis commented on pull request: [7315](https://github.com/hackforla/website/pull/7315#issuecomment-2323519333) at 2024-09-01 03:27 PM PDT -t-will-gillis,2024-09-02T16:56:35Z,- t-will-gillis commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2325103028) at 2024-09-02 09:56 AM PDT -t-will-gillis,2024-09-02T18:20:28Z,- t-will-gillis submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2276054521) at 2024-09-02 11:20 AM PDT -t-will-gillis,2024-09-02T18:50:16Z,- t-will-gillis commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2325202318) at 2024-09-02 11:50 AM PDT -t-will-gillis,2024-09-02T22:04:08Z,- t-will-gillis commented on issue: [7266](https://github.com/hackforla/website/issues/7266#issuecomment-2325334506) at 2024-09-02 03:04 PM PDT -t-will-gillis,2024-09-02T22:04:08Z,- t-will-gillis closed issue as completed: [7266](https://github.com/hackforla/website/issues/7266#event-14107411071) at 2024-09-02 03:04 PM PDT -t-will-gillis,2024-09-02T22:14:12Z,- t-will-gillis commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2325340206) at 2024-09-02 03:14 PM PDT -t-will-gillis,2024-09-03T00:54:19Z,- t-will-gillis commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2325425633) at 2024-09-02 05:54 PM PDT -t-will-gillis,2024-09-03T16:05:05Z,- t-will-gillis submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2277884074) at 2024-09-03 09:05 AM PDT -t-will-gillis,2024-09-03T17:27:11Z,- t-will-gillis commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2327063334) at 2024-09-03 10:27 AM PDT -t-will-gillis,2024-09-03T20:04:29Z,- t-will-gillis commented on issue: [7267](https://github.com/hackforla/website/issues/7267#issuecomment-2327336951) at 2024-09-03 01:04 PM PDT -t-will-gillis,2024-09-03T20:04:30Z,- t-will-gillis closed issue as completed: [7267](https://github.com/hackforla/website/issues/7267#event-14120591392) at 2024-09-03 01:04 PM PDT -t-will-gillis,2024-09-04T03:48:11Z,- t-will-gillis closed issue by PR 7325: [7273](https://github.com/hackforla/website/issues/7273#event-14123744393) at 2024-09-03 08:48 PM PDT -t-will-gillis,2024-09-07T17:43:47Z,- t-will-gillis closed issue by PR 7375: [7015](https://github.com/hackforla/website/issues/7015#event-14172118566) at 2024-09-07 10:43 AM PDT -t-will-gillis,2024-09-07T17:52:00Z,- t-will-gillis closed issue by PR 7385: [7195](https://github.com/hackforla/website/issues/7195#event-14172190159) at 2024-09-07 10:52 AM PDT -t-will-gillis,2024-09-07T17:57:09Z,- t-will-gillis commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2336294623) at 2024-09-07 10:57 AM PDT -t-will-gillis,2024-09-09T03:28:08Z,- t-will-gillis closed issue by PR 7368: [7241](https://github.com/hackforla/website/issues/7241#event-14176402102) at 2024-09-08 08:28 PM PDT -t-will-gillis,2024-09-09T03:29:50Z,- t-will-gillis closed issue by PR 7406: [7290](https://github.com/hackforla/website/issues/7290#event-14176410750) at 2024-09-08 08:29 PM PDT -t-will-gillis,2024-09-09T03:31:18Z,- t-will-gillis closed issue by PR 7408: [7183](https://github.com/hackforla/website/issues/7183#event-14176417588) at 2024-09-08 08:31 PM PDT -t-will-gillis,2024-09-09T03:58:54Z,- t-will-gillis commented on pull request: [7367](https://github.com/hackforla/website/pull/7367#issuecomment-2337062974) at 2024-09-08 08:58 PM PDT -t-will-gillis,2024-09-09T04:42:47Z,- t-will-gillis commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2337102005) at 2024-09-08 09:42 PM PDT -t-will-gillis,2024-09-09T20:13:04Z,- t-will-gillis pull request merged: [7367](https://github.com/hackforla/website/pull/7367#event-14188969498) at 2024-09-09 01:13 PM PDT -t-will-gillis,2024-09-09T20:13:05Z,- t-will-gillis closed issue by PR 7367: [7349](https://github.com/hackforla/website/issues/7349#event-14188969684) at 2024-09-09 01:13 PM PDT -t-will-gillis,2024-09-09T20:59:14Z,- t-will-gillis commented on issue: [6161](https://github.com/hackforla/website/issues/6161#issuecomment-2339078979) at 2024-09-09 01:59 PM PDT -t-will-gillis,2024-09-10T00:25:00Z,- t-will-gillis commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2339378555) at 2024-09-09 05:25 PM PDT -t-will-gillis,2024-09-11T04:35:38Z,- t-will-gillis commented on pull request: [6442](https://github.com/hackforla/website/pull/6442#issuecomment-2342602850) at 2024-09-10 09:35 PM PDT -t-will-gillis,2024-09-11T04:46:13Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2342612614) at 2024-09-10 09:46 PM PDT -t-will-gillis,2024-09-12T02:18:35Z,- t-will-gillis closed issue by PR 7315: [7177](https://github.com/hackforla/website/issues/7177#event-14225611260) at 2024-09-11 07:18 PM PDT -t-will-gillis,2024-09-12T16:50:27Z,- t-will-gillis commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2346791415) at 2024-09-12 09:50 AM PDT -t-will-gillis,2024-09-12T16:54:09Z,- t-will-gillis commented on pull request: [7444](https://github.com/hackforla/website/pull/7444#issuecomment-2346798017) at 2024-09-12 09:54 AM PDT -t-will-gillis,2024-09-12T21:22:34Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2347271704) at 2024-09-12 02:22 PM PDT -t-will-gillis,2024-09-13T02:27:24Z,- t-will-gillis commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2347919040) at 2024-09-12 07:27 PM PDT -t-will-gillis,2024-09-13T03:24:09Z,- t-will-gillis commented on pull request: [6853](https://github.com/hackforla/website/pull/6853#issuecomment-2347962216) at 2024-09-12 08:24 PM PDT -t-will-gillis,2024-09-13T19:17:25Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2349999143) at 2024-09-13 12:17 PM PDT -t-will-gillis,2024-09-13T19:18:33Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2350000939) at 2024-09-13 12:18 PM PDT -t-will-gillis,2024-09-13T23:58:53Z,- t-will-gillis commented on issue: [7108](https://github.com/hackforla/website/issues/7108#issuecomment-2350720118) at 2024-09-13 04:58 PM PDT -t-will-gillis,2024-09-13T23:58:54Z,- t-will-gillis closed issue as completed: [7108](https://github.com/hackforla/website/issues/7108#event-14255612620) at 2024-09-13 04:58 PM PDT -t-will-gillis,2024-09-14T02:17:57Z,- t-will-gillis closed issue by PR 6442: [5205](https://github.com/hackforla/website/issues/5205#event-14256321960) at 2024-09-13 07:17 PM PDT -t-will-gillis,2024-09-14T18:15:20Z,- t-will-gillis commented on issue: [7142](https://github.com/hackforla/website/issues/7142#issuecomment-2351090085) at 2024-09-14 11:15 AM PDT -t-will-gillis,2024-09-14T18:41:30Z,- t-will-gillis commented on issue: [7167](https://github.com/hackforla/website/issues/7167#issuecomment-2351100238) at 2024-09-14 11:41 AM PDT -t-will-gillis,2024-09-14T18:41:30Z,- t-will-gillis closed issue as completed: [7167](https://github.com/hackforla/website/issues/7167#event-14260362815) at 2024-09-14 11:41 AM PDT -t-will-gillis,2024-09-14T21:52:53Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2351171128) at 2024-09-14 02:52 PM PDT -t-will-gillis,2024-09-15T02:28:04Z,- t-will-gillis closed issue by PR 7436: [7180](https://github.com/hackforla/website/issues/7180#event-14262062686) at 2024-09-14 07:28 PM PDT -t-will-gillis,2024-09-15T02:37:22Z,- t-will-gillis closed issue by PR 7445: [7336](https://github.com/hackforla/website/issues/7336#event-14262073316) at 2024-09-14 07:37 PM PDT -t-will-gillis,2024-09-15T02:57:33Z,- t-will-gillis closed issue by PR 7446: [7379](https://github.com/hackforla/website/issues/7379#event-14262096888) at 2024-09-14 07:57 PM PDT -t-will-gillis,2024-09-15T03:02:53Z,- t-will-gillis commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2351326408) at 2024-09-14 08:02 PM PDT -t-will-gillis,2024-09-15T16:07:41Z,- t-will-gillis commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2351655484) at 2024-09-15 09:07 AM PDT -t-will-gillis,2024-09-15T16:07:41Z,- t-will-gillis closed issue as completed: [6579](https://github.com/hackforla/website/issues/6579#event-14263550271) at 2024-09-15 09:07 AM PDT -t-will-gillis,2024-09-15T16:34:59Z,- t-will-gillis commented on issue: [3487](https://github.com/hackforla/website/issues/3487#issuecomment-2351667270) at 2024-09-15 09:34 AM PDT -t-will-gillis,2024-09-16T21:29:39Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2354063175) at 2024-09-16 02:29 PM PDT -t-will-gillis,2024-09-17T00:23:19Z,- t-will-gillis assigned to issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2270113150) at 2024-09-16 05:23 PM PDT -t-will-gillis,2024-09-17T00:41:22Z,- t-will-gillis unassigned from issue: [5196](https://github.com/hackforla/website/issues/5196#issuecomment-2354269065) at 2024-09-16 05:41 PM PDT -t-will-gillis,2024-09-17T01:48:56Z,- t-will-gillis commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2354346184) at 2024-09-16 06:48 PM PDT -t-will-gillis,2024-09-17T02:42:39Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2354395030) at 2024-09-16 07:42 PM PDT -t-will-gillis,2024-09-17T17:53:09Z,- t-will-gillis commented on issue: [7079](https://github.com/hackforla/website/issues/7079#issuecomment-2356559535) at 2024-09-17 10:53 AM PDT -t-will-gillis,2024-09-19T03:07:40Z,- t-will-gillis closed issue by PR 7466: [7300](https://github.com/hackforla/website/issues/7300#event-14317096713) at 2024-09-18 08:07 PM PDT -t-will-gillis,2024-09-19T04:24:42Z,- t-will-gillis submitted pull request review: [7493](https://github.com/hackforla/website/pull/7493#pullrequestreview-2314375801) at 2024-09-18 09:24 PM PDT -t-will-gillis,2024-09-20T17:26:14Z,- t-will-gillis commented on issue: [7112](https://github.com/hackforla/website/issues/7112#issuecomment-2364186162) at 2024-09-20 10:26 AM PDT -t-will-gillis,2024-09-20T17:38:59Z,- t-will-gillis opened issue: [7500](https://github.com/hackforla/website/issues/7500) at 2024-09-20 10:38 AM PDT -t-will-gillis,2024-09-21T02:15:02Z,- t-will-gillis submitted pull request review: [7493](https://github.com/hackforla/website/pull/7493#pullrequestreview-2319621119) at 2024-09-20 07:15 PM PDT -t-will-gillis,2024-09-21T02:15:16Z,- t-will-gillis closed issue by PR 7493: [7079](https://github.com/hackforla/website/issues/7079#event-14347597607) at 2024-09-20 07:15 PM PDT -t-will-gillis,2024-09-21T02:16:19Z,- t-will-gillis commented on issue: [6993](https://github.com/hackforla/website/issues/6993#issuecomment-2364936716) at 2024-09-20 07:16 PM PDT -t-will-gillis,2024-09-21T02:16:19Z,- t-will-gillis closed issue as completed: [6993](https://github.com/hackforla/website/issues/6993#event-14347599570) at 2024-09-20 07:16 PM PDT -t-will-gillis,2024-09-21T02:24:32Z,- t-will-gillis commented on pull request: [7373](https://github.com/hackforla/website/pull/7373#issuecomment-2364940374) at 2024-09-20 07:24 PM PDT -t-will-gillis,2024-09-21T02:24:57Z,- t-will-gillis pull request merged: [7373](https://github.com/hackforla/website/pull/7373#event-14347615086) at 2024-09-20 07:24 PM PDT -t-will-gillis,2024-09-21T02:24:58Z,- t-will-gillis closed issue by PR 7373: [7372](https://github.com/hackforla/website/issues/7372#event-14347615130) at 2024-09-20 07:24 PM PDT -t-will-gillis,2024-09-21T02:48:08Z,- t-will-gillis opened issue: [7502](https://github.com/hackforla/website/issues/7502) at 2024-09-20 07:48 PM PDT -t-will-gillis,2024-09-21T02:51:23Z,- t-will-gillis opened pull request: [7503](https://github.com/hackforla/website/pull/7503) at 2024-09-20 07:51 PM PDT -t-will-gillis,2024-09-21T03:33:41Z,- t-will-gillis pull request merged: [7503](https://github.com/hackforla/website/pull/7503#event-14347776279) at 2024-09-20 08:33 PM PDT -t-will-gillis,2024-09-21T03:33:42Z,- t-will-gillis closed issue by PR 7503: [7502](https://github.com/hackforla/website/issues/7502#event-14347776301) at 2024-09-20 08:33 PM PDT -t-will-gillis,2024-09-22T16:20:55Z,- t-will-gillis closed issue by PR 7468: [7415](https://github.com/hackforla/website/issues/7415#event-14355027207) at 2024-09-22 09:20 AM PDT -t-will-gillis,2024-09-22T18:39:39Z,- t-will-gillis commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2366911637) at 2024-09-22 11:39 AM PDT -t-will-gillis,2024-09-22T18:43:08Z,- t-will-gillis commented on pull request: [7405](https://github.com/hackforla/website/pull/7405#issuecomment-2366912899) at 2024-09-22 11:43 AM PDT -t-will-gillis,2024-09-23T01:52:21Z,- t-will-gillis commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2367106376) at 2024-09-22 06:52 PM PDT -t-will-gillis,2024-09-23T02:21:58Z,- t-will-gillis closed issue by PR 7504: [7497](https://github.com/hackforla/website/issues/7497#event-14356490882) at 2024-09-22 07:21 PM PDT -t-will-gillis,2024-09-28T22:14:03Z,- t-will-gillis opened issue: [7530](https://github.com/hackforla/website/issues/7530) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:04Z,- t-will-gillis opened issue: [7531](https://github.com/hackforla/website/issues/7531) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:06Z,- t-will-gillis opened issue: [7532](https://github.com/hackforla/website/issues/7532) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:07Z,- t-will-gillis opened issue: [7533](https://github.com/hackforla/website/issues/7533) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:08Z,- t-will-gillis opened issue: [7534](https://github.com/hackforla/website/issues/7534) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:09Z,- t-will-gillis opened issue: [7535](https://github.com/hackforla/website/issues/7535) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:10Z,- t-will-gillis opened issue: [7536](https://github.com/hackforla/website/issues/7536) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:14:11Z,- t-will-gillis opened issue: [7537](https://github.com/hackforla/website/issues/7537) at 2024-09-28 03:14 PM PDT -t-will-gillis,2024-09-28T22:21:41Z,- t-will-gillis assigned to issue: [7537](https://github.com/hackforla/website/issues/7537) at 2024-09-28 03:21 PM PDT -t-will-gillis,2024-09-28T22:21:55Z,- t-will-gillis assigned to issue: [7536](https://github.com/hackforla/website/issues/7536) at 2024-09-28 03:21 PM PDT -t-will-gillis,2024-09-28T22:22:16Z,- t-will-gillis assigned to issue: [7535](https://github.com/hackforla/website/issues/7535) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:21Z,- t-will-gillis assigned to issue: [7534](https://github.com/hackforla/website/issues/7534) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:25Z,- t-will-gillis assigned to issue: [7533](https://github.com/hackforla/website/issues/7533) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:29Z,- t-will-gillis assigned to issue: [7532](https://github.com/hackforla/website/issues/7532) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:33Z,- t-will-gillis assigned to issue: [7531](https://github.com/hackforla/website/issues/7531) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-28T22:22:37Z,- t-will-gillis assigned to issue: [7530](https://github.com/hackforla/website/issues/7530) at 2024-09-28 03:22 PM PDT -t-will-gillis,2024-09-29T03:58:39Z,- t-will-gillis opened pull request: [7538](https://github.com/hackforla/website/pull/7538) at 2024-09-28 08:58 PM PDT -t-will-gillis,2024-09-29T16:54:01Z,- t-will-gillis submitted pull request review: [7529](https://github.com/hackforla/website/pull/7529#pullrequestreview-2335894910) at 2024-09-29 09:54 AM PDT -t-will-gillis,2024-09-29T16:54:34Z,- t-will-gillis closed issue by PR 7529: [7403](https://github.com/hackforla/website/issues/7403#event-14445745984) at 2024-09-29 09:54 AM PDT -t-will-gillis,2024-09-29T19:44:22Z,- t-will-gillis submitted pull request review: [7526](https://github.com/hackforla/website/pull/7526#pullrequestreview-2335985901) at 2024-09-29 12:44 PM PDT -t-will-gillis,2024-09-29T19:45:10Z,- t-will-gillis closed issue by PR 7526: [7515](https://github.com/hackforla/website/issues/7515#event-14446481666) at 2024-09-29 12:45 PM PDT -t-will-gillis,2024-09-29T19:48:01Z,- t-will-gillis commented on issue: [7314](https://github.com/hackforla/website/issues/7314#issuecomment-2381580473) at 2024-09-29 12:48 PM PDT -t-will-gillis,2024-09-29T19:50:06Z,- t-will-gillis commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2381581044) at 2024-09-29 12:50 PM PDT -t-will-gillis,2024-09-30T03:56:02Z,- t-will-gillis commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2381955405) at 2024-09-29 08:56 PM PDT -t-will-gillis,2024-09-30T04:26:07Z,- t-will-gillis commented on pull request: [7543](https://github.com/hackforla/website/pull/7543#issuecomment-2381981544) at 2024-09-29 09:26 PM PDT -t-will-gillis,2024-09-30T17:34:20Z,- t-will-gillis closed issue as not planned: [7545](https://github.com/hackforla/website/issues/7545#event-14460090721) at 2024-09-30 10:34 AM PDT -t-will-gillis,2024-09-30T17:35:00Z,- t-will-gillis commented on issue: [7545](https://github.com/hackforla/website/issues/7545#issuecomment-2383785778) at 2024-09-30 10:35 AM PDT -t-will-gillis,2024-09-30T21:34:59Z,- t-will-gillis commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2384184105) at 2024-09-30 02:34 PM PDT -t-will-gillis,2024-10-01T02:54:37Z,- t-will-gillis commented on issue: [7151](https://github.com/hackforla/website/issues/7151#issuecomment-2384679125) at 2024-09-30 07:54 PM PDT -t-will-gillis,2024-10-01T03:51:44Z,- t-will-gillis opened issue: [7552](https://github.com/hackforla/website/issues/7552) at 2024-09-30 08:51 PM PDT -t-will-gillis,2024-10-01T03:51:57Z,- t-will-gillis assigned to issue: [7552](https://github.com/hackforla/website/issues/7552) at 2024-09-30 08:51 PM PDT -t-will-gillis,2024-10-01T03:55:46Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2384732747) at 2024-09-30 08:55 PM PDT -t-will-gillis,2024-10-02T20:39:48Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2389657338) at 2024-10-02 01:39 PM PDT -t-will-gillis,2024-10-03T23:38:03Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2392513853) at 2024-10-03 04:38 PM PDT -t-will-gillis,2024-10-04T03:20:07Z,- t-will-gillis opened issue: [7561](https://github.com/hackforla/website/issues/7561) at 2024-10-03 08:20 PM PDT -t-will-gillis,2024-10-04T03:29:07Z,- t-will-gillis opened issue: [7562](https://github.com/hackforla/website/issues/7562) at 2024-10-03 08:29 PM PDT -t-will-gillis,2024-10-04T03:30:00Z,- t-will-gillis assigned to issue: [7562](https://github.com/hackforla/website/issues/7562) at 2024-10-03 08:30 PM PDT -t-will-gillis,2024-10-04T04:04:28Z,- t-will-gillis opened issue: [7563](https://github.com/hackforla/website/issues/7563) at 2024-10-03 09:04 PM PDT -t-will-gillis,2024-10-04T04:10:15Z,- t-will-gillis commented on issue: [7527](https://github.com/hackforla/website/issues/7527#issuecomment-2392752116) at 2024-10-03 09:10 PM PDT -t-will-gillis,2024-10-06T17:32:23Z,- t-will-gillis closed issue by PR 7560: [7355](https://github.com/hackforla/website/issues/7355#event-14531117582) at 2024-10-06 10:32 AM PDT -t-will-gillis,2024-10-06T17:42:51Z,- t-will-gillis commented on pull request: [7559](https://github.com/hackforla/website/pull/7559#issuecomment-2395521751) at 2024-10-06 10:42 AM PDT -t-will-gillis,2024-10-06T20:21:57Z,- t-will-gillis submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2350596195) at 2024-10-06 01:21 PM PDT -t-will-gillis,2024-10-08T00:12:47Z,- t-will-gillis assigned to issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398025433) at 2024-10-07 05:12 PM PDT -t-will-gillis,2024-10-08T00:13:08Z,- t-will-gillis unassigned from issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398250655) at 2024-10-07 05:13 PM PDT -t-will-gillis,2024-10-08T00:55:05Z,- t-will-gillis assigned to issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2395487367) at 2024-10-07 05:55 PM PDT -t-will-gillis,2024-10-08T01:05:18Z,- t-will-gillis assigned to issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-2398250655) at 2024-10-07 06:05 PM PDT -t-will-gillis,2024-10-08T22:23:56Z,- t-will-gillis submitted pull request review: [7564](https://github.com/hackforla/website/pull/7564#pullrequestreview-2355643531) at 2024-10-08 03:23 PM PDT -t-will-gillis,2024-10-10T02:34:13Z,- t-will-gillis commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2403813692) at 2024-10-09 07:34 PM PDT -t-will-gillis,2024-10-13T18:24:17Z,- t-will-gillis closed issue by PR 7579: [7555](https://github.com/hackforla/website/issues/7555#event-14620289974) at 2024-10-13 11:24 AM PDT -t-will-gillis,2024-10-13T18:27:45Z,- t-will-gillis commented on pull request: [7409](https://github.com/hackforla/website/pull/7409#issuecomment-2409077735) at 2024-10-13 11:27 AM PDT -t-will-gillis,2024-10-14T18:06:14Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2411927813) at 2024-10-14 11:06 AM PDT -t-will-gillis,2024-10-14T20:56:14Z,- t-will-gillis commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2412330640) at 2024-10-14 01:56 PM PDT -t-will-gillis,2024-10-14T22:38:50Z,- t-will-gillis unassigned from issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2400238861) at 2024-10-14 03:38 PM PDT -t-will-gillis,2024-10-15T01:50:45Z,- t-will-gillis unassigned from issue: [7552](https://github.com/hackforla/website/issues/7552#issuecomment-2412650919) at 2024-10-14 06:50 PM PDT -t-will-gillis,2024-10-19T18:27:09Z,- t-will-gillis closed issue by PR 7589: [7414](https://github.com/hackforla/website/issues/7414#event-14737376711) at 2024-10-19 11:27 AM PDT -t-will-gillis,2024-10-19T23:05:07Z,- t-will-gillis commented on pull request: [7569](https://github.com/hackforla/website/pull/7569#issuecomment-2424275808) at 2024-10-19 04:05 PM PDT -t-will-gillis,2024-10-19T23:05:37Z,- t-will-gillis closed issue by PR 7598: [7556](https://github.com/hackforla/website/issues/7556#event-14740387137) at 2024-10-19 04:05 PM PDT -t-will-gillis,2024-10-19T23:09:08Z,- t-will-gillis commented on issue: [7363](https://github.com/hackforla/website/issues/7363#issuecomment-2424279187) at 2024-10-19 04:09 PM PDT -t-will-gillis,2024-10-19T23:11:29Z,- t-will-gillis pull request merged: [7538](https://github.com/hackforla/website/pull/7538#event-14740416449) at 2024-10-19 04:11 PM PDT -t-will-gillis,2024-10-19T23:11:30Z,- t-will-gillis closed issue by PR 7538: [7537](https://github.com/hackforla/website/issues/7537#event-14740416483) at 2024-10-19 04:11 PM PDT -t-will-gillis,2024-10-20T17:08:51Z,- t-will-gillis commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2425129966) at 2024-10-20 10:08 AM PDT -t-will-gillis,2024-10-20T18:45:39Z,- t-will-gillis commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2425175023) at 2024-10-20 11:45 AM PDT -t-will-gillis,2024-10-20T22:00:56Z,- t-will-gillis opened issue: [7614](https://github.com/hackforla/website/issues/7614) at 2024-10-20 03:00 PM PDT -t-will-gillis,2024-10-21T16:22:37Z,- t-will-gillis submitted pull request review: [7599](https://github.com/hackforla/website/pull/7599#pullrequestreview-2382616059) at 2024-10-21 09:22 AM PDT -t-will-gillis,2024-10-21T17:47:11Z,- t-will-gillis assigned to issue: [7614](https://github.com/hackforla/website/issues/7614) at 2024-10-21 10:47 AM PDT -t-will-gillis,2024-10-21T18:04:52Z,- t-will-gillis commented on issue: [7563](https://github.com/hackforla/website/issues/7563#issuecomment-2427384997) at 2024-10-21 11:04 AM PDT -t-will-gillis,2024-10-21T18:41:05Z,- t-will-gillis commented on issue: [7456](https://github.com/hackforla/website/issues/7456#issuecomment-2427455331) at 2024-10-21 11:41 AM PDT -t-will-gillis,2024-10-21T18:41:05Z,- t-will-gillis closed issue as completed: [7456](https://github.com/hackforla/website/issues/7456#event-14769665886) at 2024-10-21 11:41 AM PDT -t-will-gillis,2024-10-21T20:17:00Z,- t-will-gillis closed issue by PR 7508: [7363](https://github.com/hackforla/website/issues/7363#event-14770821182) at 2024-10-21 01:17 PM PDT -t-will-gillis,2024-10-22T21:10:35Z,- t-will-gillis commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2430300098) at 2024-10-22 02:10 PM PDT -t-will-gillis,2024-10-26T02:36:14Z,- t-will-gillis commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2439188819) at 2024-10-25 07:36 PM PDT -t-will-gillis,2024-10-26T03:12:53Z,- t-will-gillis submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2397031343) at 2024-10-25 08:12 PM PDT -t-will-gillis,2024-10-26T18:03:16Z,- t-will-gillis opened pull request: [7638](https://github.com/hackforla/website/pull/7638) at 2024-10-26 11:03 AM PDT -t-will-gillis,2024-10-26T18:06:52Z,- t-will-gillis closed issue by PR 7634: [7500](https://github.com/hackforla/website/issues/7500#event-14909340634) at 2024-10-26 11:06 AM PDT -t-will-gillis,2024-10-26T20:41:56Z,- t-will-gillis unassigned from issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2392723934) at 2024-10-26 01:41 PM PDT -t-will-gillis,2024-10-26T20:49:10Z,- t-will-gillis assigned to issue: [7561](https://github.com/hackforla/website/issues/7561) at 2024-10-26 01:49 PM PDT -t-will-gillis,2024-10-26T20:50:23Z,- t-will-gillis commented on issue: [7561](https://github.com/hackforla/website/issues/7561#issuecomment-2439732622) at 2024-10-26 01:50 PM PDT -t-will-gillis,2024-10-26T21:09:01Z,- t-will-gillis unassigned from issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2381010498) at 2024-10-26 02:09 PM PDT -t-will-gillis,2024-10-26T21:24:16Z,- t-will-gillis unassigned from issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2381010597) at 2024-10-26 02:24 PM PDT -t-will-gillis,2024-10-26T21:32:11Z,- t-will-gillis unassigned from issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2381010610) at 2024-10-26 02:32 PM PDT -t-will-gillis,2024-10-26T21:42:33Z,- t-will-gillis unassigned from issue: [7533](https://github.com/hackforla/website/issues/7533#issuecomment-2381010607) at 2024-10-26 02:42 PM PDT -t-will-gillis,2024-10-26T21:52:04Z,- t-will-gillis unassigned from issue: [7532](https://github.com/hackforla/website/issues/7532#issuecomment-2381010652) at 2024-10-26 02:52 PM PDT -t-will-gillis,2024-10-26T21:58:50Z,- t-will-gillis unassigned from issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2381010666) at 2024-10-26 02:58 PM PDT -t-will-gillis,2024-10-26T22:03:40Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2439749524) at 2024-10-26 03:03 PM PDT -t-will-gillis,2024-10-28T17:24:28Z,- t-will-gillis commented on issue: [7556](https://github.com/hackforla/website/issues/7556#issuecomment-2442194137) at 2024-10-28 10:24 AM PDT -t-will-gillis,2024-10-28T17:37:43Z,- t-will-gillis commented on issue: [7641](https://github.com/hackforla/website/issues/7641#issuecomment-2442223140) at 2024-10-28 10:37 AM PDT -t-will-gillis,2024-10-28T22:10:49Z,- t-will-gillis commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2442769940) at 2024-10-28 03:10 PM PDT -t-will-gillis,2024-10-28T22:53:45Z,- t-will-gillis submitted pull request review: [7616](https://github.com/hackforla/website/pull/7616#pullrequestreview-2400399461) at 2024-10-28 03:53 PM PDT -t-will-gillis,2024-10-29T02:25:46Z,- t-will-gillis commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2443035255) at 2024-10-28 07:25 PM PDT -t-will-gillis,2024-10-29T02:25:55Z,- t-will-gillis closed issue by PR 7616: [5196](https://github.com/hackforla/website/issues/5196#event-14971886470) at 2024-10-28 07:25 PM PDT -t-will-gillis,2024-10-30T02:06:40Z,- t-will-gillis submitted pull request review: [7615](https://github.com/hackforla/website/pull/7615#pullrequestreview-2403406783) at 2024-10-29 07:06 PM PDT -t-will-gillis,2024-10-30T02:08:57Z,- t-will-gillis commented on pull request: [7615](https://github.com/hackforla/website/pull/7615#issuecomment-2445671314) at 2024-10-29 07:08 PM PDT -t-will-gillis,2024-10-30T02:09:26Z,- t-will-gillis closed issue by PR 7615: [2147](https://github.com/hackforla/website/issues/2147#event-14994711313) at 2024-10-29 07:09 PM PDT -t-will-gillis,2024-10-30T02:18:04Z,- t-will-gillis commented on issue: [6826](https://github.com/hackforla/website/issues/6826#issuecomment-2445680846) at 2024-10-29 07:18 PM PDT -t-will-gillis,2024-10-30T02:18:04Z,- t-will-gillis closed issue as completed: [6826](https://github.com/hackforla/website/issues/6826#event-14994798800) at 2024-10-29 07:18 PM PDT -t-will-gillis,2024-10-30T02:19:52Z,- t-will-gillis commented on issue: [6827](https://github.com/hackforla/website/issues/6827#issuecomment-2445682264) at 2024-10-29 07:19 PM PDT -t-will-gillis,2024-10-30T02:19:52Z,- t-will-gillis closed issue as completed: [6827](https://github.com/hackforla/website/issues/6827#event-14994809112) at 2024-10-29 07:19 PM PDT -t-will-gillis,2024-11-01T02:34:09Z,- t-will-gillis opened issue: [7682](https://github.com/hackforla/website/issues/7682) at 2024-10-31 07:34 PM PDT -t-will-gillis,2024-11-01T02:34:10Z,- t-will-gillis assigned to issue: [7682](https://github.com/hackforla/website/issues/7682) at 2024-10-31 07:34 PM PDT -t-will-gillis,2024-11-01T02:53:04Z,- t-will-gillis opened pull request: [7683](https://github.com/hackforla/website/pull/7683) at 2024-10-31 07:53 PM PDT -t-will-gillis,2024-11-01T03:06:29Z,- t-will-gillis pull request merged: [7683](https://github.com/hackforla/website/pull/7683#event-15055021443) at 2024-10-31 08:06 PM PDT -t-will-gillis,2024-11-01T03:06:30Z,- t-will-gillis closed issue by PR 7683: [7682](https://github.com/hackforla/website/issues/7682#event-15055022044) at 2024-10-31 08:06 PM PDT -t-will-gillis,2024-11-01T20:11:01Z,- t-will-gillis commented on issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2452521817) at 2024-11-01 01:11 PM PDT -t-will-gillis,2024-11-01T20:11:01Z,- t-will-gillis reopened issue: [6424](https://github.com/hackforla/website/issues/6424#issuecomment-2452521817) at 2024-11-01 01:11 PM PDT -t-will-gillis,2024-11-02T22:28:51Z,- t-will-gillis commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2453212470) at 2024-11-02 02:28 PM PST -t-will-gillis,2024-11-02T22:32:22Z,- t-will-gillis commented on pull request: [7638](https://github.com/hackforla/website/pull/7638#issuecomment-2453213332) at 2024-11-02 02:32 PM PST -t-will-gillis,2024-11-02T22:32:29Z,- t-will-gillis pull request merged: [7638](https://github.com/hackforla/website/pull/7638#event-15086430077) at 2024-11-02 02:32 PM PST -t-will-gillis,2024-11-02T22:32:30Z,- t-will-gillis closed issue by PR 7638: [7614](https://github.com/hackforla/website/issues/7614#event-15086430641) at 2024-11-02 02:32 PM PST -t-will-gillis,2024-11-04T04:16:19Z,- t-will-gillis commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2453798056) at 2024-11-03 08:16 PM PST -t-will-gillis,2024-11-04T04:18:26Z,- t-will-gillis closed issue by PR 7665: [7584](https://github.com/hackforla/website/issues/7584#event-15097890321) at 2024-11-03 08:18 PM PST -t-will-gillis,2024-11-04T04:28:35Z,- t-will-gillis commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453807223) at 2024-11-03 08:28 PM PST -t-will-gillis,2024-11-04T04:47:48Z,- t-will-gillis opened issue: [7687](https://github.com/hackforla/website/issues/7687) at 2024-11-03 08:47 PM PST -t-will-gillis,2024-11-04T04:56:48Z,- t-will-gillis assigned to issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2381010666) at 2024-11-03 08:56 PM PST -t-will-gillis,2024-11-04T18:10:09Z,- t-will-gillis commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455385422) at 2024-11-04 10:10 AM PST -t-will-gillis,2024-11-04T22:10:13Z,- t-will-gillis opened pull request: [7688](https://github.com/hackforla/website/pull/7688) at 2024-11-04 02:10 PM PST -t-will-gillis,2024-11-04T22:11:27Z,- t-will-gillis assigned to issue: [7687](https://github.com/hackforla/website/issues/7687) at 2024-11-04 02:11 PM PST -t-will-gillis,2024-11-09T19:13:46Z,- t-will-gillis commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2466415862) at 2024-11-09 11:13 AM PST -t-will-gillis,2024-11-10T03:28:29Z,- t-will-gillis closed issue by PR 7711: [7646](https://github.com/hackforla/website/issues/7646#event-15240019186) at 2024-11-09 07:28 PM PST -t-will-gillis,2024-11-10T03:36:19Z,- t-will-gillis commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2466567805) at 2024-11-09 07:36 PM PST -t-will-gillis,2024-11-10T03:51:33Z,- t-will-gillis commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2466571176) at 2024-11-09 07:51 PM PST -t-will-gillis,2024-11-10T03:56:21Z,- t-will-gillis commented on pull request: [7706](https://github.com/hackforla/website/pull/7706#issuecomment-2466571975) at 2024-11-09 07:56 PM PST -t-will-gillis,2024-11-10T03:56:56Z,- t-will-gillis closed issue by PR 7706: [7643](https://github.com/hackforla/website/issues/7643#event-15240051999) at 2024-11-09 07:56 PM PST -t-will-gillis,2024-11-10T17:01:45Z,- t-will-gillis commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2466809731) at 2024-11-10 09:01 AM PST -t-will-gillis,2024-11-10T21:49:13Z,- t-will-gillis closed issue by PR 7637: [7541](https://github.com/hackforla/website/issues/7541#event-15242132892) at 2024-11-10 01:49 PM PST -t-will-gillis,2024-11-10T22:37:28Z,- t-will-gillis submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2425874894) at 2024-11-10 02:37 PM PST -t-will-gillis,2024-11-13T23:30:53Z,- t-will-gillis submitted pull request review: [7631](https://github.com/hackforla/website/pull/7631#pullrequestreview-2434679548) at 2024-11-13 03:30 PM PST -t-will-gillis,2024-11-13T23:31:56Z,- t-will-gillis closed issue by PR 7631: [7576](https://github.com/hackforla/website/issues/7576#event-15290650072) at 2024-11-13 03:31 PM PST -t-will-gillis,2024-11-14T05:24:23Z,- t-will-gillis commented on issue: [6058](https://github.com/hackforla/website/issues/6058#issuecomment-2475445425) at 2024-11-13 09:24 PM PST -t-will-gillis,2024-11-15T02:53:21Z,- t-will-gillis commented on issue: [6990](https://github.com/hackforla/website/issues/6990#issuecomment-2477851304) at 2024-11-14 06:53 PM PST -t-will-gillis,2024-11-15T02:53:22Z,- t-will-gillis closed issue as completed: [6990](https://github.com/hackforla/website/issues/6990#event-15306596396) at 2024-11-14 06:53 PM PST -t-will-gillis,2024-11-17T17:05:41Z,- t-will-gillis commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2481384752) at 2024-11-17 09:05 AM PST -t-will-gillis,2024-11-17T17:21:45Z,- t-will-gillis closed issue by PR 7719: [7091](https://github.com/hackforla/website/issues/7091#event-15325544466) at 2024-11-17 09:21 AM PST -t-will-gillis,2024-11-17T17:26:16Z,- t-will-gillis closed issue by PR 7718: [7459](https://github.com/hackforla/website/issues/7459#event-15325553242) at 2024-11-17 09:26 AM PST -t-will-gillis,2024-11-17T17:27:08Z,- t-will-gillis commented on pull request: [7718](https://github.com/hackforla/website/pull/7718#issuecomment-2481392869) at 2024-11-17 09:27 AM PST -t-will-gillis,2024-11-17T17:36:57Z,- t-will-gillis commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481395889) at 2024-11-17 09:36 AM PST -t-will-gillis,2024-11-17T17:52:06Z,- t-will-gillis submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2441114125) at 2024-11-17 09:52 AM PST -t-will-gillis,2024-11-17T19:04:34Z,- t-will-gillis commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2481432687) at 2024-11-17 11:04 AM PST -t-will-gillis,2024-11-18T02:26:00Z,- t-will-gillis submitted pull request review: [7720](https://github.com/hackforla/website/pull/7720#pullrequestreview-2441358297) at 2024-11-17 06:26 PM PST -t-will-gillis,2024-11-18T02:28:22Z,- t-will-gillis closed issue by PR 7720: [6981](https://github.com/hackforla/website/issues/6981#event-15327463872) at 2024-11-17 06:28 PM PST -t-will-gillis,2024-11-18T02:46:23Z,- t-will-gillis commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481820538) at 2024-11-17 06:46 PM PST -t-will-gillis,2024-11-18T02:47:03Z,- t-will-gillis closed issue by PR 7723: [7647](https://github.com/hackforla/website/issues/7647#event-15327581014) at 2024-11-17 06:47 PM PST -t-will-gillis,2024-11-18T03:00:35Z,- t-will-gillis closed issue by PR 7713: [7601](https://github.com/hackforla/website/issues/7601#event-15327680818) at 2024-11-17 07:00 PM PST -t-will-gillis,2024-11-18T23:17:47Z,- t-will-gillis commented on issue: [7530](https://github.com/hackforla/website/issues/7530#issuecomment-2484347360) at 2024-11-18 03:17 PM PST -t-will-gillis,2024-11-18T23:38:10Z,- t-will-gillis commented on issue: [7699](https://github.com/hackforla/website/issues/7699#issuecomment-2484393034) at 2024-11-18 03:38 PM PST -t-will-gillis,2024-11-18T23:38:40Z,- t-will-gillis commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2484393740) at 2024-11-18 03:38 PM PST -t-will-gillis,2024-11-19T00:58:56Z,- t-will-gillis commented on issue: [7696](https://github.com/hackforla/website/issues/7696#issuecomment-2484487731) at 2024-11-18 04:58 PM PST -t-will-gillis,2024-11-19T03:47:31Z,- t-will-gillis commented on issue: [7400](https://github.com/hackforla/website/issues/7400#issuecomment-2484647942) at 2024-11-18 07:47 PM PST -t-will-gillis,2024-11-19T03:47:32Z,- t-will-gillis closed issue as completed: [7400](https://github.com/hackforla/website/issues/7400#event-15343270733) at 2024-11-18 07:47 PM PST -t-will-gillis,2024-11-21T17:06:31Z,- t-will-gillis pull request closed w/o merging: [7688](https://github.com/hackforla/website/pull/7688#event-15385512893) at 2024-11-21 09:06 AM PST -t-will-gillis,2024-11-21T17:09:26Z,- t-will-gillis commented on pull request: [7688](https://github.com/hackforla/website/pull/7688#issuecomment-2491812304) at 2024-11-21 09:09 AM PST -t-will-gillis,2024-11-24T17:21:58Z,- t-will-gillis commented on pull request: [7729](https://github.com/hackforla/website/pull/7729#issuecomment-2496119402) at 2024-11-24 09:21 AM PST -t-will-gillis,2024-11-24T17:31:25Z,- t-will-gillis commented on pull request: [7748](https://github.com/hackforla/website/pull/7748#issuecomment-2496127483) at 2024-11-24 09:31 AM PST -t-will-gillis,2024-11-24T17:47:01Z,- t-will-gillis commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2496133844) at 2024-11-24 09:47 AM PST -t-will-gillis,2024-11-24T20:16:59Z,- t-will-gillis commented on issue: [7399](https://github.com/hackforla/website/issues/7399#issuecomment-2496211439) at 2024-11-24 12:16 PM PST -t-will-gillis,2024-11-24T20:16:59Z,- t-will-gillis closed issue as not planned: [7399](https://github.com/hackforla/website/issues/7399#event-15411397546) at 2024-11-24 12:16 PM PST -t-will-gillis,2024-11-24T20:37:40Z,- t-will-gillis commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2496220290) at 2024-11-24 12:37 PM PST -t-will-gillis,2024-11-24T20:37:40Z,- t-will-gillis closed issue as completed: [7398](https://github.com/hackforla/website/issues/7398#event-15411438710) at 2024-11-24 12:37 PM PST -t-will-gillis,2024-11-24T20:38:09Z,- t-will-gillis commented on issue: [7398](https://github.com/hackforla/website/issues/7398#issuecomment-2496220457) at 2024-11-24 12:38 PM PST -t-will-gillis,2024-11-25T05:51:27Z,- t-will-gillis reopened pull request: [7757](https://github.com/hackforla/website/pull/7757#event-15414493762) at 2024-11-24 09:51 PM PST -t-will-gillis,2024-11-26T01:09:24Z,- t-will-gillis assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498861238) at 2024-11-25 05:09 PM PST -t-will-gillis,2024-11-26T01:09:46Z,- t-will-gillis unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2498861238) at 2024-11-25 05:09 PM PST -t-will-gillis,2024-11-26T01:12:16Z,- t-will-gillis assigned to issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499349652) at 2024-11-25 05:12 PM PST -t-will-gillis,2024-11-26T01:19:01Z,- t-will-gillis unassigned from issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2499352645) at 2024-11-25 05:19 PM PST -t-will-gillis,2024-11-26T03:40:33Z,- t-will-gillis opened issue: [7769](https://github.com/hackforla/website/issues/7769) at 2024-11-25 07:40 PM PST -t-will-gillis,2024-11-26T03:40:34Z,- t-will-gillis assigned to issue: [7769](https://github.com/hackforla/website/issues/7769) at 2024-11-25 07:40 PM PST -t-will-gillis,2024-11-26T03:54:23Z,- t-will-gillis opened issue: [7770](https://github.com/hackforla/website/issues/7770) at 2024-11-25 07:54 PM PST -t-will-gillis,2024-11-26T03:54:24Z,- t-will-gillis assigned to issue: [7770](https://github.com/hackforla/website/issues/7770) at 2024-11-25 07:54 PM PST -t-will-gillis,2024-11-26T04:23:35Z,- t-will-gillis opened issue: [7771](https://github.com/hackforla/website/issues/7771) at 2024-11-25 08:23 PM PST -t-will-gillis,2024-11-26T04:23:36Z,- t-will-gillis assigned to issue: [7771](https://github.com/hackforla/website/issues/7771) at 2024-11-25 08:23 PM PST -t-will-gillis,2024-11-27T21:57:48Z,- t-will-gillis opened issue: [7775](https://github.com/hackforla/website/issues/7775) at 2024-11-27 01:57 PM PST -t-will-gillis,2024-11-27T22:03:41Z,- t-will-gillis closed issue by PR 7747: [7702](https://github.com/hackforla/website/issues/7702#event-15458007035) at 2024-11-27 02:03 PM PST -t-will-gillis,2024-11-27T22:08:04Z,- t-will-gillis closed issue by PR 7748: [7603](https://github.com/hackforla/website/issues/7603#event-15458032793) at 2024-11-27 02:08 PM PST -t-will-gillis,2024-11-27T22:15:39Z,- t-will-gillis closed issue by PR 7773: [7730](https://github.com/hackforla/website/issues/7730#event-15458078970) at 2024-11-27 02:15 PM PST -t-will-gillis,2024-11-27T23:10:22Z,- t-will-gillis submitted pull request review: [7729](https://github.com/hackforla/website/pull/7729#pullrequestreview-2466071577) at 2024-11-27 03:10 PM PST -t-will-gillis,2024-11-27T23:10:29Z,- t-will-gillis closed issue by PR 7729: [7530](https://github.com/hackforla/website/issues/7530#event-15458481986) at 2024-11-27 03:10 PM PST -t-will-gillis,2024-11-27T23:43:15Z,- t-will-gillis commented on issue: [7531](https://github.com/hackforla/website/issues/7531#issuecomment-2504986791) at 2024-11-27 03:43 PM PST -t-will-gillis,2024-11-28T18:49:30Z,- t-will-gillis opened pull request: [7777](https://github.com/hackforla/website/pull/7777) at 2024-11-28 10:49 AM PST -t-will-gillis,2024-11-28T19:04:23Z,- t-will-gillis commented on issue: [7687](https://github.com/hackforla/website/issues/7687#issuecomment-2506660294) at 2024-11-28 11:04 AM PST -t-will-gillis,2024-11-28T19:04:23Z,- t-will-gillis closed issue as not planned: [7687](https://github.com/hackforla/website/issues/7687#event-15468738587) at 2024-11-28 11:04 AM PST -t-will-gillis,2024-11-28T19:30:57Z,- t-will-gillis submitted pull request review: [7776](https://github.com/hackforla/website/pull/7776#pullrequestreview-2468750084) at 2024-11-28 11:30 AM PST -t-will-gillis,2024-11-30T16:56:23Z,- t-will-gillis submitted pull request review: [7776](https://github.com/hackforla/website/pull/7776#pullrequestreview-2470964924) at 2024-11-30 08:56 AM PST -t-will-gillis,2024-12-01T02:33:55Z,- t-will-gillis commented on pull request: [7776](https://github.com/hackforla/website/pull/7776#issuecomment-2509533351) at 2024-11-30 06:33 PM PST -t-will-gillis,2024-12-01T02:34:09Z,- t-will-gillis closed issue by PR 7776: [7378](https://github.com/hackforla/website/issues/7378#event-15483050741) at 2024-11-30 06:34 PM PST -t-will-gillis,2024-12-03T17:47:54Z,- t-will-gillis commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2515220175) at 2024-12-03 09:47 AM PST -t-will-gillis,2024-12-03T17:49:06Z,- t-will-gillis commented on issue: [7779](https://github.com/hackforla/website/issues/7779#issuecomment-2515222449) at 2024-12-03 09:49 AM PST -t-will-gillis,2024-12-03T17:49:29Z,- t-will-gillis commented on issue: [7780](https://github.com/hackforla/website/issues/7780#issuecomment-2515223180) at 2024-12-03 09:49 AM PST -t-will-gillis,2024-12-03T17:51:45Z,- t-will-gillis commented on issue: [7779](https://github.com/hackforla/website/issues/7779#issuecomment-2515227395) at 2024-12-03 09:51 AM PST -t-will-gillis,2024-12-03T17:51:45Z,- t-will-gillis closed issue as not planned: [7779](https://github.com/hackforla/website/issues/7779#event-15514002742) at 2024-12-03 09:51 AM PST -t-will-gillis,2024-12-03T18:28:42Z,- t-will-gillis commented on issue: [7778](https://github.com/hackforla/website/issues/7778#issuecomment-2515298294) at 2024-12-03 10:28 AM PST -t-will-gillis,2024-12-03T18:28:42Z,- t-will-gillis closed issue as completed: [7778](https://github.com/hackforla/website/issues/7778#event-15514457762) at 2024-12-03 10:28 AM PST -t-will-gillis,2024-12-03T19:33:53Z,- t-will-gillis commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2515419820) at 2024-12-03 11:33 AM PST -t-will-gillis,2024-12-09T02:39:48Z,- t-will-gillis commented on issue: [7394](https://github.com/hackforla/website/issues/7394#issuecomment-2526683870) at 2024-12-08 06:39 PM PST -t-will-gillis,2024-12-09T02:39:48Z,- t-will-gillis closed issue as not planned: [7394](https://github.com/hackforla/website/issues/7394#event-15576110952) at 2024-12-08 06:39 PM PST -t-will-gillis,2024-12-09T02:51:09Z,- t-will-gillis commented on issue: [7396](https://github.com/hackforla/website/issues/7396#issuecomment-2526694929) at 2024-12-08 06:51 PM PST -t-will-gillis,2024-12-09T02:51:09Z,- t-will-gillis closed issue as completed: [7396](https://github.com/hackforla/website/issues/7396#event-15576176983) at 2024-12-08 06:51 PM PST -t-will-gillis,2024-12-09T03:18:13Z,- t-will-gillis commented on issue: [7587](https://github.com/hackforla/website/issues/7587#issuecomment-2526732963) at 2024-12-08 07:18 PM PST -t-will-gillis,2024-12-09T03:18:13Z,- t-will-gillis closed issue as completed: [7587](https://github.com/hackforla/website/issues/7587#event-15576398088) at 2024-12-08 07:18 PM PST -t-will-gillis,2024-12-09T03:38:50Z,- t-will-gillis commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2526786123) at 2024-12-08 07:38 PM PST -t-will-gillis,2024-12-09T03:44:51Z,- t-will-gillis commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2526796494) at 2024-12-08 07:44 PM PST -t-will-gillis,2024-12-09T03:55:26Z,- t-will-gillis commented on issue: [7608](https://github.com/hackforla/website/issues/7608#issuecomment-2526806547) at 2024-12-08 07:55 PM PST -t-will-gillis,2024-12-09T03:55:27Z,- t-will-gillis closed issue as not planned: [7608](https://github.com/hackforla/website/issues/7608#event-15576772145) at 2024-12-08 07:55 PM PST -t-will-gillis,2024-12-09T04:03:26Z,- t-will-gillis commented on issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2526821369) at 2024-12-08 08:03 PM PST -t-will-gillis,2024-12-09T04:03:26Z,- t-will-gillis reopened issue: [7217](https://github.com/hackforla/website/issues/7217#issuecomment-2526821369) at 2024-12-08 08:03 PM PST -t-will-gillis,2024-12-09T04:05:27Z,- t-will-gillis commented on issue: [7796](https://github.com/hackforla/website/issues/7796#issuecomment-2526831527) at 2024-12-08 08:05 PM PST -t-will-gillis,2024-12-09T04:05:27Z,- t-will-gillis closed issue as completed: [7796](https://github.com/hackforla/website/issues/7796#event-15576841690) at 2024-12-08 08:05 PM PST -t-will-gillis,2024-12-09T06:04:05Z,- t-will-gillis commented on issue: [7161](https://github.com/hackforla/website/issues/7161#issuecomment-2527009390) at 2024-12-08 10:04 PM PST -t-will-gillis,2024-12-09T06:04:06Z,- t-will-gillis closed issue as completed: [7161](https://github.com/hackforla/website/issues/7161#event-15577756819) at 2024-12-08 10:04 PM PST -t-will-gillis,2024-12-09T06:07:05Z,- t-will-gillis commented on issue: [7163](https://github.com/hackforla/website/issues/7163#issuecomment-2527020777) at 2024-12-08 10:07 PM PST -t-will-gillis,2024-12-09T06:07:05Z,- t-will-gillis closed issue as completed: [7163](https://github.com/hackforla/website/issues/7163#event-15577784068) at 2024-12-08 10:07 PM PST -t-will-gillis,2024-12-26T18:22:47Z,- t-will-gillis commented on issue: [7813](https://github.com/hackforla/website/issues/7813#issuecomment-2563006751) at 2024-12-26 10:22 AM PST -t-will-gillis,2024-12-26T18:22:47Z,- t-will-gillis closed issue as completed: [7813](https://github.com/hackforla/website/issues/7813#event-15767302093) at 2024-12-26 10:22 AM PST -t-will-gillis,2025-01-01T19:24:00Z,- t-will-gillis commented on issue: [7790](https://github.com/hackforla/website/issues/7790#issuecomment-2567119144) at 2025-01-01 11:24 AM PST -t-will-gillis,2025-01-01T19:25:48Z,- t-will-gillis commented on issue: [7814](https://github.com/hackforla/website/issues/7814#issuecomment-2567119576) at 2025-01-01 11:25 AM PST -t-will-gillis,2025-01-01T19:25:48Z,- t-will-gillis closed issue as completed: [7814](https://github.com/hackforla/website/issues/7814#event-15794439163) at 2025-01-01 11:25 AM PST -t-will-gillis,2025-01-06T23:06:23Z,- t-will-gillis opened pull request: [7817](https://github.com/hackforla/website/pull/7817) at 2025-01-06 03:06 PM PST -t-will-gillis,2025-01-06T23:54:11Z,- t-will-gillis opened pull request: [7818](https://github.com/hackforla/website/pull/7818) at 2025-01-06 03:54 PM PST -t-will-gillis,2025-01-06T23:57:38Z,- t-will-gillis commented on issue: [6968](https://github.com/hackforla/website/issues/6968#issuecomment-2574135362) at 2025-01-06 03:57 PM PST -t-will-gillis,2025-01-09T03:00:44Z,- t-will-gillis commented on pull request: [7818](https://github.com/hackforla/website/pull/7818#issuecomment-2579084669) at 2025-01-08 07:00 PM PST -t-will-gillis,2025-01-09T03:00:53Z,- t-will-gillis pull request merged: [7818](https://github.com/hackforla/website/pull/7818#event-15862190624) at 2025-01-08 07:00 PM PST -t-will-gillis,2025-01-09T03:00:54Z,- t-will-gillis closed issue by PR 7818: [7770](https://github.com/hackforla/website/issues/7770#event-15862190691) at 2025-01-08 07:00 PM PST -t-will-gillis,2025-01-09T03:27:14Z,- t-will-gillis opened issue: [7820](https://github.com/hackforla/website/issues/7820) at 2025-01-08 07:27 PM PST -t-will-gillis,2025-01-09T03:36:26Z,- t-will-gillis opened pull request: [7821](https://github.com/hackforla/website/pull/7821) at 2025-01-08 07:36 PM PST -t-will-gillis,2025-01-09T03:39:34Z,- t-will-gillis pull request merged: [7821](https://github.com/hackforla/website/pull/7821#event-15862387586) at 2025-01-08 07:39 PM PST -t-will-gillis,2025-01-09T03:39:35Z,- t-will-gillis closed issue by PR 7821: [7820](https://github.com/hackforla/website/issues/7820#event-15862387673) at 2025-01-08 07:39 PM PST -t-will-gillis,2025-01-09T03:45:15Z,- t-will-gillis commented on issue: [7819](https://github.com/hackforla/website/issues/7819#issuecomment-2579124525) at 2025-01-08 07:45 PM PST -t-will-gillis,2025-01-09T03:45:30Z,- t-will-gillis closed issue as completed: [7819](https://github.com/hackforla/website/issues/7819#event-15862417598) at 2025-01-08 07:45 PM PST -t-will-gillis,2025-01-11T18:58:11Z,- t-will-gillis opened issue: [7823](https://github.com/hackforla/website/issues/7823) at 2025-01-11 10:58 AM PST -t-will-gillis,2025-01-11T20:35:56Z,- t-will-gillis opened issue: [7824](https://github.com/hackforla/website/issues/7824) at 2025-01-11 12:35 PM PST -t-will-gillis,2025-01-12T17:51:09Z,- t-will-gillis closed issue by PR 7816: [7641](https://github.com/hackforla/website/issues/7641#event-15896474464) at 2025-01-12 09:51 AM PST -t-will-gillis,2025-01-12T18:44:27Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2585867292) at 2025-01-12 10:44 AM PST -t-will-gillis,2025-01-13T18:28:09Z,- t-will-gillis commented on pull request: [7816](https://github.com/hackforla/website/pull/7816#issuecomment-2587896689) at 2025-01-13 10:28 AM PST -t-will-gillis,2025-01-13T18:46:19Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2587930848) at 2025-01-13 10:46 AM PST -t-will-gillis,2025-01-14T04:26:32Z,- t-will-gillis commented on issue: [7826](https://github.com/hackforla/website/issues/7826#issuecomment-2588920102) at 2025-01-13 08:26 PM PST -t-will-gillis,2025-01-14T04:26:32Z,- t-will-gillis closed issue as completed: [7826](https://github.com/hackforla/website/issues/7826#event-15917611010) at 2025-01-13 08:26 PM PST -t-will-gillis,2025-01-16T21:57:14Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2596988864) at 2025-01-16 01:57 PM PST -t-will-gillis,2025-01-16T22:05:49Z,- t-will-gillis commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2597005932) at 2025-01-16 02:05 PM PST -t-will-gillis,2025-01-16T22:35:27Z,- t-will-gillis commented on issue: [7168](https://github.com/hackforla/website/issues/7168#issuecomment-2597045729) at 2025-01-16 02:35 PM PST -t-will-gillis,2025-01-16T22:35:27Z,- t-will-gillis closed issue as completed: [7168](https://github.com/hackforla/website/issues/7168#event-15968543740) at 2025-01-16 02:35 PM PST -t-will-gillis,2025-01-20T22:32:52Z,- t-will-gillis commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2603312271) at 2025-01-20 02:32 PM PST -t-will-gillis,2025-01-23T04:56:22Z,- t-will-gillis opened issue: [7847](https://github.com/hackforla/website/issues/7847) at 2025-01-22 08:56 PM PST -t-will-gillis,2025-01-26T18:20:53Z,- t-will-gillis commented on issue: [6453](https://github.com/hackforla/website/issues/6453#issuecomment-2614536919) at 2025-01-26 10:20 AM PST -t-will-gillis,2025-01-26T18:20:53Z,- t-will-gillis closed issue as completed: [6453](https://github.com/hackforla/website/issues/6453#event-16070752299) at 2025-01-26 10:20 AM PST -t-will-gillis,2025-01-26T18:51:56Z,- t-will-gillis closed issue by PR 7846: [7583](https://github.com/hackforla/website/issues/7583#event-16070813716) at 2025-01-26 10:51 AM PST -t-will-gillis,2025-01-26T22:51:23Z,- t-will-gillis commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2614622577) at 2025-01-26 02:51 PM PST -t-will-gillis,2025-01-28T04:40:59Z,- t-will-gillis commented on pull request: [7817](https://github.com/hackforla/website/pull/7817#issuecomment-2617831737) at 2025-01-27 08:40 PM PST -t-will-gillis,2025-01-31T18:46:57Z,- t-will-gillis commented on pull request: [7777](https://github.com/hackforla/website/pull/7777#issuecomment-2628068777) at 2025-01-31 10:46 AM PST -t-will-gillis,2025-01-31T19:48:03Z,- t-will-gillis commented on issue: [7617](https://github.com/hackforla/website/issues/7617#issuecomment-2628248361) at 2025-01-31 11:48 AM PST -t-will-gillis,2025-02-01T00:50:44Z,- t-will-gillis pull request merged: [7817](https://github.com/hackforla/website/pull/7817#event-16147390068) at 2025-01-31 04:50 PM PST -t-will-gillis,2025-02-01T00:50:45Z,- t-will-gillis closed issue by PR 7817: [7771](https://github.com/hackforla/website/issues/7771#event-16147390136) at 2025-01-31 04:50 PM PST -t-will-gillis,2025-02-01T01:02:00Z,- t-will-gillis commented on issue: [7321](https://github.com/hackforla/website/issues/7321#issuecomment-2628646137) at 2025-01-31 05:02 PM PST -t-will-gillis,2025-02-01T18:02:37Z,- t-will-gillis opened issue: [7870](https://github.com/hackforla/website/issues/7870) at 2025-02-01 10:02 AM PST -t-will-gillis,2025-02-01T18:02:37Z,- t-will-gillis assigned to issue: [7870](https://github.com/hackforla/website/issues/7870) at 2025-02-01 10:02 AM PST -t-will-gillis,2025-02-01T19:09:26Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2629074618) at 2025-02-01 11:09 AM PST -t-will-gillis,2025-02-01T19:20:47Z,- t-will-gillis opened pull request: [7871](https://github.com/hackforla/website/pull/7871) at 2025-02-01 11:20 AM PST -t-will-gillis,2025-02-01T19:27:59Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2629080829) at 2025-02-01 11:27 AM PST -t-will-gillis,2025-02-02T22:29:55Z,- t-will-gillis closed issue by PR 7851: [7645](https://github.com/hackforla/website/issues/7645#event-16153903272) at 2025-02-02 02:29 PM PST -t-will-gillis,2025-02-02T22:35:43Z,- t-will-gillis closed issue by PR 7852: [7356](https://github.com/hackforla/website/issues/7356#event-16153919421) at 2025-02-02 02:35 PM PST -t-will-gillis,2025-02-02T22:37:56Z,- t-will-gillis closed issue by PR 7861: [7732](https://github.com/hackforla/website/issues/7732#event-16153924076) at 2025-02-02 02:37 PM PST -t-will-gillis,2025-02-02T23:06:49Z,- t-will-gillis submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2588671298) at 2025-02-02 03:06 PM PST -t-will-gillis,2025-02-02T23:09:15Z,- t-will-gillis commented on pull request: [7845](https://github.com/hackforla/website/pull/7845#issuecomment-2629605074) at 2025-02-02 03:09 PM PST -t-will-gillis,2025-02-02T23:15:16Z,- t-will-gillis commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2629607320) at 2025-02-02 03:15 PM PST -t-will-gillis,2025-02-03T01:49:59Z,- t-will-gillis closed issue by PR 7845: [7754](https://github.com/hackforla/website/issues/7754#event-16154739518) at 2025-02-02 05:49 PM PST -t-will-gillis,2025-02-03T22:49:54Z,- t-will-gillis commented on issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2632356934) at 2025-02-03 02:49 PM PST -t-will-gillis,2025-02-03T22:50:04Z,- t-will-gillis commented on issue: [7561](https://github.com/hackforla/website/issues/7561#issuecomment-2632357199) at 2025-02-03 02:50 PM PST -t-will-gillis,2025-02-03T22:50:04Z,- t-will-gillis closed issue as completed: [7561](https://github.com/hackforla/website/issues/7561#event-16169800062) at 2025-02-03 02:50 PM PST -t-will-gillis,2025-02-04T03:33:39Z,- t-will-gillis closed issue as not planned: [7847](https://github.com/hackforla/website/issues/7847#event-16171782775) at 2025-02-03 07:33 PM PST -t-will-gillis,2025-02-04T04:13:33Z,- t-will-gillis opened issue: [7881](https://github.com/hackforla/website/issues/7881) at 2025-02-03 08:13 PM PST -t-will-gillis,2025-02-04T04:40:22Z,- t-will-gillis opened issue: [7882](https://github.com/hackforla/website/issues/7882) at 2025-02-03 08:40 PM PST -t-will-gillis,2025-02-04T04:41:03Z,- t-will-gillis assigned to issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2632838403) at 2025-02-03 08:41 PM PST -t-will-gillis,2025-02-04T05:04:05Z,- t-will-gillis opened issue: [7883](https://github.com/hackforla/website/issues/7883) at 2025-02-03 09:04 PM PST -t-will-gillis,2025-02-04T05:09:31Z,- t-will-gillis assigned to issue: [7881](https://github.com/hackforla/website/issues/7881) at 2025-02-03 09:09 PM PST -t-will-gillis,2025-02-04T05:12:08Z,- t-will-gillis commented on issue: [7881](https://github.com/hackforla/website/issues/7881#issuecomment-2632896506) at 2025-02-03 09:12 PM PST -t-will-gillis,2025-02-04T05:12:30Z,- t-will-gillis commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2632896851) at 2025-02-03 09:12 PM PST -t-will-gillis,2025-02-04T05:14:30Z,- t-will-gillis commented on issue: [6994](https://github.com/hackforla/website/issues/6994#issuecomment-2632898841) at 2025-02-03 09:14 PM PST -t-will-gillis,2025-02-04T05:14:30Z,- t-will-gillis closed issue as completed: [6994](https://github.com/hackforla/website/issues/6994#event-16172470874) at 2025-02-03 09:14 PM PST -t-will-gillis,2025-02-04T05:16:37Z,- t-will-gillis commented on issue: [7883](https://github.com/hackforla/website/issues/7883#issuecomment-2632901034) at 2025-02-03 09:16 PM PST -t-will-gillis,2025-02-04T05:16:37Z,- t-will-gillis closed issue as duplicate: [7883](https://github.com/hackforla/website/issues/7883#event-16172484396) at 2025-02-03 09:16 PM PST -t-will-gillis,2025-02-05T17:32:21Z,- t-will-gillis pull request merged: [7871](https://github.com/hackforla/website/pull/7871#event-16198367807) at 2025-02-05 09:32 AM PST -t-will-gillis,2025-02-05T17:32:22Z,- t-will-gillis closed issue by PR 7871: [7870](https://github.com/hackforla/website/issues/7870#event-16198368040) at 2025-02-05 09:32 AM PST -t-will-gillis,2025-02-05T19:20:02Z,- t-will-gillis pull request merged: [7777](https://github.com/hackforla/website/pull/7777#event-16199689885) at 2025-02-05 11:20 AM PST -t-will-gillis,2025-02-05T19:20:03Z,- t-will-gillis closed issue by PR 7777: [7531](https://github.com/hackforla/website/issues/7531#event-16199690125) at 2025-02-05 11:20 AM PST -t-will-gillis,2025-02-07T19:37:45Z,- t-will-gillis commented on issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2643890568) at 2025-02-07 11:37 AM PST -t-will-gillis,2025-02-07T19:37:46Z,- t-will-gillis reopened issue: [6038](https://github.com/hackforla/website/issues/6038#issuecomment-2643890568) at 2025-02-07 11:37 AM PST -t-will-gillis,2025-02-09T21:03:29Z,- t-will-gillis commented on issue: [7878](https://github.com/hackforla/website/issues/7878#issuecomment-2646599662) at 2025-02-09 01:03 PM PST -t-will-gillis,2025-02-09T21:04:00Z,- t-will-gillis commented on issue: [7844](https://github.com/hackforla/website/issues/7844#issuecomment-2646600223) at 2025-02-09 01:04 PM PST -t-will-gillis,2025-02-09T21:04:15Z,- t-will-gillis commented on issue: [7652](https://github.com/hackforla/website/issues/7652#issuecomment-2646600307) at 2025-02-09 01:04 PM PST -t-will-gillis,2025-02-09T21:06:08Z,- t-will-gillis closed issue by PR 7880: [7479](https://github.com/hackforla/website/issues/7479#event-16239359428) at 2025-02-09 01:06 PM PST -t-will-gillis,2025-02-09T21:10:50Z,- t-will-gillis closed issue by PR 7900: [7855](https://github.com/hackforla/website/issues/7855#event-16239369100) at 2025-02-09 01:10 PM PST -t-will-gillis,2025-02-09T21:18:55Z,- t-will-gillis commented on pull request: [7862](https://github.com/hackforla/website/pull/7862#issuecomment-2646605562) at 2025-02-09 01:18 PM PST -t-will-gillis,2025-02-09T22:16:02Z,- t-will-gillis commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2646624748) at 2025-02-09 02:16 PM PST -t-will-gillis,2025-02-10T17:13:09Z,- t-will-gillis closed issue by PR 7898: [7652](https://github.com/hackforla/website/issues/7652#event-16251638709) at 2025-02-10 09:13 AM PST -t-will-gillis,2025-02-10T17:17:21Z,- t-will-gillis commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2648724294) at 2025-02-10 09:17 AM PST -t-will-gillis,2025-02-10T17:17:21Z,- t-will-gillis closed issue as completed: [7305](https://github.com/hackforla/website/issues/7305#event-16251702965) at 2025-02-10 09:17 AM PST -t-will-gillis,2025-02-13T03:08:37Z,- t-will-gillis commented on pull request: [7660](https://github.com/hackforla/website/pull/7660#issuecomment-2655353360) at 2025-02-12 07:08 PM PST -t-will-gillis,2025-02-13T22:50:42Z,- t-will-gillis commented on issue: [7397](https://github.com/hackforla/website/issues/7397#issuecomment-2657873313) at 2025-02-13 02:50 PM PST -t-will-gillis,2025-02-13T22:50:42Z,- t-will-gillis closed issue as completed: [7397](https://github.com/hackforla/website/issues/7397#event-16303671525) at 2025-02-13 02:50 PM PST -t-will-gillis,2025-02-13T22:57:40Z,- t-will-gillis commented on issue: [7395](https://github.com/hackforla/website/issues/7395#issuecomment-2657882251) at 2025-02-13 02:57 PM PST -t-will-gillis,2025-02-13T22:57:40Z,- t-will-gillis closed issue as completed: [7395](https://github.com/hackforla/website/issues/7395#event-16303724279) at 2025-02-13 02:57 PM PST -t-will-gillis,2025-02-16T19:30:59Z,- t-will-gillis submitted pull request review: [7862](https://github.com/hackforla/website/pull/7862#pullrequestreview-2619700188) at 2025-02-16 11:30 AM PST -t-will-gillis,2025-02-17T00:52:24Z,- t-will-gillis closed issue by PR 7862: [7753](https://github.com/hackforla/website/issues/7753#event-16325890578) at 2025-02-16 04:52 PM PST -t-will-gillis,2025-02-17T02:56:28Z,- t-will-gillis commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2661845749) at 2025-02-16 06:56 PM PST -t-will-gillis,2025-02-17T03:20:47Z,- t-will-gillis commented on pull request: [7903](https://github.com/hackforla/website/pull/7903#issuecomment-2661877061) at 2025-02-16 07:20 PM PST -t-will-gillis,2025-02-17T17:46:27Z,- t-will-gillis submitted pull request review: [7913](https://github.com/hackforla/website/pull/7913#pullrequestreview-2621694760) at 2025-02-17 09:46 AM PST -t-will-gillis,2025-02-17T17:58:21Z,- t-will-gillis commented on issue: [7882](https://github.com/hackforla/website/issues/7882#issuecomment-2663799779) at 2025-02-17 09:58 AM PST -t-will-gillis,2025-02-17T17:58:21Z,- t-will-gillis closed issue as duplicate: [7882](https://github.com/hackforla/website/issues/7882#event-16337423639) at 2025-02-17 09:58 AM PST -t-will-gillis,2025-02-17T18:47:53Z,- t-will-gillis submitted pull request review: [7914](https://github.com/hackforla/website/pull/7914#pullrequestreview-2621792209) at 2025-02-17 10:47 AM PST -t-will-gillis,2025-02-17T19:06:15Z,- t-will-gillis submitted pull request review: [7915](https://github.com/hackforla/website/pull/7915#pullrequestreview-2621814029) at 2025-02-17 11:06 AM PST -t-will-gillis,2025-02-17T21:15:34Z,- t-will-gillis commented on issue: [6034](https://github.com/hackforla/website/issues/6034#issuecomment-2664086823) at 2025-02-17 01:15 PM PST -t-will-gillis,2025-02-17T21:15:35Z,- t-will-gillis closed issue as completed: [6034](https://github.com/hackforla/website/issues/6034#event-16338993388) at 2025-02-17 01:15 PM PST -t-will-gillis,2025-02-19T23:14:32Z,- t-will-gillis opened issue: [7929](https://github.com/hackforla/website/issues/7929) at 2025-02-19 03:14 PM PST -t-will-gillis,2025-02-21T18:08:44Z,- t-will-gillis commented on pull request: [7916](https://github.com/hackforla/website/pull/7916#issuecomment-2675225681) at 2025-02-21 10:08 AM PST -t-will-gillis,2025-02-21T18:09:33Z,- t-will-gillis commented on pull request: [7917](https://github.com/hackforla/website/pull/7917#issuecomment-2675227271) at 2025-02-21 10:09 AM PST -t-will-gillis,2025-02-21T18:10:12Z,- t-will-gillis commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2675228316) at 2025-02-21 10:10 AM PST -t-will-gillis,2025-02-21T18:11:07Z,- t-will-gillis commented on pull request: [7920](https://github.com/hackforla/website/pull/7920#issuecomment-2675229744) at 2025-02-21 10:11 AM PST -t-will-gillis,2025-02-21T21:37:13Z,- t-will-gillis opened pull request: [7933](https://github.com/hackforla/website/pull/7933) at 2025-02-21 01:37 PM PST -t-will-gillis,2025-02-22T19:26:41Z,- t-will-gillis commented on issue: [6552](https://github.com/hackforla/website/issues/6552#issuecomment-2676362080) at 2025-02-22 11:26 AM PST -t-will-gillis,2025-02-22T19:26:41Z,- t-will-gillis closed issue as completed: [6552](https://github.com/hackforla/website/issues/6552#event-16415259732) at 2025-02-22 11:26 AM PST -t-will-gillis,2025-02-22T19:34:21Z,- t-will-gillis commented on issue: [7762](https://github.com/hackforla/website/issues/7762#issuecomment-2676364780) at 2025-02-22 11:34 AM PST -t-will-gillis,2025-02-23T01:15:37Z,- t-will-gillis assigned to issue: [7535](https://github.com/hackforla/website/issues/7535#issuecomment-2381010597) at 2025-02-22 05:15 PM PST -t-will-gillis,2025-02-23T19:30:42Z,- t-will-gillis commented on pull request: [7935](https://github.com/hackforla/website/pull/7935#issuecomment-2677074600) at 2025-02-23 11:30 AM PST -t-will-gillis,2025-02-23T19:40:15Z,- t-will-gillis commented on pull request: [7931](https://github.com/hackforla/website/pull/7931#issuecomment-2677078036) at 2025-02-23 11:40 AM PST -t-will-gillis,2025-02-23T19:52:29Z,- t-will-gillis submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2635731166) at 2025-02-23 11:52 AM PST -t-will-gillis,2025-02-23T19:56:08Z,- t-will-gillis commented on pull request: [7910](https://github.com/hackforla/website/pull/7910#issuecomment-2677084084) at 2025-02-23 11:56 AM PST -t-will-gillis,2025-02-23T19:56:26Z,- t-will-gillis closed issue by PR 7910: [7438](https://github.com/hackforla/website/issues/7438#event-16422324054) at 2025-02-23 11:56 AM PST -t-will-gillis,2025-02-24T17:55:28Z,- t-will-gillis opened issue: [7938](https://github.com/hackforla/website/issues/7938) at 2025-02-24 09:55 AM PST -t-will-gillis,2025-02-24T18:01:15Z,- t-will-gillis opened issue: [7939](https://github.com/hackforla/website/issues/7939) at 2025-02-24 10:01 AM PST -t-will-gillis,2025-02-24T18:21:41Z,- t-will-gillis commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2679300054) at 2025-02-24 10:21 AM PST -t-will-gillis,2025-02-25T02:58:10Z,- t-will-gillis commented on issue: [5579](https://github.com/hackforla/website/issues/5579#issuecomment-2680280900) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:58:11Z,- t-will-gillis closed issue as completed: [5579](https://github.com/hackforla/website/issues/5579#event-16443815925) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:58:26Z,- t-will-gillis reopened issue: [5579](https://github.com/hackforla/website/issues/5579#event-16443815925) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:58:31Z,- t-will-gillis closed issue as not planned: [5579](https://github.com/hackforla/website/issues/5579#event-16443817973) at 2025-02-24 06:58 PM PST -t-will-gillis,2025-02-25T02:59:10Z,- t-will-gillis commented on issue: [5578](https://github.com/hackforla/website/issues/5578#issuecomment-2680281971) at 2025-02-24 06:59 PM PST -t-will-gillis,2025-02-25T02:59:10Z,- t-will-gillis closed issue as not planned: [5578](https://github.com/hackforla/website/issues/5578#event-16443822740) at 2025-02-24 06:59 PM PST -t-will-gillis,2025-02-25T03:10:39Z,- t-will-gillis opened issue: [7940](https://github.com/hackforla/website/issues/7940) at 2025-02-24 07:10 PM PST -t-will-gillis,2025-02-25T03:12:36Z,- t-will-gillis opened issue: [7941](https://github.com/hackforla/website/issues/7941) at 2025-02-24 07:12 PM PST -t-will-gillis,2025-02-25T03:15:10Z,- t-will-gillis opened issue: [7942](https://github.com/hackforla/website/issues/7942) at 2025-02-24 07:15 PM PST -t-will-gillis,2025-02-25T03:18:28Z,- t-will-gillis pull request merged: [7933](https://github.com/hackforla/website/pull/7933#event-16445365737) at 2025-02-24 07:18 PM PST -t-will-gillis,2025-02-25T03:18:29Z,- t-will-gillis closed issue by PR 7933: [7881](https://github.com/hackforla/website/issues/7881#event-16445366017) at 2025-02-24 07:18 PM PST -t-will-gillis,2025-02-25T23:54:39Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2683551164) at 2025-02-25 03:54 PM PST -t-will-gillis,2025-02-26T01:01:04Z,- t-will-gillis submitted pull request review: [7932](https://github.com/hackforla/website/pull/7932#pullrequestreview-2642784592) at 2025-02-25 05:01 PM PST -t-will-gillis,2025-02-26T01:01:28Z,- t-will-gillis closed issue by PR 7932: [7843](https://github.com/hackforla/website/issues/7843#event-16470950881) at 2025-02-25 05:01 PM PST -t-will-gillis,2025-02-26T01:03:14Z,- t-will-gillis closed issue by PR 7931: [7775](https://github.com/hackforla/website/issues/7775#event-16470962878) at 2025-02-25 05:03 PM PST -t-will-gillis,2025-03-01T22:35:05Z,- t-will-gillis commented on issue: [7959](https://github.com/hackforla/website/issues/7959#issuecomment-2692451132) at 2025-03-01 02:35 PM PST -t-will-gillis,2025-03-01T22:35:05Z,- t-will-gillis closed issue as completed: [7959](https://github.com/hackforla/website/issues/7959#event-16523512512) at 2025-03-01 02:35 PM PST -t-will-gillis,2025-03-01T22:39:08Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2692452392) at 2025-03-01 02:39 PM PST -t-will-gillis,2025-03-02T02:35:38Z,- t-will-gillis commented on issue: [6953](https://github.com/hackforla/website/issues/6953#issuecomment-2692523161) at 2025-03-01 06:35 PM PST -t-will-gillis,2025-03-02T02:35:39Z,- t-will-gillis closed issue as completed: [6953](https://github.com/hackforla/website/issues/6953#event-16523917313) at 2025-03-01 06:35 PM PST -t-will-gillis,2025-03-02T02:53:44Z,- t-will-gillis commented on issue: [7709](https://github.com/hackforla/website/issues/7709#issuecomment-2692527595) at 2025-03-01 06:53 PM PST -t-will-gillis,2025-03-02T03:48:01Z,- t-will-gillis commented on issue: [7439](https://github.com/hackforla/website/issues/7439#issuecomment-2692541785) at 2025-03-01 07:48 PM PST -t-will-gillis,2025-03-02T03:50:03Z,- t-will-gillis commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2692542233) at 2025-03-01 07:50 PM PST -t-will-gillis,2025-03-02T03:53:33Z,- t-will-gillis commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2692542905) at 2025-03-01 07:53 PM PST -t-will-gillis,2025-03-02T04:09:44Z,- t-will-gillis commented on issue: [7387](https://github.com/hackforla/website/issues/7387#issuecomment-2692547232) at 2025-03-01 08:09 PM PST -t-will-gillis,2025-03-02T04:09:45Z,- t-will-gillis closed issue as completed: [7387](https://github.com/hackforla/website/issues/7387#event-16524048181) at 2025-03-01 08:09 PM PST -t-will-gillis,2025-03-02T04:25:17Z,- t-will-gillis submitted pull request review: [7917](https://github.com/hackforla/website/pull/7917#pullrequestreview-2652627955) at 2025-03-01 08:25 PM PST -t-will-gillis,2025-03-02T04:27:16Z,- t-will-gillis commented on pull request: [7918](https://github.com/hackforla/website/pull/7918#issuecomment-2692551360) at 2025-03-01 08:27 PM PST -t-will-gillis,2025-03-02T04:32:19Z,- t-will-gillis submitted pull request review: [7918](https://github.com/hackforla/website/pull/7918#pullrequestreview-2652628521) at 2025-03-01 08:32 PM PST -t-will-gillis,2025-03-02T04:44:39Z,- t-will-gillis submitted pull request review: [7916](https://github.com/hackforla/website/pull/7916#pullrequestreview-2652629783) at 2025-03-01 08:44 PM PST -t-will-gillis,2025-03-02T04:56:33Z,- t-will-gillis submitted pull request review: [7961](https://github.com/hackforla/website/pull/7961#pullrequestreview-2652630944) at 2025-03-01 08:56 PM PST -t-will-gillis,2025-03-02T04:59:14Z,- t-will-gillis closed issue by PR 7951: [7440](https://github.com/hackforla/website/issues/7440#event-16524113090) at 2025-03-01 08:59 PM PST -t-will-gillis,2025-03-03T04:17:35Z,- t-will-gillis commented on pull request: [7873](https://github.com/hackforla/website/pull/7873#issuecomment-2693238668) at 2025-03-02 08:17 PM PST -t-will-gillis,2025-03-05T00:06:55Z,- t-will-gillis commented on issue: [7727](https://github.com/hackforla/website/issues/7727#issuecomment-2699313862) at 2025-03-04 04:06 PM PST -t-will-gillis,2025-03-05T00:06:55Z,- t-will-gillis closed issue as completed: [7727](https://github.com/hackforla/website/issues/7727#event-16583206980) at 2025-03-04 04:06 PM PST -t-will-gillis,2025-03-05T00:08:30Z,- t-will-gillis commented on issue: [7937](https://github.com/hackforla/website/issues/7937#issuecomment-2699316035) at 2025-03-04 04:08 PM PST -t-will-gillis,2025-03-07T00:27:19Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2705239730) at 2025-03-06 04:27 PM PST -t-will-gillis,2025-03-07T05:13:25Z,- t-will-gillis closed issue as duplicate: [7848](https://github.com/hackforla/website/issues/7848#event-16626783738) at 2025-03-06 09:13 PM PST -t-will-gillis,2025-03-09T17:36:33Z,- t-will-gillis closed issue by PR 7983: [7875](https://github.com/hackforla/website/issues/7875#event-16645518605) at 2025-03-09 10:36 AM PDT -t-will-gillis,2025-03-09T19:40:46Z,- t-will-gillis submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2669506293) at 2025-03-09 12:40 PM PDT -t-will-gillis,2025-03-11T00:38:10Z,- t-will-gillis unassigned from issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2046313581) at 2025-03-10 05:38 PM PDT -t-will-gillis,2025-03-11T01:57:51Z,- t-will-gillis commented on issue: [7941](https://github.com/hackforla/website/issues/7941#issuecomment-2712293790) at 2025-03-10 06:57 PM PDT -t-will-gillis,2025-03-11T02:01:11Z,- t-will-gillis commented on pull request: [7987](https://github.com/hackforla/website/pull/7987#issuecomment-2712297965) at 2025-03-10 07:01 PM PDT -t-will-gillis,2025-03-11T02:18:23Z,- t-will-gillis commented on issue: [7393](https://github.com/hackforla/website/issues/7393#issuecomment-2712327537) at 2025-03-10 07:18 PM PDT -t-will-gillis,2025-03-11T02:18:24Z,- t-will-gillis closed issue as completed: [7393](https://github.com/hackforla/website/issues/7393#event-16664433741) at 2025-03-10 07:18 PM PDT -t-will-gillis,2025-03-11T03:23:04Z,- t-will-gillis commented on issue: [7690](https://github.com/hackforla/website/issues/7690#issuecomment-2712469535) at 2025-03-10 08:23 PM PDT -t-will-gillis,2025-03-11T03:23:05Z,- t-will-gillis closed issue as completed: [7690](https://github.com/hackforla/website/issues/7690#event-16665720072) at 2025-03-10 08:23 PM PDT -t-will-gillis,2025-03-12T04:05:55Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2716375730) at 2025-03-11 09:05 PM PDT -t-will-gillis,2025-03-12T04:07:36Z,- t-will-gillis commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2716379109) at 2025-03-11 09:07 PM PDT -t-will-gillis,2025-03-14T23:36:04Z,- t-will-gillis submitted pull request review: [7987](https://github.com/hackforla/website/pull/7987#pullrequestreview-2687074887) at 2025-03-14 04:36 PM PDT -t-will-gillis,2025-03-15T01:30:51Z,- t-will-gillis commented on issue: [7946](https://github.com/hackforla/website/issues/7946#issuecomment-2726097303) at 2025-03-14 06:30 PM PDT -t-will-gillis,2025-03-15T01:34:03Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2726099197) at 2025-03-14 06:34 PM PDT -t-will-gillis,2025-03-15T16:34:33Z,- t-will-gillis commented on issue: [7946](https://github.com/hackforla/website/issues/7946#issuecomment-2726772051) at 2025-03-15 09:34 AM PDT -t-will-gillis,2025-03-17T23:59:23Z,- t-will-gillis opened issue: [7994](https://github.com/hackforla/website/issues/7994) at 2025-03-17 04:59 PM PDT -t-will-gillis,2025-03-18T02:07:43Z,- t-will-gillis opened issue: [7995](https://github.com/hackforla/website/issues/7995) at 2025-03-17 07:07 PM PDT -t-will-gillis,2025-03-18T02:08:56Z,- t-will-gillis commented on issue: [7865](https://github.com/hackforla/website/issues/7865#issuecomment-2731400163) at 2025-03-17 07:08 PM PDT -t-will-gillis,2025-03-18T02:08:57Z,- t-will-gillis closed issue as completed: [7865](https://github.com/hackforla/website/issues/7865#event-16817535171) at 2025-03-17 07:08 PM PDT -t-will-gillis,2025-03-18T02:13:04Z,- t-will-gillis opened issue: [7996](https://github.com/hackforla/website/issues/7996) at 2025-03-17 07:13 PM PDT -t-will-gillis,2025-03-18T02:14:24Z,- t-will-gillis commented on issue: [7960](https://github.com/hackforla/website/issues/7960#issuecomment-2731406683) at 2025-03-17 07:14 PM PDT -t-will-gillis,2025-03-18T02:14:25Z,- t-will-gillis closed issue as completed: [7960](https://github.com/hackforla/website/issues/7960#event-16817598891) at 2025-03-17 07:14 PM PDT -t-will-gillis,2025-03-18T02:24:48Z,- t-will-gillis opened issue: [7997](https://github.com/hackforla/website/issues/7997) at 2025-03-17 07:24 PM PDT -t-will-gillis,2025-03-18T02:26:18Z,- t-will-gillis commented on issue: [7867](https://github.com/hackforla/website/issues/7867#issuecomment-2731420399) at 2025-03-17 07:26 PM PDT -t-will-gillis,2025-03-18T02:26:18Z,- t-will-gillis closed issue as completed: [7867](https://github.com/hackforla/website/issues/7867#event-16817704228) at 2025-03-17 07:26 PM PDT -t-will-gillis,2025-03-18T02:40:41Z,- t-will-gillis opened issue: [7998](https://github.com/hackforla/website/issues/7998) at 2025-03-17 07:40 PM PDT -t-will-gillis,2025-03-18T02:50:07Z,- t-will-gillis opened issue: [7999](https://github.com/hackforla/website/issues/7999) at 2025-03-17 07:50 PM PDT -t-will-gillis,2025-03-18T02:53:50Z,- t-will-gillis opened issue: [8000](https://github.com/hackforla/website/issues/8000) at 2025-03-17 07:53 PM PDT -t-will-gillis,2025-03-18T03:16:07Z,- t-will-gillis opened issue: [8001](https://github.com/hackforla/website/issues/8001) at 2025-03-17 08:16 PM PDT -t-will-gillis,2025-03-18T03:17:12Z,- t-will-gillis opened issue: [8002](https://github.com/hackforla/website/issues/8002) at 2025-03-17 08:17 PM PDT -t-will-gillis,2025-03-18T03:18:10Z,- t-will-gillis opened issue: [8003](https://github.com/hackforla/website/issues/8003) at 2025-03-17 08:18 PM PDT -t-will-gillis,2025-03-18T03:19:05Z,- t-will-gillis opened issue: [8004](https://github.com/hackforla/website/issues/8004) at 2025-03-17 08:19 PM PDT -t-will-gillis,2025-03-18T03:22:00Z,- t-will-gillis commented on issue: [7863](https://github.com/hackforla/website/issues/7863#issuecomment-2731505120) at 2025-03-17 08:22 PM PDT -t-will-gillis,2025-03-18T03:22:00Z,- t-will-gillis closed issue as completed: [7863](https://github.com/hackforla/website/issues/7863#event-16818396809) at 2025-03-17 08:22 PM PDT -t-will-gillis,2025-03-18T03:36:37Z,- t-will-gillis commented on issue: [3228](https://github.com/hackforla/website/issues/3228#issuecomment-2731524167) at 2025-03-17 08:36 PM PDT -t-will-gillis,2025-03-18T22:03:59Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2734842526) at 2025-03-18 03:03 PM PDT -t-will-gillis,2025-03-19T20:53:28Z,- t-will-gillis commented on issue: [7993](https://github.com/hackforla/website/issues/7993#issuecomment-2738085675) at 2025-03-19 01:53 PM PDT -t-will-gillis,2025-03-21T20:55:25Z,- t-will-gillis opened issue: [8010](https://github.com/hackforla/website/issues/8010) at 2025-03-21 01:55 PM PDT -t-will-gillis,2025-03-22T22:46:37Z,- t-will-gillis commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2745902062) at 2025-03-22 03:46 PM PDT -t-will-gillis,2025-03-22T22:51:44Z,- t-will-gillis commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2745903598) at 2025-03-22 03:51 PM PDT -t-will-gillis,2025-03-22T22:54:10Z,- t-will-gillis commented on pull request: [7936](https://github.com/hackforla/website/pull/7936#issuecomment-2745904162) at 2025-03-22 03:54 PM PDT -t-will-gillis,2025-03-22T23:28:52Z,- t-will-gillis commented on issue: [8009](https://github.com/hackforla/website/issues/8009#issuecomment-2745913516) at 2025-03-22 04:28 PM PDT -t-will-gillis,2025-03-23T17:58:58Z,- t-will-gillis commented on issue: [7831](https://github.com/hackforla/website/issues/7831#issuecomment-2746340640) at 2025-03-23 10:58 AM PDT -t-will-gillis,2025-03-23T17:58:58Z,- t-will-gillis closed issue as completed: [7831](https://github.com/hackforla/website/issues/7831#event-16945235244) at 2025-03-23 10:58 AM PDT -t-will-gillis,2025-03-24T20:47:45Z,- t-will-gillis commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2749357480) at 2025-03-24 01:47 PM PDT -t-will-gillis,2025-03-24T21:00:02Z,- t-will-gillis commented on issue: [7389](https://github.com/hackforla/website/issues/7389#issuecomment-2749383619) at 2025-03-24 02:00 PM PDT -t-will-gillis,2025-03-24T21:00:03Z,- t-will-gillis closed issue as completed: [7389](https://github.com/hackforla/website/issues/7389#event-16963082898) at 2025-03-24 02:00 PM PDT -t-will-gillis,2025-03-24T21:06:30Z,- t-will-gillis commented on issue: [7450](https://github.com/hackforla/website/issues/7450#issuecomment-2749399363) at 2025-03-24 02:06 PM PDT -t-will-gillis,2025-03-24T21:06:30Z,- t-will-gillis closed issue as completed: [7450](https://github.com/hackforla/website/issues/7450#event-16963172270) at 2025-03-24 02:06 PM PDT -t-will-gillis,2025-03-24T22:07:51Z,- t-will-gillis commented on issue: [7735](https://github.com/hackforla/website/issues/7735#issuecomment-2749510419) at 2025-03-24 03:07 PM PDT -t-will-gillis,2025-03-24T22:07:52Z,- t-will-gillis closed issue as not planned: [7735](https://github.com/hackforla/website/issues/7735#event-16963860377) at 2025-03-24 03:07 PM PDT -t-will-gillis,2025-03-24T22:09:00Z,- t-will-gillis commented on issue: [7993](https://github.com/hackforla/website/issues/7993#issuecomment-2749512189) at 2025-03-24 03:09 PM PDT -t-will-gillis,2025-03-24T22:09:00Z,- t-will-gillis closed issue as not planned: [7993](https://github.com/hackforla/website/issues/7993#event-16963871064) at 2025-03-24 03:09 PM PDT -t-will-gillis,2025-03-25T00:06:44Z,- t-will-gillis commented on pull request: [5204](https://github.com/hackforla/website/pull/5204#issuecomment-2749694158) at 2025-03-24 05:06 PM PDT -t-will-gillis,2025-03-25T00:08:11Z,- t-will-gillis commented on pull request: [5577](https://github.com/hackforla/website/pull/5577#issuecomment-2749696395) at 2025-03-24 05:08 PM PDT -t-will-gillis,2025-03-25T02:02:29Z,- t-will-gillis assigned to issue: [7940](https://github.com/hackforla/website/issues/7940) at 2025-03-24 07:02 PM PDT -t-will-gillis,2025-03-25T03:05:30Z,- t-will-gillis opened pull request: [8019](https://github.com/hackforla/website/pull/8019) at 2025-03-24 08:05 PM PDT -t-will-gillis,2025-03-25T03:15:03Z,- t-will-gillis commented on pull request: [8019](https://github.com/hackforla/website/pull/8019#issuecomment-2749948945) at 2025-03-24 08:15 PM PDT -t-will-gillis,2025-03-25T03:15:45Z,- t-will-gillis pull request merged: [8019](https://github.com/hackforla/website/pull/8019#event-16966435635) at 2025-03-24 08:15 PM PDT -t-will-gillis,2025-03-25T03:15:46Z,- t-will-gillis closed issue by PR 8019: [7940](https://github.com/hackforla/website/issues/7940#event-16966435756) at 2025-03-24 08:15 PM PDT -t-will-gillis,2025-03-25T18:16:14Z,- t-will-gillis commented on issue: [6412](https://github.com/hackforla/website/issues/6412#issuecomment-2752148264) at 2025-03-25 11:16 AM PDT -t-will-gillis,2025-03-25T18:18:10Z,- t-will-gillis commented on issue: [7907](https://github.com/hackforla/website/issues/7907#issuecomment-2752153456) at 2025-03-25 11:18 AM PDT -t-will-gillis,2025-03-25T18:48:46Z,- t-will-gillis submitted pull request review: [7981](https://github.com/hackforla/website/pull/7981#pullrequestreview-2714859302) at 2025-03-25 11:48 AM PDT -t-will-gillis,2025-03-26T17:26:59Z,- t-will-gillis commented on pull request: [7981](https://github.com/hackforla/website/pull/7981#issuecomment-2755181531) at 2025-03-26 10:26 AM PDT -t-will-gillis,2025-03-26T17:27:34Z,- t-will-gillis closed issue by PR 7981: [7877](https://github.com/hackforla/website/issues/7877#event-16997251415) at 2025-03-26 10:27 AM PDT -t-will-gillis,2025-03-31T21:55:58Z,- t-will-gillis opened issue: [8024](https://github.com/hackforla/website/issues/8024) at 2025-03-31 02:55 PM PDT -t-will-gillis,2025-03-31T22:12:26Z,- t-will-gillis opened issue: [8025](https://github.com/hackforla/website/issues/8025) at 2025-03-31 03:12 PM PDT -t-will-gillis,2025-03-31T22:54:48Z,- t-will-gillis unassigned from issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2499587714) at 2025-03-31 03:54 PM PDT -t-will-gillis,2025-03-31T22:55:08Z,- t-will-gillis assigned to issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2499587714) at 2025-03-31 03:55 PM PDT -t-will-gillis,2025-04-01T00:22:26Z,- t-will-gillis opened pull request: [8026](https://github.com/hackforla/website/pull/8026) at 2025-03-31 05:22 PM PDT -t-will-gillis,2025-04-01T00:24:30Z,- t-will-gillis pull request merged: [8026](https://github.com/hackforla/website/pull/8026#event-17065604708) at 2025-03-31 05:24 PM PDT -t-will-gillis,2025-04-01T02:30:47Z,- t-will-gillis commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2767894359) at 2025-03-31 07:30 PM PDT -t-will-gillis,2025-04-01T15:51:59Z,- t-will-gillis commented on issue: [7232](https://github.com/hackforla/website/issues/7232#issuecomment-2769837311) at 2025-04-01 08:51 AM PDT -t-will-gillis,2025-04-01T15:51:59Z,- t-will-gillis closed issue as completed: [7232](https://github.com/hackforla/website/issues/7232#event-17078097566) at 2025-04-01 08:51 AM PDT -t-will-gillis,2025-04-01T16:20:55Z,- t-will-gillis opened issue: [8035](https://github.com/hackforla/website/issues/8035) at 2025-04-01 09:20 AM PDT -t-will-gillis,2025-04-01T16:47:29Z,- t-will-gillis commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2769972649) at 2025-04-01 09:47 AM PDT -t-will-gillis,2025-04-01T16:52:41Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2769983934) at 2025-04-01 09:52 AM PDT -t-will-gillis,2025-04-01T21:55:18Z,- t-will-gillis commented on issue: [7524](https://github.com/hackforla/website/issues/7524#issuecomment-2770774394) at 2025-04-01 02:55 PM PDT -t-will-gillis,2025-04-01T21:55:19Z,- t-will-gillis closed issue as completed: [7524](https://github.com/hackforla/website/issues/7524#event-17083151254) at 2025-04-01 02:55 PM PDT -t-will-gillis,2025-04-02T19:00:31Z,- t-will-gillis opened pull request: [8037](https://github.com/hackforla/website/pull/8037) at 2025-04-02 12:00 PM PDT -t-will-gillis,2025-04-02T20:47:56Z,- t-will-gillis commented on issue: [7534](https://github.com/hackforla/website/issues/7534#issuecomment-2773705137) at 2025-04-02 01:47 PM PDT -t-will-gillis,2025-04-03T21:15:47Z,- t-will-gillis assigned to issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2046313581) at 2025-04-03 02:15 PM PDT -t-will-gillis,2025-04-04T18:17:45Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779458029) at 2025-04-04 11:17 AM PDT -t-will-gillis,2025-04-04T18:19:11Z,- t-will-gillis commented on issue: [7939](https://github.com/hackforla/website/issues/7939#issuecomment-2779460576) at 2025-04-04 11:19 AM PDT -t-will-gillis,2025-04-04T18:20:36Z,- t-will-gillis commented on issue: [7402](https://github.com/hackforla/website/issues/7402#issuecomment-2779463072) at 2025-04-04 11:20 AM PDT -t-will-gillis,2025-04-04T19:03:48Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779535962) at 2025-04-04 12:03 PM PDT -t-will-gillis,2025-04-04T19:06:28Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779540748) at 2025-04-04 12:06 PM PDT -t-will-gillis,2025-04-04T19:45:49Z,- t-will-gillis commented on pull request: [8044](https://github.com/hackforla/website/pull/8044#issuecomment-2779605841) at 2025-04-04 12:45 PM PDT -t-will-gillis,2025-04-04T19:55:03Z,- t-will-gillis commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779619942) at 2025-04-04 12:55 PM PDT -t-will-gillis,2025-04-05T22:24:31Z,- t-will-gillis submitted pull request review: [8045](https://github.com/hackforla/website/pull/8045#pullrequestreview-2744996905) at 2025-04-05 03:24 PM PDT -t-will-gillis,2025-04-06T16:14:13Z,- t-will-gillis submitted pull request review: [8045](https://github.com/hackforla/website/pull/8045#pullrequestreview-2745184454) at 2025-04-06 09:14 AM PDT -t-will-gillis,2025-04-06T16:20:21Z,- t-will-gillis closed issue by PR 8039: [7487](https://github.com/hackforla/website/issues/7487#event-17143639213) at 2025-04-06 09:20 AM PDT -t-will-gillis,2025-04-06T18:31:54Z,- t-will-gillis unassigned from issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-2767603092) at 2025-04-06 11:31 AM PDT -t-will-gillis,2025-04-06T18:52:15Z,- t-will-gillis opened issue: [8048](https://github.com/hackforla/website/issues/8048) at 2025-04-06 11:52 AM PDT -t-will-gillis,2025-04-06T18:53:35Z,- t-will-gillis assigned to issue: [8048](https://github.com/hackforla/website/issues/8048#issuecomment-2781562260) at 2025-04-06 11:53 AM PDT -t-will-gillis,2025-04-06T19:01:07Z,- t-will-gillis opened pull request: [8049](https://github.com/hackforla/website/pull/8049) at 2025-04-06 12:01 PM PDT -t-will-gillis,2025-04-06T19:02:49Z,- t-will-gillis pull request merged: [8049](https://github.com/hackforla/website/pull/8049#event-17144008031) at 2025-04-06 12:02 PM PDT -t-will-gillis,2025-04-06T19:02:50Z,- t-will-gillis closed issue by PR 8049: [8048](https://github.com/hackforla/website/issues/8048#event-17144008069) at 2025-04-06 12:02 PM PDT -t-will-gillis,2025-04-07T02:17:16Z,- t-will-gillis closed issue by PR 7936: [7484](https://github.com/hackforla/website/issues/7484#event-17145393888) at 2025-04-06 07:17 PM PDT -t-will-gillis,2025-04-07T02:47:08Z,- t-will-gillis commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2781889480) at 2025-04-06 07:47 PM PDT -t-will-gillis,2025-04-07T20:23:13Z,- t-will-gillis commented on issue: [8042](https://github.com/hackforla/website/issues/8042#issuecomment-2784538221) at 2025-04-07 01:23 PM PDT -t-will-gillis,2025-04-07T20:25:07Z,- t-will-gillis commented on issue: [8025](https://github.com/hackforla/website/issues/8025#issuecomment-2784541978) at 2025-04-07 01:25 PM PDT -t-will-gillis,2025-04-07T20:25:07Z,- t-will-gillis closed issue as completed: [8025](https://github.com/hackforla/website/issues/8025#event-17160069359) at 2025-04-07 01:25 PM PDT -t-will-gillis,2025-04-08T21:46:15Z,- t-will-gillis opened issue: [8055](https://github.com/hackforla/website/issues/8055) at 2025-04-08 02:46 PM PDT -t-will-gillis,2025-04-08T21:46:15Z,- t-will-gillis opened issue: [8055](https://github.com/hackforla/website/issues/8055) at 2025-04-08 02:46 PM PDT -t-will-gillis,2025-04-12T21:31:36Z,- t-will-gillis closed issue by PR 8045: [7532](https://github.com/hackforla/website/issues/7532#event-17235550895) at 2025-04-12 02:31 PM PDT -t-will-gillis,2025-04-13T18:56:20Z,- t-will-gillis opened issue: [8064](https://github.com/hackforla/website/issues/8064) at 2025-04-13 11:56 AM PDT -t-will-gillis,2025-04-13T19:12:35Z,- t-will-gillis commented on issue: [8027](https://github.com/hackforla/website/issues/8027#issuecomment-2800083204) at 2025-04-13 12:12 PM PDT -t-will-gillis,2025-04-13T19:21:58Z,- t-will-gillis commented on issue: [7481](https://github.com/hackforla/website/issues/7481#issuecomment-2800086802) at 2025-04-13 12:21 PM PDT -t-will-gillis,2025-04-13T19:25:15Z,- t-will-gillis commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2800088044) at 2025-04-13 12:25 PM PDT -t-will-gillis,2025-04-13T19:26:22Z,- t-will-gillis commented on issue: [7548](https://github.com/hackforla/website/issues/7548#issuecomment-2800088489) at 2025-04-13 12:26 PM PDT -t-will-gillis,2025-04-13T19:27:03Z,- t-will-gillis commented on issue: [7550](https://github.com/hackforla/website/issues/7550#issuecomment-2800088701) at 2025-04-13 12:27 PM PDT -t-will-gillis,2025-04-13T19:28:15Z,- t-will-gillis commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2800089102) at 2025-04-13 12:28 PM PDT -t-will-gillis,2025-04-13T19:37:14Z,- t-will-gillis commented on pull request: [8058](https://github.com/hackforla/website/pull/8058#issuecomment-2800092451) at 2025-04-13 12:37 PM PDT -t-will-gillis,2025-04-13T20:52:47Z,- t-will-gillis submitted pull request review: [8058](https://github.com/hackforla/website/pull/8058#pullrequestreview-2762841049) at 2025-04-13 01:52 PM PDT -t-will-gillis,2025-04-15T01:25:52Z,- t-will-gillis pull request merged: [8037](https://github.com/hackforla/website/pull/8037#event-17258766136) at 2025-04-14 06:25 PM PDT -t-will-gillis,2025-04-15T01:25:54Z,- t-will-gillis closed issue by PR 8037: [7535](https://github.com/hackforla/website/issues/7535#event-17258766315) at 2025-04-14 06:25 PM PDT -t-will-gillis,2025-04-19T17:38:58Z,- t-will-gillis closed issue by PR 8059: [7550](https://github.com/hackforla/website/issues/7550#event-17329270048) at 2025-04-19 10:38 AM PDT -t-will-gillis,2025-04-19T17:44:06Z,- t-will-gillis commented on issue: [7391](https://github.com/hackforla/website/issues/7391#issuecomment-2816799795) at 2025-04-19 10:44 AM PDT -t-will-gillis,2025-04-19T18:16:27Z,- t-will-gillis commented on issue: [8027](https://github.com/hackforla/website/issues/8027#issuecomment-2816812618) at 2025-04-19 11:16 AM PDT -t-will-gillis,2025-04-19T18:48:21Z,- t-will-gillis commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2816823208) at 2025-04-19 11:48 AM PDT -t-will-gillis,2025-04-19T19:28:44Z,- t-will-gillis commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2816836559) at 2025-04-19 12:28 PM PDT -t-will-gillis,2025-04-19T19:32:19Z,- t-will-gillis submitted pull request review: [8058](https://github.com/hackforla/website/pull/8058#pullrequestreview-2780078083) at 2025-04-19 12:32 PM PDT -t-will-gillis,2025-04-19T22:05:08Z,- t-will-gillis closed issue by PR 8058: [7547](https://github.com/hackforla/website/issues/7547#event-17329759073) at 2025-04-19 03:05 PM PDT -t-will-gillis,2025-04-20T18:13:00Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2817280213) at 2025-04-20 11:13 AM PDT -t-will-gillis,2025-04-20T18:38:02Z,- t-will-gillis commented on issue: [8068](https://github.com/hackforla/website/issues/8068#issuecomment-2817288317) at 2025-04-20 11:38 AM PDT -t-will-gillis,2025-04-20T19:35:23Z,- t-will-gillis submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2780316992) at 2025-04-20 12:35 PM PDT -t-will-gillis,2025-04-22T19:25:51Z,- t-will-gillis submitted pull request review: [8080](https://github.com/hackforla/website/pull/8080#pullrequestreview-2785122350) at 2025-04-22 12:25 PM PDT -t-will-gillis,2025-04-22T21:07:27Z,- t-will-gillis opened issue: [8081](https://github.com/hackforla/website/issues/8081) at 2025-04-22 02:07 PM PDT -t-will-gillis,2025-04-22T21:08:10Z,- t-will-gillis assigned to issue: [8081](https://github.com/hackforla/website/issues/8081#issuecomment-2822487180) at 2025-04-22 02:08 PM PDT -t-will-gillis,2025-04-22T21:15:55Z,- t-will-gillis opened pull request: [8082](https://github.com/hackforla/website/pull/8082) at 2025-04-22 02:15 PM PDT -t-will-gillis,2025-04-22T21:39:12Z,- t-will-gillis commented on pull request: [8082](https://github.com/hackforla/website/pull/8082#issuecomment-2822540934) at 2025-04-22 02:39 PM PDT -t-will-gillis,2025-04-22T21:43:38Z,- t-will-gillis pull request merged: [8082](https://github.com/hackforla/website/pull/8082#event-17360688997) at 2025-04-22 02:43 PM PDT -t-will-gillis,2025-04-22T21:43:39Z,- t-will-gillis closed issue by PR 8082: [8081](https://github.com/hackforla/website/issues/8081#event-17360689137) at 2025-04-22 02:43 PM PDT -t-will-gillis,2025-04-22T23:18:20Z,- t-will-gillis opened issue: [8083](https://github.com/hackforla/website/issues/8083) at 2025-04-22 04:18 PM PDT -t-will-gillis,2025-04-22T23:18:20Z,- t-will-gillis assigned to issue: [8083](https://github.com/hackforla/website/issues/8083) at 2025-04-22 04:18 PM PDT -t-will-gillis,2025-04-23T05:29:17Z,- t-will-gillis opened pull request: [8085](https://github.com/hackforla/website/pull/8085) at 2025-04-22 10:29 PM PDT -t-will-gillis,2025-04-26T04:08:12Z,- t-will-gillis commented on pull request: [8089](https://github.com/hackforla/website/pull/8089#issuecomment-2831820163) at 2025-04-25 09:08 PM PDT -t-will-gillis,2025-04-26T17:18:21Z,- t-will-gillis submitted pull request review: [8089](https://github.com/hackforla/website/pull/8089#pullrequestreview-2796284758) at 2025-04-26 10:18 AM PDT -t-will-gillis,2025-04-26T17:21:16Z,- t-will-gillis commented on pull request: [8085](https://github.com/hackforla/website/pull/8085#issuecomment-2832452279) at 2025-04-26 10:21 AM PDT -t-will-gillis,2025-04-26T17:21:27Z,- t-will-gillis pull request merged: [8085](https://github.com/hackforla/website/pull/8085#event-17417792157) at 2025-04-26 10:21 AM PDT -t-will-gillis,2025-04-26T17:21:28Z,- t-will-gillis closed issue by PR 8085: [8083](https://github.com/hackforla/website/issues/8083#event-17417792181) at 2025-04-26 10:21 AM PDT -t-will-gillis,2025-04-26T17:30:39Z,- t-will-gillis commented on issue: [7857](https://github.com/hackforla/website/issues/7857#issuecomment-2832458560) at 2025-04-26 10:30 AM PDT -t-will-gillis,2025-04-26T17:40:23Z,- t-will-gillis commented on issue: [7381](https://github.com/hackforla/website/issues/7381#issuecomment-2832469511) at 2025-04-26 10:40 AM PDT -t-will-gillis,2025-04-26T17:40:23Z,- t-will-gillis closed issue as not planned: [7381](https://github.com/hackforla/website/issues/7381#event-17417873470) at 2025-04-26 10:40 AM PDT -t-will-gillis,2025-04-27T18:14:42Z,- t-will-gillis commented on issue: [7448](https://github.com/hackforla/website/issues/7448#issuecomment-2833577761) at 2025-04-27 11:14 AM PDT -t-will-gillis,2025-04-27T18:14:42Z,- t-will-gillis closed issue as completed: [7448](https://github.com/hackforla/website/issues/7448#event-17424539310) at 2025-04-27 11:14 AM PDT -t-will-gillis,2025-04-27T18:56:32Z,- t-will-gillis submitted pull request review: [8089](https://github.com/hackforla/website/pull/8089#pullrequestreview-2797716663) at 2025-04-27 11:56 AM PDT -t-will-gillis,2025-04-27T18:58:09Z,- t-will-gillis closed issue by PR 8089: [7534](https://github.com/hackforla/website/issues/7534#event-17424635715) at 2025-04-27 11:58 AM PDT -t-will-gillis,2025-04-27T19:05:50Z,- t-will-gillis commented on issue: [7536](https://github.com/hackforla/website/issues/7536#issuecomment-2833597088) at 2025-04-27 12:05 PM PDT -t-will-gillis,2025-04-27T19:21:19Z,- t-will-gillis submitted pull request review: [8076](https://github.com/hackforla/website/pull/8076#pullrequestreview-2797721189) at 2025-04-27 12:21 PM PDT -t-will-gillis,2025-04-29T02:46:25Z,- t-will-gillis commented on issue: [8034](https://github.com/hackforla/website/issues/8034#issuecomment-2837295195) at 2025-04-28 07:46 PM PDT -t-will-gillis,2025-05-01T17:14:43Z,- t-will-gillis commented on issue: [4388](https://github.com/hackforla/website/issues/4388#issuecomment-2845288490) at 2025-05-01 10:14 AM PDT -t-will-gillis,2025-05-05T17:33:04Z,- t-will-gillis closed issue by PR 8101: [7736](https://github.com/hackforla/website/issues/7736#event-17523433302) at 2025-05-05 10:33 AM PDT -t-will-gillis,2025-05-05T20:56:48Z,- t-will-gillis submitted pull request review: [8103](https://github.com/hackforla/website/pull/8103#pullrequestreview-2816090827) at 2025-05-05 01:56 PM PDT -t-will-gillis,2025-05-05T21:09:53Z,- t-will-gillis submitted pull request review: [8106](https://github.com/hackforla/website/pull/8106#pullrequestreview-2816119547) at 2025-05-05 02:09 PM PDT -t-will-gillis,2025-05-05T21:10:14Z,- t-will-gillis closed issue by PR 8106: [7536](https://github.com/hackforla/website/issues/7536#event-17526339785) at 2025-05-05 02:10 PM PDT -t-will-gillis,2025-05-05T21:11:11Z,- t-will-gillis commented on issue: [6454](https://github.com/hackforla/website/issues/6454#issuecomment-2852348824) at 2025-05-05 02:11 PM PDT -t-will-gillis,2025-05-05T21:11:11Z,- t-will-gillis closed issue as completed: [6454](https://github.com/hackforla/website/issues/6454#event-17526353782) at 2025-05-05 02:11 PM PDT -t-will-gillis,2025-05-06T21:41:33Z,- t-will-gillis submitted pull request review: [8103](https://github.com/hackforla/website/pull/8103#pullrequestreview-2819742934) at 2025-05-06 02:41 PM PDT -t-will-gillis,2025-05-06T21:41:54Z,- t-will-gillis closed issue by PR 8103: [8042](https://github.com/hackforla/website/issues/8042#event-17544923573) at 2025-05-06 02:41 PM PDT -t-will-gillis,2025-05-11T16:27:14Z,- t-will-gillis closed issue by PR 8118: [7922](https://github.com/hackforla/website/issues/7922#event-17606049308) at 2025-05-11 09:27 AM PDT -t-will-gillis,2025-05-11T16:31:45Z,- t-will-gillis commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2869969008) at 2025-05-11 09:31 AM PDT -t-will-gillis,2025-05-11T16:51:44Z,- t-will-gillis commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2870000376) at 2025-05-11 09:51 AM PDT -t-will-gillis,2025-05-11T17:06:37Z,- t-will-gillis commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2870007484) at 2025-05-11 10:06 AM PDT -t-will-gillis,2025-05-11T17:07:53Z,- t-will-gillis closed issue by PR 8116: [7876](https://github.com/hackforla/website/issues/7876#event-17606135928) at 2025-05-11 10:07 AM PDT -t-will-gillis,2025-05-11T17:29:23Z,- t-will-gillis commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2870019098) at 2025-05-11 10:29 AM PDT -t-will-gillis,2025-05-12T02:01:00Z,- t-will-gillis opened issue: [8122](https://github.com/hackforla/website/issues/8122) at 2025-05-11 07:01 PM PDT -t-will-gillis,2025-05-12T02:26:22Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-2870543569) at 2025-05-11 07:26 PM PDT -t-will-gillis,2025-05-14T02:36:24Z,- t-will-gillis submitted pull request review: [8127](https://github.com/hackforla/website/pull/8127#pullrequestreview-2838558194) at 2025-05-13 07:36 PM PDT -t-will-gillis,2025-05-14T02:59:37Z,- t-will-gillis commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2878492194) at 2025-05-13 07:59 PM PDT -t-will-gillis,2025-05-15T23:12:41Z,- t-will-gillis submitted pull request review: [8127](https://github.com/hackforla/website/pull/8127#pullrequestreview-2845162219) at 2025-05-15 04:12 PM PDT -t-will-gillis,2025-05-15T23:12:51Z,- t-will-gillis closed issue by PR 8127: [7483](https://github.com/hackforla/website/issues/7483#event-17680329634) at 2025-05-15 04:12 PM PDT -t-will-gillis,2025-05-18T02:32:40Z,- t-will-gillis commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2888721932) at 2025-05-17 07:32 PM PDT -t-will-gillis,2025-05-18T02:33:05Z,- t-will-gillis closed issue by PR 8143: [7944](https://github.com/hackforla/website/issues/7944#event-17701412438) at 2025-05-17 07:33 PM PDT -t-will-gillis,2025-05-18T03:42:03Z,- t-will-gillis commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2888745522) at 2025-05-17 08:42 PM PDT -t-will-gillis,2025-05-18T23:22:10Z,- t-will-gillis commented on issue: [8139](https://github.com/hackforla/website/issues/8139#issuecomment-2889270160) at 2025-05-18 04:22 PM PDT -t-will-gillis,2025-05-19T01:56:41Z,- t-will-gillis commented on issue: [7934](https://github.com/hackforla/website/issues/7934#issuecomment-2889401714) at 2025-05-18 06:56 PM PDT -t-will-gillis,2025-05-19T01:56:41Z,- t-will-gillis closed issue as not planned: [7934](https://github.com/hackforla/website/issues/7934#event-17705738098) at 2025-05-18 06:56 PM PDT -t-will-gillis,2025-05-19T02:17:35Z,- t-will-gillis closed issue as duplicate: [6669](https://github.com/hackforla/website/issues/6669#event-17705896463) at 2025-05-18 07:17 PM PDT -t-will-gillis,2025-05-19T02:18:13Z,- t-will-gillis reopened issue: [6669](https://github.com/hackforla/website/issues/6669#event-17705896463) at 2025-05-18 07:18 PM PDT -t-will-gillis,2025-05-19T02:19:11Z,- t-will-gillis commented on issue: [6669](https://github.com/hackforla/website/issues/6669#issuecomment-2889427309) at 2025-05-18 07:19 PM PDT -t-will-gillis,2025-05-19T02:19:11Z,- t-will-gillis closed issue as not planned: [6669](https://github.com/hackforla/website/issues/6669#event-17705906960) at 2025-05-18 07:19 PM PDT -t-will-gillis,2025-05-19T03:27:31Z,- t-will-gillis submitted pull request review: [8144](https://github.com/hackforla/website/pull/8144#pullrequestreview-2849291563) at 2025-05-18 08:27 PM PDT -t-will-gillis,2025-05-19T21:17:26Z,- t-will-gillis commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2892282727) at 2025-05-19 02:17 PM PDT -t-will-gillis,2025-05-19T22:39:40Z,- t-will-gillis commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2892442549) at 2025-05-19 03:39 PM PDT -t-will-gillis,2025-05-20T00:38:05Z,- t-will-gillis commented on issue: [6291](https://github.com/hackforla/website/issues/6291#issuecomment-2892583760) at 2025-05-19 05:38 PM PDT -t-will-gillis,2025-05-20T00:38:05Z,- t-will-gillis closed issue as completed: [6291](https://github.com/hackforla/website/issues/6291#event-17723875339) at 2025-05-19 05:38 PM PDT -t-will-gillis,2025-05-20T00:45:30Z,- t-will-gillis assigned to issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892551537) at 2025-05-19 05:45 PM PDT -t-will-gillis,2025-05-20T16:51:21Z,- t-will-gillis assigned to issue: [8035](https://github.com/hackforla/website/issues/8035) at 2025-05-20 09:51 AM PDT -t-will-gillis,2025-05-22T04:35:22Z,- t-will-gillis commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2899869650) at 2025-05-21 09:35 PM PDT -t-will-gillis,2025-05-22T17:41:45Z,- t-will-gillis commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2902060183) at 2025-05-22 10:41 AM PDT -t-will-gillis,2025-05-22T17:59:34Z,- t-will-gillis unassigned from issue: [7562](https://github.com/hackforla/website/issues/7562#issuecomment-2892592217) at 2025-05-22 10:59 AM PDT -t-will-gillis,2025-05-22T18:26:04Z,- t-will-gillis opened issue: [8152](https://github.com/hackforla/website/issues/8152) at 2025-05-22 11:26 AM PDT -t-will-gillis,2025-05-22T18:28:04Z,- t-will-gillis commented on issue: [8035](https://github.com/hackforla/website/issues/8035#issuecomment-2902189362) at 2025-05-22 11:28 AM PDT -t-will-gillis,2025-05-22T18:28:04Z,- t-will-gillis closed issue as completed: [8035](https://github.com/hackforla/website/issues/8035#event-17777692746) at 2025-05-22 11:28 AM PDT -t-will-gillis,2025-05-22T18:32:46Z,- t-will-gillis assigned to issue: [8152](https://github.com/hackforla/website/issues/8152) at 2025-05-22 11:32 AM PDT -t-will-gillis,2025-05-22T18:38:19Z,- t-will-gillis opened pull request: [8153](https://github.com/hackforla/website/pull/8153) at 2025-05-22 11:38 AM PDT -t-will-gillis,2025-05-22T21:45:21Z,- t-will-gillis commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902643601) at 2025-05-22 02:45 PM PDT -t-will-gillis,2025-05-22T21:48:53Z,- t-will-gillis commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2902650394) at 2025-05-22 02:48 PM PDT -t-will-gillis,2025-05-22T21:48:53Z,- t-will-gillis closed issue as completed: [8024](https://github.com/hackforla/website/issues/8024#event-17780016349) at 2025-05-22 02:48 PM PDT -t-will-gillis,2025-05-23T16:12:56Z,- t-will-gillis submitted pull request review: [8154](https://github.com/hackforla/website/pull/8154#pullrequestreview-2864975417) at 2025-05-23 09:12 AM PDT -t-will-gillis,2025-05-23T16:25:40Z,- t-will-gillis closed issue by PR 8148: [7955](https://github.com/hackforla/website/issues/7955#event-17793025835) at 2025-05-23 09:25 AM PDT -t-will-gillis,2025-05-23T16:59:17Z,- t-will-gillis submitted pull request review: [8155](https://github.com/hackforla/website/pull/8155#pullrequestreview-2865104489) at 2025-05-23 09:59 AM PDT -t-will-gillis,2025-05-23T23:53:11Z,- t-will-gillis submitted pull request review: [8155](https://github.com/hackforla/website/pull/8155#pullrequestreview-2865887738) at 2025-05-23 04:53 PM PDT -t-will-gillis,2025-05-24T21:39:26Z,- t-will-gillis opened issue: [8157](https://github.com/hackforla/website/issues/8157) at 2025-05-24 02:39 PM PDT -t-will-gillis,2025-05-24T21:39:32Z,- t-will-gillis assigned to issue: [8157](https://github.com/hackforla/website/issues/8157) at 2025-05-24 02:39 PM PDT -t-will-gillis,2025-05-24T21:47:11Z,- t-will-gillis opened pull request: [8158](https://github.com/hackforla/website/pull/8158) at 2025-05-24 02:47 PM PDT -t-will-gillis,2025-05-24T21:49:13Z,- t-will-gillis pull request merged: [8158](https://github.com/hackforla/website/pull/8158#event-17801715085) at 2025-05-24 02:49 PM PDT -t-will-gillis,2025-05-24T21:49:14Z,- t-will-gillis closed issue by PR 8158: [8157](https://github.com/hackforla/website/issues/8157#event-17801715109) at 2025-05-24 02:49 PM PDT -t-will-gillis,2025-05-24T21:49:35Z,- t-will-gillis commented on pull request: [8158](https://github.com/hackforla/website/pull/8158#issuecomment-2907123099) at 2025-05-24 02:49 PM PDT -t-will-gillis,2025-05-25T17:45:03Z,- t-will-gillis closed issue by PR 8155: [7562](https://github.com/hackforla/website/issues/7562#event-17805048571) at 2025-05-25 10:45 AM PDT -t-will-gillis,2025-05-25T17:46:29Z,- t-will-gillis pull request merged: [8153](https://github.com/hackforla/website/pull/8153#event-17805051864) at 2025-05-25 10:46 AM PDT -t-will-gillis,2025-05-25T17:46:30Z,- t-will-gillis closed issue by PR 8153: [8152](https://github.com/hackforla/website/issues/8152#event-17805051916) at 2025-05-25 10:46 AM PDT -t-will-gillis,2025-05-25T18:47:59Z,- t-will-gillis submitted pull request review: [8154](https://github.com/hackforla/website/pull/8154#pullrequestreview-2866918804) at 2025-05-25 11:47 AM PDT -t-will-gillis,2025-05-25T18:48:10Z,- t-will-gillis closed issue by PR 8154: [7996](https://github.com/hackforla/website/issues/7996#event-17805199456) at 2025-05-25 11:48 AM PDT -t-will-gillis,2025-05-27T20:39:15Z,- t-will-gillis commented on pull request: [8161](https://github.com/hackforla/website/pull/8161#issuecomment-2913979477) at 2025-05-27 01:39 PM PDT -t-will-gillis,2025-06-01T16:14:59Z,- t-will-gillis commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2927478807) at 2025-06-01 09:14 AM PDT -t-will-gillis,2025-06-01T16:19:18Z,- t-will-gillis closed issue by PR 8149: [7956](https://github.com/hackforla/website/issues/7956#event-17915651329) at 2025-06-01 09:19 AM PDT -t-will-gillis,2025-06-01T16:21:37Z,- t-will-gillis commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2927484184) at 2025-06-01 09:21 AM PDT -t-will-gillis,2025-06-01T16:29:34Z,- t-will-gillis commented on issue: [7895](https://github.com/hackforla/website/issues/7895#issuecomment-2927495881) at 2025-06-01 09:29 AM PDT -t-will-gillis,2025-06-01T16:29:34Z,- t-will-gillis closed issue as completed: [7895](https://github.com/hackforla/website/issues/7895#event-17915745899) at 2025-06-01 09:29 AM PDT -t-will-gillis,2025-06-01T19:58:40Z,- t-will-gillis commented on issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2927799029) at 2025-06-01 12:58 PM PDT -t-will-gillis,2025-06-01T19:58:40Z,- t-will-gillis reopened issue: [7693](https://github.com/hackforla/website/issues/7693#issuecomment-2927799029) at 2025-06-01 12:58 PM PDT -t-will-gillis,2025-06-01T22:39:54Z,- t-will-gillis commented on issue: [8001](https://github.com/hackforla/website/issues/8001#issuecomment-2928036835) at 2025-06-01 03:39 PM PDT -t-will-gillis,2025-06-01T22:39:55Z,- t-will-gillis closed issue as duplicate: [8001](https://github.com/hackforla/website/issues/8001#event-17919007404) at 2025-06-01 03:39 PM PDT -t-will-gillis,2025-06-01T23:09:34Z,- t-will-gillis commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2928075765) at 2025-06-01 04:09 PM PDT -t-will-gillis,2025-06-01T23:12:19Z,- t-will-gillis commented on pull request: [8162](https://github.com/hackforla/website/pull/8162#issuecomment-2928078715) at 2025-06-01 04:12 PM PDT -t-will-gillis,2025-06-03T00:26:04Z,- t-will-gillis commented on issue: [3112](https://github.com/hackforla/website/issues/3112#issuecomment-2932972457) at 2025-06-02 05:26 PM PDT -t-will-gillis,2025-06-03T00:26:04Z,- t-will-gillis closed issue as not planned: [3112](https://github.com/hackforla/website/issues/3112#event-17945486960) at 2025-06-02 05:26 PM PDT -t-will-gillis,2025-06-03T00:54:25Z,- t-will-gillis commented on issue: [8093](https://github.com/hackforla/website/issues/8093#issuecomment-2933012244) at 2025-06-02 05:54 PM PDT -t-will-gillis,2025-06-03T00:54:25Z,- t-will-gillis closed issue as completed: [8093](https://github.com/hackforla/website/issues/8093#event-17945710379) at 2025-06-02 05:54 PM PDT -t-will-gillis,2025-06-04T02:19:22Z,- t-will-gillis commented on issue: [7452](https://github.com/hackforla/website/issues/7452#issuecomment-2938097178) at 2025-06-03 07:19 PM PDT -t-will-gillis,2025-06-04T02:19:23Z,- t-will-gillis closed issue as completed: [7452](https://github.com/hackforla/website/issues/7452#event-17971591948) at 2025-06-03 07:19 PM PDT -t-will-gillis,2025-06-04T02:23:10Z,- t-will-gillis commented on issue: [7451](https://github.com/hackforla/website/issues/7451#issuecomment-2938104038) at 2025-06-03 07:23 PM PDT -t-will-gillis,2025-06-04T02:23:10Z,- t-will-gillis closed issue as completed: [7451](https://github.com/hackforla/website/issues/7451#event-17971634462) at 2025-06-03 07:23 PM PDT -t-will-gillis,2025-06-04T17:29:05Z,- t-will-gillis closed issue by PR 8162: [8000](https://github.com/hackforla/website/issues/8000#event-17986163384) at 2025-06-04 10:29 AM PDT -t-will-gillis,2025-06-04T17:46:25Z,- t-will-gillis submitted pull request review: [8161](https://github.com/hackforla/website/pull/8161#pullrequestreview-2897595678) at 2025-06-04 10:46 AM PDT -t-will-gillis,2025-06-07T18:15:12Z,- t-will-gillis commented on issue: [7927](https://github.com/hackforla/website/issues/7927#issuecomment-2952845069) at 2025-06-07 11:15 AM PDT -t-will-gillis,2025-06-07T18:15:12Z,- t-will-gillis closed issue as completed: [7927](https://github.com/hackforla/website/issues/7927#event-18038096173) at 2025-06-07 11:15 AM PDT -t-will-gillis,2025-06-07T18:41:13Z,- t-will-gillis commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2952865126) at 2025-06-07 11:41 AM PDT -t-will-gillis,2025-06-07T18:41:13Z,- t-will-gillis closed issue as completed: [7516](https://github.com/hackforla/website/issues/7516#event-18038230474) at 2025-06-07 11:41 AM PDT -t-will-gillis,2025-06-08T16:44:37Z,- t-will-gillis closed issue by PR 8172: [7642](https://github.com/hackforla/website/issues/7642#event-18045546533) at 2025-06-08 09:44 AM PDT -t-will-gillis,2025-06-08T22:05:12Z,- t-will-gillis commented on issue: [7988](https://github.com/hackforla/website/issues/7988#issuecomment-2954297078) at 2025-06-08 03:05 PM PDT -t-will-gillis,2025-06-08T22:41:34Z,- t-will-gillis assigned to issue: [7994](https://github.com/hackforla/website/issues/7994) at 2025-06-08 03:41 PM PDT -t-will-gillis,2025-06-08T22:43:24Z,- t-will-gillis opened issue: [8174](https://github.com/hackforla/website/issues/8174) at 2025-06-08 03:43 PM PDT -t-will-gillis,2025-06-08T22:44:27Z,- t-will-gillis commented on issue: [7994](https://github.com/hackforla/website/issues/7994#issuecomment-2954311780) at 2025-06-08 03:44 PM PDT -t-will-gillis,2025-06-08T22:44:27Z,- t-will-gillis closed issue as completed: [7994](https://github.com/hackforla/website/issues/7994#event-18046618496) at 2025-06-08 03:44 PM PDT -t-will-gillis,2025-06-08T22:44:35Z,- t-will-gillis assigned to issue: [8174](https://github.com/hackforla/website/issues/8174) at 2025-06-08 03:44 PM PDT -t-will-gillis,2025-06-10T04:06:48Z,- t-will-gillis opened pull request: [8175](https://github.com/hackforla/website/pull/8175) at 2025-06-09 09:06 PM PDT -t-will-gillis,2025-06-10T17:49:45Z,- t-will-gillis commented on issue: [7792](https://github.com/hackforla/website/issues/7792#issuecomment-2960141206) at 2025-06-10 10:49 AM PDT -t-will-gillis,2025-06-10T17:53:09Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2960150660) at 2025-06-10 10:53 AM PDT -t-will-gillis,2025-06-10T18:06:10Z,- t-will-gillis commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2960183355) at 2025-06-10 11:06 AM PDT -t-will-gillis,2025-06-10T18:26:47Z,- t-will-gillis opened issue: [8176](https://github.com/hackforla/website/issues/8176) at 2025-06-10 11:26 AM PDT -t-will-gillis,2025-06-10T18:26:47Z,- t-will-gillis assigned to issue: [8176](https://github.com/hackforla/website/issues/8176) at 2025-06-10 11:26 AM PDT -t-will-gillis,2025-06-10T18:50:33Z,- t-will-gillis opened pull request: [8177](https://github.com/hackforla/website/pull/8177) at 2025-06-10 11:50 AM PDT -t-will-gillis,2025-06-10T18:54:37Z,- t-will-gillis commented on issue: [8027](https://github.com/hackforla/website/issues/8027#issuecomment-2960293664) at 2025-06-10 11:54 AM PDT -t-will-gillis,2025-06-10T18:54:37Z,- t-will-gillis closed issue as completed: [8027](https://github.com/hackforla/website/issues/8027#event-18081180718) at 2025-06-10 11:54 AM PDT -t-will-gillis,2025-06-10T18:56:25Z,- t-will-gillis commented on issue: [7841](https://github.com/hackforla/website/issues/7841#issuecomment-2960297817) at 2025-06-10 11:56 AM PDT -t-will-gillis,2025-06-10T18:56:25Z,- t-will-gillis closed issue as completed: [7841](https://github.com/hackforla/website/issues/7841#event-18081203921) at 2025-06-10 11:56 AM PDT -t-will-gillis,2025-06-10T19:02:36Z,- t-will-gillis commented on issue: [8098](https://github.com/hackforla/website/issues/8098#issuecomment-2960312327) at 2025-06-10 12:02 PM PDT -t-will-gillis,2025-06-10T19:09:50Z,- t-will-gillis commented on issue: [8138](https://github.com/hackforla/website/issues/8138#issuecomment-2960328335) at 2025-06-10 12:09 PM PDT -t-will-gillis,2025-06-10T21:31:17Z,- t-will-gillis opened issue: [8178](https://github.com/hackforla/website/issues/8178) at 2025-06-10 02:31 PM PDT -t-will-gillis,2025-06-10T21:33:19Z,- t-will-gillis assigned to issue: [8178](https://github.com/hackforla/website/issues/8178) at 2025-06-10 02:33 PM PDT -t-will-gillis,2025-06-10T22:52:10Z,- t-will-gillis commented on pull request: [8177](https://github.com/hackforla/website/pull/8177#issuecomment-2960759296) at 2025-06-10 03:52 PM PDT -t-will-gillis,2025-06-11T03:04:13Z,- t-will-gillis commented on pull request: [8179](https://github.com/hackforla/website/pull/8179#issuecomment-2961109191) at 2025-06-10 08:04 PM PDT -t-will-gillis,2025-06-13T16:52:31Z,- t-will-gillis submitted pull request review: [8181](https://github.com/hackforla/website/pull/8181#pullrequestreview-2925514385) at 2025-06-13 09:52 AM PDT -t-will-gillis,2025-06-14T01:58:55Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2972103176) at 2025-06-13 06:58 PM PDT -t-will-gillis,2025-06-14T20:41:37Z,- t-will-gillis submitted pull request review: [8182](https://github.com/hackforla/website/pull/8182#pullrequestreview-2928801349) at 2025-06-14 01:41 PM PDT -t-will-gillis,2025-06-15T16:37:10Z,- t-will-gillis submitted pull request review: [8181](https://github.com/hackforla/website/pull/8181#pullrequestreview-2929966013) at 2025-06-15 09:37 AM PDT -t-will-gillis,2025-06-15T18:09:19Z,- t-will-gillis pull request merged: [8177](https://github.com/hackforla/website/pull/8177#event-18158447389) at 2025-06-15 11:09 AM PDT -t-will-gillis,2025-06-16T21:07:27Z,- t-will-gillis closed issue by PR 8181: [8151](https://github.com/hackforla/website/issues/8151#event-18178439526) at 2025-06-16 02:07 PM PDT -t-will-gillis,2025-06-19T04:06:16Z,- t-will-gillis commented on issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2986528143) at 2025-06-18 09:06 PM PDT -t-will-gillis,2025-06-19T04:06:17Z,- t-will-gillis reopened issue: [8010](https://github.com/hackforla/website/issues/8010#issuecomment-2986528143) at 2025-06-18 09:06 PM PDT -t-will-gillis,2025-06-21T18:25:27Z,- t-will-gillis commented on issue: [6751](https://github.com/hackforla/website/issues/6751#issuecomment-2993710807) at 2025-06-21 11:25 AM PDT -t-will-gillis,2025-06-21T18:25:27Z,- t-will-gillis closed issue as completed: [6751](https://github.com/hackforla/website/issues/6751#event-18258166771) at 2025-06-21 11:25 AM PDT -t-will-gillis,2025-06-22T16:19:59Z,- t-will-gillis closed issue by PR 8180: [7636](https://github.com/hackforla/website/issues/7636#event-18261855098) at 2025-06-22 09:19 AM PDT -t-will-gillis,2025-06-22T16:38:18Z,- t-will-gillis commented on pull request: [8196](https://github.com/hackforla/website/pull/8196#issuecomment-2994308906) at 2025-06-22 09:38 AM PDT -t-will-gillis,2025-06-22T17:41:02Z,- t-will-gillis commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2994342097) at 2025-06-22 10:41 AM PDT -t-will-gillis,2025-06-23T02:15:46Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2994696932) at 2025-06-22 07:15 PM PDT -t-will-gillis,2025-06-23T18:08:54Z,- t-will-gillis commented on issue: [7423](https://github.com/hackforla/website/issues/7423#issuecomment-2997412618) at 2025-06-23 11:08 AM PDT -t-will-gillis,2025-06-23T18:08:54Z,- t-will-gillis closed issue as not planned: [7423](https://github.com/hackforla/website/issues/7423#event-18278699177) at 2025-06-23 11:08 AM PDT -t-will-gillis,2025-06-23T18:39:36Z,- t-will-gillis opened issue: [8200](https://github.com/hackforla/website/issues/8200) at 2025-06-23 11:39 AM PDT -t-will-gillis,2025-06-23T18:50:05Z,- t-will-gillis commented on issue: [8200](https://github.com/hackforla/website/issues/8200#issuecomment-2997608620) at 2025-06-23 11:50 AM PDT -t-will-gillis,2025-06-23T18:50:05Z,- t-will-gillis closed issue as completed: [8200](https://github.com/hackforla/website/issues/8200#event-18279372486) at 2025-06-23 11:50 AM PDT -t-will-gillis,2025-06-23T19:39:34Z,- t-will-gillis opened issue: [8201](https://github.com/hackforla/website/issues/8201) at 2025-06-23 12:39 PM PDT -t-will-gillis,2025-06-23T19:39:46Z,- t-will-gillis assigned to issue: [8201](https://github.com/hackforla/website/issues/8201) at 2025-06-23 12:39 PM PDT -t-will-gillis,2025-06-23T20:45:02Z,- t-will-gillis commented on issue: [7942](https://github.com/hackforla/website/issues/7942#issuecomment-2997890858) at 2025-06-23 01:45 PM PDT -t-will-gillis,2025-06-23T20:45:03Z,- t-will-gillis closed issue as not planned: [7942](https://github.com/hackforla/website/issues/7942#event-18280972016) at 2025-06-23 01:45 PM PDT -t-will-gillis,2025-06-24T01:45:03Z,- t-will-gillis commented on issue: [7453](https://github.com/hackforla/website/issues/7453#issuecomment-2998489399) at 2025-06-23 06:45 PM PDT -t-will-gillis,2025-06-24T01:45:03Z,- t-will-gillis closed issue as completed: [7453](https://github.com/hackforla/website/issues/7453#event-18283967567) at 2025-06-23 06:45 PM PDT -t-will-gillis,2025-06-24T19:30:05Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2955057185) at 2025-06-24 12:30 PM PDT -t-will-gillis,2025-06-25T20:42:02Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2959602784) at 2025-06-25 01:42 PM PDT -t-will-gillis,2025-06-27T19:27:56Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2967717523) at 2025-06-27 12:27 PM PDT -t-will-gillis,2025-06-28T17:52:52Z,- t-will-gillis pull request merged: [8175](https://github.com/hackforla/website/pull/8175#event-18370585579) at 2025-06-28 10:52 AM PDT -t-will-gillis,2025-06-28T17:52:53Z,- t-will-gillis closed issue by PR 8175: [8174](https://github.com/hackforla/website/issues/8174#event-18370585639) at 2025-06-28 10:52 AM PDT -t-will-gillis,2025-06-28T21:51:45Z,- t-will-gillis commented on pull request: [8173](https://github.com/hackforla/website/pull/8173#issuecomment-3016080176) at 2025-06-28 02:51 PM PDT -t-will-gillis,2025-06-30T02:35:09Z,- t-will-gillis submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2969734506) at 2025-06-29 07:35 PM PDT -t-will-gillis,2025-07-01T15:25:07Z,- t-will-gillis closed issue as duplicate: [7975](https://github.com/hackforla/website/issues/7975#event-18413929853) at 2025-07-01 08:25 AM PDT -t-will-gillis,2025-07-01T15:28:14Z,- t-will-gillis commented on issue: [7977](https://github.com/hackforla/website/issues/7977#issuecomment-3024521621) at 2025-07-01 08:28 AM PDT -t-will-gillis,2025-07-01T15:28:14Z,- t-will-gillis closed issue as completed: [7977](https://github.com/hackforla/website/issues/7977#event-18413990793) at 2025-07-01 08:28 AM PDT -t-will-gillis,2025-07-01T16:02:57Z,- t-will-gillis commented on issue: [8237](https://github.com/hackforla/website/issues/8237#issuecomment-3024639397) at 2025-07-01 09:02 AM PDT -t-will-gillis,2025-07-01T22:32:58Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2977133264) at 2025-07-01 03:32 PM PDT -t-will-gillis,2025-07-02T02:12:58Z,- t-will-gillis commented on issue: [7859](https://github.com/hackforla/website/issues/7859#issuecomment-3026112882) at 2025-07-01 07:12 PM PDT -t-will-gillis,2025-07-02T02:17:35Z,- t-will-gillis opened issue: [8238](https://github.com/hackforla/website/issues/8238) at 2025-07-01 07:17 PM PDT -t-will-gillis,2025-07-02T02:32:03Z,- t-will-gillis opened issue: [8239](https://github.com/hackforla/website/issues/8239) at 2025-07-01 07:32 PM PDT -t-will-gillis,2025-07-02T02:32:03Z,- t-will-gillis assigned to issue: [8239](https://github.com/hackforla/website/issues/8239) at 2025-07-01 07:32 PM PDT -t-will-gillis,2025-07-02T02:57:25Z,- t-will-gillis opened pull request: [8240](https://github.com/hackforla/website/pull/8240) at 2025-07-01 07:57 PM PDT -t-will-gillis,2025-07-02T03:00:16Z,- t-will-gillis pull request merged: [8240](https://github.com/hackforla/website/pull/8240#event-18422688731) at 2025-07-01 08:00 PM PDT -t-will-gillis,2025-07-02T03:00:17Z,- t-will-gillis closed issue by PR 8240: [8239](https://github.com/hackforla/website/issues/8239#event-18422688839) at 2025-07-01 08:00 PM PDT -t-will-gillis,2025-07-02T03:32:04Z,- t-will-gillis commented on issue: [8185](https://github.com/hackforla/website/issues/8185#issuecomment-3026248686) at 2025-07-01 08:32 PM PDT -t-will-gillis,2025-07-02T16:14:12Z,- t-will-gillis submitted pull request review: [8203](https://github.com/hackforla/website/pull/8203#pullrequestreview-2979810330) at 2025-07-02 09:14 AM PDT -t-will-gillis,2025-07-02T16:15:13Z,- t-will-gillis commented on pull request: [8203](https://github.com/hackforla/website/pull/8203#issuecomment-3028463016) at 2025-07-02 09:15 AM PDT -t-will-gillis,2025-07-02T16:15:21Z,- t-will-gillis closed issue by PR 8203: [8003](https://github.com/hackforla/website/issues/8003#event-18435454535) at 2025-07-02 09:15 AM PDT -t-will-gillis,2025-07-02T16:17:53Z,- t-will-gillis closed issue by PR 8235: [7380](https://github.com/hackforla/website/issues/7380#event-18435496200) at 2025-07-02 09:17 AM PDT -t-will-gillis,2025-07-02T16:20:56Z,- t-will-gillis submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2979831912) at 2025-07-02 09:20 AM PDT -t-will-gillis,2025-07-02T16:21:40Z,- t-will-gillis commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-3028482405) at 2025-07-02 09:21 AM PDT -t-will-gillis,2025-07-02T16:21:49Z,- t-will-gillis closed issue by PR 8195: [7762](https://github.com/hackforla/website/issues/7762#event-18435566205) at 2025-07-02 09:21 AM PDT -t-will-gillis,2025-07-06T15:55:07Z,- t-will-gillis commented on pull request: [8236](https://github.com/hackforla/website/pull/8236#issuecomment-3042074882) at 2025-07-06 08:55 AM PDT -t-will-gillis,2025-07-06T15:55:17Z,- t-will-gillis closed issue by PR 8236: [8016](https://github.com/hackforla/website/issues/8016#event-18492459197) at 2025-07-06 08:55 AM PDT -t-will-gillis,2025-07-06T18:09:06Z,- t-will-gillis opened issue: [8244](https://github.com/hackforla/website/issues/8244) at 2025-07-06 11:09 AM PDT -t-will-gillis,2025-07-07T02:46:21Z,- t-will-gillis commented on issue: [7769](https://github.com/hackforla/website/issues/7769#issuecomment-3043323600) at 2025-07-06 07:46 PM PDT -t-will-gillis,2025-07-07T02:46:21Z,- t-will-gillis closed issue as completed: [7769](https://github.com/hackforla/website/issues/7769#event-18495725197) at 2025-07-06 07:46 PM PDT -t-will-gillis,2025-07-07T20:49:49Z,- t-will-gillis commented on issue: [8033](https://github.com/hackforla/website/issues/8033#issuecomment-3046484887) at 2025-07-07 01:49 PM PDT -t-will-gillis,2025-07-07T23:47:43Z,- t-will-gillis commented on issue: [8184](https://github.com/hackforla/website/issues/8184#issuecomment-3046851728) at 2025-07-07 04:47 PM PDT -t-will-gillis,2025-07-09T18:07:34Z,- t-will-gillis commented on issue: [8185](https://github.com/hackforla/website/issues/8185#issuecomment-3053556109) at 2025-07-09 11:07 AM PDT -t-will-gillis,2025-07-13T17:49:49Z,- t-will-gillis submitted pull request review: [8246](https://github.com/hackforla/website/pull/8246#pullrequestreview-3014265181) at 2025-07-13 10:49 AM PDT -t-will-gillis,2025-07-13T18:42:46Z,- t-will-gillis submitted pull request review: [8243](https://github.com/hackforla/website/pull/8243#pullrequestreview-3014278574) at 2025-07-13 11:42 AM PDT -t-will-gillis,2025-07-20T00:27:23Z,- t-will-gillis commented on issue: [4820](https://github.com/hackforla/website/issues/4820#issuecomment-3092653441) at 2025-07-19 05:27 PM PDT -t-will-gillis,2025-07-22T02:34:20Z,- t-will-gillis opened issue: [8247](https://github.com/hackforla/website/issues/8247) at 2025-07-21 07:34 PM PDT -t-will-gillis,2025-07-22T02:35:43Z,- t-will-gillis assigned to issue: [8247](https://github.com/hackforla/website/issues/8247) at 2025-07-21 07:35 PM PDT -t-will-gillis,2025-07-22T03:33:00Z,- t-will-gillis opened pull request: [8248](https://github.com/hackforla/website/pull/8248) at 2025-07-21 08:33 PM PDT -t-will-gillis,2025-07-22T16:46:16Z,- t-will-gillis commented on issue: [7388](https://github.com/hackforla/website/issues/7388#issuecomment-3103818617) at 2025-07-22 09:46 AM PDT -t-will-gillis,2025-07-22T16:46:17Z,- t-will-gillis closed issue as completed: [7388](https://github.com/hackforla/website/issues/7388#event-18756756284) at 2025-07-22 09:46 AM PDT -t-will-gillis,2025-07-22T16:55:15Z,- t-will-gillis commented on issue: [7612](https://github.com/hackforla/website/issues/7612#issuecomment-3103873481) at 2025-07-22 09:55 AM PDT -t-will-gillis,2025-07-22T16:55:15Z,- t-will-gillis closed issue as completed: [7612](https://github.com/hackforla/website/issues/7612#event-18756933555) at 2025-07-22 09:55 AM PDT -t-will-gillis,2025-07-22T20:50:30Z,- t-will-gillis commented on issue: [8249](https://github.com/hackforla/website/issues/8249#issuecomment-3104791336) at 2025-07-22 01:50 PM PDT -t-will-gillis,2025-07-22T20:50:30Z,- t-will-gillis closed issue as completed: [8249](https://github.com/hackforla/website/issues/8249#event-18760830847) at 2025-07-22 01:50 PM PDT -t-will-gillis,2025-08-03T02:46:09Z,- t-will-gillis opened issue: [8254](https://github.com/hackforla/website/issues/8254) at 2025-08-02 07:46 PM PDT -t-will-gillis,2025-08-03T02:59:23Z,- t-will-gillis opened issue: [8255](https://github.com/hackforla/website/issues/8255) at 2025-08-02 07:59 PM PDT -t-will-gillis,2025-08-07T19:08:37Z,- t-will-gillis assigned to issue: [8256](https://github.com/hackforla/website/issues/8256#issuecomment-3165351215) at 2025-08-07 12:08 PM PDT -t-will-gillis-dummy,2023-11-28T00:46:57Z,- t-will-gillis-dummy commented on issue: [5638](https://github.com/hackforla/website/issues/5638#issuecomment-1828882110) at 2023-11-27 04:46 PM PST -t-will-gillis-dummy,2023-11-28T05:09:19Z,- t-will-gillis-dummy commented on issue: [5638](https://github.com/hackforla/website/issues/5638#issuecomment-1829116409) at 2023-11-27 09:09 PM PST -t-will-gillis-dummy,2023-11-28T05:09:33Z,- t-will-gillis-dummy opened issue: [5939](https://github.com/hackforla/website/issues/5939) at 2023-11-27 09:09 PM PST -t-will-gillis-dummy,2024-09-23T03:18:42Z,- t-will-gillis-dummy opened pull request: [7507](https://github.com/hackforla/website/pull/7507) at 2024-09-22 08:18 PM PDT -t-will-gillis-dummy,2024-09-23T03:18:56Z,- t-will-gillis-dummy pull request closed w/o merging: [7507](https://github.com/hackforla/website/pull/7507#event-14356754652) at 2024-09-22 08:18 PM PDT -tabatahg,2019-08-17T20:45:32Z,- tabatahg opened issue: [143](https://github.com/hackforla/website/issues/143) at 2019-08-17 01:45 PM PDT -Tak149,4998,SKILLS ISSUE -Tak149,2023-07-18T02:55:39Z,- Tak149 opened issue: [4998](https://github.com/hackforla/website/issues/4998) at 2023-07-17 07:55 PM PDT -Tak149,2023-07-18T03:14:05Z,- Tak149 assigned to issue: [4998](https://github.com/hackforla/website/issues/4998) at 2023-07-17 08:14 PM PDT -tamalatrinh,2654,SKILLS ISSUE -tamalatrinh,2022-01-03T21:29:57Z,- tamalatrinh opened issue: [2654](https://github.com/hackforla/website/issues/2654) at 2022-01-03 01:29 PM PST -tamalatrinh,2022-01-03T21:56:06Z,- tamalatrinh assigned to issue: [2654](https://github.com/hackforla/website/issues/2654#issuecomment-1004372286) at 2022-01-03 01:56 PM PST -tamalatrinh,2022-01-07T01:29:06Z,- tamalatrinh closed issue as completed: [2654](https://github.com/hackforla/website/issues/2654#event-5855451328) at 2022-01-06 05:29 PM PST -tamalatrinh,2022-01-07T01:30:47Z,- tamalatrinh assigned to issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-997088137) at 2022-01-06 05:30 PM PST -tamalatrinh,2022-01-07T01:33:27Z,- tamalatrinh commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1007068514) at 2022-01-06 05:33 PM PST -tamalatrinh,2022-01-09T19:56:09Z,- tamalatrinh closed issue as completed: [2654](https://github.com/hackforla/website/issues/2654#event-5862698462) at 2022-01-09 11:56 AM PST -tamalatrinh,2022-01-12T01:03:35Z,- tamalatrinh commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1010524700) at 2022-01-11 05:03 PM PST -tamalatrinh,2022-01-17T22:19:05Z,- tamalatrinh commented on issue: [2597](https://github.com/hackforla/website/issues/2597#issuecomment-1014922800) at 2022-01-17 02:19 PM PST -tamalatrinh,2022-01-17T22:19:05Z,- tamalatrinh closed issue as completed: [2597](https://github.com/hackforla/website/issues/2597#event-5907005546) at 2022-01-17 02:19 PM PST -tamara-snyder,7329,SKILLS ISSUE -tamara-snyder,2022-01-07T01:29:00Z,- tamara-snyder assigned to issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1007044253) at 2022-01-06 05:29 PM PST -tamara-snyder,2022-01-10T23:39:28Z,- tamara-snyder assigned to issue: [2631](https://github.com/hackforla/website/issues/2631#issuecomment-1001227641) at 2022-01-10 03:39 PM PST -tamara-snyder,2022-01-10T23:46:51Z,- tamara-snyder commented on issue: [2631](https://github.com/hackforla/website/issues/2631#issuecomment-1009462977) at 2022-01-10 03:46 PM PST -tamara-snyder,2022-01-13T16:13:06Z,- tamara-snyder closed issue as completed: [2664](https://github.com/hackforla/website/issues/2664#event-5888732675) at 2022-01-13 08:13 AM PST -tamara-snyder,2022-01-19T03:45:09Z,- tamara-snyder opened pull request: [2700](https://github.com/hackforla/website/pull/2700) at 2022-01-18 07:45 PM PST -tamara-snyder,2022-01-24T00:15:04Z,- tamara-snyder commented on issue: [2631](https://github.com/hackforla/website/issues/2631#issuecomment-1019601934) at 2022-01-23 04:15 PM PST -tamara-snyder,2022-01-24T00:17:27Z,- tamara-snyder commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1019602671) at 2022-01-23 04:17 PM PST -tamara-snyder,2022-01-24T00:18:50Z,- tamara-snyder closed issue as completed: [2664](https://github.com/hackforla/website/issues/2664#event-5938949418) at 2022-01-23 04:18 PM PST -tamara-snyder,2022-01-27T23:45:47Z,- tamara-snyder pull request merged: [2700](https://github.com/hackforla/website/pull/2700#event-5967417361) at 2022-01-27 03:45 PM PST -tamara-snyder,2022-01-28T15:37:57Z,- tamara-snyder commented on pull request: [2700](https://github.com/hackforla/website/pull/2700#issuecomment-1024337082) at 2022-01-28 07:37 AM PST -tamara-snyder,2022-01-31T03:27:25Z,- tamara-snyder assigned to issue: [2657](https://github.com/hackforla/website/issues/2657#issuecomment-1019337301) at 2022-01-30 07:27 PM PST -tamara-snyder,2022-01-31T15:59:42Z,- tamara-snyder opened pull request: [2729](https://github.com/hackforla/website/pull/2729) at 2022-01-31 07:59 AM PST -tamara-snyder,2022-02-01T10:02:50Z,- tamara-snyder pull request merged: [2729](https://github.com/hackforla/website/pull/2729#event-5986943030) at 2022-02-01 02:02 AM PST -tamara-snyder,2022-02-03T17:52:48Z,- tamara-snyder assigned to issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-935155938) at 2022-02-03 09:52 AM PST -tamara-snyder,2022-02-03T18:00:33Z,- tamara-snyder commented on issue: [2707](https://github.com/hackforla/website/issues/2707#issuecomment-1029254229) at 2022-02-03 10:00 AM PST -tamara-snyder,2022-02-04T17:18:06Z,- tamara-snyder commented on issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1030189909) at 2022-02-04 09:18 AM PST -tamara-snyder,2022-02-04T17:18:17Z,- tamara-snyder unassigned from issue: [2339](https://github.com/hackforla/website/issues/2339#issuecomment-1030189909) at 2022-02-04 09:18 AM PST -tamara-snyder,2022-02-08T23:09:48Z,- tamara-snyder assigned to issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-903299359) at 2022-02-08 03:09 PM PST -tamara-snyder,2022-02-11T19:53:45Z,- tamara-snyder commented on issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-1036568330) at 2022-02-11 11:53 AM PST -tamara-snyder,2022-02-15T22:49:40Z,- tamara-snyder commented on issue: [2159](https://github.com/hackforla/website/issues/2159#issuecomment-1040875821) at 2022-02-15 02:49 PM PST -tamara-snyder,2022-02-18T03:50:35Z,- tamara-snyder opened pull request: [2789](https://github.com/hackforla/website/pull/2789) at 2022-02-17 07:50 PM PST -tamara-snyder,2022-02-20T19:51:29Z,- tamara-snyder opened issue: [2805](https://github.com/hackforla/website/issues/2805) at 2022-02-20 11:51 AM PST -tamara-snyder,2022-02-20T20:24:33Z,- tamara-snyder opened issue: [2811](https://github.com/hackforla/website/issues/2811) at 2022-02-20 12:24 PM PST -tamara-snyder,2022-02-20T20:29:03Z,- tamara-snyder opened issue: [2812](https://github.com/hackforla/website/issues/2812) at 2022-02-20 12:29 PM PST -tamara-snyder,2022-02-20T20:33:10Z,- tamara-snyder opened issue: [2813](https://github.com/hackforla/website/issues/2813) at 2022-02-20 12:33 PM PST -tamara-snyder,2022-02-20T20:38:14Z,- tamara-snyder opened issue: [2815](https://github.com/hackforla/website/issues/2815) at 2022-02-20 12:38 PM PST -tamara-snyder,2022-02-20T20:42:26Z,- tamara-snyder opened issue: [2816](https://github.com/hackforla/website/issues/2816) at 2022-02-20 12:42 PM PST -tamara-snyder,2022-02-20T20:45:21Z,- tamara-snyder opened issue: [2817](https://github.com/hackforla/website/issues/2817) at 2022-02-20 12:45 PM PST -tamara-snyder,2022-02-20T20:49:38Z,- tamara-snyder opened issue: [2818](https://github.com/hackforla/website/issues/2818) at 2022-02-20 12:49 PM PST -tamara-snyder,2022-02-21T02:10:14Z,- tamara-snyder submitted pull request review: [2803](https://github.com/hackforla/website/pull/2803#pullrequestreview-888139403) at 2022-02-20 06:10 PM PST -tamara-snyder,2022-02-21T18:13:28Z,- tamara-snyder opened issue: [2830](https://github.com/hackforla/website/issues/2830) at 2022-02-21 10:13 AM PST -tamara-snyder,2022-02-21T18:15:55Z,- tamara-snyder opened issue: [2831](https://github.com/hackforla/website/issues/2831) at 2022-02-21 10:15 AM PST -tamara-snyder,2022-02-21T18:19:19Z,- tamara-snyder opened issue: [2832](https://github.com/hackforla/website/issues/2832) at 2022-02-21 10:19 AM PST -tamara-snyder,2022-02-21T18:24:30Z,- tamara-snyder opened issue: [2833](https://github.com/hackforla/website/issues/2833) at 2022-02-21 10:24 AM PST -tamara-snyder,2022-02-21T18:28:55Z,- tamara-snyder opened issue: [2834](https://github.com/hackforla/website/issues/2834) at 2022-02-21 10:28 AM PST -tamara-snyder,2022-02-22T19:31:00Z,- tamara-snyder opened issue: [2842](https://github.com/hackforla/website/issues/2842) at 2022-02-22 11:31 AM PST -tamara-snyder,2022-02-22T19:33:30Z,- tamara-snyder opened issue: [2843](https://github.com/hackforla/website/issues/2843) at 2022-02-22 11:33 AM PST -tamara-snyder,2022-02-22T19:35:50Z,- tamara-snyder opened issue: [2844](https://github.com/hackforla/website/issues/2844) at 2022-02-22 11:35 AM PST -tamara-snyder,2022-02-22T19:38:47Z,- tamara-snyder opened issue: [2845](https://github.com/hackforla/website/issues/2845) at 2022-02-22 11:38 AM PST -tamara-snyder,2022-02-22T19:42:02Z,- tamara-snyder opened issue: [2846](https://github.com/hackforla/website/issues/2846) at 2022-02-22 11:42 AM PST -tamara-snyder,2022-02-22T19:45:36Z,- tamara-snyder opened issue: [2847](https://github.com/hackforla/website/issues/2847) at 2022-02-22 11:45 AM PST -tamara-snyder,2022-02-23T04:00:18Z,- tamara-snyder opened issue: [2855](https://github.com/hackforla/website/issues/2855) at 2022-02-22 08:00 PM PST -tamara-snyder,2022-02-23T19:36:20Z,- tamara-snyder pull request merged: [2789](https://github.com/hackforla/website/pull/2789#event-6127507146) at 2022-02-23 11:36 AM PST -tamara-snyder,2022-02-25T01:45:12Z,- tamara-snyder commented on pull request: [2880](https://github.com/hackforla/website/pull/2880#issuecomment-1050433980) at 2022-02-24 05:45 PM PST -tamara-snyder,2022-02-25T03:16:25Z,- tamara-snyder submitted pull request review: [2880](https://github.com/hackforla/website/pull/2880#pullrequestreview-893228420) at 2022-02-24 07:16 PM PST -tamara-snyder,2022-02-25T03:31:13Z,- tamara-snyder commented on pull request: [2882](https://github.com/hackforla/website/pull/2882#issuecomment-1050487957) at 2022-02-24 07:31 PM PST -tamara-snyder,2022-02-25T04:05:23Z,- tamara-snyder submitted pull request review: [2882](https://github.com/hackforla/website/pull/2882#pullrequestreview-893246844) at 2022-02-24 08:05 PM PST -tamara-snyder,2022-02-25T05:03:57Z,- tamara-snyder opened issue: [2887](https://github.com/hackforla/website/issues/2887) at 2022-02-24 09:03 PM PST -tamara-snyder,2022-02-25T05:30:49Z,- tamara-snyder submitted pull request review: [2882](https://github.com/hackforla/website/pull/2882#pullrequestreview-893282351) at 2022-02-24 09:30 PM PST -tamara-snyder,2022-02-25T16:45:10Z,- tamara-snyder assigned to issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1013941235) at 2022-02-25 08:45 AM PST -tamara-snyder,2022-02-25T16:47:33Z,- tamara-snyder commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1051017941) at 2022-02-25 08:47 AM PST -tamara-snyder,2022-02-27T15:34:28Z,- tamara-snyder submitted pull request review: [2880](https://github.com/hackforla/website/pull/2880#pullrequestreview-894517096) at 2022-02-27 07:34 AM PST -tamara-snyder,2022-02-27T15:52:53Z,- tamara-snyder commented on issue: [2480](https://github.com/hackforla/website/issues/2480#issuecomment-1053597220) at 2022-02-27 07:52 AM PST -tamara-snyder,2022-02-27T15:56:02Z,- tamara-snyder commented on issue: [2887](https://github.com/hackforla/website/issues/2887#issuecomment-1053598143) at 2022-02-27 07:56 AM PST -tamara-snyder,2022-02-27T18:26:06Z,- tamara-snyder commented on pull request: [2894](https://github.com/hackforla/website/pull/2894#issuecomment-1053638761) at 2022-02-27 10:26 AM PST -tamara-snyder,2022-03-01T17:03:56Z,- tamara-snyder submitted pull request review: [2894](https://github.com/hackforla/website/pull/2894#pullrequestreview-896585019) at 2022-03-01 09:03 AM PST -tamara-snyder,2022-03-01T17:25:46Z,- tamara-snyder commented on pull request: [2905](https://github.com/hackforla/website/pull/2905#issuecomment-1055679084) at 2022-03-01 09:25 AM PST -tamara-snyder,2022-03-01T17:37:22Z,- tamara-snyder submitted pull request review: [2905](https://github.com/hackforla/website/pull/2905#pullrequestreview-896623273) at 2022-03-01 09:37 AM PST -tamara-snyder,2022-03-04T04:07:04Z,- tamara-snyder commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1058806888) at 2022-03-03 08:07 PM PST -tamara-snyder,2022-03-04T22:09:11Z,- tamara-snyder commented on pull request: [2918](https://github.com/hackforla/website/pull/2918#issuecomment-1059566866) at 2022-03-04 02:09 PM PST -tamara-snyder,2022-03-04T23:37:17Z,- tamara-snyder commented on issue: [2605](https://github.com/hackforla/website/issues/2605#issuecomment-1059605945) at 2022-03-04 03:37 PM PST -tamara-snyder,2022-03-07T04:59:32Z,- tamara-snyder submitted pull request review: [2918](https://github.com/hackforla/website/pull/2918#pullrequestreview-901235905) at 2022-03-06 08:59 PM PST -tamara-snyder,2022-03-07T15:19:17Z,- tamara-snyder closed issue by PR 2918: [2187](https://github.com/hackforla/website/issues/2187#event-6195752787) at 2022-03-07 07:19 AM PST -tamara-snyder,2022-03-10T22:32:27Z,- tamara-snyder commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1064575733) at 2022-03-10 02:32 PM PST -tamara-snyder,2022-03-11T20:29:22Z,- tamara-snyder opened pull request: [2967](https://github.com/hackforla/website/pull/2967) at 2022-03-11 12:29 PM PST -tamara-snyder,2022-03-11T21:18:18Z,- tamara-snyder commented on pull request: [2959](https://github.com/hackforla/website/pull/2959#issuecomment-1065537356) at 2022-03-11 01:18 PM PST -tamara-snyder,2022-03-13T17:29:55Z,- tamara-snyder commented on pull request: [2969](https://github.com/hackforla/website/pull/2969#issuecomment-1066146820) at 2022-03-13 10:29 AM PDT -tamara-snyder,2022-03-13T17:30:39Z,- tamara-snyder commented on pull request: [2963](https://github.com/hackforla/website/pull/2963#issuecomment-1066146939) at 2022-03-13 10:30 AM PDT -tamara-snyder,2022-03-13T19:14:44Z,- tamara-snyder submitted pull request review: [2963](https://github.com/hackforla/website/pull/2963#pullrequestreview-908175805) at 2022-03-13 12:14 PM PDT -tamara-snyder,2022-03-13T19:15:55Z,- tamara-snyder closed issue by PR 2963: [2751](https://github.com/hackforla/website/issues/2751#event-6231511234) at 2022-03-13 12:15 PM PDT -tamara-snyder,2022-03-13T19:33:55Z,- tamara-snyder closed issue by PR 2943: [2100](https://github.com/hackforla/website/issues/2100#event-6231529721) at 2022-03-13 12:33 PM PDT -tamara-snyder,2022-03-15T04:40:10Z,- tamara-snyder submitted pull request review: [2969](https://github.com/hackforla/website/pull/2969#pullrequestreview-909652435) at 2022-03-14 09:40 PM PDT -tamara-snyder,2022-03-15T14:16:47Z,- tamara-snyder submitted pull request review: [2979](https://github.com/hackforla/website/pull/2979#pullrequestreview-910281218) at 2022-03-15 07:16 AM PDT -tamara-snyder,2022-03-15T14:18:38Z,- tamara-snyder commented on pull request: [2980](https://github.com/hackforla/website/pull/2980#issuecomment-1068041790) at 2022-03-15 07:18 AM PDT -tamara-snyder,2022-03-15T14:19:06Z,- tamara-snyder commented on pull request: [2981](https://github.com/hackforla/website/pull/2981#issuecomment-1068042262) at 2022-03-15 07:19 AM PDT -tamara-snyder,2022-03-15T14:19:40Z,- tamara-snyder commented on pull request: [2983](https://github.com/hackforla/website/pull/2983#issuecomment-1068042860) at 2022-03-15 07:19 AM PDT -tamara-snyder,2022-03-15T14:31:40Z,- tamara-snyder submitted pull request review: [2980](https://github.com/hackforla/website/pull/2980#pullrequestreview-910306022) at 2022-03-15 07:31 AM PDT -tamara-snyder,2022-03-15T14:34:03Z,- tamara-snyder closed issue by PR 2980: [2891](https://github.com/hackforla/website/issues/2891#event-6243754027) at 2022-03-15 07:34 AM PDT -tamara-snyder,2022-03-15T15:19:02Z,- tamara-snyder submitted pull request review: [2981](https://github.com/hackforla/website/pull/2981#pullrequestreview-910385245) at 2022-03-15 08:19 AM PDT -tamara-snyder,2022-03-15T15:20:25Z,- tamara-snyder closed issue by PR 2981: [2887](https://github.com/hackforla/website/issues/2887#event-6244142545) at 2022-03-15 08:20 AM PDT -tamara-snyder,2022-03-15T15:40:37Z,- tamara-snyder submitted pull request review: [2983](https://github.com/hackforla/website/pull/2983#pullrequestreview-910420023) at 2022-03-15 08:40 AM PDT -tamara-snyder,2022-03-16T01:58:14Z,- tamara-snyder submitted pull request review: [2969](https://github.com/hackforla/website/pull/2969#pullrequestreview-911013552) at 2022-03-15 06:58 PM PDT -tamara-snyder,2022-03-16T02:32:12Z,- tamara-snyder commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1068669169) at 2022-03-15 07:32 PM PDT -tamara-snyder,2022-03-16T15:29:49Z,- tamara-snyder submitted pull request review: [2979](https://github.com/hackforla/website/pull/2979#pullrequestreview-911839996) at 2022-03-16 08:29 AM PDT -tamara-snyder,2022-03-18T14:06:59Z,- tamara-snyder pull request merged: [2967](https://github.com/hackforla/website/pull/2967#event-6266442064) at 2022-03-18 07:06 AM PDT -tamara-snyder,2022-03-18T15:02:24Z,- tamara-snyder closed issue by PR 2979: [2758](https://github.com/hackforla/website/issues/2758#event-6266818358) at 2022-03-18 08:02 AM PDT -tamara-snyder,2022-03-18T15:09:50Z,- tamara-snyder submitted pull request review: [2983](https://github.com/hackforla/website/pull/2983#pullrequestreview-914492274) at 2022-03-18 08:09 AM PDT -tamara-snyder,2022-03-18T15:10:54Z,- tamara-snyder closed issue by PR 2983: [2795](https://github.com/hackforla/website/issues/2795#event-6266877741) at 2022-03-18 08:10 AM PDT -tamara-snyder,2022-03-18T15:24:16Z,- tamara-snyder closed issue by PR 2986: [2271](https://github.com/hackforla/website/issues/2271#event-6266965149) at 2022-03-18 08:24 AM PDT -tamara-snyder,2022-03-18T15:34:53Z,- tamara-snyder assigned to issue: [2141](https://github.com/hackforla/website/issues/2141) at 2022-03-18 08:34 AM PDT -tamara-snyder,2022-03-20T18:27:33Z,- tamara-snyder commented on pull request: [2992](https://github.com/hackforla/website/pull/2992#issuecomment-1073306637) at 2022-03-20 11:27 AM PDT -tamara-snyder,2022-03-20T18:28:48Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1073306804) at 2022-03-20 11:28 AM PDT -tamara-snyder,2022-03-20T18:37:19Z,- tamara-snyder submitted pull request review: [2992](https://github.com/hackforla/website/pull/2992#pullrequestreview-915137288) at 2022-03-20 11:37 AM PDT -tamara-snyder,2022-03-20T18:38:03Z,- tamara-snyder closed issue by PR 2992: [2895](https://github.com/hackforla/website/issues/2895#event-6271594175) at 2022-03-20 11:38 AM PDT -tamara-snyder,2022-03-20T19:02:57Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-915139541) at 2022-03-20 12:02 PM PDT -tamara-snyder,2022-03-22T18:06:01Z,- tamara-snyder commented on pull request: [2988](https://github.com/hackforla/website/pull/2988#issuecomment-1075459327) at 2022-03-22 11:06 AM PDT -tamara-snyder,2022-03-22T18:24:22Z,- tamara-snyder closed issue by PR 3000: [2927](https://github.com/hackforla/website/issues/2927#event-6285813727) at 2022-03-22 11:24 AM PDT -tamara-snyder,2022-03-22T18:29:36Z,- tamara-snyder commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1075483298) at 2022-03-22 11:29 AM PDT -tamara-snyder,2022-03-22T18:35:13Z,- tamara-snyder closed issue by PR 2996: [2888](https://github.com/hackforla/website/issues/2888#event-6285883114) at 2022-03-22 11:35 AM PDT -tamara-snyder,2022-03-22T18:41:19Z,- tamara-snyder closed issue by PR 2998: [2768](https://github.com/hackforla/website/issues/2768#event-6285921875) at 2022-03-22 11:41 AM PDT -tamara-snyder,2022-03-23T02:41:36Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1075856690) at 2022-03-22 07:41 PM PDT -tamara-snyder,2022-03-23T14:23:44Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-918867751) at 2022-03-23 07:23 AM PDT -tamara-snyder,2022-03-25T03:42:58Z,- tamara-snyder commented on pull request: [3007](https://github.com/hackforla/website/pull/3007#issuecomment-1078623637) at 2022-03-24 08:42 PM PDT -tamara-snyder,2022-03-25T03:50:07Z,- tamara-snyder submitted pull request review: [3007](https://github.com/hackforla/website/pull/3007#pullrequestreview-921148554) at 2022-03-24 08:50 PM PDT -tamara-snyder,2022-03-25T03:51:20Z,- tamara-snyder closed issue by PR 3007: [2760](https://github.com/hackforla/website/issues/2760#event-6304475387) at 2022-03-24 08:51 PM PDT -tamara-snyder,2022-03-25T03:53:14Z,- tamara-snyder commented on pull request: [3008](https://github.com/hackforla/website/pull/3008#issuecomment-1078627129) at 2022-03-24 08:53 PM PDT -tamara-snyder,2022-03-25T04:21:35Z,- tamara-snyder submitted pull request review: [3008](https://github.com/hackforla/website/pull/3008#pullrequestreview-921161205) at 2022-03-24 09:21 PM PDT -tamara-snyder,2022-03-25T04:45:18Z,- tamara-snyder closed issue by PR 3001: [2715](https://github.com/hackforla/website/issues/2715#event-6304640303) at 2022-03-24 09:45 PM PDT -tamara-snyder,2022-03-25T15:03:18Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-921772115) at 2022-03-25 08:03 AM PDT -tamara-snyder,2022-03-26T13:21:20Z,- tamara-snyder commented on pull request: [2996](https://github.com/hackforla/website/pull/2996#issuecomment-1079693368) at 2022-03-26 06:21 AM PDT -tamara-snyder,2022-03-26T13:27:11Z,- tamara-snyder submitted pull request review: [2977](https://github.com/hackforla/website/pull/2977#pullrequestreview-922317293) at 2022-03-26 06:27 AM PDT -tamara-snyder,2022-03-26T15:10:38Z,- tamara-snyder submitted pull request review: [3013](https://github.com/hackforla/website/pull/3013#pullrequestreview-922325691) at 2022-03-26 08:10 AM PDT -tamara-snyder,2022-03-26T15:12:55Z,- tamara-snyder closed issue by PR 3013: [2942](https://github.com/hackforla/website/issues/2942#event-6311976071) at 2022-03-26 08:12 AM PDT -tamara-snyder,2022-03-26T18:04:07Z,- tamara-snyder commented on pull request: [3013](https://github.com/hackforla/website/pull/3013#issuecomment-1079745179) at 2022-03-26 11:04 AM PDT -tamara-snyder,2022-03-27T14:08:17Z,- tamara-snyder commented on pull request: [3017](https://github.com/hackforla/website/pull/3017#issuecomment-1079939391) at 2022-03-27 07:08 AM PDT -tamara-snyder,2022-03-27T14:21:19Z,- tamara-snyder submitted pull request review: [3017](https://github.com/hackforla/website/pull/3017#pullrequestreview-922458236) at 2022-03-27 07:21 AM PDT -tamara-snyder,2022-03-28T15:32:34Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1080802576) at 2022-03-28 08:32 AM PDT -tamara-snyder,2022-03-28T15:38:34Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1080809165) at 2022-03-28 08:38 AM PDT -tamara-snyder,2022-03-28T15:41:06Z,- tamara-snyder closed issue by PR 3017: [2926](https://github.com/hackforla/website/issues/2926#event-6319660009) at 2022-03-28 08:41 AM PDT -tamara-snyder,2022-03-29T01:39:29Z,- tamara-snyder commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1081312169) at 2022-03-28 06:39 PM PDT -tamara-snyder,2022-03-29T01:42:33Z,- tamara-snyder closed issue by PR 3015: [2902](https://github.com/hackforla/website/issues/2902#event-6322778658) at 2022-03-28 06:42 PM PDT -tamara-snyder,2022-03-30T02:55:10Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1082567619) at 2022-03-29 07:55 PM PDT -tamara-snyder,2022-03-30T16:20:47Z,- tamara-snyder commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1083351397) at 2022-03-30 09:20 AM PDT -tamara-snyder,2022-04-05T18:01:41Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1089126392) at 2022-04-05 11:01 AM PDT -tamara-snyder,2022-04-05T18:41:01Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1089173845) at 2022-04-05 11:41 AM PDT -tamara-snyder,2022-04-05T20:46:55Z,- tamara-snyder submitted pull request review: [2962](https://github.com/hackforla/website/pull/2962#pullrequestreview-932496661) at 2022-04-05 01:46 PM PDT -tamara-snyder,2022-04-07T03:22:47Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1091038154) at 2022-04-06 08:22 PM PDT -tamara-snyder,2022-04-07T03:45:18Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1091047936) at 2022-04-06 08:45 PM PDT -tamara-snyder,2022-04-08T12:17:39Z,- tamara-snyder commented on pull request: [2977](https://github.com/hackforla/website/pull/2977#issuecomment-1092800133) at 2022-04-08 05:17 AM PDT -tamara-snyder,2022-04-08T13:49:47Z,- tamara-snyder commented on pull request: [3036](https://github.com/hackforla/website/pull/3036#issuecomment-1092880515) at 2022-04-08 06:49 AM PDT -tamara-snyder,2022-04-08T19:09:48Z,- tamara-snyder submitted pull request review: [2977](https://github.com/hackforla/website/pull/2977#pullrequestreview-936866654) at 2022-04-08 12:09 PM PDT -tamara-snyder,2022-04-08T19:12:37Z,- tamara-snyder closed issue by PR 2977: [2339](https://github.com/hackforla/website/issues/2339#event-6398643149) at 2022-04-08 12:12 PM PDT -tamara-snyder,2022-04-08T19:22:31Z,- tamara-snyder submitted pull request review: [3036](https://github.com/hackforla/website/pull/3036#pullrequestreview-936876689) at 2022-04-08 12:22 PM PDT -tamara-snyder,2022-04-10T17:31:11Z,- tamara-snyder commented on issue: [2664](https://github.com/hackforla/website/issues/2664#issuecomment-1094333189) at 2022-04-10 10:31 AM PDT -tamara-snyder,2022-04-12T13:18:19Z,- tamara-snyder commented on issue: [2061](https://github.com/hackforla/website/issues/2061#issuecomment-1096717474) at 2022-04-12 06:18 AM PDT -tamara-snyder,2022-04-13T03:10:13Z,- tamara-snyder opened issue: [3047](https://github.com/hackforla/website/issues/3047) at 2022-04-12 08:10 PM PDT -tamara-snyder,2022-04-13T03:11:20Z,- tamara-snyder closed issue as completed: [3047](https://github.com/hackforla/website/issues/3047#event-6423908799) at 2022-04-12 08:11 PM PDT -tamara-snyder,2022-04-13T03:19:55Z,- tamara-snyder assigned to issue: [3047](https://github.com/hackforla/website/issues/3047#event-6423908799) at 2022-04-12 08:19 PM PDT -tamara-snyder,2022-04-17T00:23:44Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1100776599) at 2022-04-16 05:23 PM PDT -tamara-snyder,2022-04-20T04:10:10Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1103451128) at 2022-04-19 09:10 PM PDT -tamara-snyder,2022-04-22T01:36:18Z,- tamara-snyder commented on pull request: [3076](https://github.com/hackforla/website/pull/3076#issuecomment-1105917350) at 2022-04-21 06:36 PM PDT -tamara-snyder,2022-04-22T01:57:08Z,- tamara-snyder submitted pull request review: [3076](https://github.com/hackforla/website/pull/3076#pullrequestreview-949366005) at 2022-04-21 06:57 PM PDT -tamara-snyder,2022-04-22T02:02:41Z,- tamara-snyder commented on pull request: [3072](https://github.com/hackforla/website/pull/3072#issuecomment-1105927319) at 2022-04-21 07:02 PM PDT -tamara-snyder,2022-04-22T02:12:37Z,- tamara-snyder submitted pull request review: [3072](https://github.com/hackforla/website/pull/3072#pullrequestreview-949372280) at 2022-04-21 07:12 PM PDT -tamara-snyder,2022-04-22T02:13:24Z,- tamara-snyder closed issue by PR 3072: [2913](https://github.com/hackforla/website/issues/2913#event-6475056474) at 2022-04-21 07:13 PM PDT -tamara-snyder,2022-04-22T02:19:01Z,- tamara-snyder commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1105936055) at 2022-04-21 07:19 PM PDT -tamara-snyder,2022-04-22T02:32:05Z,- tamara-snyder submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-949380880) at 2022-04-21 07:32 PM PDT -tamara-snyder,2022-04-26T13:56:38Z,- tamara-snyder closed issue by PR 3079: [2793](https://github.com/hackforla/website/issues/2793#event-6499097985) at 2022-04-26 06:56 AM PDT -tamara-snyder,2022-04-26T14:25:11Z,- tamara-snyder closed issue by PR 3081: [2183](https://github.com/hackforla/website/issues/2183#event-6499342361) at 2022-04-26 07:25 AM PDT -tamara-snyder,2022-04-29T13:26:15Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1113309239) at 2022-04-29 06:26 AM PDT -tamara-snyder,2022-05-06T14:37:53Z,- tamara-snyder commented on pull request: [3075](https://github.com/hackforla/website/pull/3075#issuecomment-1119694657) at 2022-05-06 07:37 AM PDT -tamara-snyder,2022-05-13T15:14:44Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1126165408) at 2022-05-13 08:14 AM PDT -tamara-snyder,2022-05-17T17:20:05Z,- tamara-snyder commented on pull request: [3146](https://github.com/hackforla/website/pull/3146#issuecomment-1129124041) at 2022-05-17 10:20 AM PDT -tamara-snyder,2022-05-17T17:39:42Z,- tamara-snyder submitted pull request review: [3146](https://github.com/hackforla/website/pull/3146#pullrequestreview-975863768) at 2022-05-17 10:39 AM PDT -tamara-snyder,2022-05-18T03:02:55Z,- tamara-snyder commented on pull request: [3087](https://github.com/hackforla/website/pull/3087#issuecomment-1129516953) at 2022-05-17 08:02 PM PDT -tamara-snyder,2022-05-20T02:09:44Z,- tamara-snyder submitted pull request review: [3087](https://github.com/hackforla/website/pull/3087#pullrequestreview-979439581) at 2022-05-19 07:09 PM PDT -tamara-snyder,2022-05-20T02:38:54Z,- tamara-snyder commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1132396852) at 2022-05-19 07:38 PM PDT -tamara-snyder,2022-05-20T02:47:15Z,- tamara-snyder commented on pull request: [3158](https://github.com/hackforla/website/pull/3158#issuecomment-1132400244) at 2022-05-19 07:47 PM PDT -tamara-snyder,2022-05-20T02:48:09Z,- tamara-snyder closed issue by PR 3158: [2633](https://github.com/hackforla/website/issues/2633#event-6647159819) at 2022-05-19 07:48 PM PDT -tamara-snyder,2022-05-20T03:05:33Z,- tamara-snyder submitted pull request review: [3075](https://github.com/hackforla/website/pull/3075#pullrequestreview-979465312) at 2022-05-19 08:05 PM PDT -tamara-snyder,2022-05-20T03:28:43Z,- tamara-snyder commented on pull request: [3160](https://github.com/hackforla/website/pull/3160#issuecomment-1132420710) at 2022-05-19 08:28 PM PDT -tamara-snyder,2022-05-20T03:38:07Z,- tamara-snyder submitted pull request review: [3160](https://github.com/hackforla/website/pull/3160#pullrequestreview-979479027) at 2022-05-19 08:38 PM PDT -tamara-snyder,2022-05-20T03:39:42Z,- tamara-snyder closed issue by PR 3160: [2423](https://github.com/hackforla/website/issues/2423#event-6647317061) at 2022-05-19 08:39 PM PDT -tamara-snyder,2022-05-20T16:05:32Z,- tamara-snyder closed issue by PR 3159: [2796](https://github.com/hackforla/website/issues/2796#event-6651908221) at 2022-05-20 09:05 AM PDT -tamara-snyder,2022-05-20T16:18:44Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1133090666) at 2022-05-20 09:18 AM PDT -tamara-snyder,2022-05-27T12:51:33Z,- tamara-snyder commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1139589962) at 2022-05-27 05:51 AM PDT -tamara-snyder,2022-05-27T12:52:01Z,- tamara-snyder closed issue by PR 3174: [2928](https://github.com/hackforla/website/issues/2928#event-6692379471) at 2022-05-27 05:52 AM PDT -tamara-snyder,2022-05-29T17:33:25Z,- tamara-snyder commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1140492793) at 2022-05-29 10:33 AM PDT -tamara-snyder,2022-05-31T22:28:04Z,- tamara-snyder commented on pull request: [3185](https://github.com/hackforla/website/pull/3185#issuecomment-1142697442) at 2022-05-31 03:28 PM PDT -tamara-snyder,2022-06-01T03:33:26Z,- tamara-snyder submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-991356929) at 2022-05-31 08:33 PM PDT -tamara-snyder,2022-06-03T11:41:18Z,- tamara-snyder commented on issue: [2141](https://github.com/hackforla/website/issues/2141#issuecomment-1145877902) at 2022-06-03 04:41 AM PDT -tamara-snyder,2022-06-06T22:26:33Z,- tamara-snyder commented on issue: [3177](https://github.com/hackforla/website/issues/3177#issuecomment-1147996123) at 2022-06-06 03:26 PM PDT -tamara-snyder,2022-06-16T18:32:17Z,- tamara-snyder opened issue: [3257](https://github.com/hackforla/website/issues/3257) at 2022-06-16 11:32 AM PDT -tamara-snyder,2022-06-17T02:43:03Z,- tamara-snyder submitted pull request review: [3162](https://github.com/hackforla/website/pull/3162#pullrequestreview-1009938688) at 2022-06-16 07:43 PM PDT -tamara-snyder,2022-06-17T02:48:18Z,- tamara-snyder closed issue by PR 3162: [3084](https://github.com/hackforla/website/issues/3084#event-6825721802) at 2022-06-16 07:48 PM PDT -tamara-snyder,2022-06-19T17:40:27Z,- tamara-snyder commented on pull request: [3260](https://github.com/hackforla/website/pull/3260#issuecomment-1159782372) at 2022-06-19 10:40 AM PDT -tamara-snyder,2022-06-19T17:47:27Z,- tamara-snyder submitted pull request review: [3260](https://github.com/hackforla/website/pull/3260#pullrequestreview-1011552653) at 2022-06-19 10:47 AM PDT -tamara-snyder,2022-06-22T00:51:18Z,- tamara-snyder opened issue: [3278](https://github.com/hackforla/website/issues/3278) at 2022-06-21 05:51 PM PDT -tamara-snyder,2022-06-22T01:03:25Z,- tamara-snyder opened issue: [3280](https://github.com/hackforla/website/issues/3280) at 2022-06-21 06:03 PM PDT -tamara-snyder,2022-06-22T01:22:13Z,- tamara-snyder opened issue: [3283](https://github.com/hackforla/website/issues/3283) at 2022-06-21 06:22 PM PDT -tamara-snyder,2022-06-22T21:15:11Z,- tamara-snyder commented on issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1163607088) at 2022-06-22 02:15 PM PDT -tamara-snyder,2022-06-22T21:15:15Z,- tamara-snyder reopened issue: [3270](https://github.com/hackforla/website/issues/3270#issuecomment-1163607088) at 2022-06-22 02:15 PM PDT -tamara-snyder,2022-06-22T21:21:41Z,- tamara-snyder commented on issue: [1750](https://github.com/hackforla/website/issues/1750#issuecomment-1163611658) at 2022-06-22 02:21 PM PDT -tamara-snyder,2022-06-23T19:11:47Z,- tamara-snyder commented on issue: [3271](https://github.com/hackforla/website/issues/3271#issuecomment-1164773641) at 2022-06-23 12:11 PM PDT -tamara-snyder,2022-06-23T19:20:58Z,- tamara-snyder commented on issue: [3268](https://github.com/hackforla/website/issues/3268#issuecomment-1164781125) at 2022-06-23 12:20 PM PDT -tamara-snyder,2022-06-23T19:32:26Z,- tamara-snyder commented on issue: [3093](https://github.com/hackforla/website/issues/3093#issuecomment-1164790823) at 2022-06-23 12:32 PM PDT -tamara-snyder,2022-06-23T19:34:38Z,- tamara-snyder commented on issue: [3267](https://github.com/hackforla/website/issues/3267#issuecomment-1164792553) at 2022-06-23 12:34 PM PDT -tamara-snyder,2022-06-23T20:10:53Z,- tamara-snyder commented on issue: [2811](https://github.com/hackforla/website/issues/2811#issuecomment-1164822692) at 2022-06-23 01:10 PM PDT -tamara-snyder,2022-06-23T20:14:01Z,- tamara-snyder commented on issue: [3245](https://github.com/hackforla/website/issues/3245#issuecomment-1164825173) at 2022-06-23 01:14 PM PDT -tamara-snyder,2022-06-23T20:18:40Z,- tamara-snyder commented on issue: [3243](https://github.com/hackforla/website/issues/3243#issuecomment-1164828912) at 2022-06-23 01:18 PM PDT -tamara-snyder,2022-06-23T20:23:16Z,- tamara-snyder commented on issue: [3242](https://github.com/hackforla/website/issues/3242#issuecomment-1164839579) at 2022-06-23 01:23 PM PDT -tamara-snyder,2022-06-23T20:29:34Z,- tamara-snyder commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1164844625) at 2022-06-23 01:29 PM PDT -tamara-snyder,2022-06-23T20:32:44Z,- tamara-snyder commented on issue: [3126](https://github.com/hackforla/website/issues/3126#issuecomment-1164847296) at 2022-06-23 01:32 PM PDT -tamara-snyder,2022-06-23T20:37:34Z,- tamara-snyder commented on issue: [3123](https://github.com/hackforla/website/issues/3123#issuecomment-1164850992) at 2022-06-23 01:37 PM PDT -tamara-snyder,2022-06-23T20:42:38Z,- tamara-snyder commented on issue: [3122](https://github.com/hackforla/website/issues/3122#issuecomment-1164854805) at 2022-06-23 01:42 PM PDT -tamara-snyder,2022-06-23T20:43:53Z,- tamara-snyder commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1164855879) at 2022-06-23 01:43 PM PDT -tamara-snyder,2022-06-23T20:52:36Z,- tamara-snyder commented on issue: [2999](https://github.com/hackforla/website/issues/2999#issuecomment-1164862549) at 2022-06-23 01:52 PM PDT -tamara-snyder,2022-06-23T20:56:53Z,- tamara-snyder commented on issue: [2964](https://github.com/hackforla/website/issues/2964#issuecomment-1164865633) at 2022-06-23 01:56 PM PDT -tamara-snyder,2022-06-23T21:00:17Z,- tamara-snyder commented on issue: [2592](https://github.com/hackforla/website/issues/2592#issuecomment-1164868210) at 2022-06-23 02:00 PM PDT -tamara-snyder,2022-06-23T21:00:48Z,- tamara-snyder commented on issue: [3107](https://github.com/hackforla/website/issues/3107#issuecomment-1164868613) at 2022-06-23 02:00 PM PDT -tamara-snyder,2022-06-23T21:34:49Z,- tamara-snyder assigned to issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1162735905) at 2022-06-23 02:34 PM PDT -tamara-snyder,2022-06-24T00:01:40Z,- tamara-snyder closed issue by PR 2962: [2155](https://github.com/hackforla/website/issues/2155#event-6870535073) at 2022-06-23 05:01 PM PDT -tamara-snyder,2022-06-24T00:04:24Z,- tamara-snyder commented on pull request: [3259](https://github.com/hackforla/website/pull/3259#issuecomment-1165029750) at 2022-06-23 05:04 PM PDT -tamara-snyder,2022-06-24T13:14:07Z,- tamara-snyder submitted pull request review: [3146](https://github.com/hackforla/website/pull/3146#pullrequestreview-1018462470) at 2022-06-24 06:14 AM PDT -tamara-snyder,2022-06-26T16:44:33Z,- tamara-snyder assigned to issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-06-26 09:44 AM PDT -tamara-snyder,2022-06-26T18:53:49Z,- tamara-snyder opened issue: [3310](https://github.com/hackforla/website/issues/3310) at 2022-06-26 11:53 AM PDT -tamara-snyder,2022-06-26T19:06:45Z,- tamara-snyder unassigned from issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-06-26 12:06 PM PDT -tamara-snyder,2022-06-26T19:06:49Z,- tamara-snyder assigned to issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-06-26 12:06 PM PDT -tamara-snyder,2022-06-27T01:40:32Z,- tamara-snyder commented on issue: [3307](https://github.com/hackforla/website/issues/3307#issuecomment-1166727597) at 2022-06-26 06:40 PM PDT -tamara-snyder,2022-06-27T01:59:40Z,- tamara-snyder commented on issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1166741594) at 2022-06-26 06:59 PM PDT -tamara-snyder,2022-06-27T20:06:29Z,- tamara-snyder commented on issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1167829318) at 2022-06-27 01:06 PM PDT -tamara-snyder,2022-06-27T20:06:29Z,- tamara-snyder reopened issue: [3148](https://github.com/hackforla/website/issues/3148#issuecomment-1167829318) at 2022-06-27 01:06 PM PDT -tamara-snyder,2022-06-27T20:14:29Z,- tamara-snyder commented on issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1167836733) at 2022-06-27 01:14 PM PDT -tamara-snyder,2022-06-27T20:14:30Z,- tamara-snyder reopened issue: [3063](https://github.com/hackforla/website/issues/3063#issuecomment-1167836733) at 2022-06-27 01:14 PM PDT -tamara-snyder,2022-06-27T20:20:18Z,- tamara-snyder commented on issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1167842904) at 2022-06-27 01:20 PM PDT -tamara-snyder,2022-06-27T20:20:18Z,- tamara-snyder reopened issue: [3152](https://github.com/hackforla/website/issues/3152#issuecomment-1167842904) at 2022-06-27 01:20 PM PDT -tamara-snyder,2022-07-06T02:35:59Z,- tamara-snyder submitted pull request review: [3332](https://github.com/hackforla/website/pull/3332#pullrequestreview-1029421366) at 2022-07-05 07:35 PM PDT -tamara-snyder,2022-07-11T21:51:46Z,- tamara-snyder unassigned from issue: [3132](https://github.com/hackforla/website/issues/3132#issuecomment-1125135113) at 2022-07-11 02:51 PM PDT -tamara-snyder,2022-07-13T02:29:13Z,- tamara-snyder commented on pull request: [3362](https://github.com/hackforla/website/pull/3362#issuecomment-1182695628) at 2022-07-12 07:29 PM PDT -tamara-snyder,2022-07-22T02:46:35Z,- tamara-snyder unassigned from issue: [3175](https://github.com/hackforla/website/issues/3175#issuecomment-1189771039) at 2022-07-21 07:46 PM PDT -tamara-snyder,2024-08-21T03:03:23Z,- tamara-snyder opened issue: [7329](https://github.com/hackforla/website/issues/7329) at 2024-08-20 08:03 PM PDT -tamara-snyder,2024-08-21T03:04:09Z,- tamara-snyder assigned to issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2300449843) at 2024-08-20 08:04 PM PDT -tamara-snyder,2024-08-22T18:32:51Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2305394985) at 2024-08-22 11:32 AM PDT -tamara-snyder,2024-08-24T14:09:23Z,- tamara-snyder assigned to issue: [7239](https://github.com/hackforla/website/issues/7239) at 2024-08-24 07:09 AM PDT -tamara-snyder,2024-08-24T14:10:40Z,- tamara-snyder unassigned from issue: [7239](https://github.com/hackforla/website/issues/7239#issuecomment-2308407830) at 2024-08-24 07:10 AM PDT -tamara-snyder,2024-08-24T14:17:31Z,- tamara-snyder assigned to issue: [7147](https://github.com/hackforla/website/issues/7147) at 2024-08-24 07:17 AM PDT -tamara-snyder,2024-08-24T14:34:51Z,- tamara-snyder commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2308415307) at 2024-08-24 07:34 AM PDT -tamara-snyder,2024-08-24T18:23:44Z,- tamara-snyder commented on pull request: [7347](https://github.com/hackforla/website/pull/7347#issuecomment-2308484468) at 2024-08-24 11:23 AM PDT -tamara-snyder,2024-08-25T03:49:43Z,- tamara-snyder submitted pull request review: [7347](https://github.com/hackforla/website/pull/7347#pullrequestreview-2259081124) at 2024-08-24 08:49 PM PDT -tamara-snyder,2024-08-25T13:03:25Z,- tamara-snyder commented on issue: [7147](https://github.com/hackforla/website/issues/7147#issuecomment-2308827698) at 2024-08-25 06:03 AM PDT -tamara-snyder,2024-08-25T13:53:55Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308856029) at 2024-08-25 06:53 AM PDT -tamara-snyder,2024-08-25T13:55:22Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308856903) at 2024-08-25 06:55 AM PDT -tamara-snyder,2024-08-25T13:57:24Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308858535) at 2024-08-25 06:57 AM PDT -tamara-snyder,2024-08-25T17:22:58Z,- tamara-snyder commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2308931428) at 2024-08-25 10:22 AM PDT -tamara-snyder,2024-08-25T19:05:26Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2308960017) at 2024-08-25 12:05 PM PDT -tamara-snyder,2024-08-25T19:24:43Z,- tamara-snyder submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2259360020) at 2024-08-25 12:24 PM PDT -tamara-snyder,2024-08-27T02:45:33Z,- tamara-snyder commented on pull request: [7325](https://github.com/hackforla/website/pull/7325#issuecomment-2311462161) at 2024-08-26 07:45 PM PDT -tamara-snyder,2024-09-04T02:38:00Z,- tamara-snyder submitted pull request review: [7325](https://github.com/hackforla/website/pull/7325#pullrequestreview-2278826800) at 2024-09-03 07:38 PM PDT -tamara-snyder,2024-09-07T13:29:43Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2335188391) at 2024-09-07 06:29 AM PDT -tamara-snyder,2024-09-07T13:39:38Z,- tamara-snyder assigned to issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2282176682) at 2024-09-07 06:39 AM PDT -tamara-snyder,2024-09-07T13:42:40Z,- tamara-snyder commented on issue: [7183](https://github.com/hackforla/website/issues/7183#issuecomment-2335191713) at 2024-09-07 06:42 AM PDT -tamara-snyder,2024-09-07T14:41:38Z,- tamara-snyder opened pull request: [7408](https://github.com/hackforla/website/pull/7408) at 2024-09-07 07:41 AM PDT -tamara-snyder,2024-09-09T03:31:17Z,- tamara-snyder pull request merged: [7408](https://github.com/hackforla/website/pull/7408#event-14176417526) at 2024-09-08 08:31 PM PDT -tamara-snyder,2024-09-10T22:42:58Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2342290791) at 2024-09-10 03:42 PM PDT -tamara-snyder,2024-09-11T01:32:09Z,- tamara-snyder commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2342440137) at 2024-09-10 06:32 PM PDT -tamara-snyder,2024-09-11T01:39:05Z,- tamara-snyder submitted pull request review: [7427](https://github.com/hackforla/website/pull/7427#pullrequestreview-2294790407) at 2024-09-10 06:39 PM PDT -tamara-snyder,2024-09-15T18:01:00Z,- tamara-snyder assigned to issue: [7411](https://github.com/hackforla/website/issues/7411) at 2024-09-15 11:01 AM PDT -tamara-snyder,2024-09-15T18:02:31Z,- tamara-snyder commented on issue: [7411](https://github.com/hackforla/website/issues/7411#issuecomment-2351704676) at 2024-09-15 11:02 AM PDT -tamara-snyder,2024-09-15T19:19:44Z,- tamara-snyder opened pull request: [7461](https://github.com/hackforla/website/pull/7461) at 2024-09-15 12:19 PM PDT -tamara-snyder,2024-09-16T19:49:36Z,- tamara-snyder pull request merged: [7461](https://github.com/hackforla/website/pull/7461#event-14279050847) at 2024-09-16 12:49 PM PDT -tamara-snyder,2024-09-22T13:36:31Z,- tamara-snyder commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2366791591) at 2024-09-22 06:36 AM PDT -tamara-snyder,2024-09-22T14:10:51Z,- tamara-snyder submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2320863136) at 2024-09-22 07:10 AM PDT -tamara-snyder,2024-09-26T11:39:08Z,- tamara-snyder submitted pull request review: [7501](https://github.com/hackforla/website/pull/7501#pullrequestreview-2330943038) at 2024-09-26 04:39 AM PDT -tamara-snyder,2024-09-26T11:54:58Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376729557) at 2024-09-26 04:54 AM PDT -tamara-snyder,2024-09-26T11:59:55Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376739449) at 2024-09-26 04:59 AM PDT -tamara-snyder,2024-09-26T12:03:32Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376747103) at 2024-09-26 05:03 AM PDT -tamara-snyder,2024-09-26T12:30:01Z,- tamara-snyder commented on pull request: [7501](https://github.com/hackforla/website/pull/7501#issuecomment-2376820150) at 2024-09-26 05:30 AM PDT -tamara-snyder,2024-09-26T12:31:18Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2376822864) at 2024-09-26 05:31 AM PDT -tamara-snyder,2024-10-10T15:41:18Z,- tamara-snyder commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2405467166) at 2024-10-10 08:41 AM PDT -tamara-snyder,2024-10-12T00:56:18Z,- tamara-snyder commented on pull request: [7538](https://github.com/hackforla/website/pull/7538#issuecomment-2408277224) at 2024-10-11 05:56 PM PDT -tamara-snyder,2024-10-24T16:31:29Z,- tamara-snyder commented on issue: [7329](https://github.com/hackforla/website/issues/7329#issuecomment-2435746262) at 2024-10-24 09:31 AM PDT -tamara-snyder,2024-11-12T14:18:38Z,- tamara-snyder commented on pull request: [7713](https://github.com/hackforla/website/pull/7713#issuecomment-2470660224) at 2024-11-12 06:18 AM PST -tamara-snyder,2024-11-15T03:17:45Z,- tamara-snyder submitted pull request review: [7713](https://github.com/hackforla/website/pull/7713#pullrequestreview-2437579407) at 2024-11-14 07:17 PM PST -tamurafatherree,2019-07-23T03:35:49Z,- tamurafatherree assigned to issue: [134](https://github.com/hackforla/website/issues/134) at 2019-07-22 08:35 PM PDT -tan-zhou,2020-12-27T17:11:18Z,- tan-zhou commented on issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2020-12-27 09:11 AM PST -TaniaKhan04,2021-04-15T23:39:30Z,- TaniaKhan04 commented on issue: [1395](https://github.com/hackforla/website/issues/1395#issuecomment-820804845) at 2021-04-15 04:39 PM PDT -tanmay72003,2025-02-20T13:57:15Z,- tanmay72003 opened pull request: [7930](https://github.com/hackforla/website/pull/7930) at 2025-02-20 05:57 AM PST -tanmay72003,2025-02-20T13:57:30Z,- tanmay72003 pull request closed w/o merging: [7930](https://github.com/hackforla/website/pull/7930#event-16382826191) at 2025-02-20 05:57 AM PST -tanmay72003,2025-02-21T05:34:08Z,- tanmay72003 commented on pull request: [7930](https://github.com/hackforla/website/pull/7930#issuecomment-2673508444) at 2025-02-20 09:34 PM PST -tarang100,2020-12-08T21:55:31Z,- tarang100 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-719046150) at 2020-12-08 01:55 PM PST -tarang100,2020-12-20T20:50:33Z,- tarang100 assigned to issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-745978371) at 2020-12-20 12:50 PM PST -tarang100,2020-12-20T21:30:27Z,- tarang100 assigned to issue: [927](https://github.com/hackforla/website/issues/927) at 2020-12-20 01:30 PM PST -tarang100,2020-12-21T17:01:57Z,- tarang100 commented on issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-749084217) at 2020-12-21 09:01 AM PST -tarang100,2020-12-21T17:02:44Z,- tarang100 unassigned from issue: [603](https://github.com/hackforla/website/issues/603#issuecomment-749084217) at 2020-12-21 09:02 AM PST -tarang100,2020-12-22T21:23:31Z,- tarang100 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-748644518) at 2020-12-22 01:23 PM PST -tarang100,2020-12-22T22:03:51Z,- tarang100 assigned to issue: [867](https://github.com/hackforla/website/issues/867) at 2020-12-22 02:03 PM PST -tarang100,2020-12-27T12:49:29Z,- tarang100 opened issue: [1033](https://github.com/hackforla/website/issues/1033) at 2020-12-27 04:49 AM PST -tarang100,2020-12-27T12:50:15Z,- tarang100 assigned to issue: [1033](https://github.com/hackforla/website/issues/1033) at 2020-12-27 04:50 AM PST -tarang100,2020-12-27T13:04:43Z,- tarang100 opened issue: [953](https://github.com/hackforla/website/issues/953) at 2020-12-27 05:04 AM PST -tarang100,2020-12-27T13:04:49Z,- tarang100 assigned to issue: [953](https://github.com/hackforla/website/issues/953) at 2020-12-27 05:04 AM PST -tarang100,2020-12-29T21:42:45Z,- tarang100 opened pull request: [883](https://github.com/hackforla/website/pull/883) at 2020-12-29 01:42 PM PST -tarang100,2020-12-29T21:46:15Z,- tarang100 pull request merged: [883](https://github.com/hackforla/website/pull/883#event-4155789929) at 2020-12-29 01:46 PM PST -tarang100,2020-12-29T21:49:58Z,- tarang100 submitted pull request review: [884](https://github.com/hackforla/website/pull/884#pullrequestreview-559714560) at 2020-12-29 01:49 PM PST -tarang100,2020-12-29T22:17:17Z,- tarang100 opened issue: [890](https://github.com/hackforla/website/issues/890) at 2020-12-29 02:17 PM PST -tarang100,2020-12-29T22:29:27Z,- tarang100 assigned to issue: [890](https://github.com/hackforla/website/issues/890) at 2020-12-29 02:29 PM PST -tarang100,2021-01-03T14:40:51Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-753627400) at 2021-01-03 06:40 AM PST -tarang100,2021-01-03T20:30:31Z,- tarang100 opened issue: [907](https://github.com/hackforla/website/issues/907) at 2021-01-03 12:30 PM PST -tarang100,2021-01-03T20:34:31Z,- tarang100 opened issue: [908](https://github.com/hackforla/website/issues/908) at 2021-01-03 12:34 PM PST -tarang100,2021-01-03T20:37:06Z,- tarang100 opened issue: [910](https://github.com/hackforla/website/issues/910) at 2021-01-03 12:37 PM PST -tarang100,2021-01-06T17:16:19Z,- tarang100 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-754520077) at 2021-01-06 09:16 AM PST -tarang100,2021-01-06T17:54:33Z,- tarang100 opened issue: [918](https://github.com/hackforla/website/issues/918) at 2021-01-06 09:54 AM PST -tarang100,2021-01-10T19:53:41Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-757533816) at 2021-01-10 11:53 AM PST -tarang100,2021-01-10T19:55:47Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-757534094) at 2021-01-10 11:55 AM PST -tarang100,2021-01-10T20:42:28Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-757540777) at 2021-01-10 12:42 PM PST -tarang100,2021-01-10T21:09:22Z,- tarang100 unassigned from issue: [927](https://github.com/hackforla/website/issues/927#issuecomment-751492538) at 2021-01-10 01:09 PM PST -tarang100,2021-01-10T21:35:48Z,- tarang100 commented on issue: [587](https://github.com/hackforla/website/issues/587#issuecomment-757547890) at 2021-01-10 01:35 PM PST -tarang100,2021-01-11T16:08:42Z,- tarang100 assigned to issue: [889](https://github.com/hackforla/website/issues/889) at 2021-01-11 08:08 AM PST -tarang100,2021-01-11T16:10:44Z,- tarang100 assigned to issue: [949](https://github.com/hackforla/website/issues/949) at 2021-01-11 08:10 AM PST -tarang100,2021-01-11T16:18:50Z,- tarang100 assigned to issue: [954](https://github.com/hackforla/website/issues/954) at 2021-01-11 08:18 AM PST -tarang100,2021-01-13T18:58:52Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-759651774) at 2021-01-13 10:58 AM PST -tarang100,2021-01-13T19:11:27Z,- tarang100 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-759658457) at 2021-01-13 11:11 AM PST -tarang100,2021-01-17T17:26:26Z,- tarang100 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-761847764) at 2021-01-17 09:26 AM PST -tarang100,2021-01-17T18:14:42Z,- tarang100 commented on issue: [934](https://github.com/hackforla/website/issues/934#issuecomment-761855430) at 2021-01-17 10:14 AM PST -tarang100,2021-01-17T18:15:15Z,- tarang100 commented on issue: [934](https://github.com/hackforla/website/issues/934#issuecomment-761855529) at 2021-01-17 10:15 AM PST -tarang100,2021-01-17T18:29:15Z,- tarang100 commented on issue: [906](https://github.com/hackforla/website/issues/906#issuecomment-761857788) at 2021-01-17 10:29 AM PST -tarang100,2021-01-17T18:45:03Z,- tarang100 closed issue by PR 924: [922](https://github.com/hackforla/website/issues/922#event-4215417676) at 2021-01-17 10:45 AM PST -tarang100,2021-01-18T14:37:42Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-762290129) at 2021-01-18 06:37 AM PST -tarang100,2021-01-18T14:54:52Z,- tarang100 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-762300160) at 2021-01-18 06:54 AM PST -tarang100,2021-01-18T15:38:01Z,- tarang100 commented on issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762325102) at 2021-01-18 07:38 AM PST -tarang100,2021-01-19T15:25:43Z,- tarang100 commented on issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762915062) at 2021-01-19 07:25 AM PST -tarang100,2021-01-19T15:30:16Z,- tarang100 unassigned from issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762915062) at 2021-01-19 07:30 AM PST -tarang100,2021-01-19T17:31:45Z,- tarang100 opened issue: [950](https://github.com/hackforla/website/issues/950) at 2021-01-19 09:31 AM PST -tarang100,2021-01-21T18:01:32Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764833019) at 2021-01-21 10:01 AM PST -tarang100,2021-01-21T18:12:39Z,- tarang100 unassigned from issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764833019) at 2021-01-21 10:12 AM PST -tarang100,2021-01-21T18:14:21Z,- tarang100 commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764840726) at 2021-01-21 10:14 AM PST -tarang100,2021-01-21T18:26:28Z,- tarang100 commented on issue: [867](https://github.com/hackforla/website/issues/867#issuecomment-764847719) at 2021-01-21 10:26 AM PST -tarang100,2021-01-21T18:41:04Z,- tarang100 commented on issue: [889](https://github.com/hackforla/website/issues/889#issuecomment-764855611) at 2021-01-21 10:41 AM PST -tarang100,2021-01-22T03:31:34Z,- tarang100 commented on issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-21 07:31 PM PST -tarang100,2021-01-22T03:32:06Z,- tarang100 unassigned from issue: [954](https://github.com/hackforla/website/issues/954#issuecomment-765096931) at 2021-01-21 07:32 PM PST -tarang100,2021-01-22T03:41:47Z,- tarang100 commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-765099890) at 2021-01-21 07:41 PM PST -tarang100,2021-01-24T09:48:11Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-766319916) at 2021-01-24 01:48 AM PST -tarang100,2021-01-24T20:36:31Z,- tarang100 opened issue: [964](https://github.com/hackforla/website/issues/964) at 2021-01-24 12:36 PM PST -tarang100,2021-01-24T20:39:46Z,- tarang100 commented on issue: [889](https://github.com/hackforla/website/issues/889#issuecomment-766428053) at 2021-01-24 12:39 PM PST -tarang100,2021-01-24T20:39:58Z,- tarang100 closed issue as completed: [889](https://github.com/hackforla/website/issues/889#event-4242904340) at 2021-01-24 12:39 PM PST -tarang100,2021-01-25T13:56:51Z,- tarang100 opened issue: [969](https://github.com/hackforla/website/issues/969) at 2021-01-25 05:56 AM PST -tarang100,2021-01-25T13:56:51Z,- tarang100 assigned to issue: [969](https://github.com/hackforla/website/issues/969) at 2021-01-25 05:56 AM PST -tarang100,2021-01-27T16:42:02Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-768414388) at 2021-01-27 08:42 AM PST -tarang100,2021-01-30T05:39:25Z,- tarang100 assigned to issue: [950](https://github.com/hackforla/website/issues/950) at 2021-01-29 09:39 PM PST -tarang100,2021-01-30T06:50:48Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-770168473) at 2021-01-29 10:50 PM PST -tarang100,2021-01-31T17:17:15Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-770416091) at 2021-01-31 09:17 AM PST -tarang100,2021-01-31T18:29:58Z,- tarang100 commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-770427447) at 2021-01-31 10:29 AM PST -tarang100,2021-01-31T18:51:31Z,- tarang100 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-770430463) at 2021-01-31 10:51 AM PST -tarang100,2021-01-31T18:59:16Z,- tarang100 commented on issue: [918](https://github.com/hackforla/website/issues/918#issuecomment-770431566) at 2021-01-31 10:59 AM PST -tarang100,2021-01-31T19:24:55Z,- tarang100 commented on issue: [963](https://github.com/hackforla/website/issues/963#issuecomment-770435980) at 2021-01-31 11:24 AM PST -tarang100,2021-01-31T19:48:11Z,- tarang100 closed issue as completed: [907](https://github.com/hackforla/website/issues/907#event-4270691406) at 2021-01-31 11:48 AM PST -tarang100,2021-02-03T17:32:20Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-772686719) at 2021-02-03 09:32 AM PST -tarang100,2021-02-03T18:30:04Z,- tarang100 opened issue: [994](https://github.com/hackforla/website/issues/994) at 2021-02-03 10:30 AM PST -tarang100,2021-02-03T20:07:05Z,- tarang100 commented on issue: [890](https://github.com/hackforla/website/issues/890#issuecomment-772787179) at 2021-02-03 12:07 PM PST -tarang100,2021-02-03T20:07:05Z,- tarang100 closed issue as completed: [890](https://github.com/hackforla/website/issues/890#event-4287305930) at 2021-02-03 12:07 PM PST -tarang100,2021-02-03T20:11:34Z,- tarang100 assigned to issue: [844](https://github.com/hackforla/website/issues/844) at 2021-02-03 12:11 PM PST -tarang100,2021-02-04T00:37:33Z,- tarang100 assigned to issue: [854](https://github.com/hackforla/website/issues/854) at 2021-02-03 04:37 PM PST -tarang100,2021-02-06T11:55:38Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-774461659) at 2021-02-06 03:55 AM PST -tarang100,2021-02-10T03:27:31Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776412788) at 2021-02-09 07:27 PM PST -tarang100,2021-02-10T10:14:37Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-776600687) at 2021-02-10 02:14 AM PST -tarang100,2021-02-10T17:51:14Z,- tarang100 commented on issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-02-10 09:51 AM PST -tarang100,2021-02-10T20:10:41Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-776992435) at 2021-02-10 12:10 PM PST -tarang100,2021-02-14T11:58:04Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-778767611) at 2021-02-14 03:58 AM PST -tarang100,2021-02-14T12:49:19Z,- tarang100 opened issue: [1047](https://github.com/hackforla/website/issues/1047) at 2021-02-14 04:49 AM PST -tarang100,2021-02-14T13:05:40Z,- tarang100 opened issue: [1048](https://github.com/hackforla/website/issues/1048) at 2021-02-14 05:05 AM PST -tarang100,2021-02-14T13:14:48Z,- tarang100 opened issue: [1049](https://github.com/hackforla/website/issues/1049) at 2021-02-14 05:14 AM PST -tarang100,2021-02-14T13:34:38Z,- tarang100 opened issue: [1050](https://github.com/hackforla/website/issues/1050) at 2021-02-14 05:34 AM PST -tarang100,2021-02-14T18:26:53Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-778819281) at 2021-02-14 10:26 AM PST -tarang100,2021-02-14T18:42:43Z,- tarang100 opened issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:42 AM PST -tarang100,2021-02-14T18:47:39Z,- tarang100 assigned to issue: [1054](https://github.com/hackforla/website/issues/1054) at 2021-02-14 10:47 AM PST -tarang100,2021-02-14T19:19:08Z,- tarang100 assigned to issue: [915](https://github.com/hackforla/website/issues/915#event-4203112330) at 2021-02-14 11:19 AM PST -tarang100,2021-02-17T17:14:00Z,- tarang100 commented on issue: [915](https://github.com/hackforla/website/issues/915#issuecomment-780710318) at 2021-02-17 09:14 AM PST -tarang100,2021-02-17T18:29:14Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-780758267) at 2021-02-17 10:29 AM PST -tarang100,2021-02-17T19:41:06Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-780803478) at 2021-02-17 11:41 AM PST -tarang100,2021-02-18T05:54:57Z,- tarang100 assigned to issue: [1074](https://github.com/hackforla/website/issues/1074) at 2021-02-17 09:54 PM PST -tarang100,2021-02-20T11:06:49Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-782607509) at 2021-02-20 03:06 AM PST -tarang100,2021-02-21T07:57:57Z,- tarang100 commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-782816584) at 2021-02-20 11:57 PM PST -tarang100,2021-02-21T17:59:56Z,- tarang100 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-782898041) at 2021-02-21 09:59 AM PST -tarang100,2021-02-21T18:43:28Z,- tarang100 commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-782905054) at 2021-02-21 10:43 AM PST -tarang100,2021-03-01T18:36:40Z,- tarang100 unassigned from issue: [1033](https://github.com/hackforla/website/issues/1033#issuecomment-776895151) at 2021-03-01 10:36 AM PST -tarang100,2021-03-01T18:49:26Z,- tarang100 unassigned from issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-788182866) at 2021-03-01 10:49 AM PST -tarang100,2021-03-03T17:05:59Z,- tarang100 commented on issue: [915](https://github.com/hackforla/website/issues/915#issuecomment-789891641) at 2021-03-03 09:05 AM PST -tarang100,2021-03-07T18:08:57Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-792326012) at 2021-03-07 10:08 AM PST -tarang100,2021-03-07T18:09:58Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-792326190) at 2021-03-07 10:09 AM PST -tarang100,2021-03-07T19:05:35Z,- tarang100 commented on issue: [844](https://github.com/hackforla/website/issues/844#issuecomment-792334484) at 2021-03-07 11:05 AM PST -tarang100,2021-03-07T19:05:35Z,- tarang100 closed issue as completed: [844](https://github.com/hackforla/website/issues/844#event-4418361368) at 2021-03-07 11:05 AM PST -tarang100,2021-03-10T15:13:05Z,- tarang100 commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-795582340) at 2021-03-10 07:13 AM PST -tarang100,2021-03-10T15:15:36Z,- tarang100 commented on issue: [1074](https://github.com/hackforla/website/issues/1074#issuecomment-795586586) at 2021-03-10 07:15 AM PST -tarang100,2021-03-10T15:15:36Z,- tarang100 closed issue as completed: [1074](https://github.com/hackforla/website/issues/1074#event-4437105566) at 2021-03-10 07:15 AM PST -tarang100,2021-03-10T15:25:45Z,- tarang100 commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-795601197) at 2021-03-10 07:25 AM PST -tarang100,2021-03-10T15:27:55Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-795604142) at 2021-03-10 07:27 AM PST -tarang100,2021-03-10T15:30:07Z,- tarang100 commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-795607427) at 2021-03-10 07:30 AM PST -tarang100,2021-03-10T18:37:22Z,- tarang100 commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-795884145) at 2021-03-10 10:37 AM PST -tarang100,2021-03-10T18:39:51Z,- tarang100 commented on issue: [958](https://github.com/hackforla/website/issues/958#issuecomment-795887764) at 2021-03-10 10:39 AM PST -tarang100,2021-03-10T18:40:37Z,- tarang100 commented on issue: [1027](https://github.com/hackforla/website/issues/1027#issuecomment-795888934) at 2021-03-10 10:40 AM PST -tarang100,2021-03-10T18:43:37Z,- tarang100 commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-795893774) at 2021-03-10 10:43 AM PST -tarang100,2021-03-10T18:46:51Z,- tarang100 commented on issue: [981](https://github.com/hackforla/website/issues/981#issuecomment-795898406) at 2021-03-10 10:46 AM PST -tarang100,2021-03-10T18:50:25Z,- tarang100 commented on issue: [1076](https://github.com/hackforla/website/issues/1076#issuecomment-795903230) at 2021-03-10 10:50 AM PST -tarang100,2021-03-10T19:36:53Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-795969316) at 2021-03-10 11:36 AM PST -tarang100,2021-03-10T19:37:19Z,- tarang100 unassigned from issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-795969316) at 2021-03-10 11:37 AM PST -tarang100,2021-03-10T19:40:19Z,- tarang100 commented on issue: [1054](https://github.com/hackforla/website/issues/1054#issuecomment-795974096) at 2021-03-10 11:40 AM PST -tarang100,2021-03-10T19:57:39Z,- tarang100 commented on issue: [632](https://github.com/hackforla/website/issues/632#issuecomment-796000272) at 2021-03-10 11:57 AM PST -tarang100,2021-03-10T20:07:26Z,- tarang100 opened issue: [1196](https://github.com/hackforla/website/issues/1196) at 2021-03-10 12:07 PM PST -tarang100,2021-03-10T20:15:43Z,- tarang100 assigned to issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-795601197) at 2021-03-10 12:15 PM PST -tarang100,2021-03-14T17:25:42Z,- tarang100 commented on issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-798945297) at 2021-03-14 10:25 AM PDT -tarang100,2021-03-17T06:28:43Z,- tarang100 opened pull request: [1218](https://github.com/hackforla/website/pull/1218) at 2021-03-16 11:28 PM PDT -tarang100,2021-03-17T06:31:21Z,- tarang100 assigned to issue: [854](https://github.com/hackforla/website/issues/854#issuecomment-798945297) at 2021-03-16 11:31 PM PDT -tarang100,2021-03-17T17:17:51Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-801262664) at 2021-03-17 10:17 AM PDT -tarang100,2021-03-17T18:15:11Z,- tarang100 pull request merged: [1218](https://github.com/hackforla/website/pull/1218#event-4471860228) at 2021-03-17 11:15 AM PDT -tarang100,2021-03-19T03:58:07Z,- tarang100 assigned to issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-802520761) at 2021-03-18 08:58 PM PDT -tarang100,2021-03-21T16:38:41Z,- tarang100 commented on issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-803618220) at 2021-03-21 09:38 AM PDT -tarang100,2021-03-21T16:40:21Z,- tarang100 unassigned from issue: [1196](https://github.com/hackforla/website/issues/1196#issuecomment-803618220) at 2021-03-21 09:40 AM PDT -tarang100,2021-03-21T16:48:00Z,- tarang100 commented on issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-803620121) at 2021-03-21 09:48 AM PDT -tarang100,2021-03-24T17:27:42Z,- tarang100 commented on issue: [969](https://github.com/hackforla/website/issues/969#issuecomment-806018314) at 2021-03-24 10:27 AM PDT -tarang100,2021-03-28T17:00:29Z,- tarang100 commented on issue: [799](https://github.com/hackforla/website/issues/799#issuecomment-808924727) at 2021-03-28 10:00 AM PDT -tarang100,2021-03-28T17:35:43Z,- tarang100 assigned to issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-807862490) at 2021-03-28 10:35 AM PDT -tarang100,2021-03-31T17:11:40Z,- tarang100 commented on issue: [209](https://github.com/hackforla/website/issues/209#issuecomment-811261398) at 2021-03-31 10:11 AM PDT -tarang100,2021-03-31T17:44:02Z,- tarang100 opened issue: [1341](https://github.com/hackforla/website/issues/1341) at 2021-03-31 10:44 AM PDT -tarang100,2021-03-31T17:50:56Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811287661) at 2021-03-31 10:50 AM PDT -tarang100,2021-03-31T17:52:29Z,- tarang100 opened issue: [1342](https://github.com/hackforla/website/issues/1342) at 2021-03-31 10:52 AM PDT -tarang100,2021-03-31T18:25:38Z,- tarang100 commented on issue: [1105](https://github.com/hackforla/website/issues/1105#issuecomment-811310035) at 2021-03-31 11:25 AM PDT -tarang100,2021-03-31T18:42:47Z,- tarang100 opened issue: [1343](https://github.com/hackforla/website/issues/1343) at 2021-03-31 11:42 AM PDT -tarang100,2021-03-31T19:09:37Z,- tarang100 commented on issue: [1085](https://github.com/hackforla/website/issues/1085#issuecomment-811357683) at 2021-03-31 12:09 PM PDT -tarang100,2021-03-31T19:22:03Z,- tarang100 commented on issue: [1259](https://github.com/hackforla/website/issues/1259#issuecomment-811369691) at 2021-03-31 12:22 PM PDT -tarang100,2021-03-31T19:24:20Z,- tarang100 commented on issue: [1286](https://github.com/hackforla/website/issues/1286#issuecomment-811371994) at 2021-03-31 12:24 PM PDT -tarang100,2021-04-27T01:55:21Z,- tarang100 assigned to issue: [1469](https://github.com/hackforla/website/issues/1469) at 2021-04-26 06:55 PM PDT -tarang100,2021-06-06T16:15:11Z,- tarang100 unassigned from issue: [1469](https://github.com/hackforla/website/issues/1469#issuecomment-855422617) at 2021-06-06 09:15 AM PDT -tarang100,2021-06-12T10:02:23Z,- tarang100 unassigned from issue: [950](https://github.com/hackforla/website/issues/950#issuecomment-831556057) at 2021-06-12 03:02 AM PDT -Tarrantul99,6478,SKILLS ISSUE -Tarrantul99,2024-03-20T03:05:14Z,- Tarrantul99 opened issue: [6478](https://github.com/hackforla/website/issues/6478) at 2024-03-19 08:05 PM PDT -Tarrantul99,2024-03-21T20:10:41Z,- Tarrantul99 assigned to issue: [6478](https://github.com/hackforla/website/issues/6478) at 2024-03-21 01:10 PM PDT -Tarrantul99,2024-03-21T21:42:56Z,- Tarrantul99 commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2013845960) at 2024-03-21 02:42 PM PDT -Tarrantul99,2024-03-21T21:42:56Z,- Tarrantul99 closed issue as completed: [6478](https://github.com/hackforla/website/issues/6478#event-12207703051) at 2024-03-21 02:42 PM PDT -Tarrantul99,2024-04-07T19:03:53Z,- Tarrantul99 commented on issue: [6478](https://github.com/hackforla/website/issues/6478#issuecomment-2041571957) at 2024-04-07 12:03 PM PDT -taylorbeee,6523,SKILLS ISSUE -taylorbeee,2024-03-27T02:44:01Z,- taylorbeee opened issue: [6523](https://github.com/hackforla/website/issues/6523) at 2024-03-26 07:44 PM PDT -taylorbeee,2024-03-27T02:44:12Z,- taylorbeee assigned to issue: [6523](https://github.com/hackforla/website/issues/6523) at 2024-03-26 07:44 PM PDT -taylorbeee,2024-04-06T00:36:25Z,- taylorbeee closed issue by PR 6580: [6559](https://github.com/hackforla/website/issues/6559#event-12380279399) at 2024-04-05 05:36 PM PDT -taylorbeee,2024-04-06T00:36:47Z,- taylorbeee reopened issue: [6559](https://github.com/hackforla/website/issues/6559#event-12380279399) at 2024-04-05 05:36 PM PDT -taylorbeee,2024-04-06T00:38:35Z,- taylorbeee commented on issue: [6559](https://github.com/hackforla/website/issues/6559#issuecomment-2040827332) at 2024-04-05 05:38 PM PDT -taylorbeee,2024-04-11T00:04:04Z,- taylorbeee assigned to issue: [6175](https://github.com/hackforla/website/issues/6175) at 2024-04-10 05:04 PM PDT -taylorbeee,2024-04-11T00:43:50Z,- taylorbeee opened pull request: [6620](https://github.com/hackforla/website/pull/6620) at 2024-04-10 05:43 PM PDT -taylorbeee,2024-04-11T23:52:50Z,- taylorbeee pull request merged: [6620](https://github.com/hackforla/website/pull/6620#event-12442818138) at 2024-04-11 04:52 PM PDT -taylorbeee,2024-04-26T17:45:19Z,- taylorbeee assigned to issue: [6706](https://github.com/hackforla/website/issues/6706#issuecomment-2074023803) at 2024-04-26 10:45 AM PDT -taylorbeee,2024-04-26T18:32:29Z,- taylorbeee opened pull request: [6768](https://github.com/hackforla/website/pull/6768) at 2024-04-26 11:32 AM PDT -taylorbeee,2024-04-29T19:01:39Z,- taylorbeee submitted pull request review: [6776](https://github.com/hackforla/website/pull/6776#pullrequestreview-2029359505) at 2024-04-29 12:01 PM PDT -taylorbeee,2024-04-30T21:22:18Z,- taylorbeee commented on pull request: [6768](https://github.com/hackforla/website/pull/6768#issuecomment-2087369829) at 2024-04-30 02:22 PM PDT -taylorbeee,2024-05-01T17:56:23Z,- taylorbeee submitted pull request review: [6792](https://github.com/hackforla/website/pull/6792#pullrequestreview-2034128378) at 2024-05-01 10:56 AM PDT -taylorbeee,2024-05-01T18:55:46Z,- taylorbeee pull request merged: [6768](https://github.com/hackforla/website/pull/6768#event-12673646987) at 2024-05-01 11:55 AM PDT -taylorbeee,2024-05-06T17:43:11Z,- taylorbeee assigned to issue: [6569](https://github.com/hackforla/website/issues/6569) at 2024-05-06 10:43 AM PDT -taylorbeee,2024-05-06T18:20:19Z,- taylorbeee commented on issue: [6569](https://github.com/hackforla/website/issues/6569#issuecomment-2096642162) at 2024-05-06 11:20 AM PDT -taylorbeee,2024-05-28T22:30:29Z,- taylorbeee submitted pull request review: [6906](https://github.com/hackforla/website/pull/6906#pullrequestreview-2083950046) at 2024-05-28 03:30 PM PDT -taylorbeee,2024-07-03T17:01:35Z,- taylorbeee commented on issue: [6523](https://github.com/hackforla/website/issues/6523#issuecomment-2206803845) at 2024-07-03 10:01 AM PDT -taylorbeee,2024-07-03T17:01:35Z,- taylorbeee closed issue as completed: [6523](https://github.com/hackforla/website/issues/6523#event-13383670195) at 2024-07-03 10:01 AM PDT -taylorbeee,2024-07-22T19:23:33Z,- taylorbeee assigned to issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2227758220) at 2024-07-22 12:23 PM PDT -taylorbeee,2024-07-22T19:27:21Z,- taylorbeee commented on issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2243663555) at 2024-07-22 12:27 PM PDT -taylorbeee,2024-07-26T23:07:42Z,- taylorbeee commented on issue: [7113](https://github.com/hackforla/website/issues/7113#issuecomment-2253631350) at 2024-07-26 04:07 PM PDT -taylorbeee,2024-07-27T17:49:00Z,- taylorbeee opened pull request: [7150](https://github.com/hackforla/website/pull/7150) at 2024-07-27 10:49 AM PDT -taylorbeee,2024-07-31T17:09:40Z,- taylorbeee commented on pull request: [7150](https://github.com/hackforla/website/pull/7150#issuecomment-2260983584) at 2024-07-31 10:09 AM PDT -taylorbeee,2024-08-01T01:56:48Z,- taylorbeee pull request merged: [7150](https://github.com/hackforla/website/pull/7150#event-13718407268) at 2024-07-31 06:56 PM PDT -tejasn14,6880,SKILLS ISSUE -tejasn14,2024-05-22T03:01:44Z,- tejasn14 opened issue: [6880](https://github.com/hackforla/website/issues/6880) at 2024-05-21 08:01 PM PDT -tejasn14,2024-05-22T03:14:14Z,- tejasn14 assigned to issue: [6880](https://github.com/hackforla/website/issues/6880#issuecomment-2123782096) at 2024-05-21 08:14 PM PDT -terrencejihoonjung,6878,SKILLS ISSUE -terrencejihoonjung,2024-05-22T02:59:09Z,- terrencejihoonjung opened issue: [6878](https://github.com/hackforla/website/issues/6878) at 2024-05-21 07:59 PM PDT -terrencejihoonjung,2024-05-22T02:59:17Z,- terrencejihoonjung assigned to issue: [6878](https://github.com/hackforla/website/issues/6878) at 2024-05-21 07:59 PM PDT -terrencejihoonjung,2024-05-26T01:16:51Z,- terrencejihoonjung assigned to issue: [6722](https://github.com/hackforla/website/issues/6722) at 2024-05-25 06:16 PM PDT -terrencejihoonjung,2024-05-26T01:26:06Z,- terrencejihoonjung commented on issue: [6722](https://github.com/hackforla/website/issues/6722#issuecomment-2131889000) at 2024-05-25 06:26 PM PDT -terrencejihoonjung,2024-05-26T02:02:16Z,- terrencejihoonjung opened pull request: [6897](https://github.com/hackforla/website/pull/6897) at 2024-05-25 07:02 PM PDT -terrencejihoonjung,2024-05-26T18:30:51Z,- terrencejihoonjung assigned to issue: [6760](https://github.com/hackforla/website/issues/6760) at 2024-05-26 11:30 AM PDT -terrencejihoonjung,2024-05-26T18:32:53Z,- terrencejihoonjung commented on issue: [6760](https://github.com/hackforla/website/issues/6760#issuecomment-2132326679) at 2024-05-26 11:32 AM PDT -terrencejihoonjung,2024-05-28T21:40:21Z,- terrencejihoonjung opened pull request: [6906](https://github.com/hackforla/website/pull/6906) at 2024-05-28 02:40 PM PDT -terrencejihoonjung,2024-05-29T02:35:42Z,- terrencejihoonjung commented on pull request: [6901](https://github.com/hackforla/website/pull/6901#issuecomment-2136410282) at 2024-05-28 07:35 PM PDT -terrencejihoonjung,2024-05-29T23:56:21Z,- terrencejihoonjung submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2086862433) at 2024-05-29 04:56 PM PDT -terrencejihoonjung,2024-05-30T17:49:43Z,- terrencejihoonjung pull request merged: [6897](https://github.com/hackforla/website/pull/6897#event-12989790657) at 2024-05-30 10:49 AM PDT -terrencejihoonjung,2024-05-30T18:04:48Z,- terrencejihoonjung pull request merged: [6906](https://github.com/hackforla/website/pull/6906#event-12989938744) at 2024-05-30 11:04 AM PDT -terrencejihoonjung,2024-06-01T06:06:08Z,- terrencejihoonjung submitted pull request review: [6901](https://github.com/hackforla/website/pull/6901#pullrequestreview-2092026075) at 2024-05-31 11:06 PM PDT -terrencejihoonjung,2024-06-02T05:20:49Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2143702895) at 2024-06-01 10:20 PM PDT -terrencejihoonjung,2024-06-02T05:29:57Z,- terrencejihoonjung closed issue as completed: [6878](https://github.com/hackforla/website/issues/6878#event-13010827137) at 2024-06-01 10:29 PM PDT -terrencejihoonjung,2024-06-02T05:31:22Z,- terrencejihoonjung assigned to issue: [6756](https://github.com/hackforla/website/issues/6756) at 2024-06-01 10:31 PM PDT -terrencejihoonjung,2024-06-02T05:32:24Z,- terrencejihoonjung commented on issue: [6756](https://github.com/hackforla/website/issues/6756#issuecomment-2143705844) at 2024-06-01 10:32 PM PDT -terrencejihoonjung,2024-06-04T00:40:06Z,- terrencejihoonjung assigned to issue: [6655](https://github.com/hackforla/website/issues/6655#issuecomment-2057996054) at 2024-06-03 05:40 PM PDT -terrencejihoonjung,2024-06-04T00:40:48Z,- terrencejihoonjung commented on issue: [6655](https://github.com/hackforla/website/issues/6655#issuecomment-2146356332) at 2024-06-03 05:40 PM PDT -terrencejihoonjung,2024-06-04T20:31:58Z,- terrencejihoonjung commented on pull request: [6958](https://github.com/hackforla/website/pull/6958#issuecomment-2148368265) at 2024-06-04 01:31 PM PDT -terrencejihoonjung,2024-06-04T20:42:04Z,- terrencejihoonjung commented on pull request: [6928](https://github.com/hackforla/website/pull/6928#issuecomment-2148382492) at 2024-06-04 01:42 PM PDT -terrencejihoonjung,2024-06-05T01:40:33Z,- terrencejihoonjung submitted pull request review: [6928](https://github.com/hackforla/website/pull/6928#pullrequestreview-2097706511) at 2024-06-04 06:40 PM PDT -terrencejihoonjung,2024-06-05T01:45:36Z,- terrencejihoonjung submitted pull request review: [6958](https://github.com/hackforla/website/pull/6958#pullrequestreview-2097710023) at 2024-06-04 06:45 PM PDT -terrencejihoonjung,2024-06-05T04:58:50Z,- terrencejihoonjung submitted pull request review: [6958](https://github.com/hackforla/website/pull/6958#pullrequestreview-2098036259) at 2024-06-04 09:58 PM PDT -terrencejihoonjung,2024-06-07T05:54:20Z,- terrencejihoonjung opened pull request: [6972](https://github.com/hackforla/website/pull/6972) at 2024-06-06 10:54 PM PDT -terrencejihoonjung,2024-06-08T07:08:05Z,- terrencejihoonjung commented on pull request: [6973](https://github.com/hackforla/website/pull/6973#issuecomment-2155848029) at 2024-06-08 12:08 AM PDT -terrencejihoonjung,2024-06-11T19:22:56Z,- terrencejihoonjung pull request merged: [6972](https://github.com/hackforla/website/pull/6972#event-13121767777) at 2024-06-11 12:22 PM PDT -terrencejihoonjung,2024-06-11T23:31:08Z,- terrencejihoonjung submitted pull request review: [6973](https://github.com/hackforla/website/pull/6973#pullrequestreview-2111614973) at 2024-06-11 04:31 PM PDT -terrencejihoonjung,2024-06-15T05:02:14Z,- terrencejihoonjung assigned to issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2167194048) at 2024-06-14 10:02 PM PDT -terrencejihoonjung,2024-06-15T05:03:37Z,- terrencejihoonjung commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2169130674) at 2024-06-14 10:03 PM PDT -terrencejihoonjung,2024-06-15T05:05:48Z,- terrencejihoonjung commented on pull request: [6976](https://github.com/hackforla/website/pull/6976#issuecomment-2169131303) at 2024-06-14 10:05 PM PDT -terrencejihoonjung,2024-06-17T05:30:28Z,- terrencejihoonjung commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2172322513) at 2024-06-16 10:30 PM PDT -terrencejihoonjung,2024-06-18T07:35:59Z,- terrencejihoonjung submitted pull request review: [6976](https://github.com/hackforla/website/pull/6976#pullrequestreview-2124740965) at 2024-06-18 12:35 AM PDT -terrencejihoonjung,2024-06-21T02:59:07Z,- terrencejihoonjung opened pull request: [7043](https://github.com/hackforla/website/pull/7043) at 2024-06-20 07:59 PM PDT -terrencejihoonjung,2024-06-23T01:55:50Z,- terrencejihoonjung commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2184340125) at 2024-06-22 06:55 PM PDT -terrencejihoonjung,2024-06-27T18:49:52Z,- terrencejihoonjung commented on pull request: [7040](https://github.com/hackforla/website/pull/7040#issuecomment-2195456932) at 2024-06-27 11:49 AM PDT -terrencejihoonjung,2024-06-28T20:38:49Z,- terrencejihoonjung submitted pull request review: [7040](https://github.com/hackforla/website/pull/7040#pullrequestreview-2148938059) at 2024-06-28 01:38 PM PDT -terrencejihoonjung,2024-06-28T20:47:40Z,- terrencejihoonjung commented on pull request: [7043](https://github.com/hackforla/website/pull/7043#issuecomment-2197637517) at 2024-06-28 01:47 PM PDT -terrencejihoonjung,2024-06-30T21:36:44Z,- terrencejihoonjung pull request merged: [7043](https://github.com/hackforla/website/pull/7043#event-13343086564) at 2024-06-30 02:36 PM PDT -terrencejihoonjung,2024-07-02T05:29:51Z,- terrencejihoonjung commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2201967778) at 2024-07-01 10:29 PM PDT -terrencejihoonjung,2024-07-05T06:02:56Z,- terrencejihoonjung opened pull request: [7088](https://github.com/hackforla/website/pull/7088) at 2024-07-04 11:02 PM PDT -terrencejihoonjung,2024-07-13T05:53:55Z,- terrencejihoonjung commented on pull request: [7088](https://github.com/hackforla/website/pull/7088#issuecomment-2226786262) at 2024-07-12 10:53 PM PDT -terrencejihoonjung,2024-08-14T02:24:32Z,- terrencejihoonjung commented on pull request: [7280](https://github.com/hackforla/website/pull/7280#issuecomment-2287712952) at 2024-08-13 07:24 PM PDT -terrencejihoonjung,2024-08-17T23:49:08Z,- terrencejihoonjung submitted pull request review: [7280](https://github.com/hackforla/website/pull/7280#pullrequestreview-2244173459) at 2024-08-17 04:49 PM PDT -terrencejihoonjung,2024-08-18T04:03:10Z,- terrencejihoonjung pull request merged: [7088](https://github.com/hackforla/website/pull/7088#event-13921113109) at 2024-08-17 09:03 PM PDT -terrencejihoonjung,2024-08-19T05:19:07Z,- terrencejihoonjung assigned to issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2287749364) at 2024-08-18 10:19 PM PDT -terrencejihoonjung,2024-08-19T05:19:53Z,- terrencejihoonjung commented on issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2295691011) at 2024-08-18 10:19 PM PDT -terrencejihoonjung,2024-08-22T20:00:11Z,- terrencejihoonjung commented on issue: [7283](https://github.com/hackforla/website/issues/7283#issuecomment-2305530152) at 2024-08-22 01:00 PM PDT -terrencejihoonjung,2024-08-22T23:05:48Z,- terrencejihoonjung opened pull request: [7343](https://github.com/hackforla/website/pull/7343) at 2024-08-22 04:05 PM PDT -terrencejihoonjung,2024-08-22T23:10:11Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305896693) at 2024-08-22 04:10 PM PDT -terrencejihoonjung,2024-08-22T23:13:49Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305899737) at 2024-08-22 04:13 PM PDT -terrencejihoonjung,2024-08-22T23:14:31Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305900339) at 2024-08-22 04:14 PM PDT -terrencejihoonjung,2024-08-22T23:15:14Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305900986) at 2024-08-22 04:15 PM PDT -terrencejihoonjung,2024-08-22T23:15:41Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305901359) at 2024-08-22 04:15 PM PDT -terrencejihoonjung,2024-08-22T23:17:25Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305902939) at 2024-08-22 04:17 PM PDT -terrencejihoonjung,2024-08-22T23:18:05Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305903471) at 2024-08-22 04:18 PM PDT -terrencejihoonjung,2024-08-22T23:20:06Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2305905174) at 2024-08-22 04:20 PM PDT -terrencejihoonjung,2024-08-22T23:25:18Z,- terrencejihoonjung assigned to issue: [7337](https://github.com/hackforla/website/issues/7337) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:25:31Z,- terrencejihoonjung unassigned from issue: [7337](https://github.com/hackforla/website/issues/7337) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:25:49Z,- terrencejihoonjung assigned to issue: [7336](https://github.com/hackforla/website/issues/7336) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:25:54Z,- terrencejihoonjung assigned to issue: [7335](https://github.com/hackforla/website/issues/7335) at 2024-08-22 04:25 PM PDT -terrencejihoonjung,2024-08-22T23:26:02Z,- terrencejihoonjung unassigned from issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2305910335) at 2024-08-22 04:26 PM PDT -terrencejihoonjung,2024-08-22T23:26:08Z,- terrencejihoonjung unassigned from issue: [7335](https://github.com/hackforla/website/issues/7335) at 2024-08-22 04:26 PM PDT -terrencejihoonjung,2024-08-24T04:07:05Z,- terrencejihoonjung assigned to issue: [7190](https://github.com/hackforla/website/issues/7190) at 2024-08-23 09:07 PM PDT -terrencejihoonjung,2024-08-24T04:07:22Z,- terrencejihoonjung unassigned from issue: [7190](https://github.com/hackforla/website/issues/7190#issuecomment-2308043583) at 2024-08-23 09:07 PM PDT -terrencejihoonjung,2024-08-24T04:32:10Z,- terrencejihoonjung commented on pull request: [7345](https://github.com/hackforla/website/pull/7345#issuecomment-2308073887) at 2024-08-23 09:32 PM PDT -terrencejihoonjung,2024-08-24T23:47:32Z,- terrencejihoonjung submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2259027019) at 2024-08-24 04:47 PM PDT -terrencejihoonjung,2024-08-27T16:59:22Z,- terrencejihoonjung pull request merged: [7343](https://github.com/hackforla/website/pull/7343#event-14032215467) at 2024-08-27 09:59 AM PDT -terrencejihoonjung,2024-09-05T03:45:35Z,- terrencejihoonjung assigned to issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2295111671) at 2024-09-04 08:45 PM PDT -terrencejihoonjung,2024-09-05T03:46:10Z,- terrencejihoonjung commented on issue: [7290](https://github.com/hackforla/website/issues/7290#issuecomment-2330537581) at 2024-09-04 08:46 PM PDT -terrencejihoonjung,2024-09-06T17:54:50Z,- terrencejihoonjung opened pull request: [7406](https://github.com/hackforla/website/pull/7406) at 2024-09-06 10:54 AM PDT -terrencejihoonjung,2024-09-09T03:29:49Z,- terrencejihoonjung pull request merged: [7406](https://github.com/hackforla/website/pull/7406#event-14176410683) at 2024-09-08 08:29 PM PDT -terrencejihoonjung,2024-09-12T16:52:50Z,- terrencejihoonjung assigned to issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2305910335) at 2024-09-12 09:52 AM PDT -terrencejihoonjung,2024-09-12T16:53:29Z,- terrencejihoonjung commented on issue: [7336](https://github.com/hackforla/website/issues/7336#issuecomment-2346796795) at 2024-09-12 09:53 AM PDT -terrencejihoonjung,2024-09-13T18:22:24Z,- terrencejihoonjung opened pull request: [7445](https://github.com/hackforla/website/pull/7445) at 2024-09-13 11:22 AM PDT -terrencejihoonjung,2024-09-14T23:20:07Z,- terrencejihoonjung assigned to issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2311391464) at 2024-09-14 04:20 PM PDT -terrencejihoonjung,2024-09-14T23:20:20Z,- terrencejihoonjung unassigned from issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2351214594) at 2024-09-14 04:20 PM PDT -terrencejihoonjung,2024-09-14T23:21:08Z,- terrencejihoonjung commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2351214806) at 2024-09-14 04:21 PM PDT -terrencejihoonjung,2024-09-14T23:22:21Z,- terrencejihoonjung commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2351215092) at 2024-09-14 04:22 PM PDT -terrencejihoonjung,2024-09-15T02:37:21Z,- terrencejihoonjung pull request merged: [7445](https://github.com/hackforla/website/pull/7445#event-14262073286) at 2024-09-14 07:37 PM PDT -terrencejihoonjung,2024-09-18T22:52:33Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2359589179) at 2024-09-18 03:52 PM PDT -terrencejihoonjung,2024-09-20T06:40:27Z,- terrencejihoonjung commented on pull request: [7498](https://github.com/hackforla/website/pull/7498#issuecomment-2362944261) at 2024-09-19 11:40 PM PDT -terrencejihoonjung,2024-09-20T19:13:48Z,- terrencejihoonjung submitted pull request review: [7498](https://github.com/hackforla/website/pull/7498#pullrequestreview-2319097836) at 2024-09-20 12:13 PM PDT -terrencejihoonjung,2024-09-20T19:17:32Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2364403859) at 2024-09-20 12:17 PM PDT -terrencejihoonjung,2024-09-21T19:12:44Z,- terrencejihoonjung commented on pull request: [7496](https://github.com/hackforla/website/pull/7496#issuecomment-2365292062) at 2024-09-21 12:12 PM PDT -terrencejihoonjung,2024-09-21T19:13:18Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365292189) at 2024-09-21 12:13 PM PDT -terrencejihoonjung,2024-09-21T19:14:43Z,- terrencejihoonjung assigned to issue: [2293](https://github.com/hackforla/website/issues/2293) at 2024-09-21 12:14 PM PDT -terrencejihoonjung,2024-09-21T19:14:56Z,- terrencejihoonjung unassigned from issue: [2293](https://github.com/hackforla/website/issues/2293) at 2024-09-21 12:14 PM PDT -terrencejihoonjung,2024-09-21T19:16:39Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365293161) at 2024-09-21 12:16 PM PDT -terrencejihoonjung,2024-09-21T19:17:43Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365293459) at 2024-09-21 12:17 PM PDT -terrencejihoonjung,2024-09-21T19:18:55Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365293790) at 2024-09-21 12:18 PM PDT -terrencejihoonjung,2024-09-21T19:20:38Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365294190) at 2024-09-21 12:20 PM PDT -terrencejihoonjung,2024-09-22T06:32:40Z,- terrencejihoonjung submitted pull request review: [7496](https://github.com/hackforla/website/pull/7496#pullrequestreview-2319991329) at 2024-09-21 11:32 PM PDT -terrencejihoonjung,2024-09-22T06:35:42Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2365531073) at 2024-09-21 11:35 PM PDT -terrencejihoonjung,2024-09-22T21:02:11Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2366963917) at 2024-09-22 02:02 PM PDT -terrencejihoonjung,2024-09-24T17:36:57Z,- terrencejihoonjung commented on pull request: [7511](https://github.com/hackforla/website/pull/7511#issuecomment-2371911377) at 2024-09-24 10:36 AM PDT -terrencejihoonjung,2024-09-24T17:40:16Z,- terrencejihoonjung commented on pull request: [7508](https://github.com/hackforla/website/pull/7508#issuecomment-2371917158) at 2024-09-24 10:40 AM PDT -terrencejihoonjung,2024-09-24T22:07:51Z,- terrencejihoonjung submitted pull request review: [7511](https://github.com/hackforla/website/pull/7511#pullrequestreview-2326567386) at 2024-09-24 03:07 PM PDT -terrencejihoonjung,2024-09-24T22:08:27Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2372472579) at 2024-09-24 03:08 PM PDT -terrencejihoonjung,2024-09-24T22:26:38Z,- terrencejihoonjung submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2326595511) at 2024-09-24 03:26 PM PDT -terrencejihoonjung,2024-09-24T22:28:13Z,- terrencejihoonjung submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2326597075) at 2024-09-24 03:28 PM PDT -terrencejihoonjung,2024-09-24T22:28:57Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2372499465) at 2024-09-24 03:28 PM PDT -terrencejihoonjung,2024-09-29T19:39:51Z,- terrencejihoonjung commented on pull request: [7526](https://github.com/hackforla/website/pull/7526#issuecomment-2381577903) at 2024-09-29 12:39 PM PDT -terrencejihoonjung,2024-09-29T19:40:51Z,- terrencejihoonjung commented on pull request: [7522](https://github.com/hackforla/website/pull/7522#issuecomment-2381578420) at 2024-09-29 12:40 PM PDT -terrencejihoonjung,2024-09-29T21:43:34Z,- terrencejihoonjung submitted pull request review: [7522](https://github.com/hackforla/website/pull/7522#pullrequestreview-2336022923) at 2024-09-29 02:43 PM PDT -terrencejihoonjung,2024-10-01T20:46:37Z,- terrencejihoonjung assigned to issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2381666380) at 2024-10-01 01:46 PM PDT -terrencejihoonjung,2024-10-01T21:26:59Z,- terrencejihoonjung opened issue: [7555](https://github.com/hackforla/website/issues/7555) at 2024-10-01 02:26 PM PDT -terrencejihoonjung,2024-10-01T21:30:33Z,- terrencejihoonjung commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387111323) at 2024-10-01 02:30 PM PDT -terrencejihoonjung,2024-10-01T21:30:42Z,- terrencejihoonjung commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387111518) at 2024-10-01 02:30 PM PDT -terrencejihoonjung,2024-10-01T21:42:36Z,- terrencejihoonjung commented on issue: [7521](https://github.com/hackforla/website/issues/7521#issuecomment-2387128408) at 2024-10-01 02:42 PM PDT -terrencejihoonjung,2024-10-01T21:51:22Z,- terrencejihoonjung opened issue: [7556](https://github.com/hackforla/website/issues/7556) at 2024-10-01 02:51 PM PDT -terrencejihoonjung,2024-10-08T23:33:58Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2400990688) at 2024-10-08 04:33 PM PDT -terrencejihoonjung,2024-10-08T23:36:52Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2400993141) at 2024-10-08 04:36 PM PDT -terrencejihoonjung,2024-10-08T23:37:45Z,- terrencejihoonjung assigned to issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2282891038) at 2024-10-08 04:37 PM PDT -terrencejihoonjung,2024-10-08T23:38:26Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2400994471) at 2024-10-08 04:38 PM PDT -terrencejihoonjung,2024-10-18T22:52:37Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2423341885) at 2024-10-18 03:52 PM PDT -terrencejihoonjung,2024-10-20T20:34:12Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2425209315) at 2024-10-20 01:34 PM PDT -terrencejihoonjung,2024-10-20T20:39:45Z,- terrencejihoonjung opened issue: [7608](https://github.com/hackforla/website/issues/7608) at 2024-10-20 01:39 PM PDT -terrencejihoonjung,2024-10-20T20:47:32Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2425215180) at 2024-10-20 01:47 PM PDT -terrencejihoonjung,2024-10-20T20:48:04Z,- terrencejihoonjung opened issue: [7609](https://github.com/hackforla/website/issues/7609) at 2024-10-20 01:48 PM PDT -terrencejihoonjung,2024-10-20T20:50:04Z,- terrencejihoonjung opened issue: [7610](https://github.com/hackforla/website/issues/7610) at 2024-10-20 01:50 PM PDT -terrencejihoonjung,2024-10-20T20:51:01Z,- terrencejihoonjung opened issue: [7611](https://github.com/hackforla/website/issues/7611) at 2024-10-20 01:51 PM PDT -terrencejihoonjung,2024-10-20T20:51:43Z,- terrencejihoonjung opened issue: [7612](https://github.com/hackforla/website/issues/7612) at 2024-10-20 01:51 PM PDT -terrencejihoonjung,2024-10-20T20:52:21Z,- terrencejihoonjung opened issue: [7613](https://github.com/hackforla/website/issues/7613) at 2024-10-20 01:52 PM PDT -terrencejihoonjung,2024-10-20T20:55:12Z,- terrencejihoonjung submitted pull request review: [7508](https://github.com/hackforla/website/pull/7508#pullrequestreview-2380672670) at 2024-10-20 01:55 PM PDT -terrencejihoonjung,2024-10-26T21:16:23Z,- terrencejihoonjung closed issue as completed: [7608](https://github.com/hackforla/website/issues/7608#event-14913417885) at 2024-10-26 02:16 PM PDT -terrencejihoonjung,2024-10-26T21:16:51Z,- terrencejihoonjung commented on issue: [6872](https://github.com/hackforla/website/issues/6872#issuecomment-2439739088) at 2024-10-26 02:16 PM PDT -terrencejihoonjung,2024-10-26T21:18:37Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2439739499) at 2024-10-26 02:18 PM PDT -terrencejihoonjung,2024-10-26T21:20:55Z,- terrencejihoonjung commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2439740023) at 2024-10-26 02:20 PM PDT -terrencejihoonjung,2024-10-28T01:39:01Z,- terrencejihoonjung submitted pull request review: [7639](https://github.com/hackforla/website/pull/7639#pullrequestreview-2397742093) at 2024-10-27 06:39 PM PDT -terrencejihoonjung,2024-10-28T01:40:09Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2440326795) at 2024-10-27 06:40 PM PDT -terrencejihoonjung,2024-11-02T23:26:18Z,- terrencejihoonjung commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2453223583) at 2024-11-02 03:26 PM PST -terrencejihoonjung,2024-11-03T22:11:10Z,- terrencejihoonjung submitted pull request review: [7685](https://github.com/hackforla/website/pull/7685#pullrequestreview-2411953764) at 2024-11-03 02:11 PM PST -terrencejihoonjung,2024-11-03T22:11:57Z,- terrencejihoonjung commented on issue: [6878](https://github.com/hackforla/website/issues/6878#issuecomment-2453595356) at 2024-11-03 02:11 PM PST -tesiahwang,4967,SKILLS ISSUE -tesiahwang,2023-07-18T01:50:13Z,- tesiahwang opened issue: [4967](https://github.com/hackforla/website/issues/4967) at 2023-07-17 06:50 PM PDT -tesiahwang,2023-07-18T02:42:08Z,- tesiahwang assigned to issue: [4967](https://github.com/hackforla/website/issues/4967) at 2023-07-17 07:42 PM PDT -tesiahwang,2023-08-02T04:30:29Z,- tesiahwang commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1661473188) at 2023-08-01 09:30 PM PDT -tesiahwang,2023-08-11T19:56:45Z,- tesiahwang assigned to issue: [5181](https://github.com/hackforla/website/issues/5181) at 2023-08-11 12:56 PM PDT -tesiahwang,2023-08-11T19:57:12Z,- tesiahwang unassigned from issue: [5181](https://github.com/hackforla/website/issues/5181) at 2023-08-11 12:57 PM PDT -tesiahwang,2023-08-11T20:13:49Z,- tesiahwang commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1675315210) at 2023-08-11 01:13 PM PDT -tesiahwang,2023-08-19T03:14:46Z,- tesiahwang assigned to issue: [5254](https://github.com/hackforla/website/issues/5254#issuecomment-1684657181) at 2023-08-18 08:14 PM PDT -tesiahwang,2023-08-19T03:39:36Z,- tesiahwang commented on issue: [5254](https://github.com/hackforla/website/issues/5254#issuecomment-1684747052) at 2023-08-18 08:39 PM PDT -tesiahwang,2023-08-19T06:01:29Z,- tesiahwang opened pull request: [5257](https://github.com/hackforla/website/pull/5257) at 2023-08-18 11:01 PM PDT -tesiahwang,2023-08-20T05:07:12Z,- tesiahwang commented on issue: [4967](https://github.com/hackforla/website/issues/4967#issuecomment-1685177898) at 2023-08-19 10:07 PM PDT -tesiahwang,2023-08-21T08:54:20Z,- tesiahwang pull request merged: [5257](https://github.com/hackforla/website/pull/5257#event-10142723197) at 2023-08-21 01:54 AM PDT -tesiahwang,2023-08-21T19:14:47Z,- tesiahwang closed issue as completed: [4967](https://github.com/hackforla/website/issues/4967#event-10149516231) at 2023-08-21 12:14 PM PDT -tesiahwang,2023-08-23T19:06:10Z,- tesiahwang commented on pull request: [5294](https://github.com/hackforla/website/pull/5294#issuecomment-1690494303) at 2023-08-23 12:06 PM PDT -tesiahwang,2023-08-24T03:56:15Z,- tesiahwang submitted pull request review: [5294](https://github.com/hackforla/website/pull/5294#pullrequestreview-1592738281) at 2023-08-23 08:56 PM PDT -tesiahwang,2023-08-29T16:01:52Z,- tesiahwang assigned to issue: [5181](https://github.com/hackforla/website/issues/5181) at 2023-08-29 09:01 AM PDT -tesiahwang,2023-08-29T16:08:33Z,- tesiahwang commented on issue: [5181](https://github.com/hackforla/website/issues/5181#issuecomment-1697749883) at 2023-08-29 09:08 AM PDT -tesiahwang,2023-08-30T03:49:32Z,- tesiahwang opened pull request: [5354](https://github.com/hackforla/website/pull/5354) at 2023-08-29 08:49 PM PDT -tesiahwang,2023-08-30T04:14:01Z,- tesiahwang commented on pull request: [5343](https://github.com/hackforla/website/pull/5343#issuecomment-1698460812) at 2023-08-29 09:14 PM PDT -tesiahwang,2023-08-30T04:27:20Z,- tesiahwang submitted pull request review: [5343](https://github.com/hackforla/website/pull/5343#pullrequestreview-1601835845) at 2023-08-29 09:27 PM PDT -tesiahwang,2023-08-31T06:16:20Z,- tesiahwang pull request merged: [5354](https://github.com/hackforla/website/pull/5354#event-10240300392) at 2023-08-30 11:16 PM PDT -tesiahwang,2023-08-31T17:32:17Z,- tesiahwang commented on pull request: [5392](https://github.com/hackforla/website/pull/5392#issuecomment-1701471847) at 2023-08-31 10:32 AM PDT -tesiahwang,2023-08-31T17:36:05Z,- tesiahwang submitted pull request review: [5392](https://github.com/hackforla/website/pull/5392#pullrequestreview-1605302969) at 2023-08-31 10:36 AM PDT -tesiahwang,2023-09-04T04:31:34Z,- tesiahwang commented on pull request: [5413](https://github.com/hackforla/website/pull/5413#issuecomment-1704594276) at 2023-09-03 09:31 PM PDT -tesiahwang,2023-09-04T05:01:56Z,- tesiahwang submitted pull request review: [5413](https://github.com/hackforla/website/pull/5413#pullrequestreview-1608762031) at 2023-09-03 10:01 PM PDT -tesiahwang,2023-09-14T17:06:14Z,- tesiahwang assigned to issue: [5514](https://github.com/hackforla/website/issues/5514#issuecomment-1717118246) at 2023-09-14 10:06 AM PDT -tesiahwang,2023-09-14T17:07:28Z,- tesiahwang commented on issue: [5514](https://github.com/hackforla/website/issues/5514#issuecomment-1719834875) at 2023-09-14 10:07 AM PDT -tesiahwang,2023-09-14T22:57:38Z,- tesiahwang commented on pull request: [5523](https://github.com/hackforla/website/pull/5523#issuecomment-1720260665) at 2023-09-14 03:57 PM PDT -tesiahwang,2023-09-14T23:11:44Z,- tesiahwang submitted pull request review: [5523](https://github.com/hackforla/website/pull/5523#pullrequestreview-1627912286) at 2023-09-14 04:11 PM PDT -tesiahwang,2023-09-15T15:47:41Z,- tesiahwang assigned to issue: [5540](https://github.com/hackforla/website/issues/5540) at 2023-09-15 08:47 AM PDT -tesiahwang,2023-09-15T15:48:46Z,- tesiahwang commented on issue: [5540](https://github.com/hackforla/website/issues/5540#issuecomment-1721497554) at 2023-09-15 08:48 AM PDT -tesiahwang,2023-09-15T16:55:43Z,- tesiahwang opened pull request: [5542](https://github.com/hackforla/website/pull/5542) at 2023-09-15 09:55 AM PDT -tesiahwang,2023-09-17T18:41:45Z,- tesiahwang pull request merged: [5542](https://github.com/hackforla/website/pull/5542#event-10391818257) at 2023-09-17 11:41 AM PDT -tesiahwang,2023-09-18T03:02:53Z,- tesiahwang commented on pull request: [5546](https://github.com/hackforla/website/pull/5546#issuecomment-1722691924) at 2023-09-17 08:02 PM PDT -tesiahwang,2023-09-18T03:16:46Z,- tesiahwang submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1630233788) at 2023-09-17 08:16 PM PDT -tesiahwang,2023-09-18T22:51:22Z,- tesiahwang submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1632089628) at 2023-09-18 03:51 PM PDT -tesiahwang,2023-09-19T21:54:44Z,- tesiahwang submitted pull request review: [5413](https://github.com/hackforla/website/pull/5413#pullrequestreview-1634262670) at 2023-09-19 02:54 PM PDT -tesiahwang,2023-09-21T19:03:00Z,- tesiahwang commented on pull request: [5568](https://github.com/hackforla/website/pull/5568#issuecomment-1730141364) at 2023-09-21 12:03 PM PDT -tesiahwang,2023-09-21T19:06:13Z,- tesiahwang submitted pull request review: [5568](https://github.com/hackforla/website/pull/5568#pullrequestreview-1638528530) at 2023-09-21 12:06 PM PDT -tesiahwang,2023-09-21T22:44:35Z,- tesiahwang submitted pull request review: [5546](https://github.com/hackforla/website/pull/5546#pullrequestreview-1638813729) at 2023-09-21 03:44 PM PDT -tesiahwang,2023-11-05T18:06:58Z,- tesiahwang assigned to issue: [5852](https://github.com/hackforla/website/issues/5852) at 2023-11-05 10:06 AM PST -tesiahwang,2023-11-05T18:25:10Z,- tesiahwang commented on issue: [5852](https://github.com/hackforla/website/issues/5852#issuecomment-1793810194) at 2023-11-05 10:25 AM PST -tesiahwang,2023-11-05T19:35:28Z,- tesiahwang opened pull request: [5853](https://github.com/hackforla/website/pull/5853) at 2023-11-05 11:35 AM PST -tesiahwang,2023-11-06T18:05:36Z,- tesiahwang pull request merged: [5853](https://github.com/hackforla/website/pull/5853#event-10876695382) at 2023-11-06 10:05 AM PST -tesiahwang,2023-11-07T17:23:27Z,- tesiahwang assigned to issue: [5730](https://github.com/hackforla/website/issues/5730#issuecomment-1765712945) at 2023-11-07 09:23 AM PST -tesiahwang,2023-11-07T17:25:48Z,- tesiahwang commented on issue: [5730](https://github.com/hackforla/website/issues/5730#issuecomment-1799287827) at 2023-11-07 09:25 AM PST -tesiahwang,2023-11-11T06:37:25Z,- tesiahwang opened pull request: [5891](https://github.com/hackforla/website/pull/5891) at 2023-11-10 10:37 PM PST -tesiahwang,2023-11-27T00:01:08Z,- tesiahwang pull request merged: [5891](https://github.com/hackforla/website/pull/5891#event-11064534103) at 2023-11-26 04:01 PM PST -tesiahwang,2024-02-07T04:56:57Z,- tesiahwang commented on pull request: [6243](https://github.com/hackforla/website/pull/6243#issuecomment-1931283231) at 2024-02-06 08:56 PM PST -tesiahwang,2024-02-07T05:25:00Z,- tesiahwang submitted pull request review: [6243](https://github.com/hackforla/website/pull/6243#pullrequestreview-1866930511) at 2024-02-06 09:25 PM PST -tesiahwang,2024-04-14T14:57:45Z,- tesiahwang submitted pull request review: [6627](https://github.com/hackforla/website/pull/6627#pullrequestreview-1999677443) at 2024-04-14 07:57 AM PDT -thadk,2020-09-24T17:51:05Z,- thadk commented on issue: [746](https://github.com/hackforla/website/issues/746#issuecomment-698493761) at 2020-09-24 10:51 AM PDT -thatguyish,2021-02-03T03:41:14Z,- thatguyish assigned to issue: [895](https://github.com/hackforla/website/issues/895) at 2021-02-02 07:41 PM PST -thatguyish,2021-02-03T22:48:00Z,- thatguyish assigned to issue: [990](https://github.com/hackforla/website/issues/990) at 2021-02-03 02:48 PM PST -thatguyish,2021-02-03T23:40:19Z,- thatguyish opened pull request: [998](https://github.com/hackforla/website/pull/998) at 2021-02-03 03:40 PM PST -thatguyish,2021-02-03T23:42:38Z,- thatguyish commented on issue: [990](https://github.com/hackforla/website/issues/990#issuecomment-772904630) at 2021-02-03 03:42 PM PST -thatguyish,2021-02-03T23:54:21Z,- thatguyish closed issue by PR 998: [990](https://github.com/hackforla/website/issues/990#event-4288118773) at 2021-02-03 03:54 PM PST -thatguyish,2021-02-04T23:48:00Z,- thatguyish reopened issue: [990](https://github.com/hackforla/website/issues/990#event-4288118773) at 2021-02-04 03:48 PM PST -thatguyish,2021-02-04T23:53:53Z,- thatguyish commented on issue: [990](https://github.com/hackforla/website/issues/990#issuecomment-773680693) at 2021-02-04 03:53 PM PST -thatguyish,2021-02-05T04:48:57Z,- thatguyish pull request merged: [998](https://github.com/hackforla/website/pull/998#event-4294261328) at 2021-02-04 08:48 PM PST -thatguyish,2021-02-05T17:03:31Z,- thatguyish assigned to issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-764840726) at 2021-02-05 09:03 AM PST -thatguyish,2021-02-05T21:56:51Z,- thatguyish opened pull request: [1005](https://github.com/hackforla/website/pull/1005) at 2021-02-05 01:56 PM PST -thatguyish,2021-02-07T15:51:34Z,- thatguyish commented on issue: [953](https://github.com/hackforla/website/issues/953#issuecomment-774697212) at 2021-02-07 07:51 AM PST -thatguyish,2021-02-07T21:32:53Z,- thatguyish assigned to issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-774538949) at 2021-02-07 01:32 PM PST -thatguyish,2021-02-08T22:46:56Z,- thatguyish opened pull request: [1018](https://github.com/hackforla/website/pull/1018) at 2021-02-08 02:46 PM PST -thatguyish,2021-02-08T22:51:09Z,- thatguyish commented on issue: [936](https://github.com/hackforla/website/issues/936#issuecomment-775516483) at 2021-02-08 02:51 PM PST -thatguyish,2021-02-08T22:55:03Z,- thatguyish pull request closed w/o merging: [1005](https://github.com/hackforla/website/pull/1005#event-4306200562) at 2021-02-08 02:55 PM PST -thatguyish,2021-02-08T22:55:34Z,- thatguyish reopened pull request: [1005](https://github.com/hackforla/website/pull/1005#event-4306200562) at 2021-02-08 02:55 PM PST -thatguyish,2021-02-08T23:10:33Z,- thatguyish commented on pull request: [1005](https://github.com/hackforla/website/pull/1005#issuecomment-775524985) at 2021-02-08 03:10 PM PST -thatguyish,2021-02-08T23:10:33Z,- thatguyish pull request closed w/o merging: [1005](https://github.com/hackforla/website/pull/1005#event-4306247250) at 2021-02-08 03:10 PM PST -thatguyish,2021-02-08T23:36:29Z,- thatguyish opened pull request: [1019](https://github.com/hackforla/website/pull/1019) at 2021-02-08 03:36 PM PST -thatguyish,2021-02-10T00:10:31Z,- thatguyish commented on pull request: [1019](https://github.com/hackforla/website/pull/1019#issuecomment-776331689) at 2021-02-09 04:10 PM PST -thatguyish,2021-02-10T00:26:45Z,- thatguyish pull request merged: [1019](https://github.com/hackforla/website/pull/1019#event-4312147235) at 2021-02-09 04:26 PM PST -thatguyish,2021-02-14T01:51:38Z,- thatguyish commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778707353) at 2021-02-13 05:51 PM PST -thatguyish,2021-02-14T02:41:04Z,- thatguyish commented on pull request: [1018](https://github.com/hackforla/website/pull/1018#issuecomment-778712179) at 2021-02-13 06:41 PM PST -thatguyish,2021-02-14T03:47:36Z,- thatguyish pull request merged: [1018](https://github.com/hackforla/website/pull/1018#event-4328372193) at 2021-02-13 07:47 PM PST -thatguyish,2021-02-28T20:28:17Z,- thatguyish assigned to issue: [1118](https://github.com/hackforla/website/issues/1118#issuecomment-787488934) at 2021-02-28 12:28 PM PST -thatguyish,2021-02-28T21:40:56Z,- thatguyish opened pull request: [1141](https://github.com/hackforla/website/pull/1141) at 2021-02-28 01:40 PM PST -thatguyish,2021-02-28T21:42:00Z,- thatguyish commented on issue: [1118](https://github.com/hackforla/website/issues/1118#issuecomment-787528148) at 2021-02-28 01:42 PM PST -thatguyish,2021-03-01T03:07:48Z,- thatguyish pull request merged: [1141](https://github.com/hackforla/website/pull/1141#event-4387058515) at 2021-02-28 07:07 PM PST -thatguyish,2021-03-01T17:53:52Z,- thatguyish assigned to issue: [1106](https://github.com/hackforla/website/issues/1106) at 2021-03-01 09:53 AM PST -thatguyish,2021-03-01T22:13:18Z,- thatguyish opened pull request: [1147](https://github.com/hackforla/website/pull/1147) at 2021-03-01 02:13 PM PST -thatguyish,2021-03-03T01:27:54Z,- thatguyish commented on pull request: [1147](https://github.com/hackforla/website/pull/1147#issuecomment-789354605) at 2021-03-02 05:27 PM PST -thatguyish,2021-03-03T02:11:52Z,- thatguyish commented on pull request: [1147](https://github.com/hackforla/website/pull/1147#issuecomment-789371533) at 2021-03-02 06:11 PM PST -thatguyish,2021-03-03T03:22:56Z,- thatguyish pull request merged: [1147](https://github.com/hackforla/website/pull/1147#event-4399269704) at 2021-03-02 07:22 PM PST -thatguyish,2021-03-03T03:57:04Z,- thatguyish assigned to issue: [1115](https://github.com/hackforla/website/issues/1115) at 2021-03-02 07:57 PM PST -thatguyish,2021-03-16T18:11:10Z,- thatguyish opened pull request: [1210](https://github.com/hackforla/website/pull/1210) at 2021-03-16 11:11 AM PDT -thatguyish,2021-03-24T18:58:10Z,- thatguyish commented on pull request: [1210](https://github.com/hackforla/website/pull/1210#issuecomment-806076890) at 2021-03-24 11:58 AM PDT -thatguyish,2021-04-11T19:27:27Z,- thatguyish pull request closed w/o merging: [1210](https://github.com/hackforla/website/pull/1210#event-4578904163) at 2021-04-11 12:27 PM PDT -thatguyish,2021-04-11T19:27:48Z,- thatguyish unassigned from issue: [1115](https://github.com/hackforla/website/issues/1115) at 2021-04-11 12:27 PM PDT -thecrit,2773,SKILLS ISSUE -thedvo,4323,SKILLS ISSUE -thedvo,2023-03-29T03:39:28Z,- thedvo opened issue: [4323](https://github.com/hackforla/website/issues/4323) at 2023-03-28 08:39 PM PDT -thedvo,2023-03-29T04:23:03Z,- thedvo assigned to issue: [4323](https://github.com/hackforla/website/issues/4323) at 2023-03-28 09:23 PM PDT -thedvo,2023-04-02T23:04:04Z,- thedvo closed issue by PR 5203: [4248](https://github.com/hackforla/website/issues/4248#event-8907254467) at 2023-04-02 04:04 PM PDT -thedvo,2023-04-03T03:13:17Z,- thedvo assigned to issue: [4375](https://github.com/hackforla/website/issues/4375) at 2023-04-02 08:13 PM PDT -thedvo,2023-04-03T03:16:04Z,- thedvo unassigned from issue: [4375](https://github.com/hackforla/website/issues/4375#issuecomment-1493585195) at 2023-04-02 08:16 PM PDT -thedvo,2023-04-03T06:11:15Z,- thedvo assigned to issue: [4377](https://github.com/hackforla/website/issues/4377) at 2023-04-02 11:11 PM PDT -thedvo,2023-04-03T06:19:49Z,- thedvo commented on issue: [4377](https://github.com/hackforla/website/issues/4377#issuecomment-1493726141) at 2023-04-02 11:19 PM PDT -thedvo,2023-04-04T00:25:20Z,- thedvo opened pull request: [4402](https://github.com/hackforla/website/pull/4402) at 2023-04-03 05:25 PM PDT -thedvo,2023-04-04T01:04:53Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1495197020) at 2023-04-03 06:04 PM PDT -thedvo,2023-04-04T23:02:47Z,- thedvo pull request merged: [4402](https://github.com/hackforla/website/pull/4402#event-8929496577) at 2023-04-04 04:02 PM PDT -thedvo,2023-04-04T23:25:57Z,- thedvo assigned to issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1493385344) at 2023-04-04 04:25 PM PDT -thedvo,2023-04-04T23:27:37Z,- thedvo commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496720067) at 2023-04-04 04:27 PM PDT -thedvo,2023-04-05T00:09:37Z,- thedvo closed issue by PR 4424: [2670](https://github.com/hackforla/website/issues/2670#event-8929779814) at 2023-04-04 05:09 PM PDT -thedvo,2023-04-05T00:25:09Z,- thedvo commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496763580) at 2023-04-04 05:25 PM PDT -thedvo,2023-04-05T00:25:10Z,- thedvo reopened issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496763580) at 2023-04-04 05:25 PM PDT -thedvo,2023-04-05T01:29:39Z,- thedvo commented on issue: [2670](https://github.com/hackforla/website/issues/2670#issuecomment-1496801189) at 2023-04-04 06:29 PM PDT -thedvo,2023-04-05T02:06:48Z,- thedvo opened pull request: [4424](https://github.com/hackforla/website/pull/4424) at 2023-04-04 07:06 PM PDT -thedvo,2023-04-07T04:02:44Z,- thedvo pull request merged: [4424](https://github.com/hackforla/website/pull/4424#event-8951297567) at 2023-04-06 09:02 PM PDT -thedvo,2023-04-09T22:46:55Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1501229654) at 2023-04-09 03:46 PM PDT -thedvo,2023-04-11T01:22:07Z,- thedvo assigned to issue: [4255](https://github.com/hackforla/website/issues/4255#issuecomment-1480464925) at 2023-04-10 06:22 PM PDT -thedvo,2023-04-11T01:25:54Z,- thedvo commented on issue: [4255](https://github.com/hackforla/website/issues/4255#issuecomment-1502553916) at 2023-04-10 06:25 PM PDT -thedvo,2023-04-12T00:41:38Z,- thedvo opened pull request: [4472](https://github.com/hackforla/website/pull/4472) at 2023-04-11 05:41 PM PDT -thedvo,2023-04-12T03:03:59Z,- thedvo opened issue: [4482](https://github.com/hackforla/website/issues/4482) at 2023-04-11 08:03 PM PDT -thedvo,2023-04-13T03:17:49Z,- thedvo pull request merged: [4472](https://github.com/hackforla/website/pull/4472#event-8992079987) at 2023-04-12 08:17 PM PDT -thedvo,2023-05-13T00:16:12Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1546458177) at 2023-05-12 05:16 PM PDT -thedvo,2023-05-30T05:21:30Z,- thedvo assigned to issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-29 10:21 PM PDT -thedvo,2023-05-30T05:26:43Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1567774160) at 2023-05-29 10:26 PM PDT -thedvo,2023-05-31T01:00:55Z,- thedvo unassigned from issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-30 06:00 PM PDT -thedvo,2023-05-31T03:47:27Z,- thedvo assigned to issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1567574801) at 2023-05-30 08:47 PM PDT -thedvo,2023-05-31T03:48:49Z,- thedvo commented on issue: [4552](https://github.com/hackforla/website/issues/4552#issuecomment-1569453424) at 2023-05-30 08:48 PM PDT -thedvo,2023-05-31T04:21:29Z,- thedvo opened pull request: [4759](https://github.com/hackforla/website/pull/4759) at 2023-05-30 09:21 PM PDT -thedvo,2023-06-05T19:32:20Z,- thedvo commented on pull request: [4759](https://github.com/hackforla/website/pull/4759#issuecomment-1577361366) at 2023-06-05 12:32 PM PDT -thedvo,2023-06-08T08:35:41Z,- thedvo pull request merged: [4759](https://github.com/hackforla/website/pull/4759#event-9469363310) at 2023-06-08 01:35 AM PDT -thedvo,2023-06-10T01:29:56Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1585412272) at 2023-06-09 06:29 PM PDT -thedvo,2023-07-04T02:16:34Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1619364522) at 2023-07-03 07:16 PM PDT -thedvo,2023-07-14T21:43:02Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1636474034) at 2023-07-14 02:43 PM PDT -thedvo,2023-07-21T04:40:58Z,- thedvo commented on pull request: [5043](https://github.com/hackforla/website/pull/5043#issuecomment-1644972086) at 2023-07-20 09:40 PM PDT -thedvo,2023-07-21T18:45:01Z,- thedvo submitted pull request review: [5043](https://github.com/hackforla/website/pull/5043#pullrequestreview-1541653130) at 2023-07-21 11:45 AM PDT -thedvo,2023-07-28T23:07:22Z,- thedvo commented on issue: [4323](https://github.com/hackforla/website/issues/4323#issuecomment-1656426266) at 2023-07-28 04:07 PM PDT -thedvo,2023-08-09T18:24:22Z,- thedvo closed issue as completed: [4323](https://github.com/hackforla/website/issues/4323#event-10050856611) at 2023-08-09 11:24 AM PDT -theecrit,2022-02-13T03:25:02Z,- theecrit opened issue: [2773](https://github.com/hackforla/website/issues/2773) at 2022-02-12 07:25 PM PST -thekaveman,2018-11-14T06:00:10Z,- thekaveman opened pull request: [11](https://github.com/hackforla/website/pull/11) at 2018-11-13 10:00 PM PST -thekaveman,2018-11-14T16:01:21Z,- thekaveman pull request merged: [11](https://github.com/hackforla/website/pull/11#event-1966279241) at 2018-11-14 08:01 AM PST -thekaveman,2018-11-14T16:38:33Z,- thekaveman commented on pull request: [11](https://github.com/hackforla/website/pull/11#issuecomment-438729322) at 2018-11-14 08:38 AM PST -thekaveman,2018-11-14T16:52:36Z,- thekaveman commented on pull request: [11](https://github.com/hackforla/website/pull/11#issuecomment-438734625) at 2018-11-14 08:52 AM PST -thekaveman,2018-11-16T07:13:45Z,- thekaveman opened pull request: [12](https://github.com/hackforla/website/pull/12) at 2018-11-15 11:13 PM PST -thekaveman,2018-11-16T07:14:20Z,- thekaveman assigned to issue: [9](https://github.com/hackforla/website/issues/9) at 2018-11-15 11:14 PM PST -thekaveman,2018-11-17T19:56:11Z,- thekaveman commented on pull request: [12](https://github.com/hackforla/website/pull/12#issuecomment-439643350) at 2018-11-17 11:56 AM PST -thekaveman,2018-11-17T19:58:51Z,- thekaveman opened issue: [13](https://github.com/hackforla/website/issues/13) at 2018-11-17 11:58 AM PST -thekaveman,2018-11-17T20:00:36Z,- thekaveman commented on issue: [6](https://github.com/hackforla/website/issues/6#issuecomment-439643616) at 2018-11-17 12:00 PM PST -thekaveman,2018-11-17T20:20:10Z,- thekaveman opened issue: [14](https://github.com/hackforla/website/issues/14) at 2018-11-17 12:20 PM PST -thekaveman,2018-11-18T01:35:23Z,- thekaveman commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-439660611) at 2018-11-17 05:35 PM PST -thekaveman,2018-11-18T01:36:48Z,- thekaveman commented on issue: [14](https://github.com/hackforla/website/issues/14#issuecomment-439660696) at 2018-11-17 05:36 PM PST -thekaveman,2018-11-18T01:40:07Z,- thekaveman commented on issue: [20](https://github.com/hackforla/website/issues/20#issuecomment-439660847) at 2018-11-17 05:40 PM PST -thekaveman,2018-11-29T18:23:43Z,- thekaveman commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-442940080) at 2018-11-29 10:23 AM PST -thekaveman,2018-12-12T07:20:01Z,- thekaveman commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-446487314) at 2018-12-11 11:20 PM PST -thekaveman,2018-12-12T07:21:53Z,- thekaveman opened issue: [22](https://github.com/hackforla/website/issues/22) at 2018-12-11 11:21 PM PST -thekaveman,2018-12-13T05:53:23Z,- thekaveman submitted pull request review: [21](https://github.com/hackforla/website/pull/21#pullrequestreview-184509640) at 2018-12-12 09:53 PM PST -thekaveman,2018-12-13T06:40:07Z,- thekaveman commented on pull request: [21](https://github.com/hackforla/website/pull/21#issuecomment-446859222) at 2018-12-12 10:40 PM PST -thekaveman,2018-12-13T06:42:02Z,- thekaveman closed issue as completed: [22](https://github.com/hackforla/website/issues/22#event-2023395655) at 2018-12-12 10:42 PM PST -thekaveman,2018-12-13T06:42:28Z,- thekaveman commented on pull request: [23](https://github.com/hackforla/website/pull/23#issuecomment-446859672) at 2018-12-12 10:42 PM PST -thekaveman,2018-12-13T06:48:57Z,- thekaveman commented on issue: [7](https://github.com/hackforla/website/issues/7#issuecomment-446860942) at 2018-12-12 10:48 PM PST -thekaveman,2018-12-13T06:48:57Z,- thekaveman closed issue as completed: [7](https://github.com/hackforla/website/issues/7#event-2023404485) at 2018-12-12 10:48 PM PST -thekaveman,2018-12-13T09:04:02Z,- thekaveman opened pull request: [24](https://github.com/hackforla/website/pull/24) at 2018-12-13 01:04 AM PST -thekaveman,2018-12-13T09:16:22Z,- thekaveman commented on pull request: [24](https://github.com/hackforla/website/pull/24#issuecomment-446896494) at 2018-12-13 01:16 AM PST -thekaveman,2018-12-13T09:16:22Z,- thekaveman pull request merged: [24](https://github.com/hackforla/website/pull/24#event-2023660654) at 2018-12-13 01:16 AM PST -thekaveman,2018-12-13T09:17:28Z,- thekaveman commented on issue: [18](https://github.com/hackforla/website/issues/18#issuecomment-446896838) at 2018-12-13 01:17 AM PST -thekaveman,2018-12-13T09:17:28Z,- thekaveman closed issue as completed: [18](https://github.com/hackforla/website/issues/18#event-2023663298) at 2018-12-13 01:17 AM PST -thekaveman,2018-12-13T18:58:19Z,- thekaveman reopened pull request: [24](https://github.com/hackforla/website/pull/24#event-2023660654) at 2018-12-13 10:58 AM PST -thekaveman,2018-12-13T19:21:40Z,- thekaveman commented on pull request: [24](https://github.com/hackforla/website/pull/24#issuecomment-447088416) at 2018-12-13 11:21 AM PST -thekaveman,2018-12-13T19:23:39Z,- thekaveman pull request merged: [24](https://github.com/hackforla/website/pull/24#event-2025105294) at 2018-12-13 11:23 AM PST -thekaveman,2018-12-19T04:18:15Z,- thekaveman commented on pull request: [12](https://github.com/hackforla/website/pull/12#issuecomment-448464317) at 2018-12-18 08:18 PM PST -thekaveman,2018-12-19T05:04:54Z,- thekaveman commented on pull request: [25](https://github.com/hackforla/website/pull/25#issuecomment-448470680) at 2018-12-18 09:04 PM PST -thekaveman,2018-12-19T05:14:58Z,- thekaveman pull request merged: [12](https://github.com/hackforla/website/pull/12#event-2034761745) at 2018-12-18 09:14 PM PST -thekaveman,2018-12-19T05:26:08Z,- thekaveman commented on pull request: [25](https://github.com/hackforla/website/pull/25#issuecomment-448473795) at 2018-12-18 09:26 PM PST -thekaveman,2018-12-19T05:26:28Z,- thekaveman issue closed by PR 25: [9](https://github.com/hackforla/website/issues/9#event-2034772890) at 2018-12-18 09:26 PM PST -thekaveman,2019-01-09T05:16:36Z,- thekaveman commented on pull request: [28](https://github.com/hackforla/website/pull/28#issuecomment-452575017) at 2019-01-08 09:16 PM PST -thekaveman,2019-01-09T05:20:07Z,- thekaveman commented on pull request: [28](https://github.com/hackforla/website/pull/28#issuecomment-452575537) at 2019-01-08 09:20 PM PST -thekaveman,2019-01-09T17:59:22Z,- thekaveman commented on pull request: [29](https://github.com/hackforla/website/pull/29#issuecomment-452792650) at 2019-01-09 09:59 AM PST -thekaveman,2019-01-09T18:05:38Z,- thekaveman submitted pull request review: [29](https://github.com/hackforla/website/pull/29#pullrequestreview-190858016) at 2019-01-09 10:05 AM PST -thekaveman,2019-01-10T03:37:58Z,- thekaveman commented on pull request: [30](https://github.com/hackforla/website/pull/30#issuecomment-452959492) at 2019-01-09 07:37 PM PST -thekaveman,2019-03-12T03:09:13Z,- thekaveman submitted pull request review: [32](https://github.com/hackforla/website/pull/32#pullrequestreview-213177787) at 2019-03-11 08:09 PM PDT -thekaveman,2019-03-12T03:44:16Z,- thekaveman commented on pull request: [37](https://github.com/hackforla/website/pull/37#issuecomment-471844772) at 2019-03-11 08:44 PM PDT -thekaveman,2019-03-26T17:16:06Z,- thekaveman submitted pull request review: [45](https://github.com/hackforla/website/pull/45#pullrequestreview-219042590) at 2019-03-26 10:16 AM PDT -thekaveman,2019-03-26T18:41:11Z,- thekaveman commented on pull request: [44](https://github.com/hackforla/website/pull/44#issuecomment-476792653) at 2019-03-26 11:41 AM PDT -thekaveman,2019-03-26T18:41:19Z,- thekaveman commented on pull request: [43](https://github.com/hackforla/website/pull/43#issuecomment-476792711) at 2019-03-26 11:41 AM PDT -thekaveman,2019-03-26T18:41:36Z,- thekaveman commented on pull request: [41](https://github.com/hackforla/website/pull/41#issuecomment-476792823) at 2019-03-26 11:41 AM PDT -thekaveman,2019-03-27T02:29:35Z,- thekaveman submitted pull request review: [45](https://github.com/hackforla/website/pull/45#pullrequestreview-219243959) at 2019-03-26 07:29 PM PDT -thekaveman,2019-03-27T02:30:44Z,- thekaveman commented on pull request: [45](https://github.com/hackforla/website/pull/45#issuecomment-476941064) at 2019-03-26 07:30 PM PDT -thekaveman,2019-03-27T03:44:55Z,- thekaveman opened pull request: [46](https://github.com/hackforla/website/pull/46) at 2019-03-26 08:44 PM PDT -thekaveman,2019-03-28T16:52:47Z,- thekaveman commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-477681047) at 2019-03-28 09:52 AM PDT -thekaveman,2019-03-29T19:30:38Z,- thekaveman submitted pull request review: [52](https://github.com/hackforla/website/pull/52#pullrequestreview-220722528) at 2019-03-29 12:30 PM PDT -thekaveman,2019-03-30T18:32:00Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-220832167) at 2019-03-30 11:32 AM PDT -thekaveman,2019-03-30T18:44:15Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-220832630) at 2019-03-30 11:44 AM PDT -thekaveman,2019-03-30T18:49:41Z,- thekaveman submitted pull request review: [51](https://github.com/hackforla/website/pull/51#pullrequestreview-220832838) at 2019-03-30 11:49 AM PDT -thekaveman,2019-03-31T22:41:23Z,- thekaveman submitted pull request review: [53](https://github.com/hackforla/website/pull/53#pullrequestreview-220887972) at 2019-03-31 03:41 PM PDT -thekaveman,2019-03-31T22:58:49Z,- thekaveman submitted pull request review: [52](https://github.com/hackforla/website/pull/52#pullrequestreview-220888857) at 2019-03-31 03:58 PM PDT -thekaveman,2019-03-31T23:26:37Z,- thekaveman submitted pull request review: [50](https://github.com/hackforla/website/pull/50#pullrequestreview-220890185) at 2019-03-31 04:26 PM PDT -thekaveman,2019-04-02T00:11:36Z,- thekaveman commented on pull request: [57](https://github.com/hackforla/website/pull/57#issuecomment-478792708) at 2019-04-01 05:11 PM PDT -thekaveman,2019-04-02T03:52:41Z,- thekaveman submitted pull request review: [58](https://github.com/hackforla/website/pull/58#pullrequestreview-221439353) at 2019-04-01 08:52 PM PDT -thekaveman,2019-04-02T05:24:01Z,- thekaveman pull request merged: [46](https://github.com/hackforla/website/pull/46#event-2245325768) at 2019-04-01 10:24 PM PDT -thekaveman,2019-04-02T05:25:39Z,- thekaveman commented on pull request: [35](https://github.com/hackforla/website/pull/35#issuecomment-478849662) at 2019-04-01 10:25 PM PDT -thekaveman,2019-04-02T05:33:37Z,- thekaveman submitted pull request review: [54](https://github.com/hackforla/website/pull/54#pullrequestreview-221455865) at 2019-04-01 10:33 PM PDT -thekaveman,2019-04-02T05:44:50Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-221458036) at 2019-04-01 10:44 PM PDT -thekaveman,2019-04-02T06:12:52Z,- thekaveman commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-478858898) at 2019-04-01 11:12 PM PDT -thekaveman,2019-04-02T06:20:03Z,- thekaveman submitted pull request review: [54](https://github.com/hackforla/website/pull/54#pullrequestreview-221465705) at 2019-04-01 11:20 PM PDT -thekaveman,2019-04-10T16:26:15Z,- thekaveman opened pull request: [61](https://github.com/hackforla/website/pull/61) at 2019-04-10 09:26 AM PDT -thekaveman,2019-04-10T16:42:55Z,- thekaveman pull request merged: [61](https://github.com/hackforla/website/pull/61#event-2266712214) at 2019-04-10 09:42 AM PDT -thekaveman,2019-04-23T02:13:11Z,- thekaveman submitted pull request review: [63](https://github.com/hackforla/website/pull/63#pullrequestreview-229322844) at 2019-04-22 07:13 PM PDT -thekaveman,2019-04-23T02:18:33Z,- thekaveman submitted pull request review: [62](https://github.com/hackforla/website/pull/62#pullrequestreview-229323740) at 2019-04-22 07:18 PM PDT -thekaveman,2019-04-23T02:36:05Z,- thekaveman submitted pull request review: [48](https://github.com/hackforla/website/pull/48#pullrequestreview-229326766) at 2019-04-22 07:36 PM PDT -thekaveman,2019-04-23T02:42:06Z,- thekaveman commented on pull request: [48](https://github.com/hackforla/website/pull/48#issuecomment-485621446) at 2019-04-22 07:42 PM PDT -thekaveman,2019-04-23T02:47:46Z,- thekaveman submitted pull request review: [51](https://github.com/hackforla/website/pull/51#pullrequestreview-229328701) at 2019-04-22 07:47 PM PDT -thekaveman,2019-04-23T03:56:40Z,- thekaveman submitted pull request review: [54](https://github.com/hackforla/website/pull/54#pullrequestreview-229339313) at 2019-04-22 08:56 PM PDT -thekaveman,2019-04-23T05:46:26Z,- thekaveman submitted pull request review: [60](https://github.com/hackforla/website/pull/60#pullrequestreview-229357211) at 2019-04-22 10:46 PM PDT -thekaveman,2019-04-23T06:03:36Z,- thekaveman commented on issue: [20](https://github.com/hackforla/website/issues/20#issuecomment-485655425) at 2019-04-22 11:03 PM PDT -thekaveman,2019-04-23T06:03:37Z,- thekaveman closed issue as completed: [20](https://github.com/hackforla/website/issues/20#event-2292999909) at 2019-04-22 11:03 PM PDT -thekaveman,2019-04-23T06:09:49Z,- thekaveman commented on issue: [26](https://github.com/hackforla/website/issues/26#issuecomment-485656695) at 2019-04-22 11:09 PM PDT -thekaveman,2019-04-23T06:09:49Z,- thekaveman closed issue as completed: [26](https://github.com/hackforla/website/issues/26#event-2293009045) at 2019-04-22 11:09 PM PDT -thekaveman,2019-04-23T06:13:52Z,- thekaveman commented on issue: [17](https://github.com/hackforla/website/issues/17#issuecomment-485657529) at 2019-04-22 11:13 PM PDT -thekaveman,2019-04-24T17:37:54Z,- thekaveman submitted pull request review: [70](https://github.com/hackforla/website/pull/70#pullrequestreview-230257942) at 2019-04-24 10:37 AM PDT -thekaveman,2019-05-02T05:41:46Z,- thekaveman commented on pull request: [77](https://github.com/hackforla/website/pull/77#issuecomment-488558704) at 2019-05-01 10:41 PM PDT -thekaveman,2019-05-02T05:55:18Z,- thekaveman commented on pull request: [71](https://github.com/hackforla/website/pull/71#issuecomment-488560466) at 2019-05-01 10:55 PM PDT -thekaveman,2019-05-02T06:21:17Z,- thekaveman commented on pull request: [76](https://github.com/hackforla/website/pull/76#issuecomment-488564210) at 2019-05-01 11:21 PM PDT -thekaveman,2019-05-02T06:31:38Z,- thekaveman commented on issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-488565851) at 2019-05-01 11:31 PM PDT -thekaveman,2019-05-02T07:48:07Z,- thekaveman opened pull request: [82](https://github.com/hackforla/website/pull/82) at 2019-05-02 12:48 AM PDT -thekaveman,2019-05-02T17:49:35Z,- thekaveman commented on issue: [69](https://github.com/hackforla/website/issues/69#issuecomment-488767654) at 2019-05-02 10:49 AM PDT -thekaveman,2019-05-02T22:02:39Z,- thekaveman pull request merged: [82](https://github.com/hackforla/website/pull/82#event-2315833283) at 2019-05-02 03:02 PM PDT -thekaveman,2019-05-05T01:54:00Z,- thekaveman submitted pull request review: [90](https://github.com/hackforla/website/pull/90#pullrequestreview-233757091) at 2019-05-04 06:54 PM PDT -thekaveman,2019-05-05T01:56:55Z,- thekaveman closed issue as completed: [88](https://github.com/hackforla/website/issues/88#event-2319330621) at 2019-05-04 06:56 PM PDT -thekaveman,2019-05-08T03:22:07Z,- thekaveman submitted pull request review: [93](https://github.com/hackforla/website/pull/93#pullrequestreview-234849815) at 2019-05-07 08:22 PM PDT -thekaveman,2019-05-08T03:28:00Z,- thekaveman commented on pull request: [77](https://github.com/hackforla/website/pull/77#issuecomment-490333133) at 2019-05-07 08:28 PM PDT -thekaveman,2019-05-08T03:49:07Z,- thekaveman submitted pull request review: [94](https://github.com/hackforla/website/pull/94#pullrequestreview-234854044) at 2019-05-07 08:49 PM PDT -thekaveman,2019-05-08T04:04:28Z,- thekaveman submitted pull request review: [95](https://github.com/hackforla/website/pull/95#pullrequestreview-234856525) at 2019-05-07 09:04 PM PDT -thekaveman,2019-05-08T04:06:39Z,- thekaveman submitted pull request review: [96](https://github.com/hackforla/website/pull/96#pullrequestreview-234856853) at 2019-05-07 09:06 PM PDT -thekaveman,2019-05-09T00:15:33Z,- thekaveman assigned to issue: [97](https://github.com/hackforla/website/issues/97) at 2019-05-08 05:15 PM PDT -thekaveman,2019-05-09T03:01:15Z,- thekaveman commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-490724879) at 2019-05-08 08:01 PM PDT -thekaveman,2019-05-09T05:29:27Z,- thekaveman submitted pull request review: [96](https://github.com/hackforla/website/pull/96#pullrequestreview-235404481) at 2019-05-08 10:29 PM PDT -thekaveman,2019-05-09T06:12:59Z,- thekaveman opened pull request: [99](https://github.com/hackforla/website/pull/99) at 2019-05-08 11:12 PM PDT -thekaveman,2019-05-09T06:24:19Z,- thekaveman pull request merged: [99](https://github.com/hackforla/website/pull/99#event-2329247724) at 2019-05-08 11:24 PM PDT -thekaveman,2019-05-10T01:27:57Z,- thekaveman assigned to issue: [102](https://github.com/hackforla/website/issues/102) at 2019-05-09 06:27 PM PDT -thekaveman,2019-05-12T05:24:50Z,- thekaveman assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-11 10:24 PM PDT -thekaveman,2019-05-13T03:16:20Z,- thekaveman assigned to issue: [75](https://github.com/hackforla/website/issues/75#issuecomment-491662168) at 2019-05-12 08:16 PM PDT -thekaveman,2019-05-13T03:25:03Z,- thekaveman assigned to issue: [98](https://github.com/hackforla/website/issues/98) at 2019-05-12 08:25 PM PDT -thekaveman,2019-05-14T03:59:10Z,- thekaveman opened issue: [105](https://github.com/hackforla/website/issues/105) at 2019-05-13 08:59 PM PDT -thekaveman,2019-05-14T03:59:11Z,- thekaveman assigned to issue: [105](https://github.com/hackforla/website/issues/105) at 2019-05-13 08:59 PM PDT -thekaveman,2019-05-14T05:38:48Z,- thekaveman opened issue: [106](https://github.com/hackforla/website/issues/106) at 2019-05-13 10:38 PM PDT -thekaveman,2019-05-14T05:38:49Z,- thekaveman assigned to issue: [106](https://github.com/hackforla/website/issues/106) at 2019-05-13 10:38 PM PDT -thekaveman,2019-05-14T05:56:44Z,- thekaveman commented on issue: [106](https://github.com/hackforla/website/issues/106#issuecomment-492089460) at 2019-05-13 10:56 PM PDT -thekaveman,2019-05-14T06:19:46Z,- thekaveman opened pull request: [107](https://github.com/hackforla/website/pull/107) at 2019-05-13 11:19 PM PDT -thekaveman,2019-05-14T06:58:33Z,- thekaveman pull request merged: [107](https://github.com/hackforla/website/pull/107#event-2339065414) at 2019-05-13 11:58 PM PDT -thekaveman,2019-05-14T07:00:52Z,- thekaveman closed issue by PR 107: [106](https://github.com/hackforla/website/issues/106#event-2339070234) at 2019-05-14 12:00 AM PDT -thekaveman,2019-05-15T01:19:02Z,- thekaveman closed issue as completed: [105](https://github.com/hackforla/website/issues/105#event-2341843914) at 2019-05-14 06:19 PM PDT -thekaveman,2019-05-22T22:53:29Z,- thekaveman commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495003887) at 2019-05-22 03:53 PM PDT -thekaveman,2019-05-22T23:15:31Z,- thekaveman commented on pull request: [108](https://github.com/hackforla/website/pull/108#issuecomment-495008629) at 2019-05-22 04:15 PM PDT -thekaveman,2019-05-23T03:36:18Z,- thekaveman assigned to issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495055016) at 2019-05-22 08:36 PM PDT -thekaveman,2019-05-23T23:01:34Z,- thekaveman commented on issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-495414510) at 2019-05-23 04:01 PM PDT -thekaveman,2019-05-27T21:15:51Z,- thekaveman assigned to issue: [116](https://github.com/hackforla/website/issues/116) at 2019-05-27 02:15 PM PDT -thekaveman,2019-05-27T23:08:43Z,- thekaveman assigned to issue: [120](https://github.com/hackforla/website/issues/120) at 2019-05-27 04:08 PM PDT -thekaveman,2019-05-27T23:15:57Z,- thekaveman assigned to issue: [121](https://github.com/hackforla/website/issues/121) at 2019-05-27 04:15 PM PDT -thekaveman,2019-05-28T04:45:18Z,- thekaveman assigned to issue: [123](https://github.com/hackforla/website/issues/123) at 2019-05-27 09:45 PM PDT -thekaveman,2019-05-28T16:24:44Z,- thekaveman commented on issue: [123](https://github.com/hackforla/website/issues/123#issuecomment-496589121) at 2019-05-28 09:24 AM PDT -thekaveman,2019-05-28T16:29:58Z,- thekaveman commented on issue: [122](https://github.com/hackforla/website/issues/122#issuecomment-496591069) at 2019-05-28 09:29 AM PDT -thekaveman,2019-05-28T16:37:19Z,- thekaveman commented on issue: [120](https://github.com/hackforla/website/issues/120#issuecomment-496593746) at 2019-05-28 09:37 AM PDT -thekaveman,2019-05-28T16:42:53Z,- thekaveman commented on issue: [121](https://github.com/hackforla/website/issues/121#issuecomment-496595805) at 2019-05-28 09:42 AM PDT -thekaveman,2019-05-28T16:51:08Z,- thekaveman commented on issue: [121](https://github.com/hackforla/website/issues/121#issuecomment-496598721) at 2019-05-28 09:51 AM PDT -thekaveman,2019-05-28T16:54:19Z,- thekaveman commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-496599924) at 2019-05-28 09:54 AM PDT -thekaveman,2019-05-28T16:59:12Z,- thekaveman commented on issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-496601780) at 2019-05-28 09:59 AM PDT -thekaveman,2019-05-28T17:00:06Z,- thekaveman commented on issue: [122](https://github.com/hackforla/website/issues/122#issuecomment-496602098) at 2019-05-28 10:00 AM PDT -thekaveman,2019-05-28T17:00:06Z,- thekaveman closed issue as completed: [122](https://github.com/hackforla/website/issues/122#event-2372502899) at 2019-05-28 10:00 AM PDT -thekaveman,2019-05-28T17:00:55Z,- thekaveman commented on issue: [120](https://github.com/hackforla/website/issues/120#issuecomment-496602394) at 2019-05-28 10:00 AM PDT -thekaveman,2019-06-04T01:16:13Z,- thekaveman assigned to issue: [117](https://github.com/hackforla/website/issues/117) at 2019-06-03 06:16 PM PDT -thekaveman,2019-06-04T01:21:06Z,- thekaveman assigned to issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498110899) at 2019-06-03 06:21 PM PDT -thekaveman,2019-06-10T22:50:51Z,- thekaveman unassigned from issue: [111](https://github.com/hackforla/website/issues/111#issuecomment-498489346) at 2019-06-10 03:50 PM PDT -thekaveman,2019-06-12T23:02:43Z,- thekaveman commented on issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-501485359) at 2019-06-12 04:02 PM PDT -thekaveman,2019-06-25T01:48:12Z,- thekaveman assigned to issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-502934538) at 2019-06-24 06:48 PM PDT -thekaveman,2019-06-25T03:08:59Z,- thekaveman commented on pull request: [130](https://github.com/hackforla/website/pull/130#issuecomment-505262632) at 2019-06-24 08:08 PM PDT -thekaveman,2019-07-23T01:43:14Z,- thekaveman assigned to issue: [133](https://github.com/hackforla/website/issues/133) at 2019-07-22 06:43 PM PDT -thekaveman,2019-07-23T01:51:46Z,- thekaveman commented on issue: [133](https://github.com/hackforla/website/issues/133#issuecomment-514021041) at 2019-07-22 06:51 PM PDT -thekaveman,2019-07-23T03:24:27Z,- thekaveman commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-514038692) at 2019-07-22 08:24 PM PDT -thekaveman,2019-07-31T00:14:01Z,- thekaveman commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-516643121) at 2019-07-30 05:14 PM PDT -thekaveman,2019-08-06T03:29:43Z,- thekaveman opened issue: [138](https://github.com/hackforla/website/issues/138) at 2019-08-05 08:29 PM PDT -thekaveman,2019-08-13T03:19:40Z,- thekaveman commented on issue: [133](https://github.com/hackforla/website/issues/133#issuecomment-520673319) at 2019-08-12 08:19 PM PDT -thekaveman,2019-08-13T03:48:30Z,- thekaveman assigned to issue: [138](https://github.com/hackforla/website/issues/138) at 2019-08-12 08:48 PM PDT -thekaveman,2019-08-15T05:14:42Z,- thekaveman submitted pull request review: [139](https://github.com/hackforla/website/pull/139#pullrequestreview-275263440) at 2019-08-14 10:14 PM PDT -thekaveman,2019-08-19T14:30:40Z,- thekaveman assigned to issue: [134](https://github.com/hackforla/website/issues/134#issuecomment-520598144) at 2019-08-19 07:30 AM PDT -thekaveman,2019-08-22T05:49:34Z,- thekaveman commented on issue: [143](https://github.com/hackforla/website/issues/143#issuecomment-523758475) at 2019-08-21 10:49 PM PDT -thekaveman,2019-08-22T05:50:06Z,- thekaveman commented on issue: [133](https://github.com/hackforla/website/issues/133#issuecomment-523758572) at 2019-08-21 10:50 PM PDT -thekaveman,2019-08-22T05:50:06Z,- thekaveman closed issue as completed: [133](https://github.com/hackforla/website/issues/133#event-2575278293) at 2019-08-21 10:50 PM PDT -thekaveman,2019-08-22T05:57:54Z,- thekaveman opened pull request: [144](https://github.com/hackforla/website/pull/144) at 2019-08-21 10:57 PM PDT -thekaveman,2019-08-22T18:58:24Z,- thekaveman commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524033425) at 2019-08-22 11:58 AM PDT -thekaveman,2019-08-23T23:24:45Z,- thekaveman commented on pull request: [144](https://github.com/hackforla/website/pull/144#issuecomment-524491291) at 2019-08-23 04:24 PM PDT -thekaveman,2019-08-23T23:24:56Z,- thekaveman closed issue by PR 144: [134](https://github.com/hackforla/website/issues/134#event-2581057996) at 2019-08-23 04:24 PM PDT -thekaveman,2019-08-23T23:24:56Z,- thekaveman pull request merged: [144](https://github.com/hackforla/website/pull/144#event-2581058006) at 2019-08-23 04:24 PM PDT -thekaveman,2019-08-28T17:14:39Z,- thekaveman commented on issue: [118](https://github.com/hackforla/website/issues/118#issuecomment-525838267) at 2019-08-28 10:14 AM PDT -thekaveman,2019-10-15T02:36:56Z,- thekaveman submitted pull request review: [155](https://github.com/hackforla/website/pull/155#pullrequestreview-301625658) at 2019-10-14 07:36 PM PDT -thekaveman,2019-10-15T03:51:38Z,- thekaveman opened issue: [156](https://github.com/hackforla/website/issues/156) at 2019-10-14 08:51 PM PDT -thekaveman,2019-10-15T03:54:19Z,- thekaveman opened issue: [157](https://github.com/hackforla/website/issues/157) at 2019-10-14 08:54 PM PDT -thekaveman,2019-11-04T05:30:56Z,- thekaveman submitted pull request review: [165](https://github.com/hackforla/website/pull/165#pullrequestreview-310883405) at 2019-11-03 09:30 PM PST -thekaveman,2019-11-26T00:23:10Z,- thekaveman assigned to issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -thekaveman,2019-12-25T02:40:12Z,- thekaveman assigned to issue: [228](https://github.com/hackforla/website/issues/228) at 2019-12-24 06:40 PM PST -thekaveman,2019-12-29T23:10:06Z,- thekaveman assigned to issue: [233](https://github.com/hackforla/website/issues/233) at 2019-12-29 03:10 PM PST -thekaveman,2020-01-19T19:34:22Z,- thekaveman unassigned from issue: [228](https://github.com/hackforla/website/issues/228) at 2020-01-19 11:34 AM PST -thekaveman,2020-02-04T17:46:32Z,- thekaveman commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582031428) at 2020-02-04 09:46 AM PST -thekaveman,2020-02-05T18:34:23Z,- thekaveman commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582548902) at 2020-02-05 10:34 AM PST -thekaveman,2020-02-05T22:27:54Z,- thekaveman commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-582644033) at 2020-02-05 02:27 PM PST -thekaveman,2020-02-11T03:02:24Z,- thekaveman commented on pull request: [261](https://github.com/hackforla/website/pull/261#issuecomment-584460234) at 2020-02-10 07:02 PM PST -thekaveman,2020-02-13T02:28:48Z,- thekaveman commented on issue: [303](https://github.com/hackforla/website/issues/303#issuecomment-585518423) at 2020-02-12 06:28 PM PST -thekaveman,2020-02-23T18:21:45Z,- thekaveman unassigned from issue: [233](https://github.com/hackforla/website/issues/233#issuecomment-583876151) at 2020-02-23 10:21 AM PST -thekaveman,2020-03-01T18:50:30Z,- thekaveman closed issue as completed: [233](https://github.com/hackforla/website/issues/233#event-3085786561) at 2020-03-01 10:50 AM PST -thekaveman,2020-03-12T01:06:02Z,- thekaveman unassigned from issue: [116](https://github.com/hackforla/website/issues/116) at 2020-03-11 06:06 PM PDT -thekaveman,2020-03-12T01:06:53Z,- thekaveman unassigned from issue: [110](https://github.com/hackforla/website/issues/110#issuecomment-521455617) at 2020-03-11 06:06 PM PDT -thekaveman,2020-03-12T01:07:06Z,- thekaveman unassigned from issue: [102](https://github.com/hackforla/website/issues/102) at 2020-03-11 06:07 PM PDT -thekaveman,2020-03-12T01:07:19Z,- thekaveman unassigned from issue: [98](https://github.com/hackforla/website/issues/98#issuecomment-498905072) at 2020-03-11 06:07 PM PDT -thekaveman,2020-03-12T01:07:26Z,- thekaveman unassigned from issue: [97](https://github.com/hackforla/website/issues/97#issuecomment-500627159) at 2020-03-11 06:07 PM PDT -thekaveman,2020-03-12T01:08:00Z,- thekaveman unassigned from issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2020-03-11 06:08 PM PDT -thekaveman,2020-03-12T01:08:12Z,- thekaveman unassigned from issue: [192](https://github.com/hackforla/website/issues/192) at 2020-03-11 06:08 PM PDT -thekaveman,2020-11-12T23:53:22Z,- thekaveman closed issue as completed: [98](https://github.com/hackforla/website/issues/98#event-3991165564) at 2020-11-12 03:53 PM PST diff --git a/github-actions/activity-trigger/member_activity_history_bot_9.csv b/github-actions/activity-trigger/member_activity_history_bot_9.csv deleted file mode 100644 index 7ea118376b..0000000000 --- a/github-actions/activity-trigger/member_activity_history_bot_9.csv +++ /dev/null @@ -1,3213 +0,0 @@ -username,datetime,message -TheManTheMythTheGameDev,6946,SKILLS ISSUE -TheManTheMythTheGameDev,2024-06-04T02:53:03Z,- TheManTheMythTheGameDev opened issue: [6946](https://github.com/hackforla/website/issues/6946) at 2024-06-03 07:53 PM PDT -TheManTheMythTheGameDev,2024-06-04T02:53:14Z,- TheManTheMythTheGameDev assigned to issue: [6946](https://github.com/hackforla/website/issues/6946) at 2024-06-03 07:53 PM PDT -TheManTheMythTheGameDev,2024-07-18T23:06:24Z,- TheManTheMythTheGameDev assigned to issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2215440105) at 2024-07-18 04:06 PM PDT -TheManTheMythTheGameDev,2024-07-18T23:38:00Z,- TheManTheMythTheGameDev unassigned from issue: [6933](https://github.com/hackforla/website/issues/6933#issuecomment-2215440105) at 2024-07-18 04:38 PM PDT -TheManTheMythTheGameDev,2024-07-18T23:56:56Z,- TheManTheMythTheGameDev assigned to issue: [3525](https://github.com/hackforla/website/issues/3525#event-11823808208) at 2024-07-18 04:56 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:08:03Z,- TheManTheMythTheGameDev unassigned from issue: [3525](https://github.com/hackforla/website/issues/3525#event-11823808208) at 2024-07-18 05:08 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:10:08Z,- TheManTheMythTheGameDev assigned to issue: [7096](https://github.com/hackforla/website/issues/7096#issuecomment-2212639120) at 2024-07-18 05:10 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:21:05Z,- TheManTheMythTheGameDev commented on issue: [7096](https://github.com/hackforla/website/issues/7096#issuecomment-2237805073) at 2024-07-18 05:21 PM PDT -TheManTheMythTheGameDev,2024-07-19T00:23:09Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2237806559) at 2024-07-18 05:23 PM PDT -TheManTheMythTheGameDev,2024-07-19T01:55:21Z,- TheManTheMythTheGameDev opened pull request: [7129](https://github.com/hackforla/website/pull/7129) at 2024-07-18 06:55 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:11:35Z,- TheManTheMythTheGameDev commented on pull request: [7129](https://github.com/hackforla/website/pull/7129#issuecomment-2253689857) at 2024-07-26 06:11 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:13:28Z,- TheManTheMythTheGameDev assigned to issue: [7135](https://github.com/hackforla/website/issues/7135) at 2024-07-26 06:13 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:13:41Z,- TheManTheMythTheGameDev unassigned from issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253690494) at 2024-07-26 06:13 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:21:50Z,- TheManTheMythTheGameDev pull request merged: [7129](https://github.com/hackforla/website/pull/7129#event-13667080810) at 2024-07-26 06:21 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:30:06Z,- TheManTheMythTheGameDev assigned to issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253694808) at 2024-07-26 06:30 PM PDT -TheManTheMythTheGameDev,2024-07-27T01:42:56Z,- TheManTheMythTheGameDev commented on issue: [7135](https://github.com/hackforla/website/issues/7135#issuecomment-2253699764) at 2024-07-26 06:42 PM PDT -TheManTheMythTheGameDev,2024-07-29T20:18:25Z,- TheManTheMythTheGameDev opened pull request: [7153](https://github.com/hackforla/website/pull/7153) at 2024-07-29 01:18 PM PDT -TheManTheMythTheGameDev,2024-07-31T21:39:42Z,- TheManTheMythTheGameDev pull request merged: [7153](https://github.com/hackforla/website/pull/7153#event-13716592744) at 2024-07-31 02:39 PM PDT -TheManTheMythTheGameDev,2024-08-08T20:53:08Z,- TheManTheMythTheGameDev assigned to issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2272502319) at 2024-08-08 01:53 PM PDT -TheManTheMythTheGameDev,2024-08-08T20:58:26Z,- TheManTheMythTheGameDev commented on issue: [7137](https://github.com/hackforla/website/issues/7137#issuecomment-2276640672) at 2024-08-08 01:58 PM PDT -TheManTheMythTheGameDev,2024-08-08T21:49:52Z,- TheManTheMythTheGameDev opened pull request: [7255](https://github.com/hackforla/website/pull/7255) at 2024-08-08 02:49 PM PDT -TheManTheMythTheGameDev,2024-08-08T22:03:11Z,- TheManTheMythTheGameDev commented on pull request: [7227](https://github.com/hackforla/website/pull/7227#issuecomment-2276742805) at 2024-08-08 03:03 PM PDT -TheManTheMythTheGameDev,2024-08-08T22:46:32Z,- TheManTheMythTheGameDev submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2228986481) at 2024-08-08 03:46 PM PDT -TheManTheMythTheGameDev,2024-08-08T23:03:38Z,- TheManTheMythTheGameDev submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2229005194) at 2024-08-08 04:03 PM PDT -TheManTheMythTheGameDev,2024-08-14T04:35:29Z,- TheManTheMythTheGameDev submitted pull request review: [7227](https://github.com/hackforla/website/pull/7227#pullrequestreview-2237152550) at 2024-08-13 09:35 PM PDT -TheManTheMythTheGameDev,2024-08-15T14:57:24Z,- TheManTheMythTheGameDev pull request merged: [7255](https://github.com/hackforla/website/pull/7255#event-13897226310) at 2024-08-15 07:57 AM PDT -TheManTheMythTheGameDev,2024-11-09T19:51:59Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466434605) at 2024-11-09 11:51 AM PST -TheManTheMythTheGameDev,2024-11-09T19:53:27Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466435509) at 2024-11-09 11:53 AM PST -TheManTheMythTheGameDev,2024-11-09T19:53:56Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466435622) at 2024-11-09 11:53 AM PST -TheManTheMythTheGameDev,2024-11-09T19:54:33Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466435769) at 2024-11-09 11:54 AM PST -TheManTheMythTheGameDev,2024-11-09T19:57:48Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466436977) at 2024-11-09 11:57 AM PST -TheManTheMythTheGameDev,2024-11-09T19:58:31Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466437204) at 2024-11-09 11:58 AM PST -TheManTheMythTheGameDev,2024-11-09T20:00:44Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466437798) at 2024-11-09 12:00 PM PST -TheManTheMythTheGameDev,2024-11-09T20:04:24Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466439060) at 2024-11-09 12:04 PM PST -TheManTheMythTheGameDev,2024-11-09T20:12:10Z,- TheManTheMythTheGameDev commented on pull request: [7711](https://github.com/hackforla/website/pull/7711#issuecomment-2466441287) at 2024-11-09 12:12 PM PST -TheManTheMythTheGameDev,2024-11-09T21:03:45Z,- TheManTheMythTheGameDev submitted pull request review: [7711](https://github.com/hackforla/website/pull/7711#pullrequestreview-2425586867) at 2024-11-09 01:03 PM PST -TheManTheMythTheGameDev,2024-11-09T21:08:53Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466460508) at 2024-11-09 01:08 PM PST -TheManTheMythTheGameDev,2024-11-09T21:17:55Z,- TheManTheMythTheGameDev commented on issue: [6946](https://github.com/hackforla/website/issues/6946#issuecomment-2466462670) at 2024-11-09 01:17 PM PST -TheManTheMythTheGameDev,2025-02-08T20:34:06Z,- TheManTheMythTheGameDev commented on pull request: [7902](https://github.com/hackforla/website/pull/7902#issuecomment-2645931830) at 2025-02-08 12:34 PM PST -TheManTheMythTheGameDev,2025-02-09T20:36:12Z,- TheManTheMythTheGameDev submitted pull request review: [7902](https://github.com/hackforla/website/pull/7902#pullrequestreview-2604452787) at 2025-02-09 12:36 PM PST -TheManTheMythTheGameDev,2025-04-01T15:44:18Z,- TheManTheMythTheGameDev commented on pull request: [8021](https://github.com/hackforla/website/pull/8021#issuecomment-2769816280) at 2025-04-01 08:44 AM PDT -TheManTheMythTheGameDev,2025-04-16T03:43:36Z,- TheManTheMythTheGameDev commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2808150227) at 2025-04-15 08:43 PM PDT -TheManTheMythTheGameDev,2025-04-16T04:00:53Z,- TheManTheMythTheGameDev submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2770594806) at 2025-04-15 09:00 PM PDT -TheManTheMythTheGameDev,2025-04-16T04:07:49Z,- TheManTheMythTheGameDev submitted pull request review: [8057](https://github.com/hackforla/website/pull/8057#pullrequestreview-2770612360) at 2025-04-15 09:07 PM PDT -TheManTheMythTheGameDev,2025-04-28T23:03:45Z,- TheManTheMythTheGameDev commented on pull request: [8057](https://github.com/hackforla/website/pull/8057#issuecomment-2836968156) at 2025-04-28 04:03 PM PDT -TheManTheMythTheGameDev,2025-06-05T22:21:09Z,- TheManTheMythTheGameDev commented on pull request: [8171](https://github.com/hackforla/website/pull/8171#issuecomment-2946565711) at 2025-06-05 03:21 PM PDT -TheManTheMythTheGameDev,2025-06-06T00:56:17Z,- TheManTheMythTheGameDev submitted pull request review: [8171](https://github.com/hackforla/website/pull/8171#pullrequestreview-2903345005) at 2025-06-05 05:56 PM PDT -TheManTheMythTheGameDev,2025-07-18T18:03:05Z,- TheManTheMythTheGameDev commented on pull request: [8242](https://github.com/hackforla/website/pull/8242#issuecomment-3090256254) at 2025-07-18 11:03 AM PDT -theMorganObject,5209,SKILLS ISSUE -theMorganObject,2023-08-15T02:40:32Z,- theMorganObject opened issue: [5209](https://github.com/hackforla/website/issues/5209) at 2023-08-14 07:40 PM PDT -theMorganObject,2023-08-15T02:41:30Z,- theMorganObject assigned to issue: [5209](https://github.com/hackforla/website/issues/5209#issuecomment-1678350001) at 2023-08-14 07:41 PM PDT -theogguu,7516,SKILLS ISSUE -theogguu,2024-09-25T02:39:18Z,- theogguu opened issue: [7516](https://github.com/hackforla/website/issues/7516) at 2024-09-24 07:39 PM PDT -theogguu,2024-09-25T02:39:26Z,- theogguu assigned to issue: [7516](https://github.com/hackforla/website/issues/7516) at 2024-09-24 07:39 PM PDT -theogguu,2024-09-25T02:47:20Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2372780245) at 2024-09-24 07:47 PM PDT -theogguu,2024-09-25T02:57:57Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2372802311) at 2024-09-24 07:57 PM PDT -theogguu,2024-10-07T20:21:05Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2397817041) at 2024-10-07 01:21 PM PDT -theogguu,2024-10-07T20:24:47Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2397823392) at 2024-10-07 01:24 PM PDT -theogguu,2024-10-07T20:26:33Z,- theogguu assigned to issue: [7566](https://github.com/hackforla/website/issues/7566) at 2024-10-07 01:26 PM PDT -theogguu,2024-10-07T20:30:23Z,- theogguu commented on issue: [7566](https://github.com/hackforla/website/issues/7566#issuecomment-2397833530) at 2024-10-07 01:30 PM PDT -theogguu,2024-10-07T20:31:28Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2397835498) at 2024-10-07 01:31 PM PDT -theogguu,2024-10-07T21:01:47Z,- theogguu opened pull request: [7568](https://github.com/hackforla/website/pull/7568) at 2024-10-07 02:01 PM PDT -theogguu,2024-10-07T21:07:24Z,- theogguu commented on issue: [7566](https://github.com/hackforla/website/issues/7566#issuecomment-2397897705) at 2024-10-07 02:07 PM PDT -theogguu,2024-10-08T01:14:05Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2398384828) at 2024-10-07 06:14 PM PDT -theogguu,2024-10-08T20:43:41Z,- theogguu pull request merged: [7568](https://github.com/hackforla/website/pull/7568#event-14562668329) at 2024-10-08 01:43 PM PDT -theogguu,2024-10-09T02:04:22Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2401126663) at 2024-10-08 07:04 PM PDT -theogguu,2024-10-14T20:14:54Z,- theogguu assigned to issue: [7473](https://github.com/hackforla/website/issues/7473) at 2024-10-14 01:14 PM PDT -theogguu,2024-10-14T20:16:35Z,- theogguu commented on issue: [7473](https://github.com/hackforla/website/issues/7473#issuecomment-2412124215) at 2024-10-14 01:16 PM PDT -theogguu,2024-10-14T20:46:10Z,- theogguu opened pull request: [7592](https://github.com/hackforla/website/pull/7592) at 2024-10-14 01:46 PM PDT -theogguu,2024-10-14T20:48:58Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2412309205) at 2024-10-14 01:48 PM PDT -theogguu,2024-10-16T03:36:54Z,- theogguu pull request merged: [7592](https://github.com/hackforla/website/pull/7592#event-14667652060) at 2024-10-15 08:36 PM PDT -theogguu,2024-10-17T02:28:32Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2418361010) at 2024-10-16 07:28 PM PDT -theogguu,2024-10-19T21:58:41Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2424231714) at 2024-10-19 02:58 PM PDT -theogguu,2024-10-19T22:00:00Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2424232212) at 2024-10-19 03:00 PM PDT -theogguu,2024-10-19T22:02:08Z,- theogguu assigned to issue: [7563](https://github.com/hackforla/website/issues/7563) at 2024-10-19 03:02 PM PDT -theogguu,2024-10-19T22:03:02Z,- theogguu commented on issue: [7563](https://github.com/hackforla/website/issues/7563#issuecomment-2424232905) at 2024-10-19 03:03 PM PDT -theogguu,2024-10-19T22:04:53Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2424233455) at 2024-10-19 03:04 PM PDT -theogguu,2024-10-19T22:22:31Z,- theogguu opened pull request: [7599](https://github.com/hackforla/website/pull/7599) at 2024-10-19 03:22 PM PDT -theogguu,2024-10-21T23:34:11Z,- theogguu pull request merged: [7599](https://github.com/hackforla/website/pull/7599#event-14772739553) at 2024-10-21 04:34 PM PDT -theogguu,2024-10-22T00:51:49Z,- theogguu assigned to issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2398160671) at 2024-10-21 05:51 PM PDT -theogguu,2024-10-22T00:52:43Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2427997745) at 2024-10-21 05:52 PM PDT -theogguu,2024-10-22T00:53:22Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2427998354) at 2024-10-21 05:53 PM PDT -theogguu,2024-10-28T19:36:15Z,- theogguu opened issue: [7643](https://github.com/hackforla/website/issues/7643) at 2024-10-28 12:36 PM PDT -theogguu,2024-10-28T19:40:01Z,- theogguu opened issue: [7644](https://github.com/hackforla/website/issues/7644) at 2024-10-28 12:40 PM PDT -theogguu,2024-10-28T19:42:23Z,- theogguu opened issue: [7645](https://github.com/hackforla/website/issues/7645) at 2024-10-28 12:42 PM PDT -theogguu,2024-10-28T19:44:44Z,- theogguu opened issue: [7646](https://github.com/hackforla/website/issues/7646) at 2024-10-28 12:44 PM PDT -theogguu,2024-10-28T19:47:03Z,- theogguu opened issue: [7647](https://github.com/hackforla/website/issues/7647) at 2024-10-28 12:47 PM PDT -theogguu,2024-10-28T19:49:13Z,- theogguu opened issue: [7648](https://github.com/hackforla/website/issues/7648) at 2024-10-28 12:49 PM PDT -theogguu,2024-10-28T19:50:28Z,- theogguu opened issue: [7649](https://github.com/hackforla/website/issues/7649) at 2024-10-28 12:50 PM PDT -theogguu,2024-10-28T19:50:56Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2442488145) at 2024-10-28 12:50 PM PDT -theogguu,2024-10-28T20:15:37Z,- theogguu opened issue: [7650](https://github.com/hackforla/website/issues/7650) at 2024-10-28 01:15 PM PDT -theogguu,2024-10-28T20:17:25Z,- theogguu opened issue: [7651](https://github.com/hackforla/website/issues/7651) at 2024-10-28 01:17 PM PDT -theogguu,2024-10-28T20:18:01Z,- theogguu opened issue: [7652](https://github.com/hackforla/website/issues/7652) at 2024-10-28 01:18 PM PDT -theogguu,2024-10-28T20:19:05Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2442541302) at 2024-10-28 01:19 PM PDT -theogguu,2024-10-28T20:30:57Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2442562971) at 2024-10-28 01:30 PM PDT -theogguu,2024-10-28T22:58:16Z,- theogguu commented on pull request: [7653](https://github.com/hackforla/website/pull/7653#issuecomment-2442827987) at 2024-10-28 03:58 PM PDT -theogguu,2024-10-29T03:51:58Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2443145252) at 2024-10-28 08:51 PM PDT -theogguu,2024-11-09T05:38:28Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2466062883) at 2024-11-08 09:38 PM PST -theogguu,2024-11-09T05:40:44Z,- theogguu commented on issue: [7643](https://github.com/hackforla/website/issues/7643#issuecomment-2466063468) at 2024-11-08 09:40 PM PST -theogguu,2024-11-09T06:04:24Z,- theogguu commented on issue: [7646](https://github.com/hackforla/website/issues/7646#issuecomment-2466069579) at 2024-11-08 10:04 PM PST -theogguu,2024-11-09T06:05:47Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2466069987) at 2024-11-08 10:05 PM PST -theogguu,2024-11-11T02:46:23Z,- theogguu commented on pull request: [7716](https://github.com/hackforla/website/pull/7716#issuecomment-2467125927) at 2024-11-10 06:46 PM PST -theogguu,2024-11-11T02:56:38Z,- theogguu submitted pull request review: [7716](https://github.com/hackforla/website/pull/7716#pullrequestreview-2426026315) at 2024-11-10 06:56 PM PST -theogguu,2024-11-11T02:57:47Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2467134856) at 2024-11-10 06:57 PM PST -theogguu,2024-11-12T21:31:21Z,- theogguu submitted pull request review: [7717](https://github.com/hackforla/website/pull/7717#pullrequestreview-2430738089) at 2024-11-12 01:31 PM PST -theogguu,2024-11-12T21:32:36Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2471627642) at 2024-11-12 01:32 PM PST -theogguu,2024-11-12T21:53:09Z,- theogguu assigned to issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2449647523) at 2024-11-12 01:53 PM PST -theogguu,2024-11-12T21:53:29Z,- theogguu unassigned from issue: [6059](https://github.com/hackforla/website/issues/6059#issuecomment-2471660253) at 2024-11-12 01:53 PM PST -theogguu,2024-11-15T19:10:10Z,- theogguu assigned to issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2479744135) at 2024-11-15 11:10 AM PST -theogguu,2024-11-17T19:30:36Z,- theogguu commented on issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2481458031) at 2024-11-17 11:30 AM PST -theogguu,2024-11-17T19:30:41Z,- theogguu unassigned from issue: [7645](https://github.com/hackforla/website/issues/7645#issuecomment-2481458031) at 2024-11-17 11:30 AM PST -theogguu,2024-11-23T20:44:43Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2495649587) at 2024-11-23 12:44 PM PST -theogguu,2024-12-20T19:57:22Z,- theogguu commented on issue: [7305](https://github.com/hackforla/website/issues/7305#issuecomment-2557638890) at 2024-12-20 11:57 AM PST -theogguu,2024-12-20T20:01:04Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2557643137) at 2024-12-20 12:01 PM PST -theogguu,2025-01-07T06:02:41Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2574455714) at 2025-01-06 10:02 PM PST -theogguu,2025-01-20T03:51:43Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2601273412) at 2025-01-19 07:51 PM PST -theogguu,2025-01-29T04:05:08Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2620677623) at 2025-01-28 08:05 PM PST -theogguu,2025-02-09T01:28:17Z,- theogguu commented on issue: [7516](https://github.com/hackforla/website/issues/7516#issuecomment-2646013049) at 2025-02-08 05:28 PM PST -theswerd,2019-12-29T03:04:15Z,- theswerd assigned to issue: [257](https://github.com/hackforla/website/issues/257) at 2019-12-28 07:04 PM PST -theswerd,2020-04-21T18:07:37Z,- theswerd commented on issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-617325443) at 2020-04-21 11:07 AM PDT -theswerd,2020-08-13T06:31:29Z,- theswerd opened pull request: [681](https://github.com/hackforla/website/pull/681) at 2020-08-12 11:31 PM PDT -theswerd,2020-10-07T02:13:04Z,- theswerd pull request closed w/o merging: [681](https://github.com/hackforla/website/pull/681#event-3848248061) at 2020-10-06 07:13 PM PDT -thinhmai1027,4334,SKILLS ISSUE -thinhmai1027,2023-03-29T04:18:20Z,- thinhmai1027 opened issue: [4334](https://github.com/hackforla/website/issues/4334) at 2023-03-28 09:18 PM PDT -thinhmai1027,2023-03-29T04:18:21Z,- thinhmai1027 assigned to issue: [4334](https://github.com/hackforla/website/issues/4334) at 2023-03-28 09:18 PM PDT -Thinking-Panda,3916,SKILLS ISSUE -Thinking-Panda,2023-02-01T04:58:38Z,- Thinking-Panda opened issue: [3916](https://github.com/hackforla/website/issues/3916) at 2023-01-31 08:58 PM PST -Thinking-Panda,2023-02-01T05:06:01Z,- Thinking-Panda assigned to issue: [3916](https://github.com/hackforla/website/issues/3916) at 2023-01-31 09:06 PM PST -Thinking-Panda,2023-02-03T19:13:02Z,- Thinking-Panda assigned to issue: [3872](https://github.com/hackforla/website/issues/3872) at 2023-02-03 11:13 AM PST -Thinking-Panda,2023-02-06T21:30:40Z,- Thinking-Panda commented on issue: [3872](https://github.com/hackforla/website/issues/3872#issuecomment-1419784647) at 2023-02-06 01:30 PM PST -Thinking-Panda,2023-02-07T23:05:57Z,- Thinking-Panda opened pull request: [3954](https://github.com/hackforla/website/pull/3954) at 2023-02-07 03:05 PM PST -Thinking-Panda,2023-02-09T00:13:39Z,- Thinking-Panda pull request merged: [3954](https://github.com/hackforla/website/pull/3954#event-8474194073) at 2023-02-08 04:13 PM PST -Thinking-Panda,2023-02-09T20:23:25Z,- Thinking-Panda commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1424763039) at 2023-02-09 12:23 PM PST -Thinking-Panda,2023-02-10T19:12:51Z,- Thinking-Panda assigned to issue: [2806](https://github.com/hackforla/website/issues/2806#issuecomment-1308049061) at 2023-02-10 11:12 AM PST -Thinking-Panda,2023-02-10T20:09:15Z,- Thinking-Panda opened pull request: [3961](https://github.com/hackforla/website/pull/3961) at 2023-02-10 12:09 PM PST -Thinking-Panda,2023-02-14T19:59:52Z,- Thinking-Panda commented on pull request: [3961](https://github.com/hackforla/website/pull/3961#issuecomment-1430302091) at 2023-02-14 11:59 AM PST -Thinking-Panda,2023-02-15T08:11:47Z,- Thinking-Panda pull request merged: [3961](https://github.com/hackforla/website/pull/3961#event-8523214739) at 2023-02-15 12:11 AM PST -Thinking-Panda,2023-02-15T18:54:29Z,- Thinking-Panda assigned to issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1407975561) at 2023-02-15 10:54 AM PST -Thinking-Panda,2023-02-15T18:56:53Z,- Thinking-Panda commented on issue: [3059](https://github.com/hackforla/website/issues/3059#issuecomment-1431857827) at 2023-02-15 10:56 AM PST -Thinking-Panda,2023-02-16T18:59:58Z,- Thinking-Panda opened pull request: [3988](https://github.com/hackforla/website/pull/3988) at 2023-02-16 10:59 AM PST -Thinking-Panda,2023-02-17T02:48:54Z,- Thinking-Panda pull request merged: [3988](https://github.com/hackforla/website/pull/3988#event-8543017831) at 2023-02-16 06:48 PM PST -Thinking-Panda,2023-02-17T03:18:06Z,- Thinking-Panda commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1434040332) at 2023-02-16 07:18 PM PST -Thinking-Panda,2023-02-17T19:55:21Z,- Thinking-Panda commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1435166876) at 2023-02-17 11:55 AM PST -Thinking-Panda,2023-02-17T20:04:18Z,- Thinking-Panda submitted pull request review: [3989](https://github.com/hackforla/website/pull/3989#pullrequestreview-1304134452) at 2023-02-17 12:04 PM PST -Thinking-Panda,2023-02-17T20:08:20Z,- Thinking-Panda commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435185572) at 2023-02-17 12:08 PM PST -Thinking-Panda,2023-02-17T20:39:09Z,- Thinking-Panda submitted pull request review: [4002](https://github.com/hackforla/website/pull/4002#pullrequestreview-1304170356) at 2023-02-17 12:39 PM PST -Thinking-Panda,2023-02-18T06:08:39Z,- Thinking-Panda commented on pull request: [4002](https://github.com/hackforla/website/pull/4002#issuecomment-1435495608) at 2023-02-17 10:08 PM PST -Thinking-Panda,2023-02-20T19:06:00Z,- Thinking-Panda assigned to issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1401151372) at 2023-02-20 11:06 AM PST -Thinking-Panda,2023-02-20T19:07:54Z,- Thinking-Panda commented on issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1437441665) at 2023-02-20 11:07 AM PST -Thinking-Panda,2023-02-22T19:01:29Z,- Thinking-Panda submitted pull request review: [4022](https://github.com/hackforla/website/pull/4022#pullrequestreview-1309991535) at 2023-02-22 11:01 AM PST -Thinking-Panda,2023-02-23T06:10:02Z,- Thinking-Panda opened pull request: [4027](https://github.com/hackforla/website/pull/4027) at 2023-02-22 10:10 PM PST -Thinking-Panda,2023-02-23T17:56:43Z,- Thinking-Panda commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1442199998) at 2023-02-23 09:56 AM PST -Thinking-Panda,2023-02-24T22:59:06Z,- Thinking-Panda pull request merged: [4027](https://github.com/hackforla/website/pull/4027#event-8606329762) at 2023-02-24 02:59 PM PST -Thinking-Panda,2023-02-25T01:01:01Z,- Thinking-Panda commented on pull request: [4027](https://github.com/hackforla/website/pull/4027#issuecomment-1444838906) at 2023-02-24 05:01 PM PST -Thinking-Panda,2023-02-25T22:34:43Z,- Thinking-Panda commented on issue: [3802](https://github.com/hackforla/website/issues/3802#issuecomment-1445219417) at 2023-02-25 02:34 PM PST -Thinking-Panda,2023-02-27T20:08:54Z,- Thinking-Panda commented on pull request: [4048](https://github.com/hackforla/website/pull/4048#issuecomment-1447010159) at 2023-02-27 12:08 PM PST -Thinking-Panda,2023-02-27T20:26:01Z,- Thinking-Panda submitted pull request review: [4048](https://github.com/hackforla/website/pull/4048#pullrequestreview-1316377401) at 2023-02-27 12:26 PM PST -Thinking-Panda,2023-02-28T19:30:25Z,- Thinking-Panda commented on pull request: [4056](https://github.com/hackforla/website/pull/4056#issuecomment-1448743408) at 2023-02-28 11:30 AM PST -Thinking-Panda,2023-03-01T18:43:48Z,- Thinking-Panda submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1320425330) at 2023-03-01 10:43 AM PST -Thinking-Panda,2023-03-02T22:11:27Z,- Thinking-Panda submitted pull request review: [4056](https://github.com/hackforla/website/pull/4056#pullrequestreview-1322750922) at 2023-03-02 02:11 PM PST -Thinking-Panda,2023-03-06T18:12:31Z,- Thinking-Panda commented on pull request: [4114](https://github.com/hackforla/website/pull/4114#issuecomment-1456687761) at 2023-03-06 10:12 AM PST -Thinking-Panda,2023-03-06T19:49:56Z,- Thinking-Panda assigned to issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1445435515) at 2023-03-06 11:49 AM PST -Thinking-Panda,2023-03-06T19:50:50Z,- Thinking-Panda commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1456862843) at 2023-03-06 11:50 AM PST -Thinking-Panda,2023-03-06T22:57:55Z,- Thinking-Panda submitted pull request review: [4114](https://github.com/hackforla/website/pull/4114#pullrequestreview-1327344577) at 2023-03-06 02:57 PM PST -Thinking-Panda,2023-03-10T20:48:14Z,- Thinking-Panda commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1464450518) at 2023-03-10 12:48 PM PST -Thinking-Panda,2023-03-15T03:20:24Z,- Thinking-Panda commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1469251406) at 2023-03-14 08:20 PM PDT -Thinking-Panda,2023-03-16T20:31:43Z,- Thinking-Panda opened pull request: [4197](https://github.com/hackforla/website/pull/4197) at 2023-03-16 01:31 PM PDT -Thinking-Panda,2023-03-16T23:34:48Z,- Thinking-Panda commented on pull request: [4194](https://github.com/hackforla/website/pull/4194#issuecomment-1472896991) at 2023-03-16 04:34 PM PDT -Thinking-Panda,2023-03-17T20:16:31Z,- Thinking-Panda submitted pull request review: [4194](https://github.com/hackforla/website/pull/4194#pullrequestreview-1346666389) at 2023-03-17 01:16 PM PDT -Thinking-Panda,2023-03-17T21:29:28Z,- Thinking-Panda commented on pull request: [4202](https://github.com/hackforla/website/pull/4202#issuecomment-1474419691) at 2023-03-17 02:29 PM PDT -Thinking-Panda,2023-03-20T18:08:23Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1476708992) at 2023-03-20 11:08 AM PDT -Thinking-Panda,2023-03-20T18:17:58Z,- Thinking-Panda commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1476723395) at 2023-03-20 11:17 AM PDT -Thinking-Panda,2023-03-20T18:23:51Z,- Thinking-Panda submitted pull request review: [4215](https://github.com/hackforla/website/pull/4215#pullrequestreview-1349173234) at 2023-03-20 11:23 AM PDT -Thinking-Panda,2023-03-21T17:23:47Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1478303742) at 2023-03-21 10:23 AM PDT -Thinking-Panda,2023-03-21T17:28:30Z,- Thinking-Panda commented on pull request: [4215](https://github.com/hackforla/website/pull/4215#issuecomment-1478311681) at 2023-03-21 10:28 AM PDT -Thinking-Panda,2023-03-23T19:08:17Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1481750332) at 2023-03-23 12:08 PM PDT -Thinking-Panda,2023-03-24T16:20:09Z,- Thinking-Panda commented on issue: [3983](https://github.com/hackforla/website/issues/3983#issuecomment-1483072909) at 2023-03-24 09:20 AM PDT -Thinking-Panda,2023-03-27T19:11:23Z,- Thinking-Panda commented on issue: [3916](https://github.com/hackforla/website/issues/3916#issuecomment-1485725534) at 2023-03-27 12:11 PM PDT -Thinking-Panda,2023-04-12T03:20:36Z,- Thinking-Panda opened issue: [4490](https://github.com/hackforla/website/issues/4490) at 2023-04-11 08:20 PM PDT -Thinking-Panda,2023-04-13T17:26:10Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1507345270) at 2023-04-13 10:26 AM PDT -Thinking-Panda,2023-04-17T19:19:21Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1511954603) at 2023-04-17 12:19 PM PDT -Thinking-Panda,2023-04-18T23:19:33Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1513903110) at 2023-04-18 04:19 PM PDT -Thinking-Panda,2023-04-19T20:34:05Z,- Thinking-Panda commented on pull request: [4548](https://github.com/hackforla/website/pull/4548#issuecomment-1515343976) at 2023-04-19 01:34 PM PDT -Thinking-Panda,2023-04-20T06:28:24Z,- Thinking-Panda commented on pull request: [4197](https://github.com/hackforla/website/pull/4197#issuecomment-1515780453) at 2023-04-19 11:28 PM PDT -Thinking-Panda,2023-04-20T07:00:56Z,- Thinking-Panda pull request merged: [4197](https://github.com/hackforla/website/pull/4197#event-9053748124) at 2023-04-20 12:00 AM PDT -Thinking-Panda,2023-04-20T17:53:56Z,- Thinking-Panda submitted pull request review: [4548](https://github.com/hackforla/website/pull/4548#pullrequestreview-1394502844) at 2023-04-20 10:53 AM PDT -Thinking-Panda,2023-04-24T17:53:13Z,- Thinking-Panda commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1520591274) at 2023-04-24 10:53 AM PDT -Thinking-Panda,2023-04-24T18:11:34Z,- Thinking-Panda submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1398560607) at 2023-04-24 11:11 AM PDT -Thinking-Panda,2023-04-25T17:15:59Z,- Thinking-Panda commented on pull request: [4560](https://github.com/hackforla/website/pull/4560#issuecomment-1522144705) at 2023-04-25 10:15 AM PDT -Thinking-Panda,2023-04-25T17:25:41Z,- Thinking-Panda submitted pull request review: [4560](https://github.com/hackforla/website/pull/4560#pullrequestreview-1400395557) at 2023-04-25 10:25 AM PDT -Thinking-Panda,2023-04-25T17:28:30Z,- Thinking-Panda commented on pull request: [4561](https://github.com/hackforla/website/pull/4561#issuecomment-1522159052) at 2023-04-25 10:28 AM PDT -Thinking-Panda,2023-04-25T17:45:03Z,- Thinking-Panda submitted pull request review: [4561](https://github.com/hackforla/website/pull/4561#pullrequestreview-1400422708) at 2023-04-25 10:45 AM PDT -Thinking-Panda,2023-04-27T17:15:22Z,- Thinking-Panda commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1526056122) at 2023-04-27 10:15 AM PDT -Thinking-Panda,2023-04-27T17:16:11Z,- Thinking-Panda commented on pull request: [4570](https://github.com/hackforla/website/pull/4570#issuecomment-1526057050) at 2023-04-27 10:16 AM PDT -Thinking-Panda,2023-04-27T17:17:12Z,- Thinking-Panda commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1526058278) at 2023-04-27 10:17 AM PDT -Thinking-Panda,2023-04-27T20:48:55Z,- Thinking-Panda commented on pull request: [4570](https://github.com/hackforla/website/pull/4570#issuecomment-1526428505) at 2023-04-27 01:48 PM PDT -Thinking-Panda,2023-04-27T20:50:08Z,- Thinking-Panda submitted pull request review: [4570](https://github.com/hackforla/website/pull/4570#pullrequestreview-1404859728) at 2023-04-27 01:50 PM PDT -Thinking-Panda,2023-04-27T21:31:44Z,- Thinking-Panda submitted pull request review: [4569](https://github.com/hackforla/website/pull/4569#pullrequestreview-1404914418) at 2023-04-27 02:31 PM PDT -Thinking-Panda,2023-04-28T17:44:08Z,- Thinking-Panda submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1406359822) at 2023-04-28 10:44 AM PDT -Thinking-Panda,2023-04-28T19:19:23Z,- Thinking-Panda commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1527990621) at 2023-04-28 12:19 PM PDT -Thinking-Panda,2023-04-28T20:22:05Z,- Thinking-Panda submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1406550412) at 2023-04-28 01:22 PM PDT -Thinking-Panda,2023-04-29T05:32:42Z,- Thinking-Panda commented on pull request: [4573](https://github.com/hackforla/website/pull/4573#issuecomment-1528661775) at 2023-04-28 10:32 PM PDT -Thinking-Panda,2023-04-30T04:24:10Z,- Thinking-Panda submitted pull request review: [4573](https://github.com/hackforla/website/pull/4573#pullrequestreview-1407051296) at 2023-04-29 09:24 PM PDT -Thinking-Panda,2023-04-30T04:37:14Z,- Thinking-Panda commented on pull request: [4569](https://github.com/hackforla/website/pull/4569#issuecomment-1528937189) at 2023-04-29 09:37 PM PDT -Thinking-Panda,2023-05-10T02:30:39Z,- Thinking-Panda commented on pull request: [4640](https://github.com/hackforla/website/pull/4640#issuecomment-1541201005) at 2023-05-09 07:30 PM PDT -Thinking-Panda,2023-05-10T18:47:41Z,- Thinking-Panda submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1421206206) at 2023-05-10 11:47 AM PDT -Thinking-Panda,2023-05-10T18:59:47Z,- Thinking-Panda submitted pull request review: [4640](https://github.com/hackforla/website/pull/4640#pullrequestreview-1421221955) at 2023-05-10 11:59 AM PDT -Thinking-Panda,2023-05-12T16:47:30Z,- Thinking-Panda commented on pull request: [4657](https://github.com/hackforla/website/pull/4657#issuecomment-1546019184) at 2023-05-12 09:47 AM PDT -Thinking-Panda,2023-05-12T16:49:47Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1546021542) at 2023-05-12 09:49 AM PDT -Thinking-Panda,2023-05-12T18:56:55Z,- Thinking-Panda submitted pull request review: [4657](https://github.com/hackforla/website/pull/4657#pullrequestreview-1425015689) at 2023-05-12 11:56 AM PDT -Thinking-Panda,2023-05-12T20:03:37Z,- Thinking-Panda commented on issue: [4439](https://github.com/hackforla/website/issues/4439#issuecomment-1546226131) at 2023-05-12 01:03 PM PDT -Thinking-Panda,2023-05-15T20:11:10Z,- Thinking-Panda submitted pull request review: [4650](https://github.com/hackforla/website/pull/4650#pullrequestreview-1427298072) at 2023-05-15 01:11 PM PDT -Thinking-Panda,2023-05-16T17:24:24Z,- Thinking-Panda commented on pull request: [4680](https://github.com/hackforla/website/pull/4680#issuecomment-1550077223) at 2023-05-16 10:24 AM PDT -Thinking-Panda,2023-05-16T17:26:32Z,- Thinking-Panda commented on pull request: [4677](https://github.com/hackforla/website/pull/4677#issuecomment-1550079956) at 2023-05-16 10:26 AM PDT -Thinking-Panda,2023-05-16T20:47:37Z,- Thinking-Panda submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1429380880) at 2023-05-16 01:47 PM PDT -Thinking-Panda,2023-05-16T21:34:25Z,- Thinking-Panda submitted pull request review: [4677](https://github.com/hackforla/website/pull/4677#pullrequestreview-1429470979) at 2023-05-16 02:34 PM PDT -Thinking-Panda,2023-05-17T03:05:42Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1550618092) at 2023-05-16 08:05 PM PDT -Thinking-Panda,2023-05-19T00:22:08Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1553844472) at 2023-05-18 05:22 PM PDT -Thinking-Panda,2023-05-19T17:38:54Z,- Thinking-Panda submitted pull request review: [4650](https://github.com/hackforla/website/pull/4650#pullrequestreview-1434838058) at 2023-05-19 10:38 AM PDT -Thinking-Panda,2023-05-19T21:49:09Z,- Thinking-Panda submitted pull request review: [4650](https://github.com/hackforla/website/pull/4650#pullrequestreview-1435203834) at 2023-05-19 02:49 PM PDT -Thinking-Panda,2023-05-19T21:50:43Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1555292134) at 2023-05-19 02:50 PM PDT -Thinking-Panda,2023-05-22T16:33:11Z,- Thinking-Panda commented on pull request: [4650](https://github.com/hackforla/website/pull/4650#issuecomment-1557544068) at 2023-05-22 09:33 AM PDT -Thinking-Panda,2023-05-24T03:00:28Z,- Thinking-Panda submitted pull request review: [4680](https://github.com/hackforla/website/pull/4680#pullrequestreview-1440863779) at 2023-05-23 08:00 PM PDT -Thinking-Panda,2023-05-31T03:34:43Z,- Thinking-Panda commented on pull request: [4757](https://github.com/hackforla/website/pull/4757#issuecomment-1569446150) at 2023-05-30 08:34 PM PDT -Thinking-Panda,2023-05-31T17:59:57Z,- Thinking-Panda submitted pull request review: [4757](https://github.com/hackforla/website/pull/4757#pullrequestreview-1453849213) at 2023-05-31 10:59 AM PDT -Thinking-Panda,2023-06-16T23:01:31Z,- Thinking-Panda commented on pull request: [4842](https://github.com/hackforla/website/pull/4842#issuecomment-1595422494) at 2023-06-16 04:01 PM PDT -Thinking-Panda,2023-06-20T22:05:44Z,- Thinking-Panda submitted pull request review: [4842](https://github.com/hackforla/website/pull/4842#pullrequestreview-1489177883) at 2023-06-20 03:05 PM PDT -Thinking-Panda,2023-06-21T01:02:07Z,- Thinking-Panda assigned to issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1598129971) at 2023-06-20 06:02 PM PDT -Thinking-Panda,2023-06-21T01:04:17Z,- Thinking-Panda commented on issue: [4136](https://github.com/hackforla/website/issues/4136#issuecomment-1599883128) at 2023-06-20 06:04 PM PDT -Thinking-Panda,2023-07-12T16:53:46Z,- Thinking-Panda opened pull request: [4942](https://github.com/hackforla/website/pull/4942) at 2023-07-12 09:53 AM PDT -Thinking-Panda,2023-07-12T19:22:58Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1633086551) at 2023-07-12 12:22 PM PDT -Thinking-Panda,2023-08-01T02:53:13Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1659486362) at 2023-07-31 07:53 PM PDT -Thinking-Panda,2023-08-08T10:31:27Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1669356354) at 2023-08-08 03:31 AM PDT -Thinking-Panda,2023-08-11T14:11:06Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1674859606) at 2023-08-11 07:11 AM PDT -Thinking-Panda,2023-08-20T13:24:30Z,- Thinking-Panda commented on pull request: [4942](https://github.com/hackforla/website/pull/4942#issuecomment-1685285211) at 2023-08-20 06:24 AM PDT -Thinking-Panda,2023-08-21T03:22:00Z,- Thinking-Panda pull request merged: [4942](https://github.com/hackforla/website/pull/4942#event-10140193918) at 2023-08-20 08:22 PM PDT -Thinking-Panda,2023-08-29T22:03:43Z,- Thinking-Panda commented on pull request: [5339](https://github.com/hackforla/website/pull/5339#issuecomment-1698206515) at 2023-08-29 03:03 PM PDT -Thinking-Panda,2023-08-31T01:37:29Z,- Thinking-Panda submitted pull request review: [5339](https://github.com/hackforla/website/pull/5339#pullrequestreview-1603710640) at 2023-08-30 06:37 PM PDT -Thinking-Panda,2023-09-06T00:33:35Z,- Thinking-Panda commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1707480204) at 2023-09-05 05:33 PM PDT -Thinking-Panda,2023-09-07T17:39:36Z,- Thinking-Panda submitted pull request review: [5444](https://github.com/hackforla/website/pull/5444#pullrequestreview-1615952135) at 2023-09-07 10:39 AM PDT -Thinking-Panda,2023-09-07T17:42:25Z,- Thinking-Panda commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1710547930) at 2023-09-07 10:42 AM PDT -Thinking-Panda,2023-09-11T17:59:35Z,- Thinking-Panda commented on pull request: [5444](https://github.com/hackforla/website/pull/5444#issuecomment-1714343169) at 2023-09-11 10:59 AM PDT -Thinking-Panda,2023-09-18T17:28:17Z,- Thinking-Panda commented on pull request: [5538](https://github.com/hackforla/website/pull/5538#issuecomment-1724051798) at 2023-09-18 10:28 AM PDT -Thinking-Panda,2023-09-18T17:45:16Z,- Thinking-Panda submitted pull request review: [5538](https://github.com/hackforla/website/pull/5538#pullrequestreview-1631658987) at 2023-09-18 10:45 AM PDT -Thinking-Panda,2023-09-18T17:47:41Z,- Thinking-Panda commented on pull request: [5537](https://github.com/hackforla/website/pull/5537#issuecomment-1724085148) at 2023-09-18 10:47 AM PDT -Thinking-Panda,2023-09-18T18:31:52Z,- Thinking-Panda submitted pull request review: [5537](https://github.com/hackforla/website/pull/5537#pullrequestreview-1631733212) at 2023-09-18 11:31 AM PDT -Thinking-Panda,2023-09-19T21:13:40Z,- Thinking-Panda submitted pull request review: [5538](https://github.com/hackforla/website/pull/5538#pullrequestreview-1634197530) at 2023-09-19 02:13 PM PDT -Thinking-Panda,2023-09-19T21:42:27Z,- Thinking-Panda commented on pull request: [5557](https://github.com/hackforla/website/pull/5557#issuecomment-1726541466) at 2023-09-19 02:42 PM PDT -Thinking-Panda,2023-09-19T21:48:33Z,- Thinking-Panda submitted pull request review: [5557](https://github.com/hackforla/website/pull/5557#pullrequestreview-1634252334) at 2023-09-19 02:48 PM PDT -Thinking-Panda,2023-10-04T01:58:31Z,- Thinking-Panda commented on pull request: [5658](https://github.com/hackforla/website/pull/5658#issuecomment-1746010710) at 2023-10-03 06:58 PM PDT -Thinking-Panda,2023-10-05T16:09:46Z,- Thinking-Panda submitted pull request review: [5658](https://github.com/hackforla/website/pull/5658#pullrequestreview-1660248052) at 2023-10-05 09:09 AM PDT -Thinking-Panda,2023-10-11T02:04:58Z,- Thinking-Panda commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1756619549) at 2023-10-10 07:04 PM PDT -Thinking-Panda,2023-10-11T02:06:34Z,- Thinking-Panda commented on pull request: [5690](https://github.com/hackforla/website/pull/5690#issuecomment-1756620604) at 2023-10-10 07:06 PM PDT -Thinking-Panda,2023-10-12T19:08:37Z,- Thinking-Panda submitted pull request review: [5692](https://github.com/hackforla/website/pull/5692#pullrequestreview-1674966304) at 2023-10-12 12:08 PM PDT -Thinking-Panda,2023-10-12T19:55:50Z,- Thinking-Panda submitted pull request review: [5690](https://github.com/hackforla/website/pull/5690#pullrequestreview-1675072283) at 2023-10-12 12:55 PM PDT -Thinking-Panda,2023-10-16T18:51:32Z,- Thinking-Panda submitted pull request review: [5692](https://github.com/hackforla/website/pull/5692#pullrequestreview-1680760592) at 2023-10-16 11:51 AM PDT -Thinking-Panda,2023-10-16T19:04:39Z,- Thinking-Panda commented on pull request: [5692](https://github.com/hackforla/website/pull/5692#issuecomment-1765109884) at 2023-10-16 12:04 PM PDT -Thinking-Panda,2023-10-17T04:02:31Z,- Thinking-Panda assigned to issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1732618558) at 2023-10-16 09:02 PM PDT -Thinking-Panda,2023-10-17T04:03:27Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1765628147) at 2023-10-16 09:03 PM PDT -Thinking-Panda,2023-10-18T17:41:21Z,- Thinking-Panda commented on pull request: [5733](https://github.com/hackforla/website/pull/5733#issuecomment-1769034310) at 2023-10-18 10:41 AM PDT -Thinking-Panda,2023-10-18T18:20:40Z,- Thinking-Panda submitted pull request review: [5733](https://github.com/hackforla/website/pull/5733#pullrequestreview-1685819594) at 2023-10-18 11:20 AM PDT -Thinking-Panda,2023-10-22T13:52:18Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1774101539) at 2023-10-22 06:52 AM PDT -Thinking-Panda,2023-11-03T18:05:28Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1792904147) at 2023-11-03 11:05 AM PDT -Thinking-Panda,2023-11-13T22:17:31Z,- Thinking-Panda commented on issue: [4188](https://github.com/hackforla/website/issues/4188#issuecomment-1809224454) at 2023-11-13 02:17 PM PST -Thinking-Panda,2023-11-16T19:17:55Z,- Thinking-Panda commented on pull request: [5891](https://github.com/hackforla/website/pull/5891#issuecomment-1815163866) at 2023-11-16 11:17 AM PST -Thinking-Panda,2023-11-16T20:45:21Z,- Thinking-Panda submitted pull request review: [5891](https://github.com/hackforla/website/pull/5891#pullrequestreview-1735453010) at 2023-11-16 12:45 PM PST -Thinking-Panda,2023-11-22T00:17:31Z,- Thinking-Panda closed issue by PR 1: [4188](https://github.com/hackforla/website/issues/4188#event-11030492802) at 2023-11-21 04:17 PM PST -Thinking-Panda,2023-11-22T03:53:23Z,- Thinking-Panda reopened issue: [4188](https://github.com/hackforla/website/issues/4188#event-11030492802) at 2023-11-21 07:53 PM PST -Thinking-Panda,2023-11-22T04:11:13Z,- Thinking-Panda opened pull request: [5929](https://github.com/hackforla/website/pull/5929) at 2023-11-21 08:11 PM PST -Thinking-Panda,2023-11-22T19:01:17Z,- Thinking-Panda commented on pull request: [5929](https://github.com/hackforla/website/pull/5929#issuecomment-1823324444) at 2023-11-22 11:01 AM PST -Thinking-Panda,2023-11-22T19:12:13Z,- Thinking-Panda opened pull request: [5932](https://github.com/hackforla/website/pull/5932) at 2023-11-22 11:12 AM PST -Thinking-Panda,2023-11-22T19:13:08Z,- Thinking-Panda pull request closed w/o merging: [5929](https://github.com/hackforla/website/pull/5929#event-11040286088) at 2023-11-22 11:13 AM PST -Thinking-Panda,2023-11-22T19:58:08Z,- Thinking-Panda commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1823431486) at 2023-11-22 11:58 AM PST -Thinking-Panda,2023-11-28T22:41:43Z,- Thinking-Panda commented on pull request: [5941](https://github.com/hackforla/website/pull/5941#issuecomment-1830873777) at 2023-11-28 02:41 PM PST -Thinking-Panda,2023-11-28T22:46:50Z,- Thinking-Panda submitted pull request review: [5941](https://github.com/hackforla/website/pull/5941#pullrequestreview-1754087299) at 2023-11-28 02:46 PM PST -Thinking-Panda,2023-11-29T03:01:55Z,- Thinking-Panda commented on pull request: [5940](https://github.com/hackforla/website/pull/5940#issuecomment-1831137870) at 2023-11-28 07:01 PM PST -Thinking-Panda,2023-11-29T21:31:30Z,- Thinking-Panda submitted pull request review: [5940](https://github.com/hackforla/website/pull/5940#pullrequestreview-1756251777) at 2023-11-29 01:31 PM PST -Thinking-Panda,2023-11-30T17:00:15Z,- Thinking-Panda commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1834170088) at 2023-11-30 09:00 AM PST -Thinking-Panda,2023-12-04T19:32:11Z,- Thinking-Panda commented on pull request: [5932](https://github.com/hackforla/website/pull/5932#issuecomment-1839338910) at 2023-12-04 11:32 AM PST -Thinking-Panda,2023-12-07T20:02:06Z,- Thinking-Panda pull request merged: [5932](https://github.com/hackforla/website/pull/5932#event-11186320584) at 2023-12-07 12:02 PM PST -Thinking-Panda,2024-01-11T19:50:13Z,- Thinking-Panda commented on pull request: [6098](https://github.com/hackforla/website/pull/6098#issuecomment-1887860904) at 2024-01-11 11:50 AM PST -Thinking-Panda,2024-01-14T16:25:02Z,- Thinking-Panda submitted pull request review: [6098](https://github.com/hackforla/website/pull/6098#pullrequestreview-1820262290) at 2024-01-14 08:25 AM PST -Thinking-Panda,2024-01-30T19:56:44Z,- Thinking-Panda commented on pull request: [6190](https://github.com/hackforla/website/pull/6190#issuecomment-1917786904) at 2024-01-30 11:56 AM PST -Thinking-Panda,2024-01-30T20:09:14Z,- Thinking-Panda submitted pull request review: [6190](https://github.com/hackforla/website/pull/6190#pullrequestreview-1852255524) at 2024-01-30 12:09 PM PST -Thinking-Panda,2024-01-30T21:22:29Z,- Thinking-Panda commented on pull request: [6148](https://github.com/hackforla/website/pull/6148#issuecomment-1917916371) at 2024-01-30 01:22 PM PST -Thinking-Panda,2024-01-30T21:30:49Z,- Thinking-Panda commented on pull request: [6197](https://github.com/hackforla/website/pull/6197#issuecomment-1917927971) at 2024-01-30 01:30 PM PST -Thinking-Panda,2024-01-30T21:47:09Z,- Thinking-Panda submitted pull request review: [6197](https://github.com/hackforla/website/pull/6197#pullrequestreview-1852430991) at 2024-01-30 01:47 PM PST -Thinking-Panda,2024-01-30T21:58:05Z,- Thinking-Panda commented on pull request: [6198](https://github.com/hackforla/website/pull/6198#issuecomment-1917964297) at 2024-01-30 01:58 PM PST -Thinking-Panda,2024-01-30T23:20:09Z,- Thinking-Panda submitted pull request review: [6198](https://github.com/hackforla/website/pull/6198#pullrequestreview-1852585481) at 2024-01-30 03:20 PM PST -Thinking-Panda,2024-01-31T03:55:52Z,- Thinking-Panda submitted pull request review: [6148](https://github.com/hackforla/website/pull/6148#pullrequestreview-1852849691) at 2024-01-30 07:55 PM PST -Thinking-Panda,2024-02-01T22:10:36Z,- Thinking-Panda assigned to issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1851222927) at 2024-02-01 02:10 PM PST -Thinking-Panda,2024-02-05T19:59:04Z,- Thinking-Panda commented on issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1927998305) at 2024-02-05 11:59 AM PST -Thinking-Panda,2024-02-05T20:26:32Z,- Thinking-Panda opened issue: [6234](https://github.com/hackforla/website/issues/6234) at 2024-02-05 12:26 PM PST -Thinking-Panda,2024-02-05T20:32:55Z,- Thinking-Panda opened issue: [6235](https://github.com/hackforla/website/issues/6235) at 2024-02-05 12:32 PM PST -Thinking-Panda,2024-02-05T20:36:03Z,- Thinking-Panda opened issue: [6236](https://github.com/hackforla/website/issues/6236) at 2024-02-05 12:36 PM PST -Thinking-Panda,2024-02-05T20:39:30Z,- Thinking-Panda opened issue: [6237](https://github.com/hackforla/website/issues/6237) at 2024-02-05 12:39 PM PST -Thinking-Panda,2024-02-05T20:43:32Z,- Thinking-Panda opened issue: [6238](https://github.com/hackforla/website/issues/6238) at 2024-02-05 12:43 PM PST -Thinking-Panda,2024-02-05T20:46:57Z,- Thinking-Panda opened issue: [6239](https://github.com/hackforla/website/issues/6239) at 2024-02-05 12:46 PM PST -Thinking-Panda,2024-02-06T19:06:27Z,- Thinking-Panda commented on issue: [5999](https://github.com/hackforla/website/issues/5999#issuecomment-1930581920) at 2024-02-06 11:06 AM PST -Thinking-Panda,2024-02-06T22:23:17Z,- Thinking-Panda assigned to issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1925900125) at 2024-02-06 02:23 PM PST -Thinking-Panda,2024-02-06T22:34:02Z,- Thinking-Panda commented on pull request: [6260](https://github.com/hackforla/website/pull/6260#issuecomment-1930883460) at 2024-02-06 02:34 PM PST -Thinking-Panda,2024-02-06T23:05:28Z,- Thinking-Panda submitted pull request review: [6260](https://github.com/hackforla/website/pull/6260#pullrequestreview-1866484124) at 2024-02-06 03:05 PM PST -Thinking-Panda,2024-02-07T19:35:03Z,- Thinking-Panda submitted pull request review: [6260](https://github.com/hackforla/website/pull/6260#pullrequestreview-1868625312) at 2024-02-07 11:35 AM PST -Thinking-Panda,2024-02-07T19:40:20Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1932744099) at 2024-02-07 11:40 AM PST -Thinking-Panda,2024-02-08T20:04:15Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1934851091) at 2024-02-08 12:04 PM PST -Thinking-Panda,2024-02-08T21:05:36Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1934932083) at 2024-02-08 01:05 PM PST -Thinking-Panda,2024-02-09T20:57:11Z,- Thinking-Panda opened issue: [6272](https://github.com/hackforla/website/issues/6272) at 2024-02-09 12:57 PM PST -Thinking-Panda,2024-02-09T20:58:36Z,- Thinking-Panda commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1936593657) at 2024-02-09 12:58 PM PST -Thinking-Panda,2024-02-12T18:52:55Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-1939341412) at 2024-02-12 10:52 AM PST -Thinking-Panda,2024-02-13T20:51:58Z,- Thinking-Panda commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1942479887) at 2024-02-13 12:51 PM PST -Thinking-Panda,2024-02-13T21:02:11Z,- Thinking-Panda submitted pull request review: [6287](https://github.com/hackforla/website/pull/6287#pullrequestreview-1878914798) at 2024-02-13 01:02 PM PST -Thinking-Panda,2024-02-13T21:46:38Z,- Thinking-Panda commented on pull request: [6281](https://github.com/hackforla/website/pull/6281#issuecomment-1942677857) at 2024-02-13 01:46 PM PST -Thinking-Panda,2024-02-13T21:58:05Z,- Thinking-Panda submitted pull request review: [6281](https://github.com/hackforla/website/pull/6281#pullrequestreview-1879006440) at 2024-02-13 01:58 PM PST -Thinking-Panda,2024-02-13T23:30:21Z,- Thinking-Panda commented on pull request: [6287](https://github.com/hackforla/website/pull/6287#issuecomment-1942850162) at 2024-02-13 03:30 PM PST -Thinking-Panda,2024-02-20T21:34:44Z,- Thinking-Panda commented on pull request: [6324](https://github.com/hackforla/website/pull/6324#issuecomment-1955152565) at 2024-02-20 01:34 PM PST -Thinking-Panda,2024-02-20T23:45:58Z,- Thinking-Panda submitted pull request review: [6318](https://github.com/hackforla/website/pull/6318#pullrequestreview-1891785764) at 2024-02-20 03:45 PM PST -Thinking-Panda,2024-02-27T02:55:11Z,- Thinking-Panda assigned to issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1948949038) at 2024-02-26 06:55 PM PST -Thinking-Panda,2024-02-28T02:44:43Z,- Thinking-Panda commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1968089171) at 2024-02-27 06:44 PM PST -Thinking-Panda,2024-02-28T03:01:02Z,- Thinking-Panda unassigned from issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1968089171) at 2024-02-27 07:01 PM PST -Thinking-Panda,2024-02-28T03:06:08Z,- Thinking-Panda commented on pull request: [6371](https://github.com/hackforla/website/pull/6371#issuecomment-1968107841) at 2024-02-27 07:06 PM PST -Thinking-Panda,2024-02-28T18:23:59Z,- Thinking-Panda submitted pull request review: [6371](https://github.com/hackforla/website/pull/6371#pullrequestreview-1906967565) at 2024-02-28 10:23 AM PST -Thinking-Panda,2024-02-28T18:31:39Z,- Thinking-Panda closed issue by PR 6379: [6113](https://github.com/hackforla/website/issues/6113#event-11955706701) at 2024-02-28 10:31 AM PST -Thinking-Panda,2024-02-28T18:49:11Z,- Thinking-Panda commented on pull request: [6318](https://github.com/hackforla/website/pull/6318#issuecomment-1969622985) at 2024-02-28 10:49 AM PST -Thinking-Panda,2024-02-28T18:51:53Z,- Thinking-Panda commented on pull request: [6387](https://github.com/hackforla/website/pull/6387#issuecomment-1969627107) at 2024-02-28 10:51 AM PST -Thinking-Panda,2024-02-28T19:00:21Z,- Thinking-Panda submitted pull request review: [6387](https://github.com/hackforla/website/pull/6387#pullrequestreview-1907055626) at 2024-02-28 11:00 AM PST -Thinking-Panda,2024-02-28T19:00:49Z,- Thinking-Panda closed issue by PR 6387: [6313](https://github.com/hackforla/website/issues/6313#event-11956070077) at 2024-02-28 11:00 AM PST -Thinking-Panda,2024-03-04T20:00:52Z,- Thinking-Panda submitted pull request review: [6392](https://github.com/hackforla/website/pull/6392#pullrequestreview-1915233242) at 2024-03-04 12:00 PM PST -Thinking-Panda,2024-03-04T21:45:03Z,- Thinking-Panda commented on pull request: [6414](https://github.com/hackforla/website/pull/6414#issuecomment-1977515111) at 2024-03-04 01:45 PM PST -Thinking-Panda,2024-03-04T21:47:31Z,- Thinking-Panda submitted pull request review: [6414](https://github.com/hackforla/website/pull/6414#pullrequestreview-1915417378) at 2024-03-04 01:47 PM PST -Thinking-Panda,2024-03-04T21:49:05Z,- Thinking-Panda closed issue by PR 6414: [6258](https://github.com/hackforla/website/issues/6258#event-12005234189) at 2024-03-04 01:49 PM PST -Thinking-Panda,2024-03-04T21:52:25Z,- Thinking-Panda commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1977525710) at 2024-03-04 01:52 PM PST -Thinking-Panda,2024-03-06T03:18:28Z,- Thinking-Panda submitted pull request review: [6434](https://github.com/hackforla/website/pull/6434#pullrequestreview-1918663464) at 2024-03-05 07:18 PM PST -Thinking-Panda,2024-03-06T03:18:48Z,- Thinking-Panda closed issue by PR 6434: [5826](https://github.com/hackforla/website/issues/5826#event-12021979044) at 2024-03-05 07:18 PM PST -Thinking-Panda,2024-03-06T03:38:01Z,- Thinking-Panda submitted pull request review: [6410](https://github.com/hackforla/website/pull/6410#pullrequestreview-1918680570) at 2024-03-05 07:38 PM PST -Thinking-Panda,2024-03-11T18:21:34Z,- Thinking-Panda submitted pull request review: [6410](https://github.com/hackforla/website/pull/6410#pullrequestreview-1928725445) at 2024-03-11 11:21 AM PDT -Thinking-Panda,2024-03-11T18:22:52Z,- Thinking-Panda closed issue by PR 6410: [6376](https://github.com/hackforla/website/issues/6376#event-12078179694) at 2024-03-11 11:22 AM PDT -Thinking-Panda,2024-03-11T18:45:48Z,- Thinking-Panda commented on pull request: [6411](https://github.com/hackforla/website/pull/6411#issuecomment-1989194208) at 2024-03-11 11:45 AM PDT -Thinking-Panda,2024-03-11T18:50:01Z,- Thinking-Panda commented on issue: [6272](https://github.com/hackforla/website/issues/6272#issuecomment-1989200625) at 2024-03-11 11:50 AM PDT -Thinking-Panda,2024-03-11T18:58:31Z,- Thinking-Panda commented on issue: [6234](https://github.com/hackforla/website/issues/6234#issuecomment-1989215320) at 2024-03-11 11:58 AM PDT -Thinking-Panda,2024-03-12T19:39:22Z,- Thinking-Panda commented on pull request: [6392](https://github.com/hackforla/website/pull/6392#issuecomment-1992401869) at 2024-03-12 12:39 PM PDT -Thinking-Panda,2024-03-19T19:53:49Z,- Thinking-Panda closed issue by PR 6465: [6169](https://github.com/hackforla/website/issues/6169#event-12174882189) at 2024-03-19 12:53 PM PDT -Thinking-Panda,2024-03-27T17:37:42Z,- Thinking-Panda submitted pull request review: [6518](https://github.com/hackforla/website/pull/6518#pullrequestreview-1964047171) at 2024-03-27 10:37 AM PDT -Thinking-Panda,2024-03-27T18:02:11Z,- Thinking-Panda submitted pull request review: [6411](https://github.com/hackforla/website/pull/6411#pullrequestreview-1964121370) at 2024-03-27 11:02 AM PDT -Thinking-Panda,2024-03-28T18:29:48Z,- Thinking-Panda commented on issue: [6225](https://github.com/hackforla/website/issues/6225#issuecomment-2025858416) at 2024-03-28 11:29 AM PDT -Thinking-Panda,2024-03-28T18:32:23Z,- Thinking-Panda closed issue by PR 6518: [6509](https://github.com/hackforla/website/issues/6509#event-12285877946) at 2024-03-28 11:32 AM PDT -Thinking-Panda,2024-04-18T21:01:40Z,- Thinking-Panda assigned to issue: [6290](https://github.com/hackforla/website/issues/6290) at 2024-04-18 02:01 PM PDT -Thinking-Panda,2024-04-18T21:19:12Z,- Thinking-Panda opened issue: [6683](https://github.com/hackforla/website/issues/6683) at 2024-04-18 02:19 PM PDT -Thinking-Panda,2024-04-23T19:05:30Z,- Thinking-Panda commented on issue: [6683](https://github.com/hackforla/website/issues/6683#issuecomment-2073216121) at 2024-04-23 12:05 PM PDT -Thinking-Panda,2024-04-24T01:46:08Z,- Thinking-Panda submitted pull request review: [6711](https://github.com/hackforla/website/pull/6711#pullrequestreview-2018626093) at 2024-04-23 06:46 PM PDT -Thinking-Panda,2024-04-24T02:12:20Z,- Thinking-Panda commented on pull request: [6690](https://github.com/hackforla/website/pull/6690#issuecomment-2073868821) at 2024-04-23 07:12 PM PDT -Thinking-Panda,2024-04-24T02:16:35Z,- Thinking-Panda commented on pull request: [6678](https://github.com/hackforla/website/pull/6678#issuecomment-2073873384) at 2024-04-23 07:16 PM PDT -Thinking-Panda,2024-04-29T21:25:20Z,- Thinking-Panda commented on pull request: [6770](https://github.com/hackforla/website/pull/6770#issuecomment-2083703473) at 2024-04-29 02:25 PM PDT -Thinking-Panda,2024-04-29T21:26:51Z,- Thinking-Panda closed issue by PR 6770: [6763](https://github.com/hackforla/website/issues/6763#event-12649345297) at 2024-04-29 02:26 PM PDT -Thinking-Panda,2024-04-29T21:41:04Z,- Thinking-Panda commented on pull request: [6767](https://github.com/hackforla/website/pull/6767#issuecomment-2083730958) at 2024-04-29 02:41 PM PDT -Thinking-Panda,2024-04-29T22:02:43Z,- Thinking-Panda commented on pull request: [6746](https://github.com/hackforla/website/pull/6746#issuecomment-2083760252) at 2024-04-29 03:02 PM PDT -Thinking-Panda,2024-04-29T22:02:49Z,- Thinking-Panda closed issue by PR 6746: [6700](https://github.com/hackforla/website/issues/6700#event-12649690255) at 2024-04-29 03:02 PM PDT -Thinking-Panda,2024-04-30T18:39:52Z,- Thinking-Panda commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086512461) at 2024-04-30 11:39 AM PDT -Thinking-Panda,2024-04-30T18:41:03Z,- Thinking-Panda submitted pull request review: [6782](https://github.com/hackforla/website/pull/6782#pullrequestreview-2032218655) at 2024-04-30 11:41 AM PDT -Thinking-Panda,2024-04-30T18:43:10Z,- Thinking-Panda commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086529856) at 2024-04-30 11:43 AM PDT -Thinking-Panda,2024-04-30T18:43:16Z,- Thinking-Panda closed issue by PR 6782: [6633](https://github.com/hackforla/website/issues/6633#event-12662432033) at 2024-04-30 11:43 AM PDT -Thinking-Panda,2024-04-30T19:11:22Z,- Thinking-Panda commented on pull request: [6686](https://github.com/hackforla/website/pull/6686#issuecomment-2086691613) at 2024-04-30 12:11 PM PDT -Thinking-Panda,2024-04-30T19:11:32Z,- Thinking-Panda closed issue by PR 6686: [6623](https://github.com/hackforla/website/issues/6623#event-12662740902) at 2024-04-30 12:11 PM PDT -Thinking-Panda,2024-04-30T19:27:53Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2086800878) at 2024-04-30 12:27 PM PDT -Thinking-Panda,2024-05-01T19:53:20Z,- Thinking-Panda submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2034340798) at 2024-05-01 12:53 PM PDT -Thinking-Panda,2024-05-01T20:36:13Z,- Thinking-Panda submitted pull request review: [6777](https://github.com/hackforla/website/pull/6777#pullrequestreview-2034411477) at 2024-05-01 01:36 PM PDT -Thinking-Panda,2024-05-07T19:11:01Z,- Thinking-Panda closed issue by PR 6814: [6703](https://github.com/hackforla/website/issues/6703#event-12734184511) at 2024-05-07 12:11 PM PDT -Thinking-Panda,2024-05-07T19:14:05Z,- Thinking-Panda commented on pull request: [6810](https://github.com/hackforla/website/pull/6810#issuecomment-2099129172) at 2024-05-07 12:14 PM PDT -Thinking-Panda,2024-05-07T19:21:14Z,- Thinking-Panda submitted pull request review: [6810](https://github.com/hackforla/website/pull/6810#pullrequestreview-2043982054) at 2024-05-07 12:21 PM PDT -Thinking-Panda,2024-05-07T19:21:25Z,- Thinking-Panda closed issue by PR 6810: [6762](https://github.com/hackforla/website/issues/6762#event-12734293807) at 2024-05-07 12:21 PM PDT -Thinking-Panda,2024-05-21T18:53:13Z,- Thinking-Panda commented on issue: [6574](https://github.com/hackforla/website/issues/6574#issuecomment-2123248757) at 2024-05-21 11:53 AM PDT -Thinking-Panda,2024-05-21T18:53:44Z,- Thinking-Panda closed issue as completed: [6574](https://github.com/hackforla/website/issues/6574#event-12884210356) at 2024-05-21 11:53 AM PDT -Thinking-Panda,2024-05-22T02:16:35Z,- Thinking-Panda commented on pull request: [6865](https://github.com/hackforla/website/pull/6865#issuecomment-2123746489) at 2024-05-21 07:16 PM PDT -Thinking-Panda,2024-05-22T21:52:29Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2125832527) at 2024-05-22 02:52 PM PDT -Thinking-Panda,2024-05-28T18:04:01Z,- Thinking-Panda assigned to issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2046334879) at 2024-05-28 11:04 AM PDT -Thinking-Panda,2024-05-28T18:04:29Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2135834250) at 2024-05-28 11:04 AM PDT -Thinking-Panda,2024-05-29T02:44:33Z,- Thinking-Panda commented on pull request: [6766](https://github.com/hackforla/website/pull/6766#issuecomment-2136416764) at 2024-05-28 07:44 PM PDT -Thinking-Panda,2024-05-29T20:11:23Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2138184758) at 2024-05-29 01:11 PM PDT -Thinking-Panda,2024-05-29T20:17:16Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2138193502) at 2024-05-29 01:17 PM PDT -Thinking-Panda,2024-05-29T20:38:01Z,- Thinking-Panda closed issue by PR 6891: [6734](https://github.com/hackforla/website/issues/6734#event-12977053482) at 2024-05-29 01:38 PM PDT -Thinking-Panda,2024-05-29T20:46:13Z,- Thinking-Panda commented on issue: [6593](https://github.com/hackforla/website/issues/6593#issuecomment-2138235210) at 2024-05-29 01:46 PM PDT -Thinking-Panda,2024-05-29T20:46:13Z,- Thinking-Panda closed issue as completed: [6593](https://github.com/hackforla/website/issues/6593#event-12977127260) at 2024-05-29 01:46 PM PDT -Thinking-Panda,2024-05-31T20:08:57Z,- Thinking-Panda commented on issue: [6320](https://github.com/hackforla/website/issues/6320#issuecomment-2142912885) at 2024-05-31 01:08 PM PDT -Thinking-Panda,2024-05-31T20:19:08Z,- Thinking-Panda opened issue: [6920](https://github.com/hackforla/website/issues/6920) at 2024-05-31 01:19 PM PDT -Thinking-Panda,2024-06-03T18:06:49Z,- Thinking-Panda opened issue: [6930](https://github.com/hackforla/website/issues/6930) at 2024-06-03 11:06 AM PDT -Thinking-Panda,2024-06-03T18:11:33Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2145830271) at 2024-06-03 11:11 AM PDT -Thinking-Panda,2024-06-05T19:07:14Z,- Thinking-Panda commented on pull request: [6925](https://github.com/hackforla/website/pull/6925#issuecomment-2150766987) at 2024-06-05 12:07 PM PDT -Thinking-Panda,2024-06-05T19:07:20Z,- Thinking-Panda closed issue by PR 6925: [6725](https://github.com/hackforla/website/issues/6725#event-13056210586) at 2024-06-05 12:07 PM PDT -Thinking-Panda,2024-06-05T20:25:30Z,- Thinking-Panda commented on pull request: [6924](https://github.com/hackforla/website/pull/6924#issuecomment-2150905742) at 2024-06-05 01:25 PM PDT -Thinking-Panda,2024-06-05T20:27:03Z,- Thinking-Panda closed issue by PR 6924: [6864](https://github.com/hackforla/website/issues/6864#event-13057117937) at 2024-06-05 01:27 PM PDT -Thinking-Panda,2024-06-07T19:06:37Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2155371380) at 2024-06-07 12:06 PM PDT -Thinking-Panda,2024-06-07T20:36:39Z,- Thinking-Panda submitted pull request review: [6747](https://github.com/hackforla/website/pull/6747#pullrequestreview-2105323488) at 2024-06-07 01:36 PM PDT -Thinking-Panda,2024-06-07T22:07:53Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2155634403) at 2024-06-07 03:07 PM PDT -Thinking-Panda,2024-06-10T20:46:38Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2159254384) at 2024-06-10 01:46 PM PDT -Thinking-Panda,2024-06-11T17:24:11Z,- Thinking-Panda commented on issue: [6920](https://github.com/hackforla/website/issues/6920#issuecomment-2161268259) at 2024-06-11 10:24 AM PDT -Thinking-Panda,2024-06-11T18:02:48Z,- Thinking-Panda submitted pull request review: [6983](https://github.com/hackforla/website/pull/6983#pullrequestreview-2111128136) at 2024-06-11 11:02 AM PDT -Thinking-Panda,2024-06-11T18:02:55Z,- Thinking-Panda closed issue by PR 6983: [6936](https://github.com/hackforla/website/issues/6936#event-13120940981) at 2024-06-11 11:02 AM PDT -Thinking-Panda,2024-06-11T18:18:40Z,- Thinking-Panda commented on issue: [6737](https://github.com/hackforla/website/issues/6737#issuecomment-2161354929) at 2024-06-11 11:18 AM PDT -Thinking-Panda,2024-06-11T19:22:50Z,- Thinking-Panda commented on pull request: [6972](https://github.com/hackforla/website/pull/6972#issuecomment-2161456220) at 2024-06-11 12:22 PM PDT -Thinking-Panda,2024-06-11T19:22:58Z,- Thinking-Panda closed issue by PR 6972: [6655](https://github.com/hackforla/website/issues/6655#event-13121767956) at 2024-06-11 12:22 PM PDT -Thinking-Panda,2024-06-12T02:34:35Z,- Thinking-Panda commented on pull request: [6915](https://github.com/hackforla/website/pull/6915#issuecomment-2161989966) at 2024-06-11 07:34 PM PDT -Thinking-Panda,2024-06-12T03:36:04Z,- Thinking-Panda commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2162040498) at 2024-06-11 08:36 PM PDT -Thinking-Panda,2024-06-12T03:36:56Z,- Thinking-Panda commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2162041113) at 2024-06-11 08:36 PM PDT -Thinking-Panda,2024-06-12T03:36:56Z,- Thinking-Panda closed issue as completed: [6594](https://github.com/hackforla/website/issues/6594#event-13125413775) at 2024-06-11 08:36 PM PDT -Thinking-Panda,2024-06-12T16:10:49Z,- Thinking-Panda commented on issue: [6750](https://github.com/hackforla/website/issues/6750#issuecomment-2163428113) at 2024-06-12 09:10 AM PDT -Thinking-Panda,2024-06-12T16:10:49Z,- Thinking-Panda closed issue as completed: [6750](https://github.com/hackforla/website/issues/6750#event-13134349469) at 2024-06-12 09:10 AM PDT -Thinking-Panda,2024-06-12T16:34:09Z,- Thinking-Panda commented on issue: [6755](https://github.com/hackforla/website/issues/6755#issuecomment-2163469758) at 2024-06-12 09:34 AM PDT -Thinking-Panda,2024-06-12T16:34:09Z,- Thinking-Panda closed issue as completed: [6755](https://github.com/hackforla/website/issues/6755#event-13134610280) at 2024-06-12 09:34 AM PDT -Thinking-Panda,2024-06-12T17:11:14Z,- Thinking-Panda submitted pull request review: [6985](https://github.com/hackforla/website/pull/6985#pullrequestreview-2113630587) at 2024-06-12 10:11 AM PDT -Thinking-Panda,2024-06-12T17:11:34Z,- Thinking-Panda closed issue by PR 6985: [6910](https://github.com/hackforla/website/issues/6910#event-13135052646) at 2024-06-12 10:11 AM PDT -Thinking-Panda,2024-06-19T19:46:41Z,- Thinking-Panda commented on pull request: [6747](https://github.com/hackforla/website/pull/6747#issuecomment-2179374097) at 2024-06-19 12:46 PM PDT -Thinking-Panda,2024-06-25T20:21:45Z,- Thinking-Panda submitted pull request review: [7063](https://github.com/hackforla/website/pull/7063#pullrequestreview-2139777515) at 2024-06-25 01:21 PM PDT -Thinking-Panda,2024-06-25T20:21:58Z,- Thinking-Panda closed issue by PR 7063: [7060](https://github.com/hackforla/website/issues/7060#event-13287463396) at 2024-06-25 01:21 PM PDT -Thinking-Panda,2024-06-25T20:32:04Z,- Thinking-Panda submitted pull request review: [7059](https://github.com/hackforla/website/pull/7059#pullrequestreview-2139795293) at 2024-06-25 01:32 PM PDT -Thinking-Panda,2024-06-25T20:32:12Z,- Thinking-Panda closed issue by PR 7059: [7044](https://github.com/hackforla/website/issues/7044#event-13287574422) at 2024-06-25 01:32 PM PDT -Thinking-Panda,2024-06-25T20:53:54Z,- Thinking-Panda commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2189949178) at 2024-06-25 01:53 PM PDT -Thinking-Panda,2024-06-27T02:43:30Z,- Thinking-Panda commented on pull request: [6982](https://github.com/hackforla/website/pull/6982#issuecomment-2193023726) at 2024-06-26 07:43 PM PDT -Thinking-Panda,2024-07-10T20:39:57Z,- Thinking-Panda submitted pull request review: [7052](https://github.com/hackforla/website/pull/7052#pullrequestreview-2170240357) at 2024-07-10 01:39 PM PDT -Thinking-Panda,2024-07-10T20:41:57Z,- Thinking-Panda closed issue by PR 7052: [6787](https://github.com/hackforla/website/issues/6787#event-13462074328) at 2024-07-10 01:41 PM PDT -Thinking-Panda,2024-09-03T18:48:58Z,- Thinking-Panda assigned to issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2308941749) at 2024-09-03 11:48 AM PDT -Thinking-Panda,2024-09-03T18:49:38Z,- Thinking-Panda commented on issue: [6579](https://github.com/hackforla/website/issues/6579#issuecomment-2327196158) at 2024-09-03 11:49 AM PDT -Thinking-Panda,2024-09-03T18:56:43Z,- Thinking-Panda opened issue: [7379](https://github.com/hackforla/website/issues/7379) at 2024-09-03 11:56 AM PDT -Thinking-Panda,2024-09-03T19:44:16Z,- Thinking-Panda assigned to issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2060724382) at 2024-09-03 12:44 PM PDT -Thinking-Panda,2024-09-03T19:44:59Z,- Thinking-Panda commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2327299384) at 2024-09-03 12:44 PM PDT -Thinking-Panda,2024-09-04T22:05:02Z,- Thinking-Panda closed issue by PR 7376: [7286](https://github.com/hackforla/website/issues/7286#event-14138080203) at 2024-09-04 03:05 PM PDT -Thinking-Panda,2024-09-04T22:10:41Z,- Thinking-Panda closed issue by PR 7371: [7287](https://github.com/hackforla/website/issues/7287#event-14138152740) at 2024-09-04 03:10 PM PDT -Thinking-Panda,2024-09-04T22:18:07Z,- Thinking-Panda closed issue by PR 7370: [7179](https://github.com/hackforla/website/issues/7179#event-14138224297) at 2024-09-04 03:18 PM PDT -Thinking-Panda,2024-09-04T22:44:06Z,- Thinking-Panda commented on pull request: [7368](https://github.com/hackforla/website/pull/7368#issuecomment-2330276656) at 2024-09-04 03:44 PM PDT -Thinking-Panda,2024-09-05T18:37:20Z,- Thinking-Panda commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2332399884) at 2024-09-05 11:37 AM PDT -Thinking-Panda,2024-09-09T19:14:54Z,- Thinking-Panda commented on issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2338890373) at 2024-09-09 12:14 PM PDT -Thinking-Panda,2024-09-11T02:16:13Z,- Thinking-Panda commented on pull request: [7428](https://github.com/hackforla/website/pull/7428#issuecomment-2342479503) at 2024-09-10 07:16 PM PDT -Thinking-Panda,2024-09-11T02:23:01Z,- Thinking-Panda commented on pull request: [7369](https://github.com/hackforla/website/pull/7369#issuecomment-2342485258) at 2024-09-10 07:23 PM PDT -Thinking-Panda,2024-09-11T02:27:56Z,- Thinking-Panda commented on pull request: [7298](https://github.com/hackforla/website/pull/7298#issuecomment-2342489842) at 2024-09-10 07:27 PM PDT -Thinking-Panda,2024-09-11T02:30:21Z,- Thinking-Panda commented on pull request: [6873](https://github.com/hackforla/website/pull/6873#issuecomment-2342491813) at 2024-09-10 07:30 PM PDT -Thinking-Panda,2024-09-11T17:23:23Z,- Thinking-Panda commented on issue: [7143](https://github.com/hackforla/website/issues/7143#issuecomment-2344267767) at 2024-09-11 10:23 AM PDT -Thinking-Panda,2024-09-11T17:49:59Z,- Thinking-Panda commented on pull request: [7427](https://github.com/hackforla/website/pull/7427#issuecomment-2344319430) at 2024-09-11 10:49 AM PDT -Thinking-Panda,2024-09-11T17:50:06Z,- Thinking-Panda closed issue by PR 7427: [7190](https://github.com/hackforla/website/issues/7190#event-14220457555) at 2024-09-11 10:50 AM PDT -Thinking-Panda,2024-09-18T18:52:05Z,- Thinking-Panda commented on pull request: [7463](https://github.com/hackforla/website/pull/7463#issuecomment-2359185445) at 2024-09-18 11:52 AM PDT -Thinking-Panda,2024-09-18T18:52:39Z,- Thinking-Panda closed issue by PR 7463: [7413](https://github.com/hackforla/website/issues/7413#event-14312283188) at 2024-09-18 11:52 AM PDT -Thinking-Panda,2024-09-18T19:01:57Z,- Thinking-Panda commented on pull request: [7468](https://github.com/hackforla/website/pull/7468#issuecomment-2359202588) at 2024-09-18 12:01 PM PDT -Thinking-Panda,2024-09-18T19:14:08Z,- Thinking-Panda commented on pull request: [7462](https://github.com/hackforla/website/pull/7462#issuecomment-2359223122) at 2024-09-18 12:14 PM PDT -Thinking-Panda,2024-09-18T19:14:14Z,- Thinking-Panda closed issue by PR 7462: [7412](https://github.com/hackforla/website/issues/7412#event-14312516777) at 2024-09-18 12:14 PM PDT -Thinking-Panda,2024-09-18T19:19:29Z,- Thinking-Panda commented on pull request: [7447](https://github.com/hackforla/website/pull/7447#issuecomment-2359232004) at 2024-09-18 12:19 PM PDT -Thinking-Panda,2024-09-18T19:19:34Z,- Thinking-Panda closed issue by PR 7447: [7410](https://github.com/hackforla/website/issues/7410#event-14312572358) at 2024-09-18 12:19 PM PDT -Thinking-Panda,2024-09-18T20:25:06Z,- Thinking-Panda submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2313721968) at 2024-09-18 01:25 PM PDT -Thinking-Panda,2024-09-24T00:20:47Z,- Thinking-Panda commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2369836784) at 2024-09-23 05:20 PM PDT -Thinking-Panda,2024-09-24T19:39:08Z,- Thinking-Panda submitted pull request review: [7467](https://github.com/hackforla/website/pull/7467#pullrequestreview-2326278667) at 2024-09-24 12:39 PM PDT -Thinking-Panda,2024-09-24T20:09:57Z,- Thinking-Panda commented on issue: [7093](https://github.com/hackforla/website/issues/7093#issuecomment-2372275423) at 2024-09-24 01:09 PM PDT -Thinking-Panda,2024-09-24T20:10:04Z,- Thinking-Panda closed issue by PR 7496: [7093](https://github.com/hackforla/website/issues/7093#event-14387939245) at 2024-09-24 01:10 PM PDT -Thinking-Panda,2024-10-08T20:43:30Z,- Thinking-Panda commented on pull request: [7568](https://github.com/hackforla/website/pull/7568#issuecomment-2400785845) at 2024-10-08 01:43 PM PDT -Thinking-Panda,2024-10-08T20:43:42Z,- Thinking-Panda closed issue by PR 7568: [7566](https://github.com/hackforla/website/issues/7566#event-14562668496) at 2024-10-08 01:43 PM PDT -Thinking-Panda,2024-10-08T21:08:26Z,- Thinking-Panda closed issue by PR 7558: [7442](https://github.com/hackforla/website/issues/7442#event-14562902237) at 2024-10-08 02:08 PM PDT -Thinking-Panda,2024-10-22T20:07:59Z,- Thinking-Panda commented on pull request: [7616](https://github.com/hackforla/website/pull/7616#issuecomment-2430156634) at 2024-10-22 01:07 PM PDT -Thinking-Panda,2024-10-29T19:27:22Z,- Thinking-Panda commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2445146730) at 2024-10-29 12:27 PM PDT -Thinking-Panda,2024-10-29T19:27:29Z,- Thinking-Panda closed issue by PR 7639: [7542](https://github.com/hackforla/website/issues/7542#event-14990258566) at 2024-10-29 12:27 PM PDT -Thinking-Panda,2024-10-30T02:28:17Z,- Thinking-Panda commented on pull request: [7637](https://github.com/hackforla/website/pull/7637#issuecomment-2445692812) at 2024-10-29 07:28 PM PDT -Thinking-Panda,2025-03-16T22:50:54Z,- Thinking-Panda unassigned from issue: [6319](https://github.com/hackforla/website/issues/6319#issuecomment-2492717099) at 2025-03-16 03:50 PM PDT -this-journey,4976,SKILLS ISSUE -this-journey,2023-07-18T01:54:56Z,- this-journey opened issue: [4976](https://github.com/hackforla/website/issues/4976) at 2023-07-17 06:54 PM PDT -this-journey,2023-07-18T02:30:04Z,- this-journey assigned to issue: [4976](https://github.com/hackforla/website/issues/4976) at 2023-07-17 07:30 PM PDT -thisisdientran,6116,SKILLS ISSUE -thisisdientran,2024-01-17T03:43:51Z,- thisisdientran opened issue: [6116](https://github.com/hackforla/website/issues/6116) at 2024-01-16 07:43 PM PST -thisisdientran,2024-01-17T03:44:24Z,- thisisdientran assigned to issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1894889344) at 2024-01-16 07:44 PM PST -thisisdientran,2024-01-17T05:24:25Z,- thisisdientran assigned to issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1891077439) at 2024-01-16 09:24 PM PST -thisisdientran,2024-01-17T05:27:49Z,- thisisdientran assigned to issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1763726158) at 2024-01-16 09:27 PM PST -thisisdientran,2024-01-17T05:30:00Z,- thisisdientran commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1894968095) at 2024-01-16 09:30 PM PST -thisisdientran,2024-01-24T00:51:05Z,- thisisdientran commented on issue: [6116](https://github.com/hackforla/website/issues/6116#issuecomment-1907163198) at 2024-01-23 04:51 PM PST -thisisdientran,2024-01-26T07:16:34Z,- thisisdientran commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1911594050) at 2024-01-25 11:16 PM PST -thisisdientran,2024-02-04T18:11:24Z,- thisisdientran commented on issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1925869172) at 2024-02-04 10:11 AM PST -thisisdientran,2024-02-21T19:25:16Z,- thisisdientran unassigned from issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1957748732) at 2024-02-21 11:25 AM PST -thisisdientran,2024-02-28T23:32:06Z,- thisisdientran unassigned from issue: [5710](https://github.com/hackforla/website/issues/5710#issuecomment-1970091931) at 2024-02-28 03:32 PM PST -thomasdemoner,2022-05-12T22:31:51Z,- thomasdemoner opened issue: [3135](https://github.com/hackforla/website/issues/3135) at 2022-05-12 03:31 PM PDT -thomasdemoner,2022-05-12T22:45:06Z,- thomasdemoner commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1125484834) at 2022-05-12 03:45 PM PDT -thomasnguyens,7625,SKILLS ISSUE -thomasnguyens,2024-10-23T03:11:47Z,- thomasnguyens opened issue: [7625](https://github.com/hackforla/website/issues/7625) at 2024-10-22 08:11 PM PDT -thomasnguyens,2024-10-23T03:11:56Z,- thomasnguyens assigned to issue: [7625](https://github.com/hackforla/website/issues/7625) at 2024-10-22 08:11 PM PDT -tiffany-wong,2022-06-14T04:00:06Z,- tiffany-wong opened issue: [3247](https://github.com/hackforla/website/issues/3247) at 2022-06-13 09:00 PM PDT -tiffanyux,2019-05-27T20:44:40Z,- tiffanyux assigned to issue: [103](https://github.com/hackforla/website/issues/103) at 2019-05-27 01:44 PM PDT -tiffanyux,2020-01-07T03:44:01Z,- tiffanyux closed issue as completed: [103](https://github.com/hackforla/website/issues/103#event-2926318142) at 2020-01-06 07:44 PM PST -tiffchannn,5071,SKILLS ISSUE -tiffchannn,2023-07-26T03:00:22Z,- tiffchannn opened issue: [5071](https://github.com/hackforla/website/issues/5071) at 2023-07-25 08:00 PM PDT -tiffchannn,2023-07-26T03:00:34Z,- tiffchannn assigned to issue: [5071](https://github.com/hackforla/website/issues/5071) at 2023-07-25 08:00 PM PDT -tiffchannn,2023-07-26T22:01:39Z,- tiffchannn assigned to issue: [4806](https://github.com/hackforla/website/issues/4806) at 2023-07-26 03:01 PM PDT -tiffchannn,2023-07-27T19:34:51Z,- tiffchannn commented on issue: [4806](https://github.com/hackforla/website/issues/4806#issuecomment-1654422193) at 2023-07-27 12:34 PM PDT -tiffchannn,2023-07-28T18:01:00Z,- tiffchannn commented on issue: [5071](https://github.com/hackforla/website/issues/5071#issuecomment-1656114369) at 2023-07-28 11:01 AM PDT -tiffchannn,2023-07-28T18:15:22Z,- tiffchannn commented on issue: [4806](https://github.com/hackforla/website/issues/4806#issuecomment-1656136227) at 2023-07-28 11:15 AM PDT -tiffchannn,2023-07-28T18:35:56Z,- tiffchannn opened pull request: [5108](https://github.com/hackforla/website/pull/5108) at 2023-07-28 11:35 AM PDT -tiffchannn,2023-07-30T16:28:48Z,- tiffchannn pull request merged: [5108](https://github.com/hackforla/website/pull/5108#event-9957044279) at 2023-07-30 09:28 AM PDT -timmalstead,2020-03-28T21:43:39Z,- timmalstead commented on issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-605523506) at 2020-03-28 02:43 PM PDT -TJameel120,4637,SKILLS ISSUE -TJameel120,2023-05-09T04:16:13Z,- TJameel120 opened issue: [4637](https://github.com/hackforla/website/issues/4637) at 2023-05-08 09:16 PM PDT -TJameel120,2023-05-09T04:16:14Z,- TJameel120 assigned to issue: [4637](https://github.com/hackforla/website/issues/4637) at 2023-05-08 09:16 PM PDT -TJameel120,2023-05-21T18:48:12Z,- TJameel120 assigned to issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556190845) at 2023-05-21 11:48 AM PDT -TJameel120,2023-05-21T18:50:14Z,- TJameel120 commented on issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556258065) at 2023-05-21 11:50 AM PDT -TJameel120,2023-06-11T17:59:11Z,- TJameel120 unassigned from issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586262316) at 2023-06-11 10:59 AM PDT -tkozek,5225,SKILLS ISSUE -tkozek,2023-08-15T03:38:50Z,- tkozek opened issue: [5225](https://github.com/hackforla/website/issues/5225) at 2023-08-14 08:38 PM PDT -tkozek,2023-08-15T03:39:01Z,- tkozek assigned to issue: [5225](https://github.com/hackforla/website/issues/5225) at 2023-08-14 08:39 PM PDT -tkozek,2023-08-20T17:22:55Z,- tkozek assigned to issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1622211652) at 2023-08-20 10:22 AM PDT -tkozek,2023-08-20T17:51:12Z,- tkozek unassigned from issue: [4101](https://github.com/hackforla/website/issues/4101#issuecomment-1685346382) at 2023-08-20 10:51 AM PDT -tkozek,2023-08-20T18:01:38Z,- tkozek assigned to issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1685225711) at 2023-08-20 11:01 AM PDT -tkozek,2023-08-26T01:31:30Z,- tkozek commented on issue: [5225](https://github.com/hackforla/website/issues/5225#issuecomment-1694103910) at 2023-08-25 06:31 PM PDT -tkozek,2023-08-26T01:34:31Z,- tkozek assigned to issue: [5307](https://github.com/hackforla/website/issues/5307) at 2023-08-25 06:34 PM PDT -tkozek,2023-08-26T01:35:26Z,- tkozek commented on issue: [5307](https://github.com/hackforla/website/issues/5307#issuecomment-1694104791) at 2023-08-25 06:35 PM PDT -tkozek,2023-09-04T01:46:21Z,- tkozek commented on issue: [5265](https://github.com/hackforla/website/issues/5265#issuecomment-1704500660) at 2023-09-03 06:46 PM PDT -tkozek,2023-09-04T02:18:49Z,- tkozek closed issue as completed: [5225](https://github.com/hackforla/website/issues/5225#event-10268560292) at 2023-09-03 07:18 PM PDT -tkozek,2023-09-04T18:30:14Z,- tkozek opened pull request: [5442](https://github.com/hackforla/website/pull/5442) at 2023-09-04 11:30 AM PDT -tkozek,2023-09-06T18:54:23Z,- tkozek commented on pull request: [5442](https://github.com/hackforla/website/pull/5442#issuecomment-1708921239) at 2023-09-06 11:54 AM PDT -tkozek,2023-09-06T23:27:50Z,- tkozek pull request merged: [5442](https://github.com/hackforla/website/pull/5442#event-10301341757) at 2023-09-06 04:27 PM PDT -tkozek,2023-10-03T00:44:29Z,- tkozek assigned to issue: [5619](https://github.com/hackforla/website/issues/5619) at 2023-10-02 05:44 PM PDT -tkozek,2023-10-03T17:22:36Z,- tkozek commented on issue: [5619](https://github.com/hackforla/website/issues/5619#issuecomment-1745410580) at 2023-10-03 10:22 AM PDT -tkozek,2023-10-05T18:35:16Z,- tkozek opened pull request: [5665](https://github.com/hackforla/website/pull/5665) at 2023-10-05 11:35 AM PDT -tkozek,2023-10-05T18:35:49Z,- tkozek pull request merged: [5665](https://github.com/hackforla/website/pull/5665#event-10567259624) at 2023-10-05 11:35 AM PDT -tkozek,2023-10-05T18:37:32Z,- tkozek reopened pull request: [5665](https://github.com/hackforla/website/pull/5665#issuecomment-1749444408) at 2023-10-05 11:37 AM PDT -tkozek,2023-10-08T03:24:14Z,- tkozek assigned to issue: [5617](https://github.com/hackforla/website/issues/5617) at 2023-10-07 08:24 PM PDT -tkozek,2023-10-08T19:02:21Z,- tkozek commented on issue: [5617](https://github.com/hackforla/website/issues/5617#issuecomment-1752132693) at 2023-10-08 12:02 PM PDT -tkozek,2023-10-08T19:14:09Z,- tkozek opened pull request: [5682](https://github.com/hackforla/website/pull/5682) at 2023-10-08 12:14 PM PDT -tkozek,2023-10-09T04:10:20Z,- tkozek pull request merged: [5665](https://github.com/hackforla/website/pull/5665#event-10586486323) at 2023-10-08 09:10 PM PDT -tkozek,2023-10-09T18:59:18Z,- tkozek assigned to issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1740636251) at 2023-10-09 11:59 AM PDT -tkozek,2023-10-09T19:00:29Z,- tkozek commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1753504642) at 2023-10-09 12:00 PM PDT -tkozek,2023-10-14T23:11:41Z,- tkozek pull request merged: [5682](https://github.com/hackforla/website/pull/5682#event-10656092870) at 2023-10-14 04:11 PM PDT -tkozek,2023-10-19T03:38:42Z,- tkozek commented on issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1769840011) at 2023-10-18 08:38 PM PDT -tkozek,2024-01-28T22:43:41Z,- tkozek unassigned from issue: [5632](https://github.com/hackforla/website/issues/5632#issuecomment-1913746149) at 2024-01-28 02:43 PM PST -tkubota31,4964,SKILLS ISSUE -tkubota31,2023-07-18T01:32:44Z,- tkubota31 opened issue: [4964](https://github.com/hackforla/website/issues/4964) at 2023-07-17 06:32 PM PDT -tkubota31,2023-07-18T02:30:01Z,- tkubota31 assigned to issue: [4964](https://github.com/hackforla/website/issues/4964) at 2023-07-17 07:30 PM PDT -tkubota31,2023-08-01T01:00:54Z,- tkubota31 assigned to issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659149384) at 2023-07-31 06:00 PM PDT -tkubota31,2023-08-01T01:03:58Z,- tkubota31 unassigned from issue: [5036](https://github.com/hackforla/website/issues/5036#issuecomment-1659410160) at 2023-07-31 06:03 PM PDT -tkubota31,2023-08-01T01:05:12Z,- tkubota31 assigned to issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1654718912) at 2023-07-31 06:05 PM PDT -tkubota31,2023-08-01T01:07:10Z,- tkubota31 commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1659414071) at 2023-07-31 06:07 PM PDT -tkubota31,2023-08-04T01:23:30Z,- tkubota31 opened pull request: [5135](https://github.com/hackforla/website/pull/5135) at 2023-08-03 06:23 PM PDT -tkubota31,2023-08-16T19:11:44Z,- tkubota31 closed issue by PR 5283: [5199](https://github.com/hackforla/website/issues/5199#event-10111899727) at 2023-08-16 12:11 PM PDT -tkubota31,2023-08-16T19:12:00Z,- tkubota31 reopened issue: [5199](https://github.com/hackforla/website/issues/5199#event-10111899727) at 2023-08-16 12:12 PM PDT -tkubota31,2023-08-18T02:45:47Z,- tkubota31 pull request merged: [5135](https://github.com/hackforla/website/pull/5135#event-10125432580) at 2023-08-17 07:45 PM PDT -tmax818,2020-02-25T04:25:15Z,- tmax818 opened pull request: [324](https://github.com/hackforla/website/pull/324) at 2020-02-24 08:25 PM PST -tmax818,2020-02-25T04:32:49Z,- tmax818 pull request merged: [324](https://github.com/hackforla/website/pull/324#event-3067929506) at 2020-02-24 08:32 PM PST -tmax818,2020-02-25T04:35:55Z,- tmax818 assigned to issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-584805202) at 2020-02-24 08:35 PM PST -tmax818,2020-02-25T04:56:36Z,- tmax818 assigned to issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-587186656) at 2020-02-24 08:56 PM PST -tmax818,2020-02-25T06:29:42Z,- tmax818 opened pull request: [325](https://github.com/hackforla/website/pull/325) at 2020-02-24 10:29 PM PST -tmax818,2020-02-25T20:53:31Z,- tmax818 unassigned from issue: [316](https://github.com/hackforla/website/issues/316#issuecomment-587186656) at 2020-02-25 12:53 PM PST -tmax818,2020-03-12T02:53:17Z,- tmax818 unassigned from issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-590679408) at 2020-03-11 07:53 PM PDT -tmax818,2020-03-12T19:06:45Z,- tmax818 pull request closed w/o merging: [325](https://github.com/hackforla/website/pull/325#event-3124152490) at 2020-03-12 12:06 PM PDT -Tomomi-K1,4971,SKILLS ISSUE -Tomomi-K1,2023-07-18T01:53:33Z,- Tomomi-K1 opened issue: [4971](https://github.com/hackforla/website/issues/4971) at 2023-07-17 06:53 PM PDT -Tomomi-K1,2023-07-18T02:32:17Z,- Tomomi-K1 assigned to issue: [4971](https://github.com/hackforla/website/issues/4971) at 2023-07-17 07:32 PM PDT -Tomomi-K1,2023-07-26T02:54:14Z,- Tomomi-K1 assigned to issue: [4798](https://github.com/hackforla/website/issues/4798) at 2023-07-25 07:54 PM PDT -Tomomi-K1,2023-07-26T04:17:24Z,- Tomomi-K1 opened pull request: [5093](https://github.com/hackforla/website/pull/5093) at 2023-07-25 09:17 PM PDT -Tomomi-K1,2023-07-26T04:55:57Z,- Tomomi-K1 commented on issue: [4798](https://github.com/hackforla/website/issues/4798#issuecomment-1650980083) at 2023-07-25 09:55 PM PDT -Tomomi-K1,2023-07-26T04:57:01Z,- Tomomi-K1 commented on issue: [4971](https://github.com/hackforla/website/issues/4971#issuecomment-1650980792) at 2023-07-25 09:57 PM PDT -Tomomi-K1,2023-07-27T18:34:38Z,- Tomomi-K1 commented on pull request: [5093](https://github.com/hackforla/website/pull/5093#issuecomment-1654206829) at 2023-07-27 11:34 AM PDT -Tomomi-K1,2023-07-29T11:01:10Z,- Tomomi-K1 pull request merged: [5093](https://github.com/hackforla/website/pull/5093#event-9954289118) at 2023-07-29 04:01 AM PDT -Tomomi-K1,2023-07-29T23:23:35Z,- Tomomi-K1 commented on pull request: [5093](https://github.com/hackforla/website/pull/5093#issuecomment-1656956350) at 2023-07-29 04:23 PM PDT -Tomomi-K1,2023-08-04T22:48:16Z,- Tomomi-K1 commented on issue: [4971](https://github.com/hackforla/website/issues/4971#issuecomment-1666250239) at 2023-08-04 03:48 PM PDT -Tomomi-K1,2023-08-05T02:12:28Z,- Tomomi-K1 assigned to issue: [5138](https://github.com/hackforla/website/issues/5138) at 2023-08-04 07:12 PM PDT -Tomomi-K1,2023-08-05T02:13:45Z,- Tomomi-K1 commented on issue: [5138](https://github.com/hackforla/website/issues/5138#issuecomment-1666352114) at 2023-08-04 07:13 PM PDT -Tomomi-K1,2023-08-05T03:09:53Z,- Tomomi-K1 opened pull request: [5145](https://github.com/hackforla/website/pull/5145) at 2023-08-04 08:09 PM PDT -Tomomi-K1,2023-08-06T02:36:53Z,- Tomomi-K1 pull request merged: [5145](https://github.com/hackforla/website/pull/5145#event-10016436820) at 2023-08-05 07:36 PM PDT -Tomomi-K1,2023-08-07T22:52:17Z,- Tomomi-K1 assigned to issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1641392859) at 2023-08-07 03:52 PM PDT -Tomomi-K1,2023-08-07T22:53:06Z,- Tomomi-K1 commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1668675348) at 2023-08-07 03:53 PM PDT -Tomomi-K1,2023-08-07T23:28:44Z,- Tomomi-K1 commented on issue: [5014](https://github.com/hackforla/website/issues/5014#issuecomment-1668701208) at 2023-08-07 04:28 PM PDT -Tomomi-K1,2023-08-10T19:38:29Z,- Tomomi-K1 commented on issue: [4971](https://github.com/hackforla/website/issues/4971#issuecomment-1673804247) at 2023-08-10 12:38 PM PDT -Tomomi-K1,2023-08-13T18:09:56Z,- Tomomi-K1 closed issue as completed: [4971](https://github.com/hackforla/website/issues/4971#event-10080332575) at 2023-08-13 11:09 AM PDT -Tomomi-K1,2023-08-13T18:56:53Z,- Tomomi-K1 commented on pull request: [5170](https://github.com/hackforla/website/pull/5170#issuecomment-1676436602) at 2023-08-13 11:56 AM PDT -Tomomi-K1,2023-08-13T20:07:11Z,- Tomomi-K1 submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1575886105) at 2023-08-13 01:07 PM PDT -Tomomi-K1,2023-08-14T03:10:54Z,- Tomomi-K1 submitted pull request review: [5170](https://github.com/hackforla/website/pull/5170#pullrequestreview-1576001069) at 2023-08-13 08:10 PM PDT -Tomomi-K1,2023-08-14T07:43:00Z,- Tomomi-K1 commented on issue: [4798](https://github.com/hackforla/website/issues/4798#issuecomment-1676833760) at 2023-08-14 12:43 AM PDT -Tomomi-K1,2023-08-23T20:28:42Z,- Tomomi-K1 commented on pull request: [5294](https://github.com/hackforla/website/pull/5294#issuecomment-1690593527) at 2023-08-23 01:28 PM PDT -Tomomi-K1,2023-08-23T20:57:22Z,- Tomomi-K1 submitted pull request review: [5294](https://github.com/hackforla/website/pull/5294#pullrequestreview-1592399498) at 2023-08-23 01:57 PM PDT -Tomomi-K1,2023-09-12T22:11:07Z,- Tomomi-K1 commented on pull request: [5510](https://github.com/hackforla/website/pull/5510#issuecomment-1716577851) at 2023-09-12 03:11 PM PDT -Tomomi-K1,2023-09-12T22:24:55Z,- Tomomi-K1 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1623287511) at 2023-09-12 03:24 PM PDT -Tomomi-K1,2023-09-17T08:08:52Z,- Tomomi-K1 submitted pull request review: [5510](https://github.com/hackforla/website/pull/5510#pullrequestreview-1630053050) at 2023-09-17 01:08 AM PDT -Tomomi-K1,2023-09-26T23:54:04Z,- Tomomi-K1 commented on pull request: [5586](https://github.com/hackforla/website/pull/5586#issuecomment-1736454374) at 2023-09-26 04:54 PM PDT -Tomomi-K1,2023-09-27T00:00:08Z,- Tomomi-K1 submitted pull request review: [5586](https://github.com/hackforla/website/pull/5586#pullrequestreview-1645362311) at 2023-09-26 05:00 PM PDT -Tomomi-K1,2023-10-04T00:58:14Z,- Tomomi-K1 assigned to issue: [5631](https://github.com/hackforla/website/issues/5631#issuecomment-1740630155) at 2023-10-03 05:58 PM PDT -Tomomi-K1,2023-10-04T01:00:14Z,- Tomomi-K1 commented on issue: [5631](https://github.com/hackforla/website/issues/5631#issuecomment-1745968630) at 2023-10-03 06:00 PM PDT -Tomomi-K1,2023-10-04T01:48:29Z,- Tomomi-K1 opened pull request: [5659](https://github.com/hackforla/website/pull/5659) at 2023-10-03 06:48 PM PDT -Tomomi-K1,2023-10-08T09:15:40Z,- Tomomi-K1 pull request merged: [5659](https://github.com/hackforla/website/pull/5659#event-10583640378) at 2023-10-08 02:15 AM PDT -Tomomi-K1,2023-10-17T23:56:32Z,- Tomomi-K1 commented on pull request: [5732](https://github.com/hackforla/website/pull/5732#issuecomment-1767372376) at 2023-10-17 04:56 PM PDT -Tomomi-K1,2023-10-18T02:50:58Z,- Tomomi-K1 submitted pull request review: [5732](https://github.com/hackforla/website/pull/5732#pullrequestreview-1683827754) at 2023-10-17 07:50 PM PDT -Tomomi-K1,2023-10-19T04:01:17Z,- Tomomi-K1 submitted pull request review: [5732](https://github.com/hackforla/website/pull/5732#pullrequestreview-1686615170) at 2023-10-18 09:01 PM PDT -Tomomi-K1,2023-10-31T19:56:25Z,- Tomomi-K1 submitted pull request review: [5811](https://github.com/hackforla/website/pull/5811#pullrequestreview-1707139983) at 2023-10-31 12:56 PM PDT -Tomomi-K1,2023-10-31T22:43:18Z,- Tomomi-K1 commented on pull request: [5811](https://github.com/hackforla/website/pull/5811#issuecomment-1788134807) at 2023-10-31 03:43 PM PDT -Tomomi-K1,2023-11-01T23:49:19Z,- Tomomi-K1 submitted pull request review: [5811](https://github.com/hackforla/website/pull/5811#pullrequestreview-1709234843) at 2023-11-01 04:49 PM PDT -Tomomi-K1,2023-11-08T02:54:44Z,- Tomomi-K1 submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1719233976) at 2023-11-07 06:54 PM PST -Tomomi-K1,2023-11-13T03:58:23Z,- Tomomi-K1 submitted pull request review: [5835](https://github.com/hackforla/website/pull/5835#pullrequestreview-1726515135) at 2023-11-12 07:58 PM PST -Tomomi-K1,2023-12-02T21:41:34Z,- Tomomi-K1 commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1837260238) at 2023-12-02 01:41 PM PST -Tomomi-K1,2023-12-02T21:48:43Z,- Tomomi-K1 submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1760973394) at 2023-12-02 01:48 PM PST -Tomomi-K1,2023-12-02T22:45:59Z,- Tomomi-K1 submitted pull request review: [5947](https://github.com/hackforla/website/pull/5947#pullrequestreview-1760987153) at 2023-12-02 02:45 PM PST -Tomomi-K1,2023-12-03T19:21:20Z,- Tomomi-K1 commented on pull request: [5955](https://github.com/hackforla/website/pull/5955#issuecomment-1837574272) at 2023-12-03 11:21 AM PST -Tomomi-K1,2023-12-12T02:44:43Z,- Tomomi-K1 submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1776500257) at 2023-12-11 06:44 PM PST -Tomomi-K1,2023-12-12T02:53:01Z,- Tomomi-K1 submitted pull request review: [5974](https://github.com/hackforla/website/pull/5974#pullrequestreview-1776506229) at 2023-12-11 06:53 PM PST -Tomomi-K1,2023-12-12T02:53:44Z,- Tomomi-K1 commented on pull request: [5974](https://github.com/hackforla/website/pull/5974#issuecomment-1851220643) at 2023-12-11 06:53 PM PST -Tomomi-K1,2023-12-18T03:35:45Z,- Tomomi-K1 submitted pull request review: [5955](https://github.com/hackforla/website/pull/5955#pullrequestreview-1785794793) at 2023-12-17 07:35 PM PST -Tony-Hsieh,4621,SKILLS ISSUE -Tony-Hsieh,2023-05-09T03:28:18Z,- Tony-Hsieh opened issue: [4621](https://github.com/hackforla/website/issues/4621) at 2023-05-08 08:28 PM PDT -Tony-Hsieh,2023-05-09T04:00:20Z,- Tony-Hsieh assigned to issue: [4621](https://github.com/hackforla/website/issues/4621) at 2023-05-08 09:00 PM PDT -tony1ee,6606,SKILLS ISSUE -tony1ee,2024-04-09T03:15:02Z,- tony1ee opened issue: [6606](https://github.com/hackforla/website/issues/6606) at 2024-04-08 08:15 PM PDT -tony1ee,2024-04-09T03:15:29Z,- tony1ee assigned to issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2044079141) at 2024-04-08 08:15 PM PDT -tony1ee,2024-04-09T19:03:08Z,- tony1ee assigned to issue: [6513](https://github.com/hackforla/website/issues/6513#issuecomment-2016947626) at 2024-04-09 12:03 PM PDT -tony1ee,2024-04-09T19:07:57Z,- tony1ee commented on issue: [6513](https://github.com/hackforla/website/issues/6513#issuecomment-2045889089) at 2024-04-09 12:07 PM PDT -tony1ee,2024-04-09T19:28:50Z,- tony1ee commented on issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2045916793) at 2024-04-09 12:28 PM PDT -tony1ee,2024-04-09T19:51:57Z,- tony1ee opened pull request: [6612](https://github.com/hackforla/website/pull/6612) at 2024-04-09 12:51 PM PDT -tony1ee,2024-04-10T19:39:12Z,- tony1ee commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2048304390) at 2024-04-10 12:39 PM PDT -tony1ee,2024-04-11T23:44:08Z,- tony1ee pull request merged: [6612](https://github.com/hackforla/website/pull/6612#event-12442778415) at 2024-04-11 04:44 PM PDT -tony1ee,2024-04-12T00:07:10Z,- tony1ee assigned to issue: [6176](https://github.com/hackforla/website/issues/6176) at 2024-04-11 05:07 PM PDT -tony1ee,2024-04-12T00:10:15Z,- tony1ee commented on issue: [6176](https://github.com/hackforla/website/issues/6176#issuecomment-2050746372) at 2024-04-11 05:10 PM PDT -tony1ee,2024-04-12T00:52:54Z,- tony1ee opened pull request: [6627](https://github.com/hackforla/website/pull/6627) at 2024-04-11 05:52 PM PDT -tony1ee,2024-04-13T07:15:10Z,- tony1ee commented on pull request: [6630](https://github.com/hackforla/website/pull/6630#issuecomment-2053553795) at 2024-04-13 12:15 AM PDT -tony1ee,2024-04-13T07:56:04Z,- tony1ee submitted pull request review: [6630](https://github.com/hackforla/website/pull/6630#pullrequestreview-1999181950) at 2024-04-13 12:56 AM PDT -tony1ee,2024-04-13T08:14:48Z,- tony1ee commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053568566) at 2024-04-13 01:14 AM PDT -tony1ee,2024-04-13T08:46:53Z,- tony1ee submitted pull request review: [6617](https://github.com/hackforla/website/pull/6617#pullrequestreview-1999193118) at 2024-04-13 01:46 AM PDT -tony1ee,2024-04-13T19:47:01Z,- tony1ee commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053742106) at 2024-04-13 12:47 PM PDT -tony1ee,2024-04-13T19:57:49Z,- tony1ee commented on pull request: [6617](https://github.com/hackforla/website/pull/6617#issuecomment-2053744136) at 2024-04-13 12:57 PM PDT -tony1ee,2024-04-13T20:04:02Z,- tony1ee commented on pull request: [6635](https://github.com/hackforla/website/pull/6635#issuecomment-2053745271) at 2024-04-13 01:04 PM PDT -tony1ee,2024-04-13T20:14:33Z,- tony1ee submitted pull request review: [6635](https://github.com/hackforla/website/pull/6635#pullrequestreview-1999344936) at 2024-04-13 01:14 PM PDT -tony1ee,2024-04-14T16:47:17Z,- tony1ee pull request merged: [6627](https://github.com/hackforla/website/pull/6627#event-12460816947) at 2024-04-14 09:47 AM PDT -tony1ee,2024-04-14T16:56:01Z,- tony1ee assigned to issue: [6497](https://github.com/hackforla/website/issues/6497) at 2024-04-14 09:56 AM PDT -tony1ee,2024-04-14T16:58:15Z,- tony1ee commented on issue: [6497](https://github.com/hackforla/website/issues/6497#issuecomment-2054121315) at 2024-04-14 09:58 AM PDT -tony1ee,2024-04-14T23:37:13Z,- tony1ee commented on pull request: [6625](https://github.com/hackforla/website/pull/6625#issuecomment-2054222449) at 2024-04-14 04:37 PM PDT -tony1ee,2024-04-14T23:50:30Z,- tony1ee commented on pull request: [6646](https://github.com/hackforla/website/pull/6646#issuecomment-2054226413) at 2024-04-14 04:50 PM PDT -tony1ee,2024-04-15T01:09:20Z,- tony1ee submitted pull request review: [6646](https://github.com/hackforla/website/pull/6646#pullrequestreview-1999797926) at 2024-04-14 06:09 PM PDT -tony1ee,2024-04-15T01:11:26Z,- tony1ee commented on pull request: [6647](https://github.com/hackforla/website/pull/6647#issuecomment-2054265325) at 2024-04-14 06:11 PM PDT -tony1ee,2024-04-15T01:34:18Z,- tony1ee submitted pull request review: [6647](https://github.com/hackforla/website/pull/6647#pullrequestreview-1999810141) at 2024-04-14 06:34 PM PDT -tony1ee,2024-04-15T18:11:08Z,- tony1ee opened issue: [6650](https://github.com/hackforla/website/issues/6650) at 2024-04-15 11:11 AM PDT -tony1ee,2024-04-15T18:21:14Z,- tony1ee commented on issue: [6650](https://github.com/hackforla/website/issues/6650#issuecomment-2057539375) at 2024-04-15 11:21 AM PDT -tony1ee,2024-04-15T18:41:10Z,- tony1ee commented on issue: [6606](https://github.com/hackforla/website/issues/6606#issuecomment-2057573313) at 2024-04-15 11:41 AM PDT -tony1ee,2024-04-15T18:41:10Z,- tony1ee closed issue as completed: [6606](https://github.com/hackforla/website/issues/6606#event-12475591437) at 2024-04-15 11:41 AM PDT -tony1ee,2024-04-18T00:52:59Z,- tony1ee submitted pull request review: [6617](https://github.com/hackforla/website/pull/6617#pullrequestreview-2007613930) at 2024-04-17 05:52 PM PDT -tony1ee,2024-04-18T20:05:21Z,- tony1ee commented on pull request: [6659](https://github.com/hackforla/website/pull/6659#issuecomment-2065182516) at 2024-04-18 01:05 PM PDT -tony1ee,2024-04-19T07:06:07Z,- tony1ee submitted pull request review: [6659](https://github.com/hackforla/website/pull/6659#pullrequestreview-2010677660) at 2024-04-19 12:06 AM PDT -tony1ee,2024-04-19T07:48:56Z,- tony1ee opened issue: [6687](https://github.com/hackforla/website/issues/6687) at 2024-04-19 12:48 AM PDT -tony1ee,2024-04-19T23:55:38Z,- tony1ee commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2067404485) at 2024-04-19 04:55 PM PDT -tony1ee,2024-04-20T02:06:15Z,- tony1ee opened issue: [6689](https://github.com/hackforla/website/issues/6689) at 2024-04-19 07:06 PM PDT -tony1ee,2024-04-20T02:07:21Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067513439) at 2024-04-19 07:07 PM PDT -tony1ee,2024-04-20T02:21:12Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067517063) at 2024-04-19 07:21 PM PDT -tony1ee,2024-04-20T02:25:38Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067518075) at 2024-04-19 07:25 PM PDT -tony1ee,2024-04-20T02:41:03Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067521478) at 2024-04-19 07:41 PM PDT -tony1ee,2024-04-20T03:04:44Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067527075) at 2024-04-19 08:04 PM PDT -tony1ee,2024-04-20T03:11:02Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067528613) at 2024-04-19 08:11 PM PDT -tony1ee,2024-04-20T04:00:37Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2067539573) at 2024-04-19 09:00 PM PDT -tony1ee,2024-04-23T01:50:50Z,- tony1ee commented on pull request: [6711](https://github.com/hackforla/website/pull/6711#issuecomment-2071263922) at 2024-04-22 06:50 PM PDT -tony1ee,2024-04-23T05:15:27Z,- tony1ee submitted pull request review: [6711](https://github.com/hackforla/website/pull/6711#pullrequestreview-2016253108) at 2024-04-22 10:15 PM PDT -tony1ee,2024-04-25T20:49:51Z,- tony1ee assigned to issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2067943170) at 2024-04-25 01:49 PM PDT -tony1ee,2024-04-25T20:52:43Z,- tony1ee commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2078155926) at 2024-04-25 01:52 PM PDT -tony1ee,2024-04-25T21:00:57Z,- tony1ee opened issue: [6759](https://github.com/hackforla/website/issues/6759) at 2024-04-25 02:00 PM PDT -tony1ee,2024-04-25T21:11:54Z,- tony1ee opened issue: [6760](https://github.com/hackforla/website/issues/6760) at 2024-04-25 02:11 PM PDT -tony1ee,2024-04-25T21:14:51Z,- tony1ee opened issue: [6761](https://github.com/hackforla/website/issues/6761) at 2024-04-25 02:14 PM PDT -tony1ee,2024-04-25T21:16:57Z,- tony1ee opened issue: [6762](https://github.com/hackforla/website/issues/6762) at 2024-04-25 02:16 PM PDT -tony1ee,2024-04-25T21:19:00Z,- tony1ee opened issue: [6763](https://github.com/hackforla/website/issues/6763) at 2024-04-25 02:19 PM PDT -tony1ee,2024-04-25T21:42:46Z,- tony1ee commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2078223037) at 2024-04-25 02:42 PM PDT -tony1ee,2024-04-27T00:34:45Z,- tony1ee opened issue: [6771](https://github.com/hackforla/website/issues/6771) at 2024-04-26 05:34 PM PDT -tony1ee,2024-04-27T00:37:48Z,- tony1ee commented on issue: [6695](https://github.com/hackforla/website/issues/6695#issuecomment-2080270494) at 2024-04-26 05:37 PM PDT -tony1ee,2024-04-27T19:57:24Z,- tony1ee assigned to issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2079018809) at 2024-04-27 12:57 PM PDT -tony1ee,2024-04-27T19:58:59Z,- tony1ee commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2081165986) at 2024-04-27 12:58 PM PDT -tony1ee,2024-04-28T05:42:31Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081341318) at 2024-04-27 10:42 PM PDT -tony1ee,2024-04-28T06:02:57Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081346746) at 2024-04-27 11:02 PM PDT -tony1ee,2024-04-28T06:23:55Z,- tony1ee assigned to issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081346746) at 2024-04-27 11:23 PM PDT -tony1ee,2024-04-28T06:26:01Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2081353117) at 2024-04-27 11:26 PM PDT -tony1ee,2024-04-28T07:03:55Z,- tony1ee opened issue: [6775](https://github.com/hackforla/website/issues/6775) at 2024-04-28 12:03 AM PDT -tony1ee,2024-04-28T07:36:15Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2081373438) at 2024-04-28 12:36 AM PDT -tony1ee,2024-04-28T16:27:30Z,- tony1ee commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081541134) at 2024-04-28 09:27 AM PDT -tony1ee,2024-04-28T17:05:27Z,- tony1ee assigned to issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081541134) at 2024-04-28 10:05 AM PDT -tony1ee,2024-04-28T18:18:12Z,- tony1ee commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081585418) at 2024-04-28 11:18 AM PDT -tony1ee,2024-04-28T19:48:12Z,- tony1ee commented on issue: [6775](https://github.com/hackforla/website/issues/6775#issuecomment-2081630841) at 2024-04-28 12:48 PM PDT -tony1ee,2024-04-29T03:06:40Z,- tony1ee opened pull request: [6777](https://github.com/hackforla/website/pull/6777) at 2024-04-28 08:06 PM PDT -tony1ee,2024-04-29T04:17:58Z,- tony1ee opened issue: [6778](https://github.com/hackforla/website/issues/6778) at 2024-04-28 09:17 PM PDT -tony1ee,2024-04-29T04:28:46Z,- tony1ee submitted pull request review: [6779](https://github.com/hackforla/website/pull/6779#pullrequestreview-2027545079) at 2024-04-28 09:28 PM PDT -tony1ee,2024-04-30T01:47:37Z,- tony1ee unassigned from issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2084112675) at 2024-04-29 06:47 PM PDT -tony1ee,2024-04-30T02:21:33Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2084205536) at 2024-04-29 07:21 PM PDT -tony1ee,2024-05-02T07:41:00Z,- tony1ee commented on pull request: [6777](https://github.com/hackforla/website/pull/6777#issuecomment-2089815525) at 2024-05-02 12:41 AM PDT -tony1ee,2024-05-02T08:52:36Z,- tony1ee opened issue: [6807](https://github.com/hackforla/website/issues/6807) at 2024-05-02 01:52 AM PDT -tony1ee,2024-05-02T08:55:18Z,- tony1ee commented on issue: [6805](https://github.com/hackforla/website/issues/6805#issuecomment-2089938416) at 2024-05-02 01:55 AM PDT -tony1ee,2024-05-02T12:12:00Z,- tony1ee pull request merged: [6777](https://github.com/hackforla/website/pull/6777#event-12682356185) at 2024-05-02 05:12 AM PDT -tony1ee,2024-05-02T20:00:11Z,- tony1ee assigned to issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2083982045) at 2024-05-02 01:00 PM PDT -tony1ee,2024-05-02T20:00:41Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2091453108) at 2024-05-02 01:00 PM PDT -tony1ee,2024-05-02T20:32:30Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2091505211) at 2024-05-02 01:32 PM PDT -tony1ee,2024-05-02T20:39:36Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2091514716) at 2024-05-02 01:39 PM PDT -tony1ee,2024-05-03T20:22:44Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2093711283) at 2024-05-03 01:22 PM PDT -tony1ee,2024-05-03T22:27:26Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2093840054) at 2024-05-03 03:27 PM PDT -tony1ee,2024-05-08T05:34:33Z,- tony1ee commented on issue: [6687](https://github.com/hackforla/website/issues/6687#issuecomment-2099776000) at 2024-05-07 10:34 PM PDT -tony1ee,2024-05-08T05:34:34Z,- tony1ee closed issue as completed: [6687](https://github.com/hackforla/website/issues/6687#event-12738426821) at 2024-05-07 10:34 PM PDT -tony1ee,2024-05-08T05:56:33Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2099797074) at 2024-05-07 10:56 PM PDT -tony1ee,2024-05-08T06:15:05Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2099818901) at 2024-05-07 11:15 PM PDT -tony1ee,2024-05-08T20:34:07Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2101379453) at 2024-05-08 01:34 PM PDT -tony1ee,2024-05-08T20:35:34Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2101381578) at 2024-05-08 01:35 PM PDT -tony1ee,2024-05-09T21:49:22Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2103470484) at 2024-05-09 02:49 PM PDT -tony1ee,2024-05-09T22:36:16Z,- tony1ee opened issue: [6842](https://github.com/hackforla/website/issues/6842) at 2024-05-09 03:36 PM PDT -tony1ee,2024-05-09T22:40:19Z,- tony1ee assigned to issue: [6842](https://github.com/hackforla/website/issues/6842) at 2024-05-09 03:40 PM PDT -tony1ee,2024-05-09T22:40:23Z,- tony1ee unassigned from issue: [6842](https://github.com/hackforla/website/issues/6842) at 2024-05-09 03:40 PM PDT -tony1ee,2024-05-10T00:31:41Z,- tony1ee opened issue: [6844](https://github.com/hackforla/website/issues/6844) at 2024-05-09 05:31 PM PDT -tony1ee,2024-05-10T00:47:26Z,- tony1ee opened issue: [6845](https://github.com/hackforla/website/issues/6845) at 2024-05-09 05:47 PM PDT -tony1ee,2024-05-10T00:52:30Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2103661383) at 2024-05-09 05:52 PM PDT -tony1ee,2024-05-11T01:32:52Z,- tony1ee assigned to issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2099797074) at 2024-05-10 06:32 PM PDT -tony1ee,2024-05-11T07:19:56Z,- tony1ee commented on issue: [6842](https://github.com/hackforla/website/issues/6842#issuecomment-2105611369) at 2024-05-11 12:19 AM PDT -tony1ee,2024-05-11T07:32:20Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2105615547) at 2024-05-11 12:32 AM PDT -tony1ee,2024-05-11T07:33:23Z,- tony1ee opened issue: [6850](https://github.com/hackforla/website/issues/6850) at 2024-05-11 12:33 AM PDT -tony1ee,2024-05-14T17:57:53Z,- tony1ee commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110810066) at 2024-05-14 10:57 AM PDT -tony1ee,2024-05-14T21:01:27Z,- tony1ee commented on issue: [6850](https://github.com/hackforla/website/issues/6850#issuecomment-2111135634) at 2024-05-14 02:01 PM PDT -tony1ee,2024-05-17T20:23:24Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2118330166) at 2024-05-17 01:23 PM PDT -tony1ee,2024-05-24T21:15:42Z,- tony1ee commented on issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2130375061) at 2024-05-24 02:15 PM PDT -tony1ee,2024-06-04T17:53:56Z,- tony1ee unassigned from issue: [6771](https://github.com/hackforla/website/issues/6771#issuecomment-2130375061) at 2024-06-04 10:53 AM PDT -tony1ee,2024-06-08T01:29:28Z,- tony1ee commented on issue: [6163](https://github.com/hackforla/website/issues/6163#issuecomment-2155745008) at 2024-06-07 06:29 PM PDT -tony1ee,2024-06-08T01:29:28Z,- tony1ee closed issue as completed: [6163](https://github.com/hackforla/website/issues/6163#event-13086628625) at 2024-06-07 06:29 PM PDT -tony1ee,2024-06-08T01:46:49Z,- tony1ee assigned to issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2136915171) at 2024-06-07 06:46 PM PDT -tony1ee,2024-06-08T01:53:18Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2155754101) at 2024-06-07 06:53 PM PDT -tony1ee,2024-06-29T01:34:35Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2197825225) at 2024-06-28 06:34 PM PDT -tony1ee,2024-07-08T02:27:13Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2212862370) at 2024-07-07 07:27 PM PDT -tony1ee,2024-08-15T14:51:15Z,- tony1ee commented on issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2291440268) at 2024-08-15 07:51 AM PDT -tony1ee,2024-08-15T14:52:45Z,- tony1ee unassigned from issue: [6911](https://github.com/hackforla/website/issues/6911#issuecomment-2291440268) at 2024-08-15 07:52 AM PDT -tony1ee,2024-09-22T08:37:31Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2366083194) at 2024-09-22 01:37 AM PDT -tony1ee,2024-09-28T05:12:59Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2380411785) at 2024-09-27 10:12 PM PDT -tony1ee,2024-10-03T15:41:35Z,- tony1ee assigned to issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2384572890) at 2024-10-03 08:41 AM PDT -tony1ee,2024-10-07T15:03:44Z,- tony1ee commented on issue: [6689](https://github.com/hackforla/website/issues/6689#issuecomment-2397187690) at 2024-10-07 08:03 AM PDT -tonyvang,5486,SKILLS ISSUE -tonyvang,2023-09-12T03:33:30Z,- tonyvang opened issue: [5486](https://github.com/hackforla/website/issues/5486) at 2023-09-11 08:33 PM PDT -tonyvang,2023-09-12T03:33:50Z,- tonyvang assigned to issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1714911118) at 2023-09-11 08:33 PM PDT -tonyvang,2023-09-12T20:18:41Z,- tonyvang commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1716366461) at 2023-09-12 01:18 PM PDT -tonyvang,2023-09-22T01:53:00Z,- tonyvang assigned to issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1728250650) at 2023-09-21 06:53 PM PDT -tonyvang,2023-09-22T16:56:20Z,- tonyvang commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1731743565) at 2023-09-22 09:56 AM PDT -tonyvang,2023-09-23T06:59:31Z,- tonyvang commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732235751) at 2023-09-22 11:59 PM PDT -tonyvang,2023-09-23T16:06:55Z,- tonyvang commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732350400) at 2023-09-23 09:06 AM PDT -tonyvang,2023-09-24T05:42:49Z,- tonyvang opened pull request: [5576](https://github.com/hackforla/website/pull/5576) at 2023-09-23 10:42 PM PDT -tonyvang,2023-09-27T18:21:06Z,- tonyvang commented on pull request: [5576](https://github.com/hackforla/website/pull/5576#issuecomment-1737874513) at 2023-09-27 11:21 AM PDT -tonyvang,2023-09-29T14:57:55Z,- tonyvang pull request merged: [5576](https://github.com/hackforla/website/pull/5576#event-10512430444) at 2023-09-29 07:57 AM PDT -tonyvang,2023-10-11T03:36:35Z,- tonyvang commented on pull request: [5701](https://github.com/hackforla/website/pull/5701#issuecomment-1756713503) at 2023-10-10 08:36 PM PDT -tonyvang,2023-10-15T16:53:44Z,- tonyvang submitted pull request review: [5701](https://github.com/hackforla/website/pull/5701#pullrequestreview-1678829800) at 2023-10-15 09:53 AM PDT -tonyvang,2023-10-24T22:40:58Z,- tonyvang assigned to issue: [5753](https://github.com/hackforla/website/issues/5753) at 2023-10-24 03:40 PM PDT -tonyvang,2023-10-24T22:44:21Z,- tonyvang commented on issue: [5753](https://github.com/hackforla/website/issues/5753#issuecomment-1778168339) at 2023-10-24 03:44 PM PDT -tonyvang,2023-10-30T05:12:36Z,- tonyvang commented on issue: [5753](https://github.com/hackforla/website/issues/5753#issuecomment-1784493339) at 2023-10-29 10:12 PM PDT -tonyvang,2023-10-30T05:34:02Z,- tonyvang opened pull request: [5794](https://github.com/hackforla/website/pull/5794) at 2023-10-29 10:34 PM PDT -tonyvang,2023-11-01T22:46:48Z,- tonyvang pull request merged: [5794](https://github.com/hackforla/website/pull/5794#event-10837630180) at 2023-11-01 03:46 PM PDT -tonyvang,2023-11-01T23:43:36Z,- tonyvang commented on pull request: [5794](https://github.com/hackforla/website/pull/5794#issuecomment-1789840520) at 2023-11-01 04:43 PM PDT -tonyvang,2023-11-03T02:36:40Z,- tonyvang pull request merged: [5794](https://github.com/hackforla/website/pull/5794#event-10850945368) at 2023-11-02 07:36 PM PDT -tonyvang,2023-11-12T17:59:53Z,- tonyvang assigned to issue: [5876](https://github.com/hackforla/website/issues/5876) at 2023-11-12 09:59 AM PST -tonyvang,2023-11-13T19:17:59Z,- tonyvang commented on pull request: [5887](https://github.com/hackforla/website/pull/5887#issuecomment-1808867170) at 2023-11-13 11:17 AM PST -tonyvang,2023-11-13T19:18:19Z,- tonyvang commented on issue: [5876](https://github.com/hackforla/website/issues/5876#issuecomment-1808867576) at 2023-11-13 11:18 AM PST -tonyvang,2023-11-14T05:52:59Z,- tonyvang submitted pull request review: [5887](https://github.com/hackforla/website/pull/5887#pullrequestreview-1728965237) at 2023-11-13 09:52 PM PST -tonyvang,2023-11-17T03:39:40Z,- tonyvang opened pull request: [5917](https://github.com/hackforla/website/pull/5917) at 2023-11-16 07:39 PM PST -tonyvang,2023-11-19T22:24:41Z,- tonyvang pull request merged: [5917](https://github.com/hackforla/website/pull/5917#event-11004749186) at 2023-11-19 02:24 PM PST -tonyvang,2023-11-20T20:26:09Z,- tonyvang commented on pull request: [5915](https://github.com/hackforla/website/pull/5915#issuecomment-1819754299) at 2023-11-20 12:26 PM PST -tonyvang,2023-11-22T05:52:54Z,- tonyvang submitted pull request review: [5915](https://github.com/hackforla/website/pull/5915#pullrequestreview-1743610722) at 2023-11-21 09:52 PM PST -tonyvang,2023-12-02T18:14:07Z,- tonyvang commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1837219837) at 2023-12-02 10:14 AM PST -tonyvang,2024-01-10T04:03:17Z,- tonyvang commented on pull request: [6081](https://github.com/hackforla/website/pull/6081#issuecomment-1884156983) at 2024-01-09 08:03 PM PST -tonyvang,2024-01-16T02:30:41Z,- tonyvang submitted pull request review: [6103](https://github.com/hackforla/website/pull/6103#pullrequestreview-1822437811) at 2024-01-15 06:30 PM PST -tonyvang,2024-01-24T02:58:01Z,- tonyvang commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1907267865) at 2024-01-23 06:58 PM PST -tonyvang,2024-01-26T01:12:29Z,- tonyvang submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1844950294) at 2024-01-25 05:12 PM PST -tonyvang,2024-01-31T03:04:06Z,- tonyvang commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1918298698) at 2024-01-30 07:04 PM PST -tonyvang,2024-01-31T04:12:34Z,- tonyvang submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1852860814) at 2024-01-30 08:12 PM PST -tonyvang,2024-02-06T02:50:48Z,- tonyvang assigned to issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1756863520) at 2024-02-05 06:50 PM PST -tonyvang,2024-02-06T02:52:07Z,- tonyvang commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1928688249) at 2024-02-05 06:52 PM PST -tonyvang,2024-02-11T17:57:30Z,- tonyvang commented on issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1937823156) at 2024-02-11 09:57 AM PST -tonyvang,2024-02-11T18:12:54Z,- tonyvang commented on pull request: [6275](https://github.com/hackforla/website/pull/6275#issuecomment-1937827381) at 2024-02-11 10:12 AM PST -tonyvang,2024-02-12T04:26:27Z,- tonyvang unassigned from issue: [4931](https://github.com/hackforla/website/issues/4931#issuecomment-1937823156) at 2024-02-11 08:26 PM PST -tonyvang,2024-02-16T21:55:47Z,- tonyvang commented on pull request: [6275](https://github.com/hackforla/website/pull/6275#issuecomment-1949390574) at 2024-02-16 01:55 PM PST -tonyvang,2024-02-21T02:21:51Z,- tonyvang assigned to issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1950736225) at 2024-02-20 06:21 PM PST -tonyvang,2024-02-21T02:22:49Z,- tonyvang commented on issue: [6310](https://github.com/hackforla/website/issues/6310#issuecomment-1955751383) at 2024-02-20 06:22 PM PST -tonyvang,2024-02-24T00:57:35Z,- tonyvang opened pull request: [6368](https://github.com/hackforla/website/pull/6368) at 2024-02-23 04:57 PM PST -tonyvang,2024-02-25T18:32:07Z,- tonyvang pull request merged: [6368](https://github.com/hackforla/website/pull/6368#event-11913592557) at 2024-02-25 10:32 AM PST -tonyvang,2024-02-28T04:26:09Z,- tonyvang commented on pull request: [6384](https://github.com/hackforla/website/pull/6384#issuecomment-1968192859) at 2024-02-27 08:26 PM PST -tonyvang,2024-03-02T00:36:45Z,- tonyvang submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1912390097) at 2024-03-01 04:36 PM PST -tonyvang,2024-03-02T03:11:11Z,- tonyvang submitted pull request review: [6393](https://github.com/hackforla/website/pull/6393#pullrequestreview-1912564817) at 2024-03-01 07:11 PM PST -tonyvang,2024-03-02T04:56:15Z,- tonyvang commented on issue: [5486](https://github.com/hackforla/website/issues/5486#issuecomment-1974300616) at 2024-03-01 08:56 PM PST -tonyvang,2024-03-02T05:37:47Z,- tonyvang submitted pull request review: [6384](https://github.com/hackforla/website/pull/6384#pullrequestreview-1912582848) at 2024-03-01 09:37 PM PST -trca831,8029,SKILLS ISSUE -trca831,2025-04-01T02:48:10Z,- trca831 opened issue: [8029](https://github.com/hackforla/website/issues/8029) at 2025-03-31 07:48 PM PDT -trca831,2025-04-01T02:49:00Z,- trca831 assigned to issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2767915468) at 2025-03-31 07:49 PM PDT -trca831,2025-04-09T02:44:54Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2788144924) at 2025-04-08 07:44 PM PDT -trca831,2025-04-09T02:47:41Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2788147734) at 2025-04-08 07:47 PM PDT -trca831,2025-04-09T04:54:30Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2788278013) at 2025-04-08 09:54 PM PDT -trca831,2025-04-14T04:09:00Z,- trca831 commented on pull request: [8038](https://github.com/hackforla/website/pull/8038#issuecomment-2800423984) at 2025-04-13 09:09 PM PDT -trca831,2025-04-16T04:08:54Z,- trca831 submitted pull request review: [8038](https://github.com/hackforla/website/pull/8038#pullrequestreview-2770617629) at 2025-04-15 09:08 PM PDT -trca831,2025-04-26T00:32:56Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2831674380) at 2025-04-25 05:32 PM PDT -trca831,2025-05-12T05:41:01Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2870905735) at 2025-05-11 10:41 PM PDT -trca831,2025-05-12T05:42:35Z,- trca831 commented on issue: [8029](https://github.com/hackforla/website/issues/8029#issuecomment-2870907899) at 2025-05-11 10:42 PM PDT -Treidexy,2021-01-20T03:09:32Z,- Treidexy assigned to issue: [949](https://github.com/hackforla/website/issues/949#issuecomment-762915062) at 2021-01-19 07:09 PM PST -Treidexy,2021-01-20T04:07:27Z,- Treidexy opened pull request: [952](https://github.com/hackforla/website/pull/952) at 2021-01-19 08:07 PM PST -Treidexy,2021-01-21T01:51:25Z,- Treidexy pull request merged: [952](https://github.com/hackforla/website/pull/952#event-4231050660) at 2021-01-20 05:51 PM PST -Treidexy,2021-01-27T03:11:47Z,- Treidexy assigned to issue: [955](https://github.com/hackforla/website/issues/955) at 2021-01-26 07:11 PM PST -Treidexy,2021-01-27T03:26:04Z,- Treidexy opened pull request: [970](https://github.com/hackforla/website/pull/970) at 2021-01-26 07:26 PM PST -Treidexy,2021-01-27T03:51:05Z,- Treidexy pull request merged: [970](https://github.com/hackforla/website/pull/970#event-4253804059) at 2021-01-26 07:51 PM PST -Treidexy,2021-01-27T03:56:00Z,- Treidexy assigned to issue: [960](https://github.com/hackforla/website/issues/960) at 2021-01-26 07:56 PM PST -Treidexy,2021-02-03T03:24:40Z,- Treidexy opened pull request: [987](https://github.com/hackforla/website/pull/987) at 2021-02-02 07:24 PM PST -Treidexy,2021-02-03T03:41:09Z,- Treidexy pull request closed w/o merging: [987](https://github.com/hackforla/website/pull/987#event-4282995763) at 2021-02-02 07:41 PM PST -Treidexy,2021-02-03T04:07:46Z,- Treidexy opened pull request: [988](https://github.com/hackforla/website/pull/988) at 2021-02-02 08:07 PM PST -Treidexy,2021-02-11T01:04:01Z,- Treidexy commented on pull request: [988](https://github.com/hackforla/website/pull/988#issuecomment-777144117) at 2021-02-10 05:04 PM PST -Treidexy,2021-02-14T18:55:45Z,- Treidexy pull request merged: [988](https://github.com/hackforla/website/pull/988#event-4329011884) at 2021-02-14 10:55 AM PST -Treidexy,2021-02-14T19:15:36Z,- Treidexy assigned to issue: [1041](https://github.com/hackforla/website/issues/1041) at 2021-02-14 11:15 AM PST -Treidexy,2021-02-17T03:23:21Z,- Treidexy unassigned from issue: [1041](https://github.com/hackforla/website/issues/1041) at 2021-02-16 07:23 PM PST -Treidexy,2021-02-17T03:23:51Z,- Treidexy assigned to issue: [1044](https://github.com/hackforla/website/issues/1044) at 2021-02-16 07:23 PM PST -Treidexy,2021-02-24T23:22:01Z,- Treidexy opened issue: [1106](https://github.com/hackforla/website/issues/1106) at 2021-02-24 03:22 PM PST -Treidexy,2021-02-24T23:26:10Z,- Treidexy opened issue: [1107](https://github.com/hackforla/website/issues/1107) at 2021-02-24 03:26 PM PST -Treidexy,2021-02-24T23:38:39Z,- Treidexy opened pull request: [1108](https://github.com/hackforla/website/pull/1108) at 2021-02-24 03:38 PM PST -Treidexy,2021-02-25T00:33:31Z,- Treidexy pull request merged: [1108](https://github.com/hackforla/website/pull/1108#event-4373886339) at 2021-02-24 04:33 PM PST -Treidexy,2021-03-01T23:00:52Z,- Treidexy commented on pull request: [1129](https://github.com/hackforla/website/pull/1129#issuecomment-788372571) at 2021-03-01 03:00 PM PST -Treidexy,2021-03-10T03:50:20Z,- Treidexy assigned to issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-03-09 07:50 PM PST -Treidexy,2021-03-10T03:50:40Z,- Treidexy unassigned from issue: [1044](https://github.com/hackforla/website/issues/1044#issuecomment-784821786) at 2021-03-09 07:50 PM PST -Treidexy,2021-03-10T03:53:27Z,- Treidexy assigned to issue: [1190](https://github.com/hackforla/website/issues/1190) at 2021-03-09 07:53 PM PST -Treidexy,2021-03-10T03:56:52Z,- Treidexy opened pull request: [1191](https://github.com/hackforla/website/pull/1191) at 2021-03-09 07:56 PM PST -Treidexy,2021-03-10T03:58:05Z,- Treidexy pull request merged: [1191](https://github.com/hackforla/website/pull/1191#event-4433215801) at 2021-03-09 07:58 PM PST -Treidexy,2021-04-14T02:22:17Z,- Treidexy unassigned from issue: [1090](https://github.com/hackforla/website/issues/1090#issuecomment-786796207) at 2021-04-13 07:22 PM PDT -trimakichan,7627,SKILLS ISSUE -trimakichan,2024-10-23T03:19:20Z,- trimakichan opened issue: [7627](https://github.com/hackforla/website/issues/7627) at 2024-10-22 08:19 PM PDT -trimakichan,2024-10-23T03:20:00Z,- trimakichan assigned to issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2430761703) at 2024-10-22 08:20 PM PDT -trimakichan,2024-10-25T15:59:42Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2438203171) at 2024-10-25 08:59 AM PDT -trimakichan,2024-10-25T16:02:39Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2438210125) at 2024-10-25 09:02 AM PDT -trimakichan,2024-10-25T17:53:24Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2438446909) at 2024-10-25 10:53 AM PDT -trimakichan,2024-10-25T17:56:58Z,- trimakichan assigned to issue: [7542](https://github.com/hackforla/website/issues/7542) at 2024-10-25 10:56 AM PDT -trimakichan,2024-10-25T21:49:45Z,- trimakichan commented on issue: [7542](https://github.com/hackforla/website/issues/7542#issuecomment-2438928913) at 2024-10-25 02:49 PM PDT -trimakichan,2024-10-26T16:27:57Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2439642648) at 2024-10-26 09:27 AM PDT -trimakichan,2024-10-26T18:28:47Z,- trimakichan opened pull request: [7639](https://github.com/hackforla/website/pull/7639) at 2024-10-26 11:28 AM PDT -trimakichan,2024-10-28T20:46:14Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442595053) at 2024-10-28 01:46 PM PDT -trimakichan,2024-10-28T20:50:12Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442601760) at 2024-10-28 01:50 PM PDT -trimakichan,2024-10-28T21:37:10Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442679855) at 2024-10-28 02:37 PM PDT -trimakichan,2024-10-28T21:40:52Z,- trimakichan commented on pull request: [7639](https://github.com/hackforla/website/pull/7639#issuecomment-2442685882) at 2024-10-28 02:40 PM PDT -trimakichan,2024-10-29T19:27:28Z,- trimakichan pull request merged: [7639](https://github.com/hackforla/website/pull/7639#event-14990258358) at 2024-10-29 12:27 PM PDT -trimakichan,2024-10-29T20:39:58Z,- trimakichan commented on issue: [7542](https://github.com/hackforla/website/issues/7542#issuecomment-2445286147) at 2024-10-29 01:39 PM PDT -trimakichan,2024-10-29T20:41:33Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2445289376) at 2024-10-29 01:41 PM PDT -trimakichan,2024-10-30T19:46:46Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2448219391) at 2024-10-30 12:46 PM PDT -trimakichan,2024-11-02T16:56:07Z,- trimakichan assigned to issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2408189434) at 2024-11-02 08:56 AM PST -trimakichan,2024-11-02T17:29:27Z,- trimakichan commented on issue: [7585](https://github.com/hackforla/website/issues/7585#issuecomment-2453055827) at 2024-11-02 09:29 AM PST -trimakichan,2024-11-02T18:30:00Z,- trimakichan opened pull request: [7685](https://github.com/hackforla/website/pull/7685) at 2024-11-02 10:30 AM PST -trimakichan,2024-11-04T17:37:35Z,- trimakichan commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455321181) at 2024-11-04 09:37 AM PST -trimakichan,2024-11-04T17:42:21Z,- trimakichan commented on pull request: [7685](https://github.com/hackforla/website/pull/7685#issuecomment-2455330920) at 2024-11-04 09:42 AM PST -trimakichan,2024-11-06T16:44:34Z,- trimakichan pull request merged: [7685](https://github.com/hackforla/website/pull/7685#event-15154639825) at 2024-11-06 08:44 AM PST -trimakichan,2024-11-07T18:44:08Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2462973102) at 2024-11-07 10:44 AM PST -trimakichan,2024-11-07T18:48:54Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2462981605) at 2024-11-07 10:48 AM PST -trimakichan,2024-11-17T17:36:09Z,- trimakichan commented on pull request: [7723](https://github.com/hackforla/website/pull/7723#issuecomment-2481395665) at 2024-11-17 09:36 AM PST -trimakichan,2024-11-17T18:36:45Z,- trimakichan submitted pull request review: [7723](https://github.com/hackforla/website/pull/7723#pullrequestreview-2441120860) at 2024-11-17 10:36 AM PST -trimakichan,2024-11-17T18:47:13Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2481424832) at 2024-11-17 10:47 AM PST -trimakichan,2024-11-19T16:53:22Z,- trimakichan commented on pull request: [7728](https://github.com/hackforla/website/pull/7728#issuecomment-2486247899) at 2024-11-19 08:53 AM PST -trimakichan,2024-11-19T17:12:23Z,- trimakichan submitted pull request review: [7728](https://github.com/hackforla/website/pull/7728#pullrequestreview-2446110916) at 2024-11-19 09:12 AM PST -trimakichan,2024-11-19T17:14:54Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2486296719) at 2024-11-19 09:14 AM PST -trimakichan,2024-11-22T16:49:53Z,- trimakichan commented on pull request: [7757](https://github.com/hackforla/website/pull/7757#issuecomment-2494258055) at 2024-11-22 08:49 AM PST -trimakichan,2024-11-22T18:02:28Z,- trimakichan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2455274236) at 2024-11-22 10:02 AM PST -trimakichan,2024-11-22T18:18:29Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2494479279) at 2024-11-22 10:18 AM PST -trimakichan,2024-11-24T18:46:18Z,- trimakichan submitted pull request review: [7757](https://github.com/hackforla/website/pull/7757#pullrequestreview-2456771275) at 2024-11-24 10:46 AM PST -trimakichan,2024-11-26T18:30:12Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2501656346) at 2024-11-26 10:30 AM PST -trimakichan,2024-12-04T17:38:19Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2518115542) at 2024-12-04 09:38 AM PST -trimakichan,2024-12-04T18:05:22Z,- trimakichan assigned to issue: [7396](https://github.com/hackforla/website/issues/7396) at 2024-12-04 10:05 AM PST -trimakichan,2024-12-04T18:09:45Z,- trimakichan commented on issue: [7396](https://github.com/hackforla/website/issues/7396#issuecomment-2518181969) at 2024-12-04 10:09 AM PST -trimakichan,2024-12-09T18:26:12Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2529021716) at 2024-12-09 10:26 AM PST -trimakichan,2024-12-12T22:41:16Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2540155518) at 2024-12-12 02:41 PM PST -trimakichan,2025-01-04T21:18:28Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2571414130) at 2025-01-04 01:18 PM PST -trimakichan,2025-01-04T21:19:34Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2571414354) at 2025-01-04 01:19 PM PST -trimakichan,2025-01-20T17:36:03Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2602965916) at 2025-01-20 09:36 AM PST -trimakichan,2025-02-11T16:59:12Z,- trimakichan commented on pull request: [7899](https://github.com/hackforla/website/pull/7899#issuecomment-2651464262) at 2025-02-11 08:59 AM PST -trimakichan,2025-02-11T18:22:37Z,- trimakichan submitted pull request review: [7899](https://github.com/hackforla/website/pull/7899#pullrequestreview-2609626283) at 2025-02-11 10:22 AM PST -trimakichan,2025-02-11T18:26:47Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2651663075) at 2025-02-11 10:26 AM PST -trimakichan,2025-02-11T18:38:23Z,- trimakichan commented on pull request: [7901](https://github.com/hackforla/website/pull/7901#issuecomment-2651686577) at 2025-02-11 10:38 AM PST -trimakichan,2025-02-11T19:34:52Z,- trimakichan submitted pull request review: [7901](https://github.com/hackforla/website/pull/7901#pullrequestreview-2609832619) at 2025-02-11 11:34 AM PST -trimakichan,2025-02-12T19:00:30Z,- trimakichan submitted pull request review: [7901](https://github.com/hackforla/website/pull/7901#pullrequestreview-2612929552) at 2025-02-12 11:00 AM PST -trimakichan,2025-02-14T16:49:33Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2659816146) at 2025-02-14 08:49 AM PST -trimakichan,2025-02-14T16:52:14Z,- trimakichan commented on issue: [7627](https://github.com/hackforla/website/issues/7627#issuecomment-2659820943) at 2025-02-14 08:52 AM PST -trishajjohnson,3049,SKILLS ISSUE -trishajjohnson,2022-04-13T03:10:36Z,- trishajjohnson opened issue: [3049](https://github.com/hackforla/website/issues/3049) at 2022-04-12 08:10 PM PDT -trishajjohnson,2022-04-13T03:20:04Z,- trishajjohnson assigned to issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1097506176) at 2022-04-12 08:20 PM PDT -trishajjohnson,2022-04-20T00:09:14Z,- trishajjohnson assigned to issue: [2913](https://github.com/hackforla/website/issues/2913#issuecomment-1056028927) at 2022-04-19 05:09 PM PDT -trishajjohnson,2022-04-20T00:17:05Z,- trishajjohnson commented on issue: [2913](https://github.com/hackforla/website/issues/2913#issuecomment-1103285155) at 2022-04-19 05:17 PM PDT -trishajjohnson,2022-04-20T01:42:06Z,- trishajjohnson commented on issue: [2913](https://github.com/hackforla/website/issues/2913#issuecomment-1103351500) at 2022-04-19 06:42 PM PDT -trishajjohnson,2022-04-20T23:40:16Z,- trishajjohnson opened pull request: [3072](https://github.com/hackforla/website/pull/3072) at 2022-04-20 04:40 PM PDT -trishajjohnson,2022-04-22T02:13:25Z,- trishajjohnson pull request merged: [3072](https://github.com/hackforla/website/pull/3072#event-6475056487) at 2022-04-21 07:13 PM PDT -trishajjohnson,2022-04-23T23:22:41Z,- trishajjohnson assigned to issue: [3041](https://github.com/hackforla/website/issues/3041#issuecomment-1094362337) at 2022-04-23 04:22 PM PDT -trishajjohnson,2022-04-23T23:27:31Z,- trishajjohnson unassigned from issue: [3041](https://github.com/hackforla/website/issues/3041#issuecomment-1094362337) at 2022-04-23 04:27 PM PDT -trishajjohnson,2022-04-24T23:57:26Z,- trishajjohnson commented on pull request: [3079](https://github.com/hackforla/website/pull/3079#issuecomment-1107943082) at 2022-04-24 04:57 PM PDT -trishajjohnson,2022-04-25T05:25:53Z,- trishajjohnson submitted pull request review: [3079](https://github.com/hackforla/website/pull/3079#pullrequestreview-951357951) at 2022-04-24 10:25 PM PDT -trishajjohnson,2022-04-27T01:40:38Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1110439359) at 2022-04-26 06:40 PM PDT -trishajjohnson,2022-04-27T01:41:39Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1110439874) at 2022-04-26 06:41 PM PDT -trishajjohnson,2022-04-27T02:31:44Z,- trishajjohnson assigned to issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1051648112) at 2022-04-26 07:31 PM PDT -trishajjohnson,2022-04-27T02:32:57Z,- trishajjohnson commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1110467109) at 2022-04-26 07:32 PM PDT -trishajjohnson,2022-05-06T15:47:35Z,- trishajjohnson commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1119757696) at 2022-05-06 08:47 AM PDT -trishajjohnson,2022-05-06T17:05:51Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1119820963) at 2022-05-06 10:05 AM PDT -trishajjohnson,2022-05-06T17:06:25Z,- trishajjohnson commented on issue: [3049](https://github.com/hackforla/website/issues/3049#issuecomment-1119821384) at 2022-05-06 10:06 AM PDT -trishajjohnson,2022-05-06T17:08:17Z,- trishajjohnson commented on issue: [2892](https://github.com/hackforla/website/issues/2892#issuecomment-1119822672) at 2022-05-06 10:08 AM PDT -trishajjohnson,2022-05-06T21:19:55Z,- trishajjohnson opened pull request: [3108](https://github.com/hackforla/website/pull/3108) at 2022-05-06 02:19 PM PDT -trishajjohnson,2022-05-08T03:39:33Z,- trishajjohnson pull request merged: [3108](https://github.com/hackforla/website/pull/3108#event-6568169465) at 2022-05-07 08:39 PM PDT -trishajjohnson,2022-05-17T05:58:11Z,- trishajjohnson assigned to issue: [3084](https://github.com/hackforla/website/issues/3084#issuecomment-1114044814) at 2022-05-16 10:58 PM PDT -trishajjohnson,2022-05-17T06:03:44Z,- trishajjohnson commented on issue: [3084](https://github.com/hackforla/website/issues/3084#issuecomment-1128447278) at 2022-05-16 11:03 PM PDT -trishajjohnson,2022-05-19T01:03:09Z,- trishajjohnson commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1130892847) at 2022-05-18 06:03 PM PDT -trishajjohnson,2022-05-20T02:48:15Z,- trishajjohnson commented on pull request: [2723](https://github.com/hackforla/website/pull/2723#issuecomment-1132400638) at 2022-05-19 07:48 PM PDT -trishajjohnson,2022-05-20T06:04:45Z,- trishajjohnson submitted pull request review: [2723](https://github.com/hackforla/website/pull/2723#pullrequestreview-979558603) at 2022-05-19 11:04 PM PDT -trishajjohnson,2022-05-20T07:28:52Z,- trishajjohnson commented on issue: [3084](https://github.com/hackforla/website/issues/3084#issuecomment-1132573599) at 2022-05-20 12:28 AM PDT -trishajjohnson,2022-05-20T08:05:43Z,- trishajjohnson opened pull request: [3162](https://github.com/hackforla/website/pull/3162) at 2022-05-20 01:05 AM PDT -trishajjohnson,2022-05-25T00:19:36Z,- trishajjohnson commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1136555166) at 2022-05-24 05:19 PM PDT -trishajjohnson,2022-05-25T02:25:45Z,- trishajjohnson closed issue as completed: [3049](https://github.com/hackforla/website/issues/3049#event-6673764056) at 2022-05-24 07:25 PM PDT -trishajjohnson,2022-05-26T05:28:12Z,- trishajjohnson commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1138168234) at 2022-05-25 10:28 PM PDT -trishajjohnson,2022-05-26T05:48:59Z,- trishajjohnson commented on pull request: [3174](https://github.com/hackforla/website/pull/3174#issuecomment-1138178248) at 2022-05-25 10:48 PM PDT -trishajjohnson,2022-05-26T05:50:36Z,- trishajjohnson commented on pull request: [3173](https://github.com/hackforla/website/pull/3173#issuecomment-1138178978) at 2022-05-25 10:50 PM PDT -trishajjohnson,2022-05-26T21:57:07Z,- trishajjohnson submitted pull request review: [3173](https://github.com/hackforla/website/pull/3173#pullrequestreview-986836268) at 2022-05-26 02:57 PM PDT -trishajjohnson,2022-05-27T00:17:20Z,- trishajjohnson submitted pull request review: [3174](https://github.com/hackforla/website/pull/3174#pullrequestreview-986921290) at 2022-05-26 05:17 PM PDT -trishajjohnson,2022-06-02T17:19:16Z,- trishajjohnson commented on pull request: [3162](https://github.com/hackforla/website/pull/3162#issuecomment-1145111190) at 2022-06-02 10:19 AM PDT -trishajjohnson,2022-06-02T18:12:10Z,- trishajjohnson commented on pull request: [3193](https://github.com/hackforla/website/pull/3193#issuecomment-1145166764) at 2022-06-02 11:12 AM PDT -trishajjohnson,2022-06-02T18:16:21Z,- trishajjohnson submitted pull request review: [3193](https://github.com/hackforla/website/pull/3193#pullrequestreview-993975088) at 2022-06-02 11:16 AM PDT -trishajjohnson,2022-06-02T18:33:14Z,- trishajjohnson commented on pull request: [3178](https://github.com/hackforla/website/pull/3178#issuecomment-1145186287) at 2022-06-02 11:33 AM PDT -trishajjohnson,2022-06-02T18:49:25Z,- trishajjohnson submitted pull request review: [3178](https://github.com/hackforla/website/pull/3178#pullrequestreview-994009977) at 2022-06-02 11:49 AM PDT -trishajjohnson,2022-06-17T02:48:18Z,- trishajjohnson pull request merged: [3162](https://github.com/hackforla/website/pull/3162#event-6825721810) at 2022-06-16 07:48 PM PDT -trishajjohnson,2022-07-07T18:57:29Z,- trishajjohnson commented on pull request: [3338](https://github.com/hackforla/website/pull/3338#issuecomment-1178081819) at 2022-07-07 11:57 AM PDT -trishajjohnson,2022-07-08T04:14:57Z,- trishajjohnson submitted pull request review: [3338](https://github.com/hackforla/website/pull/3338#pullrequestreview-1032381668) at 2022-07-07 09:14 PM PDT - REPLACED - 6943 (troyfreed),4713,SKILLS ISSUE -troyfreed,6943,SKILLS ISSUE -troyfreed,2023-05-24T03:04:02Z,- troyfreed opened issue: [4713](https://github.com/hackforla/website/issues/4713) at 2023-05-23 08:04 PM PDT -troyfreed,2023-05-24T03:04:31Z,- troyfreed assigned to issue: [4713](https://github.com/hackforla/website/issues/4713) at 2023-05-23 08:04 PM PDT -troyfreed,2023-05-30T04:17:31Z,- troyfreed commented on issue: [4713](https://github.com/hackforla/website/issues/4713#issuecomment-1567734378) at 2023-05-29 09:17 PM PDT -troyfreed,2023-06-03T21:40:24Z,- troyfreed assigned to issue: [4488](https://github.com/hackforla/website/issues/4488) at 2023-06-03 02:40 PM PDT -troyfreed,2023-06-03T21:44:46Z,- troyfreed commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1575210771) at 2023-06-03 02:44 PM PDT -troyfreed,2023-06-05T23:49:38Z,- troyfreed commented on issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1577696277) at 2023-06-05 04:49 PM PDT -troyfreed,2023-06-27T01:39:45Z,- troyfreed unassigned from issue: [4488](https://github.com/hackforla/website/issues/4488#issuecomment-1608575872) at 2023-06-26 06:39 PM PDT -troyfreed,2024-02-27T22:56:06Z,- troyfreed unassigned from issue: [4713](https://github.com/hackforla/website/issues/4713#event-10585009842) at 2024-02-27 02:56 PM PST -troyfreed,2024-06-04T02:40:09Z,- troyfreed opened issue: [6943](https://github.com/hackforla/website/issues/6943) at 2024-06-03 07:40 PM PDT -troyfreed,2024-06-04T02:40:14Z,- troyfreed assigned to issue: [6943](https://github.com/hackforla/website/issues/6943) at 2024-06-03 07:40 PM PDT -troyfreed,2024-06-11T01:01:47Z,- troyfreed assigned to issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2149201036) at 2024-06-10 06:01 PM PDT -troyfreed,2024-06-11T01:20:58Z,- troyfreed commented on issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2159590792) at 2024-06-10 06:20 PM PDT -troyfreed,2024-06-13T19:05:22Z,- troyfreed commented on issue: [6943](https://github.com/hackforla/website/issues/6943#issuecomment-2166576349) at 2024-06-13 12:05 PM PDT -troyfreed,2024-06-13T19:27:56Z,- troyfreed opened pull request: [7001](https://github.com/hackforla/website/pull/7001) at 2024-06-13 12:27 PM PDT -troyfreed,2024-06-18T01:59:15Z,- troyfreed commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2174768893) at 2024-06-17 06:59 PM PDT -troyfreed,2024-06-20T18:50:28Z,- troyfreed commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2181327007) at 2024-06-20 11:50 AM PDT -troyfreed,2024-06-24T23:05:35Z,- troyfreed commented on pull request: [7001](https://github.com/hackforla/website/pull/7001#issuecomment-2187576257) at 2024-06-24 04:05 PM PDT -troyfreed,2024-06-26T01:47:59Z,- troyfreed pull request closed w/o merging: [7001](https://github.com/hackforla/website/pull/7001#event-13290055232) at 2024-06-25 06:47 PM PDT -troyfreed,2024-06-26T02:00:12Z,- troyfreed unassigned from issue: [6941](https://github.com/hackforla/website/issues/6941#issuecomment-2159590792) at 2024-06-25 07:00 PM PDT -trtincher,2021-01-06T04:28:32Z,- trtincher assigned to issue: [911](https://github.com/hackforla/website/issues/911) at 2021-01-05 08:28 PM PST -trtincher,2021-01-10T23:21:54Z,- trtincher opened pull request: [929](https://github.com/hackforla/website/pull/929) at 2021-01-10 03:21 PM PST -trtincher,2021-01-10T23:44:17Z,- trtincher commented on pull request: [929](https://github.com/hackforla/website/pull/929#issuecomment-757564989) at 2021-01-10 03:44 PM PST -trtincher,2021-01-10T23:45:56Z,- trtincher assigned to issue: [910](https://github.com/hackforla/website/issues/910) at 2021-01-10 03:45 PM PST -trtincher,2021-01-11T22:07:36Z,- trtincher submitted pull request review: [931](https://github.com/hackforla/website/pull/931#pullrequestreview-565777967) at 2021-01-11 02:07 PM PST -trtincher,2021-01-13T03:34:15Z,- trtincher pull request merged: [929](https://github.com/hackforla/website/pull/929#event-4199223368) at 2021-01-12 07:34 PM PST -trtincher,2021-01-15T15:35:39Z,- trtincher submitted pull request review: [941](https://github.com/hackforla/website/pull/941#pullrequestreview-569365764) at 2021-01-15 07:35 AM PST -trtincher,2021-01-15T16:00:27Z,- trtincher opened pull request: [942](https://github.com/hackforla/website/pull/942) at 2021-01-15 08:00 AM PST -trtincher,2021-01-17T18:09:03Z,- trtincher pull request merged: [942](https://github.com/hackforla/website/pull/942#event-4215384150) at 2021-01-17 10:09 AM PST -trtincher,2021-01-17T19:19:02Z,- trtincher assigned to issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-705842895) at 2021-01-17 11:19 AM PST -trtincher,2021-01-18T20:23:00Z,- trtincher submitted pull request review: [941](https://github.com/hackforla/website/pull/941#pullrequestreview-570760358) at 2021-01-18 12:23 PM PST -trtincher,2021-01-18T20:35:20Z,- trtincher submitted pull request review: [943](https://github.com/hackforla/website/pull/943#pullrequestreview-570765180) at 2021-01-18 12:35 PM PST -trtincher,2021-01-20T15:06:45Z,- trtincher submitted pull request review: [943](https://github.com/hackforla/website/pull/943#pullrequestreview-572317291) at 2021-01-20 07:06 AM PST -trtincher,2021-01-20T15:07:30Z,- trtincher closed issue by PR 943: [925](https://github.com/hackforla/website/issues/925#event-4228394579) at 2021-01-20 07:07 AM PST -trtincher,2021-01-20T15:13:59Z,- trtincher submitted pull request review: [952](https://github.com/hackforla/website/pull/952#pullrequestreview-572324891) at 2021-01-20 07:13 AM PST -trtincher,2021-01-24T15:43:02Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-766370208) at 2021-01-24 07:43 AM PST -trtincher,2021-01-28T21:54:24Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-769424455) at 2021-01-28 01:54 PM PST -trtincher,2021-01-31T18:49:44Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-770430172) at 2021-01-31 10:49 AM PST -trtincher,2021-02-01T14:34:35Z,- trtincher submitted pull request review: [977](https://github.com/hackforla/website/pull/977#pullrequestreview-580412244) at 2021-02-01 06:34 AM PST -trtincher,2021-02-02T16:01:31Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-771740873) at 2021-02-02 08:01 AM PST -trtincher,2021-02-04T00:40:37Z,- trtincher assigned to issue: [935](https://github.com/hackforla/website/issues/935) at 2021-02-03 04:40 PM PST -trtincher,2021-02-04T17:06:02Z,- trtincher opened pull request: [1002](https://github.com/hackforla/website/pull/1002) at 2021-02-04 09:06 AM PST -trtincher,2021-02-14T16:08:20Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-778799002) at 2021-02-14 08:08 AM PST -trtincher,2021-02-24T03:44:01Z,- trtincher commented on pull request: [1002](https://github.com/hackforla/website/pull/1002#issuecomment-784729990) at 2021-02-23 07:44 PM PST -trtincher,2021-02-28T18:06:24Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-787494303) at 2021-02-28 10:06 AM PST -trtincher,2021-03-03T03:35:30Z,- trtincher assigned to issue: [1154](https://github.com/hackforla/website/issues/1154) at 2021-03-02 07:35 PM PST -trtincher,2021-03-07T16:32:45Z,- trtincher submitted pull request review: [1158](https://github.com/hackforla/website/pull/1158#pullrequestreview-605862905) at 2021-03-07 08:32 AM PST -trtincher,2021-03-07T16:41:20Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-792307937) at 2021-03-07 08:41 AM PST -trtincher,2021-03-07T17:58:30Z,- trtincher submitted pull request review: [1170](https://github.com/hackforla/website/pull/1170#pullrequestreview-605869914) at 2021-03-07 09:58 AM PST -trtincher,2021-03-10T02:15:44Z,- trtincher submitted pull request review: [1158](https://github.com/hackforla/website/pull/1158#pullrequestreview-608274670) at 2021-03-09 06:15 PM PST -trtincher,2021-03-17T02:19:02Z,- trtincher pull request merged: [1002](https://github.com/hackforla/website/pull/1002#event-4467747148) at 2021-03-16 07:19 PM PDT -trtincher,2021-03-17T02:55:02Z,- trtincher assigned to issue: [1155](https://github.com/hackforla/website/issues/1155) at 2021-03-16 07:55 PM PDT -trtincher,2021-03-21T16:24:49Z,- trtincher commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-803615306) at 2021-03-21 09:24 AM PDT -trtincher,2021-03-21T16:55:59Z,- trtincher submitted pull request review: [1281](https://github.com/hackforla/website/pull/1281#pullrequestreview-617040485) at 2021-03-21 09:55 AM PDT -trtincher,2021-03-21T17:05:13Z,- trtincher submitted pull request review: [1282](https://github.com/hackforla/website/pull/1282#pullrequestreview-617041331) at 2021-03-21 10:05 AM PDT -trtincher,2021-03-21T17:18:47Z,- trtincher submitted pull request review: [1279](https://github.com/hackforla/website/pull/1279#pullrequestreview-617042603) at 2021-03-21 10:18 AM PDT -trtincher,2021-03-21T17:20:39Z,- trtincher closed issue by PR 1279: [1278](https://github.com/hackforla/website/issues/1278#event-4486980294) at 2021-03-21 10:20 AM PDT -trtincher,2021-03-21T17:32:24Z,- trtincher commented on issue: [1155](https://github.com/hackforla/website/issues/1155#issuecomment-803628738) at 2021-03-21 10:32 AM PDT -trtincher,2021-03-24T00:30:56Z,- trtincher opened pull request: [1318](https://github.com/hackforla/website/pull/1318) at 2021-03-23 05:30 PM PDT -trtincher,2021-03-24T02:33:38Z,- trtincher pull request merged: [1318](https://github.com/hackforla/website/pull/1318#event-4499433244) at 2021-03-23 07:33 PM PDT -trtincher,2021-03-24T03:17:59Z,- trtincher assigned to issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-801320659) at 2021-03-23 08:17 PM PDT -trtincher,2021-03-24T03:31:07Z,- trtincher submitted pull request review: [1317](https://github.com/hackforla/website/pull/1317#pullrequestreview-619281052) at 2021-03-23 08:31 PM PDT -trtincher,2021-03-24T03:31:19Z,- trtincher closed issue by PR 1317: [1046](https://github.com/hackforla/website/issues/1046#event-4499564778) at 2021-03-23 08:31 PM PDT -trtincher,2021-03-28T15:15:46Z,- trtincher commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-808910521) at 2021-03-28 08:15 AM PDT -trtincher,2021-04-05T14:05:46Z,- trtincher unassigned from issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-808910521) at 2021-04-05 07:05 AM PDT -trtincher,2021-04-05T14:07:01Z,- trtincher commented on issue: [861](https://github.com/hackforla/website/issues/861#issuecomment-813411114) at 2021-04-05 07:07 AM PDT -trz832,3244,SKILLS ISSUE -trz832,2022-06-14T03:26:54Z,- trz832 opened issue: [3244](https://github.com/hackforla/website/issues/3244) at 2022-06-13 08:26 PM PDT -trz832,2022-06-15T01:59:32Z,- trz832 assigned to issue: [3244](https://github.com/hackforla/website/issues/3244#issuecomment-1154668551) at 2022-06-14 06:59 PM PDT -trz832,2022-06-17T02:38:58Z,- trz832 assigned to issue: [2805](https://github.com/hackforla/website/issues/2805#issuecomment-1046308523) at 2022-06-16 07:38 PM PDT -trz832,2022-06-18T22:11:59Z,- trz832 assigned to issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1103242389) at 2022-06-18 03:11 PM PDT -trz832,2022-06-18T22:14:03Z,- trz832 opened pull request: [3259](https://github.com/hackforla/website/pull/3259) at 2022-06-18 03:14 PM PDT -trz832,2022-06-18T22:20:32Z,- trz832 opened pull request: [3260](https://github.com/hackforla/website/pull/3260) at 2022-06-18 03:20 PM PDT -trz832,2022-06-18T22:36:15Z,- trz832 opened pull request: [3261](https://github.com/hackforla/website/pull/3261) at 2022-06-18 03:36 PM PDT -trz832,2022-06-23T19:56:32Z,- trz832 pull request closed w/o merging: [3261](https://github.com/hackforla/website/pull/3261#event-6869171284) at 2022-06-23 12:56 PM PDT -trz832,2022-06-24T00:04:24Z,- trz832 pull request closed w/o merging: [3259](https://github.com/hackforla/website/pull/3259#event-6870548124) at 2022-06-23 05:04 PM PDT -trz832,2022-07-21T02:21:14Z,- trz832 pull request merged: [3260](https://github.com/hackforla/website/pull/3260#event-7034278743) at 2022-07-20 07:21 PM PDT -trz832,2022-07-25T21:57:29Z,- trz832 unassigned from issue: [2215](https://github.com/hackforla/website/issues/2215#issuecomment-1192268152) at 2022-07-25 02:57 PM PDT -tunglinn,3271,SKILLS ISSUE -tunglinn,2022-06-20T21:41:54Z,- tunglinn opened issue: [3271](https://github.com/hackforla/website/issues/3271) at 2022-06-20 02:41 PM PDT -tunglinn,2022-06-20T21:56:55Z,- tunglinn assigned to issue: [3271](https://github.com/hackforla/website/issues/3271#issuecomment-1160868681) at 2022-06-20 02:56 PM PDT -tunglinn,2022-06-22T19:24:38Z,- tunglinn assigned to issue: [2808](https://github.com/hackforla/website/issues/2808#issuecomment-1046310234) at 2022-06-22 12:24 PM PDT -tunglinn,2022-06-23T03:53:09Z,- tunglinn commented on issue: [2808](https://github.com/hackforla/website/issues/2808#issuecomment-1163895703) at 2022-06-22 08:53 PM PDT -tunglinn,2022-06-23T03:54:43Z,- tunglinn commented on issue: [3271](https://github.com/hackforla/website/issues/3271#issuecomment-1163896364) at 2022-06-22 08:54 PM PDT -tunglinn,2022-06-23T04:12:37Z,- tunglinn opened pull request: [3291](https://github.com/hackforla/website/pull/3291) at 2022-06-22 09:12 PM PDT -tunglinn,2022-06-23T19:31:29Z,- tunglinn commented on issue: [2808](https://github.com/hackforla/website/issues/2808#issuecomment-1164790013) at 2022-06-23 12:31 PM PDT -tunglinn,2022-06-24T03:47:13Z,- tunglinn pull request merged: [3291](https://github.com/hackforla/website/pull/3291#event-6871254387) at 2022-06-23 08:47 PM PDT -tunglinn,2022-06-26T17:12:40Z,- tunglinn assigned to issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1116774769) at 2022-06-26 10:12 AM PDT -tunglinn,2022-06-26T17:13:12Z,- tunglinn commented on issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1166591455) at 2022-06-26 10:13 AM PDT -tunglinn,2022-06-26T17:23:42Z,- tunglinn commented on pull request: [3303](https://github.com/hackforla/website/pull/3303#issuecomment-1166593979) at 2022-06-26 10:23 AM PDT -tunglinn,2022-06-26T18:53:54Z,- tunglinn opened issue: [3312](https://github.com/hackforla/website/issues/3312) at 2022-06-26 11:53 AM PDT -tunglinn,2022-06-26T19:19:36Z,- tunglinn submitted pull request review: [3303](https://github.com/hackforla/website/pull/3303#pullrequestreview-1019469711) at 2022-06-26 12:19 PM PDT -tunglinn,2022-06-27T06:08:32Z,- tunglinn closed issue as completed: [3271](https://github.com/hackforla/website/issues/3271#event-6882226102) at 2022-06-26 11:08 PM PDT -tunglinn,2022-06-27T06:23:38Z,- tunglinn opened pull request: [3317](https://github.com/hackforla/website/pull/3317) at 2022-06-26 11:23 PM PDT -tunglinn,2022-06-27T06:25:25Z,- tunglinn commented on issue: [3096](https://github.com/hackforla/website/issues/3096#issuecomment-1166927600) at 2022-06-26 11:25 PM PDT -tunglinn,2022-06-28T18:13:47Z,- tunglinn commented on pull request: [3320](https://github.com/hackforla/website/pull/3320#issuecomment-1169063056) at 2022-06-28 11:13 AM PDT -tunglinn,2022-06-28T18:35:22Z,- tunglinn submitted pull request review: [3320](https://github.com/hackforla/website/pull/3320#pullrequestreview-1022224338) at 2022-06-28 11:35 AM PDT -tunglinn,2022-06-28T19:07:47Z,- tunglinn pull request merged: [3317](https://github.com/hackforla/website/pull/3317#event-6896605693) at 2022-06-28 12:07 PM PDT -tunglinn,2022-06-29T02:05:38Z,- tunglinn assigned to issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1132386706) at 2022-06-28 07:05 PM PDT -tunglinn,2022-06-29T02:30:32Z,- tunglinn commented on issue: [3135](https://github.com/hackforla/website/issues/3135#issuecomment-1169466374) at 2022-06-28 07:30 PM PDT -tunglinn,2022-06-29T03:08:07Z,- tunglinn opened pull request: [3324](https://github.com/hackforla/website/pull/3324) at 2022-06-28 08:08 PM PDT -tunglinn,2022-06-29T19:08:49Z,- tunglinn pull request merged: [3324](https://github.com/hackforla/website/pull/3324#event-6905118630) at 2022-06-29 12:08 PM PDT -tunglinn,2022-06-30T18:00:42Z,- tunglinn commented on pull request: [3326](https://github.com/hackforla/website/pull/3326#issuecomment-1171519323) at 2022-06-30 11:00 AM PDT -tunglinn,2022-06-30T18:03:57Z,- tunglinn assigned to issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1059842879) at 2022-06-30 11:03 AM PDT -tunglinn,2022-06-30T19:22:55Z,- tunglinn submitted pull request review: [3326](https://github.com/hackforla/website/pull/3326#pullrequestreview-1025391586) at 2022-06-30 12:22 PM PDT -tunglinn,2022-07-01T02:19:01Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1171854072) at 2022-06-30 07:19 PM PDT -tunglinn,2022-07-04T17:26:12Z,- tunglinn commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1174022921) at 2022-07-04 10:26 AM PDT -tunglinn,2022-07-04T17:39:37Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1174030611) at 2022-07-04 10:39 AM PDT -tunglinn,2022-07-04T17:55:24Z,- tunglinn submitted pull request review: [3327](https://github.com/hackforla/website/pull/3327#pullrequestreview-1027826318) at 2022-07-04 10:55 AM PDT -tunglinn,2022-07-06T19:18:19Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1176584646) at 2022-07-06 12:18 PM PDT -tunglinn,2022-07-06T21:22:42Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1176762104) at 2022-07-06 02:22 PM PDT -tunglinn,2022-07-07T18:10:13Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1178023100) at 2022-07-07 11:10 AM PDT -tunglinn,2022-07-07T18:29:32Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1178045693) at 2022-07-07 11:29 AM PDT -tunglinn,2022-07-12T01:11:20Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1181203060) at 2022-07-11 06:11 PM PDT -tunglinn,2022-07-13T00:59:18Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1182646013) at 2022-07-12 05:59 PM PDT -tunglinn,2022-07-13T02:01:25Z,- tunglinn commented on pull request: [3363](https://github.com/hackforla/website/pull/3363#issuecomment-1182676517) at 2022-07-12 07:01 PM PDT -tunglinn,2022-07-13T05:32:59Z,- tunglinn submitted pull request review: [3363](https://github.com/hackforla/website/pull/3363#pullrequestreview-1036783709) at 2022-07-12 10:32 PM PDT -tunglinn,2022-07-13T19:55:40Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1183619093) at 2022-07-13 12:55 PM PDT -tunglinn,2022-07-14T01:59:13Z,- tunglinn commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1183868826) at 2022-07-13 06:59 PM PDT -tunglinn,2022-07-16T04:58:44Z,- tunglinn commented on issue: [2933](https://github.com/hackforla/website/issues/2933#issuecomment-1186089661) at 2022-07-15 09:58 PM PDT -tunglinn,2022-07-16T04:58:45Z,- tunglinn closed issue as completed: [2933](https://github.com/hackforla/website/issues/2933#event-7005691107) at 2022-07-15 09:58 PM PDT -tunglinn,2022-07-16T05:16:07Z,- tunglinn assigned to issue: [3357](https://github.com/hackforla/website/issues/3357) at 2022-07-15 10:16 PM PDT -tunglinn,2022-07-17T17:03:01Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186572913) at 2022-07-17 10:03 AM PDT -tunglinn,2022-07-17T17:08:51Z,- tunglinn commented on pull request: [3375](https://github.com/hackforla/website/pull/3375#issuecomment-1186574029) at 2022-07-17 10:08 AM PDT -tunglinn,2022-07-17T17:17:54Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186575429) at 2022-07-17 10:17 AM PDT -tunglinn,2022-07-17T17:28:06Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186576822) at 2022-07-17 10:28 AM PDT -tunglinn,2022-07-17T18:52:33Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1186588735) at 2022-07-17 11:52 AM PDT -tunglinn,2022-07-18T05:03:29Z,- tunglinn submitted pull request review: [3375](https://github.com/hackforla/website/pull/3375#pullrequestreview-1041281101) at 2022-07-17 10:03 PM PDT -tunglinn,2022-07-19T21:02:19Z,- tunglinn commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1189546644) at 2022-07-19 02:02 PM PDT -tunglinn,2022-07-20T00:26:03Z,- tunglinn commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1189673674) at 2022-07-19 05:26 PM PDT -tunglinn,2022-07-20T03:17:12Z,- tunglinn opened issue: [3402](https://github.com/hackforla/website/issues/3402) at 2022-07-19 08:17 PM PDT -tunglinn,2022-07-20T16:45:44Z,- tunglinn commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1190514282) at 2022-07-20 09:45 AM PDT -tunglinn,2022-07-20T16:47:34Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1190515971) at 2022-07-20 09:47 AM PDT -tunglinn,2022-07-24T17:27:21Z,- tunglinn opened pull request: [3424](https://github.com/hackforla/website/pull/3424) at 2022-07-24 10:27 AM PDT -tunglinn,2022-07-24T17:51:44Z,- tunglinn pull request closed w/o merging: [3424](https://github.com/hackforla/website/pull/3424#event-7051702367) at 2022-07-24 10:51 AM PDT -tunglinn,2022-07-25T18:52:53Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1194479655) at 2022-07-25 11:52 AM PDT -tunglinn,2022-07-25T20:25:21Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1194585152) at 2022-07-25 01:25 PM PDT -tunglinn,2022-07-25T21:55:07Z,- tunglinn commented on issue: [3121](https://github.com/hackforla/website/issues/3121#issuecomment-1194679764) at 2022-07-25 02:55 PM PDT -tunglinn,2022-07-25T21:55:08Z,- tunglinn closed issue as completed: [3121](https://github.com/hackforla/website/issues/3121#event-7060011196) at 2022-07-25 02:55 PM PDT -tunglinn,2022-07-26T19:11:43Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1195877558) at 2022-07-26 12:11 PM PDT -tunglinn,2022-07-27T01:13:01Z,- tunglinn opened pull request: [3431](https://github.com/hackforla/website/pull/3431) at 2022-07-26 06:13 PM PDT -tunglinn,2022-07-27T01:15:18Z,- tunglinn commented on pull request: [3430](https://github.com/hackforla/website/pull/3430#issuecomment-1196161047) at 2022-07-26 06:15 PM PDT -tunglinn,2022-07-27T02:45:02Z,- tunglinn submitted pull request review: [3430](https://github.com/hackforla/website/pull/3430#pullrequestreview-1051821305) at 2022-07-26 07:45 PM PDT -tunglinn,2022-07-31T17:22:10Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1200465799) at 2022-07-31 10:22 AM PDT -tunglinn,2022-08-02T21:18:32Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1203223763) at 2022-08-02 02:18 PM PDT -tunglinn,2022-08-04T20:29:02Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1205735258) at 2022-08-04 01:29 PM PDT -tunglinn,2022-08-09T20:03:41Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1209819496) at 2022-08-09 01:03 PM PDT -tunglinn,2022-08-09T20:05:33Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1209821129) at 2022-08-09 01:05 PM PDT -tunglinn,2022-08-15T22:07:03Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1215912271) at 2022-08-15 03:07 PM PDT -tunglinn,2022-08-15T22:16:37Z,- tunglinn commented on issue: [3357](https://github.com/hackforla/website/issues/3357#issuecomment-1215920677) at 2022-08-15 03:16 PM PDT -tunglinn,2022-08-16T15:25:42Z,- tunglinn commented on pull request: [3470](https://github.com/hackforla/website/pull/3470#issuecomment-1216791809) at 2022-08-16 08:25 AM PDT -tunglinn,2022-08-16T15:34:52Z,- tunglinn submitted pull request review: [3470](https://github.com/hackforla/website/pull/3470#pullrequestreview-1074347117) at 2022-08-16 08:34 AM PDT -tunglinn,2022-08-19T03:33:50Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1220209679) at 2022-08-18 08:33 PM PDT -tunglinn,2022-08-23T21:36:47Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1224912030) at 2022-08-23 02:36 PM PDT -tunglinn,2022-08-30T22:16:53Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1232225068) at 2022-08-30 03:16 PM PDT -tunglinn,2022-09-06T04:35:57Z,- tunglinn commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1237649513) at 2022-09-05 09:35 PM PDT -tunglinn,2022-09-09T00:51:23Z,- tunglinn pull request merged: [3431](https://github.com/hackforla/website/pull/3431#event-7352391934) at 2022-09-08 05:51 PM PDT -tunglinn,2022-09-20T17:06:20Z,- tunglinn commented on pull request: [3566](https://github.com/hackforla/website/pull/3566#issuecomment-1252648537) at 2022-09-20 10:06 AM PDT -tunglinn,2022-09-20T17:11:29Z,- tunglinn submitted pull request review: [3566](https://github.com/hackforla/website/pull/3566#pullrequestreview-1114200736) at 2022-09-20 10:11 AM PDT -tunglinn,2022-09-22T20:05:49Z,- tunglinn assigned to issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-917251499) at 2022-09-22 01:05 PM PDT -tunglinn,2022-09-22T20:08:18Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1255495762) at 2022-09-22 01:08 PM PDT -tunglinn,2022-09-26T20:58:08Z,- tunglinn commented on pull request: [3582](https://github.com/hackforla/website/pull/3582#issuecomment-1258624606) at 2022-09-26 01:58 PM PDT -tunglinn,2022-09-26T21:28:31Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1258653679) at 2022-09-26 02:28 PM PDT -tunglinn,2022-09-27T18:59:07Z,- tunglinn submitted pull request review: [3582](https://github.com/hackforla/website/pull/3582#pullrequestreview-1122531780) at 2022-09-27 11:59 AM PDT -tunglinn,2022-09-27T19:00:16Z,- tunglinn commented on pull request: [3585](https://github.com/hackforla/website/pull/3585#issuecomment-1259926535) at 2022-09-27 12:00 PM PDT -tunglinn,2022-09-27T19:03:53Z,- tunglinn submitted pull request review: [3585](https://github.com/hackforla/website/pull/3585#pullrequestreview-1122537627) at 2022-09-27 12:03 PM PDT -tunglinn,2022-10-02T05:05:08Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1264552892) at 2022-10-01 10:05 PM PDT -tunglinn,2022-10-05T03:17:17Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1267868258) at 2022-10-04 08:17 PM PDT -tunglinn,2022-10-14T02:39:31Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1278395529) at 2022-10-13 07:39 PM PDT -tunglinn,2022-10-16T18:17:21Z,- tunglinn unassigned from issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1280024229) at 2022-10-16 11:17 AM PDT -tunglinn,2022-10-24T21:11:43Z,- tunglinn assigned to issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1244867628) at 2022-10-24 02:11 PM PDT -tunglinn,2022-10-24T21:15:13Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1289626227) at 2022-10-24 02:15 PM PDT -tunglinn,2022-10-27T00:53:45Z,- tunglinn commented on issue: [1543](https://github.com/hackforla/website/issues/1543#issuecomment-1292825432) at 2022-10-26 05:53 PM PDT -tunglinn,2022-10-27T02:31:47Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1292887444) at 2022-10-26 07:31 PM PDT -tunglinn,2022-10-28T18:09:32Z,- tunglinn commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295307209) at 2022-10-28 11:09 AM PDT -tunglinn,2022-10-28T18:12:06Z,- tunglinn commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295309650) at 2022-10-28 11:12 AM PDT -tunglinn,2022-10-28T18:58:15Z,- tunglinn commented on pull request: [3667](https://github.com/hackforla/website/pull/3667#issuecomment-1295348510) at 2022-10-28 11:58 AM PDT -tunglinn,2022-10-30T00:31:02Z,- tunglinn submitted pull request review: [3674](https://github.com/hackforla/website/pull/3674#pullrequestreview-1161050906) at 2022-10-29 05:31 PM PDT -tunglinn,2022-11-05T03:46:59Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1304393475) at 2022-11-04 07:46 PM PST -tunglinn,2022-11-09T01:16:47Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1308061896) at 2022-11-08 05:16 PM PST -tunglinn,2022-11-17T06:38:51Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1318159109) at 2022-11-16 10:38 PM PST -tunglinn,2022-11-17T07:00:08Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1318177462) at 2022-11-16 11:00 PM PST -tunglinn,2022-11-19T05:42:34Z,- tunglinn submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1187024160) at 2022-11-18 09:42 PM PST -tunglinn,2022-11-22T04:22:56Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1323030841) at 2022-11-21 08:22 PM PST -tunglinn,2022-11-28T21:13:01Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1329770391) at 2022-11-28 01:13 PM PST -tunglinn,2022-11-28T23:29:41Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1329882680) at 2022-11-28 03:29 PM PST -tunglinn,2022-12-01T19:34:58Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1334264650) at 2022-12-01 11:34 AM PST -tunglinn,2022-12-08T03:21:26Z,- tunglinn commented on pull request: [3725](https://github.com/hackforla/website/pull/3725#issuecomment-1341933361) at 2022-12-07 07:21 PM PST -tunglinn,2022-12-08T20:55:22Z,- tunglinn submitted pull request review: [3725](https://github.com/hackforla/website/pull/3725#pullrequestreview-1210766142) at 2022-12-08 12:55 PM PST -tunglinn,2022-12-08T21:07:13Z,- tunglinn commented on issue: [2634](https://github.com/hackforla/website/issues/2634#issuecomment-1343353243) at 2022-12-08 01:07 PM PST -tunglinn,2023-03-01T07:45:12Z,- tunglinn opened pull request: [4078](https://github.com/hackforla/website/pull/4078) at 2023-02-28 11:45 PM PST -tunglinn,2023-03-05T02:28:29Z,- tunglinn pull request merged: [4078](https://github.com/hackforla/website/pull/4078#event-8667204608) at 2023-03-04 06:28 PM PST -TusharP05,2023-09-20T18:08:15Z,- TusharP05 commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1728211476) at 2023-09-20 11:08 AM PDT -TusharP05,2023-09-20T18:39:30Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1728250650) at 2023-09-20 11:39 AM PDT -TusharP05,2023-09-20T19:25:53Z,- TusharP05 opened pull request: [5562](https://github.com/hackforla/website/pull/5562) at 2023-09-20 12:25 PM PDT -TusharP05,2023-09-23T14:56:34Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732335980) at 2023-09-23 07:56 AM PDT -TusharP05,2023-09-23T21:05:40Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1732409132) at 2023-09-23 02:05 PM PDT -TusharP05,2023-09-24T16:49:16Z,- TusharP05 pull request closed w/o merging: [5562](https://github.com/hackforla/website/pull/5562#event-10455587197) at 2023-09-24 09:49 AM PDT -TusharP05,2023-09-27T12:54:49Z,- TusharP05 commented on issue: [5508](https://github.com/hackforla/website/issues/5508#issuecomment-1737342606) at 2023-09-27 05:54 AM PDT -tylerthome,2020-05-18T21:10:02Z,- tylerthome commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-630436795) at 2020-05-18 02:10 PM PDT -tylerthome,2020-05-18T21:10:08Z,- tylerthome reopened issue: [254](https://github.com/hackforla/website/issues/254#event-3349132273) at 2020-05-18 02:10 PM PDT -tylerthome,2020-05-31T18:05:30Z,- tylerthome assigned to issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633262873) at 2020-05-31 11:05 AM PDT -tylerthome,2020-06-01T03:02:21Z,- tylerthome assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-31 08:02 PM PDT -tylerthome,2020-06-07T08:48:50Z,- tylerthome opened pull request: [566](https://github.com/hackforla/website/pull/566) at 2020-06-07 01:48 AM PDT -tylerthome,2020-06-14T17:03:36Z,- tylerthome commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-643794029) at 2020-06-14 10:03 AM PDT -tylerthome,2020-06-26T07:00:29Z,- tylerthome commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-650012728) at 2020-06-26 12:00 AM PDT -tylerthome,2020-07-22T14:38:17Z,- tylerthome pull request closed w/o merging: [566](https://github.com/hackforla/website/pull/566#event-3576098033) at 2020-07-22 07:38 AM PDT -typingtrex,5872,SKILLS ISSUE -typingtrex,2023-11-07T04:37:17Z,- typingtrex opened issue: [5872](https://github.com/hackforla/website/issues/5872) at 2023-11-06 08:37 PM PST -typingtrex,2023-11-07T04:37:17Z,- typingtrex assigned to issue: [5872](https://github.com/hackforla/website/issues/5872) at 2023-11-06 08:37 PM PST -typingtrex,2023-11-07T13:01:18Z,- typingtrex commented on issue: [5872](https://github.com/hackforla/website/issues/5872#issuecomment-1798458871) at 2023-11-07 05:01 AM PST -Unity7,3510,SKILLS ISSUE -Unity7,2022-08-31T03:06:29Z,- Unity7 opened issue: [3510](https://github.com/hackforla/website/issues/3510) at 2022-08-30 08:06 PM PDT -Unity7,2022-09-13T18:54:56Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1245832295) at 2022-09-13 11:54 AM PDT -Unity7,2022-09-14T02:48:37Z,- Unity7 assigned to issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1245832295) at 2022-09-13 07:48 PM PDT -Unity7,2022-09-14T03:03:40Z,- Unity7 assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1200459192) at 2022-09-13 08:03 PM PDT -Unity7,2022-09-14T03:04:19Z,- Unity7 unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1246172192) at 2022-09-13 08:04 PM PDT -Unity7,2022-09-14T03:07:40Z,- Unity7 assigned to issue: [2828](https://github.com/hackforla/website/issues/2828#issuecomment-1046972078) at 2022-09-13 08:07 PM PDT -Unity7,2022-09-14T03:08:32Z,- Unity7 commented on issue: [2828](https://github.com/hackforla/website/issues/2828#issuecomment-1246174733) at 2022-09-13 08:08 PM PDT -Unity7,2022-09-16T01:45:36Z,- Unity7 opened pull request: [3557](https://github.com/hackforla/website/pull/3557) at 2022-09-15 06:45 PM PDT -Unity7,2022-09-16T01:56:35Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1248825564) at 2022-09-15 06:56 PM PDT -Unity7,2022-09-16T01:57:59Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1248826256) at 2022-09-15 06:57 PM PDT -Unity7,2022-09-16T20:11:21Z,- Unity7 pull request merged: [3557](https://github.com/hackforla/website/pull/3557#event-7405853110) at 2022-09-16 01:11 PM PDT -Unity7,2022-09-17T01:24:41Z,- Unity7 assigned to issue: [3100](https://github.com/hackforla/website/issues/3100#issuecomment-1116836777) at 2022-09-16 06:24 PM PDT -Unity7,2022-09-17T01:25:12Z,- Unity7 commented on issue: [3100](https://github.com/hackforla/website/issues/3100#issuecomment-1249969750) at 2022-09-16 06:25 PM PDT -Unity7,2022-09-17T01:44:12Z,- Unity7 opened pull request: [3561](https://github.com/hackforla/website/pull/3561) at 2022-09-16 06:44 PM PDT -Unity7,2022-09-21T20:24:20Z,- Unity7 commented on pull request: [3561](https://github.com/hackforla/website/pull/3561#issuecomment-1254190773) at 2022-09-21 01:24 PM PDT -Unity7,2022-09-21T21:59:04Z,- Unity7 pull request merged: [3561](https://github.com/hackforla/website/pull/3561#event-7434583990) at 2022-09-21 02:59 PM PDT -Unity7,2022-09-22T02:12:48Z,- Unity7 assigned to issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1124444941) at 2022-09-21 07:12 PM PDT -Unity7,2022-09-22T02:13:18Z,- Unity7 commented on issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1254425279) at 2022-09-21 07:13 PM PDT -Unity7,2022-09-23T21:26:47Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1256693436) at 2022-09-23 02:26 PM PDT -Unity7,2022-09-23T21:28:18Z,- Unity7 commented on issue: [3129](https://github.com/hackforla/website/issues/3129#issuecomment-1256694522) at 2022-09-23 02:28 PM PDT -Unity7,2022-09-24T00:15:15Z,- Unity7 opened pull request: [3579](https://github.com/hackforla/website/pull/3579) at 2022-09-23 05:15 PM PDT -Unity7,2022-09-24T00:33:28Z,- Unity7 submitted pull request review: [3577](https://github.com/hackforla/website/pull/3577#pullrequestreview-1119126661) at 2022-09-23 05:33 PM PDT -Unity7,2022-09-24T00:34:04Z,- Unity7 submitted pull request review: [3578](https://github.com/hackforla/website/pull/3578#pullrequestreview-1119126759) at 2022-09-23 05:34 PM PDT -Unity7,2022-09-25T15:09:28Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1257215171) at 2022-09-25 08:09 AM PDT -Unity7,2022-09-26T15:05:51Z,- Unity7 pull request merged: [3579](https://github.com/hackforla/website/pull/3579#event-7459841963) at 2022-09-26 08:05 AM PDT -Unity7,2022-09-29T20:00:01Z,- Unity7 assigned to issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1001077082) at 2022-09-29 01:00 PM PDT -Unity7,2022-09-29T20:00:44Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1262750234) at 2022-09-29 01:00 PM PDT -Unity7,2022-09-29T20:01:46Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1262752769) at 2022-09-29 01:01 PM PDT -Unity7,2022-10-01T22:48:33Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1264499594) at 2022-10-01 03:48 PM PDT -Unity7,2022-10-04T22:46:30Z,- Unity7 commented on pull request: [3599](https://github.com/hackforla/website/pull/3599#issuecomment-1267685409) at 2022-10-04 03:46 PM PDT -Unity7,2022-10-05T23:01:51Z,- Unity7 submitted pull request review: [3599](https://github.com/hackforla/website/pull/3599#pullrequestreview-1132137094) at 2022-10-05 04:01 PM PDT -Unity7,2022-10-09T13:50:56Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1272547153) at 2022-10-09 06:50 AM PDT -Unity7,2022-10-16T12:47:47Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1279963115) at 2022-10-16 05:47 AM PDT -Unity7,2022-10-16T12:50:16Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1279963466) at 2022-10-16 05:50 AM PDT -Unity7,2022-10-20T23:23:14Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1286267378) at 2022-10-20 04:23 PM PDT -Unity7,2022-10-22T18:54:25Z,- Unity7 opened pull request: [3649](https://github.com/hackforla/website/pull/3649) at 2022-10-22 11:54 AM PDT -Unity7,2022-10-24T01:02:53Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1288265340) at 2022-10-23 06:02 PM PDT -Unity7,2022-10-24T16:21:07Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1289280525) at 2022-10-24 09:21 AM PDT -Unity7,2022-10-25T13:37:25Z,- Unity7 commented on pull request: [3658](https://github.com/hackforla/website/pull/3658#issuecomment-1290574706) at 2022-10-25 06:37 AM PDT -Unity7,2022-10-25T13:38:04Z,- Unity7 commented on pull request: [3657](https://github.com/hackforla/website/pull/3657#issuecomment-1290576351) at 2022-10-25 06:38 AM PDT -Unity7,2022-10-26T01:20:14Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1291333511) at 2022-10-25 06:20 PM PDT -Unity7,2022-10-28T15:50:42Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1295161492) at 2022-10-28 08:50 AM PDT -Unity7,2022-11-04T15:06:09Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1303704845) at 2022-11-04 08:06 AM PDT -Unity7,2022-11-23T01:15:58Z,- Unity7 commented on issue: [2626](https://github.com/hackforla/website/issues/2626#issuecomment-1324427866) at 2022-11-22 05:15 PM PST -Unity7,2022-11-23T01:18:09Z,- Unity7 commented on issue: [3510](https://github.com/hackforla/website/issues/3510#issuecomment-1324429242) at 2022-11-22 05:18 PM PST -Unity7,2022-11-23T01:18:15Z,- Unity7 closed issue as completed: [3510](https://github.com/hackforla/website/issues/3510#event-7872802018) at 2022-11-22 05:18 PM PST -Unity7,2022-11-23T01:22:43Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1324432119) at 2022-11-22 05:22 PM PST -Unity7,2022-11-30T03:54:51Z,- Unity7 commented on pull request: [3649](https://github.com/hackforla/website/pull/3649#issuecomment-1331611582) at 2022-11-29 07:54 PM PST -Unity7,2023-01-24T17:34:35Z,- Unity7 pull request merged: [3649](https://github.com/hackforla/website/pull/3649#event-8346687821) at 2023-01-24 09:34 AM PST -upendrasahni,2023-02-14T07:56:32Z,- upendrasahni commented on issue: [3973](https://github.com/hackforla/website/issues/3973#issuecomment-1429283900) at 2023-02-13 11:56 PM PST -urvishp13,6611,SKILLS ISSUE -urvishp13,2024-04-09T03:45:04Z,- urvishp13 opened issue: [6611](https://github.com/hackforla/website/issues/6611) at 2024-04-08 08:45 PM PDT -urvishp13,2024-04-09T03:45:18Z,- urvishp13 assigned to issue: [6611](https://github.com/hackforla/website/issues/6611) at 2024-04-08 08:45 PM PDT -urvishp13,2024-04-09T17:18:04Z,- urvishp13 assigned to issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2016954205) at 2024-04-09 10:18 AM PDT -urvishp13,2024-04-09T17:22:26Z,- urvishp13 commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2045733309) at 2024-04-09 10:22 AM PDT -urvishp13,2024-04-09T17:23:12Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2045734438) at 2024-04-09 10:23 AM PDT -urvishp13,2024-04-10T17:24:37Z,- urvishp13 commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2048098754) at 2024-04-10 10:24 AM PDT -urvishp13,2024-04-10T21:19:50Z,- urvishp13 commented on issue: [6515](https://github.com/hackforla/website/issues/6515#issuecomment-2048453837) at 2024-04-10 02:19 PM PDT -urvishp13,2024-04-11T15:43:56Z,- urvishp13 opened pull request: [6624](https://github.com/hackforla/website/pull/6624) at 2024-04-11 08:43 AM PDT -urvishp13,2024-04-12T05:14:32Z,- urvishp13 pull request merged: [6624](https://github.com/hackforla/website/pull/6624#event-12444525658) at 2024-04-11 10:14 PM PDT -urvishp13,2024-04-12T16:13:22Z,- urvishp13 assigned to issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-1986776645) at 2024-04-12 09:13 AM PDT -urvishp13,2024-04-12T16:17:49Z,- urvishp13 unassigned from issue: [3526](https://github.com/hackforla/website/issues/3526#issuecomment-2052061806) at 2024-04-12 09:17 AM PDT -urvishp13,2024-04-12T16:20:54Z,- urvishp13 assigned to issue: [6178](https://github.com/hackforla/website/issues/6178) at 2024-04-12 09:20 AM PDT -urvishp13,2024-04-12T16:26:04Z,- urvishp13 commented on issue: [6178](https://github.com/hackforla/website/issues/6178#issuecomment-2052081595) at 2024-04-12 09:26 AM PDT -urvishp13,2024-04-12T18:05:36Z,- urvishp13 opened pull request: [6630](https://github.com/hackforla/website/pull/6630) at 2024-04-12 11:05 AM PDT -urvishp13,2024-04-14T04:55:34Z,- urvishp13 pull request merged: [6630](https://github.com/hackforla/website/pull/6630#event-12459475704) at 2024-04-13 09:55 PM PDT -urvishp13,2024-04-15T18:25:16Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2057547427) at 2024-04-15 11:25 AM PDT -urvishp13,2024-04-16T14:28:52Z,- urvishp13 assigned to issue: [6493](https://github.com/hackforla/website/issues/6493) at 2024-04-16 07:28 AM PDT -urvishp13,2024-04-16T14:32:25Z,- urvishp13 commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2059242878) at 2024-04-16 07:32 AM PDT -urvishp13,2024-04-16T17:42:31Z,- urvishp13 commented on issue: [6493](https://github.com/hackforla/website/issues/6493#issuecomment-2059627703) at 2024-04-16 10:42 AM PDT -urvishp13,2024-04-18T01:48:02Z,- urvishp13 commented on pull request: [6652](https://github.com/hackforla/website/pull/6652#issuecomment-2062846593) at 2024-04-17 06:48 PM PDT -urvishp13,2024-04-18T15:27:58Z,- urvishp13 submitted pull request review: [6652](https://github.com/hackforla/website/pull/6652#pullrequestreview-2009233360) at 2024-04-18 08:27 AM PDT -urvishp13,2024-04-22T15:58:10Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2070011039) at 2024-04-22 08:58 AM PDT -urvishp13,2024-04-23T15:47:50Z,- urvishp13 assigned to issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2063457193) at 2024-04-23 08:47 AM PDT -urvishp13,2024-04-23T15:50:57Z,- urvishp13 commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2072795371) at 2024-04-23 08:50 AM PDT -urvishp13,2024-04-23T16:54:08Z,- urvishp13 commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2072920611) at 2024-04-23 09:54 AM PDT -urvishp13,2024-04-24T02:44:14Z,- urvishp13 commented on issue: [6680](https://github.com/hackforla/website/issues/6680#issuecomment-2073897579) at 2024-04-23 07:44 PM PDT -urvishp13,2024-04-25T16:54:51Z,- urvishp13 assigned to issue: [6679](https://github.com/hackforla/website/issues/6679#issuecomment-2063364767) at 2024-04-25 09:54 AM PDT -urvishp13,2024-04-25T17:11:38Z,- urvishp13 commented on issue: [6679](https://github.com/hackforla/website/issues/6679#issuecomment-2077771789) at 2024-04-25 10:11 AM PDT -urvishp13,2024-04-25T17:28:28Z,- urvishp13 opened issue: [6750](https://github.com/hackforla/website/issues/6750) at 2024-04-25 10:28 AM PDT -urvishp13,2024-04-25T17:43:32Z,- urvishp13 opened issue: [6751](https://github.com/hackforla/website/issues/6751) at 2024-04-25 10:43 AM PDT -urvishp13,2024-04-25T17:48:57Z,- urvishp13 opened issue: [6752](https://github.com/hackforla/website/issues/6752) at 2024-04-25 10:48 AM PDT -urvishp13,2024-04-25T17:53:01Z,- urvishp13 opened issue: [6753](https://github.com/hackforla/website/issues/6753) at 2024-04-25 10:53 AM PDT -urvishp13,2024-04-25T17:59:46Z,- urvishp13 opened issue: [6754](https://github.com/hackforla/website/issues/6754) at 2024-04-25 10:59 AM PDT -urvishp13,2024-04-25T18:04:17Z,- urvishp13 opened issue: [6755](https://github.com/hackforla/website/issues/6755) at 2024-04-25 11:04 AM PDT -urvishp13,2024-04-25T18:08:00Z,- urvishp13 opened issue: [6756](https://github.com/hackforla/website/issues/6756) at 2024-04-25 11:08 AM PDT -urvishp13,2024-04-25T18:09:27Z,- urvishp13 opened issue: [6757](https://github.com/hackforla/website/issues/6757) at 2024-04-25 11:09 AM PDT -urvishp13,2024-04-25T18:11:02Z,- urvishp13 opened issue: [6758](https://github.com/hackforla/website/issues/6758) at 2024-04-25 11:11 AM PDT -urvishp13,2024-04-30T16:28:27Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2085879756) at 2024-04-30 09:28 AM PDT -urvishp13,2024-04-30T16:30:37Z,- urvishp13 assigned to issue: [6783](https://github.com/hackforla/website/issues/6783) at 2024-04-30 09:30 AM PDT -urvishp13,2024-04-30T16:33:51Z,- urvishp13 commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2085901063) at 2024-04-30 09:33 AM PDT -urvishp13,2024-04-30T17:40:33Z,- urvishp13 commented on pull request: [6788](https://github.com/hackforla/website/pull/6788#issuecomment-2086198950) at 2024-04-30 10:40 AM PDT -urvishp13,2024-04-30T17:43:10Z,- urvishp13 commented on pull request: [6782](https://github.com/hackforla/website/pull/6782#issuecomment-2086212543) at 2024-04-30 10:43 AM PDT -urvishp13,2024-05-02T18:17:16Z,- urvishp13 commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2091211206) at 2024-05-02 11:17 AM PDT -urvishp13,2024-05-07T16:49:46Z,- urvishp13 commented on issue: [6611](https://github.com/hackforla/website/issues/6611#issuecomment-2098891912) at 2024-05-07 09:49 AM PDT -urvishp13,2024-05-07T16:52:59Z,- urvishp13 commented on pull request: [6814](https://github.com/hackforla/website/pull/6814#issuecomment-2098897260) at 2024-05-07 09:52 AM PDT -urvishp13,2024-05-07T17:47:21Z,- urvishp13 submitted pull request review: [6814](https://github.com/hackforla/website/pull/6814#pullrequestreview-2043818830) at 2024-05-07 10:47 AM PDT -urvishp13,2024-05-14T16:42:13Z,- urvishp13 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110677961) at 2024-05-14 09:42 AM PDT -urvishp13,2024-05-14T17:43:31Z,- urvishp13 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110787831) at 2024-05-14 10:43 AM PDT -urvishp13,2024-05-14T18:10:32Z,- urvishp13 commented on pull request: [6852](https://github.com/hackforla/website/pull/6852#issuecomment-2110830056) at 2024-05-14 11:10 AM PDT -urvishp13,2024-05-14T18:27:26Z,- urvishp13 submitted pull request review: [6852](https://github.com/hackforla/website/pull/6852#pullrequestreview-2056121994) at 2024-05-14 11:27 AM PDT -urvishp13,2024-05-14T18:35:32Z,- urvishp13 closed issue as completed: [6611](https://github.com/hackforla/website/issues/6611#event-12806482927) at 2024-05-14 11:35 AM PDT -urvishp13,2024-05-14T19:51:41Z,- urvishp13 commented on issue: [6783](https://github.com/hackforla/website/issues/6783#issuecomment-2111028496) at 2024-05-14 12:51 PM PDT -urvishp13,2024-05-17T02:15:57Z,- urvishp13 assigned to issue: [6615](https://github.com/hackforla/website/issues/6615) at 2024-05-16 07:15 PM PDT -urvishp13,2024-05-17T02:55:10Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2116538203) at 2024-05-16 07:55 PM PDT -urvishp13,2024-05-17T19:13:00Z,- urvishp13 opened issue: [6857](https://github.com/hackforla/website/issues/6857) at 2024-05-17 12:13 PM PDT -urvishp13,2024-05-17T19:20:20Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118238003) at 2024-05-17 12:20 PM PDT -urvishp13,2024-05-17T19:27:59Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118246669) at 2024-05-17 12:27 PM PDT -urvishp13,2024-05-17T20:27:36Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118338950) at 2024-05-17 01:27 PM PDT -urvishp13,2024-05-17T20:40:11Z,- urvishp13 commented on issue: [6615](https://github.com/hackforla/website/issues/6615#issuecomment-2118355487) at 2024-05-17 01:40 PM PDT -usaboo,2748,SKILLS ISSUE -usaboo,2022-02-08T03:47:45Z,- usaboo opened issue: [2748](https://github.com/hackforla/website/issues/2748) at 2022-02-07 07:47 PM PST -usaboo,2022-02-11T21:09:15Z,- usaboo assigned to issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1032972780) at 2022-02-11 01:09 PM PST -usaboo,2022-02-20T17:21:40Z,- usaboo assigned to issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1046093336) at 2022-02-20 09:21 AM PST -usaboo,2022-02-20T17:34:33Z,- usaboo assigned to issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-958012986) at 2022-02-20 09:34 AM PST -usaboo,2022-02-20T17:35:12Z,- usaboo unassigned from issue: [2426](https://github.com/hackforla/website/issues/2426#issuecomment-958012986) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:35:16Z,- usaboo closed issue by PR 2841: [2426](https://github.com/hackforla/website/issues/2426#event-6107553795) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:35:18Z,- usaboo reopened issue: [2426](https://github.com/hackforla/website/issues/2426#event-6107553795) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:35:47Z,- usaboo assigned to issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1043672010) at 2022-02-20 09:35 AM PST -usaboo,2022-02-20T17:36:05Z,- usaboo unassigned from issue: [2799](https://github.com/hackforla/website/issues/2799#issuecomment-1046093336) at 2022-02-20 09:36 AM PST -usaboo,2022-02-20T17:40:49Z,- usaboo commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1046287015) at 2022-02-20 09:40 AM PST -usaboo,2022-02-20T20:00:38Z,- usaboo opened issue: [2807](https://github.com/hackforla/website/issues/2807) at 2022-02-20 12:00 PM PST -usaboo,2022-02-20T23:35:14Z,- usaboo commented on issue: [2807](https://github.com/hackforla/website/issues/2807#issuecomment-1046346904) at 2022-02-20 03:35 PM PST -usaboo,2022-02-21T01:02:35Z,- usaboo opened issue: [2821](https://github.com/hackforla/website/issues/2821) at 2022-02-20 05:02 PM PST -usaboo,2022-02-21T01:07:23Z,- usaboo opened issue: [2822](https://github.com/hackforla/website/issues/2822) at 2022-02-20 05:07 PM PST -usaboo,2022-02-21T01:12:18Z,- usaboo opened issue: [2823](https://github.com/hackforla/website/issues/2823) at 2022-02-20 05:12 PM PST -usaboo,2022-02-21T01:20:10Z,- usaboo opened issue: [2824](https://github.com/hackforla/website/issues/2824) at 2022-02-20 05:20 PM PST -usaboo,2022-02-21T01:23:54Z,- usaboo opened issue: [2825](https://github.com/hackforla/website/issues/2825) at 2022-02-20 05:23 PM PST -usaboo,2022-02-21T14:55:44Z,- usaboo opened issue: [2826](https://github.com/hackforla/website/issues/2826) at 2022-02-21 06:55 AM PST -usaboo,2022-02-21T15:00:05Z,- usaboo opened issue: [2827](https://github.com/hackforla/website/issues/2827) at 2022-02-21 07:00 AM PST -usaboo,2022-02-21T15:05:10Z,- usaboo opened issue: [2828](https://github.com/hackforla/website/issues/2828) at 2022-02-21 07:05 AM PST -usaboo,2022-02-21T15:08:36Z,- usaboo opened issue: [2829](https://github.com/hackforla/website/issues/2829) at 2022-02-21 07:08 AM PST -usaboo,2022-02-23T03:39:10Z,- usaboo commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1048422301) at 2022-02-22 07:39 PM PST -usaboo,2022-02-23T22:01:40Z,- usaboo commented on pull request: [2841](https://github.com/hackforla/website/pull/2841#issuecomment-1049256804) at 2022-02-23 02:01 PM PST -usaboo,2022-02-24T21:07:04Z,- usaboo opened pull request: [2884](https://github.com/hackforla/website/pull/2884) at 2022-02-24 01:07 PM PST -usaboo,2022-02-24T21:09:41Z,- usaboo commented on issue: [2659](https://github.com/hackforla/website/issues/2659#issuecomment-1050267015) at 2022-02-24 01:09 PM PST -usaboo,2022-02-26T19:22:29Z,- usaboo pull request closed w/o merging: [2884](https://github.com/hackforla/website/pull/2884#event-6146639532) at 2022-02-26 11:22 AM PST -usaboo,2022-02-26T21:50:15Z,- usaboo commented on pull request: [2884](https://github.com/hackforla/website/pull/2884#issuecomment-1052668061) at 2022-02-26 01:50 PM PST -usaboo,2022-02-26T22:14:25Z,- usaboo opened pull request: [2893](https://github.com/hackforla/website/pull/2893) at 2022-02-26 02:14 PM PST -usaboo,2022-02-26T22:29:08Z,- usaboo assigned to issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-927332428) at 2022-02-26 02:29 PM PST -usaboo,2022-02-26T22:31:10Z,- usaboo commented on issue: [2283](https://github.com/hackforla/website/issues/2283#issuecomment-1052717268) at 2022-02-26 02:31 PM PST -usaboo,2022-02-27T07:49:28Z,- usaboo pull request merged: [2893](https://github.com/hackforla/website/pull/2893#event-6149415211) at 2022-02-26 11:49 PM PST -usaboo,2022-02-27T17:08:19Z,- usaboo opened pull request: [2899](https://github.com/hackforla/website/pull/2899) at 2022-02-27 09:08 AM PST -usaboo,2022-02-27T18:26:47Z,- usaboo commented on pull request: [2882](https://github.com/hackforla/website/pull/2882#issuecomment-1053638894) at 2022-02-27 10:26 AM PST -usaboo,2022-03-01T03:51:55Z,- usaboo pull request merged: [2899](https://github.com/hackforla/website/pull/2899#event-6159086078) at 2022-02-28 07:51 PM PST -usaboo,2022-03-01T18:21:55Z,- usaboo submitted pull request review: [2882](https://github.com/hackforla/website/pull/2882#pullrequestreview-896669044) at 2022-03-01 10:21 AM PST -usaboo,2022-03-01T18:31:43Z,- usaboo assigned to issue: [2155](https://github.com/hackforla/website/issues/2155) at 2022-03-01 10:31 AM PST -usaboo,2022-03-01T18:33:03Z,- usaboo commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1055737024) at 2022-03-01 10:33 AM PST -usaboo,2022-03-07T19:57:06Z,- usaboo commented on issue: [2155](https://github.com/hackforla/website/issues/2155#issuecomment-1061076762) at 2022-03-07 11:57 AM PST -usaboo,2022-03-11T04:33:55Z,- usaboo opened pull request: [2962](https://github.com/hackforla/website/pull/2962) at 2022-03-10 08:33 PM PST -usaboo,2022-03-11T19:58:46Z,- usaboo submitted pull request review: [2963](https://github.com/hackforla/website/pull/2963#pullrequestreview-907686475) at 2022-03-11 11:58 AM PST -usaboo,2022-03-11T21:13:46Z,- usaboo commented on pull request: [2963](https://github.com/hackforla/website/pull/2963#issuecomment-1065532852) at 2022-03-11 01:13 PM PST -usaboo,2022-03-11T21:40:32Z,- usaboo submitted pull request review: [2943](https://github.com/hackforla/website/pull/2943#pullrequestreview-907801321) at 2022-03-11 01:40 PM PST -usaboo,2022-03-15T15:18:07Z,- usaboo commented on pull request: [2982](https://github.com/hackforla/website/pull/2982#issuecomment-1068110453) at 2022-03-15 08:18 AM PDT -usaboo,2022-03-16T02:39:22Z,- usaboo commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1068672233) at 2022-03-15 07:39 PM PDT -usaboo,2022-03-21T00:42:03Z,- usaboo submitted pull request review: [2984](https://github.com/hackforla/website/pull/2984#pullrequestreview-915176382) at 2022-03-20 05:42 PM PDT -usaboo,2022-03-21T01:01:37Z,- usaboo closed issue as completed: [2748](https://github.com/hackforla/website/issues/2748#event-6272134956) at 2022-03-20 06:01 PM PDT -usaboo,2022-03-21T01:02:06Z,- usaboo commented on issue: [2748](https://github.com/hackforla/website/issues/2748#issuecomment-1073394873) at 2022-03-20 06:02 PM PDT -usaboo,2022-03-21T01:14:19Z,- usaboo submitted pull request review: [2982](https://github.com/hackforla/website/pull/2982#pullrequestreview-915182501) at 2022-03-20 06:14 PM PDT -usaboo,2022-03-27T17:24:00Z,- usaboo commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1079978729) at 2022-03-27 10:24 AM PDT -usaboo,2022-03-28T00:29:45Z,- usaboo submitted pull request review: [3014](https://github.com/hackforla/website/pull/3014#pullrequestreview-922521863) at 2022-03-27 05:29 PM PDT -usaboo,2022-03-31T14:33:47Z,- usaboo commented on pull request: [3014](https://github.com/hackforla/website/pull/3014#issuecomment-1084669617) at 2022-03-31 07:33 AM PDT -usaboo,2022-04-06T15:31:22Z,- usaboo commented on pull request: [2962](https://github.com/hackforla/website/pull/2962#issuecomment-1090407751) at 2022-04-06 08:31 AM PDT -usaboo,2022-05-07T04:30:43Z,- usaboo commented on pull request: [2984](https://github.com/hackforla/website/pull/2984#issuecomment-1120131715) at 2022-05-06 09:30 PM PDT -usaboo,2022-05-11T02:30:04Z,- usaboo commented on pull request: [3116](https://github.com/hackforla/website/pull/3116#issuecomment-1123113058) at 2022-05-10 07:30 PM PDT -usaboo,2022-06-15T04:44:52Z,- usaboo commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1155981584) at 2022-06-14 09:44 PM PDT -usaboo,2022-06-15T05:01:33Z,- usaboo commented on pull request: [3235](https://github.com/hackforla/website/pull/3235#issuecomment-1155989237) at 2022-06-14 10:01 PM PDT -usaboo,2022-06-16T03:01:59Z,- usaboo submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1008433550) at 2022-06-15 08:01 PM PDT -usaboo,2022-06-16T04:32:38Z,- usaboo submitted pull request review: [3235](https://github.com/hackforla/website/pull/3235#pullrequestreview-1008478104) at 2022-06-15 09:32 PM PDT -usaboo,2022-06-26T17:27:41Z,- usaboo commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1166594993) at 2022-06-26 10:27 AM PDT -usaboo,2022-06-26T17:28:55Z,- usaboo commented on pull request: [3183](https://github.com/hackforla/website/pull/3183#issuecomment-1166595271) at 2022-06-26 10:28 AM PDT -usaboo,2022-06-26T17:35:37Z,- usaboo commented on issue: [2625](https://github.com/hackforla/website/issues/2625#issuecomment-1166596854) at 2022-06-26 10:35 AM PDT -usaboo,2022-06-26T18:55:40Z,- usaboo opened issue: [3314](https://github.com/hackforla/website/issues/3314) at 2022-06-26 11:55 AM PDT -usaboo,2022-06-26T19:10:10Z,- usaboo assigned to issue: [3170](https://github.com/hackforla/website/issues/3170#issuecomment-1135150046) at 2022-06-26 12:10 PM PDT -usaboo,2022-06-26T19:10:36Z,- usaboo unassigned from issue: [3170](https://github.com/hackforla/website/issues/3170#issuecomment-1166619215) at 2022-06-26 12:10 PM PDT -usaboo,2022-06-29T02:24:28Z,- usaboo submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1022661216) at 2022-06-28 07:24 PM PDT -usaboo,2022-06-29T02:35:11Z,- usaboo assigned to issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1160927695) at 2022-06-28 07:35 PM PDT -usaboo,2022-06-29T02:50:38Z,- usaboo unassigned from issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1169468944) at 2022-06-28 07:50 PM PDT -usaboo,2022-06-29T02:50:38Z,- usaboo unassigned from issue: [3274](https://github.com/hackforla/website/issues/3274#issuecomment-1169468944) at 2022-06-28 07:50 PM PDT -usaboo,2022-07-01T15:54:18Z,- usaboo commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1172484456) at 2022-07-01 08:54 AM PDT -usaboo,2022-07-01T15:54:32Z,- usaboo submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1026394109) at 2022-07-01 08:54 AM PDT -usaboo,2022-07-12T02:18:28Z,- usaboo submitted pull request review: [3183](https://github.com/hackforla/website/pull/3183#pullrequestreview-1035133303) at 2022-07-11 07:18 PM PDT -usaboo,2022-07-17T17:27:36Z,- usaboo commented on pull request: [3161](https://github.com/hackforla/website/pull/3161#issuecomment-1186576746) at 2022-07-17 10:27 AM PDT -usaboo,2022-07-22T04:11:30Z,- usaboo assigned to issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1090982728) at 2022-07-21 09:11 PM PDT -usaboo,2022-10-04T01:00:08Z,- usaboo unassigned from issue: [2675](https://github.com/hackforla/website/issues/2675#issuecomment-1192160542) at 2022-10-03 06:00 PM PDT -Utkarsh3128,2023-09-28T18:52:27Z,- Utkarsh3128 opened pull request: [5625](https://github.com/hackforla/website/pull/5625) at 2023-09-28 11:52 AM PDT -Utkarsh3128,2023-09-28T19:04:27Z,- Utkarsh3128 opened pull request: [5626](https://github.com/hackforla/website/pull/5626) at 2023-09-28 12:04 PM PDT -Utkarsh3128,2023-09-29T07:08:06Z,- Utkarsh3128 commented on pull request: [5626](https://github.com/hackforla/website/pull/5626#issuecomment-1740408491) at 2023-09-29 12:08 AM PDT -Utkarsh3128,2023-09-29T09:21:00Z,- Utkarsh3128 pull request closed w/o merging: [5625](https://github.com/hackforla/website/pull/5625#event-10509043792) at 2023-09-29 02:21 AM PDT -Utkarsh3128,2023-09-29T09:39:53Z,- Utkarsh3128 pull request closed w/o merging: [5626](https://github.com/hackforla/website/pull/5626#event-10509233716) at 2023-09-29 02:39 AM PDT -vaisali89,3239,SKILLS ISSUE -vaisali89,2022-06-12T17:43:22Z,- vaisali89 opened issue: [3239](https://github.com/hackforla/website/issues/3239) at 2022-06-12 10:43 AM PDT -vaisali89,2022-06-12T18:57:24Z,- vaisali89 assigned to issue: [3239](https://github.com/hackforla/website/issues/3239#issuecomment-1153244077) at 2022-06-12 11:57 AM PDT -vaisali89,2022-06-15T22:00:15Z,- vaisali89 assigned to issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1079440137) at 2022-06-15 03:00 PM PDT -vaisali89,2022-06-15T22:01:17Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1156988044) at 2022-06-15 03:01 PM PDT -vaisali89,2022-06-15T22:01:45Z,- vaisali89 closed issue as completed: [3239](https://github.com/hackforla/website/issues/3239#event-6816430135) at 2022-06-15 03:01 PM PDT -vaisali89,2022-06-26T16:39:06Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1166582876) at 2022-06-26 09:39 AM PDT -vaisali89,2022-07-04T17:02:52Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1174008957) at 2022-07-04 10:02 AM PDT -vaisali89,2022-07-17T16:19:25Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1186561214) at 2022-07-17 09:19 AM PDT -vaisali89,2022-07-18T23:14:54Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1188424328) at 2022-07-18 04:14 PM PDT -vaisali89,2022-07-20T19:32:34Z,- vaisali89 commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1190673409) at 2022-07-20 12:32 PM PDT -vaisali89,2022-08-01T02:35:47Z,- vaisali89 commented on issue: [2680](https://github.com/hackforla/website/issues/2680#issuecomment-1200620185) at 2022-07-31 07:35 PM PDT -vaisali89,2022-08-02T01:23:46Z,- vaisali89 assigned to issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1063270297) at 2022-08-01 06:23 PM PDT -vaisali89,2022-08-02T21:21:28Z,- vaisali89 opened issue: [3448](https://github.com/hackforla/website/issues/3448) at 2022-08-02 02:21 PM PDT -vaisali89,2022-08-10T20:17:35Z,- vaisali89 commented on issue: [2498](https://github.com/hackforla/website/issues/2498#issuecomment-1211222296) at 2022-08-10 01:17 PM PDT -vaisali89,2022-08-14T16:44:03Z,- vaisali89 commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1214412947) at 2022-08-14 09:44 AM PDT -vaisali89,2022-08-17T19:39:54Z,- vaisali89 opened issue: [3473](https://github.com/hackforla/website/issues/3473) at 2022-08-17 12:39 PM PDT -vaisali89,2022-08-17T19:44:51Z,- vaisali89 commented on issue: [3473](https://github.com/hackforla/website/issues/3473#issuecomment-1218421803) at 2022-08-17 12:44 PM PDT -vaisali89,2022-08-28T18:41:09Z,- vaisali89 commented on issue: [2705](https://github.com/hackforla/website/issues/2705#issuecomment-1229528340) at 2022-08-28 11:41 AM PDT -vaisali89,2022-08-29T08:51:18Z,- vaisali89 commented on issue: [3003](https://github.com/hackforla/website/issues/3003#issuecomment-1229971437) at 2022-08-29 01:51 AM PDT -vaisali89,2022-09-09T09:59:37Z,- vaisali89 commented on issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1241765693) at 2022-09-09 02:59 AM PDT -vaisali89,2022-09-21T10:47:37Z,- vaisali89 closed issue as completed: [2949](https://github.com/hackforla/website/issues/2949#event-7429723565) at 2022-09-21 03:47 AM PDT -vaisali89,2023-02-05T19:48:43Z,- vaisali89 assigned to issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-1418248835) at 2023-02-05 11:48 AM PST -vaisali89,2023-02-15T05:39:21Z,- vaisali89 unassigned from issue: [2949](https://github.com/hackforla/website/issues/2949#issuecomment-1257240182) at 2023-02-14 09:39 PM PST -vaisali89,2024-10-25T23:31:31Z,- vaisali89 unassigned from issue: [3343](https://github.com/hackforla/website/issues/3343#issuecomment-2277292348) at 2024-10-25 04:31 PM PDT -valdezg,7886,SKILLS ISSUE -valdezg,2025-02-05T04:15:24Z,- valdezg opened issue: [7886](https://github.com/hackforla/website/issues/7886) at 2025-02-04 08:15 PM PST -valdezg,2025-02-05T04:17:40Z,- valdezg assigned to issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2635664419) at 2025-02-04 08:17 PM PST -valdezg,2025-02-08T22:35:53Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2645968542) at 2025-02-08 02:35 PM PST -valdezg,2025-02-09T02:30:02Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2646033948) at 2025-02-08 06:30 PM PST -valdezg,2025-03-09T04:41:26Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2708668684) at 2025-03-08 09:41 PM PDT -valdezg,2025-03-09T04:47:29Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2708670068) at 2025-03-08 09:47 PM PDT -valdezg,2025-03-09T04:49:39Z,- valdezg assigned to issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2635477007) at 2025-03-08 09:49 PM PDT -valdezg,2025-03-09T05:24:34Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2708679067) at 2025-03-08 10:24 PM PDT -valdezg,2025-04-04T19:00:01Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779529221) at 2025-04-04 12:00 PM PDT -valdezg,2025-04-04T19:22:32Z,- valdezg opened pull request: [8044](https://github.com/hackforla/website/pull/8044) at 2025-04-04 12:22 PM PDT -valdezg,2025-04-04T19:27:33Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779574968) at 2025-04-04 12:27 PM PDT -valdezg,2025-04-04T19:45:49Z,- valdezg pull request closed w/o merging: [8044](https://github.com/hackforla/website/pull/8044#event-17135102655) at 2025-04-04 12:45 PM PDT -valdezg,2025-04-04T19:59:56Z,- valdezg commented on pull request: [8044](https://github.com/hackforla/website/pull/8044#issuecomment-2779627440) at 2025-04-04 12:59 PM PDT -valdezg,2025-04-04T19:59:56Z,- valdezg reopened pull request: [8044](https://github.com/hackforla/website/pull/8044#issuecomment-2779627440) at 2025-04-04 12:59 PM PDT -valdezg,2025-04-04T20:05:47Z,- valdezg pull request closed w/o merging: [8044](https://github.com/hackforla/website/pull/8044#event-17135290252) at 2025-04-04 01:05 PM PDT -valdezg,2025-04-04T20:21:51Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2779662744) at 2025-04-04 01:21 PM PDT -valdezg,2025-04-05T20:39:52Z,- valdezg opened pull request: [8046](https://github.com/hackforla/website/pull/8046) at 2025-04-05 01:39 PM PDT -valdezg,2025-04-05T21:02:35Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2781093172) at 2025-04-05 02:02 PM PDT -valdezg,2025-04-07T03:31:55Z,- valdezg commented on issue: [7879](https://github.com/hackforla/website/issues/7879#issuecomment-2781932753) at 2025-04-06 08:31 PM PDT -valdezg,2025-04-10T03:13:06Z,- valdezg submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2755213593) at 2025-04-09 08:13 PM PDT -valdezg,2025-04-10T03:28:48Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2791455982) at 2025-04-09 08:28 PM PDT -valdezg,2025-04-10T04:38:29Z,- valdezg submitted pull request review: [8046](https://github.com/hackforla/website/pull/8046#pullrequestreview-2755297332) at 2025-04-09 09:38 PM PDT -valdezg,2025-04-10T04:54:01Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2791547154) at 2025-04-09 09:54 PM PDT -valdezg,2025-04-11T04:51:12Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2795828899) at 2025-04-10 09:51 PM PDT -valdezg,2025-04-15T23:50:09Z,- valdezg commented on pull request: [8046](https://github.com/hackforla/website/pull/8046#issuecomment-2807791445) at 2025-04-15 04:50 PM PDT -valdezg,2025-04-16T03:30:15Z,- valdezg pull request merged: [8046](https://github.com/hackforla/website/pull/8046#event-17280520716) at 2025-04-15 08:30 PM PDT -valdezg,2025-04-18T18:15:47Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2815964419) at 2025-04-18 11:15 AM PDT -valdezg,2025-04-18T18:17:02Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-2815966102) at 2025-04-18 11:17 AM PDT -valdezg,2025-04-20T19:43:21Z,- valdezg assigned to issue: [8070](https://github.com/hackforla/website/issues/8070) at 2025-04-20 12:43 PM PDT -valdezg,2025-04-20T19:44:46Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2817311968) at 2025-04-20 12:44 PM PDT -valdezg,2025-04-22T04:49:46Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2820063667) at 2025-04-21 09:49 PM PDT -valdezg,2025-04-22T05:10:40Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2820089649) at 2025-04-21 10:10 PM PDT -valdezg,2025-04-22T05:15:42Z,- valdezg opened pull request: [8080](https://github.com/hackforla/website/pull/8080) at 2025-04-21 10:15 PM PDT -valdezg,2025-04-22T19:36:57Z,- valdezg pull request closed w/o merging: [8080](https://github.com/hackforla/website/pull/8080#event-17359274153) at 2025-04-22 12:36 PM PDT -valdezg,2025-04-28T03:37:24Z,- valdezg opened pull request: [8092](https://github.com/hackforla/website/pull/8092) at 2025-04-27 08:37 PM PDT -valdezg,2025-05-08T20:05:30Z,- valdezg commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2864144498) at 2025-05-08 01:05 PM PDT -valdezg,2025-05-18T04:57:23Z,- valdezg pull request closed w/o merging: [8092](https://github.com/hackforla/website/pull/8092#event-17701836270) at 2025-05-17 09:57 PM PDT -valdezg,2025-05-21T00:20:01Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-2896116358) at 2025-05-20 05:20 PM PDT -valdezg,2025-05-21T17:07:16Z,- valdezg commented on pull request: [8149](https://github.com/hackforla/website/pull/8149#issuecomment-2898657515) at 2025-05-21 10:07 AM PDT -valdezg,2025-07-01T17:31:17Z,- valdezg commented on issue: [7886](https://github.com/hackforla/website/issues/7886#issuecomment-3024936923) at 2025-07-01 10:31 AM PDT -valdezg,2025-07-01T23:25:16Z,- valdezg commented on issue: [8070](https://github.com/hackforla/website/issues/8070#issuecomment-3025833867) at 2025-07-01 04:25 PM PDT -valdezg,2025-07-08T06:30:03Z,- valdezg opened pull request: [8245](https://github.com/hackforla/website/pull/8245) at 2025-07-07 11:30 PM PDT -valdezg,2025-07-11T17:16:40Z,- valdezg pull request merged: [8245](https://github.com/hackforla/website/pull/8245#event-18591000031) at 2025-07-11 10:16 AM PDT -Vallsurf,2019-11-13T03:32:29Z,- Vallsurf submitted pull request review: [166](https://github.com/hackforla/website/pull/166#pullrequestreview-315982631) at 2019-11-12 07:32 PM PST -Vallsurf,2019-11-19T03:11:32Z,- Vallsurf assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-547721864) at 2019-11-18 07:11 PM PST -Vallsurf,2019-11-23T04:15:25Z,- Vallsurf unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-22 08:15 PM PST -Vallsurf,2019-11-26T02:50:35Z,- Vallsurf assigned to issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:50 PM PST -Vallsurf,2019-11-26T02:58:27Z,- Vallsurf unassigned from issue: [160](https://github.com/hackforla/website/issues/160#issuecomment-557763942) at 2019-11-25 06:58 PM PST -vanessasinam,6531,SKILLS ISSUE -vanessasinam,2024-03-27T03:43:13Z,- vanessasinam opened issue: [6531](https://github.com/hackforla/website/issues/6531) at 2024-03-26 08:43 PM PDT -vanessasinam,2024-03-27T03:43:13Z,- vanessasinam assigned to issue: [6531](https://github.com/hackforla/website/issues/6531) at 2024-03-26 08:43 PM PDT -vanessasinam,2024-04-16T20:50:40Z,- vanessasinam assigned to issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2058126241) at 2024-04-16 01:50 PM PDT -vanessasinam,2024-04-29T20:18:29Z,- vanessasinam opened pull request: [6781](https://github.com/hackforla/website/pull/6781) at 2024-04-29 01:18 PM PDT -vanessasinam,2024-04-29T20:25:27Z,- vanessasinam commented on issue: [6181](https://github.com/hackforla/website/issues/6181#issuecomment-2083600908) at 2024-04-29 01:25 PM PDT -vanessasinam,2024-05-02T01:28:44Z,- vanessasinam commented on pull request: [6781](https://github.com/hackforla/website/pull/6781#issuecomment-2089379473) at 2024-05-01 06:28 PM PDT -vanessasinam,2024-05-02T20:03:32Z,- vanessasinam pull request merged: [6781](https://github.com/hackforla/website/pull/6781#event-12688595962) at 2024-05-02 01:03 PM PDT -vanessasinam,2024-05-21T01:37:57Z,- vanessasinam assigned to issue: [6731](https://github.com/hackforla/website/issues/6731) at 2024-05-20 06:37 PM PDT -vanessasinam,2024-05-21T01:52:37Z,- vanessasinam commented on issue: [6731](https://github.com/hackforla/website/issues/6731#issuecomment-2121555656) at 2024-05-20 06:52 PM PDT -vanessasinam,2024-05-21T01:58:30Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2121563076) at 2024-05-20 06:58 PM PDT -vanessasinam,2024-05-22T03:19:14Z,- vanessasinam commented on pull request: [6874](https://github.com/hackforla/website/pull/6874#issuecomment-2123794436) at 2024-05-21 08:19 PM PDT -vanessasinam,2024-05-27T16:32:54Z,- vanessasinam opened pull request: [6900](https://github.com/hackforla/website/pull/6900) at 2024-05-27 09:32 AM PDT -vanessasinam,2024-05-27T16:35:52Z,- vanessasinam commented on issue: [6731](https://github.com/hackforla/website/issues/6731#issuecomment-2133811264) at 2024-05-27 09:35 AM PDT -vanessasinam,2024-05-28T16:53:37Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2135714871) at 2024-05-28 09:53 AM PDT -vanessasinam,2024-05-29T02:49:35Z,- vanessasinam commented on pull request: [6906](https://github.com/hackforla/website/pull/6906#issuecomment-2136420726) at 2024-05-28 07:49 PM PDT -vanessasinam,2024-05-29T16:57:28Z,- vanessasinam assigned to issue: [6594](https://github.com/hackforla/website/issues/6594) at 2024-05-29 09:57 AM PDT -vanessasinam,2024-05-29T17:00:11Z,- vanessasinam commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2137877210) at 2024-05-29 10:00 AM PDT -vanessasinam,2024-05-30T02:23:00Z,- vanessasinam submitted pull request review: [6906](https://github.com/hackforla/website/pull/6906#pullrequestreview-2086981795) at 2024-05-29 07:23 PM PDT -vanessasinam,2024-05-30T18:28:34Z,- vanessasinam unassigned from issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140585301) at 2024-05-30 11:28 AM PDT -vanessasinam,2024-05-30T18:36:54Z,- vanessasinam commented on issue: [6594](https://github.com/hackforla/website/issues/6594#issuecomment-2140616903) at 2024-05-30 11:36 AM PDT -vanessasinam,2024-05-31T00:16:17Z,- vanessasinam commented on pull request: [6900](https://github.com/hackforla/website/pull/6900#issuecomment-2141033615) at 2024-05-30 05:16 PM PDT -vanessasinam,2024-05-31T19:50:10Z,- vanessasinam pull request merged: [6900](https://github.com/hackforla/website/pull/6900#event-13005187079) at 2024-05-31 12:50 PM PDT -vanessasinam,2024-06-06T16:30:59Z,- vanessasinam assigned to issue: [6753](https://github.com/hackforla/website/issues/6753) at 2024-06-06 09:30 AM PDT -vanessasinam,2024-06-06T16:32:16Z,- vanessasinam commented on issue: [6753](https://github.com/hackforla/website/issues/6753#issuecomment-2152947795) at 2024-06-06 09:32 AM PDT -vanessasinam,2024-06-14T11:51:54Z,- vanessasinam commented on issue: [6753](https://github.com/hackforla/website/issues/6753#issuecomment-2167858913) at 2024-06-14 04:51 AM PDT -vanessasinam,2024-06-14T11:56:06Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2167864955) at 2024-06-14 04:56 AM PDT -vanessasinam,2024-06-20T16:19:05Z,- vanessasinam assigned to issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2171120139) at 2024-06-20 09:19 AM PDT -vanessasinam,2024-06-20T16:23:29Z,- vanessasinam commented on issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2181088605) at 2024-06-20 09:23 AM PDT -vanessasinam,2024-06-27T18:25:19Z,- vanessasinam opened pull request: [7073](https://github.com/hackforla/website/pull/7073) at 2024-06-27 11:25 AM PDT -vanessasinam,2024-06-27T18:27:12Z,- vanessasinam commented on issue: [7010](https://github.com/hackforla/website/issues/7010#issuecomment-2195420016) at 2024-06-27 11:27 AM PDT -vanessasinam,2024-06-27T18:27:46Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2195420880) at 2024-06-27 11:27 AM PDT -vanessasinam,2024-06-28T16:24:54Z,- vanessasinam commented on pull request: [7073](https://github.com/hackforla/website/pull/7073#issuecomment-2197269319) at 2024-06-28 09:24 AM PDT -vanessasinam,2024-07-08T03:14:54Z,- vanessasinam pull request merged: [7073](https://github.com/hackforla/website/pull/7073#event-13416879029) at 2024-07-07 08:14 PM PDT -vanessasinam,2024-08-23T02:55:03Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2306088449) at 2024-08-22 07:55 PM PDT -vanessasinam,2024-08-27T02:53:03Z,- vanessasinam assigned to issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2286548491) at 2024-08-26 07:53 PM PDT -vanessasinam,2024-08-30T21:35:41Z,- vanessasinam commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2322370177) at 2024-08-30 02:35 PM PDT -vanessasinam,2024-09-04T20:34:33Z,- vanessasinam opened pull request: [7385](https://github.com/hackforla/website/pull/7385) at 2024-09-04 01:34 PM PDT -vanessasinam,2024-09-05T18:14:40Z,- vanessasinam commented on issue: [7195](https://github.com/hackforla/website/issues/7195#issuecomment-2332362075) at 2024-09-05 11:14 AM PDT -vanessasinam,2024-09-07T17:51:59Z,- vanessasinam pull request merged: [7385](https://github.com/hackforla/website/pull/7385#event-14172190043) at 2024-09-07 10:51 AM PDT -vanessasinam,2024-09-10T15:38:51Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2341291475) at 2024-09-10 08:38 AM PDT -vanessasinam,2024-09-15T19:52:39Z,- vanessasinam commented on pull request: [7461](https://github.com/hackforla/website/pull/7461#issuecomment-2351770627) at 2024-09-15 12:52 PM PDT -vanessasinam,2024-09-15T21:35:37Z,- vanessasinam submitted pull request review: [7461](https://github.com/hackforla/website/pull/7461#pullrequestreview-2305618672) at 2024-09-15 02:35 PM PDT -vanessasinam,2024-09-15T21:36:49Z,- vanessasinam commented on issue: [6531](https://github.com/hackforla/website/issues/6531#issuecomment-2351799644) at 2024-09-15 02:36 PM PDT -vanessasinam,2024-09-15T21:42:51Z,- vanessasinam assigned to issue: [7416](https://github.com/hackforla/website/issues/7416) at 2024-09-15 02:42 PM PDT -vanessasinam,2024-09-15T21:45:04Z,- vanessasinam commented on issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2351801726) at 2024-09-15 02:45 PM PDT -vanessasinam,2024-10-15T01:30:28Z,- vanessasinam unassigned from issue: [7416](https://github.com/hackforla/website/issues/7416#issuecomment-2406688062) at 2024-10-14 06:30 PM PDT -vanessasinam,2025-01-14T04:13:37Z,- vanessasinam opened issue: [7826](https://github.com/hackforla/website/issues/7826) at 2025-01-13 08:13 PM PST -vanessasinam,2025-01-14T04:24:15Z,- vanessasinam assigned to issue: [7611](https://github.com/hackforla/website/issues/7611) at 2025-01-13 08:24 PM PST -vanessasinam,2025-01-14T04:24:28Z,- vanessasinam unassigned from issue: [7611](https://github.com/hackforla/website/issues/7611) at 2025-01-13 08:24 PM PST -vanessasinam,2025-01-22T03:42:28Z,- vanessasinam assigned to issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2350694858) at 2025-01-21 07:42 PM PST -vanessasinam,2025-01-27T19:24:41Z,- vanessasinam opened issue: [7857](https://github.com/hackforla/website/issues/7857) at 2025-01-27 11:24 AM PST -vanessasinam,2025-01-27T19:31:28Z,- vanessasinam opened issue: [7858](https://github.com/hackforla/website/issues/7858) at 2025-01-27 11:31 AM PST -vanessasinam,2025-01-27T19:33:50Z,- vanessasinam commented on issue: [7377](https://github.com/hackforla/website/issues/7377#issuecomment-2616720773) at 2025-01-27 11:33 AM PST -vanessavun,3914,SKILLS ISSUE -vanessavun,2023-02-01T04:58:26Z,- vanessavun opened issue: [3914](https://github.com/hackforla/website/issues/3914) at 2023-01-31 08:58 PM PST -vanessavun,2023-02-01T04:58:26Z,- vanessavun assigned to issue: [3914](https://github.com/hackforla/website/issues/3914) at 2023-01-31 08:58 PM PST -vanessavun,2023-02-03T07:54:38Z,- vanessavun assigned to issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1409525426) at 2023-02-02 11:54 PM PST -vanessavun,2023-02-03T07:54:44Z,- vanessavun commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1415268941) at 2023-02-02 11:54 PM PST -vanessavun,2023-02-03T20:30:20Z,- vanessavun commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1416369681) at 2023-02-03 12:30 PM PST -vanessavun,2023-02-04T00:39:45Z,- vanessavun opened pull request: [3932](https://github.com/hackforla/website/pull/3932) at 2023-02-03 04:39 PM PST -vanessavun,2023-02-04T01:00:59Z,- vanessavun commented on issue: [3914](https://github.com/hackforla/website/issues/3914#issuecomment-1416569976) at 2023-02-03 05:00 PM PST -vanessavun,2023-02-04T01:06:00Z,- vanessavun commented on issue: [3914](https://github.com/hackforla/website/issues/3914#issuecomment-1416572750) at 2023-02-03 05:06 PM PST -vanessavun,2023-02-06T07:33:39Z,- vanessavun closed issue by PR 3940: [3854](https://github.com/hackforla/website/issues/3854#event-8444409867) at 2023-02-05 11:33 PM PST -vanessavun,2023-02-06T07:34:01Z,- vanessavun reopened issue: [3854](https://github.com/hackforla/website/issues/3854#event-8444409867) at 2023-02-05 11:34 PM PST -vanessavun,2023-02-06T07:36:00Z,- vanessavun commented on issue: [3854](https://github.com/hackforla/website/issues/3854#issuecomment-1418637447) at 2023-02-05 11:36 PM PST -vanessavun,2023-02-07T00:37:23Z,- vanessavun pull request merged: [3932](https://github.com/hackforla/website/pull/3932#event-8453046992) at 2023-02-06 04:37 PM PST -vanessavun,2023-02-09T00:45:22Z,- vanessavun assigned to issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1397449627) at 2023-02-08 04:45 PM PST -vanessavun,2023-02-09T00:46:55Z,- vanessavun commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1423445651) at 2023-02-08 04:46 PM PST -vanessavun,2023-02-12T20:41:00Z,- vanessavun commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1427127754) at 2023-02-12 12:41 PM PST -vanessavun,2023-02-12T20:45:04Z,- vanessavun commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1427128455) at 2023-02-12 12:45 PM PST -vanessavun,2023-02-13T19:01:38Z,- vanessavun submitted pull request review: [3964](https://github.com/hackforla/website/pull/3964#pullrequestreview-1296269794) at 2023-02-13 11:01 AM PST -vanessavun,2023-02-15T20:25:46Z,- vanessavun commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1431984671) at 2023-02-15 12:25 PM PST -vanessavun,2023-02-15T20:30:37Z,- vanessavun submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1300304658) at 2023-02-15 12:30 PM PST -vanessavun,2023-02-15T20:41:31Z,- vanessavun closed issue as completed: [3914](https://github.com/hackforla/website/issues/3914#event-8530232101) at 2023-02-15 12:41 PM PST -vanessavun,2023-02-17T04:20:32Z,- vanessavun assigned to issue: [3822](https://github.com/hackforla/website/issues/3822) at 2023-02-16 08:20 PM PST -vanessavun,2023-02-17T04:21:55Z,- vanessavun commented on issue: [3822](https://github.com/hackforla/website/issues/3822#issuecomment-1434084919) at 2023-02-16 08:21 PM PST -vanessavun,2023-02-17T04:42:37Z,- vanessavun opened pull request: [3995](https://github.com/hackforla/website/pull/3995) at 2023-02-16 08:42 PM PST -vanessavun,2023-02-17T04:52:21Z,- vanessavun commented on pull request: [3989](https://github.com/hackforla/website/pull/3989#issuecomment-1434099151) at 2023-02-16 08:52 PM PST -vanessavun,2023-02-17T04:56:10Z,- vanessavun submitted pull request review: [3989](https://github.com/hackforla/website/pull/3989#pullrequestreview-1302692597) at 2023-02-16 08:56 PM PST -vanessavun,2023-02-17T04:59:48Z,- vanessavun commented on pull request: [3993](https://github.com/hackforla/website/pull/3993#issuecomment-1434103312) at 2023-02-16 08:59 PM PST -vanessavun,2023-02-17T05:10:18Z,- vanessavun submitted pull request review: [3993](https://github.com/hackforla/website/pull/3993#pullrequestreview-1302700704) at 2023-02-16 09:10 PM PST -vanessavun,2023-02-17T05:29:13Z,- vanessavun commented on pull request: [3994](https://github.com/hackforla/website/pull/3994#issuecomment-1434122837) at 2023-02-16 09:29 PM PST -vanessavun,2023-02-17T05:39:17Z,- vanessavun submitted pull request review: [3994](https://github.com/hackforla/website/pull/3994#pullrequestreview-1302723724) at 2023-02-16 09:39 PM PST -vanessavun,2023-02-18T05:24:46Z,- vanessavun pull request merged: [3995](https://github.com/hackforla/website/pull/3995#event-8552395381) at 2023-02-17 09:24 PM PST -vanessavun,2023-02-19T22:04:26Z,- vanessavun assigned to issue: [3879](https://github.com/hackforla/website/issues/3879) at 2023-02-19 02:04 PM PST -vanessavun,2023-02-19T22:05:25Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1436109344) at 2023-02-19 02:05 PM PST -vanessavun,2023-02-19T22:14:01Z,- vanessavun commented on issue: [3540](https://github.com/hackforla/website/issues/3540#issuecomment-1436111601) at 2023-02-19 02:14 PM PST -vanessavun,2023-02-22T05:10:23Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1439448745) at 2023-02-21 09:10 PM PST -vanessavun,2023-02-24T02:21:03Z,- vanessavun submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1312409083) at 2023-02-23 06:21 PM PST -vanessavun,2023-02-24T05:21:15Z,- vanessavun commented on pull request: [4032](https://github.com/hackforla/website/pull/4032#issuecomment-1442825976) at 2023-02-23 09:21 PM PST -vanessavun,2023-02-24T05:25:14Z,- vanessavun submitted pull request review: [4032](https://github.com/hackforla/website/pull/4032#pullrequestreview-1312531764) at 2023-02-23 09:25 PM PST -vanessavun,2023-02-24T05:28:57Z,- vanessavun commented on pull request: [3964](https://github.com/hackforla/website/pull/3964#issuecomment-1442830181) at 2023-02-23 09:28 PM PST -vanessavun,2023-02-24T06:05:45Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-23 10:05 PM PST -vanessavun,2023-02-24T18:45:44Z,- vanessavun commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1444244237) at 2023-02-24 10:45 AM PST -vanessavun,2023-02-25T07:08:04Z,- vanessavun submitted pull request review: [3979](https://github.com/hackforla/website/pull/3979#pullrequestreview-1314463463) at 2023-02-24 11:08 PM PST -vanessavun,2023-02-25T07:09:48Z,- vanessavun commented on pull request: [3979](https://github.com/hackforla/website/pull/3979#issuecomment-1445017144) at 2023-02-24 11:09 PM PST -vanessavun,2023-02-25T07:16:08Z,- vanessavun commented on pull request: [4038](https://github.com/hackforla/website/pull/4038#issuecomment-1445018815) at 2023-02-24 11:16 PM PST -vanessavun,2023-02-25T07:19:16Z,- vanessavun submitted pull request review: [4038](https://github.com/hackforla/website/pull/4038#pullrequestreview-1314464472) at 2023-02-24 11:19 PM PST -vanessavun,2023-02-25T17:04:10Z,- vanessavun unassigned from issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-25 09:04 AM PST -vanessavun,2023-02-25T17:04:16Z,- vanessavun assigned to issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1442853097) at 2023-02-25 09:04 AM PST -vanessavun,2023-02-28T07:35:04Z,- vanessavun commented on issue: [3879](https://github.com/hackforla/website/issues/3879#issuecomment-1447710653) at 2023-02-27 11:35 PM PST -vanessavun,2023-02-28T16:06:01Z,- vanessavun commented on issue: [3837](https://github.com/hackforla/website/issues/3837#issuecomment-1448446187) at 2023-02-28 08:06 AM PST -vanessavun,2023-02-28T19:26:00Z,- vanessavun assigned to issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1445715829) at 2023-02-28 11:26 AM PST -vanessavun,2023-02-28T19:26:34Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1448738828) at 2023-02-28 11:26 AM PST -vanessavun,2023-02-28T19:28:24Z,- vanessavun commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1448740978) at 2023-02-28 11:28 AM PST -vanessavun,2023-03-01T05:34:09Z,- vanessavun submitted pull request review: [4053](https://github.com/hackforla/website/pull/4053#pullrequestreview-1319068431) at 2023-02-28 09:34 PM PST -vanessavun,2023-03-01T05:37:47Z,- vanessavun commented on pull request: [4053](https://github.com/hackforla/website/pull/4053#issuecomment-1449380031) at 2023-02-28 09:37 PM PST -vanessavun,2023-03-03T23:17:44Z,- vanessavun unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1450872479) at 2023-03-03 03:17 PM PST -vanessavun,2023-03-03T23:18:26Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1454253251) at 2023-03-03 03:18 PM PST -vanessavun,2023-03-09T21:08:45Z,- vanessavun assigned to issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1454253251) at 2023-03-09 01:08 PM PST -vanessavun,2023-03-09T21:12:29Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1462831584) at 2023-03-09 01:12 PM PST -vanessavun,2023-03-17T06:44:06Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1473255525) at 2023-03-16 11:44 PM PDT -vanessavun,2023-03-19T18:58:28Z,- vanessavun assigned to issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1469030676) at 2023-03-19 11:58 AM PDT -vanessavun,2023-03-19T19:02:42Z,- vanessavun unassigned from issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1475362180) at 2023-03-19 12:02 PM PDT -vanessavun,2023-03-20T22:59:06Z,- vanessavun unassigned from issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1473255525) at 2023-03-20 03:59 PM PDT -vanessavun,2023-03-20T23:00:04Z,- vanessavun commented on issue: [3959](https://github.com/hackforla/website/issues/3959#issuecomment-1477059261) at 2023-03-20 04:00 PM PDT -vanessavun,2023-03-26T17:27:41Z,- vanessavun assigned to issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 10:27 AM PDT -vanessavun,2023-03-26T20:34:13Z,- vanessavun unassigned from issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 01:34 PM PDT -vanessavun,2023-04-15T06:06:30Z,- vanessavun commented on pull request: [4517](https://github.com/hackforla/website/pull/4517#issuecomment-1509558406) at 2023-04-14 11:06 PM PDT -vanessavun,2023-04-15T06:17:55Z,- vanessavun submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1386324524) at 2023-04-14 11:17 PM PDT -vanessavun,2023-04-18T02:49:53Z,- vanessavun submitted pull request review: [4517](https://github.com/hackforla/website/pull/4517#pullrequestreview-1389189296) at 2023-04-17 07:49 PM PDT -vanessavun,2023-04-18T02:56:02Z,- vanessavun commented on pull request: [4539](https://github.com/hackforla/website/pull/4539#issuecomment-1512362538) at 2023-04-17 07:56 PM PDT -vanessavun,2023-04-18T03:02:41Z,- vanessavun submitted pull request review: [4539](https://github.com/hackforla/website/pull/4539#pullrequestreview-1389196885) at 2023-04-17 08:02 PM PDT -vanessavun,2023-04-25T00:59:21Z,- vanessavun commented on pull request: [4561](https://github.com/hackforla/website/pull/4561#issuecomment-1521015103) at 2023-04-24 05:59 PM PDT -vanessavun,2023-04-25T01:04:31Z,- vanessavun submitted pull request review: [4561](https://github.com/hackforla/website/pull/4561#pullrequestreview-1398988960) at 2023-04-24 06:04 PM PDT -vanyanv,4630,SKILLS ISSUE -vanyanv,2023-05-09T03:35:05Z,- vanyanv opened issue: [4630](https://github.com/hackforla/website/issues/4630) at 2023-05-08 08:35 PM PDT -vanyanv,2023-05-09T03:49:55Z,- vanyanv assigned to issue: [4630](https://github.com/hackforla/website/issues/4630) at 2023-05-08 08:49 PM PDT -vanyanv,2023-05-09T06:32:20Z,- vanyanv assigned to issue: [4585](https://github.com/hackforla/website/issues/4585#issuecomment-1533491550) at 2023-05-08 11:32 PM PDT -vanyanv,2023-05-09T07:29:30Z,- vanyanv opened pull request: [4640](https://github.com/hackforla/website/pull/4640) at 2023-05-09 12:29 AM PDT -vanyanv,2023-05-10T02:25:01Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1419682209) at 2023-05-09 07:25 PM PDT -vanyanv,2023-05-10T03:01:38Z,- vanyanv assigned to issue: [4477](https://github.com/hackforla/website/issues/4477) at 2023-05-09 08:01 PM PDT -vanyanv,2023-05-10T03:04:04Z,- vanyanv unassigned from issue: [4477](https://github.com/hackforla/website/issues/4477#issuecomment-1541255980) at 2023-05-09 08:04 PM PDT -vanyanv,2023-05-10T19:23:07Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1421251120) at 2023-05-10 12:23 PM PDT -vanyanv,2023-05-10T20:02:38Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1421300861) at 2023-05-10 01:02 PM PDT -vanyanv,2023-05-11T17:42:10Z,- vanyanv pull request merged: [4640](https://github.com/hackforla/website/pull/4640#event-9225163722) at 2023-05-11 10:42 AM PDT -vanyanv,2023-05-12T02:01:08Z,- vanyanv assigned to issue: [4475](https://github.com/hackforla/website/issues/4475) at 2023-05-11 07:01 PM PDT -vanyanv,2023-05-12T02:02:40Z,- vanyanv commented on issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1544998437) at 2023-05-11 07:02 PM PDT -vanyanv,2023-05-12T03:18:01Z,- vanyanv submitted pull request review: [4639](https://github.com/hackforla/website/pull/4639#pullrequestreview-1423709114) at 2023-05-11 08:18 PM PDT -vanyanv,2023-05-18T22:49:33Z,- vanyanv commented on pull request: [4689](https://github.com/hackforla/website/pull/4689#issuecomment-1553753326) at 2023-05-18 03:49 PM PDT -vanyanv,2023-06-27T01:27:38Z,- vanyanv unassigned from issue: [4475](https://github.com/hackforla/website/issues/4475#issuecomment-1608566987) at 2023-06-26 06:27 PM PDT - DUPLICATE - 7970 (varyad),3785,SKILLS ISSUE -varyad,7970,SKILLS ISSUE -varyad,2023-01-04T04:47:45Z,- varyad opened issue: [3785](https://github.com/hackforla/website/issues/3785) at 2023-01-03 08:47 PM PST -varyad,2023-02-13T04:37:17Z,- varyad commented on issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1427331915) at 2023-02-12 08:37 PM PST -varyad,2023-02-27T14:58:12Z,- varyad assigned to issue: [3785](https://github.com/hackforla/website/issues/3785#issuecomment-1445264963) at 2023-02-27 06:58 AM PST -varyad,2023-08-21T03:12:06Z,- varyad opened issue: [5278](https://github.com/hackforla/website/issues/5278) at 2023-08-20 08:12 PM PDT -varyad,2023-08-21T20:27:07Z,- varyad reopened issue: [3785](https://github.com/hackforla/website/issues/3785#event-8772941117) at 2023-08-21 01:27 PM PDT -varyad,2023-08-21T20:39:23Z,- varyad commented on issue: [5278](https://github.com/hackforla/website/issues/5278#issuecomment-1687011854) at 2023-08-21 01:39 PM PDT -varyad,2023-08-21T20:39:34Z,- varyad closed issue as completed: [5278](https://github.com/hackforla/website/issues/5278#event-10150334820) at 2023-08-21 01:39 PM PDT -varyad,2023-08-21T20:42:08Z,- varyad commented on issue: [5278](https://github.com/hackforla/website/issues/5278#issuecomment-1687015292) at 2023-08-21 01:42 PM PDT -varyad,2023-08-21T20:42:08Z,- varyad closed issue as not planned: [5278](https://github.com/hackforla/website/issues/5278#event-10150354546) at 2023-08-21 01:42 PM PDT -varyad,2025-03-01T11:13:42Z,- varyad commented on issue: [7958](https://github.com/hackforla/website/issues/7958#issuecomment-2692152184) at 2025-03-01 03:13 AM PST -varyad,2025-03-01T11:14:08Z,- varyad opened issue: [7959](https://github.com/hackforla/website/issues/7959) at 2025-03-01 03:14 AM PST -varyad,2025-03-04T04:15:57Z,- varyad opened issue: [7970](https://github.com/hackforla/website/issues/7970) at 2025-03-03 08:15 PM PST -varyad,2025-03-04T04:16:19Z,- varyad assigned to issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2696147640) at 2025-03-03 08:16 PM PST -varyad,2025-04-02T06:54:06Z,- varyad commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2771506363) at 2025-04-01 11:54 PM PDT -varyad,2025-06-16T09:03:28Z,- varyad commented on issue: [7970](https://github.com/hackforla/website/issues/7970#issuecomment-2975688745) at 2025-06-16 02:03 AM PDT -Vaseekaran-S,2023-12-05T19:58:53Z,- Vaseekaran-S commented on issue: [5711](https://github.com/hackforla/website/issues/5711#issuecomment-1841526532) at 2023-12-05 11:58 AM PST -Vayras,2023-04-17T19:43:18Z,- Vayras commented on issue: [4535](https://github.com/hackforla/website/issues/4535#issuecomment-1511982119) at 2023-04-17 12:43 PM PDT -Vayras,2023-04-17T20:04:00Z,- Vayras opened pull request: [4540](https://github.com/hackforla/website/pull/4540) at 2023-04-17 01:04 PM PDT -Vayras,2023-04-17T21:51:12Z,- Vayras pull request closed w/o merging: [4540](https://github.com/hackforla/website/pull/4540#event-9029451922) at 2023-04-17 02:51 PM PDT -vepkenez,2019-03-12T02:36:17Z,- vepkenez opened pull request: [32](https://github.com/hackforla/website/pull/32) at 2019-03-11 07:36 PM PDT -vepkenez,2019-03-12T02:43:23Z,- vepkenez opened pull request: [33](https://github.com/hackforla/website/pull/33) at 2019-03-11 07:43 PM PDT -vepkenez,2019-03-12T02:45:59Z,- vepkenez opened pull request: [34](https://github.com/hackforla/website/pull/34) at 2019-03-11 07:45 PM PDT -vepkenez,2019-03-12T03:09:29Z,- vepkenez pull request merged: [32](https://github.com/hackforla/website/pull/32#event-2195883233) at 2019-03-11 08:09 PM PDT -vepkenez,2019-03-12T03:15:12Z,- vepkenez pull request merged: [33](https://github.com/hackforla/website/pull/33#event-2195891596) at 2019-03-11 08:15 PM PDT -vepkenez,2019-03-12T03:17:35Z,- vepkenez pull request merged: [34](https://github.com/hackforla/website/pull/34#event-2195895025) at 2019-03-11 08:17 PM PDT -vepkenez,2019-03-12T03:20:11Z,- vepkenez opened pull request: [35](https://github.com/hackforla/website/pull/35) at 2019-03-11 08:20 PM PDT -vepkenez,2019-04-02T05:25:39Z,- vepkenez pull request closed w/o merging: [35](https://github.com/hackforla/website/pull/35#event-2245327717) at 2019-04-01 10:25 PM PDT -vickiychung,2021-06-16T02:53:47Z,- vickiychung assigned to issue: [1579](https://github.com/hackforla/website/issues/1579) at 2021-06-15 07:53 PM PDT -vickiychung,2021-06-18T21:24:41Z,- vickiychung opened pull request: [1782](https://github.com/hackforla/website/pull/1782) at 2021-06-18 02:24 PM PDT -vickiychung,2021-06-19T05:36:27Z,- vickiychung submitted pull request review: [1780](https://github.com/hackforla/website/pull/1780#pullrequestreview-687797620) at 2021-06-18 10:36 PM PDT -vickiychung,2021-06-22T13:45:31Z,- vickiychung pull request merged: [1782](https://github.com/hackforla/website/pull/1782#event-4922870293) at 2021-06-22 06:45 AM PDT -vickiychung,2021-06-23T00:06:29Z,- vickiychung submitted pull request review: [1790](https://github.com/hackforla/website/pull/1790#pullrequestreview-690093555) at 2021-06-22 05:06 PM PDT -vickiychung,2021-06-24T00:51:31Z,- vickiychung assigned to issue: [1527](https://github.com/hackforla/website/issues/1527) at 2021-06-23 05:51 PM PDT -vickiychung,2021-06-24T00:57:27Z,- vickiychung opened pull request: [1821](https://github.com/hackforla/website/pull/1821) at 2021-06-23 05:57 PM PDT -vickiychung,2021-06-24T15:55:11Z,- vickiychung pull request merged: [1821](https://github.com/hackforla/website/pull/1821#event-4935479654) at 2021-06-24 08:55 AM PDT -vickiychung,2021-06-28T22:25:22Z,- vickiychung assigned to issue: [1830](https://github.com/hackforla/website/issues/1830) at 2021-06-28 03:25 PM PDT -vickiychung,2021-06-28T23:41:36Z,- vickiychung opened pull request: [1855](https://github.com/hackforla/website/pull/1855) at 2021-06-28 04:41 PM PDT -vickiychung,2021-06-30T20:47:39Z,- vickiychung pull request merged: [1855](https://github.com/hackforla/website/pull/1855#event-4962042650) at 2021-06-30 01:47 PM PDT -vickiychung,2021-07-10T06:01:43Z,- vickiychung assigned to issue: [1890](https://github.com/hackforla/website/issues/1890) at 2021-07-09 11:01 PM PDT -vickiychung,2021-07-10T06:06:07Z,- vickiychung opened pull request: [1913](https://github.com/hackforla/website/pull/1913) at 2021-07-09 11:06 PM PDT -vickiychung,2021-07-12T01:25:34Z,- vickiychung pull request merged: [1913](https://github.com/hackforla/website/pull/1913#event-5004784294) at 2021-07-11 06:25 PM PDT -vickiychung,2021-07-27T00:05:33Z,- vickiychung assigned to issue: [1997](https://github.com/hackforla/website/issues/1997) at 2021-07-26 05:05 PM PDT -vickiychung,2021-07-27T01:13:13Z,- vickiychung opened pull request: [2012](https://github.com/hackforla/website/pull/2012) at 2021-07-26 06:13 PM PDT -vickiychung,2021-07-27T01:15:03Z,- vickiychung unassigned from issue: [1997](https://github.com/hackforla/website/issues/1997) at 2021-07-26 06:15 PM PDT -vickiychung,2021-07-29T22:56:28Z,- vickiychung pull request merged: [2012](https://github.com/hackforla/website/pull/2012#event-5088660357) at 2021-07-29 03:56 PM PDT -vickiychung,2021-07-29T22:56:34Z,- vickiychung reopened pull request: [2012](https://github.com/hackforla/website/pull/2012#event-5088660357) at 2021-07-29 03:56 PM PDT -vickiychung,2021-07-29T22:58:52Z,- vickiychung commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-889513021) at 2021-07-29 03:58 PM PDT -vickiychung,2021-07-30T21:10:34Z,- vickiychung commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890155585) at 2021-07-30 02:10 PM PDT -vickiychung,2021-08-01T16:36:32Z,- vickiychung assigned to issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 09:36 AM PDT -vickiychung,2021-08-01T21:30:36Z,- vickiychung commented on pull request: [2012](https://github.com/hackforla/website/pull/2012#issuecomment-890589986) at 2021-08-01 02:30 PM PDT -vickiychung,2021-08-01T21:31:54Z,- vickiychung unassigned from issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 02:31 PM PDT -vickiychung,2021-08-02T01:26:24Z,- vickiychung assigned to issue: [1997](https://github.com/hackforla/website/issues/1997#issuecomment-890549619) at 2021-08-01 06:26 PM PDT -vickiychung,2021-08-03T03:06:15Z,- vickiychung pull request merged: [2012](https://github.com/hackforla/website/pull/2012#event-5102224213) at 2021-08-02 08:06 PM PDT -VIDYA1980,2023-09-12T17:03:13Z,- VIDYA1980 opened pull request: [5503](https://github.com/hackforla/website/pull/5503) at 2023-09-12 10:03 AM PDT -VIDYA1980,2023-09-13T01:58:52Z,- VIDYA1980 pull request closed w/o merging: [5503](https://github.com/hackforla/website/pull/5503#event-10353868537) at 2023-09-12 06:58 PM PDT -VikraMS66,2023-09-08T13:11:15Z,- VikraMS66 opened pull request: [5460](https://github.com/hackforla/website/pull/5460) at 2023-09-08 06:11 AM PDT -VikraMS66,2023-09-08T13:16:59Z,- VikraMS66 opened pull request: [5461](https://github.com/hackforla/website/pull/5461) at 2023-09-08 06:16 AM PDT -VikraMS66,2023-09-08T13:24:26Z,- VikraMS66 opened pull request: [5462](https://github.com/hackforla/website/pull/5462) at 2023-09-08 06:24 AM PDT -VikraMS66,2023-09-08T13:27:45Z,- VikraMS66 opened pull request: [5463](https://github.com/hackforla/website/pull/5463) at 2023-09-08 06:27 AM PDT -VikraMS66,2023-09-09T02:35:31Z,- VikraMS66 pull request closed w/o merging: [5460](https://github.com/hackforla/website/pull/5460#event-10323306790) at 2023-09-08 07:35 PM PDT -VikraMS66,2023-09-09T02:35:46Z,- VikraMS66 pull request closed w/o merging: [5461](https://github.com/hackforla/website/pull/5461#event-10323307143) at 2023-09-08 07:35 PM PDT -VikraMS66,2023-09-09T02:36:11Z,- VikraMS66 pull request closed w/o merging: [5462](https://github.com/hackforla/website/pull/5462#event-10323307738) at 2023-09-08 07:36 PM PDT -VikraMS66,2023-09-09T02:36:25Z,- VikraMS66 pull request closed w/o merging: [5463](https://github.com/hackforla/website/pull/5463#event-10323308016) at 2023-09-08 07:36 PM PDT -vincendp,6337,SKILLS ISSUE -vincendp,2024-02-21T03:36:43Z,- vincendp opened issue: [6337](https://github.com/hackforla/website/issues/6337) at 2024-02-20 07:36 PM PST -vincendp,2024-02-21T04:59:32Z,- vincendp assigned to issue: [6337](https://github.com/hackforla/website/issues/6337) at 2024-02-20 08:59 PM PST -vincendp,2024-02-29T04:18:55Z,- vincendp assigned to issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1929044031) at 2024-02-28 08:18 PM PST -vincendp,2024-02-29T04:40:07Z,- vincendp opened pull request: [6394](https://github.com/hackforla/website/pull/6394) at 2024-02-28 08:40 PM PST -vincendp,2024-02-29T04:45:44Z,- vincendp commented on issue: [6259](https://github.com/hackforla/website/issues/6259#issuecomment-1970387748) at 2024-02-28 08:45 PM PST -vincendp,2024-03-01T20:12:19Z,- vincendp commented on pull request: [6394](https://github.com/hackforla/website/pull/6394#issuecomment-1973844779) at 2024-03-01 12:12 PM PST -vincendp,2024-03-04T02:01:08Z,- vincendp pull request merged: [6394](https://github.com/hackforla/website/pull/6394#event-11992323021) at 2024-03-03 06:01 PM PST -vincendp,2024-03-05T04:25:10Z,- vincendp assigned to issue: [6125](https://github.com/hackforla/website/issues/6125) at 2024-03-04 08:25 PM PST -vincendp,2024-03-05T06:07:11Z,- vincendp opened pull request: [6431](https://github.com/hackforla/website/pull/6431) at 2024-03-04 10:07 PM PST -vincendp,2024-03-05T06:16:41Z,- vincendp commented on issue: [6125](https://github.com/hackforla/website/issues/6125#issuecomment-1978038931) at 2024-03-04 10:16 PM PST -vincendp,2024-03-07T01:06:00Z,- vincendp pull request merged: [6431](https://github.com/hackforla/website/pull/6431#event-12035262569) at 2024-03-06 05:06 PM PST -vincendp,2024-03-13T02:37:40Z,- vincendp commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-1993196426) at 2024-03-12 07:37 PM PDT -vincendp,2024-03-16T01:19:56Z,- vincendp assigned to issue: [6460](https://github.com/hackforla/website/issues/6460) at 2024-03-15 06:19 PM PDT -vincendp,2024-03-16T01:21:47Z,- vincendp commented on issue: [6460](https://github.com/hackforla/website/issues/6460#issuecomment-2000961071) at 2024-03-15 06:21 PM PDT -vincendp,2024-03-16T01:56:28Z,- vincendp opened pull request: [6469](https://github.com/hackforla/website/pull/6469) at 2024-03-15 06:56 PM PDT -vincendp,2024-03-16T04:12:05Z,- vincendp commented on pull request: [6469](https://github.com/hackforla/website/pull/6469#issuecomment-2001571459) at 2024-03-15 09:12 PM PDT -vincendp,2024-03-17T16:43:23Z,- vincendp pull request merged: [6469](https://github.com/hackforla/website/pull/6469#event-12143427447) at 2024-03-17 09:43 AM PDT -vincendp,2024-03-22T07:03:11Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2014476063) at 2024-03-22 12:03 AM PDT -vincendp,2024-03-23T00:28:31Z,- vincendp commented on issue: [6337](https://github.com/hackforla/website/issues/6337#issuecomment-2016222458) at 2024-03-22 05:28 PM PDT -vincendp,2024-03-23T01:58:12Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2016303751) at 2024-03-22 06:58 PM PDT -vincendp,2024-03-23T03:36:27Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2016329937) at 2024-03-22 08:36 PM PDT -vincendp,2024-03-25T16:05:31Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2018361056) at 2024-03-25 09:05 AM PDT -vincendp,2024-03-25T17:11:42Z,- vincendp commented on pull request: [6504](https://github.com/hackforla/website/pull/6504#issuecomment-2018499946) at 2024-03-25 10:11 AM PDT -vincendp,2024-03-25T17:19:03Z,- vincendp assigned to issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2008717262) at 2024-03-25 10:19 AM PDT -vincendp,2024-03-25T17:20:43Z,- vincendp commented on issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2018516018) at 2024-03-25 10:20 AM PDT -vincendp,2024-03-27T21:43:39Z,- vincendp commented on issue: [6483](https://github.com/hackforla/website/issues/6483#issuecomment-2024043084) at 2024-03-27 02:43 PM PDT -vincendp,2024-03-27T21:58:52Z,- vincendp opened pull request: [6538](https://github.com/hackforla/website/pull/6538) at 2024-03-27 02:58 PM PDT -vincendp,2024-04-05T06:34:44Z,- vincendp pull request merged: [6538](https://github.com/hackforla/website/pull/6538#event-12368597694) at 2024-04-04 11:34 PM PDT -vincentdang,3830,SKILLS ISSUE -vincentdang,2023-01-17T04:17:02Z,- vincentdang opened issue: [3830](https://github.com/hackforla/website/issues/3830) at 2023-01-16 08:17 PM PST -vincentdang,2023-01-17T04:28:41Z,- vincentdang assigned to issue: [3830](https://github.com/hackforla/website/issues/3830) at 2023-01-16 08:28 PM PST -vincentdang,2023-01-18T04:11:25Z,- vincentdang commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1386460013) at 2023-01-17 08:11 PM PST -vincentdang,2023-01-18T04:56:43Z,- vincentdang commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1386488069) at 2023-01-17 08:56 PM PST -vincentdang,2023-01-18T05:00:05Z,- vincentdang commented on pull request: [3836](https://github.com/hackforla/website/pull/3836#issuecomment-1386490126) at 2023-01-17 09:00 PM PST -vincentdang,2023-01-22T11:41:58Z,- vincentdang submitted pull request review: [3836](https://github.com/hackforla/website/pull/3836#pullrequestreview-1264754587) at 2023-01-22 03:41 AM PST -vincentdang,2023-03-23T20:47:33Z,- vincentdang assigned to issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1451051775) at 2023-03-23 01:47 PM PDT -vincentdang,2023-03-23T20:50:06Z,- vincentdang commented on issue: [2833](https://github.com/hackforla/website/issues/2833#issuecomment-1481878672) at 2023-03-23 01:50 PM PDT -vincentdang,2023-03-24T00:54:30Z,- vincentdang opened pull request: [4266](https://github.com/hackforla/website/pull/4266) at 2023-03-23 05:54 PM PDT -vincentdang,2023-03-24T03:02:31Z,- vincentdang opened pull request: [4273](https://github.com/hackforla/website/pull/4273) at 2023-03-23 08:02 PM PDT -vincentdang,2023-03-25T22:17:02Z,- vincentdang pull request closed w/o merging: [4266](https://github.com/hackforla/website/pull/4266#event-8846112799) at 2023-03-25 03:17 PM PDT -vincentdang,2023-04-06T03:40:51Z,- vincentdang commented on pull request: [4273](https://github.com/hackforla/website/pull/4273#issuecomment-1498447866) at 2023-04-05 08:40 PM PDT -vincentdang,2023-04-06T04:15:20Z,- vincentdang pull request merged: [4273](https://github.com/hackforla/website/pull/4273#event-8941439565) at 2023-04-05 09:15 PM PDT -vincentdang,2023-04-07T06:00:14Z,- vincentdang assigned to issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1482136903) at 2023-04-06 11:00 PM PDT -vincentdang,2023-04-07T06:13:15Z,- vincentdang commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1499976135) at 2023-04-06 11:13 PM PDT -vincentdang,2023-04-12T00:00:04Z,- vincentdang commented on issue: [4250](https://github.com/hackforla/website/issues/4250#issuecomment-1504293344) at 2023-04-11 05:00 PM PDT -vincentdang,2023-04-12T07:33:26Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1504802927) at 2023-04-12 12:33 AM PDT -vincentdang,2023-04-12T07:35:22Z,- vincentdang reopened issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1504802927) at 2023-04-12 12:35 AM PDT -vincentdang,2023-04-12T07:38:36Z,- vincentdang commented on pull request: [4266](https://github.com/hackforla/website/pull/4266#issuecomment-1504808668) at 2023-04-12 12:38 AM PDT -vincentdang,2023-04-23T22:24:24Z,- vincentdang assigned to issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1499453729) at 2023-04-23 03:24 PM PDT -vincentdang,2023-04-23T22:34:22Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1519183862) at 2023-04-23 03:34 PM PDT -vincentdang,2023-04-25T04:20:06Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1521134624) at 2023-04-24 09:20 PM PDT -vincentdang,2023-04-26T21:04:09Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1524043687) at 2023-04-26 02:04 PM PDT -vincentdang,2023-04-29T01:19:36Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1528384389) at 2023-04-28 06:19 PM PDT -vincentdang,2023-05-08T03:39:10Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1537692926) at 2023-05-07 08:39 PM PDT -vincentdang,2023-05-13T20:07:52Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1546741669) at 2023-05-13 01:07 PM PDT -vincentdang,2023-05-19T07:25:30Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1554156541) at 2023-05-19 12:25 AM PDT -vincentdang,2023-05-19T18:15:50Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1555056670) at 2023-05-19 11:15 AM PDT -vincentdang,2023-05-19T18:19:14Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1555060489) at 2023-05-19 11:19 AM PDT -vincentdang,2023-05-21T05:59:26Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1556091912) at 2023-05-20 10:59 PM PDT -vincentdang,2023-05-28T06:34:38Z,- vincentdang commented on issue: [4423](https://github.com/hackforla/website/issues/4423#issuecomment-1565934674) at 2023-05-27 11:34 PM PDT -vincentdang,2023-06-23T00:08:30Z,- vincentdang assigned to issue: [4793](https://github.com/hackforla/website/issues/4793) at 2023-06-22 05:08 PM PDT -vincentdang,2023-06-23T00:12:56Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1603463448) at 2023-06-22 05:12 PM PDT -vincentdang,2023-06-30T00:24:47Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1613949157) at 2023-06-29 05:24 PM PDT -vincentdang,2023-07-06T02:19:26Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1622854484) at 2023-07-05 07:19 PM PDT -vincentdang,2023-07-09T02:12:20Z,- vincentdang commented on issue: [4793](https://github.com/hackforla/website/issues/4793#issuecomment-1627573737) at 2023-07-08 07:12 PM PDT -vincentdang,2023-07-11T12:38:14Z,- vincentdang assigned to issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1549999356) at 2023-07-11 05:38 AM PDT -vincentdang,2023-07-11T12:40:19Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1630752807) at 2023-07-11 05:40 AM PDT -vincentdang,2023-07-12T15:46:07Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1632784490) at 2023-07-12 08:46 AM PDT -vincentdang,2023-07-13T14:52:03Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1634387481) at 2023-07-13 07:52 AM PDT -vincentdang,2023-07-14T00:33:00Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1635090336) at 2023-07-13 05:33 PM PDT -vincentdang,2023-07-16T13:56:49Z,- vincentdang opened pull request: [4952](https://github.com/hackforla/website/pull/4952) at 2023-07-16 06:56 AM PDT -vincentdang,2023-07-16T13:59:53Z,- vincentdang pull request closed w/o merging: [4952](https://github.com/hackforla/website/pull/4952#event-9831187029) at 2023-07-16 06:59 AM PDT -vincentdang,2023-07-16T14:00:28Z,- vincentdang commented on pull request: [4952](https://github.com/hackforla/website/pull/4952#issuecomment-1637091971) at 2023-07-16 07:00 AM PDT -vincentdang,2023-07-16T14:06:00Z,- vincentdang opened pull request: [4953](https://github.com/hackforla/website/pull/4953) at 2023-07-16 07:06 AM PDT -vincentdang,2023-07-16T17:17:25Z,- vincentdang commented on pull request: [4651](https://github.com/hackforla/website/pull/4651#issuecomment-1637143248) at 2023-07-16 10:17 AM PDT -vincentdang,2023-07-16T18:00:57Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1637152671) at 2023-07-16 11:00 AM PDT -vincentdang,2023-07-16T18:10:20Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1637154465) at 2023-07-16 11:10 AM PDT -vincentdang,2023-07-17T01:24:25Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1637263939) at 2023-07-16 06:24 PM PDT -vincentdang,2023-07-18T03:22:53Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1639274719) at 2023-07-17 08:22 PM PDT -vincentdang,2023-07-29T01:48:04Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1656512312) at 2023-07-28 06:48 PM PDT -vincentdang,2023-07-29T02:00:06Z,- vincentdang commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1656516050) at 2023-07-28 07:00 PM PDT -vincentdang,2023-07-29T02:06:22Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1656517585) at 2023-07-28 07:06 PM PDT -vincentdang,2023-07-29T02:08:22Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1656518240) at 2023-07-28 07:08 PM PDT -vincentdang,2023-07-29T02:12:19Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1656519669) at 2023-07-28 07:12 PM PDT -vincentdang,2023-08-01T01:17:47Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1659421120) at 2023-07-31 06:17 PM PDT -vincentdang,2023-08-02T23:40:24Z,- vincentdang commented on issue: [4485](https://github.com/hackforla/website/issues/4485#issuecomment-1663100424) at 2023-08-02 04:40 PM PDT -vincentdang,2023-08-08T02:09:23Z,- vincentdang opened pull request: [5162](https://github.com/hackforla/website/pull/5162) at 2023-08-07 07:09 PM PDT -vincentdang,2023-08-08T02:10:35Z,- vincentdang commented on pull request: [4953](https://github.com/hackforla/website/pull/4953#issuecomment-1668804415) at 2023-08-07 07:10 PM PDT -vincentdang,2023-08-09T16:13:27Z,- vincentdang pull request merged: [5162](https://github.com/hackforla/website/pull/5162#event-10049709263) at 2023-08-09 09:13 AM PDT -vincentdang,2023-08-09T16:18:11Z,- vincentdang pull request closed w/o merging: [4953](https://github.com/hackforla/website/pull/4953#event-10049755042) at 2023-08-09 09:18 AM PDT -vincentdang,2023-08-13T05:35:58Z,- vincentdang commented on pull request: [5162](https://github.com/hackforla/website/pull/5162#issuecomment-1676236683) at 2023-08-12 10:35 PM PDT -vincentdang,2023-08-13T05:38:43Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1676237230) at 2023-08-12 10:38 PM PDT -vincentdang,2023-08-18T01:55:42Z,- vincentdang commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1683220497) at 2023-08-17 06:55 PM PDT -vincentdang,2023-08-18T23:27:19Z,- vincentdang commented on issue: [3229](https://github.com/hackforla/website/issues/3229#issuecomment-1684546506) at 2023-08-18 04:27 PM PDT -vincentdang,2023-08-22T15:46:30Z,- vincentdang commented on issue: [2228](https://github.com/hackforla/website/issues/2228#issuecomment-1688466952) at 2023-08-22 08:46 AM PDT -vincentdang,2023-11-08T06:18:28Z,- vincentdang commented on issue: [3830](https://github.com/hackforla/website/issues/3830#issuecomment-1801160796) at 2023-11-07 10:18 PM PST -vinfinity7,2023-08-29T20:03:46Z,- vinfinity7 commented on issue: [5329](https://github.com/hackforla/website/issues/5329#issuecomment-1698054318) at 2023-08-29 01:03 PM PDT -Vinny02,5076,SKILLS ISSUE -Vinny02,2023-07-26T03:04:23Z,- Vinny02 opened issue: [5076](https://github.com/hackforla/website/issues/5076) at 2023-07-25 08:04 PM PDT -Vinny02,2023-07-26T03:04:30Z,- Vinny02 assigned to issue: [5076](https://github.com/hackforla/website/issues/5076) at 2023-07-25 08:04 PM PDT -Vinny02,2023-07-30T17:46:56Z,- Vinny02 assigned to issue: [5029](https://github.com/hackforla/website/issues/5029) at 2023-07-30 10:46 AM PDT -Vinny02,2023-07-30T17:47:12Z,- Vinny02 unassigned from issue: [5029](https://github.com/hackforla/website/issues/5029#issuecomment-1657229218) at 2023-07-30 10:47 AM PDT -Vinny02,2023-07-30T17:47:58Z,- Vinny02 assigned to issue: [5029](https://github.com/hackforla/website/issues/5029#issuecomment-1657229218) at 2023-07-30 10:47 AM PDT -Vinny02,2023-07-30T18:03:08Z,- Vinny02 opened pull request: [5117](https://github.com/hackforla/website/pull/5117) at 2023-07-30 11:03 AM PDT -Vinny02,2023-07-31T07:38:29Z,- Vinny02 commented on pull request: [5117](https://github.com/hackforla/website/pull/5117#issuecomment-1657836284) at 2023-07-31 12:38 AM PDT -Vinny02,2023-07-31T12:18:34Z,- Vinny02 commented on issue: [5076](https://github.com/hackforla/website/issues/5076#issuecomment-1658262156) at 2023-07-31 05:18 AM PDT -Vinny02,2023-07-31T12:27:17Z,- Vinny02 closed issue as completed: [5076](https://github.com/hackforla/website/issues/5076#event-9963272168) at 2023-07-31 05:27 AM PDT -Vinny02,2023-07-31T22:39:27Z,- Vinny02 pull request merged: [5117](https://github.com/hackforla/website/pull/5117#event-9969813548) at 2023-07-31 03:39 PM PDT -Vinny02,2023-07-31T23:13:47Z,- Vinny02 assigned to issue: [4801](https://github.com/hackforla/website/issues/4801) at 2023-07-31 04:13 PM PDT -Vinny02,2023-07-31T23:55:04Z,- Vinny02 opened pull request: [5123](https://github.com/hackforla/website/pull/5123) at 2023-07-31 04:55 PM PDT -Vinny02,2023-08-01T03:51:51Z,- Vinny02 commented on issue: [4818](https://github.com/hackforla/website/issues/4818#issuecomment-1659523289) at 2023-07-31 08:51 PM PDT -Vinny02,2023-08-03T04:00:43Z,- Vinny02 assigned to issue: [4957](https://github.com/hackforla/website/issues/4957) at 2023-08-02 09:00 PM PDT -Vinny02,2023-08-03T04:31:25Z,- Vinny02 commented on issue: [4957](https://github.com/hackforla/website/issues/4957#issuecomment-1663274508) at 2023-08-02 09:31 PM PDT -Vinny02,2023-08-03T04:37:45Z,- Vinny02 commented on issue: [4957](https://github.com/hackforla/website/issues/4957#issuecomment-1663278430) at 2023-08-02 09:37 PM PDT -Vinny02,2023-08-07T01:09:05Z,- Vinny02 commented on pull request: [5123](https://github.com/hackforla/website/pull/5123#issuecomment-1667041239) at 2023-08-06 06:09 PM PDT -Vinny02,2023-08-09T07:52:46Z,- Vinny02 pull request merged: [5123](https://github.com/hackforla/website/pull/5123#event-10043592855) at 2023-08-09 12:52 AM PDT -Vinny02,2023-08-15T16:14:56Z,- Vinny02 commented on pull request: [5203](https://github.com/hackforla/website/pull/5203#issuecomment-1679233041) at 2023-08-15 09:14 AM PDT -Vinny02,2023-08-15T16:20:05Z,- Vinny02 submitted pull request review: [5203](https://github.com/hackforla/website/pull/5203#pullrequestreview-1578955571) at 2023-08-15 09:20 AM PDT -Vinny02,2023-08-16T23:35:40Z,- Vinny02 commented on pull request: [5240](https://github.com/hackforla/website/pull/5240#issuecomment-1681398529) at 2023-08-16 04:35 PM PDT -Vinny02,2023-08-16T23:49:18Z,- Vinny02 submitted pull request review: [5240](https://github.com/hackforla/website/pull/5240#pullrequestreview-1581576405) at 2023-08-16 04:49 PM PDT -Vinny02,2023-08-17T15:59:37Z,- Vinny02 commented on pull request: [5243](https://github.com/hackforla/website/pull/5243#issuecomment-1682538161) at 2023-08-17 08:59 AM PDT -Vinny02,2023-08-17T16:01:48Z,- Vinny02 submitted pull request review: [5243](https://github.com/hackforla/website/pull/5243#pullrequestreview-1582958597) at 2023-08-17 09:01 AM PDT -Vinny02,2023-08-17T17:35:05Z,- Vinny02 submitted pull request review: [5240](https://github.com/hackforla/website/pull/5240#pullrequestreview-1583136738) at 2023-08-17 10:35 AM PDT -Vinny02,2023-08-17T17:39:11Z,- Vinny02 commented on pull request: [5240](https://github.com/hackforla/website/pull/5240#issuecomment-1682702477) at 2023-08-17 10:39 AM PDT -Vinny02,2023-08-18T12:19:20Z,- Vinny02 commented on pull request: [5247](https://github.com/hackforla/website/pull/5247#issuecomment-1683836872) at 2023-08-18 05:19 AM PDT -Vinny02,2023-08-18T12:24:19Z,- Vinny02 submitted pull request review: [5247](https://github.com/hackforla/website/pull/5247#pullrequestreview-1584473279) at 2023-08-18 05:24 AM PDT -Vinny02,2023-08-19T21:19:02Z,- Vinny02 submitted pull request review: [5247](https://github.com/hackforla/website/pull/5247#pullrequestreview-1585759379) at 2023-08-19 02:19 PM PDT -Vinny02,2023-08-19T21:23:17Z,- Vinny02 commented on pull request: [5257](https://github.com/hackforla/website/pull/5257#issuecomment-1685114801) at 2023-08-19 02:23 PM PDT -Vinny02,2023-08-19T21:31:46Z,- Vinny02 submitted pull request review: [5257](https://github.com/hackforla/website/pull/5257#pullrequestreview-1585760135) at 2023-08-19 02:31 PM PDT -Vinny02,2023-08-29T20:14:31Z,- Vinny02 commented on pull request: [5331](https://github.com/hackforla/website/pull/5331#issuecomment-1698066318) at 2023-08-29 01:14 PM PDT -Vinny02,2023-08-29T20:15:36Z,- Vinny02 submitted pull request review: [5331](https://github.com/hackforla/website/pull/5331#pullrequestreview-1601208767) at 2023-08-29 01:15 PM PDT -Vinny02,2023-09-08T10:55:40Z,- Vinny02 commented on pull request: [5457](https://github.com/hackforla/website/pull/5457#issuecomment-1711476858) at 2023-09-08 03:55 AM PDT -Vinny02,2023-09-08T11:16:20Z,- Vinny02 submitted pull request review: [5457](https://github.com/hackforla/website/pull/5457#pullrequestreview-1617249502) at 2023-09-08 04:16 AM PDT -vishnubansal001,2023-05-26T18:21:03Z,- vishnubansal001 commented on issue: [4707](https://github.com/hackforla/website/issues/4707#issuecomment-1564760300) at 2023-05-26 11:21 AM PDT -vivvvnguyen,5870,SKILLS ISSUE -vivvvnguyen,2023-11-07T04:24:36Z,- vivvvnguyen opened issue: [5870](https://github.com/hackforla/website/issues/5870) at 2023-11-06 08:24 PM PST -vivvvnguyen,2023-11-07T04:24:48Z,- vivvvnguyen assigned to issue: [5870](https://github.com/hackforla/website/issues/5870) at 2023-11-06 08:24 PM PST -VJ1285,2021-02-25T15:28:06Z,- VJ1285 opened issue: [1119](https://github.com/hackforla/website/issues/1119) at 2021-02-25 07:28 AM PST -VJ1285,2021-03-06T01:43:54Z,- VJ1285 commented on issue: [838](https://github.com/hackforla/website/issues/838#issuecomment-791833986) at 2021-03-05 05:43 PM PST -VJ1285,2021-03-18T01:54:06Z,- VJ1285 commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801556554) at 2021-03-17 06:54 PM PDT -VJ1285,2021-03-18T02:10:59Z,- VJ1285 commented on issue: [1119](https://github.com/hackforla/website/issues/1119#issuecomment-801562412) at 2021-03-17 07:10 PM PDT -vmaineng,3683,SKILLS ISSUE -vmaineng,2022-11-01T02:14:56Z,- vmaineng opened issue: [3683](https://github.com/hackforla/website/issues/3683) at 2022-10-31 07:14 PM PDT -vmaineng,2022-11-27T07:18:14Z,- vmaineng assigned to issue: [3683](https://github.com/hackforla/website/issues/3683) at 2022-11-26 11:18 PM PST -vmaineng,2022-12-02T21:44:38Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1335872594) at 2022-12-02 01:44 PM PST -vmaineng,2022-12-18T21:53:59Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1356883986) at 2022-12-18 01:53 PM PST -vmaineng,2023-01-03T21:41:23Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1370252170) at 2023-01-03 01:41 PM PST -vmaineng,2023-01-13T17:31:44Z,- vmaineng assigned to issue: [2276](https://github.com/hackforla/website/issues/2276#issuecomment-926948199) at 2023-01-13 09:31 AM PST -vmaineng,2023-01-13T20:14:21Z,- vmaineng opened pull request: [3814](https://github.com/hackforla/website/pull/3814) at 2023-01-13 12:14 PM PST -vmaineng,2023-01-13T20:17:02Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1382344592) at 2023-01-13 12:17 PM PST -vmaineng,2023-01-13T20:17:03Z,- vmaineng closed issue as completed: [3683](https://github.com/hackforla/website/issues/3683#event-8224121808) at 2023-01-13 12:17 PM PST -vmaineng,2023-01-13T20:18:06Z,- vmaineng commented on issue: [2276](https://github.com/hackforla/website/issues/2276#issuecomment-1382345547) at 2023-01-13 12:18 PM PST -vmaineng,2023-01-13T20:25:58Z,- vmaineng reopened issue: [3683](https://github.com/hackforla/website/issues/3683#event-8224121808) at 2023-01-13 12:25 PM PST -vmaineng,2023-01-16T16:29:51Z,- vmaineng commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1384294664) at 2023-01-16 08:29 AM PST -vmaineng,2023-01-16T22:41:15Z,- vmaineng commented on pull request: [3814](https://github.com/hackforla/website/pull/3814#issuecomment-1384637272) at 2023-01-16 02:41 PM PST -vmaineng,2023-01-20T14:54:06Z,- vmaineng pull request merged: [3814](https://github.com/hackforla/website/pull/3814#event-8322185100) at 2023-01-20 06:54 AM PST -vmaineng,2023-01-23T22:46:38Z,- vmaineng assigned to issue: [3792](https://github.com/hackforla/website/issues/3792) at 2023-01-23 02:46 PM PST -vmaineng,2023-01-24T00:40:16Z,- vmaineng commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1401210621) at 2023-01-23 04:40 PM PST -vmaineng,2023-01-24T00:48:55Z,- vmaineng commented on issue: [3683](https://github.com/hackforla/website/issues/3683#issuecomment-1401217083) at 2023-01-23 04:48 PM PST -vmaineng,2023-01-25T01:20:05Z,- vmaineng opened pull request: [3871](https://github.com/hackforla/website/pull/3871) at 2023-01-24 05:20 PM PST -vmaineng,2023-01-25T01:21:56Z,- vmaineng commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1402917296) at 2023-01-24 05:21 PM PST -vmaineng,2023-01-27T04:00:48Z,- vmaineng pull request closed w/o merging: [3871](https://github.com/hackforla/website/pull/3871#event-8369854758) at 2023-01-26 08:00 PM PST -vmaineng,2023-01-27T04:11:35Z,- vmaineng opened pull request: [3883](https://github.com/hackforla/website/pull/3883) at 2023-01-26 08:11 PM PST -vmaineng,2023-01-27T04:12:28Z,- vmaineng commented on issue: [3792](https://github.com/hackforla/website/issues/3792#issuecomment-1405995215) at 2023-01-26 08:12 PM PST -vmaineng,2023-01-31T01:48:34Z,- vmaineng commented on pull request: [3883](https://github.com/hackforla/website/pull/3883#issuecomment-1409623658) at 2023-01-30 05:48 PM PST -vmaineng,2023-02-01T05:26:25Z,- vmaineng pull request merged: [3883](https://github.com/hackforla/website/pull/3883#event-8406528988) at 2023-01-31 09:26 PM PST -vmaineng,2023-02-01T16:58:27Z,- vmaineng commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1412394029) at 2023-02-01 08:58 AM PST -vmaineng,2023-02-01T20:32:25Z,- vmaineng commented on pull request: [3907](https://github.com/hackforla/website/pull/3907#issuecomment-1412685266) at 2023-02-01 12:32 PM PST -vmaineng,2023-02-01T20:37:18Z,- vmaineng submitted pull request review: [3907](https://github.com/hackforla/website/pull/3907#pullrequestreview-1279827882) at 2023-02-01 12:37 PM PST -vmaineng,2023-02-13T00:50:50Z,- vmaineng assigned to issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1414615124) at 2023-02-12 04:50 PM PST -vmaineng,2023-02-13T00:52:27Z,- vmaineng commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1427186603) at 2023-02-12 04:52 PM PST -vmaineng,2023-02-14T20:14:17Z,- vmaineng commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1430318210) at 2023-02-14 12:14 PM PST -vmaineng,2023-02-15T01:51:53Z,- vmaineng opened pull request: [3978](https://github.com/hackforla/website/pull/3978) at 2023-02-14 05:51 PM PST -vmaineng,2023-02-15T01:53:24Z,- vmaineng commented on issue: [3110](https://github.com/hackforla/website/issues/3110#issuecomment-1430639780) at 2023-02-14 05:53 PM PST -vmaineng,2023-02-16T16:23:21Z,- vmaineng commented on pull request: [3978](https://github.com/hackforla/website/pull/3978#issuecomment-1433354522) at 2023-02-16 08:23 AM PST -vmaineng,2023-02-17T02:07:12Z,- vmaineng pull request merged: [3978](https://github.com/hackforla/website/pull/3978#event-8542861532) at 2023-02-16 06:07 PM PST -vmaineng,2023-02-21T01:02:06Z,- vmaineng assigned to issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1428972228) at 2023-02-20 05:02 PM PST -vmaineng,2023-02-21T01:04:30Z,- vmaineng commented on issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1437720862) at 2023-02-20 05:04 PM PST -vmaineng,2023-02-21T01:17:41Z,- vmaineng commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1437729418) at 2023-02-20 05:17 PM PST -vmaineng,2023-02-21T01:35:56Z,- vmaineng commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1437742422) at 2023-02-20 05:35 PM PST -vmaineng,2023-02-21T19:29:06Z,- vmaineng unassigned from issue: [3922](https://github.com/hackforla/website/issues/3922#issuecomment-1437720862) at 2023-02-21 11:29 AM PST -vmaineng,2023-02-21T22:42:13Z,- vmaineng commented on pull request: [4017](https://github.com/hackforla/website/pull/4017#issuecomment-1439186193) at 2023-02-21 02:42 PM PST -vmaineng,2023-03-06T20:57:04Z,- vmaineng commented on pull request: [4099](https://github.com/hackforla/website/pull/4099#issuecomment-1456982349) at 2023-03-06 12:57 PM PST -vmaineng,2023-03-06T21:31:34Z,- vmaineng submitted pull request review: [4099](https://github.com/hackforla/website/pull/4099#pullrequestreview-1327223395) at 2023-03-06 01:31 PM PST -vorleakyek,7339,SKILLS ISSUE -vorleakyek,2024-08-21T05:09:30Z,- vorleakyek opened issue: [7339](https://github.com/hackforla/website/issues/7339) at 2024-08-20 10:09 PM PDT -vorleakyek,2024-08-21T05:09:45Z,- vorleakyek assigned to issue: [7339](https://github.com/hackforla/website/issues/7339) at 2024-08-20 10:09 PM PDT -vorleakyek,2024-08-22T01:13:09Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2303379490) at 2024-08-21 06:13 PM PDT -vorleakyek,2024-08-22T03:51:38Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2303620333) at 2024-08-21 08:51 PM PDT -vorleakyek,2024-08-22T04:40:28Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2303734665) at 2024-08-21 09:40 PM PDT -vorleakyek,2024-08-22T22:29:40Z,- vorleakyek assigned to issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2272517253) at 2024-08-22 03:29 PM PDT -vorleakyek,2024-08-23T02:05:56Z,- vorleakyek commented on issue: [7170](https://github.com/hackforla/website/issues/7170#issuecomment-2306051105) at 2024-08-22 07:05 PM PDT -vorleakyek,2024-08-23T02:12:54Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2306056924) at 2024-08-22 07:12 PM PDT -vorleakyek,2024-08-23T02:23:20Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2306064917) at 2024-08-22 07:23 PM PDT -vorleakyek,2024-08-24T04:44:29Z,- vorleakyek opened pull request: [7347](https://github.com/hackforla/website/pull/7347) at 2024-08-23 09:44 PM PDT -vorleakyek,2024-08-25T08:30:36Z,- vorleakyek pull request merged: [7347](https://github.com/hackforla/website/pull/7347#event-14003609839) at 2024-08-25 01:30 AM PDT -vorleakyek,2024-08-25T20:17:49Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2308980143) at 2024-08-25 01:17 PM PDT -vorleakyek,2024-08-25T20:49:48Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2308988979) at 2024-08-25 01:49 PM PDT -vorleakyek,2024-08-25T20:54:54Z,- vorleakyek assigned to issue: [7240](https://github.com/hackforla/website/issues/7240) at 2024-08-25 01:54 PM PDT -vorleakyek,2024-08-25T21:07:17Z,- vorleakyek commented on issue: [7240](https://github.com/hackforla/website/issues/7240#issuecomment-2308993976) at 2024-08-25 02:07 PM PDT -vorleakyek,2024-08-25T23:17:53Z,- vorleakyek opened pull request: [7350](https://github.com/hackforla/website/pull/7350) at 2024-08-25 04:17 PM PDT -vorleakyek,2024-08-27T02:57:11Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2311471184) at 2024-08-26 07:57 PM PDT -vorleakyek,2024-08-27T05:00:50Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2311575895) at 2024-08-26 10:00 PM PDT -vorleakyek,2024-08-27T05:07:12Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2311581794) at 2024-08-26 10:07 PM PDT -vorleakyek,2024-08-27T05:09:29Z,- vorleakyek assigned to issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2309340091) at 2024-08-26 10:09 PM PDT -vorleakyek,2024-08-27T05:09:46Z,- vorleakyek unassigned from issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:09 PM PDT -vorleakyek,2024-08-27T05:14:07Z,- vorleakyek assigned to issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:14 PM PDT -vorleakyek,2024-08-27T05:14:21Z,- vorleakyek unassigned from issue: [7145](https://github.com/hackforla/website/issues/7145#issuecomment-2311584254) at 2024-08-26 10:14 PM PDT -vorleakyek,2024-08-27T17:06:38Z,- vorleakyek pull request merged: [7350](https://github.com/hackforla/website/pull/7350#event-14032300966) at 2024-08-27 10:06 AM PDT -vorleakyek,2024-08-27T22:05:52Z,- vorleakyek commented on pull request: [7350](https://github.com/hackforla/website/pull/7350#issuecomment-2313657950) at 2024-08-27 03:05 PM PDT -vorleakyek,2024-08-27T22:07:34Z,- vorleakyek assigned to issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2311480634) at 2024-08-27 03:07 PM PDT -vorleakyek,2024-08-27T22:10:28Z,- vorleakyek commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2313664135) at 2024-08-27 03:10 PM PDT -vorleakyek,2024-08-28T05:10:03Z,- vorleakyek commented on issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2314328463) at 2024-08-27 10:10 PM PDT -vorleakyek,2024-08-29T01:39:40Z,- vorleakyek submitted pull request review: [7345](https://github.com/hackforla/website/pull/7345#pullrequestreview-2267522605) at 2024-08-28 06:39 PM PDT -vorleakyek,2024-08-29T01:49:07Z,- vorleakyek submitted pull request review: [7315](https://github.com/hackforla/website/pull/7315#pullrequestreview-2267529534) at 2024-08-28 06:49 PM PDT -vorleakyek,2024-08-29T01:50:33Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2316561573) at 2024-08-28 06:50 PM PDT -vorleakyek,2024-08-29T02:37:32Z,- vorleakyek unassigned from issue: [7095](https://github.com/hackforla/website/issues/7095#issuecomment-2314328463) at 2024-08-28 07:37 PM PDT -vorleakyek,2024-08-29T02:37:36Z,- vorleakyek assigned to issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2308865372) at 2024-08-28 07:37 PM PDT -vorleakyek,2024-08-29T02:40:01Z,- vorleakyek commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2316604797) at 2024-08-28 07:40 PM PDT -vorleakyek,2024-08-29T03:49:18Z,- vorleakyek commented on issue: [6590](https://github.com/hackforla/website/issues/6590#issuecomment-2316660083) at 2024-08-28 08:49 PM PDT -vorleakyek,2024-08-29T03:52:16Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2316662134) at 2024-08-28 08:52 PM PDT -vorleakyek,2024-08-29T04:02:00Z,- vorleakyek commented on pull request: [7341](https://github.com/hackforla/website/pull/7341#issuecomment-2316669241) at 2024-08-28 09:02 PM PDT -vorleakyek,2024-08-30T02:53:27Z,- vorleakyek submitted pull request review: [7341](https://github.com/hackforla/website/pull/7341#pullrequestreview-2270866225) at 2024-08-29 07:53 PM PDT -vorleakyek,2024-08-30T02:55:02Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2319755217) at 2024-08-29 07:55 PM PDT -vorleakyek,2024-08-30T03:59:38Z,- vorleakyek commented on pull request: [7360](https://github.com/hackforla/website/pull/7360#issuecomment-2319964163) at 2024-08-29 08:59 PM PDT -vorleakyek,2024-08-30T21:53:50Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322394298) at 2024-08-30 02:53 PM PDT -vorleakyek,2024-08-31T03:24:09Z,- vorleakyek submitted pull request review: [7360](https://github.com/hackforla/website/pull/7360#pullrequestreview-2273735544) at 2024-08-30 08:24 PM PDT -vorleakyek,2024-08-31T03:25:48Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322749078) at 2024-08-30 08:25 PM PDT -vorleakyek,2024-08-31T03:49:21Z,- vorleakyek submitted pull request review: [7368](https://github.com/hackforla/website/pull/7368#pullrequestreview-2273741353) at 2024-08-30 08:49 PM PDT -vorleakyek,2024-08-31T03:52:46Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322755107) at 2024-08-30 08:52 PM PDT -vorleakyek,2024-08-31T04:05:28Z,- vorleakyek submitted pull request review: [7370](https://github.com/hackforla/website/pull/7370#pullrequestreview-2273743215) at 2024-08-30 09:05 PM PDT -vorleakyek,2024-08-31T04:07:12Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322758429) at 2024-08-30 09:07 PM PDT -vorleakyek,2024-08-31T04:39:22Z,- vorleakyek submitted pull request review: [7371](https://github.com/hackforla/website/pull/7371#pullrequestreview-2273750379) at 2024-08-30 09:39 PM PDT -vorleakyek,2024-08-31T04:41:19Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2322768401) at 2024-08-30 09:41 PM PDT -vorleakyek,2024-08-31T04:46:00Z,- vorleakyek commented on pull request: [7359](https://github.com/hackforla/website/pull/7359#issuecomment-2322769722) at 2024-08-30 09:46 PM PDT -vorleakyek,2024-09-02T03:47:50Z,- vorleakyek commented on pull request: [7375](https://github.com/hackforla/website/pull/7375#issuecomment-2323757962) at 2024-09-01 08:47 PM PDT -vorleakyek,2024-09-02T04:34:16Z,- vorleakyek submitted pull request review: [7359](https://github.com/hackforla/website/pull/7359#pullrequestreview-2274656650) at 2024-09-01 09:34 PM PDT -vorleakyek,2024-09-02T04:41:13Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2323801196) at 2024-09-01 09:41 PM PDT -vorleakyek,2024-09-04T01:16:04Z,- vorleakyek assigned to issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2290006846) at 2024-09-03 06:16 PM PDT -vorleakyek,2024-09-04T01:34:19Z,- vorleakyek opened issue: [7384](https://github.com/hackforla/website/issues/7384) at 2024-09-03 06:34 PM PDT -vorleakyek,2024-09-04T01:42:02Z,- vorleakyek commented on issue: [7268](https://github.com/hackforla/website/issues/7268#issuecomment-2327744611) at 2024-09-03 06:42 PM PDT -vorleakyek,2024-09-04T01:55:22Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2327755893) at 2024-09-03 06:55 PM PDT -vorleakyek,2024-09-04T02:00:53Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2327761866) at 2024-09-03 07:00 PM PDT -vorleakyek,2024-09-04T02:06:17Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2327766312) at 2024-09-03 07:06 PM PDT -vorleakyek,2024-09-07T04:32:22Z,- vorleakyek submitted pull request review: [7385](https://github.com/hackforla/website/pull/7385#pullrequestreview-2287416450) at 2024-09-06 09:32 PM PDT -vorleakyek,2024-09-07T04:33:56Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2335037600) at 2024-09-06 09:33 PM PDT -vorleakyek,2024-09-15T17:12:02Z,- vorleakyek assigned to issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2322125583) at 2024-09-15 10:12 AM PDT -vorleakyek,2024-09-15T17:46:21Z,- vorleakyek commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2351698289) at 2024-09-15 10:46 AM PDT -vorleakyek,2024-09-16T23:09:54Z,- vorleakyek commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2354185397) at 2024-09-16 04:09 PM PDT -vorleakyek,2024-09-17T06:25:37Z,- vorleakyek opened pull request: [7467](https://github.com/hackforla/website/pull/7467) at 2024-09-16 11:25 PM PDT -vorleakyek,2024-09-17T06:30:48Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2354643991) at 2024-09-16 11:30 PM PDT -vorleakyek,2024-09-17T06:34:54Z,- vorleakyek commented on pull request: [7464](https://github.com/hackforla/website/pull/7464#issuecomment-2354653160) at 2024-09-16 11:34 PM PDT -vorleakyek,2024-09-17T06:37:36Z,- vorleakyek commented on pull request: [7463](https://github.com/hackforla/website/pull/7463#issuecomment-2354661124) at 2024-09-16 11:37 PM PDT -vorleakyek,2024-09-19T03:35:31Z,- vorleakyek submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2314318644) at 2024-09-18 08:35 PM PDT -vorleakyek,2024-09-19T03:47:01Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2359917315) at 2024-09-18 08:47 PM PDT -vorleakyek,2024-09-19T06:14:22Z,- vorleakyek commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2360077259) at 2024-09-18 11:14 PM PDT -vorleakyek,2024-09-19T20:56:39Z,- vorleakyek commented on pull request: [7467](https://github.com/hackforla/website/pull/7467#issuecomment-2362166620) at 2024-09-19 01:56 PM PDT -vorleakyek,2024-09-19T21:02:59Z,- vorleakyek commented on issue: [7304](https://github.com/hackforla/website/issues/7304#issuecomment-2362192369) at 2024-09-19 02:02 PM PDT -vorleakyek,2024-09-19T21:13:53Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2362209754) at 2024-09-19 02:13 PM PDT -vorleakyek,2024-09-20T03:03:27Z,- vorleakyek submitted pull request review: [7468](https://github.com/hackforla/website/pull/7468#pullrequestreview-2317141507) at 2024-09-19 08:03 PM PDT -vorleakyek,2024-09-20T03:05:07Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2362668981) at 2024-09-19 08:05 PM PDT -vorleakyek,2024-09-21T05:02:48Z,- vorleakyek submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2319653500) at 2024-09-20 10:02 PM PDT -vorleakyek,2024-09-23T19:28:06Z,- vorleakyek submitted pull request review: [7464](https://github.com/hackforla/website/pull/7464#pullrequestreview-2323135916) at 2024-09-23 12:28 PM PDT -vorleakyek,2024-09-26T20:45:46Z,- vorleakyek pull request merged: [7467](https://github.com/hackforla/website/pull/7467#event-14422401912) at 2024-09-26 01:45 PM PDT -vorleakyek,2024-10-08T01:35:56Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2398434121) at 2024-10-07 06:35 PM PDT -vorleakyek,2024-10-15T03:55:05Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2412842485) at 2024-10-14 08:55 PM PDT -vorleakyek,2024-10-24T04:24:51Z,- vorleakyek commented on issue: [7339](https://github.com/hackforla/website/issues/7339#issuecomment-2434252444) at 2024-10-23 09:24 PM PDT -vraer,4071,SKILLS ISSUE -vraer,2023-03-01T04:16:35Z,- vraer opened issue: [4071](https://github.com/hackforla/website/issues/4071) at 2023-02-28 08:16 PM PST -vraer,2023-03-01T04:16:36Z,- vraer assigned to issue: [4071](https://github.com/hackforla/website/issues/4071) at 2023-02-28 08:16 PM PST -vraer,2023-03-03T22:13:38Z,- vraer assigned to issue: [4036](https://github.com/hackforla/website/issues/4036) at 2023-03-03 02:13 PM PST -vraer,2023-03-04T01:53:39Z,- vraer opened pull request: [4106](https://github.com/hackforla/website/pull/4106) at 2023-03-03 05:53 PM PST -vraer,2023-03-04T02:24:17Z,- vraer commented on issue: [4071](https://github.com/hackforla/website/issues/4071#issuecomment-1454339686) at 2023-03-03 06:24 PM PST -vraer,2023-03-08T04:17:09Z,- vraer commented on pull request: [4106](https://github.com/hackforla/website/pull/4106#issuecomment-1459410744) at 2023-03-07 08:17 PM PST -vraer,2023-03-09T03:49:11Z,- vraer pull request merged: [4106](https://github.com/hackforla/website/pull/4106#event-8702909666) at 2023-03-08 07:49 PM PST -vraer,2023-03-09T06:24:07Z,- vraer assigned to issue: [4023](https://github.com/hackforla/website/issues/4023) at 2023-03-08 10:24 PM PST -vraer,2023-03-09T07:22:48Z,- vraer opened pull request: [4140](https://github.com/hackforla/website/pull/4140) at 2023-03-08 11:22 PM PST -vraer,2023-03-09T23:15:36Z,- vraer pull request merged: [4140](https://github.com/hackforla/website/pull/4140#event-8713283217) at 2023-03-09 03:15 PM PST -vraer,2023-03-18T20:57:00Z,- vraer assigned to issue: [3966](https://github.com/hackforla/website/issues/3966) at 2023-03-18 01:57 PM PDT -vraer,2023-03-18T22:10:30Z,- vraer opened pull request: [4209](https://github.com/hackforla/website/pull/4209) at 2023-03-18 03:10 PM PDT -vraer,2023-03-20T04:43:36Z,- vraer pull request merged: [4209](https://github.com/hackforla/website/pull/4209#event-8790144498) at 2023-03-19 09:43 PM PDT -vraer,2023-03-22T03:29:46Z,- vraer submitted pull request review: [4208](https://github.com/hackforla/website/pull/4208#pullrequestreview-1351668614) at 2023-03-21 08:29 PM PDT -vraer,2023-03-24T06:26:20Z,- vraer assigned to issue: [4236](https://github.com/hackforla/website/issues/4236#issuecomment-1480440129) at 2023-03-23 11:26 PM PDT -vraer,2023-03-24T07:44:56Z,- vraer opened pull request: [4275](https://github.com/hackforla/website/pull/4275) at 2023-03-24 12:44 AM PDT -vraer,2023-03-25T03:33:48Z,- vraer commented on pull request: [4275](https://github.com/hackforla/website/pull/4275#issuecomment-1483706140) at 2023-03-24 08:33 PM PDT -vraer,2023-03-26T16:52:06Z,- vraer pull request merged: [4275](https://github.com/hackforla/website/pull/4275#event-8847612820) at 2023-03-26 09:52 AM PDT -vraer,2023-03-26T20:34:19Z,- vraer assigned to issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1484153512) at 2023-03-26 01:34 PM PDT -vraer,2023-03-26T23:35:21Z,- vraer closed issue as completed: [4071](https://github.com/hackforla/website/issues/4071#event-8848390649) at 2023-03-26 04:35 PM PDT -vraer,2023-03-29T04:49:27Z,- vraer commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1487940278) at 2023-03-28 09:49 PM PDT -vraer,2023-04-06T22:27:32Z,- vraer commented on issue: [3636](https://github.com/hackforla/website/issues/3636#issuecomment-1499703021) at 2023-04-06 03:27 PM PDT -vraer,2023-05-03T20:35:57Z,- vraer commented on issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1533703089) at 2023-05-03 01:35 PM PDT -vraer,2023-05-28T10:49:01Z,- vraer assigned to issue: [4363](https://github.com/hackforla/website/issues/4363#event-9361366427) at 2023-05-28 03:49 AM PDT -vraer,2024-01-30T02:50:19Z,- vraer unassigned from issue: [4363](https://github.com/hackforla/website/issues/4363#issuecomment-1566085078) at 2024-01-29 06:50 PM PST -vraer,2024-02-05T03:49:26Z,- vraer commented on issue: [6195](https://github.com/hackforla/website/issues/6195#issuecomment-1926183214) at 2024-02-04 07:49 PM PST -vzpeopledesign,3409,SKILLS ISSUE -vzpeopledesign,2022-07-20T21:31:02Z,- vzpeopledesign opened issue: [3409](https://github.com/hackforla/website/issues/3409) at 2022-07-20 02:31 PM PDT -vzpeopledesign,2022-07-20T21:31:02Z,- vzpeopledesign assigned to issue: [3409](https://github.com/hackforla/website/issues/3409) at 2022-07-20 02:31 PM PDT -vzpeopledesign,2022-08-10T21:14:36Z,- vzpeopledesign assigned to issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1155400747) at 2022-08-10 02:14 PM PDT -vzpeopledesign,2022-08-25T04:31:11Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1226761512) at 2022-08-24 09:31 PM PDT -vzpeopledesign,2022-08-29T18:17:15Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1230687465) at 2022-08-29 11:17 AM PDT -vzpeopledesign,2022-09-17T18:48:30Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1250122846) at 2022-09-17 11:48 AM PDT -vzpeopledesign,2022-09-25T14:44:31Z,- vzpeopledesign commented on issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-1257210994) at 2022-09-25 07:44 AM PDT -vzpeopledesign,2022-10-16T17:14:33Z,- vzpeopledesign assigned to issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1254144713) at 2022-10-16 10:14 AM PDT -vzpeopledesign,2022-10-16T17:16:57Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1280012983) at 2022-10-16 10:16 AM PDT -vzpeopledesign,2022-10-26T22:32:18Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1292734981) at 2022-10-26 03:32 PM PDT -vzpeopledesign,2022-11-09T17:53:00Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1309125651) at 2022-11-09 09:53 AM PST -vzpeopledesign,2022-11-16T21:29:21Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1317691016) at 2022-11-16 01:29 PM PST -vzpeopledesign,2022-11-26T19:24:53Z,- vzpeopledesign commented on issue: [2662](https://github.com/hackforla/website/issues/2662#issuecomment-1328101080) at 2022-11-26 11:24 AM PST -vzpeopledesign,2024-10-20T17:27:13Z,- vzpeopledesign unassigned from issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2277292901) at 2024-10-20 10:27 AM PDT -vzpeopledesign,2024-10-20T17:28:23Z,- vzpeopledesign assigned to issue: [3005](https://github.com/hackforla/website/issues/3005#issuecomment-2277292901) at 2024-10-20 10:28 AM PDT -wanyuguan,2023-05-14T17:33:03Z,- wanyuguan commented on issue: [4649](https://github.com/hackforla/website/issues/4649#issuecomment-1546955155) at 2023-05-14 10:33 AM PDT -wanyuguan,2023-05-21T18:48:12Z,- wanyuguan assigned to issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1556190845) at 2023-05-21 11:48 AM PDT -wanyuguan,2023-05-28T16:06:22Z,- wanyuguan commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1566185366) at 2023-05-28 09:06 AM PDT -wanyuguan,2023-05-28T16:20:06Z,- wanyuguan commented on issue: [4720](https://github.com/hackforla/website/issues/4720#issuecomment-1566190287) at 2023-05-28 09:20 AM PDT -wanyuguan,2023-05-28T16:22:53Z,- wanyuguan commented on issue: [4714](https://github.com/hackforla/website/issues/4714#issuecomment-1566190851) at 2023-05-28 09:22 AM PDT -wanyuguan,2023-05-28T16:29:25Z,- wanyuguan commented on issue: [4707](https://github.com/hackforla/website/issues/4707#issuecomment-1566192529) at 2023-05-28 09:29 AM PDT -wanyuguan,2023-05-28T19:18:09Z,- wanyuguan commented on issue: [4703](https://github.com/hackforla/website/issues/4703#issuecomment-1566234854) at 2023-05-28 12:18 PM PDT -wanyuguan,2023-05-28T19:21:13Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1566235512) at 2023-05-28 12:21 PM PDT -wanyuguan,2023-06-11T16:18:45Z,- wanyuguan assigned to issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1575679729) at 2023-06-11 09:18 AM PDT -wanyuguan,2023-06-11T17:59:11Z,- wanyuguan unassigned from issue: [2316](https://github.com/hackforla/website/issues/2316#issuecomment-1586262316) at 2023-06-11 10:59 AM PDT -wanyuguan,2023-06-18T15:28:19Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1596183919) at 2023-06-18 08:28 AM PDT -wanyuguan,2023-06-25T03:51:04Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1605853500) at 2023-06-24 08:51 PM PDT -wanyuguan,2023-06-25T17:46:54Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1606193958) at 2023-06-25 10:46 AM PDT -wanyuguan,2023-07-23T16:48:36Z,- wanyuguan commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1646888095) at 2023-07-23 09:48 AM PDT -wanyuguan,2023-07-23T19:24:52Z,- wanyuguan commented on issue: [4988](https://github.com/hackforla/website/issues/4988#issuecomment-1646939145) at 2023-07-23 12:24 PM PDT -wanyuguan,2023-07-23T19:25:22Z,- wanyuguan commented on issue: [4965](https://github.com/hackforla/website/issues/4965#issuecomment-1646939283) at 2023-07-23 12:25 PM PDT -wanyuguan,2023-07-29T16:40:32Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1656786362) at 2023-07-29 09:40 AM PDT -wanyuguan,2023-08-05T22:03:41Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1666620503) at 2023-08-05 03:03 PM PDT -wanyuguan,2023-08-06T04:11:58Z,- wanyuguan commented on issue: [2212](https://github.com/hackforla/website/issues/2212#issuecomment-1666705883) at 2023-08-05 09:11 PM PDT -wanyuguan,2023-08-19T18:11:03Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1685077332) at 2023-08-19 11:11 AM PDT -wanyuguan,2023-08-20T18:08:32Z,- wanyuguan opened issue: [5269](https://github.com/hackforla/website/issues/5269) at 2023-08-20 11:08 AM PDT -wanyuguan,2023-08-20T18:41:19Z,- wanyuguan opened issue: [5271](https://github.com/hackforla/website/issues/5271) at 2023-08-20 11:41 AM PDT -wanyuguan,2023-08-20T19:21:10Z,- wanyuguan opened issue: [5274](https://github.com/hackforla/website/issues/5274) at 2023-08-20 12:21 PM PDT -wanyuguan,2023-09-03T15:25:29Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1704333663) at 2023-09-03 08:25 AM PDT -wanyuguan,2023-09-17T08:24:33Z,- wanyuguan commented on issue: [2698](https://github.com/hackforla/website/issues/2698#issuecomment-1722423388) at 2023-09-17 01:24 AM PDT -wanyuguan,2023-09-17T16:33:10Z,- wanyuguan commented on issue: [5440](https://github.com/hackforla/website/issues/5440#issuecomment-1722514355) at 2023-09-17 09:33 AM PDT -wassimchakib,5224,SKILLS ISSUE -wassimchakib,2023-08-15T03:35:58Z,- wassimchakib opened issue: [5224](https://github.com/hackforla/website/issues/5224) at 2023-08-14 08:35 PM PDT -wassimchakib,2023-08-15T22:47:31Z,- wassimchakib commented on issue: [5224](https://github.com/hackforla/website/issues/5224#issuecomment-1679726523) at 2023-08-15 03:47 PM PDT -wassimchakib,2023-08-23T07:46:20Z,- wassimchakib assigned to issue: [5224](https://github.com/hackforla/website/issues/5224#issuecomment-1679726523) at 2023-08-23 12:46 AM PDT -WayneTsai45,4970,SKILLS ISSUE -WayneTsai45,2023-07-18T01:52:59Z,- WayneTsai45 opened issue: [4970](https://github.com/hackforla/website/issues/4970) at 2023-07-17 06:52 PM PDT -WayneTsai45,2023-07-18T02:30:33Z,- WayneTsai45 assigned to issue: [4970](https://github.com/hackforla/website/issues/4970) at 2023-07-17 07:30 PM PDT -WayneTsai45,2023-08-15T23:39:49Z,- WayneTsai45 commented on issue: [4970](https://github.com/hackforla/website/issues/4970#issuecomment-1679764221) at 2023-08-15 04:39 PM PDT -WayneTsai45,2023-08-19T03:21:47Z,- WayneTsai45 assigned to issue: [5255](https://github.com/hackforla/website/issues/5255#issuecomment-1684674665) at 2023-08-18 08:21 PM PDT -WayneTsai45,2023-08-19T03:43:47Z,- WayneTsai45 commented on issue: [5255](https://github.com/hackforla/website/issues/5255#issuecomment-1684751737) at 2023-08-18 08:43 PM PDT -WayneTsai45,2023-08-19T16:39:14Z,- WayneTsai45 opened pull request: [5259](https://github.com/hackforla/website/pull/5259) at 2023-08-19 09:39 AM PDT -WayneTsai45,2023-08-22T22:24:47Z,- WayneTsai45 pull request merged: [5259](https://github.com/hackforla/website/pull/5259#event-10163645997) at 2023-08-22 03:24 PM PDT -WayneTsai45,2023-08-22T22:33:06Z,- WayneTsai45 assigned to issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1672310915) at 2023-08-22 03:33 PM PDT -WayneTsai45,2023-08-22T22:33:21Z,- WayneTsai45 unassigned from issue: [5175](https://github.com/hackforla/website/issues/5175#issuecomment-1689013154) at 2023-08-22 03:33 PM PDT -WayneTsai45,2023-08-23T16:10:38Z,- WayneTsai45 assigned to issue: [5293](https://github.com/hackforla/website/issues/5293) at 2023-08-23 09:10 AM PDT -WayneTsai45,2023-08-24T16:45:05Z,- WayneTsai45 unassigned from issue: [5293](https://github.com/hackforla/website/issues/5293#issuecomment-1690871592) at 2023-08-24 09:45 AM PDT -WayneTsai45,2023-09-14T01:34:32Z,- WayneTsai45 assigned to issue: [5459](https://github.com/hackforla/website/issues/5459#issuecomment-1711242994) at 2023-09-13 06:34 PM PDT -WayneTsai45,2023-09-14T01:35:58Z,- WayneTsai45 commented on issue: [5459](https://github.com/hackforla/website/issues/5459#issuecomment-1718584975) at 2023-09-13 06:35 PM PDT -WayneTsai45,2023-09-14T22:32:59Z,- WayneTsai45 opened pull request: [5523](https://github.com/hackforla/website/pull/5523) at 2023-09-14 03:32 PM PDT -WayneTsai45,2023-09-16T20:41:45Z,- WayneTsai45 assigned to issue: [5526](https://github.com/hackforla/website/issues/5526#issuecomment-1720325519) at 2023-09-16 01:41 PM PDT -WayneTsai45,2023-09-16T20:43:07Z,- WayneTsai45 commented on issue: [5526](https://github.com/hackforla/website/issues/5526#issuecomment-1722312422) at 2023-09-16 01:43 PM PDT -WayneTsai45,2023-09-17T01:32:31Z,- WayneTsai45 pull request merged: [5523](https://github.com/hackforla/website/pull/5523#event-10390591195) at 2023-09-16 06:32 PM PDT -wendybarrios,3688,SKILLS ISSUE -wendybarrios,2022-11-02T00:33:43Z,- wendybarrios opened issue: [3688](https://github.com/hackforla/website/issues/3688) at 2022-11-01 05:33 PM PDT -wendybarrios,2022-11-12T01:51:23Z,- wendybarrios assigned to issue: [3688](https://github.com/hackforla/website/issues/3688) at 2022-11-11 05:51 PM PST -wendybarrios,2022-11-15T04:59:17Z,- wendybarrios assigned to issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1048999173) at 2022-11-14 08:59 PM PST -wendybarrios,2022-11-15T05:06:28Z,- wendybarrios unassigned from issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1048999173) at 2022-11-14 09:06 PM PST -wendybarrios,2022-11-16T22:56:55Z,- wendybarrios assigned to issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1048999173) at 2022-11-16 02:56 PM PST -wendybarrios,2022-11-16T23:03:04Z,- wendybarrios commented on issue: [2873](https://github.com/hackforla/website/issues/2873#issuecomment-1317792296) at 2022-11-16 03:03 PM PST -wendybarrios,2022-11-16T23:05:44Z,- wendybarrios commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1317794630) at 2022-11-16 03:05 PM PST -wendybarrios,2022-11-17T01:08:19Z,- wendybarrios opened pull request: [3728](https://github.com/hackforla/website/pull/3728) at 2022-11-16 05:08 PM PST -wendybarrios,2022-11-17T20:17:48Z,- wendybarrios pull request merged: [3728](https://github.com/hackforla/website/pull/3728#event-7837470791) at 2022-11-17 12:17 PM PST -wendybarrios,2022-11-28T20:50:27Z,- wendybarrios assigned to issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1308060800) at 2022-11-28 12:50 PM PST -wendybarrios,2022-11-28T21:02:50Z,- wendybarrios commented on issue: [3316](https://github.com/hackforla/website/issues/3316#issuecomment-1329757339) at 2022-11-28 01:02 PM PST -wendybarrios,2022-11-28T21:59:04Z,- wendybarrios opened pull request: [3753](https://github.com/hackforla/website/pull/3753) at 2022-11-28 01:59 PM PST -wendybarrios,2022-12-01T18:29:29Z,- wendybarrios pull request merged: [3753](https://github.com/hackforla/website/pull/3753#event-7934598060) at 2022-12-01 10:29 AM PST -wendybarrios,2023-01-09T18:20:06Z,- wendybarrios commented on issue: [3688](https://github.com/hackforla/website/issues/3688#issuecomment-1376057305) at 2023-01-09 10:20 AM PST -wendybarrios,2023-01-11T22:11:18Z,- wendybarrios assigned to issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1347279715) at 2023-01-11 02:11 PM PST -wendybarrios,2023-01-11T23:38:16Z,- wendybarrios commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1379621405) at 2023-01-11 03:38 PM PST -wendybarrios,2023-01-20T19:34:33Z,- wendybarrios commented on issue: [3256](https://github.com/hackforla/website/issues/3256#issuecomment-1398842678) at 2023-01-20 11:34 AM PST -wendybarrios,2023-01-23T23:50:55Z,- wendybarrios commented on pull request: [3850](https://github.com/hackforla/website/pull/3850#issuecomment-1401162248) at 2023-01-23 03:50 PM PST -wendybarrios,2023-01-24T02:20:21Z,- wendybarrios submitted pull request review: [3850](https://github.com/hackforla/website/pull/3850#pullrequestreview-1266709358) at 2023-01-23 06:20 PM PST -wendybarrios,2023-01-28T18:00:51Z,- wendybarrios opened pull request: [3887](https://github.com/hackforla/website/pull/3887) at 2023-01-28 10:00 AM PST -wendybarrios,2023-02-01T21:39:48Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1412770012) at 2023-02-01 01:39 PM PST -wendybarrios,2023-02-09T00:48:30Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1423448044) at 2023-02-08 04:48 PM PST -wendybarrios,2023-02-11T20:59:58Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1426875595) at 2023-02-11 12:59 PM PST -wendybarrios,2023-02-15T00:07:12Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1430557327) at 2023-02-14 04:07 PM PST -wendybarrios,2023-02-15T00:20:05Z,- wendybarrios pull request merged: [3887](https://github.com/hackforla/website/pull/3887#event-8520892692) at 2023-02-14 04:20 PM PST -wendybarrios,2023-02-15T01:43:38Z,- wendybarrios commented on pull request: [3887](https://github.com/hackforla/website/pull/3887#issuecomment-1430633165) at 2023-02-14 05:43 PM PST -wendybarrios,2023-03-12T20:16:51Z,- wendybarrios assigned to issue: [3750](https://github.com/hackforla/website/issues/3750) at 2023-03-12 01:16 PM PDT -wendybarrios,2023-03-12T20:20:16Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1465290742) at 2023-03-12 01:20 PM PDT -wendybarrios,2023-03-26T21:35:18Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1484230917) at 2023-03-26 02:35 PM PDT -wendybarrios,2023-04-12T23:59:26Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1506115032) at 2023-04-12 04:59 PM PDT -wendybarrios,2023-04-14T01:46:30Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1507813380) at 2023-04-13 06:46 PM PDT -wendybarrios,2023-04-30T21:11:02Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1529140382) at 2023-04-30 02:11 PM PDT -wendybarrios,2023-06-14T05:51:05Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1590513855) at 2023-06-13 10:51 PM PDT -wendybarrios,2023-06-14T23:06:43Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1592106858) at 2023-06-14 04:06 PM PDT -wendybarrios,2023-06-20T01:16:44Z,- wendybarrios unassigned from issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597616546) at 2023-06-19 06:16 PM PDT -wendybarrios,2023-06-20T01:25:04Z,- wendybarrios commented on issue: [3750](https://github.com/hackforla/website/issues/3750#issuecomment-1597992124) at 2023-06-19 06:25 PM PDT -wendywilhelm10,2021-04-20T19:39:44Z,- wendywilhelm10 assigned to issue: [1342](https://github.com/hackforla/website/issues/1342) at 2021-04-20 12:39 PM PDT -wendywilhelm10,2021-04-25T18:16:51Z,- wendywilhelm10 opened pull request: [1464](https://github.com/hackforla/website/pull/1464) at 2021-04-25 11:16 AM PDT -wendywilhelm10,2021-04-25T20:14:45Z,- wendywilhelm10 pull request merged: [1464](https://github.com/hackforla/website/pull/1464#event-4641594258) at 2021-04-25 01:14 PM PDT -wendywilhelm10,2021-04-28T01:20:21Z,- wendywilhelm10 assigned to issue: [1475](https://github.com/hackforla/website/issues/1475) at 2021-04-27 06:20 PM PDT -wendywilhelm10,2021-04-28T03:07:36Z,- wendywilhelm10 unassigned from issue: [1475](https://github.com/hackforla/website/issues/1475) at 2021-04-27 08:07 PM PDT -wendywilhelm10,2021-04-28T07:48:15Z,- wendywilhelm10 assigned to issue: [1488](https://github.com/hackforla/website/issues/1488) at 2021-04-28 12:48 AM PDT -wendywilhelm10,2021-04-30T00:55:52Z,- wendywilhelm10 opened pull request: [1494](https://github.com/hackforla/website/pull/1494) at 2021-04-29 05:55 PM PDT -wendywilhelm10,2021-05-02T12:30:30Z,- wendywilhelm10 commented on issue: [1488](https://github.com/hackforla/website/issues/1488#issuecomment-830802387) at 2021-05-02 05:30 AM PDT -wendywilhelm10,2021-05-04T18:15:26Z,- wendywilhelm10 assigned to issue: [1346](https://github.com/hackforla/website/issues/1346#issuecomment-821969415) at 2021-05-04 11:15 AM PDT -wendywilhelm10,2021-05-04T20:52:46Z,- wendywilhelm10 pull request merged: [1494](https://github.com/hackforla/website/pull/1494#event-4685633344) at 2021-05-04 01:52 PM PDT -wendywilhelm10,2021-05-13T20:15:46Z,- wendywilhelm10 opened pull request: [1541](https://github.com/hackforla/website/pull/1541) at 2021-05-13 01:15 PM PDT -wendywilhelm10,2021-05-15T08:35:15Z,- wendywilhelm10 pull request merged: [1541](https://github.com/hackforla/website/pull/1541#event-4749731144) at 2021-05-15 01:35 AM PDT -wendywilhelm10,2021-05-16T17:37:57Z,- wendywilhelm10 assigned to issue: [1548](https://github.com/hackforla/website/issues/1548) at 2021-05-16 10:37 AM PDT -wendywilhelm10,2021-05-23T13:52:34Z,- wendywilhelm10 opened pull request: [1620](https://github.com/hackforla/website/pull/1620) at 2021-05-23 06:52 AM PDT -wendywilhelm10,2021-05-23T18:04:14Z,- wendywilhelm10 assigned to issue: [1613](https://github.com/hackforla/website/issues/1613) at 2021-05-23 11:04 AM PDT -wendywilhelm10,2021-05-26T02:27:24Z,- wendywilhelm10 commented on issue: [1550](https://github.com/hackforla/website/issues/1550#issuecomment-848407896) at 2021-05-25 07:27 PM PDT -wendywilhelm10,2021-05-26T02:29:24Z,- wendywilhelm10 closed issue by PR 1670: [1550](https://github.com/hackforla/website/issues/1550#event-4796325140) at 2021-05-25 07:29 PM PDT -wendywilhelm10,2021-05-26T02:31:05Z,- wendywilhelm10 commented on issue: [1553](https://github.com/hackforla/website/issues/1553#issuecomment-848409076) at 2021-05-25 07:31 PM PDT -wendywilhelm10,2021-05-26T02:38:42Z,- wendywilhelm10 commented on issue: [1479](https://github.com/hackforla/website/issues/1479#issuecomment-848411456) at 2021-05-25 07:38 PM PDT -wendywilhelm10,2021-05-26T02:54:20Z,- wendywilhelm10 commented on issue: [1427](https://github.com/hackforla/website/issues/1427#issuecomment-848416001) at 2021-05-25 07:54 PM PDT -wendywilhelm10,2021-05-26T02:56:11Z,- wendywilhelm10 commented on issue: [1442](https://github.com/hackforla/website/issues/1442#issuecomment-848416555) at 2021-05-25 07:56 PM PDT -wendywilhelm10,2021-05-26T02:58:07Z,- wendywilhelm10 commented on issue: [1329](https://github.com/hackforla/website/issues/1329#issuecomment-848417138) at 2021-05-25 07:58 PM PDT -wendywilhelm10,2021-05-28T13:08:49Z,- wendywilhelm10 submitted pull request review: [1627](https://github.com/hackforla/website/pull/1627#pullrequestreview-671281691) at 2021-05-28 06:08 AM PDT -wendywilhelm10,2021-05-30T16:48:46Z,- wendywilhelm10 commented on issue: [1613](https://github.com/hackforla/website/issues/1613#issuecomment-851028555) at 2021-05-30 09:48 AM PDT -wendywilhelm10,2021-05-30T18:17:09Z,- wendywilhelm10 assigned to issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-851040022) at 2021-05-30 11:17 AM PDT -wendywilhelm10,2021-05-31T13:22:12Z,- wendywilhelm10 opened pull request: [1675](https://github.com/hackforla/website/pull/1675) at 2021-05-31 06:22 AM PDT -wendywilhelm10,2021-05-31T13:33:14Z,- wendywilhelm10 assigned to issue: [1671](https://github.com/hackforla/website/issues/1671) at 2021-05-31 06:33 AM PDT -wendywilhelm10,2021-06-04T03:24:46Z,- wendywilhelm10 assigned to issue: [1685](https://github.com/hackforla/website/issues/1685) at 2021-06-03 08:24 PM PDT -wendywilhelm10,2021-06-05T16:31:23Z,- wendywilhelm10 commented on issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855263473) at 2021-06-05 09:31 AM PDT -wendywilhelm10,2021-06-05T20:36:29Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-855292568) at 2021-06-05 01:36 PM PDT -wendywilhelm10,2021-06-06T06:18:22Z,- wendywilhelm10 pull request merged: [1675](https://github.com/hackforla/website/pull/1675#event-4847671923) at 2021-06-05 11:18 PM PDT -wendywilhelm10,2021-06-06T18:42:58Z,- wendywilhelm10 assigned to issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-06-06 11:42 AM PDT -wendywilhelm10,2021-06-06T18:43:16Z,- wendywilhelm10 unassigned from issue: [1590](https://github.com/hackforla/website/issues/1590#issuecomment-843693635) at 2021-06-06 11:43 AM PDT -wendywilhelm10,2021-06-06T18:49:57Z,- wendywilhelm10 commented on issue: [1623](https://github.com/hackforla/website/issues/1623#issuecomment-855444230) at 2021-06-06 11:49 AM PDT -wendywilhelm10,2021-06-06T18:52:16Z,- wendywilhelm10 commented on issue: [1602](https://github.com/hackforla/website/issues/1602#issuecomment-855444545) at 2021-06-06 11:52 AM PDT -wendywilhelm10,2021-06-06T18:52:16Z,- wendywilhelm10 closed issue as completed: [1602](https://github.com/hackforla/website/issues/1602#event-4848493659) at 2021-06-06 11:52 AM PDT -wendywilhelm10,2021-06-06T18:59:06Z,- wendywilhelm10 commented on issue: [1265](https://github.com/hackforla/website/issues/1265#issuecomment-855445628) at 2021-06-06 11:59 AM PDT -wendywilhelm10,2021-06-09T01:58:48Z,- wendywilhelm10 pull request merged: [1620](https://github.com/hackforla/website/pull/1620#event-4862140325) at 2021-06-08 06:58 PM PDT -wendywilhelm10,2021-06-12T16:32:03Z,- wendywilhelm10 unassigned from issue: [1685](https://github.com/hackforla/website/issues/1685#issuecomment-855480624) at 2021-06-12 09:32 AM PDT -wendywilhelm10,2021-06-17T02:48:21Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-862874600) at 2021-06-16 07:48 PM PDT -wendywilhelm10,2021-06-20T16:46:28Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-864581530) at 2021-06-20 09:46 AM PDT -wendywilhelm10,2021-06-27T14:33:47Z,- wendywilhelm10 opened pull request: [1837](https://github.com/hackforla/website/pull/1837) at 2021-06-27 07:33 AM PDT -wendywilhelm10,2021-07-04T12:53:24Z,- wendywilhelm10 commented on pull request: [1837](https://github.com/hackforla/website/pull/1837#issuecomment-873584157) at 2021-07-04 05:53 AM PDT -wendywilhelm10,2021-07-04T12:55:43Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-873584547) at 2021-07-04 05:55 AM PDT -wendywilhelm10,2021-08-08T13:20:55Z,- wendywilhelm10 commented on issue: [1671](https://github.com/hackforla/website/issues/1671#issuecomment-894796987) at 2021-08-08 06:20 AM PDT -wendywilhelm10,2021-08-08T19:24:57Z,- wendywilhelm10 pull request merged: [1837](https://github.com/hackforla/website/pull/1837#event-5126961980) at 2021-08-08 12:24 PM PDT -wesrowe,2019-06-24T02:39:22Z,- wesrowe opened pull request: [130](https://github.com/hackforla/website/pull/130) at 2019-06-23 07:39 PM PDT -wesrowe,2019-11-23T03:44:45Z,- wesrowe assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-514035250) at 2019-11-22 07:44 PM PST -wesrowe,2019-11-26T00:23:10Z,- wesrowe assigned to issue: [192](https://github.com/hackforla/website/issues/192) at 2019-11-25 04:23 PM PST -wesrowe,2020-02-24T19:32:30Z,- wesrowe commented on issue: [282](https://github.com/hackforla/website/issues/282#issuecomment-590508854) at 2020-02-24 11:32 AM PST -wesrowe,2020-04-05T17:26:11Z,- wesrowe unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -wesrowe,2020-04-11T19:57:56Z,- wesrowe assigned to issue: [416](https://github.com/hackforla/website/issues/416) at 2020-04-11 12:57 PM PDT -wesrowe,2020-04-12T17:30:59Z,- wesrowe assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-12 10:30 AM PDT -wesrowe,2020-04-12T20:09:37Z,- wesrowe commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612669371) at 2020-04-12 01:09 PM PDT -wesrowe,2020-04-12T20:47:52Z,- wesrowe unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-12 01:47 PM PDT -wesrowe,2020-04-12T21:37:46Z,- wesrowe commented on issue: [416](https://github.com/hackforla/website/issues/416#issuecomment-612679541) at 2020-04-12 02:37 PM PDT -wesrowe,2020-04-17T22:44:20Z,- wesrowe assigned to issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-612733309) at 2020-04-17 03:44 PM PDT -wesrowe,2020-04-22T00:45:56Z,- wesrowe commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-21 05:45 PM PDT -wesrowe,2020-04-25T21:58:54Z,- wesrowe commented on issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-619446280) at 2020-04-25 02:58 PM PDT -wesrowe,2020-04-25T22:43:38Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619450259) at 2020-04-25 03:43 PM PDT -wesrowe,2020-04-26T18:02:02Z,- wesrowe unassigned from issue: [432](https://github.com/hackforla/website/issues/432#issuecomment-619446280) at 2020-04-26 11:02 AM PDT -wesrowe,2020-04-27T01:51:07Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619666015) at 2020-04-26 06:51 PM PDT -wesrowe,2020-04-27T03:19:18Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-619688949) at 2020-04-26 08:19 PM PDT -wesrowe,2020-04-27T16:39:34Z,- wesrowe opened issue: [472](https://github.com/hackforla/website/issues/472) at 2020-04-27 09:39 AM PDT -wesrowe,2020-05-03T15:26:49Z,- wesrowe closed issue as completed: [416](https://github.com/hackforla/website/issues/416#event-3297529402) at 2020-05-03 08:26 AM PDT -wesrowe,2020-05-04T15:44:55Z,- wesrowe commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-623542555) at 2020-05-04 08:44 AM PDT -wesrowe,2020-05-04T15:54:28Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-623548249) at 2020-05-04 08:54 AM PDT -wesrowe,2020-05-05T21:42:42Z,- wesrowe commented on issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-624322406) at 2020-05-05 02:42 PM PDT -wesrowe,2020-05-05T22:28:14Z,- wesrowe assigned to issue: [485](https://github.com/hackforla/website/issues/485) at 2020-05-05 03:28 PM PDT -wesrowe,2020-05-06T16:20:52Z,- wesrowe commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-624748066) at 2020-05-06 09:20 AM PDT -wesrowe,2020-05-11T21:19:05Z,- wesrowe commented on issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-626970585) at 2020-05-11 02:19 PM PDT -wesrowe,2020-05-18T00:03:28Z,- wesrowe commented on issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-629882675) at 2020-05-17 05:03 PM PDT -wesrowe,2020-05-24T20:42:52Z,- wesrowe unassigned from issue: [485](https://github.com/hackforla/website/issues/485#issuecomment-633296069) at 2020-05-24 01:42 PM PDT -wesrowe,2020-06-01T02:47:30Z,- wesrowe assigned to issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-520676938) at 2020-05-31 07:47 PM PDT -wesrowe,2020-06-01T17:23:56Z,- wesrowe commented on issue: [13](https://github.com/hackforla/website/issues/13#issuecomment-636999309) at 2020-06-01 10:23 AM PDT -wesrowe,2020-06-03T02:18:23Z,- wesrowe closed issue as completed: [13](https://github.com/hackforla/website/issues/13#event-3400137433) at 2020-06-02 07:18 PM PDT -wesrowe,2020-06-08T15:38:13Z,- wesrowe commented on issue: [562](https://github.com/hackforla/website/issues/562#issuecomment-640707386) at 2020-06-08 08:38 AM PDT -wesrowe,2020-11-08T19:09:58Z,- wesrowe pull request closed w/o merging: [130](https://github.com/hackforla/website/pull/130#event-3971083797) at 2020-11-08 11:09 AM PST -wesrowe,2021-02-03T17:11:44Z,- wesrowe unassigned from issue: [192](https://github.com/hackforla/website/issues/192) at 2021-02-03 09:11 AM PST -whitneywind,4717,SKILLS ISSUE -whitneywind,2023-05-24T03:13:20Z,- whitneywind opened issue: [4717](https://github.com/hackforla/website/issues/4717) at 2023-05-23 08:13 PM PDT -whitneywind,2023-05-24T03:13:21Z,- whitneywind assigned to issue: [4717](https://github.com/hackforla/website/issues/4717) at 2023-05-23 08:13 PM PDT -whitneywind,2023-06-02T20:36:19Z,- whitneywind assigned to issue: [4416](https://github.com/hackforla/website/issues/4416) at 2023-06-02 01:36 PM PDT -whitneywind,2023-06-02T22:33:31Z,- whitneywind opened pull request: [4772](https://github.com/hackforla/website/pull/4772) at 2023-06-02 03:33 PM PDT -whitneywind,2023-06-05T19:20:44Z,- whitneywind assigned to issue: [4478](https://github.com/hackforla/website/issues/4478) at 2023-06-05 12:20 PM PDT -whitneywind,2023-06-05T19:34:05Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1577363110) at 2023-06-05 12:34 PM PDT -whitneywind,2023-06-06T01:14:26Z,- whitneywind commented on issue: [4717](https://github.com/hackforla/website/issues/4717#issuecomment-1577753006) at 2023-06-05 06:14 PM PDT -whitneywind,2023-06-06T01:42:41Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1577768381) at 2023-06-05 06:42 PM PDT -whitneywind,2023-06-09T02:06:56Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1583832397) at 2023-06-08 07:06 PM PDT -whitneywind,2023-06-11T01:49:39Z,- whitneywind pull request merged: [4772](https://github.com/hackforla/website/pull/4772#event-9492138549) at 2023-06-10 06:49 PM PDT -whitneywind,2023-06-13T17:46:46Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1589766488) at 2023-06-13 10:46 AM PDT -whitneywind,2023-06-24T04:18:56Z,- whitneywind commented on issue: [4478](https://github.com/hackforla/website/issues/4478#issuecomment-1605258764) at 2023-06-23 09:18 PM PDT -whitneywind,2023-06-24T05:04:34Z,- whitneywind opened pull request: [4879](https://github.com/hackforla/website/pull/4879) at 2023-06-23 10:04 PM PDT -whitneywind,2023-07-06T06:00:53Z,- whitneywind pull request merged: [4879](https://github.com/hackforla/website/pull/4879#event-9739711480) at 2023-07-05 11:00 PM PDT -whitneywind,2023-07-07T15:44:41Z,- whitneywind closed issue as completed: [4717](https://github.com/hackforla/website/issues/4717#event-9756603922) at 2023-07-07 08:44 AM PDT -whitneywind,2023-07-07T22:46:05Z,- whitneywind assigned to issue: [4870](https://github.com/hackforla/website/issues/4870) at 2023-07-07 03:46 PM PDT -whitneywind,2023-07-07T23:00:54Z,- whitneywind commented on issue: [4870](https://github.com/hackforla/website/issues/4870#issuecomment-1626345091) at 2023-07-07 04:00 PM PDT -whitneywind,2023-07-07T23:48:55Z,- whitneywind opened pull request: [4925](https://github.com/hackforla/website/pull/4925) at 2023-07-07 04:48 PM PDT -whitneywind,2023-07-17T21:44:27Z,- whitneywind pull request merged: [4925](https://github.com/hackforla/website/pull/4925#event-9843093386) at 2023-07-17 02:44 PM PDT -whitneywind,2023-07-21T19:49:46Z,- whitneywind commented on pull request: [5044](https://github.com/hackforla/website/pull/5044#issuecomment-1646170387) at 2023-07-21 12:49 PM PDT -whitneywind,2023-07-22T19:20:36Z,- whitneywind submitted pull request review: [5044](https://github.com/hackforla/website/pull/5044#pullrequestreview-1542135080) at 2023-07-22 12:20 PM PDT -whitneywind,2023-07-22T20:11:10Z,- whitneywind commented on pull request: [5049](https://github.com/hackforla/website/pull/5049#issuecomment-1646663083) at 2023-07-22 01:11 PM PDT -whitneywind,2023-07-22T20:34:21Z,- whitneywind submitted pull request review: [5049](https://github.com/hackforla/website/pull/5049#pullrequestreview-1542140691) at 2023-07-22 01:34 PM PDT -whitneywind,2023-07-25T22:52:58Z,- whitneywind assigned to issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1641415741) at 2023-07-25 03:52 PM PDT -whitneywind,2023-07-25T22:53:47Z,- whitneywind commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1650672936) at 2023-07-25 03:53 PM PDT -whitneywind,2023-07-26T19:11:17Z,- whitneywind commented on pull request: [5095](https://github.com/hackforla/website/pull/5095#issuecomment-1652348511) at 2023-07-26 12:11 PM PDT -whitneywind,2023-07-26T19:25:25Z,- whitneywind submitted pull request review: [5095](https://github.com/hackforla/website/pull/5095#pullrequestreview-1548446343) at 2023-07-26 12:25 PM PDT -whitneywind,2023-07-28T16:23:53Z,- whitneywind commented on issue: [5018](https://github.com/hackforla/website/issues/5018#issuecomment-1655964712) at 2023-07-28 09:23 AM PDT -WilliamMFerguson,2020-03-02T19:10:37Z,- WilliamMFerguson commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593567144) at 2020-03-02 11:10 AM PST -WilliamMFerguson,2020-03-03T14:26:12Z,- WilliamMFerguson commented on issue: [255](https://github.com/hackforla/website/issues/255#issuecomment-593977556) at 2020-03-03 06:26 AM PST - NOT PLANNED - 6957 (williamzhang73),6955,SKILLS ISSUE -williamzhang73,6957,SKILLS ISSUE -williamzhang73,2024-06-04T03:23:21Z,- williamzhang73 opened issue: [6955](https://github.com/hackforla/website/issues/6955) at 2024-06-03 08:23 PM PDT -williamzhang73,2024-06-04T03:27:34Z,- williamzhang73 assigned to issue: [6955](https://github.com/hackforla/website/issues/6955#issuecomment-2146499459) at 2024-06-03 08:27 PM PDT -williamzhang73,2024-06-04T03:32:42Z,- williamzhang73 opened issue: [6957](https://github.com/hackforla/website/issues/6957) at 2024-06-03 08:32 PM PDT -williamzhang73,2024-06-04T03:32:46Z,- williamzhang73 assigned to issue: [6957](https://github.com/hackforla/website/issues/6957) at 2024-06-03 08:32 PM PDT -williamzhang73,2024-06-09T19:24:26Z,- williamzhang73 commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2156749177) at 2024-06-09 12:24 PM PDT -williamzhang73,2024-06-09T23:41:56Z,- williamzhang73 assigned to issue: [6937](https://github.com/hackforla/website/issues/6937) at 2024-06-09 04:41 PM PDT -williamzhang73,2024-06-10T00:06:20Z,- williamzhang73 commented on issue: [6937](https://github.com/hackforla/website/issues/6937#issuecomment-2156912630) at 2024-06-09 05:06 PM PDT -williamzhang73,2024-06-10T22:12:41Z,- williamzhang73 opened pull request: [6984](https://github.com/hackforla/website/pull/6984) at 2024-06-10 03:12 PM PDT -williamzhang73,2024-06-11T16:00:18Z,- williamzhang73 commented on pull request: [6984](https://github.com/hackforla/website/pull/6984#issuecomment-2161117305) at 2024-06-11 09:00 AM PDT -williamzhang73,2024-06-11T16:55:30Z,- williamzhang73 commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2161218247) at 2024-06-11 09:55 AM PDT -williamzhang73,2024-06-11T17:00:29Z,- williamzhang73 commented on issue: [6957](https://github.com/hackforla/website/issues/6957#issuecomment-2161228366) at 2024-06-11 10:00 AM PDT -williamzhang73,2024-06-23T20:39:18Z,- williamzhang73 pull request merged: [6984](https://github.com/hackforla/website/pull/6984#event-13258170929) at 2024-06-23 01:39 PM PDT -wiltsai,2637,SKILLS ISSUE -wiltsai,2021-12-28T03:38:16Z,- wiltsai opened issue: [2637](https://github.com/hackforla/website/issues/2637) at 2021-12-27 07:38 PM PST -wiltsai,2021-12-28T03:42:59Z,- wiltsai assigned to issue: [2637](https://github.com/hackforla/website/issues/2637#issuecomment-1001851907) at 2021-12-27 07:42 PM PST -wKategianes,4330,SKILLS ISSUE -wKategianes,2023-03-29T03:57:58Z,- wKategianes opened issue: [4330](https://github.com/hackforla/website/issues/4330) at 2023-03-28 08:57 PM PDT -wKategianes,2023-03-29T03:57:59Z,- wKategianes assigned to issue: [4330](https://github.com/hackforla/website/issues/4330) at 2023-03-28 08:57 PM PDT -wKategianes,2023-04-13T05:41:16Z,- wKategianes assigned to issue: [4445](https://github.com/hackforla/website/issues/4445) at 2023-04-12 10:41 PM PDT -wKategianes,2023-04-13T05:43:09Z,- wKategianes commented on issue: [4445](https://github.com/hackforla/website/issues/4445#issuecomment-1506377636) at 2023-04-12 10:43 PM PDT -wKategianes,2023-04-13T06:11:04Z,- wKategianes commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1506402956) at 2023-04-12 11:11 PM PDT -wKategianes,2023-04-13T06:25:22Z,- wKategianes opened pull request: [4497](https://github.com/hackforla/website/pull/4497) at 2023-04-12 11:25 PM PDT -wKategianes,2023-04-13T06:29:10Z,- wKategianes commented on issue: [4330](https://github.com/hackforla/website/issues/4330#issuecomment-1506419161) at 2023-04-12 11:29 PM PDT -wKategianes,2023-04-17T04:16:22Z,- wKategianes assigned to issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1509468696) at 2023-04-16 09:16 PM PDT -wKategianes,2023-04-17T04:16:38Z,- wKategianes commented on issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1510673405) at 2023-04-16 09:16 PM PDT -wKategianes,2023-04-19T16:47:39Z,- wKategianes pull request merged: [4497](https://github.com/hackforla/website/pull/4497#event-9048828183) at 2023-04-19 09:47 AM PDT -wKategianes,2023-04-27T21:24:09Z,- wKategianes opened pull request: [4575](https://github.com/hackforla/website/pull/4575) at 2023-04-27 02:24 PM PDT -wKategianes,2023-05-04T04:43:16Z,- wKategianes commented on pull request: [4575](https://github.com/hackforla/website/pull/4575#issuecomment-1534087973) at 2023-05-03 09:43 PM PDT -wKategianes,2023-05-15T00:33:20Z,- wKategianes unassigned from issue: [4344](https://github.com/hackforla/website/issues/4344#issuecomment-1547047689) at 2023-05-14 05:33 PM PDT -wKategianes,2023-05-21T15:57:11Z,- wKategianes pull request closed w/o merging: [4575](https://github.com/hackforla/website/pull/4575#event-9296209472) at 2023-05-21 08:57 AM PDT -Wny-Duong,3053,SKILLS ISSUE - NOT PLANNED - 3053 (Wny-Duong),3364,SKILLS ISSUE -Wny-Duong,2022-04-15T02:28:44Z,- Wny-Duong opened issue: [3053](https://github.com/hackforla/website/issues/3053) at 2022-04-14 07:28 PM PDT -Wny-Duong,2022-04-15T02:34:33Z,- Wny-Duong assigned to issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1099793707) at 2022-04-14 07:34 PM PDT -Wny-Duong,2022-04-18T01:54:20Z,- Wny-Duong assigned to issue: [2912](https://github.com/hackforla/website/issues/2912#issuecomment-1055993965) at 2022-04-17 06:54 PM PDT -Wny-Duong,2022-04-18T01:57:02Z,- Wny-Duong commented on issue: [2912](https://github.com/hackforla/website/issues/2912#issuecomment-1101020334) at 2022-04-17 06:57 PM PDT -Wny-Duong,2022-04-18T03:42:39Z,- Wny-Duong opened pull request: [3062](https://github.com/hackforla/website/pull/3062) at 2022-04-17 08:42 PM PDT -Wny-Duong,2022-04-18T03:47:54Z,- Wny-Duong commented on issue: [2912](https://github.com/hackforla/website/issues/2912#issuecomment-1101063857) at 2022-04-17 08:47 PM PDT -Wny-Duong,2022-04-19T04:48:47Z,- Wny-Duong pull request merged: [3062](https://github.com/hackforla/website/pull/3062#event-6451889122) at 2022-04-18 09:48 PM PDT -Wny-Duong,2022-04-19T22:09:37Z,- Wny-Duong commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1103217356) at 2022-04-19 03:09 PM PDT -Wny-Duong,2022-04-23T21:59:30Z,- Wny-Duong assigned to issue: [2183](https://github.com/hackforla/website/issues/2183) at 2022-04-23 02:59 PM PDT -Wny-Duong,2022-04-24T16:16:58Z,- Wny-Duong commented on issue: [2183](https://github.com/hackforla/website/issues/2183#issuecomment-1107872204) at 2022-04-24 09:16 AM PDT -Wny-Duong,2022-04-25T02:59:41Z,- Wny-Duong opened pull request: [3081](https://github.com/hackforla/website/pull/3081) at 2022-04-24 07:59 PM PDT -Wny-Duong,2022-04-25T18:47:26Z,- Wny-Duong commented on pull request: [3081](https://github.com/hackforla/website/pull/3081#issuecomment-1108917951) at 2022-04-25 11:47 AM PDT -Wny-Duong,2022-04-26T14:25:11Z,- Wny-Duong pull request merged: [3081](https://github.com/hackforla/website/pull/3081#event-6499342389) at 2022-04-26 07:25 AM PDT -Wny-Duong,2022-04-29T02:41:40Z,- Wny-Duong commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1112826862) at 2022-04-28 07:41 PM PDT -Wny-Duong,2022-04-29T21:18:57Z,- Wny-Duong commented on pull request: [3083](https://github.com/hackforla/website/pull/3083#issuecomment-1113742742) at 2022-04-29 02:18 PM PDT -Wny-Duong,2022-04-29T21:20:11Z,- Wny-Duong submitted pull request review: [3083](https://github.com/hackforla/website/pull/3083#pullrequestreview-958265655) at 2022-04-29 02:20 PM PDT -Wny-Duong,2022-05-06T07:34:43Z,- Wny-Duong commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1119339145) at 2022-05-06 12:34 AM PDT -Wny-Duong,2022-05-07T22:54:15Z,- Wny-Duong commented on issue: [3053](https://github.com/hackforla/website/issues/3053#issuecomment-1120312517) at 2022-05-07 03:54 PM PDT -Wny-Duong,2022-05-07T23:10:34Z,- Wny-Duong assigned to issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1104513498) at 2022-05-07 04:10 PM PDT -Wny-Duong,2022-05-07T23:12:26Z,- Wny-Duong commented on issue: [2728](https://github.com/hackforla/website/issues/2728#issuecomment-1120314246) at 2022-05-07 04:12 PM PDT -Wny-Duong,2022-05-09T01:51:24Z,- Wny-Duong opened pull request: [3114](https://github.com/hackforla/website/pull/3114) at 2022-05-08 06:51 PM PDT -Wny-Duong,2022-05-10T16:39:40Z,- Wny-Duong pull request merged: [3114](https://github.com/hackforla/website/pull/3114#event-6583589922) at 2022-05-10 09:39 AM PDT -Wny-Duong,2022-05-20T13:51:39Z,- Wny-Duong assigned to issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1013943263) at 2022-05-20 06:51 AM PDT -Wny-Duong,2022-05-20T13:55:27Z,- Wny-Duong commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1132929691) at 2022-05-20 06:55 AM PDT -Wny-Duong,2022-05-28T06:38:17Z,- Wny-Duong commented on issue: [2554](https://github.com/hackforla/website/issues/2554#issuecomment-1140187388) at 2022-05-27 11:38 PM PDT -Wny-Duong,2022-05-30T13:37:38Z,- Wny-Duong opened pull request: [3183](https://github.com/hackforla/website/pull/3183) at 2022-05-30 06:37 AM PDT -Wny-Duong,2022-06-01T01:54:08Z,- Wny-Duong commented on pull request: [3185](https://github.com/hackforla/website/pull/3185#issuecomment-1143030922) at 2022-05-31 06:54 PM PDT -Wny-Duong,2022-06-01T03:00:38Z,- Wny-Duong submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-991343330) at 2022-05-31 08:00 PM PDT -Wny-Duong,2022-06-03T07:22:23Z,- Wny-Duong closed issue as completed: [3053](https://github.com/hackforla/website/issues/3053#event-6734219425) at 2022-06-03 12:22 AM PDT -Wny-Duong,2022-06-04T17:15:00Z,- Wny-Duong submitted pull request review: [3185](https://github.com/hackforla/website/pull/3185#pullrequestreview-995941128) at 2022-06-04 10:15 AM PDT -Wny-Duong,2022-06-06T13:40:08Z,- Wny-Duong commented on pull request: [3221](https://github.com/hackforla/website/pull/3221#issuecomment-1147459687) at 2022-06-06 06:40 AM PDT -Wny-Duong,2022-06-06T13:40:40Z,- Wny-Duong commented on pull request: [3224](https://github.com/hackforla/website/pull/3224#issuecomment-1147460257) at 2022-06-06 06:40 AM PDT -Wny-Duong,2022-06-06T17:47:58Z,- Wny-Duong submitted pull request review: [3221](https://github.com/hackforla/website/pull/3221#pullrequestreview-996960131) at 2022-06-06 10:47 AM PDT -Wny-Duong,2022-06-06T18:03:24Z,- Wny-Duong submitted pull request review: [3224](https://github.com/hackforla/website/pull/3224#pullrequestreview-996981297) at 2022-06-06 11:03 AM PDT -Wny-Duong,2022-06-07T06:05:05Z,- Wny-Duong submitted pull request review: [3224](https://github.com/hackforla/website/pull/3224#pullrequestreview-997545155) at 2022-06-06 11:05 PM PDT -Wny-Duong,2022-06-07T06:07:46Z,- Wny-Duong commented on pull request: [3226](https://github.com/hackforla/website/pull/3226#issuecomment-1148234279) at 2022-06-06 11:07 PM PDT -Wny-Duong,2022-06-07T06:10:11Z,- Wny-Duong submitted pull request review: [3226](https://github.com/hackforla/website/pull/3226#pullrequestreview-997549100) at 2022-06-06 11:10 PM PDT -Wny-Duong,2022-06-07T17:18:10Z,- Wny-Duong commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1148953055) at 2022-06-07 10:18 AM PDT -Wny-Duong,2022-06-07T18:10:20Z,- Wny-Duong submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-998636523) at 2022-06-07 11:10 AM PDT -Wny-Duong,2022-06-08T19:02:01Z,- Wny-Duong commented on pull request: [3231](https://github.com/hackforla/website/pull/3231#issuecomment-1150286397) at 2022-06-08 12:02 PM PDT -Wny-Duong,2022-06-08T19:06:46Z,- Wny-Duong submitted pull request review: [3231](https://github.com/hackforla/website/pull/3231#pullrequestreview-1000295598) at 2022-06-08 12:06 PM PDT -Wny-Duong,2022-06-09T22:10:51Z,- Wny-Duong commented on pull request: [3235](https://github.com/hackforla/website/pull/3235#issuecomment-1151670801) at 2022-06-09 03:10 PM PDT -Wny-Duong,2022-06-09T22:21:14Z,- Wny-Duong submitted pull request review: [3235](https://github.com/hackforla/website/pull/3235#pullrequestreview-1002066063) at 2022-06-09 03:21 PM PDT -Wny-Duong,2022-06-22T02:44:15Z,- Wny-Duong assigned to issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-21 07:44 PM PDT -Wny-Duong,2022-06-22T02:45:02Z,- Wny-Duong unassigned from issue: [2909](https://github.com/hackforla/website/issues/2909#issuecomment-1141521069) at 2022-06-21 07:45 PM PDT -Wny-Duong,2022-06-26T16:48:40Z,- Wny-Duong commented on pull request: [3225](https://github.com/hackforla/website/pull/3225#issuecomment-1166585216) at 2022-06-26 09:48 AM PDT -Wny-Duong,2022-06-27T23:17:18Z,- Wny-Duong submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1020890715) at 2022-06-27 04:17 PM PDT -Wny-Duong,2022-06-29T02:38:04Z,- Wny-Duong assigned to issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1166741594) at 2022-06-28 07:38 PM PDT -Wny-Duong,2022-06-29T02:38:37Z,- Wny-Duong unassigned from issue: [3315](https://github.com/hackforla/website/issues/3315#issuecomment-1166741594) at 2022-06-28 07:38 PM PDT -Wny-Duong,2022-06-29T18:04:02Z,- Wny-Duong commented on pull request: [3324](https://github.com/hackforla/website/pull/3324#issuecomment-1170318260) at 2022-06-29 11:04 AM PDT -Wny-Duong,2022-06-29T18:38:21Z,- Wny-Duong closed issue by PR 3322: [3236](https://github.com/hackforla/website/issues/3236#event-6904923134) at 2022-06-29 11:38 AM PDT -Wny-Duong,2022-06-29T19:06:22Z,- Wny-Duong submitted pull request review: [3324](https://github.com/hackforla/website/pull/3324#pullrequestreview-1023861267) at 2022-06-29 12:06 PM PDT -Wny-Duong,2022-06-29T19:08:49Z,- Wny-Duong closed issue by PR 3324: [3135](https://github.com/hackforla/website/issues/3135#event-6905118610) at 2022-06-29 12:08 PM PDT -Wny-Duong,2022-06-30T00:54:18Z,- Wny-Duong submitted pull request review: [3225](https://github.com/hackforla/website/pull/3225#pullrequestreview-1024147538) at 2022-06-29 05:54 PM PDT -Wny-Duong,2022-06-30T04:27:49Z,- Wny-Duong commented on pull request: [3321](https://github.com/hackforla/website/pull/3321#issuecomment-1170744038) at 2022-06-29 09:27 PM PDT -Wny-Duong,2022-06-30T20:43:02Z,- Wny-Duong submitted pull request review: [3321](https://github.com/hackforla/website/pull/3321#pullrequestreview-1025470666) at 2022-06-30 01:43 PM PDT -Wny-Duong,2022-06-30T20:44:09Z,- Wny-Duong commented on pull request: [3326](https://github.com/hackforla/website/pull/3326#issuecomment-1171658619) at 2022-06-30 01:44 PM PDT -Wny-Duong,2022-06-30T21:03:26Z,- Wny-Duong submitted pull request review: [3326](https://github.com/hackforla/website/pull/3326#pullrequestreview-1025490264) at 2022-06-30 02:03 PM PDT -Wny-Duong,2022-07-01T14:08:28Z,- Wny-Duong commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172389267) at 2022-07-01 07:08 AM PDT -Wny-Duong,2022-07-01T14:45:18Z,- Wny-Duong commented on pull request: [3327](https://github.com/hackforla/website/pull/3327#issuecomment-1172424091) at 2022-07-01 07:45 AM PDT -Wny-Duong,2022-07-02T00:22:47Z,- Wny-Duong closed issue by PR 3225: [2097](https://github.com/hackforla/website/issues/2097#event-6921512921) at 2022-07-01 05:22 PM PDT -Wny-Duong,2022-07-02T00:54:11Z,- Wny-Duong closed issue by PR 3321: [3257](https://github.com/hackforla/website/issues/3257#event-6921545448) at 2022-07-01 05:54 PM PDT -Wny-Duong,2022-07-02T18:44:45Z,- Wny-Duong submitted pull request review: [3327](https://github.com/hackforla/website/pull/3327#pullrequestreview-1026780365) at 2022-07-02 11:44 AM PDT -Wny-Duong,2022-07-03T06:43:02Z,- Wny-Duong submitted pull request review: [3327](https://github.com/hackforla/website/pull/3327#pullrequestreview-1026813474) at 2022-07-02 11:43 PM PDT -Wny-Duong,2022-07-06T02:26:52Z,- Wny-Duong opened pull request: [3332](https://github.com/hackforla/website/pull/3332) at 2022-07-05 07:26 PM PDT -Wny-Duong,2022-07-06T02:36:10Z,- Wny-Duong closed issue by PR 3321: [3257](https://github.com/hackforla/website/issues/3257#event-6938828809) at 2022-07-05 07:36 PM PDT -Wny-Duong,2022-07-06T02:36:10Z,- Wny-Duong pull request merged: [3332](https://github.com/hackforla/website/pull/3332#event-6938828825) at 2022-07-05 07:36 PM PDT -Wny-Duong,2022-07-07T05:18:07Z,- Wny-Duong commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1177084001) at 2022-07-06 10:18 PM PDT -Wny-Duong,2022-07-07T18:23:47Z,- Wny-Duong submitted pull request review: [3329](https://github.com/hackforla/website/pull/3329#pullrequestreview-1031994669) at 2022-07-07 11:23 AM PDT -Wny-Duong,2022-07-07T18:34:36Z,- Wny-Duong commented on pull request: [3329](https://github.com/hackforla/website/pull/3329#issuecomment-1178051558) at 2022-07-07 11:34 AM PDT -Wny-Duong,2022-07-09T00:51:20Z,- Wny-Duong commented on pull request: [3330](https://github.com/hackforla/website/pull/3330#issuecomment-1179447162) at 2022-07-08 05:51 PM PDT -Wny-Duong,2022-07-09T00:51:43Z,- Wny-Duong commented on pull request: [3338](https://github.com/hackforla/website/pull/3338#issuecomment-1179447237) at 2022-07-08 05:51 PM PDT -Wny-Duong,2022-07-09T01:05:49Z,- Wny-Duong submitted pull request review: [3330](https://github.com/hackforla/website/pull/3330#pullrequestreview-1033462750) at 2022-07-08 06:05 PM PDT -Wny-Duong,2022-07-09T01:09:02Z,- Wny-Duong closed issue by PR 3330: [3217](https://github.com/hackforla/website/issues/3217#event-6963248408) at 2022-07-08 06:09 PM PDT -Wny-Duong,2022-07-09T23:25:02Z,- Wny-Duong submitted pull request review: [3338](https://github.com/hackforla/website/pull/3338#pullrequestreview-1033576263) at 2022-07-09 04:25 PM PDT -Wny-Duong,2022-07-10T00:05:32Z,- Wny-Duong closed issue by PR 3329: [2112](https://github.com/hackforla/website/issues/2112#event-6964460687) at 2022-07-09 05:05 PM PDT -Wny-Duong,2022-07-13T01:14:04Z,- Wny-Duong pull request merged: [3183](https://github.com/hackforla/website/pull/3183#event-6982036591) at 2022-07-12 06:14 PM PDT -Wny-Duong,2022-07-13T03:12:04Z,- Wny-Duong opened issue: [3364](https://github.com/hackforla/website/issues/3364) at 2022-07-12 08:12 PM PDT -Wny-Duong,2022-07-13T03:13:04Z,- Wny-Duong assigned to issue: [3364](https://github.com/hackforla/website/issues/3364#issuecomment-1182715265) at 2022-07-12 08:13 PM PDT -Wny-Duong,2022-07-13T14:45:46Z,- Wny-Duong closed issue by PR 3363: [2817](https://github.com/hackforla/website/issues/2817#event-6986692300) at 2022-07-13 07:45 AM PDT -Wny-Duong,2022-07-14T05:05:36Z,- Wny-Duong commented on pull request: [3369](https://github.com/hackforla/website/pull/3369#issuecomment-1183992392) at 2022-07-13 10:05 PM PDT -Wny-Duong,2022-07-14T05:43:04Z,- Wny-Duong submitted pull request review: [3369](https://github.com/hackforla/website/pull/3369#pullrequestreview-1038319649) at 2022-07-13 10:43 PM PDT -Wny-Duong,2022-07-14T18:37:54Z,- Wny-Duong submitted pull request review: [3369](https://github.com/hackforla/website/pull/3369#pullrequestreview-1039324373) at 2022-07-14 11:37 AM PDT -Wny-Duong,2022-07-14T20:23:42Z,- Wny-Duong closed issue by PR 3369: [2875](https://github.com/hackforla/website/issues/2875#event-6997164875) at 2022-07-14 01:23 PM PDT -Wny-Duong,2022-07-15T02:07:58Z,- Wny-Duong assigned to issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1173148805) at 2022-07-14 07:07 PM PDT -Wny-Duong,2022-07-15T02:12:18Z,- Wny-Duong commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1185096329) at 2022-07-14 07:12 PM PDT -Wny-Duong,2022-07-15T23:36:23Z,- Wny-Duong closed issue by PR 3372: [2812](https://github.com/hackforla/website/issues/2812#event-7005276916) at 2022-07-15 04:36 PM PDT -Wny-Duong,2022-07-15T23:40:14Z,- Wny-Duong commented on pull request: [3371](https://github.com/hackforla/website/pull/3371#issuecomment-1186024916) at 2022-07-15 04:40 PM PDT -Wny-Duong,2022-07-15T23:56:45Z,- Wny-Duong submitted pull request review: [3371](https://github.com/hackforla/website/pull/3371#pullrequestreview-1040896200) at 2022-07-15 04:56 PM PDT -Wny-Duong,2022-07-15T23:59:38Z,- Wny-Duong closed issue by PR 3371: [3306](https://github.com/hackforla/website/issues/3306#event-7005324394) at 2022-07-15 04:59 PM PDT -Wny-Duong,2022-07-20T03:14:02Z,- Wny-Duong opened issue: [3400](https://github.com/hackforla/website/issues/3400) at 2022-07-19 08:14 PM PDT -Wny-Duong,2022-07-20T16:44:10Z,- Wny-Duong closed issue by PR 3390: [3094](https://github.com/hackforla/website/issues/3094#event-7031138790) at 2022-07-20 09:44 AM PDT -Wny-Duong,2022-07-20T16:45:37Z,- Wny-Duong commented on pull request: [3395](https://github.com/hackforla/website/pull/3395#issuecomment-1190514167) at 2022-07-20 09:45 AM PDT -Wny-Duong,2022-07-20T17:25:43Z,- Wny-Duong submitted pull request review: [3395](https://github.com/hackforla/website/pull/3395#pullrequestreview-1045417608) at 2022-07-20 10:25 AM PDT -Wny-Duong,2022-07-20T22:14:26Z,- Wny-Duong commented on pull request: [3407](https://github.com/hackforla/website/pull/3407#issuecomment-1190814564) at 2022-07-20 03:14 PM PDT -Wny-Duong,2022-07-20T22:21:59Z,- Wny-Duong submitted pull request review: [3407](https://github.com/hackforla/website/pull/3407#pullrequestreview-1045737138) at 2022-07-20 03:21 PM PDT -Wny-Duong,2022-07-20T22:22:14Z,- Wny-Duong closed issue by PR 3407: [3026](https://github.com/hackforla/website/issues/3026#event-7033303509) at 2022-07-20 03:22 PM PDT -Wny-Duong,2022-07-23T01:13:31Z,- Wny-Duong commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1193029515) at 2022-07-22 06:13 PM PDT -Wny-Duong,2022-07-24T13:49:39Z,- Wny-Duong closed issue by PR 3421: [2813](https://github.com/hackforla/website/issues/2813#event-7051448332) at 2022-07-24 06:49 AM PDT -Wny-Duong,2022-07-26T23:46:24Z,- Wny-Duong closed issue by PR 3427: [2815](https://github.com/hackforla/website/issues/2815#event-7068760589) at 2022-07-26 04:46 PM PDT -Wny-Duong,2022-07-27T17:03:35Z,- Wny-Duong commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197050720) at 2022-07-27 10:03 AM PDT -Wny-Duong,2022-07-27T20:09:59Z,- Wny-Duong commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1197314268) at 2022-07-27 01:09 PM PDT -Wny-Duong,2022-07-28T23:36:36Z,- Wny-Duong commented on pull request: [3435](https://github.com/hackforla/website/pull/3435#issuecomment-1198726154) at 2022-07-28 04:36 PM PDT -Wny-Duong,2022-07-28T23:40:47Z,- Wny-Duong commented on pull request: [3432](https://github.com/hackforla/website/pull/3432#issuecomment-1198728153) at 2022-07-28 04:40 PM PDT -Wny-Duong,2022-07-29T01:01:49Z,- Wny-Duong submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1054905683) at 2022-07-28 06:01 PM PDT -Wny-Duong,2022-07-29T01:17:37Z,- Wny-Duong submitted pull request review: [3435](https://github.com/hackforla/website/pull/3435#pullrequestreview-1054912602) at 2022-07-28 06:17 PM PDT -Wny-Duong,2022-07-29T01:18:18Z,- Wny-Duong closed issue by PR 3435: [3107](https://github.com/hackforla/website/issues/3107#event-7085944962) at 2022-07-28 06:18 PM PDT -Wny-Duong,2022-07-29T01:19:49Z,- Wny-Duong commented on pull request: [3439](https://github.com/hackforla/website/pull/3439#issuecomment-1198786996) at 2022-07-28 06:19 PM PDT -Wny-Duong,2022-07-29T01:35:37Z,- Wny-Duong submitted pull request review: [3439](https://github.com/hackforla/website/pull/3439#pullrequestreview-1054920582) at 2022-07-28 06:35 PM PDT -Wny-Duong,2022-07-29T01:35:45Z,- Wny-Duong closed issue by PR 3439: [2816](https://github.com/hackforla/website/issues/2816#event-7085994994) at 2022-07-28 06:35 PM PDT -Wny-Duong,2022-07-29T02:48:50Z,- Wny-Duong submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1054953613) at 2022-07-28 07:48 PM PDT -Wny-Duong,2022-07-29T02:55:04Z,- Wny-Duong submitted pull request review: [3443](https://github.com/hackforla/website/pull/3443#pullrequestreview-1054956445) at 2022-07-28 07:55 PM PDT -Wny-Duong,2022-07-29T02:57:30Z,- Wny-Duong commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1198829010) at 2022-07-28 07:57 PM PDT -Wny-Duong,2022-07-29T03:01:31Z,- Wny-Duong submitted pull request review: [3442](https://github.com/hackforla/website/pull/3442#pullrequestreview-1054959519) at 2022-07-28 08:01 PM PDT -Wny-Duong,2022-07-29T14:40:29Z,- Wny-Duong closed issue by PR 3442: [3400](https://github.com/hackforla/website/issues/3400#event-7089999767) at 2022-07-29 07:40 AM PDT -Wny-Duong,2022-07-29T16:51:45Z,- Wny-Duong closed issue by PR 3443: [3166](https://github.com/hackforla/website/issues/3166#event-7090876707) at 2022-07-29 09:51 AM PDT -Wny-Duong,2022-08-05T23:23:29Z,- Wny-Duong commented on issue: [2502](https://github.com/hackforla/website/issues/2502#issuecomment-1207085201) at 2022-08-05 04:23 PM PDT -Wny-Duong,2022-08-07T18:41:30Z,- Wny-Duong opened pull request: [3452](https://github.com/hackforla/website/pull/3452) at 2022-08-07 11:41 AM PDT -Wny-Duong,2022-08-11T03:57:06Z,- Wny-Duong closed issue by PR 3454: [3339](https://github.com/hackforla/website/issues/3339#event-7168558083) at 2022-08-10 08:57 PM PDT -Wny-Duong,2022-08-11T06:33:04Z,- Wny-Duong submitted pull request review: [3161](https://github.com/hackforla/website/pull/3161#pullrequestreview-1069231945) at 2022-08-10 11:33 PM PDT -Wny-Duong,2022-08-11T06:36:20Z,- Wny-Duong commented on pull request: [3456](https://github.com/hackforla/website/pull/3456#issuecomment-1211602319) at 2022-08-10 11:36 PM PDT -Wny-Duong,2022-08-11T20:30:09Z,- Wny-Duong commented on pull request: [3462](https://github.com/hackforla/website/pull/3462#issuecomment-1212463647) at 2022-08-11 01:30 PM PDT -Wny-Duong,2022-08-11T21:33:49Z,- Wny-Duong submitted pull request review: [3462](https://github.com/hackforla/website/pull/3462#pullrequestreview-1070391299) at 2022-08-11 02:33 PM PDT -Wny-Duong,2022-08-11T21:49:47Z,- Wny-Duong submitted pull request review: [3456](https://github.com/hackforla/website/pull/3456#pullrequestreview-1070405128) at 2022-08-11 02:49 PM PDT -Wny-Duong,2022-08-12T19:34:59Z,- Wny-Duong commented on pull request: [3466](https://github.com/hackforla/website/pull/3466#issuecomment-1213451277) at 2022-08-12 12:34 PM PDT -Wny-Duong,2022-08-12T23:42:14Z,- Wny-Duong closed issue as completed: [3331](https://github.com/hackforla/website/issues/3331#event-7182381572) at 2022-08-12 04:42 PM PDT -Wny-Duong,2022-08-12T23:49:33Z,- Wny-Duong submitted pull request review: [3466](https://github.com/hackforla/website/pull/3466#pullrequestreview-1071846315) at 2022-08-12 04:49 PM PDT -Wny-Duong,2022-08-16T17:31:01Z,- Wny-Duong commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1216941390) at 2022-08-16 10:31 AM PDT -Wny-Duong,2022-08-17T17:30:22Z,- Wny-Duong commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1218305413) at 2022-08-17 10:30 AM PDT -Wny-Duong,2022-08-19T02:20:14Z,- Wny-Duong commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1220167017) at 2022-08-18 07:20 PM PDT -Wny-Duong,2022-08-21T23:32:56Z,- Wny-Duong submitted pull request review: [3476](https://github.com/hackforla/website/pull/3476#pullrequestreview-1079732538) at 2022-08-21 04:32 PM PDT -Wny-Duong,2022-08-26T00:59:26Z,- Wny-Duong pull request merged: [3452](https://github.com/hackforla/website/pull/3452#event-7263692114) at 2022-08-25 05:59 PM PDT -wongstephen,5085,SKILLS ISSUE -wongstephen,2023-07-26T03:13:16Z,- wongstephen opened issue: [5085](https://github.com/hackforla/website/issues/5085) at 2023-07-25 08:13 PM PDT -wongstephen,2023-07-26T03:13:16Z,- wongstephen assigned to issue: [5085](https://github.com/hackforla/website/issues/5085) at 2023-07-25 08:13 PM PDT -wongstephen,2023-07-27T23:04:28Z,- wongstephen commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1654700655) at 2023-07-27 04:04 PM PDT -wongstephen,2023-07-27T23:05:17Z,- wongstephen closed issue by PR 5135: [5028](https://github.com/hackforla/website/issues/5028#event-9941440832) at 2023-07-27 04:05 PM PDT -wongstephen,2023-07-27T23:08:34Z,- wongstephen reopened issue: [5028](https://github.com/hackforla/website/issues/5028#event-9941440832) at 2023-07-27 04:08 PM PDT -wongstephen,2023-07-27T23:10:20Z,- wongstephen commented on issue: [5028](https://github.com/hackforla/website/issues/5028#issuecomment-1654718912) at 2023-07-27 04:10 PM PDT -wongstephen,2023-07-27T23:14:08Z,- wongstephen assigned to issue: [5032](https://github.com/hackforla/website/issues/5032) at 2023-07-27 04:14 PM PDT -wongstephen,2023-07-27T23:20:17Z,- wongstephen commented on issue: [5032](https://github.com/hackforla/website/issues/5032#issuecomment-1654744131) at 2023-07-27 04:20 PM PDT -wongstephen,2023-07-27T23:54:05Z,- wongstephen opened pull request: [5105](https://github.com/hackforla/website/pull/5105) at 2023-07-27 04:54 PM PDT -wongstephen,2023-07-30T04:18:51Z,- wongstephen pull request merged: [5105](https://github.com/hackforla/website/pull/5105#event-9956076006) at 2023-07-29 09:18 PM PDT -wongstephen,2023-08-02T17:02:04Z,- wongstephen assigned to issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1486445205) at 2023-08-02 10:02 AM PDT -wongstephen,2023-08-02T17:03:04Z,- wongstephen commented on issue: [4299](https://github.com/hackforla/website/issues/4299#issuecomment-1662607294) at 2023-08-02 10:03 AM PDT -wongstephen,2023-08-02T18:04:56Z,- wongstephen opened pull request: [5130](https://github.com/hackforla/website/pull/5130) at 2023-08-02 11:04 AM PDT -wongstephen,2023-08-02T18:34:27Z,- wongstephen commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1662747361) at 2023-08-02 11:34 AM PDT -wongstephen,2023-08-02T18:47:40Z,- wongstephen commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1662776252) at 2023-08-02 11:47 AM PDT -wongstephen,2023-08-02T18:48:58Z,- wongstephen submitted pull request review: [5128](https://github.com/hackforla/website/pull/5128#pullrequestreview-1559640068) at 2023-08-02 11:48 AM PDT -wongstephen,2023-08-02T19:04:36Z,- wongstephen commented on pull request: [5123](https://github.com/hackforla/website/pull/5123#issuecomment-1662813151) at 2023-08-02 12:04 PM PDT -wongstephen,2023-08-02T22:56:27Z,- wongstephen submitted pull request review: [5123](https://github.com/hackforla/website/pull/5123#pullrequestreview-1559945740) at 2023-08-02 03:56 PM PDT -wongstephen,2023-08-06T01:21:36Z,- wongstephen pull request merged: [5130](https://github.com/hackforla/website/pull/5130#event-10016360909) at 2023-08-05 06:21 PM PDT -wongstephen,2023-08-12T01:45:38Z,- wongstephen assigned to issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1641384961) at 2023-08-11 06:45 PM PDT -wongstephen,2023-08-12T01:46:25Z,- wongstephen commented on issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1675607285) at 2023-08-11 06:46 PM PDT -wongstephen,2023-08-12T20:21:18Z,- wongstephen commented on issue: [5008](https://github.com/hackforla/website/issues/5008#issuecomment-1676086009) at 2023-08-12 01:21 PM PDT -wongstephen,2023-08-13T07:35:58Z,- wongstephen submitted pull request review: [5190](https://github.com/hackforla/website/pull/5190#pullrequestreview-1575712848) at 2023-08-13 12:35 AM PDT -wongstephen,2023-08-29T22:10:31Z,- wongstephen commented on pull request: [5344](https://github.com/hackforla/website/pull/5344#issuecomment-1698212407) at 2023-08-29 03:10 PM PDT -wongstephen,2023-08-30T02:31:15Z,- wongstephen submitted pull request review: [5344](https://github.com/hackforla/website/pull/5344#pullrequestreview-1601768053) at 2023-08-29 07:31 PM PDT -writeforall,2020-04-24T18:55:38Z,- writeforall opened pull request: [464](https://github.com/hackforla/website/pull/464) at 2020-04-24 11:55 AM PDT -writeforall,2020-04-24T21:52:26Z,- writeforall pull request merged: [464](https://github.com/hackforla/website/pull/464#event-3271149192) at 2020-04-24 02:52 PM PDT -xewar,4311,SKILLS ISSUE -xewar,2023-03-29T03:15:58Z,- xewar opened issue: [4311](https://github.com/hackforla/website/issues/4311) at 2023-03-28 08:15 PM PDT -xewar,2023-03-29T03:45:37Z,- xewar assigned to issue: [4311](https://github.com/hackforla/website/issues/4311) at 2023-03-28 08:45 PM PDT -xewar,2023-04-27T22:32:11Z,- xewar assigned to issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1498395289) at 2023-04-27 03:32 PM PDT -xewar,2023-04-27T22:33:07Z,- xewar unassigned from issue: [4420](https://github.com/hackforla/website/issues/4420#issuecomment-1526642953) at 2023-04-27 03:33 PM PDT -xiosantaella,2020-05-10T18:42:21Z,- xiosantaella assigned to issue: [488](https://github.com/hackforla/website/issues/488) at 2020-05-10 11:42 AM PDT -xiosantaella,2020-05-17T16:56:17Z,- xiosantaella commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-629828217) at 2020-05-17 09:56 AM PDT -xiosantaella,2020-05-17T18:14:54Z,- xiosantaella commented on issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-629838684) at 2020-05-17 11:14 AM PDT -xiosantaella,2020-05-31T17:10:57Z,- xiosantaella unassigned from issue: [488](https://github.com/hackforla/website/issues/488#issuecomment-633268554) at 2020-05-31 10:10 AM PDT -xiosantaella,2020-06-21T00:56:36Z,- xiosantaella closed issue as completed: [488](https://github.com/hackforla/website/issues/488#event-3465114016) at 2020-06-20 05:56 PM PDT -xiosantaella,2020-08-12T21:48:06Z,- xiosantaella closed issue as completed: [488](https://github.com/hackforla/website/issues/488#event-3649574564) at 2020-08-12 02:48 PM PDT -xleung26,2019-05-29T03:26:40Z,- xleung26 opened pull request: [124](https://github.com/hackforla/website/pull/124) at 2019-05-28 08:26 PM PDT -xleung26,2019-06-05T02:42:42Z,- xleung26 pull request merged: [124](https://github.com/hackforla/website/pull/124#event-2389963537) at 2019-06-04 07:42 PM PDT -xnealcarson,7972,SKILLS ISSUE -xnealcarson,2025-03-04T04:18:21Z,- xnealcarson opened issue: [7972](https://github.com/hackforla/website/issues/7972) at 2025-03-03 08:18 PM PST -xnealcarson,2025-03-04T04:19:13Z,- xnealcarson assigned to issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2696150102) at 2025-03-03 08:19 PM PST -xnealcarson,2025-03-07T02:32:15Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2705379365) at 2025-03-06 06:32 PM PST -xnealcarson,2025-03-14T23:40:48Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2726011502) at 2025-03-14 04:40 PM PDT -xnealcarson,2025-03-24T20:46:56Z,- xnealcarson submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2711643131) at 2025-03-24 01:46 PM PDT -xnealcarson,2025-03-26T21:57:49Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2755834496) at 2025-03-26 02:57 PM PDT -xnealcarson,2025-03-26T21:59:13Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2755836535) at 2025-03-26 02:59 PM PDT -xnealcarson,2025-03-26T22:11:56Z,- xnealcarson assigned to issue: [7469](https://github.com/hackforla/website/issues/7469) at 2025-03-26 03:11 PM PDT -xnealcarson,2025-03-26T22:17:39Z,- xnealcarson commented on issue: [7469](https://github.com/hackforla/website/issues/7469#issuecomment-2755866058) at 2025-03-26 03:17 PM PDT -xnealcarson,2025-03-26T22:27:46Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2755880435) at 2025-03-26 03:27 PM PDT -xnealcarson,2025-03-29T21:52:46Z,- xnealcarson opened pull request: [8021](https://github.com/hackforla/website/pull/8021) at 2025-03-29 02:52 PM PDT -xnealcarson,2025-04-02T21:11:49Z,- xnealcarson commented on pull request: [8020](https://github.com/hackforla/website/pull/8020#issuecomment-2773754006) at 2025-04-02 02:11 PM PDT -xnealcarson,2025-04-02T21:57:23Z,- xnealcarson submitted pull request review: [8020](https://github.com/hackforla/website/pull/8020#pullrequestreview-2737686244) at 2025-04-02 02:57 PM PDT -xnealcarson,2025-04-03T06:27:04Z,- xnealcarson pull request merged: [8021](https://github.com/hackforla/website/pull/8021#event-17106926265) at 2025-04-02 11:27 PM PDT -xnealcarson,2025-04-05T01:42:32Z,- xnealcarson assigned to issue: [8016](https://github.com/hackforla/website/issues/8016) at 2025-04-04 06:42 PM PDT -xnealcarson,2025-04-05T01:42:47Z,- xnealcarson unassigned from issue: [8016](https://github.com/hackforla/website/issues/8016) at 2025-04-04 06:42 PM PDT -xnealcarson,2025-04-05T01:45:32Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2780126078) at 2025-04-04 06:45 PM PDT -xnealcarson,2025-04-06T03:20:20Z,- xnealcarson submitted pull request review: [8039](https://github.com/hackforla/website/pull/8039#pullrequestreview-2745028587) at 2025-04-05 08:20 PM PDT -xnealcarson,2025-04-06T20:52:09Z,- xnealcarson submitted pull request review: [7936](https://github.com/hackforla/website/pull/7936#pullrequestreview-2745271992) at 2025-04-06 01:52 PM PDT -xnealcarson,2025-04-07T22:32:55Z,- xnealcarson assigned to issue: [7471](https://github.com/hackforla/website/issues/7471) at 2025-04-07 03:32 PM PDT -xnealcarson,2025-04-07T22:54:57Z,- xnealcarson commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2784809544) at 2025-04-07 03:54 PM PDT -xnealcarson,2025-04-11T01:17:59Z,- xnealcarson commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795582661) at 2025-04-10 06:17 PM PDT -xnealcarson,2025-04-11T01:17:59Z,- xnealcarson commented on pull request: [8056](https://github.com/hackforla/website/pull/8056#issuecomment-2795582661) at 2025-04-10 06:17 PM PDT -xnealcarson,2025-04-11T01:50:42Z,- xnealcarson submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758946216) at 2025-04-10 06:50 PM PDT -xnealcarson,2025-04-11T01:50:42Z,- xnealcarson submitted pull request review: [8056](https://github.com/hackforla/website/pull/8056#pullrequestreview-2758946216) at 2025-04-10 06:50 PM PDT -xnealcarson,2025-04-12T20:57:37Z,- xnealcarson opened pull request: [8061](https://github.com/hackforla/website/pull/8061) at 2025-04-12 01:57 PM PDT -xnealcarson,2025-04-13T20:10:06Z,- xnealcarson commented on issue: [7471](https://github.com/hackforla/website/issues/7471#issuecomment-2800104611) at 2025-04-13 01:10 PM PDT -xnealcarson,2025-04-16T02:18:14Z,- xnealcarson commented on pull request: [8060](https://github.com/hackforla/website/pull/8060#issuecomment-2808031963) at 2025-04-15 07:18 PM PDT -xnealcarson,2025-04-16T02:18:42Z,- xnealcarson commented on pull request: [8059](https://github.com/hackforla/website/pull/8059#issuecomment-2808032450) at 2025-04-15 07:18 PM PDT -xnealcarson,2025-04-16T02:49:02Z,- xnealcarson commented on pull request: [8058](https://github.com/hackforla/website/pull/8058#issuecomment-2808083651) at 2025-04-15 07:49 PM PDT -xnealcarson,2025-04-17T19:11:44Z,- xnealcarson pull request merged: [8061](https://github.com/hackforla/website/pull/8061#event-17310716868) at 2025-04-17 12:11 PM PDT -xnealcarson,2025-04-17T22:13:40Z,- xnealcarson submitted pull request review: [8060](https://github.com/hackforla/website/pull/8060#pullrequestreview-2777044386) at 2025-04-17 03:13 PM PDT -xnealcarson,2025-04-19T01:27:21Z,- xnealcarson submitted pull request review: [8059](https://github.com/hackforla/website/pull/8059#pullrequestreview-2779738341) at 2025-04-18 06:27 PM PDT -xnealcarson,2025-04-19T01:43:47Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2816451277) at 2025-04-18 06:43 PM PDT -xnealcarson,2025-04-19T21:27:18Z,- xnealcarson submitted pull request review: [8058](https://github.com/hackforla/website/pull/8058#pullrequestreview-2780095062) at 2025-04-19 02:27 PM PDT -xnealcarson,2025-04-20T21:56:18Z,- xnealcarson commented on pull request: [8069](https://github.com/hackforla/website/pull/8069#issuecomment-2817356279) at 2025-04-20 02:56 PM PDT -xnealcarson,2025-04-20T21:56:34Z,- xnealcarson commented on pull request: [8071](https://github.com/hackforla/website/pull/8071#issuecomment-2817356458) at 2025-04-20 02:56 PM PDT -xnealcarson,2025-04-21T20:18:34Z,- xnealcarson assigned to issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:18 PM PDT -xnealcarson,2025-04-21T20:18:49Z,- xnealcarson unassigned from issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:18 PM PDT -xnealcarson,2025-04-21T20:21:31Z,- xnealcarson assigned to issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:21 PM PDT -xnealcarson,2025-04-21T20:21:45Z,- xnealcarson unassigned from issue: [7782](https://github.com/hackforla/website/issues/7782) at 2025-04-21 01:21 PM PDT -xnealcarson,2025-04-21T22:07:57Z,- xnealcarson assigned to issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2705769103) at 2025-04-21 03:07 PM PDT -xnealcarson,2025-04-21T22:10:21Z,- xnealcarson commented on issue: [7443](https://github.com/hackforla/website/issues/7443#issuecomment-2819599845) at 2025-04-21 03:10 PM PDT -xnealcarson,2025-04-23T21:36:22Z,- xnealcarson submitted pull request review: [8069](https://github.com/hackforla/website/pull/8069#pullrequestreview-2788733799) at 2025-04-23 02:36 PM PDT -xnealcarson,2025-04-25T01:21:35Z,- xnealcarson submitted pull request review: [8071](https://github.com/hackforla/website/pull/8071#pullrequestreview-2792802529) at 2025-04-24 06:21 PM PDT -xnealcarson,2025-04-26T20:45:36Z,- xnealcarson opened pull request: [8090](https://github.com/hackforla/website/pull/8090) at 2025-04-26 01:45 PM PDT -xnealcarson,2025-04-29T00:01:34Z,- xnealcarson commented on pull request: [8091](https://github.com/hackforla/website/pull/8091#issuecomment-2837051261) at 2025-04-28 05:01 PM PDT -xnealcarson,2025-04-29T18:16:45Z,- xnealcarson commented on pull request: [8092](https://github.com/hackforla/website/pull/8092#issuecomment-2839784225) at 2025-04-29 11:16 AM PDT -xnealcarson,2025-04-29T18:29:44Z,- xnealcarson submitted pull request review: [8091](https://github.com/hackforla/website/pull/8091#pullrequestreview-2804610722) at 2025-04-29 11:29 AM PDT -xnealcarson,2025-04-30T01:55:44Z,- xnealcarson pull request merged: [8090](https://github.com/hackforla/website/pull/8090#event-17465090985) at 2025-04-29 06:55 PM PDT -xnealcarson,2025-05-02T01:07:55Z,- xnealcarson submitted pull request review: [8092](https://github.com/hackforla/website/pull/8092#pullrequestreview-2811005372) at 2025-05-01 06:07 PM PDT -xnealcarson,2025-05-02T01:14:29Z,- xnealcarson commented on pull request: [8104](https://github.com/hackforla/website/pull/8104#issuecomment-2846096942) at 2025-05-01 06:14 PM PDT -xnealcarson,2025-05-02T01:16:30Z,- xnealcarson commented on pull request: [8101](https://github.com/hackforla/website/pull/8101#issuecomment-2846098549) at 2025-05-01 06:16 PM PDT -xnealcarson,2025-05-03T02:37:12Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2848379911) at 2025-05-02 07:37 PM PDT -xnealcarson,2025-05-04T03:07:55Z,- xnealcarson submitted pull request review: [8101](https://github.com/hackforla/website/pull/8101#pullrequestreview-2813350012) at 2025-05-03 08:07 PM PDT -xnealcarson,2025-05-04T03:21:10Z,- xnealcarson submitted pull request review: [8104](https://github.com/hackforla/website/pull/8104#pullrequestreview-2813351439) at 2025-05-03 08:21 PM PDT -xnealcarson,2025-05-06T21:46:24Z,- xnealcarson commented on pull request: [8116](https://github.com/hackforla/website/pull/8116#issuecomment-2856148556) at 2025-05-06 02:46 PM PDT -xnealcarson,2025-05-08T00:04:00Z,- xnealcarson submitted pull request review: [8116](https://github.com/hackforla/website/pull/8116#pullrequestreview-2823503043) at 2025-05-07 05:04 PM PDT -xnealcarson,2025-05-08T00:06:22Z,- xnealcarson commented on pull request: [8118](https://github.com/hackforla/website/pull/8118#issuecomment-2860880993) at 2025-05-07 05:06 PM PDT -xnealcarson,2025-05-10T02:58:05Z,- xnealcarson submitted pull request review: [8118](https://github.com/hackforla/website/pull/8118#pullrequestreview-2830124020) at 2025-05-09 07:58 PM PDT -xnealcarson,2025-05-16T21:17:47Z,- xnealcarson commented on pull request: [8143](https://github.com/hackforla/website/pull/8143#issuecomment-2887693120) at 2025-05-16 02:17 PM PDT -xnealcarson,2025-05-16T21:18:30Z,- xnealcarson commented on pull request: [8142](https://github.com/hackforla/website/pull/8142#issuecomment-2887694157) at 2025-05-16 02:18 PM PDT -xnealcarson,2025-05-16T21:19:08Z,- xnealcarson commented on pull request: [8141](https://github.com/hackforla/website/pull/8141#issuecomment-2887694979) at 2025-05-16 02:19 PM PDT -xnealcarson,2025-05-16T22:14:21Z,- xnealcarson submitted pull request review: [8141](https://github.com/hackforla/website/pull/8141#pullrequestreview-2847702267) at 2025-05-16 03:14 PM PDT -xnealcarson,2025-05-16T22:22:04Z,- xnealcarson submitted pull request review: [8142](https://github.com/hackforla/website/pull/8142#pullrequestreview-2847710600) at 2025-05-16 03:22 PM PDT -xnealcarson,2025-05-16T22:44:57Z,- xnealcarson submitted pull request review: [8143](https://github.com/hackforla/website/pull/8143#pullrequestreview-2847730218) at 2025-05-16 03:44 PM PDT -xnealcarson,2025-05-19T23:20:53Z,- xnealcarson assigned to issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2767505799) at 2025-05-19 04:20 PM PDT -xnealcarson,2025-05-19T23:21:09Z,- xnealcarson unassigned from issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2767505799) at 2025-05-19 04:21 PM PDT -xnealcarson,2025-05-19T23:33:49Z,- xnealcarson assigned to issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892496126) at 2025-05-19 04:33 PM PDT -xnealcarson,2025-05-20T00:02:53Z,- xnealcarson commented on issue: [8024](https://github.com/hackforla/website/issues/8024#issuecomment-2892541288) at 2025-05-19 05:02 PM PDT -xnealcarson,2025-05-20T23:33:56Z,- xnealcarson commented on pull request: [8146](https://github.com/hackforla/website/pull/8146#issuecomment-2896060514) at 2025-05-20 04:33 PM PDT -xnealcarson,2025-05-21T01:07:16Z,- xnealcarson submitted pull request review: [8146](https://github.com/hackforla/website/pull/8146#pullrequestreview-2855943417) at 2025-05-20 06:07 PM PDT -xnealcarson,2025-05-21T22:45:21Z,- xnealcarson opened issue: [8151](https://github.com/hackforla/website/issues/8151) at 2025-05-21 03:45 PM PDT -xnealcarson,2025-05-22T21:12:00Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2902583417) at 2025-05-22 02:12 PM PDT -xnealcarson,2025-05-22T21:23:58Z,- xnealcarson commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902606277) at 2025-05-22 02:23 PM PDT -xnealcarson,2025-05-22T21:55:02Z,- xnealcarson assigned to issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2902643601) at 2025-05-22 02:55 PM PDT -xnealcarson,2025-05-23T19:57:15Z,- xnealcarson commented on issue: [8151](https://github.com/hackforla/website/issues/8151#issuecomment-2905668421) at 2025-05-23 12:57 PM PDT -xnealcarson,2025-06-01T04:18:25Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2926463965) at 2025-05-31 09:18 PM PDT -xnealcarson,2025-06-11T19:50:02Z,- xnealcarson opened pull request: [8181](https://github.com/hackforla/website/pull/8181) at 2025-06-11 12:50 PM PDT -xnealcarson,2025-06-15T15:30:13Z,- xnealcarson commented on pull request: [8181](https://github.com/hackforla/website/pull/8181#issuecomment-2974083024) at 2025-06-15 08:30 AM PDT -xnealcarson,2025-06-15T15:35:59Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-2974094799) at 2025-06-15 08:35 AM PDT -xnealcarson,2025-06-16T21:07:26Z,- xnealcarson pull request merged: [8181](https://github.com/hackforla/website/pull/8181#event-18178439340) at 2025-06-16 02:07 PM PDT -xnealcarson,2025-06-23T20:27:28Z,- xnealcarson commented on pull request: [8199](https://github.com/hackforla/website/pull/8199#issuecomment-2997848991) at 2025-06-23 01:27 PM PDT -xnealcarson,2025-06-23T20:28:07Z,- xnealcarson commented on pull request: [8195](https://github.com/hackforla/website/pull/8195#issuecomment-2997850775) at 2025-06-23 01:28 PM PDT -xnealcarson,2025-06-24T21:52:53Z,- xnealcarson submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2955471053) at 2025-06-24 02:52 PM PDT -xnealcarson,2025-06-25T23:05:22Z,- xnealcarson submitted pull request review: [8199](https://github.com/hackforla/website/pull/8199#pullrequestreview-2959910203) at 2025-06-25 04:05 PM PDT -xnealcarson,2025-06-27T01:00:15Z,- xnealcarson submitted pull request review: [8195](https://github.com/hackforla/website/pull/8195#pullrequestreview-2964269635) at 2025-06-26 06:00 PM PDT -xnealcarson,2025-06-28T03:20:58Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3014894671) at 2025-06-27 08:20 PM PDT -xnealcarson,2025-08-08T12:51:10Z,- xnealcarson commented on issue: [7972](https://github.com/hackforla/website/issues/7972#issuecomment-3167783130) at 2025-08-08 05:51 AM PDT -y20s,2021-01-11T22:59:04Z,- y20s assigned to issue: [907](https://github.com/hackforla/website/issues/907) at 2021-01-11 02:59 PM PST -y20s,2021-01-20T03:33:12Z,- y20s opened pull request: [951](https://github.com/hackforla/website/pull/951) at 2021-01-19 07:33 PM PST -y20s,2021-01-20T03:47:24Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-763309965) at 2021-01-19 07:47 PM PST -y20s,2021-01-20T03:49:24Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-763310526) at 2021-01-19 07:49 PM PST -y20s,2021-01-20T03:51:23Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-763311026) at 2021-01-19 07:51 PM PST -y20s,2021-01-20T23:04:44Z,- y20s commented on pull request: [951](https://github.com/hackforla/website/pull/951#issuecomment-764011267) at 2021-01-20 03:04 PM PST -y20s,2021-01-22T02:10:04Z,- y20s pull request merged: [951](https://github.com/hackforla/website/pull/951#event-4236415874) at 2021-01-21 06:10 PM PST -y20s,2021-01-24T18:12:54Z,- y20s commented on issue: [934](https://github.com/hackforla/website/issues/934#issuecomment-766405875) at 2021-01-24 10:12 AM PST -y20s,2021-01-24T18:13:22Z,- y20s closed issue as completed: [934](https://github.com/hackforla/website/issues/934#event-4242772487) at 2021-01-24 10:13 AM PST -y20s,2021-01-24T18:29:55Z,- y20s commented on issue: [830](https://github.com/hackforla/website/issues/830#issuecomment-766408606) at 2021-01-24 10:29 AM PST -ychang49265,3711,SKILLS ISSUE -ychang49265,2022-11-09T03:47:29Z,- ychang49265 opened issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-08 07:47 PM PST -ychang49265,2022-11-16T03:44:05Z,- ychang49265 assigned to issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-15 07:44 PM PST -ychang49265,2022-11-21T14:44:54Z,- ychang49265 unassigned from issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-21 06:44 AM PST -ychang49265,2022-11-22T14:47:39Z,- ychang49265 assigned to issue: [3711](https://github.com/hackforla/website/issues/3711) at 2022-11-22 06:47 AM PST -ychang49265,2022-11-22T18:27:20Z,- ychang49265 commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1324083623) at 2022-11-22 10:27 AM PST -ychang49265,2022-11-22T18:43:21Z,- ychang49265 commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1324100399) at 2022-11-22 10:43 AM PST -ychang49265,2022-12-11T17:38:19Z,- ychang49265 commented on issue: [3711](https://github.com/hackforla/website/issues/3711#issuecomment-1345613430) at 2022-12-11 09:38 AM PST -ychang49265,2022-12-26T23:56:35Z,- ychang49265 assigned to issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1335847822) at 2022-12-26 03:56 PM PST -ychang49265,2022-12-27T00:15:33Z,- ychang49265 commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1365516720) at 2022-12-26 04:15 PM PST -ychang49265,2022-12-27T00:31:13Z,- ychang49265 commented on issue: [2871](https://github.com/hackforla/website/issues/2871#issuecomment-1365521859) at 2022-12-26 04:31 PM PST -ychang49265,2023-01-14T00:22:52Z,- ychang49265 opened pull request: [3816](https://github.com/hackforla/website/pull/3816) at 2023-01-13 04:22 PM PST -ychang49265,2023-01-16T20:30:21Z,- ychang49265 pull request merged: [3816](https://github.com/hackforla/website/pull/3816#event-8239929051) at 2023-01-16 12:30 PM PST -ychu196,2022-10-25T01:39:01Z,- ychu196 commented on issue: [3056](https://github.com/hackforla/website/issues/3056#issuecomment-1289863242) at 2022-10-24 06:39 PM PDT -ychu196,2022-11-06T22:35:58Z,- ychu196 opened issue: [3697](https://github.com/hackforla/website/issues/3697) at 2022-11-06 02:35 PM PST -ychu196,2022-11-08T02:25:33Z,- ychu196 commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1306531685) at 2022-11-07 06:25 PM PST -ychu196,2022-12-13T00:08:19Z,- ychu196 commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1347554648) at 2022-12-12 04:08 PM PST -ychu196,2022-12-14T02:59:23Z,- ychu196 commented on issue: [3697](https://github.com/hackforla/website/issues/3697#issuecomment-1350308492) at 2022-12-13 06:59 PM PST -ychu196,2023-06-20T06:50:26Z,- ychu196 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1598209544) at 2023-06-19 11:50 PM PDT -ychu196,2023-06-22T17:31:24Z,- ychu196 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1603056249) at 2023-06-22 10:31 AM PDT -ychu196,2023-06-25T05:04:39Z,- ychu196 commented on issue: [4151](https://github.com/hackforla/website/issues/4151#issuecomment-1605872982) at 2023-06-24 10:04 PM PDT -ye-susan,2020-04-26T17:55:10Z,- ye-susan assigned to issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 10:55 AM PDT -ye-susan,2020-04-26T20:33:12Z,- ye-susan assigned to issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-616243829) at 2020-04-26 01:33 PM PDT -ye-susan,2020-04-26T20:36:19Z,- ye-susan unassigned from issue: [368](https://github.com/hackforla/website/issues/368#event-3225383643) at 2020-04-26 01:36 PM PDT -ye-susan,2020-04-28T22:11:32Z,- ye-susan opened pull request: [473](https://github.com/hackforla/website/pull/473) at 2020-04-28 03:11 PM PDT -ye-susan,2020-04-28T22:23:03Z,- ye-susan pull request merged: [473](https://github.com/hackforla/website/pull/473#event-3282351355) at 2020-04-28 03:23 PM PDT -ye-susan,2020-04-28T22:30:11Z,- ye-susan reopened pull request: [473](https://github.com/hackforla/website/pull/473#event-3282351355) at 2020-04-28 03:30 PM PDT -ye-susan,2020-04-28T22:32:29Z,- ye-susan commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-620889591) at 2020-04-28 03:32 PM PDT -ye-susan,2020-04-30T06:17:11Z,- ye-susan opened pull request: [476](https://github.com/hackforla/website/pull/476) at 2020-04-29 11:17 PM PDT -ye-susan,2020-04-30T06:18:13Z,- ye-susan pull request merged: [476](https://github.com/hackforla/website/pull/476#event-3287721167) at 2020-04-29 11:18 PM PDT -ye-susan,2020-04-30T06:38:12Z,- ye-susan opened issue: [477](https://github.com/hackforla/website/issues/477) at 2020-04-29 11:38 PM PDT -ye-susan,2020-05-01T05:10:00Z,- ye-susan pull request merged: [473](https://github.com/hackforla/website/pull/473#event-3292255378) at 2020-04-30 10:10 PM PDT -ye-susan,2020-05-03T18:24:36Z,- ye-susan assigned to issue: [469](https://github.com/hackforla/website/issues/469) at 2020-05-03 11:24 AM PDT -ye-susan,2020-05-03T19:14:48Z,- ye-susan opened pull request: [486](https://github.com/hackforla/website/pull/486) at 2020-05-03 12:14 PM PDT -ye-susan,2020-05-03T19:16:10Z,- ye-susan commented on issue: [431](https://github.com/hackforla/website/issues/431#issuecomment-623165225) at 2020-05-03 12:16 PM PDT -ye-susan,2020-05-03T22:30:40Z,- ye-susan pull request merged: [486](https://github.com/hackforla/website/pull/486#event-3297905284) at 2020-05-03 03:30 PM PDT -ye-susan,2020-05-06T02:48:38Z,- ye-susan assigned to issue: [384](https://github.com/hackforla/website/issues/384#issuecomment-624322406) at 2020-05-05 07:48 PM PDT -ye-susan,2020-05-09T07:47:40Z,- ye-susan closed issue as completed: [431](https://github.com/hackforla/website/issues/431#event-3319109616) at 2020-05-09 12:47 AM PDT -ye-susan,2020-05-09T07:59:41Z,- ye-susan opened pull request: [504](https://github.com/hackforla/website/pull/504) at 2020-05-09 12:59 AM PDT -ye-susan,2020-05-10T19:16:37Z,- ye-susan assigned to issue: [506](https://github.com/hackforla/website/issues/506) at 2020-05-10 12:16 PM PDT -ye-susan,2020-05-11T14:10:52Z,- ye-susan closed issue by PR 504: [384](https://github.com/hackforla/website/issues/384#event-3323161074) at 2020-05-11 07:10 AM PDT -ye-susan,2020-05-11T14:10:52Z,- ye-susan pull request merged: [504](https://github.com/hackforla/website/pull/504#event-3323161094) at 2020-05-11 07:10 AM PDT -ye-susan,2020-05-12T21:16:24Z,- ye-susan commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-627602710) at 2020-05-12 02:16 PM PDT -ye-susan,2020-05-13T23:01:08Z,- ye-susan opened pull request: [512](https://github.com/hackforla/website/pull/512) at 2020-05-13 04:01 PM PDT -ye-susan,2020-05-14T02:46:18Z,- ye-susan pull request merged: [512](https://github.com/hackforla/website/pull/512#event-3334622969) at 2020-05-13 07:46 PM PDT -ye-susan,2020-05-17T07:20:34Z,- ye-susan commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-629754997) at 2020-05-17 12:20 AM PDT -ye-susan,2020-05-17T18:19:06Z,- ye-susan assigned to issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619662073) at 2020-05-17 11:19 AM PDT -ye-susan,2020-05-17T18:19:21Z,- ye-susan unassigned from issue: [459](https://github.com/hackforla/website/issues/459#issuecomment-619662073) at 2020-05-17 11:19 AM PDT -ye-susan,2020-05-19T00:06:31Z,- ye-susan opened issue: [529](https://github.com/hackforla/website/issues/529) at 2020-05-18 05:06 PM PDT -ye-susan,2020-05-19T00:06:40Z,- ye-susan assigned to issue: [529](https://github.com/hackforla/website/issues/529) at 2020-05-18 05:06 PM PDT -ye-susan,2020-05-19T00:10:25Z,- ye-susan commented on issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-630499315) at 2020-05-18 05:10 PM PDT -ye-susan,2020-05-20T01:34:12Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-631180825) at 2020-05-19 06:34 PM PDT -ye-susan,2020-05-20T19:29:31Z,- ye-susan opened pull request: [531](https://github.com/hackforla/website/pull/531) at 2020-05-20 12:29 PM PDT -ye-susan,2020-05-21T02:42:05Z,- ye-susan pull request merged: [531](https://github.com/hackforla/website/pull/531#event-3359022824) at 2020-05-20 07:42 PM PDT -ye-susan,2020-05-24T07:51:54Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-633193987) at 2020-05-24 12:51 AM PDT -ye-susan,2020-05-24T16:58:48Z,- ye-susan unassigned from issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-24 09:58 AM PDT -ye-susan,2020-05-24T17:03:38Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-633260770) at 2020-05-24 10:03 AM PDT -ye-susan,2020-05-24T19:31:03Z,- ye-susan assigned to issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -ye-susan,2020-05-24T19:31:47Z,- ye-susan unassigned from issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-633283094) at 2020-05-24 12:31 PM PDT -ye-susan,2020-05-25T06:14:15Z,- ye-susan commented on pull request: [539](https://github.com/hackforla/website/pull/539#issuecomment-633396956) at 2020-05-24 11:14 PM PDT -ye-susan,2020-05-27T06:35:22Z,- ye-susan closed issue by PR 546: [532](https://github.com/hackforla/website/issues/532#event-3376604850) at 2020-05-26 11:35 PM PDT -ye-susan,2020-05-27T07:03:58Z,- ye-susan submitted pull request review: [545](https://github.com/hackforla/website/pull/545#pullrequestreview-418908845) at 2020-05-27 12:03 AM PDT -ye-susan,2020-05-27T21:17:07Z,- ye-susan closed issue by PR 545: [510](https://github.com/hackforla/website/issues/510#event-3380109427) at 2020-05-27 02:17 PM PDT -ye-susan,2020-05-31T08:23:56Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636439250) at 2020-05-31 01:23 AM PDT -ye-susan,2020-05-31T18:26:11Z,- ye-susan assigned to issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-636496646) at 2020-05-31 11:26 AM PDT -ye-susan,2020-06-01T01:14:43Z,- ye-susan assigned to issue: [525](https://github.com/hackforla/website/issues/525) at 2020-05-31 06:14 PM PDT -ye-susan,2020-06-01T01:34:23Z,- ye-susan commented on issue: [270](https://github.com/hackforla/website/issues/270#issuecomment-636568893) at 2020-05-31 06:34 PM PDT -ye-susan,2020-06-01T01:35:16Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569085) at 2020-05-31 06:35 PM PDT -ye-susan,2020-06-01T01:35:33Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569146) at 2020-05-31 06:35 PM PDT -ye-susan,2020-06-01T01:35:49Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569202) at 2020-05-31 06:35 PM PDT -ye-susan,2020-06-01T01:36:03Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569246) at 2020-05-31 06:36 PM PDT -ye-susan,2020-06-01T01:36:17Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-636569286) at 2020-05-31 06:36 PM PDT -ye-susan,2020-06-01T02:50:59Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-636585101) at 2020-05-31 07:50 PM PDT -ye-susan,2020-06-01T03:02:32Z,- ye-susan assigned to issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-05-31 08:02 PM PDT -ye-susan,2020-06-01T03:03:13Z,- ye-susan unassigned from issue: [469](https://github.com/hackforla/website/issues/469#issuecomment-626354547) at 2020-05-31 08:03 PM PDT -ye-susan,2020-06-01T03:04:02Z,- ye-susan closed issue as completed: [469](https://github.com/hackforla/website/issues/469#event-3391350023) at 2020-05-31 08:04 PM PDT -ye-susan,2020-06-01T22:27:07Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637158360) at 2020-06-01 03:27 PM PDT -ye-susan,2020-06-02T19:23:45Z,- ye-susan commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-637756798) at 2020-06-02 12:23 PM PDT -ye-susan,2020-06-03T02:25:39Z,- ye-susan unassigned from issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-637158360) at 2020-06-02 07:25 PM PDT -ye-susan,2020-06-03T02:39:49Z,- ye-susan closed issue as completed: [270](https://github.com/hackforla/website/issues/270#event-3400175231) at 2020-06-02 07:39 PM PDT -ye-susan,2020-06-03T02:49:44Z,- ye-susan assigned to issue: [556](https://github.com/hackforla/website/issues/556) at 2020-06-02 07:49 PM PDT -ye-susan,2020-06-03T21:50:39Z,- ye-susan commented on issue: [323](https://github.com/hackforla/website/issues/323#issuecomment-638480332) at 2020-06-03 02:50 PM PDT -ye-susan,2020-06-03T22:55:30Z,- ye-susan opened pull request: [560](https://github.com/hackforla/website/pull/560) at 2020-06-03 03:55 PM PDT -ye-susan,2020-06-04T00:31:36Z,- ye-susan commented on pull request: [560](https://github.com/hackforla/website/pull/560#issuecomment-638530408) at 2020-06-03 05:31 PM PDT -ye-susan,2020-06-04T03:47:05Z,- ye-susan opened pull request: [561](https://github.com/hackforla/website/pull/561) at 2020-06-03 08:47 PM PDT -ye-susan,2020-06-04T05:36:29Z,- ye-susan closed issue by PR 560: [323](https://github.com/hackforla/website/issues/323#event-3405133483) at 2020-06-03 10:36 PM PDT -ye-susan,2020-06-04T05:36:29Z,- ye-susan pull request merged: [560](https://github.com/hackforla/website/pull/560#event-3405133490) at 2020-06-03 10:36 PM PDT -ye-susan,2020-06-07T00:45:42Z,- ye-susan commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-640138919) at 2020-06-06 05:45 PM PDT -ye-susan,2020-06-07T16:25:01Z,- ye-susan assigned to issue: [567](https://github.com/hackforla/website/issues/567) at 2020-06-07 09:25 AM PDT -ye-susan,2020-06-07T17:09:54Z,- ye-susan assigned to issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-640241905) at 2020-06-07 10:09 AM PDT -ye-susan,2020-06-07T17:37:44Z,- ye-susan assigned to issue: [570](https://github.com/hackforla/website/issues/570) at 2020-06-07 10:37 AM PDT -ye-susan,2020-06-07T18:16:43Z,- ye-susan assigned to issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-07 11:16 AM PDT -ye-susan,2020-06-09T06:13:07Z,- ye-susan commented on pull request: [561](https://github.com/hackforla/website/pull/561#issuecomment-641054210) at 2020-06-08 11:13 PM PDT -ye-susan,2020-06-09T20:18:01Z,- ye-susan opened pull request: [573](https://github.com/hackforla/website/pull/573) at 2020-06-09 01:18 PM PDT -ye-susan,2020-06-09T20:18:36Z,- ye-susan pull request closed w/o merging: [573](https://github.com/hackforla/website/pull/573#event-3426673043) at 2020-06-09 01:18 PM PDT -ye-susan,2020-06-09T20:18:48Z,- ye-susan reopened pull request: [573](https://github.com/hackforla/website/pull/573#event-3426673043) at 2020-06-09 01:18 PM PDT -ye-susan,2020-06-09T20:22:48Z,- ye-susan commented on pull request: [573](https://github.com/hackforla/website/pull/573#issuecomment-641548873) at 2020-06-09 01:22 PM PDT -ye-susan,2020-06-09T22:32:54Z,- ye-susan commented on issue: [567](https://github.com/hackforla/website/issues/567#issuecomment-641615967) at 2020-06-09 03:32 PM PDT -ye-susan,2020-06-10T01:43:57Z,- ye-susan pull request merged: [561](https://github.com/hackforla/website/pull/561#event-3427451475) at 2020-06-09 06:43 PM PDT -ye-susan,2020-06-10T18:32:52Z,- ye-susan opened pull request: [574](https://github.com/hackforla/website/pull/574) at 2020-06-10 11:32 AM PDT -ye-susan,2020-06-10T18:33:25Z,- ye-susan pull request closed w/o merging: [573](https://github.com/hackforla/website/pull/573#event-3430951453) at 2020-06-10 11:33 AM PDT -ye-susan,2020-06-10T18:34:02Z,- ye-susan commented on pull request: [573](https://github.com/hackforla/website/pull/573#issuecomment-642186035) at 2020-06-10 11:34 AM PDT -ye-susan,2020-06-10T18:43:00Z,- ye-susan commented on issue: [553](https://github.com/hackforla/website/issues/553#issuecomment-642190172) at 2020-06-10 11:43 AM PDT -ye-susan,2020-06-14T17:17:54Z,- ye-susan unassigned from issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-14 10:17 AM PDT -ye-susan,2020-06-16T07:22:45Z,- ye-susan commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-644583427) at 2020-06-16 12:22 AM PDT -ye-susan,2020-06-21T16:55:25Z,- ye-susan unassigned from issue: [506](https://github.com/hackforla/website/issues/506#issuecomment-633259864) at 2020-06-21 09:55 AM PDT -ye-susan,2020-06-21T18:19:02Z,- ye-susan assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647162898) at 2020-06-21 11:19 AM PDT -ye-susan,2020-06-21T18:26:18Z,- ye-susan assigned to issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-640248482) at 2020-06-21 11:26 AM PDT -ye-susan,2020-06-22T22:28:20Z,- ye-susan commented on issue: [567](https://github.com/hackforla/website/issues/567#issuecomment-647800753) at 2020-06-22 03:28 PM PDT -ye-susan,2020-06-22T22:28:33Z,- ye-susan closed issue as completed: [567](https://github.com/hackforla/website/issues/567#event-3470387669) at 2020-06-22 03:28 PM PDT -ye-susan,2020-06-24T02:49:18Z,- ye-susan unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-647187541) at 2020-06-23 07:49 PM PDT -ye-susan,2020-06-24T17:52:22Z,- ye-susan commented on issue: [529](https://github.com/hackforla/website/issues/529#issuecomment-648971936) at 2020-06-24 10:52 AM PDT -ye-susan,2020-06-25T05:01:21Z,- ye-susan pull request merged: [574](https://github.com/hackforla/website/pull/574#event-3480354305) at 2020-06-24 10:01 PM PDT -ye-susan,2020-06-28T02:10:11Z,- ye-susan commented on issue: [514](https://github.com/hackforla/website/issues/514#issuecomment-650671880) at 2020-06-27 07:10 PM PDT -ye-susan,2020-06-28T20:48:55Z,- ye-susan opened pull request: [589](https://github.com/hackforla/website/pull/589) at 2020-06-28 01:48 PM PDT -ye-susan,2020-07-02T21:09:14Z,- ye-susan opened pull request: [592](https://github.com/hackforla/website/pull/592) at 2020-07-02 02:09 PM PDT -ye-susan,2020-07-02T21:10:01Z,- ye-susan commented on pull request: [589](https://github.com/hackforla/website/pull/589#issuecomment-653221653) at 2020-07-02 02:10 PM PDT -ye-susan,2020-07-02T21:10:02Z,- ye-susan pull request closed w/o merging: [589](https://github.com/hackforla/website/pull/589#event-3508760019) at 2020-07-02 02:10 PM PDT -ye-susan,2020-07-02T23:17:15Z,- ye-susan commented on issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-653256983) at 2020-07-02 04:17 PM PDT -ye-susan,2020-07-04T18:52:12Z,- ye-susan pull request merged: [592](https://github.com/hackforla/website/pull/592#event-3512768149) at 2020-07-04 11:52 AM PDT -ye-susan,2020-07-07T00:08:05Z,- ye-susan submitted pull request review: [596](https://github.com/hackforla/website/pull/596#pullrequestreview-443480018) at 2020-07-06 05:08 PM PDT -ye-susan,2020-07-07T19:55:12Z,- ye-susan opened pull request: [598](https://github.com/hackforla/website/pull/598) at 2020-07-07 12:55 PM PDT -ye-susan,2020-07-07T22:09:22Z,- ye-susan closed issue by PR 596: [593](https://github.com/hackforla/website/issues/593#event-3522504756) at 2020-07-07 03:09 PM PDT -ye-susan,2020-07-07T22:45:35Z,- ye-susan pull request merged: [598](https://github.com/hackforla/website/pull/598#event-3522599128) at 2020-07-07 03:45 PM PDT -ye-susan,2020-07-20T01:41:29Z,- ye-susan opened pull request: [619](https://github.com/hackforla/website/pull/619) at 2020-07-19 06:41 PM PDT -ye-susan,2020-07-20T05:09:42Z,- ye-susan commented on pull request: [619](https://github.com/hackforla/website/pull/619#issuecomment-660805205) at 2020-07-19 10:09 PM PDT -ye-susan,2020-07-20T16:09:31Z,- ye-susan pull request merged: [619](https://github.com/hackforla/website/pull/619#event-3566650983) at 2020-07-20 09:09 AM PDT -ye-susan,2020-07-22T05:31:02Z,- ye-susan opened pull request: [626](https://github.com/hackforla/website/pull/626) at 2020-07-21 10:31 PM PDT -ye-susan,2020-07-22T14:30:02Z,- ye-susan pull request merged: [626](https://github.com/hackforla/website/pull/626#event-3576058449) at 2020-07-22 07:30 AM PDT -ye-susan,2020-07-23T21:20:04Z,- ye-susan submitted pull request review: [630](https://github.com/hackforla/website/pull/630#pullrequestreview-454503284) at 2020-07-23 02:20 PM PDT -ye-susan,2020-07-23T21:20:56Z,- ye-susan submitted pull request review: [630](https://github.com/hackforla/website/pull/630#pullrequestreview-454503825) at 2020-07-23 02:20 PM PDT -ye-susan,2020-07-23T21:23:13Z,- ye-susan submitted pull request review: [630](https://github.com/hackforla/website/pull/630#pullrequestreview-454505184) at 2020-07-23 02:23 PM PDT -ye-susan,2020-07-26T00:07:50Z,- ye-susan commented on pull request: [630](https://github.com/hackforla/website/pull/630#issuecomment-663918879) at 2020-07-25 05:07 PM PDT -ye-susan,2020-07-26T18:55:17Z,- ye-susan opened issue: [645](https://github.com/hackforla/website/issues/645) at 2020-07-26 11:55 AM PDT -ye-susan,2020-07-26T18:55:18Z,- ye-susan assigned to issue: [645](https://github.com/hackforla/website/issues/645) at 2020-07-26 11:55 AM PDT -ye-susan,2020-07-27T02:05:48Z,- ye-susan opened pull request: [646](https://github.com/hackforla/website/pull/646) at 2020-07-26 07:05 PM PDT -ye-susan,2020-07-27T19:15:05Z,- ye-susan closed issue by PR 630: [599](https://github.com/hackforla/website/issues/599#event-3591277736) at 2020-07-27 12:15 PM PDT -ye-susan,2020-07-27T19:38:34Z,- ye-susan pull request merged: [646](https://github.com/hackforla/website/pull/646#event-3591355974) at 2020-07-27 12:38 PM PDT -ye-susan,2020-08-02T06:57:56Z,- ye-susan commented on issue: [577](https://github.com/hackforla/website/issues/577#issuecomment-667637326) at 2020-08-01 11:57 PM PDT -ye-susan,2020-08-08T22:05:55Z,- ye-susan opened pull request: [675](https://github.com/hackforla/website/pull/675) at 2020-08-08 03:05 PM PDT -ye-susan,2020-08-08T22:07:54Z,- ye-susan commented on issue: [645](https://github.com/hackforla/website/issues/645#issuecomment-670978960) at 2020-08-08 03:07 PM PDT -ye-susan,2020-08-12T06:25:54Z,- ye-susan commented on pull request: [675](https://github.com/hackforla/website/pull/675#issuecomment-672635500) at 2020-08-11 11:25 PM PDT -ye-susan,2020-08-16T16:43:33Z,- ye-susan pull request merged: [675](https://github.com/hackforla/website/pull/675#event-3659450822) at 2020-08-16 09:43 AM PDT -ye-susan,2020-09-08T04:50:33Z,- ye-susan commented on pull request: [722](https://github.com/hackforla/website/pull/722#issuecomment-688616953) at 2020-09-07 09:50 PM PDT -ye-susan,2020-09-08T17:53:43Z,- ye-susan commented on pull request: [722](https://github.com/hackforla/website/pull/722#issuecomment-689039540) at 2020-09-08 10:53 AM PDT -ye-susan,2021-07-26T02:35:23Z,- ye-susan unassigned from issue: [525](https://github.com/hackforla/website/issues/525#issuecomment-880602740) at 2021-07-25 07:35 PM PDT -yeskatr,4065,SKILLS ISSUE -yeskatr,2023-03-01T04:07:00Z,- yeskatr opened issue: [4065](https://github.com/hackforla/website/issues/4065) at 2023-02-28 08:07 PM PST -yeskatr,2023-03-01T04:08:42Z,- yeskatr assigned to issue: [4065](https://github.com/hackforla/website/issues/4065) at 2023-02-28 08:08 PM PST -yeskatr,2023-04-03T15:46:25Z,- yeskatr commented on issue: [4065](https://github.com/hackforla/website/issues/4065#issuecomment-1494564256) at 2023-04-03 08:46 AM PDT -yffu,5080,SKILLS ISSUE -yffu,2023-07-26T03:05:46Z,- yffu opened issue: [5080](https://github.com/hackforla/website/issues/5080) at 2023-07-25 08:05 PM PDT -yffu,2023-07-26T03:25:01Z,- yffu opened issue: [5087](https://github.com/hackforla/website/issues/5087) at 2023-07-25 08:25 PM PDT -yffu,2023-07-26T03:29:33Z,- yffu commented on issue: [5087](https://github.com/hackforla/website/issues/5087#issuecomment-1650922760) at 2023-07-25 08:29 PM PDT -yffu,2023-07-26T03:29:33Z,- yffu closed issue as completed: [5087](https://github.com/hackforla/website/issues/5087#event-9918802933) at 2023-07-25 08:29 PM PDT -yffu,2023-07-26T03:41:37Z,- yffu assigned to issue: [5080](https://github.com/hackforla/website/issues/5080) at 2023-07-25 08:41 PM PDT -yffu,2023-07-26T17:28:52Z,- yffu assigned to issue: [4811](https://github.com/hackforla/website/issues/4811) at 2023-07-26 10:28 AM PDT -yffu,2023-07-26T17:45:34Z,- yffu commented on issue: [4811](https://github.com/hackforla/website/issues/4811#issuecomment-1652247046) at 2023-07-26 10:45 AM PDT -yffu,2023-07-26T19:59:16Z,- yffu commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1652412533) at 2023-07-26 12:59 PM PDT -yffu,2023-07-26T20:22:14Z,- yffu opened pull request: [5096](https://github.com/hackforla/website/pull/5096) at 2023-07-26 01:22 PM PDT -yffu,2023-07-27T21:19:07Z,- yffu pull request merged: [5096](https://github.com/hackforla/website/pull/5096#event-9940818466) at 2023-07-27 02:19 PM PDT -yffu,2023-07-27T23:03:14Z,- yffu commented on pull request: [5096](https://github.com/hackforla/website/pull/5096#issuecomment-1654695898) at 2023-07-27 04:03 PM PDT -yffu,2023-07-27T23:29:18Z,- yffu assigned to issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1646884594) at 2023-07-27 04:29 PM PDT -yffu,2023-07-27T23:32:12Z,- yffu commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1654755261) at 2023-07-27 04:32 PM PDT -yffu,2023-07-28T01:14:12Z,- yffu opened pull request: [5106](https://github.com/hackforla/website/pull/5106) at 2023-07-27 06:14 PM PDT -yffu,2023-07-29T15:16:04Z,- yffu commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656756258) at 2023-07-29 08:16 AM PDT -yffu,2023-07-30T00:46:33Z,- yffu commented on issue: [4906](https://github.com/hackforla/website/issues/4906#issuecomment-1656983751) at 2023-07-29 05:46 PM PDT -yffu,2023-07-30T14:49:47Z,- yffu pull request merged: [5106](https://github.com/hackforla/website/pull/5106#event-9956897119) at 2023-07-30 07:49 AM PDT -yffu,2023-07-30T17:14:23Z,- yffu commented on pull request: [5109](https://github.com/hackforla/website/pull/5109#issuecomment-1657223076) at 2023-07-30 10:14 AM PDT -yffu,2023-07-30T18:01:09Z,- yffu submitted pull request review: [5109](https://github.com/hackforla/website/pull/5109#pullrequestreview-1553677626) at 2023-07-30 11:01 AM PDT -yffu,2023-08-04T15:59:08Z,- yffu commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1665846431) at 2023-08-04 08:59 AM PDT -yffu,2023-08-11T17:25:53Z,- yffu assigned to issue: [5012](https://github.com/hackforla/website/issues/5012#issuecomment-1641391242) at 2023-08-11 10:25 AM PDT -yffu,2023-08-11T17:27:03Z,- yffu commented on issue: [5012](https://github.com/hackforla/website/issues/5012#issuecomment-1675138371) at 2023-08-11 10:27 AM PDT -yffu,2023-08-25T17:26:21Z,- yffu commented on issue: [5080](https://github.com/hackforla/website/issues/5080#issuecomment-1693701598) at 2023-08-25 10:26 AM PDT -yiminng,2022-09-21T04:56:51Z,- yiminng opened issue: [3572](https://github.com/hackforla/website/issues/3572) at 2022-09-20 09:56 PM PDT -yiminng,2022-09-22T08:34:08Z,- yiminng commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1254703030) at 2022-09-22 01:34 AM PDT -yiminng,2022-10-30T22:42:58Z,- yiminng commented on issue: [3572](https://github.com/hackforla/website/issues/3572#issuecomment-1296368054) at 2022-10-30 03:42 PM PDT -ykim25,4649,SKILLS ISSUE -ykim25,2023-05-10T20:12:37Z,- ykim25 opened issue: [4649](https://github.com/hackforla/website/issues/4649) at 2023-05-10 01:12 PM PDT -ykim25,2023-05-10T20:13:06Z,- ykim25 assigned to issue: [4649](https://github.com/hackforla/website/issues/4649) at 2023-05-10 01:13 PM PDT -Yogeshp0012,2021-12-07T14:23:21Z,- Yogeshp0012 commented on issue: [2553](https://github.com/hackforla/website/issues/2553#issuecomment-987972392) at 2021-12-07 06:23 AM PST -YolandaHaynes,5482,SKILLS ISSUE -YolandaHaynes,2023-09-12T03:13:16Z,- YolandaHaynes opened issue: [5482](https://github.com/hackforla/website/issues/5482) at 2023-09-11 08:13 PM PDT -YolandaHaynes,2023-09-12T03:13:20Z,- YolandaHaynes assigned to issue: [5482](https://github.com/hackforla/website/issues/5482) at 2023-09-11 08:13 PM PDT -YolandaHaynes,2023-09-14T08:06:59Z,- YolandaHaynes assigned to issue: [5476](https://github.com/hackforla/website/issues/5476#issuecomment-1714486773) at 2023-09-14 01:06 AM PDT -YolandaHaynes,2023-09-14T08:10:48Z,- YolandaHaynes commented on issue: [5476](https://github.com/hackforla/website/issues/5476#issuecomment-1718969808) at 2023-09-14 01:10 AM PDT -YolandaHaynes,2023-09-15T02:10:43Z,- YolandaHaynes opened pull request: [5535](https://github.com/hackforla/website/pull/5535) at 2023-09-14 07:10 PM PDT -YolandaHaynes,2023-09-15T02:17:41Z,- YolandaHaynes commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1720392646) at 2023-09-14 07:17 PM PDT -YolandaHaynes,2023-09-17T18:33:24Z,- YolandaHaynes pull request merged: [5535](https://github.com/hackforla/website/pull/5535#event-10391807447) at 2023-09-17 11:33 AM PDT -YolandaHaynes,2023-09-17T23:18:10Z,- YolandaHaynes assigned to issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1704045066) at 2023-09-17 04:18 PM PDT -YolandaHaynes,2023-09-18T00:12:51Z,- YolandaHaynes commented on issue: [5408](https://github.com/hackforla/website/issues/5408#issuecomment-1722610092) at 2023-09-17 05:12 PM PDT -YolandaHaynes,2023-09-18T01:30:46Z,- YolandaHaynes opened pull request: [5550](https://github.com/hackforla/website/pull/5550) at 2023-09-17 06:30 PM PDT -YolandaHaynes,2023-09-20T02:27:56Z,- YolandaHaynes pull request merged: [5550](https://github.com/hackforla/website/pull/5550#event-10416953824) at 2023-09-19 07:27 PM PDT -YolandaHaynes,2023-09-24T13:50:24Z,- YolandaHaynes commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1732574826) at 2023-09-24 06:50 AM PDT -YolandaHaynes,2023-09-24T22:44:32Z,- YolandaHaynes commented on issue: [5482](https://github.com/hackforla/website/issues/5482#issuecomment-1732687529) at 2023-09-24 03:44 PM PDT -YolandaHaynes,2023-09-24T22:44:32Z,- YolandaHaynes closed issue as completed: [5482](https://github.com/hackforla/website/issues/5482#event-10456089475) at 2023-09-24 03:44 PM PDT -YolandaHaynes,2023-09-24T23:05:45Z,- YolandaHaynes assigned to issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1707294204) at 2023-09-24 04:05 PM PDT -YolandaHaynes,2023-09-24T23:11:34Z,- YolandaHaynes commented on issue: [5447](https://github.com/hackforla/website/issues/5447#issuecomment-1732693066) at 2023-09-24 04:11 PM PDT -YolandaHaynes,2023-10-02T06:27:59Z,- YolandaHaynes opened pull request: [5645](https://github.com/hackforla/website/pull/5645) at 2023-10-01 11:27 PM PDT -YolandaHaynes,2023-10-05T00:15:55Z,- YolandaHaynes pull request merged: [5645](https://github.com/hackforla/website/pull/5645#event-10556854808) at 2023-10-04 05:15 PM PDT -YolandaHaynes,2024-01-01T06:34:00Z,- YolandaHaynes assigned to issue: [5963](https://github.com/hackforla/website/issues/5963#issuecomment-1839850172) at 2023-12-31 10:34 PM PST -YolandaHaynes,2024-01-01T06:36:59Z,- YolandaHaynes commented on issue: [5963](https://github.com/hackforla/website/issues/5963#issuecomment-1873185584) at 2023-12-31 10:36 PM PST -YolandaHaynes,2024-01-02T02:34:41Z,- YolandaHaynes opened pull request: [6025](https://github.com/hackforla/website/pull/6025) at 2024-01-01 06:34 PM PST -YolandaHaynes,2024-01-07T22:06:37Z,- YolandaHaynes commented on pull request: [6025](https://github.com/hackforla/website/pull/6025#issuecomment-1880190706) at 2024-01-07 02:06 PM PST -YolandaHaynes,2024-01-10T05:25:47Z,- YolandaHaynes pull request merged: [6025](https://github.com/hackforla/website/pull/6025#event-11438624557) at 2024-01-09 09:25 PM PST -YolandaHaynes,2024-01-17T03:09:04Z,- YolandaHaynes assigned to issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1839803664) at 2024-01-16 07:09 PM PST -YolandaHaynes,2024-01-17T03:14:27Z,- YolandaHaynes commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1894869330) at 2024-01-16 07:14 PM PST -YolandaHaynes,2024-01-21T08:00:45Z,- YolandaHaynes commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1902546993) at 2024-01-21 12:00 AM PST -YolandaHaynes,2024-01-21T08:32:13Z,- YolandaHaynes opened pull request: [6136](https://github.com/hackforla/website/pull/6136) at 2024-01-21 12:32 AM PST -YolandaHaynes,2024-01-21T19:16:53Z,- YolandaHaynes pull request closed w/o merging: [6136](https://github.com/hackforla/website/pull/6136#event-11549745233) at 2024-01-21 11:16 AM PST -YolandaHaynes,2024-01-21T19:25:26Z,- YolandaHaynes unassigned from issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1902735327) at 2024-01-21 11:25 AM PST -YolandaHaynes,2024-01-21T19:45:20Z,- YolandaHaynes commented on issue: [5960](https://github.com/hackforla/website/issues/5960#issuecomment-1902740847) at 2024-01-21 11:45 AM PST -YolandaHaynes,2024-01-21T19:46:36Z,- YolandaHaynes commented on pull request: [6135](https://github.com/hackforla/website/pull/6135#issuecomment-1902741157) at 2024-01-21 11:46 AM PST -YolandaHaynes,2024-01-22T08:42:57Z,- YolandaHaynes submitted pull request review: [6135](https://github.com/hackforla/website/pull/6135#pullrequestreview-1835900827) at 2024-01-22 12:42 AM PST -YolandaHaynes,2024-01-22T08:48:16Z,- YolandaHaynes assigned to issue: [5983](https://github.com/hackforla/website/issues/5983) at 2024-01-22 12:48 AM PST -YolandaHaynes,2024-01-22T08:53:39Z,- YolandaHaynes commented on issue: [5983](https://github.com/hackforla/website/issues/5983#issuecomment-1903521969) at 2024-01-22 12:53 AM PST -YolandaHaynes,2024-01-29T20:27:41Z,- YolandaHaynes commented on issue: [5983](https://github.com/hackforla/website/issues/5983#issuecomment-1915506347) at 2024-01-29 12:27 PM PST -YolandaHaynes,2024-02-28T18:54:03Z,- YolandaHaynes commented on pull request: [6371](https://github.com/hackforla/website/pull/6371#issuecomment-1969630368) at 2024-02-28 10:54 AM PST -YolandaHaynes,2024-02-29T08:59:39Z,- YolandaHaynes submitted pull request review: [6371](https://github.com/hackforla/website/pull/6371#pullrequestreview-1908315670) at 2024-02-29 12:59 AM PST -YolandaHaynes,2024-04-19T01:44:35Z,- YolandaHaynes commented on pull request: [6659](https://github.com/hackforla/website/pull/6659#issuecomment-2065600470) at 2024-04-18 06:44 PM PDT -YolandaHaynes,2024-04-19T05:31:04Z,- YolandaHaynes submitted pull request review: [6659](https://github.com/hackforla/website/pull/6659#pullrequestreview-2010560616) at 2024-04-18 10:31 PM PDT -YolandaHaynes,2024-04-24T02:00:52Z,- YolandaHaynes assigned to issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2067932662) at 2024-04-23 07:00 PM PDT -YolandaHaynes,2024-04-24T02:07:19Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2073864243) at 2024-04-23 07:07 PM PDT -YolandaHaynes,2024-04-29T06:07:38Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2081951125) at 2024-04-28 11:07 PM PDT -YolandaHaynes,2024-05-03T08:59:24Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2092594669) at 2024-05-03 01:59 AM PDT -YolandaHaynes,2024-05-03T16:50:53Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2093390138) at 2024-05-03 09:50 AM PDT -YolandaHaynes,2024-05-19T16:52:48Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2119298750) at 2024-05-19 09:52 AM PDT -YolandaHaynes,2024-05-19T20:30:56Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2119351197) at 2024-05-19 01:30 PM PDT -YolandaHaynes,2024-05-26T03:04:55Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2132043028) at 2024-05-25 08:04 PM PDT -YolandaHaynes,2024-05-26T04:07:19Z,- YolandaHaynes commented on issue: [6643](https://github.com/hackforla/website/issues/6643#issuecomment-2132055137) at 2024-05-25 09:07 PM PDT -youngspark1998,4991,SKILLS ISSUE -youngspark1998,2023-07-18T02:19:07Z,- youngspark1998 opened issue: [4991](https://github.com/hackforla/website/issues/4991) at 2023-07-17 07:19 PM PDT -youngspark1998,2023-07-18T02:57:38Z,- youngspark1998 assigned to issue: [4991](https://github.com/hackforla/website/issues/4991) at 2023-07-17 07:57 PM PDT -ysjiang18,2019-11-20T03:33:55Z,- ysjiang18 reopened issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-19 07:33 PM PST -ysjiang18,2019-11-23T03:42:49Z,- ysjiang18 assigned to issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-545255117) at 2019-11-22 07:42 PM PST -ysjiang18,2019-11-23T04:00:11Z,- ysjiang18 assigned to issue: [184](https://github.com/hackforla/website/issues/184) at 2019-11-22 08:00 PM PST -ysjiang18,2019-11-24T21:25:37Z,- ysjiang18 commented on issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-24 01:25 PM PST -ysjiang18,2019-11-25T04:47:41Z,- ysjiang18 commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-557986727) at 2019-11-24 08:47 PM PST -ysjiang18,2019-11-25T23:00:41Z,- ysjiang18 assigned to issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-11-25 03:00 PM PST -ysjiang18,2019-11-25T23:16:13Z,- ysjiang18 assigned to issue: [185](https://github.com/hackforla/website/issues/185) at 2019-11-25 03:16 PM PST -ysjiang18,2019-11-26T00:11:22Z,- ysjiang18 assigned to issue: [191](https://github.com/hackforla/website/issues/191) at 2019-11-25 04:11 PM PST -ysjiang18,2019-11-26T03:23:38Z,- ysjiang18 unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:23 PM PST -ysjiang18,2019-11-26T03:23:38Z,- ysjiang18 unassigned from issue: [157](https://github.com/hackforla/website/issues/157#issuecomment-557929588) at 2019-11-25 07:23 PM PST -ysjiang18,2019-11-26T03:56:53Z,- ysjiang18 assigned to issue: [194](https://github.com/hackforla/website/issues/194) at 2019-11-25 07:56 PM PST -ysjiang18,2019-12-04T22:59:14Z,- ysjiang18 unassigned from issue: [194](https://github.com/hackforla/website/issues/194) at 2019-12-04 02:59 PM PST -ysjiang18,2019-12-04T23:09:13Z,- ysjiang18 unassigned from issue: [191](https://github.com/hackforla/website/issues/191) at 2019-12-04 03:09 PM PST -ysjiang18,2019-12-10T02:29:22Z,- ysjiang18 assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-560940316) at 2019-12-09 06:29 PM PST -ysjiang18,2019-12-31T00:00:40Z,- ysjiang18 unassigned from issue: [176](https://github.com/hackforla/website/issues/176#event-2813793821) at 2019-12-30 04:00 PM PST -ysjiang18,2019-12-31T01:06:36Z,- ysjiang18 closed issue as completed: [176](https://github.com/hackforla/website/issues/176#event-2914935674) at 2019-12-30 05:06 PM PST -ysjiang18,2020-01-06T01:29:37Z,- ysjiang18 assigned to issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-570107258) at 2020-01-05 05:29 PM PST -ysjiang18,2020-01-12T19:31:55Z,- ysjiang18 unassigned from issue: [237](https://github.com/hackforla/website/issues/237#issuecomment-573368108) at 2020-01-12 11:31 AM PST -ysjiang18,2020-03-30T04:37:52Z,- ysjiang18 unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-03-29 09:37 PM PDT -ysjiang18,2020-06-01T02:54:34Z,- ysjiang18 unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-636585768) at 2020-05-31 07:54 PM PDT -yuikomajima,2020-03-30T14:16:17Z,- yuikomajima assigned to issue: [404](https://github.com/hackforla/website/issues/404) at 2020-03-30 07:16 AM PDT -yuikomajima,2020-03-31T00:53:35Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-606331505) at 2020-03-30 05:53 PM PDT -yuikomajima,2020-04-05T17:26:11Z,- yuikomajima assigned to issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-609436265) at 2020-04-05 10:26 AM PDT -yuikomajima,2020-04-07T20:01:09Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-610591634) at 2020-04-07 01:01 PM PDT -yuikomajima,2020-04-11T19:21:24Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612495412) at 2020-04-11 12:21 PM PDT -yuikomajima,2020-04-12T20:47:52Z,- yuikomajima unassigned from issue: [128](https://github.com/hackforla/website/issues/128#issuecomment-612515587) at 2020-04-12 01:47 PM PDT -yuikomajima,2020-04-13T01:04:41Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612704311) at 2020-04-12 06:04 PM PDT -yuikomajima,2020-04-13T02:13:00Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-612717459) at 2020-04-12 07:13 PM PDT -yuikomajima,2020-04-15T01:41:08Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-613766543) at 2020-04-14 06:41 PM PDT -yuikomajima,2020-04-18T22:32:26Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-615965354) at 2020-04-18 03:32 PM PDT -yuikomajima,2020-04-19T19:56:33Z,- yuikomajima commented on issue: [403](https://github.com/hackforla/website/issues/403#issuecomment-616215437) at 2020-04-19 12:56 PM PDT -yuikomajima,2020-04-19T20:09:29Z,- yuikomajima commented on issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-616217244) at 2020-04-19 01:09 PM PDT -yuikomajima,2020-04-26T20:54:25Z,- yuikomajima unassigned from issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:54 PM PDT -yuikomajima,2020-04-26T20:55:21Z,- yuikomajima assigned to issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-617483416) at 2020-04-26 01:55 PM PDT -yuikomajima,2020-05-03T17:43:20Z,- yuikomajima unassigned from issue: [404](https://github.com/hackforla/website/issues/404#issuecomment-623150626) at 2020-05-03 10:43 AM PDT -yuikomajima,2020-05-03T19:53:26Z,- yuikomajima assigned to issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-605730441) at 2020-05-03 12:53 PM PDT -yuikomajima,2020-05-03T19:55:13Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623171178) at 2020-05-03 12:55 PM PDT -yuikomajima,2020-05-03T20:43:46Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-623178869) at 2020-05-03 01:43 PM PDT -yuikomajima,2020-05-06T03:17:06Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-624420740) at 2020-05-05 08:17 PM PDT -yuikomajima,2020-05-06T15:11:11Z,- yuikomajima commented on issue: [460](https://github.com/hackforla/website/issues/460#issuecomment-624708098) at 2020-05-06 08:11 AM PDT -yuikomajima,2020-05-10T23:36:20Z,- yuikomajima commented on issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-626407193) at 2020-05-10 04:36 PM PDT -yuikomajima,2020-05-17T18:48:12Z,- yuikomajima assigned to issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-627737796) at 2020-05-17 11:48 AM PDT -yuikomajima,2020-05-18T15:48:11Z,- yuikomajima commented on issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-630270782) at 2020-05-18 08:48 AM PDT -yuikomajima,2020-05-18T21:10:02Z,- yuikomajima closed issue by PR 619: [254](https://github.com/hackforla/website/issues/254#event-3349132273) at 2020-05-18 02:10 PM PDT -yuikomajima,2020-05-24T17:23:02Z,- yuikomajima unassigned from issue: [254](https://github.com/hackforla/website/issues/254#issuecomment-633262873) at 2020-05-24 10:23 AM PDT -yuikomajima,2020-05-31T20:36:15Z,- yuikomajima assigned to issue: [552](https://github.com/hackforla/website/issues/552) at 2020-05-31 01:36 PM PDT -yuikomajima,2020-05-31T21:54:05Z,- yuikomajima commented on issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-636535812) at 2020-05-31 02:54 PM PDT -yuikomajima,2020-06-07T17:55:02Z,- yuikomajima assigned to issue: [571](https://github.com/hackforla/website/issues/571) at 2020-06-07 10:55 AM PDT -yuikomajima,2020-06-07T18:08:34Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640257260) at 2020-06-07 11:08 AM PDT -yuikomajima,2020-06-07T18:09:27Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640257383) at 2020-06-07 11:09 AM PDT -yuikomajima,2020-06-07T18:14:27Z,- yuikomajima unassigned from issue: [511](https://github.com/hackforla/website/issues/511#issuecomment-640257991) at 2020-06-07 11:14 AM PDT -yuikomajima,2020-06-07T18:16:35Z,- yuikomajima unassigned from issue: [552](https://github.com/hackforla/website/issues/552#issuecomment-640255532) at 2020-06-07 11:16 AM PDT -yuikomajima,2020-06-07T21:00:14Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-640279158) at 2020-06-07 02:00 PM PDT -yuikomajima,2020-06-13T17:42:56Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-643655071) at 2020-06-13 10:42 AM PDT -yuikomajima,2020-06-14T17:54:21Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-643799862) at 2020-06-14 10:54 AM PDT -yuikomajima,2020-06-21T19:22:41Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-647170053) at 2020-06-21 12:22 PM PDT -yuikomajima,2020-06-27T15:16:27Z,- yuikomajima commented on issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-650573770) at 2020-06-27 08:16 AM PDT -yuikomajima,2020-06-28T17:59:42Z,- yuikomajima unassigned from issue: [571](https://github.com/hackforla/website/issues/571#issuecomment-650800803) at 2020-06-28 10:59 AM PDT -yuikomajima,2020-07-05T17:48:29Z,- yuikomajima assigned to issue: [555](https://github.com/hackforla/website/issues/555) at 2020-07-05 10:48 AM PDT -yuikomajima,2020-07-05T19:23:28Z,- yuikomajima commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-653928416) at 2020-07-05 12:23 PM PDT -yuikomajima,2020-07-05T23:42:50Z,- yuikomajima assigned to issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653954106) at 2020-07-05 04:42 PM PDT -yuikomajima,2020-07-05T23:43:16Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653954357) at 2020-07-05 04:43 PM PDT -yuikomajima,2020-07-06T02:51:45Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-653987778) at 2020-07-05 07:51 PM PDT -yuikomajima,2020-07-15T23:21:05Z,- yuikomajima unassigned from issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-653928416) at 2020-07-15 04:21 PM PDT -yuikomajima,2020-07-19T18:15:23Z,- yuikomajima assigned to issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660685905) at 2020-07-19 11:15 AM PDT -yuikomajima,2020-07-19T18:52:07Z,- yuikomajima assigned to issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-561307888) at 2020-07-19 11:52 AM PDT -yuikomajima,2020-07-19T19:16:28Z,- yuikomajima commented on issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660693919) at 2020-07-19 12:16 PM PDT -yuikomajima,2020-07-19T20:02:06Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-660700091) at 2020-07-19 01:02 PM PDT -yuikomajima,2020-07-19T20:02:32Z,- yuikomajima unassigned from issue: [156](https://github.com/hackforla/website/issues/156#issuecomment-660693919) at 2020-07-19 01:02 PM PDT -yuikomajima,2020-07-26T18:08:19Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-664021734) at 2020-07-26 11:08 AM PDT -yuikomajima,2020-08-02T17:51:25Z,- yuikomajima commented on issue: [555](https://github.com/hackforla/website/issues/555#issuecomment-667704785) at 2020-08-02 10:51 AM PDT -yuikomajima,2020-08-09T19:33:07Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-671092068) at 2020-08-09 12:33 PM PDT -yuikomajima,2020-08-15T23:15:59Z,- yuikomajima commented on issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-674456632) at 2020-08-15 04:15 PM PDT -yuikomajima,2020-08-30T18:12:57Z,- yuikomajima unassigned from issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-678804219) at 2020-08-30 11:12 AM PDT -yuikomajima,2020-09-27T19:18:07Z,- yuikomajima assigned to issue: [752](https://github.com/hackforla/website/issues/752) at 2020-09-27 12:18 PM PDT -yuikomajima,2020-09-27T19:23:57Z,- yuikomajima commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-699677124) at 2020-09-27 12:23 PM PDT -yuikomajima,2020-10-03T02:26:39Z,- yuikomajima commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-703032789) at 2020-10-02 07:26 PM PDT -yuikomajima,2020-10-04T19:38:09Z,- yuikomajima commented on issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-703305164) at 2020-10-04 12:38 PM PDT -yuikomajima,2020-10-05T18:58:54Z,- yuikomajima assigned to issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-703825673) at 2020-10-05 11:58 AM PDT -yuikomajima,2020-10-08T23:40:08Z,- yuikomajima closed issue as completed: [156](https://github.com/hackforla/website/issues/156#event-3857778129) at 2020-10-08 04:40 PM PDT -yuikomajima,2020-10-11T19:21:24Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-706755181) at 2020-10-11 12:21 PM PDT -yuikomajima,2020-10-11T19:33:31Z,- yuikomajima commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-706756699) at 2020-10-11 12:33 PM PDT -yuikomajima,2020-10-18T18:17:01Z,- yuikomajima unassigned from issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-711352398) at 2020-10-18 11:17 AM PDT -yuikomajima,2020-10-18T18:19:23Z,- yuikomajima assigned to issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-706978109) at 2020-10-18 11:19 AM PDT -yuikomajima,2020-10-22T21:56:06Z,- yuikomajima assigned to issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-711352398) at 2020-10-22 02:56 PM PDT -yuikomajima,2020-10-22T22:08:54Z,- yuikomajima commented on issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-714789668) at 2020-10-22 03:08 PM PDT -yuikomajima,2020-10-23T02:14:06Z,- yuikomajima commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-714863522) at 2020-10-22 07:14 PM PDT -yuikomajima,2020-10-23T18:50:30Z,- yuikomajima assigned to issue: [797](https://github.com/hackforla/website/issues/797) at 2020-10-23 11:50 AM PDT -yuikomajima,2020-10-25T18:21:28Z,- yuikomajima commented on issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-716189546) at 2020-10-25 11:21 AM PDT -yuikomajima,2020-10-25T18:22:02Z,- yuikomajima commented on issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716189638) at 2020-10-25 11:22 AM PDT -yuikomajima,2020-10-25T19:58:18Z,- yuikomajima unassigned from issue: [678](https://github.com/hackforla/website/issues/678#issuecomment-716202808) at 2020-10-25 12:58 PM PDT -yuikomajima,2020-10-25T20:04:24Z,- yuikomajima unassigned from issue: [752](https://github.com/hackforla/website/issues/752#issuecomment-705842895) at 2020-10-25 01:04 PM PDT -yuikomajima,2020-10-25T20:08:56Z,- yuikomajima unassigned from issue: [595](https://github.com/hackforla/website/issues/595#issuecomment-716204383) at 2020-10-25 01:08 PM PDT -yuikomajima,2020-11-01T19:33:11Z,- yuikomajima unassigned from issue: [797](https://github.com/hackforla/website/issues/797#issuecomment-720139598) at 2020-11-01 11:33 AM PST -yuikomajima,2020-11-29T19:36:38Z,- yuikomajima assigned to issue: [796](https://github.com/hackforla/website/issues/796) at 2020-11-29 11:36 AM PST -yuikomajima,2020-11-29T19:51:55Z,- yuikomajima unassigned from issue: [796](https://github.com/hackforla/website/issues/796#issuecomment-735443196) at 2020-11-29 11:51 AM PST -yuikomajima,2020-11-29T21:27:25Z,- yuikomajima assigned to issue: [815](https://github.com/hackforla/website/issues/815) at 2020-11-29 01:27 PM PST -yuikomajima,2020-12-06T18:58:51Z,- yuikomajima commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739546880) at 2020-12-06 10:58 AM PST -yuikomajima,2020-12-06T19:43:40Z,- yuikomajima commented on issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-739552870) at 2020-12-06 11:43 AM PST -yuikomajima,2020-12-06T20:35:19Z,- yuikomajima commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-739559830) at 2020-12-06 12:35 PM PST -yuikomajima,2020-12-13T19:16:49Z,- yuikomajima assigned to issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-739559830) at 2020-12-13 11:16 AM PST -yuikomajima,2020-12-15T21:14:52Z,- yuikomajima unassigned from issue: [815](https://github.com/hackforla/website/issues/815#issuecomment-741518187) at 2020-12-15 01:14 PM PST -yuikomajima,2020-12-20T22:44:54Z,- yuikomajima commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-748681709) at 2020-12-20 02:44 PM PST -yuikomajima,2020-12-21T18:08:52Z,- yuikomajima commented on issue: [833](https://github.com/hackforla/website/issues/833#issuecomment-749117184) at 2020-12-21 10:08 AM PST -yuikomajima,2021-01-03T18:09:24Z,- yuikomajima unassigned from issue: [833](https://github.com/hackforla/website/issues/833#event-4162680051) at 2021-01-03 10:09 AM PST -yuikomajima,2021-01-31T19:42:56Z,- yuikomajima unassigned from issue: [184](https://github.com/hackforla/website/issues/184#issuecomment-714792207) at 2021-01-31 11:42 AM PST -yuikomajima,2021-06-12T10:05:36Z,- yuikomajima closed issue as completed: [156](https://github.com/hackforla/website/issues/156#event-4881092261) at 2021-06-12 03:05 AM PDT -yujioshiro,4975,SKILLS ISSUE -yujioshiro,2023-07-18T01:54:10Z,- yujioshiro opened issue: [4975](https://github.com/hackforla/website/issues/4975) at 2023-07-17 06:54 PM PDT -yujioshiro,2023-07-18T02:26:07Z,- yujioshiro assigned to issue: [4975](https://github.com/hackforla/website/issues/4975) at 2023-07-17 07:26 PM PDT -yujioshiro,2023-07-22T02:23:24Z,- yujioshiro assigned to issue: [4415](https://github.com/hackforla/website/issues/4415#event-9828971075) at 2023-07-21 07:23 PM PDT -yujioshiro,2023-07-22T02:30:50Z,- yujioshiro commented on issue: [4415](https://github.com/hackforla/website/issues/4415#issuecomment-1646404426) at 2023-07-21 07:30 PM PDT -yujioshiro,2023-07-22T02:31:35Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1646405126) at 2023-07-21 07:31 PM PDT -yujioshiro,2023-07-22T03:03:20Z,- yujioshiro opened pull request: [5049](https://github.com/hackforla/website/pull/5049) at 2023-07-21 08:03 PM PDT -yujioshiro,2023-07-23T17:35:54Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1646900185) at 2023-07-23 10:35 AM PDT -yujioshiro,2023-07-26T05:15:06Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1650992730) at 2023-07-25 10:15 PM PDT -yujioshiro,2023-07-28T11:55:39Z,- yujioshiro pull request merged: [5049](https://github.com/hackforla/website/pull/5049#event-9947301220) at 2023-07-28 04:55 AM PDT -yujioshiro,2023-07-28T17:55:44Z,- yujioshiro assigned to issue: [4800](https://github.com/hackforla/website/issues/4800) at 2023-07-28 10:55 AM PDT -yujioshiro,2023-07-28T17:58:29Z,- yujioshiro commented on issue: [4800](https://github.com/hackforla/website/issues/4800#issuecomment-1656111645) at 2023-07-28 10:58 AM PDT -yujioshiro,2023-07-30T02:25:21Z,- yujioshiro opened pull request: [5114](https://github.com/hackforla/website/pull/5114) at 2023-07-29 07:25 PM PDT -yujioshiro,2023-08-02T05:42:34Z,- yujioshiro commented on pull request: [5128](https://github.com/hackforla/website/pull/5128#issuecomment-1661528081) at 2023-08-01 10:42 PM PDT -yujioshiro,2023-08-02T23:56:39Z,- yujioshiro pull request merged: [5114](https://github.com/hackforla/website/pull/5114#event-9993230473) at 2023-08-02 04:56 PM PDT -yujioshiro,2023-08-03T06:11:15Z,- yujioshiro submitted pull request review: [5128](https://github.com/hackforla/website/pull/5128#pullrequestreview-1560296694) at 2023-08-02 11:11 PM PDT -yujioshiro,2023-08-03T06:13:32Z,- yujioshiro assigned to issue: [4885](https://github.com/hackforla/website/issues/4885) at 2023-08-02 11:13 PM PDT -yujioshiro,2023-08-03T06:19:08Z,- yujioshiro commented on issue: [4885](https://github.com/hackforla/website/issues/4885#issuecomment-1663353410) at 2023-08-02 11:19 PM PDT -yujioshiro,2023-08-03T06:32:31Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1663370521) at 2023-08-02 11:32 PM PDT -yujioshiro,2023-08-05T04:49:28Z,- yujioshiro commented on issue: [4885](https://github.com/hackforla/website/issues/4885#issuecomment-1666388154) at 2023-08-04 09:49 PM PDT -yujioshiro,2023-08-05T04:53:09Z,- yujioshiro commented on pull request: [5135](https://github.com/hackforla/website/pull/5135#issuecomment-1666389318) at 2023-08-04 09:53 PM PDT -yujioshiro,2023-08-09T22:22:51Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1672242876) at 2023-08-09 03:22 PM PDT -yujioshiro,2023-08-14T21:06:33Z,- yujioshiro submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1577652166) at 2023-08-14 02:06 PM PDT -yujioshiro,2023-08-18T00:21:26Z,- yujioshiro submitted pull request review: [5135](https://github.com/hackforla/website/pull/5135#pullrequestreview-1583668242) at 2023-08-17 05:21 PM PDT -yujioshiro,2023-08-19T21:56:04Z,- yujioshiro commented on issue: [4975](https://github.com/hackforla/website/issues/4975#issuecomment-1685119125) at 2023-08-19 02:56 PM PDT -yujioshiro,2023-08-27T07:49:34Z,- yujioshiro commented on pull request: [5158](https://github.com/hackforla/website/pull/5158#issuecomment-1694597688) at 2023-08-27 12:49 AM PDT -yulia-kh,2020-03-22T17:47:44Z,- yulia-kh assigned to issue: [385](https://github.com/hackforla/website/issues/385) at 2020-03-22 10:47 AM PDT -yulia-kh,2020-03-24T17:32:19Z,- yulia-kh commented on issue: [385](https://github.com/hackforla/website/issues/385#issuecomment-603393033) at 2020-03-24 10:32 AM PDT -yulia-kh,2020-03-29T19:32:10Z,- yulia-kh opened pull request: [400](https://github.com/hackforla/website/pull/400) at 2020-03-29 12:32 PM PDT -yulia-kh,2020-03-29T19:43:32Z,- yulia-kh commented on issue: [351](https://github.com/hackforla/website/issues/351#issuecomment-605689081) at 2020-03-29 12:43 PM PDT -yulia-kh,2020-03-30T00:27:24Z,- yulia-kh pull request merged: [400](https://github.com/hackforla/website/pull/400#event-3176495310) at 2020-03-29 05:27 PM PDT -yulia-kh,2020-04-01T02:11:53Z,- yulia-kh assigned to issue: [408](https://github.com/hackforla/website/issues/408#issuecomment-606327830) at 2020-03-31 07:11 PM PDT -yulia-kh,2020-04-02T05:16:17Z,- yulia-kh assigned to issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-599173019) at 2020-04-01 10:16 PM PDT -yulia-kh,2020-04-02T05:20:01Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-607627086) at 2020-04-01 10:20 PM PDT -yulia-kh,2020-04-03T23:44:30Z,- yulia-kh opened pull request: [411](https://github.com/hackforla/website/pull/411) at 2020-04-03 04:44 PM PDT -yulia-kh,2020-04-04T22:35:55Z,- yulia-kh opened pull request: [412](https://github.com/hackforla/website/pull/412) at 2020-04-04 03:35 PM PDT -yulia-kh,2020-04-05T17:20:38Z,- yulia-kh pull request merged: [411](https://github.com/hackforla/website/pull/411#event-3202748269) at 2020-04-05 10:20 AM PDT -yulia-kh,2020-04-05T18:00:53Z,- yulia-kh closed issue by PR 412: [408](https://github.com/hackforla/website/issues/408#event-3202792975) at 2020-04-05 11:00 AM PDT -yulia-kh,2020-04-05T18:00:53Z,- yulia-kh pull request merged: [412](https://github.com/hackforla/website/pull/412#event-3202792980) at 2020-04-05 11:00 AM PDT -yulia-kh,2020-04-05T18:34:03Z,- yulia-kh assigned to issue: [246](https://github.com/hackforla/website/issues/246#issuecomment-605037600) at 2020-04-05 11:34 AM PDT -yulia-kh,2020-04-05T18:43:58Z,- yulia-kh assigned to issue: [402](https://github.com/hackforla/website/issues/402) at 2020-04-05 11:43 AM PDT -yulia-kh,2020-04-05T19:33:21Z,- yulia-kh opened pull request: [415](https://github.com/hackforla/website/pull/415) at 2020-04-05 12:33 PM PDT -yulia-kh,2020-04-05T19:36:23Z,- yulia-kh pull request merged: [415](https://github.com/hackforla/website/pull/415#event-3202889027) at 2020-04-05 12:36 PM PDT -yulia-kh,2020-04-06T19:45:00Z,- yulia-kh opened pull request: [417](https://github.com/hackforla/website/pull/417) at 2020-04-06 12:45 PM PDT -yulia-kh,2020-04-10T05:17:01Z,- yulia-kh closed issue by PR 417: [246](https://github.com/hackforla/website/issues/246#event-3220805867) at 2020-04-09 10:17 PM PDT -yulia-kh,2020-04-10T05:17:02Z,- yulia-kh pull request merged: [417](https://github.com/hackforla/website/pull/417#event-3220805873) at 2020-04-09 10:17 PM PDT -yulia-kh,2020-04-11T21:00:42Z,- yulia-kh opened pull request: [423](https://github.com/hackforla/website/pull/423) at 2020-04-11 02:00 PM PDT -yulia-kh,2020-04-12T04:07:50Z,- yulia-kh closed issue by PR 423: [402](https://github.com/hackforla/website/issues/402#event-3224750894) at 2020-04-11 09:07 PM PDT -yulia-kh,2020-04-12T04:07:50Z,- yulia-kh pull request merged: [423](https://github.com/hackforla/website/pull/423#event-3224750895) at 2020-04-11 09:07 PM PDT -yulia-kh,2020-04-12T04:57:36Z,- yulia-kh opened pull request: [424](https://github.com/hackforla/website/pull/424) at 2020-04-11 09:57 PM PDT -yulia-kh,2020-04-12T05:05:26Z,- yulia-kh commented on issue: [402](https://github.com/hackforla/website/issues/402#issuecomment-612565122) at 2020-04-11 10:05 PM PDT -yulia-kh,2020-04-12T17:00:10Z,- yulia-kh closed issue by PR 423: [402](https://github.com/hackforla/website/issues/402#event-3225268632) at 2020-04-12 10:00 AM PDT -yulia-kh,2020-04-12T17:00:10Z,- yulia-kh pull request merged: [424](https://github.com/hackforla/website/pull/424#event-3225268635) at 2020-04-12 10:00 AM PDT -yulia-kh,2020-04-12T17:56:12Z,- yulia-kh assigned to issue: [414](https://github.com/hackforla/website/issues/414) at 2020-04-12 10:56 AM PDT -yulia-kh,2020-04-15T04:06:11Z,- yulia-kh opened pull request: [440](https://github.com/hackforla/website/pull/440) at 2020-04-14 09:06 PM PDT -yulia-kh,2020-04-15T04:09:58Z,- yulia-kh pull request merged: [440](https://github.com/hackforla/website/pull/440#event-3233757525) at 2020-04-14 09:09 PM PDT -yulia-kh,2020-04-19T16:59:49Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-616182754) at 2020-04-19 09:59 AM PDT -yulia-kh,2020-04-20T20:03:49Z,- yulia-kh submitted pull request review: [455](https://github.com/hackforla/website/pull/455#pullrequestreview-396771651) at 2020-04-20 01:03 PM PDT -yulia-kh,2020-04-26T16:24:37Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-619579600) at 2020-04-26 09:24 AM PDT -yulia-kh,2020-05-03T17:19:25Z,- yulia-kh commented on issue: [228](https://github.com/hackforla/website/issues/228#issuecomment-623147350) at 2020-05-03 10:19 AM PDT -yulia-kh,2020-05-03T18:06:55Z,- yulia-kh assigned to issue: [430](https://github.com/hackforla/website/issues/430) at 2020-05-03 11:06 AM PDT -yulia-kh,2020-05-03T18:39:42Z,- yulia-kh assigned to issue: [484](https://github.com/hackforla/website/issues/484) at 2020-05-03 11:39 AM PDT -yulia-kh,2020-05-08T18:19:05Z,- yulia-kh opened pull request: [500](https://github.com/hackforla/website/pull/500) at 2020-05-08 11:19 AM PDT -yulia-kh,2020-05-08T21:11:34Z,- yulia-kh opened issue: [501](https://github.com/hackforla/website/issues/501) at 2020-05-08 02:11 PM PDT -yulia-kh,2020-05-08T21:19:25Z,- yulia-kh opened pull request: [502](https://github.com/hackforla/website/pull/502) at 2020-05-08 02:19 PM PDT -yulia-kh,2020-05-08T23:07:23Z,- yulia-kh assigned to issue: [501](https://github.com/hackforla/website/issues/501) at 2020-05-08 04:07 PM PDT -yulia-kh,2020-05-09T23:17:45Z,- yulia-kh closed issue by PR 500: [484](https://github.com/hackforla/website/issues/484#event-3319828240) at 2020-05-09 04:17 PM PDT -yulia-kh,2020-05-09T23:17:45Z,- yulia-kh pull request merged: [500](https://github.com/hackforla/website/pull/500#event-3319828243) at 2020-05-09 04:17 PM PDT -yulia-kh,2020-05-09T23:25:32Z,- yulia-kh pull request merged: [502](https://github.com/hackforla/website/pull/502#event-3319832428) at 2020-05-09 04:25 PM PDT -yulia-kh,2020-05-10T17:02:23Z,- yulia-kh commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-626358215) at 2020-05-10 10:02 AM PDT -yulia-kh,2020-05-10T17:29:40Z,- yulia-kh closed issue as completed: [228](https://github.com/hackforla/website/issues/228#event-3320527315) at 2020-05-10 10:29 AM PDT -yulia-kh,2020-05-17T06:32:02Z,- yulia-kh opened pull request: [524](https://github.com/hackforla/website/pull/524) at 2020-05-16 11:32 PM PDT -yulia-kh,2020-05-17T18:16:16Z,- yulia-kh commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629838875) at 2020-05-17 11:16 AM PDT -yulia-kh,2020-05-17T18:38:19Z,- yulia-kh assigned to issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-629839960) at 2020-05-17 11:38 AM PDT -yulia-kh,2020-05-17T20:37:36Z,- yulia-kh commented on issue: [430](https://github.com/hackforla/website/issues/430#issuecomment-629857157) at 2020-05-17 01:37 PM PDT -yulia-kh,2020-05-24T06:26:40Z,- yulia-kh commented on pull request: [524](https://github.com/hackforla/website/pull/524#issuecomment-633186310) at 2020-05-23 11:26 PM PDT -yulia-kh,2020-05-24T15:28:42Z,- yulia-kh commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-633247902) at 2020-05-24 08:28 AM PDT -yulia-kh,2020-05-24T17:03:08Z,- yulia-kh closed issue by PR 524: [430](https://github.com/hackforla/website/issues/430#event-3368121909) at 2020-05-24 10:03 AM PDT -yulia-kh,2020-05-24T17:03:08Z,- yulia-kh pull request merged: [524](https://github.com/hackforla/website/pull/524#event-3368121911) at 2020-05-24 10:03 AM PDT -yulia-kh,2020-05-24T17:11:23Z,- yulia-kh commented on issue: [472](https://github.com/hackforla/website/issues/472#issuecomment-633261727) at 2020-05-24 10:11 AM PDT -yulia-kh,2020-05-24T18:01:33Z,- yulia-kh opened pull request: [536](https://github.com/hackforla/website/pull/536) at 2020-05-24 11:01 AM PDT -yulia-kh,2020-05-24T18:22:18Z,- yulia-kh assigned to issue: [534](https://github.com/hackforla/website/issues/534) at 2020-05-24 11:22 AM PDT -yulia-kh,2020-05-24T18:25:34Z,- yulia-kh assigned to issue: [535](https://github.com/hackforla/website/issues/535) at 2020-05-24 11:25 AM PDT -yulia-kh,2020-05-24T19:37:44Z,- yulia-kh commented on pull request: [537](https://github.com/hackforla/website/pull/537#issuecomment-633284363) at 2020-05-24 12:37 PM PDT -yulia-kh,2020-05-25T05:28:28Z,- yulia-kh opened pull request: [540](https://github.com/hackforla/website/pull/540) at 2020-05-24 10:28 PM PDT -yulia-kh,2020-05-25T15:37:12Z,- yulia-kh pull request merged: [540](https://github.com/hackforla/website/pull/540#event-3370659527) at 2020-05-25 08:37 AM PDT -yulia-kh,2020-05-31T01:52:37Z,- yulia-kh opened pull request: [549](https://github.com/hackforla/website/pull/549) at 2020-05-30 06:52 PM PDT -yulia-kh,2020-05-31T01:55:51Z,- yulia-kh commented on issue: [535](https://github.com/hackforla/website/issues/535#issuecomment-636408993) at 2020-05-30 06:55 PM PDT -yulia-kh,2020-05-31T17:32:42Z,- yulia-kh pull request merged: [549](https://github.com/hackforla/website/pull/549#event-3390815157) at 2020-05-31 10:32 AM PDT -yulia-kh,2020-05-31T17:34:04Z,- yulia-kh closed issue by PR 536: [472](https://github.com/hackforla/website/issues/472#event-3390816285) at 2020-05-31 10:34 AM PDT -yulia-kh,2020-05-31T17:34:04Z,- yulia-kh pull request merged: [536](https://github.com/hackforla/website/pull/536#event-3390816291) at 2020-05-31 10:34 AM PDT -yulia-kh,2020-05-31T18:21:47Z,- yulia-kh assigned to issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-633163759) at 2020-05-31 11:21 AM PDT -yulia-kh,2020-06-07T05:55:12Z,- yulia-kh opened pull request: [565](https://github.com/hackforla/website/pull/565) at 2020-06-06 10:55 PM PDT -yulia-kh,2020-06-07T16:21:10Z,- yulia-kh pull request merged: [565](https://github.com/hackforla/website/pull/565#event-3416774228) at 2020-06-07 09:21 AM PDT -yulia-kh,2020-06-14T16:17:22Z,- yulia-kh unassigned from issue: [503](https://github.com/hackforla/website/issues/503#issuecomment-643788074) at 2020-06-14 09:17 AM PDT -zachmyu,6332,SKILLS ISSUE -zachmyu,2024-02-21T03:28:59Z,- zachmyu opened issue: [6332](https://github.com/hackforla/website/issues/6332) at 2024-02-20 07:28 PM PST -zachmyu,2024-02-21T04:12:06Z,- zachmyu assigned to issue: [6332](https://github.com/hackforla/website/issues/6332) at 2024-02-20 08:12 PM PST -Zak234,3269,SKILLS ISSUE -Zak234,2021-06-16T02:57:59Z,- Zak234 assigned to issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-06-15 07:57 PM PDT -Zak234,2021-06-16T02:58:33Z,- Zak234 unassigned from issue: [1582](https://github.com/hackforla/website/issues/1582) at 2021-06-15 07:58 PM PDT -Zak234,2021-06-16T02:58:48Z,- Zak234 assigned to issue: [1556](https://github.com/hackforla/website/issues/1556) at 2021-06-15 07:58 PM PDT -Zak234,2021-06-16T05:54:22Z,- Zak234 opened pull request: [1751](https://github.com/hackforla/website/pull/1751) at 2021-06-15 10:54 PM PDT -Zak234,2021-06-16T15:53:05Z,- Zak234 pull request merged: [1751](https://github.com/hackforla/website/pull/1751#event-4898891713) at 2021-06-16 08:53 AM PDT -Zak234,2021-06-16T16:32:10Z,- Zak234 assigned to issue: [1578](https://github.com/hackforla/website/issues/1578) at 2021-06-16 09:32 AM PDT -Zak234,2021-06-16T23:27:51Z,- Zak234 opened pull request: [1763](https://github.com/hackforla/website/pull/1763) at 2021-06-16 04:27 PM PDT -Zak234,2021-06-17T04:24:10Z,- Zak234 pull request merged: [1763](https://github.com/hackforla/website/pull/1763#event-4901683762) at 2021-06-16 09:24 PM PDT -Zak234,2021-06-17T21:21:42Z,- Zak234 assigned to issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-861933624) at 2021-06-17 02:21 PM PDT -Zak234,2021-06-17T23:36:49Z,- Zak234 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-863627516) at 2021-06-17 04:36 PM PDT -Zak234,2021-06-18T02:30:20Z,- Zak234 commented on issue: [1694](https://github.com/hackforla/website/issues/1694#issuecomment-863708492) at 2021-06-17 07:30 PM PDT -Zak234,2021-06-18T02:42:04Z,- Zak234 opened pull request: [1773](https://github.com/hackforla/website/pull/1773) at 2021-06-17 07:42 PM PDT -Zak234,2021-06-19T04:29:54Z,- Zak234 assigned to issue: [1743](https://github.com/hackforla/website/issues/1743) at 2021-06-18 09:29 PM PDT -Zak234,2021-06-22T05:31:58Z,- Zak234 pull request merged: [1773](https://github.com/hackforla/website/pull/1773#event-4920428135) at 2021-06-21 10:31 PM PDT -Zak234,2021-06-22T08:34:14Z,- Zak234 opened pull request: [1814](https://github.com/hackforla/website/pull/1814) at 2021-06-22 01:34 AM PDT -Zak234,2021-06-22T16:00:45Z,- Zak234 commented on pull request: [1773](https://github.com/hackforla/website/pull/1773#issuecomment-866116120) at 2021-06-22 09:00 AM PDT -Zak234,2021-06-22T16:32:24Z,- Zak234 submitted pull request review: [1803](https://github.com/hackforla/website/pull/1803#pullrequestreview-689748416) at 2021-06-22 09:32 AM PDT -Zak234,2021-06-22T16:33:13Z,- Zak234 submitted pull request review: [1803](https://github.com/hackforla/website/pull/1803#pullrequestreview-689749266) at 2021-06-22 09:33 AM PDT -Zak234,2021-06-23T00:43:52Z,- Zak234 submitted pull request review: [1804](https://github.com/hackforla/website/pull/1804#pullrequestreview-690108889) at 2021-06-22 05:43 PM PDT -Zak234,2021-06-23T02:04:52Z,- Zak234 submitted pull request review: [1801](https://github.com/hackforla/website/pull/1801#pullrequestreview-690149237) at 2021-06-22 07:04 PM PDT -Zak234,2021-06-23T02:21:55Z,- Zak234 submitted pull request review: [1799](https://github.com/hackforla/website/pull/1799#pullrequestreview-690155637) at 2021-06-22 07:21 PM PDT -Zak234,2021-06-23T02:31:18Z,- Zak234 submitted pull request review: [1813](https://github.com/hackforla/website/pull/1813#pullrequestreview-690159054) at 2021-06-22 07:31 PM PDT -Zak234,2021-06-23T16:58:38Z,- Zak234 pull request merged: [1773](https://github.com/hackforla/website/pull/1773#event-4930122081) at 2021-06-23 09:58 AM PDT -Zak234,2021-06-24T01:48:11Z,- Zak234 submitted pull request review: [1821](https://github.com/hackforla/website/pull/1821#pullrequestreview-691270214) at 2021-06-23 06:48 PM PDT -Zak234,2021-06-24T07:00:20Z,- Zak234 submitted pull request review: [1822](https://github.com/hackforla/website/pull/1822#pullrequestreview-691401063) at 2021-06-24 12:00 AM PDT -Zak234,2021-06-27T13:38:34Z,- Zak234 assigned to issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-27 06:38 AM PDT -Zak234,2021-06-27T13:52:13Z,- Zak234 submitted pull request review: [1832](https://github.com/hackforla/website/pull/1832#pullrequestreview-693419640) at 2021-06-27 06:52 AM PDT -Zak234,2021-06-28T07:15:36Z,- Zak234 submitted pull request review: [1831](https://github.com/hackforla/website/pull/1831#pullrequestreview-693624435) at 2021-06-28 12:15 AM PDT -Zak234,2021-06-28T23:19:34Z,- Zak234 unassigned from issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-28 04:19 PM PDT -Zak234,2021-06-29T05:17:29Z,- Zak234 submitted pull request review: [1854](https://github.com/hackforla/website/pull/1854#pullrequestreview-694598374) at 2021-06-28 10:17 PM PDT -Zak234,2021-06-29T05:22:34Z,- Zak234 assigned to issue: [1825](https://github.com/hackforla/website/issues/1825) at 2021-06-28 10:22 PM PDT -Zak234,2021-06-30T02:45:40Z,- Zak234 submitted pull request review: [1862](https://github.com/hackforla/website/pull/1862#pullrequestreview-695649877) at 2021-06-29 07:45 PM PDT -Zak234,2021-06-30T03:21:23Z,- Zak234 opened pull request: [1863](https://github.com/hackforla/website/pull/1863) at 2021-06-29 08:21 PM PDT -Zak234,2021-06-30T03:38:23Z,- Zak234 pull request merged: [1814](https://github.com/hackforla/website/pull/1814#event-4957070521) at 2021-06-29 08:38 PM PDT -Zak234,2021-06-30T13:45:29Z,- Zak234 submitted pull request review: [1859](https://github.com/hackforla/website/pull/1859#pullrequestreview-696182657) at 2021-06-30 06:45 AM PDT -Zak234,2021-06-30T14:16:29Z,- Zak234 submitted pull request review: [1861](https://github.com/hackforla/website/pull/1861#pullrequestreview-696222832) at 2021-06-30 07:16 AM PDT -Zak234,2021-06-30T14:19:45Z,- Zak234 commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-871447679) at 2021-06-30 07:19 AM PDT -Zak234,2021-07-02T04:24:54Z,- Zak234 submitted pull request review: [1870](https://github.com/hackforla/website/pull/1870#pullrequestreview-697812451) at 2021-07-01 09:24 PM PDT -Zak234,2021-07-04T18:43:06Z,- Zak234 commented on pull request: [1863](https://github.com/hackforla/website/pull/1863#issuecomment-873640042) at 2021-07-04 11:43 AM PDT -Zak234,2021-07-06T06:36:05Z,- Zak234 pull request closed w/o merging: [1863](https://github.com/hackforla/website/pull/1863#event-4981209676) at 2021-07-05 11:36 PM PDT -Zak234,2021-07-06T07:03:10Z,- Zak234 opened pull request: [1894](https://github.com/hackforla/website/pull/1894) at 2021-07-06 12:03 AM PDT -Zak234,2021-07-07T16:11:02Z,- Zak234 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-875735217) at 2021-07-07 09:11 AM PDT -Zak234,2021-07-08T08:25:32Z,- Zak234 commented on pull request: [1894](https://github.com/hackforla/website/pull/1894#issuecomment-876239895) at 2021-07-08 01:25 AM PDT -Zak234,2021-07-08T08:39:45Z,- Zak234 submitted pull request review: [1903](https://github.com/hackforla/website/pull/1903#pullrequestreview-701793392) at 2021-07-08 01:39 AM PDT -Zak234,2021-07-09T16:10:51Z,- Zak234 submitted pull request review: [1882](https://github.com/hackforla/website/pull/1882#pullrequestreview-703202202) at 2021-07-09 09:10 AM PDT -Zak234,2021-07-09T23:25:30Z,- Zak234 pull request merged: [1894](https://github.com/hackforla/website/pull/1894#event-5002563017) at 2021-07-09 04:25 PM PDT -Zak234,2021-07-10T11:21:43Z,- Zak234 submitted pull request review: [1913](https://github.com/hackforla/website/pull/1913#pullrequestreview-703493428) at 2021-07-10 04:21 AM PDT -Zak234,2021-07-10T12:39:46Z,- Zak234 assigned to issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-870030263) at 2021-07-10 05:39 AM PDT -Zak234,2021-07-11T07:00:52Z,- Zak234 submitted pull request review: [1915](https://github.com/hackforla/website/pull/1915#pullrequestreview-703554061) at 2021-07-11 12:00 AM PDT -Zak234,2021-07-14T16:45:55Z,- Zak234 submitted pull request review: [1918](https://github.com/hackforla/website/pull/1918#pullrequestreview-706500893) at 2021-07-14 09:45 AM PDT -Zak234,2021-07-16T09:43:09Z,- Zak234 opened pull request: [1955](https://github.com/hackforla/website/pull/1955) at 2021-07-16 02:43 AM PDT -Zak234,2021-07-16T09:43:22Z,- Zak234 pull request closed w/o merging: [1955](https://github.com/hackforla/website/pull/1955#event-5029917506) at 2021-07-16 02:43 AM PDT -Zak234,2021-07-16T17:07:26Z,- Zak234 submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-708592625) at 2021-07-16 10:07 AM PDT -Zak234,2021-07-19T08:29:00Z,- Zak234 opened issue: [1970](https://github.com/hackforla/website/issues/1970) at 2021-07-19 01:29 AM PDT -Zak234,2021-07-21T00:46:44Z,- Zak234 commented on pull request: [1928](https://github.com/hackforla/website/pull/1928#issuecomment-883800524) at 2021-07-20 05:46 PM PDT -Zak234,2021-07-22T00:35:57Z,- Zak234 submitted pull request review: [1967](https://github.com/hackforla/website/pull/1967#pullrequestreview-712291305) at 2021-07-21 05:35 PM PDT -Zak234,2021-07-25T18:14:16Z,- Zak234 commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-886238830) at 2021-07-25 11:14 AM PDT -Zak234,2021-08-02T01:04:53Z,- Zak234 submitted pull request review: [2019](https://github.com/hackforla/website/pull/2019#pullrequestreview-719722034) at 2021-08-01 06:04 PM PDT -Zak234,2021-08-04T03:36:17Z,- Zak234 commented on issue: [1445](https://github.com/hackforla/website/issues/1445#issuecomment-892335274) at 2021-08-03 08:36 PM PDT -Zak234,2021-08-04T03:36:20Z,- Zak234 closed issue as completed: [1445](https://github.com/hackforla/website/issues/1445#event-5108459279) at 2021-08-03 08:36 PM PDT -Zak234,2021-08-05T01:21:13Z,- Zak234 assigned to issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-886231967) at 2021-08-04 06:21 PM PDT -Zak234,2021-08-08T17:04:41Z,- Zak234 submitted pull request review: [1928](https://github.com/hackforla/website/pull/1928#pullrequestreview-724921329) at 2021-08-08 10:04 AM PDT -Zak234,2021-08-18T02:15:25Z,- Zak234 submitted pull request review: [2099](https://github.com/hackforla/website/pull/2099#pullrequestreview-732374187) at 2021-08-17 07:15 PM PDT -Zak234,2021-08-24T12:19:48Z,- Zak234 submitted pull request review: [2149](https://github.com/hackforla/website/pull/2149#pullrequestreview-737155167) at 2021-08-24 05:19 AM PDT -Zak234,2021-08-29T00:19:08Z,- Zak234 submitted pull request review: [2186](https://github.com/hackforla/website/pull/2186#pullrequestreview-741064881) at 2021-08-28 05:19 PM PDT -Zak234,2021-09-12T17:11:55Z,- Zak234 commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-917674857) at 2021-09-12 10:11 AM PDT -Zak234,2021-10-04T18:29:24Z,- Zak234 commented on issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-933744149) at 2021-10-04 11:29 AM PDT -Zak234,2021-10-04T18:29:31Z,- Zak234 unassigned from issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-933744149) at 2021-10-04 11:29 AM PDT -Zak234,2022-06-20T21:41:41Z,- Zak234 opened issue: [3269](https://github.com/hackforla/website/issues/3269) at 2022-06-20 02:41 PM PDT -Zak234,2022-06-20T21:42:40Z,- Zak234 assigned to issue: [3269](https://github.com/hackforla/website/issues/3269#issuecomment-1160868535) at 2022-06-20 02:42 PM PDT -Zak234,2022-06-21T17:20:15Z,- Zak234 assigned to issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1003694297) at 2022-06-21 10:20 AM PDT -Zak234,2022-06-21T18:48:40Z,- Zak234 opened pull request: [3276](https://github.com/hackforla/website/pull/3276) at 2022-06-21 11:48 AM PDT -Zak234,2022-06-21T18:51:38Z,- Zak234 pull request closed w/o merging: [3276](https://github.com/hackforla/website/pull/3276#event-6850121798) at 2022-06-21 11:51 AM PDT -Zak234,2022-06-22T15:46:57Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1163286213) at 2022-06-22 08:46 AM PDT -Zak234,2022-06-22T18:14:38Z,- Zak234 commented on pull request: [3259](https://github.com/hackforla/website/pull/3259#issuecomment-1163455923) at 2022-06-22 11:14 AM PDT -Zak234,2022-06-22T18:19:10Z,- Zak234 submitted pull request review: [3262](https://github.com/hackforla/website/pull/3262#pullrequestreview-1015685659) at 2022-06-22 11:19 AM PDT -Zak234,2022-06-22T18:22:26Z,- Zak234 assigned to issue: [3111](https://github.com/hackforla/website/issues/3111#issuecomment-1120102481) at 2022-06-22 11:22 AM PDT -Zak234,2022-06-23T08:15:59Z,- Zak234 closed issue as completed: [2650](https://github.com/hackforla/website/issues/2650#event-6864082314) at 2022-06-23 01:15 AM PDT -Zak234,2022-06-24T15:53:45Z,- Zak234 opened pull request: [3299](https://github.com/hackforla/website/pull/3299) at 2022-06-24 08:53 AM PDT -Zak234,2022-06-25T21:15:07Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1166362607) at 2022-06-25 02:15 PM PDT -Zak234,2022-06-25T21:28:07Z,- Zak234 submitted pull request review: [3301](https://github.com/hackforla/website/pull/3301#pullrequestreview-1019353604) at 2022-06-25 02:28 PM PDT -Zak234,2022-06-26T17:27:31Z,- Zak234 submitted pull request review: [3304](https://github.com/hackforla/website/pull/3304#pullrequestreview-1019460093) at 2022-06-26 10:27 AM PDT -Zak234,2022-06-26T17:28:21Z,- Zak234 commented on pull request: [3304](https://github.com/hackforla/website/pull/3304#issuecomment-1166595168) at 2022-06-26 10:28 AM PDT -Zak234,2022-06-26T18:50:01Z,- Zak234 opened issue: [3309](https://github.com/hackforla/website/issues/3309) at 2022-06-26 11:50 AM PDT -Zak234,2022-06-27T13:50:56Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1167379310) at 2022-06-27 06:50 AM PDT -Zak234,2022-06-27T13:56:28Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1167385702) at 2022-06-27 06:56 AM PDT -Zak234,2022-07-03T20:15:44Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1173164666) at 2022-07-03 01:15 PM PDT -Zak234,2022-07-05T18:24:07Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1175361087) at 2022-07-05 11:24 AM PDT -Zak234,2022-07-06T02:07:04Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1175695995) at 2022-07-05 07:07 PM PDT -Zak234,2022-07-06T17:03:57Z,- Zak234 opened issue: [3334](https://github.com/hackforla/website/issues/3334) at 2022-07-06 10:03 AM PDT -Zak234,2022-07-06T18:44:15Z,- Zak234 opened issue: [3335](https://github.com/hackforla/website/issues/3335) at 2022-07-06 11:44 AM PDT -Zak234,2022-07-06T18:44:57Z,- Zak234 closed issue as completed: [3335](https://github.com/hackforla/website/issues/3335#event-6945314951) at 2022-07-06 11:44 AM PDT -Zak234,2022-07-08T01:31:06Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178436845) at 2022-07-07 06:31 PM PDT -Zak234,2022-07-08T03:57:23Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1178518617) at 2022-07-07 08:57 PM PDT -Zak234,2022-07-08T17:20:02Z,- Zak234 commented on pull request: [3299](https://github.com/hackforla/website/pull/3299#issuecomment-1179209866) at 2022-07-08 10:20 AM PDT -Zak234,2022-07-09T19:19:07Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1179593711) at 2022-07-09 12:19 PM PDT -Zak234,2022-07-09T20:05:20Z,- Zak234 opened issue: [3341](https://github.com/hackforla/website/issues/3341) at 2022-07-09 01:05 PM PDT -Zak234,2022-07-10T18:12:10Z,- Zak234 pull request merged: [3299](https://github.com/hackforla/website/pull/3299#event-6965343516) at 2022-07-10 11:12 AM PDT -Zak234,2022-07-10T23:36:49Z,- Zak234 commented on issue: [2650](https://github.com/hackforla/website/issues/2650#issuecomment-1179824426) at 2022-07-10 04:36 PM PDT -Zak234,2022-07-11T05:40:38Z,- Zak234 opened issue: [3354](https://github.com/hackforla/website/issues/3354) at 2022-07-10 10:40 PM PDT -Zak234,2022-07-11T05:44:02Z,- Zak234 commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1179990058) at 2022-07-10 10:44 PM PDT -Zak234,2022-07-11T06:05:22Z,- Zak234 assigned to issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1063891031) at 2022-07-10 11:05 PM PDT -Zak234,2022-07-11T06:56:13Z,- Zak234 opened issue: [3355](https://github.com/hackforla/website/issues/3355) at 2022-07-10 11:56 PM PDT -Zak234,2022-07-12T01:00:13Z,- Zak234 opened issue: [3360](https://github.com/hackforla/website/issues/3360) at 2022-07-11 06:00 PM PDT -Zak234,2022-07-12T01:05:10Z,- Zak234 commented on issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1181200270) at 2022-07-11 06:05 PM PDT -Zak234,2022-07-12T04:10:29Z,- Zak234 commented on pull request: [3348](https://github.com/hackforla/website/pull/3348#issuecomment-1181291808) at 2022-07-11 09:10 PM PDT -Zak234,2022-07-13T07:24:14Z,- Zak234 commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1182861196) at 2022-07-13 12:24 AM PDT -Zak234,2022-07-14T04:00:33Z,- Zak234 commented on pull request: [3359](https://github.com/hackforla/website/pull/3359#issuecomment-1183959313) at 2022-07-13 09:00 PM PDT -Zak234,2022-07-14T18:14:15Z,- Zak234 submitted pull request review: [3348](https://github.com/hackforla/website/pull/3348#pullrequestreview-1039298662) at 2022-07-14 11:14 AM PDT -Zak234,2022-07-15T07:52:21Z,- Zak234 submitted pull request review: [3359](https://github.com/hackforla/website/pull/3359#pullrequestreview-1039931000) at 2022-07-15 12:52 AM PDT -Zak234,2022-07-16T06:10:10Z,- Zak234 commented on issue: [2956](https://github.com/hackforla/website/issues/2956#issuecomment-1186098381) at 2022-07-15 11:10 PM PDT -Zak234,2022-07-16T06:12:14Z,- Zak234 closed issue as completed: [2956](https://github.com/hackforla/website/issues/2956#event-7005753590) at 2022-07-15 11:12 PM PDT -Zak234,2022-07-16T06:31:06Z,- Zak234 assigned to issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-922427695) at 2022-07-15 11:31 PM PDT -Zak234,2022-07-16T06:31:40Z,- Zak234 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-1186100883) at 2022-07-15 11:31 PM PDT -Zak234,2022-07-16T07:26:13Z,- Zak234 submitted pull request review: [3373](https://github.com/hackforla/website/pull/3373#pullrequestreview-1040964768) at 2022-07-16 12:26 AM PDT -Zak234,2022-07-17T05:16:04Z,- Zak234 submitted pull request review: [3375](https://github.com/hackforla/website/pull/3375#pullrequestreview-1041070945) at 2022-07-16 10:16 PM PDT -Zak234,2022-07-17T17:01:08Z,- Zak234 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-1186572569) at 2022-07-17 10:01 AM PDT -Zak234,2022-07-19T17:07:53Z,- Zak234 commented on issue: [2104](https://github.com/hackforla/website/issues/2104#issuecomment-1189343481) at 2022-07-19 10:07 AM PDT -Zak234,2022-07-20T03:20:18Z,- Zak234 opened issue: [3403](https://github.com/hackforla/website/issues/3403) at 2022-07-19 08:20 PM PDT -Zak234,2022-07-20T21:31:29Z,- Zak234 submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1045700232) at 2022-07-20 02:31 PM PDT -Zak234,2022-07-20T21:48:10Z,- Zak234 submitted pull request review: [3407](https://github.com/hackforla/website/pull/3407#pullrequestreview-1045713979) at 2022-07-20 02:48 PM PDT -Zak234,2022-07-22T22:03:25Z,- Zak234 opened pull request: [3422](https://github.com/hackforla/website/pull/3422) at 2022-07-22 03:03 PM PDT -Zak234,2022-07-23T05:29:20Z,- Zak234 submitted pull request review: [3421](https://github.com/hackforla/website/pull/3421#pullrequestreview-1048504201) at 2022-07-22 10:29 PM PDT -Zak234,2022-07-24T17:14:14Z,- Zak234 commented on pull request: [3419](https://github.com/hackforla/website/pull/3419#issuecomment-1193359385) at 2022-07-24 10:14 AM PDT -Zak234,2022-07-24T17:15:22Z,- Zak234 commented on pull request: [3384](https://github.com/hackforla/website/pull/3384#issuecomment-1193359601) at 2022-07-24 10:15 AM PDT -Zak234,2022-07-24T21:56:33Z,- Zak234 submitted pull request review: [3419](https://github.com/hackforla/website/pull/3419#pullrequestreview-1048690482) at 2022-07-24 02:56 PM PDT -Zak234,2022-07-24T22:05:54Z,- Zak234 submitted pull request review: [3385](https://github.com/hackforla/website/pull/3385#pullrequestreview-1048691321) at 2022-07-24 03:05 PM PDT -Zak234,2022-07-25T03:02:25Z,- Zak234 submitted pull request review: [3425](https://github.com/hackforla/website/pull/3425#pullrequestreview-1048764451) at 2022-07-24 08:02 PM PDT -Zak234,2022-07-25T21:02:40Z,- Zak234 commented on pull request: [3422](https://github.com/hackforla/website/pull/3422#issuecomment-1194626138) at 2022-07-25 02:02 PM PDT -Zak234,2022-07-25T21:24:53Z,- Zak234 closed issue as completed: [3269](https://github.com/hackforla/website/issues/3269#event-7059828842) at 2022-07-25 02:24 PM PDT -Zak234,2022-07-25T21:39:15Z,- Zak234 commented on issue: [3147](https://github.com/hackforla/website/issues/3147#issuecomment-1194664720) at 2022-07-25 02:39 PM PDT -Zak234,2022-07-25T21:39:18Z,- Zak234 closed issue as completed: [3147](https://github.com/hackforla/website/issues/3147#event-7059910302) at 2022-07-25 02:39 PM PDT -Zak234,2022-07-25T23:37:07Z,- Zak234 pull request merged: [3422](https://github.com/hackforla/website/pull/3422#event-7060494199) at 2022-07-25 04:37 PM PDT -Zak234,2022-07-26T08:07:07Z,- Zak234 commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195148170) at 2022-07-26 01:07 AM PDT -Zak234,2022-07-26T08:10:38Z,- Zak234 assigned to issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-933744149) at 2022-07-26 01:10 AM PDT -Zak234,2022-07-26T17:40:28Z,- Zak234 commented on pull request: [3428](https://github.com/hackforla/website/pull/3428#issuecomment-1195785502) at 2022-07-26 10:40 AM PDT -Zak234,2022-07-26T18:18:41Z,- Zak234 submitted pull request review: [3428](https://github.com/hackforla/website/pull/3428#pullrequestreview-1051431342) at 2022-07-26 11:18 AM PDT -Zak234,2022-07-26T18:27:49Z,- Zak234 unassigned from issue: [1940](https://github.com/hackforla/website/issues/1940#issuecomment-1195152097) at 2022-07-26 11:27 AM PDT -Zak234,2022-07-27T16:46:26Z,- Zak234 opened issue: [3433](https://github.com/hackforla/website/issues/3433) at 2022-07-27 09:46 AM PDT -Zak234,2022-07-27T17:59:51Z,- Zak234 assigned to issue: [3433](https://github.com/hackforla/website/issues/3433) at 2022-07-27 10:59 AM PDT -Zak234,2022-07-27T19:57:50Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1197302308) at 2022-07-27 12:57 PM PDT -Zak234,2022-07-27T20:03:53Z,- Zak234 submitted pull request review: [3430](https://github.com/hackforla/website/pull/3430#pullrequestreview-1053161705) at 2022-07-27 01:03 PM PDT -Zak234,2022-07-27T20:04:22Z,- Zak234 submitted pull request review: [3430](https://github.com/hackforla/website/pull/3430#pullrequestreview-1053162186) at 2022-07-27 01:04 PM PDT -Zak234,2022-07-27T20:05:47Z,- Zak234 closed issue by PR 3430: [2809](https://github.com/hackforla/website/issues/2809#event-7076221186) at 2022-07-27 01:05 PM PDT -Zak234,2022-07-28T01:26:26Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1197546590) at 2022-07-27 06:26 PM PDT -Zak234,2022-07-28T17:49:22Z,- Zak234 opened issue: [3437](https://github.com/hackforla/website/issues/3437) at 2022-07-28 10:49 AM PDT -Zak234,2022-07-29T02:45:24Z,- Zak234 commented on pull request: [3442](https://github.com/hackforla/website/pull/3442#issuecomment-1198823969) at 2022-07-28 07:45 PM PDT -Zak234,2022-07-29T02:45:54Z,- Zak234 commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1198824173) at 2022-07-28 07:45 PM PDT -Zak234,2022-07-29T11:33:02Z,- Zak234 submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1055429909) at 2022-07-29 04:33 AM PDT -Zak234,2022-07-29T11:44:03Z,- Zak234 commented on pull request: [3441](https://github.com/hackforla/website/pull/3441#issuecomment-1199182426) at 2022-07-29 04:44 AM PDT -Zak234,2022-07-31T05:09:18Z,- Zak234 submitted pull request review: [3432](https://github.com/hackforla/website/pull/3432#pullrequestreview-1056516011) at 2022-07-30 10:09 PM PDT -Zak234,2022-07-31T17:17:32Z,- Zak234 submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1056596252) at 2022-07-31 10:17 AM PDT -Zak234,2022-08-01T05:46:04Z,- Zak234 submitted pull request review: [3426](https://github.com/hackforla/website/pull/3426#pullrequestreview-1056766319) at 2022-07-31 10:46 PM PDT -Zak234,2022-08-01T06:01:04Z,- Zak234 submitted pull request review: [3441](https://github.com/hackforla/website/pull/3441#pullrequestreview-1056775883) at 2022-07-31 11:01 PM PDT -Zak234,2022-08-01T06:02:00Z,- Zak234 commented on pull request: [3445](https://github.com/hackforla/website/pull/3445#issuecomment-1200746547) at 2022-07-31 11:02 PM PDT -Zak234,2022-08-01T20:28:09Z,- Zak234 submitted pull request review: [3445](https://github.com/hackforla/website/pull/3445#pullrequestreview-1057818156) at 2022-08-01 01:28 PM PDT -Zak234,2022-08-01T20:28:34Z,- Zak234 closed issue by PR 3445: [2818](https://github.com/hackforla/website/issues/2818#event-7104649860) at 2022-08-01 01:28 PM PDT -Zak234,2022-08-01T21:04:47Z,- Zak234 submitted pull request review: [3431](https://github.com/hackforla/website/pull/3431#pullrequestreview-1057861068) at 2022-08-01 02:04 PM PDT -Zak234,2022-08-01T23:22:36Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1201833458) at 2022-08-01 04:22 PM PDT -Zak234,2022-08-02T00:12:25Z,- Zak234 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1201862193) at 2022-08-01 05:12 PM PDT -Zak234,2022-08-02T00:38:36Z,- Zak234 submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1057990524) at 2022-08-01 05:38 PM PDT -Zak234,2022-08-03T02:43:50Z,- Zak234 submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1059632582) at 2022-08-02 07:43 PM PDT -Zak234,2022-08-03T04:00:19Z,- Zak234 submitted pull request review: [3446](https://github.com/hackforla/website/pull/3446#pullrequestreview-1059668110) at 2022-08-02 09:00 PM PDT -Zak234,2022-08-03T04:08:19Z,- Zak234 commented on pull request: [3446](https://github.com/hackforla/website/pull/3446#issuecomment-1203459468) at 2022-08-02 09:08 PM PDT -Zak234,2022-08-03T18:54:36Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1204353365) at 2022-08-03 11:54 AM PDT -Zak234,2022-08-04T23:03:02Z,- Zak234 submitted pull request review: [3450](https://github.com/hackforla/website/pull/3450#pullrequestreview-1062681590) at 2022-08-04 04:03 PM PDT -Zak234,2022-08-04T23:19:55Z,- Zak234 commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1205869507) at 2022-08-04 04:19 PM PDT -Zak234,2022-08-05T02:24:04Z,- Zak234 submitted pull request review: [3450](https://github.com/hackforla/website/pull/3450#pullrequestreview-1062772669) at 2022-08-04 07:24 PM PDT -Zak234,2022-08-05T08:06:52Z,- Zak234 commented on pull request: [3431](https://github.com/hackforla/website/pull/3431#issuecomment-1206166610) at 2022-08-05 01:06 AM PDT -Zak234,2022-08-05T08:17:10Z,- Zak234 commented on pull request: [3451](https://github.com/hackforla/website/pull/3451#issuecomment-1206175916) at 2022-08-05 01:17 AM PDT -Zak234,2022-08-05T08:54:16Z,- Zak234 commented on pull request: [3426](https://github.com/hackforla/website/pull/3426#issuecomment-1206210470) at 2022-08-05 01:54 AM PDT -Zak234,2022-08-05T20:11:11Z,- Zak234 submitted pull request review: [3451](https://github.com/hackforla/website/pull/3451#pullrequestreview-1063894188) at 2022-08-05 01:11 PM PDT -Zak234,2022-08-05T20:48:20Z,- Zak234 commented on pull request: [3450](https://github.com/hackforla/website/pull/3450#issuecomment-1206852928) at 2022-08-05 01:48 PM PDT -Zak234,2022-08-05T20:56:41Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1206857686) at 2022-08-05 01:56 PM PDT -Zak234,2022-08-07T17:27:46Z,- Zak234 submitted pull request review: [3451](https://github.com/hackforla/website/pull/3451#pullrequestreview-1064450185) at 2022-08-07 10:27 AM PDT -Zak234,2022-08-12T02:32:03Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1212672092) at 2022-08-11 07:32 PM PDT -Zak234,2022-08-13T05:41:23Z,- Zak234 submitted pull request review: [3463](https://github.com/hackforla/website/pull/3463#pullrequestreview-1071906294) at 2022-08-12 10:41 PM PDT -Zak234,2022-08-13T05:57:30Z,- Zak234 submitted pull request review: [3466](https://github.com/hackforla/website/pull/3466#pullrequestreview-1071907442) at 2022-08-12 10:57 PM PDT -Zak234,2022-08-13T09:41:24Z,- Zak234 submitted pull request review: [3456](https://github.com/hackforla/website/pull/3456#pullrequestreview-1071936278) at 2022-08-13 02:41 AM PDT -Zak234,2022-08-13T20:18:32Z,- Zak234 submitted pull request review: [3467](https://github.com/hackforla/website/pull/3467#pullrequestreview-1071994456) at 2022-08-13 01:18 PM PDT -Zak234,2022-08-13T20:18:44Z,- Zak234 closed issue by PR 3467: [3404](https://github.com/hackforla/website/issues/3404#event-7183763920) at 2022-08-13 01:18 PM PDT -Zak234,2022-08-13T20:19:34Z,- Zak234 commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1214216953) at 2022-08-13 01:19 PM PDT -Zak234,2022-08-14T20:58:50Z,- Zak234 submitted pull request review: [3452](https://github.com/hackforla/website/pull/3452#pullrequestreview-1072126337) at 2022-08-14 01:58 PM PDT -Zak234,2022-08-17T16:54:43Z,- Zak234 closed issue by PR 3470: [3355](https://github.com/hackforla/website/issues/3355#event-7207732556) at 2022-08-17 09:54 AM PDT -Zak234,2022-08-17T16:56:22Z,- Zak234 commented on pull request: [3471](https://github.com/hackforla/website/pull/3471#issuecomment-1218272785) at 2022-08-17 09:56 AM PDT -Zak234,2022-08-17T17:03:45Z,- Zak234 submitted pull request review: [3471](https://github.com/hackforla/website/pull/3471#pullrequestreview-1076119704) at 2022-08-17 10:03 AM PDT -Zak234,2022-08-17T17:04:54Z,- Zak234 commented on pull request: [3452](https://github.com/hackforla/website/pull/3452#issuecomment-1218280606) at 2022-08-17 10:04 AM PDT -Zak234,2022-08-21T18:27:38Z,- Zak234 submitted pull request review: [3471](https://github.com/hackforla/website/pull/3471#pullrequestreview-1079704219) at 2022-08-21 11:27 AM PDT -Zak234,2022-08-21T18:30:18Z,- Zak234 submitted pull request review: [3471](https://github.com/hackforla/website/pull/3471#pullrequestreview-1079704472) at 2022-08-21 11:30 AM PDT -Zak234,2022-08-21T18:31:22Z,- Zak234 closed issue by PR 3471: [2198](https://github.com/hackforla/website/issues/2198#event-7228040529) at 2022-08-21 11:31 AM PDT -Zak234,2022-08-22T19:14:19Z,- Zak234 submitted pull request review: [3480](https://github.com/hackforla/website/pull/3480#pullrequestreview-1081019660) at 2022-08-22 12:14 PM PDT -Zak234,2022-08-23T11:06:17Z,- Zak234 submitted pull request review: [3480](https://github.com/hackforla/website/pull/3480#pullrequestreview-1081923141) at 2022-08-23 04:06 AM PDT -Zak234,2022-08-24T18:05:50Z,- Zak234 submitted pull request review: [3482](https://github.com/hackforla/website/pull/3482#pullrequestreview-1084292734) at 2022-08-24 11:05 AM PDT -Zak234,2022-08-24T18:06:14Z,- Zak234 closed issue by PR 3482: [2820](https://github.com/hackforla/website/issues/2820#event-7253199884) at 2022-08-24 11:06 AM PDT -Zak234,2022-08-28T13:25:51Z,- Zak234 commented on pull request: [3495](https://github.com/hackforla/website/pull/3495#issuecomment-1229456861) at 2022-08-28 06:25 AM PDT -Zak234,2022-08-28T17:00:12Z,- Zak234 submitted pull request review: [3495](https://github.com/hackforla/website/pull/3495#pullrequestreview-1087888859) at 2022-08-28 10:00 AM PDT -Zak234,2022-08-28T17:00:20Z,- Zak234 closed issue by PR 3495: [3494](https://github.com/hackforla/website/issues/3494#event-7273745635) at 2022-08-28 10:00 AM PDT -Zak234,2022-08-28T17:10:33Z,- Zak234 commented on issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1229510217) at 2022-08-28 10:10 AM PDT -Zak234,2022-11-16T17:39:41Z,- Zak234 unassigned from issue: [3433](https://github.com/hackforla/website/issues/3433#issuecomment-1251582503) at 2022-11-16 09:39 AM PST -Zanderfeldt,6346,SKILLS ISSUE -Zanderfeldt,2024-02-21T03:35:26Z,- Zanderfeldt opened issue: [6334](https://github.com/hackforla/website/issues/6334) at 2024-02-20 07:35 PM PST -Zanderfeldt,2024-02-21T03:35:48Z,- Zanderfeldt opened issue: [6336](https://github.com/hackforla/website/issues/6336) at 2024-02-20 07:35 PM PST -Zanderfeldt,2024-02-21T03:54:23Z,- Zanderfeldt opened issue: [6346](https://github.com/hackforla/website/issues/6346) at 2024-02-20 07:54 PM PST -Zanderfeldt,2024-02-21T04:10:42Z,- Zanderfeldt assigned to issue: [6346](https://github.com/hackforla/website/issues/6346) at 2024-02-20 08:10 PM PST -Zanderfeldt,2024-03-01T20:43:31Z,- Zanderfeldt assigned to issue: [6377](https://github.com/hackforla/website/issues/6377#issuecomment-1963228835) at 2024-03-01 12:43 PM PST -Zanderfeldt,2024-03-01T20:49:48Z,- Zanderfeldt commented on issue: [6377](https://github.com/hackforla/website/issues/6377#issuecomment-1973900285) at 2024-03-01 12:49 PM PST -Zanderfeldt,2024-03-01T20:50:49Z,- Zanderfeldt commented on issue: [6346](https://github.com/hackforla/website/issues/6346#issuecomment-1973901404) at 2024-03-01 12:50 PM PST -Zanderfeldt,2024-03-01T22:09:03Z,- Zanderfeldt opened pull request: [6406](https://github.com/hackforla/website/pull/6406) at 2024-03-01 02:09 PM PST -Zanderfeldt,2024-03-02T08:13:58Z,- Zanderfeldt pull request merged: [6406](https://github.com/hackforla/website/pull/6406#event-11986837538) at 2024-03-02 12:13 AM PST -Zanderfeldt,2024-03-11T17:27:57Z,- Zanderfeldt assigned to issue: [6093](https://github.com/hackforla/website/issues/6093) at 2024-03-11 10:27 AM PDT -Zanderfeldt,2024-03-14T00:22:04Z,- Zanderfeldt commented on issue: [6093](https://github.com/hackforla/website/issues/6093#issuecomment-1996176177) at 2024-03-13 05:22 PM PDT -Zanderfeldt,2024-04-05T19:31:32Z,- Zanderfeldt closed issue as completed: [6346](https://github.com/hackforla/website/issues/6346#event-12378501833) at 2024-04-05 12:31 PM PDT -Zanderfeldt,2024-05-28T20:42:07Z,- Zanderfeldt assigned to issue: [6863](https://github.com/hackforla/website/issues/6863) at 2024-05-28 01:42 PM PDT -Zanderfeldt,2024-05-28T21:10:22Z,- Zanderfeldt opened pull request: [6905](https://github.com/hackforla/website/pull/6905) at 2024-05-28 02:10 PM PDT -Zanderfeldt,2024-06-06T19:51:05Z,- Zanderfeldt pull request closed w/o merging: [6905](https://github.com/hackforla/website/pull/6905#event-13071587843) at 2024-06-06 12:51 PM PDT -Zanderfeldt,2024-06-06T19:51:19Z,- Zanderfeldt unassigned from issue: [6863](https://github.com/hackforla/website/issues/6863#issuecomment-2153288969) at 2024-06-06 12:51 PM PDT -zempo,2020-03-12T02:53:17Z,- zempo assigned to issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-590679408) at 2020-03-11 07:53 PM PDT -zempo,2020-03-12T03:20:13Z,- zempo opened pull request: [360](https://github.com/hackforla/website/pull/360) at 2020-03-11 08:20 PM PDT -zempo,2020-03-12T03:21:15Z,- zempo closed issue by PR 360: [308](https://github.com/hackforla/website/issues/308#event-3121261263) at 2020-03-11 08:21 PM PDT -zempo,2020-03-12T03:21:15Z,- zempo pull request merged: [360](https://github.com/hackforla/website/pull/360#event-3121261270) at 2020-03-11 08:21 PM PDT -zempo,2020-03-12T03:30:44Z,- zempo opened issue: [361](https://github.com/hackforla/website/issues/361) at 2020-03-11 08:30 PM PDT -zempo,2020-03-12T03:44:11Z,- zempo assigned to issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-597991342) at 2020-03-11 08:44 PM PDT -zempo,2020-03-12T06:21:37Z,- zempo opened pull request: [362](https://github.com/hackforla/website/pull/362) at 2020-03-11 11:21 PM PDT -zempo,2020-03-12T19:05:46Z,- zempo pull request closed w/o merging: [362](https://github.com/hackforla/website/pull/362#event-3124149321) at 2020-03-12 12:05 PM PDT -zempo,2020-03-12T19:17:22Z,- zempo closed issue by PR 426: [252](https://github.com/hackforla/website/issues/252#event-3124183711) at 2020-03-12 12:17 PM PDT -zempo,2020-03-16T00:38:45Z,- zempo opened pull request: [369](https://github.com/hackforla/website/pull/369) at 2020-03-15 05:38 PM PDT -zempo,2020-03-16T02:57:24Z,- zempo pull request closed w/o merging: [369](https://github.com/hackforla/website/pull/369#event-3131394240) at 2020-03-15 07:57 PM PDT -zempo,2020-03-29T18:02:43Z,- zempo assigned to issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-599162806) at 2020-03-29 11:02 AM PDT -zempo,2020-03-29T22:04:34Z,- zempo commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-605708921) at 2020-03-29 03:04 PM PDT -zempo,2020-03-30T19:17:12Z,- zempo assigned to issue: [386](https://github.com/hackforla/website/issues/386) at 2020-03-30 12:17 PM PDT -zempo,2020-03-30T22:21:19Z,- zempo commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-606282063) at 2020-03-30 03:21 PM PDT -zempo,2020-03-30T22:52:16Z,- zempo commented on issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-606293101) at 2020-03-30 03:52 PM PDT -zempo,2020-03-31T02:55:59Z,- zempo opened pull request: [407](https://github.com/hackforla/website/pull/407) at 2020-03-30 07:55 PM PDT -zempo,2020-03-31T02:57:34Z,- zempo pull request merged: [407](https://github.com/hackforla/website/pull/407#event-3181311493) at 2020-03-30 07:57 PM PDT -zempo,2020-03-31T03:04:42Z,- zempo commented on issue: [361](https://github.com/hackforla/website/issues/361#issuecomment-606370773) at 2020-03-30 08:04 PM PDT -zempo,2020-04-12T17:09:42Z,- zempo unassigned from issue: [252](https://github.com/hackforla/website/issues/252#issuecomment-611887474) at 2020-04-12 10:09 AM PDT -zempo,2020-05-24T18:25:08Z,- zempo unassigned from issue: [308](https://github.com/hackforla/website/issues/308#issuecomment-633255772) at 2020-05-24 11:25 AM PDT -zempo,2020-07-26T19:49:50Z,- zempo unassigned from issue: [386](https://github.com/hackforla/website/issues/386#issuecomment-606293101) at 2020-07-26 12:49 PM PDT -Zhu-Joseph,2021-07-30T21:48:00Z,- Zhu-Joseph assigned to issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-886247545) at 2021-07-30 02:48 PM PDT -Zhu-Joseph,2021-07-31T02:58:11Z,- Zhu-Joseph commented on issue: [1944](https://github.com/hackforla/website/issues/1944#issuecomment-890281424) at 2021-07-30 07:58 PM PDT -Zhu-Joseph,2021-08-03T08:14:49Z,- Zhu-Joseph opened pull request: [2038](https://github.com/hackforla/website/pull/2038) at 2021-08-03 01:14 AM PDT -Zhu-Joseph,2021-08-05T00:04:29Z,- Zhu-Joseph pull request merged: [2038](https://github.com/hackforla/website/pull/2038#event-5114409164) at 2021-08-04 05:04 PM PDT -Zhu-Joseph,2021-08-09T23:59:39Z,- Zhu-Joseph assigned to issue: [2063](https://github.com/hackforla/website/issues/2063) at 2021-08-09 04:59 PM PDT -Zhu-Joseph,2021-08-10T00:15:10Z,- Zhu-Joseph commented on issue: [2063](https://github.com/hackforla/website/issues/2063#issuecomment-895635286) at 2021-08-09 05:15 PM PDT -Zhu-Joseph,2021-08-11T01:00:47Z,- Zhu-Joseph opened pull request: [2098](https://github.com/hackforla/website/pull/2098) at 2021-08-10 06:00 PM PDT -Zhu-Joseph,2021-08-11T04:35:33Z,- Zhu-Joseph assigned to issue: [2043](https://github.com/hackforla/website/issues/2043) at 2021-08-10 09:35 PM PDT -Zhu-Joseph,2021-08-11T04:38:09Z,- Zhu-Joseph commented on issue: [2043](https://github.com/hackforla/website/issues/2043#issuecomment-896494408) at 2021-08-10 09:38 PM PDT -Zhu-Joseph,2021-08-11T20:12:13Z,- Zhu-Joseph commented on issue: [2063](https://github.com/hackforla/website/issues/2063#issuecomment-897119325) at 2021-08-11 01:12 PM PDT -Zhu-Joseph,2021-08-14T17:43:59Z,- Zhu-Joseph pull request merged: [2098](https://github.com/hackforla/website/pull/2098#event-5158958358) at 2021-08-14 10:43 AM PDT -Zhu-Joseph,2021-08-17T07:39:56Z,- Zhu-Joseph submitted pull request review: [2119](https://github.com/hackforla/website/pull/2119#pullrequestreview-731433492) at 2021-08-17 12:39 AM PDT -Zhu-Joseph,2021-08-18T01:25:14Z,- Zhu-Joseph opened pull request: [2126](https://github.com/hackforla/website/pull/2126) at 2021-08-17 06:25 PM PDT -Zhu-Joseph,2021-08-18T05:54:23Z,- Zhu-Joseph commented on pull request: [2126](https://github.com/hackforla/website/pull/2126#issuecomment-900831694) at 2021-08-17 10:54 PM PDT -Zhu-Joseph,2021-08-19T02:58:16Z,- Zhu-Joseph pull request merged: [2126](https://github.com/hackforla/website/pull/2126#event-5178084648) at 2021-08-18 07:58 PM PDT -Zhu-Joseph,2021-08-27T07:35:55Z,- Zhu-Joseph assigned to issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-906971985) at 2021-08-27 12:35 AM PDT -Zhu-Joseph,2021-08-27T07:54:05Z,- Zhu-Joseph unassigned from issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-906971985) at 2021-08-27 12:54 AM PDT -Zhu-Joseph,2021-08-27T18:08:16Z,- Zhu-Joseph commented on issue: [2187](https://github.com/hackforla/website/issues/2187#issuecomment-907381202) at 2021-08-27 11:08 AM PDT -Zhu-Joseph,2021-08-27T18:41:16Z,- Zhu-Joseph assigned to issue: [2085](https://github.com/hackforla/website/issues/2085) at 2021-08-27 11:41 AM PDT -Zhu-Joseph,2021-08-27T23:42:19Z,- Zhu-Joseph commented on issue: [2085](https://github.com/hackforla/website/issues/2085#issuecomment-907527521) at 2021-08-27 04:42 PM PDT -Zhu-Joseph,2021-08-28T04:13:56Z,- Zhu-Joseph opened pull request: [2195](https://github.com/hackforla/website/pull/2195) at 2021-08-27 09:13 PM PDT -Zhu-Joseph,2021-08-31T03:33:15Z,- Zhu-Joseph pull request merged: [2195](https://github.com/hackforla/website/pull/2195#event-5229810913) at 2021-08-30 08:33 PM PDT -Zhu-Joseph,2021-09-22T06:10:04Z,- Zhu-Joseph assigned to issue: [2095](https://github.com/hackforla/website/issues/2095) at 2021-09-21 11:10 PM PDT -Zhu-Joseph,2021-09-22T06:53:56Z,- Zhu-Joseph commented on issue: [2095](https://github.com/hackforla/website/issues/2095#issuecomment-924639192) at 2021-09-21 11:53 PM PDT -Zhu-Joseph,2021-09-22T07:19:49Z,- Zhu-Joseph opened pull request: [2300](https://github.com/hackforla/website/pull/2300) at 2021-09-22 12:19 AM PDT -Zhu-Joseph,2021-09-24T04:06:45Z,- Zhu-Joseph pull request merged: [2300](https://github.com/hackforla/website/pull/2300#event-5353649382) at 2021-09-23 09:06 PM PDT -Zhu-Joseph,2021-09-24T16:52:05Z,- Zhu-Joseph assigned to issue: [2275](https://github.com/hackforla/website/issues/2275) at 2021-09-24 09:52 AM PDT -Zhu-Joseph,2021-09-24T16:59:22Z,- Zhu-Joseph commented on issue: [2275](https://github.com/hackforla/website/issues/2275#issuecomment-926782998) at 2021-09-24 09:59 AM PDT -Zhu-Joseph,2021-09-24T17:16:26Z,- Zhu-Joseph opened pull request: [2305](https://github.com/hackforla/website/pull/2305) at 2021-09-24 10:16 AM PDT -Zhu-Joseph,2021-09-29T23:53:17Z,- Zhu-Joseph commented on pull request: [2305](https://github.com/hackforla/website/pull/2305#issuecomment-930629246) at 2021-09-29 04:53 PM PDT -Zhu-Joseph,2021-10-01T21:44:09Z,- Zhu-Joseph pull request merged: [2305](https://github.com/hackforla/website/pull/2305#event-5396933713) at 2021-10-01 02:44 PM PDT -Zhu-Joseph,2021-10-10T00:38:31Z,- Zhu-Joseph assigned to issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-931964234) at 2021-10-09 05:38 PM PDT -Zhu-Joseph,2021-10-10T01:39:27Z,- Zhu-Joseph commented on issue: [2158](https://github.com/hackforla/website/issues/2158#issuecomment-939389478) at 2021-10-09 06:39 PM PDT -Zhu-Joseph,2021-10-10T01:50:33Z,- Zhu-Joseph opened pull request: [2352](https://github.com/hackforla/website/pull/2352) at 2021-10-09 06:50 PM PDT -Zhu-Joseph,2021-10-12T05:28:20Z,- Zhu-Joseph commented on pull request: [2352](https://github.com/hackforla/website/pull/2352#issuecomment-940676868) at 2021-10-11 10:28 PM PDT -Zhu-Joseph,2021-10-14T23:27:59Z,- Zhu-Joseph commented on pull request: [2352](https://github.com/hackforla/website/pull/2352#issuecomment-943837479) at 2021-10-14 04:27 PM PDT -Zhu-Joseph,2021-10-19T23:10:05Z,- Zhu-Joseph pull request merged: [2352](https://github.com/hackforla/website/pull/2352#event-5488373198) at 2021-10-19 04:10 PM PDT -Zhu-Joseph,2021-11-02T07:51:38Z,- Zhu-Joseph assigned to issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-950064963) at 2021-11-02 12:51 AM PDT -Zhu-Joseph,2021-11-02T07:53:10Z,- Zhu-Joseph commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-957176560) at 2021-11-02 12:53 AM PDT -Zhu-Joseph,2021-11-22T17:22:44Z,- Zhu-Joseph commented on issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-975751514) at 2021-11-22 09:22 AM PST -Zhu-Joseph,2021-12-17T17:58:14Z,- Zhu-Joseph unassigned from issue: [2392](https://github.com/hackforla/website/issues/2392#issuecomment-996913257) at 2021-12-17 09:58 AM PST -ziniwang,4638,SKILLS ISSUE -ziniwang,2023-05-09T04:24:31Z,- ziniwang opened issue: [4638](https://github.com/hackforla/website/issues/4638) at 2023-05-08 09:24 PM PDT -ziniwang,2023-05-09T04:28:39Z,- ziniwang assigned to issue: [4638](https://github.com/hackforla/website/issues/4638) at 2023-05-08 09:28 PM PDT -ziniwang,2023-05-26T09:19:54Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1564084630) at 2023-05-26 02:19 AM PDT -ziniwang,2023-06-09T09:14:30Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1584242454) at 2023-06-09 02:14 AM PDT -ziniwang,2023-07-04T03:29:33Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1619416660) at 2023-07-03 08:29 PM PDT -ziniwang,2023-07-14T03:17:41Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1635206568) at 2023-07-13 08:17 PM PDT -ziniwang,2023-07-20T02:07:12Z,- ziniwang assigned to issue: [4919](https://github.com/hackforla/website/issues/4919) at 2023-07-19 07:07 PM PDT -ziniwang,2023-07-20T10:43:45Z,- ziniwang commented on issue: [4919](https://github.com/hackforla/website/issues/4919#issuecomment-1643691982) at 2023-07-20 03:43 AM PDT -ziniwang,2023-07-21T07:42:16Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1645128185) at 2023-07-21 12:42 AM PDT -ziniwang,2023-07-21T07:49:22Z,- ziniwang commented on issue: [4638](https://github.com/hackforla/website/issues/4638#issuecomment-1645157114) at 2023-07-21 12:49 AM PDT -ziniwang,2023-07-23T14:58:54Z,- ziniwang opened pull request: [5052](https://github.com/hackforla/website/pull/5052) at 2023-07-23 07:58 AM PDT -ziniwang,2023-07-26T23:45:36Z,- ziniwang pull request merged: [5052](https://github.com/hackforla/website/pull/5052#event-9929784683) at 2023-07-26 04:45 PM PDT -ziniwang,2023-07-27T10:36:01Z,- ziniwang closed issue as completed: [4638](https://github.com/hackforla/website/issues/4638#event-9934201569) at 2023-07-27 03:36 AM PDT -ziniwang,2023-07-28T20:53:07Z,- ziniwang assigned to issue: [4913](https://github.com/hackforla/website/issues/4913) at 2023-07-28 01:53 PM PDT -ziniwang,2023-07-29T14:11:51Z,- ziniwang commented on issue: [4913](https://github.com/hackforla/website/issues/4913#issuecomment-1656739694) at 2023-07-29 07:11 AM PDT -ziniwang,2023-08-01T17:44:14Z,- ziniwang opened pull request: [5128](https://github.com/hackforla/website/pull/5128) at 2023-08-01 10:44 AM PDT -ziniwang,2023-08-05T22:21:17Z,- ziniwang pull request merged: [5128](https://github.com/hackforla/website/pull/5128#event-10016174387) at 2023-08-05 03:21 PM PDT -zip-dazie,5721,SKILLS ISSUE -zip-dazie,2023-10-17T02:36:57Z,- zip-dazie opened issue: [5721](https://github.com/hackforla/website/issues/5721) at 2023-10-16 07:36 PM PDT -zip-dazie,2023-10-17T02:37:05Z,- zip-dazie assigned to issue: [5721](https://github.com/hackforla/website/issues/5721) at 2023-10-16 07:37 PM PDT -zip-dazie,2023-10-27T05:55:48Z,- zip-dazie assigned to issue: [5757](https://github.com/hackforla/website/issues/5757) at 2023-10-26 10:55 PM PDT -zip-dazie,2023-10-27T05:58:23Z,- zip-dazie commented on issue: [5757](https://github.com/hackforla/website/issues/5757#issuecomment-1782342344) at 2023-10-26 10:58 PM PDT -zip-dazie,2023-11-01T23:43:00Z,- zip-dazie opened pull request: [5823](https://github.com/hackforla/website/pull/5823) at 2023-11-01 04:43 PM PDT -zip-dazie,2023-11-01T23:48:32Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1789843920) at 2023-11-01 04:48 PM PDT -zip-dazie,2023-11-01T23:50:34Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1789845282) at 2023-11-01 04:50 PM PDT -zip-dazie,2023-11-20T02:52:10Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1818146694) at 2023-11-19 06:52 PM PST -zip-dazie,2023-11-20T03:01:59Z,- zip-dazie pull request closed w/o merging: [5823](https://github.com/hackforla/website/pull/5823#event-11005701771) at 2023-11-19 07:01 PM PST -zip-dazie,2023-11-20T04:32:47Z,- zip-dazie opened pull request: [5923](https://github.com/hackforla/website/pull/5923) at 2023-11-19 08:32 PM PST -zip-dazie,2023-11-28T18:08:32Z,- zip-dazie pull request merged: [5923](https://github.com/hackforla/website/pull/5923#event-11087080426) at 2023-11-28 10:08 AM PST -zip-dazie,2023-12-09T17:29:04Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1848589284) at 2023-12-09 09:29 AM PST -zip-dazie,2023-12-09T19:47:13Z,- zip-dazie assigned to issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1730119414) at 2023-12-09 11:47 AM PST -zip-dazie,2023-12-09T19:50:06Z,- zip-dazie commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1848645931) at 2023-12-09 11:50 AM PST -zip-dazie,2023-12-23T20:57:50Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1868369042) at 2023-12-23 12:57 PM PST -zip-dazie,2023-12-23T21:00:20Z,- zip-dazie commented on issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1868369323) at 2023-12-23 01:00 PM PST -zip-dazie,2024-01-03T20:34:45Z,- zip-dazie opened pull request: [6055](https://github.com/hackforla/website/pull/6055) at 2024-01-03 12:34 PM PST -zip-dazie,2024-01-05T22:34:25Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1879338080) at 2024-01-05 02:34 PM PST -zip-dazie,2024-01-05T22:41:23Z,- zip-dazie assigned to issue: [5981](https://github.com/hackforla/website/issues/5981) at 2024-01-05 02:41 PM PST -zip-dazie,2024-01-05T22:45:36Z,- zip-dazie commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1879347937) at 2024-01-05 02:45 PM PST -zip-dazie,2024-01-23T08:06:07Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1905490744) at 2024-01-23 12:06 AM PST -zip-dazie,2024-01-30T07:20:06Z,- zip-dazie commented on pull request: [6055](https://github.com/hackforla/website/pull/6055#issuecomment-1916216983) at 2024-01-29 11:20 PM PST -zip-dazie,2024-02-08T08:06:46Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1933547577) at 2024-02-08 12:06 AM PST -zip-dazie,2024-02-08T08:08:02Z,- zip-dazie commented on issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1933550796) at 2024-02-08 12:08 AM PST -zip-dazie,2024-02-08T08:08:09Z,- zip-dazie unassigned from issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1933550796) at 2024-02-08 12:08 AM PST -zip-dazie,2024-02-08T08:08:09Z,- zip-dazie unassigned from issue: [5981](https://github.com/hackforla/website/issues/5981#issuecomment-1933550796) at 2024-02-08 12:08 AM PST -zip-dazie,2024-02-18T08:00:49Z,- zip-dazie commented on issue: [5721](https://github.com/hackforla/website/issues/5721#issuecomment-1950995853) at 2024-02-18 12:00 AM PST -zip-dazie,2024-02-21T18:21:12Z,- zip-dazie unassigned from issue: [5452](https://github.com/hackforla/website/issues/5452#issuecomment-1957612929) at 2024-02-21 10:21 AM PST -zip-dazie,2024-02-21T18:23:16Z,- zip-dazie pull request closed w/o merging: [6055](https://github.com/hackforla/website/pull/6055#event-11880433043) at 2024-02-21 10:23 AM PST -zkamenov,6348,SKILLS ISSUE -zkamenov,2024-02-21T04:18:41Z,- zkamenov opened issue: [6348](https://github.com/hackforla/website/issues/6348) at 2024-02-20 08:18 PM PST -zkamenov,2024-02-21T04:23:50Z,- zkamenov assigned to issue: [6348](https://github.com/hackforla/website/issues/6348) at 2024-02-20 08:23 PM PST -zkamenov,2024-02-25T19:01:20Z,- zkamenov assigned to issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1957748732) at 2024-02-25 11:01 AM PST -zkamenov,2024-02-25T19:15:33Z,- zkamenov commented on issue: [6113](https://github.com/hackforla/website/issues/6113#issuecomment-1963033852) at 2024-02-25 11:15 AM PST -zkamenov,2024-02-26T07:54:59Z,- zkamenov opened pull request: [6379](https://github.com/hackforla/website/pull/6379) at 2024-02-25 11:54 PM PST -zkamenov,2024-02-26T08:08:51Z,- zkamenov commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-1963533917) at 2024-02-26 12:08 AM PST -zkamenov,2024-02-28T18:31:38Z,- zkamenov pull request merged: [6379](https://github.com/hackforla/website/pull/6379#event-11955706448) at 2024-02-28 10:31 AM PST -zkamenov,2024-06-20T15:04:41Z,- zkamenov commented on issue: [6348](https://github.com/hackforla/website/issues/6348#issuecomment-2180933086) at 2024-06-20 08:04 AM PDT -zkamenov,2024-06-20T16:15:51Z,- zkamenov commented on pull request: [7009](https://github.com/hackforla/website/pull/7009#issuecomment-2181075429) at 2024-06-20 09:15 AM PDT -zkamenov,2024-06-20T17:14:51Z,- zkamenov submitted pull request review: [7009](https://github.com/hackforla/website/pull/7009#pullrequestreview-2130968552) at 2024-06-20 10:14 AM PDT -zkamenov,2024-06-21T20:58:44Z,- zkamenov closed issue as completed: [6348](https://github.com/hackforla/website/issues/6348#event-13247099302) at 2024-06-21 01:58 PM PDT -zkamenov,2024-07-02T18:48:33Z,- zkamenov commented on pull request: [7077](https://github.com/hackforla/website/pull/7077#issuecomment-2204067363) at 2024-07-02 11:48 AM PDT -zkamenov,2024-07-02T20:07:44Z,- zkamenov submitted pull request review: [7077](https://github.com/hackforla/website/pull/7077#pullrequestreview-2154763372) at 2024-07-02 01:07 PM PDT -zvidmarb,8192,SKILLS ISSUE -zvidmarb,2025-06-17T04:17:09Z,- zvidmarb opened issue: [8192](https://github.com/hackforla/website/issues/8192) at 2025-06-16 09:17 PM PDT -zvidmarb,2025-06-17T04:17:09Z,- zvidmarb assigned to issue: [8192](https://github.com/hackforla/website/issues/8192) at 2025-06-16 09:17 PM PDT -zvidmarb,2025-06-18T21:33:50Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2985755642) at 2025-06-18 02:33 PM PDT -zvidmarb,2025-06-22T17:46:21Z,- zvidmarb assigned to issue: [8003](https://github.com/hackforla/website/issues/8003) at 2025-06-22 10:46 AM PDT -zvidmarb,2025-06-22T18:00:30Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2994350896) at 2025-06-22 11:00 AM PDT -zvidmarb,2025-06-24T02:08:44Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2998531397) at 2025-06-23 07:08 PM PDT -zvidmarb,2025-06-24T07:14:29Z,- zvidmarb commented on issue: [8003](https://github.com/hackforla/website/issues/8003#issuecomment-2999107882) at 2025-06-24 12:14 AM PDT -zvidmarb,2025-06-24T07:50:54Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-2999209858) at 2025-06-24 12:50 AM PDT -zvidmarb,2025-06-24T08:13:33Z,- zvidmarb opened pull request: [8203](https://github.com/hackforla/website/pull/8203) at 2025-06-24 01:13 AM PDT -zvidmarb,2025-06-30T01:41:03Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3017472487) at 2025-06-29 06:41 PM PDT -zvidmarb,2025-07-02T16:15:19Z,- zvidmarb pull request merged: [8203](https://github.com/hackforla/website/pull/8203#event-18435454122) at 2025-07-02 09:15 AM PDT -zvidmarb,2025-07-18T19:08:02Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3090438980) at 2025-07-18 12:08 PM PDT -zvidmarb,2025-07-18T19:14:17Z,- zvidmarb assigned to issue: [7417](https://github.com/hackforla/website/issues/7417) at 2025-07-18 12:14 PM PDT -zvidmarb,2025-07-18T19:23:16Z,- zvidmarb commented on issue: [7417](https://github.com/hackforla/website/issues/7417#issuecomment-3090497113) at 2025-07-18 12:23 PM PDT -zvidmarb,2025-07-22T22:50:27Z,- zvidmarb opened pull request: [8250](https://github.com/hackforla/website/pull/8250) at 2025-07-22 03:50 PM PDT -zvidmarb,2025-07-25T19:48:06Z,- zvidmarb pull request merged: [8250](https://github.com/hackforla/website/pull/8250#event-18820532701) at 2025-07-25 12:48 PM PDT -zvidmarb,2025-08-06T18:57:24Z,- zvidmarb commented on issue: [8192](https://github.com/hackforla/website/issues/8192#issuecomment-3161250356) at 2025-08-06 11:57 AM PDT -zzhoje,2563,SKILLS ISSUE -zzhoje,2021-12-08T22:40:05Z,- zzhoje opened issue: [2563](https://github.com/hackforla/website/issues/2563) at 2021-12-08 02:40 PM PST -zzhoje,2021-12-08T22:49:04Z,- zzhoje assigned to issue: [2563](https://github.com/hackforla/website/issues/2563#issuecomment-989285350) at 2021-12-08 02:49 PM PST -zzhoje,2021-12-08T23:06:07Z,- zzhoje commented on issue: [2563](https://github.com/hackforla/website/issues/2563#issuecomment-989299047) at 2021-12-08 03:06 PM PST -zzhoje,2021-12-08T23:06:07Z,- zzhoje closed issue as completed: [2563](https://github.com/hackforla/website/issues/2563#event-5737130748) at 2021-12-08 03:06 PM PST -zzhoje,2021-12-11T15:41:25Z,- zzhoje assigned to issue: [2066](https://github.com/hackforla/website/issues/2066) at 2021-12-11 07:41 AM PST -zzhoje,2021-12-12T16:26:54Z,- zzhoje commented on issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-991927959) at 2021-12-12 08:26 AM PST -zzhoje,2021-12-14T00:14:59Z,- zzhoje assigned to issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-993026293) at 2021-12-13 04:14 PM PST -zzhoje,2021-12-14T01:38:56Z,- zzhoje commented on issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-993074700) at 2021-12-13 05:38 PM PST -zzhoje,2021-12-14T01:40:43Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-993075483) at 2021-12-13 05:40 PM PST -zzhoje,2021-12-21T00:08:41Z,- zzhoje assigned to issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-997465987) at 2021-12-20 04:08 PM PST -zzhoje,2021-12-21T00:30:29Z,- zzhoje unassigned from issue: [2066](https://github.com/hackforla/website/issues/2066#issuecomment-993074700) at 2021-12-20 04:30 PM PST -zzhoje,2021-12-21T01:07:17Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-998385932) at 2021-12-20 05:07 PM PST -zzhoje,2021-12-29T02:56:46Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1002371597) at 2021-12-28 06:56 PM PST -zzhoje,2022-01-03T20:48:46Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1004349612) at 2022-01-03 12:48 PM PST -zzhoje,2022-01-10T03:51:24Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1008521414) at 2022-01-09 07:51 PM PST -zzhoje,2022-01-24T01:19:17Z,- zzhoje commented on issue: [2585](https://github.com/hackforla/website/issues/2585#issuecomment-1019626593) at 2022-01-23 05:19 PM PST -zzhoje,2022-04-10T15:42:10Z,- zzhoje commented on issue: [2481](https://github.com/hackforla/website/issues/2481#issuecomment-1094299544) at 2022-04-10 08:42 AM PDT -zzhoje,2023-06-04T18:58:24Z,- zzhoje unassigned from issue: [2608](https://github.com/hackforla/website/issues/2608#issuecomment-998361894) at 2023-06-04 11:58 AM PDT diff --git a/github-actions/activity-trigger/retrieve-skills-id.js b/github-actions/activity-trigger/retrieve-skills-id.js deleted file mode 100644 index 5b9d7309c8..0000000000 --- a/github-actions/activity-trigger/retrieve-skills-id.js +++ /dev/null @@ -1,37 +0,0 @@ -/** - * @description - Get item info using its issue number - * @param {Object} github - GitHub object from function calling queryIssueInfo() - * @params {Object} context - Context of the function calling queryIssueInfo() - * @returns {Object} - An object containing the item ID and its status name - */ -async function retrieveSkillsId(github, context, issueNum) { - const repoOwner = context.repo.owner; - const repoName = context.repo.repo; - - const query = `query($owner: String!, $repo: String!, $issueNum: Int!) { - repository(owner: $owner, name: $repo) { - issue(number: $issueNum) { - id - } - } - }`; - - const variables = { - owner: repoOwner, - repo: repoName, - issueNum: issueNum, - }; - - try { - const response = await github.graphql(query, variables); - - // Extract the issue id - const id = response.repository.issue.id; - - return id ; - } catch (error) { - throw new Error(`Error finding NodeId for issue #${issueNum}; error = ${error}`); - } -} - -module.exports = retrieveSkillsId;